diff --git a/QGCApplication.pro b/QGCApplication.pro new file mode 100644 index 0000000000000000000000000000000000000000..f32186ca295398c22ae02db366304c2c95c6f3f1 --- /dev/null +++ b/QGCApplication.pro @@ -0,0 +1,661 @@ +# ------------------------------------------------- +# QGroundControl - Micro Air Vehicle Groundstation +# Please see our website at +# Maintainer: +# Lorenz Meier +# (c) 2009-2014 QGroundControl Developers +# This file is part of the open groundstation project +# QGroundControl is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# QGroundControl is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with QGroundControl. If not, see . +# ------------------------------------------------- + +include(QGCCommon.pri) + +TARGET = qgroundcontrol + +# Load additional config flags from user_config.pri +exists(user_config.pri):infile(user_config.pri, CONFIG) { + CONFIG += $$fromfile(user_config.pri, CONFIG) + message($$sprintf("Using user-supplied additional config: '%1' specified in user_config.pri", $$fromfile(user_config.pri, CONFIG))) +} + +LinuxBuild { + CONFIG += link_pkgconfig +} + +message(BASEDIR $$BASEDIR DESTDIR $$DESTDIR TARGET $$TARGET) + +# QGC QtLocation plugin + +LIBS += -L$${LOCATION_PLUGIN_DESTDIR} +LIBS += -l$${LOCATION_PLUGIN_NAME} + +LinuxBuild|MacBuild|AndroidBuild { + PRE_TARGETDEPS += $${LOCATION_PLUGIN_DESTDIR}/lib$${LOCATION_PLUGIN_NAME}.a +} + +WindowsBuild { + PRE_TARGETDEPS += $${LOCATION_PLUGIN_DESTDIR}/$${LOCATION_PLUGIN_NAME}.lib +} + +# Qt configuration + +CONFIG += qt \ + thread + +QT += network \ + concurrent \ + gui \ + location \ + opengl \ + positioning \ + printsupport \ + qml \ + quick \ + quickwidgets \ + sql \ + svg \ + widgets \ + xml \ + +!AndroidBuild { + QT += serialport +} + +contains(DEFINES, QGC_NOTIFY_TUNES_ENABLED) { + QT += multimedia +} + +# testlib is needed even in release flavor for QSignalSpy support +QT += testlib + +# +# OS Specific settings +# + +MacBuild { + QMAKE_INFO_PLIST = Custom-Info.plist + ICON = $$BASEDIR/resources/icons/macx.icns + QT += quickwidgets +} + +LinuxBuild { + CONFIG += qesp_linux_udev +} + +WindowsBuild { + RC_FILE = $$BASEDIR/qgroundcontrol.rc +} + +# +# Build-specific settings +# + +DebugBuild { + CONFIG += console +} + +!AndroidBuild { +# qextserialport should not be used by general QGroundControl code. Use QSerialPort instead. This is only +# here to support special case Firmware Upgrade code. +include(libs/qextserialport/src/qextserialport.pri) +} + +# +# External library configuration +# + +include(QGCExternalLibs.pri) + +# +# Post link configuration +# + +include(QGCSetup.pri) + +# +# Installer targets +# + +include(QGCInstaller.pri) + +# +# Main QGroundControl portion of project file +# + +RESOURCES += qgroundcontrol.qrc + +DEPENDPATH += \ + . \ + plugins + +INCLUDEPATH += . + +INCLUDEPATH += \ + include/ui \ + src \ + src/audio \ + src/AutoPilotPlugins \ + src/comm \ + src/input \ + src/lib/qmapcontrol \ + src/QmlControls \ + src/uas \ + src/ui \ + src/ui/configuration \ + src/ui/flightdisplay \ + src/ui/linechart \ + src/ui/map \ + src/ui/mapdisplay \ + src/ui/mavlink \ + src/ui/mission \ + src/ui/px4_configuration \ + src/ui/toolbar \ + src/ui/uas \ + src/VehicleSetup \ + src/ViewWidgets \ + +FORMS += \ + src/QGCQmlWidgetHolder.ui \ + src/ui/configuration/SerialSettingsDialog.ui \ + src/ui/configuration/terminalconsole.ui \ + src/ui/DebugConsole.ui \ + src/ui/HDDisplay.ui \ + src/ui/Linechart.ui \ + src/ui/MainWindow.ui \ + src/ui/map/QGCMapTool.ui \ + src/ui/map/QGCMapToolBar.ui \ + src/ui/mavlink/QGCMAVLinkMessageSender.ui \ + src/ui/MAVLinkSettingsWidget.ui \ + src/ui/mission/QGCMissionConditionDelay.ui \ + src/ui/mission/QGCMissionDoFinishSearch.ui \ + src/ui/mission/QGCMissionDoJump.ui \ + src/ui/mission/QGCMissionDoStartSearch.ui \ + src/ui/mission/QGCMissionNavLand.ui \ + src/ui/mission/QGCMissionNavLoiterTime.ui \ + src/ui/mission/QGCMissionNavLoiterTurns.ui \ + src/ui/mission/QGCMissionNavLoiterUnlim.ui \ + src/ui/mission/QGCMissionNavReturnToLaunch.ui \ + src/ui/mission/QGCMissionNavSweep.ui \ + src/ui/mission/QGCMissionNavTakeoff.ui \ + src/ui/mission/QGCMissionNavWaypoint.ui \ + src/ui/mission/QGCMissionOther.ui \ + src/ui/px4_configuration/PX4RCCalibration.ui \ + src/ui/QGCCommConfiguration.ui \ + src/ui/QGCDataPlot2D.ui \ + src/ui/QGCHilConfiguration.ui \ + src/ui/QGCHilFlightGearConfiguration.ui \ + src/ui/QGCHilJSBSimConfiguration.ui \ + src/ui/QGCHilXPlaneConfiguration.ui \ + src/ui/QGCLinkConfiguration.ui \ + src/ui/QGCMapRCToParamDialog.ui \ + src/ui/QGCMAVLinkInspector.ui \ + src/ui/QGCMAVLinkLogPlayer.ui \ + src/ui/QGCPluginHost.ui \ + src/ui/QGCTabbedInfoView.ui \ + src/ui/QGCTCPLinkConfiguration.ui \ + src/ui/QGCUASFileView.ui \ + src/ui/QGCUASFileViewMulti.ui \ + src/ui/QGCUDPLinkConfiguration.ui \ + src/ui/QGCWaypointListMulti.ui \ + src/ui/SerialSettings.ui \ + src/ui/SettingsDialog.ui \ + src/ui/uas/QGCUnconnectedInfoWidget.ui \ + src/ui/uas/UASMessageView.ui \ + src/ui/uas/UASQuickView.ui \ + src/ui/uas/UASQuickViewItemSelect.ui \ + src/ui/UASControl.ui \ + src/ui/UASInfo.ui \ + src/ui/UASList.ui \ + src/ui/UASRawStatusView.ui \ + src/ui/UASView.ui \ + src/ui/WaypointEditableView.ui \ + src/ui/WaypointList.ui \ + src/ui/WaypointViewOnlyView.ui \ + +!AndroidBuild { +FORMS += \ + src/ui/JoystickButton.ui \ + src/ui/JoystickAxis.ui \ + src/ui/JoystickWidget.ui +} + +HEADERS += \ + src/audio/QGCAudioWorker.h \ + src/CmdLineOptParser.h \ + src/comm/LinkConfiguration.h \ + src/comm/LinkInterface.h \ + src/comm/LinkManager.h \ + src/comm/MAVLinkProtocol.h \ + src/comm/MockLink.h \ + src/comm/MockLinkMissionItemHandler.h \ + src/comm/ProtocolInterface.h \ + src/comm/QGCFlightGearLink.h \ + src/comm/QGCHilLink.h \ + src/comm/QGCJSBSimLink.h \ + src/comm/QGCMAVLink.h \ + src/comm/QGCXPlaneLink.h \ + src/comm/SerialLink.h \ + src/comm/TCPLink.h \ + src/comm/UDPLink.h \ + src/GAudioOutput.h \ + src/LogCompressor.h \ + src/MG.h \ + src/QGC.h \ + src/QGCApplication.h \ + src/QGCComboBox.h \ + src/QGCConfig.h \ + src/QGCDockWidget.h \ + src/QGCFileDialog.h \ + src/QGCGeo.h \ + src/QGCLoggingCategory.h \ + src/QGCMessageBox.h \ + src/QGCPalette.h \ + src/QGCQmlWidgetHolder.h \ + src/QGCQuickWidget.h \ + src/QGCSingleton.h \ + src/QGCTemporaryFile.h \ + src/QmlControls/ParameterEditorController.h \ + src/QmlControls/ScreenTools.h \ + src/uas/QGCMAVLinkUASFactory.h \ + src/uas/QGCUASFileManager.h \ + src/uas/UAS.h \ + src/uas/UASInterface.h \ + src/uas/UASManager.h \ + src/uas/UASManagerInterface.h \ + src/uas/UASMessageHandler.h \ + src/uas/UASWaypointManager.h \ + src/ui/configuration/ApmHighlighter.h \ + src/ui/configuration/console.h \ + src/ui/configuration/SerialSettingsDialog.h \ + src/ui/configuration/terminalconsole.h \ + src/ui/DebugConsole.h \ + src/ui/flightdisplay/QGCFlightDisplay.h \ + src/ui/HDDisplay.h \ + src/ui/HSIDisplay.h \ + src/ui/HUD.h \ + src/ui/linechart/ChartPlot.h \ + src/ui/linechart/IncrementalPlot.h \ + src/ui/linechart/LinechartPlot.h \ + src/ui/linechart/Linecharts.h \ + src/ui/linechart/LinechartWidget.h \ + src/ui/linechart/Scrollbar.h \ + src/ui/linechart/ScrollZoomer.h \ + src/ui/MainWindow.h \ + src/ui/map/MAV2DIcon.h \ + src/ui/map/QGCMapTool.h \ + src/ui/map/QGCMapToolBar.h \ + src/ui/map/QGCMapWidget.h \ + src/ui/map/Waypoint2DIcon.h \ + src/ui/mapdisplay/QGCMapDisplay.h \ + src/ui/mavlink/QGCMAVLinkMessageSender.h \ + src/ui/MAVLinkDecoder.h \ + src/ui/MAVLinkSettingsWidget.h \ + src/ui/mission/QGCMissionConditionDelay.h \ + src/ui/mission/QGCMissionDoFinishSearch.h \ + src/ui/mission/QGCMissionDoJump.h \ + src/ui/mission/QGCMissionDoStartSearch.h \ + src/ui/mission/QGCMissionNavLand.h \ + src/ui/mission/QGCMissionNavLoiterTime.h \ + src/ui/mission/QGCMissionNavLoiterTurns.h \ + src/ui/mission/QGCMissionNavLoiterUnlim.h \ + src/ui/mission/QGCMissionNavReturnToLaunch.h \ + src/ui/mission/QGCMissionNavSweep.h \ + src/ui/mission/QGCMissionNavTakeoff.h \ + src/ui/mission/QGCMissionNavWaypoint.h \ + src/ui/mission/QGCMissionOther.h \ + src/ui/px4_configuration/PX4RCCalibration.h \ + src/ui/px4_configuration/RCValueWidget.h \ + src/ui/QGCCommConfiguration.h \ + src/ui/QGCDataPlot2D.h \ + src/ui/QGCHilConfiguration.h \ + src/ui/QGCHilFlightGearConfiguration.h \ + src/ui/QGCHilJSBSimConfiguration.h \ + src/ui/QGCHilXPlaneConfiguration.h \ + src/ui/QGCLinkConfiguration.h \ + src/ui/QGCMainWindowAPConfigurator.h \ + src/ui/QGCMapRCToParamDialog.h \ + src/ui/QGCMAVLinkInspector.h \ + src/ui/QGCMAVLinkLogPlayer.h \ + src/ui/QGCPluginHost.h \ + src/ui/QGCRGBDView.h \ + src/ui/QGCTabbedInfoView.h \ + src/ui/QGCTCPLinkConfiguration.h \ + src/ui/QGCUASFileView.h \ + src/ui/QGCUASFileViewMulti.h \ + src/ui/QGCUDPLinkConfiguration.h \ + src/ui/QGCWaypointListMulti.h \ + src/ui/SerialConfigurationWindow.h \ + src/ui/SettingsDialog.h \ + src/ui/toolbar/MainToolBar.h \ + src/ui/uas/QGCUnconnectedInfoWidget.h \ + src/ui/uas/UASControlWidget.h \ + src/ui/uas/UASInfoWidget.h \ + src/ui/uas/UASListWidget.h \ + src/ui/uas/UASMessageView.h \ + src/ui/uas/UASQuickView.h \ + src/ui/uas/UASQuickViewGaugeItem.h \ + src/ui/uas/UASQuickViewItem.h \ + src/ui/uas/UASQuickViewItemSelect.h \ + src/ui/uas/UASQuickViewTextItem.h \ + src/ui/uas/UASView.h \ + src/ui/UASRawStatusView.h \ + src/ui/WaypointEditableView.h \ + src/ui/WaypointList.h \ + src/ui/WaypointViewOnlyView.h \ + src/ViewWidgets/ParameterEditorWidget.h \ + src/ViewWidgets/ViewWidgetController.h \ + src/Waypoint.h \ + +!AndroidBuild { +HEADERS += \ + src/input/JoystickInput.h \ + src/ui/JoystickAxis.h \ + src/ui/JoystickButton.h \ + src/ui/JoystickWidget.h \ + src/ui/CameraView.h \ +} + +SOURCES += \ + src/audio/QGCAudioWorker.cpp \ + src/CmdLineOptParser.cc \ + src/comm/LinkConfiguration.cc \ + src/comm/LinkManager.cc \ + src/comm/MAVLinkProtocol.cc \ + src/comm/MockLink.cc \ + src/comm/MockLinkMissionItemHandler.cc \ + src/comm/QGCFlightGearLink.cc \ + src/comm/QGCJSBSimLink.cc \ + src/comm/QGCXPlaneLink.cc \ + src/comm/SerialLink.cc \ + src/comm/TCPLink.cc \ + src/comm/UDPLink.cc \ + src/GAudioOutput.cc \ + src/LogCompressor.cc \ + src/main.cc \ + src/QGC.cc \ + src/QGCApplication.cc \ + src/QGCComboBox.cc \ + src/QGCDockWidget.cc \ + src/QGCFileDialog.cc \ + src/QGCLoggingCategory.cc \ + src/QGCPalette.cc \ + src/QGCQmlWidgetHolder.cpp \ + src/QGCQuickWidget.cc \ + src/QGCSingleton.cc \ + src/QGCTemporaryFile.cc \ + src/QmlControls/ParameterEditorController.cc \ + src/QmlControls/ScreenTools.cc \ + src/uas/QGCMAVLinkUASFactory.cc \ + src/uas/QGCUASFileManager.cc \ + src/uas/UAS.cc \ + src/uas/UASManager.cc \ + src/uas/UASMessageHandler.cc \ + src/uas/UASWaypointManager.cc \ + src/ui/configuration/ApmHighlighter.cc \ + src/ui/configuration/console.cpp \ + src/ui/configuration/SerialSettingsDialog.cc \ + src/ui/configuration/terminalconsole.cpp \ + src/ui/DebugConsole.cc \ + src/ui/flightdisplay/QGCFlightDisplay.cc \ + src/ui/HDDisplay.cc \ + src/ui/HSIDisplay.cc \ + src/ui/HUD.cc \ + src/ui/linechart/ChartPlot.cc \ + src/ui/linechart/IncrementalPlot.cc \ + src/ui/linechart/LinechartPlot.cc \ + src/ui/linechart/Linecharts.cc \ + src/ui/linechart/LinechartWidget.cc \ + src/ui/linechart/Scrollbar.cc \ + src/ui/linechart/ScrollZoomer.cc \ + src/ui/MainWindow.cc \ + src/ui/map/MAV2DIcon.cc \ + src/ui/map/QGCMapTool.cc \ + src/ui/map/QGCMapToolBar.cc \ + src/ui/map/QGCMapWidget.cc \ + src/ui/map/Waypoint2DIcon.cc \ + src/ui/mapdisplay/QGCMapDisplay.cc \ + src/ui/mavlink/QGCMAVLinkMessageSender.cc \ + src/ui/MAVLinkDecoder.cc \ + src/ui/MAVLinkSettingsWidget.cc \ + src/ui/mission/QGCMissionConditionDelay.cc \ + src/ui/mission/QGCMissionDoFinishSearch.cc \ + src/ui/mission/QGCMissionDoJump.cc \ + src/ui/mission/QGCMissionDoStartSearch.cc \ + src/ui/mission/QGCMissionNavLand.cc \ + src/ui/mission/QGCMissionNavLoiterTime.cc \ + src/ui/mission/QGCMissionNavLoiterTurns.cc \ + src/ui/mission/QGCMissionNavLoiterUnlim.cc \ + src/ui/mission/QGCMissionNavReturnToLaunch.cc \ + src/ui/mission/QGCMissionNavSweep.cc \ + src/ui/mission/QGCMissionNavTakeoff.cc \ + src/ui/mission/QGCMissionNavWaypoint.cc \ + src/ui/mission/QGCMissionOther.cc \ + src/ui/px4_configuration/PX4RCCalibration.cc \ + src/ui/px4_configuration/RCValueWidget.cc \ + src/ui/QGCCommConfiguration.cc \ + src/ui/QGCDataPlot2D.cc \ + src/ui/QGCHilConfiguration.cc \ + src/ui/QGCHilFlightGearConfiguration.cc \ + src/ui/QGCHilJSBSimConfiguration.cc \ + src/ui/QGCHilXPlaneConfiguration.cc \ + src/ui/QGCLinkConfiguration.cc \ + src/ui/QGCMainWindowAPConfigurator.cc \ + src/ui/QGCMapRCToParamDialog.cpp \ + src/ui/QGCMAVLinkInspector.cc \ + src/ui/QGCMAVLinkLogPlayer.cc \ + src/ui/QGCPluginHost.cc \ + src/ui/QGCRGBDView.cc \ + src/ui/QGCTabbedInfoView.cpp \ + src/ui/QGCTCPLinkConfiguration.cc \ + src/ui/QGCUASFileView.cc \ + src/ui/QGCUASFileViewMulti.cc \ + src/ui/QGCUDPLinkConfiguration.cc \ + src/ui/QGCWaypointListMulti.cc \ + src/ui/SerialConfigurationWindow.cc \ + src/ui/SettingsDialog.cc \ + src/ui/toolbar/MainToolBar.cc \ + src/ui/uas/QGCUnconnectedInfoWidget.cc \ + src/ui/uas/UASControlWidget.cc \ + src/ui/uas/UASInfoWidget.cc \ + src/ui/uas/UASListWidget.cc \ + src/ui/uas/UASMessageView.cc \ + src/ui/uas/UASQuickView.cc \ + src/ui/uas/UASQuickViewGaugeItem.cc \ + src/ui/uas/UASQuickViewItem.cc \ + src/ui/uas/UASQuickViewItemSelect.cc \ + src/ui/uas/UASQuickViewTextItem.cc \ + src/ui/uas/UASView.cc \ + src/ui/UASRawStatusView.cpp \ + src/ui/WaypointEditableView.cc \ + src/ui/WaypointList.cc \ + src/ui/WaypointViewOnlyView.cc \ + src/ViewWidgets/ParameterEditorWidget.cc \ + src/ViewWidgets/ViewWidgetController.cc \ + src/Waypoint.cc \ + +!AndroidBuild { +SOURCES += \ + src/input/JoystickInput.cc \ + src/ui/JoystickAxis.cc \ + src/ui/JoystickButton.cc \ + src/ui/JoystickWidget.cc \ + src/ui/CameraView.cc +} + +# +# Unit Test specific configuration goes here +# +# We have to special case Windows debug_and_release builds because you can't have files +# which are only in the debug variant [QTBUG-40351]. So in this case we include unit tests +# even in the release variant. If you want a Windows release build with no unit tests run +# qmake with CONFIG-=debug_and_release CONFIG+=release. +# + +DebugBuild|WindowsDebugAndRelease { + +HEADERS += src/QmlControls/QmlTestWidget.h +SOURCES += src/QmlControls/QmlTestWidget.cc + +!AndroidBuild { + +INCLUDEPATH += \ + src/qgcunittest + +HEADERS += \ + src/qgcunittest/FlightGearTest.h \ + src/qgcunittest/MockMavlinkFileServer.h \ + src/qgcunittest/MockMavlinkInterface.h \ + src/qgcunittest/MultiSignalSpy.h \ + src/qgcunittest/TCPLinkTest.h \ + src/qgcunittest/TCPLoopBackServer.h \ + src/FactSystem/FactSystemTestBase.h \ + src/FactSystem/FactSystemTestGeneric.h \ + src/FactSystem/FactSystemTestPX4.h \ + src/qgcunittest/FileDialogTest.h \ + src/qgcunittest/LinkManagerTest.h \ + src/qgcunittest/MainWindowTest.h \ + src/qgcunittest/MavlinkLogTest.h \ + src/qgcunittest/MessageBoxTest.h \ + src/qgcunittest/PX4RCCalibrationTest.h \ + src/qgcunittest/UnitTest.h \ + src/VehicleSetup/SetupViewTest.h \ + +SOURCES += \ + src/qgcunittest/FlightGearTest.cc \ + src/qgcunittest/MockMavlinkFileServer.cc \ + src/qgcunittest/MultiSignalSpy.cc \ + src/qgcunittest/TCPLinkTest.cc \ + src/qgcunittest/TCPLoopBackServer.cc \ + src/FactSystem/FactSystemTestBase.cc \ + src/FactSystem/FactSystemTestGeneric.cc \ + src/FactSystem/FactSystemTestPX4.cc \ + src/qgcunittest/FileDialogTest.cc \ + src/qgcunittest/LinkManagerTest.cc \ + src/qgcunittest/MainWindowTest.cc \ + src/qgcunittest/MavlinkLogTest.cc \ + src/qgcunittest/MessageBoxTest.cc \ + src/qgcunittest/PX4RCCalibrationTest.cc \ + src/qgcunittest/UnitTest.cc \ + src/VehicleSetup/SetupViewTest.cc \ + +} # DebugBuild|WindowsDebugAndRelease +} # AndroidBuild + +# +# AutoPilot Plugin Support +# + +INCLUDEPATH += \ + src/VehicleSetup + +FORMS += \ + src/VehicleSetup/SetupView.ui \ + +HEADERS+= \ + src/AutoPilotPlugins/AutoPilotPlugin.h \ + src/AutoPilotPlugins/AutoPilotPluginManager.h \ + src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h \ + src/AutoPilotPlugins/Generic/GenericParameterFacts.h \ + src/AutoPilotPlugins/PX4/AirframeComponent.h \ + src/AutoPilotPlugins/PX4/AirframeComponentAirframes.h \ + src/AutoPilotPlugins/PX4/AirframeComponentController.h \ + src/AutoPilotPlugins/PX4/FlightModesComponent.h \ + src/AutoPilotPlugins/PX4/FlightModesComponentController.h \ + src/AutoPilotPlugins/PX4/PowerComponent.h \ + src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h \ + src/AutoPilotPlugins/PX4/PX4Component.h \ + src/AutoPilotPlugins/PX4/PX4ParameterLoader.h \ + src/AutoPilotPlugins/PX4/RadioComponent.h \ + src/AutoPilotPlugins/PX4/SafetyComponent.h \ + src/AutoPilotPlugins/PX4/SensorsComponent.h \ + src/AutoPilotPlugins/PX4/SensorsComponentController.h \ + src/VehicleSetup/SetupView.h \ + src/VehicleSetup/VehicleComponent.h \ + +!AndroidBuild { +HEADERS += \ + src/VehicleSetup/FirmwareUpgradeController.h \ + src/VehicleSetup/PX4Bootloader.h \ + src/VehicleSetup/PX4FirmwareUpgradeThread.h +} + +SOURCES += \ + src/AutoPilotPlugins/AutoPilotPlugin.cc \ + src/AutoPilotPlugins/AutoPilotPluginManager.cc \ + src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc \ + src/AutoPilotPlugins/Generic/GenericParameterFacts.cc \ + src/AutoPilotPlugins/PX4/AirframeComponent.cc \ + src/AutoPilotPlugins/PX4/AirframeComponentAirframes.cc \ + src/AutoPilotPlugins/PX4/AirframeComponentController.cc \ + src/AutoPilotPlugins/PX4/FlightModesComponent.cc \ + src/AutoPilotPlugins/PX4/FlightModesComponentController.cc \ + src/AutoPilotPlugins/PX4/PowerComponent.cc \ + src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc \ + src/AutoPilotPlugins/PX4/PX4Component.cc \ + src/AutoPilotPlugins/PX4/PX4ParameterLoader.cc \ + src/AutoPilotPlugins/PX4/RadioComponent.cc \ + src/AutoPilotPlugins/PX4/SafetyComponent.cc \ + src/AutoPilotPlugins/PX4/SensorsComponent.cc \ + src/AutoPilotPlugins/PX4/SensorsComponentController.cc \ + src/VehicleSetup/SetupView.cc \ + src/VehicleSetup/VehicleComponent.cc \ + +!AndroidBuild { +SOURCES += \ + src/VehicleSetup/FirmwareUpgradeController.cc \ + src/VehicleSetup/PX4Bootloader.cc \ + src/VehicleSetup/PX4FirmwareUpgradeThread.cc +} + +# Fact System code + +INCLUDEPATH += \ + src/FactSystem + +HEADERS += \ + src/FactSystem/Fact.h \ + src/FactSystem/FactBinder.h \ + src/FactSystem/FactMetaData.h \ + src/FactSystem/FactSystem.h \ + src/FactSystem/FactValidator.h \ + src/FactSystem/ParameterLoader.h \ + +SOURCES += \ + src/FactSystem/Fact.cc \ + src/FactSystem/FactBinder.cc \ + src/FactSystem/FactMetaData.cc \ + src/FactSystem/FactSystem.cc \ + src/FactSystem/FactValidator.cc \ + src/FactSystem/ParameterLoader.cc \ + +# Android + +AndroidBuild { + include($$PWD/libs/qtandroidserialport/src/qtandroidserialport.pri) + message("Adding Serial Java Classes") + QT += androidextras + ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android + OTHER_FILES += \ + $$PWD/android/AndroidManifest.xml \ + $$PWD/android/res/xml/device_filter.xml \ + $$PWD/android/src/com/hoho/android/usbserial/driver/CdcAcmSerialDriver.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/CommonUsbSerialDriver.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/Cp2102SerialDriver.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/FtdiSerialDriver.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/ProlificSerialDriver.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/UsbId.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/UsbSerialDriver.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/UsbSerialProber.java \ + $$PWD/android/src/com/hoho/android/usbserial/driver/UsbSerialRuntimeException.java \ + $$PWD/android/src/org/qgroundcontrol/qgchelper/UsbDeviceJNI.java \ + $$PWD/android/src/org/qgroundcontrol/qgchelper/UsbIoManager.java +} diff --git a/QGCCommon.pri b/QGCCommon.pri new file mode 100644 index 0000000000000000000000000000000000000000..85510004bfb161df693a9ef1131d1d006fbda476 --- /dev/null +++ b/QGCCommon.pri @@ -0,0 +1,195 @@ +# ------------------------------------------------- +# QGroundControl - Micro Air Vehicle Groundstation +# Please see our website at +# Maintainer: +# Lorenz Meier +# (c) 2009-2014 QGroundControl Developers +# This file is part of the open groundstation project +# QGroundControl is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# QGroundControl is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with QGroundControl. If not, see . +# ------------------------------------------------- + +# +# This file contains configuration settings which are common to both the QGC Application and +# the Location Plugin. It should mainly contains intial CONFIG tag setup and compiler settings. +# + +# Setup our supported build types. We do this once here and then use the defined config scopes +# to allow us to easily modify suported build types in one place instead of duplicated throughout +# the project file. + +linux { + linux-g++ | linux-g++-64 { + message("Linux build") + CONFIG += LinuxBuild + } else : android-g++ { + message("Android build") + CONFIG += AndroidBuild + DEFINES += __mobile__ + DEFINES += __android__ + warning("Android build is experimental and not fully functional") + } else { + error("Unsuported Linux toolchain, only GCC 32- or 64-bit is supported") + } +} else : win32 { + win32-msvc2010 | win32-msvc2012 | win32-msvc2013 { + message("Windows build") + CONFIG += WindowsBuild + } else { + error("Unsupported Windows toolchain, only Visual Studio 2010, 2012, and 2013 are supported") + } +} else : macx { + macx-clang | macx-llvm { + message("Mac build") + CONFIG += MacBuild + QMAKE_CXXFLAGS += -fvisibility=hidden + } else { + error("Unsupported Mac toolchain, only 64-bit LLVM+clang is supported") + } +} else { + error("Unsupported build platform, only Linux, Windows, and Mac are supported") +} + +# Installer configuration + +installer { + CONFIG -= debug + CONFIG -= debug_and_release + CONFIG += release + message(Build Installer) +} + +# Setup our supported build flavors + +CONFIG(debug, debug|release) { + message(Debug flavor) + CONFIG += DebugBuild +} else:CONFIG(release, debug|release) { + message(Release flavor) + CONFIG += ReleaseBuild +} else { + error(Unsupported build flavor) +} + +# Need to special case Windows debug_and_release since VS Project creation in this case does strange things [QTBUG-40351] +win32:debug_and_release { + CONFIG += WindowsDebugAndRelease +} + +# Setup our build directories + +BASEDIR = $${IN_PWD} + +DebugBuild { + DESTDIR = $${OUT_PWD}/debug + BUILDDIR = $${OUT_PWD}/build-debug +} + +ReleaseBuild { + DESTDIR = $${OUT_PWD}/release + BUILDDIR = $${OUT_PWD}/build-release +} + +OBJECTS_DIR = $${BUILDDIR}/obj +MOC_DIR = $${BUILDDIR}/moc +UI_DIR = $${BUILDDIR}/ui +RCC_DIR = $${BUILDDIR}/rcc +LANGUAGE = C++ + +# We place the created plugin lib into the objects dir so that make clean will clean it as well +LOCATION_PLUGIN_DESTDIR = $${OBJECTS_DIR} +LOCATION_PLUGIN_NAME = QGeoServiceProviderFactoryQGC + +message(BASEDIR $$BASEDIR DESTDIR $$DESTDIR TARGET $$TARGET) + +# Turn off serial port warnings +DEFINES += _TTY_NOWARN_ + +# +# OS Specific settings +# + +AndroidBuild { + DEFINES += __STDC_LIMIT_MACROS +} + +MacBuild { + CONFIG += x86_64 + CONFIG -= x86 + QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6 + QMAKE_MAC_SDK = macosx10.9 +} + +LinuxBuild { + DEFINES += __STDC_LIMIT_MACROS +} + +WindowsBuild { + DEFINES += __STDC_LIMIT_MACROS + + # Specify multi-process compilation within Visual Studio. + # (drastically improves compilation times for multi-core computers) + QMAKE_CXXFLAGS_DEBUG += -MP + QMAKE_CXXFLAGS_RELEASE += -MP +} + +# +# By default warnings as errors are turned off. Even so, in order for a pull request +# to be accepted you must compile cleanly with warnings as errors turned on the default +# set of OS builds. See http://www.qgroundcontrol.org/dev/contribute for more details. +# You can use the WarningsAsErrorsOn CONFIG switch to turn warnings as errors on for your +# own builds. +# + +MacBuild | LinuxBuild { + QMAKE_CXXFLAGS_WARN_ON += -Wall + WarningsAsErrorsOn { + QMAKE_CXXFLAGS_WARN_ON += -Werror + } +} + +WindowsBuild { + QMAKE_CXXFLAGS_WARN_ON += /W3 \ + /wd4996 \ # silence warnings about deprecated strcpy and whatnot + /wd4005 \ # silence warnings about macro redefinition + /wd4290 \ # ignore exception specifications + /Zc:strictStrings- # work around win 8.1 sdk sapi.h problem + WarningsAsErrorsOn { + QMAKE_CXXFLAGS_WARN_ON += /WX + } +} + +# +# Build-specific settings +# + +ReleaseBuild { + DEFINES += QT_NO_DEBUG + + WindowsBuild { + # Use link time code generation for better optimization (I believe this is supported in MSVC Express, but not 100% sure) + QMAKE_LFLAGS_LTCG = /LTCG + QMAKE_CFLAGS_LTCG = -GL + } +} + +# +# Unit Test specific configuration goes here +# +# We have to special case Windows debug_and_release builds because you can't have files +# which are only in the debug variant [QTBUG-40351]. So in this case we include unit tests +# even in the release variant. If you want a Windows release build with no unit tests run +# qmake with CONFIG-=debug_and_release CONFIG+=release. +# + +DebugBuild|WindowsDebugAndRelease { + DEFINES += UNITTEST_BUILD +} diff --git a/QGCExternalLibs.pri b/QGCExternalLibs.pri index dcda60c9a4fdbb2a6bf16c16738303a1cc1edfc9..03ae6cf709151af0462ced13d53a9cff23010ae6 100644 --- a/QGCExternalLibs.pri +++ b/QGCExternalLibs.pri @@ -55,153 +55,6 @@ exists($$MAVLINKPATH/common) { error($$sprintf("MAVLink folder does not exist at '%1'! Run 'git submodule init && git submodule update' on the command line.",$$MAVLINKPATH_REL)) } -# -# [OPTIONAL] OpenSceneGraph -# Allow the user to override OpenSceneGraph compilation through a DISABLE_OPEN_SCENE_GRAPH -# define like: `qmake DEFINES=DISABLE_OPEN_SCENE_GRAPH` -contains(DEFINES, DISABLE_OPEN_SCENE_GRAPH) { - message("Skipping support for OpenSceneGraph (manual override from command line)") - DEFINES -= DISABLE_OPEN_SCENE_GRAPH -} -# Otherwise the user can still disable this feature in the user_config.pri file. -else:exists(user_config.pri):infile(user_config.pri, DEFINES, DISABLE_OPEN_SCENE_GRAPH) { - message("Skipping support for OpenSceneGraph (manual override from user_config.pri)") -} -else:MacBuild { - # GLUT and OpenSceneGraph are part of standard install on Mac - message("Including support for OpenSceneGraph") - CONFIG += OSGDependency - - INCLUDEPATH += \ - $$BASEDIR/libs/lib/mac64/include - - LIBS += \ - -L$$BASEDIR/libs/lib/mac64/lib \ - -losgWidget -} else:LinuxBuild { - exists(/usr/include/osg) | exists(/usr/local/include/osg) { - message("Including support for OpenSceneGraph") - CONFIG += OSGDependency - } else { - warning("Skipping support for OpenSceneGraph (missing libraries, see README)") - } -} else:WindowsBuild { - exists($$BASEDIR/libs/lib/osg123) { - message("Including support for OpenSceneGraph") - CONFIG += OSGDependency - - INCLUDEPATH += \ - $$BASEDIR/libs/lib/osgEarth/win32/include \ - $$BASEDIR/libs/lib/osgEarth_3rdparty/win32/OpenSceneGraph-2.8.2/include - - LIBS += -L$$BASEDIR/libs/lib/osgEarth_3rdparty/win32/OpenSceneGraph-2.8.2/lib - } else { - warning("Skipping support for OpenSceneGraph (missing libraries, see README)") - } -} else { - message("Skipping support for OpenSceneGraph (unsupported platform)") -} - -OSGDependency { - DEFINES += QGC_OSG_ENABLED - - LIBS += \ - -losg \ - -losgViewer \ - -losgGA \ - -losgDB \ - -losgText \ - -lOpenThreads - - HEADERS += \ - src/ui/map3D/gpl.h \ - src/ui/map3D/CameraParams.h \ - src/ui/map3D/ViewParamWidget.h \ - src/ui/map3D/SystemContainer.h \ - src/ui/map3D/SystemViewParams.h \ - src/ui/map3D/GlobalViewParams.h \ - src/ui/map3D/SystemGroupNode.h \ - src/ui/map3D/Q3DWidget.h \ - src/ui/map3D/GCManipulator.h \ - src/ui/map3D/ImageWindowGeode.h \ - src/ui/map3D/PixhawkCheetahNode.h \ - src/ui/map3D/Pixhawk3DWidget.h \ - src/ui/map3D/Q3DWidgetFactory.h \ - src/ui/map3D/WebImageCache.h \ - src/ui/map3D/WebImage.h \ - src/ui/map3D/TextureCache.h \ - src/ui/map3D/Texture.h \ - src/ui/map3D/Imagery.h \ - src/ui/map3D/HUDScaleGeode.h \ - src/ui/map3D/WaypointGroupNode.h \ - src/ui/map3D/TerrainParamDialog.h \ - src/ui/map3D/ImageryParamDialog.h - - SOURCES += \ - src/ui/map3D/gpl.cc \ - src/ui/map3D/CameraParams.cc \ - src/ui/map3D/ViewParamWidget.cc \ - src/ui/map3D/SystemContainer.cc \ - src/ui/map3D/SystemViewParams.cc \ - src/ui/map3D/GlobalViewParams.cc \ - src/ui/map3D/SystemGroupNode.cc \ - src/ui/map3D/Q3DWidget.cc \ - src/ui/map3D/ImageWindowGeode.cc \ - src/ui/map3D/GCManipulator.cc \ - src/ui/map3D/PixhawkCheetahNode.cc \ - src/ui/map3D/Pixhawk3DWidget.cc \ - src/ui/map3D/Q3DWidgetFactory.cc \ - src/ui/map3D/WebImageCache.cc \ - src/ui/map3D/WebImage.cc \ - src/ui/map3D/TextureCache.cc \ - src/ui/map3D/Texture.cc \ - src/ui/map3D/Imagery.cc \ - src/ui/map3D/HUDScaleGeode.cc \ - src/ui/map3D/WaypointGroupNode.cc \ - src/ui/map3D/TerrainParamDialog.cc \ - src/ui/map3D/ImageryParamDialog.cc -} - -# -# [OPTIONAL] Google Earth dependency. Provides Google Earth view to supplement 2D map view. -# Only supported on Mac and Windows where Google Earth can be installed. -# -GoogleEarthDisableOverride { - contains(DEFINES, DISABLE_GOOGLE_EARTH) { - message("Skipping support for Google Earth view (manual override from command line)") - DEFINES -= DISABLE_GOOGLE_EARTH - } - # Otherwise the user can still disable this feature in the user_config.pri file. - else:exists(user_config.pri):infile(user_config.pri, DEFINES, DISABLE_GOOGLE_EARTH) { - message("Skipping support for Google Earth view (manual override from user_config.pri)") - } else:MacBuild { - message("Including support for Google Earth view") - DEFINES += QGC_GOOGLE_EARTH_ENABLED - HEADERS += src/ui/map3D/QGCGoogleEarthView.h \ - src/ui/map3D/QGCWebPage.h \ - src/ui/QGCWebView.h - SOURCES += src/ui/map3D/QGCGoogleEarthView.cc \ - src/ui/map3D/QGCWebPage.cc \ - src/ui/QGCWebView.cc - FORMS += src/ui/QGCWebView.ui - } else:WindowsBuild { - message("Including support for Google Earth view") - DEFINES += QGC_GOOGLE_EARTH_ENABLED - HEADERS += src/ui/map3D/QGCGoogleEarthView.h \ - src/ui/map3D/QGCWebPage.h \ - src/ui/QGCWebView.h - SOURCES += src/ui/map3D/QGCGoogleEarthView.cc \ - src/ui/map3D/QGCWebPage.cc \ - src/ui/QGCWebView.cc - FORMS += src/ui/QGCWebView.ui - QT += axcontainer - } else { - message("Skipping support for Google Earth view (unsupported platform)") - } -} else { - message("Skipping support for Google Earth due to Issue 1157") -} - # # [REQUIRED] EIGEN matrix library # NOMINMAX constant required to make internal min/max work. @@ -416,11 +269,12 @@ contains (DEFINES, DISABLE_SPEECH) { } # Mac support is built into OS 10.6+. else:MacBuild { - message("Including support for speech output") - DEFINES += QGC_SPEECH_ENABLED + message("Including support for speech output") + DEFINES += QGC_SPEECH_ENABLED } # Windows supports speech through native API. else:WindowsBuild { - message("Including support for speech output") - DEFINES += QGC_SPEECH_ENABLED + message("Including support for speech output") + DEFINES += QGC_SPEECH_ENABLED + LIBS += -lOle32 } diff --git a/QGCLocationPlugin.pro b/QGCLocationPlugin.pro new file mode 100644 index 0000000000000000000000000000000000000000..e2da91af333e2ad38abeb5ba0ceffb5e401c3c95 --- /dev/null +++ b/QGCLocationPlugin.pro @@ -0,0 +1,33 @@ +include(QGCCommon.pri) + +TEMPLATE = lib +TARGET = QGeoServiceProviderFactoryQGC +CONFIG += plugin static +QT += location-private positioning-private network +PLUGIN_TYPE = geoservices + +DESTDIR = $${LOCATION_PLUGIN_DESTDIR} + +INCLUDEPATH += $$QT.location.includes + +HEADERS += \ + src/QtLocationPlugin/qgeoserviceproviderpluginqgc.h \ + src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.h \ + src/QtLocationPlugin/qgeotilefetcherqgc.h \ + src/QtLocationPlugin/qgeomapreplyqgc.h \ + src/QtLocationPlugin/qgeocodingmanagerengineqgc.h \ + src/QtLocationPlugin/qgeocodereplyqgc.h \ + src/QtLocationPlugin/OpenPilotMaps.h + +SOURCES += \ + src/QtLocationPlugin/qgeoserviceproviderpluginqgc.cpp \ + src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.cpp \ + src/QtLocationPlugin/qgeotilefetcherqgc.cpp \ + src/QtLocationPlugin/qgeomapreplyqgc.cpp \ + src/QtLocationPlugin/qgeocodingmanagerengineqgc.cpp \ + src/QtLocationPlugin/qgeocodereplyqgc.cpp \ + src/QtLocationPlugin/OpenPilotMaps.cc + +OTHER_FILES += \ + src/QtLocationPlugin/qgc_maps_plugin.json + diff --git a/QGCSetup.pri b/QGCSetup.pri index 08dd8f8b716cdca65857644aa0ede36df4686e5e..cce994557c81bf9a1832c27e47c7a425323283be 100644 --- a/QGCSetup.pri +++ b/QGCSetup.pri @@ -19,6 +19,10 @@ QMAKE_POST_LINK += echo "Copying files" +AndroidBuild { + INSTALLS += $$DESTDIR +} + # # Copy the application resources to the associated place alongside the application # @@ -36,14 +40,14 @@ MacBuild { # in the target. WindowsBuild { # Make sure to keep both side of this if using the same set of directories - DESTDIR_COPY_RESOURCE_LIST = $$replace(DESTDIR,"/","\\") - BASEDIR_COPY_RESOURCE_LIST = $$replace(BASEDIR,"/","\\") - QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$BASEDIR_COPY_RESOURCE_LIST\\files\" \"$$DESTDIR_COPY_RESOURCE_LIST\\files\" - QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$BASEDIR_COPY_RESOURCE_LIST\\data\" \"$$DESTDIR_COPY_RESOURCE_LIST\\data\" + DESTDIR_COPY_RESOURCE_LIST = $$replace(DESTDIR,"/","\\") + BASEDIR_COPY_RESOURCE_LIST = $$replace(BASEDIR,"/","\\") + QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$BASEDIR_COPY_RESOURCE_LIST\\flightgear\" \"$$DESTDIR_COPY_RESOURCE_LIST\\flightgear\" } else { - # Make sure to keep both side of this if using the same set of directories - QMAKE_POST_LINK += && $$QMAKE_COPY_DIR $$BASEDIR/files $$DESTDIR_COPY_RESOURCE_LIST - QMAKE_POST_LINK += && $$QMAKE_COPY_DIR $$BASEDIR/data $$DESTDIR_COPY_RESOURCE_LIST + !AndroidBuild { + # Make sure to keep both sides of this if using the same set of directories + QMAKE_POST_LINK += && $$QMAKE_COPY_DIR $$BASEDIR/flightgear $$DESTDIR_COPY_RESOURCE_LIST + } } # @@ -153,13 +157,13 @@ MacBuild { } WindowsBuild { - BASEDIR_WIN = $$replace(BASEDIR, "/", "\\") - DESTDIR_WIN = $$replace(DESTDIR, "/", "\\") - D_DIR = $$[QT_INSTALL_LIBEXECS] - DLL_DIR = $$replace(D_DIR, "/", "\\") + BASEDIR_WIN = $$replace(BASEDIR, "/", "\\") + DESTDIR_WIN = $$replace(DESTDIR, "/", "\\") + D_DIR = $$[QT_INSTALL_LIBEXECS] + DLL_DIR = $$replace(D_DIR, "/", "\\") - # Copy dependencies - DebugBuild: DLL_QT_DEBUGCHAR = "d" + # Copy dependencies + DebugBuild: DLL_QT_DEBUGCHAR = "d" ReleaseBuild: DLL_QT_DEBUGCHAR = "" COPY_FILE_LIST = \ $$BASEDIR\\libs\\lib\\sdl\\win32\\SDL.dll \ @@ -167,6 +171,7 @@ WindowsBuild { $$DLL_DIR\\icu*.dll \ $$DLL_DIR\\Qt5Core$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Gui$${DLL_QT_DEBUGCHAR}.dll \ + $$DLL_DIR\\Qt5Location$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Multimedia$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5MultimediaWidgets$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Network$${DLL_QT_DEBUGCHAR}.dll \ @@ -178,7 +183,6 @@ WindowsBuild { $$DLL_DIR\\Qt5QuickWidgets$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Sensors$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5SerialPort$${DLL_QT_DEBUGCHAR}.dll \ - $$DLL_DIR\\Qt5OpenGL$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Sql$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Svg$${DLL_QT_DEBUGCHAR}.dll \ $$DLL_DIR\\Qt5Test$${DLL_QT_DEBUGCHAR}.dll \ @@ -190,17 +194,18 @@ WindowsBuild { QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY \"$$COPY_FILE\" \"$$DESTDIR_WIN\" } - # Copy platform plugins - P_DIR = $$[QT_INSTALL_PLUGINS] - PLUGINS_DIR_WIN = $$replace(P_DIR, "/", "\\") - QMAKE_POST_LINK += $$escape_expand(\\n) mkdir release\\platforms - QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY \"$$PLUGINS_DIR_WIN\\platforms\\qwindows$${DLL_QT_DEBUGCHAR}.dll\" \"$$DESTDIR_WIN\\platforms\\qwindows$${DLL_QT_DEBUGCHAR}.dll\" - QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\imageformats\" \"$$DESTDIR_WIN\\imageformats\" + # Copy platform plugins + P_DIR = $$[QT_INSTALL_PLUGINS] + PLUGINS_DIR_WIN = $$replace(P_DIR, "/", "\\") + QMAKE_POST_LINK += $$escape_expand(\\n) mkdir "$$DESTDIR_WIN\\platforms" + QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY \"$$PLUGINS_DIR_WIN\\platforms\\qwindows$${DLL_QT_DEBUGCHAR}.dll\" \"$$DESTDIR_WIN\\platforms\\qwindows$${DLL_QT_DEBUGCHAR}.dll\" + QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\imageformats\" \"$$DESTDIR_WIN\\imageformats\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\sqldrivers\" \"$$DESTDIR_WIN\\sqldrivers\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\bearer\" \"$$DESTDIR_WIN\\bearer\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\iconengines\" \"$$DESTDIR_WIN\\iconengines\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\printsupport\" \"$$DESTDIR_WIN\\printsupport\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\qmltooling\" \"$$DESTDIR_WIN\\qmltooling\" + QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$PLUGINS_DIR_WIN\\geoservices\" \"$$DESTDIR_WIN\\geoservices\" # Copy Qml libraries Q_DIR = $$[QT_INSTALL_QML] @@ -208,6 +213,8 @@ WindowsBuild { QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$QML_DIR_WIN\\QtGraphicalEffects\" \"$$DESTDIR_WIN\\QtGraphicalEffects\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$QML_DIR_WIN\\QtQuick\" \"$$DESTDIR_WIN\\QtQuick\" QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$QML_DIR_WIN\\QtQuick.2\" \"$$DESTDIR_WIN\\QtQuick.2\" + QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$QML_DIR_WIN\\QtLocation\" \"$$DESTDIR_WIN\\QtLocation\" + QMAKE_POST_LINK += $$escape_expand(\\n) $$QMAKE_COPY_DIR \"$$QML_DIR_WIN\\QtPositioning\" \"$$DESTDIR_WIN\\QtPositioning\" ReleaseBuild { # Copy Visual Studio DLLs diff --git a/README.md b/README.md index dd28e016560017aac5fcab821f5f2385741fe50e..f2d3becd1a67262440bb6aebd667da131573b09d 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ QGroundControl builds are supported for OSX, Linux and Windows. See the individu Supported builds are 64 bit, built using the clang compiler. #### Install QT -- - - + 1. Download Qt 5.4 from: 2. Double click the package installer and follow instructions. @@ -66,12 +66,14 @@ Supported builds for Linux are 32 or 64-bit, built using gcc. * For Fedora: `sudo yum install qt-creator qt5-qtbase-devel qt5-qtdeclarative-devel qt5-qtserialport-devel qt5-qtsvg-devel qt5-qtwebkit-devel SDL-devel SDL-static systemd-devel qt5-qtgraphicaleffects qt5-qtquickcontrols` * For Arch Linux: `pacman -Sy qtcreator qt5-base qt5-declarative qt5-serialport qt5-svg qt5-webkit` * For Ubuntu: Please be aware that the time of writing, Qt5.4 is unavailable in the official repositories Ubuntu 14.04/Mint 17 - * Add this PPA to your sources.list: `ppa:beineri/opt-qt541-trusty` + * Add this PPA for Qt5.4: `sudo add-apt-repository ppa:beineri/opt-qt541-trusty` * If you get a 404 error from "apt-get update" below, open System Settings:Software & Updates:Other Software and edit the entry for opt-qt541-trusty to reference Distribution: trusty. - * Run the following in your terminal: `sudo apt-get update && sudo apt-get install qt54tools qt54base qt54declarative qt54serialport qt54svg qt54webkit qt54quickcontrols qt54xmlpatterns qt54x11extras qt54websockets qt54sensors qt54script qt54quick1 qt54qbs qt54multimedia qt54location qt54imageformats qt54graphicaleffects qt54creator qt54connectivity` + * Run the following in your terminal: `sudo apt-get update && sudo apt-get install qt54tools qt54base qt54declarative qt54serialport qt54svg qt54webkit qt54quickcontrols qt54xmlpatterns qt54x11extras qt54websockets qt54sensors qt54script qt54quick1 qt54qbs qt54multimedia qt54location qt54imageformats qt54graphicaleffects qt54creator qt54connectivity libsdl1.2-dev libudev-dev` * Next, set the environment variables by executing in the terminal: `source /opt/qt54/bin/qt54-env.sh` or copy and paste the contents to your `~/.profile` file to set them on login. * Verify that the variables have been set: `echo $PATH && echo $QTDIR`. The output should read `/opt/qt54/bin:...` and `/opt/qt54`. +If you get this error when running qgroundcontrol: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'GLIBCXX_3.4.20' not found. You need to either update to the latest gcc, or install the latest libstdc++.6 using: sudo apt-get install libstdc++6. + #### [Optional] Install additional libraries * For text-to-speech (espeak) * For Ubuntu: `sudo apt-get install espeak libespeak-dev` @@ -84,12 +86,15 @@ Supported builds for Linux are 32 or 64-bit, built using gcc. #### Build QGroundControl 1. Change directory to you `qgroundcontrol` source directory. -2. Run `qmake` +2. Run `qmake -r qgroundcontrol.pro` 3. Run `make` ### Build on Windows Supported builds for Windows are 32 bit only built using Visual Studio 2013 or higher. +#### Install Windows USB driver to connect to Pixhawk/PX4Flow/3DR Radio +Install from here: http://www.pixhawk.org/firmware/downloads + #### Install Visual Studio Express 2013 Only compilation using Visual Studio 2013 is supported. Download and install Visual Studio Express Edition (free) from here: . Make sure you install the Windows Desktop version. @@ -100,9 +105,30 @@ Download Qt 5.4 from here: + * On Ubuntu, you have to set the file to executable:`chmod +x ~/Downloads/qt-opensource-linux-x64-1.6.0-8-online.run\` +* Run the installer and follow the installation steps. + * Select the directory you want to install Qt, which is handy if you don't want to install system wide or don't have root access. + * Select the components you want to install. *Tools* will be selected by default. You also want to install the Qt 5.4 module along with the targets you are interested in (i.e. 32-Bit OpenGL for Windows, etc.). On Ubuntu, *Android armv7* will be selected by default as well. You may or may not want to install that, depending on your desire to target that platform. Same idea for OS X. It will have *iOS* Kits selected as well. + * Accept the license and the installer will download all the necessary modules and install where you told it to install. +* Go to the Qt Creator directory: + * `~/local/Qt/Tools/QtCreator/bin` for Ubuntu (if that's where you installed it) + * `~/local/Qt/Qt Creator.app` for OS X (if that's where you installed it) + * `C:/local/Qt/Tools/QtCreator/bin` for Windows (if that's where you installed it) +* Launch Qt Creator and open the `qgroundcontrol.pro` project. + +When you open a project in Qt Creator for the first time, it will ask what targets (*Kits*) you want to target. The options will depend on what modules you downloaded above. For instance, on Mac OS X you would select *Desktop Qt 5.4.1 clang 64bit*. +It's also a good idea to go into *Projects/Build Steps* (side tool bar) and select Make's *Details*. For *Make Arguments*, add `-jx` (`/J x` on Windows) where `x` is at least the numbers of cores you have. That is, if you are running on a Mac Pro with 24 cores, you would use `-j24`. That will run 24 concurrent compiler instances at a time and run the build a whole lot faster. Your mileage may vary depending on your disk IO throughput. Note that for Windows, this method will build QGC x many times faster than when using Visual Studio as described above. Visual Studio allocates one process per *Project*. As QGroundControl is one very large project, it will still compile one file at a time within that one process. When you build from within Qt Creator (and give the ```/J x``` option to make), it will use x number of concurrent compiler processes. + +Qt Creator is a full-blown development IDE. You can even debug right from within it and it provides the full Qt API documentation. Just place the mouse cursor over a Qt class/element and hit the F1 key. ### Additional build notes for all supported OS @@ -114,7 +140,6 @@ Download Qt 5.4 from here: ). Since logging is on by default, an example qtlogging.ini file is included at the root of the repository which disables logging. Follow the instructions from Qt as to why and where to put this file. You can then edit the file to get a logging level that suits your needs. ## Additional functionality diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..21fcc18846fe7a5d125916d7b18a4e8044627469 --- /dev/null +++ b/android/AndroidManifest.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/files/images/icons/v2/t256.png b/android/res/drawable-ldpi/icon.png similarity index 100% rename from files/images/icons/v2/t256.png rename to android/res/drawable-ldpi/icon.png diff --git a/android/res/xml/device_filter.xml b/android/res/xml/device_filter.xml new file mode 100644 index 0000000000000000000000000000000000000000..a149a80b508d8f8978a9fdd66bfedd4b78ca4046 --- /dev/null +++ b/android/res/xml/device_filter.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/src/com/hoho/android/usbserial/driver/CdcAcmSerialDriver.java b/android/src/com/hoho/android/usbserial/driver/CdcAcmSerialDriver.java new file mode 100644 index 0000000000000000000000000000000000000000..3dec53a9a78daf83393b11a77147bcc3a21abe86 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/CdcAcmSerialDriver.java @@ -0,0 +1,252 @@ +package com.hoho.android.usbserial.driver; + +import android.hardware.usb.UsbConstants; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; +import android.hardware.usb.UsbEndpoint; +import android.hardware.usb.UsbInterface; +import android.util.Log; + +import java.io.IOException; +import java.util.LinkedHashMap; +import java.util.Map; + +/** + * USB CDC/ACM serial driver implementation. + * + * @author mike wakerly (opensource@hoho.com) + * @see Universal + * Serial Bus Class Definitions for Communication Devices, v1.1 + */ +public class CdcAcmSerialDriver extends CommonUsbSerialDriver { + + private final String TAG = CdcAcmSerialDriver.class.getSimpleName(); + + private UsbInterface mControlInterface; + private UsbInterface mDataInterface; + + private UsbEndpoint mControlEndpoint; + private UsbEndpoint mReadEndpoint; + private UsbEndpoint mWriteEndpoint; + + private boolean mRts = false; + private boolean mDtr = false; + + private static final int USB_RECIP_INTERFACE = 0x01; + private static final int USB_RT_ACM = UsbConstants.USB_TYPE_CLASS | USB_RECIP_INTERFACE; + + private static final int SET_LINE_CODING = 0x20; // USB CDC 1.1 section 6.2 + private static final int GET_LINE_CODING = 0x21; + private static final int SET_CONTROL_LINE_STATE = 0x22; + private static final int SEND_BREAK = 0x23; + + public CdcAcmSerialDriver(UsbDevice device, UsbDeviceConnection connection) { + super(device, connection); + } + + @Override + public void open() throws IOException { + Log.d(TAG, "claiming interfaces, count=" + mDevice.getInterfaceCount()); + + Log.d(TAG, "Claiming control interface."); + mControlInterface = mDevice.getInterface(0); + Log.d(TAG, "Control iface=" + mControlInterface); + // class should be USB_CLASS_COMM + + if (!mConnection.claimInterface(mControlInterface, true)) { + throw new IOException("Could not claim control interface."); + } + mControlEndpoint = mControlInterface.getEndpoint(0); + Log.d(TAG, "Control endpoint direction: " + mControlEndpoint.getDirection()); + + Log.d(TAG, "Claiming data interface."); + mDataInterface = mDevice.getInterface(1); + Log.d(TAG, "data iface=" + mDataInterface); + // class should be USB_CLASS_CDC_DATA + + if (!mConnection.claimInterface(mDataInterface, true)) { + throw new IOException("Could not claim data interface."); + } + mReadEndpoint = mDataInterface.getEndpoint(1); + Log.d(TAG, "Read endpoint direction: " + mReadEndpoint.getDirection()); + mWriteEndpoint = mDataInterface.getEndpoint(0); + Log.d(TAG, "Write endpoint direction: " + mWriteEndpoint.getDirection()); + } + + private int sendAcmControlMessage(int request, int value, byte[] buf) { + return mConnection.controlTransfer( + USB_RT_ACM, request, value, 0, buf, buf != null ? buf.length : 0, 5000); + } + + @Override + public void close() throws IOException { + mConnection.close(); + } + + @Override + public int read(byte[] dest, int timeoutMillis) throws IOException { + final int numBytesRead; + synchronized (mReadBufferLock) { + int readAmt = Math.min(dest.length, mReadBuffer.length); + numBytesRead = mConnection.bulkTransfer(mReadEndpoint, mReadBuffer, readAmt, + timeoutMillis); + if (numBytesRead < 0) { + // This sucks: we get -1 on timeout, not 0 as preferred. + // We *should* use UsbRequest, except it has a bug/api oversight + // where there is no way to determine the number of bytes read + // in response :\ -- http://b.android.com/28023 + return 0; + } + System.arraycopy(mReadBuffer, 0, dest, 0, numBytesRead); + } + return numBytesRead; + } + + @Override + public int write(byte[] src, int timeoutMillis) throws IOException { + // TODO(mikey): Nearly identical to FtdiSerial write. Refactor. + int offset = 0; + + while (offset < src.length) { + final int writeLength; + final int amtWritten; + + synchronized (mWriteBufferLock) { + final byte[] writeBuffer; + + writeLength = Math.min(src.length - offset, mWriteBuffer.length); + if (offset == 0) { + writeBuffer = src; + } else { + // bulkTransfer does not support offsets, make a copy. + System.arraycopy(src, offset, mWriteBuffer, 0, writeLength); + writeBuffer = mWriteBuffer; + } + + amtWritten = mConnection.bulkTransfer(mWriteEndpoint, writeBuffer, writeLength, + timeoutMillis); + } + if (amtWritten <= 0) { + throw new IOException("Error writing " + writeLength + + " bytes at offset " + offset + " length=" + src.length); + } + + //Log.d(TAG, "Wrote amt=" + amtWritten + " attempted=" + writeLength); + offset += amtWritten; + } + return offset; + } + + @Override + public void setParameters(int baudRate, int dataBits, int stopBits, int parity) { + byte stopBitsByte; + switch (stopBits) { + case STOPBITS_1: stopBitsByte = 0; break; + case STOPBITS_1_5: stopBitsByte = 1; break; + case STOPBITS_2: stopBitsByte = 2; break; + default: throw new IllegalArgumentException("Bad value for stopBits: " + stopBits); + } + + byte parityBitesByte; + switch (parity) { + case PARITY_NONE: parityBitesByte = 0; break; + case PARITY_ODD: parityBitesByte = 1; break; + case PARITY_EVEN: parityBitesByte = 2; break; + case PARITY_MARK: parityBitesByte = 3; break; + case PARITY_SPACE: parityBitesByte = 4; break; + default: throw new IllegalArgumentException("Bad value for parity: " + parity); + } + + byte[] msg = { + (byte) ( baudRate & 0xff), + (byte) ((baudRate >> 8 ) & 0xff), + (byte) ((baudRate >> 16) & 0xff), + (byte) ((baudRate >> 24) & 0xff), + stopBitsByte, + parityBitesByte, + (byte) dataBits}; + sendAcmControlMessage(SET_LINE_CODING, 0, msg); + } + + @Override + public boolean getCD() throws IOException { + return false; // TODO + } + + @Override + public boolean getCTS() throws IOException { + return false; // TODO + } + + @Override + public boolean getDSR() throws IOException { + return false; // TODO + } + + @Override + public boolean getDTR() throws IOException { + return mDtr; + } + + @Override + public void setDTR(boolean value) throws IOException { + mDtr = value; + setDtrRts(); + } + + @Override + public boolean getRI() throws IOException { + return false; // TODO + } + + @Override + public boolean getRTS() throws IOException { + return mRts; + } + + @Override + public void setRTS(boolean value) throws IOException { + mRts = value; + setDtrRts(); + } + + private void setDtrRts() { + int value = (mRts ? 0x2 : 0) | (mDtr ? 0x1 : 0); + sendAcmControlMessage(SET_CONTROL_LINE_STATE, value, null); + } + + public static Map getSupportedDevices() { + final Map supportedDevices = new LinkedHashMap(); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_ARDUINO), + new int[] { + UsbId.ARDUINO_UNO, + UsbId.ARDUINO_UNO_R3, + UsbId.ARDUINO_MEGA_2560, + UsbId.ARDUINO_MEGA_2560_R3, + UsbId.ARDUINO_SERIAL_ADAPTER, + UsbId.ARDUINO_SERIAL_ADAPTER_R3, + UsbId.ARDUINO_MEGA_ADK, + UsbId.ARDUINO_MEGA_ADK_R3, + UsbId.ARDUINO_LEONARDO, + }); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_VAN_OOIJEN_TECH), + new int[] { + UsbId.VAN_OOIJEN_TECH_TEENSYDUINO_SERIAL, + }); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_ATMEL), + new int[] { + UsbId.ATMEL_LUFA_CDC_DEMO_APP, + }); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_LEAFLABS), + new int[] { + UsbId.LEAFLABS_MAPLE, + }); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_PX4), + new int[] { + UsbId.DEVICE_PX4FMU, + }); + return supportedDevices; + } + +} diff --git a/android/src/com/hoho/android/usbserial/driver/CommonUsbSerialDriver.java b/android/src/com/hoho/android/usbserial/driver/CommonUsbSerialDriver.java new file mode 100644 index 0000000000000000000000000000000000000000..734933a22238264aa766ab39ec4365b3b4b0f50e --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/CommonUsbSerialDriver.java @@ -0,0 +1,156 @@ +/* Copyright 2013 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ + +package com.hoho.android.usbserial.driver; + +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; + +import java.io.IOException; + +/** + * A base class shared by several driver implementations. + * + * @author mike wakerly (opensource@hoho.com) + */ +abstract class CommonUsbSerialDriver implements UsbSerialDriver { + + public static final int DEFAULT_READ_BUFFER_SIZE = 16 * 1024; + public static final int DEFAULT_WRITE_BUFFER_SIZE = 16 * 1024; + + protected final UsbDevice mDevice; + protected final UsbDeviceConnection mConnection; + + protected final Object mReadBufferLock = new Object(); + protected final Object mWriteBufferLock = new Object(); + + /** Internal read buffer. Guarded by {@link #mReadBufferLock}. */ + protected byte[] mReadBuffer; + + /** Internal write buffer. Guarded by {@link #mWriteBufferLock}. */ + protected byte[] mWriteBuffer; + + public CommonUsbSerialDriver(UsbDevice device, UsbDeviceConnection connection) { + mDevice = device; + mConnection = connection; + + mReadBuffer = new byte[DEFAULT_READ_BUFFER_SIZE]; + mWriteBuffer = new byte[DEFAULT_WRITE_BUFFER_SIZE]; + } + + /** + * Returns the currently-bound USB device. + * + * @return the device + */ + @Override + public final UsbDevice getDevice() { + return mDevice; + } + + /** + * Returns the currently-bound USB device connection. + * + * @return the device connection + */ + @Override + public final UsbDeviceConnection getDeviceConnection() { + return mConnection; + } + + + + /** + * Sets the size of the internal buffer used to exchange data with the USB + * stack for read operations. Most users should not need to change this. + * + * @param bufferSize the size in bytes + */ + public final void setReadBufferSize(int bufferSize) { + synchronized (mReadBufferLock) { + if (bufferSize == mReadBuffer.length) { + return; + } + mReadBuffer = new byte[bufferSize]; + } + } + + /** + * Sets the size of the internal buffer used to exchange data with the USB + * stack for write operations. Most users should not need to change this. + * + * @param bufferSize the size in bytes + */ + public final void setWriteBufferSize(int bufferSize) { + synchronized (mWriteBufferLock) { + if (bufferSize == mWriteBuffer.length) { + return; + } + mWriteBuffer = new byte[bufferSize]; + } + } + + @Override + public abstract void open() throws IOException; + + @Override + public abstract void close() throws IOException; + + @Override + public abstract int read(final byte[] dest, final int timeoutMillis) throws IOException; + + @Override + public abstract int write(final byte[] src, final int timeoutMillis) throws IOException; + + @Override + public abstract void setParameters( + int baudRate, int dataBits, int stopBits, int parity) throws IOException; + + @Override + public abstract boolean getCD() throws IOException; + + @Override + public abstract boolean getCTS() throws IOException; + + @Override + public abstract boolean getDSR() throws IOException; + + @Override + public abstract boolean getDTR() throws IOException; + + @Override + public abstract void setDTR(boolean value) throws IOException; + + @Override + public abstract boolean getRI() throws IOException; + + @Override + public abstract boolean getRTS() throws IOException; + + @Override + public abstract void setRTS(boolean value) throws IOException; + + @Override + public boolean purgeHwBuffers(boolean flushReadBuffers, boolean flushWriteBuffers) throws IOException { + return !flushReadBuffers && !flushWriteBuffers; + } + +} + diff --git a/android/src/com/hoho/android/usbserial/driver/Cp2102SerialDriver.java b/android/src/com/hoho/android/usbserial/driver/Cp2102SerialDriver.java new file mode 100644 index 0000000000000000000000000000000000000000..aa151ba1a0e6887ea4b7985a43044dd4eb6fcbd2 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/Cp2102SerialDriver.java @@ -0,0 +1,292 @@ +package com.hoho.android.usbserial.driver; + +import android.hardware.usb.UsbConstants; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; +import android.hardware.usb.UsbEndpoint; +import android.hardware.usb.UsbInterface; +import android.util.Log; + +import java.io.IOException; +import java.util.LinkedHashMap; +import java.util.Map; + +public class Cp2102SerialDriver extends CommonUsbSerialDriver { + + private static final String TAG = Cp2102SerialDriver.class.getSimpleName(); + + private static final int DEFAULT_BAUD_RATE = 9600; + + private static final int USB_WRITE_TIMEOUT_MILLIS = 5000; + + /* + * Configuration Request Types + */ + private static final int REQTYPE_HOST_TO_DEVICE = 0x41; + + /* + * Configuration Request Codes + */ + private static final int SILABSER_IFC_ENABLE_REQUEST_CODE = 0x00; + private static final int SILABSER_SET_BAUDDIV_REQUEST_CODE = 0x01; + private static final int SILABSER_SET_LINE_CTL_REQUEST_CODE = 0x03; + private static final int SILABSER_SET_MHS_REQUEST_CODE = 0x07; + private static final int SILABSER_SET_BAUDRATE = 0x1E; + private static final int SILABSER_FLUSH_REQUEST_CODE = 0x12; + + private static final int FLUSH_READ_CODE = 0x0a; + private static final int FLUSH_WRITE_CODE = 0x05; + + /* + * SILABSER_IFC_ENABLE_REQUEST_CODE + */ + private static final int UART_ENABLE = 0x0001; + private static final int UART_DISABLE = 0x0000; + + /* + * SILABSER_SET_BAUDDIV_REQUEST_CODE + */ + private static final int BAUD_RATE_GEN_FREQ = 0x384000; + + /* + * SILABSER_SET_MHS_REQUEST_CODE + */ + private static final int MCR_DTR = 0x0001; + private static final int MCR_RTS = 0x0002; + private static final int MCR_ALL = 0x0003; + + private static final int CONTROL_WRITE_DTR = 0x0100; + private static final int CONTROL_WRITE_RTS = 0x0200; + + private UsbEndpoint mReadEndpoint; + private UsbEndpoint mWriteEndpoint; + + public Cp2102SerialDriver(UsbDevice device, UsbDeviceConnection connection) { + super(device, connection); + } + + private int setConfigSingle(int request, int value) { + return mConnection.controlTransfer(REQTYPE_HOST_TO_DEVICE, request, value, + 0, null, 0, USB_WRITE_TIMEOUT_MILLIS); + } + + @Override + public void open() throws IOException { + boolean opened = false; + try { + for (int i = 0; i < mDevice.getInterfaceCount(); i++) { + UsbInterface usbIface = mDevice.getInterface(i); + if (mConnection.claimInterface(usbIface, true)) { + Log.d(TAG, "claimInterface " + i + " SUCCESS"); + } else { + Log.d(TAG, "claimInterface " + i + " FAIL"); + } + } + + UsbInterface dataIface = mDevice.getInterface(mDevice.getInterfaceCount() - 1); + for (int i = 0; i < dataIface.getEndpointCount(); i++) { + UsbEndpoint ep = dataIface.getEndpoint(i); + if (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK) { + if (ep.getDirection() == UsbConstants.USB_DIR_IN) { + mReadEndpoint = ep; + } else { + mWriteEndpoint = ep; + } + } + } + + setConfigSingle(SILABSER_IFC_ENABLE_REQUEST_CODE, UART_ENABLE); + setConfigSingle(SILABSER_SET_MHS_REQUEST_CODE, MCR_ALL | CONTROL_WRITE_DTR | CONTROL_WRITE_RTS); + setConfigSingle(SILABSER_SET_BAUDDIV_REQUEST_CODE, BAUD_RATE_GEN_FREQ / DEFAULT_BAUD_RATE); +// setParameters(DEFAULT_BAUD_RATE, DEFAULT_DATA_BITS, DEFAULT_STOP_BITS, DEFAULT_PARITY); + opened = true; + } finally { + if (!opened) { + close(); + } + } + } + + @Override + public void close() throws IOException { + setConfigSingle(SILABSER_IFC_ENABLE_REQUEST_CODE, UART_DISABLE); + mConnection.close(); + } + + @Override + public int read(byte[] dest, int timeoutMillis) throws IOException { + final int numBytesRead; + synchronized (mReadBufferLock) { + int readAmt = Math.min(dest.length, mReadBuffer.length); + numBytesRead = mConnection.bulkTransfer(mReadEndpoint, mReadBuffer, readAmt, + timeoutMillis); + if (numBytesRead < 0) { + // This sucks: we get -1 on timeout, not 0 as preferred. + // We *should* use UsbRequest, except it has a bug/api oversight + // where there is no way to determine the number of bytes read + // in response :\ -- http://b.android.com/28023 + return 0; + } + System.arraycopy(mReadBuffer, 0, dest, 0, numBytesRead); + } + return numBytesRead; + } + + @Override + public int write(byte[] src, int timeoutMillis) throws IOException { + int offset = 0; + + while (offset < src.length) { + final int writeLength; + final int amtWritten; + + synchronized (mWriteBufferLock) { + final byte[] writeBuffer; + + writeLength = Math.min(src.length - offset, mWriteBuffer.length); + if (offset == 0) { + writeBuffer = src; + } else { + // bulkTransfer does not support offsets, make a copy. + System.arraycopy(src, offset, mWriteBuffer, 0, writeLength); + writeBuffer = mWriteBuffer; + } + + amtWritten = mConnection.bulkTransfer(mWriteEndpoint, writeBuffer, writeLength, + timeoutMillis); + } + if (amtWritten <= 0) { + throw new IOException("Error writing " + writeLength + + " bytes at offset " + offset + " length=" + src.length); + } + + //Log.d(TAG, "Wrote amt=" + amtWritten + " attempted=" + writeLength); + offset += amtWritten; + } + return offset; + } + + private void setBaudRate(int baudRate) throws IOException { + byte[] data = new byte[] { + (byte) ( baudRate & 0xff), + (byte) ((baudRate >> 8 ) & 0xff), + (byte) ((baudRate >> 16) & 0xff), + (byte) ((baudRate >> 24) & 0xff) + }; + int ret = mConnection.controlTransfer(REQTYPE_HOST_TO_DEVICE, SILABSER_SET_BAUDRATE, + 0, 0, data, 4, USB_WRITE_TIMEOUT_MILLIS); + if (ret < 0) { + throw new IOException("Error setting baud rate."); + } + } + + @Override + public void setParameters(int baudRate, int dataBits, int stopBits, int parity) + throws IOException { + setBaudRate(baudRate); + + int configDataBits = 0; + switch (dataBits) { + case DATABITS_5: + configDataBits |= 0x0500; + break; + case DATABITS_6: + configDataBits |= 0x0600; + break; + case DATABITS_7: + configDataBits |= 0x0700; + break; + case DATABITS_8: + configDataBits |= 0x0800; + break; + default: + configDataBits |= 0x0800; + break; + } + setConfigSingle(SILABSER_SET_LINE_CTL_REQUEST_CODE, configDataBits); + + int configParityBits = 0; // PARITY_NONE + switch (parity) { + case PARITY_ODD: + configParityBits |= 0x0010; + break; + case PARITY_EVEN: + configParityBits |= 0x0020; + break; + } + setConfigSingle(SILABSER_SET_LINE_CTL_REQUEST_CODE, configParityBits); + + int configStopBits = 0; + switch (stopBits) { + case STOPBITS_1: + configStopBits |= 0; + break; + case STOPBITS_2: + configStopBits |= 2; + break; + } + setConfigSingle(SILABSER_SET_LINE_CTL_REQUEST_CODE, configStopBits); + } + + @Override + public boolean getCD() throws IOException { + return false; + } + + @Override + public boolean getCTS() throws IOException { + return false; + } + + @Override + public boolean getDSR() throws IOException { + return false; + } + + @Override + public boolean getDTR() throws IOException { + return true; + } + + @Override + public void setDTR(boolean value) throws IOException { + } + + @Override + public boolean getRI() throws IOException { + return false; + } + + @Override + public boolean getRTS() throws IOException { + return true; + } + + @Override + public boolean purgeHwBuffers(boolean purgeReadBuffers, + boolean purgeWriteBuffers) throws IOException { + int value = (purgeReadBuffers ? FLUSH_READ_CODE : 0) + | (purgeWriteBuffers ? FLUSH_WRITE_CODE : 0); + + if (value != 0) { + setConfigSingle(SILABSER_FLUSH_REQUEST_CODE, value); + } + + return true; + } + + @Override + public void setRTS(boolean value) throws IOException { + } + + public static Map getSupportedDevices() { + final Map supportedDevices = new LinkedHashMap(); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_SILAB), + new int[] { + UsbId.SILAB_CP2102 + }); + return supportedDevices; + } + + +} diff --git a/android/src/com/hoho/android/usbserial/driver/FtdiSerialDriver.java b/android/src/com/hoho/android/usbserial/driver/FtdiSerialDriver.java new file mode 100644 index 0000000000000000000000000000000000000000..ad3627ff38a75a50b71167ddf50f50b4ee5b1b51 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/FtdiSerialDriver.java @@ -0,0 +1,552 @@ +/* Copyright 2011 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ + +package com.hoho.android.usbserial.driver; + +import android.hardware.usb.UsbConstants; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; +import android.hardware.usb.UsbEndpoint; +import android.hardware.usb.UsbRequest; +import android.util.Log; + + +import java.io.IOException; +import java.nio.ByteBuffer; +import java.util.LinkedHashMap; +import java.util.Map; + +/** + * A {@link CommonUsbSerialDriver} implementation for a variety of FTDI devices + *

+ * This driver is based on + * libftdi, and is + * copyright and subject to the following terms: + * + *

+ *   Copyright (C) 2003 by Intra2net AG
+ *
+ *   This program is free software; you can redistribute it and/or modify
+ *   it under the terms of the GNU Lesser General Public License
+ *   version 2.1 as published by the Free Software Foundation;
+ *
+ *   opensource@intra2net.com
+ *   http://www.intra2net.com/en/developer/libftdi
+ * 
+ * + *

+ *

+ * Some FTDI devices have not been tested; see later listing of supported and + * unsupported devices. Devices listed as "supported" support the following + * features: + *

    + *
  • Read and write of serial data (see {@link #read(byte[], int)} and + * {@link #write(byte[], int)}. + *
  • Setting baud rate (see {@link #setBaudRate(int)}). + *
+ *

+ *

+ * Supported and tested devices: + *

    + *
  • {@value DeviceType#TYPE_R}
  • + *
+ *

+ *

+ * Unsupported but possibly working devices (please contact the author with + * feedback or patches): + *

    + *
  • {@value DeviceType#TYPE_2232C}
  • + *
  • {@value DeviceType#TYPE_2232H}
  • + *
  • {@value DeviceType#TYPE_4232H}
  • + *
  • {@value DeviceType#TYPE_AM}
  • + *
  • {@value DeviceType#TYPE_BM}
  • + *
+ *

+ * + * @author mike wakerly (opensource@hoho.com) + * @see USB Serial + * for Android project page + * @see FTDI Homepage + * @see libftdi + */ +public class FtdiSerialDriver extends CommonUsbSerialDriver { + + public static final int USB_TYPE_STANDARD = 0x00 << 5; + public static final int USB_TYPE_CLASS = 0x00 << 5; + public static final int USB_TYPE_VENDOR = 0x00 << 5; + public static final int USB_TYPE_RESERVED = 0x00 << 5; + + public static final int USB_RECIP_DEVICE = 0x00; + public static final int USB_RECIP_INTERFACE = 0x01; + public static final int USB_RECIP_ENDPOINT = 0x02; + public static final int USB_RECIP_OTHER = 0x03; + + public static final int USB_ENDPOINT_IN = 0x80; + public static final int USB_ENDPOINT_OUT = 0x00; + + public static final int USB_WRITE_TIMEOUT_MILLIS = 5000; + public static final int USB_READ_TIMEOUT_MILLIS = 5000; + + // From ftdi.h + /** + * Reset the port. + */ + private static final int SIO_RESET_REQUEST = 0; + + /** + * Set the modem control register. + */ + private static final int SIO_MODEM_CTRL_REQUEST = 1; + + /** + * Set flow control register. + */ + private static final int SIO_SET_FLOW_CTRL_REQUEST = 2; + + /** + * Set baud rate. + */ + private static final int SIO_SET_BAUD_RATE_REQUEST = 3; + + /** + * Set the data characteristics of the port. + */ + private static final int SIO_SET_DATA_REQUEST = 4; + + private static final int SIO_RESET_SIO = 0; + private static final int SIO_RESET_PURGE_RX = 1; + private static final int SIO_RESET_PURGE_TX = 2; + + public static final int FTDI_DEVICE_OUT_REQTYPE = + UsbConstants.USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT; + + public static final int FTDI_DEVICE_IN_REQTYPE = + UsbConstants.USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_IN; + + /** + * Length of the modem status header, transmitted with every read. + */ + private static final int MODEM_STATUS_HEADER_LENGTH = 2; + + private final String TAG = FtdiSerialDriver.class.getSimpleName(); + + private DeviceType mType; + + /** + * FTDI chip types. + */ + private static enum DeviceType { + TYPE_BM, TYPE_AM, TYPE_2232C, TYPE_R, TYPE_2232H, TYPE_4232H; + } + + private int mInterface = 0; /* INTERFACE_ANY */ + + private int mMaxPacketSize = 64; // TODO(mikey): detect + + /** + * Due to http://b.android.com/28023 , we cannot use UsbRequest async reads + * since it gives no indication of number of bytes read. Set this to + * {@code true} on platforms where it is fixed. + */ + private static final boolean ENABLE_ASYNC_READS = false; + + /** + * Filter FTDI status bytes from buffer + * @param src The source buffer (which contains status bytes) + * @param dest The destination buffer to write the status bytes into (can be src) + * @param totalBytesRead Number of bytes read to src + * @param maxPacketSize The USB endpoint max packet size + * @return The number of payload bytes + */ + private final int filterStatusBytes(byte[] src, byte[] dest, int totalBytesRead, int maxPacketSize) { + final int packetsCount = totalBytesRead / maxPacketSize + 1; + for (int packetIdx = 0; packetIdx < packetsCount; ++packetIdx) { + final int count = (packetIdx == (packetsCount - 1)) + ? (totalBytesRead % maxPacketSize) - MODEM_STATUS_HEADER_LENGTH + : maxPacketSize - MODEM_STATUS_HEADER_LENGTH; + if (count > 0) { + System.arraycopy(src, + packetIdx * maxPacketSize + MODEM_STATUS_HEADER_LENGTH, + dest, + packetIdx * (maxPacketSize - MODEM_STATUS_HEADER_LENGTH), + count); + } + } + + return totalBytesRead - (packetsCount * 2); + } + + /** + * Constructor. + * + * @param usbDevice the {@link UsbDevice} to use + * @param usbConnection the {@link UsbDeviceConnection} to use + * @throws UsbSerialRuntimeException if the given device is incompatible + * with this driver + */ + public FtdiSerialDriver(UsbDevice usbDevice, UsbDeviceConnection usbConnection) { + super(usbDevice, usbConnection); + mType = null; + } + + public void reset() throws IOException { + int result = mConnection.controlTransfer(FTDI_DEVICE_OUT_REQTYPE, SIO_RESET_REQUEST, + SIO_RESET_SIO, 0 /* index */, null, 0, USB_WRITE_TIMEOUT_MILLIS); + if (result != 0) { + throw new IOException("Reset failed: result=" + result); + } + + // TODO(mikey): autodetect. + mType = DeviceType.TYPE_R; + } + + @Override + public void open() throws IOException { + boolean opened = false; + try { + for (int i = 0; i < mDevice.getInterfaceCount(); i++) { + if (mConnection.claimInterface(mDevice.getInterface(i), true)) { + Log.d(TAG, "claimInterface " + i + " SUCCESS"); + } else { + throw new IOException("Error claiming interface " + i); + } + } + reset(); + opened = true; + } finally { + if (!opened) { + close(); + } + } + } + + @Override + public void close() { + mConnection.close(); + } + + @Override + public int read(byte[] dest, int timeoutMillis) throws IOException { + final UsbEndpoint endpoint = mDevice.getInterface(0).getEndpoint(0); + + if (ENABLE_ASYNC_READS) { + final int readAmt; + synchronized (mReadBufferLock) { + // mReadBuffer is only used for maximum read size. + readAmt = Math.min(dest.length, mReadBuffer.length); + } + + final UsbRequest request = new UsbRequest(); + request.initialize(mConnection, endpoint); + + final ByteBuffer buf = ByteBuffer.wrap(dest); + if (!request.queue(buf, readAmt)) { + throw new IOException("Error queueing request."); + } + + final UsbRequest response = mConnection.requestWait(); + if (response == null) { + throw new IOException("Null response"); + } + + final int payloadBytesRead = buf.position() - MODEM_STATUS_HEADER_LENGTH; + if (payloadBytesRead > 0) { + return payloadBytesRead; + } else { + return 0; + } + } else { + final int totalBytesRead; + + synchronized (mReadBufferLock) { + final int readAmt = Math.min(dest.length, mReadBuffer.length); + totalBytesRead = mConnection.bulkTransfer(endpoint, mReadBuffer, + readAmt, timeoutMillis); + + if (totalBytesRead < MODEM_STATUS_HEADER_LENGTH) { + throw new IOException("Expected at least " + MODEM_STATUS_HEADER_LENGTH + " bytes"); + } + + return filterStatusBytes(mReadBuffer, dest, totalBytesRead, endpoint.getMaxPacketSize()); + } + } + } + + @Override + public int write(byte[] src, int timeoutMillis) throws IOException { + final UsbEndpoint endpoint = mDevice.getInterface(0).getEndpoint(1); + int offset = 0; + + while (offset < src.length) { + final int writeLength; + final int amtWritten; + + synchronized (mWriteBufferLock) { + final byte[] writeBuffer; + + writeLength = Math.min(src.length - offset, mWriteBuffer.length); + if (offset == 0) { + writeBuffer = src; + } else { + // bulkTransfer does not support offsets, make a copy. + System.arraycopy(src, offset, mWriteBuffer, 0, writeLength); + writeBuffer = mWriteBuffer; + } + + amtWritten = mConnection.bulkTransfer(endpoint, writeBuffer, writeLength, + timeoutMillis); + } + + if (amtWritten <= 0) { + throw new IOException("Error writing " + writeLength + + " bytes at offset " + offset + " length=" + src.length); + } + + //Log.d(TAG, "Wrote amtWritten=" + amtWritten + " attempted=" + writeLength); + offset += amtWritten; + } + return offset; + } + + private int setBaudRate(int baudRate) throws IOException { + long[] vals = convertBaudrate(baudRate); + long actualBaudrate = vals[0]; + long index = vals[1]; + long value = vals[2]; + int result = mConnection.controlTransfer(FTDI_DEVICE_OUT_REQTYPE, + SIO_SET_BAUD_RATE_REQUEST, (int) value, (int) index, + null, 0, USB_WRITE_TIMEOUT_MILLIS); + if (result != 0) { + throw new IOException("Setting baudrate failed: result=" + result); + } + return (int) actualBaudrate; + } + + @Override + public void setParameters(int baudRate, int dataBits, int stopBits, int parity) + throws IOException { + setBaudRate(baudRate); + + int config = dataBits; + + switch (parity) { + case PARITY_NONE: + config |= (0x00 << 8); + break; + case PARITY_ODD: + config |= (0x01 << 8); + break; + case PARITY_EVEN: + config |= (0x02 << 8); + break; + case PARITY_MARK: + config |= (0x03 << 8); + break; + case PARITY_SPACE: + config |= (0x04 << 8); + break; + default: + throw new IllegalArgumentException("Unknown parity value: " + parity); + } + + switch (stopBits) { + case STOPBITS_1: + config |= (0x00 << 11); + break; + case STOPBITS_1_5: + config |= (0x01 << 11); + break; + case STOPBITS_2: + config |= (0x02 << 11); + break; + default: + throw new IllegalArgumentException("Unknown stopBits value: " + stopBits); + } + + int result = mConnection.controlTransfer(FTDI_DEVICE_OUT_REQTYPE, + SIO_SET_DATA_REQUEST, config, 0 /* index */, + null, 0, USB_WRITE_TIMEOUT_MILLIS); + if (result != 0) { + throw new IOException("Setting parameters failed: result=" + result); + } + } + + private long[] convertBaudrate(int baudrate) { + // TODO(mikey): Braindead transcription of libfti method. Clean up, + // using more idiomatic Java where possible. + int divisor = 24000000 / baudrate; + int bestDivisor = 0; + int bestBaud = 0; + int bestBaudDiff = 0; + int fracCode[] = { + 0, 3, 2, 4, 1, 5, 6, 7 + }; + + for (int i = 0; i < 2; i++) { + int tryDivisor = divisor + i; + int baudEstimate; + int baudDiff; + + if (tryDivisor <= 8) { + // Round up to minimum supported divisor + tryDivisor = 8; + } else if (mType != DeviceType.TYPE_AM && tryDivisor < 12) { + // BM doesn't support divisors 9 through 11 inclusive + tryDivisor = 12; + } else if (divisor < 16) { + // AM doesn't support divisors 9 through 15 inclusive + tryDivisor = 16; + } else { + if (mType == DeviceType.TYPE_AM) { + // TODO + } else { + if (tryDivisor > 0x1FFFF) { + // Round down to maximum supported divisor value (for + // BM) + tryDivisor = 0x1FFFF; + } + } + } + + // Get estimated baud rate (to nearest integer) + baudEstimate = (24000000 + (tryDivisor / 2)) / tryDivisor; + + // Get absolute difference from requested baud rate + if (baudEstimate < baudrate) { + baudDiff = baudrate - baudEstimate; + } else { + baudDiff = baudEstimate - baudrate; + } + + if (i == 0 || baudDiff < bestBaudDiff) { + // Closest to requested baud rate so far + bestDivisor = tryDivisor; + bestBaud = baudEstimate; + bestBaudDiff = baudDiff; + if (baudDiff == 0) { + // Spot on! No point trying + break; + } + } + } + + // Encode the best divisor value + long encodedDivisor = (bestDivisor >> 3) | (fracCode[bestDivisor & 7] << 14); + // Deal with special cases for encoded value + if (encodedDivisor == 1) { + encodedDivisor = 0; // 3000000 baud + } else if (encodedDivisor == 0x4001) { + encodedDivisor = 1; // 2000000 baud (BM only) + } + + // Split into "value" and "index" values + long value = encodedDivisor & 0xFFFF; + long index; + if (mType == DeviceType.TYPE_2232C || mType == DeviceType.TYPE_2232H + || mType == DeviceType.TYPE_4232H) { + index = (encodedDivisor >> 8) & 0xffff; + index &= 0xFF00; + index |= 0 /* TODO mIndex */; + } else { + index = (encodedDivisor >> 16) & 0xffff; + } + + // Return the nearest baud rate + return new long[] { + bestBaud, index, value + }; + } + + @Override + public boolean getCD() throws IOException { + return false; + } + + @Override + public boolean getCTS() throws IOException { + return false; + } + + @Override + public boolean getDSR() throws IOException { + return false; + } + + @Override + public boolean getDTR() throws IOException { + return false; + } + + @Override + public void setDTR(boolean value) throws IOException { + } + + @Override + public boolean getRI() throws IOException { + return false; + } + + @Override + public boolean getRTS() throws IOException { + return false; + } + + @Override + public void setRTS(boolean value) throws IOException { + } + + @Override + public boolean purgeHwBuffers(boolean purgeReadBuffers, boolean purgeWriteBuffers) throws IOException { + if (purgeReadBuffers) { + int result = mConnection.controlTransfer(FTDI_DEVICE_OUT_REQTYPE, SIO_RESET_REQUEST, + SIO_RESET_PURGE_RX, 0 /* index */, null, 0, USB_WRITE_TIMEOUT_MILLIS); + if (result != 0) { + throw new IOException("Flushing RX failed: result=" + result); + } + } + + if (purgeWriteBuffers) { + int result = mConnection.controlTransfer(FTDI_DEVICE_OUT_REQTYPE, SIO_RESET_REQUEST, + SIO_RESET_PURGE_TX, 0 /* index */, null, 0, USB_WRITE_TIMEOUT_MILLIS); + if (result != 0) { + throw new IOException("Flushing RX failed: result=" + result); + } + } + + return true; + } + + public static Map getSupportedDevices() { + final Map supportedDevices = new LinkedHashMap(); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_FTDI), + new int[] { + UsbId.FTDI_FT232R, + UsbId.FTDI_FT231X, + }); + /* + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_PX4), + new int[] { + UsbId.DEVICE_PX4FMU + }); + */ + return supportedDevices; + } + +} diff --git a/android/src/com/hoho/android/usbserial/driver/ProlificSerialDriver.java b/android/src/com/hoho/android/usbserial/driver/ProlificSerialDriver.java new file mode 100644 index 0000000000000000000000000000000000000000..d6e2d1338d1a1f08051b5f13d2303a526c7a3639 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/ProlificSerialDriver.java @@ -0,0 +1,523 @@ +/* This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ + +/* + * Ported to usb-serial-for-android + * by Felix Hädicke + * + * Based on the pyprolific driver written + * by Emmanuel Blot + * See https://github.com/eblot/pyftdi + */ + +package com.hoho.android.usbserial.driver; + +import android.hardware.usb.UsbConstants; +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; +import android.hardware.usb.UsbEndpoint; +import android.hardware.usb.UsbInterface; +import android.util.Log; + +import java.io.IOException; +import java.lang.reflect.Method; +import java.util.LinkedHashMap; +import java.util.Map; + +public class ProlificSerialDriver extends CommonUsbSerialDriver { + private static final int USB_READ_TIMEOUT_MILLIS = 1000; + private static final int USB_WRITE_TIMEOUT_MILLIS = 5000; + + private static final int USB_RECIP_INTERFACE = 0x01; + + private static final int PROLIFIC_VENDOR_READ_REQUEST = 0x01; + private static final int PROLIFIC_VENDOR_WRITE_REQUEST = 0x01; + + private static final int PROLIFIC_VENDOR_OUT_REQTYPE = UsbConstants.USB_DIR_OUT + | UsbConstants.USB_TYPE_VENDOR; + + private static final int PROLIFIC_VENDOR_IN_REQTYPE = UsbConstants.USB_DIR_IN + | UsbConstants.USB_TYPE_VENDOR; + + private static final int PROLIFIC_CTRL_OUT_REQTYPE = UsbConstants.USB_DIR_OUT + | UsbConstants.USB_TYPE_CLASS | USB_RECIP_INTERFACE; + + private static final int WRITE_ENDPOINT = 0x02; + private static final int READ_ENDPOINT = 0x83; + private static final int INTERRUPT_ENDPOINT = 0x81; + + private static final int FLUSH_RX_REQUEST = 0x08; + private static final int FLUSH_TX_REQUEST = 0x09; + + private static final int SET_LINE_REQUEST = 0x20; + private static final int SET_CONTROL_REQUEST = 0x22; + + private static final int CONTROL_DTR = 0x01; + private static final int CONTROL_RTS = 0x02; + + private static final int STATUS_FLAG_CD = 0x01; + private static final int STATUS_FLAG_DSR = 0x02; + private static final int STATUS_FLAG_RI = 0x08; + private static final int STATUS_FLAG_CTS = 0x80; + + private static final int STATUS_BUFFER_SIZE = 10; + private static final int STATUS_BYTE_IDX = 8; + + private static final int DEVICE_TYPE_HX = 0; + private static final int DEVICE_TYPE_0 = 1; + private static final int DEVICE_TYPE_1 = 2; + + private int mDeviceType = DEVICE_TYPE_HX; + + private UsbEndpoint mReadEndpoint; + private UsbEndpoint mWriteEndpoint; + private UsbEndpoint mInterruptEndpoint; + + private int mControlLinesValue = 0; + + private int mBaudRate = -1, mDataBits = -1, mStopBits = -1, mParity = -1; + + private int mStatus = 0; + private volatile Thread mReadStatusThread = null; + private final Object mReadStatusThreadLock = new Object(); + boolean mStopReadStatusThread = false; + private IOException mReadStatusException = null; + + private final String TAG = ProlificSerialDriver.class.getSimpleName(); + + private final byte[] inControlTransfer(int requestType, int request, + int value, int index, int length) throws IOException { + byte[] buffer = new byte[length]; + int result = mConnection.controlTransfer(requestType, request, value, + index, buffer, length, USB_READ_TIMEOUT_MILLIS); + if (result != length) { + throw new IOException( + String.format("ControlTransfer with value 0x%x failed: %d", + value, result)); + } + return buffer; + } + + private final void outControlTransfer(int requestType, int request, + int value, int index, byte[] data) throws IOException { + int length = (data == null) ? 0 : data.length; + int result = mConnection.controlTransfer(requestType, request, value, + index, data, length, USB_WRITE_TIMEOUT_MILLIS); + if (result != length) { + throw new IOException( + String.format("ControlTransfer with value 0x%x failed: %d", + value, result)); + } + } + + private final byte[] vendorIn(int value, int index, int length) + throws IOException { + return inControlTransfer(PROLIFIC_VENDOR_IN_REQTYPE, + PROLIFIC_VENDOR_READ_REQUEST, value, index, length); + } + + private final void vendorOut(int value, int index, byte[] data) + throws IOException { + outControlTransfer(PROLIFIC_VENDOR_OUT_REQTYPE, + PROLIFIC_VENDOR_WRITE_REQUEST, value, index, data); + } + + private final void ctrlOut(int request, int value, int index, byte[] data) + throws IOException { + outControlTransfer(PROLIFIC_CTRL_OUT_REQTYPE, request, value, index, + data); + } + + private void doBlackMagic() throws IOException { + vendorIn(0x8484, 0, 1); + vendorOut(0x0404, 0, null); + vendorIn(0x8484, 0, 1); + vendorIn(0x8383, 0, 1); + vendorIn(0x8484, 0, 1); + vendorOut(0x0404, 1, null); + vendorIn(0x8484, 0, 1); + vendorIn(0x8383, 0, 1); + vendorOut(0, 1, null); + vendorOut(1, 0, null); + vendorOut(2, (mDeviceType == DEVICE_TYPE_HX) ? 0x44 : 0x24, null); + } + + private void resetDevice() throws IOException { + purgeHwBuffers(true, true); + } + + private void setControlLines(int newControlLinesValue) throws IOException { + ctrlOut(SET_CONTROL_REQUEST, newControlLinesValue, 0, null); + mControlLinesValue = newControlLinesValue; + } + + private final void readStatusThreadFunction() { + try { + while (!mStopReadStatusThread) { + byte[] buffer = new byte[STATUS_BUFFER_SIZE]; + int readBytesCount = mConnection.bulkTransfer(mInterruptEndpoint, + buffer, + STATUS_BUFFER_SIZE, + 500); + if (readBytesCount > 0) { + if (readBytesCount == STATUS_BUFFER_SIZE) { + mStatus = buffer[STATUS_BYTE_IDX] & 0xff; + } else { + throw new IOException( + String.format("Invalid CTS / DSR / CD / RI status buffer received, expected %d bytes, but received %d", + STATUS_BUFFER_SIZE, + readBytesCount)); + } + } + } + } catch (IOException e) { + mReadStatusException = e; + } + } + + private final int getStatus() throws IOException { + if ((mReadStatusThread == null) && (mReadStatusException == null)) { + synchronized (mReadStatusThreadLock) { + if (mReadStatusThread == null) { + byte[] buffer = new byte[STATUS_BUFFER_SIZE]; + int readBytes = mConnection.bulkTransfer(mInterruptEndpoint, + buffer, + STATUS_BUFFER_SIZE, + 100); + if (readBytes != STATUS_BUFFER_SIZE) { + Log.w(TAG, "Could not read initial CTS / DSR / CD / RI status"); + } else { + mStatus = buffer[STATUS_BYTE_IDX] & 0xff; + } + + mReadStatusThread = new Thread(new Runnable() { + @Override + public void run() { + readStatusThreadFunction(); + } + }); + mReadStatusThread.setDaemon(true); + mReadStatusThread.start(); + } + } + } + + /* throw and clear an exception which occured in the status read thread */ + IOException readStatusException = mReadStatusException; + if (mReadStatusException != null) { + mReadStatusException = null; + throw readStatusException; + } + + return mStatus; + } + + private final boolean testStatusFlag(int flag) throws IOException { + return ((getStatus() & flag) == flag); + } + + public ProlificSerialDriver(UsbDevice device, UsbDeviceConnection connection) { + super(device, connection); + } + + @Override + public void open() throws IOException { + UsbInterface usbInterface = mDevice.getInterface(0); + + if (!mConnection.claimInterface(usbInterface, true)) { + throw new IOException("Error claiming Prolific interface 0"); + } + + boolean openSuccessful = false; + try { + for (int i = 0; i < usbInterface.getEndpointCount(); ++i) { + UsbEndpoint currentEndpoint = usbInterface.getEndpoint(i); + + switch (currentEndpoint.getAddress()) { + case READ_ENDPOINT: + mReadEndpoint = currentEndpoint; + break; + + case WRITE_ENDPOINT: + mWriteEndpoint = currentEndpoint; + break; + + case INTERRUPT_ENDPOINT: + mInterruptEndpoint = currentEndpoint; + break; + } + } + + if (mDevice.getDeviceClass() == 0x02) { + mDeviceType = DEVICE_TYPE_0; + } else { + try { + Method getRawDescriptorsMethod + = mConnection.getClass().getMethod("getRawDescriptors"); + byte[] rawDescriptors + = (byte[]) getRawDescriptorsMethod.invoke(mConnection); + byte maxPacketSize0 = rawDescriptors[7]; + if (maxPacketSize0 == 64) { + mDeviceType = DEVICE_TYPE_HX; + } else if ((mDevice.getDeviceClass() == 0x00) + || (mDevice.getDeviceClass() == 0xff)) { + mDeviceType = DEVICE_TYPE_1; + } else { + Log.w(TAG, "Could not detect PL2303 subtype, " + + "Assuming that it is a HX device"); + mDeviceType = DEVICE_TYPE_HX; + } + } catch (NoSuchMethodException e) { + Log.w(TAG, "Method UsbDeviceConnection.getRawDescriptors, " + + "required for PL2303 subtype detection, not " + + "available! Assuming that it is a HX device"); + mDeviceType = DEVICE_TYPE_HX; + } catch (Exception e) { + Log.e(TAG, "An unexpected exception occured while trying " + + "to detect PL2303 subtype", e); + } + } + + setControlLines(mControlLinesValue); + resetDevice(); + + doBlackMagic(); + openSuccessful = true; + } finally { + if (!openSuccessful) { + try { + mConnection.releaseInterface(usbInterface); + } catch (Exception ingored) { + // Do not cover possible exceptions + } + } + } + } + + @Override + public void close() throws IOException { + try { + mStopReadStatusThread = true; + synchronized (mReadStatusThreadLock) { + if (mReadStatusThread != null) { + try { + mReadStatusThread.join(); + } catch (Exception e) { + Log.w(TAG, "An error occured while waiting for status read thread", e); + } + } + } + + resetDevice(); + } finally { + mConnection.releaseInterface(mDevice.getInterface(0)); + } + } + + @Override + public int read(byte[] dest, int timeoutMillis) throws IOException { + synchronized (mReadBufferLock) { + int readAmt = Math.min(dest.length, mReadBuffer.length); + int numBytesRead = mConnection.bulkTransfer(mReadEndpoint, mReadBuffer, + readAmt, timeoutMillis); + if (numBytesRead < 0) { + return 0; + } + System.arraycopy(mReadBuffer, 0, dest, 0, numBytesRead); + return numBytesRead; + } + } + + @Override + public int write(byte[] src, int timeoutMillis) throws IOException { + int offset = 0; + + while (offset < src.length) { + final int writeLength; + final int amtWritten; + + synchronized (mWriteBufferLock) { + final byte[] writeBuffer; + + writeLength = Math.min(src.length - offset, mWriteBuffer.length); + if (offset == 0) { + writeBuffer = src; + } else { + // bulkTransfer does not support offsets, make a copy. + System.arraycopy(src, offset, mWriteBuffer, 0, writeLength); + writeBuffer = mWriteBuffer; + } + + amtWritten = mConnection.bulkTransfer(mWriteEndpoint, + writeBuffer, writeLength, timeoutMillis); + } + + if (amtWritten <= 0) { + throw new IOException("Error writing " + writeLength + + " bytes at offset " + offset + " length=" + + src.length); + } + + offset += amtWritten; + } + return offset; + } + + @Override + public void setParameters(int baudRate, int dataBits, int stopBits, + int parity) throws IOException { + if ((mBaudRate == baudRate) && (mDataBits == dataBits) + && (mStopBits == stopBits) && (mParity == parity)) { + // Make sure no action is performed if there is nothing to change + return; + } + + byte[] lineRequestData = new byte[7]; + + lineRequestData[0] = (byte) (baudRate & 0xff); + lineRequestData[1] = (byte) ((baudRate >> 8) & 0xff); + lineRequestData[2] = (byte) ((baudRate >> 16) & 0xff); + lineRequestData[3] = (byte) ((baudRate >> 24) & 0xff); + + switch (stopBits) { + case STOPBITS_1: + lineRequestData[4] = 0; + break; + + case STOPBITS_1_5: + lineRequestData[4] = 1; + break; + + case STOPBITS_2: + lineRequestData[4] = 2; + break; + + default: + throw new IllegalArgumentException("Unknown stopBits value: " + stopBits); + } + + switch (parity) { + case PARITY_NONE: + lineRequestData[5] = 0; + break; + + case PARITY_ODD: + lineRequestData[5] = 1; + break; + + case PARITY_EVEN: + lineRequestData[5] = 2; + break; + + case PARITY_MARK: + lineRequestData[5] = 3; + break; + + case PARITY_SPACE: + lineRequestData[5] = 4; + break; + + default: + throw new IllegalArgumentException("Unknown parity value: " + parity); + } + + lineRequestData[6] = (byte) dataBits; + + ctrlOut(SET_LINE_REQUEST, 0, 0, lineRequestData); + + resetDevice(); + + mBaudRate = baudRate; + mDataBits = dataBits; + mStopBits = stopBits; + mParity = parity; + } + + @Override + public boolean getCD() throws IOException { + return testStatusFlag(STATUS_FLAG_CD); + } + + @Override + public boolean getCTS() throws IOException { + return testStatusFlag(STATUS_FLAG_CTS); + } + + @Override + public boolean getDSR() throws IOException { + return testStatusFlag(STATUS_FLAG_DSR); + } + + @Override + public boolean getDTR() throws IOException { + return ((mControlLinesValue & CONTROL_DTR) == CONTROL_DTR); + } + + @Override + public void setDTR(boolean value) throws IOException { + int newControlLinesValue; + if (value) { + newControlLinesValue = mControlLinesValue | CONTROL_DTR; + } else { + newControlLinesValue = mControlLinesValue & ~CONTROL_DTR; + } + setControlLines(newControlLinesValue); + } + + @Override + public boolean getRI() throws IOException { + return testStatusFlag(STATUS_FLAG_RI); + } + + @Override + public boolean getRTS() throws IOException { + return ((mControlLinesValue & CONTROL_RTS) == CONTROL_RTS); + } + + @Override + public void setRTS(boolean value) throws IOException { + int newControlLinesValue; + if (value) { + newControlLinesValue = mControlLinesValue | CONTROL_RTS; + } else { + newControlLinesValue = mControlLinesValue & ~CONTROL_RTS; + } + setControlLines(newControlLinesValue); + } + + @Override + public boolean purgeHwBuffers(boolean purgeReadBuffers, boolean purgeWriteBuffers) throws IOException { + if (purgeReadBuffers) { + vendorOut(FLUSH_RX_REQUEST, 0, null); + } + + if (purgeWriteBuffers) { + vendorOut(FLUSH_TX_REQUEST, 0, null); + } + + return true; + } + + public static Map getSupportedDevices() { + final Map supportedDevices = new LinkedHashMap(); + supportedDevices.put(Integer.valueOf(UsbId.VENDOR_PROLIFIC), + new int[] { UsbId.PROLIFIC_PL2303, }); + return supportedDevices; + } +} + diff --git a/android/src/com/hoho/android/usbserial/driver/UsbId.java b/android/src/com/hoho/android/usbserial/driver/UsbId.java new file mode 100644 index 0000000000000000000000000000000000000000..618fbc844b398d5179c566933761188a2553e810 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/UsbId.java @@ -0,0 +1,69 @@ +/* Copyright 2012 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ +package com.hoho.android.usbserial.driver; + +/** + * Registry of USB vendor/product ID constants. + * + * Culled from various sources; see + * usb.ids for one listing. + * + * @author mike wakerly (opensource@hoho.com) + */ +public final class UsbId { + + public static final int VENDOR_FTDI = 0x0403; + public static final int FTDI_FT232R = 0x6001; + public static final int FTDI_FT231X = 0x6015; + + public static final int VENDOR_PX4 = 0x26AC; + public static final int DEVICE_PX4FMU = 0x11; + + public static final int VENDOR_ATMEL = 0x03EB; + public static final int ATMEL_LUFA_CDC_DEMO_APP = 0x2044; + + public static final int VENDOR_ARDUINO = 0x2341; + public static final int ARDUINO_UNO = 0x0001; + public static final int ARDUINO_MEGA_2560 = 0x0010; + public static final int ARDUINO_SERIAL_ADAPTER = 0x003b; + public static final int ARDUINO_MEGA_ADK = 0x003f; + public static final int ARDUINO_MEGA_2560_R3 = 0x0042; + public static final int ARDUINO_UNO_R3 = 0x0043; + public static final int ARDUINO_MEGA_ADK_R3 = 0x0044; + public static final int ARDUINO_SERIAL_ADAPTER_R3 = 0x0044; + public static final int ARDUINO_LEONARDO = 0x8036; + + public static final int VENDOR_VAN_OOIJEN_TECH = 0x16c0; + public static final int VAN_OOIJEN_TECH_TEENSYDUINO_SERIAL = 0x0483; + + public static final int VENDOR_LEAFLABS = 0x1eaf; + public static final int LEAFLABS_MAPLE = 0x0004; + + public static final int VENDOR_SILAB = 0x10c4; + public static final int SILAB_CP2102 = 0xea60; + + public static final int VENDOR_PROLIFIC = 0x067b; + public static final int PROLIFIC_PL2303 = 0x2303; + + private UsbId() { + throw new IllegalAccessError("Non-instantiable class."); + } + +} diff --git a/android/src/com/hoho/android/usbserial/driver/UsbSerialDriver.java b/android/src/com/hoho/android/usbserial/driver/UsbSerialDriver.java new file mode 100644 index 0000000000000000000000000000000000000000..ed4426fc4d540238fc2cae9706adb41602a3a7a4 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/UsbSerialDriver.java @@ -0,0 +1,228 @@ +/* Copyright 2011 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ + +package com.hoho.android.usbserial.driver; + +import java.io.IOException; + +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; + +/** + * Driver interface for a USB serial device. + * + * @author mike wakerly (opensource@hoho.com) + */ +public interface UsbSerialDriver { + + /** 5 data bits. */ + public static final int DATABITS_5 = 5; + + /** 6 data bits. */ + public static final int DATABITS_6 = 6; + + /** 7 data bits. */ + public static final int DATABITS_7 = 7; + + /** 8 data bits. */ + public static final int DATABITS_8 = 8; + + /** No flow control. */ + public static final int FLOWCONTROL_NONE = 0; + + /** RTS/CTS input flow control. */ + public static final int FLOWCONTROL_RTSCTS_IN = 1; + + /** RTS/CTS output flow control. */ + public static final int FLOWCONTROL_RTSCTS_OUT = 2; + + /** XON/XOFF input flow control. */ + public static final int FLOWCONTROL_XONXOFF_IN = 4; + + /** XON/XOFF output flow control. */ + public static final int FLOWCONTROL_XONXOFF_OUT = 8; + + /** No parity. */ + public static final int PARITY_NONE = 0; + + /** Odd parity. */ + public static final int PARITY_ODD = 1; + + /** Even parity. */ + public static final int PARITY_EVEN = 2; + + /** Mark parity. */ + public static final int PARITY_MARK = 3; + + /** Space parity. */ + public static final int PARITY_SPACE = 4; + + /** 1 stop bit. */ + public static final int STOPBITS_1 = 1; + + /** 1.5 stop bits. */ + public static final int STOPBITS_1_5 = 3; + + /** 2 stop bits. */ + public static final int STOPBITS_2 = 2; + + /** + * Returns the currently-bound USB device. + * + * @return the device + */ + public UsbDevice getDevice(); + + + /** + * Returns the currently-bound USB device. + * + * @return the device + */ + public UsbDeviceConnection getDeviceConnection(); + + /** + * Opens and initializes the device as a USB serial device. Upon success, + * caller must ensure that {@link #close()} is eventually called. + * + * @throws IOException on error opening or initializing the device. + */ + public void open() throws IOException; + + /** + * Closes the serial device. + * + * @throws IOException on error closing the device. + */ + public void close() throws IOException; + + /** + * Reads as many bytes as possible into the destination buffer. + * + * @param dest the destination byte buffer + * @param timeoutMillis the timeout for reading + * @return the actual number of bytes read + * @throws IOException if an error occurred during reading + */ + public int read(final byte[] dest, final int timeoutMillis) throws IOException; + + /** + * Writes as many bytes as possible from the source buffer. + * + * @param src the source byte buffer + * @param timeoutMillis the timeout for writing + * @return the actual number of bytes written + * @throws IOException if an error occurred during writing + */ + public int write(final byte[] src, final int timeoutMillis) throws IOException; + + /** + * Sets various serial port parameters. + * + * @param baudRate baud rate as an integer, for example {@code 115200}. + * @param dataBits one of {@link #DATABITS_5}, {@link #DATABITS_6}, + * {@link #DATABITS_7}, or {@link #DATABITS_8}. + * @param stopBits one of {@link #STOPBITS_1}, {@link #STOPBITS_1_5}, or + * {@link #STOPBITS_2}. + * @param parity one of {@link #PARITY_NONE}, {@link #PARITY_ODD}, + * {@link #PARITY_EVEN}, {@link #PARITY_MARK}, or + * {@link #PARITY_SPACE}. + * @throws IOException on error setting the port parameters + */ + public void setParameters( + int baudRate, int dataBits, int stopBits, int parity) throws IOException; + + /** + * Gets the CD (Carrier Detect) bit from the underlying UART. + * + * @return the current state, or {@code false} if not supported. + * @throws IOException if an error occurred during reading + */ + public boolean getCD() throws IOException; + + /** + * Gets the CTS (Clear To Send) bit from the underlying UART. + * + * @return the current state, or {@code false} if not supported. + * @throws IOException if an error occurred during reading + */ + public boolean getCTS() throws IOException; + + /** + * Gets the DSR (Data Set Ready) bit from the underlying UART. + * + * @return the current state, or {@code false} if not supported. + * @throws IOException if an error occurred during reading + */ + public boolean getDSR() throws IOException; + + /** + * Gets the DTR (Data Terminal Ready) bit from the underlying UART. + * + * @return the current state, or {@code false} if not supported. + * @throws IOException if an error occurred during reading + */ + public boolean getDTR() throws IOException; + + /** + * Sets the DTR (Data Terminal Ready) bit on the underlying UART, if + * supported. + * + * @param value the value to set + * @throws IOException if an error occurred during writing + */ + public void setDTR(boolean value) throws IOException; + + /** + * Gets the RI (Ring Indicator) bit from the underlying UART. + * + * @return the current state, or {@code false} if not supported. + * @throws IOException if an error occurred during reading + */ + public boolean getRI() throws IOException; + + /** + * Gets the RTS (Request To Send) bit from the underlying UART. + * + * @return the current state, or {@code false} if not supported. + * @throws IOException if an error occurred during reading + */ + public boolean getRTS() throws IOException; + + /** + * Sets the RTS (Request To Send) bit on the underlying UART, if + * supported. + * + * @param value the value to set + * @throws IOException if an error occurred during writing + */ + public void setRTS(boolean value) throws IOException; + + /** + * Flush non-transmitted output data and / or non-read input data + * @param flushRX {@code true} to flush non-transmitted output data + * @param flushTX {@code true} to flush non-read input data + * @return {@code true} if the operation was successful, or + * {@code false} if the operation is not supported by the driver or device + * @throws IOException if an error occurred during flush + */ + public boolean purgeHwBuffers(boolean flushRX, boolean flushTX) throws IOException; + +} diff --git a/android/src/com/hoho/android/usbserial/driver/UsbSerialProber.java b/android/src/com/hoho/android/usbserial/driver/UsbSerialProber.java new file mode 100644 index 0000000000000000000000000000000000000000..2e25a761e9c27488479ce383a7ee48bb6227413a --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/UsbSerialProber.java @@ -0,0 +1,250 @@ +/* Copyright 2011 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ + +package com.hoho.android.usbserial.driver; + +import android.hardware.usb.UsbDevice; +import android.hardware.usb.UsbDeviceConnection; +import android.hardware.usb.UsbManager; +import android.util.Log; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Map; + +/** + * Helper class which finds compatible {@link UsbDevice}s and creates + * {@link UsbSerialDriver} instances. + * + *

+ * You don't need a Prober to use the rest of the library: it is perfectly + * acceptable to instantiate driver instances manually. The Prober simply + * provides convenience functions. + * + *

+ * For most drivers, the corresponding {@link #probe(UsbManager, UsbDevice)} + * method will either return an empty list (device unknown / unsupported) or a + * singleton list. However, multi-port drivers may return multiple instances. + * + * @author mike wakerly (opensource@hoho.com) + */ +public enum UsbSerialProber { + + // TODO(mikey): Too much boilerplate. + + /** + * Prober for {@link FtdiSerialDriver}. + * + * @see FtdiSerialDriver + */ + FTDI_SERIAL { + @Override + public List probe(final UsbManager manager, final UsbDevice usbDevice) { + if (!testIfSupported(usbDevice, FtdiSerialDriver.getSupportedDevices())) { + return Collections.emptyList(); + } + final UsbDeviceConnection connection = manager.openDevice(usbDevice); + if (connection == null) { + return Collections.emptyList(); + } + final UsbSerialDriver driver = new FtdiSerialDriver(usbDevice, connection); + return Collections.singletonList(driver); + } + }, + + CDC_ACM_SERIAL { + @Override + public List probe(UsbManager manager, UsbDevice usbDevice) { + if (!testIfSupported(usbDevice, CdcAcmSerialDriver.getSupportedDevices())) { + return Collections.emptyList(); + } + final UsbDeviceConnection connection = manager.openDevice(usbDevice); + if (connection == null) { + return Collections.emptyList(); + } + final UsbSerialDriver driver = new CdcAcmSerialDriver(usbDevice, connection); + return Collections.singletonList(driver); + } + }, + + SILAB_SERIAL { + @Override + public List probe(final UsbManager manager, final UsbDevice usbDevice) { + if (!testIfSupported(usbDevice, Cp2102SerialDriver.getSupportedDevices())) { + return Collections.emptyList(); + } + final UsbDeviceConnection connection = manager.openDevice(usbDevice); + if (connection == null) { + return Collections.emptyList(); + } + final UsbSerialDriver driver = new Cp2102SerialDriver(usbDevice, connection); + return Collections.singletonList(driver); + } + }, + + PROLIFIC_SERIAL { + @Override + public List probe(final UsbManager manager, final UsbDevice usbDevice) { + if (!testIfSupported(usbDevice, ProlificSerialDriver.getSupportedDevices())) { + return Collections.emptyList(); + } + final UsbDeviceConnection connection = manager.openDevice(usbDevice); + if (connection == null) { + return Collections.emptyList(); + } + final UsbSerialDriver driver = new ProlificSerialDriver(usbDevice, connection); + return Collections.singletonList(driver); + } + }; + + /** + * Tests the supplied {@link UsbDevice} for compatibility with this enum + * member, returning one or more driver instances if compatible. + * + * @param manager the {@link UsbManager} to use + * @param usbDevice the raw {@link UsbDevice} to use + * @return zero or more {@link UsbSerialDriver}, depending on compatibility + * (never {@code null}). + */ + protected abstract List probe(final UsbManager manager, final UsbDevice usbDevice); + + /** + * Creates and returns a new {@link UsbSerialDriver} instance for the first + * compatible {@link UsbDevice} found on the bus. If none are found, + * returns {@code null}. + * + *

+ * The order of devices is undefined, therefore if there are multiple + * devices on the bus, the chosen device may not be predictable (clients + * should use {@link #findAllDevices(UsbManager)} instead). + * + * @param usbManager the {@link UsbManager} to use. + * @return the first available {@link UsbSerialDriver}, or {@code null} if + * none are available. + */ + public static UsbSerialDriver findFirstDevice(final UsbManager usbManager) { + for (final UsbDevice usbDevice : usbManager.getDeviceList().values()) { + for (final UsbSerialProber prober : values()) { + final List probedDevices = prober.probe(usbManager, usbDevice); + if (!probedDevices.isEmpty()) { + return probedDevices.get(0); + } + } + } + return null; + } + + /** + * Creates a new {@link UsbSerialDriver} instance for all compatible + * {@link UsbDevice}s found on the bus. If no compatible devices are found, + * the list will be empty. + * + * @param usbManager + * @return + */ + public static List findAllDevices(final UsbManager usbManager) { + final List result = new ArrayList(); + //Log.i("QGC_UsbSerialProber", "Looking for USB devices"); + // For each UsbDevice, call probe() for each prober. + for (final UsbDevice usbDevice : usbManager.getDeviceList().values()) { + //Log.i("QGC_UsbSerialProber", "Probing device: " + usbDevice.getDeviceName() + " mid: " + usbDevice.getVendorId() + " pid: " + usbDevice.getDeviceId()); + result.addAll(probeSingleDevice(usbManager, usbDevice)); + } + return result; + } + + /** + * Special method for testing a specific device for driver support, + * returning any compatible driver(s). + * + *

+ * Clients should ordinarily use {@link #findAllDevices(UsbManager)}, which + * operates against the entire bus of devices. This method is useful when + * testing against only a single target is desired. + * + * @param usbManager the {@link UsbManager} to use. + * @param usbDevice the device to test against. + * @return a list containing zero or more {@link UsbSerialDriver} instances. + */ + public static List probeSingleDevice(final UsbManager usbManager, + UsbDevice usbDevice) + { + final List result = new ArrayList(); + for (final UsbSerialProber prober : values()) { + final List probedDevices = prober.probe(usbManager, usbDevice); + result.addAll(probedDevices); + } + return result; + } + + /** + * Deprecated; Use {@link #findFirstDevice(UsbManager)}. + * + * @param usbManager + * @return + */ + @Deprecated + public static UsbSerialDriver acquire(final UsbManager usbManager) { + return findFirstDevice(usbManager); + } + + /** + * Deprecated; use {@link #probeSingleDevice(UsbManager, UsbDevice)}. + * + * @param usbManager + * @param usbDevice + * @return + */ + @Deprecated + public static UsbSerialDriver acquire(final UsbManager usbManager, final UsbDevice usbDevice) { + final List probedDevices = probeSingleDevice(usbManager, usbDevice); + if (!probedDevices.isEmpty()) { + return probedDevices.get(0); + } + return null; + } + + /** + * Returns {@code true} if the given device is found in the driver's + * vendor/product map. + * + * @param usbDevice the device to test + * @param supportedDevices map of vendor IDs to product ID(s) + * @return {@code true} if supported + */ + private static boolean testIfSupported(final UsbDevice usbDevice, + final Map supportedDevices) { + final int[] supportedProducts = supportedDevices.get( + Integer.valueOf(usbDevice.getVendorId())); + if (supportedProducts == null) { + return false; + } + + final int productId = usbDevice.getProductId(); + for (int supportedProductId : supportedProducts) { + if (productId == supportedProductId) { + return true; + } + } + return false; + } + +} diff --git a/android/src/com/hoho/android/usbserial/driver/UsbSerialRuntimeException.java b/android/src/com/hoho/android/usbserial/driver/UsbSerialRuntimeException.java new file mode 100644 index 0000000000000000000000000000000000000000..b48607c59da80c203031a252bcf1ee09d3a9b160 --- /dev/null +++ b/android/src/com/hoho/android/usbserial/driver/UsbSerialRuntimeException.java @@ -0,0 +1,46 @@ +/* + * Copyright 2011 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + */ + +package com.hoho.android.usbserial.driver; + +/** + * Generic unchecked exception for the usbserial package. + * + * @author mike wakerly (opensource@hoho.com) + */ +@SuppressWarnings("serial") +public class UsbSerialRuntimeException extends RuntimeException { + + public UsbSerialRuntimeException() { + super(); + } + + public UsbSerialRuntimeException(String detailMessage, Throwable throwable) { + super(detailMessage, throwable); + } + + public UsbSerialRuntimeException(String detailMessage) { + super(detailMessage); + } + + public UsbSerialRuntimeException(Throwable throwable) { + super(throwable); + } + +} diff --git a/android/src/org/qgroundcontrol/qgchelper/UsbDeviceJNI.java b/android/src/org/qgroundcontrol/qgchelper/UsbDeviceJNI.java new file mode 100644 index 0000000000000000000000000000000000000000..f9bad7086d1b6fc065ebb9751d7d3651d6ab6846 --- /dev/null +++ b/android/src/org/qgroundcontrol/qgchelper/UsbDeviceJNI.java @@ -0,0 +1,631 @@ +package org.qgroundcontrol.qgchelper; + +/* Copyright 2013 Google Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + * + * Project home page: http://code.google.com/p/usb-serial-for-android/ + */ +/////////////////////////////////////////////////////////////////////////////////////////// +// Written by: Mike Goza April 2014 +// +// These routines interface with the Android USB Host devices for serial port communication. +// The code uses the usb-serial-for-android software library. The UsbDeviceJNI class is the +// interface to the C++ routines through jni calls. Do not change the functions without also +// changing the corresponding calls in the C++ routines or you will break the interface. +// +//////////////////////////////////////////////////////////////////////////////////////////// + +import java.util.HashMap; +import java.util.List; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.io.IOException; + +import android.app.Activity; +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.content.IntentFilter; +import android.hardware.usb.*; +import android.widget.Toast; +import android.util.Log; + +import com.hoho.android.usbserial.driver.*; +import org.qtproject.qt5.android.bindings.QtActivity; +import org.qtproject.qt5.android.bindings.QtApplication; + +public class UsbDeviceJNI extends QtActivity +{ + public static int BAD_PORT = 0; + private static UsbDeviceJNI m_instance; + private static UsbManager m_manager; // ANDROID USB HOST CLASS + private static List m_devices; // LIST OF CURRENT DEVICES + private static HashMap m_openedDevices; // LIST OF OPENED DEVICES + private static HashMap m_ioManager; // THREADS FOR LISTENING FOR INCOMING DATA + private static HashMap m_userData; // CORRESPONDING USER DATA FOR OPENED DEVICES. USED IN DISCONNECT CALLBACK + // USED TO DETECT WHEN A DEVICE HAS BEEN UNPLUGGED + private BroadcastReceiver m_UsbReceiver = null; + private final static ExecutorService m_Executor = Executors.newSingleThreadExecutor(); + private static final String TAG = "QGC_UsbDeviceJNI"; + + private final static UsbIoManager.Listener m_Listener = + new UsbIoManager.Listener() + { + @Override + public void onRunError(Exception eA, int userDataA) + { + Log.e(TAG, "onRunError Exception"); + nativeDeviceException(userDataA, eA.getMessage()); + } + + @Override + public void onNewData(final byte[] dataA, int userDataA) + { + nativeDeviceNewData(userDataA, dataA); + } + }; + + + // NATIVE C++ FUNCTION THAT WILL BE CALLED IF THE DEVICE IS UNPLUGGED + private static native void nativeDeviceHasDisconnected(int userDataA); + private static native void nativeDeviceException(int userDataA, String messageA); + private static native void nativeDeviceNewData(int userDataA, byte[] dataA); + + //////////////////////////////////////////////////////////////////////////////////////////////// + // + // Constructor. Only used once to create the initial instance for the static functions. + // + //////////////////////////////////////////////////////////////////////////////////////////////// + public UsbDeviceJNI() + { + m_instance = this; + m_openedDevices = new HashMap(); + m_userData = new HashMap(); + m_ioManager = new HashMap(); + Log.i(TAG, "Instance created"); + } + + ///////////////////////////////////////////////////////////////////////////////////////////////////////// + // + // Find all current devices that match the device filter described in the androidmanifest.xml and the + // device_filter.xml + // + ///////////////////////////////////////////////////////////////////////////////////////////////////////// + private static boolean getCurrentDevices() + { + if (m_instance == null) + return false; + + if (m_manager == null) + m_manager = (UsbManager)m_instance.getSystemService(Context.USB_SERVICE); + + if (m_devices != null) + m_devices.clear(); + + m_devices = UsbSerialProber.findAllDevices(m_manager); + + return true; + } + + ///////////////////////////////////////////////////////////////////////////////////////////////////////// + // + // List all available devices that are not already open. It returns the serial port info + // in a : separated string array. Each string entry consists of the following: + // + // DeviceName:Company:ProductId:VendorId + // + ///////////////////////////////////////////////////////////////////////////////////////////////////////// + public static String[] availableDevicesInfo() + { + // GET THE LIST OF CURRENT DEVICES + if (!getCurrentDevices()) + { + Log.e(TAG, "UsbDeviceJNI instance not present"); + return null; + } + + // MAKE SURE WE HAVE ENTRIES + if (m_devices.size() <= 0) + { + //Log.e(TAG, "No USB devices found"); + return null; + } + + if (m_openedDevices == null) + { + Log.e(TAG, "m_openedDevices is null"); + return null; + } + + int countL = 0; + int iL; + + // CHECK FOR ALREADY OPENED DEVICES AND DON"T INCLUDE THEM IN THE COUNT + for (iL=0; iL 0) + { + final Listener listener = getListener(); + if (listener != null) + { + final byte[] data = new byte[len]; + mReadBuffer.get(data, 0, len); + listener.onNewData(data, mUserData); + } + mReadBuffer.clear(); + } +/* + // Handle outgoing data. + byte[] outBuff = null; + synchronized (mWriteBuffer) + { + if (mWriteBuffer.position() > 0) + { + len = mWriteBuffer.position(); + outBuff = new byte[len]; + mWriteBuffer.rewind(); + mWriteBuffer.get(outBuff, 0, len); + mWriteBuffer.clear(); + } + } + if (outBuff != null) + mDriver.write(outBuff, READ_WAIT_MILLIS); +*/ + } +} + diff --git a/android_environment.sh b/android_environment.sh new file mode 100644 index 0000000000000000000000000000000000000000..477c0dbd1b3d3e3be5afd084fd7e7e47f65a8405 --- /dev/null +++ b/android_environment.sh @@ -0,0 +1,37 @@ +#!/bin/bash +#---------------------------------------------------------- +# You will need: +# - Qt 5.4 android_armv7 kit +# - Android SDK +# - Androig NDK +# - Current Java +# - ant +#---------------------------------------------------------- +# Update with correct location for these +export ANDROID_HOME=~/Library/Android/sdk +export ANDROID_SDK_ROOT=~/Library/Android/sdk +export ANDROID_NDK_ROOT=~/Library/Android/ndk +export ANDROID_NDK_HOST=darwin-x86_64 +export ANDROID_NDK_PLATFORM=/android-9 +export ANDROID_NDK_TOOLCHAIN_PREFIX=arm-linux-androideabi +export ANDROID_NDK_TOOLCHAIN_VERSION=4.9 +export ANDROID_NDK_TOOLS_PREFIX=arm-linux-androideabi +#---------------------------------------------------------- +# To build it, run (replacing the path with where you have Qt installed) +# +# For a shadow build: (strongly recomended) +# +# >source android_environment.sh +# cd ../ +# mkdir android_build +# cd android_build +# >~/local/Qt/5.4/android_armv7/bin/qmake -r -spec android-g++ CONFIG+=debug ../qgroundcontrol/qgroundcontrol.pro +# >make -j24 +# >~/local/Qt/5.4/android_armv7/bin/androiddeployqt --input ./android-libqgroundcontrol.so-deployment-settings.json --output ./android-build --deployment bundled --android-platform android-22 --jdk /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home --verbose --ant /opt/local/bin/ant +# +# For an in place build (not recomended) +# +# >source android_environment.sh +# >~/local/Qt/5.4/android_armv7/bin/qmake -r -spec android-g++ CONFIG+=debug qgroundcontrol.pro +# >make -j24 +# >~/local/Qt/5.4/android_armv7/bin/androiddeployqt --input ./android-libqgroundcontrol.so-deployment-settings.json --output ./android-build --deployment bundled --android-platform android-22 --jdk /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home --verbose --ant /opt/local/bin/ant diff --git a/data/ParameterList.xml b/data/ParameterList.xml deleted file mode 100644 index 445f4d5a738d0b7e3c202ad7ae67c7dfbbaa96f9..0000000000000000000000000000000000000000 --- a/data/ParameterList.xml +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/kinect.cal b/data/kinect.cal deleted file mode 100644 index ee802fa7c43fcac35c76f002e4d856a39a0e0dfd..0000000000000000000000000000000000000000 --- a/data/kinect.cal +++ /dev/null @@ -1,37 +0,0 @@ -[rgb] -principal_point\x=314.70228964 -principal_point\y=264.30478827 -focal_length\x=527.91246131 -focal_length\y=527.91246131 -distortion\k1=0.20496745 -distortion\k2=-0.36341243 -distortion\k3=0.00000000 -distortion\k4=0.00000000 -distortion\k5=0.00000000 - -[depth] -principal_point\x=311.88621344 -principal_point\y=247.63447078 -focal_length\x=593.89813561 -focal_length\y=593.89813561 -distortion\k1=0.00000000 -distortion\k2=0.00000000 -distortion\k3=0.00000000 -distortion\k4=0.00000000 -distortion\k5=0.00000000 - -[transform] -R11=0.999982 -R12=0.000556 -R13=0.005927 -R21=-0.000563 -R22=0.999999 -R23=0.001235 -R31=-0.005926 -R32=-0.001239 -R33=0.999982 -Tx=-0.024287 -Ty=0.001018 -Tz=-0.015195 -baseline=0.06061 -disparity_offset=1092.3403 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000000000000000000000000000000000000..f3d1a56c6598b1e18fb1d493e3619d072940449f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +qgroundcontrol (2.4-0ubuntu1) trusty; urgency=low + + * Initial release (Closes: #nnnn) + + -- Daniel Agar Sat, 04 Apr 2015 17:14:10 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000000000000000000000000000000000000..ec635144f60048986bc560c5576355344005e6e7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000000000000000000000000000000000000..d8593ea302d1c8d2faae8d91d7860f6ba4c72c65 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: qgroundcontrol +Section: electronics +Priority: optional +Maintainer: Daniel Agar +Build-Depends: debhelper (>= 9), qt54tools, qt54base, qt54declarative, qt54serialport, qt54svg, qt54webkit, qt54quickcontrols, qt54xmlpatterns, qt54x11extras, qt54websockets, qt54sensors, qt54script, qt54quick1, qt54qbs, qt54multimedia, qt54location, qt54imageformats, qt54graphicaleffects, qt54creator, qt54connectivity, libsdl1.2-dev, libudev-dev +Standards-Version: 3.9.5 +Homepage: https://github.com/mavlink/qgroundcontrol +Vcs-Git: git://github.com/mavlink/qgroundcontrol.git +#Vcs-Browser: http://git.debian.org/?p=collab-maint/qgroundcontrol.git;a=summary + +Package: qgroundcontrol +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, qt54tools, qt54base, qt54declarative, qt54serialport, qt54svg, qt54webkit, qt54quickcontrols, qt54xmlpatterns, qt54x11extras, qt54websockets, qt54sensors, qt54script, qt54quick1, qt54multimedia, qt54location, qt54imageformats, qt54graphicaleffects, qt54connectivity +Description: Open Source Micro Air Vehicle Ground Control Station + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000000000000000000000000000000000000..833c87414c389a5ff3d7431083bfa475caa6225a --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: qgroundcontrol +Source: https://github.com/mavlink/qgroundcontrol + +Files: * +Copyright: QGroundControl Developers https://github.com/mavlink/qgroundcontrol/graphs/contributors +License: GPL-3+ diff --git a/debian/menu b/debian/menu new file mode 100644 index 0000000000000000000000000000000000000000..8e03196aa2657c41bcb51a13a06dfe7d8e74f4e0 --- /dev/null +++ b/debian/menu @@ -0,0 +1,4 @@ + ?package(qgroundcontrol):needs="x11" \ + section="Applications/Electronics" \ + title="QGroundControl" \ + command="/usr/bin/qgroundcontrol" diff --git a/debian/qgroundcontrol.install b/debian/qgroundcontrol.install new file mode 100644 index 0000000000000000000000000000000000000000..0f7a95ee9ecf680ce60acd6d90af6ae235c1bb73 --- /dev/null +++ b/debian/qgroundcontrol.install @@ -0,0 +1,4 @@ +qgroundcontrol.desktop usr/share/applications +release/qgroundcontrol usr/bin +resources/ usr/share/qgroundcontrol +resources/icons/qgroundcontrol.png usr/share/pixmaps diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000000000000000000000000000000000000..7c1274abab733e4b41d6994fa7772c013ac3fc6d --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +# -*- makefile -*- +export QT_SELECT := qt5 + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_configure: + /opt/qt54/bin/qmake qgroundcontrol.pro diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000000000000000000000000000000000000..163aaf8d82b6c54f23c45f32895dbdfdcc27b047 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000000000000000000000000000000000000..2059712f8865a8e5e74779116b6e19ac3c8c76e2 --- /dev/null +++ b/debian/source/options @@ -0,0 +1 @@ +tar-ignore = ".git/*" diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000000000000000000000000000000000000..ad20addfd5a70417e01ddc40d9a73cb64c316324 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://github.com/mavlink/qgroundcontrol/tags .*/archive/[a-z](\d\S*)\.tar\.gz diff --git a/deploy/px4driver.msi b/deploy/px4driver.msi new file mode 100644 index 0000000000000000000000000000000000000000..4e2b0866d45b6735affffce5955a2b5775c22589 Binary files /dev/null and b/deploy/px4driver.msi differ diff --git a/deploy/qgroundcontrol_installer.nsi b/deploy/qgroundcontrol_installer.nsi index 322a17f38c15c59a110d16065a01a3be23fce0a3..57836ff0a83e719ccb9f9cd7b8be24737ba83800 100644 --- a/deploy/qgroundcontrol_installer.nsi +++ b/deploy/qgroundcontrol_installer.nsi @@ -14,9 +14,11 @@ LicenseData license.txt Section SetOutPath $INSTDIR File /r release\*.* + File deploy\px4driver.msi WriteUninstaller $INSTDIR\QGroundControl_uninstall.exe WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\QGroundControl" "DisplayName" "QGroundControl" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\QGroundControl" "UninstallString" "$\"$INSTDIR\QGroundControl_uninstall.exe$\"" + ExecWait '"msiexec" /i "px4driver.msi"' SectionEnd Section "Uninstall" diff --git a/files/QLoggingCategory/qtlogging.ini b/files/QLoggingCategory/qtlogging.ini deleted file mode 100644 index c67fdd4cf2ace3d3b61f16e05690bfc50a237b0b..0000000000000000000000000000000000000000 --- a/files/QLoggingCategory/qtlogging.ini +++ /dev/null @@ -1,2 +0,0 @@ -[Rules] -*Log=false diff --git a/files/Setup/cogwheels.png b/files/Setup/cogwheels.png deleted file mode 100644 index 7ef3297fed5815fe15293da65e7cddf17ab25aab..0000000000000000000000000000000000000000 Binary files a/files/Setup/cogwheels.png and /dev/null differ diff --git a/files/images/.gitignore b/files/images/.gitignore deleted file mode 100644 index b25c15b81fae06e1c55946ac6270bfdb293870e8..0000000000000000000000000000000000000000 --- a/files/images/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*~ diff --git a/files/images/actions/address-book-new.svg b/files/images/actions/address-book-new.svg deleted file mode 100644 index 600a82c1b0e1bacf236764be2ec3310b98d9fc4b..0000000000000000000000000000000000000000 --- a/files/images/actions/address-book-new.svg +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Addess Book - New - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - address - contact - book - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/appointment-new.svg b/files/images/actions/appointment-new.svg deleted file mode 100644 index 4cb14f82f02d92ed24119a7d0c858848aead5f57..0000000000000000000000000000000000000000 --- a/files/images/actions/appointment-new.svg +++ /dev/null @@ -1,425 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - New Appointment - - - appointment - new - meeting - rvsp - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/bookmark-new.svg b/files/images/actions/bookmark-new.svg deleted file mode 100644 index d6d095b7155dd2a7519e842ef630e2dd03579cd3..0000000000000000000000000000000000000000 --- a/files/images/actions/bookmark-new.svg +++ /dev/null @@ -1,672 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - New Bookmark - - - bookmark - remember - favorite - - - - - - Andreas Nilsson - - - - - - Jakub Steiner - - - create bookmark action - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/contact-new.svg b/files/images/actions/contact-new.svg deleted file mode 100644 index 1efb89548d2ba6b8c216ef3ffda4ac380d1a807e..0000000000000000000000000000000000000000 --- a/files/images/actions/contact-new.svg +++ /dev/null @@ -1,606 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - New Contact - - - address - contact - e-mail - person - information - card - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-new.svg b/files/images/actions/document-new.svg deleted file mode 100644 index 1bfdb16409c0e93e4eeddc0758c4383ff3e5474c..0000000000000000000000000000000000000000 --- a/files/images/actions/document-new.svg +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - New Document - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-open.svg b/files/images/actions/document-open.svg deleted file mode 100644 index 55e6177d2ae26bdc89d30c2c2909033cf971f56b..0000000000000000000000000000000000000000 --- a/files/images/actions/document-open.svg +++ /dev/null @@ -1,535 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Folder Icon Accept - 2005-01-31 - - - Jakub Steiner - - - - http://jimmac.musichall.cz - Active state - when files are being dragged to. - - - Novell, Inc. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-print-preview.svg b/files/images/actions/document-print-preview.svg deleted file mode 100644 index d3501ac154d3f9f812cf7b23b2a64aab35bb2c52..0000000000000000000000000000000000000000 --- a/files/images/actions/document-print-preview.svg +++ /dev/null @@ -1,703 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Print Preview - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - printer - local - laser - bubblejet - inkjet - print - output - cups - lpd - preview - - - - - Corey Woodworth - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-print.svg b/files/images/actions/document-print.svg deleted file mode 100644 index 0b8837ba1df643c64257b24ebaa0b6c5394a78c2..0000000000000000000000000000000000000000 --- a/files/images/actions/document-print.svg +++ /dev/null @@ -1,532 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Print Document - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - document - lpr - print - local - laser - bubblejet - inkjet - print - output - cups - lpd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-properties.svg b/files/images/actions/document-properties.svg deleted file mode 100644 index c57f96d2e29e2d45f61eb83d2dbbdaa2f467d0cd..0000000000000000000000000000000000000000 --- a/files/images/actions/document-properties.svg +++ /dev/null @@ -1,576 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Document Properties - - - document - settings - preferences - properties - tweak - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-save-as.svg b/files/images/actions/document-save-as.svg deleted file mode 100644 index 01e2fb7a5db34a0c407d5e5c2561a18c10df3f40..0000000000000000000000000000000000000000 --- a/files/images/actions/document-save-as.svg +++ /dev/null @@ -1,663 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Save As - - - Jakub Steiner - - - - - hdd - hard drive - save as - io - store - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/document-save.svg b/files/images/actions/document-save.svg deleted file mode 100644 index 2922c4331a7f566ada86784b0b96be5d44035d7c..0000000000000000000000000000000000000000 --- a/files/images/actions/document-save.svg +++ /dev/null @@ -1,619 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Save - - - Jakub Steiner - - - - - hdd - hard drive - save - io - store - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-clear.svg b/files/images/actions/edit-clear.svg deleted file mode 100644 index b2f20d44e7038d46fbc7ae7b82bf6e89fcda70ff..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-clear.svg +++ /dev/null @@ -1,416 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Clear - - - Andreas Nilsson - - - http://www.tango-project.org - - - clear - reset - blank - edit - - - - - - Jakub Steiner (although minimally ;) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-copy.svg b/files/images/actions/edit-copy.svg deleted file mode 100644 index f4d9e9776c1156da09af1339c918bd820cf1b7ff..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-copy.svg +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Copy - 2005-10-15 - - - Andreas Nilsson - - - - - edit - copy - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-cut.svg b/files/images/actions/edit-cut.svg deleted file mode 100644 index b9ac930c91a21bee2321d1cd510d4bf3bc4fa6bd..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-cut.svg +++ /dev/null @@ -1,508 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Cut - - - Garrett Le Sage - - - - - edit - cut - clipboard - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-delete.svg b/files/images/actions/edit-delete.svg deleted file mode 100644 index 69281e4239411b408e8d8b08a0bf88c91ec6dac1..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-delete.svg +++ /dev/null @@ -1,896 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Delete - - - - Jakub Steiner - - - - - edit - delete - shredder - - - - - Novell, Inc. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-find-replace.svg b/files/images/actions/edit-find-replace.svg deleted file mode 100644 index 1f443ff7d3ff7008f33c36e743af15010b5fbc91..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-find-replace.svg +++ /dev/null @@ -1,974 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Find Replace - - - edit - find - locate - search - - - - - - Garrett LeSage - - - - - - Jakub Steiner, Steven Garrity - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-find.svg b/files/images/actions/edit-find.svg deleted file mode 100644 index a499b486cf85b780cdcd97be247000b908ac22f3..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-find.svg +++ /dev/null @@ -1,750 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Find - - - edit - find - locate - search - - - - - - Steven Garrity - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-paste.svg b/files/images/actions/edit-paste.svg deleted file mode 100644 index 39150d7155d11b0f9b4d405225afeff60be900f9..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-paste.svg +++ /dev/null @@ -1,531 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Edit Paste - 2005-10-10 - - - Andreas Nilsson - - - - - edit - paste - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-redo.svg b/files/images/actions/edit-redo.svg deleted file mode 100644 index bc4d52af7c93e11c5903fd5120912f5e8737c68e..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-redo.svg +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Edit Redo - - - edit - redo - again - reapply - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-select-all.svg b/files/images/actions/edit-select-all.svg deleted file mode 100644 index dd5250752b943409049712df289baedc89544c63..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-select-all.svg +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Select All - - - - Andreas Nilsson - - - - - select - all - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/edit-undo.svg b/files/images/actions/edit-undo.svg deleted file mode 100644 index d3cce96f1bee79a9a35b2aa72dac530b5f9d9778..0000000000000000000000000000000000000000 --- a/files/images/actions/edit-undo.svg +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Edit Undo - - - edit - undo - revert - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/folder-new.svg b/files/images/actions/folder-new.svg deleted file mode 100644 index 0791887afcbbe0593984807949702d42fc87f20a..0000000000000000000000000000000000000000 --- a/files/images/actions/folder-new.svg +++ /dev/null @@ -1,452 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - New Folder - - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - folder - directory - create - new - - - - - Tuomas Kuosmanen - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-indent-less.svg b/files/images/actions/format-indent-less.svg deleted file mode 100644 index 00be1f3a355fb9805bfd27203b338d0865b94ae5..0000000000000000000000000000000000000000 --- a/files/images/actions/format-indent-less.svg +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Unindent - - - - Jakub Steiner - - - - - indent - less - unindent - - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-indent-more.svg b/files/images/actions/format-indent-more.svg deleted file mode 100644 index 2047b623a4fbb72afabcd151773d325340235490..0000000000000000000000000000000000000000 --- a/files/images/actions/format-indent-more.svg +++ /dev/null @@ -1,368 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Indent More - - - - Jakub Steiner - - - - - indent - more - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-justify-center.svg b/files/images/actions/format-justify-center.svg deleted file mode 100644 index d1564f33b36fb2a9299206b1a8e97f539cff5cb9..0000000000000000000000000000000000000000 --- a/files/images/actions/format-justify-center.svg +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Justify Center - 2005-10-29 - - - Andreas Nilsson - - - - - justify - center - format - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-justify-fill.svg b/files/images/actions/format-justify-fill.svg deleted file mode 100644 index 1ec09496307ebd1269289e932ac058c73bf80dbe..0000000000000000000000000000000000000000 --- a/files/images/actions/format-justify-fill.svg +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Justify Center - 2005-10-29 - - - Andreas Nilsson - - - - - justify - center - format - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-justify-left.svg b/files/images/actions/format-justify-left.svg deleted file mode 100644 index c250195007748130fbc744750e71cbb9f2150b2e..0000000000000000000000000000000000000000 --- a/files/images/actions/format-justify-left.svg +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Justify Left - 2005-10-29 - - - Andreas Nilsson - - - - - justify - left - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-justify-right.svg b/files/images/actions/format-justify-right.svg deleted file mode 100644 index f6f2205e734d8a58132d397641d11ef96549fd66..0000000000000000000000000000000000000000 --- a/files/images/actions/format-justify-right.svg +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Justify Right - 2005-10-29 - - - Andreas Nilsson - - - - - justify - left - format - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-text-bold.svg b/files/images/actions/format-text-bold.svg deleted file mode 100644 index 9268d4ea6013169a70db72e51e8a3da6cbffe6a1..0000000000000000000000000000000000000000 --- a/files/images/actions/format-text-bold.svg +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Bold - 2006-01-04 - - - Lapo Calamandrei - - - http://tango-project.org - - - text - a - bold - write - letter - - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-text-italic.svg b/files/images/actions/format-text-italic.svg deleted file mode 100644 index 3a4bc363a06fa79b4b29c4c986501a6de2784b09..0000000000000000000000000000000000000000 --- a/files/images/actions/format-text-italic.svg +++ /dev/null @@ -1,334 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Italic - 2006-01-04 - - - Lapo Calamandrei - - - http://tango-project.org - - - text - a - italic - cursive - write - letter - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-text-strikethrough.svg b/files/images/actions/format-text-strikethrough.svg deleted file mode 100644 index 5e87b5ede56b5d5a0fc622760fd2ce32d1cf2cd5..0000000000000000000000000000000000000000 --- a/files/images/actions/format-text-strikethrough.svg +++ /dev/null @@ -1,421 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Strikeout - 2006-01-04 - - - Lapo Calamandrei - - - http://tango-project.org - - - text - a - strikeout - strike-out - write - letter - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/format-text-underline.svg b/files/images/actions/format-text-underline.svg deleted file mode 100644 index 22131f6c2b2abde4c23d7519efa8d943b6c45885..0000000000000000000000000000000000000000 --- a/files/images/actions/format-text-underline.svg +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Format Text - Underlined - - - - Lapo Calamandrei - - - http://tango-project.org - - - text - a - strikeout - strike-out - write - letter - strike-though - - - - - - jakub Steiner - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/go-first.svg b/files/images/actions/go-first.svg deleted file mode 100644 index 4e0b668f907828279dc4f05adb8aa893c76534ab..0000000000000000000000000000000000000000 --- a/files/images/actions/go-first.svg +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Previous - - - go - previous - left - arrow - pointer - < - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/go-home.svg b/files/images/actions/go-home.svg deleted file mode 100644 index 4f16958844d23c0fd2263ee9af8e2e11410c1ab8..0000000000000000000000000000000000000000 --- a/files/images/actions/go-home.svg +++ /dev/null @@ -1,445 +0,0 @@ - -image/svg+xmlGo HomeJakub Steinerhttp://jimmac.musichall.czhomereturngodefaultuserdirectoryTuomas Kuosmanen - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/files/images/actions/go-last.svg b/files/images/actions/go-last.svg deleted file mode 100644 index 00af499db702c4a792a4dd4711fd44b8263bdb9b..0000000000000000000000000000000000000000 --- a/files/images/actions/go-last.svg +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Next - - - go - next - right - arrow - pointer - > - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/go-top.svg b/files/images/actions/go-top.svg deleted file mode 100644 index 4ee94d3c8f07db915d1e146a96af56a07f3ed661..0000000000000000000000000000000000000000 --- a/files/images/actions/go-top.svg +++ /dev/null @@ -1,974 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Go Top - - - go - highest - top - arrow - pointer - > - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/mail-forward.svg b/files/images/actions/mail-forward.svg deleted file mode 100644 index b159ed5399ded63e66fec784c6cedee9cf8dcf68..0000000000000000000000000000000000000000 --- a/files/images/actions/mail-forward.svg +++ /dev/null @@ -1,961 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mail - - - Jakub Steiner - - - - - Andreas Nilsson - - - - - - mail - e-mail - MUA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/mail-mark-junk.svg b/files/images/actions/mail-mark-junk.svg deleted file mode 100644 index 01631751f79fdae79551455aecefd3caf1f4d540..0000000000000000000000000000000000000000 --- a/files/images/actions/mail-mark-junk.svg +++ /dev/null @@ -1,504 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Mark mail as Junk - - - mail - spam - junk - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/mail-message-new.svg b/files/images/actions/mail-message-new.svg deleted file mode 100644 index 9f68587763947b6a2d331b602528f39d6ba19f8e..0000000000000000000000000000000000000000 --- a/files/images/actions/mail-message-new.svg +++ /dev/null @@ -1,464 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mail New - - - Jakub Steiner - - - - - Andreas Nilsson, Steven Garrity - - - - - - mail - e-mail - MUA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/mail-reply-all.svg b/files/images/actions/mail-reply-all.svg deleted file mode 100644 index f1ee15f4085e95110b79353bdfc01eff7ff9638c..0000000000000000000000000000000000000000 --- a/files/images/actions/mail-reply-all.svg +++ /dev/null @@ -1,976 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mail Reply All - - - Jakub Steiner - - - - - Andreas Nilsson, Garrett LeSage - - - - - - mail - e-mail - reply - all - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/mail-reply-sender.svg b/files/images/actions/mail-reply-sender.svg deleted file mode 100644 index ad1cab436aed923de978107fa799445da5b55215..0000000000000000000000000000000000000000 --- a/files/images/actions/mail-reply-sender.svg +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mail Reply - - - Garrett LeSage - - - - - Jakub Steiner, Andreas Nilsson - - - - - - mail - e-mail - reply - sender - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/mail-send-receive.svg b/files/images/actions/mail-send-receive.svg deleted file mode 100644 index ef7157775eac5e0ffe0c2daeb027901c5bd94fdc..0000000000000000000000000000000000000000 --- a/files/images/actions/mail-send-receive.svg +++ /dev/null @@ -1,1101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Send and Receive Mail - - - Jakub Steiner - - - - - Andreas Nilsson, Garrett LeSage - - - - - - mail - e-mail - send - receive - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/media-eject.svg b/files/images/actions/media-eject.svg deleted file mode 100644 index d22eae1a4f3854e0211ea43a399cf7022b96a64c..0000000000000000000000000000000000000000 --- a/files/images/actions/media-eject.svg +++ /dev/null @@ -1,450 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Playback Start - - - Jakub Steiner - - - - - - media - eject - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/media-record.svg b/files/images/actions/media-record.svg deleted file mode 100644 index 85bbb98f6e298534d4fbc0d38a872695fb1e694b..0000000000000000000000000000000000000000 --- a/files/images/actions/media-record.svg +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Record - - - Lapo Calamandrei - - - - - - media - player - record - music - sound - video - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/media-seek-backward.svg b/files/images/actions/media-seek-backward.svg deleted file mode 100644 index 75f49f1a8243bff83f2e8a021cf9c7f16e4f77f0..0000000000000000000000000000000000000000 --- a/files/images/actions/media-seek-backward.svg +++ /dev/null @@ -1,374 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Seek Backward - - - Lapo Calamandrei - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/media-seek-forward.svg b/files/images/actions/media-seek-forward.svg deleted file mode 100644 index b1b9fe950bf65e3e06850972e768a6845cbf0ce1..0000000000000000000000000000000000000000 --- a/files/images/actions/media-seek-forward.svg +++ /dev/null @@ -1,383 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Seek Forward - - - Lapo Calamandrei - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/media-skip-backward.svg b/files/images/actions/media-skip-backward.svg deleted file mode 100644 index fccd7762cde6944501bd6647341f78e7dd905e51..0000000000000000000000000000000000000000 --- a/files/images/actions/media-skip-backward.svg +++ /dev/null @@ -1,1025 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Skip Backward - - - Lapo Calamandrei - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/media-skip-forward.svg b/files/images/actions/media-skip-forward.svg deleted file mode 100644 index 7c4d40054b275de9ef81d57e3b3118acde9c320d..0000000000000000000000000000000000000000 --- a/files/images/actions/media-skip-forward.svg +++ /dev/null @@ -1,1013 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Skip Forward - - - Lapo Calamandrei - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/qgroundcontrol-apm.svg b/files/images/actions/qgroundcontrol-apm.svg deleted file mode 100644 index d8ff8dee5a9bccad567dc48f4cc09e85e808a0da..0000000000000000000000000000000000000000 --- a/files/images/actions/qgroundcontrol-apm.svg +++ /dev/null @@ -1,4931 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/qgroundcontrol-ardrone.svg b/files/images/actions/qgroundcontrol-ardrone.svg deleted file mode 100644 index 9933b10fef67fcc4066b3365aa84b3f8cad3c26a..0000000000000000000000000000000000000000 --- a/files/images/actions/qgroundcontrol-ardrone.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/qgroundcontrol-generic.svg b/files/images/actions/qgroundcontrol-generic.svg deleted file mode 100644 index 92b3d0e7faf3cb254816b74aa423c70d9b1320f5..0000000000000000000000000000000000000000 --- a/files/images/actions/qgroundcontrol-generic.svg +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/files/images/actions/qgroundcontrol-px4.svg b/files/images/actions/qgroundcontrol-px4.svg deleted file mode 100644 index b264ca567425a285072e8ded8a4881ef78fdeadd..0000000000000000000000000000000000000000 --- a/files/images/actions/qgroundcontrol-px4.svg +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/qgroundcontrol-wifi.svg b/files/images/actions/qgroundcontrol-wifi.svg deleted file mode 100644 index eaaf531d8cffea255bd241b2fb25f2e952ca0811..0000000000000000000000000000000000000000 --- a/files/images/actions/qgroundcontrol-wifi.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/files/images/actions/system-search.svg b/files/images/actions/system-search.svg deleted file mode 100644 index 1a4c1cd776abd000264967cb7890afbab09afdc2..0000000000000000000000000000000000000000 --- a/files/images/actions/system-search.svg +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/system-shutdown.svg b/files/images/actions/system-shutdown.svg deleted file mode 100644 index 9b0b32713ee60c866d201ec4b3a9cf203e205581..0000000000000000000000000000000000000000 --- a/files/images/actions/system-shutdown.svg +++ /dev/null @@ -1,424 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - System Shutdown - - - poweroff - shutdown - halt - system - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/tab-new.svg b/files/images/actions/tab-new.svg deleted file mode 100644 index f3c0a14d47d97a178144807a594f078f752ae80c..0000000000000000000000000000000000000000 --- a/files/images/actions/tab-new.svg +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - New Tab - 2005-10-29 - - - Andreas Nilsson - - - - - tab - new - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/view-fullscreen.svg b/files/images/actions/view-fullscreen.svg deleted file mode 100644 index d410654bcb36238fae327790a77c97e463d37759..0000000000000000000000000000000000000000 --- a/files/images/actions/view-fullscreen.svg +++ /dev/null @@ -1,522 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - View Fullscreen - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/view-refresh.svg b/files/images/actions/view-refresh.svg deleted file mode 100644 index 565f6dadec3d5841bc035133918ce0ad9472d7d0..0000000000000000000000000000000000000000 --- a/files/images/actions/view-refresh.svg +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - View Refresh - - - reload - refresh - view - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/actions/window-new.svg b/files/images/actions/window-new.svg deleted file mode 100644 index 60d33cfb6dc00a4939684958b6b829e333727f4c..0000000000000000000000000000000000000000 --- a/files/images/actions/window-new.svg +++ /dev/null @@ -1,292 +0,0 @@ - - - - - - - image/svg+xml - - New Window - - - Corey Woodworth - - - - http://jimmac.musichall.cz - - - Jakub Steiner - - - - - new - insert - window - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/accessories-calculator.svg b/files/images/apps/accessories-calculator.svg deleted file mode 100644 index 88cf76a93d46af9ae9870846917ab237b1c85775..0000000000000000000000000000000000000000 --- a/files/images/apps/accessories-calculator.svg +++ /dev/null @@ -1,636 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Calculator - - - Jakub Steiner - - - - - - - - - - - calc - calculator - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/accessories-character-map.svg b/files/images/apps/accessories-character-map.svg deleted file mode 100644 index 8bb8dcfe49933de61cb987d0752672223a67823c..0000000000000000000000000000000000000000 --- a/files/images/apps/accessories-character-map.svg +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Character Map - - - key - map - character - accessory - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/accessories-text-editor.svg b/files/images/apps/accessories-text-editor.svg deleted file mode 100644 index 70621f01fc1dff2d62761ebb227204e90339ab1a..0000000000000000000000000000000000000000 --- a/files/images/apps/accessories-text-editor.svg +++ /dev/null @@ -1,554 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Text Editor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/help-browser.svg b/files/images/apps/help-browser.svg deleted file mode 100644 index 851327f7769cbc1547be22eb2a297d287bcc3ae9..0000000000000000000000000000000000000000 --- a/files/images/apps/help-browser.svg +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Help Browser - 2005-11-06 - - - Tuomas Kuosmanen - - - - - help - browser - documentation - docs - man - info - - - - - - Jakub Steiner, Andreas Nilsson - - - http://tigert.com - - - - - - - - - - - - - - - diff --git a/files/images/apps/internet-group-chat.svg b/files/images/apps/internet-group-chat.svg deleted file mode 100644 index 8e8945ecf838ccc9078306c3c00a0f4aeb7170e7..0000000000000000000000000000000000000000 --- a/files/images/apps/internet-group-chat.svg +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Group Chat - - - Jakub Steiner - - - - - - - - - - - group - chat - IRC - internet - network - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/internet-mail.svg b/files/images/apps/internet-mail.svg deleted file mode 100644 index 8d5ea8cd324349192176297769b1d58c90a9190b..0000000000000000000000000000000000000000 --- a/files/images/apps/internet-mail.svg +++ /dev/null @@ -1,440 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mail - - - Jakub Steiner - - - - - Andreas Nilsson - - - - - - mail - e-mail - MUA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/internet-news-reader.svg b/files/images/apps/internet-news-reader.svg deleted file mode 100644 index b86f419ed819c864a36a1c9c39cbde173ee7e4b3..0000000000000000000000000000000000000000 --- a/files/images/apps/internet-news-reader.svg +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - News - 2005-03-11 - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - news - usenet - new - - - - - - - - - - - - - - - - - - - - - - - - - - - - N - E - W - S - - - - - - - - diff --git a/files/images/apps/internet-web-browser.svg b/files/images/apps/internet-web-browser.svg deleted file mode 100644 index d2366a9dcd4116084d85679bd84eeaf15a6f5bf8..0000000000000000000000000000000000000000 --- a/files/images/apps/internet-web-browser.svg +++ /dev/null @@ -1,982 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Globe - - - Jakub Steiner - - - - - Tuomas Kuosmanen - - - - http://jimmac.musichall.cz - - - globe - international - web - www - internet - network - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/office-calendar.svg b/files/images/apps/office-calendar.svg deleted file mode 100644 index d9f9281db54bcc8ef088ad089db4bf885ea93e5e..0000000000000000000000000000000000000000 --- a/files/images/apps/office-calendar.svg +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Calendar - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - calendar - date - time - cal - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-accessibility.svg b/files/images/apps/preferences-desktop-accessibility.svg deleted file mode 100644 index 9977314bdcd9edcc3bc290cd615f608748b7cbe8..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-accessibility.svg +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Accessibility - - - accessibility - assist - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-assistive-technology.svg b/files/images/apps/preferences-desktop-assistive-technology.svg deleted file mode 100644 index 39a46686f7f505b011837a7cd51d2fc3c9c30d77..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-assistive-technology.svg +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Assistive Technology - - - accessibility - assist - assistive technology - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-font.svg b/files/images/apps/preferences-desktop-font.svg deleted file mode 100644 index 079398021d42220099abad77894e586c7ceb1f9c..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-font.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Wi-Fi network - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-keyboard-shortcuts.svg b/files/images/apps/preferences-desktop-keyboard-shortcuts.svg deleted file mode 100644 index 6caf205d20bbae75fcc476de841bd269f9972f01..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-keyboard-shortcuts.svg +++ /dev/null @@ -1,839 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Character Map - - - key - map - character - accessory - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-locale.svg b/files/images/apps/preferences-desktop-locale.svg deleted file mode 100644 index 2e71f18a80bd50671bd985ca3e405bbeb57961bb..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-locale.svg +++ /dev/null @@ -1,878 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Locale Preferences - - - locale preferences - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-multimedia.svg b/files/images/apps/preferences-desktop-multimedia.svg deleted file mode 100644 index 9ddee90ae61a6fc2dd2817044a81cb6ff023481f..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-multimedia.svg +++ /dev/null @@ -1,579 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-remote-desktop.svg b/files/images/apps/preferences-desktop-remote-desktop.svg deleted file mode 100644 index 848e8922f02d8ffe6122041b10f1d2f9e187ae9d..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-remote-desktop.svg +++ /dev/null @@ -1,1479 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Remote Desktop - - - Jakub Steiner - - - - - Tuomas Kuosmanen - - - - http://jimmac.musichall.cz - - - vnc - remote - desktop - control - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-screensaver.svg b/files/images/apps/preferences-desktop-screensaver.svg deleted file mode 100644 index 0db417677389ac98c2e96ccec660ad0a63793007..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-screensaver.svg +++ /dev/null @@ -1,717 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Screensacer - - - - Jakub Steiner - - - - - video - display - screensaver - saver - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-theme.svg b/files/images/apps/preferences-desktop-theme.svg deleted file mode 100644 index 45ed886eae059e6ae6aca79fe2b0e81bd1a76232..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-theme.svg +++ /dev/null @@ -1,882 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Themes - - - skin - color - theme - customize - flavor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-desktop-wallpaper.svg b/files/images/apps/preferences-desktop-wallpaper.svg deleted file mode 100644 index 0f94fbd1572cecabec901190ee8e59f006beb80a..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-desktop-wallpaper.svg +++ /dev/null @@ -1,747 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Wallpaper - - - - Jakub Steiner - - - - - wallpaper - background - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-system-network-proxy.svg b/files/images/apps/preferences-system-network-proxy.svg deleted file mode 100644 index efb2653f756bbc686101304137d49bc78e11074b..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-system-network-proxy.svg +++ /dev/null @@ -1,1168 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Globe - - - Jakub Steiner - - - - - Tuomas Kuosmanen - - - - http://jimmac.musichall.cz - - - globe - international - web - www - internet - network - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-system-session.svg b/files/images/apps/preferences-system-session.svg deleted file mode 100644 index 27954bcecfac8b0ad29bbf2dc12a400b0d38b175..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-system-session.svg +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Preferences Session - - - session - restart - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/preferences-system-windows.svg b/files/images/apps/preferences-system-windows.svg deleted file mode 100644 index dc344f71622bb92ad6eaaca4f0f1a1df5a01d2f1..0000000000000000000000000000000000000000 --- a/files/images/apps/preferences-system-windows.svg +++ /dev/null @@ -1,386 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Windows - - - window - manager - decoration - behavior - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/system-file-manager.svg b/files/images/apps/system-file-manager.svg deleted file mode 100644 index 99ad454a49866368f92f2073b8e2a4756e2053d6..0000000000000000000000000000000000000000 --- a/files/images/apps/system-file-manager.svg +++ /dev/null @@ -1,317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - File Manager - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - file - manager - copy - move - filesystem - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/system-installer.svg b/files/images/apps/system-installer.svg deleted file mode 100644 index 32007409722c0b4799e41e8ef72a23e018040119..0000000000000000000000000000000000000000 --- a/files/images/apps/system-installer.svg +++ /dev/null @@ -1,497 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - System - Installer - - - jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/system-software-update.svg b/files/images/apps/system-software-update.svg deleted file mode 100644 index 66eb747c5d9dba82f901993086a0e44b9f31c6d1..0000000000000000000000000000000000000000 --- a/files/images/apps/system-software-update.svg +++ /dev/null @@ -1,1380 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Software Update - - - Jakub Steiner - - - - - - - - - http://jimmac.musichall.cz - - - network update - software - synchronize - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/system-users.svg b/files/images/apps/system-users.svg deleted file mode 100644 index 7d628b86d848afb77c83e2f23bcc7dbe8fd38d59..0000000000000000000000000000000000000000 --- a/files/images/apps/system-users.svg +++ /dev/null @@ -1,539 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - People - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - users - people - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/utilities-system-monitor.svg b/files/images/apps/utilities-system-monitor.svg deleted file mode 100644 index 8f4b9462e3f879b5dddc756b03edf6464c302043..0000000000000000000000000000000000000000 --- a/files/images/apps/utilities-system-monitor.svg +++ /dev/null @@ -1,435 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - System Monitor - 2005-10-10 - - - Andreas Nilsson - - - - - system - monitor - performance - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/apps/utilities-terminal.svg b/files/images/apps/utilities-terminal.svg deleted file mode 100644 index 995fb90b37e63106a19af7726485e4baa9720952..0000000000000000000000000000000000000000 --- a/files/images/apps/utilities-terminal.svg +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Terminal - 2005-10-15 - - - Andreas Nilsson - - - - - terminal - emulator - term - command line - - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/backgrounds/background-caution-button-active.png b/files/images/backgrounds/background-caution-button-active.png deleted file mode 100644 index 7d21e4c682f48cb2cdb86b6107aa227262af72d2..0000000000000000000000000000000000000000 Binary files a/files/images/backgrounds/background-caution-button-active.png and /dev/null differ diff --git a/files/images/backgrounds/background-caution-button.png b/files/images/backgrounds/background-caution-button.png deleted file mode 100644 index 0e9598f43dae19a4fc062e8f62482faf33d5e216..0000000000000000000000000000000000000000 Binary files a/files/images/backgrounds/background-caution-button.png and /dev/null differ diff --git a/files/images/backgrounds/background-caution.png b/files/images/backgrounds/background-caution.png deleted file mode 100644 index 308589cd6e56788a05c9a6ec38d92d4e57914af2..0000000000000000000000000000000000000000 Binary files a/files/images/backgrounds/background-caution.png and /dev/null differ diff --git a/files/images/categories/applications-accessories.svg b/files/images/categories/applications-accessories.svg deleted file mode 100644 index 35527cb7559f1f75bbb93022a06d01090786c78a..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-accessories.svg +++ /dev/null @@ -1,533 +0,0 @@ - -image/svg+xmlGo Homejakub Steinerhttp://jimmac.musichall.czhomereturngodefaultuserdirectory - - \ No newline at end of file diff --git a/files/images/categories/applications-development.svg b/files/images/categories/applications-development.svg deleted file mode 100644 index f575528941a8d7584b8da0296ce4d081778a2144..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-development.svg +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Henrik Andersen - - - Developer Tools - - - developer - dev - tool - make - compile - build - code - hacker - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-games.svg b/files/images/categories/applications-games.svg deleted file mode 100644 index 1d89e485b67846bc5950f749448c784c84f5dc77..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-games.svg +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Games - - - Andreas Nilsson - - - - - - games - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-graphics.svg b/files/images/categories/applications-graphics.svg deleted file mode 100644 index ec544d5a515d4ca8f40d82049ec0c57ce6dcbc8b..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-graphics.svg +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Graphics Category - - - - Jakub Steiner - - - - - - graphics - category - pixel - vector - editor - draw - paint - - - http://tango-project.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-internet.svg b/files/images/categories/applications-internet.svg deleted file mode 100644 index ebe3c60b6f00e597340e01eeb4f5b86e0f28b54b..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-internet.svg +++ /dev/null @@ -1,623 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Internet Category - - - Jakub Steiner - - - - - Tuomas Kuosmanen - - - - http://jimmac.musichall.cz - - - internet - tools - applications - category - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-multimedia.svg b/files/images/categories/applications-multimedia.svg deleted file mode 100644 index 6844e8db1a8445be853eb102aa6f36c6695ed4af..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-multimedia.svg +++ /dev/null @@ -1,498 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Multimedia Category - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - video - multimedia - category - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-office.svg b/files/images/categories/applications-office.svg deleted file mode 100644 index e1b60b47501bbaf22eb196c628b922dd3569ee8a..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-office.svg +++ /dev/null @@ -1,616 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Office Applications - - - office - applications - category - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-other.svg b/files/images/categories/applications-other.svg deleted file mode 100644 index 5e30c277c2be6b6e568c71785777f51e0f4cf24e..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-other.svg +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Other applications - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - category - applications - other - unspecified - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/applications-system.svg b/files/images/categories/applications-system.svg deleted file mode 100644 index 9d767742df480a954379c964cee3a74b973da415..0000000000000000000000000000000000000000 --- a/files/images/categories/applications-system.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - System Applications - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - system - applications - group - category - admin - root - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/preferences-desktop-peripherals.svg b/files/images/categories/preferences-desktop-peripherals.svg deleted file mode 100644 index 1e1663ab179e3d01f7b7d4bd09f7f9028e9dead4..0000000000000000000000000000000000000000 --- a/files/images/categories/preferences-desktop-peripherals.svg +++ /dev/null @@ -1,848 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Desktop Peripherals Preferences - - - tablet - mouse - desktop - preferences - settings - control center - peripherals - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/preferences-desktop.svg b/files/images/categories/preferences-desktop.svg deleted file mode 100644 index a0fd144942649117847fde9ff20847cc910fd04a..0000000000000000000000000000000000000000 --- a/files/images/categories/preferences-desktop.svg +++ /dev/null @@ -1,777 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Desktop Preferences - - - preferences - system - category - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/categories/preferences-system.svg b/files/images/categories/preferences-system.svg deleted file mode 100644 index d41028fc8dda63b22175daccc903bea501337bc2..0000000000000000000000000000000000000000 --- a/files/images/categories/preferences-system.svg +++ /dev/null @@ -1,398 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Preferences System - - - preferences - settings - control panel - tweaks - system - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/contrib/slugs.png b/files/images/contrib/slugs.png deleted file mode 100644 index 4af15559a963287e696c51a6b00c6b5dd5163c6b..0000000000000000000000000000000000000000 Binary files a/files/images/contrib/slugs.png and /dev/null differ diff --git a/files/images/control/emergency-button-gradient.png b/files/images/control/emergency-button-gradient.png deleted file mode 100644 index c9c98f43e24417374efea519b9c179298a880ef5..0000000000000000000000000000000000000000 Binary files a/files/images/control/emergency-button-gradient.png and /dev/null differ diff --git a/files/images/control/emergency-button-simple.png b/files/images/control/emergency-button-simple.png deleted file mode 100644 index d69eb1370ae782e133e33be428a9653c8bee5591..0000000000000000000000000000000000000000 Binary files a/files/images/control/emergency-button-simple.png and /dev/null differ diff --git a/files/images/control/emergency-button.png b/files/images/control/emergency-button.png deleted file mode 100644 index 5cbacdf11bdbe994eb25d11820c3445a4c8fea7a..0000000000000000000000000000000000000000 Binary files a/files/images/control/emergency-button.png and /dev/null differ diff --git a/files/images/control/emergency-button.svg b/files/images/control/emergency-button.svg deleted file mode 100644 index 69753fa988bd1a5e141d4688eaba68b76588d9d6..0000000000000000000000000000000000000000 --- a/files/images/control/emergency-button.svg +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/control/empty-button.png b/files/images/control/empty-button.png deleted file mode 100644 index 2215be7206b1da24daea58e3af292e79c41c6057..0000000000000000000000000000000000000000 Binary files a/files/images/control/empty-button.png and /dev/null differ diff --git a/files/images/control/empty-button.svg b/files/images/control/empty-button.svg deleted file mode 100644 index 48c04ddf98ae852bd8b3fecf6b478a233018aa19..0000000000000000000000000000000000000000 --- a/files/images/control/empty-button.svg +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/control/empty-emergency-button-v2.svg b/files/images/control/empty-emergency-button-v2.svg deleted file mode 100644 index 74589e5dc56859c97b0ff6142b426c701712e5f3..0000000000000000000000000000000000000000 --- a/files/images/control/empty-emergency-button-v2.svg +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/control/empty-emergency-button.svg b/files/images/control/empty-emergency-button.svg deleted file mode 100644 index dba3070e2630c471fabfb8548448264871ec7e13..0000000000000000000000000000000000000000 --- a/files/images/control/empty-emergency-button.svg +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/control/land-button.svg b/files/images/control/land-button.svg deleted file mode 100644 index 097f2fc7143392fe1aa833421af6fdaaa058935c..0000000000000000000000000000000000000000 --- a/files/images/control/land-button.svg +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/AC-0004-11-2.jpg b/files/images/devices/AC-0004-11-2.jpg deleted file mode 100644 index 334486b6756e6b2671c1a2dd1099f2c051e4a20c..0000000000000000000000000000000000000000 Binary files a/files/images/devices/AC-0004-11-2.jpg and /dev/null differ diff --git a/files/images/devices/BR-0004-03-2.jpg b/files/images/devices/BR-0004-03-2.jpg deleted file mode 100644 index 0126646ef48942d00ed34f2b0e720b26a308f155..0000000000000000000000000000000000000000 Binary files a/files/images/devices/BR-0004-03-2.jpg and /dev/null differ diff --git a/files/images/devices/BR-0016-01-3T.jpg b/files/images/devices/BR-0016-01-3T.jpg deleted file mode 100644 index 534eba3f0b7cfa4f16f7aeab02f410bc489bc50b..0000000000000000000000000000000000000000 Binary files a/files/images/devices/BR-0016-01-3T.jpg and /dev/null differ diff --git a/files/images/devices/BR-APMPWRDEAN-2.jpg b/files/images/devices/BR-APMPWRDEAN-2.jpg deleted file mode 100644 index 62a6a83b8380283f52d1b9981cd960711a2e8630..0000000000000000000000000000000000000000 Binary files a/files/images/devices/BR-APMPWRDEAN-2.jpg and /dev/null differ diff --git a/files/images/devices/BR-HMC5883-01-2.jpg b/files/images/devices/BR-HMC5883-01-2.jpg deleted file mode 100644 index f695795f6f93082d0e4a9b588aef3e9f515ff133..0000000000000000000000000000000000000000 Binary files a/files/images/devices/BR-HMC5883-01-2.jpg and /dev/null differ diff --git a/files/images/devices/MinimOSD.jpg b/files/images/devices/MinimOSD.jpg deleted file mode 100644 index b24c7e4a9759278435edcefe778e51765177d26e..0000000000000000000000000000000000000000 Binary files a/files/images/devices/MinimOSD.jpg and /dev/null differ diff --git a/files/images/devices/Shutter.png b/files/images/devices/Shutter.png deleted file mode 100644 index 0362734d5762771d2b98bcfe55fe6c08138cf412..0000000000000000000000000000000000000000 Binary files a/files/images/devices/Shutter.png and /dev/null differ diff --git a/files/images/devices/audio-card.svg b/files/images/devices/audio-card.svg deleted file mode 100644 index d7816a85c42bafd8d81028b28f3eccf56262ee3b..0000000000000000000000000000000000000000 --- a/files/images/devices/audio-card.svg +++ /dev/null @@ -1,434 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Audio Card - Audio Card Device - http://jimmac.musichall.cz - - - Jakub Steiner - - - - - - sound - audio - card - device - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/audio-input-microphone.svg b/files/images/devices/audio-input-microphone.svg deleted file mode 100644 index d31409c4e5b99a645e4ea063fe0d5f45d9017fb0..0000000000000000000000000000000000000000 --- a/files/images/devices/audio-input-microphone.svg +++ /dev/null @@ -1,501 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Microphone - - - mic - mike - microphone - input - audio - record - voice - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/battery.svg b/files/images/devices/battery.svg deleted file mode 100644 index 30695dda0f34bb76235912d83d8c3ae0465f3d42..0000000000000000000000000000000000000000 --- a/files/images/devices/battery.svg +++ /dev/null @@ -1,348 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Battery - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - battery - apm - acpi - power management - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/camera-photo.svg b/files/images/devices/camera-photo.svg deleted file mode 100644 index 4911410136f7bb65905d063ea691aa52d1ab9603..0000000000000000000000000000000000000000 --- a/files/images/devices/camera-photo.svg +++ /dev/null @@ -1,681 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - Photo Camera - - - camera - photo - SLR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/camera-video.svg b/files/images/devices/camera-video.svg deleted file mode 100644 index e24713457fbfefeb7dc0416a1a6882a0659d5e5c..0000000000000000000000000000000000000000 --- a/files/images/devices/camera-video.svg +++ /dev/null @@ -1,1257 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Camera / Video - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - camera - camcorder - video - cam - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/cameraGimalPitch1.png b/files/images/devices/cameraGimalPitch1.png deleted file mode 100644 index 158429893b5aa82506f4ca902b7d8acdec03253f..0000000000000000000000000000000000000000 Binary files a/files/images/devices/cameraGimalPitch1.png and /dev/null differ diff --git a/files/images/devices/cameraGimalRoll1.png b/files/images/devices/cameraGimalRoll1.png deleted file mode 100644 index bff678c9e7adc2264732f2df1d2bdfd29e7e3368..0000000000000000000000000000000000000000 Binary files a/files/images/devices/cameraGimalRoll1.png and /dev/null differ diff --git a/files/images/devices/cameraGimalYaw.png b/files/images/devices/cameraGimalYaw.png deleted file mode 100644 index 0375add2c31bf2c7a5926ce864037bd43a550068..0000000000000000000000000000000000000000 Binary files a/files/images/devices/cameraGimalYaw.png and /dev/null differ diff --git a/files/images/devices/computer.svg b/files/images/devices/computer.svg deleted file mode 100644 index 4a63d5d77626190bf2924a6a342dc4cf43281543..0000000000000000000000000000000000000000 --- a/files/images/devices/computer.svg +++ /dev/null @@ -1,740 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/drive-harddisk.svg b/files/images/devices/drive-harddisk.svg deleted file mode 100644 index 2d38ac6b8ae1a2fd5c1d69101a01564b401f7223..0000000000000000000000000000000000000000 --- a/files/images/devices/drive-harddisk.svg +++ /dev/null @@ -1,471 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Drive - Hard Disk - - - Jakub Steiner - - - - - hdd - hard drive - fixed - media - solid - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/drive-optical.svg b/files/images/devices/drive-optical.svg deleted file mode 100644 index 644ef8ae1e1ca5cdd60372f4e130b450b98d7624..0000000000000000000000000000000000000000 --- a/files/images/devices/drive-optical.svg +++ /dev/null @@ -1,515 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Drive - CD-ROM - - - Jakub Steiner - - - - - cdrom - cd-rom - optical - drive - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/drive-removable-media.svg b/files/images/devices/drive-removable-media.svg deleted file mode 100644 index 2b1987414535b09053e0bea77381ac7756fd7782..0000000000000000000000000000000000000000 --- a/files/images/devices/drive-removable-media.svg +++ /dev/null @@ -1,392 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Drive - Removable - - - Jakub Steiner - - - - - media - removable - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/input-gaming.svg b/files/images/devices/input-gaming.svg deleted file mode 100644 index 5909a53eaf31598807aa50b864d7875dbbe7ded1..0000000000000000000000000000000000000000 --- a/files/images/devices/input-gaming.svg +++ /dev/null @@ -1,530 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Input - Gaming - - - Jakub Steiner - - - - - gaming - controller - joystick - game - gaming - HID - - - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/input-keyboard.svg b/files/images/devices/input-keyboard.svg deleted file mode 100644 index 534dd384f436abdcf2c8cf8383c5c2cf713a4b43..0000000000000000000000000000000000000000 --- a/files/images/devices/input-keyboard.svg +++ /dev/null @@ -1,838 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Input - Keyboard - - - - Jakub Steiner - - - - - input - keyboard - keys - peripheral - HID - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/input-mouse.svg b/files/images/devices/input-mouse.svg deleted file mode 100644 index 2fda0182a967487c041ba0036704bdf1fba8e396..0000000000000000000000000000000000000000 --- a/files/images/devices/input-mouse.svg +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Input - Mouse - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - mouse - input - device - HID - pointer - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/media-flash.svg b/files/images/devices/media-flash.svg deleted file mode 100644 index 13f910fdd820793cc23d33a378c0dc81f989db71..0000000000000000000000000000000000000000 --- a/files/images/devices/media-flash.svg +++ /dev/null @@ -1,477 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Generic Flash Media - - - flash - memory - removable - photo - - - - - Novell, Inc., Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/media-floppy.svg b/files/images/devices/media-floppy.svg deleted file mode 100644 index 6700163d9f7f3c357a14b7a4f2b6f4fe50a396d5..0000000000000000000000000000000000000000 --- a/files/images/devices/media-floppy.svg +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media Floppy - - - Tuomas Kuosmanen - - - http://www.tango-project.org - - - save - document - store - file - io - floppy - media - - - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/media-optical.svg b/files/images/devices/media-optical.svg deleted file mode 100644 index 34aa13f56a6d25d7695fedb7cbec999e5fd4d710..0000000000000000000000000000000000000000 --- a/files/images/devices/media-optical.svg +++ /dev/null @@ -1,722 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Media CD-ROM - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - cdrom - media - removable - cd - audio - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/multimedia-player.svg b/files/images/devices/multimedia-player.svg deleted file mode 100644 index 01bf244efed8713ba3739f400e076f5c39e4809b..0000000000000000000000000000000000000000 --- a/files/images/devices/multimedia-player.svg +++ /dev/null @@ -1,693 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - http://www.tango-project.org - Multimedia PLayer - - - mp3 - player - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/network-wired.svg b/files/images/devices/network-wired.svg deleted file mode 100644 index bfa56d582764a5aad85b463e4939564f2e316ea1..0000000000000000000000000000000000000000 --- a/files/images/devices/network-wired.svg +++ /dev/null @@ -1,465 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Network - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/network-wireless.svg b/files/images/devices/network-wireless.svg deleted file mode 100644 index e52d2bbcf000e694fc2f44c7a57a094ccff94242..0000000000000000000000000000000000000000 --- a/files/images/devices/network-wireless.svg +++ /dev/null @@ -1,325 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Wi-Fi network - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/printer.svg b/files/images/devices/printer.svg deleted file mode 100644 index 4c702dc48e2f24716c7bb2d8bf19567fea12429a..0000000000000000000000000000000000000000 --- a/files/images/devices/printer.svg +++ /dev/null @@ -1,502 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Printer - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - printer - local - laser - bubblejet - inkjet - print - output - cups - lpd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/devices/video-display.svg b/files/images/devices/video-display.svg deleted file mode 100644 index 26fe3a9e8061d361096255a2f913ea4adf81ab6f..0000000000000000000000000000000000000000 --- a/files/images/devices/video-display.svg +++ /dev/null @@ -1,488 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Video Display - - - - Jakub Steiner - - - - - video - display - monitor - LCD - CRT - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/earth-singlesystem.html b/files/images/earth-singlesystem.html deleted file mode 100644 index 5091ce347d391c2ac7a7d1bf0ada9520905db346..0000000000000000000000000000000000000000 --- a/files/images/earth-singlesystem.html +++ /dev/null @@ -1,759 +0,0 @@ - - - - - - - - QGroundControl Google Earth View - - - - - - - - - -

-
-
- - - - - - - - - - - - - - - diff --git a/files/images/earth.html b/files/images/earth.html deleted file mode 100644 index 7fce73da401c865da69ffc94f01b619508346ab7..0000000000000000000000000000000000000000 --- a/files/images/earth.html +++ /dev/null @@ -1,762 +0,0 @@ - - - - - - - - QGroundControl Google Earth View - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - diff --git a/files/images/emblems/emblem-favorite.svg b/files/images/emblems/emblem-favorite.svg deleted file mode 100644 index f3fcbc2eed61eac174a04161b6dc7ca6d99f476e..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-favorite.svg +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Favourites (emblem) - 2005-02-01 - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - Andreas Nilsson <nisses.mail@home.se> - - - - - - - - - - - - - - - - - - diff --git a/files/images/emblems/emblem-important.svg b/files/images/emblems/emblem-important.svg deleted file mode 100644 index 75bec8c2c7288f1123bcd044f447a83f48472d76..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-important.svg +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - Emblem Important - - - Jakub Steiner - - - - - emblem - photos - pictures - raw - jpeg - - - - - - - - - - - - - - - - - - - diff --git a/files/images/emblems/emblem-photos.svg b/files/images/emblems/emblem-photos.svg deleted file mode 100644 index 3129efb91937cc04cbd6192b785b1586dab65a52..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-photos.svg +++ /dev/null @@ -1,554 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - Emblem Photos - - - Jakub Steiner - - - - - emblem - photos - pictures - raw - jpeg - - - - - - - - - - - - - - - - - - - - - - - - - - - 800 - - - - - - - - - diff --git a/files/images/emblems/emblem-readonly.svg b/files/images/emblems/emblem-readonly.svg deleted file mode 100644 index 6a3e477d292325642ac1cdc06112f10d7ee63aac..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-readonly.svg +++ /dev/null @@ -1,300 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Read Only Emblem - - - emblem - read-only - nowrite - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/emblems/emblem-symbolic-link.svg b/files/images/emblems/emblem-symbolic-link.svg deleted file mode 100644 index 45e040bf2b39cb71e347c271a52cfa92d5eccc99..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-symbolic-link.svg +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Symbolic Link - - - emblem - symbolic - link - pointer - io - file - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/emblems/emblem-system.svg b/files/images/emblems/emblem-system.svg deleted file mode 100644 index 8bfdf70f5b990047f2f46ab2dceec5d7f1e2eca4..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-system.svg +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Emblem System - - - emblem - system - library - crucial - base - - - - - - - - - - - - - - - - - diff --git a/files/images/emblems/emblem-unreadable.svg b/files/images/emblems/emblem-unreadable.svg deleted file mode 100644 index 282f64ec54c1b6a037be0ad4fe0a816525ad928d..0000000000000000000000000000000000000000 --- a/files/images/emblems/emblem-unreadable.svg +++ /dev/null @@ -1,359 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Unreadable - - - emblem - access - denied - unreadable - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/firmware/FW icons 2013+logos.ai b/files/images/firmware/FW icons 2013+logos.ai deleted file mode 100644 index 5214ac6900d9dc8dcdd2c29cbc3f210232fcdb6e..0000000000000000000000000000000000000000 --- a/files/images/firmware/FW icons 2013+logos.ai +++ /dev/null @@ -1,2008 +0,0 @@ -%PDF-1.5 %âãÏÓ -1 0 obj <>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - FW icons 2013+logos - - - - - Adobe Illustrator CS6 (Windows) - 2013-07-07T04:01:27+03:00 - 2013-07-07T04:01:27+03:00 - 2013-07-07T04:01:27+03:00 - - - - 256 - 68 - JPEG - /9j/4AAQSkZJRgABAgEAYABgAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAAYAAAAAEA AQBgAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgARAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9UO6Ihd2CooqzMaAAdyT gJAFlUku/Ofl6JWWO8SSY7RqgZwWI23UEUrmDk7SwjlKywOQIfSfO2jy2cC312sV7wUzBlZV5EV2 NKZVp+08RiOOVSrdEcg6p99dtfqv1oSq1uRyEqfECOm3Gtc2Pix4eK/SztKX856CrMrXAjZdiJVd DWlR8PEtT3pmGe0sI6177DHxAvtvN2i3ESukrMTQOER2CE/zELT6cMO0MUhYP2FRkCZXN7a20Qlm fjGehALE18AoJObCEDLkuTJGAspfesLiSGWF0liuf3cRJUbgPVdxUb7mm+1MxNRCQlR67ff+NkCQ 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 vWnfFV2KuxV2Kv8A/9k= - - - - - - proof:pdf - uuid:65E6390686CF11DBA6E2D887CEACB407 - xmp.did:B7D30232A0E6E21186CBB3ABC4A69F81 - uuid:6e717a34-d9cf-4b98-b305-8191aa11dbfe - - xmp.iid:B5D30232A0E6E21186CBB3ABC4A69F81 - xmp.did:B5D30232A0E6E21186CBB3ABC4A69F81 - uuid:65E6390686CF11DBA6E2D887CEACB407 - proof:pdf - - - - - saved - xmp.iid:B5D30232A0E6E21186CBB3ABC4A69F81 - 2013-07-07T03:57:28+03:00 - Adobe Illustrator CS6 (Windows) - / - - - saved - xmp.iid:B7D30232A0E6E21186CBB3ABC4A69F81 - 2013-07-07T04:01:25+03:00 - Adobe Illustrator CS6 (Windows) - / - - - - - - Web - Document - - - 1 - True - False - - 600.000000 - 300.000000 - Pixels - - - - Cyan - Magenta - Yellow - Black - - - - - - Default Swatch Group - 0 - - - - White - RGB - PROCESS - 255 - 255 - 255 - - - Black - RGB - PROCESS - 0 - 0 - 0 - - - RGB Red - RGB - PROCESS - 255 - 0 - 0 - - - RGB Yellow - RGB - PROCESS - 255 - 255 - 0 - - - RGB Green - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blue - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Grays - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - Web Color Group - 1 - - - - R=63 G=169 B=245 - RGB - PROCESS - 63 - 169 - 245 - - - R=122 G=201 B=67 - RGB - PROCESS - 122 - 201 - 67 - - - R=255 G=147 B=30 - RGB - PROCESS - 255 - 147 - 30 - - - R=255 G=29 B=37 - RGB - PROCESS - 255 - 29 - 37 - - - R=255 G=123 B=172 - RGB - PROCESS - 255 - 123 - 172 - - - R=189 G=204 B=212 - RGB - PROCESS - 189 - 204 - 212 - - - - - - - - - Adobe PDF library 10.01 - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 7 0 obj <> endobj 8 0 obj <> endobj 9 0 obj <> endobj 20 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 21 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 22 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 23 0 obj <>/Resources<>/ExtGState<>/Properties<>/Shading<>>>/TrimBox[0.0 0.0 600.0 300.0]/Type/Page>> endobj 24 0 obj <>/Resources<>/ExtGState<>/Properties<>/Shading<>>>/TrimBox[0.0 0.0 600.0 300.0]/Type/Page>> endobj 25 0 obj <>/Resources<>/ExtGState<>/Properties<>/Shading<>>>/TrimBox[0.0 0.0 600.0 300.0]/Type/Page>> endobj 43 0 obj <>stream -H‰ì—ËŽEE÷õù•“‘ïÜz@¬,d±€ýð¢düÿçFöLF°…²<Ý‘•7õôýsxzÿœÂ»ožÃñù˜=¶²B^#ÖÙ§ÃF‹«YÈ5Å’-ÜŽ\-æÒƒõלX]ÜžaqµNÚˆ£æ{\©éÂ|ã'âõÂÉÇãÇðöž¾û!…_¿`&Åd¹¯V™kL©¤TíÏ߯—úÀÑ”G©8’ã¬m¤báåÓñî§ðôÃǾ| ßþ>Ž§gŒ¼| )Ö<ô·4ý­%„//¿É“Ÿƒ…Ä? M -Ë$€G«Kjõ8R‰½UüÊqL~¥¸2'8' 8É3öÚñ'áv ¦ ÖKœËï”ÎYbëÓùW?c‡hCçÿ©/¿ÿìHá.¸‘PLÑ@Ã]¸œKŠ³[ ßG½xmȸ¤¨ c81…CCÙËÑ¢å…DÄ¡ïÌƲf1'˜a·f´Y‘h̸8+qu +¶™C‹Ùx¸6QSÛ -­wô¬Õ$ k\ŸÖ÷Å9K0s† •>‚’"•P+XÕ@þnÇN 4ÛÔ÷9»Âx/ljC€|—oÇ)ÕЅí™-¶:B»}K]*¶x“?«¼ÉØÆeœ\À1£¨…dMP ªT°€ô¦Âˆ†Ÿä<”/mèct¿;cCE ê -sƒV%f(=T‰ W%Ã7W‰ iŠÜ-bAPZFMÝW ÛAÒ¤uÊä“ŠïúE!<•ñIÕ/®'#Œ»üª÷¹.'wª?¸;aQ÷Þb~÷TÓ¡JhUŒÍyÍ;å) Xð ¦ oFÎ"‰· l¢ÓšýM‚zÅa~=°î‰“h€ ú­-edeEéÁ%LÁªžâA-C™O# ZK"*I®ƒ§ê & -4ç]r¤Å¦ªi”¢«Ãýo±£Žðwz†Å"rXûæÏK,¨tV‘L -'YÚªÛ~nY>`Ö §ƒ’øBw :QÍ·§ÔÚò§eL±¬ˆIâܸ5ÚÈ;½:1ZÓx-tœÎ‚¶ª[ -Qb+Nn4›Ê"æìÕnÛ:ˆ)bj<…òÆ\WÒ)d¡¬D|ò£ø+©YÊýKn‰ès% S>œ2¹•ïÌìôC’¥´Bˆ/‹ ;»“•JœÊœy¥b¾ª¿PQ£ÐU¤‰Ë»É rVVìJDöΗvvUß[V­â³+Pªö2°¡šã¸Ñ1Sp¿‚¹üÁYFJ­>5¥@¤©Ãë<«†[`榴glhÌE8Nþº.6ÛœÚÖR£%Ë «#©…˜\VXütp©ûä֧܌Üâ æÔIPºÜ|‹ieï §–w+0—Ò” x¥yy(¸¤d5êˆÅ°F¤ø¼g*úƶä„Ý®¦:ÆPš—æ%h'åUzÙ#íUÄ?±S?]jtD¢²Sù9ç}òȘ"Uï÷&,s¯›UކŨ¾–3KXOØ.½û$)ÃÆnÆÎWFȬêŠYWÔJß‹Â…Ì/_µ¾"ü'ÈY¢RÔ—ÞzvPj~)±TÛY“—ëí¨jþH[(ø-áDdlÍW8Ö.â×m—T“hÍ¿ØKRs­¢íèëôÕex§ºèK÷ÀûÐ0…)>0Ê‹räK½d]¦W×y·{;àS¢_h¶‚ó-4µüC|´_è¥Mæ__‰Öÿ+Ñl%êÿÅ•èo^P.›oCÛ†Q–cN»¬J@7}j×´Üjõ²¼'{¸ÁJ{nûµŽÙT_å›v‡ÔÌ»h7eC99̯JoΧ¹œL'Ìã7gSÑ–ËÉ×%Zè ‰7rÚÕíæ#ž½K¤°Iìu—#¨ø²@ÅÀ4neN3©H@]µSœFë£ú:ÀjÑ]ëLfæóÊÊ Ë]Pó'†ú*{ÅÔa׊§o\Ÿ´‚»¨WÁ]#[&heÉ>HªÓÕô±–o¬@"/ôZÖ^Ïfõµ¢ø{mt¾¢¯.èÙ}5”çÞ, ½–æ^VÇ^mÕÀ×ô -Rûî›ôâD-åñüvìé=–s‡_õR[.'Éàz)íUUzצ·Þ^Oñ]éž‚ŠMßÖ~¶²¼ôYVvGÕA¿i9ÉÙo]¤S%™ÓÞÒ=Ù”ÎÁ Z{RšjûUÖðÒ#ø, Åwæ‡Æ“¤ÉëÇÉŽðÛ÷Ï?–áK -endstream endobj 44 0 obj <> endobj 46 0 obj <> endobj 29 0 obj [/ICCBased 49 0 R] endobj 48 0 obj <> endobj 50 0 obj <> endobj 49 0 obj <>stream -H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤  - 2y­.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é @8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ -V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚óÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW= -€x¯Íú·¶Ò-Œ¯Àòæ[›Ëû0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçL­UáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.òò· åÒR´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(Š‡R¡,¨*T2B-Ð -¨ꇆ¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r 9‹\A&‘GÈ ”ˆrQ ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½Ä­ÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD ¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…åÆ’°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 -N'çÎ)Î].ÂuæJ¸rî -î÷ wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö -n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=GTB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßY Õ.©=bàá?SŒîÆ•Æ©ºÈº‘ºçõyõ‡Ø Ú† žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹­³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝ­èþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_p߶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ -¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäüå„æ æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû -endstream endobj 5 0 obj <> endobj 51 0 obj [/View/Design] endobj 52 0 obj <>>> endobj 45 0 obj <> endobj 30 0 obj <> endobj 53 0 obj <> endobj 54 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -170.0126953 -24.0030041 -24.0030041 -170.0126953 67.5302734 162.8457031 cm -BX /Sh0 sh EX Q - -endstream endobj 55 0 obj <> endobj 56 0 obj <> endobj 57 0 obj <> endobj 58 0 obj <> endobj 28 0 obj <> endobj 59 0 obj <> endobj 60 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 16.0 -%%AI8_CreatorVersion: 16.0.3 -%%For: (Max Levine) () -%%Title: (FW icons 2013.ai) -%%CreationDate: 7/7/2013 4:01 AM -%%Canvassize: 16383 -%%BoundingBox: -83 -938 3544 -20 -%%HiResBoundingBox: -82.8662 -937.7588 3543.1553 -20.6021 -%%DocumentProcessColors: Cyan Magenta Yellow Black -%AI5_FileFormat 12.0 -%AI12_BuildNumber: 691 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Registration]) -%AI3_Cropmarks: 2996 -940 3596 -640 -%AI3_TemplateBox: 790.5 -630.5 790.5 -630.5 -%AI3_TileBox: 2875.0098 -1087.5996 3716.8701 -492.5801 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 1 -%AI9_OpenToView: -1733 1529 0.25 1821 1035 18 0 0 50 116 0 0 0 1 1 0 1 1 0 1 -%AI5_OpenViewLayers: 7 -%%PageOrigin:390 -930 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 61 0 obj <>stream -%%BoundingBox: -83 -938 3544 -20 -%%HiResBoundingBox: -82.8662 -937.7588 3543.1553 -20.6021 -%AI7_Thumbnail: 128 32 8 -%%BeginData: 4352 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C45FD1DFFCFCFAEFD07FFCFFD09FFAECFFD04FFAFAFAFFD4DFFCF83FD -%14FFCFA8AEA8FD05FFAECFA7FFFFAFA8AFFFFFA8CFA7AEFFFFFFAFA8AFA9 -%FD4AFFCFFFA7A6A8FD06FFCFA8FFAEAECFCFAEFFFFFFAFFFFFCFAEFFAFFD -%04FFCFAEAECFFF84CFA9FFFFFFA8AEA7FFA8FF84AEA8FD49FFCF82827B82 -%81827BA6A7FFFFAE82825781578283ADAEFF848584FFA7CFA98584AFFFFF -%A8CFA8ADA7AF85FD04FFCFA8FFA781A8FFA9AFFD4DFFCFAEFD06FFA7AEA7 -%ADA7ADA8ADA7FFFF8BAE85A8ACA7AF84AF85FD05FFA6A6FD09FFCF82FD52 -%FFAEFD05FFA8A7A7CFFFFFFFAD82ADCFFFA98BA9FFA8FFFF8584FFFFFFA9 -%AF84AEA8ADA7CFFD04FFA9AEA8FFA7CFAEFD4EFFA7ADA7FD05FFA8CFFD05 -%FFCFAEFD05FFCFAEA7FD06FFAFA8AEAFFFA7CFAEFFFFFFA9AE83FFFFCFA7 -%CFCFFD4CFFA8AEA7AEFD13FFCFA8AEA8FD05FFA9AF84FFFFCFA7FFFFFFA9 -%AFA8AEA9FFA7AEA7CFFD65FFAEFD11FFAFAFA9FFFFFFAECFFDFCFFFD4FFF -%AEFFA8FFFFFFA8FD0FFF8485A9FD04FFAF84FD05FFAEAEA7FD07FFA8CFA8 -%FF84AFAFFD4CFFA8FFFFFFA9FFAEFFFFFFCFFD07FFCFFFAF8BA8AFFD04FF -%84AE85FD05FFA7CFFD08FFA7CFFFFFA8FD4CFFAFAFA9AE82FFA8FFFFFFA8 -%AEA8CFCFFFFFCFA8AEA8FF8485A8CFA8FFA88584FFFFFFA8AEAFFFA8FFA8 -%AEFFFFFFAFA9FFA8FFA8FFAEFD4CFFA9FFAECFFFFFA8FFFFFFAFFFFFFF82 -%CFFFFFAFFD06FFA6A7FD07FFAFFFAEAEAEFFAFFFFFFFAEAFAFCF82FFAECF -%AEFD49FFAFA8CFA8FFFFFFA8AEA8FD05FFAFAEA8FD09FFA7CFFD06FFCFFF -%A8A782FFCAFFFFFFA9AF84FFA7A6CFCFA7CFA8FD48FFAFFFAFFD05FFA8FD -%07FFA8FD0AFFAFAFFD06FFCFA7FFFFFFCFCFAEFFFFFFAFFFCFCFFFFFAFFD -%4CFFA8FD07FFAFFD05FFA8FFA8FD08FFAFA8AEA9FD05FFAECFA8AF84FFA8 -%CFFD04FFCFADA8FFA8A8A9FD64FFA9AFA9FD09FF84FFAFFD07FFAECFFFFF -%AFFD66FFA9FD0AFFAF84FDAEFFCFFD2DFFCFA7FD08FFAFA8FFAECFFD2CFF -%A8A85AA9FD12FFA8A7A7FD13FFA8A87DA8FD13FFA8FFA8CFFFFFA8FD05FF -%A8AEFFCFAEFD2DFFA87D5284FD12FF7D587CFD13FFA87D52A1FD11FFA9AE -%A8FFA8FFA8AFAFFFFFCFA7FFA8FFA8FFA8AFFD04FFA8FFFFFFA8FD24FFA8 -%52527DFFFFFFA8FD0DFFA853277DA8FD05FFA8FD0CFFA852527DFFFFFFA8 -%FD0EFFAECFCFFD05FFAECFCFFFAEFFAFAFA9FFFFFFCFCFA7CFA8FFCFFFCF -%FD23FF527D7D7DA87D7DA87DA852FD0AFFA8527D52FFFD047DA87DA8FD0B -%FF527D7D7DA87D7DA87DA852FD05FFCFA7CFCFA782FFCFCFA7FFFFFFAEFF -%A7A6A7FFAFFD05FFA782A7CFAEFFAEAEFD22FFA8527D53527D52A8525227 -%7DFD0AFF587D5352FD047D525352FD0BFFA8527D53527D52A85252287DFD -%05FFCFCFFFFFAECFA8FFCFFFFFFFAFAEA8FFA7FFAECFAEFD05FFAECFFD26 -%FFAF7D7DA8A8A87DFFFFFD04A8FD09FFA87DA8A8A8A7A8FFA8A87DA8FD0A -%FFCA7D7DA8A8A87DFFFFFD04A8FD06FFA9AEA8FFAEFFA8FD05FFA8FFA8FF -%A8FFA8FD2DFF848452A8363636FFA83684365A5A0DA9FD06FFA77D7DAD82 -%AD82A782A6A7A6FD0582FD05FFA8A752A8757C7C7C767C7C7C51A17576FD -%05FFA8FFCFCFFFAFAEFD05FFAECFFFAFA8FD2DFFA9AFA8CF60365A368436 -%0D600D360D5AFD06FFA7FF7ECF81CF82A782A6A7ADA7AD82AD7BADFD04FF -%A8CAA8FFA751767676A175A07C767C7576FD06FFAECFA7FFAFFD06FFCFA8 -%FFA9AFFD2CFFA8AFFFA8FFAFFFFF8485A8AF84AFA8A984FD05FFA8FFA8FF -%FFAEA8FFA7CFA8FFAEFFA8CFA8CFA8FFFFFFA8CFFFA8FFCAA7CAA8A7FFA8 -%A8A8A1A8A7CAFDFCFFFFFFFFFF -%%EndData - -endstream endobj 62 0 obj <>stream -%AI12_CompressedDataxœì½ëŽÉ‘&øŸßáì¤ÁT*Ü=ü¦ p.™=š•ºI=Ý‹Á Àf¥$nóR`±Z£}úµÏÌÜÜ=Î9É$™¥ÖvW:“™Ç2Â#üfn—ÏÌÿæÿøõo¿ÚóîŸï¿ -7Ëîù³¿ù›ãûûÞ½ÿùŽÉ»_¼~ýýwÞƒô“ßütçÒÍ‚«ö¿(_ë•ÿãþýw¯Þ½ý9ÿí&à¯w¸ÿ'¿zñ¿w¿¼ÿ×WoïºûÉOAÿÝ«¯ïé/wÿ¸{õòÝÛïv~qáæÅ«ŸÚƒ©¢Ó‹tMþYþþº[¾¸ÝþW|Å‹·ÿúâ»ï^ý¿÷xX(ü¬Ã»ïß~óêíïþ÷Ïw_•°ûª†² q]w_y~×ÿöê7÷ßm.ó7%%kóMŽ…o7.Æ€»nÒân=½{ùý›û·~ýþÝËûï¾;¾{ýîýw?ßÿüâíîW/þ@y±û¿ï_¿~÷§Ýáõ‹—ÿB÷쿾{õúžúàÍ‹;ç¹Ãö¿pþëÃ÷¯^ówß¿ùç{êžTÓÃ×\ë?|GÕQÍøéùë_¼!Òoï?| ×¦‡r[~ó·‡ñ]ˆÊå'ÿó7÷xÅãD=ø¿~Új~ÿîÛ7/Þÿ ÝíkMÔÜu¡–â·´.zÑïîß|ûšúœ{&×å&Ò_~ŒÚÅÔ2¾Ð—o–¥–ÝWn)ù&¢þi”LöÕZýM,KkcïHš÷úùîïÞ½½×ÞÚ¿ÿð[Óu]ù_ÿô›ï_ß¿ÿ‡·¯>P ÓªtׯÞ}sÿšîèUܽ~Á½ÄÅõÿõŠß½xÿ‡û4Þ½þþO×bO¡!ùå‹?ßcd>ä�û»wÿƒ_õ+—Cعèën¹ñqçŠw;·üÆωô(—ìÑ®ÿ¯@m¨«=%c(M£û÷ï_ýáÕÛŸ‡º`*.:ðûþÕ7}ܳßùÛsS†ïÚ¾õµ©>|¸ÛÚAsîø«a-7¿ú-}ûö›ã»7ïx ÑÜyKÓêõ»?è_ûþUñý·Ú&|MÃ÷ë÷¯Þ¢âçÏþNþV¾þõëïéûþÝ÷ßþâíïß=öa"ÿãþ%1 -ãovÿÏÿ} †À³{÷»÷/^RôÙ®!~ðíO?R!µóýýNþJ÷òGúù{ü|Ìý§ûßÓòìõöí¿Þ¿~÷íP±Q^¼ýf÷/Þû˜ÊýúÅÛïwü«û—¯þ•þò‚º¬×Þiª–¦Î·ÔI|_³yÄ zÔ£^|ø#1´û·ß|gµËÇÍË ñ1UþöÏoþùÝëWß½± -GŠýþÈ·ûpÿþíß¿•×|ÿýwÜýîÝ»×½#äýSä÷äž¿š‡ØÅ—@üë­üøâõëWxÿâÛ?¾zy©þ ·]¹÷Q³è%÷ú¥'β‡ßñ×ôœ6‰n¿yEÌïʲ~ðšßþéŇ—$öòÏï_¼uÿ‘µˆáýý«·ßЋþöûWîûx½{ó-$¤Ýoÿøâ[qåÝpe¯7~Mĸ|õÕógawx;nûþÅ7¯h!aïÞ¾}ñ†8ÿ”´s*ºH¦ýÍïß<ö?Ÿ?û/ÏŸn©àëHå@eO¥r)§L%Q‰TV.á䩸ӂr¼;Þr9ñu ²þì¸?Öc¡’¹¤c¤²tT–ÃÝá–Ê 7‡=•z(‡|HTâa¥þàËþnûü^iOÕÒ…û}Ý—}Þ§}ܯû°÷TÜ~©wõ–^ùXu_k-5×D%Öµ†ê««K¹+'z©CÙÚÈK)¹¤ËZBñÅ•¥,ùÍ¥WÞçšKÎ9åHeÍ!ûìò’îÒ-uÆ‘^rO•—”SJ1­)$ÿüYrT–xKåD >Ä}¬±P)®TBôÑÅe½[o©ë~­kYóšèëV¿:”pn©œÂ‘†ûöäìC -1¬!\Xü¿¥A8ú5¾úâ³O>úÕï½ó IôwîÖ¨«nïŠ#ÑE·>æ‚óιe¹[n1| u0•ŠÆ/ôòTÖ% ‚…¿ž?û¯-ÚGî‹õz£D¾èù³ˆ¯À½âù±wTNÔ74Q0üÔ;{êôP¦Jëʽ„~òëÂý$=u¤¾:poíégåþBEz‘•û ½†~£žã¾Cï¡ÿЃèCô"ú=Y¨'3½RòÔ[ܧèUô+zÖSß:î]ô/zßègôô‘úý½w•{½Ò7ú½oj5FAKàoŒ¾1*ø¦±áoŒÆHF ß+|cÄdÔ¨<Fc‡ñÃÊ(â[Jâo)QG·•ÕJàoŒ9¾i/<컕ž7_mŽXOœ´ÜjïÌŸîô÷;þýNçŸô8þÒª·kå¾[»oü)u/ÒÆŸôfüŽþ]¨Ã߆ŸÏ6¢ýçž FVÆ–øˆŽqá1æQ¦ÿãÙ'¬?ü”±<ú2þ+Ï™ô?Õèµ`F,:'†ŸËÎ[ú>Ù 9é,‘9räYrÐ9rÐY"3eÏs³?ÛŒIú›-óœ™f ÕtÎôâ¦ùreŽ\úÛ_½–j|â¯kü·ªÑæˆçY¶òüËž^ˆ¿ƒÏˆçŸˆÿßÑvÄÚíØ+2í•öì"ØSnÃöÚí<Ø2íFØ•ÏŸÑuâÝꎇ£,ÐigË´ÃUÚù´ëh÷»£…„Ý0”€/Ñ.Yh·ÜÓ®y$Yâ6ÝѲs´ÃzÚ]WÚeÉ…ä}>$r"™äŽª£­)Ðvˆ-4‘äRJ%9æ@òÌ©Ü–;ZÎŽ6°@ÒN¤Í8×òüIA{’†Ž$ÝÖ;êBGÍ$3E’2ÉP•d©ÉT§ýíþŽ˜…£­0ÐÖiKÏ$ÑÍ$—HB;‘¬vGrÝBŒÑ“·Ò¦žH²+$çíI„;’üw{¼#äh[ Ô5‘dÆLòc%Áí@rå‰dÌ;ÚΈÉÓ¦½’`nóóg·å¶ÞîI<’z{{G› míÔ±wÔ5wÔ´;z¹;ªüŽþlòHåBXȲÐ|‹Þ®ô¦¼A;îuéwô<ú½þÇ` 0 -–nO<4<Œ F…Æåù3›È2ræêct`IúÄ#EcE¶ðha¼i­xÏ雚ùà±&ï/šˆ¼1)ðV·ò–·êo²ýSWVŸÛw/ž¿½üdåZ>9þÍÙÏ¥}c«•¹mWÕð«â'YqºÎÁ…IpWõ\JŽúz´‰¯ZD5u&ßñ4•÷v˜MÍM“‚Û”ÛÛaô›B›†Qojìí0Þm´“¨34²uiSVÇG·)¦6²0I1§l&)1H]6I5£Ô¹IÊŒR4WÔ,ÅF©n’z¬Qjœ'þ§Ù UÔIÿS£7*Úÿã§î›jï/UÿÉÿ«Ïje(Øÿ~ãÅòþE|¢êëRoÖVôÜ–eúyèï*~Š‡ì£‚â àˆaAÖ*ÄÂ"MbO“åŽ܉ÝX^!Ö—hbVùí[·Œ -90$1$òƒ$ZøÄb÷ªøAéóŠìè -Ÿ¨|¢î –㤎®ì»UïPI`– c6H¨¸¥­*ž 5`"pŠÓ£€`4‚˜xícå 2cUÑ(ûGU늩uM©Õ^” Y»ªÌ©Ñ¦¨"‡õI½Éf¬ÉÊh8¨;gˆ E[ˆb3â,”…ÑÂÃô9ΆÉÑ°q5Tµu6<ìjX?æf0 ¼Éà—Ý ] -?—Ã7.’ÀgCºêb˜Ý î¢{¡Éi»šaùškaãX d2Ü`è_&CÿlêÝÔo†þÑÌß ý$Í|ª¡ÿ‚‘?ŽF~êÑs3ÿU#ÿUÿ`à§=7ñ_4ð›yÿô°yŸmN™÷³ÈuÓþdØÇH¥åsî'KË"/³ØÐ%æ NÜGÉ˃´LTmš÷57î§ÉË43/éK“÷ÓäešGuã~š¼lcôÄóZ‰ið†ÐøfH¶5¬ ‡ÜЀ¬²m^뉖f„ ùAù)j{Œ||ñ§[¯‚<ÿöÝëoîßî~,?ÉÎãGzvnBó2üsí_ëîÿrÁì´•I¶ÒP0‰j5y+š$F“ÄpfR²•¢2_5Ù¯‘¥œ†r»Ü±A°ñŠñÕÆ/?”0”u*QŠÊ¿ “…Ÿe(u*{gcg®\FŽìÓ‰Ñd áv7–IdtŒD‘¯0”u(bHŒTÓ@/Eåþªø•VÔ•møù×åQ Ó¸®Ãèö1yyäë&wTaaѺDßƹ#-8´¦4=¡·ü¼SL›:ýï y>æžñ¬}ăê7m—x”™3oFz¯ecŒéQ±„·mT§‘DM;”¬Z™ü¬:f{uâ5Œi“Njð‘"{`[hԌ͘:EDIÿ JÐPwÜCž{ á 1 Æͼ0Ý :bkœ¡jŽÊQFDi——ŸÊ5MÁ7u01¼ÿ¿Î{@Û „ST6Í6Ì]šY~ØFFåäœìfî–¾N-"Ðñywqm¶ÕyR¿¬ØXFÛáâÚ´š7kUcÒ.þíÓWôƒ«ú¯` >}W„ÞQ½:W°Dj9W°š¬²°Â~kþéž©`m -XmìRIž¤?¨Xp°Šõü»;³*Y¤|kùš¢ULÑ -ªhÝ1\îšÊ[Ø°}Z¯Ê–x´›O[”-.·,wš…Þ×ÊàΆwa¸ûógªvݱ.-ø#ÖÅ.”KC¸ìÜ,±ø¤i‘ŠÖ"ñ¡[N u°s$ÈA€ï#¾Etx ¬"Þ.YÊű€Õ9û‰ýéc,~Ǻ•Õz4þz.— RX³ç ýRMŠê2ËK¬y®qÖ‰—N’ÍÄ5'ÉÑø]fAÙp»‹|îùâ‚<ñ8®q•›<ñª6Utô-æÙϺP×þö™_¶×쨃 D—Y/„²—lö×å²W”ËÁl·§ ÖåÖ†¥ñ[7a^¼YŠÅnLóû ýÒÃ\³Ùž -¦‡»îcfŽe6í ÜêœOMê2ošýOºÂ®q¡‘ótŒÍeÞóÏ™xŒò¶¥]ç18ËÇ8 -Õø yÙp -ör×ølN1¬þ«|â‘\áœ<°ª.ÁUýIfÛ95Æ6 -qU÷:$Ç8CV… ²ê¶jŽZyþŒÙæJî«åjÌÊáJÌŠ¢­ž?³ø„quâœÆ(§¹2Æ®ç'DÂÚ²§uè8ËÃÇ2¢,-ƒâ³ cIªGµ8§ÏHæ0â …Ç¿ЖR:„MŠ€<¥v¨ç˜AµP_G ÎÜïa¼ s7âe³]J -`Üë‚dtΟF™ç²\sël¤’±Pp‘rÇîþŸ¿ª?‚¤+H °ä]7´ZüƒºíµŒ­Û^w|WÜ ééz…Û ©çR®„â û–pÁ&Ht£×?{Sm°:ªÅ#$ePz_Z“¼ÏBJmLÀúѲO¸‘4sRݹ²ºF¤_&Z ‹ñž³,ôÊÂÍBœfx­'ªPß.-ž“;7]bæ ñg©,!õ?ÀÆ+z„ñÔ©²¸,u|»§©ð ÆÒç›BEU%æú¥º­îҜ՗¯õ†øüÕ ;_õ‰ñMÿþå_}\¦þ6Æ1Aï¾IÉe¸¯©ëƒÏ95€&à¦èm¾sa»¤õÎ]»Q²në];½é*nö3îÖ.|ìè·5Ý„€Yÿ9ž+øÄŽÿí¿ü½Žtó:¦6ÕxM¬Àyìî#pgæMÔ®E]ß©|›˜ÄQW†°hÅIäˆÄÄže‰Ò„ ²‚È {6'ž.8¬ÙœQbN³<6ðEá®âenpÕ“$PTÐ_|zéë:x4–ÇÁäcñw^` C -ŽÙ"ÙpDMðâÍ&Ù2¥£yš†» `—GA]¶¾âMÀJ˜°ená)s 0¤Ú¡ðæ«"‘X‘“„KCM²ø+˜ÉÂ"/D]º‘zÂí‘æàÂmT|ä)›_zY$J2QZúóÄ‡Ä -z¯%sqÝÿh8У @^èö÷)K°B·† Á -Òºžøîp{æç°²†–ã­8ìƒ),‘•–¤Ô™­ÐÕrûØ‚qâ‘[–—Aôkä8Î,ÒÕš“æ÷‘•kHNÛÌ‘£•-ì¢âœ&5gž/jèáùMÙ±¬€cHIU$mËy7b7Tí¨ì !ú4öcþ6̤§rƒô[@YBNLÁÑÜÌ]Å9Wr¢eU›S9š’cÌêÖ¢QOj}ï”K¿ßÚï3Um÷ìÿTK~‹víþÒöÛøÓ0çc¬AËÅ*ˆsgž‚–³uü¦Ÿ«2ê†N ^‰Ë#Z\BÖÿÅ!ÿ·ÌÂ{ïގ“"×[\‚åÕ°ë¹Ô›’»žÔW.^—kp”ƒ¯Þ×__w1<Û5ÇS‡±>§pi›;ß‚.ý>oOg÷°'uôwôˆÜÑ[rî­=÷ø®æsÙú‰Ï??·¿´h±=zf½Š4¹ŽC sòF®ôçÙ‡4z–.{Õ/DNë;nûÄ >ïÞ³½—ûHÌ¡ {¸€ÎÍ–-ª!rWQ¸² °@pâ˜Óƒ%ŠÑ`N/"‚ ³ÃvoÛÌ,L¶Ä¸<¯¢æº=ñë4›YaN+›£m¶A¶-Rò˜eΧC]¨[å¸YŽÛåˆÑ³3~Ö´šª §)˜1´×P´àh5?ÕÁR|2Ï»>GÐåãúnW›<‰{³ÔoqãÙ¬û3v|@k°ãTã?~šðã×çg?¼`š¥4³;v|DŽ/6gïÔœ%;êmöî5¡hQ mC^´8Ìç ÈFáòâmnsûV»ì8€džWΣ#³=ëŒO¬uHÚ2áÊ^ç¾Sßµ¬€[^¼ ²qɸٖË^Jæi8‹)¹[2Ç9œÅ™Ð<<‹6ÙÄA\Ž99;ÑøNK|}’7>å´ñ8_A `¾‡âXE×ÖÐ ì‹+é0x¸úZ×Ó°ªÎl‡7•„ÒY/‡ÜÏ©_ÖP ²/ŽXXds )é…SÆÄê]Ì“Ý„® ŒOU¡&XM©:6T‹Ún83ªš‡Ä´ÖMUé†$­2fSýÜ*ä òèfwÛ”WR_‚¥¸V®HØ®’\—–8k ⪚»RÚCÛB•i5ljH‡^±åªQ[^ܨ‡·dM‘Ôrèjâ×–M»[EÛ°Í ÞpP†e9§eûmÅRò¦þ•­+{+‡^¨ÆãP:8`vèT7•0î>RÆW+q*ç_eSê…BòNÞŸ•ã•rz ˜K ¶É+.öå“ Oh’iýS”‹!Í=¨¹óp`§®Y7GÔ^¡‡ uI+PTÚ)2‡×ÜÝ ¢v/vÕˆ Ó`øYÛZ¹‡ÖË^óƒÀT¼XðsÔðçÂæ¼½Îlɦ‡¹,¬Ç|zž“'ž‹ÍƒíyFuïµä[Ôqd¨c"°ám<®@¼Öœ›“Í8‹šq$OPË4æºSoµg‰¯q n²±ç!Ou÷U×1'‡Yìz;dÃa/5IʳŸ:±4=çÀéIî;hÎw3à~í3§´?Ohÿ˜¤ö†çQæR:ûõ §sŽÏ9ÇTà%4΄ùŠÉ™äã)û:âïšœ>ãrÖ+¨ÀkˆÀKS÷ÝÝbŸ[Ìs‹vî‘ÎíMº® zÀ é‹\?Ç2÷Øð&wÉ»G-›L=ÈÐ'ÅvÍQÊ]2>MîšåF«µIEXÌÚäe[Ç™&¹Ñ"UTÔݬIκä¬MÎúd±ã+ÚFH£dZe×,›né-ÏÉ2h˜wƒžykê„Y¯hï_ÕJ±Ò·µ¾IG+k/TcJäsSÑÖ3`cTâxP‰Cv†pœÊá¬ì7åÒWáätÛrqc×£¯”4Ÿù¥²~rá­M³Ç}qù¬ø‡cà9p”Và:z?αðc4¼:iv§ÉIØÝ„§Éú7ÙþÄah.Ãæ4ÜÛ8g'éW¿ ß8šƒ¬n‚8B·ÿ©ð6Ó\dГ˜–!é:X»uv¤öàŽ,©Lù„Õª~ -ó˜Ó™J°Ç6¥i´3.4ìƒdú9¹©€´s.æ0žê4Y8H?÷B²$9ª…†Ü©¾" õ8%BÝÛ¤+›p‘¤Š‡*5f¥%Im:nƒ¯… ¶à’9P˜d=ÕØê ª^ îe½8láÃç_çñ|×"È.@þùĹÜ~NùRŒ‘4ew=ãš]ÐÀ!q)¦©~«b;,;š3Ìt±E¥|Æí_˜qøR¾ám¶áIAif†læÍ»ä΃ý{¸ÿqÈ¿,áw6ÃÀÉ”“13 ¯SŽé -±Tý¾°Ê ed„Ò^HQx=¥73¨æK^fè¬ù’Å“ÜRŽÀÙ °Yb¢#pvLTzžªôò¹hÝËÌ?MèhbHKn›Ú2øŸ5™é™Ï±›‘Ö3Õ³mKæðÀëY§ýœASŸC©/çÀ¸¦¦•ÙÆ;)æ` ¢ž“S^Næ>$§¤-b‚OÛè_NQùˆñ·„ÿÛ3ò.A§NV»Èø«Ø·Û9°Gþ“Æôpvjä¥dÓ[ÍööiYM®Àã‡1ÍÓƒšËúa1Âf0>®¦!F¶²>Ða3Â3<ž]–ýdÄb+½ä?ñ4D^ùmÔû¸ß*®z1àtfWì'Õýõ­ñcð¹­ÁZyçÉ8 fåÏéྻ³$2£™«™¸*ÇÞ/"ÒÄÕðhœ¿ÍV‚G;pÎ>ÇƩ̆È[6F>¤ æ§[69­4Ú03x¯lN:¾£e8_%ýôY*Ĩ@\I£Å‰Ÿ4’æ²ðIiq/=÷ÈTZàËSi}öéò?&Fûwší?ȘnG•Æôq«ôÑ£Š|¨O;ª4¦Ÿ Ò¹¤ê]V¶ʕë¤~ÝDüÒC_ÜÅC_Ü“©a£6lšì©…0·äæät³wMƒo”˜¡‰oõ‰m+œŽødèÇ -¥ÄlŽBé‰ÒIYÏ›(í¦w½s×Ò^9íŠÞÚFbN¤ûÃð¬'âXHÈß9ÖÎi|ëù­'hS ­hÁW> ÖúOfàÍ@ .ürÙvõuý…xí²\æ¶D§êã–ßz7Âz?2>0H½òº3G#­_Q; -¯XQ9$y8ŽÄjA0žùdf3ÕiHÞ‚`úùÞT×áäŒÞ@›u p˜ƒæÓÛéí¬ÊíI•ƒ)‚TÕK&©Ñ(ÕkÕÍÝ4ÑÍÍ@!FªËªÛÑP5M?P¿)4üY Ëz¥Ä¹¨?°—ô¨’¯F°^.åóŠ¦áz\¹àÐ;/]ÿ„åǯ]1HM~KÆUDjó,9äé¸ÏA)b&ÃF—Î -ÒK&_“Ì ŒÆè¤ùô »:?·‡ä3Îfñ‹'¡žå•X7f31‘ã™r&5ŸuÚxžn7¡e3¤5cZ3§5î…ÒýØÍ»Ý=ß=}A÷”»mḇ^Â…²^)ñ¬0w¤ÓÕrâv¥tÜ@Qû§”3'þ\ølÙ'-®ñÑ_Tãýû¨ñŽäV#¢#k!{Áš±4©ÎÑŽ=?Q]O ¥Œ õvè ´¼; ÝÓ''5™^;9wËQOiΖ ¹j.r•á|n6Qt£üh–?ç-¿xuªw.}B»õÀiÚWŸ®3Ÿ™B¶Áãˆ5qkÜÇ_)´Á]çHãOV¨Æþúåa®÷YåÇÿR5þ›8œfçP8³³äÉ:¤–!> !¨´4œ(0æz`kØUšÜÔBI­Z1 ’çëjn!qIÞ™ü´*¤ ã›ïX~ -ê&ÊÌDì,w‘ËT#;Ög£@fáNŒeŽ -…ÛXä-;”P‚ᘣð&â(òuÔìÛ.æ8öŠf^Ùý$¥1°†LìaP¬m±ñønЬFÍiÔ†fýe+Ý_‘zºPΓ… -8xy°x=¨êqe}LÑhÅ—ôØB5>úÚÿH5f²ÓÙ9.8\9ßFZ‚8Ääd*#Q5¥|<°É+±¹ËiJêÍ7Á7¶ã“aÞ:?<ùŽ]Íá[ºivu˜ûªäæä ‰¢¹9ãäغ9Ì}Õc’Ÿ?S¤aC6„aèǦ+®ð4D(ÒIÈ(BâQÛÃÓGôàxˆú6Éôˆ /¨G -¸ G -l‘‚[œà„àógŒà5„à„|H5^Á^Â> xR ÒãÊñ1EHüx¹fÐ:+|“–5þÈQ~ä(?r”9ÊÓÕø#Gù‘£üÈQ~ä(OWãäfðÔùÏÿ#{ï³_‹«ìL_kæÌ¡‘f!(9GqÆ»I<.ü¿¦KŽü'­¶ùô‘FÕ…]t7 q»É³¿ù“ÝA¥¿$wƒts»°Þ$7ä9~à’M ™*Ž>íür|Í—jØ^ÒkÈùa¤9Á_Á#xà€G°TÛ·›ØÓ&öji»ÝþtVŽŸV¬¦mÌ+¾òüœy©,sV‡Æ,£|²Øäó³“ËyʇÁ‚9ŸŒÜÞò ŒG¿ÝnË_mMcâÖ£eÄïö5!6:ó¨M#n×\ÂnìvÃÒ˜ÚQ·zš¬«;$ªìÉVËfuH²ú$×ÌL0¤"L*‡è -³­eåDãeu“Š/q­‹¿ðË(ÓÓÕ©’ââWG™Ô Ï>¢ü—V )Ô`Â@ ¸T0¼ÐçU O’Ö<}ÿ|9ë¼Ì8ýgÁfoÀyá â!¦-Hé6}X4ŸE/Á\7`]2Žî”9?£GçŸóž2g²ýË_Ú.®‡°] -¬ó›WÆ<IJ±ÜÚ!+ýˆ•8œ‹.¹ÁœØTTRÔôƒT’ ²×Ô36¯ÙÉ&iµ<+ž‘•Ð¬¥Ê.·(Pƒ_ -C2,¸áŠFx¶Ï;Î&.©«¼Â2+Î=ÅИ]\Öe=Ýæ=3ŸzF,Œ7hÙOÇü§CÍz! ‚iÙr XÔBŒ¯¬ÉÇCŒ/ÌüOM¸YŸs»ìftã² `p.ðÙ r+ñ·TÒx`ÅøÀO¹ë‹Wa¹¼ Ëö † Q¾ý¨¤1¾wÖÎ⋤wˆ6m°^»g¯º½»Ý_«íhS–þ£º¼Ã…˜Èší9W¢y®¤Üý Þ3 -Íèš1)Ð6Éì¥4³îBšYM1Ë -PWyZ‚ŒgKçc›ßtÕ'¤¢ÕT>§‰-í9Ÿ@îôä,¾GvÙ³ûsâŧùßÚ;+¤gÏÉ`¼Î¬ÅX¢›G=±’[>Q¸òIÂáà¨?O|jE¢7ñô\œ\Ù¨Aaü Ä.aò¬4Û"Í:Ä“á”ßÍÅL¼?Ð"¾ãز=ŸÞ‹Ùáì`·‹Ü£"Ø?t£G»Å¯ÿ‡~ö°Ö†óŽgÙ.Æ\gº8¨âz˱,·g9-Ü0ÂûG¾Áâ+† ¬|á¼xí–Ûrrè‹9=.‡P$kož ºëN®ˆSÂÃþŽ×¸ú–¯o3œæü(Ñ_|× Ô¬§»ÄDµ‰ª?jTý¥ýã<ªÀ(Y†DE†Bö°Ó­ÅÔ×K1õ !ôÇÞnŒ'þ²¸S‰:eHì'Ç…÷Ôðl¢?üøv_øv“šh=x¶<¸¥²å!-Ë -Qò†ÖLˆˆ&i¢Ïé©´ „ãY}O\¯Š¬ëâù`¯˜œã4ßÔ‹ÔÃ,Žf±ìœáæ/übu&SIßõIëUcÑ—ÿ[îÛõÓ96õj¿.8Í&fÃm‹n •‡hIEÚÏg÷]ø岚ðD5~© -±^Ô Ö­?€S‘ nѳÖîøœµÆ:qÊÚfº—CŠd;½Õí3¨$â˜öý¢éP°U³3UÇU‡ªim“¶9M½9•z>‘z„ÕϧQçRO9þ{ÛíùÔ/$"ÚÑÆ/ 5šáPÉ™#Í`„)…D“%бµ4lGÝè%V^¶z‚šÚÿZ5 z3Ýy ¹SÄ´g£ÍjYË7M›N3ØHjáEsB{6Ù ÐœÍ$ÞCÃ:,ypm3~s,É\•/–•-8—Júܧ/?iùômŽôç-ñ{;*“oÚiY¿ë@o‡)Áì &Ï›ñؤñü¢Z†C©ÆØ€ÇÅ|Ö×5>öŽ~ºåBËóHj@¡å»ÒR^hqC:¬´à!z– !B„4YP,1’»e”ÚsM -ä@“O -OÙëÙor>\?ù1p`ˆ×êÚ™vý,<Í"-9ÅÔ¡e;ýí4>Sl<l>Éìü¼´‹( ±ðÙl•¿À >}fë9²9³ ÙO¸¢¹)$3EÏYô`Æ"µquã»Y·&ÃûaH=Ü ï-ýðhzwea±iááÖŒð'=Pâ Æø½¥%nfù¢Æùö5œºÁ美e=+áJñ— Ÿqy©¸Ï-TãgßûT5У»+.å¶sgðþ(–~LF!ÓO‰èû¡fIA?'¡çôÚ"¬ŒaF3bn²d ±Üò9»×ÊEI÷#åh'+ 5nmˆÿö‚ôRãƒ* Õxù/— Øp§ÐhñÚîïèÅÌáñt_lÏù·¤¿¨ÆËŠÅzEQE…í×s9Sr6ÇH¹®6™*Eü¼ÓÔv69æIv‹äô—£Ì¬ÀeMÀ¿²LèY â‚Ô0–šl?+¸œSëkB}ØLË!솋æùÛ«¤(ÖB‘œš^$D– U"„$ùò¤¼=+(×þ}dÑý÷Qã¬ÚiØ·#ûÉÄÁðMãÿ]‰lا`'õÎjjeu¶)ªe£¨æIÅÕ2¨8_Ø?g_¡V(ær¦ž°¶~~øóöðæQ 2õè¬3Y¢«*X‡ ¶ÕŽ"÷®Ÿ>(|‰È/¥"È¥yžÃ²g°”«¹«æŒlGΑäÙR…³ôŽ°J5Vòo/HQWTŽ+EÎf0—s%gV‚éÒ€T£ù§å Y`úÉ~·C>˜ÅrÂ<”æšwtâötü{uˆÞ²Ü±¥\΃ƒ[v¯™ëšµÜ«­¼°ãñÈrÇ®ÇH¯ ‹¸Aaþíé¤ÆU¸<>%óÈWKW¥Ú¹_…kTź‚Ö²6t5.©¿"÷óõ¨ÆjgìµSöŽ“cöb´sö:”1©ÏB½$Z+¤Q¼ 8¦Ç0ê™y‘ÏÊ+z2Þ'à]@ÓebT€½7[£ëp¸æ_„¥ Fõ0årS|ˆ»¼Þ¸˜G‡à—Õ#Nµ¸øÊóÅùħí3uQòx®¡zÇ0o@ÏGG¢ »5ßÃ^ç‹«ÒŽ?©U%ïüz“ç7ùì*¾Ô‘/:òâ‘{£³ÝÒx]ÏÐ:[¼N;i£%óšÓ;)Ú!Ãí¯ÿoÏrè2YØ~¦×ÑþߊÐH:иÐÿ÷›ÃÑ>5/î&+. §N6xDÎtâŽÇ1Þ ‡­ŸÇX‡cÒçW;‘Þäê¡Œ]£ß¶/‘S·A€¤3ñâ‹/9·#³ÓB«Ës8éAuÄ·n“ö~úÝzÊ6­ö‡Ó,Y}Ö[K ö¨à½ÇýŒ›¿x%^ÇÇÑñ -DÇÿˆŽÿË ãS½¸‰|)jË="jëúqª0>½ hÞ£9 ‘~˜ÖýØ`98¸Ü.vxpŽ2v„0”|aÏødö;ÏÏϺ]ÏG<;;”-šÏ…aêù3=²™¢ZÒóÇÀ0¿p"¾$:â8Ÿù‰S¡>?>B‹å µÄž[#ÐÆ„óC÷óɧP^=ð‡“]Ÿ3-éë| -å|²èœîruå‰Kg‹~$…þ&Õµ44f>.&åÂÁŸ•2'…öئ9]N1ñ¨9ñ9‡)-OuœÒæ\Ò½[çSI·ç’ž®ž5û±9ñ±$ès -t5u³ùK"¶³ã4Ä,}r,Ð0W†£‡\Nô?¥y:i¼ÉäÁ/9ÔF§Ùè—8Õxý$奱ž“XkôÕóg_•%«Ç_Ñ,ûì,uƒÄâÁ¶Žp¢]Êœ@æör -™ÿç-þG9C³Ån1Z¤(]às±¶î6‰~òåt@?ΉçÄsâÇ9ñàœ˜S‚}B¶¬óÜ_Ÿ~ójÚ"Ê×÷îí¯ß¿zûáÕÛ?|õÕ¨¶yþìï¾å¿ùÛ¯_|øpÿþ-iôû×þî»Ðåõ·]­75….à5¥°óëzC>ýâÒ M®$o¼—ÿô'üü^>4çé?ýY>ÿwúýÿ!꟨+v¿ÚýÏÿµì¾yÎwý´'µŠwo@={Þî—¹½×/Ç*.ç -Þâ¿Ÿíß8½zùáÕ»·/Þÿy÷s1ˆüìðîÝkê‹_h¿|}ûÍ«ïÞ}xñò_¨÷¾þÝ«×÷_ÿæþ凟îþ3îø?ñŸµû?}/µœ¤Ñ/sÅãÈK1„:yÖ¬4[Šfˆ¤ •væåZËêîŸ^H]sOçn–hR”›@J‚vµÓ“ȶ‹õ&‘L¶#ÖpCµÅ]ÌÔŽ: ÐõŇ]Œ7Ž–àî%ßWâ ­ò²‹þ&!º–Ôˆ›•ßn­7¤@$"¤Gët·†Z’¾ÝWoâ»@Í\}–çùr=œe¹‰µÒÎ7f`¹/¯7¤ÑÐe ‘Ïô¼DÏYÖ´ ^^ „KÝj ÉzQ+yG#_͇”o µPKjoÌ øPZóÒr%g·¦œPµóÔ?Žìnu7¦]âÍjw¹x“½ºO¹ò$eRÓ¥t³ººî\¤±¥±ÐÛÒMu!íðW*¿ÕI••uÍôìp£¼‚’ÝE-âŽûÊÝCC‡r³Äâv+õ$qK"Ð{`j8f;Qo¤®ìuç²6e%ÞSñÚ4ôèbú¼"Þ_ÛÀ,êVj/+ªáåBO‰ÚV·5ÞÐ˶q î†>ÐtJÔ½ŽÚF÷RNvi¥ñ‹ôÐÕÓc¨âD£!Öûhú9ê¾]Nˆ‹/Ü•ÄÏWÜGÛh¹†è¨¢DÎå>¿hÕ$Ô†Ðê]X¨Q•&@YiÀi¸hðt¦éI[„Ž½ÙMZ¨ëi6Â)F³ -£Öº=Òô -4ñx~g/P&UÉs{¦^èCz½þƒß­:¾í÷²ÊO2ú…“â^8o&*M3ä¨ä©SáNs íðÜ‹}Ö™D/Gû|¿ˆÖ)‹C-Jh³Ù.TšË5á2­‡f7ÏžÖ}ââúe­-VѦq½ùÁ¡Gh„r N@ÓìÍL]ešš¥´Whs&ÆA 9ÒˆAf£ÅÒ/[åɽ¢FÐçé}êoH¦´ŠÜÍJSaxžô¾öZvY{q«hÓ¾Þôÿôøÿ>a/ùÅw_ÿêmÇÇwßþùëw¿ç½åoß¿ûþ[ÝL.ßò›ûoï_|¸ÿækzÈvש»Ÿüt÷Oÿxe¢ÙÓÂÐ*â<•]·KÎÔOØyˆYeLJ¤AÚŒÚγ–›\#m¨XL«ÎèNEŠx}iÖ„B›1q»TˆS¯ËÈ·Lò£ô˜#ÆãA¥)$÷ÑZEÐÆ.G©ÞU¯ûÕ-UoôØàiOw.)…dòu È­«nþýBšÐráRäÝŒR‹Èrg£â`­.àŠuwÖ7güÀ­èb4ÅSÿçy3SI‚_sÄ6W§_sؘh|ô£¶¹²S¿]h³JŒ Ïê=ÎTG[ð¬VÏ"«Ø¶ «º¿‘]ÕÞÙêÙ4m»$6“0„¥¬€ð-´¡°k‰Ù%M«½pØ"ú¥®´Ñëô´ãr÷ÆNä¨LkˆÄèH$!îìúsŒÄ¾1Ç°Í/´;ÑþW^\㪠1óDk÷p5GÜ;d]iG.´cÒZ¯´]í*í$„è}Ø2¨••m;Þ iê$2‘ -CŸ‰U8’hÓ©Õ·Œ¨9Ùyˆ5í<$#ÒÌЯ$‚@×Uˆ³,am÷u¥Víh£„–— -I´õ–Õ¶SÎ÷"¬lÊôì¸Ð;¼™©h6öpjn\Ï+L#OÌСóõóKëì\|¿ˆäd‘éµ4‚>LokTmR6wVOF¯©?­ô>}§~Y{k«hÓ¸íìs»ý·OÀýäPÚk!¹è ëר‘ƌƚpã -ÍÄ‚I ^CÚq1‚r1’³iJ —Qw&¯zE ÏÓû5ß@óßõŠH4úó” ÷µ×²ËÚ‹[E›ö ݨ*œtã,cGs'B€Æ"î)] Õ;v¢q"ñÕÛ'a˜ßÐeELŒˆ† «ºbÁè¡y–L,:bö“,}ã±ÐhY¤…Œ+ð‚'oéhKêWÑrbBÛ”@ªÐ¸(•$ ”ˆ58È©ÌùW½dª’±ƒw¶­ÀAÉ4³"®Ÿ„±Ì›T ¹S£m¡.òÛÙz¾µC)á)ëð¨Ü$£N†¨IOàpY˜sxGL)s:Å&ËŠ`¸ÐS/$7Ôe}¦Þidê@Œb¨‹DÚDëhx¨RôV{;»Ð`•m[Ú;ƒô_é&Ìð%z•ü1Ð%‚Á42éÛ$Ë/ Ðd¨q¢dÑâthŒŒÅVân¨ŒVˆÃàô§*Eo 7ž¸ýx!íÊ@ •e~ª‘íõ¬2k¶­C?ÐÂá>"…™à73! -Ë.Hw¯Eô}G*GÀ´lcSÈÔ/KEFØ*2‚>ïe›|B 4_ .[E^[eÏS‚.ûöZvY{ñVѶ}‘ö¾ÈØMt!údÜûƒ*×l[P0"ð§Í¶åVàH›m[ni§¬fÛ„8D³mAÔ]–um[¨­Bàk¶-0S~^³m9¶™™l[ÌOÁ›m‹š3»Ù¶@ð~cÚr~1PM[à¿$83m1k$=f6m1g%ùÓL[ØV¨ëV3mÙƒi Lu]KsçIŠª%™mËyZu¶l– qñfÙ2á¡Ù¶°ìJ(u¶m7Ç@¼Ül[´²ª‡OM[Xi´ÇÌ–-ZqAÿ©a‹ØMdßìZô1¬l™ìZ`gû¨Y‹ê!ÕfÕ"ÞN–g£Éëœý°Ù´* ÚÙLZ´`O-f5;3h¡!…6{=ý‹ÙžåèÁ¼Ìš=ËÑÜm7Ž¸1OáÉžå çnÎÂN»”´š9Ë/Sz2gaKcѸ™³èÉ´ƒÓ[7{ÖÙB;ßä8´É­³=˨Í…©Q"ÉÑjªržÓLÆÉž…mÍC.l9ØOaókµ4Âd_êT5CY=ÍPeO›ìYöNý²Ö–VѶq3;'1jíYªf(ðÍP£Ù©HbE¨ZÍY่¬.[äÁ½žFÍKªV¨^‘Ú©úóFs–½•]Õ^ÛêÙ´îÿWÖ¬/0$ð…• -ßLdZêl-4omø€ÙÁɧŠ±™µ¡£¬žm¡.prPÇ“À‰ûbP‹)ïßtí0æÆP/ìJ‘X¹Hgá•J ‡ÞÜ;#¨“â~îWÁöŸI!(EÝP«< »@Å:YÞ“¶>bJ•Ud`#öi h ©/¼¾ÛuÖƒN-èç}znˆÈ‹]±a¥V°N&æIJÁ*fvqx¯N ðÏ]§hÂ]Òx¡ÆPY£´§šU]ÉY½ŠVT2G{j£è­íõìÂÞ²VÙY[@AÉü™SªëÆ ݇½ùqað@†7G ÄÜ“yôÔH;B‡­—ͼ„l׈Μ‹ê&DëÅÔü„0T ß<…èÅe5ÞØ\…¬4U´³ù -ý ¢Öî,$KbSÛ¾Ì[èÙS\wò­h³ù aãíó¨ù QaÉ>u‡!Ì¥¬÷˜ËvBôšAÉ|†ÞCÙ¤-Õœ†lÓ±;°ñ<·È4݆°A±¨Úü†P\WêõÝùB½î9Ä%¼ÎÞlÈ…vs_»ïVn’ùóŒ2û‡ Õ58Tf}êìCw(‘½ØZe¶7ÛS2»‡ ­ VÙ¶­<‰žú,Rïm\‰0ùðT4§w´)g×}{0ûûeºO 5E9{1Üòv¯ ŠŽóÃ#•0»ûeöòVÓ¶•ÿAD0œN]€m²Ms쟬9â豈b3^`*„žO} }™­àL!ÉSfÅ5˜ÅB 1þ¶â$2EéabwlÕÇ‚x#û…p²n–+˜¦²5Á íVR™ôVÚ»ø©të`/‚Á[×YSÏÕ«… fº¸ ø@v²3¡.˜Éa®Ž·8B`2mUzhe…% w*P%{]² ̨“©!²ã[e+± ïÖá©ò² *¿]¿®5Àê:kéGä¢'ñYÃÝÄSbvZú,ÃݼÖð2,p8™ÛÚ‘ëÄÆoÍl¾µy¤ÁWdÚ%Äq’ym“¬¹®}l,´¹®2»®û…Í%íyU„‘ò0Ë:ÃGg56¾%êpÍÝtÝí!Vã´ˆ72¼>u¶m´Í­l„ًݯkê^W§èCgO6oÈl0°Ê l³q¯=´fgöp5ÀêÚ¶ôógƒ£Û(5ÔÈM 5ÃdSC1MØ¢3©¡`/¤;xSC¡­¹BŒ²©¡0t°érRCÍ¢ØÔP3 6&òœ|žÕP(—Ë ¬ÂP·ÒünZhû<)¡h:(lè ¾IÓ-Ù[jÚ(¡0¥å¯gZÿ5%ô¼G/X²’˜Jf%´“›ÞÈV!L3Ó-ñK -1o”P6;…Õº"öÇ^™Q&up «ÞØ+kºe꤄ö×ëZˬ²m[¯{Ç¿ÈP¿FÅàÀ&ÿõ› 9«>µ®ÍÇ™D3Ár[ ÷Ŭõlu.„·b¯Ì(úTã,J®jµ°ÊhÛ">—†§6ŠÙúÕ×jZ¬²m[@W¹Ç -f?3í¬8ˆ2@*IÍ ®ò"tøÀ¦öÌΈ€lYà÷9³{•jðš-ìCƒÍß;a®"¯PW“æ‹Q½—F³¡Ð@TìábbXV"t:L HºÒùÐJ»¥ œêtD-lWH!Ë­¹¦•½Äl„FSµysB@ËH` .ºÂxÕa.¨Yì˜ÂHm -$i‰´½8væ Îxa’7K*“ìÄ8gª‹ã…=Ô{n6©ÂNÓ„¥U›*4弈®ê9U¬Š²ƒRé#V»éØD‹É®M!˜†ÙC±ò›ÑU€,XŠ¢º çÊ£O‚“ÁMk^¼“›™3ˆMÐÔ5‘ -¬ ¼@):_‚† iu%Ž•EŸª·9(L¸Wæeožê‡Ývx=»Ðš`•mÛúJ’>6¬Ã’IÒÈ@ °æ½:… -¶…‰AcB¼Y|sÉ`†•Ë/Œ8«$ˆ\¹´¡•²;“4Ã.ÏAdͬÓ@œGÓi Ü4EÜ7…c"á.ÂÜíæÚ°“UžÁóT€u’"ó† V)BóTÄ^£ÐZêRd'çÐ$UvûÁŽÜAž—‚ 3Ë$kgÛÀâ(ï›ÚûÒ/òвhSŘFžÈbµÄ>«¥c#`«¬Žj¿/TijÕ±¦DÆfiaÄO‚=•'ü²1FÑm–E]ðº¬Ádƒl§dêÝ* &»6s.^û$ÅfÔ‰MÓôƒÚË6³"ÕlýwM%³eû”i™Óû®Š‹d • ‚6ͽN×ó‰Ît0AåC“Ø|÷fC¦ ¨¬bhIk‘Q[aüÄ"cÐ(º<¨Ç3˜k¿0‹Kx¨Ì(a4vrÄyln7T‹‚ úS•¢·ÚëÙ…Ö«lÛÖÁWHÓ˜½rX¼¥½Ù«ØTÊa,‘Ý- ðPö(EaN°JÃ…´†}œ*3Š>ÕnUrV›U·/ì®ý©¢·¶×ëZ¬²m[‡~ !ªû3é• Ò|3“±‘gö$,Í>ƒAåm³0¶ÃÆ5ôëV$! C]FiÕ[ ‘‰}ž­2ÀD²ëÏÔÏÊ@Ú«µ«z£ZEgÍì] paÄ`ð¡ùò - ZàŠ$ŒŠ#„%ti} ¹S”-Á€ã}#3 _­U6Pô©z«‘½Š„½2x)àéOUÊËöÂúzv¡5A+;oëÐŽj/.ÒƒšÇÏÈ0îA–£\0i ²|tXªë”—M’aèÂp!0ðjZ]Fi5™BÉj é•k´´?T êÂÐwkWõFµŠÎšùƒÙ î…=t3»Z⤴ Í*Exµ ÖPÌ=ЀðÐÄõÑð@­G˜ù -ïItˆµ¸>€FAV…DÕ°ðè1ñÆ60<® ÑÜI -†g£ËšÖŽ†gÁðƒÃƒã†º…ãuŒÑ2<< rú¨m]ر4Ž_X«›!ñP‰‚hBŠ?ç­˜[éå¥õ?ö…áB…¼•5J{ª©UJ.Ò›V=‹ý·ý¡bR¤¼]¿ÐÖêÚ¶ôºàIðñì«ó‚íd¢sŒ&Síˆu£¨eD‘íÃ… -~ïuAŸ©w™6þÄ°c«+«]º?4öëþvv¡5À*Û¶t`w0#ÃQ Ûñ‘†+12‰_qqÆ$-‹­Ñ©tYZ0k;1 ÈyMi¸0, -_µªŒÒžiLKÈ°îäÖ+ÃüZëøÔFQ±P^Î.³×·ªÎÚùÚ@ €¥ÅÀó)`€…9¶Z¶ˆ¬ŸØ;§!Pš†(Ô3À~H0 €ŒT³÷=jÀ(*IØ@¿®@nWË|£T7iPJfv ÉÚBXîõFcÀe»˜nÁðý‹FÒb0,…vJ‚!Ãn52ÉA‹g·‹Êĸ 0ŠJN<Ð/l1>+|¢SšyÄ.%»FN·ØÏÞ( Zì H©¿o‹€D t-v®Sì±PMe¦Å6À¸‹`&øУP}Wf,zP -6î´à 3^‹À~ƒ”HM´Òð¨ù© áØÑø-Χï¹Iºáê1œá(o6dÒìpf·ô¹éuˆ h›0 úï—i\ÀP“Qô‘z§‘›Æhu+æǨ£è­íÝú…öþVÙ¶¡ƒÖÐ@õ@·­ÎLæßÈ€åÀÞœÇÈ™N†½ ÞÊ^Dv†7ÙS•¢·*æ¸Pã†ÊŒ2?ÕÈözV™5aÛÖ¡ÀS)¯fKïdân ÷iX}’‚o¢7L¿QŒi1ö¿_ØÂze¢O}Ù¦ ’Úlze‹6¯?U)ÊìõìBkB«ì¬­‘›Ÿ$š`ɵpÃÈY˜aq~`°8‹?0\ÜùÚ¼à·UþŒ‹È -e3¼¿ÁÝ,.`ÆÅYü@¿°…ôÊ:eD¨ d…²Yew³§Î¸8{½áBkB«ì¬­óþÀ¾®7ÍÖÐÿ ïf1,ÎB úel0Td”£6ÌÖëR¼[䋳³«ìÕ­¢m¯i­Ýï C1f`22ìY´È¼&# -F=Åñ"UŠšÚ>Ð/$V7Vf}j·N™Ö˜ýP™ÊÃSG©ax½vaoB«ì¬­Ã"ù"í}›Ÿ‹UÅ°Š%(ƒ¼ÙÄ-Áð“ÅÈ-AfŒbÕÍìB§ ž^—Qô¡/›­PÉAB…‡Ê"8>U)zk{;»Î`um[:öé(­ð[.Yô’8›4ÛÉ0¨qÆ ò±ˆÏ*D\T=mUåZ†»c*ë}ª²ýF®‹à¢{eDÉLÈžÚ(úÔözýÂÖ„^Ù¶­·Z‹Ê&Ø¡°vÞlÈèeÅÛÕ5ï 0ÞNŽóª¢Ö§øñBÚ’ØjÛ+3Š>Õ¶?#—ÄðÅVÌvex¦|ÖÛÚ«µ‹†6i5ÛV>ÕÊÜæ{c…T¼}AðSo6d`¿ ÌÃtËÎÞÕi¢€p;XJ¥¯¯äýx!½„oè©Ì(úT³1Y2¢Y]+‡ Ï‚q}·vÙÐ*©hÛ̱C¿D ز:Q 9ôUcEßlÈ€Ø 5— 4ÆVþYˆoU”Øu¥‚­®Nчš×Zɤ¨9Z]°ôªÐ ÏTÊ˦<ëËÙ…Ö«kÛÒl’Â7éÈÝÙœ_ºÊ~/T©Áí ŽÑÀ˜ëgmÉŠ™ži%q2õZAfº¿Pi¯ìÄoõd‰5éOËc༽Sn!)í­µ¢³Æ`/úuETù=Jݶ$ñØO¯R1ƒƒ¸YCne½U”c» ¸Š"Ê„Td}žÞר˜*àWVU­Ãó”`cy-»¬½x«hÛ¾jQò® IÚ »µÞlÈ“yxª ø,^IŠ×(ÆåRa¼PãX™Qô©Æ唜ô>TVTéO-C*”áõìBk‚U¶mëI Û>õQŒá,·Ã:ûf&ðw6ô¾Õ/b­c9Ý7KŽTb…¯o­Ãe‹xõ†š¥=Rï4²çæìz]l4 -exf£è­íÝú…Ö,«lÛÐJLkMšóÇî¥S½"4àff”¤E ]“B'¨fnp$ÄxVçb±ºŒ¢Ï4¥RÉpÚ0¼Ó*Cª[W†‡*Aï´—³ëÚû[U›fþ0”í=‹F·Ó¢1`¶‘aÝŠ"«Q5b‹”I¸XkH¢mã<Ìu¼pa;ÉPW#è3íÆ¥MÐ…°­&¢†¾ly·~¡½¿U¶mè“mÄ.‰9æÐ73µ´¼I —2µŠQ§CtŠ -$kKÆh’€†,QCeFчšÕGÈÔuœ=¯Wæ  êOm”—í}åõú…Ú‚^צ¡½Ÿ2^î#apOèä:4¨ñ¹ã¼u[±$Ì›š½d ™Ê(´~8¼ "WJìïÌæµÐ!Þ£6oZ$<øŽïFRÏçGƒw'dÌ`¼÷ˆîF@\Âx5p7 ¶K.Û IÎaí†|i .NçÌÍÐÝ‘aúX7=náÁo¨nIõ©£ºÀ¬\¨î̈µµƒºs¥5Í(oÅt³°ÍöÉÒ krÍkê˜nÇKv«Û“‘@©Ö ªp ÓxuC”[C‡tŸ û™Ù³ÀF5º;UmêHÆÉÚPÚ°ÙmÐÜþ‰T;5Ó hÄ­¢NAÕªàë^‘â³ûóFw­v™½¸VtÖ¾x€¾ ¤â7ømPt -‚Á¶KœÛ™ƒm‚ᵉ—#¯‘¡µ9+ß`µá qšm‘¡ÚÄ;ú³uL mZØöx£¤€×áÚ¢³ÃHZ:${Ù`±—Â>º`‹S ¶‡V³E`COïèk¯oÒ ÕHˆ•Òy½r’ÂNDn~¯P[†]¯Z˺V°¢t­­~ମ£·2ǵ#­‹¾LÃYc^-Ám`Ö¹è’W”5zgÄXsŽâ´AX{‰Îå°†u:¥¯.Yr|CÇàdkàjž~ W=ÍųUŽ´ª§®#ª;U1Ðœ> -H¨“Ã>CSc®®e f 8×ëé„ÔÜ© -~î)>Ú7¨ûK)µ¿¶ÖsÖºÞ~XðbŒu§6Ð3[ËX4¢ò=MbkvuOÓ¦›ÆjŒ0C§µ[E†‡ÖÇÍ°i}§Fì/­Õœµ­7;pÈõ^~3QÈ+ŽJÃA¤|Îiƒ—†ÑÍ•á*lgì_mõ4„\îTE8·zmÒöJí"kI«dÛ´Þj¤ÛrKÝ€¤;UaÍèP7¢#yPh Áúh» NUV[[EFʪ€æ^‘bžûóFlt­v™½x«hÛ¾Þt˜—"çƒqÑFmPfZ15pF"E;Ãê•Ùý>¢¢‰Ù­>Tøf—8à«0”;UÌV‘Bíq#Ú^ª]dmiµlwÍ{÷½çd^²“Èá¼nmÑÙBÒncç6€IøÏ]öZ¥»ÈK#LÈE£6„£UÔ@ö¼ *Ùß«‘û»·ªÎùÃ(+_”Üãê‹Äe÷³ßÜ¿¸tÎéÕ›¯}ÿþåýÛ_ÿ_÷ÖÚ×ÝÏ~ñöÃ…ËñãÅ?¿¾—üòÝËá¦xí¦_¿¿ÿ×W÷úú7ïþôÝõv/D•¿ºÿn¨ªJ@>ÛkÍà#|þÛý«?üñÃcßæøîõÇßæwï¾ýš†ëîý»·>zñ/ïÿáìj‰œK¿ù?¾úæïŽìís9Ûéöí7zóó‹‡=ý÷Wÿz£žø'ëoIfnâ@|è/µ¾ÜTû•ÓAO -&ÿÔŸô‰­þÍš+Ç5ÙÞï—C‰sÑóžØêMûÉ‚s¹ýŠCÔ ½ç9´Û·C»×9?N”ÜÏȹZÂyP!¸"O<²Ÿ‚àÜ€à–XŠ „µ2°D_ØØ»híÉÉÄB†³ÛÀ¡9E‚ÁóQÔ­+»KRwe¤Ï€=v÷ k?¤ìÕÌgÈbL¨UOä``”±{&(Õï*©æbüVæóz‚j—&äfBð½urº@€•Ý±Èåœ=ȆËû/›6áÈ }YG»zž±Z•»(Uhi•ë!pö?hy«aCGòšœÜÖ*”ÈæG[Ø 8Ü ïgžzˆÕÞ¦ਡo’°Õ¯© òÐ#~G˜E‰Ûfû’„$ÉàƆ¤«I]”El «Hä•$³,_ç–@Bpz:f,"%=…#Ž“Sû/gœXà@”øx9ä°g™ZSCŒ»fHèN¶¿PY•² -î¡~ëÊ–Z‡£óVµ‘sæiäN[ª>•#à@ñflØ•šîuØ9=²ˆ† w‡ã“@ ÉäTÌ ‡®l‘ÊIT;ôÉêYcLšoQ£œÌ"À:s¥HnÁ²bh­u‚ž2îVNxW‰RËòçõ­"7e^¦ES’½/pƒzcä‹$‰'êQà¿™ -Ë5z¬Q0daè‹Â>%Iå—"üôEõç -›?]{´;WR+ŸL €Å° ÕLf@ tŒ£D&†5Yø T -ä©…q‡‹*š]¼¸W9ƒ #-p‚©œƒ(K/µcŠ2:Pb$h’üy5Ç;üÚwÒ˜et(ü”HIX9ß®¤®”¯øCCN -ŽF±þ…µV8³Šÿ„\Xá¶þd*R”ÁÜè9Ø*‰€kç¤vP‚¨[AHnˆc ¨È¹HŸ3`¨‡±˜ ¬AÒCóx£È<;,A㜯p†jÇ>î¢fEðm]`Œtí…ã‹\[HQÞ*”yš[ˆ‰@ØæEli‡a§¿´3Ùˆ¬O¤; ?ƒô>Ò1Öá¾"©UZÍ/ÛоΖj‡Å§HS–ÆÁ.ˆ\E¡ÔÖ9y^FðW¼+”øVü"P× KÜ *›P€zÄ©z‹nmD ^*ö&®„ñ6Îmšàïók8¸(±,8:[‘5~sÏ],8áÀi+Ÿv²J09ƒ à"J†½Ê8zþˆó$Àb˜ùD7³\;dœ„ù¸³3P=ÍË5I—³Û˹‡eáÈŒ$§ ­AêqF œX¨líMIrâ¾ì”ÀÏKÀ•ûÎx+2œÒÏÄÚ"ìçj]&™F¼F>ÃRÙ–'LC¤Ó»s4É<‘½)ÉËÇÛÆu¹Î$Û²®ÙSWšªÕñPòF®BB…±*ÊPiŠ?ÅXfF#Á±xìœ ƒèçˆ`lüy‘!§Õ(à/ÎCB„ ½n•!Ý~¤y¡õÇ må­+i”h)Ž«¶:Vf -ç™Îlc\‘EîDl÷ -gO©5@ÛüÅ°R/âváD`#IŽI˜<38² ¤—ƒÞŽ0Y% -Ò3 -—_¬v8ù@ÂØyGñœaÜw¡CB³‰‚§3±ȆŒ’ìÀ±-Øö¶ bÃ,âLYøX4dÁYÀ-¬õ áeÓÖœ]†#8k?.’(Fà@íwmSãU„H¸*+ž±ðŒ½H³.0¾ÏC³Xˆ¤¹¡>O”¥pP™}v%¹ŠiÌ Ñ…•å2 擃DFò+‡ ?ŽÀL’Ý ×.Š.ÆÂ&;ÛüðÇQ¸Ø¥[f+R/6GœÀŒÃ&HØ•¨¿•Ï¶T †¾e`»8L}Ñ«¥ isA` d* n[ì„âd5ÎY¤6>—sS•ŒÌÃ*[¥¶­ˆ³žMiAsÏ!P†ãÅŒµ]ò éUÞŒÅu„d“eÃm‚¬\xCegŠÝůžjk‹çÓûð9&lD¤Maé2{–Ù…<ÎÌn0^$òà\ˆ„ÝÈi˜EìåÇ&ê;ô\dJ`½ d-¨¤ÌÝV uXiñØî[$’uŠ ØR,f„ÝùEÒA Kpb}ifDt€šÙâU$n„ˆEà]ÅŽŠù\¿of{í@_àýZã âæEÚ§üÍi§'Ñ?ÖUuÃ\’eÈý„ÅXƒ18 qà Ô³«*ë[’Öª) -#ØT‚<–vE¯]†ˆ^ì`Ì’À3ØÖ÷Ñ(Hò)QÄdiˆx­€C`×_£îŒœéËói+Á„P3¼â dÖCV^cˆAuBà|ˆñËKî÷q&ÄuÕ!¶'î'© 9„b1ND´È¹·#›qYažÁnz/g2KC‹“¾$q¾Ðˆ“°©<ï¾²Ö,Gš‡²ïwvé ? D^›HzÕBiiI]Š›]T 8 ÒKˆz™cI’†Ùø\¬/‘ølÓz)˜³ÓgY§mÛ®Q‹ªJ ua©qp"°ÉgÍ*XÙEªà°A€³Í5Âc1uJ…}êŒ$²¥ÊWh†|4N˘²<œŸS‘G…¨âå$½2'Ö ‘X[HÛ`:茉áè5A$‰[4C9e9«‹h)z\SFïå~PY ¢ñ1 c⋶°³0¤Ð€ _ò’vŒ+ëU"10³àÄ¢¡M0Ž¶ {úÍ¢ ‰½ŠòX]ؚ̚cOÚƒÔkNj&ñ‚üÚYÅÖEó’â¾jQ -K•¬• zÖo+Ö;BÇm°ê ªoX<|gõ6 =”-è¤HÔ˜Ð&™ëÒ `Ì|ås“ãœÈ‘8 ÉI&[Þù,¬Ðø3"¡ùb?ΚÑaÕžm\âÏ_V!᦮ãÌ”h,ÄòóE<$‰¯è[Ü!)ãC÷ìAE°Ä$£›œ£îDWäÏÙé³8eÎKK¾¡.=>TñˆYrå$ÛÿÒ9J£"WpY%>"I -~:ŽyeŸ–e"ay>!Ö3iú]ÉÚ™•ƒ‚ 眉Zf÷±¢ ùM4W0§]Ⱥ'csäT]B–Ed°Ûm^"ʧ¯Â Ûdù„ÐJD–B}´ÍUeÅ+ -„HT%˜#«@œùÌF0͈­£ý²*V4ØgÄǬÍE š4*ì®QÒGÒþÃï)“n#wžpdá’DA柞Ðbä\bóBúù¸ZFäaçõÌV¢æ-ªnqÊ>üÂ;Au!u´dèGL'þõ° _#"È):Ùº ”È1ðŒ á\Ȋʉ@YìxξԴηòi -òŒ"·z9k A—mÁð3ø:v¤éi~‡ý1a ›‘¾`DØ$¤¥¡h`4–V9Ô‚½ Å怣ˆ…¬’½HUòL°öøs+8òE?LY®ÁGváÎjù€ÛÁ¢gräc9x©yÍäTžº–Ü6Øᙂ»MÂüq]àI¯ ý ѼAc£ÞêDı"r\b@x3sêÀgVD—‚|õ±g j}ÅúÀ̲š“¾#g>:YvÙ*ŒlËfdEø¢œƒ‚=aåÀá*AB °@ À¼X¹9‡¢…Äl òš4¬ˆ-¶hH¬Êg¤(¬òÛ­,%‚+òÌ¢2>Ì‹ó?‰ŽäIø¤Ë«ˆ“µÉDï£×Il_çé–$¥“X Ë«ïGÛ¾ÃfHXÊàÒu˜íl$Žú•KâyÙlnbvIÁLЫX’äS%%›_&Ââ‡WIéÌ65¾JàB0 z¯Ù>Yt²,Ì0%ãÌ‘è\> µ -ÿ`¬‚ycºHÔ„–uuða™XHÇ/–í” ÖÅ|°£r´÷ B™ ²yË®“U9HnáäCšMÜåBϲqU™‹÷ý•ÂÓÂ}µÝ #ÃCÍÉËâEaìL±4ȉA ìÉ—¶¢ bïGX¹UR‡/* ÁZÇf]ê¶éu^Áy²•Í0†žmÖF€—'gÀ±*Ò‘U¨Â:g'ÛE–ƒTü®» ¦9çд;E^û¾D·¹JxM³aEmoø,ÇÛ@â`ƒï*¾Rܶôœ´HQT¥2–m8¿ßÆ[œä¦rRÙò³Œ˜(4q§XÉY1PgO"2öÖ$SE¤XÒ,º¬Aé(||#丗ª[Âémpy-’ÏHÀË«¾ÅÐ)¨—¸Â›Ð -ó¦L͈/c ‹ #¬¼&áD_‚=q~‘V˜o{uy‘ˆÇöÉ3ÙçhbÑå¼ë4À®H’ -⹂QjDCr“‡{…Ï3C¾ŠöO›ö&?E–pF8áŽ|cTv&EV±©Ðñe Œ™-€Å>š¶È":Óªy°¹òÀÑU’±¢²Óë¿©ÂN ð¯œjLµUÄ®±xôÔ·u²ÈâÜ¢•‰ €ΑµA­”šVrŒ”«ØîV®x\ó &”ÁÎÈH6ÔÎ02'éÙ - ÑŽ.ø`ïmSQ2Eð:¾ÁÌ æXЙOŽTl)üÖ~>/k† ->¼Ê"³ÛpH^í=ž÷á€â*P &€‡ÀÔ¹$“^«"3œ,†íÁœÉÉ@²¤IcEŒ£3ôìml€dë('w\å2¤¼¯Ep–ÜÑò -è{~‚ -ôÐÚ’8Œdm,’}‹Q6ë`Iâd1¼RWIÌVäÄYa|8”çyŸ†ûë³(ÂÓ©ù¸®ú<°i‚émlväc‰ÄÆȹ·ùTj$‹Š_Yn¿é{ RÆ1«àØ¡!Ÿ²V‹¨S†ÇÀ‚Åï]ŵ*ûb¶a–ÃÐÀ H+§”ô€ŽBšAÆR1…Áœ*3@ô&C™¢L<ÙhëN’® qÂ>$t"°ã˹ƒsðùÉA®Lœm]ºÛncß5Fkœ³«rt¯S  #‚ùþ¸dÂîsÌÌùŒ|®0_"2±FY­‡XŸK€ƒ ¬`¼j“d·`Û$;ïyœ‹"r!‹>ý>ìy€‹-¢ë0¸2(ç]¢L0ïXÎ"H‰Ìp…[! "±;ÚT4+6`‹¬;iŸ”Oj¼s -^xàc4 vÎÎù5 -"O|‹pâÁàÅÏUîcS®€dm÷1^Ô¢™ÚYþKA½s @M` ¨‰²Y#óc¹1ê +ÎQΩWCPðÂ×öq AÅamB‚+g5`PIpýÐ>àË<+É)ÖŸ+€NÒˆæäDÜÕ»‚øk™Þ­‚Ôbdõxq//wðfâ ¤rF¼zÓ¢W,Jβ1Gæe¦ò8yZ\56SX!ážäHøYKOEÖóË6ä¼ê€tæ” -I7- ©Y> ¸kpƒã%‹ <“\ÄNC|‚‰—~~Ø¢ÿPY/b™Ž-y¬ñÉš«˜;TÒ½,©S/„­4 P”1ÆÐ/Á3B÷ÝDサ°váùà@˜8 °+³2/ˆÒ;ƒÈÖªEMû¨§èÁ_©=.õà «ø*VcAs-ÀˆÕtjÀ†óíWŽ‰IêØPµ.^r6…ñNƒ ëà;‡„(Ó§™ÚÉ+gÐg¯*M¼ñâMŠŽƒH°I“J±Ú"OŠdHDP9Ž TÞ¦|°T ˆ”Â*5›Y£W†ã:XT€½Qè|ä­Æ’ÁCí`“Zߓͤٵ\xjx6i$ìr %ê¼E<8@@åêƒnoQg²b·Ü] -AûÉWœù&ÀOw?ûí‡÷¯Þþa÷“Ãaÿòå÷o~óîà \¼=k§Ú@°`lŒ°0¼iäÂñ'niBWÖtHnp"Ëœ9†Z±=Žq —U„FîJÄF!°Ë¡=®‡p$A)Âb¹²•ŸŸÊ1@P/«Å ª=Zrê~a•À™WDùj1§—MpLÐ^Ä3Èü„Õ/ößã@`ìbâ¬ôœ‚7½ÍÉô泎Þ8™ œRf½½s‘ÍdF1%&±Tkdˆ“€PزaZŸuF£,²Â;ŠYØ>@Ncòñ - Aa•¤xfœsQÇ3s K¾é*´w^˜ÊpD0êøìtt9L ·­kì·`69…â*·1dv‚ÕILóߪpm”BÇG_fi]sJn†nð0ð_lioÂx±…—,Ãwù2f=^¬‡L@ KÒì1]ôÄÛƒ*óh Ç%ä -Ó®°-u_Þ=¢p6 ú ­&ÍÅ"™ŠG]ÄGS†“fÚáóÍ5I š­ã|0|»sq6LeÖ‘*³¬•- €tõ¤e´±…P§Eù&DE˜Wp&»C>—ÅrRƒ[6ÁeYõ\ÙÈ‚Ìu\ $èä¤qzÛ¢]U—ñ™p„|9œ³¡>]š—   -ˆ¬¼UWá‡b¯zà -ãdbph "cì*l¾Éqòq,CzÁñ.ˆi0©Çó .ã~ä£_JÎ<ãd Ɖ9Ø·phÆ¥-Oˆv¼Ì²zÉù€£Ê¹ |?) I‹°ª`ç€p°F\¤"Iì”D‹0O&À¼\lþ@HYy9.ÊŒŠ|i&(xI(Ãr¡æ‹Ãn-"P,ßñ@ˆ‡(«xÉåqkÁ“å,O€®ù­VÕ3ÖH´²™©aâË*§`;:×¼J -¶Uè}QاhE¯Ïôö"5 “lîÑû5¨ aÕpœ((§g¹À¾{h ð],ÆÙeAµ©Ì˜á2 kªi£–(ÎÏ.Š% œk¡ÍMøBªc Ä?‚Ža(dôXZ$“ÄGrƒæó`Y=4~—`q… `AŽmxìÖˑǯÇÏðÜ'†Äµñ5´$xГ—•ÁØGŒ]çaXô•×k[eb3^šyò beSú±8‰\Ž¯‚$bby¹K'ž×|W‰@å#ÿ?öÞ¤W—$IÏÛ7Ðÿá.%Õ ŸÂÝ—dŠ‚(•(‚ ! -‚P ²“d UD³¨†þ½Î;˜çdª9ܸà¦*݈øbt77{í1$ìy@å7ZÊCfMUfÊ}W¡g®«FÅ8 !ÏUVÜ îÏ· -™)•"²…œ}8Ò®Ao_†ˆ${µç-}ãÌ+6}V´ñ(MíÔ8/#0¿ÂƒØ”JhçP£)SŽêÜß‚\5 ÙþV(’¤Y¯¦’•Lc¡D%†È¯E7^m˜%QZDÓÂË,®á¡åÐ2pBÖÜT£ì’ìð`ÖQ?ÄöjÖ_j“ú(‹I(’àž§Ê‡XX^-åÒ®³߬¤Ì ’¸¸‡;Rœ”êQ¦O3bäõQƒÉþ°è¾>i9bt]ÁÿDŸbŠRËÁƒÌ­#²’ƒ.úh{¾Uq>¢x¼.ˆò¨„Æѽ -Äø1$›=ÖU$Š -ëiÁ¢bŽ£ÞÓæ×½x!¦Ijª!oøvÖ¿ÿº€eìK4ôv›y—T÷ט¨¨)†(NÍ¡QõUà+-U—†ïNµ2ì2Ä%Ö©¬Ýyå#hX O^uõQ™¥ ”̺=ü”ȤÄ:N‰²÷š/SN±W¶1.ÃÃDÒvùkÌ¿ä@e& × âdrŽ%•|…¢ÓÕAX?ؽHy}$B>:ð P´jÅZq¶I¿Æ‚Âɳ\ÄKv4-üܳH«Sо -Nš3céaQ)LŠeeãaH¸'å¨)ůä C’؈­}’Ãt¹G&í†iŽ}Ö±@ÇN\„()DåÔ„ì‚ä ÐÎgºŒJ´ª‚ÄŽq0tbœšQµ[5$ Y‡GðÒ]Åo×V“îDR쪾j5j”?„ø±ddŠWßh|3ÙfÜO$fYÃOd‘V^Nˆ°t Àd­»(Á9xï¿yþB½-èW -Å•?üá¨Ñ¿Zdöø`PgúvòؼËE{*åG(ò—«ýûX;؆FÒ?š4C4TöÈV ví×± Âr1Ü Ž§7à bw¸Ïµê#+‡‰RVš§±N†ã–•o~Îf“bµ†hd -±?îœÏØÞ€„”M}»‡xB­|%î¦+ï|ÕH@uð²ß*¬ÔXŽ`ŒçÝ äø¾f>ŽÎÞ“Ãõ³Æ³röv/pZb´þ!žëwXΖT=J!Lq–IxÄ—K>ÖÎLúC -+K­¨ (Lî0Ó)ñÂËh=C;9>Ç’Uu¹ŠãKD»Ñèyq¼+I±áòÁ¶j˜‹Ö[ª…×æ¾®¯NÉÙŠƒõÂ(F,Ôõ×sG¯Ëç9¸+¬o+Q²˜4¦ùâå·€ -о[MU^¦ôÔ<<¹Ó<Ô9|€eŠ¥±cêp¨ -¦ê¬«£çTœ†dýüPîR0?½¬l6ÇäFñøòšaCâ-Ä':ž5>¼Z‚ÌrúJÄÒ€DÁS©Na‹6òÞ’tXUŸd"ASªŽ#¢Ñº"Þ q‘áªQ­âXéAòSM·@‘.œx?;|iH€¨‡[aêbDSW©ú~[?CÿHóœÚµx†XþÒ=0¬8¬tJp4ÖM£\!Vâ÷$~ë’CþS%W ’!L½^±A\ Õ“ÅŠÁÚ-‘H/kqa¢d:Íá¿Ë ûÎÁŠêŒ(2¤Š³å²P# +ÖõI{¿.ÀÚ(c×ø#b—u®¯šõ° ú‰áž±ª!¥ùñ^¢ö÷•Æ¨ž¡«‡(:r½Ó¾_ÑßÊáo¾áI9ÀµûŒ z‘3Ž3˜S®ú‹2ªâ2Aû8I2(,K2«˜š…KÙ¨¦ì³HÉ-Ž8Ö( • •Æ†íÊÅR÷û0`yÎ?¾ ÕIŽ”Ôãž,VÌ.q–¹=g%(ƒ¯¬8‹e^p$£‡ ·¨€ÊŽŒ¬ë£¯õá²M,YèÃ1E_&b-{ј å”}¸W¯y\5n_>S:…M5=\ ì•Sâá3‰ãlÄ×™³‰xáÓ¯B8uHZDA5ýmÌ|SRþM®ÔÐw¸v«LL«f€³×`p¶>»í‚•Fi|úX‰—¼Z¡~¼mx¯ØõUf•SqoA{,­m=xxäá!XÈ’náb¿Uädb`Ž#€«œ0–µÁjrãÊ8z }íX#áèT" þ<î…4»P™ÄÍBUÂ’Ì0ú -KÇ‹f«K §ÔäfB²2üÛéÀge¡µÕì¾+*¹UÏ ü|Rpeåœ'Ï9Ø o5¢€XV¢"Emèy½ý” á*ö>²‘ úy30Òà8Kw´×/ÝKN¶—D¬£KC3&¡~qjúû³6ð£ÈouF½ö³•Ð|,&†æyè6ȼî2{{C!ùµÙ|ŽFå‹Ê—á9”gË:ÎŒ,dJ£Ø&“Œ|fŽGÑÈ1Èö0sZ[Õþª}kÜÇíÌ•Žl¶Á° ’JŽxø¹®ývØgE¬÷±…×ì þZíµúpF¯&€P/ã€öÌ"´nù ­Y­5ÐÜZñ5âQÑÆùuôäåx¸!rSìu°¾×YœÐž )R§‰%þ&DrimpœM±²Ï‚¬™·`½¦Ìš§Æé˜A™¥6Ä»9šBTQ;Çú+¼ÉŒ®¤X×pªÍ?˜Ðžù¹ä'ˆÛc ½ÆáºóµóÞ°"3Ì»‡·¼±h3«„†t½v$,3i€¨©ö²ŠŒ‚I˜` -Þ^v^Ì]kb_žùm0k…4c} š*âÁ%×™é˜ÈPŸ$ZÏ#KâË@ÉÜY¹¬¹;eÁó  *ÛçqºØ~ô‘Ñ…¤ÒÀ|æ¶8WZ@¥ä° ¾Æa•WÕø 1ÔCÐGßY…añ8ÑMË\"ƒƒu!=-ªš†Vr8Õ]uDY{uéµVãL5U•T“ÞÁ]£ìú‘]z­EF9fw±ì£Ëü«‘ó8EB(K¾N&ß´$Ÿj½Äµü¶¤³ b[³¨ø],%¤|yUÔf·(CBÀD·µÂ0µ—:X’.¤üæš>FTû8¤I®‘¯fm`a%¬&ST+ù2Œº®ä­ iRÝ¿a¼§¡6܆ ¡ýh{ijåbÇ¢”½SUá(ŽåÄMA&ÏULTဋAžnòvê¼Dšä]Û-í’^¬T£WzLµkÆ…Ù -OIú¼+ñ»ïñPßÓ•Š×gÝ, e¦yæìCÁSsb”À0 €óuÉÌg/ê‡ïî¨ýw¿ -æþO9Ú1¸ñ¯´äÿDLò—ίÚ×_Ôd|Ê©MÎìtV3¡f4O»Ée*÷Èd4ÂÅ×Ää—ífÞ ˜Œu:^ïà%c¥ûñË —ŒUÙP/ËMKÎ,ò© –Œ¿q¶ÁJÆßUˆåJæN©-R2ŽÜû\ äÌâÿ“ õ¥y‹Ìv"¾‹ð½ ÉÍ2´“‘ ‘8Ýh#’QXŠ¨M’«µ]7 ù´’\‹©»G®E㛎\‹j.Ë‚\¦¿ÑÈÌþådäj…’ÁÈÍïÅE†bTÔ^c‘<·¨È iL8¡ÈŒäÒ7™ÆÜHd -JùDDn®”Y@äV¤ \Ä…eòâúñ¦~§Ynúpž‚ê|8+ÞèáL ü .îkmîpaV-/ìp¡ö5ßÔaäò²êÁX“ ¤¶NMº¥ øy#‡‘ -ÉC ! ‡†‚Ö8üñöâ¡8Œ‰POÊNðõm¥­oØ0O߬áGªû5 ü]ï›4Œ[tp†e“ŠWƒ2 AgQÏKUíU®.Ä0HÁ˜8bù1€EžB:Ý€aäôž¾Ã(Útáluá5ó"Çš„­¥‚•¼ÑÂS-xo´0²Û(o -²0ªþÚÜ`áøûâ -‡1°ÂS±ƒÁlÅŠý„ -£¾c.êB -¯¿O¢p(Œ*(wñ„ýÊ]8áÉÒûºhÂàÀ¡ ˜ðÃå´x$[¹ÄQA†.…¸  ?¾•O4a|¯Ô·Mø7ÌsaU8ᇕÆB:ïa³o9hÂpÃðwô^}ùKøIPœŒþxo88.”05œåIsù“H ¡¸i€„1j0°r„qKé¹HøÍé c‰ó h–6Gø1Ø/0ÂÞ”qS„±FÌ* ÂPù<­C£ÑÓóÆŒó¢×a XIåCC•róƒsÓÄ`~0KÃUüM]þê°°“_8Pi}Áƒ‘üÄɪԦ Ñ‰†çöª~™ì,¶äuƒ!žDpçâ‡1°ÁPµŒ‘5˜w…|“C™^›`C»€Á1Áøw¶9‰Á0¶c’ §¸>xÁÐävÓ‚¡ - Ø°à2ͤ5+bW~ïrÇjIK‚1âq bp+R\œ`xûˆ †1BâM Ž¿/Hð2šŒ&ÑÓÌz¥>û¹ÛF@ÚŒ´¬†(ý]ˆàT]f¶ÁÐOMv‚Sq¦y‚±™(±$ábåÓœÈ/ ¢Ä8±z²õO|`(6XÐ~ìúªwÃâÓ2rùÄÆ)Í\|`!^gÙ|`iyÊg@0ÑñÅÙ¦âKvŽ$Á¤Þö4>‚i*Ö€`üS® Ìÿ`Æë" \Æ&ó -÷Y„`þS2WyÓÄòpa‚™ã;„`>!’ë.B0rVÊ™Œ›õÔQ6!X¯Óq'!˜é:$ƒL(-ÊóÌ~Œ‘^ˆ`üª€!§¤´]‚yL†z/B0ZŒf!˜²›hKDšÍ_» Áw½L{Ç Q¡.B0ɺL¯!AQ…™ƒÌ袲Ÿ'!˜ ;}W&3|4}³XÝ7›àF7 , ®Åª’ôÀ£•™ëxàÙ¢×|`nÖ7Ç™ÎÊn80‚A|ÂÁfØKµ%fãR(¨ºÙÀsú»4ðL"..20²©~â#©FsÆ"üÛ¢Àeë 9zì™ ƒÀF+sR>Qè®z[ŸƒÂ`©=h½óºóón 0!¿Êƒ[ŠðçÅž.Ú4‘0&LÆßõ½XÀ0Qc0Žð(~G0ñ¨Ÿ×N¤´HÀŠÍ;½Áò ÌÂ]ž$`mdk ˜÷¾ê¥ÿw ãý…f¿«/&QÀ4 ž(`ŒÞ(`å€Z^(`%iF_(`¥æ¸QÀ8mªÝÌú#V%G³PÔçâk¹XÀljÉC°€1êóÛ3 ˜7†Õ„' ˜VíÍf!ï`ÃÀìÅņ5ÂdÓ€`M°€i`»“L9'A†³% „€cH¡@â¢Kâ™Ç¢s3LnANÙé’‹ +A^JPÑ€‰I½Ý4`Xés ˜D -ƒLÛ4` è$¬ö 3 ˜ ç1Œ]<`XY[@àDÖk LËàO °¬È“̱0Ó@`Hë¿€Àl~e@U.’gÙU–/ô V¸º£w'ö CçMñîE¦úÛdpS5¡ÙD`þÍüDÓ -EC ¥"ÏÊQ‘‰Æߣ¼êBK6®/²ö‚šª˜$x Â/"0À–5öIÀŠž ôz‚Œê'}ÚX7D`X<ƒ LKä<78ívFó`ìH`P>z#qòÉ Ì)[)ccóàõÏD`ʵX}D`쨊¿ ãfq¡Ü7¸ßD`¼cüDœšÛŽÞ@`–QÉ@`vjS²Ø@`:ð`S]@à©ø–e〿:þÇ¢£ì#yüÆ‹;‘ £.¥à¦ë˜éÆÓ -Ï-pÀ88õÚÁ†³ÖÅfô…æߘł,Ã;o0~ÙíÀóûí“Næ cá¶ø‰>Të˜iÒô.Ì/ƦÑÆ Æ8ç<'oôi -øÅ°óŒ› ãcdïÐ6ÄÁˆ ò¸)Àì^øqóüº~ÒÛàO øu¯à Üõ(Øšcò8ù¿$éÎ66nï¢ÿÆß'üwÙÌþž˜ê Ì-k–Nòoo -Q¯Š,þ¿Oîï²ûûqþpšú;ÃNèo ƒù;yüû‰Ä_ìdp/#>ÃR—àýŽGïñ…ûí_æèý"íp OØ/Ù¯e,Öo°`õ‹p÷Çèp~a÷ _üälp~»¸»å·[¶ßî6ÁøeL<¿7â÷µ+ˆ_|ƒuöòøzt‡8 ¿Aî -À/: !»|ß7KZpâ}i+yÑ}±™‘†û¶Ä”ì÷˜¬ô…öEr©p‘}Á$cëºzçØXþ\_$‹©­1Ö·{]yQ}Ù#—¹‚ú¾Z"Ò÷5’ñ"úò\êâù²«ù¦ù¾Œ©Õæ˺7¼–fù¾Æ¬Êwãù¾N4Ç·;aó¬ïÚ_?ÚÄCU:½#º¤œ_ˆÐ¸¸‰¦Ö[ð%pŒdÞƒßK*ì”ÌŸ/ï”è½Ã’Š‹Þ;Œ -x/Dþ¬é2»8b”2žäÞÉ0rYà^,ZÙÚÕÔñ÷‰í]6S{ÐyÅ]ìÖ½q‘r1{§<ìÅRŽ_p {IŒhê&¶‘½°J<­`( Jõ¨ãy5åŸÄ^¢¨º‚šr= £ZÖÈ^nAAí‰ìÅ$Ç!=½pBËâõŽ¢Gáz±Ð8!h½<¡G[©RÅ0`wMÀ«Àå®W…PÇjç–Ü…øÂõÚ«( × G¹ÀõÒÀÒï×K¿Œ'o\/™‚×ûÅ9ùaù-J^/ƒt`']¼^ZÍ ^¯"w%/@/ãqäøŸÄ^F[ ” b/<¼ˆ½³ê͸€½¸t®÷Ø»–”ìE\-c/`¯hÊÁ!±—œv]QÃWNC½‚†Â€°WA»·-`/«‰ä?½Œ[=NªIõJ9Ä^†E˜H?‘½ËŸ4²—/¤µ b Ð †‚àDöžVÆú“Ãîì%/£)Q´‘½”ØCvÈÞDfrÎ Ùk*H¹‘½”;R±`d¯m­,d/%WJ²u*XŽ±µVÄ`« -xº³ÊÅ녜ʸpzÜpf1:®—‘©ª6‘×Ë(Ê«ÞÙB:oïªÝ5ÁéO8/šu`È 8ï;Ý,ÕlÞ×ñ¼ Í àbRAæ}' ./Q½ÝX^ö‘A‚LT^o[@yÙ{»÷›Éûº`5êÑÅ$ À¢>œ<ð‘—®kY@^V«ç¼x¼àuÁ3¼p¼ð–³N‹i;´™,ºÂx«‹%//–¡]…–tLëX_æð7ü÷ Ä ù ʵƒÃËJ¹, /бÚ\^ÔŠÒ_7„·5m ^q°Ö¾¼0b%^HxšÈ¹\˜Bâc„Þ.ÃoUÙð¶*¥ï±ëª.ü. -ëÉ0$<øÀóìEßÅ¿ðÝ6VÓcN¨ -" ùdïˆO)лͳOwq&ÅྕA†Þñ<ƒw‘ßì[¨ÆB‘.x#qp¹Óõ€ÎbD8™»(±”ëBîN¯¹;ÝÂ)ˆ»P,¼ww¡ƒeÁ§y»,*šsáv¡ÀF”ï¤íJª½X»Ó±ó@íâïøEÚeF~zv#r ];.qqvQÊÈu¬1»Ó˜Å ìNÇ/È.ÒzI"†íÂ÷Pከ•û Ù¥•ŒhK¿±§¹.È.cèðq/È.Ûª#Ä]Lÿ¦7’±›¢-ÅÉØÝÇ2c"‚±Ër„:.Æ.žx5”-ƒ÷Ξífì:]F¡ÌÔ¦êrÍŠ{X]¼ä(Uª®ò¥ÞT];@Šª®ðé]T]d8Ø\T]’Sš ¹(Aª«„‚†²Mեܡ¨ êÒPDÑE”Œ»UÅ…<$]¼å¦ê’˜6ìBï%Ý¥‹ª i¢ŠÕeîol¦.”; ‡\L]°Í˜=_›ÁË ÉÂP]¤^ø¦\P]XÙþWP]˜è9TY"† .¨.ipX½T:yÕ¥‚ð ªK6 †ê -–ôqOªËýXðsBuS³gP]”sYP]õŽú€ê2‡Æ’CuyÞUn¡º ê‘½p2uaÔ¯™©›Èªu1ui@LæbêÂJ\0u¹o‚™ºK2Õódê.ãbêr®¢Ô4˜º¼a£|†ê¬·ËP]=XP]nBÏÕ¥™O* º¢±ucvEXÍo¨.µ€qW¯æÖW£Ç‚ê’ü ÉÁ Õe„˜%ÝÕe‘(õv¦åòൟP]®zÒ6Îè¡Æe¸ˆºÛjºš˜ˆÍbžîÇüO°ø¸%U §«ªü´hºpô¹R ˜.BÇoýÄÒEŠõÈFé¾’‘/’îàé~;y·&âBå¨d€t± G÷¦‹£‹á{îÓ¡·\]ËXo†.Š%Qa„.­ˆù"‚.b£-Õ  q90æç"¼†ã@Ó ÅÊ…Ï…q©+z.bÏXì\ dèBçBˆŽê’@çâɹøÑ9—âo#ȹÚCo±Îb.f¾S2ð§…Í…Œ¼`pµ¨wé„æB3Dr¸†Û25þ2·¼lÉ~òrámd,6ŒËe×¾§,Z.°ƒõŸ`¹¥H¸°X¹¾72u] j©nR.¬Ã(·°£Aޜ܂°])Ÿ0¹eJ#KJ.r´$¡úA*œÝ1NFn5ú/¹Œ³Í¾¹ˆp…|rõ B'¢aÆã¾Ö‰]t\)“2;M%L—}Lr8ѸÍ­ ã6w/ 0n‹ÙèãB*þÁ¸pà¥5eO7aWæÛÌÄíû·³ -òâ"IŸE»%·›«8\ì˜ÃEÃ…@‡ù8Ãp1m.¤d,Ð8Q¸¸FÌæAÂÅ=`nסP*Ù½8¸ïA‹\æÓ…¹dñîàbà¾îâܨ«îkŽÂÀe¯‹2ÿvÇ[XÑnúm5,à·À³"Sgöm+ ø¹Ñ·dsäºÈ·Í§|Û,¼¼¸·0ñk©&¨ãÍ‹zÛŠú -\ÔÛêš‚€ÞÂíb»='òP ÆÆ'ò–úˆ^ñ |HÞâ6@zñna|æ»p· eɆH»-̽¤v°š`Ý–®ç@ÝâÏŒ+;I·¸'dOݼ†ÅP‡PÈ7(7æõO¬…SQIÉš]r‹ú*¢yOÆ-+r[ˆ[QÈæ"Ü"uúö›o›_U¢ÞƒÈt[üýÔyÃm321OÛl[ ÔÞ¼³ùpå·‘m‰Á·`[(Ns °-ÞÜ,>íæÚ6Ð¥žµÅô W2¨¶==‚án¨ídÍ}ÚLÛʲԴÅp¦7ê Ú6…Ñ6yZ5Ð/EM7Îo“ ÙBŠôIÐl1qò’O˜-˜kËQJeM1A -ûg’-d?mƒlÐϯή%ÂØ~¼d x,Š­Å° b ér-Ÿ¶i”º¶˜YÊØ"ëšÞOüZļçØøZ¼·ìazí‡PU4zÀk‹`×fÏß®e4^¨“\ -ÈÛ· ’ -[‹š¨'}¦Ö‚õ_´I»GU.~¨>™µ’Tô²˜µˆTºÇ·Ä.Ë‚åƒnh-âø€›Z ƒº˜„ôÅ;þþ8Õîåî‚ÖB¾åX0kƒYÈZdÒ†³›X‹Õ=ž¬Eµ8ô-Á«%½¡ÎW‹ -Ž…iµÍhÍ€Õâï>nTms>HµHY"à ZâY W>9µ­ èÁi°©à›@'Ë6¥v¤•›¥ëoÞÕv‚„þ…¨…÷3µÓÍ ¨ÌSÿºñ´ cr :-ê<óFHä!Ëu±iÇP×Ø@Ó“5³}([riŃ7ÆwHæXÚøû¢Ò†1 ´ÝÓpÐfû«5鍅x´H‡FãH -å‘vý}iñf^¤YœÒ|7gÅ7¬T¼0³ˆ@’Ežy·T–Ùuˆ1;"©iÂìpš'x²ñµ_|Yè9ů^v$ݾEíÕ,¸‹.ûè5¬Èöœj¶,eÒ£~BËv÷D_dYGÞ²Á²ýÙźKÁÜŸ]¯+ÐÝã./A•ý0¨€õ‚ʾŽ0/¦ìûD© •—á$Ên£€²¯)8‹dÚ³ªnž,…6õۢɢ¼&°zô@ª+Ân–lQNm”,Eùoôæ’˜>Úí$&rL©(ب£ "šWR›¿!²Í†ÅE~­µEí4¾²ÈhB9üX®¨¼êh ¨4¡ni>PUŒdArÍa-vlÍjmr£c+ë¢Åý†AÕä&ÇV‹/p,š&êÌú‹ŒS`c?»1?|wGé¿Rcÿ㨱ìÚEa†ÜÁØáÒÜ™èÁ7¹›×Ô†|}±2aàž†¥„†ÜlÈÊU3™Éú…¡%˜É0ÏWKM/n’ éàn4u¦‘àŸsÆy¬#3þ‰¹ÏAa€À@,±`¡nMàòGu9›ôVÛ±ëƒÄ2ÉðXêp­j^}êCa»§#‹ëJ[:™Ž9ÒXÍ$¾ðy ë"A ÕÌð)½.uw‰ÌÂ`Ü -ÒŸ»Z«ìµ%¹Hè ¼%ž‡9+f”šKOa!R€ù`2Ì`)éØ•”?šÛ+–´»™`µ‹‹†…bU„ÀÇêÍÐÜᜅ±¤Æ%0ŽÈÈÃýFWv1^z·*ëËVƒ¤°Ò+©wóÇôÝØÄžMô'\Õ]°røFÇëÂöm(5›\†N¡bÙ«‰êp”ÖÚK=ªÍݽ˜˜‚!Sþ]õw]PLZ‡Z¼7vUzÝš –·E{(D¶iy£FN ÆŠ~’ET|öjÞõâš^Ë´ëJ×q¥’´áÃ)Pÿf¶l¡¿­´P€·¡ŽÀ{¡õq¶|\ž£ù„w˜¬†®¬Ã}äcwªÃšWÞ^u7ëŽÑ"Ìowøâ%­†Ó葆Á߬Ôá/ª ¦XÒÂ1àCfa:½áU^‚šþ|»Ÿ2.¥ gl|m*uδÔɦÞî'†¨˜ßa¦Ô„f€iéü—ô0à˜gÖ—ìv–jÊa& +  c1Ò˜7R•e•ÍO×ÆÂ,͉´n¯ ‚{\4hY¢‰<¡ýÆÕ¡6žÀpÕ=óÐÏL3ˆ±0óÅáÄ"Vâ“ ä]òÉmžˆs°#;»…v…¼¸¡º;à7_¾&igêãXØFUäl %„Dð*‡Än– /|­…À=6â@! öÔvÃ|>>^~S59~4S‚´ÄÅSrkt"z ÔÐßRîáï´nÑcaq"0Ù;Š);T°ýc<J5ø‰áA¯¾ 8WúKÓJè4¦HW¾ÈäŸÄš™$-À7&!š¬åñûÖš'pX?ʯ½g~ü*rV„êíIzÛu°Ž1(jŠÙÅ• '˜‘‘įª»igÒ½Ð"•º¹v͆”@TÆ.u³¸UØÃìì6Jp@“2©Ìܙˆ¬Kìþ -€˜Ô†¶½ç83Åœ\vü­³À\CÍk¡3-eMâ¨öä‰fH^wä¡”ä¿YãÍJá%ºÝüNÜ¥ {°ÄA4 -!1¼¹DNk@ꯔúìkæD"7=ýCMþ¨^AD# ñôßý‚—ÏnQÎß=FC{ö1¸ú1Ã!°Ó% j¨ºÈ°|L -º’jØ@p¾z¨$t,eŽä‡ÿ€áñëðq[«,‰o~aLuÿ¨qî5éHòæ `9]b-. z’'Õ"xÞdfèX²‹QôúÇå€r}3Ëz`IY.éLj⎳—ﺯ-ÓûÈj‡FÌâÏa•Ìæ7Žlˬ¥z¢X÷uGöĖΧ;£Ð0“ÿ K‹¡ç ]å"Ü^ìÚÔu@+ò¤î]"5}¬Ùç[än¸+Ž-v¿®ùØq[¾Î¥š3]2 nh}¹šÍ=QŸö¸ÛI#~žMã²{›A<…\W1$$ž|M!œã³zƒtZÈhÓ®k¢'Zó•æîcÀÓ•Gp S.ƒ£¸&å~ ߸¶…^ ­›Á™©¿zX† }Ë­&_µ¨-ú†c)^Ù¤³¨À…H“±Do¯;Ö -üdÿ5üž3,d¬½î²Å=×GÅ$öÕ,Ê-ÑRd˜|÷^×Hª?ðj®Ö‚Ææ*©F+–8du×c»s¾{ÐÒÔ_3Æ -ü­ ùTv„ÍfÉurÕêÞQ×@8ü£_xÇtS ¡¦°”áÒÒöÚ¡û dQÙ#ŵÏèjTsÕ¥ï¯3^?IJƒòX½fUmgXxÏ6;(ÙÑuJÊú¼=Ü[dWwß›ÄhqÑ•ÕKi¢ÅFbÆ/i®zÛ’>2=ŒOÝy ú@*–}¡¶4ÈX\Ï­¼–X F⓺Kwöe$‡»²L1ôýÉÔOâõªˆ`Z~)ˆùb[³oÜ‹èÖbîG8[—7¾l žLŠA*FÉö²8V¥2ØbMÆy£ú(P¦7é=\kÛ>nûô—…Pý JG m¢®U8œõ}#÷ň€5=0{Õô&%É{Jù ÌMÙ»JRHL×Ãq¼R•<0û¦,\'xW;‹ÐäÇE³,?H"³ŽÆE£x?¸ÜÔÝ¥­¨]SIúbÜ$J¡MVzÓ‰ØC/ áZ4cYA×"çÈÂöÙµ º¤ÊéÕXDÅ5INnÓ…/¦YÛå=_•”- >xÔÅù<‹eA“Ø5móðÂ^mhÇÀ¹ZP9¶ø­ooèµý+$× Å0±gX[‚šÌBþ¾}®š×« & | ?Qdp¾lÞÜ8z©ûÍfH=nŒÀ›Ö6L€¥ºsâþ›â´‡ÄÏ!KÝ€<¾ª‡EX¯@HM˜ -Zêk_qà®ÑE§p¨DÂ=妮ˆŠ«R]}‘±'lº8}hCýl -׬á¸&ñÙàû¤§ÂP*C¹¹CñL‹wýp ô“¹®.ÀXÕp ¯œŠd. õ|Ø“ñ*2]ögÈ ’èáì–ûÚ K³ -^2 8k¹Bõt÷›b—2Ù³E-C㈘=ï#ÖTV ‚ÕT£’&ÆywUò˜&þaKøH’óÖ’=)¼ˆ#ɳYÍþr_‚g˜{µƒÈFÐÅï=ÆG®Žâ°àÑy¤<ôP»U%yg9‡¿‡Âɪ¿v6Þ=-3YTÈ" ñ68Í·­DÆ©¯  ¸E|á`~²ˆnbˆQþ™ôÔ´Þb§„5îÖ¯²îC™u¯,šüY7BÈëÙû‰ï;ïžzj¹½…k¬>¼èx»ÚsÁüКNùðòºFM÷ªÒÉb\éZÖ¢nµéó†+}ÓÞ>,P&ÎwyŸËŒ 4=¤n€ê%ù^~^ìµCFygBC¼ î¥†$ÈÓ¸]ˆ¬å ºe̘۳>ÊÉm8‹+PÙËÅÒ•Œ/n+ÒôÎ~|rr;| -ë+þF)´Ã€v®£ÊT*Q4Ô¸ 0SíI.!éïL± Ü›¥Æ@I%bx×'ãPYRg\0/Êð¦LÉ~ª.TYò$jH?aׂ (Çl¡] „muhØýà Ã Ç¢Svy•ÍôÑ©…õ¼Ðªþ&ƒó¥iÎÀ†ìa¦ÓÅÿWÉ(qÁŒFyO×ýáÁ·DI*üc -Z;4ÓxZ¦àÚ•xq^VÒ»™sžâGô”ÊJ2ëBw„™/™èSÉ> É'ùÈÏ(aˆcg ÙÌŠYÃŒP:, -W£çV00Áe¦½'Ð\݆ÇÂÊgòGÓ´!$d™Š[œeMʪ3jÏÜß7Æ‹»êËq¿Ù0oÅ×wÕ Q (pÒàô*fÃÒÃë‡UñpT%>LOa ¹Ÿ),IèÍuïȘ~S¨1´‡BvÅBcÂ>ÿY`Ž¢Æ -GO A*F»ùŠâQ÷P'"ÀýF:ƒXX6¸F€QÛ–|B4ž-ñÕ«ÏD1“V(=Ùm™À'X8¹CÄDpÜ벸ØÐ1A?’鰳Ͷ5XÜÛ"ùe†÷¿[†‘ö¦öY‹´,8qWŽª@iŠ2ˆ—rŒÑºTÜ¢[€]ªY»J˜ýØubßÞ'+£ÄèäŽEŽ®°,£›ê(ìÔÓ '^}ñ– Ü8Ì‚¡ÂbL¡uŒ!ѹkϼ^#vû˜ Òá­©‘íÂØÃ7…¤(<ª'$*94ÇtBe¸ÄÚ<·ñ™=ž @®™kDûCÙc„sr+ö8.Ú“X8Þª/šÉÉÇÕM¦kãïCò2Û(önK>¾4vfç­Êi:©£³J˜ó„ˆ9¢ýÞ3ÁQJÇ™4ŠÆôè{ÄVµde¯ÖÏøð’;‰gL’þ6e¡6”ßoeR -ZÀÕ €3-u]¾‘©m.Ú h¸ Ã(èºãþËÓžÑbÚÆü¦ƒC’ßG#ûPø‘¢’€ Û›Ð]™¨õî1çÁâÔsçŠù· -–cÐ,ÑÎ!aQuÛ(G,ÌòX†ô<™ªt÷q_?JÎ -{¶¿kþ†4 Yj+ñ®Â7zö\|dÄž2¯Ú`ï‡îIlØUAW©Ùƒaà K{´Í»JdºqìlÁcõWŽ|øÅVô›óøÍ* +rb3áF‰Ã*-åC¼jΉÓç6ö©† ÌaÀíÉ$D:ùD'‹ä•©1&­ÐÌ£¼ƒX?Ë|†“‹Ìêa›Ù<ñ¬wˆàx)X®qb 5§%_¬÷`y_§Ê©Æö®Ö‹ÂÌæ=¸.ÂÔ8ŒU"å²xÊFêÞ£([s -CÔ…N$P2bI­kžxóî4}¥­jøKÁæbvD¡1_<¯ªô¯ëÊ3ÎÍC5NbÖ€üÍL‡…‡øÍfŽ²–,à¤ÿ(áædö+{=ì"TkÒôÌ\TѳáΞGt°É1ÃonŒw…2F«‚È -^¸ùÀ­‚8Ù÷ÌÐ/ÞkÔ EU¬màqÁ·E¹GfèåMÜΖÎÑ¥â¶LqGÖ†/ÉWC–õ§~ô^Kë Lu­Ð?^l­3PóUÝÑœa!ì )¹ˆP0]ôª\Ò£yrƒØþzÂH¬ÌÂß,S‡Ó·è}îx;47ORÓJÆhPîð=LØ“úÖgSWvzcòüΤº8ÇÞÏ„’!ü¤´8kã‘9¤,~ÈÊ%dyè•ûŽ {„®J¯tÓä¨J©+´ 3o9jã²7PšÄžG–aƽZ€™³±šÀç)¸cC&Ò˜|=QïÚ kÊž¡ò`ý"N§`ø¡œÂbŸ«ÈMÚÎfŠ ¤)|–ËLPZ`¼m~ÜOhÚ `u>Ïè ®½Ãâ;\”ØÛe·±¨Qû¹,ŒÑ/ -Ã6WöáN„4ûä:T±˜4¢mãHW+ÝJ)”ÛDÀÂÖLŒ(Gh*%âÕGÔiDwf„±_oÈÖ°°óå3‡eìG5¨MunbF~ -%ÑÁ -‰ò ëfrH¡ d_‹jîeø|YšF‰³C-ªVŸúxñÑ8YTÝ¡-Â<•VhT.O/±Qt׳Wö´æ@ W+:]µÁÁêBWuù6̱ks¹ˆ[•WŽ)®œß<‘”q•Mp„¹²~ñJ…¹þ,Š½âµÉëƒyÌ\Õz nHQºæ/¥)Ù…¡œ{*ã3ÂMdM7ññ%G°°_ÚQ9Ö× ·kqh¼““'TH­6Úh -“N½›, ³7ô–‘1Ïg¡±ÀD¦™©<ÄÐ9†ÀÂ"øwš•H¼Ø‘ª)œ}•Àˆ–˜¾¹ç±Òq{# gÑ©Gþ¾H:•°èR™îr¯ž¤ !‰ÑN”Ñpt ‹c÷†³»€˜3œ´Ò ÞÙËYûSBšê$?›ýmƒ¯A³Rǯ¥pŒ€¦daQq°sì¿×RWÊ/HhŸWÿÔÏMq1½/ìähÐMO° ©y?|{ÅÍ´ä~³Vâ™ †W®Ûp.*xbÒr„©ï¶±ÕŽP»±UA. -£ØT?AáJ–‘ôË%8°¼ÏN•"‘ÝIÎ2KCh\Ϫ!:5 s_høÔìËÌ Dr$˜ŽÙ­Ç+âÓØ/’ÍC³-Ls@dÃÚüüX HÙMé{WǸ¨4f›ò£‡”ÆyX—?–§=C“ô)QID"Ê:ò”¿Ï$¶K/’Y¤ÏšQa,•ƒœGý;sOs½Æ:CD¨|Xöb«ë׉4}EŠ)%€Šgš¢ÒÖÆwðq"·xá6ÛˆMGôÍ}é {“ã×Ì]æåxK_kOÆ^»Î…‘VìˤåeL¬›µÁ]×x¢ƒ©³cå5üg®ÏqG¤Xš-:ë¹Á‘¦SÔ\²Ë\‰®Cãu¥ZqÃe•CPr–àf"CíU ¾—º3X‹¦ -öM.$¤aÍþ«B®8¦CY\u‡ªœ“`azv|kW)Xû@UKg91]S5û‹7±SÈ«†;"Õd)<$Ål€D1åòÝáT|CÔó®µÓÃ@ Ûbpýéˆ-,šL{¶ -³I^ÌœLkõ…â7ø¦ÖŽOd”aÙiËÞíá"™­¶e‹$\+`( íÖ.=ë‰BªÇ\)~” -¬¡øõ5³ør³ý(ÌÍ2Kåc‘ñdÈÊ^ Ô¬–²úÈAbÂQ„êËlõ*}Rª-fІêߥ6ÇbØY,éV¤~1?Ö0°î¢×®¼ãkn”‰W@oñ†/ËÅ,'# «§sñôšµ -t%ù0L$œÂépLEC^¯ ¡¾yÃÜšÔuêåwîÊ^i:úì -jžXÈh6L#SÖÒ=ý«SÉZ¯%ÿ&噌¸ÿ ýwÌOŒ¯PÒÖ5üoƒ>RêàqJỏÔÁ#aŽ…ÇkQÞ¡/x_µ©ì}p*§Ød }aé–ì§å­p©¡ Fº¢_—[ uã‚m@syðå.{yÙÝÅ`/%ÈhRS~Î3äùËù„•šÒYµÈgþƒ'A Ù#á:³J²lo9w¡wó#ÜyÎ0þQ’–ÖÍÌ/×ÙL¶D’&1äXU6G“ˆ7Ãïë[HZYíðD×Ô7)<È Œoà;¶.Žª^®wå*Õé!v°O=Nû?ðcdxTyÛ­r„ò4«*í»‚ÞÞôÌòR™Â¬’¹>\í€p%ËfñìXMj†¿ƒ9Ç›k3ù4}“DxÁCÈŠGM Îœ¿ˆR˜éá3{?$Í ÷±Iq²ÔkvÀߤºêyþF‰ÉóuÔã«óº#œßAM?¦0ì=ú9ÌCN3\¾®Å6-ouN€À)ìºÔ` V2Å–·g·Ôé0ws- n–Žµ]ôJwªÇÏ|^wVæÝt¸µ9×D‹Ôøå÷ÜÐkVÀi¸2Žh7—Û -p\³G_ˆu©âqI‰ÉDa`§s¯k¥—ôÎÃLÑ>O¯ÓgîöMîMñi×ÇùÕd%-ìN‚¾ -’ë ;[ïe© »Ôñüg5Öx«]R†ö{ -b‰ôW?ÉJ,&m§ŸjWUWTk=U®ÔYBV³R,|ú04?fÕbÏñ¦½'Òœœœ‘Hä™]¿©LW¾Ðb¾#œD]hq°hDzCÇkŒ1KâCEß#ë« ðŒ©Ô4XC~=E·DX[/þtKX¸š@ä絓´§Q®Ô5ëT€©«ëa: Œ0ÔÌ 7¨ÿa-Þ_•é&æî²»O!3PC£ä¸ µkO±Ð‹é³ìf‰ýØœ¤xlBhpg(Jˆèa拪‹úã‡Ì¤’‚oµ.e¬ b"ÅçCwŽáJŠÁ÷“äthÕOßWZ\ÆmVŸzúňi.¤ƒ¦^r¸tÖR¾I}]‹5-s²þ‡"§R}v|¢ÔþÊçßu ™úãÑ­™ålä=ø‹Y‚HUc=4óyAVˆUÃDÜ ÉÔk£Ü/Ÿå•”«’@ÂqÒ¿s Á$=´ˆÉJ¿Rä‹•õšÄ…›@@öá¿q݈`ô zâ7^|Xv0ñ™‡™’‰v‹ˆÛ’‡bÁÞu™_×¢C”º”z-¿,¾ÿJ„u&¢B ½èª(e·¢&š·˜€6Êí³s£SAmÒZÄf7Gf« ÈÕPU¢"ŠÔ¢Âèµß‘<h¥O¸³Ûj«ô—º}µ„¦‚É ®&ÓLAJˆ8û½cW§‰õ ²1;9^Z¤¦±=8¯²/•,~“¥iø%n$¥Ý>ÕaÅ >ïg÷wxìB”†B’¤€ tWå¬õµH½v¹X%ä¦òˆª±A¯¸Bh”;ú«åJØ¥dØji^ç†éË3fËÄC`X¼kÈw`®]¡\EÐÓ£Ø$·á+åZ:*åÏ"·É.~‚ñXÈ¡©É\7,Bvˆ â<µÒÏ(öJñªûÃÊÕçMy#U@Ï:4IÄXs‰(Zx‰MÖŽ -ÕÒÉÏ9|‡ÀBÅ ,<áÜ•^»ªGÖ5¡*Pn ·À 1lØÿ&-i -b‡zØ=`7Ù¹`Tæ‘8Ô4òãE†ÂqÙª¯ŸW*}†‘Sšáñ÷Z‚¯DÅ«r©Iò HZ0bÇFk\XZ®º@¨Ì!ü6«Þ• ¢s9â9±nª¸½Ðb›fdÕ`ùµç5LÔ îªL¶uOÝOw™l­1™›ŒÒÎÂdu¹àªfh2×W€EÙ^OHÙ´,ÙW*'­GR.žá¦X&ʦÌP4ðŽ(į÷”¸yŸeç –¯M¥cL÷ïi˜VYì%t¡Bkn÷E]+ÊYY ?v»t&Ï×Tßs ðŠ@¯†ªaÙºµž°HðQ)»Rô9ˆv_–‚%‹´§tW³2-Ìê:žK@ ‘&4©ï ýuÜÄÊcïqÑÇ’hñqÙ4­ ©–Måó…~ÌQ›%l¹çi=–qø i@ «S«MÉ»“ÌÂÕ¡¯æÒ41“üImñ8£ã+þG¤LÓò†¤V‚ß[Í7È•à †QJ:-MVVË…ùxÆ|éé,U»ŠîËvKÐД³ú È=Ò¹ -lzCZ8<áðKûÂÛÀÖð׫œæ0Î)±‘ ¡Và‰ ïÒŽ Ùoœ%NÓJ‰eAìíØõ:¾ÇôÉ!_B©â¬´³¢a±·9”«Ø2£Ð”àiõüû9ÔƒËÌ+æÜ;ueÒAë™ùÌÇ€æ⪫×Û%Hh ªaÞNu1p Áõ×Jz6“áøÑî]wT¼î’LÄ’ÙuˆU“ A+k¦3VzsÉÒV¸SÈ«@YƒÊÅäÌÆÆ{¿fù¶Á½~õGžšf`ÃÇ”gÿcü¢µSSÞRæwa1ïL*(ìy0ãÂ9šCd%\‹ˆì­œu§”Lc3Š%,Bæ )ì¶*|öÈ~øîNßå ÿÇqУ¸âÆ # —ºòìŒh"œÎ€!舣3¢r1ÐËtZ8è@þÏWm¬%¿ÌÞE¬,3=ú’-þ9€lÇtáÏóT2wÑÏÉä¡·5üÓãÐÅ>ç~Iõ: âðÝÞ©.yª†ïâž×'¸§Æž#þÄtEPϛŀ7ô<Ú-æ9[8÷JiPµ²î&žo«çÕXï H’9.Ü90RµˆmÎÙ»­ì¼Zâp³Î™ͪèæ`RC¤ó3ô :‡ÊW$n؃æ¸0笋¨B2/¢Aë®bÈ9JÌ9ô㜲‹R>!Λ«©á}ø²kЮ¨°ó⛳WŸ!èÔkã(yl¸y³ñf›Â×ÊF›#Î¥FŒ&›c1Ù}ŽèË\uy7לµxJ2±ùŽP½Psô=*–¸q.Iøéª|b ³:éÑœ“ÿ+Î9欖4@žÁ¨ª¼qæQ¸xæC[0sþ9õˆ6jÅvJPe.$¶P$™÷*ÎÌÅ1ïŽÄ,ŒùÇ∩¸E1Ÿî yC̱ê`?Í`˜Oµ› ‚ùLZrÞs -´]3›¯`Ð˧›Vßðòñ:iìrÐ6^Ö.ïS¬³›\>‡zg/p9«ñJVéËì "4åE†gc‘*¥´ˆ÷ÈæŠ>np9,J±\àòD7<…b–ÝM¢QP€Ëi‘Xv\x½×kë—cUþ„0©4¬Ÿ˜½°å¨‚dš/°åhâí[Î&( ô]Ür™‡jƒ•9z’+ºQ€kB/n9Ì]Eæ–³AÌëÂOï¨øìÅ-Ÿ†ó/lyt” -j9ŠUš—†ZŽÉd:dÀX·i‹X>GèïN`9¬LͯA“žó·…+Çù4Iwõ7º‰+.dVùì&¿†{vç?.R9ÐL2¨|4¦UÎ&¦nHùëÖ]‹Qަܽ…(otrhÍrSÊ9៼IezÓÉ›£€Á&oÃø×@“ð~k僑¢¶=ÀäÑ;6¸änêËÚTr&H(¼4”ütn0É[÷Ûu!É‘—R$ÌÉÙÖÃÙ39ózñÈk”ÂŽ¼>¡+µ²%£Í%,F^6Z0òõ\Á"‡¡·þíF‘DÎät×WFQ3Ë„8@äX%kæ¸ú@‚SUSÆó#ÈüÂçw—R‘Bž9ÑÉ#” è³ã¸¸V­Ã1!ûd£Lˆ Ò@AÓÌ'Žã€œ¼™G‘|rYZ~¼5g'/ú8Mäÿ|¿Ç\o ÅÙù1}"·rÊk ˃;݉oì8Ò?Ê8›:^gÄå G‚ÑÕ‹9¬9ßÌ㬚1›a6óŽ?_t0Qâï(f:q NØx 9A°Æq½œK5¾ 'iœ5£5mÒx{\Ê ñµ4g¼E#³àŒ·(§ Ìxs÷Ä‹2ΪنNJR9$3Ʊ’Ã'b'Å{„q :Xå€ñVü¼ðâ0êÛ4_Í+Æ‹cl¢4袋“÷Bô²áâ‚2èpqОTäu²Å‘AÖÈn´xmVèY9Ó‡Xœ"—G[yTEV¼Ä\|QÅ¡8™â5D/™¿ˆâ%ô0G?[Õvš'ηÖHlœxF1NÒ~"䨻ãb‰ç©ÐÔE/̵JO¿£0ᨊ%ÆŒK1lùĈƒ8 ø½)ây Ä 4¿Ý ñש¸0>\§fA0¼ºF²ÕM-‚8WxmÄߨq?üqñƇ»ŠwÓÃgÈ<£ÍŸÙá‹þüÅ ‡–>aÃ1O¢)õ†W6úUå€êB«RË3|0þݾmfø# ÙF†Ogwnbøtr2ˆá\ýl\8þì#}šî³ï ÎÍJ>Xáh>jœøÁ -wXp¡Â_ßoRø2\ ðe Nøt¨#èß I¦¾ :Íæ¨ïÚÌþôb„oÃ_Æ „çU€ðx-/>8J )Òƒc©ÅþRAýLõÇÈ­Àƒ øPóƃãg«îþžYÊƃÿ†YÀú¦Íï¡cÛ÷8?å¥à ðà&q,:xäøÇ‚ù’`ƒO:¸í[°Á1<òíþq&ƒ?üÑjíœXÞœ¢÷\dp¸PuŒÀ\|Ì–ÐØÐu¡Áå:HÇ´Éà((™rƒÁq¿’õ—> Šëo,x6ÖaQÁKVÕÆ‚‚c0“êd‚Cäòº—†tè +QZ³ºè‚ûZa*±»ªû*X.8ŽVš\.Ô -@LðZg Ñqs„ìbÙ|Ý…ØÖ]/‹$ÉçíùÛ _Öà€CÀÁ -ìÀ€ó>¥ú‰NˆLé^\ŸµàØ‚‘æ +NÀ¡šxúØp\€5» -Á+èßeŠ,½àß”éÑ=Øß5dEþFÁWOôº‰ê üJôU¥õ}Ìó ¤ì2\Ôïm5ô»MËE‚ùýÅß¾:&C Oæ·ú2õw3¿©ùcAc0¿©xdiÀ‰üÆ·ËÐÂB~c;ŸC%þ4CH'ñ›Öt`»õ®ç¹€ß‰Åº­~ãe#áØóU¿ù÷0Xú9ðù]ZÛü†¶S)Î~KLU>¿‰Ð`ém¿)eü2ˆß(1Ï¿iûÙÄo>§þ¶Mü¦ä†©À ùM™M+c!¿©°a +ßÜ$™’~@üPTÀÐt ¿©Â}Z]Èo(ˆ„’¼ß”ñ‹áläw"‘™¥F~ãªøB~S¾ÍXl ¿a!Mb1¿E£2íüè*™Ôgk!¿¡žRB3ßTB3Î}!¿)“c(7ßlÂ0®‘ß4ð¿ßؽ›øMÖ|‹ø k*oä7.KLî@~C‘®{ ¿)§R^øD~³gs|V,RgXLyJ#¿èhÆ -¯ê„å,à÷lRñ.Þ71ªEèÁûž-ê¾ üæV}ã¾q2W/Ú÷ñ€ ûf81æ€}ãJ¨]»aߨ‹Š°>Yß3™€¨o2’U’´@߈»ª_¦9ßÐç¨üÛ˜o -v²BÚ›òžðêjÈ7 ¨šñýª1àñˆ ªºMøfÔ‘JŒ |³¡<әᛗ%S”{Ü,l¾QüÖþí|O—/¾7›¸;ßBú$;Ì‹½½áÞ0×€“íã(ø,´7Ï?’.²w¢Ž"m¡îC« ´·æ÷ÎÜhoùŠ;Ù² ÑS°ü ŽúÛf׌›íM ZüÛ›† ‚o¶7Í,Ô -¶7¢Ž yÇgBmŽo7ÛÁmj Û›%*ƒê”óó¹àÞ,$¡V;àÞ(Ì<-àÞ¼KªC=áÞIà€ùmÁ½ÙÙÿ€{³¦ã1}gýY\³¸à€{ÓÂàRÀ½iQÎîM•­$V¦{³©TsÕ©T$ o¼®±Üxo)oÉÁ7Þ›xoÌUê$á½éÿ¨)¦ñÞ[¢xoXj@º7Þf9'Æ{ÓÀhà½iQ²ïÍ8kgM÷V ˜DHBðŠCÞøæÒŠ’– |'¢šÝÜ@XDg8 ß2ó[6á›S¯ß0¨_ÇEøfW -,‚ð­Åƒ™ßZP—¾‰ø›ð­B²&àP]S±?ˆo®u†™ ñMAºZñMͺ>#¾iÑ×p2¾i¦F$ß* Èf)T¯ß …8ß*е(‡Û2Ý]€ˆï%ð¿ßô!Ù<߸oRGâ[±‘Ï„oHT†lÄ7ƒ#œƒñ­pÉkÊb|§Ý¾ÆŒoG[Æf|3B3‡²õãJåÓã›.£Òí±êÅüñE„´/Áød±‘*e‰ø&/¹5÷F|3¾¬FF|ã#Ë#ß©EÏå“ðÍR2ªƒ‚ðÍö‘’7™ðM÷?§ú‰ð–’!ß²l¾÷×uñ¦À¸üDÃâ{#ÉÜaà½A"°Ròg$uïâ{ÓLé³ùÞø)ìð ‹Tøàf)¶Í÷¦AÙI¾eaÆí|ã7Ù§,øÞÈ2xo¤¤¸ñÞLˆ²b+øÞóµ‚3¨Ýù" ·éÞ½D~ØÖ7ÚUÛûE™½ã¾í ëcô6ç„42Øzñ¡ÈØ^°+Õä¦z¿QŽ›½Õ´‹éýº©úBz÷ä„Y€ºÑ±Ðô&{ÖmeÓõ&!RrêF -^ÚÌéî^éÞ˜n6ŸuSº_-Ü£û ê…èæYÕ èÆ}fñÜø»Ø!nÇN‚)œû r°¹Ãl2÷)Ús÷H_…{ –K•<›Ê¡0îm5/&÷x-¼_›M3øƒÈ b3h{¹‰uó¸ax}+‰ã¡r¹pÜ#àAãFyÓƒãuœ]\O÷dÔ¼l7VÜL»Ľþ¾8ÜÛj 7x9Ñ«š¥l£˜ŸxA¸g0©‚Á娂`p' -ùÝíp3¸aÖâ'z” ‘sº²ýX[™­½{ACŠEX ¸aé¬7·á§0¸1Çjî÷¬Ä8€ë!¾ûã‰kYømžïqà·‰CAËÞ4ð2yåÁß&ae®”):º_üm>Tˆ˜¿Í—£ñ-v²óæo³­h\…Âêð 9ÀÀýÕcúaySJ7#¤‹]nš)Á·’%oà6j r"¸ -£ )ÜxÈþ #¸Êäër¸qT‚î½.·¾ô¡iöˆ³o°}.¥÷r”©¶}í¸´;0*ÐÍ"pà EC¸Yf«Ö'W*i]¸ñŠ“n8ƒÒÂ] îíøƒ›ïk¨IDË â£+‰¶܇٠nö‚f¾!Ü°HØv1¸ÉΠF*܉ttÔ­a;ƒ¯°õ"fpSX¨Ra3¸ñœUÂ}1¸Q³GœZ ¸Q»&¾ Ó§»<Ýnã¢sW ð¿9¤/ ×7›#ŽæÁßfàHt"´4ËÅc4»S4%©<k˃¿ÍÍmü6£¡,Ç -ü6ž<㌠¿=G Òú6ªŠDÇ6|{t-œ{›UF<ù½N@By›¼ (YÞîQyq·ûë¡3°Û=*¾ƒºÝãS:©ÛXM#¶ié†rC:q»·àq¸Ý»«ÉÛ ±Ÿƒ¶žA¹ƒ¶Mݱ †m¿pÞ¬m Ò– Ôö[Ü}É m2ÕºªÈ7g›M¯ñ¸yi8_Ç l¿%ší7Š¦£&rEó,X8Š ©`± ÕŒAØFºŸV¶A¾£Ûzñµ‘D$Ö:ðÚ@10âtíUº\J¯^BN¡b8’Ö&Ñb†P5¤Ð'‘-`m¶€ËesµA~¦êÂj£ZY Sµ[ófÕÆŠ˜SV®_‚© ­U3› p¨±„¯<‘Ú˜CØo ˆÚ­ºùØO¥¿O›Ë9Ò0LÅY‹ŽàiCþÂÙüÂiã*ø{AÓnc·çLƒ:3ÐO˜vëþò‚¥Ýbr ”6Ψ¹Só˜sXS$mLTýЧ¶áæ&F~¿¢ ¦hãì„Ü0Dª¬‘æÍО±Ð †ölѤÑíù:™}´!‘VѱÚóõÏ?[0Í0Œ­~Vk/ó§‹ CüÚFg3ÃÂ…E ³#²ÈÙ¦‘¥r³G¦æfÏ 6{Fàý¤f#Ç£Wè]I€@7„L› (*þ/j6ÍBÃ[—È-¶\Ðg5!æ¢fÃãR]Òt3²ég÷ qàÍx£Éf£õ迱†£eH6'ÀùÖ ÉæƒF÷¦dìw.(Ù°HÞ”lnCÙÖEɦ™,(ÙöwS²©„Tç–³ú -Ož%:#Ž4‹’ÍÜà‹’Í09!AÉf…3U”¿†ÏÁöw7%›K¯tXgHF›º "{[ÿBw$Q‰ Èþ²ø,:x矶v\nÞçômá±ñ¸ËÐóûu/ºŽý‘»ØدÃÓ =̺¸ÉØÃáÇÅ·viÿ&cx/0ö`°ïÜM$ãEÅ®ª¹¡Ø(Ÿ£dËLl¾/- -FÆ/"và‰º3vA™Î®¾xØ0C²Õ]ãë(`ØÌfÍò‰…]5´XØ0°ÑZ °Y<à ü&Ò‘1Ž5PØè€Òg:ÎqÆBúa£Pƒ(ßà`’ja°K4¿(Ø|1"l -ŸëØ l «æ À.-üNó¯K´zü5Ó\NÉnú5äÊ’~ò‡fH6C‡Åà“ } #ñˆA¾.!W ð5RcˆÒÜÜkTE3fNÂÈq(ê— Å6"ŸÐë¨Í`^3r8ûF^C™ÂìõE¼Fþˆîz¯¡—y½ êµüïÆ]¿OP*M»Æ~ ÆìGfðïb]7kîêºEËÖ ]7Od7éÝ#£AÒ57L<šsÄx׿ï9—ë´Gß–ÑÝü«`\÷¬Zü‹p¥c;nÙâ[c76¹ðÖˆä(£iº5\rõn  jyN¶5.øu홶TÓ4ñƒ:‚ñì l­Ú¹úmq­©jpš‰ÉØWøjýF#˜`Z/f@ ­_ÃEn¢5{çðhZï¢nó¬‹ „oœu vgЬÁVfÖ3`Ö­l4ïbY“]ÃH-Úâɺ…÷YÃZH£6Çš8.Œ±Æ¯± É…±®®?Yk¸uj)ê¤(ÓêS‹·Í°F…ùê@XƒÄï.ÖÅZ¡`]V¯Gó«Q”"Ö©ñÕDÊA½éÕ ÷ðêÒcntŠ’u/t5_A Û8ë€óG}z€«¼ýâV£ºN5˜.H*Ù³–¨Õ91S·Ï.SŽ€³‰âæÍÔúñ.õVçW ‹W $W£­êE«þpXq¹aÕÕØÎ`U7Ž´*zܨj6Ð+&KL¬R5^ðlÚôU7”ý=u—Zb<íü¢Œ©FÔê1àzSª's³éÛ‚TW÷Œ_Œê®êØOˆê)uZ²'DuòÔ„jKgo>õàBÌVLk’ -cÍ\Ý “ÙÉõš%M)Æ §^ œ:BóŸÐÔ­m2unSçè˜|s©_–l,µ–‹JÍ܃j7(5.Qª‰e´á°‹H÷#”±Ô(›æbG—Ûë}4µ&Ú4êb+`Ô9<…`Q³¨ßCñBQ£öïU**,Šøz.5*ï Ã>1ÔV­…º1æ6„šë2ñ^j)]zÙjÄi?Özï¦PSú„eɵ(~ Y1K­.›ãüêµÿ•Ææëò P×Ꭵ¡HÜbP·"áA D1”þ8¸!!€š4“jê õP`L%ÎÍ“†Ê”™Oã¤!'å¼hÒ‹Q0i"0™“3Kzø˽QÒ¨ØJƹF1¡záI†ìˆýIÓŠÉ*8ÒàgQíbŒô,ö/Šô<»i½!°»§ ‘fbþ„1´ HC^ ¤yoŸñ‰=‚|øèé•Ù¢G³v’8émhøBGãœæ»ÁѳHŽ|s£ñý±|0°Ñ3J‚}g3£Gdˆ=œ[|èn`4d¼bR› bÛÛ t¯d/\ôäæ°"£ÎðzÀ¢)®õ+9¬Ç­>ÁßÉDé!¡ˆkÌOP4’cQh.6å£tÇÂD#ÏÖÜ×pË^×$ú:»`D/Ã…ˆÞV¢_¤˜‹ãd ñD£åÉÇ^Р°+P˜tkª o84(]"˜ %“0¢FCc1•Ó'04d©¼› u[ð£ùÕUën*t³zdA¡Arjm#¡{€Ê"4„XÄ|šë;×ú±œ`Ù2>á é¿¥¶iÐZ¿ÍUsÏŸXÐXaOÃ¥yÇa -Á(èjéM‚¬+ΟKdãú³KôÃwwºþËÅ@ÿÝùWßžoïŸþô/¯Àÿð7¿ûïÿêçßý“ŸþæÇŸ~ÿÇßýÏ?ý¿>zýö÷þÑïÿø ›ãÿþåÿõ×?é¼~û‡Ú¯íôOþæ§ÿç¯~úÛßýÓ?üí¿ûuŠõqBÿ«ŸþÝqèUèñk—ñÏþêãœþÇŸþê_ÿ›?þ‡žÍøë¿ûlþÙþíï>žÂÿð7øýÿÎûÓ¿úã—­Yÿ1zþÿžùÿöWùÇó«Oö~üõ÷ÿQùÝ?üý_zg ¿ûÇøý?ùxûþøñþæ7¶ÿƒŸþõÇiÿòçöÿ-ÿmèßþÁßüû÷oÖ±þ›üÓß~ó_ßÒûçÏ·¿ÿçö|ûûçöïñ'êûùö?}ü×ÿýaûÛoõÛÿòíÿø?Ÿoù±Ç¿ø§þg¿éHÿuÌ£?ï¿_DÄà·0”ù!øëö½{ëã¯ßã‡ÿ×ÿùy˜†{ ¯Ëú¬rQ¤Ð!XŒécYù±¶Ã|Œß/- ¢|á㧀ٮƒëÇ)ÀÛùš~–½ ¡µí0VAÈ>ŒŒ*ÕOÆW=Ô¶8Žß¸‹BŸñê>}„®{c‡½îÃnã}Û~œð>ìqi_îÃÇþnro^+°LÛA«T09ÿá¿ÔŒ|,´‘ÁG‘ÖD,noz¾ý/óÃ3î Ôpx»ºÇ=«RgÛa„¢ºâ¶qù˜ÇncR^F×wØ¡8®Ã–ùá‹}¼×9„ñÇýª]çö×¼îø§škÌ-Y£8~9í>Ö,6Ô¾oúd´"jŸ¶í„«½ß®Ã‚φŠëëÂø㯜Û:íÿúFÿ]ot5c7ÂùXã „ꊊ—ùãfÛø>Â0ˆxÌã2„Ïwx@’Ú}X³aÍuða¼®î°ï[qvß´ã®;«š{ãAêݧÃnã}Û~œð>ìqi_îÃþ˜w›Á‡¯/po’ž\ç@$õóÞg{¯K;ìû>‡Ýwì8‡ëöö.Pï½1²¯ùÓ |ïsØöã„÷aKûr¾× ‡ûAÛÛò¼6f£‡ùé°Ûx?¦m?žé:ìùô¿Ü‡u‹Ž'xMëÇãÞÓú~1Žiý0^ÓúaßÓú>ì1­ïs¸§õý¸Ï׋qv¯s8ìû„—s_Ú×ûð oÑ}‹ŽÇ}x>ëÅ8=Ÿm¼=Ÿmßײ{\õ>‡ûíÇ}n¼^Œó°Ûx?¦m?žé~9§ÿå>üøÕ]©lhÒ¾¸+a¿<I>ù0¨’³²ä¶[zx–E^óvÂøÙ]97^ÈyØm¼ÏaÛÞ‡=.íË}ø.“鞣ïÛ»Šã¶ûqœía¼.í°ïûpvß±ã®Û»Šsãå~œ‡ÝÆû¶ý8á}ØãҾ܇ï5™îiú¾ÃÛ¯8Nc{ Ç Æëêû¾Ça÷M;ÎáºÃÛ¯87^ÈyØm¼ÏaÛÞ‡=.íË}ø./ðþ.PµØË×ñ!ì×'^zÉÎÃ6¾‚°|µzú=>P–êým†ñóøpn¼>ùó°ÛxŸÃ¶'¼{\Ú—ûðý—3÷Þßòqû«?Nø0^WwØ÷­8»oÚq×Þßò¹ñúêÏÃnã}Û~œð>ìqi_îÃw^ÎÜ·wÈÇ9ìOþ8ÛÃx]Úaß÷á8ì¾cÇ9\·wÈçÆë“?»÷9lûqÂû°Ç¥}¹áTÔž!ËôÉM‚ÊŸÛݲäÿv̶ñöâ¶}ù3Ça·çsœÃå&ý¹ýõ:í/˺|ZAñ$´ö8$Ûx¯^¶}ùñÇa·Çÿ +ƒûŒtžÿÜ¡Þøû¿¼½ÿAàòÀ¾Ÿ£ÀG¬/Þ¯Yc÷ß~=â þÏSb„} ¸§3Mf1ìž< õ2>µOF¬ùk;fÛ èõÛ}Ø&=Ã}6î™föþiã.ü}Øm¼ÏaÛÞ‡=.íË}øž3 6ø|‡1%Cr†º€¶û„ãuu‡}ߊã°û¦çpÝáaÍñ½ñ:ï>ì6Þç°íÇ ï×öå>|¯™†5.Ÿo/¦„ž?½À˜‡û!61Æü´qQYÝ}Øm¼Ó¶Ïtö|ú_îÃ÷Yϯ÷ä]Á¤m²›p¿‘v(îÇfãçWçÜx½ ça·1}ysß3y¶Ö:Ïôx¼û§{wçq£×#9»éËë³Îó{Õ¿øy@ûu§à¹Bùt}ÕŸokõ-ºû)ªsøÕSýÕ<»×9ö}ÂÇ8³/íë}ø…á¾EÇ—»³Òñ‹‡ñ:½Ã¾¯eöS Tçð5ªêS ´~¾E‡ñ~LÛ~<Ó=ÎOÿË}ø>“~’tóóí–±÷íucÄûönã}{·}߇}ØOÉuÃ×äú}nWr½¿k¹²¦ ?åÓî3yGû4Mlã=MlûÏ÷a‘ŸÃ=M|=·ï6\,׺ÚYü¼Äûµj`èÍéŠm´ùy‰Á ^YÁnÖþñ}6~^bœ¯UÃyØm¼ÏaÛÞ‡=.íË}ønÁnùÕ÷íÝ ãö’á8ÛÃx]Úaß÷á8ì¾cÇ9\·w/Î×’á<ì6Þç°íÇ ï×öå>|Ç`·]ëûïµÀq{Õpœða¼®î°ï[qvß´ã®;¼×çÆkÕpvïsØöã„÷aKûr¾[°ûðßèéý2>„ýúäzËŸÆÆéÚø2> ¨‡NT÷aþ»¿L™> {Ãõ±ŸÜÆû×·ý8Õ}Ð㢾Üï|¸ïíþŠÓØßûq‡ñººÃ¾oÅqظeÇ÷vÁ{Ãõ¥ŸÜÆû×·ý8Õ}Ð㢾Üïv¸oìþxsØŸùq¶‡ñº´Ã¾ïÃqظ_Ç7v¸{ÃõŸÜÆû×·ý8Õ}Ð㢾Üÿc¯ÿü÷¿ÿ—?ÿô—ßúç¸ë\èµ4ÔºðŽ!rJ©DùöÓþÛÏöö±Šz»ìçq~;ó{Ÿç÷ç^'…’«9‹@.Œö J¾¿(ãf¹Œí™MÆ„ªúâïS½qEÙ×—Ûà_ü­<Öêâ4|ü•ïˆ“AµPʲì,ãûñ%ùwQ–!c+O¦Ž²N¦£ÞÖ?ŠV©¶vªÆ%¢,IÆÔŸÂLó8ÀôŽNa=„âù°‡ÖÇ©óŸ2zŠÿö \—ì¯4¬=žšF"ö—å>èþ½ñ5ÅÃx>ñ{c½œ°§o¶ay̯hNÿŒO²ñÂöÞ×ÆÞ´b¢Ö1æü¥Ø熾BzÐèTSKœÀU¶¢u•M@¶Ú8[ݳ¦ ?¬ýæ–ýõ=šâ -Ȭú/žÁȃúð¦|‘l‚±U{K<ª\_?˜ê·›:Æßñ´À4Ÿú'|…m‡hœÓý¡bíkÛ4ØÜF@›7dºÖRŽ‘Å—qÔ£^ÉÆŸùùùÃcNÃgÆâØ"õ/b]_EaŠ—²ÒŸ—ýioØÓôM­ÄéúIΤOFTÌÒÈö%6¢é‘ŒI¥U¿ø‹k¨¬h*¯Ï‡öÆÉoüzS`Ìéõ“Äðfcmñ$çºW°¯w>![ïŸC+L³†/Ó/Òäëñp_=úØ8¾Œ‰Gó‹Wq¾M':tŸõx›X*,{ë5¦•©ÒVÙßïÙ 2ƨýåÈû”Ãû|‘ûyÙÁø–½jÄ€5«~j¾"´ƒÍ~d]Ægóœ$«mõ>…8»†v߯^(4v@ÇöêOÑ 0Æ+?;_yÁŸÝleêôh:!¯G_?—#œç°Ooû+@ͦ§žÆã­ÍÓ¿É£ùᴊŤ›9|1–˜”á×÷ñ¢ »øá”TãõyÙým„½óAÐØÓ/s ㌷›MM^oœÑÀÂÆ?ÇéÏa½h¨`1f°‹çÏaÿø¸|ðŠÃ‡<âí«ÙÆæï _dÌl\Åìýø¥DY=؄׬ôõÎoÝl4Œb.]ßÞC›¿¥¼< ö”ÜóÇÛáÄL­…=àjŠ-$èöØxÆa?Àyçîëþù—Ìl??Üàÿ}Ý}@Jeß#6ì³Ä(W5Nâ OÌ7tüÚÝ÷‹`NÌÊœ‚~^öÑÔ·»èÉ1«ß±ÖuG`ìOxÏ·ö\bc¿¥M´8l•ùõöéI„Z ‘-¡¡ÒcW‡®ÈÏaOOò†¦¥øCï}0=®€…ì[JsŠu92VO€zq ÷ §p{“ñƒtÖ×ÄEævmÌýôû~m±½Ä*–­Fl´×ƒ#¬aèWÝÉ×ÍfÞa|íN’[ú‹Wq~t[5“Î^÷G1À K½ß†=¼…Ad½lÿ½·ënëFEç9kå?ð%÷&s[ÌÆ7vgõƒ­|LÎQb¯8éIϬYZ´DÇœP¢E9qÿñó8U…*`“”ÄMË–(3݉È"vm Ô7 -ˆc-bÑPGÞ±&uŽd!¼˜Â¬Ó#76Tó“‘düx±–¬Å\ŠUþÖ TCáˆl³Å@ÑÔ[ÌŒD õˆ€M½¸±ìÁµã¶Pr:#=§^ -X—âðš®Õ»kkæµmªÍQ-y”3«ûà·´­ñþßÅFJœ;ërwQrf ÞçÅ«[· -Äë¯1›BtoòhþTŠ¦]y>Q‰§…EN BqÄ;}Þ>¡Z\è©zЊÝî}›•ƒêS&X4"¸cÉHj«†‚X7l𨀠GayÆ6ê±ë®yðj6ypp÷fdyšiƒ—tò¢…j=‰×´ä]†Uùs¿LÌÔÅVñÆ1ª-’¡$ÒÛùÜXC¡#šŠÅ´…“ýE¡×CR/X‡Îôµ`ºñ‘ 2óÄ™¼tàÒ·Œ¶52ñPÑ\ˆµ67õšû€ÚK~‘“–ÞÛ‚A+"$,ÎL]K7’Ðëld`ãUCÓÈü¤±ñР|ªÍH"뇥•ª«Q8ȓȘuµ¼&ñ©òµ†™g:ÅÊ1ì7p -ª@†ÀË=/4(ÐÃÝ%ñ µ*½( QV/•|].FìÅ% %]iË7Å[’ ~å–²±Ú+Ì6ÈÆÊ„¸m#T"Qƒ wèé`‰ ’[¶žå”1¾`(ŽÁl׺¦Z¹®3Aè‰TT²1”‘¼ª ¸áÃbN;b™ß¼3fˆH(ñC²± ðÔe‘@†7LãÅA£&qÕÀ5'Ü=CKú b‰ŽE£eQžàÆóöÈŠfÚ©CohÔ‘í~ºÈŠ¸Õ…nx7 ÓŽ¨ —eƒWö²·GÉÂÆû5 Ãátµ0ñì¤`á.™MkÀA½.gP" A -܉~ÙÚ\ÇæFÍÕjֲϑ(žÀ ÉQÀ†ÅŒÎ—0™×–X&\Œ"’2û Ø°äh{òñ^Ysà=bxa±Ù¤vxýT”gøuÊòÎi[ºƒ0ðIBDóóÂØ…·–áZ¼‘ð¼DÉZG&(4vlå‡@[lA±€àjy:|Ë›&Š:I^öîZavá°MÆÎO›©¦ÇáA¸yÍù¼÷-W.Ë$&ûn&²6Ýet -øeí1fðWgÚÈĦMøÙ©w%:/̸1Ü5¬Ì[—Ø9[ÇGê"íÓzVÂÎÊH¶H èŒ1Cx•è©­©¤Mμ_ÛÒ1#’-3n|™áùl³+€p‘ -Ñ |±±vŒ¸%÷Yëè>ulŒìƒ€,Ük= ᆬ9¼©TæÓ‰Îú™Åp_xÙÌi\žÖ€¥ð>D¨æHQðäàÂZ­X –Æ7°°vëZñAiLqûÈmÍú1¯¨°*öI´22¨X(BtZQÄ=è‚4 ¯<$xŒEWÙnÉ"ßBíTi”b %ª[!‚‡%ÆeFEÙ°än›4t^MxQÆÐPˆ0o•ÛaØè Î@±ÊM+.ò -1ÒÖª(¨M¨•A`ƒPLŒ„íYkÖ™iD¨Ýdå‚})È«xѳ(Ax‘“°vntÃ&¯òÜ(-*UvòæþŽ†2°C,[Ê^h…c¯óô {öÄ«Í^bÛÑnÅIßäxF2^±¥¡ ¨Sm¦‚‘ ž°eÖ‰¥G…Áh:b¸R’G˜^öA1ã·žÌq,»"òñ¸Mˆ_A£ÈB =Šùa¨åÎŒÞ{JÒ€zÆâ‹Ââíàu‰à?­[H¬Á­z>fVar” R„"ïJÃÎÜ@w|æéòâÏ#cHóÁñm¼c¯•-œ½JR°4KZÁQfÂœc6. $ÙË@@Þ×mvW;¥¢¸C.Œ¯Ó:»»àî2Ò¢|—5ÞØò¬ÖAø…¡­(m¤5-ól\d‚¡1Ìqµ¦z€»É„³å:$wg÷oÖ$óìe2Ò­ò¹±—Æ- ¯oõÍ¢]"g€Á—ukøuMVì`ÊZF«¢¨H^„ ^uÍb¼ms‡Á bi(u­ÇŠº‘ÄHá -jÅ]‘Aa6ô¼x`XÎa¶VöÍF/²¶å€“¼‡b±¢ÓVœÕ€¼ -^¡Y axD\môàÁ¢ÃÇÙ0ÍÚP:1o›·™•F²”0jT6v†€> êkÁrˆ]‡9HÀ9ðšâ&ÞÓ­Dr¶¼ÜF!Y£xE-sŸó¨r‚/Š2áÚQ¢Ë'êàU8LK!bF63U†wžpS¼£ …ÿÛìè $8`‚pÆ $µC|†Ô–í"ÍI´Nü¯JÉŠýKHBÉεâ.Ù#Œ€9M®^ÔÌdMa ¶$Gº‡€Vø©† -Ít¢Éb8%cˆU„½ƒ6HÂ.d°’p„«ÈDŠñÐð.^&'Ù+Ìd$A -%~×e žt!êmkÙ¿pI«Ï9˜žÒ1óº•ÄÛÖòkƒ­rlcN‰ôt‹ÎA'u×s\€Ë6’Ö†¯s|:!ÊëœPA5šVôcÝÁ`ÅtVY6Ú|ûIæ?‚Á´ìÔÃ,uÁÐ8I>É@hlø|€³t<Á:1¾áfw1­¬£ÚØD¸ -æˆáÁ0çd*8èXåK Ug É<$ŸQÌ%‡7c(çA+ù6uB±«¢c è-^eÏ}p­å„âh9=sS2+qs8³A8¸Å.'[dš…êt¼(k -ƒùÎ Fs -ukX?ÕÙ3'#Ō…*‚g•OG X¸Y¼Çi‚—Ýa¬­à,\!àLÜß&m½Äråêã‰pÏ'9<iÉ}‰cå±$û@q·ùü³»6pÉ7UÔÅ´Òå£0õ¼Ç u‡$@fó}ÓYÍ«[SÕ2ÒüÈøÂSô€%r‡ðÀ<”óFmp•m7£Š%/)WVRý³ ‹÷“jaá^€1ÁVJÐt€Á]…âÈ>3Û@`™®–¬ð¦rç+Cš}êÈù¦±áܲ˜%.&0ó¤÷(x<7nMËk¤Ð?¤±èZìi1ù³,ŠH>A¢®5¼c» ¼­•Èki,ÌË•„<kÙ’1À-‚HËA ÃÉ´mÖˆL,|݉â`à‚U>TÆç¸à®6CØoqíY’v76¥œb #Q¨‚çÓ(i[òäÆXu!­hQòåèJ 7š´â­²å(\iĈåPB¨dk¦P…Ix9SÆ."ærmu´}†y9ä|8S;j”—cr­db'­Ü”®)ÇÎ äE¹¿âhQÙ«@_Ôn ¾áÅÁ‘ÏÏæHtîši×Ïq^8š) -‹já°ØÂœG9öa´ðp§«ã ¶áã\ }E)Y쑹$€d±;ÃV)J2¸§›£$™ËÓ]©màóÞŠårÀó"ä³GTþ%Ù·š\VD¶rÌ'ჶ¡Þ¶dA’ý` ”=P¼}à÷ðV¶§.Î>qÕæ“"àK)gÊ•+BË¢ÉÆ6xnt ¼g5µáŧ+§X3+¢V D€·|›Ï’&ÈÎ"~@Å-+¯ë«~hÖ4[mS=XšIgB´buç÷*RZ:ÄsJþÀŒÙnC0× -@_‡øîJÙò(á•ð~MAM¸òÚŠed/@%1ËÕ r:Ud9®)Ð 0Ã:ª*Ñ8p@¶¢ÓPZ$K]€´­B†–]>ÉjŽC9¦Öf8cäÿ&{}Ô„¶¾0ÿ¼`Œtp¦Ø²¿U·LǦö¬¢C‹>¿ÌJb““:ÎVgÓ¢˜¤àó r~´/O®Ó,0ófŸ¯˜¥M>AïÀQêM#˜cä“„¾ -¦8Ézw¤I ?¼pmHƒÎ@Ÿóõ àAqg{ÊÔ 7696á%Õ‰_"2™Uf‚‡^ELŽM4^ŽVæH.,<Ÿ“t±°89ÉÉKô¼"óáæ4ŠÏãB ic¸•>´bÆpö „ƒ,kÈò($LĉIæ—}Õ±>,È>éX󥦩0p^¯“,*YÔys__Xƒƒ<Ž-Påø-SAg§Œ« !Üq¥ Ü -%´ÖxÇí3{ˆßpRƒv|”ÔTAÌ\-ãœòЩÆñÄ,A¡‡ã2ìÆZÊu\SÛÃ[–'œËáÎìºË5¸¥ÌZ™ ߈êí$"¡UÅ| 9SK#uðÌ“`p¾È4Ï‘\vøáºB1/)eµáå8:&•M|Œ–B ⦟”G¬ÂÙ󪆖-Ó½ŠªBz€“}ÄÒ°÷⇠ÍEFB6d”óÖ!HãÈU(¬3’Šàù„·-ùS˜ÁëÒæD:H‡È>5'‚:&ë ak8j‘–Y-{ƒ×–O xˆ¼å8V ùrÜgE2S„Õâž ÅÊãÄWo$wБþL@-;žIn ŸqY&AŒ_'¥à!âY0¦ÊÀ¢}–Ù÷¢ñ4”xé!Ÿ–•èÝà7•åðˆd)ìáË!—•& -†¶¸ÇKh”hB"ªC#®³Rý,”Sê°–Zν®D‡ ¼—9 K°ß7©œŒ3c<± ÁÀ,Xb”¤Ýà¥*‡ÉVq`ÖoãØó«³ô†J -[¸¶P=5æ$nÇݱĬçºë«~˜ÊÚ4’—m%9¬ÉÓ©Ö’ÕPÎ}"\ü/sÇÆR,ÆÀI`ù]ƒ­êÕD3’MFwdŽ‡’%äë<§çd˜R °JA.ôBÐHü¯ ºÊY·9sÒ‘›‹€¼ö`z'âkÇbïCËœä£~%µ4œœrâoN<8\0Àd +±bqXr çÜ;l,å¼À>ø;7¶™AoæHPìØÄÈ ­b#ÛÑC ž—/Ù.”Ä ÔÞ ÈÙpŽ<÷‚¡8SÜCåÇ·MÃ}ðâí´A¾¡*«·¤É™óùà©] !Ê -Gi‚ÏI: -øÈáŒ(š¸Ë†o(n[GG~ ¨c…A€o³0)Ç1£%(â(?%ÞÇ °Zap/c†à “XVO[…œ¼‰ŒÁ-‚–ò'ÄßXÔV5ÄàZ)óÕjËŽMU¨¯á4^±³Êdf’€­xi0„|Èω²6‘xDr5ÌeÈqZ M9šÔŸ>ÃɃh }³Ó/£çɨι@ãV¤œ+£hyÃñ¶X›‡m9b˜¥V)W£Œå<®§J:,u+QµË”òYMz^!N»\Ø0Ë(\„Ä #iƒGK¹sÄr¨lǯråô/T¬ö¢[7\¬¬_—-Wc9¯‡/Jg]nÉ13/a"¨é燽Ñq”øsÄp­™C±‘ŽJ‹>› ¸,…õV“ë…U;©|Äê&uV—pB¸¦%ž“)”XôÑ1§ØH2¹ XôRyl±œ€/‰ UÈèZ±´P/Î@Å2/)§Ô7Líá"€QlSNr2äUp¬ˆÅ\m†Úóé@¨ Ë«Wµrp1H5<÷œ1CýG~#gÄ(yý@LËhù̃#¦œ1€ÞÇsÊ~趲1Òj9Ô©•FzÎu -/Ä:G /Ƌ˾˜VI€Öqˆ®UŠË¦OF¬$ÕÇ•£Õ -ªâñÛ²€"5m‘¦­ÕÈIA®1¼ÒŸ-U’iáˆ- -†²]1ZŸ§É£LKÈÉÑ]/†>—Ýl ż‰–^&àâ§ÌµqÄ g²¥g’µT–läxjuVÙÿ8bx̺²~ZÌ¡”uÒðInUìƒê¾¯\¦¡­ÔÂabî[ÎNjKôÐÑîËJex¯ã¶‘ jöK -endstream endobj 63 0 obj <>stream -À!~ñl`f… ±•îÒËZ9kYlæ@°£²àA+'QTð$¸²¬+p(¦m©šdÞ*Ã8¿ÀQÉAË$›(õ"š*ÚÀe¬ è„+|4W4ÓUÑL̲9$ ºr=fu e¸Ìå7tU5ÖK$á†1¥1÷ÍPÚ9Åä’*pz§˜Jj€w&Êꓲ{©%' ¹ê>´×bÂ)—ëMغvt\qÄK`½øsŽµc2Çå£P¶Äˆœq¤°mu™:z]bð‘C4˜[”1ƒ!0÷ÜرÃËæºi/t_4@K ^Ã=U¼Kå2aMj3ŽRš2†P¥[JÌ€2¬ïr¢œÕÍQÆ+™ˆ%8^üs±Íu:(¶,—a+I²…±´Ím\ J#-ÙʬÿªŒ±7}kµ-Øû”3CT't#wœdñMò¼•UŠõ.«ÒAR ™2(ØHÐÏîn ¡6Õ3+ -•P/mÉÈism7ðH4¨*‹ÔH5G…QrY$͆¨ÊôNÀ@+*ÂÅŒÌê:c‰äšÉNRÑW)É®¿Õkbm]û\ãNÕIE­Cñ]¶M#£òZ®:Õg@A0”ªŸ%M0¤ú)¥*ag›¢Ïƪ žõÄjXqtÄ[Š>§K%lÌ~4×s[ñcëL ÇXX+mJ]@-Çœ@Í@+Zi.…¥³¸¯>TÏk âaØ#†qá¼fN˜'³¬äÂ. 3µ¶`ÆŠ¾¸1sB—k¦é*`SWÅÓU¸…ù¹2¢²aí[•r³¶,pøðF Tñ€œñCË$9ÁAvjÈÌ ±Ô¼wŠ/Èõ̓¥1Zi¼WGa½¬bgQª; _w1H '‚ëjTu¥éç’98 ¢øF]/V"ö¹T¢ï!W/éá(hUf ¨ã%ƒëx)ãFI4qrJå¢<^dTÎ"‚¢s•g*fh%3+‡TUò‚Çs¹ÁÚ‡•ÃÑ rGIñÂr6G[Å[É‚k¸î£«Ó7J­uÀPœš¼q ïeáIÂPæW”t(oÈ%¿ŠŒ€š‡-³\iPÑKÒŽ<ªÌ&¤V¾ª-<O£Ê”—"¨^*rÁ"+œëÉ°Mê"j•$E^ mÏatU\•¦Š7Žýs˜äšåN 13°îkp²xi£hE~C®8Òtm”ô€¥)ffÀÖJLj$`,y‹ÎÚ‚¡ -‘H*}ú ÉàjbÇn[æ…p?€D0Uv`hɶE8O2ÛElKzI ]ÜOk]{9~žs\3VLòamžø ’ÌF UCš2§/•@ÂådNgîT¢hÙÓmE#Ò¡¢²6yžàЈ„…4©:ÈùLGÞñCÆІÊÞ¦ÆQNdy©Ÿ -Wh^‚Zèã º\Áƒ¶ ‰pp¿b•«îT™ýëoi0FjÖf)ªã PHG eТÊ‘6‘‹0U¦ƒµ[*éí*ð %u°ú{Ec. ט|EÔ…RäOù©uªÄêÒA"¡¥œ§rGQUBNÅñQ¸Ö—[2àÀ$—À’lbh¨l¦gæ*вK•Ô{Zˆ\ $gÔ †Ri4×N@_Ns]8\Ýr:õƒ l¥N7tÔl(5[h©öà ”2ÑxÆjäY‰Ø¼ÔÝÎ)D°—£ ¶æ$…‡R…890§83?‘“Ë.×µ¼é©¢Åª¯¶“§!S© –ªcxLãyZ›ÙDä£õ¬ÊŒf÷s¡µH…$ -õR1Qå]kè<7u˜99(,e¡Y á†ž —›¶RB•õi> ‹µ®KÒl¥MƒŠ+åv¢e RÞ3Ø -ƒ•ÍŒ^L–º9¤ "*JÌÓÌ”¸öGÐC(÷(‘q\K…Â7$§IÅ»¼öT]‘ב2¨UUäû%ÊYШƒ‘ê«Œ@ñb…ûÃU ¹Ü¼®¥1éBlaé<#öteŠqæ^>ˆ@ËÆwvXuT/52½ú:IPvJÌÜ%:‰þõ¸üòk1˺Fë™À%79{6&î`Jž@ íd{¯\o##_•(éJ7ŒZÔ¹‰"³Ylá Väuf¯ö´¼N¬-[±bºË-€KMn»®Ñp6Ÿ æã:j®?f²æ´H)kÃY] —>Zw(æ»ËKí^PÎ -x]i]]ë‡:éÑz4GÕÅ~Ke9äb?ÓÊFÏ ‡²X??¥8½‘ªùç‚š¯ùê.R-XW+ƒÈMKõ$ä¦?'Z‰)eO¼”BãÊ`”cþ†«;¬«T‘_ -®#9.ráR;Íp­#–®0¹›JG”ºŠ&'Ì#)°P¥D„¤d¬ví¨¾Üª[$O.·â3×wœ˜[”qN1…ÀžsÞçC„ý*…)¸F³/‡€ä^‡õuúòv\)·uÆð ãäx.È™–@)È(•$Ï.¦¤sʼL -Å`rÌÚÖ·åý)?¸º¢‹kPf/F·q¾Çä¦j•x‰’– -@_5=¸æÚ¢µ=“ù†zi¥vpÚå~ØF. Èµxá$Tæú×´õ\ß*K}Ä)Ê+MYí€Ô "'eÿ¸k&ó*#V])Ý ÷ä‹iÈKÝqe‹PÕ)—M¬¾°¾Vyé‰Ò)Œ¦bé‹”Œ°¹Ê*ƒ(XùÜÈÚ¾ÈKKs,~ëKƒXâr+Wò_r¹à -ÞÃêÊ0o‹q¬ê+CÅ$ÃzeåÊPÇõ¶œ\ -ë-ó|Ë·J¯ .Œ²¡ -Sô“—›vmC^ -‚G¹1Š1›+÷#rPUhö†^—J\|™£­¯È÷C­é[é6œ¶”ƒÙM鶒X–÷Re¡5rž—ÑCùñ“墀ÁŠg½QUSŽÿñµ²Jüa¾PZé[-–|ɳr¹"Ô4h•DU)µãzD%ç¬äçØÂøK* %‹,{kºP¼!`ÄÍy&p%ЂŽnJ:£æ"xZ2\¸Ó«ˆË;eÌ’ôåj(è×ÊÎ4Õ9Î(¥n´\³Oá²¾J„pÕ°¼T1wT=] -$–Ô´Ž®ÁsT] X”X,í)WÄ•Ó€Õ(ïlJh]ñµˆx€ð›ÀÀ%ÌEäµR›<Ç#În'0rQ%Hï”h¯Ïì)´Tè¼£{çÆ%lÍ·R¶T@#¯QËh—úPÔÞ¦ŠáQ«3†—;“ñœœd¶”ûj1[úèÿólzž~™ÏGËmN^O¦§óñ9¶Ðƒ/¿?_”á?‹·cüñó¤å|öÅàË_Î'' þ"á>ÿ­ÛöÍhz•ÿ19]¼¾¹õù茧îäæÙ…¡½O~{½Ø|lÜþ¾÷äûã'Ó‹×£cµñ'§©émã‚F÷5¦ÙËÿŸ,žÎ®ÎOSŸÎþÜxh¯p¥¶‹Ëͧ°óÐ}¹Ç½…õÐþ܉½Ý|@oed·õú¡1ØÅÕüåÕt|~2Þ˜.ô𦤑WÝÛð6Ø||y5íÁd¹ý½­ådYo<¸—£Ëñ·óñÿ¹JsÝce/=v_CÕóüêìÙÉbôf܃ÕÖÏÜ×Ïg/“ÅÉ-úK5ÐKlþódÚg¤‡6dY×GÝ4žõ¢¼–‰ãŸ7d=Uÿožœ‡Ïa&ç·,䎮ïk9¾˜]ÍOÆßÍG¯''=Æ×gx÷7ºÛúY iv1ž³ùæ+OÜó;œ]Ì.'‹^ûë=u•Ùûñå×ãWƒ¯öÆéÞ8}ƒãÔîÓ½qº<´½qú`ì«ù(©åÓg“˽yºƒæéæοݶN7—#{ëto>X³·N÷ÖéÞ:½½;bÚÇköÚZ§OÇoÆÓ¯G§³?Sõ@?:‹­×> -›D3úW`Þ\Ï¿\œ~=~3A·úè¿õS÷5Ê—Ó«[dáÝ¥÷©||7ºº¼œŒÎŸÞ:Ö‡­ßo¾"O{pŸÓ°¥O{ˆˆÓ{”½öÓ®°ÂÙ«W—ãÅíÛg÷YÅ3é.3‰)(´ z2›Îæýãõ­FWG’½öð§ææ÷µ,7χ¹¼š¿Œ_œŒz ¯óÔž£Üá ./Æ'Ï®nÙh;ìWÍæk3‘âj:šóçÅì||Þc«OÞÛp{öpv~¹m3ÚòäŽMÉŒLÿlL±nN¢Þ£mìúŒiGì}Õk¢Þ‹Åÿ¾ç³Éù⨗³ì/ï¯7/òÞ>ÊÊË.+`ÛùDv%ÓWpïŠBòáÂ0;1m;j¾mfzh ds‰óû-zW=CÐö¾V_ÝâêŒÈî‚Âû»é1"³#ê!«~ß)Qµ+BøqgDŒæ“Åë³ñ¢ÇÐvQ$O'‹ç£Émð^&o3#M¤oá@ßb·Þç,ÿ0žÿ6ºî²æÕ{K~ “ô^;ó:ò(ÓÁÔ>ì/»™v8›MŸÎÇãnµ{ð¹`ãy¥·ù2ÝwxŸ÷Q¤¿©áæ¥ -æ£ÓÉUEÌíï×Æ|œ©}§“é¨GVÄ.Z—›OÚ®…Ö{,ÇÓËñôþµóÙüâõl:ûmsÞùm¨ÇÌ÷œp9áã=sÛã°ßžÞ‡¾üèòµû/Ý øró¸×α‡ž§Év‡?ì~–ö£/vÑgñí -«è¡Øî«hz(í»]½có3ûê7ýèVïxè;rÇ$Üã(HrKêS½{žÌ¹ç#9=ÖÝÎ$=F‰½ùÜ5‰Ých[°¾û ~n\:|=:?O_Œ§ã“^î¨Õ'ïk´?mÜz´«OÞ³Xûzry1ŒÏÆç‹F»,ÛÎF Ýæì]²Ýšÿo°òQu>n<|üØC½äö»À^wEnîŽÜ9aس¶ïî؇pˆÿ‡ XÍÃf–}&hG¶S#Ï»\hsÉÎ1͇öž˜ÆCÛ¥¯ú¥¾šL§½’ò¦÷7Ù›ïÁj€Ò‡q›Žté±ûòùì|ó¹œ\]Ýž ÐgõÌ} r>F{bóqžžN“7}F)OÜק“óñhóƒ#'£éɳ9þÕ÷fqÜbÔá¸Ò²GØšß×ÀÜæ;íQœŽ?|ÕçÕ|vÖCD`ëûÕhúÇèíæÓ•Ô—ÅhÞOß¡îm-nõpUÌîÙHOÎúÈ­¿¼¯Ž<žB“qŸ¹ôà ГǛ¹Ôch;æÏÙg.m"RîÕûÝgñí -«xÌ™K͵¸=jJîs—|îR=¹c2îqä.m®ïVîRŸu·3¹KQf?ÞÜ¥CÛç.ís—ö¹KûÜ¥ís—ÔG—»Ô‡½îŠ0|¼¹K=†¶cvÀ#É]ê3A;²>ŽÜ¥“Ç›»Ôch;Æ4ÞCmS±úLp¦sŸü( -…öÉÜOÏŸž÷Z§gçfç½vætä1p}òýñ×Xšé¸§¯ì§'÷pˆîX]±Ç]ÏÿÃÖ»Wö¼Uݪ=[Ü‚-ú=[ÌãÛœ{¶¸g‹{¶ø8Ùâ7óÙ+‹{eqǹâÖñž)î™âÝ1Žª¸W÷LqÏ÷L™ba;î™|ðˆyã攸£˜ø.FY÷;mëö;-osJìwÚ~§Ý¾ž\3p›gs ~ê“ÐY=r_`â&Ï'Ž§Ï§£·Ç=OÇ>ä¼ù{¾pÙç||6»­€ÍŽVišœŸŽ_MÎo½+º“¹w1-¾îS;¥z侺!Ú×¢ÚxœûZT¦ŽÚT£ÚxˆûZT¨•ê1²Ý)FõèË6©úJ7åÒ›Aú÷«ô9ýý*ý0ø‡˜îÏ|Ú¢´ÓCÓÖó5ºÜ¿Ÿ\ï[-÷>HÒkpû£$;ÛÚ•â ýÖàŽðÆÛúywñºû9Ÿ4;»˜]&CýÙÕ-Üîn˜ã}ò‘Cë.3‘ͤ¿ßâ^¬gÚÞ›¶ùˆn‰íuFdïQÓß|D·¤·uFdvbD=¤Õï÷(¬¶ÓçwEoÅÖwE$æ“Åë³ñ¢‡µë¢ùƒ”ˆ}L²yBÛMøþäë;vætdÍÑüžu@÷Ñü¥™ÜGóo"Ð>š¿æï£ù[mÌÇÍßß,µæ¯ŒkÍïê-ÄóuóU?UwÁß%ßn¸Äöü}ÿCrÁÿaÓÉ«WW—ãÃÙy’Sç=–áʃ÷µߎ§ÓÙx:ùíõ"588jÁ›wù¹{SÃz2–ý. é:¿-uaïs¼wýÍoîOÓ·~^¹ê‘{c1qóŽþ99»ZÜr'lGúñ÷ì¾úz‚¾˜#Pä@¶PêKGY±Üå ’xÙÇãbÚû_vÖÿry1>IÖÆü“yðë3“ã›?/’¡×Ç¿½úä½ wsÉÅîïÎ_}rï‰Ú{¢öž¨½'jï‰ê½z÷ž¨½'j¶÷D}PÉ~'òDe·:¤öž¨]3´÷ž¨»òDÝŸêvßÑñÅ¿ö"mÁÁö¸Ï¹oã–Ù—Ó#¯<ó=j÷ÉßEá™%@ö…gþˆv¤ðLíHá™Þ™Ž;#Œ÷ÝMIÕ™édñ|4¹-ı—ÉB&ï‹Á=|™¼/÷ðeòvfä®ÈåÞ,}/’¤HÞë)“w1Ï¢ÿdï À½cg@Gc¸'ß¿x=:ý±¿ç¬Ìñ/_e´Ç\wcóšûº[÷x,%*6¿þøtó»¹±í}­¾#º…wFôçŽì§]a…³W¯.Ç Ø>óñi?n¿£,ãŽø#¶UÞaÊ?£å¡M׋ÏìÜLíÍËÝ3/•m>Ûxÿ19í“ߗ(U¦ÇÐ^{¥ÍIûû\q ì ¦ß•[à^Æ| Üæ«´‡f~Šy¯!õ0ŸÞî7Ðbñ{çÍ#±Ä‹ó&>:çMí7{çÍÞy³ Sþ1¸Útí7{çÍãqÞ€`1ꓸµw<¾Ì€WóÑÉb4ýq6éq‚ß”Lò²{àÉ{Í⺟!mîµÛµúWÍpóX/G—ãoçãÿs5>?éaŠ-=v_#íQúêüêìYÚ¤oúÔl¨Ÿ¹¯!žÏ^,&‹“[œþ4ÿy2í3ÒÎC;°%÷eó¯Àûbe­XY»¯U¶ñ8÷µÊöµÊîfˆ²¢WðÕ|vÖCj`ëû×£¯TÖ 7¿q1ëa?Î6V‚Þûg‹ÒcïË!öóÕüåÕ4‰ãGàH}¬‘úØ;âqøpuîÓõ½ÕÙǽǹ‡Ëãñ¦ öÚ¦ ¹s|K…„}¼à&¯Åý§ öX§»‘0Øc@EºàbCqGã90¼Gþh>–øÇæYiûðGŸðÇ}*Ð{ëôá[§½øçÞ>ÝÛ§{ûtoŸî’}º¹µ·O÷öéƒÐGaŸ>úŒÃGn¡n^ f· ÔÍǹ7P÷êÞ@ݨ{uo ¾_+Î=^µÏÐvÐ@ý÷Ùìô·ù¨Ø[§Ð:=PÎ>í5¤ÂB}Ü—èln×ìK®çàñÕÏùPÞ·{ܳ{9«~ŸÌc÷ μÜíN”ª¿¹+[î‘'rBØÖæÏè‚€Ç¢Ú ەͦ†=éí°ú_OâæwwtÛ=ýÿñÊ8XŽ¿¾Ï¿ÌŒ è¡Íþbô²ÇÌï’cW6§ þÞÓsÛy螙ѷWç'?í2z¼ëpÍàãZ‰ßíWâƒ\‰êcc‰OBŠÚgP•àçùèüòU«ràîØö<Í®x|¶ÒwE!þœ>´>’Æ¿wûÜ0e˜>ùd:}(“õÐè³å’Þgô¾cg@G¶»Uï³'ß«æø›óS¹]a@Ç?ÎΟ',Xµì ߎ›œ×¿|úÉ„ÇÒ/Þž½œMS—žœž¾½™Íé|Ú ž|úI3øõO?¹Âÿ7ƒgé?C߆dz•6PöÔPù&D›>øиÓ‡½nðëãt«_ß·ÿ•>ýw‚ý1PÍà‡ÁþW38M/ûõ§O?9h†ÖzÛVÃ謜% òCÕ665*§ìà@Û¡kM@s­bzÏvð¤´C¯¢òƒÃô •úØ„Áí0¸6=¬›aÓØ?hçàƒ6ѧ¨04^„ߪÁ uÃ… ÌhÝ0j¯ ’º‹e­+|°¶QÛªY;ÔÖ7ðF=Ôjpð4z âP)k°÷B‹¥†éźo‡­ò®4L 84€“P¥w5mcÊ»”Mƒ«_žz”`­÷J#—f.ê2´4Vë[Ý!€jÓG :“)ý>„BI˜gt¡w†ÀxbŽf[œ,ç•Óø qM &©MýÚ¦¶‰ðº¡iœ'Lí°m­ïÀ ¬>“°ÃDÇÐŒšÐ&„Dï#¸OFkýXê{͘҂&Ú! È£ÐÒŒ¤…¢LdjjLšA SZ®ªõ³&M, -ç:s€ôTê[ã+0“H¢¼+À»Aµ Ò\{eh™ØÔ%¹ ²mÓDeQV¯ƒÕŒ”®š¥.(J¿a‘5iÕƒƒíc”v…@9¯]¡ÒÑeß!ú)@&:lÆô¬O„PCÝø†Pø4i@!Õ…dÌÜMX©µsa czØìÐÛ˜V“öi%ºû´E¬sƒ´ûc515(mSÕ¶Z,ª„ø‚Ìi™º3ÌêWŸ~ò pµÄÀNÓ‹Ÿ1øõß{=^ËËx[n–]Çϼ%G£ÎlÅÓàÑ­¸ZM—š¯}v¼†³}vÜŸ·}v¼wKÏmÅß>;^ÇáÚŸÇás+\.A×ð¹ÏŽ·ãté¹5¼±mÁíݶâwŸoËñÒÚŽçÑz߆ëÑ&ÛŠï¥G×q>oÃûÒRèÍý>;^ÃÿÒ¼­rÀÏŽ·âŸŸƒ6üù“óÙù ÕžX hŒ GÛš6‘]Iî=(†ˆ20­[ä J3ÜZC¬!q‰´×ÔZ?zDŠiZ?f- X@KL…]BR,rGÖ€ªqfaÊVAU/–ÇytƒÔXC“¬)æo ] -´zÌê*m*hÕý‚`-°"GéÖZ`çñ5t*ÀNŸÖЪ^]D¦_˜¬ÖE×JÿìØe‹,Ù6æy²rÇóóŸ’…s¹˜câÄÏlœ!ÓJ[±Ø´‹|b·Ö¥]ÔV“YóåOãÑ”’îá‰ÖöÅtB%““AõÝ|rú¿Ço3æôàÓÙlÚiþÍ9øÍ¿»šœf“; tµ«PÜv¾¨: æÞñ§Ÿ´²<ÄöËÛ:#îéÕb1;?ž½IÆå’ ÷¯W@ȯe_^g—Ù%³¬$£1ñ›¦Q ´q£Fü„Uù˜•¦&$ttAÂÁ—µÀAÖüô”ô(-°ú4 -õ<üp$¯¦/Ð8É ô…Q¸b%ßsDà·6™¨ùèU5RÝ †Qéé3ü›VƒKšBâñÞ¢Ðð#éSîQÃæOÐ6@WRï rÑxdˆÇ­rÏðüîtÈÃI›!ù=„^zÜdsû_¼‡°桤†O_â–ùå<§ƒßæ£ÓÉ8-7óNøA “¯ª³Pjðô7´9ø”§Ô)–<Ò+ƒI"=@g=ë¶të[¶aðôdSœO7Ãéĉ3÷ôiZÑ¿ÀöH¢ÊUK¹¢ÙY—–üéàšõltæI|ÀîLóÊ åqX/”uxiMËÔÒÌæuÈËGVO=éõb¨†|rýìëÍg?µJZf‡þfJ­Ì¾Yß2i¡Ë³=ÎåÙ¿§SÝÙ¿9`> ?)ÊïÂòÕ=³üÃùøt²Žæ§·°ü÷é¼Ów8Leþ˜÷”nÑ8Õ$ð‹g©Æ !S„¾¦oIgäïdVá'A˜?âôBº.} VÉ¿V¦,)ªWt;{ÆŸS5’<ÀJˆ$]"=rFBÚ™IÍÑù¯jáôßC¢Mú„¤)?TO*lÛvz¹ú•zùŠ›ÒÎø«Ï3€VNÆÍð¥ÿÙ¨WuƒúÉŒð0÷¢LV÷ë+âÉw¢¡%ålì¥vYûz´;OO×jdyW:å-îKk”MZoõ¡ Î&™Ú4ÉÈ^÷¶iÚµ›nÔ@êÎÏ’,Í=®” CžÊ„48ã98í­“sÓIsO†Câ Ã`‚vëxE2Eñ-a@Ë0dæå/¯Ý¤n~ -ò>wŠ:Pýw寿Iµq7 ·ô ÈG7(b&˜$¤x*@¦5`H¹õMB²•Qô܈åé-X’Hëˆ/ÙY5Tø`óXm=ö-Õ¹zëossû˜ýícvÝ1_Ñ(ц8÷ Ž4e&€|P7Ü·eèvýÐ#,˜ô7ؤB¤žX2hwõ/Áò8Wyºþ·4•éG‡¤óˆš<þ«oÎ,²-FT)NÊ,,Ü<²]3B—Gèòy¦øïKGhÞu|¾Û"6›Ïß2>ëRñªT¼MõáWeÓY•¡ûCPk†ÖtåÒkF¤ó€tO“GÁïvM6×î²æº]Ö\»Ë®QŽç5¨òó«ÙüŒË|Ñ2M«øtör|üäûö8õùÅâít|\ÞÞ]ÍðZˆ'›ÒÛ¸ `ÓK0šX,ÏC, Ö@ãZ/°´L¨QzüAÝV/Ú„Gqêô!¯™“€pÑx?”ײÉàä]¦ò.ÏïwUv^– ¶œ®{êèF­2¯‚æÖIÌD»‹¬†a IóŸbuùÏç9|;™ž­1»jãëF‹k%Š&—2Sèª Åð“5=Ô2#3쨂Á̲>*Ï®ƒUϾÊ!$7mDY{MaX†ç´ŠP¨a„lý5 ~òÓæ]e×ï*‡ïÍŠ’Ðü0˜ˆÙjé¢l“:¥ð F&ºEvj¡«oÜÐh«×?k@l@JžW¿ï[dvs!ŸÂ ­ný{M›Ölë¼× £)ª† W‹ÒÐ)ÓÄõÏƘ5úäAá£uÙÄÄ@¼£HoÓ&2C¿­³Ìjæsíýò‡ÑåïôQ|ߟ¿ÏãÓ¼ðýü÷ -þƒÇóÒšÿU¾ázÿitIÇúŽÓûýŽ8üøÍæ¿üú#@þSfdK PÄAŠ‹oû¯¯oh jHÿÕ:±taŸ>Ã}=ZŒþšvŽŸ~òë÷ŸüË;ÿóÿçÚþ/ü~ýÏÿó?æ÷k:¾ÿ}ÿû¿<„õyóï·í¯wûøB’ÔÀ£ý›°¯-ÌëÇë¸d¥F´ƒo¯þùÏ·à›]Íà³cä²EA8þõÿ˺Ê|±ìþzr ZÈé2üp:¹¸Hj̲þr49ÿ]Z…9^í±C ,øvEbé$Ç/«zÈÊYÿzE=¯1ôüýù ¡«š œaZÕM*h­‰ ë¡ ¯ͪ‚RA+}„΄,))X©)Ÿƒ¢cì­ª$]r{e%©Áï ®À¡©í8ݶµÊ²aÇ×+-ŸK+ˆìJò]¯°H釤l<ù~ðäj1Оüs\,–UÛïÙËËñüÍøô8™ÇÔê²»}Ê°V„u‚$M•—Ü$KÜ¢Á­]}õB‡’ê—ÿö­- ÀV„“•éƒÖmÎ$©€ äĦ¿±¡ mÄôzE¿0à0ëì±xD@­¬­ÕÃ4i±Â^°Yê¡‚=Zš€FŸ>8õ‚!ˆMÉ«–Ã-4¨ò¨Œ[ÐWìÅá:š±1#A®ƒ¹ªÞ–çΖ€„–·ruÂ0âʺói··>ÆnïaOûX¼ª‚©Ð×é}–Þw€y^3z™6éE=åÜÝzÆePòhxÆ^dÆWhFd=°©‰õªKËHƒµ‰m[g*‚X`6t‰é†‰Öt;B`lšPQ8AÚÐÔ+¡)VQ²‚áPµPCzPRúZSR†$Ï–agô5@(¹B±LIØp˜¶CɘýPEÞeyc¤ŽD»´§`/&éÚ¥¤†cû¡ZÀ гVðסeVĬ8\A/‘^t8÷·Ã‰xX…ÉЙU€Â‰–©FÔÔ•˜˜5 Ç -28ºŠJŽÿJ&>”ÄÙ{¬éò˵‰Õï@˜’°P²„¡ôLÒ‹Š’ÒÝŠ2&†•Qîú;Sq…ZDÄ$É[¿DĆÃt ‹«iæÒk¬ïrI›¤e£C‡†& ©1 ÍÐÛ¤–Ô5€ X`…~5 †(˜™òúŠxÒÍŠx2†•Ñæú;o…JD¼˜x†v]!SÃp„±âªHƒ˜Ð*;Ä Cm‚éÐ.$]#ÔbÔ£óÖÌ5€iW`…v5 F(˜™üöŠtÒÉŠt2†•±âú;“n…FYV+* P“®†á•*Ÿ6¯JŠiì -[Ëviï75»„bUA]˜vVhWÃ`ˆ‚™i ¯¯7-w³"žŒE”ÑfÌÕw&Þ -•XŽd«µÄÐÑÛ¤ˆÆ¬I zÕ“f‹ÊÈßk‘aµÂXžËJ_ÁœüúZ]D£Ì‡Ž¶¨4Û{uúkCRø~Tª"ƒjM±<ÇÌ€¯?\C¥LWQ‹A<®(‚‚ÆÍzRE­¬MUÄb…‹A¬1Rþ^K@…X‡ÅXyØù½­¸s­baõ’!g¤Õw¦Õ2Uº -\E+ñ°Xå‘ý˜Õ¢ŠV¬=UÄb KžÊ˜`Íß+b ¨«‘S9cåqó‹ë}˜»WQ‹G Oñ kùÎÔZ¦ËÑí§ÏûÅg›ì”¿Ó8­­ü¨7Í5qZi jHÿÝ$Nƒ}ç0m%ñÿÿ§|×ÿ¥ûþ´ÿgÿü³f ýËݬ¾ëÜöŸ}0ôn‚¡]¤Yo¦É‘Ëå@ · ÕГ+Áš%pŸp <º°¡o²YGCÄxN‹cr‘ Ï¡gŒæ¤§×Ås–À=":éÉu1Þ6ªƒ®Æu–À=";8¸•ØB·Šî¬£á3°6ì³îøI® ý x›à>¸þéB{€pd«! oZGÁ› ¾.:´î‚ò°k"DÞ.F„®F‰–À=âD8ºÕH‚·Š­£âD_DêB7#AíÒ5$,iº]( ]LZ÷'A}ÝÕ€ x‹ÒêÝHëu±¦.tóhd“¯Æ›àdï6'xn5æÔ…nu‚!­ÆºEäi Õn¤ñºTºyP -Ò…VÂRX!{‹Àd.­†¦ºÐMƒS0 Õð@·P­¡Ù͚ɚÈUºyì*=·&z…Ð-âWøÜJ« Ý8†…CZ‰b!´k Õn…«® -Ú'ÄUiÛ•“©R¶{…¹*ºr6u¡›‡ºŠš]ùœ*-[õ w­¡ÚÍ4^« }"a•:Ý¥ñVÑ°JgîÒx«ˆXÑ£»4Þ**¶†j›éÐ]o0«ôç.‘·š-¹Kámg•âÜ¥ðVÁ³54ÛLi^âÛÄÕ*…¹Ká­bk•VÜ%òVñµJS^âÛÄØÖÐm#-¹Cä-Âo•†Ü¡ðv!¸J îPx»0\Q;Þ"·J¯Ôâq·ˆÒ•¸CÛ-"uEñíÐu‹h]Ñ…;DÝ"b·J§ôàQ·æ‰Ü¡é½¢évhÚ?¨W”ßI·ì­Ri#Å·CÒ-b~EéíÐt‹¸_Qm;4Ý"öW´ÝQ·ˆÿ­ÒéF¢^_I㈷œÝêDô¿ÍÎVnj\Àâ=~7v Þ÷eTKõÇuâËn¦Â˸¥Z0 ®­²K˜+s njå}€5ÝGЯ‘ui ò[õHÌŠ7xÜüÞEDtj+b™àfåæµ¾e«Vj;^sùæ”kp:½þÞœP-B$T.Gßœ‚Bf&ÚA¦ZõWæ©š½¥‰íþ)íÊÃyŽ3VžéªUÇxšßýΨ®›.í ÆoW*s¶ë[Ƹ2s×ã\®Êy Ng®¯¯š šÞE)=Œx|8IÐn9ÛØjpýò(cÒçÔ1ú‘® áé'“&Ò*»èŽn©¢K¢nÓ -9Œ–_sVÞ¸®cëP5[Awso5V­}çz>ªG=‡µó샭¢z'¥‹vc¨›©³‹_.n¹o›‚±Uõ"ƒ…ÖÀEÕ«¨¸/ét¦ú¬Ë烺щÃ@WâX¨Ñ{ ×òÑלiŸ)k?–«ýðq¼ñ°ÒÍzüñ¨ô/K­á¾ô­ƒ&£‡ èüÒ#þÈMøQèi=èJ¹@‚˜qñG¾w?—Ý D¬ÜõF¡»÷tþÌTË—Ãј¦>ŒÏÞÈzO~9uªôDÁ¥nXœ–nzcâ4…jL]õ1÷GúyTO|“)«äj@*ô‰‰p(ºE®ÝŠrã (_ÆÅ¡»öŠÀõm×_x-Þ5×®o{ÝEµÂSSð¬KÜšèÕ\T3TM]E}&>Oµ¬†j%.ÍN=oU‡îD¥+÷–” -×-»ùÁMx‡ÏÚÖ¾q«ÇoÄýtcÜ+—ú•ÍxVí´ÙjÕ. û ¬ìå YoÕ<}‡]oøƒz\Gõ.×(¿ŽþŠ®“¾¦µoôzú_‹ûéƸWèÿŽê¤Ž8Õ¸¡hÖqÍ+ZÙ¯ºŒ—ZMF¡ð|¥™®Û²,®ÙžØ¤ú˜[¼ªæø ¯c.«î2X]¯î¨ ~¬x wMÚ]®Áø‚ó*¯"OQƒCYVIK hqØ´Ž–­Ù‰V!Œ!˯:XîÌÁr‡ñ€áê¸ê¡g×h—65åjª³ïÉ&rhÐÃÕ™nh‚üƒ~JCÅûê+Ô¿Å„FÏy€ù» ¸¢ÀÚï¥}AFž×úMU'Jïi9p¿ë1½)ªb"8Þ·{oèZc1.ƒŽ -HŠ4­yò(Ÿÿ“–8’³ÂÉÍgÓƒÌv ¨çè:#>Z}Wf¤Ð¬zýA ˆVååËß»Há¶RteΙ¿òLxš=ïk僂¾ 5-ƒÀ©.áØògYCànwÚZ…òc囓.KØË«ïþ–R›hæ½;šöhÿôâÅ2wg ý¾™:Ü"™¶)º÷Z¹úÁÒ>· B·Jª#F+#†|À)Ø* ³àã%NÑI›6Ð øU'X€`é ÖÒiÄ]ˆJ•71àOÀSw¤wX°,êäïÒ—¿þpôË÷_þ:øüd2?™ŽÍñ<”“¦.=~\>—““8\To÷Áº©š¨’Ê&À#Z 3$³Ú5ز ¨ÓPÇN;7ir!úop’-Ž~lÀ¾I“‰n (”Vµ–²H½ƒŸØdNé\n€À‚ƒ÷9î–ú£"ú[ÈÀßÀèQà-æpu€ÄÒŒ©„¢vÚãiŠ]Ý0q[ß6°@£Çù;€›(i>ý¼Á 7o!PyLB¹ÈÝ' , Må Ub¾Þàš -œ(BR9ýb t¦Û©ÃÕ~Þ™^© Z¹Ø$>85P}gmëâ.ó¡ãÑüäõµÕ¾?7JÒø3q\A,&ÉÝbBCëŒG}C¨„ŠÉðIpCeHMPÊef¤¬m ¾iuXC>¤¥I$°àêì´ìZß´ /H/¨™va’ÎÄÕÒg•¶/\IɈ(!H=FfuÞTÁ4DÉo…§ZÈ·HVWZ·¤Ù¥î†¼ª†R— ‚¨£{ÈC£¨fhÒ á -p§ ÑP# &cZ¢Ò”—öºS€mçDàú‚¨ùèõ³œ­Ös‚!ßnuÞºÅÌa¶íÊÜQJkïÙK­™?ÌRÜb)zysØÞ³¸†jˆ åÔ/4!4[ŸWóõN³”“8"¤Ý[R¢ÁòQ0kZWQGQ?Ê‘=âzÓ´`$mØ2´‹özà+2¦e,¿Ô¹:A -–þëá5n¨07f!­C‚Ì9(e+°¤c¼0FAÁZ¼M·(‰àF¿¤cQ°-™ŠòÍ’Åd4›’/6È©I"ÐYmc~Fû$†“ÉG `•Ì΀Ã2iUVß©& HséaÒ´á:ÈD$LíJÒæ/õ\kÅÕƒ ±Ë¦·ÀþÃûtZGfLZ‡Zá®!ùÙå.!Ê5~Mј2Ü'~€§<Ê‘I³B¿C¬ÞΈò›¡ìt¨Ÿ‘v ܌Ǡԅ„±Õx¬!mh°Ñ‡Ö{´”½õ\l(M3s4˜˜“ JEç£s‰MXø%­a“b™6Â~NFK2<üŠÏéÄé¬ÂÅ"õE -§Mè €jlÒ*Ò_…œ&)“Ji#“ÂßQÉhbZ!‚åî=L”%V°³£Åœ¬|×L½ <„`ôÑe!¶Ù­3Te:±,R†1¹žÂ( -q”(HÁ+< ”&Aá­””¾wˆ%e<¨Îi]0[ÊÌg–¤Ê̬ÌÞáš=ºÝ¢ƒ sš5µˆ7 ÛZ¼tU†½³Ê– ГÍhÚ´*,pä¾ÐNí´Îöz†‡£ù5>ÂãTCJ>ç7{BE·A6Z|!p…SñVè@É„ -Ý …+¡-€Èȼ@®Šä<ÏHD/†p{ DS.â”@sAÒûÒdë6‘” ‚ônƒ€+RtTƒ<]ŸÉ0…•Ñ[°LÈÕ:Mnÿ|"Ø %Ïaĉ$ ~¤]ÁgÈ@¨?®!Ï&án ¢d^Eú­ÀR¯€á<à…'<ô2þžý•4[:aà’âïtòÍòééÄÌPDy0t ŽF†"±ÍÄŽ¿ås_2$÷5m¶d‡yùjð½i0 H=€óNò4­¥ÎÂ:äji­6ÈòRO0…*ÙÉ÷´7—²N¹¤`¸ý²Á5z—eëÏ£—OGóƒÅèåÚL¢ž©C˜9ñß³ü³P6˜ î-GÉðâ[Èññ;IQÉwxÐEúžæ—3^øŒ-Oû—¹¿vׂð©ú{$ù h5%A®t ¿Õ}FJ]IO«üceŒ¿äžû/2Ê-åÞ]—/àz$Õ¨<—GZr(‚ †~Ä ?ÜJŽ ^Ko{´u¸}—“ z¼w9g³÷®½÷r9#§³JΪﲌ:‹¬^kV¨¬ÞU­×ugÉ»j²»ëoÍ*µÝ%yI"L{³†€Vh߬™s$o¸íÑÖ¬óï]žóÍÞ»vÎ9i²B]¿õx5)ýs×Û|kyUäL¦]³LxZÎÖnËêšx~` ¨zèU~•Yó*~òl7|«x×€ª‡î*«$(åð/¸và†O½ó}þ<þsñd>¿š\]®Ê:ŠGþ„fdô^¡íá\’˜½”(‹£6Î ~}r€L+®U&q•U9 "n]”åÛ;à¯k¾ñ—KZW¾z5°Û˜ùŸH†²,ŠË·#þvÀ_×|ã/—w£=Aà<éJ@´`Å6X)6ïÒþÀ« +/ÿ8;ÇT¥Ô›ƒƒ ÇEVÿòé'?^ào‘~{>½Jÿ}öò¿Ç'‹´ ñ çàéüêòõà‡Ñùè·ñ|ðl~ -Ú×-?è×ÃÑt:I"áâõä$7ý9QâË\,†ƒŸfWç§_®¶ýbzüy÷ ÕÜøH·±\ŽôÄ·ÓÑ‚HËãÙy¢íëNëÃ×£ùÉl4 žÏO&SnN8N©mç‰Ñâÿ½LŸÏ»sãPݯfå+üv¢5I¡í{Ò¥oRNTlL«‰͵ÄxSÜÒo|ï}»_þïóÙçø ÄíçO¦o//GÇß½øbðåiAl}ù$Iä7ciôåáìì¶Æ·“i2>—Âä|@MLö×¹Í_@qþòï“ËI›ˆt ’‹ÑÉï½<]NN:æ³ßÇ}Phüiúlž¬µ -’È0[ü4>™%ÑxŠ¿RÃLA·>Gc¾üzüjðÕàÓOŸW¸PCøj€/$=aðåóÑ|±v”‡³óÓ«Éb³ÞŒ -ÆÞ‹â7ÒFœL¿\Ž¿y3>vJu™‘Ä…bÏd¡}±ºêÿ©ÀåF?à§d‡%í³2¬®i1ÙÊü×à¢WHš.Ñ^úÔƒò÷E.ê‰x"Y›-X Šîõª'KA9wÆÖª¤÷ ;mG£› öt:>?½;Š}‰ø¶Ø{Õ˜ -Š•žùæÏñÉt†~DkXæ9„^w[ÞIO–g˜DiæžÏ^½º/¾Ày¹ÅçßO§Wh¿ÍæÃñŸP¡†¤ÜQÁdü¼ƒqp”H:øæÕ«$ýRóŸ'‹-¹÷çÏ®—Éh«¢è_O./¦£·ôõ‹÷ÎâeÓÓ4¾ïÏ©S3¢ÝÝWïG®½—¥}oÜ]:¦±R?3”ë챎°—„è¶ik1õbrv1-bŠž(djë÷<í»Å&RÍnÈÍ;y5³Ž&_æý´²VÐ*-uÝrPJ>k¨Úhc@­>iîPS RdƒÆ(È0}pcNCYÍ뽘°Wð?$ûTj7¸Õ{Q…îñ҃é-9ÐÇ£=žeñáýmbþ÷ÆÖÊÞG¹ë{+z7ŠÑã·¡îqíêÙ[?„ï™UfVf7™ÕÇ¡¡î:xŠ½ó&&yf¾i³$Ëš-dY…­È®›Ie)?qðùËñ›ñôßÆ“ß^/XP`báùÕÙ“ùâ‡Ñej'Жç$_qüçb~u:>]¬Ò\çmšÖ4;n£²bÇmâ²!—àŽXœ²Íün5Àä2EŒøÝùïåëQêÞl:›ó@i@óñ›Ùô͘u‹ô“É4À'~˜e)#E’}óçb|ž$(þdÙåÕüÕèdüäç.¿ü¢'ç¿¡Œïáþœ\ÊÛd-OÎßÐzøn<ëþr1ã/.f‹Àƒ°ƒUü4­íüÐð#êEÔ¿èÕ˜†ÇUÁè¥V6Ö|¶ø•–L ú½Ç4ì?¾¸}ƒÈ˦@Øç³ËÿàG×ùéëÉü?º]æ'~íöÁiºÆIm\¼Í„I{t Ù?ø—vù—_׿æ™—`Íüµ¦y8M£Mý‹^ƒAÉ ÇÄO:­¯[AzÍYLFÓÉ?óEõÆØ×A»lµß årŸ@³O ¹wËmïÓÝÀ£ð«sì=¹{çÈ’ø -ï]|­x@ep8›Ÿ'EåN„ÆÆMmW•ŒÃ¢ÄÁâ«ËöÂÞÓ³÷ô܇§çãáHq7êýÞÅ=LžCt 6Ú5xê„?€ËÐB²å¿ `CróÛ«þóíà‡Ñåï· MlIfÓõi›ßŽG‹×@úMÅ%Ô•pâûé6qùñ²±vÏÆölìQª"…E(ŽºgD×2¢§Ó«ñàÇñ®ñ{œëÚÝ„ÑCthsI¢RÔFr9ø¨êµ©½p¼uMe›;Kî½7 -¹Æ(s4ÔAGOWÕ´Xªê+º½Œr]¡L«•¿éÆc%”÷‰@ ã\P1/%“„kÇ~½Ð§›²Ä‡“@!z\7C«uh\&ÂÂQ@ pwÂú -ž7jï?J -Å`LTXƒ£i×bKË'çÓFÔÎÝ@{—dy4©ø´=wë9¸ G2ÇZqÊõ3ü°ô‰¾Òïu¾g…% øý©,v9ob ‹Ä4®’Í[“ä”}VPTU7ƒ\¿tüN/íök§÷Ú±6F| -*ÑÂq¬x¸Ç Ö#ïÓµë&ìöºù Ëfoüïã}ìæÃ×óY²–ÿmòÛë)e²î¢ùüÐ*n®x‹ éšÇ®w'­>ðN©Cœ|‡Ù¶_/Ò‚»|vÞMéÃøóù8ç® -ùûh>)ÝHÆäדÔ_¤e‚¶ÝGhç÷ìåÿ”–é_umÅÁmÔü²®¹—Xfij<_þr>9™Ž{/Ú´‚ô umU‹;{«ãGe6~§‘¤=ùó¬ó›ÌÆÊláÏLùÛæ²;qÍòÄu~ R5ß>ù¡Åê=*áN7èCpö -?¸Faº¿· -èZÙµüá¦% -¢l·@? íLŒ gJB1Ð;É¥éàÛÔ#Ï©ÿÿ}¾  û’ã>œqÊ´o3|öêrÑcçìEˆ°½ë"$ï¸ëN¨–]h¼Ž~/(îZPhôÔï®Ù~/–×ý\›÷”èu÷”À±ÀtÝM%tkÇCNÖÕK·Èìч_Dš:½ÓkÈÝÏ¡ƒG0ÿ&Þùôô ¯ç³‹Á‹×£ÓÙ»éûÙ'qÝâázŒà$quVúØݳé &×Õåøù‹£§Ó+²fÄL|=›ÿ³sÀûåôüúìÞ>·›½S€“éœÏs‹Gov1:Y>O;YΛñ|ÑÎÉåüdé˜üéhþ{×Wø’É¢<[58…”X7øæÏ‹QâËOǯfóñàïÕÙû â[ÿ_‰{ï¯Ù³ô÷«Ûá2[{9\ -báêã!ì4VaŽœ¨¨Z;L_õGw7HâÈ-&È5­¦\œ¶õpƒ:a½‡[Šï‚]ïßÛ9ä³+ÈwÓÙpÝŽ>÷œr8åP~Ëj¿›˜I…î]U_½;Šî^A½3öûŸ >ºš.þk›Ë.î$.MAÐkoÇÀ‹ù¾9?­®å»ý~¿ç£éx±Ó0ž¿Ü¼ßŸÿg}}î}øõŸ@¹îŸ~òüd•>ÿ÷דŘî±ÒT'±Tð®¿ãæóŸ¾{:øi|*/h¼j#&¹ “V£l¥Pšÿc<ŽÁOx<†eŠ+Oš~7Ï¥¥S¡¥«¦‡J;C‡/ÊHá÷£Ò>Fã15øVù¢˜VíáÀ´×¾¥°1‘"_Ì­ºíý6>_Œä‘¤Ë¥Ã`Cl*s:heñê·`óé}U‰NÙ`~5aý›jÍ໿™vðôoÖB6éiO×E[mñFO)Û-Þ.×>¬œÒ´±±ýÇtÊŒY'j}÷7fã«© ©µÁI÷1бà¦Q´ 8ÉÞHg»(컿µM%<žH§ï±³Ñy—¯¤•+$@A ½Té¿ gSã$B(8‹åeèÀDBo þèÓºm=æ”*“&€q:è&ôûéß\[pZ§Lî•Q1ÚŒ,Ÿ½h¥f"Vi £A:š2÷1¦¡ñ ¦D§•o(•>ò%:ºŠQáĤií`tp¤HÑÙ"C«©mLÌ•uóéìÀTLtk\+«È60â:é Ê`½¢PCÂp4°~“¦m,ÎGËG53J‡óUÂlÙUÞD‡&ƒƒ£<Ø_“FNg¡¤°¦Â=vÎÂtø2i@¸yŒ±Ááê‹x™dÚ‰w4ÓÎbšîK¬ñ5@?WöLH{ÑQ7Ò²‘æB*aÊ0igLÆÊ(•ªpEkñ˜WÛDì›uÁaª ,Ì@“r~µs6´r¡0ºžUŽ"K«ú¦uÙn18ƒtrÚ[ $U©>|B¦êŽ2Ð ñÛ´›ˆ 8‹hŒm- IûÒÝ·éC›ÈÊôrÿ|Bmq –»‡Ü>Í`Ú‚¸/­ÓˆTñÁ¦†÷„!¤¼'pKc(qY¿NcWCQy·µ´ŠµÆdr[*$FÑ¡©¼'ظi‚ ejmëö$‘ Å¤)Øn œõU¼Šù`>¹&Û-0ÓV¶l·Ä«#Ž.è׆jàªO\$­o0Sm˜¦/4²^”‹  ½­Ø‹J+ˆi[8n:ƒÆEb2{(¤,E^‘½h¦eÛÔ"<Ÿ‡Ii,o”"Cˆ)C*¬©Ž18-ZQ©#ìÏ´É­FÆŸ¤±%±xÍx2@Ë2ÎDZXÏwFEµÄÎ-nÌ„ÖÐÂNÂÅâ#Õ«ðEÖba%•©p ?•±¸ƒCÅM Me¢ª‰ø´ßk‘á‹°c `:Â.ñv0ɱª8 ŸUˆ7MÖÞµI”[Ä'<0ÏvRS#áÐaÜÕÞU$õ¸a4-N„O25ÒòTxNX¿œ²±ºž,àþ‰Îã&*|Ö(×¢§É¶*Ç7Iþášjc‹™„|-­%cHˆŠxñ°ÕJ¬¨ f¯ íŽ`Äm“>£tñ -«Ã³à2,³³Üé.”[³4IcÃÙó6±y®&m0s‡õ¦a!WÊ…o-q7CGÚ@Ná’5…k¶üËz"h)Ø™+Â;PF¹dm  N²3“W£îîÕò‡Œ7àþ³ TÜ7±pÔVœ6šŸNb壕;Šüca_I¥°(€3µ®þЗU -îÜòÆ­‘颕•þ[‚NüÇkC$Žš$‘#Až´™…šïHH’eÎ,KÈdM"{ÖÉô¤W¥Ù'û%pÇ–?0Ò@b••PXV’V{¨@Ý øÁ™laGù—KcQ© þ[lªh]Kw+ƒë/éîÁg+‹{´üAÔ‹M+XÚº6þ¶«W…Ö$ê>¦:ý·ì¾¿`õúÁwóÙÕEÙ‡y¡'^oùT'ÛV•†ßvÔ?oDÅוf™ÄGØùÛõ©¬Ö24!•DÚê¡R×Ò€ Ê£D0o²‹äZ+Ú¹5V4õ„&·…IÖK² -'Õ1†‹†q™º+iÇ -Zà¼&é¥0â\µÊH=Ѹ†CÙl:q‡ËMÒ ”òÁg­‘ÏVú-Ó'¶eá)Æ÷üiq¼‰{­xÜj_ܧŸüx‘wø»îŽ&—‹Žr)cMxèÓºÆ̧kÎUAw‘ôeÙqHo¿Ýw¸v$ª¡_¼={9›ª®]-³óãÙœŸÿ>,‡£ù)þðzvqéó €dû·DH¤ÙééàÛћٜü–ŸãØ¿àQ'RuÆ|ýòlFz6>_¤®¦õôÙñ— ß2|­|æøõ‡£g§ãk~þjðùŸgÓóÔà`´XÌ'/Ó -¡Ã ©ñ“yñͽ¥j—Ô·éé||ž[qX††ÿ,Þ^ŒóÏŸÿ?ç—ÇoFó˯ªãuÛ7#ð°æÆðÃå5 !É3·Ë½¹ì~ÝyR½œœŸ¦a«M(•Húb¼øi²¹êæyƒ=Ÿ_×õÎ@§³“ßáš… ÉMïrQ¼;!ÔÍ„Øl®'£—ÓñF;c“Ù½÷ÉïÏþúfs¶mÆ"‡q&1º˜=ö÷^—è_/G“šÍæ+õCì›pÇÃêÏãÚÊ—¯þxë{8ùåtròxظñÚ'³[I÷µãþcrŠ§¦oŸøÜòA°ïV…¡rÞß:¼×ùv¿ Æ÷º\xÿ<ˆÒIõ­üs³MûP†Õš0 .½m\o7×Û2.ÉŒ»v;¿Züÿ̽Wšó0®(ø~¾¯öPrÎ9çœ]αœ³Ë9õ=Ýw³ƒy™…ÌjfCRY–d9ôéû?Ôo[@‚ €Q:¯i+ix÷/ý£V yY;ÜÎÓy ÅþŸ¡W€íîÿˆ~ìæ×ñ (\èŒ÷íÎÈg„×DÏ1Z£Ÿ¨$ŸØv>ŸA^l2€[D÷âçÃz§¢t?ŽÀ]”n‡Åúívºˆ‹åÃzE#ÒToÛù™Åñôý躆"™oF=_'‡ñyöm½¿ÝaUS•ËÑ*¹IZ,ßF;YŠá¯Î·õCG÷¥|¸¬QCøØFu牗¬\‘½}&¼—?÷êűܶËö,±\¶W‰e·ýÏ“Ëcq|”\ögÉåu¼J.—ã?@.»ë£ärÎÏß—õ¯¥á°Éõ<Þ_Žãó|?ý'@»žæÿbœj8&gk -ƒ8‰N›Ãælôm½£ÜŒÛ.Q¶©ÄÆg*ÅåtÚÂM­Ì>qzØzÂDÀ"z±àZLÄ]msá¬q(¼Ñ—Eå6†bö»0ÿÇ|ûP'Øì@NkÕ$w“ù¬|>,ÖÛy~N6µñ5m­ÖÓÕ]S‡àL@ò¦ÆÓ9}ǺÐÒ-'RpõÑÌÚJ„A£Ñqa;„§¤¹žÿ/@C Î]Çû)ù‚VÖ@ù²\û~í:¦*’D´Ï€ >ì3Ì°áÖ¸aÍÔ}Tûl½6ßfÆW  ‡éx wË SOj ¦t~Î&Xm™Ïë0 ¢æp·ÇuúŠ8‘ÕM¯˜ööÊ`0 ™Ì hÚüçÃ1±ÀÚ¢h=€ÅmµÛôÔa½Tá´Ò¼,´N¤ÎóŽ0a€\«(IÇc·º±ly;ÞÏ¡„b‰7­¯±ÐžÑvnü€47°3xW¨«ÓíúT=wùß@Õ[.¢úêrƒ¾Bž—Ô×æx¿¾¬Àªar½à–J›PÙýlþß©õùr}z™Ñ4Âg“‰ÙíuJ¤4d<~BKï ã¾#RIP›Oû³Ûû €ÆÅ"€Û*qúðP žÙ“Þ jüœNX¾NÖÙŸÀ ˆH¶=ÇHÔðÑUh;€Ò÷‘\ :üÜk¨ƒ"ïùáPéÛ°8¢ùî¶,èÞ 0Àâ%èlâ^k¶~'˵ïW °ÕfØ$ -æ(T˜i{™)1lß@ýÇ5s1–¨`ƒ„¶D¦NÀDn8<Ìmw -áù2‡].8ÏD;±¹ˆ–„×i²ñÎ:hÊ •÷8¬&¯G¨%+蜟ë@«õÈ4Ól®ÒZ^GF7-‚ýÄ[Ÿ]€½õðs3ÕžÅÉÀ“`åξ'ÿüNœ×0“XtZ ˜=KÜ£šri(Üê1ýp`¦ûH·Ý' fÈñý@ÈÏæ—õrÏç:ç•Ø"ˆZ&j‰,) Ç\ºIßgØs?öíÙ´cùy›… €~U±Á¦”%7ÁoÇ!<®¼ÍÏ3°èáŽ<cnËP…¨B ÈËÛìHœÑˆ2B¼4‰3#шÌodX½Üfh_SÐ6üǃ‘^¦Çí”ë\ºo4Ý_DÙ4º½›y$0J0eÛñQ9ˆ†b@{Þ|=¢26»PW×>äeÔêŒÅ"å%° -®ð2d²3°X¼ÐÖ6¨´p•È¾þ¨Ñô|8>jµÛ5Ðܵ;3®˜}ˆLÆç‹Ø”²Õ“‡{«õ•9®G™Û‘½ŠÑ ­éžHhÌì ßÊZ쯦ÙöDÄÏ‹Ã^TÂv—Û„Z¥v¾Ùº€áÒ~gÞ ½ªÁâmöó嘑¨!Ðj*x˜s×ìKûжÖ)r/“ä—| áe5FÔ\ŒZ°Õü -nTRÆ)?§%§™›o7øíÚCÝãkv¾³Ðé(_Ó%ŸaÁ×Ø2GA|üF7Ä*4ݮŤ hÇl„@ËÃq*&qP‹‹Øô£³›¸ )"œÁû”`_$l%¨Ù⶟Šñ Þˆ0`)¾y° —Æû=ušÌï¢@ÍÓSÓÒ4L5Ó7~ Öø -”힦Ö*•{Úïð qàÏL‘O  í¶Þ‹1‚„;৻ŠyC-×ÕœuBN9 ¢d{!„“>ÿ/¯ÿ{¾-ÏÏðf~æ’#£ pBš,2/îÇ#Dcð· -Ðí=ão¡`Š»·Ø¸p_ÄÓÈð×$`{:ÂÊŒÚÙèÓ‘ïõA@÷Îórwê³:ü¯ÌzÆ•)&§Gx¡”D·‹æ—QŒâ›Q0àÞ -8…åD - îgðj*R¶¥’Eø—l[?¯w0æŒëå´uÀ¶¤¯FX¢£µ-°¨-å~•ÐÚšé¨|@‡º¨ºI6-†ËŠkœäLÔÏããQRãËÈ3x",¹»U¶©/»:_2§MS_aô=>Ï¿4ú&Ü8ß@}€Ž]¾ÿ×j¾ÿ¾Œÿq¼ÿf2,”›ßã ü¯ÀSQt¦ïÆÙÀþy¸}.ñ}ØÃ‹Ó dˆ·„u‡Ö,D†o€ŒzuÆú}=@Óù÷­ãñ÷vüOݼ]Oñð©Ëmº‚ÝËîÈÙ@ƒÁ±í9o w‡~}ù¾í7°’‡I|’s -@OÏë#SŠ27®1FÏ¢æk^cL¿ÚE¶/ö‡)º·/F€_ls/¯Å˜™Ø˜ÄOâ3ñºõÝaYðx6x–¿¿ÑP\•`vHÝ›WÑ|ætY”ô::?'÷w§Käxmt•Ê$¶žƒ£ÝºÎñ /k|\uF`¨„IICJ½¦¾ºí&ûñzKNÀ£¡0‚Íòkê”WÈhçÊõÓwø@¹cO;,gÅôI|,%Àiã'¶6Æ,Î’ˆ¨3óÏqÕùQl ¯©LmQÈcšk¬ùÿu8o»«ØÐÐ6GæÌ…;<¯AÅôòÏBŸttr lY†ºÆ~[ZÜêó¶ ‡ùá;:ñbP]Œ‘ Bðq2¿aÉ\Ï‹A‰a*¯­‡ì ˆÃõbM)ýϱNõÃEˆdDP)mr—‡jwÜã´ûL—„':=&ãkaüÏùùµõEkmâEDéS3|·ÑIXáDëì~ -öZî—Àüq™Ï+öèÔU`;as”€«Jz\»øBæÌÔS - ŸFÄÜ EYØ­°ÎºÊHjGxÄÕôž4½ãQ„ôÝ“¼úhÊyãæq"… ñ8er-èh¶6þǼl‰5x=Ê ·p»½¬XšÜaò]BZôå›A mWàøà Äoǘa‚x"R†ÐÀJÜ^®¦)#B[óÿý?ÿ×ÿû‹Ëâ5`,Î'Ž['»ß|Ëyý9wÞ†=u,iŽ­É®GkñlÖãLÌ!~ôÔ.©~õVPí· 9»ªdŒEÎéÝÊ·Üc¹fШãë±é¢p52I—Üi¤CEGØWè©‹‘ómêN%mEÒêpÈ-–Kâ/±4XÿÀ¤‹ ÇKä’·™šˆ¿€ÉV¹kl™©"Ǽ_Cӄɤ^Þá*Ì:¡;‘RúÜÝô5ñ×9ºFCtw(\k\WúK~K%ŠVìo«n4‰…%7á…¦p{îfå·­ÇMMa¬Ìv¾~$°Iõ#¾‹i§O”·”&=[4ˆ^©܉E¿åŽm#Û¶o[]ã+w×Ê¢ÈH•˜Z §H ¬ná€@§/ñÁrpŸT§Dv–ÅbFÏŸ"Z3Ê÷x'ÚãÙ  ñþiôÓäÔYÑÄWŽ¡?UÚUúØa¤ÄÕT|~Ó…š9ùÊ?Ž7ðÓZŸ\V8j«ÅJl‰ð2HjþÙßÏÍ&Õc¯s’h@«XŽêBŸî‚U¬ÂVsú͉ÅCDn`i„®®ëo­'þô‰…9JŽÇjEÌ5iT™Ä0­¯¦×hY1-Fë6;d¨»ß‘ƒ—fÝd{¾QT™—Å­ƒ ͳ53ä¤u‰E-9C$pÇZ}Hîoá³!4É¡Uߌ9Ú¹Tä|^5¾b+ŒfÉã\Ÿ]`u}ìàp©É:“ô$©ðÉ… ¿>xÓ¤[kÌ’súÀŸ´e -¹&‡ˆ¿~•Eë¹ëížšœÙdžœýöƒ¿Õ¡L;™ÖQ.©nUï<¥Qµñ•«ÚMN,]b~>,órÐOõ§EŽB::ÌYÏŒ£\²yS"ûçRŸUOí´ËGKƒX1_ä<k~2KÅg»’¤<óŽm]Á Üu-»±L]ät ý˜—érpUPØØ- _ëpß_n»)ød¸¦²‰×«÷;~84ñg/‡E|}Y»è4þ–mZy6CË?÷©v`MWµÉŠú`®›#±.{@¦ÙÁSeA—¾g»hm”K˜×AM -°Pg\Ñzñ°Œ4ëÙq*é©´š€Þ’ìQ9& ‡[JåòµÁÄß¼Ééæ¤"1 …²ãbZõ«.YTG«Û£ŽÙ®2ÎQ¨v¸«+)šïÔ`v0C¢“ †‘º[UŠNu+k Ñ©‹¨zÀÚª©ÔP‹­Ð@€ÞÏÁÒrN8OI€ 6¬‡ñºl«éCÒPŸ!+-°ÄÛ -}(è²£§Ñš!²¯×•›Ôù|Ƙ -$Zôf©Ûãíëň2¶ÍYLp¾~é…êö„×:G¤91»Ë™bÕ:4¢v¦HÚ´ŠAÜšŽ"ðSpº5h™O|a«AS¿…öKxSôüƒ2ŽÞD_]µ‚­ŸÑë†8ü-†ƒŠŒ)·Ó˜¨Ú†Ýc6 @ ÛÃ_®lõCÂÑ@„lªû!ê ?j»SF}B€£€¢xgàHñ1ÃnAÕáo~Fƒ`p©;͇}%‰AÖØE/ùáS40MM¼1ìNÈýÒ_¡ˆPC$¥Ð˜£¡g0$:¿’'ƒ3 g2ð— ½hàh ˆTlŠѸ诅:Mw aOhˆñD§ï4úD ÇJ%8—=$ðl\ ÆEó —s‰ÑÒ+ˆ­ ’"AzÔ°q‰®œ% ÐPd rFJ‘Ådžfw'N¿‹žr°’sC/@ß°¦6D3/j ‰åY2~ª‹eJŒà¬JŒ&…h‰àJ%7£¢Lƒ¨YÒ’ⓆhpÔ}ŽÑœD PP/«.U[BŸð) Æêv5M ÎÿìÄFèî£ÕÅ2Îü‘³DëÍü>±Z7MZ™²85.†Ær«(©áµ®‹ø-eŒ6TÐ뉥QÆ5«RangÂàYÅ`Wý´*ÄÓƒÊâÞÜ&eK!?9!f´ ®/¿%ìŶûfܲðƳ4 Ü:@°c™˜ã³X F.”¾ ÌÍï êõçÔŠçC#·»®›ƒ©Ú8åõhªèÃÍñ‰„Rw#GW¾#«`…QüåƒÎ—R´–žý­>x¶E˜u5`P˜ƒš›ml?Õ^]nˆÌȈ‡¡ÜyÙWc5ôÙð`ÿ4j¸­QØIÎtÅ ž‰ÂàN ú:y*¹¿lJïÎC÷¸§…\¬RŽ€í²³û!œ.p*?µ&b<ô7£È½ÐfôâÙĶ x¤bŒÖãFr½†³Ÿ³ä’§8쎖ՄM]ÛöÉåi±¹¢ªÄÄ1¯ññ×ZDØ>&4‰Ëºíè]Qt%ƒdŒ‰ÜY7z¼Œ=ËZÀœé y±ÂpeIõ"v6HèeXþÒ+ŽvÖùr6£†—¹Œ¿UDRÂÄuQ½$õ:ׂ޳ŒÇali*®Wœƒùú)aNÙÍ&k¦i€Mê€6&3ËÇWœ{§7³ ‘ -ßùͲ”luÄ™J\zŸÕƒý¤´ò•¹…µffÆ`¹tZÑj]ßKŽ\Ç+üôÇ…ËoÜF‡ë†r&dW-ÎÌýœhªON+Ú t?ŒÁKŸÅ)•ùýÛzÔZ~äêI&´vÀª‘z"w©@¯º‘™,#¾–Øû‰¥.êî/µ ß`\MälôÞ€²mÁ&å䤮Öñtß 4•€Ò+ÖéNd‘ÈçëVè2úæGJëqáêE]¥¨¥†rÕÌeÔy5wK˜ª3cÄ÷ó·aìwp¾\²Ô>N8ˆ‰ß è4žjþ$`·Ê-ÏÈ•ô3ã!P¶RÓ] ·\4‡`jµËør¹œDíW¬ Hö…ûÁáí ž†š:¼½`+¼‰3Ýñ4ñƶfÌ Õ&ГûN@ͤ 8)‹9œ¾)hasÏKðüB?]ÃÅHNÌÝ#ƒ5ðo@oq•£%_2ñÇŽ µ‘Úo¬qƒ6âï7Êšñp?^ à–ò pa¿þ´Ç^§db"=ëØ892.·`ÓÉ›’ƒq­ ­#‘ê ä% ñžÇyö·ÐÑ+ìj§ã?ñ¦•VË –]*7€7¼2 ¡aÀ·îNb±¨ØxHjŒØé¥MÊ[/›ez4\Ð>œ¥º_ |\$«àâéžKÀºi†7‘@è˜h€8ó{’Ýé¤Ëè¯Í%—µ4_FÜWK+])L»ùåmâYùÛqkcw¡œ•85½›h²u{«ÓÀþ”þ‹æ[±"`ù/œýblW -9¥•ÐÿØPFh¹ Ícq:`Ó,û6äTeŒ‘f¾½¦}¨ðt'΄:íÀr[b‘Sx:gaUߢžÉqI¯9‚êîsQãI+“:;c -‚y»Ò’ýMˆ× m§ˆïDz†Tµà9`è ÞUO~Läs‹M&ØsØ8LƒvÏŠf-ÿ†zÑÚ­~#t8WÅ’œNCÖØöo¶¡fÕ­m#æhÉ»ôÄ‹¦_°Mi†Žû%Ð5À5j@‚u@`¯$ 1\Õ‘@pS« ìq)df¥÷ï4®Â]v Ÿ9rU'¯ª,FÂy£¥F&­‚è3럠Ó-ÚFhh:À“—X@«PNÒhQ¹ò‰=ö—©xØïb,JR;r1ô.H͘C·eéý;«Ûh`«=~Lí<‹Mu×T¹Ä"šêÅb¼§—|ufúYxBTJô×9/š¢&Zs Ó0T×hMÏE÷Ý)HM/R–,ä~Ú(]VKçů?™˜¶ÂMŸmT$òýº=¥9T¬ÌÆÞè0RKAè'ƒÜ nk@im•£r3î uÊ°CÞï‹1‘ͶÐÒØ&æ,ZÑ™›@.®äPw²:÷zs‚+ÓWaY$"ŽTdl#;Ÿ‡Ó˜[ycp¥´ì™† +vôÀô˜&aPº2ò¨ÇhU³(lÃ8)¤öÍVžÐ›=`C¬6 <Œ, îc]ØEW*YlzÄ´-ô@%涛ÀœSŠÆI ÏTŠD®ä÷ -·üÕíì+0- ç蛋=ÏÈr?CAçB›%¦ääŽn0&­¯¨·ÿFëue…Þ¤ÑÚwnNñŸdeÛõ -hº«¡{-À’·5èe]õ²q¸ßná!ŠÞb×i´D”µÝóêtÇ\úÚ¬µ{½–W¹%Äij˜¿Ç´2U?ƶ»ƒ‡-œæÕ|0â, z4e•>-©ûI£Ë}ÀOy¢UìŒhÃb¨\ƒ9B$v3õjü'qé½"æÏ+½D*ªÊE™¸‰ƒ¦Ò“ƒ:æ2И€«Kw?7#q‹c´º7«‚½„ïÈÎ*×DN£I¡“èÄ; Hž‘ñÊ!ƒ¡ƒ~ÐýЫ:’{××¥¾ŽÞMi²ãvä¢mËÀ~cïy;2#X/¤°!í†r×]ÞöPtK§K0ÜzkWè¤Kr%%Ä(ùEn܄Ⱥ–&˜€&qË(Ft¦w×f‡@ú¨io¢o6›Ö}¶±®Û­õt»ÛÞ'•kŒviâM~“[jÔ¿­`T‡yM#ˆær¬ÞÐqj©TÄr©a’IflR54ÑýdI«-,Û._„íŒX\2@›ÑšspÃeZGÉD`‡4Üuš|ÞMä¯F¾k± kHæQ hŒGË%j ü.]ľ1už°'tkó¨ ù\v¤j=¬J:z QŸœ BIe56–ò™1Tˆ:6Ô'hâݪȒÓÎü×?nþæä¦÷°NÚ«0wŒÖðÆ#W£ôû‡ïõBªÇN7†DÓ^ý‡äÔ¥uÆŠZíÚ½ÏVô÷Žo\ò«ÁÚWt“ÆŽgs´ìF ¬†%šë”‡ÁªškÀn°Þ†¤ ú'¾MÞÊ9€ÜÍm,­ÝÎÊî4À^‰¯"3°%nã­è!ºÐ°C­hQPî °Œmtf¨“Ó›lMÛMôÑ? u×vnÒȪ!}¹]o¤UÑ«PHÛGîvöŸ!ºce ömpQô9laaôŽ>ø³¥LÕåk7&`4sxF6Õþ( Ž9ËjQZ€¡gdŒÕå“÷%E29½C}²¨÷‚Õ§7€µT‡ -Trj¹¿¡:*¼ä¯Â»lAß2h ð¸ÐËÿ¢òØá‚ T‹ðq¼†aÉ›·œ‹ ±N(dO˜K¯?5Vžƒ±Ú¢(/Øý?vnY0•#SøJ‘«w*öþå)un«”*]8þë_ÿÂ0í(a:µ Ã49ÈÂg!Yúý Ál‘s%kgøµ] [ðAYdžt,2Oã=R­`g¤Ù?iÁµ}MŽ¦ÙüêG_cv? ¿–ðÆõîÔ¿NÑר§b?‚ˆzÊ ðI„_¡ÈH«MQø¢ƒ­dÕ´rócŸ ?ðõ$X(u3üŠºêª‘ñ>­èi*>?Ÿà×üjLŽB' ü0¼Î˜m59£¯øh¼ o.çŽnDg?ø/ÀþÇàm‹,HÜ¢&{!¬³ÇÌÆr´~º‰ÓÙ½5ýäDáû…Ñ+ÊDþf ª!zÂM Í€>*ÇV¶DÖ^´%¿>˨i­þë_€uΗ+·^ºêÆN×–ÄŒ1ójÒ“s^‡ÿ¡‰†SØXS¨ÛtñOg@¹ ÒZ?D?Â×Áï90Tu~~߬ÉÆ2œ¢Ò<ÉVé»ÓÄ*µ°ÇÞû1YÓ±N·­ÎªXÒ,w iLËÓ@Ÿm‚IÕ¡­KÇz®Qlã›"§Î:Æà(,<@$˜©6' -—7°gK.W~ -c,3>°Ò -VhƺõÉBêÇeWܦÿú—y“ËcúÐõì&¨´ÏùˆH˜å ^µVnÈ—¹;Ù]¤bÈWeÎ/ô÷î×Úàô§dD¦„˜áÍwä@s?ýécFoåmÃÈ ;qlëTNXÒÀÛ‡ EVÉÜ…Œ@dÅ’¶E:j=aŒå„Ø¡={"V,†¸KÌè¿3ÿ “k­FLnžî0Ù,ó‡a‰–0ï9ŽaáÜöTFL˜V×—aÚŸö Óù¼:Äìøì‚&ÄêÕôá7 Ë¿\-ãV¦¥>2B&ÇT˜LÕ÷arCâSØôLé«X,ÁCBLí³¤1Mxû‹i“µ¦ËûM˜¾"‹a†æ ‰{É?Ì41j1órÄ,»r³^ÜsÌ.¿*0û­áÂœª@säÌmž1O¤hǼ)Gó5°æŸNá4aAUË…B¹n—XdoÕc1Ÿ.ÅåC,©:+°TùÁ2ÊcË–Žr,o¼E±ÂX9Ä~Âz-VV¹²Xe]cµlÑ5,íÖ¼ýÉ°öÁĺà ôqa½và *Û6ª; ؤY­a³öQ-f¡¶:Œ¯ØFeÉ`;_ç„J¦4vš¶NØÕ`ËÈ°ìø&“cE™*&WÉ4«vC¦‡-2ãE9’YŠc¿Ìn-î™óÏ—“y~ԙ߷ïÉBêq@9wN²øªZ“¥y‡,ÛÏne…^¦$+ÍŠYu[ÙË×f]Ö±@½èV&Ö°¡l²¨þ¬M¶n;ù±/;–=Yˆæªn¸ä²ÚY!W9Â+¹v=iÉ5`EZíÜ©²ëåžÝø"Œü y¤úו'~r%y¦fIÉ ­MP^îUòú_Ð(ïȵjyß{”ÉÇåñY>_Övò?[þ ‘ï«ñ•ü¢Š.²Rx¡PâK…~^),þüŸÂ‰5v -ooxR„òGLOXÕŠŒ=jTõ-§¢j¸-“/­è™›eÅØ'ÿU,Šù•b3ºÜÇkÚ¤Äü7”¢Tµ -JýM Ô¼Ÿñ^éºFõÊÀ*¤ŒY5ezUY)‹ù VYs›"ÊŽìÚV¶›“rö·v)ÿ†£²ò¸˜îTØlìP©7³ŠÊ¤ÚU·Ì¯ò•­¿ªÈ: -•UÚÕÌ«ŠíÍ^UW‚ªn%=Q-k‡j9wþªö‰–Iu3j[jÕ¥eTçæ¶ÚÑì›ÔþŠ¿§Žåu¶T›©Ë½PXÝZkŽêÁmUT/\½zWÈÕ×M$ ¥¡:Ä4¦…·­qy]>MðÏsÕ$Sþ¶¦d¤¦¾¯©4½Þxª™åŽÍ6fqi®±¼L«ŽÍ§Zs\_Öº …6<¸˜´éSâ¢-›63m;oiG,¯]‡êö´õ8uÊÄI¯3©~å:W?qÒ…3Ž.cWÌuÕa¬ëæÝd;îé6ëþ¯îzþêµÚe_oó†zF6Ñ'F–…þÇØê[ÅöY?–]”ú¿¢Ç¤¿Êªð,Ò Êc[*ûc¿†ä%µ6”¦¹¡Ó/Û Ó‘=iØM6-£l_ßÊÞèö£ÆèÏ©eÌocÓÙ³G½VѸ1UWÆÛ²k1éc¿E“K5Ùš"«#DcÊ75-S³P˜ÆùFÆ´Íí·fYÎ0«Õ‰Ù3“;Íñ[f`.ù®vs·‘˜;:ͧò`bÑh¢‹½!ßXÂÎqÊ’»–å–æ2ѲL*v§e[•Y 4;­Ö­Ù¬iWÖìØR´6n›ub¬ûL¹iSžÖQ›-¨ÖÛB‡äÖ–:¶¶Î”¶Íæ5·íT«íÚDmow9´#{Ü9jØËî°>½Šˆý¯°ô8d­’›¯q½#p«¹Ž^æhëWǼ£¸8.vÅÅ©ßè®NoË-s¦ãq¥³a.iSãÒâ<tn—N »<ÖQÆ•Š™k®zµ6tM¶š­ëäí¨ÜºžÃåöjg(.=È·ÝÍmãž:÷e7›b©å d2GO>sxº!ÿgüy奈Ík›çËÞ˜ªyôV’«€w4W€•ï |ºu§âó¥d_á´¯3_}ëz:ÔýŠüöàwÄÓ)"¡¾øë‰~Á?kåÔþëØÒ -X4rg ÿ[Ê«i60öô´Ó¢; -Ãx0¤›iƒ?ãÕ48l*òÁcÎiÒùs(˜˜ôC?y]64ì! „Žë£*l4Æ7áÐϹ. åð8eH„ÏDZ7b.¥Í‘¨Û®ŽÔ4J,2ÛmŽQlÐßDíãßu49ë,£­ekýSWÀÂÜüż•Û.–?ZαA,-ÏSh«ÇM?:{¼ºÚá'›#PñÙ©êzà·‡ë×XbáMo`0Ç8±°tBÔS›>Xu­0­=ÄŒf5 ?VÎ&Tý®3¬ÖàÙhñ›¯†Šíf´ms°£AøX\[q\l—"è]bã—F!{Ìc÷Óu×E (ÈÃB?µd†s¤q2y5r‘¼÷òd-SêÐu4“ç^×’è¦:õT0œZuQ÷ž@cWTôq£® -\BƇle¯í®Uár>û/u€Åµ˜5| tß.žÔµi€z>SYê ÷Ü·\¸ç¦¥1:>7‰É|ñ¤ž“ÿ|MoÁëkïÜ/ö*üXÓîÓ—˜x±?P¡à ¦±ºÖù´’kÓœ/Vå™kÙÚsÈl>*â‹ÚP4 -`u®4cu'ÉÕ¡íé¶%ÿXa导qÜø†kIÅò¬.¹bÖ°v–Ôâ§FcýBù¢â4PYsÃ:/ÖtÆV¤°­ªVÀ‘“${^a"ç¹w  bíýÔj:öß­U °:w U°Ä¬eµšƒÕéÜ 4VC㈇çþj_À»Ü)…•ë <ª -a…ž_…]ãïñ7€õ/òռʵ׆NŠ]«Þ¿õ…h¬pnØ ¥ w#%~¬ŽNÇ’òZ~x±ÊRK·¢º³•ø°Â@€T¿Ÿ®K®Üì‹q!¬cKÚ0jòcM[¢ê¹ÆÝAXQ0-›ÈW¹!L`í5"‡A‚ÂÉÞ&ÅÂÚ X -n£bÕq°4Yf~pUÇF@ì>rÙ¸ðÛ `uÉÝ›Yj „5a)êú^„qg¸Ù“/òwþ©òb­ùÕvA¬ùyÍnáÊ6ǯÑRje|ýÈò™ùÏoW«áÅÚTï—‚Xk«Êh‚°B[ìn¸¿iK3 ðc-Ø•T$äÇzÌÉø°B 7‡iÙU€È¿%K+œOðc-†’ÃA¥ßçÅÚ/m²+Úoî‡û×qÎRX{Kÿ²5òcýù;îJ^ƒ¢Aˆ‡Yã^ÈgeM `í4,Éõ.Ç‹Õóc”a‘¾Ê4€Øwâ.žÛÐ=$°NìZÎâÑv cÂjS‡4öX –‘Î…X 4Vˆ"pÿNäbç û*&…e‡ù¨Žk6`£‡.v·2 Õàà|Ú©XwM¡§+Kf¤¼ÑOï7 ˆ*×Á<¨ôq²cs7ç©ËcÖ‰§—ç~yºö+Y›¯.!ËY_Oð©Ç¦«Ž„Ÿ®Æ5M´ûQ›ª;|ZÐïÃ6᧓ÒÂO?åÍ%/ɦ“ŒÀ람*h\ð§ õÉËy·¡_“jëÂ*óÝ­1ÉÕö| p‰—Ðo΂O[ʉ~ÚKø‚ÑxŒ”·Bðéßµ|Ì>Ý4m± -ýôžh»M*4zô©âw ->ÍÙ¡¶Ñ”Óý¤Vz]…©²=àÓd´8™ >ÍÙÂ2«Ñ¢˜M¡õ ¶Õ8Ѥ™å¤ -tºQ¿¨ ®{Ó‘µzB83ÆPV±iH¹è@-9§R‰þ@¶lqÌ(¾nm¼YN·˜}ÞÔ€ƒ‹›:laøÝ8DDu(:û·Xþáá¢û¸ÑÏ3B5&8B87Ô ÑÁi$ç°&{<‡rj„:’Óø õÚ†½¤Ïáq)axH¤—4«.ö—…8í!Û“ôòŸâ/š¹Ø›4Î_éÞéyêó’¨<]’¡ß¦¾-ÖõæÄIˆ&@/¶ÒÞK¡A’-…ì‚RÉ4ÑIö²g& ©N³h¨Â¥?ùèÎ’È=2$ ø‚|Ö=?ù:FLPˆ .OäÀã\GöüàXÛŸ=ܬ‘;WG¼=Iè9ãbmkŒqÍË&Áw25 Ð4O ‰WØ_›A_j=2Ù}¤UÞµSe8ZÇ -uu‚8#x‘6á{uÐIöa24òñC³J…Æ -‘žyL¤»_€ã”Ô(¾úàî9–µo¢*·Vüó«gqÜñ“šdžoJ!ј³ -ÿ€Y¥=Ø÷ FH‰Ä{)U¨>1:†æšæí[(=¹ 3b™_æ;íì~ZFaQ?-³ô#íLªÚx Zp§’ MÒŽó{ܦ áñÄ$§!Y2Ï+U¼R`–fKmzô^,Ò§k8'¼{–ªD¤èz OŠ9}øî)a½ -qmã¡EÀšÆ½RTÛxbÓå Š`è7 Õö:—§$hì æÙŽQ‡Å´Ž¸‘óÌ0™ÚÞûDž?I4¶t{²cGŽÏfä>ßY·×ÐåEÍ™}~z”á3…t]Þ=Ûk¯°G2¡}ó/ÏkXö¹åkŸÏ™ÓøÉîÝlfà‰K¦2ØŸ'PG¦’j›ÐZ'—@¡ µS?ô7ðkŒŽxà_7§*t·9=!ú¾3䤞pµÎ×Èò@0zBXÒz=k™>ïß'Lwül“¿DG Ùú—‰‰á -Ÿ²÷“O`pÓlx%‰ÀBÉŠë"øº‘Ü-ù‹¢€#:áÚë_•â;µTQ¥Ed¿€ðÕ¨NxÕž¥@<ö|pÕ|†wð/ [Ÿ`­ÄÕšì_Ò´Œ`GÛñZF¦;X+»T.%½Äè%}± šE¸èõäbgÑ‹Zìè »Â»1³Wz†½ØyóǾ(À¼2‰Î1§CŽëÈåvGÌ‘Ëu¦ìrlý^Àt~ìȃc,(’žö¨ä`¤CQª#„6£¸ÉÝØ;õ ŽÀ 's7eÒç‹³Ë -8‰=Mȯ·ËÁsâÎ[N"H ÞAŽPðí@¹¤14Cˆ²\G–š¹qÕlÀ ÂþGRBKд!¥ó\5ûòzê‘R¼GRöpíæ°ÓZ{jkÌs´äׯ¢ÜcvÏÓ»!½ß¼àÆ>湡Ðð#â@3'¾Ò'…±ÍçºCž°ã€Þ]Š8Ê⤡Pú@Ïo„´_€ë ñ¹m•}ʨÆUƒ†­ŒÆQDìGŽ'â(Ì•:¿[¶Ífzþ¤P@³€A£:IÔd(¦¾{[ãJ·ËF{'Ý.î1 éÆïL‰ÚDNïJ·-Ý(÷ýž í±t£ýΠ ´×¥½<ÓÍä˜9>éö¼€ž—n÷^ÐûÒ BùÀ).$rœdˆi¨S 3C³ay˜»Ró fg3O ù‡¡Ê‰ëFÑWþöîQ.µß,Ô'a‘$Qc‹ƒ_ºò­jÂyÿœÐКØSžx Ý*Ø«º‰,n¶ÁþŠÚfŽ0%(l’¦ø BÁ}6ÐûQŠ€ÙÍ=È ˆ}†/Ñ-Íw }ÂÉoŽ`„z¤r°÷Gð³ñíŸÁªcYõò¾QØnIu~1½‚ûcë)íÿçB{_ûïø6ǧ·58sÏ{Àx¶5èퟅÚßØÖ íŸ -mâ -’º?ŠoŽ¸°éÞÞY›ã{䌣?$Ô Š"Þ(/r÷d…fÑ¡‚úÁð,2-Lj¤áµÛï8¹¹gÚ»ëœÑ1žEþ º[„h’4ar6!“ L¨IÒŠ9†’6™êà+{œ> ²5ôpqwª¸Éx·MÅMfi¶§„ÊkÏ#…Cã„ü o6iÔ”°È&—†öh‚g?´kHj?€fWøó…8SÑÜÏéŽp6‡&iž[šÀ²ïˆFúâl‹gHê–D¶¸[dä&/bzƒ 9‹{^Ø”·wYbÆ}e¯lLbƨ}3ø’|¹|_øE3ï§ó1·µû\¾/NÒÒËé|â¹|¸„þ@:Ÿ V”Ë÷%˜ºød:Ÿx.ß3uñt>ñ\>¶:øF:Ÿx.ß+uñt>ñ\¾/‘ÔŧÒùÄsù¾PêâÒùÄÛ}Yßo§óÝ­`V.mx¼™Î'žË‡ëiÓùXÐ"™neuŠO‰¼NFâÑH迃8ñ8V\'-i+ŵ¤_¼Mpc'‚dño‚­<7}Ì“Â7 -äeRùu,¦åd¯Rû¾FJRÚüoÞ|äoᜊAò’6BÜ;ø(‰Oò9Ž.žu#ðæçûÄ›»%îèë_òÍSù{’ÄN’_ˆz.ëúT| ŸÆbò¼»YÈ׌_lö¶{«c”‹Ž²Ö¥Ý±.Ÿu%â &þ]O3žv'tìÃ1£¥Ý ±â§LÑ™ 1aÙ¯¬”$'â‹•À, ;ÀËzâ3±&bJ“_ãÔS–1¾<…Œã‰]8Tó©¤×/”…W”˜ùØèÅw0Nëi÷¾¶G¾ÆçÈñ¨€w¼º¯z¥Õ1Ád4¦ÅÍG{¨ŽIÎ)¼=Œ¼"§pò0ÿFÎòq çÈ 'ራÙ<‘÷êàJ.Ô­_Ψð>Ž¼—–0K³½ž¼sø%5§Ðs~”“#Æœxíc9«gúÜD01æhÿ ¢±Ý²ïíaâªôaÒÒí5¢±ýŶX»cdQe8áü_< eÒÔÜ;Wñ½F­ùª€¯S°—Éö €»HÈ`<ºÇÌõuý‡´¬½—fih‘°ßŠÿò€Év½_ÿ%êˆéqvÞ÷‹eëqbE("¦Ï€!‰ßÏBÎ4 Ów¹K!Ð$®¨ÎHRøLªw¼7L¿@î}ï   y"îïÍ×]êâûÞ˜ÇñÞp”[鹂Ž§¼7üg9 BÒ²ƒ`¶ XxZZˆ ,Rba+ÒyZ‘‰U—¢HÛà ½\G|‰gHóŸ‰@s㫨?ãƒóiEKɇ{1jžµßÀL6a_ÔilwÁ_¼©‹RüžÐå †E)~cESüɬ•ãÉ°“¼èýZŒeÌÔ:EÃË÷÷«Âß$î|ähƒž>“™‡Ð|"lO<3Oä÷“™y¼a×åݧ3óÞÉñx"3O4ös™yÈÝýæR”™G¬<B|#3jE¾¤þtfÞ÷.U<9ïÓ™yŒÉÇ›Ùë™yìC/ !¯eæÝYkBçB0§î‰ÿpËûXè%ŽÔ:¥„^6’B/JËÆþ®jG1Ò.2¿¤5’,À^í·×#')O@¦}:)Ï#úDRÿÜ|<)ï _'›hâ&þ3¶çIyLž—÷oIÊãs?ü’òüi-¸Ž˜ÆÈ -_Ìû¡Å²¯V‚a±Rn¿çèiqÓ»Ijå”æ„”àx†Ð„ïç{V³¹»BùÙ“‰/Fª|GâØÍÃ@°óí 4³®¹)~=Á |¸{åRåÙ.è• Kéøó€J€†J«ô¶9&ä³[2åUD©z¨œŒ˜¯j¸¤êaw•[Ot“çH4ãªçâ1Ó4™ó°ìBíHîOÊ-»Ó„ŠÆ—ý†Ì("QêW8ÎSñ•™LÆN»óOKE¦ÓšÕ¹Ò)ØáK(ÙÏÑi‹¥ÝÍÌ‚X-©zL4ÙOYZÇBXG"XÓF/+7#̧¿0ÝvÜ´;G{U Š6rRÑd±´;«‰ƒõ‹]§Ð¿JösÉå'×­'”v÷+–ý¶{ìw¨×±ª -óÕLëüAÂJ[kòç7-HaÅÞî -a…ÊíÝÔ‚¥K }"ØÝ'±Ÿ¯á~`5uô -’@:´e¼±™\<*êeF…R·-wó9Kˆïe+·ú=1Ö)SYuøLr‘„`X®ƒE¸¦×IBŸ˜gk"Ýzû(x„0q?Y^¯äÊÏ 0|QbåõžsÛý&$Gb>HÎÄo¸|"vðQe=ñØAé\õ ²žàïÎo -­H¡„ê -’ ÿ¨Æ -÷6¸7Šê=±nÒsázL‚¡µR«ò=p¿’Ø÷¢ÏæÙÄ>>+tÛ}0±Oê}6o&öñyïÖÍû‰}|Y}_¯&b -'öñ¹ñüßIìc†X¼ôIáÇûø@}=¸Ìä…ľW7é'ûøÎyèÝóc‰}|Y},¿Àgûø²ú¤F =‘ØÇç¥'MÜ&öñÍ0î þhbŸÊÊRýLb_Vß—ÀÕúo$öÝ÷i%Q ^MìãS[Ñ>›ØÇ7‡|¡Vo&öqA=®ÀüRbŸ ÖùÙľ'ˆöNbÔÝ û‡û^#ÚÓ‰}â™^KìÈúþtbˆæÉ}|‡-ÜÈû$öñ -Ž‰û‰Ä¾G+Jì“°ß|"± UýS‰}Ê>“ØÇ—ÕÇ2’ùˆh¤mDÑþ²ÏÝ9%\Ó쾆'ÇŒ’œ}uz°ìYôw„TŽ7ªøÝõ銎‰>]ÅODåFª«^ý©h:±.a’èCmC"°R#¾Ò±…ºÅé“T¡@F‰t‹}¶õRŸÑ@·žªS-Ö'þØ aa#B*‘:Õòmkl“)lÍ]8&“]á=>¨/îÊ£¶5ÑúoÿûbÜÑ%Q_¥øŸ °aÕÿ{upÔµo_B eÒrú$Å\<ˆ‡¦ëÿ½7_éÎñKJ™Q§–¤â6oÿ#5ñúoÿû³ðÔÿ“vütÌâŽ.{¸aŸÈ'r<ò :æiuœ/œGòà‚Z©\*|LËö=Œp|Ä¥0¡šØâÎ{I9}R"¨!šGùŽÂ‘!’“!‘àÆ'‚Ô …†–Vo  –«¹)Mð*XÁQñÝj%t`”.ï^Ì/c‡ZÖzƒ.9Ô -€zŸ&9Ô -@“D.Iág1ß?IµEn='Y@" I5pù 0ÇjŸXŠÊ]šýoóãL{MR¶¯`å n¶omŸí[ÛðzCí#uŸqNý•"ؘ›™ 5ë|Ô䟦±)µ­»?†I÷!Ûâ»PÔöü²ùLb u³óóêÅ=¨ÂM’Ö)%…<( Ÿ6K—§Š{ áÁZtoë8ÑðÑ'}âл¾q(äb¤wϧŠq²g¦P’w7 _Š†ì›gëô=U QSDOë|îV­~„÷¡¼ÛŽà­Z/h6“ËSÅ04¿˜wËX¨ThÇ—„tìÇy· OÒÓ±Åòn wœŒ‚›!©ÂÜ»L°žØXã1s®•ÏsÐ;˜ëkõàa¤wOé2J5Lµ{©™M’%ðy„>gâ+ð'\ebeeæ4y³Sfz¶Ø¥é|ñߎ@fžV8ð|ù¬ ÍI ´è„]r…»ªí åö±ÂÑÈRG»àp-iy·!ˆU˜–B¥é´4Ö/*¡Œ&rÙic`eçÈ]Ôn]aÑÎIºÔj¿[>¬ $2·+%pÌMDdR8( `uÉ•ŽŸÄˆá¹å&ç E°¦.a¬éŠ¼Ë‡õ ÕÂódX©ž\¬U± -‹ù¦0Öd²‘bŽÄ -ØÀ@}"²Boº ™Ííìq‹`»/f¾§e¤óE%€Ôû×$½q‚Qw\u”:ì!]Cìý4.â_¦v>‰Ñ™€®N-:Nbj6 š¶k<ÈM®zìLN‹ºÜìbhánÅ¥äW=N®º|}ª0 ò?*L#Õï”Üœ>R³au«öLŒ›X ÷"Í7ÒãD‚âtúú/i\Å98{v„´»æ>]‚R Ow1`wëF2៊hĺ%ì_~®OPt -‡=º‹Ã刮d/¤cŸ„'y*ƼfiàY ×{?òÜ’Ÿº‰²cĸÂæõŒ(Q·´äc¢Aò+v¿è É»{ï^J»ã?ÿf†(JJI|Í#ÍŽRE)‰ïÞ®ËwßÝ—`ÞÚ#«æþ¾;IÀŸÆEá9¬§ž*ñ "lR³¤Ç©;aóê:žû'´ ñC¯ÇEýX}ãž<öñ}¡:…‚Çé."aã9?¯¤ì`\má3ÆçÚîëx¼Q©N<›êë©L/ïSW10úÄÍ¿™¥Å|ÎUuVŸäÑ7cý>™—¸QHÈ-ýbÞÑ%’—ø¨ôƒ9däÏÒS…$s§ ôo™' =*$¤¾KùÆÙeÞ$ÚÃl"éÃdŸ€¾K´‡%…ž#ZÁÑ€v—Å̧6’D{1%Qj>â£ü›Ç‰j’òÅBâ%¤$JÍGäñC?“’(5‘†})%Qj>"îî~9%‘Å/"Vè]Ìís)‰RóÑ^OI¤I*.A¾Ø™^Ϧ$JÍG¤-é—Rút—È:÷Ä{t?®÷‹~I/R÷N±BæhþÅ -ïÝÿ–b…_ŠÔ}¦X!‘±"®¶¼_¬ðë¿”<úâÇ‹Þ»íþ-Å -yC?_¬ðKR}ÏwŠ²Ü°[.ÁnTz”±,\íP<1扂‡â.‰ÇÑv J»Õê킇ŒÁ}âV+¡‚‡OÆ@½ZðP¼Ú!Ÿò¥‚‡â.$ƒýù‚‡ü,(~«Õ %0ô' -Š‡›ÐŽ®7 >L(ûX´Ú!¹ß¼]ðP|p\/ÇËY=¹«vÈòu¾SðP|H¼Á°¯<äMŽ½¾]:m$gï’þ´· Šß[FŸ°¿YðPtç‹ãÛÚ -Š{“¿žºQðPü<†v?¼YðP<™÷‹›$ûjÁC%”Qíi­A©ñrÁCÎz´°«2•Û²c,TÁÃǹ¸)x(^ífè7 Š‡x3”Û÷ -Òid|I;SžK¹¸+x(NC\¹ý@ÁC‘5wÙØ%}?.x(…R Þ-x(½Ná[)(¼ËèéT’»‚‡")C{çÏ<Wóáh>RðPh[oòH¾–F&Aק$­ÇGÅÏ®9a ¯£Ú!Í[ï]ÐÌj‡”„~u=’ţǸÛÚËѨ¸¨— òÌ £Ú¡ Ñž-xø†¯“M´ç¯„lÏ7 -ÒBŒ¯Úáë!Šœ‚‡¢lÁ,~ò^ÁCq‘0qß/x(ž¤KnÒoÿqžššùBÑŠj‰?Y½šßø¶öaÖìOC÷IyŽì]?Xë'¬VØ5i—rñ›Íjo+ù¯ãЛûH)€²MCz­‰™ôƒf[žšú€]±¤bù˜%µ˜æ,i—ªz>¼šóÅÓÊ^ä×äâœü–©ÌϺ>h6¶Lö‚WF&àý™Ï—ÞVàóÊquGœ°R^ýÝÂÐVŽÐì¦ -dÂr›·‘U©‹F -9>z!r€_Uhnì -Lp¸(ÁR3VÏËòf·RìÏæ”ÊæXÞäÛ6ƒ¹­92]»ŽŽWÜ£ I,šª×•Å|†ûʶBä,#0¸rœ‘¿G{iƒ"Ž!—2cÝÔ¼JŒÆûéjÛõŸÉ"æk 1_fþ”W¾)'[ûPnJo›í^4ãÂ&PóDÂÅë‹j¬ú&Vv;£qEwÄÐÑ|«5Ô'›í üÆ\Þš`*±7ÿCÎΙVóUã†W\.›&5ùɪA>g@÷|uëP.2=Ù#ø4àÂF®ÛÚïü7‘o¦Ì©¤­èp3} ¼¥4™lÖjP¯vÉéæ䵘Cn-ê*ì]ߪ‹[ýñõØl‚zƃ±"hÈgq#ýÌë6Âäƒ,…0ÏDhTdW$m~´@x6ÖtA6¦~ÓÓáQDz`šRÏŒ @é£Ï3j“óÇ3vÖŒ«`ƒ_m8ðÉ@I¯èñ&“£ªï#Ós«°©CÌU1á­¦®8T±Àà³³uš)¡¯Üi÷×JÌW'¥7k;xZ7 §6­Ë7#±ÖM‹Vá±Ø¶5eÒàÕ±4L¿ÀHCœíáqçm"üC¤çyxœXué - V³üÐ7ügW¨áø‰ºû3 \}1›¶[ÿ ¢u~mÔììŠ@`”jó6ím¶!Gß2ГfKd‚µ[&œJ‰nÖ -÷v…-1-9‰OÛ†øtûZ§-©‰O¶¥Âpâ0†ÝÙ5Ád‘ƒm¸-Xðׇ·*|¤mS<×µ1º3òÏþÐœh]µ<'ŒÑŒZXî<~øPmMK]´<]ù,V£e -u§œ*†s‚q ³+oÙ9Ù£¾ Ä®²5¨¿v•ÿ×I|JŒ×T;;Ñ®¹‹r»SŠ×û©ÄV6Vë=Xå791FZp ˆ9B -\.|Q²õ öy²Š%D)w/D©m ÊQŽõõKM²+æbÚí^£àÊÄ’Sý^ˆr‹4«ÑЈó »wµôI!Ø ˆ´7z|jcíÁÅbÞÈL浬¬²+¼»«Å¢1]™D'Š=G^ZðÕ¡Eù×Öd/¿úôV°‘„ PD–49û=ðRJ—Œ )|0¦Ç„|PA—DÆ,àÊXxX>Èk`˜í åxXö#rVó:\œâÊ õ›ø­a…¬ ânfâ£MtƱ‹Å9ÉÃÉÈ[™’1vrá:ô²!ÀÐ9 ­Ž¾…¿YIµ­à&ˆ‘NQ`ìUOàkÁL‡‚vVZtãRŽXã Õ»Àé.’bçηÕ[´„.\ NºŽç†+*ç!ÅP†Ño²xTÞ¬^aã&ëÖ -€– À°N²íte@\NRªLƦñvì´†‹~“ÉBá´e¦Ü'ÎçàAÇÔ¶€*u‘¥RJ€e.sšY+èçv»¥`¬5,*¥·p248á“=¿ -+ØèÈ‚¸IŽ~ƒ¬jÂë_†vDa´Èq™6¼²”%¹š(–m[V(½²O«”¨T9ÔÍeðA‡}釚Vït‘–nL^ÿ¹ Ôáð»5€ž s¤¹E»a)ernnÄŠáóà¸üª`ExŒ¼àÄ+'º³müp`:†=A´˜ºð=2}“ì¯H¥O¬&#’÷W}$6 ci=A„Ä¥F¡‡ˆ@±€ÿö[¢èÀ¹rEÏ ÃïÙ>a\¾B!Þ H"˜Œ,"¸Ï¸—Cœ:ƒáøéÀàt¨àD °’µäÑ´PD uh>:™¶1ãXíîÒ† ƒíf•È fš¿š6v0'q:œc_šš‰¢Ú`âúa¼çÊ6" Éä&Îi\z>¦|‚#‰ƒºP¦‰öƒ†ñ© œ rò&¯7b¡g„žd­Ižë¬ÍˆU7`H¥¦ÁÄ74 -œ¡ öHE£!`ŒÃ%6 «„NR7£ 6†KNÏÈE–ÎÇY¸Ì:ºbo÷—É{‚v6öi>ÀiÚpšùylÖpšöœ¦{À(È%,NcÁàä-jœfysFÌÖ-¡rˆÃà -§;a$c9^Ÿ³ðÚ§4¢ýx—¿ÍøtD{m ¼k„o|¡ûxûa{—švI›tÆ,Æõ8ŒsÈɺÉmd{nKÀ7iN?l†ÇÄïw¡2D§TbØLϳWtÚÌfUl_²ñ®ô{ZŒ=mVöWö.c³†„fVfo䂃´°žÞs¨ºNÕþnò ÌY`ˆÿdâãeîÚƒNÚÄD¾ -Òd$͇Pº¥ÁmÚâL|Â(-Í¡°!ÌïöÆhff‹y|2â{ÿ²Bv&2d™ªÉ3^¹g![wnR¶:îÙÄÍSgÄHù:û—¹}¢}6–Å ²¤Ìi eØ÷-3ÆGÚÏ>ïÉC(b à©$…ù,eb8<˜}ˆZ Ç8cëp+œñ[CCû?¸  !ž-”çðP)uÛZ3ŠîÔ²fŒ);i¿C“<\…_+Là“¥rz…p"Lna9áù7ø¬NA¸n*fÂ×ÎBWm…€;­4\x•`@‰«‡—:*ñ9Ôp=ÖîX›6ñÓ^)€F¢Ÿìîž5Ò“³i3©€¸ßôuJY))1絬˜§û]Ï2Z»)ÖÉî¬ —gÝJ{émýÛ B»»;;éÕ®;˜~Í°›òR·Œ„s³‡Ò¢e&ýû-|Ò‡zOËJz´Zèøë?Ù‰ãUôÅÃHúw.ðµK€NÑìw)Ÿw×B}²2ýš¶å6ìÚ™½<7Nr4]— C™×+ƒ‰þÃõ&÷‘è¤ÛUÚ$müé´ Ü·RŸlÌvÅ¥þæàéN%5jvâ ½G›J%‹M©ZÌ×Ó2Ÿø\H°PR ‹`Òn(äVÁˆÁŽ_PÉ^‰3IÈÚ‘hD–ž8”qhp4Ĺ u’¢F.=7ÉŒ­%G…¾ê)¿Z¬OH¦8òÞ” €µYóº}5á~µÁ§'Wí -2Ç—Zf7òø±õ>h ·ÂÝ!:&âœßȲG4šP b Ÿ“Ml+Û§¬†›rKç-´×`=ƈ%öi  .XxÜÉeš.-'r¢åFœß@2þ‰£ž£.ŠÚ¥9øg`“JW­T/`_Àns9¢#ÿ.ÿl_n‡Åúívº¬ßæêm;?—Îëåzÿmøú/ÿ×™£Y«µ±ŸRçù¼>ÿïkâ0½íæûë·ïۭųY31Ÿfóo\L ‡$Ç• ¿eíh5,—Ð5ß<ÇlÐËNEH/¿}…a”âÓß\G,DÀlÌ…ˆ¾ú43FÒu ï·!`,¾+yfµÐËÅ’_½äÖ/ý€”>…¿B¤ô°Þ—QòA‰±ˆS‘tVULÔé¸y¾<`bOgMpcÔÙbíž÷í÷/7´ÔÐWz•QÀ‡ÄII9…T*óÿŸ½wÿÒ个g-ÿe@ Yt)ãaÌÃ.ÙƦ| æÊ#Ãà¾RYæÔ²1òå2ýœ½÷‰Ìü¾ÌjµºK0³fæÎ2­Sùå#âÄ9û¼¿CvCÂHWà}7)òcÛß¿ùñ{ˆ§ü‰=á_ÿÐþóÞ÷Ú ÷þæÒ}w$~ñG·¦E~v¿EŽÿÇ| yþï±hï¿÷Ñ·þè›ÿôÙð½o}7ÿó•Ù3»O œ¹kâÊ°Wüìn»åÙý<ðûÊ·œ-ÀyËw~Øÿvôïï/ÿø“ÿþþ~ñg_÷Sõ³à -â´‹ï|úüœÉ~öQ^¿þ£=“}ücJå?qÙýñï9÷üá>¾ÿÁ;ö¯®¢>þyüóñƒhûõñGLÍñÿøEæ=|ÿå'¼å3fîÙ~8ÃÿòËü×Ï7žûxwÿåi÷À]|¢?ú×H¼¨]é;=õ?ýäçïüòîÖïýø;Ÿö?è;á()ðÇÿpw¥À\½ÍœGS´ÞîÏ̓³Ìç?_Â÷Ã_¾mÿú(Ìýb A?¸qðù?çÃë”Ïú½o¼óçÚ~úì÷ô½ÿñ£·ÆTQéžÿ[[~øýwUþÇêØïÃå¾ éÄï¿ù˜®pmðüX -áïÿÉOþ]“ÿLJ_ç¿ýýÛ.D÷Í¿€ý+¬ñß¿þί>ýó¯?ûìoÿOÖ5ñ‡¯Šav¡Òsó4†¢óe0æi0ŒË´ÇaÌÓ`UŸ\ÁENÝ„2“ìÖ­1]ø—ï½ÿÃoýz±ýx‘$ÝÉï﹌vªïöɱ&Û7…L~<”Š¬VÓÕZ%Á}÷çeuþ-ã3»<@…;ŸíÃý¯¯ã¥_ÿüí[ïñ7‡xiþÆ÷oó_}ûÅU¬sóÂÒŸð­g?Ú#Çxiýƒ¯¿õ?|Þãá®â¥¿ýíwÞÛÝ |ïÃï’§¹êÀ8ž.’÷~õç|—ˆìöçd÷Iûé¿NÚÏ~ûÞ¯~üÙ»›W€Œw‘l€¯ÎïÀ·áÞýÖŸ¾øÉ˃‘{q¦ }7gA8Fð=g¹F²üëá6'úk;âÃoÖuøù~ öEøûý"Øë\Edÿ¥ÿf®Ã_¦Ý:пåëßÛÖ¯ó/Û"¨;àc‹°Fdÿâ›ÿòÙ\‡o¼u¹¯»X„?ûüU"²/c†¿øæß|þ -aé—Ed½úù £ºß@åšvƒCñ‹˜òpN½{µ—˜òÃ=8©ëM>„UóhiѾô‡|ðÍ÷¾T¢ÀÉñü“ñù7Þ„µ‘ÖóîÕ Ö°Â+.Ò€ž}ч|ô­ÿ¶Ý ýç¡_”ìÀ=¹œ~È+®&ò6oðo¿ÿý¿úλëH{ òÿº»ôûßù×wüÒïýsx÷dú‰³ûGÏÿøM9Í`ËÛoÆi÷ùv»ÁãœöÒ{üü/—7æ´?þŸo¿§-Ÿ½ó§½ò=îßý“/ä’ý øWœöóvû&;bfÿŸ½wvpÚ«Þãû÷¿ÿÅçöüÓ§ $øÊ‚ðü%~~{¾š3öÿ -;bÐó ÏþË^‚.¸ß|óÍv€÷å«)}ó²ù«gßûrgäðõ>ª¿Áù«¿øIü‚—ø퟿öJú¯òç·|kwþÖ›©„ÿéÝwW%ýÒ÷xÉKü&<ÎZW/±ýïßãáÛ³7b‹‡gv»­æ^t~jÚߣÞöG_bÌ3-ámÂÇm:ŸßŸ}ý!¿ÿï>ÿðýß}ôýû»üáø÷-”¿œ~'˜øxàelC5„ƒÇ2Ž§®áàcŽe_º†cõ¡þõ;û?ŒÏ?Ú¥·ÿõ»û¿Ý¿»F¬þz_Wqa?¿·ÿÃF8/B>gAΧ‰p2éøeAΧ‰pjÑ^ä|š§›QOvËG"œp¦¼4Èù4N.ÚË‚œOáDPþ¥AΧ‰pòk^ä|š'¤ÀKƒœOáüÿ½ƒÿÏôþ¡Í?Å÷ü „çßýìû॑ß2Òß}òùï~ÃKÊóï|òO¿úìþ£ÿøÄäz¸Ñÿ[ìÿáÛ¸ ±ßÄRì? -¨÷í÷ÞæÕ7á›{¨œçï}û·Ÿ¿ÿ«‡ÏõëÏ>úíÜ|“´tÿÁÞ¿ùæ®~nWÿéÍÛöNËs»Üþôã¦Ïñ¦Ï¿ö{ËÍ·ñ?þû×~ïwxoÿÿùcûŸÛÜsoö6·K¡ûǥņ·¼µ” Z+qd\s -©Ý|ønðüÏâ߃ÿ÷!œöáàY?´ÿþç›xóï7a¹ùÑÍ?üãró‹¯ÙíÇ!{Z/7Ïb·©|cvPhõ¶µ‘vÔ0º½h)öÛ^úØ“R»-1Ü<ØO7b®·¡§z³»[·uöÓí±“tg¿é6ÚOö.ᶄåâvi÷ظ¾Þv·õ#Ž_ký˜[²Ø2-¶Láæß¿¶]g·´mÁšÄ˜oËXúJ‹½Ü.¥U#Äp[c¬{RZn{Šxµ1Û§a×m÷Jõ6õw¯¶’ìÕPn½Ø?÷×ÝŽóîfe{æF›¯¶ÝIoøD{Ú/å¨ýuqL‚~pÉ%<`¿øÚïÕ›·ß¹ù­mŸŸ­Í[Ï_{uì§o°>o=݇¼Î½õü3ðÊÛßþìןÝÄ‚Öå«’s\YÓm.öžÏz»m¶l”c+qÔÛz» Å(!È“v›Ò~í&…,RoK7!²]f+X²é‹íV+e>"l%Ö~›jÁýãm©Ý–²ÄÛZûîNÀóJ»Í«;/Zß|½Ïá%ºÎÕÓÛÏÒmÈ¡ŒôÎÍ{÷ùoõÙ?ݼýï|ûÁÔäO~ýùG¸øZAíåŸ Ö#¤i6¦X*Ws£{Ë–ñ-ý¶æ†Å[Œ?Ò(ûõœ$~ ÉÛ²„ý…ö©9—´¿ÝFšÏåoWª­îè5Ù…Æ(±©…žc¿ØG'=H¿-£Æ‹ ×ÏXowüÞ‡']\“cJ‰ßÍÿßØ÷k#Ú‡Œn‡¹uÓ`ÆñXiPíƒíóZ³Ã¾´~sê¸íKÀµ5܆XHL‰üi´d,;üÊÃ]ï_ú= ´mËË«~Ï&OjLx@¶WÑ[±A.µa¯—«Þo±óSM<<ëK^_e˜Èè& @·K­™ÔÃ]_þÖÉ„EHéµv¡›\‹ WúmHÆ}ö m8'nÔûKªí|5ñÄ·ä0F¾ žÜ÷~ƒB}?üZ£4Ū´ZìKMÒà鵘iaðé}±+ R¡Î;Ü_ÜaGý%§‰æoüî F? lùÚmÀ^\Pk¶mþ€Sê¼Ãýé}ú½ù2áæ}}F]?îäÙ“zõ”=5µQ/Þ~£–Ó/ÝS·UÙQ·¯x„šÏ¨û7;®Ã£Ôm;?pLrÄ!ä´·ž/XcÃǽ|!úÙn^ÐwïxqŸÇè÷¹Dñ+G&NqæZ“‰)õ¦àœÔûKj¸mÙ%çvƒSâöûçyÂR“™GŒ·)ÿ±}ƒ ófŠ§WóbÐd¥G·/‡˜€uuî"Å°.í&RzÕ ™:E¨Ý ,«6H9uPM ×E·=¾‚^uÑ ÚýÛ‘5šíp^åöè0ªíKniÞ©-P±—T;+¦ûvw¸?½¯/±'ä~/ €‹}H±åãžµ¨¨•Úã†HÕT¾ÙçöÁKœ¤jÆ€ÿÀ 'PSï®ôÌÂ4 …—¸¤ÆÛXæsj~°lqJõw2b¼iÕ„kJ~!w<®ïXû æ¢òÅË]>ÇDïXøKª-WÍï`ÊJTã¼æ}—„G%Çù\ŽŠo7Ø#ýB¶ý9Ýöí±ûÓÀ…ê‰olõ”HJË©[ý;æƒK×Õ D6Ž¾56Xì=B§8n¹¸ë±j¡ð69¶&R+eðmìûªá3Q»)Á.Ï Â)Ù…Í0ìèqOÂoí,٧ǵ,092ŸakHæ!$)ÑQpÂRÛ”^1>ÔÖ­‡î…X¤Ö.bëÀUywæ[3Ð䟱O&ŠZ[nÓ‚ âM°“ø]µaí"[2C4­Ú"GV3’!Nðƨä#;ÀÉ~,.ö €Î•z¯©ñ( û4;\Aó õªcCfOjùqjkƈmÌÛ^­ÇN.´n¬6(àvr0.òÛìÏcHÀàìÅ„Ï» šMRc¸ '·ÕCy¬ !^?ÏäÌÀ‚\ÜÄ–!,±\>b»~·Ãm71ô;G^Àj&Á°ê¶<€Öxt6¦]úžÚïòèÚˆ q³'ÅÛÞhÙìˆØ31nZ2&œŽÃšÅ¹Fç÷N,¾ÕÏ£Ý;-á“ -–ÓëáŽfQV‘ €Ô`ÛÓd5g|]k&ðŠÐÍf}qÆñ2O#å {6''›¨âo;+`KÕB&ÛB -´JR-Bóûú #º š‹çBîj¡_Š^¬ÈÀ·“1LÓ¸RŒ2žÏ¯2 ”ô]a¸ÂJ&Ëõrv¸cú®™²³*ëêgva2û‘w\©ÍìÒÅ÷»ë€íIb ͘.ÂõL>,KMÚÔJÙLÞɆ1²Ùk Û™;¬áI]@±›·¹IfžÛM£_˜„€lzÇÄÞ¼k!xÃ>bõwH±9Ù^r¬À¿òbºÂh&×`h󳌉ë%-é­øó•l‹E·¹ÑŠ}£I.ªik[TÓÔ·€‰¿¶ÿ0M.¯\°åãâŽíâá;2 nþ|½¥é>ÞeÿðIÒ«ÛqLbçõJzL‚ÓÌæçD…_È¡c -Tç€õHÐÑr7S8º„èvé@în´oGÙ,-ûd8²Á ³±Ci‘§£ñ“L6dºOv—‚¸Á¸¥þvIG†?´pE¶[Ú*š‰zùôIãÏíEëêå¥]Àßhuý ûëÒy]ÚÉ&_¦IÛ/8v†q?–®Ÿ’›á4Y·ÜºdƒÄ¤Ò ·¸GoÐzÉ"Ñ5³’&#Ž2ö×o§°C¦ñ¿6XXÙÐÉN0^iB:ˆ„XWˆzrÌ+Mlhа]]9dkín¸‘.½#Ã=edžèº‹­T#%e¾8$–|Av[žÂ ƒ@_Ýö'0¢wI6ìo ¨ê&aq±ÔÀ3£jÌ"hSZv½”!àrA2•GÛÉÏ®ï\úBI ‰ŒhÖcé¡Hx·e®i«ê€bw%ÔýÀ4äÍžMy¸j'/«’™wÌk°|{ö¤=¸Ò3É3./í.÷@3pÅ@crŠ¢Õ>.Ô0Ùz„ 5¼gÿ]¥*¸ G€~B€ÖV…Ÿ!„pȵ¥‘¶ˆIc,ÕÎi0¢v—&àÜ’uNkÂ÷ìi&—žüç+¹âÓb±Û-7Pr^Ö ˜=4Á­elTô"±1Ý ‚ªøÿ ‡ši0)$D@œú+›‘’ ®-,[`FHìÍLZ Y†sh¨|e¶@éTÁ&“Ò~Œ -äDõEx/çl€DOG(Á'’äV³ûÚ»åž-¯M!KÙõ0A3CQ–]^ ég83KÌ…(4Å D†³£Ö`âæ˜ 1G.Å€MjõVƘíž œ ¦OëBd¡U0ìÚ ¾è°j32à•‹H3˜ÜsŸa{˜Ì¹¯7 Ø{Èè… -v%-¢˜ã|QˆÜð†ñ÷«gísìƒéJN×¢=.Áì5ä غCý“9mâ È0ÓʞÌ€àÀÏp Ísílë“ÈPó-€lÔvvA+Ìò¬ÁÁBk8Ä e€6{¾ÝÀØä†b†5Þ Ë³Ë${™ºÀÐOp ã (å"E|²3Þ;ð¶–vt{F³ÃâüX\]&ûW7îü¡è²Ø´äàÖ_­\®´Iä -j!O$lâ[NT‚ƒ:°ŸC ïÚqn{ð´»|æ5øÝjF}yÉð˜ù”ð!tFa‚Á12ÓŽlç4ÙƘz ð¤"¢‚óœZ%ð1F`Ǿ «É= !á׆Òk(Ž¢ãäš Ô\Ž˜b´‡wð€mc<{«»VàïHó=ÁIŠ -˜Ÿ·À¢8H)è5#?‘Á<’¿æF¶Ó=ü5‚e_>¦õíu1GrFÚ“íÁivòz3Bž”H µ-ªÁ™a¬ÿË Ñ@“µã•Å„³-cŒ­ÉBÞ‘ñ2màsw9—&JÑíV|Þ*-°F%RÙå^»/]t¨Âä¥(¥Í£Äˆ©v¾V‘ç„]‡UMFíióM ß6rÃŒýKŠ -Lã6Q2•°@ɽ ÆDեȵop_Šíð-ÉqóvµY÷cZ‘{²­„+ÉÆk‰:¥f»­ ‹£õlžv—ÿ³Ä´[a,ÒþW`”ø¢ÿÓÙÁKaÂ[óèIaTV„Ã@Qè¶2e$Ïí<&fRìlÇzPñr¼$t­"h>"|m h¯P¡<€Id[1„/d–Ëc‚i@ª¹’‘¢À“ï`LXMy‚ƒJe‡™éÝV(d«%/[2Åj‰lï-ôNwœØÖ´ö~Ò -ùÈ8û·à弡jº})€Ñ)(æKöMîðu~dwùÌÛ 0ˆÖWÞ˜Ý(¿ºËÀ¿ó5¢N(ôäWÿhX:» WvL‹»C×CŒa ¨¡0šR õ¡öä ³C - ÛVfe÷PG©ÈˆM™6FË„'Õã ¢Á¬ƒ -õiûnï”û - ‘LH.-Æ_ΥƖµ!T^-ó[àPˆ 5 !lKܘ›¯¾Ã ŸëŽT·ê²,¬×SÕ@êѧ¶°­ç*ñò›&m®[ K»¸X[—Ú_–ØÓS¼”u᜜‰€çî–` °Øþ铦M¢YâÅ¥ØF p»åF»xúya€´ÄMBþ¡²Ú@Sº2’êôìVúÕC˜jãtN†©–g -Îi«òf£^ç4 ÌJ Î$g¼"¡¬³7?ùù`ps”ÝÄéÝ -Ðh×¥±£Ij!¥‹ÕÝ¥C59»;n¤ý³7*¢€>¡&1Š>&žìÄ-MTø”ï.…óÅ*­þ*ª€ª+ƒŽÊkz ìï-å±’S§!†m•$G£°¶Ÿø’¶rÊŽ ¦Š! -/¤HÓ̇K÷pcÒ¦Æö%]/…öÕ_o¹£íŸ¾'Û¥=¸Êö[nævÞ(iƒZöß¿fÚ¤L‡¢+/^ð£KÚc ‚ªà¸ GFI±]´©²2aJ—"-³˜¥ÒåÐL[¾ç’a‹+ÙéjaS2z™‹¬]{¾©ÓÁ4ä,¢rÓ^5x*ܤ4 móè1†'$SM]¢×ÎúS6ºÞƒ0‹ØñJDbLª‹ÙLK™ÅÁeðÔpñU˜ÙQà ù¾©V<_u)Þ`dOM`:ìbT½¶”´fÑÜ P.×ÿ‰CF ² é¼2‘ŠTÙläœ^Ó.P}aZ¥éjˆ>{ÁíU⥌¸ó%"œâå¥Î•›½I=ŠŒ; ´ [4’Ó, ·0bPAÚ ŽÜ};úÞ àƒî˜‚ Ñ E>Áa,íû¹L†‚7‡ -Š¯ŠÌB–>Ó;xèbf‰nV' ]D•Þ><ê  µÞ²bX½-¥©8D¬N£¨Éh¾mѶöV«ææÔéÈmšªsD„û²Ï9]à˲·5ÆJ••×d¿Ã<í&ÿɘNJ²ŠÜ²ŸBDÞ€Òãò€:Ã…ð@BW)æ<À1yBÖb˜QÔÄÌð LÈpé¸g¡ -§&? -GYc½­ÐU F·äç«:Ši š…®¥õRÛ(ˆn¿%ÓîŒ!VÐH«JÊ-0í7\©Ô(†uÆPC9ÅÇ‹¯1ûâj\“K9 Yò|”Â3µ4ÐÖ$_,ëq^ÎY(¦I&›^]|,ÃOU]Xò)?ÞÅ6,ïÈ|ç%f¼ ª·öyû<øÔUsÎ5ÄÕ0ÁÚDmrÝ9&(y‹'§ÞFKFìD¨½*àÿß¿«Ó(@Ø9ØewiFNý»Àt,‡åà0gÞ›©¬,£á+ùÞÙTø¥¨öÒå>PÙáZ¸kéró$ï‚zIdÐxÒÓ¶…=Ùƒ§Ýå/–OßôƒÌjg¸Æ£}äŠAL’VV‘Ln$Û¬F3ùm`»Jî{J@#Âò‚@¨®u÷2BìË(4å=S -¤¸ %fáœÝš쥣“ðEe)¨4‰c$G ÅóLßÛ© îyuNFÍR(¨Jùäu¢'iÑjĨ‡c[è×!ŽAUÆ “ƒt¶e`‰Qñ„`çf!`E°¹6Ï“ ð/f’KWѽlr3 -‚edòOÖÿ‰ÓW¥ò|,UÇM ù'ÃT âh¤©§"ÎÌ¥õ$× Ü°l D>O††ã!h˜¨~ §þ@ÚHUâYZÁ€‚ì¹ߊlu€Bà]fßÐp¯m[8)ŽàŽ‚N­næj áÜlÇ$vˆÀ‰AjddqF|îEe™!È4¦  R†X·nÉphPhò†W³¼ÔËw=#G\@w2/†ÓJ]È}‡-xòì•}äH^,:ç€#"t(ãc%S>.ô<3._²Ó@³GG‰!v•œ’X>åÁTÈîRYG€«K­+Þ[aýÅÐ)ô9z¸&±1 VqAMˆëÊæ|s¶ _”{ðåšJò BqH²IeâƒÙ2vRùÊr#U ˆœ§˜Jל ,P×-€°' X× WϬr{PF"BRÉÑÁè]‰l¸ŠbÅý‹NÚDq»+sòÚs¤¿ŒBÉãÜ4³²g¡G«\G+y‚ÅÃY?îФ.¯6VW7ˆ+2‚Ì­C,6&O?o®ëqžv‡¯Ï5œhŽÝȤ{შ2E(–Ų¤iC¹Ï>3}¯IW… Ñò¥ª>4)80ŽªŽƒÒŒ3M®¯¤(1Š”™ü±„â&!µp4Xpè]e:Óáh'&RÂCµ÷,‡£vŠ¨´êGñä-Ó–Üá¨f³P,p–Ûlx®´ýjYYɲtƒ„t—Up7ºn_ˆLÕ4842æÁŒ'£‚Tƒ€ÍPms²úOœ/¶ä6ÏÊ-®îF¦S§ ÌÖ!2ú!{˜jw£zÃ!É"¹¿ëãnEäõ´y½p±‘êy·à%eû±ôˆÀeµ(“¸P¤Ø®.ôÍ`*ŠÜÆLô3S­F,+³}=P¥¬X¸d¼^òÐÚìD¯2^àP7µà»êž/€Õ2¥KvN«ÃÎÆ®šdøקÃÎF#8¶QN3m8ë-‘A¹ãzG´½FºTG‘³Ê“¨Óí ;Mîâž`nÇúÕ±%å³<ûÞ_Sk˜ Þ°3IÞ°%ïW·(õGɹyj÷œ-în„à#\ÝvGm*ÁUŸÒüu[X©ul(¬tJúRøÞ žîIÛ"mÔu1 Ußæ¶ß…ŠQIÑ'ÙO+ûź¿ ºrSλ­¤ýc÷TØÈöuÛíà$MPÛsW~ gõîîªòiU-£Ö­2ÿ…áØvÞyq·ªˆ ,êPº£¢qó¢¬]ôÃcLé*¥hØZ¢…5STÃEÓÇò¹wíÿ -(iñ7j Š±CëÈE]PŠNM&⎄ߟÑãÅ…&S¨·ÛHûçî¨önz!öýË£‡_¥d™yçýêõ2íNÅ9Ðb‘“´wf£å¥Q-0NxOÓ“P™Õ{™5ùs7é°g†N×=SLÖ Òhâž·ö¤€X©› Yo·I›£Tz£lGÞñ`8>)W²§0mHõή³éPÇÂw`&Œ³ \…V¨•HÝS•<ý©£Æ†Ýµ¼’píl/RæIFt¤Cc„5è…8{GCVšLƒg1Kž5ö¬SÃVXÁâŽøbX(Ìî&9²o=…é@²3S®™`#É^éV±™²l5*Â3l¸…0ByíÁî­†GÊþ)Û 3A/Ó¯^Ç çëÉR?­2ð -ª1ÚTEÐÙN8tç˜H*P‹çjìdØÄ«UÅ,$Þi]Øtõ2ÕG]|µàgÐ$•aÝ«¯sRËŒƒÁj¡Yó(nâ²;4VD•ÙdecÈ.ŸT‹Åbùx"I"†ê5ySM¦«AÝ`Ù¨AVcT˜»šJ•‡uÆiE­c6¸hC RáÓHJx+C8¸£WIŒ´ñlM°õѽÛMâêÍÉrÿg¦Ã?Y$¤±*žöAoª+b:X¹¬˜Tôàc¾&r -löÖùStw68¬V°ò¼D•- “åœèúÂ¥c¶tÆÁJ^Ã8›í’Ù²ô¾'5 Ù½áð–©èÔÍÆOe&Á÷ÈÔa&&ue¸õXÔ± -¥¦Añ%î©Øt Gu‡[õ&vèù¬Ž×TÔ~Míj7Í%¢ÁÇfÃä$­#:ßüi-]<À^Ðs‘(_xÛãÎõšT¼ok³.•.|˜¯*¢FA5ÍX6ÀåÒ0› V„ex-» “:'À80½a¸–MÕÉ:°´²ÙAzG-O°6¿¯B°™w£Šýˆ®Ø^‘콚ºwÙÄÈ’N¬ˆ‚¾ŒÀf¯m EevíŒæø x) ˜r¸Á@#V< hû‰“ѺºèQ|\ð'÷]ügˆ‚ÚÕõ°c\C"Á Àc¤ÑGg¢>Ɇ$¦D¿:½³52r X×8å(6% ×¹EIgv¡Çš" ‡jŸ‚\¹ FP¥ƒ° ådUHáæ* ÕThKÍÕG*ªÈ¬H*^%åê€ÍlOCàp¦ µ†Jk ê¶\Ùâ2³8·*eçË€L/¶ëÀ\ô¹×â0½ˆ¹´ŠAEÓ¹™IU‹“+XiÐÇÀ®Ôn@*C½ïSb’îdµŸ6§!Ò½MRÑ',3«øˆKˆÉ Ö)§žôV–ìÓ"bK*jcùXÒºäqúyðZä ŠM0 “6Õ&Ù!ÁÈš%º½I0Ñ /“VUÛd5q È¢©HóŒâËÂ?yjÕÕ¹|…‘Î.guÃp³!«ó…p8ëFíì8f-²´£r’4ÝLn) ~SÛžzAƒöЦ_C]2Bljîw¯¦Ì‘MABÜJæ7ªi¶%ºWÏþP°Ìñ«4FÕ§˜ÁN49^)l6ì#"6¢{cÑßû´ ö¿áȃƢt4AÍzçEe]u´~Ÿ²{ÜJ„q•3ÀOrp\Q‹ÇæÖm¦ Ø4¿o%^,Ež°ˆecZÛ½fô¨~ìb‰7ên;¾´Î/©Ýç°Í-nA@´ò”D(pû®$w˜pVb<ɼ™Áƒ!{*çÙ {j‘ÞîVõ-Ý=u’èYZ_o»°Ëš|†q¨Ú}k‰jsw±.“z¹ZŠ^‘²Û…S*²íW>6%y—ÄèítL–(œ¦VTJ¹#!¿ ®é•MDõ|oqŽg,H²‹1aç­¤ vP[ÝíB29Vg»ÝŽ´{îFe“p¼3Vå@92†›íüásÙÂëîâ¬î–fwÚÏ©»%§aoŽKê*m|w"iîõNv혢÷êïÛ…h*ïwsÛ“6^ÜQ'Óîn·ŠÂ£ÌÜ»kfæ´DßÏÐ@Ípˆ×Á5aGÄ84ŸéÑU§ \®Fð±õä`oÆBÿúÜ•êÃÛkWö¥:‘9N¶Aa—í&ž0Éý™*öòÍîÝúÚo¸1ÛÞ—õ2lIÓ€5ñkj8t%Žì¥Æîq‚tõ÷‰êç}˜Wvïù~AH‹œ¶¡^O ¼Ä°Å\ºã -?±É…q+à†ÈˆšÇݲ2‰\O,ñE») ÄÙ1#T´ûÙÐ#­ øÏ…™r‡LKuÇtóÙ!]Œ˜r_83ª¨©Û^lQ¿ÇMµQ£I#ȾC_;T²ƒ_Ûd¢ð`dî^gC–C9Ñ­@ýÖL;uµ‹J„vWfÑ°'†ÙuQu5_#æbV÷+ o¼Ñ7'ªÙvWªÎãBIê“1·i²N1ÑõDjpf[û?mG’×V_¹õLF4§@ ;”ŽÚîý;:i=–¼ãz!Ï%'yÖ¨p¶&bïxnG¸÷âd®Ôy4õó”Ôèâl^^;ç%užN,Ïìv<×¥Œ 8ƒ¢Ex^TP†¢=3Õ# V¹ý[qû¸ ã&5øA³×Á± çWbƒ[ƳÏw`Ÿþ€×ŒÉ›M‰ÀÖ…0÷ÖUíŒL“TÔÎèd½ŸÖƒÞP -å+ ÄE.Tà²ß –bÈ>òIí¡ØŒ ½?™(…|W¤¹ÝiYè}†ôJº¹ü ¿Ã¾v¨MÆn0´£ÕSS'”ªât6ZZ]­Y{ÔÆpá?4{f¯Q9½GjEŠŽþË–/ÿÔ:¡š6vDó=¶…äÉgÁ×?µ«Q;ÒÓùÔ¼áy¨E¹nOúÔ«#¾N*‚Sþï_ËLZ °ìüøŽÚŠº?Ø'!¾ÝÏ«:g7祡f¦ëƒ¤brH½ˆ¦Ól"Ž€Q=»Vßùo™…môüI\šØm¥~fbQ=¹{›}F -©ÜéPq7h#ÍFFBXÞQâˆõÜÄ-+tª:ˆ¡ hæû³U8+sX‡VTÈ ­V]ª²ª³…§œH\Ež|üͦ#Âz’èÕÂÓ“ˆ,ó‚Y‚FÍçï]R1U)ÓÊš7 µ¨þîI™5<¶È`iâ‰HIßÈÙ·x6z-°‹)~ÚÇeX®&ª'#5zÑ8×Î%eBÒ˜ó“Lï¡ká¸gmÅH7ìŽ1á¾g*ÎF¯ç̈öW²#ÿÔá_¬ oÄpŠ÷\ÃKׇOöÂø•Î¶X+‚IJ•Yñì„D[:€vŒ½£ÎC@ê¼ÊH—X&ÑÔiûâÙcJØ>Ôœ+eÒ4­)ûÃûJ-ªWõoT¯ä€*›æÐyÎ|"•ib¤²Â®Ï·¦W°¤ÏØTM¾¹e9Ñ §EmzÐpÆg¨UeÄñÞY¡#¸…RÕ‰xÅ6t±"W¶ùn€½:ƒ©!j08 üº1+Ú¤°þânÏب¶õò‹õ\ÐæaY΃†$ õÌǬG/2õ¹àèµÛæŸÇ4¤;?Íä*þÐ'ðäË϶Am”èp¯eó}€4q¯¹GÕ)siôM0kY¢ïahê°IA&/'wV W óX2î\ ƒkÛ !Ç(âZ=}e­¸%&V¹<9õîB†ï˜úcè÷ñ]Eåž¡N›íØ_h;Ë•á›Þ[ƒP•*›mIbÆéðãÆB -æºÓYˆ.üMEi2F˜7ÅsØÜQË%禦Å> rANÞðŽï³B™Y¼iÈ«ªb¾Àâ¢zzpcÐ ×ÇAñtq°ly}ìðÂGñª;I>Ž¯zÆêt:óÀ,ì²F丂Eº­¸“åäýå9±‰pÉÅ1ÁxùJAÙˆoaNjé“ÍlÁ›fFNIá J -ŠîˆC½pPÕà/v£ÆW/ì*¶áÚ¹nà”'cĬ¹B®z¥Èʼn*¸#3'¢Y9cóv¤ýËì¨(b·-‰Þ -çˆz™“…™Û9¹3(”m=µbÞ £â£ý{pB×8ídPÓ°àdYe‘q*_¼®9ܱRœÊ†Åh­o TEBÆÄö.“ò ›žaäÝeY£AE1‰ÏÉ®,¥EU-b,±ì¢7ŽEÍ8ñ•þ2ô*b5.ú¤v_{\9à^Iˆ ÖçÉvÏ{ç+}æéÂÑQ`zÈ;7…!Fá”IÖÈå†yØQÊlÔé¦Ed#G—U=ÔIƒG-º ÑZSß±=iÇ'É%É^qîí.Þ -)ø<ñÉ7>Øaã‚TDU»ƒµ;êNû¶[àní`-G[4}Ÿ# -4²ÑDÆw  SQ.`-;ÞÐk¹¡Z\©òÐ=ª-ÝË ö ¶ÐAF¸:AmAqZUÌÆA-gj„2™ƒÚ¢½ª— ,A»µ…e)q\‚Z4DUâÍ -jÑj”Þ6¨©zí¥]‚Zä/•Ð}‡_Q[Þó5ª•‰¸¿‰ˆ#źÒ,óÝP-Ç4¤Ú.Q-jyÕ«`j‘ìïîöª…}î't‡já*P½ßŠj9A#] Zvˆïר–SGxFv ò]Ñ· ÔâJÓ÷ =JýÙ+sÅâÕL ƼFß6T‹F¦ö|½Qw`w‡¬Ý=jÂZ¼PFÀ {`¬Cמí`-~ˉ§°_ij<]ÂZ®] W°–‹Œ¥Ý`-·"æªå–5BȪåö²sjÉ - “Hv¨VlÃ,†ªÅ°CµN¸¹2ëÔn|½°Û¸ NɱGµÛ±Z³ž½Õòjíqív ÷¸V‡_Ÿ²áZ ŠÞ/p­ -³&®•Øé{\+ñT®p-DY^¶­®…ÀÔ`Ü=®Åµ!ÜáZJÒZ÷¸v'o'®Ý æ®=í;\‹AEµ_ãÚÂqˆéÖ¢z×D÷Ö‚¤v°Û©v?{\[ªçÅ_àÚÂh´Rj×b~M(akOÞP -Œí6ê5®“UV¹ïq-øQ­®W\ G?mõìNÕ(w¸©zÒð†kqd‚ ÙĵØ>Æמ¼£¿<9^áZx<;_ìq-©­ç®©ípíeB„Ñq-ŽjZÂ×â«Å;X‹Ïƒr|k±ê»ÂÚâÙ…ªÝ(û7ÙˆŽiAa«Ÿ Óž,Š¯ÇŸò î0maî’vT|°{ÒÓ §+L .Ñ÷=¦ånµºÇ´p‘¦¾Ç´Û»ì0-|šlß´»,xÃû‰iq Í÷˜­Êc˜(|bZ@®Ò†i SÂÓž,‹0-ÚGŽ’¯0-nêŠt‡i5T,î -{ý)Ö7!-Hò[ì -:´g¹«vÔÂF+¤%©È\sH»'í¸d£NH‹žïšž·BÚ“¯Û ­{|—›~ 5ØÎavFO-zþz؉4ÜÛˆýÉ]¤PäECßÖ…éiµž‚Ûv -ÚÈÂåø1p&¦ÝùMÍË„zƼ¿°$µLbñEGm‚rŠhX -ó @ÃtÃÄ1DI”¶˜´…θIðß±1ëåe&ô¢ß«›¾‰-7DÊë#)©H4+¼.ú¦ªî qQ½ÜJC ÝⶠĈó˯Æ`Da¢TŽ‘qœíÄ ×2”®B¯÷%D¥] QU^hj¡gÜB”T?(C¸¹°Ž8ȉèl]éBפ]£Gr‘ñ _”wSUmÓHE(žŽx)Uœ1ø®YABû;„Éø,4ø°ÝD½[­p.C” •ŸS£n{ÑHü£ñÐçŽ$ŠÉ9%—Üg`  ï[Ûþ¿B[ 6Õt:2A\=c37ûöõË€A삯Jì攂¯Ã‚x:D2Þö C8NŒ "ñ)œlŽË$²}W¡ .gm[$tʦ!6)x*ò—"Ýmëu˜"‰óy·"å©öxóS%U#ú$DÑÚÐáìWö.ì‰]…Xâ¹R„×’¿Êz]©6ÈÚ`‚T¡N||P *Æ9ÈF/7ñ—¼`Æ0ál˜)Ñ *ëÁÀÛ¬5ûˇ’rbjµ -ºÖäá¡ÔÕ%¥b{õä4ý¬`rODÿÜ$RUx¤ê-jSå<ã S ‰&N)é¢úN0è·ˆïn³ø(îX˜—ÅÆæFÝ61f>BK€Ä~ô$aî£Þ-o§áºð:ÎGuÊ$éhOŠÿR9ô×Í"À.w HÁmpÔêÍuG/m^ŒªÃ -±g+Í)j¢¶ô¸£S—´¨*A¿ Salšî\h4wP,HÑÀO‘EËå F4;E4¦ÑË~µ!IlMŠL@¶€_˜°éZˆá^~*Uu¡¾lk~É”…ÏÜkƒAÙ‚(|* R„é&Íš8¨ò;©Øš ì› qÁS™Ârf€Ÿá£„Ñ×CÝÚxàD‹È¹#h€ëŸÃ4´‘‘ë]•˜{‘%ʧäIDÛ¸-™3jh(#§¿î_÷ðUw»Ÿn«E!Ý‹´« 7a‰ÿ سowî´ÂÖTC -¢ %¤ \ç˜Ï‰JlyAþl;ä×rNž<3´©¯E)4âDëu•~­e¼’[N¹“Ü -.¤ÖëL,ÅÊšU®Z¦`œ k"¥Ý -!cŒè5ÇHâƒða1 -sï˜4|'áÓêâ9=UI\…F‚<-?Ó!õ“‹F’cLëÔ™7ùŒP´ØhŒ Qì]>Qîä@¢ð™¡iðŠ8Žƒâñ©yæG^œŸàAóûã²Ò0++œëž4NMöTʬú— m6Õhã›Ý…ÈØÁŠBcxköØk„Úe%@Øæxiiš¸¨|Š)zrb‘†nÝÎ(1IœJÞ³Ÿ*ü¥Ž rž9ûí0䀡0"8däÀC` —KW8e}t‘.ÁØcö–öóq}†ìWß»”;a>Š]»QyÁƒÞÊ/FÌ-ËÈǨÇ@÷r«j s›\ŽÒžÃ¡'_‰q7eGCƒ¹Ì„’áÛ I6¥ïŽOŒèÒÙ)ÈÀד÷ýÙïSf„Á˜4â46(°E‰Äi€slqq>^Mp9>¾1C6<0Ìm?¦4ñcòQ5ØPO“ÀéýÆ£ƒjUï -8lóN<£báÀy1×eºÄí ì¦:#À°"™  T&rÖÁué,ŒKÀAäò¢öLV¥#ŒÐ^~f¸{YOíª™+mž™ûK«á@P$Î#¥Qd˜$õ÷Ó6 Ö“Ùì-¤Glç4]œÓ!ívY“'O7÷€dJÐï¿ íÃ~‰éÞJä‡Úd8­J°”£`)›`uz¨&j•C¸(§þÈÞJ’æÜ ™Ü jʨ”è´V²åÄö›KÜ a5—ø½Ÿ‹û™)0)Zï…jâ¢*ï’*AbW78èXÞ/´~‡8mšäÕå쌓viƒ—(lêtôJ¿~ÙHÒ›lC° GHÕ\º(4£6TÍ85ãY‚ -lti© ÄIÊÝĪ©^]× É€J]ò¬‘)ÊTÙºÉÁj ø%¬bDÀWX-$iÝ®á=æ/¡«£×ŠfÄêÅCÀðhª³ã”\ §)”rPAõ|Ï~ÇÉÛ‹&˜Öed°öÏN?ô~_’ãÜ9ˆÁƒ(I¸Kwƒ…jI¥|ƒ¶Ž´ÂÖa{Ú©m":1µ5f·árGT¤7ï~D=ÊJSŒ=uAMp*Ó`Ñùk€”7€Ôfßêí::ÖülVNcRLÝê‘6¶x9Ì}¢e&»†seƒsX`±Ïz¸Bé»ØeÔ0 -çè&2+ùÛ¤¹jZ4-‰þN vØ °ÌÙ.æ:ƒCw®°ú•Ù4fÇES)])®»£.ÛÛ ‹t÷šwŒ©ñYs(8´ˆñ#¾%°<[ V|4b¶°ói5ȧy¡.N4.`耘1¶„½]#”»SðCxó{.»Ëº‹4}0ìxJ˜ -'F…‘8‰ —\+d{ò]R/Œ‰³b‘·žÃÄxë9ÑÎ[ÏO@ó ÑOðõ5?Bõþ¶™Ô;`t¨téqHš‘O ýøÄ‚¹2r®Aw„zG4xúå]ž@ÐTÕo˜ö}† Ï@ò5–ö ëAõžŸ€ø#Úç[ž'æÃÁʸãžØ#Ø¥ƒí"úÑʹ¶ƒÆ’óÌÁª:š^G¯xbÏÝ‹~0ýNØýáÒÏð?ËÍÛßþìןÝÄ–yX“€Çä~ß‹§®qú5˜çcÉ£¬"fO{{›£Mñ³GžÿÒ÷þg]Ó_R<þ•‹ç dÈ'xù‹K2ê¦5ådøÄ º©pAqB×ÐiÝ'ž7&±:µq\8ÿxÈ@c›“aßwÌù)½o£æå~eh¤n£oÂr¤Iè9¤ -Üx2wè˜-‹_`þ$Ž.k^â’ázÎrYԬн÷3?®Ëgì߇&嵑Lã@=ü”|1PÐøÁg©Þer­ÈZLfÀ¢ý&Fb´'Nè§ÝŠVõ,{Æ¢9xÂ#â™ PÅìå¥õŠ»p -CÕ\”ò°%%å’wœåÄ+ãb–MMhyñÝÅÕO¼­þ˜3”½ >g•€ëèd“Z¼Ó*åŽ É^¨«Ï`þmAoj oë¿p~G+>a~âç¸ Œ*É„Þ|•ÀŒ¡ù,¶ Ä—ÂÍ×ç<Þˆž|4â“«§pšø@Kö1æ8üv?ÃW鸬Ã*‰–‡ëH€Òu ša§ìźl‹p¿’éÊEè(­ÃS‡¥Àía]JÌ3(:VE!LÍYMJ¢Éš)ÅáKRØÙiúv”qו†fw+1bvŽŠÓ³X¼f\?/>ÀsE g7 и0™g.jFkQ”ØisyA,jôIædt!á4>ÜR¬¼£…¬ymÎ0“5‹‡´˜(RØè»bn`™“ñA1”9Œ–1×­KæQÕô…¥àÃG¡R€´Å³¦Ý‰Hª)ËYMÞ瀘š%7”£ÓêFÖÈNæ&q%äÙ“˜P‰à¤âyD­+ævA0)T‘ [´þI«N¡*!šÏêlC­‡ZçänÞCAö3þðºÍ Æè¯Zèô;Ÿ"’—æ(l©±hI,>Ý—!ÕÂáÒ@WìÞ 9Å4ÛO|¿ª‹ºöq?‘¿â½ððE_PÐм™Q˜{ÂÓ •Ó…cð¡0è^ÀA•(wžÉò8vLHÖÃ{c€1d•Ç63K%½bY'`‡¿fÌs*ž Þ{?I Û -€›O+A1#l¦Ä9^ÅÌˇ"×<'› U'gÒ G Ù³]$~ñ–•Çë¸ô/ß_$ÄÒã«O©ÿ±oL BçÜ[ÔÉ1kŠB6ÏeQ–³­Bô ÅÂiì.(SñF+l6qFæVRC¸i×lð¹­è/ï2°ðöŠÌ¥\ªè'dA<ˆ†»ÞAss2(s_loóBé†ÄUÚo™cQÃX¢pô s¨LuÅOòp(²Ô©Áz.,‹Kr;ßî IMŠHnM¹s4¹(Æ4ƒ”™ixUD[OVýi·õ?©OÉÅ[¶ÙMüÈæ%§NT'TZ¨)»Ä{¥¨%7ñ£šyøŸî|$¡O/ Ûècèp©˜w6d#3$kT«Sâ¤!)îR(¸'…o\FO"{[`´XÞÆ4iV±æM.Ó@LÙßp£¢Q˜£"—];žÚX_\³ 9ºùþâ˜7¿}PžiºÁmÌm!a³ïãqÁ¿ˆ…š}R¯,"§ƒ;Ûb^¬Dú3ip'rO9=*ÌÑ✤©9‚=–ÕŒ3¨y„¸<„Z·”³T_ÌQf×€˜5²ŽÓ£¼âØ4š¢íM±¹#¶ ±1Ú…J‘^<¨S‘)È£ÉáÕÃg#nTtQÙ¦™W¾:†eõùŠë¥¥)‰ïŠš7ÆŒŽŸ°½[N6NÌõæ¸ìO»­ÿE#®1U®¢é8™i$CÄ[O…ì™S¼ò2e³IýÔ¨¡ƒäËì>™Fbe»î˜àÞgƒ©`à” íJœf=sií¥º,(&!.ðpÒ]˜— æ´LÌ®ed…—Ö1¼3.ûXÙ÷´‰å³cˆÊd g²ªû°\Ø7»ŠF¸sê‹‘§<‹èé´¬äÅhD&ý˜ó² 39>ˆmFS{S¶ñÙ¼œ±˜ eØãK! a†ÈjŠ6¡DW´‰ïÝkÐø—ó*¹ À{4âÔ¯A?tg˜èžT5ÊÙ'ò.ÉÛ¨óa*_oúJ#æôB'Û[E?¶ØÓœ ¹øT96†E$HÑ}N2Œ‘Q8&ùì -ýÀ¶„¦¦ê·å¬7Þ¨Ja3’{˜~œpïlª´.Ôå‰5¶”_{+G‹ïdèM¢(³ÓÓÀaÏ> ¼öY Q%–ÿi7ø¿`¸u™Ëf¤Ïë³arr[ö^±s±²ÏiÚÁ^’<(&a¸ö mF\ Õ&žò‚³Ÿ$Kð b&}¯½$OöϨÞåÄbVŒp« `9§ {¡fàaû¤†:BÝ:Š±¿Ò»bv½3Uƒì ôÄd£ù;×,K#óòøÞ»Õ8݈páœÑ‹‡LŠŽpÔá¾0³Ã NÈ!÷¾²šjeGBu+lOžu2ì s¶/g+G»Û—|›³·gˆP^CËê܉°ðœÑ½&ÿ2¥+d ߸t¡É…εÝéG7:ï™#Ýÿðº®tþü œé”HoâNëù:Ô]Ã=âTÇÞÈ­NF9s¬ãg®už®7q®ã¯í^ç÷ž8ØýÄ\ì¼þÄÉNú‰› ýúŽö—îü—õÉâ]ÎœíÜ™×v·ûJî¾R—;÷û5îøík»Ýù™gŽwgÙ£ëÝYöè|çÎÜï\â×wÀ?ñv0á' ï[Ïëc ÷Ë;Ü^ -nwn7ˆ¾·üJþòŽy -ã×¼Cßkç<ȯëžÇoßÀAïotpÑÝž9é×\»é/î´sÔóã^ÛUÿÌö强ö*gîú•üº{.֙˞kræ´ÇÞÀm7~mǽÛ×®{çÙƒóþâòûþ’ž÷ÿõ]øO¼Ý”-Gü¿ZÂœ»ö©^Û¹OpæÞçÎüò_ÛÅOó&N~~ð‰›Ÿ/væèçÎ\ýüÙ³ßûõÝý/eÂ/ëv_•ï<8@)ýáj‹³ÿp"˜ˆâµƒTz¯&p½t ¸ö>„ -H? ðgá_í×¼”¿¬G™øõ$hàhóµÃ¾^‡Àég¡÷¿¾vð€÷MÂüⳂsñ1„À?œx§³0Â\ì× $<ñÆ?nS}ðØcÞûBÆC þÝÄ{?ùä£OoÞþů^üø—¿ü·O>ÿ™¿À³8`‹ 2êú’ý’åæ½ïüú×ö—ß~òðÉgŸò[§‡IÿÍG¿ýèÅ¿mÿÁg¿úüW}ú«ÿë“_Ìϼy»ø?/ùö·ñë?¹Iïß|÷—¿üäáóÝš•íç¼èù>û·Ï?úìá“çïôùGÏðþó}ô›ëk¾ýƒñü»ÿû“‡ßá)—¿¸ -ÐmÕ i_¥ð¯o–4‚qêÅ‘/ ‡H£XQ¿M¼%EÏñÖ¦ÐY& ´I€ª®¬¦óû ÓÅÈÈŒšFZÔ¶7»µùÛ¨. ˜´¨®ó VÔÃAžQá?S¬#T€Wc¹.~K¬:£Œ±¿.{r"gtN£gCŠÙT%†5¼ÁqÒlo@· ÊŸ!~%¯3†6cdÀÂiô#¬ž)€ê€òµg(Â2Yar®£äP$Š˜F’f5¡ø}´ü·ê|XØ,f5J(Yh‰ªÛ„F€<…v,ê9N ¿eã Gá|áÛTCŠî–£™ ú4X­-Mv-Zq&+^z¡¨j|φ—QѬ!%'©Ä´ †,Gý3¶½ ~hWÃ`p‰ÄæÕMx©äuQh¶¨0¨ìDô©Þ€%A¦¸Á' Lg*ª -¿R­ JÖ×ÄâóåÂè}L9cËFÔÚỖ$ mj9GYªY¼lŸdß.r•À¥7@šMq2öà…ÌG š$¬$^™-ÖP¸Ä˜ -?»^¢!ʬ3¬ÁMœH - .¯y†A…>ÜXhŽm³çåV¸›—'¶W§„¯Nâ~–,NNJÎs8ŠƒA]‚q¬ÜÎ q¬iÌÓÌÃT³~›Çh]Ï¥…áC–™Œ$y¨’_ÁùeøÜR|`8_°¨ýæ‰ì¹g³u}¹nø‚/7Zç?Ä.WÌ„…ã)8=+‡C…í<9}ggôp˜ùÛ“S"®ez”5'éTtȸ3Ix™ä££l=‘ÀIílt-ÑOäþµzÀ/O´È‰®92ÆãLtd8“Î<áß#£» -»>'çæxÀ¨ÃŽ'ñä¼Î5~zrþO¤Ä©89ŠSÙtb®JÒîT&^ÊÎùÓk{"‰"ûAo|%Û -àDQÜ=®TÎôϹ¦:Uj(ÀÇ”å•ì¹÷.3ïC¬UŸÃ˜1²£h¬V¬Å:€ ÊíÁ§í jóçeà<$÷‡#RÖõ½b|{õE¢†V5 Ƈ3j²šÝ-èÀ¦¹Hê#—¢äREä( ZŽìÊ£O±A)™1©Û[F¶T˜¾ #—¦8‚>8£o3Øo ƒl -Yëv dZr-‰![$ûõ™Ý÷<'ʢ̷¢ãáRVÜ┣ÄA2›-ŠOS‚ÝËÞ#‹OÉ×þÛFÅ8f„°l»@Ø#ù-qÆ¡˜}Ð+wtË W²á,ë­PÀ¹©X{0ç±ðs‘SÃA÷˜~‰í¸×Ê>OÎÙ›‘-ÈZÓµ>ù‘Ù -ýÀ‹„O½— Pì¥pD¨¼ ìvÍñäÁé˜Ök5E–[ª†wâ)l‡³Â^„`És˜Ø µ,ŠÌrMØARд~jñÙôlœ†çP õ-¥³6@R41`K?Go*æÆ6Ò§ÌßJ7A(Á}¦èC¯’^5xf2š ÊL1Ǹ -ßYì—7Jù™–©»GŠ\Ž(¤éÊF—`ùˆ`‡” ìùÐÛ.¹°®š`ŠD;YÅ8‡ ÇÛ»‹ù4p.ǧ ÆLͨ®¥8¤ÊóÀêHø¡S»%¿.KuÒ¥Îû/Al 'l ÒØÍ¿Ìt¢Ú¢ã…S‚&†Hm*áv~Ð j®ò*@÷šfž`AiW'òËaÙ³ßkU'øUBo;ì•ÁU­‘)°á-¿ºÈM1e=´ªÍ ] 3§ì%ü ½DØGÅ©ŠAÀÀ KÆf{ðÄo/òEô–©OƱ&í3Ç0鈴¸H -endstream endobj 64 0 obj <>stream -ÍJ©c×õ9û;He»mìÞà𙚳ýLÅh:ÛÅà]AbàÑHèÁ níðÌ2ÁÇ:«L„s)èÔ±ýÞ®³ ,Î&ƒá”?P Õþ!jÜlu1`j$V‡Tl¯)¸ ¦‰:2ƒRCÐé -ÍX׈DŒ4Ô ­L Ûúøc;…;ë_¹ÑÓº -¢q© $b›=¦8' lRô˜$4„ ²-·„ö@ŠŸ1Yõ€†${Ù¬fÉBeì0Œ½€ -ì.Åíàƒ?‡R#ÉÅu!÷[·‰ ¢v‘¶ …Æð¤6]ç™èqàE¢’(®óP‹r;s8Ÿqa|¬Úòx£‰ –d‘€löx_¬c•‰h±"¿+¨})NMèJu&t¾„¹y”BK¬³ç<òJç¯üTŠ±“59®Üq‰É'{q²c×;{'ž8pÀ‘MìÄŸžðÝ9Ï™øŒÛgâxx(ÈŽ§ìä,íƒPõõé>‘Yñ T}-SN$ÏAB˱ƒ¸£ ;ÊÅéy³w;®äñQh…ûŒök-p¢+ŽJåNùZûUÔ#ªìDç]ëÅ£ú|ê=èÙSm|¥¶ùÛ£~?‚€#X ;‚Š#ò8B”»ÇáÌôYíL¤ ³õ0Ä Gмx ½=ôN1aMêÅwîÍÍ‹Zæ `u™Ü’ùŠ<÷âŽÌóŠpë0ñ/SH˜éŒ£é,BËú!Û(6OyâšÒ£Ín‡Å¬#’ze6)Æ)Ì9…¸—LeÉ°ðÐŽ3i¿eã{²FóÚOrØŸI]L¡ )rOTuÁŒœVCɆ¤·¨»c lˉùÔKÓ!ͧà;?¡‹,Hð„É‹Ð8ïP~é²!»&/À5­|}3*…à'’ÉøpF)ó†b¢ åQnnSrŒ” $%Nàe8y qí¦äUεZ`æG÷?ê8*OôqsòÌô<5SO-ÚGŒß97T¶¡ÿT¯o-¥g@Ò•)bÐ)’0rÄÖÎÙCa}lmaV®ÜÜÌY#e@ØD6™¢‹´-‹_©c˪Ÿ :`Lã0(ƒ -ï±ÔæòjN´Ç /˜< 9¡Œ3+‰Õ’d]Ò `²t^]‹z›B¥*Ë¡°g,Ô Ž”>+ S#C»ÎlÈåf¤æǃoü°cE™œ¢®SJ'”‘,½)vN1"N€£»Åá'šÝÿ\Lª¿ ¥„)J~¬Ò‡!Ãì8àHo Sºú Ÿ®'70ái 7³o«&¾ÃE€ì®g‰ÖíøÑ°‚¯°e'¢ÊNaÞ’½1êÌXÐ’ˆ£ìÔ ß€ëA¡Çý=ë}è Ú”ò5"&ˆÐ1:šØšô€_šÇ­œyÂïÐlÓÞŒ“E¥*k€JLã59Ù—·)ò­ÐÜ5ˆ“x -ïÖUß“‚á3 -ÏÝ›¥Š£‹ã’\¼ ϹåÔºþM¦%3õ)l§˜‘›5-•îUfRCX@¯Ôö‚ÏáVNxf5ÇMkˆ#F•$¯ŸxÆ΋¨á€B¼ÅPCYœc&ˆ¡§ {V#g^Wa=ÐÏtñ¤ˆL#a˜÷ãH—.‘Zy󓢊®,P£a ¶ot°0c¤¡ýº`zk ~‘k–“7áÍ\ó¡q’CD;{h¸id\!zú>vYþPÀ-!&DMä'NsËv™€LY²PƒÉŠgçed¯ _·`âÝñó1E|°2¾‡î]x'1¥÷SC¡w—C }¡¡q¦;-ôØ.`Î]÷ Ì“è°­û‡ÚéF2‡œÑ]… ¤aDt>Þ­)yíÀ1º‡Ä¡–yƜ™%,(£™/¼\Ž93‘JÜ‚JÈœ'¿JcÖ\žCÏ2ÀÜô¥:ßqD%Êâ*Ù¢7%4u‘ÖæhxÚgháMÅ–²R?’Ôööûlg‚ù¤í¬L~ž£8Œ ZPòdz6º½{âà‡¡#Ùð7ü°M'èâ=gYêxreÄ¡5}IÇ=% X°PX(žC[Õr7 L\j?‹* {ÀºAæÖÅ­ºÄ*E —)Š+˜øòàÛ‘Ùî‚HãôpŒíbª(Õ”Û rŸæ‹ZÍöè³½@4î­7ng¿·ýÍÙd÷¦Úó”¨Uã+ÂþÕ ûƒŒyÁ­¾–DGiu"ÓŽ’ïD:žËÐkI{Æg2ûD²¥ÿ™’8ê’}sPK`‘ƒö:j¸£"‹ôåQ§U/¸ä ¡Zü¸ÿ1Ê5C™Ä»fº#[^ó.ÁÁgàxRîÐÀýú@ÝñlÞQ._áÃ!?“Gq"TNeÏQDÅØ#ÒîZ(ç©|=ˆá£¨>èG±Ð ×êã2ò¨d®ÑA_=PÑÕÚµê;hHüð¨HÊö “ïÑÞ§zþœb‡ÇPÆ%ù”´kÐr6§øç“ŽPê paÙº!¼#íÚ>! -[ž#=\~¼¬‘èÓÖ(A‚-+Œ}9OeS¨aöRsÇ…òp[c­œŽlÑrÓ£€ü ¤ ¡CF”$Í«ÚÆçŽîšžS@©<041C„'¿‡C -P³ ‰,ƒütYæé:Ù»¬Òä×Ï|!æ\ð©8€A̸¨œ¨lVÉ&ÂúVPÿŠ°Mª“Ï‚2IP,yHùÎ0\[ºt4¶&aì+“ë–¦<€EzÊP³K ©L0·!.´¡Ua àÀÀ¨’]&´2×3¢¥ç£ ŠS‰Sصã“¢‹œPÔH£ÌÐ $yÃXkAd—ª’{ª¢pH¥ý°-Þ•r3Hc¿PèÍnsª*WPÑ<üçÌ‘j¥7}bAº·ü݃&´ÞQØ÷’Š ù¾S”9Ü,ŠäÕÇ“û´0CFÎk<ƒó„^Óš€uböJ¡.¦² G5¤^1±: À2Á,¢æƒXj¡Ò¨æíÁ!(ÂaØôÞý·ÝäýÍð žÀÁX¬áÜb4´‰16M‹œòÑÑG­Yøj­y‡ÁEÉI¥ ¬[N¢-RB¹/¹+@bÜù²ä‰ÓÂÆÑËym–‹zÊ*3vøÓ™gV"FFGÌ Es"I ¼:¦âà—È -LQ]8²3¬õÒ8W¬G`S’µøË4%=üµéNðæ*[5@䢲HI|Œ&ºø.H0¨úÐÄNt,MYµ}€ˆ!Ná‡&GÒ“KäF"R¨µˆP=ˆ!Ÿ0å NMÉúV ¡:\›L¦êsÊ•ÞGµchL“^2‰C¯€£½äþ˜5®ÄF o?UêòÖ€¡)c¦3ti‡]xÊâÀ±i<œ ÖYeøäx’2b7ÒL^‚¹‘oœ -G3:Y!ÝXÖ=íç€÷Zìœ@gÙ|Uq±D—n˜rE0øÖàNž_ˆv4Ö,°5Smí]•5Û7àœø;xkÕlZ'O@›Ù‚¦«×ƒë9ÖOb^’¶£H»÷EF0‰ì3f‰ªzU*‚´ÐÙêJnO±[g ‚í«Xú¯:q±lQãºË)‡1y«Äî#…8ˆ›å±¦N9è_¹x„g 2ØEö….A0 ìž‘K)£·³šš±¸dât"®Tõ2JPcØKÅ»•An+y)Óq?œ$‚›äîDáp±®ç5·áä&÷˜‰÷*%¯B‡P_NüšŠŒ˜³Xq RªÅ»áGožFÿJå‰ S¡& ¸Äc”Nz«¶0¥%Å¿;-š÷¦=¨‡WwƒÆcªåü1¿ÒÕëêw¸þΓÕ8,› ²ÃúžìÂa»ü@öõd÷lâ,và§S®;aÏ>>ãöÓSqrzNÎØùa<9µ'gû\œH‹£H9='2ê(Éïhwr…Nð8â”òœ9žSlt¢NÐÖ5";Åm'ðÅ#¨,3þG€ŽB#ÎxÕ1;«œ T¡E°?R›–“!ìDbpäÙr’¤º¨ý©§²ÒÛ惶9xÚÞdÂE™Rñ˜ù\X¥Ø"BËŒ@¾*D -’ɇG)±ÑÐ&h Q×X½æ:õ5ž„ÒÓ®æIáeöÂQr9Û ‘ £)™3yûœ5Z„tpÆ×u!º¢°coÁГÒáÁ¯8Ýó,ÙE¨'k1¹}+›ÃG¹Fº¦jÉhëå襲iÆü9z(]åtìuF‡*’.“C[”ì¬XS òr¿¢%1e“ ÀÈ“&ê†LD§›¸¶/Åtiƒž"±¡6%,‹0øÛæ-¿M˜0B¦t­"l)ÂPN=ËkÝâ¨ëScc -Ä^)÷´a(wØ? óª}ús™i:¨IñŽ”Yqx´VX fÈ|:“èg{w†öSˆ³á…Çg"³`ÚL¸WU,¨¬gÿÔ¿;.n\ fÛ³1;# ìØ` -9tA¬¶6ÒA?DhdÒà dÊíR¦©•Yw=‹ËÍòŠ;%1¬œ¢‚ŒþÂ"W_Ñ{š 3[‘˜kœš5 eÆ’Ù(5!#Fg8B-òŒfyMO—é|9OÖüjsü§‡]<ÙëS8/žpÏ ]1£ÿö„k¬}rNÎÊÙ‰:½ ^ѳs|8𞌔 ùq-g¼úçJI­ƒx»{\žŠÍs{.OåöAĪ7¸Ögã ZîTdu¥NµÔ•:ó_ôÞ‰v<¨Ñ;Õk]ëÛ­üˆú>Õó'hà6œà‹rWNpÍ ú9‡IG8uÀ\§àìÅa½($H?¢ÇŒy£ŽÒ¯Që ¶=‚`üö-Ÿ`ê#ø~ P¿V ûòAŒ/Xe©­®÷`°Í¡»‡é¯hïœ1HIàì³V-z4N˜ÍÅÚt—A™°.ùø$’Ø¡M)å›ÉgàñTôœaxM“Ö¨e×L ÏœY≿eM,f?Ï×e%-™2¦†¤ gó8“q‡Ù»´$áÕœfn˜K†´•â»Õ[)³áÉZgÙ\âÚH¤Â&ýTÅl[H‰‰ìÂ"Ž‚ùŒh1£³‡Ò¬±ihwÑ•É2lÕSe#Eöaó.?Ü¢85tð¡/ø-«ÇÙ›º³4¶EÉ/ËÔÅPÙͯ<å“áèå¦ä:Šu‰(F\Oîï‰Û¦šI3 Rýžè (©M'g)SGGþ@ꈲ´ü@ÂmŠú>PzñTuzqý§•$}ÕOs˜ÒL`!zf)5¶ùSÕ{’ -0H›³¶«ñZ¬ÿØõ”ä$—¶œ+FݲÊdŽê€"_8œƒþžêE韵xØβSðSR°òÔ(àéZc(ã˜å†rÁÏŠ )$¹M£êXÑF9±H95§y˜j¶xOk\QìLJX>ZàH¡ã àÊÝe 1-Êø¾—€P~<äfŸ,ôfC5oècêmsÓuGÖ4w<‰»®c°hNÔñÁ‹Ž›¦º¹;Ô;u%Ï|®Ã{|Ôác•ø…=$‚ú=ûûCh74? Û0ÆÓ #ZoUåàeyAb·|ù¸À"f•ôæð‰áÞ;Á§2·p¬Q* cf9^Nm -ÚLð® b†hªòÛY{­45*³Ò¸73óYöÞ—„eî,)éº5@B µyw6IŹɨ‰ú¤Rƒ¦*HR«}õøEÅü·¡Nå“XõYú >ùR–âoc ÓÔࣺéMॗùvìÇ͉RºûÊœ{èæ¾TÈ”/ÔÔN!òuÑîÕ£*z¤Ï£€÷ºvfDêžO½Ÿ#ÝÓ”Mì{Õ‘žªt„†@kgÉ)Á†,/h$tÇðté¨XC@?Ž7#`dSJôx€Œ+ð¢ÿT­­ÚèŸÚY=Ä×öS5´” HyuØ„MáYÖ^ ÇYð°ôâ-ÝTÞÌs—ü±Ð¬J2© -l=˜ÇLöE$vT…=<ýWUOIÙ©=°óà´øTJQôØæ&øX«Në¤쌲xªZ«c>·y—T´ª$©'´$g'ÑÚ½ê"´­áæ4fBÁ }_“G-B ÞFŒÝȲÑtöÛÔnMfï·)¸¨HBðH•E Ío-’âš‘¨žé㬲ÈQ)ìhgM 0÷ ûÛ[¤!„¢^¾ñ4*ÞêÓ8”·îîQd?(ÊΤô§à8)-4BSŸ:âNÙ‹-JGÕ9’¤eNᦷô=öfJÏA–r©ëŠAkˆ—ÚˆzÂ|ç9Oè(«w*"FD8ˆ,z=ÐPçu8Cf¶?Ýâ¾í±2GSàOè|ŠŠ lxlÉëÜ ”øÌdoƒ%Þnº¸é©r}Dý•tb$¦ïß ”%¡'@ EA -CMì¼?¦[ϬQÉ( !KŠbm a¾HÞXÎÖŸ -“š’ᵉ–[#ejP¯0äéót¶wl:!E–¦´p©RÕu1äm;"Iq4ÞëÎŽcYriÆÎ’H¥ðŽ<^˜p‰üîYpbÆqc_ORZ\I?¨£³ò@þoÚÞ®Õ–åÈ}è?ìC7\©+³òÓ~Ó\hØÆøÁØo¦™mÜ‚}Ô¸­ûàk|D­µ+sër[ ¤sB³æªY•1Æ⨰W³ÎæÞyKIÛ»¤•rƒ$ÎàL)ÎPœÚö;t㯔ø>¬©Æ~ií—ávÅ.Kû‡n`Ù›}²l¨—šÇÆÛíÎe;±xî÷WXÝÇKOgñ3‹7Úø¬½cÛx¿½›ÜøÓÕén}óƇ?ý> l#Ç&¾ìÑ&b­qm €LHÖH¹‰§KÜ}«ØðstÞDð5Ô¿Õq]r‚5sXSŒ_IG–Ô凎ùg“í¦MfµÉ¿ö‰Ú&£Ûä}Ûüp“G®Ùæ>-½kzkõê—} ›ZoÆ9$ÏÄX¢lÊJïíb±ÏX䕲 ûÂ=úÑž}Ƚü½v1¤Ø¨ Lj]WEè‚™R`†×Бyhš¤/-]‡VB:}z3Î:ì‚\“@7¤zàC3þ5…=iÌtŠY-N0¬CXS9ýˆ¯)Ég©²/Â2LÖ#†©†äsõ´Z' Þ³ÊX*Ð2Ù¤±G0¶óôç8Á›JӢγjšmb]Žæ™‹ç Ê -*2Η`>jr³ÍGÑ°FúÁ wó÷p€€"85.’pöKv²lg²ä¥6µüÑô!èØ/R&)@®0L±ï©©(~!ÿ ‚ú Îê±7v-º„ð»þ@¾ej.ï%e6A ‘Áׄk\êqÞÝaÛÔ˜¶å¨}éj_åÚÄΨQª ©©_]ÅWö–­BV ]ë% ·$®ÿx`d@Ü”æ4YÄx/×cñ`¼½í[÷Õ¦˜û/µ%úM÷g“Zjú6bËó7ɸ‰úÚ¥IÇšôR‡ÙÃÅ8– )—HYªçSæ‘Oc ^NezÙƒÚh‚&Öõ9¡­Ä§Žt_«.,;‰­êÚ¤®L'ÔTPb«Å@QNûtD&gÄêAWêl¦óPD ª/ÔÔò}­FŒÑŠ­DÓÙâƒHî`r‹ú1ãü`ÎzæpNmWsœ“€~Hk4rnà~RƇlýË¡¼"ø>ïh¦ÂFª¬RàÚørëìNtõõ7CrÄšš¸ T¹Ñ¸ºÎ 8â|ÁP«©bÆB@Ú˜“ˆhùÝj‡åáFÊü X™³Wêô5jFI>‡}ÈØW–Å]É7îŽ ‰ŠK;Õ¢—¼}‡ŠÔ†1?CIηt†IÍÁïÃJ±° „]d -“˜“Òµj‘Œ¨ Ú^5È Ì 0N†ü½ÁŒGœ_5!åÔ -ÿ¡e!âÐP°$»Lz9l£–$†ñ±Eô¯P]¤an¦u÷§§Ý¦Ã _Ê—ž­™ùçi‚Ôg$Ö_g_\Âx,Á9 Ì$ß¿ªË Ü+KDMóçs¼aþTi|Zá/18¨a åNRÊÀ¨RG¦˜ŽÁÍX,Y©±¾ØUSŠ½`$´”¿·Äñ¶·ø¨8[зì8÷ÿˆ{äd…_Ê ¥#š"^E× xçZk—:ë• kG -@CÅ%è6*­ù³˜-¡‘°0ñ¨‡¸Ë䬩â1¡"ÂAÂ$_¦ÓG+¨‘…#dG½Å^pIIL’zêÇü’Õß¼þrí±çžýEò7?ïìu÷oÄâJVo³óI«çZ½ÛÖ ®¾rõ§¿ûÚúh/‘åᮯ`ÿ®v/uóê¿X"ËRÚ,¸íÊÜ,áÝB_vÄë×vϲÑv;r»s·[|qv|?ûŒ­cÙ{ «Ú8´¯<ßâ"7Žtïq7®ùá¾/¿ÿs,€ÓÏc)ÛгF¨5ŠmƒÝ׸¹ ¯k^#õп ýOó‰/Gñ3FÕ<=¤ë*štê¦LsîT[Ác¸Òëo„1j@°×>¦RÒ‰d«(ÛME%´ÈQRì%A·jP!|ËiñÀ$™mL«")´ÖO×±¤,Or;o~>PJâ¦âQ‹®}z;. - -IGñÏ欣ëéQ¬_ãÞ¦öýw>Ò¤AZý÷vÓ:±º8íÍFù¢º_ÏL°²hq’Z·®ª*Jx°ÞÒ…ó’85©7¹Æñd߸VwË¡‘TÆ„áîã¡K5{;Óˆ”£¹r|¬Ããìøƒ¬eá%5‹‹Ã7s,ñˆàf¯¯$¦J¬þr]‡˜µóF¤êo!!3æ@ÃÃ]ÂÃÍÍC]¹ž¢L†ÉN‡ÕÜè4Ð&Â}øŠ.%y²—Æ´Ÿá¸ç·8MÂQÁ!±F–/Á@•d©.—'Á?ÄWkµcÅKX žž#CÇ°B|xSEy_F£Šô 5­ g»n•¢+yi5².‘œé§!)f¬Ë”ˆ¯©DŠEý'ƃžD¢EÑ_¢ø¨Í'cQ*â'‹h´|²’»‡pUB >Wúqˆ ]!uHúëÔ²UUaÈ‹™àÔY‘Š2›æ -"‚rÞå$…Ž’w·ä_ód®|[±ù)ABRÀåħà©oX4ÞqHrŠhô`Gl\Ø_ <ÂÁÛrÌ“L6`'{L^Àà­*¢&H§¢Ÿ;Éïü¤tGVcµ!/éù0*¢rþ­†*2âáSH2¸±Qî[ŒÎ„ˆ»”3²¢{?Èö͆$V°ñ†ù{ÉguÉ *EtžðIeå—sòÞ*¿¸°5åÏ -þ—ÛËœ @6, -«1²â%1ÍF8é£e)œÃJ€2Fá\Rø(Ži¤yòBÈþ¿©nhÙû3”Æbr€$È©ùJÐ 6Œ%ÕÀIÈk¡ÝJù XH¤¼³bNH¢1!¼vJ8™B I¸tÜ)·²ÂÈé.(+¾èR©Ý€_Èa?ÚîÒõà\É.Hº®±±³Â$Ðtx²ûýc0Ìçu†º®&-ÙN+¬âÎn€µò£HR|“n,`!@/Ò#_Ez«vò†šìP¦·ÀšÇVÁ‹9#q-SÆjgcMÌäyjøŠ<¼Pð Y5HîHUB´¡ê/=Ôtª^s;r°~ÏÚüw+Ä„wà1 ªÏ\ù÷eáþ`W4ßÃyó»bB°çx\¨3Mœ&ò¢>« -5E®'Ž¢´’W€”S±{ërf£žÃ„˜yÀ§5UÅ¿ò—à -V÷óËþûöx{‹ËÑŽ}üæÍsÙ>¾å)¯obû¾Ö·ú|ñÛå±YEëJ[$Vé²th`ÁÏ+|ÙÛ­²î¨u×m7纇—m¾u«ÏXýÊê~¾ðS«CûA™™‡ß[\ãÖ®~võÅ[—½zöÕûoƒÄKÖx³†%ŪŸã×¹›Ÿ£Ü&næWw±w¢×H¾FûmRðLÖìbÉA^_'+kZÇÆç¡è—/Oxȶ£äszJŸÒñ×(ï’¢[Ž3\üQ ÝH -ÉXë'ëd jžø©w`Ð'côZU¢j=Ô±˜3ºž‘9¦Ýú㜲sÝÁdb¤¤75Râ%édN²;.'‚;=4ÔéÔü¡l¡g¢øõÃhœÝA°»‘E7 @Æá89 ®¨Ò:§=1+ojÓ -2^q¼Ç;'ÃÛ¬KFÕO¿ëêfb7V·ûh°©_uŽL…Ã<èÑ(öîöG•Xl•N45¦|£9;³GöFb¶®ÐöÔ²;ßlBÛCÓþxu¸ËKã”)ªÍÞ›|0 úémO¶º“¦á»ÞTœUëþ‚0•VâôDŒ š6`×È1Ì»/‡òqÏÛcÓ&†EÂ’!â[ ‘ßüL†%¦}ç}Õ"}ϸÃ,ÀË[@Ž[ÂYÃ¥qyh}} -½Äj’c¸ožTÙf¿Þ,,°V4•ãm&4tOn<ÌëA„.vYg²…â ÕÛ ÅJ]ÈÀª“_*Ìb¬[²€}òî£= HoÞªËT6ÕírÐ=»RÀN?6BL›cÜiX‡4²ÇGUk[˜Ùp|8üÏ‘K%çR<æýãµG¾ýÍß~û¯ÿ%Ž?7’™D¥šÌŠŠY•ÍÎsJ‹ ÉJ'ÂZUˆø¨ŽvýN®¿k¨Ã{ðcû½×þÓosÝÆŸ~û›ÿôÛßü›ÿöwø—?ÿû?¾ÿüÇþÓ?üËÿþöoaËßþîïÿôço󇿿¶ðþôç?þáÇÿáýñOÿã?ü÷?ÿÓ?ÿãß~û¿ð©‡ÿÒOI÷OY~îÿù\ éÿä#5Mz:ÿñ_ã„}+R^žvRo”g¬·_TâVáÔ  EØ`'²á²”Ö(,äÞ­‹¶ôæˆaäUÌ1kàV7Ž99¬–Þ6Eþª¢%è:€yàIl F-¢’„^·"dk"\¾é°<]œ”ßkŸpœ+ŠÙä9Kc± jKÆaŒœª¬ùª†j(«"ÝdÌ~D x]NUÜ·Ðýí¾hç#)ss™BÓm -6åH;é2M(#Gã`ÿ½ÉwºÿsÖ¢£4ŠÉRì! -é‰oxVKëâšá¸Ž,}¼_ÉÑLÂÃB™³ª/ôÎŒ Eé]À†ÖbZ,ˆ³­Å¹ƒ•O©câM¹]ÖÅÛk"Â?´úûø"/ÆL‰#ЈÚ.ˆxªLÁB:ãÞÑBùÑÓámlgàÇ`×°å» •4­Ö¾cœ'ç,Û”²_)¨f¼ ^Åi•Ê©*¬ªý¨ü‚3Vš_4ž((Yîë¡k! yHNÂyUA=•é³\2YYHæx!HL£›ãM Y¾,î\²r<|]SMú -@º¯ä RlñMrÁÈZßøƒšF€³N¸¯;lqÎ0êÿ:3s¶’:hõŠ°H(µž„ÑÇÅ‚Oe[È`€:ÍÞ“ðÙ£O:ñäÝHŒY¼MáðW—þ '•r Ncþ*©Yö 8Kv8ÿ><¤¤[–¶³œ¦:Ó§¬¿'•kC /SÒÔ`êŒÅì>èÃraÁL×5?R³é3ÔrnÄ–Ê<Æ¿qFQ–pÂuä8-&«±Û܇÷*ú#è$2k‘rC=î…Ê €¢œbRéÂeöSýz^w`í¤ËƼ£+ö"‡ñ#Dc–v ³bž>B¤×ˆË¤]€š;l.„ð' ²ÈÀfœô‘b\šðÔÛ¸ò9­±˜y¶::9@ êçÙé‰êþ/²êˆ¹ðé P=ãPE47g°01}~I…X}eܨ‘gŽ¼K‘–ƒLÔ¾3ž†ÕÏ2Æ©…4ÜÁ@¥ÓÉMã\cžžb~«õê1)D4B¿S¥¨‘ˆA›^¢T·8Ì\_ÒHÑ:âOPž ú0>;ÃÔg -jF$÷8*àsô‹P¼>ÏÄ>ŒR´@=l˜,»>Jáú.i±Æi`–ÎuNø­LŽþ2}(šàœ©€QµHe%‹ÊÙï3RÞÃ…Nð¢Òô&˜’ -’-¡¼¬ÃM|Œ,˜Ô¯•)Î( ‘•£3æË[·‚•ôG­nžs”(a„ë§h‰%y+”ÇMJãøS£¨€±8ì)²^;.'äêà ÚÐHP¥cÑ%ë~L)º¬âÎSóK’ÆKâÄAé61ø^“4„r²,ƒê<”ñ„¤ -[eTø­CsEFŸ®ÝZ—áÍ(@q4Lò.RŸÇs‚I³+Ñ£ÉÖ÷‡õ¨¡Àu›4¢æ;dªG-÷vÞ×véc”$˜Ã3¯O…z˜ÎjŸmÖû÷j~¢ä±{ -¥§wœÀöCVOØó.S÷cDÊm Úäò=Ý-!IÑ™‹¯¦M¦Óå¬C‡ ˜êˆbãô\/”>“„äÇÌòïqá­i—{|†Ñàei&KãVi:Q_©D­•E? -'¨˜&ø‘—„,bi5 ‰:$U9³è(“t«!œ‡kZ !žþªATÖ‘#m¤ÂBº¦LÅSw`Õ Ö1-ý0bLš´W›mwxƒ¯5N)°Åg‰ê0ºËÔ¯PZÃܼÏb>ze"þ]ÒBÑhÔEÿ¡Ý¬eA YÀl2•«\ý¿¼$j垤ʽT¢f0[Ñh:¾Ç’oPÐèôe"?©îgºµÆoDI þ’r4R+8 A%ªJ–½Æ1œjû´Rç]­hJLP‰ú1r@ÓEdÃU±ÔxùÊ#·Ò™Szaç7•>%Wô‘áPÕ}Æd–Y9u‰HÅ(èM‚ºNꆰ5+qpN(-ha•êÜK–ëlÁ.¤š~°g÷W `õͺ…?8·:vÏô÷Ó¶.IZÆ·–tø˛Ǵ Á#!äFñЂV" >*gÃr„{¯åT«@å ®ö40CbLР17pZ¼ÛéACüvÐÊZ0‹ò·bˆåy?.Îj˜ó:­üA§Zc¸‘–G»=µÅ8ºN¸ë@ê‹Üä•`@›T1Ã÷(6°gjq9:õq£Qo•ÂŽ†ED1 -º*¦`Í ðš™Êãk-Mtp¬Zïé@øXR×Jó!:•Hª ‘Y}®já"k»"ô§Ô©&8š3‡ j¾×uè£Uç³H“2-Õ7 -@ø÷D=~tQ³´ÏŸjîС»’tœjÄbD¿«ÛÆ!xõð,ed9‰”y6¤œIi 6pq´Iz(îÍS½ùºß3ÊÙ‡u©‰ÌÍ$]H$ZÒñEÁsBðb”â„Ö¬ÞŸ5Báe‡ ã:$15FJ‡• =sd©–¹©®á)çEÉëJMÎzD¹÷ȕɶû)—€2÷á…¬ìôIÓÖTçh#!ZÔ pþÂ5o=ÁÉ~ÂZÊ¢gÚ>îÞF ô8=™_ó=XuÖͪ¶c˜2»ø…Ò.”¹vm?£­‰gjùý^ï¶8U§ytr#ªñZöÔ†IÑ›/š›Úob(à*¸nÜ +8±ITžDcyºÒ¹6#Nª¼ôÇ}Z¥ˆRùnœèô]Uß¼.Œ§ -ÈŸ¾ézóÊpaqJí¹“ºPpKF:?uvÿ{-“_ä&ÚÂSAZI‘[À…â~·íáü¨Â/°Ký2æ°žÃz‰Ô‘|ï0&£ D˵}3,5U€Èí|óBG>!¼;ï€ÒðÄ/G -¤äŸa Z&g -׶ƤCÔjøsÚЈ”i$G‹CgÑi~†JË9âX«iì3*Æk¡Á½ëµiJ¹¨¥ÁúCVcœaEÉ&ƒÀ …]†rNý Fs„ ¸ÕßxVu]0¼…QÑÞÓlöÄ—íB%©ÐnK©îIÂÔŠ…¦äÜ€v«,&ËL'`2á©=”CÕ ¦nõèÕo¨è¼„òm.¶I=²…|LÊæEÚlí8ˆ0?ýbëŒX”x³›ËDzó2ãBZÔöØÚ’ êÀnñ&!VÞli[Þ ñ>g"[MÏ„eÈrþ–05®ø¢lƒoGþKE²i <ÄÒ/}ÕYßwáÿïmŸô—/{ªûþë¾W»ïë®=à^…üt`SoŸW+u›ÐnqúõÖÚOó°•Ã°¸$ÍÝŠ²˜,uΙpÖKB¥_bh@©Ÿ¾¶Ý„ÿg¢æ^ŠçÓ?®jF¶Â‘ƒ°ØÇ5ƒó?¡&Z¹‹ô‰âŒÈr$‚e­¡^ ¥ò¸ kOQ ãdÎt[ cÙ£E§ÖI.Ž3¸wj‹yüÿ-AìVtUá­ÚÄØ‚ÓŠAÚlé>¥P/vVÖªœ4MÆ!A}©'Âr⤨PŒ¾-å—ZˆðtÎÓ—¶hlàÁÖ¡q)Žø½™o›5+·9>ƃ6©÷ý"c[¿ž! nÑ5aX$Mw«L… †Æ2?8°x9–tùXÊa’GS6s3ÐÓ¨W·½9–=aáx ZªÆ“$™Ü;½6¯.<¦ï½`¿¡À;‚¬Am¯—è'%¹ÁÈ;Dº}&I²%x¸©iª‰Îp06L;@ÃA±Ž™iâol¨‰&‚ Ó†K²þv¢Ìû=“s¸#•à» [@%eø¹èt±"púQucñ’ÅÌûd’㡼—e’زEÒ؉ô‰.‹” ! hÉ7O e£/ µ*OiAËÑGÏ•³—Á|lÆÏðŽïž:­ü¦?(ms/?˜p£~ØM€Ýr­7“+(V¯¨Ó(CÂâù3Ø59Çe]5ç–$«ë-5rhà¾À®<†;I5kðX»Y”ôă)>.Ò‚¼–†®ƒ'v}®ntQnöƒð3U`‰‘ÚhÊé@®r‰/ØÒHÎM˜é:è ‘ò@ñ®Þ´êYìvr„Žº&Ç=w|¨SÔñ’õï§3íUÏn¸©Qîá̃IÚ1ž¥ŒÌLù¡Š$]F’$ -¿Š°5gõOÚ×®ׇwc"œû]z | M‚§§á¬ø÷óœäÿ`dãŸBºëÃpþiZ®MÛ£fòa¤ˆb7ÊZ ¦`-YøÃÒa,à!ÁV¿ÔóîÏë ’ÐJ'Ò!åÉ:ZˆI[úÒBrZyP[ºÔʪz¯¶ô¬ ‹kez-„0¯ïÏıÚ)vÙÊ@[ˆj*Š¯|¶•óö ÆùÂ…A÷dÙ-d¼!רè¢á9¾öò©YÖŽLR¨£‰=<ÅÂq hÒ’úü`˜ëü ¤gsè‰B ŠÓîøÔ1›cªT<ë‹Œœ%"#€+Âð»To`Ääh =K‚"¦äR`Ðä< « ­+ +¦½–c\WMÂæªE} Ëc¦Xð§²âŸsç—ù~7ÃÕŸSŒgñË­œ:pø>ð‘xV5¡ÔmfTªáþ^âûyrY'ðƒt?ϱC)¼{TNaSUD¯òŽÝ3 LŸp8ÈQ4gé À¤þpo¡{‰îgDVpè~¢N!#¨ûš4%Ê–—È~†{Þ«¸€/ž•røõG¶ŸÕÃa-SpWµpwš$ùK‡ÿuëB¹P#ø5DÌOQûÜFP$ tªðÝŽ·ð–}D¿ Qû¦›²’•„â–˜ùx;‡„@¥–ésÓnrûL-Ñ{ËÄëá«A¤ßqO˜doX—rÜ0rKèÃd:"LÀ(À…™ªøàk ;&]\©#П´ L:ÓĶè[tD³”ÐèMÄ–!Ój%"zfe2¾öŒÇ•ùCÖ…C¹aZ.”Ì—ZOîæ†áù ‚¾´¨¾è†UºÐO½–Ÿ4Օʺ§¼n¸±í–j»áä{Šï† ¼a ï©ÅòJTÞˆ¶L£ i!.½Dyzœv$¨Yê%¢Õ“Uµç^ýÌÑò¥ —kÃøúŠ¶á-L³-%mÃ]Û1ÜöT¸ gnìÛ2ð6L½•Ï·'þí‚áŽn¸a%n¸‹{’ㆠ¹áLîÉ•惨¹esîXŸnèžDºa›®”Ô=uuËq]‰°;Âì†Y»£ßîiº;>ï†õ»§¯4â•k¼'%ïØË+ÇyO†Þ±¦WnõŽ‚ý$joØÜOÖ÷Û„ñ•¾ãÿÄ5KJú†·þ ¸¿}¿O&ü–/ÿ Ö¿ÄÓÿ™ƒÿCFÑ/ -:»ŠŸÁÁ„…ë“ .5á /|hÈ%gS¨=Vain$Àe2yê@3yæ¸T*´°²ç“_„b3LçY}'­$vX•­Š œŒ¦éòöú Î#:šwEñ ½”OÿlUúÁAÃo2Sr¦ûÝ‚Ö_è]‘šûs•`]‘“Z«èïžù¾™Á’‡¥® s˜””Ì\Ïy_zÆÚ|ò0¹ÿ"î1‰±wÿ¦Ûûô4pE=nŒSîÕ;#ÓBë§t#|é8½Ckiúªîs;ΡKsIÖ_‹K?@£ŸÓYîðCÌœ7Í …¶;Ðé¾”#Úåi*p÷?™ôˆ?_Úëñi¢hø¼óì~(ÂõR!XØxLöfG,J!³LñÀPH5÷ìònÁ“çqsªó‰äý-Ö0TbQF s÷럴v´°Ã†€Cu7®å:…$Fš@§Ë1ŠµtÁ¦³Šz¦Äò´x,bìL3‚â‚4´¹•TW]I„Ý&m¯i–sèڼͲæ¦+RKÔÅU܉œª8wiöÒÚ¤ÿ=>™èóz|\{ë|”äÛûƒå´æþì`ŽZífqÇG$< ‚Œôù×–{üÔéD³j'²ù]øóåpÉrÚw÷[d¥C½O£¡‡”­ym½›«L“b‰2’y5‡#Å5ëù§¼òX 4u{ýÍÁ¬$$ѸŽg4Uíx7G½ýÖ)©£Ú†2œVì"‰JÿV:û;ë—§WÊLo˜PáÊk9ëÙ¤"<>q,q@¥ Ùè©îCð¦$òr3½«î)Rü©™ƒ°Êƒ<‚9Çší S.í¼/ឣ:Œ÷8Ô #9íž<œÄÖËá/kGK‹új/S-XeGÔœ.jÁ–Ÿ4ÙÙW:2@'êÑÖ°äæñ×?ƒ__’ˆ¿ ïÈÉ"óY­q +4†2%ªC¤³–§P€VqÅŸºRnâŒíC›Ç)p䔚XÑÏûÒÈ’Î=dΉH Æ)Ž\è&@JpÓ¬SF”§¸iAëO*’$gÑd T^‡î¾®ßàØdöüHF9½™µ¸,·u܃!ݱ±òE×{Èàë%}o‡ëÉ”œ¾PQ3’á8îëü ¶é<,9åp}-Ïþ,Ï»Lë.ÜYÏœãr…gÏ)¥[;Ä…P²Dé6æi£šD±‰³aXx#+Pˆ*Õºo#Ša7“šWH÷mÈáÀd$¾Í%_û‰™=ªþ®‡n³RÖ5ñ!òñúRd/²Ù‹’ìLV6÷Y] A¬Ñõ$s±i:((PÞÝÀ47“3³uÀFÙ &O‚‡)u™ŒTE%í:ôŵE©ÚanLšÒqw(aâˆQ5$óµ¡Ó×ÕJ„XÆßÅ$‹u»X°Îv&[P×Fw½xÂ*;@8ÓþÐyÜíúae1M|Ÿ-:J8òžŠ‡»Ud/;õŒñ¡ET¢“PcsÜà -±4w¶3F@,ÈA†ÂÂYw)=iþ7Ê\îcµL°2ë(j½JíâϹé´0s€ž¬¸¿| -)¤¯ã‘<«ú£?kfp <A’e“š†E­djÅ #–dZœ,Åì>•F:øpÃG‡\…Lõ6gïæ$’ªT ݲªª’“=Lsó“Ñ1™`®|~Òé@!Gw±®v£¾ºZ€‘t#Ã؃wR¥ª¬œAˆ—.Ä'Ó§G×f7 ¯•u¶éR†™!ë漕1µ¡‰Ó=·t¯hâ½f’Ä1?ðsL ÏjŽ-åf¼ŒÇ¼ 5÷k ª»p¿ -%)°±Ùª§ªÁJÝ@ºÌ½ -Pã€"Ô=ù©nè9 ¾”u\ZSšú’ô#ôl¤¥ÈžJôñÏö SÆó7š€MÃÿç&{ýµ& S\¯ Gë¬JMuN$cÑ ŒHÖM®½‡–ôá“œRvrDúID*EZI=ëÎ9Š¬žà‹P^îõ‹wVö‚Q—òr²òµ‡Î;ËCAýòÚgþ '•!œ9ÎêTˆF4g$›|58„8)jlè” î"íH¢ÑO(£`ìꦃ­S634Äò,"*¥DW”ïLçᢩvhˆçpÄv¼4FìCèèZ±çM-<ª†y"dŒa•±õdr8?b¥·Û-à¬p-B ûÐ!‹PŸáó}FöZ.ÓÚi×í•­$St® QŠ•Ø -*WVñ­´È\tZ. *‰ê‰ ³*­(.[i°©K^–*©ˆ0!*˜k‰§ÿ&vTÝ3Î>/œÙ U8ä˜c ÇÅ´jÊ8ßÄ4&+w6!«pêR  $p‰#´R é%ŽARE± bÌ¢ÄèÁ˜áÍš t¬U6«&z­M¿ N,O¼5µU.%^Bw -=—N”HmSÉucaͱLY%™…$xœ¡‘à—Ú=”<1änõ4¯¥Nžð>š‹/í¸^Ué7öoè´ƒzº°&ˆ‘EÚ¥8õÖzÃ…'ÆÑzMRw°œÁ+…òÖ!‰¥’ƒ”#œ>&ÓöfLâµÎÒ·bMŸn$!S’˜<|ÁÑ—ã–ú²F}¨û 4Üsÿ°Fè œ7µ±þÄ¿D¨¦šmLËVž: ¬Á3` xfŠfË¿¹WÅ[äÓ<%‘Uã`£ÆÐ"xó>õàÏAÆ8Göáš´iÊ ŒÖôRÍØÄ—ÉoâÈPöÅaOS#Ih—ŠÎ•\]žJ‡ °‘¹0ªßöäcÊHÊçf•JWwÿý/žü¼zŠ_ø[eãtVÇ´:¯ÕÁmýàê.ºs»«s^øÖϯá` KdA¤ß GZcÙ[·úsÄ[‚â;ßTÿ±K^£õëWâú’lÏv™íä²thdÙÏ+|Ýëf‘÷ùyK­»nÝœZAÏ=¼îó§7ÐuOŸ±ú•­ûY}ÔËí|ÝÆ#®^së\W¼úé­;_½þ¶d‰3K(ZâÕ›º^¨¶F¾5@¾I¸xÄÑ5Ö.ùMªÎ#n¯±}M¾L–´BƒoÉÇ’ŸlÓ˜5ÛY¢mÚ´fW› l“§­ÙÜ&ãÛ%†1»â®’:¿Ð‘¸¢€âßù–«`ø’ê‘{HÐI*6v=Ðj¹0ú!:ù\['QÝ -¿Ø6z/þœVuƒ¿ @y¶FŒÃetlT“ª:Y8Ô¦zTÎX {Ñoße"2¤Q£Z½¨Ù*¢@4^‡%ýTÓ¼åTÐA½Îò¸£ÐsdÏsDZ‰±+=Û^5®ó¼§IU2¸Ñ\¬®R~g¬¹ØAÍ ¦IP"Éõ`ŒøB ©êRŽèQ±ëÅXwKñz q6ëŒG¯pʽºo‹v&Cö­Æáè))ÐÌê¥$R+ ÇSë‘<,âiYYI–—ÕQBdE,í+ìqþ59¹ØtÜíŽá©+ È;x};:=Ð-ñT®@»¤Ì’gõ¼ÅW.Rcè¢Ù ía@yÞŽóÓY5<¹Œ"Ÿø]°¤Úc÷¼qƒT8 þ6Z›!Ã¥bøQ²ò,bœïZ†ƒÜA+[&2‹bò]üÒ¬&<°sR„ƒå” -¥¹øU³k5a€à¼‰Túù1ËþhôZƒÂ‘ñ¬B3” -¡@3jo«“¸§Ád‚H”z'€.“§”È¡<(ûÞf—nAÍ™\EIðKñÿÊJ‚ì%¯BÁ®¢Œ*‰_ŠsX~%é‡20ש٠%‘ÏNŸy6Š¯(²ÂMF{ÐiZ®1“1K-d¦R‰ AÈdÏ"¦×›»Ì”9ô˜¡²~ô<»ž -Ò(X0:5Ö˜oJ½¨y2È«ØKØžgu§é„rbËÃg QœP7¤ÖVŽJohžV !3G;S•|Sws‚ŠAg$ QûÈ8‰%úÎÑ«fÉwô²†YâÇ÷¿V ¨Í -Áßïýúª_<ÉC ²øÑbÃûd_¢'•ÂÑs£¤n² -I[e¶ˆØ…ƒ§òZp1‹ž½Vö€ÁôïR@ü³³³ Œ&/´$2 ¸8?ÒB•¢“´ñXÎ3¡*T\ ¾H8mEň+)¶¤'YÉð9‰}èæ6dM†ŸúÀm(Ë„ñ¬Ôiz2̆GVf®³›‘Ô'Éâ†3¦r{)e˜Ø×rs+,Ë4ôO\§ðj0¦ -%ŽZDþžÔŸÅÂNyµ=¥z« '21'§Gâ aâqŠ; 4×xx`'/DÈï]®‚ͧMdxýÅÅ°ÕåþÂ*öÃ3¯Þ{ññò¤?‚5V¬!ˉ<›è´±—™ì?źm@Ü=Ÿíƒ\žöúV¸6¯oó’—Õ`Ÿ¶,›um-kÐëwY¬›%½_û›M²ÙJÏ-‡5øÅÖ|làe£séoÂê5ïòVÈyº¡ÕY->íõ•ë[<äÖ“î\îÖ7/NüÞ¾~›¸á ù 0›0ôŒV^KPÛ‡¾ŸBäK.m ¥›€»Ì›¾ ôûŒ`Í6éÅ>Ù$,›´fŸÿl¥5›Úg]Kz¶æpkª÷¦ -ö##\’Æ5µ|sÖüÏ èš£®©ìÛÞŸÞ5'^Sç¯rì%2|ÿ¨›qÅf|¼î|!¼‚_õî¸q’)áÈuŽ‚kŸB cñR’ae'h|eª› ˜‡ÜY#ƧuQ Ô8µ“ŨaT#¨$b^~¹”SZW¡æÍ_,]S;ŠÞµ'Á‘ ‡°:ìø’Õš·…À]Épw6Ü"wÇÍ-4%tˆØeâó¨b4¿I6–z–-×+’(\³¥Vܵi(Y—qÎ\È™çƒêé„£ßÀ¦“ãzAvIîørÁ$¶!‡›H=ùä…BÃPva©DÔâ({Eìë’ÂZ»dáÊ Òp5;g€3NÓÑMu ² LéZîóôµGp…‚r‡…ät‘„qK• æÓA'HÍ|ÙÁÇOmJÛ]E2A¬ÚœÂ1à è¥.±[³)VOiÁ0E«ßóùÞNé|  h¶R?±í€áÙûÔI.pbqéqêŠxùx‹~t¨ÔÕ¢ºûãÌözv«úqâRTç{ñ4.g…¿Ñ ªs ‘Ã`©µK.I j¯vE@ÁuüXHŸ„Še‹—Ù½Î×›«y®˜áŠŽ£ê±ww¬A.óÞ{âÖ˜bäëžTN1IJŽ2¥¿ÞüéÒ I¡ÿ‚\sîDÌä ‡rzl­$¹€}”—£ØÙŠXvæ `«€òœô…{0,'†G^V‚²È›Í¨¥Ö- tŠß$ˆñ³Da!µ›Én‰‡Çáï%É÷ShD,Žî™´íSÈä6°ÕÓMð°x¿[I*܉ëý‡(HÔ—õ€$G‘4]ë·}Ó®Kçá×Æ+ ^˜§>S ã 1»˜¨žnI>)=fU• SK+ãL# ŽF?<ÁYH$¥•Œ¤1¿(ÃÅ´ûtOþí1§ýå@^À¡ô-PtÀL°° av½ãƒ]â,¡iÀ–H‡u° ‰KÜ\ãë[O~ ÄK¸ÞÄu:ÿgøߤë²ø•%ô\m?DÐ~.Êuå®Küe>äÏ{a³c6[Ëþ繟»tÝÌv!Ë®_]Ãdñ4´õ[‹{ÛøÀ/œåÆ«n|ïÖGo|ùÓáïÃ6‚¬af G\u›¸µF·5 ¾µîžár ©ÏÈûsþ wQ| ÷¯¯SƒmñEʱMOö™Ì3牄ã™­Ô>ÕÚådkæ¶Íð6‰à&[ܧ•Ïôs“£î“Ùhnáy2:F*øEVSûaš B Í Á„Ó3iIi,ïžõ)¶’|>™†t«7vN%ÙÑWÌ+‘žÃíÖÍ#Fåè¨ íî¢zÜIÙc”¶¨¶(bNþHÙÑ2+!ºBµ’„¶GbÛ….ÉšDw9NƃAËj¨ºä"Uâ.òÇà ‰ô2š•Öt«¼?ÕRáhä ~ªá(p·8ŽÝ’h;°w€¾©}CÖ<5i¹O5”Ã5úUc®Û´v«éì­ïˆv:E[1£‡ê‘/ÝÈ#mD”jK¾v#Ë´oz¨<ùÚEj#µ¨KÙ»²å.˜<~žõÀ2›f0¨†de@øý#G•ºuþ¸ÓJdw5 Áá£8æêdoÜ¡˜âÀ䩤tÞxÝh;8Ì{dIâ,Ðl/ORLV>P`>uH®ì#cˆóEñæ µuM?³‚1œRBqÖ›ˆõ'æ2̈#…mÂÐÄúØä ê0MqiÓÞˆ”3Îpë;4„…3Üšk¦œîKc1ÈžóÚ„’A/‘w/å·‘üÛêþ¬è+W™ÁáÏš…¾r£m¸Q@üI(ÑU…EOq'ºøP˳S:5ew(Ë—$®|]Ù‚÷˜3ô«;{@(A<9ªV&YÅù£Pó(~«”ÉÃ:O4Ò$Ä΂d‡|jw°¨Ù¢aÅùdHb®äBA±^t׈rXG¾Õ]Ý?™ªW~—Ù™‚6ÂYß%Ræ±»ü¡Ü)SôÒŠ¸ªþ¬ÿ:Ü`øZåõ´3@&eŒXÒ• •cùÙ"é:þ(†ëBIÓY‘qUê6¡S4o‚Hèõ›®’Ôåó•t(r4($KÔ+{¹õбÅ÷È]a™Séˆ÷ÀÜohâÄ)1o8§™í&" Ž Ó½¹Ã5˦É^üd#‘òÐRñ¹c]ÙJ³<4\|íFìe# ó³tŒ/ÝHÌl„hŠ5ÎÇg‰Þ4ås>eèš—Ù$Ï>{×^°›ûð “Pò;ݪdð2Ó&·j=MÏ×:ú5q~(É`; ˆFÂFËññG£Ûô£)úٷĉ—¢4èˆ|ê–΃²h‰n:‘]T$5½0ÆРié[ï’2óR£Ô@‚“âcÉ\âHØ›îTçΗ -s1ïÙ704ɨIS‹t¦54wÔ€›@û&Ó#æ"ó€¶S`Û+µ=ÕÜž¢oQ^Åá6r­9_»¥[•ë -w¾t#…·ÌûYXÏqUœJä’œúŠìÀ£°¼™‚jÞÒrg‰œIJQ8Pqfbf᩠̀²ÆàØË(5Z9Š€ Ä©aJš„Îaö3KB9rá@Ã)]µÄ!ÉÊv¥RT fj‘¾û•b|™‰ú¨&0ßž^¾%d½*ëp*°€ IÞ*aœ|¼Õmr:ØÅÆ‘üWÌ"õ‘lJî ð¯Á=RbÂ(N5}•Ù'e¡ŸBì¹Ö/˜©³É…}mWÁÜP§„T­\é[)ui…Ôõw乎&°­ë™o¡rýÿnŽÕª£”~t4Çê©B¡÷©a-Æ0ö¬GšASÑ#Q O§´Hà“ά£C;äü,Ñ Á<²œf(Ëaô4!BEh„@øT®+1F¯±[íXQy¼­Yòk|­ÂùK,¾}â°Z9‹ÿ,ô¢òPu„å³?„$¡6¨®xM½|4KD è’•ˆÊE‹ês‹(}h„b÷üîJo¬w²:C`ÄÓÍØ®…sfNÏ­`ó ‰¯*Ú¼^Nš­ä±n8°# Äp$Kï¤éÂ0æÛDeeF„É‚3ÀŽÅ‚w¥…ôõ:)À°IèÌDã†zì(TÆ°fÄî'“1[+‹«„ -«ÚX…–­´°Ì+·”úª8Sh V¾fá¿(ŠëÀœ° WŒ]÷ÄS@D\Úò'24ÛTŠ¡ÙÑ°$ó;Í’#C+AšpW'š9¼ö°r!G¸g ».!rƲ>¯­ç_’T|*E5ü^Øï¢þŽ©L4³÷0¼ª2jR™Ì¢Ÿžr ˇ„‚i&@¼˜Ñ¡ ƒV¼è³TùÞZ}*™qJdü0Úu ã¯}ˆ•t°'š¹‹"†êÉÏØ» jµ{®‚°8D¬áãõ·É6ž÷—ßþfã¥í#Ÿî|ãô×èð²–á3Œ,±æ‘èäÖ¸µ nKä]Ãå.¨îßö9¯ocyk\Þ›·».e©ðÒÍšZÞ²@¹¸×•¼[ïû±ßAÏ}¶lHoŒçÎÝíï§ðò~ú‹WYÜ=äê§6Þlu{¿â"wúCj˜·»ñÍ«å÷³³ßE„gäà2X#Ì& -áÊ¡n‰k_D¿5Lnâé&êîÃóÆ7±~›l²‡MŠ±OE69Ë&³Ù¦@kª´Ë§–Äë-Ÿ´dh›¯ÝÉÝÚЗIÊGæ”Uj¤÷Ð{JÔî™®&Oiï˜sÆyƒ]íG˼ŸúÌz>í÷w}tw¦üêü¹=«æ~ƒGAµ:n«&9ò³çÙ"j >ÌØÈjÚ™¬û ^×yè`ãû윩ç+ª ~¦CbávýAÞt–ÓŒ´“,K -%`€JÑ¢ÎtÓŒ ÓãPS2«p/¿e¹‰Næï©Q£œ y«¶hØ•vkÿÈkö ¾@ó¼W¹I#E…~Cjx“Ò<´«vI,~pZሂÆ’¤âBŸ7¶ƒž­ž1í"33‡ÇÕ1Ð"0ž-¦ìµÓÊ,¾$Ÿ<Òýý‘¾¾÷þÚógáœëüɯߺ†ôþ‡ÿª¦“Ì)ä£vŠY«¬¬bâD öñAŸÙbëaPÈ[ÇFÃða^;ŒÚÓÔƒ€"ÅP ->‹¾þºÉ66»Q¯ý*Ádü/-œqK‹ÖÃóìpáiJP $š³E}+á5×êÄÐb`«TGt¡¤\-d˜ž‡ÉB•:²XSM·*Z¹SX+QHH‹ÓÔª¦%²ù`:¢m½$fïeôL@ÌàÒÎÑþdû.🦉§\c ö&j\{m"ñ;ä ïY»úƒUÃ<- ôè©Zg=èGM7*TcÖŽÌ#¦ãÓ4m@'ex -•‡¥-R$-QCO\1³q0FúÆó›{íÔ²(Ù9GCfÍ°¬§EØ‚ƒÊ c2ö#ICfŸ*nÅ,&5žš¡­°]®jP4ƒ '¯+Wvק§Bá»cÂN…‘ŠLžïÜý_R_ý ÎG‹;Z<ÖÞ¯­îou‘_xÒÕß>\òÖs¯~ ›P±”5謱émq×Ïl rK(|KÄó瀹Õ5ö¾)›òÑk__ÿW e]R—Û[WÞ²8×%¬´à±Ò—Í°n™õE;kÝ}ë&•Ûûy+¯»}ïVß±¸—Z=ÕÖ›­Noõÿ¹u³«7^=öƯ¯Þ!–@ò¦2ò3Þ¬1i ]ÚÏ·FÁg¬|SµõP—˜»†æ×1|ëwIÁ6}ø*Ñx¤$?ø[Ÿ™ËšÝl“ 5WZò©mÚµÉΖn›æ­Ùà’0îÒÊ(–˜ðIG‚sÖ/4Ë×%=S -_‘]Žê' -=‡,{-:•C©O—!ì_Ô¢¬T•A©ôöo,M”bþµßñ¡DÏN•Ú(XÚƒ£'396ÂC‡QϘfFÞd ¿v^ÈáÁ\›òŠ,=ô¬Q 4Ž¶†ìÏ ˜’óv-`ÛîI†ˆHœ¯Š S ‘à5¨â`) „¶ iƒäN'ÌwÉl&W{'¯Cp·wy‰@ÃÓNG–{¨IEUp(Ò…ÀÌùvôR¹Úé}HpWA/‘¢¹w‘xÀL²fÂ5Ù <=ª‹ÁÂ)±<äÕÉq(ú÷ -2C<.ó< 'V7‡qò†Æ©Ø4uyKKo±‹Twª|'•«¤Í­Ë!5Õ01ìðc¨ †ú5Ç[W$/ê(ñoëšUð^iÖ![êçiO"`+¾’“-¾3t I]ùýÉf®GÕ”…Ή¸-¼ºbýq®lyÄ9}èPÞQ9Éáä¡CEanQ ¿! O s¸àÐDg7S;y@+‰c­Tƒ%ÁgŸÕ}ÐJùÒ[ÆžëuD8}j&"Z¢Æ•ðÇ:úáâ!•Å(Ó©ÃV‰Ä„— %À’¦±‰Ã:x•â" -ÓvpÀ_컺(@W²';"j’QIŸTBd¥6"«.;nl!÷Qê [®dÌp·2ˆC9|Ù̧-_Ìir#iAËÞRíáÒ‡ºù†Þ’n(™fTö¡×Ý‚.÷(8ª’ãu9¿„‘ -’X‚ -C>­s|”E¬ †‡$·†¼i‚ü©¶%¼®žŠ¨hûµ#Jƒp‡HÌ[õ˜ZXH³T:é뀡&tR“ûÂÈ&]zD÷¬J£} ;m›ÒN½4>fd˜Ut !ÿêX5ÊfQ€‘‰ù™¤ï—ˆ'‡åáM_e¢‰ÃÁœÁñb/S€3ºWBl¸'×v®SÜ—F·7¾IQ>øqÜ‚H‰I=Ǫ@†ú–§Ÿ9=x%’ý¯ c–3ïÓG5LÁè!Ã-§CÃg𺋄@DêÕ ¨x= Ö—õ -’¤ï”»­b)àœQÕTãüð¢Ç–’F}‚˜Tšü刊H-r<¦¬ê3çVW?»+iLû&. t––êI¹·„nakàú~rÂ%îä„ü'žÈ䤡/#±¾Sîž›ƒì¨ø—Ø.çIejU -¨/¾–¦V­i -Ô‡~V#^œê¬ŽÁ8_ä[»ÉSoÚôY•¸u}Ì¢î|QÕ8ONGa»y'è1Mí;ØJ®ÔÌ9éØeG¾µzÔЂ3jµ)LR€}%å,'Òê -æ7&s!oçèM@èŒq+‘JàVA¸Ej §n§–/LÅG€²‰¨Twºî` z\ž7šÚ‘3¨&4L…°íŸrðÁ %G‘W¯[äVëÕG*&8Î\I„&Îpx­Èά kÀm5ÙŠFýDâ8”¿ãt~íLµBÄá—#†gœC™48û3è ‘¹Ì  Éâ¹Â•¨RøŒ·:Žn1y–Ëê˜$A§ ÏëF WSPOÑê»g !•HS2‰c*Õ‚> |: -HÃrÊ“)È¢sˆÍ,>í‘Bí2äbÕg`&³ë1a„ÀrÉŒ Ž]ˆÐ¦®.æ½±K†›u„`²FOsI‚üC5¢Çf‘áÀ9ÕÔ2û'í!8!žÀ¨ºT––×EdXêÑ2th·C[öm5ªS±g¨ã 5. >Âd½ÆŸcÂë/®€­^õ.ñ‡ÿ….Üâ¥WG¾øû%dŸaa K„yQ‹ðˆÖ`µÄ4û²GìÛFÈÍSÛ>Ýõ¬/Ëëky«›w¿,’—µ­ž«i³æ–ÅùÒ[VñºÔ·[b³wÖ¶îÄ7_ëcî›zÝûpƒ‹‹XÝÈêmÞ,¹=œÒâ·çö¥|ºË¬f?œêêxWÿüb^ùpã««_#ÂKùâÏc .k z1k{„ªM<û*ðm"ä&Žîî62/ñ{è7Á&oØ'›LdÉWviÍ&ùY¤g¥ÕýL¶Ö„왶½é$ŸÉÝ’®yâ[ãþéäšr.™éë«v“ìn³âmþ¼Í´£Lb•ê»R­ýt™l=øìH›³Ô¨ŸíÀ()§á÷3:X‹ÜqèbpÓû7ª«DÓN±†šŸ¶ÎüÐÍa­´4£‰¥ËÊM½¼Œv¡‘˜½yNÈ"ÿµûç­¡Á¥E(£ë‰ÁˆÚÎGÐb.e†eˆ¿ $¥á¡Upd¯jÊÇÖ–Å€“èã/^N#ác¦Â¥ tªfüEŽ|qXwFƱX¥†Õ‚ËୌךD>Çò!ÖF*;@CIu`O0Š’Z5ê‘\!ŸÖ¨û6MÊÅ•lnÜ$Óbìö."¨ä`1ó²4~LX;8 -/¡n€ÖC¿«§LSXƒ¤>}“T°¦õ6;3Ð÷göW]+0´ÓÕ*»OrU°J¿„[!£¨V4›î2Bj~ mŸj00ôÛÉÉ UÃÑgÑK½ èF°ñÒm0ç 6áÆ`ås6¤R‹R›µ4u%hÄC#Òmú‹,…šÀ̾³ô¸nNgQtÿԑξoBÂÀ ÒZSu†l=;x4Òëgšâc—s¥ë·,Œ ܼ“bZN©,m˜žÍL®U‰gË£[ç¾ýiyÞk÷hMÊšK˜®Ö%Û«~¢×pp†9® ÄŒ¸êvÞ}ZÐÃÕCqˆôó†4jéš·aða‰JàORø§#þ.²ÅêÎnÖÇÈDzøŠŸ|–xiÅÄà#æâ"u`Ïœù-ò‹½Š†t§!¾éÕñF1•ê¯¸ï¡~ÙÔ˜—š.l^媣°asLåùn]?;N§ۛ°°¤ÿö‡Þd¼UG -8Y!d"‡ö.:ÐÎ/Mc}U¦Þ´w¥ïm|WL/V’¦qtʸ3Ð)v´³‰†¬PÃÅÖlá=a¹ž4ï=šƒél>Ë#OWµ~ô/'<Àé핃E­LC³Ñ$èCIŽšÑ|À§¤ë¥&])k¡Zϯ”X(¸p·U)\Kÿ–¨ékMIøúbÑ>ê• ·Ä´¿2×<>…‰²î\½÷Žcº®ýÐ$ -#• â`&)¯U˜Ã¤‡1Rì#ÑáN>×;›‚î.ž$3ȹóišx eyí[%´Yl³Æÿ“R6‚|hтЯodèwö:$6ƒ”°¨øät‰ÃÇ¥íNÐ8†Éúqúƒå¬ƒsãl×z„tã?éhV MÙ×~d€Õ:5²âH„Fó`îÏ©·Os=”BÍ[ðÜ 9X³‰Þ̾€Û¦©ÄÁ›ÇI_kX± Xú]꧖~z˜úL·H{d6¸¯¢´DÚ]_g3L)ÝCKΚãÌ?ªnÐbœ·sèë4샦ó¼§SXgl²êñMÅ‘¢“¥¨p4›8Á×v&{õ”Év_ç˜êßótóR%_ZÐJç§*ùqÃè -"AÍ?s» rœwÔÊQDáÌfîq ÆØúd.Cx^Rü×fM1”U X*„+…€\–Îtœ€¥Ì#É¡Mò–%gÖlâA~a>f]4kÍÌx“¨9Bó´7 „eëºzøæYj¡âpç‡ 5D34ñ–¤²!qŸ‡m5ÊwÐKÊLåÚÑÝ¢“3iñ±-Ô” å£ÎÔÉ®UbW@ uA—˜ŠNÇ®ɬÖs„ë(>±ê¡äQí‘j Ôˆ¹m:&”0K¶ää*Ûr,[ZOÿZoCI’ë;‰±ŠL/EWîHCôðêb ‘èÎ)¿: ™Ã[$%ëÕ¦Ô -$«ÄV‹n€–)ÊGÔEígÁ®´ƒVThj'¦sH"Lh‚Fc)0QŽvË%d#`%¬¸Uñm –‚þ3j š7̵®ÃY††YЖ]RŒoß}öÔ0p¼@Œ¹ÁA•S?ÜcŸñd²)Þ˜Ä\ãÒD©£“ëêPý dã6MËÖ’´y¯6´”?X8¬Ã¢óûݨÅ|Š <¤˜¥Ô†7Ù$6ï?AÌk=~,€AˆšðBøK5—ÛÁè<üRDzQ„9¾¼¦ÊG ¬Ì©YÝ_’ bTX›ÈøE“âÈ.%âײ=ˆÉ¨$ÁÈdÏ67½»8ü²™ ²ÅAGìøUÔÕµx²}™fp•F2Ç‚•Ý•Ñ‘#úÃì@T@u¦¢Ê¯… 0´E>jP‡Ÿ³¼ëE#ùS»¦ipT2¨5½FúÈTÒÎô=C» ?(ãDYwZ[¤džŠ^:¬ŸL Ü$¹åŒ2.gqXLŠSغ­R®ßµTœCjšŽˆŠ˜ºæd²ÃŸy@„²Ô,ÒJEá³$Úù³˜V92w…û¯#p`TòÄë2< ¥Ijp¡ÂÔ£0bÊ`¡‰Ã'Ò@óBõH%r ð4 ?)a¼˜ÀE|ÃŸó¬‹ %•ÒF—^>”¤è„Wyzerd+vãPÀÊ|ãÂ[5¥ÄX -É\…9C$ ÊÉÓ+âæ4¸æø±Ñ\™ÊX}­Æ¡6A7C¿‰g{üUÔ½— †fmX}«®–0Ã&1ð“…n‰*¦9MÖ{kæ;×ÍD·÷3æÄ Ž ô=þòfÕÆ[,áé¶7Î}v±h± )kìy‰éø R›P¶Æ¼—˜ƒÐ¸†Ï݃Ú>ÐÍc_Þ½Ýò"7¯{Y¼v]@›e¶,G®äͲÝ,îí&Øl–uK­{«q¿I;yÝñoýÙ§gظÅÏxÿ<ÒÆm­þíõk¾pã7¿ð±[ü…ï^üüEðg@Ø„5¾x<Ñ&\­qÍîn €»(ùˆ¦^_KØ]ƒó>ŠïÂýšì2‡M‚±ICöùÊ&±Ù¤?Ûk%P#¢Ügê!­„ã6y¤¬{:qRä8bÞU2ªÕUjÔ– ª2,?¥ÆC-ªxCßBz8¥žš ùU[Ú °²ßIýõù*¤¸â<³ù)Yß!(™žº¢rQ¿ë‡÷Ö>š· -{‹1Îð“ã\ž!j@¥w…9Œwõ³tŽÓÓZuÉýÐ÷ŠÏ¹°ŸCX m‡Â’–µêÃU…'æ)Ím°É=·0FôâáF~ -A»ð0Æ»=Úy»Ê€µWï^IÆ9]‘}~*þœÍšgw)Ž „Å?Ã.=’V‹sì}$˜H w‡Kœ—XÛ>×Ã-`yR@ÈU’—äådáeX°K1 - ¨ÒæÐWF…:'œM¾- UteÏá·À3 /o I fT½…ˆ-¾%{ªû9ØEè"-ð3&ƒ|( -¸+ŽRn·F"´ïµM=G˜ŒÇ$Â}úhA–O€°¥jì™9•iK:Ý–Àï5£…Š¶€¯Üäp„Á[ ˜—ëYK ŸPÚ"o yÆÂjÝìú9ƒísú4ï9• 9n³t(H‰õ^I8&ÙTÌê°­IÓXåïZ$ -c°öfig´Ëœb\ßZ³öÌÍæ. d^DÓ-Q|!Uù "iw#ºrü%C*ÏéÇË©°ß8»c:?{Ltò -ó÷À‰Gàøÿ Á°:Š0l¼ÐÆWm|ÚÆ÷m=äÖ“.þvuÉ{×½ºøMØŒMdÙÅŸgœzk†Ò&ž=£Þߎ_âè&Ú.aù­—óˆß› ¿&¯_ËÖc»ªvËï‹uú\ÒðÍ›¥¿Ù ËF²Ûøy¿m6åf÷:°/Û|ã ¯×>ÝËÆ í½ÕâÖ6Îï+/¹q§§»÷Î7¾qöÛ ° ›³EKÈÚ…µ%þ½]zÊM8]ã.Ó‘5>¯A|öLHÖ´`“<,IƯä#KîòCŠg’³I…¶)Ó&µZÒ¯}–¶KçÖ¤oŸnÒÈM²¹ÍJ?†.u«_¾*qA Z¾,ヌc†ô¤裖=®˜@,Å©¢Jíúõ0Ix¦v4À‘nÝþprÆeTG QSeRÔ«|ôÈ”ìÁ«ã~|Ó4`ùgϳ²ÎÖzdJÓ©ÃÝ ”f6Ô¥—¢ñϞчǨ·¸TFcz O•rJ1ÐIcIí-§æÙ0tjvQE]&i,ÐÔ]ä¼é/¬ZsœOñ_퇇É+y>Y&ªúcCÆЊ(ÓÄP(º@ƒã’(诘úX Ñ"’î³îÀhÆÒÒˆðae:߈)}ð4;‚dƒÞ…/, `G!«ÝCyf ñ–€-Ûe<Gè¸P -PîKƒ«ZUÈZÌAB´&f0oÓ#Ôp|Jc{†—‡#¡Sý"N¢ëÕ4†É)yiY¢`Ž4n'\rVNõ·Íf@ÞôFTiu.ŽÎ;ÌH©*¿’Ž:M#†ÕûV%†ØgÜ{µ–ɬjOÐD¹†—2ay—ú'R¢ ùA=÷ÐTc£{Ûãå KÚU@’bÊÆY¶q˜ÓÇÎL®pCSéð„>Ê-0°ÒðtL p£æyŽ†¢ˆp®¥ûïªøç†<­PéóžuOǾǼÈ߈eØùŠ Í0´Ve §ü>c4‰‘Ç:íN‚]s¨¢ë¥Y^›‹Er&Œÿ£Å‚ÌœèÉÂj¢B” -jLÏI÷ùHI˜ÄŸ»ÀŽ/GdûÈZ5¬¬ºIiS¥ÙúLWlN‘1zÉØ}½˜æŽÝYÈ:š|†lyR.Cˆ»iP&â>’Ea½%°Œ^AqÀ›‡ç’œÍ@°[¢o2ö&Â_áÙ'ã§ÎáÉ$)äKÆwva±ÁÝ»Dƨ`<ãÞØAx}UÞ·µæ/ÊÒÛ -6²“PlQй„JÊÌ@•2gça€i -)•K°ÉM¹‚=WLä?á6‹å¡^Ž¦Öu3,}LðSCz=l!å`7âö|ÇÛ´†@ܹݧØÃÂbÑgàÑdøØH%æM23QᎾúT!< —ž9Ê: -Àéçù&iP›Èï9…<92¥óZDÛŘ*I>T%…¬SŽO±c»Tw“YšÐ$[˜·~Lð‚y“‘¡· ’ÁY³ýðßаÑÈyÞ—Fßؘ©KЪä`Ò™H,CÁfu¯É¥,š¹§AEðp¨ e³XœT»)£‹!ÄͬՉv,ÚwLíZ3–ÚÃA.á‰Ç´øèÍÆá°¬Ü`¢’Õ77®ðÃcºÉ-b¢l9ÝC?õïð_ú)éþ)ËÏý??ë3þùÿáþ'ÿûøöÿ5ûR£¦%f¥…'vòÐX8ÐØ©„8K´ÖeJù!àßWrQ©ÁÌ$jXè;ÏSzó,q,Е(a`¨ô\‘ 1ÛDñ溓oÒ©C2Q’Pìš“¼\‹K¾RÜîZº• ý 7øÆ l½ÅÆ­ìœÏꥋVw¶qz«wd,ZÝèÆÙ®^™Áèé¼7~ ¯¯cÆ6¾|‹vakᢕÁ©‰›1PÞ‹£¦Z0×ãÌ™òÃEÛš»¶æ“OV4(‹º¿€\¼áË)á>P‡AG› œ¼X¬Ò+ ?c/¸Nˆ‰d ''©ž*=ð4±S º&½m1»ô²6Í@§¯„×1ͪú¯VJ£czÀ´ áM`ÇÒ•k "–¾ª'Á±DB?…Z—”|¸"9éþŒ­;Šæò<])'”à›´|cHòn´K= úA…ãF“,ýìZ£}j5UظFgˆ¥³“|-"•ÍO%ëHAžÝមk´…¬:.Á·< ŠWqÄ‘"Å`-€±ºù¢ø8pk¬ÈÍr9²Ðò]!Ìo M£¬Ò–îåÄN}¶xæ ¸R³;L”Òî΃î½–ã£æŒ`;¡á„ëú#~ç8#·:k›rlßà¸Ü‡M{&mãÊ*#v¶OÝäÈô¾àT`¶ùz Ð3ÇaŸ¨ÉQƒ=Õ½"úŒb- – a±í>§¿î˜éä")]Þèv‡³ï˜ðô\ÂŒ‰^,ãcÛŠ[ÆD` -îÁØp²„ŠžÊø”gÁkxžg¢ßÖS" Ls XF?PTvo~B&Š®0©‘]×=ëÕâwE»“´ •¼ù’ϦòÕÉypFxL¹Evåì%‹ÕEÑíÉÝ”›IQbRÖ“äÎÏõW£¥Ã\A™7•$ A/‰Ä21KÉ"/Øiʪc;µçÙz…¶ -’9=%è\©gußü¨jÆ“x¤pbMèŠwýC•ýŠÊ0\¿Ðbˆõ7¢78ý)M Á–ec—¯îSúˆæ€*?ãSOõ8†3´RÝë„^ ¾;Ž >r ^Ú²ÖäÉ’é/P•Ÿl¥£Ò­“‚4eÙÑ#SrÐ%+„ÔAH¸–œ¦-00Ê l "5r´a¬,/#e¡Tѧϡà{%ø~Môà -èˆãRhå3x¿N]9OOGÄŽ¡x\Á,ÃÎ]Þ<þŽ?h)6Q¨Lg)ú’bðFµ÷Â@¾Åõ¾~¾SòkˆBÔýÇ“ÒƒâøZ¹’ó % P…érS¿6á}Â$á,dqÔñàµE9Ó½]xÞ³`,˜§‚7&­¬Ê‰Å×Rš‘oƒú‘ƒ/œÃ6è)_8 U;:l>–¡†:ùx.׿xOp×wå…r¨ªÉ vH¸‡…(}¶[G÷Þ!†ë=þE4p-8 §ä <‘°68,öyb4ZE¨;@F äÆ8ŒáÜ\A¾GµPƒzùEÿ˜(ªšÉ…püÇê JSAÐíü®¬@z5ðc)GJ_B¯ kv|”œîå/Ç8nç/Z7Ë*^–úº%^ÚMÏ­ókûËûWnö뺫—Ýﵺx‰Å•ì]ÎÆ5­þkñsLƒV¸:ÍÕ¹r±=}ðÆO¯Wn<ÿ&<<‚Èë«p³_;ûu¶_“_­ße­ÿÐqþ¹)6[gÝcΊž›q·e—½ÍX¶:«X} -SÖÕù¬ê O¶º¼c\=èÛááéj7yñÜoíÞ‹_Á#^¼å –°²Äž5F}ÏV÷òÓñ1G+·ž‘%Õ#0$·HZ󛦾ÙØڷ؇{ì˜Rb! u -då?0Ð4&bFU4ƒ€`UÉ/•±Ç¬$ “ k¥5-¥*´ج® €ùVëÆ$¦97×zÁ9' ¯¯7Šã¹R܇ÔuØœ"$WvÈ f¼ˆTŸ-a œH"…Œ»p¬‚p˜d—tP.›N÷ ±>¾zj3+ˆaúËÁgŒÙÛ­ˆZ»øZ#,ÍÀIû“²ª–n¦¨Š†¹ÍpúXƒSÕ·)@'ºw!zlF#|yJÛèÖ³ßþ˜øÅ‘²hL°¬¹û˜ç5¼{¹ÔëIÉÉ‚©Œÿ»´>áHýÿr÷v½–,ÉuØ;þ‡ûb€ÜÃÊïLûit Ú0$CÞ úÈ°t“=„áïZYU{gžñP¼# ÷ep'z×Ùµ«2#"#V¬å7Å·LÒoÊ 6ì²PóŒ›$d¾Tñåü±Äha³˜D²mÀ’àFc±ƒ¯µu@.,è݇H¥¡ÇŠžL |ÞÇ)>‚ç) Ï\ØHÆÿJí ÈZšäw¸ œcz¦b$¾M¾“/’—À2!–9¨ˆñ’ £aeÌJ‰fy)àh¨ghº`n}&WdÕu„à1ÀÞÁ5<0»à¤lÐ1aÈøGBƒùHÞðe%j_µÚŸWǵÿ¥r: ¬l’Œ¡ëΞcâä(‡.¡'^­“uá ‹e hÍ¢¬§ud% _¯†À–@y¥lKˆ©˜ÒœËO"ìû€²Õ˜dì(Ï‚Å3?Ä/€ ¢X@®–l}¸ÌÞ¡e4|‹˜_ùÌ’²HßZÏѲXMÐÝo¨½0*'nc‘(úŠ”/¡6>- ÍÀÊ -Fâ†`!ºƒ&Bya"¾î›âº.<~\‹L(w-I|òȚέp>–¨‰¤Ó”4  GX k^Û8®ƒ ‰,9¼ËÆúb†OŠkþt¢ú)ÀB +Ç-ãzš¨–€‡…µú†¨× ±É¯9&¿ÿéX_þƒUbEZŠë:œðÑ°Ö…kc›“/ È¨#òƒ§[/zÐ5Q”Ä”x!‘ôþÖ@D,mPjÄì%‡~¡4˜ŽòBdZ·CòŽ‰bs|·Èó@G“õKòPêâk[ -ÞUlÁ4‚=ùÄì±^’Òã¥UôN´2ªÁ¤ñ ˜È Smó ¸¸}­7±ÿ[æb9ÄKÅé¨B‹G -â‚Òkn´VÌ2»‚g8ÑãMAµ5¡áÔÍ'¤+ït0ÆV…88s7úJ]vº2r„ÓÔ’¦ãáó´ ý Ú5PÊ>-Å] –‡«´zN7v9PÀ²!YJ*!Ýܤ3õnêg’¤^(ÓÊ`M?äs妛­kàøÓË?Š¨³s¸«[^ý7õêç—X°Æ ?è%¸¬!h U|ÒkHÛ¾5B~|Mwwû¨¿x-_¼ÂåuÿPè~]›•³.1Üüº×åº.kFèuýovɲ›>´<–]·îÍý&ÞlöÕ!|å86fã‡vkul[ï·w“ºñºï¼øðÕÏ¿‡¬æ]ÔØÆ–· Äk×hµ‰ikðûÔO]¢äJ×ûGÂóʱÚ71“¬)Ä Zï¹Æ&#yÏ\>”ôl2œ%Z&í’Ymò¯mž¶ÍçÞ³¾5=üTÄÛä‘›ló--õµ›üuÉrß’áOÅ„Mμ&Ök> =i`lùúY Õ„y¥ÃÛ†ãÝôˆ&û°8Ä($Ï“-/`§|ò§ ?½'æïˆÆ4 xüR«Shpqã¨ÍžwÎC'ŠO&3  æ¬/Ÿ:ã˜ú Ÿ:|R\Ñ\fÒªDðãð“Ü öaB \,öp¯Qó§ôá¼g¢uàU¥%Ntîfljs3|aA•XÉiè7ËèlX/®(‡i/”û„dÔT勬Ãë“p˜,k‚õÙ¼’„£ZÇ ¡âB9la½+l”ä+YÔ§+MÛeÏru–èõÎz<—±(·2¶–š‹t@"§ÏELqpñs $9JîÏNì6¾+Ö…½\Å»†ú6+L%pÌ…ÏŽ…LF \1çl_H— -l G¸ß5 I;¥} -‰P6¯jiûpx> -u&xQµ¼Ó¢ÊÜj¼Î¾ÜŸ,=³ Ag!á0– U…ÇŸ4¥¦¹ºwMŽ’ú •ëÔÇ¡ÚùRPÆA. -±C¸!BÎ,D‹ „ó`’¹©ׄ®vf‚h4~ ~ýà ™õi‡YˆGäFÓ¦^ô¨\+º–ÊÓ €¤³øP´"3Pe•ñ L¬¶œø.͈¨x­¯MyòD“mѧWå¤YŒÄL\lJ-Öy­:AÌ{C`LŒÅy‡¯ùô‚öý¡|p†ˆ ~FJyðsÖÖ@®ƒ‰˜8©ªœÈÃÍ)]âÏp`afsØÂP¦?þûA³”3îv;µÂoÍ–­aÊZI\l%Ug“)ˆÖ2MäI1€`BJhžÓIt™ê%â Pe[\¤ÉJKµQj胸'd¬ÇFnšÕEKäSËžf ûZ=Çeâý@2¼3¹¡î™6óÍÌ›^#h3ý£Øʱo9Âÿ}—þ …¼ú;m¤Àf¦BˆçºvfSQ?†•îÓTzyŒœtRFÊBæ(hT0O‡ž{hç?ƒ¼8CþcIƒô|O}Ÿ`ΰ0”eawõA þ -ö¬gvGÔJhÿDŽ9iøaÁžšIé€nìà[GŸ´%Ÿ0IÅÚEc€dP³˜y"€\ÁÑFGáù<œÐˆoœ¼f]¸ÈŠü[¢!ŠÎ°§‘PiNl¥’ ²£{äJæ*')nh¢ñI$h¾OVº™öJ/|þL -¶á9zZ -A@±&rò?Œ9h†¼CMX[o:ʵ˜ü½8#‹9—;ZºÃAeïäŸÁÞ"HÉcfÚ äRO—«ˆ Бk@Å\;=„³q0ÃÂn>óøéwؼ³?y·ƒ@›’ÔDÁ­ù©<Ô ITØ%ëÃ"ä¸8†Ió:djѱ‹´G¾”ˆFZ).—¨réy$Þ:üú•su%0Ž 1+JTâÕÁ£q\:¡.]Mž…Ęɸ Bv™g°EÈ‸ÏIÆ‘Žº_— -©4âhØ2 ãÿ/òq5æÞÓá@Fb'ì"àó8jŒ@Æd„ÏSŒêóÀ8¦þ\îþÐ¥ã˜)ö§+çé`†£ØUðÄw‹j Yüé,29)È€®û4`—:x&O0,iV&qèÇ££uX©‹¿—T¤{[›à¶FAGþ×`¹ ¨»Ç÷ÅcÞ¼Œ··ækßßîf ,kåÃ;r]T›¥÷¶F½¾—ż]òëÞØl¢íV[ö䧶óûÞÝoðWOÀK7.cãXd÷úæªV¶ñ{_»ÈÅ›þã|÷º×¼øp~Ëâì7!a;ü>vAæ%m"–—Á{dÛ„¿m˜\£é&ä~š7!|è÷Á’:lŒ/‘5_YRšMæ³I‘6yÔ’oÍsÈk^¶KÞ–,Ïiõ{:¸K—ì’iõš†î’Õ÷¤öãëüwŸ+ïÒê/2ð]¶~Wòš„Óy' ÕCgL3ü;·DÏæWo«N½fÌðð@ƒs~œaÀç =Rsµ±X—TèÄ¿%ððÜÊ h¥ee€ƒ™aAÕŸSó8ÓôܳD§ùäTÑA¤Áí!^ºH,"ñ¡ç¦±þ4ˆl]‚ù¢\³)ì B(ÊÌ7ý:­QÃòzV‚‡†˜ˆ”‚…ïQ}ŒbS¡„ÂP[ÓNŠö&¬Âa=Õ4ß:–?$Pú™U!»¨Î©àÞGÄ—MeÍ$ævó‰cIɬ™1|„à{æàV"qTsT$¬/±“g!ìÜÁº–¢ácL_R -?Ø.Ï‘†Éý¼hñ^;S¦ã ×Fç¡Ú%܆]å`æ+!åþ刢Ý)^9ý•¨=à`y°éK1×.Ï©aÞÀ“D™BSŽY¹¿õØ.šë #®Šžg„¦P(¶]å œÂí%Ïð¥Å!.ŒO§v‚Gac8jsÐTTFa)¹+>( ä(æ]Œrœêî‡K1$USÖ¢ŸŽ1…O™¸7½HmÎŒ )ìD0ÅæÙ˜`íìãë‚ÿ®7°-×|QÙÙm¨“^¢¢Áçu5\> Ì€––Ä -ט›D¶BD¬jÒ#@¢ÃÒ´úuØžL’DÛ†åŒù\ueÉ+•›5qpð½&¯SÇà_ã…Ä}šuã[ú¬ÍbØ©”ú6X–íx -£25I&Ùò³?á¨aÇÊMêîáf&±Ö¸f¢ÌžâÐ3ë”Äh<4 S<ÊL§GèóZ³Áª“g­_dâhr•«Žˆ”=ô4ÏYY2GP©ÆMÔc/ö%d Û¦_»”W"Jõ4jÀð ç¤óNíVéšðé„ÕüŸ¨Rr—±N$nAˆÇ1 rg(.q|¤JŸŠâzâ@üqøÚŽáÄB5™æïà[#WÔÀÁ¹;®EçIÜI ßËvßÌ08> pêW&ÑÔ1"†5Íæ;5°6ý9t8Îô 'Ä Ãš× =ß$`­MIzР™æ¼šÑ‰RA‘¦”x,À‘¢*?ã$ B1ú”ú6³CUx'ÂÃcR5—"ùêrA¯3ûÒáB?1ÐÔgÏœ:°š¨ ÿ9[^jâ%eN€Ãi¢NÈ@k4„N‹Ãûßõ -R¸n@|ZÃÕ æDá ¼‡0;aÀÌPŽÚ p·ç æ/R˜£oÔokD:¶ÓðŒrðÜ9$:(°hB˜G•,j.>5…„¦3á«ç+*¹ã¥ –hvx¸2çyÃP@Ä(sá»Y/•Õ -$XIf”ÕTuvbÏ®y¡(ý°'c/ øíÞf2Á¹¼hjÕWïOÖ0ó:“ø&T=öÓh³Rªæ¿ -È똩 ÆP!˜rgJDç—&¯9¾á–XÁàhuáÐ,P6¼MLš÷;¶ø½˜c8!X4ùûÖÓüé ®ÍêüùõJ^Vý½Àe{¬›hÝmøA›]¹ÙºËÿÐß8ƒÅe,¾…×®Nh㪾ði«óÛ¸ÈÕ—rÍ­Nwçšî5÷îì7!a \rkˆYãкŠþÈŠ[V'Âfïû²+ÝÖí³ÙdëndtÛlÛus¯^€dã.V§²÷>;7µqf‹×ûtd|w«]|­#Ô»OÞ8îÅÃêŽß#Á.Ö¸òñu ÚÇ«mlÛÆÁk¼‹¡:ÇSK/(]ê³!—†å‡…†óƒx*±2 ʵGâ¬ûªÒ³h’]–ö:æÓÁ–!²²´l†Zžù+«cji±Ì0œE(îúZ’ “T&ÌtƒÄv~ìL¸裳³(k|éÔ ¶#NI‡€¥›ê·Öf†LÆH×ûÊ" ÜÚÄàMáÁ•šúƒ*-9zbÞ¨¦Kšž¸8P±#'Š¼Z4P ù°+&í ½3K7uá ‹;Ñ\%ýz¶Ç!• ¿›ËOû`#Xñ¢ -«ˆ2šá@Yh>vÍi,RE¨Ú=X\RgP‰sIµâ0…2™Áž8+9ß<ƒ5\„/ 3ŒÙÀ Žû³ÑÐ)²`Ì$,N¾é‡¾ßø¬ŒbÞP²Eê>øËËĘáÜ×LÕG`Ï<-“\¦óTÂÞTÿ(Då¸bÎz„µyn÷È.Ì&ª)îJh¸7ãJH#J„Ûò‚q´ -›çGº»š -@zY!BY5T-u†ÇCî†|y¶jWwÓzçíó‰à “Œ4Uá¡1nŠ]7‹>ýw–µÃî”–\ tÌ`Ôkµùc¢Ü‚o¼°KÕª¹t±¸•‚í:Žù”°¿€`.(e‡‰R%•Ãj”³—¢ !ì—«¿™úÍß·žëWÇ…Ôƒÿv ,`ýT6M2R‘.IäÂV–ÐX€3Ip¦°(Ô Û¢Ïô½ªšÒ”ú¶Ø”4qÙTÐû -Þš@ò º£»ó0›Wõ"ÜÂB¤HÏŠØM“§_a¦%¥¢©í -ö3ꈨä%o‘„P%šâZR}‡WV¥?ú¸]Q÷¨7˜QRcéqa´©?ÉW=LÜ#¨ù@*Tg9.ÃxÔSÛ'iÊ+¬«ZõÍ*ë‘Ïa]Wxfö~\Úæóç†n±•• ðõLºW’ó‚Jˆ\ךj@øûÔiÞ¬ÇTÂE¦ÚX%¨ké4Ï2½W.Nw†¹xÃg.5ýÝTúpd…sC‘Ø`+tèÀ¦=ǬÀÞÈN…ml(D—Íë€"’=º¨ƒ€O#ß0We&Hxž>Õ4¾‚][$ ‹Á]RÌûŽ±BˆJV“ä)OT¬=‹W)ò>Á˜´n“AsÈŸ–û.z0#ĹøjbDE¬pB5U¦*…ëÊŽB6¶0š:­áB‘‹=“¹¤ªÏG@SªªõUà{}m’¶|9B\]±Ê_ÉÂ"¼vñjºf¹ÕJ²Ã®›´ÁØ”§)x›£øÝœDWÃ$˜®Ç¥¹€³ ‘ß·næŸq’\ýΗ>jÿE_ßÔëýÓEm~çú4Ödž߾{¾›·°¼®½êÍ{]Þþ²Lxíºž6«î‹å¹¬ãÍjßl‹O…­·í³ÙcëfüÔ±ì}×nööê\`ys²ºž?â¦Þ=Ú©ß=ßÎ?.ŽÔnêÕßn|òê¼?TÄY¼ü Ö ñ¡}²D—%íƒÕ6ªmbß$í-Þƒé6à¾Äe_¸ÄïM”_ÒO­Û%oX²‹MòñuʲKoæ1ß'& ç8‘kŠöU:·OýÊ4‹E\zNª”œâVñQ‹üD–ŒÑ…B:Ü‘ã ÞdÙeòÛ:‘)’ª uÑ(|Ô7qÄ€Òá|¿¥¹ED öGaP9ƒ¶?È„šÓ;çø‚æùl—yédÇ$9 Ú6|qÍÃTÑÆ{£ ÔËÔmÖ® z•ÔŽ·d@‹å&ƒ¾“d«œ>šÜ*YnÚ!°‹è¬h=‡MýÐŒE¸»ÁåžÌ§b»& AO ÇÔ6ÁIÐ*¤$ÊŒsæ2°: ŽM’œr È$VðÈ¢I”˜çø¯Œ»ÃåîúÅ‘u{¼%ÙmõD -¨dÕ¨?G'…C™Œ›ç6¹9ÈÐl'Ó/ù_œ°¨Åõ -l8‰à9vi²Ä:¼>4I;„°ÃÓ “åvp”ꃨÀø¿wÃåpnå÷9(@$­-ëã¤^É:‡FRGñ»hú÷|l1 x³?©…‰‚<'ÝLüÅĪhè—a¹lQƒ¥.4²‡te–5DÕ¿8º» Î݇®/r†˜òįÜ"dûJTª“r¿bËñô­â!Þ8œ»ØË®Dçc뻾ÿËô"NÔu†=–·AØ¥T¢1´{Þ2*j¯Ì-Êø}ö Ô EäÉ‚³ù»ßÿÛÓ{¸½=_EéáâÃkÉC|TícèñF«²I#”Ü­$«¾LÀ3‚º’‹¦$,dÃ@]¿>:×F·›§©v—µ&•§ ñ¬ÏùZÛü À#T -’0„€²ôbè'NS0—ZR’òà/5vDYÀ0Q®L¦&EX³Èzšø}¿‹ÕºµnÂ-Âø~ÈjîuX;~ -h†ã£Z epj´‰ -¢eœÀ-”P©æ*"½ë‚R‘/N:¾2L3HE\òª£ü„&LúÁ(=¤õíbâl؇¨ìóq˜IŽîT‚‰“ Ž"N`ðå(·âBºD¨+r#`))òD¡¦±Öh":–¦©¦Cʹ4I•˜fzùÃ&&÷Ô¤¤"鎦àØÓŠèÜÛÖðL ÙL¤Õ/R0,AÀätI”ýRæ$‰â™å„*sš›¦b­Å‹.1óωž8šVLˆÀnÒDÍ5_ÛÅ z°ðg˜œ—Ùl&Õx1EÞ…¯_«~¬u×Nà4<ÁR,²¨~eñÔå”ÀïiåH=ßY à´ðß|¹„úÁD‰6/ŒÚ¸1çXIf5 ?¥šš -Gç ˆ7IÄ’f£©ruL‚6Šþa; Ut™>ä ¤ &k’êÆÑj› Ì œŒ¢q B©ˆH²š&ðrƇpþ -"ˆ•™<?·iB‘ŒŠ‡¨ñ¨Òn—¨ž2¸ÖHŸw_-¶KûÖ¤#PÕƒ€tÚùX²×Ú54‰ükªf_¦º2Öc¢¿$ë×r?}/…ò´&±ìyƒuˆÌÚ‡T(Á)Ötcd¢ÄÏ*غ‡3@ä‚uÃdŽP`†eãÓËÝ&¢Ï釫Ïô¢•Çf«â5)s´ïbØÅ5{~úýdŠšo¤þ¼Ô©nI:B¶Q$ºh¶5°[’Œ °ßÉ×ì(L7šÅî.ä-M‡¦`¥ðÞí•¿oc›’àêÎL¹ È7–y0¯©gMlW•V¬.*ÈU¤E¬tš%¡<ÀLЪT„Q…¢1L)>QªíCך+„ñ¢ûƒÁÝ_|1ÿ¾ämZí‡ÇëðÄyò TIóN#Å_¦ %( w^<Ê2,š. -H‚}I<Ò²”iâÄpÇ£Íö û¶¼;ýH†šвwÝ_x°Ãã$oƒkÁ`£‚°ÍxÔ@ßÖ9ú¹ÐD$/K4ûZýÄe÷Ðì:þT!Æ<‰–_º£µ`xoÍXô¢n.ÆÞés2ª) €,­z@²(FHwÂÀ„_ϼÔI(ÓTsºÄ0QWXa0ÑmÊRúZpÔ#úØ(F÷ 8lýý9?C-f^ÙEo*‚bñk6ÿ9\Îß•x\x8U#£á@&ÊX3DŽnÆì’uÓÚËÑù×&GEX;äkE÷DÁéý(`I2²¢¯m:RËZ„¢®³Ãz‡YÜe¿Öz?FëOì,ˆÜrŽlq…ô‘ÀåØ ·æ~ú)æok}£‡ ÌÇw[5çBÚ A(\«ÄXKCª+ ¹b6èš -ß•gºlŽÏž«’V…çA™5Þi†¬ óÛPÚ [Åj×<¤’ŠL s -ë˜ !ü0ŒRÁd!ÍhÔÏçœ{­¶øx˜L`D*£®QX«u’áØÓ5€¥·a`3ÙPêfŠÃÓ7ýJ¦$ •DºPé¡2< ñéB"  ãªiÙrV߉…Üš\š7—X¾l>}בÇè"Z­äk¿Dk1ñCÖÖˆ¤ƒõ@L| Xx*«|0õy&3Òœêç>ø%‘ðÀT|${ žŠÃ‘1ÏOéc&— té!jÓ2óˆ8ggîK£å~õ‡¤»<üâÛøÐ¥J†ôPŽ1W÷¹ -­jépÍêj±}¶vi’j.IU4À2«JR’'#4*4¿Ã³ðSL&ôZq£DÎ4*‚PÑqj‘àõ¯Òo,}$” "LH>l[n4‚`‘°8×0²n˜ŽÀŸ—ÍÐ~Ê)Ø‘~ -8‚"CŸ{GÈžÅuا íÿG-õŸÂ3µ8G“"[* |5ÑõëÑÆ1b}Ò€º§3¹F§ -‹Gè3™ÀØQxG‰“;'Ŵ׃úpþkDðfÄÖ×jª€ðF)Ïóþ¢Ú3–¬å¯`§ÍÁÉÀªoœP?¡Wu%öž@ãæÌ,ÄÈÊçPm-ˆ¸íSЭó—x -‹6BséæðGÑÂ9MRf×´SI³ÝîI^òùC®©^d€J¤eQ›©Éé#ç×êô´lC0±ˆOSÁ‰¦¬f(ò•v£Í$>ÄŒºK ð"ë=#0• ÍPÕøQ Cˆ¡(U.kêFQĽÍ`8Ü^IÃѱIWˆ  ~%„W!þÛ¤MB>#ˆ®mhµ°«ÐD3ð` †Äû:øûRHy5Ç–V˜ü„Pì%:Q£kÐhÉO†w5;4˜pü.«kÅsxl8‚¥EÙÂLÉr Zº†bE£>¸uiUaï3û Èä gTlà8›ˆb]éÒ "\Ctú…cxin©*K‹mMSøÙ‚”d69·O_ƒn­”˜“fk¸UŠûçg\A?‡;ÒA¨TR‘D™p6m—0Wå•öK‚ç]Pp©9“ ¦ ¯M×À~³ïÄ—„rÁ‹ÝÈœDóY[«c¨;ùÈ &~Yœ#ü\iÏ÷qÕÅ÷È~[/qV/U—ÍÂfËŸÅc³HÔY÷dˆÍ’$³é(ó| k£•4û-«‘åBª%ºF» -¤Aþƒ§nʯ« ‰òÆù½ \£ô»*"¬ÞJ+K"™Ôl µê%ÑF…,–³ú=׿Õ~ø÷½ ¶%…·ÚƒËJK‘bWÉx©w|¨Pò^Ù–NÞj,®Ï,ŘmÉfWÛYk@k¡h_QÚ•ž6ª/+Yï%¯Mal[AÛ”Úv¹}ånSâÛ÷ÃMiqS€ÜV*7%ÍMÝs_ÝR7åÖ}]vSÀÝ”y·åàMÙx[\ÞW¡_‹Õ›‚ö—•ïM‰|SHÿ¢â¾–æ7ü}¥ÿ½%°i|ÙaØ´"–†Å¾³±il%ûŽÊ¦õ²mмur>µ¨Þ;>›¶ÐÒ?úTïiÓhZÚQKߊ×n\›6ØÒ/ûºµ¶tá|Ì<ï{F#”R©!ÚŒðTîÑ‘ˆã6ŸêFP‚GÖÀeOñ\°ˆ¹s[jÓ4%Ôšè2hÌþœ²vš(¼„‚ä4Õ˜æ¥G:f¹èñ FrLì½ÈÔJŸª¼ÉÊîg0ÇÎY£>K‰.gÐpòç2çs.ÇÓDùéo’/%½,œÙ¡„‚$•R~˜Èy1Ûƒƒï —p’2‡Ë /fi;a±ÄÙ•Œ×#nvµÏ#œ?È9.˜Êѽ~&u7w[ Î1âØ>¸Så4±cp^Åçü÷ÕLÞå) Ñ Gðæ=Eê ‰¶xr0\°%{ˆƒÕŒÒ5Ë.­0ds™¤íÁ>èB†“S\2§yE~o3ø¤°Ä‰©v˜á謭D+·Âé)áCSglÒY¿×±¸ -·è{昭T›áϸw´ToTð„§wû·Ú¹)$„äØU¯£|\—»îu†œ#†2_‘ØÚžJS4é©ÙÔë|½NðP*¸a5êǨ˜ø9#¥à$÷ZÄK-°ã -»íwJ ¸–ûÌnNAA¬#1N“Y -ÒÔ‹‚1+ SIù<¯&öÁøZ”9œe”T¯ûÃE:’³^‚¤E¥zþÚ¤c sž*© <© f G„ô)E€jð;ãp'¯nHÃõüw -çè…QÐh¡IReÌÈŒ\€5H¹.¡uaQ!KÜ$ŠL8øV‚œ ³9±4pI¥”q&›ÎÐÂt£†+û:·xc§·›¯ˆé2åÛZ7ý©"Nõ)¤é -¥äpm0‰åö6 ÈvIhH¹)ÙXÝd,IJ¬Å”@‡†’L,lÓTúqéÖ~´§{D—ŒÓ­t£<H= G¾<—ÅÛ9löçBáü|ð§8Þ²Jµ˜­/†µš -É$‰Gé<§JɃ“ðc¡_h=Zsq©AF®‚·‰(¡ZIpöæk“¯…`q×Ïòí9 ,Ñý-vÜ£´pd 9EÇ<šÈ’%†Û2k^ÇÑf«ñLïÝàãH ñDgXyæµØc´ÄK¥íóàŽS ¹zT9ÑL0ˆäâ^¡i\ ÃÉêg+;RŽbTCßÊ:øÞ2»”QNO÷WØ~:&ñMP»…M4cfQ~¸—Ó¬ûkLT«ç!ý굂‘‚³rpºH‹DÕ9É,F¥€ÜËMD’ÁÔª É`“®6éJ ·"Poþà3‘^1¯Z©“˜¿¬]¬&Qµaþ¬#¹èÄ|ÖýQs>Í^ žSžœl¤çQEÃÂYÔÒŸz½¹êÄŽ©ÝPÃ@8DT»…éLNuiÕ?ÓJ}p, -’¯èƒH+Ñ.ôCgÐÕ 1Ô¹¸ü1«‡¥HÔ¨;Cl[Qý ™*~ n5îXkùa«ûžC-šj2 šUš$¬‡úóó/vUã`ÕÇ.¼9ýLÁÌO8Ñ[ŠlEnYIóSÊ.5GSNóSµ^—–2?G®sSø'UˆÕ³iò® ¸¼ùïIâaKmÒÄ…“+C”ŒŸºvòZ 7`*"XD%´wÝ Ã L©y-K/,¢ö¡K6>™ '!>,?abÆ}¥ ÌaMU´ù@OǨ_ûÖàýø¢üEÓxi0ÓÉo:ÑïÝꥧý!Z·¥÷½é/­ôñ‘.=÷Mg~iáóÚM¯Eì¡;ŒÁ‰°‡,l± +þa “Øà)ÔÅž±Áq¬h-*d‡Ù`L¶X” fe¶lñ/ JfEÒì!7;lÎÁ³‡úl0AäÐ;ÂèSठiÁ+-À¦OC¢ÞñO;ŒÔ+˜ÊWnPW 6kq}| øZ?líÓj -½¬­L¢Ë®RJ¶Ö2¹â&«hU_&ž€h¢ì5M꣢U>Ú¼Ô³èÑD¾0uuYqíº“^šÿZ4o¬âÀˆS ¡Í–¾ÁšÅª/±ü«Ùìà‡¬”…¦U+ÔiZƒ0Ñw57ÝíuÒ¤e‘áÁÚ£¸ØܧC³#÷¤XÓäHŽ›žÍ9jò¹ŠÔÁiê–ŒHê?pæ†S Œ°|Šcͤ~8B„ÌÜÑ­ßl›‚l0USwƒ®ô "GÈwY“FNZáÍw×y˜»ÑXÆhØByÖ~´¼`CñWå¥h\édT‡j†6Îu(·™aE๪Z´´\ý:&²ÃZ-,’Á¡5•Ò®¿¦ ÖÜD˜S¶ô2ksq~P'|b‚¦%ª€÷(ùø|²Å©l!-ÿóSñó+üÅ×X ®cYà"?Ü’„Ñ-,5h„Šÿ? -Øì× €qKLÅ4YÝwkÂ’Á„ú[q©ÌïlJö/!Ê&d£dÓük½¸˜®¿†¢»¯UåKVwM4JhÏ¡6Š]ÎDûø,l-eƒ¹À?,‰ZÛeµxxr1&J.‡»)ã´óCVÏnÁŠù1Rƒ$Á¢¤Ìab@&$KŸºÖ²döK˜²¨K’ôähá¡ž›¸˜]ÊRz@Ét¼0Eñ…Á„£Ž:](|G+7ïÑ1ÝID Ý/O$HͲî“X?ÝýD¸2>um¨Óx4}μÔ8u嬿vvc÷ø{êÒó”54±6©ËG  ‰œrö§Žq_ëOÉ‹g~Ðœ?Ô·Š2½íoP¬õYm"ÉÕOȼ¬f ° UUºÁp/a*íª-ÕÞ&ž¥„äúû‹åVh -ö¤¨Óàý4}L2œ_>xLnwþ9±À„ ¼8*Wÿ¨Çƒñ¼ADªS_Ÿª0`AUüÞ ¥Qb¾z°•ºÄcIb/ÔE²€j¸Éé¼Â„|Y~…¾Fˆ0@ÅU(òÙrŽ¸ 'íLv>5]lUŠ&Æ4Xr+f­£ó(WßH£çÇ5˜\‚>ØU¶‰UÕªš,¨’vSäKA ¹nל&­´E¦ LLEÇ̱¤a2Uo½9›ÀÃU²Se5rG…ib¹Ž&ÀW-_K’^Z ÉcÀ0n“‰æ%ìú)<Ú!²´f¢ lÇÇÅ«"}EÁ}| ˜[Áu?dÝ ð¬Þêû0pÿ½#(¡oqƒ9Ü _ŒB>¾áW(ä2¹ÁV®Ì=Ts‡éÜ ?÷Ñ –tœî©ëŠsݶø± Êìö! Ûµ¶`Û܇t;´Ü;¦nßù{ß0zßð·"7øÁgø)f—w8⳸€?Eɶ  7XÉTù)‚wôå -Ñ\¡œs!¯°Ï"úÃV³â£‚Ê<³‹€þ.µ–Éo©4Àg304œ ©ó…óô[ÈÿŽâ< VlÇŒ9Ñ,ú¾6¶™m50WÂ”Ä ƒ¦/ -¬¤M3­ צ¯-ê£`dÇ(’Eˆ‡ñsÅÊ4Ž‰"¯÷÷ý%%IƾF§¥ 4ê™Û\Úé¨èã”Ë×$.”þ{žÐ×Ð’G¼tžJ¿©‘‚M†_:ᤠ÷/¬dEEƒS’l`4ígÒêNÚÜ ‡þŽVV#ÿyPæÚÕnJýbFÐ{hΪ Ò -ðp¿ËDð xi í™LõÃJ…‡-=9ÙJÂä‹!#˜l';î }½/‚øéE äî"%Gq©®ãï#LЬ‹AA¿«ëTE"à,N¦·<îãYð_ÊepÑÕc/¨¨sD½òŸ*˜réÈjÍû4šDÖ{ ò¥x jpùE„EN¾U‹cÄ!ÈS*ÂÅí!R9w§~~ã&Hë e—`"¯‹´¹LƒÈBnÌ* :Æ(:Ë!jèsòÕ#ÎãÅ m7?fûÝô¨øÁîp EaðhÊ›q,Îœ+iÖ?%Ï$:Œ”Ž–Y)‘ïQOY­ÁBš\Öþ¡&|8¸ƒX;ªl—IÄD0|Ëþk˜¼žª ÇEG=Õ³›¾CP<š†üÈa™‰,-ð;+ñVÙ!Ž9úeÈ*9œ¢Xb'_3­~á):@ \7]Ìc ’ªL{©¾ò ÉVJ*žˆ¨’ÝxP£T$ö–CÄƈDÒä -̃‰‹ÖâM©ñ'ê˜q©wÍB$·œq-†÷B'N¤7䜪ìúcEFò*hýýÔäœ òf~©j–™ùÉ15“øC_ãtAoMÜ…S4ºà&s]ƒ°<Œ63 ?¦&]*üàùÖÚŒîU’;6ùRwD4«‚j›EûĆ¿O0ÚøÚ(„˜FcÞŸX]Ï”cþRe—ŸøxiœÒc°¢` S67uщ£¥™èn™°éºþLñèÈmþ9³¨‡YOLH;U¼ Au˜õgö¼a2‰-*aœýBɳÇÒä~"¥RžÖù95m¸»Á׋ê§*ŨzµIÉ^°K\<+ÿЦ÷¢<Ã1ætèšÃ®gR!vÞšf‚í§Oùš’£ µ:S7ø:` -c8lÃÏ öfkù}!Þ$kpÈ|@0Ö¦UJ…«y²»¾7EP‘33BCY+Ov…Š4­_œççV¡÷®ŠWßý2£ïaζïÛòÏ`“\#ÏϯþäW_¿¿Õågñ5n~ÿæ)mçæ¹oÞÎþ5îÞ÷fUì—Ïf­«q]¶s1¿.ñ²®[aÝ.oÛÊo³ÿ6»ôm;Û,û~ëÞ܈¯Ýø›WÚ¹¯Ÿ[œáê4ÅVïºñÁ«³v{÷ê׿„F±5–ì"Κ¾ ckÄc["ã.~®öCñ‘׸½x‡±·D`“-,Y_åš}¼'(û4fŸïl²¢]ú´¦YÛ\lŸ´m²»5ܧŠKN¹&žÛüt“Ç®Ùî’ÓÅm²çMŽ½$ãŸÊãß“öMfÿ~à•›“ÂrœXN쀲f. -œÓ¥ÍrDéçùÔWÖélÇÍ^å!]¿ïªÙ§ä†+wq \ÞÜ‘@I®90•J]N§œ¯*mOÓÚÀ`AìfÆÅ uVÎ0@QØçÁ±ðÐ ã2E'IÊkÓŠX;–jèÚ¡y6|A‘î^Œ×ð‰Jçaþyº†_Òƒ§Ò‰Ûk?â‹ÆŦ½ñÖñµ›†ÉÒVYú/ -Ë›FÍÚÍyëúøÒM{hÓDZ'õ¿éü_>´Z6T+ßÀ//] 64 ‚ϼâ„ ½ÂÚ”Ývow-Þ·V°/ÝôŒ7å·´¯][Õ›~ö[ãÛ—n:ä›>ú[ÃýCû>Œê²©ÌÌQ<È-BÒ ÷pùr¿Vä>dN…6w°‡³¿ u •qwç(sHÕâT‡ãQ¯jϛҬÿg‚úgÀM•Ôgdá$¨´Œ¸, [ïÑV0 °Ðý+8¢ N¶)•Âÿ[]›„"ÿF¸ üX9Š?Æq⇠}]½ª(~EÓÊjg’B0!c£¸Þ‡âqEd ÏfÊÞÄjR™Ñ‘–Y!9; ©³3ɹ¼›D¦U4ATÒÐ0²¦Ò7n&Ó9§÷˜áu×Ð&1>&s~¸² -jh!Rü)UØq’P;h2´ÈækǦŒ´H“^Ðÿí§s:QzÓõF‘k[k1û 4Ê°c&1Y2£HËU‹¥K4Ž”Û•#"Aõ] ¡CDœŸíp¢µ*u,J‡¹P#¥¸¨Ÿ;ן…ñºTeôB³ÝPG¨.¾uBqPe'î›ÚG—jgj’ w{yŸ›š:](‡÷,ù*Zt}2fω´Â):†I¬IÈz‘c^•tì4Ü2IUÑá/Ò]þ*qæR˜„I3erIJA©§#×…îЧ. Õîè `†°N¶çâ 4c˜°»âs&N1—µwü*œuª]25a)Ù~»Ë’æ7^@Á¡#Ѥ~ŸdÝ-HÖ”ö¾¸• -*Õ>)š(ïms˜Ìî˜;ŸHPk•&ŠGû¨Èþ˜Âå§J¸´„ý]bwaúN©xí!?­"d0©ñDÉ¿C—Z3l‚}©æ[¡YŒÏrÛ˜)–™\»+û.̦WóÖÔñµ›îϦGôÖLòµ›®ÓÒ›ZšXv…›nצ'¶áWÙ±lèZ^i]ì½ú—-IÌ›Œ¯]hg6ä4 ‹CÕ†îfCŠ³Âöð‚w Â;TÁQyiØÞ¾v¥Ø.Þ¾váØ=Þ!óæ¤OFLuzœ-YT{˜‡)Ç ^”ë†Õ#˜ÞŒÊ1“ £l‹!ÛE6érXS)Í×%£œ”+Âý…‰8è€b3“ȦТ™þsRªÅƒPŸ‰Óˆ ^iàßY‘žØ)àxm¡Ãõ¡xg~‹Ì®r¥Eðp,ƒÄö÷í±ðûŸ­G„87Þ‘4©cñ -#.pÚÄür¹‘ßGÒ\N¹aÞ0…t©3U´M;«C®ÆfÒgÁHJQ>f"@Ï[ ½? ໟ` 0¥ý)zßYj -óƒÊ8!¸­ê L@|@ÇcÌÎO“e‰ ¾aåHÐ -¢æ‚dA“ ÷‹à;@¦ aIŠç4 kÊ =§ú :Ô•œTü¦àe Ö¬“i"¯ÀÒ€mAkW)Cy\ ”+¯a&”½¯,žjÑíÇ.³ûãG…ɼYÈã#jÒfVa…¸@Ú–§Ì Ç¡ù` A4”Y1™~‚½Hh’Ófß6E07‰Ž³‡‘!Ls.|”ê‘j cÅIœ7Ý)ÔpÌaš|îÇ° -ubeef;®ñ¬$Ñ4ÊlñµåÒñr’”I¬"f‘ÐÚƒ0ˆ6UáCM&h -‡ŸŠÅ•TÔ9øÈšU„…Ì2ÁMúR‚Âiåñ¦z¨“5f‡NdêẶ—akÇ°ë«Þ.ëµQæÂú=0ÍšDO$qˆJkPcÒT -‹?Ìã ŽÚö<¡:Œ®!DzŠKŸ[X@=•z¨CÄC5C ŠOë`‰•4D- -Hñ–…ž‚ºÙa„FƒTȧ¤úD¤AÌR’ -ÇŒJAUü5ããéòÉ°Ã7Š¢¥‰4‹£Ê….EÞ””"PØ(^éÙ!©“JrÐ9òȳÃe'FñG N«É0ð}ÞQô=Èb+å]cA -=Cš©JÊpP†ÒÈÑ!ŸÈ|x¨%f?%&^êEªŒEá0ùY‡)”a(ÙQ’ž$C$ -Í°Á–ó0‘ºLE©ìaiS+&Ìm*ÛóßI@Äç«ÔQTžßD–ø›“ú)wôîÍv>ïÝ7Òñ¬>tu´«C¶ãy÷Üÿ¾zž5blâÊ>þlâÔ6šíÃÞ&>n¢è.Ø.1y Ü_øM&°ÉÖe±Y?ÛU¶_ŽëºÝ¬î/¶Áv¿,»j¿ýÖ}ºÙÍë¶ÿøÚEìÜÉžg社rh‹óûaý¶7'¹ñ¤‹Ëý°·~÷Í;þæèý׈°‰K€ù°ìk$ZÃÕWamÿ6QrN7qw÷a|ï7YÁ>}XÓŒ%Ù'-kv³É–\ Iä&§Úe^KŠæâã[*·Ë÷–ÄðSð÷ r“f.éèשëAž¶*}ds|·· -bp¦ì¬Pqøƒ‚ “?Ê §q ¾v ^ƒÜdïÓqÒƒÑû‰ä`³ LÏiÑÊÓX´e G±2aÌÅoðâæE‡\ú™°ó\å•~¨XX½ ùMº¤¥E©t½E,20Œq¤–Ä:Í—z® -}žVŒµ"²aZqŒ,SÄÈÕl…À”ÂqÍ´° HkQ«BÕ$ÙÀâY1œãÀǸBµ„wL‹ŠþÝKŒÝ<¦—kåŒYçØtJ¿è©îÚ_Êwx³Éš$fÍi´#шØ^êpT&€i6M‚ä/¢°ä$ÕgþRÅσ~T 3ÍhÍ9 Á¼¨Â -2ŽÄ÷ë²×qˆ\ _bø ¤ÜòщRçZÖìèwêßU=ÈŒbæ4‚ZÀ—Fë»Cᘮøh>cYÉð˜£"F × Éd\šöME¸É£«ÒRD]GL 9E_krˆL‰À<'Ä  zøgHVa7Ó.w:â¢Ao¹ëù¹jÎélZ&[ÃÙZ“¦(Õ;Û8ÇP€©Üš:Akt\¤µMz#o!8“€Q²Qò²ÌÚ%H†ò¼´ŠES“Bh\Ñ”ó…š|­î¬›qž×ðÙHŠ8†â®ÇNÒ ¸X9:‰rBŽazèQE´y7}ÑœÙ5röMª$«VŒ¦ Ät¿KNÔJ—ègH¸:{êÄ‹ s³ö$î~œ7©DÏã"sÓT唳ÀN -¥°œ'×D­RY䜕FêbŠ3a´¢êy ³%d‡v@!èñá†=É€Œ0c¾,öéä@°€ñÀs©Î˜)lBÓÇŸ«Ê—ú˜\9öh,€¢w´Ñ±T½0X=§F/B|Vâ¬QòÇì’§F’Ôl·˜‚ŽX·S…ðC”Näu£•‚)`Y‘7¤ ¨?p¶ˆ[ &r`˜û -RßDÑÀ²ÝÐPNhÖ -ŸDa¥U ÁÁ‡(tŽÀA”ÆD,P#t9@Á[x imæ'€Y„QƒÂí¹ªÏžo?t§ªÔNÌȳ©Î†5qÚ"þ63ãQ¡€ß&Q|4‰ÚãàX¯¬ Ëò@ Ùˆñ±9PRD:›8=µø[5¿zS±¸_ÄÝ›Eœ(Lª4âDZÎn}Ö…VÅXEa -u‚Åx‚IÄE°£›1O€ð Ð4»úX<0dÉ̲[æ…% «.£ñ†Z&¢¬ Ÿ•ˆˆT'/‹•&õ’õaêu¢º„]S*së^Qu¾J±ÔjÀƹ$xf‚uþÍ(Mñ˜wLžþ$ŠT3À°zºrRZÒ$Ña€PLÙ\¸TmÀj±Ü#0q‚R¦¤Kéjôb‡€<°N*ÃVa:ꄶƒ;`wÈJðêi±©£‰$41ávYÇ#öÄÐ"f¿g.´ƒ'‹ÛÁ÷†l&¥—‰¬i^í!›“Šêf*¨Q¹X¢R+î’¶' Ï®N.¿Ì*a"…¨êCHïõè,ð‹‚Bõ. Fc²G/fÊ$ÝðyC,JçÄÀB$lA 6 ’Ræ0Áù¬Ê̹:¨ÝI¨—‡[$Ýù³”GttÁ­T1`£\"5;ì’I­øi>JÍp\…ç‹ìA 6Þ -^¦ÀŸ#(<ŽßÊ¡2çǬa|—/7 -Ô»7ˆâ…Ö™+Wv :ž~ãn~êµ/~iõ^[/·ó†[Ÿ¹ºÖ­^üôÖ¡o<ÿ.>ìÉq6qi `\mk¤ÛÄÃ5pzµ½GØM^â5Û×7ÑÉ>¾N(vkè«õ¶]›ûeü¾à™§¼o‹ÍÖY÷؇„ß7ãnË.{ûÃR‚oN`ç*Þ] -½ÑêzvjëÉV·s‹{ÿ¹q´[w¼÷ÛÿöÑb*›Ð³Q›`¶yo±ñS×®1thß"²/Ý„îM€Ë|í&eØ$oÈ×ÙÊ’ØüpN´&@›4i›N-I×&1Û&pKš·Iwã&±Ü¤Ÿkž:kzi&k%G]6Õ™º½eí¹Îs‹„bè01.ZúÁNºãɪ‡:ùg}pIÉU.B·áò˜å¬*ÎáYôšæ…‹>À³Ê?O' 4Á5ÃçÁáKȇÎƬ5 0aäÈ©ÄÈØg!¥òóÀÊ=žó,qObñÄù -6)P¡x0±5Q·zB‰Ú•Eñ­Zæ!Ô“!¡ˆ‰3ÅÜD;Mè"šÄ q“ÇGŽ“`˜<øsSUÈsð=&ÿüZáäwªîaðÛiÞl®Jÿ\`# ؆°ßàÎÐpÃô‰ †“¡3”¯&¬×ÄÆ©ünÌy&’dqM^hb=:¬ùš=£3¢eA±«²®­©ûš£1Uä ©]t_U|­ŸrÕ~ Øaä}M˜&ÒÙámÏñT›_m¿°€Mûâ»3`±йˆš±ÃãûÄ*•°†f,7R~Èš/¼9aä =wJÞF¬É!°ôX2X©"+âTr€á/x*[?0™}šÍ¯t­òà>×¹f–ðÊéÜ#½È¦’T7í˜Ç£p#M{ÇŽL%ždB´”ïéà ¯ì‡8±ú‡*—òˆÝÑ(€Õ‹h\ÄœGqÔʳñ€ñÈÌl/Mz½õÎhê“ЛUPW$/Ũ:À" Ÿ&Ú²PÄ=¡—yLö™ê<˜Ô˜1ƒþ wŠà7¡È‘‹ÎâGž“(‡ëñð9Î1³üòßйÔb^ØrÍl¡¬¨twB‚ЛH„²8™ë&8íô4 ¡$Uࣴ™ÕŸz¿¶-2L5•–ƒÚ Ý÷–f»äL]SŸ ºÃè£o¿˜êP\ÁgêM„ô4ñP"gl5Ìlëæp„{kÅ ¡3Iû©^ªWÚêŽ%whó³o!éφØ#ylbpÄ‘ ÿOÏÖùdˆ'&A­Ü.L E7-+ÀÇE<ëÚdÒ0©rÅžSš¦˜ÜÏç)È—R£KÖbªÜدª¢¨r•ætòµÁ­@t ’7È,9GYäÑç+/öýêFÇqý¢èüÐbèÖ~Ç‹4Ÿµhòþ*[ËÄü¦áò -ók ÒÑ*i³(é›y‡ôù܇ˆ×µÉ9ÌöBS›ÍEqÌ=θ™çcñkÈÉDó‡›,8§Iáâ(š®ûÐj6£i4Ë<ÂXÖ‘ÿ"79Ô‹$@úAoÍkH°2—’‹@n@©dÍ£€mGi^ úaúš’ùDÇU~Òââ‰Rqô@3ïS†‰¤Æ½gSWƒ¸á¨Þ­-‹®êÑTíDÌûWöŒvl&H¶hqêB1²(M¼€r“9Û¨ßÔ”cñÐìVœÑ[œ -§óä-JHEŠ¦Ì¼cÐ3Òk(º¦²g É#¨f`{ä1‰¶aÄ&ÀÆÇ5$=üc‰Â. Ùî‹RÝ95oâ»2ŽÑ‡;,è3|W¥Fo‰Ämß‘k2C)× ­:$K[üÐyuÁJdÉL$ú¥CŠÇRçysÕÍ﹆ 0âø_h$W7ÑyöX¸HÒų‰Y™a¢ó2ÅVptÃ&Bx(RBÁ¤$²d¤û}”yËš_ÅñL/r´Ö¥æbõ‘)âÌžµÎ°d§v½%¿1üÌ‹Zêì>ð½ò<¯F$Ȧš…­‰]˜*˜Ïd$ªÅ]¼Š¨`&zžÖ—Î| S[¾^PŽ+Cg¶• ˜G’56÷­ôúmίòÄд¿Þ‚ÈÇŸ^×[Ýìϯ]òâ¾Èõ/~~ ÞÂƇ®ÝÄ—Mz W¾v×Öà÷$}é&šnbîú\7/`óš6ïóïsóâ×Õ±¬¢­¢Ír{_“ËÚý0Eðë"ßl…¯ö̺¹6[pÙªpŽ›-½Ùø«‡°S~w%‡³z&:åÕ…mÝê?¾öž[O»wÊ[ÿý…¯_âò@6afGtÊkàÚ„·5Ò)oæ{P]B/]ò&D¯|ñw©Á&Øg›”d›¸ì3œ%Ú$LÛÄj“€­YÚ>›Û¦}Kr¸d‘ŸÎ@×ts“”¾e¯¾v“æn’áפٗn’ëM -þD^j|e¶uâÂÏvˆ©u"’êÉð9ÆdgâèÎ ŠneÐ3×y˜,h'Ðõ÷y-§âIDQ -Ü^sÕá* #C¢&S²N(»8+€)KÝ…B¤Ý‡+Ìï§Ù@‡­QLÀÍJâ(ªNS.É/ÿ«Ãæî`º=Äî¼û³1eGm2懌œ„å[:˜:ônUoñÔÐ Jc¾^s<°"{*²uCì¯&—´ÓÌÙÈòêÍ€MŽR› ¹waÊF>Ê*¢ß4©NKÁ2¿ãR9¦.pTÅ¢CofêR7ï^=AÒtAk.«¦ƒ-a­5À#/t;)ÄQ–kÞ0r—_B&sèóà•§¿áããHƒi¿P@O4úyh@Ò©ES‹eB§Ëd4eÚ´—ÙêËl4hÞ¤j|åFÓf£|óª3ó¨UIg£·ó&Ì3Ó·UÁg£óó&äk>G/8—´a£É—¹­õdK"Ãfq»wºFÐƤ-Lì©jlØcp°ªW±òŽë¹ÄÌÌ‚AdÔ¹ùEÆÅqåx­ÅY‹Ä\sã˜|]æ m´½ˆÚFjíU’Í—n¤ÛV}·78_ºŒÛÈʽéÏùÚPÝFÎn¯{·ÑÇÛˆèmÅö6¢|é¾­ÆßF p Üë -n72…¯z†Ó©†h^›*ï[.R›¤ATDÙIT›mŠ( |4wM ”Cù°£9q´Fè1Á•©i¨Ùɵ‡Hé!ŸCâx›tª,]âŽ4žà‚²ÉëÙ¾ÄË”¿s{'Â# fB¦.¦5Ùzì 6˜âúºË±ïˆì»'lØNâ·3ͳä‘zq†Üæaãÿâ -=uíq°8†ç¿Oª•Kä4¨ M™—׊Gy>ónS¢>›e¸DÈ2åF¡–+’h&ø¾zPÃ]·&4#¼€ªÉ”×.>NA~)ÍñpC˜ï -NÇ…ÃqÏa´Gs;Qå&±¤*°q,K¦`Ý=Xçóg3˜–‹ó1ö¬0vn!wbõ)Ø•‹}1êK=>Æ.QPjí\†'„ŠÚ”qDï@]ꀓï„X÷½4ØbïBc‹ ™CöF¹l£oö&„æk7Ši]µ76_» -µmÔÜÞdß|éÖ1˜¸(ÛG`ÑdZ9x@¸NùàE9RšgŸÒªÙR(`ÉCRf2)Y—ŽÖŒâ"sÙ‡êQÁ$-‡^k†‹ê!ÜS™fÁR÷håIÚVÁóÄY"“®ŸÑ ¬_Híµ…6 -DoRE¾v•4ZeÞä‘fÝdÕQÚ¨-½É2ùÚ~ÓFåéE jÖˆ&‹G‚f=³u¡Ñ¤r?hjæSñ_e¹°N²71BÓ”4Žx×Ì®%«ÌUw²ÌäÓ g¨RuIvŒóa&OØöÙ$Y¨‹”c8ù&D+6gŸ>¨‡½9~¼÷ÔâSúåu `O¬[¢Xr~ n b•d;_ç†ý'žeÈ•‹Î3Ľ01HЉqAÓ2Ñ"úlºFˆ ¹F"Ù2¤~À8¥>È›‚ Á°Ž7ók#ÀÆ4}ªk„òÃ’T$Ø"t1!}®L€@Èæ2°)À@Ñ”ÐçKØ…“MзÏ5€Rô%ìßgD*ª|âV¨3‹k6¤ŒIŒáz¡su$}IV·÷ÜpØëüs8ä(Ê1>‘#“¼ƒÀ<•lƒ¤Ô„ƒfm -«”|I D¢:èo )þ°Â“Wì·‚½†Òƒ(èM…Ú ¼4é‚Ó˜„¬Òh‰œ>ü…ø :=*ÉK 9 ó÷-UøP(V” -ç‡ñ·PíÃGŽ¡ÉOüÐ Þ8?vHÅkå4î‚Á^M~è—éϲ&ËPÁ#\™3 ²tŠØR C"·6à ÆTˆd©dÐn<|$ìÀ=fÌk›gR -ÒfAÓgqêºpÞøü^Q˜U“%=Rîo¾HFÍòhÙ#;:Ï Ì=ÀÇôM$ ÇÒP±UŒL(Kƒ'Šx?ÎÉ ¸  û¤\ÉÚpeè÷Œc`ŒÊ5KK¼gÐÈÄ’Ç‘‡–Ú$Ár$­ HçK±!MÌ2†bCЗòÈ‹KGÔÑèæM9­‰=.ÒC’Y‘±‹h„Zû⎧)>d02uPhf°ÌMÃ*Aº“ùÓ1Ô_ôó«?ùÕ×ïouùY?äãÞ~ÿî)-O¯óÔ7ïf}‰ô[ïïz³Ö…ÃE·®°Ý:Ü.ØÍÊÞ­ÿe£|jƒ¾ï¨Ý¾[6è§6貓×ý¾:z®Ùø™Å!}í¼ÞÝ]×ê 7.óݳ~Èé½;à—~÷æ¾rñú›ØðC>äßcÍ&"}ºÖ·‰„kÈÄËØÄÖM^CµýÖÓ×È¿¦Ÿ}Ï%6Ç’™||Äìžk†²|=KTù™$u­?^3'838,ŽbÇăáwyZ¾HÞfYe8ðÀÌ[‰Õ©¼UôNÅiº›ãð…XùósO–pãëHö@mè LJEþªà‚„¦†^¼ÿê¥Yãžï¼‘°òx…VÖÓø%õ^,õ{p+äPwæÄþôóãº×~~±+÷ÛwÙé?æþ{:„ÓX½Ë‡ÄÙßÝÐÆY-Nûlu~¹úÒäÞîêš÷zûFÖ÷¶}¿»u°Y-ûeµ]ï‹t¿˜7«~Ýë&úz¿-[ó‡‚í²‡×¾8„-üÅslýË«ò¥ïîjñh‹ãûÐí.rñ£;w»õÊïž{uðŒák$XÃÅVÃ×ø³©5˜1„o¢Þ× úñuÀÝÅæm¿OXË]_˜¡Ý˺Š)Ì{Y«BÙº¤?…ÛÊ$cÞ‹&Îf0éÁDshs³6U ÛĹ³ Ô¦ÐÇgïøO&ÎQýðaŽÖ]âW³™‰·el(ÇÊaðœê}%g£æŸ÷Æl×·ïäüe^`ׂ‰S²~j -CC u?òИïµÆöØ|ƒ0¥žü„&G ¬j@˜¢. !^&ž+ßy®+$0Ô‰Æ VZa2Š&`Ÿa"Á«MîgÖÆÉu›¿#×_ïLÖX„ Õ—’ŽKë¡&ƒw®éswZZ~7Õ½„š¥ñBcƒŒ“"xq>ÎG2˜q -8ÓÕÐçQÓ"JÃÓƒ(Ÿp ö± qæììf’áSó5H' ê"Ù/›V‡šÌ0ÎOðÔ+~õªkY™QÆwA5Âpº˜y‚‘¼]d­W+ö;u6ÅŽŒKJG]ƒ¥ì•ÌòHÄáO• 5PúF³‘O[õÌäÎB ‹±ì^Ä”Ý3Ù÷4vý}©ñ«²ä¾„‰¶šš¸I¨ÏZCj¾ß.=ÅBJsÞFr@²èayúâ±ÝI¡r Z™8®Gï -ü™TF‰Ÿ¤\|àIùRå¯x3d Â«$tŒGÚ -Ìx!WVòÑ—MÓOUcÃ@ïrU9¨&ØæzJ¸1>ÿnÖ2‚k¬µþÇ¿ü‹úË_ýõ/ÿáßÏÚíK6¶2õ¤«æK~*O àgùF3"³(<·Ir… œx ï©lÃaŸOÖõÏž¯ê?ýå_œ7ñ÷ùÿæ/ÿâ¿ûßÿæ÷ÿø‡ÿéï>ÿðwÿð÷ûÿï/ÿlñ—¿ù×ÿ‡_þê÷ÿúŒN¿ÿû?üÝïüÝßþß÷÷ÿ×ÿòþá?ýÃüë_þ{|êÄÿ臄ë‡,?öÿÿqœŸó¿Yú_É;[gûüÙ88“Ì5¸Ï7 Çx0J‘ &0¸’ôo—Óï—^†Vô·pêèÔ°ät.Ok,’¨;-I È‘lX"­#qcF¨jHÖ£x.[¢Ä=mç«ó¤YßF—ÖzŒÙ ÅÎ䌋44ämm1ÈÓE¬{Ži^¦sÉFªãõ§5¦bwÕP[@§ìiŠrÓ¼ö²Â%Ã!iŠsRCA [ß+¶ïËô©_"ÑÐûƒa"©ï?w›žßû°žÏ8 ç… u&ÌWÂEËÓR%íÎgváÁgJ5NC¨+M …Üz¤Q¬ë´Ò·ŸyÄUB (<`ëœñçt²§ ¥K}ö4%Éì=M‡ -Ÿ¸ô²‚…ãMg85r´"aÐV@úeµ9›I÷ñÁÃåþs·éù½kV¿7 æI ü j† ƒr‘óçvjCžç*>š"Jð TwðcÌRli"¦ù憶 Ë^õò„Ó–­Qü¯ VšÿÄ+¾õa¹—ÂmœK¦5GÑk]µh¬Èsý!/F(ÐsjãúS·åñ£7Çý§æº¿ñ±ÓÚuáõ±bÝzX”ØZ•Ž7rú9`naúÌ€~Øà/P<@pnóbÒMCœ )zJÿõœ,€}ù(à^päº-ŸÀÿKùòñ± јÓRV¿þÿ8xÅýÿ3«¤®Bôn£Ï!-À¨ëÃÂæºÑ -— -sܼ£Š›úµòeJbó»Áˆ:?KuaÑ£Â@Ίß:œ6^+ŒÅÉqçôƽùvP¢„….¸EëL^-=ÐËÛÏ3šô0–¦ 4-[ÐôT5eÙi)ÒDza&vY°lšÆIo#Ö<_Øõ§nËãFQ’aÎœ"‡½f¹lEž:{MÌï~ˆMú/i¡’6zÂoÞ­”bþÖ1Tè­ *‡ïíTØ=¿évB çþf€¨Üoë8¬¢|;¿ôø8Ó«ÛK^&zØìš×ýÁËéòÏ¡¥›ð½½¿{çó½“ð \½fÖ:58vœþùh0”vÿÏHAœ—G〾·5-„sˆÌpr¯¥8&1èqè¯÷ Sãx^1+3OÓ½Ö¹d™Ê_ëŠ B19AÐÐÇýA¢pŽç -|˜žßû°zsðÏÍví &|uφ Fý—Çó|#(ÝkĈðOloR~<Ÿê¡©ñg:5ÜÃ3E2ƺ­ò™ÈÙ8lFÿƒs`do!<\@=ª§+‹èUpûþ`í–8nñi9tÕegÅŸÑÈÆ#\ÎóÊÿƒ)ï?á· KDWL¨@åëÌGÏßï(#zî¨nÔ_`¤©,i`;´Còß* -]‡ªéç¡7Hjº3R”øîjéj­ÁÚg½ ™^ -,9o'hç \Bý†“<úØaÀ¦¤¨ORà!î'’f a‘2Rªbv ì+ßJ†Í7Hª:¼åŠ3CÕãÛ? À­ƒ]ÕåƬý¼ø<ÐS}õcR¼ø‡¬:oàò#šô{ó¼ÿ\þá<ík“¿ø<ê -â‹ÛAŒÃ°ÛA ²s -H|;<jü8ˆA`¨ê ·ƒ@V… }ú‡N…-ìñË?ôfGþâÃ%¶‡èÕ‘áö'$÷ßþ¡£,>ßÇåzÇ@ž£Ó?àé°ùâzë*Ƽø‡Ž6èCoÿÐy˜=ÏT›çý[òevÔ”Øàs5¡ÿàù™§ ýd´_Àçq&!Ðú¢”Óï*ƒpS×ê|OµÌzJúáÕ€Úo ©Žó1, ¢üÏߢ·Ñ.GÁIIÀ)dÿ­CêmYA=…‹`WçÑS´á=ºÜsæ»™Üc`˜ä„Š5m•i -·³ -èÌ¿9ðŒ0yO#Y - ¬ïÔ4è·ƒ3ƒ'¸H^4"Öåw R-ö×]8ñ Š…²§ÀxÀ³å01Jˆ’FMÕÓ×ß÷ÕÙ(amG•ìÓ˜”Ë[§¿ˆ¤ST5/´UI´Û(ø -&Š¬*ÅÁsZëL¯0ûoŽ?Œ sÚ·á`Fø~·:l£x@…ä”iÝP` -Bh ösG6”_ôôëUálPnu¡zö£vU—.°b^w¸›ël ç´!ÓaœB«˜BB!ty¶¿¥M!rØòë¦Ð¿‹Ü¿s×G°åÑÛþ\\ø©ùeãÇ~•¿ï­ÁEOðýsïGœ¬òc럧ëÀ¦Âo·~îËÖH{IÕsí}ÕÓé¿çæÉiÏÝ£¨XèÛ?‚•ú`ä¹ÿ)V‚–Í‹ÀØ -§œgEá8/‘"³3|ù€õIÿÊ> ߯ãvœß¥¸½@$á w‚Ý@ÄÈ%–~Íæ§@­?þÒ‡#ˆÑ·'Ð!ý(W€gOÔ׫/À´ebça:…]‹œÞ bÄ’5ª‡;ˆhƒTàé°þ2AJO‡[õ´ÑÓ#ÄF±åøâ΃ŽÙ/Ÿ1Z¢bõåÖ‡ý_Ñ+üçŒpìS€Óòü †VŽóåF²ÛŸn>º2Õ¨üy†·èJÛVŸh1ÇŒJT™úÁ˜å#‹j¬5"T¯>VááZ0ëÈ9Ć\àT(‚â­b4¬«r€VŽÖ@šx(‹Ú8px~;‰TQj˜ éÆïˆné*"£+ªz Y^ êRt1°ñLœ'ý"’5N‘ȠׄG‚'¸5QK-ü®(xûþpÿøŠ Ôs9õŸºd e ½’¶«e%Ñ-üFÔ¹ÿÂ1É<Ñ_ q? -™üéAxÌ>ÕMbyÁOG¯P‚.<ØùÔf°ˆ–§IÜ?ÊÄç‹Cu×%ÔJT)ˆÎ´¢_ƒzVÅÐ`góÊ åÌø¥ÿ”áÁ÷©æ+@§ª7(#¤T€\¡|(}¨HP²›$•ÓYZœƒDOüž^¿“wÒÝkãc‰¸ý{ã÷sã•{×w¨rÌ–ÔÜõ„O¡Þ»–ˆ{íúŽuXç4‚w}Ïázþ×®ïÄɪlsíúŽ•‡€ýÜõ½E¿ýk×w УQuízXHà³>ßßÄ®èp+Uz„û@4öHf¼Òw¼€²±Oú øqz¼DüH”±*ÑwÈøoªµ_1& UÌ 1·ÂKŸQÿ 'Ò¤ºÃ>R˨|aÆýˆã±üø£ Æõ5ò#}wãú‘ÿ«ýý1‰K¿Ä~dÊ*U]ѽ6õË®ð¿yÜ¿ò2Šù~-wpß~ǃŽ…Ódéa-˜Å!ÄúŒzÂ߀5#3¿cyõs€3…߀«Ï—µƒ|ÿP†Wˆ’øÖ -rzE¦sƒjRë´6ÿJqïú4uh«ü‚»&æá² ›Ý‡¬’“?àt%œ(W?MÒÃ¥·w¹ñ×Ä‘Û0mŽ”³££-¸²¤È{›3ØA ãõ·nÓóK_¬l{{L¥vxY8=˜Ä¿ÔPMfò{<ÏC0ÝקŒ¶m;Æ$‡æQÍ­–âàŒ‡ØÛ´ÒËŠY0˜Ôé£ -[˜ÑoÓ§ÆÅ‹×Ã|:@0°þú4% `óÚËÚ-1?ÇWvš -H£'ªÅt™>5ž ÏÇÑU?þÜmz~ïÊ6g+Äô“vŸ÷̲&g¯‰LuÁðC|2âiCñxÜï‚êGA7«ùE¿‹ž‰øpv W# f1ÎlI¤ð…ÍL*÷¢ì»˜ÃîaJB~j¤ÙÖÞån%0šºÂ£þ"ºÛpý\†¾:yéçgÎìžññwnÓó Ö&^æû5ªC”û§wz¸¿}*X‰rÅ’^¸ËB K¬E¹ÿåpà%ØŽïµÇ³éSREbº»?ˆR<5Ñáy9ßEýa*ä4ºêɵZ7Îüa}8~ü…Áv%‚ÄøP“mÞÐMÉþ‘›•Ä ¸ïpdñãJ)=>U‡¦ù÷9uû4eáÞý°¦uX)ëèëIm.PÌtÓÂGgÅi~ k¥Þ ºg‹ö‰aí,"Æ_Ô€¼n~{Pè¿Uÿ]#¬‚w¼XÓ!Ð óf2IÚÊ9\Y‘„ežz…8{\¢`$´ö2y³Kûàþ ! @uÌ3?MU·¼ö²R3üs•@£¬Í¤ïãaúÏ™A ÷»ht¥âÃFŠhŠ‡5 7 ¼gàFàêÄ›ÑÙÔôŒ!àÚ:<Ÿ+Ž?ä{Z9òÇyñŽŠ LsÌtÀ‘ÕÄLš^LU¹Ê§xGl…n£†ã|\)Mšঅñ0»ãw.´y'`ïžéaêÎÎK§~3‰5è<ñD½t²w’°„|Ÿ\ݳöx˜jË>ŸÖ•Wì­ÏÕMÞ4äËÜ ‘]Öj+¥€Øˆ&&n¯&2Š:O²•ÚÇÈIõ¾üœ(A ;cÕæ69'¤ìÏóƒCð§ÇŸ»MÏï}X©ˆãÏ)O¼óâ5~âyÉdhjÒùuº¬ Çf)¤#aÈ5õfB)BÁ -J4Õ— ÂlíÜ'}NÕ¬QT²ÇZi–Ê=Ã:°_°% ®sæ -T¦KwütJ@3çƒÊ ÆDîBÜ xàÑ Y·%h¦<ÈJHâ~Z»–˹ý©rÒxT¢ 5œc>›ä"’íq®±ŠÖÚµÅ:‹Òç_0›Æ¬V‘·bó´ÝŽ.‰sÈÆQ1FÝ„æÍÔýc×ªÛ -“ð‰H{!e˘ûçÕäáx%e°#Ízœ™Q0cߣF¯xÍ œç=°žEÁl²|Kw÷!(¬¨G<-ŠpÚ耇ùZe`À3Íä‚C£§4 œòDþ]Ë0ðu`΂0ø%ï)¸9¶Ãig%ò¸F!˜ â|œŠ0åð‘ž&’\nž÷o ¸b¢„*æ·å1ôa°œ0’  ˜m1g¥à™èJIµ![õëýyR.œ‡âQCXx±OÓ•G‘#Çy*!_*¯ˆ÷B•.(HÕAð-ñ¡òª¤'FÜ óG8 ÈÑ^Êa£LˆL36˜%yÜ XNqÎ:­A¢!¸4%øcù§$}ÐÁŸ1§ã0¦ ÜÅ°|2Ç¿ $à‹I\´üšn[ø¯ì  ©ƒézj¼Q‘\d=kúSŠt°Â5.ô6 :Ñ’¦£¨~©ÇU.€n¼Š$Ð ¸ŠXàr¨HG [F@4tjpšø¶9ñ v&åWM‚˜N€À7)<ƒ­¥‘agmõ€á­Àô"JWr¨[¦üÁ” -íÐ+5™;Ö¡†ôƽøePÊ?üpêEÒ×,÷Ò­á?|Nª.3ª ýtI,0)Û<îß’(€{q µ3–³ˆ_¾Ì “Œ³9;74~ZHn;Œ^# 1Š&ƒo -]¼aÚ}:€8OZ–áiÎŽÂÆ… b—¦³ð,¦Å‰Î®‡ë@%Íc Ø–Èßü?‰.:çýLÍÚ ¿õCdŒ6hRàŠZ°ç{ÀaMŠ"Õ›‡SÎ"§aG¢z…Æ5 -•àóh‹’ß`Õ&†êõiÿºk‰DáCE²3¼¬¡j´9ywÎGµäEú]$Y½ÐB3&Ÿ åöì,RI%F={¢Ça˜#\6L,ÉŸq4fû­ÁRŠ:£Ž¸(‹†`22µBÂÎH?È`s@;Ö3ýÍÞr}Þ¿îjJe²Ó7fÝrŒªËa“£X˜¸¥†.JuŒâ/d/¥ZîC…3~|,<>}— á„ù[MOõ]¢„f3Á]P†‘LE@ *àé$m—0k›ç°à:(Êa"g„‰\n”oS"zŽŸ+îÐÐÙi-ê|×:t{'y‚ã»…LkôÓa«ÑIbAú0”gg%„ ¬M`‰-˜µSb›çý[+):ò<qå ”¬WÍ¡;UÍÜoWªšÃxÍAYsð»rÐ_kÊAó£æ THcײYX]sPûîÎAUsˆNAyâ½JW -ª’ƒC™‚Ö«ä þ¯RPî›»ä€ ô¢a¹øÊ@ÙsdÉAAJ(ÝJ$½2Ыä°yØ¿r§XgŽÓò lìrY¯š‰ÏŠÃuDTÅÁÕ{AõÚ¯ó:"ªâp5®4/r•®#â]r˜GD•¤¢~Ur`™™t·y–pƒsŠâ¥ä #b¹J½ÞGD"yYr˜ahŸ%Ù|”tDdkm–tD åYrX÷ot—R^j WéJµrbˆ½K ¬\ñ|ÁRCjw媌Yjˆýµrõ,5¸ruW®ÊÕ]i˜•+UJx­\©Ò»+WÒu¥á®\=+ wåJ•6ïÊÕ³ÒpW®ž•†»rÅJCt•ëª\]•U®8a|UÖÇý+/£»Øɳ/Š -/¥e•â]Y¾* ª,÷>+ ñ®,s ûpÃ륲ÌJCðãâù(?* weY•| +ËñµÒ Ê2Ï•³ÒpW–ïJ+Ëla°Ò`¡¬«²üRi`eY»Òp•–_* WiY•†ø(-sÅÎJƒJˬiÌJÃæiÿ&ÜÂ}DRNÛ^Ϥ:CTI[šgˆÓëHzŸ!Ú}"e—›ë©…×éóqŸH¯#Ä}"½Ž÷‰”GˆâÅu$åµIñ8BÜGR!D8rIu„p‡ê:’>Ž÷‰TGˆöv"ÕbÂÕ¯éê0šû£ú¨ÃhœÕÇvFc}­>Þ‡Ñgõñ>Œªú÷y½ª÷a´K]0¿žF¯ê£N£-=ª÷iTÕÇ)D=O£ª>Š‚â>>ª÷aTÕÇúv}Vïèª8Zó0ª0hvçÍãþ•—Ñ]¾P5¬¦×zÑU¼ FWýQ#MãÜõGŒøêõÇ»`ô¬?Þ£«þxŒ®ú£ -F,ËÎÇ~ŒÆ£ù(ͤ -F|{ä]0z U0JoÈ»bô,@Þ£gR£2f‹ªÏj¬ -T·_ù8âsË°Èxœç×:XŠ,€ƒÁWœÿ#+ÐdÂqàô×íòÎìsvê{¦{ıLk €!ùd@€Œÿi_·ÊJ¯V -HÒăãã¥7I•1a:㔩Møþå[çEÓ ÓmKâN§ ÜÙÔì ÈÒAöð í't#RôC¬GoUôûß6R' jA¤+ç‚R.!+Ûg­ -endstream endobj 65 0 obj <>stream -K°€&Î4ÀˆË¦&zòO_kkÀHÅ9—¾¾ñp`QÜ)ÓÄK£’ÄñXŒ×_»Mϯ½¬È¤ˆˆøç¨qø~‰×aoâÅëƒsú¢Ÿ |Áð>÷“hÏæ#…¼RKíå1ƒº±™~4!Ïø&þ‚8ÍÝ£¯Qe|’{àJi;ó<|håR)ø²ñ¾Ë fИú™ -ôö43o^ïiZQi?ºžžÀ¨Áyò¬úêBúÀËÆ«AwHaÝÇG¡ø@ÔãOÞ¶—/˜.0lˆø&ÒèÁË«{Å › –‰{5.´‹!«ŽPßeè«y;Ë?’Cöé¾ÀïC§-°u‹û¢¬Á‹ pÜÃÉ·¸Á@O‰!|*£œ~=ØŸÕœËFGgŽ:Îó£PFTð'O/T^l©HwU~è2“o Ì|?‰9ÇxæCÏoŸ6Þü°6×ã£Ö” ¶AÚ)Pº‹:4°eÈä>=ž»œ6(«ådò«IQ‚=C[ZcдÎ7ÈCéøFåáØoòçôÝ"ó™&þî)@ðø ˜æ±Äü\OÓ‹ï¾­—“ç&DW(XbÆûÏÊcQÄ ç[ûþ’KF‚­Iôø§’e8º4D¥À\ã]eÈ|ÃDÇP1)°ìç·Ô©z¢Ç›ñ¡ç=Ô/ ’FÆÅ2 /XIÉ¡q¥?MóµÔ§5 Š{¦ŽZX•Lìä€;³½EÎSœ«;Qp/fü—o5/†Í¦ëÜÍueÿ~ý¨Ûœ¤U¤_•ÅØ|š¡º 7t?OPQB¶cóàÿxƒâM<Ïc2_ÞùS ù °]dG+2.’çfÊ1Ü/ÕPŠ8iãOkaø©›r×óI1ÏçÓE3}>ÌC•æâi¾ŽÒw V”EI¾6ˆÂ?lóF¹3.+Ïd%-AszX/ÀS踂2jõÕ/÷²‚”¸z‹ãЕá‰1#]/ÚûùYœlã\·5HfŠVŒ¸ñÈ„cW`¢u=N”걫7Ïý×}±g¢λ;ÜþÚ'Û§£H!ל~‡eæ`/ËŒâ[<ÈEÈ0ž=Ù ¾Rÿ¿ö®­çŽ¤º¾Gâ?|/H(’¡.]Õ]8!’s)o#ãù>ÏDfráߧÖe÷é>çŒaÀǼ€FŒg»ûtwÕ®ª}]KMôè"Xî”N@ÞFþ 'qF×êšl²ó¿›Áó¹BŸ*HIÐó8_D}x”Å›ò|¿ˆ1Wà™œ?™T#û -ðHÚ»áò᯳ßt—nYØ|%äG˜Û#sHYŒ³»_Œ¼ŒQ¿ nìå0ú+ }•àÅËBõÁê~oô?ñvGõÍ„½ªÊ…¤m$LUoðxãyèsÌÜ^Á[F3Œ3ÓÆÈ»‰©X qßlx"¨Æð¡ª6R9$…:4eà{<ÊâEy\Ä™Îé¼ )BbÂ4Yom(¬GÝ*;°þ.݆ÒÞX=;éT¡Ÿ[mËn9ëê‚ ÀØ -.? PD<0™tè¡›NîÓaTIÀ~ygø?÷®ñé]ÝJë‹>ã`­òu±¼™v½ˆç/%3"à$Ÿ -ËÄÐ√{b©´‹ +Yí"¸vÛ‡N+¬€Á€HªG^Y˜dV;¾fÈb¿`8WRâr³#AÚŒ¦{P N¬?Åðvþã ÁœTB(éJ›pä^±ebXW©ªA<^›£´¦«À±ã¼©¹›QÃYòÓ½‘ÿ¸:!ä˜Û¨úvQ«ŽtY}02†Ý,¤|cÓ‚ j!ïpS@•—aøbr_õbˆÐQÃPT·Ëk‹gÁ4û+0RƒœSÓÅÕ#®Æ9¤w Ñ;ï>¨×;\‡ý†Ø$ÁŸ ÊT ¸‰²[”¬-}c•4X0›K [t ž®EC6+ÇNR¯“{´ <ذߢrø0’7Cþiçô;"æ‹„1Ÿ©£/k…G(Liã]œY0ð…mïY"Â/4OoS¦ß’LR àŠaðfd-Â]F|fØ\Жw®t¾ú"§†À¯a Óöéô¢–ñÈYWwwS¼À–EiI0þ R¯S- ‹>3‚<8Jƒ < ‚-¤¿ÚGó -äk• ÕãêÒÝn8 -»‹m‘{¥ç‘J¥ÑÄ6vgà?ñîÀŽ>Ø:8 sRÆï²±Údó•SCµJAï|+ »‘ ZLf…Ñ!U1G'm6 1¼°Ç¶áú7Úð³;!¹ŽÒd—¬€â¾¼¨Eïì®*B~¸áü>8ð2F!Åšœá#ê@^ ]üƪ¹ró€j’í8|ÎÄÂ’óÕèÛ$ûò•¸™ ­Àç><9û˜|»Œêíø?~«¸@K,¨Eq!°£ŸX,5© ’rE9ÐÔ£FÆY;iCm¸ଠ-T¢bMDʯ}Ôæß@xB¨UH[zç=¦øõ¯aýè?¾þúíûç/Ÿ¾úðöËß=ýíÓ´ªb·Jʼ£n›ÿmétwiNÀS™%*j¦ú>½þjþ,pÔ³Ân€„Ít;‚¯sÕéwožD–ô?çø t¯O;v^;Øô°AoïGvSW%à©.|ýî/xöëïñ칿íh¨uCÌÿ ¦þõëïÔµ„&‰© TÕ~r¼õé'ÿúÍ·¿x~÷͇/çDñï¿ÿÌüäÏo_þåí|êÿáž~ô?ýù?{Îõ›o>¼×ß…ª?ýè§_~óëç/~úóñÅü’_~û‡—ç/./uËêˆå•*W©ªÅÿ‡²hÀ.|—óS§î -G)!³nÝøŽ˜ -«äU¿¨þ=-ÎÜ‚Ô¤iAÐ×+ÑVÑà!óÖלÉ-VphçÕ  •ª#©3Ñ…üôf¤Xe‘há¹F•udBxs÷EÞPI¾S=¦õßÖü§îDs§ùûÿ–}’A;Hàîe¥°úFæ‰[VÇ@Ö‰>ÞøZ¦í~ィ«k¸¿xÊ*âX,ýrï~iÊD˜xÌM—×½Ãí[wk -ªÄ“2›±¤nƒ -Å| ï]³/×V;¹í]q&+àe¢å³’hcÅÏF/´âÁ¯U›fiäï®M#‹£n‡E€Жéá„­fâi¨ˆ´ Æ,‚èEç 5`ÇÂÞY÷Nª$;ø‰t]WcÛiù›F§Â†š@>Z¨Õ Ï ‰7_Qdâª\Xýt|P§V¸LAÿ»‘ÉÁ¡Ålq1d…x;ñša¹H „ºypâmN°ÕØ{Iva¥ 9ŒEÝ/¨üñ³ŽBâÒhN0Í2ÞìAx.íà L>È´r7­°ã¥¨âêÒ­ª¾á)«Î}ãáK|JA•“Â[3/8‚^î Ü®|Óo̱4«!üBe<Ô¸ªvDÖ],Ü729ÌlÈzìØ9’p QÞÓui2—ò¦”‰ß~p|64%bîb}z݆^ÚÓÓ›KRùtÑD€‚¦¡Ô'ÞÝ‹ºODTí@%—Ä6ÈZØ]¤qk&5:\¸E=ÒæÞˆ9iF×$”4å-rí‰ð›sÿ3#i´*MB~ kQÞÝ?>zFÑ7Ç)…c&ñ·ÇÕ/ûüöÃù¬Û5+®…¬ˆ¸:áC¾·Ø˜¿ôFXQw•±»È¨ éÓí -Z‰Ã$zÐ<|—^@e Ë,¿š²æ홟ž¼ŽöC6$j!sW:|“ZJ\~(3e–wãŸTÅWúÎOÉ5\c<Ü.»Z‡³&î¡ã">+ÔåRy£ûE´¸xøq •iÒ¾8G,èË¡%c\ÄŒw=ƒÊå£0óv j ,E&I´ U…Ï,š#L!uðÂ$1ÐÀ10º½™Þ—J<‹Ö²ñ¾Y§ë´Sö²DñWɦ¼‘¨p¾x¸é<€ÝÅ…„—ôÃWæd=îˆ|Še?Ød -:4A¦"D¥Ðn¼À¿ÇïÑÊé€+%šäåBTšŽÞŽfNG=9wº“™3wuÚnåtäðY/K+g•“2âaÛjùµT¼½ÑÊ!˜È”5§7(¡F«•Ô‚?]“¿›ë—{üVcvqæ ÎOì-÷Öù»Gl,ùé9 @(]Ø"Þdî* 6.‹1h¾òR×í#>„°çÃìàž»g È´´°-wŽ -jZj…~ñ\äúWõÆ.Ó¶°…Íq¹´¥h€ÞŒaIM²5 -¨´ÚL0PÛ¢õÈ-D æHï à%C= lNæøÅ:Ò†Õ -dÓ+ ;5ÛödYþ”åhÛY‹ø¾bSšŽÁ@†Rä”ñEÞOU›87b»¯ë^Ýûƒs¥>ôl¿è >Ì‹zêâ݇bqBgož>™ ×»¨«û"Óí9¦ãr)*xe=²lxµÊ{Ùš!Š5m-š«` -'fj¶l© Ý6·{¤4ÈØô ›®‰*‡&šR -ŠzP–${†V †Øj +†½ÅÔXó–1U”–§{ -ÿåçvâ2#h§ÎWU´^;8Ä°d×ù^U!.p² ü@ ʾ$»Ë+)Z - -y„ƒ@ V‚4ÏÀ¶ú°ƒq,ÈUJéqxY‰XÚ¨!s×_§mÙ`×$€åݘ°**þ+îÞÙ”°ñ1šYÐJ*º¡]ÆÛsêäEÌñˆ1‹ÄqdŒ‡¥ßf¼¶øåþX?Ä2ÓJ„xA”¡_o©™]‚#Ä…,qe3M κ…Ú®M žeoŸ Gqa#ÐVmÒ“7´¬ŠumŒ§éö*º]î<«ù“&öÛW2::šÆ2MÀ¼s€›gœqÓËýx¨%ì…òÝ5öºâÆÝþ)£{œ^½/>r\hÀž3¥öIœ­ÒW?î.µSœÄ¬lWº‰’ßñ¬š·/ýX§šùfÛÁ™Ný¹úlBš·«Ïƒy›ÄȳšíÑ`ýcÙŽZÅ¿‡†5’…ô¿:é—¤¾º)Û å '§ç œk¸„( —}+' ¶³)BC:Haôýî%W‹ æ)3‚2ƒÌ¥ \†cõíÑ=ÎîÓ¶òIYQ†ÃˆwW*œæU±Ù4X J©(LYðTpÛ¡y}Žew~ÔË0pãv“úU)¢š¶~-F¯îF{\ã8ŠáB¸Qú¤žëâèùY=oÕåg×`­ióáÓ‹|ïïÞRïqaëµÂöÜC0 ¢ÉCÆvGŽ&Ê`}NunS¶GKnn˜Þ¹š0Є}wI®"¥ý±PçÐ ¨À$ŒeÌ?eó*(Ù|{‘ÏDEB¥Enö§9™[Ô,\²Îõ—WBŸ¶î".5¼ÎÒ–ýp2ÞÐÔe;V¼;¾TøÞ¸|AÉ°Ä®Jºu\må(ãíÉ`ѱ E¦£¦ãåþä=l+»JÓî§ð§H:Á]ÞX¸ Dn†`éb¿"ÆÅ.¦Í‡ðÝ&è &šR¶lãF}Õh•¬%ÙnÄJe…ÞIŒpoÓfwüÄó ¯â—û¯ýÑáw•P~Ê۟㨥°Z­cŠ£4ÑM´ìÐ^L(’ß/~¹ûzã³¥¤*ÊÉÃü¦W^ë4¿hF6KRˆçUÀ%ç× N$åãÂYiY°9aø2ÌELurËd¹]çãE5”)Ž„nl†žtû"lv"ÝcÒ Z–Ué;;ÂJm#¬/º÷g£›–åˆèPä13¿²›aÆ#JAs¢=¢§nøs&}\–ÍnºRÊ›¡~¬N¢Àu¨c áÅ6xJÁpâB3ìhSVáààð ˜ûïŽî<ÅÛÅ&½É½£[˜S åµKÄ3ƒ-ò qEÄ u/~Oè©`Áep¦€ôÀà!ã$ Rv¤ò3·Àã‹ïy¹ÿõŸe=­8Ä·}ZPä~×ë m³ò…½oæ(a¨åZc¤hC|rùêFï³$'Êß(F;9Óo0ےѬ3ª,–Âã©oBZsÿM>RҔ맪ib 늪ë‚ØÆc}AíÞKl8÷AbMSÉ,XÔ»ö±Ü» )I§N*Šî/EMÆÃ_‡—”úŽí½¨õóoEMßYÔtTªÏQÕ”±O 㦯.pàêKÝŒ(k"¥V_µg¾²¸Y\²º!`2!»n‡Ǥ)¯F²C¨ž S01˽7yL]ÓªÔ8mZ3«œ?‡mmúæ˜ÇGσק#5ÿ†c6@R³ŽÈ­¢¨cƃN‹c̺‘C<Erá-bª¢I„ÿZ¢Ä#ÙêJÉ(!ªÕŒâ´²`:„!‚¬) ÞâdË‚x;jL´1öE*.IÒ"m´îæ )Û¿‚hBõØΫÒR(öAiÿ@6)E¦N´½ƒPwµd¼•È©/å€_IàèäÿZ»•h8k¿Üì?rPOWßßh›_f¬EÑZ‚Åkf‰S€Îâ)«Î ( $OÂûOñº;íÈ3ðæBª?AAÌää…ºyªž6sSÖUUÄT»Û§,G\!d¼‘åñB¬)îöØ?èåî×?d¨Ï[B˜]™–Ãjš¿ºšöú0íÓ ú&få›&¤¿j¿–¶ýì?¨ÙÔôÍ@9G5»÷ýv@­DàâøÙ¹ˆðíôÕt1ëR®>%\á­¸²^iwfˆùáS“œ|=‹‹JV®† xE(ÿ<Ó·~Üjä—`sQD©QZ£œ¢­*<䃞}i‡‹_îþÄgPéÜéñ<·¤kízv·@‹Å~Œ’ JÇ" óŸ.",?ý vV8È[ºÑvµlÞ¨:B$cÅØâ|uíZsgM¸ýÆÇ.˜Bü¾z½O S¨«Êí4Nj„Û΀ÔTrq-Fàù Ùšì¬ÀŠ"ËY B·ÚPgôD?’Ä¥x%FHçÍ©ôâ$-nÓ9MHfÕ4{š;ò°¸ãüáM7U@HÆ7A*Ì]~qÂcs…#¯ì - GŒð8MœMý'×b*09]ã»M›¦ýXË“%ª¿8þB¬ï‹øåþk?4”„OQ–qe±¦7”mè±1gÚÏ>#˜Ì²âýê—û?òY"2S¡]wsžã1\Ÿpšcà°sæ".€Æ0æübx¸yNuð¡üb8G˶K‚éy˜LƪøfFO*Zq¢W -©™¡"2Þ=¥‹ØLBp5œWqG”SÀ žoc„À¿-Bê™Â¬bx“Ã̳Reë0ÙeCÄÜÿöÉÛÑV¶DË2+Yçá˜U|ÌÅÇÚ - ÀB„»ç‰èrÕ ´*Œ‰ ›Ñ|X6{‹5µÂ!îÅ{2ëŽ*˜¹±Šž_ - ÓRüĆ²xÞ]KèÚ<Øw]×פû‹að*p™øÉËËíÝ`™Á/]÷†åU¸<ºN<@Y1Ô¸»&íÓó{ѹLJ ‚!;VDé%Eà‚¢‘lMÇ'õ¬á˜W®âÝb/›+ ª½ÇŽ¼w!W 3äĶ氣Gw -)LQ2w-Zó¢¹n>zÙQŠþTƒMºC&RV$â¥E»Œƒ£›÷KÑÀk‚ã"Œ×JìÀ**ä|8átW7n#t]œêh $[ET´øº&H-•nˆ"±woÊšêÙ™Š`;ŸAúYÀ®—¯ÉRшÚgÊœškeã«ß®ò6.ý…§h^d­&—o±“ÕdU”±ÀD}™¢5JƒÐ¸nÞˆ·-Ìúé܈ØiÔU¸ªU¥ÂÉib^ ™¶…Ý Ù/Ŷ@ëAQf´EQ—Ø˾Àeñ¦TQ¦¡žvnE\†H•¹30nsȧleÑ:äÖ¶9]mmÐåb0c¶N€¦ƒ2.Ãí…­´oJ‘Nlö'Šâq¨|Ê–€Äyºùƒ˜,¾Ü£‹vv^í[ñìª%ˆÔ…Òë\q¦4n™E~¶Í!X ˆrÔÜa2 R—í|iºžä{™s³Ÿ‘µËˈ)kqÞ #±ñÊlëmÙWz‰>À7F÷²LŠpP¥M’:ä㸻X‡ê6}Õ¦Q£g›3?`ú«TÖ¡­œÐ©´nuý!+ë|jƒ_`u ÈÁù ¢¼2ß`>«Q[A‰Bº–óÕ O»r-®ðÇÚº]Y»•H³[»wÞ̜É%º®Ž²ÀÄÐj>}#q×rPBŠÑ4B–ݳ¸^8ØmäPŒ"j]‰[lèHs%Çš4Ó8Ñz£‰{ñ%–óGJØÁ'qÛD–už²Âœçæåþ˜qC‚Q6ïRdsŸ¸‘7Ú’vŸøðLÂ|bEØ© Ÿ˜L=Šl|bHûP¯’}b,¨Ð¶ð‰[У}âvq_vŸ¿¸­nÌ—KŒ·éniº¸Äxo7µì.1>[ÆŸ˜£FÞÊ“O †Qœœ|b=šÁâàßÎÚö°ä'>eÏR ,Fg]º=nbÂ¥olõŠfõ˜Ð¡7à­ê,®®x:fï‘å7ÊëYŒ2‚µ-×?vÙ®Ò§÷^û‘éS~‹L=åãóp`¢³Ò!©??qXÏ÷«_îÿÈçHAÊw“åqŽaè<É Rÿ.®úg‰½“ú`1«,¬Iç¬þœØ%è-#«_0ÔGÁ´þFYÉ,ÓúDûÑíÍt¸‘Ö¯Bߢ‡y1¾ÏJCy}?èJUÝLÎëÏ\c¨dýp »ÌEá’µ–ã¥o 0ËÝI1Aç&«í¨˜wÆú¡Š‰Š"œLk£¢Is›z³‹kå )·ì¼¾†‡ü„‡¼~y£Sè‘ןƒ;w–,ïy}ÊR9æõ§¸xh”×g KBzÁd}Á, i¬¹™‚7Íñø]¬y¦ Ü?éåþ|žEã"õ~µ¨RëÕüƒ]ÝV'óú&™– =¶ë‹·À²8‹{†à£"ÎÝ|žë¸·ïׯ 77L$3ø&¤}—c€'qZƒ1õد`y4-åñ‘ðÊDPs^·#õWHì¿AZ÷§?o_üìë/ß¼ýÃó‡W¯¦à‡ÿþö«ç_}xû»—ç?ø»¯~ÿöžŸÞ~ý5ÒuÏÿ5ÿêé«Ï¿ÿö›ÏO¿ÿí7ÿ nÚoøáöoÿôƒ¿û„žò -endstream endobj 47 0 obj [/ICCBased 49 0 R] endobj 39 0 obj <>stream -H‰d—ÉnÉ„ïÿSô t±öå:òÀ§1˜ƒçNØÖ óýÕÿb ‘Ìîêª\"#£ÞþñåxûíK<~ùÛ—ãöãÖ[(ýÈ«‡Ùëñí–Z cä#—úšÇÇ-çb›Gê5”Ñy’ò %‹OóÀ.=´^ŽÜCžUï{#óň¡ÕÌ“¯·ß9ííïÄã?Ÿ7½‰©ôÖûqæb,©¦úÿ¿.ª=”–ZÏ ?rȹö¸êñþíöËŸÇÛ_ãñùõøõÏã÷Ûï··/òþyÄPqŸ¥ég-Çñùþ]>$ùðãHGä_:J -32n§R¦vÕ ’Kè­àVc*Ô´bX™'ø¶Zº’Ñ+a¤>‚ƒe›BÏÜK˜«hM™a”qœ³„6œãèŽ)1ÿ§þøï¿œ'²Fžcuñ3ß:œñ‡Œ·£ây^ëéñ™ÂJ¸ìó8+î'\ ü=CN¸ýæ•É1rÒ’>©Š/ó6¯»Éò 5->£¨ˆ!³fÒ¥2̨=Z¨ä¡„´ìJ¼]G ÍèÓcR7¼k¤KÎ’ Ö6N`«J·€Å‘(ÂÀÞòA~zœ×ò<ɈÕ{/~êÀjÎí¸Á»âåUKÍNW³*ãÝɺ6ðzrŒ´ -AÇä®TD24ŽÖÃÂAyRŠ6ÃêNIZ¡òa9ÎLñî]#'RÍ»%_œîû[‚ŽK–’ -˜“_•A ܈µ6™‘®¡â3댆Ëô% iÄì<ç,2+ O4ŽY–òÛ²­4• -œ‹$° #! QdìGê·QùÅR ZœÅXÄ|ÒóQ#ä`w(?‰LgT%W­¨|„60ITû°2§CˆàI›Ì»¥µÄÜž¯qÞÔ·K…£–º¶^Å•Iªd»ª0/+ê–æÆ$›œ DglÆ6(NÎÜBH­.“~®ÆLíùj…:»h#F½WÒš!V¶Y ( ãÝËI1Ûe¥ÄòõêFl¦*:lñ!Œ1/gQB̦ÁMõYk¸K ¸LEŠW9?ßG‡@n7¨ -ñ{·6ƨf¡(x¿t¬ú¨®&—ÒÔ®==ṳ̀I.˜1—úÂ7”™-Ïâ ¢arvãMrœúP}[ÄÙ‡H§¨Ñ'8å%cQ•ù°UKýñ5ˆÌWÚ–ôy§èÀ?mGy8)*í$B= M‘Ë"ö!ãÊ--9ÙB2”_5Œ š”*ÛA›dUWDˆUØxµˆ¦â€´cb9{(0 -À®chªˆŒú+¹u(==T4k}è¢ »RÑhQ·äÚ I+LËêæP”³þ°\ØJl—­Ñ"øÒŒÐö®p±k«±–›ËX[ì@C†ˆl’7ØC¬^Ŧ٠· -%ßWžIeC“¥¤fºäJ=ó$S=ªRÄßz·Tâ6÷Òb"g¸±MÔäó˜P{Òxm)¸3¢”_žcî†ðâÜ3^O`Š8 B$3ª¬-s@¯èpk±a(²gÝ<8ÁqÒ¼1MŠÔ^zXBNTk_6îe¬n7 ršÎ›1]¼ÞkòYRBƒ‹x1³¯µ1•7‡%ѬÕ!œµßÄ”½2™Ú‘&‹)}¸Áªö„®“êÅã'(¿ÿÄ{Ð>]È é‹ã5ôï¼ü¤-i‘L‡hÞ³‚òåkÔŠR!<–X9»“G%5mWßcV’A)@ š€+‹í|{\’÷Ëþ¸‘Ka>ZMž~<ŒM òM£^-°MèÁënKdã½$ÜòÜÒhµŒU¹K6‚5¿Phœ)^PÌJ¬ „iæ¶×j&V\ÕD+{ÊžXˇHë5«ãw¹°z2o7x–¹›º†uckO“h×Åòûá&É©eᙿ$'zâñàç¡…P\!Ö1“Hªô)’I‘Gï+,æ廙Р¹=M(@Ý©¥ä`J}m3–Õ¤n${—ÜêË“¿xÓ®RãÕЈxB È»4õPΧŒuûz°E¥D‚ÆŇúž›ÐË©©hHl6ßÆRx5‡ï:ÙÄåË›dÍËàª2vi·éà@¹ÄõãÉÏÁ5m¢ëР»–àú¸Ab:äÈÖs ¨KG›j­AL½™2é›àÔ/"J˜D€g¨»&®NµPñ^†y3î4!rq+‰%¨|³Q—u†'€ÚllÉ»_&iŸbš` -ã[Ã\ÇN‰/|¬¢ºÄa”B×JÎߣF†îal9%›œqrt'Èé° Rxøí¯»õ!¤w.[½…‚ÏˬBêL•‡sÞš“f•¾§è]3‡‘Ö­gfs㮕¶2QÒˆÎlÑ%0D¬vE³Ì´ªµšƒbÍAxVÜB?âCI¾ã‰R}7ÀÎpf÷eÛJ[òNB©[FèjeV„<`»8Mõ9ÁYÒYw‡-âˆx‚)†qÜ8ØÒpkW»~øþj½ýò¤o2y~Äà[:çñd#7ºJü,º’ê:r|¾¼UW'éêªkoåæ‡UEëâ¥fðªfk‚ÿpZ/ -¹n­’‰&-Ê©±÷°UñàÞôÃÒªHG¿<™ÖÚÏoN. Qi<ù¹?K2)è–a€¾²I4ÒTYZÝ·Ôp{Ë[OƘ趸rdjFWçKf“ÔЄ´$R‡õ¸Î“sÝ ³%±½m·KnIžRRhtí7Úº€œË$eë~Y“m9W%Ù†ºR<“ôkÔ¿s€Ú‡4—åû«¤&xÆE$k+k½ºÔä³{Î)“Œ2 µ¼«zêî5÷cx”bÞéš®ÐQa¶‡õ~áôù~ãTÝ¢ 6wø5Z?Ÿü¥‚£KqpØÒðN/«ëéHNž†õÔ\VS¹â¾¦Ë‰Þ-+J¯²/LHñáÇM -”®>è]÷h¿€[‰y}|l_!¶HK˜”vÈÚ¡˜þž;JiÖòúdGøëo_~ýO€)–ñþ -endstream endobj 40 0 obj <> endobj 42 0 obj <> endobj 67 0 obj <> endobj 68 0 obj <> endobj 41 0 obj <> endobj 69 0 obj <> endobj 70 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -170.0136566 -24.0031414 -24.0031414 -170.0136566 46.3515625 162.2246094 cm -BX /Sh0 sh EX Q - -endstream endobj 71 0 obj <> endobj 66 0 obj [/ICCBased 49 0 R] endobj 35 0 obj <>stream -H‰„–ÍnG „ïóýÓj6û÷jÅÈÉâ»Ä‡•Yïä«ÞÕîHÊi—œž&Y,u÷Û}¸ûrŸÂ§_îÃö¼ÍSí!ÏËhái³Qbi3ä’¢çpÚr™±×¬•8gÃcuÄ”ZàÝY&ŽÖbn!·8SÑóÙbɼÑ-ZÓß·ßâÝýú5…¿^6ë)&+͉°çÂmž{o¿õS##G©=¹…ǧíÓ·p÷õ{ -/ßÃçoáa{Øîî òøItýõª¿ÅCxyü¡L9< ‰ Í¢…š*ºVO#ylU9æØǪ}¦83’›UŽÇS -ß]_~þ±¢ð4”tWêÈ+õ[ÊÙéÛ(¡MîËõ–q‰4o=f"†½X𘼇ÇÍ(vÔÀëtÆr¬Ã9<»¾O åy¯M=:Ì0z,ù F@Z£Ï«ñ¸í+å^ìÓ¶7lå *w¹a…{œ4õi±€ÛÅ™ë´W›ö{ŸÁ3ÔƒP#RyždN…gTH®±— Ï2m `/'>J>ŸU—ÄŽÐ%ì‰Ú -ÁÉ[\UŽhÄß©°u(³‰z­ˆŽ±ÙÕR¥4¦÷«‡ZM@rÆa9œY kWǥѷÎ1_ú0… žüÖ»l1ÓK×)ºTRçÄi£Zqëà0 [õ’I_m¸yÞGvj“ª <í—&R6æ<×ul‡õ—BZSHΧf¢ÂµOÊz›äç:ÞØ–5çKO‹3壇ž6?Þ±—¾žÝ<ï«)êÔå#ŽRó\éÓ -~¾”Uk¥­gkìÏÇŠÃqÀŽ°³•ƒƒ\IQ[­+1 Àßÿô ÈüŸ:¿Ú:Ω Fë9Ãö5!†8ÒaÅ<تICoG‡®<ïŒðR-šeýàøÀ/´[nD–©ûÿúþEe„—v÷©á$êxG> endobj 38 0 obj <> endobj 73 0 obj <> endobj 74 0 obj <> endobj 37 0 obj <> endobj 75 0 obj <> endobj 76 0 obj <>/Shading<>>>/Subtype/Form>>stream -q -0 g -/GS0 gs -170.0146332 -24.0032768 -24.0032768 -170.0146332 76.0488281 162.8457031 cm -BX /Sh0 sh EX Q - -endstream endobj 77 0 obj <> endobj 72 0 obj [/ICCBased 49 0 R] endobj 33 0 obj <>stream -H‰ìWÛŽ$5 }¯¯ÈT&¶s}Ý!!-h5|@ ؇$˜'þžsœêêšÞ!Á,¦ºœŠçØ>q¾?…‡÷§Þ}u -ËÃé1…ósH±4ó>5[Ïç_–‡oðùççå× !áO‚vL½)=æÚ[8?-üô´¬)Z®¡Å¤>-#¦dASÌ©BÅ,H‹# äËOˇ¹þé†ùOß-¾ _bAêpÙG,{0ßj´ -})%öv°>¯ë+ÍkXÝ~çÀ¶Àê+ؾ¥/cû¾÷Ò%j7õ—^‹ÀÑ+ŒQíòžãh„b ÄVwñÖï·±zôX¬Ä sM©Ðð\ÎÒÂo?bõ-üL¹ƒ9Ūm¸^×.7dz0-ùk¹}]åð>׺Êã"çY®ïéÅk¿¾NÌ8u®æFÚu?–W -J{bÝ3¢U¤€HŽÔ4æ^©üîEî#-@¡1rÌ}¨¥¼­‰dÙê.Y¬9oðKL ‰èÓRáWªÑ±;èT…W-%|*ðÈ8`µžb;c™Ea 9x\F,Õ‹'‘éÊ1ìû9»[jÅèöÅzƒgPk¿ˆ˜ êìRöïUó4Vák¦~ÆvÿÇô_ÓWNGl!âwȨ`ïêZ » [’)* ïâGÞ@tv«×¯ÉÙf™ãJ¼ t·1,dY>0&_”Rýœ—AÌñ[µ ÎIB ºÙAw8p–bÜOL¶Ël&H¥gì§Å ³n!X·&©!¶HPé΃_½÷{ìþ€^Bõ×`½jýG ~±…;),¯x(é¡B º‘2–ÎèeÞ%,$³f·¬é J6'WXSJ#—Ysï)³µÑ¡l"bE4….ùX•EŒ*I¬TÀ>ì¼UØê€U‡‡!<4½ ŒYtIÊþ(pÀ㑼QL{Þoåȼ Ù×È;8Fbæ½2鵿çÉ}I7*­êLÙq\2zòÆað‡gÃ@Bkĉ\àO3‚0U9ÊìÛ[/#H°1ðÛÐz0—b•”Ymþø™‰¦ì -@]Ȉ  äJ÷y Ð&2s‘×L¿9À-VÄÇÓ`´± ´Ñ|„]=Z›h¨:©l_‘}ÊóLqþ™û tnVICûÏ>—»ÜS -A¥¢†æ|T{Y¯[Å]Çç {àņ‰†ëB¬‡ |Èœì¡LNá+k¸ë…¯ìÕ2q´J%ÖHq—Ø8Î’†RgwEÆ“õ÷y:’>°¶¾Ed¨/ò!V—œ€~œ,º{ÏæqK©U.Þ~º¥G©8Ѥ£ ˆØž:pƒ™´õøúí@rñXo÷.¬1)p^©n.=@‚æç—4–_ž¹¿½^îdëŸÜüÞÂæñ,þúý)àçb±'ì -endstream endobj 34 0 obj <> endobj 78 0 obj [/ICCBased 49 0 R] endobj 31 0 obj <>stream -H‰ì—IŽ$7E÷q -^ÀY4ÎÜ*Õè•Zj¡$4,J¤º?ÐߌƒÓî‘R­‰Š(c¸sø´güüôã›úôÛQß}ÿ¦=Œr¦þÛøãï_?«?ŸÞ>õþUmÂgJŸÖ¥¾¾ãçÿâçß¾>þR¤ þHYO:$gY«s*E½ÿñàŸþxlV§‚×ÕtôIm¤]öjKšBÀ¨:¨÷Ç–²ÆC6jƒß¾ô؆æ0jgŠ¤cÉ{Íc„¢‹UÀ¡ßuÊîOD£3?Ñ{ñc´ ó2ÆïeVÛÊ=Çë‚°ÐodˆŠux¨—KQ_'`W‚“†¨-V$OHn‘Åþeî%é˜j‹ƒ^h(šgqâdF_œa#v:{YÚhÉ>ó<tá¬&,×l˜‡óùoÝô6؇©‹Ñ°Ò›01ä¥Ö ¶-`Ùû8­A^bli~ìÚöLò<Ù¢³­›¤€Sæ$#ã{⑦ ²¯ií–†`°yó¾s,Ãîqlëk-@ÈB<Ä-F•x(Þ¤~ ¹ÇüF«>ïO‹WãÞC‹§1z‹"\~¸#%Â9ßÆh-–1\MOÈÌU¤h.qˆf™¸åX÷¶iÓËU‹÷rF)J‰A¹‹¥µ0€\ -ɬ Dâ*냫“âbYönÜF’g €îlšÂzJ]tk!‹7¨®š~ª.êí3ìÿ©Ïoÿ»Óí˜nÇt;¦Û1ÝŽévL·cºÓî˜~|†gš ’á‡qèYËÊ퉌‚!¸ ªU#±õ(¨¥(·^*ñíø|Çú½”Ïf :Ð3ÞCM¯^¥ÊÕ‚U¿D bwÀeŸó‘§Â‚á}q L«ŠAä$Aÿ…s>r|‘Mæ’Á%ENÇy‰ÚZõ0W#$vã‚s6J‰ÁÂXùÂ9]?w_ykôZ£5“(ᤈ€¹ÇÇzš¬6:1†«½©ò\¤’<ç:¼‰XR ¯›Õ¢ê©#WÂ.˜€{ɬ(’²g›`NuÙXµÀºF,[4C-Q,mã¹Ô‰`8ŽÅÂb—X/öð^–‹+# Æúˆ^0€‡õµ$ Už?Ëi6Ý:]éô”Q°ƒ®Àf:¾-Á¡*sü™OÈ˪‹ô ž{^ØÁ£ ð¨—xé߀w$àåkðÜ!úAéélD·EùР¢S™ßŽu~ -–Žè¥g¿•:Uj-cd‹v‡³ÅÙ:üíPñ+•¶ºQa2”Vò‘½ä‡ -ä^ó»kèEUß Ç°UD"×j~3 Ý&æ1ÐTòW;º­5[‹þ¡æ¹ÙŽ’º6í·R×J=e›‡qõ:¥ì> 0w31ò‘À<Lj-öU° -`©†âŒ¿Ðøs§ü…a'fü†%UGCºøÑíX黨ÅþÚlÝ:]éôt„u°E2YÌ ³?À·‹å(6úÜDß°¦“s¨Ötåüš>§Ž®aÆïH_lôåá¶åzSésã~#ðÅÝ8Töâ9{4³w~¼e:—é)Ÿ¬ÃD0b½çÉ;¥.üÁ…=X™ /ÜAƒÏ/ÔÙnD·Ù‰†Å¤3wʼòxô±—ºuºÒé)£¢Ñ© ¯zËqqf¯ÊÄ¡œyjü5üèÜ$äŽ_üÀ#¬ôÙ†_:z„¼x„xîÒ·z„fêë¥XknaÖ€Ž‚÷xÐÅ&XÕ¾^€¸^hìr£Ym‚; èFÁ.(}B<ÜgR'1TÓ«û uÝÙ…Æ"&ÏOÀ[ªR­y•¢.Ç,9 CîäJ³8»qž“[8š…4ô @:H ¾à·Þiâ‚`^tA{í«n¡.…ª9õŸÞ¾þ/Àœq§N -endstream endobj 32 0 obj <> endobj 79 0 obj [/ICCBased 49 0 R] endobj 26 0 obj <>stream -H‰ì—MŽ7…÷u -^ )2ø¿u{0+Ûh1hŒg²[÷ü"Hf’ìªì. ´1‚ªšQ™üyŒ/øøé—õ駣~øñEÝþ¸åLý¿ñÇŸÿ¹ý[ý~ûôò٨ׯÊèH Ÿ)E|’ J}}ÅÏÿÄÏÿýzûCYeðÏ* -EûT‚²!ëhlT¯¿Ýø§ßn›ÓÙyü¹%Mɪt0YmY»ìÔtAðõ¶•ˆaÔµÁ_zÛjï 7š&©hµ³VA{ãU4:XtçœNÙrÓ âH[ïzÝSÒ®¿“Ó¾ŠNCG“$×@r2ˆ¼Q–¢ôŽ¹´Ö«L.í?{è÷wkë躵y>Y~uXgŒšLAÏEgȃ¶P›eIºX¯’6˶úE§¬•I]attNvàÏâ´)±F°P—Uñš /Ú6…Þ}pG›¿)zøaK°¡í°lk0Ç°,fÙü’õ:c†g2¯ö褷qj3q‘gbñd´ØbuÌGBØt{híaˆi Ù{èùÚÇ8ÚæöÆþÖWSžmÞ·K®c ©+RTe¨mF΋r YD¬ñ5Bš±fhsÝKdêñg‘-0‚ yŠPNÄds*chhsa¨lõˆuØ2¦‹ßæ)C.j×It«~‡¦8>CBʆŒ‹%©:ù̽ µœÌÞ¯aÉœs¡F “á=ÁwX $÷°aû¼$­H$`ŸŒ? u´-¥ögxGyÙX–¡PT˾çˆì˜Lœ»<Sê¨mº>)Á§S‰cÖðñÅ;ÕŸàÓ-™×ÛÇ{¤e/÷`†ìæ1Xþ>€ÉO„**ÚÁD™eâÜã\$N|ÞìñÈ\DìùÚ®j¦Z/yd*L²ZI0uÙ{ÑðR\{Ù%{\kNkõšÔšµd! ‚ø.m¿ÞþUíÐËgøþ§>¿ü|YŸËú\Öç²>—õ¹¬Ïe}.ëó·´>ÿ»}†ù9œŽ/z llO>œç<Ÿ—í3¦¨#ÉŒPæ’N²8ë“SÄY^rRz«¥"áü‹H~¤—5´œ‹˜n´xgª,;G9²h›µ$àýЃØ.{ž-‘â©z®¨½}ÀY›Š{=°g‘gËYÍMÞt¦+’TÅr‚ûPùÄ“6´o7xÅK®Ëõ&¿~-Љ¸$'fkwÒ¬•—"¶3Q¢qþ³x›èÆó¯ºm"œÔb/JðBC;±ôªD,E”à -]ÕÛª|õ“ aU¥åŠj‰nª«ÖDcÍX”&ÙÖ5cɸÚuÑšf]2Q¬¦ž¡¬jºÝM¯K­SµW/:TÜ=}œp¤Ý„c:åÑŽ<º•Ç2ó¸à˜VË“8úÿ·z]r=W½<_3îã(Çò€£Ÿq¤•Ç¸ðø ŽvÂ1<ÄÑÍ8úÇ´àXžÁñAv]b‰µæTŠ|³l®àÝ{0æ -cVM*#H¾ãÊb©,æ·,îVbq¥9‰ÜX¤,¦G,âÍ®Õ+fÝiíºäzG®5¿PãcMv(gPKàx×IøNÂ?‚Q:hä«_ïŽtâ%ü=3iæ1ÞÅq¦1v -Ol×%Õ‰Toò -ÖÔaìû Vwã ‰v&1‘xÇD<¼­(¾qáã{$>eº.½žu]ä¶è?ÈczH»‰š¿ ã¤ýV Ãäj&"-Hºo­^—\©`F[_?”ð™13õõõ÷Ña8m<á0HÚfØÎYE¤ótÌÞu¶®á µ‹qm÷£æ[ñÂqA‚z M¾‰|a'µZ×mÒÏVLw£Z¼ë ÉæÞÕvF›w=õb—R•Z‹Y!mj'y¬ P\|k½ ε³9Þ‰öà s1“¯Hê¸AªVk;îC¥A-Öuu®kõßVç*d¦v°b,˜ßë¿U³q=)f—\ïÈõæYY ¤3Sö4ŠÏ‘X¾™Äø‰áûÕ¬K§W,|[‹§î¾€Í³5YÖn"&ã)€ñ]Ë x?­.±NÅzcía -aŽ¼C»u«'i1öEæxp.«É¥Ž0îw¢cšíƒ_h yòQ->u†1L0ºó»ã%×¹\o¯ŽÀ“àúU¨û‡8I§D†´'"Û-¨;šDš„?wiA2Îþ¡ß„ÿ&"ÓùÝñÒë\¯‡쾓ø‘OY¾Èø á;Ö¯K¬§ª×]7Ña ß‹Åf'ìl'höiö÷YŒï°XéœÅÉu©uªVÍ®üô¢ðõ—‚(®  -endstream endobj 27 0 obj <> endobj 80 0 obj [/ICCBased 49 0 R] endobj 15 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 16 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 17 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 18 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 19 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 89 0 obj <>stream -H‰ì—IŽ$¹E÷~ -^À½Hã¼í” UKj¡4,ª´êþ€þ7#éž‘‘¥ÚˑȈ 9ã Ÿ_þòæ¾üúæÝ/xsÛï›wÑÛÿÎÿü}û›û÷öåí«wïÎE*>k-ø”˜ûþÀã?áñ?¿o¿»à<þ‚“ÔŽÞzt!×£´î¿m|ò۶ǣEüÚëBq»÷väXÝ^´õØö–ŽD»¾-C=|*Ú.GlÕµ£ÕÌvGèÅ•~ÔœÔàŒÀPbp{êGOú<—¢ÍèW¦tŒ´žûÃûæj<ª¤³‰é0:»›¡ElSœ¾]‚kíItté2›èž±úÐ×óŒíb²ùöhž£OCÁ0€†°WöÆZr>Z Á2{wÄØ]l¸që,rq!QÙt= 'è^ð娭iÌ‚sJ6†uIrø^9Ôf+º³ -± î€UzÉ—vã´X×4`›©áy² 4Ì„å¢Ýá2Û|˜$ų8$Ö£yN0 ñ·ÞÇ!úÏF›oÀ/%_:TœKc[½0¤Ol'oK -ÄÔÏÔ­BxrÄi8]_G³‹…G”ÛòöИ¹€¹/œOÄ9[“ŠG¸ñ\x6Mc%òíÕ†[ˆõ,¶¤êÖ{À2s8§˜î kˆ:ýêãq>ü‘Æ*±¢†0Ãrmv˜®û— -Ÿ¾S0\A[áCjÂkPSa¤ó$BéjÈ)š¡õÓ0üÁÇKœ·ç>GÕËÅЙUÂô 3Áé Ÿñ¬ ±‰jÊË n®}àº)Êe”e8gZ¦€ãVn8eF(¸Õ¢3M:\¯½âñ#6æÖ•×#L §%#ê™s Œ¯«óiv:¯ÔxiÇHË‚‚µfòó‚¶%Ciù4Œü—/¦»ë8;Ž‘ngÁè5KM v'<‡Àqyºÿœe´š“ƒïgì-¥5&_.4àdŠ¶£½Ñ®ÎÕ.…àâ^)W|]½ÅÜΓyŒ€ÂÊ3~=6t¶Ú\mQï°ŽÆÆÛhrÝÎ^óú÷Øþ±ýÕêãÛW>þ¹¯o¾ká] ïZx×»Þµðÿ§þkûŠjˆ¥Î»bá]±!«ë-ñ¬ˆY«$¬S0òw¹”D®Ùe|±ÉàÌMð¹J|«F­TEÏðöêÈyÕ~CÉa¨UKÂ}Öb0X2íVJz|rS![HØ$^ÈQ[ã%63ËÂcKùà#®O!T2* -Ž‹Ä#|yU4 M‘bu_X2¾ü8/~ŸŠâ†õ“°Ìå.j •½L)Ⱥ´p)&qjZ8ƒVPuc¸Ê -}ñT¤eÝ:e µ+.Ô¯Q§‰ P1CŸJðB—¬ýGaÙp¤EXšæ he•"ĥŮZ¼vóÞJL«gÑô8qoaj®¾ô®×ÿÀõÁ¿°afrê©V©½&/<…E†ò@IÅÐU?=ê åLL"GGÉЖ!˜‹{$è˜u_ßYHí‘Â€Õ ð ]¡Ð¨ù¬åµxèOfë†8¢ CÄá­ˆ0AyH,éSHiªF¢÷–¬" ´ÑßÞ§«ëVrØSÖS™^KJî¯SÖÍè£gOjûAÚ ¨ü^¤_)íUlRKRA¿ÉJ'Í*ü•VÒ…Z \º·œ‡(`BWbÉe“–ƒ˜µ¼*þR\Xàœâ²M'(3Åe2{ˆK#¸œÂÒ«Áx®°äj ,»B‰J•KY¥—þt“úœÔ³WQ.dz.´aǽæ)Ÿ±§HY}¤qS mhËé(ËLâ̺¢5|„‘ÑMÌ|®a%ò!4¡—¡dætS–Òƒé“δœŽøbnДž9«iMé -ou·Å w/ð*ÎRz[*Á¾ó§Òêfõ«WÊ -žŽ:ÙzNÏ:4© K#LAj*a(Ò0®KâUµ©T“ꚇN˜¢t¥i@Û';U -äV§P0j„–LŠJÊ„‰l¨„!HÑ&47’¹J„…ÌÂà5 ŸÉª›Õg¬æ5±PeaW¨‡`ÏÏ×D H•C½ùTyÖ¦Ñ †×{»ÜzòÒ¥O²ôY•*À`YÝ©I×…g7b¤mDeQzêÒýI˜îOÊôY˜*ÆS–îït©ÅãÒ¥u|÷שìfõVÏ©¬bÙÞ.=5?‡g^· Ë6Â4YX¦¥Õ2qårFø¶í–ú-Jµ +¸<®>iÆånÅ€ÔJwöùØVd&¼q¹û„šZ™!YiDæ®uU‡‰·*€‡˜¬Íäô¼óø˜e~½r­Öa½ð­œ¸Hf~Éâp&~e$ƒYvƒ‘"›ªâ’ô‡¬P^iêŠ8R¾h6ƒëÄ´ONŠ…i*‹äfX’‘°4•E·ÌLYà€,$MXŒÄ/CY ×{aa©ÿT?ÈZ7«±ú í‘ã[C|©\ýˆK¯Îø{')L±¦¥(š{/(diÖ{W9±Të;Ñ:S¼iÖk?E¸HV²j¦XMCV¿ˆÖý½j%®‹fÕlK²þŒº¿qý×F8†„ol áñ*n½žTq;í:0oFíðÙæL !rtªWÜo³ï–@=KA̺±oLÚT1#ª©TÅ„\¿5¹¸ñ3´£a:|"àˆM 0"°9¢ð€få©RÄ)ä°‚¤q¨#ßò~µsŠ® -p¬3ùDùÈýu%¼}ôÁ‡¨ -Êq€£¶DJˆ‰3+ššEAùlÓe  iIÖ1ê~²^x ‘bä(jÚh¬æžSo“!ÁLJAÑFÏC±+zѻֲ•Æ¶¢Ú••©ÍÑCi¥eIvÄ^#sÛ™8.FÔ?rO¯ë¦öSÔÌÛþøë›Ã×áG) -endstream endobj 90 0 obj <> endobj 91 0 obj [/ICCBased 49 0 R] endobj 87 0 obj <>stream -H‰ì—͎嶅÷÷)øâðÿgëv•³È4âdapfá×Ï9UE‰}»Ó¶—„Á´nQE~¬:<üò×÷凗à¾ûþÅ=~y—ƒþ?øç?ÿxüÝýûñååkp¯ß\ðµgüí•SÉÎ}{Åí?ãö?¿=~qÑü‹.åìÓìÓÅð\oîõçoýü8’/øqôÕÜü,ÕÍÇ1ïõî^G¾ÏîÐMkÃýt6”âžGCÅ‹Ñ ¼Ÿ ãâs,®O¹ £Ð“ëC¢àK(+x}TŸ{]á”{#ùŒÙXÐq'âA 'f0’Ó·fÃ=ëP¿òÓµ5 áë<_²èìqÅÍ·)7ñ‚0*£“Õ× @ ¾å¾¨Ù¼‹†^å…:ýìòXŒÙ\«>ź5ÄÔüÈIÞé>Ö„–îgÄz‘>bŽ˜]ÚbôÝd!VKÁœ1Ø -¸G,Ÿ8Fö[È‚ë؉ÆÕÁŠ¯Oœ-Ñ—4Ðåô½ NÇH†Tt$¿¡-­²Ìt"3[v-øš4t@È­Õ€'ºäK¬Ý÷ <„±Zjêlé9ÄX–¤ù÷ø\ÍÕ²V;¶(t,bkz{%JìQà¬û²„×ÛnÝ[ƒ&çù¶eîÙý™Øh)>b]¯'P¹²*bŒ±($FCØ+,Viã”6 ¼Òf”ÒŒŠ ¦9¥t“L+]:kš#±á§M¶mÇDØŽJ |ÅÃÏ9ÖT¥%f?[wçÛøgÊÕ÷jéF?ÊØžÁzŒ8¶^VÃõ¡«%¡ž%žÌ2¬}—.†din€‹) PœHI¤•žÏ GAÅI>dtÅ2µ -9cƇ€o"=SßBVg³’ ŽX‡91¡¼°~YuüØŠY§vÞž@ݲÎV|}ãlI3fša¹QT=8¢éµô䜩iÒ»ÈKëR‡ˆ›ÂÔôÂ:01qŸ ˜Cµ_¶DÓÖo2_f¶¾C3Éž*+M$æ»í|Í¢Õ¡…̽éô½ ÿ^?>þ¦›ÛËWìZüç¾¾üåÞÈîìÞÈîìÞÈîìÿd#û×ã+¶²àc™õÆ;~`¤r>»¶³‚äÙ¸€È¸s7‹x>‰^˜%XÐ}Ä2gìMÄÂàS#Pg@È&2¶J¦üôÈ%hfS2·!ê‚€"å¸3ÇÍ¿’ôX&Á5ºˆDÕ‰ óÔTæÒCµµAãÈ»cf='L’©‰,(Œð£ N«]åȬ§Â -ÊöF $ZÅkÞìN·Ø‡u7µßKMsïÂÙ˜¡BYÔºBÅ/Ë$ Š;¯BŒâEdM¾,{myÅ›Ô]­¢@Fî ºÈ²35-X¸cªŸ`%Ëëƒð00²SÚ\4 ƒ¿ÓM\ȱÔFC¸É¾LpˆÉMôà¢#·ÀQ\sÂÚÊéT'кVM/eK´Øöœc ;NKè*á1Œà}M«6µ•\“rŒ'7Ž»¶èNLÍ)5ÖÄ¢t•((‘YVñªLƒDbQ+NE˜e+É&ÐdPÉ‘š,ŠU¤`“RĀ̛°BÙ Ee#à.;ÒªP«Ìwrv#ûCÈÞåYL~XÖf¨°‰ïjó,Q-I–µ"«nM¥˜iå)Ç>U«NJ-©%·U'¨Ym*¶³*›lµ:Ó~«NRëºp­šÈA—ƒ“@Ã;`Æ}§ ª`Eiåxhqb· ¯¡3««,[ý8ÅnZŸÒzÎ.¸5| _¤…MiþXå쨉£’Œ4ª¼ 8š#e—GÍÉRÅQ†#ÆqgÝ–!gp¬âðT„F„SaäˆôJOE€Xk|à”ÅuVîì‘ÓÄ¡µJÑfsBÓ–ÆPé"*] -­ñó×5i[)²n8I)Vô9O7ûãMéwPú(›`S''ʶßu)% -ß` '$ŽÂIŽ9Jj:„”øâR™åÓ#Ô~À6(*‹6]³Ãä&£´flŒc!”ÎÛè ‰g8£#pú')t£y:+ÖN1땤ò鬘jÁkßžP~³?Ù…SÊw%¯N¨¹ÚÂ7:þ$㻊Ïuâ¡ŠóÇ«PMÅãyà/æÎÐ2 íRòåÔ–ªYØÅüØÕ¼žfá”óãžÿ/ƒuû `ïí -`bÂ?:òÉ0\¦ôxãJíÈ3Í–ó §/mË4w<¹†åL—kPgjàhNÏ`ìKîÉ•šc µåÌ’–åâåHŸ ©kËÚyç³»i}Jë݆XÝ%J- ßGNoƒHâ.úÉí¢—q0ÑfJsoŒC„|Ou ñÁ?vÅfTò«úUñ1–mÀSÖ°lCUݧk(Û”þ™öˆí¯ê¸½A#ÒÇ[ã é#HåRæq1µæ[ùÄAt³¡É‚ôœK¥ù<Ð/|Â(1?ù„d"^Ô!äSËE»«J¹œj(ÝÉ™’CO©ÜîPË€I‘O•ñ,.A£0ºxQ/RïJ÷Ú‹¹„¦RžÔ$LÑò®;GL3 ˜:äÛ‰–3‚˜Lñ/ªáb‡ÄEˆ9HÔ†ÞO`—2êFõ ªç¼èj2ý`ZåÄŸí\æé -ø‰ÍLZÑ,jl¦€´ddæ ªð`Š#ZݸƒäÞø‚å=Í”QÄÔxfè{;&¨ä›ê -Ô† -µâCé„+9u¡“Ùu¡]9¥OíúMësZš]úáÅáò_¯4Š -endstream endobj 88 0 obj <> endobj 92 0 obj [/ICCBased 49 0 R] endobj 85 0 obj <>stream -H‰ì—Ën7E÷ýü¦Èâ{ëq•mZäy,äŽþð½Uì‡ÆÅë` hºYÍ&‹‡UÅÛO_.îéÓ%¸/nù¶—‚ý¯üù÷åw÷ÏòtyîúꂯÒðÛZů¤âÜëÅã¿^—o.º€¿è$7_SîNdø’¸ë×…¾.kñ)gÜ®ÃWŒ³fÏç[‹—â®ËÖŽÁÉ´—RÐŒú6š‰-ñQ:{÷èÞ[Kñ£Š{yc©¹©® Ì”qmƒ–ѼpÔ=†!x×£õÉUM˜¤¤zè0U/-ª©Ws2—B6|Q|.†.ÅÖφ}Ñ»eB‰#øXiÅQ|Á zI¾g6p[|&-4¹X!-Zðšf Ê\ÖÃgƒÅ3 `°V¥¥/4ààx)&GXz@)­êK…U˜ºÝŽ+âŠÈeòJj °æÈK;(±FRcD#5ŒÛ¸^ZïÒº®˜q¤µ™'y”xÎÆŠU‹·Ó‘ d‘aÕ0Š )aNð;4SõËc+Ü05HT«×zótPAÄ›Šqð ¦nmämc¼#â€’î ”ÌuIÝ£nÌæËÂùA,5º$ë>¦|z wó© ¿ -èDØ(63Іx7 €~t/†zXäK|“r$ÄnÐ: ) Qn†ˆríʈÁ¯ˆ²õÍ §¾ARFâŒÄjÎYC…œr2l«r¢P)¼¯¨˜T«Õ`™A³Jq¡ËÆkU`Ç;ìbÈN/)4[aUål@ñ~`=¨ý7µÛhà  ?_Ƹ)ðXž^²Éâ€ËÊŽâÏ:OrÙ>X癑S4°Ìóƒè¨ë õÓ4ƒù±iþšôFa—¡€Yѵ²×Y蛩†> ý-ž*¹†ß©"^–ö¬'eU j{tVé“}^Xq×Z¿‰‡ö®æz û d·qÖ²\¾œr,·*5N!›‚PµJ¡8±­&)®Ë¦"T¯ê¹n2Bõª&Êd§$òÔu~uÖÉmת¦$vUAtSU¸©)¨an(5=c ÛÔh6•”4ÊlꉗE‰¹CNP@è¥ß °«÷XYdýòéâpù.ÀÌAG` -endstream endobj 86 0 obj <> endobj 93 0 obj [/ICCBased 49 0 R] endobj 83 0 obj <>stream -H‰|WÁ®-9 ÜŸ¯è8=±ãØÉ–‡Ä -!Ä‚¸°FóÿUå>óf '½s;Nb»ª\ùáOß®þøm\¿ûý·ëõÓk\vƽ˯òï9ïaóúñekÜ£æ5ýŽâÀý:w|žŽÝ™öLžµ.ϺWŒüãõ×ë_¯¾ýe\_?_£ÿ×âÿóº~þÂë?àõß~ýtÙ5ðÏ.Û Ôu°ÏÁä/jàhvG\onr÷wÜËìzû=ôh7æbp–Ïí×;ï“ûòÛð÷ÁZçúzÍ{åºÞ†ˆ"¯¸Ý7žÖ=ñ÷Àœ·íÛÇÔÜSÜÀ0¾.ì‹3¿£ç²{¬ãy¶ÿz½ÇûÁÂ[§ä{dKá$ó`¥‰ýNqöA¶9+ïD0oâ+ñ¼ïð>Â\üÇÖ|÷»xî÷1LôºãàÃ@ö‡i_GÏe›_ÌÒÎØóókúØ8ža½¹t~Tï0>lÉ\¼×Bx„º‹ ¬sŽÏ… }q{iÄ J°êÞ ÉBŽ…:]Œ£Ì£@óL`îè}ö>ÏÈda1Çô òÍê¼Y1faã$Ø70ŠËØO'¨' ë.E‰|qÏ9•`r¦–l·ë90Ž--‚оõ…†‡2»YcwSþŠ€* - -xÖiœèÔ²˜(@ÁEh!`¤ïë…ä,$Öqx;×é q¢_ g…Z÷ ÕGö±ñÖð6ÀÄ/ñz#9™˜¹îÃwˆ4BŽ‰u'¾È®¯×ß^~é×¼ü5A ÛyÆ=¿Ò¹sÅXªÜBµÅA[³ŸKI¾íˆ¢ŽÜ*SÁLA[YÖvƒOKaÏËÄ='N éZGÌÄÂVO6X¢_–Ï 9'±€äíãX7g)µ9­y:XžIp 9ÄY8ÌRÕ<²‰ê$(‰Ù<k ˆ&ÞVˬ²&*ÿÚ‚æzŽQÔàÆÈ(Ÿ7Œ¦ F•IˆåÒÀÛÒó¨þ]Ì´SX¶æ:áò^WÀ—›_‚¹"!ɨꤘòcw.wŒq¨ YjIÂÄù𺗢ñMÖy¦‰}ã|æ0Ù~—0a ¬½rJ¼ÒˆpzÖ”yY2 ´2­x›Äû&S€~¨Ê<Û‘>P•éOº>Í&f›è¥)¼B`¢MSqVnu†Tê@"Vª7¦èÉžMä<¯'ÊMþlH6N.v€)‚‰®åý•ÑÑàÌ5E‚ɶº0F6UȉÃø>ƒâÃôm¹KF¨Ôù¡]ä[ºòû>l+[…,éiŒÐ!4ÆÓ1‡lŽjk;NÉ\d˜VtI-&k„ä@Q·`2Rçôìc žqÌè<»2"Êç ½¡lÿ<—ZáÊžM~‚ðÖ¦ОìWh…O:RG•lJ†˜³µö½›’;…?gåÀét^µÎð§ÐQº>fZ8{¨Š7±j¤qäò§ƒƒ¨x;,j¯WË´,›5Ú0 ÓúA 2¥›¨fû][)÷οöã•PzJ{(·Z‡ÝÿëE( ±Áö\¿á¡nÓzöQsïIq-²€š®Nô¤Ï¡ÁË´¥n`Ã'|kÇŽ29M˜L·÷Þ-pˆs3Ÿ©46—sˆ )4ívÑÀµ=Û}óÃæC.=ò=ÙM7…"•®jè¶IXŽ%bÊËÑB•¦K=Ue|CR÷Ûñ§KŸ2ؾ{·aí¶Pf–#ÕWPÙ@•’/ôÐ~ ya®‘0‹_X΄r „ÅÎõÃÚ7NBlÛ­ëåqÙ zh`må‹· -<®lÌÔçµé2Ú=èã˜ڢ ‰_<Žšƒï˜ìöx²€Õf’é<—:èy.'íR Ö*1èºH9öèäD·§…P=]æ‹U°@ˆ!ž†åò)!ö<êŒVÖó4ˆ =õ’>ºŽ”\Þ÷ž. ·a¡í0嘩6æ›àK†F†æ›[òÌoKNoaÕñ€™öW*è›jèè’¶¨þû9 -t‰ÃÑêSE@RÕ»Âu t º“Å# ¦¼S1wÖùØxØ£Déái£/!ƒýh<7ÆéjCÎ_·ÐÔ)$Ú¼O…h&Y)ïÉVŠÑ mþˆæƒXA,«Û÷ÑÅ‚ÒoNœÑR\ò®ø0:<ÀçxP-¬)2ÓiZX'¿@ÈNîÑyYã¼û8˜¢6?½ËEéf I[0ÔEh¶¶=g¢FžÎ#»¿!ÛÇ÷Z0Ùô ˆý~[¼EÑÀ‚‰6q¤ïýò±+‚ë3„Õ¶¤úyG‹WCÅhrš)ëß„—;š½Cs­b6 ùø~¬G©¼ÿÔ8¯~ÙI}»‡ÝdUnY‹‘æÔÙòOjP#µÂÝ“‚nÔÑ“uyS¸n ñL#è8à©ÊÁ%€<™"^’~ M6„ÛÃý²îß3[J}öT‰…M:F‚l5W{ѱ4\ž½~ÖC6±4©ã—®˜ïbÖÇ@V [¢)7wÓ?»S:¸Ü÷ì¹X 0ösÊ !Åê«z1gÌT´6î¦Ñ½Ê;L:ZŸ -åÖ•‰#h ®Dr¸²ªT¥ÿõð‘ hhû mÿ©åi’”Þ£.Ç»:YˆAWWdÒÚòš:vG.ÒÝ` ¤_ærùŸ÷t™ü@\úíƒ,R'IØêóyäªäüî­’‚y›)qñ²Z2ÂN}G?`T´‘ý”^*vØÖŒ£^$–þ%jfŠAQõtR=ãµçõ^PØ–£ZKÛwÐ;ä_iaý0¯³ Ù7O„´Äeê²uÏK9ŸÇ |QUí¢¤Feõå:¾;JôÃJÒ¢ËnÛ]Ï Á4Î×—†Õ±–TkG œ u9›U ÍO¿Ù,©,6¶r£pJ'ÃG°Þ™$éDÈôY×ê©vß.£53èÝ<=+œßn,!¤€$Íz%âè~ 5aáùØèúP Š,ú£Ù­jÕËŸ9ãf^¬Ž+Q¡º¿KóÓn¡ ³ÐN§^ÿ¢´ˆó*;ºÜ_ˆj^Tu{-œr”ÄàXâÖ6Œæ²Ú€tó¯"Y’†2 ,Æž#ÒÿrâžbÍÁ<æÛˆ -4ŽB7gø»Ë?ä@øÃ×{~\5ê‡u¹ú Ó4piæŸM³:à¥çLµ…jÆõ¯˜Sƒ/•}›píñ¯_®—#X9M¸õXéuγJÍn§Q. aü—£WÏ)éº;Íuª@wn®m£+!XS8Æët¼@Oghö"¾-·=8¹Âß9“Y¥*èƒ.™%„Ê;=ú2ão&ú¥ þžc–ĘbØ×€Jî?Z O¢»-^6YG«\0´Ð5Ù´WóË"&#¡úƒë·üvYfRˆûrHò±Â¨ÞD€µÀ '«QŒÈDL£*\ÛøiPª)7ÎHîaBz¶ôqÁC/¶íIÓù£Ý7Ue¹ÖÁiUö°[¸ÌaüÌr§•OÎpë9“Ì—zëëvÉ8}®†lã=Þn°Fÿê²ÚxiO!°ÓPûl;Ò)åþ Çk†^ýøìë=^c…ýôþ3ñ­7®êLZfÄeQ&iYR¨å´k^1”øüj¤^܉²’y<•X+ð¼ø³Ä¶Y}}GbÛ®~z£àn·ÁZ÷™ýáÒè‡vüW‡W‰ÿñCŽtt†n]W %i·ðš;)®Ž`ÿþ•Óìy’,µö¿l¨DC÷.ÖcHF«Å—O|T7†í»éiÓjsZ¦Šÿ®ŸhWbÁ±IîöZ‰\´l._2"ý4‡óU=J·°§k©Ž;-§%_ƒ™Pºu³Ô•üÓ‡U<œ×»-îOÆR×Õ‚³ßµÅ¸ëçµÓíF‰;=Å°\â”®+EßÅäž¾Ì8Û¶Üd$ Ï͸¯¾ón­bVíº›Ê~Aš|Gêîµ'£v}ˆ%ÈÜÓ:fÿ,÷óx°Úö[Î…ÝýÞV A‹»ô Ç6ßãkxï - -ĉ•iÖ¾ø‚Ù‰™±>ýzÊGÏå|òóçéíÅêÊíëÃüƲ3ò)>ÙÕ_Í™ÁNV»sˆ=ÇQmÚà«ãe"¼–”¦[Z_®qÒ£«Åë–=b^ö×È“xê85}ÃMïõç1¦HÄ9»Óå*ˆÝ#*8$ ÿ·þÀãBfÂ,M¸ìmû¨÷ ìã=ùƒÕÌî½²üTSköK(ZºaÄWNhé*-8ÜzìvëúXþ­šj߆åB»¿îs‘ú·¡ãÉîñ+4·'DÔIK§××€¤ÂûöÔ!ĉ -ñêXˆ[^\Ñ6HŠOË/6`ít´'>")ÖâO@êÇÆãŧ]¼ò$ŠB(ûGlíÇÜíÍbªËZÛ×ñë— `1‹c”#ãóßfp9µ -úß^°»‰ ôØw²,˜ìJ:hi8úšBÍø_}¬ªÎ•f_%UGƸJµ—>u%Vvê¯'¯A Jª5Ež§ ·HÁ]÷ÜëŒI%ÇN®hJšáÿËœ x__é, Qªò|&cÖ¿qÈj%³¨Óùm[B||X̸xŽvæ µ·¢û³s¦}[蘿¯>«&Ö 0«‹Êétoå<ŠQCzäst‡ït¸œtmÎ]™>)£}äÆf-g2|¸>J¥ÂÀàâ7xK AñÝÕlº¿VŒ{îàäYsXŸ_mžkžõ è»‚G⟫uãš—ÇeÚ,ôcµ&ÓÏö|ZªËïn1ä¥úVgT‹‘ó3Ó‡)­ð½5ø6èk0 UQ§Rín†Ê3|F{s5­ÓôYõ“œ/­Ø.­04é;6×\é믱¢AœÍú{zö ãE©À5CX[Q3µÈû¡Lw—>Ù®@ãeq¬‘V=°åT@DórCÅ\IK 6°¥c’‹@Àur±€j.nDG›ò‹5uqÒ–Áêý¶ {´h³D‹þú‹µ¹Z”ô”PDŸ5gO7دé¦@;®YÐ -&EëV®hrõµó»ª%(ʤê=ñÓ¥¼Û—D‰’h‡õ6ù¼Bw’+QÆd/X¨Uµìùõ?¢+aDW‹hö¸Úƾ,Y´vxuµÏáÖ -¯.¸òÄKê€ÚL\Qa´RïÇ¢á͇·ºïbkåSHˆóc«eTpÅꢟ‚}‘BÓÎÉÎñ÷ÌÑŒ è>øß–€5§Å"vKþ¦yÛôZ`Ìå -Ÿ´²ÛX#þd¥.û¬váí¯vʵ ¬F Òbë‹I~Cʦ+lëfæp8ѽQ±Èê -ª$wjêx/œÏ±r­NmÚÖöÜ{sÎgÕ=ô°çÅ骢¨Râ峈»è1ìHG æ‹yìÏç“ïü ÛtÂhœöì uKN@­ý8Úü³ý¾^œÔ—¿ÍËšÒ ZHêb2tb>“eƒW^ -ñT³¹`¼›ñ™}ãñpÓ&<[Ø¿º‘d‚í;ÆB÷ߨ ÑÒ×–cûÙ¦ŽÃ¼‘p °Ï6ÛÊQŒÝkR%xa1ëåCï¿qÇ ¥Æ·Þ)_åˆ`&hîÌus¦jÎmŽ–iÍUê×GVTvé2¤Ñ‡zµ4#˜^õœUŠÍ §ç“Ù^ßÜÛè–n€Ÿâºãgu¤D‡ƒk=U|f6s?-Ü^ wßtn Õm¶û6ùvÐ7¸ÀuPåPWGꩺ¸Ëo{¯c -ZZõm=„,ÅP\… 8n{,t~|+àÅLlðñ-Q5gáÎÅ&C“ü¹/nsö1%¬UÔàèÀžŽpŒŽæ9U]Ž¦Y‡À]\yA â ÔÙt­ ê=ë5õ:íLGD¾æÈÀ{i{pµxõØÝÊçö|ê£=]u7êŸîFñ©: øŸ½GžÍMÒN1}Ýô ±§6õãVJ5m…¦KÕuÇ?õ­جîÐDqTYË¿“ ™fØ)8ñu§‡C’Šõµ?±ó 2?î[°ºÔ²ËJ|u¸ºÅk”§ ÅI EXD1ô!DM\ñ¸*“øëGO6Älئ - a1Ǫù¥ÝîþГRî½~˜ømÓ‡ÖˆíÓÎÇ#×&D™ µuG ź'–ÚjèÓ+Wá–,‹Õ BÝß8jj¬Ø"¼éyã$ö¿/w]’ëû½Š»;Ì÷Ö!›¡\C4†îP|ù7 ŒõwUeWežsâÊ-Žž?™3›Æ8Þç¯YÙ~YÃ.ÅWªcSø£‡ñ§p,²írW_­Âä±¥›µË9ñt&tä”|ä¡õ¸Ûmñˆ6¥³®¸Œ=µ€,uÌ¡ŒÞ0ZU-Ÿ´‰Pœ0%¶¯õh5¾BrÉØ·c–ÔöÐâÐAj½‰4kÝéד¤‘¦‘Ò"T1ù_Öòö¦Õäç˜æ­½Ö‡:Š’ٙܚVOÏdû?¾íĈè÷?$Û» ‘D+ ðí͆SNµò R¨X{<«F™^FBŽ …º¶æé~ :ñÓã™ê«W÷d°á€Øéw¿ÆU†ü—ÝÒ°94®(NHÝ™Œ´8]Š‡ƒ™‡u›RÝmZ`–wøˆºÒ“,AÚŒðÄ©=¹‚Ót=V:Øg}ňŽ×“#®;a¢)á]‘Ê:³“!`o4šNÑÛŽ±Z>N7\”ÀâÑ4÷äÎÇ.ê+ÇjÞÅUÅ1åÿìÑîwû×Ãkp ñT­åC½ïëœÑørbLå‚[LcC$Yc&>ØŸÍŽ$Çi–q!ÖLjw´Q×÷Y£{æ+@%hb`ÖÙUŒÝž/ÙVfö<í]a4b¿K¢œ¡ÒÜõF#¤ûÞw$¡ )>¹xy[˜ú¡ -xQuËJµ‰ ¡¶bMÂÛ"Èbs¼bg.áo×ᣅáu$ŒTFäg'm9–ªâN¥ÌhÜï8öô|ýþÿÇ¥¶Õæ…^3Öý&ñ'¼¨½f«  ²2¬jâe&¹€×ÃnÇÖ_²ó¸¯Ç6#no-ÜÞHqU®‘µv›Ç2<”ä“qÈ@ó{hO³£”§ngH:>l©TÝ_±DÄW¦Ð¢ŸØú¬š³úhµ»¶z0æ ¨m.¤²›|¿ºvÓ“óò½¤uYb§-õ(®b‚ÎWM¢;βVßkÎð•@nŠAïcøñ8Æ6·óû€tžá¦ÁÉ|Ñÿî$ˆ6:"Ðöòže@ÖÈæ‚r‡rrGL4¨ËàW© ­´ë¼7K\¼¢ -Úî~juອÊy$;i˜óœ×λbN™禤Í…Ö°5Ö“LVXÇ 6—]k^êãÌ祀Ž:|žèlP=ÆÂË%o›7ÑEˆÿ«Œšä ´$Q›9Ô‚çB‘­³Žk›hUPΪ=æ¸áò@ùÀBh"®-¹)XÇ«:+êÕâxô¡Ö£tIÍ16*s2”ãe8ÒÜhmµ_ùàÚ쉲D;·.;ix’îSêd9UrEÛɪ s‹j-e¿Ù|’TNbÀŒZ|7œ|3î•_,,{Ôµ%‹Û\À…²#È)A×ÓRkfVA'Žÿ£’¡à‘³ù,óµse >1¨R׆ƒb\Ku2ká xb‘Ê!êN€ £,,ÃË»8rjñÐ"©®r[±·Ã襓*4ÿD`qÐÆvBk)žæ²AÝsÏøB²cý°¨æs'jŸiœÆŽQÄ^iì˜Iv¯:&°=±ÓbðãöZLd7R±Í´ø¾t‡vHBm¢åÔ«‡’0¡i?—á&%FáH¹xAcf½H¨¡ˆ`·ØòPŸÄ´Ðë äÛ|0mgù5‡׫&&󶊅}A4ðz~_:Á“îìªp^*0Lš½BazÁp×îÛÑ€…[j–†²Ž¬oß‚&DIÆÈüïÕ0BG}T—= ÕÇÚŸu½GYB‘¢¾¶ÿAa¯g1DâÙ0©RéÅåAÒˆã›GGóµ<:úèuf9æ&FŸ”Ȩ/s <ôëKZk&²}Ç"'˜É–JOBªÓ!à×׋×c’yÑÔ Û -Ѭ‡$>g<Íà™$7üNƒÑsœ'œãVÞ,4Eoš/Ëì8‰HX Qã÷™Õ½¶àÎÒí”Ëtôaa j‹…1襫Յz¤w·v_'ã:È_y2mêðýáLÓP#š7S,NÁ»ùå#Ç—¬À;¾Ýp3n¦f5qfŽúå *ò°m‡}fO8b"BºöJ4Wu{½ÚÔi²Þpgܬ§¡2h¢Š0ý6bà™>}µ>7±ILûÏùg‡¬-÷?`‡ãnv•­¾LÔº…ü×—$l–X\ѧã¡éz–›YÐfu+&wØŠcŒ´ç cãÄõüÄLKÃ]‘ÿ¶¶·ú¢Å‘=JÔ‘££Q p÷g\îûWTùâ8ò7IQ0îÆœö¹v8Ö ÓF‹«¡º¤çÙõØ×–ÓÂ(5Ç -RÍ}›׆oa] |4Le<^¼`¶Æüè5ÚmOÀi[[©ð˜<<7°\û_Ðã—rKÐw´°v20@~ÛIb,‚85 ÝcÀÿ<µ|Âežhe‰'½ 5UeŒµ@©š;¢j?êÁæŠ ß,’xW\í+õ•°Û™.Ëõ(qò|ÕáuÄ›àÁ`}ánÕZ׃M•÷Η9Û3«åDßÇË¥büž¯>žJæPvîè‹;Ž»•þîø\¤”Œƒ|e¥5øC²(ÒYƒÉòÁîÃäý„í$Û¸Q'ó$rèI½ÅÜ$®x“­ÿ\q¤¶“=¾‰7÷hÖ¼¿¸á 6XbbU‚™Qéç¦ts_ »‚ª}l¨g8tHùF‡dkä®i·ŠìOO!2„ÿqRUËz‰ßÓ*Í8›Õ;¡~¬ÁeëÅqš>u¾ErtJ$ZúØßMkŸÉ=0u:“ üw{¯âèyQMJŒf¤Ø“:qì 9ÃT¥oÞ‰A“ÔÍa Pô/‚#°¯`ËÏ'ËU»!I’ƒš!øâÒîè®*¿ÔQD¶TïfÓIÏ^¼(O>ÕL(i»‘*„£žäRÛCšªö+¢><@f1E™Qq#ò[O‡¶gù5žžu½ÛC…Jxäj¤[®`ÀõË{ZH…àwf€”ô ?š˜õÇXõbŸ'žu=oÕ<þ­E] ÊqŸêÏÌŽ™Íƒû(ÎD¢±zIôö*ÇDîÂ{Ü^Yr«]c5ÉOÃ.áÔœslVTàJÂ@gØêÚ{©uŸ¾^&Žôºù6ê©üYš -¯[ -?b»ÛiíBUc’U>‹…™` Ø7g0¢ë 0™?”<è=5c9¡±šÛs(–àE[šìpJšït^”z!oÌ1ª¤í¯/k #–ãµEjwˆ6X…Ê1-}b¼)Ä°TR -”ÔQ釹)¹C1ïwH‰w”ùô„í¡ßkëm~hþ>ŽŒ´YÈ´, \ô¤&uj›¦IåE±g,:ºñ«K`|ºñ4覆f ži±ï\™9ý­D8Ü°(œ&UË^ÜÜLyJí†ùÕ:V¾H\é§Í;p,× R&´9žbs¤Z¬­HX¢Ÿ[+º[›„2wÔÀÎ[p¸% OŸ`5ªW.y®F‘%&m¾=#‡°€¸&p(Xºijú¨ ¦h½Î¸ÈsÄÔï`üIö½C'¼šÞ©L4¸&„pbc0e¤g›&âHn¤8'w0 Õ‡†€ NXÓéP’—ÒíWŸÅÑxWÈJÒx“EâìÑ-ñ;9ã«ÚóƒèÒp²lãŒaÖäxZA -v/imàü¼±¥!WÖ<ä¸jCÙ¬é`âãv¤+Ë•Löªúo«N6œ\kro4ºµ}i7ÅXÊÝq¶z´½£~Û(K˜ÅÖÜbÉÜÌy6uç1+­hD${røÑä‘^ç™ÆQ>6½rsßß«Pq—ƃŸ&h$PÌ+#©¹#ÉñÓ‘¶<Çä›)‘fÕ/¤æ-e£¶v›%|ºÇ]âʨÚЩÇÓ¸…à ’³ºužzø©fS‹Ôt©ÒܪŽL©\eêË»Œ.°­Ç GÍJZ@ã8uÍ߈£¨6¨’Rž¹z‘c¾žt¶Ki’ä•l“qu†N²I·.·Š¨Mö©v²Юóõ !‡_înA§Æ÷u­åÀmÕ¶ºóŸö n}Ä"¶Çéï\{…”Ë6ÅFÕE¯)b½¹ÿÒ&_ŠIAÓ(´íÈP&)Y„/ÇXŽšµÜ€C¼¢È&R±¹h¬U/ÛvŠ ]ý§ïBh´Kî°s¹iƒ&ʪ)WC6–Ì Ðòx§Ve¡‘[Ø@,B;álr=(Ü&6ö¦Š¨Î¹Õk;WÉvä"@kþ<•K82աڑ哼Ÿït,tDRÔ/|)‚. Z V=0é&*& ÏÈ·‚¦N§HaŠ@¬ucˆ†Á$~Ù§vjëkôwÎÛžfÚuW'¡¥k!²¼uÕ×[×3Ú¼áäIô&ÊfŠvÉlûKUŒgÙìúÖ -Gº0G­{Ö{ò&¿EÙ +Šÿø©C5¨Ù!ÍL©R¾•GéûkûN9Â?²³æü©jnë…žD‹þ„n{C}΋¨@²Ž¤{×Ù ü’¬½¼„ -Þ­œ^£Ž½/'BZsM3Ò ,RÆRö‹ß[¬Ê‡#õÓ{/·ûú)CÊ:ÁEYÇMž} -W ü¸­[Zéκaëõæ¬A¹Ò…¬8¯"‡8pF‘ÊÚUÊ‘Êí^•z49ü|UîGàOÅÇåŒÅýÊ~Ç…[¿>Ó‘s+ï{»ü —Uçñ<³î}[í=îymc ˆÅ•?ÿ¯•üüøßÇP^ø÷íŸ}üýͶŽuÓ˜à‰¥þ>ûãÏþÄöƒó ˆ¦Íg^Ýà'š¨Õf8”4ßè^&ÅK\ΓG<òZðÑ‘Û÷;Œ¹“¶uµ¡s1Å«üše x;Ä9•Q¥µMÐMp” ¹=S‡r•)ý,–A²†T±l-­ -^6v¶ñ’÷þ"OõLëQ'I©O<ꌚά¯²`ùŒ@—•ÁÇ’Æ Å¡—›Ï¤BlÙGFJjÌrT^Š1% Æ-Ńx¬=Úp$x¯%R0¦äXg¢ ®'ˆ7†ã“V&‡Ü̱{ æÕ³±‡‘;Ò&k*žÄ/ÒØgðÇ‘ÄDò£Ë -áè×–n“pÙ¼ë Ù»×ÃÉo)ïÉêwfOééÁêÂyŠ£·Í0É -ÁÏ Z™aïnÿGˆ¨ÜA|5zÁ£¡t>Ø(ga3Ê\§-¿fíÙõNœ[\¯J’Kªº¡Ô±ï‘ØÍsk€™¸ÒÞï7ÒÅÑ*ea„ŒŒm²œ,Ê)fé¤â“ì9•{¶j±²4­ø_oÛ_~¦ša·æ±"#eköå€3ø¼@§Gl€Ë°ð!gp?*'Ó ½S'½”_èZJLï2$ÃEJÐBĪ'ápÓÖ‚fÄ yå·tñ<ï#ä´%’]¤3´0 Àc``¼´ûžòA}«®%7„ר¶f1G¿»üëQ -ÐToM̾Shxs÷h¤øú[f¼fÓ%‰‡/’ªˆ‘=V -[Ã"PëDë]Bd@ø£·çÈ)ü>pE7ž¼üMHÆ{â£øeæúÑºÝ -‚¿L -B4°9¡MzYþ°õáçüÆ*¦ØdüãmI“æJa´Ù‹VÞ Ò†Úw³ïPãYŽw¥†ó³…v€‰å$¼¯ÞéˆF„3\›¡sK’Gò…®´(n¦§`à¬â:9\pÇt`UGf¨èQ×Ë&Ìk,RF`ø÷]¥ÅÈqÈÚ5›Û§¾cêó¯õ­júWÚèP·dààT¹²Ûo:×/Èns×D¾†Eúñ!¥0Lß_Y¥Ç¸è.éÄ‘*‡y¡‹]Oí/úZóÖ h‹ªR¯Y£ræZŽÓu=ÉXkÔ5ãÓD€@tOèdOŽÓôá[& ·¶Ð\|d¿À½^qή64N“»ßŠÛ¼"›eͽLK¿a“ÜAÖLi—ÀÞF«ÖBx\‹Md£³"' -]˜»Ó¦&Tþ‘BhÝ -ÒR"ws¿Ð¢˜Q¨ÌÁ‹61î̳¥š!²FEÊäfÖá³j“ØO1ï^s¶§p­†eAæz¿ß·„èfD ĸ±d¸¥Ìg}&¿>CØnÕ ¤áRdWd³Ð»=Tè3ÍÊÔš'+’R¶l›Dt‚Í<£3Ž7ò«Ñ­®z5|Ü”÷àX’ ú–1âVêÝ[+tãNYÒ5Ã.ïHésÍ -ùÄûF¤Uíf Oz>ùп§ŠT ÉÅVôI^ö¤ÑŠ$½íPõÏRm|Ù|¥ãͨÊåK©B:UP Ô‘ý-ZÎÇ®M£n<ÜæÅÏ:zZ9µç9Qùªsf‰üûHéXŠO.2·Œ´àŠÅQ­¤7…ÖW¨À¶Úx!u½¤àõY¢aÜϬ@Ü(ü¤+CRðì…ë©žÐW 2–OæÏ¿lWYŠe¹ý¯UäºÐ<,ÃkhðW¶Áxÿà3éUÑ6E*ž¤+…"Îpb>°Œ¢ÎèlŸ.¦J0$$ÍŒÀèùPÍ&½dFoQg…%êÃìMõ¤P{¡ßŠF©ìÃ#ã“uÔ -îÕí¬”ÁVp‰+yZ ÔIiù6 §üF±PÄâƒô¯õ$øî&ç¢I£ÂéÝÎÑ¿“ôè)ºÆijïÛ<ªâŠÚGÃ+áÞm)ŸPìR C¢±ÑsSNbOi“*Þ§§íÀ[áë:-\ãtiÏÆGnSCŸ…Ê€á†K]ÈÕ<;@£{Ÿ¥²³ýuüÜè2¨äWeBZÔàDU­Ò¤O†]å -˜Uìv>{CbšµÔֆЇ²™(©é±úc|nÛhyõÚU×劥ñ•@âŽòo~ø‘ }„v¤òëÕ¸ j€²ï -¬tÉÝ~uå*¿"?Ñœ‚Rw4ir„ÕeGµ*©øÚ½QµÝY®HÖñ"Ðp0Öt͇áñR¹£H^aؽ‹,m -óî@Ûv\)dJ÷bèºå£fs1Ç`eÅ@³#˜\­@9qûí3Ÿá*p2°GŸ5ËÙ6šg+9Ž‘ µøŸž³ÍšÏˆåˆÅõ¾E£ûŽ}ål}=µõå—Ë"‹ ZµÌ©;nnåKµøÓµ~_±hÊ¡rö•ŠNÉÀe+äÁº±S%3`Š§0{hgÚY€*’‡žQ╬q‘‘såoºu+Ká\×17%(”j×gŠé¨4ÆNýçqñ'æ҂㊅?tmà€‚{]ë,úÚåÿ–¿HÃøÚFĬ듵]7ÑÿŠÁð`mҤ͇¤ ðònÍźÞÁ6³dGÓÛ’ÕkF“ˆ…,ÎóæwiLi ‹¸÷¬1„ ;>+¦´-¡×9©£-Æ9&v³ -úþœ‰‡U k‹³½k¥â¾/Ô®C.zÕã*µ!»ÁºËSJ¶íö¸ËÒ£ÚüiÅ"k Ìœs¼o‘0м+Ÿ%‹¶° vT0Ë€¾P­ÿ.„ä8°…SM¼Ö_6!…ï¥Püೋµ•åãvFÏ>%v‡2žqc³v­ Œ·èÈF‘h·çÜ“9Ò¨´oÕÛƒäð˜?…¦çô7%–oRÃ1°>k†T%dÚ^–ÑüørèœOhH›SÍ=ÓVEkÐkE. “9dþ%±ŸÌ’ZgD¨ÀаÄ_dæ•UÖ­S=©ŒDüºøc‹ÔðÇ}_Þ~—ù³fËêÙé ÝidGJ-kÖQ<›Úµ–ê’—õ<û+eUJªG@ Ý)´ÁƒbD-^ YY·ä|*ÅÐñ¬ãeçòŒÜd5)É4ø¼è?V’ ‹ß?5Ùô³õ”2åYhd¹u´fý¥& -Û÷:²_ZpO=§î¾”Û±¦ÊyQ†#ñ"Ìfû³3RÍh£á“¸œø9C±¿¼s(IpbÑ£ñàò¥DÿÕs½åW@ìù¯kÀ)Ö´ÎÊvdè<É£,Q™ôd<.¹Ç‡ë²I ô—ïRü1Ä–lnµ}Qä¼H5z±xò¼; ¢KÆš¤+#ÞQ*ÒS*ó³ì:óGynŸú¸v…úš^ÏuS)Vsý¡ÖL ý¡(•džþÞWÈã‘K3Ò]¹V ºÔÞÙ1Zì’•â®*,ÚÜ“ÒvA"²ñÜߺ;½ÔO `ž°¤½)"ç¦M{õí «]¢¸¹ˆšB;ÍÝŒe(Âà{eÕÞŽ^ªg¥®iKæ‹œAû­;;°d ÂFN8±f™iOzj½eýIÁçIÍÅÚž„#µ¥yžýDlWÒžÓ‚î}%f4å-ûSr‚s†ƒJ, ²F@ʈUÚç±KßœšÚ2H`Jè©Z'†¿ ÙÙÎ…¤*õVòÐÏ'IwÕ‰= gðø”ëG†âiß:j™“Ò¿)ýËœ’®’SÓõìæ$ êziù’Æ5b¡3rùêÍ©&`Õ½AHJpÚWpŠŠ–"&10_XÆ3´#:ÓÇMî“Ÿ¤Xn}5üK;M±-kßM@…­6ËGÞŒ×jOªÝ•5³v:ôƒÓÙ$ÌG;žýe¾ûù¸åÃôçˆnõÇgmGmÊæ}ª·Xê?Øâ-Ÿ~6ÿR-¯ìD¹ò,Ç÷þøÇ»Iò0ÿo Š¯ÿüù¯ÿþª_ÿê$$0’Ѫ<Úâ¯ü –e+ŧ£¾È¯M¶å›¿ùËõˆ!*‚9¡nR]¢b;ß­va—ˆ‰gÞ†äRW§iúâ°K·A…K­=0ÙŸ "EÊÞÅyìÙŠLg ]+™FÒQ•Ð‡ÐÕÒj,ëòÉÛs@OãXuÓM¸˜vƒ:'ºqx5”ÌÂ0D¾4Þ,;¤9?Ö%ñojxëðìF1Û㠊˨óx£:X˜¼ükz±ñ¶F¼Æ÷<"óðiû¦>¸2çN‘‹€£!‰TªýºÙ–`Éà•‡4Ñah¸xCŽ¦ÀýÂ.Ä_®E>Fqr¹·XsgèTði -ãx$'ñ\˜>Y#¾Äl|ý®aô.`þfಘ:3¥ˆnýJéHaAÁq()ÃÎöc†ñ]ò0?¸Q½&§²r¸›óÍg“;øª -¬/ è!qr1”¯TÉÖæJJA9ï,÷-MÍSñ3è«C×Å, ÑùüÐ.ÄyOWßÍLA%Æ)ùf‰^Y#áØ?™°F -Ä·!kÉ„ áioA¨à^ì*I`÷Pg6 Ç( ´¾Åóò°·¥bPÖ9Vâ0j–|8ØømwÔ{«A¦Ä &NÝL´À\ÊÄÆq©!˜~bÈÃ| ÉŒ„õ‹ÿþýpÿ¾~}àÔ¿£ß”,ªS‚b#ÑOz»A€(5á_ Ž• L1Ä´d*öòEüßýÈhÉn%Bñ§Üånþ ˆŠBÐU„Têf‰›ºÂH3Ü"<©MíᇵL'áÒ2÷3`šê‹à Áæ ŸêH·Ø–éÐØRÏ×5fÑyÅPU+¬ŽQõËc³ÕOÏ_íÍ‹2’ -pY-£*ÇÅ¿Ÿ?^×Ô°Äü­áåS]Ó4ÛݾTBB—P²ê¶Vˬ5š©æé5¿oòÞ1sax«†›ÒX®š~pÿ©€Œås×p õÄÉ.³TI’+ˆþ÷*rÝø<,Ck(ÐW·@hÿ ;fžO¢ á~³sËÊ·ŠùÛêKæWV柪S9"H¾»×t}c2Ü¡S–ËË:³ìíµÌët“c{ÐØïS„Ì) -ÝxŠqøygŸE ¬”ÀýšÜòäi%R7±¤”Y^oíæGµR1jQö6iÜ3¢†t¬Ú¸GàÇr< Ëî kÅŸ©¶Ž³x¹Jü·,Ÿp$¼ºÐ"P÷ëßö´À7þ]NÜ<\庽Çq]qÚ}?‹=‘‘aÇ–dR™qXÝψAÇ.B¦;óPb±a¹†ð±Ü-$øLºÙµìï]iê ½}ÕRGîÏêhmÄÛ‰ýºÙaS1®ÇsH½¬¬7`8ŠÊ²>@%äÚǺQOªÿ”#èYv¾Fz -Ó.IÉq3æJ%ë‚íìØxvèïÐÞÞ9ú2öKHNŽ_|*¥MþOò“»é]0«ÂOÒû1YÀFÞ€ÅW­w‡mXNñ…PÅLF„Ò;ÔÎœâ&ãçöšy@Á›M’¿aüY+ 5\Ħå÷©×ÉÚ滽Êê·šÃ/ -l5h»$ô¹R•oÁ]ó -÷Õ†¶öúhé²®³<œºþökÒ{( cÄ.é^p¢÷¶2ò·qB9[¤ÀoJj:½zUq|Þ[OŽ„þZGµnç­ÉMKÉ‘åª=é’Ð-VõeiÚ”‘cÁåüÚÔXÕÂ˪®ÜËTh……ÊÔuíÉïøº¿“­ºàý¸Œæï›UEØô’Méû‚>„¹-f~ô.€fsëà@ôÇ{yû ¥¥Šþʸ=7ðå{=Th1ÏÙ©/Á‚ë b*-^Ø|EzýÎç]•üP)™€$³ÍQ[#L9# )ëE‹o€§ÛhnÌÌúG•¶ìëzvÂKe>|²SŸGnÓlAõ0ÂÆ:<‰W¼cÍG‰×Þqã˜âÚcÈGìêÓ`ðÏ ´¬ËÞ°MuÔáýºAÿ‰)ŒXPEðóe•SØìD@Ž s HDæøÙ¤§ÚÆ£{ æÉ óæžv2÷9b’UøÝu&òE,ñ…msG¥Ž»™9Š.ÎÌÁ4ZÒæ)QE‚£JËz»ßI¬¾ŠØžµ<^ôfûÚ𔦠-~Êj\Žhÿ¯´ýùÛßû›šQÒüßT÷ŸýúÇoÿüÔj(fÙª·.5h•yˆCþe¡´4âùJæv’ Ԅò7]/›‹ÅuâÁhŠÝwÝs0í'OÍæ¤5î‹J:Ùš‰Ÿû7º*ã„ò_[F ~8çù„gX:oAQl>d`R°§û>Ú_™™ICþÚgýÖÐoë;yRS: ÖxÍ¥èÍdX½×UäÃ*ÆP¦VX¼§ ^…¤.Fâ'.Õ-Áu='UEï¾w§r»Ó&Õ H%ìÈü@Ü«0¸:%oEÄt.¢§è+"%}|\7²r'è¬}gá%zrØ©uvuÔŒŠ k+ÖKÔû²Ñí$ ™ó,Š+À>cƒn«vmÖý>ëÙon]þuÄ…ío :KaË<8cvÝSšûÓ,äqÌQ4ø8ý»¿[GÞ²=eÅS%ÆJèËô‰.õ°”ôP§#7®¹kî§i?ñä¨Æ—n8ab"QÝ=z6槉Á¡\ÎïÖ]¢Æ¯t䜞½·…b+´QÈñØü¶ï] ̯Ð5Ѓ!bäÞf°Y;†7&­}3HË4qGLu%ƒƒ 3Õì©-™B·ÇÆx¡rGík}<§ÜÙ¿v­Õ1K¨gßȵ‹ï倿S ¶r@‘šY`UÏ?—NÔ9 nR£Œ*Ç"Wb:±4¯’jß™çˆTœÉ×~5¸x¢Ô¦+ÓIU7O³²ÍÔº¯ Œ XÔÝtO¨²ô}¯†P¾IÒØ)ˆ—Ë–G”¹i¢WЗ‹½Þ•ù«9úDzé ÷°q³%Ì|ç ü¿™2žà$Hç‘]r ·Á@¼ýúƒvûXÅ2ø–;¢}ÖZìòxšXö?¤Ú·ßGsuÐ0h'Ï×`‹ÿ8ÄW5y¿îüŽ-«¦Qpöת¢~ôfr¦ßÿrã´SxÂ$à®jcr8b¹Ã°KŸlÏMÓBŸ9›BuÊÑÈÒ4×spꆂ»>çlàQµàMòðØEŸ jz§}]âé°§j•ãÄӭa¬Ûñ°±ŒW›ƒßL/dÖdYÆûÁªÖ§° *‰¡âjÑn~tl6zÂ!yÀ¡ kâîËB5=ñžï;T=¶RŠ©ñÌm$ž¥¾7<Â</‘%;D!adóÆjûqà]ï s©øäP›O¶ü¼S¹ Fö*ÛÃñzsõÞ“,¡Šî -jNR©bÌ,q¦LO|/,£¯'ë=/Ϭ­½õ½%×}gºPËŽ{ÚiììÐî{aŽ5Å ^õÅ%Ÿ\'"š“—î>¦e©Ž®}ãñ&oÎi/he5S^Éìå5Ð,Š—…O³!"6ô¶àrÞ@©Ð”‡©…©­Ój™o ÿ®N÷%¿˜‘5Ñ®/Dt™áQs­NÓjßHZAmX#ýë5@8R6WdoÍ3pf à×Û¼ é‹dè}”MäŲ¡“4ŠÁÜR¢ ºO^[d‡0‰$ëO€‰è›>VìÂÈHEŽ¯L>‚ŸCÇÁ—¾ øeÌûúß^vcUµ¯¨‘RÕ?`2´(D%ù;1©-ÐDºóTb;³BwºêÖeÔ,=Ÿæ“ˆ¡% -o’ÚXG8¿šG~ö#¹‹r+æˆgU?/«Ö"㎭†¾?Ì¡› ÏL­Ê[2˜Åª†zZ–)4‡Oh1ö-ž.aR‰râ?—Z•I«è®ã˜ÆAƒÜŠž¬–œ°vˆ¡@?5ÃdßõïBëƬæ”Õ£ï‡jÝ=ÝhÍ7̺Õõx¯Tc> €åÓé±ßò™ý8¦¬à¢ù QN€^ãÉ6<<$%Q°R.c­f”7'àŸIhæß©Ñû¡Ù2:*à«Ì5°ÊÜ…þô$˜süâ—9zÀ·ÚZ! îCãrÞ“ñ8aìñž,J¾h±>xÜ,¼¶ Ù{¦¦zÒ™í×gÄÖ°J Ljè÷{á~{ò<¸Ñql‡¢¸¿ßÇÇ“¬á AÅŸ-o¾9|¶ƒ\ œ¤@„®n)©Mßl*äá X†ÂIî$92cgµr‰"@|Ù7Îô•¥º°´ÏÌJ°sš*7¶ i%ŒÕÉôq >¥#–þ‘(ÛÓ¶ÍBx<„€¬³¿h¤yÜ’4{î^¨ŒD¥Ÿb¿îýX*[­_#…Ä—1 6 -¯¯ö3U#Õ +ÚÍ“S™3 –+7>¾B¢åYÖÉX¨4Æ55ÝŽÔÛŒåu³>àn!ðK¾‚™±/ ö$YõщŽ\1xÔDñeh¨;ïŒéƒ†y"Œ„N6 Z1Ê5zÝô²$B1Õù(kC#Ýb$„³#8mÂÔåTwÒ®ûud)e[']ô>˜>%Zï¬7vóiÜ}ÓŒç¾Ì´léѸdŠø|dô|\SZ¶œ\ -lˆŒ¶îÙÔoá=óF‘òÆ*è)Q}Ž§n]Û㢴aÿ¦¬Ì{rÒ81SõÌŠÖbrFËïõìäãfE15–±Ä%ä¾z~/ëc‹, xR³ç¦yúƒx„Õ,4Þ×'W·Ü˜³{^lYóOümù©AÝ /DTœƒKQ¡~Wf[…E„¹ÿ•¢ÅRkÀÀW£‰;¢<ôÈ@á­Ïîj膃ë`(±ÀØÉÂqЙ.YØë f9˜; µ€‡¡f/°©S¨ÔX›r­ë‘Ÿ*ºlóŒÏóåf ®Tü4œjÐ`óµªn_m3š'½F…/­Ægê·Øùì2»ÕûȾàÊ* qýîñ¨ýÚQõ„“ -þyGXTM'%ðvE™4ÿ~š\(vX]ä;òaì—úGØ ‰Tú¤ C ‚Óç6³U KÒäÃÞÍñ[ðl oÏÄ3›ÖþÖLˇÉ0zl–Åu72;·=’ ^ í‡¡…þá“ýƒ,Qòøpàø³qG•åŽ²"‚ð ôbv7Ó3’J6lŠX””VI×›ºå2†Ï–YêÒÄÉ‘xÓR ò¿JÖ—±}íqϱ‰‘ÞmÊZoãKÝ5™‹”ä^Ü„ko{…hëà<Ù/ÏÛ£˜7ògÅ ÔsŸý 4¯˜#‘x{p2¯¹èŽö £® U‡û˜ ë™J­?Z<ºª‰vÚÒ¬ï# ¡ÍI%½ËÚ£ÊO#BlÄ*ªH˜êÅ„Õl’(ƒÞÔ?¥‚ -“Js{h¡«Æ­˜¤Ø6Šê43úû7¼!XÔŒÀÛ´ÿ„·Ø2¢ÍRuãúG3v$ €­ß#d°lZa™oG'DŠ"ö„ku³,F7h„—Õz&R‹ÖÖÛŠ gêÍêt;ùêGvØ‘šFxîŠBp7·¿EôŠ.îÇ1™^>=ÂÖb©ïÈ¡,8AZíWnb“À§,¦çGüÏ€êÕ£µ ·¶þµa5ãÍN¤¼;Æ¡Ÿ­Ñ\/5£!EÿD;NÅM|¶};Ýc7pâUÊÍDhl Åæ²r½hFŒÆöH¡ÑFZ¡¹SD(‚Ÿ–/OÆ|ÚE¾¨¢•V=ÖÂÖWuû»¿ÿ”E~™Þì=%¾ÔV&%”gCßÞä€n{w©MMLI„2PôÒ«6ALðà˜ª•]7(lMë–Ö^Þ\+=ØþÈ8FíÖl6Ë“äcgùÜáÂ>ž‡ ý½Ívdd5Û`lDcUÐeÛlÔVhajº ,áöa”¬æBn4!®2[+%/ßpauV¤yìq -ûxý?í\ÔøÖZ:…»ÔxÚ@ÒÞ“[0ê8 -O6wÇssê±þÈÞì¦Ødå+¨±ý9AÊáŃ©ÐƒöìÉÎòv¬#&¤­°÷·|YwëA~_;Ûîp¿åã¼£XEðàz÷½î }ð÷-"«ó묞œ”Ãf£tÞ­f£´ìí3Zé%œ>J¸Máz'?ïçì½ßÞÉ u áy 0k˜Éÿ=b+f–rX0®=&ˆQâÐ0Žû¤FaT½“*Ï4A¤V9°.>Ò$?">±C‘ eNóù5w';nJ0^²õEh V«¦0ÞP„ðk˜ZÜí63I -ëÁB®^?™#K¶{žc.#©Ü[:Ø·žH˜@o”¨®ò¡ø¿/³ÔL—#ˆ¾kÚ€LÍÃ2¼ŸúŒ÷ŽQj®±1~iuýßT•~pŒ„WI£J˜Ã‰CBo³Áè¾Ðzv4j¢¨3&#Ç”áîx`¸â¼ÐÖÖV‰'Q—m:âÚlç•ë9Xþn¨~w† pÔ‹VczXmÓìKªfö“ÆzXÑFNPÄ‚¹ß›×©n}Öj[ûz¶Pæò­Ç -¡uGPÏÉ\Uy÷–lÁÔ+xâ{ókÅ3-Ðdeh¶Çª½UaQXô•Kk<Éõ~Ñ´}=6=Z¬ÆÊkqš^ûMû}´V§Æb5Ó@OÚÅrI# ~¶»mæ»­«=–ï]¶gšÀÅÕcþص»ß°OÝÖ­¹kÛE‚¦C>VÌÔ3ák&Uœ>²#²Ï属fJ$}òd}~¬á¦M¨\íe=¶m¬jV%d´0÷Ñ×µ:ÇEmþ®Ý·®§ ˜Xý»r+Åž±À¬¬²ZŸ¬ÇäêO>Ob7½jlw»Ó–X• n{Ö£­Ü`NŽ;'äÈúÙc,+QÅ]LSY^:%)nkn½Úñ’…µ­SgŠ2£­ý¾’rS¹úß’6g}GëTDNö§½ý6ZX¼D»bKäõ¡×%hÆèÙÿÕgûªWíÇc¬‘õ´™p{‰“Њÿ÷hÎÔwöØ…W9\£ÎpoUO4rÃáó…Õ62Óý'îÎN;Ê߀‡¼„c›^d“E¢|i¶lWì::ÉÀÌrT§8vÍ£tÞH¯ù.ÒjǽwW½iê¶KâK=tQ@Ò]+Ž¹ØÄ^úÖmkö·^tiÙÕÄk°ïíï’Y -žþ\a{ÖaS—ì5ÇoKg#>íÉnf*†íڸᦓbFÔ W^]Í€"§zM5ÍAè ã«I˜¯XÒ?éÒªóäÞYªsÚ<¼&·£°ï¿}üõ×q?‹c„Û>?ÿùý÷|†÷¤ÜÑ+÷Åcª|på‡ÚÝÍ;뎄Öã.#o8QWrØà*fËìО-Žž;úe²áwPM去Áñվ泗.ô ‰Ê;Vþb<‘øC½¼ÏöF-»Û5éu€»ÀN¥\Õ5ìÒJÜÞÂ]Û% Të:jPj;ïêΞØåÓ韵ÆXnúòéHkŠÞÍo@=ƒº{ê-õÆ£¸ÕvÜ“(r‘IÑÉÁXŠ9ø»ûZ„æõ0±N4G,Û"©GR&ibUC_Ž3jUX²U7ò¼*1åF 0úšÇVÇ2BGfC`<®mx+ÀeþœÎ4Àh€V¼,þ -Th½Î~ìw×ï"$´ 'Pž¡–ç¯0 Ànö¢53NKï$ßëç¿0&Ao€Ñ‹{Ýñ{ mI© &í%‡:âïý”àŠ%—)žñpÛmÚØo}‡ib„Ço\–t±´a¤],¡ÉªÜløÙ4ÅÈ¡cSÉ ;V}Å×]— a•Â•Wx>­F&Ç3ªUm¦hON·^¹¼‰B‡îÄzk-A¨bG@øÅjK3­ÚYgŠÇŠ:ôƒy[û>áa¿Ë´iÝQkô¥FQ÷q(…²ÛøA»L’ÊNôð•ò6”ñ[%­¿à€‡¨T¢gMÙÕáB£¸Žuì]¤˜ä¬H*`֠ݦÕwåÒÑÐ4kÁ™M^tEo°MŽ§>·$æè}>š9z¦·“ôæÞQKÜyÛU]uÁ½kuPTÚìC¦ö®ŸñHé¨z#›Ò;Bªë½ýÄÊyÌÉd&&vÄiqPôq/×KyNô”ćʳ¡ð8ûв!Gº„Ls—*mÍo«‘–ÒÍ oÂÄK3Ó` £c‚©û¾aÙš£'G”[ÿ1i¿þ_ƒ«AiÚƒ¨RhÒU¸Ÿ7hÆ1 dð¦´4¶Àè°ÀÝô³ã;kÈ—¾Õ)‰õY/Mêwž8¡ÙW­×_žaP57XÙî¶à¸ä^¨˜Z¶”ýtâë{ç•8 θDAM¦_æ…6ëËÆ·:¨Š5£ãËDRÙ3r2×z¸§H»ÐŠ €öC¯ðJÛ÷ÏâéçÚvU•ËP·cyýþÀß:jãYòêmwÙ€êN|YÿoîvEDõj|Ìì][\[Ž¨+.Q×Ò>çÛãYúþ_ÞU(#Ù¨²s«ÃJ‘N^5΀0pœèÇíz’!¯Éô*™#Ì -¯ûQDg[P‚­g›•þX]iË1¼¸KçHÄÄ)-'`Á¾-&ÜŠ™U¦˜X­û8^__ ¸qZÙ#áºsëž¾8†/žëÅ 4¿5©u]^._$Cm[]-FþßßÓ »+°¢ŠÛÐâôíE{&¨uoíÅ5æ24ÂL13Ýð–ÖÃH·èÕaïçÞˆ8ï1ïßG›¯^Óºð"ñ­Bòñk \øÖó*io琉G‡› „¶ÛËêºÈç¸2*Õ›µЪÍfÝ^õs¼z·æšó‰;ýª¦iE«hö§¹íòå^ZÕëý”¼ö˜ä÷i嵃¸#›UY‘IFÙÌ¢¸Rð˜Ƕgþ„Ñê\PHüò¿˜.w¤)bçœâ¿U–üŽ)BNAÊýcúky)¢]ïÌzX#°0u-‚–¬(èã´ÊóÐ~†¯>BßÍûŒ’¬€V³¿{IHÚ.q¨Õ­U÷¾û•@ÓÈ6F¿sLBìc>ìûü> bDä­–É«UQ ž’õôÕ¨§Ì¢ ë?ŽÇOË•uRƒ­\ٗӪ׮*Ëé³gñ\dzõ±õ^ãQé[úÚoÓŠsç^®Ç‡t‡KifN]ÊSTŽl°òËÁ“Æv«d$ûX™åGÃÛ´QüÜàgU ê -$!I@N¨Ìe8¤Ÿ#É0ɼÇCJû—‹BÚm?ãºmµ.(‘Î_;±ÍXZ¬Ê® -Ä!~^<{ÿ™ˆWÉo {Ž†6áM: ¦LDzyB,WÐè=m9¦ %êHÄÓ) =³—Ë΢ïßßÒ“öoOsd¸ >5ÒÇ°/ãƒ9ŸE³çV|=¦IpÇܹçCظÊx¤(Ò€¥ÒÈaÆië#’—–¢×¨±F(®©›³L¡øŽƒ¶öœÐ¸„mª¹xzés«®½ŽjR7/ŒüŽ4„è$>à–DüÊ -ü -Žá«ü<ÖS•,#ô})'l7-09bâĹ jÛ¼©íKz—ɼèÏ"/?ŒrðA’½ªìY<šL¤£Òîh†Žª‘Õ„èH[ÏòçÚ§–1Ò‘­mCÄ[“#–ôÎ`_”ÀøÄu›dä 8¼mf³nÂétJˆè&f±óƒp~1ŸŽMÇAËÎಖՆS\±ù1±í”ÙF홧k€æ¶å ¿¡îöæ"ŸYîæ8LeKW£ òÒ¶ šíúÞ\ú›Îäì䶣H{’îÐhîÓÅ®GƒhðûÛòÐ;Á$ïL)Ò)}Ÿ­^hÛãC:»2Žª’¾iqoóxŽ¡I½»:ta… „¢¦Q§ëá^\O]ñ‹õ–¸ø$=îñ诹^,2;˜½—kÙ;åéž %9Ê8Ÿ”Ú6çùÕÅn×J›Ã"–¥c;/ºM€‰UCe'³vÊíLÇhmÆ3àâ¨éøxþ8TüüõãKù/Ûà -endstream endobj 84 0 obj <> endobj 94 0 obj [/ICCBased 49 0 R] endobj 81 0 obj <>stream -H‰ŒWÍŠ&É ¼OQ/P5))•?WÁ'c–=ì4Ø>ô–ypD(¿ÙÁxaièîªÊ¥Šüò¯×—¿m×_þúõzýöj—·ñ¬™×¯øßÚzvï×çËú~–­ËŽçhüºŸ=â<9ÆÆæ“¥=ÖóòÕž¡Ùÿ~ýrýçõåëÏíúøv5|Ýø=ÆÄïµüº¾}àóßðù_ß^¿]v5üØåßî¶/ëñô‰ >UClw>½ÃYvÝfg\ñŒ=ð4 ¿ú“c\¯ÛãÂèˆëv›&¶î×ý™$ŸÆq½=óÖÜ×ÝÇc¹°æÂ’8Q8Oï>94Ç“îˆ>ùu`û…í »Œ|¢q…'òëûéïžO"-÷Ä©f{vð±?Ïß9|ŽÇƒ§Z8§gó”îOK×s"i·'Xg†-,å(Ò¨%‡aÉ@ôƆ4#¢@X¡B2nÞë`Œã:ξñw´§1“}=­)‡¹ë¨x€Á§ÞlF‰7³œµ6Ò¨ô®1SéómšåÏâ4êEW‚¹s×*‰ZeÅÒq¦Úifźþ{ÄÓr`c‹ zÎïùžÏt„þ„ -²‘¸®ô4zŽ½•@¡Ò1Y¤8bk„w·a†¶Dâ8Ór”–3ðg.^0(ÔâFR˜p„¼T_ÿ|ýô²‹?âì\å ëŽ\‚¿s•2À | &O@¶¾•>@pÍŠ3AÈ™"¤wß/èk8Ôf>nÊx5Zž”͉DŽÝG¬²ˆ -|ι@<°Ú±Y¸4Y¥¹˜ Ç'v  -¢º¸„T¸çÉUèIHÍý g -!P®Õ²¹Ž1Å^¥t{eÏË{­ç™0ú,trÂá^å® ƒ˜ Õò‘ô¥!w2IO¤è jTcÆ¡ÃhÅK_v˜ÚyæÄao¾´M/î†Hg8 kÈœóMÌUû°Z|Á%ó:¶EUdiX…Öâ·‘DÅ©?F´cŒq, -ÀnÁŠ:€qJŒIžMÅùúÀÐIe¦šŸ7S ¸ŒYzÈÓ(çYÃ¥·X· -L˜’ÊQ† _Xd‰kÊÒ’ûˆœq¢ k-”ð!Š!tµ£¨âÈטTsl¦Ñì#‹­¢Å†± òXª©#4œ«t'T»C„ ‰%ñÕ(^@íäL/Ø ~â™äb”ì&Ô!/4£Ê:V.¹B.I Ð_eA° ƒ´ïܾGÇäÒ#¶Ä_«Mí¨¹%¡HM¨vIíb8—]0‘_~œm†Ðm¾õLýü áÏs©V’D<º‹>ì!\.<ůUDG¯ÓØ}ÀÍý%ÛÎÅBŠQ*-XcR ¸O@‹=ÏJ€0ˆpá iLØÿsÌ(@‹°’`–w¼û!Zˆ8ŽÓHØ¡×Å$/ŨbÑìÊ"Ø Sr‹_˜ÌnšªDU8ÇGT‹(H•ÈѤÄZóòdd Ì–éê[>ûÅ6«¤‚ÑéW…`³ñ ŒCÊÙ«µ  .ÁW²jO•%ŠM{¹@6û:}L2H¸•Ð ˆv9.R{)ÏÀä>ÒCjiŒyì:¸¥Åä¤2!EVZE€µYkW}§œ›•†M¶Ù%®³ýÖŒÖ]ÞŽýKÎVÝb&êõCjòÆÄDW-ÿвìÄì!j6æ;i_äPÊMäªVEàè¥r‹ŠÂÌÍ~lMðM²Óæá’ĉöÈâèÞfçB†iBë çóM®ø? ¬~û~ù‡Þ«°Ù{íø±õ¯IsÀ&L“Á¶r[ˆ»tBŸáˆ -‚@$i?äfBà§,:j…ŽJŽE‡+! EóFhBUÜà’Ñ'—Æ¢Xþ 'ÓÐÀÄ\*@«CœÓÊÝ%û½SFQ;J=LD®ƒËç°Rî2àSb5ÞÔ“¤©=ÚË_u)åö<ªçÉÈ;¥ ì+E•¼â§ëMgËaT–ep³tqgá Ö>ò«ö œp¤š£`Œ¼I¨ñ¦,úGuUº!Focj4óíšI‹$ïS«),¨ —¾KàŽZѬmöÎt§9!›%`]–SZ«Œ"JΰÙô™C”PÌN¦V -ä¿Œ,·@{;1w¨8ÈI-§¯Åàõvø)/LÇœ§B†AiÔF°ï–ý -á£(ïŽ÷ÆsÚ¹ú90úVò×BkÜ ÎÕ l±ºá±Ðìõöv8Œhs¹t£ íú–ò 1Ø® +ê øÓÚ,f¬¬aéÂS׉´ºÄŒ(:dz›Üݧ2ŸJXBb.‹KCºvµn¹½õ¢4Ç£" Ï‘õvú¾×±tÝýŠÝÔ˜]ÔD×Æ îFjfÓê>Ñ:q‰$Mu:ÇHÈH«¢ôÅV·ØâÙfjÑáu›6»7+Æ.u]Œ(T½î:‡9T×Å°;Í h##RÓÅij 1|ˆáÂn~(·Ôz?ôÙ"T°+U3kj l y¬Zuú%Ç ˜û8’îqîÚ 1´¨¦gÕ¦Ïs¡j”œ±½í4sÀ&Ò«C ¬]:°Fi=qq—wËOu&÷ÓKžÕ¡.4Ii÷ ót!MÔÆ!ª{Ï}ˆ.I„" );q݇jʱɺè©W9`3Më³KT†”†EWÔóûmÊt&wƒëhÏ£RɆ~  mëèþÈ(:0Ò’päý`§£e¾ƒ¢ÜÚmï E"Ù“PFÄÔ~ãŸ!îXåÓy‹„Z"p:ìÁ^Í$×d´—Ds—Áá3t/Çó°Øôàıƀ“þo©¯"ôiòæ*P¾eÍúEBکƬçAèÐïD=ëv³¢™éFzS"÷uDšêè†Æk;¦íROgýx®”¿U*¼¦W§Í(=´^U¦àeÓ”PÞt0¹srPÔ5\Ê"k›JZŒj°´£.¢ýt/aîKêÉ D‘jóæègÁt™€h¡ëp:9",pU÷–,¿–Õ/ë2D‹'·•Š©Û»aú•)$&ïQ¡-2äE \Í /ž^ÊàéÇÍ*»œ‰­Îuu”þÄÊÓjYêÅVÝx°o‘=¾«ÍªFÁÜQÈ°¦zT±g™ˆMµ5§ᑽ‡ŒÃ@…‰ f‰±\ ¯#ã*7*€.•à„¨üœšIŽ}$¨Ó(Ù–^s$d'´²îuæ§"œ²ºØaKÔ3Ôµ½cdJâŠrêÚ†©‹*òŽ‚ÚÑà rêWÔ”Ò-9奫,„¥€²»ú—¬“²j».AÀMˆ ¼Eþ/ñþ¤ÞÄ5Pçôl -¿7[ºr^±œ)³¦ÔUªtOK6^ö_ÆËË®‰¡¾V‘ça=r³÷ï6.À/Õ©vÚ’øó |Áˆ à‘pèBÕr{nu_£õÍ£ËCbØ$tg±¡éFÑ—…wÛƒê©0šóX$÷ØÁè:ËvŸŽ­ü›Äei l­/@%«™Ê'Ùåžô ù/‰wœ(ç)He|Ôek¯µýMûÌÐXëb©W Å ç‘ù|óÒ³lÑcéж‹IT[ݧƒ¯ê÷Ù2;Ñù¤·dD $¬§Å[å˜^FµðÀ×µ,ÌŒ–iùT3ÑVd¨îÃÂÜqj†i[i¤ù3¶»g:ÏGã·;©¡‚e½Ú Ù ðLÒ:ïèš…¢Ù-ûP]ÀVu]Â9…n!À4ÛÛð¨†è©D‰_€‰óS€Ï'åø#°g//ÖÝ|C‚|à®%vé>W‹‚Ñ=›¨>A§Ò×í¦Õnl»c…í@–—µŽ÷íüqÄ5Õr[i½} D/áANp¸ktÒ7œß6fÅÜž6fiÖˆö´cà:ÀŠ¾ PÙ^Çì÷¤Ì늹·™­í%Éq-ãtÙ$¡bï|bÅOƒÄ#çÚÜWÕ £¯>G~<qÒQmݯ‘N¹ŽBÅnÅä·Å² ý±š|s_%ñÅ»RÜܨ—élM ŒÊjÏÅ“¯¡óÓk¯WG_ Æ4aº°­$>StHeÿÙäªJ[ej.$øKKmIõD‡lZ¦‘[cäA’¦ÊÝåíbñ`{àÙ<+Ýñ ÍÓ-õíº´ J{ûæ6…ÉÈXip½§oOwês|¸àqÒÓ¯ÁS|Œ¢"Ç¢­-'ŸœÞíƒyBöÚÖVð4T×±‘üißéÜÅPžô¦–—1PõÞ¼>A'‰#×Û ƒN¨#K¿±n–Ðã7^FM_]hLok*ÈF°ub4dZ|=5pr¿Ÿë>Rú‚š¿óeŒL Ë+>þ‘³?“M2Ñ܉ŠZà­nì‚£ÑÄ'zÍ‘Il‰kcÍGò±s=ÆÝ“+nÉÚì’Ñ—¹rX"! ýöTÝx§]ÓX5ŽM¿Ôc¿<þ¨žk4{çq7!‹ÈødfœÇM*µÞ;j ÑøÖü2VP¼ zÕðÕ~ÌX8kÀ”d£ŸÈáغêø1j0p=Ã6ïytÄ^­ x8¨8cDkÍ íé®Ù?TÚÁºÆTv[Â)ÖzOùÏMF*˜*&`=q~ý1GLÜÝý‰uq$ئëó ÷$Z߬‡4LFÁj£›u…c‚°êiÔìÌü‰…µkîÁ*²‚!‰«Ë –¬X@Æ7•Ú´Ñ‰}'ä–õ½ñöå´=OŠ5DÓ1.`±•\ž =Œ¢Pƒ UNSjãv2Âc3K¢¨év.¨¦F¢‰u¤&'hö¬;‰t3;Ó›KdJ}¤é=´øÑÖÚí(4þî?.*EkÐجêcì-.ͯîõùkà4ñ‰í9¦…|5‹^Ï95 o¸A#°âÆu’7H†Ã(û£+íãûx‰0a—Cº¶Ü`ópDë¡H“ÁGé înL{V$ m÷™»4â²K )HS‡âŽ“87R‚ns`ÒYÙ#iByß4“Uã­Úª~©Œö \ë2O—ð{8ÞµcFG<ý+èknD­‘øåž°ìTTÜ®£W§cJðð).Èð* ‡/‹ââ Ãw»û'AÕÜžíÁtÚêx/€l Vš•}?&[§¦†@€®ÆÊ-#xÍ }Œ÷Qª\¼–y+š¾ n˜W{ƒe‡›‰Þi|wåb'ë xÖnTÝŸpá†qÖtìhŽ'$Ô·íeH´¥³Žá¸’ˆœÔ/dlI6”|ÙiÎpÞó±R„ k:Œù rîàºìÀ´•X\ÓØ>K;B>hÜðWp\zžpð—銋øß'†±¶ÿ¸±WoX‰„”ñyö3Ògç˜Òo[ñVÞ>Òjƒ}êvÝŒ³ç.ýåLë‡^“WîÓD´0q¤­÷ÂíćÏ$8k5…ÁËö¬ÁtÄÂ*îPÔâÁûz±i|E™Û‹U÷ã™9 Å/žøC±zÖsš‘ìãñnÖ£éä€"Ä¡ü„¿mC‹ãK±›,Ž©ÿ²¤Ê02RÚž´ Qä¯'Õ aI'u[Lé¥ùÇŸðôk„ÏÀƒH&Á<¦T­Y'›zÐ n mÝU†‰ËÔã¡Æ¦Ø Ùˆt8 º=`’¾h9 -Ï0—R#eÇ„ž©Òv_oÝ›EfËiW4áüz_MzEïñ0û‹wlÁÇeÀoÝdœ_õù–Jä,Û©ø|h«Û 1š½ógOšDJÉ78èÓì8t~VZ¼³Þ[­9z_ûR)Žk?÷ìžáj“I-¬fä͘Œk·AŸ˜Úºs%Bÿ ¸;W…Íõ­'p2 #)±¸û›‰xNÍúYaÆÞ×{ØGò†ŸÈÉ­Gõ½ÓG¨é¼n}‘¨ÿ±©'TwÆpOïéycAD¿I|Û½˜¬Ë®ÄõËÅ©ÈãÉUs&ù -Ín{)of½ó8£„ŸõsßeÅÞä÷Gxt¿VŒŒe„bâ´§è¦Ôâú‹uÞâ“ÄÂ*ßp^ç«â@›‰ŸÓÜþ™ S-)"-£׊ÏæÇÅgÖçIxæúªÓoDžÔ%:ØŽ:³«£¾°_·õVcÉ\¸ã§>Kó·[g\¬ÜˆRu'8ìšåõ¶æ9éQv•¤‘ôâ…AÕ‹(}Óì;ŽÁ-J½ŠãÄOꮫJœz çÙ³/´Ò”$1áµæ¬tv¾4~¬|« 왦kÚL;]§ù—i¤,Æ¿.“!·•îCU¬xÔôk‹ål¬ÕÂóy›vL”Ú?H6®ÛhñŸ\ ý´2ŒËz§ój¾2m«36¨Î2ÛðÈx=¬6ß½Ž¤KeªWÌôj‚SKˆ}]ÑBµ®1Œ×¹žkÕ´ÚÇ̓ÅÛ'Nƒ$ðe\í ø¢³jµ˜*î¡~!ù5V××JàÝÅ|V›z%Øo 'ª6'Úüþ…ƒ·ôu޶λZ¿.R­g¬åi*÷ƒ„»J1‰›+’ •ç{WFÝ -ñíö^÷ñ¨ECáçc¶_<2úµ¿Ðøn8}¿Pto~™ø@ ²ý‚í ÁWû³Ø›Ú×ãVŒH}!y>aœˆE-1+#Ö„ê^ÿBüN]Aå|×’‚­ídëtæcc5á -s&ðΑ7Úah}cØEðj $÷<t¬“ZÆ‹jóÖjêàÏ¡¼ ¤•p÷@ÎH{Üé¯ùð£#FËgÅý‡2^™4n&£S%üº79¬(G nN¶Ú]s4PvnÇ;«xnÀÞðƒeUêÌíqÎú·kcõùc5 a€^?¥;ÿvP©¨CKœ‚ÐÁ4ÚÄl¼‘踢]\üÿ&Êjö^‹ÝZKPPgj§nk¦S]VM0ïÓSy<%Ú¼#Ôõ€DgMÖˆ›¡Àg3)Kþ‰Épcá¸6€Ô9°’† ]ûådÕ®ýšº`ø=3 ©>\~Á¬ýwXϾo]¯‰vH™½º×Ej¸$u œ×ë¿‚²’HÕ<`O±LÔ¢µT”#Ò Ü]³lW´:¦ØXËA¥ó®Ž^÷Ú«äÍøš‹`Q1YWq\k;Ö|èË“ –k+v®è¬QšW-39ª‘~UKUôÖŽH›ÖÖèP‡»n‡Eÿ.÷küª~n`ñjØýíó`sAå5³t“ÇFFg'…íK‘V‹íyBÍw:o$Èž|¿ˆuoö¿ J5¹=žî[A‚åï.ÓÞlå ‰“vG0âÚ<Se¹=ALìþ¥œÀ {˜‘Ä ,Ÿ{š¾AŽd/ úý[ý/ãå’\ËÄйWá ÈÁÿg=oªÞÿ´q^…»vx"oU±Xd&pðtø>¬NÕÐŒJlÃ'°6­ ÷AØêþÐ^Þ—¤^°“Ž¢h<9t…‘“E%e¾pF ÂyÙÊv‘P—E±îÀk4¼/Ó5ÝASh%STÈ[Ž‘·º`¦…™U•BRØ|,mwÝ}¡Ž^Íó§¤:ªŽ_'RR: Ð ß®•#!>6Ù®Ú•Å«^&.ëV9 DŒòfV—wMã²}H{ÔdJ]Žœôæö¨v½a~˜\…äܪ/J Ç<†ŽµŒ4Ã+øzþ¢B€›u¤Ã£âÓ1åßIÌuòù2tHœ¡¶vSŠ=’±ŒJÄsþ"^ß/ÍÎ ¼mǹ¦]ý?ò“3Jc4­¬€ü3ùiÕ’¤'W†ážRó 5Û°®²mÇùTk9>í¿6Ñ„¥kª¦õŽöE•Â‡.*mî šS³œ ¬ÌumN³¢©3‚¯Vñ7.óŽ,)­49VöðVÌ–x¤^Ø÷Yþ oF½0þA­¶› z6waÂ8@tW2ŸÕsÎìRg#Ö ~ã|‘6[m·ã¡ä Í9^vj¥è'-Õ‚ð#=Ò¥r›y¿ö*c§PIåó»êQµ´$ÓçÞf¿×æøÞãìoëµóvÕûÈ­ÃܨîÜ '¯¶ã¸ùw¶—3ÓéQÕ^Üø¦¢ Õ`}èsÜáK\2Ž›µ:¨ßD7-hõ¿ƒ¬V<íoúÁoB’—¹YHJÿŸäĆs-Ãô2«œ´…àÜ6¹¢?ÇîÑÜ…õ1/îìšÀd‡¥i¶».=ŽÒ°ûð Kî÷o(}`¬ÔŒTÑkó< ¯y¡J‡ÄT1C­ŒSîˆÝ\-pVÐéF¹ÐØeôÕ`‘êÇòâøºâ¤Î3šŠÀ¿ŒÅÌFyq¶ûE©%eùÒ—Ý}):kTà6ÒPU¦©k¢y‡JYjâné/|®é;sL.!£b‡ˆK"jY| '’’õiP­ìQÅ짿Ç7&Úóëï“jño¤½:Güg½šê–SU‘Iv¨Éjc8))Ñcx½"JÕÍ#•UU-&öñUí“×!Ì6§ãM(D¢JCÜl1’(p~¼w¦ó$ŒÔ¡–ZÊAˆúZ*þ"T³9c¶è†$'¢‰ 錓YŠKYíý‰5%í×ë G†Úâ8ÈBv÷YЊUçVó ?èKâ³L.U6ß|zT?±IÒëôNqëQÍiMÓK*kÆÜдž~ÓÙ¢W¼äÁ¯ÝíkP¤HÖªN$¸f‹šÅån”nìÜ»ÚS>[êòD6™®¶nóÃÔ§Ú›û4û­jlÇ÷®YŸ±6¿sO[m@úúxñÉhž€Àô*ç¼>1köê˜FzÍÐM;ó¡ª7O0„Žßá—J%h•Íóº•ïxº¶x²ÍèZµ±:Ëšuµ±“ªw˜IMe&¦ïg´z¢ ˆÞ© %Y¢Æ¿M5¶1‘¯/ZQu}Rfb‰Êb7ŠëÇ×OáùäR¯™Ta/ª8—‘Š^€õ@»×câ76ÃøçeÒåÒê–pÕTY¡¼*uF-{ú¹2ézf¡]¬Ù dïêg½{¢7ÇΆìÝêÚ]Ù·í +1¤¾éQCÍöŽ²To]ëTO,T)ù1BqÒÕ¾öA‹žùTÐ=N¨=&“·h ;±¤è=¦sZ-6È’1%·…ÿ±,ô‹„Øʈ:ë -S4À@‹éò^0Á è|z$QÓit-T×öyáaÑæ2/%ÉDÁǨtRš<«ã·Z\04l°Íõ#â3«ÆðJÚÏ»³n6UtÔ%!]Ý[í8Ë)øÞµ}íÔ›{çõŽÌ4cPçæ0»ßrû»·Ç¢îyîäE–æ«[S[6œPS{U+RÉ(Twè,Ǽ \;“.RJ­ë()ÀGiËwHcëãcÓ.gtB—oJ]«G.ÍcØ·V'gC:ÐŒØÏÑåiÛçۚȕC)è1­®ÓHâ¦n¬ÒM{ÓôÖ»mªuJK¨QÛÚ¸N»~kG:¦Å™¿;§õÂí5¬Nû²ò›œ(r¡Òµp®.B;,\’’/cT•t@m]¡—êv¹2AH6¶Z;¡m+}–ŠsJRûo»@u_’M3£±:”2ôŽNu[èKêB{8ãúê£!à“Q0ø&HÍ,¾æjñBZ´…Ÿ;i·ñ‡éM[â[·)5P¦ÑÉ(“jöO]êÛûª»Cê²½ÕOiÅFN2i&“Úh¾ã@ ¦‘@Ë RgˆÌ¤Ç€†”¡%e¤¹…¶u>›Å6U|Ð_S»5{Úð<†Y›ôåBúIú·©²:ôEMk>ûû¡4ìËÔâFRk-îÌ«íõŸ%Ñܸ—>†Ã/5Ìðݶ†Ú(Šk•Jµýé1#e9òÜl±ßa]8†ž¸zU`g€!ºRn̘\À“‡ƒS3Œà# îh¨C|nÔ]q ?‘¡9g} ‹>Gø†td[Íz€oUÐ×ï‰ÒÌÚÊÅ!ˆ‘êUY\vL?líQá†ë²i½aÔÀör\ÓÏñ¶£uN´=+áç9Œ·¬rMŠ`èŒ+{†¦B8ÅèM™ü \¶Èw©ª^ï¹ÞM éõoº©0MMׇ5Ô*kvúYCàU|‹)VG£Ìñã·8É L惔ê+û±#ý’”/4£oG#íÞÈJW5L{&˜µÆbã[ ›¨Õw ÒðdH>û˜ùÁÖnY`˜BϦ2\zWªx¸î%ËÃC³†7W£T€k†6q^ݶfìÏ)[W©>€©ù¸¦eRÈ-¶¬{¿Üõ8Þy,!š´•ðàr«¦@ÊOzZF®ƒ„É(ÓöMFãIþÒ;+Žx\Ò“M–YÎ#žg­ç6-Ær¬‰§boÂh¾­lßÿY ó鳟ßÀö5ê}pÓìO˜~ؽ¥ûÍØŒµÀ1M,fRT-ÝîÍ)Žú_½pY4¹†ÝYÝ»i - “<Ooìç60Ï™8æc–5 Nb¸ìâNçBÿ>IÉÀ -¸¸eYã5ZÊFÍã"ÃU¤úkÄDÈvÓ s¿»SàÊNÍ*_{®/pêîó‰ªð¤Q÷]¿Þ%ă!ØáÛwËìç8E$í4˜§¯98Ñü‡Duõ”ö“ª“~­þ¨qÌjF¿ú_! -Hm­ÿ’ w‰†ÛåÞÁS/ú³7¨žÖ'ѳó  ?‘_<q¶7sÚÈzç’qGûš±\?œ9*Cmæ»Õ+µ´ÏñD䲚W^‚ð }ÄøïÚ‰ ugÎññ°mLÕRöÆ‘’8ëõ^`Ë%š¶jÕvIÆÉÎBµ´<ëÑ°ûv]…Ük;ò¬Ã†×Wuzgš”×;ÔÅÎÇíµ¥u™**ÔV7£Qó7óC½3Ôq2\ŒúJ”ª-íeÔÅÐy4ý윹»Äjq¯Häe·4ŒBÞܽGäôÔ©Oë]ŒPçÍpìjF¦jtª&,LwYa%À;Œ =¹Ä%ã{rz` UÞÝç Â0ÂÏž8SMÅã¼܉Œ'jh¨ñT8§ ÿ÷=9]¿}§9#MÞ„•Î]ºtÒKî„ë$®ÜÈÞûGQ¿¶+ž³ìÿe¼Lrì¸ z•¾@ œ‡óh+ßëxüòðªÅ™™1‰ÿàÁ‚›d[«YÞ²ÚΓÁÆÔüd÷ZtÅÅÀ -^•íŠe$j|Œ -îO+‹£V”TžpÇû¨¦ZÆ—-…–­¿ÿ§‹Â{ÍÿîõiÀz£_ØTÞÄ=³Œ¢šøñ0ã%N‰”»˜1¢cöZï Ø߀«Mío»³mk!î6Ÿ4¬ú˜{ ³^÷òŒÝ¨³žšxìYä4(´± à¤a܃9M@gÚ4½õ—“ÔŒ Vÿ`…óÄi}eíÂ…ù e¸ðAÁ\Ñ]ï÷¥§$@Uz°dŽ§ü¾áŽ§Â37gÔó ãAÎ3™t§ÂeåÝ«'õΧZ‚ÙBÖÈLKÝ°ÓÃè¸ÏgBø_Vž&-§ƒªÇˆå]€ý¹ø›¶— ¼{Êj—Ýd2?H”ur`y^Xœú6ü§ïq -K¹€Zööô™ÝáÔÌñþÒ]jŒpWͤ%¼ñ®Ï@Ôº\¥ËÊðá’!2 TÆJ½&qŒ¹ª¾Ä0¹¶â¢ç¢"úÇÚñÉO>>%Ò²x -Ãf0˜‡qšíð:†H’„Øwš-qPhfÑÛqß+#Ãáè6,²ÐÎîx2<}4»½ÜVà -GD’ÑyË‘wo]i©ÅówÒæL€ïm+WwŠ:»Iéï÷Ó.R—R%ŠMŒú£Qø—£¬¥Âìû«ê5õjó_Ž²ø…úY­!ù+£ OêV*,W¯Ã§ íñ ,¹¡Ì:ú«ª÷ØöqX­j[ö÷¹w×tef¾Uø-\è>QXÒ™ª³’M– T™3OýÂAzâ çͤ8lBFB\”ËL½U5$öm›ù]¥¾Qƒn½ŽŒã×6ô;MÏx1¯™YÉmQ^ý¯8jÄ8Ðlu±ÇøVDCžDãÐ_Ψ• @@ç³$ÎŒØC««ß._§ÄN+ ɱãn|ìÛµcس ×±íW&YŒnBSÑÅ4XÍa¥ž––•5ŒDýšù†¯D«Ml½¼#Éþô˜Žƒv—ßHÝr01#ñ£<›‡ÂÎxK†/¤}Œ2†ÞQHåpú¹ô>¹ÅÐjuçºÉ#æ3'«²cO쀱v–õ«ÅSOg ¥˜VÅ™6JÃ&“%N†ºœ²²õCU⊵‹®éš9$ŽL*C›)}ÿ~XÆq?ÿ;ÜÕ¢mUv°^){ò(ªó¿¡¨ù8 Vu§§H/5|Ä.!ZN¢Imõ¨ê°Å}Yݧ/;«™!“  BÚooG?fwŽZž¢àkËTJ¹úâ¢BD_ÙUá°Û[µ„ËÈ:‰sÀ#d -ÖœÂj²Ÿº =ÕÖöeÍÃüðI4JZéæg굺_õŒr‡éj øíù~V×â#™ïa°èf±||ü¬*¨ÉV½è­zÉREX§«ÄÈYïÅÓ…¿zs‹š3‰:Óó~VóÛ…9]¢C»šNñ¯Nï¶'©ÜiTÙ©ˆPƒåŽ“¡+úX„dǪŠÛà2´ÄGž¨çvàÔû‡ù°<ÿÚí ‘îƒºpÁjëCN½f“Ýr*s´"EÆžòÁ©O°ûÛ±±@#VÙFü”$Õ£7l¸ØÑ,¬"{ªÇ†yøIPâk”øÇ o[H&”í¸èV”b†/TzFí¢\ª˜¹~R˜¢Sii§Ž—=7Û/ÛÅ„ÏQ°%*2à’Ãæ›$½zdÊ56"À@ú{-ìI®râVlyd98°zd«FiÙø0²Ã™V3c¯¥{ª½°Wôå\¸l'*`„–•cˆ‘oèásëò L³cgÈ^X4¨×kκÇÖÞ¯xˆÙj¨[÷ëKÌàF$z~¿… ®$—ÙñÙÚ_—M;™â¡Ã¦02-ñwmÖ­ž`õ•íÕ‘Žµ†#8¨$ 5u©>i7¡©ŒE3‚\) W")˜íž H”¾ OðßæP©™vN€-âx!‚ùb ïK”úÛfò¼XRŠ# ”„&l¶ -#ç=ànð”äaº­ ’¤€Â)0 ´$TõcyîçA|1Z¼¶Ê(8ßU«>þzØ(@µ:L§–¨L÷d‚œþñ ŠJëã×£­>z3%­4üà:I5•v‰ÊL‹’ÿ½™Ýj£ïéݾ‰î„è_òÀ¶éÔ•qØZ…¿Á»Ý¸ ‚ѽƆýðpŠ…MãtËSáߎ—+ñwtýú¾–ÜA\DK—õ—”š:ãyôƒË±—Ž‘ÃÌc33Ÿ¬7’*ã ÇÒCÐ3Èd÷÷a¦F3sÔxgž¬yÞ5ñßC÷a17Ìjê)‰辩GgÞQßÖŒí†N=&¶©¼ê“n3ëÌÛÄÎkefÉ”cù¡Ùù3WŸÚßbtžùê [©]óä˜å8Ý%;˜G;ýÑ?ΈŽÌ–Çz„ Þºð5˜j½a¨Ê²{ä÷Óó&•ùÞÔ¯Ú0å -fïæj .†^^/Xclj¤jþʬ#š{KÅÕPå+œ |ÜÈÕèv–\l;ج°Ì“YLcÃ_MáqêÛ6F¦Yê$34®—zGµ°Žµc1pÜe½Á³…ð/ê3æ‚Åâ/«o¢LÏ -äu*g3±ÒÜ ­™–V³L4|Ñr x¾Ÿbšu)jGM f ùë¿1d¬jLå¸û?1ܨ¢º2Ñm÷ö k­‡Yó×p}ùª·Ú«‘ê`¹#WK0ÙK¨×–(ÞÇÌs¾àÃMY°ºÆ…¿ú!y2„–w:Ñéïf¬;Õ^÷±¾÷Ñèù±œœh{ŒÏƒôÍÔ–ôê$®Ë%ZàJ¤×E ò(ˆæŠØÝ^Ã~¾ƒzõ¸¾ÃÉÇwýHå[p¸–£´ x@Š<ÐÿûnÃ?^"‡ÎH¡mŸ)L -ð†Éô„ e„=Š.«#¬ñ¤zêVð‘% |®ƒ°êÞpcúàG¢_cnÇ>–üÓn4OŽ9À„ºîѼMKµÊ&=\Š‹95"Âô*l—¤©ò}yÕ|[‚Ž‹ª5ÂÕ‚ÌNëÆ4ÔB—:Ýаڈ¢PÉE1½í¶çÛP\žàUÓgo‚#±¬,Ò~#Úu§ËX_@*ýð=P늨Þp—Âq†7z¢Ày·g00 z_] ¾×²²íà"'—#q4Zû xBu™ED¯±;Àš\m¬ð@¥]Ò¹»ó€}¤]ØüƒÒf»ºÖ³d–GýÄÄ5 ¢iêOÉÃmÝÈëŠÓšØ‚ÛUBw‡ •¸Š°ªÐ½HpAwI (–,„ŠûµwïóJCA¡-T| êwxÓSÓpçãî ¶Ó.‚B @ÆäòTÝ®~Ì-Ìß“©-WØ#|ËNû¤ŒÈYV&ÅÚK*ƒ 4×b×ÚÛ¼HY=0A$Çäö+‡õ2O¬z¼Ü·/SŠU•¢>]€ÄÌE#O›¼lÝü+³£LA׌D\g€“Ø\“âu_rEDLïë±E"ÓZ2õ*¿’ƒ5ΡnÜ—¯ˆ,h6cd€~ú¶eÁ‚èiß“Ÿw´ø;#M6§9±ÆíDÍ.ð¢ÔÉ" -<̵µ¥hºô$j ÷‹›ß*÷*T®sÖF˜Uá|K0ÓÞŒMׂŽi7ð€¯a¢T"²TqÍEpÛî¬qa g -•L|a€{Ö¬çRƒæ§¸ í–g,Z×´}s‚É#QƒwËÃJµlî ô¬i¸w¢>Õ‰ËÊÊDfÞ5·@ÂÅFê€J¼³OªÝGã‚ÝÂëuP$F¶²Ï-Ó¹ºFŠ¨¶<ô®h.‡õÆë{‰]ÕR ?w fÅ Ó$ d‰±ÞÒnN2…Yu~—–ÝÌ~Eîפ² µÊÖüЄŽ—ô}ã«Ûïž%iÚ•i'¢SÁ…˜îqý1»a>Ç{ßDc䚆¡?Í Ï·ëá”)Oèj¶Û'ט<Å`MVXÊ*þA_¾28x9n3 žå6á d¤¹‘÷è¾2¥¾—1éÔ“Ë4-nt­›‰ÍR†¿ˆæ„öc -7 NÜC”+g¨PèòöPÄ!‘öÌ—'@¯a2hR[›¼ó±*ßù43÷]Ño¢æ•Ã:]=á(Þ¥]×]°[ànù¼ÏÜØN áÃ0•x²Èû<°à*Åökw°lÝ£,¿Ti÷š¾"îq±‹‚ªŽg>¡Ìæz”áV„ýAIÀŠUù‘ Ä?”§= "âEåy“‚yÔw á5­6v[Ù‚Ö>NTu„iK/ -n$|iªƒÂç4Û–’x|%-‘Ø©Ù>¡<ÛìpÍ Š¨5ú°%ÒáÅ߈ÊA”Å|N<_r$ÒÌ^Z&²RÁ¨åÙj/Póc5»·™…-øñ\¢ýaqŸŒ¼B›Bî3ï,îä"Œ°ìc;lð—ºü†ÔË*äø¦`o ±âbáŠø 3#“•™`u˜§cäâI©7n2öqYä©Ü˜âÆ])¶Ö«`Q~_µÞæWeŽT3ÂÜmõÍLÜmitŽÝ¯Euƒ(3_;²b#‘릻ša¬Ï6væH]G%hÌáÁ5oÊo‡Ë´ŽTq©3øb…mÛƶ¹©†­’Ãâ°Æ–)Q¢lE|Ç¡Л®óãÆ`%Â8:.«âí­q6…-rT°?\VùŠ|­+u:Àõ=¹ tà5ŸÌòøÀ ½5áf»[7_)Q º‚Àî°:\ãr8ÊÝú¾¯›¹7ßÿáµíÇÇ÷[†åÝá]ö÷Ö·æÜKµ»;©%ñæÕp®%õÜqâ5½`¦ÊS˜,ÉÛeMª|ÁA˜ôI• Ò“LGæö@³é×ø¯Öð -Ô•PÍÀ qØ%:Îê"¿Q¯š+¼ìö”ô2`&ÞíÏu5ϸÎ@o°”x†5‘vÖ5½_ûX'a÷Äzíþ>ô˸C!ÛáîòGøËÇŠîwBÝ~ÞÝkÁèêw÷<¥FñgóýS0=lD9®ÊWz¦ÏÔ mpzn;TT#[UJ ÚÜÈJͦ­gYº£Š -ÝWÝKýUè´S˜…Ç‘ÿ´«ÔI¡cnïo¢Êvr’réóçd.—PZ¡…czˆ2Ã*ÄèÙ{žîr­úø@<ꛂøàqUÞÌ®Ã{˜•à« - ¹¢,ºõ d€ô¢”ÿD±Fø‚^¬aÊ€I€¾zÇC˜eË4±}'*Q*Ÿrî~|™4J°¤Œmw¡ðJëùXéq» 7ëÆUbŸÈ‰ •ìEÕiДX*³m™·KH™2U™LÀò•)Ìö¶bfËBåÞˆP™1žøÐ}íŽùB ÛŠÎ)c´Áf¯-eìË9‘â¼ßx‚2ž"í‰úÒŸÇgVû˜g„Œë=òñKëâ¨tÎJGëՉܥ®)fnÉ#¢öÈ+z†}¥ç¢3â1·Ô!S'ôn)䉽BÇxœU»–—Žç-mͽ|¿Úé3^BSçµeßvégfgÏmAÝ­{TÊñ¤Þ'WXÙÌ›iŽ›‘Âb~9Q˜.[åµ5V -°ã7½ÄPÐQ‰¹fù}Ü´v¡ç„91”§ç™³XM Eòíœ×„6ø@©]cSLäµÝ¦S}w‹9¸ŠPRÎÖO¼^¸þfl˜þb›Ø52- e˜U܇‰d6Ã?&ô €yâ)di\…÷w÷îZ˜@«rb×Xƒ0VâC^%¹ N4ƒæÔä£SX> ->>ÿ„"¾•u{Z“«÷þ–Ôœ‘d&HLʸ,w«=Enµ÷nµ«žGª OA« ëÜÍØ(Ý·s¿Jõ)ˆ$6(®‰lÀÃl+ÑNZ½£l©Èâ¹óÚw#È ‡-ÝËmuA“û y_[ÆR×W#tÝóUÜ(Ä›ˆ@/ßÃ`^ùÛ‡á[ד˜‰{ÞÙû~—¬v—dv{´-ßA‘h÷;mÔ8-ÎI=wÑy 62XZ“À´z‘Øfg‘1ŽÄÑæ¹!Q)WÛ׋è3XŽÓY+Ï\LjW_÷8}Ê põú 7ð|µ¦â€( --ŽcÝŽl>5Ÿ±x#Q×õT?%Fyó…Þf¬I*è=o¯ęóî.%Zåëæë]õÛÙ•¼s ßs¤¥šp¥”Kbß,ÀÒå:!å7.—ÌðžRÍÜ „-«6³eÃüþ¼_Ú™¥zñ"`x°ƒN;PDC /2OŒÇœÆ'h8Þ X 2–ñ;#½©Í±Ž±©)ø Mï)%ÑØ$"þ¶ê.WŽ ¨Jž±“‘”zðŒ$öµ=Nm—à¼{Q¢GŽÍÀkù/Ùå–cinÃà÷ZEo ß/ËÈÈSO€ ûÂô©LP/%Û¿-‰õÑ„ÅRóíZã£â€ž±žÔ®í}¬¹Ç¢üJÿ¼ëf -ü=ý Hå9ßC ½5wõïž';»$Ì‘ö=or&úÓÕõµUÒµ×G¾¾”R‚ßîÊú-ö(çwiŒ¸†å3åÓŸ&ß~*lß·í£5(Ãißz1Ø4¹8Zk¹QÊÓ_²UòkÞøÆÙÁÅéqL«tNt|<“n+Y%ì—wPÿH¶òf ^ûͳd×C”Õˆ˜8Ê«8ò åG¼*ë)ýa=‡¼ÜŸÔ'ZÌö¤|îT%Âå»TŒ ÎRa¹ ŽÉ?>_“P§‹Ê¥Ã"gß`i:ÄQa&û‹£•õ}N n®3âSVæG Ÿ%×íYS«×d7€õšGµ@¶ŽÏ;'ÁÔ÷mº-°?ãÅ«sq¦‹žF!× WèýÖ^ĆÆ\-2Ÿë’^\¾ ŠN°ÞSwwK±ÖG”™sªkÇ}›œ9jýò6Uš®õnúùHzó9ÊùljdhŸ·†µØ®ª¿É“Ÿ_ÿúúç—†ýýøïÏýGÿýÕM2rÂ{Mâp£‡þùÅO’4"…ñ£˜Ç~aíäÒoSúS -|(¡P—g÷“æöG\:l3¦Y~ 5= -9~†¤óÁ4—+íªïX²U¹tHolÔš–®…£¯åFS,ØeSâÉL‹üu7cØ}eÐþ°yÌìÂçÂÚ^Š¸à.ó ÷¯êI +^µ’^ôŠËÎÄ"ŽíŒ[ dVuÌÈŠÈ£]45Óš‹õ2¾Y’ZoHè7¡¨ûd9v‹‚¥²©žžãE£Z°N$s{S®’û~EÕ“œÍ2™§õwöŽû ‰5Ë\…Ýúƒ‘£Z¾ë(«¸†¹“Ù ìÎD}š.”9æ7ŠÜúp[ÊäŒr²0¯›Ð÷GWu[ñáñU}ªHö. ªGÙ†Ïù§³f”iT'S'öΆžæ«!â¼Ü]ò¤KöÐ߉Zá½Ïžè}´ôÁV-U¨…Òsâ óÉSŸÇ_—Ýz$S?ÙÑZÊ!FË%œ<Ù¦ ö&ƒ¿•[´Nw܇¹çÏ((¯æ'ìÙbOúˆlvûè%xMŽ±²°`Öä➬ï3„.Yts¢SÑá‚Ýœˆ'd×д<Ã/ ˆl˜ 6®¶×ÌJsÁ-:.\z §_öXÂÌŒ‹ÏãƶÝh¡nÝ™‚ÞÓÌOçQñeÝ‘ú• ˤçÛ|ÁÐȲ<¢ª<ÏŽ5ÛǺMv‹z칪d®ï¯2Õe:ö4ÏiaÏ‹ªKa3˜á?3m RˆF 9^¹ÍÏY½Ì€•2ì6‡9ºC+Ò˜§­ƒhRÉU~Tp¤åX‹› â8V{€-Œ]ž’&KÆÇk¹*»\ݪ¨…bæå·Ç¦š‘™AUn 6‹¸¢g*‘BO1—{¨´¤•jÑÃt•• ³éÙÒŒk}ÌëR9çüv ?fc«¹žª¤ù½ÊÜs”Êø:<ÌéëgeþóœÂmÖDí5žAÇŽÊz×/ýž®WsˆÔ§›¬ÏƒäT>67´ì]/D÷¸[ÄÉcB˜FS‚ -Ã*)õÅ|ûŒˆÑï-ÉÞÑ´¤ è13Þ˜£¶L&òz3:¾‡#_öDD© îÝÙ`~á?+|O½2 0©#KÛ>ç.êDÅË/ -‹2cú½¼®7Ì\H×ê9Îø—rx߶öy‡´ kú®‡ -º;"]7õÕ¶ñð—«ï™%»QéÌ°;ß*efù"–ÐflÔ“fðä‹MüÂÜY;vì6|S7 ™ècÌßöYnૹì,7ùª¸ºÍ¹îÃùy7ù½''›²¸è*›í-³n_¼+w¾…Ê¢Fu v< B¶üi) ÙÖF­ü9ãP@§›ÒmƒoÙÕÚGõrž}RÞ"ÚOsGBfÕýh¶ýÉnÜgCïÙà1Gö ¼±OlKé´ÏÜŽ!ŽueúúíY&Œ“¾Å¬/§¿#¬på©gXð =˜.‚e1ö?²«$ɖ܆]Åè ÔÀóxûûþ[c ²ÊöªB(é¥D‚ Xn©êRéˆÙÊüô •fî—,"Ë¿¹®/!_@â¬:¡Ž²_ÑÙÓÈÝ>±‹¹Íšâì©+êÄY¦ºÜ$×iòÆrîðz›ÌD–‘S·aiYG¡—Ç•çñŽAÌ~­çúïëçÃÚÐò½Ã=D¥¥à/‹Ë˜ï!=Ko®J]CÚŠz; -¥—~9ƒÉv. ÎòeØié¡LKJdt±æx>²¬Š&[µdw2Vl'%ÃÇõà &_'²‹¼¥ý$ø8‡×3Ú3œ<Õ\hyÙîµFNjëòúÊpiVr¤!i^¸DÚÐJ†s0xšßŒ§­ø·$åâÛm¢Ì_Dqdýtü«—ð*G }xÄø¹<:õYÕÈT <ÝH»¶ÐŠ(¹ÓAK}¨û`}²¼Á•Gî÷™ðÖ„~Ë-„Fäº×þX+‹!ªòÊW[ì§ B†]á¾>7•Òê*óZX9€á¦©/Á@i@£ÍY!ƒµ¦=R°€‡‰´[["ß®î‘ -Å`' ©Aþgr#›WÓTG»þÇÈéÃ‚àš­»Ù­jÍ+¢"2ßo¨–›[$×—vk¡Z“°X¯ùNÜ3…DmH}ÂiZ4Üþ„+BÈ’«‘·ÕúèÚÔr¬»…ë]#KB¶H¨Éd­Äf¡ópRÅë÷i/ô1íFQÌ]ó–s¸Ü¥É»k6@Ò÷TM”EÛDÑMšï²·ì0¤²Üä9ÇÌÁa¶ïëIWÝèa±ifé:€uJs<‡ôÛаQuæIu¾Dü3Ü¥!ì•\ˇ G¼šNYQ'È`0Vmè +Ê‘FéDw#¾ª)ßIR‰’àzçß×*Ý_€Øq#ié-ÇEU½‹€M-Ôµ¿Cå)‘¾wÈJ¬Íõ>óq¿3; -;tiFydŽ €Ÿ- 5‚²kuvP=y7Ê}Ÿ‡G?ŸN¥n ñ×ÖÍ.m`‡z³$» a¶líÑfN Pd=rõfH6ÏôKÝìÔÈË3Ã[ ]>"÷JBIůšÃG_cûb“mÈì”é"¤IÀLÇùß^ÏZßi`ÝúÈ ¡·g¥ùqA¦˜ãšËÐ|{Æô¡ù~…ñÁzÜwÆKåh¢/‘nú)àl_½Rhhµ}JçC»;é{Ù1PeY®Z=B9‹`yJ ‚wCäZ…n¥¡®jØüAïÑІÊXt]J+J. 5½Äè»lŠÝÛ^î©”£ª!T]»ÚkÊåqíßS2þ8*'…?¡'‚Èe¯5”¥Û=XMšM<òv¾Zo[ÆÃîëáé­Ë»>{JOæù9!ãAÚë7i¡Hòäú¤L9Þ_ýñóãUÛu#"õF‰$G Fë¾XDJã#_¸–Ö­Ê*Cªz¾€ó]È~ed¬¯ª©ÃÝdRz$¶2“ #‘ˆŒ¼¹^éÇ3õß®ÂFo¿úij«]»-¶§\¶UÐñ?Fº#ƒ¤†¶4Ö¢àÒë¦ÒwýQ*Wã ת¸ÚJ®u‹žÕ‰ÑÔRæîíXUÍA TšGé[Pi.‘|½6yÔå8ªIæôó½l˜K:¤!h6ª±”)È4Í»M­€%­( -º£Q"{«¯ðòìùŽôÚqôYªõpíh¹ªwÌ.ƒ+¨§wœBÍÀ‡m +L4à ƒÇÕ?·zzp(QM=<è0µî雹ÉÏq´¬áµ"ú:p˜¶iéÔ'ØÀF ¯ÀùhüœàT#NÅ8Î÷Ée^ç~y?ηÈ+¯®š-Ü kŒÃ"jÉz Ѻ2 Ñuvaª9 (Ö%s†c U&pÔÂOã-"£IH­ -g?×ÙjîÀ*j@äˉX÷›Dì\Y³ÙÙ¾ähqÓLë:)eiw`šG@䟈dmÙ{ °£,Ÿyóí2ç ”ÿ1ÄlZxÑá•7§*‡‚ȧ"vSÀLëù1ÅŒÈf˜©yWkI,Jfû=U:@n½éÅò\gU6ëíQ8¼¥÷oÊ<×Í=Öáh„¥ÀìÞÝ$xŠ ¿ø›Gÿ6#ovWÿ83™šr‹“c ŒÊ.?ù×@+WQ>Š(ïK±ßêE±‡ë]€\?€ÑãU};1¯db†§³ûGæù”"t_Ð\5`…/g•Rl_nõX1Ém<›î¹X±yßµ5ªéÝèòtzÜÙ÷AÓ¡£âÐhÈ -Ì…¼ONtÅe‹ (Õ¨¨ ×lUâ×󽀜ã-sç"Àë<ïHW¾W•Ð ëìaüŽ{ýyÎcÀ¡r,[˜?ÿOŠç@qó YÎéyõÊ–¡füÇP°–sÑ®ÒxY ‘æíð‡²B¢þNÝLHð¯åª3 ;ÕEé4âÒ(nyT¦å´/ihöÚs)AIÿtp܇ºÏÒóW@h|"@mÀ!±%ƒ™,üz8£#‡ØìÝõ,ù§æaV¡èj) í±hH·#3…ˆ‹ßð«nª Æs¥ú9Õç NCÊL%›5Únc£Žm{I+jðƒ ÂrÕleŸßà«î¶…li )©LÿÚÅA6 -ÑÎTëÒJ®Áîyß÷liYûÇÈQ0€d+ä³¹ûï]Ç<ƒŽ%…tÿ~[FŒ2©D3*âÖ¡±êF†ý.¾†£yk¸3™`!ÃÄuÊ,è—.ug8QœTtŽd¼ä©é]‹Ã)>Ò" sR9´´Ì8º/£\“+Š/+CÖ¨Oýˇ÷9HÑç 0*éfU§®Jç–åÇšÞ³~%®ËbçwÅ*”žõú¤’²þZ»•l@#\ûuP¹»ôÕ”LÝŽäRb:4!ò*flk­Ùï”?LDýaæ§ ·’:ûWrŽÓo€>¡õiÅ Œ P(H-eJHÔàŒ™xçµú‚Ï› t8£‘ò—¹°£j )úl7ëÊ`F“Óƒö´7ÐG‘DÁÉãP—þ'¨Š²ë¶ø•^#Ø=þtÌo˜Ü­ö(p›-¾Y£]6”×›÷«ÿëg.I -g9qo“ÈV8ñ¦»Üþ¸Ú9þ’̘æ¿ð›nÿFBõqB’5¢n§y‹@PpÓƒ€Î,×6²Òëc¦ôz!€þÒÚYü~@ÿ©åWVµ¡NŽßµ^é sïWlÙý3sT…j‚0n•õªëŽò̬ôëߎUÚO‹À[ h¥ˆ¼U~d(ºÝ‘ZøϵT-¯SªçµTÏ›­§¼æ캮ão`éÚu]íNìõ‘ñ±®Ï4ŒÙ33‚¦u/[b\ÿ,åÌùâ´ûû¯‰Êy¿JnÖ类Ìõ[í] -d¦&Úójs뿧\Õ½ÜEu]%›× ¯ý[_þò4yøúzq·a Z»öu݈LDb%úo×c}!iÛ‘Uç1êM?]”·éÌý$%þRÕn“>éH?ž]šº(†_fjŸÛúX£™0¯ìÜþ3~l)ï1ïÔtî>‡èéóýöNëv.osÁ•Žoµ{ã–%=½Ó²Ï¡PÏ8ïže¢h»­Ñı̘ŸØ˜W‚]6õå<àxGÞØWî«©´Kš8ü‡ †j^²àúŒ'ʽ̻ÄÔ³7EhÂ=W/45à|´±¥ 'I>‰u²BÉ|7='kJ¿k¾‚"´êt¬¯Çû@,ÿúúç—DJD(8Mþækßÿýñï¯ÿ|×ï¢?õ[`\ø5™s¨LüõÅ/¿¾þ8é_ŠN=„çäÃ:L)ô8º*—?@hµ üà„@ˆ¹^kqU -a Ù`U%ÄV¤épûR<—6õrËW`OŽ» ­düe§ŠèVÒ°ôaj¸7'G3¤¶™ïÍêË·6 ÏޞǤp%©'_ÕÎ6²¢ìû-6J‘½aX8Ù S”šqÃÛºÛg¤µ­À[ã'ÏÐ jÓ錈ʴÉaLÅ2†€Õô#š(… G¦çmˆ…d¸ÖC4ƒ)v óúe`$Ì&aë!ÑõXÔ.?ñ¾Ñ¯V¼~˜Ÿ‘Chu”ìƒq²W^L`¡.Ÿ¤V#î@îí˜n ~|U>»¡3]ÌöyL›=µQúTsó&Àœ‘‹4áç—Þ¶¼_ÓÊŸ¬ØÞRM#:hòüsEôº‡“ìˆÉz~ÓA.p ðkF5¤¬X@àÄH¡QŽž|Æç„šBÔÓ§ó ƒ$ÈÍ ¶m;£µÅ¨€ 0Gè<¨Xã~ 3¢ûÕ°Ëg&g¶ÛvLØôÏ\V -A€Ú yÜÒchŸ”´“a?Ê„Âëø.v}ŽÄK<ÛÛk\ç[¯Óו‘7ˆ\ÆxV?>IÍDL—f6èç9x8«;ÖmÙlHcuŸÕî¥NHS©~g$ \Ë Øš²í Mü:¢‘°MaVZ̆ TùÄø -EÛ÷Y¹8÷MZxéÅð?´÷Ó¬Y¿ùów¦$ø˜ràÿD”M|R”oNå+Ç”û˜•‚ʯô%Œ1Þ&f>Y Ë»’%ßlW+g Í)|”¶Ë8Ó~Xšôtû¥‘"†¹ª;G}Õ„²g-&íÆe¡Ê¨Æa²ï”ñnx0íJ „/DÉö6ý¶º=ö›J“ ¶'Ï`f¾õì%êÜóv(X#%Aúà]ÃsÆìû%,9’h={Ô̸[l;´8ðÅ\–5Þa5ˆv¹L}‡ÈR¶Ùi×v2v_FxÇ뀰K,%8 -_ÕsBœvB£iPyœfÃÞàBÕkølntÝúx رb X+[«†H)S¡uDC›ì5ü%·¡¬!ÊnæÔÐ8›‰³Dª™h5²ÂUõÚ¥ª÷„»7&ŒS(†vHªÁŠúÜ/V ™Þ>WøqºTßûWó Ķ3‘ÉÀj3cÊ€sY|Rœ6©úP·Ÿ¹d¨`–,”­²ûºYÝý*`MZž ÙoC(#‘™jPŠ£Ò–yÅÒÄ6Þë 3ÝÅš­ ±Ç@€Z -ÃPßç"£Ÿ…MÍ@¿#ãa:¦tk¸4n]3fžšžE¼†€1nØj(’`÷âÞ Ò‚r5gaŽxäZýÏ9hŽÞ¶AºK9ÙPB­‹«Aß±ÎIÛ‡Q°Ý©­ßfÎ4?ì8eIì¸î]¥5`QËZ 5¯4–O|1Žo„ZmÉ#ø?ÑÓiIe<¡ÚÒM½§˜–+­ï2ž_v;ýÎTs¢öÍäþá<-²¸ìùú©$_¥s#uÂr½‡f‰»>ËöD|íÐ0˹ÐòÄòÕr¹ëæRX¿ÓVïÖ5R;2žå‚#‘æ;>Óâk åjûyUºIˆŸY‚d:á·ôf¡÷¿2à»Ïâ b ûwJïoN´qXUù7Z)úÈß^”¦®ã›+%Õ•`MQ¯ÇæKy9·¡Ç™WrO×cA%¤ô+NzžˆŠyú`ÿ¥c”DýV|¬°47¿ŽCð¨Ääêæm7£:Œ¿Q¬<Óp/@eBìжǨcÿî ÀÂt"¾;õn…ïÊ¡¸¶2Þ ºåáw§jüF›6ì*wZ£žþM/@»ùt7,L76´¥| P<`9%"¾§Ú W ˆ¸#OMn¡jò`So€Ð™«ýš`•êËÃpZ²öDT°«T5à}ZYL£ãp¨ -Ä?Âý-Yh#.-—· mÛ`€á¤¦æÕ%ªQ9¤oÀ%üøZÎ+ñLòYL¹Ç+wÙ† ߢÖ;Ý(.U™­æ+üC»óÄÒÇêÀ`i\`Q³#!É2kÁ‹á½×†H7Z}B?h#® g¦aZcî FÈ«ff­Ûw¹ÑÕLÙí®îÚ¹.eÇKgâíjp¨Êdɽëq||>öa|K'Nz àǹîI`;ä‹•è°ÕD÷}ªy~ä^zç¶Ý¬oKzâž·3W‘ãp¬ªÎ¶[_oßh—a£¨*¯¼]_%âz•ßaBì½6Z÷µ0©:+`ÍsI2äeõx<ÿ¾ýø(ÿ¾[nïN\–…±øÄ‚ñZmqžÉuHX‡ãúñ¼~\t¼k ‡µHúc‘ýxð†XPP™Þ}Èeµ¼«¶!)*dÌáañ]Ø*ãe.æûHìå·—åóæÄh­-ƒ ¿c1>âÂR¤èÁ«°¶ÄÌc/Þ/šF®…&oN±sü».T,õ%³)]~5ZéZÙ®)\ÖŽž³üøîÁI¶EEX[,±Ò»ï×Ïô\m<ÒS¡îâ¥wýŒ†3Î mAx«‰!i÷ÀhšÔ¶U‚ñZ˜“ЊlÐÉ’ÈÃ6<F+MB¤­‘”`6lgùžÆ:¥4è±0vDªsÅd¿èTsYÆ“Ào*\š8ñnFë€%‰ûÜ52™ëIX$Õß•tÿõnIâÊ=àvè. ÞÂ`” ØN/3¨Àg¶^(ü„•pÑÓ:!U–EºJ†KXâR³ }jƒþH=>d­³3eø —©ä{ŸT»È¼,ØK>‰B¶<'Hp¢0„ùWDļBÇ’ì|öm[,±†Ø ±à -ôòÐ$ðR¼zÒ´€ï‡lçniªäóWŒÚüÌ4ÇßžgT°Ž¼kH€-µ³ÁÐÚ¯’þxÔÕ%£÷|KÑ[Òï‚ ^—NGÞ•·Æ‰Ý¨¸:›„8LJFéb˜qŠÙ½DýÖÛ8 —ùòÀ=ÑjLvã #˜t4æöQ6…që•«™†gîZÖfkª ÑÐu%|šÑOSÄiËi -Ø9DT4{K+á|¦$¹5ËyÚÞ¾eœ:­(„*›Y¼¾›È¥‘Ÿ¥óJk'1 -ã8 £›-º>-![§gš-ÆòœË êHé:ì·Ké©yásÒðáÆ †’b£#ê{JCM`¤ÎEjZ:û…#*ë’T<’ËØ\B-Û$¦Ïö¬™{~Rý{aµ7"­hdZ²¦,’û€³ö´8,ÊSçÀ?­¶­¥‡Ëú‘ØÉ´€­P ®£®ek&çèîÓ]\ÒØhÆÐx•øÕ6Á£¯lJÍÈBpýÆg]/¦¡ÍæÅ&Ááñ‘Ó$feÏ—Ç%ýüdÆÓZcù„øáÂLz°ã&ÙŸÁÝÓOˆqÉaîªt™õkA¾PîH®\ۛˑ'ž.#ŒîÆXÖQ+Bl -4º…8oŒþ£ßÈåSìòžËÔpçÎò†eeNXëCÔó£¡vBïË(1¾¯!÷^_ãJHÊÔ-ÓVqUÇZ4ñ67‡·ÌeÚlDbø4ÇÅÌ~a†Ù;4NÛ²”,¨L¥ñ‹qŠ´®…•~àxÇ%Ú+r²ÅlÑXSËr`µ^Úi|™h ¼vGÓ|xëWó²$Ip`§Á2.‡ÏúíÇË’èùiÖ¥¾'ý´ÚxÚÍ¢æ×:Ìž-EÀ‚OqŠöwÐT>cHJ~a“g Á§&Hºž—¦`:­WÖ™zÀÛ3iÞ`¶L¸“f •k•}ŠÏ#Í£çþ~«%Áüt´Å_ÈtçÕ¢!íX3m(‘" *Q¬ ‘3]HÛ<­ûïîl8w¯mž,Oi·#.×"„¼ qG\Ç=í*yU> XvžfPàæþhM¿qË¿ŸÙ/¼ëX2p´MMEÓáv³Kz¼Âƒ“°—™½Çxo¿ÁÞl‡PþÀòŽçxJQÆ×ç™óõ󽂕V»Æj~²­÷ﶬšÙ+4„sqwêäÌõbÊü >)ÌšÁŽ¿!¢g库bT.4ª"=‚k!M3œ–Ñ §Þ\ûcHJ~›Q(F“—$>½±3Ícü±ãVêJuÿ´e}>‹<Ƈ*\‚(…Íãèé”ôAƧã;f³î‡±ÔV¶þÙÓã;e•Û÷rŸ#|¤–6ž;ž®nôŽ– á9f{zwí¼ö }l«Iû2( – à„›£Ž„àf³Ó]jžä’*‰"ÆÇC¹ñ+°uˆ3@ç}°ßk÷ëÑ&WTç.­2´¿×(^ 4C›šš@ƒÄJU -GÉ>®Ýˆ–™ƒGôLâ]ëzáMâÎlÒ:|{îØ£‘ögÙDˆã5]‡>±ë¡«+B8s$²E©¿ŒÂHÓjø@Ëþ:Ò_À°á1ýz:ŒÏqª×=¤PçgPk"ÏÜÍ£}žç?ÐÇÛWooîN¼ šàÃFŽyöÇ Ž›´SÂÇvá(€Ù ¾¸#}dÈb8ž¨ÇŸuPØ)KM `×_ý¹±« -UÕÍÀ{òêk-±aYiú¶?Q•`UíÕ8Ì dæ×»}{‰IÁoõ`±‚z -¤Åª0†˜üÄ‚.ìç‘ð4¢²]#¢…å4Â!Äe¢Þ×k‚/ž²V??J,e»Õ¶mz«½ÁãŒ#u’ŠWÍ®W<‘.PVÕ` Rú°EŸÁóZ—D¶ÆØÊwÆXãkó«£àìñ<%&p¿,Tßp ˜!„Z>¡"1äW²ûãÇ?üžTaŠm˜ê*ŽüúÏÿúñï¯úGÖ/ñ¸Î(yløø%¸þñ§é²€Î¯Ô¹Û(Ý°ÂàD%gÅ´!±']U\øøÒÎf|çXZìÚ?q@¥ÑgàAL¥hD,×¢@T˜À0>&Ao=Z_Žwë1¡f_óîïœ{½vÏ<,ík?HØ,é%êô¼ïgˆY‡;û­ëõ „éŸæ -$™= !Nô3ÞÄ­êÛºj®?NÚ~ñªÑº©=7늨‹nÒ™eâÁÓNºéÒ4rVô.F@ïÁàA®ë.$Ž±LœÃ ¢Ý”B•1Ÿ¶áGšS¥þ\¾Ì4T &~YY«_ðà€L—:;ããÔW‹>œ¸Ì¥EoÙ\ïXÕ=hteñ}ÍEOлKÄt2ÍÂ7û¶½©X3)ü~£k»×€Wã®þí&QÐjþØ-¬[JÀkS=bôjß.¾\ +b±§ùf15®´ð'õ–ž¯¯©²Nt8'„Y’¦×ì(›î)𲮀+uÕÒ‹šoóòH¶\K<7ƒ*”ÁŸÚâÖ os“©ßx¯ÏèÀ˜7›G²Û¿Ä*ÓqeÚdënTñ×`¢ps¼€¤Ñž67õíQZ‘g túaÚ(FüÇ¿a÷¤wYoTøjU5`3ì'æ˜æôf[¯?•ññÔšfÆ -­i3úï¨L£:g¨lcÿFe’´šNòýÿeT–A®Í´ÔVŒkUX«F¯PÒ„Îö‡ÎZ‡Àúˆ+Úw!ƒf‰ú‚°êœÎðÁš6 -ØD,Ó0nú:m<:B—fkšÎðwá´c•™]ý¼ß» ¹—óøk¨[éIÖËDÔû}„674Õú1±cûŽƒ|»~ì©—RÙtèˆ]¨v=ˆçDKÝõ"±$œ sšÅª&0>Ñ–2_D]q•Ùòm³˜ƒÍ áôß“œ0—žâÚí1/ÎJødõöŸj¨Gb.&¬ Ï1í§›Ë­Ésõ¸7”MÁwÓ¢f߃µ’hÒ–ÙŠçpzçöË<þ }i¡ùf—}¢Æš,žØOªš‘¤Pë[Ž7pÖxŽ!#8À}ÂÚ/ï‚WÙ›{Bg×›.#Q·$¯Ôio •¸Â7A¡gÚð;û;#Ä-:úJð±3Æ\‰Bê%Ž·×©CîÃèþåçï7ãW®€Ëç -‡Ý= ¥Ç±Ü“ùº¶s¢pê³l\œoj\þs²×N¢ Oãå¹9Vü®§'-É4/ù^5°¶xlܤxJLÒi=¼'-7¥ªBú˜+žÁ¯ŸæÎÜî -,ªwÅb]õË— 36BŒÛ‘L' -(AÿÂ"±)>ͼ¸¯»Úuœ{:,ëëAðhÍptâðú×ceé -’ºªÖÌx×4±ÜÞ´µnÊVƒÄ9þma+ú¡³Ý‘jÀŒ}¨ˆ.|s|Fm£Ã‰-“ì±Á=-[*G›<…½Ùü˜ÿÌ1ºçÿŠ:ÞžA®áaÁÑî<µYÜ<°oV\ø²0`°’CEÛtZþòʧ~éÜY«÷‹«š–¨9ãf@"6Ìm%ȸqã™5£&Á“þ¡Š$©¿P!™AõaI‘£çñÖÊË‘` g&C׎}]ø¡í¬WmcWRŽfüzÛÌÕñ\7ÌdyQøÀTH¦gæbºlV`ØhTK³)*K5xÍ &0âEµ<Ò;²¡¶”ŒýšŸq=ú -Ú­ÿ@{Œ›´§=v]vlUÜC?Lb%;ôx´iªFS^8×~zÛ(B+déºI’o{TŠ©ìk}Ó,r}~éˆöÞÓ0ÀªjõÈNœë %õ1ûºI,¢45rD¦&ö’¼ðÛµ Ò -$@éSÒÉeÃÞtw1 -C)–7»x¨…p‡4]»Æò|iqlûš+“oOjØW³¾½}Ô-•ÀQ¬4‡‘Öä8P¼»®DïÚÍ -~Cg…1­¨„ëâƈº Þ›õæ€ ÿ‹/¸øcµ.ëvLq%cTz{¡éèÅÕar¢¬?MF³âóêù¬¿Ééçÿ—LŠ#;'.vËæ/nÆ–ØÀ@ø`ñÉ0°Â[ÝÏy‘cª»çh80)ѱú³Y­bÅÉ%œ ôç -!!ç·îŽfë«coÔl ”Ûk‡ÀºTÅŒØê+‹Šr³Œ¸{ºSî­Êfû@9*@Ôª¦å…D\Åíêíõ©ïl©ëeG3)‡õ@dô¡ÒRç{ÖÃ:jÈVz8q`Ó›'²Q¢dÝfWb§ò -Ë,\m@ ­0B5ÅRBËÍû³æ† -tIa˜+þ­Ùbñ‰>£¶tÕ½´NK(p™Ö†ó_®Ë$G®\‹¡s¯ÂÈ‚úf=9õßÿô󊬂aÀ¶"啕—¥ÞÃ’ç„~êGÕ7÷Ð"ò§ëQhØ/ͱ‹Lê92fèÏßÊ©¦d VÎI:ùQÎâÄ¥"_ΆËz§#'´J»Â– Bµ+ŸŽJ «sâõÎÇäwv§³^]ëµ×°IËRz5Ç2Üçu›ÖÆèïÛM fK 1 ‡¹ßµŽöécÛ/J>õÛ:¾þoÒúÚ= (]6®Mèš‘QxÞ©„¯ý„´Ï†éJrÁÂôÄfxª–ò¯Í¶Ó¹i( qã dˆW/U^Yi9kQ'õ)ß|Å^vº¶§º«Jí±p&‘•“ÒR‡µÑìO¸Zˆü¶H!Ý19Õ§ÒmDC¯eY§ÎR4qÌ<¹ÜŒ¯Ì‹+i£~"ËÇK<ÎGlfsõ¬¤Gð„ô6õ3´üÓ#«;ZB³6Ë!D;c˜³$sÑòl~ÐÎ|BK3GÅ¡£]ó¼w-¯SëvHU÷Në5Œ5|ÃʪBBA$g­Å¸J Y‚‡æ²ÕÂb4#ÒjÐËÜHisíñ͉rLòžW…·ØäyÒsý/ꓸ]‚«1â—t¿Æ=&®+9å©Q#9™ªÞL—:îÅÕqlã>ï zú¦~8꣑£’Ø~@RßáqÇúŒ¨-,¡4‚ÓtN(,Sš¶w8Át¯`Ñ WݦFb›TKå-úª’U¦ïÉ„¡¾¾>>×%±Ý½=ã+æìiŸ#Ñ°™˜¾Úsš3$Õ÷¥Ýƒ]¯MçY4†ÈÌÞHR«ž/ÖS3¢ŒÒÖÞuhJÊB[ôpØã¯ù Öo?ÒkC»©€®3ÿŸÏÔ§O!Ⴏ¼Ehņ¥Ø¾z„F-†Sg#ÒEº5¾q_lýéª>8$Ç1aÍg’ÍZØ9sòÖ÷ŠdNÈ? icB-42‹½Ž9&©›^‰IfÚ”kÒâ>¨¥Í -ï Lød9´à §ÒžÛßg°ÿ´(eÇ~“® -ýæ+…t+Hßn7ví0 šWÛ–FBØÜš­ªd¦ -…b-(#Z-{§u¡ ª•¥±Óí¡€÷6³ó2ÑÎÆ{Š›ÈÐ8¿Xp%:!„j; \KtÌ20<Ñ´IAq/H‘Õª av¨›?Ýn;ƒZúŒ׬4÷M'N÷*?¬£¼b-+´«‚ÛŽNÈŠÛÐØá•xb°Wäâž8ð¹½E9.+¬á.ÏGc€sÅÌ9Úû-ñœ²"‚i(L«§åg‹¬‡Øt‡5‰À¢òü2ÖrOÎï…«¥½ª!"ؽyÏó;ýtdfCÐxÕ Ë.øSòºFT¨¬ó2ƒÅ·]¨.˜ $:Í®9W}R{о'äî sæ3·k%ºÅÜDQȹ♤$’ò¼š9½ä®ôOÝ̯:zfì,@ÀyÛÜ;ãvê‡mQâY/‡5ͪ\ÊK]¬'>c_!‡¿ª¬t8zì[¥½ÿý$y¡?¦/nÙ\Öøý·$~›OÙ6 ¿ôlQ–ô«ÖÒPÚö»²4í?¬ -0—°@õuH-x5Ïàã:Ñj4å"M¸¢As’¾ù­;i:v_–l«$ÕízÔ)ÃGõýËzÓ5ÜX›ô£hŽ.¿¤oÁÆ©¢ùxuÇt×Fmt1Ԓŧ‘ö¦ÆU«áëíÓ,Žl,s[W^­ë!ªC!c™…^Ž,Þzá4/Ž!«ÈŒ!B§¡ÁPŠ³¸µº|Ý(hdüüÆitÂÃb…¦qÝ9¤„ÝÓ(òq -(௦˜VËéNˆÊ¡¬žª³¡-Ü%J¨*›ÜMƒ“`v®b8K°â¥7Ï€šöZuj++~:ýýKÿB²ðþæ$]c €æXÙcÃ|8A€ÍnÛ-…¦FWQZ›‹ê›êzŒÔÀ 0mYójü ½±ú~g»z¯8Ò-ÕáCÂäëwû—Æ ÷•Òº3¢h‘ìY£É1oP¦7žqBˆk†'îNGûªÕùÁ×-¸ÍÅCïß qb¢ud?¶$«Þoâ@› ´3=~w:©:¢øTŽv¥å—/å$Iîú©ÿ¶ðîúØÑÊzX`_W…X\©¦ÊUÛhçßa:mÇ£uäŽ,Ø–” à ê 8𸯹¢U<ÔPknS}}±@­÷nÏ®-, -Åh¶ª¡&d^Ú­Khš"Þ8Ñ·ý<{™0‡Debt1+"SQ¹Šý­l·!K"è¸*‚•MUÜÍ0=ž riÇùaë¿W¢T-;ýS«¤7°å¶zÜ©C¾Ûïú;‡­0Þ/¢qÞÛtèÕTÿ ‘——;öÔYíÝcc  #À@sãjÐÊHçwP@!ƨ¢c´®ŒmúÛÝߦ(ïõØ4Çl`¬áן!Iây*yX ôƒàS‚$–š~æAfŽ/2EªÒ/bœ)’ÖõLåÆZ!4óm~hK@趌bÌÓpLd·ÿnUÜ<}íÃ*(¿H–Vwk[±²ÙáQÛÍo ŽŽ(5—!+IJJŠpŸé^9%_^½]Ç#™U[ÓÕœê—üý‹¤p3TéˆqIT±åͼÃ3MüpžjG•ˆeiP¾L?a7øTå9Rÿƒ€/Û»é`¥Íƒñºfwp ’wçBè8vP£÷0êOr92ÿ‹÷P,íKïË|Ó·ÞÌ"÷Éì€xhµ%Õíè{Ÿˆl‚ÌMZ‰„O`ÎeJå”ÿ€·ÓM±Šñ Â.¥¬b‡Ö;Ìz§3Nl¹“ -4¶äô'‹z·Ðõà‘>X#˜2±–ÕâŒX5¼i>^—VŠA¾|ÂqIŒô¶ÃÞã•Ð˜IBÐ D!ËM)ÒŠÚظ{ÒI3Äü[2Óm°ãEŠöÄ¡U“Sk%‚©*DUÞà)¶QF/Ø®L½ÂbËç1u 6\ûÅ>Ù§Ío_ºëÄ¡*êjHJC n,HáÆlmg»ZÁƒGìj¾¹ó˜@öñ·ƒ Ý.Üš Çèƛۖ¿¥?ÐÔåouàþ1Ì–©ö½íè‰ï°¼€QÕk+‰ÅÅ8 /hgTVidî^Î!mºƒm€õßf÷ Ê›º†mºêôùÿÓ3gܽæb3â núÆ!—éX}I.'‹ï_7̽|™²BêH}'£‘½²ßï£$ÓOG5gK­\¥{æ]Ê ‡Ä…{µ¾‚#jæºLSÇ4«S6ÍÏ=d9È0èÓ'Ñlxþ²{1¨ ¼Éáªgb-¹Ïé¡ûÿ1¿lKÞà‚ž< uÆ3ø!Ñ%hÃOe{bÉC8b}8CJ×s9”0²ÎŠÕ`:ýÂÝj‡ó8­ÐÈ@j¥3´Bç©ÙÀp£='“¸%ÕÛc Ö«WØÈ0U¹?@òâBI8œuÀR*Ä¡auÉ›Á+>6u;”óZ‰`ukÜ!ÂC³ûo@“>3ç|“Ý !¨’{OÊCõŸÀöE$ú?ãe–bYrÑÿZEn ›˜‡eh úªídÇ,žTÐ DCgÅ»S„»¹ ÓˆØ&Fc‡?‚`¡m¶Lf‘¶2l¥®|½Þ§Çš‹ó’¢z+±µUCbX…nÑ]*ukÉL¼òHl˜Õ´ ™F8 -”J‰)u÷YÉ„‰?¤‡c­¢€'äÐkÞÊ` -mŸ Wcyüᣱ×ðÏè_ÒÙYKš»Em ×¹!às»˜Ñy-ëÆ$O«"Juw&È“Ì Š'Òæ1-·»Glâã«%,*¹:Zq?ò< ¨-\Iå)ä2ŸN^Ú4·é7¹I»´Ûí=qñ8dy+‡8 ½ì.R¿zÄñÆìù|ÝŽ°÷âMˆ 0§Ò¿3gp?íDˆ¸5r¥zö婼(§ª} êŒ@ËLé Ê©C-Óî ª’ž_xRða'ò" {5Ifnü¸Öƒ•X$\l,ü²NqÀ¢ëº‹4Žû¦y¿Ù™Öž–JžGµ/Üs¡Åe˜A=bwJDœóB9‰ ‹-wÒL¬^‡>ð„³íN&7ãjxÜbJÓbâ(™¨©AMlš©m$Å3ht¨}ôÕU*‰3(†‘,†ØÑ3öªV“ꢸJð"*â¨ê?qÖ9;4HÉÙìöýîúùãï?þ¦¼ÅDÁ{üŸùúןÿøñϯúáÉ¥l<À …”WÍøe*üÅë†À…aØQUèz¼ÌDשûÌ–¸NRÁ)kž^Çñ`ˆJ—–Mت­”|Ñ©¹‹¾PÎÃè›Ði_K¯'bì¶^;g÷­šAg›D™=ý«:7µø[¶>,>ã?/à³èÓ°¢iÍ¡uD·›hjquâ_Yh]S²sÜM¥05Ú¢¤(ÆÍ£$–‹Ó—6[½µø nú#ºPŸž™¿ap†M¹K@³Ä‘Øðã »Ô !½•h̖߱k¥TéEX™ÂB -Ï šëmú·[Œb9i'‰´ø@òßwz Û4cÛY`›¡EÕ a|œøu‰XTÀyíðw½ÅMšæÖèåoĶ!PCBZnbž¥©Ò‘Å{Ì’àrOO3ËmÛ%ÍBA虫b£ó=\B~ z%À­ü2lÑžžQþ厚aر¨¼•L¶ŒRö¦Q'ÃÌ0‡Ìˆ,3ÌÚIâ£å:˜äRØ-ÄJ -t*ðu¡»¨Yk¸ ²‡ê‡¤ÒYPiRc>š›R«½€yOš‹K³ÏŠ3ŒÖ±¿Ã -‡Ê¶6" ‘q\ì³&Ä(Zh«Z¨5üÑêŒRu¾øoÛ¾’»²ìD-ÕÙwc 8j3öq-*͹ŽaZ‡÷/»Ða© é48º–ŽjÅQÍAz£\ÕTr<̵#$v)[c\Gd@ˆ†TÓªR¼ä‚:¼}+2iÉ&+ÂÑÇ“Ø©YÉdLchv=ÚëøRLtÙœ.4€É¨A:B0Q³Î Ä=N¯£ÆÅ1“x'þ|QÄJŠèÎC½Wʦv^C‚0Ù W{e3"$¦aäž›œ«I-ÑGÁy0ðÏæ7hpÄ -t8 Åð˜¨mÉYT”B83Qïéa‡Ó¥eî¹pèÙ´-ìÓ ƒÁ£¸Z¤wšñ¢^Á\ÖÉb«T­›äfˆQEv[ˆcû1%òrÉd¶ ‹­èn¦Ÿ— î¨)àíÝrüÑ%­HáÈAlìp8´©î¸F»'•eBm 3&˼ªé} -£¿*—°Y,–bá®â´_ko¶r#OB½ rÌ„˜uµš‡¾bL„çZ:ŽzU£Iß$„Á¦)3úý„ªckL6?ªAÝÆÔÏ¢L«ŽP»B¦­Ú˜”ubÖO‚ÍtBs0Që¹&,?¤”NC8Ê_|ü§t6ÌÇ1#»n»z^Â[¢ýÊE«: -ÒÀ¥_ãמéùT9Ðõª¶ 5²&JVÆÉѽǦJP°â ¼Œ[¹¦‚Š2À‰ËB ¼9™™‹ÍøÔpQwꔸM»ö‘Z-‡5 g¿ SW¸:g`nc[¿I:*Çñ'ðÎË=Âr kH&YÀ¾_Õ¶™y!1`“úKY9¸iGÍU2 %°‚6 «bý¶’ºî“è-¨hÆì#o÷uŒ [i"Ŭ&ˆ>cp&/׉Ÿk¸T¶d´ß<µÏ’© íQˆPq‚ÅöøÖ1Þ„—32ò5i õ™ðçŽNº¦f­gkð Ä¥NÛí#[¦ÞÍIÒÇ9!N¸î»ÇP1«Ñ´üÝè‚ø~©4%ÜpûnL[®+Ç‹°-êžh«yL*'tH$5F»`}NjÝq­Ëy€m»ÝW«rlvçŒGîÅ>¤‹*zAÎ-AfÅ8v"t˜ ^Ìа»iÆXvìå[õ\lèk8Z|‡ö! -®IñæÎ$u'Ýp!¯4A$e <þzr+WQ­Í¼¸5`­! ޅêÛúÑ(6¡e³3£3VàÚHk˜Ï|™ëjn¨y]LÓ¢7r³ì·Ç\rÑ~¥Gd~'¦ÿ7}ŠvæŠîÉí7ïfÚ½·| Éq¨FÿüpÁ&.±=•›Ç”ÒáöV3öª¼“› ä ;Û§(u'Ýôg±ëˆ9v³%Í68ûžoº7™fÙÔ’’ $­õDŸIŒq!¿º¯¤™…cîk5ø“´…~Ÿµ,; -Ø!ÞP#ý6UÚô˜‘öºý }ŒÑŒb"çA½ÄŸójÊÑÀ"9ƒg˜(Í©M56 K©ªÉoª_UÑRÍÀ—í\\‹é4öò&xÇiÙ„ -u¦æw» -•«r]Ÿ¾†YÇ1r¶i²øÉmæt´½Îø(Ã6…‘ÖÒ0ÃÒœ,»y¬z9-tzÄ -™öBà½ZHT EŠÀYÔ„ÐýØâ¢ù„P€_ÅЫ+“9_ ›ëíù­+ƒÌadÏ t^DílϦíUgÀDÕèn†É>ÂÿQ!•£ ù¬]ikOb$K[÷»mñzL&8o2§ð¸í/aUëÅ7¥"Ë1ÈSj瘖¡˜#ãt<ÒSbô±RÝOˆ±|Æ( ±{fÆv F ~ÝäîNð¡mïg}¶S«X¨õ'$õÈJÓ¶uÇY¨¹iû&{º*jt‹Xw®Âº5Z]¢s:(ðçÿˆ¼lk¬)Ñ‹!‚ÿÒ&eìO±~z_CHLfc6Ä“ùXó«X…Ytÿ‰u§»$v‹5ÎD@ŽB*¸€ ½š=åœv–÷y`_=Æ$f¹žã´uÏH;6ÅAN(Â}÷Ò(WGÆ›‚Ó^‹(BKé´\p’JXíg¥™aч]è­#9u¡?†é~S.u,ÚN….´ì=VÓþoÛб\ûݎ˧PkÙÔ’™“Äj›«qÕ;8­N¼3+Ó2áç<¡*×É,;ê£ßXÍ…gÀ›Œw;â÷µ·ÀîZ÷ŽÅ_À0ÿS)kŒÞ÷']e,ágj¯å]ïŸ^S^ýp|y_Æ°ZÎb n¯ïî}íµKÉõs½b¤´ºü• ÏhŸ¨cûîÆÐãmŸ^³ÂÞ$!©Ó‰íßT—=².µCó; -†àÿŸ˜z!c Š柢%¹/è”û|v·í½¥¥ohÈ.‚øíd‰kö‹sC0Ŷ·ïè0êLå¢-Ž*¢±áLÔ{Ý Vj´舞­ï_Å›•â•“Ëî6Gíoäüù! °;ÑW­ã½bp\¢˜Îíæcèž_ΚL·îà ¯¸‚. "ù%õÁãyÿ®íE>jEß>—å–Ó6KÏý™ëT½ï~ÕнÙûM(–Ö„ŽvBçÝ¥ãé_å7]OîI.L®tÌ -únN¶•k–f°*ÅóE¬¹£˜P¯a¼uèbؾ2”OCÒ!ƒT+&®ãdÊØ ¯ÝsÝ‚Ë68ŽNÍM-¿ñ2:†i‚+ »ä*Ï>5Þ% pª†¶‘åÚD `žìDAûAwtÕ/TúmáÇàÓp1Ó¦ý‹ª­øl¦‰©ö+§¹QtÑrð„ä¡&³¦Iچêä@7pq¬Å+7ûÚö‘Í}BP¡Zåc¾iØ-ÕÎìÇFx£8d©7!nUÛ@z€‡ù¢cdPôpRa]˜‡T¾Ý½&#Ù¡‹%ìÑÕ¿Ó éáŽC -†H5Ìx*®sqÔ@0&Á'‰- »¨üðø+g´,½GG!¦;ä¾=‘þˆÀ”OâšÛZåé‰5¨ŒÄïj+ù¶[?Ž›ñÒš¹Õ+o¬9¼ô<°SãË;¾fÿªS\ô˜åþßF·›òM.œ N[$5†’2cŒd©nÞº-‡Uù4r„Y¢¡ §!Uóû†-@-¹£Ð`)'q9µ¿âÛ¬¬'ó ûx¿è'×Á2þ’–Šè†ùîz ÈÕÓ)3p\ÇõxÎúf_Vy0EÙíŒ}Õö"èl^Yå(§‘2(™õSOݼ£þœÑOÖ('k¶Ù1¢f½s½ eÚ+“ÌHöÊC£‘T‹¾#¤J ÙvÞñUaLÛ~)íñÿŸ±/41WèÙkŸW?3š£ÖH©Ö‘¶Ô¢,ª›c’Y)ŽÑ Ô*~-×;á •¸Ã—¬Ÿ×8†‡ãzmÉÔò»NGXáF¾,Aæ#lêªGäT¸»°ñKÌÌe‡Ð&Ø¢uj>ãŸ4°G%i󿜔< -ÿ"׊*Ý$;Ÿ%=(¦4ïZPjJ älz³´£µÜÏÂùÏè!LÞ)M¥Î•jM¢ji†~Òr¨>¢v$+Ä5>\)$ÙïG;”•öë&èl0M1½¶A^µ@7¨¢Uõ§‡á«ö*#çþD)8mC¦ª£@ïY¥¹?4Ëz®XÕt;Í!E’4-vZÏ« Qñ¿¸lGÈåYÙ¼ÖÌmפmÄá¡ÞóB½hå³heŒDšŒê†f7태²£™6U°Èí©7Ö€p=QíyžžÝY”¡Ž~z¬k÷%ê2o¢j_ýžÝ^$Ì:u’h^Y|dR„Ö^í™ÅàÈy“2Ê}…ðªu¥PÊó’•P£'g%bç¯ÎDá1þûù-ÛSqÖU=.o™ÏcaÊb\>‰ä*ÿ4üuÈdŒøP?-ççEòŽlÐUÔX¾8¤ G‰ÅŸÙ¨Ô0²(fúÀ¥?aÉ©¾Õ篴ÍB'¬‡0Š~ªÒJÔ¹Í - 7g†f~”ÐÓ7‚øbµˆ”Öy2C\UìØ·óúÞÂrôÂBÌ wúÆœ¬:VãzDéhã Xbx9lJPÐrÛ  h]ãI^¡X¢éFOrÞ`.ýßã}ŒwÊ·‡׬ÿÞËìûÿ¨à?þüñûÿýöë/úóÆi,u -endstream endobj 82 0 obj <> endobj 95 0 obj [/ICCBased 49 0 R] endobj 10 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 11 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 12 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 13 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 14 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 300.0 300.0]/Type/Page>> endobj 104 0 obj <>stream -H‰ì—Mnä6…÷:/Ð4É"‹äv:AV“ ð"0ò³ð˜x‘ëçU%±Õ3= KÁp«YMñç±¾§ÒÓ/W÷ôñ܇®nù¼GÁþ/òñÏïËoîïåéúÜË› ¾TÂg-ò™29÷ö‚ŸÂϾ-Ÿ]tÑ¥Ì>qf—(ûØCw/ŸùéÓrÁ/…ñõ£§ÔÜ¥øPóÞ”+¹—eôXõZáš|nÏ]âäC‘j÷•‹»äî;W÷:Eª®‘Ö|Î »ëžz–H¯>Éð|O‰1rœ;ÅXŽ#í¡î9X¯|,4–Ô·®>yî˜8bMš(Å9€}fÝÈ*žu§-£¾Ás©zô±Õµ-w`z¯=R€Hµn#lí}’=Ô| -²hŒA2j"Ÿ*iÒy ãøö>1ö•d´bkmQ¦”›»äPŠ‘4¸ÎâáöÌMCÌ8gÙmÁ‚¢ ÊÕ÷ ª|!ž›¯:1"U'äî[‰{DdSœ{5,G:'tžšýLÁ©Å“}éMw|&¶Î•ö€ÜÄ„]ǹOíf -2M¶ÇpnÈTÍvȠׂäcíA!‘ܺ/8ÝÎ@ÄÒ¹àìÊ!œx®v›Ø¹M‡&Iþ -äÈfï‘ç/F™k ‰”,|$BÒIª%a¦= i4ËÔ'fŸ5c1JHy -ˆ˜VnÚBäK”ÖQ IŽiši${±§ç>s蟫¤’¨Žlâ”fh”öÙ˜…4ãØ0JÁ·¬k×lîM®˜­i¶3+Q”Í—…õ„×6`Kš™XnÞšÃáÖ¶ øbSÿ„×.,¿ší^Ÿá§ò瞯?Ÿ{Zìi±§Åžû?Xì_Ë3LÃçŽj–¡Vδ¦ŒÑ›I˜ÖÓv£ÅÏTÔ"f'™¦8rJ¸à<Š°Ýzsp:flWíººLº²W]bh.'ÔØ=„ƒ‡ û¢µ‚J«_eß׈µ&qÆ13 f2¨h´6 È—9sö$šË‚äð耄ë°ê½ »¦Šñc±œ›>J:²+MO'¼à<ÿu§T¥²,›4jò”Œ¢‘<(v.*’b•ŠÎÄüT'ÄU(õ7QJ-²N#m¨¥;Ëæ÷Ñ;*Xu"K·ç -NÎZ²Dû¦j‰%ˆ\NÄ*âc¤¬«ZZ2¬ÑK§UÁ’žÙðBë¡‚å9Àên¯jGµ“SÅd *O¹uÊõn¹Žù•ÅÐÀžMTQY=&0ù@`¼EÐ6T¶w˜o,7 ¬+㨴è{í¡Yú|]ŸcE)­‘yP¨0®wÀåoÇpüUàúpM¥0ä²Ö -\5àè¸8€c.mÀñ8;°°óÅÍ[àÞeO§V´Z+,yC¹Pä3aœC…U -zàe*὆§7Y•PòTµ#CÓf/dhŠ€ª[s*£ìCU«NEÔ¶h–µ8„çªfÑpÌBƒ}‘sž.8F£3 ³öŒî¢[]Û¢È9EDSÏ<}êa²Mè&Sˆˆyp‰5i¯=ßâm™uêõ@¯£›A¬Z6+/)5M†o€ÙѨF Õº¡i¨*ê÷—M²‹9¾ÊUéPÍÐ$·ª¶Š6ŠRkŽ’Ô8ÍnX¾A†c]”̶^—A¦*œaúSqý›[ Mµ¸Éúïíìë¡Xwµ<Þaá‹(N›9•ˆt±®UÄ ˆ|à°¹QS ë ‡Ùh++‡eã0¯Æ9¤oqXsøÝžuªô½N•RôŽKê­ákwðµ_ÛŠŠ>º£/¹µ¨8â·–ìÌÇøÞàG_Â/ tÚJ_YÛ¾x€úÔ¡ØÃck z<ÐãÇ>uJõ@*Ë«?^.ÿ 0<\²Í -endstream endobj 105 0 obj <> endobj 106 0 obj [/ICCBased 49 0 R] endobj 102 0 obj <>stream -H‰ì—ËŽ\5†÷ý~ã¸lWÙÞÒ V¡Yð#.‹€²àõùÿßg:“É(„›V”N\Ç—ªÏuó›¯éÍÛkIß|{M—÷—’ZÙþüõËåçôçåÍõ¡¤Ç©d ¿Ãù[{KéÃ#>Ï¿}¸¼O– -þXªµç=ÒŒÜÝjzüãÂ/üõì}¦£çˆ´ò+†ÍJçh¦ÇËa5·2ô­åðÉQà ri–F^Á™¾r‡Fn¹—šÞ|÷Üg§À<ÏÕ’ÙÊ%š$5Û HF6ÖS]Ãæ°:ǨÉjÁ¡Ž#J6.‡=!› S[fƒsG†=nTgäÑ3ô? –k<Œã™-Îùœ^-WhoͲ7XŠ±q~l˜q@‰R'Æ ¬µ",YÓ„½kÒ˜\)X1 Çviu³‘ó…&ëçÌ :N˜š@k*[—µ6¡™›Dž—Sq†‡4­Ö09¶-½H5k‘k YkÁ{ë5{™p§­ çW-p˜×qnÖ¹g_yÍmn3£ÇÃwxw¾íçžQ³6r'#¢J3hÓyŸKç,Ë0}úŽk$‡¶]¤9hjnOHà>†qiû„€Æ+ã^8\0³ŸC©Ä§c[Á/]x)‡ûÙžO‰ÓïN'éÙ¹1.œX½;­‡Ÿ"ÝöXÆ=zÔgã`c‡Ð–l†Z[^C6!†qÁdÚÉ*õ–g_'£‚‰½ &úS\­NAñsµrE pGüá©£žãO­¸„'!6]ûÿ¶¨km®08ßæµãßâJ -&0…Q³‡ÂP¼ ’ÊÁŒÒ”y/¿^~Úéêú€<Ä?éáúÃ=5ÝSÓ=5ÝSÓÿšš~¿< 9}ÌDÿàåÚ‚?4ÄÊ-ÁM÷ åGA̲cnâ¾:H \˜×¬n -á$‚[[A-À™‘‡õL"¥ Šº¼]Mû¡!FñíÇž*]ÌŽÊ#ÁÏàñHm1qþ¨…)ðg¼Ã©±…a4bG.+Ȳpe;cט#Õ”pPÞSAÿ€f¸:Öx–ÈמּŽÕKÏBö€Ø£2;6”‡®ƒ¼< 9‘W$âBn>È«²Ld7¥Cp’—€a=y)ºDl&d$Û•±l¦Í‹¸È`Ó:„ËÓRüÂ…u›×!` -½Mì ²! -'´CÔžÊeaÊ'·¶Ó#ÈQ"vœfÌdd‡ÝˆN - Øþš›ÝÁ}5¸ísHtX†ŽFS/ÂgD§)“cWäqP$ì‚ {³ú¢C’6žÔ˜“ƒE“*ÏÅ Dg|ð3Ò0³Z¾»,9«-Ëyd¦Ü ÷샄†CeõAŽŒATeH”°kUu~ °ÔÉÒÃòºÈ5yñ\ÎÀ,hšqÛÃÐÙQ«Œý‹ºÀÓd¶Šì+>z >£þîàþ¸—Y¯v6Ô´Lì%1‰¡ÜÉzÐÃt\a“/lûøwfáßéõ¸¡Óö‚'ÉR»xˆßH¡¾”ˆ&qT¥åþßIî ºžD.d?âFàÔëì1¹©Õ9¹Ý°ßÕ?Õcj½{C0«IÈz:m±×kê׿ñú¬cs$[$q4!}=:b²&òtà+YÀP¼Ð0S;÷Æh­ ¥¦W4­39³KeÚg³ª@èzD:nÌB—‚šÐAÝÇ씽GSeaHàï‹u¨øœ2Þ ¤xÛ,½OØŸëm‹º¦çW=k ‡zÔ6ù,\â•À^§3¯èúø U„Æ»€æj‰Ùç¿Ú³Ýi}‘Ök]ÛâKq@RŸ÷ ÆX2¨%f @ëJ´NmEMKr£º7r‡Ð5-)!É OÊ &¾ª^·ó -|ƒBïÜ‘üF=O„·’Øu½ü¦ŠÁƒ€ìvÞLOìÁkŒc_»C!¾šDJxžÄ®%ö3é nvÇö•Øž:6nÂ+ZÈ[E§Ú+¸-ô®Ëíž±7µ §;ÐàCš j¦£«Ý0ݼʾè-gh~o»ny„šß$mìø;€Ä§šû\›ãdÁÉŠ0æ}ÚŽ^F±ñºvøÎÞN–®øYO˜l“À\»q.¶àÙÃOž³oÇXz§±&ðö…”EÊ·7yµg®hŸ6nw~ÿßg9p"˜+”ˆÏkF0ߊ]°h8ƒHì:«F?ûª­ºá¾9¤ÛÉŽ ÔžÝØQìˆ.¢›;ˆŒ¬šÌºuV>®D¯ñ3n¢‡Ûܹ‚ìÚØ¥Ã#Æ¡ç× ŽÜ|ìʱة“Ú®“ˉlÇ0ž]âÕY5|Nú‹#®_Í}w\_Ƶý뻷ׄþ`È~…ñ -endstream endobj 103 0 obj <> endobj 107 0 obj [/ICCBased 49 0 R] endobj 100 0 obj <>stream -H‰ì—ÉŽä6 †ï~ -½€Õ"©õ:• §Iô!PÈrè`Ò‡¼~~RòRÕÕU“s2]¶hY"?ñ§¥§ŸNîéã)¸ßÜôe -NBÿŸõçÏ_§_ÜçééôÜùÕŸŠà·$ýå(νžñø<þýuúâÈü‘㈮$ÅQ>4wþ4é£OÓ}ʌ۹úHŒy|àêææsŽn.ž*zOs‰˜ /†—Õ|æ¬íJx#;bK1Cñ\ÈQñ•ÛÎPàKf/)¹B¾Ì\ñ ¢‰![Y›¸„ZÔ…Å€çY»'²¸àü >K-tnÙshËS - Äe}wm¯ƒ/Ì.unq˜oÃÌ XjSßtünØ¢kÕgƒøi›BöDi´6„„á,Ô,ã² -w -z`y¾JÒ[õ4±e#„#úb!-Ô¥MºÔ¶v›)õU]^ŸYñð6øbЗÆÔ[ó­è§¤£,î¼ ý¥%ÆaÚ‡-¢Fb°»aQG›á3þÈ·FÈ–¶¬˜vIÈ‚¸3è ç¶-¢Ù’¯Q—i@h†ä‘%ymkRiÅ­‡%YÙ°Öi\©³Yk›F_鉮³•Üg–-âEOo-º6’u5 ‰. Ð¥»,PØ­•í‰fBÝ–m. ²zõwƒý§ß¦Ÿ{½9=£èŸ{>ýxÔ–£¶µå¨-ÿ­¶ü1=£ºl¥„0$iŽCñEbÛJ‰º•+n…É>< -M‹ õ—[r@£Þ(!ý‚p±7eQ4ÞkÎxA©¬Nj¼âjx™Œ—N©À ÆkßAqÑÞ\©F¨†K.²ë€õ•°Þ/YÅKÁÔïH0ß• w –K Ö;¤¡@ZXG³Ë/©ü û.¿Ú¥“¯å—Wù¥.?¹–_¾–_¾–_ºY­@wÝ®Oðˆ± Ð˜¯7ÔV‡ÚÊP›t%¥®6éjcz£¶v©¶JCmÙ-õ|)ç&·:šÆŠMnÑR>¯µÜPÉjj㡶<Ô¦Ub롨xoP¹Õ!·êæÒê&¨žSØ’aw³ÖéŠí™{=Þ”Œà1,qÆ6“Ó!{ÁÑi\´YPuák(d_Ú˜0©¤ø’‹Ø`F#–,õcóeœPš•M‰Ë>áîƒñ6ƒY—@/Ô÷ˆdÛ`@&l[«ˆ5јê1Ä«îNH‚òrÓ™“`܇¨#ÛIóD­SˆîÑ}îŃ¼nü58l¦qa;ÖèµíRŽ.7Zµ‡Ô®kZÕsECšQQí*r󸱾`œS©WÌ™C+2%¦ šL¥«Äð °q<•’²Ÿq~ÄÉÆ­hg£Ú߰êñRã[¥ XrØW÷Ó‘ÓψÙÎÅÁ Ìì«`Ð#:§–eÆ^J[ž0óÍâv{Lì:ËX«`ã÷•)÷”Y¯”ÿWeÖKeÆo¥Ìv£žÄþ ±7Y–Åç’þ4óiÆûÒlÒ¤o«Mº«M¹WÍf_ìgÚ÷O—¿TÊ -endstream endobj 101 0 obj <> endobj 108 0 obj [/ICCBased 49 0 R] endobj 98 0 obj <>stream -H‰ì—ÛŠd¹Eßó+ô©V„B·×)ƒÁ`Sþ€Äãbèn°ìß÷Þ¡“™G§nó຦ºBG׸ìXõé¯áÓŸRøéáôéá1…Ë·bi?[áOµ·Ë×Ó§?âó?¿þ$$ü'¡X:ZÕ8²I¸|9ñË—ÓÙb×$¦<ÂçS‹’,”K®0E0=‡R¢aõçÓÓéçÓßæñØ—ÿ…LJ¿œ$ü‚_ÿ~ƒ3¹†'?âd ÿ…õËrL‚íƒ4‰}¤Ý1¢±·Î[å9Ü`¹^ÍMƒTüRÄ^\מ/Ë1õTƒ”Môåã^X&±(^+%Eixü¯¼¥8jéAìèÄwÖuÜNž\bÖ_^ן­S“ˆ á¢*±Ö¶­Ég‰V¦³æh/1å€tljŠ=ÝsE1Y#ö<ãÜP©±eæ`C©ÕÅ ¥·cïå¹dDÁW©«rª`Á+Ëøž¬ˆ“«÷_{šs -Á2\·´ãº×CÉhAê玂*/¿.¿°®ÇÑ*“~(º7Ïçœæÿgþø÷?N_wûÕŠÔ,Ø.!G­î®®±×ŒsbF."|%)xg4ä,,åׂÓh$Å'TU—ÓˆE¦6_÷…™P 0 -pDKz5|Çi3!-(MlŒJ€<4¿é铱¯äY®Ê baæésàL©þ;®q†ƒ«•p†¶–æëáqA|q¯ä ŠË·sÁ<<¬ÔBS -Óxž¶™\ÎíÇý»Æl¾™yÆ¥èsŽÍ*¯â‰Ìø§¦ÂðãõÖ뫸”//(´ØàS<ïJÍè¦Ñ<>à~ëÃüÝ ¾¢)uoN¯Þ Õî&ä9Þ‹Ç3Ëψ ½Æ°Â9œNÕ -È¥Ìì;gäwEÕÂiXœáÔ„°k4ÍwóvÖ6 ¬ñáß³b3„"}xÚeF`äMi¹{H± rÝÌ#ÔàGå}}FÚ¤Ôƒ¢»@¦i -¶ã׋ß«q™1üê¸>àÔÁw£0†÷.^Ž¾œ° -ÊŽ­SÒ™ý¢°Hf²À{ˆ>¯Þ±Y‡öUÞ+ ñ2³`¶6s"‰Ý¸¹Î‡D6œÝàs6=Ô) -ç^N8p`KáñôÈf#hÙ(šøEQ¥ð(Zm¼±¹Ë4{Í öDÛLF:£ëAh.œ;Šû£z—cý ¿• v¸$ÁÛy †L4v›^ºWñºP¸Õ -Ò_CCÍÃOÈ+`@AÐk§ß!ûD€Œùܔ̚ÜDMʬø¦ðr‚{17cÉ×–FË›ì‰~e†ƒª·;¦‡ Yw §Èu wwäuGÄ« ñâ4ƒœµAkÕ/“f¦hH5^¶\Ó}TóÇTÛ2Î2Ô|€¯®îcE {: µYèÃ2<Å1ÏJ™NöDBwOØÚ£0Š í&̶(ž¬ß-Ä4­Õkྮ½¥Èu`Ë!n8— Æ¨9à’€dÊP”ê²6P´hd -¡  xpaÚSáæ}K1‡™Üx³¨«Ì Ð'ͻ˔C PAð£û“å8b϶íðjF Ķºµ"^¢]'J0nÙçT->ÂÀVŸC-œq·¹&\ÓÂóeØ&þÌ—6Kr&×nd¦ßu‘ëönÏ™·gw¢†äJæêí™òó2­§b¿J¯n»ÖãÍììÓÈÙºÞQ þ]éÎG‰šMàS™åÏ.ÊXôYÁ°…PéÔì;£¸é#la-þ—Ýý.IàéGa§Šž¾+xú^ˆàéƒ >˜àƒ >˜à·e‚Ud>CvÁw<@-`¦½Êzà]ø@ö|ßâÛóAÛóA[ù ½Ê¯Ð­t°Âá à èÀÞ¡ƒþØJ²§ï”;<ȯâÁì z„}Z[à µp`y…9À"µÒíé`aƒ¬\PV.Ð;ÌÖ¬ïPÁ -m…‚¼B›Ð Ê‚¶bÞ±€/80˜ -LPV&¨G&ho1AÛ1A¾#ö¯ØâÓÞAEÞÜñZ7 Pzä=ïx5e¶ð€¡H¨máæÄrÚóê~m‚±Á8î@ ÈG #Èz;¼DŽòôí h+Øôùú0CÊnߺ²ì€`,@À%; ˜[àß;$øtÂlÚx åðO²ä=@Ó< G°öŒôèdϽ=ãyÆò.èžô ïð@Yy /@`{ hºAYy .8°Ò€^q`ªÂ (7x:ýü{mÿO? <ý(ðô}AÀÓ÷O ð ð¿%¬ó¢ó¸€P$MØ·GÔfcØ9˜Ü9f‡uG`&ƒŒ²™Qćã>æ,®,Ó•B56¬æ£ñ‚êÜÙ.žlÜþ(-gbCu[±Ó ]Ä·iõû¦­óL—âØêM#å>@³é´MmÚ+Ú*Þ¼,“:X*‰ŒSÍãÁôNìH©›…é Á[àöÎ@‡g»d¦¢?¼¸œ$³-`Sä/‡Å‚Œ09 YnÛ"*ï2'3»9àiÆÞ]¶z;©êt|ÏeÎiÛÆ̺eÀî'ù[i›òÊ!s(ù>…)X¤•EªB#vâÊm–Z™ñ^:Ûßy@ mVGà ú7f1ójXÑoyŽ$VàÂæ{CâpÈ=Ù„vvšÃ€Ö6èšRüpÖ4eí\H“µšl–“· Ð ÙÆž„¥:-Mçá498Ý@l‹+4ï9 T=kÓ65“<ì¬8ã½:1AŒ>aƼ.…1-iÈÒ.õ:…Ìø8Ë.þP<•Ò™Èĵê’{5/§ª“H¶†¶)E -×u -õÚ·#I›ä3‰œ¸QWL[OMÔ>¹JôfcÈaï:Cgãr Y]ü=ƒ¥,™pl[±£Vá6…2Õa&åÙŠM}:S¬yF58M2¯ÎÊËNŽÂJ¦31žæèkŠ P½­áFtÆ™'nSLh{Âpd°=`¤°3²ÅÙ\Ñrž63ŒÊç#T(ú ©FÎüçpÉÆûW<[|máØÚAœCzµ –Uiò$¢Òæ 4iínq€:kÿ½B ïamNjŠ)T¯yrÙIâNV¥†±‡b¢¥Fð”•I£îøûø3Ö&êIùG‹äƒðòNüû„CmÁ²‚V²_×ÁÔ„'˜ÃJ‰~Rx¯½b^hpüm¼à¼6‹c-Ü;.þ´oÁÃ’¹xÒ›V Ç"xb(¼Ícý0£¿~Ÿ&tB¢Ës¯"÷®HoýuÙRb÷ˆö?WlV|¦ûiYçf#> endobj 109 0 obj [/ICCBased 49 0 R] endobj 96 0 obj <>stream -H‰ÜU[j1 ý÷*´ëJòû7ÓP(¤!Ü.`èƒBéýÈö+ÍØžK’ $˜1>’äƒdÏé~ÓÝBpóe÷ìퟷéßO÷žÜi9¬ L%è\’ÍÀeU÷Wuÿ¾¸g`  ¶VÔŠY(ÃúèÌóè$c©¶-VŒµç‚±´ ÕÏQ`uÃ"VŠÐy^*Š&‹ÕùÍ3°ßhuÒ&žq§¥'î|ÚÆê~¹‡]îr6:à¼|w/ºü«ß7ø:ÿ¸³*}G ·ŒíJH‰˜šØž’)©˜j8°,ÍRNK(Ði> ±™¾Ò“™o“¼[üÎËï3ìaê™G€ëš}%oª’Æ$„¥p:Ôè9*nEHZqÏ©a¶V`ãÄÃ`y3Ö|e²fh”FˆŽ¨·™­¹aÈz@!¬5‚;óŒÝ¡nÏHÚŽÓ ½[—­åí})˜’”„œ[¼£úX‹ÌHmOÞc̬.hGÔõ -·0X;°”ûÊw{@.&VXz¸´a1ÅÃK“u‚õ#}Áèõ ötìE¸½Ó_Õƒû/À`ïHd -endstream endobj 97 0 obj <> endobj 110 0 obj [/ICCBased 49 0 R] endobj 6 0 obj [5 0 R] endobj 111 0 obj <> endobj xref -0 112 -0000000000 65535 f -0000000016 00000 n -0000000144 00000 n -0000040248 00000 n -0000000000 00000 f -0000047778 00000 n -0000351863 00000 n -0000040312 00000 n -0000040405 00000 n -0000040498 00000 n -0000340635 00000 n -0000340997 00000 n -0000341359 00000 n -0000341724 00000 n -0000342089 00000 n -0000272326 00000 n -0000272683 00000 n -0000273040 00000 n -0000273399 00000 n -0000273762 00000 n -0000040598 00000 n -0000040961 00000 n -0000041324 00000 n -0000041687 00000 n -0000042084 00000 n -0000042480 00000 n -0000270117 00000 n -0000272229 00000 n -0000048957 00000 n -0000044891 00000 n -0000048079 00000 n -0000267636 00000 n -0000270020 00000 n -0000266186 00000 n -0000267539 00000 n -0000263973 00000 n -0000265181 00000 n -0000265590 00000 n -0000265243 00000 n -0000260465 00000 n -0000262970 00000 n -0000263377 00000 n -0000263032 00000 n -0000042877 00000 n -0000044686 00000 n -0000047964 00000 n -0000044748 00000 n -0000260430 00000 n -0000044926 00000 n -0000045129 00000 n -0000045021 00000 n -0000047848 00000 n -0000047879 00000 n -0000048192 00000 n -0000048245 00000 n -0000048561 00000 n -0000048638 00000 n -0000048785 00000 n -0000048880 00000 n -0000049031 00000 n -0000049271 00000 n -0000050351 00000 n -0000054914 00000 n -0000120503 00000 n -0000186092 00000 n -0000251681 00000 n -0000263938 00000 n -0000263175 00000 n -0000263270 00000 n -0000263492 00000 n -0000263545 00000 n -0000263861 00000 n -0000266151 00000 n -0000265386 00000 n -0000265481 00000 n -0000265705 00000 n -0000265758 00000 n -0000266074 00000 n -0000267601 00000 n -0000270082 00000 n -0000272291 00000 n -0000304468 00000 n -0000340538 00000 n -0000280322 00000 n -0000304371 00000 n -0000278888 00000 n -0000280225 00000 n -0000276537 00000 n -0000278791 00000 n -0000274124 00000 n -0000276440 00000 n -0000276502 00000 n -0000278853 00000 n -0000280287 00000 n -0000304433 00000 n -0000340600 00000 n -0000351265 00000 n -0000351764 00000 n -0000347535 00000 n -0000351166 00000 n -0000346036 00000 n -0000347435 00000 n -0000344070 00000 n -0000345936 00000 n -0000342454 00000 n -0000343970 00000 n -0000344034 00000 n -0000346000 00000 n -0000347499 00000 n -0000351229 00000 n -0000351827 00000 n -0000351886 00000 n -trailer -<<7D5557C01281CD4D9D99656AB0619DA4>]>> -startxref -352083 -%%EOF diff --git a/files/images/firmware/Tir_off.png b/files/images/firmware/Tir_off.png deleted file mode 100644 index 94af2e23abfb6c4ab19ef60e75fc4937d54ed9e4..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/Tir_off.png and /dev/null differ diff --git a/files/images/firmware/Tir_on.png b/files/images/firmware/Tir_on.png deleted file mode 100644 index 884e4a59af7bcc6217e7d306d343bcc21f968767..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/Tir_on.png and /dev/null differ diff --git a/files/images/firmware/X8.png b/files/images/firmware/X8.png deleted file mode 100644 index 5ad68cf0e4321bd72fea016866ac16c069dbae9f..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/X8.png and /dev/null differ diff --git a/files/images/firmware/X8_on.png b/files/images/firmware/X8_on.png deleted file mode 100644 index 3ef05efce8f151f0b6798302ca84fadd8268cfd3..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/X8_on.png and /dev/null differ diff --git a/files/images/firmware/Y6_off.png b/files/images/firmware/Y6_off.png deleted file mode 100644 index ee33903a50127bfe076c5cb1decc480ad985c478..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/Y6_off.png and /dev/null differ diff --git a/files/images/firmware/Y6_on.png b/files/images/firmware/Y6_on.png deleted file mode 100644 index 02346bd5a3add12121d7ac56729980e68592d567..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/Y6_on.png and /dev/null differ diff --git a/files/images/firmware/apmcopter.png b/files/images/firmware/apmcopter.png deleted file mode 100644 index e97dab02def691706861b7507b03042e27165c93..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/apmcopter.png and /dev/null differ diff --git a/files/images/firmware/apmplane.png b/files/images/firmware/apmplane.png deleted file mode 100644 index 16b14ddbcb3aab6e26865c92c1e194d25a549ae2..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/apmplane.png and /dev/null differ diff --git a/files/images/firmware/apmrover.png b/files/images/firmware/apmrover.png deleted file mode 100644 index f3000622859d5177df0770e4f1b762c311602d64..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/apmrover.png and /dev/null differ diff --git a/files/images/firmware/heli.png b/files/images/firmware/heli.png deleted file mode 100644 index 933a4a7096655b8a716474088c7da57618b0c4f6..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/heli.png and /dev/null differ diff --git a/files/images/firmware/heli_on.png b/files/images/firmware/heli_on.png deleted file mode 100644 index 1df05837830cb69e22411ffcde8cb2b7a6c7dfdf..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/heli_on.png and /dev/null differ diff --git a/files/images/firmware/hexa_off.png b/files/images/firmware/hexa_off.png deleted file mode 100644 index 317053c25507c0b255d743ea44577bd44798f99d..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/hexa_off.png and /dev/null differ diff --git a/files/images/firmware/hexa_on.png b/files/images/firmware/hexa_on.png deleted file mode 100644 index 0975848fe7a40dfa068531512d6af0a36c5daae6..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/hexa_on.png and /dev/null differ diff --git a/files/images/firmware/hexaplus.png b/files/images/firmware/hexaplus.png deleted file mode 100644 index 69d3dce352972468e9e4c2afb9a0b7cff6fb2db2..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/hexaplus.png and /dev/null differ diff --git a/files/images/firmware/hexax.png b/files/images/firmware/hexax.png deleted file mode 100644 index 86bad85c0851cb51b5ce4422e8ab56b1b4cdec07..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/hexax.png and /dev/null differ diff --git a/files/images/firmware/hexay.png b/files/images/firmware/hexay.png deleted file mode 100644 index 74a65b89ac7aae2febaf9b64d08e26f22022e24d..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/hexay.png and /dev/null differ diff --git a/files/images/firmware/octaplus.png b/files/images/firmware/octaplus.png deleted file mode 100644 index a371ca8e76382dfad7c0ee05b199a9830013c81e..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/octaplus.png and /dev/null differ diff --git a/files/images/firmware/octax.png b/files/images/firmware/octax.png deleted file mode 100644 index 12ec5a2a2dd6e4c1909025088dd090a5f70dae12..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/octax.png and /dev/null differ diff --git a/files/images/firmware/octo_off.png b/files/images/firmware/octo_off.png deleted file mode 100644 index f5bbcbc21f0dbca71fe27f161b678f12c26b01c3..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/octo_off.png and /dev/null differ diff --git a/files/images/firmware/octo_on.png b/files/images/firmware/octo_on.png deleted file mode 100644 index 6ff00e838bbfae635831db06aecc62dc40373c15..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/octo_on.png and /dev/null differ diff --git a/files/images/firmware/octx.png b/files/images/firmware/octx.png deleted file mode 100644 index e2390939732f8351263af3e4a4861a5672ac52bc..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/octx.png and /dev/null differ diff --git a/files/images/firmware/plane.png b/files/images/firmware/plane.png deleted file mode 100644 index bfe646787a8c4509696c00ac32cdf5adf067913f..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/plane.png and /dev/null differ diff --git a/files/images/firmware/plane_on.png b/files/images/firmware/plane_on.png deleted file mode 100644 index f4421cd72a870dcc6024183b14d684a978cb46c0..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/plane_on.png and /dev/null differ diff --git a/files/images/firmware/quad_T_off.png b/files/images/firmware/quad_T_off.png deleted file mode 100644 index df89eb1bc280485a50c4aefac54dca74677d2b03..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quad_T_off.png and /dev/null differ diff --git a/files/images/firmware/quad_T_on.png b/files/images/firmware/quad_T_on.png deleted file mode 100644 index 933c7bbb75eeff1617f721ff5a3a139a59e874eb..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quad_T_on.png and /dev/null differ diff --git a/files/images/firmware/quad_off.png b/files/images/firmware/quad_off.png deleted file mode 100644 index 43e0f047c1f6709b00bfd9b9aeba60ad8bb2f7dc..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quad_off.png and /dev/null differ diff --git a/files/images/firmware/quad_on.png b/files/images/firmware/quad_on.png deleted file mode 100644 index ef296bbd75eb6611888b91296ed5a8274d334cc4..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quad_on.png and /dev/null differ diff --git a/files/images/firmware/quadplus.png b/files/images/firmware/quadplus.png deleted file mode 100644 index 350b76f24dbc1df7ef32b239b7e34176b649e2ae..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quadplus.png and /dev/null differ diff --git a/files/images/firmware/quadx.png b/files/images/firmware/quadx.png deleted file mode 100644 index a935e874329bd6b663b7fb4f5146b9731694aec7..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quadx.png and /dev/null differ diff --git a/files/images/firmware/quady.png b/files/images/firmware/quady.png deleted file mode 100644 index 819b338272fe3935aa03115c9a2c315f426643e9..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/quady.png and /dev/null differ diff --git a/files/images/firmware/rover.png b/files/images/firmware/rover.png deleted file mode 100644 index 2bffc8e36103f94ad952e0685debf0a2dcc8906c..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/rover.png and /dev/null differ diff --git a/files/images/firmware/rover_off.png b/files/images/firmware/rover_off.png deleted file mode 100644 index 24e91f6dae67b552a30c9e6c7aa5f90bbf57c083..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/rover_off.png and /dev/null differ diff --git a/files/images/firmware/rover_on.png b/files/images/firmware/rover_on.png deleted file mode 100644 index 13123caeb0c05810819f996fb3ec2301fe7d5098..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/rover_on.png and /dev/null differ diff --git a/files/images/firmware/triy.png b/files/images/firmware/triy.png deleted file mode 100644 index 16654b3c5a2560d3cb80a8982e2166e6bf66529d..0000000000000000000000000000000000000000 Binary files a/files/images/firmware/triy.png and /dev/null differ diff --git a/files/images/icons/v2/t.ico b/files/images/icons/v2/t.ico deleted file mode 100644 index d9f813b9829f0876e0f1cc37e9592cae061ac660..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t.ico and /dev/null differ diff --git a/files/images/icons/v2/t128.png b/files/images/icons/v2/t128.png deleted file mode 100644 index 8cf1d44f503ba6aa474fdb228a80c7e2d04d77de..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t128.png and /dev/null differ diff --git a/files/images/icons/v2/t16.png b/files/images/icons/v2/t16.png deleted file mode 100644 index ab27e24565f1c6f87b1ddca1dbea39cb4fed121d..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t16.png and /dev/null differ diff --git a/files/images/icons/v2/t24.png b/files/images/icons/v2/t24.png deleted file mode 100644 index 52ed83866baba4d88929c2e62eb94a346855b107..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t24.png and /dev/null differ diff --git a/files/images/icons/v2/t32.png b/files/images/icons/v2/t32.png deleted file mode 100644 index 3f3a71bc771076b33a602728804b3ed41e7f1c26..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t32.png and /dev/null differ diff --git a/files/images/icons/v2/t48.png b/files/images/icons/v2/t48.png deleted file mode 100644 index de042999ba44082c12ae1c95618f67f712768acc..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t48.png and /dev/null differ diff --git a/files/images/icons/v2/t64.png b/files/images/icons/v2/t64.png deleted file mode 100644 index f303b6e9b99b5ed0b707d510d60e639bb2df02cc..0000000000000000000000000000000000000000 Binary files a/files/images/icons/v2/t64.png and /dev/null differ diff --git a/files/images/manhattanstyle/closebutton.png b/files/images/manhattanstyle/closebutton.png deleted file mode 100644 index c978cf51aaaf35cf4bf3939f3ba84eabce4837e8..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/closebutton.png and /dev/null differ diff --git a/files/images/manhattanstyle/darkclosebutton.png b/files/images/manhattanstyle/darkclosebutton.png deleted file mode 100644 index 1077663b28e6a08098b1a460c8ee0d1a89ad5d88..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/darkclosebutton.png and /dev/null differ diff --git a/files/images/manhattanstyle/empty14.png b/files/images/manhattanstyle/empty14.png deleted file mode 100644 index 7346e58082a73c185e6393a51ab7a736e08d7dce..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/empty14.png and /dev/null differ diff --git a/files/images/manhattanstyle/extension.png b/files/images/manhattanstyle/extension.png deleted file mode 100644 index 40c2ee30d6c6e11ba9c50f9c4551663a55b58c39..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/extension.png and /dev/null differ diff --git a/files/images/manhattanstyle/fancytoolbutton.svg b/files/images/manhattanstyle/fancytoolbutton.svg deleted file mode 100644 index 8c9c0f1d623a60b02310ec97165f7a7a15c3f3ad..0000000000000000000000000000000000000000 --- a/files/images/manhattanstyle/fancytoolbutton.svg +++ /dev/null @@ -1,539 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/manhattanstyle/inputfield.png b/files/images/manhattanstyle/inputfield.png deleted file mode 100644 index 8020c8f7319c5194b56b9e9b3d94816f7fae536c..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/inputfield.png and /dev/null differ diff --git a/files/images/manhattanstyle/inputfield_disabled.png b/files/images/manhattanstyle/inputfield_disabled.png deleted file mode 100644 index c69f082f087f96a9fac5ed90504ebc7e8c21be37..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/inputfield_disabled.png and /dev/null differ diff --git a/files/images/manhattanstyle/magnifier.png b/files/images/manhattanstyle/magnifier.png deleted file mode 100644 index 0e652c945e4287939e4787cd02c891c50238c64a..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/magnifier.png and /dev/null differ diff --git a/files/images/manhattanstyle/panel_button.png b/files/images/manhattanstyle/panel_button.png deleted file mode 100644 index 76793ca29256d3d30691f415585a282850969e5c..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/panel_button.png and /dev/null differ diff --git a/files/images/manhattanstyle/panel_button_checked.png b/files/images/manhattanstyle/panel_button_checked.png deleted file mode 100644 index 67f9fbbd6d937fc3706cfcc9bb8359e9eec6dcf3..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/panel_button_checked.png and /dev/null differ diff --git a/files/images/manhattanstyle/panel_button_checked_hover.png b/files/images/manhattanstyle/panel_button_checked_hover.png deleted file mode 100644 index 0a820b3f622d3a0005d42e25c815baaa3c807d5e..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/panel_button_checked_hover.png and /dev/null differ diff --git a/files/images/manhattanstyle/panel_button_hover.png b/files/images/manhattanstyle/panel_button_hover.png deleted file mode 100644 index d9c99409d1d04246dc8987c9208235ea526c0393..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/panel_button_hover.png and /dev/null differ diff --git a/files/images/manhattanstyle/panel_button_pressed.png b/files/images/manhattanstyle/panel_button_pressed.png deleted file mode 100644 index dc522d2387804e3dee50185190b7ef6a85dae6f4..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/panel_button_pressed.png and /dev/null differ diff --git a/files/images/manhattanstyle/pushbutton.png b/files/images/manhattanstyle/pushbutton.png deleted file mode 100644 index a9efaf2522bf5dde23084879cc828fecb158dc3a..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/pushbutton.png and /dev/null differ diff --git a/files/images/manhattanstyle/pushbutton_hover.png b/files/images/manhattanstyle/pushbutton_hover.png deleted file mode 100644 index 910f6980b16a757984a49a6b4b3af906dc7e57a8..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/pushbutton_hover.png and /dev/null differ diff --git a/files/images/manhattanstyle/pushbutton_pressed.png b/files/images/manhattanstyle/pushbutton_pressed.png deleted file mode 100644 index 7a5a4768ffc9d276a8d4faa60b7462f06be6134f..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/pushbutton_pressed.png and /dev/null differ diff --git a/files/images/manhattanstyle/sidebaricon.png b/files/images/manhattanstyle/sidebaricon.png deleted file mode 100644 index b7951415874932b2291b06a274ec973633cc0f96..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/sidebaricon.png and /dev/null differ diff --git a/files/images/manhattanstyle/splitbutton_horizontal.png b/files/images/manhattanstyle/splitbutton_horizontal.png deleted file mode 100644 index c85a093f2c3250786c13994bef3910d19824d650..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/splitbutton_horizontal.png and /dev/null differ diff --git a/files/images/manhattanstyle/statusbar.png b/files/images/manhattanstyle/statusbar.png deleted file mode 100644 index dd426ef78fde42c8dffdb193881afa838d295eba..0000000000000000000000000000000000000000 Binary files a/files/images/manhattanstyle/statusbar.png and /dev/null differ diff --git a/files/images/mavs/frames-05.png b/files/images/mavs/frames-05.png deleted file mode 100644 index 39ef8ec4e8ea30b910fa4536cbc1b4050ba6e4d4..0000000000000000000000000000000000000000 Binary files a/files/images/mavs/frames-05.png and /dev/null differ diff --git a/files/images/mavs/frames_plus.png b/files/images/mavs/frames_plus.png deleted file mode 100644 index 614770ebb13fd06ea6137dbefc5059f17a4cffe9..0000000000000000000000000000000000000000 Binary files a/files/images/mavs/frames_plus.png and /dev/null differ diff --git a/files/images/mavs/frames_x.png b/files/images/mavs/frames_x.png deleted file mode 100644 index 6d13983b4be288a8f0581992e3d514ad761e4057..0000000000000000000000000000000000000000 Binary files a/files/images/mavs/frames_x.png and /dev/null differ diff --git a/files/images/mimetypes/application-certificate.svg b/files/images/mimetypes/application-certificate.svg deleted file mode 100644 index 077f741d8e89716816873c856a9ed6ef0f08d613..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/application-certificate.svg +++ /dev/null @@ -1,443 +0,0 @@ - - - - - - image/svg+xml - - - - - - CertificateJakub Steinercertificate - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/files/images/mimetypes/application-x-executable.svg b/files/images/mimetypes/application-x-executable.svg deleted file mode 100644 index 38088df88ec8e03dfdf9fcdea9fe3f6a86e63f85..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/application-x-executable.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Executable - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - executable - program - binary - bin - script - shell - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/audio-x-generic.svg b/files/images/mimetypes/audio-x-generic.svg deleted file mode 100644 index be2d18ad3f2a25b8f715a80e14a34c9d5c1f0ebe..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/audio-x-generic.svg +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Generic Audio - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/font-x-generic.svg b/files/images/mimetypes/font-x-generic.svg deleted file mode 100644 index b489775065b8faf651486be31660390be8e3b15a..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/font-x-generic.svg +++ /dev/null @@ -1,639 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Generic font - - - Andreas Nilsson - - - - - the oxygen guys - - - - http://tango-project.org - - - font - type - letter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/image-x-generic.svg b/files/images/mimetypes/image-x-generic.svg deleted file mode 100644 index 45dd641ae7f16fc28e47820652799fdb120be0c8..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/image-x-generic.svg +++ /dev/null @@ -1,581 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - Genric Image - - - Jakub Steiner - - - - imagepicturesnapshotphoto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/files/images/mimetypes/package-x-generic.svg b/files/images/mimetypes/package-x-generic.svg deleted file mode 100644 index 47beed790f7e40ae34927fb70a8105363d05b78c..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/package-x-generic.svg +++ /dev/null @@ -1,485 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Package - - - Jakub Steiner - - - http://jimmac.musichall.cz/ - - - package - archive - tarball - tar - bzip - gzip - zip - arj - tar - jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/text-html.svg b/files/images/mimetypes/text-html.svg deleted file mode 100644 index 330c3906de96453a4025fa56c7e9155b40780fa7..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/text-html.svg +++ /dev/null @@ -1,1432 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - HTML Document - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - HTML - hypertext - web - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/text-x-generic-template.svg b/files/images/mimetypes/text-x-generic-template.svg deleted file mode 100644 index f70eda469c50fdddb9b43e897d983f595120a42a..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/text-x-generic-template.svg +++ /dev/null @@ -1,778 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Document Template - - - template - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/text-x-generic.svg b/files/images/mimetypes/text-x-generic.svg deleted file mode 100644 index 532f98bbc50a1392a07ec2daca2f37877fd90352..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/text-x-generic.svg +++ /dev/null @@ -1,548 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Generic Text - - - text - plaintext - regular - document - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/text-x-script.svg b/files/images/mimetypes/text-x-script.svg deleted file mode 100644 index 65db6c59d9200c76ac3f06a5bfe9e24ffc654404..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/text-x-script.svg +++ /dev/null @@ -1,491 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Generic Script - - - text - plaintext - regular - script - shell - bash - python - perl - php - ruby - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/video-x-generic.svg b/files/images/mimetypes/video-x-generic.svg deleted file mode 100644 index 1f3a8b95a81a1eb1e6f329318ccdb783736504ab..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/video-x-generic.svg +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Generic Video - - - video - audio - multimedia - movie - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-address-book.svg b/files/images/mimetypes/x-office-address-book.svg deleted file mode 100644 index 55ddaa3b654281b58b91bf65488e60d54e7589f5..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-address-book.svg +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Addess Book - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - address - contact - book - office - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-calendar.svg b/files/images/mimetypes/x-office-calendar.svg deleted file mode 100644 index 5f1159b9ed23da90cb9038a03e9d0f5a8189bbe8..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-calendar.svg +++ /dev/null @@ -1,984 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-document-template.svg b/files/images/mimetypes/x-office-document-template.svg deleted file mode 100644 index 421c16b04edbc656753b9c91dcc214e945c1eab0..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-document-template.svg +++ /dev/null @@ -1,876 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Office Document - - - rich - text - document - pdf - openoffice - word - rtf - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-document.svg b/files/images/mimetypes/x-office-document.svg deleted file mode 100644 index b3c5d9664707914d3cf96a2246ccddaed0d576a2..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-document.svg +++ /dev/null @@ -1,578 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Office Document - - - rich - text - document - pdf - openoffice - word - rtf - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-drawing-template.svg b/files/images/mimetypes/x-office-drawing-template.svg deleted file mode 100644 index 5a484283b5a7d1c74dd16894234241914ae6ee0a..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-drawing-template.svg +++ /dev/null @@ -1,780 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Office Document - - - rich - text - document - pdf - openoffice - word - rtf - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-drawing.svg b/files/images/mimetypes/x-office-drawing.svg deleted file mode 100644 index 5fd0804099c7b8ab5f294e0a542bcf1c2016a421..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-drawing.svg +++ /dev/null @@ -1,647 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Office Document - - - rich - text - document - pdf - openoffice - word - rtf - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-presentation-template.svg b/files/images/mimetypes/x-office-presentation-template.svg deleted file mode 100644 index 8e0bff472af19cfdd19a7fcb83e722decd1b465d..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-presentation-template.svg +++ /dev/null @@ -1,1020 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-presentation.svg b/files/images/mimetypes/x-office-presentation.svg deleted file mode 100644 index 179e0e41dcba6fc809a0188c4090248307944f27..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-presentation.svg +++ /dev/null @@ -1,567 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-spreadsheet-template.svg b/files/images/mimetypes/x-office-spreadsheet-template.svg deleted file mode 100644 index 0c3ca9b1bf9545d9b012e88195d9c89ab0d292d8..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-spreadsheet-template.svg +++ /dev/null @@ -1,1035 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Spreadsheet - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - spreadheet - document - office - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/mimetypes/x-office-spreadsheet.svg b/files/images/mimetypes/x-office-spreadsheet.svg deleted file mode 100644 index cbc4df2e8b323ac937c5fd2aaade4b051657ec67..0000000000000000000000000000000000000000 --- a/files/images/mimetypes/x-office-spreadsheet.svg +++ /dev/null @@ -1,704 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Spreadsheet - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - spreadheet - document - office - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/originals/image3511.png b/files/images/originals/image3511.png deleted file mode 100644 index 43b33dfb3fe8f6193f82d439cd64bb9e01098058..0000000000000000000000000000000000000000 Binary files a/files/images/originals/image3511.png and /dev/null differ diff --git a/files/images/originals/qgroundcontrol-logo.png b/files/images/originals/qgroundcontrol-logo.png deleted file mode 100644 index 81209009e54fa5080db5206968703b2a0276bed3..0000000000000000000000000000000000000000 Binary files a/files/images/originals/qgroundcontrol-logo.png and /dev/null differ diff --git a/files/images/originals/qgroundcontrol-logo.svg b/files/images/originals/qgroundcontrol-logo.svg deleted file mode 100644 index de7eb219593052e1ff116afc1ba5927c39b01c23..0000000000000000000000000000000000000000 --- a/files/images/originals/qgroundcontrol-logo.svg +++ /dev/null @@ -1,3648 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - QGroundControl - Open Source MAV Ground Control Station - - - - diff --git a/files/images/patterns/0.bmp b/files/images/patterns/0.bmp deleted file mode 100644 index af7ec103e5a2f9a7dee7a4fed32f180059ab7efc..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/0.bmp and /dev/null differ diff --git a/files/images/patterns/1.bmp b/files/images/patterns/1.bmp deleted file mode 100644 index bd3dc2979f023de302243bb748ed637f6bf2e30a..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/1.bmp and /dev/null differ diff --git a/files/images/patterns/2.bmp b/files/images/patterns/2.bmp deleted file mode 100644 index 118916b05af732f9354dc6a7f5102bd25d7c1172..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/2.bmp and /dev/null differ diff --git a/files/images/patterns/3.bmp b/files/images/patterns/3.bmp deleted file mode 100644 index 0ea614070d93f7758fd39daaadc4f4ae9a1c0ac1..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/3.bmp and /dev/null differ diff --git a/files/images/patterns/4.bmp b/files/images/patterns/4.bmp deleted file mode 100644 index 51b08af29bac7623a12daede5769a3bf543d1bea..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/4.bmp and /dev/null differ diff --git a/files/images/patterns/5.bmp b/files/images/patterns/5.bmp deleted file mode 100644 index b4100321735c4165edefb4d14a6ece8ed52ab8fd..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/5.bmp and /dev/null differ diff --git a/files/images/patterns/6.bmp b/files/images/patterns/6.bmp deleted file mode 100644 index dfe7800227aecf3b5771e3eb13799a48ea8cccd0..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/6.bmp and /dev/null differ diff --git a/files/images/patterns/7.bmp b/files/images/patterns/7.bmp deleted file mode 100644 index c4732cdbe1efd22eeed77b4189c5c2839274d666..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/7.bmp and /dev/null differ diff --git a/files/images/patterns/8.bmp b/files/images/patterns/8.bmp deleted file mode 100644 index cbeca178d07ee4d9aafb9ab847b655c3a4f5c5af..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/8.bmp and /dev/null differ diff --git a/files/images/patterns/9.bmp b/files/images/patterns/9.bmp deleted file mode 100644 index 6c55fefa1b6f18818cf188d87a6197a323bcd8db..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/9.bmp and /dev/null differ diff --git a/files/images/patterns/a.bmp b/files/images/patterns/a.bmp deleted file mode 100644 index c4399d8f13f78d3b4b194685a9a2e0df7e0f487b..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/a.bmp and /dev/null differ diff --git a/files/images/patterns/abby.jpg b/files/images/patterns/abby.jpg deleted file mode 100644 index b39b9a5e53e0b741934eec8c7d8d5bcf4b88faa7..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/abby.jpg and /dev/null differ diff --git a/files/images/patterns/b.bmp b/files/images/patterns/b.bmp deleted file mode 100644 index 9c24ae01990f1f6df35567a84c4fb05cbee449a4..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/b.bmp and /dev/null differ diff --git a/files/images/patterns/board-center.png b/files/images/patterns/board-center.png deleted file mode 100644 index 59d7ebf7e5d7346c7ab400bbbe7d5697fd482403..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/board-center.png and /dev/null differ diff --git a/files/images/patterns/board-left.png b/files/images/patterns/board-left.png deleted file mode 100644 index 9026eea200f975bb453b6c0c538c41e97eb8b9c8..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/board-left.png and /dev/null differ diff --git a/files/images/patterns/board-right.png b/files/images/patterns/board-right.png deleted file mode 100644 index 6d21644cc8b6d5f79606e4945d75f4cc7972d6f7..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/board-right.png and /dev/null differ diff --git a/files/images/patterns/c.bmp b/files/images/patterns/c.bmp deleted file mode 100644 index 83ffd265683649cf8f567a7ae1d71cbbf77e94ca..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/c.bmp and /dev/null differ diff --git a/files/images/patterns/cake.jpg b/files/images/patterns/cake.jpg deleted file mode 100644 index a6ea3434ab67b1a0bd5e045e08d4efef8a796ffa..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/cake.jpg and /dev/null differ diff --git a/files/images/patterns/cola.jpg b/files/images/patterns/cola.jpg deleted file mode 100644 index 2faed5d5235fbbe96b85c4e62a485cb0f2e29f98..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/cola.jpg and /dev/null differ diff --git a/files/images/patterns/d.bmp b/files/images/patterns/d.bmp deleted file mode 100644 index c161db29f3b6f88e1ad41a8687bb9d0f33baebf2..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/d.bmp and /dev/null differ diff --git a/files/images/patterns/e.bmp b/files/images/patterns/e.bmp deleted file mode 100644 index 5a0a925c7357734146a60090ff90031a94d5aa5e..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/e.bmp and /dev/null differ diff --git a/files/images/patterns/einstein.bmp b/files/images/patterns/einstein.bmp deleted file mode 100644 index ee30094cfd507445ddf6078984fb29958f6d601d..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/einstein.bmp and /dev/null differ diff --git a/files/images/patterns/f.bmp b/files/images/patterns/f.bmp deleted file mode 100644 index a969b2e93363d137c4acc824d6df160c170f18e2..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/f.bmp and /dev/null differ diff --git a/files/images/patterns/face1.png b/files/images/patterns/face1.png deleted file mode 100644 index 7c9c97d82774f7084839da868af8c8b6d152fefa..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1.png and /dev/null differ diff --git a/files/images/patterns/face1_fisheye.png b/files/images/patterns/face1_fisheye.png deleted file mode 100644 index 2d078e155ac848ae661175f11f365c26c3b3cf3d..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1_fisheye.png and /dev/null differ diff --git a/files/images/patterns/face1_light.png b/files/images/patterns/face1_light.png deleted file mode 100644 index 8ef441620019d68b714fd573f14f53d1f2cd79a9..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1_light.png and /dev/null differ diff --git a/files/images/patterns/face1_noise.png b/files/images/patterns/face1_noise.png deleted file mode 100644 index 8d6eae061d1ba74921681f9ab7b7ebd9cf129470..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1_noise.png and /dev/null differ diff --git a/files/images/patterns/face1_noise_fisheye.png b/files/images/patterns/face1_noise_fisheye.png deleted file mode 100644 index 1c1e678a5eee2fad868d0a33fbbb4c24710c6de6..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1_noise_fisheye.png and /dev/null differ diff --git a/files/images/patterns/face1_noise_light.png b/files/images/patterns/face1_noise_light.png deleted file mode 100644 index 817520fc53fd0c9382cce78031e659d8a5f65c93..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1_noise_light.png and /dev/null differ diff --git a/files/images/patterns/face1_noise_light_fisheye.png b/files/images/patterns/face1_noise_light_fisheye.png deleted file mode 100644 index 247e26372a5f983430b5cbab8b871feeb695197c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face1_noise_light_fisheye.png and /dev/null differ diff --git a/files/images/patterns/face2.png b/files/images/patterns/face2.png deleted file mode 100644 index 63a87d5cfee4d00e8e3ba5c1a6f2a95bf34d3515..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face2.png and /dev/null differ diff --git a/files/images/patterns/face3.png b/files/images/patterns/face3.png deleted file mode 100644 index 1c61d580271d2553ef5f17da08fd5963d601e50f..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face3.png and /dev/null differ diff --git a/files/images/patterns/face3_perspect1.png b/files/images/patterns/face3_perspect1.png deleted file mode 100644 index 5d1be767d2d2fb6b42216458dd17cb9796877605..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face3_perspect1.png and /dev/null differ diff --git a/files/images/patterns/face3_perspect2.png b/files/images/patterns/face3_perspect2.png deleted file mode 100644 index ff24a14fcd1462122ec306eaf95627203efe5949..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face3_perspect2.png and /dev/null differ diff --git a/files/images/patterns/face3_perspect3.png b/files/images/patterns/face3_perspect3.png deleted file mode 100644 index 72fbd8ef620775a5ac118afcec4a777555be216c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face3_perspect3.png and /dev/null differ diff --git a/files/images/patterns/face4.png b/files/images/patterns/face4.png deleted file mode 100644 index b18858f7c3635f4cccd20afd7b38ca346327bcc9..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face4.png and /dev/null differ diff --git a/files/images/patterns/face4_treshold1.png b/files/images/patterns/face4_treshold1.png deleted file mode 100644 index c133f17fd13512354571fbcf7cac8dcf84d25c6e..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face4_treshold1.png and /dev/null differ diff --git a/files/images/patterns/face4_treshold2.png b/files/images/patterns/face4_treshold2.png deleted file mode 100644 index 3fb48b68458be4ad1718df1473690599b3a95747..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face4_treshold2.png and /dev/null differ diff --git a/files/images/patterns/face5.png b/files/images/patterns/face5.png deleted file mode 100644 index b42231e5da8b46f492e58f22f24fe2e96ca55bd7..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face5.png and /dev/null differ diff --git a/files/images/patterns/face5_perspect1.png b/files/images/patterns/face5_perspect1.png deleted file mode 100644 index e7b183531f7f46344f0580cb3823bd32ba0bbb27..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face5_perspect1.png and /dev/null differ diff --git a/files/images/patterns/face5_threshold.png b/files/images/patterns/face5_threshold.png deleted file mode 100644 index b997043cdfae8d2b2659ba42d07db5ba2e556d8f..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/face5_threshold.png and /dev/null differ diff --git a/files/images/patterns/flag.jpg b/files/images/patterns/flag.jpg deleted file mode 100644 index 667a7c18679512186570155a409d3ddc3ca31c9f..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/flag.jpg and /dev/null differ diff --git a/files/images/patterns/floors1.png b/files/images/patterns/floors1.png deleted file mode 100644 index 90023f3faa63fdd7a1659674083510e0dbaf20c2..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/floors1.png and /dev/null differ diff --git a/files/images/patterns/floors2.png b/files/images/patterns/floors2.png deleted file mode 100644 index 3f1051de6e004cd3a2f47c837d4d2cd9ae057c89..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/floors2.png and /dev/null differ diff --git a/files/images/patterns/floors5.png b/files/images/patterns/floors5.png deleted file mode 100644 index 8316e972058c1820661ef216190c25fef85ea998..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/floors5.png and /dev/null differ diff --git a/files/images/patterns/floors6.png b/files/images/patterns/floors6.png deleted file mode 100644 index 92e6121f404d28d897b653cd4d09959ee8ee6f35..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/floors6.png and /dev/null differ diff --git a/files/images/patterns/frame_2010-03-17_2_rect.bmp b/files/images/patterns/frame_2010-03-17_2_rect.bmp deleted file mode 100644 index bdb9178ce8c82935fda1f161dada6e3466a3d66c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/frame_2010-03-17_2_rect.bmp and /dev/null differ diff --git a/files/images/patterns/frame_2010-03-17_3_rect.bmp b/files/images/patterns/frame_2010-03-17_3_rect.bmp deleted file mode 100644 index 8a02375941b5b74210b465d6485765f5ad61c9a3..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/frame_2010-03-17_3_rect.bmp and /dev/null differ diff --git a/files/images/patterns/frog.bmp b/files/images/patterns/frog.bmp deleted file mode 100644 index 8de068b7a51d429080d25e48208ae929b046d882..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/frog.bmp and /dev/null differ diff --git a/files/images/patterns/g.bmp b/files/images/patterns/g.bmp deleted file mode 100644 index 4e909f3225a99cdec90f337a66e076dbbb2f808c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/g.bmp and /dev/null differ diff --git a/files/images/patterns/h.bmp b/files/images/patterns/h.bmp deleted file mode 100644 index aeb23eaf8edf12e47455383cf3466d4fec09b606..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/h.bmp and /dev/null differ diff --git a/files/images/patterns/i.bmp b/files/images/patterns/i.bmp deleted file mode 100644 index a5966070f9b3001debdf221830dfeb1ce51784f1..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/i.bmp and /dev/null differ diff --git a/files/images/patterns/j.bmp b/files/images/patterns/j.bmp deleted file mode 100644 index 686106f6bcbfb6c1412ca812f3cac719c18be144..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/j.bmp and /dev/null differ diff --git a/files/images/patterns/k.bmp b/files/images/patterns/k.bmp deleted file mode 100644 index 8e5ffcf9afe0fb7438892f7ffda73915090f2f21..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/k.bmp and /dev/null differ diff --git a/files/images/patterns/l.bmp b/files/images/patterns/l.bmp deleted file mode 100644 index 941f2bdb81a39683cc0e5490c3fde94d49f71eb6..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/l.bmp and /dev/null differ diff --git a/files/images/patterns/lenna.jpg b/files/images/patterns/lenna.jpg deleted file mode 100644 index 6355ecae54707c462b5b68ba7c874f7ccbd3a44f..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/lenna.jpg and /dev/null differ diff --git a/files/images/patterns/letterB.png b/files/images/patterns/letterB.png deleted file mode 100644 index de8dec9cf8d4b7ff09031ab77b19a5d637b65549..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterB.png and /dev/null differ diff --git a/files/images/patterns/letterD.png b/files/images/patterns/letterD.png deleted file mode 100644 index f96b3e8fe696a9e3164923779125d37101ca57bf..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterD.png and /dev/null differ diff --git a/files/images/patterns/letterP.png b/files/images/patterns/letterP.png deleted file mode 100644 index 4ee1a56ad59ebb9de8cc7ef7429d867858ce7419..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterP.png and /dev/null differ diff --git a/files/images/patterns/letterP_light.png b/files/images/patterns/letterP_light.png deleted file mode 100644 index 976e6f38c6a29d16cd4dfcba368b5543f503213a..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterP_light.png and /dev/null differ diff --git a/files/images/patterns/letterP_noise.png b/files/images/patterns/letterP_noise.png deleted file mode 100644 index cdb9da9a1a10f20fcbc783f3571706c7ae88ff16..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterP_noise.png and /dev/null differ diff --git a/files/images/patterns/letterR.png b/files/images/patterns/letterR.png deleted file mode 100644 index 2329f1464f23bd6ecd2d3b39f73c6392266c53ba..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterR.png and /dev/null differ diff --git a/files/images/patterns/letterR_strongnoise.png b/files/images/patterns/letterR_strongnoise.png deleted file mode 100644 index eaa1b9e3ca54905d6a1c9b7eb7dc19418efa44d4..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterR_strongnoise.png and /dev/null differ diff --git a/files/images/patterns/letterS.png b/files/images/patterns/letterS.png deleted file mode 100644 index 4cb14b1b69909e6d943e471d3a0c6ae4086706b0..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/letterS.png and /dev/null differ diff --git a/files/images/patterns/m.bmp b/files/images/patterns/m.bmp deleted file mode 100644 index ce85d160d34e5f98b61f4b7813fb581492a74bda..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/m.bmp and /dev/null differ diff --git a/files/images/patterns/mona.jpg b/files/images/patterns/mona.jpg deleted file mode 100644 index 3f440d7f24af41efd3ca47c987c41d6427f92ec0..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/mona.jpg and /dev/null differ diff --git a/files/images/patterns/n.bmp b/files/images/patterns/n.bmp deleted file mode 100644 index 78175d9f6d9b4aff26d7e6303b37c0fa86237ca8..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/n.bmp and /dev/null differ diff --git a/files/images/patterns/o.bmp b/files/images/patterns/o.bmp deleted file mode 100644 index 47cb32a7af37e3b099dd898813a840e043d3beda..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/o.bmp and /dev/null differ diff --git a/files/images/patterns/p.bmp b/files/images/patterns/p.bmp deleted file mode 100644 index abf0fd32a540687167f7e503dc17412c8506ba8c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/p.bmp and /dev/null differ diff --git a/files/images/patterns/q.bmp b/files/images/patterns/q.bmp deleted file mode 100644 index 8973a550cbc71e9c9048a93bcf2074afef1aa24c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/q.bmp and /dev/null differ diff --git a/files/images/patterns/r.bmp b/files/images/patterns/r.bmp deleted file mode 100644 index 324fd82e666f867429173d4687660f7cf5242111..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/r.bmp and /dev/null differ diff --git a/files/images/patterns/s.bmp b/files/images/patterns/s.bmp deleted file mode 100644 index e8bde5ca755bd199123109c0bfe694b6a2cce05b..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/s.bmp and /dev/null differ diff --git a/files/images/patterns/santa-delft.png b/files/images/patterns/santa-delft.png deleted file mode 100644 index c3a30e662e853199d63e7390ef8cac102d671f64..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/santa-delft.png and /dev/null differ diff --git a/files/images/patterns/sign.jpg b/files/images/patterns/sign.jpg deleted file mode 100644 index 89efc8f9a36d0a1939d93f5b3402191e532168e0..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/sign.jpg and /dev/null differ diff --git a/files/images/patterns/stereo_left01.png b/files/images/patterns/stereo_left01.png deleted file mode 100644 index 6fc657c9d5a057fa419bd9b236903c05bcba49b4..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/stereo_left01.png and /dev/null differ diff --git a/files/images/patterns/stereo_right01.png b/files/images/patterns/stereo_right01.png deleted file mode 100644 index 5680912e725e98f3231bfe7f229c9e5de7d1b9f2..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/stereo_right01.png and /dev/null differ diff --git a/files/images/patterns/supa.png b/files/images/patterns/supa.png deleted file mode 100644 index 5d8552f45c2476d8c82aa8feb0740925d66e877e..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/supa.png and /dev/null differ diff --git a/files/images/patterns/t.bmp b/files/images/patterns/t.bmp deleted file mode 100644 index 2057a316a096cd39177e6aebd7ffeda180033d66..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/t.bmp and /dev/null differ diff --git a/files/images/patterns/turm.jpg b/files/images/patterns/turm.jpg deleted file mode 100644 index 5ccbfe36075278aa3dfe40fd32d6af3739582212..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/turm.jpg and /dev/null differ diff --git a/files/images/patterns/u.bmp b/files/images/patterns/u.bmp deleted file mode 100644 index ef19a67aa0c9084cd9b604300581390df4f8364f..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/u.bmp and /dev/null differ diff --git a/files/images/patterns/v.bmp b/files/images/patterns/v.bmp deleted file mode 100644 index 7dc84125ad8103210514407b27db3c4b63d2f43c..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/v.bmp and /dev/null differ diff --git a/files/images/patterns/w.bmp b/files/images/patterns/w.bmp deleted file mode 100644 index 5bb89a42cbd495bd454dd0d0fab37013816421f8..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/w.bmp and /dev/null differ diff --git a/files/images/patterns/white.png b/files/images/patterns/white.png deleted file mode 100644 index 0fbbc057e184b0227da45ee8df7a027f43906524..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/white.png and /dev/null differ diff --git a/files/images/patterns/work.jpg b/files/images/patterns/work.jpg deleted file mode 100644 index 1fa2cb12959351de9649814a0193c1312d938dd1..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/work.jpg and /dev/null differ diff --git a/files/images/patterns/x.bmp b/files/images/patterns/x.bmp deleted file mode 100644 index 3a88357a0b441ab218652a39709efd8fc15e9da1..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/x.bmp and /dev/null differ diff --git a/files/images/patterns/y.bmp b/files/images/patterns/y.bmp deleted file mode 100644 index 1ce7ea9e53fae1d0ba59e6f288b3ec012f3939d0..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/y.bmp and /dev/null differ diff --git a/files/images/patterns/z.bmp b/files/images/patterns/z.bmp deleted file mode 100644 index 3d86f55c8e991441ee0bb9e2c10c94dc600ffedc..0000000000000000000000000000000000000000 Binary files a/files/images/patterns/z.bmp and /dev/null differ diff --git a/files/images/places/folder-remote.svg b/files/images/places/folder-remote.svg deleted file mode 100644 index dc7d3a3796425b1177b96a7b584b21ec865a483a..0000000000000000000000000000000000000000 --- a/files/images/places/folder-remote.svg +++ /dev/null @@ -1,609 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Folder Icon - - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - folder - directory - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/folder-saved-search.svg b/files/images/places/folder-saved-search.svg deleted file mode 100644 index 58e1f8812a8dac5886b3ae71c8d6b375298147d1..0000000000000000000000000000000000000000 --- a/files/images/places/folder-saved-search.svg +++ /dev/null @@ -1,545 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Home Folder Icon - - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - folder - directory - home - user - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/folder.icon b/files/images/places/folder.icon deleted file mode 100644 index 704e5587f4229ebc5585aad5242e8d878b3b77b9..0000000000000000000000000000000000000000 --- a/files/images/places/folder.icon +++ /dev/null @@ -1,2 +0,0 @@ -[Icon Data] -AttachPoints=200,800|800,800|800,80|200,80 diff --git a/files/images/places/folder.svg b/files/images/places/folder.svg deleted file mode 100644 index 79b25c305beded4252b7359bda5e67493877ac8f..0000000000000000000000000000000000000000 --- a/files/images/places/folder.svg +++ /dev/null @@ -1,424 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Folder Icon - - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - folder - directory - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/network-server.svg b/files/images/places/network-server.svg deleted file mode 100644 index 3587d2b8b98c92dd9634678b8323592b9c16f4e7..0000000000000000000000000000000000000000 --- a/files/images/places/network-server.svg +++ /dev/null @@ -1,1016 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Server - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - server - daemon - comupetr - lan - service - provider - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/network-workgroup.svg b/files/images/places/network-workgroup.svg deleted file mode 100644 index 52f620545c931830c043da373585dabed8f34709..0000000000000000000000000000000000000000 --- a/files/images/places/network-workgroup.svg +++ /dev/null @@ -1,1911 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Workgroup - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - lan - workgroup - network - peer - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/start-here.svg b/files/images/places/start-here.svg deleted file mode 100644 index 3f5313054cc7b76c473777a6fb99df6557f4fef4..0000000000000000000000000000000000000000 --- a/files/images/places/start-here.svg +++ /dev/null @@ -1,492 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Start Here - To be replaced by vendor/distribution branding. - - - start - applications - launchers - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/user-desktop.svg b/files/images/places/user-desktop.svg deleted file mode 100644 index 75749a00764e9047a77b19d7b2a0548e11d43856..0000000000000000000000000000000000000000 --- a/files/images/places/user-desktop.svg +++ /dev/null @@ -1,455 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Desktop - - - Jakub Steiner - - - http://jimmac.musichall.cz - Desktop location. - - - desktop - storage - files - default location - - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/user-home.svg b/files/images/places/user-home.svg deleted file mode 100644 index b2c83d1c3d61170f5c464455646796607e1f3d36..0000000000000000000000000000000000000000 --- a/files/images/places/user-home.svg +++ /dev/null @@ -1,529 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Home Folder Icon - - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - folder - directory - home - user - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/places/user-trash.svg b/files/images/places/user-trash.svg deleted file mode 100644 index c2d6f25a89f9ada912c4ebe893a393822eb782f7..0000000000000000000000000000000000000000 --- a/files/images/places/user-trash.svg +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Trash Empty - 2003-02-04 - - - Jakub Steiner - - - - - trash - delete - deleted files - waste - recycle - bin - empty - - - - - Novell, Inc. - - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/px4/airframes/plane_ert.png b/files/images/px4/airframes/plane_ert.png deleted file mode 100644 index 64d82d2cbf0793a19f40c19739274b8b095726f8..0000000000000000000000000000000000000000 Binary files a/files/images/px4/airframes/plane_ert.png and /dev/null differ diff --git a/files/images/px4/boards/px4flow_1.x.png b/files/images/px4/boards/px4flow_1.x.png deleted file mode 100644 index 0f396aa7c8e47cacc0191a91563b74e1ad220728..0000000000000000000000000000000000000000 Binary files a/files/images/px4/boards/px4flow_1.x.png and /dev/null differ diff --git a/files/images/px4/boards/px4fmu_1.x.png b/files/images/px4/boards/px4fmu_1.x.png deleted file mode 100644 index 294fa975ba9aa5086e849ad720e428df90136ed3..0000000000000000000000000000000000000000 Binary files a/files/images/px4/boards/px4fmu_1.x.png and /dev/null differ diff --git a/files/images/px4/boards/px4fmu_2.x.png b/files/images/px4/boards/px4fmu_2.x.png deleted file mode 100644 index 55e7d9060c379bf0675d99d0f6f81c09e41afa29..0000000000000000000000000000000000000000 Binary files a/files/images/px4/boards/px4fmu_2.x.png and /dev/null differ diff --git a/files/images/px4/calibration/arrows.png b/files/images/px4/calibration/arrows.png deleted file mode 100644 index bfcc76cfdf954dd2a5591f64afa76bcddb9abd8d..0000000000000000000000000000000000000000 Binary files a/files/images/px4/calibration/arrows.png and /dev/null differ diff --git a/files/images/px4/menu/firmware_upgrade.png b/files/images/px4/menu/firmware_upgrade.png deleted file mode 100644 index 83397753376d9e9234d6cd1698d1d1c74bf5ea65..0000000000000000000000000000000000000000 Binary files a/files/images/px4/menu/firmware_upgrade.png and /dev/null differ diff --git a/files/images/px4/menu/plane.png b/files/images/px4/menu/plane.png deleted file mode 100644 index e22d605a6bbaebf2e8dffd5e48f94657b52f099f..0000000000000000000000000000000000000000 Binary files a/files/images/px4/menu/plane.png and /dev/null differ diff --git a/files/images/px4/menu/remote.png b/files/images/px4/menu/remote.png deleted file mode 100644 index 9785678d79b080bd0efd500790336f2ef2b2dd4e..0000000000000000000000000000000000000000 Binary files a/files/images/px4/menu/remote.png and /dev/null differ diff --git a/files/images/px4/menu/sensors.png b/files/images/px4/menu/sensors.png deleted file mode 100644 index 6c972fae53bf98facc3d8a9f2ce1ee5cc40be6d3..0000000000000000000000000000000000000000 Binary files a/files/images/px4/menu/sensors.png and /dev/null differ diff --git a/files/images/px4/menu/toggle_switch.png b/files/images/px4/menu/toggle_switch.png deleted file mode 100644 index 99735ad0d4a8c8e6459c2f3fbbb1b5e2614f056e..0000000000000000000000000000000000000000 Binary files a/files/images/px4/menu/toggle_switch.png and /dev/null differ diff --git a/files/images/px4/rc/cessna_back.png b/files/images/px4/rc/cessna_back.png deleted file mode 100644 index ae54c7eb0c03bff52b0c681bbcf940ac4910714c..0000000000000000000000000000000000000000 Binary files a/files/images/px4/rc/cessna_back.png and /dev/null differ diff --git a/files/images/px4/rc/cessna_side.png b/files/images/px4/rc/cessna_side.png deleted file mode 100644 index 5fc19e68ba5ceb47e23f6ec36961fc0038898633..0000000000000000000000000000000000000000 Binary files a/files/images/px4/rc/cessna_side.png and /dev/null differ diff --git a/files/images/px4/rc/rc_backgrounds.graffle b/files/images/px4/rc/rc_backgrounds.graffle deleted file mode 100644 index a3b5c1703ac9dfdf7ae1481ba805370c76b1354c..0000000000000000000000000000000000000000 --- a/files/images/px4/rc/rc_backgrounds.graffle +++ /dev/null @@ -1,674 +0,0 @@ - - - - - ActiveLayerIndex - 0 - ApplicationVersion - - com.omnigroup.OmniGraffle - 139.18.0.187838 - - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {559.28001499176025, 782.8900146484375}} - Class - SolidGraphic - ID - 2 - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - CreationDate - 2013-08-23 20:20:16 +0000 - Creator - Lorenz - DisplayScale - 1 0/72 in = 1 0/72 in - GraphDocumentVersion - 8 - GraphicsList - - - Bounds - {{188.3818359375, 271.5}, {29, 16}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - b - 0.379293 - g - 0.379287 - r - 0.379298 - - Font - Helvetica-Bold - Size - 13 - - ID - 38 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - RTFD - - BAtzdHJlYW10eXBlZIHoA4QBQISEhBJOU0F0dHJpYnV0 - ZWRTdHJpbmcAhIQITlNPYmplY3QAhZKEhIQITlNTdHJp - bmcBlIQBKwVyaWdodIaEAmlJAQWShISEDE5TRGljdGlv - bmFyeQCUhAFpA5KElpYHTlNDb2xvcoaShISEB05TQ29s - b3IAlIQBYwKEBGZmZmaD6ujoPoPq6Og+g+ro6D4BhpKE - lpYQTlNQYXJhZ3JhcGhTdHlsZYaShISEEE5TUGFyYWdy - YXBoU3R5bGUAlIQEQ0NAUwIAhISEB05TQXJyYXkAlJkM - koSEhAlOU1RleHRUYWIAlIQCQ2YAHIaShKKhADiGkoSi - oQBUhpKEoqEAcIaShKKhAIGMAIaShKKhAIGoAIaShKKh - AIHEAIaShKKhAIHgAIaShKKhAIH8AIaShKKhAIEYAYaS - hKKhAIE0AYaShKKhAIFQAYaGgQAIhARbMWZdg83MTD2G - koSWlgZOU0ZvbnSGkoSEhAZOU0ZvbnQelJkohAVbNDBj - XQYAAAAeAAAA//5IAGUAbAB2AGUAdABpAGMAYQAtAEIA - bwBsAGQAAACEAWYNmwCbAZsAmwCGhoY= - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390 -\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;\red97\green97\blue97;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs26 \cf2 right} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{153, 271.5}, {20, 16}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - FontInfo - - Color - - b - 0.379293 - g - 0.379287 - r - 0.379298 - - Font - Helvetica-Bold - Size - 13 - - ID - 36 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - RTFD - - BAtzdHJlYW10eXBlZIHoA4QBQISEhBJOU0F0dHJpYnV0 - ZWRTdHJpbmcAhIQITlNPYmplY3QAhZKEhIQITlNTdHJp - bmcBlIQBKwRsZWZ0hoQCaUkBBJKEhIQMTlNEaWN0aW9u - YXJ5AJSEAWkEkoSWlg5OU09yaWdpbmFsRm9udIaShISE - Bk5TRm9udB6UmRyEBVsyOGNdBgAAABQAAAD//kgAZQBs - AHYAZQB0AGkAYwBhAIQBZgyEAWMAnQGdAJ0AhpKElpYQ - TlNQYXJhZ3JhcGhTdHlsZYaShISEF05TTXV0YWJsZVBh - cmFncmFwaFN0eWxlAISEEE5TUGFyYWdyYXBoU3R5bGUA - lIQEQ0NAUwIAhYEACIQEWzFmXYPNzEw9hpKElpYGTlNG - b250hpKEm5kohAVbNDBjXQYAAAAeAAAA//5IAGUAbAB2 - AGUAdABpAGMAYQAtAEIAbwBsAGQAAACcDZ0AnQGdAJ0A - hpKElpYHTlNDb2xvcoaShISEB05TQ29sb3IAlJ0ChARm - ZmZmg+ro6D6D6ujoPoPq6Og+AYaGhg== - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1187\cocoasubrtf390 -\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} -{\colortbl;\red255\green255\blue255;\red97\green97\blue97;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\b\fs26 \cf2 left} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{124, 268}, {23, 23}} - Class - ShapedGraphic - ID - 35 - Rotation - 180 - Shape - HorizontalTriangle - Style - - fill - - Color - - b - 0.380387 - g - 0.380387 - r - 0.380387 - - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - VerticalPad - 0 - - - - Bounds - {{224, 268}, {23, 23}} - Class - ShapedGraphic - ID - 34 - Shape - HorizontalTriangle - Style - - fill - - Color - - b - 0.380387 - g - 0.380387 - r - 0.380387 - - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - VerticalPad - 0 - - - - Bounds - {{251.99999284744263, 106}, {23, 23}} - Class - ShapedGraphic - ID - 33 - Rotation - 270 - Shape - HorizontalTriangle - Style - - fill - - Color - - b - 0.380387 - g - 0.380387 - r - 0.380387 - - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - VerticalPad - 0 - - - - Bounds - {{167.80909729003906, 160}, {42.381816864013672, 42}} - Class - ShapedGraphic - ID - 32 - Shape - Circle - Style - - fill - - Color - - b - 0.379293 - g - 0.379287 - r - 0.379298 - - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - VerticalPad - 0 - - - - Bounds - {{252, 205}, {23, 23}} - Class - ShapedGraphic - ID - 13 - Rotation - 90 - Shape - HorizontalTriangle - Style - - fill - - Color - - b - 0.380387 - g - 0.380387 - r - 0.380387 - - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - VerticalPad - 0 - - - - Bounds - {{171.5, 147.5}, {128, 23}} - Class - ShapedGraphic - ID - 30 - Rotation - 90 - Shape - Rectangle - Style - - fill - - Color - - b - 0.409312 - g - 0.828576 - r - 0.468975 - - - shadow - - Draws - NO - - - - - Bounds - {{119, 237}, {128, 23}} - Class - ShapedGraphic - ID - 29 - Shape - Rectangle - Style - - fill - - Color - - b - 0.409312 - g - 0.828576 - r - 0.468975 - - - shadow - - Draws - NO - - - - - Bounds - {{78, 71}, {222, 220}} - Class - ShapedGraphic - ID - 28 - Shape - Circle - Style - - fill - - Color - - b - 0.877468 - g - 0.877468 - r - 0.877468 - - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - VerticalPad - 0 - - - - GridInfo - - GuidesLocked - NO - GuidesVisible - YES - HPages - 1 - ImageCounter - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Ebene 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - LinksVisible - NO - MagnetsVisible - NO - MasterSheets - - ModificationDate - 2013-08-26 18:20:11 +0000 - Modifier - Lorenz - NotesVisible - NO - Orientation - 2 - OriginVisible - NO - PageBreaks - YES - PrintInfo - - NSBottomMargin - - float - 41 - - NSHorizonalPagination - - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG - - NSLeftMargin - - float - 18 - - NSPaperSize - - size - {595.28001499176025, 841.8900146484375} - - NSPrintReverseOrientation - - int - 0 - - NSRightMargin - - float - 18 - - NSTopMargin - - float - 18 - - - PrintOnePage - - ReadOnly - NO - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Arbeitsfläche 1 - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UniqueID - 1 - UseEntirePage - - VPages - 1 - WindowInfo - - CurrentSheet - 0 - ExpandedCanvases - - Frame - {{76, 4}, {918, 774}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 120 - VisibleRegion - {{-112, 0}, {783, 635}} - Zoom - 1 - ZoomValues - - - Arbeitsfläche 1 - 1 - 1 - - - - - diff --git a/files/images/rc_calibration.svg b/files/images/rc_calibration.svg deleted file mode 100644 index 92428ced8e42d5d34b60ef1e75353217cdd69fbd..0000000000000000000000000000000000000000 --- a/files/images/rc_calibration.svg +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/rc_stick.svg b/files/images/rc_stick.svg deleted file mode 100644 index 7e135e5c9eaa68a92ccc2cd090114c49be2018cc..0000000000000000000000000000000000000000 --- a/files/images/rc_stick.svg +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/scaling/scaling-linear.svg b/files/images/scaling/scaling-linear.svg deleted file mode 100644 index 6bfdb56ff2e10990a32a3e0e4beed07ae2aab40b..0000000000000000000000000000000000000000 --- a/files/images/scaling/scaling-linear.svg +++ /dev/null @@ -1,959 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/audio-volume-high.svg b/files/images/status/audio-volume-high.svg deleted file mode 100644 index 0d8e47a50e609733cf8ed25085f1ba076b8a024e..0000000000000000000000000000000000000000 --- a/files/images/status/audio-volume-high.svg +++ /dev/null @@ -1,645 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Volume - High - - - Jakub Steiner - - - - - Lapo Calamandrei - - - - - - http://www.tango-project.org - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/audio-volume-low.svg b/files/images/status/audio-volume-low.svg deleted file mode 100644 index 208b1bbb6b27d9b2f4806e538c767fbf2edd5396..0000000000000000000000000000000000000000 --- a/files/images/status/audio-volume-low.svg +++ /dev/null @@ -1,643 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Volume - Low - - - Jakub Steiner - - - - - Lapo Calamandrei - - - - - - http://www.tango-project.org - - - - - volume - sound - level - low - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/audio-volume-medium.svg b/files/images/status/audio-volume-medium.svg deleted file mode 100644 index e3c0bb9ec90d17d39661c4dc80f9c1dcdb966268..0000000000000000000000000000000000000000 --- a/files/images/status/audio-volume-medium.svg +++ /dev/null @@ -1,648 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Volume - Medium - - - Jakub Steiner - - - - - Lapo Calamandrei - - - - - - http://www.tango-project.org - - - - - volume - sound - level - medium - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/audio-volume-muted.svg b/files/images/status/audio-volume-muted.svg deleted file mode 100644 index 976fd5ebe225d8d95d79da08eb6135816411ea14..0000000000000000000000000000000000000000 --- a/files/images/status/audio-volume-muted.svg +++ /dev/null @@ -1,993 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Volume - Muted - - - Jakub Steiner - - - - - Lapo Calamandrei - - - - - - http://www.tango-project.org - - - - - volume - sound - level - none - mute - muted - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/battery-caution.svg b/files/images/status/battery-caution.svg deleted file mode 100644 index 2581963e356a13164ed7fa6fc36413c4646a6270..0000000000000000000000000000000000000000 --- a/files/images/status/battery-caution.svg +++ /dev/null @@ -1,639 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Battery - Caution - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - battery - apm - acpi - power management - caution - - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/battery_0.svg b/files/images/status/battery_0.svg deleted file mode 100644 index 85faa5673beedf5625f8736b94ffa365ca1ae168..0000000000000000000000000000000000000000 --- a/files/images/status/battery_0.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - -Battery - - - - - - - - -X - diff --git a/files/images/status/battery_100.svg b/files/images/status/battery_100.svg deleted file mode 100644 index 49d55f6d0b189986d3b1a52d7cd2d8906831a958..0000000000000000000000000000000000000000 --- a/files/images/status/battery_100.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - -Battery - - - - - - - - - - - - - - diff --git a/files/images/status/battery_20.svg b/files/images/status/battery_20.svg deleted file mode 100644 index fcaa00c18deb9b6603b7158cfd202e16ce61eb0d..0000000000000000000000000000000000000000 --- a/files/images/status/battery_20.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - -Battery - - - - - - - - - - diff --git a/files/images/status/battery_40.svg b/files/images/status/battery_40.svg deleted file mode 100644 index b0f7034115939c200c7109245012d62be06e55ea..0000000000000000000000000000000000000000 --- a/files/images/status/battery_40.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - -Battery - - - - - - - - - - - diff --git a/files/images/status/battery_60.svg b/files/images/status/battery_60.svg deleted file mode 100644 index 299b58514191d72b6ed411dfb5bc16201c3ef173..0000000000000000000000000000000000000000 --- a/files/images/status/battery_60.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - -Battery - - - - - - - - - - - - diff --git a/files/images/status/battery_80.svg b/files/images/status/battery_80.svg deleted file mode 100644 index 2e6625c3a4b561d1e5bb43a7888ef57601fcfd8d..0000000000000000000000000000000000000000 --- a/files/images/status/battery_80.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - -Battery - - - - - - - - - - - - - diff --git a/files/images/status/colorbars.png b/files/images/status/colorbars.png deleted file mode 100644 index 29320d193256ade753ccf033b080928161140a2a..0000000000000000000000000000000000000000 Binary files a/files/images/status/colorbars.png and /dev/null differ diff --git a/files/images/status/dialog-error.svg b/files/images/status/dialog-error.svg deleted file mode 100644 index 6dfc2dea825b6b459ebc6b7304171b8181c55876..0000000000000000000000000000000000000000 --- a/files/images/status/dialog-error.svg +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Rodney Dawes - - - - - Jakub Steiner, Garrett LeSage - - - - Dialog Error - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/dialog-information.svg b/files/images/status/dialog-information.svg deleted file mode 100644 index 922b316facd88482a08add1f8063a5c6ebe6b0a2..0000000000000000000000000000000000000000 --- a/files/images/status/dialog-information.svg +++ /dev/null @@ -1,1159 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Info - - - Jakub Steiner - - - - - dialog - info - - - http://jimmac.musichall.cz - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/dialog-warning.svg b/files/images/status/dialog-warning.svg deleted file mode 100644 index e09eccafd67b76119771695547726acf36a6a10a..0000000000000000000000000000000000000000 --- a/files/images/status/dialog-warning.svg +++ /dev/null @@ -1,373 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Dialog Warning - 2005-10-14 - - - Andreas Nilsson - - - - - Jakub Steiner, Garrett LeSage - - - - - dialog - warning - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/folder-drag-accept.icon b/files/images/status/folder-drag-accept.icon deleted file mode 100644 index 3bcd9b98746296ceebfa2efb351288b2f371a3c0..0000000000000000000000000000000000000000 --- a/files/images/status/folder-drag-accept.icon +++ /dev/null @@ -1,2 +0,0 @@ -[Icon Data] -AttachPoints=200,200|800,200|800,800|200,800 diff --git a/files/images/status/folder-drag-accept.svg b/files/images/status/folder-drag-accept.svg deleted file mode 100644 index 734feb20196187a399b553a58dbb2c9e84afc004..0000000000000000000000000000000000000000 --- a/files/images/status/folder-drag-accept.svg +++ /dev/null @@ -1,494 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Folder Icon Accept - 2005-01-31 - - - Jakub Steiner - - - - http://jimmac.musichall.cz - Active state - when files are being dragged to. - - - Novell, Inc. - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/folder-open.svg b/files/images/status/folder-open.svg deleted file mode 100644 index 237f6f25404f302a1b3e90c1c53cae6325e835f9..0000000000000000000000000000000000000000 --- a/files/images/status/folder-open.svg +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Folder Icon Accept - 2005-01-31 - - - Jakub Steiner - - - - http://jimmac.musichall.cz - Active state - when files are being dragged to. - - - Novell, Inc. - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/folder-visiting.icon b/files/images/status/folder-visiting.icon deleted file mode 100644 index 3bcd9b98746296ceebfa2efb351288b2f371a3c0..0000000000000000000000000000000000000000 --- a/files/images/status/folder-visiting.icon +++ /dev/null @@ -1,2 +0,0 @@ -[Icon Data] -AttachPoints=200,200|800,200|800,800|200,800 diff --git a/files/images/status/folder-visiting.svg b/files/images/status/folder-visiting.svg deleted file mode 100644 index f8bac9d315d15a166daa7d5bdcf41186f26fee18..0000000000000000000000000000000000000000 --- a/files/images/status/folder-visiting.svg +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Folder Icon Accept - 2005-01-31 - - - Jakub Steiner - - - - http://jimmac.musichall.cz - Active state - when files are being dragged to. - - - Novell, Inc. - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/image-loading.svg b/files/images/status/image-loading.svg deleted file mode 100644 index 0fdf252b5bb958fcd74eb085fcc356c8b5285597..0000000000000000000000000000000000000000 --- a/files/images/status/image-loading.svg +++ /dev/null @@ -1,865 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Loading Thumbnail - - - thumbnail - preview - render - wait - load - - - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/image-missing.svg b/files/images/status/image-missing.svg deleted file mode 100644 index 8b7f491041e093fd48e0f939f143f538c25ba953..0000000000000000000000000000000000000000 --- a/files/images/status/image-missing.svg +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Broken Image - - - image - picture - photo - missing - broken - 404 - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/mail-attachment.svg b/files/images/status/mail-attachment.svg deleted file mode 100644 index 4c7f5f6462b80abdc7ffb857d279f6df73b1201f..0000000000000000000000000000000000000000 --- a/files/images/status/mail-attachment.svg +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mail Attachment - 2005-11-04 - - - Andreas Nilsson - - - http://tango-project.org - - - attachment - file - - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-error.svg b/files/images/status/network-error.svg deleted file mode 100644 index 9ec7ca5667aecb60a7449ee2ffb380b74ee440ed..0000000000000000000000000000000000000000 --- a/files/images/status/network-error.svg +++ /dev/null @@ -1,1485 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-idle.svg b/files/images/status/network-idle.svg deleted file mode 100644 index 8201ad256a26d51bcb2893a019810cebefb27078..0000000000000000000000000000000000000000 --- a/files/images/status/network-idle.svg +++ /dev/null @@ -1,1370 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-offline.svg b/files/images/status/network-offline.svg deleted file mode 100644 index d34ba2719b983c332315d5ebedf3701b886619af..0000000000000000000000000000000000000000 --- a/files/images/status/network-offline.svg +++ /dev/null @@ -1,1414 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-receive.svg b/files/images/status/network-receive.svg deleted file mode 100644 index 01ed0fa3ea221c96353490bdb7be6a905d49d48a..0000000000000000000000000000000000000000 --- a/files/images/status/network-receive.svg +++ /dev/null @@ -1,1064 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-transmit-receive.svg b/files/images/status/network-transmit-receive.svg deleted file mode 100644 index 504e07bdb5c0d2b26e1a94e1ffed38931a79706b..0000000000000000000000000000000000000000 --- a/files/images/status/network-transmit-receive.svg +++ /dev/null @@ -1,1043 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-transmit.svg b/files/images/status/network-transmit.svg deleted file mode 100644 index a984f21681caed014751fe578b3389a4806d95bf..0000000000000000000000000000000000000000 --- a/files/images/status/network-transmit.svg +++ /dev/null @@ -1,1063 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Computer - 2005-03-08 - - - Jakub Steiner - - - - - workstation - computer - node - client - - - - http://jimmac.musichall.cz/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/network-wireless-encrypted.svg b/files/images/status/network-wireless-encrypted.svg deleted file mode 100644 index 623a0a687be5bf8bbf16b86f142d9f9e787707f9..0000000000000000000000000000000000000000 --- a/files/images/status/network-wireless-encrypted.svg +++ /dev/null @@ -1,1288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Novell AppArmor - - - apparmor - novell - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/printer-error.svg b/files/images/status/printer-error.svg deleted file mode 100644 index 14209f788cc4960cd9327d30a0415a48cb87db57..0000000000000000000000000000000000000000 --- a/files/images/status/printer-error.svg +++ /dev/null @@ -1,640 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Printer Error - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - printer - error - cups - lpd - halt - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/software-update-available.svg b/files/images/status/software-update-available.svg deleted file mode 100644 index 9a5a688be45c7c9307cd9d966dae823d8c82f9bd..0000000000000000000000000000000000000000 --- a/files/images/status/software-update-available.svg +++ /dev/null @@ -1,209 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - diff --git a/files/images/status/software-update-urgent.svg b/files/images/status/software-update-urgent.svg deleted file mode 100644 index 168a67c13e13fda9b2fb864dc2caed21a4fd4da4..0000000000000000000000000000000000000000 --- a/files/images/status/software-update-urgent.svg +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/user-trash-full.svg b/files/images/status/user-trash-full.svg deleted file mode 100644 index 393285f54584d59b7bd3b6ca538f118642ccd3e0..0000000000000000000000000000000000000000 --- a/files/images/status/user-trash-full.svg +++ /dev/null @@ -1,728 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Trash Full - 2003-02-03 - - - Jakub Steiner - - - - - trash - delete - deleted files - waste - recycle - bin - full - - - - - Novell, Inc. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-clear-night.svg b/files/images/status/weather-clear-night.svg deleted file mode 100644 index 5737f251e22ea5571a17319409fed7dc554afaa3..0000000000000000000000000000000000000000 --- a/files/images/status/weather-clear-night.svg +++ /dev/null @@ -1,1426 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-clear-night - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notification - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-clear.svg b/files/images/status/weather-clear.svg deleted file mode 100644 index 6a74ec853a4b08bf6320e567b40782bee1609ce0..0000000000000000000000000000000000000000 --- a/files/images/status/weather-clear.svg +++ /dev/null @@ -1,1324 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-clear - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notification - - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-few-clouds-night.svg b/files/images/status/weather-few-clouds-night.svg deleted file mode 100644 index 52a0aab1e12e580bf76c7df1a5ea1f04e60f5b83..0000000000000000000000000000000000000000 --- a/files/images/status/weather-few-clouds-night.svg +++ /dev/null @@ -1,3902 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-few-clouds-night - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-few-clouds.svg b/files/images/status/weather-few-clouds.svg deleted file mode 100644 index 57d45e93232b0891656861647d2f67bdfbb755c0..0000000000000000000000000000000000000000 --- a/files/images/status/weather-few-clouds.svg +++ /dev/null @@ -1,738 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-clear - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notification - - - - - - Garrett LeSage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-overcast.svg b/files/images/status/weather-overcast.svg deleted file mode 100644 index 35fb4a4b9ce56f262f9bdf6ce38ed70064301675..0000000000000000000000000000000000000000 --- a/files/images/status/weather-overcast.svg +++ /dev/null @@ -1,3036 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-overcast - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-severe-alert.svg b/files/images/status/weather-severe-alert.svg deleted file mode 100644 index bdae6783e4dfb3525b8adad6313f0c0fe76b4100..0000000000000000000000000000000000000000 --- a/files/images/status/weather-severe-alert.svg +++ /dev/null @@ -1,4698 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-severe-alert - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-showers-scattered.svg b/files/images/status/weather-showers-scattered.svg deleted file mode 100644 index 5a3ae325c543f960b28fcc8130d2c703bc01f4d6..0000000000000000000000000000000000000000 --- a/files/images/status/weather-showers-scattered.svg +++ /dev/null @@ -1,5159 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-scattered-showers - January 2006 - - - Ryan collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - appplet - notify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-showers.svg b/files/images/status/weather-showers.svg deleted file mode 100644 index c814571c0f899b47a0e644a432ea5eed9a3eb122..0000000000000000000000000000000000000000 --- a/files/images/status/weather-showers.svg +++ /dev/null @@ -1,4753 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-showers - January 2006 - - - Ryan collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - appplet - notify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-snow.svg b/files/images/status/weather-snow.svg deleted file mode 100644 index 6c7b4ad8faf6b152316f61f3d65b98f06912b41f..0000000000000000000000000000000000000000 --- a/files/images/status/weather-snow.svg +++ /dev/null @@ -1,1974 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-snow - January 2006 - - - Ryan Collier (pseudo) - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notification - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/images/status/weather-storm.svg b/files/images/status/weather-storm.svg deleted file mode 100644 index 4d8bfec369b3629a891248221636168187e9b11e..0000000000000000000000000000000000000000 --- a/files/images/status/weather-storm.svg +++ /dev/null @@ -1,4308 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - weather-storm - January 2006 - - - Ryan Collier - - - - - http://www.tango-project.org - - - http://www.pseudocode.org - - - weather - applet - notify - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/files/vehicles/Ascent_Park_Glider/ascent-park-glider.dae b/files/vehicles/Ascent_Park_Glider/ascent-park-glider.dae deleted file mode 100644 index 3d70dffda4f4f34c3af9c7c6d2a73ac5be6eebe6..0000000000000000000000000000000000000000 --- a/files/vehicles/Ascent_Park_Glider/ascent-park-glider.dae +++ /dev/null @@ -1,1646 +0,0 @@ - - - - - Google SketchUp 8.0.4810 - - 2011-09-04T06:55:53Z - 2011-09-04T06:55:53Z - - Z_UP - - - - - - 27.8133639 0.0000000 0.0000000 1.3710257 0.0000000 27.8133639 0.0000000 -0.0180907 0.0000000 0.0000000 27.8133639 -1.3153749 0.0000000 0.0000000 0.0000000 1.0000000 - - - - - - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.0000000 1.0000000 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -0.2565894 -0.0268066 0.0278573 -0.2792334 -0.0004506 0.0364033 -0.2792334 -0.0245146 0.0254383 -0.2565864 0.0000614 0.0410773 -0.2904024 -0.0004936 0.0334783 -0.2565874 -0.0341076 0.0081443 -0.2331884 -0.0279666 0.0295483 -0.2565864 0.0000614 0.0410773 -0.2792334 0.0247724 0.0246533 -0.2792334 -0.0004506 0.0364033 -0.2904024 -0.0004936 0.0334783 -0.2332614 0.0001094 0.0443792 -0.2565884 0.0265774 0.0280383 -0.2331884 -0.0356606 0.0101643 -0.2074894 -0.0299846 0.0316513 -0.2332614 0.0001094 0.0443792 -0.2565874 0.0343304 0.0081443 -0.2076194 -0.0382266 0.0123713 -0.2074894 0.0002934 0.0482552 -0.2332624 0.0277584 0.0296113 -0.1829834 0.0002304 0.0512063 -0.2074894 0.0002934 0.0482552 -0.1829834 -0.0396006 0.0144982 -0.2332144 0.0362804 0.0101623 -0.1829834 -0.0322256 0.0330383 -0.1829834 0.0002304 0.0512063 -0.2074894 0.0302604 0.0316513 -0.1569434 -0.0346006 0.0353463 -0.1829834 0.0320324 0.0329243 -0.1569434 -0.0415016 0.0167463 -0.2076194 0.0386904 0.0123713 -0.2332144 0.0362804 0.0101623 -0.1569434 0.0002674 0.0535023 -0.1569434 0.0002674 0.0535023 -0.1829834 0.0398804 0.0144982 -0.1289434 0.0002484 0.0550322 -0.1289434 -0.0410466 0.0191634 -0.1569434 0.0337274 0.0353463 -0.1289434 -0.0350546 0.0349013 -0.1289434 0.0002484 0.0550322 -0.1569434 0.0412874 0.0167463 -0.0957254 -0.0351616 0.0345423 -0.1289434 0.0341864 0.0348773 -0.0957384 -0.0399836 0.0220303 -0.0957624 0.0002944 0.0529072 -0.0957624 0.0002944 0.0529072 -0.1289434 0.0407434 0.0191634 -0.0513134 -0.0357376 0.0373523 -0.0957624 0.0344354 0.0344273 -0.0513134 0.0004074 0.0522103 -0.0957794 0.0395534 0.0220263 -0.0196584 0.0003684 0.0474383 -0.0513134 0.0354604 0.0373523 -0.0196584 -0.0232586 0.0393772 -0.0196584 0.0250204 0.0389652 0.0034846 0.0003464 0.0398793 0.0035156 0.0153364 0.0351403 0.0035106 -0.0109786 0.0358694 - - - - - - - - - - -0.1182786 -0.7355996 0.6670108 -0.1919899 -0.4152487 0.8892178 -0.1595203 -0.5869487 0.7937534 -0.1387633 -0.4453254 0.8845508 -0.2303492 -0.4034923 0.8855130 -0.0994419 -0.9307224 0.3519477 -0.1093269 -0.7360679 0.6680207 -0.1531283 0.4310886 0.8892212 -0.1816183 0.6005540 0.7786846 -0.2116672 0.4127060 0.8859293 -0.2324685 0.4107053 0.8816346 -0.1213735 -0.4680219 0.8753422 -0.1243432 0.7317700 0.6701130 -0.1081719 -0.9240050 0.3667608 -0.1090390 -0.7357962 0.6683670 -0.1220242 0.4595370 0.8797362 -0.1036294 0.9222456 0.3724567 -0.0992681 -0.9170483 0.3862232 -0.1163605 -0.4775626 0.8708583 -0.1111250 0.7326518 0.6714704 -0.0973158 -0.4753735 0.8743853 -0.1144504 0.4778896 0.8709320 -0.0976794 -0.9225152 0.3733958 -0.1136733 0.9100974 0.3984985 -0.1132006 -0.7505937 0.6509951 -0.0854085 0.4926090 0.8660495 -0.1068741 0.7372556 0.6671073 -0.0653483 -0.7524313 0.6554210 -0.0956406 0.7443373 0.6609197 -0.0640351 -0.9338735 0.3518235 -0.1000864 0.9113960 0.3991743 -0.1200057 0.9093258 0.3984034 -0.0627199 -0.4609365 0.8852139 -0.0688202 0.4821477 0.8733827 -0.0864715 0.9169707 0.3894708 0.0040941 -0.4754268 0.8797458 -0.0064823 -0.9351543 0.3541813 -0.0589210 0.7434989 0.6661364 0.0009345 -0.7602519 0.6496277 0.0141101 0.5005998 0.8655639 -0.0484128 0.9247313 0.3775291 -0.0178344 -0.7522523 0.6586337 0.0054442 0.7525625 0.6584983 -0.0145709 -0.9332438 0.3589481 0.0159187 -0.4420305 0.8968587 0.0233698 0.4856934 0.8738168 -0.0086702 0.9230194 0.3846557 0.0294046 -0.4542152 0.8904066 -0.0170121 0.7391409 0.6733359 0.0607765 0.0097829 0.9981035 -0.0195696 0.9241841 0.3814457 0.2159286 -0.0103073 0.9763547 -0.0066054 0.4505583 0.8927226 0.1540991 -0.3201242 0.9347588 0.1779488 0.3414472 0.9229019 0.3130386 -0.0145815 0.9496285 0.2888283 0.2998519 0.9092123 0.3041814 -0.3173336 0.8982054 - - - - - - - - - - - - - - -

0 1 2 3 1 0 1 4 2 0 2 5 6 3 0 7 8 9 8 10 9 6 0 5 6 11 3 7 12 8 6 5 13 14 11 6 15 12 7 12 16 8 6 13 17 18 11 14 14 6 17 15 19 12 19 16 12 20 18 14 21 19 15 14 17 22 19 23 16 20 14 24 25 26 21 26 19 21 24 14 22 26 23 19 27 20 24 28 26 25 24 22 29 26 30 31 32 20 27 27 24 29 33 28 25 28 34 26 26 34 30 35 32 27 27 29 36 37 28 33 37 34 28 35 27 38 39 37 33 27 36 38 37 40 34 41 35 38 42 37 39 38 36 43 37 42 40 41 44 35 38 43 41 45 42 39 42 46 40 47 44 41 47 41 43 48 42 45 42 48 46 49 44 47 49 48 45 48 50 46 51 49 47 52 48 49 52 50 48 51 47 53 54 49 51 54 52 49 55 51 53 56 54 51 57 55 53 56 51 55

-
-
-
- - - - 0.7986936 0.0001463 0.0052812 0.7733796 -0.2620476 0.0058253 0.7982926 -0.2620476 0.0051173 0.7729107 0.0001463 0.0061073 0.7733796 -0.2981086 0.0054994 0.8250756 0.0001463 0.0040102 0.7982926 0.2623404 0.0051173 0.7989906 -0.3001767 0.0049284 0.8255376 -0.2620476 0.0040283 0.8255376 0.2623404 0.0040283 0.8250756 0.0001463 0.0040102 0.7733796 0.2623404 0.0058253 0.8255376 -0.2620476 0.0040283 0.7986936 0.0001463 0.0030583 0.8250756 0.0001463 0.0040102 0.8255376 0.2623404 0.0040283 0.8250756 0.0001463 0.0040102 0.7982926 0.2623404 0.0032122 0.7733796 0.2984014 0.0054994 0.7989906 0.3004694 0.0049284 0.8235196 -0.3012096 0.0040503 0.7982926 -0.2620476 0.0032122 0.7989906 0.3004694 0.0033913 0.8235196 0.3015023 0.0040503 0.8235196 -0.3012096 0.0040503 0.7729107 0.0001463 0.0021063 0.7733796 0.2623404 0.0023973 0.8235196 0.3015023 0.0040503 0.7733796 0.2984014 0.0027332 0.7989906 -0.3001767 0.0033913 0.7733796 -0.2620476 0.0023973 0.7733796 -0.2981086 0.0027332 - - - - - - - - - - 0.0398925 -0.0002800 0.9992039 0.0285196 -0.0048594 0.9995814 0.0336241 -0.0030292 0.9994300 0.0319157 -0.0001614 0.9994906 0.0242968 -0.0061939 0.9996856 0.0475820 -0.0006429 0.9988671 0.0335498 0.0033056 0.9994316 0.0300292 -0.0034267 0.9995431 0.0391773 -0.0014752 0.9992312 0.0394433 0.0018672 0.9992201 0.0481213 -0.0001538 0.9988415 0.0284066 0.0050266 0.9995838 0.0301398 -0.0013353 -0.9995448 0.0363135 0.0002427 -0.9993404 0.0360575 -0.0000055 -0.9993497 0.0293700 0.0016500 -0.9995672 0.0356546 0.0006005 -0.9993640 0.0306946 0.0030489 -0.9995242 0.0242968 0.0061939 0.9996856 0.0300292 0.0034267 0.9995431 0.0357216 -0.0012811 0.9993610 0.0311038 -0.0021552 -0.9995138 0.0267351 0.0034717 -0.9996365 0.0357216 0.0012811 0.9993610 0.0279670 -0.0033753 -0.9996031 0.0367719 0.0001877 -0.9993237 0.0328240 0.0049834 -0.9994487 0.0267743 0.0019394 -0.9996396 0.0280348 0.0060910 -0.9995884 0.0272845 -0.0056640 -0.9996117 0.0312328 -0.0035538 -0.9995058 0.0249322 -0.0093126 -0.9996458 - - - - - - - - - - 0.3013770 0.1671280 0.5333350 0.1418970 0.5333350 0.1651980 0.3013770 0.1671280 0.3013770 0.1438370 0.5333350 0.1418970 0.5333350 0.1651980 0.5333350 0.1418970 0.5652390 0.1418970 0.3013770 0.1918000 0.3013770 0.1671280 0.5333350 0.1651980 0.3013770 0.1671280 0.0694292 0.1651980 0.3013770 0.1438370 0.5670620 0.1658480 0.5333350 0.1651980 0.5652390 0.1418970 0.5333350 0.1906800 0.3013770 0.1918000 0.5333350 0.1651980 0.0694292 0.1906800 0.3013770 0.1671280 0.3013770 0.1918000 0.0694292 0.1651980 0.0694292 0.1418970 0.3013770 0.1438370 0.0694292 0.1906800 0.0694292 0.1651980 0.3013770 0.1671280 0.5333350 0.1906800 0.5333350 0.1651980 0.5670620 0.1658480 0.5333350 0.1906800 0.3013770 0.1671280 0.3013770 0.1918000 0.0694292 0.1906800 0.3013770 0.1918000 0.0694292 0.1651980 0.0694292 0.1651980 0.0375252 0.1418970 0.0694292 0.1418970 0.0694292 0.1906800 0.0356921 0.1658480 0.0694292 0.1651980 0.5333350 0.1906800 0.5670620 0.1658480 0.5679790 0.1887900 0.5333350 0.1906800 0.5333350 0.1651980 0.3013770 0.1671280 0.3013770 0.1918000 0.3013770 0.1671280 0.0694292 0.1906800 0.0694292 0.1651980 0.0356921 0.1658480 0.0356921 0.1658480 0.0375252 0.1418970 0.0694292 0.1651980 0.0694292 0.1906800 0.0347755 0.1887900 0.0356921 0.1658480 0.5333350 0.1906800 0.5679790 0.1887900 0.5333350 0.1651980 0.3013770 0.1671280 0.5333350 0.1651980 0.3013770 0.1438370 0.0694292 0.1418970 0.0694292 0.1651980 0.0694292 0.1906800 0.0356921 0.1658480 0.0347755 0.1887900 0.0356921 0.1658480 0.0694292 0.1651980 0.5679790 0.1887900 0.5670620 0.1658480 0.5333350 0.1651980 0.5333350 0.1651980 0.5333350 0.1418970 0.3013770 0.1438370 0.0694292 0.1418970 0.0694292 0.1651980 0.0694292 0.1418970 0.0375252 0.1418970 0.5670620 0.1658480 0.5333350 0.1418970 0.5333350 0.1651980 0.5670620 0.1658480 0.5652390 0.1418970 0.5333350 0.1418970 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5 2 6 1 7 4 8 5 9 0 10 2 11 0 12 6 13 3 14 7 15 2 16 4 17 8 18 5 19 2 20 9 21 0 22 10 23 6 24 11 25 3 26 9 27 6 28 0 29 8 30 2 31 7 32 12 33 13 34 14 35 15 36 16 37 17 38 6 39 18 40 11 41 9 42 19 43 6 44 8 45 7 46 20 47 12 48 21 49 13 50 16 51 13 52 17 44 15 53 17 54 22 55 19 56 18 57 6 58 9 59 23 60 19 61 12 62 24 63 21 64 13 65 21 66 25 67 13 52 26 68 17 69 15 70 22 71 27 72 22 73 17 74 28 57 24 75 29 76 21 77 21 78 30 79 25 80 13 65 25 67 26 81 17 82 26 83 28 84 29 85 30 86 21 87 29 88 31 89 30 90

-
-
-
- - - - 0.7989906 -0.3001767 0.0049284 0.7989906 -0.3001767 0.0033913 0.8235196 -0.3012096 0.0040503 0.7733796 -0.2981086 0.0054994 0.7733796 -0.2981086 0.0054994 0.7733796 -0.2981086 0.0027332 0.7989906 -0.3001767 0.0033913 0.7733796 -0.2620476 0.0058253 0.7733796 -0.2981086 0.0027332 0.7733796 -0.2981086 0.0054994 0.7733796 -0.2620476 0.0023973 0.7733796 -0.2620476 0.0058253 0.7729107 0.0001463 0.0061073 0.7729107 0.0001463 0.0021063 0.7733796 -0.2620476 0.0023973 0.7729107 0.0001463 0.0061073 0.7733796 0.2623404 0.0023973 0.7733796 0.2623404 0.0023973 0.7729107 0.0001463 0.0061073 0.7733796 0.2623404 0.0058253 0.7733796 0.2984014 0.0027332 0.7733796 0.2623404 0.0058253 0.7733796 0.2984014 0.0054994 0.7733796 0.2984014 0.0054994 0.7989906 0.3004694 0.0049284 0.7733796 0.2984014 0.0027332 0.7989906 0.3004694 0.0049284 0.7989906 0.3004694 0.0033913 0.7733796 0.2984014 0.0027332 0.8235196 0.3015023 0.0040503 - - - - - - - - - - -0.0616475 -0.9980980 0.0000000 -0.0609430 -0.9981412 0.0000000 -0.0420752 -0.9991144 0.0000000 -0.0804852 -0.9967558 0.0000000 -0.0804852 -0.9967558 0.0000000 -0.0804852 -0.9967558 0.0000000 -0.0804852 -0.9967558 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.9999996 -0.0008929 0.0000000 -0.9999996 -0.0009197 0.0000000 -0.9999984 -0.0017886 0.0000000 -1.0000000 -0.0000000 0.0000000 -0.9999984 -0.0017886 0.0000000 -1.0000000 -0.0000000 0.0000000 -0.9999984 0.0017886 0.0000000 -0.9999996 0.0008929 0.0000000 -0.9999984 0.0017886 0.0000000 -0.9999996 0.0009197 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.0804852 0.9967558 -0.0000000 -0.0804852 0.9967558 -0.0000000 -0.0804852 0.9967558 -0.0000000 -0.0609769 0.9981392 0.0000000 -0.0616123 0.9981002 0.0000000 -0.0804852 0.9967558 -0.0000000 -0.0420752 0.9991144 -0.0000000 - - - - - - - - - - - - - - -

0 1 2 3 1 0 4 5 6 7 8 9 10 8 11 12 10 11 13 14 15 16 13 15 17 18 19 20 17 19 20 21 22 23 24 25 26 27 28 26 29 27

-
-
-
- - - - 0.7732209 -0.0015362 0.0164714 0.7983028 -0.0015362 0.0039304 0.7732211 -0.0015362 0.0039304 - - - - - - - - - - -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - 0.7983028 -0.0015362 0.0039304 0.7732211 -0.0015362 0.0039304 0.7732211 -0.0391589 0.0039304 - - - - - - - - - - -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - 0.7711706 0.0001463 0.0061073 0.7716396 -0.2620476 0.0058253 0.7716396 -0.2620476 0.0023973 0.7711706 0.0001463 0.0061073 0.7716396 -0.2620476 0.0023973 0.7711706 0.0001463 0.0021063 0.7716396 -0.2981086 0.0027332 0.7716396 -0.2620476 0.0058253 0.7716396 -0.2981086 0.0054994 0.7567896 -0.2970756 0.0056312 0.7716396 -0.2981086 0.0027332 0.7716396 -0.2981086 0.0054994 0.7567896 -0.2970756 0.0056312 0.7567896 -0.2970756 0.0026453 0.7716396 -0.2981086 0.0027332 0.7422296 -0.2950086 0.0054553 - - - - - - - - - - 0.9999984 0.0017889 -0.0000000 0.9999996 0.0009198 -0.0000000 0.9999996 0.0008930 -0.0000000 0.9999984 0.0017889 -0.0000000 0.9999984 0.0017889 -0.0000000 0.9999984 0.0017889 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.0693950 -0.9975893 0.0000000 -0.0693950 -0.9975893 0.0000000 -0.0693950 -0.9975893 0.0000000 -0.1072276 -0.9942345 0.0000000 -0.1048259 -0.9944903 0.0007929 -0.0693950 -0.9975893 0.0000000 -0.2100906 -0.9774696 0.0203746 - - - - - - - - - - - - - - -

0 1 2 3 4 5 1 6 2 7 8 6 9 10 11 12 13 14 12 15 13

-
-
-
- - - - 0.7422296 -0.2950086 0.0054553 0.7419626 -0.2950086 0.0028203 0.7567896 -0.2970756 0.0026453 0.7286656 -0.2908746 0.0051043 0.7567896 -0.2970756 0.0026453 0.7419626 -0.2950086 0.0028203 0.7265967 -0.2620476 0.0025053 0.7283996 -0.2908746 0.0030843 0.7422296 -0.2950086 0.0054553 0.7265967 -0.2620476 0.0057702 0.7286656 -0.2908746 0.0051043 0.7475466 -0.2620476 0.0022883 0.7076266 -0.2620476 0.0028323 0.7121446 -0.2867396 0.0046213 0.7283996 -0.2908746 0.0030843 0.7076266 -0.2620476 0.0053353 0.7475466 -0.2620476 0.0059884 0.7265967 0.0001463 0.0022333 0.7716396 -0.2981086 0.0027332 0.7076266 0.0001463 0.0026143 0.7118786 -0.2867396 0.0035234 0.7121446 -0.2867396 0.0046213 0.6921566 -0.2620476 0.0033762 0.7265967 0.0001463 0.0060433 0.7567896 -0.2970756 0.0056312 0.7474926 0.0001463 0.0062974 0.7474926 0.0001463 0.0019794 0.7716396 -0.2981086 0.0027332 0.7716396 -0.2620476 0.0023973 0.6921566 0.0001463 0.0032493 0.6956207 -0.2805386 0.0040944 0.7283996 -0.2908746 0.0030843 0.7118786 -0.2867396 0.0035234 0.7121446 -0.2867396 0.0046213 0.6921566 -0.2620476 0.0047363 0.7076266 0.0001463 0.0055354 0.7716396 -0.2620476 0.0058253 0.7711706 0.0001463 0.0061073 0.6956207 -0.2805386 0.0040944 0.6792886 -0.2620476 0.0040833 0.6956207 -0.2805386 0.0040944 0.6579096 0.0001463 0.0040743 0.7716396 -0.2981086 0.0054994 0.7716396 -0.2620476 0.0023973 0.7474926 0.0001463 0.0019794 0.7711706 0.0001463 0.0021063 0.6792886 -0.2620476 0.0040833 0.6921566 0.0001463 0.0048363 0.6579096 0.0001463 0.0040743 - - - - - - - - - - -0.2100906 -0.9774696 0.0203746 -0.2197245 -0.9752984 0.0226739 -0.1048259 -0.9944903 0.0007929 -0.2695695 -0.9623458 0.0349699 -0.0015414 -0.0111134 -0.9999371 -0.0166883 -0.0183385 -0.9996926 -0.0144664 -0.0085593 -0.9998587 -0.2655741 -0.9634355 0.0355322 -0.0187751 -0.0172534 0.9996749 -0.0182005 -0.0111264 0.9997724 -0.0327382 -0.0276205 0.9990822 -0.0035080 -0.0062347 -0.9999744 -0.0283383 -0.0152079 -0.9994827 -0.2882542 -0.9550780 0.0688151 -0.0290130 -0.0296417 -0.9991394 -0.0323913 -0.0167392 0.9993351 -0.0027512 -0.0064987 0.9999751 -0.0160698 -0.0011055 -0.9998703 0.0053130 -0.0087868 -0.9999473 -0.0304832 -0.0009294 -0.9995348 -0.3042569 -0.9497332 0.0737193 -0.0381741 -0.0358642 0.9986273 -0.0464604 -0.0237796 -0.9986371 -0.0193736 -0.0009085 0.9998119 -0.0005831 -0.0107606 0.9999419 -0.0020229 -0.0011128 0.9999973 -0.0112315 -0.0011807 -0.9999362 0.0045218 -0.0093154 -0.9999464 0.0045219 -0.0053691 -0.9999754 -0.0324400 -0.0006510 -0.9994735 -0.3524500 -0.9319262 0.0853961 -0.0350372 -0.0339356 -0.9988097 -0.0383742 -0.0365196 -0.9985959 -0.0435882 -0.0399352 0.9982511 -0.0458433 -0.0211530 0.9987247 -0.0358341 -0.0005790 0.9993576 0.0069572 -0.0048190 0.9999642 0.0079516 -0.0011702 0.9999677 -0.0531738 -0.0475636 -0.9974519 -0.0547218 -0.0196805 -0.9983077 -0.0487022 -0.0437656 0.9978540 -0.0250887 -0.0006154 -0.9996850 0.0082488 -0.0090373 0.9999251 0.0053614 -0.0011002 -0.9999850 0.0053614 -0.0011002 -0.9999850 0.0053614 -0.0011002 -0.9999850 -0.0491946 -0.0152992 0.9986720 -0.0341393 -0.0010586 0.9994165 -0.0222443 -0.0017797 0.9997510 - - - - - - - - - - 0.5624900 0.1143950 0.5624900 0.1141550 0.5643230 0.1280160 0.5624900 0.1143950 0.5588340 0.1017140 0.5624900 0.1141550 0.5643230 0.1280160 0.5624900 0.1141550 0.5333350 0.0997840 0.5588340 0.1017140 0.5588340 0.1014640 0.5624900 0.1141550 0.5624900 0.1143950 0.5333350 0.0997840 0.5588340 0.1017140 0.5643230 0.1280160 0.5333350 0.0997840 0.5333350 0.1193750 0.5624900 0.1141550 0.5333350 0.0820429 0.5333350 0.0997840 0.5588340 0.1017140 0.5551780 0.0862632 0.5588340 0.1014640 0.5624900 0.1141550 0.5588340 0.1014640 0.5333350 0.0820429 0.5588340 0.1017140 0.5333350 0.0997840 0.5333350 0.0820429 0.5333350 0.1193750 0.5333350 0.0997840 0.5624900 0.1143950 0.5333350 0.1193750 0.5333350 0.0997840 0.3013770 0.0997840 0.5652390 0.1418970 0.5333350 0.1193750 0.5333350 0.0997840 0.5333350 0.0820429 0.3013770 0.0820429 0.5551780 0.0862632 0.5551780 0.0860131 0.5588340 0.1014640 0.5588340 0.1017140 0.5333350 0.0820429 0.5588340 0.1014640 0.5333350 0.0675720 0.5333350 0.0820429 0.3013770 0.0997840 0.5333350 0.0820429 0.5333350 0.0997840 0.5643230 0.1280160 0.5333350 0.1193750 0.5624900 0.1143950 0.5333350 0.1193750 0.3013770 0.1193250 0.5333350 0.0997840 0.5333350 0.1193750 0.3013770 0.0997840 0.3013770 0.1193250 0.5333350 0.0997840 0.3013770 0.0820429 0.3013770 0.0997840 0.5652390 0.1418970 0.5333350 0.1193750 0.5333350 0.1418970 0.5333350 0.0820429 0.3013770 0.0675720 0.3013770 0.0820429 0.5551780 0.0862632 0.5496890 0.0708122 0.5551780 0.0860131 0.5588340 0.1014640 0.5551780 0.0860131 0.5333350 0.0675720 0.5551780 0.0862632 0.5333350 0.0675720 0.5333350 0.0820429 0.5333350 0.0675720 0.3013770 0.0675720 0.3013770 0.0997840 0.3013770 0.0820429 0.5333350 0.0820429 0.3013770 0.1193250 0.3013770 0.0997840 0.5333350 0.0997840 0.5333350 0.1418970 0.5333350 0.1193750 0.5643230 0.1280160 0.3013770 0.1438370 0.3013770 0.1193250 0.5333350 0.1193750 0.5333350 0.1418970 0.5333350 0.1193750 0.3013770 0.1193250 0.5551780 0.0860131 0.5496890 0.0708122 0.5333350 0.0555412 0.5551780 0.0862632 0.5333350 0.0675720 0.5496890 0.0708122 0.5551780 0.0860131 0.5333350 0.0555412 0.5333350 0.0675720 0.3013770 0.0820429 0.5333350 0.0675720 0.5333350 0.0820429 0.5333350 0.0675720 0.3013770 0.0355499 0.3013770 0.0675720 0.5333350 0.1418970 0.5643230 0.1280160 0.5652390 0.1418970 0.5333350 0.1418970 0.3013770 0.1438370 0.5333350 0.1193750 0.5333350 0.1418970 0.3013770 0.1193250 0.3013770 0.1438370 0.5496890 0.0708122 0.5333350 0.0675720 0.5333350 0.0555412 0.5333350 0.0675720 0.5333350 0.0555412 0.3013770 0.0355499 0.3013770 0.0820429 0.5333350 0.0675720 0.3013770 0.0675720 0.5333350 0.0555412 0.5333350 0.0675720 0.3013770 0.0675720 0.3013770 0.0355499 0.5333350 0.0555412 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5 4 6 5 7 6 8 3 9 7 10 1 11 8 12 9 13 10 14 4 15 6 16 11 17 5 18 12 19 6 20 3 21 13 22 7 23 5 24 14 25 12 26 10 27 9 28 15 29 16 30 9 31 8 32 11 33 6 34 17 35 18 36 4 15 11 37 6 38 12 39 19 40 13 41 20 42 7 43 10 44 15 45 21 41 14 46 22 47 12 48 23 49 15 50 9 51 24 52 16 53 8 54 16 55 25 56 9 57 11 58 17 59 26 60 6 61 19 62 17 63 27 64 11 65 28 66 12 67 29 68 19 69 13 70 30 71 20 72 31 73 32 74 22 75 33 76 15 45 34 77 12 78 22 79 29 80 23 81 35 82 15 83 25 84 23 85 9 86 36 87 16 88 24 89 37 90 25 91 16 92 28 93 11 94 26 95 32 96 38 97 39 98 33 99 34 100 40 101 32 102 39 103 22 104 35 105 34 106 15 107 22 108 41 109 29 110 36 111 24 112 42 113 36 114 37 115 16 116 43 117 44 118 45 119 40 120 34 121 46 122 22 123 39 124 41 125 35 126 47 68 34 127 47 128 46 129 34 130 47 131 48 132 46 133

-
-
-
- - - - 0.1332179 0.0000679 0.0331676 0.0924559 -0.5688322 0.0435176 0.1332179 -0.5688322 0.0398586 0.0924559 0.0000679 0.0369396 0.0999829 -0.9249322 0.1323046 0.1332179 -0.5688322 0.0398586 0.0924559 0.0000679 0.0293965 0.1332179 0.0000679 0.0331676 0.0414969 -0.5688322 0.0461296 0.1333729 -0.9249322 0.1286456 0.0582408 -0.9249322 0.1349166 0.0924559 -0.5688322 0.0361986 0.0414969 0.0000679 0.0396306 0.1027349 -1.0450622 0.1616276 0.1333729 -0.9249322 0.1286456 0.0664719 -1.0431721 0.1633166 0.0414969 0.0000679 0.0267045 -0.0062771 -0.5688322 0.0496336 0.0191069 -0.9249322 0.1384206 0.1326499 -1.0452721 0.1586486 0.0999829 -0.9249322 0.1249856 0.0321719 -1.0357921 0.1627826 0.0414969 -0.5688322 0.0335866 -0.0062771 0.0000679 0.0432427 0.1027349 -1.0450622 0.1616276 0.1027349 -1.0464922 0.1559236 0.1326499 -1.0452721 0.1586486 0.1326499 -1.0452721 0.1586486 0.0664719 -1.0431721 0.1633166 0.0664719 -1.0431721 0.1633166 0.0321719 -1.0357921 0.1627826 0.0664719 -1.0456122 0.1535426 -0.0062771 0.0000679 0.0230936 -0.0659621 -0.5688322 0.0461296 -0.0313621 -0.9249322 0.1349166 -0.0092081 -1.0252422 0.1588466 0.1027349 -1.0464922 0.1559236 0.1027349 -1.0464922 0.1559236 0.0582408 -0.9249322 0.1223736 0.0321719 -1.0357921 0.1627826 0.0321719 -1.0388422 0.1505496 0.0664719 -1.0456122 0.1535426 -0.0062771 -0.5688322 0.0300826 -0.0659621 0.0000679 0.0396306 -0.0092081 -1.0252422 0.1588466 0.0664719 -1.0456122 0.1535426 0.0321719 -1.0388422 0.1505496 0.0191069 -0.9249322 0.1188696 -0.0659621 0.0000679 0.0267045 -0.0763911 -0.5688322 0.0398586 -0.0383261 -0.9249322 0.1286456 -0.0149281 -1.0269321 0.1540776 -0.0092081 -1.0252422 0.1588466 -0.0092081 -1.0276822 0.1490726 0.0321719 -1.0388422 0.1505496 -0.0313621 -0.9249322 0.1223736 -0.0659621 -0.5688322 0.0335866 -0.0763911 0.0000679 0.0331676 -0.0149281 -1.0269321 0.1540776 -0.0092081 -1.0276822 0.1490726 -0.0763911 -0.5688322 0.0398586 -0.0763911 0.0000679 0.0331676 -0.0383261 -0.9249322 0.1286456 -0.0149281 -1.0269321 0.1540776 - - - - - - - - - - 0.0920122 0.0115219 0.9956912 0.0699331 0.1285150 0.9892387 0.0892361 0.1272065 0.9878539 0.0724146 0.0114662 0.9973087 0.0827235 0.2397560 0.9673024 0.0887541 -0.1281318 -0.9877778 0.0723740 -0.0118316 -0.9973074 0.0921153 -0.0117105 -0.9956795 0.0620474 0.1289976 0.9897018 0.1051660 0.2395334 0.9651756 0.0711432 0.2375776 0.9687598 0.0698338 -0.1270556 -0.9894342 0.0639980 0.0113100 0.9978859 0.0788489 0.2389865 0.9678163 0.1051099 -0.2399188 -0.9650859 0.0483572 0.2369236 0.9703241 0.0640212 -0.0120053 -0.9978763 0.0056148 0.1278982 0.9917714 0.0099265 0.2307678 0.9729582 0.0978597 0.2401987 0.9657785 0.0826626 -0.2410309 -0.9669907 0.0123065 0.2247077 0.9743485 0.0621044 -0.1266651 -0.9899995 0.0075727 0.0113215 0.9999072 -0.0123223 -0.9699072 0.2431628 -0.0097143 -0.9699351 0.2431698 0.0174070 -0.9698339 0.2431444 0.0991353 -0.2430153 -0.9649434 -0.0391997 -0.9692353 0.2429944 -0.1313036 -0.9618220 0.2401204 -0.2078817 -0.9490265 0.2369260 -0.1163101 -0.9636370 0.2405736 0.0074429 -0.0121950 -0.9998979 -0.3066794 0.1064397 0.9458427 -0.3987763 0.1545095 0.9039382 -0.3156010 0.1472140 0.9374028 0.0784513 -0.2445886 -0.9664480 -0.0394177 -0.9694679 0.2420293 0.0732354 -0.2407792 -0.9678130 -0.2372665 -0.9425875 0.2350180 -0.2325082 -0.9437032 0.2352961 -0.2079746 -0.9490784 0.2366364 0.0060356 -0.1275120 -0.9918187 -0.3031979 0.0110316 0.9528638 -0.2610162 -0.9366588 0.2335397 0.0518262 -0.2519833 -0.9663428 0.0019433 -0.2643020 -0.9644380 0.0069772 -0.2520000 -0.9677021 -0.3020775 -0.0114768 -0.9532143 -0.5138354 0.0779157 0.8543432 -0.6653020 0.0841856 0.7418127 -0.6477810 0.0385594 0.7608501 -0.1269472 -0.9623752 0.2402464 -0.1430659 -0.9602443 0.2397145 -0.2609451 -0.9366101 0.2338145 -0.3800432 -0.2856787 -0.8797471 -0.2946163 -0.1330072 -0.9463141 -0.5267379 0.0099967 0.8499689 0.0844024 -0.9667628 0.2413418 -0.3104222 -0.3018488 -0.9014019 -0.5119893 -0.1353191 -0.8482663 -0.5267437 -0.0099967 -0.8499654 -0.6417049 -0.2853676 -0.7118850 -0.6471667 -0.3208762 -0.6915300 - - - - - - - - - - 0.5018600 0.7714700 -0.0054500 0.8085500 -0.0054500 0.7714700 0.5018600 0.7714700 0.5018600 0.8085500 -0.0054500 0.8085500 0.5092300 0.5307500 0.5092300 0.5671000 0.8636000 0.5603900 1.0001400 0.7707400 0.4993500 0.8081900 0.4993500 0.7707400 0.5018600 0.8085500 -0.0054500 0.8549100 -0.0054500 0.8085500 0.8636000 0.5306100 0.5092300 0.5307500 0.8636000 0.5603900 0.8636000 0.5603900 0.5092300 0.5671000 0.8636000 0.5976100 1.0001400 0.7707400 1.0001400 0.8081900 0.4993500 0.8081900 0.5018600 0.8549100 0.5092300 0.5671000 0.5092300 0.6125400 0.8636000 0.5976100 0.8636000 0.5306100 0.8636000 0.5603900 0.9831600 0.5579300 0.8636000 0.5306100 0.5092300 0.5671000 0.5092300 0.5307500 0.8636000 0.5603900 0.8636000 0.5976100 0.9812700 0.5902700 1.0001400 0.8081900 0.4993500 0.8550100 0.4993500 0.8081900 0.5018600 0.8549100 -0.0054500 0.8983700 -0.0054500 0.8549100 0.8636000 0.5976100 0.5092300 0.6125400 0.8636000 0.6325100 0.8636000 0.5306100 0.9831600 0.5579300 0.9833600 0.5312600 0.9831600 0.5579300 0.8636000 0.5603900 0.9812700 0.5902700 0.8636000 0.5306100 0.8636000 0.5603900 0.5092300 0.5671000 0.9812700 0.5902700 0.8636000 0.5976100 0.9739300 0.6208600 1.0001400 0.8081900 1.0001400 0.8550100 0.4993500 0.8550100 0.5018600 0.8549100 0.5018600 0.8983700 -0.0054500 0.8983700 0.5092300 0.6125400 0.5092300 0.6551400 0.8636000 0.6325100 0.8636000 0.5976100 0.8636000 0.6325100 0.9739300 0.6208600 0.9831600 0.5579300 0.9845700 0.5579300 0.9833600 0.5312600 0.8636000 0.5306100 0.9833600 0.5312600 0.8636000 0.5603900 0.9812700 0.5902700 0.9845700 0.5579300 0.9831600 0.5579300 0.8636000 0.5603900 0.5092300 0.6125400 0.5092300 0.5671000 0.9812700 0.5902700 0.9739300 0.6208600 0.9837000 0.5902700 1.0001400 0.8550100 0.4993500 0.8989100 0.4993500 0.8550100 0.5018600 0.8983700 -0.0054500 0.9526700 -0.0054500 0.8983700 0.8636000 0.6325100 0.5092300 0.6551400 0.8636000 0.6775100 0.9739300 0.6208600 0.8636000 0.6325100 0.9634300 0.6577600 0.9833600 0.5312600 0.9845700 0.5579300 0.8636000 0.5603900 0.9812700 0.5902700 0.9837000 0.5902700 0.9845700 0.5579300 0.8636000 0.5603900 0.8636000 0.5976100 0.5092300 0.6125400 0.9739300 0.6208600 0.9769600 0.6208600 0.9837000 0.5902700 1.0001400 0.8550100 1.0001400 0.8989100 0.4993500 0.8989100 0.5018600 0.8983700 0.5018600 0.9526700 -0.0054500 0.9526700 0.5092300 0.6551400 0.5092300 0.7083700 0.8636000 0.6775100 0.8636000 0.6325100 0.8636000 0.6775100 0.9634300 0.6577600 0.9739300 0.6208600 0.9634300 0.6577600 0.9769600 0.6208600 0.9845700 0.5579300 0.8636000 0.5976100 0.8636000 0.5603900 0.9845700 0.5579300 0.9837000 0.5902700 0.8636000 0.5976100 0.5092300 0.6551400 0.5092300 0.6125400 0.9837000 0.5902700 0.9769600 0.6208600 0.8636000 0.6325100 0.4993500 0.8989100 1.0001400 0.8989100 0.4993500 0.9537500 0.5018600 0.9526700 -0.0054500 0.9621500 -0.0054500 0.9526700 0.8636000 0.6775100 0.5092300 0.7083700 0.8636000 0.6837200 0.9634300 0.6577600 0.8636000 0.6775100 0.9651100 0.6628600 0.9634300 0.6577600 0.9658600 0.6577600 0.9769600 0.6208600 0.9837000 0.5902700 0.8636000 0.6325100 0.8636000 0.5976100 0.8636000 0.5976100 0.8636000 0.6325100 0.5092300 0.6551400 0.9769600 0.6208600 0.8636000 0.6775100 0.8636000 0.6325100 1.0001400 0.8989100 1.0001400 0.9537500 0.4993500 0.9537500 0.5018600 0.9526700 0.5018600 0.9621500 -0.0054500 0.9621500 0.8636000 0.6837200 0.5092300 0.7083700 0.5092300 0.7176600 0.9651100 0.6628600 0.8636000 0.6775100 0.8636000 0.6837200 0.9634300 0.6577600 0.9651100 0.6628600 0.9658600 0.6577600 0.9769600 0.6208600 0.9658600 0.6577600 0.8636000 0.6775100 0.8636000 0.6325100 0.5092300 0.7083700 0.5092300 0.6551400 0.8636000 0.6325100 0.5092300 0.7083700 1.0001400 0.9537500 1.0001400 0.9633300 0.4993500 0.9537500 0.4993500 0.9537500 1.0001400 0.9633300 0.4993500 0.9633300 0.8636000 0.6775100 0.8636000 0.6837200 0.5092300 0.7176600 0.9658600 0.6577600 0.9651100 0.6628600 0.8636000 0.6837200 0.9658600 0.6577600 0.8636000 0.6837200 0.8636000 0.6775100 0.8636000 0.6775100 0.5092300 0.7176600 0.5092300 0.7083700 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5 2 6 1 7 4 8 5 9 6 10 7 11 3 12 8 13 1 14 9 15 2 16 4 17 4 18 1 19 10 20 5 21 11 22 6 23 3 4 12 24 8 13 1 25 8 26 10 27 9 28 4 29 13 30 14 31 11 32 5 33 4 34 10 35 15 36 11 37 16 38 6 39 12 40 17 41 8 42 10 43 8 44 18 45 9 46 13 47 19 48 13 49 4 50 15 51 14 52 20 53 11 54 15 55 10 56 21 57 11 58 22 59 16 60 12 61 23 62 17 63 8 64 17 65 18 66 10 67 18 68 21 69 24 70 25 71 26 72 14 73 27 74 20 75 28 76 25 77 24 78 20 79 22 80 11 81 29 82 30 83 31 84 22 85 32 86 16 87 23 88 33 89 17 90 18 91 17 92 34 93 21 94 18 95 35 96 27 97 36 98 20 99 29 100 31 101 37 102 20 103 38 104 22 105 39 106 40 107 41 108 22 109 42 110 32 111 23 112 43 113 33 114 17 115 33 116 34 117 18 118 34 119 35 120 39 121 44 122 40 123 36 124 38 125 20 126 36 127 45 128 38 27 38 129 42 130 22 131 45 132 46 133 47 134 32 135 42 136 48 137 43 138 49 139 33 140 34 141 33 142 50 143 35 144 34 145 51 146 52 147 53 148 54 149 45 150 47 151 38 152 38 153 47 154 42 155 46 156 55 157 47 158 42 159 56 160 48 161 43 162 57 163 49 164 50 165 33 166 49 167 51 168 34 169 50 170 52 171 58 172 53 173 46 174 59 175 55 176 47 177 56 178 42 179 47 180 55 141 56 181 56 182 60 183 48 184 48 185 60 186 61 187 55 188 62 189 60 190 59 191 63 192 62 193 59 194 62 195 55 196 55 197 60 198 56 199

-
-
-
- - - - -0.3075640 -0.0091006 -0.0001255 -0.3058490 -0.0092751 0.0066855 -0.3044190 -0.0598754 0.0118008 -0.3101500 -0.0569878 -0.0078931 -0.3095240 -0.0975182 -0.0061027 -0.3056410 -0.0971435 0.0114888 -0.3075970 -0.1217879 -0.0023992 -0.3065290 -0.1221539 0.0029437 - - - - - - - - - - 0.9675357 0.0005666 -0.2527339 0.9697438 0.0027291 -0.2441095 0.9632147 -0.0057923 -0.2686706 0.9600824 -0.0021737 -0.2797090 0.9739691 0.0104948 -0.2264376 0.9768113 0.0011695 -0.2140988 0.9786461 0.0363379 -0.2023150 0.9805286 0.0314164 -0.1938468 - - - - - - - - - - - - - - -

0 1 2 0 2 3 3 2 4 2 5 4 5 6 4 5 7 6

-
-
-
- - - - -0.3078930 0.1221641 0.0012200 -0.3068300 0.1217991 -0.0041229 -0.3087860 0.0971546 0.0097650 -0.3049020 0.0975284 -0.0078264 -0.3100080 0.0598863 0.0100772 -0.3042730 0.0569985 -0.0096166 -0.3068590 0.0091112 -0.0018491 -0.3085770 0.0092857 0.0049619 - - - - - - - - - - -0.9807109 -0.0309253 -0.1930020 -0.9787612 -0.0360438 -0.2018102 -0.9768128 -0.0011493 -0.2140920 -0.9739521 -0.0105184 -0.2265097 -0.9631692 0.0057551 -0.2688345 -0.9600325 0.0021280 -0.2798803 -0.9674452 -0.0005543 -0.2530799 -0.9696432 -0.0027037 -0.2445093 - - - - - - - - - - - - - - -

0 1 2 1 3 2 3 4 2 3 5 4 4 5 6 4 6 7

-
-
-
- - - - -0.3082270 -0.0007186 0.0012200 -0.3082270 -0.0120947 0.0012200 -0.3082270 -0.0087627 0.0086548 -0.3082270 -0.0087627 -0.0062146 -0.3082270 -0.0087627 0.0086548 -0.3082270 -0.0120947 0.0012200 -0.3049530 -0.0120947 0.0012200 -0.3082270 -0.0007186 0.0117343 -0.3082270 -0.0007186 -0.0092942 -0.3082270 -0.0120947 0.0012200 -0.3082270 -0.0087627 -0.0062146 -0.3049530 -0.0087627 -0.0062146 -0.3082270 -0.0087627 0.0086548 -0.3049530 -0.0120947 0.0012200 -0.3049530 -0.0087627 0.0086548 -0.3049530 -0.0120947 0.0012200 -0.3082270 -0.0120947 0.0012200 -0.3049530 -0.0087627 -0.0062146 -0.3049530 -0.0007186 0.0117343 -0.3082270 -0.0007186 0.0117343 -0.3082270 -0.0087627 0.0086548 -0.3082270 0.0073254 0.0086548 -0.3082270 0.0073254 -0.0062146 -0.3049530 -0.0087627 -0.0062146 -0.3082270 -0.0087627 -0.0062146 -0.3082270 -0.0007186 -0.0092942 -0.3049530 -0.0007186 0.0012200 -0.3049530 -0.0087627 0.0086548 -0.3049530 -0.0120947 0.0012200 -0.3049530 -0.0007186 0.0117343 -0.3082270 -0.0087627 0.0086548 -0.3049530 -0.0087627 0.0086548 -0.3049530 -0.0087627 -0.0062146 -0.3049530 0.0073254 0.0086548 -0.3082270 -0.0007186 0.0117343 -0.3049530 -0.0007186 0.0117343 -0.3049530 0.0073254 0.0086548 -0.3082270 0.0073254 0.0086548 -0.3082270 -0.0007186 0.0117343 -0.3082270 0.0106575 0.0012200 -0.3049530 -0.0007186 -0.0092942 -0.3082270 -0.0007186 -0.0092942 -0.3082270 0.0073254 -0.0062146 -0.3049530 -0.0007186 -0.0092942 -0.3049530 -0.0007186 0.0117343 -0.3049530 -0.0007186 -0.0092942 -0.3049530 0.0073254 0.0086548 -0.3049530 0.0073254 0.0086548 -0.3082270 0.0106575 0.0012200 -0.3082270 0.0073254 0.0086548 -0.3049530 0.0106575 0.0012200 -0.3082270 0.0073254 -0.0062146 -0.3082270 0.0106575 0.0012200 -0.3049530 0.0073254 -0.0062146 -0.3049530 0.0073254 -0.0062146 -0.3049530 0.0106575 0.0012200 -0.3049530 0.0073254 0.0086548 -0.3049530 0.0106575 0.0012200 -0.3082270 0.0106575 0.0012200 -0.3049530 0.0106575 0.0012200 -0.3049530 0.0073254 -0.0062146 -0.3082270 0.0073254 -0.0062146 - - - - - - - - - - -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.0000014 -0.9125459 0.4089744 -0.0000014 -0.9125459 0.4089744 -0.0000014 -0.9125459 0.4089744 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.0000000 -0.9125439 -0.4089787 0.0000000 -0.9125439 -0.4089787 0.0000000 -0.9125439 -0.4089787 0.0000000 -0.9125456 0.4089749 0.0000000 -0.9125456 0.4089749 0.0000000 -0.9125456 0.4089749 0.0000014 -0.9125442 -0.4089782 0.0000014 -0.9125442 -0.4089782 0.0000014 -0.9125442 -0.4089782 0.0000000 -0.3575223 0.9339046 0.0000000 -0.3575223 0.9339046 0.0000000 -0.3575223 0.9339046 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.0000000 -0.3575344 -0.9339000 0.0000000 -0.3575344 -0.9339000 0.0000000 -0.3575344 -0.9339000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.0000000 -0.3575223 0.9339046 -0.0000000 -0.3575223 0.9339046 -0.0000000 -0.3575223 0.9339046 1.0000000 -0.0000000 -0.0000000 0.0000000 0.3575242 0.9339039 0.0000000 0.3575242 0.9339039 0.0000000 0.3575242 0.9339039 0.0000000 0.3575242 0.9339039 0.0000000 0.3575242 0.9339039 0.0000000 0.3575242 0.9339039 -1.0000000 0.0000000 0.0000000 -0.0000000 0.3575364 -0.9338992 -0.0000000 0.3575364 -0.9338992 -0.0000000 0.3575364 -0.9338992 0.0000000 -0.3575344 -0.9339000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.0000000 0.9125426 0.4089816 -0.0000000 0.9125426 0.4089816 -0.0000000 0.9125426 0.4089816 0.0000014 0.9125407 -0.4089859 0.0000014 0.9125407 -0.4089859 0.0000014 0.9125407 -0.4089859 -0.0000000 0.3575364 -0.9338992 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.0000014 0.9125424 0.4089821 -0.0000014 0.9125424 0.4089821 -0.0000014 0.9125424 0.4089821 -0.0000000 0.9125409 -0.4089854 -0.0000000 0.9125409 -0.4089854 -0.0000000 0.9125409 -0.4089854 - - - - - - - - - - - - - - -

0 1 2 0 3 1 4 5 6 0 2 7 8 3 0 9 10 11 12 13 14 15 16 17 18 19 20 21 0 7 22 8 0 23 24 25 26 27 28 29 30 31 26 28 32 33 34 35 36 37 38 39 0 21 39 22 0 40 41 42 23 25 43 44 27 26 26 32 45 46 44 26 47 48 49 50 51 52 40 42 53 54 26 45 55 46 26 56 57 58 59 60 61 55 26 54

-
-
-
- - - - -0.2977550 -0.0003558 0.0003853 -0.3069390 -0.0003558 0.0003853 -0.3069390 -0.0141303 0.0003853 - - - - - - - - - - -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -0.3069390 -0.0003558 0.0049767 -0.2977550 -0.0003558 0.0003853 -0.3069390 -0.0003558 0.0003853 - - - - - - - - - - -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -0.2980610 0.0000433 0.0001248 -0.3070170 0.0000433 0.0001248 -0.3070170 -0.0133882 0.0001248 - - - - - - - - - - -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0597454 -0.1083362 -0.3067544 -0.0932434 -0.0811212 -0.3067624 0.0000796 0.0001438 -0.3067544 -0.0932434 -0.0811212 -0.3067554 -0.0597454 -0.1083362 -0.3067624 0.0000796 0.0001438 -0.3067544 -0.0932434 -0.0811212 -0.3067554 -0.1154854 -0.0441032 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0190314 -0.1224672 -0.3067554 -0.0597454 -0.1083362 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.1154854 -0.0441032 -0.3067544 -0.0932434 -0.0811212 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0597454 -0.1083362 -0.3067554 -0.0190314 -0.1224672 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.1154854 -0.0441032 -0.3067554 -0.1237884 -0.0017492 -0.3067554 0.0237926 -0.1218472 -0.3067554 -0.0190314 -0.1224672 -0.3067624 0.0000796 0.0001438 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.1237884 -0.0017492 -0.3067554 -0.1154854 -0.0441032 -0.3067554 0.0237926 -0.1218472 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0190314 -0.1224672 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.1237884 -0.0017492 -0.3067554 -0.1171504 0.0408327 -0.3067554 0.0637296 -0.1063802 -0.3067554 0.0237926 -0.1218472 -0.3067624 0.0000796 0.0001438 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.1171504 0.0408327 -0.3067554 -0.1237884 -0.0017492 -0.3067554 0.0637296 -0.1063802 -0.3067624 0.0000796 0.0001438 -0.3067554 0.0237926 -0.1218472 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.1171504 0.0408327 -0.3067554 -0.0963744 0.0785079 -0.3067554 0.0961856 -0.0780262 -0.3067554 0.0637296 -0.1063802 -0.3067624 0.0000796 0.0001438 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0963744 0.0785079 -0.3067554 -0.1171504 0.0408327 -0.3067554 0.0961856 -0.0780262 -0.3067624 0.0000796 0.0001438 -0.3067554 0.0637296 -0.1063802 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0963744 0.0785079 -0.3067554 -0.0639644 0.1067298 -0.3067544 0.1170506 -0.0402452 -0.3067554 0.0961856 -0.0780262 -0.3067624 0.0000796 0.0001438 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0639644 0.1067298 -0.3067554 -0.0963744 0.0785079 -0.3067544 0.1170506 -0.0402452 -0.3067624 0.0000796 0.0001438 -0.3067554 0.0961856 -0.0780262 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0639644 0.1067298 -0.3067554 -0.0236324 0.1221358 -0.3067554 0.1238056 0.0024109 -0.3067544 0.1170506 -0.0402452 -0.3067624 0.0000796 0.0001438 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0236324 0.1221358 -0.3067554 -0.0639644 0.1067298 -0.3067554 0.1238056 0.0024109 -0.3067624 0.0000796 0.0001438 -0.3067544 0.1170506 -0.0402452 -0.3067554 0.0195316 0.1229608 -0.3067624 0.0000796 0.0001438 -0.3067554 -0.0236324 0.1221358 -0.3067554 0.1238056 0.0024109 -0.3067624 0.0000796 0.0001438 -0.3067554 0.1156366 0.0447898 -0.3067554 0.0195316 0.1229608 -0.3067554 -0.0236324 0.1221358 -0.3067624 0.0000796 0.0001438 -0.3067554 0.1238056 0.0024109 -0.3067554 0.1156366 0.0447898 -0.3067624 0.0000796 0.0001438 -0.3067554 0.0601546 0.1089328 -0.3067624 0.0000796 0.0001438 -0.3067554 0.0195316 0.1229608 -0.3067554 0.1156366 0.0447898 -0.3067624 0.0000796 0.0001438 -0.3067544 0.0935316 0.0817858 -0.3067554 0.0601546 0.1089328 -0.3067554 0.0195316 0.1229608 -0.3067624 0.0000796 0.0001438 -0.3067554 0.1156366 0.0447898 -0.3067544 0.0935316 0.0817858 -0.3067624 0.0000796 0.0001438 -0.3067544 0.0935316 0.0817858 -0.3067624 0.0000796 0.0001438 -0.3067554 0.0601546 0.1089328 -0.3067544 0.0935316 0.0817858 -0.3067554 0.0601546 0.1089328 -0.3067624 0.0000796 0.0001438 - - - - - - - - - - -1.0000000 -0.0000565 -0.0000334 -1.0000000 -0.0000565 -0.0000334 -1.0000000 -0.0000565 -0.0000334 1.0000000 0.0000565 0.0000334 1.0000000 0.0000565 0.0000334 1.0000000 0.0000565 0.0000334 -1.0000000 -0.0000410 -0.0000512 -1.0000000 -0.0000410 -0.0000512 -1.0000000 -0.0000410 -0.0000512 -1.0000000 -0.0000188 -0.0000542 -1.0000000 -0.0000188 -0.0000542 -1.0000000 -0.0000188 -0.0000542 1.0000000 0.0000410 0.0000512 1.0000000 0.0000410 0.0000512 1.0000000 0.0000410 0.0000512 1.0000000 0.0000188 0.0000542 1.0000000 0.0000188 0.0000542 1.0000000 0.0000188 0.0000542 -1.0000000 -0.0000564 -0.0000111 -1.0000000 -0.0000564 -0.0000111 -1.0000000 -0.0000564 -0.0000111 -1.0000000 0.0000008 -0.0000572 -1.0000000 0.0000008 -0.0000572 -1.0000000 0.0000008 -0.0000572 1.0000000 0.0000564 0.0000111 1.0000000 0.0000564 0.0000111 1.0000000 0.0000564 0.0000111 1.0000000 -0.0000008 0.0000572 1.0000000 -0.0000008 0.0000572 1.0000000 -0.0000008 0.0000572 -1.0000000 -0.0000567 0.0000088 -1.0000000 -0.0000567 0.0000088 -1.0000000 -0.0000567 0.0000088 -1.0000000 0.0000207 -0.0000534 -1.0000000 0.0000207 -0.0000534 -1.0000000 0.0000207 -0.0000534 1.0000000 0.0000567 -0.0000088 1.0000000 0.0000567 -0.0000088 1.0000000 0.0000567 -0.0000088 1.0000000 -0.0000207 0.0000534 1.0000000 -0.0000207 0.0000534 1.0000000 -0.0000207 0.0000534 -1.0000000 -0.0000501 0.0000277 -1.0000000 -0.0000501 0.0000277 -1.0000000 -0.0000501 0.0000277 -1.0000000 0.0000377 -0.0000432 -1.0000000 0.0000377 -0.0000432 -1.0000000 0.0000377 -0.0000432 1.0000000 0.0000501 -0.0000277 1.0000000 0.0000501 -0.0000277 1.0000000 0.0000501 -0.0000277 1.0000000 -0.0000377 0.0000432 1.0000000 -0.0000377 0.0000432 1.0000000 -0.0000377 0.0000432 -1.0000000 -0.0000376 0.0000431 -1.0000000 -0.0000376 0.0000431 -1.0000000 -0.0000376 0.0000431 -1.0000000 0.0000649 -0.0000098 -1.0000000 0.0000649 -0.0000098 -1.0000000 0.0000649 -0.0000098 1.0000000 0.0000376 -0.0000431 1.0000000 0.0000376 -0.0000431 1.0000000 0.0000376 -0.0000431 1.0000000 -0.0000649 0.0000098 1.0000000 -0.0000649 0.0000098 1.0000000 -0.0000649 0.0000098 -1.0000000 -0.0000204 0.0000534 -1.0000000 -0.0000204 0.0000534 -1.0000000 -0.0000204 0.0000534 -1.0000000 0.0000572 -0.0000321 -1.0000000 0.0000572 -0.0000321 -1.0000000 0.0000572 -0.0000321 1.0000000 0.0000204 -0.0000534 1.0000000 0.0000204 -0.0000534 1.0000000 0.0000204 -0.0000534 1.0000000 -0.0000572 0.0000321 1.0000000 -0.0000572 0.0000321 1.0000000 -0.0000572 0.0000321 -1.0000000 -0.0000011 0.0000572 -1.0000000 -0.0000011 0.0000572 -1.0000000 -0.0000011 0.0000572 -1.0000000 0.0000564 0.0000109 -1.0000000 0.0000564 0.0000109 -1.0000000 0.0000564 0.0000109 1.0000000 0.0000011 -0.0000572 1.0000000 0.0000011 -0.0000572 1.0000000 0.0000011 -0.0000572 1.0000000 -0.0000564 -0.0000109 1.0000000 -0.0000564 -0.0000109 1.0000000 -0.0000564 -0.0000109 -1.0000000 0.0000187 0.0000541 -1.0000000 0.0000187 0.0000541 -1.0000000 0.0000187 0.0000541 -1.0000000 0.0000409 0.0000510 -1.0000000 0.0000409 0.0000510 -1.0000000 0.0000409 0.0000510 1.0000000 -0.0000187 -0.0000541 1.0000000 -0.0000187 -0.0000541 1.0000000 -0.0000187 -0.0000541 1.0000000 -0.0000409 -0.0000510 1.0000000 -0.0000409 -0.0000510 1.0000000 -0.0000409 -0.0000510 -1.0000000 0.0000565 0.0000332 -1.0000000 0.0000565 0.0000332 -1.0000000 0.0000565 0.0000332 1.0000000 -0.0000565 -0.0000332 1.0000000 -0.0000565 -0.0000332 1.0000000 -0.0000565 -0.0000332 - - - - - - - - - - - - - - -

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

-
-
-
- - - - -0.3070170 0.0000433 0.0046020 -0.2980610 0.0000433 0.0001248 -0.3070170 0.0000433 0.0001248 - - - - - - - - - - -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - 0.7076266 0.2623404 0.0053353 0.6921566 0.0001463 0.0048363 0.7076266 0.0001463 0.0055354 0.6921566 0.2623404 0.0047363 0.7265967 0.2623404 0.0057702 0.7121446 0.2870324 0.0046213 0.6579096 0.0001463 0.0040743 0.7265967 0.0001463 0.0060433 0.7286656 0.2911673 0.0051043 0.7121446 0.2870324 0.0046213 0.6956207 0.2808314 0.0040944 0.6792886 0.2623404 0.0040833 0.7475466 0.2623404 0.0059884 0.7422296 0.2953013 0.0054553 0.7286656 0.2911673 0.0051043 0.7283996 0.2911673 0.0030843 0.7121446 0.2870324 0.0046213 0.7118786 0.2870324 0.0035234 0.6956207 0.2808314 0.0040944 0.6921566 0.0001463 0.0032493 0.6579096 0.0001463 0.0040743 0.6792886 0.2623404 0.0040833 0.7474926 0.0001463 0.0062974 0.7422296 0.2953013 0.0054553 0.7419626 0.2953013 0.0028203 0.6956207 0.2808314 0.0040944 0.6921566 0.2623404 0.0033762 0.7118786 0.2870324 0.0035234 0.7716396 0.2623404 0.0058253 0.7567896 0.2973683 0.0056312 0.7567896 0.2973683 0.0026453 0.7283996 0.2911673 0.0030843 0.7076266 0.2623404 0.0028323 0.7118786 0.2870324 0.0035234 0.7419626 0.2953013 0.0028203 0.7265967 0.2623404 0.0025053 0.7076266 0.0001463 0.0026143 0.7711706 0.0001463 0.0061073 0.7567896 0.2973683 0.0026453 0.7475466 0.2623404 0.0022883 0.7716396 0.2984014 0.0054994 0.7716396 0.2623404 0.0023973 0.7265967 0.0001463 0.0022333 0.7474926 0.0001463 0.0019794 0.7716396 0.2623404 0.0023973 0.7567896 0.2973683 0.0026453 0.7716396 0.2984014 0.0027332 0.7711706 0.0001463 0.0021063 0.7711706 0.0001463 0.0021063 - - - - - - - - - - -0.0324077 0.0165810 0.9993372 -0.0335737 0.0005646 0.9994361 -0.0358667 0.0008953 0.9993562 -0.0451941 0.0219138 0.9987378 -0.0182227 0.0110269 0.9997731 -0.0435882 0.0399352 0.9982511 -0.0231723 0.0005026 0.9997314 -0.0194178 0.0011076 0.9998108 -0.0327382 0.0276205 0.9990822 -0.0381741 0.0358642 0.9986273 -0.0487022 0.0437656 0.9978540 -0.0506753 0.0176824 0.9985586 -0.0027913 0.0064925 0.9999750 -0.0187751 0.0172534 0.9996749 -0.2695695 0.9623458 0.0349699 -0.2655741 0.9634355 0.0355322 -0.2882542 0.9550780 0.0688151 -0.3042569 0.9497332 0.0737193 -0.3524500 0.9319262 0.0853961 -0.0330315 0.0012172 -0.9994536 -0.0240841 0.0019979 -0.9997079 -0.0532497 0.0170311 -0.9984360 -0.0021038 0.0011246 0.9999972 -0.2100906 0.9774696 0.0203746 -0.2197245 0.9752984 0.0226739 -0.0538712 0.0488255 -0.9973535 -0.0470656 0.0226681 -0.9986346 -0.0446467 0.0416069 -0.9981360 0.0069933 0.0048724 0.9999637 -0.0005831 0.0107606 0.9999419 -0.1070342 0.9942550 0.0008423 -0.0264905 0.0243093 -0.9993534 -0.0279897 0.0155301 -0.9994876 -0.0350506 0.0339895 -0.9988074 -0.0165153 0.0161451 -0.9997333 -0.0148207 0.0099400 -0.9998408 -0.0304383 0.0006642 -0.9995364 0.0080249 0.0010613 0.9999672 -0.0071675 0.0120796 -0.9999013 -0.0037434 0.0065983 -0.9999712 0.0082488 0.0090373 0.9999251 0.0045220 0.0044735 -0.9999798 -0.0160499 0.0009392 -0.9998708 -0.0033501 0.0011111 -0.9999938 0.0052762 0.0093154 -0.9999427 0.0052762 0.0093154 -0.9999427 0.0052762 0.0093154 -0.9999427 0.0045220 0.0011017 -0.9999892 0.0053614 0.0011774 -0.9999849 - - - - - - - - - - 0.0694292 0.0820429 0.3013770 0.0675720 0.3013770 0.0820429 0.0694292 0.0820429 0.0694292 0.0675720 0.3013770 0.0675720 0.0694292 0.0997840 0.0694292 0.0820429 0.3013770 0.0820429 0.0475763 0.0862632 0.0694292 0.0675720 0.0694292 0.0820429 0.0694292 0.0675720 0.3013770 0.0355499 0.3013770 0.0675720 0.0694292 0.0997840 0.3013770 0.0997840 0.0439204 0.1017140 0.0694292 0.0997840 0.0439204 0.1017140 0.0475763 0.0862632 0.0694292 0.0820429 0.0475763 0.0862632 0.0530653 0.0708122 0.0694292 0.0675720 0.0694292 0.0675720 0.0694292 0.0555412 0.3013770 0.0355499 0.0694292 0.1193750 0.0694292 0.0997840 0.3013770 0.0997840 0.0402645 0.1143950 0.0439204 0.1017140 0.0694292 0.0997840 0.0439204 0.1017140 0.0439204 0.1014640 0.0475763 0.0862632 0.0530653 0.0708122 0.0694292 0.0555412 0.0694292 0.0675720 0.0475763 0.0862632 0.0475763 0.0860131 0.0530653 0.0708122 0.3013770 0.0675720 0.3013770 0.0355499 0.0694292 0.0555412 0.0694292 0.1193750 0.3013770 0.0997840 0.3013770 0.1193250 0.0694292 0.1193750 0.0402645 0.1143950 0.0694292 0.0997840 0.0402645 0.1143950 0.0402645 0.1141550 0.0439204 0.1017140 0.0475763 0.0862632 0.0439204 0.1014640 0.0475763 0.0860131 0.0439204 0.1017140 0.0402645 0.1141550 0.0439204 0.1014640 0.0530653 0.0708122 0.0694292 0.0675720 0.0694292 0.0555412 0.0475763 0.0860131 0.0694292 0.0675720 0.0530653 0.0708122 0.0694292 0.0555412 0.0694292 0.0675720 0.0694292 0.1418970 0.0694292 0.1193750 0.3013770 0.1193250 0.0384314 0.1280160 0.0402645 0.1143950 0.0694292 0.1193750 0.0402645 0.1143950 0.0384314 0.1280160 0.0402645 0.1141550 0.0694292 0.0820429 0.0475763 0.0860131 0.0402645 0.1141550 0.0694292 0.0997840 0.0439204 0.1014640 0.0475763 0.0860131 0.0694292 0.0820429 0.0694292 0.0675720 0.3013770 0.0820429 0.3013770 0.0675720 0.0694292 0.0675720 0.0694292 0.1418970 0.3013770 0.1193250 0.3013770 0.1438370 0.0694292 0.1418970 0.0384314 0.1280160 0.0694292 0.1193750 0.0384314 0.1280160 0.0694292 0.1193750 0.0402645 0.1141550 0.0439204 0.1014640 0.0694292 0.0997840 0.0694292 0.0820429 0.0694292 0.1193750 0.0694292 0.0997840 0.0402645 0.1141550 0.3013770 0.0820429 0.0694292 0.0675720 0.0694292 0.0820429 0.0375252 0.1418970 0.0384314 0.1280160 0.0694292 0.1418970 0.0694292 0.1418970 0.0694292 0.1193750 0.0384314 0.1280160 0.3013770 0.0997840 0.0694292 0.0820429 0.0694292 0.0997840 0.0694292 0.1193750 0.3013770 0.1193250 0.0694292 0.0997840 0.3013770 0.0997840 0.3013770 0.0820429 0.0694292 0.0820429 0.0694292 0.1418970 0.0384314 0.1280160 0.0375252 0.1418970 0.0694292 0.1418970 0.3013770 0.1438370 0.0694292 0.1193750 0.3013770 0.1193250 0.3013770 0.0997840 0.0694292 0.0997840 0.3013770 0.1438370 0.3013770 0.1193250 0.0694292 0.1193750 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 3 4 1 5 4 6 0 7 2 8 5 9 3 10 0 11 3 12 6 13 1 14 4 15 2 2 7 16 8 17 0 3 4 18 8 19 9 20 0 21 5 22 10 23 3 24 3 25 11 26 6 27 12 28 4 29 7 30 13 31 8 32 4 33 14 34 15 35 16 36 10 37 11 38 3 39 16 40 17 41 18 42 19 43 20 44 21 45 12 46 7 47 22 48 12 49 13 50 4 51 23 52 24 53 14 54 16 55 15 56 17 57 14 58 24 59 15 60 25 61 26 62 21 63 27 64 26 65 25 66 19 1 21 67 26 68 28 69 12 70 22 71 29 72 13 73 12 74 23 75 30 76 24 77 31 60 32 78 33 79 34 80 35 81 31 82 27 83 32 84 26 85 36 86 19 87 26 88 28 89 22 90 37 91 28 92 29 93 12 94 38 95 39 96 34 97 31 98 35 99 32 100 39 101 35 102 34 103 36 104 26 105 32 106 40 107 29 108 28 109 41 110 39 111 38 112 42 113 32 114 35 115 39 116 43 117 35 118 42 119 36 120 32 121 44 122 45 123 46 124 41 125 47 126 39 127 43 128 42 129 35 130 48 131 43 132 39 133

-
-
-
- - - - 0.7567896 0.2973683 0.0056312 0.7567896 0.2973683 0.0026453 0.7422296 0.2953013 0.0054553 0.7716396 0.2984014 0.0054994 0.7716396 0.2984014 0.0054994 0.7716396 0.2984014 0.0027332 0.7567896 0.2973683 0.0026453 0.7716396 0.2984014 0.0054994 0.7716396 0.2623404 0.0058253 0.7716396 0.2984014 0.0027332 0.7716396 0.2623404 0.0058253 0.7716396 0.2623404 0.0023973 0.7711706 0.0001463 0.0061073 0.7716396 0.2623404 0.0023973 0.7711706 0.0001463 0.0061073 0.7711706 0.0001463 0.0021063 - - - - - - - - - - -0.1050069 0.9944715 0.0000000 -0.1070342 0.9942550 0.0008423 -0.2100906 0.9774696 0.0203746 -0.0693950 0.9975893 0.0000000 -0.0693950 0.9975893 -0.0000000 -0.0693950 0.9975893 -0.0000000 -0.0693950 0.9975893 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 0.9999996 -0.0009198 -0.0000000 0.9999996 -0.0008930 -0.0000000 0.9999984 -0.0017889 -0.0000000 0.9999984 -0.0017889 -0.0000000 0.9999984 -0.0017889 -0.0000000 0.9999984 -0.0017889 -0.0000000 - - - - - - - - - - - - - - -

0 1 2 0 3 1 4 5 6 7 8 9 9 10 11 10 12 11 13 14 15

-
-
-
- - - - 0.1027349 1.0451978 0.1616276 0.1326499 1.0454078 0.1586486 0.1027349 1.0466279 0.1559236 0.0664719 1.0457479 0.1535426 0.1333729 0.9250678 0.1286456 0.1326499 1.0454078 0.1586486 0.1027349 1.0451978 0.1616276 0.1326499 1.0454078 0.1586486 0.0999829 0.9250678 0.1249856 0.1027349 1.0466279 0.1559236 0.0664719 1.0433078 0.1633166 0.1027349 1.0451978 0.1616276 0.0664719 1.0457479 0.1535426 0.0664719 1.0457479 0.1535426 0.0999829 0.9250678 0.1323046 0.1333729 0.9250678 0.1286456 0.0321719 1.0389779 0.1505496 0.0664719 1.0433078 0.1633166 0.0582409 0.9250678 0.1223736 0.0924559 0.5689678 0.0435176 0.1333729 0.9250678 0.1286456 0.1332179 0.5689678 0.0398586 0.0664719 1.0433078 0.1633166 0.0321719 1.0389779 0.1505496 0.0321719 1.0359278 0.1627826 0.0321719 1.0389779 0.1505496 0.0582409 0.9250678 0.1349166 0.0924559 0.5689678 0.0361986 0.1332179 0.5689678 0.0398586 0.0414969 0.5689678 0.0461296 -0.0092080 1.0278178 0.1490726 0.0321719 1.0359278 0.1627826 0.0191069 0.9250678 0.1188696 0.0414969 0.5689678 0.0335866 0.0924559 0.0000679 0.0369396 0.0414969 0.0000679 0.0396306 0.1332179 0.0000679 0.0331676 0.0321719 1.0359278 0.1627826 -0.0092080 1.0278178 0.1490726 -0.0092080 1.0253779 0.1588466 -0.0092080 1.0278178 0.1490726 0.0191069 0.9250678 0.1384206 -0.0062770 0.5689678 0.0496336 0.0924559 0.0000679 0.0293965 0.1332179 0.0000679 0.0331676 -0.0062771 0.0000679 0.0432427 -0.0149280 1.0270678 0.1540776 -0.0092080 1.0253779 0.1588466 -0.0313621 0.9250678 0.1223736 -0.0062770 0.5689678 0.0300826 0.0414969 0.0000679 0.0267045 -0.0149280 1.0270678 0.1540776 -0.0149280 1.0270678 0.1540776 -0.0383261 0.9250678 0.1286456 -0.0313621 0.9250678 0.1349166 -0.0659621 0.5689678 0.0461296 -0.0659621 0.0000679 0.0396306 -0.0383261 0.9250678 0.1286456 -0.0659621 0.5689678 0.0335866 -0.0062771 0.0000679 0.0230936 -0.0763911 0.5689678 0.0398586 -0.0763911 0.0000679 0.0331676 -0.0763911 0.5689678 0.0398586 -0.0659621 0.0000679 0.0267045 -0.0763911 0.0000679 0.0331676 - - - - - - - - - - -0.0098472 0.9699338 0.2431695 0.0174070 0.9698339 0.2431444 -0.0124662 0.9699055 0.2431624 -0.0394750 0.9692248 0.2429917 0.1044672 -0.2405268 0.9650044 0.0978597 -0.2401987 0.9657785 0.0788489 -0.2389865 0.9678163 0.0991353 0.2430153 -0.9649434 0.0824088 0.2420401 -0.9667603 0.0781628 0.2442283 -0.9665625 -0.1162750 0.9636410 0.2405746 -0.0392570 0.9694741 0.2420308 -0.1312839 0.9618245 0.2401211 0.0483439 0.2462518 -0.9679994 0.0828012 -0.2405685 0.9670940 0.1057454 0.2411551 -0.9647083 -0.2079849 0.9490052 0.2369207 0.0483572 -0.2369235 0.9703241 0.0710511 0.2450042 -0.9669150 0.0700103 -0.1277403 0.9893336 0.1057625 0.2405250 -0.9648637 0.0892556 0.1272069 -0.9878521 -0.2078921 0.9490954 0.2366406 -0.2371948 0.9426045 0.2350222 -0.2324352 0.9437201 0.2353004 0.0120883 0.2583825 -0.9659671 0.0710491 -0.2383649 0.9685733 0.0697723 0.1262898 -0.9895366 0.0887528 -0.1263162 0.9880117 0.0619931 -0.1282456 0.9898030 -0.2609538 0.9366752 0.2335438 0.0123065 -0.2247077 0.9743485 0.0100619 0.2523560 -0.9675822 0.0621740 0.1259041 -0.9900922 0.0723957 -0.0116260 0.9973082 0.0640140 -0.0114650 0.9978831 0.0919922 0.0118961 -0.9956887 -0.2610249 0.9365892 0.2338092 -0.1270192 0.9623663 0.2402442 -0.1431001 0.9602395 0.2397133 -0.3164269 0.3078212 -0.8972849 0.0104947 -0.2309266 0.9729146 0.0060570 -0.1279008 0.9917685 0.0723910 0.0119906 -0.9973042 0.0921372 -0.0117105 0.9956775 0.0074523 -0.0113226 0.9999081 0.0844025 0.9667628 0.2413418 -0.3163919 -0.1480663 0.9370019 -0.3825487 0.2823036 -0.8797507 0.0056139 0.1275156 -0.9918207 0.0640062 0.0121602 -0.9978754 -0.6466906 0.3194771 -0.6926223 -0.6470108 -0.0414116 0.7613554 -0.6665686 -0.0793135 0.7412123 -0.3986125 -0.1520334 0.9044302 -0.3060937 -0.1083503 0.9458154 -0.3032284 -0.0107942 0.9528568 -0.6403249 0.2833303 -0.7139383 -0.2950467 0.1345138 -0.9459670 0.0075618 0.0121961 -0.9998970 -0.5150273 -0.0799386 0.8534382 -0.5265836 -0.0097150 0.8500678 -0.5105474 0.1376854 -0.8487544 -0.3021340 0.0113861 -0.9531975 -0.5267436 0.0099967 -0.8499654 - - - - - - - - - - 0.0180700 0.5617800 0.0178500 0.5344300 0.0165400 0.5617800 0.0180700 0.5617800 0.0165400 0.5617800 0.0174800 0.5949300 0.1475500 0.5337700 0.0178500 0.5344300 0.0180700 0.5617800 0.0178500 0.5344300 0.1475500 0.5643000 0.0165400 0.5617800 0.0201100 0.5949300 0.0180700 0.5617800 0.0174800 0.5949300 0.0165400 0.5617800 0.1475500 0.5643000 0.0174800 0.5949300 0.1475500 0.5337700 0.0180700 0.5617800 0.1475500 0.5643000 0.1475500 0.5337700 0.1475500 0.5643000 0.0178500 0.5344300 0.0201100 0.5949300 0.0174800 0.5949300 0.0247800 0.6262900 0.0180700 0.5617800 0.0201100 0.5949300 0.1475500 0.5643000 0.1475500 0.5643000 0.1475500 0.6024600 0.0174800 0.5949300 0.1475500 0.5337700 0.1475500 0.5643000 0.5313600 0.5711800 0.1475500 0.5337700 0.5313600 0.5339100 0.1475500 0.5643000 0.0201100 0.5949300 0.0247800 0.6262900 0.0280600 0.6262900 0.0174800 0.5949300 0.1475500 0.6024600 0.0247800 0.6262900 0.1475500 0.5643000 0.0201100 0.5949300 0.1475500 0.6024600 0.1475500 0.5643000 0.5313600 0.5711800 0.1475500 0.6024600 0.1475500 0.5337700 0.5313600 0.5711800 0.5313600 0.5339100 0.1475500 0.5643000 0.5313600 0.6177700 0.5313600 0.5711800 0.5313600 0.5339100 0.5313600 0.5711800 0.1475500 0.5643000 0.0280600 0.6262900 0.0247800 0.6262900 0.0368100 0.6641300 0.0201100 0.5949300 0.0280600 0.6262900 0.1475500 0.6024600 0.1475500 0.6382400 0.0247800 0.6262900 0.1475500 0.5643000 0.1475500 0.6024600 0.5313600 0.6177700 0.5313600 0.5711800 0.5313600 0.6177700 0.1475500 0.6024600 1.0091600 0.7714700 1.0091600 0.8085500 0.5018600 0.8085500 1.0091600 0.8085500 1.0091600 0.8549100 0.5018600 0.8549100 0.4993500 0.7707400 1.0001400 0.8081900 1.0001400 0.7707400 0.0280600 0.6262900 0.0368100 0.6641300 0.0394300 0.6641300 0.0247800 0.6262900 0.1475500 0.6382400 0.0368100 0.6641300 0.1475500 0.6024600 0.0280600 0.6262900 0.1475500 0.6382400 0.1475500 0.6024600 0.5313600 0.6177700 0.1475500 0.6382400 0.1475500 0.6024600 0.5313600 0.6614500 0.5313600 0.6177700 0.4993500 0.8081900 1.0001400 0.8550100 1.0001400 0.8081900 1.0091600 0.7714700 0.5018600 0.8085500 0.5018600 0.7714700 1.0091600 0.8085500 0.5018600 0.8549100 0.5018600 0.8085500 1.0091600 0.8549100 0.5018600 0.8983700 0.5018600 0.8549100 0.4993500 0.7707400 0.4993500 0.8081900 1.0001400 0.8081900 0.0394300 0.6641300 0.0368100 0.6641300 0.0376100 0.6693500 0.0280600 0.6262900 0.0394300 0.6641300 0.1475500 0.6382400 0.1475500 0.6382400 0.1475500 0.6843800 0.0368100 0.6641300 0.1475500 0.6382400 0.5313600 0.6614500 0.5313600 0.6614500 0.1475500 0.6382400 1.0091600 0.8549100 1.0091600 0.8983700 0.5018600 0.8983700 0.4993500 0.8081900 0.4993500 0.8550100 1.0001400 0.8550100 0.0368100 0.6641300 0.1475500 0.6843800 0.0376100 0.6693500 0.0394300 0.6641300 0.0376100 0.6693500 0.1475500 0.6907500 0.1475500 0.6382400 0.0394300 0.6641300 0.1475500 0.6843800 0.1475500 0.6382400 0.5313600 0.6614500 0.1475500 0.6843800 0.1475500 0.6382400 0.5313600 0.7160100 0.5313600 0.6614500 0.4993500 0.8550100 1.0001400 0.8989100 1.0001400 0.8550100 1.0091600 0.8983700 0.5018600 0.9526700 0.0376100 0.6693500 0.1475500 0.6843800 0.1475500 0.6907500 0.1475500 0.6907500 0.1475500 0.6843800 0.1475500 0.6382400 0.1475500 0.6843800 0.5313600 0.7160100 0.5313600 0.6614500 0.5313600 0.7160100 0.1475500 0.6843800 1.0091600 0.8983700 1.0091600 0.9526700 0.5018600 0.9526700 0.4993500 0.8550100 0.4993500 0.8989100 1.0001400 0.8989100 0.1475500 0.6843800 0.5313600 0.7160100 0.1475500 0.6907500 0.1475500 0.6843800 0.1475500 0.6907500 0.5313600 0.7255500 0.1475500 0.6843800 0.5313600 0.7255500 0.5313600 0.7160100 1.0001400 0.8989100 0.4993500 0.8989100 1.0001400 0.9537500 1.0091600 0.9526700 0.5018600 0.9621500 0.5018600 0.9526700 0.1475500 0.6907500 0.5313600 0.7160100 0.5313600 0.7255500 1.0091600 0.9526700 1.0091600 0.9621500 0.5018600 0.9621500 0.4993500 0.8989100 0.4993500 0.9537500 1.0001400 0.9537500 0.4993500 0.9537500 1.0001400 0.9633300 1.0001400 0.9537500 0.4993500 0.9537500 0.4993500 0.9633300 1.0001400 0.9633300 - - - - - - - - - - - - - - -

0 0 1 1 2 2 0 3 2 4 3 5 4 6 5 7 6 8 7 9 8 10 9 11 10 12 11 13 12 14 9 15 8 16 13 17 4 18 6 19 14 20 15 21 8 22 7 23 10 24 12 25 16 26 6 27 17 28 14 29 8 30 18 31 13 32 4 33 14 34 19 35 20 36 21 37 8 38 22 39 23 40 24 41 13 42 18 43 25 44 14 45 17 46 26 47 8 48 27 49 18 50 4 51 19 52 28 53 14 54 29 55 19 56 21 57 27 58 8 59 24 60 23 61 30 62 17 63 31 64 26 43 18 65 32 66 25 67 14 68 26 69 29 70 27 71 33 72 18 73 28 74 19 75 34 76 19 77 29 78 35 79 36 80 27 81 21 82 37 83 38 84 39 85 25 86 32 87 40 88 26 89 31 90 41 91 18 92 33 93 32 94 26 95 42 96 29 97 43 98 33 99 27 100 28 101 34 102 44 103 19 104 35 105 34 106 29 107 45 108 35 109 36 110 43 111 27 112 39 113 38 114 46 115 31 116 47 117 41 118 32 119 48 120 40 121 26 69 41 122 42 123 33 70 49 124 32 125 29 126 42 127 45 128 43 129 50 130 33 131 40 132 48 133 51 134 47 135 52 136 53 137 41 138 47 139 54 140 32 141 49 142 48 143 41 144 55 145 42 146 50 147 49 148 33 149 42 150 56 151 45 108 51 152 48 153 57 154 47 85 53 155 54 156 41 157 54 158 55 159 49 160 58 161 48 162 42 163 55 164 56 165 50 166 59 167 49 168 48 169 58 170 57 171 54 172 53 173 60 174 54 175 60 176 55 177 49 178 59 179 58 180 55 181 61 182 56 183 57 184 58 185 62 186 55 187 60 188 61 189 59 190 63 191 58 192 63 193 62 194 58 195 63 196 64 197 62 198

-
-
-
- - - - 0.8175213 0.0002183 0.1903148 0.7609673 0.0014333 0.1913018 0.7609673 -0.0011507 0.1913018 0.7719623 0.0017203 0.0094140 0.7609673 -0.0011507 0.1913018 0.7609673 0.0014333 0.1913018 0.7719623 -0.0014667 0.0094140 0.8283293 0.0001733 0.0394867 0.7719623 -0.0014667 0.0094140 0.7719623 0.0017203 0.0094140 - - - - - - - - - - 0.0174496 0.0000000 0.9998477 0.0174496 0.0000000 0.9998477 0.0174496 0.0000000 0.9998477 -0.9981779 0.0000000 -0.0603390 -0.9981779 0.0000000 -0.0603390 -0.9981779 0.0000000 -0.0603390 -0.9981779 0.0000000 -0.0603390 0.4707136 -0.0000000 -0.8822861 0.4707136 -0.0000000 -0.8822861 0.4707136 -0.0000000 -0.8822861 - - - - - - - - - - - - - - -

0 1 2 3 4 5 3 6 4 7 8 9

-
-
-
- - - - 0.8175213 0.0002183 0.1903148 0.7719623 -0.0014667 0.0094140 0.8283293 0.0001733 0.0394867 0.7609673 -0.0011507 0.1913018 0.8175213 0.0002183 0.1903148 0.8283293 0.0001733 0.0394867 0.7719623 0.0017203 0.0094140 0.7609673 0.0014333 0.1913018 - - - - - - - - - - 0.0235372 -0.9997186 0.0029641 0.0252951 -0.9996768 0.0025210 0.0261729 -0.9996548 0.0022998 0.0229116 -0.9997326 0.0031218 0.0224978 0.9997434 0.0026349 0.0265786 0.9996454 0.0016063 0.0252195 0.9996800 0.0019489 0.0215292 0.9997641 0.0028789 - - - - - - - - - - 0.8834148 0.2341992 0.8457940 0.0752060 0.8953332 0.1023832 0.8332240 0.2341990 0.8457940 0.0752060 0.8834146 0.2341992 0.8834130 0.2341990 0.8953310 0.1023830 0.8457940 0.0752060 0.8332240 0.2341990 0.8834130 0.2341990 0.8457940 0.0752060 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 1 4 0 5 4 6 5 7 6 8 7 9 4 10 6 11

-
-
-
- - - - 0.7649469 -0.0001083 0.1266593 0.7910409 -0.0001083 0.0928854 0.7674242 -0.0001083 0.0912340 - - - - - - - - - - -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - 0.7910409 -0.0001083 0.0928854 0.7674242 -0.0001083 0.0912340 0.7674242 0.0117290 0.0912340 - - - - - - - - - - 0.0697551 0.0000000 -0.9975641 0.0697551 0.0000000 -0.9975641 0.0697551 0.0000000 -0.9975641 - - - - - - - - - - - - - - -

0 1 2

-
-
-
- - - - 0.7642718 0.0016913 0.1097834 0.7598838 -0.0011497 0.1918704 0.7598838 0.0014343 0.1918704 0.7642718 0.0016913 0.1097834 0.7642718 -0.0014367 0.1097834 0.7598838 -0.0011497 0.1918704 0.7598838 0.0014343 0.1918704 0.7598838 -0.0011497 0.1918704 0.7642718 -0.0014367 0.1097834 0.7642718 0.0016913 0.1097834 0.7598838 0.0014343 0.1918704 0.7642718 -0.0014367 0.1097834 0.7675578 0.0016953 0.0629654 0.7642718 -0.0014367 0.1097834 0.7642718 0.0016913 0.1097834 0.7642718 0.0016913 0.1097834 0.7642718 -0.0014367 0.1097834 0.7675578 -0.0014417 0.0629654 0.7675578 0.0016953 0.0629654 0.7675578 -0.0014417 0.0629654 0.7642718 -0.0014367 0.1097834 0.7675578 0.0016953 0.0629654 0.7642718 0.0016913 0.1097834 0.7675578 -0.0014417 0.0629654 0.7716208 0.0017033 0.0047884 0.7675578 -0.0014417 0.0629654 0.7675578 0.0016953 0.0629654 0.7675578 0.0016953 0.0629654 0.7675578 -0.0014417 0.0629654 0.7716208 -0.0014507 0.0047884 0.7716208 0.0017033 0.0047884 0.7716208 -0.0014507 0.0047884 0.7675578 -0.0014417 0.0629654 0.7716208 0.0017033 0.0047884 0.7675578 0.0016953 0.0629654 0.7716208 -0.0014507 0.0047884 - - - - - - - - - - -0.9985743 -0.0000000 -0.0533797 -0.9985743 -0.0000000 -0.0533797 -0.9985743 -0.0000000 -0.0533797 -0.9985743 -0.0000000 -0.0533797 -0.9985743 -0.0000000 -0.0533797 -0.9985743 -0.0000000 -0.0533797 0.9985743 -0.0000000 0.0533797 0.9985743 -0.0000000 0.0533797 0.9985743 -0.0000000 0.0533797 0.9985743 -0.0000000 0.0533797 0.9985743 -0.0000000 0.0533797 0.9985743 -0.0000000 0.0533797 -0.9975460 -0.0000000 -0.0700145 -0.9975460 -0.0000000 -0.0700145 -0.9975460 -0.0000000 -0.0700145 0.9975460 -0.0000000 0.0700145 0.9975460 -0.0000000 0.0700145 0.9975460 -0.0000000 0.0700145 -0.9975460 -0.0000000 -0.0700145 -0.9975460 -0.0000000 -0.0700145 -0.9975460 -0.0000000 -0.0700145 0.9975460 -0.0000000 0.0700145 0.9975460 -0.0000000 0.0700145 0.9975460 -0.0000000 0.0700145 -0.9975702 0.0000000 -0.0696691 -0.9975702 0.0000000 -0.0696691 -0.9975702 0.0000000 -0.0696691 0.9975702 0.0000000 0.0696691 0.9975702 0.0000000 0.0696691 0.9975702 0.0000000 0.0696691 -0.9975702 0.0000000 -0.0696691 -0.9975702 0.0000000 -0.0696691 -0.9975702 0.0000000 -0.0696691 0.9975702 0.0000000 0.0696691 0.9975702 0.0000000 0.0696691 0.9975702 0.0000000 0.0696691 - - - - - - - - - - - - - - -

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

-
-
-
- - - - 0.7598838 -0.0011497 0.1918704 0.7642718 -0.0014367 0.1097834 0.7387798 -0.0016577 0.1911024 0.7387798 -0.0016577 0.1911024 0.7642718 -0.0014367 0.1097834 0.7321438 -0.0025617 0.1098354 0.7598838 -0.0011497 0.1918704 0.7387798 -0.0016577 0.1911024 0.7642718 -0.0014367 0.1097834 0.7387798 -0.0016577 0.1911024 0.7321438 -0.0025617 0.1098354 0.7642718 -0.0014367 0.1097834 0.7321438 -0.0025617 0.1098354 0.7642718 -0.0014367 0.1097834 0.7675578 -0.0014417 0.0629654 0.7387798 -0.0016577 0.1911024 0.7321438 -0.0025617 0.1098354 0.7207138 -0.0021067 0.1895074 0.7387798 -0.0016577 0.1911024 0.7207138 -0.0021067 0.1895074 0.7321438 -0.0025617 0.1098354 0.7321438 -0.0025617 0.1098354 0.7675578 -0.0014417 0.0629654 0.7642718 -0.0014367 0.1097834 0.7321438 -0.0025617 0.1098354 0.7675578 -0.0014417 0.0629654 0.7273008 -0.0025757 0.0629025 0.7207138 -0.0021067 0.1895074 0.7321438 -0.0025617 0.1098354 0.7045528 -0.0031967 0.1098354 0.7207138 -0.0021067 0.1895074 0.7045528 -0.0031967 0.1098354 0.7321438 -0.0025617 0.1098354 0.7321438 -0.0025617 0.1098354 0.7273008 -0.0025757 0.0629025 0.7675578 -0.0014417 0.0629654 0.7675578 -0.0014417 0.0629654 0.7716208 -0.0014507 0.0047884 0.7273008 -0.0025757 0.0629025 0.7321438 -0.0025617 0.1098354 0.7273008 -0.0025757 0.0629025 0.7045528 -0.0031967 0.1098354 0.7207138 -0.0021067 0.1895074 0.7045528 -0.0031967 0.1098354 0.7050708 -0.0018827 0.1875554 0.7207138 -0.0021067 0.1895074 0.7050708 -0.0018827 0.1875554 0.7045528 -0.0031967 0.1098354 0.7045528 -0.0031967 0.1098354 0.7273008 -0.0025757 0.0629025 0.7321438 -0.0025617 0.1098354 0.7675578 -0.0014417 0.0629654 0.7273008 -0.0025757 0.0629025 0.7716208 -0.0014507 0.0047884 0.7273008 -0.0025757 0.0629025 0.7716208 -0.0014507 0.0047884 0.7223638 -0.0026047 0.0045834 0.7045528 -0.0031967 0.1098354 0.7273008 -0.0025757 0.0629025 0.6946948 -0.0032137 0.0629025 0.7050708 -0.0018827 0.1875554 0.7045528 -0.0031967 0.1098354 0.6797548 -0.0028637 0.1098354 0.7050708 -0.0018827 0.1875554 0.6797548 -0.0028637 0.1098354 0.7045528 -0.0031967 0.1098354 0.7045528 -0.0031967 0.1098354 0.6946948 -0.0032137 0.0629025 0.7273008 -0.0025757 0.0629025 0.7273008 -0.0025757 0.0629025 0.7223638 -0.0026047 0.0045834 0.7716208 -0.0014507 0.0047884 0.7273008 -0.0025757 0.0629025 0.7223638 -0.0026047 0.0045834 0.6946948 -0.0032137 0.0629025 0.7045528 -0.0031967 0.1098354 0.6946948 -0.0032137 0.0629025 0.6797548 -0.0028637 0.1098354 0.7050708 -0.0018827 0.1875554 0.6797548 -0.0028637 0.1098354 0.6962768 -0.0012087 0.1842814 0.7050708 -0.0018827 0.1875554 0.6962768 -0.0012087 0.1842814 0.6797548 -0.0028637 0.1098354 0.6797548 -0.0028637 0.1098354 0.6946948 -0.0032137 0.0629025 0.7045528 -0.0031967 0.1098354 0.6946948 -0.0032137 0.0629025 0.7223638 -0.0026047 0.0045834 0.7273008 -0.0025757 0.0629025 0.6946948 -0.0032137 0.0629025 0.7223638 -0.0026047 0.0045834 0.6864338 -0.0032487 0.0045834 0.6797548 -0.0028637 0.1098354 0.6946948 -0.0032137 0.0629025 0.6650908 -0.0028787 0.0629025 0.6962768 -0.0012087 0.1842814 0.6797548 -0.0028637 0.1098354 0.6624618 -0.0017867 0.1098354 0.6962768 -0.0012087 0.1842814 0.6624618 -0.0017867 0.1098354 0.6797548 -0.0028637 0.1098354 0.6797548 -0.0028637 0.1098354 0.6650908 -0.0028787 0.0629025 0.6946948 -0.0032137 0.0629025 0.6946948 -0.0032137 0.0629025 0.6864338 -0.0032487 0.0045834 0.7223638 -0.0026047 0.0045834 0.6946948 -0.0032137 0.0629025 0.6864338 -0.0032487 0.0045834 0.6650908 -0.0028787 0.0629025 0.6797548 -0.0028637 0.1098354 0.6650908 -0.0028787 0.0629025 0.6624618 -0.0017867 0.1098354 0.6962768 -0.0012087 0.1842814 0.6624618 -0.0017867 0.1098354 0.6914568 0.0001383 0.1817184 0.6962768 -0.0012087 0.1842814 0.6914568 0.0001383 0.1817184 0.6624618 -0.0017867 0.1098354 0.6624618 -0.0017867 0.1098354 0.6650908 -0.0028787 0.0629025 0.6797548 -0.0028637 0.1098354 0.6650908 -0.0028787 0.0629025 0.6864338 -0.0032487 0.0045834 0.6946948 -0.0032137 0.0629025 0.6650908 -0.0028787 0.0629025 0.6864338 -0.0032487 0.0045834 0.6471408 -0.0029107 0.0045834 0.6624618 -0.0017867 0.1098354 0.6650908 -0.0028787 0.0629025 0.6394638 -0.0017967 0.0629025 0.6914568 0.0001383 0.1817184 0.6624618 -0.0017867 0.1098354 0.6585308 0.0001323 0.1098354 0.6914568 0.0001383 0.1817184 0.6585308 0.0001323 0.1098354 0.6624618 -0.0017867 0.1098354 0.6624618 -0.0017867 0.1098354 0.6394638 -0.0017967 0.0629025 0.6650908 -0.0028787 0.0629025 0.6650908 -0.0028787 0.0629025 0.6471408 -0.0029107 0.0045834 0.6864338 -0.0032487 0.0045834 0.6650908 -0.0028787 0.0629025 0.6471408 -0.0029107 0.0045834 0.6394638 -0.0017967 0.0629025 0.6624618 -0.0017867 0.1098354 0.6394638 -0.0017967 0.0629025 0.6585308 0.0001323 0.1098354 0.6914568 0.0001383 0.1817184 0.6585308 0.0001323 0.1098354 0.6624618 0.0020383 0.1098354 0.6914568 0.0001383 0.1817184 0.6624618 0.0020383 0.1098354 0.6585308 0.0001323 0.1098354 0.6585308 0.0001323 0.1098354 0.6394638 -0.0017967 0.0629025 0.6624618 -0.0017867 0.1098354 0.6394638 -0.0017967 0.0629025 0.6471408 -0.0029107 0.0045834 0.6650908 -0.0028787 0.0629025 0.6394638 -0.0017967 0.0629025 0.6471408 -0.0029107 0.0045834 0.6113038 -0.0018147 0.0045834 0.6585308 0.0001323 0.1098354 0.6394638 -0.0017967 0.0629025 0.6354078 0.0001323 0.0629025 0.6962768 0.0014403 0.1842814 0.6914568 0.0001383 0.1817184 0.6624618 0.0020383 0.1098354 0.6585308 0.0001323 0.1098354 0.6394638 0.0020483 0.0629025 0.6624618 0.0020383 0.1098354 0.6962768 0.0014403 0.1842814 0.6624618 0.0020383 0.1098354 0.6914568 0.0001383 0.1817184 0.6624618 0.0020383 0.1098354 0.6394638 0.0020483 0.0629025 0.6585308 0.0001323 0.1098354 0.6585308 0.0001323 0.1098354 0.6354078 0.0001323 0.0629025 0.6394638 -0.0017967 0.0629025 0.6394638 -0.0017967 0.0629025 0.6113038 -0.0018147 0.0045834 0.6471408 -0.0029107 0.0045834 0.6394638 -0.0017967 0.0629025 0.6113038 -0.0018147 0.0045834 0.6354078 0.0001323 0.0629025 0.6585308 0.0001323 0.1098354 0.6354078 0.0001323 0.0629025 0.6394638 0.0020483 0.0629025 0.6962768 0.0014403 0.1842814 0.6624618 0.0020383 0.1098354 0.6793718 0.0032343 0.1098354 0.6624618 0.0020383 0.1098354 0.6394638 0.0020483 0.0629025 0.6646908 0.0032503 0.0629025 0.6962768 0.0014403 0.1842814 0.6793718 0.0032343 0.1098354 0.6624618 0.0020383 0.1098354 0.6585308 0.0001323 0.1098354 0.6394638 0.0020483 0.0629025 0.6354078 0.0001323 0.0629025 0.6624618 0.0020383 0.1098354 0.6646908 0.0032503 0.0629025 0.6394638 0.0020483 0.0629025 0.6354078 0.0001323 0.0629025 0.6113038 -0.0018147 0.0045834 0.6394638 -0.0017967 0.0629025 0.6354078 0.0001323 0.0629025 0.6113038 -0.0018147 0.0045834 0.6069868 0.0001313 0.0045834 0.6354078 0.0001323 0.0629025 0.6113038 0.0020663 0.0045834 0.6394638 0.0020483 0.0629025 0.7050218 0.0021893 0.1875554 0.6962768 0.0014403 0.1842814 0.6793718 0.0032343 0.1098354 0.6624618 0.0020383 0.1098354 0.6646908 0.0032503 0.0629025 0.6793718 0.0032343 0.1098354 0.6394638 0.0020483 0.0629025 0.6467088 0.0032833 0.0045834 0.6646908 0.0032503 0.0629025 0.7050218 0.0021893 0.1875554 0.6793718 0.0032343 0.1098354 0.6962768 0.0014403 0.1842814 0.6793718 0.0032343 0.1098354 0.6646908 0.0032503 0.0629025 0.6624618 0.0020383 0.1098354 0.6394638 0.0020483 0.0629025 0.6113038 0.0020663 0.0045834 0.6354078 0.0001323 0.0629025 0.6646908 0.0032503 0.0629025 0.6467088 0.0032833 0.0045834 0.6394638 0.0020483 0.0629025 0.6354078 0.0001323 0.0629025 0.6069868 0.0001313 0.0045834 0.6113038 -0.0018147 0.0045834 0.6354078 0.0001323 0.0629025 0.6069868 0.0001313 0.0045834 0.6113038 0.0020663 0.0045834 0.6394638 0.0020483 0.0629025 0.6113038 0.0020663 0.0045834 0.6467088 0.0032833 0.0045834 0.7050218 0.0021893 0.1875554 0.6793718 0.0032343 0.1098354 0.7041608 0.0035413 0.1098354 0.6793718 0.0032343 0.1098354 0.6646908 0.0032503 0.0629025 0.6942888 0.0035593 0.0629025 0.6646908 0.0032503 0.0629025 0.6467088 0.0032833 0.0045834 0.6860028 0.0035943 0.0045834 0.7050218 0.0021893 0.1875554 0.7041608 0.0035413 0.1098354 0.6793718 0.0032343 0.1098354 0.6793718 0.0032343 0.1098354 0.6942888 0.0035593 0.0629025 0.6646908 0.0032503 0.0629025 0.6354078 0.0001323 0.0629025 0.6113038 0.0020663 0.0045834 0.6069868 0.0001313 0.0045834 0.6394638 0.0020483 0.0629025 0.6467088 0.0032833 0.0045834 0.6113038 0.0020663 0.0045834 0.6646908 0.0032503 0.0629025 0.6860028 0.0035943 0.0045834 0.6467088 0.0032833 0.0045834 0.7204788 0.0024283 0.1895074 0.7050218 0.0021893 0.1875554 0.7041608 0.0035413 0.1098354 0.6793718 0.0032343 0.1098354 0.6942888 0.0035593 0.0629025 0.7041608 0.0035413 0.1098354 0.6646908 0.0032503 0.0629025 0.6860028 0.0035943 0.0045834 0.6942888 0.0035593 0.0629025 0.7204788 0.0024283 0.1895074 0.7041608 0.0035413 0.1098354 0.7050218 0.0021893 0.1875554 0.7041608 0.0035413 0.1098354 0.6942888 0.0035593 0.0629025 0.6793718 0.0032343 0.1098354 0.6942888 0.0035593 0.0629025 0.6860028 0.0035943 0.0045834 0.6646908 0.0032503 0.0629025 0.7204788 0.0024283 0.1895074 0.7041608 0.0035413 0.1098354 0.7325208 0.0028753 0.1098354 0.7041608 0.0035413 0.1098354 0.6942888 0.0035593 0.0629025 0.7276948 0.0028893 0.0629025 0.6942888 0.0035593 0.0629025 0.6860028 0.0035943 0.0045834 0.7227948 0.0029183 0.0045834 0.7204788 0.0024283 0.1895074 0.7325208 0.0028753 0.1098354 0.7041608 0.0035413 0.1098354 0.7041608 0.0035413 0.1098354 0.7276948 0.0028893 0.0629025 0.6942888 0.0035593 0.0629025 0.6942888 0.0035593 0.0629025 0.7227948 0.0029183 0.0045834 0.6860028 0.0035943 0.0045834 0.7386678 0.0019763 0.1911164 0.7204788 0.0024283 0.1895074 0.7325208 0.0028753 0.1098354 0.7041608 0.0035413 0.1098354 0.7276948 0.0028893 0.0629025 0.7325208 0.0028753 0.1098354 0.6942888 0.0035593 0.0629025 0.7227948 0.0029183 0.0045834 0.7276948 0.0028893 0.0629025 0.7386678 0.0019763 0.1911164 0.7325208 0.0028753 0.1098354 0.7204788 0.0024283 0.1895074 0.7325208 0.0028753 0.1098354 0.7276948 0.0028893 0.0629025 0.7041608 0.0035413 0.1098354 0.7276948 0.0028893 0.0629025 0.7227948 0.0029183 0.0045834 0.6942888 0.0035593 0.0629025 0.7386678 0.0019763 0.1911164 0.7325208 0.0028753 0.1098354 0.7642718 0.0016913 0.1097834 0.7325208 0.0028753 0.1098354 0.7276948 0.0028893 0.0629025 0.7675578 0.0016953 0.0629654 0.7276948 0.0028893 0.0629025 0.7227948 0.0029183 0.0045834 0.7716208 0.0017033 0.0047884 0.7386678 0.0019763 0.1911164 0.7642718 0.0016913 0.1097834 0.7325208 0.0028753 0.1098354 0.7325208 0.0028753 0.1098354 0.7675578 0.0016953 0.0629654 0.7276948 0.0028893 0.0629025 0.7276948 0.0028893 0.0629025 0.7716208 0.0017033 0.0047884 0.7227948 0.0029183 0.0045834 0.7598838 0.0014343 0.1918704 0.7386678 0.0019763 0.1911164 0.7642718 0.0016913 0.1097834 0.7325208 0.0028753 0.1098354 0.7675578 0.0016953 0.0629654 0.7642718 0.0016913 0.1097834 0.7675578 0.0016953 0.0629654 0.7276948 0.0028893 0.0629025 0.7716208 0.0017033 0.0047884 0.7598838 0.0014343 0.1918704 0.7642718 0.0016913 0.1097834 0.7386678 0.0019763 0.1911164 0.7325208 0.0028753 0.1098354 0.7642718 0.0016913 0.1097834 0.7675578 0.0016953 0.0629654 0.7675578 0.0016953 0.0629654 0.7716208 0.0017033 0.0047884 0.7276948 0.0028893 0.0629025 - - - - - - - - - - -0.0238909 0.9997032 -0.0047724 -0.0238909 0.9997032 -0.0047724 -0.0238909 0.9997032 -0.0047724 -0.0350072 0.9993529 -0.0082580 -0.0350072 0.9993529 -0.0082580 -0.0350072 0.9993529 -0.0082580 0.0238909 -0.9997032 0.0047724 0.0238909 -0.9997032 0.0047724 0.0238909 -0.9997032 0.0047724 0.0350072 -0.9993529 0.0082580 0.0350072 -0.9993529 0.0082580 0.0350072 -0.9993529 0.0082580 -0.0349990 0.9993841 -0.0025634 -0.0349990 0.9993841 -0.0025634 -0.0349990 0.9993841 -0.0025634 -0.0240372 0.9996691 -0.0091573 -0.0240372 0.9996691 -0.0091573 -0.0240372 0.9996691 -0.0091573 0.0240372 -0.9996691 0.0091573 0.0240372 -0.9996691 0.0091573 0.0240372 -0.9996691 0.0091573 0.0349990 -0.9993841 0.0025634 0.0349990 -0.9993841 0.0025634 0.0349990 -0.9993841 0.0025634 -0.0281618 0.9996000 0.0026078 -0.0281618 0.9996000 0.0026078 -0.0281618 0.9996000 0.0026078 -0.0230077 0.9996947 -0.0090098 -0.0230077 0.9996947 -0.0090098 -0.0230077 0.9996947 -0.0090098 0.0230077 -0.9996947 0.0090098 0.0230077 -0.9996947 0.0090098 0.0230077 -0.9996947 0.0090098 0.0281618 -0.9996000 -0.0026078 0.0281618 -0.9996000 -0.0026078 0.0281618 -0.9996000 -0.0026078 -0.0281544 0.9996013 -0.0021209 -0.0281544 0.9996013 -0.0021209 -0.0281544 0.9996013 -0.0021209 -0.0230086 0.9997331 0.0020760 -0.0230086 0.9997331 0.0020760 -0.0230086 0.9997331 0.0020760 0.0164383 0.9997202 -0.0170116 0.0164383 0.9997202 -0.0170116 0.0164383 0.9997202 -0.0170116 -0.0164383 -0.9997202 0.0170116 -0.0164383 -0.9997202 0.0170116 -0.0164383 -0.9997202 0.0170116 0.0230086 -0.9997331 -0.0020760 0.0230086 -0.9997331 -0.0020760 0.0230086 -0.9997331 -0.0020760 0.0281544 -0.9996013 0.0021209 0.0281544 -0.9996013 0.0021209 0.0281544 -0.9996013 0.0021209 -0.0234279 0.9997244 0.0014862 -0.0234279 0.9997244 0.0014862 -0.0234279 0.9997244 0.0014862 -0.0195634 0.9998016 0.0037468 -0.0195634 0.9998016 0.0037468 -0.0195634 0.9998016 0.0037468 0.0134250 0.9997655 -0.0169922 0.0134250 0.9997655 -0.0169922 0.0134250 0.9997655 -0.0169922 -0.0134250 -0.9997655 0.0169922 -0.0134250 -0.9997655 0.0169922 -0.0134250 -0.9997655 0.0169922 0.0195634 -0.9998016 -0.0037468 0.0195634 -0.9998016 -0.0037468 0.0195634 -0.9998016 -0.0037468 0.0234279 -0.9997244 -0.0014862 0.0234279 -0.9997244 -0.0014862 0.0234279 -0.9997244 -0.0014862 -0.0195635 0.9998079 0.0011590 -0.0195635 0.9998079 0.0011590 -0.0195635 0.9998079 0.0011590 0.0134268 0.9999048 -0.0031826 0.0134268 0.9999048 -0.0031826 0.0134268 0.9999048 -0.0031826 0.0920917 0.9948408 -0.0425545 0.0920917 0.9948408 -0.0425545 0.0920917 0.9948408 -0.0425545 -0.0920917 -0.9948408 0.0425545 -0.0920917 -0.9948408 0.0425545 -0.0920917 -0.9948408 0.0425545 -0.0134268 -0.9999048 0.0031826 -0.0134268 -0.9999048 0.0031826 -0.0134268 -0.9999048 0.0031826 0.0195635 -0.9998079 -0.0011590 0.0195635 -0.9998079 -0.0011590 0.0195635 -0.9998079 -0.0011590 -0.0179208 0.9998375 0.0019386 -0.0179208 0.9998375 0.0019386 -0.0179208 0.9998375 0.0019386 0.0113152 0.9999285 -0.0038550 0.0113152 0.9999285 -0.0038550 0.0113152 0.9999285 -0.0038550 0.0621201 0.9974207 -0.0359601 0.0621201 0.9974207 -0.0359601 0.0621201 0.9974207 -0.0359601 -0.0621201 -0.9974207 0.0359601 -0.0621201 -0.9974207 0.0359601 -0.0621201 -0.9974207 0.0359601 -0.0113152 -0.9999285 0.0038550 -0.0113152 -0.9999285 0.0038550 -0.0113152 -0.9999285 0.0038550 0.0179208 -0.9998375 -0.0019386 0.0179208 -0.9998375 -0.0019386 0.0179208 -0.9998375 -0.0019386 0.0113153 0.9999336 -0.0022028 0.0113153 0.9999336 -0.0022028 0.0113153 0.9999336 -0.0022028 0.0621482 0.9978718 -0.0197369 0.0621482 0.9978718 -0.0197369 0.0621482 0.9978718 -0.0197369 0.3454706 0.9239715 -0.1640938 0.3454706 0.9239715 -0.1640938 0.3454706 0.9239715 -0.1640938 -0.3454706 -0.9239715 0.1640938 -0.3454706 -0.9239715 0.1640938 -0.3454706 -0.9239715 0.1640938 -0.0621482 -0.9978718 0.0197369 -0.0621482 -0.9978718 0.0197369 -0.0621482 -0.9978718 0.0197369 -0.0113153 -0.9999336 0.0022028 -0.0113153 -0.9999336 0.0022028 -0.0113153 -0.9999336 0.0022028 0.0086014 0.9999579 -0.0031961 0.0086014 0.9999579 -0.0031961 0.0086014 0.9999579 -0.0031961 0.0421747 0.9988921 -0.0208795 0.0421747 0.9988921 -0.0208795 0.0421747 0.9988921 -0.0208795 0.4300826 0.8810171 -0.1970729 0.4300826 0.8810171 -0.1970729 0.4300826 0.8810171 -0.1970729 -0.4300826 -0.8810171 0.1970729 -0.4300826 -0.8810171 0.1970729 -0.4300826 -0.8810171 0.1970729 -0.0421747 -0.9988921 0.0208795 -0.0421747 -0.9988921 0.0208795 -0.0421747 -0.9988921 0.0208795 -0.0086014 -0.9999579 0.0031961 -0.0086014 -0.9999579 0.0031961 -0.0086014 -0.9999579 0.0031961 0.0421800 0.9990184 -0.0135307 0.0421800 0.9990184 -0.0135307 0.0421800 0.9990184 -0.0135307 0.4288714 0.8785359 -0.2103427 0.4288714 0.8785359 -0.2103427 0.4288714 0.8785359 -0.2103427 0.4278238 -0.8823794 -0.1958913 0.4278238 -0.8823794 -0.1958913 0.4278238 -0.8823794 -0.1958913 -0.4278238 0.8823794 0.1958913 -0.4278238 0.8823794 0.1958913 -0.4278238 0.8823794 0.1958913 -0.4288714 -0.8785359 0.2103427 -0.4288714 -0.8785359 0.2103427 -0.4288714 -0.8785359 0.2103427 -0.0421800 -0.9990184 0.0135307 -0.0421800 -0.9990184 0.0135307 -0.0421800 -0.9990184 0.0135307 0.0305654 0.9994192 -0.0150673 0.0305654 0.9994192 -0.0150673 0.0305654 0.9994192 -0.0150673 0.4201927 0.8835046 -0.2070211 0.4201927 0.8835046 -0.2070211 0.4201927 0.8835046 -0.2070211 0.3358166 -0.9282403 -0.1599911 0.3358166 -0.9282403 -0.1599911 0.3358166 -0.9282403 -0.1599911 0.4266192 -0.8798948 -0.2092394 0.4266192 -0.8798948 -0.2092394 0.4266192 -0.8798948 -0.2092394 -0.3358166 0.9282403 0.1599911 -0.3358166 0.9282403 0.1599911 -0.3358166 0.9282403 0.1599911 -0.4266192 0.8798948 0.2092394 -0.4266192 0.8798948 0.2092394 -0.4266192 0.8798948 0.2092394 -0.4201927 -0.8835046 0.2070211 -0.4201927 -0.8835046 0.2070211 -0.4201927 -0.8835046 0.2070211 -0.0305654 -0.9994192 0.0150673 -0.0305654 -0.9994192 0.0150673 -0.0305654 -0.9994192 0.0150673 0.4205252 0.8842038 -0.2033277 0.4205252 0.8842038 -0.2033277 0.4205252 0.8842038 -0.2033277 0.4179730 -0.8848121 -0.2059275 0.4179730 -0.8848121 -0.2059275 0.4179730 -0.8848121 -0.2059275 0.0704948 -0.9967088 -0.0400262 0.0704948 -0.9967088 -0.0400262 0.0704948 -0.9967088 -0.0400262 0.0475798 -0.9985903 -0.0235280 0.0475798 -0.9985903 -0.0235280 0.0475798 -0.9985903 -0.0235280 -0.0704948 0.9967088 0.0400262 -0.0704948 0.9967088 0.0400262 -0.0704948 0.9967088 0.0400262 -0.4179730 0.8848121 0.2059275 -0.4179730 0.8848121 0.2059275 -0.4179730 0.8848121 0.2059275 -0.0475798 0.9985903 0.0235280 -0.0475798 0.9985903 0.0235280 -0.0475798 0.9985903 0.0235280 -0.4205252 -0.8842038 0.2033277 -0.4205252 -0.8842038 0.2033277 -0.4205252 -0.8842038 0.2033277 0.4029467 0.8939052 -0.1963862 0.4029467 0.8939052 -0.1963862 0.4029467 0.8939052 -0.1963862 0.4183001 -0.8855046 -0.2022537 0.4183001 -0.8855046 -0.2022537 0.4183001 -0.8855046 -0.2022537 0.1028010 -0.9935773 -0.0472868 0.1028010 -0.9935773 -0.0472868 0.1028010 -0.9935773 -0.0472868 0.0705336 -0.9972578 -0.0224035 0.0705336 -0.9972578 -0.0224035 0.0705336 -0.9972578 -0.0224035 0.0475874 -0.9987508 -0.0152385 0.0475874 -0.9987508 -0.0152385 0.0475874 -0.9987508 -0.0152385 -0.1028010 0.9935773 0.0472868 -0.1028010 0.9935773 0.0472868 -0.1028010 0.9935773 0.0472868 -0.0705336 0.9972578 0.0224035 -0.0705336 0.9972578 0.0224035 -0.0705336 0.9972578 0.0224035 -0.4183001 0.8855046 0.2022537 -0.4183001 0.8855046 0.2022537 -0.4183001 0.8855046 0.2022537 -0.0475874 0.9987508 0.0152385 -0.0475874 0.9987508 0.0152385 -0.0475874 0.9987508 0.0152385 -0.4029467 -0.8939052 0.1963862 -0.4029467 -0.8939052 0.1963862 -0.4029467 -0.8939052 0.1963862 0.4011261 -0.8949247 -0.1954679 0.4011261 -0.8949247 -0.1954679 0.4011261 -0.8949247 -0.1954679 0.0343488 -0.9992671 -0.0168941 0.0343488 -0.9992671 -0.0168941 0.0343488 -0.9992671 -0.0168941 0.0123825 -0.9997697 -0.0175291 0.0123825 -0.9997697 -0.0175291 0.0123825 -0.9997697 -0.0175291 0.0104399 -0.9999390 -0.0036066 0.0104399 -0.9999390 -0.0036066 0.0104399 -0.9999390 -0.0036066 0.0079142 -0.9999642 -0.0030064 0.0079142 -0.9999642 -0.0030064 0.0079142 -0.9999642 -0.0030064 -0.0123825 0.9997697 0.0175291 -0.0123825 0.9997697 0.0175291 -0.0123825 0.9997697 0.0175291 -0.0104399 0.9999390 0.0036066 -0.0104399 0.9999390 0.0036066 -0.0104399 0.9999390 0.0036066 -0.4011261 0.8949247 0.1954679 -0.4011261 0.8949247 0.1954679 -0.4011261 0.8949247 0.1954679 -0.0343488 0.9992671 0.0168941 -0.0343488 0.9992671 0.0168941 -0.0343488 0.9992671 0.0168941 -0.0079142 0.9999642 0.0030064 -0.0079142 0.9999642 0.0030064 -0.0079142 0.9999642 0.0030064 0.0176771 -0.9996891 -0.0175863 0.0176771 -0.9996891 -0.0175863 0.0176771 -0.9996891 -0.0175863 0.0123843 -0.9999188 -0.0029884 0.0123843 -0.9999188 -0.0029884 0.0123843 -0.9999188 -0.0029884 0.0104400 -0.9999433 -0.0020833 0.0104400 -0.9999433 -0.0020833 0.0104400 -0.9999433 -0.0020833 -0.0176771 0.9996891 0.0175863 -0.0176771 0.9996891 0.0175863 -0.0176771 0.9996891 0.0175863 -0.0123843 0.9999188 0.0029884 -0.0123843 0.9999188 0.0029884 -0.0123843 0.9999188 0.0029884 -0.0104400 0.9999433 0.0020833 -0.0104400 0.9999433 0.0020833 -0.0104400 0.9999433 0.0020833 -0.0234771 -0.9996824 -0.0091573 -0.0234771 -0.9996824 -0.0091573 -0.0234771 -0.9996824 -0.0091573 -0.0200524 -0.9997916 0.0038344 -0.0200524 -0.9997916 0.0038344 -0.0200524 -0.9997916 0.0038344 -0.0183707 -0.9998292 0.0020102 -0.0183707 -0.9998292 0.0020102 -0.0183707 -0.9998292 0.0020102 0.0234771 0.9996824 0.0091573 0.0234771 0.9996824 0.0091573 0.0234771 0.9996824 0.0091573 0.0200524 0.9997916 -0.0038344 0.0200524 0.9997916 -0.0038344 0.0200524 0.9997916 -0.0038344 0.0183707 0.9998292 -0.0020102 0.0183707 0.9998292 -0.0020102 0.0183707 0.9998292 -0.0020102 -0.0240235 -0.9996687 -0.0092398 -0.0240235 -0.9996687 -0.0092398 -0.0240235 -0.9996687 -0.0092398 -0.0234780 -0.9997221 0.0021157 -0.0234780 -0.9997221 0.0021157 -0.0234780 -0.9997221 0.0021157 -0.0200525 -0.9997982 0.0011878 -0.0200525 -0.9997982 0.0011878 -0.0200525 -0.9997982 0.0011878 0.0240235 0.9996687 0.0092398 0.0240235 0.9996687 0.0092398 0.0240235 0.9996687 0.0092398 0.0234780 0.9997221 -0.0021157 0.0234780 0.9997221 -0.0021157 0.0234780 0.9997221 -0.0021157 0.0200525 0.9997982 -0.0011878 0.0200525 0.9997982 -0.0011878 0.0200525 0.9997982 -0.0011878 -0.0372761 -0.9992711 -0.0082331 -0.0372761 -0.9992711 -0.0082331 -0.0372761 -0.9992711 -0.0082331 -0.0299434 -0.9995477 0.0027806 -0.0299434 -0.9995477 0.0027806 -0.0299434 -0.9995477 0.0027806 -0.0248834 -0.9996891 0.0015938 -0.0248834 -0.9996891 0.0015938 -0.0248834 -0.9996891 0.0015938 0.0372761 0.9992711 0.0082331 0.0372761 0.9992711 0.0082331 0.0372761 0.9992711 0.0082331 0.0299434 0.9995477 -0.0027806 0.0299434 0.9995477 -0.0027806 0.0299434 0.9995477 -0.0027806 0.0248834 0.9996891 -0.0015938 0.0248834 0.9996891 -0.0015938 0.0248834 0.9996891 -0.0015938 -0.0253793 -0.9996678 -0.0044866 -0.0253793 -0.9996678 -0.0044866 -0.0253793 -0.9996678 -0.0044866 -0.0372682 -0.9993016 -0.0027011 -0.0372682 -0.9993016 -0.0027011 -0.0372682 -0.9993016 -0.0027011 -0.0299356 -0.9995493 -0.0022278 -0.0299356 -0.9995493 -0.0022278 -0.0299356 -0.9995493 -0.0022278 0.0253793 0.9996678 0.0044866 0.0253793 0.9996678 0.0044866 0.0253793 0.9996678 0.0044866 0.0372682 0.9993016 0.0027011 0.0372682 0.9993016 0.0027011 0.0372682 0.9993016 0.0027011 0.0299356 0.9995493 0.0022278 0.0299356 0.9995493 0.0022278 0.0299356 0.9995493 0.0022278 - - - - - - - - - - 0.8289612 0.2340540 0.8328601 0.1622590 0.8102421 0.2333760 0.8102420 0.2333760 0.8328600 0.1622590 0.8043600 0.1623070 0.8336750 0.2340540 0.8149510 0.2333750 0.8375740 0.1622050 0.8149510 0.2333750 0.8090670 0.1622530 0.8375740 0.1622050 0.8043600 0.1623070 0.8328600 0.1622590 0.8357660 0.1213200 0.8149510 0.2333750 0.8090670 0.1622530 0.7961060 0.2282680 0.8102420 0.2333760 0.7914020 0.2282730 0.8043600 0.1623070 0.8090670 0.1622530 0.8404810 0.1212350 0.8375740 0.1622050 0.8043600 0.1623070 0.8357660 0.1213200 0.8000610 0.1212620 0.7961060 0.2282680 0.8090670 0.1622530 0.7845890 0.1622530 0.7914020 0.2282730 0.7798880 0.1623070 0.8043600 0.1623070 0.8090670 0.1622530 0.8047670 0.1211770 0.8404810 0.1212350 0.8404810 0.1212350 0.8440900 0.0703210 0.8047670 0.1211770 0.8043600 0.1623070 0.8000610 0.1212620 0.7798880 0.1623070 0.7914020 0.2282730 0.7798880 0.1623070 0.7761100 0.2214640 0.7961060 0.2282680 0.7808100 0.2214540 0.7845890 0.1622530 0.7845890 0.1622530 0.8047670 0.1211770 0.8090670 0.1622530 0.8357660 0.1213200 0.8000610 0.1212620 0.8393740 0.0704443 0.8047670 0.1211770 0.8440900 0.0703210 0.8003860 0.0701369 0.7798880 0.1623070 0.8000610 0.1212620 0.7711390 0.1212620 0.7761100 0.2214640 0.7798880 0.1623070 0.7578910 0.1623070 0.7808100 0.2214540 0.7625870 0.1622530 0.7845890 0.1622530 0.7845890 0.1622530 0.7758380 0.1211770 0.8047670 0.1211770 0.8000610 0.1212620 0.7956810 0.0702604 0.8393740 0.0704443 0.8047670 0.1211770 0.8003860 0.0701369 0.7758380 0.1211770 0.7845890 0.1622530 0.7758380 0.1211770 0.7625870 0.1622530 0.7761100 0.2214640 0.7578910 0.1623070 0.7669000 0.2172120 0.7808100 0.2214540 0.7715980 0.2171990 0.7625870 0.1622530 0.7578910 0.1623070 0.7711390 0.1212620 0.7798880 0.1623070 0.7711390 0.1212620 0.7956810 0.0702604 0.8000610 0.1212620 0.7758380 0.1211770 0.8003860 0.0701369 0.7685110 0.0701369 0.7625870 0.1622530 0.7758380 0.1211770 0.7495760 0.1211770 0.7669000 0.2172120 0.7578910 0.1623070 0.7425490 0.1623070 0.7715980 0.2171990 0.7472410 0.1622530 0.7625870 0.1622530 0.7578910 0.1623070 0.7448840 0.1212620 0.7711390 0.1212620 0.7711390 0.1212620 0.7638140 0.0702604 0.7956810 0.0702604 0.7711390 0.1212620 0.7638140 0.0702604 0.7448840 0.1212620 0.7625870 0.1622530 0.7495760 0.1211770 0.7472410 0.1622530 0.7669000 0.2172120 0.7425490 0.1623070 0.7648060 0.2172120 0.7669000 0.2172120 0.7648060 0.2172120 0.7425490 0.1623070 0.7425490 0.1623070 0.7448840 0.1212620 0.7578910 0.1623070 0.7495760 0.1211770 0.7685110 0.0701369 0.7758380 0.1211770 0.7448840 0.1212620 0.7638140 0.0702604 0.7289600 0.0702604 0.7472410 0.1622530 0.7495760 0.1211770 0.7268320 0.1211770 0.7648060 0.2172120 0.7425490 0.1623070 0.7390610 0.1623070 0.7648060 0.2172120 0.7390610 0.1623070 0.7425490 0.1623070 0.7425490 0.1623070 0.7221450 0.1212620 0.7448840 0.1212620 0.7495760 0.1211770 0.7336480 0.0701369 0.7685110 0.0701369 0.7448840 0.1212620 0.7289600 0.0702604 0.7221450 0.1212620 0.7425490 0.1623070 0.7221450 0.1212620 0.7390610 0.1623070 0.7657940 0.2172290 0.7402830 0.1623810 0.7437400 0.1623810 0.7695030 0.2171990 0.7472410 0.1622530 0.7437520 0.1622530 0.7390610 0.1623070 0.7221450 0.1212620 0.7425490 0.1623070 0.7268320 0.1211770 0.7336480 0.0701369 0.7495760 0.1211770 0.7221450 0.1212620 0.7289600 0.0702604 0.6991670 0.0702604 0.7390610 0.1623070 0.7221450 0.1212620 0.7185480 0.1212620 0.7678690 0.2172290 0.7657940 0.2172290 0.7437400 0.1623810 0.7402830 0.1623810 0.7235210 0.1213780 0.7437400 0.1623810 0.7715980 0.2171990 0.7695030 0.2171990 0.7472410 0.1622530 0.7268320 0.1211770 0.7437520 0.1622530 0.7390610 0.1623070 0.7185480 0.1212620 0.7221450 0.1212620 0.7268320 0.1211770 0.7038480 0.0701369 0.7336480 0.0701369 0.7221450 0.1212620 0.6991670 0.0702604 0.7185480 0.1212620 0.7402830 0.1623810 0.7199570 0.1213780 0.7235210 0.1213780 0.7678690 0.2172290 0.7437400 0.1623810 0.7586050 0.1623810 0.7437400 0.1623810 0.7235210 0.1213780 0.7456950 0.1213780 0.7678690 0.2172290 0.7586050 0.1623810 0.7437400 0.1623810 0.7437520 0.1622530 0.7268320 0.1211770 0.7232340 0.1211770 0.7472410 0.1622530 0.7492150 0.1211770 0.7268320 0.1211770 0.7232340 0.1211770 0.7038480 0.0701369 0.7268320 0.1211770 0.7185480 0.1212620 0.6991670 0.0702604 0.6953390 0.0702604 0.7232340 0.1211770 0.7038480 0.0701369 0.7268320 0.1211770 0.7769560 0.2214770 0.7678690 0.2172290 0.7586050 0.1623810 0.7437400 0.1623810 0.7456950 0.1213780 0.7586050 0.1623810 0.7235210 0.1213780 0.7298960 0.0704291 0.7456950 0.1213780 0.7769560 0.2214770 0.7586050 0.1623810 0.7678690 0.2172290 0.7622460 0.1622530 0.7492150 0.1211770 0.7472410 0.1622530 0.7235210 0.1213780 0.7007520 0.0704291 0.7199570 0.1213780 0.7456950 0.1213780 0.7298960 0.0704291 0.7235210 0.1213780 0.7232340 0.1211770 0.7000190 0.0701369 0.7038480 0.0701369 0.7232340 0.1211770 0.7000190 0.0701369 0.7038480 0.0701369 0.7235210 0.1213780 0.7007520 0.0704291 0.7298960 0.0704291 0.7769560 0.2214770 0.7586050 0.1623810 0.7803910 0.1623810 0.7586050 0.1623810 0.7456950 0.1213780 0.7717120 0.1213780 0.7456950 0.1213780 0.7298960 0.0704291 0.7644340 0.0704291 0.7769560 0.2214770 0.7803910 0.1623810 0.7586050 0.1623810 0.7586050 0.1623810 0.7717120 0.1213780 0.7456950 0.1213780 0.7199570 0.1213780 0.7007520 0.0704291 0.6969590 0.0704291 0.7235210 0.1213780 0.7298960 0.0704291 0.7007520 0.0704291 0.7456950 0.1213780 0.7644340 0.0704291 0.7298960 0.0704291 0.7919400 0.2282780 0.7769560 0.2214770 0.7803910 0.1623810 0.7586050 0.1623810 0.7717120 0.1213780 0.7803910 0.1623810 0.7456950 0.1213780 0.7644340 0.0704291 0.7717120 0.1213780 0.7919400 0.2282780 0.7803910 0.1623810 0.7769560 0.2214770 0.7803910 0.1623810 0.7717120 0.1213780 0.7586050 0.1623810 0.7717120 0.1213780 0.7456950 0.1213780 0.7919400 0.2282780 0.7803910 0.1623810 0.8053160 0.1623810 0.7803910 0.1623810 0.7717120 0.1213780 0.8010760 0.1213780 0.7717120 0.1213780 0.7644340 0.0704291 0.7967660 0.0704291 0.7958960 0.2282680 0.8093980 0.1622530 0.7842380 0.1622530 0.7803910 0.1623810 0.8010760 0.1213780 0.7717120 0.1213780 0.7754770 0.1211770 0.8007670 0.0701369 0.7681300 0.0701369 0.8107180 0.2333960 0.7919400 0.2282780 0.8053160 0.1623810 0.7803910 0.1623810 0.8010760 0.1213780 0.8053160 0.1623810 0.7717120 0.1213780 0.7967660 0.0704291 0.8010760 0.1213780 0.8148510 0.2333950 0.8093980 0.1622530 0.7958960 0.2282680 0.8053160 0.1623810 0.7803910 0.1623810 0.8051180 0.1211770 0.8007670 0.0701369 0.7754770 0.1211770 0.8148510 0.2333950 0.8093980 0.1622530 0.8375740 0.1622050 0.8053160 0.1623810 0.8010760 0.1213780 0.8361090 0.1214360 0.8010760 0.1213780 0.7967660 0.0704291 0.8396840 0.0706129 0.8107180 0.2333960 0.8332290 0.1623330 0.8053160 0.1623810 0.8053160 0.1623810 0.8361090 0.1214360 0.8010760 0.1213780 0.8051180 0.1211770 0.8440900 0.0703210 0.8007670 0.0701369 0.8336750 0.2340540 0.8148510 0.2333950 0.8375740 0.1622050 0.8053160 0.1623810 0.8361090 0.1214360 0.8332290 0.1623330 0.8361090 0.1214360 0.8010760 0.1213780 0.8396840 0.0706129 0.8293670 0.2340540 0.8332290 0.1623330 0.8107180 0.2333960 0.8053160 0.1623810 0.8332290 0.1623330 0.8361090 0.1214360 0.8404810 0.1212350 0.8440900 0.0703210 0.8051180 0.1211770 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 51 52 52 53 53 54 54 55 55 56 56 57 57 58 58 59 59 60 60 61 61 62 62 63 63 64 64 65 65 66 66 67 67 68 68 69 69 70 70 71 71 72 72 73 73 74 74 75 75 76 76 77 77 78 78 79 79 80 80 81 81 82 82 83 83 84 84 85 85 86 86 87 87 88 88 89 89 90 90 91 91 92 92 93 93 94 94 95 95 96 96 97 97 98 98 99 99 100 100 101 101 102 102 103 103 104 104 105 105 106 106 107 107 108 108 109 109 110 110 111 111 112 112 113 113 114 114 115 115 116 116 117 117 118 118 119 119 120 120 121 121 122 122 123 123 124 124 125 125 126 126 127 127 128 128 129 129 130 130 131 131 132 132 133 133 134 134 135 135 136 136 137 137 138 138 139 139 140 140 141 141 142 142 143 143 144 144 145 145 146 146 147 147 148 148 149 149 150 150 151 151 152 152 153 153 154 154 155 155 156 156 157 157 158 158 159 159 160 160 161 161 162 162 163 163 164 164 165 165 166 166 167 167 168 168 169 169 170 170 171 171 172 172 173 173 174 174 175 100 176 175 177 176 178 177 179 178 180 179 181 180 182 181 183 182 184 183 185 184 186 185 187 186 188 187 189 188 190 189 191 190 192 191 193 192 194 193 195 194 196 195 197 196 198 197 199 198 200 199 201 200 202 201 203 202 204 203 205 204 206 205 207 206 208 207 209 208 210 209 211 210 212 211 213 212 214 213 215 214 216 215 217 216 218 217 219 218 220 219 221 220 222 221 223 222 224 223 225 224 226 225 227 226 228 227 229 228 230 229 231 230 232 231 233 232 234 233 235 234 236 235 237 236 238 237 239 238 240 239 241 240 242 241 243 242 244 243 245 244 246 245 247 246 248 247 249 248 250 249 251 250 252 251 253 252 254 253 255 254 256 255 257 256 258 257 259 258 260 259 261 260 262 261 263 262 264 263 265 264 266 265 267 266 268 267 269 268 270 269 271 270 272 271 273 272 274 273 275 274 276 275 277 276 278 277 279 278 280 279 281 280 282 281 283 282 284 283 285 284 286 253 287 285 288 286 289 287 290 288 291 289 292 290 293 291 294 292 295 293 296 294 297 295 298 296 299 297 300 298 301 299 302 300 303 301 304 302 305 303 306 304 307 305 308 306 309 307 310 308 311 309 312 310 313 311 314 312 315 313 316 314 317 315 318 316 319 299 320 317 321 318 322 319 323 320 324 321 325 322 326 323 327 324 328 325 329 326 330 327 331 328 332 329 333 330 334 331 335 332 336 333 337 334 338 335 339 336 340 337 341 338 342 339 343 340 344 341 345 342 346 343 347 344 348 345 349 346 350 347 351 348 352 349 353 350 354 351 355 352 356 353 357 354 358 355 359 356

-
-
-
- - - - -0.2792334 0.0247724 0.0246533 -0.2904024 -0.0004936 0.0334783 -0.2792334 -0.0245146 0.0254383 - - - - - - - - - - 0.9493144 0.0050057 0.3142883 0.6020457 0.0127156 0.7983604 0.9477168 0.0033547 0.3190949 - - - - - - - - - - 0.0733000 0.3090100 0.0539600 0.3464800 0.0733000 0.3821100 - - - - - - - - - - - - - - -

0 0 1 1 2 2

-
-
-
- - - - -0.2749884 0.0332103 -0.0003449 -0.2792334 0.0247724 0.0246533 -0.2792334 -0.0245146 0.0254383 -0.2749884 -0.0330737 -0.0003924 - - - - - - - - - - 0.9860870 0.0017280 0.1662209 0.9493144 0.0050057 0.3142883 0.9477168 0.0033547 0.3190949 0.9867575 -0.0001162 0.1622022 - - - - - - - - - - - - - - -

0 1 2 0 2 3

-
-
-
- - - - -0.2530214 -0.0362960 -0.0007911 -0.2749884 0.0332103 -0.0003449 -0.2749884 -0.0330737 -0.0003924 -0.2530214 0.0366800 -0.0007911 -0.2565874 -0.0341076 0.0081443 -0.2530214 -0.0362960 -0.0007911 -0.2749884 -0.0330737 -0.0003924 -0.2303244 -0.0385523 -0.0001392 -0.2565874 0.0343304 0.0081443 -0.2749884 0.0332103 -0.0003449 -0.2530214 0.0366800 -0.0007911 -0.2792334 -0.0245146 0.0254383 -0.2331884 -0.0356606 0.0101643 -0.2303244 0.0395638 -0.0001392 -0.2530214 0.0366800 -0.0007911 -0.2303244 -0.0385523 -0.0001392 -0.2303244 -0.0385523 -0.0001392 -0.2792334 0.0247724 0.0246533 -0.2332144 0.0362804 0.0101623 -0.2056044 -0.0422858 -0.0001955 -0.2303244 0.0395638 -0.0001392 -0.2076194 -0.0382266 0.0123713 -0.2056044 0.0428540 -0.0001955 -0.2303244 0.0395638 -0.0001392 -0.2056044 -0.0422858 -0.0001955 -0.2056044 -0.0422858 -0.0001955 -0.2076194 0.0386904 0.0123713 -0.1816264 -0.0442161 -0.0005466 -0.2056044 0.0428540 -0.0001955 -0.1829834 -0.0396006 0.0144982 -0.1816264 0.0448542 -0.0004428 -0.1816264 -0.0442161 -0.0005466 -0.1829834 0.0398804 0.0144982 -0.1563674 -0.0465004 -0.0006009 -0.1816264 0.0448542 -0.0004428 -0.1569434 -0.0415016 0.0167463 -0.1563674 0.0468931 -0.0006145 -0.1563674 -0.0465004 -0.0006009 -0.1569434 0.0412874 0.0167463 -0.1292074 -0.0469282 -0.0001111 -0.1563674 0.0468931 -0.0006145 -0.1289434 -0.0410466 0.0191634 -0.1292074 0.0473160 -0.0001111 -0.1563674 0.0468931 -0.0006145 -0.1292074 -0.0469282 -0.0001111 -0.1292074 -0.0469282 -0.0001111 -0.1289434 0.0407434 0.0191634 -0.0970217 -0.0472842 -0.0007047 -0.1292074 0.0473160 -0.0001111 -0.0970217 -0.0472842 -0.0007047 -0.0970672 0.0474809 -0.0007386 -0.0970672 0.0474809 -0.0007386 -0.0957384 -0.0399836 0.0220303 -0.0779631 -0.0479244 -0.0008036 -0.0957794 0.0395534 0.0220263 -0.0779631 -0.0479244 -0.0008036 -0.0779631 0.0480348 -0.0008221 -0.0970672 0.0474809 -0.0007386 -0.0779631 -0.0479244 -0.0008036 -0.0779631 0.0480348 -0.0008221 -0.0761144 -0.0381076 0.0277944 -0.0539061 -0.0487314 -0.0009278 -0.0779631 0.0480348 -0.0008221 -0.0779631 -0.0479244 -0.0008036 -0.0761144 0.0377434 0.0277994 -0.0539061 -0.0487314 -0.0009278 -0.0539061 0.0487312 -0.0009278 -0.0779631 0.0480348 -0.0008221 -0.0539061 -0.0487314 -0.0009278 -0.0539061 0.0487312 -0.0009278 -0.0513134 -0.0357376 0.0373523 -0.0232008 0.0455002 -0.0011044 -0.0513134 0.0354604 0.0373523 -0.0232008 -0.0453917 -0.0011044 -0.0232008 0.0455002 -0.0011044 -0.0539061 -0.0487314 -0.0009278 -0.0232008 -0.0453917 -0.0011044 -0.0232008 0.0455002 -0.0011044 -0.0196584 -0.0332726 0.0333092 -0.0004873 0.0429103 -0.0008182 -0.0196584 0.0337604 0.0333092 -0.0196584 -0.0232586 0.0393772 -0.0004863 -0.0427242 -0.0009142 -0.0004863 -0.0427242 -0.0009142 -0.0004873 0.0429103 -0.0008182 -0.0196584 0.0250204 0.0389652 0.0035576 -0.0311186 0.0298743 -0.0004873 0.0429103 -0.0008182 -0.0004863 -0.0427242 -0.0009142 0.0035576 -0.0311186 0.0298743 0.0035496 0.0316164 0.0311303 0.0035106 -0.0109786 0.0358694 0.0035496 0.0316164 0.0311303 0.0035156 0.0153364 0.0351403 0.0035106 -0.0109786 0.0358694 0.0035496 0.0316164 0.0311303 0.0035106 -0.0109786 0.0358694 0.0035156 0.0153364 0.0351403 0.0034846 0.0003464 0.0398793 - - - - - - - - - - -0.0069583 -0.0002591 0.9999758 0.0199065 -0.0001270 0.9998018 0.0180417 -0.0007166 0.9998370 0.0118948 0.0000000 0.9999293 0.1335545 0.9666428 -0.2185518 0.1070602 0.9732815 -0.2031288 0.1725151 0.9509734 -0.2566867 -0.0287073 -0.0000000 0.9995879 0.1441268 -0.9631275 -0.2271849 0.1787815 -0.9482504 -0.2624087 0.1228292 -0.9684858 -0.2166754 0.1836712 0.9417124 -0.2818556 0.1063879 0.9660542 -0.2354163 -0.0234794 -0.0000000 0.9997243 -0.0287073 -0.0000000 0.9995879 -0.0022338 -0.0000000 0.9999975 0.1155873 0.9620112 -0.2473336 0.1887493 -0.9397172 -0.2851407 0.1182658 -0.9575302 -0.2629621 0.0022762 -0.0000000 0.9999974 0.1218615 -0.9538737 -0.2743625 0.1090781 0.9529446 -0.2828401 0.0069943 -0.0005219 0.9999754 0.0022762 -0.0000000 0.9999974 0.0127749 -0.0000000 0.9999184 0.1055257 0.9516683 -0.2884300 0.0986926 -0.9502438 -0.2954597 0.0076420 -0.0007134 0.9999705 0.0963170 -0.9489698 -0.3002989 0.0842622 0.9542821 -0.2867848 0.0080966 -0.0005882 0.9999670 0.0826125 0.9555388 -0.2830561 0.0762437 -0.9484132 -0.3077324 -0.0079218 -0.0003719 0.9999686 0.0762852 -0.9484123 -0.3077249 0.0475552 0.9596607 -0.2771097 0.0028399 0.0001455 0.9999960 0.0486661 0.9592617 -0.2782961 0.0409450 -0.9509672 -0.3065696 -0.0180298 0.0001455 0.9998374 0.0430495 -0.9500707 -0.3090508 0.0081634 0.9563264 -0.2921868 0.0005061 0.0001464 0.9999999 -0.0185322 -0.0000000 0.9998283 0.0128500 0.0000000 0.9999174 0.0128048 0.9563327 -0.2919995 0.0057772 -0.9469656 -0.3212831 0.0118383 0.0002208 0.9999299 0.0097013 -0.9463989 -0.3228546 0.0143890 0.9525797 -0.3039487 0.0179184 0.0003664 0.9998394 0.0105637 -0.9445172 -0.3282920 0.0063510 0.9497076 -0.3130738 0.0052036 0.0003604 0.9999864 0.0077461 -0.9429681 -0.3327930 0.0245900 0.9469630 -0.3204005 0.0043624 0.0001919 0.9999905 0.0043624 0.0001919 0.9999905 0.0043624 0.0001919 0.9999905 0.0229697 -0.9413176 -0.3367395 0.0223546 0.9455890 -0.3245947 0.0051673 0.0001919 0.9999866 0.0051673 0.0001919 0.9999866 0.0051673 0.0001919 0.9999866 0.0268464 -0.9416928 -0.3354013 -0.0332915 0.9467731 -0.3201755 0.0050554 0.0000000 0.9999872 0.0043953 -0.0000000 0.9999903 0.0051590 0.0000000 0.9999867 -0.0315607 -0.9439013 -0.3287162 -0.0619921 0.9182374 -0.3911484 0.0057497 -0.0000000 0.9999835 -0.0492454 -0.9216178 -0.3849617 -0.1082170 0.9419093 -0.3179558 -0.0093369 0.0000000 0.9999564 0.0057497 -0.0000000 0.9999835 -0.0010921 -0.0004303 0.9999993 -0.0999143 -0.9439851 -0.3144984 -0.1485310 0.7696344 -0.6209681 -0.0119462 -0.0001676 0.9999286 -0.1231463 -0.7881686 -0.6030134 -0.1932479 0.4529479 -0.8703410 -0.1179139 0.9382715 -0.3251815 -0.0082389 -0.0011214 0.9999654 -0.1084146 -0.9432778 -0.3138044 -0.1591675 -0.4772054 -0.8642573 -0.2155973 0.6943847 -0.6865477 -0.9919870 -0.0018265 0.1263264 -0.9914767 -0.0001577 0.1302843 -0.9936497 -0.0005968 0.1125164 -0.1913357 -0.6834248 -0.7045007 -0.2838398 0.2729572 -0.9192004 -0.9932542 -0.0024477 0.1159317 -0.2516440 -0.2309741 -0.9398544 -0.9999684 0.0000316 -0.0079455 -0.9999623 -0.0000505 -0.0086834 -0.9999761 -0.0000014 -0.0069110 -0.9999639 -0.0000453 -0.0084947 -0.9999788 0.0000097 -0.0065108 - - - - - - - - - - 0.1125000 0.4012500 0.0733000 0.2949700 0.0733000 0.3963200 0.1125000 0.2896700 0.0733000 0.2949700 0.1125000 0.4012500 0.1125000 0.3963400 0.1125000 0.4012500 0.0733000 0.3963200 0.1530100 0.4047000 0.1125000 0.2896700 0.1125000 0.4012500 0.1125000 0.2948300 0.0733000 0.2949700 0.1125000 0.2896700 0.0733000 0.3821100 0.1125000 0.3963400 0.0733000 0.3963200 0.1530100 0.3986400 0.1125000 0.4012500 0.1125000 0.3963400 0.1530100 0.2852600 0.1125000 0.2896700 0.1530100 0.4047000 0.1530100 0.3986400 0.1530100 0.4047000 0.1125000 0.4012500 0.0733000 0.3090100 0.0733000 0.2949700 0.1125000 0.2948300 0.1529600 0.2919400 0.1125000 0.2948300 0.1125000 0.2896700 0.1971200 0.4104000 0.1530100 0.2852600 0.1530100 0.4047000 0.1529600 0.2919400 0.1125000 0.2896700 0.1530100 0.2852600 0.1972700 0.4024400 0.1530100 0.4047000 0.1530100 0.3986400 0.1971200 0.2802300 0.1530100 0.2852600 0.1971200 0.4104000 0.1972700 0.4024400 0.1971200 0.4104000 0.1530100 0.4047000 0.1972700 0.2883700 0.1529600 0.2919400 0.1530100 0.2852600 0.2399200 0.4133600 0.1971200 0.2802300 0.1971200 0.4104000 0.1972700 0.2883700 0.1530100 0.2852600 0.1971200 0.2802300 0.2399200 0.4044800 0.1971200 0.4104000 0.1972700 0.4024400 0.2399200 0.2771700 0.1971200 0.2802300 0.2399200 0.4133600 0.2399200 0.4044800 0.2399200 0.4133600 0.1971200 0.4104000 0.2399200 0.2866000 0.1972700 0.2883700 0.1971200 0.2802300 0.2849900 0.4168500 0.2399200 0.2771700 0.2399200 0.4133600 0.2399200 0.2866000 0.1971200 0.2802300 0.2399200 0.2771700 0.2849900 0.4073000 0.2399200 0.4133600 0.2399200 0.4044800 0.2849900 0.2740500 0.2399200 0.2771700 0.2849900 0.4168500 0.2849900 0.4073000 0.2849900 0.4168500 0.2399200 0.4133600 0.2849900 0.2845200 0.2399200 0.2866000 0.2399200 0.2771700 0.3334600 0.4175000 0.2849900 0.2740500 0.2849900 0.4168500 0.2849900 0.2845200 0.2399200 0.2771700 0.2849900 0.2740500 0.3334600 0.4066300 0.2849900 0.4168500 0.2849900 0.4073000 0.3334600 0.2734100 0.2849900 0.2740500 0.3334600 0.4175000 0.3334600 0.4066300 0.3334600 0.4175000 0.2849900 0.4168500 0.3334600 0.2853200 0.2849900 0.2845200 0.2849900 0.2740500 0.3909000 0.4180500 0.3334600 0.2734100 0.3334600 0.4175000 0.3334600 0.2853200 0.2849900 0.2740500 0.3334600 0.2734100 0.3334600 0.4066300 0.3909000 0.4180500 0.3334600 0.4175000 0.3909000 0.4180500 0.3908200 0.2731500 0.3334600 0.2734100 0.3334600 0.2853200 0.3334600 0.2734100 0.3908200 0.2731500 0.3909400 0.4050500 0.3909000 0.4180500 0.3334600 0.4066300 0.4249100 0.4190200 0.3908200 0.2731500 0.3909000 0.4180500 0.3908700 0.2870900 0.3334600 0.2853200 0.3909400 0.4050500 0.4249100 0.4190200 0.3909000 0.4180500 0.4249100 0.2723100 0.3908200 0.2731500 0.4249100 0.4190200 0.3908700 0.2870900 0.3908200 0.2731500 0.4249100 0.2723100 0.4249100 0.4022700 0.4249100 0.4190200 0.3909400 0.4050500 0.4678500 0.4202600 0.4249100 0.2723100 0.4249100 0.4190200 0.4249100 0.2897700 0.3908700 0.2870900 0.4249100 0.2723100 0.4249100 0.4022700 0.4678500 0.4202600 0.4249100 0.4190200 0.4678500 0.2712400 0.4249100 0.2723100 0.4678500 0.4202600 0.4249100 0.2897700 0.4249100 0.2723100 0.4678500 0.2712400 0.4678500 0.3987500 0.4678500 0.4202600 0.5226400 0.2761800 0.4678500 0.2712400 0.4678500 0.4202600 0.4678500 0.2931600 0.4249100 0.2897700 0.4678500 0.2712400 0.4678500 0.3987500 0.5226400 0.4151500 0.4678500 0.4202600 0.5226400 0.2761800 0.4678500 0.4202600 0.5226400 0.4151500 0.4678500 0.2931600 0.4678500 0.2712400 0.5226400 0.2761800 0.4678500 0.3987500 0.5226400 0.3951000 0.5226400 0.4151500 0.5631800 0.2801400 0.5226400 0.2761800 0.5226400 0.4151500 0.4678500 0.2931600 0.5226400 0.2761800 0.5226400 0.2956800 0.5226400 0.3951000 0.4678500 0.3987500 0.5226400 0.3802500 0.5226400 0.3951000 0.5631800 0.4110700 0.5226400 0.4151500 0.5631800 0.4110700 0.5631800 0.2801400 0.5226400 0.4151500 0.5226400 0.2956800 0.5631800 0.2801400 0.5226400 0.3086400 0.4678500 0.2931600 0.5226400 0.2956800 0.5628300 0.3919000 0.5226400 0.3951000 0.5226400 0.3802500 0.5628300 0.3919000 0.5631800 0.4110700 0.5631800 0.2801400 0.5631800 0.4110700 0.5628300 0.3919000 0.5226400 0.2956800 0.5631800 0.2801400 0.5628200 0.2988600 0.5628200 0.2988600 0.5226400 0.3086400 0.5226400 0.2956800 0.5627500 0.3620300 0.5631800 0.2801400 0.5628300 0.3919000 0.5628200 0.2988600 0.5628200 0.2988600 0.5627600 0.3230000 0.5226400 0.3086400 0.5628200 0.2988600 0.5628300 0.3919000 0.5627500 0.3620300 0.5628200 0.2988600 0.5627500 0.3620300 0.5627600 0.3230000 0.5627600 0.3230000 0.5627500 0.3620300 0.5627100 0.3452400 - - - - - - - - - - - - - - -

0 0 1 1 2 2 3 3 1 4 0 5 4 6 5 7 6 8 7 9 3 10 0 11 8 12 9 13 10 14 11 15 4 16 6 17 12 18 5 19 4 20 13 21 14 22 15 23 12 24 16 25 5 26 17 27 9 28 8 29 18 30 8 31 10 32 19 33 13 34 15 35 18 36 10 37 20 38 21 39 16 40 12 41 22 42 23 43 24 44 21 45 25 46 16 47 26 48 18 49 20 50 27 51 22 52 24 53 26 54 20 55 28 56 29 57 25 58 21 59 30 60 22 61 27 62 29 63 31 64 25 65 32 66 26 67 28 68 33 69 30 70 27 71 32 72 28 73 34 74 35 75 31 76 29 77 36 78 30 79 33 80 35 81 37 82 31 83 38 84 32 85 34 86 39 87 36 88 33 89 38 90 34 91 40 92 41 93 37 94 35 95 42 96 43 97 44 98 41 99 45 100 37 101 46 102 38 103 40 104 47 105 42 106 44 107 46 108 40 109 48 110 41 111 49 112 45 113 47 114 50 115 42 116 46 117 48 118 51 119 52 120 49 121 41 122 53 123 50 124 47 125 54 126 46 127 51 115 52 128 55 129 49 130 56 131 57 132 58 133 54 134 51 135 59 136 60 137 55 138 52 139 61 140 62 141 63 142 64 143 54 144 59 145 60 146 65 147 55 148 66 149 67 150 68 151 64 152 59 153 69 154 70 155 65 156 60 137 71 157 66 158 68 159 72 160 64 161 69 162 70 163 73 164 65 165 74 166 75 167 76 168 72 169 69 170 77 171 70 172 78 173 73 174 79 175 74 176 76 177 72 178 77 179 80 180 78 181 70 182 81 183 78 184 82 185 73 186 83 187 79 188 76 189 80 190 77 171 84 191 85 192 72 193 80 194 86 195 78 196 81 197 78 196 86 198 82 199 87 200 88 201 89 202 80 203 84 204 90 205 90 206 85 207 80 208 86 195 81 197 91 209 87 210 89 211 92 212 90 213 93 214 85 215 92 216 89 217 94 218 95 219 96 220 97 221 97 222 96 223 98 224

-
-
-
- - - - -0.2561534 0.0001564 -0.0447657 -0.2561624 -0.0280856 -0.0309947 -0.2792334 -0.0252236 -0.0274468 -0.2792334 0.0001744 -0.0381187 -0.2332794 -0.0295676 -0.0334197 -0.2792334 -0.0340966 -0.0003857 -0.2908174 0.0001184 -0.0345627 -0.2792334 0.0256564 -0.0274497 -0.2332574 0.0001624 -0.0485077 -0.2331884 -0.0397446 -0.0001247 -0.2565864 -0.0374186 -0.0007967 -0.2906084 -0.0311946 -0.0004327 -0.2907624 -0.0227366 -0.0256087 -0.2907624 0.0241004 -0.0256097 -0.2561634 0.0263064 -0.0308718 -0.2332574 0.0001624 -0.0485077 -0.2561534 0.0001564 -0.0447657 -0.2078934 -0.0312006 -0.0342407 -0.2792334 -0.0245146 0.0254383 -0.2907624 -0.0227366 -0.0256087 -0.2904614 -0.0229736 0.0238702 -0.2994274 0.0000774 -0.0319187 -0.2994254 0.0229314 -0.0242267 -0.2565864 0.0378144 -0.0007967 -0.2906084 0.0318094 -0.0003947 -0.2907624 0.0241004 -0.0256097 -0.2333314 0.0277814 -0.0333977 -0.2078194 0.0002814 -0.0514938 -0.2331884 -0.0356606 0.0101643 -0.2077034 -0.0435936 -0.0001827 -0.2792334 -0.0245146 0.0254383 -0.2565874 -0.0341076 0.0081443 -0.2994734 -0.0208576 -0.0242207 -0.2907624 -0.0227366 -0.0256087 -0.2997234 -0.0217016 0.0225763 -0.2994734 -0.0208576 -0.0242207 -0.2906084 0.0318094 -0.0003947 -0.2907624 0.0241004 -0.0256097 -0.2994254 0.0229314 -0.0242267 -0.2792334 0.0342374 -0.0003367 -0.2331884 0.0407874 -0.0001247 -0.2078194 0.0002814 -0.0514938 -0.1829834 0.0002184 -0.0537167 -0.1829834 -0.0321386 -0.0365837 -0.2904024 -0.0004936 0.0334783 -0.2997284 -0.0288676 -0.0004697 -0.2997284 -0.0005296 0.0310353 -0.3142694 -0.0173236 -0.0201637 -0.3142684 0.0176194 -0.0201567 -0.2996814 0.0298724 -0.0004407 -0.2565874 0.0343304 0.0081443 -0.2332144 0.0362804 0.0101623 -0.2904664 0.0228474 0.0229343 -0.2078934 0.0294004 -0.0342407 -0.1829834 0.0002184 -0.0537167 -0.2076194 -0.0382266 0.0123713 -0.1829834 -0.0455836 -0.0005447 -0.3146234 -0.0251686 -0.0015067 -0.3146244 -0.0184086 0.0180843 -0.3142504 0.0003134 -0.0264877 -0.2904664 0.0228474 0.0229343 -0.2792334 0.0247724 0.0246533 -0.2076194 0.0386904 0.0123713 -0.2077034 0.0441794 -0.0001827 -0.1569434 -0.0336096 -0.0371407 -0.1829834 0.0312124 -0.0364937 -0.2997274 0.0212604 0.0215173 -0.3146454 -0.0002726 0.0261973 -0.3254224 -0.0128496 -0.0136817 -0.3254224 0.0116594 -0.0136817 -0.3146244 0.0246944 -0.0014927 -0.2076194 0.0386904 0.0123713 -0.2904024 -0.0004936 0.0334783 -0.1569434 0.0005694 -0.0563127 -0.1569434 0.0005694 -0.0563127 -0.1829834 -0.0396006 0.0144982 -0.1569434 -0.0479386 -0.0006007 -0.3146234 0.0177714 0.0180113 -0.3254224 -0.0181896 -0.0009227 -0.3254224 -0.0131056 0.0138473 -0.3254224 0.0004094 -0.0183337 -0.1829834 0.0462414 -0.0004377 -0.1289434 0.0002984 -0.0565357 -0.1569434 0.0331714 -0.0371527 -0.1829834 -0.0396006 0.0144982 -0.1289434 -0.0341406 -0.0374337 -0.3254224 0.0124954 0.0138473 -0.3254224 -0.0001446 0.0190813 -0.3343904 0.0002474 -0.0114237 -0.3343904 -0.0105026 -0.0009257 -0.3343904 0.0077244 -0.0081117 -0.3254224 0.0174654 -0.0009227 -0.1829834 0.0398804 0.0144982 -0.1569434 0.0483434 -0.0006147 -0.1289434 0.0002984 -0.0565357 -0.1569434 -0.0415016 0.0167463 -0.1289434 -0.0483796 -0.0000957 -0.3343904 -0.0078456 0.0089213 -0.3343904 -0.0071336 -0.0080847 -0.1569434 0.0412874 0.0167463 -0.0957624 -0.0343646 -0.0354047 -0.1289434 0.0338264 -0.0374337 -0.1289434 0.0487794 -0.0000957 -0.3343904 0.0076914 0.0089213 -0.3343904 0.0100474 -0.0009257 -0.3343904 -0.0000456 0.0119623 -0.3427214 0.0000354 0.0002582 -0.1289434 0.0407434 0.0191634 -0.0957624 0.0003594 -0.0538507 -0.0957624 0.0003594 -0.0538507 -0.1289434 -0.0410466 0.0191634 -0.0957624 -0.0487466 -0.0007077 -0.0513134 -0.0354896 -0.0342977 -0.0958094 0.0489494 -0.0007427 -0.0957804 0.0346174 -0.0355117 -0.0957794 0.0395534 0.0220263 -0.0513134 0.0004154 -0.0498617 -0.0957384 -0.0399836 0.0220303 -0.0513134 -0.0502386 -0.0009377 -0.0195844 0.0003244 -0.0449557 -0.0513134 0.0502384 -0.0009377 -0.0513134 0.0354144 -0.0342547 -0.0196584 -0.0335896 -0.0315747 -0.0196584 0.0338894 -0.0315747 -0.0513134 0.0354604 0.0373523 -0.0513134 -0.0357376 0.0373523 -0.0196584 -0.0467956 -0.0011197 0.0040296 0.0003034 -0.0423737 0.0039466 0.0316814 -0.0295477 -0.0196584 0.0469074 -0.0011197 -0.0196584 0.0337604 0.0333092 0.0039466 -0.0313076 -0.0295887 0.0037576 0.0442374 -0.0008247 -0.0196584 0.0250204 0.0389652 -0.0196584 -0.0332726 0.0333092 0.0037586 -0.0440456 -0.0009238 0.0227466 0.0002874 -0.0403267 0.0227466 0.0299234 -0.0279327 0.0227466 0.0420724 -0.0005857 0.0035496 0.0316164 0.0311303 -0.0196584 -0.0232586 0.0393772 0.0227466 -0.0418156 -0.0007647 0.0037586 -0.0440456 -0.0009238 0.0227466 -0.0294906 -0.0280067 0.0227466 0.0298434 0.0293273 0.0035156 0.0153364 0.0351403 0.0035576 -0.0311186 0.0298743 0.0227466 -0.0293376 0.0270352 0.0732866 0.0002244 -0.0314987 0.0732866 0.0232884 -0.0219057 0.0732866 0.0328384 -0.0011327 0.0732866 0.0232884 0.0233203 0.0227466 0.0298434 0.0293273 0.0035496 0.0316164 0.0311303 0.0034846 0.0003464 0.0398793 0.0035576 -0.0311186 0.0298743 0.0035106 -0.0109786 0.0358694 0.0732866 -0.0227746 -0.0219057 0.0732866 -0.0323156 -0.0011327 0.0227466 0.0003274 0.0382574 0.0732866 -0.0227746 0.0233203 0.1215866 -0.0138916 -0.0145227 0.1215866 0.0144254 -0.0145227 0.1215866 0.0202954 -0.0009447 0.1215866 0.0144134 0.0134833 0.0732866 0.0002574 0.0320623 0.1215866 -0.0197566 -0.0009447 0.1215866 0.0002394 -0.0206257 0.1215866 -0.0138956 0.0134423 0.1793366 0.0002243 -0.0107297 0.1793366 0.0063564 -0.0077657 0.1793366 0.0088954 -0.0012797 0.1793366 0.0063544 0.0052893 0.1215866 0.0002594 0.0186453 0.1793366 -0.0058836 -0.0077657 0.1793366 -0.0084207 -0.0012797 0.1793366 0.0002243 -0.0107297 0.1793366 -0.0058876 0.0052893 0.1793366 0.0002333 0.0075552 0.7231796 0.0001473 -0.0069118 0.7231796 0.0034303 -0.0051568 0.7231796 0.0047933 -0.0010657 0.7231796 0.0034303 0.0030422 0.7231796 -0.0031307 -0.0051568 0.7231796 -0.0044867 -0.0010657 0.7231796 0.0001473 -0.0069118 0.7231796 -0.0031307 0.0030422 0.7231796 0.0001493 0.0046443 0.7727766 0.0001423 -0.0047427 0.7727766 0.0024883 -0.0035588 0.7727766 0.0030153 -0.0007337 0.7727766 0.0024883 0.0020943 0.7727766 -0.0022027 -0.0035588 0.7727766 -0.0027247 -0.0007337 0.7727766 0.0024883 -0.0035588 0.7727766 -0.0022027 0.0020943 0.7727766 0.0001423 0.0032432 0.7911396 0.0001403 -0.0038217 0.7911396 0.0016693 -0.0038417 0.7911396 0.0017423 -0.0012497 0.7911396 0.0016693 0.0012913 0.7727766 0.0001423 0.0032432 0.7911396 -0.0013877 -0.0038417 0.7911396 -0.0014617 -0.0012497 0.7727766 -0.0022027 0.0020943 0.7911396 -0.0013877 -0.0038417 0.7911396 0.0016693 -0.0038417 0.7911396 0.0016693 0.0012913 0.7911396 -0.0013877 0.0012913 0.7911396 0.0001403 0.0023543 0.7911396 0.0001403 0.0023543 0.7911396 -0.0013877 0.0012913 - - - - - - - - - - -0.2034170 -0.1701046 -0.9642022 -0.1498877 -0.7504185 -0.6437436 -0.2331973 -0.7229970 -0.6503033 -0.2790736 -0.0057267 -0.9602526 -0.0954629 -0.7563105 -0.6472103 -0.1922414 -0.9811611 0.0191368 -0.2849526 -0.0182636 -0.9583676 -0.1823291 0.7357769 -0.6522181 -0.1126798 -0.4584812 -0.8815318 -0.1182690 -0.9923716 0.0348003 -0.1197746 -0.9925253 0.0234007 -0.2450344 -0.9695129 -0.0016832 -0.2265506 -0.3489658 -0.9093391 -0.2055577 0.3564881 -0.9114067 -0.1229807 0.7405350 -0.6606691 -0.1197805 0.4733934 -0.8726691 -0.1429708 0.4643378 -0.8740422 -0.0897232 -0.7612350 -0.6422391 -0.1795576 -0.8014827 0.5704249 -0.2472175 -0.9189666 -0.3072197 -0.2002698 -0.7122612 0.6727377 -0.3158348 -0.0159709 -0.9486798 -0.2745821 0.3201512 -0.9067017 -0.1284024 0.9916916 0.0077858 -0.2054971 0.9781842 0.0304412 -0.1729656 0.9421860 -0.2869991 -0.0998811 0.7466917 -0.6576285 -0.0894879 -0.4785019 -0.8735147 -0.1175824 -0.9224709 0.3677252 -0.1102209 -0.9935594 0.0262878 -0.1309172 -0.9296979 0.3442709 -0.1146488 -0.9315849 0.3449714 -0.2698101 -0.9122427 -0.3082463 -0.2471792 -0.9189758 -0.3072230 -0.2646926 -0.6981419 0.6652336 -0.2661996 -0.3321487 -0.9048840 -0.2058262 0.9777855 0.0396359 -0.1729582 0.9421872 -0.2869995 -0.2753711 0.9208339 -0.2761080 -0.1811372 0.9829511 0.0315664 -0.1230605 0.9922301 0.0183184 -0.0803970 0.4999125 -0.8623363 -0.0770572 -0.4771379 -0.8754437 -0.0742793 -0.7453396 -0.6625341 -0.2424418 -0.0476260 0.9689962 -0.2528993 -0.9673522 -0.0164814 -0.2824000 0.0050986 0.9592832 -0.4392038 -0.6247435 -0.6455971 -0.4891753 0.6098981 -0.6234837 -0.2724882 0.9616149 0.0323559 -0.1250886 0.9253419 0.3579040 -0.1211296 0.9112873 0.3935519 -0.2220529 0.7095743 0.6687278 -0.0934116 0.7499739 -0.6548385 -0.0922116 0.4905673 -0.8665107 -0.0986150 -0.9166892 0.3872416 -0.0851391 -0.9963318 0.0086218 -0.3873214 -0.9205488 -0.0507154 -0.4245424 -0.6721230 0.6066420 -0.4618002 0.0076845 -0.8869507 -0.2220990 0.7073290 0.6710870 -0.2020399 0.8086744 0.5524722 -0.1199942 0.9094401 0.3981457 -0.1090337 0.9940233 0.0054086 -0.0439720 -0.7532512 -0.6562615 -0.0944159 0.7402608 -0.6656573 -0.2686681 0.6946627 0.6672789 -0.4139351 0.0045231 0.9102951 -0.6048838 -0.5596987 -0.5664388 -0.6019008 0.5534867 -0.5756457 -0.4395769 0.8977303 -0.0291979 -0.0929143 0.9129262 0.3974074 -0.2054821 0.4024284 0.8920922 -0.0452951 -0.4887180 -0.8712652 -0.0402463 0.5001886 -0.8649807 -0.0834376 -0.9259627 0.3682815 -0.0562257 -0.9983860 -0.0080003 -0.4174285 0.6680205 0.6160374 -0.5852420 -0.8103816 -0.0278113 -0.5768693 -0.5927660 0.5620055 -0.5999553 0.0260850 -0.7996081 -0.0847112 0.9964023 0.0025381 0.0234917 -0.4818845 -0.8759198 -0.0447357 0.7546868 -0.6545583 -0.0888273 -0.9288207 0.3597246 0.0084907 -0.7512991 -0.6599073 -0.5725955 0.6012154 0.5573818 -0.5800049 0.0042549 0.8146019 -0.7105234 0.0106559 -0.7035929 -0.7157779 -0.6955387 -0.0623535 -0.7006312 0.5248600 -0.4833611 -0.5839417 0.8113005 -0.0283490 -0.0807384 0.9170338 0.3905514 -0.0467355 0.9988890 -0.0060540 0.0295622 0.4983140 -0.8664925 -0.0566975 -0.9354081 0.3489943 -0.0085375 -0.9999633 -0.0007526 -0.7162245 -0.5110442 0.4752434 -0.7254787 -0.4802311 -0.4930100 -0.0438688 0.9244553 0.3787584 0.0149722 -0.7454525 -0.6663906 0.0010390 0.7469695 -0.6648575 -0.0126428 0.9998753 0.0094668 -0.6976839 0.5455568 0.4643329 -0.6928278 0.7208613 -0.0186701 -0.7107337 0.0019593 0.7034585 -0.9999795 0.0048672 -0.0041686 -0.0089573 0.9234800 0.3835419 0.0581816 -0.4526001 -0.8898135 0.0668293 0.4774262 -0.8761268 -0.0087720 -0.9342100 0.3566156 -0.0192103 -0.9996701 -0.0170506 0.0617132 -0.7101133 -0.7013777 -0.0156332 0.9998778 -0.0001977 0.0194473 0.7360294 -0.6766702 -0.0167462 0.9262261 0.3765962 0.1053578 0.0094644 -0.9943893 -0.0179646 -0.9334771 0.3581869 0.0351064 -0.9990634 -0.0252966 0.1278657 -0.0022467 -0.9917890 0.0378682 0.9990801 -0.0201236 0.0517726 0.7083907 -0.7039192 0.1143159 -0.6932706 -0.7115531 0.1137919 0.7001516 -0.7048682 0.0462035 0.9076285 0.4172239 0.0591480 -0.9043966 0.4225733 0.1152439 -0.9930929 -0.0220286 0.1112009 0.0044678 -0.9937879 0.1234378 0.6916952 -0.7115623 0.1084975 0.9938531 -0.0220078 0.1255335 0.7740831 0.6205132 0.1231952 -0.6909586 -0.7123196 0.1162753 0.9931169 -0.0141025 0.1591675 0.4772054 0.8642573 0.1488366 -0.7542887 0.6394500 0.1239377 -0.9921400 -0.0172537 0.1404286 0.0031780 -0.9900857 0.1469755 0.6903088 -0.7084292 0.1449642 0.9893666 -0.0117983 0.1662185 0.7793475 0.6041431 0.1932479 -0.4529479 0.8703410 0.1510480 -0.9885253 0.0015042 0.1239941 -0.9922801 -0.0023895 0.1504298 -0.6875872 -0.7103483 0.1372761 0.9183464 0.3712077 0.2516440 0.2309741 0.9398544 0.2136904 -0.6870588 0.6944686 0.1563874 -0.6894493 0.7072501 0.1965958 -0.0004191 -0.9804845 0.2030224 0.6810844 -0.7034955 0.2158434 0.9760086 -0.0286151 0.2104824 0.6802651 0.7020944 0.1252660 0.2803102 0.9517009 0.1145588 0.2674466 0.9567385 0.0901611 -0.0103676 0.9958732 0.1522204 -0.6721990 0.7245533 0.2838398 -0.2729572 0.9192004 0.2020549 -0.6812997 -0.7035656 0.2097981 -0.9774406 -0.0243846 0.1165852 -0.0195977 0.9929873 0.1996591 -0.6841781 0.7014532 0.2057329 -0.6896425 -0.6943106 0.2060655 0.6902156 -0.6936421 0.2216043 0.9750713 -0.0112925 0.2317364 0.6776661 0.6979018 0.1908112 -0.0001586 0.9816267 0.2244132 -0.9744436 -0.0099234 0.1967662 0.0000830 -0.9804504 0.2332731 -0.6775960 0.6974577 0.0864094 -0.4317478 -0.8978459 0.0927933 0.7286513 -0.6785696 0.1011067 0.9948661 -0.0043487 0.1048395 0.6974524 0.7089209 0.2304316 -0.0011273 0.9730879 0.0968495 -0.7293414 -0.6772602 0.1013148 -0.9948517 -0.0023083 0.0815741 0.4338152 -0.8973015 0.1032556 -0.6987947 0.7078307 0.0997296 0.0001668 0.9950146 0.0224268 -0.4717370 -0.8814540 0.0230554 0.7639985 -0.6448060 0.0194957 0.9998066 -0.0025782 0.0166257 0.7523324 0.6585738 0.0214657 -0.7637846 -0.6451141 0.0191400 -0.9998168 0.0001114 0.0217141 0.4709769 -0.8818783 0.0185780 -0.7538624 0.6567696 0.0170900 0.0001398 0.9998539 0.0362967 -0.0063482 -0.9993209 0.0229201 0.4509433 -0.8922582 0.0445015 0.9990038 -0.0033351 0.0471924 0.7938136 0.6063274 0.0433985 -0.7993223 -0.5993334 0.0443573 -0.9989902 0.0071420 0.0429076 0.9833679 -0.1764835 0.0456704 -0.9835495 0.1747700 0.0342879 -0.4396972 0.8974914 0.0197183 -0.0209226 -0.9995866 0.0466854 0.0277892 -0.9985230 0.0577825 0.9982977 -0.0079311 0.0682530 0.9967160 0.0435752 0.0413434 0.4438148 0.8951643 0.0651880 -0.9969151 -0.0437129 0.0582797 -0.9982737 0.0072803 0.0348909 -0.4440831 0.8953060 -0.0159845 0.0130602 -0.9997869 0.0441063 0.9986311 -0.0281171 0.0415147 0.5591804 0.8280059 0.0455900 -0.9985369 0.0290804 0.0596156 -0.5590041 0.8270190 0.0397782 0.5703705 0.8204238 0.0611285 -0.5700111 0.8193599 - - - - - - - - - - - - - - -

0 1 2 0 2 3 4 1 0 5 2 1 2 6 3 0 3 7 8 4 0 9 1 4 5 1 10 5 11 2 2 12 6 3 6 13 0 7 14 3 13 7 15 16 14 17 4 8 9 10 1 9 4 17 18 5 10 11 19 2 20 11 5 12 21 6 13 6 22 23 14 7 24 7 25 15 14 26 27 17 8 28 10 9 9 17 29 30 10 31 18 20 5 11 32 33 20 34 11 12 35 21 6 21 22 36 37 38 39 23 7 40 14 23 39 7 24 40 26 14 41 15 26 42 17 27 28 31 10 28 9 29 29 17 43 18 44 20 11 45 32 34 45 11 20 46 34 21 35 47 22 21 48 36 38 49 50 23 39 51 40 23 52 39 24 40 53 26 41 26 53 43 17 42 54 41 53 55 28 29 29 43 56 44 46 20 45 47 32 34 57 45 34 46 58 21 47 59 21 59 48 49 38 48 60 36 49 61 50 39 51 23 50 62 40 51 61 39 52 40 63 53 64 43 42 54 53 65 55 29 56 56 43 64 44 66 46 45 57 47 34 58 57 46 67 58 59 47 68 59 69 48 49 48 70 60 49 66 71 63 40 61 52 72 63 65 53 64 42 73 74 54 65 75 55 56 56 64 76 44 60 66 66 77 46 78 47 57 58 79 57 46 77 67 58 67 79 59 68 80 78 68 47 59 80 69 70 48 69 77 49 70 66 49 77 71 81 63 63 81 65 82 64 73 74 65 83 84 56 76 76 64 85 79 78 57 77 86 67 67 87 79 68 88 80 78 89 68 80 90 69 91 70 69 77 70 91 92 81 71 81 93 65 85 64 82 94 74 83 93 83 65 95 84 76 96 76 85 79 97 78 67 86 87 77 91 86 87 97 79 68 98 88 80 88 90 89 98 68 97 89 78 91 69 90 99 81 92 99 93 81 100 85 82 94 83 101 102 83 93 95 76 96 96 85 100 86 103 87 86 91 104 87 105 97 88 98 106 90 88 106 106 98 89 106 89 97 91 90 104 107 93 99 100 82 108 102 101 83 109 94 101 107 102 93 110 95 96 96 100 111 87 103 105 86 104 103 106 97 105 104 90 106 112 100 108 102 113 101 109 101 114 115 102 107 110 96 111 111 100 112 103 106 105 104 106 103 112 108 116 113 114 101 115 113 102 116 109 114 117 110 111 111 112 118 119 112 116 113 120 114 115 120 113 116 114 121 117 111 118 118 112 122 119 122 112 119 116 123 120 121 114 124 120 115 123 116 121 125 117 118 118 122 126 127 122 119 128 119 123 120 129 121 124 130 120 129 123 121 125 118 126 126 122 131 127 131 122 127 119 128 132 128 123 130 129 120 130 124 133 132 123 129 125 126 134 135 126 131 136 131 127 137 127 128 138 128 132 130 139 129 139 130 133 139 132 129 134 126 135 140 125 134 141 142 131 143 131 136 136 127 137 138 137 128 144 138 132 139 133 145 139 144 132 134 135 146 146 140 134 141 131 143 147 142 141 148 143 136 149 136 137 138 150 137 144 151 138 152 153 154 155 142 147 146 156 140 141 143 157 147 141 158 157 143 148 148 136 149 150 149 137 151 150 138 151 152 159 152 154 159 159 155 147 141 157 158 147 158 160 161 157 148 162 148 149 163 149 150 151 164 150 151 159 165 159 154 155 165 159 147 158 157 161 160 158 166 165 147 160 161 148 167 167 148 162 163 162 149 164 163 150 164 151 165 166 158 161 160 166 168 168 165 160 169 161 167 170 167 162 163 171 162 164 172 163 164 165 173 166 161 174 168 166 175 173 165 168 174 161 169 176 167 170 171 170 162 172 171 163 172 164 173 166 174 175 168 175 177 178 173 168 179 174 169 180 176 170 181 170 171 172 182 171 172 173 178 175 174 183 177 175 184 178 168 177 183 174 179 185 176 180 181 180 170 182 181 171 182 172 178 184 175 183 177 184 186 187 178 177 188 183 179 189 185 180 190 180 181 182 191 181 182 178 187 184 183 192 186 184 193 187 177 186 192 183 188 188 185 189 190 194 180 191 190 181 191 182 187 193 184 192 186 193 195 196 187 186 197 192 188 198 188 189 190 199 194 191 200 190 191 187 201 193 192 202 195 193 203 196 186 204 205 192 197 197 188 198 199 206 194 200 199 190 207 191 201 193 202 203 195 203 208 209 196 204 207 201 210 209 204 211

-
-
-
- - - - 0.7911396 0.0001393 -0.0012497 0.7911396 0.0001403 -0.0038217 0.7911396 0.0016693 -0.0038417 0.7911396 0.0017423 -0.0012497 0.7911396 0.0016693 0.0012913 0.7911396 0.0001403 0.0023543 0.7911396 -0.0013877 0.0012913 0.7911396 -0.0014617 -0.0012497 0.7911396 -0.0013877 -0.0038417 - - - - - - - - - - - - - -

1 0 0 2 0 3 0 4 0 5 0 6 0 7 0 8

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0.4352941 0.1607843 0.0431373 0.5098039 - - - 0.4901961 0.4901961 0.4901961 0.4901961 - - - 1.0000000 - - - - - - - - - - ID19 - - - - - ID20 - - - - - - - - - - - - - - - - - 1.0000000 1.0000000 1.0000000 1.0000000 - - - - - - - - - - - 1.0000000 1.0000000 0.5019608 1.0000000 - - - - - - - - - - - 0.0000000 0.0000000 0.0000000 0.5803922 - - - 0.4196078 0.4196078 0.4196078 0.4196078 - - - 1.0000000 - - - - - - - - - - - 1.0000000 1.0000000 0.0000000 0.3803922 - - - 0.6196078 0.6196078 0.6196078 0.6196078 - - - 1.0000000 - - - - - - - - - - - 0.9333333 0.5019608 0.9333333 0.4588235 - - - 0.5411765 0.5411765 0.5411765 0.5411765 - - - 1.0000000 - - - - - - - - - - - 0.2666667 0.2666667 0.2666667 0.5019608 - - - 0.4980392 0.4980392 0.4980392 0.4980392 - - - 1.0000000 - - - - - - - - - - - 1.0000000 1.0000000 1.0000000 1.0000000 - - - - - - - - - - - 0.0000000 0.0000000 0.0000000 1.0000000 - - - 1.0000000 - - - - - - - - - ascent-park-glider/texture0.jpg - - - - - -
diff --git a/files/vehicles/Ascent_Park_Glider/ascent-park-glider.skp b/files/vehicles/Ascent_Park_Glider/ascent-park-glider.skp deleted file mode 100644 index f18003c4b6a02498f09bee0dd7c4bf360487693d..0000000000000000000000000000000000000000 Binary files a/files/vehicles/Ascent_Park_Glider/ascent-park-glider.skp and /dev/null differ diff --git a/files/vehicles/Ascent_Park_Glider/ascent-park-glider/texture0.jpg b/files/vehicles/Ascent_Park_Glider/ascent-park-glider/texture0.jpg deleted file mode 100644 index 56c2890938605985163a194b08dddaea9b60bf23..0000000000000000000000000000000000000000 Binary files a/files/vehicles/Ascent_Park_Glider/ascent-park-glider/texture0.jpg and /dev/null differ diff --git a/files/vehicles/Multiplex_EasyGlider/multiplex-easyglider.skp b/files/vehicles/Multiplex_EasyGlider/multiplex-easyglider.skp deleted file mode 100644 index aa6d9ed8b76289ef3816931e616366bc4795f2a9..0000000000000000000000000000000000000000 Binary files a/files/vehicles/Multiplex_EasyGlider/multiplex-easyglider.skp and /dev/null differ diff --git a/files/vehicles/Multiplex_TwinStar/multiplex-twinstar.skp b/files/vehicles/Multiplex_TwinStar/multiplex-twinstar.skp deleted file mode 100644 index 245300e960fc7f48e85f8a1b0aaab4c2cfe3ca97..0000000000000000000000000000000000000000 Binary files a/files/vehicles/Multiplex_TwinStar/multiplex-twinstar.skp and /dev/null differ diff --git a/files/vehicles/Walkera_4G6_Coaxial_Helicopter/walkera-4g6.skp b/files/vehicles/Walkera_4G6_Coaxial_Helicopter/walkera-4g6.skp deleted file mode 100644 index c419e93dd7c9c277d167cae87ac8fec66f32aead..0000000000000000000000000000000000000000 Binary files a/files/vehicles/Walkera_4G6_Coaxial_Helicopter/walkera-4g6.skp and /dev/null differ diff --git a/files/vehicles/sFly_Hexrotor/sfly-hex.dae b/files/vehicles/sFly_Hexrotor/sfly-hex.dae deleted file mode 100644 index 69f0812a3a9f4a19ff72028e9a46f309c9ab58fa..0000000000000000000000000000000000000000 --- a/files/vehicles/sFly_Hexrotor/sfly-hex.dae +++ /dev/null @@ -1,5681 +0,0 @@ - - - - - Google SketchUp 8.0.4810 - - 2011-11-21T11:32:53Z - 2011-11-21T11:32:53Z - - Z_UP - - - - - - 1.0000000 -0.0000000 0.0000000 0.0000000 0.0000000 0.0000000 -1.0000000 -0.3521603 0.0000000 1.0000000 0.0000000 0.3521603 0.0000000 0.0000000 0.0000000 1.0000000 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -98.4251969 263.7795276 -8329.5236220 -322.1918504 263.7795276 -8320.8661417 -67.3268110 263.7795276 -8315.0196850 -520.7763780 263.7795276 -8320.8661417 -317.3123228 263.7795276 -8320.4606299 -312.5669685 263.7795276 -8319.2519685 -308.0862598 263.7795276 -8317.2795276 -303.9934646 263.7795276 -8314.5905512 -34.1827126 263.7795276 -8306.1417323 -300.4010630 263.7795276 -8311.2637795 -297.4078740 263.7795276 -8307.3897638 -270.0010630 263.7795276 -8270.5433071 0.0000000 263.7795276 -8303.1496063 184.9788583 263.7795276 -8567.3267717 304.3639764 263.7795276 -8560.0984252 314.9606299 263.7795276 -8561.0236220 193.8598031 263.7795276 -8534.1811024 294.0893307 263.7795276 -8557.3425197 284.4488189 263.7795276 -8552.8464567 275.7353937 263.7795276 -8546.7480315 268.2138189 263.7795276 -8539.2244094 262.1125984 263.7795276 -8530.5118110 196.8503937 263.7795276 -8500.0000000 257.6172047 263.7795276 -8520.8700787 254.8640945 263.7795276 -8510.5984252 253.9370079 263.7795276 -8500.0000000 193.8598031 263.7795276 -8465.8188976 254.8640945 263.7795276 -8489.4015748 257.6172047 263.7795276 -8479.1299213 262.1125984 263.7795276 -8469.4881890 268.2138189 263.7795276 -8460.7755906 184.9788583 263.7795276 -8432.6732283 275.7353937 263.7795276 -8453.2519685 284.4488189 263.7795276 -8447.1535433 294.0893307 263.7795276 -8442.6574803 304.3639764 263.7795276 -8439.9055118 314.9606299 263.7795276 -8438.9763780 374.0157480 263.7795276 -8438.9763780 -184.9788583 263.7795276 -8567.3267717 -304.3639764 263.7795276 -8560.0984252 -193.8598031 263.7795276 -8534.1811024 -314.9606299 263.7795276 -8561.0236220 -374.0157480 263.7795276 -8561.0236220 -294.0893307 263.7795276 -8557.3425197 -284.4488189 263.7795276 -8552.8464567 -275.7353937 263.7795276 -8546.7480315 -268.2138189 263.7795276 -8539.2244094 -262.1125984 263.7795276 -8530.5118110 -196.8503937 263.7795276 -8500.0000000 -257.6172047 263.7795276 -8520.8700787 -254.8640945 263.7795276 -8510.5984252 -253.9370079 263.7795276 -8500.0000000 -254.8640945 263.7795276 -8489.4015748 -193.8598031 263.7795276 -8465.8188976 -257.6172047 263.7795276 -8479.1299213 -262.1125984 263.7795276 -8469.4881890 -268.2138189 263.7795276 -8460.7755906 -184.9788583 263.7795276 -8432.6732283 -275.7353937 263.7795276 -8453.2519685 -284.4488189 263.7795276 -8447.1535433 -294.0893307 263.7795276 -8442.6574803 -304.3639764 263.7795276 -8439.9055118 -314.9606299 263.7795276 -8438.9763780 0.0000000 263.7795276 -8696.8503937 297.4078740 263.7795276 -8692.6102362 267.5136614 263.7795276 -8732.3503937 34.1827126 263.7795276 -8693.8582677 67.3268110 263.7795276 -8684.9803150 300.4010630 263.7795276 -8688.7362205 303.9934646 263.7795276 -8685.4094488 308.0862598 263.7795276 -8682.7204724 98.4251969 263.7795276 -8670.4763780 312.5669685 263.7795276 -8680.7480315 317.3123228 263.7795276 -8679.5393701 322.1918504 263.7795276 -8679.1338583 507.0799213 263.7795276 -8679.1338583 179.1338583 263.7795276 -9007.0787402 39.2252244 263.7795276 -8920.7637795 179.1338583 263.7795276 -8822.1929134 30.5118110 263.7795276 -8926.8622047 20.8713071 263.7795276 -8931.3582677 10.5966417 263.7795276 -8934.1141732 0.0000000 263.7795276 -8935.0393701 46.7468110 263.7795276 -8913.2401575 52.8479921 263.7795276 -8904.5275591 57.3434646 263.7795276 -8894.8858268 60.0965354 263.7795276 -8884.6141732 61.0236220 263.7795276 -8874.0157480 61.0236220 263.7795276 -8814.9606299 179.5398425 263.7795276 -8817.3110236 180.7465748 263.7795276 -8812.5669291 60.0965354 263.7795276 -8804.3622047 182.7209055 263.7795276 -8808.0866142 185.4085433 263.7795276 -8803.9921260 57.3434646 263.7795276 -8794.0905512 188.7355906 263.7795276 -8800.4015748 189.2058661 263.7795276 -8800.0393701 192.6105512 263.7795276 -8797.4094488 225.3937008 263.7795276 -8772.7480315 52.8479921 263.7795276 -8784.4488189 46.7468110 263.7795276 -8775.7362205 39.2252244 263.7795276 -8768.2125984 232.3503543 263.7795276 -8767.5118110 30.5118110 263.7795276 -8762.1141732 20.8713071 263.7795276 -8757.6181102 10.5966417 263.7795276 -8754.8661417 0.0000000 263.7795276 -8753.9370079 -267.5136614 263.7795276 -8732.3503937 -297.4078740 263.7795276 -8692.6102362 -34.1827126 263.7795276 -8693.8582677 -67.3268110 263.7795276 -8684.9803150 -300.4010630 263.7795276 -8688.7362205 -303.9934646 263.7795276 -8685.4094488 -308.0862598 263.7795276 -8682.7204724 -98.4251969 263.7795276 -8670.4763780 -312.5669685 263.7795276 -8680.7480315 -317.3123228 263.7795276 -8679.5393701 -322.1918504 263.7795276 -8679.1338583 -19.8251417 263.7795276 -3961.5629921 24.9719646 263.7795276 -3961.6062992 -24.9719646 263.7795276 -3961.6062992 19.8251417 263.7795276 -3961.5629921 -14.7637795 263.7795276 -3960.6299213 14.7637795 263.7795276 -3960.6299213 401.0870079 263.7795276 -3963.9133858 410.3523622 263.7795276 -3945.5275591 30.0478622 263.7795276 -3960.7559055 34.8986102 263.7795276 -3959.0314961 39.3768110 263.7795276 -3956.4960630 43.3464173 263.7795276 -3953.2204724 46.6868110 263.7795276 -3949.3031496 49.2964567 263.7795276 -3944.8661417 551.1811024 263.7795276 -3717.9157480 51.0961417 263.7795276 -3940.0472441 52.0311024 263.7795276 -3934.9842520 52.0729528 263.7795276 -3929.8374016 51.2204331 263.7795276 -3924.7614173 49.4994488 263.7795276 -3919.9106299 46.9622835 263.7795276 -3915.4326772 43.6860630 263.7795276 -3911.4629921 39.7702756 263.7795276 -3908.1228346 35.3339252 263.7795276 -3905.5129921 30.5118110 263.7795276 -3903.7133858 393.7007874 263.7795276 -3710.6299213 385.1551181 263.7795276 -3709.8822835 376.8691339 263.7795276 -3707.6618110 369.0944882 263.7795276 -3704.0366142 362.0675591 263.7795276 -3699.1165354 30.5118110 263.7795276 -3419.1212598 356.0017717 263.7795276 -3693.0503937 351.0814567 263.7795276 -3686.0236220 347.4561024 263.7795276 -3678.2492126 345.2359055 263.7795276 -3669.9629921 344.4881890 263.7795276 -3661.4173228 345.2359055 263.7795276 -3652.8720472 347.4561024 263.7795276 -3644.5858268 351.0814567 263.7795276 -3636.8110236 356.0017717 263.7795276 -3629.7838583 362.0675591 263.7795276 -3623.7181102 369.0944882 263.7795276 -3618.7984252 376.8691339 263.7795276 -3615.1732283 385.1551181 263.7795276 -3612.9523622 393.7007874 263.7795276 -3612.2047244 -551.1811024 263.7795276 -3717.9157480 -402.2464567 263.7795276 -3709.8822835 -393.7007874 263.7795276 -3710.6299213 -410.5326772 263.7795276 -3707.6618110 -418.3070866 263.7795276 -3704.0366142 -425.3338583 263.7795276 -3699.1165354 -431.4000000 263.7795276 -3693.0503937 -436.3200787 263.7795276 -3686.0236220 -439.9456693 263.7795276 -3678.2492126 -442.1657480 263.7795276 -3669.9629921 -551.1811024 263.7795276 -3170.0318898 -442.9133858 263.7795276 -3661.4173228 -442.1657480 263.7795276 -3652.8720472 -439.9456693 263.7795276 -3644.5858268 -436.3200787 263.7795276 -3636.8110236 -431.4000000 263.7795276 -3629.7838583 -425.3338583 263.7795276 -3623.7181102 -418.3070866 263.7795276 -3618.7984252 -410.5326772 263.7795276 -3615.1732283 -402.2464567 263.7795276 -3612.9523622 -393.7007874 263.7795276 -3612.2047244 -35.3339252 263.7795276 -3417.3220472 -30.5118110 263.7795276 -3419.1212598 -39.7702756 263.7795276 -3414.7118110 -43.6860630 263.7795276 -3411.3720472 -46.9622835 263.7795276 -3407.4019685 -49.4994488 263.7795276 -3402.9244094 -51.2204331 263.7795276 -3398.0728346 -52.0729528 263.7795276 -3392.9972441 -52.0311024 263.7795276 -3387.8503937 -51.0961417 263.7795276 -3382.7893701 -49.2964567 263.7795276 -3377.9669291 -46.6868110 263.7795276 -3373.5311024 -43.3464173 263.7795276 -3369.6145669 -39.3768110 263.7795276 -3366.3385827 -34.8986102 263.7795276 -3363.8015748 -30.0478622 263.7795276 -3362.0807087 -24.9719646 263.7795276 -3361.2279528 24.4308189 263.7795276 -3361.1901575 -8.5456772 263.7795276 -3233.5043307 0.0000000 263.7795276 -3234.2515748 -16.8317008 263.7795276 -3231.2838583 -24.6062992 263.7795276 -3227.6590551 -31.6332480 263.7795276 -3222.7385827 -37.6990354 263.7795276 -3216.6728346 -42.6193701 263.7795276 -3209.6452756 -46.2447244 263.7795276 -3201.8708661 -48.4649606 263.7795276 -3193.5850394 -49.2125984 263.7795276 -3185.0389764 -48.4649606 263.7795276 -3176.4944882 -46.2447244 263.7795276 -3168.2078740 -236.2204724 263.7795276 -2988.1889764 -42.6193701 263.7795276 -3160.4326772 -37.6990354 263.7795276 -3153.4059055 -31.6332480 263.7795276 -3147.3401575 -24.6062992 263.7795276 -3142.4200787 -16.8317008 263.7795276 -3138.7944882 -8.5456772 263.7795276 -3136.5744094 0.0000000 263.7795276 -3135.8263780 442.1657480 263.7795276 -3669.9629921 551.1811024 263.7795276 -3170.0318898 439.9456693 263.7795276 -3678.2492126 436.3200787 263.7795276 -3686.0236220 431.4000000 263.7795276 -3693.0503937 425.3338583 263.7795276 -3699.1165354 418.3070866 263.7795276 -3704.0366142 410.5326772 263.7795276 -3707.6618110 402.2464567 263.7795276 -3709.8822835 442.9133858 263.7795276 -3661.4173228 442.1657480 263.7795276 -3652.8720472 439.9456693 263.7795276 -3644.5858268 436.3200787 263.7795276 -3636.8110236 431.4000000 263.7795276 -3629.7838583 425.3338583 263.7795276 -3623.7181102 418.3070866 263.7795276 -3618.7984252 410.5326772 263.7795276 -3615.1732283 402.2464567 263.7795276 -3612.9523622 35.0885039 263.7795276 -3417.4374016 39.3255827 263.7795276 -3415.0228346 43.1074409 263.7795276 -3411.9444882 46.3309843 263.7795276 -3408.2842520 48.9081890 263.7795276 -3404.1444882 50.7688189 263.7795276 -3399.6362205 51.8621260 263.7795276 -3394.8838583 52.1582677 263.7795276 -3390.0161417 51.6491732 263.7795276 -3385.1665354 50.3487008 263.7795276 -3380.4661417 48.2923622 263.7795276 -3376.0440945 45.5362205 263.7795276 -3372.0208661 42.1554724 263.7795276 -3368.5059055 38.2423465 263.7795276 -3365.5952756 33.9035591 263.7795276 -3363.3692913 29.2574724 263.7795276 -3361.8874016 8.5456772 263.7795276 -3233.5043307 16.8317008 263.7795276 -3231.2838583 24.6062992 263.7795276 -3227.6590551 31.6332480 263.7795276 -3222.7385827 37.6990354 263.7795276 -3216.6728346 42.6193701 263.7795276 -3209.6452756 46.2447244 263.7795276 -3201.8708661 48.4649606 263.7795276 -3193.5850394 49.2125984 263.7795276 -3185.0389764 48.4649606 263.7795276 -3176.4944882 46.2447244 263.7795276 -3168.2078740 236.2204724 263.7795276 -2988.1889764 42.6193701 263.7795276 -3160.4326772 37.6990354 263.7795276 -3153.4059055 31.6332480 263.7795276 -3147.3401575 24.6062992 263.7795276 -3142.4200787 16.8317008 263.7795276 -3138.7944882 8.5456772 263.7795276 -3136.5744094 -19.8251417 263.7795276 -3361.2700787 14.7637795 263.7795276 -3362.2043307 -14.7637795 263.7795276 -3362.2043307 19.5552559 263.7795276 -3361.2976378 277.9223622 263.7795276 -7770.6220472 188.9763780 263.7795276 -7181.1023622 392.7365354 263.7795276 -4004.0748031 188.4978740 263.7795276 -7186.5708661 187.0769291 263.7795276 -7191.8740157 184.7567323 263.7795276 -7196.8503937 181.6076772 263.7795276 -7201.3464567 177.7255906 263.7795276 -7205.2283465 173.2283465 263.7795276 -7208.3779528 168.2525984 263.7795276 -7210.6968504 162.9495276 263.7795276 -7212.1220472 157.4803150 263.7795276 -7212.5984252 -157.4803150 263.7795276 -7212.5984252 188.4978740 263.7795276 -7175.6338583 187.0769291 263.7795276 -7170.3307087 184.7567323 263.7795276 -7165.3543307 181.6076772 263.7795276 -7160.8582677 177.7255906 263.7795276 -7156.9763780 173.2283465 263.7795276 -7153.8267717 168.2525984 263.7795276 -7151.5039370 162.9495276 263.7795276 -7150.0866142 157.4803150 263.7795276 -7149.6062992 187.0769291 263.7795276 -4711.5590551 184.7567323 263.7795276 -4716.5354331 181.6076772 263.7795276 -4721.0314961 177.7255906 263.7795276 -4724.9133858 173.2283465 263.7795276 -4728.0629921 168.2525984 263.7795276 -4730.3858268 162.9495276 263.7795276 -4731.8031496 157.4803150 263.7795276 -4732.2834646 -157.4803150 263.7795276 -4732.2834646 188.4978740 263.7795276 -4706.2559055 188.9763780 263.7795276 -4700.7874016 188.4978740 263.7795276 -4695.3188976 187.0769291 263.7795276 -4690.0157480 184.7567323 263.7795276 -4685.0393701 181.6076772 263.7795276 -4680.5433071 177.7255906 263.7795276 -4676.6614173 173.2283465 263.7795276 -4673.5118110 168.2525984 263.7795276 -4671.1889764 162.9495276 263.7795276 -4669.7716535 157.4803150 263.7795276 -4669.2913386 -392.7365354 263.7795276 -4004.0748031 -395.1551181 263.7795276 -3983.6299213 395.1551181 263.7795276 -3983.6299213 -401.0870079 263.7795276 -3963.9133858 -410.3523622 263.7795276 -3945.5275591 -30.0478622 263.7795276 -3960.7559055 -34.8986102 263.7795276 -3959.0314961 -39.3768110 263.7795276 -3956.4960630 -43.3464173 263.7795276 -3953.2204724 -46.6868110 263.7795276 -3949.3031496 -49.2964567 263.7795276 -3944.8661417 -51.0961417 263.7795276 -3940.0472441 -52.0311024 263.7795276 -3934.9842520 -52.0729528 263.7795276 -3929.8374016 -51.2204331 263.7795276 -3924.7614173 -49.4994488 263.7795276 -3919.9106299 -46.9622835 263.7795276 -3915.4326772 -43.6860630 263.7795276 -3911.4629921 -39.7702756 263.7795276 -3908.1228346 -35.3339252 263.7795276 -3905.5129921 -30.5118110 263.7795276 -3903.7133858 -385.1551181 263.7795276 -3709.8822835 -376.8691339 263.7795276 -3707.6618110 -369.0944882 263.7795276 -3704.0366142 -362.0675591 263.7795276 -3699.1165354 -356.0017717 263.7795276 -3693.0503937 -351.0814567 263.7795276 -3686.0236220 -347.4561024 263.7795276 -3678.2492126 -345.2359055 263.7795276 -3669.9629921 -344.4881890 263.7795276 -3661.4173228 -345.2359055 263.7795276 -3652.8720472 -347.4561024 263.7795276 -3644.5858268 -351.0814567 263.7795276 -3636.8110236 -356.0017717 263.7795276 -3629.7838583 -362.0675591 263.7795276 -3623.7181102 -369.0944882 263.7795276 -3618.7984252 -376.8691339 263.7795276 -3615.1732283 -385.1551181 263.7795276 -3612.9523622 -203.5340157 263.7795276 -9036.1574803 208.6614173 263.7795276 -9036.6062992 -208.6614173 263.7795276 -9036.6062992 203.5340157 263.7795276 -9036.1574803 -198.5624016 263.7795276 -9034.8267717 198.5624016 263.7795276 -9034.8267717 -193.8976378 263.7795276 -9032.6535433 193.8976378 263.7795276 -9032.6535433 -189.6814567 263.7795276 -9029.7007874 189.6814567 263.7795276 -9029.7007874 -186.0419685 263.7795276 -9026.0590551 186.0419685 263.7795276 -9026.0590551 -183.0898031 263.7795276 -9021.8425197 183.0898031 263.7795276 -9021.8425197 -180.9145669 263.7795276 -9017.1771654 180.9145669 263.7795276 -9017.1771654 -179.5824409 263.7795276 -9012.2086614 179.5824409 263.7795276 -9012.2086614 -179.1338583 263.7795276 -9007.0787402 -20.8713071 263.7795276 -8931.3582677 -30.5118110 263.7795276 -8926.8622047 -39.2252244 263.7795276 -8920.7637795 -179.1338583 263.7795276 -8822.1929134 -10.5966417 263.7795276 -8934.1141732 -46.7468110 263.7795276 -8913.2401575 -52.8479921 263.7795276 -8904.5275591 -57.3434646 263.7795276 -8894.8858268 -60.0965354 263.7795276 -8884.6141732 -61.0236220 263.7795276 -8874.0157480 -61.0236220 263.7795276 -8814.9606299 -179.5398425 263.7795276 -8817.3110236 -180.7465748 263.7795276 -8812.5669291 -60.0965354 263.7795276 -8804.3622047 -182.7209055 263.7795276 -8808.0866142 -185.4085433 263.7795276 -8803.9921260 -57.3434646 263.7795276 -8794.0905512 -188.7355906 263.7795276 -8800.4015748 -189.2058661 263.7795276 -8800.0393701 -192.6105512 263.7795276 -8797.4094488 -225.3937008 263.7795276 -8772.7480315 -52.8479921 263.7795276 -8784.4488189 -46.7468110 263.7795276 -8775.7362205 -39.2252244 263.7795276 -8768.2125984 -232.3503543 263.7795276 -8767.5118110 -30.5118110 263.7795276 -8762.1141732 -20.8713071 263.7795276 -8757.6181102 -10.5966417 263.7795276 -8754.8661417 67.3268110 263.7795276 -8315.0196850 322.1918504 263.7795276 -8320.8661417 98.4251969 263.7795276 -8329.5236220 317.3123228 263.7795276 -8320.4606299 312.5669685 263.7795276 -8319.2519685 308.0862598 263.7795276 -8317.2795276 303.9934646 263.7795276 -8314.5905512 34.1827126 263.7795276 -8306.1417323 300.4010630 263.7795276 -8311.2637795 297.4078740 263.7795276 -8307.3897638 270.0010630 263.7795276 -8270.5433071 -238.0594488 263.7795276 -8237.5551181 0.0000000 263.7795276 -8246.0629921 -10.5966417 263.7795276 -8245.1377953 -20.8713071 263.7795276 -8242.3818898 -30.5118110 263.7795276 -8237.8858268 -39.2252244 263.7795276 -8231.7874016 -225.3937008 263.7795276 -8227.4803150 -46.7468110 263.7795276 -8224.2637795 -202.1195669 263.7795276 -8208.9724409 -52.8479921 263.7795276 -8215.5511811 -57.3434646 263.7795276 -8205.9094488 -198.3441339 263.7795276 -8205.8543307 -60.0965354 263.7795276 -8195.6377953 -195.1354331 263.7795276 -8202.1574803 -192.5816142 263.7795276 -8197.9803150 -190.7529134 263.7795276 -8193.4409449 -61.0236220 263.7795276 -8185.0393701 -189.6995669 263.7795276 -8188.6614173 -189.4505512 263.7795276 -8183.7716535 -61.0236220 263.7795276 -8125.9842520 -190.0126378 263.7795276 -8178.9094488 -191.3704724 263.7795276 -8174.2047244 -193.4866929 263.7795276 -8169.7913386 -283.2355118 263.7795276 -8016.6220472 -60.0965354 263.7795276 -8115.3858268 -57.3434646 263.7795276 -8105.1141732 -52.8479921 263.7795276 -8095.4724409 -46.7468110 263.7795276 -8086.7598425 -39.2252244 263.7795276 -8079.2362205 -30.5118110 263.7795276 -8073.1377953 -20.8713071 263.7795276 -8068.6417323 -10.5966417 263.7795276 -8065.8897638 0.0000000 263.7795276 -8064.9606299 -225.3937008 263.7795276 -9154.4724409 222.2701181 263.7795276 -9154.7165354 -222.2701181 263.7795276 -9154.7165354 225.3937008 263.7795276 -9154.4724409 -240.7466142 263.7795276 -9153.2637795 240.7466142 263.7795276 -9153.2637795 -258.7681890 263.7795276 -9148.9370079 258.7681890 263.7795276 -9148.9370079 -275.8910236 263.7795276 -9141.8464567 275.8910236 263.7795276 -9141.8464567 -291.6935827 263.7795276 -9132.1614173 291.6935827 263.7795276 -9132.1614173 -305.7866929 263.7795276 -9120.1259843 305.7866929 263.7795276 -9120.1259843 -214.6585433 263.7795276 -9036.2440945 -219.1639370 263.7795276 -9035.1614173 -489.7606299 263.7795276 -8936.1496063 -210.0394094 263.7795276 -9036.6062992 -223.4446457 263.7795276 -9033.3897638 -225.3937008 263.7795276 -9032.1968504 -227.3952756 263.7795276 -9030.9685039 -230.9185433 263.7795276 -9027.9606299 -273.0542126 263.7795276 -8985.8228346 -489.7606299 263.7795276 -8769.1181102 -620.1240157 263.7795276 -8805.7874016 -632.1606299 263.7795276 -8791.6929134 -641.8444882 263.7795276 -8775.8897638 -648.9370079 263.7795276 -8758.7677165 -527.9590551 263.7795276 -8730.9173228 -653.2637795 263.7795276 -8740.7480315 -654.7177165 263.7795276 -8722.2716535 -530.9681102 263.7795276 -8727.3937008 -533.3893701 263.7795276 -8723.4448819 -535.1622047 263.7795276 -8719.1653543 -654.7177165 263.7795276 -8253.4173228 -536.2440945 263.7795276 -8714.6574803 -536.6074803 263.7795276 -8710.0393701 -536.6074803 263.7795276 -8708.6614173 -536.1590551 263.7795276 -8703.5354331 -534.8267717 263.7795276 -8698.5629921 -532.6515748 263.7795276 -8693.8976378 -529.6992126 263.7795276 -8689.6811024 -526.0598425 263.7795276 -8686.0433071 -521.8437008 263.7795276 -8683.0905512 -517.1791339 263.7795276 -8680.9133858 -512.2074803 263.7795276 -8679.5826772 -507.0799213 263.7795276 -8679.1338583 -420.7625984 263.7795276 -8539.2244094 -413.2409449 263.7795276 -8546.7480315 -404.5275591 263.7795276 -8552.8464567 -394.8870079 263.7795276 -8557.3425197 -126.5329921 263.7795276 -8650.7952756 -150.7961417 263.7795276 -8626.5314961 -384.6124016 263.7795276 -8560.0984252 -170.4774409 263.7795276 -8598.4251969 -426.8637795 263.7795276 -8530.5118110 -431.3590551 263.7795276 -8520.8700787 -434.1122047 263.7795276 -8510.5984252 -435.0393701 263.7795276 -8500.0000000 -434.1122047 263.7795276 -8489.4015748 -431.3590551 263.7795276 -8479.1299213 -426.8637795 263.7795276 -8469.4881890 -420.7625984 263.7795276 -8460.7755906 -413.2409449 263.7795276 -8453.2519685 -404.5275591 263.7795276 -8447.1535433 -394.8870079 263.7795276 -8442.6574803 -384.6124016 263.7795276 -8439.9055118 -374.0157480 263.7795276 -8438.9763780 -534.6196850 263.7795276 -8317.4212598 -530.2133858 263.7795276 -8319.3188976 -525.5578740 263.7795276 -8320.4763780 -170.4774409 263.7795276 -8401.5748031 -150.7961417 263.7795276 -8373.4685039 -126.5329921 263.7795276 -8349.2047244 -538.6606299 263.7795276 -8314.8346457 -542.2295276 263.7795276 -8311.6259843 -545.2318898 263.7795276 -8307.8858268 -547.5885827 263.7795276 -8303.7086614 -549.2377953 263.7795276 -8299.2007874 -550.1354331 263.7795276 -8294.4881890 -550.2578740 263.7795276 -8289.6929134 -549.6023622 263.7795276 -8284.9409449 -548.1854331 263.7795276 -8280.3582677 -508.6807087 263.7795276 -8200.0078740 -653.5023622 263.7795276 -8236.5157480 -649.8814961 263.7795276 -8219.9645669 -643.9291339 263.7795276 -8204.1023622 -588.5027559 263.7795276 -8105.2007874 -489.7606299 263.7795276 -8172.8661417 -457.4830709 263.7795276 -8126.5551181 -395.7700787 263.7795276 -8061.6889764 -518.0149606 263.7795276 -8016.4094488 -324.9596850 263.7795276 -8006.8976378 -438.9763780 263.7795276 -7944.2834646 -320.7609843 263.7795276 -8004.5944882 -316.2453150 263.7795276 -8003.0000000 -311.5315748 263.7795276 -8002.1574803 -306.7437008 263.7795276 -8002.0905512 306.7437008 263.7795276 -8002.0905512 238.0594488 263.7795276 -8237.5551181 10.5966417 263.7795276 -8245.1377953 20.8713071 263.7795276 -8242.3818898 30.5118110 263.7795276 -8237.8858268 39.2252244 263.7795276 -8231.7874016 225.3937008 263.7795276 -8227.4803150 46.7468110 263.7795276 -8224.2637795 202.1196063 263.7795276 -8208.9724409 52.8479921 263.7795276 -8215.5511811 57.3434646 263.7795276 -8205.9094488 198.3441339 263.7795276 -8205.8543307 60.0965354 263.7795276 -8195.6377953 195.1354331 263.7795276 -8202.1574803 192.5816142 263.7795276 -8197.9803150 190.7529134 263.7795276 -8193.4409449 61.0236220 263.7795276 -8185.0393701 189.6995669 263.7795276 -8188.6614173 189.4505512 263.7795276 -8183.7716535 61.0236220 263.7795276 -8125.9842520 190.0126378 263.7795276 -8178.9094488 191.3704724 263.7795276 -8174.2047244 193.4866929 263.7795276 -8169.7913386 283.2355118 263.7795276 -8016.6220472 60.0965354 263.7795276 -8115.3858268 57.3434646 263.7795276 -8105.1141732 52.8479921 263.7795276 -8095.4724409 46.7468110 263.7795276 -8086.7598425 39.2252244 263.7795276 -8079.2362205 30.5118110 263.7795276 -8073.1377953 20.8713071 263.7795276 -8068.6417323 10.5966417 263.7795276 -8065.8897638 -285.9833071 263.7795276 -8012.7007874 285.9833071 263.7795276 -8012.7007874 -289.3288583 263.7795276 -8009.2755906 289.3288583 263.7795276 -8009.2755906 -293.1840945 263.7795276 -8006.4370079 293.1840945 263.7795276 -8006.4370079 -297.4477165 263.7795276 -8004.2559055 297.4477165 263.7795276 -8004.2559055 -302.0075591 263.7795276 -8002.7952756 302.0075591 263.7795276 -8002.7952756 214.6585433 263.7795276 -9036.2440945 440.0874016 263.7795276 -8985.8228346 210.0394094 263.7795276 -9036.6062992 219.1639370 263.7795276 -9035.1614173 223.4446457 263.7795276 -9033.3897638 225.3937008 263.7795276 -9032.1968504 227.3952756 263.7795276 -9030.9685039 230.9185433 263.7795276 -9027.9606299 273.0542126 263.7795276 -8985.8228346 527.9590551 263.7795276 -8730.9173228 620.1240157 263.7795276 -8805.7874016 632.1606299 263.7795276 -8791.6929134 641.8444882 263.7795276 -8775.8897638 648.9370079 263.7795276 -8758.7677165 653.2637795 263.7795276 -8740.7480315 654.7177165 263.7795276 -8722.2716535 530.9681102 263.7795276 -8727.3937008 533.3893701 263.7795276 -8723.4448819 535.1622047 263.7795276 -8719.1653543 654.7177165 263.7795276 -8253.4173228 536.2440945 263.7795276 -8714.6574803 536.6074803 263.7795276 -8710.0393701 536.6074803 263.7795276 -8708.6614173 536.1590551 263.7795276 -8703.5354331 534.8267717 263.7795276 -8698.5629921 532.6515748 263.7795276 -8693.8976378 529.6992126 263.7795276 -8689.6811024 526.0598425 263.7795276 -8686.0433071 521.8437008 263.7795276 -8683.0905512 517.1791339 263.7795276 -8680.9133858 512.2074803 263.7795276 -8679.5826772 420.7625984 263.7795276 -8539.2244094 413.2409449 263.7795276 -8546.7480315 404.5275591 263.7795276 -8552.8464567 394.8870079 263.7795276 -8557.3425197 126.5329921 263.7795276 -8650.7952756 150.7961417 263.7795276 -8626.5314961 384.6124016 263.7795276 -8560.0984252 170.4774409 263.7795276 -8598.4251969 374.0157480 263.7795276 -8561.0236220 426.8637795 263.7795276 -8530.5118110 431.3590551 263.7795276 -8520.8700787 434.1122047 263.7795276 -8510.5984252 435.0393701 263.7795276 -8500.0000000 434.1122047 263.7795276 -8489.4015748 431.3590551 263.7795276 -8479.1299213 426.8637795 263.7795276 -8469.4881890 420.7625984 263.7795276 -8460.7755906 413.2409449 263.7795276 -8453.2519685 404.5275591 263.7795276 -8447.1535433 394.8870079 263.7795276 -8442.6574803 384.6124016 263.7795276 -8439.9055118 534.6196850 263.7795276 -8317.4212598 530.2133858 263.7795276 -8319.3188976 525.5578740 263.7795276 -8320.4763780 170.4774409 263.7795276 -8401.5748031 152.5590551 263.7795276 -8375.9842520 150.7961417 263.7795276 -8373.4685039 520.7763780 263.7795276 -8320.8661417 126.5329921 263.7795276 -8349.2047244 538.6606299 263.7795276 -8314.8346457 542.2295276 263.7795276 -8311.6259843 545.2318898 263.7795276 -8307.8858268 547.5885827 263.7795276 -8303.7086614 549.2377953 263.7795276 -8299.2007874 550.1354331 263.7795276 -8294.4881890 550.2578740 263.7795276 -8289.6929134 549.6023622 263.7795276 -8284.9409449 548.1854331 263.7795276 -8280.3582677 508.6807087 263.7795276 -8200.0078740 653.5023622 263.7795276 -8236.5157480 649.8814961 263.7795276 -8219.9645669 643.9291339 263.7795276 -8204.1023622 588.5027559 263.7795276 -8105.2007874 457.4830709 263.7795276 -8126.5551181 395.7700787 263.7795276 -8061.6889764 518.0149606 263.7795276 -8016.4094488 324.9596850 263.7795276 -8006.8976378 434.2696850 263.7795276 -7939.9921260 320.7609843 263.7795276 -8004.5944882 316.2453150 263.7795276 -8003.0000000 311.5315748 263.7795276 -8002.1574803 -434.2696850 263.7795276 -7939.9921260 -339.4095276 263.7795276 -7877.9055118 339.4095276 263.7795276 -7877.9055118 -323.8562992 263.7795276 -7867.7559055 323.8562992 263.7795276 -7867.7559055 -310.0861417 263.7795276 -7855.2952756 310.0861417 263.7795276 -7855.2952756 -298.4396850 263.7795276 -7840.8267717 298.4396850 263.7795276 -7840.8267717 -289.2047638 263.7795276 -7824.7165354 289.2047638 263.7795276 -7824.7165354 -282.6097638 263.7795276 -7807.3543307 282.6097638 263.7795276 -7807.3543307 -278.8177165 263.7795276 -7789.1732283 278.8177165 263.7795276 -7789.1732283 -277.9223622 263.7795276 -7770.6220472 -181.6076772 263.7795276 -7201.3464567 -184.7567323 263.7795276 -7196.8503937 -187.0769291 263.7795276 -7191.8740157 -188.4978740 263.7795276 -7186.5708661 -188.9763780 263.7795276 -7181.1023622 -177.7255906 263.7795276 -7205.2283465 -173.2283465 263.7795276 -7208.3779528 -168.2525984 263.7795276 -7210.6968504 -162.9495276 263.7795276 -7212.1220472 -188.4978740 263.7795276 -7175.6338583 -187.0769291 263.7795276 -7170.3307087 -184.7567323 263.7795276 -7165.3543307 -181.6076772 263.7795276 -7160.8582677 -177.7255906 263.7795276 -7156.9763780 -173.2283465 263.7795276 -7153.8267717 -168.2525984 263.7795276 -7151.5039370 -162.9495276 263.7795276 -7150.0866142 -157.4803150 263.7795276 -7149.6062992 -187.0769291 263.7795276 -4711.5590551 -184.7567323 263.7795276 -4716.5354331 -181.6076772 263.7795276 -4721.0314961 -177.7255906 263.7795276 -4724.9133858 -173.2283465 263.7795276 -4728.0629921 -168.2525984 263.7795276 -4730.3858268 -162.9495276 263.7795276 -4731.8031496 -188.4978740 263.7795276 -4706.2559055 -188.9763780 263.7795276 -4700.7874016 -188.4978740 263.7795276 -4695.3188976 -187.0769291 263.7795276 -4690.0157480 -184.7567323 263.7795276 -4685.0393701 -181.6076772 263.7795276 -4680.5433071 -177.7255906 263.7795276 -4676.6614173 -173.2283465 263.7795276 -4673.5118110 -168.2525984 263.7795276 -4671.1889764 -162.9495276 263.7795276 -4669.7716535 -157.4803150 263.7795276 -4669.2913386 -152.0111024 263.7795276 -4731.8031496 152.5590551 263.7795276 -4731.8543307 152.0111024 263.7795276 -4731.8031496 -146.7080315 263.7795276 -4730.3858268 146.7080315 263.7795276 -4730.3858268 -141.7322835 263.7795276 -4728.0629921 141.7322835 263.7795276 -4728.0629921 -137.2350394 263.7795276 -4724.9133858 137.2350394 263.7795276 -4724.9133858 -133.3529528 263.7795276 -4721.0314961 133.3529528 263.7795276 -4721.0314961 -130.2039370 263.7795276 -4716.5354331 130.2039370 263.7795276 -4716.5354331 -127.8837008 263.7795276 -4711.5590551 127.8837008 263.7795276 -4711.5590551 -126.4627559 263.7795276 -4706.2559055 126.4627559 263.7795276 -4706.2559055 -125.9842520 263.7795276 -4700.7874016 125.9842520 263.7795276 -4700.7874016 -126.4627559 263.7795276 -4695.3188976 126.4627559 263.7795276 -4695.3188976 -127.8837008 263.7795276 -4690.0157480 127.8837008 263.7795276 -4690.0157480 -130.2039370 263.7795276 -4685.0393701 130.2039370 263.7795276 -4685.0393701 -133.3529528 263.7795276 -4680.5433071 133.3529528 263.7795276 -4680.5433071 -137.2350394 263.7795276 -4676.6614173 137.2350394 263.7795276 -4676.6614173 -141.7322835 263.7795276 -4673.5118110 141.7322835 263.7795276 -4673.5118110 -146.7080315 263.7795276 -4671.1889764 146.7080315 263.7795276 -4671.1889764 -152.0111024 263.7795276 -4669.7716535 152.0111024 263.7795276 -4669.7716535 152.5590551 263.7795276 -4669.7204724 -152.0111024 263.7795276 -7212.1220472 152.0111024 263.7795276 -7212.1220472 -146.7080315 263.7795276 -7210.6968504 146.7080315 263.7795276 -7210.6968504 -141.7322835 263.7795276 -7208.3779528 141.7322835 263.7795276 -7208.3779528 -137.2350394 263.7795276 -7205.2283465 137.2350394 263.7795276 -7205.2283465 -133.3529528 263.7795276 -7201.3464567 133.3529528 263.7795276 -7201.3464567 -130.2039370 263.7795276 -7196.8503937 130.2039370 263.7795276 -7196.8503937 -127.8837008 263.7795276 -7191.8740157 127.8837008 263.7795276 -7191.8740157 -126.4627559 263.7795276 -7186.5708661 126.4627559 263.7795276 -7186.5708661 -125.9842520 263.7795276 -7181.1023622 125.9842520 263.7795276 -7181.1023622 -126.4627559 263.7795276 -7175.6338583 126.4627559 263.7795276 -7175.6338583 -127.8837008 263.7795276 -7170.3307087 127.8837008 263.7795276 -7170.3307087 -130.2039370 263.7795276 -7165.3543307 130.2039370 263.7795276 -7165.3543307 -133.3529528 263.7795276 -7160.8582677 133.3529528 263.7795276 -7160.8582677 -137.2350394 263.7795276 -7156.9763780 137.2350394 263.7795276 -7156.9763780 -141.7322835 263.7795276 -7153.8267717 141.7322835 263.7795276 -7153.8267717 -146.7080315 263.7795276 -7151.5039370 146.7080315 263.7795276 -7151.5039370 -152.0111024 263.7795276 -7150.0866142 152.0111024 263.7795276 -7150.0866142 152.5590551 263.7795276 -7150.0354331 -654.7177165 263.7795276 -8253.4173228 -654.7177165 47.2440945 -8722.2716535 -654.7177165 47.2440945 -8253.4173228 -654.7177165 263.7795276 -8722.2716535 -653.5023622 47.2440945 -8236.5157480 -653.5023622 263.7795276 -8236.5157480 -649.8814961 263.7795276 -8219.9645669 -649.8814961 47.2440945 -8219.9645669 -643.9291339 263.7795276 -8204.1023622 -643.9291339 47.2440945 -8204.1023622 -588.5027559 263.7795276 -8105.2007874 -588.5027559 47.2440945 -8105.2007874 -518.0149606 263.7795276 -8016.4094488 -518.0149606 47.2440945 -8016.4094488 -438.9763780 47.2440945 -7944.2834646 -438.9763780 263.7795276 -7944.2834646 -434.2696850 47.2440945 -7939.9921260 -434.2696850 263.7795276 -7939.9921260 -339.4095276 47.2440945 -7877.9055118 -339.4095276 263.7795276 -7877.9055118 -323.8562992 47.2440945 -7867.7559055 -323.8562992 263.7795276 -7867.7559055 -310.0861417 47.2440945 -7855.2952756 -310.0861417 263.7795276 -7855.2952756 -298.4396850 47.2440945 -7840.8267717 -298.4396850 263.7795276 -7840.8267717 -289.2047638 263.7795276 -7824.7165354 -289.2047638 47.2440945 -7824.7165354 -282.6097638 263.7795276 -7807.3543307 -282.6097638 47.2440945 -7807.3543307 -278.8177165 263.7795276 -7789.1732283 -278.8177165 47.2440945 -7789.1732283 -277.9223622 263.7795276 -7770.6220472 -277.9223622 47.2440945 -7770.6220472 -392.7365354 263.7795276 -4004.0748031 -392.7365354 47.2440945 -4004.0748031 -395.1551181 263.7795276 -3983.6299213 -395.1551181 47.2440945 -3983.6299213 -401.0870079 263.7795276 -3963.9133858 -401.0870079 47.2440945 -3963.9133858 -410.3523622 47.2440945 -3945.5275591 -410.3523622 263.7795276 -3945.5275591 -551.1811024 263.7795276 -3717.9157480 -551.1811024 47.2440945 -3717.9157480 -551.1811024 263.7795276 -3170.0318898 -551.1811024 47.2440945 -3170.0318898 -236.2204724 47.2440945 -2988.1889764 -236.2204724 263.7795276 -2988.1889764 236.2204724 47.2440945 -2988.1889764 236.2204724 263.7795276 -2988.1889764 551.1811024 47.2440945 -3170.0318898 551.1811024 263.7795276 -3170.0318898 551.1811024 263.7795276 -3717.9157480 551.1811024 47.2440945 -3717.9157480 410.3523622 263.7795276 -3945.5275591 410.3523622 47.2440945 -3945.5275591 401.0870079 263.7795276 -3963.9133858 401.0870079 47.2440945 -3963.9133858 395.1551181 47.2440945 -3983.6299213 395.1551181 263.7795276 -3983.6299213 392.7365354 263.7795276 -4004.0748031 392.7365354 47.2440945 -4004.0748031 277.9223622 263.7795276 -7770.6220472 277.9223622 47.2440945 -7770.6220472 278.8177165 263.7795276 -7789.1732283 278.8177165 47.2440945 -7789.1732283 282.6097638 263.7795276 -7807.3543307 282.6097638 47.2440945 -7807.3543307 289.2047638 47.2440945 -7824.7165354 289.2047638 263.7795276 -7824.7165354 298.4396850 263.7795276 -7840.8267717 298.4396850 47.2440945 -7840.8267717 310.0861417 263.7795276 -7855.2952756 310.0861417 47.2440945 -7855.2952756 323.8562992 47.2440945 -7867.7559055 323.8562992 263.7795276 -7867.7559055 339.4095276 47.2440945 -7877.9055118 339.4095276 263.7795276 -7877.9055118 434.2696850 47.2440945 -7939.9921260 434.2696850 263.7795276 -7939.9921260 518.0149606 47.2440945 -8016.4094488 518.0149606 263.7795276 -8016.4094488 588.5027559 47.2440945 -8105.2007874 588.5027559 263.7795276 -8105.2007874 643.9291339 263.7795276 -8204.1023622 643.9291339 47.2440945 -8204.1023622 649.8814961 263.7795276 -8219.9645669 649.8814961 47.2440945 -8219.9645669 653.5023622 263.7795276 -8236.5157480 653.5023622 47.2440945 -8236.5157480 654.7177165 263.7795276 -8253.4173228 654.7177165 47.2440945 -8253.4173228 654.7177165 263.7795276 -8722.2716535 654.7177165 47.2440945 -8722.2716535 653.2637795 47.2440945 -8740.7480315 653.2637795 263.7795276 -8740.7480315 648.9370079 263.7795276 -8758.7677165 648.9370079 47.2440945 -8758.7677165 641.8444882 263.7795276 -8775.8897638 641.8444882 47.2440945 -8775.8897638 632.1606299 263.7795276 -8791.6929134 632.1606299 47.2440945 -8791.6929134 620.1240157 47.2440945 -8805.7874016 620.1240157 263.7795276 -8805.7874016 440.0874016 47.2440945 -8985.8228346 440.0874016 263.7795276 -8985.8228346 305.7866929 263.7795276 -9120.1259843 305.7866929 47.2440945 -9120.1259843 291.6935827 47.2440945 -9132.1614173 291.6935827 263.7795276 -9132.1614173 275.8910236 47.2440945 -9141.8464567 275.8910236 263.7795276 -9141.8464567 258.7681890 47.2440945 -9148.9370079 258.7681890 263.7795276 -9148.9370079 240.7466142 47.2440945 -9153.2637795 240.7466142 263.7795276 -9153.2637795 225.3937008 47.2440945 -9154.4724409 225.3937008 263.7795276 -9154.4724409 222.2701181 47.2440945 -9154.7165354 222.2701181 263.7795276 -9154.7165354 -222.2701181 47.2440945 -9154.7165354 -222.2701181 263.7795276 -9154.7165354 -225.3937008 47.2440945 -9154.4724409 -225.3937008 263.7795276 -9154.4724409 -240.7466142 47.2440945 -9153.2637795 -240.7466142 263.7795276 -9153.2637795 -258.7681890 47.2440945 -9148.9370079 -258.7681890 263.7795276 -9148.9370079 -275.8910236 47.2440945 -9141.8464567 -275.8910236 263.7795276 -9141.8464567 -291.6935827 47.2440945 -9132.1614173 -291.6935827 263.7795276 -9132.1614173 -305.7866929 47.2440945 -9120.1259843 -305.7866929 263.7795276 -9120.1259843 -489.7606299 47.2440945 -8936.1496063 -489.7606299 263.7795276 -8936.1496063 -620.1240157 47.2440945 -8805.7874016 -620.1240157 263.7795276 -8805.7874016 -632.1606299 263.7795276 -8791.6929134 -632.1606299 47.2440945 -8791.6929134 -641.8444882 263.7795276 -8775.8897638 -641.8444882 47.2440945 -8775.8897638 -648.9370079 47.2440945 -8758.7677165 -648.9370079 263.7795276 -8758.7677165 -653.2637795 263.7795276 -8740.7480315 -653.2637795 47.2440945 -8740.7480315 -184.9788583 47.2440945 -8567.3267717 -304.3639764 47.2440945 -8560.0984252 -314.9606299 47.2440945 -8561.0236220 -193.8598031 47.2440945 -8534.1811024 -294.0893307 47.2440945 -8557.3425197 -284.4488189 47.2440945 -8552.8464567 -275.7353937 47.2440945 -8546.7480315 -268.2138189 47.2440945 -8539.2244094 -262.1125984 47.2440945 -8530.5118110 -196.8503937 47.2440945 -8500.0000000 -257.6172047 47.2440945 -8520.8700787 -254.8640945 47.2440945 -8510.5984252 -253.9370079 47.2440945 -8500.0000000 -193.8598031 47.2440945 -8465.8188976 -254.8640945 47.2440945 -8489.4015748 -257.6172047 47.2440945 -8479.1299213 -262.1125984 47.2440945 -8469.4881890 -268.2138189 47.2440945 -8460.7755906 -184.9788583 47.2440945 -8432.6732283 -275.7353937 47.2440945 -8453.2519685 -284.4488189 47.2440945 -8447.1535433 -294.0893307 47.2440945 -8442.6574803 -304.3639764 47.2440945 -8439.9055118 -314.9606299 47.2440945 -8438.9763780 -374.0157480 47.2440945 -8438.9763780 184.9788583 47.2440945 -8567.3267717 304.3639764 47.2440945 -8560.0984252 193.8598031 47.2440945 -8534.1811024 314.9606299 47.2440945 -8561.0236220 374.0157480 47.2440945 -8561.0236220 294.0893307 47.2440945 -8557.3425197 284.4488189 47.2440945 -8552.8464567 275.7353937 47.2440945 -8546.7480315 268.2138189 47.2440945 -8539.2244094 262.1125984 47.2440945 -8530.5118110 196.8503937 47.2440945 -8500.0000000 257.6172047 47.2440945 -8520.8700787 254.8640945 47.2440945 -8510.5984252 253.9370079 47.2440945 -8500.0000000 254.8640945 47.2440945 -8489.4015748 193.8598031 47.2440945 -8465.8188976 257.6172047 47.2440945 -8479.1299213 262.1125984 47.2440945 -8469.4881890 268.2138189 47.2440945 -8460.7755906 184.9788583 47.2440945 -8432.6732283 275.7353937 47.2440945 -8453.2519685 284.4488189 47.2440945 -8447.1535433 294.0893307 47.2440945 -8442.6574803 304.3639764 47.2440945 -8439.9055118 314.9606299 47.2440945 -8438.9763780 0.0000000 47.2440945 -8696.8503937 -297.4078740 47.2440945 -8692.6102362 -267.5136614 47.2440945 -8732.3503937 -34.1827126 47.2440945 -8693.8582677 -67.3268110 47.2440945 -8684.9803150 -300.4010630 47.2440945 -8688.7362205 -303.9934646 47.2440945 -8685.4094488 -308.0862598 47.2440945 -8682.7204724 -98.4251969 47.2440945 -8670.4763780 -312.5669685 47.2440945 -8680.7480315 -317.3123228 47.2440945 -8679.5393701 -322.1918504 47.2440945 -8679.1338583 -507.0799213 47.2440945 -8679.1338583 -179.1338583 47.2440945 -9007.0787402 -39.2252244 47.2440945 -8920.7637795 -179.1338583 47.2440945 -8822.1929134 -30.5118110 47.2440945 -8926.8622047 -20.8713071 47.2440945 -8931.3582677 -10.5966417 47.2440945 -8934.1141732 0.0000000 47.2440945 -8935.0393701 -46.7468110 47.2440945 -8913.2401575 -52.8479921 47.2440945 -8904.5275591 -57.3434646 47.2440945 -8894.8858268 -60.0965354 47.2440945 -8884.6141732 -61.0236220 47.2440945 -8874.0157480 -61.0236220 47.2440945 -8814.9606299 -179.5398425 47.2440945 -8817.3110236 -180.7465748 47.2440945 -8812.5669291 -60.0965354 47.2440945 -8804.3622047 -182.7209055 47.2440945 -8808.0866142 -185.4085433 47.2440945 -8803.9921260 -57.3434646 47.2440945 -8794.0905512 -188.7355906 47.2440945 -8800.4015748 -189.2058661 47.2440945 -8800.0393701 -192.6105512 47.2440945 -8797.4094488 -225.3937008 47.2440945 -8772.7480315 -52.8479921 47.2440945 -8784.4488189 -46.7468110 47.2440945 -8775.7362205 -39.2252244 47.2440945 -8768.2125984 -232.3503543 47.2440945 -8767.5118110 -30.5118110 47.2440945 -8762.1141732 -20.8713071 47.2440945 -8757.6181102 -10.5966417 47.2440945 -8754.8661417 0.0000000 47.2440945 -8753.9370079 267.5136614 47.2440945 -8732.3503937 297.4078740 47.2440945 -8692.6102362 34.1827126 47.2440945 -8693.8582677 67.3268110 47.2440945 -8684.9803150 300.4010630 47.2440945 -8688.7362205 303.9934646 47.2440945 -8685.4094488 308.0862598 47.2440945 -8682.7204724 98.4251969 47.2440945 -8670.4763780 312.5669685 47.2440945 -8680.7480315 317.3123228 47.2440945 -8679.5393701 322.1918504 47.2440945 -8679.1338583 98.4251969 47.2440945 -8329.5236220 322.1918504 47.2440945 -8320.8661417 67.3268110 47.2440945 -8315.0196850 520.7763780 47.2440945 -8320.8661417 317.3123228 47.2440945 -8320.4606299 312.5669685 47.2440945 -8319.2519685 308.0862598 47.2440945 -8317.2795276 303.9934646 47.2440945 -8314.5905512 34.1827126 47.2440945 -8306.1417323 300.4010630 47.2440945 -8311.2637795 297.4078740 47.2440945 -8307.3897638 270.0010630 47.2440945 -8270.5433071 0.0000000 47.2440945 -8303.1496063 -67.3268110 47.2440945 -8315.0196850 -322.1918504 47.2440945 -8320.8661417 -98.4251969 47.2440945 -8329.5236220 -317.3123228 47.2440945 -8320.4606299 -312.5669685 47.2440945 -8319.2519685 -308.0862598 47.2440945 -8317.2795276 -303.9934646 47.2440945 -8314.5905512 -34.1827126 47.2440945 -8306.1417323 -300.4010630 47.2440945 -8311.2637795 -297.4078740 47.2440945 -8307.3897638 -270.0010630 47.2440945 -8270.5433071 238.0594488 47.2440945 -8237.5551181 0.0000000 47.2440945 -8246.0629921 10.5966417 47.2440945 -8245.1377953 20.8713071 47.2440945 -8242.3818898 30.5118110 47.2440945 -8237.8858268 39.2252244 47.2440945 -8231.7874016 225.3937008 47.2440945 -8227.4803150 46.7468110 47.2440945 -8224.2637795 202.1196063 47.2440945 -8208.9724409 52.8479921 47.2440945 -8215.5511811 57.3434646 47.2440945 -8205.9094488 198.3441339 47.2440945 -8205.8543307 60.0965354 47.2440945 -8195.6377953 195.1354331 47.2440945 -8202.1574803 192.5816142 47.2440945 -8197.9803150 190.7529134 47.2440945 -8193.4409449 61.0236220 47.2440945 -8185.0393701 189.6995669 47.2440945 -8188.6614173 189.4505512 47.2440945 -8183.7716535 61.0236220 47.2440945 -8125.9842520 190.0126378 47.2440945 -8178.9094488 191.3704724 47.2440945 -8174.2047244 193.4866929 47.2440945 -8169.7913386 283.2355118 47.2440945 -8016.6220472 60.0965354 47.2440945 -8115.3858268 57.3434646 47.2440945 -8105.1141732 52.8479921 47.2440945 -8095.4724409 46.7468110 47.2440945 -8086.7598425 39.2252244 47.2440945 -8079.2362205 30.5118110 47.2440945 -8073.1377953 20.8713071 47.2440945 -8068.6417323 10.5966417 47.2440945 -8065.8897638 0.0000000 47.2440945 -8064.9606299 -305.7866929 47.2440945 -9120.1259843 -219.1639370 47.2440945 -9035.1614173 -489.7606299 47.2440945 -8936.1496063 -214.6585433 47.2440945 -9036.2440945 -210.0394094 47.2440945 -9036.6062992 210.0394094 47.2440945 -9036.6062992 208.6614173 47.2440945 -9036.6062992 -208.6614173 47.2440945 -9036.6062992 -223.4446457 47.2440945 -9033.3897638 -225.3937008 47.2440945 -9032.1968504 -227.3952756 47.2440945 -9030.9685039 -230.9185433 47.2440945 -9027.9606299 -273.0542126 47.2440945 -8985.8228346 -489.7606299 47.2440945 -8769.1181102 -620.1240157 47.2440945 -8805.7874016 -632.1606299 47.2440945 -8791.6929134 -641.8444882 47.2440945 -8775.8897638 -648.9370079 47.2440945 -8758.7677165 -527.9590551 47.2440945 -8730.9173228 -653.2637795 47.2440945 -8740.7480315 -654.7177165 47.2440945 -8722.2716535 -530.9681102 47.2440945 -8727.3937008 -533.3893701 47.2440945 -8723.4448819 -535.1622047 47.2440945 -8719.1653543 -654.7177165 47.2440945 -8253.4173228 -536.2440945 47.2440945 -8714.6574803 -536.6074803 47.2440945 -8710.0393701 -536.6074803 47.2440945 -8708.6614173 -536.1590551 47.2440945 -8703.5354331 -534.8267717 47.2440945 -8698.5629921 -532.6515748 47.2440945 -8693.8976378 -529.6992126 47.2440945 -8689.6811024 -526.0598425 47.2440945 -8686.0433071 -521.8437008 47.2440945 -8683.0905512 -517.1791339 47.2440945 -8680.9133858 -512.2074803 47.2440945 -8679.5826772 -420.7625984 47.2440945 -8539.2244094 -413.2409449 47.2440945 -8546.7480315 -404.5275591 47.2440945 -8552.8464567 -394.8870079 47.2440945 -8557.3425197 -126.5329921 47.2440945 -8650.7952756 -150.7961417 47.2440945 -8626.5314961 -384.6124016 47.2440945 -8560.0984252 -170.4774409 47.2440945 -8598.4251969 -374.0157480 47.2440945 -8561.0236220 -426.8637795 47.2440945 -8530.5118110 -431.3590551 47.2440945 -8520.8700787 -434.1122047 47.2440945 -8510.5984252 -435.0393701 47.2440945 -8500.0000000 -434.1122047 47.2440945 -8489.4015748 -431.3590551 47.2440945 -8479.1299213 -426.8637795 47.2440945 -8469.4881890 -420.7625984 47.2440945 -8460.7755906 -413.2409449 47.2440945 -8453.2519685 -404.5275591 47.2440945 -8447.1535433 -394.8870079 47.2440945 -8442.6574803 -384.6124016 47.2440945 -8439.9055118 -534.6196850 47.2440945 -8317.4212598 -530.2133858 47.2440945 -8319.3188976 -525.5578740 47.2440945 -8320.4763780 -170.4774409 47.2440945 -8401.5748031 -150.7961417 47.2440945 -8373.4685039 -520.7763780 47.2440945 -8320.8661417 -126.5329921 47.2440945 -8349.2047244 -538.6606299 47.2440945 -8314.8346457 -542.2295276 47.2440945 -8311.6259843 -545.2318898 47.2440945 -8307.8858268 -547.5885827 47.2440945 -8303.7086614 -549.2377953 47.2440945 -8299.2007874 -550.1354331 47.2440945 -8294.4881890 -550.2578740 47.2440945 -8289.6929134 -549.6023622 47.2440945 -8284.9409449 -548.1854331 47.2440945 -8280.3582677 -508.6807087 47.2440945 -8200.0078740 -653.5023622 47.2440945 -8236.5157480 -649.8814961 47.2440945 -8219.9645669 -643.9291339 47.2440945 -8204.1023622 -588.5027559 47.2440945 -8105.2007874 -489.7606299 47.2440945 -8172.8661417 -457.4830709 47.2440945 -8126.5551181 -395.7700787 47.2440945 -8061.6889764 -518.0149606 47.2440945 -8016.4094488 -324.9596850 47.2440945 -8006.8976378 -438.9763780 47.2440945 -7944.2834646 -320.7609843 47.2440945 -8004.5944882 -316.2453150 47.2440945 -8003.0000000 -311.5315748 47.2440945 -8002.1574803 -306.7437008 47.2440945 -8002.0905512 -238.0594488 47.2440945 -8237.5551181 -10.5966417 47.2440945 -8245.1377953 -20.8713071 47.2440945 -8242.3818898 -30.5118110 47.2440945 -8237.8858268 -39.2252244 47.2440945 -8231.7874016 -225.3937008 47.2440945 -8227.4803150 -46.7468110 47.2440945 -8224.2637795 -202.1195669 47.2440945 -8208.9724409 -52.8479921 47.2440945 -8215.5511811 -57.3434646 47.2440945 -8205.9094488 -198.3441339 47.2440945 -8205.8543307 -60.0965354 47.2440945 -8195.6377953 -195.1354331 47.2440945 -8202.1574803 -192.5816142 47.2440945 -8197.9803150 -190.7529134 47.2440945 -8193.4409449 -61.0236220 47.2440945 -8185.0393701 -189.6995669 47.2440945 -8188.6614173 -189.4505512 47.2440945 -8183.7716535 -61.0236220 47.2440945 -8125.9842520 -190.0126378 47.2440945 -8178.9094488 -191.3704724 47.2440945 -8174.2047244 -193.4866929 47.2440945 -8169.7913386 -283.2355118 47.2440945 -8016.6220472 -60.0965354 47.2440945 -8115.3858268 -57.3434646 47.2440945 -8105.1141732 -52.8479921 47.2440945 -8095.4724409 -46.7468110 47.2440945 -8086.7598425 -39.2252244 47.2440945 -8079.2362205 -30.5118110 47.2440945 -8073.1377953 -20.8713071 47.2440945 -8068.6417323 -10.5966417 47.2440945 -8065.8897638 285.9833071 47.2440945 -8012.7007874 -285.9833071 47.2440945 -8012.7007874 289.3288583 47.2440945 -8009.2755906 -289.3288583 47.2440945 -8009.2755906 293.1840945 47.2440945 -8006.4370079 -293.1840945 47.2440945 -8006.4370079 297.4477165 47.2440945 -8004.2559055 -297.4477165 47.2440945 -8004.2559055 302.0075591 47.2440945 -8002.7952756 -302.0075591 47.2440945 -8002.7952756 306.7437008 47.2440945 -8002.0905512 19.8251417 47.2440945 -3961.5629921 -24.9719646 47.2440945 -3961.6062992 24.9719646 47.2440945 -3961.6062992 -19.8251417 47.2440945 -3961.5629921 14.7637795 47.2440945 -3960.6299213 -14.7637795 47.2440945 -3960.6299213 -401.0870079 47.2440945 -3963.9133858 -410.3523622 47.2440945 -3945.5275591 -30.0478622 47.2440945 -3960.7559055 -34.8986102 47.2440945 -3959.0314961 -39.3768110 47.2440945 -3956.4960630 -43.3464173 47.2440945 -3953.2204724 -46.6868110 47.2440945 -3949.3031496 -49.2964567 47.2440945 -3944.8661417 -551.1811024 47.2440945 -3717.9157480 -51.0961417 47.2440945 -3940.0472441 -52.0311024 47.2440945 -3934.9842520 -52.0729528 47.2440945 -3929.8374016 -51.2204331 47.2440945 -3924.7614173 -49.4994488 47.2440945 -3919.9106299 -46.9622835 47.2440945 -3915.4326772 -43.6860630 47.2440945 -3911.4629921 -39.7702756 47.2440945 -3908.1228346 -35.3339252 47.2440945 -3905.5129921 -30.5118110 47.2440945 -3903.7133858 -393.7007874 47.2440945 -3710.6299213 -385.1551181 47.2440945 -3709.8822835 -376.8691339 47.2440945 -3707.6618110 -369.0944882 47.2440945 -3704.0366142 -362.0675591 47.2440945 -3699.1165354 -30.5118110 47.2440945 -3419.1212598 -356.0017717 47.2440945 -3693.0503937 -351.0814567 47.2440945 -3686.0236220 -347.4561024 47.2440945 -3678.2492126 -345.2359055 47.2440945 -3669.9629921 -344.4881890 47.2440945 -3661.4173228 -345.2359055 47.2440945 -3652.8720472 -347.4561024 47.2440945 -3644.5858268 -351.0814567 47.2440945 -3636.8110236 -356.0017717 47.2440945 -3629.7838583 -362.0675591 47.2440945 -3623.7181102 -369.0944882 47.2440945 -3618.7984252 -376.8691339 47.2440945 -3615.1732283 -385.1551181 47.2440945 -3612.9523622 -393.7007874 47.2440945 -3612.2047244 19.5552559 47.2440945 -3361.2976378 -14.7637795 47.2440945 -3362.2043307 14.7637795 47.2440945 -3362.2043307 -19.8251417 47.2440945 -3361.2700787 24.4308189 47.2440945 -3361.1901575 -24.9719646 47.2440945 -3361.2279528 551.1811024 47.2440945 -3717.9157480 402.2464567 47.2440945 -3709.8822835 393.7007874 47.2440945 -3710.6299213 410.5326772 47.2440945 -3707.6618110 418.3070866 47.2440945 -3704.0366142 425.3338583 47.2440945 -3699.1165354 431.4000000 47.2440945 -3693.0503937 436.3200787 47.2440945 -3686.0236220 439.9456693 47.2440945 -3678.2492126 442.1657480 47.2440945 -3669.9629921 551.1811024 47.2440945 -3170.0318898 442.9133858 47.2440945 -3661.4173228 442.1657480 47.2440945 -3652.8720472 439.9456693 47.2440945 -3644.5858268 436.3200787 47.2440945 -3636.8110236 431.4000000 47.2440945 -3629.7838583 425.3338583 47.2440945 -3623.7181102 418.3070866 47.2440945 -3618.7984252 410.5326772 47.2440945 -3615.1732283 402.2464567 47.2440945 -3612.9523622 393.7007874 47.2440945 -3612.2047244 35.0885039 47.2440945 -3417.4374016 30.5118110 47.2440945 -3419.1212598 39.3255827 47.2440945 -3415.0228346 43.1074409 47.2440945 -3411.9444882 46.3309843 47.2440945 -3408.2842520 48.9081890 47.2440945 -3404.1444882 50.7688189 47.2440945 -3399.6362205 51.8621260 47.2440945 -3394.8838583 52.1582677 47.2440945 -3390.0161417 51.6491732 47.2440945 -3385.1665354 50.3487008 47.2440945 -3380.4661417 48.2923622 47.2440945 -3376.0440945 45.5362205 47.2440945 -3372.0208661 42.1554724 47.2440945 -3368.5059055 38.2423465 47.2440945 -3365.5952756 33.9035591 47.2440945 -3363.3692913 29.2574724 47.2440945 -3361.8874016 8.5456772 47.2440945 -3233.5043307 0.0000000 47.2440945 -3234.2515748 16.8317008 47.2440945 -3231.2838583 24.6062992 47.2440945 -3227.6590551 31.6332480 47.2440945 -3222.7385827 37.6990354 47.2440945 -3216.6728346 42.6193701 47.2440945 -3209.6452756 46.2447244 47.2440945 -3201.8708661 48.4649606 47.2440945 -3193.5850394 49.2125984 47.2440945 -3185.0389764 48.4649606 47.2440945 -3176.4944882 46.2447244 47.2440945 -3168.2078740 236.2204724 47.2440945 -2988.1889764 42.6193701 47.2440945 -3160.4326772 37.6990354 47.2440945 -3153.4059055 31.6332480 47.2440945 -3147.3401575 24.6062992 47.2440945 -3142.4200787 16.8317008 47.2440945 -3138.7944882 8.5456772 47.2440945 -3136.5744094 0.0000000 47.2440945 -3135.8263780 -442.1657480 47.2440945 -3669.9629921 -551.1811024 47.2440945 -3170.0318898 -439.9456693 47.2440945 -3678.2492126 -436.3200787 47.2440945 -3686.0236220 -431.4000000 47.2440945 -3693.0503937 -425.3338583 47.2440945 -3699.1165354 -418.3070866 47.2440945 -3704.0366142 -410.5326772 47.2440945 -3707.6618110 -402.2464567 47.2440945 -3709.8822835 -442.9133858 47.2440945 -3661.4173228 -442.1657480 47.2440945 -3652.8720472 -439.9456693 47.2440945 -3644.5858268 -436.3200787 47.2440945 -3636.8110236 -431.4000000 47.2440945 -3629.7838583 -425.3338583 47.2440945 -3623.7181102 -418.3070866 47.2440945 -3618.7984252 -410.5326772 47.2440945 -3615.1732283 -402.2464567 47.2440945 -3612.9523622 -35.3339252 47.2440945 -3417.3220472 -39.7702756 47.2440945 -3414.7118110 -43.6860630 47.2440945 -3411.3720472 -46.9622835 47.2440945 -3407.4019685 -49.4994488 47.2440945 -3402.9244094 -51.2204331 47.2440945 -3398.0728346 -52.0729528 47.2440945 -3392.9972441 -52.0311024 47.2440945 -3387.8503937 -51.0961417 47.2440945 -3382.7893701 -49.2964567 47.2440945 -3377.9669291 -46.6868110 47.2440945 -3373.5311024 -43.3464173 47.2440945 -3369.6145669 -39.3768110 47.2440945 -3366.3385827 -34.8986102 47.2440945 -3363.8015748 -30.0478622 47.2440945 -3362.0807087 -8.5456772 47.2440945 -3233.5043307 -16.8317008 47.2440945 -3231.2838583 -24.6062992 47.2440945 -3227.6590551 -31.6332480 47.2440945 -3222.7385827 -37.6990354 47.2440945 -3216.6728346 -42.6193701 47.2440945 -3209.6452756 -46.2447244 47.2440945 -3201.8708661 -48.4649606 47.2440945 -3193.5850394 -49.2125984 47.2440945 -3185.0389764 -48.4649606 47.2440945 -3176.4944882 -46.2447244 47.2440945 -3168.2078740 -236.2204724 47.2440945 -2988.1889764 -42.6193701 47.2440945 -3160.4326772 -37.6990354 47.2440945 -3153.4059055 -31.6332480 47.2440945 -3147.3401575 -24.6062992 47.2440945 -3142.4200787 -16.8317008 47.2440945 -3138.7944882 -8.5456772 47.2440945 -3136.5744094 -277.9223622 47.2440945 -7770.6220472 -188.9763780 47.2440945 -7181.1023622 -392.7365354 47.2440945 -4004.0748031 -188.4978740 47.2440945 -7186.5708661 -187.0769291 47.2440945 -7191.8740157 -184.7567323 47.2440945 -7196.8503937 -181.6076772 47.2440945 -7201.3464567 -177.7255906 47.2440945 -7205.2283465 -173.2283465 47.2440945 -7208.3779528 -168.2525984 47.2440945 -7210.6968504 -162.9495276 47.2440945 -7212.1220472 -157.4803150 47.2440945 -7212.5984252 157.4803150 47.2440945 -7212.5984252 -188.4978740 47.2440945 -7175.6338583 -187.0769291 47.2440945 -7170.3307087 -184.7567323 47.2440945 -7165.3543307 -181.6076772 47.2440945 -7160.8582677 -177.7255906 47.2440945 -7156.9763780 -173.2283465 47.2440945 -7153.8267717 -168.2525984 47.2440945 -7151.5039370 -162.9495276 47.2440945 -7150.0866142 -157.4803150 47.2440945 -7149.6062992 -187.0769291 47.2440945 -4711.5590551 -184.7567323 47.2440945 -4716.5354331 -181.6076772 47.2440945 -4721.0314961 -177.7255906 47.2440945 -4724.9133858 -173.2283465 47.2440945 -4728.0629921 -168.2525984 47.2440945 -4730.3858268 -162.9495276 47.2440945 -4731.8031496 -157.4803150 47.2440945 -4732.2834646 157.4803150 47.2440945 -4732.2834646 -188.4978740 47.2440945 -4706.2559055 -188.9763780 47.2440945 -4700.7874016 -188.4978740 47.2440945 -4695.3188976 -187.0769291 47.2440945 -4690.0157480 -184.7567323 47.2440945 -4685.0393701 -181.6076772 47.2440945 -4680.5433071 -177.7255906 47.2440945 -4676.6614173 -173.2283465 47.2440945 -4673.5118110 -168.2525984 47.2440945 -4671.1889764 -162.9495276 47.2440945 -4669.7716535 -157.4803150 47.2440945 -4669.2913386 392.7365354 47.2440945 -4004.0748031 395.1551181 47.2440945 -3983.6299213 -395.1551181 47.2440945 -3983.6299213 401.0870079 47.2440945 -3963.9133858 410.3523622 47.2440945 -3945.5275591 30.0478622 47.2440945 -3960.7559055 34.8986102 47.2440945 -3959.0314961 39.3768110 47.2440945 -3956.4960630 43.3464173 47.2440945 -3953.2204724 46.6868110 47.2440945 -3949.3031496 49.2964567 47.2440945 -3944.8661417 51.0961417 47.2440945 -3940.0472441 52.0311024 47.2440945 -3934.9842520 52.0729528 47.2440945 -3929.8374016 51.2204331 47.2440945 -3924.7614173 49.4994488 47.2440945 -3919.9106299 46.9622835 47.2440945 -3915.4326772 43.6860630 47.2440945 -3911.4629921 39.7702756 47.2440945 -3908.1228346 35.3339252 47.2440945 -3905.5129921 30.5118110 47.2440945 -3903.7133858 385.1551181 47.2440945 -3709.8822835 376.8691339 47.2440945 -3707.6618110 369.0944882 47.2440945 -3704.0366142 362.0675591 47.2440945 -3699.1165354 356.0017717 47.2440945 -3693.0503937 351.0814567 47.2440945 -3686.0236220 347.4561024 47.2440945 -3678.2492126 345.2359055 47.2440945 -3669.9629921 344.4881890 47.2440945 -3661.4173228 345.2359055 47.2440945 -3652.8720472 347.4561024 47.2440945 -3644.5858268 351.0814567 47.2440945 -3636.8110236 356.0017717 47.2440945 -3629.7838583 362.0675591 47.2440945 -3623.7181102 369.0944882 47.2440945 -3618.7984252 376.8691339 47.2440945 -3615.1732283 385.1551181 47.2440945 -3612.9523622 203.5340157 47.2440945 -9036.1574803 -203.5340157 47.2440945 -9036.1574803 198.5624016 47.2440945 -9034.8267717 -198.5624016 47.2440945 -9034.8267717 193.8976378 47.2440945 -9032.6535433 -193.8976378 47.2440945 -9032.6535433 189.6814567 47.2440945 -9029.7007874 -189.6814567 47.2440945 -9029.7007874 186.0419685 47.2440945 -9026.0590551 -186.0419685 47.2440945 -9026.0590551 183.0898031 47.2440945 -9021.8425197 -183.0898031 47.2440945 -9021.8425197 180.9145669 47.2440945 -9017.1771654 -180.9145669 47.2440945 -9017.1771654 179.5824409 47.2440945 -9012.2086614 -179.5824409 47.2440945 -9012.2086614 179.1338583 47.2440945 -9007.0787402 20.8713071 47.2440945 -8931.3582677 30.5118110 47.2440945 -8926.8622047 39.2252244 47.2440945 -8920.7637795 179.1338583 47.2440945 -8822.1929134 10.5966417 47.2440945 -8934.1141732 46.7468110 47.2440945 -8913.2401575 52.8479921 47.2440945 -8904.5275591 57.3434646 47.2440945 -8894.8858268 60.0965354 47.2440945 -8884.6141732 61.0236220 47.2440945 -8874.0157480 61.0236220 47.2440945 -8814.9606299 179.5398425 47.2440945 -8817.3110236 180.7465748 47.2440945 -8812.5669291 60.0965354 47.2440945 -8804.3622047 182.7209055 47.2440945 -8808.0866142 185.4085433 47.2440945 -8803.9921260 57.3434646 47.2440945 -8794.0905512 188.7355906 47.2440945 -8800.4015748 189.2058661 47.2440945 -8800.0393701 192.6105512 47.2440945 -8797.4094488 225.3937008 47.2440945 -8772.7480315 52.8479921 47.2440945 -8784.4488189 46.7468110 47.2440945 -8775.7362205 39.2252244 47.2440945 -8768.2125984 232.3503543 47.2440945 -8767.5118110 30.5118110 47.2440945 -8762.1141732 20.8713071 47.2440945 -8757.6181102 10.5966417 47.2440945 -8754.8661417 225.3937008 47.2440945 -9154.4724409 -222.2701181 47.2440945 -9154.7165354 222.2701181 47.2440945 -9154.7165354 -225.3937008 47.2440945 -9154.4724409 240.7466142 47.2440945 -9153.2637795 -240.7466142 47.2440945 -9153.2637795 258.7681890 47.2440945 -9148.9370079 -258.7681890 47.2440945 -9148.9370079 275.8910236 47.2440945 -9141.8464567 -275.8910236 47.2440945 -9141.8464567 291.6935827 47.2440945 -9132.1614173 -291.6935827 47.2440945 -9132.1614173 305.7866929 47.2440945 -9120.1259843 214.6585433 47.2440945 -9036.2440945 440.0874016 47.2440945 -8985.8228346 219.1639370 47.2440945 -9035.1614173 223.4446457 47.2440945 -9033.3897638 225.3937008 47.2440945 -9032.1968504 227.3952756 47.2440945 -9030.9685039 230.9185433 47.2440945 -9027.9606299 273.0542126 47.2440945 -8985.8228346 620.1240157 47.2440945 -8805.7874016 527.9590551 47.2440945 -8730.9173228 632.1606299 47.2440945 -8791.6929134 641.8444882 47.2440945 -8775.8897638 648.9370079 47.2440945 -8758.7677165 653.2637795 47.2440945 -8740.7480315 654.7177165 47.2440945 -8722.2716535 530.9681102 47.2440945 -8727.3937008 533.3893701 47.2440945 -8723.4448819 535.1622047 47.2440945 -8719.1653543 654.7177165 47.2440945 -8253.4173228 536.2440945 47.2440945 -8714.6574803 536.6074803 47.2440945 -8710.0393701 536.6074803 47.2440945 -8708.6614173 536.1590551 47.2440945 -8703.5354331 534.8267717 47.2440945 -8698.5629921 532.6515748 47.2440945 -8693.8976378 529.6992126 47.2440945 -8689.6811024 526.0598425 47.2440945 -8686.0433071 521.8437008 47.2440945 -8683.0905512 517.1791339 47.2440945 -8680.9133858 512.2074803 47.2440945 -8679.5826772 507.0799213 47.2440945 -8679.1338583 420.7625984 47.2440945 -8539.2244094 413.2409449 47.2440945 -8546.7480315 404.5275591 47.2440945 -8552.8464567 394.8870079 47.2440945 -8557.3425197 126.5329921 47.2440945 -8650.7952756 150.7961417 47.2440945 -8626.5314961 384.6124016 47.2440945 -8560.0984252 170.4774409 47.2440945 -8598.4251969 426.8637795 47.2440945 -8530.5118110 431.3590551 47.2440945 -8520.8700787 434.1122047 47.2440945 -8510.5984252 435.0393701 47.2440945 -8500.0000000 434.1122047 47.2440945 -8489.4015748 431.3590551 47.2440945 -8479.1299213 426.8637795 47.2440945 -8469.4881890 420.7625984 47.2440945 -8460.7755906 413.2409449 47.2440945 -8453.2519685 404.5275591 47.2440945 -8447.1535433 394.8870079 47.2440945 -8442.6574803 384.6124016 47.2440945 -8439.9055118 374.0157480 47.2440945 -8438.9763780 534.6196850 47.2440945 -8317.4212598 530.2133858 47.2440945 -8319.3188976 525.5578740 47.2440945 -8320.4763780 170.4774409 47.2440945 -8401.5748031 152.5590551 47.2440945 -8375.9842520 150.7961417 47.2440945 -8373.4685039 126.5329921 47.2440945 -8349.2047244 538.6606299 47.2440945 -8314.8346457 542.2295276 47.2440945 -8311.6259843 545.2318898 47.2440945 -8307.8858268 547.5885827 47.2440945 -8303.7086614 549.2377953 47.2440945 -8299.2007874 550.1354331 47.2440945 -8294.4881890 550.2578740 47.2440945 -8289.6929134 549.6023622 47.2440945 -8284.9409449 548.1854331 47.2440945 -8280.3582677 508.6807087 47.2440945 -8200.0078740 653.5023622 47.2440945 -8236.5157480 649.8814961 47.2440945 -8219.9645669 643.9291339 47.2440945 -8204.1023622 588.5027559 47.2440945 -8105.2007874 457.4830709 47.2440945 -8126.5551181 395.7700787 47.2440945 -8061.6889764 518.0149606 47.2440945 -8016.4094488 324.9596850 47.2440945 -8006.8976378 434.2696850 47.2440945 -7939.9921260 320.7609843 47.2440945 -8004.5944882 316.2453150 47.2440945 -8003.0000000 311.5315748 47.2440945 -8002.1574803 -434.2696850 47.2440945 -7939.9921260 339.4095276 47.2440945 -7877.9055118 -339.4095276 47.2440945 -7877.9055118 323.8562992 47.2440945 -7867.7559055 -323.8562992 47.2440945 -7867.7559055 310.0861417 47.2440945 -7855.2952756 -310.0861417 47.2440945 -7855.2952756 298.4396850 47.2440945 -7840.8267717 -298.4396850 47.2440945 -7840.8267717 289.2047638 47.2440945 -7824.7165354 -289.2047638 47.2440945 -7824.7165354 282.6097638 47.2440945 -7807.3543307 -282.6097638 47.2440945 -7807.3543307 278.8177165 47.2440945 -7789.1732283 -278.8177165 47.2440945 -7789.1732283 277.9223622 47.2440945 -7770.6220472 181.6076772 47.2440945 -7201.3464567 184.7567323 47.2440945 -7196.8503937 187.0769291 47.2440945 -7191.8740157 188.4978740 47.2440945 -7186.5708661 188.9763780 47.2440945 -7181.1023622 177.7255906 47.2440945 -7205.2283465 173.2283465 47.2440945 -7208.3779528 168.2525984 47.2440945 -7210.6968504 162.9495276 47.2440945 -7212.1220472 188.4978740 47.2440945 -7175.6338583 187.0769291 47.2440945 -7170.3307087 184.7567323 47.2440945 -7165.3543307 181.6076772 47.2440945 -7160.8582677 177.7255906 47.2440945 -7156.9763780 173.2283465 47.2440945 -7153.8267717 168.2525984 47.2440945 -7151.5039370 162.9495276 47.2440945 -7150.0866142 157.4803150 47.2440945 -7149.6062992 187.0769291 47.2440945 -4711.5590551 184.7567323 47.2440945 -4716.5354331 181.6076772 47.2440945 -4721.0314961 177.7255906 47.2440945 -4724.9133858 173.2283465 47.2440945 -4728.0629921 168.2525984 47.2440945 -4730.3858268 162.9495276 47.2440945 -4731.8031496 188.4978740 47.2440945 -4706.2559055 188.9763780 47.2440945 -4700.7874016 188.4978740 47.2440945 -4695.3188976 187.0769291 47.2440945 -4690.0157480 184.7567323 47.2440945 -4685.0393701 181.6076772 47.2440945 -4680.5433071 177.7255906 47.2440945 -4676.6614173 173.2283465 47.2440945 -4673.5118110 168.2525984 47.2440945 -4671.1889764 162.9495276 47.2440945 -4669.7716535 157.4803150 47.2440945 -4669.2913386 152.5590551 47.2440945 -4731.8543307 -152.0111024 47.2440945 -4731.8031496 152.0111024 47.2440945 -4731.8031496 146.7080315 47.2440945 -4730.3858268 -146.7080315 47.2440945 -4730.3858268 141.7322835 47.2440945 -4728.0629921 -141.7322835 47.2440945 -4728.0629921 137.2350394 47.2440945 -4724.9133858 -137.2350394 47.2440945 -4724.9133858 133.3529528 47.2440945 -4721.0314961 -133.3529528 47.2440945 -4721.0314961 130.2039370 47.2440945 -4716.5354331 -130.2039370 47.2440945 -4716.5354331 127.8837008 47.2440945 -4711.5590551 -127.8837008 47.2440945 -4711.5590551 126.4627559 47.2440945 -4706.2559055 -126.4627559 47.2440945 -4706.2559055 125.9842520 47.2440945 -4700.7874016 -125.9842520 47.2440945 -4700.7874016 126.4627559 47.2440945 -4695.3188976 -126.4627559 47.2440945 -4695.3188976 127.8837008 47.2440945 -4690.0157480 -127.8837008 47.2440945 -4690.0157480 130.2039370 47.2440945 -4685.0393701 -130.2039370 47.2440945 -4685.0393701 133.3529528 47.2440945 -4680.5433071 -133.3529528 47.2440945 -4680.5433071 137.2350394 47.2440945 -4676.6614173 -137.2350394 47.2440945 -4676.6614173 141.7322835 47.2440945 -4673.5118110 -141.7322835 47.2440945 -4673.5118110 146.7080315 47.2440945 -4671.1889764 -146.7080315 47.2440945 -4671.1889764 152.0111024 47.2440945 -4669.7716535 -152.0111024 47.2440945 -4669.7716535 152.5590551 47.2440945 -4669.7204724 152.0111024 47.2440945 -7212.1220472 -152.0111024 47.2440945 -7212.1220472 146.7080315 47.2440945 -7210.6968504 -146.7080315 47.2440945 -7210.6968504 141.7322835 47.2440945 -7208.3779528 -141.7322835 47.2440945 -7208.3779528 137.2350394 47.2440945 -7205.2283465 -137.2350394 47.2440945 -7205.2283465 133.3529528 47.2440945 -7201.3464567 -133.3529528 47.2440945 -7201.3464567 130.2039370 47.2440945 -7196.8503937 -130.2039370 47.2440945 -7196.8503937 127.8837008 47.2440945 -7191.8740157 -127.8837008 47.2440945 -7191.8740157 126.4627559 47.2440945 -7186.5708661 -126.4627559 47.2440945 -7186.5708661 125.9842520 47.2440945 -7181.1023622 -125.9842520 47.2440945 -7181.1023622 126.4627559 47.2440945 -7175.6338583 -126.4627559 47.2440945 -7175.6338583 127.8837008 47.2440945 -7170.3307087 -127.8837008 47.2440945 -7170.3307087 130.2039370 47.2440945 -7165.3543307 -130.2039370 47.2440945 -7165.3543307 133.3529528 47.2440945 -7160.8582677 -133.3529528 47.2440945 -7160.8582677 137.2350394 47.2440945 -7156.9763780 -137.2350394 47.2440945 -7156.9763780 141.7322835 47.2440945 -7153.8267717 -141.7322835 47.2440945 -7153.8267717 146.7080315 47.2440945 -7151.5039370 -146.7080315 47.2440945 -7151.5039370 152.0111024 47.2440945 -7150.0866142 -152.0111024 47.2440945 -7150.0866142 152.5590551 47.2440945 -7150.0354331 - - - - - - - - - - -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.9993559 0.0000000 0.0358844 -0.9992292 -0.0000000 -0.0392549 -0.9993559 0.0000000 0.0358844 -0.9992292 -0.0000000 -0.0392549 -0.9897102 0.0000000 0.1430867 -0.9897102 0.0000000 0.1430867 -0.9590453 0.0000000 0.2832529 -0.9590453 0.0000000 0.2832529 -0.9069118 -0.0000003 0.4213206 -0.9069118 -0.0000003 0.4213206 -0.8304415 -0.0000003 0.5571059 -0.8304415 -0.0000003 0.5571059 -0.7309794 0.0000001 0.6823996 -0.7309794 0.0000001 0.6823996 -0.6739080 0.0000001 0.7388153 -0.6739080 0.0000001 0.7388153 -0.6126456 -0.0000000 0.7903577 -0.6126456 -0.0000000 0.7903577 -0.5470693 -0.0000000 0.8370873 -0.5470693 -0.0000000 0.8370873 -0.6106244 0.0000000 0.7919203 -0.6106244 0.0000000 0.7919203 -0.7272313 0.0000000 0.6863925 -0.7272313 0.0000000 0.6863925 -0.8258269 0.0000000 0.5639237 -0.8258269 0.0000000 0.5639237 -0.9040007 0.0000000 0.4275310 -0.9040007 0.0000000 0.4275310 -0.9598530 0.0000000 0.2805035 -0.9598530 0.0000000 0.2805035 -0.9919559 -0.0000000 0.1265843 -0.9919559 -0.0000000 0.1265843 -0.9999606 -0.0000001 0.0088766 -0.9999606 -0.0000001 0.0088766 -0.9972550 -0.0000001 -0.0740440 -0.9972550 -0.0000001 -0.0740440 -0.9790615 0.0000000 -0.2035646 -0.9790615 0.0000000 -0.2035646 -0.9288428 0.0000000 -0.3704742 -0.9288428 0.0000000 -0.3704742 -0.8725327 -0.0000002 -0.4885558 -0.8725327 -0.0000002 -0.4885558 -0.9618702 -0.0000002 -0.2735063 -0.9618702 -0.0000002 -0.2735063 -0.8660255 0.0000006 0.4999998 -0.8660255 0.0000006 0.4999998 -0.2588193 0.0000005 0.9659258 -0.2588193 0.0000005 0.9659258 0.2588194 0.0000000 0.9659257 0.2588194 0.0000000 0.9659257 0.8660256 0.0000000 0.4999997 0.8660256 0.0000000 0.4999997 0.9618702 0.0000004 -0.2735064 0.9618702 0.0000004 -0.2735064 0.8725326 0.0000004 -0.4885558 0.8725326 0.0000004 -0.4885558 0.9288428 0.0000000 -0.3704742 0.9288428 0.0000000 -0.3704742 0.9790615 0.0000000 -0.2035646 0.9790615 0.0000000 -0.2035646 0.9972550 0.0000001 -0.0740440 0.9972550 0.0000001 -0.0740440 0.9999606 0.0000001 0.0088766 0.9999606 0.0000001 0.0088766 0.9919559 -0.0000000 0.1265843 0.9919559 -0.0000000 0.1265843 0.9598530 0.0000000 0.2805035 0.9598530 0.0000000 0.2805035 0.9040007 0.0000000 0.4275310 0.9040007 0.0000000 0.4275310 0.8258269 0.0000000 0.5639237 0.8258269 0.0000000 0.5639237 0.7272313 -0.0000000 0.6863925 0.7272313 -0.0000000 0.6863925 0.6106244 -0.0000000 0.7919203 0.6106244 -0.0000000 0.7919203 0.5470693 -0.0000000 0.8370873 0.5470693 -0.0000000 0.8370873 0.6128062 -0.0000000 0.7902332 0.6128062 -0.0000000 0.7902332 0.7309712 0.0000000 0.6824083 0.7309712 0.0000000 0.6824083 0.8304416 0.0000000 0.5571057 0.8304416 0.0000000 0.5571057 0.9069119 0.0000000 0.4213203 0.9069119 0.0000000 0.4213203 0.9590453 0.0000000 0.2832529 0.9590453 0.0000000 0.2832529 0.9897102 0.0000000 0.1430867 0.9897102 0.0000000 0.1430867 0.9993559 0.0000000 0.0358844 0.9993559 0.0000000 0.0358844 0.9992292 0.0000000 -0.0392549 0.9992292 0.0000000 -0.0392549 0.9876865 0.0000000 -0.1564459 0.9876865 0.0000000 -0.1564459 0.9510488 -0.0000000 -0.3090406 0.9510488 -0.0000000 -0.3090406 0.8910061 0.0000000 -0.4539913 0.8910061 0.0000000 -0.4539913 0.8090360 0.0000000 -0.5877590 0.8090360 0.0000000 -0.5877590 0.7343383 -0.0000000 -0.6787836 0.7343383 -0.0000000 -0.6787836 0.7071088 -0.0000000 -0.7071047 0.7071088 -0.0000000 -0.7071047 0.6787857 0.0000000 -0.7343364 0.6787857 0.0000000 -0.7343364 0.5877877 0.0000000 -0.8090152 0.5877877 0.0000000 -0.8090152 0.4539720 0.0000000 -0.8910160 0.4539720 0.0000000 -0.8910160 0.3089749 0.0000000 -0.9510702 0.3089749 0.0000000 -0.9510702 0.1564505 -0.0000000 -0.9876858 0.1564505 -0.0000000 -0.9876858 0.0781953 -0.0000000 -0.9969381 0.0781953 -0.0000000 -0.9969381 0.0389837 0.0000000 -0.9992398 0.0389837 0.0000000 -0.9992398 -0.0389837 0.0000000 -0.9992398 -0.0389837 0.0000000 -0.9992398 -0.0781953 -0.0000000 -0.9969381 -0.0781953 -0.0000000 -0.9969381 -0.1564505 -0.0000000 -0.9876858 -0.1564505 -0.0000000 -0.9876858 -0.3089749 0.0000000 -0.9510702 -0.3089749 0.0000000 -0.9510702 -0.4539720 0.0000000 -0.8910160 -0.4539720 0.0000000 -0.8910160 -0.5877877 0.0000000 -0.8090152 -0.5877877 0.0000000 -0.8090152 -0.6787849 -0.0000003 -0.7343372 -0.6787849 -0.0000003 -0.7343372 -0.7071073 0.0000001 -0.7071062 -0.7071073 0.0000001 -0.7071062 -0.7343376 0.0000005 -0.6787844 -0.7343376 0.0000005 -0.6787844 -0.8090360 0.0000000 -0.5877590 -0.8090360 0.0000000 -0.5877590 -0.8910061 0.0000000 -0.4539913 -0.8910061 0.0000000 -0.4539913 -0.9510488 -0.0000000 -0.3090406 -0.9510488 -0.0000000 -0.3090406 -0.9876865 -0.0000000 -0.1564459 -0.9876865 -0.0000000 -0.1564459 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 1 4 2 4 5 2 5 6 2 6 7 2 7 8 8 7 9 8 9 10 8 10 11 8 11 12 13 14 15 14 13 16 14 16 17 17 16 18 18 16 19 19 16 20 20 16 21 21 16 22 21 22 23 23 22 24 24 22 25 25 22 26 25 26 27 27 26 28 28 26 29 29 26 30 30 26 31 30 31 32 32 31 33 33 31 34 34 31 35 35 31 36 36 31 37 38 39 40 39 38 41 41 38 42 40 39 43 40 43 44 40 44 45 40 45 46 40 46 47 40 47 48 48 47 49 48 49 50 48 50 51 48 51 52 48 52 53 53 52 54 53 54 55 53 55 56 53 56 57 57 56 58 57 58 59 57 59 60 57 60 61 57 61 62 63 64 65 64 63 66 64 66 67 64 67 68 68 67 69 69 67 70 70 67 71 70 71 72 72 71 73 73 71 74 74 71 75 76 77 78 77 76 79 79 76 80 80 76 81 81 76 82 78 77 83 78 83 84 78 84 85 78 85 86 78 86 87 78 87 88 78 88 89 89 88 90 90 88 91 90 91 92 92 91 93 93 91 94 93 94 95 95 94 96 96 94 97 97 94 98 98 94 99 98 99 100 98 100 101 98 101 102 102 101 103 102 103 65 65 103 104 65 104 105 65 105 106 65 106 107 65 107 108 65 108 63 63 108 109 109 108 110 110 108 111 110 111 112 110 112 113 110 113 114 114 113 115 114 115 116 114 116 117 118 119 120 119 118 121 121 118 122 121 122 123 124 119 125 119 124 120 125 119 126 125 126 127 125 127 128 125 128 129 125 129 130 125 130 131 125 131 132 132 131 133 132 133 134 132 134 135 132 135 136 132 136 137 132 137 138 132 138 139 132 139 140 132 140 141 132 141 142 132 142 143 143 142 144 144 142 145 145 142 146 146 142 147 147 142 148 147 148 149 149 148 150 150 148 151 151 148 152 152 148 153 153 148 154 154 148 155 155 148 156 156 148 157 157 148 158 158 148 159 159 148 160 160 148 161 161 148 162 163 164 165 164 163 166 166 163 167 167 163 168 168 163 169 169 163 170 170 163 171 171 163 172 172 163 173 172 173 174 174 173 175 175 173 176 176 173 177 177 173 178 178 173 179 179 173 180 180 173 181 181 173 182 182 173 183 183 173 184 183 184 185 184 173 186 186 173 187 187 173 188 188 173 189 189 173 190 190 173 191 191 173 192 192 173 193 193 173 194 194 173 195 195 173 196 196 173 197 197 173 198 198 173 199 199 173 200 200 173 201 201 173 202 201 202 203 202 173 204 204 173 205 205 173 206 206 173 207 207 173 208 208 173 209 209 173 210 210 173 211 211 173 212 212 173 213 213 173 214 213 214 215 215 214 216 216 214 217 217 214 218 218 214 219 219 214 220 220 214 221 132 222 223 222 132 224 224 132 225 225 132 226 226 132 227 227 132 228 228 132 229 229 132 230 230 132 143 223 222 231 223 231 232 223 232 233 223 233 234 223 234 235 223 235 236 223 236 237 223 237 238 223 238 239 223 239 162 223 162 240 240 162 148 223 240 241 223 241 242 223 242 243 223 243 244 223 244 245 223 245 246 223 246 247 223 247 248 223 248 249 223 249 250 223 250 251 223 251 252 223 252 253 223 253 254 223 254 255 223 255 201 223 201 256 256 201 203 223 256 257 223 257 258 223 258 259 223 259 260 223 260 261 223 261 262 223 262 263 223 263 264 223 264 265 223 265 266 223 266 267 267 266 268 267 268 269 267 269 270 267 270 271 267 271 272 267 272 273 267 273 221 267 221 214 274 275 276 275 274 277 277 274 201 201 274 200 278 279 280 279 278 281 281 278 282 282 278 283 283 278 284 284 278 285 285 278 286 286 278 287 287 278 288 288 278 289 289 278 290 280 279 291 280 291 292 280 292 293 280 293 294 280 294 295 280 295 296 280 296 297 280 297 298 280 298 299 280 299 300 300 299 301 301 299 302 302 299 303 303 299 304 304 299 305 305 299 306 306 299 307 307 299 308 280 300 309 280 309 310 280 310 311 280 311 312 280 312 313 280 313 314 280 314 315 280 315 316 280 316 317 280 317 318 280 318 319 280 319 320 280 320 321 280 321 322 322 321 323 322 323 124 124 323 120 120 323 324 120 324 325 325 324 326 326 324 327 327 324 328 328 324 329 329 324 330 330 324 163 330 163 331 331 163 332 332 163 333 333 163 334 334 163 335 335 163 336 336 163 337 337 163 338 338 163 339 339 163 340 340 163 165 340 165 341 340 341 342 340 342 343 340 343 344 340 344 185 185 344 345 185 345 346 185 346 347 185 347 348 185 348 349 185 349 350 185 350 351 185 351 352 185 352 353 185 353 354 185 354 355 185 355 356 185 356 357 185 357 183 358 359 360 359 358 361 361 358 362 361 362 363 363 362 364 363 364 365 365 364 366 365 366 367 367 366 368 367 368 369 369 368 370 369 370 371 371 370 372 371 372 373 373 372 374 373 374 375 375 374 376 375 376 76 76 376 377 377 376 378 378 376 379 379 376 380 76 377 381 76 381 82 379 380 382 382 380 383 383 380 384 384 380 385 385 380 386 386 380 387 387 380 388 387 388 389 387 389 390 390 389 391 390 391 392 390 392 393 393 392 394 393 394 395 393 395 396 393 396 397 393 397 398 398 397 399 399 397 400 400 397 401 400 401 402 402 401 107 402 107 403 403 107 404 404 107 106 405 406 407 406 405 408 408 405 409 409 405 410 410 405 411 411 405 412 411 412 413 413 412 414 414 412 415 415 412 12 415 12 11 415 11 416 415 416 417 417 416 418 418 416 419 419 416 420 420 416 421 421 416 422 421 422 423 423 422 424 423 424 425 425 424 426 426 424 427 426 427 428 428 427 429 428 429 430 428 430 431 428 431 432 432 431 433 432 433 434 432 434 435 435 434 436 435 436 437 435 437 438 435 438 439 435 439 440 440 439 441 441 439 442 442 439 443 443 439 444 444 439 445 445 439 446 446 439 447 447 439 448 449 450 451 450 449 452 452 449 453 452 453 454 454 453 455 454 455 456 456 455 457 456 457 458 458 457 459 458 459 460 460 459 461 460 461 462 462 461 463 463 461 464 464 461 465 462 463 466 464 465 467 467 465 468 468 465 469 469 465 470 470 465 471 471 465 472 472 465 473 472 473 474 472 474 475 472 475 476 472 476 477 477 476 478 477 478 479 477 479 480 480 479 481 481 479 482 482 479 483 482 483 484 484 483 485 485 483 486 486 483 487 487 483 488 488 483 489 489 483 490 490 483 491 491 483 492 492 483 493 493 483 494 494 483 495 495 483 117 117 483 496 117 496 497 117 497 498 117 498 499 117 499 114 114 499 500 500 499 501 501 499 502 501 502 503 503 502 42 503 42 38 496 483 504 504 483 505 505 483 506 506 483 507 507 483 508 508 483 509 509 483 510 510 483 511 511 483 512 512 483 513 513 483 514 514 483 515 515 483 516 516 483 62 62 483 517 62 517 518 62 518 57 57 518 519 57 519 520 520 519 521 521 519 3 521 3 522 522 3 0 517 483 523 523 483 524 524 483 525 525 483 526 526 483 527 527 483 528 528 483 529 529 483 530 530 483 531 531 483 532 532 483 533 532 533 534 532 534 535 532 535 536 532 536 537 537 536 538 538 536 539 539 536 540 539 540 541 541 540 542 541 542 543 543 542 544 544 542 545 545 542 546 546 542 547 417 548 415 548 417 549 548 549 550 548 550 551 548 551 552 548 552 553 553 552 554 553 554 555 555 554 556 555 556 557 555 557 558 558 557 559 558 559 560 560 559 561 561 559 562 562 559 563 562 563 564 564 563 565 565 563 566 565 566 567 567 566 568 568 566 569 569 566 570 570 566 571 570 571 572 570 572 573 570 573 574 570 574 575 570 575 576 570 576 577 570 577 578 570 578 448 570 448 439 570 439 579 570 579 580 580 579 581 580 581 582 582 581 583 582 583 584 584 583 585 584 585 586 586 585 587 586 587 588 588 587 546 588 546 547 462 589 590 589 462 591 591 462 466 591 466 360 591 360 359 590 589 592 590 592 593 590 593 594 590 594 595 590 595 596 590 596 597 590 597 598 590 598 599 599 598 600 600 598 601 601 598 602 602 598 603 603 598 604 604 598 605 604 605 606 604 606 607 604 607 608 608 607 609 608 609 610 608 610 611 608 611 612 608 612 613 608 613 614 608 614 615 608 615 616 608 616 617 608 617 618 608 618 619 608 619 75 608 75 620 620 75 621 621 75 622 622 75 623 623 75 71 623 71 624 623 624 625 623 625 626 626 625 627 626 627 628 628 627 13 628 13 15 608 620 629 608 629 630 608 630 631 608 631 632 608 632 633 608 633 634 608 634 635 608 635 636 608 636 637 608 637 638 608 638 639 608 639 640 608 640 37 608 37 641 641 37 642 642 37 31 642 31 643 643 31 644 643 644 645 643 645 646 643 646 647 647 646 648 647 648 407 647 407 406 608 641 649 608 649 650 608 650 651 608 651 652 608 652 653 608 653 654 608 654 655 608 655 656 608 656 657 608 657 658 608 658 659 659 658 660 660 658 661 661 658 662 662 658 663 662 663 664 662 664 665 665 664 666 665 666 667 667 666 668 667 668 669 667 669 670 667 670 547 667 547 542 667 542 671 667 671 672 667 672 673 673 672 674 673 674 675 675 674 676 675 676 677 677 676 678 677 678 679 679 678 680 679 680 681 681 680 682 681 682 683 683 682 684 683 684 685 685 684 686 685 686 278 278 686 687 687 686 688 688 686 689 689 686 690 690 686 691 691 686 320 278 687 692 278 692 693 278 693 694 278 694 695 278 695 290 691 320 696 696 320 697 697 320 698 698 320 699 699 320 700 700 320 701 701 320 702 702 320 703 703 320 704 704 320 299 299 320 705 299 705 706 299 706 707 299 707 708 299 708 709 299 709 710 299 710 711 299 711 308 705 320 712 712 320 713 713 320 714 714 320 715 715 320 716 716 320 717 717 320 718 718 320 719 719 320 720 720 320 721 721 320 722 722 320 319 723 307 308 307 723 724 724 723 725 725 723 726 725 726 727 727 726 728 727 728 729 729 728 730 729 730 731 731 730 732 731 732 733 733 732 734 733 734 735 735 734 736 735 736 737 737 736 738 737 738 739 739 738 740 739 740 741 741 740 742 741 742 743 743 742 744 743 744 745 745 744 746 745 746 747 747 746 748 747 748 749 749 748 750 749 750 751 751 750 752 751 752 753 753 752 754 753 754 755 755 754 756 755 756 757 757 756 722 757 722 758 758 722 319 759 289 290 289 759 760 760 759 761 760 761 762 762 761 763 762 763 764 764 763 765 764 765 766 766 765 767 766 767 768 768 767 769 768 769 770 770 769 771 770 771 772 772 771 773 772 773 774 774 773 775 774 775 776 776 775 777 776 777 778 778 777 779 778 779 780 780 779 781 780 781 782 782 781 783 782 783 784 784 783 785 784 785 786 786 785 787 786 787 788 788 787 789 788 789 790 790 789 791 790 791 792 792 791 704 792 704 793 793 704 299 794 795 796 795 794 797 798 794 796 794 798 799 800 798 801 798 800 799 802 801 803 801 802 800 804 803 805 803 804 802 806 805 807 805 806 804 808 806 807 806 808 809 810 809 808 809 810 811 812 811 810 811 812 813 814 813 812 813 814 815 816 815 814 815 816 817 818 817 816 817 818 819 820 818 821 818 820 819 822 821 823 821 822 820 824 823 825 823 824 822 826 825 827 825 826 824 828 827 829 827 828 826 830 829 831 829 830 828 832 831 833 831 832 830 834 832 833 832 834 835 836 834 837 834 836 835 838 837 839 837 838 836 840 838 839 838 840 841 842 841 840 841 842 843 844 843 842 843 844 845 846 844 847 844 846 845 848 847 849 847 848 846 850 849 851 849 850 848 852 850 851 850 852 853 854 852 855 852 854 853 856 855 857 855 856 854 858 857 859 857 858 856 860 859 861 859 860 858 862 860 861 860 862 863 864 862 865 862 864 863 866 865 867 865 866 864 868 866 867 866 868 869 870 869 868 869 870 871 872 871 870 871 872 873 874 873 872 873 874 875 876 875 874 875 876 877 878 876 879 876 878 877 880 879 881 879 880 878 882 881 883 881 882 880 884 883 885 883 884 882 886 885 887 885 886 884 888 886 887 886 888 889 890 888 891 888 890 889 892 891 893 891 892 890 894 893 895 893 894 892 896 894 895 894 896 897 897 898 899 898 897 896 900 898 901 898 900 899 900 902 903 902 900 901 903 904 905 904 903 902 905 906 907 906 905 904 907 908 909 908 907 906 909 910 911 910 909 908 911 912 913 912 911 910 913 914 915 914 913 912 915 916 917 916 915 914 917 918 919 918 917 916 919 920 921 920 919 918 921 922 923 922 921 920 923 924 925 924 923 922 925 926 927 926 925 924 928 927 926 927 928 929 929 930 931 930 929 928 932 930 933 930 932 931 934 933 935 933 934 932 936 934 935 934 936 937 938 936 939 936 938 937 797 939 795 939 797 938 940 941 942 941 940 943 941 943 944 944 943 945 945 943 946 946 943 947 947 943 948 948 943 949 948 949 950 950 949 951 951 949 952 952 949 953 952 953 954 954 953 955 955 953 956 956 953 957 957 953 958 957 958 959 959 958 960 960 958 961 961 958 962 962 958 963 963 958 964 965 966 967 966 965 968 968 965 969 967 966 970 967 970 971 967 971 972 967 972 973 967 973 974 967 974 975 975 974 976 975 976 977 975 977 978 975 978 979 975 979 980 980 979 981 980 981 982 980 982 983 980 983 984 984 983 985 984 985 986 984 986 987 984 987 988 984 988 989 990 991 992 991 990 993 991 993 994 991 994 995 995 994 996 996 994 997 997 994 998 997 998 999 999 998 1000 1000 998 1001 1001 998 1002 1003 1004 1005 1004 1003 1006 1006 1003 1007 1007 1003 1008 1008 1003 1009 1005 1004 1010 1005 1010 1011 1005 1011 1012 1005 1012 1013 1005 1013 1014 1005 1014 1015 1005 1015 1016 1016 1015 1017 1017 1015 1018 1017 1018 1019 1019 1018 1020 1020 1018 1021 1020 1021 1022 1022 1021 1023 1023 1021 1024 1024 1021 1025 1025 1021 1026 1025 1026 1027 1025 1027 1028 1025 1028 1029 1029 1028 1030 1029 1030 992 992 1030 1031 992 1031 1032 992 1032 1033 992 1033 1034 992 1034 1035 992 1035 990 990 1035 1036 1036 1035 1037 1037 1035 1038 1037 1038 1039 1037 1039 1040 1037 1040 1041 1041 1040 1042 1041 1042 1043 1041 1043 1044 1045 1046 1047 1046 1045 1048 1047 1046 1049 1047 1049 1050 1047 1050 1051 1047 1051 1052 1047 1052 1053 1053 1052 1054 1053 1054 1055 1053 1055 1056 1053 1056 1057 1058 1059 1060 1059 1058 1061 1061 1058 1062 1062 1058 1063 1063 1058 1064 1064 1058 1065 1064 1065 1066 1066 1065 1067 1067 1065 1068 1068 1065 1057 1068 1057 1056 1068 1056 1069 1068 1069 1070 1070 1069 1071 1071 1069 1072 1072 1069 1073 1073 1069 1074 1074 1069 1075 1074 1075 1076 1076 1075 1077 1076 1077 1078 1078 1077 1079 1079 1077 1080 1079 1080 1081 1081 1080 1082 1081 1082 1083 1081 1083 1084 1081 1084 1085 1085 1084 1086 1085 1086 1087 1085 1087 1088 1088 1087 1089 1088 1089 1090 1088 1090 1091 1088 1091 1092 1088 1092 1093 1093 1092 1094 1094 1092 1095 1095 1092 1096 1096 1092 1097 1097 1092 1098 1098 1092 1099 1099 1092 1100 1100 1092 1101 1102 1103 1104 1103 1102 1105 1105 1102 1106 1106 1102 1107 1106 1107 1108 1106 1108 1109 1104 1103 1110 1104 1110 1111 1104 1111 1112 1104 1112 1113 1104 1113 1114 1104 1114 1115 1104 1115 1116 1116 1115 1117 1117 1115 1118 1118 1115 1119 1119 1115 1120 1119 1120 1121 1121 1120 1122 1122 1120 1123 1122 1123 1124 1122 1124 1125 1122 1125 1126 1126 1125 1127 1126 1127 1128 1126 1128 1129 1126 1129 1130 1126 1130 1131 1126 1131 1132 1126 1132 1133 1126 1133 1134 1126 1134 1135 1126 1135 1136 1126 1136 1137 1126 1137 1002 1126 1002 1138 1138 1002 1139 1139 1002 1140 1140 1002 1141 1141 1002 998 1141 998 1142 1141 1142 1143 1141 1143 1144 1144 1143 1145 1144 1145 1146 1146 1145 940 1146 940 942 1126 1138 1147 1126 1147 1148 1126 1148 1149 1126 1149 1150 1126 1150 1151 1126 1151 1152 1126 1152 1153 1126 1153 1154 1126 1154 1155 1126 1155 1156 1126 1156 1157 1126 1157 1158 1126 1158 964 1126 964 1159 1159 964 1160 1160 964 958 1160 958 1161 1161 958 1162 1161 1162 1163 1161 1163 1164 1164 1163 1165 1164 1165 1060 1164 1060 1059 1126 1159 1166 1126 1166 1167 1126 1167 1168 1126 1168 1169 1126 1169 1170 1126 1170 1171 1126 1171 1172 1126 1172 1173 1126 1173 1174 1126 1174 1175 1126 1175 1176 1176 1175 1177 1177 1175 1178 1178 1175 1179 1179 1175 1180 1179 1180 1181 1179 1181 1182 1179 1182 1183 1183 1182 1184 1183 1184 1185 1185 1184 1186 1185 1186 1187 1185 1187 1188 1185 1188 1189 1070 1190 1068 1190 1070 1191 1190 1191 1192 1190 1192 1193 1190 1193 1194 1190 1194 1195 1195 1194 1196 1195 1196 1197 1197 1196 1198 1197 1198 1199 1197 1199 1200 1200 1199 1201 1200 1201 1202 1202 1201 1203 1203 1201 1204 1204 1201 1205 1204 1205 1206 1206 1205 1207 1207 1205 1208 1207 1208 1209 1209 1208 1210 1210 1208 1211 1211 1208 1212 1212 1208 1213 1212 1213 1214 1212 1214 1215 1212 1215 1216 1212 1216 1217 1212 1217 1218 1212 1218 1219 1212 1219 1220 1212 1220 1101 1212 1101 1092 1212 1092 1221 1212 1221 1222 1222 1221 1223 1222 1223 1224 1224 1223 1225 1224 1225 1226 1226 1225 1227 1226 1227 1228 1228 1227 1229 1228 1229 1230 1230 1229 1231 1230 1231 1189 1232 1233 1234 1233 1232 1235 1235 1232 1236 1235 1236 1237 1238 1233 1239 1233 1238 1234 1239 1233 1240 1239 1240 1241 1239 1241 1242 1239 1242 1243 1239 1243 1244 1239 1244 1245 1239 1245 1246 1246 1245 1247 1246 1247 1248 1246 1248 1249 1246 1249 1250 1246 1250 1251 1246 1251 1252 1246 1252 1253 1246 1253 1254 1246 1254 1255 1246 1255 1256 1246 1256 1257 1257 1256 1258 1258 1256 1259 1259 1256 1260 1260 1256 1261 1261 1256 1262 1261 1262 1263 1263 1262 1264 1264 1262 1265 1265 1262 1266 1266 1262 1267 1267 1262 1268 1268 1262 1269 1269 1262 1270 1270 1262 1271 1271 1262 1272 1272 1262 1273 1273 1262 1274 1274 1262 1275 1275 1262 1276 1277 1278 1279 1278 1277 1280 1280 1277 1281 1280 1281 1282 1283 1284 1285 1284 1283 1286 1286 1283 1287 1287 1283 1288 1288 1283 1289 1289 1283 1290 1290 1283 1291 1291 1283 1292 1292 1283 1293 1292 1293 1294 1294 1293 1295 1295 1293 1296 1296 1293 1297 1297 1293 1298 1298 1293 1299 1299 1293 1300 1300 1293 1301 1301 1293 1302 1302 1293 1303 1303 1293 1304 1303 1304 1305 1304 1293 1306 1306 1293 1307 1307 1293 1308 1308 1293 1309 1309 1293 1310 1310 1293 1311 1311 1293 1312 1312 1293 1313 1313 1293 1314 1314 1293 1315 1315 1293 1316 1316 1293 1317 1317 1293 1318 1318 1293 1319 1319 1293 1320 1320 1293 1281 1281 1293 1321 1281 1321 1322 1321 1293 1323 1323 1293 1324 1324 1293 1325 1325 1293 1326 1326 1293 1327 1327 1293 1328 1328 1293 1329 1329 1293 1330 1330 1293 1331 1331 1293 1332 1332 1293 1333 1332 1333 1334 1334 1333 1335 1335 1333 1336 1336 1333 1337 1337 1333 1338 1338 1333 1339 1339 1333 1340 1246 1341 1342 1341 1246 1343 1343 1246 1344 1344 1246 1345 1345 1246 1346 1346 1246 1347 1347 1246 1348 1348 1246 1349 1349 1246 1257 1342 1341 1350 1342 1350 1351 1342 1351 1352 1342 1352 1353 1342 1353 1354 1342 1354 1355 1342 1355 1356 1342 1356 1357 1342 1357 1358 1342 1358 1276 1342 1276 1359 1359 1276 1262 1342 1359 1360 1342 1360 1361 1342 1361 1362 1342 1362 1363 1342 1363 1364 1342 1364 1365 1342 1365 1366 1342 1366 1367 1342 1367 1368 1342 1368 1369 1342 1369 1370 1342 1370 1371 1342 1371 1372 1342 1372 1373 1342 1373 1282 1342 1282 1281 1342 1281 1374 1374 1281 1322 1342 1374 1375 1342 1375 1376 1342 1376 1377 1342 1377 1378 1342 1378 1379 1342 1379 1380 1342 1380 1381 1342 1381 1382 1342 1382 1383 1342 1383 1384 1342 1384 1385 1385 1384 1386 1385 1386 1387 1385 1387 1388 1385 1388 1389 1385 1389 1390 1385 1390 1391 1385 1391 1340 1385 1340 1333 1392 1393 1394 1393 1392 1395 1395 1392 1396 1396 1392 1397 1397 1392 1398 1398 1392 1399 1399 1392 1400 1400 1392 1401 1401 1392 1402 1402 1392 1403 1403 1392 1404 1394 1393 1405 1394 1405 1406 1394 1406 1407 1394 1407 1408 1394 1408 1409 1394 1409 1410 1394 1410 1411 1394 1411 1412 1394 1412 1413 1394 1413 1414 1414 1413 1415 1415 1413 1416 1416 1413 1417 1417 1413 1418 1418 1413 1419 1419 1413 1420 1420 1413 1421 1421 1413 1422 1394 1414 1423 1394 1423 1424 1394 1424 1425 1394 1425 1426 1394 1426 1427 1394 1427 1428 1394 1428 1429 1394 1429 1430 1394 1430 1431 1394 1431 1432 1394 1432 1433 1394 1433 1434 1394 1434 1435 1394 1435 1436 1436 1435 1437 1436 1437 1238 1238 1437 1234 1234 1437 1438 1234 1438 1439 1439 1438 1440 1440 1438 1441 1441 1438 1442 1442 1438 1443 1443 1438 1444 1444 1438 1283 1444 1283 1445 1445 1283 1446 1446 1283 1447 1447 1283 1448 1448 1283 1449 1449 1283 1450 1450 1283 1451 1451 1283 1452 1452 1283 1453 1453 1283 1454 1454 1283 1285 1454 1285 1455 1454 1455 1456 1454 1456 1457 1454 1457 1458 1454 1458 1305 1305 1458 1459 1305 1459 1460 1305 1460 1461 1305 1461 1462 1305 1462 1463 1305 1463 1464 1305 1464 1465 1305 1465 1466 1305 1466 1467 1305 1467 1468 1305 1468 1469 1305 1469 1470 1305 1470 1471 1305 1471 1303 1472 1109 1108 1109 1472 1473 1473 1472 1474 1473 1474 1475 1475 1474 1476 1475 1476 1477 1477 1476 1478 1477 1478 1479 1479 1478 1480 1479 1480 1481 1481 1480 1482 1481 1482 1483 1483 1482 1484 1483 1484 1485 1485 1484 1486 1485 1486 1487 1487 1486 1488 1487 1488 1003 1003 1488 1489 1489 1488 1490 1490 1488 1491 1491 1488 1492 1003 1489 1493 1003 1493 1009 1491 1492 1494 1494 1492 1495 1495 1492 1496 1496 1492 1497 1497 1492 1498 1498 1492 1499 1499 1492 1500 1499 1500 1501 1499 1501 1502 1502 1501 1503 1502 1503 1504 1502 1504 1505 1505 1504 1506 1505 1506 1507 1505 1507 1508 1505 1508 1509 1505 1509 1510 1510 1509 1511 1511 1509 1512 1512 1509 1513 1512 1513 1514 1514 1513 1034 1514 1034 1515 1515 1034 1516 1516 1034 1033 1517 1518 1519 1518 1517 1520 1520 1517 1521 1520 1521 1522 1522 1521 1523 1522 1523 1524 1524 1523 1525 1524 1525 1526 1526 1525 1527 1526 1527 1528 1528 1527 1529 1528 1529 1102 1102 1529 1530 1530 1529 1531 1102 1530 1107 1530 1531 1532 1532 1531 1533 1533 1531 1534 1534 1531 1535 1535 1531 1536 1536 1531 1537 1537 1531 1538 1537 1538 1539 1539 1538 1540 1539 1540 1541 1539 1541 1542 1539 1542 1543 1539 1543 1544 1539 1544 1545 1545 1544 1546 1546 1544 1547 1547 1544 1548 1547 1548 1549 1549 1548 1550 1550 1548 1551 1551 1548 1552 1552 1548 1553 1553 1548 1554 1554 1548 1555 1555 1548 1556 1556 1548 1557 1557 1548 1558 1558 1548 1559 1559 1548 1560 1560 1548 1044 1044 1548 1561 1044 1561 1562 1044 1562 1563 1044 1563 1564 1044 1564 1041 1041 1564 1565 1565 1564 1566 1566 1564 1567 1566 1567 1568 1568 1567 969 1568 969 965 1561 1548 1569 1569 1548 1570 1570 1548 1571 1571 1548 1572 1572 1548 1573 1573 1548 1574 1574 1548 1575 1575 1548 1576 1576 1548 1577 1577 1548 1578 1578 1548 1579 1579 1548 1580 1580 1548 1581 1581 1548 989 989 1548 1582 989 1582 1583 989 1583 984 984 1583 1584 984 1584 1585 1585 1584 1586 1586 1584 1587 1587 1584 1048 1587 1048 1588 1588 1048 1045 1582 1548 1589 1589 1548 1590 1590 1548 1591 1591 1548 1592 1592 1548 1593 1593 1548 1594 1594 1548 1595 1595 1548 1596 1596 1548 1597 1597 1548 1598 1598 1548 1599 1598 1599 1600 1598 1600 1601 1598 1601 1602 1598 1602 1603 1603 1602 1604 1604 1602 1605 1604 1605 1606 1606 1605 1607 1606 1607 1608 1608 1607 1609 1609 1607 1610 1610 1607 1231 1231 1607 1189 1189 1607 1185 1185 1607 1611 1611 1607 1612 1611 1612 1613 1613 1612 1614 1613 1614 1615 1615 1614 1616 1615 1616 1617 1617 1616 1618 1617 1618 1619 1619 1618 1620 1619 1620 1621 1621 1620 1622 1621 1622 1623 1623 1622 1624 1623 1624 1625 1625 1624 1626 1625 1626 1392 1392 1626 1627 1627 1626 1628 1628 1626 1629 1629 1626 1630 1630 1626 1631 1631 1626 1434 1392 1627 1632 1392 1632 1633 1392 1633 1634 1392 1634 1635 1392 1635 1404 1631 1434 1636 1636 1434 1637 1637 1434 1638 1638 1434 1639 1639 1434 1640 1640 1434 1641 1641 1434 1642 1642 1434 1643 1643 1434 1644 1644 1434 1413 1413 1434 1645 1413 1645 1646 1413 1646 1647 1413 1647 1648 1413 1648 1649 1413 1649 1650 1413 1650 1651 1413 1651 1422 1645 1434 1652 1652 1434 1653 1653 1434 1654 1654 1434 1655 1655 1434 1656 1656 1434 1657 1657 1434 1658 1658 1434 1659 1659 1434 1660 1660 1434 1661 1661 1434 1662 1662 1434 1433 1663 1421 1422 1421 1663 1664 1664 1663 1665 1664 1665 1666 1664 1666 1667 1667 1666 1668 1667 1668 1669 1669 1668 1670 1669 1670 1671 1671 1670 1672 1671 1672 1673 1673 1672 1674 1673 1674 1675 1675 1674 1676 1675 1676 1677 1677 1676 1678 1677 1678 1679 1679 1678 1680 1679 1680 1681 1681 1680 1682 1681 1682 1683 1683 1682 1684 1683 1684 1685 1685 1684 1686 1685 1686 1687 1687 1686 1688 1687 1688 1689 1689 1688 1690 1689 1690 1691 1691 1690 1692 1691 1692 1693 1693 1692 1694 1693 1694 1695 1695 1694 1696 1695 1696 1697 1697 1696 1698 1697 1698 1433 1433 1698 1662 1699 1403 1404 1403 1699 1700 1700 1699 1701 1700 1701 1702 1702 1701 1703 1702 1703 1704 1704 1703 1705 1704 1705 1706 1706 1705 1707 1706 1707 1708 1708 1707 1709 1708 1709 1710 1710 1709 1711 1710 1711 1712 1712 1711 1713 1712 1713 1714 1714 1713 1715 1714 1715 1716 1716 1715 1717 1716 1717 1718 1718 1717 1719 1718 1719 1720 1720 1719 1721 1720 1721 1722 1722 1721 1723 1722 1723 1724 1724 1723 1725 1724 1725 1726 1726 1725 1727 1726 1727 1728 1728 1727 1729 1728 1729 1730 1730 1729 1731 1730 1731 1732 1732 1731 1733 1732 1733 1413 1413 1733 1644

-
-
-
- - - - -60.0965354 263.7795276 -8884.6141732 -61.0236220 47.2440945 -8874.0157480 -60.0965354 47.2440945 -8884.6141732 -61.0236220 263.7795276 -8874.0157480 -57.3434646 263.7795276 -8894.8858268 -57.3434646 47.2440945 -8894.8858268 -61.0236220 47.2440945 -8814.9606299 -61.0236220 263.7795276 -8814.9606299 -52.8479921 47.2440945 -8904.5275591 -52.8479921 263.7795276 -8904.5275591 -60.0965354 263.7795276 -8804.3622047 -60.0965354 47.2440945 -8804.3622047 -46.7468110 263.7795276 -8913.2401575 -46.7468110 47.2440945 -8913.2401575 -57.3434646 47.2440945 -8794.0905512 -57.3434646 263.7795276 -8794.0905512 -39.2252244 263.7795276 -8920.7637795 -39.2252244 47.2440945 -8920.7637795 -52.8479921 263.7795276 -8784.4488189 -52.8479921 47.2440945 -8784.4488189 -30.5118110 47.2440945 -8926.8622047 -30.5118110 263.7795276 -8926.8622047 -46.7468110 47.2440945 -8775.7362205 -46.7468110 263.7795276 -8775.7362205 -20.8713071 47.2440945 -8931.3582677 -20.8713071 263.7795276 -8931.3582677 -39.2252244 47.2440945 -8768.2125984 -39.2252244 263.7795276 -8768.2125984 -10.5966417 47.2440945 -8934.1141732 -10.5966417 263.7795276 -8934.1141732 -30.5118110 263.7795276 -8762.1141732 -30.5118110 47.2440945 -8762.1141732 0.0000000 47.2440945 -8935.0393701 0.0000000 263.7795276 -8935.0393701 -20.8713071 263.7795276 -8757.6181102 -20.8713071 47.2440945 -8757.6181102 10.5966417 47.2440945 -8934.1141732 10.5966417 263.7795276 -8934.1141732 -10.5966417 263.7795276 -8754.8661417 -10.5966417 47.2440945 -8754.8661417 20.8713071 47.2440945 -8931.3582677 20.8713071 263.7795276 -8931.3582677 0.0000000 263.7795276 -8753.9370079 0.0000000 47.2440945 -8753.9370079 30.5118110 47.2440945 -8926.8622047 30.5118110 263.7795276 -8926.8622047 10.5966417 263.7795276 -8754.8661417 10.5966417 47.2440945 -8754.8661417 39.2252244 47.2440945 -8920.7637795 39.2252244 263.7795276 -8920.7637795 20.8713071 263.7795276 -8757.6181102 20.8713071 47.2440945 -8757.6181102 46.7468110 47.2440945 -8913.2401575 46.7468110 263.7795276 -8913.2401575 30.5118110 263.7795276 -8762.1141732 30.5118110 47.2440945 -8762.1141732 52.8479921 263.7795276 -8904.5275591 52.8479921 47.2440945 -8904.5275591 39.2252244 263.7795276 -8768.2125984 39.2252244 47.2440945 -8768.2125984 57.3434646 263.7795276 -8894.8858268 57.3434646 47.2440945 -8894.8858268 46.7468110 47.2440945 -8775.7362205 46.7468110 263.7795276 -8775.7362205 60.0965354 263.7795276 -8884.6141732 60.0965354 47.2440945 -8884.6141732 52.8479921 47.2440945 -8784.4488189 52.8479921 263.7795276 -8784.4488189 61.0236220 263.7795276 -8874.0157480 61.0236220 47.2440945 -8874.0157480 57.3434646 47.2440945 -8794.0905512 57.3434646 263.7795276 -8794.0905512 61.0236220 263.7795276 -8814.9606299 61.0236220 47.2440945 -8814.9606299 60.0965354 263.7795276 -8804.3622047 60.0965354 47.2440945 -8804.3622047 - - - - - - - - - - 0.9848028 0.0000000 0.1736763 0.9990485 0.0000000 0.0436121 0.9848028 0.0000000 0.1736763 0.9990485 0.0000000 0.0436121 0.9396884 0.0000000 0.3420319 0.9396884 0.0000000 0.3420319 0.9990485 0.0000000 -0.0436121 0.9990485 0.0000000 -0.0436121 0.8660264 0.0000000 0.4999982 0.8660264 0.0000000 0.4999982 0.9848028 0.0000000 -0.1736763 0.9848028 0.0000000 -0.1736763 0.7660742 0.0000000 0.6427521 0.7660742 0.0000000 0.6427521 0.9396884 0.0000000 -0.3420319 0.9396884 0.0000000 -0.3420319 0.6427576 0.0000000 0.7660696 0.6427576 0.0000000 0.7660696 0.8660264 0.0000000 -0.4999982 0.8660264 0.0000000 -0.4999982 0.4999305 0.0000000 0.8660655 0.4999305 0.0000000 0.8660655 0.7660742 0.0000000 -0.6427521 0.7660742 0.0000000 -0.6427521 0.3421652 -0.0000000 0.9396398 0.3421652 -0.0000000 0.9396398 0.6427576 -0.0000000 -0.7660696 0.6427576 -0.0000000 -0.7660696 0.1736870 -0.0000000 0.9848009 0.1736870 -0.0000000 0.9848009 0.4999305 -0.0000000 -0.8660655 0.4999305 -0.0000000 -0.8660655 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.3419973 -0.0000000 -0.9397009 0.3419973 -0.0000000 -0.9397009 -0.1736870 -0.0000000 0.9848009 -0.1736870 -0.0000000 0.9848009 0.1736925 -0.0000000 -0.9847999 0.1736925 -0.0000000 -0.9847999 -0.3421652 -0.0000000 0.9396398 -0.3421652 -0.0000000 0.9396398 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.4999305 0.0000000 0.8660655 -0.4999305 0.0000000 0.8660655 -0.1736925 -0.0000000 -0.9847999 -0.1736925 -0.0000000 -0.9847999 -0.6427576 0.0000000 0.7660696 -0.6427576 0.0000000 0.7660696 -0.3419973 -0.0000000 -0.9397009 -0.3419973 -0.0000000 -0.9397009 -0.7660742 0.0000000 0.6427521 -0.7660742 0.0000000 0.6427521 -0.4999305 -0.0000000 -0.8660655 -0.4999305 -0.0000000 -0.8660655 -0.8660264 0.0000000 0.4999982 -0.8660264 0.0000000 0.4999982 -0.6427576 -0.0000000 -0.7660696 -0.6427576 -0.0000000 -0.7660696 -0.9396884 0.0000000 0.3420319 -0.9396884 0.0000000 0.3420319 -0.7660742 0.0000000 -0.6427521 -0.7660742 0.0000000 -0.6427521 -0.9848028 0.0000000 0.1736763 -0.9848028 0.0000000 0.1736763 -0.8660264 0.0000000 -0.4999982 -0.8660264 0.0000000 -0.4999982 -0.9990485 0.0000000 0.0436121 -0.9990485 0.0000000 0.0436121 -0.9396884 0.0000000 -0.3420319 -0.9396884 0.0000000 -0.3420319 -0.9990485 0.0000000 -0.0436121 -0.9990485 0.0000000 -0.0436121 -0.9848028 0.0000000 -0.1736763 -0.9848028 0.0000000 -0.1736763 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 4 5 4 8 9 6 10 11 10 6 7 12 8 13 8 12 9 10 14 11 14 10 15 16 13 17 13 16 12 14 18 19 18 14 15 20 16 17 16 20 21 18 22 19 22 18 23 24 21 20 21 24 25 23 26 22 26 23 27 28 25 24 25 28 29 30 26 27 26 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 47 46 47 50 51 52 49 48 49 52 53 54 51 50 51 54 55 56 52 57 52 56 53 58 55 54 55 58 59 60 57 61 57 60 56 58 62 59 62 58 63 64 61 65 61 64 60 63 66 62 66 63 67 68 65 69 65 68 64 67 70 66 70 67 71 72 69 73 69 72 68 70 74 75 74 70 71 74 73 75 73 74 72

-
-
-
- - - - -170.4774409 263.7795276 -8598.4251969 -184.9788583 47.2440945 -8567.3267717 -170.4774409 47.2440945 -8598.4251969 -184.9788583 263.7795276 -8567.3267717 -193.8598031 263.7795276 -8534.1811024 -193.8598031 47.2440945 -8534.1811024 -150.7961417 263.7795276 -8626.5314961 -150.7961417 47.2440945 -8626.5314961 -196.8503937 47.2440945 -8500.0000000 -196.8503937 263.7795276 -8500.0000000 -126.5329921 47.2440945 -8650.7952756 -126.5329921 263.7795276 -8650.7952756 -193.8598031 47.2440945 -8465.8188976 -193.8598031 263.7795276 -8465.8188976 -98.4251969 47.2440945 -8670.4763780 -98.4251969 263.7795276 -8670.4763780 -184.9788583 47.2440945 -8432.6732283 -184.9788583 263.7795276 -8432.6732283 -67.3268110 47.2440945 -8684.9803150 -67.3268110 263.7795276 -8684.9803150 -170.4774409 263.7795276 -8401.5748031 -170.4774409 47.2440945 -8401.5748031 -34.1827126 47.2440945 -8693.8582677 -34.1827126 263.7795276 -8693.8582677 -150.7961417 47.2440945 -8373.4685039 -150.7961417 263.7795276 -8373.4685039 0.0000000 47.2440945 -8696.8503937 0.0000000 263.7795276 -8696.8503937 -126.5329921 263.7795276 -8349.2047244 -126.5329921 47.2440945 -8349.2047244 34.1827126 47.2440945 -8693.8582677 34.1827126 263.7795276 -8693.8582677 -98.4251969 263.7795276 -8329.5236220 -98.4251969 47.2440945 -8329.5236220 67.3268110 47.2440945 -8684.9803150 67.3268110 263.7795276 -8684.9803150 -67.3268110 263.7795276 -8315.0196850 -67.3268110 47.2440945 -8315.0196850 98.4251969 47.2440945 -8670.4763780 98.4251969 263.7795276 -8670.4763780 -34.1827126 263.7795276 -8306.1417323 -34.1827126 47.2440945 -8306.1417323 126.5329921 47.2440945 -8650.7952756 126.5329921 263.7795276 -8650.7952756 0.0000000 263.7795276 -8303.1496063 0.0000000 47.2440945 -8303.1496063 150.7961417 263.7795276 -8626.5314961 150.7961417 47.2440945 -8626.5314961 34.1827126 263.7795276 -8306.1417323 34.1827126 47.2440945 -8306.1417323 170.4774409 263.7795276 -8598.4251969 170.4774409 47.2440945 -8598.4251969 67.3268110 263.7795276 -8315.0196850 67.3268110 47.2440945 -8315.0196850 184.9788583 263.7795276 -8567.3267717 184.9788583 47.2440945 -8567.3267717 98.4251969 263.7795276 -8329.5236220 98.4251969 47.2440945 -8329.5236220 193.8598031 263.7795276 -8534.1811024 193.8598031 47.2440945 -8534.1811024 126.5329921 263.7795276 -8349.2047244 126.5329921 47.2440945 -8349.2047244 196.8503937 47.2440945 -8500.0000000 196.8503937 263.7795276 -8500.0000000 150.7961417 47.2440945 -8373.4685039 150.7961417 263.7795276 -8373.4685039 193.8598031 263.7795276 -8465.8188976 193.8598031 47.2440945 -8465.8188976 170.4774409 47.2440945 -8401.5748031 152.5590551 47.2440945 -8375.9842520 170.4774409 263.7795276 -8401.5748031 152.5590551 263.7795276 -8375.9842520 184.9788583 47.2440945 -8432.6732283 184.9788583 263.7795276 -8432.6732283 - - - - - - - - - - 0.8660200 -0.0000005 0.5000093 0.9396947 -0.0000001 0.3420145 0.8660200 -0.0000005 0.5000093 0.9396947 -0.0000001 0.3420145 0.9848084 -0.0000001 0.1736443 0.9848084 -0.0000001 0.1736443 0.7660416 -0.0000005 0.6427910 0.7660416 -0.0000005 0.6427910 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 -0.0000000 0.6427909 -0.0000000 0.7660417 0.6427909 -0.0000000 0.7660417 0.9848084 -0.0000001 -0.1736443 0.9848084 -0.0000001 -0.1736443 0.5000269 0.0000000 0.8660099 0.5000269 0.0000000 0.8660099 0.9396947 -0.0000001 -0.3420145 0.9396947 -0.0000001 -0.3420145 0.3420131 0.0000005 0.9396952 0.3420131 0.0000005 0.9396952 0.8660200 -0.0000005 -0.5000093 0.8660200 -0.0000005 -0.5000093 0.1736298 0.0000005 0.9848110 0.1736298 0.0000005 0.9848110 0.7660416 -0.0000005 -0.6427910 0.7660416 -0.0000005 -0.6427910 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.6427909 -0.0000000 -0.7660417 0.6427909 -0.0000000 -0.7660417 -0.1736298 0.0000005 0.9848110 -0.1736298 0.0000005 0.9848110 0.5000269 0.0000000 -0.8660099 0.5000269 0.0000000 -0.8660099 -0.3420130 0.0000005 0.9396952 -0.3420130 0.0000005 0.9396952 0.3420131 0.0000005 -0.9396952 0.3420131 0.0000005 -0.9396952 -0.5000268 -0.0000000 0.8660100 -0.5000268 -0.0000000 0.8660100 0.1736298 0.0000005 -0.9848110 0.1736298 0.0000005 -0.9848110 -0.6427909 -0.0000000 0.7660417 -0.6427909 -0.0000000 0.7660417 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.7660416 -0.0000005 0.6427910 -0.7660416 -0.0000005 0.6427910 -0.1736298 0.0000005 -0.9848110 -0.1736298 0.0000005 -0.9848110 -0.8660200 -0.0000005 0.5000093 -0.8660200 -0.0000005 0.5000093 -0.3420130 0.0000005 -0.9396952 -0.3420130 0.0000005 -0.9396952 -0.9396947 -0.0000001 0.3420145 -0.9396947 -0.0000001 0.3420145 -0.5000268 -0.0000000 -0.8660100 -0.5000268 -0.0000000 -0.8660100 -0.9848084 -0.0000001 0.1736443 -0.9848084 -0.0000001 0.1736443 -0.6427909 -0.0000000 -0.7660417 -0.6427909 -0.0000000 -0.7660417 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 -0.7660449 -0.0000000 -0.6427871 -0.7660449 -0.0000000 -0.6427871 -0.9848084 -0.0000001 -0.1736443 -0.9848084 -0.0000001 -0.1736443 -0.8660226 -0.0000000 -0.5000049 -0.8191454 -0.0000000 -0.5735860 -0.8660226 -0.0000000 -0.5000049 -0.8191454 -0.0000000 -0.5735860 -0.9396947 -0.0000001 -0.3420145 -0.9396947 -0.0000001 -0.3420145 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 6 2 7 2 6 0 4 8 5 8 4 9 10 6 7 6 10 11 9 12 8 12 9 13 14 11 10 11 14 15 13 16 12 16 13 17 18 15 14 15 18 19 16 20 21 20 16 17 22 19 18 19 22 23 20 24 21 24 20 25 26 23 22 23 26 27 24 28 29 28 24 25 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 42 47 42 46 43 48 45 44 45 48 49 50 47 51 47 50 46 52 49 48 49 52 53 54 51 55 51 54 50 56 53 52 53 56 57 58 55 59 55 58 54 60 57 56 57 60 61 62 58 59 58 62 63 60 64 61 64 60 65 66 62 67 62 66 63 64 68 69 68 64 70 70 64 65 70 65 71 72 66 67 66 72 73 70 72 68 72 70 73

-
-
-
- - - - -60.0965354 263.7795276 -8195.6377953 -61.0236220 47.2440945 -8185.0393701 -60.0965354 47.2440945 -8195.6377953 -61.0236220 263.7795276 -8185.0393701 -57.3434646 263.7795276 -8205.9094488 -57.3434646 47.2440945 -8205.9094488 -61.0236220 47.2440945 -8125.9842520 -61.0236220 263.7795276 -8125.9842520 -52.8479921 47.2440945 -8215.5511811 -52.8479921 263.7795276 -8215.5511811 -60.0965354 47.2440945 -8115.3858268 -60.0965354 263.7795276 -8115.3858268 -46.7468110 263.7795276 -8224.2637795 -46.7468110 47.2440945 -8224.2637795 -57.3434646 263.7795276 -8105.1141732 -57.3434646 47.2440945 -8105.1141732 -39.2252244 263.7795276 -8231.7874016 -39.2252244 47.2440945 -8231.7874016 -52.8479921 47.2440945 -8095.4724409 -52.8479921 263.7795276 -8095.4724409 -30.5118110 47.2440945 -8237.8858268 -30.5118110 263.7795276 -8237.8858268 -46.7468110 47.2440945 -8086.7598425 -46.7468110 263.7795276 -8086.7598425 -20.8713071 47.2440945 -8242.3818898 -20.8713071 263.7795276 -8242.3818898 -39.2252244 47.2440945 -8079.2362205 -39.2252244 263.7795276 -8079.2362205 -10.5966417 47.2440945 -8245.1377953 -10.5966417 263.7795276 -8245.1377953 -30.5118110 263.7795276 -8073.1377953 -30.5118110 47.2440945 -8073.1377953 0.0000000 47.2440945 -8246.0629921 0.0000000 263.7795276 -8246.0629921 -20.8713071 263.7795276 -8068.6417323 -20.8713071 47.2440945 -8068.6417323 10.5966417 47.2440945 -8245.1377953 10.5966417 263.7795276 -8245.1377953 -10.5966417 263.7795276 -8065.8897638 -10.5966417 47.2440945 -8065.8897638 20.8713071 47.2440945 -8242.3818898 20.8713071 263.7795276 -8242.3818898 0.0000000 263.7795276 -8064.9606299 0.0000000 47.2440945 -8064.9606299 30.5118110 47.2440945 -8237.8858268 30.5118110 263.7795276 -8237.8858268 10.5966417 263.7795276 -8065.8897638 10.5966417 47.2440945 -8065.8897638 39.2252244 47.2440945 -8231.7874016 39.2252244 263.7795276 -8231.7874016 20.8713071 263.7795276 -8068.6417323 20.8713071 47.2440945 -8068.6417323 46.7468110 263.7795276 -8224.2637795 46.7468110 47.2440945 -8224.2637795 30.5118110 263.7795276 -8073.1377953 30.5118110 47.2440945 -8073.1377953 52.8479921 263.7795276 -8215.5511811 52.8479921 47.2440945 -8215.5511811 39.2252244 263.7795276 -8079.2362205 39.2252244 47.2440945 -8079.2362205 57.3434646 263.7795276 -8205.9094488 57.3434646 47.2440945 -8205.9094488 46.7468110 47.2440945 -8086.7598425 46.7468110 263.7795276 -8086.7598425 60.0965354 263.7795276 -8195.6377953 60.0965354 47.2440945 -8195.6377953 52.8479921 47.2440945 -8095.4724409 52.8479921 263.7795276 -8095.4724409 61.0236220 263.7795276 -8185.0393701 61.0236220 47.2440945 -8185.0393701 57.3434646 47.2440945 -8105.1141732 57.3434646 263.7795276 -8105.1141732 61.0236220 47.2440945 -8125.9842520 61.0236220 263.7795276 -8125.9842520 60.0965354 47.2440945 -8115.3858268 60.0965354 263.7795276 -8115.3858268 - - - - - - - - - - 0.9848028 -0.0000000 0.1736763 0.9990485 -0.0000000 0.0436121 0.9848028 -0.0000000 0.1736763 0.9990485 -0.0000000 0.0436121 0.9396884 0.0000000 0.3420319 0.9396884 0.0000000 0.3420319 0.9990485 0.0000000 -0.0436121 0.9990485 0.0000000 -0.0436121 0.8660264 0.0000000 0.4999982 0.8660264 0.0000000 0.4999982 0.9848028 0.0000000 -0.1736763 0.9848028 0.0000000 -0.1736763 0.7660742 -0.0000000 0.6427521 0.7660742 -0.0000000 0.6427521 0.9396884 0.0000000 -0.3420319 0.9396884 0.0000000 -0.3420319 0.6427576 0.0000000 0.7660696 0.6427576 0.0000000 0.7660696 0.8660264 0.0000000 -0.4999982 0.8660264 0.0000000 -0.4999982 0.4999305 0.0000000 0.8660655 0.4999305 0.0000000 0.8660655 0.7660742 0.0000000 -0.6427521 0.7660742 0.0000000 -0.6427521 0.3421652 -0.0000000 0.9396398 0.3421652 -0.0000000 0.9396398 0.6427576 -0.0000000 -0.7660696 0.6427576 -0.0000000 -0.7660696 0.1736870 -0.0000000 0.9848009 0.1736870 -0.0000000 0.9848009 0.4999305 -0.0000000 -0.8660655 0.4999305 -0.0000000 -0.8660655 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.3419973 -0.0000000 -0.9397009 0.3419973 -0.0000000 -0.9397009 -0.1736870 -0.0000000 0.9848009 -0.1736870 -0.0000000 0.9848009 0.1736925 -0.0000000 -0.9847999 0.1736925 -0.0000000 -0.9847999 -0.3421652 -0.0000000 0.9396398 -0.3421652 -0.0000000 0.9396398 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.4999305 0.0000000 0.8660655 -0.4999305 0.0000000 0.8660655 -0.1736925 -0.0000000 -0.9847999 -0.1736925 -0.0000000 -0.9847999 -0.6427576 0.0000000 0.7660696 -0.6427576 0.0000000 0.7660696 -0.3419973 -0.0000000 -0.9397009 -0.3419973 -0.0000000 -0.9397009 -0.7660742 -0.0000000 0.6427521 -0.7660742 -0.0000000 0.6427521 -0.4999305 0.0000000 -0.8660655 -0.4999305 0.0000000 -0.8660655 -0.8660264 0.0000000 0.4999982 -0.8660264 0.0000000 0.4999982 -0.6427576 0.0000000 -0.7660696 -0.6427576 0.0000000 -0.7660696 -0.9396884 0.0000000 0.3420319 -0.9396884 0.0000000 0.3420319 -0.7660742 0.0000000 -0.6427521 -0.7660742 0.0000000 -0.6427521 -0.9848028 -0.0000000 0.1736763 -0.9848028 -0.0000000 0.1736763 -0.8660264 0.0000000 -0.4999982 -0.8660264 0.0000000 -0.4999982 -0.9990485 -0.0000000 0.0436121 -0.9990485 -0.0000000 0.0436121 -0.9396884 0.0000000 -0.3420319 -0.9396884 0.0000000 -0.3420319 -0.9990485 0.0000000 -0.0436121 -0.9990485 0.0000000 -0.0436121 -0.9848028 0.0000000 -0.1736763 -0.9848028 0.0000000 -0.1736763 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 4 5 4 8 9 7 10 6 10 7 11 12 8 13 8 12 9 10 14 15 14 10 11 16 13 17 13 16 12 14 18 15 18 14 19 20 16 17 16 20 21 19 22 18 22 19 23 24 21 20 21 24 25 23 26 22 26 23 27 28 25 24 25 28 29 30 26 27 26 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 47 46 47 50 51 52 48 53 48 52 49 54 51 50 51 54 55 56 53 57 53 56 52 58 55 54 55 58 59 60 57 61 57 60 56 58 62 59 62 58 63 64 61 65 61 64 60 63 66 62 66 63 67 68 65 69 65 68 64 67 70 66 70 67 71 72 68 69 68 72 73 71 74 70 74 71 75 75 72 74 72 75 73

-
-
-
- - - - 0.0000000 47.2440945 -3234.2515748 -8.5456772 263.7795276 -3233.5043307 -8.5456772 47.2440945 -3233.5043307 0.0000000 263.7795276 -3234.2515748 -16.8317008 263.7795276 -3231.2838583 -16.8317008 47.2440945 -3231.2838583 8.5456772 47.2440945 -3233.5043307 8.5456772 263.7795276 -3233.5043307 -24.6062992 263.7795276 -3227.6590551 -24.6062992 47.2440945 -3227.6590551 16.8317008 47.2440945 -3231.2838583 16.8317008 263.7795276 -3231.2838583 -31.6332480 263.7795276 -3222.7385827 -31.6332480 47.2440945 -3222.7385827 24.6062992 47.2440945 -3227.6590551 24.6062992 263.7795276 -3227.6590551 -37.6990354 263.7795276 -3216.6728346 -37.6990354 47.2440945 -3216.6728346 31.6332480 47.2440945 -3222.7385827 31.6332480 263.7795276 -3222.7385827 -42.6193701 47.2440945 -3209.6452756 -42.6193701 263.7795276 -3209.6452756 37.6990354 47.2440945 -3216.6728346 37.6990354 263.7795276 -3216.6728346 -46.2447244 47.2440945 -3201.8708661 -46.2447244 263.7795276 -3201.8708661 42.6193701 263.7795276 -3209.6452756 42.6193701 47.2440945 -3209.6452756 -48.4649606 47.2440945 -3193.5850394 -48.4649606 263.7795276 -3193.5850394 46.2447244 263.7795276 -3201.8708661 46.2447244 47.2440945 -3201.8708661 -49.2125984 263.7795276 -3185.0389764 -49.2125984 47.2440945 -3185.0389764 48.4649606 47.2440945 -3193.5850394 48.4649606 263.7795276 -3193.5850394 -48.4649606 47.2440945 -3176.4944882 -48.4649606 263.7795276 -3176.4944882 49.2125984 263.7795276 -3185.0389764 49.2125984 47.2440945 -3185.0389764 -46.2447244 47.2440945 -3168.2078740 -46.2447244 263.7795276 -3168.2078740 48.4649606 263.7795276 -3176.4944882 48.4649606 47.2440945 -3176.4944882 -42.6193701 47.2440945 -3160.4326772 -42.6193701 263.7795276 -3160.4326772 46.2447244 263.7795276 -3168.2078740 46.2447244 47.2440945 -3168.2078740 -37.6990354 263.7795276 -3153.4059055 -37.6990354 47.2440945 -3153.4059055 42.6193701 47.2440945 -3160.4326772 42.6193701 263.7795276 -3160.4326772 -31.6332480 263.7795276 -3147.3401575 -31.6332480 47.2440945 -3147.3401575 37.6990354 263.7795276 -3153.4059055 37.6990354 47.2440945 -3153.4059055 -24.6062992 263.7795276 -3142.4200787 -24.6062992 47.2440945 -3142.4200787 31.6332480 47.2440945 -3147.3401575 31.6332480 263.7795276 -3147.3401575 -16.8317008 263.7795276 -3138.7944882 -16.8317008 47.2440945 -3138.7944882 24.6062992 47.2440945 -3142.4200787 24.6062992 263.7795276 -3142.4200787 -8.5456772 263.7795276 -3136.5744094 -8.5456772 47.2440945 -3136.5744094 16.8317008 47.2440945 -3138.7944882 16.8317008 263.7795276 -3138.7944882 0.0000000 263.7795276 -3135.8263780 0.0000000 47.2440945 -3135.8263780 8.5456772 47.2440945 -3136.5744094 8.5456772 263.7795276 -3136.5744094 - - - - - - - - - - 0.0000000 0.0000000 1.0000000 0.1736382 0.0000000 0.9848095 0.1736382 0.0000000 0.9848095 0.0000000 0.0000000 1.0000000 0.3420054 0.0000000 0.9396980 0.3420054 0.0000000 0.9396980 -0.1736382 0.0000000 0.9848095 -0.1736382 0.0000000 0.9848095 0.4999810 0.0000000 0.8660364 0.4999810 0.0000000 0.8660364 -0.3420054 -0.0000000 0.9396980 -0.3420054 -0.0000000 0.9396980 0.6427918 -0.0000000 0.7660409 0.6427918 -0.0000000 0.7660409 -0.4999810 -0.0000000 0.8660364 -0.4999810 -0.0000000 0.8660364 0.7660561 -0.0000000 0.6427737 0.7660561 -0.0000000 0.6427737 -0.6427918 -0.0000000 0.7660409 -0.6427918 -0.0000000 0.7660409 0.8660330 0.0000000 0.4999868 0.8660330 0.0000000 0.4999868 -0.7660561 -0.0000000 0.6427737 -0.7660561 -0.0000000 0.6427737 0.9396900 0.0000000 0.3420274 0.9396900 0.0000000 0.3420274 -0.8660330 0.0000000 0.4999868 -0.8660330 0.0000000 0.4999868 0.9848077 0.0000000 0.1736486 0.9848077 0.0000000 0.1736486 -0.9396900 0.0000000 0.3420274 -0.9396900 0.0000000 0.3420274 1.0000000 0.0000000 -0.0000080 1.0000000 0.0000000 -0.0000080 -0.9848077 0.0000000 0.1736486 -0.9848077 0.0000000 0.1736486 0.9848083 0.0000000 -0.1736448 0.9848083 0.0000000 -0.1736448 -1.0000000 0.0000000 -0.0000080 -1.0000000 0.0000000 -0.0000080 0.9397007 0.0000000 -0.3419981 0.9397007 0.0000000 -0.3419981 -0.9848083 0.0000000 -0.1736448 -0.9848083 0.0000000 -0.1736448 0.8660295 0.0000000 -0.4999928 0.8660295 0.0000000 -0.4999928 -0.9397007 0.0000000 -0.3419981 -0.9397007 0.0000000 -0.3419981 0.7660392 -0.0000000 -0.6427938 0.7660392 -0.0000000 -0.6427938 -0.8660295 0.0000000 -0.4999928 -0.8660295 0.0000000 -0.4999928 0.6427774 -0.0000000 -0.7660530 0.6427774 -0.0000000 -0.7660530 -0.7660392 -0.0000000 -0.6427938 -0.7660392 -0.0000000 -0.6427938 0.5000007 0.0000000 -0.8660250 0.5000007 0.0000000 -0.8660250 -0.6427774 -0.0000000 -0.7660530 -0.6427774 -0.0000000 -0.7660530 0.3420237 0.0000000 -0.9396913 0.3420237 0.0000000 -0.9396913 -0.5000007 0.0000000 -0.8660250 -0.5000007 0.0000000 -0.8660250 0.1736614 0.0000000 -0.9848054 0.1736614 0.0000000 -0.9848054 -0.3420237 0.0000000 -0.9396913 -0.3420237 0.0000000 -0.9396913 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1736614 0.0000000 -0.9848054 -0.1736614 0.0000000 -0.9848054 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 16 20 17 20 16 21 22 19 18 19 22 23 21 24 20 24 21 25 26 22 27 22 26 23 25 28 24 28 25 29 30 27 31 27 30 26 28 32 33 32 28 29 34 30 31 30 34 35 32 36 33 36 32 37 38 34 39 34 38 35 37 40 36 40 37 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 44 48 49 48 44 45 50 46 47 46 50 51 52 49 48 49 52 53 54 50 55 50 54 51 56 53 52 53 56 57 54 58 59 58 54 55 60 57 56 57 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 71 69 68 69 71 70

-
-
-
- - - - 225.3937008 47.2440945 -8227.4803150 202.1196063 263.7795276 -8208.9724409 202.1196063 47.2440945 -8208.9724409 225.3937008 263.7795276 -8227.4803150 198.3441339 263.7795276 -8205.8543307 198.3441339 47.2440945 -8205.8543307 238.0594488 47.2440945 -8237.5551181 238.0594488 263.7795276 -8237.5551181 195.1354331 47.2440945 -8202.1574803 195.1354331 263.7795276 -8202.1574803 270.0010630 263.7795276 -8270.5433071 270.0010630 47.2440945 -8270.5433071 192.5816142 47.2440945 -8197.9803150 192.5816142 263.7795276 -8197.9803150 297.4078740 263.7795276 -8307.3897638 297.4078740 47.2440945 -8307.3897638 190.7529134 263.7795276 -8193.4409449 190.7529134 47.2440945 -8193.4409449 300.4010630 263.7795276 -8311.2637795 300.4010630 47.2440945 -8311.2637795 189.6995669 47.2440945 -8188.6614173 189.6995669 263.7795276 -8188.6614173 303.9934646 47.2440945 -8314.5905512 303.9934646 263.7795276 -8314.5905512 189.4505512 47.2440945 -8183.7716535 189.4505512 263.7795276 -8183.7716535 308.0862598 47.2440945 -8317.2795276 308.0862598 263.7795276 -8317.2795276 190.0126378 263.7795276 -8178.9094488 190.0126378 47.2440945 -8178.9094488 312.5669685 47.2440945 -8319.2519685 312.5669685 263.7795276 -8319.2519685 191.3704724 47.2440945 -8174.2047244 191.3704724 263.7795276 -8174.2047244 317.3123228 47.2440945 -8320.4606299 317.3123228 263.7795276 -8320.4606299 193.4866929 47.2440945 -8169.7913386 193.4866929 263.7795276 -8169.7913386 322.1918504 47.2440945 -8320.8661417 322.1918504 263.7795276 -8320.8661417 283.2355118 47.2440945 -8016.6220472 283.2355118 263.7795276 -8016.6220472 520.7763780 47.2440945 -8320.8661417 520.7763780 263.7795276 -8320.8661417 285.9833071 263.7795276 -8012.7007874 285.9833071 47.2440945 -8012.7007874 525.5578740 47.2440945 -8320.4763780 525.5578740 263.7795276 -8320.4763780 289.3288583 47.2440945 -8009.2755906 289.3288583 263.7795276 -8009.2755906 530.2133858 47.2440945 -8319.3188976 530.2133858 263.7795276 -8319.3188976 293.1840945 263.7795276 -8006.4370079 293.1840945 47.2440945 -8006.4370079 534.6196850 47.2440945 -8317.4212598 534.6196850 263.7795276 -8317.4212598 297.4477165 263.7795276 -8004.2559055 297.4477165 47.2440945 -8004.2559055 538.6606299 47.2440945 -8314.8346457 538.6606299 263.7795276 -8314.8346457 302.0075591 263.7795276 -8002.7952756 302.0075591 47.2440945 -8002.7952756 542.2295276 47.2440945 -8311.6259843 542.2295276 263.7795276 -8311.6259843 306.7437008 263.7795276 -8002.0905512 306.7437008 47.2440945 -8002.0905512 545.2318898 263.7795276 -8307.8858268 545.2318898 47.2440945 -8307.8858268 311.5315748 263.7795276 -8002.1574803 311.5315748 47.2440945 -8002.1574803 547.5885827 263.7795276 -8303.7086614 547.5885827 47.2440945 -8303.7086614 316.2453150 263.7795276 -8003.0000000 316.2453150 47.2440945 -8003.0000000 549.2377953 47.2440945 -8299.2007874 549.2377953 263.7795276 -8299.2007874 320.7609843 263.7795276 -8004.5944882 320.7609843 47.2440945 -8004.5944882 550.1354331 263.7795276 -8294.4881890 550.1354331 47.2440945 -8294.4881890 324.9596850 263.7795276 -8006.8976378 324.9596850 47.2440945 -8006.8976378 550.2578740 47.2440945 -8289.6929134 550.2578740 263.7795276 -8289.6929134 395.7700787 263.7795276 -8061.6889764 395.7700787 47.2440945 -8061.6889764 549.6023622 263.7795276 -8284.9409449 549.6023622 47.2440945 -8284.9409449 457.4830709 47.2440945 -8126.5551181 457.4830709 263.7795276 -8126.5551181 548.1854331 263.7795276 -8280.3582677 548.1854331 47.2440945 -8280.3582677 508.6807087 263.7795276 -8200.0078740 508.6807087 47.2440945 -8200.0078740 - - - - - - - - - - 0.6224616 0.0000000 0.7826504 0.6296257 0.0000000 0.7768987 0.6296257 0.0000000 0.7768987 0.6224616 0.0000000 0.7826504 0.6983922 0.0000000 0.7157152 0.6983922 0.0000000 0.7157152 0.6718724 0.0000000 0.7406669 0.6718724 0.0000000 0.7406669 0.8069751 0.0000000 0.5905855 0.8069751 0.0000000 0.5905855 0.7619958 0.0000006 0.6475820 0.7619958 0.0000006 0.6475820 0.8934387 -0.0000000 0.4491851 0.8934387 -0.0000000 0.4491851 0.7968814 0.0000006 0.6041357 0.7968814 0.0000006 0.6041357 0.9553537 -0.0000000 0.2954645 0.9553537 -0.0000000 0.2954645 0.7379293 0.0000000 0.6748780 0.7379293 0.0000000 0.6748780 0.9910487 -0.0000000 0.1335010 0.9910487 -0.0000000 0.1335010 0.6163935 0.0000000 0.7874383 0.6163935 0.0000000 0.7874383 0.9994847 -0.0000000 -0.0320997 0.9994847 -0.0000000 -0.0320997 0.4776530 0.0000000 0.8785486 0.4776530 0.0000000 0.8785486 0.9804553 -0.0000000 -0.1967421 0.9804553 -0.0000000 -0.1967421 0.3259731 0.0000000 0.9453790 0.3259731 0.0000000 0.9453790 0.9344643 0.0000000 -0.3560568 0.9344643 0.0000000 -0.3560568 0.1653942 0.0000000 0.9862275 0.1653942 0.0000000 0.9862275 0.8830062 -0.0000004 -0.4693613 0.8830062 -0.0000004 -0.4693613 0.0414452 -0.0000000 0.9991408 0.0414452 -0.0000000 0.9991408 0.8415649 -0.0000004 -0.5401561 0.8415649 -0.0000004 -0.5401561 -0.0406564 0.0000000 0.9991732 -0.0406564 0.0000000 0.9991732 0.7696970 0.0000000 -0.6384094 0.7696970 0.0000000 -0.6384094 -0.1617957 0.0000000 0.9868243 -0.1617957 0.0000000 0.9868243 0.6563086 0.0000000 -0.7544926 0.6563086 0.0000000 -0.7544926 -0.3194717 0.0000000 0.9475958 -0.3194717 0.0000000 0.9475958 0.5258908 0.0000000 -0.8505521 0.5258908 0.0000000 -0.8505521 -0.4688797 0.0000000 0.8832620 -0.4688797 0.0000000 0.8832620 0.3815064 0.0000000 -0.9243662 0.3815064 0.0000000 -0.9243662 -0.6058557 0.0000000 0.7955746 -0.6058557 0.0000000 0.7955746 0.2268629 -0.0000000 -0.9739267 0.2268629 -0.0000000 -0.9739267 -0.7265880 0.0000000 0.6870734 -0.7265880 0.0000000 0.6870734 0.0668179 -0.0000000 -0.9977652 0.0668179 -0.0000000 -0.9977652 -0.8281272 0.0000000 0.5605402 -0.8281272 0.0000000 0.5605402 -0.0952789 -0.0000000 -0.9954506 -0.0952789 -0.0000000 -0.9954506 -0.9080476 0.0000000 0.4188670 -0.9080476 0.0000000 0.4188670 -0.2552943 0.0000000 -0.9668634 -0.2552943 0.0000000 -0.9668634 -0.9639111 0.0000000 0.2662243 -0.9639111 0.0000000 0.2662243 -0.4082879 0.0000000 -0.9128532 -0.4082879 0.0000000 -0.9128532 -0.9942943 0.0000000 0.1066715 -0.9942943 0.0000000 0.1066715 -0.5481348 0.0000000 -0.8363900 -0.5481348 0.0000000 -0.8363900 -0.9984449 0.0000000 -0.0557471 -0.9984449 0.0000000 -0.0557471 -0.6701598 0.0000000 -0.7422169 -0.6701598 0.0000000 -0.7422169 -0.9762292 0.0000000 -0.2167406 -0.9762292 0.0000000 -0.2167406 -0.7746682 -0.0000000 -0.6323680 -0.7746682 -0.0000000 -0.6323680 -0.9292531 -0.0000005 -0.3694438 -0.9292531 -0.0000005 -0.3694438 -0.8613701 -0.0000005 -0.5079780 -0.8613701 -0.0000005 -0.5079780 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 4 8 5 8 4 9 10 6 11 6 10 7 9 12 8 12 9 13 14 11 15 11 14 10 12 16 17 16 12 13 18 15 19 15 18 14 16 20 17 20 16 21 22 18 19 18 22 23 21 24 20 24 21 25 26 23 22 23 26 27 24 28 29 28 24 25 30 27 26 27 30 31 28 32 29 32 28 33 34 31 30 31 34 35 33 36 32 36 33 37 38 35 34 35 38 39 37 40 36 40 37 41 42 39 38 39 42 43 40 44 45 44 40 41 46 43 42 43 46 47 44 48 45 48 44 49 50 47 46 47 50 51 52 48 49 48 52 53 54 51 50 51 54 55 56 53 52 53 56 57 58 55 54 55 58 59 60 57 56 57 60 61 62 59 58 59 62 63 64 61 60 61 64 65 66 62 67 62 66 63 68 65 64 65 68 69 70 67 71 67 70 66 72 69 68 69 72 73 74 70 71 70 74 75 76 73 72 73 76 77 78 74 79 74 78 75 80 77 76 77 80 81 82 78 79 78 82 83 84 81 80 81 84 85 86 82 87 82 86 83 84 88 85 88 84 89 90 87 91 87 90 86 88 92 93 92 88 89 92 91 93 91 92 90

-
-
-
- - - - 314.9606299 263.7795276 -8438.9763780 304.3639764 47.2440945 -8439.9055118 304.3639764 263.7795276 -8439.9055118 314.9606299 47.2440945 -8438.9763780 294.0893307 47.2440945 -8442.6574803 294.0893307 263.7795276 -8442.6574803 374.0157480 263.7795276 -8438.9763780 374.0157480 47.2440945 -8438.9763780 284.4488189 47.2440945 -8447.1535433 284.4488189 263.7795276 -8447.1535433 384.6124016 263.7795276 -8439.9055118 384.6124016 47.2440945 -8439.9055118 275.7353937 47.2440945 -8453.2519685 275.7353937 263.7795276 -8453.2519685 394.8870079 263.7795276 -8442.6574803 394.8870079 47.2440945 -8442.6574803 268.2138189 263.7795276 -8460.7755906 268.2138189 47.2440945 -8460.7755906 404.5275591 263.7795276 -8447.1535433 404.5275591 47.2440945 -8447.1535433 262.1125984 263.7795276 -8469.4881890 262.1125984 47.2440945 -8469.4881890 413.2409449 263.7795276 -8453.2519685 413.2409449 47.2440945 -8453.2519685 257.6172047 47.2440945 -8479.1299213 257.6172047 263.7795276 -8479.1299213 420.7625984 47.2440945 -8460.7755906 420.7625984 263.7795276 -8460.7755906 254.8640945 263.7795276 -8489.4015748 254.8640945 47.2440945 -8489.4015748 426.8637795 47.2440945 -8469.4881890 426.8637795 263.7795276 -8469.4881890 253.9370079 263.7795276 -8500.0000000 253.9370079 47.2440945 -8500.0000000 431.3590551 47.2440945 -8479.1299213 431.3590551 263.7795276 -8479.1299213 254.8640945 263.7795276 -8510.5984252 254.8640945 47.2440945 -8510.5984252 434.1122047 263.7795276 -8489.4015748 434.1122047 47.2440945 -8489.4015748 257.6172047 263.7795276 -8520.8700787 257.6172047 47.2440945 -8520.8700787 435.0393701 47.2440945 -8500.0000000 435.0393701 263.7795276 -8500.0000000 262.1125984 263.7795276 -8530.5118110 262.1125984 47.2440945 -8530.5118110 434.1122047 47.2440945 -8510.5984252 434.1122047 263.7795276 -8510.5984252 268.2138189 263.7795276 -8539.2244094 268.2138189 47.2440945 -8539.2244094 431.3590551 47.2440945 -8520.8700787 431.3590551 263.7795276 -8520.8700787 275.7353937 263.7795276 -8546.7480315 275.7353937 47.2440945 -8546.7480315 426.8637795 47.2440945 -8530.5118110 426.8637795 263.7795276 -8530.5118110 284.4488189 47.2440945 -8552.8464567 284.4488189 263.7795276 -8552.8464567 420.7625984 47.2440945 -8539.2244094 420.7625984 263.7795276 -8539.2244094 294.0893307 47.2440945 -8557.3425197 294.0893307 263.7795276 -8557.3425197 413.2409449 47.2440945 -8546.7480315 413.2409449 263.7795276 -8546.7480315 304.3639764 47.2440945 -8560.0984252 304.3639764 263.7795276 -8560.0984252 404.5275591 263.7795276 -8552.8464567 404.5275591 47.2440945 -8552.8464567 314.9606299 47.2440945 -8561.0236220 314.9606299 263.7795276 -8561.0236220 394.8870079 263.7795276 -8557.3425197 394.8870079 47.2440945 -8557.3425197 374.0157480 47.2440945 -8561.0236220 374.0157480 263.7795276 -8561.0236220 384.6124016 263.7795276 -8560.0984252 384.6124016 47.2440945 -8560.0984252 - - - - - - - - - - 0.0437151 0.0000000 -0.9990440 0.1736927 0.0000000 -0.9847999 0.1736927 0.0000000 -0.9847999 0.0437151 0.0000000 -0.9990440 0.3419974 0.0000000 -0.9397009 0.3419974 0.0000000 -0.9397009 -0.0437151 -0.0000000 -0.9990440 -0.0437151 -0.0000000 -0.9990440 0.4999301 0.0000000 -0.8660658 0.4999301 0.0000000 -0.8660658 -0.1736932 -0.0000000 -0.9847998 -0.1736932 -0.0000000 -0.9847998 0.6427577 0.0000000 -0.7660695 0.6427577 0.0000000 -0.7660695 -0.3419971 0.0000000 -0.9397010 -0.3419971 0.0000000 -0.9397010 0.7660735 -0.0000000 -0.6427530 0.7660735 -0.0000000 -0.6427530 -0.4999303 0.0000000 -0.8660656 -0.4999303 0.0000000 -0.8660656 0.8660272 -0.0000000 -0.4999969 0.8660272 -0.0000000 -0.4999969 -0.6427565 0.0000000 -0.7660705 -0.6427565 0.0000000 -0.7660705 0.9396888 -0.0000000 -0.3420307 0.9396888 -0.0000000 -0.3420307 -0.7660728 0.0000000 -0.6427538 -0.7660728 0.0000000 -0.6427538 0.9848025 0.0000000 -0.1736781 0.9848025 0.0000000 -0.1736781 -0.8660305 -0.0000000 -0.4999912 -0.8660305 -0.0000000 -0.4999912 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.9396899 -0.0000000 -0.3420277 -0.9396899 -0.0000000 -0.3420277 0.9848025 0.0000000 0.1736781 0.9848025 0.0000000 0.1736781 -0.9848015 0.0000000 -0.1736835 -0.9848015 0.0000000 -0.1736835 0.9396888 0.0000000 0.3420307 0.9396888 0.0000000 0.3420307 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.8660272 0.0000000 0.4999969 0.8660272 0.0000000 0.4999969 -0.9848015 0.0000000 0.1736835 -0.9848015 0.0000000 0.1736835 0.7660735 -0.0000000 0.6427530 0.7660735 -0.0000000 0.6427530 -0.9396899 0.0000000 0.3420277 -0.9396899 0.0000000 0.3420277 0.6427577 0.0000000 0.7660695 0.6427577 0.0000000 0.7660695 -0.8660305 -0.0000000 0.4999912 -0.8660305 -0.0000000 0.4999912 0.4999301 0.0000000 0.8660658 0.4999301 0.0000000 0.8660658 -0.7660728 -0.0000000 0.6427538 -0.7660728 -0.0000000 0.6427538 0.3421653 0.0000000 0.9396398 0.3421653 0.0000000 0.9396398 -0.6427565 0.0000000 0.7660705 -0.6427565 0.0000000 0.7660705 0.1736872 0.0000000 0.9848009 0.1736872 0.0000000 0.9848009 -0.4999303 0.0000000 0.8660656 -0.4999303 0.0000000 0.8660656 0.0435310 0.0000000 0.9990521 0.0435310 0.0000000 0.9990521 -0.3421650 0.0000000 0.9396399 -0.3421650 0.0000000 0.9396399 -0.0435310 0.0000000 0.9990521 -0.0435310 0.0000000 0.9990521 -0.1736877 0.0000000 0.9848008 -0.1736877 0.0000000 0.9848008 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 16 12 17 12 16 13 18 15 14 15 18 19 20 17 21 17 20 16 22 19 18 19 22 23 24 20 21 20 24 25 22 26 23 26 22 27 28 24 29 24 28 25 27 30 26 30 27 31 32 29 33 29 32 28 31 34 30 34 31 35 36 33 37 33 36 32 34 38 39 38 34 35 40 37 41 37 40 36 38 42 39 42 38 43 44 41 45 41 44 40 43 46 42 46 43 47 48 45 49 45 48 44 47 50 46 50 47 51 52 49 53 49 52 48 51 54 50 54 51 55 56 52 53 52 56 57 55 58 54 58 55 59 60 57 56 57 60 61 59 62 58 62 59 63 64 61 60 61 64 65 62 66 67 66 62 63 68 65 64 65 68 69 67 70 71 70 67 66 72 69 68 69 72 73 71 74 75 74 71 70 75 73 72 73 75 74

-
-
-
- - - - 267.5136614 263.7795276 -8732.3503937 297.4078740 47.2440945 -8692.6102362 267.5136614 47.2440945 -8732.3503937 297.4078740 263.7795276 -8692.6102362 232.3503543 47.2440945 -8767.5118110 232.3503543 263.7795276 -8767.5118110 300.4010630 263.7795276 -8688.7362205 300.4010630 47.2440945 -8688.7362205 225.3937008 47.2440945 -8772.7480315 225.3937008 263.7795276 -8772.7480315 303.9934646 263.7795276 -8685.4094488 303.9934646 47.2440945 -8685.4094488 192.6105512 47.2440945 -8797.4094488 192.6105512 263.7795276 -8797.4094488 308.0862598 263.7795276 -8682.7204724 308.0862598 47.2440945 -8682.7204724 189.2058661 47.2440945 -8800.0393701 189.2058661 263.7795276 -8800.0393701 312.5669685 263.7795276 -8680.7480315 312.5669685 47.2440945 -8680.7480315 188.7355906 47.2440945 -8800.4015748 188.7355906 263.7795276 -8800.4015748 317.3123228 263.7795276 -8679.5393701 317.3123228 47.2440945 -8679.5393701 185.4085433 47.2440945 -8803.9921260 185.4085433 263.7795276 -8803.9921260 322.1918504 263.7795276 -8679.1338583 322.1918504 47.2440945 -8679.1338583 182.7209055 263.7795276 -8808.0866142 182.7209055 47.2440945 -8808.0866142 507.0799213 263.7795276 -8679.1338583 507.0799213 47.2440945 -8679.1338583 180.7465748 263.7795276 -8812.5669291 180.7465748 47.2440945 -8812.5669291 512.2074803 263.7795276 -8679.5826772 512.2074803 47.2440945 -8679.5826772 179.5398425 263.7795276 -8817.3110236 179.5398425 47.2440945 -8817.3110236 517.1791339 263.7795276 -8680.9133858 517.1791339 47.2440945 -8680.9133858 179.1338583 263.7795276 -8822.1929134 179.1338583 47.2440945 -8822.1929134 521.8437008 263.7795276 -8683.0905512 521.8437008 47.2440945 -8683.0905512 179.1338583 263.7795276 -9007.0787402 179.1338583 47.2440945 -9007.0787402 526.0598425 263.7795276 -8686.0433071 526.0598425 47.2440945 -8686.0433071 179.5824409 47.2440945 -9012.2086614 179.5824409 263.7795276 -9012.2086614 529.6992126 263.7795276 -8689.6811024 529.6992126 47.2440945 -8689.6811024 180.9145669 263.7795276 -9017.1771654 180.9145669 47.2440945 -9017.1771654 532.6515748 263.7795276 -8693.8976378 532.6515748 47.2440945 -8693.8976378 183.0898031 263.7795276 -9021.8425197 183.0898031 47.2440945 -9021.8425197 534.8267717 47.2440945 -8698.5629921 534.8267717 263.7795276 -8698.5629921 186.0419685 263.7795276 -9026.0590551 186.0419685 47.2440945 -9026.0590551 536.1590551 47.2440945 -8703.5354331 536.1590551 263.7795276 -8703.5354331 189.6814567 47.2440945 -9029.7007874 189.6814567 263.7795276 -9029.7007874 536.6074803 263.7795276 -8708.6614173 536.6074803 47.2440945 -8708.6614173 193.8976378 47.2440945 -9032.6535433 193.8976378 263.7795276 -9032.6535433 536.6074803 47.2440945 -8710.0393701 536.6074803 263.7795276 -8710.0393701 198.5624016 47.2440945 -9034.8267717 198.5624016 263.7795276 -9034.8267717 536.2440945 47.2440945 -8714.6574803 536.2440945 263.7795276 -8714.6574803 203.5340157 47.2440945 -9036.1574803 203.5340157 263.7795276 -9036.1574803 535.1622047 47.2440945 -8719.1653543 535.1622047 263.7795276 -8719.1653543 208.6614173 47.2440945 -9036.6062992 208.6614173 263.7795276 -9036.6062992 533.3893701 47.2440945 -8723.4448819 533.3893701 263.7795276 -8723.4448819 210.0394094 47.2440945 -9036.6062992 210.0394094 263.7795276 -9036.6062992 530.9681102 47.2440945 -8727.3937008 530.9681102 263.7795276 -8727.3937008 214.6585433 47.2440945 -9036.2440945 214.6585433 263.7795276 -9036.2440945 527.9590551 47.2440945 -8730.9173228 527.9590551 263.7795276 -8730.9173228 219.1639370 47.2440945 -9035.1614173 219.1639370 263.7795276 -9035.1614173 273.0542126 47.2440945 -8985.8228346 230.9185433 47.2440945 -9027.9606299 273.0542126 263.7795276 -8985.8228346 230.9185433 263.7795276 -9027.9606299 223.4446457 47.2440945 -9033.3897638 223.4446457 263.7795276 -9033.3897638 227.3952756 263.7795276 -9030.9685039 227.3952756 47.2440945 -9030.9685039 225.3937008 47.2440945 -9032.1968504 225.3937008 263.7795276 -9032.1968504 - - - - - - - - - - 0.7549754 0.0000000 -0.6557531 0.7952469 0.0000000 -0.6062857 0.7549754 0.0000000 -0.6557531 0.7952469 0.0000000 -0.6062857 0.6558414 -0.0000000 -0.7548987 0.6558414 -0.0000000 -0.7548987 0.7379293 0.0000000 -0.6748780 0.7379293 0.0000000 -0.6748780 0.6012653 -0.0000000 -0.7990495 0.6012653 -0.0000000 -0.7990495 0.6163935 0.0000000 -0.7874383 0.6163935 0.0000000 -0.7874383 0.6062427 0.0000000 -0.7952797 0.6062427 0.0000000 -0.7952797 0.4776530 0.0000000 -0.8785486 0.4776530 0.0000000 -0.8785486 0.6107489 0.0000000 -0.7918243 0.6107489 0.0000000 -0.7918243 0.3259731 0.0000000 -0.9453790 0.3259731 0.0000000 -0.9453790 0.6742044 0.0000000 -0.7385448 0.6742044 0.0000000 -0.7385448 0.1653942 -0.0000000 -0.9862275 0.1653942 -0.0000000 -0.9862275 0.7874753 -0.0000000 -0.6163462 0.7874753 -0.0000000 -0.6163462 0.0414452 -0.0000000 -0.9991408 0.0414452 -0.0000000 -0.9991408 0.8785563 -0.0000000 -0.4776387 0.8785563 -0.0000000 -0.4776387 -0.0436402 0.0000000 -0.9990473 -0.0436402 0.0000000 -0.9990473 0.9453681 0.0000000 -0.3260049 0.9453681 0.0000000 -0.3260049 -0.1735355 0.0000000 -0.9848276 -0.1735355 0.0000000 -0.9848276 0.9862492 -0.0000000 -0.1652649 0.9862492 -0.0000000 -0.1652649 -0.3420619 0.0000000 -0.9396774 -0.3420619 0.0000000 -0.9396774 0.9991396 -0.0000000 -0.0414733 0.9991396 -0.0000000 -0.0414733 -0.5001958 0.0000000 -0.8659124 -0.5001958 0.0000000 -0.8659124 0.9990492 0.0000000 0.0435974 0.9990492 0.0000000 0.0435974 -0.6427402 0.0000000 -0.7660842 -0.6427402 0.0000000 -0.7660842 0.9847982 0.0000000 0.1737023 0.9847982 0.0000000 0.1737023 -0.7659794 0.0000000 -0.6428651 -0.7659794 0.0000000 -0.6428651 0.9396740 0.0000000 0.3420714 0.9396740 0.0000000 0.3420714 -0.8660418 0.0000000 -0.4999716 -0.8660418 0.0000000 -0.4999716 0.8660479 0.0000000 0.4999610 0.8660479 0.0000000 0.4999610 -0.9397040 0.0000000 -0.3419890 -0.9397040 0.0000000 -0.3419890 0.7661531 -0.0000002 0.6426581 0.7661531 -0.0000002 0.6426581 -0.9848097 0.0000000 -0.1736371 -0.9848097 0.0000000 -0.1736371 0.6429336 -0.0000002 0.7659220 0.6429336 -0.0000002 0.7659220 -0.9990484 0.0000000 -0.0436155 -0.9990484 0.0000000 -0.0436155 0.4998867 -0.0000000 0.8660908 0.4998867 -0.0000000 0.8660908 -0.9992293 0.0000000 0.0392526 -0.9992293 0.0000000 0.0392526 0.3417295 -0.0000000 0.9397983 0.3417295 -0.0000000 0.9397983 -0.9876953 -0.0000000 0.1563905 -0.9876953 -0.0000000 0.1563905 0.1735378 0.0000000 0.9848272 0.1735378 0.0000000 0.9848272 -0.9510620 -0.0000000 0.3090002 -0.9510620 -0.0000000 0.3090002 0.0436416 0.0000000 0.9990473 0.0436416 0.0000000 0.9990473 -0.8909382 0.0000003 0.4541246 -0.8909382 0.0000003 0.4541246 -0.0391170 0.0000000 0.9992346 -0.0391170 0.0000000 0.9992346 -0.8089594 0.0000003 0.5878645 -0.8089594 0.0000003 0.5878645 -0.1563998 0.0000000 0.9876938 -0.1563998 0.0000000 0.9876938 -0.7343461 -0.0000000 0.6787752 -0.7343461 -0.0000000 0.6787752 -0.3089798 0.0000000 0.9510686 -0.3089798 0.0000000 0.9510686 -0.7071093 -0.0000000 0.7071043 -0.6787248 -0.0000000 0.7343927 -0.7071093 -0.0000000 0.7071043 -0.6787248 -0.0000000 0.7343927 -0.4536153 0.0000000 0.8911976 -0.4536153 0.0000000 0.8911976 -0.5879616 -0.0000000 0.8088889 -0.5879616 -0.0000000 0.8088889 -0.5225404 0.0000000 0.8526146 -0.5225404 0.0000000 0.8526146 - - - - - - - - - - - - - - -

0 1 2 1 0 3 0 4 5 4 0 2 1 6 7 6 1 3 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 17 20 21 20 17 16 22 19 18 19 22 23 24 21 20 21 24 25 26 23 22 23 26 27 28 24 29 24 28 25 30 27 26 27 30 31 32 29 33 29 32 28 34 31 30 31 34 35 36 33 37 33 36 32 38 35 34 35 38 39 40 37 41 37 40 36 42 39 38 39 42 43 44 41 45 41 44 40 46 43 42 43 46 47 48 44 45 44 48 49 50 47 46 47 50 51 52 48 53 48 52 49 51 54 55 54 51 50 56 53 57 53 56 52 54 58 55 58 54 59 60 57 61 57 60 56 59 62 58 62 59 63 64 60 61 60 64 65 62 66 67 66 62 63 68 65 64 65 68 69 66 70 67 70 66 71 72 69 68 69 72 73 71 74 70 74 71 75 76 73 72 73 76 77 75 78 74 78 75 79 80 77 76 77 80 81 79 82 78 82 79 83 84 81 80 81 84 85 83 86 82 86 83 87 88 85 84 85 88 89 87 90 86 90 87 91 92 89 88 89 92 93 91 94 90 94 91 95 95 91 96 97 95 96 98 93 92 93 98 99 95 100 101 100 95 97 102 99 98 99 102 103 101 103 102 103 101 100

-
-
-
- - - - 393.7007874 47.2440945 -3710.6299213 385.1551181 263.7795276 -3709.8822835 385.1551181 47.2440945 -3709.8822835 393.7007874 263.7795276 -3710.6299213 376.8691339 263.7795276 -3707.6618110 376.8691339 47.2440945 -3707.6618110 402.2464567 47.2440945 -3709.8822835 402.2464567 263.7795276 -3709.8822835 369.0944882 263.7795276 -3704.0366142 369.0944882 47.2440945 -3704.0366142 410.5326772 47.2440945 -3707.6618110 410.5326772 263.7795276 -3707.6618110 362.0675591 263.7795276 -3699.1165354 362.0675591 47.2440945 -3699.1165354 418.3070866 47.2440945 -3704.0366142 418.3070866 263.7795276 -3704.0366142 356.0017717 47.2440945 -3693.0503937 356.0017717 263.7795276 -3693.0503937 425.3338583 47.2440945 -3699.1165354 425.3338583 263.7795276 -3699.1165354 351.0814567 47.2440945 -3686.0236220 351.0814567 263.7795276 -3686.0236220 431.4000000 263.7795276 -3693.0503937 431.4000000 47.2440945 -3693.0503937 347.4561024 47.2440945 -3678.2492126 347.4561024 263.7795276 -3678.2492126 436.3200787 263.7795276 -3686.0236220 436.3200787 47.2440945 -3686.0236220 345.2359055 263.7795276 -3669.9629921 345.2359055 47.2440945 -3669.9629921 439.9456693 263.7795276 -3678.2492126 439.9456693 47.2440945 -3678.2492126 344.4881890 47.2440945 -3661.4173228 344.4881890 263.7795276 -3661.4173228 442.1657480 263.7795276 -3669.9629921 442.1657480 47.2440945 -3669.9629921 345.2359055 47.2440945 -3652.8720472 345.2359055 263.7795276 -3652.8720472 442.9133858 47.2440945 -3661.4173228 442.9133858 263.7795276 -3661.4173228 347.4561024 47.2440945 -3644.5858268 347.4561024 263.7795276 -3644.5858268 442.1657480 263.7795276 -3652.8720472 442.1657480 47.2440945 -3652.8720472 351.0814567 47.2440945 -3636.8110236 351.0814567 263.7795276 -3636.8110236 439.9456693 263.7795276 -3644.5858268 439.9456693 47.2440945 -3644.5858268 356.0017717 47.2440945 -3629.7838583 356.0017717 263.7795276 -3629.7838583 436.3200787 47.2440945 -3636.8110236 436.3200787 263.7795276 -3636.8110236 362.0675591 263.7795276 -3623.7181102 362.0675591 47.2440945 -3623.7181102 431.4000000 263.7795276 -3629.7838583 431.4000000 47.2440945 -3629.7838583 369.0944882 263.7795276 -3618.7984252 369.0944882 47.2440945 -3618.7984252 425.3338583 47.2440945 -3623.7181102 425.3338583 263.7795276 -3623.7181102 376.8691339 263.7795276 -3615.1732283 376.8691339 47.2440945 -3615.1732283 418.3070866 47.2440945 -3618.7984252 418.3070866 263.7795276 -3618.7984252 385.1551181 263.7795276 -3612.9523622 385.1551181 47.2440945 -3612.9523622 410.5326772 47.2440945 -3615.1732283 410.5326772 263.7795276 -3615.1732283 393.7007874 263.7795276 -3612.2047244 393.7007874 47.2440945 -3612.2047244 402.2464567 47.2440945 -3612.9523622 402.2464567 263.7795276 -3612.9523622 - - - - - - - - - - 0.0000000 -0.0000000 1.0000000 0.1736614 -0.0000000 0.9848054 0.1736614 -0.0000000 0.9848054 0.0000000 -0.0000000 1.0000000 0.3420244 0.0000000 0.9396911 0.3420244 0.0000000 0.9396911 -0.1736579 -0.0000000 0.9848060 -0.1736579 -0.0000000 0.9848060 0.4999823 0.0000000 0.8660356 0.4999823 0.0000000 0.8660356 -0.3420265 0.0000000 0.9396903 -0.3420265 0.0000000 0.9396903 0.6427904 -0.0000000 0.7660421 0.6427904 -0.0000000 0.7660421 -0.4999919 -0.0000000 0.8660301 -0.4999919 -0.0000000 0.8660301 0.7660503 -0.0000000 0.6427807 0.7660503 -0.0000000 0.6427807 -0.6427832 0.0000000 0.7660481 -0.6427832 0.0000000 0.7660481 0.8660203 0.0000000 0.5000088 0.8660203 0.0000000 0.5000088 -0.7660481 0.0000000 0.6427832 -0.7660481 0.0000000 0.6427832 0.9396928 0.0000000 0.3420198 0.9396928 0.0000000 0.3420198 -0.8660197 0.0000000 0.5000099 -0.8660197 0.0000000 0.5000099 0.9848079 0.0000000 0.1736471 0.9848079 0.0000000 0.1736471 -0.9396908 0.0000000 0.3420253 -0.9396908 0.0000000 0.3420253 1.0000000 0.0000000 -0.0000020 1.0000000 0.0000000 -0.0000020 -0.9848099 0.0000000 0.1736360 -0.9848099 0.0000000 0.1736360 0.9848076 0.0000000 -0.1736491 0.9848076 0.0000000 -0.1736491 -1.0000000 0.0000000 -0.0000020 -1.0000000 0.0000000 -0.0000020 0.9396961 0.0000000 -0.3420107 0.9396961 0.0000000 -0.3420107 -0.9848095 0.0000000 -0.1736380 -0.9848095 0.0000000 -0.1736380 0.8660317 0.0000000 -0.4999890 0.8660317 0.0000000 -0.4999890 -0.9396941 0.0000000 -0.3420161 -0.9396941 0.0000000 -0.3420161 0.7660483 -0.0000000 -0.6427830 0.7660483 -0.0000000 -0.6427830 -0.8660311 0.0000000 -0.4999901 -0.8660311 0.0000000 -0.4999901 0.6427636 -0.0000000 -0.7660646 0.6427636 -0.0000000 -0.7660646 -0.7660461 -0.0000000 -0.6427856 -0.7660461 -0.0000000 -0.6427856 0.4999660 0.0000000 -0.8660450 0.4999660 0.0000000 -0.8660450 -0.6427564 -0.0000000 -0.7660706 -0.6427564 -0.0000000 -0.7660706 0.3420452 0.0000000 -0.9396835 0.3420452 0.0000000 -0.9396835 -0.4999756 -0.0000000 -0.8660395 -0.4999756 -0.0000000 -0.8660395 0.1736832 0.0000000 -0.9848016 0.1736832 0.0000000 -0.9848016 -0.3420474 0.0000000 -0.9396827 -0.3420474 0.0000000 -0.9396827 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1736797 0.0000000 -0.9848022 -0.1736797 0.0000000 -0.9848022 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 12 16 13 16 12 17 18 15 14 15 18 19 17 20 16 20 17 21 22 18 23 18 22 19 21 24 20 24 21 25 26 23 27 23 26 22 24 28 29 28 24 25 30 27 31 27 30 26 28 32 29 32 28 33 34 31 35 31 34 30 33 36 32 36 33 37 38 34 35 34 38 39 37 40 36 40 37 41 42 38 43 38 42 39 41 44 40 44 41 45 46 43 47 43 46 42 45 48 44 48 45 49 50 46 47 46 50 51 52 48 49 48 52 53 54 50 55 50 54 51 56 53 52 53 56 57 54 58 59 58 54 55 60 57 56 57 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 71 69 68 69 71 70

-
-
-
- - - - -270.0010630 47.2440945 -8270.5433071 -297.4078740 263.7795276 -8307.3897638 -297.4078740 47.2440945 -8307.3897638 -270.0010630 263.7795276 -8270.5433071 -238.0594488 263.7795276 -8237.5551181 -238.0594488 47.2440945 -8237.5551181 -300.4010630 47.2440945 -8311.2637795 -300.4010630 263.7795276 -8311.2637795 -225.3937008 47.2440945 -8227.4803150 -225.3937008 263.7795276 -8227.4803150 -303.9934646 263.7795276 -8314.5905512 -303.9934646 47.2440945 -8314.5905512 -202.1195669 47.2440945 -8208.9724409 -202.1195669 263.7795276 -8208.9724409 -308.0862598 263.7795276 -8317.2795276 -308.0862598 47.2440945 -8317.2795276 -198.3441339 47.2440945 -8205.8543307 -198.3441339 263.7795276 -8205.8543307 -312.5669685 263.7795276 -8319.2519685 -312.5669685 47.2440945 -8319.2519685 -195.1354331 263.7795276 -8202.1574803 -195.1354331 47.2440945 -8202.1574803 -317.3123228 263.7795276 -8320.4606299 -317.3123228 47.2440945 -8320.4606299 -192.5816142 47.2440945 -8197.9803150 -192.5816142 263.7795276 -8197.9803150 -322.1918504 263.7795276 -8320.8661417 -322.1918504 47.2440945 -8320.8661417 -190.7529134 263.7795276 -8193.4409449 -190.7529134 47.2440945 -8193.4409449 -520.7763780 263.7795276 -8320.8661417 -520.7763780 47.2440945 -8320.8661417 -189.6995669 263.7795276 -8188.6614173 -189.6995669 47.2440945 -8188.6614173 -525.5578740 263.7795276 -8320.4763780 -525.5578740 47.2440945 -8320.4763780 -189.4505512 263.7795276 -8183.7716535 -189.4505512 47.2440945 -8183.7716535 -530.2133858 263.7795276 -8319.3188976 -530.2133858 47.2440945 -8319.3188976 -190.0126378 263.7795276 -8178.9094488 -190.0126378 47.2440945 -8178.9094488 -534.6196850 263.7795276 -8317.4212598 -534.6196850 47.2440945 -8317.4212598 -191.3704724 47.2440945 -8174.2047244 -191.3704724 263.7795276 -8174.2047244 -538.6606299 263.7795276 -8314.8346457 -538.6606299 47.2440945 -8314.8346457 -193.4866929 47.2440945 -8169.7913386 -193.4866929 263.7795276 -8169.7913386 -542.2295276 263.7795276 -8311.6259843 -542.2295276 47.2440945 -8311.6259843 -283.2355118 47.2440945 -8016.6220472 -283.2355118 263.7795276 -8016.6220472 -545.2318898 263.7795276 -8307.8858268 -545.2318898 47.2440945 -8307.8858268 -285.9833071 263.7795276 -8012.7007874 -285.9833071 47.2440945 -8012.7007874 -547.5885827 47.2440945 -8303.7086614 -547.5885827 263.7795276 -8303.7086614 -289.3288583 47.2440945 -8009.2755906 -289.3288583 263.7795276 -8009.2755906 -549.2377953 47.2440945 -8299.2007874 -549.2377953 263.7795276 -8299.2007874 -293.1840945 47.2440945 -8006.4370079 -293.1840945 263.7795276 -8006.4370079 -550.1354331 263.7795276 -8294.4881890 -550.1354331 47.2440945 -8294.4881890 -297.4477165 47.2440945 -8004.2559055 -297.4477165 263.7795276 -8004.2559055 -550.2578740 47.2440945 -8289.6929134 -550.2578740 263.7795276 -8289.6929134 -302.0075591 47.2440945 -8002.7952756 -302.0075591 263.7795276 -8002.7952756 -549.6023622 47.2440945 -8284.9409449 -549.6023622 263.7795276 -8284.9409449 -306.7437008 47.2440945 -8002.0905512 -306.7437008 263.7795276 -8002.0905512 -548.1854331 47.2440945 -8280.3582677 -548.1854331 263.7795276 -8280.3582677 -311.5315748 47.2440945 -8002.1574803 -311.5315748 263.7795276 -8002.1574803 -508.6807087 47.2440945 -8200.0078740 -508.6807087 263.7795276 -8200.0078740 -316.2453150 47.2440945 -8003.0000000 -316.2453150 263.7795276 -8003.0000000 -489.7606299 47.2440945 -8172.8661417 -489.7606299 263.7795276 -8172.8661417 -320.7609843 47.2440945 -8004.5944882 -320.7609843 263.7795276 -8004.5944882 -457.4830709 47.2440945 -8126.5551181 -457.4830709 263.7795276 -8126.5551181 -324.9596850 47.2440945 -8006.8976378 -324.9596850 263.7795276 -8006.8976378 -395.7700787 263.7795276 -8061.6889764 -395.7700787 47.2440945 -8061.6889764 - - - - - - - - - - -0.7619958 -0.0000006 0.6475820 -0.7968814 -0.0000006 0.6041357 -0.7968814 -0.0000006 0.6041357 -0.7619958 -0.0000006 0.6475820 -0.6718724 0.0000000 0.7406669 -0.6718724 0.0000000 0.7406669 -0.7379293 0.0000000 0.6748780 -0.7379293 0.0000000 0.6748780 -0.6224612 -0.0000000 0.7826506 -0.6224612 -0.0000000 0.7826506 -0.6163935 0.0000000 0.7874383 -0.6163935 0.0000000 0.7874383 -0.6296273 -0.0000000 0.7768973 -0.6296273 -0.0000000 0.7768973 -0.4776530 0.0000000 0.8785486 -0.4776530 0.0000000 0.8785486 -0.6983941 0.0000000 0.7157134 -0.6983941 0.0000000 0.7157134 -0.3259731 0.0000000 0.9453790 -0.3259731 0.0000000 0.9453790 -0.8069751 0.0000000 0.5905855 -0.8069751 0.0000000 0.5905855 -0.1653942 0.0000000 0.9862275 -0.1653942 0.0000000 0.9862275 -0.8934387 -0.0000000 0.4491851 -0.8934387 -0.0000000 0.4491851 -0.0414452 -0.0000000 0.9991408 -0.0414452 -0.0000000 0.9991408 -0.9553537 -0.0000000 0.2954645 -0.9553537 -0.0000000 0.2954645 0.0406564 0.0000000 0.9991732 0.0406564 0.0000000 0.9991732 -0.9910487 0.0000000 0.1335010 -0.9910487 0.0000000 0.1335010 0.1617957 0.0000000 0.9868243 0.1617957 0.0000000 0.9868243 -0.9994847 -0.0000000 -0.0320997 -0.9994847 -0.0000000 -0.0320997 0.3194717 0.0000000 0.9475958 0.3194717 0.0000000 0.9475958 -0.9804553 -0.0000000 -0.1967421 -0.9804553 -0.0000000 -0.1967421 0.4688797 0.0000000 0.8832620 0.4688797 0.0000000 0.8832620 -0.9344643 -0.0000000 -0.3560568 -0.9344643 -0.0000000 -0.3560568 0.6058557 0.0000000 0.7955746 0.6058557 0.0000000 0.7955746 -0.8830062 -0.0000004 -0.4693613 -0.8830062 -0.0000004 -0.4693613 0.7265880 0.0000000 0.6870734 0.7265880 0.0000000 0.6870734 -0.8415649 -0.0000004 -0.5401561 -0.8415649 -0.0000004 -0.5401561 0.8281272 0.0000000 0.5605402 0.8281272 0.0000000 0.5605402 -0.7696970 0.0000000 -0.6384094 -0.7696970 0.0000000 -0.6384094 0.9080476 0.0000000 0.4188670 0.9080476 0.0000000 0.4188670 -0.6563086 0.0000000 -0.7544926 -0.6563086 0.0000000 -0.7544926 0.9639111 0.0000000 0.2662243 0.9639111 0.0000000 0.2662243 -0.5258908 0.0000000 -0.8505521 -0.5258908 0.0000000 -0.8505521 0.9942943 0.0000000 0.1066715 0.9942943 0.0000000 0.1066715 -0.3815064 0.0000000 -0.9243662 -0.3815064 0.0000000 -0.9243662 0.9984449 0.0000000 -0.0557471 0.9984449 0.0000000 -0.0557471 -0.2268629 -0.0000000 -0.9739267 -0.2268629 -0.0000000 -0.9739267 0.9762292 0.0000000 -0.2167406 0.9762292 0.0000000 -0.2167406 -0.0668179 -0.0000000 -0.9977652 -0.0668179 -0.0000000 -0.9977652 0.9292531 0.0000005 -0.3694438 0.9292531 0.0000005 -0.3694438 0.0952789 0.0000000 -0.9954506 0.0952789 0.0000000 -0.9954506 0.8613581 0.0000005 -0.5079982 0.8613581 0.0000005 -0.5079982 0.2552943 0.0000000 -0.9668634 0.2552943 0.0000000 -0.9668634 0.8203753 0.0000000 -0.5718254 0.8203753 0.0000000 -0.5718254 0.4082879 0.0000000 -0.9128532 0.4082879 0.0000000 -0.9128532 0.7746767 0.0000003 -0.6323575 0.7746767 0.0000003 -0.6323575 0.5481348 -0.0000000 -0.8363900 0.5481348 -0.0000000 -0.8363900 0.6701596 0.0000003 -0.7422170 0.6701596 0.0000003 -0.7422170 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 0 5 0 4 3 1 6 2 6 1 7 8 4 5 4 8 9 6 10 11 10 6 7 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 16 21 16 20 17 19 22 23 22 19 18 24 20 21 20 24 25 23 26 27 26 23 22 28 24 29 24 28 25 27 30 31 30 27 26 32 29 33 29 32 28 31 34 35 34 31 30 36 33 37 33 36 32 35 38 39 38 35 34 40 37 41 37 40 36 39 42 43 42 39 38 44 40 41 40 44 45 43 46 47 46 43 42 48 45 44 45 48 49 47 50 51 50 47 46 52 49 48 49 52 53 51 54 55 54 51 50 56 52 57 52 56 53 54 58 55 58 54 59 60 56 57 56 60 61 59 62 58 62 59 63 61 64 65 64 61 60 62 66 67 66 62 63 65 68 69 68 65 64 66 70 67 70 66 71 69 72 73 72 69 68 71 74 70 74 71 75 73 76 77 76 73 72 75 78 74 78 75 79 77 80 81 80 77 76 79 82 78 82 79 83 81 84 85 84 81 80 83 86 82 86 83 87 85 88 89 88 85 84 87 90 86 90 87 91 89 92 93 92 89 88 90 94 95 94 90 91 93 95 94 95 93 92

-
-
-
- - - - -304.3639764 47.2440945 -8560.0984252 -314.9606299 263.7795276 -8561.0236220 -314.9606299 47.2440945 -8561.0236220 -304.3639764 263.7795276 -8560.0984252 -294.0893307 47.2440945 -8557.3425197 -294.0893307 263.7795276 -8557.3425197 -374.0157480 263.7795276 -8561.0236220 -374.0157480 47.2440945 -8561.0236220 -284.4488189 47.2440945 -8552.8464567 -284.4488189 263.7795276 -8552.8464567 -384.6124016 263.7795276 -8560.0984252 -384.6124016 47.2440945 -8560.0984252 -275.7353937 47.2440945 -8546.7480315 -275.7353937 263.7795276 -8546.7480315 -394.8870079 263.7795276 -8557.3425197 -394.8870079 47.2440945 -8557.3425197 -268.2138189 263.7795276 -8539.2244094 -268.2138189 47.2440945 -8539.2244094 -404.5275591 263.7795276 -8552.8464567 -404.5275591 47.2440945 -8552.8464567 -262.1125984 263.7795276 -8530.5118110 -262.1125984 47.2440945 -8530.5118110 -413.2409449 263.7795276 -8546.7480315 -413.2409449 47.2440945 -8546.7480315 -257.6172047 263.7795276 -8520.8700787 -257.6172047 47.2440945 -8520.8700787 -420.7625984 47.2440945 -8539.2244094 -420.7625984 263.7795276 -8539.2244094 -254.8640945 263.7795276 -8510.5984252 -254.8640945 47.2440945 -8510.5984252 -426.8637795 47.2440945 -8530.5118110 -426.8637795 263.7795276 -8530.5118110 -253.9370079 263.7795276 -8500.0000000 -253.9370079 47.2440945 -8500.0000000 -431.3590551 47.2440945 -8520.8700787 -431.3590551 263.7795276 -8520.8700787 -254.8640945 263.7795276 -8489.4015748 -254.8640945 47.2440945 -8489.4015748 -434.1122047 47.2440945 -8510.5984252 -434.1122047 263.7795276 -8510.5984252 -257.6172047 47.2440945 -8479.1299213 -257.6172047 263.7795276 -8479.1299213 -435.0393701 47.2440945 -8500.0000000 -435.0393701 263.7795276 -8500.0000000 -262.1125984 263.7795276 -8469.4881890 -262.1125984 47.2440945 -8469.4881890 -434.1122047 47.2440945 -8489.4015748 -434.1122047 263.7795276 -8489.4015748 -268.2138189 263.7795276 -8460.7755906 -268.2138189 47.2440945 -8460.7755906 -431.3590551 47.2440945 -8479.1299213 -431.3590551 263.7795276 -8479.1299213 -275.7353937 263.7795276 -8453.2519685 -275.7353937 47.2440945 -8453.2519685 -426.8637795 263.7795276 -8469.4881890 -426.8637795 47.2440945 -8469.4881890 -284.4488189 47.2440945 -8447.1535433 -284.4488189 263.7795276 -8447.1535433 -420.7625984 47.2440945 -8460.7755906 -420.7625984 263.7795276 -8460.7755906 -294.0893307 47.2440945 -8442.6574803 -294.0893307 263.7795276 -8442.6574803 -413.2409449 47.2440945 -8453.2519685 -413.2409449 263.7795276 -8453.2519685 -304.3639764 47.2440945 -8439.9055118 -304.3639764 263.7795276 -8439.9055118 -404.5275591 263.7795276 -8447.1535433 -404.5275591 47.2440945 -8447.1535433 -314.9606299 47.2440945 -8438.9763780 -314.9606299 263.7795276 -8438.9763780 -394.8870079 263.7795276 -8442.6574803 -394.8870079 47.2440945 -8442.6574803 -374.0157480 47.2440945 -8438.9763780 -374.0157480 263.7795276 -8438.9763780 -384.6124016 263.7795276 -8439.9055118 -384.6124016 47.2440945 -8439.9055118 - - - - - - - - - - -0.1736872 0.0000000 0.9848009 -0.0435310 0.0000000 0.9990521 -0.0435310 0.0000000 0.9990521 -0.1736872 0.0000000 0.9848009 -0.3421653 0.0000000 0.9396398 -0.3421653 0.0000000 0.9396398 0.0435310 -0.0000000 0.9990521 0.0435310 -0.0000000 0.9990521 -0.4999301 0.0000000 0.8660658 -0.4999301 0.0000000 0.8660658 0.1736877 -0.0000000 0.9848008 0.1736877 -0.0000000 0.9848008 -0.6427577 0.0000000 0.7660695 -0.6427577 0.0000000 0.7660695 0.3421650 0.0000000 0.9396399 0.3421650 0.0000000 0.9396399 -0.7660735 -0.0000000 0.6427530 -0.7660735 -0.0000000 0.6427530 0.4999303 0.0000000 0.8660656 0.4999303 0.0000000 0.8660656 -0.8660272 0.0000000 0.4999969 -0.8660272 0.0000000 0.4999969 0.6427565 0.0000000 0.7660705 0.6427565 0.0000000 0.7660705 -0.9396888 0.0000000 0.3420307 -0.9396888 0.0000000 0.3420307 0.7660728 0.0000000 0.6427538 0.7660728 0.0000000 0.6427538 -0.9848025 0.0000000 0.1736781 -0.9848025 0.0000000 0.1736781 0.8660305 0.0000000 0.4999912 0.8660305 0.0000000 0.4999912 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.9396899 0.0000000 0.3420277 0.9396899 0.0000000 0.3420277 -0.9848025 0.0000000 -0.1736781 -0.9848025 0.0000000 -0.1736781 0.9848015 0.0000000 0.1736835 0.9848015 0.0000000 0.1736835 -0.9396888 -0.0000000 -0.3420307 -0.9396888 -0.0000000 -0.3420307 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.8660272 -0.0000000 -0.4999969 -0.8660272 -0.0000000 -0.4999969 0.9848015 0.0000000 -0.1736835 0.9848015 0.0000000 -0.1736835 -0.7660735 -0.0000000 -0.6427530 -0.7660735 -0.0000000 -0.6427530 0.9396899 -0.0000000 -0.3420277 0.9396899 -0.0000000 -0.3420277 -0.6427577 0.0000000 -0.7660695 -0.6427577 0.0000000 -0.7660695 0.8660305 -0.0000000 -0.4999912 0.8660305 -0.0000000 -0.4999912 -0.4999301 0.0000000 -0.8660658 -0.4999301 0.0000000 -0.8660658 0.7660728 -0.0000000 -0.6427538 0.7660728 -0.0000000 -0.6427538 -0.3419974 0.0000000 -0.9397009 -0.3419974 0.0000000 -0.9397009 0.6427565 0.0000000 -0.7660705 0.6427565 0.0000000 -0.7660705 -0.1736927 0.0000000 -0.9847999 -0.1736927 0.0000000 -0.9847999 0.4999303 0.0000000 -0.8660656 0.4999303 0.0000000 -0.8660656 -0.0437151 0.0000000 -0.9990440 -0.0437151 0.0000000 -0.9990440 0.3419971 0.0000000 -0.9397010 0.3419971 0.0000000 -0.9397010 0.0437151 0.0000000 -0.9990440 0.0437151 0.0000000 -0.9990440 0.1736932 0.0000000 -0.9847998 0.1736932 0.0000000 -0.9847998 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 12 17 12 16 13 15 18 19 18 15 14 20 17 21 17 20 16 19 22 23 22 19 18 24 21 25 21 24 20 22 26 23 26 22 27 28 25 29 25 28 24 27 30 26 30 27 31 32 29 33 29 32 28 31 34 30 34 31 35 36 33 37 33 36 32 35 38 34 38 35 39 40 36 37 36 40 41 39 42 38 42 39 43 44 40 45 40 44 41 43 46 42 46 43 47 48 45 49 45 48 44 47 50 46 50 47 51 52 49 53 49 52 48 50 54 55 54 50 51 52 56 57 56 52 53 54 58 55 58 54 59 57 60 61 60 57 56 59 62 58 62 59 63 61 64 65 64 61 60 66 62 63 62 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 72 73 72 69 68 74 71 70 71 74 75 73 75 74 75 73 72

-
-
-
- - - - -192.6105512 263.7795276 -8797.4094488 -225.3937008 47.2440945 -8772.7480315 -225.3937008 263.7795276 -8772.7480315 -192.6105512 47.2440945 -8797.4094488 -189.2058661 263.7795276 -8800.0393701 -189.2058661 47.2440945 -8800.0393701 -232.3503543 47.2440945 -8767.5118110 -232.3503543 263.7795276 -8767.5118110 -188.7355906 263.7795276 -8800.4015748 -188.7355906 47.2440945 -8800.4015748 -267.5136614 47.2440945 -8732.3503937 -267.5136614 263.7795276 -8732.3503937 -185.4085433 47.2440945 -8803.9921260 -185.4085433 263.7795276 -8803.9921260 -297.4078740 47.2440945 -8692.6102362 -297.4078740 263.7795276 -8692.6102362 -182.7209055 263.7795276 -8808.0866142 -182.7209055 47.2440945 -8808.0866142 -300.4010630 263.7795276 -8688.7362205 -300.4010630 47.2440945 -8688.7362205 -180.7465748 47.2440945 -8812.5669291 -180.7465748 263.7795276 -8812.5669291 -303.9934646 47.2440945 -8685.4094488 -303.9934646 263.7795276 -8685.4094488 -179.5398425 47.2440945 -8817.3110236 -179.5398425 263.7795276 -8817.3110236 -308.0862598 47.2440945 -8682.7204724 -308.0862598 263.7795276 -8682.7204724 -179.1338583 47.2440945 -8822.1929134 -179.1338583 263.7795276 -8822.1929134 -312.5669685 47.2440945 -8680.7480315 -312.5669685 263.7795276 -8680.7480315 -179.1338583 47.2440945 -9007.0787402 -179.1338583 263.7795276 -9007.0787402 -317.3123228 47.2440945 -8679.5393701 -317.3123228 263.7795276 -8679.5393701 -179.5824409 47.2440945 -9012.2086614 -179.5824409 263.7795276 -9012.2086614 -322.1918504 47.2440945 -8679.1338583 -322.1918504 263.7795276 -8679.1338583 -180.9145669 47.2440945 -9017.1771654 -180.9145669 263.7795276 -9017.1771654 -507.0799213 47.2440945 -8679.1338583 -507.0799213 263.7795276 -8679.1338583 -183.0898031 263.7795276 -9021.8425197 -183.0898031 47.2440945 -9021.8425197 -512.2074803 47.2440945 -8679.5826772 -512.2074803 263.7795276 -8679.5826772 -186.0419685 47.2440945 -9026.0590551 -186.0419685 263.7795276 -9026.0590551 -517.1791339 47.2440945 -8680.9133858 -517.1791339 263.7795276 -8680.9133858 -189.6814567 47.2440945 -9029.7007874 -189.6814567 263.7795276 -9029.7007874 -521.8437008 47.2440945 -8683.0905512 -521.8437008 263.7795276 -8683.0905512 -193.8976378 263.7795276 -9032.6535433 -193.8976378 47.2440945 -9032.6535433 -526.0598425 47.2440945 -8686.0433071 -526.0598425 263.7795276 -8686.0433071 -198.5624016 263.7795276 -9034.8267717 -198.5624016 47.2440945 -9034.8267717 -529.6992126 47.2440945 -8689.6811024 -529.6992126 263.7795276 -8689.6811024 -203.5340157 263.7795276 -9036.1574803 -203.5340157 47.2440945 -9036.1574803 -532.6515748 263.7795276 -8693.8976378 -532.6515748 47.2440945 -8693.8976378 -208.6614173 263.7795276 -9036.6062992 -208.6614173 47.2440945 -9036.6062992 -534.8267717 263.7795276 -8698.5629921 -534.8267717 47.2440945 -8698.5629921 -210.0394094 263.7795276 -9036.6062992 -210.0394094 47.2440945 -9036.6062992 -536.1590551 263.7795276 -8703.5354331 -536.1590551 47.2440945 -8703.5354331 -214.6585433 263.7795276 -9036.2440945 -214.6585433 47.2440945 -9036.2440945 -536.6074803 263.7795276 -8708.6614173 -536.6074803 47.2440945 -8708.6614173 -219.1639370 263.7795276 -9035.1614173 -219.1639370 47.2440945 -9035.1614173 -536.6074803 47.2440945 -8710.0393701 -536.6074803 263.7795276 -8710.0393701 -223.4446457 263.7795276 -9033.3897638 -223.4446457 47.2440945 -9033.3897638 -536.2440945 47.2440945 -8714.6574803 -536.2440945 263.7795276 -8714.6574803 -225.3937008 263.7795276 -9032.1968504 -225.3937008 47.2440945 -9032.1968504 -535.1622047 263.7795276 -8719.1653543 -535.1622047 47.2440945 -8719.1653543 -227.3952756 263.7795276 -9030.9685039 -227.3952756 47.2440945 -9030.9685039 -533.3893701 263.7795276 -8723.4448819 -533.3893701 47.2440945 -8723.4448819 -230.9185433 263.7795276 -9027.9606299 -230.9185433 47.2440945 -9027.9606299 -530.9681102 263.7795276 -8727.3937008 -530.9681102 47.2440945 -8727.3937008 -273.0542126 263.7795276 -8985.8228346 -273.0542126 47.2440945 -8985.8228346 -527.9590551 263.7795276 -8730.9173228 -527.9590551 47.2440945 -8730.9173228 -489.7606299 47.2440945 -8769.1181102 -489.7606299 263.7795276 -8769.1181102 - - - - - - - - - - -0.6062427 0.0000000 -0.7952797 -0.6012653 -0.0000000 -0.7990495 -0.6012653 -0.0000000 -0.7990495 -0.6062427 0.0000000 -0.7952797 -0.6107489 0.0000000 -0.7918243 -0.6107489 0.0000000 -0.7918243 -0.6558414 -0.0000000 -0.7548987 -0.6558414 -0.0000000 -0.7548987 -0.6742044 0.0000000 -0.7385448 -0.6742044 0.0000000 -0.7385448 -0.7549754 -0.0000000 -0.6557531 -0.7549754 -0.0000000 -0.6557531 -0.7874753 -0.0000000 -0.6163462 -0.7874753 -0.0000000 -0.6163462 -0.7952469 -0.0000000 -0.6062857 -0.7952469 -0.0000000 -0.6062857 -0.8785563 -0.0000000 -0.4776387 -0.8785563 -0.0000000 -0.4776387 -0.7379293 0.0000000 -0.6748780 -0.7379293 0.0000000 -0.6748780 -0.9453681 0.0000000 -0.3260049 -0.9453681 0.0000000 -0.3260049 -0.6163935 0.0000000 -0.7874383 -0.6163935 0.0000000 -0.7874383 -0.9862492 -0.0000000 -0.1652649 -0.9862492 -0.0000000 -0.1652649 -0.4776530 0.0000000 -0.8785486 -0.4776530 0.0000000 -0.8785486 -0.9991396 -0.0000000 -0.0414733 -0.9991396 -0.0000000 -0.0414733 -0.3259731 0.0000000 -0.9453790 -0.3259731 0.0000000 -0.9453790 -0.9990492 0.0000000 0.0435974 -0.9990492 0.0000000 0.0435974 -0.1653942 -0.0000000 -0.9862275 -0.1653942 -0.0000000 -0.9862275 -0.9847982 0.0000000 0.1737023 -0.9847982 0.0000000 0.1737023 -0.0414452 -0.0000000 -0.9991408 -0.0414452 -0.0000000 -0.9991408 -0.9396740 -0.0000000 0.3420714 -0.9396740 -0.0000000 0.3420714 0.0436402 0.0000000 -0.9990473 0.0436402 0.0000000 -0.9990473 -0.8660479 -0.0000000 0.4999610 -0.8660479 -0.0000000 0.4999610 0.1735355 0.0000000 -0.9848276 0.1735355 0.0000000 -0.9848276 -0.7661531 -0.0000002 0.6426581 -0.7661531 -0.0000002 0.6426581 0.3420619 0.0000000 -0.9396774 0.3420619 0.0000000 -0.9396774 -0.6429336 -0.0000002 0.7659220 -0.6429336 -0.0000002 0.7659220 0.5001958 0.0000000 -0.8659124 0.5001958 0.0000000 -0.8659124 -0.4998867 -0.0000000 0.8660908 -0.4998867 -0.0000000 0.8660908 0.6427402 0.0000000 -0.7660842 0.6427402 0.0000000 -0.7660842 -0.3417295 -0.0000000 0.9397983 -0.3417295 -0.0000000 0.9397983 0.7659794 0.0000000 -0.6428651 0.7659794 0.0000000 -0.6428651 -0.1735378 0.0000000 0.9848272 -0.1735378 0.0000000 0.9848272 0.8660418 0.0000000 -0.4999716 0.8660418 0.0000000 -0.4999716 -0.0436416 0.0000000 0.9990473 -0.0436416 0.0000000 0.9990473 0.9397040 0.0000000 -0.3419890 0.9397040 0.0000000 -0.3419890 0.0391170 0.0000000 0.9992346 0.0391170 0.0000000 0.9992346 0.9848097 0.0000000 -0.1736371 0.9848097 0.0000000 -0.1736371 0.1563998 0.0000000 0.9876938 0.1563998 0.0000000 0.9876938 0.9990484 0.0000000 -0.0436155 0.9990484 0.0000000 -0.0436155 0.3089798 0.0000000 0.9510686 0.3089798 0.0000000 0.9510686 0.9992293 0.0000000 0.0392526 0.9992293 0.0000000 0.0392526 0.4536153 0.0000000 0.8911976 0.4536153 0.0000000 0.8911976 0.9876953 -0.0000000 0.1563905 0.9876953 -0.0000000 0.1563905 0.5225404 0.0000000 0.8526146 0.5225404 0.0000000 0.8526146 0.9510620 -0.0000000 0.3090002 0.9510620 -0.0000000 0.3090002 0.5879616 -0.0000000 0.8088889 0.5879616 -0.0000000 0.8088889 0.8909382 0.0000003 0.4541246 0.8909382 0.0000003 0.4541246 0.6787328 -0.0000000 0.7343853 0.6787328 -0.0000000 0.7343853 0.8089594 0.0000003 0.5878645 0.8089594 0.0000003 0.5878645 0.7071155 -0.0000002 0.7070980 0.7071155 -0.0000002 0.7070980 0.7343448 -0.0000002 0.6787767 0.7343448 -0.0000002 0.6787767 0.7071064 -0.0000005 0.7071071 0.7071064 -0.0000005 0.7071071 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 8 12 9 12 8 13 14 11 10 11 14 15 12 16 17 16 12 13 18 14 19 14 18 15 16 20 17 20 16 21 18 22 23 22 18 19 21 24 20 24 21 25 23 26 27 26 23 22 25 28 24 28 25 29 27 30 31 30 27 26 29 32 28 32 29 33 31 34 35 34 31 30 33 36 32 36 33 37 35 38 39 38 35 34 37 40 36 40 37 41 39 42 43 42 39 38 40 44 45 44 40 41 43 46 47 46 43 42 44 48 45 48 44 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 52 56 57 56 52 53 55 58 59 58 55 54 57 60 61 60 57 56 59 62 63 62 59 58 61 64 65 64 61 60 66 62 67 62 66 63 65 68 69 68 65 64 70 67 71 67 70 66 69 72 73 72 69 68 74 71 75 71 74 70 73 76 77 76 73 72 78 75 79 75 78 74 77 80 81 80 77 76 82 78 79 78 82 83 81 84 85 84 81 80 86 83 82 83 86 87 85 88 89 88 85 84 90 86 91 86 90 87 89 92 93 92 89 88 94 91 95 91 94 90 93 96 97 96 93 92 98 95 99 95 98 94 97 100 101 100 97 96 102 99 103 99 102 98 104 102 103 102 104 105 105 104 101 105 101 100

-
-
-
- - - - -439.9456693 263.7795276 -3644.5858268 -436.3200787 47.2440945 -3636.8110236 -439.9456693 47.2440945 -3644.5858268 -436.3200787 263.7795276 -3636.8110236 -442.1657480 263.7795276 -3652.8720472 -442.1657480 47.2440945 -3652.8720472 -431.4000000 47.2440945 -3629.7838583 -431.4000000 263.7795276 -3629.7838583 -442.9133858 263.7795276 -3661.4173228 -442.9133858 47.2440945 -3661.4173228 -425.3338583 263.7795276 -3623.7181102 -425.3338583 47.2440945 -3623.7181102 -442.1657480 263.7795276 -3669.9629921 -442.1657480 47.2440945 -3669.9629921 -418.3070866 263.7795276 -3618.7984252 -418.3070866 47.2440945 -3618.7984252 -439.9456693 47.2440945 -3678.2492126 -439.9456693 263.7795276 -3678.2492126 -410.5326772 263.7795276 -3615.1732283 -410.5326772 47.2440945 -3615.1732283 -436.3200787 263.7795276 -3686.0236220 -436.3200787 47.2440945 -3686.0236220 -402.2464567 263.7795276 -3612.9523622 -402.2464567 47.2440945 -3612.9523622 -431.4000000 263.7795276 -3693.0503937 -431.4000000 47.2440945 -3693.0503937 -393.7007874 263.7795276 -3612.2047244 -393.7007874 47.2440945 -3612.2047244 -425.3338583 263.7795276 -3699.1165354 -425.3338583 47.2440945 -3699.1165354 -385.1551181 263.7795276 -3612.9523622 -385.1551181 47.2440945 -3612.9523622 -418.3070866 47.2440945 -3704.0366142 -418.3070866 263.7795276 -3704.0366142 -376.8691339 263.7795276 -3615.1732283 -376.8691339 47.2440945 -3615.1732283 -410.5326772 47.2440945 -3707.6618110 -410.5326772 263.7795276 -3707.6618110 -369.0944882 263.7795276 -3618.7984252 -369.0944882 47.2440945 -3618.7984252 -402.2464567 47.2440945 -3709.8822835 -402.2464567 263.7795276 -3709.8822835 -362.0675591 263.7795276 -3623.7181102 -362.0675591 47.2440945 -3623.7181102 -393.7007874 47.2440945 -3710.6299213 -393.7007874 263.7795276 -3710.6299213 -356.0017717 263.7795276 -3629.7838583 -356.0017717 47.2440945 -3629.7838583 -385.1551181 47.2440945 -3709.8822835 -385.1551181 263.7795276 -3709.8822835 -351.0814567 47.2440945 -3636.8110236 -351.0814567 263.7795276 -3636.8110236 -376.8691339 47.2440945 -3707.6618110 -376.8691339 263.7795276 -3707.6618110 -347.4561024 263.7795276 -3644.5858268 -347.4561024 47.2440945 -3644.5858268 -369.0944882 47.2440945 -3704.0366142 -369.0944882 263.7795276 -3704.0366142 -345.2359055 47.2440945 -3652.8720472 -345.2359055 263.7795276 -3652.8720472 -362.0675591 47.2440945 -3699.1165354 -362.0675591 263.7795276 -3699.1165354 -344.4881890 47.2440945 -3661.4173228 -344.4881890 263.7795276 -3661.4173228 -356.0017717 263.7795276 -3693.0503937 -356.0017717 47.2440945 -3693.0503937 -345.2359055 263.7795276 -3669.9629921 -345.2359055 47.2440945 -3669.9629921 -351.0814567 263.7795276 -3686.0236220 -351.0814567 47.2440945 -3686.0236220 -347.4561024 47.2440945 -3678.2492126 -347.4561024 263.7795276 -3678.2492126 - - - - - - - - - - 0.9396944 -0.0000001 -0.3420154 0.8660316 -0.0000001 -0.4999893 0.9396944 -0.0000001 -0.3420154 0.8660316 -0.0000001 -0.4999893 0.9848095 0.0000000 -0.1736380 0.9848095 0.0000000 -0.1736380 0.7660461 -0.0000000 -0.6427856 0.7660461 -0.0000000 -0.6427856 1.0000000 0.0000000 -0.0000020 1.0000000 0.0000000 -0.0000020 0.6427564 -0.0000000 -0.7660706 0.6427564 -0.0000000 -0.7660706 0.9848099 0.0000000 0.1736360 0.9848099 0.0000000 0.1736360 0.4999756 -0.0000000 -0.8660395 0.4999756 -0.0000000 -0.8660395 0.9396904 -0.0000001 0.3420262 0.9396904 -0.0000001 0.3420262 0.3420474 0.0000000 -0.9396827 0.3420474 0.0000000 -0.9396827 0.8660192 -0.0000001 0.5000107 0.8660192 -0.0000001 0.5000107 0.1736797 0.0000000 -0.9848022 0.1736797 0.0000000 -0.9848022 0.7660481 0.0000000 0.6427832 0.7660481 0.0000000 0.6427832 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.6427832 0.0000000 0.7660481 0.6427832 0.0000000 0.7660481 -0.1736832 0.0000000 -0.9848016 -0.1736832 0.0000000 -0.9848016 0.4999919 -0.0000000 0.8660301 0.4999919 -0.0000000 0.8660301 -0.3420452 0.0000000 -0.9396835 -0.3420452 0.0000000 -0.9396835 0.3420265 0.0000000 0.9396903 0.3420265 0.0000000 0.9396903 -0.4999660 0.0000000 -0.8660450 -0.4999660 0.0000000 -0.8660450 0.1736579 -0.0000000 0.9848060 0.1736579 -0.0000000 0.9848060 -0.6427636 -0.0000000 -0.7660646 -0.6427636 -0.0000000 -0.7660646 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 -0.7660483 -0.0000000 -0.6427830 -0.7660483 -0.0000000 -0.6427830 -0.1736614 -0.0000000 0.9848054 -0.1736614 -0.0000000 0.9848054 -0.8660317 0.0000000 -0.4999890 -0.8660317 0.0000000 -0.4999890 -0.3420244 0.0000000 0.9396911 -0.3420244 0.0000000 0.9396911 -0.9396961 0.0000000 -0.3420107 -0.9396961 0.0000000 -0.3420107 -0.4999823 0.0000000 0.8660356 -0.4999823 0.0000000 0.8660356 -0.9848076 0.0000000 -0.1736491 -0.9848076 0.0000000 -0.1736491 -0.6427904 -0.0000000 0.7660421 -0.6427904 -0.0000000 0.7660421 -1.0000000 0.0000000 -0.0000020 -1.0000000 0.0000000 -0.0000020 -0.7660503 -0.0000000 0.6427807 -0.7660503 -0.0000000 0.6427807 -0.9848079 0.0000000 0.1736471 -0.9848079 0.0000000 0.1736471 -0.8660203 0.0000000 0.5000088 -0.8660203 0.0000000 0.5000088 -0.9396928 0.0000000 0.3420198 -0.9396928 0.0000000 0.3420198 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 5 9 5 8 4 10 6 7 6 10 11 12 9 13 9 12 8 14 11 10 11 14 15 16 12 13 12 16 17 18 15 14 15 18 19 20 16 21 16 20 17 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 25 29 25 28 24 30 27 26 27 30 31 32 28 29 28 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 46 50 47 50 46 51 52 49 48 49 52 53 50 54 55 54 50 51 56 53 52 53 56 57 54 58 55 58 54 59 60 57 56 57 60 61 59 62 58 62 59 63 64 60 65 60 64 61 62 66 67 66 62 63 68 65 69 65 68 64 66 70 67 70 66 71 71 69 70 69 71 68

-
-
-
- - - - 30.5118110 263.7795276 -3419.1212598 30.5118110 47.2440945 -3903.7133858 30.5118110 47.2440945 -3419.1212598 30.5118110 263.7795276 -3903.7133858 35.3339252 263.7795276 -3905.5129921 30.5118110 47.2440945 -3903.7133858 30.5118110 263.7795276 -3903.7133858 35.3339252 47.2440945 -3905.5129921 35.0885039 47.2440945 -3417.4374016 30.5118110 263.7795276 -3419.1212598 30.5118110 47.2440945 -3419.1212598 35.0885039 263.7795276 -3417.4374016 39.7702756 263.7795276 -3908.1228346 39.7702756 47.2440945 -3908.1228346 39.3255827 47.2440945 -3415.0228346 39.3255827 263.7795276 -3415.0228346 43.6860630 263.7795276 -3911.4629921 43.6860630 47.2440945 -3911.4629921 43.1074409 47.2440945 -3411.9444882 43.1074409 263.7795276 -3411.9444882 46.9622835 47.2440945 -3915.4326772 46.9622835 263.7795276 -3915.4326772 46.3309843 263.7795276 -3408.2842520 46.3309843 47.2440945 -3408.2842520 49.4994488 263.7795276 -3919.9106299 49.4994488 47.2440945 -3919.9106299 48.9081890 263.7795276 -3404.1444882 48.9081890 47.2440945 -3404.1444882 51.2204331 47.2440945 -3924.7614173 51.2204331 263.7795276 -3924.7614173 50.7688189 263.7795276 -3399.6362205 50.7688189 47.2440945 -3399.6362205 52.0729528 47.2440945 -3929.8374016 52.0729528 263.7795276 -3929.8374016 51.8621260 263.7795276 -3394.8838583 51.8621260 47.2440945 -3394.8838583 52.0311024 47.2440945 -3934.9842520 52.0311024 263.7795276 -3934.9842520 52.1582677 47.2440945 -3390.0161417 52.1582677 263.7795276 -3390.0161417 51.0961417 47.2440945 -3940.0472441 51.0961417 263.7795276 -3940.0472441 51.6491732 263.7795276 -3385.1665354 51.6491732 47.2440945 -3385.1665354 49.2964567 47.2440945 -3944.8661417 49.2964567 263.7795276 -3944.8661417 50.3487008 263.7795276 -3380.4661417 50.3487008 47.2440945 -3380.4661417 46.6868110 263.7795276 -3949.3031496 46.6868110 47.2440945 -3949.3031496 48.2923622 263.7795276 -3376.0440945 48.2923622 47.2440945 -3376.0440945 43.3464173 47.2440945 -3953.2204724 43.3464173 263.7795276 -3953.2204724 45.5362205 263.7795276 -3372.0208661 45.5362205 47.2440945 -3372.0208661 39.3768110 263.7795276 -3956.4960630 39.3768110 47.2440945 -3956.4960630 42.1554724 263.7795276 -3368.5059055 42.1554724 47.2440945 -3368.5059055 34.8986102 263.7795276 -3959.0314961 34.8986102 47.2440945 -3959.0314961 38.2423465 47.2440945 -3365.5952756 38.2423465 263.7795276 -3365.5952756 30.0478622 263.7795276 -3960.7559055 30.0478622 47.2440945 -3960.7559055 33.9035591 47.2440945 -3363.3692913 33.9035591 263.7795276 -3363.3692913 24.9719646 263.7795276 -3961.6062992 24.9719646 47.2440945 -3961.6062992 29.2574724 47.2440945 -3361.8874016 29.2574724 263.7795276 -3361.8874016 19.8251417 263.7795276 -3961.5629921 19.8251417 47.2440945 -3961.5629921 24.4308189 47.2440945 -3361.1901575 24.4308189 263.7795276 -3361.1901575 14.7637795 263.7795276 -3960.6299213 14.7637795 47.2440945 -3960.6299213 19.5552559 47.2440945 -3361.2976378 19.5552559 263.7795276 -3361.2976378 -14.7637795 263.7795276 -3960.6299213 -14.7637795 47.2440945 -3960.6299213 14.7637795 47.2440945 -3362.2043307 14.7637795 263.7795276 -3362.2043307 -19.8251417 263.7795276 -3961.5629921 -19.8251417 47.2440945 -3961.5629921 -14.7637795 47.2440945 -3362.2043307 -14.7637795 263.7795276 -3362.2043307 -24.9719646 263.7795276 -3961.6062992 -24.9719646 47.2440945 -3961.6062992 -19.8251417 47.2440945 -3361.2700787 -19.8251417 263.7795276 -3361.2700787 -30.0478622 263.7795276 -3960.7559055 -30.0478622 47.2440945 -3960.7559055 -24.9719646 47.2440945 -3361.2279528 -24.9719646 263.7795276 -3361.2279528 -34.8986102 263.7795276 -3959.0314961 -34.8986102 47.2440945 -3959.0314961 -30.0478622 47.2440945 -3362.0807087 -30.0478622 263.7795276 -3362.0807087 -39.3768110 263.7795276 -3956.4960630 -39.3768110 47.2440945 -3956.4960630 -34.8986102 47.2440945 -3363.8015748 -34.8986102 263.7795276 -3363.8015748 -43.3464173 263.7795276 -3953.2204724 -43.3464173 47.2440945 -3953.2204724 -39.3768110 47.2440945 -3366.3385827 -39.3768110 263.7795276 -3366.3385827 -46.6868110 47.2440945 -3949.3031496 -46.6868110 263.7795276 -3949.3031496 -43.3464173 47.2440945 -3369.6145669 -43.3464173 263.7795276 -3369.6145669 -49.2964567 47.2440945 -3944.8661417 -49.2964567 263.7795276 -3944.8661417 -46.6868110 263.7795276 -3373.5311024 -46.6868110 47.2440945 -3373.5311024 -51.0961417 263.7795276 -3940.0472441 -51.0961417 47.2440945 -3940.0472441 -49.2964567 47.2440945 -3377.9669291 -49.2964567 263.7795276 -3377.9669291 -52.0311024 47.2440945 -3934.9842520 -52.0311024 263.7795276 -3934.9842520 -51.0961417 263.7795276 -3382.7893701 -51.0961417 47.2440945 -3382.7893701 -52.0729528 47.2440945 -3929.8374016 -52.0729528 263.7795276 -3929.8374016 -52.0311024 263.7795276 -3387.8503937 -52.0311024 47.2440945 -3387.8503937 -51.2204331 47.2440945 -3924.7614173 -51.2204331 263.7795276 -3924.7614173 -52.0729528 47.2440945 -3392.9972441 -52.0729528 263.7795276 -3392.9972441 -49.4994488 263.7795276 -3919.9106299 -49.4994488 47.2440945 -3919.9106299 -51.2204331 263.7795276 -3398.0728346 -51.2204331 47.2440945 -3398.0728346 -46.9622835 47.2440945 -3915.4326772 -46.9622835 263.7795276 -3915.4326772 -49.4994488 263.7795276 -3402.9244094 -49.4994488 47.2440945 -3402.9244094 -43.6860630 47.2440945 -3911.4629921 -43.6860630 263.7795276 -3911.4629921 -46.9622835 263.7795276 -3407.4019685 -46.9622835 47.2440945 -3407.4019685 -39.7702756 263.7795276 -3908.1228346 -39.7702756 47.2440945 -3908.1228346 -43.6860630 263.7795276 -3411.3720472 -43.6860630 47.2440945 -3411.3720472 -35.3339252 263.7795276 -3905.5129921 -35.3339252 47.2440945 -3905.5129921 -39.7702756 47.2440945 -3414.7118110 -39.7702756 263.7795276 -3414.7118110 -30.5118110 263.7795276 -3903.7133858 -30.5118110 47.2440945 -3903.7133858 -35.3339252 47.2440945 -3417.3220472 -35.3339252 263.7795276 -3417.3220472 -30.5118110 263.7795276 -3903.7133858 -30.5118110 47.2440945 -3419.1212598 -30.5118110 47.2440945 -3903.7133858 -30.5118110 263.7795276 -3419.1212598 -30.5118110 47.2440945 -3419.1212598 -30.5118110 263.7795276 -3419.1212598 - - - - - - - - - - -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.4299849 0.0000000 -0.9028361 -0.3496434 0.0000000 -0.9368829 -0.3496434 0.0000000 -0.9368829 -0.4299849 0.0000000 -0.9028361 -0.4216447 0.0000000 0.9067611 -0.3452915 0.0000000 0.9384955 -0.3452915 0.0000000 0.9384955 -0.4216447 0.0000000 0.9067611 -0.5802183 0.0000000 -0.8144610 -0.5802183 0.0000000 -0.8144610 -0.5651265 0.0000000 0.8250043 -0.5651265 0.0000000 0.8250043 -0.7128277 0.0000000 -0.7013392 -0.7128277 0.0000000 -0.7013392 -0.6932425 0.0000000 0.7207044 -0.6932425 0.0000000 0.7207044 -0.8237866 0.0000000 -0.5669000 -0.8237866 0.0000000 -0.5669000 -0.8024301 0.0000000 0.5967461 -0.8024301 0.0000000 0.5967461 -0.9097100 0.0000000 -0.4152441 -0.9097100 0.0000000 -0.4152441 -0.8896916 0.0000000 0.4565619 -0.8896916 0.0000000 0.4565619 -0.9679993 0.0000000 -0.2509531 -0.9679993 0.0000000 -0.2509531 -0.9527080 0.0000000 0.3038872 -0.9527080 0.0000000 0.3038872 -0.9968706 -0.0000000 -0.0790512 -0.9968706 -0.0000000 -0.0790512 -0.9897298 -0.0000000 0.1429507 -0.9897298 -0.0000000 0.1429507 -0.9954558 -0.0000000 0.0952253 -0.9954558 -0.0000000 0.0952253 -0.9997599 0.0000000 -0.0219134 -0.9997599 0.0000000 -0.0219134 -0.9637666 0.0000000 0.2667468 -0.9637666 0.0000000 0.2667468 -0.9825185 0.0000000 -0.1861647 -0.9825185 0.0000000 -0.1861647 -0.9028070 0.0000000 0.4300460 -0.9028070 0.0000000 0.4300460 -0.9384789 0.0000000 -0.3453366 -0.9384789 0.0000000 -0.3453366 -0.8145353 0.0000000 0.5801139 -0.8145353 0.0000000 0.5801139 -0.8688358 0.0000000 -0.4951003 -0.8688358 0.0000000 -0.4951003 -0.7013656 0.0000000 0.7128017 -0.7013656 0.0000000 0.7128017 -0.7755048 0.0000000 -0.6313417 -0.7755048 0.0000000 -0.6313417 -0.5667347 0.0000000 0.8239003 -0.5667347 0.0000000 0.8239003 -0.6610325 0.0000000 -0.7503573 -0.6610325 0.0000000 -0.7503573 -0.4153864 0.0000000 0.9096451 -0.4153864 0.0000000 0.9096451 -0.5284538 -0.0000000 -0.8489621 -0.5284538 -0.0000000 -0.8489621 -0.2510620 0.0000000 0.9679710 -0.2510620 0.0000000 0.9679710 -0.3814744 -0.0000000 -0.9243794 -0.3814744 -0.0000000 -0.9243794 -0.0787085 0.0000000 0.9968977 -0.0787085 0.0000000 0.9968977 -0.2241877 0.0000000 -0.9745460 -0.2241877 0.0000000 -0.9745460 0.0952150 0.0000000 0.9954567 0.0952150 0.0000000 0.9954567 -0.0606744 0.0000000 -0.9981576 -0.0606744 0.0000000 -0.9981576 0.0910263 0.0000000 0.9958485 0.0910263 0.0000000 0.9958485 0.1043398 0.0000000 -0.9945417 0.1043398 0.0000000 -0.9945417 -0.0910263 0.0000000 0.9958485 -0.0910263 0.0000000 0.9958485 0.0933733 0.0000000 -0.9956312 0.0933733 0.0000000 -0.9956312 -0.0952150 0.0000000 0.9954567 -0.0952150 0.0000000 0.9954567 -0.0911386 0.0000000 -0.9958382 -0.0911386 0.0000000 -0.9958382 0.0787085 0.0000000 0.9968977 0.0787085 0.0000000 0.9968977 -0.0952132 0.0000000 -0.9954569 -0.0952132 0.0000000 -0.9954569 0.2510620 0.0000000 0.9679710 0.2510620 0.0000000 0.9679710 0.0790484 0.0000000 -0.9968708 0.0790484 0.0000000 -0.9968708 0.4153864 0.0000000 0.9096451 0.4153864 0.0000000 0.9096451 0.2509671 0.0000000 -0.9679956 0.2509671 0.0000000 -0.9679956 0.5667347 0.0000000 0.8239003 0.5667347 0.0000000 0.8239003 0.4152125 0.0000000 -0.9097245 0.4152125 0.0000000 -0.9097245 0.7013656 0.0000000 0.7128017 0.7013656 0.0000000 0.7128017 0.5668687 0.0000000 -0.8238082 0.5668687 0.0000000 -0.8238082 0.8145353 0.0000000 0.5801139 0.8145353 0.0000000 0.5801139 0.7013512 0.0000000 -0.7128159 0.7013512 0.0000000 -0.7128159 0.9028070 0.0000000 0.4300460 0.9028070 0.0000000 0.4300460 0.8144728 0.0000000 -0.5802017 0.8144728 0.0000000 -0.5802017 0.9637666 0.0000000 0.2667468 0.9637666 0.0000000 0.2667468 0.9028338 -0.0000000 -0.4299898 0.9028338 -0.0000000 -0.4299898 0.9954558 -0.0000000 0.0952253 0.9954558 -0.0000000 0.0952253 0.9637895 -0.0000000 -0.2666642 0.9637895 -0.0000000 -0.2666642 0.9968706 -0.0000000 -0.0790512 0.9968706 -0.0000000 -0.0790512 0.9954524 -0.0000000 -0.0952598 0.9954524 -0.0000000 -0.0952598 0.9679993 0.0000000 -0.2509531 0.9679993 0.0000000 -0.2509531 0.9968701 -0.0000000 0.0790575 0.9968701 -0.0000000 0.0790575 0.9097100 0.0000000 -0.4152441 0.9097100 0.0000000 -0.4152441 0.9680041 0.0000000 0.2509345 0.9680041 0.0000000 0.2509345 0.8237866 0.0000000 -0.5669000 0.8237866 0.0000000 -0.5669000 0.9097128 0.0000000 0.4152380 0.9097128 0.0000000 0.4152380 0.7128277 0.0000000 -0.7013392 0.7128277 0.0000000 -0.7013392 0.8237897 0.0000000 0.5668955 0.8237897 0.0000000 0.5668955 0.5802183 0.0000000 -0.8144610 0.5802183 0.0000000 -0.8144610 0.7128244 0.0000000 0.7013426 0.7128244 0.0000000 0.7013426 0.4299849 0.0000000 -0.9028361 0.4299849 0.0000000 -0.9028361 0.5802215 0.0000000 0.8144587 0.5802215 0.0000000 0.8144587 0.3496434 0.0000000 -0.9368829 0.3496434 0.0000000 -0.9368829 0.4299823 0.0000000 0.9028373 0.4299823 0.0000000 0.9028373 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3495762 0.0000000 0.9369079 0.3495762 0.0000000 0.9369079 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 7 4 7 12 13 14 11 8 11 14 15 16 13 12 13 16 17 18 15 14 15 18 19 16 20 17 20 16 21 22 18 23 18 22 19 20 24 25 24 20 21 26 23 27 23 26 22 24 28 25 28 24 29 30 27 31 27 30 26 29 32 28 32 29 33 34 31 35 31 34 30 33 36 32 36 33 37 38 34 35 34 38 39 37 40 36 40 37 41 42 38 43 38 42 39 41 44 40 44 41 45 46 43 47 43 46 42 44 48 49 48 44 45 50 47 51 47 50 46 48 52 49 52 48 53 54 51 55 51 54 50 52 56 57 56 52 53 58 55 59 55 58 54 57 60 61 60 57 56 58 62 63 62 58 59 61 64 65 64 61 60 63 66 67 66 63 62 65 68 69 68 65 64 67 70 71 70 67 66 69 72 73 72 69 68 71 74 75 74 71 70 73 76 77 76 73 72 75 78 79 78 75 74 77 80 81 80 77 76 79 82 83 82 79 78 81 84 85 84 81 80 83 86 87 86 83 82 85 88 89 88 85 84 87 90 91 90 87 86 89 92 93 92 89 88 91 94 95 94 91 90 93 96 97 96 93 92 95 98 99 98 95 94 97 100 101 100 97 96 99 102 103 102 99 98 101 104 105 104 101 100 103 106 107 106 103 102 104 108 105 108 104 109 107 110 111 110 107 106 109 112 108 112 109 113 114 110 115 110 114 111 112 116 117 116 112 113 118 114 115 114 118 119 116 120 117 120 116 121 122 118 123 118 122 119 121 124 120 124 121 125 126 123 127 123 126 122 125 128 124 128 125 129 130 126 127 126 130 131 128 132 133 132 128 129 134 130 135 130 134 131 132 136 133 136 132 137 138 135 139 135 138 134 137 140 136 140 137 141 142 139 143 139 142 138 144 140 141 140 144 145 146 143 147 143 146 142 148 145 144 145 148 149 150 146 147 146 150 151 152 149 148 149 152 153 154 151 150 151 154 155 156 157 158 157 156 159 160 155 154 155 160 161

-
-
-
- - - - 162.9495276 47.2440945 -7212.1220472 157.4803150 263.7795276 -7212.5984252 157.4803150 47.2440945 -7212.5984252 162.9495276 263.7795276 -7212.1220472 152.0111024 263.7795276 -7212.1220472 152.0111024 47.2440945 -7212.1220472 168.2525984 47.2440945 -7210.6968504 168.2525984 263.7795276 -7210.6968504 146.7080315 263.7795276 -7210.6968504 146.7080315 47.2440945 -7210.6968504 173.2283465 47.2440945 -7208.3779528 173.2283465 263.7795276 -7208.3779528 141.7322835 263.7795276 -7208.3779528 141.7322835 47.2440945 -7208.3779528 177.7255906 47.2440945 -7205.2283465 177.7255906 263.7795276 -7205.2283465 137.2350394 263.7795276 -7205.2283465 137.2350394 47.2440945 -7205.2283465 181.6076772 47.2440945 -7201.3464567 181.6076772 263.7795276 -7201.3464567 133.3529528 263.7795276 -7201.3464567 133.3529528 47.2440945 -7201.3464567 184.7567323 263.7795276 -7196.8503937 184.7567323 47.2440945 -7196.8503937 130.2039370 47.2440945 -7196.8503937 130.2039370 263.7795276 -7196.8503937 187.0769291 263.7795276 -7191.8740157 187.0769291 47.2440945 -7191.8740157 127.8837008 47.2440945 -7191.8740157 127.8837008 263.7795276 -7191.8740157 188.4978740 263.7795276 -7186.5708661 188.4978740 47.2440945 -7186.5708661 126.4627559 263.7795276 -7186.5708661 126.4627559 47.2440945 -7186.5708661 188.9763780 47.2440945 -7181.1023622 188.9763780 263.7795276 -7181.1023622 125.9842520 47.2440945 -7181.1023622 125.9842520 263.7795276 -7181.1023622 188.4978740 263.7795276 -7175.6338583 188.4978740 47.2440945 -7175.6338583 126.4627559 47.2440945 -7175.6338583 126.4627559 263.7795276 -7175.6338583 187.0769291 263.7795276 -7170.3307087 187.0769291 47.2440945 -7170.3307087 127.8837008 47.2440945 -7170.3307087 127.8837008 263.7795276 -7170.3307087 184.7567323 263.7795276 -7165.3543307 184.7567323 47.2440945 -7165.3543307 130.2039370 47.2440945 -7165.3543307 130.2039370 263.7795276 -7165.3543307 181.6076772 263.7795276 -7160.8582677 181.6076772 47.2440945 -7160.8582677 133.3529528 263.7795276 -7160.8582677 133.3529528 47.2440945 -7160.8582677 177.7255906 47.2440945 -7156.9763780 177.7255906 263.7795276 -7156.9763780 137.2350394 263.7795276 -7156.9763780 137.2350394 47.2440945 -7156.9763780 173.2283465 47.2440945 -7153.8267717 173.2283465 263.7795276 -7153.8267717 141.7322835 263.7795276 -7153.8267717 141.7322835 47.2440945 -7153.8267717 168.2525984 47.2440945 -7151.5039370 168.2525984 263.7795276 -7151.5039370 146.7080315 263.7795276 -7151.5039370 146.7080315 47.2440945 -7151.5039370 162.9495276 47.2440945 -7150.0866142 162.9495276 263.7795276 -7150.0866142 152.0111024 263.7795276 -7150.0866142 152.0111024 47.2440945 -7150.0866142 157.4803150 47.2440945 -7149.6062992 157.4803150 263.7795276 -7149.6062992 152.5590551 263.7795276 -7150.0354331 152.5590551 47.2440945 -7150.0354331 - - - - - - - - - - -0.1738266 -0.0000000 0.9847763 0.0000106 0.0000003 1.0000000 0.0000106 0.0000003 1.0000000 -0.1738266 -0.0000000 0.9847763 0.1738370 0.0000003 0.9847744 0.1738370 0.0000003 0.9847744 -0.3422675 -0.0000000 0.9396025 -0.3422675 -0.0000000 0.9396025 0.3422675 -0.0000000 0.9396025 0.3422675 -0.0000000 0.9396025 -0.4999437 0.0000000 0.8660579 -0.4999437 0.0000000 0.8660579 0.4999437 0.0000000 0.8660579 0.4999437 0.0000000 0.8660579 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.7659942 0.0000000 0.6428475 -0.7659942 0.0000000 0.6428475 0.7659961 0.0000000 0.6428452 0.7659961 0.0000000 0.6428452 -0.8660061 0.0000000 0.5000334 -0.8660061 0.0000000 0.5000334 0.8660060 0.0000000 0.5000337 0.8660060 0.0000000 0.5000337 -0.9397027 -0.0000000 0.3419924 -0.9397027 -0.0000000 0.3419924 0.9397016 -0.0000000 0.3419954 0.9397016 -0.0000000 0.3419954 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 -0.0000000 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -0.9397027 -0.0000000 -0.3419924 -0.9397027 -0.0000000 -0.3419924 0.9397016 0.0000000 -0.3419954 0.9397016 0.0000000 -0.3419954 -0.8660061 0.0000000 -0.5000334 -0.8660061 0.0000000 -0.5000334 0.8660060 0.0000000 -0.5000337 0.8660060 0.0000000 -0.5000337 -0.7659942 0.0000000 -0.6428475 -0.7659942 0.0000000 -0.6428475 0.7659961 0.0000000 -0.6428452 0.7659961 0.0000000 -0.6428452 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.5002251 0.0000000 -0.8658954 -0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 -0.3419220 -0.0000000 -0.9397283 -0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 -0.1734963 -0.0000000 -0.9848345 -0.1734963 -0.0000000 -0.9848345 0.1762222 -0.0000000 -0.9843504 0.1762222 -0.0000000 -0.9843504 -0.0003084 0.0000000 -1.0000000 -0.0003084 0.0000000 -1.0000000 0.0899353 0.0000000 -0.9959476 0.0899353 0.0000000 -0.9959476 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 17 20 21 20 17 16 22 18 23 18 22 19 20 24 21 24 20 25 26 23 27 23 26 22 25 28 24 28 25 29 30 27 31 27 30 26 28 32 33 32 28 29 34 30 31 30 34 35 32 36 33 36 32 37 38 34 39 34 38 35 37 40 36 40 37 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 48 44 48 45 49 50 47 51 47 50 46 48 52 53 52 48 49 50 54 55 54 50 51 56 53 52 53 56 57 55 58 59 58 55 54 60 57 56 57 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 72 69 68 69 72 73 71 73 72 73 71 70

-
-
-
- - - - -157.4803150 47.2440945 -7212.5984252 -162.9495276 263.7795276 -7212.1220472 -162.9495276 47.2440945 -7212.1220472 -157.4803150 263.7795276 -7212.5984252 -168.2525984 263.7795276 -7210.6968504 -168.2525984 47.2440945 -7210.6968504 -152.0111024 47.2440945 -7212.1220472 -152.0111024 263.7795276 -7212.1220472 -173.2283465 263.7795276 -7208.3779528 -173.2283465 47.2440945 -7208.3779528 -146.7080315 47.2440945 -7210.6968504 -146.7080315 263.7795276 -7210.6968504 -177.7255906 263.7795276 -7205.2283465 -177.7255906 47.2440945 -7205.2283465 -141.7322835 47.2440945 -7208.3779528 -141.7322835 263.7795276 -7208.3779528 -181.6076772 263.7795276 -7201.3464567 -181.6076772 47.2440945 -7201.3464567 -137.2350394 47.2440945 -7205.2283465 -137.2350394 263.7795276 -7205.2283465 -184.7567323 47.2440945 -7196.8503937 -184.7567323 263.7795276 -7196.8503937 -133.3529528 47.2440945 -7201.3464567 -133.3529528 263.7795276 -7201.3464567 -187.0769291 47.2440945 -7191.8740157 -187.0769291 263.7795276 -7191.8740157 -130.2039370 263.7795276 -7196.8503937 -130.2039370 47.2440945 -7196.8503937 -188.4978740 263.7795276 -7186.5708661 -188.4978740 47.2440945 -7186.5708661 -127.8837008 263.7795276 -7191.8740157 -127.8837008 47.2440945 -7191.8740157 -188.9763780 47.2440945 -7181.1023622 -188.9763780 263.7795276 -7181.1023622 -126.4627559 263.7795276 -7186.5708661 -126.4627559 47.2440945 -7186.5708661 -188.4978740 47.2440945 -7175.6338583 -188.4978740 263.7795276 -7175.6338583 -125.9842520 47.2440945 -7181.1023622 -125.9842520 263.7795276 -7181.1023622 -187.0769291 47.2440945 -7170.3307087 -187.0769291 263.7795276 -7170.3307087 -126.4627559 263.7795276 -7175.6338583 -126.4627559 47.2440945 -7175.6338583 -184.7567323 47.2440945 -7165.3543307 -184.7567323 263.7795276 -7165.3543307 -127.8837008 263.7795276 -7170.3307087 -127.8837008 47.2440945 -7170.3307087 -181.6076772 263.7795276 -7160.8582677 -181.6076772 47.2440945 -7160.8582677 -130.2039370 263.7795276 -7165.3543307 -130.2039370 47.2440945 -7165.3543307 -177.7255906 263.7795276 -7156.9763780 -177.7255906 47.2440945 -7156.9763780 -133.3529528 263.7795276 -7160.8582677 -133.3529528 47.2440945 -7160.8582677 -173.2283465 263.7795276 -7153.8267717 -173.2283465 47.2440945 -7153.8267717 -137.2350394 47.2440945 -7156.9763780 -137.2350394 263.7795276 -7156.9763780 -168.2525984 263.7795276 -7151.5039370 -168.2525984 47.2440945 -7151.5039370 -141.7322835 47.2440945 -7153.8267717 -141.7322835 263.7795276 -7153.8267717 -162.9495276 263.7795276 -7150.0866142 -162.9495276 47.2440945 -7150.0866142 -146.7080315 47.2440945 -7151.5039370 -146.7080315 263.7795276 -7151.5039370 -157.4803150 263.7795276 -7149.6062992 -157.4803150 47.2440945 -7149.6062992 -152.0111024 47.2440945 -7150.0866142 -152.0111024 263.7795276 -7150.0866142 - - - - - - - - - - 0.0000000 0.0000000 1.0000000 0.1738266 -0.0000000 0.9847763 0.1738266 -0.0000000 0.9847763 0.0000000 0.0000000 1.0000000 0.3422675 -0.0000000 0.9396025 0.3422675 -0.0000000 0.9396025 -0.1738266 -0.0000000 0.9847763 -0.1738266 -0.0000000 0.9847763 0.4999437 0.0000000 0.8660579 0.4999437 0.0000000 0.8660579 -0.3422675 -0.0000000 0.9396025 -0.3422675 -0.0000000 0.9396025 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.4999437 0.0000000 0.8660579 -0.4999437 0.0000000 0.8660579 0.7659942 0.0000000 0.6428475 0.7659942 0.0000000 0.6428475 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.8660061 0.0000000 0.5000334 0.8660061 0.0000000 0.5000334 -0.7659961 0.0000000 0.6428452 -0.7659961 0.0000000 0.6428452 0.9397027 -0.0000000 0.3419924 0.9397027 -0.0000000 0.3419924 -0.8660060 0.0000000 0.5000337 -0.8660060 0.0000000 0.5000337 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -0.9397016 -0.0000000 0.3419954 -0.9397016 -0.0000000 0.3419954 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 -0.0000000 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 -0.0000000 0.9397027 -0.0000000 -0.3419924 0.9397027 -0.0000000 -0.3419924 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 0.8660061 0.0000000 -0.5000334 0.8660061 0.0000000 -0.5000334 -0.9397016 0.0000000 -0.3419954 -0.9397016 0.0000000 -0.3419954 0.7659942 0.0000000 -0.6428475 0.7659942 0.0000000 -0.6428475 -0.8660060 0.0000000 -0.5000337 -0.8660060 0.0000000 -0.5000337 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.7659961 0.0000000 -0.6428452 -0.7659961 0.0000000 -0.6428452 0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 -0.5002251 0.0000000 -0.8658954 -0.5002251 0.0000000 -0.8658954 0.1734963 -0.0000000 -0.9848345 0.1734963 -0.0000000 -0.9848345 -0.3419220 -0.0000000 -0.9397283 -0.3419220 -0.0000000 -0.9397283 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1734963 -0.0000000 -0.9848345 -0.1734963 -0.0000000 -0.9848345 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 16 20 17 20 16 21 22 19 18 19 22 23 21 24 20 24 21 25 26 22 27 22 26 23 24 28 29 28 24 25 30 27 31 27 30 26 28 32 29 32 28 33 34 31 35 31 34 30 33 36 32 36 33 37 38 34 35 34 38 39 37 40 36 40 37 41 42 38 43 38 42 39 41 44 40 44 41 45 46 43 47 43 46 42 44 48 49 48 44 45 50 47 51 47 50 46 52 49 48 49 52 53 54 51 55 51 54 50 56 53 52 53 56 57 54 58 59 58 54 55 60 57 56 57 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 71 69 68 69 71 70

-
-
-
- - - - -157.4803150 47.2440945 -4732.2834646 -162.9495276 263.7795276 -4731.8031496 -162.9495276 47.2440945 -4731.8031496 -157.4803150 263.7795276 -4732.2834646 -168.2525984 263.7795276 -4730.3858268 -168.2525984 47.2440945 -4730.3858268 -152.0111024 47.2440945 -4731.8031496 -152.0111024 263.7795276 -4731.8031496 -173.2283465 263.7795276 -4728.0629921 -173.2283465 47.2440945 -4728.0629921 -146.7080315 47.2440945 -4730.3858268 -146.7080315 263.7795276 -4730.3858268 -177.7255906 263.7795276 -4724.9133858 -177.7255906 47.2440945 -4724.9133858 -141.7322835 47.2440945 -4728.0629921 -141.7322835 263.7795276 -4728.0629921 -181.6076772 263.7795276 -4721.0314961 -181.6076772 47.2440945 -4721.0314961 -137.2350394 47.2440945 -4724.9133858 -137.2350394 263.7795276 -4724.9133858 -184.7567323 47.2440945 -4716.5354331 -184.7567323 263.7795276 -4716.5354331 -133.3529528 47.2440945 -4721.0314961 -133.3529528 263.7795276 -4721.0314961 -187.0769291 47.2440945 -4711.5590551 -187.0769291 263.7795276 -4711.5590551 -130.2039370 263.7795276 -4716.5354331 -130.2039370 47.2440945 -4716.5354331 -188.4978740 263.7795276 -4706.2559055 -188.4978740 47.2440945 -4706.2559055 -127.8837008 47.2440945 -4711.5590551 -127.8837008 263.7795276 -4711.5590551 -188.9763780 47.2440945 -4700.7874016 -188.9763780 263.7795276 -4700.7874016 -126.4627559 263.7795276 -4706.2559055 -126.4627559 47.2440945 -4706.2559055 -188.4978740 47.2440945 -4695.3188976 -188.4978740 263.7795276 -4695.3188976 -125.9842520 263.7795276 -4700.7874016 -125.9842520 47.2440945 -4700.7874016 -187.0769291 47.2440945 -4690.0157480 -187.0769291 263.7795276 -4690.0157480 -126.4627559 263.7795276 -4695.3188976 -126.4627559 47.2440945 -4695.3188976 -184.7567323 47.2440945 -4685.0393701 -184.7567323 263.7795276 -4685.0393701 -127.8837008 263.7795276 -4690.0157480 -127.8837008 47.2440945 -4690.0157480 -181.6076772 47.2440945 -4680.5433071 -181.6076772 263.7795276 -4680.5433071 -130.2039370 263.7795276 -4685.0393701 -130.2039370 47.2440945 -4685.0393701 -177.7255906 263.7795276 -4676.6614173 -177.7255906 47.2440945 -4676.6614173 -133.3529528 263.7795276 -4680.5433071 -133.3529528 47.2440945 -4680.5433071 -173.2283465 263.7795276 -4673.5118110 -173.2283465 47.2440945 -4673.5118110 -137.2350394 47.2440945 -4676.6614173 -137.2350394 263.7795276 -4676.6614173 -168.2525984 263.7795276 -4671.1889764 -168.2525984 47.2440945 -4671.1889764 -141.7322835 47.2440945 -4673.5118110 -141.7322835 263.7795276 -4673.5118110 -162.9495276 263.7795276 -4669.7716535 -162.9495276 47.2440945 -4669.7716535 -146.7080315 47.2440945 -4671.1889764 -146.7080315 263.7795276 -4671.1889764 -157.4803150 263.7795276 -4669.2913386 -157.4803150 47.2440945 -4669.2913386 -152.0111024 47.2440945 -4669.7716535 -152.0111024 263.7795276 -4669.7716535 - - - - - - - - - - 0.0000000 0.0000000 1.0000000 0.1734963 -0.0000000 0.9848345 0.1734963 -0.0000000 0.9848345 0.0000000 0.0000000 1.0000000 0.3419220 -0.0000000 0.9397283 0.3419220 -0.0000000 0.9397283 -0.1734963 -0.0000000 0.9848345 -0.1734963 -0.0000000 0.9848345 0.5002251 0.0000000 0.8658954 0.5002251 0.0000000 0.8658954 -0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 0.7659942 0.0000000 0.6428475 0.7659942 0.0000000 0.6428475 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.8660061 0.0000000 0.5000334 0.8660061 0.0000000 0.5000334 -0.7659961 0.0000000 0.6428452 -0.7659961 0.0000000 0.6428452 0.9397027 -0.0000000 0.3419924 0.9397027 -0.0000000 0.3419924 -0.8660060 0.0000000 0.5000337 -0.8660060 0.0000000 0.5000337 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -0.9397016 0.0000000 0.3419954 -0.9397016 0.0000000 0.3419954 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.9397027 -0.0000000 -0.3419924 0.9397027 -0.0000000 -0.3419924 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 0.8660061 0.0000000 -0.5000334 0.8660061 0.0000000 -0.5000334 -0.9397016 -0.0000000 -0.3419954 -0.9397016 -0.0000000 -0.3419954 0.7659942 0.0000000 -0.6428475 0.7659942 0.0000000 -0.6428475 -0.8660060 0.0000000 -0.5000337 -0.8660060 0.0000000 -0.5000337 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.7659961 0.0000000 -0.6428452 -0.7659961 0.0000000 -0.6428452 0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 -0.5002251 0.0000000 -0.8658954 -0.5002251 0.0000000 -0.8658954 0.1734963 -0.0000000 -0.9848345 0.1734963 -0.0000000 -0.9848345 -0.3419220 -0.0000000 -0.9397283 -0.3419220 -0.0000000 -0.9397283 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1734963 -0.0000000 -0.9848345 -0.1734963 -0.0000000 -0.9848345 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 16 20 17 20 16 21 22 19 18 19 22 23 21 24 20 24 21 25 26 22 27 22 26 23 24 28 29 28 24 25 30 26 27 26 30 31 28 32 29 32 28 33 34 30 35 30 34 31 33 36 32 36 33 37 38 35 39 35 38 34 37 40 36 40 37 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 48 44 48 45 49 50 47 51 47 50 46 52 48 49 48 52 53 54 51 55 51 54 50 56 53 52 53 56 57 54 58 59 58 54 55 60 57 56 57 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 71 69 68 69 71 70

-
-
-
- - - - 162.9495276 47.2440945 -4731.8031496 157.4803150 263.7795276 -4732.2834646 157.4803150 47.2440945 -4732.2834646 162.9495276 263.7795276 -4731.8031496 152.5590551 263.7795276 -4731.8543307 152.5590551 47.2440945 -4731.8543307 168.2525984 47.2440945 -4730.3858268 168.2525984 263.7795276 -4730.3858268 152.0111024 263.7795276 -4731.8031496 152.0111024 47.2440945 -4731.8031496 173.2283465 47.2440945 -4728.0629921 173.2283465 263.7795276 -4728.0629921 146.7080315 263.7795276 -4730.3858268 146.7080315 47.2440945 -4730.3858268 177.7255906 47.2440945 -4724.9133858 177.7255906 263.7795276 -4724.9133858 141.7322835 263.7795276 -4728.0629921 141.7322835 47.2440945 -4728.0629921 181.6076772 47.2440945 -4721.0314961 181.6076772 263.7795276 -4721.0314961 137.2350394 263.7795276 -4724.9133858 137.2350394 47.2440945 -4724.9133858 184.7567323 263.7795276 -4716.5354331 184.7567323 47.2440945 -4716.5354331 133.3529528 263.7795276 -4721.0314961 133.3529528 47.2440945 -4721.0314961 187.0769291 47.2440945 -4711.5590551 187.0769291 263.7795276 -4711.5590551 130.2039370 47.2440945 -4716.5354331 130.2039370 263.7795276 -4716.5354331 188.4978740 263.7795276 -4706.2559055 188.4978740 47.2440945 -4706.2559055 127.8837008 47.2440945 -4711.5590551 127.8837008 263.7795276 -4711.5590551 188.9763780 263.7795276 -4700.7874016 188.9763780 47.2440945 -4700.7874016 126.4627559 263.7795276 -4706.2559055 126.4627559 47.2440945 -4706.2559055 188.4978740 263.7795276 -4695.3188976 188.4978740 47.2440945 -4695.3188976 125.9842520 47.2440945 -4700.7874016 125.9842520 263.7795276 -4700.7874016 187.0769291 263.7795276 -4690.0157480 187.0769291 47.2440945 -4690.0157480 126.4627559 47.2440945 -4695.3188976 126.4627559 263.7795276 -4695.3188976 184.7567323 263.7795276 -4685.0393701 184.7567323 47.2440945 -4685.0393701 127.8837008 47.2440945 -4690.0157480 127.8837008 263.7795276 -4690.0157480 181.6076772 263.7795276 -4680.5433071 181.6076772 47.2440945 -4680.5433071 130.2039370 47.2440945 -4685.0393701 130.2039370 263.7795276 -4685.0393701 177.7255906 47.2440945 -4676.6614173 177.7255906 263.7795276 -4676.6614173 133.3529528 47.2440945 -4680.5433071 133.3529528 263.7795276 -4680.5433071 173.2283465 47.2440945 -4673.5118110 173.2283465 263.7795276 -4673.5118110 137.2350394 263.7795276 -4676.6614173 137.2350394 47.2440945 -4676.6614173 168.2525984 47.2440945 -4671.1889764 168.2525984 263.7795276 -4671.1889764 141.7322835 263.7795276 -4673.5118110 141.7322835 47.2440945 -4673.5118110 162.9495276 47.2440945 -4669.7716535 162.9495276 263.7795276 -4669.7716535 146.7080315 263.7795276 -4671.1889764 146.7080315 47.2440945 -4671.1889764 157.4803150 47.2440945 -4669.2913386 157.4803150 263.7795276 -4669.2913386 152.0111024 263.7795276 -4669.7716535 152.0111024 47.2440945 -4669.7716535 152.5590551 47.2440945 -4669.7204724 152.5590551 263.7795276 -4669.7204724 - - - - - - - - - - -0.1734963 -0.0000000 0.9848345 -0.0003084 0.0000000 1.0000000 -0.0003084 0.0000000 1.0000000 -0.1734963 -0.0000000 0.9848345 0.0899353 0.0000000 0.9959476 0.0899353 0.0000000 0.9959476 -0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 0.1762222 -0.0000000 0.9843504 0.1762222 -0.0000000 0.9843504 -0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 0.3419220 -0.0000000 0.9397283 0.3419220 -0.0000000 0.9397283 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.5002251 0.0000000 0.8658954 0.5002251 0.0000000 0.8658954 -0.7659942 0.0000000 0.6428475 -0.7659942 0.0000000 0.6428475 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.8660061 0.0000000 0.5000334 -0.8660061 0.0000000 0.5000334 0.7659961 0.0000000 0.6428452 0.7659961 0.0000000 0.6428452 -0.9397027 -0.0000000 0.3419924 -0.9397027 -0.0000000 0.3419924 0.8660060 0.0000000 0.5000337 0.8660060 0.0000000 0.5000337 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 0.9397016 0.0000000 0.3419954 0.9397016 0.0000000 0.3419954 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.9397027 -0.0000000 -0.3419924 -0.9397027 -0.0000000 -0.3419924 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -0.8660061 0.0000000 -0.5000334 -0.8660061 0.0000000 -0.5000334 0.9397016 -0.0000000 -0.3419954 0.9397016 -0.0000000 -0.3419954 -0.7659942 0.0000000 -0.6428475 -0.7659942 0.0000000 -0.6428475 0.8660060 0.0000000 -0.5000337 0.8660060 0.0000000 -0.5000337 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.7659961 0.0000000 -0.6428452 0.7659961 0.0000000 -0.6428452 -0.5002251 0.0000000 -0.8658954 -0.5002251 0.0000000 -0.8658954 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.3419220 -0.0000000 -0.9397283 -0.3419220 -0.0000000 -0.9397283 0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 -0.1734963 -0.0000000 -0.9848345 -0.1734963 -0.0000000 -0.9848345 0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 -0.0003084 0.0000000 -1.0000000 -0.0003084 0.0000000 -1.0000000 0.1762222 -0.0000000 -0.9843504 0.1762222 -0.0000000 -0.9843504 0.0899353 0.0000000 -0.9959476 0.0899353 0.0000000 -0.9959476 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 22 23 22 26 27 24 28 25 28 24 29 30 26 31 26 30 27 29 32 28 32 29 33 34 31 35 31 34 30 32 36 37 36 32 33 38 35 39 35 38 34 36 40 37 40 36 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 42 45 48 44 48 45 49 50 47 51 47 50 46 49 52 48 52 49 53 50 54 55 54 50 51 53 56 52 56 53 57 55 58 59 58 55 54 60 56 57 56 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 72 69 68 69 72 73 71 74 75 74 71 70 75 73 72 73 75 74

-
-
-
- - - - -2970.7712598 -3203.2472441 -4360.8464567 -2523.3125984 46.3128346 -2484.7137795 -2976.3929134 -3206.6566929 -4362.8149606 -2964.5515748 -3200.7358268 -4359.3976378 -2957.9228346 -3199.1976378 -4358.5118110 -2964.5515748 -3168.2551181 -4415.6574803 -2970.7712598 -3203.2472441 -4360.8464567 -2970.7712598 -3170.7673228 -4417.1062992 -2964.5515748 -3200.7358268 -4359.3976378 -2957.9228346 -3166.7169291 -4414.7677165 -2957.9228346 -3199.1976378 -4358.5118110 -2484.5405512 74.4876772 -2468.4472441 -2371.2996063 -52.2472835 -2541.6177165 -2372.0472441 -44.8465354 -2537.3444882 -2369.0791339 -59.4231890 -2545.7610236 -2365.4539370 -66.1561811 -2549.6476378 -2045.9944882 34.4715827 -2491.5503937 -2280.2153543 -270.7291339 -2667.7578740 -2726.3114173 -3306.8862205 -4420.6850394 -2276.5901575 -263.9961417 -2663.8712598 -2274.3696850 -256.8202362 -2659.7279528 -2273.6220472 -249.4194488 -2655.4547244 -2273.6220472 -44.8465354 -2537.3444882 -2084.7665354 74.4876772 -2468.4472441 -2077.9299213 73.9696850 -2468.7460630 -2071.3011811 72.4314961 -2469.6342520 -2065.0814961 69.9197638 -2471.0842520 -2059.4598425 66.5108661 -2473.0527559 -2054.6070866 62.3083465 -2475.4787402 -2050.6708661 57.4399606 -2478.2897638 -2047.7704724 52.0535433 -2481.3996063 -2045.9944882 46.3128346 -2484.7137795 -2045.3964567 40.3922047 -2488.1322835 -2339.6661417 -4.7974213 -2514.2224409 -2347.4409449 -7.9370709 -2516.0350394 -2354.4681102 -12.1981969 -2518.4952756 -2360.5334646 -17.4513228 -2521.5279528 -2365.4539370 -23.5368386 -2525.0413386 -2369.0791339 -30.2698425 -2528.9287402 -2371.2996063 -37.4457441 -2533.0720472 -2331.3803150 -2.8746402 -2513.1122047 -2322.8346457 -2.2271555 -2512.7385827 -2314.2889764 -2.8746402 -2513.1122047 -2306.0031496 -4.7974213 -2514.2224409 -2298.2283465 -7.9370709 -2516.0350394 -2291.2011811 -12.1981969 -2518.4952756 -2285.1358268 -17.4513228 -2521.5279528 -2280.2153543 -23.5368386 -2525.0413386 -2276.5901575 -30.2698425 -2528.9287402 -2274.3696850 -37.4457441 -2533.0720472 -2372.0472441 -249.4194488 -2655.4547244 -2360.5334646 -72.2417323 -2553.1618110 -2371.2996063 -242.0186614 -2651.1822835 -2369.0791339 -234.8427953 -2647.0389764 -2365.4539370 -228.1097638 -2643.1515748 -2360.5334646 -222.0242520 -2639.6381890 -2354.4681102 -216.7711417 -2636.6055118 -2354.4681102 -77.4948425 -2556.1944882 -2347.4409449 -212.5100000 -2634.1460630 -2347.4409449 -81.7559843 -2558.6547244 -2339.6661417 -209.3703543 -2632.3326772 -2339.6661417 -84.8956299 -2560.4677165 -2331.3803150 -207.4475591 -2631.2228346 -2331.3803150 -86.8183858 -2561.5771654 -2322.8346457 -206.8000787 -2630.8484252 -2322.8346457 -87.4658661 -2561.9507874 -2314.2889764 -207.4475591 -2631.2228346 -2314.2889764 -86.8183858 -2561.5771654 -2306.0031496 -209.3703543 -2632.3326772 -2306.0031496 -84.8956299 -2560.4677165 -2298.2283465 -212.5100000 -2634.1460630 -2298.2283465 -81.7559843 -2558.6547244 -2291.2011811 -216.7711417 -2636.6055118 -2291.2011811 -77.4948425 -2556.1944882 -2285.1358268 -222.0242520 -2639.6381890 -2285.1358268 -72.2417323 -2553.1618110 -2280.2153543 -228.1097638 -2643.1515748 -2280.2153543 -66.1561811 -2549.6476378 -2276.5901575 -234.8427953 -2647.0389764 -2276.5901575 -59.4231890 -2545.7610236 -2274.3696850 -242.0186614 -2651.1822835 -2274.3696850 -52.2472835 -2541.6177165 -2369.0791339 -263.9961417 -2663.8712598 -2523.3125984 46.3128346 -2484.7137795 -2365.4539370 -270.7291339 -2667.7578740 -2360.5334646 -276.8146457 -2671.2720472 -2354.4681102 -282.0677953 -2674.3047244 -2347.4409449 -286.3288976 -2676.7649606 -2521.5366142 52.0535433 -2481.3996063 -2518.6362205 57.4399606 -2478.2897638 -2514.7000000 62.3083465 -2475.4787402 -2509.8472441 66.5108661 -2473.0527559 -2504.2255906 69.9197638 -2471.0842520 -2498.0062992 72.4314961 -2469.6342520 -2491.3771654 73.9696850 -2468.7460630 -2371.2996063 -256.8202362 -2659.7279528 -2981.2456693 -3210.8586614 -4365.2440945 -2976.3929134 -3206.6566929 -4362.8149606 -2976.3929134 -3174.1755906 -4419.0748031 -2964.5515748 -3168.2551181 -4415.6574803 -2970.7712598 -3170.7673228 -4417.1062992 -3203.6291339 -3262.5645669 -4470.1062992 -2523.3125984 78.7931496 -2540.9712598 -2957.9228346 -3166.7169291 -4414.7677165 -2951.0870079 -3166.1996063 -4414.4685039 -2951.0870079 -3166.1996063 -4414.4685039 -2951.0870079 -3198.6791339 -4358.2125984 -2518.6362205 57.4399606 -2478.2897638 -2521.5366142 84.5338583 -2537.6570866 -2521.5366142 52.0535433 -2481.3996063 -2518.6362205 89.9202756 -2534.5476378 -2523.3125984 78.7931496 -2540.9712598 -2523.3125984 46.3128346 -2484.7137795 -2951.0870079 -3198.6791339 -4358.2125984 -2944.2500000 -3199.1976378 -4358.5118110 -2937.6208661 -3200.7358268 -4359.3976378 -2339.6661417 -289.4685433 -2678.5779528 -2331.3803150 -291.3913386 -2679.6874016 -2322.8346457 -292.0388189 -2680.0610236 -2354.4681102 -249.5874803 -2730.5622047 -2347.4409449 -286.3288976 -2676.7649606 -2347.4409449 -253.8485827 -2733.0220472 -2354.4681102 -282.0677953 -2674.3047244 -2360.5334646 -276.8146457 -2671.2720472 -2360.5334646 -244.3343307 -2727.5295276 -2365.4539370 -270.7291339 -2667.7578740 -2365.4539370 -238.2488189 -2724.0161417 -2369.0791339 -263.9961417 -2663.8712598 -2369.0791339 -231.5158268 -2720.1287402 -2371.2996063 -256.8202362 -2659.7279528 -2371.2996063 -224.3399213 -2715.9854331 -2372.0472441 -249.4194488 -2655.4547244 -2372.0472441 -216.9391339 -2711.7129921 -2371.2996063 -242.0186614 -2651.1822835 -2371.2996063 -209.5383858 -2707.4397638 -2369.0791339 -234.8427953 -2647.0389764 -2369.0791339 -202.3624803 -2703.2964567 -2365.4539370 -228.1097638 -2643.1515748 -2365.4539370 -195.6294488 -2699.4098425 -2360.5334646 -222.0242520 -2639.6381890 -2360.5334646 -189.5439370 -2695.8960630 -2354.4681102 -216.7711417 -2636.6055118 -2354.4681102 -184.2908268 -2692.8629921 -2347.4409449 -180.0296850 -2690.4035433 -2347.4409449 -212.5100000 -2634.1460630 -2339.6661417 -176.8900394 -2688.5901575 -2339.6661417 -209.3703543 -2632.3326772 -2331.3803150 -174.9672835 -2687.4803150 -2331.3803150 -207.4475591 -2631.2228346 -2322.8346457 -174.3197638 -2687.1066929 -2322.8346457 -206.8000787 -2630.8484252 -2314.2889764 -207.4475591 -2631.2228346 -2314.2889764 -174.9672835 -2687.4803150 -2306.0031496 -209.3703543 -2632.3326772 -2306.0031496 -176.8900394 -2688.5901575 -2298.2283465 -212.5100000 -2634.1460630 -2298.2283465 -180.0296850 -2690.4035433 -2291.2011811 -216.7711417 -2636.6055118 -2291.2011811 -184.2908268 -2692.8629921 -2285.1358268 -189.5439370 -2695.8960630 -2285.1358268 -222.0242520 -2639.6381890 -2280.2153543 -195.6294488 -2699.4098425 -2280.2153543 -228.1097638 -2643.1515748 -2276.5901575 -202.3624803 -2703.2964567 -2276.5901575 -234.8427953 -2647.0389764 -2274.3696850 -209.5383858 -2707.4397638 -2274.3696850 -242.0186614 -2651.1822835 -2273.6220472 -216.9391339 -2711.7129921 -2273.6220472 -249.4194488 -2655.4547244 -2274.3696850 -224.3399213 -2715.9854331 -2274.3696850 -256.8202362 -2659.7279528 -2276.5901575 -231.5158268 -2720.1287402 -2276.5901575 -263.9961417 -2663.8712598 -2280.2153543 -238.2488189 -2724.0161417 -2280.2153543 -270.7291339 -2667.7578740 -2931.4011811 -3203.2472441 -4360.8464567 -2925.7795276 -3206.6566929 -4362.8149606 -2314.2889764 -291.3913386 -2679.6874016 -2306.0031496 -289.4685433 -2678.5779528 -2298.2283465 -286.3288976 -2676.7649606 -2291.2011811 -282.0677953 -2674.3047244 -2285.1358268 -276.8146457 -2671.2720472 -2726.3114173 -3274.4059055 -4476.9409449 -2045.9944882 34.4715827 -2491.5503937 -2726.3114173 -3306.8862205 -4420.6850394 -2045.9944882 66.9518898 -2547.8078740 -2045.3964567 40.3922047 -2488.1322835 -2045.3964567 72.8725197 -2544.3901575 -2045.9944882 46.3128346 -2484.7137795 -2045.9944882 78.7931496 -2540.9712598 -2047.7704724 52.0535433 -2481.3996063 -2047.7704724 84.5338583 -2537.6570866 -2050.6708661 57.4399606 -2478.2897638 -2050.6708661 89.9202756 -2534.5476378 -2054.6070866 62.3083465 -2475.4787402 -2054.6070866 94.7886614 -2531.7366142 -2059.4598425 66.5108661 -2473.0527559 -2059.4598425 98.9911811 -2529.3102362 -2065.0814961 102.4000787 -2527.3421260 -2065.0814961 69.9197638 -2471.0842520 -2071.3011811 104.9118110 -2525.8921260 -2071.3011811 72.4314961 -2469.6342520 -2077.9299213 106.4500000 -2525.0039370 -2077.9299213 73.9696850 -2468.7460630 -2084.7665354 106.9679921 -2524.7051181 -2084.7665354 74.4876772 -2468.4472441 -2484.5405512 74.4876772 -2468.4472441 -2484.5405512 106.9679921 -2524.7051181 -2484.5405512 74.4876772 -2468.4472441 -2365.4539370 -33.6758858 -2605.9059055 -2369.0791339 -59.4231890 -2545.7610236 -2365.4539370 -66.1561811 -2549.6476378 -2369.0791339 -26.9428819 -2602.0185039 -2371.2996063 -52.2472835 -2541.6177165 -2371.2996063 -19.7669803 -2597.8751969 -2372.0472441 -44.8465354 -2537.3444882 -2372.0472441 -12.3662087 -2593.6027559 -2371.2996063 -37.4457441 -2533.0720472 -2371.2996063 -4.9654291 -2589.3295276 -2369.0791339 -30.2698425 -2528.9287402 -2369.0791339 2.2104732 -2585.1862205 -2365.4539370 -23.5368386 -2525.0413386 -2365.4539370 8.9434764 -2581.2996063 -2360.5334646 -17.4513228 -2521.5279528 -2360.5334646 15.0289882 -2577.7858268 -2354.4681102 -12.1981969 -2518.4952756 -2354.4681102 20.2821142 -2574.7527559 -2347.4409449 24.5432441 -2572.2933071 -2347.4409449 -7.9370709 -2516.0350394 -2339.6661417 27.6828937 -2570.4799213 -2339.6661417 -4.7974213 -2514.2224409 -2331.3803150 29.6056732 -2569.3700787 -2331.3803150 -2.8746402 -2513.1122047 -2322.8346457 30.2531575 -2568.9964567 -2322.8346457 -2.2271555 -2512.7385827 -2314.2889764 -2.8746402 -2513.1122047 -2314.2889764 29.6056732 -2569.3700787 -2306.0031496 -4.7974213 -2514.2224409 -2306.0031496 27.6828937 -2570.4799213 -2298.2283465 -7.9370709 -2516.0350394 -2298.2283465 24.5432441 -2572.2933071 -2291.2011811 -12.1981969 -2518.4952756 -2291.2011811 20.2821142 -2574.7527559 -2285.1358268 15.0289882 -2577.7858268 -2285.1358268 -17.4513228 -2521.5279528 -2280.2153543 8.9434764 -2581.2996063 -2280.2153543 -23.5368386 -2525.0413386 -2276.5901575 2.2104732 -2585.1862205 -2276.5901575 -30.2698425 -2528.9287402 -2274.3696850 -4.9654291 -2589.3295276 -2274.3696850 -37.4457441 -2533.0720472 -2273.6220472 -12.3662087 -2593.6027559 -2273.6220472 -44.8465354 -2537.3444882 -2274.3696850 -19.7669803 -2597.8751969 -2274.3696850 -52.2472835 -2541.6177165 -2276.5901575 -26.9428819 -2602.0185039 -2276.5901575 -59.4231890 -2545.7610236 -2280.2153543 -33.6758858 -2605.9059055 -2280.2153543 -66.1561811 -2549.6476378 -2285.1358268 -39.7614173 -2609.4192913 -2285.1358268 -72.2417323 -2553.1618110 -2291.2011811 -45.0145276 -2612.4519685 -2291.2011811 -77.4948425 -2556.1944882 -2298.2283465 -81.7559843 -2558.6547244 -2298.2283465 -49.2756693 -2614.9118110 -2306.0031496 -84.8956299 -2560.4677165 -2306.0031496 -52.4153150 -2616.7251969 -2314.2889764 -86.8183858 -2561.5771654 -2314.2889764 -54.3380709 -2617.8346457 -2322.8346457 -87.4658661 -2561.9507874 -2322.8346457 -54.9855512 -2618.2090551 -2331.3803150 -54.3380709 -2617.8346457 -2331.3803150 -86.8183858 -2561.5771654 -2339.6661417 -52.4153150 -2616.7251969 -2339.6661417 -84.8956299 -2560.4677165 -2347.4409449 -49.2756693 -2614.9118110 -2347.4409449 -81.7559843 -2558.6547244 -2354.4681102 -45.0145276 -2612.4519685 -2354.4681102 -77.4948425 -2556.1944882 -2360.5334646 -72.2417323 -2553.1618110 -2360.5334646 -39.7614173 -2609.4192913 -2491.3771654 73.9696850 -2468.7460630 -2491.3771654 106.4500000 -2525.0039370 -2498.0062992 72.4314961 -2469.6342520 -2498.0062992 104.9118110 -2525.8921260 -2504.2255906 69.9197638 -2471.0842520 -2504.2255906 102.4000787 -2527.3421260 -2509.8472441 66.5108661 -2473.0527559 -2509.8472441 98.9911811 -2529.3102362 -2514.7000000 94.7886614 -2531.7366142 -2514.7000000 62.3083465 -2475.4787402 -2985.1822835 -3215.7271654 -4368.0551181 -3203.6291339 -3295.0448819 -4413.8464567 -2981.2456693 -3178.3779528 -4421.5000000 -2981.2456693 -3210.8586614 -4365.2440945 -2976.3929134 -3174.1755906 -4419.0748031 -3184.5429134 -3298.0129921 -4490.5708661 -3203.6291339 -3274.4059055 -4476.9409449 -3204.2271654 -3268.4854331 -4473.5236220 -3201.8531496 -3280.1468504 -4480.2559055 -3198.9531496 -3285.5330709 -4483.3661417 -3195.0169291 -3290.4019685 -4486.1771654 -3190.1641732 -3294.6047244 -4488.6023622 -2523.3125984 78.7931496 -2540.9712598 -2944.2500000 -3166.7169291 -4414.7677165 -2369.0791339 -231.5158268 -2720.1287402 -2365.4539370 -238.2488189 -2724.0161417 -2360.5334646 -244.3343307 -2727.5295276 -2354.4681102 -249.5874803 -2730.5622047 -2347.4409449 -253.8485827 -2733.0220472 -2339.6661417 -256.9882283 -2734.8354331 -2331.3803150 -258.9110236 -2735.9448819 -2322.8346457 -259.5585039 -2736.3192913 -2314.2889764 -258.9110236 -2735.9448819 -2306.0031496 -256.9882283 -2734.8354331 -2298.2283465 -253.8485827 -2733.0220472 -2291.2011811 -249.5874803 -2730.5622047 -2285.1358268 -244.3343307 -2727.5295276 -2280.2153543 -238.2488189 -2724.0161417 -2371.2996063 -224.3399213 -2715.9854331 -2372.0472441 -216.9391339 -2711.7129921 -2944.2500000 -3199.1976378 -4358.5118110 -2944.2500000 -3166.7169291 -4414.7677165 -2484.5405512 106.9679921 -2524.7051181 -2371.2996063 -4.9654291 -2589.3295276 -2372.0472441 -12.3662087 -2593.6027559 -2369.0791339 2.2104732 -2585.1862205 -2365.4539370 8.9434764 -2581.2996063 -2360.5334646 15.0289882 -2577.7858268 -2354.4681102 20.2821142 -2574.7527559 -2347.4409449 24.5432441 -2572.2933071 -2339.6661417 27.6828937 -2570.4799213 -2084.7665354 106.9679921 -2524.7051181 -2331.3803150 29.6056732 -2569.3700787 -2322.8346457 30.2531575 -2568.9964567 -2314.2889764 29.6056732 -2569.3700787 -2306.0031496 27.6828937 -2570.4799213 -2298.2283465 24.5432441 -2572.2933071 -2291.2011811 20.2821142 -2574.7527559 -2285.1358268 15.0289882 -2577.7858268 -2280.2153543 8.9434764 -2581.2996063 -2276.5901575 2.2104732 -2585.1862205 -2274.3696850 -4.9654291 -2589.3295276 -2273.6220472 -12.3662087 -2593.6027559 -2273.6220472 -216.9391339 -2711.7129921 -2280.2153543 -238.2488189 -2724.0161417 -2937.6208661 -3168.2551181 -4415.6574803 -2944.2500000 -3166.7169291 -4414.7677165 -2276.5901575 -231.5158268 -2720.1287402 -2274.3696850 -224.3399213 -2715.9854331 -2521.5366142 84.5338583 -2537.6570866 -2372.0472441 -216.9391339 -2711.7129921 -2523.3125984 78.7931496 -2540.9712598 -2518.6362205 89.9202756 -2534.5476378 -2514.7000000 94.7886614 -2531.7366142 -2509.8472441 98.9911811 -2529.3102362 -2504.2255906 102.4000787 -2527.3421260 -2498.0062992 104.9118110 -2525.8921260 -2491.3771654 106.4500000 -2525.0039370 -2371.2996063 -19.7669803 -2597.8751969 -2371.2996063 -209.5383858 -2707.4397638 -2369.0791339 -26.9428819 -2602.0185039 -2369.0791339 -202.3624803 -2703.2964567 -2365.4539370 -33.6758858 -2605.9059055 -2365.4539370 -195.6294488 -2699.4098425 -2360.5334646 -39.7614173 -2609.4192913 -2360.5334646 -189.5439370 -2695.8960630 -2354.4681102 -45.0145276 -2612.4519685 -2354.4681102 -184.2908268 -2692.8629921 -2347.4409449 -49.2756693 -2614.9118110 -2347.4409449 -180.0296850 -2690.4035433 -2339.6661417 -52.4153150 -2616.7251969 -2339.6661417 -176.8900394 -2688.5901575 -2331.3803150 -54.3380709 -2617.8346457 -2331.3803150 -174.9672835 -2687.4803150 -2322.8346457 -54.9855512 -2618.2090551 -2322.8346457 -174.3197638 -2687.1066929 -2314.2889764 -54.3380709 -2617.8346457 -2314.2889764 -174.9672835 -2687.4803150 -2306.0031496 -52.4153150 -2616.7251969 -2306.0031496 -176.8900394 -2688.5901575 -2298.2283465 -49.2756693 -2614.9118110 -2298.2283465 -180.0296850 -2690.4035433 -2291.2011811 -45.0145276 -2612.4519685 -2291.2011811 -184.2908268 -2692.8629921 -2285.1358268 -39.7614173 -2609.4192913 -2285.1358268 -189.5439370 -2695.8960630 -2280.2153543 -33.6758858 -2605.9059055 -2280.2153543 -195.6294488 -2699.4098425 -2276.5901575 -26.9428819 -2602.0185039 -2276.5901575 -202.3624803 -2703.2964567 -2274.3696850 -19.7669803 -2597.8751969 -2274.3696850 -209.5383858 -2707.4397638 -3203.6291339 -3262.5645669 -4470.1062992 -3203.6291339 -3295.0448819 -4413.8464567 -2339.6661417 -256.9882283 -2734.8354331 -2331.3803150 -291.3913386 -2679.6874016 -2331.3803150 -258.9110236 -2735.9448819 -2339.6661417 -289.4685433 -2678.5779528 -2937.6208661 -3200.7358268 -4359.3976378 -2937.6208661 -3168.2551181 -4415.6574803 -2322.8346457 -292.0388189 -2680.0610236 -2322.8346457 -259.5585039 -2736.3192913 -2285.1358268 -244.3343307 -2727.5295276 -2285.1358268 -276.8146457 -2671.2720472 -2931.4011811 -3203.2472441 -4360.8464567 -2931.4011811 -3170.7673228 -4417.1062992 -2925.7795276 -3206.6566929 -4362.8149606 -2925.7795276 -3174.1755906 -4419.0748031 -2920.9271654 -3210.8586614 -4365.2440945 -2291.2011811 -249.5874803 -2730.5622047 -2291.2011811 -282.0677953 -2674.3047244 -2298.2283465 -286.3288976 -2676.7649606 -2298.2283465 -253.8485827 -2733.0220472 -2306.0031496 -289.4685433 -2678.5779528 -2306.0031496 -256.9882283 -2734.8354331 -2314.2889764 -291.3913386 -2679.6874016 -2314.2889764 -258.9110236 -2735.9448819 -2045.9944882 66.9518898 -2547.8078740 -2925.7795276 -3174.1755906 -4419.0748031 -2931.4011811 -3170.7673228 -4417.1062992 -2920.9271654 -3178.3779528 -4421.5000000 -2916.9909449 -3183.2468504 -4424.3110236 -2914.0905512 -3188.6330709 -4427.4212598 -2912.3149606 -3194.3740157 -4430.7362205 -2911.7161417 -3200.2948819 -4434.1535433 -2758.2468504 -3302.0629921 -4492.9094488 -2751.6177165 -3300.5244094 -4492.0196850 -2745.3988189 -3298.0129921 -4490.5708661 -2739.7763780 -3294.6047244 -4488.6023622 -2734.9240157 -3290.4019685 -4486.1771654 -2730.9877953 -3285.5330709 -4483.3661417 -2728.0874016 -3280.1468504 -4480.2559055 -2726.3114173 -3274.4059055 -4476.9409449 -2914.0905512 -3211.9559055 -4440.8858268 -2916.9909449 -3217.3421260 -4443.9960630 -2912.3149606 -3206.2149606 -4437.5708661 -2728.0874016 -3280.1468504 -4480.2559055 -2728.0874016 -3312.6267717 -4424.0000000 -2045.9944882 66.9518898 -2547.8078740 -2077.9299213 106.4500000 -2525.0039370 -2071.3011811 104.9118110 -2525.8921260 -2065.0814961 102.4000787 -2527.3421260 -2059.4598425 98.9911811 -2529.3102362 -2054.6070866 94.7886614 -2531.7366142 -2050.6708661 89.9202756 -2534.5476378 -2047.7704724 84.5338583 -2537.6570866 -2045.9944882 78.7931496 -2540.9712598 -2045.3964567 72.8725197 -2544.3901575 -2988.0826772 -3221.1133858 -4371.1614173 -2985.1822835 -3183.2468504 -4424.3110236 -2985.1822835 -3215.7271654 -4368.0551181 -3178.3228346 -3300.5244094 -4492.0196850 -3171.6940945 -3302.0629921 -4492.9094488 -2981.2456693 -3178.3779528 -4421.5000000 -2985.1822835 -3183.2468504 -4424.3110236 -2988.0826772 -3188.6330709 -4427.4212598 -2989.8582677 -3194.3740157 -4430.7362205 -2990.4570866 -3200.2948819 -4434.1535433 -2988.0826772 -3211.9559055 -4440.8858268 -2985.1822835 -3217.3421260 -4443.9960630 -2989.8582677 -3206.2149606 -4437.5708661 -3184.5429134 -3330.4933071 -4434.3149606 -3190.1641732 -3294.6047244 -4488.6023622 -3184.5429134 -3298.0129921 -4490.5708661 -3190.1641732 -3327.0842520 -4432.3464567 -3195.0169291 -3322.8818898 -4429.9212598 -3195.0169291 -3290.4019685 -4486.1771654 -3198.9531496 -3318.0133858 -4427.1102362 -3198.9531496 -3285.5330709 -4483.3661417 -3201.8531496 -3312.6267717 -4424.0000000 -3201.8531496 -3280.1468504 -4480.2559055 -3203.6291339 -3306.8862205 -4420.6850394 -3203.6291339 -3274.4059055 -4476.9409449 -3204.2271654 -3300.9657480 -4417.2677165 -3204.2271654 -3268.4854331 -4473.5236220 -2920.9271654 -3178.3779528 -4421.5000000 -2920.9271654 -3210.8586614 -4365.2440945 -2916.9909449 -3215.7271654 -4368.0551181 -2730.9877953 -3285.5330709 -4483.3661417 -2730.9877953 -3318.0133858 -4427.1102362 -2734.9240157 -3290.4019685 -4486.1771654 -2734.9240157 -3322.8818898 -4429.9212598 -2739.7763780 -3294.6047244 -4488.6023622 -2739.7763780 -3327.0842520 -4432.3464567 -2745.3988189 -3330.4933071 -4434.3149606 -2745.3988189 -3298.0129921 -4490.5708661 -2751.6177165 -3333.0055118 -4435.7637795 -2751.6177165 -3300.5244094 -4492.0196850 -2758.2468504 -3334.5437008 -4436.6535433 -2758.2468504 -3302.0629921 -4492.9094488 -2925.7795276 -3226.4129921 -4449.2322835 -2765.0838583 -3302.5807087 -4493.2086614 -2931.4011811 -3229.8224409 -4451.2007874 -2920.9271654 -3222.2106299 -4446.8070866 -2914.0905512 -3244.4366142 -4384.6299213 -2916.9909449 -3217.3421260 -4443.9960630 -2916.9909449 -3249.8224409 -4387.7401575 -2914.0905512 -3211.9559055 -4440.8858268 -2912.3149606 -3238.6956693 -4381.3149606 -2912.3149606 -3206.2149606 -4437.5708661 -2911.7161417 -3232.7748031 -4377.8976378 -2911.7161417 -3200.2948819 -4434.1535433 -2912.3149606 -3226.8543307 -4374.4763780 -2912.3149606 -3194.3740157 -4430.7362205 -2914.0905512 -3221.1133858 -4371.1614173 -2914.0905512 -3188.6330709 -4427.4212598 -2916.9909449 -3215.7271654 -4368.0551181 -2916.9909449 -3183.2468504 -4424.3110236 -2745.3988189 -3330.4933071 -4434.3149606 -2914.0905512 -3244.4366142 -4384.6299213 -2916.9909449 -3249.8224409 -4387.7401575 -2912.3149606 -3238.6956693 -4381.3149606 -2739.7763780 -3327.0842520 -4432.3464567 -2734.9240157 -3322.8818898 -4429.9212598 -2730.9877953 -3318.0133858 -4427.1102362 -2728.0874016 -3312.6267717 -4424.0000000 -2989.8582677 -3226.8543307 -4374.4763780 -2988.0826772 -3188.6330709 -4427.4212598 -2988.0826772 -3221.1133858 -4371.1614173 -2985.1822835 -3217.3421260 -4443.9960630 -2988.0826772 -3244.4366142 -4384.6299213 -2985.1822835 -3249.8224409 -4387.7401575 -2988.0826772 -3211.9559055 -4440.8858268 -3164.8578740 -3302.5807087 -4493.2086614 -2981.2456693 -3222.2106299 -4446.8070866 -2976.3929134 -3226.4129921 -4449.2322835 -2970.7712598 -3229.8224409 -4451.2007874 -2964.5515748 -3232.3338583 -4452.6496063 -3171.6940945 -3334.5437008 -4436.6535433 -3178.3228346 -3300.5244094 -4492.0196850 -3171.6940945 -3302.0629921 -4492.9094488 -3178.3228346 -3333.0055118 -4435.7637795 -2989.8582677 -3194.3740157 -4430.7362205 -2989.8582677 -3226.8543307 -4374.4763780 -2990.4570866 -3200.2948819 -4434.1535433 -2990.4570866 -3232.7748031 -4377.8976378 -2989.8582677 -3206.2149606 -4437.5708661 -2989.8582677 -3238.6956693 -4381.3149606 -2989.8582677 -3238.6956693 -4381.3149606 -3190.1641732 -3327.0842520 -4432.3464567 -3184.5429134 -3330.4933071 -4434.3149606 -3195.0169291 -3322.8818898 -4429.9212598 -3198.9531496 -3318.0133858 -4427.1102362 -3201.8531496 -3312.6267717 -4424.0000000 -3203.6291339 -3306.8862205 -4420.6850394 -3204.2271654 -3300.9657480 -4417.2677165 -2914.0905512 -3221.1133858 -4371.1614173 -2765.0838583 -3335.0618110 -4436.9527559 -2920.9271654 -3254.6909449 -4390.5511811 -2925.7795276 -3258.8933071 -4392.9763780 -2758.2468504 -3334.5437008 -4436.6535433 -2751.6177165 -3333.0055118 -4435.7637795 -2765.0838583 -3335.0618110 -4436.9527559 -2765.0838583 -3302.5807087 -4493.2086614 -2920.9271654 -3254.6909449 -4390.5511811 -2925.7795276 -3226.4129921 -4449.2322835 -2925.7795276 -3258.8933071 -4392.9763780 -2920.9271654 -3222.2106299 -4446.8070866 -2951.0870079 -3234.3901575 -4453.8385827 -2957.9228346 -3233.8720472 -4453.5393701 -2944.2500000 -3233.8720472 -4453.5393701 -2937.6208661 -3232.3338583 -4452.6496063 -2931.4011811 -3262.3023622 -4394.9448819 -2931.4011811 -3229.8224409 -4451.2007874 -2911.7161417 -3232.7748031 -4377.8976378 -2912.3149606 -3226.8543307 -4374.4763780 -2990.4570866 -3232.7748031 -4377.8976378 -3164.8578740 -3335.0618110 -4436.9527559 -2988.0826772 -3244.4366142 -4384.6299213 -3171.6940945 -3334.5437008 -4436.6535433 -2985.1822835 -3249.8224409 -4387.7401575 -2981.2456693 -3254.6909449 -4390.5511811 -2976.3929134 -3258.8933071 -4392.9763780 -2970.7712598 -3262.3023622 -4394.9448819 -2964.5515748 -3264.8141732 -4396.3937008 -2957.9228346 -3266.3523622 -4397.2834646 -2981.2456693 -3222.2106299 -4446.8070866 -2981.2456693 -3254.6909449 -4390.5511811 -2976.3929134 -3226.4129921 -4449.2322835 -2976.3929134 -3258.8933071 -4392.9763780 -2970.7712598 -3262.3023622 -4394.9448819 -2970.7712598 -3229.8224409 -4451.2007874 -2964.5515748 -3264.8141732 -4396.3937008 -2964.5515748 -3232.3338583 -4452.6496063 -3164.8578740 -3335.0618110 -4436.9527559 -3164.8578740 -3302.5807087 -4493.2086614 -3178.3228346 -3333.0055118 -4435.7637795 -2937.6208661 -3264.8141732 -4396.3937008 -2944.2500000 -3266.3523622 -4397.2834646 -2931.4011811 -3262.3023622 -4394.9448819 -2957.9228346 -3233.8720472 -4453.5393701 -2951.0870079 -3266.8700787 -4397.5826772 -2951.0870079 -3234.3901575 -4453.8385827 -2957.9228346 -3266.3523622 -4397.2834646 -2944.2500000 -3233.8720472 -4453.5393701 -2944.2500000 -3266.3523622 -4397.2834646 -2937.6208661 -3232.3338583 -4452.6496063 -2937.6208661 -3264.8141732 -4396.3937008 -2951.0870079 -3266.8700787 -4397.5826772 - - - - - - - - - - 0.0001693 -0.5000172 0.8660154 0.0000001 -0.5000002 0.8660253 -0.0004312 -0.4999545 0.8660515 0.0001693 -0.5000172 0.8660154 0.0000803 -0.5000072 0.8660212 0.3419739 -0.8138156 -0.4698490 0.4999737 -0.7500202 -0.4330080 0.4999689 -0.7500226 -0.4330094 0.3419844 -0.8138123 -0.4698470 0.1736502 -0.8528650 -0.4924092 0.1736511 -0.8528649 -0.4924092 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0024343 -0.5015420 0.8651299 -0.0000001 -0.5000002 0.8660253 0.0000011 -0.5000003 0.8660252 0.0000002 -0.5000069 0.8660214 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000165 -0.5000106 0.8660193 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000193 -0.4999972 0.8660270 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0001182 -0.4999878 0.8660324 0.6427831 -0.6634193 -0.3830204 0.6427913 -0.6634134 -0.3830170 0.0000752 0.4999478 -0.8660555 0.0087842 0.4831708 -0.8754821 0.0000060 0.4999872 -0.8660328 -0.0000000 0.5000001 -0.8660253 0.0001454 0.4999855 -0.8660337 0.0000772 0.4999923 -0.8660298 0.0000075 -0.8660204 -0.5000087 0.0000075 -0.8660204 -0.5000087 -0.8660232 0.4330165 0.2500011 -0.9396925 0.2961984 0.1710101 -0.9396936 0.2961959 0.1710086 -0.8660235 0.4330160 0.2500009 -0.9762985 0.1874329 0.1082137 -0.9762986 0.1874322 0.1082133 -0.0000486 -0.4999925 0.8660297 -0.0000486 -0.4999925 0.8660297 -0.0000173 -0.4999972 0.8660270 -0.0000486 -0.4999925 0.8660297 -0.0000486 -0.4999925 0.8660297 -0.0000171 -0.4999972 0.8660270 0.6427912 0.6634108 0.3830216 0.4999985 0.7499998 0.4330147 0.4999967 0.7500007 0.4330152 0.6427897 0.6634119 0.3830223 0.7660530 0.5566618 0.3213883 0.7660528 0.5566621 0.3213884 0.8660268 0.4330113 0.2499978 0.8660264 0.4330117 0.2499980 0.9396900 0.2962047 0.1710133 0.9396900 0.2962047 0.1710133 0.9848063 0.1503911 0.0868283 0.9848060 0.1503924 0.0868291 1.0000000 -0.0000003 -0.0000002 1.0000000 0.0000002 0.0000001 0.9848059 -0.1503928 -0.0868292 0.9848062 -0.1503913 -0.0868284 0.9396902 -0.2962042 -0.1710130 0.9396901 -0.2962043 -0.1710131 0.8660253 -0.4330138 -0.2499987 0.8660250 -0.4330142 -0.2499989 0.7660522 -0.5566631 -0.3213879 0.7660527 -0.5566626 -0.3213876 0.6427845 -0.6634162 -0.3830234 0.6427813 -0.6634185 -0.3830248 0.4999913 -0.7500041 -0.4330157 0.4999914 -0.7500041 -0.4330156 0.3420294 -0.8137946 -0.4698450 0.3420271 -0.8137953 -0.4698454 0.1736483 -0.8528691 -0.4924028 0.1736488 -0.8528690 -0.4924028 0.0000000 -0.8660268 -0.4999977 0.0000000 -0.8660268 -0.4999977 -0.1736488 -0.8528690 -0.4924028 -0.1736483 -0.8528691 -0.4924028 -0.3420271 -0.8137953 -0.4698454 -0.3420294 -0.8137946 -0.4698450 -0.4999914 -0.7500041 -0.4330156 -0.4999913 -0.7500041 -0.4330157 -0.6427845 -0.6634162 -0.3830234 -0.6427813 -0.6634185 -0.3830248 -0.7660527 -0.5566626 -0.3213876 -0.7660522 -0.5566631 -0.3213879 -0.8660250 -0.4330142 -0.2499989 -0.8660253 -0.4330138 -0.2499987 -0.9396901 -0.2962043 -0.1710131 -0.9396902 -0.2962042 -0.1710130 -0.9848062 -0.1503913 -0.0868284 -0.9848059 -0.1503928 -0.0868292 -1.0000000 0.0000002 0.0000001 -1.0000000 -0.0000003 -0.0000002 -0.9848060 0.1503924 0.0868291 -0.9848063 0.1503911 0.0868283 -0.9396900 0.2962047 0.1710133 -0.9396900 0.2962047 0.1710133 -0.8660264 0.4330117 0.2499980 -0.8660268 0.4330113 0.2499978 0.0000083 -0.5000010 0.8660248 -0.0000507 -0.5000893 0.8659739 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.9763002 -0.1874249 -0.1082120 0.9914455 -0.1130344 -0.0652611 0.9763005 -0.1874239 -0.1082114 0.9914457 -0.1130333 -0.0652604 1.0000000 -0.0000019 -0.0000011 1.0000000 -0.0000025 -0.0000014 0.9848112 0.1503670 0.0868145 0.9848114 0.1503659 0.0868138 0.9396936 0.2961959 0.1710086 0.9396925 0.2961984 0.1710101 0.8660232 0.4330165 0.2500011 0.8660235 0.4330160 0.2500009 0.7660428 0.5566726 0.3213939 0.7660435 0.5566719 0.3213935 0.6427815 0.6634187 0.3830241 0.6427817 0.6634186 0.3830241 0.4999971 0.7500022 0.4330123 0.4999968 0.7500024 0.4330123 0.3420188 0.8137993 0.4698446 0.3420189 0.8137992 0.4698445 0.1736418 0.8528707 0.4924024 0.1736426 0.8528706 0.4924023 0.0436101 0.8652027 0.4995222 0.0436109 0.8652027 0.4995222 -0.0436109 0.8652027 0.4995222 -0.0436101 0.8652027 0.4995222 -0.0000009 -0.5000007 0.8660250 0.8660270 0.4330110 0.2499975 0.9396900 0.2962046 0.1710132 0.8660272 0.4330106 0.2499973 0.9396900 0.2962046 0.1710132 0.9848062 0.1503912 0.0868283 0.9848060 0.1503926 0.0868291 1.0000000 -0.0000001 -0.0000001 1.0000000 0.0000003 0.0000002 0.9848060 -0.1503925 -0.0868291 0.9848062 -0.1503911 -0.0868283 0.9396900 -0.2962045 -0.1710132 0.9396900 -0.2962045 -0.1710133 0.8660250 -0.4330142 -0.2499989 0.8660247 -0.4330146 -0.2499992 0.7660527 -0.5566627 -0.3213876 0.7660531 -0.5566622 -0.3213873 0.6427900 -0.6634129 -0.3830200 0.6427885 -0.6634140 -0.3830206 0.4999902 -0.7500060 -0.4330137 0.4999900 -0.7500061 -0.4330137 0.3420252 -0.8137969 -0.4698440 0.3420240 -0.8137973 -0.4698443 0.1736420 -0.8528703 -0.4924030 0.1736435 -0.8528701 -0.4924028 0.0000000 -0.8660266 -0.4999979 0.0000000 -0.8660266 -0.4999979 -0.1736435 -0.8528701 -0.4924028 -0.1736420 -0.8528703 -0.4924030 -0.3420240 -0.8137973 -0.4698443 -0.3420252 -0.8137969 -0.4698440 -0.4999900 -0.7500061 -0.4330137 -0.4999902 -0.7500060 -0.4330137 -0.6427900 -0.6634129 -0.3830200 -0.6427885 -0.6634140 -0.3830206 -0.7660531 -0.5566622 -0.3213873 -0.7660527 -0.5566627 -0.3213876 -0.8660247 -0.4330146 -0.2499992 -0.8660250 -0.4330142 -0.2499989 -0.9396900 -0.2962045 -0.1710133 -0.9396900 -0.2962045 -0.1710132 -0.9848062 -0.1503911 -0.0868283 -0.9848060 -0.1503925 -0.0868291 -1.0000000 0.0000003 0.0000002 -1.0000000 -0.0000001 -0.0000001 -0.9848060 0.1503926 0.0868291 -0.9848062 0.1503912 0.0868283 -0.9396900 0.2962046 0.1710132 -0.9396900 0.2962046 0.1710132 -0.8660270 0.4330110 0.2499975 -0.8660272 0.4330106 0.2499973 -0.7660524 0.5566625 0.3213886 -0.7660527 0.5566622 0.3213884 -0.6427914 0.6634107 0.3830216 -0.6427899 0.6634118 0.3830222 -0.4999999 0.7499992 0.4330143 -0.4999982 0.7500000 0.4330148 -0.3420111 0.8137999 0.4698490 -0.3420119 0.8137997 0.4698489 -0.1736345 0.8528711 0.4924043 -0.1736370 0.8528707 0.4924040 0.0000000 0.8660266 0.4999979 0.0000000 0.8660266 0.4999979 0.1736370 0.8528707 0.4924040 0.1736345 0.8528711 0.4924043 0.3420119 0.8137997 0.4698489 0.3420111 0.8137999 0.4698490 0.4999982 0.7500000 0.4330148 0.4999999 0.7499992 0.4330143 0.6427914 0.6634107 0.3830216 0.6427899 0.6634118 0.3830222 0.7660527 0.5566622 0.3213884 0.7660524 0.5566625 0.3213886 -0.1736353 0.8528717 0.4924029 -0.1736344 0.8528718 0.4924030 -0.3420234 0.8137978 0.4698437 -0.3420232 0.8137979 0.4698438 -0.5000073 0.7499971 0.4330093 -0.5000076 0.7499970 0.4330092 -0.6427815 0.6634187 0.3830241 -0.6427817 0.6634186 0.3830241 -0.7660435 0.5566719 0.3213935 -0.7660428 0.5566726 0.3213939 -0.0000437 -0.4998878 0.8660902 0.0000800 -0.5002050 0.8659070 0.7660381 -0.5566737 -0.3214031 0.7660340 -0.5566780 -0.3214055 -0.0059335 0.5074449 -0.8616638 0.0000076 0.4999848 -0.8660342 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.1736364 -0.8528671 -0.4924105 -0.1736355 -0.8528673 -0.4924105 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000035 0.4999995 -0.8660257 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000033 0.4999995 -0.8660257 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 -0.9914461 0.1130312 0.0652576 -0.9914456 0.1130346 0.0652596 0.3420138 0.8137991 0.4698485 0.1736363 0.8528708 0.4924041 0.1736390 0.8528704 0.4924039 0.3420129 0.8137994 0.4698487 -0.3419775 -0.8138145 -0.4698483 -0.3419670 -0.8138178 -0.4698502 -0.0000000 0.8660266 0.4999979 -0.0000000 0.8660266 0.4999979 -0.7660528 0.5566621 0.3213884 -0.7660530 0.5566618 0.3213883 -0.4999737 -0.7500202 -0.4330080 -0.4999689 -0.7500226 -0.4330094 -0.6427986 -0.6634080 -0.3830139 -0.6428068 -0.6634021 -0.3830105 -0.0006496 -0.5009830 0.8654569 -0.6427912 0.6634108 0.3830216 -0.6427897 0.6634119 0.3830223 -0.4999985 0.7499998 0.4330147 -0.4999967 0.7500007 0.4330152 -0.3420129 0.8137994 0.4698487 -0.3420138 0.8137991 0.4698485 -0.1736363 0.8528708 0.4924041 -0.1736390 0.8528704 0.4924039 0.0000061 0.4999989 -0.8660260 0.0000030 0.4999994 -0.8660257 0.0000043 0.4999992 -0.8660258 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 -0.0000022 0.4999930 -0.8660294 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 -0.0000088 0.4999848 -0.8660342 0.0000030 0.4999994 -0.8660257 0.9396982 -0.2961832 -0.1710054 0.9397001 -0.2961785 -0.1710027 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 -0.0001635 -0.4996483 0.8662283 0.8660049 -0.4330415 -0.2500211 0.8660104 -0.4330332 -0.2500163 0.0000059 0.4999866 -0.8660332 0.0000104 0.4999796 -0.8660372 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000178 0.4999680 -0.8660439 0.0000059 0.4999866 -0.8660332 -0.4999616 -0.7500136 -0.4330335 -0.6427728 -0.6634223 -0.3830326 -0.4999675 -0.7500107 -0.4330318 -0.6427692 -0.6634249 -0.3830341 -0.7660327 -0.5566802 -0.3214048 -0.7660380 -0.5566748 -0.3214016 -0.8660475 -0.4329771 -0.2499853 -0.8660464 -0.4329786 -0.2499862 -0.9397090 -0.2961574 -0.1709905 -0.9397071 -0.2961620 -0.1709932 -0.9848114 -0.1503649 -0.0868154 -0.9848120 -0.1503618 -0.0868136 -1.0000000 -0.0000015 -0.0000017 -1.0000000 -0.0000004 -0.0000010 -0.7660663 -0.5566447 -0.3213863 -0.7660622 -0.5566489 -0.3213887 0.0000405 -0.4999309 0.8660653 0.8660334 -0.4329981 -0.2499974 0.8660345 -0.4329966 -0.2499965 0.7660510 -0.5566613 -0.3213939 0.7660458 -0.5566667 -0.3213970 0.6427505 -0.6634385 -0.3830419 0.6427469 -0.6634411 -0.3830434 0.4999503 -0.7500192 -0.4330368 0.4999562 -0.7500163 -0.4330351 0.3420655 -0.8137743 -0.4698538 0.3420650 -0.8137745 -0.4698539 0.1737139 -0.8528484 -0.4924156 0.1737020 -0.8528502 -0.4924167 -0.0000210 0.4999697 -0.8660429 -0.0000172 0.4999772 -0.8660386 0.0000097 0.5000268 -0.8660099 -0.0000210 0.4999697 -0.8660429 -0.9397072 0.2961606 0.1709949 -0.8660242 0.4330110 0.2500070 -0.8660264 0.4330077 0.2500051 -0.9397054 0.2961650 0.1709974 -0.9848065 0.1503884 0.0868301 -0.9848074 0.1503841 0.0868276 -1.0000000 0.0000003 0.0000011 -1.0000000 0.0000003 0.0000011 -0.9848061 -0.1503933 -0.0868267 -0.9848081 -0.1503832 -0.0868209 -0.9397009 -0.2961799 -0.1709963 -0.9396990 -0.2961843 -0.1709989 -0.8660222 -0.4330156 -0.2500062 -0.8660167 -0.4330238 -0.2500109 -0.0000053 -0.5000081 0.8660208 -0.0000031 -0.5000077 0.8660209 -0.0000066 -0.5000083 0.8660206 0.0000313 -0.4999378 0.8660613 -0.0000031 -0.5000077 0.8660209 -0.0000031 -0.5000077 0.8660209 -0.0000031 -0.5000077 0.8660209 -0.0000031 -0.5000077 0.8660209 0.0000644 -0.5001537 0.8659367 0.9396990 -0.2961843 -0.1709989 0.9397009 -0.2961799 -0.1709963 0.8660125 0.4330286 0.2500172 0.9397072 0.2961606 0.1709949 0.8660147 0.4330253 0.2500153 0.9397054 0.2961650 0.1709974 0.0000254 0.4999579 -0.8660497 0.0000291 0.4999503 -0.8660541 0.0000291 0.4999503 -0.8660541 0.0000291 0.4999503 -0.8660541 0.0000072 0.4999961 -0.8660277 -0.1737262 -0.8528465 -0.4924145 -0.3420378 -0.8137830 -0.4698588 -0.1737143 -0.8528483 -0.4924156 -0.3420383 -0.8137829 -0.4698587 0.9848081 -0.1503832 -0.0868209 0.9848061 -0.1503933 -0.0868267 1.0000000 0.0000003 0.0000011 1.0000000 0.0000003 0.0000011 0.9848074 0.1503841 0.0868276 0.9848065 0.1503884 0.0868301 -0.0000074 -0.4999559 0.8660509 -0.0000339 -0.4999448 0.8660573 -0.0000262 -0.4999627 0.8660469 -0.0000226 -0.4999691 0.8660432 0.0000081 -0.5000257 0.8660106 0.0000185 -0.5000477 0.8659979 -0.0000021 -0.4999974 0.8660269 0.0000225 -0.5000697 0.8659851 0.0002590 -0.4995948 0.8662592 -0.0000083 -0.5000072 0.8660213 -0.0000100 -0.5000088 0.8660203 -0.0000040 -0.5000065 0.8660217 -0.0000100 -0.5000088 0.8660203 -0.0000100 -0.5000088 0.8660203 0.0436175 -0.8651903 -0.4995431 0.0436168 -0.8651903 -0.4995431 -0.7660354 0.5566757 0.3214063 -0.6427939 0.6634051 0.3830271 -0.6427885 0.6634090 0.3830293 -0.7660399 0.5566710 0.3214036 0.0000245 0.5000543 -0.8659940 0.0000022 0.5000151 -0.8660167 0.0000245 0.5000543 -0.8659940 0.0000245 0.5000543 -0.8659940 -0.4999753 0.7500080 0.4330274 -0.4999823 0.7500045 0.4330254 -0.0000994 -0.5001790 0.8659220 -0.0000727 -0.5001448 0.8659418 0.0000743 -0.5001612 0.8659323 -0.0000066 -0.4999887 0.8660319 0.0000111 -0.5000175 0.8660153 0.0001185 -0.5001719 0.8659261 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000014 -0.4999959 0.8660278 0.7660118 0.5567000 0.3214203 0.7660073 0.5567047 0.3214230 0.6427783 0.6634164 0.3830336 0.6427730 0.6634203 0.3830359 0.4999753 0.7500080 0.4330274 0.4999823 0.7500045 0.4330254 0.3420288 0.8137896 0.4698540 0.3420264 0.8137903 0.4698545 -0.0436225 -0.8651901 -0.4995430 -0.0436218 -0.8651901 -0.4995430 -0.0000490 -0.4999197 0.8660717 -0.0000002 -0.5000050 0.8660225 -0.0000000 -0.4999993 0.8660258 -0.0000002 -0.5000050 0.8660225 0.1737049 0.8528543 0.4924086 0.0000075 0.8660204 0.5000087 0.0000075 0.8660204 0.5000087 0.1737177 0.8528523 0.4924074 -0.1736902 0.8528565 0.4924099 -0.1737030 0.8528546 0.4924087 -0.3420194 0.8137925 0.4698557 -0.3420218 0.8137918 0.4698553 0.0000000 -0.4999978 0.8660267 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 5 6 7 6 5 8 9 8 5 8 9 10 11 12 13 12 11 14 14 11 15 16 17 18 17 16 19 19 16 20 20 16 21 21 16 22 22 16 23 23 16 24 24 16 25 25 16 26 26 16 27 27 16 28 28 16 29 29 16 30 30 16 31 31 16 32 11 33 23 33 11 34 34 11 35 35 11 36 36 11 37 37 11 38 38 11 39 39 11 13 23 33 40 23 40 41 23 41 42 23 42 43 23 43 44 23 44 45 23 45 46 23 46 47 23 47 48 23 48 49 23 49 22 50 51 11 51 50 52 51 52 53 51 53 54 51 54 55 51 55 56 51 56 57 57 56 58 57 58 59 59 58 60 59 60 61 61 60 62 61 62 63 63 62 64 63 64 65 65 64 66 65 66 67 67 66 68 67 68 69 69 68 70 69 70 71 71 70 72 71 72 73 73 72 74 73 74 75 75 74 76 75 76 77 77 76 78 77 78 79 79 78 80 79 80 81 81 80 21 81 21 22 4 82 83 82 4 84 84 4 85 85 4 86 86 4 87 83 82 88 88 82 89 89 82 90 90 82 91 91 82 92 92 82 93 93 82 94 94 82 11 11 82 95 11 95 50 1 96 2 7 97 98 97 7 6 99 100 101 102 103 99 103 102 104 105 10 9 10 105 106 107 108 109 108 107 110 109 111 112 111 109 108 113 87 4 87 113 114 87 114 115 87 115 116 116 115 117 117 115 118 119 120 121 120 119 122 119 123 122 123 119 124 124 125 123 125 124 126 126 127 125 127 126 128 128 129 127 129 128 130 130 131 129 131 130 132 132 133 131 133 132 134 134 135 133 135 134 136 136 137 135 137 136 138 138 139 137 139 138 140 140 141 139 141 140 142 143 141 142 141 143 144 145 144 143 144 145 146 147 146 145 146 147 148 149 148 147 148 149 150 151 149 152 149 151 150 153 152 154 152 153 151 155 154 156 154 155 153 157 156 158 156 157 155 157 159 160 159 157 158 160 161 162 161 160 159 162 163 164 163 162 161 164 165 166 165 164 163 166 167 168 167 166 165 168 169 170 169 168 167 170 171 172 171 170 169 172 173 174 173 172 171 175 118 115 118 175 176 118 176 18 118 18 177 177 18 178 178 18 179 179 18 180 180 18 181 181 18 17 182 183 184 183 182 185 185 186 183 186 185 187 187 188 186 188 187 189 189 190 188 190 189 191 191 192 190 192 191 193 193 194 192 194 193 195 195 196 194 196 195 197 198 196 197 196 198 199 200 199 198 199 200 201 202 201 200 201 202 203 204 203 202 203 204 205 206 204 207 204 206 205 51 15 208 209 210 211 210 209 212 212 213 210 213 212 214 214 215 213 215 214 216 216 217 215 217 216 218 218 219 217 219 218 220 220 221 219 221 220 222 222 223 221 223 222 224 224 225 223 225 224 226 227 225 226 225 227 228 229 228 227 228 229 230 231 230 229 230 231 232 233 232 231 232 233 234 235 233 236 233 235 234 237 236 238 236 237 235 239 238 240 238 239 237 241 240 242 240 241 239 241 243 244 243 241 242 244 245 246 245 244 243 246 247 248 247 246 245 248 249 250 249 248 247 250 251 252 251 250 249 252 253 254 253 252 251 254 255 256 255 254 253 256 257 258 257 256 255 258 259 260 259 258 257 260 261 262 261 260 259 263 261 264 261 263 262 265 264 266 264 265 263 267 266 268 266 267 265 269 268 270 268 269 267 271 269 270 269 271 272 273 272 271 272 273 274 275 274 273 274 275 276 277 276 275 276 277 278 277 279 278 279 277 280 281 207 282 207 281 206 283 282 284 282 283 281 285 284 286 284 285 283 287 286 288 286 287 285 287 289 290 289 287 288 290 110 107 110 290 289 291 1 292 1 291 96 293 97 294 97 293 98 100 295 296 102 99 101 101 297 298 297 101 100 297 100 299 299 100 300 300 100 301 301 100 302 302 100 296 303 304 104 304 303 305 304 305 306 304 306 307 304 307 308 304 308 309 304 309 310 304 310 311 304 311 312 304 312 313 304 313 314 304 314 315 304 315 316 304 316 317 304 317 318 305 303 319 319 303 320 321 105 322 105 321 106 323 324 325 324 323 326 326 323 327 327 323 328 328 323 329 329 323 330 330 323 331 331 323 332 331 332 333 333 332 334 334 332 335 335 332 336 336 332 337 337 332 338 338 332 339 339 332 340 340 332 341 341 332 342 342 332 343 343 332 344 345 346 347 346 345 332 332 345 348 332 348 349 332 349 344 350 351 352 351 350 353 351 353 354 351 354 355 351 355 356 351 356 357 351 357 358 351 358 323 351 323 325 351 325 359 351 359 360 360 359 361 360 361 362 362 361 363 362 363 364 364 363 365 364 365 366 366 365 367 366 367 368 368 367 369 368 369 370 370 369 371 370 371 372 372 371 373 372 373 374 374 373 375 374 375 376 376 375 377 376 377 378 378 377 379 378 379 380 380 379 381 380 381 382 382 381 383 382 383 384 384 383 385 384 385 386 386 385 387 386 387 388 388 387 389 388 389 390 390 389 391 390 391 392 392 391 343 392 343 344 112 393 394 393 112 111 395 396 397 396 395 398 121 398 395 398 121 120 399 322 400 322 399 321 397 401 402 401 397 396 174 403 404 403 174 173 405 400 406 400 405 399 407 406 408 406 407 405 18 176 409 404 410 411 410 404 403 412 410 413 410 412 411 414 413 415 413 414 412 416 415 417 415 416 414 401 417 402 417 401 416 418 419 420 419 418 421 421 418 422 422 418 423 423 418 424 424 418 425 425 418 426 426 418 427 427 418 428 428 418 429 429 418 430 430 418 431 431 418 432 432 418 433 434 426 435 426 434 436 426 436 425 437 184 438 184 437 182 332 420 346 420 332 439 439 332 440 439 440 441 439 441 442 439 442 443 439 443 444 439 444 445 439 445 446 439 446 447 439 447 448 280 211 279 211 280 209 291 292 449 450 294 451 294 450 293 295 452 296 452 295 453 453 295 454 453 454 455 453 455 456 453 456 457 453 457 458 453 459 460 459 453 461 461 453 458 462 463 464 463 462 465 466 463 465 463 466 467 468 467 466 467 468 469 470 469 468 469 470 471 472 471 470 471 472 473 474 473 472 473 474 475 394 475 474 475 394 393 407 476 477 476 407 408 18 409 478 479 438 480 438 479 437 481 480 482 480 481 479 483 482 484 482 483 481 483 485 486 485 483 484 486 487 488 487 486 485 488 489 490 489 488 487 491 492 493 492 491 494 492 494 435 492 435 426 495 496 497 496 495 498 499 498 495 498 499 500 501 500 499 500 501 502 503 502 501 502 503 504 505 504 503 504 505 506 507 506 505 506 507 508 477 508 507 508 477 476 509 510 511 510 509 512 512 509 18 18 509 513 18 513 514 18 514 515 18 515 516 449 292 517 518 451 519 451 518 450 520 521 522 521 520 523 460 524 453 524 460 525 524 525 526 524 526 527 524 527 528 529 530 531 530 529 532 532 464 530 464 532 462 533 519 534 519 533 518 535 534 536 534 535 533 537 536 538 536 537 535 523 538 521 538 523 537 539 540 541 539 542 540 539 543 542 539 544 543 539 545 544 539 546 545 539 292 546 18 478 547 548 549 550 549 548 511 511 548 509 509 548 551 509 551 552 490 553 554 553 490 489 555 556 557 556 555 558 497 558 555 558 497 496 559 492 560 492 559 561 492 561 562 492 562 493 563 556 564 556 563 557 18 565 512 18 566 565 18 547 566 517 292 567 568 569 570 569 568 571 571 568 572 572 568 573 573 568 574 574 568 575 575 568 576 577 522 578 522 577 520 579 578 580 578 579 577 579 581 582 581 579 580 582 583 584 583 582 581 528 492 524 492 528 560 585 531 586 531 585 529 539 587 570 539 541 587 539 567 292 569 539 570 548 588 589 588 548 590 590 548 550 553 586 554 586 553 585 591 592 593 592 591 594 592 595 593 595 592 596 596 597 595 597 596 598 598 564 597 564 598 563 548 576 568 576 548 599 599 548 589 584 594 591 594 584 583

-
-
-
- - - - 1696.9456693 -3203.2472441 -4360.8464567 2144.4039370 46.3128346 -2484.7137795 1691.3240157 -3206.6566929 -4362.8149606 1703.1653543 -3200.7358268 -4359.3976378 1709.7940945 -3199.1976378 -4358.5118110 1703.1653543 -3168.2551181 -4415.6574803 1696.9456693 -3203.2472441 -4360.8464567 1696.9456693 -3170.7673228 -4417.1062992 1703.1653543 -3200.7358268 -4359.3976378 1709.7940945 -3166.7169291 -4414.7677165 1709.7940945 -3199.1976378 -4358.5118110 2183.1759843 74.4876772 -2468.4472441 2296.4173228 -52.2472835 -2541.6177165 2295.6696850 -44.8465354 -2537.3444882 2298.6374016 -59.4231890 -2545.7610236 2302.2625984 -66.1561811 -2549.6476378 2621.7224409 34.4715827 -2491.5503937 2387.5015748 -270.7291339 -2667.7578740 1941.4055118 -3306.8862205 -4420.6850394 2391.1267717 -263.9961417 -2663.8712598 2393.3472441 -256.8202362 -2659.7279528 2394.0948819 -249.4194488 -2655.4547244 2394.0948819 -44.8465354 -2537.3444882 2582.9503937 74.4876772 -2468.4472441 2589.7870079 73.9696850 -2468.7460630 2596.4157480 72.4314961 -2469.6342520 2602.6354331 69.9197638 -2471.0842520 2608.2574803 66.5108661 -2473.0527559 2613.1102362 62.3083465 -2475.4787402 2617.0456693 57.4399606 -2478.2897638 2619.9460630 52.0535433 -2481.3996063 2621.7224409 46.3128346 -2484.7137795 2622.3204724 40.3922047 -2488.1322835 2328.0503937 -4.7974213 -2514.2224409 2320.2759843 -7.9370709 -2516.0350394 2313.2488189 -12.1981969 -2518.4952756 2307.1830709 -17.4513228 -2521.5279528 2302.2625984 -23.5368386 -2525.0413386 2298.6374016 -30.2698425 -2528.9287402 2296.4173228 -37.4457441 -2533.0720472 2336.3366142 -2.8746402 -2513.1122047 2344.8822835 -2.2271555 -2512.7385827 2353.4279528 -2.8746402 -2513.1122047 2361.7137795 -4.7974213 -2514.2224409 2369.4885827 -7.9370709 -2516.0350394 2376.5153543 -12.1981969 -2518.4952756 2382.5811024 -17.4513228 -2521.5279528 2387.5015748 -23.5368386 -2525.0413386 2391.1267717 -30.2698425 -2528.9287402 2393.3472441 -37.4457441 -2533.0720472 2295.6696850 -249.4194488 -2655.4547244 2307.1830709 -72.2417323 -2553.1618110 2296.4173228 -242.0186614 -2651.1822835 2298.6374016 -234.8427953 -2647.0389764 2302.2625984 -228.1097638 -2643.1515748 2307.1830709 -222.0242520 -2639.6381890 2313.2488189 -216.7711417 -2636.6055118 2313.2488189 -77.4948425 -2556.1944882 2320.2759843 -212.5100000 -2634.1460630 2320.2759843 -81.7559843 -2558.6547244 2328.0503937 -209.3703543 -2632.3326772 2328.0503937 -84.8956299 -2560.4677165 2336.3366142 -207.4475591 -2631.2228346 2336.3366142 -86.8183858 -2561.5771654 2344.8822835 -206.8000787 -2630.8484252 2344.8822835 -87.4658661 -2561.9507874 2353.4279528 -207.4475591 -2631.2228346 2353.4279528 -86.8183858 -2561.5771654 2361.7137795 -209.3703543 -2632.3326772 2361.7137795 -84.8956299 -2560.4677165 2369.4885827 -212.5100000 -2634.1460630 2369.4885827 -81.7559843 -2558.6547244 2376.5153543 -216.7711417 -2636.6055118 2376.5153543 -77.4948425 -2556.1944882 2382.5811024 -222.0242520 -2639.6381890 2382.5811024 -72.2417323 -2553.1618110 2387.5015748 -228.1097638 -2643.1515748 2387.5015748 -66.1561811 -2549.6476378 2391.1267717 -234.8427953 -2647.0389764 2391.1267717 -59.4231890 -2545.7610236 2393.3472441 -242.0186614 -2651.1822835 2393.3472441 -52.2472835 -2541.6177165 2298.6374016 -263.9961417 -2663.8712598 2144.4039370 46.3128346 -2484.7137795 2302.2625984 -270.7291339 -2667.7578740 2307.1830709 -276.8146457 -2671.2720472 2313.2488189 -282.0677953 -2674.3047244 2320.2759843 -286.3288976 -2676.7649606 2146.1803150 52.0535433 -2481.3996063 2149.0807087 57.4399606 -2478.2897638 2153.0169291 62.3083465 -2475.4787402 2157.8692913 66.5108661 -2473.0527559 2163.4909449 69.9197638 -2471.0842520 2169.7106299 72.4314961 -2469.6342520 2176.3393701 73.9696850 -2468.7460630 2296.4173228 -256.8202362 -2659.7279528 1686.4712598 -3210.8586614 -4365.2440945 1691.3240157 -3206.6566929 -4362.8149606 1691.3240157 -3174.1755906 -4419.0748031 1703.1653543 -3168.2551181 -4415.6574803 1696.9456693 -3170.7673228 -4417.1062992 1464.0874016 -3262.5645669 -4470.1062992 2144.4039370 78.7931496 -2540.9712598 1709.7940945 -3166.7169291 -4414.7677165 1716.6303150 -3166.1996063 -4414.4685039 1716.6303150 -3166.1996063 -4414.4685039 1716.6303150 -3198.6791339 -4358.2125984 2149.0807087 57.4399606 -2478.2897638 2146.1803150 84.5338583 -2537.6570866 2146.1803150 52.0535433 -2481.3996063 2149.0807087 89.9202756 -2534.5476378 2144.4039370 78.7931496 -2540.9712598 2144.4039370 46.3128346 -2484.7137795 1716.6303150 -3198.6791339 -4358.2125984 1723.4669291 -3199.1976378 -4358.5118110 1730.0960630 -3200.7358268 -4359.3976378 2328.0503937 -289.4685433 -2678.5779528 2336.3366142 -291.3913386 -2679.6874016 2344.8822835 -292.0388189 -2680.0610236 2313.2488189 -249.5874803 -2730.5622047 2320.2759843 -286.3288976 -2676.7649606 2320.2759843 -253.8485827 -2733.0220472 2313.2488189 -282.0677953 -2674.3047244 2307.1830709 -276.8146457 -2671.2720472 2307.1830709 -244.3343307 -2727.5295276 2302.2625984 -270.7291339 -2667.7578740 2302.2625984 -238.2488189 -2724.0161417 2298.6374016 -263.9961417 -2663.8712598 2298.6374016 -231.5158268 -2720.1287402 2296.4173228 -256.8202362 -2659.7279528 2296.4173228 -224.3399213 -2715.9854331 2295.6696850 -249.4194488 -2655.4547244 2295.6696850 -216.9391339 -2711.7129921 2296.4173228 -242.0186614 -2651.1822835 2296.4173228 -209.5383858 -2707.4397638 2298.6374016 -234.8427953 -2647.0389764 2298.6374016 -202.3624803 -2703.2964567 2302.2625984 -228.1097638 -2643.1515748 2302.2625984 -195.6294488 -2699.4098425 2307.1830709 -222.0242520 -2639.6381890 2307.1830709 -189.5439370 -2695.8960630 2313.2488189 -216.7711417 -2636.6055118 2313.2488189 -184.2908268 -2692.8629921 2320.2759843 -180.0296850 -2690.4035433 2320.2759843 -212.5100000 -2634.1460630 2328.0503937 -176.8900394 -2688.5901575 2328.0503937 -209.3703543 -2632.3326772 2336.3366142 -174.9672835 -2687.4803150 2336.3366142 -207.4475591 -2631.2228346 2344.8822835 -174.3197638 -2687.1066929 2344.8822835 -206.8000787 -2630.8484252 2353.4279528 -207.4475591 -2631.2228346 2353.4279528 -174.9672835 -2687.4803150 2361.7137795 -209.3703543 -2632.3326772 2361.7137795 -176.8900394 -2688.5901575 2369.4885827 -212.5100000 -2634.1460630 2369.4885827 -180.0296850 -2690.4035433 2376.5153543 -216.7711417 -2636.6055118 2376.5153543 -184.2908268 -2692.8629921 2382.5811024 -189.5439370 -2695.8960630 2382.5811024 -222.0242520 -2639.6381890 2387.5015748 -195.6294488 -2699.4098425 2387.5015748 -228.1097638 -2643.1515748 2391.1267717 -202.3624803 -2703.2964567 2391.1267717 -234.8427953 -2647.0389764 2393.3472441 -209.5383858 -2707.4397638 2393.3472441 -242.0186614 -2651.1822835 2394.0948819 -216.9391339 -2711.7129921 2394.0948819 -249.4194488 -2655.4547244 2393.3472441 -224.3399213 -2715.9854331 2393.3472441 -256.8202362 -2659.7279528 2391.1267717 -231.5158268 -2720.1287402 2391.1267717 -263.9961417 -2663.8712598 2387.5015748 -238.2488189 -2724.0161417 2387.5015748 -270.7291339 -2667.7578740 1736.3153543 -3203.2472441 -4360.8464567 1741.9370079 -3206.6566929 -4362.8149606 2353.4279528 -291.3913386 -2679.6874016 2361.7137795 -289.4685433 -2678.5779528 2369.4885827 -286.3288976 -2676.7649606 2376.5153543 -282.0677953 -2674.3047244 2382.5811024 -276.8146457 -2671.2720472 1941.4055118 -3274.4059055 -4476.9409449 2621.7224409 34.4715827 -2491.5503937 1941.4055118 -3306.8862205 -4420.6850394 2621.7224409 66.9518898 -2547.8078740 2622.3204724 40.3922047 -2488.1322835 2622.3204724 72.8725197 -2544.3901575 2621.7224409 46.3128346 -2484.7137795 2621.7224409 78.7931496 -2540.9712598 2619.9460630 52.0535433 -2481.3996063 2619.9460630 84.5338583 -2537.6570866 2617.0456693 57.4399606 -2478.2897638 2617.0456693 89.9202756 -2534.5476378 2613.1102362 62.3083465 -2475.4787402 2613.1102362 94.7886614 -2531.7366142 2608.2574803 66.5108661 -2473.0527559 2608.2574803 98.9911811 -2529.3102362 2602.6354331 102.4000787 -2527.3421260 2602.6354331 69.9197638 -2471.0842520 2596.4157480 104.9118110 -2525.8921260 2596.4157480 72.4314961 -2469.6342520 2589.7870079 106.4500000 -2525.0039370 2589.7870079 73.9696850 -2468.7460630 2582.9503937 106.9679921 -2524.7051181 2582.9503937 74.4876772 -2468.4472441 2183.1759843 74.4876772 -2468.4472441 2183.1759843 106.9679921 -2524.7051181 2183.1759843 74.4876772 -2468.4472441 2302.2625984 -33.6758858 -2605.9059055 2298.6374016 -59.4231890 -2545.7610236 2302.2625984 -66.1561811 -2549.6476378 2298.6374016 -26.9428819 -2602.0185039 2296.4173228 -52.2472835 -2541.6177165 2296.4173228 -19.7669803 -2597.8751969 2295.6696850 -44.8465354 -2537.3444882 2295.6696850 -12.3662087 -2593.6027559 2296.4173228 -37.4457441 -2533.0720472 2296.4173228 -4.9654291 -2589.3295276 2298.6374016 -30.2698425 -2528.9287402 2298.6374016 2.2104732 -2585.1862205 2302.2625984 -23.5368386 -2525.0413386 2302.2625984 8.9434764 -2581.2996063 2307.1830709 -17.4513228 -2521.5279528 2307.1830709 15.0289882 -2577.7858268 2313.2488189 -12.1981969 -2518.4952756 2313.2488189 20.2821142 -2574.7527559 2320.2759843 24.5432441 -2572.2933071 2320.2759843 -7.9370709 -2516.0350394 2328.0503937 27.6828937 -2570.4799213 2328.0503937 -4.7974213 -2514.2224409 2336.3366142 29.6056732 -2569.3700787 2336.3366142 -2.8746402 -2513.1122047 2344.8822835 30.2531575 -2568.9964567 2344.8822835 -2.2271555 -2512.7385827 2353.4279528 -2.8746402 -2513.1122047 2353.4279528 29.6056732 -2569.3700787 2361.7137795 -4.7974213 -2514.2224409 2361.7137795 27.6828937 -2570.4799213 2369.4885827 -7.9370709 -2516.0350394 2369.4885827 24.5432441 -2572.2933071 2376.5153543 -12.1981969 -2518.4952756 2376.5153543 20.2821142 -2574.7527559 2382.5811024 15.0289882 -2577.7858268 2382.5811024 -17.4513228 -2521.5279528 2387.5015748 8.9434764 -2581.2996063 2387.5015748 -23.5368386 -2525.0413386 2391.1267717 2.2104732 -2585.1862205 2391.1267717 -30.2698425 -2528.9287402 2393.3472441 -4.9654291 -2589.3295276 2393.3472441 -37.4457441 -2533.0720472 2394.0948819 -12.3662087 -2593.6027559 2394.0948819 -44.8465354 -2537.3444882 2393.3472441 -19.7669803 -2597.8751969 2393.3472441 -52.2472835 -2541.6177165 2391.1267717 -26.9428819 -2602.0185039 2391.1267717 -59.4231890 -2545.7610236 2387.5015748 -33.6758858 -2605.9059055 2387.5015748 -66.1561811 -2549.6476378 2382.5811024 -39.7614173 -2609.4192913 2382.5811024 -72.2417323 -2553.1618110 2376.5153543 -45.0145276 -2612.4519685 2376.5153543 -77.4948425 -2556.1944882 2369.4885827 -81.7559843 -2558.6547244 2369.4885827 -49.2756693 -2614.9118110 2361.7137795 -84.8956299 -2560.4677165 2361.7137795 -52.4153150 -2616.7251969 2353.4279528 -86.8183858 -2561.5771654 2353.4279528 -54.3380709 -2617.8346457 2344.8822835 -87.4658661 -2561.9507874 2344.8822835 -54.9855512 -2618.2090551 2336.3366142 -54.3380709 -2617.8346457 2336.3366142 -86.8183858 -2561.5771654 2328.0503937 -52.4153150 -2616.7251969 2328.0503937 -84.8956299 -2560.4677165 2320.2759843 -49.2756693 -2614.9118110 2320.2759843 -81.7559843 -2558.6547244 2313.2488189 -45.0145276 -2612.4519685 2313.2488189 -77.4948425 -2556.1944882 2307.1830709 -72.2417323 -2553.1618110 2307.1830709 -39.7614173 -2609.4192913 2176.3393701 73.9696850 -2468.7460630 2176.3393701 106.4500000 -2525.0039370 2169.7106299 72.4314961 -2469.6342520 2169.7106299 104.9118110 -2525.8921260 2163.4909449 69.9197638 -2471.0842520 2163.4909449 102.4000787 -2527.3421260 2157.8692913 66.5108661 -2473.0527559 2157.8692913 98.9911811 -2529.3102362 2153.0169291 94.7886614 -2531.7366142 2153.0169291 62.3083465 -2475.4787402 1682.5350394 -3215.7271654 -4368.0551181 1464.0874016 -3295.0448819 -4413.8464567 1686.4712598 -3178.3779528 -4421.5000000 1686.4712598 -3210.8586614 -4365.2440945 1691.3240157 -3174.1755906 -4419.0748031 1483.1744094 -3298.0129921 -4490.5708661 1464.0874016 -3274.4059055 -4476.9409449 1463.4893701 -3268.4854331 -4473.5236220 1465.8637795 -3280.1468504 -4480.2559055 1468.7637795 -3285.5330709 -4483.3661417 1472.7000000 -3290.4019685 -4486.1771654 1477.5527559 -3294.6047244 -4488.6023622 2144.4039370 78.7931496 -2540.9712598 1723.4669291 -3166.7169291 -4414.7677165 2298.6374016 -231.5158268 -2720.1287402 2302.2625984 -238.2488189 -2724.0161417 2307.1830709 -244.3343307 -2727.5295276 2313.2488189 -249.5874803 -2730.5622047 2320.2759843 -253.8485827 -2733.0220472 2328.0503937 -256.9882283 -2734.8354331 2336.3366142 -258.9110236 -2735.9448819 2344.8822835 -259.5585039 -2736.3192913 2353.4279528 -258.9110236 -2735.9448819 2361.7137795 -256.9882283 -2734.8354331 2369.4885827 -253.8485827 -2733.0220472 2376.5153543 -249.5874803 -2730.5622047 2382.5811024 -244.3343307 -2727.5295276 2387.5015748 -238.2488189 -2724.0161417 2296.4173228 -224.3399213 -2715.9854331 2295.6696850 -216.9391339 -2711.7129921 1723.4669291 -3199.1976378 -4358.5118110 1723.4669291 -3166.7169291 -4414.7677165 2183.1759843 106.9679921 -2524.7051181 2296.4173228 -4.9654291 -2589.3295276 2295.6696850 -12.3662087 -2593.6027559 2298.6374016 2.2104732 -2585.1862205 2302.2625984 8.9434764 -2581.2996063 2307.1830709 15.0289882 -2577.7858268 2313.2488189 20.2821142 -2574.7527559 2320.2759843 24.5432441 -2572.2933071 2328.0503937 27.6828937 -2570.4799213 2582.9503937 106.9679921 -2524.7051181 2336.3366142 29.6056732 -2569.3700787 2344.8822835 30.2531575 -2568.9964567 2353.4279528 29.6056732 -2569.3700787 2361.7137795 27.6828937 -2570.4799213 2369.4885827 24.5432441 -2572.2933071 2376.5153543 20.2821142 -2574.7527559 2382.5811024 15.0289882 -2577.7858268 2387.5015748 8.9434764 -2581.2996063 2391.1267717 2.2104732 -2585.1862205 2393.3472441 -4.9654291 -2589.3295276 2394.0948819 -12.3662087 -2593.6027559 2394.0948819 -216.9391339 -2711.7129921 2387.5015748 -238.2488189 -2724.0161417 1730.0960630 -3168.2551181 -4415.6574803 1723.4669291 -3166.7169291 -4414.7677165 2391.1267717 -231.5158268 -2720.1287402 2393.3472441 -224.3399213 -2715.9854331 2146.1803150 84.5338583 -2537.6570866 2295.6696850 -216.9391339 -2711.7129921 2144.4039370 78.7931496 -2540.9712598 2149.0807087 89.9202756 -2534.5476378 2153.0169291 94.7886614 -2531.7366142 2157.8692913 98.9911811 -2529.3102362 2163.4909449 102.4000787 -2527.3421260 2169.7106299 104.9118110 -2525.8921260 2176.3393701 106.4500000 -2525.0039370 2296.4173228 -19.7669803 -2597.8751969 2296.4173228 -209.5383858 -2707.4397638 2298.6374016 -26.9428819 -2602.0185039 2298.6374016 -202.3624803 -2703.2964567 2302.2625984 -33.6758858 -2605.9059055 2302.2625984 -195.6294488 -2699.4098425 2307.1830709 -39.7614173 -2609.4192913 2307.1830709 -189.5439370 -2695.8960630 2313.2488189 -45.0145276 -2612.4519685 2313.2488189 -184.2908268 -2692.8629921 2320.2759843 -49.2756693 -2614.9118110 2320.2759843 -180.0296850 -2690.4035433 2328.0503937 -52.4153150 -2616.7251969 2328.0503937 -176.8900394 -2688.5901575 2336.3366142 -54.3380709 -2617.8346457 2336.3366142 -174.9672835 -2687.4803150 2344.8822835 -54.9855512 -2618.2090551 2344.8822835 -174.3197638 -2687.1066929 2353.4279528 -54.3380709 -2617.8346457 2353.4279528 -174.9672835 -2687.4803150 2361.7137795 -52.4153150 -2616.7251969 2361.7137795 -176.8900394 -2688.5901575 2369.4885827 -49.2756693 -2614.9118110 2369.4885827 -180.0296850 -2690.4035433 2376.5153543 -45.0145276 -2612.4519685 2376.5153543 -184.2908268 -2692.8629921 2382.5811024 -39.7614173 -2609.4192913 2382.5811024 -189.5439370 -2695.8960630 2387.5015748 -33.6758858 -2605.9059055 2387.5015748 -195.6294488 -2699.4098425 2391.1267717 -26.9428819 -2602.0185039 2391.1267717 -202.3624803 -2703.2964567 2393.3472441 -19.7669803 -2597.8751969 2393.3472441 -209.5383858 -2707.4397638 1464.0874016 -3262.5645669 -4470.1062992 1464.0874016 -3295.0448819 -4413.8464567 2328.0503937 -256.9882283 -2734.8354331 2336.3366142 -291.3913386 -2679.6874016 2336.3366142 -258.9110236 -2735.9448819 2328.0503937 -289.4685433 -2678.5779528 1730.0960630 -3200.7358268 -4359.3976378 1730.0960630 -3168.2551181 -4415.6574803 2344.8822835 -292.0388189 -2680.0610236 2344.8822835 -259.5585039 -2736.3192913 2382.5811024 -244.3343307 -2727.5295276 2382.5811024 -276.8146457 -2671.2720472 1736.3153543 -3203.2472441 -4360.8464567 1736.3153543 -3170.7673228 -4417.1062992 1741.9370079 -3206.6566929 -4362.8149606 1741.9370079 -3174.1755906 -4419.0748031 1746.7897638 -3210.8586614 -4365.2440945 2376.5153543 -249.5874803 -2730.5622047 2376.5153543 -282.0677953 -2674.3047244 2369.4885827 -286.3288976 -2676.7649606 2369.4885827 -253.8485827 -2733.0220472 2361.7137795 -289.4685433 -2678.5779528 2361.7137795 -256.9882283 -2734.8354331 2353.4279528 -291.3913386 -2679.6874016 2353.4279528 -258.9110236 -2735.9448819 2621.7224409 66.9518898 -2547.8078740 1741.9370079 -3174.1755906 -4419.0748031 1736.3153543 -3170.7673228 -4417.1062992 1746.7897638 -3178.3779528 -4421.5000000 1750.7259843 -3183.2468504 -4424.3110236 1753.6263780 -3188.6330709 -4427.4212598 1755.4023622 -3194.3740157 -4430.7362205 1756.0003937 -3200.2948819 -4434.1535433 1909.4700787 -3302.0629921 -4492.9094488 1916.0988189 -3300.5244094 -4492.0196850 1922.3185039 -3298.0129921 -4490.5708661 1927.9401575 -3294.6047244 -4488.6023622 1932.7929134 -3290.4019685 -4486.1771654 1936.7291339 -3285.5330709 -4483.3661417 1939.6295276 -3280.1468504 -4480.2559055 1941.4055118 -3274.4059055 -4476.9409449 1753.6263780 -3211.9559055 -4440.8858268 1750.7259843 -3217.3421260 -4443.9960630 1755.4023622 -3206.2149606 -4437.5708661 1939.6295276 -3280.1468504 -4480.2559055 1939.6295276 -3312.6267717 -4424.0000000 2621.7224409 66.9518898 -2547.8078740 2589.7870079 106.4500000 -2525.0039370 2596.4157480 104.9118110 -2525.8921260 2602.6354331 102.4000787 -2527.3421260 2608.2574803 98.9911811 -2529.3102362 2613.1102362 94.7886614 -2531.7366142 2617.0456693 89.9202756 -2534.5476378 2619.9460630 84.5338583 -2537.6570866 2621.7224409 78.7931496 -2540.9712598 2622.3204724 72.8725197 -2544.3901575 1679.6346457 -3221.1133858 -4371.1614173 1682.5350394 -3183.2468504 -4424.3110236 1682.5350394 -3215.7271654 -4368.0551181 1489.3940945 -3300.5244094 -4492.0196850 1496.0228346 -3302.0629921 -4492.9094488 1686.4712598 -3178.3779528 -4421.5000000 1682.5350394 -3183.2468504 -4424.3110236 1679.6346457 -3188.6330709 -4427.4212598 1677.8586614 -3194.3740157 -4430.7362205 1677.2602362 -3200.2948819 -4434.1535433 1679.6346457 -3211.9559055 -4440.8858268 1682.5350394 -3217.3421260 -4443.9960630 1677.8586614 -3206.2149606 -4437.5708661 1483.1744094 -3330.4933071 -4434.3149606 1477.5527559 -3294.6047244 -4488.6023622 1483.1744094 -3298.0129921 -4490.5708661 1477.5527559 -3327.0842520 -4432.3464567 1472.7000000 -3322.8818898 -4429.9212598 1472.7000000 -3290.4019685 -4486.1771654 1468.7637795 -3318.0133858 -4427.1102362 1468.7637795 -3285.5330709 -4483.3661417 1465.8637795 -3312.6267717 -4424.0000000 1465.8637795 -3280.1468504 -4480.2559055 1464.0874016 -3306.8862205 -4420.6850394 1464.0874016 -3274.4059055 -4476.9409449 1463.4893701 -3300.9657480 -4417.2677165 1463.4893701 -3268.4854331 -4473.5236220 1746.7897638 -3178.3779528 -4421.5000000 1746.7897638 -3210.8586614 -4365.2440945 1750.7259843 -3215.7271654 -4368.0551181 1936.7291339 -3285.5330709 -4483.3661417 1936.7291339 -3318.0133858 -4427.1102362 1932.7929134 -3290.4019685 -4486.1771654 1932.7929134 -3322.8818898 -4429.9212598 1927.9401575 -3294.6047244 -4488.6023622 1927.9401575 -3327.0842520 -4432.3464567 1922.3185039 -3330.4933071 -4434.3149606 1922.3185039 -3298.0129921 -4490.5708661 1916.0988189 -3333.0055118 -4435.7637795 1916.0988189 -3300.5244094 -4492.0196850 1909.4700787 -3334.5437008 -4436.6535433 1909.4700787 -3302.0629921 -4492.9094488 1741.9370079 -3226.4129921 -4449.2322835 1902.6334646 -3302.5807087 -4493.2086614 1736.3153543 -3229.8224409 -4451.2007874 1746.7897638 -3222.2106299 -4446.8070866 1753.6263780 -3244.4366142 -4384.6299213 1750.7259843 -3217.3421260 -4443.9960630 1750.7259843 -3249.8224409 -4387.7401575 1753.6263780 -3211.9559055 -4440.8858268 1755.4023622 -3238.6956693 -4381.3149606 1755.4023622 -3206.2149606 -4437.5708661 1756.0003937 -3232.7748031 -4377.8976378 1756.0003937 -3200.2948819 -4434.1535433 1755.4023622 -3226.8543307 -4374.4763780 1755.4023622 -3194.3740157 -4430.7362205 1753.6263780 -3221.1133858 -4371.1614173 1753.6263780 -3188.6330709 -4427.4212598 1750.7259843 -3215.7271654 -4368.0551181 1750.7259843 -3183.2468504 -4424.3110236 1922.3185039 -3330.4933071 -4434.3149606 1753.6263780 -3244.4366142 -4384.6299213 1750.7259843 -3249.8224409 -4387.7401575 1755.4023622 -3238.6956693 -4381.3149606 1927.9401575 -3327.0842520 -4432.3464567 1932.7929134 -3322.8818898 -4429.9212598 1936.7291339 -3318.0133858 -4427.1102362 1939.6295276 -3312.6267717 -4424.0000000 1677.8586614 -3226.8543307 -4374.4763780 1679.6346457 -3188.6330709 -4427.4212598 1679.6346457 -3221.1133858 -4371.1614173 1682.5350394 -3217.3421260 -4443.9960630 1679.6346457 -3244.4366142 -4384.6299213 1682.5350394 -3249.8224409 -4387.7401575 1679.6346457 -3211.9559055 -4440.8858268 1502.8594488 -3302.5807087 -4493.2086614 1686.4712598 -3222.2106299 -4446.8070866 1691.3240157 -3226.4129921 -4449.2322835 1696.9456693 -3229.8224409 -4451.2007874 1703.1653543 -3232.3338583 -4452.6496063 1496.0228346 -3334.5437008 -4436.6535433 1489.3940945 -3300.5244094 -4492.0196850 1496.0228346 -3302.0629921 -4492.9094488 1489.3940945 -3333.0055118 -4435.7637795 1677.8586614 -3194.3740157 -4430.7362205 1677.8586614 -3226.8543307 -4374.4763780 1677.2602362 -3200.2948819 -4434.1535433 1677.2602362 -3232.7748031 -4377.8976378 1677.8586614 -3206.2149606 -4437.5708661 1677.8586614 -3238.6956693 -4381.3149606 1677.8586614 -3238.6956693 -4381.3149606 1477.5527559 -3327.0842520 -4432.3464567 1483.1744094 -3330.4933071 -4434.3149606 1472.7000000 -3322.8818898 -4429.9212598 1468.7637795 -3318.0133858 -4427.1102362 1465.8637795 -3312.6267717 -4424.0000000 1464.0874016 -3306.8862205 -4420.6850394 1463.4893701 -3300.9657480 -4417.2677165 1753.6263780 -3221.1133858 -4371.1614173 1902.6334646 -3335.0618110 -4436.9527559 1746.7897638 -3254.6909449 -4390.5511811 1741.9370079 -3258.8933071 -4392.9763780 1909.4700787 -3334.5437008 -4436.6535433 1916.0988189 -3333.0055118 -4435.7637795 1902.6334646 -3335.0618110 -4436.9527559 1902.6334646 -3302.5807087 -4493.2086614 1746.7897638 -3254.6909449 -4390.5511811 1741.9370079 -3226.4129921 -4449.2322835 1741.9370079 -3258.8933071 -4392.9763780 1746.7897638 -3222.2106299 -4446.8070866 1716.6303150 -3234.3901575 -4453.8385827 1709.7940945 -3233.8720472 -4453.5393701 1723.4669291 -3233.8720472 -4453.5393701 1730.0960630 -3232.3338583 -4452.6496063 1736.3153543 -3262.3023622 -4394.9448819 1736.3153543 -3229.8224409 -4451.2007874 1756.0003937 -3232.7748031 -4377.8976378 1755.4023622 -3226.8543307 -4374.4763780 1677.2602362 -3232.7748031 -4377.8976378 1502.8594488 -3335.0618110 -4436.9527559 1679.6346457 -3244.4366142 -4384.6299213 1496.0228346 -3334.5437008 -4436.6535433 1682.5350394 -3249.8224409 -4387.7401575 1686.4712598 -3254.6909449 -4390.5511811 1691.3240157 -3258.8933071 -4392.9763780 1696.9456693 -3262.3023622 -4394.9448819 1703.1653543 -3264.8141732 -4396.3937008 1709.7940945 -3266.3523622 -4397.2834646 1686.4712598 -3222.2106299 -4446.8070866 1686.4712598 -3254.6909449 -4390.5511811 1691.3240157 -3226.4129921 -4449.2322835 1691.3240157 -3258.8933071 -4392.9763780 1696.9456693 -3262.3023622 -4394.9448819 1696.9456693 -3229.8224409 -4451.2007874 1703.1653543 -3264.8141732 -4396.3937008 1703.1653543 -3232.3338583 -4452.6496063 1502.8594488 -3335.0618110 -4436.9527559 1502.8594488 -3302.5807087 -4493.2086614 1489.3940945 -3333.0055118 -4435.7637795 1730.0960630 -3264.8141732 -4396.3937008 1723.4669291 -3266.3523622 -4397.2834646 1736.3153543 -3262.3023622 -4394.9448819 1709.7940945 -3233.8720472 -4453.5393701 1716.6303150 -3266.8700787 -4397.5826772 1716.6303150 -3234.3901575 -4453.8385827 1709.7940945 -3266.3523622 -4397.2834646 1723.4669291 -3233.8720472 -4453.5393701 1723.4669291 -3266.3523622 -4397.2834646 1730.0960630 -3232.3338583 -4452.6496063 1730.0960630 -3264.8141732 -4396.3937008 1716.6303150 -3266.8700787 -4397.5826772 - - - - - - - - - - 0.0001693 -0.5000172 0.8660154 0.0000001 -0.5000002 0.8660253 -0.0004312 -0.4999545 0.8660515 0.0001693 -0.5000172 0.8660154 0.0000803 -0.5000072 0.8660212 0.3419739 -0.8138156 -0.4698490 0.4999737 -0.7500202 -0.4330080 0.4999689 -0.7500226 -0.4330094 0.3419844 -0.8138123 -0.4698470 0.1736477 -0.8528654 -0.4924095 0.1736486 -0.8528653 -0.4924094 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0024343 -0.5015420 0.8651299 -0.0000001 -0.5000002 0.8660253 0.0000011 -0.5000003 0.8660252 0.0000002 -0.5000069 0.8660214 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000165 -0.5000106 0.8660193 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000193 -0.4999972 0.8660270 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0000001 -0.5000002 0.8660253 -0.0001182 -0.4999878 0.8660324 0.6427831 -0.6634193 -0.3830204 0.6427913 -0.6634134 -0.3830170 0.0000752 0.4999478 -0.8660555 0.0087836 0.4831720 -0.8754814 0.0000060 0.4999872 -0.8660328 -0.0000000 0.5000001 -0.8660253 0.0001454 0.4999855 -0.8660337 0.0000772 0.4999923 -0.8660298 0.0000025 -0.8660204 -0.5000087 0.0000025 -0.8660204 -0.5000087 -0.8660232 0.4330165 0.2500011 -0.9396831 0.2962210 0.1710231 -0.9396841 0.2962184 0.1710217 -0.8660235 0.4330160 0.2500009 -0.9762925 0.1874564 0.1082272 -0.9762926 0.1874557 0.1082268 -0.0000486 -0.4999925 0.8660297 -0.0000486 -0.4999925 0.8660297 -0.0000173 -0.4999972 0.8660270 -0.0000486 -0.4999925 0.8660297 -0.0000486 -0.4999925 0.8660297 -0.0000171 -0.4999972 0.8660270 0.6427788 0.6634198 0.3830269 0.5000069 0.7499956 0.4330123 0.5000051 0.7499965 0.4330128 0.6427773 0.6634209 0.3830275 0.7660426 0.5566726 0.3213945 0.7660423 0.5566728 0.3213946 0.8660268 0.4330113 0.2499978 0.8660264 0.4330117 0.2499980 0.9396975 0.2961866 0.1710029 0.9396975 0.2961866 0.1710029 0.9848101 0.1503722 0.0868174 0.9848098 0.1503735 0.0868182 1.0000000 -0.0000003 -0.0000002 1.0000000 0.0000002 0.0000001 0.9848098 -0.1503739 -0.0868183 0.9848101 -0.1503724 -0.0868175 0.9396977 -0.2961862 -0.1710026 0.9396977 -0.2961862 -0.1710027 0.8660253 -0.4330138 -0.2499987 0.8660250 -0.4330142 -0.2499989 0.7660418 -0.5566739 -0.3213941 0.7660423 -0.5566733 -0.3213938 0.6427721 -0.6634253 -0.3830286 0.6427689 -0.6634276 -0.3830300 0.4999997 -0.7499999 -0.4330132 0.4999998 -0.7499999 -0.4330132 0.3420329 -0.8137934 -0.4698443 0.3420307 -0.8137942 -0.4698448 0.1736425 -0.8528700 -0.4924033 0.1736430 -0.8528699 -0.4924033 0.0000000 -0.8660268 -0.4999977 0.0000000 -0.8660268 -0.4999977 -0.1736488 -0.8528690 -0.4924028 -0.1736483 -0.8528691 -0.4924028 -0.3420271 -0.8137953 -0.4698454 -0.3420294 -0.8137946 -0.4698450 -0.5000028 -0.7499984 -0.4330123 -0.5000027 -0.7499984 -0.4330124 -0.6427822 -0.6634179 -0.3830244 -0.6427790 -0.6634203 -0.3830258 -0.7660423 -0.5566733 -0.3213938 -0.7660418 -0.5566739 -0.3213941 -0.8660250 -0.4330142 -0.2499989 -0.8660253 -0.4330138 -0.2499987 -0.9396901 -0.2962043 -0.1710131 -0.9396902 -0.2962042 -0.1710130 -0.9848062 -0.1503913 -0.0868284 -0.9848059 -0.1503928 -0.0868292 -1.0000000 0.0000002 0.0000001 -1.0000000 -0.0000003 -0.0000002 -0.9848060 0.1503924 0.0868291 -0.9848063 0.1503911 0.0868283 -0.9396900 0.2962047 0.1710133 -0.9396900 0.2962047 0.1710133 -0.8660264 0.4330117 0.2499980 -0.8660268 0.4330113 0.2499978 0.0000083 -0.5000010 0.8660248 -0.0000507 -0.5000893 0.8659739 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.0000083 -0.5000010 0.8660248 0.9763002 -0.1874249 -0.1082120 0.9914455 -0.1130344 -0.0652611 0.9763005 -0.1874239 -0.1082114 0.9914457 -0.1130333 -0.0652604 1.0000000 -0.0000019 -0.0000011 1.0000000 -0.0000025 -0.0000014 0.9848063 0.1503906 0.0868281 0.9848066 0.1503895 0.0868275 0.9396841 0.2962184 0.1710217 0.9396831 0.2962210 0.1710231 0.8660467 0.4329812 0.2499808 0.8660470 0.4329807 0.2499805 0.7660730 0.5566414 0.3213759 0.7660737 0.5566408 0.3213755 0.6427689 0.6634279 0.3830294 0.6427691 0.6634278 0.3830294 0.4999828 0.7500093 0.4330164 0.4999825 0.7500095 0.4330165 0.3420188 0.8137993 0.4698446 0.3420189 0.8137992 0.4698445 0.1736418 0.8528707 0.4924024 0.1736426 0.8528706 0.4924023 0.0436101 0.8652027 0.4995222 0.0436109 0.8652027 0.4995222 -0.0436109 0.8652027 0.4995222 -0.0436101 0.8652027 0.4995222 -0.0000009 -0.5000007 0.8660250 0.8660270 0.4330110 0.2499975 0.9396976 0.2961866 0.1710028 0.8660272 0.4330106 0.2499973 0.9396976 0.2961866 0.1710028 0.9848101 0.1503723 0.0868174 0.9848098 0.1503737 0.0868182 1.0000000 -0.0000001 -0.0000001 1.0000000 0.0000003 0.0000002 0.9848098 -0.1503736 -0.0868182 0.9848101 -0.1503722 -0.0868174 0.9396976 -0.2961865 -0.1710028 0.9396976 -0.2961865 -0.1710028 0.8660250 -0.4330142 -0.2499989 0.8660247 -0.4330146 -0.2499992 0.7660422 -0.5566734 -0.3213938 0.7660427 -0.5566730 -0.3213936 0.6427776 -0.6634219 -0.3830252 0.6427761 -0.6634230 -0.3830259 0.4999986 -0.7500018 -0.4330113 0.4999984 -0.7500019 -0.4330113 0.3420287 -0.8137958 -0.4698434 0.3420275 -0.8137961 -0.4698436 0.1736362 -0.8528712 -0.4924035 0.1736377 -0.8528710 -0.4924033 0.0000000 -0.8660266 -0.4999979 0.0000000 -0.8660266 -0.4999979 -0.1736435 -0.8528701 -0.4924028 -0.1736420 -0.8528703 -0.4924030 -0.3420240 -0.8137973 -0.4698443 -0.3420252 -0.8137969 -0.4698440 -0.5000014 -0.7500004 -0.4330105 -0.5000016 -0.7500003 -0.4330104 -0.6427877 -0.6634146 -0.3830210 -0.6427862 -0.6634157 -0.3830216 -0.7660427 -0.5566730 -0.3213936 -0.7660422 -0.5566734 -0.3213938 -0.8660247 -0.4330146 -0.2499992 -0.8660250 -0.4330142 -0.2499989 -0.9396900 -0.2962045 -0.1710133 -0.9396900 -0.2962045 -0.1710132 -0.9848062 -0.1503911 -0.0868283 -0.9848060 -0.1503925 -0.0868291 -1.0000000 0.0000003 0.0000002 -1.0000000 -0.0000001 -0.0000001 -0.9848060 0.1503926 0.0868291 -0.9848062 0.1503912 0.0868283 -0.9396900 0.2962046 0.1710132 -0.9396900 0.2962046 0.1710132 -0.8660270 0.4330110 0.2499975 -0.8660272 0.4330106 0.2499973 -0.7660420 0.5566732 0.3213948 -0.7660422 0.5566729 0.3213947 -0.6427890 0.6634124 0.3830225 -0.6427875 0.6634135 0.3830232 -0.5000113 0.7499935 0.4330110 -0.5000096 0.7499943 0.4330115 -0.3420111 0.8137999 0.4698490 -0.3420119 0.8137997 0.4698489 -0.1736345 0.8528711 0.4924043 -0.1736370 0.8528707 0.4924040 0.0000000 0.8660266 0.4999979 0.0000000 0.8660266 0.4999979 0.1736312 0.8528716 0.4924046 0.1736286 0.8528720 0.4924048 0.3420154 0.8137985 0.4698482 0.3420147 0.8137988 0.4698484 0.5000066 0.7499958 0.4330124 0.5000083 0.7499950 0.4330119 0.6427790 0.6634197 0.3830268 0.6427775 0.6634208 0.3830274 0.7660422 0.5566729 0.3213947 0.7660420 0.5566732 0.3213948 -0.1736426 0.8528706 0.4924023 -0.1736418 0.8528707 0.4924024 -0.3420189 0.8137992 0.4698445 -0.3420188 0.8137993 0.4698446 -0.4999968 0.7500024 0.4330123 -0.4999971 0.7500022 0.4330123 -0.6427971 0.6634074 0.3830176 -0.6427972 0.6634073 0.3830176 -0.7660565 0.5566585 0.3213857 -0.7660558 0.5566592 0.3213861 -0.0000437 -0.4998878 0.8660902 0.0000800 -0.5002050 0.8659070 0.7660532 -0.5566582 -0.3213941 0.7660491 -0.5566624 -0.3213965 -0.0059341 0.5074456 -0.8616634 0.0000076 0.4999848 -0.8660342 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 0.0000092 0.4999829 -0.8660353 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.0000010 0.5000001 -0.8660254 -0.1736389 -0.8528668 -0.4924102 -0.1736379 -0.8528669 -0.4924103 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000035 0.4999995 -0.8660257 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000033 0.4999995 -0.8660257 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 0.0000000 0.5000002 -0.8660253 -0.9914461 0.1130312 0.0652576 -0.9914456 0.1130346 0.0652596 0.3420173 0.8137980 0.4698479 0.1736304 0.8528717 0.4924046 0.1736331 0.8528713 0.4924044 0.3420164 0.8137982 0.4698481 -0.3419888 -0.8138109 -0.4698462 -0.3419784 -0.8138142 -0.4698482 0.0000000 0.8660266 0.4999979 0.0000000 0.8660266 0.4999979 -0.7660423 0.5566728 0.3213946 -0.7660426 0.5566726 0.3213945 -0.4999842 -0.7500150 -0.4330050 -0.4999794 -0.7500174 -0.4330064 -0.6427831 -0.6634193 -0.3830204 -0.6427913 -0.6634134 -0.3830170 -0.0006497 -0.5009831 0.8654568 -0.6427889 0.6634125 0.3830226 -0.6427874 0.6634136 0.3830232 -0.5000099 0.7499941 0.4330114 -0.5000081 0.7499950 0.4330119 -0.3420129 0.8137994 0.4698487 -0.3420138 0.8137991 0.4698485 -0.1736363 0.8528708 0.4924041 -0.1736390 0.8528704 0.4924039 0.0000061 0.4999989 -0.8660260 0.0000030 0.4999994 -0.8660257 0.0000043 0.4999992 -0.8660258 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 -0.0000022 0.4999930 -0.8660294 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 0.0000030 0.4999994 -0.8660257 -0.0000088 0.4999848 -0.8660342 0.0000030 0.4999994 -0.8660257 0.9396982 -0.2961832 -0.1710054 0.9397001 -0.2961785 -0.1710027 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 0.0000062 0.4999989 -0.8660260 -0.0001635 -0.4996483 0.8662283 0.8660167 -0.4330238 -0.2500109 0.8660222 -0.4330156 -0.2500062 0.0000059 0.4999866 -0.8660332 0.0000104 0.4999796 -0.8660372 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000059 0.4999866 -0.8660332 0.0000178 0.4999680 -0.8660439 0.0000059 0.4999866 -0.8660332 -0.4999578 -0.7500155 -0.4330346 -0.6427602 -0.6634315 -0.3830379 -0.4999637 -0.7500125 -0.4330329 -0.6427566 -0.6634341 -0.3830394 -0.7660327 -0.5566802 -0.3214048 -0.7660380 -0.5566748 -0.3214016 -0.8660475 -0.4329771 -0.2499853 -0.8660464 -0.4329786 -0.2499862 -0.9396996 -0.2961799 -0.1710035 -0.9396976 -0.2961846 -0.1710062 -0.9848066 -0.1503885 -0.0868290 -0.9848072 -0.1503854 -0.0868272 -1.0000000 -0.0000015 -0.0000017 -1.0000000 -0.0000004 -0.0000010 -0.7660532 -0.5566582 -0.3213941 -0.7660491 -0.5566624 -0.3213965 0.0000405 -0.4999309 0.8660653 0.8660334 -0.4329981 -0.2499974 0.8660345 -0.4329966 -0.2499965 0.7660380 -0.5566748 -0.3214016 0.7660327 -0.5566802 -0.3214048 0.6427602 -0.6634315 -0.3830379 0.6427566 -0.6634341 -0.3830394 0.4999578 -0.7500155 -0.4330346 0.4999637 -0.7500125 -0.4330329 0.3420497 -0.8137793 -0.4698566 0.3420492 -0.8137795 -0.4698567 0.1737237 -0.8528469 -0.4924148 0.1737118 -0.8528487 -0.4924158 -0.0000210 0.4999697 -0.8660429 -0.0000172 0.4999772 -0.8660386 0.0000097 0.5000268 -0.8660099 -0.0000210 0.4999697 -0.8660429 -0.9396977 0.2961832 0.1710079 -0.8660242 0.4330110 0.2500070 -0.8660264 0.4330077 0.2500051 -0.9396959 0.2961876 0.1710104 -0.9848116 0.1503633 0.0868156 -0.9848125 0.1503590 0.0868131 -1.0000000 0.0000003 0.0000011 -1.0000000 0.0000003 0.0000011 -0.9848112 -0.1503682 -0.0868122 -0.9848132 -0.1503581 -0.0868064 -0.9396914 -0.2962024 -0.1710093 -0.9396895 -0.2962069 -0.1710119 -0.8660222 -0.4330156 -0.2500062 -0.8660167 -0.4330238 -0.2500109 -0.0000053 -0.5000081 0.8660208 -0.0000031 -0.5000077 0.8660209 -0.0000066 -0.5000083 0.8660206 0.0000313 -0.4999378 0.8660613 -0.0000031 -0.5000077 0.8660209 -0.0000031 -0.5000077 0.8660209 -0.0000031 -0.5000077 0.8660209 -0.0000031 -0.5000077 0.8660209 0.0000644 -0.5001537 0.8659367 0.9396895 -0.2962069 -0.1710119 0.9396914 -0.2962024 -0.1710093 0.8660242 0.4330110 0.2500070 0.9396977 0.2961832 0.1710079 0.8660264 0.4330077 0.2500051 0.9396959 0.2961876 0.1710104 0.0000254 0.4999579 -0.8660497 0.0000291 0.4999503 -0.8660541 0.0000291 0.4999503 -0.8660541 0.0000291 0.4999503 -0.8660541 0.0000072 0.4999961 -0.8660277 -0.1737237 -0.8528469 -0.4924148 -0.3420492 -0.8137795 -0.4698567 -0.1737118 -0.8528487 -0.4924158 -0.3420497 -0.8137793 -0.4698566 0.9848083 -0.1503824 -0.0868204 0.9848062 -0.1503925 -0.0868263 1.0000000 0.0000003 0.0000011 1.0000000 0.0000003 0.0000011 0.9848075 0.1503833 0.0868272 0.9848067 0.1503876 0.0868297 -0.0000074 -0.4999559 0.8660509 -0.0000339 -0.4999448 0.8660573 -0.0000262 -0.4999627 0.8660469 -0.0000226 -0.4999691 0.8660432 0.0000081 -0.5000257 0.8660106 0.0000185 -0.5000477 0.8659979 -0.0000021 -0.4999974 0.8660269 0.0000225 -0.5000697 0.8659851 0.0002590 -0.4995948 0.8662592 -0.0000083 -0.5000072 0.8660213 -0.0000100 -0.5000088 0.8660203 -0.0000040 -0.5000065 0.8660217 -0.0000100 -0.5000088 0.8660203 -0.0000100 -0.5000088 0.8660203 0.0436200 -0.8651902 -0.4995430 0.0436193 -0.8651902 -0.4995431 -0.7660224 0.5566891 0.3214140 -0.6427783 0.6634164 0.3830336 -0.6427730 0.6634203 0.3830359 -0.7660269 0.5566844 0.3214113 0.0000245 0.5000543 -0.8659940 0.0000022 0.5000151 -0.8660167 0.0000245 0.5000543 -0.8659940 0.0000245 0.5000543 -0.8659940 -0.4999858 0.7500027 0.4330244 -0.4999928 0.7499992 0.4330223 -0.0000994 -0.5001790 0.8659220 -0.0000727 -0.5001448 0.8659418 0.0000743 -0.5001612 0.8659323 -0.0000066 -0.4999887 0.8660319 0.0000110 -0.5000175 0.8660153 0.0001185 -0.5001719 0.8659261 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000075 -0.4999875 0.8660326 -0.0000014 -0.4999959 0.8660278 0.7660269 0.5566844 0.3214113 0.7660224 0.5566891 0.3214140 0.6427783 0.6634164 0.3830336 0.6427730 0.6634203 0.3830359 0.4999753 0.7500080 0.4330274 0.4999823 0.7500045 0.4330254 0.3420288 0.8137896 0.4698540 0.3420264 0.8137903 0.4698545 -0.0436200 -0.8651902 -0.4995430 -0.0436193 -0.8651902 -0.4995431 -0.0000490 -0.4999197 0.8660717 -0.0000002 -0.5000050 0.8660225 -0.0000000 -0.4999993 0.8660258 -0.0000002 -0.5000050 0.8660225 0.1737024 0.8528547 0.4924088 0.0000025 0.8660204 0.5000087 0.0000025 0.8660204 0.5000087 0.1737152 0.8528527 0.4924077 -0.1736926 0.8528561 0.4924097 -0.1737054 0.8528542 0.4924085 -0.3420308 0.8137890 0.4698537 -0.3420332 0.8137882 0.4698532 0.0000000 -0.4999978 0.8660267 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 5 6 7 6 5 8 9 8 5 8 9 10 11 12 13 12 11 14 14 11 15 16 17 18 17 16 19 19 16 20 20 16 21 21 16 22 22 16 23 23 16 24 24 16 25 25 16 26 26 16 27 27 16 28 28 16 29 29 16 30 30 16 31 31 16 32 11 33 23 33 11 34 34 11 35 35 11 36 36 11 37 37 11 38 38 11 39 39 11 13 23 33 40 23 40 41 23 41 42 23 42 43 23 43 44 23 44 45 23 45 46 23 46 47 23 47 48 23 48 49 23 49 22 50 51 11 51 50 52 51 52 53 51 53 54 51 54 55 51 55 56 51 56 57 57 56 58 57 58 59 59 58 60 59 60 61 61 60 62 61 62 63 63 62 64 63 64 65 65 64 66 65 66 67 67 66 68 67 68 69 69 68 70 69 70 71 71 70 72 71 72 73 73 72 74 73 74 75 75 74 76 75 76 77 77 76 78 77 78 79 79 78 80 79 80 81 81 80 21 81 21 22 4 82 83 82 4 84 84 4 85 85 4 86 86 4 87 83 82 88 88 82 89 89 82 90 90 82 91 91 82 92 92 82 93 93 82 94 94 82 11 11 82 95 11 95 50 1 96 2 7 97 98 97 7 6 99 100 101 102 103 99 103 102 104 105 10 9 10 105 106 107 108 109 108 107 110 109 111 112 111 109 108 113 87 4 87 113 114 87 114 115 87 115 116 116 115 117 117 115 118 119 120 121 120 119 122 119 123 122 123 119 124 124 125 123 125 124 126 126 127 125 127 126 128 128 129 127 129 128 130 130 131 129 131 130 132 132 133 131 133 132 134 134 135 133 135 134 136 136 137 135 137 136 138 138 139 137 139 138 140 140 141 139 141 140 142 143 141 142 141 143 144 145 144 143 144 145 146 147 146 145 146 147 148 149 148 147 148 149 150 151 149 152 149 151 150 153 152 154 152 153 151 155 154 156 154 155 153 157 156 158 156 157 155 157 159 160 159 157 158 160 161 162 161 160 159 162 163 164 163 162 161 164 165 166 165 164 163 166 167 168 167 166 165 168 169 170 169 168 167 170 171 172 171 170 169 172 173 174 173 172 171 175 118 115 118 175 176 118 176 18 118 18 177 177 18 178 178 18 179 179 18 180 180 18 181 181 18 17 182 183 184 183 182 185 185 186 183 186 185 187 187 188 186 188 187 189 189 190 188 190 189 191 191 192 190 192 191 193 193 194 192 194 193 195 195 196 194 196 195 197 198 196 197 196 198 199 200 199 198 199 200 201 202 201 200 201 202 203 204 203 202 203 204 205 206 204 207 204 206 205 51 15 208 209 210 211 210 209 212 212 213 210 213 212 214 214 215 213 215 214 216 216 217 215 217 216 218 218 219 217 219 218 220 220 221 219 221 220 222 222 223 221 223 222 224 224 225 223 225 224 226 227 225 226 225 227 228 229 228 227 228 229 230 231 230 229 230 231 232 233 232 231 232 233 234 235 233 236 233 235 234 237 236 238 236 237 235 239 238 240 238 239 237 241 240 242 240 241 239 241 243 244 243 241 242 244 245 246 245 244 243 246 247 248 247 246 245 248 249 250 249 248 247 250 251 252 251 250 249 252 253 254 253 252 251 254 255 256 255 254 253 256 257 258 257 256 255 258 259 260 259 258 257 260 261 262 261 260 259 263 261 264 261 263 262 265 264 266 264 265 263 267 266 268 266 267 265 269 268 270 268 269 267 271 269 270 269 271 272 273 272 271 272 273 274 275 274 273 274 275 276 277 276 275 276 277 278 277 279 278 279 277 280 281 207 282 207 281 206 283 282 284 282 283 281 285 284 286 284 285 283 287 286 288 286 287 285 287 289 290 289 287 288 290 110 107 110 290 289 291 1 292 1 291 96 293 97 294 97 293 98 100 295 296 102 99 101 101 297 298 297 101 100 297 100 299 299 100 300 300 100 301 301 100 302 302 100 296 303 304 104 304 303 305 304 305 306 304 306 307 304 307 308 304 308 309 304 309 310 304 310 311 304 311 312 304 312 313 304 313 314 304 314 315 304 315 316 304 316 317 304 317 318 305 303 319 319 303 320 321 105 322 105 321 106 323 324 325 324 323 326 326 323 327 327 323 328 328 323 329 329 323 330 330 323 331 331 323 332 331 332 333 333 332 334 334 332 335 335 332 336 336 332 337 337 332 338 338 332 339 339 332 340 340 332 341 341 332 342 342 332 343 343 332 344 345 346 347 346 345 332 332 345 348 332 348 349 332 349 344 350 351 352 351 350 353 351 353 354 351 354 355 351 355 356 351 356 357 351 357 358 351 358 323 351 323 325 351 325 359 351 359 360 360 359 361 360 361 362 362 361 363 362 363 364 364 363 365 364 365 366 366 365 367 366 367 368 368 367 369 368 369 370 370 369 371 370 371 372 372 371 373 372 373 374 374 373 375 374 375 376 376 375 377 376 377 378 378 377 379 378 379 380 380 379 381 380 381 382 382 381 383 382 383 384 384 383 385 384 385 386 386 385 387 386 387 388 388 387 389 388 389 390 390 389 391 390 391 392 392 391 343 392 343 344 112 393 394 393 112 111 395 396 397 396 395 398 121 398 395 398 121 120 399 322 400 322 399 321 397 401 402 401 397 396 174 403 404 403 174 173 405 400 406 400 405 399 407 406 408 406 407 405 18 176 409 404 410 411 410 404 403 412 410 413 410 412 411 414 413 415 413 414 412 416 415 417 415 416 414 401 417 402 417 401 416 418 419 420 419 418 421 421 418 422 422 418 423 423 418 424 424 418 425 425 418 426 426 418 427 427 418 428 428 418 429 429 418 430 430 418 431 431 418 432 432 418 433 434 426 435 426 434 436 426 436 425 437 184 438 184 437 182 332 420 346 420 332 439 439 332 440 439 440 441 439 441 442 439 442 443 439 443 444 439 444 445 439 445 446 439 446 447 439 447 448 280 211 279 211 280 209 291 292 449 450 294 451 294 450 293 295 452 296 452 295 453 453 295 454 453 454 455 453 455 456 453 456 457 453 457 458 453 459 460 459 453 461 461 453 458 462 463 464 463 462 465 466 463 465 463 466 467 468 467 466 467 468 469 470 469 468 469 470 471 472 471 470 471 472 473 474 473 472 473 474 475 394 475 474 475 394 393 407 476 477 476 407 408 18 409 478 479 438 480 438 479 437 481 480 482 480 481 479 483 482 484 482 483 481 483 485 486 485 483 484 486 487 488 487 486 485 488 489 490 489 488 487 491 492 493 492 491 494 492 494 435 492 435 426 495 496 497 496 495 498 499 498 495 498 499 500 501 500 499 500 501 502 503 502 501 502 503 504 505 504 503 504 505 506 507 506 505 506 507 508 477 508 507 508 477 476 509 510 511 510 509 512 512 509 18 18 509 513 18 513 514 18 514 515 18 515 516 449 292 517 518 451 519 451 518 450 520 521 522 521 520 523 460 524 453 524 460 525 524 525 526 524 526 527 524 527 528 529 530 531 530 529 532 532 464 530 464 532 462 533 519 534 519 533 518 535 534 536 534 535 533 537 536 538 536 537 535 523 538 521 538 523 537 539 540 541 539 542 540 539 543 542 539 544 543 539 545 544 539 546 545 539 292 546 18 478 547 548 549 550 549 548 511 511 548 509 509 548 551 509 551 552 490 553 554 553 490 489 555 556 557 556 555 558 497 558 555 558 497 496 559 492 560 492 559 561 492 561 562 492 562 493 563 556 564 556 563 557 18 565 512 18 566 565 18 547 566 517 292 567 568 569 570 569 568 571 571 568 572 572 568 573 573 568 574 574 568 575 575 568 576 577 522 578 522 577 520 579 578 580 578 579 577 579 581 582 581 579 580 582 583 584 583 582 581 528 492 524 492 528 560 585 531 586 531 585 529 539 587 570 539 541 587 539 567 292 569 539 570 548 588 589 588 548 590 590 548 550 553 586 554 586 553 585 591 592 593 592 591 594 592 595 593 595 592 596 596 597 595 597 596 598 598 564 597 564 598 563 548 576 568 576 548 599 599 548 589 584 594 591 594 584 583

-
-
-
- - - - -4930.7362205 -3138.8685039 -4317.1181102 -5020.8897638 -3087.9724409 -4254.3503937 -4931.8543307 -3152.1299213 -4301.4094488 -5019.6181102 -3074.8192913 -4270.1377953 -4834.4724409 -3207.8460630 -4342.2755906 -4833.5157480 -3194.4909449 -4357.9133858 -4931.8543307 -3127.8696850 -4334.4842520 -5020.8897638 -3063.7122047 -4287.4251969 -5020.8897638 -3087.9724409 -4254.3503937 -5048.3031496 -3089.8618110 -4298.1299213 -5047.4566929 -3097.2669291 -4286.6023622 -5019.6181102 -3074.8192913 -4270.1377953 -5024.6574803 -3102.7724409 -4240.5433071 -4935.1771654 -3167.2511811 -4287.8385827 -4729.9645669 -3254.4196850 -4376.4370079 -4729.1850394 -3240.9858268 -4392.0196850 -4834.4724409 -3183.5862205 -4375.3503937 -4837.3070866 -3223.2464567 -4328.9094488 -5050.8149606 -3084.0464567 -4310.3031496 -5054.9173228 -3079.9964567 -4322.7598425 -5024.6574803 -3054.9885827 -4305.6889764 -5020.8897638 -3063.7122047 -4287.4251969 -5024.6574803 -3054.9885827 -4305.6889764 -4935.1771654 -3119.4673228 -4352.9842520 -5047.4566929 -3097.2669291 -4286.6023622 -4956.0275591 -3156.3559055 -4346.9015748 -4955.2834646 -3163.6885827 -4335.3228346 -5048.3031496 -3089.8618110 -4298.1299213 -5024.6574803 -3102.7724409 -4240.5433071 -5050.8149606 -3115.9023622 -4266.8740157 -5030.8070866 -3118.7696850 -4229.1377953 -5048.3031496 -3106.0358268 -4276.0787402 -4940.6023622 -3183.7724409 -4276.8149606 -5030.8070866 -3118.7696850 -4229.1377953 -4619.6456693 -3291.2657480 -4403.4645669 -4619.0551181 -3277.7696850 -4419.0000000 -4729.9645669 -3230.1594488 -4409.5118110 -4732.2755906 -3270.0527559 -4363.2401575 -4837.3070866 -3175.4618110 -4394.0551181 -4841.9370079 -3240.2224409 -4318.2204724 -5060.4842520 -3077.8354331 -4335.1181102 -5067.3464567 -3077.6295276 -4347.0039370 -5039.1574803 -3045.6720472 -4342.9133858 -5030.8070866 -3048.9141732 -4324.3740157 -4958.2440945 -3150.7543307 -4359.2322835 -5054.9173228 -3079.9964567 -4322.7598425 -4961.8582677 -3147.0543307 -4371.9448819 -5050.8149606 -3084.0464567 -4310.3031496 -5030.8070866 -3048.9141732 -4324.3740157 -4940.6023622 -3113.9169291 -4372.0511811 -4854.4645669 -3221.3704724 -4377.6299213 -4855.0984252 -3214.1007874 -4389.2559055 -5048.3031496 -3106.0358268 -4276.0787402 -4956.0275591 -3172.5299213 -4324.8503937 -5050.8149606 -3115.9023622 -4266.8740157 -4958.2440945 -3182.6098425 -4315.8031496 -5039.1574803 -3135.4771654 -4220.4763780 -5060.4842520 -3137.7051181 -4253.4960630 -5049.4527559 -3152.3874016 -4214.8267717 -5054.9173228 -3126.5665354 -4259.2677165 -4947.9645669 -3201.1913386 -4268.6771654 -5039.1574803 -3135.4771654 -4220.4763780 -4504.9094488 -3317.9200787 -4423.0118110 -4504.5078740 -3304.3795276 -4438.5157480 -4619.6456693 -3267.0055118 -4436.5393701 -4621.4094488 -3307.0830709 -4390.4015748 -4732.2755906 -3222.2688976 -4428.3858268 -4736.0511811 -3287.4102362 -4352.8307087 -4841.9370079 -3170.3669291 -4413.4566929 -4848.2165354 -3258.2590551 -4310.5354331 -5039.1574803 -3045.6720472 -4342.9133858 -4947.9645669 -3111.3866142 -4391.1141732 -5075.2992126 -3079.3834646 -4358.0551181 -5074.5708661 -3053.4870079 -4392.1338583 -5084.0944882 -3083.0452756 -4367.9330709 -5061.3779528 -3047.9940945 -4377.3149606 -5049.4527559 -3045.3625984 -4360.7401575 -4966.7677165 -3145.3673228 -4384.6535433 -5067.3464567 -3077.6295276 -4347.0039370 -4972.8188976 -3145.7456693 -4396.9645669 -5060.4842520 -3077.8354331 -4335.1181102 -4856.9881890 -3208.6854331 -4401.7244094 -4860.0748031 -3205.2881890 -4414.6614173 -4746.2677165 -3269.5881890 -4412.9960630 -4746.7874016 -3262.3700787 -4424.6614173 -4855.0984252 -3230.2748031 -4367.2047244 -4856.9881890 -3240.5409449 -4358.2952756 -4961.8582677 -3193.6244094 -4308.4527559 -5054.9173228 -3126.5665354 -4259.2677165 -4966.7677165 -3205.2370079 -4303.0275591 -5060.4842520 -3137.7051181 -4253.4960630 -5061.3779528 -3168.9874016 -4212.3582677 -5084.0944882 -3170.5688976 -4248.6062992 -5074.5708661 -3184.7720472 -4213.1456693 -5075.2992126 -3160.0456693 -4248.0826772 -5067.3464567 -3148.9787402 -4249.7283465 -4957.0393701 -3218.9787402 -4263.6692913 -5049.4527559 -3152.3874016 -4214.8267717 -4387.1889764 -3334.0480315 -4434.8425197 -4386.9881890 -3320.4799213 -4450.3267717 -4504.9094488 -3293.6598425 -4456.0905512 -4506.0944882 -3333.8708661 -4410.0511811 -4621.4094488 -3259.2988189 -4455.5472441 -4624.2795276 -3324.7409449 -4380.2125984 -4736.0511811 -3217.5547244 -4448.0708661 -4848.2165354 -3168.4547244 -4432.9724409 -4855.9645669 -3276.8086614 -4306.0866142 -5049.4527559 -3045.3625984 -4360.7401575 -4957.0393701 -3111.9543307 -4409.5826772 -5061.3779528 -3047.9940945 -4377.3149606 -4967.5551181 -3115.6019685 -4426.9015748 -5074.5708661 -3053.4870079 -4392.1338583 -4979.1889764 -3122.2192913 -4442.5472441 -5093.4685039 -3088.5035433 -4376.3425197 -5103.1377953 -3072.3066929 -4414.7716535 -5103.1377953 -3095.5921260 -4383.0236220 -5088.6338583 -3061.6748031 -4404.7480315 -4979.8307087 -3148.1775591 -4408.5118110 -5084.0944882 -3083.0452756 -4367.9330709 -4987.5866142 -3152.5889764 -4418.9409449 -5075.2992126 -3079.3834646 -4358.0551181 -4864.2637795 -3204.0137795 -4427.6692913 -4869.4291339 -3204.8996063 -4440.3543307 -4748.3267717 -3257.1098425 -4437.2440945 -4750.8464567 -3253.9669291 -4450.3661417 -4632.0590551 -3307.7342520 -4440.9763780 -4632.4527559 -3300.5578740 -4452.6692913 -4746.7874016 -3278.5440945 -4402.6102362 -4748.3267717 -3288.9657480 -4393.8110236 -4860.0748031 -3251.8590551 -4351.1692913 -4864.2637795 -3263.8834646 -4346.0433071 -4972.8188976 -3217.0960630 -4299.6889764 -5067.3464567 -3148.9787402 -4249.7283465 -4967.5551181 -3236.5952756 -4261.9448819 -5061.3779528 -3168.9874016 -4212.3582677 -4979.8307087 -3228.8397638 -4298.5433071 -5075.2992126 -3160.0456693 -4248.0826772 -4987.5866142 -3240.1125984 -4299.6181102 -5084.0944882 -3170.5688976 -4248.6062992 -5088.6338583 -3199.2625984 -4217.1653543 -5103.1377953 -3188.7322835 -4256.0393701 -5103.1377953 -3212.0177165 -4224.2952756 -5093.4685039 -3180.2291339 -4251.2874016 -4979.1889764 -3253.5043307 -4263.5590551 -5074.5708661 -3184.7720472 -4213.1456693 -4267.9724409 -3339.4472441 -4438.8031496 -4267.9724409 -3325.8696850 -4454.2795276 -4387.1889764 -3309.7877953 -4467.9173228 -4387.7834646 -3350.0795276 -4421.9409449 -4506.0944882 -3286.0874016 -4475.1968504 -4508.0314961 -3351.7464567 -4400.0236220 -4624.2795276 -3254.8854331 -4475.4527559 -4628.1811024 -3343.7031496 -4373.2086614 -4741.1732283 -3305.9637795 -4345.5275591 -4741.1732283 -3216.1586614 -4467.9606299 -4855.9645669 -3169.7838583 -4452.0000000 -4864.9370079 -3295.3078740 -4305.0118110 -4747.4921260 -3325.1496063 -4341.5433071 -4864.9370079 -3174.3141732 -4469.9685039 -4874.8622047 -3181.9078740 -4486.3267717 -5088.6338583 -3061.6748031 -4404.7480315 -4991.5905512 -3131.6051181 -4456.0393701 -5004.3779528 -3143.4736220 -4466.9685039 -5103.1377953 -3072.3066929 -4414.7716535 -5112.8031496 -3104.0952756 -4387.7795276 -5117.6377953 -3085.0622047 -4421.9015748 -5122.1771654 -3113.7559055 -4390.4606299 -5004.3779528 -3166.7582677 -4435.2244094 -5093.4685039 -3088.5035433 -4376.3425197 -5103.1377953 -3095.5921260 -4383.0236220 -4995.8503937 -3158.8456693 -4427.9370079 -4875.4094488 -3207.9200787 -4452.3346457 -4882.0275591 -3212.9822835 -4463.2401575 -4754.2598425 -3253.0366142 -4463.6259843 -4758.4724409 -3254.3476378 -4476.6220472 -4633.6259843 -3295.4200787 -4465.3425197 -4635.5433071 -3292.4779528 -4478.6141732 -4513.2677165 -3335.3291339 -4461.2165354 -4513.5354331 -3328.1830709 -4472.9330709 -4632.4527559 -3316.7314961 -4430.6220472 -4750.8464567 -3300.5370079 -4386.8740157 -4754.2598425 -3312.9062992 -4382.0039370 -4869.4291339 -3276.2500000 -4343.0787402 -4875.4094488 -3288.5822835 -4342.3622047 -4882.0275591 -3300.5055118 -4343.9133858 -4995.8503937 -3250.5712598 -4302.8818898 -5004.3779528 -3283.1846457 -4276.4960630 -5088.6338583 -3199.2625984 -4217.1653543 -5103.1377953 -3212.0177165 -4224.2952756 -4991.5905512 -3269.1929134 -4268.4566929 -5093.4685039 -3180.2291339 -4251.2874016 -5004.3779528 -3259.8988189 -4308.2401575 -5103.1377953 -3188.7322835 -4256.0393701 -5117.6377953 -3222.6507874 -4234.3188976 4393.4448819 -3325.8696850 -4454.2795276 4393.4448819 -3339.4472441 -4438.8031496 -4267.9724409 -3315.1862205 -4471.8779528 -4387.7834646 -3302.2956693 -4487.0866142 -4388.7598425 -3368.0870079 -4412.0078740 -4508.0314961 -3281.8909449 -4495.2598425 -4628.1811024 -3253.8984252 -4495.6417323 -4632.9881890 -3363.3933071 -4369.5944882 -4747.4921260 -3218.1248031 -4487.4566929 -4754.8070866 -3344.3862205 -4341.0078740 -4754.8070866 -3223.3925197 -4505.9645669 -4762.9055118 -3231.8027559 -4522.9251969 -4885.4448819 -3192.3338583 -4500.5826772 -4896.3543307 -3205.2751969 -4512.2992126 -5017.1653543 -3157.4645669 -4475.0078740 -5117.6377953 -3085.0622047 -4421.9015748 -5131.7007874 -3099.5523622 -4425.9212598 -5012.9015748 -3176.0858268 -4440.5826772 -5112.8031496 -3104.0952756 -4387.7795276 -5122.1771654 -3113.7559055 -4390.4606299 -4896.3543307 -3228.5606299 -4480.5551181 -4889.0787402 -3219.9330709 -4472.7440945 -4763.3503937 -3257.8598425 -4488.9645669 -4768.7480315 -3263.4657480 -4500.2677165 -4638.1417323 -3291.8200787 -4492.0748031 -4641.3464567 -3293.4669291 -4505.3188976 -4514.3267717 -3323.1350394 -4485.6732283 -4515.6181102 -3320.3374016 -4499.0472441 -4391.3976378 -3352.0263780 -4473.4645669 -4391.5314961 -3344.8980315 -4485.1929134 -4513.5354331 -3344.3570866 -4450.8818898 -4633.6259843 -3327.2763780 -4421.9133858 -4635.5433071 -3339.0484252 -4415.1220472 -4638.1417323 -3351.6897638 -4410.4488189 -4758.4724409 -3325.6972441 -4379.3503937 -4768.7480315 -3350.9893701 -4380.9409449 -4763.3503937 -3338.5212598 -4378.9921260 -4889.0787402 -3311.6582677 -4347.6889764 -5017.1653543 -3295.0531496 -4287.4251969 -5117.6377953 -3222.6507874 -4234.3188976 -4896.3543307 -3344.9862205 -4321.8267717 -4885.4448819 -3329.9220472 -4313.0000000 -4874.8622047 -3313.1937008 -4307.3385827 -4896.3543307 -3321.7011811 -4353.5708661 -5012.9015748 -3267.8114173 -4315.5275591 -5112.8031496 -3195.8212598 -4262.7244094 -5112.8031496 -3195.8212598 -4262.7244094 4393.4448819 -3355.5051181 -4425.9173228 -4267.9724409 -3355.5051181 -4425.9173228 4393.4448819 -3502.7681102 -4609.4685039 4393.4448819 -3499.3783465 -4532.7204724 4393.4448819 -3499.6799213 -4519.0000000 4393.4448819 -3486.7098425 -4622.3503937 4393.4448819 -3496.6984252 -4546.1811024 4393.4448819 -3491.7216535 -4558.9724409 4393.4448819 -3484.5992126 -4570.7047244 4393.4448819 -3468.6578740 -4632.2519685 4393.4448819 -3475.5484252 -4581.0236220 4393.4448819 -3464.8429134 -4589.6102362 4393.4448819 -3449.1618110 -4638.8661417 4393.4448819 -3452.8078740 -4596.2125984 4393.4448819 -3439.8102362 -4600.6220472 4393.4448819 -3428.8129921 -4641.9921260 4393.4448819 -3426.2444882 -4602.7086614 4393.4448819 -3408.2299213 -4641.5393701 4393.4448819 -3412.5224409 -4602.4055118 4393.4448819 -3399.0610236 -4599.7244094 4393.4448819 -3388.0381890 -4637.5196850 4393.4448819 -3386.2700787 -4594.7480315 4393.4448819 -3368.8511811 -4630.0551181 4393.4448819 -3374.5370079 -4587.6259843 4393.4448819 -3364.2192913 -4578.5748031 4393.4448819 -3351.2523622 -4619.3740157 4393.4448819 -3355.6303150 -4567.8700787 4393.4448819 -3349.0307087 -4555.8346457 4393.4448819 -3335.7751969 -4605.7952756 4393.4448819 -3344.6208661 -4542.8385827 4393.4448819 -3342.5350394 -4529.2716535 4393.4448819 -3339.4472441 -4438.8031496 4393.4448819 -3325.8696850 -4454.2795276 4393.4448819 -3322.8917323 -4589.7362205 4393.4448819 -3315.1862205 -4471.8779528 4393.4448819 -3312.9917323 -4571.6850394 4393.4448819 -3307.7212598 -4491.0669291 4393.4448819 -3306.3775591 -4552.1889764 4393.4448819 -3303.7015748 -4511.2559055 4393.4448819 -3303.2488189 -4531.8385827 4393.4448819 -3538.5137795 -4537.0118110 4393.4448819 -3535.8374016 -4496.0826772 4393.4448819 -3538.9661417 -4516.4291339 4393.4448819 -3534.4937008 -4557.2047244 4393.4448819 -3529.2236220 -4476.5826772 4393.4448819 -3527.0283465 -4576.3897638 4393.4448819 -3519.3240157 -4458.5314961 4393.4448819 -3516.3452756 -4593.9921260 4393.4448819 -3506.4393701 -4442.4724409 4393.4448819 -3490.9633858 -4428.8976378 4393.4448819 -3497.5940945 -4505.4330709 4393.4448819 -3493.1846457 -4492.4330709 4393.4448819 -3486.5846457 -4480.4015748 4393.4448819 -3473.3637795 -4418.2125984 4393.4448819 -3477.9956693 -4469.6929134 4393.4448819 -3467.6779528 -4460.6417323 4393.4448819 -3454.1767717 -4410.7480315 4393.4448819 -3455.9456693 -4453.5196850 4393.4448819 -3443.1539370 -4448.5433071 4393.4448819 -3433.9850394 -4406.7283465 4393.4448819 -3429.6925197 -4445.8622047 4393.4448819 -3413.4023622 -4406.2755906 4393.4448819 -3415.9712598 -4445.5629921 4393.4448819 -3402.4047244 -4447.6496063 4393.4448819 -3393.0539370 -4409.4055118 4393.4448819 -3389.4066929 -4452.0590551 4393.4448819 -3373.5566929 -4416.0196850 4393.4448819 -3377.3728346 -4458.6574803 4393.4448819 -3366.6673228 -4467.2480315 4393.4448819 -3355.5051181 -4425.9173228 4393.4448819 -3357.6153543 -4477.5629921 4393.4448819 -3350.4933071 -4489.2992126 4393.4448819 -3345.5165354 -4502.0905512 4393.4448819 -3342.8366142 -4515.5511811 4393.4448819 -3315.1862205 -4471.8779528 -4267.9724409 -3307.7212598 -4491.0669291 -4388.7598425 -3298.2322835 -4507.2440945 -4390.0826772 -3387.5236220 -4405.3503937 -4510.6574803 -3371.0043307 -4393.2322835 -4267.9724409 -3373.5566929 -4416.0196850 -4510.6574803 -3281.2003937 -4515.6692913 -4632.9881890 -3256.3681102 -4515.5078740 -4638.5590551 -3383.2129921 -4369.4881890 -4638.5590551 -3262.2196850 -4534.4448819 -4644.7204724 -3271.2755906 -4551.8779528 -4771.5314961 -3243.0980315 -4537.8188976 -4780.4330709 -3256.9370079 -4550.1929134 -4907.2677165 -3220.3397638 -4521.1259843 -5029.5629921 -3173.1531496 -4479.9055118 -5131.7007874 -3099.5523622 -4425.9212598 -5130.9763780 -3124.2791339 -4390.9842520 -5021.1653543 -3186.5448819 -4443.8464567 -4903.6299213 -3238.6035433 -4486.4370079 -4780.4330709 -3280.2220472 -4518.4488189 -4774.5000000 -3270.9968504 -4510.1968504 -4645.0629921 -3297.3681102 -4517.9409449 -4649.1692913 -3303.4043307 -4529.5629921 -4517.3700787 -3319.8763780 -4512.6535433 -4519.5275591 -3321.7665354 -4526.0748031 -4391.9291339 -3339.9035433 -4497.9724409 -4392.5787402 -3337.1940945 -4511.4094488 -4267.9724409 -3357.6153543 -4477.5629921 -4267.9724409 -3350.4933071 -4489.2992126 -4391.5314961 -3361.0720472 -4463.1417323 -4514.3267717 -3354.9901575 -4442.2401575 -4515.6181102 -3366.9074803 -4435.5551181 -4517.3700787 -3379.7460630 -4431.0275591 -4641.3464567 -3364.8165354 -4408.0433071 -4649.1692913 -3390.9279528 -4410.2362205 -4645.0629921 -3378.0303150 -4407.9685039 -4774.5000000 -3362.7216535 -4385.1417323 -5131.7007874 -3230.8377953 -4246.9330709 -5029.5629921 -3304.4377953 -4300.9173228 -4907.2677165 -3357.9279528 -4333.5433071 -4771.5314961 -3380.6866142 -4350.2362205 -4762.9055118 -3363.0874016 -4343.9370079 -4780.4330709 -3373.3625984 -4391.4645669 -4903.6299213 -3330.3287402 -4361.3818898 -5122.1771654 -3201.2795276 -4271.1338583 -5021.1653543 -3274.0681102 -4324.5236220 -5131.7007874 -3230.8377953 -4246.9330709 -5122.1771654 -3201.2795276 -4271.1338583 -5144.8937008 -3236.3307087 -4261.7519685 4393.4448819 -3373.5566929 -4416.0196850 4393.4448819 -3335.7751969 -4605.7952756 -4267.9724409 -3351.2523622 -4619.3740157 -4267.9724409 -3335.7751969 -4605.7952756 4393.4448819 -3351.2523622 -4619.3740157 -4267.9724409 -3322.8917323 -4589.7362205 4393.4448819 -3322.8917323 -4589.7362205 -4267.9724409 -3312.9917323 -4571.6850394 4393.4448819 -3312.9917323 -4571.6850394 -4267.9724409 -3306.3775591 -4552.1889764 4393.4448819 -3306.3775591 -4552.1889764 -4267.9724409 -3303.2488189 -4531.8385827 4393.4448819 -3303.2488189 -4531.8385827 -4267.9724409 -3303.7015748 -4511.2559055 4393.4448819 -3303.7015748 -4511.2559055 4393.4448819 -3307.7212598 -4491.0669291 4393.4448819 -3393.0539370 -4409.4055118 -4267.9724409 -3393.0539370 -4409.4055118 4393.4448819 -3413.4023622 -4406.2755906 -4267.9724409 -3413.4023622 -4406.2755906 4393.4448819 -3433.9850394 -4406.7283465 -4267.9724409 -3433.9850394 -4406.7283465 4393.4448819 -3454.1767717 -4410.7480315 -4267.9724409 -3454.1767717 -4410.7480315 4393.4448819 -3473.3637795 -4418.2125984 -4267.9724409 -3473.3637795 -4418.2125984 4393.4448819 -3490.9633858 -4428.8976378 -4267.9724409 -3490.9633858 -4428.8976378 4393.4448819 -3506.4393701 -4442.4724409 -4267.9724409 -3506.4393701 -4442.4724409 -4267.9724409 -3519.3240157 -4458.5314961 4393.4448819 -3519.3240157 -4458.5314961 -4267.9724409 -3529.2236220 -4476.5826772 4393.4448819 -3529.2236220 -4476.5826772 -4267.9724409 -3535.8374016 -4496.0826772 4393.4448819 -3535.8374016 -4496.0826772 -4267.9724409 -3538.9661417 -4516.4291339 4393.4448819 -3538.9661417 -4516.4291339 -4267.9724409 -3538.5137795 -4537.0118110 4393.4448819 -3538.5137795 -4537.0118110 -4267.9724409 -3534.4937008 -4557.2047244 4393.4448819 -3534.4937008 -4557.2047244 -4267.9724409 -3527.0283465 -4576.3897638 4393.4448819 -3527.0283465 -4576.3897638 -4267.9724409 -3516.3452756 -4593.9921260 4393.4448819 -3516.3452756 -4593.9921260 -4267.9724409 -3502.7681102 -4609.4685039 4393.4448819 -3502.7681102 -4609.4685039 4393.4448819 -3486.7098425 -4622.3503937 -4267.9724409 -3486.7098425 -4622.3503937 4393.4448819 -3468.6578740 -4632.2519685 -4267.9724409 -3468.6578740 -4632.2519685 4393.4448819 -3449.1618110 -4638.8661417 -4267.9724409 -3449.1618110 -4638.8661417 4393.4448819 -3428.8129921 -4641.9921260 -4267.9724409 -3428.8129921 -4641.9921260 4393.4448819 -3408.2299213 -4641.5393701 -4267.9724409 -3408.2299213 -4641.5393701 4393.4448819 -3388.0381890 -4637.5196850 -4267.9724409 -3388.0381890 -4637.5196850 4393.4448819 -3368.8511811 -4630.0551181 -4267.9724409 -3368.8511811 -4630.0551181 -4390.0826772 -3297.7192913 -4527.7834646 -4513.8976378 -3391.0590551 -4389.8897638 -4513.8976378 -3284.0342520 -4535.7992126 -4644.7204724 -3402.5606299 -4372.8897638 -4517.6496063 -3411.3007874 -4390.0905512 -4517.6496063 -3290.3074803 -4555.0472441 -4521.8031496 -3299.8299213 -4572.8228346 -4651.2913386 -3283.2594488 -4567.2755906 -4658.0629921 -3297.8078740 -4580.1732283 -4789.3307087 -3272.8980315 -4559.6771654 -4917.8464567 -3237.0688976 -4526.7874016 -5041.1968504 -3190.0622047 -4481.5196850 -5144.8937008 -3115.3374016 -4426.7086614 -5155.4566929 -3168.4224409 -4372.1929134 -5175.4645669 -3165.5559055 -4409.9291339 -5181.6181102 -3181.5523622 -4398.5236220 -5151.3543307 -3157.7578740 -4379.7992126 -5167.1141732 -3148.8484252 -4418.5905512 -5145.7874016 -3146.6196850 -4385.5708661 -5156.8188976 -3131.9374016 -4424.2401575 -5138.9251969 -3135.3456693 -4389.3385827 -5144.8937008 -3115.3374016 -4426.7086614 -5028.9212598 -3197.8177165 -4444.9212598 -5130.9763780 -3124.2791339 -4390.9842520 -4910.6811024 -3249.7562992 -4490.2125984 -4786.3661417 -3290.8629921 -4524.7677165 -4658.0629921 -3321.0929134 -4548.4251969 -4653.5472441 -3311.3944882 -4539.8267717 -4522.0314961 -3325.9484252 -4538.9055118 -4524.7992126 -3332.2972441 -4550.7559055 -4393.4606299 -3336.8523622 -4525.1023622 -4394.5472441 -3338.8889764 -4538.6338583 -4267.9724409 -3345.5165354 -4502.0905512 -4267.9724409 -3342.8366142 -4515.5511811 4393.4448819 -3357.6153543 -4477.5629921 4393.4448819 -3350.4933071 -4489.2992126 -4267.9724409 -3366.6673228 -4467.2480315 -4391.9291339 -3371.7590551 -4454.5393701 -4392.5787402 -3383.7645669 -4447.9173228 -4393.4606299 -3396.7220472 -4443.4803150 -4519.5275591 -3393.1161417 -4428.7992126 -4524.7992126 -3419.8200787 -4431.4291339 -4522.0314961 -3406.6102362 -4428.9330709 -4653.5472441 -3403.1192913 -4414.7755906 -5144.8937008 -3236.3307087 -4261.7519685 -5041.1968504 -3311.0551181 -4316.5629921 -4917.8464567 -3368.3543307 -4347.7992126 -4789.3307087 -3410.4866142 -4372.0944882 -4780.4330709 -3396.6480315 -4359.7165354 -4651.2913386 -3420.8476378 -4379.6929134 -4658.0629921 -3414.2334646 -4421.4409449 -4786.3661417 -3382.5885827 -4399.7165354 -4910.6811024 -3337.2799213 -4370.8858268 -5130.9763780 -3204.9409449 -4281.0118110 -5028.9212598 -3278.4795276 -4334.9527559 -5130.9763780 -3204.9409449 -4281.0118110 -4397.9173228 -3329.8909449 -4601.4803150 -4400.2125984 -3345.2641732 -4614.9803150 -4395.6889764 -3317.1082677 -4585.4960630 -4393.6023622 -3307.3031496 -4567.5118110 -4391.7125984 -3300.7740157 -4548.0787402 -4391.7125984 -3407.7988189 -4402.1653543 -4393.6023622 -3428.2960630 -4402.5551181 -4395.6889764 -3448.3933071 -4406.5078740 -4397.9173228 -3467.4791339 -4413.8976378 -4400.2125984 -3484.9748031 -4424.5039370 -4402.5078740 -3500.3472441 -4438.0039370 -4404.7362205 -3513.1307087 -4453.9881890 -4406.8228346 -3522.9350394 -4471.9724409 -4408.7125984 -3529.4641732 -4491.4055118 -4410.3425197 -3532.5192913 -4511.7007874 -4411.6653543 -3532.0066929 -4532.2401575 -4412.6377953 -3527.9425197 -4552.3976378 -4413.2362205 -3520.4503937 -4571.5669291 -4413.4370079 -3509.7582677 -4589.1574803 -4413.2362205 -3496.1901575 -4604.6417323 -4412.6377953 -3480.1586614 -4617.5472441 -4411.6653543 -3462.1511811 -4627.4763780 -4410.3425197 -3442.7145669 -4634.1377953 -4408.7125984 -3422.4393701 -4637.3188976 -4406.8228346 -3401.9417323 -4636.9291339 -4404.7362205 -3381.8448819 -4632.9803150 -4402.5078740 -3362.7586614 -4625.5866142 -4521.8031496 -3431.1153543 -4393.8346457 -4526.2283465 -3312.3118110 -4588.5866142 -4530.7913386 -3327.3740157 -4601.8582677 -4664.8385827 -3314.4787402 -4590.1732283 -4797.9606299 -3290.4972441 -4565.9763780 -4927.7755906 -3254.9543307 -4529.1141732 -5051.7125984 -3207.6779528 -4479.7952756 -5156.8188976 -3131.9374016 -4424.2401575 -5167.1141732 -3148.8484252 -4418.5905512 -5068.1496063 -3242.8850394 -4466.6496063 -5175.4645669 -3165.5559055 -4409.9291339 -5060.7874016 -3225.4657480 -4474.7874016 -5073.5748031 -3259.4059055 -4455.6259843 -5181.6181102 -3181.5523622 -4398.5236220 -5145.7874016 -3206.4889764 -4303.9488189 -5181.6181102 -3229.3362205 -4333.3779528 -5175.4645669 -3235.4114173 -4314.6929134 -5185.3858268 -3220.6133858 -4351.6417323 -5186.6535433 -3209.5059055 -4368.9291339 -5185.3858268 -3196.3523622 -4384.7165354 -5151.3543307 -3204.3283465 -4316.3070866 -5155.4566929 -3200.2783465 -4328.7637795 -5157.9685039 -3194.4625984 -4340.9370079 -5158.8149606 -3187.0578740 -4352.4645669 -5157.9685039 -3178.2889764 -4362.9881890 -5050.5078740 -3244.0468504 -4427.6614173 -5151.3543307 -3157.7578740 -4379.7992126 -5155.4566929 -3168.4224409 -4372.1929134 -5046.8937008 -3233.0330709 -4435.0118110 -5145.7874016 -3146.6196850 -4385.5708661 -5041.9842520 -3221.4204724 -4440.4370079 -5138.9251969 -3135.3456693 -4389.3385827 -5035.9330709 -3209.5622047 -4443.7755906 -4917.2992126 -3261.6799213 -4491.7637795 -4792.1181102 -3302.5960630 -4528.9685039 -4530.7913386 -3350.6594488 -4570.1141732 -4527.7480315 -3340.6177165 -4561.2637795 -4395.8031496 -3343.2421260 -4551.5905512 -4397.1968504 -3349.7787402 -4563.5787402 -4267.9724409 -3342.5350394 -4529.2716535 -4267.9724409 -3344.6208661 -4542.8385827 4393.4448819 -3345.5165354 -4502.0905512 4393.4448819 -3342.8366142 -4515.5511811 4393.4448819 -3366.6673228 -4467.2480315 -4267.9724409 -3377.3728346 -4458.6574803 -4267.9724409 -3389.4066929 -4452.0590551 -4267.9724409 -3402.4047244 -4447.6496063 -4394.5472441 -3410.2389764 -4441.3582677 -4397.1968504 -3437.3015748 -4444.2519685 -4395.8031496 -3423.9043307 -4441.6181102 -4527.7480315 -3432.3433071 -4436.2086614 -5156.8188976 -3238.9622047 -4278.3267717 -5051.7125984 -3314.7027559 -4333.8818898 -4927.7755906 -3375.9476378 -4364.1574803 -4797.9606299 -3421.7826772 -4386.9881890 -4664.8385827 -3452.0673228 -4402.5944882 -4658.0629921 -3437.5188976 -4389.6968504 -4526.2283465 -3449.9000000 -4401.0039370 -4662.5787402 -3423.9326772 -4430.0393701 -4792.1181102 -3390.1188976 -4409.6456693 -4917.2992126 -3342.3417323 -4381.7952756 -5138.9251969 -3206.6960630 -4292.0629921 -5035.9330709 -3280.9114173 -4346.5000000 -5138.9251969 -3206.6960630 -4292.0629921 -5156.8188976 -3238.9622047 -4278.3267717 -4530.7913386 -3467.0850394 -4411.3818898 -4535.3543307 -3482.1472441 -4424.6574803 -4539.7795276 -3494.6291339 -4440.4212598 -4543.9330709 -3504.1507874 -4458.1929134 -4547.6850394 -3510.4248031 -4477.4409449 -4550.9251969 -3513.2586614 -4497.5748031 -4553.5511811 -3512.5681102 -4517.9803150 -4555.4881890 -3508.3716535 -4538.0433071 -4556.6732283 -3500.7996063 -4557.1535433 -4557.0708661 -3490.0795276 -4574.7244094 -4556.6732283 -3476.5385827 -4590.2283465 -4555.4881890 -3460.5881890 -4603.1929134 -4550.9251969 -3423.4543307 -4620.0078740 -4547.6850394 -3403.4000000 -4623.3543307 -4543.9330709 -3383.1582677 -4623.1496063 -4539.7795276 -3363.3433071 -4619.4094488 -4535.3543307 -3344.5582677 -4612.2362205 -4671.4055118 -3332.7657480 -4596.9803150 -4806.0551181 -3309.1988189 -4568.9015748 -4936.7480315 -3273.4535433 -4528.0393701 -4950.7755906 -3310.0393701 -4515.9055118 -4944.4921260 -3292.0027559 -4523.5905512 -4955.4055118 -3327.0161417 -4505.2165354 -5185.3858268 -3196.3523622 -4384.7165354 -5076.8976378 -3274.5267717 -4442.0551181 -5068.1496063 -3312.7405512 -4371.4133858 -5181.6181102 -3229.3362205 -4333.3779528 -5073.5748031 -3307.1897638 -4390.4803150 -5175.4645669 -3235.4114173 -4314.6929134 -5167.1141732 -3238.6523622 -4296.1535433 -5151.3543307 -3204.3283465 -4316.3070866 -5041.9842520 -3281.2897638 -4358.8110236 -5046.8937008 -3279.6031496 -4371.5196850 -5145.7874016 -3206.4889764 -4303.9488189 -5155.4566929 -3200.2783465 -4328.7637795 -5050.5078740 -3275.9027559 -4384.2322835 -5157.9685039 -3194.4625984 -4340.9370079 -5052.7244094 -3270.3011811 -4396.5629921 -5053.4685039 -3262.9685039 -4408.1417323 -5158.8149606 -3187.0578740 -4352.4645669 -5052.7244094 -3254.1275591 -4418.6141732 -5157.9685039 -3178.2889764 -4362.9881890 -5186.6535433 -3209.5059055 -4368.9291339 -5078.0157480 -3287.7885827 -4426.3464567 -5185.3858268 -3220.6133858 -4351.6417323 -5076.8976378 -3298.7874016 -4408.9803150 -4932.6338583 -3298.4035433 -4482.9566929 -4928.4448819 -3286.3787402 -4488.0826772 -4923.2834646 -3274.0122047 -4491.0472441 -4797.5157480 -3315.0633858 -4530.9212598 -4666.9566929 -3344.3988189 -4559.6299213 -4662.5787402 -3332.2066929 -4555.0944882 -4533.8346457 -3362.1153543 -4577.0314961 -4400.2125984 -3368.5488189 -4583.2362205 -4398.6811024 -3358.3003937 -4574.2322835 -4267.9724409 -3349.0307087 -4555.8346457 -4267.9724409 -3355.6303150 -4567.8700787 4393.4448819 -3342.5350394 -4529.2716535 4393.4448819 -3344.6208661 -4542.8385827 4393.4448819 -3377.3728346 -4458.6574803 4393.4448819 -3389.4066929 -4452.0590551 4393.4448819 -3402.4047244 -4447.6496063 -4267.9724409 -3415.9712598 -4445.5629921 -4267.9724409 -3443.1539370 -4448.5433071 -4267.9724409 -3429.6925197 -4445.8622047 -4398.6811024 -3450.0259843 -4449.1811024 -4530.7913386 -3443.7996063 -4443.1299213 -5167.1141732 -3238.6523622 -4296.1535433 -5060.7874016 -3315.2704724 -4352.3543307 -4936.7480315 -3380.4783465 -4382.1259843 -4806.0551181 -3430.1921260 -4403.9448819 -4671.4055118 -3464.0511811 -4417.9921260 -4533.8346457 -3453.8409449 -4451.9763780 -4666.9566929 -3431.9216535 -4440.3070866 -4797.5157480 -3395.7255906 -4420.9488189 -4923.2834646 -3345.3622047 -4393.7716535 -4677.5669291 -3473.1066929 -4435.4251969 -4683.1377953 -3478.9578740 -4454.3622047 -4687.9488189 -3481.4275591 -4474.2244094 -4691.8464567 -3480.4409449 -4494.4173228 -4694.7204724 -3476.0271654 -4514.3188976 -4696.4803150 -3468.3212598 -4533.3307087 -4697.0748031 -3457.5566929 -4550.8700787 -4696.4803150 -3444.0606299 -4566.4055118 -4694.7204724 -3428.2433071 -4579.4685039 -4553.5511811 -3442.7125984 -4613.2204724 -4677.5669291 -3352.1133858 -4600.3818898 -4813.3700787 -3328.4350394 -4568.3700787 -4824.8110236 -3366.1751969 -4557.0826772 -4819.6889764 -3347.6216535 -4564.3858268 -4828.5866142 -3383.5318898 -4546.6732283 -4958.2401575 -3342.4157480 -4491.8503937 -4950.7755906 -3379.8948819 -4420.6692913 -4955.4055118 -3374.8000000 -4440.0708661 -4928.4448819 -3346.2488189 -4406.4566929 -4932.6338583 -3344.9740157 -4419.4685039 -4935.7204724 -3341.5771654 -4432.4015748 -4937.6102362 -3336.1610236 -4444.8700787 -4938.2480315 -3328.8913386 -4456.4960630 -4937.6102362 -3319.9877953 -4466.9212598 -4935.7204724 -3309.7208661 -4475.8346457 -4959.1929134 -3355.7712598 -4476.2125984 -4958.2401575 -3366.6763780 -4458.7755906 -4806.6023622 -3340.6787402 -4527.9094488 -4802.3937008 -3327.8877953 -4530.5629921 -4671.0669291 -3357.2964567 -4561.8976378 -4536.7834646 -3374.6385827 -4581.8110236 -4401.7440945 -3380.2122047 -4590.3070866 -4267.9724409 -3374.5370079 -4587.6259843 -4267.9724409 -3364.2192913 -4578.5748031 4393.4448819 -3349.0307087 -4555.8346457 4393.4448819 -3355.6303150 -4567.8700787 4393.4448819 -3415.9712598 -4445.5629921 4393.4448819 -3429.6925197 -4445.8622047 4393.4448819 -3443.1539370 -4448.5433071 -4267.9724409 -3455.9456693 -4453.5196850 -4400.2125984 -3461.6893701 -4456.2519685 -4944.4921260 -3381.8074803 -4401.1574803 -4813.3700787 -3435.4598425 -4422.4566929 -4401.7440945 -3471.9377953 -4465.2519685 -4536.7834646 -3462.1622047 -4462.4881890 -4671.0669291 -3437.9586614 -4451.9291339 -4802.3937008 -3399.2374016 -4433.2874016 -4819.6889764 -3437.4263780 -4441.9527559 -4824.8110236 -3436.0307087 -4461.8425197 -4828.5866142 -3431.3165354 -4481.5236220 -4830.8976378 -3423.4251969 -4500.4015748 -4831.6771654 -3412.5988189 -4517.8937008 -4830.8976378 -3399.1649606 -4533.4763780 -4691.8464567 -3410.5854331 -4589.6535433 -4687.9488189 -3391.6232283 -4596.6614173 -4683.1377953 -3371.9330709 -4600.2716535 -4806.6023622 -3400.5480315 -4446.2874016 -4810.0196850 -3399.6177165 -4459.5472441 -4812.5354331 -3396.4744094 -4472.6692913 -4814.0787402 -3391.2141732 -4485.2519685 -4814.5944882 -3383.9964567 -4496.9133858 -4814.0787402 -3375.0413386 -4507.3031496 -4812.5354331 -3364.6188976 -4516.0984252 -4810.0196850 -3353.0472441 -4523.0393701 -4677.9842520 -3383.6366142 -4559.4173228 -4674.7795276 -3370.5098425 -4561.8267717 -4539.5511811 -3387.8488189 -4584.3070866 -4403.2283465 -3392.9362205 -4595.2322835 -4267.9724409 -3386.2700787 -4594.7480315 4393.4448819 -3374.5370079 -4587.6259843 4393.4448819 -3364.2192913 -4578.5748031 4393.4448819 -3455.9456693 -4453.5196850 -4267.9724409 -3467.6779528 -4460.6417323 -4267.9724409 -3477.9956693 -4469.6929134 -4403.2283465 -3480.4598425 -4475.9055118 -4539.5511811 -3468.5106299 -4474.3346457 -4674.7795276 -3441.8598425 -4464.5511811 -4677.9842520 -3443.5062992 -4477.7952756 -4680.5866142 -3442.8484252 -4491.2559055 -4682.5039370 -3439.9059055 -4504.5236220 -4683.6771654 -3434.7685039 -4517.1968504 -4680.5866142 -3396.2779528 -4554.7480315 -4544.2125984 -3414.7129921 -4582.2125984 -4542.0551181 -3401.3429134 -4584.4409449 -4404.6181102 -3406.3342520 -4597.8661417 -4267.9724409 -3399.0610236 -4599.7244094 4393.4448819 -3386.2700787 -4594.7480315 4393.4448819 -3467.6779528 -4460.6417323 4393.4448819 -3477.9956693 -4469.6929134 -4267.9724409 -3486.5846457 -4480.4015748 -4404.6181102 -3486.9964567 -4487.8976378 -4542.0551181 -3472.6929134 -4487.1692913 -4544.2125984 -3474.5822835 -4500.5905512 -4545.9645669 -3474.1216535 -4514.1929134 -4547.2559055 -3471.3244094 -4527.5708661 -4548.0472441 -3466.2759843 -4540.3070866 -4684.0708661 -3427.5921260 -4528.8897638 -4683.6771654 -3418.5952756 -4539.2480315 -4682.5039370 -3408.0500000 -4547.9566929 -4406.9645669 -3433.5161417 -4596.0039370 -4405.8779528 -3419.9992126 -4598.1259843 -4267.9724409 -3412.5224409 -4602.4055118 4393.4448819 -3399.0610236 -4599.7244094 4393.4448819 -3486.5846457 -4480.4015748 -4267.9724409 -3493.1846457 -4492.4330709 -4405.8779528 -3491.3492126 -4500.8503937 -4406.9645669 -3493.3854331 -4514.3818898 -4407.8464567 -3493.0440945 -4528.0748031 -4408.4960630 -3490.3350394 -4541.5118110 -4408.8937008 -3485.3401575 -4554.2913386 -4548.3110236 -3459.1299213 -4552.0236220 -4548.0472441 -3450.1019685 -4562.3582677 -4547.2559055 -3439.4688976 -4571.0000000 -4545.9645669 -3427.5511811 -4577.6850394 -4267.9724409 -3439.8102362 -4600.6220472 -4267.9724409 -3426.2444882 -4602.7086614 4393.4448819 -3412.5224409 -4602.4055118 4393.4448819 -3493.1846457 -4492.4330709 -4267.9724409 -3497.5940945 -4505.4330709 -4267.9724409 -3499.6799213 -4519.0000000 -4267.9724409 -3499.3783465 -4532.7204724 -4267.9724409 -3496.6984252 -4546.1811024 -4267.9724409 -3491.7216535 -4558.9724409 -4409.0275591 -3478.2118110 -4566.0196850 -4408.8937008 -3469.1665354 -4576.3425197 -4408.4960630 -3458.4787402 -4584.9448819 -4407.8464567 -3446.4744094 -4591.5669291 -4267.9724409 -3452.8078740 -4596.2125984 4393.4448819 -3439.8102362 -4600.6220472 4393.4448819 -3426.2444882 -4602.7086614 4393.4448819 -3497.5940945 -4505.4330709 4393.4448819 -3499.3783465 -4532.7204724 4393.4448819 -3499.6799213 -4519.0000000 4393.4448819 -3496.6984252 -4546.1811024 4393.4448819 -3491.7216535 -4558.9724409 -4267.9724409 -3484.5992126 -4570.7047244 -4267.9724409 -3475.5484252 -4581.0236220 -4267.9724409 -3464.8429134 -4589.6102362 4393.4448819 -3452.8078740 -4596.2125984 4393.4448819 -3484.5992126 -4570.7047244 4393.4448819 -3475.5484252 -4581.0236220 4393.4448819 -3464.8429134 -4589.6102362 - - - - - - - - - - 0.6234891 0.6304266 0.4624108 0.6561903 0.4892042 0.5745377 0.6139549 0.5177541 0.5958104 0.6663497 0.6012420 0.4410058 0.5238956 0.5692813 0.6336026 0.5320284 0.6827532 0.5007933 0.6139566 0.7238156 0.3148782 0.6561896 0.6949535 0.2940320 -0.7071321 0.5701583 0.4181910 -0.7071203 0.5701539 0.4182170 -0.7071191 0.5701862 0.4181749 -0.7071128 0.5701818 0.4181915 0.6260365 0.3622817 0.6905289 0.5856615 0.3892988 0.7109479 0.4272542 0.6123690 0.6651752 0.4338847 0.7264915 0.5328735 0.5238977 0.7753385 0.3526774 0.4997457 0.4384513 0.7470038 -0.7071303 0.5701164 0.4182511 -0.7071172 0.5701762 0.4181919 -0.7071224 0.5701523 0.4182156 -0.7071303 0.5701164 0.4182511 0.6260365 0.7674632 0.1381253 0.5856611 0.7950557 0.1577580 -0.6663549 -0.6012397 -0.4410012 -0.6139582 -0.7238067 -0.3148956 -0.6234952 -0.6304249 -0.4624049 -0.6561983 -0.6949420 -0.2940396 -0.7071516 0.5701164 0.4182151 -0.7071245 0.5701474 0.4182187 -0.7071043 0.5701705 0.4182213 -0.7071516 0.5701164 0.4182151 0.5394803 0.2489719 0.8043470 0.5767924 0.2242783 0.7854997 0.3252246 0.6464493 0.6901683 0.3302815 0.7611010 0.5582467 0.4272534 0.8184031 0.3842798 0.4075573 0.4795518 0.7771275 0.4997484 0.8442106 0.1938041 0.4603411 0.2942546 0.8375561 -0.7071101 0.5702083 0.4181601 -0.7070945 0.5702008 0.4181967 -0.7071007 0.5702038 0.4181820 -0.7071101 0.5702083 0.4181601 -0.5856685 -0.7950491 -0.1577635 -0.5767861 -0.8165976 0.0220491 -0.5394733 -0.8419924 0.0041562 -0.6260400 -0.7674617 -0.1381177 0.5767977 0.8165900 -0.0220283 0.5394834 0.8419860 -0.0041415 -0.5320361 -0.6827509 -0.5007882 -0.5238949 -0.7753344 -0.3526908 -0.6561966 -0.4892078 -0.5745274 -0.6139564 -0.5177655 -0.5957990 -0.6260482 -0.3623120 -0.6905025 -0.5856742 -0.3893224 -0.7109246 -0.7070741 0.5702051 0.4182253 -0.7070773 0.5701977 0.4182300 -0.7070797 0.5701922 0.4182334 -0.7070741 0.5702051 0.4182253 0.4768231 0.1010574 0.8731707 0.5099281 0.0793836 0.8565463 0.2191195 0.6710799 0.7082643 0.2225144 0.7861427 0.5765994 0.3252286 0.8524811 0.4092704 0.3102523 0.5120475 0.8009687 0.4075566 0.8852947 0.2239438 0.3754067 0.3320336 0.8653459 0.4603439 0.8872649 0.0290602 0.4068804 0.1410902 0.9025197 0.5099322 0.8408310 -0.1815831 0.4768223 0.8632003 -0.1659086 -0.7070861 0.5701968 0.4182163 -0.7070801 0.5702059 0.4182140 -0.7070801 0.5702059 0.4182140 -0.7070861 0.5701968 0.4182163 -0.7070861 0.5701968 0.4182163 -0.4768071 -0.8632024 0.1659415 -0.4274824 -0.8394101 0.3356330 -0.3996198 -0.8580515 0.3225703 -0.5099191 -0.8408355 0.1815989 -0.4997509 -0.8442084 -0.1938072 -0.4603356 -0.8872701 -0.0290336 -0.4338846 -0.7264803 -0.5328889 -0.4272519 -0.8184053 -0.3842766 -0.5238879 -0.5692819 -0.6336084 -0.4997457 -0.4384388 -0.7470111 -0.5394852 -0.2489910 -0.8043378 -0.5767845 -0.2242781 -0.7855056 -0.4768120 -0.1010333 -0.8731796 -0.5099081 -0.0793672 -0.8565598 -0.7070833 0.5701839 0.4182386 -0.7070770 0.5701855 0.4182472 -0.7070770 0.5701855 0.4182472 -0.7070833 0.5701839 0.4182386 -0.7070833 0.5701839 0.4182386 0.3996284 -0.0498994 0.9153181 0.4274872 -0.0679478 0.9014642 0.1102599 0.6859853 0.7192127 0.1119662 0.8012797 0.5877196 0.2191196 0.8771364 0.4273386 0.2090193 0.5355340 0.8182385 0.3102501 0.9177932 0.2477914 0.2857701 0.3619637 0.8873092 0.3754155 0.9251140 0.0568093 0.4068726 0.9032203 -0.1365570 0.3410134 -0.0163615 0.9399160 0.4274859 0.8394108 -0.3356268 0.3996205 0.8580520 -0.3225682 0.3320089 0.8123677 -0.4794047 0.3102865 0.8267368 -0.4692852 0.2263864 0.7605249 -0.6085648 0.2115262 0.7702420 -0.6016510 -0.7070741 0.5702150 0.4182117 -0.7071328 0.5701577 0.4181906 -0.7071328 0.5701577 0.4181906 -0.7070741 0.5702150 0.4182117 -0.3102763 -0.8267345 0.4692959 -0.2264001 -0.7605336 0.6085487 -0.2115396 -0.7702546 0.6016302 -0.3319926 -0.8123594 0.4794300 -0.4068633 -0.9032186 0.1365956 -0.3410087 -0.8915904 0.2979590 -0.4075506 -0.8853017 -0.2239273 -0.3754148 -0.9251162 -0.0567779 -0.3302816 -0.7610745 -0.5582827 -0.3252292 -0.8524871 -0.4092575 -0.4272614 -0.6123928 -0.6651486 -0.4075513 -0.4795103 -0.7771562 -0.4603582 -0.2942707 -0.8375411 -0.4068821 -0.1410484 -0.9025255 -0.3995720 0.0500009 -0.9153372 -0.4274507 0.0680154 -0.9014764 0.3102672 -0.1992968 0.9295241 0.3319843 -0.2132381 0.9188666 -0.3102340 0.1993407 -0.9295258 -0.3319722 0.2132896 -0.9188591 -0.2115792 0.3424222 -0.9154132 -0.2263908 0.3519964 -0.9082102 -0.7070707 0.5701870 0.4182558 -0.7071555 0.5701364 0.4181812 -0.7071180 0.5701495 0.4182267 -0.7070707 0.5701870 0.4182558 0.2115188 -0.3424918 0.9154011 0.2263744 -0.3519958 0.9082145 0.0276581 0.6909590 0.7223646 0.0280917 0.8060187 0.5912230 0.1102528 0.8920497 0.4382826 0.1051647 0.5497492 0.8286834 0.2090200 0.9413099 0.2650401 0.1925406 0.3836926 0.9031656 0.2857697 0.9550559 0.0787650 0.2525851 0.2009760 0.9464721 0.3318092 0.1744935 0.9270678 0.3318124 0.9366698 -0.1120276 0.3410032 0.8915891 -0.2979692 0.2647808 -0.1731883 0.9486290 0.2781109 0.0117006 0.9604777 0.2647685 0.8527780 -0.4501859 0.1804952 0.7879981 -0.5886259 0.1138589 0.6854684 -0.7191448 0.1063697 0.6903182 -0.7156440 -0.0019266 0.5894867 -0.8077758 -0.0020678 0.5895616 -0.8077208 -0.7071915 0.5701005 0.4181694 -0.7071404 0.5701328 0.4182118 -0.7070483 0.5702188 0.4182503 0.0019439 -0.5894734 0.8077854 -0.1138693 -0.6854878 0.7191246 0.0020706 -0.5895757 0.8077105 -0.1063871 -0.6903438 0.7156167 -0.2647661 -0.8527806 0.4501823 -0.1804996 -0.7879973 0.5886257 -0.3318058 -0.9366704 0.1120419 -0.2780969 -0.9196251 0.2774017 -0.3102394 -0.9178049 -0.2477613 -0.2857740 -0.9550560 -0.0787476 -0.2225167 -0.7861214 -0.5766276 -0.2191210 -0.8771519 -0.4273061 -0.3252274 -0.6464372 -0.6901783 -0.3754075 -0.3320287 -0.8653474 -0.3318101 -0.1744990 -0.9270664 -0.3410057 0.0164041 -0.9399181 -0.2647832 0.1731933 -0.9486274 -0.1805168 0.3246896 -0.9284344 -0.1064265 0.4751584 -0.8734403 -0.0019439 -0.5934073 0.8049000 0.1138633 -0.4800008 0.8698473 -0.0020726 -0.5933112 0.8049705 0.1063689 -0.4752165 0.8734157 -0.1138607 0.4800068 -0.8698444 0.0019422 0.5934030 -0.8049032 0.0020847 0.5933235 -0.8049614 -0.7071454 0.5701502 0.4181796 0.0000000 0.8063341 0.5914603 0.0000000 0.6914182 0.7224548 0.0276621 0.8965796 0.4420179 0.1051658 0.9555426 0.2754606 0.0968736 0.3967673 0.9127931 0.1925392 0.9767141 0.0946480 0.2525853 0.9631312 -0.0926228 0.2117095 0.0339032 0.9767444 0.2780979 0.9196263 -0.2773968 0.2159052 -0.1515055 0.9645885 0.2159237 0.8745487 -0.4342137 0.1472012 0.8028393 -0.5777377 0.0907621 0.6992513 -0.7090909 -0.0016422 0.5893363 -0.8078861 -0.1101436 0.4707711 -0.8753531 -0.1178986 0.4757275 -0.8716555 -0.7070638 0.5701953 0.4182560 0.1101728 -0.4707278 0.8753727 0.1178550 -0.4757783 0.8716336 0.2300369 -0.3474992 0.9090255 0.0016692 -0.5892937 0.8079171 -0.0907887 -0.6992758 0.7090633 -0.2159244 -0.8745455 0.4342197 -0.1471932 -0.8028222 0.5777635 -0.2525812 -0.9631323 0.0926220 -0.2116809 -0.9418018 0.2611525 -0.2090204 -0.9413174 -0.2650134 -0.1925376 -0.9767134 -0.0946584 -0.1119680 -0.8012777 -0.5877221 -0.1102538 -0.8920701 -0.4382409 -0.2191143 -0.6710781 -0.7082677 -0.3102386 -0.5120249 -0.8009884 -0.2857724 -0.3620117 -0.8872889 -0.2525753 -0.2009701 -0.9464759 -0.2780981 -0.0116643 -0.9604818 -0.1472054 0.3098842 -0.9393095 -0.2159566 0.1513696 -0.9645984 -0.0907798 0.4662679 -0.8799735 -0.1101407 -0.6935090 0.7119791 -0.1178930 -0.6884880 0.7156015 -0.0016746 -0.5935887 0.8047668 0.0907615 -0.4663042 0.8799561 0.1805230 -0.3246787 0.9284370 0.0016538 0.5935664 -0.8047833 0.1101768 0.6935325 -0.7119507 0.1179335 0.6885178 -0.7155662 -0.7071873 0.5701356 0.4181287 0.0000000 0.5554364 0.8315590 0.0263795 0.5548110 0.8315581 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.8968038 0.4424284 0.0263872 0.9598227 0.2793637 0.0968774 0.9898199 0.1042659 0.0856233 0.2317381 0.9690026 0.1701766 0.2200968 0.9605193 0.0243029 0.4017223 0.9154390 0.1701733 0.9822756 -0.0785853 0.2116947 0.9418091 -0.2611149 0.1643636 -0.1342658 0.9772192 0.1643672 0.8917708 -0.4215783 0.1120490 0.8145792 -0.5691272 0.0740227 0.7067229 -0.7036074 -0.0013375 0.5891998 -0.8079863 -0.0939810 0.4615405 -0.8821269 -0.2149607 0.3378260 -0.9163326 -0.2300536 0.3475033 -0.9090197 -0.7070466 0.5702249 0.4182448 0.2149908 -0.3377712 0.9163458 0.0940119 -0.4614890 0.8821506 0.0013616 -0.5891494 0.8080230 -0.0740424 -0.7067358 0.7035924 -0.1643661 -0.8917636 0.4215939 -0.1120411 -0.8145659 0.5691478 -0.1701768 -0.9822751 0.0785841 -0.1426193 -0.9578493 0.2493680 -0.1051700 -0.9555411 -0.2754642 -0.0968769 -0.9898183 -0.1042812 -0.0280915 -0.8060256 -0.5912137 -0.0276623 -0.8966029 -0.4419705 -0.1102566 -0.6859998 -0.7191994 -0.2090127 -0.5355487 -0.8182306 -0.1925307 -0.3836759 -0.9031748 -0.1701732 -0.2201022 -0.9605187 -0.2116886 -0.0338694 -0.9767501 -0.1120341 0.2982089 -0.9479029 -0.1643906 0.1341640 -0.9772286 -0.0740063 0.4588589 -0.8854217 -0.2300635 -0.7626602 0.6045000 -0.2149637 -0.7725329 0.5974810 -0.0939888 -0.7027550 0.7051961 0.0740481 -0.4587755 0.8854614 0.1471978 -0.3099147 0.9393006 0.0013716 0.5937329 -0.8046610 0.0939973 0.7027671 -0.7051829 0.2300510 0.7626557 -0.6045104 0.2149723 0.7725408 -0.5974676 -0.7071018 0.5701966 0.4181900 -0.7070576 0.5701921 0.4182708 -0.7071049 0.5701725 0.4182177 0.0000000 0.4025443 0.9154005 0.0000000 0.7225043 -0.6913664 -0.0000896 0.5901657 -0.8072822 0.0047938 0.7214240 -0.6924771 0.0000000 0.5914240 -0.8063608 0.0095327 0.8307140 -0.5566178 0.0000000 0.8315633 -0.5554300 0.0139808 0.9147426 -0.4037952 0.0000000 0.9153747 -0.4026030 0.0180066 0.9709399 -0.2386450 0.0000000 0.9713830 -0.2375187 0.0214845 0.9975740 -0.0662160 0.0000000 0.9978702 -0.0652315 0.0243064 0.9938282 0.1082349 0.0000000 0.9940367 0.1090459 0.0000000 0.9600066 0.2799773 0.0000000 0.2375443 0.9713767 0.0214841 0.2365176 0.9713896 0.0000000 0.0652670 0.9978678 0.0180081 0.0640689 0.9977830 0.0000000 -0.1090329 0.9940381 0.0139792 -0.1103785 0.9937913 0.0000000 -0.2799729 0.9600079 0.0095257 -0.2813754 0.9595505 0.0000000 -0.4424519 0.8967922 0.0047898 -0.4438073 0.8961095 0.0000000 -0.5914392 0.8063496 -0.0000860 -0.5926868 0.8054330 0.0000000 -0.7224522 0.6914208 -0.0049571 -0.7235035 0.6903029 -0.0096754 -0.8323317 0.5541934 0.0000000 -0.8315555 0.5554416 -0.0140925 -0.9158420 0.4012915 0.0000000 -0.9153941 0.4025589 -0.0180735 -0.9715087 0.2363139 0.0000000 -0.9713890 0.2374942 -0.0215048 -0.9977025 0.0642442 0.0000000 -0.9978686 0.0652555 -0.0242855 -0.9936604 -0.1097692 0.0000000 -0.9940388 -0.1090271 -0.0263309 -0.9595179 -0.2804141 0.0000000 -0.9599970 -0.2800102 -0.0275818 -0.8963482 -0.4424921 0.0000000 -0.8968101 -0.4424157 -0.0280057 -0.8060492 -0.5911855 0.0000000 -0.8063725 -0.5914079 -0.0275843 -0.6913109 -0.7220307 0.0000000 -0.6913652 -0.7225055 0.0000000 -0.5554353 -0.8315597 -0.0263340 -0.5556922 -0.8309709 0.0000000 -0.4026253 -0.9153649 -0.0242921 -0.4032302 -0.9147761 0.0000000 -0.2374601 -0.9713973 -0.0215056 -0.2383954 -0.9709300 0.0000000 -0.0651715 -0.9978741 -0.0180678 -0.0663517 -0.9976327 0.0000000 0.1090327 -0.9940382 -0.0140832 0.1076764 -0.9940862 0.0000000 0.2799729 -0.9600079 -0.0096667 0.2785661 -0.9603684 0.0000000 0.4423875 -0.8968240 -0.0049570 0.4410327 -0.8974773 0.0856257 0.9938597 -0.0700797 0.1426290 0.0498655 0.9885193 0.1426311 0.9578540 -0.2493434 0.1120540 -0.2981498 0.9479191 0.1107354 -0.1217940 0.9863589 0.1107434 0.9042319 -0.4124324 0.0754945 0.8230750 -0.5628926 0.0563515 0.7126295 -0.6992737 -0.0010484 0.5890338 -0.8081077 -0.0766302 0.4538275 -0.8877885 -0.1834407 0.3197602 -0.9295714 -0.3131836 0.1947429 -0.9295113 -0.3351137 0.2088467 -0.9187393 -0.7070988 0.5701769 0.4182220 -0.7071014 0.5701780 0.4182160 -0.7070988 0.5701769 0.4182220 -0.7071014 0.5701780 0.4182160 -0.7071014 0.5701780 0.4182160 -0.7071014 0.5701780 0.4182160 -0.7071014 0.5701780 0.4182160 -0.7071014 0.5701780 0.4182160 -0.7071014 0.5701780 0.4182160 0.3131341 -0.1948139 0.9295131 0.3351116 -0.2087983 0.9187511 0.1834349 -0.3197829 0.9295647 0.0766750 -0.4537421 0.8878283 0.0010169 -0.5891066 0.8080547 -0.0563544 -0.7126399 0.6992629 -0.1107386 -0.9042240 0.4124511 -0.0754865 -0.8230577 0.5629190 -0.0856256 -0.9938594 0.0700839 -0.0717662 -0.9675596 0.2422355 -0.0263885 -0.9598177 -0.2793806 -0.0243076 -0.9938287 -0.1082294 0.0000000 -0.8063414 -0.5914504 0.0000000 -0.8968307 -0.4423739 -0.0276645 -0.6909136 -0.7224078 -0.1051747 -0.5497884 -0.8286561 -0.0968790 -0.3967449 -0.9128022 -0.0856291 -0.2316729 -0.9690177 -0.1426243 -0.0499052 -0.9885180 -0.0754987 0.2896736 -0.9541431 -0.1107494 0.1217561 -0.9863620 -0.0563709 0.4528865 -0.8897843 -0.3351152 -0.8135813 0.4751666 -0.3131931 -0.8280845 0.4649582 -0.1834191 -0.7905637 0.5842658 -0.0766560 -0.7104955 0.6995141 -0.0013530 -0.5937013 0.8046844 0.0563691 -0.4528773 0.8897891 0.0009937 0.5937428 -0.8046543 0.0766657 0.7105108 -0.6994975 0.1834573 0.7905938 -0.5842130 0.3350954 0.8135796 -0.4751835 0.3131795 0.8280843 -0.4649678 -0.7070555 0.5701674 0.4183080 0.0191047 0.7194822 -0.6942480 -0.0003546 0.5889168 -0.8081936 0.0379898 0.8282188 -0.5591158 0.0557253 0.9117683 -0.4069069 0.0717638 0.9675616 -0.2422281 0.0717602 0.0596609 0.9956360 0.0557143 -0.1142622 0.9918871 0.0379777 -0.2845267 0.9579156 0.0191061 -0.4460212 0.8948184 -0.0003483 -0.5939202 0.8045239 -0.0197840 -0.7236886 0.6898430 -0.0386083 -0.8314341 0.5542804 -0.0562441 -0.9139187 0.4019816 -0.0721735 -0.9686756 0.2376102 -0.0859119 -0.9941070 0.0661090 -0.0970533 -0.9894720 -0.1073584 -0.1052491 -0.9549412 -0.2775067 -0.1102736 -0.8915714 -0.4392495 -0.1119662 -0.8012800 -0.5877192 -0.1102775 -0.6868067 -0.7184257 -0.1052427 -0.5515215 -0.8274950 -0.0970541 -0.3996163 -0.9115302 -0.0859181 -0.2355791 -0.9680499 -0.0721631 -0.0642820 -0.9953192 -0.0562385 0.1088828 -0.9924625 -0.0385971 0.2789329 -0.9595346 -0.0197747 0.4406056 -0.8974829 0.0754955 -0.2896621 0.9541469 0.0379641 0.7168936 -0.6961482 -0.0007015 0.5889599 -0.8081620 -0.0583519 0.4476796 -0.8922881 -0.1496035 0.3046866 -0.9406300 -0.2672417 0.1684585 -0.9487906 -0.4019113 0.0457782 -0.9145336 -0.4299328 0.0639467 -0.9005935 -0.5116375 -0.0827461 -0.8552077 -0.5404362 -0.2515296 -0.8029082 -0.5778068 -0.2267911 -0.7840313 -0.4784228 -0.1044902 -0.8718907 -0.5861089 -0.3909363 -0.7096796 -0.6265015 -0.3638893 -0.6892608 -0.7070952 0.5701852 0.4182168 -0.7070962 0.5701758 0.4182279 -0.7070956 0.5701814 0.4182212 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 -0.7070962 0.5701758 0.4182279 0.5861219 0.3910028 0.7096323 0.5778261 0.2268101 0.7840116 0.6265248 0.3639342 0.6892159 0.5404576 0.2516000 0.8028717 0.5116308 0.0827109 0.8552151 0.4784168 0.1044810 0.8718951 0.4299329 -0.0639248 0.9005950 0.4018577 -0.0458728 0.9145524 0.2672210 -0.1685163 0.9487862 0.1495756 -0.3047366 0.9406183 0.0006937 -0.5890110 0.8081248 -0.0379682 -0.7169208 0.6961199 -0.0557178 -0.9117640 0.4069175 -0.0379835 -0.8281950 0.5591514 -0.0214848 -0.9975734 0.0662244 -0.0180072 -0.9709352 0.2386642 0.0000000 -0.9600018 -0.2799938 0.0000000 -0.9940382 -0.1090328 0.0000000 -0.6913631 -0.7225075 -0.0263936 -0.5548046 -0.8315620 -0.0243134 -0.4017182 -0.9154405 -0.0214899 -0.2364930 -0.9713955 -0.0717697 -0.0596394 -0.9956366 -0.0379790 0.2845577 -0.9579063 -0.0557147 0.1142295 -0.9918909 -0.0379608 0.4486703 -0.8928908 -0.4299269 -0.8397946 0.3315236 -0.4019139 -0.8585429 0.3183855 -0.2672517 -0.8543695 0.4456785 -0.1495769 -0.8056421 0.5732081 -0.0583553 -0.7166177 0.6950207 -0.0010349 -0.5938315 0.8045888 0.0379782 -0.4485996 0.8929256 0.0583688 0.7166319 -0.6950049 0.1495678 0.8056390 -0.5732149 0.2672611 0.8543732 -0.4456658 0.4299233 0.8397958 -0.3315252 0.4018950 0.8585418 -0.3184124 -0.7071152 0.5701707 0.4182027 -0.7071152 0.5701707 0.4182027 -0.0006986 -0.5938927 0.8045439 -0.0393229 -0.7210337 0.6917833 -0.0767206 -0.8262070 0.5581182 -0.1117824 -0.9063010 0.4075820 -0.1434388 -0.9589108 0.2447761 -0.1707471 -0.9824843 0.0746320 -0.1928808 -0.9763433 -0.0977283 -0.2091823 -0.9407054 -0.2670507 -0.2191599 -0.8766530 -0.4283089 -0.2225165 -0.7861229 -0.5766258 -0.2191628 -0.6719011 -0.7074720 -0.2091823 -0.5373036 -0.8170359 -0.1707503 -0.2239447 -0.9595275 -0.1434450 -0.0545875 -0.9881517 -0.1117809 0.1164974 -0.9868806 -0.0767234 0.2841478 -0.9557058 -0.0393057 0.4432915 -0.8955153 -0.1138581 0.2928120 -0.9493669 -0.2179390 0.1465032 -0.9649038 -0.3429514 0.0120547 -0.9392758 -0.4611660 -0.2968702 -0.8361782 -0.4082458 -0.1446373 -0.9013409 -0.5001454 -0.4401300 -0.7457481 -0.6563049 -0.4899757 -0.5737489 -0.6140730 -0.5185229 -0.5950196 -0.5404377 -0.8413831 0.0012763 -0.6265044 -0.7667346 -0.1400369 -0.5861104 -0.7943375 -0.1596950 -0.5778066 -0.8159478 0.0192039 -0.7070947 0.5701902 0.4182108 0.5778195 0.8159388 -0.0191948 0.4784170 0.8630098 -0.1622690 0.5404460 0.8413778 -0.0012624 0.5116350 0.8405642 -0.1779929 0.6265204 0.7667159 0.1400676 0.5861140 0.7943276 0.1597311 0.6563117 0.6944328 0.2949883 0.6140763 0.7233009 0.3158262 0.6234851 0.6304377 0.4624009 0.6663402 0.6012558 0.4410015 0.6140758 0.5185134 0.5950250 0.6563087 0.4899558 0.5737615 -0.6663360 -0.6012463 -0.4410208 -0.6234866 -0.6304229 -0.4624192 -0.6563072 -0.6944306 -0.2950035 -0.6140746 -0.7232934 -0.3158464 0.4611519 0.2968307 0.8362000 0.4082475 0.1446789 0.9013335 0.3429239 -0.0121237 0.9392850 0.2179533 -0.1464653 0.9649064 0.1138624 -0.2927921 0.9493725 0.0583590 -0.4476641 0.8922954 0.0393316 -0.4431996 0.8955597 0.0003420 -0.5889652 0.8081583 -0.0191096 -0.7195068 0.6942224 -0.0139823 -0.9147433 0.4037935 -0.0095302 -0.8307052 0.5566309 0.0000000 -0.9978696 0.0652400 0.0000000 -0.9713761 0.2375468 0.0000000 -0.5554391 -0.8315572 0.0000000 -0.4025541 -0.9153962 0.0000000 -0.2375409 -0.9713775 -0.0180089 -0.0641266 -0.9977793 -0.0095225 0.2814151 -0.9595389 -0.0139775 0.1103309 -0.9937966 -0.0190963 0.4460729 -0.8947929 0.0006914 0.5938871 -0.8045481 -0.5116346 -0.8405675 0.1779782 -0.4784252 -0.8630103 0.1622423 -0.3429582 -0.8922767 0.2936359 -0.2179508 -0.8763497 0.4295447 -0.1138626 -0.8175742 0.5644534 0.0393214 0.7210424 -0.6917743 0.1138713 0.8175859 -0.5644347 0.2179227 0.8763234 -0.4296125 0.3429449 0.8922679 -0.2936780 -0.1659103 -0.8937307 0.4167963 -0.2128989 -0.9427741 0.2566145 -0.2534337 -0.9632749 0.0887288 -0.2862859 -0.9546449 -0.0818144 -0.3104806 -0.9171728 -0.2497918 -0.3252912 -0.8520006 -0.4102202 -0.3302825 -0.7610889 -0.5582626 -0.3252938 -0.6472364 -0.6893976 -0.3104809 -0.5137733 -0.7997741 -0.1928643 -0.3864120 -0.9019363 -0.1659324 0.1290306 -0.9776592 -0.2796719 -0.0161165 -0.9599604 -0.3760730 -0.3347464 -0.8640104 -0.3329334 -0.1781910 -0.9259608 -0.4078763 -0.4812490 -0.7759100 -0.5240029 -0.5700556 -0.6328172 -0.4611659 -0.8867370 -0.0319920 -0.5001389 -0.8435242 -0.1957753 0.4082394 0.9031626 -0.1328083 0.4611650 0.8867371 0.0320036 0.5001435 0.8435157 0.1958003 0.5239939 0.7748518 0.3536030 0.5320349 0.6827648 0.5007705 0.5240008 0.5700534 0.6328209 0.5001284 0.4400678 0.7457962 -0.5320300 -0.6827481 -0.5007985 -0.5240012 -0.7748281 -0.3536440 0.3329175 0.1781596 0.9259725 0.2796998 0.0161857 0.9599511 0.1658999 -0.1291101 0.9776542 0.0767237 -0.2841316 0.9557106 0.0197861 -0.4405209 0.8975243 0.0000816 -0.5901902 0.8072643 -0.0047933 -0.7214062 0.6924956 0.0000000 -0.9153774 0.4025969 0.0000000 -0.8315665 0.5554253 0.0000000 -0.0653569 -0.9978620 0.0000000 0.1089830 -0.9940436 0.0000000 0.2800111 -0.9599968 -0.0047832 0.4438052 -0.8961105 0.0003511 0.5939185 -0.8045251 -0.4082463 -0.9031618 0.1327920 -0.2796800 -0.9204723 0.2729649 0.0197658 0.7236394 -0.6898951 0.0767230 0.8262171 -0.5581029 0.1658964 0.8937132 -0.4168394 0.2796870 0.9204691 -0.2729685 -0.3329298 -0.9367239 0.1081948 -0.3760885 -0.9246515 -0.0598082 -0.4078709 -0.8846437 -0.2259353 -0.4273283 -0.8179156 -0.3852331 -0.4338849 -0.7264881 -0.5328780 -0.4273318 -0.6131447 -0.6644104 -0.2862908 -0.3647902 -0.8859829 -0.2534338 -0.2047381 -0.9454383 -0.2129029 -0.0384530 -0.9763164 0.3329278 0.9367261 -0.1081820 0.3760917 0.9246513 0.0597918 0.4078732 0.8846402 0.2259450 0.4273462 0.8178859 0.3852764 0.4338769 0.7265216 0.5328388 0.4273401 0.6131347 0.6644143 0.4078690 0.4811951 0.7759473 0.3760883 0.3347713 0.8639941 0.2534212 0.2046976 0.9454505 0.2129077 0.0384770 0.9763144 0.1117746 -0.1165191 0.9868788 0.0386059 -0.2789068 0.9595418 0.0049544 -0.4410245 0.8974814 0.0000000 -0.5914276 0.8063581 0.0000000 -0.7224653 0.6914072 0.0000000 0.4424240 -0.8968060 0.0000955 0.5926874 -0.8054325 0.0049676 0.7235750 -0.6902279 0.0386061 0.8314403 -0.5542712 0.1117667 0.9062831 -0.4076262 0.2129021 0.9427780 -0.2565976 0.2534280 0.9632776 -0.0887161 0.2862829 0.9546486 0.0817806 0.3104827 0.9171702 0.2497985 0.3252965 0.8519849 0.4102485 0.2862738 0.3647174 0.8860183 0.1707459 0.2239853 0.9595189 0.1434444 0.0545872 0.9881518 0.0562428 -0.1089263 0.9924575 0.0096726 -0.2785831 0.9603634 0.0000000 -0.4424200 0.8968080 0.0000000 0.5914396 -0.8063493 0.0000000 0.7225274 -0.6913423 0.0096734 0.8323382 -0.5541837 0.0562527 0.9139377 -0.4019371 0.1434440 0.9589143 -0.2447596 0.1707429 0.9824856 -0.0746256 0.1928778 0.9763470 0.0976969 0.2091795 0.9407020 0.2670650 0.2191656 0.8766486 0.4283150 0.3302777 0.7611130 0.5582327 0.3252950 0.6472682 0.6893671 0.3104788 0.5137787 0.7997715 0.0859157 0.2355181 0.9680649 0.0721797 0.0643384 0.9953144 0.0140916 -0.1077569 0.9940774 0.0000000 -0.2800211 0.9599939 0.0000000 0.8315710 -0.5554185 0.0140865 0.9158119 -0.4013603 0.0721746 0.9686774 -0.2376025 0.0859127 0.9941076 -0.0660993 0.0970505 0.9894742 0.1073410 0.1052531 0.9549403 0.2775081 0.1102731 0.8915692 0.4392541 0.2225148 0.7861384 0.5766053 0.2191656 0.6718806 0.7074906 0.2091790 0.5373003 0.8170389 0.1928787 0.3865042 0.9018937 0.0215093 0.2384375 0.9709196 0.0180791 0.0663995 0.9976293 0.0000000 -0.1091249 0.9940280 0.0000000 0.9153686 -0.4026170 0.0180739 0.9715095 -0.2363105 0.0215061 0.9977034 -0.0642295 0.0242860 0.9936605 0.1097683 0.0263315 0.9595215 0.2804017 0.0275825 0.8963357 0.4425173 0.1119641 0.8012869 0.5877103 0.1102743 0.6867844 0.7184475 0.1052539 0.5515520 0.8274733 0.0970536 0.3995904 0.9115416 0.0242843 0.4032201 0.9147807 0.0000000 0.2375496 0.9713754 0.0000000 0.0652188 0.9978710 0.0000000 0.9713903 -0.2374888 0.0000000 0.9940382 0.1090328 0.0000000 0.9978696 -0.0652400 0.0000000 0.9600018 0.2799938 0.0000000 0.8967924 0.4424516 0.0280034 0.8060471 0.5911886 0.0275816 0.6913118 0.7220300 0.0263282 0.5556859 0.8309753 0.0000000 0.4026545 0.9153520 0.0000000 0.8063652 0.5914179 0.0000000 0.6913740 0.7224971 0.0000000 0.5554334 0.8315610 - - - - - - - - - - - - - - -

0 1 2 1 0 3 0 4 5 4 0 2 6 3 0 3 6 7 8 9 10 9 8 11 2 12 13 12 2 1 5 14 15 14 5 4 6 5 16 5 6 0 17 2 13 2 17 4 11 18 9 18 11 19 19 11 20 20 11 21 22 6 23 6 22 7 24 25 26 25 24 27 28 29 30 29 28 31 31 28 10 10 28 8 32 12 33 12 32 13 15 34 35 34 15 14 16 15 36 15 16 5 37 4 17 4 37 14 23 16 38 16 23 6 39 13 32 13 39 17 20 40 19 40 20 41 41 20 42 42 20 43 44 45 46 45 44 47 25 47 44 47 25 27 48 23 49 23 48 22 50 25 51 25 50 26 52 26 53 26 52 24 54 53 55 53 54 52 56 57 58 57 56 59 59 56 30 59 30 29 60 33 61 33 60 32 35 62 63 62 35 34 36 35 64 35 36 15 65 14 37 14 65 34 38 36 66 36 38 16 67 17 39 17 67 37 49 38 68 38 49 23 69 32 60 32 69 39 70 49 71 49 70 48 72 73 74 73 72 41 73 41 42 73 42 75 75 42 76 77 78 79 78 77 80 46 80 77 80 46 45 81 46 82 46 81 44 51 44 81 44 51 25 83 51 84 51 83 50 85 26 50 26 85 53 53 86 55 86 53 85 54 87 88 87 54 55 88 89 90 89 88 87 91 92 93 92 91 94 94 91 58 94 58 95 95 58 57 96 61 97 61 96 60 63 98 99 98 63 62 64 63 100 63 64 35 101 34 65 34 101 62 66 64 102 64 66 36 103 37 67 37 103 65 68 66 104 66 68 38 67 39 69 71 68 105 68 71 49 106 60 96 60 106 69 107 71 108 71 107 70 109 108 110 108 109 107 111 110 112 110 111 109 113 114 115 114 113 74 114 74 73 114 73 116 117 118 119 118 117 120 79 120 117 120 79 78 121 79 122 79 121 77 82 77 121 77 82 46 123 82 124 82 123 81 84 81 123 81 84 51 125 84 126 84 125 83 127 50 83 50 127 85 128 86 85 55 129 87 129 55 86 87 130 89 130 87 129 90 131 132 131 90 89 133 97 134 97 133 96 132 135 136 135 132 131 136 137 138 137 136 135 139 140 141 140 139 93 140 93 142 142 93 92 143 134 144 134 143 133 99 145 146 145 99 98 100 99 147 99 100 63 148 62 101 62 148 98 102 100 149 100 102 64 150 65 103 65 150 101 104 102 151 102 104 66 152 67 153 67 152 103 105 104 154 104 105 68 67 69 153 108 105 155 105 108 71 156 96 133 96 156 106 157 69 106 69 157 153 110 155 158 155 110 108 112 158 159 158 112 110 160 112 161 112 160 111 160 162 163 162 160 161 164 165 166 165 164 115 165 115 114 167 168 169 168 167 170 119 168 170 168 119 118 171 119 172 119 171 117 122 117 171 117 122 79 173 122 174 122 173 121 124 121 173 121 124 82 175 124 176 124 175 123 126 123 175 123 126 84 177 126 178 126 177 125 179 83 125 83 179 127 127 128 85 128 180 86 180 129 86 129 181 130 181 129 180 89 182 131 182 89 130 183 135 131 135 184 137 184 135 183 137 185 138 186 187 188 187 186 189 189 144 187 144 189 143 185 190 138 190 191 192 191 190 185 140 193 141 156 133 143 145 194 146 194 145 195 147 146 196 146 147 99 145 98 148 149 147 197 147 149 100 198 101 150 101 198 148 151 149 199 149 151 102 150 103 152 154 151 200 151 154 104 201 153 157 153 201 152 155 154 202 154 155 105 203 106 156 106 203 157 158 202 204 202 158 155 159 204 205 204 159 158 161 159 206 159 161 112 161 207 162 207 161 206 163 208 209 208 163 162 165 210 166 211 212 213 211 169 212 169 211 167 214 170 167 170 214 215 172 170 215 170 172 119 216 172 217 172 216 171 174 171 216 171 174 122 218 174 219 174 218 173 176 173 218 173 176 124 220 176 221 176 220 175 178 175 220 175 178 126 222 178 223 178 222 177 224 125 177 125 224 179 127 225 128 225 127 179 128 226 180 226 128 225 180 227 181 227 180 226 130 228 182 228 130 181 182 183 131 183 229 184 229 183 230 137 231 185 231 137 184 232 188 233 188 232 186 234 189 186 189 234 235 235 143 189 143 235 236 185 237 191 237 185 231 192 238 239 238 192 191 140 240 193 156 143 236 241 145 242 145 241 195 243 244 245 244 243 246 244 246 247 247 246 248 248 246 249 249 246 250 249 250 251 251 250 252 252 250 253 252 253 254 254 253 255 255 253 256 255 256 257 257 256 258 257 258 259 259 258 260 260 258 261 260 261 262 262 261 263 262 263 264 264 263 265 265 263 266 265 266 267 267 266 268 268 266 269 268 269 270 270 269 271 271 269 272 272 269 273 273 269 274 273 274 275 275 274 276 275 276 277 277 276 278 277 278 279 279 278 280 281 282 283 282 281 284 282 284 285 285 284 286 285 286 287 287 286 288 287 288 289 289 288 243 289 243 245 289 245 290 290 245 291 290 291 292 290 292 293 290 293 294 294 293 295 294 295 296 294 296 297 297 296 298 297 298 299 297 299 300 300 299 301 300 301 302 302 301 303 302 303 304 302 304 305 305 304 306 305 306 307 307 306 308 307 308 309 307 309 310 310 309 311 310 311 312 310 312 272 272 312 313 272 313 314 272 314 271 146 315 196 315 146 194 197 196 316 196 197 147 145 148 242 199 197 317 197 199 149 318 150 319 150 318 198 320 148 198 148 320 242 200 199 321 199 200 151 150 152 319 202 200 322 200 202 154 323 157 203 157 323 201 319 152 201 203 156 236 204 322 324 322 204 202 205 324 325 324 205 204 206 205 326 205 206 159 206 327 207 327 206 326 162 328 208 328 162 207 209 329 330 329 209 208 210 331 166 211 213 332 333 167 211 167 333 214 334 215 214 215 334 335 217 215 335 215 217 172 336 217 337 217 336 216 219 216 336 216 219 174 338 219 339 219 338 218 221 218 338 218 221 176 340 221 341 221 340 220 223 220 340 220 223 178 342 223 343 223 342 222 344 177 222 177 344 224 179 345 225 345 179 224 225 346 226 346 225 345 226 347 227 347 226 346 181 348 228 348 181 227 182 230 183 230 182 228 230 349 229 349 230 350 184 351 231 351 184 229 232 352 353 352 232 233 354 186 232 186 354 234 355 235 234 355 236 235 236 355 356 231 357 237 357 231 351 191 358 238 358 191 237 359 238 360 238 359 239 361 362 363 362 361 193 362 193 240 364 242 320 242 364 241 365 366 367 366 365 368 369 365 367 365 369 370 371 370 369 370 371 372 373 372 371 372 373 374 375 374 373 374 375 376 377 376 375 376 377 378 316 378 377 378 316 379 196 379 316 379 196 315 380 320 381 320 380 364 382 381 383 381 382 380 384 383 385 383 384 382 386 385 387 385 386 384 388 387 389 387 388 386 390 389 391 389 390 388 392 391 393 391 392 390 392 394 395 394 392 393 395 396 397 396 395 394 397 398 399 398 397 396 399 400 401 400 399 398 401 402 403 402 401 400 403 404 405 404 403 402 405 406 407 406 405 404 407 408 409 408 407 406 409 410 411 410 409 408 412 410 413 410 412 411 414 413 415 413 414 412 416 415 417 415 416 414 418 417 419 417 418 416 420 419 421 419 420 418 422 421 423 421 422 420 424 423 425 423 424 422 368 425 366 425 368 424 317 316 377 316 317 197 321 317 426 317 321 199 318 319 427 381 198 318 198 381 320 322 321 428 321 322 200 429 203 356 203 429 323 430 201 323 201 430 427 319 201 427 203 236 356 324 428 431 428 324 322 325 431 432 431 325 324 326 325 433 325 326 205 326 434 327 434 326 433 207 435 328 435 207 327 208 436 329 436 208 328 330 437 438 437 330 329 439 440 441 440 439 442 440 442 443 443 442 444 443 444 445 445 444 446 445 446 331 445 331 447 447 331 210 448 213 449 213 448 332 450 211 332 211 450 333 451 214 333 214 451 334 452 335 334 335 452 453 337 335 453 335 337 217 454 337 455 337 454 336 339 336 454 336 339 219 456 339 457 339 456 338 341 338 456 338 341 221 458 341 459 341 458 340 343 340 458 340 343 223 460 343 461 343 460 342 462 222 342 222 462 344 224 463 345 463 224 344 345 464 346 464 345 463 346 465 347 465 346 464 227 466 348 466 227 347 228 350 230 350 228 348 350 467 349 467 350 468 229 469 351 469 229 349 353 470 471 470 353 352 354 353 472 353 354 232 473 234 354 234 473 474 355 234 474 475 356 355 356 475 429 476 357 351 237 477 358 477 237 357 360 358 478 358 360 238 479 360 480 360 479 359 362 481 363 482 366 483 366 482 367 482 369 367 369 482 484 484 371 369 371 484 485 485 373 371 373 485 486 486 375 373 375 486 426 426 377 375 377 426 317 383 318 487 318 383 381 385 487 488 487 385 383 387 488 489 488 387 385 389 489 490 489 389 387 391 490 491 490 391 389 393 491 492 491 393 391 393 493 394 493 393 492 394 494 396 494 394 493 396 495 398 495 396 494 398 496 400 496 398 495 400 497 402 497 400 496 402 498 404 498 402 497 404 499 406 499 404 498 406 500 408 500 406 499 408 501 410 501 408 500 502 410 501 410 502 413 413 503 415 504 415 503 415 504 417 505 417 504 417 505 419 506 419 505 419 506 421 507 421 506 421 507 423 508 423 507 423 508 425 483 425 508 425 483 366 428 426 486 426 428 321 318 427 487 509 323 429 323 509 430 488 427 430 427 488 487 431 486 485 486 431 428 432 485 484 485 432 431 433 432 510 432 433 325 433 511 434 511 433 510 434 512 327 512 435 327 328 513 436 513 328 435 329 514 437 514 329 436 438 515 516 515 438 437 517 518 519 518 517 520 519 521 522 521 519 518 523 524 525 524 523 526 526 523 527 527 523 528 528 523 529 528 529 530 528 530 531 528 531 441 441 531 532 441 532 533 441 533 439 534 535 536 535 534 537 537 538 535 538 537 539 539 540 538 540 539 541 448 449 540 516 520 517 520 516 515 542 332 448 332 542 450 543 333 450 333 543 451 452 334 451 544 453 452 453 544 545 455 453 545 453 455 337 546 455 547 455 546 454 457 454 546 454 457 339 548 457 549 457 548 456 459 456 548 456 459 341 550 459 551 459 550 458 461 458 550 458 461 343 552 342 460 342 552 462 344 553 463 553 344 462 463 554 464 554 463 553 464 555 465 555 464 554 347 556 466 556 347 465 348 468 350 468 348 466 468 557 467 557 468 558 467 559 349 559 469 349 469 476 351 471 560 561 560 471 470 472 471 562 471 472 353 473 472 563 472 473 354 564 474 473 474 564 565 565 355 474 355 565 475 566 429 475 429 566 509 357 567 477 567 357 476 478 477 568 477 478 358 480 478 569 478 480 360 570 480 571 480 570 479 363 572 573 572 363 481 510 483 511 483 510 482 510 484 482 484 510 432 489 430 509 430 489 488 490 509 566 509 490 489 491 566 574 566 491 490 492 574 575 574 492 491 492 576 493 576 492 575 493 577 494 577 493 576 494 578 495 578 494 577 495 579 496 579 495 578 496 580 497 580 496 579 497 581 498 581 497 580 498 582 499 582 498 581 499 583 500 583 499 582 500 584 501 584 500 583 585 501 584 501 585 502 413 502 503 504 503 586 505 504 587 588 505 587 505 588 506 589 506 588 506 589 507 590 507 589 507 590 508 511 508 590 508 511 483 434 590 512 590 434 511 435 591 513 591 435 512 436 592 514 592 436 513 437 593 515 593 437 514 520 594 518 594 520 595 518 596 521 596 518 594 597 521 598 521 597 522 599 600 601 600 599 602 572 603 573 603 572 525 525 572 523 604 605 606 605 604 607 608 606 609 606 608 604 610 609 611 609 610 608 612 610 611 610 612 613 614 613 612 613 614 615 534 615 614 615 534 536 616 598 617 598 616 597 618 617 619 617 618 616 601 618 619 618 601 600 620 537 534 620 539 537 539 620 621 621 541 539 541 621 622 448 540 541 515 595 520 595 515 593 622 448 541 448 622 542 623 450 542 450 623 543 624 451 543 451 624 625 452 451 625 626 452 625 452 626 544 627 545 544 545 627 628 547 545 628 545 547 455 629 547 630 547 629 546 549 546 629 546 549 457 631 549 632 549 631 548 551 548 631 548 551 459 552 553 462 553 552 633 633 554 553 554 633 634 634 555 554 555 634 635 465 636 556 636 465 555 466 558 468 558 466 556 558 637 557 637 558 638 467 639 559 639 467 557 559 640 469 640 476 469 561 641 642 641 561 560 562 561 643 561 562 471 563 562 644 562 563 472 564 563 645 563 564 473 575 565 564 565 575 574 574 475 565 475 574 566 476 646 567 646 476 640 568 567 647 567 568 477 478 568 648 478 648 569 571 569 649 569 571 480 607 571 605 571 607 570 575 645 576 645 575 564 576 650 577 650 576 645 577 651 578 651 577 650 578 652 579 652 578 651 579 653 580 653 579 652 580 654 581 654 580 653 581 655 582 655 581 654 582 656 583 656 582 655 583 657 584 657 583 656 658 584 657 584 658 585 659 502 585 502 659 503 503 659 586 504 586 587 588 587 660 589 588 591 512 589 591 589 512 590 513 660 592 660 513 591 514 661 593 661 514 592 595 662 594 662 595 663 594 664 596 664 594 662 521 665 598 665 521 596 666 601 667 601 666 599 642 602 599 602 642 641 606 668 669 668 606 605 609 669 670 669 609 606 611 670 671 670 611 609 612 671 672 671 612 611 614 672 673 672 614 612 673 534 614 534 673 674 675 598 665 598 675 617 676 617 675 617 676 619 667 619 676 619 667 601 620 534 674 677 621 620 677 622 621 622 677 678 593 663 595 663 593 661 623 542 622 679 543 623 543 679 624 680 625 624 625 680 626 681 544 626 544 681 627 682 628 627 628 682 683 630 628 683 628 630 547 684 630 685 630 684 629 632 629 684 629 632 549 635 636 555 636 635 686 556 638 558 638 556 636 687 637 638 637 687 688 557 689 639 689 557 637 559 690 640 690 559 639 643 642 691 642 643 561 644 643 692 643 644 562 645 644 650 644 645 563 640 693 646 693 640 690 647 646 694 646 647 567 648 647 695 647 648 568 649 648 696 648 649 569 605 649 668 649 605 571 650 692 651 692 650 644 651 697 652 697 651 692 652 698 653 698 652 697 653 699 654 699 653 698 654 700 655 700 654 699 655 701 656 701 655 700 656 702 657 702 656 701 664 657 702 657 664 658 703 585 658 585 703 659 586 659 704 587 586 705 587 705 660 588 660 591 660 705 592 705 661 592 703 662 663 662 658 664 658 662 703 596 702 665 702 596 664 698 667 699 667 698 666 691 599 666 599 691 642 669 706 707 706 669 668 670 707 708 707 670 669 671 708 709 708 671 670 671 710 672 672 711 673 712 674 673 701 665 702 665 701 675 700 675 701 675 700 676 699 676 700 676 699 667 713 620 674 677 620 713 714 678 677 678 714 715 623 622 678 704 663 661 715 623 678 623 715 679 716 624 679 624 716 680 717 626 680 626 717 681 718 627 681 627 718 682 719 683 682 683 719 720 685 683 720 683 685 630 686 638 636 638 686 687 688 689 637 689 688 721 639 722 690 722 639 689 692 691 697 691 692 643 690 723 693 723 690 722 646 693 724 646 724 694 695 694 725 694 695 647 696 695 726 695 696 648 668 696 706 696 668 649 697 666 698 666 697 691 659 703 704 586 704 705 705 704 661 704 703 663 707 727 728 727 707 706 708 728 729 728 708 707 709 729 730 729 709 708 671 709 710 672 710 711 712 673 711 713 674 712 731 677 713 677 731 714 732 715 714 715 732 733 733 679 715 679 733 716 734 680 716 680 734 717 735 681 717 681 735 718 736 682 718 682 736 719 721 722 689 722 721 737 737 723 722 723 737 738 693 723 739 693 739 724 694 724 740 694 740 725 726 725 741 725 726 695 706 726 727 726 706 696 728 742 743 742 728 727 729 743 744 743 729 728 730 744 745 744 730 729 710 730 746 730 710 709 711 746 747 746 711 710 748 712 711 748 713 712 713 748 731 732 714 731 749 733 732 733 749 750 750 716 733 716 750 734 751 717 734 717 751 735 752 718 735 718 752 736 723 753 739 753 723 738 724 739 754 724 754 740 741 740 755 740 741 725 727 741 742 741 727 726 743 756 757 756 743 742 744 757 758 757 744 743 745 758 759 758 745 744 746 745 760 745 746 730 747 760 761 760 747 746 748 711 747 762 731 748 731 762 763 732 731 763 749 732 763 764 750 749 750 764 765 765 734 750 734 765 751 766 735 751 735 766 752 739 767 754 767 739 753 755 754 768 754 755 740 742 755 756 755 742 741 757 769 770 769 757 756 758 770 771 770 758 757 759 771 772 771 759 758 760 759 773 759 760 745 761 773 774 773 761 760 761 748 747 748 761 762 775 763 762 763 775 776 749 763 776 777 749 776 749 777 764 778 765 764 765 778 779 779 751 765 751 779 766 754 780 768 780 754 767 756 768 769 768 756 755 769 781 770 781 769 782 770 783 771 783 770 781 771 784 772 784 771 783 773 772 785 772 773 759 774 785 786 785 774 773 774 762 761 762 774 775 787 776 775 776 787 777 788 764 777 764 788 778 768 782 769 782 768 780 772 789 785 789 772 784 785 790 786 790 785 789 786 775 774 775 786 787 791 777 787 777 791 788 790 787 786 787 790 791

-
-
-
- - - - -7904.6889764 263.7795276 -4352.3622047 -7654.8503937 263.7795276 -4350.1377953 -7664.4921260 263.7795276 -4354.6338583 -7899.5629921 263.7795276 -4351.9133858 -7894.5905512 263.7795276 -4350.5826772 -7889.9251969 263.7795276 -4348.4055118 -7644.5748031 263.7795276 -4347.3818898 -7871.5196850 263.7795276 -4337.7755906 -7633.9803150 263.7795276 -4346.4566929 -7134.9842520 263.7795276 -4620.6535433 -6922.2244094 263.7795276 -4626.1259843 -7143.6968504 263.7795276 -4626.7559055 -6926.9645669 263.7795276 -4625.3976378 -6931.5275591 263.7795276 -4623.9094488 -6935.7874016 263.7795276 -4621.7047244 -6939.6338583 263.7795276 -4618.8385827 -7127.4606299 263.7795276 -4613.1338583 -6942.9645669 263.7795276 -4615.3858268 -6945.6929134 263.7795276 -4611.4370079 -7121.3582677 263.7795276 -4604.4173228 -7116.8661417 263.7795276 -4594.7795276 -7044.9842520 263.7795276 -4439.4606299 -7114.1102362 263.7795276 -4584.5039370 -7113.1850394 263.7795276 -4573.9055118 -7114.1102362 263.7795276 -4563.3110236 -7116.8661417 263.7795276 -4553.0354331 -7121.3582677 263.7795276 -4543.3937008 -7150.8858268 263.7795276 -4492.2519685 -7156.9881890 263.7795276 -4483.5393701 -7164.5118110 263.7795276 -4476.0157480 -7173.2244094 263.7795276 -4469.9173228 -7182.8622047 263.7795276 -4465.4212598 -7193.1377953 263.7795276 -4462.6692913 -7203.7362205 263.7795276 -4461.7401575 -7603.4685039 263.7795276 -4460.3267717 -7594.7559055 263.7795276 -4454.2283465 -7361.2165354 263.7795276 -4446.8503937 -7327.0314961 263.7795276 -4443.8582677 -7311.2559055 263.7795276 -4439.6338583 -7293.8897638 263.7795276 -4434.9803150 -7047.0748031 263.7795276 -4435.0314961 -7048.4015748 263.7795276 -4430.3188976 -7262.7913386 263.7795276 -4420.4763780 -7048.9330709 263.7795276 -4425.4488189 -7048.6496063 263.7795276 -4420.5629921 -7047.5669291 263.7795276 -4415.7874016 -7234.6811024 263.7795276 -4400.7952756 -7045.7047244 263.7795276 -4411.2559055 -7027.5000000 263.7795276 -4369.0984252 -7221.9685039 263.7795276 -4388.0826772 -7210.4212598 263.7795276 -4376.5314961 -7190.7401575 263.7795276 -4348.4251969 -7014.9015748 263.7795276 -4324.9409449 -7176.2362205 263.7795276 -4317.3267717 -7008.1181102 263.7795276 -4279.5275591 -7167.3543307 263.7795276 -4284.1811024 -7164.3661417 263.7795276 -4250.0000000 -7007.3070866 263.7795276 -4274.6968504 -7005.7086614 263.7795276 -4270.0708661 -7003.3700787 263.7795276 -4265.7716535 -7000.3503937 263.7795276 -4261.9173228 -6996.7362205 263.7795276 -4258.6141732 -6992.6299213 263.7795276 -4255.9527559 -6988.1377953 263.7795276 -4254.0078740 -6983.3818898 263.7795276 -4252.8346457 -6978.5039370 263.7795276 -4252.4606299 -7518.6968504 263.7795276 -4038.2598425 -7067.8188976 263.7795276 -4010.1456693 -7118.9645669 263.7795276 -4039.6732283 -7508.0984252 263.7795276 -4037.3307087 -7497.8228346 263.7795276 -4034.5787402 -7488.1850394 263.7795276 -4030.0826772 -7479.4724409 263.7795276 -4023.9842520 -7471.9488189 263.7795276 -4016.4606299 -7465.8464567 263.7795276 -4007.7480315 -7058.1811024 263.7795276 -4005.6496063 -7461.3543307 263.7795276 -3998.1062992 -7047.9055118 263.7795276 -4002.8937008 -7037.3110236 263.7795276 -4001.9685039 -7762.8346457 263.7795276 -4818.6929134 -7288.0314961 263.7795276 -4823.6496063 -7745.3661417 263.7795276 -4824.8818898 -7292.6614173 263.7795276 -4823.5314961 -7297.2165354 263.7795276 -4822.6850394 -7645.4251969 263.7795276 -4729.3818898 -7779.1259843 263.7795276 -4809.8503937 -7793.8267717 263.7795276 -4798.5669291 -7806.5866142 263.7795276 -4785.1259843 -7817.0826772 263.7795276 -4769.8503937 -7702.9842520 263.7795276 -4713.9606299 -7881.4645669 263.7795276 -4658.3346457 -7707.3503937 263.7795276 -4712.4133858 -7709.4133858 263.7795276 -4711.2952756 -7711.4212598 263.7795276 -4710.2047244 -7715.0984252 263.7795276 -4707.3818898 -7718.2874016 263.7795276 -4704.0236220 -7720.9133858 263.7795276 -4700.2047244 -7721.6023622 263.7795276 -4699.0118110 -7723.7755906 263.7795276 -4694.3464567 -7725.1102362 263.7795276 -4689.3740157 -7725.5551181 263.7795276 -4684.2480315 -7725.1102362 263.7795276 -4679.1181102 -7724.9330709 263.7795276 -4678.4685039 -7723.7755906 263.7795276 -4674.1456693 -7721.6023622 263.7795276 -4669.4842520 -7718.6496063 263.7795276 -4665.2677165 -7715.0078740 263.7795276 -4661.6259843 -7710.7913386 263.7795276 -4658.6732283 -7550.6771654 263.7795276 -4566.2322835 -7899.9212598 263.7795276 -4626.3700787 -8039.3543307 263.7795276 -4384.8661417 -7546.2480315 263.7795276 -4564.1417323 -7541.5314961 263.7795276 -4562.8149606 -7536.6653543 263.7795276 -4562.2834646 -7705.9960630 263.7795276 -4494.3503937 -7695.7204724 263.7795276 -4497.1062992 -7256.5826772 263.7795276 -4553.2755906 -7261.0787402 263.7795276 -4543.6338583 -7685.1220472 263.7795276 -4498.0314961 -7263.8307087 263.7795276 -4533.3622047 -7264.7598425 263.7795276 -4522.7637795 -7263.8307087 263.7795276 -4512.1653543 -7261.0787402 263.7795276 -4501.8937008 -7715.6338583 263.7795276 -4489.8543307 -7724.3464567 263.7795276 -4483.7559055 -7731.8700787 263.7795276 -4476.2322835 -7737.9724409 263.7795276 -4467.5196850 -7742.4645669 263.7795276 -4457.8779528 -7745.2204724 263.7795276 -4447.6062992 -7746.1456693 263.7795276 -4437.0078740 -7745.2204724 263.7795276 -4426.4094488 -7742.4645669 263.7795276 -4416.1377953 -7737.9724409 263.7795276 -4406.4960630 -7732.8858268 263.7795276 -4399.2362205 -7731.8700787 263.7795276 -4397.7834646 -7724.3464567 263.7795276 -4390.2598425 -7715.6338583 263.7795276 -4384.1614173 -8040.7007874 263.7795276 -4382.0393701 -8047.3307087 263.7795276 -4368.1377953 -8052.5944882 263.7795276 -4350.3700787 -7909.8188976 263.7795276 -4351.9133858 -7914.7913386 263.7795276 -4350.5826772 -7919.4527559 263.7795276 -4348.4055118 -8055.0157480 263.7795276 -4331.9921260 -7923.6692913 263.7795276 -4345.4527559 -7927.3110236 263.7795276 -4341.8149606 -7930.2637795 263.7795276 -4337.5984252 -7930.9527559 263.7795276 -4336.4055118 -7932.9448819 263.7795276 -4332.2204724 -7934.2637795 263.7795276 -4327.7795276 -8054.5314961 263.7795276 -4313.4645669 -7934.8661417 263.7795276 -4323.1850394 -7934.8070866 263.7795276 -4320.9015748 -7934.7440945 263.7795276 -4318.5551181 -7933.9015748 263.7795276 -4314.0000000 -7918.4763780 263.7795276 -4256.4409449 -8051.1535433 263.7795276 -4295.2440945 -8002.4015748 263.7795276 -4113.3031496 -7857.7480315 263.7795276 -4029.7874016 -8001.9960630 263.7795276 -4111.7834646 -7942.5433071 263.7795276 -3889.9102362 -7839.1574803 263.7795276 -3960.4133858 -7825.1771654 263.7795276 -3908.2334646 -7823.6299213 263.7795276 -3903.8657480 -7822.5118110 263.7795276 -3901.8027559 -7821.4173228 263.7795276 -3899.7940945 -7818.5984252 263.7795276 -3896.1177165 -7815.2362205 263.7795276 -3892.9283465 -7811.4173228 263.7795276 -3890.3039370 -7810.2244094 263.7795276 -3889.6149606 -7936.0984252 263.7795276 -3865.8503937 -7805.5590551 263.7795276 -3887.4397638 -7800.5905512 263.7795276 -3886.1074803 -7795.4606299 263.7795276 -3885.6590551 -7587.4488189 263.7795276 -3879.3464567 -7578.7362205 263.7795276 -3873.2448819 -7569.0944882 263.7795276 -3868.7500000 -7558.8188976 263.7795276 -3865.9960630 -7548.2244094 263.7795276 -3865.0692913 -7929.9094488 263.7795276 -3848.3795276 -7080.9015748 263.7795276 -3754.0716535 -6140.2755906 263.7795276 -3758.4295276 -7082.1929134 263.7795276 -3758.6818898 -6145.7480315 263.7795276 -3757.9507874 -6151.0472441 263.7795276 -3756.5303150 -6156.0236220 263.7795276 -3754.2102362 -6160.5236220 263.7795276 -3751.0606299 -7080.3700787 263.7795276 -3749.3129921 -6164.4055118 263.7795276 -3747.1783465 -7080.6141732 263.7795276 -3744.5307087 -6167.5551181 263.7795276 -3742.6811024 -7081.6259843 263.7795276 -3739.8511811 -6169.8740157 263.7795276 -3737.7055118 -7083.3858268 263.7795276 -3735.3964567 -6171.2952756 263.7795276 -3732.4023622 -7085.8385827 263.7795276 -3731.2854331 -6171.7716535 263.7795276 -3726.9330709 -7088.9251969 263.7795276 -3727.6236220 -7092.5629921 263.7795276 -3724.5098425 -6171.2952756 263.7795276 -3721.4637795 -7096.6535433 263.7795276 -3722.0244094 -7179.5118110 263.7795276 -3688.0976378 -6169.8740157 263.7795276 -3716.1610236 -6167.5551181 263.7795276 -3711.1850394 -6164.4055118 263.7795276 -3706.6877953 -6160.5236220 263.7795276 -3702.8059055 -6156.0236220 263.7795276 -3699.6570866 -6151.0472441 263.7795276 -3697.3370079 -6145.7480315 263.7795276 -3695.9157480 -6140.2755906 263.7795276 -3695.4377953 -7465.8464567 263.7795276 -3946.7244094 -7200.8464567 263.7795276 -3932.0866142 -7195.9527559 263.7795276 -3932.2106299 -7495.3740157 263.7795276 -3895.5811024 -7205.6496063 263.7795276 -3931.1562992 -7210.2362205 263.7795276 -3929.4448819 -7252.9606299 263.7795276 -3912.6118110 -7297.5039370 263.7795276 -3901.4444882 -7343.1141732 263.7795276 -3896.1318898 -7347.9685039 263.7795276 -3895.4771654 -7501.4763780 263.7795276 -3886.8677165 -7352.6456693 263.7795276 -3894.0303150 -7357.0196850 263.7795276 -3891.8295276 -7360.9685039 263.7795276 -3888.9358268 -7364.3858268 263.7795276 -3885.4295276 -7509.0000000 263.7795276 -3879.3464567 -7367.1771654 263.7795276 -3881.4066929 -7425.5708661 263.7795276 -3780.2681102 -7517.7125984 263.7795276 -3873.2448819 -7527.3503937 263.7795276 -3868.7500000 -7537.6259843 263.7795276 -3865.9960630 -7921.0669291 263.7795276 -3832.0917323 -7909.7834646 263.7795276 -3817.3877953 -7896.3385827 263.7795276 -3804.6303150 -7881.0669291 263.7795276 -3794.1326772 -7466.4685039 263.7795276 -3709.4275591 -7468.5236220 263.7795276 -3705.0917323 -7469.8464567 263.7795276 -3700.4807087 -7470.4055118 263.7795276 -3695.7157480 -7475.0275591 263.7795276 -3559.7062992 -7470.1889764 263.7795276 -3690.9232283 -7469.1968504 263.7795276 -3686.2299213 -7467.4566929 263.7795276 -3681.7578740 -7465.0157480 263.7795276 -3677.6279528 -7461.9370079 263.7795276 -3673.9472441 -7458.3070866 263.7795276 -3670.8137795 -7454.2125984 263.7795276 -3668.3090551 -7449.7716535 263.7795276 -3666.5003937 -7445.0905512 263.7795276 -3665.4362205 -7355.7559055 263.7795276 -3659.4740157 -6957.9291339 263.7795276 -3659.1047244 -6975.6062992 263.7795276 -3653.4106299 -6992.1692913 263.7795276 -3645.0153543 -7093.3661417 263.7795276 -3593.9070866 -7201.4212598 263.7795276 -3559.5897638 -7459.7834646 263.7795276 -3552.3094488 -7313.5629921 263.7795276 -3542.9433071 -7443.6377953 263.7795276 -3547.1688976 -7426.9251969 263.7795276 -3544.3913386 -6939.5748031 263.7795276 -3661.9582677 -7266.5472441 263.7795276 -3667.0862205 -3211.7515748 263.7795276 -2328.1397638 -2469.7374016 263.7795276 -2062.3527559 -2944.2188976 263.7795276 -2336.2948819 -2957.1984252 263.7795276 -2217.9082677 -2965.4846457 263.7795276 -2220.1287402 -2974.0299213 263.7795276 -2220.8759843 -4149.7401575 263.7795276 -2245.5078740 -4144.2716535 263.7795276 -2245.0291339 -4138.9685039 263.7795276 -2243.6086614 -4133.9921260 263.7795276 -2241.2881890 -4129.4960630 263.7795276 -2238.1393701 -4125.6141732 263.7795276 -2234.2570866 -4122.4645669 263.7795276 -2229.7598425 -4120.1456693 263.7795276 -2224.7838583 -2949.4236220 263.7795276 -2214.2830709 -2942.3968504 263.7795276 -2209.3625984 -2936.3311024 263.7795276 -2203.2968504 -2931.4106299 263.7795276 -2196.2700787 -2927.7858268 263.7795276 -2188.4952756 -2925.5649606 263.7795276 -2180.2090551 -2924.8173228 263.7795276 -2171.6633858 -2925.5653543 263.7795276 -2163.1181102 -2927.7858268 263.7795276 -2154.8318898 -2931.4106299 263.7795276 -2147.0574803 -2936.3311024 263.7795276 -2140.0303150 -2942.3968504 263.7795276 -2133.9645669 -2949.4236220 263.7795276 -2129.0440945 -2957.1984252 263.7795276 -2125.4188976 -2965.4846457 263.7795276 -2123.1984252 -2974.0299213 263.7795276 -2122.4511811 -4118.7244094 263.7795276 -2219.4811024 -2982.5759843 263.7795276 -2220.1283465 -2990.8618110 263.7795276 -2217.9082677 -4118.2440945 263.7795276 -2214.0118110 -2998.6362205 263.7795276 -2214.2830709 -3005.6629921 263.7795276 -2209.3625984 -4118.7244094 263.7795276 -2208.5425197 -3011.7291339 263.7795276 -2203.2968504 -4120.1456693 263.7795276 -2203.2393701 -3016.6492126 263.7795276 -2196.2696850 -4122.4645669 263.7795276 -2198.2637795 -4125.6141732 263.7795276 -2193.7665354 -3020.2748031 263.7795276 -2188.4952756 -4129.4960630 263.7795276 -2189.8846457 -4133.9921260 263.7795276 -2186.7354331 -3022.4948819 263.7795276 -2180.2090551 -4138.9685039 263.7795276 -2184.4153543 -4144.2716535 263.7795276 -2182.9940945 -4149.7401575 263.7795276 -2182.5157480 -7088.4527559 263.7795276 -4153.5433071 -6620.0629921 263.7795276 -4148.4251969 -6631.7992126 263.7795276 -4162.8149606 -7077.8543307 263.7795276 -4152.6181102 -7067.5826772 263.7795276 -4149.8622047 -7057.9409449 263.7795276 -4145.3661417 -6606.2125984 263.7795276 -4136.0511811 -7006.7952756 263.7795276 -4115.8385827 -6590.5984252 263.7795276 -4126.0000000 -6129.5039370 263.7795276 -3756.5303150 -6124.5275591 263.7795276 -3754.2094488 -3271.2614173 263.7795276 -2342.1566929 -6998.0826772 263.7795276 -4109.7401575 -6990.5629921 263.7795276 -4102.2165354 -6989.5472441 263.7795276 -4100.7637795 -6984.4606299 263.7795276 -4093.5039370 -6979.9645669 263.7795276 -4083.8622047 -6977.2125984 263.7795276 -4073.5905512 -6976.2834646 263.7795276 -4062.9921260 -6977.2125984 263.7795276 -4052.3937008 -6979.9645669 263.7795276 -4042.1220472 -6984.4606299 263.7795276 -4032.4803150 -6990.5629921 263.7795276 -4023.7677165 -6998.0826772 263.7795276 -4016.2440945 -7006.7952756 263.7795276 -4010.1456693 -7016.4370079 263.7795276 -4005.6496063 -7026.7125984 263.7795276 -4002.8937008 -6134.8070866 263.7795276 -3757.9507874 -7458.5984252 263.7795276 -3987.8346457 -7457.6732283 263.7795276 -3977.2362205 -7191.1062992 263.7795276 -3931.5232283 -7458.5984252 263.7795276 -3966.6377953 -7461.3543307 263.7795276 -3956.3661417 -7186.4370079 263.7795276 -3930.0452756 -7182.0787402 263.7795276 -3927.8165354 -7178.1496063 263.7795276 -3924.8984252 -7174.7559055 263.7795276 -3921.3708661 -7171.9881890 263.7795276 -3917.3314961 -7084.2165354 263.7795276 -3763.0220472 -6120.0314961 263.7795276 -3751.0606299 -6116.1496063 263.7795276 -3747.1783465 -6113.0000000 263.7795276 -3742.6811024 -6110.6811024 263.7795276 -3737.7055118 -6109.2598425 263.7795276 -3732.4023622 -6108.7795276 263.7795276 -3726.9330709 -6109.2598425 263.7795276 -3721.4637795 -6110.6811024 263.7795276 -3716.1610236 -6113.0000000 263.7795276 -3711.1850394 -6115.8346457 263.7795276 -3707.1389764 -6116.1496063 263.7795276 -3706.6877953 -6120.0314961 263.7795276 -3702.8059055 -6124.5275591 263.7795276 -3699.6570866 -6129.5039370 263.7795276 -3697.3370079 -6134.8070866 263.7795276 -3695.9157480 -6286.9842520 263.7795276 -3483.7665354 -6902.6732283 263.7795276 -3658.9299213 -6921.0039370 263.7795276 -3661.8992126 -6885.0314961 263.7795276 -3653.1236220 -6868.5196850 263.7795276 -3644.6240157 -6292.2874016 263.7795276 -3485.1870079 -6297.7559055 263.7795276 -3485.6653543 -6282.0078740 263.7795276 -3481.4456693 -6277.5118110 263.7795276 -3478.2964567 -6273.6299213 263.7795276 -3474.4145669 -6270.4803150 263.7795276 -3469.9169291 -6268.1614173 263.7795276 -3464.9413386 -6266.7401575 263.7795276 -3459.6385827 -6266.2598425 263.7795276 -3454.1692913 -6266.7401575 263.7795276 -3448.7000000 -6268.1614173 263.7795276 -3443.3968504 -6270.4803150 263.7795276 -3438.4212598 -6273.6299213 263.7795276 -3433.9236220 -6277.5118110 263.7795276 -3430.0417323 -6282.0078740 263.7795276 -3426.8933071 -6286.9842520 263.7795276 -3424.5732283 -6292.2874016 263.7795276 -3423.1515748 -6297.7559055 263.7795276 -3422.6732283 -3986.7913386 263.7795276 -2517.7933071 -3992.2598425 263.7795276 -2518.2716535 -3981.4881890 263.7795276 -2516.3724409 -3976.5118110 263.7795276 -2514.0519685 -3972.0157480 263.7795276 -2510.9031496 -3968.1338583 263.7795276 -2507.0208661 -3964.9842520 263.7795276 -2502.5236220 -3962.6653543 263.7795276 -2497.5480315 -3961.2440945 263.7795276 -2492.2448819 -3960.7637795 263.7795276 -2486.7755906 -3961.2440945 263.7795276 -2481.3062992 -3962.6653543 263.7795276 -2476.0031496 -3964.9842520 263.7795276 -2471.0275591 -3967.8188976 263.7795276 -2466.9811024 -3968.1338583 263.7795276 -2466.5303150 -3972.0157480 263.7795276 -2462.6484252 -3976.5118110 263.7795276 -2459.4992126 -3981.4881890 263.7795276 -2457.1791339 -3986.7913386 263.7795276 -2455.7582677 -3992.2598425 263.7795276 -2455.2795276 -7587.2322835 263.7795276 -4446.7047244 -7387.5511811 263.7795276 -4444.5472441 -7586.2165354 263.7795276 -4445.2519685 -7581.1299213 263.7795276 -4437.9921260 -7395.3976378 263.7795276 -4443.8582677 -7428.5433071 263.7795276 -4434.9803150 -7576.6377953 263.7795276 -4428.3503937 -7459.6417323 263.7795276 -4420.4763780 -7573.8818898 263.7795276 -4418.0787402 -7487.7480315 263.7795276 -4400.7952756 -7572.9566929 263.7795276 -4407.4803150 -7573.8818898 263.7795276 -4396.8818898 -7495.6062992 263.7795276 -4392.9409449 -7576.6377953 263.7795276 -4386.6102362 -7512.0118110 263.7795276 -4376.5314961 -7581.1299213 263.7795276 -4376.9685039 -7587.2322835 263.7795276 -4368.2559055 -7531.6929134 263.7795276 -4348.4251969 -7594.7559055 263.7795276 -4360.7322835 -7603.4685039 263.7795276 -4354.6338583 -7613.1102362 263.7795276 -4350.1377953 -7623.3818898 263.7795276 -4347.3818898 -7546.1968504 263.7795276 -4317.3267717 -7729.8110236 263.7795276 -4255.9606299 -7555.0748031 263.7795276 -4284.1811024 -7558.0669291 263.7795276 -4250.0000000 -7725.7874016 263.7795276 -4253.1692913 -7722.2795276 263.7795276 -4249.7519685 -7555.0748031 263.7795276 -4215.8188976 -7719.3858268 263.7795276 -4245.8031496 -7717.1850394 263.7795276 -4241.4291339 -7715.7401575 263.7795276 -4236.7519685 -7715.6574803 263.7795276 -4236.1614173 -7715.0826772 263.7795276 -4231.8976378 -7710.1181102 263.7795276 -4191.1771654 -7546.1968504 263.7795276 -4182.6732283 -7709.0629921 263.7795276 -4182.5354331 -7531.6929134 263.7795276 -4151.5748031 -7696.1929134 263.7795276 -4134.5000000 -7512.0118110 263.7795276 -4123.4685039 -7692.7874016 263.7795276 -4126.4921260 -7676.7244094 263.7795276 -4088.7440945 -7500.4645669 263.7795276 -4111.9173228 -7487.7480315 263.7795276 -4099.2047244 -7459.6417323 263.7795276 -4079.5236220 -7674.8661417 263.7795276 -4084.2125984 -7673.7795276 263.7795276 -4079.4370079 -7428.5433071 263.7795276 -4065.0196850 -7673.5000000 263.7795276 -4074.5511811 -7674.0314961 263.7795276 -4069.6811024 -7675.3582677 263.7795276 -4064.9685039 -7395.3976378 263.7795276 -4056.1417323 -7677.4448819 263.7795276 -4060.5393701 -7529.2913386 263.7795276 -4037.3307087 -7539.5669291 263.7795276 -4034.5787402 -7549.2086614 263.7795276 -4030.0826772 -7761.2322835 263.7795276 -3915.4220472 -7361.2165354 263.7795276 -4053.1496063 -7127.6771654 263.7795276 -4045.7716535 -7557.9212598 263.7795276 -4023.9842520 -7565.4409449 263.7795276 -4016.4606299 -7571.5433071 263.7795276 -4007.7480315 -7601.0708661 263.7795276 -3956.6062992 -7605.5669291 263.7795276 -3946.9645669 -7608.3188976 263.7795276 -3936.6897638 -7609.2480315 263.7795276 -3926.0933071 -7608.3188976 263.7795276 -3915.4968504 -7605.5669291 263.7795276 -3905.2216535 -7769.8897638 263.7795276 -3900.4228346 -7601.0708661 263.7795276 -3895.5811024 -7772.8425197 263.7795276 -3896.2070866 -7776.4803150 263.7795276 -3892.5673228 -7594.9685039 263.7795276 -3886.8677165 -7780.6968504 263.7795276 -3889.6149606 -7785.3622047 263.7795276 -3887.4397638 -7790.3346457 263.7795276 -3886.1074803 -3365.4590551 263.7795276 -1978.2807087 -2928.4952756 263.7795276 -1744.2661417 -2923.6212598 263.7795276 -1744.4279528 -2933.2763780 263.7795276 -1743.3043307 -2937.8334646 263.7795276 -1741.5685039 -2942.0440945 263.7795276 -1739.1062992 -2945.7897638 263.7795276 -1735.9846457 -6303.2283465 263.7795276 -3485.1870079 -6308.5275591 263.7795276 -3483.7665354 -6313.5039370 263.7795276 -3481.4456693 -6318.0039370 263.7795276 -3478.2964567 -6321.8858268 263.7795276 -3474.4145669 -6325.0354331 263.7795276 -3469.9177165 -6327.3543307 263.7795276 -3464.9413386 -6328.7755906 263.7795276 -3459.6385827 -6329.2519685 263.7795276 -3454.1692913 -6328.7755906 263.7795276 -3448.7000000 -6327.3543307 263.7795276 -3443.3968504 -6325.0354331 263.7795276 -3438.4212598 -6321.8858268 263.7795276 -3433.9236220 -6318.0039370 263.7795276 -3430.0417323 -6313.5039370 263.7795276 -3426.8933071 -3663.9976378 263.7795276 -1661.9173228 -6308.5275591 263.7795276 -3424.5732283 -6303.2283465 263.7795276 -3423.1515748 -4173.8700787 263.7795276 -2193.7665354 -4177.0196850 263.7795276 -2198.2637795 -4179.3385827 263.7795276 -2203.2393701 -4180.7598425 263.7795276 -2208.5425197 -4181.2362205 263.7795276 -2214.0118110 -4180.7598425 263.7795276 -2219.4811024 -4179.3385827 263.7795276 -2224.7838583 -4177.0196850 263.7795276 -2229.7594488 -4019.5393701 263.7795276 -2502.5236220 -4016.3897638 263.7795276 -2507.0208661 -4012.5078740 263.7795276 -2510.9031496 -4008.0078740 263.7795276 -2514.0519685 -4003.0354331 263.7795276 -2516.3724409 -3997.7322835 263.7795276 -2517.7933071 -4021.8582677 263.7795276 -2497.5480315 -4023.2795276 263.7795276 -2492.2448819 -4023.7559055 263.7795276 -2486.7755906 -4023.2795276 263.7795276 -2481.3062992 -4021.8582677 263.7795276 -2476.0031496 -4019.5393701 263.7795276 -2471.0275591 -4016.3897638 263.7795276 -2466.5303150 -4173.8700787 263.7795276 -2234.2570866 -4012.5078740 263.7795276 -2462.6484252 -4008.0078740 263.7795276 -2459.4992126 -4003.0314961 263.7795276 -2457.1791339 -3997.7322835 263.7795276 -2455.7582677 -4169.9881890 263.7795276 -2238.1393701 -4165.4881890 263.7795276 -2241.2881890 -4160.5157480 263.7795276 -2243.6086614 -4155.2125984 263.7795276 -2245.0291339 -3252.3460630 263.7795276 -2334.0283465 -3232.3062992 263.7795276 -2329.3082677 -4169.9881890 263.7795276 -2189.8846457 -4165.4881890 263.7795276 -2186.7354331 -4160.5118110 263.7795276 -2184.4153543 -4155.2125984 263.7795276 -2182.9940945 -3418.3661417 263.7795276 -2002.4295276 -3415.0905512 263.7795276 -2006.3992126 -3411.1740157 263.7795276 -2009.7397638 -3406.7381890 263.7795276 -2012.3492126 -3023.2425197 263.7795276 -2171.6637795 -3022.4948819 263.7795276 -2163.1177165 -3401.9157480 263.7795276 -2014.1492126 -3020.2748031 263.7795276 -2154.8318898 -3016.6492126 263.7795276 -2147.0570866 -3011.7291339 263.7795276 -2140.0303150 -3005.6633858 263.7795276 -2133.9645669 -2998.6362205 263.7795276 -2129.0440945 -2990.8618110 263.7795276 -2125.4188976 -2982.5759843 263.7795276 -2123.1984252 -3396.8543307 263.7795276 -2015.0842520 -3391.7074803 263.7795276 -2015.1259843 -3420.9031496 263.7795276 -1997.9515748 -3422.6240157 263.7795276 -1993.1007874 -3440.7283465 263.7795276 -1963.6133858 -3437.3877953 263.7795276 -1967.5291339 -3443.3377953 263.7795276 -1959.1771654 -3445.1377953 263.7795276 -1954.3551181 -3446.0728346 263.7795276 -1949.2937008 -3446.1145669 263.7795276 -1944.1464567 -3445.2622047 263.7795276 -1939.0708661 -3443.5413386 263.7795276 -1934.2200787 -3441.0039370 263.7795276 -1929.7421260 -3437.7279528 263.7795276 -1925.7724409 -3433.8122047 263.7795276 -1922.4318898 -3429.3755906 263.7795276 -1919.8220472 -3424.5535433 263.7795276 -1918.0224409 -3419.4917323 263.7795276 -1917.0874016 -3414.3456693 263.7795276 -1917.0456693 -2976.3015748 263.7795276 -1683.1366142 -2977.1547244 263.7795276 -1678.0610236 -2977.1122047 263.7795276 -1672.9137795 -2976.1779528 263.7795276 -1667.8527559 -2974.3775591 263.7795276 -1663.0303150 -2971.7685039 263.7795276 -1658.5940945 -3647.5011811 263.7795276 -1649.6000000 -2968.4279528 263.7795276 -1654.6783465 -2964.4582677 263.7795276 -1651.4019685 -2959.9799213 263.7795276 -1648.8649606 -3633.3937008 263.7795276 -1634.6051181 -2955.1295276 263.7795276 -1647.1440945 -2950.0535433 263.7795276 -1646.2913386 -2758.3248031 263.7795276 -1641.7322835 -2766.8704724 263.7795276 -1640.9846457 -2775.1570866 263.7795276 -1638.7645669 -2782.9311024 263.7795276 -1635.1389764 -2789.9582677 263.7795276 -1630.2185039 -3622.1035433 263.7795276 -1617.3885827 -2796.0244094 263.7795276 -1624.1527559 -2800.9440945 263.7795276 -1617.1259843 -3376.2767717 263.7795276 -1538.2188976 -3384.5625984 263.7795276 -1535.9984252 -3392.3370079 263.7795276 -1532.3732283 -3399.3637795 263.7795276 -1527.4527559 -3405.4299213 263.7795276 -1521.3870079 -3410.3500000 263.7795276 -1514.3598425 -3495.4000000 263.7795276 -1381.6208661 -2804.5696850 263.7795276 -1609.3515748 -2806.7897638 263.7795276 -1601.0653543 -2807.5374016 263.7795276 -1592.5196850 -3367.7307087 263.7795276 -1538.9661417 -2806.7905512 263.7795276 -1583.9740157 -2804.5696850 263.7795276 -1575.6877953 -2800.9440945 263.7795276 -1567.9133858 -2796.0244094 263.7795276 -1560.8862205 -2789.9582677 263.7795276 -1554.8204724 -2782.9311024 263.7795276 -1549.9003937 -2775.1570866 263.7795276 -1546.2751969 -2766.8708661 263.7795276 -1544.0547244 -2758.3248031 263.7795276 -1543.3070866 -3413.9755906 263.7795276 -1506.5854331 -3416.1956693 263.7795276 -1498.2992126 -3416.9433071 263.7795276 -1489.7535433 -3416.1956693 263.7795276 -1481.2078740 -3413.9755906 263.7795276 -1472.9220472 -3410.3500000 263.7795276 -1465.1472441 -3405.4299213 263.7795276 -1458.1204724 -3399.3641732 263.7795276 -1452.0547244 -3392.3370079 263.7795276 -1447.1342520 -3384.5625984 263.7795276 -1443.5090551 -3376.2767717 263.7795276 -1441.2889764 -3367.7307087 263.7795276 -1440.5409449 -3386.6314961 263.7795276 -2014.2732283 -2469.7374016 263.7795276 -1698.6673228 -3381.7807087 263.7795276 -2012.5523622 -3377.3031496 263.7795276 -2010.0153543 -3373.3334646 263.7795276 -2006.7389764 -3369.9925197 263.7795276 -2002.8232283 -3367.3826772 263.7795276 -1998.3870079 -3365.5830709 263.7795276 -1993.5645669 -3364.6484252 263.7795276 -1988.5035433 -3364.6070866 263.7795276 -1983.3562992 -2918.7870079 263.7795276 -1743.7854331 -2914.1248031 263.7795276 -1742.3559055 -2909.7618110 263.7795276 -1740.1783465 -2905.8149606 263.7795276 -1737.3125984 -2902.3952756 263.7795276 -1733.8362205 -2899.5937008 263.7795276 -1729.8444882 -2897.4877953 263.7795276 -1725.4456693 -2896.1346457 263.7795276 -1720.7606299 -2895.5700787 263.7795276 -1715.9165354 -2895.8110236 263.7795276 -1711.0460630 -2896.8511811 263.7795276 -1706.2814961 -2898.6606299 263.7795276 -1701.7527559 -2901.1909449 263.7795276 -1697.5838583 -2741.4933071 263.7795276 -1638.7641732 -2733.7185039 263.7795276 -1635.1389764 -2726.6921260 263.7795276 -1630.2188976 -2720.6259843 263.7795276 -1624.1531496 -2715.7055118 263.7795276 -1617.1259843 -2712.0803150 263.7795276 -1609.3511811 -2709.8598425 263.7795276 -1601.0653543 -2709.1122047 263.7795276 -1592.5196850 -2705.9578740 263.7795276 -1289.5216535 -2904.3724409 263.7795276 -1693.8881890 -2749.7791339 263.7795276 -1640.9846457 -2919.1362205 263.7795276 -1668.3165354 -2920.8578740 263.7795276 -1663.4657480 -2923.3948819 263.7795276 -1658.9874016 -2926.6708661 263.7795276 -1655.0177165 -2930.5866142 263.7795276 -1651.6775591 -2935.0232283 263.7795276 -1649.0681102 -2939.8456693 263.7795276 -1647.2681102 -2944.9066929 263.7795276 -1646.3334646 -2709.8598425 263.7795276 -1583.9740157 -2712.0803150 263.7795276 -1575.6881890 -2715.7055118 263.7795276 -1567.9133858 -2720.6259843 263.7795276 -1560.8866142 -2726.6921260 263.7795276 -1554.8204724 -2733.7185039 263.7795276 -1549.9003937 -2741.4933071 263.7795276 -1546.2751969 -2749.7791339 263.7795276 -1544.0547244 -3350.8992126 263.7795276 -1535.9984252 -3359.1854331 263.7795276 -1538.2188976 -3343.1244094 263.7795276 -1532.3732283 -3336.0976378 263.7795276 -1527.4527559 -3330.0318898 263.7795276 -1521.3870079 -3325.1114173 263.7795276 -1514.3598425 -3321.4866142 263.7795276 -1506.5854331 -3319.2657480 263.7795276 -1498.2992126 -3318.5181102 263.7795276 -1489.7535433 -3319.2661417 263.7795276 -1481.2078740 -3321.4866142 263.7795276 -1472.9220472 -3325.1114173 263.7795276 -1465.1472441 -3330.0318898 263.7795276 -1458.1204724 -3336.0976378 263.7795276 -1452.0547244 -3343.1244094 263.7795276 -1447.1342520 -3350.8992126 263.7795276 -1443.5090551 -3359.1854331 263.7795276 -1441.2885827 -3020.9185039 263.7795276 -1107.6791339 -3399.9401575 263.7795276 -1922.1562992 -3395.9708661 263.7795276 -1925.4326772 -3404.4188976 263.7795276 -1919.6192913 -3409.2696850 263.7795276 -1917.8980315 -7297.7480315 263.7795276 -4943.3149606 -7260.8464567 263.7795276 -4941.3818898 -7279.2204724 263.7795276 -4943.7992126 -7315.9724409 263.7795276 -4939.9370079 -7243.0787402 263.7795276 -4936.1141732 -7229.1771654 263.7795276 -4929.4842520 -7226.3503937 263.7795276 -4928.1377953 -7137.8464567 263.7795276 -4877.0433071 -7283.4370079 263.7795276 -4823.0472441 -6820.3110236 263.7795276 -4693.7125984 -7278.9921260 263.7795276 -4821.7283465 -7274.8110236 263.7795276 -4819.7362205 -7273.6181102 263.7795276 -4819.0472441 -7269.4015748 263.7795276 -4816.0944882 -7265.7637795 263.7795276 -4812.4566929 -7262.8110236 263.7795276 -4808.2401575 -7260.6338583 263.7795276 -4803.5748031 -7259.3031496 263.7795276 -4798.6023622 -7258.8543307 263.7795276 -4793.4763780 -7259.3031496 263.7795276 -4788.3464567 -7260.6338583 263.7795276 -4783.3740157 -7262.8110236 263.7795276 -4778.7125984 -7355.2559055 263.7795276 -4618.5944882 -6806.2834646 263.7795276 -4684.2086614 -6793.7559055 263.7795276 -4672.7952756 -7184.8031496 263.7795276 -4634.0039370 -7174.2086614 263.7795276 -4634.9291339 -6782.9960630 263.7795276 -4659.7086614 -7195.0787402 263.7795276 -4631.2519685 -7204.7204724 263.7795276 -4626.7559055 -7213.4330709 263.7795276 -4620.6535433 -7220.9527559 263.7795276 -4613.1338583 -7358.0472441 263.7795276 -4614.5708661 -7361.4645669 263.7795276 -4611.0629921 -7227.0551181 263.7795276 -4604.4173228 -7365.4133858 263.7795276 -4608.1692913 -7369.7874016 263.7795276 -4605.9685039 -7374.4645669 263.7795276 -4604.5236220 -7379.3188976 263.7795276 -4603.8661417 -7420.0393701 263.7795276 -4598.9015748 -7428.6811024 263.7795276 -4597.8503937 -7476.7125984 263.7795276 -4584.9763780 -7484.7244094 263.7795276 -4581.5708661 -7522.4724409 263.7795276 -4565.5078740 -7526.4527559 263.7795276 -4563.8740157 -7527.0039370 263.7795276 -4563.6496063 -7531.7795276 263.7795276 -4562.5669291 -7256.5826772 263.7795276 -4492.2519685 -7676.2913386 263.7795276 -4497.2598425 -7674.5275591 263.7795276 -4497.1023622 -7664.2519685 263.7795276 -4494.3503937 -7654.6102362 263.7795276 -4489.8543307 -7250.4803150 263.7795276 -4483.5393701 -7242.9606299 263.7795276 -4476.0157480 -7234.2480315 263.7795276 -4469.9173228 -7224.6062992 263.7795276 -4465.4212598 -7214.3307087 263.7795276 -4462.6692913 -6912.7007874 263.7795276 -4625.2559055 -6725.0590551 263.7795276 -4562.2598425 -6917.4251969 263.7795276 -4626.0787402 -7163.6102362 263.7795276 -4634.0039370 -7153.3346457 263.7795276 -4631.2519685 -6908.1692913 263.7795276 -4623.6771654 -6903.9566929 263.7795276 -4621.3818898 -6900.1692913 263.7795276 -4618.4409449 -6896.9055118 263.7795276 -4614.9212598 -6847.0748031 263.7795276 -4540.5354331 -6683.4055118 263.7795276 -4456.8188976 -6809.0629921 263.7795276 -4459.4685039 -6783.7440945 263.7795276 -4373.5905512 -6659.0984252 263.7795276 -4346.0826772 -6771.6968504 263.7795276 -4284.8700787 -6652.7598425 263.7795276 -4232.8897638 -6771.7992126 263.7795276 -4280.0826772 -6772.6771654 263.7795276 -4275.3779528 -6774.3070866 263.7795276 -4270.8740157 -6776.6417323 263.7795276 -4266.6929134 -6779.6181102 263.7795276 -4262.9448819 -6783.1653543 263.7795276 -4259.7244094 -6787.1850394 263.7795276 -4257.1220472 -6791.5708661 263.7795276 -4255.2047244 -6796.2125984 263.7795276 -4254.0196850 -6800.9803150 263.7795276 -4253.6023622 -7167.3543307 263.7795276 -4215.8188976 -6651.7480315 263.7795276 -4214.3464567 -7170.2322835 263.7795276 -4205.0866142 -6647.8425197 263.7795276 -4196.1889764 -7176.2362205 263.7795276 -4182.6732283 -6641.1377953 263.7795276 -4178.8700787 -7190.7401575 263.7795276 -4151.5748031 -7099.0472441 263.7795276 -4152.6181102 -7109.3228346 263.7795276 -4149.8622047 -7210.4212598 263.7795276 -4123.4685039 -7118.9645669 263.7795276 -4145.3661417 -7127.6771654 263.7795276 -4139.2677165 -7135.2007874 263.7795276 -4131.7440945 -7141.2992126 263.7795276 -4123.0314961 -7234.6811024 263.7795276 -4099.2047244 -7145.7952756 263.7795276 -4113.3897638 -7148.5472441 263.7795276 -4103.1181102 -7149.4763780 263.7795276 -4092.5196850 -7262.7913386 263.7795276 -4079.5236220 -7148.5472441 263.7795276 -4081.9212598 -7145.7952756 263.7795276 -4071.6496063 -7293.8897638 263.7795276 -4065.0196850 -7141.2992126 263.7795276 -4062.0078740 -7327.0314961 263.7795276 -4056.1417323 -7135.2007874 263.7795276 -4053.2952756 -7334.8818898 263.7795276 -4055.4527559 -7475.0275591 47.2440945 -3559.7062992 -7881.0669291 263.7795276 -3794.1326772 -7881.0669291 47.2440945 -3794.1326772 -7475.0275591 263.7795276 -3559.7062992 -7459.7834646 47.2440945 -3552.3094488 -7459.7834646 263.7795276 -3552.3094488 -7443.6377953 47.2440945 -3547.1688976 -7443.6377953 263.7795276 -3547.1688976 -7426.9251969 47.2440945 -3544.3913386 -7426.9251969 263.7795276 -3544.3913386 -7313.5629921 47.2440945 -3542.9433071 -7313.5629921 263.7795276 -3542.9433071 -7201.4212598 47.2440945 -3559.5897638 -7201.4212598 263.7795276 -3559.5897638 -7093.3661417 47.2440945 -3593.9070866 -7093.3661417 263.7795276 -3593.9070866 -6992.1692913 47.2440945 -3645.0153543 -6992.1692913 263.7795276 -3645.0153543 -6975.6062992 47.2440945 -3653.4106299 -6975.6062992 263.7795276 -3653.4106299 -6957.9291339 47.2440945 -3659.1047244 -6957.9291339 263.7795276 -3659.1047244 -6939.5748031 47.2440945 -3661.9582677 -6939.5748031 263.7795276 -3661.9582677 -6921.0039370 47.2440945 -3661.8992126 -6921.0039370 263.7795276 -3661.8992126 -6902.6732283 47.2440945 -3658.9299213 -6902.6732283 263.7795276 -3658.9299213 -6885.0314961 47.2440945 -3653.1236220 -6885.0314961 263.7795276 -3653.1236220 -6868.5196850 47.2440945 -3644.6240157 -6868.5196850 263.7795276 -3644.6240157 -3663.9976378 47.2440945 -1661.9173228 -3663.9976378 263.7795276 -1661.9173228 -3647.5011811 47.2440945 -1649.6000000 -3647.5011811 263.7795276 -1649.6000000 -3633.3937008 263.7795276 -1634.6051181 -3633.3937008 47.2440945 -1634.6051181 -3622.1035433 263.7795276 -1617.3885827 -3622.1035433 47.2440945 -1617.3885827 -3495.4000000 47.2440945 -1381.6208661 -3495.4000000 263.7795276 -1381.6208661 -3020.9185039 47.2440945 -1107.6791339 -3020.9185039 263.7795276 -1107.6791339 -2705.9578740 47.2440945 -1289.5216535 -2705.9578740 263.7795276 -1289.5216535 -2469.7374016 263.7795276 -1698.6673228 -2469.7374016 47.2440945 -1698.6673228 -2469.7374016 263.7795276 -2062.3527559 -2469.7374016 47.2440945 -2062.3527559 -2944.2188976 47.2440945 -2336.2948819 -2944.2188976 263.7795276 -2336.2948819 -3211.7515748 47.2440945 -2328.1397638 -3211.7515748 263.7795276 -2328.1397638 -3232.3062992 47.2440945 -2329.3082677 -3232.3062992 263.7795276 -2329.3082677 -3252.3460630 47.2440945 -2334.0283465 -3252.3460630 263.7795276 -2334.0283465 -3271.2614173 47.2440945 -2342.1566929 -3271.2614173 263.7795276 -2342.1566929 -6590.5984252 47.2440945 -4126.0000000 -6590.5984252 263.7795276 -4126.0000000 -6606.2125984 47.2440945 -4136.0511811 -6606.2125984 263.7795276 -4136.0511811 -6620.0629921 47.2440945 -4148.4251969 -6620.0629921 263.7795276 -4148.4251969 -6631.7992126 47.2440945 -4162.8149606 -6631.7992126 263.7795276 -4162.8149606 -6641.1377953 263.7795276 -4178.8700787 -6641.1377953 47.2440945 -4178.8700787 -6647.8425197 263.7795276 -4196.1889764 -6647.8425197 47.2440945 -4196.1889764 -6651.7480315 47.2440945 -4214.3464567 -6651.7480315 263.7795276 -4214.3464567 -6652.7598425 263.7795276 -4232.8897638 -6652.7598425 47.2440945 -4232.8897638 -6659.0984252 263.7795276 -4346.0826772 -6659.0984252 47.2440945 -4346.0826772 -6683.4055118 263.7795276 -4456.8188976 -6683.4055118 47.2440945 -4456.8188976 -6725.0590551 263.7795276 -4562.2598425 -6725.0590551 47.2440945 -4562.2598425 -6782.9960630 263.7795276 -4659.7086614 -6782.9960630 47.2440945 -4659.7086614 -6793.7559055 47.2440945 -4672.7952756 -6793.7559055 263.7795276 -4672.7952756 -6806.2834646 47.2440945 -4684.2086614 -6806.2834646 263.7795276 -4684.2086614 -6820.3110236 47.2440945 -4693.7125984 -6820.3110236 263.7795276 -4693.7125984 -7137.8464567 47.2440945 -4877.0433071 -7137.8464567 263.7795276 -4877.0433071 -7226.3503937 47.2440945 -4928.1377953 -7226.3503937 263.7795276 -4928.1377953 -7229.1771654 263.7795276 -4929.4842520 -7243.0787402 47.2440945 -4936.1141732 -7243.0787402 263.7795276 -4936.1141732 -7229.1771654 47.2440945 -4929.4842520 -7260.8464567 47.2440945 -4941.3818898 -7260.8464567 263.7795276 -4941.3818898 -7279.2204724 47.2440945 -4943.7992126 -7279.2204724 263.7795276 -4943.7992126 -7297.7480315 47.2440945 -4943.3149606 -7297.7480315 263.7795276 -4943.3149606 -7315.9724409 47.2440945 -4939.9370079 -7315.9724409 263.7795276 -4939.9370079 -7745.3661417 47.2440945 -4824.8818898 -7745.3661417 263.7795276 -4824.8818898 -7762.8346457 47.2440945 -4818.6929134 -7762.8346457 263.7795276 -4818.6929134 -7779.1259843 47.2440945 -4809.8503937 -7779.1259843 263.7795276 -4809.8503937 -7793.8267717 47.2440945 -4798.5669291 -7793.8267717 263.7795276 -4798.5669291 -7806.5866142 263.7795276 -4785.1259843 -7806.5866142 47.2440945 -4785.1259843 -7817.0826772 263.7795276 -4769.8503937 -7817.0826772 47.2440945 -4769.8503937 -7881.4645669 263.7795276 -4658.3346457 -7881.4645669 47.2440945 -4658.3346457 -8039.3543307 47.2440945 -4384.8661417 -7899.9212598 47.2440945 -4626.3700787 -8039.3543307 263.7795276 -4384.8661417 -7899.9212598 263.7795276 -4626.3700787 -8047.3307087 47.2440945 -4368.1377953 -8040.7007874 47.2440945 -4382.0393701 -8047.3307087 263.7795276 -4368.1377953 -8040.7007874 263.7795276 -4382.0393701 -8052.5944882 47.2440945 -4350.3700787 -8052.5944882 263.7795276 -4350.3700787 -8055.0157480 263.7795276 -4331.9921260 -8055.0157480 47.2440945 -4331.9921260 -8054.5314961 47.2440945 -4313.4645669 -8054.5314961 263.7795276 -4313.4645669 -8051.1535433 47.2440945 -4295.2440945 -8051.1535433 263.7795276 -4295.2440945 -8002.4015748 263.7795276 -4113.3031496 -8002.4015748 47.2440945 -4113.3031496 -8001.9960630 47.2440945 -4111.7834646 -8001.9960630 263.7795276 -4111.7834646 -7942.5433071 263.7795276 -3889.9102362 -7942.5433071 47.2440945 -3889.9102362 -7936.0984252 263.7795276 -3865.8503937 -7936.0984252 47.2440945 -3865.8503937 -7929.9094488 263.7795276 -3848.3795276 -7929.9094488 47.2440945 -3848.3795276 -7921.0669291 263.7795276 -3832.0917323 -7921.0669291 47.2440945 -3832.0917323 -7909.7834646 263.7795276 -3817.3877953 -7909.7834646 47.2440945 -3817.3877953 -7896.3385827 47.2440945 -3804.6303150 -7896.3385827 263.7795276 -3804.6303150 -6782.9960630 47.2440945 -4659.7086614 -6917.4251969 47.2440945 -4626.0787402 -7174.2086614 47.2440945 -4634.9291339 -6912.7007874 47.2440945 -4625.2559055 -6725.0590551 47.2440945 -4562.2598425 -7163.6102362 47.2440945 -4634.0039370 -7153.3346457 47.2440945 -4631.2519685 -6922.2244094 47.2440945 -4626.1259843 -7143.6968504 47.2440945 -4626.7559055 -6908.1692913 47.2440945 -4623.6771654 -6903.9566929 47.2440945 -4621.3818898 -6900.1692913 47.2440945 -4618.4409449 -6896.9055118 47.2440945 -4614.9212598 -6847.0748031 47.2440945 -4540.5354331 -6683.4055118 47.2440945 -4456.8188976 -6809.0629921 47.2440945 -4459.4685039 -6783.7440945 47.2440945 -4373.5905512 -6659.0984252 47.2440945 -4346.0826772 -6771.6968504 47.2440945 -4284.8700787 -6652.7598425 47.2440945 -4232.8897638 -6771.7992126 47.2440945 -4280.0826772 -6772.6771654 47.2440945 -4275.3779528 -6774.3070866 47.2440945 -4270.8740157 -6776.6417323 47.2440945 -4266.6929134 -6779.6181102 47.2440945 -4262.9448819 -6783.1653543 47.2440945 -4259.7244094 -6787.1850394 47.2440945 -4257.1220472 -6791.5708661 47.2440945 -4255.2047244 -6796.2125984 47.2440945 -4254.0196850 -6800.9803150 47.2440945 -4253.6023622 -6978.5039370 47.2440945 -4252.4606299 -7164.3661417 47.2440945 -4250.0000000 -7167.3543307 47.2440945 -4215.8188976 -6651.7480315 47.2440945 -4214.3464567 -7170.2322835 47.2440945 -4205.0866142 -6647.8425197 47.2440945 -4196.1889764 -7176.2362205 47.2440945 -4182.6732283 -6641.1377953 47.2440945 -4178.8700787 -7190.7401575 47.2440945 -4151.5748031 -6631.7992126 47.2440945 -4162.8149606 -7088.4527559 47.2440945 -4153.5433071 -7099.0472441 47.2440945 -4152.6181102 -7109.3228346 47.2440945 -4149.8622047 -7210.4212598 47.2440945 -4123.4685039 -7118.9645669 47.2440945 -4145.3661417 -7127.6771654 47.2440945 -4139.2677165 -7135.2007874 47.2440945 -4131.7440945 -7141.2992126 47.2440945 -4123.0314961 -7234.6811024 47.2440945 -4099.2047244 -7145.7952756 47.2440945 -4113.3897638 -7148.5472441 47.2440945 -4103.1181102 -7149.4763780 47.2440945 -4092.5196850 -7262.7913386 47.2440945 -4079.5236220 -7148.5472441 47.2440945 -4081.9212598 -7145.7952756 47.2440945 -4071.6496063 -7293.8897638 47.2440945 -4065.0196850 -7141.2992126 47.2440945 -4062.0078740 -7327.0314961 47.2440945 -4056.1417323 -7135.2007874 47.2440945 -4053.2952756 -7334.8818898 47.2440945 -4055.4527559 -7361.2165354 47.2440945 -4053.1496063 -7127.6771654 47.2440945 -4045.7716535 -7067.8188976 47.2440945 -4010.1456693 -7518.6968504 47.2440945 -4038.2598425 -7118.9645669 47.2440945 -4039.6732283 -7508.0984252 47.2440945 -4037.3307087 -7497.8228346 47.2440945 -4034.5787402 -7488.1850394 47.2440945 -4030.0826772 -7479.4724409 47.2440945 -4023.9842520 -7471.9488189 47.2440945 -4016.4606299 -7465.8464567 47.2440945 -4007.7480315 -7058.1811024 47.2440945 -4005.6496063 -7461.3543307 47.2440945 -3998.1062992 -7047.9055118 47.2440945 -4002.8937008 -7037.3110236 47.2440945 -4001.9685039 -7134.9842520 47.2440945 -4620.6535433 -6926.9645669 47.2440945 -4625.3976378 -6931.5275591 47.2440945 -4623.9094488 -6935.7874016 47.2440945 -4621.7047244 -6939.6338583 47.2440945 -4618.8385827 -7127.4606299 47.2440945 -4613.1338583 -6942.9645669 47.2440945 -4615.3858268 -6945.6929134 47.2440945 -4611.4370079 -7121.3582677 47.2440945 -4604.4173228 -7116.8661417 47.2440945 -4594.7795276 -7044.9842520 47.2440945 -4439.4606299 -7114.1102362 47.2440945 -4584.5039370 -7113.1850394 47.2440945 -4573.9055118 -7114.1102362 47.2440945 -4563.3110236 -7116.8661417 47.2440945 -4553.0354331 -7121.3582677 47.2440945 -4543.3937008 -7150.8858268 47.2440945 -4492.2519685 -7156.9881890 47.2440945 -4483.5393701 -7164.5118110 47.2440945 -4476.0157480 -7173.2244094 47.2440945 -4469.9173228 -7182.8622047 47.2440945 -4465.4212598 -7193.1377953 47.2440945 -4462.6692913 -7203.7362205 47.2440945 -4461.7401575 -7603.4685039 47.2440945 -4460.3267717 -7594.7559055 47.2440945 -4454.2283465 -7361.2165354 47.2440945 -4446.8503937 -7327.0314961 47.2440945 -4443.8582677 -7311.2559055 47.2440945 -4439.6338583 -7293.8897638 47.2440945 -4434.9803150 -7047.0748031 47.2440945 -4435.0314961 -7048.4015748 47.2440945 -4430.3188976 -7262.7913386 47.2440945 -4420.4763780 -7048.9330709 47.2440945 -4425.4488189 -7048.6496063 47.2440945 -4420.5629921 -7047.5669291 47.2440945 -4415.7874016 -7234.6811024 47.2440945 -4400.7952756 -7045.7047244 47.2440945 -4411.2559055 -7027.5000000 47.2440945 -4369.0984252 -7221.9685039 47.2440945 -4388.0826772 -7210.4212598 47.2440945 -4376.5314961 -7190.7401575 47.2440945 -4348.4251969 -7014.9015748 47.2440945 -4324.9409449 -7176.2362205 47.2440945 -4317.3267717 -7008.1181102 47.2440945 -4279.5275591 -7167.3543307 47.2440945 -4284.1811024 -7007.3070866 47.2440945 -4274.6968504 -7005.7086614 47.2440945 -4270.0708661 -7003.3700787 47.2440945 -4265.7716535 -7000.3503937 47.2440945 -4261.9173228 -6996.7362205 47.2440945 -4258.6141732 -6992.6299213 47.2440945 -4255.9527559 -6988.1377953 47.2440945 -4254.0078740 -6983.3818898 47.2440945 -4252.8346457 -7654.8503937 47.2440945 -4350.1377953 -7904.6889764 47.2440945 -4352.3622047 -7664.4921260 47.2440945 -4354.6338583 -7899.5629921 47.2440945 -4351.9133858 -7894.5905512 47.2440945 -4350.5826772 -7889.9251969 47.2440945 -4348.4055118 -7644.5748031 47.2440945 -4347.3818898 -7871.5196850 47.2440945 -4337.7755906 -7633.9803150 47.2440945 -4346.4566929 -7260.8464567 47.2440945 -4941.3818898 -7297.7480315 47.2440945 -4943.3149606 -7279.2204724 47.2440945 -4943.7992126 -7315.9724409 47.2440945 -4939.9370079 -7243.0787402 47.2440945 -4936.1141732 -7745.3661417 47.2440945 -4824.8818898 -7229.1771654 47.2440945 -4929.4842520 -7226.3503937 47.2440945 -4928.1377953 -7137.8464567 47.2440945 -4877.0433071 -7288.0314961 47.2440945 -4823.6496063 -7283.4370079 47.2440945 -4823.0472441 -6820.3110236 47.2440945 -4693.7125984 -7278.9921260 47.2440945 -4821.7283465 -7274.8110236 47.2440945 -4819.7362205 -7273.6181102 47.2440945 -4819.0472441 -7269.4015748 47.2440945 -4816.0944882 -7265.7637795 47.2440945 -4812.4566929 -7262.8110236 47.2440945 -4808.2401575 -7260.6338583 47.2440945 -4803.5748031 -7259.3031496 47.2440945 -4798.6023622 -7258.8543307 47.2440945 -4793.4763780 -7259.3031496 47.2440945 -4788.3464567 -7260.6338583 47.2440945 -4783.3740157 -7262.8110236 47.2440945 -4778.7125984 -7355.2559055 47.2440945 -4618.5944882 -6806.2834646 47.2440945 -4684.2086614 -6793.7559055 47.2440945 -4672.7952756 -7184.8031496 47.2440945 -4634.0039370 -7195.0787402 47.2440945 -4631.2519685 -7204.7204724 47.2440945 -4626.7559055 -7213.4330709 47.2440945 -4620.6535433 -7220.9527559 47.2440945 -4613.1338583 -7358.0472441 47.2440945 -4614.5708661 -7361.4645669 47.2440945 -4611.0629921 -7227.0551181 47.2440945 -4604.4173228 -7365.4133858 47.2440945 -4608.1692913 -7369.7874016 47.2440945 -4605.9685039 -7374.4645669 47.2440945 -4604.5236220 -7379.3188976 47.2440945 -4603.8661417 -7256.5826772 47.2440945 -4553.2755906 -7420.0393701 47.2440945 -4598.9015748 -7428.6811024 47.2440945 -4597.8503937 -7476.7125984 47.2440945 -4584.9763780 -7484.7244094 47.2440945 -4581.5708661 -7522.4724409 47.2440945 -4565.5078740 -7526.4527559 47.2440945 -4563.8740157 -7527.0039370 47.2440945 -4563.6496063 -7531.7795276 47.2440945 -4562.5669291 -7536.6653543 47.2440945 -4562.2834646 -7256.5826772 47.2440945 -4492.2519685 -7685.1220472 47.2440945 -4498.0314961 -7261.0787402 47.2440945 -4501.8937008 -7676.2913386 47.2440945 -4497.2598425 -7674.5275591 47.2440945 -4497.1023622 -7664.2519685 47.2440945 -4494.3503937 -7654.6102362 47.2440945 -4489.8543307 -7250.4803150 47.2440945 -4483.5393701 -7242.9606299 47.2440945 -4476.0157480 -7234.2480315 47.2440945 -4469.9173228 -7224.6062992 47.2440945 -4465.4212598 -7214.3307087 47.2440945 -4462.6692913 -2974.0299213 47.2440945 -2220.8759843 -4118.7244094 47.2440945 -2219.4811024 -4120.1456693 47.2440945 -2224.7838583 -2982.5759843 47.2440945 -2220.1283465 -2990.8618110 47.2440945 -2217.9082677 -4118.2440945 47.2440945 -2214.0118110 -2998.6362205 47.2440945 -2214.2830709 -3005.6629921 47.2440945 -2209.3625984 -4118.7244094 47.2440945 -2208.5425197 -3011.7291339 47.2440945 -2203.2968504 -4120.1456693 47.2440945 -2203.2393701 -3016.6492126 47.2440945 -2196.2696850 -4122.4645669 47.2440945 -2198.2637795 -4125.6141732 47.2440945 -2193.7665354 -3020.2748031 47.2440945 -2188.4952756 -4129.4960630 47.2440945 -2189.8846457 -4133.9921260 47.2440945 -2186.7354331 -3022.4948819 47.2440945 -2180.2090551 -4138.9685039 47.2440945 -2184.4153543 -4144.2716535 47.2440945 -2182.9940945 -4149.7401575 47.2440945 -2182.5157480 -2469.7374016 47.2440945 -2062.3527559 -3211.7515748 47.2440945 -2328.1397638 -2944.2188976 47.2440945 -2336.2948819 -2957.1984252 47.2440945 -2217.9082677 -2965.4846457 47.2440945 -2220.1287402 -4149.7401575 47.2440945 -2245.5078740 -4144.2716535 47.2440945 -2245.0291339 -4138.9685039 47.2440945 -2243.6086614 -4133.9921260 47.2440945 -2241.2881890 -4129.4960630 47.2440945 -2238.1393701 -4125.6141732 47.2440945 -2234.2570866 -4122.4645669 47.2440945 -2229.7598425 -2949.4236220 47.2440945 -2214.2830709 -2942.3968504 47.2440945 -2209.3625984 -2936.3311024 47.2440945 -2203.2968504 -2931.4106299 47.2440945 -2196.2700787 -2927.7858268 47.2440945 -2188.4952756 -2925.5649606 47.2440945 -2180.2090551 -2924.8173228 47.2440945 -2171.6633858 -2925.5653543 47.2440945 -2163.1181102 -2927.7858268 47.2440945 -2154.8318898 -2931.4106299 47.2440945 -2147.0574803 -2936.3311024 47.2440945 -2140.0303150 -2942.3968504 47.2440945 -2133.9645669 -2949.4236220 47.2440945 -2129.0440945 -2957.1984252 47.2440945 -2125.4188976 -2965.4846457 47.2440945 -2123.1984252 -2974.0299213 47.2440945 -2122.4511811 -2976.3015748 47.2440945 -1683.1366142 -3399.9401575 47.2440945 -1922.1562992 -3395.9708661 47.2440945 -1925.4326772 -3404.4188976 47.2440945 -1919.6192913 -3409.2696850 47.2440945 -1917.8980315 -3414.3456693 47.2440945 -1917.0456693 -3386.6314961 47.2440945 -2014.2732283 -3391.7074803 47.2440945 -2015.1259843 -2469.7374016 47.2440945 -1698.6673228 -3381.7807087 47.2440945 -2012.5523622 -3377.3031496 47.2440945 -2010.0153543 -3373.3334646 47.2440945 -2006.7389764 -3369.9925197 47.2440945 -2002.8232283 -3367.3826772 47.2440945 -1998.3870079 -3365.5830709 47.2440945 -1993.5645669 -3364.6484252 47.2440945 -1988.5035433 -3364.6070866 47.2440945 -1983.3562992 -3365.4590551 47.2440945 -1978.2807087 -2923.6212598 47.2440945 -1744.4279528 -2918.7870079 47.2440945 -1743.7854331 -2914.1248031 47.2440945 -1742.3559055 -2909.7618110 47.2440945 -1740.1783465 -2905.8149606 47.2440945 -1737.3125984 -2902.3952756 47.2440945 -1733.8362205 -2899.5937008 47.2440945 -1729.8444882 -2897.4877953 47.2440945 -1725.4456693 -2896.1346457 47.2440945 -1720.7606299 -2895.5700787 47.2440945 -1715.9165354 -2895.8110236 47.2440945 -1711.0460630 -2896.8511811 47.2440945 -1706.2814961 -2898.6606299 47.2440945 -1701.7527559 -2901.1909449 47.2440945 -1697.5838583 -2741.4933071 47.2440945 -1638.7641732 -2733.7185039 47.2440945 -1635.1389764 -2726.6921260 47.2440945 -1630.2188976 -2720.6259843 47.2440945 -1624.1531496 -2715.7055118 47.2440945 -1617.1259843 -2712.0803150 47.2440945 -1609.3511811 -2709.8598425 47.2440945 -1601.0653543 -2709.1122047 47.2440945 -1592.5196850 -2705.9578740 47.2440945 -1289.5216535 -2904.3724409 47.2440945 -1693.8881890 -2749.7791339 47.2440945 -1640.9846457 -2919.1362205 47.2440945 -1668.3165354 -2920.8578740 47.2440945 -1663.4657480 -2923.3948819 47.2440945 -1658.9874016 -2758.3248031 47.2440945 -1641.7322835 -2926.6708661 47.2440945 -1655.0177165 -2930.5866142 47.2440945 -1651.6775591 -2935.0232283 47.2440945 -1649.0681102 -2939.8456693 47.2440945 -1647.2681102 -2944.9066929 47.2440945 -1646.3334646 -2950.0535433 47.2440945 -1646.2913386 -2709.8598425 47.2440945 -1583.9740157 -2712.0803150 47.2440945 -1575.6881890 -2715.7055118 47.2440945 -1567.9133858 -2720.6259843 47.2440945 -1560.8866142 -2726.6921260 47.2440945 -1554.8204724 -2733.7185039 47.2440945 -1549.9003937 -2741.4933071 47.2440945 -1546.2751969 -2749.7791339 47.2440945 -1544.0547244 -2758.3248031 47.2440945 -1543.3070866 -3350.8992126 47.2440945 -1535.9984252 -3359.1854331 47.2440945 -1538.2188976 -3367.7307087 47.2440945 -1538.9661417 -3343.1244094 47.2440945 -1532.3732283 -3336.0976378 47.2440945 -1527.4527559 -3330.0318898 47.2440945 -1521.3870079 -3325.1114173 47.2440945 -1514.3598425 -3321.4866142 47.2440945 -1506.5854331 -3319.2657480 47.2440945 -1498.2992126 -3318.5181102 47.2440945 -1489.7535433 -3319.2661417 47.2440945 -1481.2078740 -3321.4866142 47.2440945 -1472.9220472 -3325.1114173 47.2440945 -1465.1472441 -3330.0318898 47.2440945 -1458.1204724 -3336.0976378 47.2440945 -1452.0547244 -3343.1244094 47.2440945 -1447.1342520 -3350.8992126 47.2440945 -1443.5090551 -3359.1854331 47.2440945 -1441.2885827 -3367.7307087 47.2440945 -1440.5409449 -3495.4000000 47.2440945 -1381.6208661 -3020.9185039 47.2440945 -1107.6791339 -6868.5196850 47.2440945 -3644.6240157 -6313.5039370 47.2440945 -3426.8933071 -3663.9976378 47.2440945 -1661.9173228 -6318.0039370 47.2440945 -3430.0417323 -6321.8858268 47.2440945 -3433.9236220 -6325.0354331 47.2440945 -3438.4212598 -6327.3543307 47.2440945 -3443.3968504 -6328.7755906 47.2440945 -3448.7000000 -6329.2519685 47.2440945 -3454.1692913 -6328.7755906 47.2440945 -3459.6385827 -6327.3543307 47.2440945 -3464.9413386 -6325.0354331 47.2440945 -3469.9177165 -6321.8858268 47.2440945 -3474.4145669 -6318.0039370 47.2440945 -3478.2964567 -6313.5039370 47.2440945 -3481.4456693 -6308.5275591 47.2440945 -3483.7665354 -6303.2283465 47.2440945 -3485.1870079 -6297.7559055 47.2440945 -3485.6653543 -6308.5275591 47.2440945 -3424.5732283 -6303.2283465 47.2440945 -3423.1515748 -6297.7559055 47.2440945 -3422.6732283 -4173.8700787 47.2440945 -2193.7665354 -4177.0196850 47.2440945 -2198.2637795 -4179.3385827 47.2440945 -2203.2393701 -4180.7598425 47.2440945 -2208.5425197 -4181.2362205 47.2440945 -2214.0118110 -4180.7598425 47.2440945 -2219.4811024 -4179.3385827 47.2440945 -2224.7838583 -4177.0196850 47.2440945 -2229.7594488 -4019.5393701 47.2440945 -2502.5236220 -4016.3897638 47.2440945 -2507.0208661 -4012.5078740 47.2440945 -2510.9031496 -4008.0078740 47.2440945 -2514.0519685 -4003.0354331 47.2440945 -2516.3724409 -3997.7322835 47.2440945 -2517.7933071 -3992.2598425 47.2440945 -2518.2716535 -4021.8582677 47.2440945 -2497.5480315 -4023.2795276 47.2440945 -2492.2448819 -4023.7559055 47.2440945 -2486.7755906 -4023.2795276 47.2440945 -2481.3062992 -4021.8582677 47.2440945 -2476.0031496 -4019.5393701 47.2440945 -2471.0275591 -4016.3897638 47.2440945 -2466.5303150 -4173.8700787 47.2440945 -2234.2570866 -4012.5078740 47.2440945 -2462.6484252 -4008.0078740 47.2440945 -2459.4992126 -4003.0314961 47.2440945 -2457.1791339 -3997.7322835 47.2440945 -2455.7582677 -3992.2598425 47.2440945 -2455.2795276 -4169.9881890 47.2440945 -2238.1393701 -4165.4881890 47.2440945 -2241.2881890 -4160.5157480 47.2440945 -2243.6086614 -4155.2125984 47.2440945 -2245.0291339 -3271.2614173 47.2440945 -2342.1566929 -3252.3460630 47.2440945 -2334.0283465 -3232.3062992 47.2440945 -2329.3082677 -4169.9881890 47.2440945 -2189.8846457 -4165.4881890 47.2440945 -2186.7354331 -4160.5118110 47.2440945 -2184.4153543 -4155.2125984 47.2440945 -2182.9940945 -3418.3661417 47.2440945 -2002.4295276 -3415.0905512 47.2440945 -2006.3992126 -3411.1740157 47.2440945 -2009.7397638 -3406.7381890 47.2440945 -2012.3492126 -3023.2425197 47.2440945 -2171.6637795 -3022.4948819 47.2440945 -2163.1177165 -3401.9157480 47.2440945 -2014.1492126 -3020.2748031 47.2440945 -2154.8318898 -3016.6492126 47.2440945 -2147.0570866 -3011.7291339 47.2440945 -2140.0303150 -3005.6633858 47.2440945 -2133.9645669 -2998.6362205 47.2440945 -2129.0440945 -2990.8618110 47.2440945 -2125.4188976 -2982.5759843 47.2440945 -2123.1984252 -3396.8543307 47.2440945 -2015.0842520 -3420.9031496 47.2440945 -1997.9515748 -3422.6240157 47.2440945 -1993.1007874 -3440.7283465 47.2440945 -1963.6133858 -3437.3877953 47.2440945 -1967.5291339 -3443.3377953 47.2440945 -1959.1771654 -3445.1377953 47.2440945 -1954.3551181 -3446.0728346 47.2440945 -1949.2937008 -3446.1145669 47.2440945 -1944.1464567 -3445.2622047 47.2440945 -1939.0708661 -3443.5413386 47.2440945 -1934.2200787 -3441.0039370 47.2440945 -1929.7421260 -3437.7279528 47.2440945 -1925.7724409 -3433.8122047 47.2440945 -1922.4318898 -3429.3755906 47.2440945 -1919.8220472 -3424.5535433 47.2440945 -1918.0224409 -3419.4917323 47.2440945 -1917.0874016 -2977.1547244 47.2440945 -1678.0610236 -2977.1122047 47.2440945 -1672.9137795 -2976.1779528 47.2440945 -1667.8527559 -2974.3775591 47.2440945 -1663.0303150 -2971.7685039 47.2440945 -1658.5940945 -3647.5011811 47.2440945 -1649.6000000 -2968.4279528 47.2440945 -1654.6783465 -2964.4582677 47.2440945 -1651.4019685 -2959.9799213 47.2440945 -1648.8649606 -3633.3937008 47.2440945 -1634.6051181 -2955.1295276 47.2440945 -1647.1440945 -2766.8704724 47.2440945 -1640.9846457 -2775.1570866 47.2440945 -1638.7645669 -2782.9311024 47.2440945 -1635.1389764 -2789.9582677 47.2440945 -1630.2185039 -3622.1035433 47.2440945 -1617.3885827 -2796.0244094 47.2440945 -1624.1527559 -2800.9440945 47.2440945 -1617.1259843 -3376.2767717 47.2440945 -1538.2188976 -3384.5625984 47.2440945 -1535.9984252 -3392.3370079 47.2440945 -1532.3732283 -3399.3637795 47.2440945 -1527.4527559 -3405.4299213 47.2440945 -1521.3870079 -3410.3500000 47.2440945 -1514.3598425 -2804.5696850 47.2440945 -1609.3515748 -2806.7897638 47.2440945 -1601.0653543 -2807.5374016 47.2440945 -1592.5196850 -2806.7905512 47.2440945 -1583.9740157 -2804.5696850 47.2440945 -1575.6877953 -2800.9440945 47.2440945 -1567.9133858 -2796.0244094 47.2440945 -1560.8862205 -2789.9582677 47.2440945 -1554.8204724 -2782.9311024 47.2440945 -1549.9003937 -2775.1570866 47.2440945 -1546.2751969 -2766.8708661 47.2440945 -1544.0547244 -3413.9755906 47.2440945 -1506.5854331 -3416.1956693 47.2440945 -1498.2992126 -3416.9433071 47.2440945 -1489.7535433 -3416.1956693 47.2440945 -1481.2078740 -3413.9755906 47.2440945 -1472.9220472 -3410.3500000 47.2440945 -1465.1472441 -3405.4299213 47.2440945 -1458.1204724 -3399.3641732 47.2440945 -1452.0547244 -3392.3370079 47.2440945 -1447.1342520 -3384.5625984 47.2440945 -1443.5090551 -3376.2767717 47.2440945 -1441.2889764 -2942.0440945 47.2440945 -1739.1062992 -2945.7897638 47.2440945 -1735.9846457 -2937.8334646 47.2440945 -1741.5685039 -2933.2763780 47.2440945 -1743.3043307 -2928.4952756 47.2440945 -1744.2661417 -6620.0629921 47.2440945 -4148.4251969 -7077.8543307 47.2440945 -4152.6181102 -7067.5826772 47.2440945 -4149.8622047 -7057.9409449 47.2440945 -4145.3661417 -6606.2125984 47.2440945 -4136.0511811 -7006.7952756 47.2440945 -4115.8385827 -6590.5984252 47.2440945 -4126.0000000 -6129.5039370 47.2440945 -3756.5303150 -6124.5275591 47.2440945 -3754.2094488 -6998.0826772 47.2440945 -4109.7401575 -6990.5629921 47.2440945 -4102.2165354 -6989.5472441 47.2440945 -4100.7637795 -6984.4606299 47.2440945 -4093.5039370 -6979.9645669 47.2440945 -4083.8622047 -6977.2125984 47.2440945 -4073.5905512 -6976.2834646 47.2440945 -4062.9921260 -6977.2125984 47.2440945 -4052.3937008 -6979.9645669 47.2440945 -4042.1220472 -6984.4606299 47.2440945 -4032.4803150 -6990.5629921 47.2440945 -4023.7677165 -6998.0826772 47.2440945 -4016.2440945 -7006.7952756 47.2440945 -4010.1456693 -7016.4370079 47.2440945 -4005.6496063 -7026.7125984 47.2440945 -4002.8937008 -6134.8070866 47.2440945 -3757.9507874 -7458.5984252 47.2440945 -3987.8346457 -7457.6732283 47.2440945 -3977.2362205 -7191.1062992 47.2440945 -3931.5232283 -7195.9527559 47.2440945 -3932.2106299 -7458.5984252 47.2440945 -3966.6377953 -7461.3543307 47.2440945 -3956.3661417 -7465.8464567 47.2440945 -3946.7244094 -7186.4370079 47.2440945 -3930.0452756 -7182.0787402 47.2440945 -3927.8165354 -7178.1496063 47.2440945 -3924.8984252 -7174.7559055 47.2440945 -3921.3708661 -7171.9881890 47.2440945 -3917.3314961 -6140.2755906 47.2440945 -3758.4295276 -7084.2165354 47.2440945 -3763.0220472 -7082.1929134 47.2440945 -3758.6818898 -6120.0314961 47.2440945 -3751.0606299 -6116.1496063 47.2440945 -3747.1783465 -6113.0000000 47.2440945 -3742.6811024 -6110.6811024 47.2440945 -3737.7055118 -6109.2598425 47.2440945 -3732.4023622 -6108.7795276 47.2440945 -3726.9330709 -6109.2598425 47.2440945 -3721.4637795 -6110.6811024 47.2440945 -3716.1610236 -6113.0000000 47.2440945 -3711.1850394 -6115.8346457 47.2440945 -3707.1389764 -6116.1496063 47.2440945 -3706.6877953 -6120.0314961 47.2440945 -3702.8059055 -6124.5275591 47.2440945 -3699.6570866 -6129.5039370 47.2440945 -3697.3370079 -6134.8070866 47.2440945 -3695.9157480 -6140.2755906 47.2440945 -3695.4377953 -6286.9842520 47.2440945 -3483.7665354 -6902.6732283 47.2440945 -3658.9299213 -6921.0039370 47.2440945 -3661.8992126 -7179.5118110 47.2440945 -3688.0976378 -7266.5472441 47.2440945 -3667.0862205 -6939.5748031 47.2440945 -3661.9582677 -6885.0314961 47.2440945 -3653.1236220 -6292.2874016 47.2440945 -3485.1870079 -6282.0078740 47.2440945 -3481.4456693 -6277.5118110 47.2440945 -3478.2964567 -6273.6299213 47.2440945 -3474.4145669 -6270.4803150 47.2440945 -3469.9169291 -6268.1614173 47.2440945 -3464.9413386 -6266.7401575 47.2440945 -3459.6385827 -6266.2598425 47.2440945 -3454.1692913 -6266.7401575 47.2440945 -3448.7000000 -6268.1614173 47.2440945 -3443.3968504 -6270.4803150 47.2440945 -3438.4212598 -6273.6299213 47.2440945 -3433.9236220 -6277.5118110 47.2440945 -3430.0417323 -6282.0078740 47.2440945 -3426.8933071 -6286.9842520 47.2440945 -3424.5732283 -6292.2874016 47.2440945 -3423.1515748 -3986.7913386 47.2440945 -2517.7933071 -3981.4881890 47.2440945 -2516.3724409 -3976.5118110 47.2440945 -2514.0519685 -3972.0157480 47.2440945 -2510.9031496 -3968.1338583 47.2440945 -2507.0208661 -3964.9842520 47.2440945 -2502.5236220 -3962.6653543 47.2440945 -2497.5480315 -3961.2440945 47.2440945 -2492.2448819 -3960.7637795 47.2440945 -2486.7755906 -3961.2440945 47.2440945 -2481.3062992 -3962.6653543 47.2440945 -2476.0031496 -3964.9842520 47.2440945 -2471.0275591 -3967.8188976 47.2440945 -2466.9811024 -3968.1338583 47.2440945 -2466.5303150 -3972.0157480 47.2440945 -2462.6484252 -3976.5118110 47.2440945 -2459.4992126 -3981.4881890 47.2440945 -2457.1791339 -3986.7913386 47.2440945 -2455.7582677 -7587.2322835 47.2440945 -4446.7047244 -7387.5511811 47.2440945 -4444.5472441 -7586.2165354 47.2440945 -4445.2519685 -7581.1299213 47.2440945 -4437.9921260 -7395.3976378 47.2440945 -4443.8582677 -7428.5433071 47.2440945 -4434.9803150 -7576.6377953 47.2440945 -4428.3503937 -7459.6417323 47.2440945 -4420.4763780 -7573.8818898 47.2440945 -4418.0787402 -7487.7480315 47.2440945 -4400.7952756 -7572.9566929 47.2440945 -4407.4803150 -7573.8818898 47.2440945 -4396.8818898 -7495.6062992 47.2440945 -4392.9409449 -7576.6377953 47.2440945 -4386.6102362 -7512.0118110 47.2440945 -4376.5314961 -7581.1299213 47.2440945 -4376.9685039 -7587.2322835 47.2440945 -4368.2559055 -7531.6929134 47.2440945 -4348.4251969 -7594.7559055 47.2440945 -4360.7322835 -7603.4685039 47.2440945 -4354.6338583 -7613.1102362 47.2440945 -4350.1377953 -7623.3818898 47.2440945 -4347.3818898 -7546.1968504 47.2440945 -4317.3267717 -7729.8110236 47.2440945 -4255.9606299 -7555.0748031 47.2440945 -4284.1811024 -7558.0669291 47.2440945 -4250.0000000 -7725.7874016 47.2440945 -4253.1692913 -7722.2795276 47.2440945 -4249.7519685 -7555.0748031 47.2440945 -4215.8188976 -7719.3858268 47.2440945 -4245.8031496 -7717.1850394 47.2440945 -4241.4291339 -7715.7401575 47.2440945 -4236.7519685 -7715.6574803 47.2440945 -4236.1614173 -7715.0826772 47.2440945 -4231.8976378 -7710.1181102 47.2440945 -4191.1771654 -7546.1968504 47.2440945 -4182.6732283 -7709.0629921 47.2440945 -4182.5354331 -7531.6929134 47.2440945 -4151.5748031 -7696.1929134 47.2440945 -4134.5000000 -7512.0118110 47.2440945 -4123.4685039 -7692.7874016 47.2440945 -4126.4921260 -7676.7244094 47.2440945 -4088.7440945 -7500.4645669 47.2440945 -4111.9173228 -7487.7480315 47.2440945 -4099.2047244 -7459.6417323 47.2440945 -4079.5236220 -7674.8661417 47.2440945 -4084.2125984 -7673.7795276 47.2440945 -4079.4370079 -7428.5433071 47.2440945 -4065.0196850 -7673.5000000 47.2440945 -4074.5511811 -7674.0314961 47.2440945 -4069.6811024 -7675.3582677 47.2440945 -4064.9685039 -7395.3976378 47.2440945 -4056.1417323 -7677.4448819 47.2440945 -4060.5393701 -7529.2913386 47.2440945 -4037.3307087 -7539.5669291 47.2440945 -4034.5787402 -7549.2086614 47.2440945 -4030.0826772 -7761.2322835 47.2440945 -3915.4220472 -7557.9212598 47.2440945 -4023.9842520 -7565.4409449 47.2440945 -4016.4606299 -7571.5433071 47.2440945 -4007.7480315 -7601.0708661 47.2440945 -3956.6062992 -7605.5669291 47.2440945 -3946.9645669 -7608.3188976 47.2440945 -3936.6897638 -7609.2480315 47.2440945 -3926.0933071 -7608.3188976 47.2440945 -3915.4968504 -7605.5669291 47.2440945 -3905.2216535 -7769.8897638 47.2440945 -3900.4228346 -7601.0708661 47.2440945 -3895.5811024 -7772.8425197 47.2440945 -3896.2070866 -7776.4803150 47.2440945 -3892.5673228 -7594.9685039 47.2440945 -3886.8677165 -7780.6968504 47.2440945 -3889.6149606 -7785.3622047 47.2440945 -3887.4397638 -7790.3346457 47.2440945 -3886.1074803 -7587.4488189 47.2440945 -3879.3464567 -7795.4606299 47.2440945 -3885.6590551 -7762.8346457 47.2440945 -4818.6929134 -7292.6614173 47.2440945 -4823.5314961 -7297.2165354 47.2440945 -4822.6850394 -7645.4251969 47.2440945 -4729.3818898 -7779.1259843 47.2440945 -4809.8503937 -7793.8267717 47.2440945 -4798.5669291 -7806.5866142 47.2440945 -4785.1259843 -7817.0826772 47.2440945 -4769.8503937 -7702.9842520 47.2440945 -4713.9606299 -7881.4645669 47.2440945 -4658.3346457 -7707.3503937 47.2440945 -4712.4133858 -7709.4133858 47.2440945 -4711.2952756 -7711.4212598 47.2440945 -4710.2047244 -7715.0984252 47.2440945 -4707.3818898 -7718.2874016 47.2440945 -4704.0236220 -7720.9133858 47.2440945 -4700.2047244 -7721.6023622 47.2440945 -4699.0118110 -7723.7755906 47.2440945 -4694.3464567 -7725.1102362 47.2440945 -4689.3740157 -7725.5551181 47.2440945 -4684.2480315 -7725.1102362 47.2440945 -4679.1181102 -7724.9330709 47.2440945 -4678.4685039 -7723.7755906 47.2440945 -4674.1456693 -7721.6023622 47.2440945 -4669.4842520 -7718.6496063 47.2440945 -4665.2677165 -7715.0078740 47.2440945 -4661.6259843 -7710.7913386 47.2440945 -4658.6732283 -7550.6771654 47.2440945 -4566.2322835 -7899.9212598 47.2440945 -4626.3700787 -8039.3543307 47.2440945 -4384.8661417 -7546.2480315 47.2440945 -4564.1417323 -7541.5314961 47.2440945 -4562.8149606 -7705.9960630 47.2440945 -4494.3503937 -7695.7204724 47.2440945 -4497.1062992 -7261.0787402 47.2440945 -4543.6338583 -7263.8307087 47.2440945 -4533.3622047 -7264.7598425 47.2440945 -4522.7637795 -7263.8307087 47.2440945 -4512.1653543 -7715.6338583 47.2440945 -4489.8543307 -7724.3464567 47.2440945 -4483.7559055 -7731.8700787 47.2440945 -4476.2322835 -7737.9724409 47.2440945 -4467.5196850 -7742.4645669 47.2440945 -4457.8779528 -7745.2204724 47.2440945 -4447.6062992 -7746.1456693 47.2440945 -4437.0078740 -7745.2204724 47.2440945 -4426.4094488 -7742.4645669 47.2440945 -4416.1377953 -7737.9724409 47.2440945 -4406.4960630 -7732.8858268 47.2440945 -4399.2362205 -7731.8700787 47.2440945 -4397.7834646 -7724.3464567 47.2440945 -4390.2598425 -7715.6338583 47.2440945 -4384.1614173 -8040.7007874 47.2440945 -4382.0393701 -8047.3307087 47.2440945 -4368.1377953 -8052.5944882 47.2440945 -4350.3700787 -7909.8188976 47.2440945 -4351.9133858 -7914.7913386 47.2440945 -4350.5826772 -7919.4527559 47.2440945 -4348.4055118 -8055.0157480 47.2440945 -4331.9921260 -7923.6692913 47.2440945 -4345.4527559 -7927.3110236 47.2440945 -4341.8149606 -7930.2637795 47.2440945 -4337.5984252 -7930.9527559 47.2440945 -4336.4055118 -7932.9448819 47.2440945 -4332.2204724 -7934.2637795 47.2440945 -4327.7795276 -8054.5314961 47.2440945 -4313.4645669 -7934.8661417 47.2440945 -4323.1850394 -7934.8070866 47.2440945 -4320.9015748 -7934.7440945 47.2440945 -4318.5551181 -7933.9015748 47.2440945 -4314.0000000 -7918.4763780 47.2440945 -4256.4409449 -8051.1535433 47.2440945 -4295.2440945 -8002.4015748 47.2440945 -4113.3031496 -7857.7480315 47.2440945 -4029.7874016 -8001.9960630 47.2440945 -4111.7834646 -7942.5433071 47.2440945 -3889.9102362 -7839.1574803 47.2440945 -3960.4133858 -7825.1771654 47.2440945 -3908.2334646 -7823.6299213 47.2440945 -3903.8657480 -7822.5118110 47.2440945 -3901.8027559 -7821.4173228 47.2440945 -3899.7940945 -7818.5984252 47.2440945 -3896.1177165 -7815.2362205 47.2440945 -3892.9283465 -7811.4173228 47.2440945 -3890.3039370 -7810.2244094 47.2440945 -3889.6149606 -7936.0984252 47.2440945 -3865.8503937 -7805.5590551 47.2440945 -3887.4397638 -7800.5905512 47.2440945 -3886.1074803 -7578.7362205 47.2440945 -3873.2448819 -7569.0944882 47.2440945 -3868.7500000 -7558.8188976 47.2440945 -3865.9960630 -7548.2244094 47.2440945 -3865.0692913 -7929.9094488 47.2440945 -3848.3795276 -7080.9015748 47.2440945 -3754.0716535 -6145.7480315 47.2440945 -3757.9507874 -6151.0472441 47.2440945 -3756.5303150 -6156.0236220 47.2440945 -3754.2102362 -6160.5236220 47.2440945 -3751.0606299 -7080.3700787 47.2440945 -3749.3129921 -6164.4055118 47.2440945 -3747.1783465 -7080.6141732 47.2440945 -3744.5307087 -6167.5551181 47.2440945 -3742.6811024 -7081.6259843 47.2440945 -3739.8511811 -6169.8740157 47.2440945 -3737.7055118 -7083.3858268 47.2440945 -3735.3964567 -6171.2952756 47.2440945 -3732.4023622 -7085.8385827 47.2440945 -3731.2854331 -6171.7716535 47.2440945 -3726.9330709 -7088.9251969 47.2440945 -3727.6236220 -7092.5629921 47.2440945 -3724.5098425 -6171.2952756 47.2440945 -3721.4637795 -7096.6535433 47.2440945 -3722.0244094 -6169.8740157 47.2440945 -3716.1610236 -6167.5551181 47.2440945 -3711.1850394 -6164.4055118 47.2440945 -3706.6877953 -6160.5236220 47.2440945 -3702.8059055 -6156.0236220 47.2440945 -3699.6570866 -6151.0472441 47.2440945 -3697.3370079 -6145.7480315 47.2440945 -3695.9157480 -7355.7559055 47.2440945 -3659.4740157 -6957.9291339 47.2440945 -3659.1047244 -7200.8464567 47.2440945 -3932.0866142 -7495.3740157 47.2440945 -3895.5811024 -7205.6496063 47.2440945 -3931.1562992 -7210.2362205 47.2440945 -3929.4448819 -7252.9606299 47.2440945 -3912.6118110 -7297.5039370 47.2440945 -3901.4444882 -7343.1141732 47.2440945 -3896.1318898 -7347.9685039 47.2440945 -3895.4771654 -7501.4763780 47.2440945 -3886.8677165 -7352.6456693 47.2440945 -3894.0303150 -7357.0196850 47.2440945 -3891.8295276 -7360.9685039 47.2440945 -3888.9358268 -7364.3858268 47.2440945 -3885.4295276 -7509.0000000 47.2440945 -3879.3464567 -7367.1771654 47.2440945 -3881.4066929 -7425.5708661 47.2440945 -3780.2681102 -7517.7125984 47.2440945 -3873.2448819 -7527.3503937 47.2440945 -3868.7500000 -7537.6259843 47.2440945 -3865.9960630 -7921.0669291 47.2440945 -3832.0917323 -7909.7834646 47.2440945 -3817.3877953 -7896.3385827 47.2440945 -3804.6303150 -7881.0669291 47.2440945 -3794.1326772 -7466.4685039 47.2440945 -3709.4275591 -7468.5236220 47.2440945 -3705.0917323 -7469.8464567 47.2440945 -3700.4807087 -7470.4055118 47.2440945 -3695.7157480 -7475.0275591 47.2440945 -3559.7062992 -7470.1889764 47.2440945 -3690.9232283 -7469.1968504 47.2440945 -3686.2299213 -7467.4566929 47.2440945 -3681.7578740 -7465.0157480 47.2440945 -3677.6279528 -7461.9370079 47.2440945 -3673.9472441 -7458.3070866 47.2440945 -3670.8137795 -7454.2125984 47.2440945 -3668.3090551 -7449.7716535 47.2440945 -3666.5003937 -7445.0905512 47.2440945 -3665.4362205 -6975.6062992 47.2440945 -3653.4106299 -6992.1692913 47.2440945 -3645.0153543 -7093.3661417 47.2440945 -3593.9070866 -7201.4212598 47.2440945 -3559.5897638 -7459.7834646 47.2440945 -3552.3094488 -7313.5629921 47.2440945 -3542.9433071 -7443.6377953 47.2440945 -3547.1688976 -7426.9251969 47.2440945 -3544.3913386 - - - - - - - - - - -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.4685765 0.0000001 0.8834229 -0.5336469 -0.0000000 0.8457074 -0.5336469 -0.0000000 0.8457074 -0.4685765 0.0000001 0.8834229 -0.3709194 0.0000000 0.9286651 -0.3709194 0.0000000 0.9286651 -0.2342666 0.0000000 0.9721724 -0.2342666 0.0000000 0.9721724 -0.0886150 -0.0000001 0.9960660 -0.0886150 -0.0000001 0.9960660 0.0672455 -0.0000001 0.9977365 0.0672455 -0.0000001 0.9977365 0.2254850 -0.0000001 0.9742466 0.2254850 -0.0000001 0.9742466 0.3779613 -0.0000001 0.9258214 0.3779613 -0.0000001 0.9258214 0.4514583 0.0000000 0.8922922 0.4514583 0.0000000 0.8922922 0.3805348 -0.0000000 0.9247666 0.3805348 -0.0000000 0.9247666 0.2308275 -0.0000000 0.9729947 0.2308275 -0.0000000 0.9729947 0.0754557 0.0000000 0.9971492 0.0754557 0.0000000 0.9971492 -0.0817933 -0.0000000 0.9966493 -0.0817933 -0.0000000 0.9966493 -0.2369965 -0.0000000 0.9715105 -0.2369965 -0.0000000 0.9715105 -0.3863498 -0.0000000 0.9223523 -0.3863498 -0.0000000 0.9223523 -0.4922985 0.0000003 0.8704265 -0.4922985 0.0000003 0.8704265 -0.5627571 0.0000003 0.8266223 -0.5627571 0.0000003 0.8266223 -0.6658423 -0.0000000 0.7460925 -0.6658423 -0.0000000 0.7460925 -0.7852668 0.0000000 0.6191575 -0.7852668 0.0000000 0.6191575 -0.8593627 -0.0000005 0.5113666 -0.8593627 -0.0000005 0.5113666 -0.7177982 -0.0000005 0.6962512 -0.7177982 -0.0000005 0.6962512 0.0000002 0.0000004 1.0000000 0.0000002 0.0000004 1.0000000 0.7071067 0.0000003 0.7071069 0.7071067 0.0000003 0.7071069 0.9659258 -0.0000001 0.2588191 0.9659258 -0.0000001 0.2588191 0.8660254 -0.0000000 -0.4999999 0.8660254 -0.0000000 -0.4999999 0.2440722 -0.0000002 -0.9697571 0.2440722 -0.0000002 -0.9697571 0.0131566 -0.0000002 -0.9999134 0.0131566 -0.0000002 -0.9999134 0.1435557 -0.0000000 -0.9896422 0.1435557 -0.0000000 -0.9896422 0.3132293 0.0000000 -0.9496775 0.3132293 0.0000000 -0.9496775 0.4345103 0.0000002 -0.9006669 0.4345103 0.0000002 -0.9006669 0.5077208 0.0000002 -0.8615217 0.5077208 0.0000002 -0.8615217 0.6056276 0.0000000 -0.7957482 0.6056276 0.0000000 -0.7957482 0.7228300 0.0000000 -0.6910259 0.7228300 0.0000000 -0.6910259 0.8222172 0.0000000 -0.5691738 0.8222172 0.0000000 -0.5691738 0.9012743 0.0000000 -0.4332489 0.9012743 0.0000000 -0.4332489 0.9580680 0.0000000 -0.2865409 0.9580680 0.0000000 -0.2865409 0.9911437 0.0000000 -0.1327935 0.9911437 0.0000000 -0.1327935 0.9984755 0.0000000 -0.0551971 0.9984755 0.0000000 -0.0551971 0.9907651 0.0000000 -0.1355896 0.9907651 0.0000000 -0.1355896 0.9564669 -0.0000000 -0.2918409 0.9564669 -0.0000000 -0.2918409 0.8976850 -0.0000000 -0.4406377 0.8976850 -0.0000000 -0.4406377 0.8183494 -0.0000000 -0.5747211 0.8183494 -0.0000000 -0.5747211 0.7248236 0.0000000 -0.6889345 0.7248236 0.0000000 -0.6889345 0.6187776 0.0000000 -0.7855662 0.6187776 0.0000000 -0.7855662 0.5307967 -0.0000002 -0.8474992 0.5307967 -0.0000002 -0.8474992 0.4999896 -0.0000002 -0.8660314 0.4999896 -0.0000002 -0.8660314 0.4655571 0.0000000 -0.8850179 0.4655571 0.0000000 -0.8850179 0.4304190 0.0000000 -0.9026292 0.3584333 0.0000000 -0.9335553 0.3584333 0.0000000 -0.9335553 0.4304190 0.0000000 -0.9026292 0.2079866 0.0000000 -0.9781317 0.2079866 0.0000000 -0.9781317 0.0523160 0.0000000 -0.9986306 0.0523160 0.0000000 -0.9986306 -0.1045109 0.0000000 -0.9945237 -0.1045109 0.0000000 -0.9945237 -0.2207035 -0.0000005 -0.9753410 -0.2207035 -0.0000005 -0.9753410 -0.2966151 -0.0000005 -0.9549971 -0.2966151 -0.0000005 -0.9549971 -0.4067436 0.0000000 -0.9135424 -0.4067436 0.0000000 -0.9135424 -0.5446369 0.0000000 -0.8386720 -0.5446369 0.0000000 -0.8386720 -0.6691101 0.0000000 -0.7431633 -0.6691101 0.0000000 -0.7431633 -0.7771248 0.0000006 -0.6293466 -0.7771248 0.0000006 -0.6293466 -0.8457637 0.0000010 -0.5335576 -0.8457637 0.0000010 -0.5335576 -0.8660269 0.0000006 -0.4999974 -0.8660269 0.0000006 -0.4999974 -0.8850101 0.0000002 -0.4655719 -0.8660226 0.0000003 -0.5000049 -0.8850101 0.0000002 -0.4655719 -0.8660226 0.0000003 -0.5000049 -0.9335918 -0.0000000 -0.3583382 -0.9026292 -0.0000000 -0.4304190 -0.9335918 -0.0000000 -0.3583382 -0.9026292 -0.0000000 -0.4304190 -0.9781338 -0.0000000 -0.2079764 -0.9781338 -0.0000000 -0.2079764 -0.9986258 0.0000000 -0.0524074 -0.9986258 0.0000000 -0.0524074 -0.9945217 0.0000000 0.1045301 -0.9945217 0.0000000 0.1045301 -0.9753359 0.0000000 0.2207256 -0.9753359 0.0000000 0.2207256 -0.9660590 0.0000000 0.2583214 -0.9660590 0.0000000 0.2583214 -0.9660586 0.0000007 0.2583231 -0.9660586 0.0000007 0.2583231 -0.9659344 0.0000007 0.2587872 -0.9659344 0.0000007 0.2587872 -0.9550143 0.0000000 0.2965596 -0.9550143 0.0000000 0.2965596 -0.9135325 0.0000000 0.4067658 -0.9135325 0.0000000 0.4067658 -0.8386753 0.0000000 0.5446317 -0.8386753 0.0000000 0.5446317 -0.7431181 -0.0000000 0.6691603 -0.7431181 -0.0000000 0.6691603 -0.6293318 -0.0000001 0.7771368 -0.6293318 -0.0000001 0.7771368 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 6 5 7 6 7 8 9 10 11 10 9 12 12 9 13 13 9 14 14 9 15 15 9 16 15 16 17 17 16 18 18 16 19 18 19 20 18 20 21 21 20 22 21 22 23 21 23 24 21 24 25 21 25 26 21 26 27 21 27 28 21 28 29 21 29 30 21 30 31 21 31 32 21 32 33 21 33 34 21 34 35 21 35 36 21 36 37 21 37 38 21 38 39 21 39 40 40 39 41 41 39 42 41 42 43 43 42 44 44 42 45 45 42 46 45 46 47 47 46 48 48 46 49 48 49 50 48 50 51 48 51 52 52 51 53 52 53 54 54 53 55 54 55 56 54 56 57 57 56 58 58 56 59 59 56 60 60 56 61 61 56 62 62 56 63 63 56 64 64 56 65 66 67 68 67 66 69 67 69 70 67 70 71 67 71 72 67 72 73 67 73 74 67 74 75 75 74 76 75 76 77 77 76 78 79 80 81 80 79 82 82 79 83 83 79 84 84 79 85 84 85 86 84 86 87 84 87 88 84 88 89 89 88 90 89 90 91 91 90 92 92 90 93 93 90 94 94 90 95 95 90 96 96 90 97 97 90 98 98 90 99 99 90 100 100 90 101 101 90 102 102 90 103 103 90 104 104 90 105 105 90 106 106 90 107 107 90 108 108 90 109 108 109 110 108 110 111 111 110 112 112 110 113 113 110 114 113 114 115 113 115 116 116 115 117 117 115 118 117 118 119 119 118 120 120 118 121 121 118 122 114 110 123 123 110 124 124 110 125 125 110 126 126 110 127 127 110 128 128 110 129 129 110 130 130 110 131 131 110 132 132 110 133 133 110 134 134 110 135 135 110 136 136 110 137 136 137 2 2 137 138 2 138 0 0 138 139 0 139 140 140 139 141 141 139 142 142 139 143 142 143 144 144 143 145 145 143 146 146 143 147 147 143 148 148 143 149 149 143 150 149 150 151 151 150 152 152 150 153 153 150 154 154 150 155 155 150 156 155 156 157 155 157 158 158 157 159 158 159 160 158 160 161 161 160 162 162 160 163 163 160 164 164 160 165 165 160 166 166 160 167 167 160 168 168 160 169 169 160 170 169 170 171 171 170 172 172 170 173 173 170 174 174 170 175 175 170 176 176 170 177 177 170 178 178 170 179 180 181 182 181 180 183 183 180 184 184 180 185 185 180 186 186 180 187 186 187 188 188 187 189 188 189 190 190 189 191 190 191 192 192 191 193 192 193 194 194 193 195 194 195 196 196 195 197 196 197 198 196 198 199 199 198 200 199 200 201 199 201 202 202 201 203 203 201 204 204 201 205 205 201 206 206 201 207 207 201 208 208 201 209 210 211 212 211 210 213 211 213 214 214 213 215 215 213 216 216 213 217 217 213 218 218 213 219 219 213 220 219 220 221 221 220 222 222 220 223 223 220 224 224 220 225 224 225 226 226 225 227 227 225 228 227 228 229 227 229 230 227 230 178 227 178 179 227 179 231 227 231 232 227 232 233 227 233 234 227 234 235 235 234 236 236 234 237 237 234 238 238 234 239 238 239 240 240 239 241 241 239 242 242 239 243 243 239 244 244 239 245 245 239 246 246 239 247 247 239 248 248 239 249 249 239 250 250 239 251 251 239 252 252 239 253 253 239 254 254 239 255 254 255 256 256 255 257 256 257 258 249 259 260 259 249 250 261 262 263 262 261 264 264 261 265 265 261 266 266 261 267 266 267 268 266 268 269 266 269 270 266 270 271 266 271 272 266 272 273 266 273 274 262 264 275 262 275 276 262 276 277 262 277 278 262 278 279 262 279 280 262 280 281 262 281 282 262 282 283 262 283 284 262 284 285 262 285 286 262 286 287 262 287 288 262 288 289 262 289 290 291 266 274 266 291 292 292 291 293 293 291 294 293 294 295 295 294 296 296 294 297 296 297 298 298 297 299 298 299 300 300 299 301 300 301 302 300 302 303 303 302 304 303 304 305 303 305 306 306 305 307 306 307 308 306 308 309 310 311 312 311 310 313 311 313 314 311 314 315 311 315 316 316 315 317 316 317 318 318 317 319 318 319 320 318 320 321 319 317 322 319 322 323 319 323 324 319 324 325 319 325 326 319 326 327 319 327 328 319 328 329 319 329 330 319 330 331 319 331 332 319 332 333 319 333 334 319 334 335 319 335 336 319 336 78 319 78 337 337 78 76 337 76 338 337 338 339 337 339 340 340 339 212 212 339 341 212 341 342 212 342 210 337 340 343 337 343 344 337 344 345 337 345 346 337 346 347 337 347 181 181 347 348 181 348 182 321 320 349 321 349 350 321 350 351 321 351 352 321 352 353 321 353 354 321 354 355 321 355 356 321 356 357 321 357 358 321 358 359 321 359 360 321 360 361 321 361 362 321 362 363 321 363 209 321 209 364 364 209 365 365 209 366 366 209 201 366 201 260 366 260 259 364 365 367 364 367 368 364 368 369 369 368 370 321 364 371 321 371 372 321 372 373 321 373 374 321 374 375 321 375 376 321 376 377 321 377 378 321 378 379 321 379 380 321 380 381 321 381 382 321 382 383 321 383 384 321 384 385 321 385 386 321 386 387 387 386 388 321 387 389 321 389 390 321 390 391 321 391 392 321 392 393 321 393 394 321 394 395 321 395 396 321 396 397 321 397 398 321 398 399 321 399 400 321 400 401 321 401 402 321 402 403 321 403 404 321 404 405 321 405 406 407 36 35 36 407 408 408 407 409 408 409 410 408 410 411 411 410 412 412 410 413 412 413 414 414 413 415 414 415 416 416 415 417 416 417 418 416 418 419 419 418 420 419 420 421 421 420 422 421 422 423 421 423 424 424 423 425 424 425 426 424 426 427 424 427 428 424 428 429 429 428 8 429 8 7 429 7 430 429 430 431 431 430 432 432 430 433 432 433 434 432 434 435 435 434 436 435 436 437 435 437 438 435 438 439 435 439 440 435 440 441 435 441 442 442 441 443 442 443 444 444 443 445 444 445 446 446 445 447 446 447 448 446 448 449 449 448 450 450 448 451 451 448 452 451 452 453 451 453 454 454 453 455 454 455 456 454 456 457 454 457 458 458 457 459 458 459 460 460 459 461 461 459 462 462 459 463 458 460 464 464 460 66 464 66 465 465 66 68 462 463 466 466 463 467 467 463 468 468 463 469 469 463 470 470 463 471 471 463 472 472 463 473 473 463 474 474 463 475 474 475 476 476 475 477 476 477 478 476 478 479 479 478 480 479 480 481 479 481 482 479 482 174 174 482 173 483 484 485 484 483 486 486 483 487 487 483 488 488 483 489 368 490 370 490 368 491 491 368 492 492 368 493 493 368 494 494 368 495 495 368 496 496 368 497 497 368 498 498 368 499 499 368 500 500 368 501 501 368 502 502 368 503 503 368 504 504 368 505 504 505 506 506 505 507 507 505 386 386 505 508 386 508 509 386 509 510 386 510 511 386 511 512 386 512 513 386 513 514 386 514 515 386 515 516 386 516 517 386 517 518 386 518 519 386 519 520 386 520 521 386 521 388 516 515 522 522 515 523 523 515 524 524 515 525 525 515 526 526 515 527 527 515 528 528 515 529 528 529 530 530 529 531 531 529 532 532 529 533 533 529 406 406 529 534 406 534 535 406 535 536 406 536 537 406 537 321 321 537 538 538 537 539 539 537 261 261 537 267 508 505 540 540 505 541 541 505 542 542 505 543 543 505 309 309 505 544 309 544 545 309 545 546 309 546 547 309 547 306 306 547 548 548 547 549 549 547 550 549 550 551 551 550 552 552 550 553 553 550 554 554 550 555 555 550 556 556 550 557 557 550 290 290 550 558 290 558 262 262 558 559 544 505 560 560 505 561 561 505 562 561 562 563 562 505 564 564 505 565 565 505 566 566 505 567 567 505 568 568 505 569 569 505 570 570 505 571 571 505 572 572 505 573 573 505 574 574 505 575 575 505 576 576 505 577 577 505 578 578 505 579 579 505 580 580 505 581 581 505 582 582 505 583 582 583 584 584 583 585 585 583 586 586 583 587 586 587 588 588 587 589 589 587 590 590 587 591 591 587 592 592 587 593 593 587 594 594 587 595 594 595 596 596 595 597 597 595 598 598 595 599 599 595 600 600 595 601 601 595 602 602 595 603 603 595 604 597 598 605 605 598 606 606 598 607 607 598 608 607 608 609 609 608 610 610 608 611 611 608 612 612 608 613 613 608 614 614 608 615 615 608 616 616 608 617 603 604 618 618 604 619 619 604 620 620 604 621 621 604 622 622 604 623 623 604 624 624 604 625 625 604 626 626 604 627 627 604 628 628 604 629 262 630 631 630 262 559 631 630 632 631 632 633 631 633 634 631 634 635 631 635 636 631 636 637 631 637 638 631 638 639 631 639 483 631 483 485 631 485 640 631 640 641 631 641 642 631 642 643 631 643 644 631 644 645 631 645 646 631 646 647 631 647 648 631 648 649 631 649 650 631 650 651 631 651 652 631 652 653 631 653 654 631 654 655 631 655 656 631 656 657 631 657 658 631 658 659 631 659 660 631 660 661 653 652 662 653 662 663 663 662 664 663 664 665 663 665 666 663 666 590 590 666 667 590 667 668 590 668 669 590 669 670 590 670 671 590 671 589 661 660 672 661 672 673 661 673 674 661 674 675 661 675 676 661 676 677 661 677 678 661 678 679 661 679 617 661 617 680 680 617 681 681 617 608 661 680 682 661 682 683 661 683 684 661 684 685 661 685 686 661 686 687 661 687 688 661 688 689 661 689 690 661 690 691 661 691 692 661 692 693 661 693 694 661 694 695 661 695 696 661 696 629 661 629 604 661 604 697 698 577 699 577 698 700 577 700 701 577 701 576 702 703 704 703 702 705 703 705 706 706 705 81 706 81 707 707 81 708 708 81 709 709 81 80 709 80 710 709 710 711 711 710 712 711 712 713 711 713 714 711 714 715 711 715 716 711 716 717 711 717 718 711 718 719 711 719 720 711 720 721 711 721 722 711 722 723 711 723 724 711 724 725 725 724 726 726 724 727 726 727 728 726 728 729 727 724 730 730 724 731 731 724 732 732 724 733 733 724 734 733 734 735 733 735 736 736 735 737 736 737 738 736 738 739 736 739 740 736 740 116 116 740 741 116 741 742 116 742 743 116 743 744 116 744 745 116 745 746 116 746 747 116 747 748 116 748 113 118 749 122 749 118 750 749 750 751 749 751 752 749 752 753 749 753 754 754 753 34 754 34 755 755 34 756 756 34 757 757 34 758 758 34 33 729 759 760 759 729 761 761 729 728 761 728 762 761 762 763 761 763 10 10 763 11 760 759 764 760 764 765 760 765 766 760 766 767 760 767 768 760 768 769 769 768 770 769 770 771 769 771 772 772 771 773 772 773 774 774 773 775 774 775 776 774 776 777 774 777 778 774 778 779 774 779 780 774 780 781 774 781 782 774 782 783 774 783 784 774 784 65 774 65 56 774 56 785 774 785 786 786 785 787 786 787 788 788 787 789 788 789 790 790 789 791 790 791 312 312 791 310 310 791 792 792 791 793 793 791 794 793 794 795 795 794 796 796 794 797 797 794 798 798 794 799 798 799 800 800 799 801 801 799 802 802 799 803 802 803 804 804 803 805 805 803 806 805 806 807 807 806 808 807 808 809 809 808 810 809 810 464 809 464 465 811 812 813 812 811 814 815 814 811 814 815 816 817 816 815 816 817 818 819 818 817 818 819 820 821 820 819 820 821 822 823 822 821 822 823 824 825 824 823 824 825 826 827 826 825 826 827 828 829 828 827 828 829 830 831 830 829 830 831 832 833 832 831 832 833 834 835 834 833 834 835 836 837 836 835 836 837 838 839 838 837 838 839 840 841 840 839 840 841 842 843 842 841 842 843 844 845 844 843 844 845 846 847 845 848 845 847 846 849 848 850 848 849 847 851 849 850 849 851 852 853 852 851 852 853 854 855 854 853 854 855 856 857 855 858 855 857 856 859 858 860 858 859 857 859 861 862 861 859 860 862 863 864 863 862 861 864 865 866 865 864 863 866 867 868 867 866 865 868 869 870 869 868 867 870 871 872 871 870 869 872 873 874 873 872 871 874 875 876 875 874 873 877 876 875 876 877 878 879 877 880 877 879 878 881 880 882 880 881 879 883 881 882 881 883 884 885 883 886 883 885 884 887 886 888 886 887 885 889 888 890 888 889 887 891 890 892 890 891 889 893 892 894 892 893 891 895 893 894 893 895 896 896 897 898 897 896 895 898 899 900 899 898 897 900 901 902 901 900 899 902 903 904 903 902 901 905 906 907 906 905 908 908 905 904 908 904 903 907 909 910 909 907 906 910 911 912 911 910 909 912 913 914 913 912 911 914 915 916 915 914 913 916 917 918 917 916 915 918 919 920 919 918 917 920 921 922 921 920 919 922 923 924 923 922 921 925 923 926 923 925 924 927 926 928 926 927 925 929 928 930 928 929 927 931 930 932 930 931 929 929 931 933 929 933 934 935 931 936 931 935 937 931 937 933 933 937 938 939 937 935 937 939 940 941 939 942 939 941 940 943 941 942 941 943 944 945 944 943 944 945 946 947 945 948 945 947 946 949 947 948 947 949 950 951 949 952 949 951 950 953 952 954 952 953 951 955 954 956 954 955 953 957 956 958 956 957 955 959 958 960 958 959 957 961 959 960 959 961 962 813 962 961 962 813 812 963 964 965 964 963 966 966 963 967 965 964 968 968 964 969 969 964 970 969 970 971 966 967 972 972 967 973 973 967 974 974 967 975 975 967 976 976 967 977 976 977 978 978 977 979 979 977 980 979 980 981 981 980 982 981 982 983 983 982 984 984 982 985 985 982 986 986 982 987 987 982 988 988 982 989 989 982 990 990 982 991 991 982 992 992 982 993 993 982 994 994 982 995 995 982 996 995 996 997 997 996 998 997 998 999 999 998 1000 999 1000 1001 1001 1000 1002 1001 1002 1003 1001 1003 1004 1001 1004 1005 1001 1005 1006 1006 1005 1007 1006 1007 1008 1006 1008 1009 1006 1009 1010 1006 1010 1011 1011 1010 1012 1011 1012 1013 1011 1013 1014 1011 1014 1015 1015 1014 1016 1015 1016 1017 1015 1017 1018 1018 1017 1019 1018 1019 1020 1020 1019 1021 1020 1021 1022 1022 1021 1023 1023 1021 1024 1025 1026 1027 1026 1025 1028 1028 1025 1029 1029 1025 1030 1030 1025 1031 1031 1025 1032 1032 1025 1033 1033 1025 1034 1033 1034 1035 1035 1034 1036 1035 1036 1037 970 1038 971 1038 970 1039 1038 1039 1040 1038 1040 1041 1038 1041 1042 1038 1042 1043 1043 1042 1044 1043 1044 1045 1043 1045 1046 1046 1045 1047 1047 1045 1048 1047 1048 1049 1049 1048 1050 1050 1048 1051 1051 1048 1052 1052 1048 1053 1053 1048 1054 1054 1048 1055 1055 1048 1056 1056 1048 1057 1057 1048 1058 1058 1048 1059 1059 1048 1060 1060 1048 1061 1061 1048 1062 1062 1048 1063 1063 1048 1064 1064 1048 1065 1065 1048 1066 1066 1048 1067 1066 1067 1068 1066 1068 1069 1069 1068 1070 1069 1070 1071 1069 1071 1072 1069 1072 1073 1073 1072 1074 1073 1074 1075 1073 1075 1076 1076 1075 1077 1077 1075 1078 1078 1075 1079 1078 1079 1080 1080 1079 1081 1080 1081 1082 1082 1081 994 994 1081 1083 994 1083 1084 994 1084 1085 994 1085 1086 994 1086 1087 994 1087 1088 994 1088 1089 994 1089 1090 994 1090 993 1091 1092 1093 1092 1091 1094 1094 1091 1095 1095 1091 1096 1096 1091 1097 1096 1097 1098 1098 1097 1099 1100 1101 1102 1101 1100 1103 1103 1100 1104 1103 1104 1105 1105 1104 1106 1105 1106 1107 1105 1107 1108 1105 1108 1109 1109 1108 1110 1110 1108 1111 1110 1111 1112 1112 1111 1113 1113 1111 1114 1114 1111 1115 1115 1111 1116 1116 1111 1117 1117 1111 1118 1118 1111 1119 1119 1111 1120 1120 1111 1121 1121 1111 1122 1122 1111 1123 1123 1111 1124 1124 1111 1125 1124 1125 1126 1124 1126 1127 1127 1126 965 965 1126 963 1124 1127 1128 1124 1128 1129 1124 1129 1130 1124 1130 1131 1124 1131 1132 1132 1131 1133 1133 1131 1134 1133 1134 1135 1135 1134 1136 1136 1134 1137 1137 1134 1138 1138 1134 1139 1138 1139 1140 1140 1139 1141 1141 1139 1142 1142 1139 1143 1143 1139 1144 1144 1139 1145 1145 1139 1146 1146 1139 1147 1147 1139 1148 1149 1150 1151 1150 1149 1152 1152 1149 1153 1153 1149 1154 1154 1149 1155 1155 1149 1156 1155 1156 1061 1061 1156 1157 1061 1157 1158 1061 1158 1159 1061 1159 1160 1061 1160 1060 1161 1162 1163 1162 1161 1164 1162 1164 1165 1162 1165 1166 1166 1165 1167 1166 1167 1168 1166 1168 1169 1169 1168 1170 1169 1170 1171 1171 1170 1172 1171 1172 1173 1173 1172 1174 1174 1172 1175 1174 1175 1176 1176 1175 1177 1177 1175 1178 1177 1178 1179 1179 1178 1180 1180 1178 1181 1182 1183 1184 1183 1182 1185 1183 1185 1186 1183 1186 1161 1183 1161 1187 1187 1161 1188 1188 1161 1189 1189 1161 1190 1190 1161 1191 1191 1161 1192 1192 1161 1193 1193 1161 1163 1185 1182 1194 1194 1182 1195 1195 1182 1196 1196 1182 1197 1197 1182 1198 1198 1182 1199 1199 1182 1200 1200 1182 1201 1201 1182 1202 1202 1182 1203 1203 1182 1204 1204 1182 1205 1205 1182 1206 1206 1182 1207 1207 1182 1208 1208 1182 1209 1210 1211 1212 1211 1210 1213 1213 1210 1214 1214 1210 1215 1182 1216 1217 1216 1182 1218 1216 1218 1219 1219 1218 1220 1220 1218 1221 1221 1218 1222 1222 1218 1223 1223 1218 1224 1224 1218 1225 1225 1218 1226 1226 1218 1227 1227 1218 1228 1228 1218 1229 1229 1218 1230 1230 1218 1231 1231 1218 1232 1232 1218 1233 1233 1218 1234 1234 1218 1235 1235 1218 1236 1236 1218 1237 1237 1218 1238 1238 1218 1239 1239 1218 1240 1240 1218 1241 1241 1218 1242 1242 1218 1243 1243 1218 1244 1244 1218 1245 1245 1218 1246 1246 1218 1247 1247 1218 1248 1248 1218 1249 1249 1218 1250 1241 1242 1251 1251 1242 1252 1251 1252 1253 1253 1252 1254 1254 1252 1255 1255 1252 1256 1255 1256 1257 1257 1256 1258 1258 1256 1259 1259 1256 1260 1260 1256 1261 1261 1256 1262 1249 1250 1263 1263 1250 1264 1264 1250 1265 1265 1250 1266 1266 1250 1267 1267 1250 1268 1268 1250 1269 1269 1250 1270 1270 1250 1271 1271 1250 1272 1271 1272 1273 1271 1273 1274 1272 1250 1275 1275 1250 1276 1276 1250 1277 1277 1250 1278 1278 1250 1279 1279 1250 1280 1280 1250 1281 1281 1250 1282 1282 1250 1283 1283 1250 1284 1284 1250 1285 1285 1250 1286 1286 1250 1287 1287 1250 1288 1288 1250 1289 1289 1250 1290 1290 1250 1291 1291 1250 1292 1293 1294 1295 1294 1293 1296 1296 1293 1297 1297 1293 1298 1298 1293 1299 1299 1293 1300 1300 1293 1301 1301 1293 1302 1302 1293 1303 1303 1293 1304 1304 1293 1305 1305 1293 1306 1306 1293 1307 1307 1293 1308 1308 1293 1309 1309 1293 1310 1295 1294 1311 1295 1311 1312 1295 1312 1313 1295 1313 1314 1314 1313 1315 1315 1313 1316 1316 1313 1317 1317 1313 1318 1318 1313 1319 1319 1313 1320 1320 1313 1321 1321 1313 1322 1322 1313 1323 1323 1313 1324 1324 1313 1325 1325 1313 1326 1326 1313 1327 1327 1313 1328 1321 1322 1329 1321 1329 1330 1321 1330 1331 1321 1331 1332 1321 1332 1333 1321 1333 1334 1321 1334 1335 1321 1335 1336 1336 1335 1337 1336 1337 1338 1336 1338 1339 1336 1339 1340 1336 1340 1341 1336 1341 1342 1342 1341 1343 1343 1341 1344 1344 1341 1345 1345 1341 1346 1345 1346 1347 1345 1347 1348 1345 1348 1183 1345 1183 1187 1295 1314 1349 1295 1349 1350 1295 1350 1351 1295 1351 1352 1295 1352 1181 1295 1181 1353 1353 1181 1354 1354 1181 1355 1355 1181 1356 1356 1181 1178 1356 1178 1357 1356 1357 1358 1356 1358 1359 1359 1358 1360 1359 1360 1361 1359 1361 1362 1359 1362 1363 1359 1363 1364 1359 1364 1365 1359 1365 1366 1359 1366 1209 1359 1209 1367 1367 1209 1182 1367 1182 1217 1295 1353 1368 1295 1368 1369 1295 1369 1370 1370 1369 1371 1295 1370 1372 1295 1372 1373 1295 1373 1374 1295 1374 1375 1295 1375 1376 1295 1376 1377 1295 1377 1378 1295 1378 1379 1295 1379 1380 1295 1380 1381 1295 1381 1382 1295 1382 1383 1295 1383 1215 1295 1215 1210 1295 1210 1384 1295 1384 1385 1295 1385 1386 1295 1386 1387 1295 1387 1388 1295 1388 1389 1389 1388 1390 1389 1390 1391 1389 1391 1392 1389 1392 1393 1393 1392 1394 1393 1394 1262 1393 1262 1256 1393 1256 1395 1393 1395 1396 1393 1396 1397 1393 1397 1398 1393 1398 1399 1399 1398 1400 1399 1400 1401 1399 1401 1402 1399 1402 1403 1399 1403 1404 1399 1404 1405 1399 1405 1406 1399 1406 1407 1399 1407 1291 1402 1401 1408 1402 1408 1409 1402 1409 1410 1402 1410 1274 1274 1410 1411 1274 1411 1412 1274 1412 1413 1274 1413 1414 1274 1414 1415 1274 1415 1416 1274 1416 1417 1274 1417 1418 1274 1418 1271 1291 1407 1419 1291 1419 1420 1291 1420 1421 1291 1421 1422 1291 1422 1423 1291 1423 1424 1291 1424 1425 1291 1425 1426 1291 1426 1427 1291 1427 1428 1291 1428 1429 1291 1429 1290 1227 1430 1431 1430 1227 1432 1432 1227 1433 1433 1227 1434 1434 1227 1228 1435 1003 1002 1003 1435 1436 1436 1435 1437 1437 1435 1438 1438 1435 1439 1438 1439 1440 1440 1439 1441 1440 1441 1442 1442 1441 1443 1443 1441 1346 1440 1442 1444 1444 1442 1445 1445 1442 1446 1446 1442 1447 1447 1442 1448 1448 1442 1449 1449 1442 1450 1450 1442 1451 1451 1442 1452 1452 1442 1453 1453 1442 1454 1454 1442 1455 1455 1442 1456 1456 1442 1457 1457 1442 1458 1458 1442 1037 1037 1442 1459 1037 1459 1035 1035 1459 1460 1460 1459 1461 1461 1459 1462 1461 1462 1463 1461 1463 1464 1464 1463 1465 1465 1463 1466 1462 1459 1467 1467 1459 1468 1468 1459 1469 1469 1459 1470 1470 1459 1471 1471 1459 1472 1471 1472 1473 1473 1472 1474 1443 1346 1475 1475 1346 1476 1476 1346 1477 1477 1346 1478 1478 1346 1479 1479 1346 1480 1480 1346 1481 1481 1346 1482 1482 1346 1483 1483 1346 1484 1484 1346 1485 1485 1346 1486 1486 1346 1487 1487 1346 1488 1488 1346 1489 1489 1346 1490 1490 1346 1491 1490 1491 1492 1490 1492 1493 1490 1493 1494 1494 1493 1495 1495 1493 1496 1492 1491 1497 1497 1491 1293 1293 1491 1498 1293 1498 1310 1491 1346 1499 1499 1346 1500 1500 1346 1501 1501 1346 1502 1502 1346 1503 1503 1346 1504 1504 1346 1505 1505 1346 1506 1506 1346 1507 1507 1346 1508 1508 1346 1509 1509 1346 1510 1510 1346 1511 1511 1346 1512 1512 1346 1513 1513 1346 1313 1313 1346 1514 1313 1514 1328 1514 1346 1515 1515 1346 1516 1516 1346 1517 1517 1346 1518 1518 1346 1519 1519 1346 1520 1520 1346 1521 1521 1346 1522 1522 1346 1523 1523 1346 1524 1524 1346 1525 1525 1346 1526 1526 1346 1527 1527 1346 1528 1528 1346 1529 1529 1346 1530 1530 1346 1531 1531 1346 1341 1063 1532 1062 1532 1063 1533 1532 1533 1534 1534 1533 1535 1535 1533 1536 1535 1536 1537 1535 1537 1538 1538 1537 1539 1538 1539 1540 1540 1539 1541 1540 1541 1542 1542 1541 1543 1543 1541 1544 1543 1544 1545 1545 1544 1546 1545 1546 1547 1547 1546 1548 1548 1546 1549 1548 1549 1550 1550 1549 1551 1551 1549 1552 1552 1549 1553 1553 1549 1554 1553 1554 1099 1099 1554 1098 1098 1554 1555 1555 1554 1556 1555 1556 1557 1555 1557 1558 1558 1557 1559 1559 1557 1560 1559 1560 1561 1561 1560 1562 1562 1560 1563 1563 1560 1564 1564 1560 1565 1565 1560 1566 1566 1560 1567 1566 1567 1568 1568 1567 1569 1568 1569 1570 1570 1569 1571 1570 1571 1572 1572 1571 1573 1573 1571 1574 1573 1574 1575 1573 1575 1576 1573 1576 1577 1577 1576 1578 1578 1576 1579 1578 1579 1580 1580 1579 1581 1581 1579 1582 1582 1579 1583 1582 1583 1584 1584 1583 1585 1584 1585 1586 1584 1586 1587 1584 1587 1588 1585 1583 1023 1585 1023 1026 1026 1023 1024 1026 1024 1027 1588 1587 1589 1588 1589 1590 1588 1590 1591 1588 1591 1592 1588 1592 1593 1588 1593 1594 1588 1594 1595 1588 1595 1596 1588 1596 1597 1588 1597 1598 1598 1597 1599 1598 1599 1600 1600 1599 1601 1601 1599 1602 1601 1602 1603 1603 1602 1604 1604 1602 1605 1605 1602 1606 1605 1606 1607 1109 1608 1105 1608 1109 1609 1608 1609 1610 1608 1610 1611 1608 1611 1612 1612 1611 1613 1613 1611 1614 1614 1611 1615 1615 1611 1616 1615 1616 1617 1617 1616 1618 1617 1618 1619 1617 1619 1620 1617 1620 1621 1617 1621 1622 1617 1622 1623 1617 1623 1624 1617 1624 1625 1617 1625 1626 1617 1626 1627 1617 1627 1628 1617 1628 1629 1617 1629 1630 1617 1630 1631 1617 1631 1632 1617 1632 1633 1617 1633 1634 1617 1634 1635 1617 1635 1636 1636 1635 1637 1637 1635 1638 1637 1638 1639 1637 1639 1148 1637 1148 1640 1640 1148 1641 1641 1148 1139 1641 1139 1642 1641 1642 1150 1150 1642 1643 1150 1643 1644 1150 1644 1645 1150 1645 1151 1637 1640 1646 1637 1646 1647 1637 1647 1648 1637 1648 1649 1637 1649 1650 1637 1650 1651 1637 1651 1652 1637 1652 1653 1637 1653 1654 1637 1654 1655 1637 1655 1656 1637 1656 1657 1637 1657 1658 1637 1658 1659 1637 1659 1660 1660 1659 1093 1660 1093 1661 1661 1093 1092 1661 1092 1662 1662 1092 1663 1662 1663 1664 1662 1664 1665 1662 1665 1666 1666 1665 1667 1666 1667 1668 1666 1668 1669 1666 1669 1670 1666 1670 1671 1666 1671 1672 1666 1672 1673 1673 1672 1674 1673 1674 1675 1673 1675 1676 1673 1676 1677 1673 1677 1678 1673 1678 1679 1679 1678 1680 1680 1678 1681 1680 1681 1682 1682 1681 1683 1683 1681 1684 1683 1684 1685 1683 1685 1686 1683 1686 1687 1683 1687 1688 1683 1688 1689 1683 1689 1690 1683 1690 1691 1683 1691 1692 1683 1692 1693 1693 1692 1694 1693 1694 1695 1693 1695 1607 1693 1607 1606 1693 1606 1696 1693 1696 1697 1693 1697 1698 1693 1698 1699 1693 1699 1700 1472 1701 1474 1701 1472 1702 1701 1702 1703 1701 1703 1704 1701 1704 1705 1701 1705 1706 1706 1705 1707 1706 1707 1708 1708 1707 1709 1708 1709 1710 1710 1709 1711 1710 1711 1712 1712 1711 1713 1712 1713 1714 1714 1713 1715 1714 1715 1716 1716 1715 1717 1717 1715 1718 1717 1718 1719 1719 1718 1494 1494 1718 1720 1494 1720 1721 1494 1721 1722 1494 1722 1723 1494 1723 1724 1494 1724 1725 1494 1725 1726 1494 1726 1490 1496 1727 1495 1727 1496 1728 1466 1729 1730 1729 1466 1463 1730 1729 1731 1730 1731 1732 1730 1732 1733 1730 1733 1734 1730 1734 1735 1730 1735 1736 1730 1736 1737 1737 1736 1738 1737 1738 1739 1737 1739 1740 1737 1740 1741 1737 1741 1742 1742 1741 1743 1742 1743 1744 1742 1744 1745 1745 1744 1746 1746 1744 1747 1747 1744 1699 1699 1744 1700 1700 1744 1748 1748 1744 1749 1749 1744 1750 1750 1744 1751 1751 1744 1752 1751 1752 1753 1751 1753 1754 1751 1754 1755 1751 1755 1756 1756 1755 1757 1756 1757 1758 1756 1758 1759 1756 1759 1760 1756 1760 1761 1756 1761 1762 1756 1762 1763 1756 1763 1764 1756 1764 1765 1756 1765 1727 1756 1727 1728 1756 1728 1766 1756 1766 1767 1756 1767 1768 1756 1768 1769 1756 1769 1770 1770 1769 1771 1770 1771 1772 1772 1771 1773

-
-
-
- - - - -7715.6338583 263.7795276 -4384.1614173 -7724.3464567 47.2440945 -4390.2598425 -7724.3464567 263.7795276 -4390.2598425 -7715.6338583 47.2440945 -4384.1614173 -7731.8700787 47.2440945 -4397.7834646 -7731.8700787 263.7795276 -4397.7834646 -7664.4921260 263.7795276 -4354.6338583 -7664.4921260 47.2440945 -4354.6338583 -7732.8858268 263.7795276 -4399.2362205 -7732.8858268 47.2440945 -4399.2362205 -7654.8503937 263.7795276 -4350.1377953 -7654.8503937 47.2440945 -4350.1377953 -7737.9724409 263.7795276 -4406.4960630 -7737.9724409 47.2440945 -4406.4960630 -7644.5748031 263.7795276 -4347.3818898 -7644.5748031 47.2440945 -4347.3818898 -7742.4645669 47.2440945 -4416.1377953 -7742.4645669 263.7795276 -4416.1377953 -7633.9803150 263.7795276 -4346.4566929 -7633.9803150 47.2440945 -4346.4566929 -7745.2204724 263.7795276 -4426.4094488 -7745.2204724 47.2440945 -4426.4094488 -7623.3818898 263.7795276 -4347.3818898 -7623.3818898 47.2440945 -4347.3818898 -7746.1456693 263.7795276 -4437.0078740 -7746.1456693 47.2440945 -4437.0078740 -7613.1102362 263.7795276 -4350.1377953 -7613.1102362 47.2440945 -4350.1377953 -7745.2204724 263.7795276 -4447.6062992 -7745.2204724 47.2440945 -4447.6062992 -7603.4685039 263.7795276 -4354.6338583 -7603.4685039 47.2440945 -4354.6338583 -7742.4645669 263.7795276 -4457.8779528 -7742.4645669 47.2440945 -4457.8779528 -7594.7559055 263.7795276 -4360.7322835 -7594.7559055 47.2440945 -4360.7322835 -7737.9724409 263.7795276 -4467.5196850 -7737.9724409 47.2440945 -4467.5196850 -7587.2322835 263.7795276 -4368.2559055 -7587.2322835 47.2440945 -4368.2559055 -7731.8700787 47.2440945 -4476.2322835 -7731.8700787 263.7795276 -4476.2322835 -7581.1299213 47.2440945 -4376.9685039 -7581.1299213 263.7795276 -4376.9685039 -7724.3464567 47.2440945 -4483.7559055 -7724.3464567 263.7795276 -4483.7559055 -7576.6377953 263.7795276 -4386.6102362 -7576.6377953 47.2440945 -4386.6102362 -7715.6338583 47.2440945 -4489.8543307 -7715.6338583 263.7795276 -4489.8543307 -7573.8818898 47.2440945 -4396.8818898 -7573.8818898 263.7795276 -4396.8818898 -7705.9960630 47.2440945 -4494.3503937 -7705.9960630 263.7795276 -4494.3503937 -7572.9566929 47.2440945 -4407.4803150 -7572.9566929 263.7795276 -4407.4803150 -7695.7204724 47.2440945 -4497.1062992 -7695.7204724 263.7795276 -4497.1062992 -7573.8818898 47.2440945 -4418.0787402 -7573.8818898 263.7795276 -4418.0787402 -7685.1220472 47.2440945 -4498.0314961 -7685.1220472 263.7795276 -4498.0314961 -7576.6377953 47.2440945 -4428.3503937 -7576.6377953 263.7795276 -4428.3503937 -7676.2913386 47.2440945 -4497.2598425 -7676.2913386 263.7795276 -4497.2598425 -7581.1299213 47.2440945 -4437.9921260 -7581.1299213 263.7795276 -4437.9921260 -7674.5275591 47.2440945 -4497.1023622 -7674.5275591 263.7795276 -4497.1023622 -7586.2165354 263.7795276 -4445.2519685 -7586.2165354 47.2440945 -4445.2519685 -7664.2519685 47.2440945 -4494.3503937 -7664.2519685 263.7795276 -4494.3503937 -7587.2322835 47.2440945 -4446.7047244 -7587.2322835 263.7795276 -4446.7047244 -7654.6102362 47.2440945 -4489.8543307 -7654.6102362 263.7795276 -4489.8543307 -7594.7559055 263.7795276 -4454.2283465 -7594.7559055 47.2440945 -4454.2283465 -7603.4685039 47.2440945 -4460.3267717 -7603.4685039 263.7795276 -4460.3267717 - - - - - - - - - - 0.5372334 -0.0000000 -0.8434336 0.6427226 -0.0000000 -0.7660989 0.6427226 -0.0000000 -0.7660989 0.5372334 -0.0000000 -0.8434336 0.7662646 -0.0000000 -0.6425252 0.7662646 -0.0000000 -0.6425252 0.4617561 -0.0000000 -0.8870069 0.4617561 -0.0000000 -0.8870069 0.8192632 0.0000000 -0.5734176 0.8192632 0.0000000 -0.5734176 0.3421317 -0.0000000 -0.9396520 0.3421317 -0.0000000 -0.9396520 0.8660339 0.0000000 -0.4999853 0.8660339 0.0000000 -0.4999853 0.1736892 0.0000003 -0.9848005 0.1736892 0.0000003 -0.9848005 0.9396930 0.0000000 -0.3420192 0.9396930 0.0000000 -0.3420192 0.0000208 0.0000003 -1.0000000 0.0000208 0.0000003 -1.0000000 0.9847958 -0.0000000 -0.1737160 0.9847958 -0.0000000 -0.1737160 -0.1737160 0.0000000 -0.9847958 -0.1737160 0.0000000 -0.9847958 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 -0.3421768 -0.0000000 -0.9396356 -0.3421768 -0.0000000 -0.9396356 0.9847958 -0.0000000 0.1737160 0.9847958 -0.0000000 0.1737160 -0.4999284 -0.0000000 -0.8660667 -0.4999284 -0.0000000 -0.8660667 0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 0.3420192 -0.6427226 0.0000000 -0.7660989 -0.6427226 0.0000000 -0.7660989 0.8660748 0.0000000 0.4999144 0.8660748 0.0000000 0.4999144 -0.7660015 0.0000000 -0.6428388 -0.7660015 0.0000000 -0.6428388 0.7660015 -0.0000000 0.6428388 0.7660015 -0.0000000 0.6428388 -0.8660748 0.0000000 -0.4999144 -0.8660748 0.0000000 -0.4999144 0.6427226 -0.0000000 0.7660989 0.6427226 -0.0000000 0.7660989 -0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 -0.3420192 0.4999961 -0.0000000 0.8660276 0.4999961 -0.0000000 0.8660276 -0.9847958 0.0000000 -0.1737160 -0.9847958 0.0000000 -0.1737160 0.3422052 0.0000000 0.9396252 0.3422052 0.0000000 0.9396252 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 0.1736687 0.0000000 0.9848041 0.1736687 0.0000000 0.9848041 -0.9847958 0.0000000 0.1737160 -0.9847958 0.0000000 0.1737160 -0.0000433 -0.0000000 1.0000000 -0.0000433 -0.0000000 1.0000000 -0.9396930 0.0000000 0.3420192 -0.9396930 0.0000000 0.3420192 -0.0879916 0.0000000 0.9961212 -0.0879916 0.0000000 0.9961212 -0.8660339 0.0000000 0.4999853 -0.8660339 0.0000000 0.4999853 -0.1744650 0.0000000 0.9846634 -0.1744650 0.0000000 0.9846634 -0.8192632 0.0000000 0.5734176 -0.8192632 0.0000000 0.5734176 -0.3419638 0.0000000 0.9397131 -0.3419638 0.0000000 0.9397131 -0.7662646 0.0000000 0.6425252 -0.7662646 0.0000000 0.6425252 -0.4617561 0.0000000 0.8870069 -0.4617561 0.0000000 0.8870069 -0.6427226 0.0000000 0.7660989 -0.6427226 0.0000000 0.7660989 -0.5372334 0.0000000 0.8434336 -0.5372334 0.0000000 0.8434336 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 8 4 9 4 8 5 10 7 6 7 10 11 12 9 13 9 12 8 14 11 10 11 14 15 16 12 13 12 16 17 18 15 14 15 18 19 20 16 21 16 20 17 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 25 29 25 28 24 30 27 26 27 30 31 32 29 33 29 32 28 34 31 30 31 34 35 36 33 37 33 36 32 38 35 34 35 38 39 40 36 37 36 40 41 38 42 39 42 38 43 44 41 40 41 44 45 42 46 47 46 42 43 48 45 44 45 48 49 46 50 47 50 46 51 52 49 48 49 52 53 51 54 50 54 51 55 56 53 52 53 56 57 55 58 54 58 55 59 60 57 56 57 60 61 59 62 58 62 59 63 64 61 60 61 64 65 63 66 62 66 63 67 68 65 64 65 68 69 66 70 71 70 66 67 72 69 68 69 72 73 70 74 71 74 70 75 76 73 72 73 76 77 74 78 79 78 74 75 80 77 76 77 80 81 79 81 80 81 79 78

-
-
-
- - - - -7531.6929134 263.7795276 -4151.5748031 -7512.0118110 47.2440945 -4123.4685039 -7531.6929134 47.2440945 -4151.5748031 -7512.0118110 263.7795276 -4123.4685039 -7500.4645669 263.7795276 -4111.9173228 -7500.4645669 47.2440945 -4111.9173228 -7546.1968504 263.7795276 -4182.6732283 -7546.1968504 47.2440945 -4182.6732283 -7487.7480315 263.7795276 -4099.2047244 -7487.7480315 47.2440945 -4099.2047244 -7555.0748031 263.7795276 -4215.8188976 -7555.0748031 47.2440945 -4215.8188976 -7459.6417323 263.7795276 -4079.5236220 -7459.6417323 47.2440945 -4079.5236220 -7558.0669291 263.7795276 -4250.0000000 -7558.0669291 47.2440945 -4250.0000000 -7428.5433071 263.7795276 -4065.0196850 -7428.5433071 47.2440945 -4065.0196850 -7555.0748031 263.7795276 -4284.1811024 -7555.0748031 47.2440945 -4284.1811024 -7395.3976378 263.7795276 -4056.1417323 -7395.3976378 47.2440945 -4056.1417323 -7546.1968504 47.2440945 -4317.3267717 -7546.1968504 263.7795276 -4317.3267717 -7361.2165354 263.7795276 -4053.1496063 -7361.2165354 47.2440945 -4053.1496063 -7531.6929134 263.7795276 -4348.4251969 -7531.6929134 47.2440945 -4348.4251969 -7334.8818898 263.7795276 -4055.4527559 -7334.8818898 47.2440945 -4055.4527559 -7512.0118110 263.7795276 -4376.5314961 -7512.0118110 47.2440945 -4376.5314961 -7327.0314961 263.7795276 -4056.1417323 -7327.0314961 47.2440945 -4056.1417323 -7495.6062992 263.7795276 -4392.9409449 -7495.6062992 47.2440945 -4392.9409449 -7293.8897638 263.7795276 -4065.0196850 -7293.8897638 47.2440945 -4065.0196850 -7487.7480315 47.2440945 -4400.7952756 -7487.7480315 263.7795276 -4400.7952756 -7262.7913386 263.7795276 -4079.5236220 -7262.7913386 47.2440945 -4079.5236220 -7459.6417323 47.2440945 -4420.4763780 -7459.6417323 263.7795276 -4420.4763780 -7234.6811024 263.7795276 -4099.2047244 -7234.6811024 47.2440945 -4099.2047244 -7428.5433071 47.2440945 -4434.9803150 -7428.5433071 263.7795276 -4434.9803150 -7210.4212598 47.2440945 -4123.4685039 -7210.4212598 263.7795276 -4123.4685039 -7395.3976378 47.2440945 -4443.8582677 -7395.3976378 263.7795276 -4443.8582677 -7190.7401575 47.2440945 -4151.5748031 -7190.7401575 263.7795276 -4151.5748031 -7387.5511811 47.2440945 -4444.5472441 -7387.5511811 263.7795276 -4444.5472441 -7176.2362205 47.2440945 -4182.6732283 -7176.2362205 263.7795276 -4182.6732283 -7361.2165354 47.2440945 -4446.8503937 -7361.2165354 263.7795276 -4446.8503937 -7170.2322835 263.7795276 -4205.0866142 -7170.2322835 47.2440945 -4205.0866142 -7327.0314961 47.2440945 -4443.8582677 -7327.0314961 263.7795276 -4443.8582677 -7167.3543307 47.2440945 -4215.8188976 -7167.3543307 263.7795276 -4215.8188976 -7311.2559055 47.2440945 -4439.6338583 -7311.2559055 263.7795276 -4439.6338583 -7164.3661417 47.2440945 -4250.0000000 -7164.3661417 263.7795276 -4250.0000000 -7293.8897638 47.2440945 -4434.9803150 -7293.8897638 263.7795276 -4434.9803150 -7167.3543307 47.2440945 -4284.1811024 -7167.3543307 263.7795276 -4284.1811024 -7262.7913386 47.2440945 -4420.4763780 -7262.7913386 263.7795276 -4420.4763780 -7176.2362205 47.2440945 -4317.3267717 -7176.2362205 263.7795276 -4317.3267717 -7234.6811024 47.2440945 -4400.7952756 -7234.6811024 263.7795276 -4400.7952756 -7190.7401575 47.2440945 -4348.4251969 -7190.7401575 263.7795276 -4348.4251969 -7221.9685039 47.2440945 -4388.0826772 -7221.9685039 263.7795276 -4388.0826772 -7210.4212598 47.2440945 -4376.5314961 -7210.4212598 263.7795276 -4376.5314961 - - - - - - - - - - 0.8660036 -0.0000001 -0.5000377 0.7660926 0.0000000 -0.6427302 0.8660036 -0.0000001 -0.5000377 0.7660926 0.0000000 -0.6427302 0.7071123 0.0000000 -0.7071013 0.7071123 0.0000000 -0.7071013 0.9396976 -0.0000001 -0.3420064 0.9396976 -0.0000001 -0.3420064 0.6427362 -0.0000000 -0.7660876 0.6427362 -0.0000000 -0.7660876 0.9848119 0.0000000 -0.1736248 0.9848119 0.0000000 -0.1736248 0.5000375 -0.0000000 -0.8660037 0.5000375 -0.0000000 -0.8660037 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3420064 -0.0000008 -0.9396976 0.3420064 -0.0000008 -0.9396976 0.9848117 -0.0000004 0.1736258 0.9848117 -0.0000004 0.1736258 0.1736251 -0.0000008 -0.9848118 0.1736251 -0.0000008 -0.9848118 0.9396974 -0.0000004 0.3420071 0.9396974 -0.0000004 0.3420071 0.0000399 -0.0000000 -1.0000000 0.0000399 -0.0000000 -1.0000000 0.8660037 0.0000000 0.5000375 0.8660037 0.0000000 0.5000375 -0.0872758 0.0000000 -0.9961842 -0.0872758 0.0000000 -0.9961842 0.7660764 0.0000000 0.6427495 0.7660764 0.0000000 0.6427495 -0.1737498 0.0000000 -0.9847898 -0.1737498 0.0000000 -0.9847898 0.7070606 0.0000000 0.7071529 0.7070606 0.0000000 0.7071529 -0.3420202 0.0000000 -0.9396926 -0.3420202 0.0000000 -0.9396926 0.6427015 -0.0000006 0.7661167 0.6427015 -0.0000006 0.7661167 -0.5000090 -0.0000000 -0.8660202 -0.5000090 -0.0000000 -0.8660202 0.5000398 -0.0000006 0.8660024 0.5000398 -0.0000006 0.8660024 -0.6428025 -0.0000007 -0.7660319 -0.6428025 -0.0000007 -0.7660319 0.3420062 0.0000000 0.9396977 0.3420062 0.0000000 0.9396977 -0.7660649 -0.0000007 -0.6427632 -0.7660649 -0.0000007 -0.6427632 0.1737608 0.0000007 0.9847879 0.1737608 0.0000007 0.9847879 -0.8660037 0.0000000 -0.5000375 -0.8660037 0.0000000 -0.5000375 0.0873017 0.0000007 0.9961819 0.0873017 0.0000007 0.9961819 -0.9396935 0.0000000 -0.3420177 -0.9396935 0.0000000 -0.3420177 -0.0000349 -0.0000000 1.0000000 -0.0000349 -0.0000000 1.0000000 -0.9659098 0.0000000 -0.2588789 -0.9659098 0.0000000 -0.2588789 -0.1735900 0.0000000 0.9848180 -0.1735900 0.0000000 0.9848180 -0.9847963 -0.0000003 -0.1737133 -0.9847963 -0.0000003 -0.1737133 -0.2587512 0.0000000 0.9659440 -0.2587512 0.0000000 0.9659440 -1.0000000 -0.0000003 -0.0000014 -1.0000000 -0.0000003 -0.0000014 -0.3420588 0.0000000 0.9396786 -0.3420588 0.0000000 0.9396786 -0.9848122 0.0000000 0.1736231 -0.9848122 0.0000000 0.1736231 -0.5000090 -0.0000000 0.8660202 -0.5000090 -0.0000000 0.8660202 -0.9396779 -0.0000005 0.3420607 -0.9396779 -0.0000005 0.3420607 -0.6427703 -0.0000000 0.7660590 -0.6427703 -0.0000000 0.7660590 -0.8660024 -0.0000005 0.5000398 -0.8660024 -0.0000005 0.5000398 -0.7071670 0.0000000 0.7070465 -0.7071670 0.0000000 0.7070465 -0.7660926 0.0000000 0.6427302 -0.7660926 0.0000000 0.6427302 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 6 2 7 2 6 0 8 5 4 5 8 9 10 7 11 7 10 6 12 9 8 9 12 13 14 11 15 11 14 10 16 13 12 13 16 17 18 15 19 15 18 14 20 17 16 17 20 21 22 18 19 18 22 23 24 21 20 21 24 25 26 22 27 22 26 23 28 25 24 25 28 29 30 27 31 27 30 26 32 29 28 29 32 33 34 31 35 31 34 30 36 33 32 33 36 37 38 34 35 34 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 44 48 45 48 44 49 50 47 46 47 50 51 49 52 48 52 49 53 54 51 50 51 54 55 53 56 52 56 53 57 58 55 54 55 58 59 56 60 61 60 56 57 62 59 58 59 62 63 60 64 61 64 60 65 66 63 62 63 66 67 65 68 64 68 65 69 70 67 66 67 70 71 69 72 68 72 69 73 74 71 70 71 74 75 73 76 72 76 73 77 78 75 74 75 78 79 77 80 76 80 77 81 82 79 78 79 82 83 81 84 80 84 81 85 84 83 82 83 84 85

-
-
-
- - - - -7118.9645669 263.7795276 -4039.6732283 -7127.6771654 47.2440945 -4045.7716535 -7127.6771654 263.7795276 -4045.7716535 -7118.9645669 47.2440945 -4039.6732283 -7135.2007874 47.2440945 -4053.2952756 -7135.2007874 263.7795276 -4053.2952756 -7067.8188976 263.7795276 -4010.1456693 -7067.8188976 47.2440945 -4010.1456693 -7141.2992126 263.7795276 -4062.0078740 -7141.2992126 47.2440945 -4062.0078740 -7058.1811024 263.7795276 -4005.6496063 -7058.1811024 47.2440945 -4005.6496063 -7145.7952756 263.7795276 -4071.6496063 -7145.7952756 47.2440945 -4071.6496063 -7047.9055118 263.7795276 -4002.8937008 -7047.9055118 47.2440945 -4002.8937008 -7148.5472441 263.7795276 -4081.9212598 -7148.5472441 47.2440945 -4081.9212598 -7037.3110236 263.7795276 -4001.9685039 -7037.3110236 47.2440945 -4001.9685039 -7149.4763780 263.7795276 -4092.5196850 -7149.4763780 47.2440945 -4092.5196850 -7026.7125984 263.7795276 -4002.8937008 -7026.7125984 47.2440945 -4002.8937008 -7148.5472441 263.7795276 -4103.1181102 -7148.5472441 47.2440945 -4103.1181102 -7016.4370079 263.7795276 -4005.6496063 -7016.4370079 47.2440945 -4005.6496063 -7145.7952756 47.2440945 -4113.3897638 -7145.7952756 263.7795276 -4113.3897638 -7006.7952756 263.7795276 -4010.1456693 -7006.7952756 47.2440945 -4010.1456693 -7141.2992126 263.7795276 -4123.0314961 -7141.2992126 47.2440945 -4123.0314961 -6998.0826772 263.7795276 -4016.2440945 -6998.0826772 47.2440945 -4016.2440945 -7135.2007874 263.7795276 -4131.7440945 -7135.2007874 47.2440945 -4131.7440945 -6990.5629921 47.2440945 -4023.7677165 -6990.5629921 263.7795276 -4023.7677165 -7127.6771654 47.2440945 -4139.2677165 -7127.6771654 263.7795276 -4139.2677165 -6984.4606299 47.2440945 -4032.4803150 -6984.4606299 263.7795276 -4032.4803150 -7118.9645669 47.2440945 -4145.3661417 -7118.9645669 263.7795276 -4145.3661417 -6979.9645669 263.7795276 -4042.1220472 -6979.9645669 47.2440945 -4042.1220472 -7109.3228346 47.2440945 -4149.8622047 -7109.3228346 263.7795276 -4149.8622047 -6977.2125984 47.2440945 -4052.3937008 -6977.2125984 263.7795276 -4052.3937008 -7099.0472441 47.2440945 -4152.6181102 -7099.0472441 263.7795276 -4152.6181102 -6976.2834646 47.2440945 -4062.9921260 -6976.2834646 263.7795276 -4062.9921260 -7088.4527559 47.2440945 -4153.5433071 -7088.4527559 263.7795276 -4153.5433071 -6977.2125984 47.2440945 -4073.5905512 -6977.2125984 263.7795276 -4073.5905512 -7077.8543307 47.2440945 -4152.6181102 -7077.8543307 263.7795276 -4152.6181102 -6979.9645669 47.2440945 -4083.8622047 -6979.9645669 263.7795276 -4083.8622047 -7067.5826772 47.2440945 -4149.8622047 -7067.5826772 263.7795276 -4149.8622047 -6984.4606299 47.2440945 -4093.5039370 -6984.4606299 263.7795276 -4093.5039370 -7057.9409449 47.2440945 -4145.3661417 -7057.9409449 263.7795276 -4145.3661417 -6989.5472441 263.7795276 -4100.7637795 -6989.5472441 47.2440945 -4100.7637795 -7006.7952756 47.2440945 -4115.8385827 -7006.7952756 263.7795276 -4115.8385827 -6990.5629921 47.2440945 -4102.2165354 -6990.5629921 263.7795276 -4102.2165354 -6998.0826772 47.2440945 -4109.7401575 -6998.0826772 263.7795276 -4109.7401575 - - - - - - - - - - 0.5372194 -0.0000000 -0.8434425 0.6427226 -0.0000000 -0.7660989 0.6427226 -0.0000000 -0.7660989 0.5372194 -0.0000000 -0.8434425 0.7660932 0.0000007 -0.6427295 0.7660932 0.0000007 -0.6427295 0.4618107 0.0000000 -0.8869785 0.4618107 0.0000000 -0.8869785 0.8660623 0.0000007 -0.4999361 0.8660623 0.0000007 -0.4999361 0.3422052 -0.0000000 -0.9396252 0.3422052 -0.0000000 -0.9396252 0.9396968 0.0000000 -0.3420088 0.9396968 0.0000000 -0.3420088 0.1736892 0.0000003 -0.9848005 0.1736892 0.0000003 -0.9848005 0.9847948 0.0000000 -0.1737214 0.9847948 0.0000000 -0.1737214 0.0000208 0.0000003 -1.0000000 0.0000208 0.0000003 -1.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.1736687 -0.0000000 -0.9848041 -0.1736687 -0.0000000 -0.9848041 0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 0.1737214 -0.3421317 -0.0000000 -0.9396520 -0.3421317 -0.0000000 -0.9396520 0.9396968 0.0000000 0.3420088 0.9396968 0.0000000 0.3420088 -0.4999284 0.0000000 -0.8660667 -0.4999284 0.0000000 -0.8660667 0.8660667 -0.0000000 0.4999284 0.8660667 -0.0000000 0.4999284 -0.6428229 0.0000000 -0.7660148 -0.6428229 0.0000000 -0.7660148 0.7660989 -0.0000000 0.6427226 0.7660989 -0.0000000 0.6427226 -0.7660856 -0.0000000 -0.6427385 -0.7660856 -0.0000000 -0.6427385 0.6427226 -0.0000000 0.7660989 0.6427226 -0.0000000 0.7660989 -0.8659909 0.0000000 -0.5000597 -0.8659909 0.0000000 -0.5000597 0.4999284 0.0000000 0.8660667 0.4999284 0.0000000 0.8660667 -0.9396968 0.0000000 -0.3420088 -0.9396968 0.0000000 -0.3420088 0.3421317 0.0000000 0.9396520 0.3421317 0.0000000 0.9396520 -0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 -0.1737214 0.1736846 0.0000000 0.9848013 0.1736846 0.0000000 0.9848013 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 0.0000086 0.0000006 1.0000000 0.0000086 0.0000006 1.0000000 -0.9847948 0.0000000 0.1737214 -0.9847948 0.0000000 0.1737214 -0.1737233 0.0000006 0.9847945 -0.1737233 0.0000006 0.9847945 -0.9396968 0.0000000 0.3420088 -0.9396968 0.0000000 0.3420088 -0.3421768 -0.0000000 0.9396356 -0.3421768 -0.0000000 0.9396356 -0.8659500 -0.0000000 0.5001306 -0.8659500 -0.0000000 0.5001306 -0.4617413 -0.0000000 0.8870146 -0.4617413 -0.0000000 0.8870146 -0.8192632 -0.0000000 0.5734176 -0.8192632 -0.0000000 0.5734176 -0.5372194 0.0000000 0.8434425 -0.5372194 0.0000000 0.8434425 -0.7663487 0.0000000 0.6424249 -0.7663487 0.0000000 0.6424249 -0.6428229 0.0000000 0.7660148 -0.6428229 0.0000000 0.7660148 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 8 4 9 4 8 5 10 7 6 7 10 11 12 9 13 9 12 8 14 11 10 11 14 15 16 13 17 13 16 12 18 15 14 15 18 19 20 17 21 17 20 16 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 24 25 24 28 29 30 27 26 27 30 31 32 28 33 28 32 29 34 31 30 31 34 35 36 33 37 33 36 32 34 38 35 38 34 39 40 36 37 36 40 41 39 42 38 42 39 43 44 41 40 41 44 45 42 46 47 46 42 43 48 45 44 45 48 49 46 50 47 50 46 51 52 49 48 49 52 53 51 54 50 54 51 55 56 53 52 53 56 57 55 58 54 58 55 59 60 57 56 57 60 61 59 62 58 62 59 63 64 61 60 61 64 65 63 66 62 66 63 67 68 65 64 65 68 69 66 70 71 70 66 67 72 69 68 69 72 73 70 74 71 74 70 75 76 73 72 73 76 77 75 76 74 76 75 77

-
-
-
- - - - -2800.9440945 263.7795276 -1617.1259843 -2804.5696850 47.2440945 -1609.3515748 -2800.9440945 47.2440945 -1617.1259843 -2804.5696850 263.7795276 -1609.3515748 -2806.7897638 47.2440945 -1601.0653543 -2806.7897638 263.7795276 -1601.0653543 -2796.0244094 47.2440945 -1624.1527559 -2796.0244094 263.7795276 -1624.1527559 -2807.5374016 47.2440945 -1592.5196850 -2807.5374016 263.7795276 -1592.5196850 -2789.9582677 47.2440945 -1630.2185039 -2789.9582677 263.7795276 -1630.2185039 -2806.7905512 47.2440945 -1583.9740157 -2806.7905512 263.7795276 -1583.9740157 -2782.9311024 47.2440945 -1635.1389764 -2782.9311024 263.7795276 -1635.1389764 -2804.5696850 263.7795276 -1575.6877953 -2804.5696850 47.2440945 -1575.6877953 -2775.1570866 47.2440945 -1638.7645669 -2775.1570866 263.7795276 -1638.7645669 -2800.9440945 47.2440945 -1567.9133858 -2800.9440945 263.7795276 -1567.9133858 -2766.8704724 47.2440945 -1640.9846457 -2766.8704724 263.7795276 -1640.9846457 -2796.0244094 263.7795276 -1560.8862205 -2796.0244094 47.2440945 -1560.8862205 -2758.3248031 47.2440945 -1641.7322835 -2758.3248031 263.7795276 -1641.7322835 -2789.9582677 263.7795276 -1554.8204724 -2789.9582677 47.2440945 -1554.8204724 -2749.7791339 47.2440945 -1640.9846457 -2749.7791339 263.7795276 -1640.9846457 -2782.9311024 263.7795276 -1549.9003937 -2782.9311024 47.2440945 -1549.9003937 -2741.4933071 47.2440945 -1638.7641732 -2741.4933071 263.7795276 -1638.7641732 -2775.1570866 263.7795276 -1546.2751969 -2775.1570866 47.2440945 -1546.2751969 -2733.7185039 47.2440945 -1635.1389764 -2733.7185039 263.7795276 -1635.1389764 -2766.8708661 263.7795276 -1544.0547244 -2766.8708661 47.2440945 -1544.0547244 -2726.6921260 47.2440945 -1630.2188976 -2726.6921260 263.7795276 -1630.2188976 -2758.3248031 263.7795276 -1543.3070866 -2758.3248031 47.2440945 -1543.3070866 -2720.6259843 47.2440945 -1624.1531496 -2720.6259843 263.7795276 -1624.1531496 -2749.7791339 263.7795276 -1544.0547244 -2749.7791339 47.2440945 -1544.0547244 -2715.7055118 263.7795276 -1617.1259843 -2715.7055118 47.2440945 -1617.1259843 -2741.4933071 263.7795276 -1546.2751969 -2741.4933071 47.2440945 -1546.2751969 -2712.0803150 47.2440945 -1609.3511811 -2712.0803150 263.7795276 -1609.3511811 -2733.7185039 263.7795276 -1549.9003937 -2733.7185039 47.2440945 -1549.9003937 -2709.8598425 263.7795276 -1601.0653543 -2709.8598425 47.2440945 -1601.0653543 -2726.6921260 263.7795276 -1554.8204724 -2726.6921260 47.2440945 -1554.8204724 -2709.1122047 263.7795276 -1592.5196850 -2709.1122047 47.2440945 -1592.5196850 -2720.6259843 263.7795276 -1560.8866142 -2720.6259843 47.2440945 -1560.8866142 -2709.8598425 47.2440945 -1583.9740157 -2709.8598425 263.7795276 -1583.9740157 -2715.7055118 47.2440945 -1567.9133858 -2715.7055118 263.7795276 -1567.9133858 -2712.0803150 263.7795276 -1575.6881890 -2712.0803150 47.2440945 -1575.6881890 - - - - - - - - - - 0.8660291 0.0000000 0.4999936 0.9396908 -0.0000000 0.3420253 0.8660291 0.0000000 0.4999936 0.9396908 -0.0000000 0.3420253 0.9848099 -0.0000000 0.1736360 0.9848099 -0.0000000 0.1736360 0.7660498 -0.0000000 0.6427813 0.7660498 -0.0000000 0.6427813 1.0000000 0.0000000 0.0000457 1.0000000 0.0000000 0.0000457 0.6427751 -0.0000000 0.7660549 0.6427751 -0.0000000 0.7660549 0.9848101 0.0000000 -0.1736347 0.9848101 0.0000000 -0.1736347 0.5000231 0.0000000 0.8660120 0.5000231 0.0000000 0.8660120 0.9396756 0.0000000 -0.3420669 0.9396756 0.0000000 -0.3420669 0.3420288 0.0000000 0.9396895 0.3420288 0.0000000 0.9396895 0.8660357 0.0000000 -0.4999822 0.8660357 0.0000000 -0.4999822 0.1736302 0.0000000 0.9848109 0.1736302 0.0000000 0.9848109 0.7660582 0.0000000 -0.6427712 0.7660582 0.0000000 -0.6427712 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.6427607 0.0000000 -0.7660670 0.6427607 0.0000000 -0.7660670 -0.1736637 0.0000000 0.9848050 -0.1736637 0.0000000 0.9848050 0.4999889 0.0000000 -0.8660318 0.4999889 0.0000000 -0.8660318 -0.3420230 0.0000000 0.9396916 -0.3420230 0.0000000 0.9396916 0.3420357 0.0000000 -0.9396870 0.3420357 0.0000000 -0.9396870 -0.4999949 0.0000000 0.8660284 -0.4999949 0.0000000 0.8660284 0.1736559 0.0000000 -0.9848064 0.1736559 0.0000000 -0.9848064 -0.6427809 0.0000000 0.7660501 -0.6427809 0.0000000 0.7660501 -0.0000020 0.0000000 -1.0000000 -0.0000020 0.0000000 -1.0000000 -0.7660341 -0.0000000 0.6428000 -0.7660341 -0.0000000 0.6428000 -0.1736637 0.0000000 -0.9848050 -0.1736637 0.0000000 -0.9848050 -0.8660321 0.0000000 0.4999883 -0.8660321 0.0000000 0.4999883 -0.3420230 0.0000000 -0.9396916 -0.3420230 0.0000000 -0.9396916 -0.9396916 0.0000000 0.3420230 -0.9396916 0.0000000 0.3420230 -0.4999949 0.0000000 -0.8660284 -0.4999949 0.0000000 -0.8660284 -0.9848050 0.0000000 0.1736637 -0.9848050 0.0000000 0.1736637 -0.6427933 0.0000000 -0.7660397 -0.6427933 0.0000000 -0.7660397 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.7660360 0.0000000 -0.6427976 -0.7660360 0.0000000 -0.6427976 -0.9848050 0.0000000 -0.1736637 -0.9848050 0.0000000 -0.1736637 -0.8660256 0.0000000 -0.4999997 -0.8660256 0.0000000 -0.4999997 -0.9396916 0.0000000 -0.3420230 -0.9396916 0.0000000 -0.3420230 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 0 2 0 6 7 5 8 4 8 5 9 10 7 6 7 10 11 9 12 8 12 9 13 14 11 10 11 14 15 12 16 17 16 12 13 18 15 14 15 18 19 16 20 17 20 16 21 22 19 18 19 22 23 20 24 25 24 20 21 26 23 22 23 26 27 28 25 24 25 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 46 51 46 50 47 52 49 48 49 52 53 54 50 51 50 54 55 56 53 52 53 56 57 58 54 59 54 58 55 60 57 56 57 60 61 62 59 63 59 62 58 64 61 60 61 64 65 66 62 63 62 66 67 64 68 65 68 64 69 70 66 71 66 70 67 68 70 71 70 68 69

-
-
-
- - - - -7014.9015748 263.7795276 -4324.9409449 -7008.1181102 47.2440945 -4279.5275591 -7014.9015748 47.2440945 -4324.9409449 -7008.1181102 263.7795276 -4279.5275591 -7027.5000000 263.7795276 -4369.0984252 -7027.5000000 47.2440945 -4369.0984252 -7007.3070866 47.2440945 -4274.6968504 -7007.3070866 263.7795276 -4274.6968504 -7045.7047244 263.7795276 -4411.2559055 -7045.7047244 47.2440945 -4411.2559055 -7005.7086614 47.2440945 -4270.0708661 -7005.7086614 263.7795276 -4270.0708661 -7047.5669291 47.2440945 -4415.7874016 -7047.5669291 263.7795276 -4415.7874016 -7003.3700787 47.2440945 -4265.7716535 -7003.3700787 263.7795276 -4265.7716535 -7048.6496063 263.7795276 -4420.5629921 -7048.6496063 47.2440945 -4420.5629921 -7000.3503937 263.7795276 -4261.9173228 -7000.3503937 47.2440945 -4261.9173228 -7048.9330709 263.7795276 -4425.4488189 -7048.9330709 47.2440945 -4425.4488189 -6996.7362205 263.7795276 -4258.6141732 -6996.7362205 47.2440945 -4258.6141732 -7048.4015748 263.7795276 -4430.3188976 -7048.4015748 47.2440945 -4430.3188976 -6992.6299213 263.7795276 -4255.9527559 -6992.6299213 47.2440945 -4255.9527559 -7047.0748031 263.7795276 -4435.0314961 -7047.0748031 47.2440945 -4435.0314961 -6988.1377953 263.7795276 -4254.0078740 -6988.1377953 47.2440945 -4254.0078740 -7044.9842520 47.2440945 -4439.4606299 -7044.9842520 263.7795276 -4439.4606299 -6983.3818898 263.7795276 -4252.8346457 -6983.3818898 47.2440945 -4252.8346457 -6945.6929134 263.7795276 -4611.4370079 -6945.6929134 47.2440945 -4611.4370079 -6978.5039370 263.7795276 -4252.4606299 -6978.5039370 47.2440945 -4252.4606299 -6942.9645669 263.7795276 -4615.3858268 -6942.9645669 47.2440945 -4615.3858268 -6800.9803150 263.7795276 -4253.6023622 -6800.9803150 47.2440945 -4253.6023622 -6939.6338583 263.7795276 -4618.8385827 -6939.6338583 47.2440945 -4618.8385827 -6796.2125984 263.7795276 -4254.0196850 -6796.2125984 47.2440945 -4254.0196850 -6935.7874016 47.2440945 -4621.7047244 -6935.7874016 263.7795276 -4621.7047244 -6791.5708661 263.7795276 -4255.2047244 -6791.5708661 47.2440945 -4255.2047244 -6931.5275591 47.2440945 -4623.9094488 -6931.5275591 263.7795276 -4623.9094488 -6787.1850394 263.7795276 -4257.1220472 -6787.1850394 47.2440945 -4257.1220472 -6926.9645669 47.2440945 -4625.3976378 -6926.9645669 263.7795276 -4625.3976378 -6783.1653543 263.7795276 -4259.7244094 -6783.1653543 47.2440945 -4259.7244094 -6922.2244094 47.2440945 -4626.1259843 -6922.2244094 263.7795276 -4626.1259843 -6779.6181102 263.7795276 -4262.9448819 -6779.6181102 47.2440945 -4262.9448819 -6917.4251969 47.2440945 -4626.0787402 -6917.4251969 263.7795276 -4626.0787402 -6776.6417323 263.7795276 -4266.6929134 -6776.6417323 47.2440945 -4266.6929134 -6912.7007874 47.2440945 -4625.2559055 -6912.7007874 263.7795276 -4625.2559055 -6774.3070866 47.2440945 -4270.8740157 -6774.3070866 263.7795276 -4270.8740157 -6908.1692913 47.2440945 -4623.6771654 -6908.1692913 263.7795276 -4623.6771654 -6772.6771654 47.2440945 -4275.3779528 -6772.6771654 263.7795276 -4275.3779528 -6903.9566929 47.2440945 -4621.3818898 -6903.9566929 263.7795276 -4621.3818898 -6771.7992126 47.2440945 -4280.0826772 -6771.7992126 263.7795276 -4280.0826772 -6900.1692913 47.2440945 -4618.4409449 -6900.1692913 263.7795276 -4618.4409449 -6771.6968504 263.7795276 -4284.8700787 -6771.6968504 47.2440945 -4284.8700787 -6896.9055118 263.7795276 -4614.9212598 -6896.9055118 47.2440945 -4614.9212598 -6783.7440945 47.2440945 -4373.5905512 -6783.7440945 263.7795276 -4373.5905512 -6847.0748031 263.7795276 -4540.5354331 -6847.0748031 47.2440945 -4540.5354331 -6809.0629921 47.2440945 -4459.4685039 -6809.0629921 263.7795276 -4459.4685039 - - - - - - - - - - 0.9773800 -0.0000006 -0.2114906 0.9876527 -0.0000006 -0.1566594 0.9773800 -0.0000006 -0.2114906 0.9876527 -0.0000006 -0.1566594 0.9418237 0.0000000 -0.3361072 0.9418237 0.0000000 -0.3361072 0.9690327 -0.0000000 -0.2469324 0.9690327 -0.0000000 -0.2469324 0.9215381 0.0000000 -0.3882880 0.9215381 0.0000000 -0.3882880 0.9149388 0.0000000 -0.4035925 0.9149388 0.0000000 -0.4035925 0.9534181 -0.0000000 -0.3016520 0.9534181 -0.0000000 -0.3016520 0.8357055 0.0000000 -0.5491779 0.8357055 0.0000000 -0.5491779 0.9901535 -0.0000000 -0.1399861 0.9901535 -0.0000000 -0.1399861 0.7334246 -0.0000000 -0.6797708 0.7334246 -0.0000000 -0.6797708 0.9996780 0.0000000 0.0253733 0.9996780 0.0000000 0.0253733 0.6113478 -0.0000000 -0.7913620 0.6113478 -0.0000000 -0.7913620 0.9817067 0.0000000 0.1903996 0.9817067 0.0000000 0.1903996 0.4722344 0.0000000 -0.8814730 0.4722344 0.0000000 -0.8814730 0.9366991 -0.0000000 0.3501354 0.9366991 -0.0000000 0.3501354 0.3195210 -0.0000000 -0.9475792 0.3195210 -0.0000000 -0.9475792 0.8859305 -0.0000000 0.4638179 0.8859305 -0.0000000 0.4638179 0.1585209 -0.0000000 -0.9873556 0.1585209 -0.0000000 -0.9873556 0.8450667 -0.0000000 0.5346609 0.8450667 -0.0000000 0.5346609 0.0350395 0.0000003 -0.9993859 0.0350395 0.0000003 -0.9993859 0.7737799 -0.0000000 0.6334545 0.7737799 -0.0000000 0.6334545 -0.0468528 0.0000003 -0.9989018 -0.0468528 0.0000003 -0.9989018 0.6608008 -0.0000000 0.7505613 0.6608008 -0.0000000 0.7505613 -0.1678369 0.0000000 -0.9858148 -0.1678369 0.0000000 -0.9858148 0.5303298 -0.0000000 0.8477914 0.5303298 -0.0000000 0.8477914 -0.3250312 0.0000000 -0.9457033 -0.3250312 0.0000000 -0.9457033 0.3861288 -0.0000000 0.9224449 0.3861288 -0.0000000 0.9224449 -0.4735686 0.0000000 -0.8807569 -0.4735686 0.0000000 -0.8807569 0.2317379 0.0000000 0.9727783 0.2317379 0.0000000 0.9727783 -0.6098332 -0.0000000 -0.7925298 -0.6098332 -0.0000000 -0.7925298 0.0712487 0.0000000 0.9974586 0.0712487 0.0000000 0.9974586 -0.7300548 -0.0000000 -0.6833886 -0.7300548 -0.0000000 -0.6833886 -0.0910143 0.0000000 0.9958496 -0.0910143 0.0000000 0.9958496 -0.8308298 0.0000000 -0.5565265 -0.8308298 0.0000000 -0.5565265 -0.2511224 0.0000000 0.9679554 -0.2511224 0.0000000 0.9679554 -0.9096979 0.0000000 -0.4152706 -0.9096979 0.0000000 -0.4152706 -0.4050790 -0.0000000 0.9142817 -0.4050790 -0.0000000 0.9142817 -0.9648676 0.0000000 -0.2627367 -0.9648676 0.0000000 -0.2627367 -0.5476639 -0.0000000 0.8366984 -0.5476639 -0.0000000 0.8366984 -0.9947070 0.0000000 -0.1027519 -0.9947070 0.0000000 -0.1027519 -0.6755262 0.0000000 0.7373360 -0.6755262 0.0000000 0.7373360 -0.9983877 0.0000000 0.0567620 -0.9983877 0.0000000 0.0567620 -0.7844662 -0.0000007 0.6201716 -0.7844662 -0.0000007 0.6201716 -0.9778570 0.0000000 0.2092740 -0.9778570 0.0000000 0.2092740 -0.8706160 -0.0000007 0.4919631 -0.8706160 -0.0000007 0.4919631 -0.9349855 0.0000000 0.3546860 -0.9349855 0.0000000 0.3546860 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 5 9 5 8 4 7 10 6 10 7 11 12 8 9 8 12 13 11 14 10 14 11 15 16 12 17 12 16 13 14 18 19 18 14 15 20 17 21 17 20 16 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 25 29 25 28 24 30 27 26 27 30 31 32 28 29 28 32 33 34 31 30 31 34 35 36 32 37 32 36 33 38 35 34 35 38 39 40 37 41 37 40 36 42 39 38 39 42 43 44 41 45 41 44 40 46 43 42 43 46 47 48 44 45 44 48 49 50 47 46 47 50 51 52 49 48 49 52 53 54 51 50 51 54 55 56 53 52 53 56 57 58 55 54 55 58 59 60 57 56 57 60 61 62 59 58 59 62 63 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 66 70 67 70 66 71 72 69 68 69 72 73 71 74 70 74 71 75 76 73 72 73 76 77 75 78 74 78 75 79 80 77 76 77 80 81 78 82 83 82 78 79 84 80 85 80 84 81 82 86 83 86 82 87 88 85 89 85 88 84 87 90 86 90 87 91 91 89 90 89 91 88

-
-
-
- - - - -7156.9881890 263.7795276 -4483.5393701 -7150.8858268 47.2440945 -4492.2519685 -7156.9881890 47.2440945 -4483.5393701 -7150.8858268 263.7795276 -4492.2519685 -7164.5118110 47.2440945 -4476.0157480 -7164.5118110 263.7795276 -4476.0157480 -7121.3582677 263.7795276 -4543.3937008 -7121.3582677 47.2440945 -4543.3937008 -7173.2244094 47.2440945 -4469.9173228 -7173.2244094 263.7795276 -4469.9173228 -7116.8661417 47.2440945 -4553.0354331 -7116.8661417 263.7795276 -4553.0354331 -7182.8622047 47.2440945 -4465.4212598 -7182.8622047 263.7795276 -4465.4212598 -7114.1102362 47.2440945 -4563.3110236 -7114.1102362 263.7795276 -4563.3110236 -7193.1377953 47.2440945 -4462.6692913 -7193.1377953 263.7795276 -4462.6692913 -7113.1850394 47.2440945 -4573.9055118 -7113.1850394 263.7795276 -4573.9055118 -7203.7362205 47.2440945 -4461.7401575 -7203.7362205 263.7795276 -4461.7401575 -7114.1102362 47.2440945 -4584.5039370 -7114.1102362 263.7795276 -4584.5039370 -7214.3307087 47.2440945 -4462.6692913 -7214.3307087 263.7795276 -4462.6692913 -7116.8661417 47.2440945 -4594.7795276 -7116.8661417 263.7795276 -4594.7795276 -7224.6062992 47.2440945 -4465.4212598 -7224.6062992 263.7795276 -4465.4212598 -7121.3582677 263.7795276 -4604.4173228 -7121.3582677 47.2440945 -4604.4173228 -7234.2480315 47.2440945 -4469.9173228 -7234.2480315 263.7795276 -4469.9173228 -7127.4606299 263.7795276 -4613.1338583 -7127.4606299 47.2440945 -4613.1338583 -7242.9606299 47.2440945 -4476.0157480 -7242.9606299 263.7795276 -4476.0157480 -7134.9842520 263.7795276 -4620.6535433 -7134.9842520 47.2440945 -4620.6535433 -7250.4803150 263.7795276 -4483.5393701 -7250.4803150 47.2440945 -4483.5393701 -7143.6968504 263.7795276 -4626.7559055 -7143.6968504 47.2440945 -4626.7559055 -7256.5826772 263.7795276 -4492.2519685 -7256.5826772 47.2440945 -4492.2519685 -7153.3346457 263.7795276 -4631.2519685 -7153.3346457 47.2440945 -4631.2519685 -7261.0787402 47.2440945 -4501.8937008 -7261.0787402 263.7795276 -4501.8937008 -7163.6102362 263.7795276 -4634.0039370 -7163.6102362 47.2440945 -4634.0039370 -7263.8307087 263.7795276 -4512.1653543 -7263.8307087 47.2440945 -4512.1653543 -7174.2086614 263.7795276 -4634.9291339 -7174.2086614 47.2440945 -4634.9291339 -7264.7598425 47.2440945 -4522.7637795 -7264.7598425 263.7795276 -4522.7637795 -7184.8031496 263.7795276 -4634.0039370 -7184.8031496 47.2440945 -4634.0039370 -7263.8307087 263.7795276 -4533.3622047 -7263.8307087 47.2440945 -4533.3622047 -7195.0787402 263.7795276 -4631.2519685 -7195.0787402 47.2440945 -4631.2519685 -7261.0787402 47.2440945 -4543.6338583 -7261.0787402 263.7795276 -4543.6338583 -7204.7204724 263.7795276 -4626.7559055 -7204.7204724 47.2440945 -4626.7559055 -7256.5826772 263.7795276 -4553.2755906 -7256.5826772 47.2440945 -4553.2755906 -7213.4330709 263.7795276 -4620.6535433 -7213.4330709 47.2440945 -4620.6535433 -7227.0551181 263.7795276 -4604.4173228 -7227.0551181 47.2440945 -4604.4173228 -7220.9527559 263.7795276 -4613.1338583 -7220.9527559 47.2440945 -4613.1338583 - - - - - - - - - - -0.7660015 0.0000000 -0.6428388 -0.8433521 0.0000000 -0.5373613 -0.7660015 0.0000000 -0.6428388 -0.8433521 0.0000000 -0.5373613 -0.6427226 -0.0000000 -0.7660989 -0.6427226 -0.0000000 -0.7660989 -0.8870844 -0.0000000 -0.4616073 -0.8870844 -0.0000000 -0.4616073 -0.4999961 -0.0000000 -0.8660276 -0.4999961 -0.0000000 -0.8660276 -0.9397094 -0.0000000 -0.3419741 -0.9397094 -0.0000000 -0.3419741 -0.3420373 -0.0000000 -0.9396864 -0.3420373 -0.0000000 -0.9396864 -0.9848013 -0.0000000 -0.1736846 -0.9848013 -0.0000000 -0.1736846 -0.1736743 0.0000000 -0.9848032 -0.1736743 0.0000000 -0.9848032 -1.0000000 -0.0000000 -0.0000161 -1.0000000 -0.0000000 -0.0000161 0.0000162 -0.0000000 -1.0000000 0.0000162 -0.0000000 -1.0000000 -0.9848041 -0.0000000 0.1736687 -0.9848041 -0.0000000 0.1736687 0.1736902 -0.0000000 -0.9848003 0.1736902 -0.0000000 -0.9848003 -0.9396826 -0.0000000 0.3420476 -0.9396826 -0.0000000 0.3420476 0.3419638 -0.0000000 -0.9397131 0.3419638 -0.0000000 -0.9397131 -0.8660888 0.0000000 0.4998902 -0.8660888 0.0000000 0.4998902 0.4999284 -0.0000000 -0.8660667 0.4999284 -0.0000000 -0.8660667 -0.7659856 -0.0000000 0.6428577 -0.7659856 -0.0000000 0.6428577 0.6428229 -0.0000000 -0.7660148 0.6428229 -0.0000000 -0.7660148 -0.6427385 -0.0000000 0.7660856 -0.6427385 -0.0000000 0.7660856 0.7660856 -0.0000000 -0.6427385 0.7660856 -0.0000000 -0.6427385 -0.5001274 0.0000000 0.8659518 -0.5001274 0.0000000 0.8659518 0.8659909 -0.0000000 -0.5000597 0.8659909 -0.0000000 -0.5000597 -0.3420373 0.0000000 0.9396864 -0.3420373 0.0000000 0.9396864 0.9396968 -0.0000000 -0.3420088 0.9396968 -0.0000000 -0.3420088 -0.1734927 -0.0000000 0.9848352 -0.1734927 -0.0000000 0.9848352 0.9847948 0.0000000 -0.1737214 0.9847948 0.0000000 -0.1737214 0.0000161 0.0000000 1.0000000 0.0000161 0.0000000 1.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.1735086 0.0000000 0.9848324 0.1735086 0.0000000 0.9848324 0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 0.1737214 0.3419638 0.0000000 0.9397131 0.3419638 0.0000000 0.9397131 0.9396968 0.0000000 0.3420088 0.9396968 0.0000000 0.3420088 0.5000597 0.0000000 0.8659909 0.5000597 0.0000000 0.8659909 0.8870069 0.0000000 0.4617561 0.8870069 0.0000000 0.4617561 0.6428388 0.0000000 0.7660015 0.6428388 0.0000000 0.7660015 0.8434092 0.0000000 0.5372718 0.8434092 0.0000000 0.5372718 0.7660697 0.0000000 0.6427575 0.7660697 0.0000000 0.6427575 - - - - - - - - - - - - - - -

0 1 2 1 0 3 0 4 5 4 0 2 1 6 7 6 1 3 5 8 9 8 5 4 6 10 7 10 6 11 9 12 13 12 9 8 11 14 10 14 11 15 13 16 17 16 13 12 15 18 14 18 15 19 17 20 21 20 17 16 19 22 18 22 19 23 21 24 25 24 21 20 23 26 22 26 23 27 25 28 29 28 25 24 26 30 31 30 26 27 29 32 33 32 29 28 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 40 36 41 36 40 37 39 42 43 42 39 38 44 41 45 41 44 40 43 46 47 46 43 42 48 44 45 44 48 49 47 50 51 50 47 46 52 48 53 48 52 49 51 54 55 54 51 50 56 52 53 52 56 57 55 58 59 58 55 54 60 56 61 56 60 57 59 62 63 62 59 58 64 60 61 60 64 65 63 66 67 66 63 62 68 64 69 64 68 65 67 70 71 70 67 66 72 69 73 69 72 68 71 74 75 74 71 70 74 73 75 73 74 72

-
-
-
- - - - -7379.3188976 263.7795276 -4603.8661417 -7420.0393701 47.2440945 -4598.9015748 -7420.0393701 263.7795276 -4598.9015748 -7379.3188976 47.2440945 -4603.8661417 -7374.4645669 263.7795276 -4604.5236220 -7374.4645669 47.2440945 -4604.5236220 -7428.6811024 47.2440945 -4597.8503937 -7428.6811024 263.7795276 -4597.8503937 -7369.7874016 263.7795276 -4605.9685039 -7369.7874016 47.2440945 -4605.9685039 -7476.7125984 47.2440945 -4584.9763780 -7476.7125984 263.7795276 -4584.9763780 -7365.4133858 263.7795276 -4608.1692913 -7365.4133858 47.2440945 -4608.1692913 -7484.7244094 47.2440945 -4581.5708661 -7484.7244094 263.7795276 -4581.5708661 -7361.4645669 263.7795276 -4611.0629921 -7361.4645669 47.2440945 -4611.0629921 -7522.4724409 47.2440945 -4565.5078740 -7522.4724409 263.7795276 -4565.5078740 -7358.0472441 47.2440945 -4614.5708661 -7358.0472441 263.7795276 -4614.5708661 -7526.4527559 47.2440945 -4563.8740157 -7526.4527559 263.7795276 -4563.8740157 -7355.2559055 47.2440945 -4618.5944882 -7355.2559055 263.7795276 -4618.5944882 -7527.0039370 47.2440945 -4563.6496063 -7527.0039370 263.7795276 -4563.6496063 -7262.8110236 47.2440945 -4778.7125984 -7262.8110236 263.7795276 -4778.7125984 -7531.7795276 47.2440945 -4562.5669291 -7531.7795276 263.7795276 -4562.5669291 -7260.6338583 263.7795276 -4783.3740157 -7260.6338583 47.2440945 -4783.3740157 -7536.6653543 47.2440945 -4562.2834646 -7536.6653543 263.7795276 -4562.2834646 -7259.3031496 47.2440945 -4788.3464567 -7259.3031496 263.7795276 -4788.3464567 -7541.5314961 47.2440945 -4562.8149606 -7541.5314961 263.7795276 -4562.8149606 -7258.8543307 47.2440945 -4793.4763780 -7258.8543307 263.7795276 -4793.4763780 -7546.2480315 47.2440945 -4564.1417323 -7546.2480315 263.7795276 -4564.1417323 -7259.3031496 47.2440945 -4798.6023622 -7259.3031496 263.7795276 -4798.6023622 -7550.6771654 47.2440945 -4566.2322835 -7550.6771654 263.7795276 -4566.2322835 -7260.6338583 263.7795276 -4803.5748031 -7260.6338583 47.2440945 -4803.5748031 -7710.7913386 47.2440945 -4658.6732283 -7710.7913386 263.7795276 -4658.6732283 -7262.8110236 47.2440945 -4808.2401575 -7262.8110236 263.7795276 -4808.2401575 -7715.0078740 47.2440945 -4661.6259843 -7715.0078740 263.7795276 -4661.6259843 -7265.7637795 47.2440945 -4812.4566929 -7265.7637795 263.7795276 -4812.4566929 -7718.6496063 47.2440945 -4665.2677165 -7718.6496063 263.7795276 -4665.2677165 -7269.4015748 263.7795276 -4816.0944882 -7269.4015748 47.2440945 -4816.0944882 -7721.6023622 263.7795276 -4669.4842520 -7721.6023622 47.2440945 -4669.4842520 -7273.6181102 263.7795276 -4819.0472441 -7273.6181102 47.2440945 -4819.0472441 -7723.7755906 263.7795276 -4674.1456693 -7723.7755906 47.2440945 -4674.1456693 -7274.8110236 263.7795276 -4819.7362205 -7274.8110236 47.2440945 -4819.7362205 -7724.9330709 263.7795276 -4678.4685039 -7724.9330709 47.2440945 -4678.4685039 -7278.9921260 263.7795276 -4821.7283465 -7278.9921260 47.2440945 -4821.7283465 -7725.1102362 263.7795276 -4679.1181102 -7725.1102362 47.2440945 -4679.1181102 -7283.4370079 263.7795276 -4823.0472441 -7283.4370079 47.2440945 -4823.0472441 -7725.5551181 47.2440945 -4684.2480315 -7725.5551181 263.7795276 -4684.2480315 -7288.0314961 263.7795276 -4823.6496063 -7288.0314961 47.2440945 -4823.6496063 -7725.1102362 263.7795276 -4689.3740157 -7725.1102362 47.2440945 -4689.3740157 -7292.6614173 263.7795276 -4823.5314961 -7292.6614173 47.2440945 -4823.5314961 -7723.7755906 263.7795276 -4694.3464567 -7723.7755906 47.2440945 -4694.3464567 -7297.2165354 263.7795276 -4822.6850394 -7297.2165354 47.2440945 -4822.6850394 -7721.6023622 47.2440945 -4699.0118110 -7721.6023622 263.7795276 -4699.0118110 -7645.4251969 263.7795276 -4729.3818898 -7645.4251969 47.2440945 -4729.3818898 -7720.9133858 263.7795276 -4700.2047244 -7720.9133858 47.2440945 -4700.2047244 -7702.9842520 263.7795276 -4713.9606299 -7702.9842520 47.2440945 -4713.9606299 -7718.2874016 47.2440945 -4704.0236220 -7718.2874016 263.7795276 -4704.0236220 -7707.3503937 263.7795276 -4712.4133858 -7707.3503937 47.2440945 -4712.4133858 -7715.0984252 263.7795276 -4707.3818898 -7715.0984252 47.2440945 -4707.3818898 -7709.4133858 47.2440945 -4711.2952756 -7711.4212598 263.7795276 -4710.2047244 -7711.4212598 47.2440945 -4710.2047244 -7709.4133858 263.7795276 -4711.2952756 - - - - - - - - - - -0.1276221 -0.0000000 -0.9918229 -0.1208861 0.0000000 -0.9926664 -0.1208861 0.0000000 -0.9926664 -0.1276221 -0.0000000 -0.9918229 -0.2154207 0.0000000 -0.9765213 -0.2154207 0.0000000 -0.9765213 -0.1902938 0.0000000 -0.9817272 -0.1902938 0.0000000 -0.9817272 -0.3736060 0.0000000 -0.9275875 -0.3736060 0.0000000 -0.9275875 -0.3258399 0.0000000 -0.9454249 -0.3258399 0.0000000 -0.9454249 -0.5220765 -0.0000000 -0.8528986 -0.5220765 -0.0000000 -0.8528986 -0.3913719 0.0000000 -0.9202326 -0.3913719 0.0000000 -0.9202326 -0.6559481 -0.0000000 -0.7548060 -0.6559481 -0.0000000 -0.7548060 -0.3856540 0.0000000 -0.9226435 -0.3856540 0.0000000 -0.9226435 -0.7716170 0.0000000 -0.6360875 -0.7716170 0.0000000 -0.6360875 -0.3784123 0.0000000 -0.9256371 -0.3784123 0.0000000 -0.9256371 -0.8445585 0.0000000 -0.5354633 -0.8445585 0.0000000 -0.5354633 -0.3000980 -0.0000000 -0.9539084 -0.3000980 -0.0000000 -0.9539084 -0.8868673 0.0000000 -0.4620242 -0.8868673 0.0000000 -0.4620242 -0.1399861 -0.0000000 -0.9901535 -0.1399861 -0.0000000 -0.9901535 -0.9396399 -0.0000000 -0.3421650 -0.9396399 -0.0000000 -0.3421650 0.0254169 0.0000000 -0.9996769 0.0254169 0.0000000 -0.9996769 -0.9848345 -0.0000000 -0.1734963 -0.9848345 -0.0000000 -0.1734963 0.1903355 -0.0000000 -0.9817191 0.1903355 -0.0000000 -0.9817191 -1.0000000 0.0000000 0.0000333 -1.0000000 0.0000000 0.0000333 0.3500334 -0.0000000 -0.9367372 0.3500334 -0.0000000 -0.9367372 -0.9848287 -0.0000000 0.1735291 -0.9848287 -0.0000000 0.1735291 0.4638146 -0.0000002 -0.8859323 0.4638146 -0.0000002 -0.8859323 -0.9396952 -0.0000000 0.3420129 -0.9396952 -0.0000000 0.3420129 0.5373183 -0.0000002 -0.8433795 0.5373183 -0.0000002 -0.8433795 -0.8659395 -0.0000000 0.5001488 -0.8659395 -0.0000000 0.5001488 0.6428063 0.0000000 -0.7660288 0.6428063 0.0000000 -0.7660288 -0.7660288 0.0000000 0.6428063 -0.7660288 0.0000000 0.6428063 0.7660288 0.0000000 -0.6428063 0.7660288 0.0000000 -0.6428063 -0.6428063 -0.0000000 0.7660288 -0.6428063 -0.0000000 0.7660288 0.8660320 0.0000000 -0.4999886 0.8660320 0.0000000 -0.4999886 -0.5373858 -0.0000000 0.8433366 -0.5373858 -0.0000000 0.8433366 0.9397357 0.0000000 -0.3419017 0.9397357 0.0000000 -0.3419017 -0.4654973 0.0000000 0.8850493 -0.4654973 0.0000000 0.8850493 0.9653703 -0.0000000 -0.2608835 0.9653703 -0.0000000 -0.2608835 -0.3583902 0.0000000 0.9335719 -0.3583902 0.0000000 0.9335719 0.9844855 0.0000000 -0.1754662 0.9844855 0.0000000 -0.1754662 -0.2078776 -0.0000000 0.9781548 -0.2078776 -0.0000000 0.9781548 1.0000000 0.0000000 0.0000331 1.0000000 0.0000000 0.0000331 -0.0524050 -0.0000006 0.9986259 -0.0524050 -0.0000006 0.9986259 0.9848308 0.0000000 0.1735175 0.9848308 0.0000000 0.1735175 0.1044261 -0.0000006 0.9945327 0.1044261 -0.0000006 0.9945327 0.9396875 0.0000000 0.3420343 0.9396875 0.0000000 0.3420343 0.2209279 0.0000000 0.9752901 0.2209279 0.0000000 0.9752901 0.8870669 -0.0000000 0.4616410 0.8870669 -0.0000000 0.4616410 0.2588074 0.0000000 0.9659290 0.2588074 0.0000000 0.9659290 0.8456233 0.0000000 0.5337802 0.8456233 0.0000000 0.5337802 0.2966369 0.0000000 0.9549903 0.2966369 0.0000000 0.9549903 0.7769681 0.0000000 0.6295399 0.7769681 0.0000000 0.6295399 0.4066971 0.0000000 0.9135631 0.4066971 0.0000000 0.9135631 0.6690877 -0.0000000 0.7431835 0.6690877 -0.0000000 0.7431835 0.4768837 0.0000000 0.8789664 0.5445973 -0.0000000 0.8386977 0.5445973 -0.0000000 0.8386977 0.4768837 0.0000000 0.8789664 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 16 20 17 20 16 21 19 22 23 22 19 18 21 24 20 24 21 25 23 26 27 26 23 22 25 28 24 28 25 29 27 30 31 30 27 26 28 32 33 32 28 29 31 34 35 34 31 30 32 36 33 36 32 37 35 38 39 38 35 34 37 40 36 40 37 41 39 42 43 42 39 38 41 44 40 44 41 45 43 46 47 46 43 42 44 48 49 48 44 45 47 50 51 50 47 46 48 52 49 52 48 53 51 54 55 54 51 50 53 56 52 56 53 57 55 58 59 58 55 54 56 60 61 60 56 57 62 58 63 58 62 59 61 64 65 64 61 60 66 63 67 63 66 62 65 68 69 68 65 64 70 67 71 67 70 66 69 72 73 72 69 68 74 71 75 71 74 70 73 76 77 76 73 72 78 74 75 74 78 79 77 80 81 80 77 76 82 78 83 78 82 79 81 84 85 84 81 80 86 83 87 83 86 82 85 88 89 88 85 84 90 86 87 86 90 91 89 92 93 92 89 88 94 90 95 90 94 91 93 96 97 96 93 92 98 94 95 94 98 99 97 100 101 100 97 96 102 98 103 98 102 99 104 105 106 105 104 107 107 104 101 107 101 100 106 102 103 102 106 105

-
-
-
- - - - -3016.6492126 263.7795276 -2196.2696850 -3020.2748031 47.2440945 -2188.4952756 -3016.6492126 47.2440945 -2196.2696850 -3020.2748031 263.7795276 -2188.4952756 -3022.4948819 263.7795276 -2180.2090551 -3022.4948819 47.2440945 -2180.2090551 -3011.7291339 47.2440945 -2203.2968504 -3011.7291339 263.7795276 -2203.2968504 -3023.2425197 47.2440945 -2171.6637795 -3023.2425197 263.7795276 -2171.6637795 -3005.6629921 47.2440945 -2209.3625984 -3005.6629921 263.7795276 -2209.3625984 -3022.4948819 263.7795276 -2163.1177165 -3022.4948819 47.2440945 -2163.1177165 -2998.6362205 47.2440945 -2214.2830709 -2998.6362205 263.7795276 -2214.2830709 -3020.2748031 47.2440945 -2154.8318898 -3020.2748031 263.7795276 -2154.8318898 -2990.8618110 47.2440945 -2217.9082677 -2990.8618110 263.7795276 -2217.9082677 -3016.6492126 263.7795276 -2147.0570866 -3016.6492126 47.2440945 -2147.0570866 -2982.5759843 47.2440945 -2220.1283465 -2982.5759843 263.7795276 -2220.1283465 -3011.7291339 47.2440945 -2140.0303150 -3011.7291339 263.7795276 -2140.0303150 -2974.0299213 47.2440945 -2220.8759843 -2974.0299213 263.7795276 -2220.8759843 -3005.6633858 263.7795276 -2133.9645669 -3005.6633858 47.2440945 -2133.9645669 -2965.4846457 47.2440945 -2220.1287402 -2965.4846457 263.7795276 -2220.1287402 -2998.6362205 263.7795276 -2129.0440945 -2998.6362205 47.2440945 -2129.0440945 -2957.1984252 47.2440945 -2217.9082677 -2957.1984252 263.7795276 -2217.9082677 -2990.8618110 263.7795276 -2125.4188976 -2990.8618110 47.2440945 -2125.4188976 -2949.4236220 47.2440945 -2214.2830709 -2949.4236220 263.7795276 -2214.2830709 -2982.5759843 263.7795276 -2123.1984252 -2982.5759843 47.2440945 -2123.1984252 -2942.3968504 47.2440945 -2209.3625984 -2942.3968504 263.7795276 -2209.3625984 -2974.0299213 263.7795276 -2122.4511811 -2974.0299213 47.2440945 -2122.4511811 -2936.3311024 47.2440945 -2203.2968504 -2936.3311024 263.7795276 -2203.2968504 -2965.4846457 263.7795276 -2123.1984252 -2965.4846457 47.2440945 -2123.1984252 -2931.4106299 263.7795276 -2196.2700787 -2931.4106299 47.2440945 -2196.2700787 -2957.1984252 263.7795276 -2125.4188976 -2957.1984252 47.2440945 -2125.4188976 -2927.7858268 47.2440945 -2188.4952756 -2927.7858268 263.7795276 -2188.4952756 -2949.4236220 263.7795276 -2129.0440945 -2949.4236220 47.2440945 -2129.0440945 -2925.5649606 263.7795276 -2180.2090551 -2925.5649606 47.2440945 -2180.2090551 -2942.3968504 263.7795276 -2133.9645669 -2942.3968504 47.2440945 -2133.9645669 -2924.8173228 47.2440945 -2171.6633858 -2924.8173228 263.7795276 -2171.6633858 -2936.3311024 263.7795276 -2140.0303150 -2936.3311024 47.2440945 -2140.0303150 -2925.5653543 263.7795276 -2163.1181102 -2925.5653543 47.2440945 -2163.1181102 -2931.4106299 263.7795276 -2147.0574803 -2931.4106299 47.2440945 -2147.0574803 -2927.7858268 47.2440945 -2154.8318898 -2927.7858268 263.7795276 -2154.8318898 - - - - - - - - - - 0.8660263 -0.0000000 0.4999985 0.9396908 -0.0000000 0.3420253 0.8660263 -0.0000000 0.4999985 0.9396908 -0.0000000 0.3420253 0.9848095 -0.0000000 0.1736380 0.9848095 -0.0000000 0.1736380 0.7660461 -0.0000000 0.6427856 0.7660461 -0.0000000 0.6427856 1.0000000 -0.0000000 0.0000040 1.0000000 -0.0000000 0.0000040 0.6427852 0.0000000 0.7660465 0.6427852 0.0000000 0.7660465 0.9848092 -0.0000000 -0.1736399 0.9848092 -0.0000000 -0.1736399 0.5000081 0.0000000 0.8660207 0.5000081 0.0000000 0.8660207 0.9396920 -0.0000000 -0.3420217 0.9396920 -0.0000000 -0.3420217 0.3420113 0.0000000 0.9396958 0.3420113 0.0000000 0.9396958 0.8660246 0.0000000 -0.5000015 0.8660246 0.0000000 -0.5000015 0.1736399 -0.0000000 0.9848092 0.1736399 -0.0000000 0.9848092 0.7660481 0.0000000 -0.6427832 0.7660481 0.0000000 -0.6427832 0.0000189 -0.0000000 1.0000000 0.0000189 -0.0000000 1.0000000 0.6427875 0.0000000 -0.7660445 0.6427875 0.0000000 -0.7660445 -0.1736373 0.0000000 0.9848097 -0.1736373 0.0000000 0.9848097 0.4999967 0.0000000 -0.8660273 0.4999967 0.0000000 -0.8660273 -0.3420174 0.0000000 0.9396936 -0.3420174 0.0000000 0.9396936 0.3420321 0.0000000 -0.9396883 0.3420321 0.0000000 -0.9396883 -0.4999997 0.0000000 0.8660256 -0.4999997 0.0000000 0.8660256 0.1736392 0.0000000 -0.9848093 0.1736392 0.0000000 -0.9848093 -0.6427976 0.0000000 0.7660360 -0.6427976 0.0000000 0.7660360 -0.0000040 0.0000000 -1.0000000 -0.0000040 0.0000000 -1.0000000 -0.7660360 0.0000000 0.6427976 -0.7660360 0.0000000 0.6427976 -0.1736373 0.0000000 -0.9848097 -0.1736373 0.0000000 -0.9848097 -0.8660360 0.0000000 0.4999817 -0.8660360 0.0000000 0.4999817 -0.3420174 0.0000000 -0.9396936 -0.3420174 0.0000000 -0.9396936 -0.9396931 0.0000000 0.3420187 -0.9396931 0.0000000 0.3420187 -0.4999997 0.0000000 -0.8660256 -0.4999997 0.0000000 -0.8660256 -0.9848022 -0.0000000 0.1736797 -0.9848022 -0.0000000 0.1736797 -0.6427976 0.0000000 -0.7660360 -0.6427976 0.0000000 -0.7660360 -1.0000000 0.0000000 -0.0000249 -1.0000000 0.0000000 -0.0000249 -0.7660445 0.0000000 -0.6427875 -0.7660445 0.0000000 -0.6427875 -0.9848017 0.0000000 -0.1736823 -0.9848017 0.0000000 -0.1736823 -0.8660377 0.0000000 -0.4999787 -0.8660377 0.0000000 -0.4999787 -0.9396974 0.0000000 -0.3420070 -0.9396974 0.0000000 -0.3420070 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 6 0 2 0 6 7 4 8 5 8 4 9 10 7 6 7 10 11 8 12 13 12 8 9 14 11 10 11 14 15 12 16 13 16 12 17 18 15 14 15 18 19 16 20 21 20 16 17 22 19 18 19 22 23 20 24 21 24 20 25 26 23 22 23 26 27 24 28 29 28 24 25 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 46 51 46 50 47 52 49 48 49 52 53 54 50 51 50 54 55 56 53 52 53 56 57 58 54 59 54 58 55 60 57 56 57 60 61 62 58 59 58 62 63 64 61 60 61 64 65 66 62 67 62 66 63 65 68 69 68 65 64 70 66 67 66 70 71 68 70 69 70 68 71

-
-
-
- - - - -7297.5039370 47.2440945 -3901.4444882 -7343.1141732 263.7795276 -3896.1318898 -7343.1141732 47.2440945 -3896.1318898 -7297.5039370 263.7795276 -3901.4444882 -7252.9606299 47.2440945 -3912.6118110 -7252.9606299 263.7795276 -3912.6118110 -7347.9685039 263.7795276 -3895.4771654 -7347.9685039 47.2440945 -3895.4771654 -7210.2362205 47.2440945 -3929.4448819 -7210.2362205 263.7795276 -3929.4448819 -7352.6456693 263.7795276 -3894.0303150 -7352.6456693 47.2440945 -3894.0303150 -7205.6496063 47.2440945 -3931.1562992 -7205.6496063 263.7795276 -3931.1562992 -7357.0196850 263.7795276 -3891.8295276 -7357.0196850 47.2440945 -3891.8295276 -7200.8464567 47.2440945 -3932.0866142 -7200.8464567 263.7795276 -3932.0866142 -7360.9685039 263.7795276 -3888.9358268 -7360.9685039 47.2440945 -3888.9358268 -7195.9527559 47.2440945 -3932.2106299 -7195.9527559 263.7795276 -3932.2106299 -7364.3858268 47.2440945 -3885.4295276 -7364.3858268 263.7795276 -3885.4295276 -7191.1062992 47.2440945 -3931.5232283 -7191.1062992 263.7795276 -3931.5232283 -7367.1771654 263.7795276 -3881.4066929 -7367.1771654 47.2440945 -3881.4066929 -7186.4370079 47.2440945 -3930.0452756 -7186.4370079 263.7795276 -3930.0452756 -7425.5708661 47.2440945 -3780.2681102 -7425.5708661 263.7795276 -3780.2681102 -7182.0787402 47.2440945 -3927.8165354 -7182.0787402 263.7795276 -3927.8165354 -7466.4685039 47.2440945 -3709.4275591 -7466.4685039 263.7795276 -3709.4275591 -7178.1496063 47.2440945 -3924.8984252 -7178.1496063 263.7795276 -3924.8984252 -7468.5236220 263.7795276 -3705.0917323 -7468.5236220 47.2440945 -3705.0917323 -7174.7559055 263.7795276 -3921.3708661 -7174.7559055 47.2440945 -3921.3708661 -7469.8464567 47.2440945 -3700.4807087 -7469.8464567 263.7795276 -3700.4807087 -7171.9881890 47.2440945 -3917.3314961 -7171.9881890 263.7795276 -3917.3314961 -7470.4055118 47.2440945 -3695.7157480 -7470.4055118 263.7795276 -3695.7157480 -7084.2165354 263.7795276 -3763.0220472 -7084.2165354 47.2440945 -3763.0220472 -7470.1889764 263.7795276 -3690.9232283 -7470.1889764 47.2440945 -3690.9232283 -7082.1929134 47.2440945 -3758.6818898 -7082.1929134 263.7795276 -3758.6818898 -7469.1968504 47.2440945 -3686.2299213 -7469.1968504 263.7795276 -3686.2299213 -7080.9015748 263.7795276 -3754.0716535 -7080.9015748 47.2440945 -3754.0716535 -7467.4566929 47.2440945 -3681.7578740 -7467.4566929 263.7795276 -3681.7578740 -7080.3700787 47.2440945 -3749.3129921 -7080.3700787 263.7795276 -3749.3129921 -7465.0157480 263.7795276 -3677.6279528 -7465.0157480 47.2440945 -3677.6279528 -7080.6141732 263.7795276 -3744.5307087 -7080.6141732 47.2440945 -3744.5307087 -7461.9370079 47.2440945 -3673.9472441 -7461.9370079 263.7795276 -3673.9472441 -7081.6259843 263.7795276 -3739.8511811 -7081.6259843 47.2440945 -3739.8511811 -7458.3070866 263.7795276 -3670.8137795 -7458.3070866 47.2440945 -3670.8137795 -7083.3858268 263.7795276 -3735.3964567 -7083.3858268 47.2440945 -3735.3964567 -7454.2125984 263.7795276 -3668.3090551 -7454.2125984 47.2440945 -3668.3090551 -7085.8385827 263.7795276 -3731.2854331 -7085.8385827 47.2440945 -3731.2854331 -7449.7716535 263.7795276 -3666.5003937 -7449.7716535 47.2440945 -3666.5003937 -7088.9251969 263.7795276 -3727.6236220 -7088.9251969 47.2440945 -3727.6236220 -7445.0905512 263.7795276 -3665.4362205 -7445.0905512 47.2440945 -3665.4362205 -7092.5629921 47.2440945 -3724.5098425 -7092.5629921 263.7795276 -3724.5098425 -7355.7559055 263.7795276 -3659.4740157 -7355.7559055 47.2440945 -3659.4740157 -7096.6535433 47.2440945 -3722.0244094 -7096.6535433 263.7795276 -3722.0244094 -7266.5472441 263.7795276 -3667.0862205 -7266.5472441 47.2440945 -3667.0862205 -7179.5118110 47.2440945 -3688.0976378 -7179.5118110 263.7795276 -3688.0976378 - - - - - - - - - - 0.1798169 -0.0000001 0.9837001 0.1246856 -0.0000001 0.9921963 0.1246856 -0.0000001 0.9921963 0.1798169 -0.0000001 0.9837001 0.3055152 0.0000005 0.9521872 0.3055152 0.0000005 0.9521872 0.2153360 0.0000000 0.9765400 0.2153360 0.0000000 0.9765400 0.3580923 0.0000005 0.9336862 0.3580923 0.0000005 0.9336862 0.3737842 0.0000000 0.9275157 0.3737842 0.0000000 0.9275157 0.2708021 -0.0000000 0.9626350 0.2708021 -0.0000000 0.9626350 0.5220765 -0.0000000 0.8528986 0.5220765 -0.0000000 0.8528986 0.1081163 -0.0000000 0.9941383 0.1081163 -0.0000000 0.9941383 0.6558634 -0.0000000 0.7548796 0.6558634 -0.0000000 0.7548796 -0.0577477 0.0000000 0.9983312 -0.0577477 0.0000000 0.9983312 0.7715164 0.0000000 0.6362094 0.7715164 0.0000000 0.6362094 -0.2218607 0.0000000 0.9750784 -0.2218607 0.0000000 0.9750784 0.8445321 0.0000000 0.5355049 0.8445321 0.0000000 0.5355049 -0.3798463 0.0000000 0.9250496 -0.3798463 0.0000000 0.9250496 0.8660289 -0.0000005 0.4999940 0.8660289 -0.0000005 0.4999940 -0.5275870 0.0000000 0.8495010 -0.5275870 0.0000000 0.8495010 0.8855602 -0.0000005 0.4645245 0.8855602 -0.0000005 0.4645245 -0.6607140 0.0000000 0.7506377 -0.6607140 0.0000000 0.7506377 0.9355437 0.0000000 0.3532109 0.9355437 0.0000000 0.3532109 -0.7754385 0.0000000 0.6314231 -0.7754385 0.0000000 0.6314231 0.9804448 0.0000000 0.1967942 0.9804448 0.0000000 0.1967942 -0.8478182 0.0000003 0.5302870 -0.8478182 0.0000003 0.5302870 0.9993585 0.0000000 0.0358129 0.9993585 0.0000000 0.0358129 -0.8885016 0.0000003 0.4588734 -0.8885016 0.0000003 0.4588734 0.9919795 -0.0000000 -0.1263990 0.9919795 -0.0000000 -0.1263990 -0.9377519 0.0000000 0.3473058 -0.9377519 0.0000000 0.3473058 0.9583274 -0.0000000 -0.2856722 0.9583274 -0.0000000 -0.2856722 -0.9815928 0.0000000 0.1909860 -0.9815928 0.0000000 0.1909860 0.8993797 0.0000000 -0.4371683 0.8993797 0.0000000 -0.4371683 -0.9995465 0.0000000 0.0301115 -0.9995465 0.0000000 0.0301115 0.8166635 -0.0000000 -0.5771142 0.8166635 -0.0000000 -0.5771142 -0.9913046 0.0000000 -0.1315872 -0.9913046 0.0000000 -0.1315872 0.7125829 -0.0000000 -0.7015879 0.7125829 -0.0000000 -0.7015879 -0.9569220 -0.0000000 -0.2903453 -0.9569220 -0.0000000 -0.2903453 0.5895998 0.0000000 -0.8076956 0.5895998 0.0000000 -0.8076956 -0.8973429 -0.0000000 -0.4413341 -0.8973429 -0.0000000 -0.4413341 0.4509942 0.0000000 -0.8925269 0.4509942 0.0000000 -0.8925269 -0.8143701 0.0000000 -0.5803458 -0.8143701 0.0000000 -0.5803458 0.3004325 0.0000000 -0.9538031 0.3004325 0.0000000 -0.9538031 -0.7097782 -0.0000000 -0.7044253 -0.7097782 -0.0000000 -0.7044253 0.1445783 0.0000006 -0.9894934 0.1445783 0.0000006 -0.9894934 -0.5866901 -0.0000000 -0.8098115 -0.5866901 -0.0000000 -0.8098115 -0.0092426 0.0000007 -0.9999573 -0.0092426 0.0000007 -0.9999573 -0.4504875 0.0000000 -0.8927828 -0.4504875 0.0000000 -0.8927828 -0.1603076 0.0000003 -0.9870671 -0.1603076 0.0000003 -0.9870671 -0.3076817 0.0000002 -0.9514893 -0.3076817 0.0000002 -0.9514893 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 18 22 19 22 18 23 24 21 20 21 24 25 22 26 27 26 22 23 28 25 24 25 28 29 26 30 27 30 26 31 32 29 28 29 32 33 31 34 30 34 31 35 36 33 32 33 36 37 34 38 39 38 34 35 40 36 41 36 40 37 38 42 39 42 38 43 44 40 41 40 44 45 43 46 42 46 43 47 48 44 49 44 48 45 46 50 51 50 46 47 52 48 49 48 52 53 50 54 51 54 50 55 56 52 57 52 56 53 55 58 54 58 55 59 60 56 57 56 60 61 58 62 63 62 58 59 64 60 65 60 64 61 62 66 63 66 62 67 68 65 69 65 68 64 70 66 67 66 70 71 72 69 73 69 72 68 74 71 70 71 74 75 76 73 77 73 76 72 78 75 74 75 78 79 80 77 81 77 80 76 82 79 78 79 82 83 80 84 85 84 80 81 86 83 82 83 86 87 85 88 89 88 85 84 90 87 86 87 90 91 89 92 93 92 89 88 93 91 90 91 93 92

-
-
-
- - - - -7565.4409449 263.7795276 -4016.4606299 -7571.5433071 47.2440945 -4007.7480315 -7565.4409449 47.2440945 -4016.4606299 -7571.5433071 263.7795276 -4007.7480315 -7557.9212598 263.7795276 -4023.9842520 -7557.9212598 47.2440945 -4023.9842520 -7601.0708661 47.2440945 -3956.6062992 -7601.0708661 263.7795276 -3956.6062992 -7549.2086614 47.2440945 -4030.0826772 -7549.2086614 263.7795276 -4030.0826772 -7605.5669291 47.2440945 -3946.9645669 -7605.5669291 263.7795276 -3946.9645669 -7539.5669291 47.2440945 -4034.5787402 -7539.5669291 263.7795276 -4034.5787402 -7608.3188976 47.2440945 -3936.6897638 -7608.3188976 263.7795276 -3936.6897638 -7529.2913386 47.2440945 -4037.3307087 -7529.2913386 263.7795276 -4037.3307087 -7609.2480315 47.2440945 -3926.0933071 -7609.2480315 263.7795276 -3926.0933071 -7518.6968504 47.2440945 -4038.2598425 -7518.6968504 263.7795276 -4038.2598425 -7608.3188976 263.7795276 -3915.4968504 -7608.3188976 47.2440945 -3915.4968504 -7508.0984252 47.2440945 -4037.3307087 -7508.0984252 263.7795276 -4037.3307087 -7605.5669291 47.2440945 -3905.2216535 -7605.5669291 263.7795276 -3905.2216535 -7497.8228346 47.2440945 -4034.5787402 -7497.8228346 263.7795276 -4034.5787402 -7601.0708661 47.2440945 -3895.5811024 -7601.0708661 263.7795276 -3895.5811024 -7488.1850394 47.2440945 -4030.0826772 -7488.1850394 263.7795276 -4030.0826772 -7594.9685039 47.2440945 -3886.8677165 -7594.9685039 263.7795276 -3886.8677165 -7479.4724409 47.2440945 -4023.9842520 -7479.4724409 263.7795276 -4023.9842520 -7587.4488189 263.7795276 -3879.3464567 -7587.4488189 47.2440945 -3879.3464567 -7471.9488189 47.2440945 -4016.4606299 -7471.9488189 263.7795276 -4016.4606299 -7578.7362205 263.7795276 -3873.2448819 -7578.7362205 47.2440945 -3873.2448819 -7465.8464567 263.7795276 -4007.7480315 -7465.8464567 47.2440945 -4007.7480315 -7569.0944882 263.7795276 -3868.7500000 -7569.0944882 47.2440945 -3868.7500000 -7461.3543307 47.2440945 -3998.1062992 -7461.3543307 263.7795276 -3998.1062992 -7558.8188976 263.7795276 -3865.9960630 -7558.8188976 47.2440945 -3865.9960630 -7458.5984252 263.7795276 -3987.8346457 -7458.5984252 47.2440945 -3987.8346457 -7548.2244094 263.7795276 -3865.0692913 -7548.2244094 47.2440945 -3865.0692913 -7457.6732283 263.7795276 -3977.2362205 -7457.6732283 47.2440945 -3977.2362205 -7537.6259843 263.7795276 -3865.9960630 -7537.6259843 47.2440945 -3865.9960630 -7458.5984252 263.7795276 -3966.6377953 -7458.5984252 47.2440945 -3966.6377953 -7527.3503937 263.7795276 -3868.7500000 -7527.3503937 47.2440945 -3868.7500000 -7461.3543307 263.7795276 -3956.3661417 -7461.3543307 47.2440945 -3956.3661417 -7517.7125984 263.7795276 -3873.2448819 -7517.7125984 47.2440945 -3873.2448819 -7465.8464567 263.7795276 -3946.7244094 -7465.8464567 47.2440945 -3946.7244094 -7509.0000000 263.7795276 -3879.3464567 -7509.0000000 47.2440945 -3879.3464567 -7495.3740157 263.7795276 -3895.5811024 -7495.3740157 47.2440945 -3895.5811024 -7501.4763780 263.7795276 -3886.8677165 -7501.4763780 47.2440945 -3886.8677165 - - - - - - - - - - 0.7660856 0.0000000 0.6427385 0.8433521 0.0000000 0.5373613 0.7660856 0.0000000 0.6427385 0.8433521 0.0000000 0.5373613 0.6428229 0.0000000 0.7660148 0.6428229 0.0000000 0.7660148 0.8870069 -0.0000000 0.4617561 0.8870069 -0.0000000 0.4617561 0.4999284 0.0000000 0.8660667 0.4999284 0.0000000 0.8660667 0.9397099 0.0000000 0.3419728 0.9397099 0.0000000 0.3419728 0.3419638 0.0000000 0.9397131 0.3419638 0.0000000 0.9397131 0.9848001 0.0000000 0.1736916 0.9848001 0.0000000 0.1736916 0.1736902 0.0000000 0.9848003 0.1736902 0.0000000 0.9848003 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.0000162 0.0000000 1.0000000 0.0000162 0.0000000 1.0000000 0.9848009 0.0000000 -0.1736869 0.9848009 0.0000000 -0.1736869 -0.1736743 -0.0000000 0.9848032 -0.1736743 -0.0000000 0.9848032 0.9397035 0.0000000 -0.3419903 0.9397035 0.0000000 -0.3419903 -0.3420373 0.0000000 0.9396864 -0.3420373 0.0000000 0.9396864 0.8659898 0.0000000 -0.5000616 0.8659898 0.0000000 -0.5000616 -0.4999961 0.0000000 0.8660276 -0.4999961 0.0000000 0.8660276 0.7660488 0.0000000 -0.6427824 0.7660488 0.0000000 -0.6427824 -0.6427226 -0.0000000 0.7660989 -0.6427226 -0.0000000 0.7660989 0.6428557 0.0000000 -0.7659873 0.6428557 0.0000000 -0.7659873 -0.7660015 0.0000000 0.6428388 -0.7660015 0.0000000 0.6428388 0.4999899 0.0000000 -0.8660313 0.4999899 0.0000000 -0.8660313 -0.8660748 0.0000000 0.4999144 -0.8660748 0.0000000 0.4999144 0.3420005 -0.0000000 -0.9396998 0.3420005 -0.0000000 -0.9396998 -0.9396930 0.0000000 0.3420192 -0.9396930 0.0000000 0.3420192 0.1736692 -0.0000000 -0.9848040 0.1736692 -0.0000000 -0.9848040 -0.9847958 -0.0000000 0.1737160 -0.9847958 -0.0000000 0.1737160 0.0000161 -0.0000000 -1.0000000 0.0000161 -0.0000000 -1.0000000 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.1736534 -0.0000000 -0.9848068 -0.1736534 -0.0000000 -0.9848068 -0.9847958 0.0000000 -0.1737160 -0.9847958 0.0000000 -0.1737160 -0.3420740 -0.0000000 -0.9396730 -0.3420740 -0.0000000 -0.9396730 -0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 -0.3420192 -0.5000576 0.0000000 -0.8659922 -0.5000576 0.0000000 -0.8659922 -0.8870874 0.0000000 -0.4616014 -0.8870874 0.0000000 -0.4616014 -0.6427554 0.0000000 -0.7660714 -0.6427554 0.0000000 -0.7660714 -0.8433671 0.0000000 -0.5373378 -0.8433671 0.0000000 -0.5373378 -0.7659647 0.0000000 -0.6428827 -0.7659647 0.0000000 -0.6428827 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 4 5 4 8 9 7 10 6 10 7 11 12 9 8 9 12 13 11 14 10 14 11 15 16 13 12 13 16 17 15 18 14 18 15 19 20 17 16 17 20 21 18 22 23 22 18 19 24 21 20 21 24 25 22 26 23 26 22 27 28 25 24 25 28 29 27 30 26 30 27 31 32 29 28 29 32 33 31 34 30 34 31 35 36 33 32 33 36 37 34 38 39 38 34 35 40 37 36 37 40 41 42 39 38 39 42 43 44 40 45 40 44 41 46 43 42 43 46 47 48 44 45 44 48 49 50 47 46 47 50 51 52 48 53 48 52 49 54 51 50 51 54 55 56 53 57 53 56 52 58 55 54 55 58 59 60 57 61 57 60 56 62 59 58 59 62 63 64 61 65 61 64 60 66 63 62 63 66 67 68 65 69 65 68 64 70 67 66 67 70 71 72 69 73 69 72 68 74 71 70 71 74 75 75 72 73 72 75 74

-
-
-
- - - - -7709.0629921 263.7795276 -4182.5354331 -7710.1181102 47.2440945 -4191.1771654 -7709.0629921 47.2440945 -4182.5354331 -7715.0826772 263.7795276 -4231.8976378 -7715.0826772 47.2440945 -4231.8976378 -7710.1181102 263.7795276 -4191.1771654 -7696.1929134 263.7795276 -4134.5000000 -7696.1929134 47.2440945 -4134.5000000 -7715.6574803 47.2440945 -4236.1614173 -7715.6574803 263.7795276 -4236.1614173 -7692.7874016 47.2440945 -4126.4921260 -7692.7874016 263.7795276 -4126.4921260 -7715.7401575 47.2440945 -4236.7519685 -7715.7401575 263.7795276 -4236.7519685 -7676.7244094 263.7795276 -4088.7440945 -7676.7244094 47.2440945 -4088.7440945 -7717.1850394 47.2440945 -4241.4291339 -7717.1850394 263.7795276 -4241.4291339 -7674.8661417 47.2440945 -4084.2125984 -7674.8661417 263.7795276 -4084.2125984 -7719.3858268 47.2440945 -4245.8031496 -7719.3858268 263.7795276 -4245.8031496 -7673.7795276 263.7795276 -4079.4370079 -7673.7795276 47.2440945 -4079.4370079 -7722.2795276 47.2440945 -4249.7519685 -7722.2795276 263.7795276 -4249.7519685 -7673.5000000 47.2440945 -4074.5511811 -7673.5000000 263.7795276 -4074.5511811 -7725.7874016 263.7795276 -4253.1692913 -7725.7874016 47.2440945 -4253.1692913 -7674.0314961 263.7795276 -4069.6811024 -7674.0314961 47.2440945 -4069.6811024 -7729.8110236 263.7795276 -4255.9606299 -7729.8110236 47.2440945 -4255.9606299 -7675.3582677 47.2440945 -4064.9685039 -7675.3582677 263.7795276 -4064.9685039 -7871.5196850 263.7795276 -4337.7755906 -7871.5196850 47.2440945 -4337.7755906 -7677.4448819 263.7795276 -4060.5393701 -7677.4448819 47.2440945 -4060.5393701 -7889.9251969 263.7795276 -4348.4055118 -7889.9251969 47.2440945 -4348.4055118 -7761.2322835 47.2440945 -3915.4220472 -7761.2322835 263.7795276 -3915.4220472 -7894.5905512 263.7795276 -4350.5826772 -7894.5905512 47.2440945 -4350.5826772 -7769.8897638 263.7795276 -3900.4228346 -7769.8897638 47.2440945 -3900.4228346 -7899.5629921 263.7795276 -4351.9133858 -7899.5629921 47.2440945 -4351.9133858 -7772.8425197 263.7795276 -3896.2070866 -7772.8425197 47.2440945 -3896.2070866 -7904.6889764 263.7795276 -4352.3622047 -7904.6889764 47.2440945 -4352.3622047 -7776.4803150 263.7795276 -3892.5673228 -7776.4803150 47.2440945 -3892.5673228 -7909.8188976 263.7795276 -4351.9133858 -7909.8188976 47.2440945 -4351.9133858 -7780.6968504 47.2440945 -3889.6149606 -7780.6968504 263.7795276 -3889.6149606 -7914.7913386 263.7795276 -4350.5826772 -7914.7913386 47.2440945 -4350.5826772 -7785.3622047 47.2440945 -3887.4397638 -7785.3622047 263.7795276 -3887.4397638 -7919.4527559 263.7795276 -4348.4055118 -7919.4527559 47.2440945 -4348.4055118 -7790.3346457 47.2440945 -3886.1074803 -7790.3346457 263.7795276 -3886.1074803 -7923.6692913 263.7795276 -4345.4527559 -7923.6692913 47.2440945 -4345.4527559 -7795.4606299 47.2440945 -3885.6590551 -7795.4606299 263.7795276 -3885.6590551 -7927.3110236 263.7795276 -4341.8149606 -7927.3110236 47.2440945 -4341.8149606 -7800.5905512 47.2440945 -3886.1074803 -7800.5905512 263.7795276 -3886.1074803 -7930.2637795 47.2440945 -4337.5984252 -7930.2637795 263.7795276 -4337.5984252 -7805.5590551 47.2440945 -3887.4397638 -7805.5590551 263.7795276 -3887.4397638 -7930.9527559 47.2440945 -4336.4055118 -7930.9527559 263.7795276 -4336.4055118 -7810.2244094 47.2440945 -3889.6149606 -7810.2244094 263.7795276 -3889.6149606 -7932.9448819 47.2440945 -4332.2204724 -7932.9448819 263.7795276 -4332.2204724 -7811.4173228 47.2440945 -3890.3039370 -7811.4173228 263.7795276 -3890.3039370 -7934.2637795 47.2440945 -4327.7795276 -7934.2637795 263.7795276 -4327.7795276 -7815.2362205 47.2440945 -3892.9283465 -7815.2362205 263.7795276 -3892.9283465 -7934.8661417 47.2440945 -4323.1850394 -7934.8661417 263.7795276 -4323.1850394 -7818.5984252 47.2440945 -3896.1177165 -7818.5984252 263.7795276 -3896.1177165 -7934.8070866 47.2440945 -4320.9015748 -7934.7440945 263.7795276 -4318.5551181 -7934.7440945 47.2440945 -4318.5551181 -7934.8070866 263.7795276 -4320.9015748 -7821.4173228 263.7795276 -3899.7940945 -7821.4173228 47.2440945 -3899.7940945 -7933.9015748 47.2440945 -4314.0000000 -7933.9015748 263.7795276 -4314.0000000 -7822.5118110 47.2440945 -3901.8027559 -7822.5118110 263.7795276 -3901.8027559 -7918.4763780 263.7795276 -4256.4409449 -7918.4763780 47.2440945 -4256.4409449 -7823.6299213 47.2440945 -3903.8657480 -7823.6299213 263.7795276 -3903.8657480 -7857.7480315 47.2440945 -4029.7874016 -7857.7480315 263.7795276 -4029.7874016 -7825.1771654 263.7795276 -3908.2334646 -7825.1771654 47.2440945 -3908.2334646 -7839.1574803 47.2440945 -3960.4133858 -7839.1574803 263.7795276 -3960.4133858 - - - - - - - - - - -0.9817083 0.0000000 0.1903910 -0.9926473 0.0000000 0.1210430 -0.9817083 0.0000000 0.1903910 -0.9918610 0.0000000 0.1273251 -0.9918610 0.0000000 0.1273251 -0.9926473 0.0000000 0.1210430 -0.9454119 0.0000000 0.3258778 -0.9454119 0.0000000 0.3258778 -0.9906916 -0.0000000 0.1361254 -0.9906916 -0.0000000 0.1361254 -0.9201980 -0.0000000 0.3914533 -0.9201980 -0.0000000 0.3914533 -0.9760371 0.0000000 0.2176042 -0.9760371 0.0000000 0.2176042 -0.9227105 -0.0000000 0.3854935 -0.9227105 -0.0000000 0.3854935 -0.9275875 0.0000000 0.3736060 -0.9275875 0.0000000 0.3736060 -0.9534120 0.0000000 0.3016713 -0.9534120 0.0000000 0.3016713 -0.8528986 0.0000000 0.5220765 -0.8528986 0.0000000 0.5220765 -0.9901548 0.0000000 0.1399766 -0.9901548 0.0000000 0.1399766 -0.7548060 0.0000000 0.6559481 -0.7548060 0.0000000 0.6559481 -0.9996678 0.0000000 -0.0257747 -0.9996678 0.0000000 -0.0257747 -0.6360875 -0.0000000 0.7716170 -0.6360875 -0.0000000 0.7716170 -0.9817067 -0.0000000 -0.1903996 -0.9817067 -0.0000000 -0.1903996 -0.5354608 -0.0000000 0.8445601 -0.5354608 -0.0000000 0.8445601 -0.9368263 -0.0000000 -0.3497948 -0.9368263 -0.0000000 -0.3497948 -0.5000603 0.0000000 0.8659906 -0.5000603 0.0000000 0.8659906 -0.8860954 -0.0000006 -0.4635030 -0.8860954 -0.0000006 -0.4635030 -0.4619425 -0.0000000 0.8869099 -0.4619425 -0.0000000 0.8869099 -0.8660495 -0.0000006 -0.4999582 -0.8660495 -0.0000006 -0.4999582 -0.3420129 0.0000000 0.9396952 -0.3420129 0.0000000 0.9396952 -0.8433859 -0.0000000 -0.5373082 -0.8433859 -0.0000000 -0.5373082 -0.1735291 0.0000000 0.9848287 -0.1735291 0.0000000 0.9848287 -0.7660875 -0.0000000 -0.6427363 -0.7660875 -0.0000000 -0.6427363 -0.0000333 0.0000000 1.0000000 -0.0000333 0.0000000 1.0000000 -0.6428859 -0.0000000 -0.7659620 -0.6428859 -0.0000000 -0.7659620 0.1735092 -0.0000004 0.9848323 0.1735092 -0.0000004 0.9848323 -0.4999716 0.0000000 -0.8660418 -0.4999716 0.0000000 -0.8660418 0.3421773 -0.0000004 0.9396354 0.3421773 -0.0000004 0.9396354 -0.3419890 0.0000000 -0.9397040 -0.3419890 0.0000000 -0.9397040 0.5002889 0.0000000 0.8658586 0.5002889 0.0000000 0.8658586 -0.1736371 0.0000000 -0.9848097 -0.1736371 0.0000000 -0.9848097 0.6425991 0.0000000 0.7662026 0.6425991 0.0000000 0.7662026 -0.0000333 0.0000000 -1.0000000 -0.0000333 0.0000000 -1.0000000 0.7658549 -0.0000000 0.6430134 0.7658549 -0.0000000 0.6430134 0.1737018 0.0000000 -0.9847983 0.1737018 0.0000000 -0.9847983 0.8433366 0.0000000 0.5373858 0.8433366 0.0000000 0.5373858 0.3420820 0.0000000 -0.9396701 0.3420820 0.0000000 -0.9396701 0.8851343 0.0000000 0.4653356 0.8851343 0.0000000 0.4653356 0.4617947 0.0000000 -0.8869868 0.4617947 0.0000000 -0.8869868 0.9335940 0.0000000 0.3583325 0.9335940 0.0000000 0.3583325 0.5336618 -0.0000000 -0.8456980 0.5336618 -0.0000000 -0.8456980 0.9781297 0.0000000 0.2079958 0.9781297 0.0000000 0.2079958 0.6292278 0.0000000 -0.7772210 0.6292278 0.0000000 -0.7772210 0.9986482 0.0000000 0.0519792 0.9986482 0.0000000 0.0519792 0.7431993 0.0000000 -0.6690701 0.7431993 0.0000000 -0.6690701 0.9996527 0.0000000 -0.0263536 0.9945318 0.0000000 -0.1044346 0.9945318 0.0000000 -0.1044346 0.9996527 0.0000000 -0.0263536 0.8383624 0.0000000 -0.5451132 0.8383624 0.0000000 -0.5451132 0.9753785 0.0000000 -0.2205374 0.9753785 0.0000000 -0.2205374 0.8786409 -0.0000000 -0.4774831 0.8786409 -0.0000000 -0.4774831 0.9659228 0.0000000 -0.2588305 0.9659228 0.0000000 -0.2588305 0.9136750 -0.0000000 -0.4064455 0.9136750 -0.0000000 -0.4064455 0.9659244 0.0000000 -0.2588245 0.9659244 0.0000000 -0.2588245 0.9550065 0.0000000 -0.2965847 0.9550065 0.0000000 -0.2965847 0.9659255 0.0000000 -0.2588202 0.9659255 0.0000000 -0.2588202 - - - - - - - - - - - - - - -

0 1 2 1 3 4 3 1 0 3 0 5 6 2 7 2 6 0 3 8 4 8 3 9 10 6 7 6 10 11 9 12 8 12 9 13 14 10 15 10 14 11 13 16 12 16 13 17 18 14 15 14 18 19 17 20 16 20 17 21 22 18 23 18 22 19 21 24 20 24 21 25 26 22 23 22 26 27 24 28 29 28 24 25 30 26 31 26 30 27 29 32 33 32 29 28 34 30 31 30 34 35 33 36 37 36 33 32 38 34 39 34 38 35 37 40 41 40 37 36 42 38 39 38 42 43 41 44 45 44 41 40 46 42 47 42 46 43 45 48 49 48 45 44 50 47 51 47 50 46 49 52 53 52 49 48 54 51 55 51 54 50 53 56 57 56 53 52 54 58 59 58 54 55 57 60 61 60 57 56 59 62 63 62 59 58 61 64 65 64 61 60 63 66 67 66 63 62 65 68 69 68 65 64 67 70 71 70 67 66 69 72 73 72 69 68 71 74 75 74 71 70 72 76 73 76 72 77 75 78 79 78 75 74 77 80 76 80 77 81 79 82 83 82 79 78 81 84 80 84 81 85 83 86 87 86 83 82 85 88 84 88 85 89 87 90 91 90 87 86 89 92 88 92 89 93 91 94 95 94 91 90 93 96 92 96 97 98 97 96 99 99 96 93 100 94 101 94 100 95 97 102 98 102 97 103 104 100 101 100 104 105 102 106 107 106 102 103 108 105 104 105 108 109 106 110 107 110 106 111 112 108 113 108 112 109 111 114 110 114 111 115 114 112 113 112 114 115

-
-
-
- - - - -3367.7307087 263.7795276 -1440.5409449 -3376.2767717 47.2440945 -1441.2889764 -3376.2767717 263.7795276 -1441.2889764 -3367.7307087 47.2440945 -1440.5409449 -3384.5625984 47.2440945 -1443.5090551 -3384.5625984 263.7795276 -1443.5090551 -3359.1854331 263.7795276 -1441.2885827 -3359.1854331 47.2440945 -1441.2885827 -3392.3370079 47.2440945 -1447.1342520 -3392.3370079 263.7795276 -1447.1342520 -3350.8992126 263.7795276 -1443.5090551 -3350.8992126 47.2440945 -1443.5090551 -3399.3641732 47.2440945 -1452.0547244 -3399.3641732 263.7795276 -1452.0547244 -3343.1244094 263.7795276 -1447.1342520 -3343.1244094 47.2440945 -1447.1342520 -3405.4299213 263.7795276 -1458.1204724 -3405.4299213 47.2440945 -1458.1204724 -3336.0976378 263.7795276 -1452.0547244 -3336.0976378 47.2440945 -1452.0547244 -3410.3500000 47.2440945 -1465.1472441 -3410.3500000 263.7795276 -1465.1472441 -3330.0318898 263.7795276 -1458.1204724 -3330.0318898 47.2440945 -1458.1204724 -3413.9755906 263.7795276 -1472.9220472 -3413.9755906 47.2440945 -1472.9220472 -3325.1114173 47.2440945 -1465.1472441 -3325.1114173 263.7795276 -1465.1472441 -3416.1956693 47.2440945 -1481.2078740 -3416.1956693 263.7795276 -1481.2078740 -3321.4866142 263.7795276 -1472.9220472 -3321.4866142 47.2440945 -1472.9220472 -3416.9433071 263.7795276 -1489.7535433 -3416.9433071 47.2440945 -1489.7535433 -3319.2661417 47.2440945 -1481.2078740 -3319.2661417 263.7795276 -1481.2078740 -3416.1956693 47.2440945 -1498.2992126 -3416.1956693 263.7795276 -1498.2992126 -3318.5181102 263.7795276 -1489.7535433 -3318.5181102 47.2440945 -1489.7535433 -3413.9755906 263.7795276 -1506.5854331 -3413.9755906 47.2440945 -1506.5854331 -3319.2657480 47.2440945 -1498.2992126 -3319.2657480 263.7795276 -1498.2992126 -3410.3500000 263.7795276 -1514.3598425 -3410.3500000 47.2440945 -1514.3598425 -3321.4866142 263.7795276 -1506.5854331 -3321.4866142 47.2440945 -1506.5854331 -3405.4299213 47.2440945 -1521.3870079 -3405.4299213 263.7795276 -1521.3870079 -3325.1114173 263.7795276 -1514.3598425 -3325.1114173 47.2440945 -1514.3598425 -3399.3637795 47.2440945 -1527.4527559 -3399.3637795 263.7795276 -1527.4527559 -3330.0318898 47.2440945 -1521.3870079 -3330.0318898 263.7795276 -1521.3870079 -3392.3370079 47.2440945 -1532.3732283 -3392.3370079 263.7795276 -1532.3732283 -3336.0976378 263.7795276 -1527.4527559 -3336.0976378 47.2440945 -1527.4527559 -3384.5625984 47.2440945 -1535.9984252 -3384.5625984 263.7795276 -1535.9984252 -3343.1244094 263.7795276 -1532.3732283 -3343.1244094 47.2440945 -1532.3732283 -3376.2767717 47.2440945 -1538.2188976 -3376.2767717 263.7795276 -1538.2188976 -3350.8992126 263.7795276 -1535.9984252 -3350.8992126 47.2440945 -1535.9984252 -3367.7307087 47.2440945 -1538.9661417 -3367.7307087 263.7795276 -1538.9661417 -3359.1854331 263.7795276 -1538.2188976 -3359.1854331 47.2440945 -1538.2188976 - - - - - - - - - - 0.0000186 0.0000000 -1.0000000 0.1736622 0.0000000 -0.9848053 0.1736622 0.0000000 -0.9848053 0.0000186 0.0000000 -1.0000000 0.3420113 0.0000000 -0.9396958 0.3420113 0.0000000 -0.9396958 -0.1736598 0.0000000 -0.9848057 -0.1736598 0.0000000 -0.9848057 0.4999967 0.0000000 -0.8660273 0.4999967 0.0000000 -0.8660273 -0.3420174 0.0000000 -0.9396936 -0.3420174 0.0000000 -0.9396936 0.6427875 -0.0000000 -0.7660445 0.6427875 -0.0000000 -0.7660445 -0.4999997 0.0000000 -0.8660256 -0.4999997 0.0000000 -0.8660256 0.7660488 -0.0000001 -0.6427824 0.7660488 -0.0000001 -0.6427824 -0.6427976 -0.0000000 -0.7660360 -0.6427976 -0.0000000 -0.7660360 0.8660251 -0.0000001 -0.5000005 0.8660251 -0.0000001 -0.5000005 -0.7660360 -0.0000000 -0.6427976 -0.7660360 -0.0000000 -0.6427976 0.9396920 0.0000000 -0.3420217 0.9396920 0.0000000 -0.3420217 -0.8660360 -0.0000000 -0.4999817 -0.8660360 -0.0000000 -0.4999817 0.9848089 0.0000000 -0.1736419 0.9848089 0.0000000 -0.1736419 -0.9396987 -0.0000000 -0.3420035 -0.9396987 -0.0000000 -0.3420035 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -0.9848010 0.0000000 -0.1736862 -0.9848010 0.0000000 -0.1736862 0.9848099 -0.0000000 0.1736360 0.9848099 -0.0000000 0.1736360 -1.0000000 0.0000000 -0.0000229 -1.0000000 0.0000000 -0.0000229 0.9396908 -0.0000000 0.3420253 0.9396908 -0.0000000 0.3420253 -0.9848022 -0.0000000 0.1736797 -0.9848022 -0.0000000 0.1736797 0.8660263 -0.0000000 0.4999985 0.8660263 -0.0000000 0.4999985 -0.9396898 0.0000000 0.3420278 -0.9396898 0.0000000 0.3420278 0.7660461 -0.0000000 0.6427856 0.7660461 -0.0000000 0.6427856 -0.8660377 0.0000000 0.4999787 -0.8660377 0.0000000 0.4999787 0.6427852 -0.0000000 0.7660465 0.6427852 -0.0000000 0.7660465 -0.7660445 -0.0000000 0.6427875 -0.7660445 -0.0000000 0.6427875 0.5000081 0.0000000 0.8660207 0.5000081 0.0000000 0.8660207 -0.6427976 -0.0000000 0.7660360 -0.6427976 -0.0000000 0.7660360 0.3420321 0.0000000 0.9396883 0.3420321 0.0000000 0.9396883 -0.4999997 0.0000000 0.8660256 -0.4999997 0.0000000 0.8660256 0.1736392 0.0000000 0.9848093 0.1736392 0.0000000 0.9848093 -0.3420174 0.0000000 0.9396936 -0.3420174 0.0000000 0.9396936 -0.0000040 0.0000000 1.0000000 -0.0000040 0.0000000 1.0000000 -0.1736373 0.0000000 0.9848097 -0.1736373 0.0000000 0.9848097 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 16 12 17 12 16 13 18 15 14 15 18 19 20 16 17 16 20 21 22 19 18 19 22 23 24 20 25 20 24 21 22 26 23 26 22 27 28 24 25 24 28 29 26 30 31 30 26 27 32 28 33 28 32 29 30 34 31 34 30 35 36 32 33 32 36 37 34 38 39 38 34 35 40 36 41 36 40 37 38 42 39 42 38 43 44 41 45 41 44 40 42 46 47 46 42 43 48 44 45 44 48 49 47 50 51 50 47 46 52 49 48 49 52 53 50 54 51 54 50 55 56 53 52 53 56 57 54 58 59 58 54 55 60 57 56 57 60 61 59 62 63 62 59 58 64 61 60 61 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 71 69 68 69 71 70

-
-
-
- - - - -2945.7897638 47.2440945 -1735.9846457 -3365.4590551 263.7795276 -1978.2807087 -3365.4590551 47.2440945 -1978.2807087 -2945.7897638 263.7795276 -1735.9846457 -3365.4590551 47.2440945 -1978.2807087 -3364.6070866 263.7795276 -1983.3562992 -3364.6070866 47.2440945 -1983.3562992 -3365.4590551 263.7795276 -1978.2807087 -2942.0440945 47.2440945 -1739.1062992 -2945.7897638 263.7795276 -1735.9846457 -2945.7897638 47.2440945 -1735.9846457 -2942.0440945 263.7795276 -1739.1062992 -3364.6484252 47.2440945 -1988.5035433 -3364.6484252 263.7795276 -1988.5035433 -2937.8334646 47.2440945 -1741.5685039 -2937.8334646 263.7795276 -1741.5685039 -3365.5830709 47.2440945 -1993.5645669 -3365.5830709 263.7795276 -1993.5645669 -2933.2763780 47.2440945 -1743.3043307 -2933.2763780 263.7795276 -1743.3043307 -3367.3826772 263.7795276 -1998.3870079 -3367.3826772 47.2440945 -1998.3870079 -2928.4952756 47.2440945 -1744.2661417 -2928.4952756 263.7795276 -1744.2661417 -3369.9925197 47.2440945 -2002.8232283 -3369.9925197 263.7795276 -2002.8232283 -2923.6212598 47.2440945 -1744.4279528 -2923.6212598 263.7795276 -1744.4279528 -3373.3334646 263.7795276 -2006.7389764 -3373.3334646 47.2440945 -2006.7389764 -2918.7870079 47.2440945 -1743.7854331 -2918.7870079 263.7795276 -1743.7854331 -3377.3031496 263.7795276 -2010.0153543 -3377.3031496 47.2440945 -2010.0153543 -2914.1248031 47.2440945 -1742.3559055 -2914.1248031 263.7795276 -1742.3559055 -3381.7807087 263.7795276 -2012.5523622 -3381.7807087 47.2440945 -2012.5523622 -2909.7618110 47.2440945 -1740.1783465 -2909.7618110 263.7795276 -1740.1783465 -3386.6314961 263.7795276 -2014.2732283 -3386.6314961 47.2440945 -2014.2732283 -2905.8149606 47.2440945 -1737.3125984 -2905.8149606 263.7795276 -1737.3125984 -3391.7074803 263.7795276 -2015.1259843 -3391.7074803 47.2440945 -2015.1259843 -2902.3952756 263.7795276 -1733.8362205 -2902.3952756 47.2440945 -1733.8362205 -3396.8543307 263.7795276 -2015.0842520 -3396.8543307 47.2440945 -2015.0842520 -2899.5937008 47.2440945 -1729.8444882 -2899.5937008 263.7795276 -1729.8444882 -3401.9157480 263.7795276 -2014.1492126 -3401.9157480 47.2440945 -2014.1492126 -2897.4877953 263.7795276 -1725.4456693 -2897.4877953 47.2440945 -1725.4456693 -3406.7381890 263.7795276 -2012.3492126 -3406.7381890 47.2440945 -2012.3492126 -2896.1346457 263.7795276 -1720.7606299 -2896.1346457 47.2440945 -1720.7606299 -3411.1740157 263.7795276 -2009.7397638 -3411.1740157 47.2440945 -2009.7397638 -2895.5700787 263.7795276 -1715.9165354 -2895.5700787 47.2440945 -1715.9165354 -3415.0905512 263.7795276 -2006.3992126 -3415.0905512 47.2440945 -2006.3992126 -2895.8110236 263.7795276 -1711.0460630 -2895.8110236 47.2440945 -1711.0460630 -3418.3661417 47.2440945 -2002.4295276 -3418.3661417 263.7795276 -2002.4295276 -2896.8511811 263.7795276 -1706.2814961 -2896.8511811 47.2440945 -1706.2814961 -3420.9031496 47.2440945 -1997.9515748 -3420.9031496 263.7795276 -1997.9515748 -2898.6606299 263.7795276 -1701.7527559 -2898.6606299 47.2440945 -1701.7527559 -3422.6240157 47.2440945 -1993.1007874 -3422.6240157 263.7795276 -1993.1007874 -2901.1909449 263.7795276 -1697.5838583 -2901.1909449 47.2440945 -1697.5838583 -3437.3877953 263.7795276 -1967.5291339 -3437.3877953 47.2440945 -1967.5291339 -2904.3724409 47.2440945 -1693.8881890 -2904.3724409 263.7795276 -1693.8881890 -3440.7283465 47.2440945 -1963.6133858 -3440.7283465 263.7795276 -1963.6133858 -2919.1362205 263.7795276 -1668.3165354 -2919.1362205 47.2440945 -1668.3165354 -3443.3377953 263.7795276 -1959.1771654 -3443.3377953 47.2440945 -1959.1771654 -2920.8578740 263.7795276 -1663.4657480 -2920.8578740 47.2440945 -1663.4657480 -3445.1377953 47.2440945 -1954.3551181 -3445.1377953 263.7795276 -1954.3551181 -2923.3948819 263.7795276 -1658.9874016 -2923.3948819 47.2440945 -1658.9874016 -3446.0728346 47.2440945 -1949.2937008 -3446.0728346 263.7795276 -1949.2937008 -2926.6708661 47.2440945 -1655.0177165 -2926.6708661 263.7795276 -1655.0177165 -3446.1145669 47.2440945 -1944.1464567 -3446.1145669 263.7795276 -1944.1464567 -2930.5866142 47.2440945 -1651.6775591 -2930.5866142 263.7795276 -1651.6775591 -3445.2622047 47.2440945 -1939.0708661 -3445.2622047 263.7795276 -1939.0708661 -2935.0232283 47.2440945 -1649.0681102 -2935.0232283 263.7795276 -1649.0681102 -3443.5413386 263.7795276 -1934.2200787 -3443.5413386 47.2440945 -1934.2200787 -2939.8456693 47.2440945 -1647.2681102 -2939.8456693 263.7795276 -1647.2681102 -3441.0039370 47.2440945 -1929.7421260 -3441.0039370 263.7795276 -1929.7421260 -2944.9066929 47.2440945 -1646.3334646 -2944.9066929 263.7795276 -1646.3334646 -3437.7279528 47.2440945 -1925.7724409 -3437.7279528 263.7795276 -1925.7724409 -2950.0535433 47.2440945 -1646.2913386 -2950.0535433 263.7795276 -1646.2913386 -3433.8122047 263.7795276 -1922.4318898 -3433.8122047 47.2440945 -1922.4318898 -2955.1295276 47.2440945 -1647.1440945 -2955.1295276 263.7795276 -1647.1440945 -3429.3755906 263.7795276 -1919.8220472 -3429.3755906 47.2440945 -1919.8220472 -2959.9799213 47.2440945 -1648.8649606 -2959.9799213 263.7795276 -1648.8649606 -3424.5535433 263.7795276 -1918.0224409 -3424.5535433 47.2440945 -1918.0224409 -2964.4582677 47.2440945 -1651.4019685 -2964.4582677 263.7795276 -1651.4019685 -3419.4917323 263.7795276 -1917.0874016 -3419.4917323 47.2440945 -1917.0874016 -2968.4279528 47.2440945 -1654.6783465 -2968.4279528 263.7795276 -1654.6783465 -3414.3456693 263.7795276 -1917.0456693 -3414.3456693 47.2440945 -1917.0456693 -2971.7685039 263.7795276 -1658.5940945 -2971.7685039 47.2440945 -1658.5940945 -3409.2696850 263.7795276 -1917.8980315 -3409.2696850 47.2440945 -1917.8980315 -2974.3775591 47.2440945 -1663.0303150 -2974.3775591 263.7795276 -1663.0303150 -3404.4188976 263.7795276 -1919.6192913 -3404.4188976 47.2440945 -1919.6192913 -2976.1779528 263.7795276 -1667.8527559 -2976.1779528 47.2440945 -1667.8527559 -3399.9401575 263.7795276 -1922.1562992 -3399.9401575 47.2440945 -1922.1562992 -2977.1122047 47.2440945 -1672.9137795 -2977.1122047 263.7795276 -1672.9137795 -3395.9708661 263.7795276 -1925.4326772 -3395.9708661 47.2440945 -1925.4326772 -2977.1547244 263.7795276 -1678.0610236 -2977.1547244 47.2440945 -1678.0610236 -2976.3015748 263.7795276 -1683.1366142 -3395.9708661 47.2440945 -1925.4326772 -3395.9708661 263.7795276 -1925.4326772 -2976.3015748 47.2440945 -1683.1366142 -2976.3015748 263.7795276 -1683.1366142 -2976.3015748 47.2440945 -1683.1366142 - - - - - - - - - - -0.4999999 0.0000001 0.8660255 -0.4999999 0.0000001 0.8660255 -0.4999999 0.0000001 0.8660255 -0.4999999 0.0000001 0.8660255 -0.9862031 0.0000000 -0.1655401 -0.9968703 0.0000000 -0.0790547 -0.9968703 0.0000000 -0.0790547 -0.9862031 0.0000000 -0.1655401 0.5744718 0.0000000 0.8185244 0.6402162 0.0000000 0.7681948 0.6402162 0.0000000 0.7681948 0.5744718 0.0000000 0.8185244 -0.9954601 0.0000000 0.0951801 -0.9954601 0.0000000 0.0951801 0.4318461 0.0000000 0.9019473 0.4318461 0.0000000 0.9019473 -0.9637994 0.0000000 0.2666283 -0.9637994 0.0000000 0.2666283 0.2775371 0.0000000 0.9607149 0.2775371 0.0000000 0.9607149 -0.9028381 0.0000000 0.4299807 -0.9028381 0.0000000 0.4299807 0.1155941 0.0000000 0.9932965 0.1155941 0.0000000 0.9932965 -0.8144221 0.0000000 0.5802730 -0.8144221 0.0000000 0.5802730 -0.0494543 0.0000000 0.9987764 -0.0494543 0.0000000 0.9987764 -0.7013044 0.0000000 0.7128620 -0.7013044 0.0000000 0.7128620 -0.2131789 -0.0000000 0.9770132 -0.2131789 -0.0000000 0.9770132 -0.5669143 0.0000000 0.8237768 -0.5669143 0.0000000 0.8237768 -0.3711271 0.0000000 0.9285821 -0.3711271 0.0000000 0.9285821 -0.4152393 0.0000000 0.9097122 -0.4152393 0.0000000 0.9097122 -0.5188218 0.0000000 0.8548824 -0.5188218 0.0000000 0.8548824 -0.2509645 0.0000000 0.9679963 -0.2509645 0.0000000 0.9679963 -0.6524546 -0.0000000 0.7578278 -0.6524546 -0.0000000 0.7578278 -0.0790852 -0.0000000 0.9968679 -0.0790852 -0.0000000 0.9968679 -0.7683290 -0.0000000 0.6400551 -0.7683290 -0.0000000 0.6400551 0.0952490 0.0000000 0.9954535 0.0952490 0.0000000 0.9954535 -0.8631958 -0.0000000 0.5048692 -0.8631958 -0.0000000 0.5048692 0.2666924 -0.0000000 0.9637817 0.2666924 -0.0000000 0.9637817 -0.9345390 -0.0000000 0.3558608 -0.9345390 -0.0000000 0.3558608 0.4300008 -0.0000000 0.9028285 0.4300008 -0.0000000 0.9028285 -0.9803442 0.0000000 0.1972950 -0.9803442 0.0000000 0.1972950 0.5801978 0.0000000 0.8144756 0.5801978 0.0000000 0.8144756 -0.9994457 0.0000000 0.0332907 -0.9994457 0.0000000 0.0332907 0.7128481 0.0000000 0.7013184 0.7128481 0.0000000 0.7013184 -0.9912763 0.0000000 -0.1317999 -0.9912763 0.0000000 -0.1317999 0.8238209 0.0000000 0.5668502 0.8238209 0.0000000 0.5668502 -0.9560642 0.0000000 -0.2931574 -0.9560642 0.0000000 -0.2931574 0.9097201 0.0000000 0.4152221 0.9097201 0.0000000 0.4152221 -0.8947990 0.0000000 -0.4464693 -0.8947990 0.0000000 -0.4464693 0.9080240 0.0000000 0.4189182 0.9080240 0.0000000 0.4189182 -0.8091201 0.0000000 -0.5876434 -0.8091201 0.0000000 -0.5876434 0.8168043 0.0000000 0.5769149 0.8168043 0.0000000 0.5769149 -0.8155109 -0.0000000 -0.5787417 -0.8155109 -0.0000000 -0.5787417 0.8144581 -0.0000000 0.5802224 0.8144581 -0.0000000 0.5802224 -0.9079938 0.0000000 -0.4189837 -0.9079938 0.0000000 -0.4189837 0.9028311 -0.0000000 0.4299953 0.9028311 -0.0000000 0.4299953 -0.9096980 0.0000000 -0.4152705 -0.9096980 0.0000000 -0.4152705 0.9637781 0.0000000 0.2667053 0.9637781 0.0000000 0.2667053 -0.8238149 0.0000000 -0.5668589 -0.8238149 0.0000000 -0.5668589 0.9954535 0.0000000 0.0952487 0.9954535 0.0000000 0.0952487 -0.7128418 -0.0000000 -0.7013248 -0.7128418 -0.0000000 -0.7013248 0.9968703 0.0000000 -0.0790542 0.9968703 0.0000000 -0.0790542 -0.5801829 -0.0000000 -0.8144862 -0.5801829 -0.0000000 -0.8144862 0.9680042 0.0000000 -0.2509341 0.9680042 0.0000000 -0.2509341 -0.4299657 -0.0000000 -0.9028452 -0.4299657 -0.0000000 -0.9028452 0.9097062 0.0000000 -0.4152524 0.9097062 0.0000000 -0.4152524 -0.2666628 -0.0000000 -0.9637899 -0.2666628 -0.0000000 -0.9637899 0.8237853 0.0000000 -0.5669019 0.8237853 0.0000000 -0.5669019 -0.0952565 0.0000000 -0.9954528 -0.0952565 0.0000000 -0.9954528 0.7128623 0.0000000 -0.7013041 0.7128623 0.0000000 -0.7013041 0.0790471 0.0000000 -0.9968709 0.0790471 0.0000000 -0.9968709 0.5802335 -0.0000000 -0.8144502 0.5802335 -0.0000000 -0.8144502 0.2509769 0.0000000 -0.9679931 0.2509769 0.0000000 -0.9679931 0.4299752 -0.0000000 -0.9028407 0.4299752 -0.0000000 -0.9028407 0.4152166 0.0000000 -0.9097226 0.4152166 0.0000000 -0.9097226 0.2666640 0.0000000 -0.9637895 0.2666640 0.0000000 -0.9637895 0.5668832 0.0000000 -0.8237981 0.5668832 0.0000000 -0.8237981 0.0952427 0.0000000 -0.9954541 0.0952427 0.0000000 -0.9954541 0.7013251 0.0000000 -0.7128416 0.7013251 0.0000000 -0.7128416 -0.0790470 -0.0000000 -0.9968709 -0.0790470 -0.0000000 -0.9968709 0.8144772 0.0000000 -0.5801956 0.8144772 0.0000000 -0.5801956 -0.2509629 -0.0000000 -0.9679967 -0.2509629 -0.0000000 -0.9679967 0.9028356 0.0000000 -0.4299858 0.9028356 0.0000000 -0.4299858 -0.4152206 -0.0000000 -0.9097208 -0.4152206 -0.0000000 -0.9097208 0.9637904 0.0000000 -0.2666611 0.9637904 0.0000000 -0.2666611 -0.5668878 0.0000000 -0.8237950 -0.5668878 0.0000000 -0.8237950 0.9954527 0.0000000 -0.0952568 0.9954527 0.0000000 -0.0952568 -0.6365809 0.0000000 -0.7712099 -0.6365809 0.0000000 -0.7712099 0.9968704 0.0000000 0.0790532 0.9968704 0.0000000 0.0790532 0.4999999 0.0000004 -0.8660254 0.4999999 0.0000004 -0.8660254 0.4999999 0.0000004 -0.8660254 0.4999999 0.0000004 -0.8660254 0.9861656 0.0000000 0.1657633 0.9861656 0.0000000 0.1657633 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 5 12 6 12 5 13 14 11 8 11 14 15 13 16 12 16 13 17 18 15 14 15 18 19 16 20 21 20 16 17 22 19 18 19 22 23 20 24 21 24 20 25 26 23 22 23 26 27 24 28 29 28 24 25 30 27 26 27 30 31 29 32 33 32 29 28 34 31 30 31 34 35 33 36 37 36 33 32 38 35 34 35 38 39 37 40 41 40 37 36 42 39 38 39 42 43 41 44 45 44 41 40 46 42 47 42 46 43 45 48 49 48 45 44 50 46 47 46 50 51 49 52 53 52 49 48 54 50 55 50 54 51 53 56 57 56 53 52 58 55 59 55 58 54 57 60 61 60 57 56 62 59 63 59 62 58 61 64 65 64 61 60 66 63 67 63 66 62 64 68 65 68 64 69 70 67 71 67 70 66 69 72 68 72 69 73 74 71 75 71 74 70 73 76 72 76 73 77 78 75 79 75 78 74 76 80 81 80 76 77 82 78 79 78 82 83 80 84 81 84 80 85 86 82 87 82 86 83 84 88 89 88 84 85 90 87 91 87 90 86 88 92 89 92 88 93 94 91 95 91 94 90 93 96 92 96 93 97 98 94 95 94 98 99 97 100 96 100 97 101 99 102 103 102 99 98 101 104 100 104 101 105 103 106 107 106 103 102 104 108 109 108 104 105 107 110 111 110 107 106 108 112 109 112 108 113 111 114 115 114 111 110 113 116 112 116 113 117 115 118 119 118 115 114 120 116 117 116 120 121 119 122 123 122 119 118 124 121 120 121 124 125 123 126 127 126 123 122 128 125 124 125 128 129 127 130 131 130 127 126 132 129 128 129 132 133 131 134 135 134 131 130 136 133 132 133 136 137 138 134 139 134 138 135 140 137 136 137 140 141 142 138 139 138 142 143 144 141 140 141 144 145 146 142 147 142 146 143 148 145 144 145 148 149 150 146 147 146 150 151 152 149 148 149 152 153 154 150 155 150 154 151 156 157 158 157 156 159 160 155 161 155 160 154

-
-
-
- - - - -6164.4055118 263.7795276 -3747.1783465 -6167.5551181 47.2440945 -3742.6811024 -6164.4055118 47.2440945 -3747.1783465 -6167.5551181 263.7795276 -3742.6811024 -6169.8740157 47.2440945 -3737.7055118 -6169.8740157 263.7795276 -3737.7055118 -6160.5236220 263.7795276 -3751.0606299 -6160.5236220 47.2440945 -3751.0606299 -6171.2952756 47.2440945 -3732.4023622 -6171.2952756 263.7795276 -3732.4023622 -6156.0236220 47.2440945 -3754.2102362 -6156.0236220 263.7795276 -3754.2102362 -6171.7716535 47.2440945 -3726.9330709 -6171.7716535 263.7795276 -3726.9330709 -6151.0472441 47.2440945 -3756.5303150 -6151.0472441 263.7795276 -3756.5303150 -6171.2952756 263.7795276 -3721.4637795 -6171.2952756 47.2440945 -3721.4637795 -6145.7480315 47.2440945 -3757.9507874 -6145.7480315 263.7795276 -3757.9507874 -6169.8740157 47.2440945 -3716.1610236 -6169.8740157 263.7795276 -3716.1610236 -6140.2755906 47.2440945 -3758.4295276 -6140.2755906 263.7795276 -3758.4295276 -6167.5551181 47.2440945 -3711.1850394 -6167.5551181 263.7795276 -3711.1850394 -6134.8070866 47.2440945 -3757.9507874 -6134.8070866 263.7795276 -3757.9507874 -6164.4055118 263.7795276 -3706.6877953 -6164.4055118 47.2440945 -3706.6877953 -6129.5039370 47.2440945 -3756.5303150 -6129.5039370 263.7795276 -3756.5303150 -6160.5236220 47.2440945 -3702.8059055 -6160.5236220 263.7795276 -3702.8059055 -6124.5275591 47.2440945 -3754.2094488 -6124.5275591 263.7795276 -3754.2094488 -6156.0236220 263.7795276 -3699.6570866 -6156.0236220 47.2440945 -3699.6570866 -6120.0314961 47.2440945 -3751.0606299 -6120.0314961 263.7795276 -3751.0606299 -6151.0472441 263.7795276 -3697.3370079 -6151.0472441 47.2440945 -3697.3370079 -6116.1496063 263.7795276 -3747.1783465 -6116.1496063 47.2440945 -3747.1783465 -6145.7480315 263.7795276 -3695.9157480 -6145.7480315 47.2440945 -3695.9157480 -6113.0000000 263.7795276 -3742.6811024 -6113.0000000 47.2440945 -3742.6811024 -6140.2755906 263.7795276 -3695.4377953 -6140.2755906 47.2440945 -3695.4377953 -6110.6811024 263.7795276 -3737.7055118 -6110.6811024 47.2440945 -3737.7055118 -6134.8070866 263.7795276 -3695.9157480 -6134.8070866 47.2440945 -3695.9157480 -6109.2598425 263.7795276 -3732.4023622 -6109.2598425 47.2440945 -3732.4023622 -6129.5039370 263.7795276 -3697.3370079 -6129.5039370 47.2440945 -3697.3370079 -6108.7795276 47.2440945 -3726.9330709 -6108.7795276 263.7795276 -3726.9330709 -6124.5275591 263.7795276 -3699.6570866 -6124.5275591 47.2440945 -3699.6570866 -6109.2598425 263.7795276 -3721.4637795 -6109.2598425 47.2440945 -3721.4637795 -6120.0314961 263.7795276 -3702.8059055 -6120.0314961 47.2440945 -3702.8059055 -6110.6811024 263.7795276 -3716.1610236 -6110.6811024 47.2440945 -3716.1610236 -6116.1496063 47.2440945 -3706.6877953 -6116.1496063 263.7795276 -3706.6877953 -6113.0000000 47.2440945 -3711.1850394 -6113.0000000 263.7795276 -3711.1850394 -6115.8346457 47.2440945 -3707.1389764 -6115.8346457 263.7795276 -3707.1389764 - - - - - - - - - - 0.7660319 0.0000000 0.6428026 0.8660548 -0.0000000 0.4999491 0.7660319 0.0000000 0.6428026 0.8660548 -0.0000000 0.4999491 0.9397195 -0.0000000 0.3419463 0.9397195 -0.0000000 0.3419463 0.6427312 0.0000000 0.7660918 0.6427312 0.0000000 0.7660918 0.9848368 0.0000000 0.1734832 0.9848368 0.0000000 0.1734832 0.4998825 -0.0000000 0.8660932 0.4998825 -0.0000000 0.8660932 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3420314 -0.0000000 0.9396885 0.3420314 -0.0000000 0.9396885 0.9848352 0.0000000 -0.1734923 0.9848352 0.0000000 -0.1734923 0.1736928 0.0000000 0.9847999 0.1736928 0.0000000 0.9847999 0.9397216 0.0000000 -0.3419406 0.9397216 0.0000000 -0.3419406 -0.0000313 -0.0000000 1.0000000 -0.0000313 -0.0000000 1.0000000 0.8660625 0.0000000 -0.4999358 0.8660625 0.0000000 -0.4999358 -0.1736322 -0.0000000 0.9848106 -0.1736322 -0.0000000 0.9848106 0.7660156 0.0000000 -0.6428220 0.7660156 0.0000000 -0.6428220 -0.3420052 -0.0000000 0.9396980 -0.3420052 -0.0000000 0.9396980 0.6426668 0.0000000 -0.7661458 0.6426668 0.0000000 -0.7661458 -0.5000660 0.0000000 0.8659873 -0.5000660 0.0000000 0.8659873 0.4998316 0.0000000 -0.8661226 0.4998316 0.0000000 -0.8661226 -0.6428437 0.0000000 0.7659974 -0.6428437 0.0000000 0.7659974 0.3420965 0.0000000 -0.9396648 0.3420965 0.0000000 -0.9396648 -0.7660319 0.0000000 0.6428026 -0.7660319 0.0000000 0.6428026 0.1736908 0.0000000 -0.9848002 0.1736908 0.0000000 -0.9848002 -0.8660549 0.0000000 0.4999489 -0.8660549 0.0000000 0.4999489 -0.0000312 -0.0000000 -1.0000000 -0.0000312 -0.0000000 -1.0000000 -0.9397196 0.0000000 0.3419461 -0.9397196 0.0000000 0.3419461 -0.1736300 -0.0000000 -0.9848109 -0.1736300 -0.0000000 -0.9848109 -0.9847748 0.0000000 0.1738349 -0.9847748 0.0000000 0.1738349 -0.3420093 -0.0000000 -0.9396966 -0.3420093 -0.0000000 -0.9396966 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.5000097 0.0000000 -0.8660198 -0.5000097 0.0000000 -0.8660198 -0.9847732 -0.0000000 -0.1738441 -0.9847732 -0.0000000 -0.1738441 -0.6428243 0.0000000 -0.7660137 -0.6428243 0.0000000 -0.7660137 -0.9397216 -0.0000000 -0.3419406 -0.9397216 -0.0000000 -0.3419406 -0.7665035 0.0000000 -0.6422402 -0.7665035 0.0000000 -0.6422402 -0.8660202 -0.0000000 -0.5000091 -0.8660202 -0.0000000 -0.5000091 -0.8194874 -0.0000000 -0.5730972 -0.8194874 -0.0000000 -0.5730972 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 5 8 4 8 5 9 10 6 7 6 10 11 9 12 8 12 9 13 14 11 10 11 14 15 12 16 17 16 12 13 18 15 14 15 18 19 16 20 17 20 16 21 22 19 18 19 22 23 21 24 20 24 21 25 26 23 22 23 26 27 24 28 29 28 24 25 30 27 26 27 30 31 28 32 29 32 28 33 34 31 30 31 34 35 36 32 33 32 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 38 43 38 42 39 44 41 40 41 44 45 46 43 47 43 46 42 48 45 44 45 48 49 50 47 51 47 50 46 52 49 48 49 52 53 54 51 55 51 54 50 56 53 52 53 56 57 58 54 55 54 58 59 60 57 56 57 60 61 62 58 63 58 62 59 64 61 60 61 64 65 66 63 67 63 66 62 64 68 65 68 64 69 70 66 67 66 70 71 69 72 68 72 69 73 73 70 72 70 73 71

-
-
-
- - - - -6325.0354331 263.7795276 -3469.9177165 -6327.3543307 47.2440945 -3464.9413386 -6325.0354331 47.2440945 -3469.9177165 -6327.3543307 263.7795276 -3464.9413386 -6328.7755906 47.2440945 -3459.6385827 -6328.7755906 263.7795276 -3459.6385827 -6321.8858268 263.7795276 -3474.4145669 -6321.8858268 47.2440945 -3474.4145669 -6329.2519685 263.7795276 -3454.1692913 -6329.2519685 47.2440945 -3454.1692913 -6318.0039370 263.7795276 -3478.2964567 -6318.0039370 47.2440945 -3478.2964567 -6328.7755906 47.2440945 -3448.7000000 -6328.7755906 263.7795276 -3448.7000000 -6313.5039370 47.2440945 -3481.4456693 -6313.5039370 263.7795276 -3481.4456693 -6327.3543307 47.2440945 -3443.3968504 -6327.3543307 263.7795276 -3443.3968504 -6308.5275591 47.2440945 -3483.7665354 -6308.5275591 263.7795276 -3483.7665354 -6325.0354331 47.2440945 -3438.4212598 -6325.0354331 263.7795276 -3438.4212598 -6303.2283465 47.2440945 -3485.1870079 -6303.2283465 263.7795276 -3485.1870079 -6321.8858268 47.2440945 -3433.9236220 -6321.8858268 263.7795276 -3433.9236220 -6297.7559055 47.2440945 -3485.6653543 -6297.7559055 263.7795276 -3485.6653543 -6318.0039370 47.2440945 -3430.0417323 -6318.0039370 263.7795276 -3430.0417323 -6292.2874016 47.2440945 -3485.1870079 -6292.2874016 263.7795276 -3485.1870079 -6313.5039370 263.7795276 -3426.8933071 -6313.5039370 47.2440945 -3426.8933071 -6286.9842520 47.2440945 -3483.7665354 -6286.9842520 263.7795276 -3483.7665354 -6308.5275591 263.7795276 -3424.5732283 -6308.5275591 47.2440945 -3424.5732283 -6282.0078740 47.2440945 -3481.4456693 -6282.0078740 263.7795276 -3481.4456693 -6303.2283465 263.7795276 -3423.1515748 -6303.2283465 47.2440945 -3423.1515748 -6277.5118110 47.2440945 -3478.2964567 -6277.5118110 263.7795276 -3478.2964567 -6297.7559055 263.7795276 -3422.6732283 -6297.7559055 47.2440945 -3422.6732283 -6273.6299213 47.2440945 -3474.4145669 -6273.6299213 263.7795276 -3474.4145669 -6292.2874016 263.7795276 -3423.1515748 -6292.2874016 47.2440945 -3423.1515748 -6270.4803150 263.7795276 -3469.9169291 -6270.4803150 47.2440945 -3469.9169291 -6286.9842520 263.7795276 -3424.5732283 -6286.9842520 47.2440945 -3424.5732283 -6268.1614173 263.7795276 -3464.9413386 -6268.1614173 47.2440945 -3464.9413386 -6282.0078740 263.7795276 -3426.8933071 -6282.0078740 47.2440945 -3426.8933071 -6266.7401575 263.7795276 -3459.6385827 -6266.7401575 47.2440945 -3459.6385827 -6277.5118110 263.7795276 -3430.0417323 -6277.5118110 47.2440945 -3430.0417323 -6266.2598425 263.7795276 -3454.1692913 -6266.2598425 47.2440945 -3454.1692913 -6273.6299213 263.7795276 -3433.9236220 -6273.6299213 47.2440945 -3433.9236220 -6266.7401575 47.2440945 -3448.7000000 -6266.7401575 263.7795276 -3448.7000000 -6270.4803150 47.2440945 -3438.4212598 -6270.4803150 263.7795276 -3438.4212598 -6268.1614173 263.7795276 -3443.3968504 -6268.1614173 47.2440945 -3443.3968504 - - - - - - - - - - 0.8660597 0.0000000 0.4999405 0.9397267 0.0000000 0.3419264 0.8660597 0.0000000 0.4999405 0.9397267 0.0000000 0.3419264 0.9848352 0.0000000 0.1734923 0.9848352 0.0000000 0.1734923 0.7660024 0.0000000 0.6428378 0.7660024 0.0000000 0.6428378 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.6426893 0.0000000 0.7661269 0.6426893 0.0000000 0.7661269 0.9848368 0.0000000 -0.1734832 0.9848368 0.0000000 -0.1734832 0.4999133 0.0000000 0.8660754 0.4999133 0.0000000 0.8660754 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 0.3420925 0.0000000 0.9396663 0.3420925 0.0000000 0.9396663 0.8660652 0.0000000 -0.4999311 0.8660652 0.0000000 -0.4999311 0.1736577 0.0000000 0.9848061 0.1736577 0.0000000 0.9848061 0.7660288 0.0000000 -0.6428063 0.7660288 0.0000000 -0.6428063 -0.0000312 -0.0000000 1.0000000 -0.0000312 -0.0000000 1.0000000 0.6426443 -0.0000000 -0.7661647 0.6426443 -0.0000000 -0.7661647 -0.1735970 -0.0000000 0.9848168 -0.1735970 -0.0000000 0.9848168 0.4998062 -0.0000000 -0.8661373 0.4998062 -0.0000000 -0.8661373 -0.3420052 -0.0000000 0.9396980 -0.3420052 -0.0000000 0.9396980 0.3421291 0.0000000 -0.9396530 0.3421291 0.0000000 -0.9396530 -0.5000914 0.0000000 0.8659726 -0.5000914 0.0000000 0.8659726 0.1737601 0.0000000 -0.9847880 0.1737601 0.0000000 -0.9847880 -0.6428468 0.0000000 0.7659948 -0.6428468 0.0000000 0.7659948 -0.0000312 -0.0000000 -1.0000000 -0.0000312 -0.0000000 -1.0000000 -0.7660288 0.0000000 0.6428063 -0.7660288 0.0000000 0.6428063 -0.1736993 -0.0000000 -0.9847987 -0.1736993 -0.0000000 -0.9847987 -0.8660652 0.0000000 0.4999311 -0.8660652 0.0000000 0.4999311 -0.3420418 -0.0000000 -0.9396847 -0.3420418 -0.0000000 -0.9396847 -0.9397164 0.0000000 0.3419548 -0.9397164 0.0000000 0.3419548 -0.4999843 0.0000000 -0.8660345 -0.4999843 0.0000000 -0.8660345 -0.9847732 0.0000000 0.1738441 -0.9847732 0.0000000 0.1738441 -0.6428018 0.0000000 -0.7660325 -0.6428018 0.0000000 -0.7660325 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.7660288 0.0000000 -0.6428063 -0.7660288 0.0000000 -0.6428063 -0.9847748 0.0000000 -0.1738349 -0.9847748 0.0000000 -0.1738349 -0.8660652 0.0000000 -0.4999311 -0.8660652 0.0000000 -0.4999311 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 4 8 9 8 4 5 10 7 11 7 10 6 8 12 9 12 8 13 14 10 11 10 14 15 13 16 12 16 13 17 18 15 14 15 18 19 17 20 16 20 17 21 22 19 18 19 22 23 21 24 20 24 21 25 26 23 22 23 26 27 25 28 24 28 25 29 30 27 26 27 30 31 32 28 29 28 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 46 51 46 50 47 52 49 48 49 52 53 54 51 55 51 54 50 56 53 52 53 56 57 58 55 59 55 58 54 60 57 56 57 60 61 62 59 63 59 62 58 64 61 60 61 64 65 66 62 63 62 66 67 64 68 65 68 64 69 70 66 71 66 70 67 69 71 68 71 69 70

-
-
-
- - - - -4177.0196850 47.2440945 -2229.7594488 -4179.3385827 263.7795276 -2224.7838583 -4179.3385827 47.2440945 -2224.7838583 -4177.0196850 263.7795276 -2229.7594488 -4180.7598425 47.2440945 -2219.4811024 -4180.7598425 263.7795276 -2219.4811024 -4173.8700787 263.7795276 -2234.2570866 -4173.8700787 47.2440945 -2234.2570866 -4181.2362205 47.2440945 -2214.0118110 -4181.2362205 263.7795276 -2214.0118110 -4169.9881890 263.7795276 -2238.1393701 -4169.9881890 47.2440945 -2238.1393701 -4180.7598425 263.7795276 -2208.5425197 -4180.7598425 47.2440945 -2208.5425197 -4165.4881890 47.2440945 -2241.2881890 -4165.4881890 263.7795276 -2241.2881890 -4179.3385827 47.2440945 -2203.2393701 -4179.3385827 263.7795276 -2203.2393701 -4160.5157480 47.2440945 -2243.6086614 -4160.5157480 263.7795276 -2243.6086614 -4177.0196850 263.7795276 -2198.2637795 -4177.0196850 47.2440945 -2198.2637795 -4155.2125984 47.2440945 -2245.0291339 -4155.2125984 263.7795276 -2245.0291339 -4173.8700787 47.2440945 -2193.7665354 -4173.8700787 263.7795276 -2193.7665354 -4149.7401575 47.2440945 -2245.5078740 -4149.7401575 263.7795276 -2245.5078740 -4169.9881890 263.7795276 -2189.8846457 -4169.9881890 47.2440945 -2189.8846457 -4144.2716535 47.2440945 -2245.0291339 -4144.2716535 263.7795276 -2245.0291339 -4165.4881890 263.7795276 -2186.7354331 -4165.4881890 47.2440945 -2186.7354331 -4138.9685039 47.2440945 -2243.6086614 -4138.9685039 263.7795276 -2243.6086614 -4160.5118110 263.7795276 -2184.4153543 -4160.5118110 47.2440945 -2184.4153543 -4133.9921260 47.2440945 -2241.2881890 -4133.9921260 263.7795276 -2241.2881890 -4155.2125984 263.7795276 -2182.9940945 -4155.2125984 47.2440945 -2182.9940945 -4129.4960630 47.2440945 -2238.1393701 -4129.4960630 263.7795276 -2238.1393701 -4149.7401575 263.7795276 -2182.5157480 -4149.7401575 47.2440945 -2182.5157480 -4125.6141732 263.7795276 -2234.2570866 -4125.6141732 47.2440945 -2234.2570866 -4144.2716535 263.7795276 -2182.9940945 -4144.2716535 47.2440945 -2182.9940945 -4122.4645669 263.7795276 -2229.7598425 -4122.4645669 47.2440945 -2229.7598425 -4138.9685039 263.7795276 -2184.4153543 -4138.9685039 47.2440945 -2184.4153543 -4120.1456693 263.7795276 -2224.7838583 -4120.1456693 47.2440945 -2224.7838583 -4133.9921260 263.7795276 -2186.7354331 -4133.9921260 47.2440945 -2186.7354331 -4118.7244094 263.7795276 -2219.4811024 -4118.7244094 47.2440945 -2219.4811024 -4129.4960630 263.7795276 -2189.8846457 -4129.4960630 47.2440945 -2189.8846457 -4118.2440945 47.2440945 -2214.0118110 -4118.2440945 263.7795276 -2214.0118110 -4125.6141732 263.7795276 -2193.7665354 -4125.6141732 47.2440945 -2193.7665354 -4118.7244094 263.7795276 -2208.5425197 -4118.7244094 47.2440945 -2208.5425197 -4122.4645669 47.2440945 -2198.2637795 -4122.4645669 263.7795276 -2198.2637795 -4120.1456693 47.2440945 -2203.2393701 -4120.1456693 263.7795276 -2203.2393701 - - - - - - - - - - 0.8660652 0.0000000 0.4999311 0.9397164 0.0000000 0.3419548 0.9397164 0.0000000 0.3419548 0.8660652 0.0000000 0.4999311 0.9848352 0.0000000 0.1734923 0.9848352 0.0000000 0.1734923 0.7660451 0.0000000 0.6427868 0.7660451 0.0000000 0.6427868 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.6426862 0.0000000 0.7661295 0.6426862 0.0000000 0.7661295 0.9848368 0.0000000 -0.1734832 0.9848368 0.0000000 -0.1734832 0.4999911 0.0000000 0.8660306 0.4999911 0.0000000 0.8660306 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 0.3421172 0.0000000 0.9396573 0.3421172 0.0000000 0.9396573 0.8660549 0.0000000 -0.4999489 0.8660549 0.0000000 -0.4999489 0.1736014 0.0000000 0.9848160 0.1736014 0.0000000 0.9848160 0.7660156 0.0000000 -0.6428220 0.7660156 0.0000000 -0.6428220 -0.0000313 -0.0000000 1.0000000 -0.0000313 -0.0000000 1.0000000 0.6426893 0.0000000 -0.7661269 0.6426893 0.0000000 -0.7661269 -0.1736322 -0.0000000 0.9848106 -0.1736322 -0.0000000 0.9848106 0.4998571 -0.0000000 -0.8661079 0.4998571 -0.0000000 -0.8661079 -0.3419747 -0.0000000 0.9397092 -0.3419747 -0.0000000 0.9397092 0.3420965 -0.0000000 -0.9396648 0.3420965 -0.0000000 -0.9396648 -0.5000378 0.0000000 0.8660036 -0.5000378 0.0000000 0.8660036 0.1737259 0.0000000 -0.9847940 0.1737259 0.0000000 -0.9847940 -0.6428437 0.0000000 0.7659974 -0.6428437 0.0000000 0.7659974 -0.0000312 -0.0000000 -1.0000000 -0.0000312 -0.0000000 -1.0000000 -0.7660319 0.0000000 0.6428026 -0.7660319 0.0000000 0.6428026 -0.1736652 -0.0000000 -0.9848047 -0.1736652 -0.0000000 -0.9848047 -0.8660625 0.0000000 0.4999358 -0.8660625 0.0000000 0.4999358 -0.3420093 -0.0000000 -0.9396966 -0.3420093 -0.0000000 -0.9396966 -0.9397216 0.0000000 0.3419406 -0.9397216 0.0000000 0.3419406 -0.5000351 0.0000000 -0.8660051 -0.5000351 0.0000000 -0.8660051 -0.9847732 -0.0000000 0.1738441 -0.9847732 -0.0000000 0.1738441 -0.6428468 0.0000000 -0.7659948 -0.6428468 0.0000000 -0.7659948 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.7660156 0.0000000 -0.6428220 -0.7660156 0.0000000 -0.6428220 -0.9847748 0.0000000 -0.1738349 -0.9847748 0.0000000 -0.1738349 -0.8660549 0.0000000 -0.4999489 -0.8660549 0.0000000 -0.4999489 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 2 4 1 5 6 0 7 0 6 3 5 8 4 8 5 9 10 7 11 7 10 6 8 12 13 12 8 9 14 10 11 10 14 15 12 16 13 16 12 17 18 15 14 15 18 19 16 20 21 20 16 17 22 19 18 19 22 23 20 24 21 24 20 25 26 23 22 23 26 27 28 24 25 24 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 42 47 42 46 43 48 45 44 45 48 49 50 47 51 47 50 46 52 49 48 49 52 53 54 51 55 51 54 50 56 53 52 53 56 57 58 55 59 55 58 54 60 57 56 57 60 61 62 58 59 58 62 63 64 61 60 61 64 65 66 62 67 62 66 63 64 68 65 68 64 69 70 66 67 66 70 71 69 70 68 70 69 71

-
-
-
- - - - -4016.3897638 47.2440945 -2507.0208661 -4019.5393701 263.7795276 -2502.5236220 -4019.5393701 47.2440945 -2502.5236220 -4016.3897638 263.7795276 -2507.0208661 -4021.8582677 47.2440945 -2497.5480315 -4021.8582677 263.7795276 -2497.5480315 -4012.5078740 263.7795276 -2510.9031496 -4012.5078740 47.2440945 -2510.9031496 -4023.2795276 47.2440945 -2492.2448819 -4023.2795276 263.7795276 -2492.2448819 -4008.0078740 47.2440945 -2514.0519685 -4008.0078740 263.7795276 -2514.0519685 -4023.7559055 263.7795276 -2486.7755906 -4023.7559055 47.2440945 -2486.7755906 -4003.0354331 47.2440945 -2516.3724409 -4003.0354331 263.7795276 -2516.3724409 -4023.2795276 263.7795276 -2481.3062992 -4023.2795276 47.2440945 -2481.3062992 -3997.7322835 47.2440945 -2517.7933071 -3997.7322835 263.7795276 -2517.7933071 -4021.8582677 47.2440945 -2476.0031496 -4021.8582677 263.7795276 -2476.0031496 -3992.2598425 47.2440945 -2518.2716535 -3992.2598425 263.7795276 -2518.2716535 -4019.5393701 47.2440945 -2471.0275591 -4019.5393701 263.7795276 -2471.0275591 -3986.7913386 47.2440945 -2517.7933071 -3986.7913386 263.7795276 -2517.7933071 -4016.3897638 47.2440945 -2466.5303150 -4016.3897638 263.7795276 -2466.5303150 -3981.4881890 47.2440945 -2516.3724409 -3981.4881890 263.7795276 -2516.3724409 -4012.5078740 263.7795276 -2462.6484252 -4012.5078740 47.2440945 -2462.6484252 -3976.5118110 47.2440945 -2514.0519685 -3976.5118110 263.7795276 -2514.0519685 -4008.0078740 263.7795276 -2459.4992126 -4008.0078740 47.2440945 -2459.4992126 -3972.0157480 47.2440945 -2510.9031496 -3972.0157480 263.7795276 -2510.9031496 -4003.0314961 263.7795276 -2457.1791339 -4003.0314961 47.2440945 -2457.1791339 -3968.1338583 263.7795276 -2507.0208661 -3968.1338583 47.2440945 -2507.0208661 -3997.7322835 263.7795276 -2455.7582677 -3997.7322835 47.2440945 -2455.7582677 -3964.9842520 263.7795276 -2502.5236220 -3964.9842520 47.2440945 -2502.5236220 -3992.2598425 263.7795276 -2455.2795276 -3992.2598425 47.2440945 -2455.2795276 -3962.6653543 263.7795276 -2497.5480315 -3962.6653543 47.2440945 -2497.5480315 -3986.7913386 263.7795276 -2455.7582677 -3986.7913386 47.2440945 -2455.7582677 -3961.2440945 47.2440945 -2492.2448819 -3961.2440945 263.7795276 -2492.2448819 -3981.4881890 263.7795276 -2457.1791339 -3981.4881890 47.2440945 -2457.1791339 -3960.7637795 263.7795276 -2486.7755906 -3960.7637795 47.2440945 -2486.7755906 -3976.5118110 263.7795276 -2459.4992126 -3976.5118110 47.2440945 -2459.4992126 -3961.2440945 263.7795276 -2481.3062992 -3961.2440945 47.2440945 -2481.3062992 -3972.0157480 263.7795276 -2462.6484252 -3972.0157480 47.2440945 -2462.6484252 -3962.6653543 47.2440945 -2476.0031496 -3962.6653543 263.7795276 -2476.0031496 -3968.1338583 263.7795276 -2466.5303150 -3968.1338583 47.2440945 -2466.5303150 -3964.9842520 263.7795276 -2471.0275591 -3964.9842520 47.2440945 -2471.0275591 -3967.8188976 263.7795276 -2466.9811024 -3967.8188976 47.2440945 -2466.9811024 - - - - - - - - - - 0.7660319 -0.0000000 0.6428026 0.8660548 -0.0000000 0.4999491 0.8660548 -0.0000000 0.4999491 0.7660319 -0.0000000 0.6428026 0.9397195 -0.0000000 0.3419463 0.9397195 -0.0000000 0.3419463 0.6426862 0.0000000 0.7661295 0.6426862 0.0000000 0.7661295 0.9848368 0.0000000 0.1734832 0.9848368 0.0000000 0.1734832 0.4999911 -0.0000000 0.8660306 0.4999911 -0.0000000 0.8660306 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3421497 -0.0000000 0.9396455 0.3421497 -0.0000000 0.9396455 0.9848368 -0.0000000 -0.1734832 0.9848368 -0.0000000 -0.1734832 0.1736004 -0.0000000 0.9848162 0.1736004 -0.0000000 0.9848162 0.9397196 -0.0000000 -0.3419461 0.9397196 -0.0000000 -0.3419461 -0.0000312 0.0000000 1.0000000 -0.0000312 0.0000000 1.0000000 0.8660549 -0.0000000 -0.4999489 0.8660549 -0.0000000 -0.4999489 -0.1736311 0.0000000 0.9848108 -0.1736311 0.0000000 0.9848108 0.7660156 -0.0000000 -0.6428220 0.7660156 -0.0000000 -0.6428220 -0.3420072 0.0000000 0.9396973 -0.3420072 0.0000000 0.9396973 0.6426893 0.0000000 -0.7661269 0.6426893 0.0000000 -0.7661269 -0.5000378 -0.0000000 0.8660036 -0.5000378 -0.0000000 0.8660036 0.4998571 0.0000000 -0.8661079 0.4998571 0.0000000 -0.8661079 -0.6428437 0.0000000 0.7659974 -0.6428437 0.0000000 0.7659974 0.3420640 0.0000000 -0.9396767 0.3420640 0.0000000 -0.9396767 -0.7660319 -0.0000000 0.6428026 -0.7660319 -0.0000000 0.6428026 0.1737270 0.0000000 -0.9847939 0.1737270 0.0000000 -0.9847939 -0.8660549 -0.0000000 0.4999489 -0.8660549 -0.0000000 0.4999489 -0.0000313 0.0000000 -1.0000000 -0.0000313 0.0000000 -1.0000000 -0.9397196 0.0000000 0.3419461 -0.9397196 0.0000000 0.3419461 -0.1736663 0.0000000 -0.9848046 -0.1736663 0.0000000 -0.9848046 -0.9847748 0.0000000 0.1738349 -0.9847748 0.0000000 0.1738349 -0.3419767 0.0000000 -0.9397084 -0.3419767 0.0000000 -0.9397084 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.5000351 0.0000000 -0.8660051 -0.5000351 0.0000000 -0.8660051 -0.9847748 -0.0000000 -0.1738349 -0.9847748 -0.0000000 -0.1738349 -0.6428468 0.0000000 -0.7659948 -0.6428468 0.0000000 -0.7659948 -0.9397196 -0.0000000 -0.3419461 -0.9397196 -0.0000000 -0.3419461 -0.7663719 -0.0000000 -0.6423972 -0.7663719 -0.0000000 -0.6423972 -0.8660240 -0.0000000 -0.5000024 -0.8660240 -0.0000000 -0.5000024 -0.8193831 -0.0000000 -0.5732464 -0.8193831 -0.0000000 -0.5732464 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 2 4 1 5 6 0 7 0 6 3 5 8 4 8 5 9 10 6 7 6 10 11 8 12 13 12 8 9 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 16 20 17 20 16 21 22 19 18 19 22 23 21 24 20 24 21 25 26 23 22 23 26 27 25 28 24 28 25 29 30 27 26 27 30 31 32 28 29 28 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 38 43 38 42 39 44 41 40 41 44 45 46 43 47 43 46 42 48 45 44 45 48 49 50 47 51 47 50 46 52 49 48 49 52 53 54 50 51 50 54 55 56 53 52 53 56 57 58 54 59 54 58 55 60 57 56 57 60 61 62 59 63 59 62 58 64 61 60 61 64 65 66 62 63 62 66 67 68 65 64 65 68 69 70 66 71 66 70 67 69 72 73 72 69 68 72 71 73 71 72 70

-
-
-
- - - - -7164.3661417 263.7795276 4250.0000000 -6983.3818898 263.7795276 4252.8346457 -6978.5039370 263.7795276 4252.4606299 -7167.3543307 263.7795276 4284.1811024 -6988.1377953 263.7795276 4254.0078740 -6992.6299213 263.7795276 4255.9527559 -6996.7362205 263.7795276 4258.6141732 -7000.3503937 263.7795276 4261.9173228 -7003.3700787 263.7795276 4265.7716535 -7005.7086614 263.7795276 4270.0708661 -7007.3070866 263.7795276 4274.6968504 -7008.1181102 263.7795276 4279.5275591 -7014.9015748 263.7795276 4324.9409449 -7176.2362205 263.7795276 4317.3267717 -7190.7401575 263.7795276 4348.4251969 -7027.5000000 263.7795276 4369.0984252 -7210.4212598 263.7795276 4376.5314961 -7045.7047244 263.7795276 4411.2559055 -7221.9685039 263.7795276 4388.0826772 -7234.6811024 263.7795276 4400.7952756 -7262.7913386 263.7795276 4420.4763780 -7047.5669291 263.7795276 4415.7874016 -7048.6496063 263.7795276 4420.5629921 -7293.8897638 263.7795276 4434.9803150 -7048.9330709 263.7795276 4425.4488189 -7048.4015748 263.7795276 4430.3188976 -7047.0748031 263.7795276 4435.0314961 -7311.2559055 263.7795276 4439.6338583 -7044.9842520 263.7795276 4439.4606299 -7193.1377953 263.7795276 4462.6692913 -7182.8622047 263.7795276 4465.4212598 -6986.5944882 263.7795276 4540.5984252 -7327.0314961 263.7795276 4443.8582677 -7361.2165354 263.7795276 4446.8503937 -7203.7362205 263.7795276 4461.7401575 -7594.7559055 263.7795276 4454.2283465 -7603.4685039 263.7795276 4460.3267717 -7173.2244094 263.7795276 4469.9173228 -7164.5118110 263.7795276 4476.0157480 -7156.9881890 263.7795276 4483.5393701 -7150.8858268 263.7795276 4492.2519685 -7121.3582677 263.7795276 4543.3937008 -6945.6929134 263.7795276 4611.4370079 -7116.8661417 263.7795276 4553.0354331 -7114.1102362 263.7795276 4563.3110236 -7113.1850394 263.7795276 4573.9055118 -7114.1102362 263.7795276 4584.5039370 -7116.8661417 263.7795276 4594.7795276 -7121.3582677 263.7795276 4604.4173228 -7127.4606299 263.7795276 4613.1338583 -6942.9645669 263.7795276 4615.3858268 -7134.9842520 263.7795276 4620.6535433 -6939.6338583 263.7795276 4618.8385827 -6935.7874016 263.7795276 4621.7047244 -7143.6968504 263.7795276 4626.7559055 -6931.5275591 263.7795276 4623.9094488 -6926.9645669 263.7795276 4625.3976378 -6922.2244094 263.7795276 4626.1259843 -7936.0984252 263.7795276 3865.8503937 -7548.2244094 263.7795276 3865.0692913 -7929.9094488 263.7795276 3848.3795276 -7558.8188976 263.7795276 3865.9960630 -7795.4606299 263.7795276 3885.6590551 -7800.5905512 263.7795276 3886.1074803 -7805.5590551 263.7795276 3887.4397638 -7810.2244094 263.7795276 3889.6149606 -7811.4173228 263.7795276 3890.3039370 -7815.2362205 263.7795276 3892.9283465 -7818.5984252 263.7795276 3896.1177165 -7821.4173228 263.7795276 3899.7940945 -8051.1535433 263.7795276 4295.2440945 -7569.0944882 263.7795276 3868.7500000 -7578.7362205 263.7795276 3873.2448819 -7587.4488189 263.7795276 3879.3464567 -7822.5118110 263.7795276 3901.8027559 -7823.6299213 263.7795276 3903.8657480 -7825.1771654 263.7795276 3908.2334646 -7918.4763780 263.7795276 4256.4409449 -7933.9015748 263.7795276 4314.0000000 -8054.5314961 263.7795276 4313.4645669 -8055.0157480 263.7795276 4331.9921260 -7934.7440945 263.7795276 4318.5551181 -7934.8070866 263.7795276 4320.9015748 -7934.8661417 263.7795276 4323.1850394 -7934.2637795 263.7795276 4327.7795276 -7932.9448819 263.7795276 4332.2204724 -8052.5944882 263.7795276 4350.3700787 -7930.9527559 263.7795276 4336.4055118 -7930.2637795 263.7795276 4337.5984252 -7927.3110236 263.7795276 4341.8149606 -7923.6692913 263.7795276 4345.4527559 -7919.4527559 263.7795276 4348.4055118 -7914.7913386 263.7795276 4350.5826772 -8047.3307087 263.7795276 4368.1377953 -7909.8188976 263.7795276 4351.9133858 -7904.6889764 263.7795276 4352.3622047 -7664.4921260 263.7795276 4354.6338583 -7715.6338583 263.7795276 4384.1614173 -8040.7007874 263.7795276 4382.0393701 -8039.3543307 263.7795276 4384.8661417 -7724.3464567 263.7795276 4390.2598425 -7974.9685039 263.7795276 4496.3818898 -7731.8700787 263.7795276 4397.7834646 -7732.8858268 263.7795276 4399.2362205 -7737.9724409 263.7795276 4406.4960630 -7742.4645669 263.7795276 4416.1377953 -7745.2204724 263.7795276 4426.4094488 -7746.1456693 263.7795276 4437.0078740 -7745.2204724 263.7795276 4447.6062992 -7742.4645669 263.7795276 4457.8779528 -7737.9724409 263.7795276 4467.5196850 -7731.8700787 263.7795276 4476.2322835 -7724.3464567 263.7795276 4483.7559055 -7715.6338583 263.7795276 4489.8543307 -7705.9960630 263.7795276 4494.3503937 -7695.7204724 263.7795276 4497.1062992 -7956.5157480 263.7795276 4528.3464567 -7685.1220472 263.7795276 4498.0314961 -7261.0787402 263.7795276 4501.8937008 -7263.8307087 263.7795276 4512.1653543 -7264.7598425 263.7795276 4522.7637795 -7263.8307087 263.7795276 4533.3622047 -7536.6653543 263.7795276 4562.2834646 -7541.5314961 263.7795276 4562.8149606 -7546.2480315 263.7795276 4564.1417323 -7550.6771654 263.7795276 4566.2322835 -7710.7913386 263.7795276 4658.6732283 -7715.0078740 263.7795276 4661.6259843 -7718.6496063 263.7795276 4665.2677165 -7817.0826772 263.7795276 4769.8503937 -7261.0787402 263.7795276 4543.6338583 -7256.5826772 263.7795276 4553.2755906 -7721.6023622 263.7795276 4669.4842520 -7723.7755906 263.7795276 4674.1456693 -7724.9330709 263.7795276 4678.4685039 -7725.1102362 263.7795276 4679.1181102 -7725.5551181 263.7795276 4684.2480315 -7725.1102362 263.7795276 4689.3740157 -7723.7755906 263.7795276 4694.3464567 -7721.6023622 263.7795276 4699.0118110 -7720.9133858 263.7795276 4700.2047244 -7718.2874016 263.7795276 4704.0236220 -7715.0984252 263.7795276 4707.3818898 -7711.4212598 263.7795276 4710.2047244 -7709.4133858 263.7795276 4711.2952756 -7707.3503937 263.7795276 4712.4133858 -7702.9842520 263.7795276 4713.9606299 -7645.4251969 263.7795276 4729.3818898 -7418.7716535 263.7795276 4790.1141732 -7806.5866142 263.7795276 4785.1259843 -7793.8267717 263.7795276 4798.5669291 -7349.3976378 263.7795276 4808.7047244 -7779.1259843 263.7795276 4809.8503937 -7297.2165354 263.7795276 4822.6850394 -7762.8346457 263.7795276 4818.6929134 -7745.3661417 263.7795276 4824.8818898 -7292.6614173 263.7795276 4823.5314961 -7288.0314961 263.7795276 4823.6496063 -7531.7795276 263.7795276 4562.5669291 -7227.0551181 263.7795276 4604.4173228 -7527.0039370 263.7795276 4563.6496063 -7526.4527559 263.7795276 4563.8740157 -7522.4724409 263.7795276 4565.5078740 -7484.7244094 263.7795276 4581.5708661 -7476.7125984 263.7795276 4584.9763780 -7428.6811024 263.7795276 4597.8503937 -7420.0393701 263.7795276 4598.9015748 -7379.3188976 263.7795276 4603.8661417 -7374.4645669 263.7795276 4604.5236220 -7220.9527559 263.7795276 4613.1338583 -7369.7874016 263.7795276 4605.9685039 -7365.4133858 263.7795276 4608.1692913 -7361.4645669 263.7795276 4611.0629921 -7358.0472441 263.7795276 4614.5708661 -7213.4330709 263.7795276 4620.6535433 -7355.2559055 263.7795276 4618.5944882 -7271.4685039 263.7795276 4763.7125984 -7204.7204724 263.7795276 4626.7559055 -7195.0787402 263.7795276 4631.2519685 -7184.8031496 263.7795276 4634.0039370 -7174.2086614 263.7795276 4634.9291339 -6782.9960630 263.7795276 4659.7086614 -6793.7559055 263.7795276 4672.7952756 -6806.2834646 263.7795276 4684.2086614 -6820.3110236 263.7795276 4693.7125984 -7137.8464567 263.7795276 4877.0433071 -7262.8110236 263.7795276 4778.7125984 -7260.6338583 263.7795276 4783.3740157 -7259.3031496 263.7795276 4788.3464567 -7258.8543307 263.7795276 4793.4763780 -7259.3031496 263.7795276 4798.6023622 -7260.6338583 263.7795276 4803.5748031 -7262.8110236 263.7795276 4808.2401575 -7265.7637795 263.7795276 4812.4566929 -7269.4015748 263.7795276 4816.0944882 -7273.6181102 263.7795276 4819.0472441 -7274.8110236 263.7795276 4819.7362205 -7278.9921260 263.7795276 4821.7283465 -7283.4370079 263.7795276 4823.0472441 -7561.9094488 263.7795276 4874.0393701 -7494.0511811 263.7795276 4892.2204724 -7226.3503937 263.7795276 4928.1377953 -7340.0314961 263.7795276 4933.4881890 -7229.1771654 263.7795276 4929.4842520 -7243.0787402 263.7795276 4936.1141732 -7315.9724409 263.7795276 4939.9370079 -7260.8464567 263.7795276 4941.3818898 -7297.7480315 263.7795276 4943.3149606 -7279.2204724 263.7795276 4943.7992126 -7361.2165354 263.7795276 4053.1496063 -7135.2007874 263.7795276 4053.2952756 -7127.6771654 263.7795276 4045.7716535 -7334.8818898 263.7795276 4055.4527559 -7141.2992126 263.7795276 4062.0078740 -7330.0944882 263.7795276 4055.8740157 -7327.0314961 263.7795276 4056.1417323 -7293.8897638 263.7795276 4065.0196850 -7145.7952756 263.7795276 4071.6496063 -7262.7913386 263.7795276 4079.5236220 -7148.5472441 263.7795276 4081.9212598 -7234.6811024 263.7795276 4099.2047244 -7149.4763780 263.7795276 4092.5196850 -7148.5472441 263.7795276 4103.1181102 -7210.4212598 263.7795276 4123.4685039 -7145.7952756 263.7795276 4113.3897638 -7141.2992126 263.7795276 4123.0314961 -7135.2007874 263.7795276 4131.7440945 -7190.7401575 263.7795276 4151.5748031 -7127.6771654 263.7795276 4139.2677165 -7118.9645669 263.7795276 4145.3661417 -7109.3228346 263.7795276 4149.8622047 -7099.0472441 263.7795276 4152.6181102 -7176.2362205 263.7795276 4182.6732283 -7088.4527559 263.7795276 4153.5433071 -6631.7992126 263.7795276 4162.8149606 -6641.1377953 263.7795276 4178.8700787 -6647.8425197 263.7795276 4196.1889764 -7170.2322835 263.7795276 4205.0866142 -6651.7480315 263.7795276 4214.3464567 -7167.3543307 263.7795276 4215.8188976 -6652.7598425 263.7795276 4232.8897638 -6800.9803150 263.7795276 4253.6023622 -6796.2125984 263.7795276 4254.0196850 -6791.5708661 263.7795276 4255.2047244 -6787.1850394 263.7795276 4257.1220472 -6783.1653543 263.7795276 4259.7244094 -6659.0984252 263.7795276 4346.0826772 -6779.6181102 263.7795276 4262.9448819 -6776.6417323 263.7795276 4266.6929134 -6774.3070866 263.7795276 4270.8740157 -6772.6771654 263.7795276 4275.3779528 -6771.7992126 263.7795276 4280.0826772 -6771.6968504 263.7795276 4284.8700787 -6783.7440945 263.7795276 4373.5905512 -6683.4055118 263.7795276 4456.8188976 -6801.4685039 263.7795276 4433.7165354 -6809.0629921 263.7795276 4459.4685039 -6725.0590551 263.7795276 4562.2598425 -6847.0748031 263.7795276 4540.5354331 -6896.9055118 263.7795276 4614.9212598 -6739.7007874 263.7795276 4586.8897638 -6900.1692913 263.7795276 4618.4409449 -6903.9566929 263.7795276 4621.3818898 -6908.1692913 263.7795276 4623.6771654 -6912.7007874 263.7795276 4625.2559055 -6917.4251969 263.7795276 4626.0787402 -7153.3346457 263.7795276 4631.2519685 -7163.6102362 263.7795276 4634.0039370 -7594.9685039 263.7795276 3886.8677165 -7790.3346457 263.7795276 3886.1074803 -7785.3622047 263.7795276 3887.4397638 -7601.0708661 263.7795276 3895.5811024 -7780.6968504 263.7795276 3889.6149606 -7776.4803150 263.7795276 3892.5673228 -7772.8425197 263.7795276 3896.2070866 -7605.5669291 263.7795276 3905.2216535 -7769.8897638 263.7795276 3900.4228346 -7677.4448819 263.7795276 4060.5393701 -7608.3188976 263.7795276 3915.4968504 -7609.2480315 263.7795276 3926.0933071 -7608.3188976 263.7795276 3936.6897638 -7605.5669291 263.7795276 3946.9645669 -7601.0708661 263.7795276 3956.6062992 -7571.5433071 263.7795276 4007.7480315 -7565.4409449 263.7795276 4016.4606299 -7557.9212598 263.7795276 4023.9842520 -7549.2086614 263.7795276 4030.0826772 -7539.5669291 263.7795276 4034.5787402 -7529.2913386 263.7795276 4037.3307087 -7518.6968504 263.7795276 4038.2598425 -7118.9645669 263.7795276 4039.6732283 -7395.3976378 263.7795276 4056.1417323 -7428.5433071 263.7795276 4065.0196850 -7675.3582677 263.7795276 4064.9685039 -7674.0314961 263.7795276 4069.6811024 -7459.6417323 263.7795276 4079.5236220 -7673.5000000 263.7795276 4074.5511811 -7673.7795276 263.7795276 4079.4370079 -7674.8661417 263.7795276 4084.2125984 -7487.7480315 263.7795276 4099.2047244 -7676.7244094 263.7795276 4088.7440945 -7692.7874016 263.7795276 4126.4921260 -7500.4645669 263.7795276 4111.9173228 -7512.0118110 263.7795276 4123.4685039 -7531.6929134 263.7795276 4151.5748031 -7696.1929134 263.7795276 4134.5000000 -7709.0629921 263.7795276 4182.5354331 -7546.1968504 263.7795276 4182.6732283 -7710.1181102 263.7795276 4191.1771654 -7555.0748031 263.7795276 4215.8188976 -7715.0826772 263.7795276 4231.8976378 -7558.0669291 263.7795276 4250.0000000 -7715.6574803 263.7795276 4236.1614173 -7715.7401575 263.7795276 4236.7519685 -7717.1850394 263.7795276 4241.4291339 -7719.3858268 263.7795276 4245.8031496 -7722.2795276 263.7795276 4249.7519685 -7725.7874016 263.7795276 4253.1692913 -7557.5944882 263.7795276 4255.4094488 -7729.8110236 263.7795276 4255.9606299 -7555.0748031 263.7795276 4284.1811024 -7871.5196850 263.7795276 4337.7755906 -7546.1968504 263.7795276 4317.3267717 -7531.6929134 263.7795276 4348.4251969 -7633.9803150 263.7795276 4346.4566929 -7623.3818898 263.7795276 4347.3818898 -7613.1102362 263.7795276 4350.1377953 -7512.0118110 263.7795276 4376.5314961 -7603.4685039 263.7795276 4354.6338583 -7594.7559055 263.7795276 4360.7322835 -7587.2322835 263.7795276 4368.2559055 -7581.1299213 263.7795276 4376.9685039 -7495.6062992 263.7795276 4392.9409449 -7576.6377953 263.7795276 4386.6102362 -7573.8818898 263.7795276 4396.8818898 -7487.7480315 263.7795276 4400.7952756 -7572.9566929 263.7795276 4407.4803150 -7459.6417323 263.7795276 4420.4763780 -7573.8818898 263.7795276 4418.0787402 -7576.6377953 263.7795276 4428.3503937 -7428.5433071 263.7795276 4434.9803150 -7581.1299213 263.7795276 4437.9921260 -7395.3976378 263.7795276 4443.8582677 -7586.2165354 263.7795276 4445.2519685 -7387.5511811 263.7795276 4444.5472441 -7587.2322835 263.7795276 4446.7047244 -7654.6102362 263.7795276 4489.8543307 -7214.3307087 263.7795276 4462.6692913 -7224.6062992 263.7795276 4465.4212598 -7234.2480315 263.7795276 4469.9173228 -7242.9606299 263.7795276 4476.0157480 -7250.4803150 263.7795276 4483.5393701 -7256.5826772 263.7795276 4492.2519685 -7664.2519685 263.7795276 4494.3503937 -7674.5275591 263.7795276 4497.1023622 -7676.2913386 263.7795276 4497.2598425 -7889.9251969 263.7795276 4348.4055118 -7644.5748031 263.7795276 4347.3818898 -7654.8503937 263.7795276 4350.1377953 -7894.5905512 263.7795276 4350.5826772 -7899.5629921 263.7795276 4351.9133858 -3271.2614173 263.7795276 2342.1566929 -3976.5118110 263.7795276 2514.0519685 -6590.5984252 263.7795276 4126.0000000 -3972.0157480 263.7795276 2510.9031496 -3968.1338583 263.7795276 2507.0208661 -3964.9842520 263.7795276 2502.5236220 -3962.6653543 263.7795276 2497.5480315 -3961.2440945 263.7795276 2492.2448819 -3960.7637795 263.7795276 2486.7755906 -3961.2440945 263.7795276 2481.3062992 -3962.6653543 263.7795276 2476.0031496 -3964.9842520 263.7795276 2471.0275591 -3968.1338583 263.7795276 2466.5303150 -3972.0157480 263.7795276 2462.6484252 -3976.5118110 263.7795276 2459.4992126 -3981.4881890 263.7795276 2457.1791339 -3986.7913386 263.7795276 2455.7582677 -3992.2598425 263.7795276 2455.2795276 -3981.4881890 263.7795276 2516.3724409 -3986.7913386 263.7795276 2517.7933071 -3992.2598425 263.7795276 2518.2716535 -6120.0314961 263.7795276 3751.0606299 -6116.1496063 263.7795276 3747.1783465 -6113.0000000 263.7795276 3742.6811024 -6110.6811024 263.7795276 3737.7055118 -6109.2598425 263.7795276 3732.4023622 -6108.7795276 263.7795276 3726.9330709 -6109.2598425 263.7795276 3721.4637795 -6110.6811024 263.7795276 3716.1610236 -6113.0000000 263.7795276 3711.1850394 -6270.4803150 263.7795276 3438.4212598 -6273.6299213 263.7795276 3433.9236220 -6277.5118110 263.7795276 3430.0417323 -6282.0078740 263.7795276 3426.8933071 -6286.9842520 263.7795276 3424.5732283 -6292.2874016 263.7795276 3423.1515748 -6297.7559055 263.7795276 3422.6732283 -6268.1614173 263.7795276 3443.3968504 -6266.7401575 263.7795276 3448.7000000 -6266.2598425 263.7795276 3454.1692913 -6266.7401575 263.7795276 3459.6385827 -6268.1614173 263.7795276 3464.9413386 -6270.4803150 263.7795276 3469.9169291 -6273.6299213 263.7795276 3474.4145669 -6116.1496063 263.7795276 3706.6877953 -6277.5118110 263.7795276 3478.2964567 -6282.0078740 263.7795276 3481.4456693 -6286.9842520 263.7795276 3483.7665354 -6292.2874016 263.7795276 3485.1870079 -6297.7559055 263.7795276 3485.6653543 -6120.0314961 263.7795276 3702.8059055 -6124.5275591 263.7795276 3699.6570866 -6129.5039370 263.7795276 3697.3370079 -6134.8070866 263.7795276 3695.9157480 -6140.2755906 263.7795276 3695.4377953 -6868.5196850 263.7795276 3644.6240157 -6885.0314961 263.7795276 3653.1236220 -6902.6732283 263.7795276 3658.9299213 -6921.0039370 263.7795276 3661.8992126 -6939.5748031 263.7795276 3661.9582677 -7266.5472441 263.7795276 3667.0862205 -7179.5118110 263.7795276 3688.0976378 -6124.5275591 263.7795276 3754.2094488 -6129.5039370 263.7795276 3756.5303150 -6134.8070866 263.7795276 3757.9507874 -6140.2755906 263.7795276 3758.4295276 -7082.1929134 263.7795276 3758.6818898 -7084.2165354 263.7795276 3763.0220472 -7171.9881890 263.7795276 3917.3314961 -7174.7559055 263.7795276 3921.3708661 -7178.1496063 263.7795276 3924.8984252 -7182.0787402 263.7795276 3927.8165354 -7186.4370079 263.7795276 3930.0452756 -7191.1062992 263.7795276 3931.5232283 -7195.9527559 263.7795276 3932.2106299 -7016.4370079 263.7795276 4005.6496063 -7026.7125984 263.7795276 4002.8937008 -7465.8464567 263.7795276 3946.7244094 -7461.3543307 263.7795276 3956.3661417 -7037.3110236 263.7795276 4001.9685039 -7458.5984252 263.7795276 3966.6377953 -7457.6732283 263.7795276 3977.2362205 -7458.5984252 263.7795276 3987.8346457 -7461.3543307 263.7795276 3998.1062992 -7006.7952756 263.7795276 4010.1456693 -6998.0826772 263.7795276 4016.2440945 -6990.5629921 263.7795276 4023.7677165 -6984.4606299 263.7795276 4032.4803150 -6979.9645669 263.7795276 4042.1220472 -6977.2125984 263.7795276 4052.3937008 -6976.2834646 263.7795276 4062.9921260 -6977.2125984 263.7795276 4073.5905512 -6979.9645669 263.7795276 4083.8622047 -6984.4606299 263.7795276 4093.5039370 -6989.5472441 263.7795276 4100.7637795 -6990.5629921 263.7795276 4102.2165354 -6998.0826772 263.7795276 4109.7401575 -7006.7952756 263.7795276 4115.8385827 -7057.9409449 263.7795276 4145.3661417 -6606.2125984 263.7795276 4136.0511811 -6620.0629921 263.7795276 4148.4251969 -7067.5826772 263.7795276 4149.8622047 -7077.8543307 263.7795276 4152.6181102 -3495.4000000 263.7795276 1381.6208661 -3376.2767717 263.7795276 1441.2889764 -3367.7307087 263.7795276 1440.5409449 -3384.5625984 263.7795276 1443.5090551 -3392.3370079 263.7795276 1447.1342520 -3399.3641732 263.7795276 1452.0547244 -3622.1035433 263.7795276 1617.3885827 -3405.4299213 263.7795276 1458.1204724 -3410.3500000 263.7795276 1465.1472441 -3413.9755906 263.7795276 1472.9220472 -3416.1956693 263.7795276 1481.2078740 -3416.9433071 263.7795276 1489.7535433 -3416.1956693 263.7795276 1498.2992126 -3413.9755906 263.7795276 1506.5854331 -3410.3500000 263.7795276 1514.3598425 -3405.4299213 263.7795276 1521.3870079 -3399.3637795 263.7795276 1527.4527559 -3392.3370079 263.7795276 1532.3732283 -3384.5625984 263.7795276 1535.9984252 -3376.2767717 263.7795276 1538.2188976 -3367.7307087 263.7795276 1538.9661417 -2758.3248031 263.7795276 1543.3070866 -2766.8708661 263.7795276 1544.0547244 -2775.1570866 263.7795276 1546.2751969 -2782.9311024 263.7795276 1549.9003937 -2789.9582677 263.7795276 1554.8204724 -2796.0244094 263.7795276 1560.8862205 -2800.9440945 263.7795276 1567.9133858 -2804.5696850 263.7795276 1575.6877953 -2806.7905512 263.7795276 1583.9740157 -2807.5374016 263.7795276 1592.5196850 -2806.7897638 263.7795276 1601.0653543 -2804.5696850 263.7795276 1609.3515748 -2800.9440945 263.7795276 1617.1259843 -2796.0244094 263.7795276 1624.1527559 -3633.3937008 263.7795276 1634.6051181 -2789.9582677 263.7795276 1630.2185039 -2782.9311024 263.7795276 1635.1389764 -3647.5011811 263.7795276 1649.6000000 -2775.1570866 263.7795276 1638.7645669 -2766.8704724 263.7795276 1640.9846457 -2758.3248031 263.7795276 1641.7322835 -2947.8858268 263.7795276 1646.1996063 -2952.7437008 263.7795276 1646.6299213 -2957.4641732 263.7795276 1647.8535433 -2961.9192913 263.7795276 1649.8377953 -3663.9976378 263.7795276 1661.9173228 -2965.9870079 263.7795276 1652.5279528 -2969.5559055 263.7795276 1655.8511811 -2972.5295276 263.7795276 1659.7165354 -2974.8267717 263.7795276 1664.0185039 -4160.5118110 263.7795276 2184.4153543 -4165.4881890 263.7795276 2186.7354331 -2976.3838583 263.7795276 1668.6397638 -2977.1594488 263.7795276 1673.4543307 -2977.1318898 263.7795276 1678.3311024 -2976.3015748 263.7795276 1683.1366142 -3424.5535433 263.7795276 1918.0224409 -3419.4917323 263.7795276 1917.0874016 -3414.3456693 263.7795276 1917.0456693 -3429.3755906 263.7795276 1919.8220472 -3433.8122047 263.7795276 1922.4318898 -3437.7279528 263.7795276 1925.7724409 -3441.0039370 263.7795276 1929.7421260 -3443.5413386 263.7795276 1934.2200787 -3445.2622047 263.7795276 1939.0708661 -3446.1145669 263.7795276 1944.1464567 -3446.0728346 263.7795276 1949.2937008 -3445.1377953 263.7795276 1954.3551181 -3443.3377953 263.7795276 1959.1771654 -3440.7283465 263.7795276 1963.6133858 -3437.3877953 263.7795276 1967.5291339 -4155.2125984 263.7795276 2182.9940945 -3422.6240157 263.7795276 1993.1007874 -3420.9031496 263.7795276 1997.9515748 -3418.3661417 263.7795276 2002.4295276 -3415.0905512 263.7795276 2006.3992126 -3411.1740157 263.7795276 2009.7397638 -3406.7381890 263.7795276 2012.3492126 -3401.9157480 263.7795276 2014.1492126 -3396.8543307 263.7795276 2015.0842520 -3391.7074803 263.7795276 2015.1259843 -4149.7401575 263.7795276 2182.5157480 -2469.7374016 263.7795276 2062.3527559 -2974.0299213 263.7795276 2122.4511811 -2982.5759843 263.7795276 2123.1984252 -2990.8618110 263.7795276 2125.4188976 -2998.6362205 263.7795276 2129.0440945 -3005.6633858 263.7795276 2133.9645669 -3011.7291339 263.7795276 2140.0303150 -3016.6492126 263.7795276 2147.0570866 -3020.2748031 263.7795276 2154.8318898 -3022.4948819 263.7795276 2163.1177165 -3023.2425197 263.7795276 2171.6637795 -3022.4948819 263.7795276 2180.2090551 -4169.9881890 263.7795276 2189.8846457 -4173.8700787 263.7795276 2193.7665354 -4177.0196850 263.7795276 2198.2637795 -4179.3385827 263.7795276 2203.2393701 -4180.7598425 263.7795276 2208.5425197 -4181.2362205 263.7795276 2214.0118110 -4180.7598425 263.7795276 2219.4811024 -4179.3385827 263.7795276 2224.7838583 -4177.0196850 263.7795276 2229.7594488 -4173.8700787 263.7795276 2234.2570866 -4169.9881890 263.7795276 2238.1393701 -4165.4881890 263.7795276 2241.2881890 -4160.5157480 263.7795276 2243.6086614 -4155.2125984 263.7795276 2245.0291339 -4149.7401575 263.7795276 2245.5078740 -4003.0314961 263.7795276 2457.1791339 -3997.7322835 263.7795276 2455.7582677 -3232.3062992 263.7795276 2329.3082677 -3211.7515748 263.7795276 2328.1397638 -3252.3460630 263.7795276 2334.0283465 -4008.0078740 263.7795276 2459.4992126 -4012.5078740 263.7795276 2462.6484252 -4016.3897638 263.7795276 2466.5303150 -4019.5393701 263.7795276 2471.0275591 -4021.8582677 263.7795276 2476.0031496 -4023.2795276 263.7795276 2481.3062992 -4023.7559055 263.7795276 2486.7755906 -4023.2795276 263.7795276 2492.2448819 -4021.8582677 263.7795276 2497.5480315 -4019.5393701 263.7795276 2502.5236220 -4016.3897638 263.7795276 2507.0208661 -4012.5078740 263.7795276 2510.9031496 -4008.0078740 263.7795276 2514.0519685 -4003.0354331 263.7795276 2516.3724409 -6308.5275591 263.7795276 3424.5732283 -3997.7322835 263.7795276 2517.7933071 -6303.2283465 263.7795276 3423.1515748 -6313.5039370 263.7795276 3426.8933071 -6318.0039370 263.7795276 3430.0417323 -6321.8858268 263.7795276 3433.9236220 -6325.0354331 263.7795276 3438.4212598 -6327.3543307 263.7795276 3443.3968504 -6328.7755906 263.7795276 3448.7000000 -6329.2519685 263.7795276 3454.1692913 -6328.7755906 263.7795276 3459.6385827 -6327.3543307 263.7795276 3464.9413386 -6325.0354331 263.7795276 3469.9177165 -6321.8858268 263.7795276 3474.4145669 -6318.0039370 263.7795276 3478.2964567 -6313.5039370 263.7795276 3481.4456693 -6308.5275591 263.7795276 3483.7665354 -6303.2283465 263.7795276 3485.1870079 -2705.9578740 263.7795276 1289.5216535 -3020.9185039 263.7795276 1107.6791339 -2749.7791339 263.7795276 1544.0547244 -2741.4933071 263.7795276 1546.2751969 -2733.7185039 263.7795276 1549.9003937 -2469.7374016 263.7795276 1698.6673228 -3359.1854331 263.7795276 1441.2885827 -3350.8992126 263.7795276 1443.5090551 -3343.1244094 263.7795276 1447.1342520 -3336.0976378 263.7795276 1452.0547244 -3330.0318898 263.7795276 1458.1204724 -3325.1114173 263.7795276 1465.1472441 -3321.4866142 263.7795276 1472.9220472 -3319.2661417 263.7795276 1481.2078740 -3318.5181102 263.7795276 1489.7535433 -3319.2657480 263.7795276 1498.2992126 -3321.4866142 263.7795276 1506.5854331 -3325.1114173 263.7795276 1514.3598425 -3330.0318898 263.7795276 1521.3870079 -3336.0976378 263.7795276 1527.4527559 -3343.1244094 263.7795276 1532.3732283 -3350.8992126 263.7795276 1535.9984252 -3359.1854331 263.7795276 1538.2188976 -2726.6921260 263.7795276 1554.8204724 -2720.6259843 263.7795276 1560.8866142 -2715.7055118 263.7795276 1567.9133858 -2712.0803150 263.7795276 1575.6881890 -2709.8598425 263.7795276 1583.9740157 -2709.1122047 263.7795276 1592.5196850 -2709.8598425 263.7795276 1601.0653543 -2712.0803150 263.7795276 1609.3511811 -2715.7055118 263.7795276 1617.1259843 -2720.6259843 263.7795276 1624.1531496 -2726.6921260 263.7795276 1630.2188976 -2733.7185039 263.7795276 1635.1389764 -2741.4933071 263.7795276 1638.7641732 -2749.7791339 263.7795276 1640.9846457 -2943.0236220 263.7795276 1646.5748031 -2938.2897638 263.7795276 1647.7452756 -2933.8125984 263.7795276 1649.6787402 -2929.7149606 263.7795276 1652.3232283 -2926.1086614 263.7795276 1655.6059055 -2923.0917323 263.7795276 1659.4374016 -2920.7460630 263.7795276 1663.7133858 -2919.1362205 263.7795276 1668.3165354 -2904.3724409 263.7795276 1693.8881890 -2901.0330709 263.7795276 1697.8043307 -2898.4224409 263.7795276 1702.2401575 -2896.6232283 263.7795276 1707.0622047 -2895.6885827 263.7795276 1712.1240157 -2895.6468504 263.7795276 1717.2708661 -2896.4988189 263.7795276 1722.3464567 -2898.2196850 263.7795276 1727.1972441 -2900.7570866 263.7795276 1731.6755906 -2904.0334646 263.7795276 1735.6452756 -2907.9488189 263.7795276 1738.9854331 -2912.3854331 263.7795276 1741.5952756 -2917.2074803 263.7795276 1743.3948819 -2922.2688976 263.7795276 1744.3299213 -2927.4157480 263.7795276 1744.3716535 -3365.4590551 263.7795276 1978.2807087 -3364.6070866 263.7795276 1983.3562992 -3364.6484252 263.7795276 1988.5035433 -3365.5830709 263.7795276 1993.5645669 -3367.3826772 263.7795276 1998.3870079 -3369.9925197 263.7795276 2002.8232283 -3373.3334646 263.7795276 2006.7389764 -3377.3031496 263.7795276 2010.0153543 -3381.7807087 263.7795276 2012.5523622 -3386.6314961 263.7795276 2014.2732283 -3399.9401575 263.7795276 1922.1562992 -3395.9708661 263.7795276 1925.4326772 -3404.4188976 263.7795276 1919.6192913 -3409.2696850 263.7795276 1917.8980315 -7355.7559055 263.7795276 3659.4740157 -6957.9291339 263.7795276 3659.1047244 -7096.6535433 263.7795276 3722.0244094 -6145.7480315 263.7795276 3695.9157480 -6151.0472441 263.7795276 3697.3370079 -6156.0236220 263.7795276 3699.6570866 -6160.5236220 263.7795276 3702.8059055 -6164.4055118 263.7795276 3706.6877953 -6167.5551181 263.7795276 3711.1850394 -6169.8740157 263.7795276 3716.1610236 -6171.2952756 263.7795276 3721.4637795 -6171.7716535 263.7795276 3726.9330709 -7092.5629921 263.7795276 3724.5098425 -7088.9251969 263.7795276 3727.6236220 -6171.2952756 263.7795276 3732.4023622 -7085.8385827 263.7795276 3731.2854331 -7083.3858268 263.7795276 3735.3964567 -6169.8740157 263.7795276 3737.7055118 -7081.6259843 263.7795276 3739.8511811 -6167.5551181 263.7795276 3742.6811024 -7080.6141732 263.7795276 3744.5307087 -6164.4055118 263.7795276 3747.1783465 -7080.3700787 263.7795276 3749.3129921 -6160.5236220 263.7795276 3751.0606299 -7080.9015748 263.7795276 3754.0716535 -6156.0236220 263.7795276 3754.2102362 -6151.0472441 263.7795276 3756.5303150 -6145.7480315 263.7795276 3757.9507874 -3020.2748031 263.7795276 2188.4952756 -4144.2716535 263.7795276 2182.9940945 -4138.9685039 263.7795276 2184.4153543 -4133.9921260 263.7795276 2186.7354331 -4129.4960630 263.7795276 2189.8846457 -3016.6492126 263.7795276 2196.2696850 -4125.6141732 263.7795276 2193.7665354 -4122.4645669 263.7795276 2198.2637795 -3011.7291339 263.7795276 2203.2968504 -4120.1456693 263.7795276 2203.2393701 -4118.7244094 263.7795276 2208.5425197 -3005.6629921 263.7795276 2209.3625984 -4118.2440945 263.7795276 2214.0118110 -2998.6362205 263.7795276 2214.2830709 -4118.7244094 263.7795276 2219.4811024 -2990.8618110 263.7795276 2217.9082677 -2982.5759843 263.7795276 2220.1283465 -4120.1456693 263.7795276 2224.7838583 -2974.0299213 263.7795276 2220.8759843 -2925.5649606 263.7795276 2180.2090551 -2944.2188976 263.7795276 2336.2948819 -2924.8173228 263.7795276 2171.6633858 -2925.5653543 263.7795276 2163.1181102 -2927.7858268 263.7795276 2154.8318898 -2931.4106299 263.7795276 2147.0574803 -2936.3311024 263.7795276 2140.0303150 -2942.3968504 263.7795276 2133.9645669 -2949.4236220 263.7795276 2129.0440945 -2957.1984252 263.7795276 2125.4188976 -2965.4846457 263.7795276 2123.1984252 -2927.7858268 263.7795276 2188.4952756 -2931.4106299 263.7795276 2196.2700787 -2936.3311024 263.7795276 2203.2968504 -2942.3968504 263.7795276 2209.3625984 -2949.4236220 263.7795276 2214.2830709 -2957.1984252 263.7795276 2217.9082677 -2965.4846457 263.7795276 2220.1287402 -4122.4645669 263.7795276 2229.7598425 -4125.6141732 263.7795276 2234.2570866 -4129.4960630 263.7795276 2238.1393701 -4133.9921260 263.7795276 2241.2881890 -4138.9685039 263.7795276 2243.6086614 -4144.2716535 263.7795276 2245.0291339 -7426.9251969 263.7795276 3544.3913386 -7201.4212598 263.7795276 3559.5897638 -7313.5629921 263.7795276 3542.9433071 -7443.6377953 263.7795276 3547.1688976 -7459.7834646 263.7795276 3552.3094488 -7475.0275591 263.7795276 3559.7062992 -7093.3661417 263.7795276 3593.9070866 -7445.0905512 263.7795276 3665.4362205 -7449.7716535 263.7795276 3666.5003937 -7881.0669291 263.7795276 3794.1326772 -6992.1692913 263.7795276 3645.0153543 -6975.6062992 263.7795276 3653.4106299 -7454.2125984 263.7795276 3668.3090551 -7458.3070866 263.7795276 3670.8137795 -7461.9370079 263.7795276 3673.9472441 -7465.0157480 263.7795276 3677.6279528 -7467.4566929 263.7795276 3681.7578740 -7469.1968504 263.7795276 3686.2299213 -7470.1889764 263.7795276 3690.9232283 -7470.4055118 263.7795276 3695.7157480 -7469.8464567 263.7795276 3700.4807087 -7468.5236220 263.7795276 3705.0917323 -7466.4685039 263.7795276 3709.4275591 -7367.1771654 263.7795276 3881.4066929 -7896.3385827 263.7795276 3804.6303150 -7909.7834646 263.7795276 3817.3877953 -7537.6259843 263.7795276 3865.9960630 -7921.0669291 263.7795276 3832.0917323 -7527.3503937 263.7795276 3868.7500000 -7517.7125984 263.7795276 3873.2448819 -7509.0000000 263.7795276 3879.3464567 -7501.4763780 263.7795276 3886.8677165 -7364.3858268 263.7795276 3885.4295276 -7360.9685039 263.7795276 3888.9358268 -7495.3740157 263.7795276 3895.5811024 -7357.0196850 263.7795276 3891.8295276 -7352.6456693 263.7795276 3894.0303150 -7347.9685039 263.7795276 3895.4771654 -7343.1141732 263.7795276 3896.1318898 -7297.5039370 263.7795276 3901.4444882 -7252.9606299 263.7795276 3912.6118110 -7210.2362205 263.7795276 3929.4448819 -7205.6496063 263.7795276 3931.1562992 -7200.8464567 263.7795276 3932.0866142 -7465.8464567 263.7795276 4007.7480315 -7047.9055118 263.7795276 4002.8937008 -7058.1811024 263.7795276 4005.6496063 -7067.8188976 263.7795276 4010.1456693 -7471.9488189 263.7795276 4016.4606299 -7479.4724409 263.7795276 4023.9842520 -7488.1850394 263.7795276 4030.0826772 -7497.8228346 263.7795276 4034.5787402 -7508.0984252 263.7795276 4037.3307087 -2941.8204724 263.7795276 1739.2610236 -2945.7897638 263.7795276 1735.9846457 -2937.3421260 263.7795276 1741.7980315 -2932.4917323 263.7795276 1743.5192913 -6820.3110236 47.2440945 4693.7125984 -7137.8464567 263.7795276 4877.0433071 -7137.8464567 47.2440945 4877.0433071 -6820.3110236 263.7795276 4693.7125984 -6806.2834646 47.2440945 4684.2086614 -6806.2834646 263.7795276 4684.2086614 -6793.7559055 47.2440945 4672.7952756 -6793.7559055 263.7795276 4672.7952756 -6782.9960630 263.7795276 4659.7086614 -6782.9960630 47.2440945 4659.7086614 -6739.7007874 263.7795276 4586.8897638 -6739.7007874 47.2440945 4586.8897638 -6725.0590551 47.2440945 4562.2598425 -6725.0590551 263.7795276 4562.2598425 -6683.4055118 263.7795276 4456.8188976 -6683.4055118 47.2440945 4456.8188976 -6659.0984252 47.2440945 4346.0826772 -6659.0984252 263.7795276 4346.0826772 -6652.7598425 263.7795276 4232.8897638 -6652.7598425 47.2440945 4232.8897638 -6651.7480315 47.2440945 4214.3464567 -6651.7480315 263.7795276 4214.3464567 -6647.8425197 47.2440945 4196.1889764 -6647.8425197 263.7795276 4196.1889764 -6641.1377953 263.7795276 4178.8700787 -6641.1377953 47.2440945 4178.8700787 -6631.7992126 263.7795276 4162.8149606 -6631.7992126 47.2440945 4162.8149606 -6620.0629921 263.7795276 4148.4251969 -6620.0629921 47.2440945 4148.4251969 -6606.2125984 47.2440945 4136.0511811 -6606.2125984 263.7795276 4136.0511811 -6590.5984252 47.2440945 4126.0000000 -6590.5984252 263.7795276 4126.0000000 -3271.2614173 47.2440945 2342.1566929 -3271.2614173 263.7795276 2342.1566929 -3252.3460630 47.2440945 2334.0283465 -3252.3460630 263.7795276 2334.0283465 -3232.3062992 47.2440945 2329.3082677 -3232.3062992 263.7795276 2329.3082677 -3211.7515748 47.2440945 2328.1397638 -3211.7515748 263.7795276 2328.1397638 -2944.2188976 47.2440945 2336.2948819 -2944.2188976 263.7795276 2336.2948819 -2469.7374016 47.2440945 2062.3527559 -2469.7374016 263.7795276 2062.3527559 -2469.7374016 263.7795276 1698.6673228 -2469.7374016 47.2440945 1698.6673228 -2705.9578740 263.7795276 1289.5216535 -2705.9578740 47.2440945 1289.5216535 -3020.9185039 47.2440945 1107.6791339 -3020.9185039 263.7795276 1107.6791339 -3495.4000000 47.2440945 1381.6208661 -3495.4000000 263.7795276 1381.6208661 -3622.1035433 263.7795276 1617.3885827 -3622.1035433 47.2440945 1617.3885827 -3633.3937008 263.7795276 1634.6051181 -3633.3937008 47.2440945 1634.6051181 -3647.5011811 47.2440945 1649.6000000 -3647.5011811 263.7795276 1649.6000000 -3663.9976378 47.2440945 1661.9173228 -3663.9976378 263.7795276 1661.9173228 -6868.5196850 47.2440945 3644.6240157 -6868.5196850 263.7795276 3644.6240157 -6885.0314961 47.2440945 3653.1236220 -6885.0314961 263.7795276 3653.1236220 -6902.6732283 47.2440945 3658.9299213 -6902.6732283 263.7795276 3658.9299213 -6921.0039370 47.2440945 3661.8992126 -6921.0039370 263.7795276 3661.8992126 -6939.5748031 47.2440945 3661.9582677 -6939.5748031 263.7795276 3661.9582677 -6957.9291339 47.2440945 3659.1047244 -6957.9291339 263.7795276 3659.1047244 -6975.6062992 47.2440945 3653.4106299 -6975.6062992 263.7795276 3653.4106299 -6992.1692913 47.2440945 3645.0153543 -6992.1692913 263.7795276 3645.0153543 -7093.3661417 47.2440945 3593.9070866 -7093.3661417 263.7795276 3593.9070866 -7201.4212598 47.2440945 3559.5897638 -7201.4212598 263.7795276 3559.5897638 -7313.5629921 47.2440945 3542.9433071 -7313.5629921 263.7795276 3542.9433071 -7426.9251969 47.2440945 3544.3913386 -7426.9251969 263.7795276 3544.3913386 -7443.6377953 47.2440945 3547.1688976 -7443.6377953 263.7795276 3547.1688976 -7459.7834646 47.2440945 3552.3094488 -7459.7834646 263.7795276 3552.3094488 -7475.0275591 47.2440945 3559.7062992 -7475.0275591 263.7795276 3559.7062992 -7881.0669291 47.2440945 3794.1326772 -7881.0669291 263.7795276 3794.1326772 -7896.3385827 47.2440945 3804.6303150 -7896.3385827 263.7795276 3804.6303150 -7909.7834646 47.2440945 3817.3877953 -7909.7834646 263.7795276 3817.3877953 -7921.0669291 263.7795276 3832.0917323 -7921.0669291 47.2440945 3832.0917323 -7929.9094488 263.7795276 3848.3795276 -7929.9094488 47.2440945 3848.3795276 -7936.0984252 263.7795276 3865.8503937 -7936.0984252 47.2440945 3865.8503937 -8051.1535433 263.7795276 4295.2440945 -8051.1535433 47.2440945 4295.2440945 -8054.5314961 47.2440945 4313.4645669 -8054.5314961 263.7795276 4313.4645669 -8055.0157480 263.7795276 4331.9921260 -8055.0157480 47.2440945 4331.9921260 -8052.5944882 263.7795276 4350.3700787 -8052.5944882 47.2440945 4350.3700787 -8047.3307087 263.7795276 4368.1377953 -8047.3307087 47.2440945 4368.1377953 -8039.3543307 263.7795276 4384.8661417 -8040.7007874 47.2440945 4382.0393701 -8039.3543307 47.2440945 4384.8661417 -8040.7007874 263.7795276 4382.0393701 -7974.9685039 263.7795276 4496.3818898 -7974.9685039 47.2440945 4496.3818898 -7956.5157480 263.7795276 4528.3464567 -7956.5157480 47.2440945 4528.3464567 -7817.0826772 47.2440945 4769.8503937 -7817.0826772 263.7795276 4769.8503937 -7806.5866142 263.7795276 4785.1259843 -7806.5866142 47.2440945 4785.1259843 -7793.8267717 47.2440945 4798.5669291 -7793.8267717 263.7795276 4798.5669291 -7779.1259843 47.2440945 4809.8503937 -7779.1259843 263.7795276 4809.8503937 -7762.8346457 47.2440945 4818.6929134 -7762.8346457 263.7795276 4818.6929134 -7745.3661417 47.2440945 4824.8818898 -7745.3661417 263.7795276 4824.8818898 -7561.9094488 47.2440945 4874.0393701 -7561.9094488 263.7795276 4874.0393701 -7494.0511811 47.2440945 4892.2204724 -7494.0511811 263.7795276 4892.2204724 -7340.0314961 47.2440945 4933.4881890 -7340.0314961 263.7795276 4933.4881890 -7315.9724409 47.2440945 4939.9370079 -7315.9724409 263.7795276 4939.9370079 -7297.7480315 47.2440945 4943.3149606 -7297.7480315 263.7795276 4943.3149606 -7279.2204724 47.2440945 4943.7992126 -7279.2204724 263.7795276 4943.7992126 -7260.8464567 47.2440945 4941.3818898 -7260.8464567 263.7795276 4941.3818898 -7243.0787402 47.2440945 4936.1141732 -7243.0787402 263.7795276 4936.1141732 -7229.1771654 47.2440945 4929.4842520 -7229.1771654 263.7795276 4929.4842520 -7226.3503937 47.2440945 4928.1377953 -7226.3503937 263.7795276 4928.1377953 -7201.4212598 47.2440945 3559.5897638 -7426.9251969 47.2440945 3544.3913386 -7313.5629921 47.2440945 3542.9433071 -7443.6377953 47.2440945 3547.1688976 -7459.7834646 47.2440945 3552.3094488 -7475.0275591 47.2440945 3559.7062992 -7093.3661417 47.2440945 3593.9070866 -7445.0905512 47.2440945 3665.4362205 -7449.7716535 47.2440945 3666.5003937 -7881.0669291 47.2440945 3794.1326772 -7355.7559055 47.2440945 3659.4740157 -6992.1692913 47.2440945 3645.0153543 -6975.6062992 47.2440945 3653.4106299 -6957.9291339 47.2440945 3659.1047244 -7454.2125984 47.2440945 3668.3090551 -7458.3070866 47.2440945 3670.8137795 -7461.9370079 47.2440945 3673.9472441 -7465.0157480 47.2440945 3677.6279528 -7467.4566929 47.2440945 3681.7578740 -7469.1968504 47.2440945 3686.2299213 -7470.1889764 47.2440945 3690.9232283 -7470.4055118 47.2440945 3695.7157480 -7469.8464567 47.2440945 3700.4807087 -7468.5236220 47.2440945 3705.0917323 -7466.4685039 47.2440945 3709.4275591 -7367.1771654 47.2440945 3881.4066929 -7896.3385827 47.2440945 3804.6303150 -7909.7834646 47.2440945 3817.3877953 -7537.6259843 47.2440945 3865.9960630 -7921.0669291 47.2440945 3832.0917323 -7548.2244094 47.2440945 3865.0692913 -7929.9094488 47.2440945 3848.3795276 -7527.3503937 47.2440945 3868.7500000 -7517.7125984 47.2440945 3873.2448819 -7509.0000000 47.2440945 3879.3464567 -7501.4763780 47.2440945 3886.8677165 -7364.3858268 47.2440945 3885.4295276 -7360.9685039 47.2440945 3888.9358268 -7495.3740157 47.2440945 3895.5811024 -7357.0196850 47.2440945 3891.8295276 -7352.6456693 47.2440945 3894.0303150 -7347.9685039 47.2440945 3895.4771654 -7343.1141732 47.2440945 3896.1318898 -7465.8464567 47.2440945 3946.7244094 -7297.5039370 47.2440945 3901.4444882 -7252.9606299 47.2440945 3912.6118110 -7210.2362205 47.2440945 3929.4448819 -7205.6496063 47.2440945 3931.1562992 -7200.8464567 47.2440945 3932.0866142 -7195.9527559 47.2440945 3932.2106299 -2976.3015748 47.2440945 1683.1366142 -3409.2696850 47.2440945 1917.8980315 -3414.3456693 47.2440945 1917.0456693 -3404.4188976 47.2440945 1919.6192913 -3399.9401575 47.2440945 1922.1562992 -3395.9708661 47.2440945 1925.4326772 -2705.9578740 47.2440945 1289.5216535 -3495.4000000 47.2440945 1381.6208661 -3020.9185039 47.2440945 1107.6791339 -2749.7791339 47.2440945 1544.0547244 -2741.4933071 47.2440945 1546.2751969 -2733.7185039 47.2440945 1549.9003937 -2469.7374016 47.2440945 1698.6673228 -3359.1854331 47.2440945 1441.2885827 -3367.7307087 47.2440945 1440.5409449 -3350.8992126 47.2440945 1443.5090551 -3343.1244094 47.2440945 1447.1342520 -3336.0976378 47.2440945 1452.0547244 -3330.0318898 47.2440945 1458.1204724 -3325.1114173 47.2440945 1465.1472441 -3321.4866142 47.2440945 1472.9220472 -3319.2661417 47.2440945 1481.2078740 -3318.5181102 47.2440945 1489.7535433 -2758.3248031 47.2440945 1543.3070866 -3319.2657480 47.2440945 1498.2992126 -3321.4866142 47.2440945 1506.5854331 -3325.1114173 47.2440945 1514.3598425 -3330.0318898 47.2440945 1521.3870079 -3336.0976378 47.2440945 1527.4527559 -3343.1244094 47.2440945 1532.3732283 -3350.8992126 47.2440945 1535.9984252 -3359.1854331 47.2440945 1538.2188976 -3367.7307087 47.2440945 1538.9661417 -2726.6921260 47.2440945 1554.8204724 -2720.6259843 47.2440945 1560.8866142 -2715.7055118 47.2440945 1567.9133858 -2712.0803150 47.2440945 1575.6881890 -2709.8598425 47.2440945 1583.9740157 -2709.1122047 47.2440945 1592.5196850 -2709.8598425 47.2440945 1601.0653543 -2712.0803150 47.2440945 1609.3511811 -2715.7055118 47.2440945 1617.1259843 -2720.6259843 47.2440945 1624.1531496 -2726.6921260 47.2440945 1630.2188976 -2733.7185039 47.2440945 1635.1389764 -2741.4933071 47.2440945 1638.7641732 -2749.7791339 47.2440945 1640.9846457 -2758.3248031 47.2440945 1641.7322835 -2943.0236220 47.2440945 1646.5748031 -2947.8858268 47.2440945 1646.1996063 -2938.2897638 47.2440945 1647.7452756 -2933.8125984 47.2440945 1649.6787402 -2929.7149606 47.2440945 1652.3232283 -2926.1086614 47.2440945 1655.6059055 -2923.0917323 47.2440945 1659.4374016 -2920.7460630 47.2440945 1663.7133858 -2919.1362205 47.2440945 1668.3165354 -2904.3724409 47.2440945 1693.8881890 -2901.0330709 47.2440945 1697.8043307 -2898.4224409 47.2440945 1702.2401575 -2469.7374016 47.2440945 2062.3527559 -2896.6232283 47.2440945 1707.0622047 -2895.6885827 47.2440945 1712.1240157 -2895.6468504 47.2440945 1717.2708661 -2896.4988189 47.2440945 1722.3464567 -2898.2196850 47.2440945 1727.1972441 -2900.7570866 47.2440945 1731.6755906 -2904.0334646 47.2440945 1735.6452756 -2907.9488189 47.2440945 1738.9854331 -2912.3854331 47.2440945 1741.5952756 -2917.2074803 47.2440945 1743.3948819 -2922.2688976 47.2440945 1744.3299213 -2927.4157480 47.2440945 1744.3716535 -3365.4590551 47.2440945 1978.2807087 -3364.6070866 47.2440945 1983.3562992 -3364.6484252 47.2440945 1988.5035433 -3365.5830709 47.2440945 1993.5645669 -3367.3826772 47.2440945 1998.3870079 -3369.9925197 47.2440945 2002.8232283 -3373.3334646 47.2440945 2006.7389764 -3377.3031496 47.2440945 2010.0153543 -3381.7807087 47.2440945 2012.5523622 -3386.6314961 47.2440945 2014.2732283 -3391.7074803 47.2440945 2015.1259843 -2965.4846457 47.2440945 2123.1984252 -2974.0299213 47.2440945 2122.4511811 -2957.1984252 47.2440945 2125.4188976 -2949.4236220 47.2440945 2129.0440945 -2942.3968504 47.2440945 2133.9645669 -2936.3311024 47.2440945 2140.0303150 -2931.4106299 47.2440945 2147.0574803 -2927.7858268 47.2440945 2154.8318898 -2925.5653543 47.2440945 2163.1181102 -2924.8173228 47.2440945 2171.6633858 -2925.5649606 47.2440945 2180.2090551 -2944.2188976 47.2440945 2336.2948819 -2927.7858268 47.2440945 2188.4952756 -2931.4106299 47.2440945 2196.2700787 -2936.3311024 47.2440945 2203.2968504 -2942.3968504 47.2440945 2209.3625984 -2949.4236220 47.2440945 2214.2830709 -2957.1984252 47.2440945 2217.9082677 -2965.4846457 47.2440945 2220.1287402 -2974.0299213 47.2440945 2220.8759843 -4120.1456693 47.2440945 2224.7838583 -4122.4645669 47.2440945 2229.7598425 -4125.6141732 47.2440945 2234.2570866 -4129.4960630 47.2440945 2238.1393701 -4133.9921260 47.2440945 2241.2881890 -4138.9685039 47.2440945 2243.6086614 -4144.2716535 47.2440945 2245.0291339 -4149.7401575 47.2440945 2245.5078740 -3211.7515748 47.2440945 2328.1397638 -6939.5748031 47.2440945 3661.9582677 -7266.5472441 47.2440945 3667.0862205 -3399.3641732 47.2440945 1452.0547244 -3622.1035433 47.2440945 1617.3885827 -3392.3370079 47.2440945 1447.1342520 -3384.5625984 47.2440945 1443.5090551 -3376.2767717 47.2440945 1441.2889764 -3405.4299213 47.2440945 1458.1204724 -3410.3500000 47.2440945 1465.1472441 -3413.9755906 47.2440945 1472.9220472 -3416.1956693 47.2440945 1481.2078740 -3416.9433071 47.2440945 1489.7535433 -3416.1956693 47.2440945 1498.2992126 -3413.9755906 47.2440945 1506.5854331 -3410.3500000 47.2440945 1514.3598425 -3405.4299213 47.2440945 1521.3870079 -3399.3637795 47.2440945 1527.4527559 -3392.3370079 47.2440945 1532.3732283 -3384.5625984 47.2440945 1535.9984252 -3376.2767717 47.2440945 1538.2188976 -2766.8708661 47.2440945 1544.0547244 -2775.1570866 47.2440945 1546.2751969 -2782.9311024 47.2440945 1549.9003937 -2789.9582677 47.2440945 1554.8204724 -2796.0244094 47.2440945 1560.8862205 -2800.9440945 47.2440945 1567.9133858 -2804.5696850 47.2440945 1575.6877953 -2806.7905512 47.2440945 1583.9740157 -2807.5374016 47.2440945 1592.5196850 -2806.7897638 47.2440945 1601.0653543 -2804.5696850 47.2440945 1609.3515748 -2800.9440945 47.2440945 1617.1259843 -2796.0244094 47.2440945 1624.1527559 -3633.3937008 47.2440945 1634.6051181 -2789.9582677 47.2440945 1630.2185039 -2782.9311024 47.2440945 1635.1389764 -3647.5011811 47.2440945 1649.6000000 -2775.1570866 47.2440945 1638.7645669 -2766.8704724 47.2440945 1640.9846457 -2952.7437008 47.2440945 1646.6299213 -2957.4641732 47.2440945 1647.8535433 -2961.9192913 47.2440945 1649.8377953 -3663.9976378 47.2440945 1661.9173228 -2965.9870079 47.2440945 1652.5279528 -2969.5559055 47.2440945 1655.8511811 -2972.5295276 47.2440945 1659.7165354 -2974.8267717 47.2440945 1664.0185039 -4160.5118110 47.2440945 2184.4153543 -4165.4881890 47.2440945 2186.7354331 -6868.5196850 47.2440945 3644.6240157 -2976.3838583 47.2440945 1668.6397638 -2977.1594488 47.2440945 1673.4543307 -2977.1318898 47.2440945 1678.3311024 -3424.5535433 47.2440945 1918.0224409 -3419.4917323 47.2440945 1917.0874016 -3429.3755906 47.2440945 1919.8220472 -3433.8122047 47.2440945 1922.4318898 -3437.7279528 47.2440945 1925.7724409 -3441.0039370 47.2440945 1929.7421260 -3443.5413386 47.2440945 1934.2200787 -3445.2622047 47.2440945 1939.0708661 -3446.1145669 47.2440945 1944.1464567 -3446.0728346 47.2440945 1949.2937008 -3445.1377953 47.2440945 1954.3551181 -3443.3377953 47.2440945 1959.1771654 -3440.7283465 47.2440945 1963.6133858 -3437.3877953 47.2440945 1967.5291339 -4155.2125984 47.2440945 2182.9940945 -3422.6240157 47.2440945 1993.1007874 -3420.9031496 47.2440945 1997.9515748 -3418.3661417 47.2440945 2002.4295276 -3415.0905512 47.2440945 2006.3992126 -3411.1740157 47.2440945 2009.7397638 -3406.7381890 47.2440945 2012.3492126 -3401.9157480 47.2440945 2014.1492126 -3396.8543307 47.2440945 2015.0842520 -4149.7401575 47.2440945 2182.5157480 -2982.5759843 47.2440945 2123.1984252 -2990.8618110 47.2440945 2125.4188976 -2998.6362205 47.2440945 2129.0440945 -3005.6633858 47.2440945 2133.9645669 -3011.7291339 47.2440945 2140.0303150 -3016.6492126 47.2440945 2147.0570866 -3020.2748031 47.2440945 2154.8318898 -3022.4948819 47.2440945 2163.1177165 -3023.2425197 47.2440945 2171.6637795 -3022.4948819 47.2440945 2180.2090551 -4169.9881890 47.2440945 2189.8846457 -4173.8700787 47.2440945 2193.7665354 -4177.0196850 47.2440945 2198.2637795 -4179.3385827 47.2440945 2203.2393701 -4180.7598425 47.2440945 2208.5425197 -4181.2362205 47.2440945 2214.0118110 -4180.7598425 47.2440945 2219.4811024 -4179.3385827 47.2440945 2224.7838583 -4177.0196850 47.2440945 2229.7594488 -4173.8700787 47.2440945 2234.2570866 -4169.9881890 47.2440945 2238.1393701 -4165.4881890 47.2440945 2241.2881890 -4160.5157480 47.2440945 2243.6086614 -4155.2125984 47.2440945 2245.0291339 -4003.0314961 47.2440945 2457.1791339 -3997.7322835 47.2440945 2455.7582677 -3232.3062992 47.2440945 2329.3082677 -3252.3460630 47.2440945 2334.0283465 -3271.2614173 47.2440945 2342.1566929 -3992.2598425 47.2440945 2455.2795276 -4008.0078740 47.2440945 2459.4992126 -4012.5078740 47.2440945 2462.6484252 -4016.3897638 47.2440945 2466.5303150 -4019.5393701 47.2440945 2471.0275591 -4021.8582677 47.2440945 2476.0031496 -4023.2795276 47.2440945 2481.3062992 -4023.7559055 47.2440945 2486.7755906 -4023.2795276 47.2440945 2492.2448819 -4021.8582677 47.2440945 2497.5480315 -4019.5393701 47.2440945 2502.5236220 -4016.3897638 47.2440945 2507.0208661 -4012.5078740 47.2440945 2510.9031496 -4008.0078740 47.2440945 2514.0519685 -4003.0354331 47.2440945 2516.3724409 -6308.5275591 47.2440945 3424.5732283 -3997.7322835 47.2440945 2517.7933071 -3992.2598425 47.2440945 2518.2716535 -6303.2283465 47.2440945 3423.1515748 -6297.7559055 47.2440945 3422.6732283 -6313.5039370 47.2440945 3426.8933071 -6318.0039370 47.2440945 3430.0417323 -6321.8858268 47.2440945 3433.9236220 -6325.0354331 47.2440945 3438.4212598 -6327.3543307 47.2440945 3443.3968504 -6328.7755906 47.2440945 3448.7000000 -6329.2519685 47.2440945 3454.1692913 -6328.7755906 47.2440945 3459.6385827 -6327.3543307 47.2440945 3464.9413386 -6325.0354331 47.2440945 3469.9177165 -6321.8858268 47.2440945 3474.4145669 -6318.0039370 47.2440945 3478.2964567 -6313.5039370 47.2440945 3481.4456693 -6308.5275591 47.2440945 3483.7665354 -6303.2283465 47.2440945 3485.1870079 -6297.7559055 47.2440945 3485.6653543 -3020.2748031 47.2440945 2188.4952756 -4144.2716535 47.2440945 2182.9940945 -4138.9685039 47.2440945 2184.4153543 -4133.9921260 47.2440945 2186.7354331 -4129.4960630 47.2440945 2189.8846457 -3016.6492126 47.2440945 2196.2696850 -4125.6141732 47.2440945 2193.7665354 -4122.4645669 47.2440945 2198.2637795 -3011.7291339 47.2440945 2203.2968504 -4120.1456693 47.2440945 2203.2393701 -4118.7244094 47.2440945 2208.5425197 -3005.6629921 47.2440945 2209.3625984 -4118.2440945 47.2440945 2214.0118110 -2998.6362205 47.2440945 2214.2830709 -4118.7244094 47.2440945 2219.4811024 -2990.8618110 47.2440945 2217.9082677 -2982.5759843 47.2440945 2220.1283465 -2941.8204724 47.2440945 1739.2610236 -2945.7897638 47.2440945 1735.9846457 -2937.3421260 47.2440945 1741.7980315 -2932.4917323 47.2440945 1743.5192913 -7037.3110236 47.2440945 4001.9685039 -7465.8464567 47.2440945 4007.7480315 -7461.3543307 47.2440945 3998.1062992 -7047.9055118 47.2440945 4002.8937008 -7058.1811024 47.2440945 4005.6496063 -7067.8188976 47.2440945 4010.1456693 -7471.9488189 47.2440945 4016.4606299 -7118.9645669 47.2440945 4039.6732283 -7479.4724409 47.2440945 4023.9842520 -7488.1850394 47.2440945 4030.0826772 -7497.8228346 47.2440945 4034.5787402 -7508.0984252 47.2440945 4037.3307087 -7518.6968504 47.2440945 4038.2598425 -3986.7913386 47.2440945 2455.7582677 -3981.4881890 47.2440945 2457.1791339 -3976.5118110 47.2440945 2459.4992126 -3972.0157480 47.2440945 2462.6484252 -3968.1338583 47.2440945 2466.5303150 -3964.9842520 47.2440945 2471.0275591 -3962.6653543 47.2440945 2476.0031496 -3961.2440945 47.2440945 2481.3062992 -3960.7637795 47.2440945 2486.7755906 -3961.2440945 47.2440945 2492.2448819 -3962.6653543 47.2440945 2497.5480315 -3964.9842520 47.2440945 2502.5236220 -3968.1338583 47.2440945 2507.0208661 -3972.0157480 47.2440945 2510.9031496 -3976.5118110 47.2440945 2514.0519685 -6590.5984252 47.2440945 4126.0000000 -3981.4881890 47.2440945 2516.3724409 -3986.7913386 47.2440945 2517.7933071 -6120.0314961 47.2440945 3751.0606299 -6116.1496063 47.2440945 3747.1783465 -6113.0000000 47.2440945 3742.6811024 -6110.6811024 47.2440945 3737.7055118 -6109.2598425 47.2440945 3732.4023622 -6108.7795276 47.2440945 3726.9330709 -6109.2598425 47.2440945 3721.4637795 -6110.6811024 47.2440945 3716.1610236 -6113.0000000 47.2440945 3711.1850394 -6270.4803150 47.2440945 3438.4212598 -6273.6299213 47.2440945 3433.9236220 -6277.5118110 47.2440945 3430.0417323 -6282.0078740 47.2440945 3426.8933071 -6286.9842520 47.2440945 3424.5732283 -6292.2874016 47.2440945 3423.1515748 -6268.1614173 47.2440945 3443.3968504 -6266.7401575 47.2440945 3448.7000000 -6266.2598425 47.2440945 3454.1692913 -6266.7401575 47.2440945 3459.6385827 -6268.1614173 47.2440945 3464.9413386 -6270.4803150 47.2440945 3469.9169291 -6273.6299213 47.2440945 3474.4145669 -6116.1496063 47.2440945 3706.6877953 -6277.5118110 47.2440945 3478.2964567 -6282.0078740 47.2440945 3481.4456693 -6286.9842520 47.2440945 3483.7665354 -6292.2874016 47.2440945 3485.1870079 -6120.0314961 47.2440945 3702.8059055 -6124.5275591 47.2440945 3699.6570866 -6129.5039370 47.2440945 3697.3370079 -6134.8070866 47.2440945 3695.9157480 -6140.2755906 47.2440945 3695.4377953 -6885.0314961 47.2440945 3653.1236220 -6902.6732283 47.2440945 3658.9299213 -6921.0039370 47.2440945 3661.8992126 -7179.5118110 47.2440945 3688.0976378 -6124.5275591 47.2440945 3754.2094488 -6129.5039370 47.2440945 3756.5303150 -6134.8070866 47.2440945 3757.9507874 -6140.2755906 47.2440945 3758.4295276 -7082.1929134 47.2440945 3758.6818898 -7084.2165354 47.2440945 3763.0220472 -7171.9881890 47.2440945 3917.3314961 -7174.7559055 47.2440945 3921.3708661 -7178.1496063 47.2440945 3924.8984252 -7182.0787402 47.2440945 3927.8165354 -7186.4370079 47.2440945 3930.0452756 -7191.1062992 47.2440945 3931.5232283 -7016.4370079 47.2440945 4005.6496063 -7026.7125984 47.2440945 4002.8937008 -7461.3543307 47.2440945 3956.3661417 -7458.5984252 47.2440945 3966.6377953 -7457.6732283 47.2440945 3977.2362205 -7458.5984252 47.2440945 3987.8346457 -7006.7952756 47.2440945 4010.1456693 -6998.0826772 47.2440945 4016.2440945 -6990.5629921 47.2440945 4023.7677165 -6984.4606299 47.2440945 4032.4803150 -6979.9645669 47.2440945 4042.1220472 -6977.2125984 47.2440945 4052.3937008 -6976.2834646 47.2440945 4062.9921260 -6977.2125984 47.2440945 4073.5905512 -6979.9645669 47.2440945 4083.8622047 -6984.4606299 47.2440945 4093.5039370 -6989.5472441 47.2440945 4100.7637795 -6990.5629921 47.2440945 4102.2165354 -6998.0826772 47.2440945 4109.7401575 -7006.7952756 47.2440945 4115.8385827 -7057.9409449 47.2440945 4145.3661417 -6606.2125984 47.2440945 4136.0511811 -6620.0629921 47.2440945 4148.4251969 -7067.5826772 47.2440945 4149.8622047 -6631.7992126 47.2440945 4162.8149606 -7077.8543307 47.2440945 4152.6181102 -7088.4527559 47.2440945 4153.5433071 -7096.6535433 47.2440945 3722.0244094 -6145.7480315 47.2440945 3695.9157480 -6151.0472441 47.2440945 3697.3370079 -6156.0236220 47.2440945 3699.6570866 -6160.5236220 47.2440945 3702.8059055 -6164.4055118 47.2440945 3706.6877953 -6167.5551181 47.2440945 3711.1850394 -6169.8740157 47.2440945 3716.1610236 -6171.2952756 47.2440945 3721.4637795 -6171.7716535 47.2440945 3726.9330709 -7092.5629921 47.2440945 3724.5098425 -7088.9251969 47.2440945 3727.6236220 -6171.2952756 47.2440945 3732.4023622 -7085.8385827 47.2440945 3731.2854331 -7083.3858268 47.2440945 3735.3964567 -6169.8740157 47.2440945 3737.7055118 -7081.6259843 47.2440945 3739.8511811 -6167.5551181 47.2440945 3742.6811024 -7080.6141732 47.2440945 3744.5307087 -6164.4055118 47.2440945 3747.1783465 -7080.3700787 47.2440945 3749.3129921 -6160.5236220 47.2440945 3751.0606299 -7080.9015748 47.2440945 3754.0716535 -6156.0236220 47.2440945 3754.2102362 -6151.0472441 47.2440945 3756.5303150 -6145.7480315 47.2440945 3757.9507874 -7203.7362205 47.2440945 4461.7401575 -7654.6102362 47.2440945 4489.8543307 -7603.4685039 47.2440945 4460.3267717 -7214.3307087 47.2440945 4462.6692913 -7224.6062992 47.2440945 4465.4212598 -7234.2480315 47.2440945 4469.9173228 -7242.9606299 47.2440945 4476.0157480 -7250.4803150 47.2440945 4483.5393701 -7256.5826772 47.2440945 4492.2519685 -7664.2519685 47.2440945 4494.3503937 -7261.0787402 47.2440945 4501.8937008 -7674.5275591 47.2440945 4497.1023622 -7676.2913386 47.2440945 4497.2598425 -7685.1220472 47.2440945 4498.0314961 -7135.2007874 47.2440945 4053.2952756 -7361.2165354 47.2440945 4053.1496063 -7127.6771654 47.2440945 4045.7716535 -7334.8818898 47.2440945 4055.4527559 -7141.2992126 47.2440945 4062.0078740 -7330.0944882 47.2440945 4055.8740157 -7327.0314961 47.2440945 4056.1417323 -7293.8897638 47.2440945 4065.0196850 -7145.7952756 47.2440945 4071.6496063 -7262.7913386 47.2440945 4079.5236220 -7148.5472441 47.2440945 4081.9212598 -7234.6811024 47.2440945 4099.2047244 -7149.4763780 47.2440945 4092.5196850 -7148.5472441 47.2440945 4103.1181102 -7210.4212598 47.2440945 4123.4685039 -7145.7952756 47.2440945 4113.3897638 -7141.2992126 47.2440945 4123.0314961 -7135.2007874 47.2440945 4131.7440945 -7190.7401575 47.2440945 4151.5748031 -7127.6771654 47.2440945 4139.2677165 -7118.9645669 47.2440945 4145.3661417 -7109.3228346 47.2440945 4149.8622047 -7099.0472441 47.2440945 4152.6181102 -7176.2362205 47.2440945 4182.6732283 -6641.1377953 47.2440945 4178.8700787 -6647.8425197 47.2440945 4196.1889764 -7170.2322835 47.2440945 4205.0866142 -6651.7480315 47.2440945 4214.3464567 -7167.3543307 47.2440945 4215.8188976 -6652.7598425 47.2440945 4232.8897638 -7164.3661417 47.2440945 4250.0000000 -6800.9803150 47.2440945 4253.6023622 -6796.2125984 47.2440945 4254.0196850 -6791.5708661 47.2440945 4255.2047244 -6787.1850394 47.2440945 4257.1220472 -6783.1653543 47.2440945 4259.7244094 -6659.0984252 47.2440945 4346.0826772 -6978.5039370 47.2440945 4252.4606299 -6779.6181102 47.2440945 4262.9448819 -6776.6417323 47.2440945 4266.6929134 -6774.3070866 47.2440945 4270.8740157 -6772.6771654 47.2440945 4275.3779528 -6771.7992126 47.2440945 4280.0826772 -6771.6968504 47.2440945 4284.8700787 -6783.7440945 47.2440945 4373.5905512 -6683.4055118 47.2440945 4456.8188976 -6801.4685039 47.2440945 4433.7165354 -6809.0629921 47.2440945 4459.4685039 -6725.0590551 47.2440945 4562.2598425 -6847.0748031 47.2440945 4540.5354331 -6896.9055118 47.2440945 4614.9212598 -6739.7007874 47.2440945 4586.8897638 -6782.9960630 47.2440945 4659.7086614 -6900.1692913 47.2440945 4618.4409449 -6903.9566929 47.2440945 4621.3818898 -6908.1692913 47.2440945 4623.6771654 -6912.7007874 47.2440945 4625.2559055 -6917.4251969 47.2440945 4626.0787402 -6922.2244094 47.2440945 4626.1259843 -7143.6968504 47.2440945 4626.7559055 -7153.3346457 47.2440945 4631.2519685 -7163.6102362 47.2440945 4634.0039370 -7174.2086614 47.2440945 4634.9291339 -7256.5826772 47.2440945 4553.2755906 -7531.7795276 47.2440945 4562.5669291 -7536.6653543 47.2440945 4562.2834646 -7227.0551181 47.2440945 4604.4173228 -7527.0039370 47.2440945 4563.6496063 -7526.4527559 47.2440945 4563.8740157 -7522.4724409 47.2440945 4565.5078740 -7484.7244094 47.2440945 4581.5708661 -7476.7125984 47.2440945 4584.9763780 -7428.6811024 47.2440945 4597.8503937 -7420.0393701 47.2440945 4598.9015748 -7379.3188976 47.2440945 4603.8661417 -7374.4645669 47.2440945 4604.5236220 -7220.9527559 47.2440945 4613.1338583 -7369.7874016 47.2440945 4605.9685039 -7365.4133858 47.2440945 4608.1692913 -7361.4645669 47.2440945 4611.0629921 -7358.0472441 47.2440945 4614.5708661 -7213.4330709 47.2440945 4620.6535433 -7355.2559055 47.2440945 4618.5944882 -7271.4685039 47.2440945 4763.7125984 -7204.7204724 47.2440945 4626.7559055 -7195.0787402 47.2440945 4631.2519685 -7184.8031496 47.2440945 4634.0039370 -6793.7559055 47.2440945 4672.7952756 -6806.2834646 47.2440945 4684.2086614 -6820.3110236 47.2440945 4693.7125984 -7137.8464567 47.2440945 4877.0433071 -7262.8110236 47.2440945 4778.7125984 -7260.6338583 47.2440945 4783.3740157 -7259.3031496 47.2440945 4788.3464567 -7258.8543307 47.2440945 4793.4763780 -7259.3031496 47.2440945 4798.6023622 -7260.6338583 47.2440945 4803.5748031 -7262.8110236 47.2440945 4808.2401575 -7265.7637795 47.2440945 4812.4566929 -7269.4015748 47.2440945 4816.0944882 -7273.6181102 47.2440945 4819.0472441 -7274.8110236 47.2440945 4819.7362205 -7278.9921260 47.2440945 4821.7283465 -7283.4370079 47.2440945 4823.0472441 -7288.0314961 47.2440945 4823.6496063 -7745.3661417 47.2440945 4824.8818898 -7561.9094488 47.2440945 4874.0393701 -7494.0511811 47.2440945 4892.2204724 -7226.3503937 47.2440945 4928.1377953 -7340.0314961 47.2440945 4933.4881890 -7229.1771654 47.2440945 4929.4842520 -7243.0787402 47.2440945 4936.1141732 -7315.9724409 47.2440945 4939.9370079 -7260.8464567 47.2440945 4941.3818898 -7297.7480315 47.2440945 4943.3149606 -7279.2204724 47.2440945 4943.7992126 -7936.0984252 47.2440945 3865.8503937 -7558.8188976 47.2440945 3865.9960630 -7795.4606299 47.2440945 3885.6590551 -7800.5905512 47.2440945 3886.1074803 -7805.5590551 47.2440945 3887.4397638 -7810.2244094 47.2440945 3889.6149606 -7811.4173228 47.2440945 3890.3039370 -7815.2362205 47.2440945 3892.9283465 -7818.5984252 47.2440945 3896.1177165 -7821.4173228 47.2440945 3899.7940945 -8051.1535433 47.2440945 4295.2440945 -7569.0944882 47.2440945 3868.7500000 -7578.7362205 47.2440945 3873.2448819 -7587.4488189 47.2440945 3879.3464567 -7822.5118110 47.2440945 3901.8027559 -7823.6299213 47.2440945 3903.8657480 -7825.1771654 47.2440945 3908.2334646 -7918.4763780 47.2440945 4256.4409449 -7933.9015748 47.2440945 4314.0000000 -8054.5314961 47.2440945 4313.4645669 -8055.0157480 47.2440945 4331.9921260 -7934.7440945 47.2440945 4318.5551181 -7934.8070866 47.2440945 4320.9015748 -7934.8661417 47.2440945 4323.1850394 -7934.2637795 47.2440945 4327.7795276 -7932.9448819 47.2440945 4332.2204724 -8052.5944882 47.2440945 4350.3700787 -7930.9527559 47.2440945 4336.4055118 -7930.2637795 47.2440945 4337.5984252 -7927.3110236 47.2440945 4341.8149606 -7923.6692913 47.2440945 4345.4527559 -7919.4527559 47.2440945 4348.4055118 -7914.7913386 47.2440945 4350.5826772 -8047.3307087 47.2440945 4368.1377953 -7909.8188976 47.2440945 4351.9133858 -7904.6889764 47.2440945 4352.3622047 -7664.4921260 47.2440945 4354.6338583 -7715.6338583 47.2440945 4384.1614173 -8040.7007874 47.2440945 4382.0393701 -8039.3543307 47.2440945 4384.8661417 -7724.3464567 47.2440945 4390.2598425 -7974.9685039 47.2440945 4496.3818898 -7731.8700787 47.2440945 4397.7834646 -7732.8858268 47.2440945 4399.2362205 -7737.9724409 47.2440945 4406.4960630 -7742.4645669 47.2440945 4416.1377953 -7745.2204724 47.2440945 4426.4094488 -7746.1456693 47.2440945 4437.0078740 -7745.2204724 47.2440945 4447.6062992 -7742.4645669 47.2440945 4457.8779528 -7737.9724409 47.2440945 4467.5196850 -7731.8700787 47.2440945 4476.2322835 -7724.3464567 47.2440945 4483.7559055 -7715.6338583 47.2440945 4489.8543307 -7705.9960630 47.2440945 4494.3503937 -7695.7204724 47.2440945 4497.1062992 -7956.5157480 47.2440945 4528.3464567 -7263.8307087 47.2440945 4512.1653543 -7264.7598425 47.2440945 4522.7637795 -7263.8307087 47.2440945 4533.3622047 -7541.5314961 47.2440945 4562.8149606 -7546.2480315 47.2440945 4564.1417323 -7550.6771654 47.2440945 4566.2322835 -7710.7913386 47.2440945 4658.6732283 -7715.0078740 47.2440945 4661.6259843 -7718.6496063 47.2440945 4665.2677165 -7817.0826772 47.2440945 4769.8503937 -7261.0787402 47.2440945 4543.6338583 -7721.6023622 47.2440945 4669.4842520 -7723.7755906 47.2440945 4674.1456693 -7724.9330709 47.2440945 4678.4685039 -7725.1102362 47.2440945 4679.1181102 -7725.5551181 47.2440945 4684.2480315 -7725.1102362 47.2440945 4689.3740157 -7723.7755906 47.2440945 4694.3464567 -7721.6023622 47.2440945 4699.0118110 -7720.9133858 47.2440945 4700.2047244 -7718.2874016 47.2440945 4704.0236220 -7715.0984252 47.2440945 4707.3818898 -7711.4212598 47.2440945 4710.2047244 -7709.4133858 47.2440945 4711.2952756 -7707.3503937 47.2440945 4712.4133858 -7702.9842520 47.2440945 4713.9606299 -7645.4251969 47.2440945 4729.3818898 -7418.7716535 47.2440945 4790.1141732 -7806.5866142 47.2440945 4785.1259843 -7793.8267717 47.2440945 4798.5669291 -7349.3976378 47.2440945 4808.7047244 -7779.1259843 47.2440945 4809.8503937 -7297.2165354 47.2440945 4822.6850394 -7762.8346457 47.2440945 4818.6929134 -7292.6614173 47.2440945 4823.5314961 -6983.3818898 47.2440945 4252.8346457 -7167.3543307 47.2440945 4284.1811024 -6988.1377953 47.2440945 4254.0078740 -6992.6299213 47.2440945 4255.9527559 -6996.7362205 47.2440945 4258.6141732 -7000.3503937 47.2440945 4261.9173228 -7003.3700787 47.2440945 4265.7716535 -7005.7086614 47.2440945 4270.0708661 -7007.3070866 47.2440945 4274.6968504 -7008.1181102 47.2440945 4279.5275591 -7014.9015748 47.2440945 4324.9409449 -7176.2362205 47.2440945 4317.3267717 -7190.7401575 47.2440945 4348.4251969 -7027.5000000 47.2440945 4369.0984252 -7210.4212598 47.2440945 4376.5314961 -7045.7047244 47.2440945 4411.2559055 -7221.9685039 47.2440945 4388.0826772 -7234.6811024 47.2440945 4400.7952756 -7262.7913386 47.2440945 4420.4763780 -7047.5669291 47.2440945 4415.7874016 -7048.6496063 47.2440945 4420.5629921 -7293.8897638 47.2440945 4434.9803150 -7048.9330709 47.2440945 4425.4488189 -7048.4015748 47.2440945 4430.3188976 -7047.0748031 47.2440945 4435.0314961 -7311.2559055 47.2440945 4439.6338583 -7044.9842520 47.2440945 4439.4606299 -7193.1377953 47.2440945 4462.6692913 -7182.8622047 47.2440945 4465.4212598 -6986.5944882 47.2440945 4540.5984252 -7327.0314961 47.2440945 4443.8582677 -7361.2165354 47.2440945 4446.8503937 -7594.7559055 47.2440945 4454.2283465 -7173.2244094 47.2440945 4469.9173228 -7164.5118110 47.2440945 4476.0157480 -7156.9881890 47.2440945 4483.5393701 -7150.8858268 47.2440945 4492.2519685 -7121.3582677 47.2440945 4543.3937008 -6945.6929134 47.2440945 4611.4370079 -7116.8661417 47.2440945 4553.0354331 -7114.1102362 47.2440945 4563.3110236 -7113.1850394 47.2440945 4573.9055118 -7114.1102362 47.2440945 4584.5039370 -7116.8661417 47.2440945 4594.7795276 -7121.3582677 47.2440945 4604.4173228 -7127.4606299 47.2440945 4613.1338583 -6942.9645669 47.2440945 4615.3858268 -7134.9842520 47.2440945 4620.6535433 -6939.6338583 47.2440945 4618.8385827 -6935.7874016 47.2440945 4621.7047244 -6931.5275591 47.2440945 4623.9094488 -6926.9645669 47.2440945 4625.3976378 -7633.9803150 47.2440945 4346.4566929 -7889.9251969 47.2440945 4348.4055118 -7871.5196850 47.2440945 4337.7755906 -7644.5748031 47.2440945 4347.3818898 -7654.8503937 47.2440945 4350.1377953 -7894.5905512 47.2440945 4350.5826772 -7899.5629921 47.2440945 4351.9133858 -7594.9685039 47.2440945 3886.8677165 -7790.3346457 47.2440945 3886.1074803 -7785.3622047 47.2440945 3887.4397638 -7601.0708661 47.2440945 3895.5811024 -7780.6968504 47.2440945 3889.6149606 -7776.4803150 47.2440945 3892.5673228 -7772.8425197 47.2440945 3896.2070866 -7605.5669291 47.2440945 3905.2216535 -7769.8897638 47.2440945 3900.4228346 -7677.4448819 47.2440945 4060.5393701 -7608.3188976 47.2440945 3915.4968504 -7609.2480315 47.2440945 3926.0933071 -7608.3188976 47.2440945 3936.6897638 -7605.5669291 47.2440945 3946.9645669 -7601.0708661 47.2440945 3956.6062992 -7571.5433071 47.2440945 4007.7480315 -7565.4409449 47.2440945 4016.4606299 -7557.9212598 47.2440945 4023.9842520 -7549.2086614 47.2440945 4030.0826772 -7539.5669291 47.2440945 4034.5787402 -7529.2913386 47.2440945 4037.3307087 -7395.3976378 47.2440945 4056.1417323 -7428.5433071 47.2440945 4065.0196850 -7675.3582677 47.2440945 4064.9685039 -7674.0314961 47.2440945 4069.6811024 -7459.6417323 47.2440945 4079.5236220 -7673.5000000 47.2440945 4074.5511811 -7673.7795276 47.2440945 4079.4370079 -7674.8661417 47.2440945 4084.2125984 -7487.7480315 47.2440945 4099.2047244 -7676.7244094 47.2440945 4088.7440945 -7692.7874016 47.2440945 4126.4921260 -7500.4645669 47.2440945 4111.9173228 -7512.0118110 47.2440945 4123.4685039 -7531.6929134 47.2440945 4151.5748031 -7696.1929134 47.2440945 4134.5000000 -7709.0629921 47.2440945 4182.5354331 -7546.1968504 47.2440945 4182.6732283 -7710.1181102 47.2440945 4191.1771654 -7555.0748031 47.2440945 4215.8188976 -7715.0826772 47.2440945 4231.8976378 -7558.0669291 47.2440945 4250.0000000 -7715.6574803 47.2440945 4236.1614173 -7715.7401575 47.2440945 4236.7519685 -7717.1850394 47.2440945 4241.4291339 -7719.3858268 47.2440945 4245.8031496 -7722.2795276 47.2440945 4249.7519685 -7725.7874016 47.2440945 4253.1692913 -7557.5944882 47.2440945 4255.4094488 -7729.8110236 47.2440945 4255.9606299 -7555.0748031 47.2440945 4284.1811024 -7546.1968504 47.2440945 4317.3267717 -7531.6929134 47.2440945 4348.4251969 -7623.3818898 47.2440945 4347.3818898 -7613.1102362 47.2440945 4350.1377953 -7512.0118110 47.2440945 4376.5314961 -7603.4685039 47.2440945 4354.6338583 -7594.7559055 47.2440945 4360.7322835 -7587.2322835 47.2440945 4368.2559055 -7581.1299213 47.2440945 4376.9685039 -7495.6062992 47.2440945 4392.9409449 -7576.6377953 47.2440945 4386.6102362 -7573.8818898 47.2440945 4396.8818898 -7487.7480315 47.2440945 4400.7952756 -7572.9566929 47.2440945 4407.4803150 -7459.6417323 47.2440945 4420.4763780 -7573.8818898 47.2440945 4418.0787402 -7576.6377953 47.2440945 4428.3503937 -7428.5433071 47.2440945 4434.9803150 -7581.1299213 47.2440945 4437.9921260 -7395.3976378 47.2440945 4443.8582677 -7586.2165354 47.2440945 4445.2519685 -7387.5511811 47.2440945 4444.5472441 -7587.2322835 47.2440945 4446.7047244 - - - - - - - - - - 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.5307967 0.0000002 0.8474992 0.4999896 0.0000002 0.8660314 0.4999896 0.0000002 0.8660314 0.5307967 0.0000002 0.8474992 0.6187776 0.0000000 0.7855662 0.6187776 0.0000000 0.7855662 0.7248236 0.0000000 0.6889345 0.7248236 0.0000000 0.6889345 0.8183445 0.0000000 0.5747281 0.8183445 0.0000000 0.5747281 0.8595659 0.0000000 0.5110249 0.8595659 0.0000000 0.5110249 0.8976962 -0.0000000 0.4406150 0.8976962 -0.0000000 0.4406150 0.9564668 0.0000001 0.2918411 0.9564668 0.0000001 0.2918411 0.9907651 0.0000001 0.1355898 0.9907651 0.0000001 0.1355898 0.9984755 0.0000000 0.0551971 0.9984755 0.0000000 0.0551971 0.9911437 0.0000000 0.1327935 0.9911437 0.0000000 0.1327935 0.9580680 0.0000000 0.2865409 0.9580680 0.0000000 0.2865409 0.9012743 0.0000000 0.4332489 0.9012743 0.0000000 0.4332489 0.8222172 0.0000000 0.5691738 0.8222172 0.0000000 0.5691738 0.7228300 0.0000000 0.6910259 0.7228300 0.0000000 0.6910259 0.6056276 0.0000000 0.7957482 0.6056276 0.0000000 0.7957482 0.5077208 -0.0000002 0.8615217 0.5077208 -0.0000002 0.8615217 0.4345103 -0.0000002 0.9006669 0.4345103 -0.0000002 0.9006669 0.3132293 0.0000000 0.9496775 0.3132293 0.0000000 0.9496775 0.1435557 -0.0000000 0.9896422 0.1435557 -0.0000000 0.9896422 0.0131566 0.0000001 0.9999134 0.0131566 0.0000001 0.9999134 0.2440722 0.0000001 0.9697571 0.2440722 0.0000001 0.9697571 0.8660255 0.0000003 0.4999999 0.8660255 0.0000003 0.4999999 0.9659258 0.0000003 -0.2588192 0.9659258 0.0000003 -0.2588192 0.7071066 -0.0000000 -0.7071069 0.7071066 -0.0000000 -0.7071069 0.0000001 0.0000000 -1.0000000 0.0000001 0.0000000 -1.0000000 -0.7177984 -0.0000001 -0.6962510 -0.7177984 -0.0000001 -0.6962510 -0.8593628 -0.0000001 -0.5113664 -0.8593628 -0.0000001 -0.5113664 -0.7852668 0.0000000 -0.6191575 -0.7852668 0.0000000 -0.6191575 -0.6658423 -0.0000000 -0.7460925 -0.6658423 -0.0000000 -0.7460925 -0.5627571 -0.0000003 -0.8266223 -0.5627571 -0.0000003 -0.8266223 -0.4922985 -0.0000003 -0.8704265 -0.4922985 -0.0000003 -0.8704265 -0.3863498 0.0000000 -0.9223523 -0.3863498 0.0000000 -0.9223523 -0.2369965 0.0000000 -0.9715105 -0.2369965 0.0000000 -0.9715105 -0.0817933 0.0000000 -0.9966493 -0.0817933 0.0000000 -0.9966493 0.0754557 0.0000000 -0.9971492 0.0754557 0.0000000 -0.9971492 0.2308275 -0.0000000 -0.9729947 0.2308275 -0.0000000 -0.9729947 0.3805348 -0.0000000 -0.9247666 0.3805348 -0.0000000 -0.9247666 0.4514583 0.0000000 -0.8922922 0.4514583 0.0000000 -0.8922922 0.3779611 0.0000000 -0.9258215 0.3779611 0.0000000 -0.9258215 0.2254848 0.0000000 -0.9742467 0.2254848 0.0000000 -0.9742467 0.0672454 0.0000000 -0.9977365 0.0672454 0.0000000 -0.9977365 -0.0886151 0.0000000 -0.9960659 -0.0886151 0.0000000 -0.9960659 -0.2342666 0.0000000 -0.9721724 -0.2342666 0.0000000 -0.9721724 -0.3709194 0.0000000 -0.9286651 -0.3709194 0.0000000 -0.9286651 -0.4685765 -0.0000001 -0.8834229 -0.4685765 -0.0000001 -0.8834229 -0.5336469 0.0000000 -0.8457074 -0.5336469 0.0000000 -0.8457074 -0.6293318 0.0000001 -0.7771368 -0.6293318 0.0000001 -0.7771368 -0.7431181 0.0000000 -0.6691603 -0.7431181 0.0000000 -0.6691603 -0.8386753 0.0000000 -0.5446317 -0.8386753 0.0000000 -0.5446317 -0.9135325 0.0000000 -0.4067658 -0.9135325 0.0000000 -0.4067658 -0.9550034 -0.0000003 -0.2965949 -0.9550034 -0.0000003 -0.2965949 -0.9753367 -0.0000003 -0.2207224 -0.9753367 -0.0000003 -0.2207224 -0.9945217 0.0000000 -0.1045301 -0.9945217 0.0000000 -0.1045301 -0.9986258 0.0000000 0.0524074 -0.9986258 0.0000000 0.0524074 -0.9781338 -0.0000000 0.2079764 -0.9781338 -0.0000000 0.2079764 -0.9335918 0.0000000 0.3583382 -0.9335918 0.0000000 0.3583382 -0.8850080 -0.0000001 0.4655759 -0.9026292 0.0000000 0.4304190 -0.8850080 -0.0000001 0.4655759 -0.9026292 0.0000000 0.4304190 -0.8660334 -0.0000001 0.4999861 -0.8660334 -0.0000001 0.4999861 -0.8660365 -0.0000002 0.4999808 -0.8660365 -0.0000002 0.4999808 -0.8457600 -0.0000008 0.5335636 -0.8457600 -0.0000008 0.5335636 -0.7771248 -0.0000006 0.6293466 -0.7771248 -0.0000006 0.6293466 -0.6691101 0.0000000 0.7431633 -0.6691101 0.0000000 0.7431633 -0.5446369 0.0000000 0.8386720 -0.5446369 0.0000000 0.8386720 -0.4067436 0.0000000 0.9135424 -0.4067436 0.0000000 0.9135424 -0.2966145 0.0000000 0.9549973 -0.2966145 0.0000000 0.9549973 -0.2588165 0.0000000 0.9659265 -0.2588165 0.0000000 0.9659265 -0.2588127 0.0000000 0.9659275 -0.2588127 0.0000000 0.9659275 -0.2588554 -0.0000000 0.9659161 -0.2588554 -0.0000000 0.9659161 -0.2207460 -0.0000000 0.9753313 -0.2207460 -0.0000000 0.9753313 -0.1045109 0.0000000 0.9945237 -0.1045109 0.0000000 0.9945237 0.0523160 0.0000000 0.9986306 0.0523160 0.0000000 0.9986306 0.2079866 0.0000000 0.9781317 0.2079866 0.0000000 0.9781317 0.3584333 0.0000000 0.9335553 0.3584333 0.0000000 0.9335553 0.4304190 0.0000000 0.9026292 0.4304190 0.0000000 0.9026292 0.4655571 0.0000000 0.8850179 0.4655571 0.0000000 0.8850179 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 7 3 8 8 3 9 9 3 10 10 3 11 11 3 12 12 3 13 12 13 14 12 14 15 15 14 16 15 16 17 17 16 18 17 18 19 17 19 20 17 20 21 21 20 22 22 20 23 22 23 24 24 23 25 25 23 26 26 23 27 26 27 28 28 27 29 28 29 30 28 30 31 29 27 32 29 32 33 29 33 34 34 33 35 34 35 36 31 30 37 31 37 38 31 38 39 31 39 40 31 40 41 31 41 42 42 41 43 42 43 44 42 44 45 42 45 46 42 46 47 42 47 48 42 48 49 42 49 50 50 49 51 50 51 52 52 51 53 53 51 54 53 54 55 55 54 56 56 54 57 58 59 60 59 58 61 61 58 62 62 58 63 63 58 64 64 58 65 65 58 66 66 58 67 67 58 68 68 58 69 69 58 70 61 62 71 71 62 72 72 62 73 69 70 74 74 70 75 75 70 76 76 70 77 77 70 78 78 70 79 78 79 80 78 80 81 81 80 82 82 80 83 83 80 84 84 80 85 85 80 86 85 86 87 87 86 88 88 86 89 89 86 90 90 86 91 91 86 92 92 86 93 92 93 94 94 93 95 95 93 96 96 93 97 97 93 98 97 98 99 97 99 100 100 99 101 100 101 102 102 101 103 103 101 104 104 101 105 105 101 106 106 101 107 107 101 108 108 101 109 109 101 110 110 101 111 111 101 112 112 101 113 113 101 114 114 101 115 115 101 116 115 116 117 117 116 118 118 116 119 119 116 120 120 116 121 121 116 122 122 116 123 123 116 124 124 116 125 125 116 126 126 116 127 127 116 128 128 116 129 121 122 130 130 122 131 128 129 132 132 129 133 133 129 134 134 129 135 135 129 136 136 129 137 137 129 138 138 129 139 139 129 140 140 129 141 141 129 142 142 129 143 143 129 144 144 129 145 145 129 146 146 129 147 147 129 148 148 129 149 148 149 150 148 150 151 151 150 152 151 152 153 153 152 154 153 154 155 153 155 156 156 155 157 131 158 159 158 131 122 159 158 160 159 160 161 159 161 162 159 162 163 159 163 164 159 164 165 159 165 166 159 166 167 159 167 168 159 168 169 169 168 170 169 170 171 169 171 172 169 172 173 169 173 174 174 173 175 174 175 176 174 176 177 177 176 178 178 176 179 179 176 180 180 176 181 181 176 182 182 176 183 183 176 184 184 176 185 185 176 186 185 186 187 185 187 188 185 188 189 185 189 190 185 190 191 185 191 192 185 192 193 185 193 194 185 194 195 185 195 196 185 196 197 185 197 198 185 198 157 185 157 155 185 155 199 185 199 200 185 200 201 201 200 202 201 202 203 203 202 204 204 202 205 204 205 206 206 205 207 206 207 208 209 210 211 210 209 212 210 212 213 213 212 214 213 214 215 213 215 216 213 216 217 217 216 218 217 218 219 219 218 220 219 220 221 221 220 222 222 220 223 222 223 224 224 223 225 225 223 226 226 223 227 226 227 228 228 227 229 229 227 230 230 227 231 231 227 232 231 232 233 233 232 234 234 232 235 235 232 236 236 232 237 236 237 238 238 237 239 238 239 240 240 239 0 240 0 241 240 241 242 240 242 243 240 243 244 240 244 245 240 245 246 241 0 2 246 245 247 246 247 248 246 248 249 246 249 250 246 250 251 246 251 252 246 252 253 246 253 254 254 253 255 254 255 256 254 256 257 257 256 258 257 258 259 257 259 260 260 259 181 181 259 261 181 261 262 181 262 263 181 263 264 181 264 265 181 265 57 181 57 54 181 54 266 181 266 267 181 267 180 62 268 73 268 62 269 268 269 270 268 270 271 271 270 272 271 272 273 271 273 274 271 274 275 275 274 276 275 276 277 275 277 278 278 277 279 279 277 280 280 277 281 281 277 282 282 277 283 283 277 284 284 277 285 285 277 286 286 277 287 287 277 288 288 277 289 289 277 290 290 277 211 211 277 209 209 277 291 291 277 292 292 277 293 292 293 294 292 294 295 295 294 296 295 296 297 295 297 298 295 298 299 299 298 300 299 300 301 299 301 302 302 301 303 303 301 304 304 301 305 304 305 306 304 306 307 307 306 308 307 308 309 309 308 310 309 310 311 311 310 312 311 312 313 311 313 314 311 314 315 311 315 316 311 316 317 311 317 318 318 317 319 318 319 320 320 319 321 320 321 322 322 321 323 323 321 324 323 324 325 323 325 326 323 326 327 327 326 328 327 328 329 327 329 330 327 330 331 327 331 332 332 331 333 332 333 334 332 334 335 335 334 336 335 336 337 337 336 338 337 338 339 337 339 340 340 339 341 340 341 342 342 341 343 342 343 344 344 343 33 33 343 345 33 345 35 346 34 36 34 346 347 347 346 348 348 346 349 349 346 350 350 346 351 351 346 352 352 346 353 352 353 118 118 353 354 118 354 355 118 355 117 356 324 321 324 356 357 357 356 358 358 356 359 358 359 96 96 359 360 96 360 95 361 362 363 362 361 364 364 361 365 365 361 366 366 361 367 367 361 368 368 361 369 369 361 370 370 361 371 371 361 372 372 361 373 373 361 374 374 361 375 375 361 376 376 361 377 377 361 378 363 362 379 363 379 380 363 380 381 363 381 382 382 381 383 383 381 384 384 381 385 385 381 386 386 381 387 387 381 388 388 381 389 389 381 390 390 381 391 391 381 392 392 381 393 393 381 394 394 381 395 395 381 396 396 381 397 390 391 398 390 398 399 390 399 400 390 400 401 390 401 402 390 402 403 390 403 404 390 404 405 405 404 406 405 406 407 405 407 408 405 408 409 405 409 410 405 410 411 411 410 412 412 410 413 413 410 414 414 410 415 415 410 416 415 416 417 415 417 418 415 418 419 415 419 420 415 420 421 415 421 422 363 382 423 363 423 424 363 424 425 363 425 426 363 426 427 363 427 428 363 428 429 363 429 430 363 430 431 363 431 432 363 432 433 363 433 434 363 434 435 363 435 436 436 435 437 437 435 438 437 438 439 437 439 440 440 439 441 440 441 442 440 442 443 440 443 444 363 436 445 363 445 446 363 446 447 363 447 448 363 448 449 363 449 450 363 450 451 363 451 452 363 452 453 363 453 454 363 454 455 363 455 456 363 456 457 363 457 458 363 458 459 363 459 460 460 459 461 461 459 462 461 462 234 234 462 463 234 463 233 464 465 466 465 464 467 467 464 468 468 464 469 469 464 470 469 470 471 471 470 472 472 470 473 473 470 474 474 470 475 475 470 476 476 470 477 477 470 478 478 470 479 479 470 480 480 470 481 481 470 482 482 470 483 483 470 484 484 470 485 485 470 486 486 470 487 487 470 488 488 470 489 489 470 490 490 470 491 491 470 492 492 470 493 493 470 494 494 470 495 495 470 496 496 470 497 497 470 498 498 470 499 498 499 500 500 499 501 501 499 502 501 502 503 503 502 504 504 502 505 505 502 506 506 502 507 507 502 508 508 502 509 509 502 510 509 510 511 511 510 512 512 510 513 513 510 514 514 510 515 515 510 516 516 510 416 514 515 517 517 515 518 518 515 519 519 515 520 520 515 521 520 521 522 520 522 523 521 515 524 524 515 525 525 515 526 526 515 527 527 515 528 528 515 529 529 515 530 530 515 531 531 515 532 532 515 533 533 515 534 534 515 535 535 515 536 535 536 537 537 536 538 538 536 539 539 536 540 540 536 541 541 536 542 542 536 543 543 536 544 544 536 545 545 536 546 545 546 547 547 546 548 548 546 549 549 546 550 550 546 551 551 546 552 552 546 553 553 546 554 554 546 555 555 546 556 556 546 557 557 546 558 516 416 559 559 416 560 560 416 561 561 416 562 562 416 563 563 416 564 564 416 565 565 416 566 566 416 567 567 416 568 568 416 569 569 416 570 570 416 571 571 416 572 572 416 573 573 416 574 573 574 575 573 575 576 573 576 577 576 575 578 578 575 361 361 575 378 574 416 579 579 416 580 580 416 581 581 416 582 582 416 583 583 416 584 584 416 585 585 416 586 586 416 587 587 416 588 588 416 589 589 416 590 590 416 591 591 416 592 592 416 593 592 593 594 594 593 381 381 593 595 381 595 397 593 416 596 596 416 597 597 416 598 598 416 599 599 416 600 600 416 601 601 416 602 602 416 603 603 416 604 604 416 605 605 416 606 606 416 607 607 416 608 608 416 609 609 416 610 610 416 410 464 611 612 611 464 613 611 613 614 611 614 615 611 615 616 613 464 617 617 464 466 613 617 618 613 618 619 613 619 620 613 620 621 613 621 622 613 622 623 613 623 624 613 624 625 613 625 485 485 625 626 485 626 627 485 627 628 485 628 629 485 629 630 485 630 631 485 631 632 485 632 633 485 633 484 616 615 634 616 634 635 616 635 636 616 636 637 616 637 638 616 638 639 616 639 640 616 640 641 616 641 642 616 642 643 616 643 644 616 644 645 616 645 646 616 646 647 616 647 505 616 505 648 648 505 506 616 648 649 616 649 650 616 650 651 616 651 652 616 652 653 616 653 654 616 654 655 616 655 656 616 656 657 616 657 658 616 658 547 547 658 659 547 659 660 547 660 661 547 661 662 547 662 663 547 663 664 547 664 665 547 665 666 547 666 667 547 667 668 547 668 669 547 669 670 547 670 671 547 671 672 547 672 673 547 673 674 547 674 675 547 675 676 547 676 677 547 677 678 547 678 679 547 679 680 547 680 545 520 681 682 681 520 683 683 520 684 684 520 523 685 420 686 420 685 421 687 415 422 415 687 688 688 687 689 689 687 690 690 687 691 691 687 692 692 687 693 693 687 694 694 687 695 695 687 696 696 687 697 696 697 698 696 698 699 699 698 700 699 700 701 699 701 702 702 701 703 702 703 704 704 703 705 704 705 706 706 705 707 706 707 708 708 707 709 708 709 710 710 709 427 710 427 711 711 427 712 712 427 426 546 713 558 713 546 714 713 714 715 713 715 716 713 716 717 713 717 718 718 717 719 718 719 720 718 720 721 721 720 722 721 722 723 721 723 724 724 723 725 724 725 726 726 725 727 726 727 728 728 727 729 729 727 730 729 730 731 547 732 733 732 547 734 734 547 735 735 547 736 736 547 737 737 547 738 738 547 739 739 547 740 740 547 741 741 547 742 742 547 548 733 732 743 733 743 744 733 744 745 733 745 746 733 746 747 733 747 748 733 748 749 733 749 731 733 731 730 733 730 750 733 750 751 733 751 752 733 752 753 733 753 754 733 754 755 733 755 573 733 573 577 756 757 758 757 756 759 757 759 760 757 760 761 757 761 762 762 761 763 763 761 764 764 761 765 762 763 685 762 685 766 766 685 767 767 685 686 764 765 768 768 765 769 769 765 770 770 765 771 771 765 772 772 765 773 773 765 774 774 765 775 775 765 776 776 765 777 777 765 778 778 765 779 779 765 780 779 780 781 779 781 782 782 781 783 782 783 59 59 783 60 779 782 784 779 784 785 779 785 786 779 786 787 779 787 788 788 787 789 789 787 790 789 790 791 791 790 792 792 790 793 793 790 794 794 790 438 794 438 795 795 438 796 796 438 797 797 438 798 798 438 799 799 438 435 800 440 444 440 800 801 801 800 802 802 800 803 803 800 804 803 804 290 290 804 805 290 805 806 290 806 807 290 807 808 290 808 289 671 809 810 809 671 811 811 671 812 812 671 670 813 814 815 814 813 816 817 816 813 816 817 818 819 818 817 818 819 820 821 819 822 819 821 820 823 822 824 822 823 821 825 823 824 823 825 826 827 825 828 825 827 826 829 827 828 827 829 830 831 829 832 829 831 830 833 831 832 831 833 834 835 834 833 834 835 836 837 835 838 835 837 836 839 838 840 838 839 837 841 840 842 840 841 839 843 841 842 841 843 844 845 844 843 844 845 846 847 846 845 846 847 848 849 848 847 848 849 850 851 850 849 850 851 852 853 852 851 852 853 854 855 854 853 854 855 856 857 856 855 856 857 858 859 857 860 857 859 858 861 860 862 860 861 859 861 863 864 863 861 862 864 865 866 865 864 863 867 865 868 865 867 866 869 868 870 868 869 867 871 869 870 869 871 872 872 873 874 873 872 871 874 875 876 875 874 873 876 877 878 877 876 875 878 879 880 879 878 877 880 881 882 881 880 879 882 883 884 883 882 881 884 885 886 885 884 883 886 887 888 887 886 885 888 889 890 889 888 887 890 891 892 891 890 889 892 893 894 893 892 891 894 895 896 895 894 893 896 897 898 897 896 895 898 899 900 899 898 897 900 901 902 901 900 899 902 903 904 903 902 901 904 905 906 905 904 903 906 907 908 907 906 905 908 909 910 909 908 907 911 909 912 909 911 910 913 912 914 912 913 911 915 914 916 914 915 913 917 916 918 916 917 915 919 917 918 917 919 920 921 919 922 919 921 920 923 922 924 922 923 921 925 924 926 924 925 923 927 928 929 928 927 926 926 927 930 925 926 930 931 929 932 929 931 927 933 932 934 932 933 931 935 933 934 933 935 936 937 935 938 935 937 936 939 937 938 937 939 940 941 940 939 940 941 942 943 942 941 942 943 944 945 944 943 944 945 946 947 946 945 946 947 948 948 947 949 948 949 950 951 950 949 950 951 952 953 952 951 952 953 954 955 954 953 954 955 956 957 956 955 956 957 958 959 958 957 958 959 960 961 960 959 960 961 962 963 962 961 962 963 964 964 963 965 964 965 966 815 966 965 966 815 814 967 968 969 968 967 970 970 967 971 971 967 972 972 967 973 972 973 974 972 974 975 972 975 976 974 973 977 977 973 978 977 978 979 977 979 980 976 975 981 976 981 982 976 982 983 976 983 984 976 984 985 976 985 986 976 986 987 976 987 988 976 988 989 976 989 990 976 990 991 976 991 992 976 992 993 993 992 994 994 992 995 994 995 996 996 995 997 996 997 998 995 992 999 999 992 1000 1000 992 1001 1001 992 1002 1002 992 1003 1002 1003 1004 1002 1004 1005 1005 1004 1006 1005 1006 1007 1005 1007 1008 1005 1008 1009 1005 1009 1010 1010 1009 1011 1010 1011 1012 1010 1012 1013 1010 1013 1014 1010 1014 1015 1010 1015 1016 1017 1018 1019 1018 1017 1020 1020 1017 1021 1021 1017 1022 1023 1024 1025 1024 1023 1026 1026 1023 1027 1027 1023 1028 1028 1023 1029 1024 1026 1030 1024 1030 1031 1030 1026 1032 1032 1026 1033 1033 1026 1034 1034 1026 1035 1035 1026 1036 1036 1026 1037 1037 1026 1038 1038 1026 1039 1039 1026 1040 1039 1040 1041 1041 1040 1042 1042 1040 1043 1043 1040 1044 1044 1040 1045 1045 1040 1046 1046 1040 1047 1047 1040 1048 1048 1040 1049 1028 1029 1050 1050 1029 1051 1051 1029 1052 1052 1029 1053 1053 1029 1054 1054 1029 1055 1055 1029 1056 1056 1029 1057 1057 1029 1058 1058 1029 1059 1059 1029 1060 1060 1029 1061 1061 1029 1062 1062 1029 1063 1063 1029 1064 1064 1029 1065 1064 1065 1066 1065 1029 1067 1067 1029 1068 1068 1029 1069 1069 1029 1070 1070 1029 1071 1071 1029 1072 1072 1029 1073 1073 1029 1074 1074 1029 1075 1075 1029 1076 1076 1029 1077 1076 1077 1078 1078 1077 1079 1079 1077 1080 1080 1077 1081 1081 1077 1082 1082 1077 1083 1083 1077 1084 1084 1077 1085 1085 1077 1086 1086 1077 1087 1087 1077 1088 1088 1077 1089 1089 1077 1090 1090 1077 1091 1091 1077 1092 1092 1077 1093 1093 1077 1094 1094 1077 1095 1095 1077 1096 1096 1077 1097 1097 1077 1098 1098 1077 1099 1099 1077 1100 1077 1101 1102 1101 1077 1103 1103 1077 1104 1104 1077 1105 1105 1077 1106 1106 1077 1107 1107 1077 1108 1108 1077 1109 1109 1077 1110 1110 1077 1111 1111 1077 1112 1111 1112 1113 1113 1112 1114 1114 1112 1115 1115 1112 1116 1116 1112 1117 1117 1112 1118 1118 1112 1119 1119 1112 1120 1120 1112 1121 1121 1112 1122 1122 1112 1123 1123 1112 1124 1124 1112 1125 1125 1112 1126 1126 1112 1127 1127 1112 1128 1128 1112 1129 1130 977 980 977 1130 1131 1024 1132 1133 1132 1024 1134 1134 1024 1135 1135 1024 1136 1136 1024 1031 1133 1132 1137 1133 1137 1138 1133 1138 1139 1133 1139 1140 1133 1140 1141 1133 1141 1142 1133 1142 1143 1133 1143 1144 1133 1144 1145 1133 1145 1146 1133 1146 1147 1133 1147 1148 1133 1148 1149 1133 1149 1049 1133 1049 1040 1133 1040 1150 1133 1150 1151 1133 1151 1152 1133 1152 1153 1133 1153 1154 1133 1154 1155 1133 1155 1156 1133 1156 1157 1133 1157 1158 1133 1158 1159 1133 1159 1160 1133 1160 1161 1133 1161 1162 1133 1162 1163 1163 1162 1164 1163 1164 1165 1163 1165 1166 1166 1165 1167 1166 1167 1168 1166 1168 1064 1166 1064 1066 1166 1066 1169 1166 1169 1170 1166 1170 1171 1166 1171 1172 1172 1171 1173 1172 1173 1174 1172 1174 1175 1172 1175 1176 1172 1176 1177 1172 1177 1178 1172 1178 1179 1177 1176 1180 1177 1180 1181 1177 1181 1182 1177 1182 1017 1177 1017 1183 1183 1017 1184 1184 1017 1019 1177 1183 1185 1177 1185 1186 1177 1186 1187 1177 1187 1188 1177 1188 1189 1177 1189 1190 1177 1190 1191 1177 1191 1192 1177 1192 1193 1177 1193 1194 1177 1194 1195 1177 1195 1196 1177 1196 1197 1197 1196 1198 1197 1198 1199 1197 1199 1200 1197 1200 1201 1197 1201 1202 1197 1202 1203 1197 1203 1204 1197 1204 1205 1197 1205 1100 1197 1100 1206 1206 1100 1077 1206 1077 1102 1206 1102 1207 1206 1207 1208 1206 1208 1209 1206 1209 1210 1206 1210 1211 1206 1211 1212 1206 1212 1213 1206 1213 1214 1206 1214 1215 1206 1215 1216 1179 1178 1217 1179 1217 1218 1179 1218 1219 1179 1219 1220 1179 1220 1221 1179 1221 1222 1179 1222 1223 1179 1223 1224 1179 1224 1225 1179 1225 1226 1179 1226 1227 1179 1227 1228 1179 1228 1229 1179 1229 1230 1179 1230 1128 1179 1128 1231 1231 1128 1232 1232 1128 1233 1233 1128 1129 1232 1233 1234 1232 1234 1235 1232 1235 1236 1179 1231 1237 1179 1237 1238 1179 1238 1239 1179 1239 1240 1179 1240 1241 1179 1241 1242 1179 1242 1243 1179 1243 1244 1179 1244 1245 1179 1245 1246 1179 1246 1247 1179 1247 1248 1179 1248 1249 1179 1249 1250 1179 1250 1251 1251 1250 1252 1251 1252 1253 1251 1253 1254 1254 1253 1255 1179 1251 1256 1179 1256 1257 1179 1257 1258 1179 1258 1259 1179 1259 1260 1179 1260 1261 1179 1261 1262 1179 1262 1263 1179 1263 1264 1179 1264 1265 1179 1265 1266 1179 1266 1267 1179 1267 1268 1179 1268 1269 1179 1269 1270 1179 1270 1271 1272 1206 1216 1206 1272 1273 1273 1272 1274 1274 1272 1275 1275 1272 1276 1276 1272 1277 1276 1277 1278 1278 1277 1279 1279 1277 1280 1279 1280 1281 1281 1280 1282 1282 1280 1283 1282 1283 1284 1284 1283 1285 1284 1285 1286 1286 1285 1287 1286 1287 1288 1286 1288 1121 1121 1288 1120 1289 1090 1290 1090 1289 1291 1090 1291 1292 1090 1292 1089 1293 1294 1295 1294 1293 1296 1294 1296 1297 1294 1297 1298 1294 1298 1299 1299 1298 1300 1299 1300 1301 1301 1300 1302 1302 1300 1303 1303 1300 1304 1304 1300 1305 1235 1306 1236 1306 1235 1307 1307 1235 1308 1308 1235 1309 1309 1235 1310 1310 1235 1311 1311 1235 1312 1312 1235 1313 1313 1235 1314 1314 1235 1315 1315 1235 1316 1316 1235 1317 1317 1235 1318 1318 1235 1319 1319 1235 1320 1320 1235 1321 1320 1321 1322 1322 1321 1323 1323 1321 1253 1253 1321 1324 1253 1324 1325 1253 1325 1326 1253 1326 1327 1253 1327 1328 1253 1328 1329 1253 1329 1330 1253 1330 1331 1253 1331 1332 1253 1332 1333 1253 1333 1334 1253 1334 1335 1253 1335 1336 1253 1336 1337 1253 1337 1338 1253 1338 1255 1333 1332 1339 1339 1332 1340 1340 1332 1341 1341 1332 1342 1342 1332 1343 1343 1332 1344 1344 1332 1345 1345 1332 1346 1345 1346 1347 1347 1346 1348 1348 1346 1349 1349 1346 1350 1350 1346 1271 1271 1346 1351 1271 1351 1352 1271 1352 1353 1271 1353 1354 1271 1354 1355 1271 1355 1179 1179 1355 1356 1356 1355 1357 1357 1355 1358 1358 1355 1130 1130 1355 1131 1131 1355 1359 1324 1321 1360 1360 1321 1361 1361 1321 1362 1362 1321 1363 1363 1321 1364 1364 1321 1365 1365 1321 1366 1366 1321 1367 1367 1321 1368 1368 1321 1369 1369 1321 1370 1370 1321 1371 1371 1321 1016 1016 1321 1372 1016 1372 1373 1016 1373 1010 1010 1373 1374 1374 1373 1293 1374 1293 1375 1375 1293 1376 1376 1293 1377 1377 1293 1295 1372 1321 1378 1378 1321 1379 1379 1321 1380 1380 1321 1381 1381 1321 1382 1382 1321 1383 1383 1321 1384 1384 1321 1385 1385 1321 1386 1386 1321 1387 1387 1321 1388 1388 1321 1389 1389 1321 1390 1390 1321 1391 1391 1321 1392 1392 1321 1393 1392 1393 1394 1392 1394 1395 1395 1394 1396 1395 1396 1397 1397 1396 1398 1355 1399 1359 1399 1355 1400 1399 1400 1401 1399 1401 1402 1399 1402 1403 1399 1403 1404 1399 1404 1405 1399 1405 1406 1399 1406 1407 1399 1407 1408 1399 1408 1409 1409 1408 1410 1410 1408 1411 1410 1411 1412 1412 1411 1413 1413 1411 1414 1413 1414 1415 1415 1414 1416 1415 1416 1417 1417 1416 1418 1417 1418 1419 1419 1418 1420 1419 1420 1421 1421 1420 1422 1421 1422 1364 1364 1422 1423 1364 1423 1424 1364 1424 1363 1425 1426 1427 1426 1425 1428 1426 1428 1429 1426 1429 1430 1426 1430 1431 1426 1431 1432 1426 1432 1433 1426 1433 1434 1434 1433 1435 1434 1435 1436 1436 1435 1437 1437 1435 1438 1439 1440 1441 1440 1439 1442 1442 1439 1443 1442 1443 1444 1444 1443 1445 1445 1443 1446 1446 1443 1447 1446 1447 1448 1448 1447 1449 1448 1449 1450 1450 1449 1451 1450 1451 1452 1450 1452 1453 1453 1452 1454 1453 1454 1455 1453 1455 1456 1453 1456 1457 1457 1456 1458 1457 1458 1459 1457 1459 1460 1457 1460 1461 1457 1461 1462 1462 1461 1398 1462 1398 1396 1462 1396 1463 1462 1463 1464 1462 1464 1465 1465 1464 1466 1465 1466 1467 1467 1466 1468 1467 1468 1469 1469 1468 1470 1470 1468 1471 1471 1468 1472 1472 1468 1473 1473 1468 1474 1474 1468 1475 1469 1470 1476 1474 1475 1477 1477 1475 1478 1478 1475 1479 1479 1475 1480 1480 1475 1481 1481 1475 1482 1482 1475 1483 1483 1475 1484 1483 1484 1485 1485 1484 1486 1486 1484 1487 1486 1487 1488 1488 1487 1489 1489 1487 1490 1489 1490 1491 1489 1491 1492 1492 1491 1493 1493 1491 1494 1494 1491 1495 1495 1491 1496 1496 1491 1497 1497 1491 1498 1498 1491 1499 1499 1491 1500 1500 1491 1501 1502 1503 1504 1503 1502 1505 1503 1505 1506 1506 1505 1507 1507 1505 1508 1508 1505 1509 1509 1505 1510 1510 1505 1511 1511 1505 1512 1512 1505 1513 1513 1505 1514 1514 1505 1515 1514 1515 1516 1516 1515 1517 1517 1515 1518 1518 1515 1519 1519 1515 1520 1519 1520 1521 1521 1520 1522 1522 1520 1523 1522 1523 1524 1522 1524 1525 1522 1525 1501 1522 1501 1491 1522 1491 1526 1522 1526 1527 1522 1527 1528 1522 1528 1529 1522 1529 1530 1530 1529 1531 1531 1529 1532 1532 1529 1533 1533 1529 1534 1534 1529 1535 1535 1529 1536 1536 1529 1537 1537 1529 1538 1538 1529 1539 1539 1529 1540 1540 1529 1541 1541 1529 1542 1542 1529 1543 1543 1529 1544 1544 1529 1545 1545 1529 1546 1546 1529 1547 1546 1547 1548 1548 1547 1549 1548 1549 1550 1548 1550 1551 1551 1550 1552 1551 1552 1553 1553 1552 1554 997 1555 998 1555 997 1556 1555 1556 1557 1555 1557 1558 1555 1558 1559 1555 1559 1560 1555 1560 1561 1555 1561 1562 1555 1562 1563 1555 1563 1564 1555 1564 1565 1557 1556 1566 1557 1566 1567 1557 1567 1568 1565 1564 1569 1565 1569 1570 1565 1570 1571 1565 1571 1572 1565 1572 1573 1565 1573 1574 1574 1573 1575 1575 1573 1576 1575 1576 1577 1575 1577 1578 1575 1578 1579 1575 1579 1580 1575 1580 1581 1581 1580 1582 1581 1582 1583 1581 1583 1584 1581 1584 1585 1581 1585 1586 1581 1586 1587 1581 1587 1588 1588 1587 1589 1588 1589 1590 1588 1590 1591 1588 1591 1592 1588 1592 1593 1593 1592 1594 1594 1592 1595 1594 1595 1596 1596 1595 1597 1596 1597 1598 1596 1598 1599 1596 1599 1600 1596 1600 1601 1596 1601 1602 1596 1602 1603 1596 1603 1604 1596 1604 1605 1596 1605 1606 1596 1606 1607 1596 1607 1608 1596 1608 1609 1596 1609 1610 1596 1610 1611 1611 1610 1438 1611 1438 1435 1611 1435 1612 1611 1612 1613 1611 1613 1614 1611 1614 1504 1611 1504 1615 1611 1615 1616 1611 1616 1617 1611 1617 1618 1611 1618 1619 1611 1619 1620 1611 1620 1621 1504 1614 1622 1504 1622 1502 1621 1620 1623 1621 1623 1624 1621 1624 1625 1621 1625 1626 1621 1626 1627 1621 1627 1628 1621 1628 1629 1621 1629 1630 1621 1630 1631 1621 1631 1632 1621 1632 1633 1621 1633 1634 1621 1634 1635 1621 1635 1636 1621 1636 1637 1621 1637 1638 1621 1638 1639 1621 1639 1640 1640 1639 1641 1641 1639 1642 1641 1642 1643 1643 1642 1644 1643 1644 1645 1645 1644 1544 1544 1644 1646 1544 1646 1543 1469 1647 1648 1647 1469 1476 1648 1647 1649 1648 1649 1650 1648 1650 1651 1648 1651 1652 1648 1652 1653 1648 1653 1654 1648 1654 1655 1648 1655 1656 1648 1656 1657 1648 1657 1658 1658 1657 1659 1659 1657 1660 1659 1660 1661 1661 1660 1662 1661 1662 1663 1663 1662 1664 1664 1662 1665 1665 1662 1666 1665 1666 1667 1665 1667 1668 1668 1667 1669 1668 1669 1670 1668 1670 1671 1668 1671 1672 1672 1671 1673 1672 1673 1674 1674 1673 1675 1675 1673 1676 1672 1674 1677 1677 1674 1678 1678 1674 1425 1678 1425 1679 1679 1425 1427 1675 1676 1680 1680 1676 1681 1681 1676 1682 1682 1676 1683 1683 1676 1684 1684 1676 1685 1684 1685 1686 1686 1685 1687 1687 1685 1688 1688 1685 1689 1689 1685 1690 1690 1685 1691 1691 1685 1692 1692 1685 1693 1692 1693 1694 1694 1693 1695 1694 1695 1696 1694 1696 1498 1498 1696 1697 1498 1697 1698 1498 1698 1497 1699 1700 1701 1700 1699 1702 1700 1702 1703 1700 1703 1704 1704 1703 1591 1704 1591 1705 1705 1591 1590 1706 1557 1568 1557 1706 1707 1707 1706 1708 1708 1706 1709 1708 1709 1710 1710 1709 1711 1711 1709 1712 1712 1709 1713 1712 1713 1714 1714 1713 1715 1715 1713 1716 1715 1716 1717 1715 1717 1718 1715 1718 1719 1715 1719 1720 1715 1720 1721 1715 1721 1722 1715 1722 1723 1715 1723 1724 1715 1724 1725 1715 1725 1726 1715 1726 1305 1715 1305 1300 1715 1300 1441 1715 1441 1440 1715 1440 1727 1715 1727 1728 1715 1728 1729 1729 1728 1730 1730 1728 1731 1730 1731 1732 1732 1731 1733 1733 1731 1734 1734 1731 1735 1734 1735 1736 1736 1735 1737 1737 1735 1738 1737 1738 1739 1737 1739 1740 1737 1740 1741 1741 1740 1742 1742 1740 1743 1742 1743 1744 1744 1743 1745 1744 1745 1746 1746 1745 1747 1746 1747 1748 1748 1747 1749 1749 1747 1750 1750 1747 1751 1751 1747 1752 1752 1747 1753 1753 1747 1754 1753 1754 1755 1755 1754 1756 1755 1756 1701 1701 1756 1757 1701 1757 1758 1701 1758 1699 1699 1758 1759 1759 1758 1760 1760 1758 1761 1760 1761 1762 1762 1761 1763 1763 1761 1764 1764 1761 1765 1765 1761 1766 1765 1766 1767 1767 1766 1768 1768 1766 1769 1768 1769 1770 1770 1769 1771 1770 1771 1772 1772 1771 1773 1773 1771 1774 1773 1774 1775 1775 1774 1776 1775 1776 1777 1777 1776 1778 1777 1778 1678 1777 1678 1779 1779 1678 1679

-
-
-
- - - - -7654.6102362 263.7795276 4489.8543307 -7664.2519685 47.2440945 4494.3503937 -7664.2519685 263.7795276 4494.3503937 -7654.6102362 47.2440945 4489.8543307 -7674.5275591 47.2440945 4497.1023622 -7674.5275591 263.7795276 4497.1023622 -7603.4685039 263.7795276 4460.3267717 -7603.4685039 47.2440945 4460.3267717 -7676.2913386 47.2440945 4497.2598425 -7676.2913386 263.7795276 4497.2598425 -7594.7559055 263.7795276 4454.2283465 -7594.7559055 47.2440945 4454.2283465 -7685.1220472 47.2440945 4498.0314961 -7685.1220472 263.7795276 4498.0314961 -7587.2322835 263.7795276 4446.7047244 -7587.2322835 47.2440945 4446.7047244 -7695.7204724 47.2440945 4497.1062992 -7695.7204724 263.7795276 4497.1062992 -7586.2165354 263.7795276 4445.2519685 -7586.2165354 47.2440945 4445.2519685 -7705.9960630 47.2440945 4494.3503937 -7705.9960630 263.7795276 4494.3503937 -7581.1299213 47.2440945 4437.9921260 -7581.1299213 263.7795276 4437.9921260 -7715.6338583 47.2440945 4489.8543307 -7715.6338583 263.7795276 4489.8543307 -7576.6377953 47.2440945 4428.3503937 -7576.6377953 263.7795276 4428.3503937 -7724.3464567 47.2440945 4483.7559055 -7724.3464567 263.7795276 4483.7559055 -7573.8818898 47.2440945 4418.0787402 -7573.8818898 263.7795276 4418.0787402 -7731.8700787 47.2440945 4476.2322835 -7731.8700787 263.7795276 4476.2322835 -7572.9566929 47.2440945 4407.4803150 -7572.9566929 263.7795276 4407.4803150 -7737.9724409 47.2440945 4467.5196850 -7737.9724409 263.7795276 4467.5196850 -7573.8818898 47.2440945 4396.8818898 -7573.8818898 263.7795276 4396.8818898 -7742.4645669 263.7795276 4457.8779528 -7742.4645669 47.2440945 4457.8779528 -7576.6377953 263.7795276 4386.6102362 -7576.6377953 47.2440945 4386.6102362 -7745.2204724 263.7795276 4447.6062992 -7745.2204724 47.2440945 4447.6062992 -7581.1299213 47.2440945 4376.9685039 -7581.1299213 263.7795276 4376.9685039 -7746.1456693 47.2440945 4437.0078740 -7746.1456693 263.7795276 4437.0078740 -7587.2322835 47.2440945 4368.2559055 -7587.2322835 263.7795276 4368.2559055 -7745.2204724 263.7795276 4426.4094488 -7745.2204724 47.2440945 4426.4094488 -7594.7559055 263.7795276 4360.7322835 -7594.7559055 47.2440945 4360.7322835 -7742.4645669 47.2440945 4416.1377953 -7742.4645669 263.7795276 4416.1377953 -7603.4685039 263.7795276 4354.6338583 -7603.4685039 47.2440945 4354.6338583 -7737.9724409 263.7795276 4406.4960630 -7737.9724409 47.2440945 4406.4960630 -7613.1102362 263.7795276 4350.1377953 -7613.1102362 47.2440945 4350.1377953 -7732.8858268 263.7795276 4399.2362205 -7732.8858268 47.2440945 4399.2362205 -7623.3818898 263.7795276 4347.3818898 -7623.3818898 47.2440945 4347.3818898 -7731.8700787 263.7795276 4397.7834646 -7731.8700787 47.2440945 4397.7834646 -7633.9803150 263.7795276 4346.4566929 -7633.9803150 47.2440945 4346.4566929 -7724.3464567 47.2440945 4390.2598425 -7724.3464567 263.7795276 4390.2598425 -7644.5748031 263.7795276 4347.3818898 -7644.5748031 47.2440945 4347.3818898 -7715.6338583 47.2440945 4384.1614173 -7715.6338583 263.7795276 4384.1614173 -7654.8503937 263.7795276 4350.1377953 -7654.8503937 47.2440945 4350.1377953 -7664.4921260 47.2440945 4354.6338583 -7664.4921260 263.7795276 4354.6338583 - - - - - - - - - - -0.4617561 0.0000000 -0.8870069 -0.3419638 0.0000000 -0.9397131 -0.3419638 0.0000000 -0.9397131 -0.4617561 0.0000000 -0.8870069 -0.1744650 0.0000000 -0.9846634 -0.1744650 0.0000000 -0.9846634 -0.5372334 0.0000000 -0.8434336 -0.5372334 0.0000000 -0.8434336 -0.0879916 0.0000000 -0.9961212 -0.0879916 0.0000000 -0.9961212 -0.6427226 0.0000000 -0.7660989 -0.6427226 0.0000000 -0.7660989 -0.0000433 -0.0000000 -1.0000000 -0.0000433 -0.0000000 -1.0000000 -0.7662646 0.0000000 -0.6425252 -0.7662646 0.0000000 -0.6425252 0.1736687 0.0000000 -0.9848041 0.1736687 0.0000000 -0.9848041 -0.8192632 -0.0000000 -0.5734176 -0.8192632 -0.0000000 -0.5734176 0.3422052 0.0000000 -0.9396252 0.3422052 0.0000000 -0.9396252 -0.8660339 -0.0000000 -0.4999853 -0.8660339 -0.0000000 -0.4999853 0.4999961 -0.0000000 -0.8660276 0.4999961 -0.0000000 -0.8660276 -0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 -0.3420192 0.6427226 -0.0000000 -0.7660989 0.6427226 -0.0000000 -0.7660989 -0.9847958 0.0000000 -0.1737160 -0.9847958 0.0000000 -0.1737160 0.7660015 -0.0000000 -0.6428388 0.7660015 -0.0000000 -0.6428388 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 0.8660748 0.0000000 -0.4999144 0.8660748 0.0000000 -0.4999144 -0.9847958 0.0000000 0.1737160 -0.9847958 0.0000000 0.1737160 0.9396930 0.0000000 -0.3420192 0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 0.3420192 -0.9396930 0.0000000 0.3420192 0.9847958 -0.0000000 -0.1737160 0.9847958 -0.0000000 -0.1737160 -0.8660748 0.0000000 0.4999144 -0.8660748 0.0000000 0.4999144 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.7660015 0.0000000 0.6428388 -0.7660015 0.0000000 0.6428388 0.9847958 -0.0000000 0.1737160 0.9847958 -0.0000000 0.1737160 -0.6427226 0.0000000 0.7660989 -0.6427226 0.0000000 0.7660989 0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 0.3420192 -0.4999284 -0.0000000 0.8660667 -0.4999284 -0.0000000 0.8660667 0.8660339 -0.0000000 0.4999853 0.8660339 -0.0000000 0.4999853 -0.3421768 -0.0000000 0.9396356 -0.3421768 -0.0000000 0.9396356 0.8192632 -0.0000000 0.5734176 0.8192632 -0.0000000 0.5734176 -0.1737160 0.0000000 0.9847958 -0.1737160 0.0000000 0.9847958 0.7662646 -0.0000000 0.6425252 0.7662646 -0.0000000 0.6425252 0.0000208 0.0000003 1.0000000 0.0000208 0.0000003 1.0000000 0.6427226 -0.0000000 0.7660989 0.6427226 -0.0000000 0.7660989 0.1736892 0.0000003 0.9848005 0.1736892 0.0000003 0.9848005 0.5372334 -0.0000000 0.8434336 0.5372334 -0.0000000 0.8434336 0.3421317 -0.0000000 0.9396520 0.3421317 -0.0000000 0.9396520 0.4617561 -0.0000000 0.8870069 0.4617561 -0.0000000 0.8870069 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 15 18 19 18 15 14 17 20 21 20 17 16 18 22 19 22 18 23 21 24 25 24 21 20 23 26 22 26 23 27 25 28 29 28 25 24 27 30 26 30 27 31 29 32 33 32 29 28 31 34 30 34 31 35 36 33 32 33 36 37 35 38 34 38 35 39 40 36 41 36 40 37 38 42 43 42 38 39 44 41 45 41 44 40 42 46 43 46 42 47 48 44 45 44 48 49 47 50 46 50 47 51 52 48 53 48 52 49 50 54 55 54 50 51 56 52 53 52 56 57 55 58 59 58 55 54 60 56 61 56 60 57 59 62 63 62 59 58 64 61 65 61 64 60 63 66 67 66 63 62 68 65 69 65 68 64 67 70 71 70 67 66 72 68 69 68 72 73 71 74 75 74 71 70 76 73 72 73 76 77 75 78 79 78 75 74 80 77 76 77 80 81 79 81 80 81 79 78

-
-
-
- - - - -7327.0314961 263.7795276 4443.8582677 -7361.2165354 47.2440945 4446.8503937 -7361.2165354 263.7795276 4446.8503937 -7327.0314961 47.2440945 4443.8582677 -7311.2559055 263.7795276 4439.6338583 -7311.2559055 47.2440945 4439.6338583 -7387.5511811 47.2440945 4444.5472441 -7387.5511811 263.7795276 4444.5472441 -7293.8897638 263.7795276 4434.9803150 -7293.8897638 47.2440945 4434.9803150 -7395.3976378 47.2440945 4443.8582677 -7395.3976378 263.7795276 4443.8582677 -7262.7913386 263.7795276 4420.4763780 -7262.7913386 47.2440945 4420.4763780 -7428.5433071 47.2440945 4434.9803150 -7428.5433071 263.7795276 4434.9803150 -7234.6811024 263.7795276 4400.7952756 -7234.6811024 47.2440945 4400.7952756 -7459.6417323 47.2440945 4420.4763780 -7459.6417323 263.7795276 4420.4763780 -7221.9685039 263.7795276 4388.0826772 -7221.9685039 47.2440945 4388.0826772 -7487.7480315 47.2440945 4400.7952756 -7487.7480315 263.7795276 4400.7952756 -7210.4212598 47.2440945 4376.5314961 -7210.4212598 263.7795276 4376.5314961 -7495.6062992 47.2440945 4392.9409449 -7495.6062992 263.7795276 4392.9409449 -7190.7401575 47.2440945 4348.4251969 -7190.7401575 263.7795276 4348.4251969 -7512.0118110 47.2440945 4376.5314961 -7512.0118110 263.7795276 4376.5314961 -7176.2362205 47.2440945 4317.3267717 -7176.2362205 263.7795276 4317.3267717 -7531.6929134 263.7795276 4348.4251969 -7531.6929134 47.2440945 4348.4251969 -7167.3543307 47.2440945 4284.1811024 -7167.3543307 263.7795276 4284.1811024 -7546.1968504 263.7795276 4317.3267717 -7546.1968504 47.2440945 4317.3267717 -7164.3661417 47.2440945 4250.0000000 -7164.3661417 263.7795276 4250.0000000 -7555.0748031 47.2440945 4284.1811024 -7555.0748031 263.7795276 4284.1811024 -7167.3543307 47.2440945 4215.8188976 -7167.3543307 263.7795276 4215.8188976 -7558.0669291 47.2440945 4250.0000000 -7557.5944882 47.2440945 4255.4094488 -7558.0669291 263.7795276 4250.0000000 -7557.5944882 263.7795276 4255.4094488 -7170.2322835 263.7795276 4205.0866142 -7170.2322835 47.2440945 4205.0866142 -7555.0748031 263.7795276 4215.8188976 -7555.0748031 47.2440945 4215.8188976 -7176.2362205 47.2440945 4182.6732283 -7176.2362205 263.7795276 4182.6732283 -7546.1968504 263.7795276 4182.6732283 -7546.1968504 47.2440945 4182.6732283 -7190.7401575 47.2440945 4151.5748031 -7190.7401575 263.7795276 4151.5748031 -7531.6929134 263.7795276 4151.5748031 -7531.6929134 47.2440945 4151.5748031 -7210.4212598 47.2440945 4123.4685039 -7210.4212598 263.7795276 4123.4685039 -7512.0118110 263.7795276 4123.4685039 -7512.0118110 47.2440945 4123.4685039 -7234.6811024 47.2440945 4099.2047244 -7234.6811024 263.7795276 4099.2047244 -7500.4645669 263.7795276 4111.9173228 -7500.4645669 47.2440945 4111.9173228 -7262.7913386 263.7795276 4079.5236220 -7262.7913386 47.2440945 4079.5236220 -7487.7480315 47.2440945 4099.2047244 -7487.7480315 263.7795276 4099.2047244 -7293.8897638 263.7795276 4065.0196850 -7293.8897638 47.2440945 4065.0196850 -7459.6417323 47.2440945 4079.5236220 -7459.6417323 263.7795276 4079.5236220 -7327.0314961 263.7795276 4056.1417323 -7327.0314961 47.2440945 4056.1417323 -7428.5433071 47.2440945 4065.0196850 -7428.5433071 263.7795276 4065.0196850 -7330.0944882 47.2440945 4055.8740157 -7334.8818898 263.7795276 4055.4527559 -7334.8818898 47.2440945 4055.4527559 -7330.0944882 263.7795276 4055.8740157 -7395.3976378 47.2440945 4056.1417323 -7395.3976378 263.7795276 4056.1417323 -7361.2165354 263.7795276 4053.1496063 -7361.2165354 47.2440945 4053.1496063 - - - - - - - - - - -0.1735900 0.0000000 -0.9848180 -0.0000349 0.0000000 -1.0000000 -0.0000349 0.0000000 -1.0000000 -0.1735900 0.0000000 -0.9848180 -0.2587512 -0.0000000 -0.9659440 -0.2587512 -0.0000000 -0.9659440 0.0872976 0.0000000 -0.9961823 0.0872976 0.0000000 -0.9961823 -0.3420588 -0.0000000 -0.9396786 -0.3420588 -0.0000000 -0.9396786 0.1737567 0.0000000 -0.9847886 0.1737567 0.0000000 -0.9847886 -0.5000090 0.0000000 -0.8660202 -0.5000090 0.0000000 -0.8660202 0.3420062 0.0000000 -0.9396977 0.3420062 0.0000000 -0.9396977 -0.6427703 0.0000000 -0.7660590 -0.6427703 0.0000000 -0.7660590 0.5000375 0.0000000 -0.8660037 0.5000375 0.0000000 -0.8660037 -0.7071670 -0.0000000 -0.7070465 -0.7071670 -0.0000000 -0.7070465 0.6426995 0.0000000 -0.7661184 0.6426995 0.0000000 -0.7661184 -0.7660926 0.0000000 -0.6427302 -0.7660926 0.0000000 -0.6427302 0.7070606 0.0000000 -0.7071529 0.7070606 0.0000000 -0.7071529 -0.8660036 -0.0000001 -0.5000377 -0.8660036 -0.0000001 -0.5000377 0.7660764 0.0000000 -0.6427495 0.7660764 0.0000000 -0.6427495 -0.9396787 -0.0000001 -0.3420585 -0.9396787 -0.0000001 -0.3420585 0.8660037 0.0000000 -0.5000375 0.8660037 0.0000000 -0.5000375 -0.9848122 0.0000000 -0.1736231 -0.9848122 0.0000000 -0.1736231 0.9396974 -0.0000004 -0.3420071 0.9396974 -0.0000004 -0.3420071 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 0.9848106 -0.0000004 -0.1736319 0.9848106 -0.0000004 -0.1736319 -0.9847965 0.0000000 0.1737119 -0.9847965 0.0000000 0.1737119 1.0000000 0.0000000 -0.0000062 0.9961894 -0.0000000 -0.0872164 1.0000000 0.0000000 -0.0000062 0.9961894 -0.0000000 -0.0872164 -0.9659098 0.0000000 0.2588789 -0.9659098 0.0000000 0.2588789 0.9848119 0.0000000 0.1736248 0.9848119 0.0000000 0.1736248 -0.9396935 0.0000000 0.3420177 -0.9396935 0.0000000 0.3420177 0.9396976 -0.0000001 0.3420064 0.9396976 -0.0000001 0.3420064 -0.8660037 0.0000000 0.5000375 -0.8660037 0.0000000 0.5000375 0.8660036 -0.0000001 0.5000377 0.8660036 -0.0000001 0.5000377 -0.7660649 -0.0000007 0.6427632 -0.7660649 -0.0000007 0.6427632 0.7660926 -0.0000000 0.6427302 0.7660926 -0.0000000 0.6427302 -0.6428037 -0.0000010 0.7660309 -0.6428037 -0.0000010 0.7660309 0.7071123 -0.0000000 0.7071013 0.7071123 -0.0000000 0.7071013 -0.5000104 -0.0000004 0.8660194 -0.5000104 -0.0000004 0.8660194 0.6427362 -0.0000000 0.7660876 0.6427362 -0.0000000 0.7660876 -0.3420202 0.0000000 0.9396926 -0.3420202 0.0000000 0.9396926 0.5000375 -0.0000000 0.8660037 0.5000375 -0.0000000 0.8660037 -0.1737597 0.0000000 0.9847881 -0.1737597 0.0000000 0.9847881 0.3420064 -0.0000008 0.9396976 0.3420064 -0.0000008 0.9396976 -0.0874472 0.0000000 0.9961692 -0.0872858 0.0000000 0.9961833 -0.0872858 0.0000000 0.9961833 -0.0874472 0.0000000 0.9961692 0.1736251 -0.0000008 0.9848118 0.1736251 -0.0000008 0.9848118 0.0000399 -0.0000000 1.0000000 0.0000399 -0.0000000 1.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 19 22 23 22 19 18 20 24 21 24 20 25 23 26 27 26 23 22 25 28 24 28 25 29 30 27 26 27 30 31 29 32 28 32 29 33 34 30 35 30 34 31 33 36 32 36 33 37 38 35 39 35 38 34 37 40 36 40 37 41 42 38 39 38 42 43 41 44 40 44 41 45 46 42 47 42 46 48 42 48 49 43 42 49 44 50 51 50 44 45 52 46 53 46 52 48 50 54 51 54 50 55 56 53 57 53 56 52 55 58 54 58 55 59 60 57 61 57 60 56 59 62 58 62 59 63 64 61 65 61 64 60 63 66 62 66 63 67 68 65 69 65 68 64 66 70 71 70 66 67 72 68 69 68 72 73 71 74 75 74 71 70 76 73 72 73 76 77 75 78 79 78 75 74 80 77 76 77 80 81 82 83 84 83 82 85 85 82 79 85 79 78 86 81 80 81 86 87 84 88 89 88 84 83 89 87 86 87 89 88

-
-
-
- - - - -7057.9409449 263.7795276 4145.3661417 -7067.5826772 47.2440945 4149.8622047 -7067.5826772 263.7795276 4149.8622047 -7057.9409449 47.2440945 4145.3661417 -7077.8543307 47.2440945 4152.6181102 -7077.8543307 263.7795276 4152.6181102 -7006.7952756 263.7795276 4115.8385827 -7006.7952756 47.2440945 4115.8385827 -7088.4527559 47.2440945 4153.5433071 -7088.4527559 263.7795276 4153.5433071 -6998.0826772 263.7795276 4109.7401575 -6998.0826772 47.2440945 4109.7401575 -7099.0472441 47.2440945 4152.6181102 -7099.0472441 263.7795276 4152.6181102 -6990.5629921 47.2440945 4102.2165354 -6990.5629921 263.7795276 4102.2165354 -7109.3228346 47.2440945 4149.8622047 -7109.3228346 263.7795276 4149.8622047 -6989.5472441 47.2440945 4100.7637795 -6989.5472441 263.7795276 4100.7637795 -7118.9645669 47.2440945 4145.3661417 -7118.9645669 263.7795276 4145.3661417 -6984.4606299 47.2440945 4093.5039370 -6984.4606299 263.7795276 4093.5039370 -7127.6771654 47.2440945 4139.2677165 -7127.6771654 263.7795276 4139.2677165 -6979.9645669 47.2440945 4083.8622047 -6979.9645669 263.7795276 4083.8622047 -7135.2007874 47.2440945 4131.7440945 -7135.2007874 263.7795276 4131.7440945 -6977.2125984 47.2440945 4073.5905512 -6977.2125984 263.7795276 4073.5905512 -7141.2992126 263.7795276 4123.0314961 -7141.2992126 47.2440945 4123.0314961 -6976.2834646 47.2440945 4062.9921260 -6976.2834646 263.7795276 4062.9921260 -7145.7952756 263.7795276 4113.3897638 -7145.7952756 47.2440945 4113.3897638 -6977.2125984 47.2440945 4052.3937008 -6977.2125984 263.7795276 4052.3937008 -7148.5472441 47.2440945 4103.1181102 -7148.5472441 263.7795276 4103.1181102 -6979.9645669 263.7795276 4042.1220472 -6979.9645669 47.2440945 4042.1220472 -7149.4763780 263.7795276 4092.5196850 -7149.4763780 47.2440945 4092.5196850 -6984.4606299 47.2440945 4032.4803150 -6984.4606299 263.7795276 4032.4803150 -7148.5472441 47.2440945 4081.9212598 -7148.5472441 263.7795276 4081.9212598 -6990.5629921 47.2440945 4023.7677165 -6990.5629921 263.7795276 4023.7677165 -7145.7952756 263.7795276 4071.6496063 -7145.7952756 47.2440945 4071.6496063 -6998.0826772 47.2440945 4016.2440945 -6998.0826772 263.7795276 4016.2440945 -7141.2992126 263.7795276 4062.0078740 -7141.2992126 47.2440945 4062.0078740 -7006.7952756 263.7795276 4010.1456693 -7006.7952756 47.2440945 4010.1456693 -7135.2007874 263.7795276 4053.2952756 -7135.2007874 47.2440945 4053.2952756 -7016.4370079 263.7795276 4005.6496063 -7016.4370079 47.2440945 4005.6496063 -7127.6771654 47.2440945 4045.7716535 -7127.6771654 263.7795276 4045.7716535 -7026.7125984 263.7795276 4002.8937008 -7026.7125984 47.2440945 4002.8937008 -7118.9645669 47.2440945 4039.6732283 -7118.9645669 263.7795276 4039.6732283 -7037.3110236 263.7795276 4001.9685039 -7037.3110236 47.2440945 4001.9685039 -7067.8188976 47.2440945 4010.1456693 -7067.8188976 263.7795276 4010.1456693 -7047.9055118 263.7795276 4002.8937008 -7047.9055118 47.2440945 4002.8937008 -7058.1811024 47.2440945 4005.6496063 -7058.1811024 263.7795276 4005.6496063 - - - - - - - - - - -0.4617413 -0.0000000 -0.8870146 -0.3421768 -0.0000000 -0.9396356 -0.3421768 -0.0000000 -0.9396356 -0.4617413 -0.0000000 -0.8870146 -0.1737233 0.0000006 -0.9847945 -0.1737233 0.0000006 -0.9847945 -0.5372194 0.0000000 -0.8434425 -0.5372194 0.0000000 -0.8434425 0.0000086 0.0000006 -1.0000000 0.0000086 0.0000006 -1.0000000 -0.6428229 0.0000000 -0.7660148 -0.6428229 0.0000000 -0.7660148 0.1736846 0.0000000 -0.9848013 0.1736846 0.0000000 -0.9848013 -0.7663487 0.0000000 -0.6424249 -0.7663487 0.0000000 -0.6424249 0.3421317 -0.0000000 -0.9396520 0.3421317 -0.0000000 -0.9396520 -0.8192632 -0.0000000 -0.5734176 -0.8192632 -0.0000000 -0.5734176 0.4999284 -0.0000000 -0.8660667 0.4999284 -0.0000000 -0.8660667 -0.8659500 -0.0000000 -0.5001306 -0.8659500 -0.0000000 -0.5001306 0.6427226 -0.0000000 -0.7660989 0.6427226 -0.0000000 -0.7660989 -0.9396968 0.0000000 -0.3420088 -0.9396968 0.0000000 -0.3420088 0.7660989 -0.0000000 -0.6427226 0.7660989 -0.0000000 -0.6427226 -0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 -0.1737214 0.8660667 0.0000000 -0.4999284 0.8660667 0.0000000 -0.4999284 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.9396968 0.0000000 -0.3420088 0.9396968 0.0000000 -0.3420088 -0.9847948 0.0000000 0.1737214 -0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 -0.1737214 0.9847948 0.0000000 -0.1737214 -0.9396968 0.0000000 0.3420088 -0.9396968 0.0000000 0.3420088 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -0.8659909 0.0000000 0.5000597 -0.8659909 0.0000000 0.5000597 0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 0.1737214 -0.7660856 0.0000000 0.6427385 -0.7660856 0.0000000 0.6427385 0.9396968 0.0000000 0.3420088 0.9396968 0.0000000 0.3420088 -0.6428229 -0.0000000 0.7660148 -0.6428229 -0.0000000 0.7660148 0.8660623 0.0000007 0.4999361 0.8660623 0.0000007 0.4999361 -0.4999284 -0.0000000 0.8660667 -0.4999284 -0.0000000 0.8660667 0.7660932 0.0000007 0.6427295 0.7660932 0.0000007 0.6427295 -0.3421317 0.0000000 0.9396520 -0.3421317 0.0000000 0.9396520 0.6427226 -0.0000000 0.7660989 0.6427226 -0.0000000 0.7660989 -0.1736687 0.0000000 0.9848041 -0.1736687 0.0000000 0.9848041 0.5372194 -0.0000000 0.8434425 0.5372194 -0.0000000 0.8434425 0.0000208 0.0000003 1.0000000 0.0000208 0.0000003 1.0000000 0.4618107 0.0000000 0.8869785 0.4618107 0.0000000 0.8869785 0.1736892 0.0000003 0.9848005 0.1736892 0.0000003 0.9848005 0.3422052 -0.0000000 0.9396252 0.3422052 -0.0000000 0.9396252 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 10 14 11 14 10 15 13 16 17 16 13 12 15 18 14 18 15 19 17 20 21 20 17 16 19 22 18 22 19 23 21 24 25 24 21 20 23 26 22 26 23 27 25 28 29 28 25 24 27 30 26 30 27 31 32 28 33 28 32 29 31 34 30 34 31 35 36 33 37 33 36 32 35 38 34 38 35 39 40 36 37 36 40 41 38 42 43 42 38 39 44 40 45 40 44 41 42 46 43 46 42 47 48 44 45 44 48 49 47 50 46 50 47 51 52 48 53 48 52 49 51 54 50 54 51 55 56 53 57 53 56 52 54 58 59 58 54 55 60 57 61 57 60 56 59 62 63 62 59 58 64 60 61 60 64 65 63 66 67 66 63 62 68 65 64 65 68 69 67 70 71 70 67 66 72 69 68 69 72 73 71 74 75 74 71 70 76 73 72 73 76 77 75 77 76 77 75 74

-
-
-
- - - - -2800.9440945 263.7795276 1617.1259843 -2796.0244094 47.2440945 1624.1527559 -2800.9440945 47.2440945 1617.1259843 -2796.0244094 263.7795276 1624.1527559 -2789.9582677 263.7795276 1630.2185039 -2789.9582677 47.2440945 1630.2185039 -2804.5696850 47.2440945 1609.3515748 -2804.5696850 263.7795276 1609.3515748 -2782.9311024 263.7795276 1635.1389764 -2782.9311024 47.2440945 1635.1389764 -2806.7897638 263.7795276 1601.0653543 -2806.7897638 47.2440945 1601.0653543 -2775.1570866 263.7795276 1638.7645669 -2775.1570866 47.2440945 1638.7645669 -2807.5374016 47.2440945 1592.5196850 -2807.5374016 263.7795276 1592.5196850 -2766.8704724 263.7795276 1640.9846457 -2766.8704724 47.2440945 1640.9846457 -2806.7905512 263.7795276 1583.9740157 -2806.7905512 47.2440945 1583.9740157 -2758.3248031 263.7795276 1641.7322835 -2758.3248031 47.2440945 1641.7322835 -2804.5696850 47.2440945 1575.6877953 -2804.5696850 263.7795276 1575.6877953 -2749.7791339 263.7795276 1640.9846457 -2749.7791339 47.2440945 1640.9846457 -2800.9440945 263.7795276 1567.9133858 -2800.9440945 47.2440945 1567.9133858 -2741.4933071 263.7795276 1638.7641732 -2741.4933071 47.2440945 1638.7641732 -2796.0244094 263.7795276 1560.8862205 -2796.0244094 47.2440945 1560.8862205 -2733.7185039 263.7795276 1635.1389764 -2733.7185039 47.2440945 1635.1389764 -2789.9582677 47.2440945 1554.8204724 -2789.9582677 263.7795276 1554.8204724 -2726.6921260 263.7795276 1630.2188976 -2726.6921260 47.2440945 1630.2188976 -2782.9311024 47.2440945 1549.9003937 -2782.9311024 263.7795276 1549.9003937 -2720.6259843 263.7795276 1624.1531496 -2720.6259843 47.2440945 1624.1531496 -2775.1570866 47.2440945 1546.2751969 -2775.1570866 263.7795276 1546.2751969 -2715.7055118 263.7795276 1617.1259843 -2715.7055118 47.2440945 1617.1259843 -2766.8708661 47.2440945 1544.0547244 -2766.8708661 263.7795276 1544.0547244 -2712.0803150 47.2440945 1609.3511811 -2712.0803150 263.7795276 1609.3511811 -2758.3248031 47.2440945 1543.3070866 -2758.3248031 263.7795276 1543.3070866 -2709.8598425 263.7795276 1601.0653543 -2709.8598425 47.2440945 1601.0653543 -2749.7791339 47.2440945 1544.0547244 -2749.7791339 263.7795276 1544.0547244 -2709.1122047 47.2440945 1592.5196850 -2709.1122047 263.7795276 1592.5196850 -2741.4933071 47.2440945 1546.2751969 -2741.4933071 263.7795276 1546.2751969 -2709.8598425 263.7795276 1583.9740157 -2709.8598425 47.2440945 1583.9740157 -2733.7185039 47.2440945 1549.9003937 -2733.7185039 263.7795276 1549.9003937 -2712.0803150 47.2440945 1575.6881890 -2712.0803150 263.7795276 1575.6881890 -2726.6921260 47.2440945 1554.8204724 -2726.6921260 263.7795276 1554.8204724 -2715.7055118 263.7795276 1567.9133858 -2715.7055118 47.2440945 1567.9133858 -2720.6259843 47.2440945 1560.8866142 -2720.6259843 263.7795276 1560.8866142 - - - - - - - - - - 0.8660291 0.0000000 -0.4999936 0.7660498 -0.0000000 -0.6427813 0.8660291 0.0000000 -0.4999936 0.7660498 -0.0000000 -0.6427813 0.6427751 -0.0000000 -0.7660549 0.6427751 -0.0000000 -0.7660549 0.9396908 -0.0000000 -0.3420253 0.9396908 -0.0000000 -0.3420253 0.5000231 0.0000000 -0.8660120 0.5000231 0.0000000 -0.8660120 0.9848099 -0.0000000 -0.1736360 0.9848099 -0.0000000 -0.1736360 0.3420288 0.0000000 -0.9396895 0.3420288 0.0000000 -0.9396895 1.0000000 0.0000000 -0.0000457 1.0000000 0.0000000 -0.0000457 0.1736302 0.0000000 -0.9848109 0.1736302 0.0000000 -0.9848109 0.9848101 0.0000000 0.1736347 0.9848101 0.0000000 0.1736347 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.9396756 0.0000000 0.3420669 0.9396756 0.0000000 0.3420669 -0.1736637 0.0000000 -0.9848050 -0.1736637 0.0000000 -0.9848050 0.8660357 0.0000000 0.4999822 0.8660357 0.0000000 0.4999822 -0.3420230 0.0000000 -0.9396916 -0.3420230 0.0000000 -0.9396916 0.7660582 0.0000000 0.6427712 0.7660582 0.0000000 0.6427712 -0.4999949 0.0000000 -0.8660284 -0.4999949 0.0000000 -0.8660284 0.6427607 0.0000000 0.7660670 0.6427607 0.0000000 0.7660670 -0.6427809 0.0000000 -0.7660501 -0.6427809 0.0000000 -0.7660501 0.4999889 0.0000000 0.8660318 0.4999889 0.0000000 0.8660318 -0.7660341 -0.0000000 -0.6428000 -0.7660341 -0.0000000 -0.6428000 0.3420357 0.0000000 0.9396870 0.3420357 0.0000000 0.9396870 -0.8660321 0.0000000 -0.4999883 -0.8660321 0.0000000 -0.4999883 0.1736559 -0.0000000 0.9848064 0.1736559 -0.0000000 0.9848064 -0.9396916 0.0000000 -0.3420230 -0.9396916 0.0000000 -0.3420230 -0.0000020 -0.0000000 1.0000000 -0.0000020 -0.0000000 1.0000000 -0.9848050 0.0000000 -0.1736637 -0.9848050 0.0000000 -0.1736637 -0.1736637 0.0000000 0.9848050 -0.1736637 0.0000000 0.9848050 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.3420230 0.0000000 0.9396916 -0.3420230 0.0000000 0.9396916 -0.9848050 0.0000000 0.1736637 -0.9848050 0.0000000 0.1736637 -0.4999949 0.0000000 0.8660284 -0.4999949 0.0000000 0.8660284 -0.9396916 0.0000000 0.3420230 -0.9396916 0.0000000 0.3420230 -0.6427933 0.0000000 0.7660397 -0.6427933 0.0000000 0.7660397 -0.8660256 0.0000000 0.4999997 -0.8660256 0.0000000 0.4999997 -0.7660360 0.0000000 0.6427976 -0.7660360 0.0000000 0.6427976 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 1 3 1 4 5 6 0 2 0 6 7 8 5 4 5 8 9 10 6 11 6 10 7 12 9 8 9 12 13 14 10 11 10 14 15 16 13 12 13 16 17 18 14 19 14 18 15 20 17 16 17 20 21 22 18 19 18 22 23 24 21 20 21 24 25 26 22 27 22 26 23 28 25 24 25 28 29 30 27 31 27 30 26 32 29 28 29 32 33 34 30 31 30 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 41 44 45 44 41 40 46 43 42 43 46 47 44 48 45 48 44 49 50 47 46 47 50 51 48 52 53 52 48 49 54 51 50 51 54 55 52 56 53 56 52 57 58 55 54 55 58 59 56 60 61 60 56 57 62 59 58 59 62 63 60 64 61 64 60 65 66 63 62 63 66 67 64 68 69 68 64 65 70 67 66 67 70 71 68 70 69 70 68 71

-
-
-
- - - - -7210.2362205 263.7795276 3929.4448819 -7252.9606299 47.2440945 3912.6118110 -7252.9606299 263.7795276 3912.6118110 -7210.2362205 47.2440945 3929.4448819 -7297.5039370 47.2440945 3901.4444882 -7297.5039370 263.7795276 3901.4444882 -7205.6496063 263.7795276 3931.1562992 -7205.6496063 47.2440945 3931.1562992 -7343.1141732 47.2440945 3896.1318898 -7343.1141732 263.7795276 3896.1318898 -7200.8464567 263.7795276 3932.0866142 -7200.8464567 47.2440945 3932.0866142 -7347.9685039 47.2440945 3895.4771654 -7347.9685039 263.7795276 3895.4771654 -7195.9527559 263.7795276 3932.2106299 -7195.9527559 47.2440945 3932.2106299 -7352.6456693 47.2440945 3894.0303150 -7352.6456693 263.7795276 3894.0303150 -7191.1062992 263.7795276 3931.5232283 -7191.1062992 47.2440945 3931.5232283 -7357.0196850 47.2440945 3891.8295276 -7357.0196850 263.7795276 3891.8295276 -7186.4370079 263.7795276 3930.0452756 -7186.4370079 47.2440945 3930.0452756 -7360.9685039 47.2440945 3888.9358268 -7360.9685039 263.7795276 3888.9358268 -7182.0787402 263.7795276 3927.8165354 -7182.0787402 47.2440945 3927.8165354 -7364.3858268 263.7795276 3885.4295276 -7364.3858268 47.2440945 3885.4295276 -7178.1496063 263.7795276 3924.8984252 -7178.1496063 47.2440945 3924.8984252 -7367.1771654 263.7795276 3881.4066929 -7367.1771654 47.2440945 3881.4066929 -7174.7559055 47.2440945 3921.3708661 -7174.7559055 263.7795276 3921.3708661 -7466.4685039 263.7795276 3709.4275591 -7466.4685039 47.2440945 3709.4275591 -7171.9881890 47.2440945 3917.3314961 -7171.9881890 263.7795276 3917.3314961 -7468.5236220 263.7795276 3705.0917323 -7468.5236220 47.2440945 3705.0917323 -7084.2165354 263.7795276 3763.0220472 -7084.2165354 47.2440945 3763.0220472 -7469.8464567 47.2440945 3700.4807087 -7469.8464567 263.7795276 3700.4807087 -7082.1929134 263.7795276 3758.6818898 -7082.1929134 47.2440945 3758.6818898 -7470.4055118 263.7795276 3695.7157480 -7470.4055118 47.2440945 3695.7157480 -7080.9015748 47.2440945 3754.0716535 -7080.9015748 263.7795276 3754.0716535 -7470.1889764 263.7795276 3690.9232283 -7470.1889764 47.2440945 3690.9232283 -7080.3700787 47.2440945 3749.3129921 -7080.3700787 263.7795276 3749.3129921 -7469.1968504 263.7795276 3686.2299213 -7469.1968504 47.2440945 3686.2299213 -7080.6141732 47.2440945 3744.5307087 -7080.6141732 263.7795276 3744.5307087 -7467.4566929 263.7795276 3681.7578740 -7467.4566929 47.2440945 3681.7578740 -7081.6259843 47.2440945 3739.8511811 -7081.6259843 263.7795276 3739.8511811 -7465.0157480 47.2440945 3677.6279528 -7465.0157480 263.7795276 3677.6279528 -7083.3858268 263.7795276 3735.3964567 -7083.3858268 47.2440945 3735.3964567 -7461.9370079 47.2440945 3673.9472441 -7461.9370079 263.7795276 3673.9472441 -7085.8385827 47.2440945 3731.2854331 -7085.8385827 263.7795276 3731.2854331 -7458.3070866 47.2440945 3670.8137795 -7458.3070866 263.7795276 3670.8137795 -7088.9251969 263.7795276 3727.6236220 -7088.9251969 47.2440945 3727.6236220 -7454.2125984 47.2440945 3668.3090551 -7454.2125984 263.7795276 3668.3090551 -7092.5629921 263.7795276 3724.5098425 -7092.5629921 47.2440945 3724.5098425 -7449.7716535 47.2440945 3666.5003937 -7449.7716535 263.7795276 3666.5003937 -7096.6535433 263.7795276 3722.0244094 -7096.6535433 47.2440945 3722.0244094 -7445.0905512 47.2440945 3665.4362205 -7445.0905512 263.7795276 3665.4362205 -7179.5118110 263.7795276 3688.0976378 -7179.5118110 47.2440945 3688.0976378 -7355.7559055 47.2440945 3659.4740157 -7355.7559055 263.7795276 3659.4740157 -7266.5472441 263.7795276 3667.0862205 -7266.5472441 47.2440945 3667.0862205 - - - - - - - - - - 0.3580923 -0.0000005 -0.9336862 0.3055152 -0.0000005 -0.9521872 0.3055152 -0.0000005 -0.9521872 0.3580923 -0.0000005 -0.9336862 0.1798169 0.0000001 -0.9837001 0.1798169 0.0000001 -0.9837001 0.2708021 0.0000000 -0.9626350 0.2708021 0.0000000 -0.9626350 0.1246856 0.0000001 -0.9921963 0.1246856 0.0000001 -0.9921963 0.1081163 0.0000000 -0.9941383 0.1081163 0.0000000 -0.9941383 0.2153360 -0.0000000 -0.9765400 0.2153360 -0.0000000 -0.9765400 -0.0577477 0.0000000 -0.9983312 -0.0577477 0.0000000 -0.9983312 0.3737842 -0.0000000 -0.9275157 0.3737842 -0.0000000 -0.9275157 -0.2218607 0.0000000 -0.9750784 -0.2218607 0.0000000 -0.9750784 0.5220765 -0.0000000 -0.8528986 0.5220765 -0.0000000 -0.8528986 -0.3798463 0.0000000 -0.9250496 -0.3798463 0.0000000 -0.9250496 0.6558634 -0.0000000 -0.7548796 0.6558634 -0.0000000 -0.7548796 -0.5275870 0.0000000 -0.8495010 -0.5275870 0.0000000 -0.8495010 0.7715164 0.0000000 -0.6362094 0.7715164 0.0000000 -0.6362094 -0.6607140 0.0000000 -0.7506377 -0.6607140 0.0000000 -0.7506377 0.8445357 0.0000000 -0.5354992 0.8445357 0.0000000 -0.5354992 -0.7754385 0.0000000 -0.6314231 -0.7754385 0.0000000 -0.6314231 0.8855556 0.0000000 -0.4645333 0.8855556 0.0000000 -0.4645333 -0.8478182 0.0000003 -0.5302870 -0.8478182 0.0000003 -0.5302870 0.9355437 0.0000000 -0.3532109 0.9355437 0.0000000 -0.3532109 -0.8885016 0.0000003 -0.4588734 -0.8885016 0.0000003 -0.4588734 0.9804448 0.0000000 -0.1967942 0.9804448 0.0000000 -0.1967942 -0.9377519 0.0000000 -0.3473058 -0.9377519 0.0000000 -0.3473058 0.9993585 0.0000000 -0.0358129 0.9993585 0.0000000 -0.0358129 -0.9815928 0.0000000 -0.1909860 -0.9815928 0.0000000 -0.1909860 0.9919795 -0.0000000 0.1263990 0.9919795 -0.0000000 0.1263990 -0.9995465 0.0000000 -0.0301115 -0.9995465 0.0000000 -0.0301115 0.9583274 -0.0000000 0.2856722 0.9583274 -0.0000000 0.2856722 -0.9913046 -0.0000000 0.1315872 -0.9913046 -0.0000000 0.1315872 0.8993797 0.0000000 0.4371683 0.8993797 0.0000000 0.4371683 -0.9569220 -0.0000000 0.2903453 -0.9569220 -0.0000000 0.2903453 0.8166635 0.0000000 0.5771142 0.8166635 0.0000000 0.5771142 -0.8973429 -0.0000000 0.4413341 -0.8973429 -0.0000000 0.4413341 0.7125829 0.0000000 0.7015879 0.7125829 0.0000000 0.7015879 -0.8143701 0.0000000 0.5803458 -0.8143701 0.0000000 0.5803458 0.5895998 0.0000000 0.8076956 0.5895998 0.0000000 0.8076956 -0.7097782 0.0000000 0.7044253 -0.7097782 0.0000000 0.7044253 0.4509942 0.0000000 0.8925269 0.4509942 0.0000000 0.8925269 -0.5866901 0.0000000 0.8098115 -0.5866901 0.0000000 0.8098115 0.3004325 0.0000000 0.9538031 0.3004325 0.0000000 0.9538031 -0.4504875 0.0000000 0.8927828 -0.4504875 0.0000000 0.8927828 0.1445783 -0.0000006 0.9894934 0.1445783 -0.0000006 0.9894934 -0.3076816 -0.0000000 0.9514894 -0.3076816 -0.0000000 0.9514894 -0.0092425 -0.0000006 0.9999573 -0.0092425 -0.0000006 0.9999573 -0.1603073 -0.0000000 0.9870672 -0.1603073 -0.0000000 0.9870672 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 17 20 21 20 17 16 22 19 18 19 22 23 21 24 25 24 21 20 26 23 22 23 26 27 28 24 29 24 28 25 30 27 26 27 30 31 32 29 33 29 32 28 30 34 31 34 30 35 36 33 37 33 36 32 35 38 34 38 35 39 40 37 41 37 40 36 38 42 43 42 38 39 44 40 41 40 44 45 43 46 47 46 43 42 48 44 49 44 48 45 46 50 47 50 46 51 52 49 53 49 52 48 51 54 50 54 51 55 56 53 57 53 56 52 55 58 54 58 55 59 60 57 61 57 60 56 59 62 58 62 59 63 64 60 61 60 64 65 62 66 67 66 62 63 68 65 64 65 68 69 66 70 67 70 66 71 72 69 68 69 72 73 70 74 75 74 70 71 76 73 72 73 76 77 75 78 79 78 75 74 80 77 76 77 80 81 79 82 83 82 79 78 84 81 80 81 84 85 83 86 87 86 83 82 88 85 84 85 88 89 87 90 91 90 87 86 91 89 88 89 91 90

-
-
-
- - - - -7461.3543307 47.2440945 3956.3661417 -7465.8464567 263.7795276 3946.7244094 -7465.8464567 47.2440945 3946.7244094 -7461.3543307 263.7795276 3956.3661417 -7458.5984252 263.7795276 3966.6377953 -7458.5984252 47.2440945 3966.6377953 -7495.3740157 47.2440945 3895.5811024 -7495.3740157 263.7795276 3895.5811024 -7457.6732283 263.7795276 3977.2362205 -7457.6732283 47.2440945 3977.2362205 -7501.4763780 263.7795276 3886.8677165 -7501.4763780 47.2440945 3886.8677165 -7458.5984252 263.7795276 3987.8346457 -7458.5984252 47.2440945 3987.8346457 -7509.0000000 263.7795276 3879.3464567 -7509.0000000 47.2440945 3879.3464567 -7461.3543307 263.7795276 3998.1062992 -7461.3543307 47.2440945 3998.1062992 -7517.7125984 263.7795276 3873.2448819 -7517.7125984 47.2440945 3873.2448819 -7465.8464567 263.7795276 4007.7480315 -7465.8464567 47.2440945 4007.7480315 -7527.3503937 263.7795276 3868.7500000 -7527.3503937 47.2440945 3868.7500000 -7471.9488189 47.2440945 4016.4606299 -7471.9488189 263.7795276 4016.4606299 -7537.6259843 263.7795276 3865.9960630 -7537.6259843 47.2440945 3865.9960630 -7479.4724409 47.2440945 4023.9842520 -7479.4724409 263.7795276 4023.9842520 -7548.2244094 263.7795276 3865.0692913 -7548.2244094 47.2440945 3865.0692913 -7488.1850394 47.2440945 4030.0826772 -7488.1850394 263.7795276 4030.0826772 -7558.8188976 263.7795276 3865.9960630 -7558.8188976 47.2440945 3865.9960630 -7497.8228346 47.2440945 4034.5787402 -7497.8228346 263.7795276 4034.5787402 -7569.0944882 263.7795276 3868.7500000 -7569.0944882 47.2440945 3868.7500000 -7508.0984252 47.2440945 4037.3307087 -7508.0984252 263.7795276 4037.3307087 -7578.7362205 263.7795276 3873.2448819 -7578.7362205 47.2440945 3873.2448819 -7518.6968504 47.2440945 4038.2598425 -7518.6968504 263.7795276 4038.2598425 -7587.4488189 263.7795276 3879.3464567 -7587.4488189 47.2440945 3879.3464567 -7529.2913386 47.2440945 4037.3307087 -7529.2913386 263.7795276 4037.3307087 -7594.9685039 47.2440945 3886.8677165 -7594.9685039 263.7795276 3886.8677165 -7539.5669291 47.2440945 4034.5787402 -7539.5669291 263.7795276 4034.5787402 -7601.0708661 47.2440945 3895.5811024 -7601.0708661 263.7795276 3895.5811024 -7549.2086614 47.2440945 4030.0826772 -7549.2086614 263.7795276 4030.0826772 -7605.5669291 47.2440945 3905.2216535 -7605.5669291 263.7795276 3905.2216535 -7557.9212598 47.2440945 4023.9842520 -7557.9212598 263.7795276 4023.9842520 -7608.3188976 263.7795276 3915.4968504 -7608.3188976 47.2440945 3915.4968504 -7565.4409449 263.7795276 4016.4606299 -7565.4409449 47.2440945 4016.4606299 -7609.2480315 47.2440945 3926.0933071 -7609.2480315 263.7795276 3926.0933071 -7571.5433071 263.7795276 4007.7480315 -7571.5433071 47.2440945 4007.7480315 -7608.3188976 47.2440945 3936.6897638 -7608.3188976 263.7795276 3936.6897638 -7601.0708661 47.2440945 3956.6062992 -7601.0708661 263.7795276 3956.6062992 -7605.5669291 47.2440945 3946.9645669 -7605.5669291 263.7795276 3946.9645669 - - - - - - - - - - -0.9396930 0.0000000 0.3420192 -0.8870874 0.0000000 0.4616014 -0.8870874 0.0000000 0.4616014 -0.9396930 0.0000000 0.3420192 -0.9847958 -0.0000000 0.1737160 -0.9847958 -0.0000000 0.1737160 -0.8433671 0.0000000 0.5373378 -0.8433671 0.0000000 0.5373378 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 -0.7659647 0.0000000 0.6428827 -0.7659647 0.0000000 0.6428827 -0.9847958 0.0000000 -0.1737160 -0.9847958 0.0000000 -0.1737160 -0.6427554 0.0000000 0.7660714 -0.6427554 0.0000000 0.7660714 -0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 -0.3420192 -0.5000576 0.0000000 0.8659922 -0.5000576 0.0000000 0.8659922 -0.8660748 0.0000000 -0.4999144 -0.8660748 0.0000000 -0.4999144 -0.3420740 -0.0000000 0.9396730 -0.3420740 -0.0000000 0.9396730 -0.7660015 0.0000000 -0.6428388 -0.7660015 0.0000000 -0.6428388 -0.1736534 -0.0000000 0.9848068 -0.1736534 -0.0000000 0.9848068 -0.6427226 0.0000000 -0.7660989 -0.6427226 0.0000000 -0.7660989 0.0000161 -0.0000000 1.0000000 0.0000161 -0.0000000 1.0000000 -0.4999961 0.0000000 -0.8660276 -0.4999961 0.0000000 -0.8660276 0.1736692 -0.0000000 0.9848040 0.1736692 -0.0000000 0.9848040 -0.3420373 0.0000000 -0.9396864 -0.3420373 0.0000000 -0.9396864 0.3420005 -0.0000000 0.9396998 0.3420005 -0.0000000 0.9396998 -0.1736743 -0.0000000 -0.9848032 -0.1736743 -0.0000000 -0.9848032 0.4999899 0.0000000 0.8660313 0.4999899 0.0000000 0.8660313 0.0000162 -0.0000000 -1.0000000 0.0000162 -0.0000000 -1.0000000 0.6428557 0.0000000 0.7659873 0.6428557 0.0000000 0.7659873 0.1736902 0.0000000 -0.9848003 0.1736902 0.0000000 -0.9848003 0.7660488 0.0000000 0.6427824 0.7660488 0.0000000 0.6427824 0.3419638 0.0000000 -0.9397131 0.3419638 0.0000000 -0.9397131 0.8659898 0.0000000 0.5000616 0.8659898 0.0000000 0.5000616 0.4999284 -0.0000000 -0.8660667 0.4999284 -0.0000000 -0.8660667 0.9397035 0.0000000 0.3419903 0.9397035 0.0000000 0.3419903 0.6428229 -0.0000000 -0.7660148 0.6428229 -0.0000000 -0.7660148 0.9848009 0.0000000 0.1736869 0.9848009 0.0000000 0.1736869 0.7660856 0.0000000 -0.6427385 0.7660856 0.0000000 -0.6427385 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.8433521 0.0000000 -0.5373613 0.8433521 0.0000000 -0.5373613 0.9848001 0.0000000 -0.1736916 0.9848001 0.0000000 -0.1736916 0.8870069 0.0000000 -0.4617561 0.8870069 0.0000000 -0.4617561 0.9397099 0.0000000 -0.3419728 0.9397099 0.0000000 -0.3419728 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 0 5 0 4 3 1 6 2 6 1 7 8 5 9 5 8 4 6 10 11 10 6 7 12 9 13 9 12 8 11 14 15 14 11 10 16 13 17 13 16 12 15 18 19 18 15 14 20 17 21 17 20 16 19 22 23 22 19 18 24 20 21 20 24 25 23 26 27 26 23 22 25 28 29 28 25 24 27 30 31 30 27 26 29 32 33 32 29 28 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 45 48 49 48 45 44 46 50 47 50 46 51 49 52 53 52 49 48 51 54 50 54 51 55 53 56 57 56 53 52 55 58 54 58 55 59 57 60 61 60 57 56 58 62 63 62 58 59 64 60 65 60 64 61 62 66 63 66 62 67 68 65 69 65 68 64 67 70 66 70 67 71 72 68 69 68 72 73 71 74 70 74 71 75 74 73 72 73 74 75

-
-
-
- - - - -7692.7874016 263.7795276 4126.4921260 -7676.7244094 47.2440945 4088.7440945 -7692.7874016 47.2440945 4126.4921260 -7676.7244094 263.7795276 4088.7440945 -7674.8661417 47.2440945 4084.2125984 -7674.8661417 263.7795276 4084.2125984 -7696.1929134 263.7795276 4134.5000000 -7696.1929134 47.2440945 4134.5000000 -7673.7795276 47.2440945 4079.4370079 -7673.7795276 263.7795276 4079.4370079 -7709.0629921 263.7795276 4182.5354331 -7709.0629921 47.2440945 4182.5354331 -7673.5000000 47.2440945 4074.5511811 -7673.5000000 263.7795276 4074.5511811 -7715.0826772 263.7795276 4231.8976378 -7710.1181102 47.2440945 4191.1771654 -7715.0826772 47.2440945 4231.8976378 -7710.1181102 263.7795276 4191.1771654 -7674.0314961 47.2440945 4069.6811024 -7674.0314961 263.7795276 4069.6811024 -7715.6574803 263.7795276 4236.1614173 -7715.6574803 47.2440945 4236.1614173 -7675.3582677 47.2440945 4064.9685039 -7675.3582677 263.7795276 4064.9685039 -7715.7401575 47.2440945 4236.7519685 -7715.7401575 263.7795276 4236.7519685 -7677.4448819 47.2440945 4060.5393701 -7677.4448819 263.7795276 4060.5393701 -7717.1850394 263.7795276 4241.4291339 -7717.1850394 47.2440945 4241.4291339 -7769.8897638 263.7795276 3900.4228346 -7769.8897638 47.2440945 3900.4228346 -7719.3858268 47.2440945 4245.8031496 -7719.3858268 263.7795276 4245.8031496 -7772.8425197 47.2440945 3896.2070866 -7772.8425197 263.7795276 3896.2070866 -7722.2795276 263.7795276 4249.7519685 -7722.2795276 47.2440945 4249.7519685 -7776.4803150 47.2440945 3892.5673228 -7776.4803150 263.7795276 3892.5673228 -7725.7874016 47.2440945 4253.1692913 -7725.7874016 263.7795276 4253.1692913 -7780.6968504 263.7795276 3889.6149606 -7780.6968504 47.2440945 3889.6149606 -7729.8110236 47.2440945 4255.9606299 -7729.8110236 263.7795276 4255.9606299 -7785.3622047 263.7795276 3887.4397638 -7785.3622047 47.2440945 3887.4397638 -7871.5196850 47.2440945 4337.7755906 -7871.5196850 263.7795276 4337.7755906 -7790.3346457 263.7795276 3886.1074803 -7790.3346457 47.2440945 3886.1074803 -7889.9251969 47.2440945 4348.4055118 -7889.9251969 263.7795276 4348.4055118 -7795.4606299 263.7795276 3885.6590551 -7795.4606299 47.2440945 3885.6590551 -7894.5905512 47.2440945 4350.5826772 -7894.5905512 263.7795276 4350.5826772 -7800.5905512 263.7795276 3886.1074803 -7800.5905512 47.2440945 3886.1074803 -7899.5629921 47.2440945 4351.9133858 -7899.5629921 263.7795276 4351.9133858 -7805.5590551 263.7795276 3887.4397638 -7805.5590551 47.2440945 3887.4397638 -7904.6889764 47.2440945 4352.3622047 -7904.6889764 263.7795276 4352.3622047 -7810.2244094 263.7795276 3889.6149606 -7810.2244094 47.2440945 3889.6149606 -7909.8188976 47.2440945 4351.9133858 -7909.8188976 263.7795276 4351.9133858 -7811.4173228 263.7795276 3890.3039370 -7811.4173228 47.2440945 3890.3039370 -7914.7913386 47.2440945 4350.5826772 -7914.7913386 263.7795276 4350.5826772 -7815.2362205 263.7795276 3892.9283465 -7815.2362205 47.2440945 3892.9283465 -7919.4527559 47.2440945 4348.4055118 -7919.4527559 263.7795276 4348.4055118 -7818.5984252 263.7795276 3896.1177165 -7818.5984252 47.2440945 3896.1177165 -7923.6692913 47.2440945 4345.4527559 -7923.6692913 263.7795276 4345.4527559 -7821.4173228 263.7795276 3899.7940945 -7821.4173228 47.2440945 3899.7940945 -7927.3110236 47.2440945 4341.8149606 -7927.3110236 263.7795276 4341.8149606 -7822.5118110 47.2440945 3901.8027559 -7822.5118110 263.7795276 3901.8027559 -7930.2637795 263.7795276 4337.5984252 -7930.2637795 47.2440945 4337.5984252 -7823.6299213 47.2440945 3903.8657480 -7823.6299213 263.7795276 3903.8657480 -7930.9527559 263.7795276 4336.4055118 -7930.9527559 47.2440945 4336.4055118 -7825.1771654 47.2440945 3908.2334646 -7825.1771654 263.7795276 3908.2334646 -7932.9448819 47.2440945 4332.2204724 -7932.9448819 263.7795276 4332.2204724 -7918.4763780 263.7795276 4256.4409449 -7918.4763780 47.2440945 4256.4409449 -7934.2637795 263.7795276 4327.7795276 -7934.2637795 47.2440945 4327.7795276 -7933.9015748 47.2440945 4314.0000000 -7933.9015748 263.7795276 4314.0000000 -7934.8661417 47.2440945 4323.1850394 -7934.8661417 263.7795276 4323.1850394 -7934.7440945 47.2440945 4318.5551181 -7934.7440945 263.7795276 4318.5551181 -7934.8070866 263.7795276 4320.9015748 -7934.8070866 47.2440945 4320.9015748 - - - - - - - - - - -0.9201980 -0.0000000 -0.3914533 -0.9227105 -0.0000000 -0.3854935 -0.9201980 -0.0000000 -0.3914533 -0.9227105 -0.0000000 -0.3854935 -0.9534120 0.0000000 -0.3016713 -0.9534120 0.0000000 -0.3016713 -0.9454119 0.0000000 -0.3258778 -0.9454119 0.0000000 -0.3258778 -0.9901548 0.0000000 -0.1399766 -0.9901548 0.0000000 -0.1399766 -0.9817083 0.0000000 -0.1903910 -0.9817083 0.0000000 -0.1903910 -0.9996678 0.0000000 0.0257747 -0.9996678 0.0000000 0.0257747 -0.9918610 -0.0000000 -0.1273251 -0.9926473 -0.0000000 -0.1210430 -0.9918610 -0.0000000 -0.1273251 -0.9926473 -0.0000000 -0.1210430 -0.9817067 -0.0000000 0.1903996 -0.9817067 -0.0000000 0.1903996 -0.9906916 -0.0000000 -0.1361254 -0.9906916 -0.0000000 -0.1361254 -0.9368263 -0.0000000 0.3497948 -0.9368263 -0.0000000 0.3497948 -0.9760371 0.0000000 -0.2176042 -0.9760371 0.0000000 -0.2176042 -0.8860982 -0.0000000 0.4634976 -0.8860982 -0.0000000 0.4634976 -0.9275875 0.0000000 -0.3736060 -0.9275875 0.0000000 -0.3736060 -0.8433528 -0.0000000 0.5373602 -0.8433528 -0.0000000 0.5373602 -0.8528986 0.0000000 -0.5220765 -0.8528986 0.0000000 -0.5220765 -0.7660875 -0.0000000 0.6427363 -0.7660875 -0.0000000 0.6427363 -0.7548060 0.0000000 -0.6559481 -0.7548060 0.0000000 -0.6559481 -0.6428859 -0.0000000 0.7659620 -0.6428859 -0.0000000 0.7659620 -0.6360875 -0.0000000 -0.7716170 -0.6360875 -0.0000000 -0.7716170 -0.4999716 0.0000000 0.8660418 -0.4999716 0.0000000 0.8660418 -0.5354608 -0.0000000 -0.8445601 -0.5354608 -0.0000000 -0.8445601 -0.3419890 0.0000000 0.9397040 -0.3419890 0.0000000 0.9397040 -0.5000603 0.0000000 -0.8659906 -0.5000603 0.0000000 -0.8659906 -0.1736371 0.0000000 0.9848097 -0.1736371 0.0000000 0.9848097 -0.4619425 -0.0000000 -0.8869099 -0.4619425 -0.0000000 -0.8869099 -0.0000333 0.0000000 1.0000000 -0.0000333 0.0000000 1.0000000 -0.3420129 0.0000000 -0.9396952 -0.3420129 0.0000000 -0.9396952 0.1737018 0.0000000 0.9847983 0.1737018 0.0000000 0.9847983 -0.1735291 0.0000000 -0.9848287 -0.1735291 0.0000000 -0.9848287 0.3420820 0.0000000 0.9396701 0.3420820 0.0000000 0.9396701 -0.0000333 0.0000000 -1.0000000 -0.0000333 0.0000000 -1.0000000 0.4617947 0.0000000 0.8869868 0.4617947 0.0000000 0.8869868 0.1735092 -0.0000004 -0.9848323 0.1735092 -0.0000004 -0.9848323 0.5336618 -0.0000000 0.8456980 0.5336618 -0.0000000 0.8456980 0.3421773 -0.0000004 -0.9396354 0.3421773 -0.0000004 -0.9396354 0.6292278 -0.0000000 0.7772210 0.6292278 -0.0000000 0.7772210 0.5002889 0.0000000 -0.8658586 0.5002889 0.0000000 -0.8658586 0.7431993 0.0000000 0.6690701 0.7431993 0.0000000 0.6690701 0.6425991 0.0000000 -0.7662026 0.6425991 0.0000000 -0.7662026 0.8383624 0.0000000 0.5451132 0.8383624 0.0000000 0.5451132 0.7658549 -0.0000000 -0.6430134 0.7658549 -0.0000000 -0.6430134 0.8786409 0.0000000 0.4774831 0.8786409 0.0000000 0.4774831 0.8433366 0.0000000 -0.5373858 0.8433366 0.0000000 -0.5373858 0.9136750 0.0000000 0.4064455 0.9136750 0.0000000 0.4064455 0.8851343 0.0000000 -0.4653356 0.8851343 0.0000000 -0.4653356 0.9550043 0.0000000 0.2965920 0.9550043 0.0000000 0.2965920 0.9335940 0.0000000 -0.3583325 0.9335940 0.0000000 -0.3583325 0.9659219 0.0000000 0.2588335 0.9659219 0.0000000 0.2588335 0.9781297 0.0000000 -0.2079958 0.9781297 0.0000000 -0.2079958 0.9753785 0.0000000 0.2205374 0.9753785 0.0000000 0.2205374 0.9986482 0.0000000 -0.0519792 0.9986482 0.0000000 -0.0519792 0.9945318 0.0000000 0.1044346 0.9945318 0.0000000 0.1044346 0.9996527 0.0000000 0.0263536 0.9996527 0.0000000 0.0263536 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 5 8 4 8 5 9 10 7 11 7 10 6 9 12 8 12 9 13 14 15 16 15 14 17 15 10 11 10 15 17 13 18 12 18 13 19 20 16 21 16 20 14 19 22 18 22 19 23 24 20 21 20 24 25 23 26 22 26 23 27 28 24 29 24 28 25 26 30 31 30 26 27 32 28 29 28 32 33 30 34 31 34 30 35 36 32 37 32 36 33 35 38 34 38 35 39 36 40 41 40 36 37 38 42 43 42 38 39 41 44 45 44 41 40 43 46 47 46 43 42 45 48 49 48 45 44 47 50 51 50 47 46 49 52 53 52 49 48 51 54 55 54 51 50 53 56 57 56 53 52 55 58 59 58 55 54 57 60 61 60 57 56 59 62 63 62 59 58 61 64 65 64 61 60 63 66 67 66 63 62 65 68 69 68 65 64 67 70 71 70 67 66 69 72 73 72 69 68 71 74 75 74 71 70 73 76 77 76 73 72 75 78 79 78 75 74 77 80 81 80 77 76 79 82 83 82 79 78 81 84 85 84 81 80 82 86 83 86 82 87 88 84 89 84 88 85 87 90 86 90 87 91 92 89 93 89 92 88 91 94 90 94 91 95 96 92 93 92 96 97 94 98 99 98 94 95 100 96 101 96 100 97 98 102 99 102 98 103 104 100 101 100 104 105 103 106 102 106 103 107 107 108 106 106 104 109 104 106 105 105 106 108

-
-
-
- - - - -3410.3500000 47.2440945 1514.3598425 -3405.4299213 263.7795276 1521.3870079 -3405.4299213 47.2440945 1521.3870079 -3410.3500000 263.7795276 1514.3598425 -3399.3637795 263.7795276 1527.4527559 -3399.3637795 47.2440945 1527.4527559 -3413.9755906 47.2440945 1506.5854331 -3413.9755906 263.7795276 1506.5854331 -3392.3370079 263.7795276 1532.3732283 -3392.3370079 47.2440945 1532.3732283 -3416.1956693 263.7795276 1498.2992126 -3416.1956693 47.2440945 1498.2992126 -3384.5625984 263.7795276 1535.9984252 -3384.5625984 47.2440945 1535.9984252 -3416.9433071 47.2440945 1489.7535433 -3416.9433071 263.7795276 1489.7535433 -3376.2767717 263.7795276 1538.2188976 -3376.2767717 47.2440945 1538.2188976 -3416.1956693 263.7795276 1481.2078740 -3416.1956693 47.2440945 1481.2078740 -3367.7307087 263.7795276 1538.9661417 -3367.7307087 47.2440945 1538.9661417 -3413.9755906 263.7795276 1472.9220472 -3413.9755906 47.2440945 1472.9220472 -3359.1854331 263.7795276 1538.2188976 -3359.1854331 47.2440945 1538.2188976 -3410.3500000 47.2440945 1465.1472441 -3410.3500000 263.7795276 1465.1472441 -3350.8992126 263.7795276 1535.9984252 -3350.8992126 47.2440945 1535.9984252 -3405.4299213 47.2440945 1458.1204724 -3405.4299213 263.7795276 1458.1204724 -3343.1244094 263.7795276 1532.3732283 -3343.1244094 47.2440945 1532.3732283 -3399.3641732 263.7795276 1452.0547244 -3399.3641732 47.2440945 1452.0547244 -3336.0976378 263.7795276 1527.4527559 -3336.0976378 47.2440945 1527.4527559 -3392.3370079 47.2440945 1447.1342520 -3392.3370079 263.7795276 1447.1342520 -3330.0318898 263.7795276 1521.3870079 -3330.0318898 47.2440945 1521.3870079 -3384.5625984 47.2440945 1443.5090551 -3384.5625984 263.7795276 1443.5090551 -3325.1114173 47.2440945 1514.3598425 -3325.1114173 263.7795276 1514.3598425 -3376.2767717 47.2440945 1441.2889764 -3376.2767717 263.7795276 1441.2889764 -3321.4866142 47.2440945 1506.5854331 -3321.4866142 263.7795276 1506.5854331 -3367.7307087 47.2440945 1440.5409449 -3367.7307087 263.7795276 1440.5409449 -3319.2657480 263.7795276 1498.2992126 -3319.2657480 47.2440945 1498.2992126 -3359.1854331 47.2440945 1441.2885827 -3359.1854331 263.7795276 1441.2885827 -3318.5181102 47.2440945 1489.7535433 -3318.5181102 263.7795276 1489.7535433 -3350.8992126 47.2440945 1443.5090551 -3350.8992126 263.7795276 1443.5090551 -3319.2661417 263.7795276 1481.2078740 -3319.2661417 47.2440945 1481.2078740 -3343.1244094 47.2440945 1447.1342520 -3343.1244094 263.7795276 1447.1342520 -3321.4866142 263.7795276 1472.9220472 -3321.4866142 47.2440945 1472.9220472 -3336.0976378 47.2440945 1452.0547244 -3336.0976378 263.7795276 1452.0547244 -3325.1114173 47.2440945 1465.1472441 -3325.1114173 263.7795276 1465.1472441 -3330.0318898 47.2440945 1458.1204724 -3330.0318898 263.7795276 1458.1204724 - - - - - - - - - - 0.8660263 -0.0000000 -0.4999985 0.7660461 -0.0000000 -0.6427856 0.7660461 -0.0000000 -0.6427856 0.8660263 -0.0000000 -0.4999985 0.6427852 -0.0000000 -0.7660465 0.6427852 -0.0000000 -0.7660465 0.9396908 -0.0000000 -0.3420253 0.9396908 -0.0000000 -0.3420253 0.5000081 0.0000000 -0.8660207 0.5000081 0.0000000 -0.8660207 0.9848099 -0.0000000 -0.1736360 0.9848099 -0.0000000 -0.1736360 0.3420321 0.0000000 -0.9396883 0.3420321 0.0000000 -0.9396883 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.1736392 0.0000000 -0.9848093 0.1736392 0.0000000 -0.9848093 0.9848089 0.0000000 0.1736419 0.9848089 0.0000000 0.1736419 -0.0000040 0.0000000 -1.0000000 -0.0000040 0.0000000 -1.0000000 0.9396920 0.0000000 0.3420217 0.9396920 0.0000000 0.3420217 -0.1736373 0.0000000 -0.9848097 -0.1736373 0.0000000 -0.9848097 0.8660246 -0.0000000 0.5000015 0.8660246 -0.0000000 0.5000015 -0.3420174 0.0000000 -0.9396936 -0.3420174 0.0000000 -0.9396936 0.7660481 -0.0000000 0.6427832 0.7660481 -0.0000000 0.6427832 -0.4999997 0.0000000 -0.8660256 -0.4999997 0.0000000 -0.8660256 0.6427875 -0.0000000 0.7660445 0.6427875 -0.0000000 0.7660445 -0.6427976 -0.0000000 -0.7660360 -0.6427976 -0.0000000 -0.7660360 0.4999967 0.0000000 0.8660273 0.4999967 0.0000000 0.8660273 -0.7660445 -0.0000000 -0.6427875 -0.7660445 -0.0000000 -0.6427875 0.3420113 0.0000000 0.9396958 0.3420113 0.0000000 0.9396958 -0.8660377 -0.0000000 -0.4999787 -0.8660377 -0.0000000 -0.4999787 0.1736624 0.0000000 0.9848052 0.1736624 0.0000000 0.9848052 -0.9396898 -0.0000000 -0.3420278 -0.9396898 -0.0000000 -0.3420278 0.0000189 0.0000000 1.0000000 0.0000189 0.0000000 1.0000000 -0.9848022 -0.0000000 -0.1736797 -0.9848022 -0.0000000 -0.1736797 -0.1736598 0.0000000 0.9848057 -0.1736598 0.0000000 0.9848057 -1.0000000 0.0000000 0.0000229 -1.0000000 0.0000000 0.0000229 -0.3420174 0.0000000 0.9396936 -0.3420174 0.0000000 0.9396936 -0.9848010 0.0000000 0.1736862 -0.9848010 0.0000000 0.1736862 -0.4999997 0.0000000 0.8660256 -0.4999997 0.0000000 0.8660256 -0.9396987 0.0000000 0.3420035 -0.9396987 0.0000000 0.3420035 -0.6427976 -0.0000000 0.7660360 -0.6427976 -0.0000000 0.7660360 -0.8660360 0.0000000 0.4999817 -0.8660360 0.0000000 0.4999817 -0.7660360 -0.0000000 0.6427976 -0.7660360 -0.0000000 0.6427976 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 1 2 4 5 6 3 0 3 6 7 8 5 4 5 8 9 10 6 11 6 10 7 12 9 8 9 12 13 14 10 11 10 14 15 16 13 12 13 16 17 18 14 19 14 18 15 20 17 16 17 20 21 22 19 23 19 22 18 24 21 20 21 24 25 26 22 23 22 26 27 28 25 24 25 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 30 35 30 34 31 36 33 32 33 36 37 38 34 35 34 38 39 40 37 36 37 40 41 42 39 38 39 42 43 40 44 41 44 40 45 46 43 42 43 46 47 45 48 44 48 45 49 50 47 46 47 50 51 48 52 53 52 48 49 54 51 50 51 54 55 52 56 53 56 52 57 58 55 54 55 58 59 56 60 61 60 56 57 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 64 68 65 68 64 69 70 67 66 67 70 71 69 70 68 70 69 71

-
-
-
- - - - -7027.5000000 47.2440945 4369.0984252 -7045.7047244 263.7795276 4411.2559055 -7045.7047244 47.2440945 4411.2559055 -7027.5000000 263.7795276 4369.0984252 -7014.9015748 263.7795276 4324.9409449 -7014.9015748 47.2440945 4324.9409449 -7047.5669291 47.2440945 4415.7874016 -7047.5669291 263.7795276 4415.7874016 -7008.1181102 263.7795276 4279.5275591 -7008.1181102 47.2440945 4279.5275591 -7048.6496063 47.2440945 4420.5629921 -7048.6496063 263.7795276 4420.5629921 -7007.3070866 263.7795276 4274.6968504 -7007.3070866 47.2440945 4274.6968504 -7048.9330709 47.2440945 4425.4488189 -7048.9330709 263.7795276 4425.4488189 -7005.7086614 47.2440945 4270.0708661 -7005.7086614 263.7795276 4270.0708661 -7048.4015748 263.7795276 4430.3188976 -7048.4015748 47.2440945 4430.3188976 -7003.3700787 263.7795276 4265.7716535 -7003.3700787 47.2440945 4265.7716535 -7047.0748031 47.2440945 4435.0314961 -7047.0748031 263.7795276 4435.0314961 -7000.3503937 47.2440945 4261.9173228 -7000.3503937 263.7795276 4261.9173228 -7044.9842520 47.2440945 4439.4606299 -7044.9842520 263.7795276 4439.4606299 -6996.7362205 47.2440945 4258.6141732 -6996.7362205 263.7795276 4258.6141732 -6986.5944882 263.7795276 4540.5984252 -6986.5944882 47.2440945 4540.5984252 -6992.6299213 47.2440945 4255.9527559 -6992.6299213 263.7795276 4255.9527559 -6945.6929134 263.7795276 4611.4370079 -6945.6929134 47.2440945 4611.4370079 -6988.1377953 47.2440945 4254.0078740 -6988.1377953 263.7795276 4254.0078740 -6942.9645669 47.2440945 4615.3858268 -6942.9645669 263.7795276 4615.3858268 -6983.3818898 47.2440945 4252.8346457 -6983.3818898 263.7795276 4252.8346457 -6939.6338583 263.7795276 4618.8385827 -6939.6338583 47.2440945 4618.8385827 -6978.5039370 47.2440945 4252.4606299 -6978.5039370 263.7795276 4252.4606299 -6935.7874016 263.7795276 4621.7047244 -6935.7874016 47.2440945 4621.7047244 -6800.9803150 47.2440945 4253.6023622 -6800.9803150 263.7795276 4253.6023622 -6931.5275591 263.7795276 4623.9094488 -6931.5275591 47.2440945 4623.9094488 -6796.2125984 47.2440945 4254.0196850 -6796.2125984 263.7795276 4254.0196850 -6926.9645669 263.7795276 4625.3976378 -6926.9645669 47.2440945 4625.3976378 -6791.5708661 47.2440945 4255.2047244 -6791.5708661 263.7795276 4255.2047244 -6922.2244094 263.7795276 4626.1259843 -6922.2244094 47.2440945 4626.1259843 -6787.1850394 47.2440945 4257.1220472 -6787.1850394 263.7795276 4257.1220472 -6917.4251969 263.7795276 4626.0787402 -6917.4251969 47.2440945 4626.0787402 -6783.1653543 47.2440945 4259.7244094 -6783.1653543 263.7795276 4259.7244094 -6912.7007874 263.7795276 4625.2559055 -6912.7007874 47.2440945 4625.2559055 -6779.6181102 47.2440945 4262.9448819 -6779.6181102 263.7795276 4262.9448819 -6908.1692913 263.7795276 4623.6771654 -6908.1692913 47.2440945 4623.6771654 -6776.6417323 263.7795276 4266.6929134 -6776.6417323 47.2440945 4266.6929134 -6903.9566929 263.7795276 4621.3818898 -6903.9566929 47.2440945 4621.3818898 -6774.3070866 47.2440945 4270.8740157 -6774.3070866 263.7795276 4270.8740157 -6900.1692913 263.7795276 4618.4409449 -6900.1692913 47.2440945 4618.4409449 -6772.6771654 263.7795276 4275.3779528 -6772.6771654 47.2440945 4275.3779528 -6896.9055118 47.2440945 4614.9212598 -6896.9055118 263.7795276 4614.9212598 -6771.7992126 263.7795276 4280.0826772 -6771.7992126 47.2440945 4280.0826772 -6847.0748031 47.2440945 4540.5354331 -6847.0748031 263.7795276 4540.5354331 -6771.6968504 47.2440945 4284.8700787 -6771.6968504 263.7795276 4284.8700787 -6809.0629921 47.2440945 4459.4685039 -6809.0629921 263.7795276 4459.4685039 -6783.7440945 263.7795276 4373.5905512 -6783.7440945 47.2440945 4373.5905512 -6801.4685039 263.7795276 4433.7165354 -6801.4685039 47.2440945 4433.7165354 - - - - - - - - - - 0.9418237 -0.0000000 0.3361072 0.9215381 -0.0000000 0.3882880 0.9215381 -0.0000000 0.3882880 0.9418237 -0.0000000 0.3361072 0.9773800 0.0000006 0.2114906 0.9773800 0.0000006 0.2114906 0.9534181 -0.0000000 0.3016520 0.9534181 -0.0000000 0.3016520 0.9876527 0.0000006 0.1566594 0.9876527 0.0000006 0.1566594 0.9901535 -0.0000000 0.1399861 0.9901535 -0.0000000 0.1399861 0.9690327 0.0000000 0.2469324 0.9690327 0.0000000 0.2469324 0.9996780 0.0000000 -0.0253733 0.9996780 0.0000000 -0.0253733 0.9149388 0.0000000 0.4035925 0.9149388 0.0000000 0.4035925 0.9817067 0.0000000 -0.1903996 0.9817067 0.0000000 -0.1903996 0.8357055 0.0000000 0.5491779 0.8357055 0.0000000 0.5491779 0.9366991 -0.0000000 -0.3501354 0.9366991 -0.0000000 -0.3501354 0.7334246 -0.0000000 0.6797708 0.7334246 -0.0000000 0.6797708 0.8859350 -0.0000000 -0.4638094 0.8859350 -0.0000000 -0.4638094 0.6113478 -0.0000000 0.7913620 0.6113478 -0.0000000 0.7913620 0.8660218 0.0000001 -0.5000063 0.8660218 0.0000001 -0.5000063 0.4722344 0.0000000 0.8814730 0.4722344 0.0000000 0.8814730 0.8450594 0.0000001 -0.5346725 0.8450594 0.0000001 -0.5346725 0.3195210 -0.0000000 0.9475792 0.3195210 -0.0000000 0.9475792 0.7737799 -0.0000000 -0.6334545 0.7737799 -0.0000000 -0.6334545 0.1585209 -0.0000000 0.9873556 0.1585209 -0.0000000 0.9873556 0.6608008 -0.0000000 -0.7505613 0.6608008 -0.0000000 -0.7505613 0.0350395 0.0000003 0.9993859 0.0350395 0.0000003 0.9993859 0.5303298 -0.0000000 -0.8477914 0.5303298 -0.0000000 -0.8477914 -0.0468528 0.0000003 0.9989018 -0.0468528 0.0000003 0.9989018 0.3861288 -0.0000000 -0.9224449 0.3861288 -0.0000000 -0.9224449 -0.1678369 -0.0000000 0.9858148 -0.1678369 -0.0000000 0.9858148 0.2317379 0.0000000 -0.9727783 0.2317379 0.0000000 -0.9727783 -0.3250312 -0.0000000 0.9457033 -0.3250312 -0.0000000 0.9457033 0.0712487 0.0000000 -0.9974586 0.0712487 0.0000000 -0.9974586 -0.4735686 0.0000000 0.8807569 -0.4735686 0.0000000 0.8807569 -0.0910143 0.0000000 -0.9958496 -0.0910143 0.0000000 -0.9958496 -0.6098332 -0.0000000 0.7925298 -0.6098332 -0.0000000 0.7925298 -0.2511224 -0.0000000 -0.9679554 -0.2511224 -0.0000000 -0.9679554 -0.7300548 -0.0000000 0.6833886 -0.7300548 -0.0000000 0.6833886 -0.4050790 0.0000000 -0.9142817 -0.4050790 0.0000000 -0.9142817 -0.8308298 0.0000000 0.5565265 -0.8308298 0.0000000 0.5565265 -0.5476639 0.0000000 -0.8366984 -0.5476639 0.0000000 -0.8366984 -0.9096979 0.0000000 0.4152706 -0.9096979 0.0000000 0.4152706 -0.6755262 0.0000000 -0.7373360 -0.6755262 0.0000000 -0.7373360 -0.9648676 0.0000000 0.2627367 -0.9648676 0.0000000 0.2627367 -0.7844662 0.0000007 -0.6201716 -0.7844662 0.0000007 -0.6201716 -0.9947070 0.0000000 0.1027519 -0.9947070 0.0000000 0.1027519 -0.8706162 0.0000012 -0.4919628 -0.8706162 0.0000012 -0.4919628 -0.9983877 0.0000000 -0.0567620 -0.9983877 0.0000000 -0.0567620 -0.9349718 0.0000005 -0.3547222 -0.9349718 0.0000005 -0.3547222 -0.9778605 0.0000000 -0.2092576 -0.9778605 0.0000000 -0.2092576 -0.9591755 0.0000000 -0.2828114 -0.9591755 0.0000000 -0.2828114 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 0 5 0 4 3 1 6 2 6 1 7 8 5 9 5 8 4 7 10 6 10 7 11 12 9 13 9 12 8 11 14 10 14 11 15 16 12 13 12 16 17 14 18 19 18 14 15 20 16 21 16 20 17 18 22 19 22 18 23 24 20 21 20 24 25 23 26 22 26 23 27 28 25 24 25 28 29 26 30 31 30 26 27 32 29 28 29 32 33 31 34 35 34 31 30 36 33 32 33 36 37 34 38 35 38 34 39 40 37 36 37 40 41 38 42 43 42 38 39 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 47 46 47 50 51 52 49 48 49 52 53 54 51 50 51 54 55 56 53 52 53 56 57 58 55 54 55 58 59 60 57 56 57 60 61 62 59 58 59 62 63 64 61 60 61 64 65 66 63 62 63 66 67 68 65 64 65 68 69 70 67 66 67 70 71 72 68 73 68 72 69 74 71 70 71 74 75 76 72 73 72 76 77 78 75 74 75 78 79 80 76 81 76 80 77 78 82 79 82 78 83 84 81 85 81 84 80 83 86 82 86 83 87 88 84 85 84 88 89 87 90 86 90 87 91 92 88 93 88 92 89 90 94 95 94 90 91 94 93 95 93 94 92

-
-
-
- - - - -7261.0787402 47.2440945 4543.6338583 -7256.5826772 263.7795276 4553.2755906 -7256.5826772 47.2440945 4553.2755906 -7261.0787402 263.7795276 4543.6338583 -7263.8307087 263.7795276 4533.3622047 -7263.8307087 47.2440945 4533.3622047 -7227.0551181 263.7795276 4604.4173228 -7227.0551181 47.2440945 4604.4173228 -7264.7598425 263.7795276 4522.7637795 -7264.7598425 47.2440945 4522.7637795 -7220.9527559 47.2440945 4613.1338583 -7220.9527559 263.7795276 4613.1338583 -7263.8307087 47.2440945 4512.1653543 -7263.8307087 263.7795276 4512.1653543 -7213.4330709 263.7795276 4620.6535433 -7213.4330709 47.2440945 4620.6535433 -7261.0787402 263.7795276 4501.8937008 -7261.0787402 47.2440945 4501.8937008 -7204.7204724 263.7795276 4626.7559055 -7204.7204724 47.2440945 4626.7559055 -7256.5826772 263.7795276 4492.2519685 -7256.5826772 47.2440945 4492.2519685 -7195.0787402 263.7795276 4631.2519685 -7195.0787402 47.2440945 4631.2519685 -7250.4803150 263.7795276 4483.5393701 -7250.4803150 47.2440945 4483.5393701 -7184.8031496 263.7795276 4634.0039370 -7184.8031496 47.2440945 4634.0039370 -7242.9606299 47.2440945 4476.0157480 -7242.9606299 263.7795276 4476.0157480 -7174.2086614 263.7795276 4634.9291339 -7174.2086614 47.2440945 4634.9291339 -7234.2480315 47.2440945 4469.9173228 -7234.2480315 263.7795276 4469.9173228 -7163.6102362 263.7795276 4634.0039370 -7163.6102362 47.2440945 4634.0039370 -7224.6062992 47.2440945 4465.4212598 -7224.6062992 263.7795276 4465.4212598 -7153.3346457 263.7795276 4631.2519685 -7153.3346457 47.2440945 4631.2519685 -7214.3307087 47.2440945 4462.6692913 -7214.3307087 263.7795276 4462.6692913 -7143.6968504 263.7795276 4626.7559055 -7143.6968504 47.2440945 4626.7559055 -7203.7362205 47.2440945 4461.7401575 -7203.7362205 263.7795276 4461.7401575 -7134.9842520 263.7795276 4620.6535433 -7134.9842520 47.2440945 4620.6535433 -7193.1377953 47.2440945 4462.6692913 -7193.1377953 263.7795276 4462.6692913 -7127.4606299 263.7795276 4613.1338583 -7127.4606299 47.2440945 4613.1338583 -7182.8622047 47.2440945 4465.4212598 -7182.8622047 263.7795276 4465.4212598 -7121.3582677 263.7795276 4604.4173228 -7121.3582677 47.2440945 4604.4173228 -7173.2244094 47.2440945 4469.9173228 -7173.2244094 263.7795276 4469.9173228 -7116.8661417 47.2440945 4594.7795276 -7116.8661417 263.7795276 4594.7795276 -7164.5118110 47.2440945 4476.0157480 -7164.5118110 263.7795276 4476.0157480 -7114.1102362 47.2440945 4584.5039370 -7114.1102362 263.7795276 4584.5039370 -7156.9881890 47.2440945 4483.5393701 -7156.9881890 263.7795276 4483.5393701 -7113.1850394 47.2440945 4573.9055118 -7113.1850394 263.7795276 4573.9055118 -7150.8858268 263.7795276 4492.2519685 -7150.8858268 47.2440945 4492.2519685 -7114.1102362 47.2440945 4563.3110236 -7114.1102362 263.7795276 4563.3110236 -7121.3582677 263.7795276 4543.3937008 -7121.3582677 47.2440945 4543.3937008 -7116.8661417 47.2440945 4553.0354331 -7116.8661417 263.7795276 4553.0354331 - - - - - - - - - - 0.9396968 0.0000000 -0.3420088 0.8870069 0.0000000 -0.4617561 0.8870069 0.0000000 -0.4617561 0.9396968 0.0000000 -0.3420088 0.9847948 0.0000000 -0.1737214 0.9847948 0.0000000 -0.1737214 0.8434092 0.0000000 -0.5372718 0.8434092 0.0000000 -0.5372718 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.7660697 0.0000000 -0.6427575 0.7660697 0.0000000 -0.6427575 0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 0.1737214 0.6428388 0.0000000 -0.7660015 0.6428388 0.0000000 -0.7660015 0.9396968 -0.0000000 0.3420088 0.9396968 -0.0000000 0.3420088 0.5000597 0.0000000 -0.8659909 0.5000597 0.0000000 -0.8659909 0.8659909 -0.0000000 0.5000597 0.8659909 -0.0000000 0.5000597 0.3419638 0.0000000 -0.9397131 0.3419638 0.0000000 -0.9397131 0.7660856 -0.0000000 0.6427385 0.7660856 -0.0000000 0.6427385 0.1735086 0.0000000 -0.9848324 0.1735086 0.0000000 -0.9848324 0.6428229 -0.0000000 0.7660148 0.6428229 -0.0000000 0.7660148 0.0000161 -0.0000000 -1.0000000 0.0000161 -0.0000000 -1.0000000 0.4999284 -0.0000000 0.8660667 0.4999284 -0.0000000 0.8660667 -0.1734927 -0.0000000 -0.9848352 -0.1734927 -0.0000000 -0.9848352 0.3419638 -0.0000000 0.9397131 0.3419638 -0.0000000 0.9397131 -0.3420373 0.0000000 -0.9396864 -0.3420373 0.0000000 -0.9396864 0.1736902 -0.0000000 0.9848003 0.1736902 -0.0000000 0.9848003 -0.5001274 0.0000000 -0.8659518 -0.5001274 0.0000000 -0.8659518 0.0000162 -0.0000000 1.0000000 0.0000162 -0.0000000 1.0000000 -0.6427385 -0.0000000 -0.7660856 -0.6427385 -0.0000000 -0.7660856 -0.1736743 0.0000000 0.9848032 -0.1736743 0.0000000 0.9848032 -0.7659856 -0.0000000 -0.6428577 -0.7659856 -0.0000000 -0.6428577 -0.3420373 -0.0000000 0.9396864 -0.3420373 -0.0000000 0.9396864 -0.8660888 0.0000000 -0.4998902 -0.8660888 0.0000000 -0.4998902 -0.4999961 -0.0000000 0.8660276 -0.4999961 -0.0000000 0.8660276 -0.9396826 -0.0000000 -0.3420476 -0.9396826 -0.0000000 -0.3420476 -0.6427226 -0.0000000 0.7660989 -0.6427226 -0.0000000 0.7660989 -0.9848041 -0.0000000 -0.1736687 -0.9848041 -0.0000000 -0.1736687 -0.7660015 0.0000000 0.6428388 -0.7660015 0.0000000 0.6428388 -1.0000000 -0.0000000 0.0000161 -1.0000000 -0.0000000 0.0000161 -0.8433521 0.0000000 0.5373613 -0.8433521 0.0000000 0.5373613 -0.9848013 -0.0000000 0.1736846 -0.9848013 -0.0000000 0.1736846 -0.8870844 -0.0000000 0.4616073 -0.8870844 -0.0000000 0.4616073 -0.9397094 -0.0000000 0.3419741 -0.9397094 -0.0000000 0.3419741 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 0 5 0 4 3 2 6 7 6 2 1 8 5 9 5 8 4 6 10 7 10 6 11 12 8 9 8 12 13 14 10 11 10 14 15 16 12 17 12 16 13 18 15 14 15 18 19 20 17 21 17 20 16 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 24 25 24 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 47 46 47 50 51 52 49 48 49 52 53 51 54 55 54 51 50 56 53 52 53 56 57 54 58 55 58 54 59 60 57 56 57 60 61 59 62 58 62 59 63 64 61 60 61 64 65 63 66 62 66 63 67 68 64 69 64 68 65 67 70 66 70 67 71 72 69 73 69 72 68 71 74 70 74 71 75 74 72 73 72 74 75

-
-
-
- - - - -7484.7244094 47.2440945 4581.5708661 -7522.4724409 263.7795276 4565.5078740 -7522.4724409 47.2440945 4565.5078740 -7484.7244094 263.7795276 4581.5708661 -7526.4527559 263.7795276 4563.8740157 -7526.4527559 47.2440945 4563.8740157 -7476.7125984 47.2440945 4584.9763780 -7476.7125984 263.7795276 4584.9763780 -7527.0039370 263.7795276 4563.6496063 -7527.0039370 47.2440945 4563.6496063 -7428.6811024 47.2440945 4597.8503937 -7428.6811024 263.7795276 4597.8503937 -7531.7795276 263.7795276 4562.5669291 -7531.7795276 47.2440945 4562.5669291 -7420.0393701 47.2440945 4598.9015748 -7420.0393701 263.7795276 4598.9015748 -7536.6653543 263.7795276 4562.2834646 -7536.6653543 47.2440945 4562.2834646 -7379.3188976 47.2440945 4603.8661417 -7379.3188976 263.7795276 4603.8661417 -7541.5314961 263.7795276 4562.8149606 -7541.5314961 47.2440945 4562.8149606 -7374.4645669 47.2440945 4604.5236220 -7374.4645669 263.7795276 4604.5236220 -7546.2480315 263.7795276 4564.1417323 -7546.2480315 47.2440945 4564.1417323 -7369.7874016 47.2440945 4605.9685039 -7369.7874016 263.7795276 4605.9685039 -7550.6771654 263.7795276 4566.2322835 -7550.6771654 47.2440945 4566.2322835 -7365.4133858 47.2440945 4608.1692913 -7365.4133858 263.7795276 4608.1692913 -7710.7913386 263.7795276 4658.6732283 -7710.7913386 47.2440945 4658.6732283 -7361.4645669 47.2440945 4611.0629921 -7361.4645669 263.7795276 4611.0629921 -7715.0078740 263.7795276 4661.6259843 -7715.0078740 47.2440945 4661.6259843 -7358.0472441 47.2440945 4614.5708661 -7358.0472441 263.7795276 4614.5708661 -7718.6496063 263.7795276 4665.2677165 -7718.6496063 47.2440945 4665.2677165 -7355.2559055 263.7795276 4618.5944882 -7355.2559055 47.2440945 4618.5944882 -7721.6023622 47.2440945 4669.4842520 -7721.6023622 263.7795276 4669.4842520 -7271.4685039 263.7795276 4763.7125984 -7271.4685039 47.2440945 4763.7125984 -7723.7755906 47.2440945 4674.1456693 -7723.7755906 263.7795276 4674.1456693 -7262.8110236 47.2440945 4778.7125984 -7262.8110236 263.7795276 4778.7125984 -7724.9330709 47.2440945 4678.4685039 -7724.9330709 263.7795276 4678.4685039 -7260.6338583 263.7795276 4783.3740157 -7260.6338583 47.2440945 4783.3740157 -7725.1102362 263.7795276 4679.1181102 -7725.1102362 47.2440945 4679.1181102 -7259.3031496 47.2440945 4788.3464567 -7259.3031496 263.7795276 4788.3464567 -7725.5551181 263.7795276 4684.2480315 -7725.5551181 47.2440945 4684.2480315 -7258.8543307 263.7795276 4793.4763780 -7258.8543307 47.2440945 4793.4763780 -7725.1102362 47.2440945 4689.3740157 -7725.1102362 263.7795276 4689.3740157 -7259.3031496 263.7795276 4798.6023622 -7259.3031496 47.2440945 4798.6023622 -7723.7755906 263.7795276 4694.3464567 -7723.7755906 47.2440945 4694.3464567 -7260.6338583 263.7795276 4803.5748031 -7260.6338583 47.2440945 4803.5748031 -7721.6023622 47.2440945 4699.0118110 -7721.6023622 263.7795276 4699.0118110 -7262.8110236 263.7795276 4808.2401575 -7262.8110236 47.2440945 4808.2401575 -7720.9133858 47.2440945 4700.2047244 -7720.9133858 263.7795276 4700.2047244 -7265.7637795 47.2440945 4812.4566929 -7265.7637795 263.7795276 4812.4566929 -7718.2874016 47.2440945 4704.0236220 -7718.2874016 263.7795276 4704.0236220 -7269.4015748 47.2440945 4816.0944882 -7269.4015748 263.7795276 4816.0944882 -7715.0984252 47.2440945 4707.3818898 -7715.0984252 263.7795276 4707.3818898 -7273.6181102 47.2440945 4819.0472441 -7273.6181102 263.7795276 4819.0472441 -7711.4212598 263.7795276 4710.2047244 -7711.4212598 47.2440945 4710.2047244 -7274.8110236 47.2440945 4819.7362205 -7274.8110236 263.7795276 4819.7362205 -7709.4133858 263.7795276 4711.2952756 -7709.4133858 47.2440945 4711.2952756 -7707.3503937 263.7795276 4712.4133858 -7707.3503937 47.2440945 4712.4133858 -7278.9921260 47.2440945 4821.7283465 -7278.9921260 263.7795276 4821.7283465 -7702.9842520 263.7795276 4713.9606299 -7702.9842520 47.2440945 4713.9606299 -7283.4370079 47.2440945 4823.0472441 -7283.4370079 263.7795276 4823.0472441 -7645.4251969 263.7795276 4729.3818898 -7645.4251969 47.2440945 4729.3818898 -7288.0314961 47.2440945 4823.6496063 -7288.0314961 263.7795276 4823.6496063 -7418.7716535 263.7795276 4790.1141732 -7418.7716535 47.2440945 4790.1141732 -7349.3976378 263.7795276 4808.7047244 -7349.3976378 47.2440945 4808.7047244 -7292.6614173 47.2440945 4823.5314961 -7292.6614173 263.7795276 4823.5314961 -7297.2165354 263.7795276 4822.6850394 -7297.2165354 47.2440945 4822.6850394 - - - - - - - - - - -0.3913719 0.0000000 0.9202326 -0.3856540 0.0000000 0.9226435 -0.3856540 0.0000000 0.9226435 -0.3913719 0.0000000 0.9202326 -0.3784123 0.0000000 0.9256371 -0.3784123 0.0000000 0.9256371 -0.3258399 0.0000000 0.9454249 -0.3258399 0.0000000 0.9454249 -0.3000980 -0.0000000 0.9539084 -0.3000980 -0.0000000 0.9539084 -0.1902938 0.0000000 0.9817272 -0.1902938 0.0000000 0.9817272 -0.1399861 -0.0000000 0.9901535 -0.1399861 -0.0000000 0.9901535 -0.1208861 0.0000000 0.9926664 -0.1208861 0.0000000 0.9926664 0.0254169 0.0000000 0.9996769 0.0254169 0.0000000 0.9996769 -0.1276221 -0.0000000 0.9918229 -0.1276221 -0.0000000 0.9918229 0.1903355 -0.0000000 0.9817191 0.1903355 -0.0000000 0.9817191 -0.2154207 -0.0000000 0.9765213 -0.2154207 -0.0000000 0.9765213 0.3500334 -0.0000000 0.9367372 0.3500334 -0.0000000 0.9367372 -0.3736060 -0.0000000 0.9275875 -0.3736060 -0.0000000 0.9275875 0.4638146 -0.0000002 0.8859323 0.4638146 -0.0000002 0.8859323 -0.5220765 -0.0000000 0.8528986 -0.5220765 -0.0000000 0.8528986 0.5373183 -0.0000002 0.8433795 0.5373183 -0.0000002 0.8433795 -0.6559481 -0.0000000 0.7548060 -0.6559481 -0.0000000 0.7548060 0.6428063 0.0000000 0.7660288 0.6428063 0.0000000 0.7660288 -0.7716170 -0.0000000 0.6360875 -0.7716170 -0.0000000 0.6360875 0.7660288 0.0000000 0.6428063 0.7660288 0.0000000 0.6428063 -0.8445547 0.0000004 0.5354694 -0.8445547 0.0000004 0.5354694 0.8660320 0.0000000 0.4999886 0.8660320 0.0000000 0.4999886 -0.8660558 0.0000004 0.4999474 -0.8660558 0.0000004 0.4999474 0.9397357 0.0000000 0.3419017 0.9397357 0.0000000 0.3419017 -0.8869000 0.0000000 0.4619614 -0.8869000 0.0000000 0.4619614 0.9653703 0.0000000 0.2608835 0.9653703 0.0000000 0.2608835 -0.9396399 -0.0000000 0.3421650 -0.9396399 -0.0000000 0.3421650 0.9844855 0.0000000 0.1754662 0.9844855 0.0000000 0.1754662 -0.9848345 -0.0000000 0.1734963 -0.9848345 -0.0000000 0.1734963 1.0000000 0.0000000 -0.0000331 1.0000000 0.0000000 -0.0000331 -1.0000000 0.0000000 -0.0000333 -1.0000000 0.0000000 -0.0000333 0.9848308 0.0000000 -0.1735175 0.9848308 0.0000000 -0.1735175 -0.9848287 0.0000000 -0.1735291 -0.9848287 0.0000000 -0.1735291 0.9396875 0.0000000 -0.3420343 0.9396875 0.0000000 -0.3420343 -0.9396952 -0.0000000 -0.3420129 -0.9396952 -0.0000000 -0.3420129 0.8870669 -0.0000000 -0.4616410 0.8870669 -0.0000000 -0.4616410 -0.8659395 -0.0000000 -0.5001488 -0.8659395 -0.0000000 -0.5001488 0.8456233 0.0000000 -0.5337802 0.8456233 0.0000000 -0.5337802 -0.7660288 0.0000000 -0.6428063 -0.7660288 0.0000000 -0.6428063 0.7769681 0.0000000 -0.6295399 0.7769681 0.0000000 -0.6295399 -0.6428063 -0.0000000 -0.7660288 -0.6428063 -0.0000000 -0.7660288 0.6690877 0.0000000 -0.7431835 0.6690877 0.0000000 -0.7431835 -0.5373858 -0.0000000 -0.8433366 -0.5373858 -0.0000000 -0.8433366 0.5445973 -0.0000000 -0.8386977 0.5445973 -0.0000000 -0.8386977 -0.4654973 0.0000000 -0.8850493 -0.4654973 0.0000000 -0.8850493 0.4768837 0.0000000 -0.8789664 0.4768837 0.0000000 -0.8789664 0.4066971 0.0000000 -0.9135631 0.4066971 0.0000000 -0.9135631 -0.3583902 0.0000000 -0.9335719 -0.3583902 0.0000000 -0.9335719 0.2966369 0.0000000 -0.9549903 0.2966369 0.0000000 -0.9549903 -0.2078776 0.0000000 -0.9781548 -0.2078776 0.0000000 -0.9781548 0.2588094 -0.0000000 -0.9659284 0.2588094 -0.0000000 -0.9659284 -0.0524050 -0.0000006 -0.9986259 -0.0524050 -0.0000006 -0.9986259 0.2588254 -0.0000000 -0.9659241 0.2588254 -0.0000000 -0.9659241 0.2588087 -0.0000000 -0.9659286 0.2588087 -0.0000000 -0.9659286 0.1044261 -0.0000006 -0.9945327 0.1044261 -0.0000006 -0.9945327 0.2209130 0.0000000 -0.9752935 0.2209130 0.0000000 -0.9752935 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 17 20 21 20 17 16 22 19 18 19 22 23 21 24 25 24 21 20 26 23 22 23 26 27 25 28 29 28 25 24 30 27 26 27 30 31 29 32 33 32 29 28 34 31 30 31 34 35 33 36 37 36 33 32 38 35 34 35 38 39 37 40 41 40 37 36 42 38 43 38 42 39 40 44 41 44 40 45 46 43 47 43 46 42 45 48 44 48 45 49 50 46 47 46 50 51 49 52 48 52 49 53 54 50 55 50 54 51 52 56 57 56 52 53 58 54 55 54 58 59 57 60 61 60 57 56 62 58 63 58 62 59 60 64 61 64 60 65 66 63 67 63 66 62 64 68 69 68 64 65 70 67 71 67 70 66 68 72 69 72 68 73 74 71 75 71 74 70 73 76 72 76 73 77 78 74 75 74 78 79 77 80 76 80 77 81 79 82 83 82 79 78 81 84 80 84 81 85 83 86 87 86 83 82 88 84 85 84 88 89 87 90 91 90 87 86 92 89 88 89 92 93 93 92 94 93 94 95 91 96 97 96 91 90 98 95 94 95 98 99 97 100 101 100 97 96 102 99 98 99 102 103 101 104 105 104 101 100 106 103 102 103 106 107 107 106 108 107 108 109 105 110 111 110 105 104 112 109 108 109 112 113 111 113 112 113 111 110

-
-
-
- - - - -2936.3311024 263.7795276 2203.2968504 -2931.4106299 47.2440945 2196.2700787 -2936.3311024 47.2440945 2203.2968504 -2931.4106299 263.7795276 2196.2700787 -2942.3968504 47.2440945 2209.3625984 -2942.3968504 263.7795276 2209.3625984 -2927.7858268 263.7795276 2188.4952756 -2927.7858268 47.2440945 2188.4952756 -2949.4236220 47.2440945 2214.2830709 -2949.4236220 263.7795276 2214.2830709 -2925.5649606 47.2440945 2180.2090551 -2925.5649606 263.7795276 2180.2090551 -2957.1984252 47.2440945 2217.9082677 -2957.1984252 263.7795276 2217.9082677 -2924.8173228 263.7795276 2171.6633858 -2924.8173228 47.2440945 2171.6633858 -2965.4846457 47.2440945 2220.1287402 -2965.4846457 263.7795276 2220.1287402 -2925.5653543 263.7795276 2163.1181102 -2925.5653543 47.2440945 2163.1181102 -2974.0299213 47.2440945 2220.8759843 -2974.0299213 263.7795276 2220.8759843 -2927.7858268 47.2440945 2154.8318898 -2927.7858268 263.7795276 2154.8318898 -2982.5759843 47.2440945 2220.1283465 -2982.5759843 263.7795276 2220.1283465 -2931.4106299 263.7795276 2147.0574803 -2931.4106299 47.2440945 2147.0574803 -2990.8618110 47.2440945 2217.9082677 -2990.8618110 263.7795276 2217.9082677 -2936.3311024 47.2440945 2140.0303150 -2936.3311024 263.7795276 2140.0303150 -2998.6362205 47.2440945 2214.2830709 -2998.6362205 263.7795276 2214.2830709 -2942.3968504 263.7795276 2133.9645669 -2942.3968504 47.2440945 2133.9645669 -3005.6629921 47.2440945 2209.3625984 -3005.6629921 263.7795276 2209.3625984 -2949.4236220 263.7795276 2129.0440945 -2949.4236220 47.2440945 2129.0440945 -3011.7291339 47.2440945 2203.2968504 -3011.7291339 263.7795276 2203.2968504 -2957.1984252 263.7795276 2125.4188976 -2957.1984252 47.2440945 2125.4188976 -3016.6492126 263.7795276 2196.2696850 -3016.6492126 47.2440945 2196.2696850 -2965.4846457 263.7795276 2123.1984252 -2965.4846457 47.2440945 2123.1984252 -3020.2748031 263.7795276 2188.4952756 -3020.2748031 47.2440945 2188.4952756 -2974.0299213 263.7795276 2122.4511811 -2974.0299213 47.2440945 2122.4511811 -3022.4948819 47.2440945 2180.2090551 -3022.4948819 263.7795276 2180.2090551 -2982.5759843 263.7795276 2123.1984252 -2982.5759843 47.2440945 2123.1984252 -3023.2425197 263.7795276 2171.6637795 -3023.2425197 47.2440945 2171.6637795 -2990.8618110 263.7795276 2125.4188976 -2990.8618110 47.2440945 2125.4188976 -3022.4948819 47.2440945 2163.1177165 -3022.4948819 263.7795276 2163.1177165 -2998.6362205 263.7795276 2129.0440945 -2998.6362205 47.2440945 2129.0440945 -3020.2748031 263.7795276 2154.8318898 -3020.2748031 47.2440945 2154.8318898 -3005.6633858 263.7795276 2133.9645669 -3005.6633858 47.2440945 2133.9645669 -3016.6492126 47.2440945 2147.0570866 -3016.6492126 263.7795276 2147.0570866 -3011.7291339 47.2440945 2140.0303150 -3011.7291339 263.7795276 2140.0303150 - - - - - - - - - - -0.7660363 0.0000000 -0.6427974 -0.8660361 0.0000000 -0.4999814 -0.7660363 0.0000000 -0.6427974 -0.8660361 0.0000000 -0.4999814 -0.6427976 0.0000000 -0.7660360 -0.6427976 0.0000000 -0.7660360 -0.9396931 0.0000000 -0.3420187 -0.9396931 0.0000000 -0.3420187 -0.4999997 0.0000000 -0.8660256 -0.4999997 0.0000000 -0.8660256 -0.9848022 -0.0000000 -0.1736797 -0.9848022 -0.0000000 -0.1736797 -0.3420174 0.0000000 -0.9396936 -0.3420174 0.0000000 -0.9396936 -1.0000000 0.0000000 0.0000249 -1.0000000 0.0000000 0.0000249 -0.1736382 0.0000001 -0.9848095 -0.1736382 0.0000001 -0.9848095 -0.9848017 0.0000000 0.1736823 -0.9848017 0.0000000 0.1736823 0.0000179 0.0000001 -1.0000000 0.0000179 0.0000001 -1.0000000 -0.9396974 0.0000000 0.3420070 -0.9396974 0.0000000 0.3420070 0.1736399 -0.0000000 -0.9848092 0.1736399 -0.0000000 -0.9848092 -0.8660377 0.0000000 0.4999787 -0.8660377 0.0000000 0.4999787 0.3420113 0.0000000 -0.9396958 0.3420113 0.0000000 -0.9396958 -0.7660445 0.0000000 0.6427875 -0.7660445 0.0000000 0.6427875 0.5000081 0.0000000 -0.8660207 0.5000081 0.0000000 -0.8660207 -0.6427976 0.0000000 0.7660360 -0.6427976 0.0000000 0.7660360 0.6427852 0.0000000 -0.7660465 0.6427852 0.0000000 -0.7660465 -0.4999997 0.0000000 0.8660256 -0.4999997 0.0000000 0.8660256 0.7660461 0.0000000 -0.6427856 0.7660461 0.0000000 -0.6427856 -0.3420174 0.0000000 0.9396936 -0.3420174 0.0000000 0.9396936 0.8660263 0.0000000 -0.4999985 0.8660263 0.0000000 -0.4999985 -0.1736373 0.0000000 0.9848097 -0.1736373 0.0000000 0.9848097 0.9396908 -0.0000000 -0.3420253 0.9396908 -0.0000000 -0.3420253 -0.0000040 0.0000000 1.0000000 -0.0000040 0.0000000 1.0000000 0.9848095 -0.0000000 -0.1736380 0.9848095 -0.0000000 -0.1736380 0.1736392 0.0000000 0.9848093 0.1736392 0.0000000 0.9848093 1.0000000 -0.0000000 -0.0000040 1.0000000 -0.0000000 -0.0000040 0.3420321 0.0000000 0.9396883 0.3420321 0.0000000 0.9396883 0.9848092 -0.0000000 0.1736399 0.9848092 -0.0000000 0.1736399 0.4999967 0.0000000 0.8660273 0.4999967 0.0000000 0.8660273 0.9396920 -0.0000000 0.3420217 0.9396920 -0.0000000 0.3420217 0.6427875 0.0000000 0.7660445 0.6427875 0.0000000 0.7660445 0.8660246 -0.0000000 0.5000015 0.8660246 -0.0000000 0.5000015 0.7660481 -0.0000000 0.6427832 0.7660481 -0.0000000 0.6427832 - - - - - - - - - - - - - - -

0 1 2 1 0 3 0 4 5 4 0 2 1 6 7 6 1 3 5 8 9 8 5 4 6 10 7 10 6 11 9 12 13 12 9 8 10 14 15 14 10 11 13 16 17 16 13 12 15 18 19 18 15 14 17 20 21 20 17 16 18 22 19 22 18 23 21 24 25 24 21 20 22 26 27 26 22 23 25 28 29 28 25 24 26 30 27 30 26 31 29 32 33 32 29 28 30 34 35 34 30 31 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 44 40 45 40 44 41 43 46 47 46 43 42 48 45 49 45 48 44 47 50 51 50 47 46 52 48 49 48 52 53 51 54 55 54 51 50 56 52 57 52 56 53 55 58 59 58 55 54 60 56 57 56 60 61 59 62 63 62 59 58 64 60 65 60 64 61 63 66 67 66 63 62 68 64 65 64 68 69 66 70 67 70 66 71 71 68 70 68 71 69

-
-
-
- - - - -2976.3015748 47.2440945 1683.1366142 -3395.9708661 263.7795276 1925.4326772 -3395.9708661 47.2440945 1925.4326772 -2976.3015748 263.7795276 1683.1366142 -3395.9708661 47.2440945 1925.4326772 -3399.9401575 263.7795276 1922.1562992 -3399.9401575 47.2440945 1922.1562992 -3395.9708661 263.7795276 1925.4326772 -2977.1318898 47.2440945 1678.3311024 -2976.3015748 263.7795276 1683.1366142 -2976.3015748 47.2440945 1683.1366142 -2977.1318898 263.7795276 1678.3311024 -3404.4188976 263.7795276 1919.6192913 -3404.4188976 47.2440945 1919.6192913 -2977.1594488 263.7795276 1673.4543307 -2977.1594488 47.2440945 1673.4543307 -3409.2696850 263.7795276 1917.8980315 -3409.2696850 47.2440945 1917.8980315 -2976.3838583 47.2440945 1668.6397638 -2976.3838583 263.7795276 1668.6397638 -3414.3456693 263.7795276 1917.0456693 -3414.3456693 47.2440945 1917.0456693 -2974.8267717 263.7795276 1664.0185039 -2974.8267717 47.2440945 1664.0185039 -3419.4917323 263.7795276 1917.0874016 -3419.4917323 47.2440945 1917.0874016 -2972.5295276 263.7795276 1659.7165354 -2972.5295276 47.2440945 1659.7165354 -3424.5535433 263.7795276 1918.0224409 -3424.5535433 47.2440945 1918.0224409 -2969.5559055 47.2440945 1655.8511811 -2969.5559055 263.7795276 1655.8511811 -3429.3755906 263.7795276 1919.8220472 -3429.3755906 47.2440945 1919.8220472 -2965.9870079 47.2440945 1652.5279528 -2965.9870079 263.7795276 1652.5279528 -3433.8122047 263.7795276 1922.4318898 -3433.8122047 47.2440945 1922.4318898 -2961.9192913 47.2440945 1649.8377953 -2961.9192913 263.7795276 1649.8377953 -3437.7279528 263.7795276 1925.7724409 -3437.7279528 47.2440945 1925.7724409 -2957.4641732 47.2440945 1647.8535433 -2957.4641732 263.7795276 1647.8535433 -3441.0039370 263.7795276 1929.7421260 -3441.0039370 47.2440945 1929.7421260 -2952.7437008 47.2440945 1646.6299213 -2952.7437008 263.7795276 1646.6299213 -3443.5413386 47.2440945 1934.2200787 -3443.5413386 263.7795276 1934.2200787 -2947.8858268 47.2440945 1646.1996063 -2947.8858268 263.7795276 1646.1996063 -3445.2622047 263.7795276 1939.0708661 -3445.2622047 47.2440945 1939.0708661 -2943.0236220 47.2440945 1646.5748031 -2943.0236220 263.7795276 1646.5748031 -3446.1145669 47.2440945 1944.1464567 -3446.1145669 263.7795276 1944.1464567 -2938.2897638 47.2440945 1647.7452756 -2938.2897638 263.7795276 1647.7452756 -3446.0728346 47.2440945 1949.2937008 -3446.0728346 263.7795276 1949.2937008 -2933.8125984 47.2440945 1649.6787402 -2933.8125984 263.7795276 1649.6787402 -3445.1377953 263.7795276 1954.3551181 -3445.1377953 47.2440945 1954.3551181 -2929.7149606 47.2440945 1652.3232283 -2929.7149606 263.7795276 1652.3232283 -3443.3377953 47.2440945 1959.1771654 -3443.3377953 263.7795276 1959.1771654 -2926.1086614 47.2440945 1655.6059055 -2926.1086614 263.7795276 1655.6059055 -3440.7283465 47.2440945 1963.6133858 -3440.7283465 263.7795276 1963.6133858 -2923.0917323 47.2440945 1659.4374016 -2923.0917323 263.7795276 1659.4374016 -3437.3877953 47.2440945 1967.5291339 -3437.3877953 263.7795276 1967.5291339 -2920.7460630 263.7795276 1663.7133858 -2920.7460630 47.2440945 1663.7133858 -3422.6240157 47.2440945 1993.1007874 -3422.6240157 263.7795276 1993.1007874 -2919.1362205 263.7795276 1668.3165354 -2919.1362205 47.2440945 1668.3165354 -3420.9031496 47.2440945 1997.9515748 -3420.9031496 263.7795276 1997.9515748 -2904.3724409 47.2440945 1693.8881890 -2904.3724409 263.7795276 1693.8881890 -3418.3661417 263.7795276 2002.4295276 -3418.3661417 47.2440945 2002.4295276 -2901.0330709 263.7795276 1697.8043307 -2901.0330709 47.2440945 1697.8043307 -3415.0905512 47.2440945 2006.3992126 -3415.0905512 263.7795276 2006.3992126 -2898.4224409 263.7795276 1702.2401575 -2898.4224409 47.2440945 1702.2401575 -3411.1740157 263.7795276 2009.7397638 -3411.1740157 47.2440945 2009.7397638 -2896.6232283 47.2440945 1707.0622047 -2896.6232283 263.7795276 1707.0622047 -3406.7381890 263.7795276 2012.3492126 -3406.7381890 47.2440945 2012.3492126 -2895.6885827 263.7795276 1712.1240157 -2895.6885827 47.2440945 1712.1240157 -3401.9157480 263.7795276 2014.1492126 -3401.9157480 47.2440945 2014.1492126 -2895.6468504 263.7795276 1717.2708661 -2895.6468504 47.2440945 1717.2708661 -3396.8543307 263.7795276 2015.0842520 -3396.8543307 47.2440945 2015.0842520 -2896.4988189 47.2440945 1722.3464567 -2896.4988189 263.7795276 1722.3464567 -3391.7074803 263.7795276 2015.1259843 -3391.7074803 47.2440945 2015.1259843 -2898.2196850 263.7795276 1727.1972441 -2898.2196850 47.2440945 1727.1972441 -3386.6314961 263.7795276 2014.2732283 -3386.6314961 47.2440945 2014.2732283 -2900.7570866 47.2440945 1731.6755906 -2900.7570866 263.7795276 1731.6755906 -3381.7807087 263.7795276 2012.5523622 -3381.7807087 47.2440945 2012.5523622 -2904.0334646 263.7795276 1735.6452756 -2904.0334646 47.2440945 1735.6452756 -3377.3031496 263.7795276 2010.0153543 -3377.3031496 47.2440945 2010.0153543 -2907.9488189 47.2440945 1738.9854331 -2907.9488189 263.7795276 1738.9854331 -3373.3334646 263.7795276 2006.7389764 -3373.3334646 47.2440945 2006.7389764 -2912.3854331 47.2440945 1741.5952756 -2912.3854331 263.7795276 1741.5952756 -3369.9925197 263.7795276 2002.8232283 -3369.9925197 47.2440945 2002.8232283 -2917.2074803 47.2440945 1743.3948819 -2917.2074803 263.7795276 1743.3948819 -3367.3826772 47.2440945 1998.3870079 -3367.3826772 263.7795276 1998.3870079 -2922.2688976 47.2440945 1744.3299213 -2922.2688976 263.7795276 1744.3299213 -3365.5830709 263.7795276 1993.5645669 -3365.5830709 47.2440945 1993.5645669 -2927.4157480 47.2440945 1744.3716535 -2927.4157480 263.7795276 1744.3716535 -3364.6484252 47.2440945 1988.5035433 -3364.6484252 263.7795276 1988.5035433 -2932.4917323 47.2440945 1743.5192913 -2932.4917323 263.7795276 1743.5192913 -3364.6070866 47.2440945 1983.3562992 -3364.6070866 263.7795276 1983.3562992 -2937.3421260 47.2440945 1741.7980315 -2937.3421260 263.7795276 1741.7980315 -3365.4590551 263.7795276 1978.2807087 -3365.4590551 47.2440945 1978.2807087 -2941.8204724 47.2440945 1739.2610236 -2941.8204724 263.7795276 1739.2610236 -2945.7897638 263.7795276 1735.9846457 -3365.4590551 47.2440945 1978.2807087 -3365.4590551 263.7795276 1978.2807087 -2945.7897638 47.2440945 1735.9846457 -2945.7897638 47.2440945 1735.9846457 -2945.7897638 263.7795276 1735.9846457 - - - - - - - - - - 0.4999999 -0.0000004 0.8660254 0.4999999 -0.0000004 0.8660254 0.4999999 -0.0000004 0.8660254 0.4999999 -0.0000004 0.8660254 -0.6365809 0.0000000 0.7712099 -0.5668878 0.0000000 0.8237950 -0.5668878 0.0000000 0.8237950 -0.6365809 0.0000000 0.7712099 0.9960977 -0.0000000 -0.0882578 0.9853990 -0.0000000 -0.1702611 0.9853990 -0.0000000 -0.1702611 0.9960977 -0.0000000 -0.0882578 -0.4152206 0.0000000 0.9097208 -0.4152206 0.0000000 0.9097208 0.9970343 -0.0000000 0.0769585 0.9970343 -0.0000000 0.0769585 -0.2509629 -0.0000000 0.9679967 -0.2509629 -0.0000000 0.9679967 0.9707751 0.0000000 0.2399910 0.9707751 0.0000000 0.2399910 -0.0790470 -0.0000000 0.9968709 -0.0790470 -0.0000000 0.9968709 0.9180217 0.0000000 0.3965300 0.9180217 0.0000000 0.3965300 0.0952427 0.0000000 0.9954541 0.0952427 0.0000000 0.9954541 0.8402200 0.0000000 0.5422456 0.8402200 0.0000000 0.5422456 0.2666640 0.0000000 0.9637895 0.2666640 0.0000000 0.9637895 0.7395573 -0.0000000 0.6730936 0.7395573 -0.0000000 0.6730936 0.4299752 -0.0000000 0.9028407 0.4299752 -0.0000000 0.9028407 0.6186618 0.0000000 0.7856574 0.6186618 0.0000000 0.7856574 0.5802335 -0.0000000 0.8144502 0.5802335 -0.0000000 0.8144502 0.4808814 0.0000000 0.8767857 0.4808814 0.0000000 0.8767857 0.7128623 0.0000000 0.7013041 0.7128623 0.0000000 0.7013041 0.3300178 -0.0000000 0.9439747 0.3300178 -0.0000000 0.9439747 0.8237853 0.0000000 0.5669019 0.8237853 0.0000000 0.5669019 0.1701599 -0.0000000 0.9854165 0.1701599 -0.0000000 0.9854165 0.9097062 0.0000000 0.4152524 0.9097062 0.0000000 0.4152524 0.0056684 -0.0000000 0.9999839 0.0056684 -0.0000000 0.9999839 0.9680042 0.0000000 0.2509341 0.9680042 0.0000000 0.2509341 -0.1590256 0.0000000 0.9872745 -0.1590256 0.0000000 0.9872745 0.9968703 0.0000000 0.0790542 0.9968703 0.0000000 0.0790542 -0.3193336 0.0000000 0.9476424 -0.3193336 0.0000000 0.9476424 0.9954535 0.0000000 -0.0952487 0.9954535 0.0000000 -0.0952487 -0.4709661 0.0000000 0.8821513 -0.4709661 0.0000000 0.8821513 0.9637781 0.0000000 -0.2667053 0.9637781 0.0000000 -0.2667053 -0.6097811 0.0000000 0.7925699 -0.6097811 0.0000000 0.7925699 0.9028311 0.0000000 -0.4299953 0.9028311 0.0000000 -0.4299953 -0.7319095 0.0000000 0.6814019 -0.7319095 0.0000000 0.6814019 0.8144581 0.0000000 -0.5802224 0.8144581 0.0000000 -0.5802224 -0.8340555 -0.0000000 0.5516805 -0.8340555 -0.0000000 0.5516805 0.8168043 0.0000000 -0.5769149 0.8168043 0.0000000 -0.5769149 -0.9134608 -0.0000000 0.4069268 -0.9134608 -0.0000000 0.4069268 0.9080240 0.0000000 -0.4189182 0.9080240 0.0000000 -0.4189182 -0.9089597 0.0000000 0.4168840 -0.9089597 0.0000000 0.4168840 0.9097201 0.0000000 -0.4152221 0.9097201 0.0000000 -0.4152221 -0.8168690 0.0000000 0.5768233 -0.8168690 0.0000000 0.5768233 0.8238209 0.0000000 -0.5668502 0.8238209 0.0000000 -0.5668502 -0.8144545 0.0000000 0.5802274 -0.8144545 0.0000000 0.5802274 0.7128481 0.0000000 -0.7013184 0.7128481 0.0000000 -0.7013184 -0.9028111 -0.0000000 0.4300374 -0.9028111 -0.0000000 0.4300374 0.5801978 0.0000000 -0.8144756 0.5801978 0.0000000 -0.8144756 -0.9638091 0.0000000 0.2665933 -0.9638091 0.0000000 0.2665933 0.4300008 0.0000000 -0.9028285 0.4300008 0.0000000 -0.9028285 -0.9954577 -0.0000000 0.0952046 -0.9954577 -0.0000000 0.0952046 0.2666924 0.0000000 -0.9637817 0.2666924 0.0000000 -0.9637817 -0.9968733 -0.0000000 -0.0790163 -0.9968733 -0.0000000 -0.0790163 0.0952490 0.0000000 -0.9954535 0.0952490 0.0000000 -0.9954535 -0.9680136 0.0000000 -0.2508976 -0.9680136 0.0000000 -0.2508976 -0.0790852 -0.0000000 -0.9968679 -0.0790852 -0.0000000 -0.9968679 -0.9097141 0.0000000 -0.4152352 -0.9097141 0.0000000 -0.4152352 -0.2509645 0.0000000 -0.9679963 -0.2509645 0.0000000 -0.9679963 -0.8237793 0.0000000 -0.5669107 -0.8237793 0.0000000 -0.5669107 -0.4152393 0.0000000 -0.9097122 -0.4152393 0.0000000 -0.9097122 -0.7128386 -0.0000000 -0.7013282 -0.7128386 -0.0000000 -0.7013282 -0.5669143 0.0000000 -0.8237768 -0.5669143 0.0000000 -0.8237768 -0.5802300 -0.0000000 -0.8144527 -0.5802300 -0.0000000 -0.8144527 -0.7013044 0.0000000 -0.7128620 -0.7013044 0.0000000 -0.7128620 -0.4299752 0.0000000 -0.9028407 -0.4299752 0.0000000 -0.9028407 -0.8144221 0.0000000 -0.5802730 -0.8144221 0.0000000 -0.5802730 -0.2666707 0.0000000 -0.9637877 -0.2666707 0.0000000 -0.9637877 -0.9028381 0.0000000 -0.4299807 -0.9028381 0.0000000 -0.4299807 -0.0952490 0.0000000 -0.9954535 -0.0952490 0.0000000 -0.9954535 -0.9637994 0.0000000 -0.2666283 -0.9637994 0.0000000 -0.2666283 0.0790476 0.0000000 -0.9968708 0.0790476 0.0000000 -0.9968708 -0.9954601 0.0000000 -0.0951801 -0.9954601 0.0000000 -0.0951801 0.2509753 -0.0000000 -0.9679935 0.2509753 -0.0000000 -0.9679935 -0.9968703 -0.0000000 0.0790547 -0.9968703 -0.0000000 0.0790547 0.4152494 -0.0000000 -0.9097076 0.4152494 -0.0000000 -0.9097076 -0.9862031 -0.0000000 0.1655401 -0.9862031 -0.0000000 0.1655401 0.5669033 0.0000000 -0.8237843 0.5669033 0.0000000 -0.8237843 -0.4999999 -0.0000001 -0.8660255 -0.4999999 -0.0000001 -0.8660255 -0.4999999 -0.0000001 -0.8660255 -0.4999999 -0.0000001 -0.8660255 0.6365809 0.0000000 -0.7712099 0.6365809 0.0000000 -0.7712099 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 6 12 13 12 6 5 14 8 15 8 14 11 13 16 17 16 13 12 18 14 15 14 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 23 27 23 26 22 25 28 29 28 25 24 30 26 27 26 30 31 29 32 33 32 29 28 34 31 30 31 34 35 33 36 37 36 33 32 38 35 34 35 38 39 37 40 41 40 37 36 42 39 38 39 42 43 41 44 45 44 41 40 46 43 42 43 46 47 44 48 45 48 44 49 50 47 46 47 50 51 48 52 53 52 48 49 54 51 50 51 54 55 52 56 53 56 52 57 58 55 54 55 58 59 57 60 56 60 57 61 62 59 58 59 62 63 60 64 65 64 60 61 66 63 62 63 66 67 64 68 65 68 64 69 70 67 66 67 70 71 69 72 68 72 69 73 74 71 70 71 74 75 73 76 72 76 73 77 78 74 79 74 78 75 77 80 76 80 77 81 82 79 83 79 82 78 81 84 80 84 81 85 86 82 83 82 86 87 84 88 89 88 84 85 90 86 91 86 90 87 88 92 89 92 88 93 94 91 95 91 94 90 96 92 93 92 96 97 98 94 95 94 98 99 100 97 96 97 100 101 102 98 103 98 102 99 104 101 100 101 104 105 106 103 107 103 106 102 108 105 104 105 108 109 110 106 107 106 110 111 112 109 108 109 112 113 114 110 115 110 114 111 116 113 112 113 116 117 118 114 115 114 118 119 120 117 116 117 120 121 122 118 123 118 122 119 124 121 120 121 124 125 122 126 127 126 122 123 128 125 124 125 128 129 127 130 131 130 127 126 129 132 133 132 129 128 131 134 135 134 131 130 132 136 133 136 132 137 135 138 139 138 135 134 136 140 141 140 136 137 139 142 143 142 139 138 140 144 141 144 140 145 143 146 147 146 143 142 145 148 144 148 145 149 147 150 151 150 147 146 148 152 153 152 148 149 151 154 155 154 151 150 156 157 158 157 156 159 155 160 161 160 155 154

-
-
-
- - - - -6327.3543307 263.7795276 3464.9413386 -6325.0354331 47.2440945 3469.9177165 -6327.3543307 47.2440945 3464.9413386 -6325.0354331 263.7795276 3469.9177165 -6321.8858268 47.2440945 3474.4145669 -6321.8858268 263.7795276 3474.4145669 -6328.7755906 47.2440945 3459.6385827 -6328.7755906 263.7795276 3459.6385827 -6318.0039370 47.2440945 3478.2964567 -6318.0039370 263.7795276 3478.2964567 -6329.2519685 263.7795276 3454.1692913 -6329.2519685 47.2440945 3454.1692913 -6313.5039370 263.7795276 3481.4456693 -6313.5039370 47.2440945 3481.4456693 -6328.7755906 263.7795276 3448.7000000 -6328.7755906 47.2440945 3448.7000000 -6308.5275591 263.7795276 3483.7665354 -6308.5275591 47.2440945 3483.7665354 -6327.3543307 47.2440945 3443.3968504 -6327.3543307 263.7795276 3443.3968504 -6303.2283465 263.7795276 3485.1870079 -6303.2283465 47.2440945 3485.1870079 -6325.0354331 263.7795276 3438.4212598 -6325.0354331 47.2440945 3438.4212598 -6297.7559055 263.7795276 3485.6653543 -6297.7559055 47.2440945 3485.6653543 -6321.8858268 47.2440945 3433.9236220 -6321.8858268 263.7795276 3433.9236220 -6292.2874016 263.7795276 3485.1870079 -6292.2874016 47.2440945 3485.1870079 -6318.0039370 263.7795276 3430.0417323 -6318.0039370 47.2440945 3430.0417323 -6286.9842520 263.7795276 3483.7665354 -6286.9842520 47.2440945 3483.7665354 -6313.5039370 47.2440945 3426.8933071 -6313.5039370 263.7795276 3426.8933071 -6282.0078740 263.7795276 3481.4456693 -6282.0078740 47.2440945 3481.4456693 -6308.5275591 47.2440945 3424.5732283 -6308.5275591 263.7795276 3424.5732283 -6277.5118110 263.7795276 3478.2964567 -6277.5118110 47.2440945 3478.2964567 -6303.2283465 47.2440945 3423.1515748 -6303.2283465 263.7795276 3423.1515748 -6273.6299213 263.7795276 3474.4145669 -6273.6299213 47.2440945 3474.4145669 -6297.7559055 47.2440945 3422.6732283 -6297.7559055 263.7795276 3422.6732283 -6270.4803150 263.7795276 3469.9169291 -6270.4803150 47.2440945 3469.9169291 -6292.2874016 47.2440945 3423.1515748 -6292.2874016 263.7795276 3423.1515748 -6268.1614173 47.2440945 3464.9413386 -6268.1614173 263.7795276 3464.9413386 -6286.9842520 47.2440945 3424.5732283 -6286.9842520 263.7795276 3424.5732283 -6266.7401575 47.2440945 3459.6385827 -6266.7401575 263.7795276 3459.6385827 -6282.0078740 47.2440945 3426.8933071 -6282.0078740 263.7795276 3426.8933071 -6266.2598425 263.7795276 3454.1692913 -6266.2598425 47.2440945 3454.1692913 -6277.5118110 47.2440945 3430.0417323 -6277.5118110 263.7795276 3430.0417323 -6266.7401575 47.2440945 3448.7000000 -6266.7401575 263.7795276 3448.7000000 -6273.6299213 47.2440945 3433.9236220 -6273.6299213 263.7795276 3433.9236220 -6268.1614173 47.2440945 3443.3968504 -6268.1614173 263.7795276 3443.3968504 -6270.4803150 263.7795276 3438.4212598 -6270.4803150 47.2440945 3438.4212598 - - - - - - - - - - 0.9397267 0.0000000 -0.3419264 0.8660578 0.0000001 -0.4999439 0.9397267 0.0000000 -0.3419264 0.8660578 0.0000001 -0.4999439 0.7659998 0.0000001 -0.6428408 0.7659998 0.0000001 -0.6428408 0.9848352 0.0000000 -0.1734923 0.9848352 0.0000000 -0.1734923 0.6426893 0.0000000 -0.7661269 0.6426893 0.0000000 -0.7661269 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.4999133 0.0000000 -0.8660754 0.4999133 0.0000000 -0.8660754 0.9848368 0.0000000 0.1734832 0.9848368 0.0000000 0.1734832 0.3420925 0.0000000 -0.9396663 0.3420925 0.0000000 -0.9396663 0.9397196 0.0000000 0.3419461 0.9397196 0.0000000 0.3419461 0.1736577 0.0000000 -0.9848061 0.1736577 0.0000000 -0.9848061 0.8660652 0.0000000 0.4999311 0.8660652 0.0000000 0.4999311 -0.0000312 -0.0000000 -1.0000000 -0.0000312 -0.0000000 -1.0000000 0.7660288 0.0000000 0.6428063 0.7660288 0.0000000 0.6428063 -0.1735970 -0.0000000 -0.9848168 -0.1735970 -0.0000000 -0.9848168 0.6426443 0.0000000 0.7661647 0.6426443 0.0000000 0.7661647 -0.3420052 -0.0000000 -0.9396980 -0.3420052 -0.0000000 -0.9396980 0.4998062 0.0000000 0.8661373 0.4998062 0.0000000 0.8661373 -0.5000914 0.0000000 -0.8659726 -0.5000914 0.0000000 -0.8659726 0.3421291 0.0000000 0.9396530 0.3421291 0.0000000 0.9396530 -0.6428468 0.0000000 -0.7659948 -0.6428468 0.0000000 -0.7659948 0.1737601 -0.0000000 0.9847880 0.1737601 -0.0000000 0.9847880 -0.7660288 0.0000000 -0.6428063 -0.7660288 0.0000000 -0.6428063 -0.0000312 -0.0000000 1.0000000 -0.0000312 -0.0000000 1.0000000 -0.8660652 0.0000000 -0.4999311 -0.8660652 0.0000000 -0.4999311 -0.1736993 -0.0000000 0.9847987 -0.1736993 -0.0000000 0.9847987 -0.9397164 0.0000000 -0.3419548 -0.9397164 0.0000000 -0.3419548 -0.3420418 -0.0000000 0.9396847 -0.3420418 -0.0000000 0.9396847 -0.9847732 0.0000000 -0.1738441 -0.9847732 0.0000000 -0.1738441 -0.4999843 0.0000000 0.8660345 -0.4999843 0.0000000 0.8660345 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.6428018 -0.0000000 0.7660325 -0.6428018 -0.0000000 0.7660325 -0.9847748 0.0000000 0.1738349 -0.9847748 0.0000000 0.1738349 -0.7660288 0.0000000 0.6428063 -0.7660288 0.0000000 0.6428063 -0.9397207 0.0000001 0.3419429 -0.9397207 0.0000001 0.3419429 -0.8660669 0.0000001 0.4999281 -0.8660669 0.0000001 0.4999281 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 0 2 0 6 7 5 8 4 8 5 9 10 6 11 6 10 7 12 8 9 8 12 13 14 11 15 11 14 10 16 13 12 13 16 17 18 14 15 14 18 19 20 17 16 17 20 21 22 18 23 18 22 19 24 21 20 21 24 25 26 22 23 22 26 27 28 25 24 25 28 29 30 26 31 26 30 27 32 29 28 29 32 33 34 30 31 30 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 45 48 49 48 45 44 50 47 46 47 50 51 48 52 49 52 48 53 54 51 50 51 54 55 53 56 52 56 53 57 58 55 54 55 58 59 56 60 61 60 56 57 62 59 58 59 62 63 60 64 61 64 60 65 66 63 62 63 66 67 65 68 64 68 65 69 70 66 71 66 70 67 68 70 71 70 68 69

-
-
-
- - - - -6167.5551181 263.7795276 3742.6811024 -6164.4055118 47.2440945 3747.1783465 -6167.5551181 47.2440945 3742.6811024 -6164.4055118 263.7795276 3747.1783465 -6160.5236220 47.2440945 3751.0606299 -6160.5236220 263.7795276 3751.0606299 -6169.8740157 263.7795276 3737.7055118 -6169.8740157 47.2440945 3737.7055118 -6156.0236220 263.7795276 3754.2102362 -6156.0236220 47.2440945 3754.2102362 -6171.2952756 263.7795276 3732.4023622 -6171.2952756 47.2440945 3732.4023622 -6151.0472441 263.7795276 3756.5303150 -6151.0472441 47.2440945 3756.5303150 -6171.7716535 47.2440945 3726.9330709 -6171.7716535 263.7795276 3726.9330709 -6145.7480315 263.7795276 3757.9507874 -6145.7480315 47.2440945 3757.9507874 -6171.2952756 47.2440945 3721.4637795 -6171.2952756 263.7795276 3721.4637795 -6140.2755906 263.7795276 3758.4295276 -6140.2755906 47.2440945 3758.4295276 -6169.8740157 263.7795276 3716.1610236 -6169.8740157 47.2440945 3716.1610236 -6134.8070866 263.7795276 3757.9507874 -6134.8070866 47.2440945 3757.9507874 -6167.5551181 263.7795276 3711.1850394 -6167.5551181 47.2440945 3711.1850394 -6129.5039370 263.7795276 3756.5303150 -6129.5039370 47.2440945 3756.5303150 -6164.4055118 47.2440945 3706.6877953 -6164.4055118 263.7795276 3706.6877953 -6124.5275591 263.7795276 3754.2094488 -6124.5275591 47.2440945 3754.2094488 -6160.5236220 263.7795276 3702.8059055 -6160.5236220 47.2440945 3702.8059055 -6120.0314961 263.7795276 3751.0606299 -6120.0314961 47.2440945 3751.0606299 -6156.0236220 47.2440945 3699.6570866 -6156.0236220 263.7795276 3699.6570866 -6116.1496063 47.2440945 3747.1783465 -6116.1496063 263.7795276 3747.1783465 -6151.0472441 47.2440945 3697.3370079 -6151.0472441 263.7795276 3697.3370079 -6113.0000000 263.7795276 3742.6811024 -6113.0000000 47.2440945 3742.6811024 -6145.7480315 47.2440945 3695.9157480 -6145.7480315 263.7795276 3695.9157480 -6110.6811024 47.2440945 3737.7055118 -6110.6811024 263.7795276 3737.7055118 -6140.2755906 47.2440945 3695.4377953 -6140.2755906 263.7795276 3695.4377953 -6109.2598425 263.7795276 3732.4023622 -6109.2598425 47.2440945 3732.4023622 -6134.8070866 47.2440945 3695.9157480 -6134.8070866 263.7795276 3695.9157480 -6108.7795276 47.2440945 3726.9330709 -6108.7795276 263.7795276 3726.9330709 -6129.5039370 47.2440945 3697.3370079 -6129.5039370 263.7795276 3697.3370079 -6109.2598425 47.2440945 3721.4637795 -6109.2598425 263.7795276 3721.4637795 -6124.5275591 47.2440945 3699.6570866 -6124.5275591 263.7795276 3699.6570866 -6110.6811024 263.7795276 3716.1610236 -6110.6811024 47.2440945 3716.1610236 -6120.0314961 47.2440945 3702.8059055 -6120.0314961 263.7795276 3702.8059055 -6113.0000000 47.2440945 3711.1850394 -6113.0000000 263.7795276 3711.1850394 -6116.1496063 47.2440945 3706.6877953 -6116.1496063 263.7795276 3706.6877953 - - - - - - - - - - 0.8660549 0.0000000 -0.4999489 0.7660319 0.0000000 -0.6428026 0.8660549 0.0000000 -0.4999489 0.7660319 0.0000000 -0.6428026 0.6427312 0.0000000 -0.7660918 0.6427312 0.0000000 -0.7660918 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 0.4998825 0.0000000 -0.8660932 0.4998825 0.0000000 -0.8660932 0.9848368 0.0000000 -0.1734832 0.9848368 0.0000000 -0.1734832 0.3420314 0.0000000 -0.9396885 0.3420314 0.0000000 -0.9396885 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.1736928 0.0000000 -0.9847999 0.1736928 0.0000000 -0.9847999 0.9848352 0.0000000 0.1734923 0.9848352 0.0000000 0.1734923 -0.0000313 -0.0000000 -1.0000000 -0.0000313 -0.0000000 -1.0000000 0.9397216 0.0000000 0.3419406 0.9397216 0.0000000 0.3419406 -0.1736322 -0.0000000 -0.9848106 -0.1736322 -0.0000000 -0.9848106 0.8660625 0.0000000 0.4999358 0.8660625 0.0000000 0.4999358 -0.3420052 -0.0000000 -0.9396980 -0.3420052 -0.0000000 -0.9396980 0.7660156 0.0000000 0.6428220 0.7660156 0.0000000 0.6428220 -0.5000660 0.0000000 -0.8659873 -0.5000660 0.0000000 -0.8659873 0.6426668 0.0000000 0.7661458 0.6426668 0.0000000 0.7661458 -0.6428437 0.0000000 -0.7659974 -0.6428437 0.0000000 -0.7659974 0.4998316 -0.0000000 0.8661226 0.4998316 -0.0000000 0.8661226 -0.7660319 0.0000000 -0.6428026 -0.7660319 0.0000000 -0.6428026 0.3420965 -0.0000000 0.9396648 0.3420965 -0.0000000 0.9396648 -0.8660549 0.0000000 -0.4999489 -0.8660549 0.0000000 -0.4999489 0.1736908 0.0000000 0.9848002 0.1736908 0.0000000 0.9848002 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 -0.0000312 -0.0000000 1.0000000 -0.0000312 -0.0000000 1.0000000 -0.9847748 0.0000000 -0.1738349 -0.9847748 0.0000000 -0.1738349 -0.1736300 -0.0000000 0.9848109 -0.1736300 -0.0000000 0.9848109 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.3420093 -0.0000000 0.9396966 -0.3420093 -0.0000000 0.9396966 -0.9847732 -0.0000000 0.1738441 -0.9847732 -0.0000000 0.1738441 -0.5000097 0.0000000 0.8660198 -0.5000097 0.0000000 0.8660198 -0.9397216 -0.0000000 0.3419406 -0.9397216 -0.0000000 0.3419406 -0.6428243 0.0000000 0.7660137 -0.6428243 0.0000000 0.7660137 -0.8660625 0.0000000 0.4999358 -0.8660625 0.0000000 0.4999358 -0.7660156 0.0000000 0.6428220 -0.7660156 0.0000000 0.6428220 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 8 4 5 4 8 9 10 7 11 7 10 6 12 9 8 9 12 13 14 10 11 10 14 15 16 13 12 13 16 17 18 15 14 15 18 19 20 17 16 17 20 21 22 18 23 18 22 19 24 21 20 21 24 25 26 23 27 23 26 22 28 25 24 25 28 29 30 26 27 26 30 31 32 29 28 29 32 33 34 30 35 30 34 31 36 33 32 33 36 37 38 34 35 34 38 39 36 40 37 40 36 41 42 39 38 39 42 43 40 44 45 44 40 41 46 43 42 43 46 47 44 48 45 48 44 49 50 47 46 47 50 51 48 52 53 52 48 49 54 51 50 51 54 55 52 56 53 56 52 57 58 55 54 55 58 59 57 60 56 60 57 61 62 59 58 59 62 63 60 64 65 64 60 61 66 63 62 63 66 67 64 68 65 68 64 69 70 67 66 67 70 71 69 70 68 70 69 71

-
-
-
- - - - -4019.5393701 47.2440945 2502.5236220 -4016.3897638 263.7795276 2507.0208661 -4016.3897638 47.2440945 2507.0208661 -4019.5393701 263.7795276 2502.5236220 -4012.5078740 47.2440945 2510.9031496 -4012.5078740 263.7795276 2510.9031496 -4021.8582677 263.7795276 2497.5480315 -4021.8582677 47.2440945 2497.5480315 -4008.0078740 263.7795276 2514.0519685 -4008.0078740 47.2440945 2514.0519685 -4023.2795276 263.7795276 2492.2448819 -4023.2795276 47.2440945 2492.2448819 -4003.0354331 263.7795276 2516.3724409 -4003.0354331 47.2440945 2516.3724409 -4023.7559055 47.2440945 2486.7755906 -4023.7559055 263.7795276 2486.7755906 -3997.7322835 263.7795276 2517.7933071 -3997.7322835 47.2440945 2517.7933071 -4023.2795276 263.7795276 2481.3062992 -4023.2795276 47.2440945 2481.3062992 -3992.2598425 263.7795276 2518.2716535 -3992.2598425 47.2440945 2518.2716535 -4021.8582677 263.7795276 2476.0031496 -4021.8582677 47.2440945 2476.0031496 -3986.7913386 263.7795276 2517.7933071 -3986.7913386 47.2440945 2517.7933071 -4019.5393701 47.2440945 2471.0275591 -4019.5393701 263.7795276 2471.0275591 -3981.4881890 263.7795276 2516.3724409 -3981.4881890 47.2440945 2516.3724409 -4016.3897638 263.7795276 2466.5303150 -4016.3897638 47.2440945 2466.5303150 -3976.5118110 263.7795276 2514.0519685 -3976.5118110 47.2440945 2514.0519685 -4012.5078740 47.2440945 2462.6484252 -4012.5078740 263.7795276 2462.6484252 -3972.0157480 263.7795276 2510.9031496 -3972.0157480 47.2440945 2510.9031496 -4008.0078740 47.2440945 2459.4992126 -4008.0078740 263.7795276 2459.4992126 -3968.1338583 47.2440945 2507.0208661 -3968.1338583 263.7795276 2507.0208661 -4003.0314961 47.2440945 2457.1791339 -4003.0314961 263.7795276 2457.1791339 -3964.9842520 47.2440945 2502.5236220 -3964.9842520 263.7795276 2502.5236220 -3997.7322835 47.2440945 2455.7582677 -3997.7322835 263.7795276 2455.7582677 -3962.6653543 47.2440945 2497.5480315 -3962.6653543 263.7795276 2497.5480315 -3992.2598425 47.2440945 2455.2795276 -3992.2598425 263.7795276 2455.2795276 -3961.2440945 263.7795276 2492.2448819 -3961.2440945 47.2440945 2492.2448819 -3986.7913386 47.2440945 2455.7582677 -3986.7913386 263.7795276 2455.7582677 -3960.7637795 47.2440945 2486.7755906 -3960.7637795 263.7795276 2486.7755906 -3981.4881890 47.2440945 2457.1791339 -3981.4881890 263.7795276 2457.1791339 -3961.2440945 263.7795276 2481.3062992 -3961.2440945 47.2440945 2481.3062992 -3976.5118110 47.2440945 2459.4992126 -3976.5118110 263.7795276 2459.4992126 -3962.6653543 47.2440945 2476.0031496 -3962.6653543 263.7795276 2476.0031496 -3972.0157480 47.2440945 2462.6484252 -3972.0157480 263.7795276 2462.6484252 -3964.9842520 47.2440945 2471.0275591 -3964.9842520 263.7795276 2471.0275591 -3968.1338583 47.2440945 2466.5303150 -3968.1338583 263.7795276 2466.5303150 - - - - - - - - - - 0.8660549 -0.0000000 -0.4999489 0.7660319 -0.0000000 -0.6428026 0.7660319 -0.0000000 -0.6428026 0.8660549 -0.0000000 -0.4999489 0.6426862 0.0000000 -0.7661295 0.6426862 0.0000000 -0.7661295 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 0.4999911 -0.0000000 -0.8660306 0.4999911 -0.0000000 -0.8660306 0.9848368 0.0000000 -0.1734832 0.9848368 0.0000000 -0.1734832 0.3421497 -0.0000000 -0.9396455 0.3421497 -0.0000000 -0.9396455 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.1736004 -0.0000000 -0.9848162 0.1736004 -0.0000000 -0.9848162 0.9848368 -0.0000000 0.1734832 0.9848368 -0.0000000 0.1734832 -0.0000312 0.0000000 -1.0000000 -0.0000312 0.0000000 -1.0000000 0.9397196 -0.0000000 0.3419461 0.9397196 -0.0000000 0.3419461 -0.1736311 0.0000000 -0.9848108 -0.1736311 0.0000000 -0.9848108 0.8660549 -0.0000000 0.4999489 0.8660549 -0.0000000 0.4999489 -0.3420072 0.0000000 -0.9396973 -0.3420072 0.0000000 -0.9396973 0.7660156 0.0000000 0.6428220 0.7660156 0.0000000 0.6428220 -0.5000378 -0.0000000 -0.8660036 -0.5000378 -0.0000000 -0.8660036 0.6426893 0.0000000 0.7661269 0.6426893 0.0000000 0.7661269 -0.6428437 0.0000000 -0.7659974 -0.6428437 0.0000000 -0.7659974 0.4998571 0.0000000 0.8661079 0.4998571 0.0000000 0.8661079 -0.7660319 -0.0000000 -0.6428026 -0.7660319 -0.0000000 -0.6428026 0.3420640 0.0000000 0.9396767 0.3420640 0.0000000 0.9396767 -0.8660549 -0.0000000 -0.4999489 -0.8660549 -0.0000000 -0.4999489 0.1737270 0.0000000 0.9847939 0.1737270 0.0000000 0.9847939 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 -0.0000313 0.0000000 1.0000000 -0.0000313 0.0000000 1.0000000 -0.9847748 0.0000000 -0.1738349 -0.9847748 0.0000000 -0.1738349 -0.1736663 0.0000000 0.9848046 -0.1736663 0.0000000 0.9848046 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.3419767 0.0000000 0.9397084 -0.3419767 0.0000000 0.9397084 -0.9847748 -0.0000000 0.1738349 -0.9847748 -0.0000000 0.1738349 -0.5000351 0.0000000 0.8660051 -0.5000351 0.0000000 0.8660051 -0.9397196 -0.0000000 0.3419461 -0.9397196 -0.0000000 0.3419461 -0.6428468 0.0000000 0.7659948 -0.6428468 0.0000000 0.7659948 -0.8660549 0.0000000 0.4999489 -0.8660549 0.0000000 0.4999489 -0.7660156 0.0000000 0.6428220 -0.7660156 0.0000000 0.6428220 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 2 4 1 5 6 0 7 0 6 3 8 4 5 4 8 9 10 7 11 7 10 6 12 9 8 9 12 13 14 10 11 10 14 15 16 13 12 13 16 17 18 14 19 14 18 15 20 17 16 17 20 21 22 19 23 19 22 18 24 21 20 21 24 25 26 22 23 22 26 27 28 25 24 25 28 29 30 26 31 26 30 27 32 29 28 29 32 33 34 30 31 30 34 35 36 33 32 33 36 37 38 35 34 35 38 39 36 40 37 40 36 41 42 39 38 39 42 43 41 44 40 44 41 45 46 43 42 43 46 47 45 48 44 48 45 49 50 47 46 47 50 51 48 52 53 52 48 49 54 51 50 51 54 55 52 56 53 56 52 57 58 55 54 55 58 59 56 60 61 60 56 57 62 59 58 59 62 63 60 64 61 64 60 65 66 63 62 63 66 67 65 68 64 68 65 69 70 67 66 67 70 71 68 71 70 71 68 69

-
-
-
- - - - -4179.3385827 263.7795276 2224.7838583 -4177.0196850 47.2440945 2229.7594488 -4179.3385827 47.2440945 2224.7838583 -4177.0196850 263.7795276 2229.7594488 -4173.8700787 47.2440945 2234.2570866 -4173.8700787 263.7795276 2234.2570866 -4180.7598425 263.7795276 2219.4811024 -4180.7598425 47.2440945 2219.4811024 -4169.9881890 263.7795276 2238.1393701 -4169.9881890 47.2440945 2238.1393701 -4181.2362205 47.2440945 2214.0118110 -4181.2362205 263.7795276 2214.0118110 -4165.4881890 263.7795276 2241.2881890 -4165.4881890 47.2440945 2241.2881890 -4180.7598425 47.2440945 2208.5425197 -4180.7598425 263.7795276 2208.5425197 -4160.5157480 263.7795276 2243.6086614 -4160.5157480 47.2440945 2243.6086614 -4179.3385827 263.7795276 2203.2393701 -4179.3385827 47.2440945 2203.2393701 -4155.2125984 263.7795276 2245.0291339 -4155.2125984 47.2440945 2245.0291339 -4177.0196850 263.7795276 2198.2637795 -4177.0196850 47.2440945 2198.2637795 -4149.7401575 263.7795276 2245.5078740 -4149.7401575 47.2440945 2245.5078740 -4173.8700787 263.7795276 2193.7665354 -4173.8700787 47.2440945 2193.7665354 -4144.2716535 263.7795276 2245.0291339 -4144.2716535 47.2440945 2245.0291339 -4169.9881890 47.2440945 2189.8846457 -4169.9881890 263.7795276 2189.8846457 -4138.9685039 263.7795276 2243.6086614 -4138.9685039 47.2440945 2243.6086614 -4165.4881890 47.2440945 2186.7354331 -4165.4881890 263.7795276 2186.7354331 -4133.9921260 263.7795276 2241.2881890 -4133.9921260 47.2440945 2241.2881890 -4160.5118110 47.2440945 2184.4153543 -4160.5118110 263.7795276 2184.4153543 -4129.4960630 263.7795276 2238.1393701 -4129.4960630 47.2440945 2238.1393701 -4155.2125984 47.2440945 2182.9940945 -4155.2125984 263.7795276 2182.9940945 -4125.6141732 47.2440945 2234.2570866 -4125.6141732 263.7795276 2234.2570866 -4149.7401575 47.2440945 2182.5157480 -4149.7401575 263.7795276 2182.5157480 -4122.4645669 263.7795276 2229.7598425 -4122.4645669 47.2440945 2229.7598425 -4144.2716535 47.2440945 2182.9940945 -4144.2716535 263.7795276 2182.9940945 -4120.1456693 47.2440945 2224.7838583 -4120.1456693 263.7795276 2224.7838583 -4138.9685039 47.2440945 2184.4153543 -4138.9685039 263.7795276 2184.4153543 -4118.7244094 263.7795276 2219.4811024 -4118.7244094 47.2440945 2219.4811024 -4133.9921260 47.2440945 2186.7354331 -4133.9921260 263.7795276 2186.7354331 -4118.2440945 47.2440945 2214.0118110 -4118.2440945 263.7795276 2214.0118110 -4129.4960630 47.2440945 2189.8846457 -4129.4960630 263.7795276 2189.8846457 -4118.7244094 47.2440945 2208.5425197 -4118.7244094 263.7795276 2208.5425197 -4125.6141732 47.2440945 2193.7665354 -4125.6141732 263.7795276 2193.7665354 -4120.1456693 263.7795276 2203.2393701 -4120.1456693 47.2440945 2203.2393701 -4122.4645669 47.2440945 2198.2637795 -4122.4645669 263.7795276 2198.2637795 - - - - - - - - - - 0.9397164 0.0000000 -0.3419548 0.8660612 0.0000003 -0.4999380 0.9397164 0.0000000 -0.3419548 0.8660612 0.0000003 -0.4999380 0.7660400 0.0000003 -0.6427929 0.7660400 0.0000003 -0.6427929 0.9848352 0.0000000 -0.1734923 0.9848352 0.0000000 -0.1734923 0.6426862 0.0000000 -0.7661295 0.6426862 0.0000000 -0.7661295 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.4999911 0.0000000 -0.8660306 0.4999911 0.0000000 -0.8660306 0.9848368 0.0000000 0.1734832 0.9848368 0.0000000 0.1734832 0.3421172 0.0000000 -0.9396573 0.3421172 0.0000000 -0.9396573 0.9397196 0.0000000 0.3419461 0.9397196 0.0000000 0.3419461 0.1736014 0.0000000 -0.9848160 0.1736014 0.0000000 -0.9848160 0.8660549 0.0000000 0.4999489 0.8660549 0.0000000 0.4999489 -0.0000313 -0.0000000 -1.0000000 -0.0000313 -0.0000000 -1.0000000 0.7660156 0.0000000 0.6428220 0.7660156 0.0000000 0.6428220 -0.1736322 -0.0000000 -0.9848106 -0.1736322 -0.0000000 -0.9848106 0.6426893 0.0000000 0.7661269 0.6426893 0.0000000 0.7661269 -0.3419747 -0.0000000 -0.9397092 -0.3419747 -0.0000000 -0.9397092 0.4998571 -0.0000000 0.8661079 0.4998571 -0.0000000 0.8661079 -0.5000378 0.0000000 -0.8660036 -0.5000378 0.0000000 -0.8660036 0.3420965 -0.0000000 0.9396648 0.3420965 -0.0000000 0.9396648 -0.6428437 0.0000000 -0.7659974 -0.6428437 0.0000000 -0.7659974 0.1737259 0.0000000 0.9847940 0.1737259 0.0000000 0.9847940 -0.7660319 0.0000000 -0.6428026 -0.7660319 0.0000000 -0.6428026 -0.0000312 -0.0000000 1.0000000 -0.0000312 -0.0000000 1.0000000 -0.8660625 0.0000000 -0.4999358 -0.8660625 0.0000000 -0.4999358 -0.1736652 -0.0000000 0.9848047 -0.1736652 -0.0000000 0.9848047 -0.9397216 0.0000000 -0.3419406 -0.9397216 0.0000000 -0.3419406 -0.3420093 -0.0000000 0.9396966 -0.3420093 -0.0000000 0.9396966 -0.9847732 -0.0000000 -0.1738441 -0.9847732 -0.0000000 -0.1738441 -0.5000351 0.0000000 0.8660051 -0.5000351 0.0000000 0.8660051 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.6428468 0.0000000 0.7659948 -0.6428468 0.0000000 0.7659948 -0.9847748 0.0000000 0.1738349 -0.9847748 0.0000000 0.1738349 -0.7660156 0.0000000 0.6428220 -0.7660156 0.0000000 0.6428220 -0.9397195 -0.0000000 0.3419463 -0.9397195 -0.0000000 0.3419463 -0.8660548 -0.0000000 0.4999491 -0.8660548 -0.0000000 0.4999491 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 4 8 9 8 4 5 10 6 7 6 10 11 12 9 8 9 12 13 14 11 10 11 14 15 16 13 12 13 16 17 18 14 19 14 18 15 20 17 16 17 20 21 22 19 23 19 22 18 24 21 20 21 24 25 26 23 27 23 26 22 28 25 24 25 28 29 30 26 27 26 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 40 44 41 44 40 45 46 43 42 43 46 47 44 48 49 48 44 45 50 47 46 47 50 51 48 52 49 52 48 53 54 51 50 51 54 55 52 56 57 56 52 53 58 55 54 55 58 59 56 60 57 60 56 61 62 59 58 59 62 63 61 64 60 64 61 65 66 63 62 63 66 67 64 68 69 68 64 65 70 67 66 67 70 71 68 70 69 70 68 71

-
-
-
- - - - 0.0000000 263.7795276 8303.1496063 297.4078740 263.7795276 8307.3897638 270.0010630 263.7795276 8270.5433071 34.1827126 263.7795276 8306.1417323 67.3268110 263.7795276 8315.0196850 300.4010630 263.7795276 8311.2637795 303.9934646 263.7795276 8314.5905512 308.0862598 263.7795276 8317.2795276 98.4251969 263.7795276 8329.5236220 312.5669685 263.7795276 8319.2519685 317.3123228 263.7795276 8320.4606299 322.1918504 263.7795276 8320.8661417 520.7763780 263.7795276 8320.8661417 283.2355118 263.7795276 8016.6220472 30.5118110 263.7795276 8073.1377953 193.4866929 263.7795276 8169.7913386 20.8713071 263.7795276 8068.6417323 10.5966417 263.7795276 8065.8897638 0.0000000 263.7795276 8064.9606299 39.2252244 263.7795276 8079.2362205 46.7468110 263.7795276 8086.7598425 52.8479921 263.7795276 8095.4724409 57.3434646 263.7795276 8105.1141732 60.0965354 263.7795276 8115.3858268 61.0236220 263.7795276 8125.9842520 61.0236220 263.7795276 8185.0393701 191.3704724 263.7795276 8174.2047244 190.0126378 263.7795276 8178.9094488 189.4505512 263.7795276 8183.7716535 189.6995669 263.7795276 8188.6614173 60.0965354 263.7795276 8195.6377953 190.7529134 263.7795276 8193.4409449 192.5816142 263.7795276 8197.9803150 57.3434646 263.7795276 8205.9094488 195.1354331 263.7795276 8202.1574803 198.3441339 263.7795276 8205.8543307 202.1196063 263.7795276 8208.9724409 52.8479921 263.7795276 8215.5511811 225.3937008 263.7795276 8227.4803150 46.7468110 263.7795276 8224.2637795 39.2252244 263.7795276 8231.7874016 238.0594488 263.7795276 8237.5551181 30.5118110 263.7795276 8237.8858268 20.8713071 263.7795276 8242.3818898 10.5966417 263.7795276 8245.1377953 0.0000000 263.7795276 8246.0629921 -270.0010630 263.7795276 8270.5433071 -297.4078740 263.7795276 8307.3897638 -34.1827126 263.7795276 8306.1417323 -67.3268110 263.7795276 8315.0196850 -300.4010630 263.7795276 8311.2637795 -303.9934646 263.7795276 8314.5905512 -308.0862598 263.7795276 8317.2795276 -98.4251969 263.7795276 8329.5236220 -312.5669685 263.7795276 8319.2519685 -317.3123228 263.7795276 8320.4606299 -322.1918504 263.7795276 8320.8661417 -19.5552559 263.7795276 3361.2976378 24.9719646 263.7795276 3361.2279528 -24.4308189 263.7795276 3361.1901575 19.8251417 263.7795276 3361.2700787 14.7637795 263.7795276 3362.2043307 -14.7637795 263.7795276 3362.2043307 -551.1811024 263.7795276 3170.0318898 236.2204724 263.7795276 2988.1889764 -236.2204724 263.7795276 2988.1889764 0.0000000 263.7795276 3135.8263780 -8.5456772 263.7795276 3136.5744094 -16.8317008 263.7795276 3138.7944882 -24.6062992 263.7795276 3142.4200787 -31.6332480 263.7795276 3147.3401575 -37.6990354 263.7795276 3153.4059055 -42.6193701 263.7795276 3160.4326772 -46.2447244 263.7795276 3168.2078740 -48.4649606 263.7795276 3176.4944882 -551.1811024 263.7795276 3717.9157480 -49.2125984 263.7795276 3185.0389764 -48.4649606 263.7795276 3193.5850394 -46.2447244 263.7795276 3201.8708661 -42.6193701 263.7795276 3209.6452756 -37.6990354 263.7795276 3216.6728346 -31.6332480 263.7795276 3222.7385827 -24.6062992 263.7795276 3227.6590551 -16.8317008 263.7795276 3231.2838583 -8.5456772 263.7795276 3233.5043307 0.0000000 263.7795276 3234.2515748 -425.3338583 263.7795276 3623.7181102 -418.3070866 263.7795276 3618.7984252 -38.2423465 263.7795276 3365.5952756 -33.9035591 263.7795276 3363.3692913 -29.2574724 263.7795276 3361.8874016 -42.1554724 263.7795276 3368.5059055 -45.5362205 263.7795276 3372.0208661 -48.2923622 263.7795276 3376.0440945 -50.3487008 263.7795276 3380.4661417 -51.6491732 263.7795276 3385.1665354 -52.1582677 263.7795276 3390.0161417 -51.8621260 263.7795276 3394.8838583 -50.7688189 263.7795276 3399.6362205 -48.9081890 263.7795276 3404.1444882 -46.3309843 263.7795276 3408.2842520 -43.1074409 263.7795276 3411.9444882 -39.3255827 263.7795276 3415.0228346 -35.0885039 263.7795276 3417.4374016 -30.5118110 263.7795276 3419.1212598 -410.5326772 263.7795276 3615.1732283 -402.2464567 263.7795276 3612.9523622 -393.7007874 263.7795276 3612.2047244 -431.4000000 263.7795276 3629.7838583 -436.3200787 263.7795276 3636.8110236 -439.9456693 263.7795276 3644.5858268 -442.1657480 263.7795276 3652.8720472 -442.9133858 263.7795276 3661.4173228 -442.1657480 263.7795276 3669.9629921 -439.9456693 263.7795276 3678.2492126 -436.3200787 263.7795276 3686.0236220 -431.4000000 263.7795276 3693.0503937 -425.3338583 263.7795276 3699.1165354 -418.3070866 263.7795276 3704.0366142 -410.5326772 263.7795276 3707.6618110 -402.2464567 263.7795276 3709.8822835 -393.7007874 263.7795276 3710.6299213 -362.0675591 263.7795276 3623.7181102 -30.5118110 263.7795276 3903.7133858 -369.0944882 263.7795276 3618.7984252 -376.8691339 263.7795276 3615.1732283 -385.1551181 263.7795276 3612.9523622 -356.0017717 263.7795276 3629.7838583 -351.0814567 263.7795276 3636.8110236 -347.4561024 263.7795276 3644.5858268 -345.2359055 263.7795276 3652.8720472 -344.4881890 263.7795276 3661.4173228 -345.2359055 263.7795276 3669.9629921 -347.4561024 263.7795276 3678.2492126 -351.0814567 263.7795276 3686.0236220 -356.0017717 263.7795276 3693.0503937 -362.0675591 263.7795276 3699.1165354 -369.0944882 263.7795276 3704.0366142 -376.8691339 263.7795276 3707.6618110 -385.1551181 263.7795276 3709.8822835 -410.3523622 263.7795276 3945.5275591 -35.3339252 263.7795276 3905.5129921 -39.7702756 263.7795276 3908.1228346 -43.6860630 263.7795276 3911.4629921 -46.9622835 263.7795276 3915.4326772 -49.4994488 263.7795276 3919.9106299 -51.2204331 263.7795276 3924.7614173 -52.0729528 263.7795276 3929.8374016 -52.0311024 263.7795276 3934.9842520 -51.0961417 263.7795276 3940.0472441 -49.2964567 263.7795276 3944.8661417 -46.6868110 263.7795276 3949.3031496 -401.0870079 263.7795276 3963.9133858 -43.3464173 263.7795276 3953.2204724 -39.3768110 263.7795276 3956.4960630 -34.8986102 263.7795276 3959.0314961 -30.0478622 263.7795276 3960.7559055 -24.9719646 263.7795276 3961.6062992 24.9719646 263.7795276 3961.6062992 -19.8251417 263.7795276 3961.5629921 14.7637795 263.7795276 3960.6299213 -14.7637795 263.7795276 3960.6299213 19.8251417 263.7795276 3961.5629921 551.1811024 263.7795276 3170.0318898 8.5456772 263.7795276 3136.5744094 16.8317008 263.7795276 3138.7944882 24.6062992 263.7795276 3142.4200787 31.6332480 263.7795276 3147.3401575 37.6990354 263.7795276 3153.4059055 42.6193701 263.7795276 3160.4326772 46.2447244 263.7795276 3168.2078740 48.4649606 263.7795276 3176.4944882 551.1811024 263.7795276 3717.9157480 49.2125984 263.7795276 3185.0389764 48.4649606 263.7795276 3193.5850394 46.2447244 263.7795276 3201.8708661 42.6193701 263.7795276 3209.6452756 37.6990354 263.7795276 3216.6728346 31.6332480 263.7795276 3222.7385827 24.6062992 263.7795276 3227.6590551 16.8317008 263.7795276 3231.2838583 8.5456772 263.7795276 3233.5043307 425.3338583 263.7795276 3623.7181102 418.3070866 263.7795276 3618.7984252 39.3768110 263.7795276 3366.3385827 34.8986102 263.7795276 3363.8015748 30.0478622 263.7795276 3362.0807087 43.3464173 263.7795276 3369.6145669 46.6868110 263.7795276 3373.5311024 49.2964567 263.7795276 3377.9669291 51.0961417 263.7795276 3382.7893701 52.0311024 263.7795276 3387.8503937 52.0729528 263.7795276 3392.9972441 51.2204331 263.7795276 3398.0728346 49.4994488 263.7795276 3402.9244094 46.9622835 263.7795276 3407.4019685 43.6860630 263.7795276 3411.3720472 39.7702756 263.7795276 3414.7118110 35.3339252 263.7795276 3417.3220472 30.5118110 263.7795276 3419.1212598 410.5326772 263.7795276 3615.1732283 402.2464567 263.7795276 3612.9523622 393.7007874 263.7795276 3612.2047244 431.4000000 263.7795276 3629.7838583 436.3200787 263.7795276 3636.8110236 439.9456693 263.7795276 3644.5858268 442.1657480 263.7795276 3652.8720472 442.9133858 263.7795276 3661.4173228 442.1657480 263.7795276 3669.9629921 439.9456693 263.7795276 3678.2492126 436.3200787 263.7795276 3686.0236220 431.4000000 263.7795276 3693.0503937 425.3338583 263.7795276 3699.1165354 418.3070866 263.7795276 3704.0366142 410.5326772 263.7795276 3707.6618110 402.2464567 263.7795276 3709.8822835 393.7007874 263.7795276 3710.6299213 385.1551181 263.7795276 3612.9523622 376.8691339 263.7795276 3615.1732283 369.0944882 263.7795276 3618.7984252 362.0675591 263.7795276 3623.7181102 30.5118110 263.7795276 3903.7133858 356.0017717 263.7795276 3629.7838583 351.0814567 263.7795276 3636.8110236 347.4561024 263.7795276 3644.5858268 345.2359055 263.7795276 3652.8720472 344.4881890 263.7795276 3661.4173228 345.2359055 263.7795276 3669.9629921 347.4561024 263.7795276 3678.2492126 351.0814567 263.7795276 3686.0236220 356.0017717 263.7795276 3693.0503937 362.0675591 263.7795276 3699.1165354 369.0944882 263.7795276 3704.0366142 376.8691339 263.7795276 3707.6618110 385.1551181 263.7795276 3709.8822835 410.3523622 263.7795276 3945.5275591 35.3339252 263.7795276 3905.5129921 39.7702756 263.7795276 3908.1228346 43.6860630 263.7795276 3911.4629921 46.9622835 263.7795276 3915.4326772 49.4994488 263.7795276 3919.9106299 51.2204331 263.7795276 3924.7614173 52.0729528 263.7795276 3929.8374016 52.0311024 263.7795276 3934.9842520 51.0961417 263.7795276 3940.0472441 49.2964567 263.7795276 3944.8661417 46.6868110 263.7795276 3949.3031496 401.0870079 263.7795276 3963.9133858 43.3464173 263.7795276 3953.2204724 39.3768110 263.7795276 3956.4960630 34.8986102 263.7795276 3959.0314961 30.0478622 263.7795276 3960.7559055 -395.1551181 263.7795276 3983.6299213 395.1551181 263.7795276 3983.6299213 -392.7365354 263.7795276 4004.0748031 392.7365354 263.7795276 4004.0748031 -181.6076772 263.7795276 4680.5433071 -184.7567323 263.7795276 4685.0393701 -187.0769291 263.7795276 4690.0157480 -188.4978740 263.7795276 4695.3188976 -188.9763780 263.7795276 4700.7874016 -277.9223622 263.7795276 7770.6220472 -177.7255906 263.7795276 4676.6614173 -173.2283465 263.7795276 4673.5118110 -168.2525984 263.7795276 4671.1889764 -162.9495276 263.7795276 4669.7716535 -157.4803150 263.7795276 4669.2913386 -188.4978740 263.7795276 4706.2559055 -187.0769291 263.7795276 4711.5590551 -184.7567323 263.7795276 4716.5354331 -181.6076772 263.7795276 4721.0314961 -177.7255906 263.7795276 4724.9133858 -173.2283465 263.7795276 4728.0629921 -168.2525984 263.7795276 4730.3858268 -162.9495276 263.7795276 4731.8031496 -157.4803150 263.7795276 4732.2834646 157.4803150 263.7795276 4732.2834646 -188.4978740 263.7795276 7175.6338583 -187.0769291 263.7795276 7170.3307087 -184.7567323 263.7795276 7165.3543307 -181.6076772 263.7795276 7160.8582677 -177.7255906 263.7795276 7156.9763780 -173.2283465 263.7795276 7153.8267717 -168.2525984 263.7795276 7151.5039370 -162.9495276 263.7795276 7150.0866142 -157.4803150 263.7795276 7149.6062992 -188.9763780 263.7795276 7181.1023622 -188.4978740 263.7795276 7186.5708661 -187.0769291 263.7795276 7191.8740157 -184.7567323 263.7795276 7196.8503937 -181.6076772 263.7795276 7201.3464567 -177.7255906 263.7795276 7205.2283465 -173.2283465 263.7795276 7208.3779528 -168.2525984 263.7795276 7210.6968504 -162.9495276 263.7795276 7212.1220472 -157.4803150 263.7795276 7212.5984252 157.4803150 263.7795276 7212.5984252 -152.5590551 263.7795276 7150.0354331 157.4803150 263.7795276 7149.6062992 152.0111024 263.7795276 7150.0866142 -152.0111024 263.7795276 7150.0866142 -146.7080315 263.7795276 7151.5039370 146.7080315 263.7795276 7151.5039370 -141.7322835 263.7795276 7153.8267717 141.7322835 263.7795276 7153.8267717 -137.2350394 263.7795276 7156.9763780 137.2350394 263.7795276 7156.9763780 -133.3529528 263.7795276 7160.8582677 133.3529528 263.7795276 7160.8582677 -130.2039370 263.7795276 7165.3543307 130.2039370 263.7795276 7165.3543307 -127.8837008 263.7795276 7170.3307087 127.8837008 263.7795276 7170.3307087 -126.4627559 263.7795276 7175.6338583 126.4627559 263.7795276 7175.6338583 -125.9842520 263.7795276 7181.1023622 125.9842520 263.7795276 7181.1023622 -126.4627559 263.7795276 7186.5708661 126.4627559 263.7795276 7186.5708661 -127.8837008 263.7795276 7191.8740157 127.8837008 263.7795276 7191.8740157 -130.2039370 263.7795276 7196.8503937 130.2039370 263.7795276 7196.8503937 -133.3529528 263.7795276 7201.3464567 133.3529528 263.7795276 7201.3464567 -137.2350394 263.7795276 7205.2283465 137.2350394 263.7795276 7205.2283465 -141.7322835 263.7795276 7208.3779528 141.7322835 263.7795276 7208.3779528 -146.7080315 263.7795276 7210.6968504 146.7080315 263.7795276 7210.6968504 -152.0111024 263.7795276 7212.1220472 152.0111024 263.7795276 7212.1220472 -152.5590551 263.7795276 4669.7204724 157.4803150 263.7795276 4669.2913386 152.0111024 263.7795276 4669.7716535 -152.0111024 263.7795276 4669.7716535 -146.7080315 263.7795276 4671.1889764 146.7080315 263.7795276 4671.1889764 -141.7322835 263.7795276 4673.5118110 141.7322835 263.7795276 4673.5118110 -137.2350394 263.7795276 4676.6614173 137.2350394 263.7795276 4676.6614173 -133.3529528 263.7795276 4680.5433071 133.3529528 263.7795276 4680.5433071 -130.2039370 263.7795276 4685.0393701 130.2039370 263.7795276 4685.0393701 -127.8837008 263.7795276 4690.0157480 127.8837008 263.7795276 4690.0157480 -126.4627559 263.7795276 4695.3188976 126.4627559 263.7795276 4695.3188976 -125.9842520 263.7795276 4700.7874016 125.9842520 263.7795276 4700.7874016 -126.4627559 263.7795276 4706.2559055 126.4627559 263.7795276 4706.2559055 -127.8837008 263.7795276 4711.5590551 127.8837008 263.7795276 4711.5590551 -130.2039370 263.7795276 4716.5354331 130.2039370 263.7795276 4716.5354331 -133.3529528 263.7795276 4721.0314961 133.3529528 263.7795276 4721.0314961 -137.2350394 263.7795276 4724.9133858 137.2350394 263.7795276 4724.9133858 -141.7322835 263.7795276 4728.0629921 141.7322835 263.7795276 4728.0629921 -146.7080315 263.7795276 4730.3858268 146.7080315 263.7795276 4730.3858268 -152.0111024 263.7795276 4731.8031496 152.0111024 263.7795276 4731.8031496 -152.5590551 263.7795276 4731.8543307 184.9788583 263.7795276 8432.6732283 304.3639764 263.7795276 8439.9055118 314.9606299 263.7795276 8438.9763780 193.8598031 263.7795276 8465.8188976 294.0893307 263.7795276 8442.6574803 284.4488189 263.7795276 8447.1535433 275.7353937 263.7795276 8453.2519685 268.2138189 263.7795276 8460.7755906 262.1125984 263.7795276 8469.4881890 196.8503937 263.7795276 8500.0000000 257.6172047 263.7795276 8479.1299213 254.8640945 263.7795276 8489.4015748 253.9370079 263.7795276 8500.0000000 193.8598031 263.7795276 8534.1811024 254.8640945 263.7795276 8510.5984252 257.6172047 263.7795276 8520.8700787 262.1125984 263.7795276 8530.5118110 268.2138189 263.7795276 8539.2244094 184.9788583 263.7795276 8567.3267717 275.7353937 263.7795276 8546.7480315 284.4488189 263.7795276 8552.8464567 294.0893307 263.7795276 8557.3425197 304.3639764 263.7795276 8560.0984252 314.9606299 263.7795276 8561.0236220 374.0157480 263.7795276 8561.0236220 -184.9788583 263.7795276 8432.6732283 -304.3639764 263.7795276 8439.9055118 -193.8598031 263.7795276 8465.8188976 -314.9606299 263.7795276 8438.9763780 -374.0157480 263.7795276 8438.9763780 -294.0893307 263.7795276 8442.6574803 -284.4488189 263.7795276 8447.1535433 -275.7353937 263.7795276 8453.2519685 -268.2138189 263.7795276 8460.7755906 -262.1125984 263.7795276 8469.4881890 -196.8503937 263.7795276 8500.0000000 -257.6172047 263.7795276 8479.1299213 -254.8640945 263.7795276 8489.4015748 -253.9370079 263.7795276 8500.0000000 -254.8640945 263.7795276 8510.5984252 -193.8598031 263.7795276 8534.1811024 -257.6172047 263.7795276 8520.8700787 -262.1125984 263.7795276 8530.5118110 -268.2138189 263.7795276 8539.2244094 -184.9788583 263.7795276 8567.3267717 -275.7353937 263.7795276 8546.7480315 -284.4488189 263.7795276 8552.8464567 -294.0893307 263.7795276 8557.3425197 -304.3639764 263.7795276 8560.0984252 -314.9606299 263.7795276 8561.0236220 67.3268110 263.7795276 8684.9803150 322.1918504 263.7795276 8679.1338583 98.4251969 263.7795276 8670.4763780 317.3123228 263.7795276 8679.5393701 312.5669685 263.7795276 8680.7480315 308.0862598 263.7795276 8682.7204724 303.9934646 263.7795276 8685.4094488 34.1827126 263.7795276 8693.8582677 300.4010630 263.7795276 8688.7362205 297.4078740 263.7795276 8692.6102362 267.5136614 263.7795276 8732.3503937 0.0000000 263.7795276 8696.8503937 -267.5136614 263.7795276 8732.3503937 -232.3503543 263.7795276 8767.5118110 0.0000000 263.7795276 8753.9370079 -10.5966417 263.7795276 8754.8661417 -20.8713071 263.7795276 8757.6181102 -30.5118110 263.7795276 8762.1141732 -39.2252244 263.7795276 8768.2125984 -225.3937008 263.7795276 8772.7480315 -46.7468110 263.7795276 8775.7362205 -192.6105512 263.7795276 8797.4094488 -52.8479921 263.7795276 8784.4488189 -57.3434646 263.7795276 8794.0905512 -60.0965354 263.7795276 8804.3622047 -189.2058661 263.7795276 8800.0393701 -188.7355906 263.7795276 8800.4015748 -185.4085433 263.7795276 8803.9921260 -182.7209055 263.7795276 8808.0866142 -61.0236220 263.7795276 8814.9606299 -180.7465748 263.7795276 8812.5669291 -179.5398425 263.7795276 8817.3110236 -61.0236220 263.7795276 8874.0157480 -179.1338583 263.7795276 8822.1929134 -179.1338583 263.7795276 9007.0787402 -60.0965354 263.7795276 8884.6141732 -57.3434646 263.7795276 8894.8858268 -52.8479921 263.7795276 8904.5275591 -46.7468110 263.7795276 8913.2401575 -39.2252244 263.7795276 8920.7637795 -30.5118110 263.7795276 8926.8622047 -20.8713071 263.7795276 8931.3582677 -10.5966417 263.7795276 8934.1141732 0.0000000 263.7795276 8935.0393701 188.9763780 263.7795276 4700.7874016 277.9223622 263.7795276 7770.6220472 188.4978740 263.7795276 4695.3188976 187.0769291 263.7795276 4690.0157480 184.7567323 263.7795276 4685.0393701 181.6076772 263.7795276 4680.5433071 177.7255906 263.7795276 4676.6614173 173.2283465 263.7795276 4673.5118110 168.2525984 263.7795276 4671.1889764 162.9495276 263.7795276 4669.7716535 188.4978740 263.7795276 4706.2559055 187.0769291 263.7795276 4711.5590551 184.7567323 263.7795276 4716.5354331 181.6076772 263.7795276 4721.0314961 177.7255906 263.7795276 4724.9133858 173.2283465 263.7795276 4728.0629921 168.2525984 263.7795276 4730.3858268 162.9495276 263.7795276 4731.8031496 188.4978740 263.7795276 7175.6338583 187.0769291 263.7795276 7170.3307087 184.7567323 263.7795276 7165.3543307 181.6076772 263.7795276 7160.8582677 177.7255906 263.7795276 7156.9763780 173.2283465 263.7795276 7153.8267717 168.2525984 263.7795276 7151.5039370 162.9495276 263.7795276 7150.0866142 188.9763780 263.7795276 7181.1023622 188.4978740 263.7795276 7186.5708661 187.0769291 263.7795276 7191.8740157 184.7567323 263.7795276 7196.8503937 181.6076772 263.7795276 7201.3464567 177.7255906 263.7795276 7205.2283465 173.2283465 263.7795276 7208.3779528 168.2525984 263.7795276 7210.6968504 162.9495276 263.7795276 7212.1220472 -278.8177165 263.7795276 7789.1732283 278.8177165 263.7795276 7789.1732283 -282.6097638 263.7795276 7807.3543307 282.6097638 263.7795276 7807.3543307 -289.2047638 263.7795276 7824.7165354 289.2047638 263.7795276 7824.7165354 -298.4396850 263.7795276 7840.8267717 298.4396850 263.7795276 7840.8267717 -310.0861417 263.7795276 7855.2952756 310.0861417 263.7795276 7855.2952756 -323.8562992 263.7795276 7867.7559055 323.8562992 263.7795276 7867.7559055 -339.4095276 263.7795276 7877.9055118 339.4095276 263.7795276 7877.9055118 -434.2696850 263.7795276 7939.9921260 434.2696850 263.7795276 7939.9921260 -518.0149606 263.7795276 8016.4094488 438.9763780 263.7795276 7944.2834646 -311.5315748 263.7795276 8002.1574803 -306.7437008 263.7795276 8002.0905512 -316.2453150 263.7795276 8003.0000000 -320.7609843 263.7795276 8004.5944882 -324.9596850 263.7795276 8006.8976378 -395.7700787 263.7795276 8061.6889764 -588.5027559 263.7795276 8105.2007874 -457.4830709 263.7795276 8126.5551181 -643.9291339 263.7795276 8204.1023622 -508.6807087 263.7795276 8200.0078740 -548.1854331 263.7795276 8280.3582677 -649.8814961 263.7795276 8219.9645669 -653.5023622 263.7795276 8236.5157480 -654.7177165 263.7795276 8253.4173228 -549.6023622 263.7795276 8284.9409449 -654.7177165 263.7795276 8722.2716535 -550.2578740 263.7795276 8289.6929134 -550.1354331 263.7795276 8294.4881890 -549.2377953 263.7795276 8299.2007874 -547.5885827 263.7795276 8303.7086614 -545.2318898 263.7795276 8307.8858268 -542.2295276 263.7795276 8311.6259843 -538.6606299 263.7795276 8314.8346457 -534.6196850 263.7795276 8317.4212598 -530.2133858 263.7795276 8319.3188976 -525.5578740 263.7795276 8320.4763780 -520.7763780 263.7795276 8320.8661417 -420.7625984 263.7795276 8460.7755906 -413.2409449 263.7795276 8453.2519685 -404.5275591 263.7795276 8447.1535433 -394.8870079 263.7795276 8442.6574803 -126.5329921 263.7795276 8349.2047244 -150.7961417 263.7795276 8373.4685039 -152.5590551 263.7795276 8375.9842520 -384.6124016 263.7795276 8439.9055118 -170.4774409 263.7795276 8401.5748031 -426.8637795 263.7795276 8469.4881890 -431.3590551 263.7795276 8479.1299213 -434.1122047 263.7795276 8489.4015748 -435.0393701 263.7795276 8500.0000000 -434.1122047 263.7795276 8510.5984252 -431.3590551 263.7795276 8520.8700787 -426.8637795 263.7795276 8530.5118110 -420.7625984 263.7795276 8539.2244094 -413.2409449 263.7795276 8546.7480315 -404.5275591 263.7795276 8552.8464567 -394.8870079 263.7795276 8557.3425197 -384.6124016 263.7795276 8560.0984252 -374.0157480 263.7795276 8561.0236220 -517.1791339 263.7795276 8680.9133858 -512.2074803 263.7795276 8679.5826772 -170.4774409 263.7795276 8598.4251969 -150.7961417 263.7795276 8626.5314961 -507.0799213 263.7795276 8679.1338583 -126.5329921 263.7795276 8650.7952756 -98.4251969 263.7795276 8670.4763780 -521.8437008 263.7795276 8683.0905512 -526.0598425 263.7795276 8686.0433071 -529.6992126 263.7795276 8689.6811024 -532.6515748 263.7795276 8693.8976378 -534.8267717 263.7795276 8698.5629921 -536.1590551 263.7795276 8703.5354331 -536.6074803 263.7795276 8708.6614173 -536.6074803 263.7795276 8710.0393701 -536.2440945 263.7795276 8714.6574803 -535.1622047 263.7795276 8719.1653543 -533.3893701 263.7795276 8723.4448819 -653.2637795 263.7795276 8740.7480315 -530.9681102 263.7795276 8727.3937008 -527.9590551 263.7795276 8730.9173228 -273.0542126 263.7795276 8985.8228346 -648.9370079 263.7795276 8758.7677165 -641.8444882 263.7795276 8775.8897638 -632.1606299 263.7795276 8791.6929134 -620.1240157 263.7795276 8805.7874016 -440.0874016 263.7795276 8985.8228346 -305.7866929 263.7795276 9120.1259843 -230.9185433 263.7795276 9027.9606299 -227.3952756 263.7795276 9030.9685039 -225.3937008 263.7795276 9032.1968504 -223.4446457 263.7795276 9033.3897638 -219.1639370 263.7795276 9035.1614173 -214.6585433 263.7795276 9036.2440945 -210.0394094 263.7795276 9036.6062992 -208.6614173 263.7795276 9036.6062992 208.6614173 263.7795276 9036.6062992 210.0394094 263.7795276 9036.6062992 311.5315748 263.7795276 8002.1574803 518.0149606 263.7795276 8016.4094488 306.7437008 263.7795276 8002.0905512 316.2453150 263.7795276 8003.0000000 320.7609843 263.7795276 8004.5944882 324.9596850 263.7795276 8006.8976378 395.7700787 263.7795276 8061.6889764 588.5027559 263.7795276 8105.2007874 457.4830709 263.7795276 8126.5551181 643.9291339 263.7795276 8204.1023622 489.7606299 263.7795276 8172.8661417 508.6807087 263.7795276 8200.0078740 548.1854331 263.7795276 8280.3582677 649.8814961 263.7795276 8219.9645669 653.5023622 263.7795276 8236.5157480 654.7177165 263.7795276 8253.4173228 549.6023622 263.7795276 8284.9409449 654.7177165 263.7795276 8722.2716535 550.2578740 263.7795276 8289.6929134 550.1354331 263.7795276 8294.4881890 549.2377953 263.7795276 8299.2007874 547.5885827 263.7795276 8303.7086614 545.2318898 263.7795276 8307.8858268 542.2295276 263.7795276 8311.6259843 538.6606299 263.7795276 8314.8346457 534.6196850 263.7795276 8317.4212598 530.2133858 263.7795276 8319.3188976 525.5578740 263.7795276 8320.4763780 420.7625984 263.7795276 8460.7755906 413.2409449 263.7795276 8453.2519685 404.5275591 263.7795276 8447.1535433 394.8870079 263.7795276 8442.6574803 126.5329921 263.7795276 8349.2047244 150.7961417 263.7795276 8373.4685039 384.6124016 263.7795276 8439.9055118 170.4774409 263.7795276 8401.5748031 374.0157480 263.7795276 8438.9763780 426.8637795 263.7795276 8469.4881890 431.3590551 263.7795276 8479.1299213 434.1122047 263.7795276 8489.4015748 435.0393701 263.7795276 8500.0000000 434.1122047 263.7795276 8510.5984252 431.3590551 263.7795276 8520.8700787 426.8637795 263.7795276 8530.5118110 420.7625984 263.7795276 8539.2244094 413.2409449 263.7795276 8546.7480315 404.5275591 263.7795276 8552.8464567 394.8870079 263.7795276 8557.3425197 384.6124016 263.7795276 8560.0984252 517.1791339 263.7795276 8680.9133858 512.2074803 263.7795276 8679.5826772 170.4774409 263.7795276 8598.4251969 150.7961417 263.7795276 8626.5314961 507.0799213 263.7795276 8679.1338583 126.5329921 263.7795276 8650.7952756 521.8437008 263.7795276 8683.0905512 526.0598425 263.7795276 8686.0433071 529.6992126 263.7795276 8689.6811024 532.6515748 263.7795276 8693.8976378 534.8267717 263.7795276 8698.5629921 536.1590551 263.7795276 8703.5354331 536.6074803 263.7795276 8708.6614173 536.6074803 263.7795276 8710.0393701 536.2440945 263.7795276 8714.6574803 535.1622047 263.7795276 8719.1653543 533.3893701 263.7795276 8723.4448819 653.2637795 263.7795276 8740.7480315 530.9681102 263.7795276 8727.3937008 527.9590551 263.7795276 8730.9173228 489.7606299 263.7795276 8769.1181102 648.9370079 263.7795276 8758.7677165 641.8444882 263.7795276 8775.8897638 273.0542126 263.7795276 8985.8228346 632.1606299 263.7795276 8791.6929134 620.1240157 263.7795276 8805.7874016 489.7606299 263.7795276 8936.1496063 305.7866929 263.7795276 9120.1259843 230.9185433 263.7795276 9027.9606299 227.3952756 263.7795276 9030.9685039 225.3937008 263.7795276 9032.1968504 223.4446457 263.7795276 9033.3897638 219.1639370 263.7795276 9035.1614173 214.6585433 263.7795276 9036.2440945 -291.6935827 263.7795276 9132.1614173 291.6935827 263.7795276 9132.1614173 -275.8910236 263.7795276 9141.8464567 275.8910236 263.7795276 9141.8464567 -258.7681890 263.7795276 9148.9370079 258.7681890 263.7795276 9148.9370079 -240.7466142 263.7795276 9153.2637795 240.7466142 263.7795276 9153.2637795 -225.3937008 263.7795276 9154.4724409 225.3937008 263.7795276 9154.4724409 -222.2701181 263.7795276 9154.7165354 222.2701181 263.7795276 9154.7165354 232.3503543 263.7795276 8767.5118110 10.5966417 263.7795276 8754.8661417 20.8713071 263.7795276 8757.6181102 30.5118110 263.7795276 8762.1141732 39.2252244 263.7795276 8768.2125984 225.3937008 263.7795276 8772.7480315 46.7468110 263.7795276 8775.7362205 192.6105512 263.7795276 8797.4094488 52.8479921 263.7795276 8784.4488189 57.3434646 263.7795276 8794.0905512 60.0965354 263.7795276 8804.3622047 189.2058661 263.7795276 8800.0393701 188.7355906 263.7795276 8800.4015748 185.4085433 263.7795276 8803.9921260 182.7209055 263.7795276 8808.0866142 61.0236220 263.7795276 8814.9606299 180.7465748 263.7795276 8812.5669291 179.5398425 263.7795276 8817.3110236 61.0236220 263.7795276 8874.0157480 179.1338583 263.7795276 8822.1929134 179.1338583 263.7795276 9007.0787402 60.0965354 263.7795276 8884.6141732 57.3434646 263.7795276 8894.8858268 52.8479921 263.7795276 8904.5275591 46.7468110 263.7795276 8913.2401575 39.2252244 263.7795276 8920.7637795 30.5118110 263.7795276 8926.8622047 20.8713071 263.7795276 8931.3582677 10.5966417 263.7795276 8934.1141732 -179.5824409 263.7795276 9012.2086614 179.5824409 263.7795276 9012.2086614 -180.9145669 263.7795276 9017.1771654 180.9145669 263.7795276 9017.1771654 -183.0898031 263.7795276 9021.8425197 183.0898031 263.7795276 9021.8425197 -186.0419685 263.7795276 9026.0590551 186.0419685 263.7795276 9026.0590551 -189.6814567 263.7795276 9029.7007874 189.6814567 263.7795276 9029.7007874 -193.8976378 263.7795276 9032.6535433 193.8976378 263.7795276 9032.6535433 -198.5624016 263.7795276 9034.8267717 198.5624016 263.7795276 9034.8267717 -203.5340157 263.7795276 9036.1574803 203.5340157 263.7795276 9036.1574803 -322.1918504 263.7795276 8679.1338583 -67.3268110 263.7795276 8684.9803150 -317.3123228 263.7795276 8679.5393701 -312.5669685 263.7795276 8680.7480315 -308.0862598 263.7795276 8682.7204724 -303.9934646 263.7795276 8685.4094488 -34.1827126 263.7795276 8693.8582677 -300.4010630 263.7795276 8688.7362205 -297.4078740 263.7795276 8692.6102362 -302.0075591 263.7795276 8002.7952756 302.0075591 263.7795276 8002.7952756 -297.4477165 263.7795276 8004.2559055 297.4477165 263.7795276 8004.2559055 -293.1840945 263.7795276 8006.4370079 293.1840945 263.7795276 8006.4370079 -289.3288583 263.7795276 8009.2755906 289.3288583 263.7795276 8009.2755906 -285.9833071 263.7795276 8012.7007874 285.9833071 263.7795276 8012.7007874 -283.2355118 263.7795276 8016.6220472 -10.5966417 263.7795276 8065.8897638 -20.8713071 263.7795276 8068.6417323 -30.5118110 263.7795276 8073.1377953 -193.4866929 263.7795276 8169.7913386 -39.2252244 263.7795276 8079.2362205 -46.7468110 263.7795276 8086.7598425 -52.8479921 263.7795276 8095.4724409 -57.3434646 263.7795276 8105.1141732 -60.0965354 263.7795276 8115.3858268 -61.0236220 263.7795276 8125.9842520 -61.0236220 263.7795276 8185.0393701 -191.3704724 263.7795276 8174.2047244 -190.0126378 263.7795276 8178.9094488 -189.4505512 263.7795276 8183.7716535 -189.6995669 263.7795276 8188.6614173 -60.0965354 263.7795276 8195.6377953 -190.7529134 263.7795276 8193.4409449 -192.5816142 263.7795276 8197.9803150 -57.3434646 263.7795276 8205.9094488 -195.1354331 263.7795276 8202.1574803 -198.3441339 263.7795276 8205.8543307 -202.1195669 263.7795276 8208.9724409 -52.8479921 263.7795276 8215.5511811 -225.3937008 263.7795276 8227.4803150 -46.7468110 263.7795276 8224.2637795 -39.2252244 263.7795276 8231.7874016 -238.0594488 263.7795276 8237.5551181 -30.5118110 263.7795276 8237.8858268 -20.8713071 263.7795276 8242.3818898 -10.5966417 263.7795276 8245.1377953 654.7177165 263.7795276 8253.4173228 654.7177165 47.2440945 8722.2716535 654.7177165 47.2440945 8253.4173228 654.7177165 263.7795276 8722.2716535 653.5023622 47.2440945 8236.5157480 653.5023622 263.7795276 8236.5157480 649.8814961 263.7795276 8219.9645669 649.8814961 47.2440945 8219.9645669 643.9291339 263.7795276 8204.1023622 643.9291339 47.2440945 8204.1023622 588.5027559 263.7795276 8105.2007874 588.5027559 47.2440945 8105.2007874 518.0149606 263.7795276 8016.4094488 518.0149606 47.2440945 8016.4094488 438.9763780 47.2440945 7944.2834646 438.9763780 263.7795276 7944.2834646 434.2696850 47.2440945 7939.9921260 434.2696850 263.7795276 7939.9921260 339.4095276 47.2440945 7877.9055118 339.4095276 263.7795276 7877.9055118 323.8562992 47.2440945 7867.7559055 323.8562992 263.7795276 7867.7559055 310.0861417 47.2440945 7855.2952756 310.0861417 263.7795276 7855.2952756 298.4396850 47.2440945 7840.8267717 298.4396850 263.7795276 7840.8267717 289.2047638 263.7795276 7824.7165354 289.2047638 47.2440945 7824.7165354 282.6097638 263.7795276 7807.3543307 282.6097638 47.2440945 7807.3543307 278.8177165 263.7795276 7789.1732283 278.8177165 47.2440945 7789.1732283 277.9223622 47.2440945 7770.6220472 277.9223622 263.7795276 7770.6220472 392.7365354 263.7795276 4004.0748031 392.7365354 47.2440945 4004.0748031 395.1551181 263.7795276 3983.6299213 395.1551181 47.2440945 3983.6299213 401.0870079 263.7795276 3963.9133858 401.0870079 47.2440945 3963.9133858 410.3523622 47.2440945 3945.5275591 410.3523622 263.7795276 3945.5275591 551.1811024 263.7795276 3717.9157480 551.1811024 47.2440945 3717.9157480 551.1811024 263.7795276 3170.0318898 551.1811024 47.2440945 3170.0318898 236.2204724 47.2440945 2988.1889764 236.2204724 263.7795276 2988.1889764 -236.2204724 47.2440945 2988.1889764 -236.2204724 263.7795276 2988.1889764 -551.1811024 47.2440945 3170.0318898 -551.1811024 263.7795276 3170.0318898 -551.1811024 47.2440945 3717.9157480 -551.1811024 263.7795276 3717.9157480 -410.3523622 263.7795276 3945.5275591 -410.3523622 47.2440945 3945.5275591 -401.0870079 263.7795276 3963.9133858 -401.0870079 47.2440945 3963.9133858 -395.1551181 263.7795276 3983.6299213 -395.1551181 47.2440945 3983.6299213 -392.7365354 263.7795276 4004.0748031 -392.7365354 47.2440945 4004.0748031 -277.9223622 47.2440945 7770.6220472 -277.9223622 263.7795276 7770.6220472 -278.8177165 263.7795276 7789.1732283 -278.8177165 47.2440945 7789.1732283 -282.6097638 263.7795276 7807.3543307 -282.6097638 47.2440945 7807.3543307 -289.2047638 263.7795276 7824.7165354 -289.2047638 47.2440945 7824.7165354 -298.4396850 263.7795276 7840.8267717 -298.4396850 47.2440945 7840.8267717 -310.0861417 263.7795276 7855.2952756 -310.0861417 47.2440945 7855.2952756 -323.8562992 47.2440945 7867.7559055 -323.8562992 263.7795276 7867.7559055 -339.4095276 47.2440945 7877.9055118 -339.4095276 263.7795276 7877.9055118 -434.2696850 47.2440945 7939.9921260 -434.2696850 263.7795276 7939.9921260 -518.0149606 47.2440945 8016.4094488 -518.0149606 263.7795276 8016.4094488 -588.5027559 47.2440945 8105.2007874 -588.5027559 263.7795276 8105.2007874 -643.9291339 263.7795276 8204.1023622 -643.9291339 47.2440945 8204.1023622 -649.8814961 263.7795276 8219.9645669 -649.8814961 47.2440945 8219.9645669 -653.5023622 263.7795276 8236.5157480 -653.5023622 47.2440945 8236.5157480 -654.7177165 263.7795276 8253.4173228 -654.7177165 47.2440945 8253.4173228 -654.7177165 263.7795276 8722.2716535 -654.7177165 47.2440945 8722.2716535 -653.2637795 47.2440945 8740.7480315 -653.2637795 263.7795276 8740.7480315 -648.9370079 263.7795276 8758.7677165 -648.9370079 47.2440945 8758.7677165 -641.8444882 47.2440945 8775.8897638 -641.8444882 263.7795276 8775.8897638 -632.1606299 263.7795276 8791.6929134 -632.1606299 47.2440945 8791.6929134 -620.1240157 47.2440945 8805.7874016 -620.1240157 263.7795276 8805.7874016 -440.0874016 47.2440945 8985.8228346 -440.0874016 263.7795276 8985.8228346 -305.7866929 263.7795276 9120.1259843 -305.7866929 47.2440945 9120.1259843 -291.6935827 47.2440945 9132.1614173 -291.6935827 263.7795276 9132.1614173 -275.8910236 47.2440945 9141.8464567 -275.8910236 263.7795276 9141.8464567 -258.7681890 47.2440945 9148.9370079 -258.7681890 263.7795276 9148.9370079 -240.7466142 47.2440945 9153.2637795 -240.7466142 263.7795276 9153.2637795 -225.3937008 47.2440945 9154.4724409 -225.3937008 263.7795276 9154.4724409 -222.2701181 47.2440945 9154.7165354 -222.2701181 263.7795276 9154.7165354 222.2701181 47.2440945 9154.7165354 222.2701181 263.7795276 9154.7165354 225.3937008 47.2440945 9154.4724409 225.3937008 263.7795276 9154.4724409 240.7466142 47.2440945 9153.2637795 240.7466142 263.7795276 9153.2637795 258.7681890 47.2440945 9148.9370079 258.7681890 263.7795276 9148.9370079 275.8910236 47.2440945 9141.8464567 275.8910236 263.7795276 9141.8464567 291.6935827 47.2440945 9132.1614173 291.6935827 263.7795276 9132.1614173 305.7866929 47.2440945 9120.1259843 305.7866929 263.7795276 9120.1259843 489.7606299 47.2440945 8936.1496063 489.7606299 263.7795276 8936.1496063 620.1240157 47.2440945 8805.7874016 620.1240157 263.7795276 8805.7874016 632.1606299 263.7795276 8791.6929134 632.1606299 47.2440945 8791.6929134 641.8444882 263.7795276 8775.8897638 641.8444882 47.2440945 8775.8897638 648.9370079 263.7795276 8758.7677165 648.9370079 47.2440945 8758.7677165 653.2637795 47.2440945 8740.7480315 653.2637795 263.7795276 8740.7480315 0.0000000 47.2440945 8303.1496063 -297.4078740 47.2440945 8307.3897638 -270.0010630 47.2440945 8270.5433071 -34.1827126 47.2440945 8306.1417323 -67.3268110 47.2440945 8315.0196850 -300.4010630 47.2440945 8311.2637795 -303.9934646 47.2440945 8314.5905512 -308.0862598 47.2440945 8317.2795276 -98.4251969 47.2440945 8329.5236220 -312.5669685 47.2440945 8319.2519685 -317.3123228 47.2440945 8320.4606299 -322.1918504 47.2440945 8320.8661417 -520.7763780 47.2440945 8320.8661417 -283.2355118 47.2440945 8016.6220472 -30.5118110 47.2440945 8073.1377953 -193.4866929 47.2440945 8169.7913386 -20.8713071 47.2440945 8068.6417323 -10.5966417 47.2440945 8065.8897638 0.0000000 47.2440945 8064.9606299 -39.2252244 47.2440945 8079.2362205 -46.7468110 47.2440945 8086.7598425 -52.8479921 47.2440945 8095.4724409 -57.3434646 47.2440945 8105.1141732 -60.0965354 47.2440945 8115.3858268 -61.0236220 47.2440945 8125.9842520 -61.0236220 47.2440945 8185.0393701 -191.3704724 47.2440945 8174.2047244 -190.0126378 47.2440945 8178.9094488 -189.4505512 47.2440945 8183.7716535 -189.6995669 47.2440945 8188.6614173 -60.0965354 47.2440945 8195.6377953 -190.7529134 47.2440945 8193.4409449 -192.5816142 47.2440945 8197.9803150 -57.3434646 47.2440945 8205.9094488 -195.1354331 47.2440945 8202.1574803 -198.3441339 47.2440945 8205.8543307 -202.1195669 47.2440945 8208.9724409 -52.8479921 47.2440945 8215.5511811 -225.3937008 47.2440945 8227.4803150 -46.7468110 47.2440945 8224.2637795 -39.2252244 47.2440945 8231.7874016 -238.0594488 47.2440945 8237.5551181 -30.5118110 47.2440945 8237.8858268 -20.8713071 47.2440945 8242.3818898 -10.5966417 47.2440945 8245.1377953 0.0000000 47.2440945 8246.0629921 270.0010630 47.2440945 8270.5433071 297.4078740 47.2440945 8307.3897638 34.1827126 47.2440945 8306.1417323 67.3268110 47.2440945 8315.0196850 300.4010630 47.2440945 8311.2637795 303.9934646 47.2440945 8314.5905512 308.0862598 47.2440945 8317.2795276 98.4251969 47.2440945 8329.5236220 312.5669685 47.2440945 8319.2519685 317.3123228 47.2440945 8320.4606299 322.1918504 47.2440945 8320.8661417 302.0075591 47.2440945 8002.7952756 -306.7437008 47.2440945 8002.0905512 306.7437008 47.2440945 8002.0905512 -302.0075591 47.2440945 8002.7952756 297.4477165 47.2440945 8004.2559055 -297.4477165 47.2440945 8004.2559055 293.1840945 47.2440945 8006.4370079 -293.1840945 47.2440945 8006.4370079 289.3288583 47.2440945 8009.2755906 -289.3288583 47.2440945 8009.2755906 285.9833071 47.2440945 8012.7007874 -285.9833071 47.2440945 8012.7007874 283.2355118 47.2440945 8016.6220472 10.5966417 47.2440945 8065.8897638 20.8713071 47.2440945 8068.6417323 30.5118110 47.2440945 8073.1377953 193.4866929 47.2440945 8169.7913386 39.2252244 47.2440945 8079.2362205 46.7468110 47.2440945 8086.7598425 52.8479921 47.2440945 8095.4724409 57.3434646 47.2440945 8105.1141732 60.0965354 47.2440945 8115.3858268 61.0236220 47.2440945 8125.9842520 61.0236220 47.2440945 8185.0393701 191.3704724 47.2440945 8174.2047244 190.0126378 47.2440945 8178.9094488 189.4505512 47.2440945 8183.7716535 189.6995669 47.2440945 8188.6614173 60.0965354 47.2440945 8195.6377953 190.7529134 47.2440945 8193.4409449 192.5816142 47.2440945 8197.9803150 57.3434646 47.2440945 8205.9094488 195.1354331 47.2440945 8202.1574803 198.3441339 47.2440945 8205.8543307 202.1196063 47.2440945 8208.9724409 52.8479921 47.2440945 8215.5511811 225.3937008 47.2440945 8227.4803150 46.7468110 47.2440945 8224.2637795 39.2252244 47.2440945 8231.7874016 238.0594488 47.2440945 8237.5551181 30.5118110 47.2440945 8237.8858268 20.8713071 47.2440945 8242.3818898 10.5966417 47.2440945 8245.1377953 24.9719646 47.2440945 3361.2279528 -19.5552559 47.2440945 3361.2976378 -24.4308189 47.2440945 3361.1901575 19.8251417 47.2440945 3361.2700787 14.7637795 47.2440945 3362.2043307 -14.7637795 47.2440945 3362.2043307 551.1811024 47.2440945 3170.0318898 -236.2204724 47.2440945 2988.1889764 236.2204724 47.2440945 2988.1889764 0.0000000 47.2440945 3135.8263780 8.5456772 47.2440945 3136.5744094 16.8317008 47.2440945 3138.7944882 24.6062992 47.2440945 3142.4200787 31.6332480 47.2440945 3147.3401575 37.6990354 47.2440945 3153.4059055 42.6193701 47.2440945 3160.4326772 46.2447244 47.2440945 3168.2078740 48.4649606 47.2440945 3176.4944882 551.1811024 47.2440945 3717.9157480 49.2125984 47.2440945 3185.0389764 48.4649606 47.2440945 3193.5850394 46.2447244 47.2440945 3201.8708661 42.6193701 47.2440945 3209.6452756 37.6990354 47.2440945 3216.6728346 31.6332480 47.2440945 3222.7385827 24.6062992 47.2440945 3227.6590551 16.8317008 47.2440945 3231.2838583 8.5456772 47.2440945 3233.5043307 0.0000000 47.2440945 3234.2515748 425.3338583 47.2440945 3623.7181102 418.3070866 47.2440945 3618.7984252 39.3768110 47.2440945 3366.3385827 34.8986102 47.2440945 3363.8015748 30.0478622 47.2440945 3362.0807087 43.3464173 47.2440945 3369.6145669 46.6868110 47.2440945 3373.5311024 49.2964567 47.2440945 3377.9669291 51.0961417 47.2440945 3382.7893701 52.0311024 47.2440945 3387.8503937 52.0729528 47.2440945 3392.9972441 51.2204331 47.2440945 3398.0728346 49.4994488 47.2440945 3402.9244094 46.9622835 47.2440945 3407.4019685 43.6860630 47.2440945 3411.3720472 39.7702756 47.2440945 3414.7118110 35.3339252 47.2440945 3417.3220472 30.5118110 47.2440945 3419.1212598 410.5326772 47.2440945 3615.1732283 402.2464567 47.2440945 3612.9523622 393.7007874 47.2440945 3612.2047244 431.4000000 47.2440945 3629.7838583 436.3200787 47.2440945 3636.8110236 439.9456693 47.2440945 3644.5858268 442.1657480 47.2440945 3652.8720472 442.9133858 47.2440945 3661.4173228 442.1657480 47.2440945 3669.9629921 439.9456693 47.2440945 3678.2492126 436.3200787 47.2440945 3686.0236220 431.4000000 47.2440945 3693.0503937 425.3338583 47.2440945 3699.1165354 418.3070866 47.2440945 3704.0366142 410.5326772 47.2440945 3707.6618110 402.2464567 47.2440945 3709.8822835 393.7007874 47.2440945 3710.6299213 362.0675591 47.2440945 3623.7181102 30.5118110 47.2440945 3903.7133858 369.0944882 47.2440945 3618.7984252 376.8691339 47.2440945 3615.1732283 385.1551181 47.2440945 3612.9523622 356.0017717 47.2440945 3629.7838583 351.0814567 47.2440945 3636.8110236 347.4561024 47.2440945 3644.5858268 345.2359055 47.2440945 3652.8720472 344.4881890 47.2440945 3661.4173228 345.2359055 47.2440945 3669.9629921 347.4561024 47.2440945 3678.2492126 351.0814567 47.2440945 3686.0236220 356.0017717 47.2440945 3693.0503937 362.0675591 47.2440945 3699.1165354 369.0944882 47.2440945 3704.0366142 376.8691339 47.2440945 3707.6618110 385.1551181 47.2440945 3709.8822835 410.3523622 47.2440945 3945.5275591 35.3339252 47.2440945 3905.5129921 39.7702756 47.2440945 3908.1228346 43.6860630 47.2440945 3911.4629921 46.9622835 47.2440945 3915.4326772 49.4994488 47.2440945 3919.9106299 51.2204331 47.2440945 3924.7614173 52.0729528 47.2440945 3929.8374016 52.0311024 47.2440945 3934.9842520 51.0961417 47.2440945 3940.0472441 49.2964567 47.2440945 3944.8661417 46.6868110 47.2440945 3949.3031496 401.0870079 47.2440945 3963.9133858 43.3464173 47.2440945 3953.2204724 39.3768110 47.2440945 3956.4960630 34.8986102 47.2440945 3959.0314961 30.0478622 47.2440945 3960.7559055 24.9719646 47.2440945 3961.6062992 -24.9719646 47.2440945 3961.6062992 19.8251417 47.2440945 3961.5629921 -14.7637795 47.2440945 3960.6299213 14.7637795 47.2440945 3960.6299213 -19.8251417 47.2440945 3961.5629921 -551.1811024 47.2440945 3170.0318898 -8.5456772 47.2440945 3136.5744094 -16.8317008 47.2440945 3138.7944882 -24.6062992 47.2440945 3142.4200787 -31.6332480 47.2440945 3147.3401575 -37.6990354 47.2440945 3153.4059055 -42.6193701 47.2440945 3160.4326772 -46.2447244 47.2440945 3168.2078740 -48.4649606 47.2440945 3176.4944882 -551.1811024 47.2440945 3717.9157480 -49.2125984 47.2440945 3185.0389764 -48.4649606 47.2440945 3193.5850394 -46.2447244 47.2440945 3201.8708661 -42.6193701 47.2440945 3209.6452756 -37.6990354 47.2440945 3216.6728346 -31.6332480 47.2440945 3222.7385827 -24.6062992 47.2440945 3227.6590551 -16.8317008 47.2440945 3231.2838583 -8.5456772 47.2440945 3233.5043307 -425.3338583 47.2440945 3623.7181102 -418.3070866 47.2440945 3618.7984252 -38.2423465 47.2440945 3365.5952756 -33.9035591 47.2440945 3363.3692913 -29.2574724 47.2440945 3361.8874016 -42.1554724 47.2440945 3368.5059055 -45.5362205 47.2440945 3372.0208661 -48.2923622 47.2440945 3376.0440945 -50.3487008 47.2440945 3380.4661417 -51.6491732 47.2440945 3385.1665354 -52.1582677 47.2440945 3390.0161417 -51.8621260 47.2440945 3394.8838583 -50.7688189 47.2440945 3399.6362205 -48.9081890 47.2440945 3404.1444882 -46.3309843 47.2440945 3408.2842520 -43.1074409 47.2440945 3411.9444882 -39.3255827 47.2440945 3415.0228346 -35.0885039 47.2440945 3417.4374016 -30.5118110 47.2440945 3419.1212598 -410.5326772 47.2440945 3615.1732283 -402.2464567 47.2440945 3612.9523622 -393.7007874 47.2440945 3612.2047244 -431.4000000 47.2440945 3629.7838583 -436.3200787 47.2440945 3636.8110236 -439.9456693 47.2440945 3644.5858268 -442.1657480 47.2440945 3652.8720472 -442.9133858 47.2440945 3661.4173228 -442.1657480 47.2440945 3669.9629921 -439.9456693 47.2440945 3678.2492126 -436.3200787 47.2440945 3686.0236220 -431.4000000 47.2440945 3693.0503937 -425.3338583 47.2440945 3699.1165354 -418.3070866 47.2440945 3704.0366142 -410.5326772 47.2440945 3707.6618110 -402.2464567 47.2440945 3709.8822835 -393.7007874 47.2440945 3710.6299213 -184.9788583 47.2440945 8432.6732283 -304.3639764 47.2440945 8439.9055118 -314.9606299 47.2440945 8438.9763780 -193.8598031 47.2440945 8465.8188976 -294.0893307 47.2440945 8442.6574803 -284.4488189 47.2440945 8447.1535433 -275.7353937 47.2440945 8453.2519685 -268.2138189 47.2440945 8460.7755906 -262.1125984 47.2440945 8469.4881890 -196.8503937 47.2440945 8500.0000000 -257.6172047 47.2440945 8479.1299213 -254.8640945 47.2440945 8489.4015748 -253.9370079 47.2440945 8500.0000000 -193.8598031 47.2440945 8534.1811024 -254.8640945 47.2440945 8510.5984252 -257.6172047 47.2440945 8520.8700787 -262.1125984 47.2440945 8530.5118110 -268.2138189 47.2440945 8539.2244094 -184.9788583 47.2440945 8567.3267717 -275.7353937 47.2440945 8546.7480315 -284.4488189 47.2440945 8552.8464567 -294.0893307 47.2440945 8557.3425197 -304.3639764 47.2440945 8560.0984252 -314.9606299 47.2440945 8561.0236220 -374.0157480 47.2440945 8561.0236220 184.9788583 47.2440945 8432.6732283 304.3639764 47.2440945 8439.9055118 193.8598031 47.2440945 8465.8188976 314.9606299 47.2440945 8438.9763780 374.0157480 47.2440945 8438.9763780 294.0893307 47.2440945 8442.6574803 284.4488189 47.2440945 8447.1535433 275.7353937 47.2440945 8453.2519685 268.2138189 47.2440945 8460.7755906 262.1125984 47.2440945 8469.4881890 196.8503937 47.2440945 8500.0000000 257.6172047 47.2440945 8479.1299213 254.8640945 47.2440945 8489.4015748 253.9370079 47.2440945 8500.0000000 254.8640945 47.2440945 8510.5984252 193.8598031 47.2440945 8534.1811024 257.6172047 47.2440945 8520.8700787 262.1125984 47.2440945 8530.5118110 268.2138189 47.2440945 8539.2244094 184.9788583 47.2440945 8567.3267717 275.7353937 47.2440945 8546.7480315 284.4488189 47.2440945 8552.8464567 294.0893307 47.2440945 8557.3425197 304.3639764 47.2440945 8560.0984252 314.9606299 47.2440945 8561.0236220 -385.1551181 47.2440945 3612.9523622 -376.8691339 47.2440945 3615.1732283 -369.0944882 47.2440945 3618.7984252 -362.0675591 47.2440945 3623.7181102 -30.5118110 47.2440945 3903.7133858 -356.0017717 47.2440945 3629.7838583 -351.0814567 47.2440945 3636.8110236 -347.4561024 47.2440945 3644.5858268 -345.2359055 47.2440945 3652.8720472 -344.4881890 47.2440945 3661.4173228 -345.2359055 47.2440945 3669.9629921 -347.4561024 47.2440945 3678.2492126 -351.0814567 47.2440945 3686.0236220 -356.0017717 47.2440945 3693.0503937 -362.0675591 47.2440945 3699.1165354 -369.0944882 47.2440945 3704.0366142 -376.8691339 47.2440945 3707.6618110 -385.1551181 47.2440945 3709.8822835 -410.3523622 47.2440945 3945.5275591 -35.3339252 47.2440945 3905.5129921 -39.7702756 47.2440945 3908.1228346 -43.6860630 47.2440945 3911.4629921 -46.9622835 47.2440945 3915.4326772 -49.4994488 47.2440945 3919.9106299 -51.2204331 47.2440945 3924.7614173 -52.0729528 47.2440945 3929.8374016 -52.0311024 47.2440945 3934.9842520 -51.0961417 47.2440945 3940.0472441 -49.2964567 47.2440945 3944.8661417 -46.6868110 47.2440945 3949.3031496 -401.0870079 47.2440945 3963.9133858 -43.3464173 47.2440945 3953.2204724 -39.3768110 47.2440945 3956.4960630 -34.8986102 47.2440945 3959.0314961 -30.0478622 47.2440945 3960.7559055 395.1551181 47.2440945 3983.6299213 -395.1551181 47.2440945 3983.6299213 392.7365354 47.2440945 4004.0748031 -392.7365354 47.2440945 4004.0748031 181.6076772 47.2440945 4680.5433071 184.7567323 47.2440945 4685.0393701 187.0769291 47.2440945 4690.0157480 188.4978740 47.2440945 4695.3188976 188.9763780 47.2440945 4700.7874016 277.9223622 47.2440945 7770.6220472 177.7255906 47.2440945 4676.6614173 173.2283465 47.2440945 4673.5118110 168.2525984 47.2440945 4671.1889764 162.9495276 47.2440945 4669.7716535 157.4803150 47.2440945 4669.2913386 188.4978740 47.2440945 4706.2559055 187.0769291 47.2440945 4711.5590551 184.7567323 47.2440945 4716.5354331 181.6076772 47.2440945 4721.0314961 177.7255906 47.2440945 4724.9133858 173.2283465 47.2440945 4728.0629921 168.2525984 47.2440945 4730.3858268 162.9495276 47.2440945 4731.8031496 157.4803150 47.2440945 4732.2834646 -157.4803150 47.2440945 4732.2834646 188.4978740 47.2440945 7175.6338583 187.0769291 47.2440945 7170.3307087 184.7567323 47.2440945 7165.3543307 181.6076772 47.2440945 7160.8582677 177.7255906 47.2440945 7156.9763780 173.2283465 47.2440945 7153.8267717 168.2525984 47.2440945 7151.5039370 162.9495276 47.2440945 7150.0866142 157.4803150 47.2440945 7149.6062992 188.9763780 47.2440945 7181.1023622 188.4978740 47.2440945 7186.5708661 187.0769291 47.2440945 7191.8740157 184.7567323 47.2440945 7196.8503937 181.6076772 47.2440945 7201.3464567 177.7255906 47.2440945 7205.2283465 173.2283465 47.2440945 7208.3779528 168.2525984 47.2440945 7210.6968504 162.9495276 47.2440945 7212.1220472 157.4803150 47.2440945 7212.5984252 -157.4803150 47.2440945 7212.5984252 152.0111024 47.2440945 7150.0866142 -157.4803150 47.2440945 7149.6062992 -152.5590551 47.2440945 7150.0354331 -152.0111024 47.2440945 7150.0866142 146.7080315 47.2440945 7151.5039370 -146.7080315 47.2440945 7151.5039370 141.7322835 47.2440945 7153.8267717 -141.7322835 47.2440945 7153.8267717 137.2350394 47.2440945 7156.9763780 -137.2350394 47.2440945 7156.9763780 133.3529528 47.2440945 7160.8582677 -133.3529528 47.2440945 7160.8582677 130.2039370 47.2440945 7165.3543307 -130.2039370 47.2440945 7165.3543307 127.8837008 47.2440945 7170.3307087 -127.8837008 47.2440945 7170.3307087 126.4627559 47.2440945 7175.6338583 -126.4627559 47.2440945 7175.6338583 125.9842520 47.2440945 7181.1023622 -125.9842520 47.2440945 7181.1023622 126.4627559 47.2440945 7186.5708661 -126.4627559 47.2440945 7186.5708661 127.8837008 47.2440945 7191.8740157 -127.8837008 47.2440945 7191.8740157 130.2039370 47.2440945 7196.8503937 -130.2039370 47.2440945 7196.8503937 133.3529528 47.2440945 7201.3464567 -133.3529528 47.2440945 7201.3464567 137.2350394 47.2440945 7205.2283465 -137.2350394 47.2440945 7205.2283465 141.7322835 47.2440945 7208.3779528 -141.7322835 47.2440945 7208.3779528 146.7080315 47.2440945 7210.6968504 -146.7080315 47.2440945 7210.6968504 152.0111024 47.2440945 7212.1220472 -152.0111024 47.2440945 7212.1220472 152.0111024 47.2440945 4669.7716535 -157.4803150 47.2440945 4669.2913386 -152.5590551 47.2440945 4669.7204724 -152.0111024 47.2440945 4669.7716535 146.7080315 47.2440945 4671.1889764 -146.7080315 47.2440945 4671.1889764 141.7322835 47.2440945 4673.5118110 -141.7322835 47.2440945 4673.5118110 137.2350394 47.2440945 4676.6614173 -137.2350394 47.2440945 4676.6614173 133.3529528 47.2440945 4680.5433071 -133.3529528 47.2440945 4680.5433071 130.2039370 47.2440945 4685.0393701 -130.2039370 47.2440945 4685.0393701 127.8837008 47.2440945 4690.0157480 -127.8837008 47.2440945 4690.0157480 126.4627559 47.2440945 4695.3188976 -126.4627559 47.2440945 4695.3188976 125.9842520 47.2440945 4700.7874016 -125.9842520 47.2440945 4700.7874016 126.4627559 47.2440945 4706.2559055 -126.4627559 47.2440945 4706.2559055 127.8837008 47.2440945 4711.5590551 -127.8837008 47.2440945 4711.5590551 130.2039370 47.2440945 4716.5354331 -130.2039370 47.2440945 4716.5354331 133.3529528 47.2440945 4721.0314961 -133.3529528 47.2440945 4721.0314961 137.2350394 47.2440945 4724.9133858 -137.2350394 47.2440945 4724.9133858 141.7322835 47.2440945 4728.0629921 -141.7322835 47.2440945 4728.0629921 146.7080315 47.2440945 4730.3858268 -146.7080315 47.2440945 4730.3858268 152.0111024 47.2440945 4731.8031496 -152.0111024 47.2440945 4731.8031496 -152.5590551 47.2440945 4731.8543307 -67.3268110 47.2440945 8684.9803150 -322.1918504 47.2440945 8679.1338583 -98.4251969 47.2440945 8670.4763780 -317.3123228 47.2440945 8679.5393701 -312.5669685 47.2440945 8680.7480315 -308.0862598 47.2440945 8682.7204724 -303.9934646 47.2440945 8685.4094488 -34.1827126 47.2440945 8693.8582677 -300.4010630 47.2440945 8688.7362205 -297.4078740 47.2440945 8692.6102362 -267.5136614 47.2440945 8732.3503937 0.0000000 47.2440945 8696.8503937 267.5136614 47.2440945 8732.3503937 232.3503543 47.2440945 8767.5118110 0.0000000 47.2440945 8753.9370079 10.5966417 47.2440945 8754.8661417 20.8713071 47.2440945 8757.6181102 30.5118110 47.2440945 8762.1141732 39.2252244 47.2440945 8768.2125984 225.3937008 47.2440945 8772.7480315 46.7468110 47.2440945 8775.7362205 192.6105512 47.2440945 8797.4094488 52.8479921 47.2440945 8784.4488189 57.3434646 47.2440945 8794.0905512 60.0965354 47.2440945 8804.3622047 189.2058661 47.2440945 8800.0393701 188.7355906 47.2440945 8800.4015748 185.4085433 47.2440945 8803.9921260 182.7209055 47.2440945 8808.0866142 61.0236220 47.2440945 8814.9606299 180.7465748 47.2440945 8812.5669291 179.5398425 47.2440945 8817.3110236 61.0236220 47.2440945 8874.0157480 179.1338583 47.2440945 8822.1929134 179.1338583 47.2440945 9007.0787402 60.0965354 47.2440945 8884.6141732 57.3434646 47.2440945 8894.8858268 52.8479921 47.2440945 8904.5275591 46.7468110 47.2440945 8913.2401575 39.2252244 47.2440945 8920.7637795 30.5118110 47.2440945 8926.8622047 20.8713071 47.2440945 8931.3582677 10.5966417 47.2440945 8934.1141732 0.0000000 47.2440945 8935.0393701 438.9763780 47.2440945 7944.2834646 311.5315748 47.2440945 8002.1574803 518.0149606 47.2440945 8016.4094488 316.2453150 47.2440945 8003.0000000 320.7609843 47.2440945 8004.5944882 324.9596850 47.2440945 8006.8976378 395.7700787 47.2440945 8061.6889764 588.5027559 47.2440945 8105.2007874 457.4830709 47.2440945 8126.5551181 643.9291339 47.2440945 8204.1023622 489.7606299 47.2440945 8172.8661417 508.6807087 47.2440945 8200.0078740 548.1854331 47.2440945 8280.3582677 649.8814961 47.2440945 8219.9645669 653.5023622 47.2440945 8236.5157480 654.7177165 47.2440945 8253.4173228 549.6023622 47.2440945 8284.9409449 654.7177165 47.2440945 8722.2716535 550.2578740 47.2440945 8289.6929134 550.1354331 47.2440945 8294.4881890 549.2377953 47.2440945 8299.2007874 547.5885827 47.2440945 8303.7086614 545.2318898 47.2440945 8307.8858268 542.2295276 47.2440945 8311.6259843 538.6606299 47.2440945 8314.8346457 534.6196850 47.2440945 8317.4212598 530.2133858 47.2440945 8319.3188976 525.5578740 47.2440945 8320.4763780 520.7763780 47.2440945 8320.8661417 420.7625984 47.2440945 8460.7755906 413.2409449 47.2440945 8453.2519685 404.5275591 47.2440945 8447.1535433 394.8870079 47.2440945 8442.6574803 126.5329921 47.2440945 8349.2047244 150.7961417 47.2440945 8373.4685039 384.6124016 47.2440945 8439.9055118 170.4774409 47.2440945 8401.5748031 426.8637795 47.2440945 8469.4881890 431.3590551 47.2440945 8479.1299213 434.1122047 47.2440945 8489.4015748 435.0393701 47.2440945 8500.0000000 434.1122047 47.2440945 8510.5984252 431.3590551 47.2440945 8520.8700787 426.8637795 47.2440945 8530.5118110 420.7625984 47.2440945 8539.2244094 413.2409449 47.2440945 8546.7480315 404.5275591 47.2440945 8552.8464567 394.8870079 47.2440945 8557.3425197 384.6124016 47.2440945 8560.0984252 374.0157480 47.2440945 8561.0236220 517.1791339 47.2440945 8680.9133858 512.2074803 47.2440945 8679.5826772 170.4774409 47.2440945 8598.4251969 150.7961417 47.2440945 8626.5314961 507.0799213 47.2440945 8679.1338583 126.5329921 47.2440945 8650.7952756 98.4251969 47.2440945 8670.4763780 521.8437008 47.2440945 8683.0905512 526.0598425 47.2440945 8686.0433071 529.6992126 47.2440945 8689.6811024 532.6515748 47.2440945 8693.8976378 534.8267717 47.2440945 8698.5629921 536.1590551 47.2440945 8703.5354331 536.6074803 47.2440945 8708.6614173 536.6074803 47.2440945 8710.0393701 536.2440945 47.2440945 8714.6574803 535.1622047 47.2440945 8719.1653543 533.3893701 47.2440945 8723.4448819 653.2637795 47.2440945 8740.7480315 530.9681102 47.2440945 8727.3937008 527.9590551 47.2440945 8730.9173228 489.7606299 47.2440945 8769.1181102 648.9370079 47.2440945 8758.7677165 641.8444882 47.2440945 8775.8897638 273.0542126 47.2440945 8985.8228346 632.1606299 47.2440945 8791.6929134 620.1240157 47.2440945 8805.7874016 489.7606299 47.2440945 8936.1496063 305.7866929 47.2440945 9120.1259843 230.9185433 47.2440945 9027.9606299 227.3952756 47.2440945 9030.9685039 225.3937008 47.2440945 9032.1968504 223.4446457 47.2440945 9033.3897638 219.1639370 47.2440945 9035.1614173 214.6585433 47.2440945 9036.2440945 210.0394094 47.2440945 9036.6062992 208.6614173 47.2440945 9036.6062992 -208.6614173 47.2440945 9036.6062992 -210.0394094 47.2440945 9036.6062992 -188.9763780 47.2440945 4700.7874016 -277.9223622 47.2440945 7770.6220472 -188.4978740 47.2440945 4695.3188976 -187.0769291 47.2440945 4690.0157480 -184.7567323 47.2440945 4685.0393701 -181.6076772 47.2440945 4680.5433071 -177.7255906 47.2440945 4676.6614173 -173.2283465 47.2440945 4673.5118110 -168.2525984 47.2440945 4671.1889764 -162.9495276 47.2440945 4669.7716535 -188.4978740 47.2440945 4706.2559055 -187.0769291 47.2440945 4711.5590551 -184.7567323 47.2440945 4716.5354331 -181.6076772 47.2440945 4721.0314961 -177.7255906 47.2440945 4724.9133858 -173.2283465 47.2440945 4728.0629921 -168.2525984 47.2440945 4730.3858268 -162.9495276 47.2440945 4731.8031496 -188.4978740 47.2440945 7175.6338583 -187.0769291 47.2440945 7170.3307087 -184.7567323 47.2440945 7165.3543307 -181.6076772 47.2440945 7160.8582677 -177.7255906 47.2440945 7156.9763780 -173.2283465 47.2440945 7153.8267717 -168.2525984 47.2440945 7151.5039370 -162.9495276 47.2440945 7150.0866142 -188.9763780 47.2440945 7181.1023622 -188.4978740 47.2440945 7186.5708661 -187.0769291 47.2440945 7191.8740157 -184.7567323 47.2440945 7196.8503937 -181.6076772 47.2440945 7201.3464567 -177.7255906 47.2440945 7205.2283465 -173.2283465 47.2440945 7208.3779528 -168.2525984 47.2440945 7210.6968504 -162.9495276 47.2440945 7212.1220472 278.8177165 47.2440945 7789.1732283 -278.8177165 47.2440945 7789.1732283 282.6097638 47.2440945 7807.3543307 -282.6097638 47.2440945 7807.3543307 289.2047638 47.2440945 7824.7165354 -289.2047638 47.2440945 7824.7165354 298.4396850 47.2440945 7840.8267717 -298.4396850 47.2440945 7840.8267717 310.0861417 47.2440945 7855.2952756 -310.0861417 47.2440945 7855.2952756 323.8562992 47.2440945 7867.7559055 -323.8562992 47.2440945 7867.7559055 339.4095276 47.2440945 7877.9055118 -339.4095276 47.2440945 7877.9055118 434.2696850 47.2440945 7939.9921260 -434.2696850 47.2440945 7939.9921260 -518.0149606 47.2440945 8016.4094488 -311.5315748 47.2440945 8002.1574803 -316.2453150 47.2440945 8003.0000000 -320.7609843 47.2440945 8004.5944882 -324.9596850 47.2440945 8006.8976378 -395.7700787 47.2440945 8061.6889764 -588.5027559 47.2440945 8105.2007874 -457.4830709 47.2440945 8126.5551181 -643.9291339 47.2440945 8204.1023622 -508.6807087 47.2440945 8200.0078740 -548.1854331 47.2440945 8280.3582677 -649.8814961 47.2440945 8219.9645669 -653.5023622 47.2440945 8236.5157480 -654.7177165 47.2440945 8253.4173228 -549.6023622 47.2440945 8284.9409449 -654.7177165 47.2440945 8722.2716535 -550.2578740 47.2440945 8289.6929134 -550.1354331 47.2440945 8294.4881890 -549.2377953 47.2440945 8299.2007874 -547.5885827 47.2440945 8303.7086614 -545.2318898 47.2440945 8307.8858268 -542.2295276 47.2440945 8311.6259843 -538.6606299 47.2440945 8314.8346457 -534.6196850 47.2440945 8317.4212598 -530.2133858 47.2440945 8319.3188976 -525.5578740 47.2440945 8320.4763780 -420.7625984 47.2440945 8460.7755906 -413.2409449 47.2440945 8453.2519685 -404.5275591 47.2440945 8447.1535433 -394.8870079 47.2440945 8442.6574803 -126.5329921 47.2440945 8349.2047244 -150.7961417 47.2440945 8373.4685039 -152.5590551 47.2440945 8375.9842520 -384.6124016 47.2440945 8439.9055118 -170.4774409 47.2440945 8401.5748031 -374.0157480 47.2440945 8438.9763780 -426.8637795 47.2440945 8469.4881890 -431.3590551 47.2440945 8479.1299213 -434.1122047 47.2440945 8489.4015748 -435.0393701 47.2440945 8500.0000000 -434.1122047 47.2440945 8510.5984252 -431.3590551 47.2440945 8520.8700787 -426.8637795 47.2440945 8530.5118110 -420.7625984 47.2440945 8539.2244094 -413.2409449 47.2440945 8546.7480315 -404.5275591 47.2440945 8552.8464567 -394.8870079 47.2440945 8557.3425197 -384.6124016 47.2440945 8560.0984252 -517.1791339 47.2440945 8680.9133858 -512.2074803 47.2440945 8679.5826772 -170.4774409 47.2440945 8598.4251969 -150.7961417 47.2440945 8626.5314961 -507.0799213 47.2440945 8679.1338583 -126.5329921 47.2440945 8650.7952756 -521.8437008 47.2440945 8683.0905512 -526.0598425 47.2440945 8686.0433071 -529.6992126 47.2440945 8689.6811024 -532.6515748 47.2440945 8693.8976378 -534.8267717 47.2440945 8698.5629921 -536.1590551 47.2440945 8703.5354331 -536.6074803 47.2440945 8708.6614173 -536.6074803 47.2440945 8710.0393701 -536.2440945 47.2440945 8714.6574803 -535.1622047 47.2440945 8719.1653543 -533.3893701 47.2440945 8723.4448819 -653.2637795 47.2440945 8740.7480315 -530.9681102 47.2440945 8727.3937008 -527.9590551 47.2440945 8730.9173228 -273.0542126 47.2440945 8985.8228346 -648.9370079 47.2440945 8758.7677165 -641.8444882 47.2440945 8775.8897638 -632.1606299 47.2440945 8791.6929134 -620.1240157 47.2440945 8805.7874016 -440.0874016 47.2440945 8985.8228346 -230.9185433 47.2440945 9027.9606299 -305.7866929 47.2440945 9120.1259843 -227.3952756 47.2440945 9030.9685039 -225.3937008 47.2440945 9032.1968504 -223.4446457 47.2440945 9033.3897638 -219.1639370 47.2440945 9035.1614173 -214.6585433 47.2440945 9036.2440945 291.6935827 47.2440945 9132.1614173 -291.6935827 47.2440945 9132.1614173 275.8910236 47.2440945 9141.8464567 -275.8910236 47.2440945 9141.8464567 258.7681890 47.2440945 9148.9370079 -258.7681890 47.2440945 9148.9370079 240.7466142 47.2440945 9153.2637795 -240.7466142 47.2440945 9153.2637795 225.3937008 47.2440945 9154.4724409 -225.3937008 47.2440945 9154.4724409 222.2701181 47.2440945 9154.7165354 -222.2701181 47.2440945 9154.7165354 -232.3503543 47.2440945 8767.5118110 -10.5966417 47.2440945 8754.8661417 -20.8713071 47.2440945 8757.6181102 -30.5118110 47.2440945 8762.1141732 -39.2252244 47.2440945 8768.2125984 -225.3937008 47.2440945 8772.7480315 -46.7468110 47.2440945 8775.7362205 -192.6105512 47.2440945 8797.4094488 -52.8479921 47.2440945 8784.4488189 -57.3434646 47.2440945 8794.0905512 -60.0965354 47.2440945 8804.3622047 -189.2058661 47.2440945 8800.0393701 -188.7355906 47.2440945 8800.4015748 -185.4085433 47.2440945 8803.9921260 -182.7209055 47.2440945 8808.0866142 -61.0236220 47.2440945 8814.9606299 -180.7465748 47.2440945 8812.5669291 -179.5398425 47.2440945 8817.3110236 -61.0236220 47.2440945 8874.0157480 -179.1338583 47.2440945 8822.1929134 -179.1338583 47.2440945 9007.0787402 -60.0965354 47.2440945 8884.6141732 -57.3434646 47.2440945 8894.8858268 -52.8479921 47.2440945 8904.5275591 -46.7468110 47.2440945 8913.2401575 -39.2252244 47.2440945 8920.7637795 -30.5118110 47.2440945 8926.8622047 -20.8713071 47.2440945 8931.3582677 -10.5966417 47.2440945 8934.1141732 179.5824409 47.2440945 9012.2086614 -179.5824409 47.2440945 9012.2086614 180.9145669 47.2440945 9017.1771654 -180.9145669 47.2440945 9017.1771654 183.0898031 47.2440945 9021.8425197 -183.0898031 47.2440945 9021.8425197 186.0419685 47.2440945 9026.0590551 -186.0419685 47.2440945 9026.0590551 189.6814567 47.2440945 9029.7007874 -189.6814567 47.2440945 9029.7007874 193.8976378 47.2440945 9032.6535433 -193.8976378 47.2440945 9032.6535433 198.5624016 47.2440945 9034.8267717 -198.5624016 47.2440945 9034.8267717 203.5340157 47.2440945 9036.1574803 -203.5340157 47.2440945 9036.1574803 322.1918504 47.2440945 8679.1338583 67.3268110 47.2440945 8684.9803150 317.3123228 47.2440945 8679.5393701 312.5669685 47.2440945 8680.7480315 308.0862598 47.2440945 8682.7204724 303.9934646 47.2440945 8685.4094488 34.1827126 47.2440945 8693.8582677 300.4010630 47.2440945 8688.7362205 297.4078740 47.2440945 8692.6102362 - - - - - - - - - - 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.9993559 0.0000000 -0.0358844 0.9992292 -0.0000000 0.0392549 0.9993559 0.0000000 -0.0358844 0.9992292 -0.0000000 0.0392549 0.9897102 0.0000000 -0.1430867 0.9897102 0.0000000 -0.1430867 0.9590453 0.0000000 -0.2832529 0.9590453 0.0000000 -0.2832529 0.9069118 -0.0000003 -0.4213206 0.9069118 -0.0000003 -0.4213206 0.8304415 -0.0000003 -0.5571059 0.8304415 -0.0000003 -0.5571059 0.7309794 0.0000001 -0.6823996 0.7309794 0.0000001 -0.6823996 0.6739080 0.0000001 -0.7388153 0.6739080 0.0000001 -0.7388153 0.6126456 -0.0000000 -0.7903577 0.6126456 -0.0000000 -0.7903577 0.5470693 -0.0000000 -0.8370873 0.5470693 -0.0000000 -0.8370873 0.6106244 0.0000000 -0.7919203 0.6106244 0.0000000 -0.7919203 0.7272313 0.0000000 -0.6863925 0.7272313 0.0000000 -0.6863925 0.8258269 0.0000000 -0.5639237 0.8258269 0.0000000 -0.5639237 0.9040007 0.0000000 -0.4275310 0.9040007 0.0000000 -0.4275310 0.9598530 0.0000000 -0.2805035 0.9598530 0.0000000 -0.2805035 0.9919559 -0.0000000 -0.1265843 0.9919559 -0.0000000 -0.1265843 0.9999606 -0.0000001 -0.0088766 0.9999606 -0.0000001 -0.0088766 0.9972550 -0.0000001 0.0740440 0.9972550 -0.0000001 0.0740440 0.9790615 0.0000000 0.2035646 0.9790615 0.0000000 0.2035646 0.9288428 0.0000000 0.3704742 0.9288428 0.0000000 0.3704742 0.8725327 -0.0000002 0.4885558 0.8725327 -0.0000002 0.4885558 0.9618702 -0.0000002 0.2735063 0.9618702 -0.0000002 0.2735063 0.8660255 0.0000006 -0.4999998 0.8660255 0.0000006 -0.4999998 0.2588193 0.0000005 -0.9659258 0.2588193 0.0000005 -0.9659258 -0.2588194 0.0000000 -0.9659257 -0.2588194 0.0000000 -0.9659257 -0.8660256 0.0000000 -0.4999997 -0.8660256 0.0000000 -0.4999997 -0.9618702 0.0000004 0.2735064 -0.9618702 0.0000004 0.2735064 -0.8725326 0.0000004 0.4885558 -0.8725326 0.0000004 0.4885558 -0.9288428 0.0000000 0.3704742 -0.9288428 0.0000000 0.3704742 -0.9790615 0.0000000 0.2035646 -0.9790615 0.0000000 0.2035646 -0.9972550 0.0000001 0.0740440 -0.9972550 0.0000001 0.0740440 -0.9999606 0.0000001 -0.0088766 -0.9999606 0.0000001 -0.0088766 -0.9919559 -0.0000000 -0.1265843 -0.9919559 -0.0000000 -0.1265843 -0.9598530 0.0000000 -0.2805035 -0.9598530 0.0000000 -0.2805035 -0.9040007 0.0000000 -0.4275310 -0.9040007 0.0000000 -0.4275310 -0.8258269 0.0000000 -0.5639237 -0.8258269 0.0000000 -0.5639237 -0.7272313 -0.0000000 -0.6863925 -0.7272313 -0.0000000 -0.6863925 -0.6106244 -0.0000000 -0.7919203 -0.6106244 -0.0000000 -0.7919203 -0.5470693 -0.0000000 -0.8370873 -0.5470693 -0.0000000 -0.8370873 -0.6128062 -0.0000000 -0.7902332 -0.6128062 -0.0000000 -0.7902332 -0.7309712 0.0000000 -0.6824083 -0.7309712 0.0000000 -0.6824083 -0.8304416 0.0000000 -0.5571057 -0.8304416 0.0000000 -0.5571057 -0.9069119 0.0000000 -0.4213203 -0.9069119 0.0000000 -0.4213203 -0.9590453 0.0000000 -0.2832529 -0.9590453 0.0000000 -0.2832529 -0.9897102 0.0000000 -0.1430867 -0.9897102 0.0000000 -0.1430867 -0.9993559 0.0000000 -0.0358844 -0.9993559 0.0000000 -0.0358844 -0.9992292 0.0000000 0.0392549 -0.9992292 0.0000000 0.0392549 -0.9876865 0.0000000 0.1564459 -0.9876865 0.0000000 0.1564459 -0.9510488 -0.0000000 0.3090406 -0.9510488 -0.0000000 0.3090406 -0.8910061 0.0000000 0.4539913 -0.8910061 0.0000000 0.4539913 -0.8090360 0.0000000 0.5877590 -0.8090360 0.0000000 0.5877590 -0.7343383 -0.0000000 0.6787836 -0.7343383 -0.0000000 0.6787836 -0.7071088 -0.0000000 0.7071047 -0.7071088 -0.0000000 0.7071047 -0.6787857 0.0000000 0.7343364 -0.6787857 0.0000000 0.7343364 -0.5877877 0.0000000 0.8090152 -0.5877877 0.0000000 0.8090152 -0.4539720 0.0000000 0.8910160 -0.4539720 0.0000000 0.8910160 -0.3089749 0.0000000 0.9510702 -0.3089749 0.0000000 0.9510702 -0.1564505 -0.0000000 0.9876858 -0.1564505 -0.0000000 0.9876858 -0.0781953 -0.0000000 0.9969381 -0.0781953 -0.0000000 0.9969381 -0.0389837 0.0000000 0.9992398 -0.0389837 0.0000000 0.9992398 0.0389837 0.0000000 0.9992398 0.0389837 0.0000000 0.9992398 0.0781953 -0.0000000 0.9969381 0.0781953 -0.0000000 0.9969381 0.1564505 -0.0000000 0.9876858 0.1564505 -0.0000000 0.9876858 0.3089749 0.0000000 0.9510702 0.3089749 0.0000000 0.9510702 0.4539720 0.0000000 0.8910160 0.4539720 0.0000000 0.8910160 0.5877877 0.0000000 0.8090152 0.5877877 0.0000000 0.8090152 0.6787849 -0.0000003 0.7343372 0.6787849 -0.0000003 0.7343372 0.7071073 0.0000001 0.7071062 0.7071073 0.0000001 0.7071062 0.7343376 0.0000005 0.6787844 0.7343376 0.0000005 0.6787844 0.8090360 0.0000000 0.5877590 0.8090360 0.0000000 0.5877590 0.8910061 0.0000000 0.4539913 0.8910061 0.0000000 0.4539913 0.9510488 -0.0000000 0.3090406 0.9510488 -0.0000000 0.3090406 0.9876865 -0.0000000 0.1564459 0.9876865 -0.0000000 0.1564459 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 7 4 8 7 8 9 9 8 10 10 8 11 11 8 12 13 14 15 14 13 16 16 13 17 17 13 18 15 14 19 15 19 20 15 20 21 15 21 22 15 22 23 15 23 24 15 24 25 15 25 26 26 25 27 27 25 28 28 25 29 29 25 30 29 30 31 31 30 32 32 30 33 32 33 34 34 33 35 35 33 36 36 33 37 36 37 38 38 37 39 38 39 40 38 40 41 41 40 42 41 42 2 2 42 43 2 43 44 2 44 45 2 45 46 2 46 47 2 47 0 0 47 48 48 47 49 49 47 50 49 50 51 49 51 52 49 52 53 53 52 54 53 54 55 53 55 56 57 58 59 58 57 60 60 57 61 61 57 62 63 64 65 64 63 66 66 63 67 67 63 68 68 63 69 69 63 70 70 63 71 71 63 72 72 63 73 73 63 74 74 63 75 74 75 76 76 75 77 77 75 78 78 75 79 79 75 80 80 75 81 81 75 82 82 75 83 83 75 84 84 75 85 85 75 86 85 86 87 85 87 88 85 88 89 85 89 90 85 90 59 88 87 91 91 87 92 92 87 93 93 87 94 94 87 95 95 87 96 96 87 97 97 87 98 98 87 99 99 87 100 100 87 101 101 87 102 102 87 103 103 87 104 104 87 105 104 105 106 104 106 107 86 75 108 108 75 109 109 75 110 110 75 111 111 75 112 112 75 113 113 75 114 114 75 115 115 75 116 116 75 117 117 75 118 118 75 119 119 75 120 120 75 121 104 122 123 122 104 124 124 104 125 125 104 126 126 104 107 123 122 127 123 127 128 123 128 129 123 129 130 123 130 131 123 131 132 123 132 133 123 133 134 123 134 135 123 135 136 123 136 137 123 137 138 123 138 139 123 139 121 123 121 75 123 75 140 123 140 141 141 140 142 142 140 143 143 140 144 144 140 145 145 140 146 146 140 147 147 140 148 148 140 149 149 140 150 150 140 151 151 140 152 151 152 153 153 152 154 154 152 155 155 152 156 156 152 157 157 152 158 159 160 161 160 159 162 162 159 157 162 157 158 66 163 64 163 66 164 163 164 165 163 165 166 163 166 167 163 167 168 163 168 169 163 169 170 163 170 171 163 171 172 172 171 173 172 173 174 172 174 175 172 175 176 172 176 177 172 177 178 172 178 179 172 179 180 172 180 181 172 181 85 172 85 182 182 85 183 183 85 184 184 85 185 185 85 186 186 85 58 58 85 59 183 184 187 183 187 188 183 188 189 183 189 190 183 190 191 183 191 192 183 192 193 183 193 194 183 194 195 183 195 196 183 196 197 183 197 198 183 198 199 183 199 200 200 199 201 201 199 202 172 182 203 172 203 204 172 204 205 172 205 206 172 206 207 172 207 208 172 208 209 172 209 210 172 210 211 172 211 212 172 212 213 172 213 214 172 214 215 172 215 216 199 217 202 217 199 218 218 199 219 219 199 220 220 199 221 220 221 222 222 221 223 223 221 224 224 221 225 225 221 226 226 221 227 227 221 228 228 221 229 229 221 230 230 221 231 231 221 232 232 221 233 233 221 234 234 221 216 216 221 172 172 221 235 235 221 236 235 236 237 235 237 238 235 238 239 235 239 240 235 240 241 235 241 242 235 242 243 235 243 244 235 244 245 235 245 246 235 246 247 247 246 248 247 248 249 247 249 250 247 250 251 247 251 158 247 158 152 247 152 252 247 252 253 253 252 254 253 254 255 255 254 256 256 254 257 257 254 258 258 254 259 259 254 260 260 254 261 255 256 262 255 262 263 255 263 264 255 264 265 255 265 266 260 261 267 267 261 268 268 261 269 269 261 270 270 261 271 271 261 272 272 261 273 273 261 274 274 261 275 275 261 276 276 261 277 276 277 278 276 278 279 276 279 280 276 280 281 276 281 282 276 282 283 276 283 284 276 284 285 277 261 286 286 261 287 287 261 288 288 261 289 289 261 290 290 261 291 291 261 292 292 261 293 293 261 294 294 261 295 295 261 296 297 298 285 298 297 299 299 297 300 299 300 301 299 301 302 302 301 303 302 303 304 304 303 305 304 305 306 306 305 307 306 307 308 308 307 309 308 309 310 310 309 311 310 311 312 312 311 313 312 313 314 314 313 315 314 315 316 316 315 317 316 317 318 318 317 319 318 319 320 320 319 321 320 321 322 322 321 323 322 323 324 324 323 325 324 325 326 326 325 327 326 327 328 328 327 329 328 329 330 330 329 331 330 331 332 332 331 295 332 295 296 333 334 266 334 333 335 335 333 336 335 336 337 335 337 338 338 337 339 338 339 340 340 339 341 340 341 342 342 341 343 342 343 344 344 343 345 344 345 346 346 345 347 346 347 348 348 347 349 348 349 350 350 349 351 350 351 352 352 351 353 352 353 354 354 353 355 354 355 356 356 355 357 356 357 358 358 357 359 358 359 360 360 359 361 360 361 362 362 361 363 362 363 364 364 363 365 364 365 366 366 365 367 366 367 368 368 367 369 368 369 276 276 369 275 370 371 372 371 370 373 371 373 374 374 373 375 375 373 376 376 373 377 377 373 378 378 373 379 378 379 380 380 379 381 381 379 382 382 379 383 382 383 384 384 383 385 385 383 386 386 383 387 387 383 388 387 388 389 389 388 390 390 388 391 391 388 392 392 388 393 393 388 394 395 396 397 396 395 398 398 395 399 397 396 400 397 400 401 397 401 402 397 402 403 397 403 404 397 404 405 405 404 406 405 406 407 405 407 408 405 408 409 405 409 410 410 409 411 410 411 412 410 412 413 410 413 414 414 413 415 414 415 416 414 416 417 414 417 418 414 418 419 420 421 422 421 420 423 423 420 424 424 420 425 425 420 426 426 420 427 426 427 428 428 427 429 429 427 430 430 427 431 430 431 432 430 432 433 430 433 434 434 433 435 435 433 436 436 433 437 437 433 438 438 433 439 438 439 440 440 439 441 440 441 442 442 441 443 443 441 444 444 441 445 444 445 446 444 446 447 444 447 448 444 448 449 449 448 450 449 450 451 449 451 452 452 451 453 452 453 454 452 454 455 455 454 456 456 454 457 457 454 458 458 454 459 459 454 460 460 454 461 461 454 462 462 454 463 255 464 465 464 255 466 466 255 467 467 255 468 468 255 469 469 255 470 470 255 471 471 255 472 472 255 473 473 255 334 334 255 266 465 464 474 465 474 475 465 475 476 465 476 477 465 477 478 465 478 479 465 479 480 465 480 481 465 481 276 465 276 482 482 276 483 483 276 484 484 276 485 485 276 486 486 276 487 487 276 488 488 276 489 489 276 298 298 276 285 465 482 490 465 490 491 465 491 492 465 492 493 465 493 494 465 494 495 465 495 496 465 496 497 465 497 498 465 498 296 465 296 261 465 261 499 465 499 500 500 499 501 500 501 502 502 501 503 502 503 504 504 503 505 504 505 506 506 505 507 506 507 508 508 507 509 508 509 510 510 509 511 510 511 512 512 511 513 512 513 514 514 513 515 514 515 516 516 515 517 516 517 518 517 515 519 519 515 520 520 515 521 521 515 522 522 515 523 522 523 524 524 523 525 524 525 526 526 525 527 527 525 528 527 528 529 527 529 530 527 530 531 531 530 532 531 532 533 533 532 534 534 532 535 535 532 536 536 532 537 537 532 538 538 532 539 539 532 540 540 532 541 541 532 542 542 532 543 543 532 56 56 532 544 56 544 545 56 545 546 56 546 547 56 547 53 53 547 548 548 547 549 549 547 550 550 547 551 550 551 552 552 551 399 552 399 395 544 532 553 553 532 554 554 532 555 555 532 556 556 532 557 557 532 558 558 532 559 559 532 560 560 532 561 561 532 562 562 532 563 563 532 564 564 532 565 565 532 419 419 532 414 414 532 566 414 566 567 414 567 568 568 567 569 569 567 570 569 570 571 571 570 572 566 532 573 573 532 574 574 532 575 575 532 576 576 532 577 577 532 578 578 532 579 579 532 580 580 532 581 581 532 582 582 532 583 583 532 584 583 584 585 585 584 586 586 584 587 587 584 588 587 588 589 587 589 590 587 590 591 587 591 592 587 592 593 587 593 594 594 593 595 595 593 596 596 593 597 597 593 598 598 593 599 599 593 600 600 593 601 601 593 602 602 593 603 516 604 605 604 516 606 606 516 518 605 604 607 605 607 608 605 608 609 605 609 610 605 610 611 611 610 612 611 612 613 613 612 614 613 614 615 613 615 616 613 616 617 617 616 618 618 616 619 619 616 620 619 620 621 621 620 622 621 622 623 621 623 624 621 624 625 621 625 626 621 626 627 621 627 628 621 628 629 621 629 630 621 630 631 621 631 12 621 12 632 632 12 633 633 12 634 634 12 635 635 12 8 635 8 636 635 636 637 635 637 638 638 637 639 638 639 640 640 639 370 640 370 372 621 632 641 621 641 642 621 642 643 621 643 644 621 644 645 621 645 646 621 646 647 621 647 648 621 648 649 621 649 650 621 650 651 621 651 652 621 652 394 621 394 388 621 388 653 653 388 654 654 388 655 654 655 656 654 656 657 657 656 658 657 658 422 657 422 421 621 653 659 621 659 660 621 660 661 621 661 662 621 662 663 621 663 664 621 664 665 621 665 666 621 666 667 621 667 668 621 668 669 621 669 670 670 669 671 670 671 672 670 672 673 670 673 674 674 673 675 675 673 676 675 676 677 677 676 678 678 676 679 679 676 680 680 676 681 680 681 682 680 682 683 680 683 684 680 684 685 680 685 686 680 686 603 680 603 593 680 593 687 680 687 688 688 687 689 688 689 690 690 689 691 690 691 692 692 691 693 692 693 694 694 693 695 694 695 696 696 695 697 696 697 698 434 699 430 699 434 700 699 700 701 699 701 702 699 702 703 699 703 704 704 703 705 704 705 706 706 705 707 706 707 708 706 708 709 706 709 710 710 709 711 711 709 712 712 709 713 713 709 714 713 714 715 715 714 716 716 714 717 716 717 718 718 717 719 719 717 720 719 720 721 719 721 722 719 722 723 719 723 724 719 724 725 719 725 726 719 726 727 719 727 463 719 463 454 719 454 728 719 728 729 729 728 730 729 730 731 731 730 732 731 732 733 733 732 734 733 734 735 735 734 736 735 736 737 737 736 738 737 738 739 739 738 740 739 740 741 741 740 742 741 742 743 743 742 601 743 601 602 572 744 745 744 572 570 745 744 746 745 746 747 745 747 748 745 748 749 745 749 750 750 749 751 750 751 752 750 752 432 750 432 431 753 606 518 606 753 754 754 753 755 754 755 756 756 755 757 756 757 758 758 757 759 758 759 760 760 759 761 760 761 762 762 761 763 762 763 13 13 763 764 764 763 765 765 763 766 766 763 767 13 764 18 766 767 768 768 767 769 769 767 770 770 767 771 771 767 772 772 767 773 773 767 774 774 767 775 774 775 776 774 776 777 774 777 778 774 778 779 779 778 780 779 780 781 779 781 782 782 781 783 782 783 784 782 784 785 782 785 786 786 785 787 786 787 788 788 787 789 789 787 790 789 790 791 791 790 46 791 46 792 792 46 793 793 46 45 794 795 796 795 794 797 798 794 796 794 798 799 800 798 801 798 800 799 802 801 803 801 802 800 804 803 805 803 804 802 806 805 807 805 806 804 806 808 809 808 806 807 809 810 811 810 809 808 811 812 813 812 811 810 813 814 815 814 813 812 815 816 817 816 815 814 818 817 816 817 818 819 820 818 821 818 820 819 822 821 823 821 822 820 824 823 825 823 824 822 826 824 825 824 826 827 828 826 829 826 828 827 830 829 831 829 830 828 832 831 833 831 832 830 834 832 833 832 834 835 836 834 837 834 836 835 838 837 839 837 838 836 838 840 841 840 838 839 841 842 843 842 841 840 843 844 845 844 843 842 846 845 844 845 846 847 848 846 849 846 848 847 850 849 851 849 850 848 852 851 853 851 852 850 854 853 855 853 854 852 856 854 855 854 856 857 858 856 859 856 858 857 860 859 861 859 860 858 862 861 863 861 862 860 864 863 865 863 864 862 866 865 867 865 866 864 866 868 869 868 866 867 869 870 871 870 869 868 871 872 873 872 871 870 873 874 875 874 873 872 876 875 874 875 876 877 878 876 879 876 878 877 880 879 881 879 880 878 882 881 883 881 882 880 884 883 885 883 884 882 886 885 887 885 886 884 888 886 887 886 888 889 890 888 891 888 890 889 892 890 891 890 892 893 894 892 895 892 894 893 896 894 895 894 896 897 898 897 896 897 898 899 900 898 901 898 900 899 902 900 901 900 902 903 904 903 902 903 904 905 906 905 904 905 906 907 908 907 906 907 908 909 910 909 908 909 910 911 912 911 910 911 912 913 914 913 912 913 914 915 916 915 914 915 916 917 918 917 916 917 918 919 920 919 918 919 920 921 922 921 920 921 922 923 924 923 922 923 924 925 926 925 924 925 926 927 928 927 926 927 928 929 930 929 928 929 930 931 932 930 933 930 932 931 934 933 935 933 934 932 936 935 937 935 936 934 938 936 937 936 938 939 797 938 795 938 797 939 940 941 942 941 940 943 941 943 944 941 944 945 945 944 946 946 944 947 947 944 948 947 948 949 949 948 950 950 948 951 951 948 952 953 954 955 954 953 956 956 953 957 957 953 958 955 954 959 955 959 960 955 960 961 955 961 962 955 962 963 955 963 964 955 964 965 955 965 966 966 965 967 967 965 968 968 965 969 969 965 970 969 970 971 971 970 972 972 970 973 972 973 974 974 973 975 975 973 976 976 973 977 976 977 978 978 977 979 978 979 980 978 980 981 981 980 982 981 982 942 942 982 983 942 983 984 942 984 985 942 985 986 942 986 987 942 987 940 940 987 988 988 987 989 989 987 990 989 990 991 989 991 992 989 992 993 993 992 994 993 994 995 993 995 996 997 998 999 998 997 1000 1000 997 1001 1000 1001 1002 1002 1001 1003 1002 1003 1004 1004 1003 1005 1004 1005 1006 1006 1005 1007 1006 1007 1008 1008 1007 1009 1008 1009 953 953 1009 1010 1010 1009 1011 1011 1009 1012 1012 1009 1013 953 1010 958 1012 1013 1014 1014 1013 1015 1015 1013 1016 1016 1013 1017 1017 1013 1018 1018 1013 1019 1019 1013 1020 1020 1013 1021 1020 1021 1022 1020 1022 1023 1020 1023 1024 1020 1024 1025 1025 1024 1026 1025 1026 1027 1025 1027 1028 1028 1027 1029 1028 1029 1030 1028 1030 1031 1028 1031 1032 1032 1031 1033 1032 1033 1034 1034 1033 1035 1035 1033 1036 1035 1036 1037 1037 1036 986 1037 986 1038 1038 986 1039 1039 986 985 1040 1041 1042 1041 1040 1043 1041 1043 1044 1041 1044 1045 1046 1047 1048 1047 1046 1049 1049 1046 1050 1050 1046 1051 1051 1046 1052 1052 1046 1053 1053 1046 1054 1054 1046 1055 1055 1046 1056 1056 1046 1057 1057 1046 1058 1057 1058 1059 1059 1058 1060 1060 1058 1061 1061 1058 1062 1062 1058 1063 1063 1058 1064 1064 1058 1065 1065 1058 1066 1066 1058 1067 1067 1058 1068 1068 1058 1069 1068 1069 1070 1068 1070 1071 1068 1071 1072 1068 1072 1073 1068 1073 1040 1068 1040 1042 1071 1070 1074 1074 1070 1075 1075 1070 1076 1076 1070 1077 1077 1070 1078 1078 1070 1079 1079 1070 1080 1080 1070 1081 1081 1070 1082 1082 1070 1083 1083 1070 1084 1084 1070 1085 1085 1070 1086 1086 1070 1087 1086 1087 1088 1086 1088 1089 1069 1058 1090 1090 1058 1091 1091 1058 1092 1092 1058 1093 1093 1058 1094 1094 1058 1095 1095 1058 1096 1096 1058 1097 1097 1058 1098 1098 1058 1099 1099 1058 1100 1100 1058 1101 1101 1058 1102 1102 1058 1103 1086 1104 1105 1104 1086 1106 1106 1086 1107 1107 1086 1108 1108 1086 1089 1105 1104 1109 1105 1109 1110 1105 1110 1111 1105 1111 1112 1105 1112 1113 1105 1113 1114 1105 1114 1115 1105 1115 1116 1105 1116 1117 1105 1117 1118 1105 1118 1119 1105 1119 1120 1105 1120 1121 1105 1121 1103 1105 1103 1058 1105 1058 1122 1105 1122 1123 1123 1122 1124 1124 1122 1125 1125 1122 1126 1126 1122 1127 1127 1122 1128 1128 1122 1129 1129 1122 1130 1130 1122 1131 1131 1122 1132 1132 1122 1133 1133 1122 1134 1133 1134 1135 1135 1134 1136 1136 1134 1137 1137 1134 1138 1138 1134 1139 1139 1134 1140 1141 1142 1143 1142 1141 1144 1144 1141 1139 1144 1139 1140 1049 1145 1047 1145 1049 1146 1145 1146 1147 1145 1147 1148 1145 1148 1149 1145 1149 1150 1145 1150 1151 1145 1151 1152 1145 1152 1153 1145 1153 1154 1154 1153 1155 1154 1155 1156 1154 1156 1157 1154 1157 1158 1154 1158 1159 1154 1159 1160 1154 1160 1161 1154 1161 1162 1154 1162 1163 1154 1163 1068 1154 1068 1164 1164 1068 1165 1165 1068 1166 1166 1068 1167 1167 1068 1168 1168 1068 1042 1165 1166 1169 1165 1169 1170 1165 1170 1171 1165 1171 1172 1165 1172 1173 1165 1173 1174 1165 1174 1175 1165 1175 1176 1165 1176 1177 1165 1177 1178 1165 1178 1179 1165 1179 1180 1165 1180 1181 1165 1181 1182 1165 1182 1183 1183 1182 1184 1184 1182 1185 1154 1164 1186 1154 1186 1187 1154 1187 1188 1154 1188 1189 1154 1189 1190 1154 1190 1191 1154 1191 1192 1154 1192 1193 1154 1193 1194 1154 1194 1195 1154 1195 1196 1154 1196 1197 1154 1197 1198 1154 1198 1199 1200 1201 1202 1201 1200 1203 1201 1203 1204 1204 1203 1205 1205 1203 1206 1206 1203 1207 1207 1203 1208 1208 1203 1209 1208 1209 1210 1210 1209 1211 1211 1209 1212 1212 1209 1213 1212 1213 1214 1214 1213 1215 1215 1213 1216 1216 1213 1217 1217 1213 1218 1217 1218 1219 1219 1218 1220 1220 1218 1221 1221 1218 1222 1222 1218 1223 1223 1218 1224 1225 1226 1227 1226 1225 1228 1228 1225 1229 1227 1226 1230 1227 1230 1231 1227 1231 1232 1227 1232 1233 1227 1233 1234 1227 1234 1235 1235 1234 1236 1235 1236 1237 1235 1237 1238 1235 1238 1239 1235 1239 1240 1240 1239 1241 1240 1241 1242 1240 1242 1243 1240 1243 1244 1244 1243 1245 1244 1245 1246 1244 1246 1247 1244 1247 1248 1244 1248 1249 1182 1250 1185 1250 1182 1251 1251 1182 1252 1252 1182 1253 1253 1182 1254 1253 1254 1255 1255 1254 1256 1256 1254 1257 1257 1254 1258 1258 1254 1259 1259 1254 1260 1260 1254 1261 1261 1254 1262 1262 1254 1263 1263 1254 1264 1264 1254 1265 1265 1254 1266 1266 1254 1267 1267 1254 1199 1199 1254 1154 1154 1254 1268 1268 1254 1269 1268 1269 1270 1268 1270 1271 1268 1271 1272 1268 1272 1273 1268 1273 1274 1268 1274 1275 1268 1275 1276 1268 1276 1277 1268 1277 1278 1268 1278 1279 1268 1279 1280 1280 1279 1281 1280 1281 1282 1280 1282 1283 1280 1283 1284 1280 1284 1140 1280 1140 1134 1280 1134 1285 1280 1285 1286 1286 1285 1287 1286 1287 1288 1288 1287 1289 1289 1287 1290 1290 1287 1291 1291 1287 1292 1292 1287 1293 1293 1287 1294 1288 1289 1295 1288 1295 1296 1288 1296 1297 1288 1297 1298 1288 1298 1299 1293 1294 1300 1300 1294 1301 1301 1294 1302 1302 1294 1303 1303 1294 1304 1304 1294 1305 1305 1294 1306 1306 1294 1307 1307 1294 1308 1308 1294 1309 1309 1294 1310 1309 1310 1311 1309 1311 1312 1309 1312 1313 1309 1313 1314 1309 1314 1315 1309 1315 1316 1309 1316 1317 1309 1317 1318 1310 1294 1319 1319 1294 1320 1320 1294 1321 1321 1294 1322 1322 1294 1323 1323 1294 1324 1324 1294 1325 1325 1294 1326 1326 1294 1327 1327 1294 1328 1328 1294 1329 1330 1331 1318 1331 1330 1332 1332 1330 1333 1333 1330 1334 1333 1334 1335 1335 1334 1336 1335 1336 1337 1337 1336 1338 1337 1338 1339 1339 1338 1340 1339 1340 1341 1341 1340 1342 1341 1342 1343 1343 1342 1344 1343 1344 1345 1345 1344 1346 1345 1346 1347 1347 1346 1348 1347 1348 1349 1349 1348 1350 1349 1350 1351 1351 1350 1352 1351 1352 1353 1353 1352 1354 1353 1354 1355 1355 1354 1356 1355 1356 1357 1357 1356 1358 1357 1358 1359 1359 1358 1360 1359 1360 1361 1361 1360 1362 1361 1362 1363 1363 1362 1364 1363 1364 1365 1365 1364 1328 1365 1328 1329 1366 1367 1299 1367 1366 1368 1368 1366 1369 1369 1366 1370 1369 1370 1371 1371 1370 1372 1371 1372 1373 1373 1372 1374 1373 1374 1375 1375 1374 1376 1375 1376 1377 1377 1376 1378 1377 1378 1379 1379 1378 1380 1379 1380 1381 1381 1380 1382 1381 1382 1383 1383 1382 1384 1383 1384 1385 1385 1384 1386 1385 1386 1387 1387 1386 1388 1387 1388 1389 1389 1388 1390 1389 1390 1391 1391 1390 1392 1391 1392 1393 1393 1392 1394 1393 1394 1395 1395 1394 1396 1395 1396 1397 1397 1396 1398 1397 1398 1399 1399 1398 1400 1399 1400 1401 1401 1400 1308 1401 1308 1402 1402 1308 1309 1403 1404 1405 1404 1403 1406 1406 1403 1407 1407 1403 1408 1408 1403 1409 1409 1403 1410 1409 1410 1411 1411 1410 1412 1412 1410 1413 1413 1410 1414 1413 1414 1415 1413 1415 1416 1413 1416 1417 1417 1416 1418 1418 1416 1419 1419 1416 1420 1420 1416 1421 1421 1416 1422 1421 1422 1423 1423 1422 1424 1423 1424 1425 1425 1424 1426 1426 1424 1427 1427 1424 1428 1427 1428 1429 1427 1429 1430 1427 1430 1431 1427 1431 1432 1432 1431 1433 1432 1433 1434 1432 1434 1435 1435 1434 1436 1435 1436 1437 1435 1437 1438 1438 1437 1439 1439 1437 1440 1440 1437 1441 1441 1437 1442 1442 1437 1443 1443 1437 1444 1444 1437 1445 1445 1437 1446 1447 1448 999 1448 1447 1449 1448 1449 1450 1450 1449 1451 1451 1449 1452 1452 1449 1453 1453 1449 1454 1453 1454 1455 1455 1454 1456 1455 1456 1457 1457 1456 1458 1458 1456 1459 1459 1456 1460 1459 1460 1461 1459 1461 1462 1459 1462 1463 1463 1462 1464 1463 1464 1465 1465 1464 1466 1466 1464 1467 1467 1464 1468 1468 1464 1469 1469 1464 1470 1470 1464 1471 1471 1464 1472 1472 1464 1473 1473 1464 1474 1474 1464 1475 1475 1464 996 996 1464 1476 996 1476 1477 996 1477 1478 996 1478 1479 996 1479 993 993 1479 1480 1480 1479 1481 1481 1479 1482 1481 1482 1483 1483 1482 1229 1483 1229 1225 1476 1464 1484 1484 1464 1485 1485 1464 1486 1486 1464 1487 1487 1464 1488 1488 1464 1489 1489 1464 1490 1490 1464 1491 1491 1464 1492 1492 1464 1493 1493 1464 1494 1494 1464 1495 1495 1464 1496 1496 1464 1249 1249 1464 1244 1244 1464 1497 1244 1497 1498 1244 1498 1499 1499 1498 1500 1500 1498 1501 1500 1501 1502 1502 1501 1503 1497 1464 1504 1504 1464 1505 1505 1464 1506 1506 1464 1507 1507 1464 1508 1508 1464 1509 1509 1464 1510 1510 1464 1511 1511 1464 1512 1512 1464 1513 1513 1464 1514 1514 1464 1515 1514 1515 1516 1516 1515 1517 1517 1515 1518 1518 1515 1519 1518 1519 1520 1518 1520 1521 1521 1520 1522 1521 1522 1523 1521 1523 1524 1521 1524 1525 1521 1525 1526 1526 1525 1527 1527 1525 1528 1528 1525 1529 1529 1525 1530 1530 1525 1531 1531 1525 1532 1532 1525 1533 1533 1525 1534 1534 1525 1535 1288 1536 1537 1536 1288 1538 1538 1288 1539 1539 1288 1540 1540 1288 1541 1541 1288 1542 1542 1288 1543 1543 1288 1544 1544 1288 1545 1545 1288 1367 1367 1288 1299 1537 1536 1546 1537 1546 1547 1537 1547 1548 1537 1548 1549 1537 1549 1550 1537 1550 1551 1537 1551 1552 1537 1552 1553 1537 1553 1309 1537 1309 1554 1554 1309 1555 1555 1309 1556 1556 1309 1557 1557 1309 1558 1558 1309 1559 1559 1309 1560 1560 1309 1561 1561 1309 1331 1331 1309 1318 1537 1554 1562 1537 1562 1563 1537 1563 1564 1537 1564 1565 1537 1565 1566 1537 1566 1567 1537 1567 1568 1537 1568 1569 1537 1569 1570 1537 1570 1329 1537 1329 1294 1537 1294 1571 1537 1571 1572 1572 1571 1573 1572 1573 1574 1574 1573 1575 1574 1575 1576 1576 1575 1577 1576 1577 1578 1578 1577 1579 1578 1579 1580 1580 1579 1581 1580 1581 1582 1582 1581 1583 1582 1583 1584 1584 1583 1585 1584 1585 1586 1586 1585 1447 1586 1447 1587 1587 1447 1588 1588 1447 998 998 1447 999 1587 1588 1589 1587 1589 1590 1587 1590 1591 1587 1591 1592 1587 1592 1593 1593 1592 1594 1593 1594 1595 1595 1594 1596 1595 1596 1597 1595 1597 1598 1598 1597 1599 1599 1597 1600 1600 1597 1601 1600 1601 1602 1602 1601 1603 1602 1603 1604 1602 1604 1605 1602 1605 1606 1602 1606 1607 1602 1607 1608 1602 1608 1609 1602 1609 1610 1602 1610 1611 1602 1611 1612 1602 1612 952 1602 952 1613 1613 952 1614 1614 952 1615 1615 952 1616 1616 952 948 1616 948 1617 1616 1617 1618 1616 1618 1619 1616 1619 1620 1620 1619 1621 1620 1621 1622 1622 1621 1200 1622 1200 1202 1602 1613 1623 1602 1623 1624 1602 1624 1625 1602 1625 1626 1602 1626 1627 1602 1627 1628 1602 1628 1629 1602 1629 1630 1602 1630 1631 1602 1631 1632 1602 1632 1633 1602 1633 1634 1602 1634 1224 1602 1224 1218 1602 1218 1635 1635 1218 1636 1636 1218 1637 1636 1637 1638 1636 1638 1639 1639 1638 1640 1639 1640 1405 1639 1405 1404 1602 1635 1641 1602 1641 1642 1602 1642 1643 1602 1643 1644 1602 1644 1645 1602 1645 1646 1602 1646 1647 1602 1647 1648 1602 1648 1649 1602 1649 1650 1602 1650 1651 1602 1651 1652 1652 1651 1653 1652 1653 1654 1652 1654 1655 1652 1655 1656 1656 1655 1657 1657 1655 1658 1658 1655 1659 1659 1655 1660 1660 1655 1661 1660 1661 1662 1662 1661 1663 1662 1663 1664 1662 1664 1665 1662 1665 1666 1662 1666 1667 1662 1667 1535 1662 1535 1525 1662 1525 1668 1662 1668 1669 1669 1668 1670 1669 1670 1671 1671 1670 1672 1671 1672 1673 1673 1672 1674 1673 1674 1675 1675 1674 1676 1675 1676 1677 1677 1676 1678 1677 1678 1679 1417 1680 1413 1680 1417 1681 1680 1681 1682 1680 1682 1683 1680 1683 1684 1680 1684 1685 1685 1684 1686 1685 1686 1687 1687 1686 1688 1687 1688 1689 1687 1689 1690 1687 1690 1691 1691 1690 1692 1692 1690 1693 1693 1690 1694 1694 1690 1695 1694 1695 1696 1696 1695 1697 1697 1695 1698 1697 1698 1699 1699 1698 1700 1700 1698 1701 1700 1701 1702 1700 1702 1703 1700 1703 1704 1700 1704 1705 1700 1705 1706 1700 1706 1707 1700 1707 1708 1700 1708 1446 1700 1446 1437 1700 1437 1709 1700 1709 1710 1710 1709 1711 1710 1711 1712 1712 1711 1713 1712 1713 1714 1714 1713 1715 1714 1715 1716 1716 1715 1717 1716 1717 1718 1718 1717 1719 1718 1719 1720 1720 1719 1721 1720 1721 1722 1722 1721 1723 1722 1723 1724 1724 1723 1533 1724 1533 1534 1503 1725 1726 1725 1503 1501 1726 1725 1727 1726 1727 1728 1726 1728 1729 1726 1729 1730 1726 1730 1731 1731 1730 1732 1731 1732 1733 1731 1733 1415 1731 1415 1414

-
-
-
- - - - 60.0965354 263.7795276 8884.6141732 61.0236220 47.2440945 8874.0157480 60.0965354 47.2440945 8884.6141732 61.0236220 263.7795276 8874.0157480 57.3434646 263.7795276 8894.8858268 57.3434646 47.2440945 8894.8858268 61.0236220 263.7795276 8814.9606299 61.0236220 47.2440945 8814.9606299 52.8479921 263.7795276 8904.5275591 52.8479921 47.2440945 8904.5275591 60.0965354 47.2440945 8804.3622047 60.0965354 263.7795276 8804.3622047 46.7468110 263.7795276 8913.2401575 46.7468110 47.2440945 8913.2401575 57.3434646 47.2440945 8794.0905512 57.3434646 263.7795276 8794.0905512 39.2252244 263.7795276 8920.7637795 39.2252244 47.2440945 8920.7637795 52.8479921 47.2440945 8784.4488189 52.8479921 263.7795276 8784.4488189 30.5118110 47.2440945 8926.8622047 30.5118110 263.7795276 8926.8622047 46.7468110 47.2440945 8775.7362205 46.7468110 263.7795276 8775.7362205 20.8713071 47.2440945 8931.3582677 20.8713071 263.7795276 8931.3582677 39.2252244 47.2440945 8768.2125984 39.2252244 263.7795276 8768.2125984 10.5966417 47.2440945 8934.1141732 10.5966417 263.7795276 8934.1141732 30.5118110 263.7795276 8762.1141732 30.5118110 47.2440945 8762.1141732 0.0000000 47.2440945 8935.0393701 0.0000000 263.7795276 8935.0393701 20.8713071 263.7795276 8757.6181102 20.8713071 47.2440945 8757.6181102 -10.5966417 47.2440945 8934.1141732 -10.5966417 263.7795276 8934.1141732 10.5966417 263.7795276 8754.8661417 10.5966417 47.2440945 8754.8661417 -20.8713071 47.2440945 8931.3582677 -20.8713071 263.7795276 8931.3582677 0.0000000 263.7795276 8753.9370079 0.0000000 47.2440945 8753.9370079 -30.5118110 47.2440945 8926.8622047 -30.5118110 263.7795276 8926.8622047 -10.5966417 263.7795276 8754.8661417 -10.5966417 47.2440945 8754.8661417 -39.2252244 47.2440945 8920.7637795 -39.2252244 263.7795276 8920.7637795 -20.8713071 263.7795276 8757.6181102 -20.8713071 47.2440945 8757.6181102 -46.7468110 263.7795276 8913.2401575 -46.7468110 47.2440945 8913.2401575 -30.5118110 263.7795276 8762.1141732 -30.5118110 47.2440945 8762.1141732 -52.8479921 263.7795276 8904.5275591 -52.8479921 47.2440945 8904.5275591 -39.2252244 263.7795276 8768.2125984 -39.2252244 47.2440945 8768.2125984 -57.3434646 263.7795276 8894.8858268 -57.3434646 47.2440945 8894.8858268 -46.7468110 47.2440945 8775.7362205 -46.7468110 263.7795276 8775.7362205 -60.0965354 47.2440945 8884.6141732 -60.0965354 263.7795276 8884.6141732 -52.8479921 263.7795276 8784.4488189 -52.8479921 47.2440945 8784.4488189 -61.0236220 263.7795276 8874.0157480 -61.0236220 47.2440945 8874.0157480 -57.3434646 47.2440945 8794.0905512 -57.3434646 263.7795276 8794.0905512 -61.0236220 263.7795276 8814.9606299 -61.0236220 47.2440945 8814.9606299 -60.0965354 47.2440945 8804.3622047 -60.0965354 263.7795276 8804.3622047 - - - - - - - - - - -0.9848028 0.0000000 -0.1736763 -0.9990485 0.0000000 -0.0436121 -0.9848028 0.0000000 -0.1736763 -0.9990485 0.0000000 -0.0436121 -0.9396884 0.0000000 -0.3420319 -0.9396884 0.0000000 -0.3420319 -0.9990485 0.0000000 0.0436121 -0.9990485 0.0000000 0.0436121 -0.8660264 0.0000000 -0.4999982 -0.8660264 0.0000000 -0.4999982 -0.9848028 0.0000000 0.1736763 -0.9848028 0.0000000 0.1736763 -0.7660742 0.0000000 -0.6427521 -0.7660742 0.0000000 -0.6427521 -0.9396884 0.0000000 0.3420319 -0.9396884 0.0000000 0.3420319 -0.6427576 0.0000000 -0.7660696 -0.6427576 0.0000000 -0.7660696 -0.8660264 0.0000000 0.4999982 -0.8660264 0.0000000 0.4999982 -0.4999305 0.0000000 -0.8660655 -0.4999305 0.0000000 -0.8660655 -0.7660742 0.0000000 0.6427521 -0.7660742 0.0000000 0.6427521 -0.3421652 -0.0000000 -0.9396398 -0.3421652 -0.0000000 -0.9396398 -0.6427576 -0.0000000 0.7660696 -0.6427576 -0.0000000 0.7660696 -0.1736870 -0.0000000 -0.9848009 -0.1736870 -0.0000000 -0.9848009 -0.4999305 -0.0000000 0.8660655 -0.4999305 -0.0000000 0.8660655 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.3419973 -0.0000000 0.9397009 -0.3419973 -0.0000000 0.9397009 0.1736870 -0.0000000 -0.9848009 0.1736870 -0.0000000 -0.9848009 -0.1736925 -0.0000000 0.9847999 -0.1736925 -0.0000000 0.9847999 0.3421652 -0.0000000 -0.9396398 0.3421652 -0.0000000 -0.9396398 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.4999305 0.0000000 -0.8660655 0.4999305 0.0000000 -0.8660655 0.1736925 -0.0000000 0.9847999 0.1736925 -0.0000000 0.9847999 0.6427576 0.0000000 -0.7660696 0.6427576 0.0000000 -0.7660696 0.3419973 -0.0000000 0.9397009 0.3419973 -0.0000000 0.9397009 0.7660742 0.0000000 -0.6427521 0.7660742 0.0000000 -0.6427521 0.4999305 -0.0000000 0.8660655 0.4999305 -0.0000000 0.8660655 0.8660264 0.0000000 -0.4999982 0.8660264 0.0000000 -0.4999982 0.6427576 -0.0000000 0.7660696 0.6427576 -0.0000000 0.7660696 0.9396884 0.0000000 -0.3420319 0.9396884 0.0000000 -0.3420319 0.7660742 0.0000000 0.6427521 0.7660742 0.0000000 0.6427521 0.9848028 0.0000000 -0.1736763 0.9848028 0.0000000 -0.1736763 0.8660264 0.0000000 0.4999982 0.8660264 0.0000000 0.4999982 0.9990485 0.0000000 -0.0436121 0.9990485 0.0000000 -0.0436121 0.9396884 0.0000000 0.3420319 0.9396884 0.0000000 0.3420319 0.9990485 0.0000000 0.0436121 0.9990485 0.0000000 0.0436121 0.9848028 0.0000000 0.1736763 0.9848028 0.0000000 0.1736763 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 1 6 7 6 1 3 8 5 9 5 8 4 6 10 7 10 6 11 12 9 13 9 12 8 11 14 10 14 11 15 16 13 17 13 16 12 15 18 14 18 15 19 16 20 21 20 16 17 19 22 18 22 19 23 21 24 25 24 21 20 23 26 22 26 23 27 25 28 29 28 25 24 26 30 31 30 26 27 29 32 33 32 29 28 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 45 48 49 48 45 44 47 50 51 50 47 46 52 48 53 48 52 49 51 54 55 54 51 50 56 53 57 53 56 52 55 58 59 58 55 54 60 57 61 57 60 56 58 62 59 62 58 63 64 60 61 60 64 65 62 66 67 66 62 63 68 64 69 64 68 65 66 70 67 70 66 71 72 69 73 69 72 68 71 74 70 74 71 75 74 72 73 72 74 75

-
-
-
- - - - 170.4774409 263.7795276 8598.4251969 184.9788583 47.2440945 8567.3267717 170.4774409 47.2440945 8598.4251969 184.9788583 263.7795276 8567.3267717 193.8598031 47.2440945 8534.1811024 193.8598031 263.7795276 8534.1811024 150.7961417 263.7795276 8626.5314961 150.7961417 47.2440945 8626.5314961 196.8503937 263.7795276 8500.0000000 196.8503937 47.2440945 8500.0000000 126.5329921 263.7795276 8650.7952756 126.5329921 47.2440945 8650.7952756 193.8598031 47.2440945 8465.8188976 193.8598031 263.7795276 8465.8188976 98.4251969 47.2440945 8670.4763780 98.4251969 263.7795276 8670.4763780 184.9788583 47.2440945 8432.6732283 184.9788583 263.7795276 8432.6732283 67.3268110 47.2440945 8684.9803150 67.3268110 263.7795276 8684.9803150 170.4774409 47.2440945 8401.5748031 170.4774409 263.7795276 8401.5748031 34.1827126 47.2440945 8693.8582677 34.1827126 263.7795276 8693.8582677 150.7961417 47.2440945 8373.4685039 150.7961417 263.7795276 8373.4685039 0.0000000 47.2440945 8696.8503937 0.0000000 263.7795276 8696.8503937 126.5329921 47.2440945 8349.2047244 126.5329921 263.7795276 8349.2047244 -34.1827126 47.2440945 8693.8582677 -34.1827126 263.7795276 8693.8582677 98.4251969 263.7795276 8329.5236220 98.4251969 47.2440945 8329.5236220 -67.3268110 47.2440945 8684.9803150 -67.3268110 263.7795276 8684.9803150 67.3268110 263.7795276 8315.0196850 67.3268110 47.2440945 8315.0196850 -98.4251969 47.2440945 8670.4763780 -98.4251969 263.7795276 8670.4763780 34.1827126 263.7795276 8306.1417323 34.1827126 47.2440945 8306.1417323 -126.5329921 47.2440945 8650.7952756 -126.5329921 263.7795276 8650.7952756 0.0000000 263.7795276 8303.1496063 0.0000000 47.2440945 8303.1496063 -150.7961417 263.7795276 8626.5314961 -150.7961417 47.2440945 8626.5314961 -34.1827126 263.7795276 8306.1417323 -34.1827126 47.2440945 8306.1417323 -170.4774409 263.7795276 8598.4251969 -170.4774409 47.2440945 8598.4251969 -67.3268110 263.7795276 8315.0196850 -67.3268110 47.2440945 8315.0196850 -184.9788583 263.7795276 8567.3267717 -184.9788583 47.2440945 8567.3267717 -98.4251969 263.7795276 8329.5236220 -98.4251969 47.2440945 8329.5236220 -193.8598031 263.7795276 8534.1811024 -193.8598031 47.2440945 8534.1811024 -126.5329921 263.7795276 8349.2047244 -126.5329921 47.2440945 8349.2047244 -196.8503937 263.7795276 8500.0000000 -196.8503937 47.2440945 8500.0000000 -150.7961417 47.2440945 8373.4685039 -150.7961417 263.7795276 8373.4685039 -193.8598031 263.7795276 8465.8188976 -193.8598031 47.2440945 8465.8188976 -152.5590551 47.2440945 8375.9842520 -170.4774409 47.2440945 8401.5748031 -170.4774409 263.7795276 8401.5748031 -152.5590551 263.7795276 8375.9842520 -184.9788583 47.2440945 8432.6732283 -184.9788583 263.7795276 8432.6732283 - - - - - - - - - - -0.8660200 -0.0000005 -0.5000093 -0.9396947 -0.0000001 -0.3420145 -0.8660200 -0.0000005 -0.5000093 -0.9396947 -0.0000001 -0.3420145 -0.9848084 -0.0000001 -0.1736443 -0.9848084 -0.0000001 -0.1736443 -0.7660416 -0.0000005 -0.6427910 -0.7660416 -0.0000005 -0.6427910 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 0.0000000 -0.6427909 -0.0000000 -0.7660417 -0.6427909 -0.0000000 -0.7660417 -0.9848084 -0.0000001 0.1736443 -0.9848084 -0.0000001 0.1736443 -0.5000269 0.0000000 -0.8660099 -0.5000269 0.0000000 -0.8660099 -0.9396947 -0.0000001 0.3420145 -0.9396947 -0.0000001 0.3420145 -0.3420131 0.0000005 -0.9396952 -0.3420131 0.0000005 -0.9396952 -0.8660200 -0.0000005 0.5000093 -0.8660200 -0.0000005 0.5000093 -0.1736298 0.0000005 -0.9848110 -0.1736298 0.0000005 -0.9848110 -0.7660416 -0.0000005 0.6427910 -0.7660416 -0.0000005 0.6427910 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.6427909 -0.0000000 0.7660417 -0.6427909 -0.0000000 0.7660417 0.1736298 0.0000005 -0.9848110 0.1736298 0.0000005 -0.9848110 -0.5000269 0.0000000 0.8660099 -0.5000269 0.0000000 0.8660099 0.3420130 0.0000005 -0.9396952 0.3420130 0.0000005 -0.9396952 -0.3420131 0.0000005 0.9396952 -0.3420131 0.0000005 0.9396952 0.5000268 -0.0000000 -0.8660100 0.5000268 -0.0000000 -0.8660100 -0.1736298 0.0000005 0.9848110 -0.1736298 0.0000005 0.9848110 0.6427909 -0.0000000 -0.7660417 0.6427909 -0.0000000 -0.7660417 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.7660416 -0.0000005 -0.6427910 0.7660416 -0.0000005 -0.6427910 0.1736298 0.0000005 0.9848110 0.1736298 0.0000005 0.9848110 0.8660200 -0.0000005 -0.5000093 0.8660200 -0.0000005 -0.5000093 0.3420130 0.0000005 0.9396952 0.3420130 0.0000005 0.9396952 0.9396947 -0.0000001 -0.3420145 0.9396947 -0.0000001 -0.3420145 0.5000268 -0.0000000 0.8660100 0.5000268 -0.0000000 0.8660100 0.9848084 -0.0000001 -0.1736443 0.9848084 -0.0000001 -0.1736443 0.6427909 -0.0000000 0.7660417 0.6427909 -0.0000000 0.7660417 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 0.0000000 0.7660449 -0.0000000 0.6427871 0.7660449 -0.0000000 0.6427871 0.9848084 -0.0000001 0.1736443 0.9848084 -0.0000001 0.1736443 0.8191454 -0.0000000 0.5735860 0.8660226 -0.0000000 0.5000049 0.8660226 -0.0000000 0.5000049 0.8191454 -0.0000000 0.5735860 0.9396947 -0.0000001 0.3420145 0.9396947 -0.0000001 0.3420145 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 4 8 9 8 4 5 10 7 11 7 10 6 8 12 9 12 8 13 10 14 15 14 10 11 13 16 12 16 13 17 15 18 19 18 15 14 17 20 16 20 17 21 19 22 23 22 19 18 21 24 20 24 21 25 23 26 27 26 23 22 25 28 24 28 25 29 27 30 31 30 27 26 28 32 33 32 28 29 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 46 42 47 42 46 43 45 48 49 48 45 44 50 47 51 47 50 46 49 52 53 52 49 48 54 51 55 51 54 50 53 56 57 56 53 52 58 55 59 55 58 54 57 60 61 60 57 56 62 59 63 59 62 58 60 64 61 64 60 65 66 63 67 63 66 62 65 68 64 68 65 69 69 65 70 70 65 71 72 66 67 66 72 73 70 72 69 72 70 73

-
-
-
- - - - 60.0965354 263.7795276 8195.6377953 61.0236220 47.2440945 8185.0393701 60.0965354 47.2440945 8195.6377953 61.0236220 263.7795276 8185.0393701 57.3434646 263.7795276 8205.9094488 57.3434646 47.2440945 8205.9094488 61.0236220 263.7795276 8125.9842520 61.0236220 47.2440945 8125.9842520 52.8479921 263.7795276 8215.5511811 52.8479921 47.2440945 8215.5511811 60.0965354 47.2440945 8115.3858268 60.0965354 263.7795276 8115.3858268 46.7468110 263.7795276 8224.2637795 46.7468110 47.2440945 8224.2637795 57.3434646 47.2440945 8105.1141732 57.3434646 263.7795276 8105.1141732 39.2252244 263.7795276 8231.7874016 39.2252244 47.2440945 8231.7874016 52.8479921 47.2440945 8095.4724409 52.8479921 263.7795276 8095.4724409 30.5118110 47.2440945 8237.8858268 30.5118110 263.7795276 8237.8858268 46.7468110 47.2440945 8086.7598425 46.7468110 263.7795276 8086.7598425 20.8713071 47.2440945 8242.3818898 20.8713071 263.7795276 8242.3818898 39.2252244 47.2440945 8079.2362205 39.2252244 263.7795276 8079.2362205 10.5966417 47.2440945 8245.1377953 10.5966417 263.7795276 8245.1377953 30.5118110 263.7795276 8073.1377953 30.5118110 47.2440945 8073.1377953 0.0000000 47.2440945 8246.0629921 0.0000000 263.7795276 8246.0629921 20.8713071 263.7795276 8068.6417323 20.8713071 47.2440945 8068.6417323 -10.5966417 47.2440945 8245.1377953 -10.5966417 263.7795276 8245.1377953 10.5966417 263.7795276 8065.8897638 10.5966417 47.2440945 8065.8897638 -20.8713071 47.2440945 8242.3818898 -20.8713071 263.7795276 8242.3818898 0.0000000 263.7795276 8064.9606299 0.0000000 47.2440945 8064.9606299 -30.5118110 47.2440945 8237.8858268 -30.5118110 263.7795276 8237.8858268 -10.5966417 263.7795276 8065.8897638 -10.5966417 47.2440945 8065.8897638 -39.2252244 47.2440945 8231.7874016 -39.2252244 263.7795276 8231.7874016 -20.8713071 263.7795276 8068.6417323 -20.8713071 47.2440945 8068.6417323 -46.7468110 263.7795276 8224.2637795 -46.7468110 47.2440945 8224.2637795 -30.5118110 263.7795276 8073.1377953 -30.5118110 47.2440945 8073.1377953 -52.8479921 263.7795276 8215.5511811 -52.8479921 47.2440945 8215.5511811 -39.2252244 263.7795276 8079.2362205 -39.2252244 47.2440945 8079.2362205 -57.3434646 47.2440945 8205.9094488 -57.3434646 263.7795276 8205.9094488 -46.7468110 47.2440945 8086.7598425 -46.7468110 263.7795276 8086.7598425 -60.0965354 263.7795276 8195.6377953 -60.0965354 47.2440945 8195.6377953 -52.8479921 263.7795276 8095.4724409 -52.8479921 47.2440945 8095.4724409 -61.0236220 263.7795276 8185.0393701 -61.0236220 47.2440945 8185.0393701 -57.3434646 47.2440945 8105.1141732 -57.3434646 263.7795276 8105.1141732 -61.0236220 263.7795276 8125.9842520 -61.0236220 47.2440945 8125.9842520 -60.0965354 47.2440945 8115.3858268 -60.0965354 263.7795276 8115.3858268 - - - - - - - - - - -0.9848028 -0.0000000 -0.1736763 -0.9990485 -0.0000000 -0.0436121 -0.9848028 -0.0000000 -0.1736763 -0.9990485 -0.0000000 -0.0436121 -0.9396884 0.0000000 -0.3420319 -0.9396884 0.0000000 -0.3420319 -0.9990485 0.0000000 0.0436121 -0.9990485 0.0000000 0.0436121 -0.8660264 0.0000000 -0.4999982 -0.8660264 0.0000000 -0.4999982 -0.9848028 0.0000000 0.1736763 -0.9848028 0.0000000 0.1736763 -0.7660742 -0.0000000 -0.6427521 -0.7660742 -0.0000000 -0.6427521 -0.9396884 0.0000000 0.3420319 -0.9396884 0.0000000 0.3420319 -0.6427576 0.0000000 -0.7660696 -0.6427576 0.0000000 -0.7660696 -0.8660264 0.0000000 0.4999982 -0.8660264 0.0000000 0.4999982 -0.4999305 0.0000000 -0.8660655 -0.4999305 0.0000000 -0.8660655 -0.7660742 0.0000000 0.6427521 -0.7660742 0.0000000 0.6427521 -0.3421652 -0.0000000 -0.9396398 -0.3421652 -0.0000000 -0.9396398 -0.6427576 -0.0000000 0.7660696 -0.6427576 -0.0000000 0.7660696 -0.1736870 -0.0000000 -0.9848009 -0.1736870 -0.0000000 -0.9848009 -0.4999305 -0.0000000 0.8660655 -0.4999305 -0.0000000 0.8660655 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.3419973 -0.0000000 0.9397009 -0.3419973 -0.0000000 0.9397009 0.1736870 -0.0000000 -0.9848009 0.1736870 -0.0000000 -0.9848009 -0.1736925 -0.0000000 0.9847999 -0.1736925 -0.0000000 0.9847999 0.3421652 -0.0000000 -0.9396398 0.3421652 -0.0000000 -0.9396398 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.4999305 0.0000000 -0.8660655 0.4999305 0.0000000 -0.8660655 0.1736925 -0.0000000 0.9847999 0.1736925 -0.0000000 0.9847999 0.6427576 0.0000000 -0.7660696 0.6427576 0.0000000 -0.7660696 0.3419973 -0.0000000 0.9397009 0.3419973 -0.0000000 0.9397009 0.7660742 -0.0000000 -0.6427521 0.7660742 -0.0000000 -0.6427521 0.4999305 0.0000000 0.8660655 0.4999305 0.0000000 0.8660655 0.8660264 0.0000000 -0.4999982 0.8660264 0.0000000 -0.4999982 0.6427576 0.0000000 0.7660696 0.6427576 0.0000000 0.7660696 0.9396884 0.0000000 -0.3420319 0.9396884 0.0000000 -0.3420319 0.7660742 0.0000000 0.6427521 0.7660742 0.0000000 0.6427521 0.9848028 -0.0000000 -0.1736763 0.9848028 -0.0000000 -0.1736763 0.8660264 0.0000000 0.4999982 0.8660264 0.0000000 0.4999982 0.9990485 -0.0000000 -0.0436121 0.9990485 -0.0000000 -0.0436121 0.9396884 0.0000000 0.3420319 0.9396884 0.0000000 0.3420319 0.9990485 0.0000000 0.0436121 0.9990485 0.0000000 0.0436121 0.9848028 0.0000000 0.1736763 0.9848028 0.0000000 0.1736763 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 1 6 7 6 1 3 8 5 9 5 8 4 6 10 7 10 6 11 12 9 13 9 12 8 11 14 10 14 11 15 16 13 17 13 16 12 15 18 14 18 15 19 16 20 21 20 16 17 19 22 18 22 19 23 21 24 25 24 21 20 23 26 22 26 23 27 25 28 29 28 25 24 26 30 31 30 26 27 29 32 33 32 29 28 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 45 48 49 48 45 44 47 50 51 50 47 46 52 48 53 48 52 49 51 54 55 54 51 50 56 53 57 53 56 52 55 58 59 58 55 54 60 56 57 56 60 61 58 62 59 62 58 63 64 60 65 60 64 61 62 66 67 66 62 63 68 65 69 65 68 64 66 70 67 70 66 71 72 69 73 69 72 68 71 74 70 74 71 75 75 73 74 73 75 72

-
-
-
- - - - 8.5456772 263.7795276 3233.5043307 0.0000000 47.2440945 3234.2515748 0.0000000 263.7795276 3234.2515748 8.5456772 47.2440945 3233.5043307 16.8317008 263.7795276 3231.2838583 16.8317008 47.2440945 3231.2838583 -8.5456772 47.2440945 3233.5043307 -8.5456772 263.7795276 3233.5043307 24.6062992 263.7795276 3227.6590551 24.6062992 47.2440945 3227.6590551 -16.8317008 47.2440945 3231.2838583 -16.8317008 263.7795276 3231.2838583 31.6332480 263.7795276 3222.7385827 31.6332480 47.2440945 3222.7385827 -24.6062992 47.2440945 3227.6590551 -24.6062992 263.7795276 3227.6590551 37.6990354 263.7795276 3216.6728346 37.6990354 47.2440945 3216.6728346 -31.6332480 47.2440945 3222.7385827 -31.6332480 263.7795276 3222.7385827 42.6193701 47.2440945 3209.6452756 42.6193701 263.7795276 3209.6452756 -37.6990354 47.2440945 3216.6728346 -37.6990354 263.7795276 3216.6728346 46.2447244 263.7795276 3201.8708661 46.2447244 47.2440945 3201.8708661 -42.6193701 263.7795276 3209.6452756 -42.6193701 47.2440945 3209.6452756 48.4649606 47.2440945 3193.5850394 48.4649606 263.7795276 3193.5850394 -46.2447244 263.7795276 3201.8708661 -46.2447244 47.2440945 3201.8708661 49.2125984 47.2440945 3185.0389764 49.2125984 263.7795276 3185.0389764 -48.4649606 263.7795276 3193.5850394 -48.4649606 47.2440945 3193.5850394 48.4649606 47.2440945 3176.4944882 48.4649606 263.7795276 3176.4944882 -49.2125984 263.7795276 3185.0389764 -49.2125984 47.2440945 3185.0389764 46.2447244 263.7795276 3168.2078740 46.2447244 47.2440945 3168.2078740 -48.4649606 47.2440945 3176.4944882 -48.4649606 263.7795276 3176.4944882 42.6193701 47.2440945 3160.4326772 42.6193701 263.7795276 3160.4326772 -46.2447244 263.7795276 3168.2078740 -46.2447244 47.2440945 3168.2078740 37.6990354 47.2440945 3153.4059055 37.6990354 263.7795276 3153.4059055 -42.6193701 47.2440945 3160.4326772 -42.6193701 263.7795276 3160.4326772 31.6332480 263.7795276 3147.3401575 31.6332480 47.2440945 3147.3401575 -37.6990354 263.7795276 3153.4059055 -37.6990354 47.2440945 3153.4059055 24.6062992 263.7795276 3142.4200787 24.6062992 47.2440945 3142.4200787 -31.6332480 47.2440945 3147.3401575 -31.6332480 263.7795276 3147.3401575 16.8317008 263.7795276 3138.7944882 16.8317008 47.2440945 3138.7944882 -24.6062992 47.2440945 3142.4200787 -24.6062992 263.7795276 3142.4200787 8.5456772 263.7795276 3136.5744094 8.5456772 47.2440945 3136.5744094 -16.8317008 47.2440945 3138.7944882 -16.8317008 263.7795276 3138.7944882 0.0000000 263.7795276 3135.8263780 0.0000000 47.2440945 3135.8263780 -8.5456772 47.2440945 3136.5744094 -8.5456772 263.7795276 3136.5744094 - - - - - - - - - - -0.1736382 0.0000000 -0.9848095 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1736382 0.0000000 -0.9848095 -0.3420054 0.0000000 -0.9396980 -0.3420054 0.0000000 -0.9396980 0.1736382 0.0000000 -0.9848095 0.1736382 0.0000000 -0.9848095 -0.4999810 0.0000000 -0.8660364 -0.4999810 0.0000000 -0.8660364 0.3420054 -0.0000000 -0.9396980 0.3420054 -0.0000000 -0.9396980 -0.6427918 -0.0000000 -0.7660409 -0.6427918 -0.0000000 -0.7660409 0.4999810 -0.0000000 -0.8660364 0.4999810 -0.0000000 -0.8660364 -0.7660561 -0.0000000 -0.6427737 -0.7660561 -0.0000000 -0.6427737 0.6427918 -0.0000000 -0.7660409 0.6427918 -0.0000000 -0.7660409 -0.8660330 0.0000000 -0.4999868 -0.8660330 0.0000000 -0.4999868 0.7660561 -0.0000000 -0.6427737 0.7660561 -0.0000000 -0.6427737 -0.9396900 0.0000000 -0.3420274 -0.9396900 0.0000000 -0.3420274 0.8660330 0.0000000 -0.4999868 0.8660330 0.0000000 -0.4999868 -0.9848077 0.0000000 -0.1736486 -0.9848077 0.0000000 -0.1736486 0.9396900 0.0000000 -0.3420274 0.9396900 0.0000000 -0.3420274 -1.0000000 0.0000000 0.0000080 -1.0000000 0.0000000 0.0000080 0.9848077 0.0000000 -0.1736486 0.9848077 0.0000000 -0.1736486 -0.9848083 0.0000000 0.1736448 -0.9848083 0.0000000 0.1736448 1.0000000 0.0000000 0.0000080 1.0000000 0.0000000 0.0000080 -0.9397007 0.0000000 0.3419981 -0.9397007 0.0000000 0.3419981 0.9848083 0.0000000 0.1736448 0.9848083 0.0000000 0.1736448 -0.8660295 0.0000000 0.4999928 -0.8660295 0.0000000 0.4999928 0.9397007 0.0000000 0.3419981 0.9397007 0.0000000 0.3419981 -0.7660392 -0.0000000 0.6427938 -0.7660392 -0.0000000 0.6427938 0.8660295 0.0000000 0.4999928 0.8660295 0.0000000 0.4999928 -0.6427774 -0.0000000 0.7660530 -0.6427774 -0.0000000 0.7660530 0.7660392 -0.0000000 0.6427938 0.7660392 -0.0000000 0.6427938 -0.5000007 0.0000000 0.8660250 -0.5000007 0.0000000 0.8660250 0.6427774 -0.0000000 0.7660530 0.6427774 -0.0000000 0.7660530 -0.3420237 0.0000000 0.9396913 -0.3420237 0.0000000 0.9396913 0.5000007 0.0000000 0.8660250 0.5000007 0.0000000 0.8660250 -0.1736614 0.0000000 0.9848054 -0.1736614 0.0000000 0.9848054 0.3420237 0.0000000 0.9396913 0.3420237 0.0000000 0.9396913 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.1736614 0.0000000 0.9848054 0.1736614 0.0000000 0.9848054 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 16 20 17 20 16 21 19 22 23 22 19 18 20 24 25 24 20 21 26 22 27 22 26 23 24 28 25 28 24 29 30 27 31 27 30 26 29 32 28 32 29 33 34 31 35 31 34 30 33 36 32 36 33 37 38 35 39 35 38 34 36 40 41 40 36 37 42 38 39 38 42 43 40 44 41 44 40 45 46 42 47 42 46 43 45 48 44 48 45 49 50 46 47 46 50 51 48 52 53 52 48 49 54 50 55 50 54 51 53 56 57 56 53 52 58 54 55 54 58 59 57 60 61 60 57 56 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 71 70 71 69 68

-
-
-
- - - - -202.1195669 263.7795276 8208.9724409 -225.3937008 47.2440945 8227.4803150 -225.3937008 263.7795276 8227.4803150 -202.1195669 47.2440945 8208.9724409 -198.3441339 263.7795276 8205.8543307 -198.3441339 47.2440945 8205.8543307 -238.0594488 47.2440945 8237.5551181 -238.0594488 263.7795276 8237.5551181 -195.1354331 47.2440945 8202.1574803 -195.1354331 263.7795276 8202.1574803 -270.0010630 263.7795276 8270.5433071 -270.0010630 47.2440945 8270.5433071 -192.5816142 263.7795276 8197.9803150 -192.5816142 47.2440945 8197.9803150 -297.4078740 47.2440945 8307.3897638 -297.4078740 263.7795276 8307.3897638 -190.7529134 47.2440945 8193.4409449 -190.7529134 263.7795276 8193.4409449 -300.4010630 263.7795276 8311.2637795 -300.4010630 47.2440945 8311.2637795 -189.6995669 263.7795276 8188.6614173 -189.6995669 47.2440945 8188.6614173 -303.9934646 47.2440945 8314.5905512 -303.9934646 263.7795276 8314.5905512 -189.4505512 47.2440945 8183.7716535 -189.4505512 263.7795276 8183.7716535 -308.0862598 47.2440945 8317.2795276 -308.0862598 263.7795276 8317.2795276 -190.0126378 47.2440945 8178.9094488 -190.0126378 263.7795276 8178.9094488 -312.5669685 47.2440945 8319.2519685 -312.5669685 263.7795276 8319.2519685 -191.3704724 47.2440945 8174.2047244 -191.3704724 263.7795276 8174.2047244 -317.3123228 47.2440945 8320.4606299 -317.3123228 263.7795276 8320.4606299 -193.4866929 47.2440945 8169.7913386 -193.4866929 263.7795276 8169.7913386 -322.1918504 47.2440945 8320.8661417 -322.1918504 263.7795276 8320.8661417 -283.2355118 263.7795276 8016.6220472 -283.2355118 47.2440945 8016.6220472 -520.7763780 47.2440945 8320.8661417 -520.7763780 263.7795276 8320.8661417 -285.9833071 47.2440945 8012.7007874 -285.9833071 263.7795276 8012.7007874 -525.5578740 47.2440945 8320.4763780 -525.5578740 263.7795276 8320.4763780 -289.3288583 263.7795276 8009.2755906 -289.3288583 47.2440945 8009.2755906 -530.2133858 47.2440945 8319.3188976 -530.2133858 263.7795276 8319.3188976 -293.1840945 263.7795276 8006.4370079 -293.1840945 47.2440945 8006.4370079 -534.6196850 47.2440945 8317.4212598 -534.6196850 263.7795276 8317.4212598 -297.4477165 263.7795276 8004.2559055 -297.4477165 47.2440945 8004.2559055 -538.6606299 47.2440945 8314.8346457 -538.6606299 263.7795276 8314.8346457 -302.0075591 263.7795276 8002.7952756 -302.0075591 47.2440945 8002.7952756 -542.2295276 47.2440945 8311.6259843 -542.2295276 263.7795276 8311.6259843 -306.7437008 263.7795276 8002.0905512 -306.7437008 47.2440945 8002.0905512 -545.2318898 47.2440945 8307.8858268 -545.2318898 263.7795276 8307.8858268 -311.5315748 263.7795276 8002.1574803 -311.5315748 47.2440945 8002.1574803 -547.5885827 263.7795276 8303.7086614 -547.5885827 47.2440945 8303.7086614 -316.2453150 263.7795276 8003.0000000 -316.2453150 47.2440945 8003.0000000 -549.2377953 47.2440945 8299.2007874 -549.2377953 263.7795276 8299.2007874 -320.7609843 263.7795276 8004.5944882 -320.7609843 47.2440945 8004.5944882 -550.1354331 263.7795276 8294.4881890 -550.1354331 47.2440945 8294.4881890 -324.9596850 263.7795276 8006.8976378 -324.9596850 47.2440945 8006.8976378 -550.2578740 263.7795276 8289.6929134 -550.2578740 47.2440945 8289.6929134 -395.7700787 263.7795276 8061.6889764 -395.7700787 47.2440945 8061.6889764 -549.6023622 47.2440945 8284.9409449 -549.6023622 263.7795276 8284.9409449 -457.4830709 47.2440945 8126.5551181 -457.4830709 263.7795276 8126.5551181 -548.1854331 263.7795276 8280.3582677 -548.1854331 47.2440945 8280.3582677 -508.6807087 47.2440945 8200.0078740 -508.6807087 263.7795276 8200.0078740 - - - - - - - - - - -0.6296273 -0.0000000 -0.7768973 -0.6224612 -0.0000000 -0.7826506 -0.6224612 -0.0000000 -0.7826506 -0.6296273 -0.0000000 -0.7768973 -0.6983941 0.0000000 -0.7157134 -0.6983941 0.0000000 -0.7157134 -0.6718724 0.0000000 -0.7406669 -0.6718724 0.0000000 -0.7406669 -0.8069751 0.0000000 -0.5905855 -0.8069751 0.0000000 -0.5905855 -0.7619958 0.0000006 -0.6475820 -0.7619958 0.0000006 -0.6475820 -0.8934387 -0.0000000 -0.4491851 -0.8934387 -0.0000000 -0.4491851 -0.7968814 0.0000006 -0.6041357 -0.7968814 0.0000006 -0.6041357 -0.9553537 -0.0000000 -0.2954645 -0.9553537 -0.0000000 -0.2954645 -0.7379293 0.0000000 -0.6748780 -0.7379293 0.0000000 -0.6748780 -0.9910487 -0.0000000 -0.1335010 -0.9910487 -0.0000000 -0.1335010 -0.6163935 0.0000000 -0.7874383 -0.6163935 0.0000000 -0.7874383 -0.9994847 -0.0000000 0.0320997 -0.9994847 -0.0000000 0.0320997 -0.4776530 0.0000000 -0.8785486 -0.4776530 0.0000000 -0.8785486 -0.9804553 -0.0000000 0.1967421 -0.9804553 -0.0000000 0.1967421 -0.3259731 0.0000000 -0.9453790 -0.3259731 0.0000000 -0.9453790 -0.9344643 0.0000000 0.3560568 -0.9344643 0.0000000 0.3560568 -0.1653942 0.0000000 -0.9862275 -0.1653942 0.0000000 -0.9862275 -0.8830062 -0.0000004 0.4693613 -0.8830062 -0.0000004 0.4693613 -0.0414452 -0.0000000 -0.9991408 -0.0414452 -0.0000000 -0.9991408 -0.8415649 -0.0000004 0.5401561 -0.8415649 -0.0000004 0.5401561 0.0406564 0.0000000 -0.9991732 0.0406564 0.0000000 -0.9991732 -0.7696970 0.0000000 0.6384094 -0.7696970 0.0000000 0.6384094 0.1617957 0.0000000 -0.9868243 0.1617957 0.0000000 -0.9868243 -0.6563086 0.0000000 0.7544926 -0.6563086 0.0000000 0.7544926 0.3194717 0.0000000 -0.9475958 0.3194717 0.0000000 -0.9475958 -0.5258908 0.0000000 0.8505521 -0.5258908 0.0000000 0.8505521 0.4688797 0.0000000 -0.8832620 0.4688797 0.0000000 -0.8832620 -0.3815064 0.0000000 0.9243662 -0.3815064 0.0000000 0.9243662 0.6058557 0.0000000 -0.7955746 0.6058557 0.0000000 -0.7955746 -0.2268629 -0.0000000 0.9739267 -0.2268629 -0.0000000 0.9739267 0.7265880 0.0000000 -0.6870734 0.7265880 0.0000000 -0.6870734 -0.0668179 -0.0000000 0.9977652 -0.0668179 -0.0000000 0.9977652 0.8281272 0.0000000 -0.5605402 0.8281272 0.0000000 -0.5605402 0.0952789 -0.0000000 0.9954506 0.0952789 -0.0000000 0.9954506 0.9080476 0.0000000 -0.4188670 0.9080476 0.0000000 -0.4188670 0.2552943 0.0000000 0.9668634 0.2552943 0.0000000 0.9668634 0.9639111 0.0000000 -0.2662243 0.9639111 0.0000000 -0.2662243 0.4082879 0.0000000 0.9128532 0.4082879 0.0000000 0.9128532 0.9942943 0.0000000 -0.1066715 0.9942943 0.0000000 -0.1066715 0.5481348 0.0000000 0.8363900 0.5481348 0.0000000 0.8363900 0.9984449 0.0000000 0.0557471 0.9984449 0.0000000 0.0557471 0.6701598 0.0000000 0.7422169 0.6701598 0.0000000 0.7422169 0.9762292 0.0000000 0.2167406 0.9762292 0.0000000 0.2167406 0.7746682 -0.0000000 0.6323680 0.7746682 -0.0000000 0.6323680 0.9292531 -0.0000005 0.3694438 0.9292531 -0.0000005 0.3694438 0.8613701 -0.0000005 0.5079780 0.8613701 -0.0000005 0.5079780 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 4 8 5 8 4 9 10 6 11 6 10 7 8 12 13 12 8 9 14 10 11 10 14 15 12 16 13 16 12 17 18 14 19 14 18 15 16 20 21 20 16 17 18 22 23 22 18 19 20 24 21 24 20 25 23 26 27 26 23 22 25 28 24 28 25 29 27 30 31 30 27 26 29 32 28 32 29 33 31 34 35 34 31 30 33 36 32 36 33 37 35 38 39 38 35 34 36 40 41 40 36 37 39 42 43 42 39 38 40 44 41 44 40 45 43 46 47 46 43 42 44 48 49 48 44 45 47 50 51 50 47 46 49 52 53 52 49 48 51 54 55 54 51 50 53 56 57 56 53 52 55 58 59 58 55 54 57 60 61 60 57 56 59 62 63 62 59 58 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 66 71 66 70 67 69 72 73 72 69 68 74 70 71 70 74 75 73 76 77 76 73 72 78 74 79 74 78 75 77 80 81 80 77 76 82 79 83 79 82 78 81 84 85 84 81 80 86 82 83 82 86 87 84 88 85 88 84 89 90 86 91 86 90 87 89 92 88 92 89 93 93 91 92 91 93 90

-
-
-
- - - - -304.3639764 47.2440945 8439.9055118 -314.9606299 263.7795276 8438.9763780 -314.9606299 47.2440945 8438.9763780 -304.3639764 263.7795276 8439.9055118 -294.0893307 47.2440945 8442.6574803 -294.0893307 263.7795276 8442.6574803 -374.0157480 263.7795276 8438.9763780 -374.0157480 47.2440945 8438.9763780 -284.4488189 47.2440945 8447.1535433 -284.4488189 263.7795276 8447.1535433 -384.6124016 263.7795276 8439.9055118 -384.6124016 47.2440945 8439.9055118 -275.7353937 47.2440945 8453.2519685 -275.7353937 263.7795276 8453.2519685 -394.8870079 263.7795276 8442.6574803 -394.8870079 47.2440945 8442.6574803 -268.2138189 263.7795276 8460.7755906 -268.2138189 47.2440945 8460.7755906 -404.5275591 263.7795276 8447.1535433 -404.5275591 47.2440945 8447.1535433 -262.1125984 263.7795276 8469.4881890 -262.1125984 47.2440945 8469.4881890 -413.2409449 263.7795276 8453.2519685 -413.2409449 47.2440945 8453.2519685 -257.6172047 263.7795276 8479.1299213 -257.6172047 47.2440945 8479.1299213 -420.7625984 47.2440945 8460.7755906 -420.7625984 263.7795276 8460.7755906 -254.8640945 263.7795276 8489.4015748 -254.8640945 47.2440945 8489.4015748 -426.8637795 47.2440945 8469.4881890 -426.8637795 263.7795276 8469.4881890 -253.9370079 263.7795276 8500.0000000 -253.9370079 47.2440945 8500.0000000 -431.3590551 47.2440945 8479.1299213 -431.3590551 263.7795276 8479.1299213 -254.8640945 263.7795276 8510.5984252 -254.8640945 47.2440945 8510.5984252 -434.1122047 263.7795276 8489.4015748 -434.1122047 47.2440945 8489.4015748 -257.6172047 47.2440945 8520.8700787 -257.6172047 263.7795276 8520.8700787 -435.0393701 47.2440945 8500.0000000 -435.0393701 263.7795276 8500.0000000 -262.1125984 263.7795276 8530.5118110 -262.1125984 47.2440945 8530.5118110 -434.1122047 47.2440945 8510.5984252 -434.1122047 263.7795276 8510.5984252 -268.2138189 263.7795276 8539.2244094 -268.2138189 47.2440945 8539.2244094 -431.3590551 47.2440945 8520.8700787 -431.3590551 263.7795276 8520.8700787 -275.7353937 263.7795276 8546.7480315 -275.7353937 47.2440945 8546.7480315 -426.8637795 263.7795276 8530.5118110 -426.8637795 47.2440945 8530.5118110 -284.4488189 47.2440945 8552.8464567 -284.4488189 263.7795276 8552.8464567 -420.7625984 47.2440945 8539.2244094 -420.7625984 263.7795276 8539.2244094 -294.0893307 47.2440945 8557.3425197 -294.0893307 263.7795276 8557.3425197 -413.2409449 47.2440945 8546.7480315 -413.2409449 263.7795276 8546.7480315 -304.3639764 47.2440945 8560.0984252 -304.3639764 263.7795276 8560.0984252 -404.5275591 263.7795276 8552.8464567 -404.5275591 47.2440945 8552.8464567 -314.9606299 47.2440945 8561.0236220 -314.9606299 263.7795276 8561.0236220 -394.8870079 263.7795276 8557.3425197 -394.8870079 47.2440945 8557.3425197 -374.0157480 47.2440945 8561.0236220 -374.0157480 263.7795276 8561.0236220 -384.6124016 263.7795276 8560.0984252 -384.6124016 47.2440945 8560.0984252 - - - - - - - - - - -0.1736927 0.0000000 0.9847999 -0.0437151 0.0000000 0.9990440 -0.0437151 0.0000000 0.9990440 -0.1736927 0.0000000 0.9847999 -0.3419974 0.0000000 0.9397009 -0.3419974 0.0000000 0.9397009 0.0437151 -0.0000000 0.9990440 0.0437151 -0.0000000 0.9990440 -0.4999301 0.0000000 0.8660658 -0.4999301 0.0000000 0.8660658 0.1736932 -0.0000000 0.9847998 0.1736932 -0.0000000 0.9847998 -0.6427577 0.0000000 0.7660695 -0.6427577 0.0000000 0.7660695 0.3419971 0.0000000 0.9397010 0.3419971 0.0000000 0.9397010 -0.7660735 -0.0000000 0.6427530 -0.7660735 -0.0000000 0.6427530 0.4999303 0.0000000 0.8660656 0.4999303 0.0000000 0.8660656 -0.8660272 -0.0000000 0.4999969 -0.8660272 -0.0000000 0.4999969 0.6427565 0.0000000 0.7660705 0.6427565 0.0000000 0.7660705 -0.9396888 -0.0000000 0.3420307 -0.9396888 -0.0000000 0.3420307 0.7660728 0.0000000 0.6427538 0.7660728 0.0000000 0.6427538 -0.9848025 0.0000000 0.1736781 -0.9848025 0.0000000 0.1736781 0.8660305 -0.0000000 0.4999912 0.8660305 -0.0000000 0.4999912 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 0.9396899 -0.0000000 0.3420277 0.9396899 -0.0000000 0.3420277 -0.9848025 0.0000000 -0.1736781 -0.9848025 0.0000000 -0.1736781 0.9848015 0.0000000 0.1736835 0.9848015 0.0000000 0.1736835 -0.9396888 0.0000000 -0.3420307 -0.9396888 0.0000000 -0.3420307 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -0.8660272 0.0000000 -0.4999969 -0.8660272 0.0000000 -0.4999969 0.9848015 0.0000000 -0.1736835 0.9848015 0.0000000 -0.1736835 -0.7660735 -0.0000000 -0.6427530 -0.7660735 -0.0000000 -0.6427530 0.9396899 0.0000000 -0.3420277 0.9396899 0.0000000 -0.3420277 -0.6427577 0.0000000 -0.7660695 -0.6427577 0.0000000 -0.7660695 0.8660305 -0.0000000 -0.4999912 0.8660305 -0.0000000 -0.4999912 -0.4999301 0.0000000 -0.8660658 -0.4999301 0.0000000 -0.8660658 0.7660728 -0.0000000 -0.6427538 0.7660728 -0.0000000 -0.6427538 -0.3421653 0.0000000 -0.9396398 -0.3421653 0.0000000 -0.9396398 0.6427565 0.0000000 -0.7660705 0.6427565 0.0000000 -0.7660705 -0.1736872 0.0000000 -0.9848009 -0.1736872 0.0000000 -0.9848009 0.4999303 0.0000000 -0.8660656 0.4999303 0.0000000 -0.8660656 -0.0435310 0.0000000 -0.9990521 -0.0435310 0.0000000 -0.9990521 0.3421650 0.0000000 -0.9396399 0.3421650 0.0000000 -0.9396399 0.0435310 0.0000000 -0.9990521 0.0435310 0.0000000 -0.9990521 0.1736877 0.0000000 -0.9848008 0.1736877 0.0000000 -0.9848008 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 12 17 12 16 13 15 18 19 18 15 14 20 17 21 17 20 16 19 22 23 22 19 18 24 21 25 21 24 20 22 26 23 26 22 27 28 25 29 25 28 24 27 30 26 30 27 31 32 29 33 29 32 28 31 34 30 34 31 35 36 33 37 33 36 32 34 38 39 38 34 35 40 36 37 36 40 41 38 42 39 42 38 43 44 40 45 40 44 41 43 46 42 46 43 47 48 45 49 45 48 44 47 50 46 50 47 51 52 49 53 49 52 48 50 54 55 54 50 51 52 56 57 56 52 53 54 58 55 58 54 59 57 60 61 60 57 56 59 62 58 62 59 63 61 64 65 64 61 60 66 62 63 62 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 72 73 72 69 68 74 71 70 71 74 75 73 75 74 75 73 72

-
-
-
- - - - -267.5136614 47.2440945 8732.3503937 -297.4078740 263.7795276 8692.6102362 -297.4078740 47.2440945 8692.6102362 -267.5136614 263.7795276 8732.3503937 -232.3503543 47.2440945 8767.5118110 -232.3503543 263.7795276 8767.5118110 -300.4010630 47.2440945 8688.7362205 -300.4010630 263.7795276 8688.7362205 -225.3937008 47.2440945 8772.7480315 -225.3937008 263.7795276 8772.7480315 -303.9934646 263.7795276 8685.4094488 -303.9934646 47.2440945 8685.4094488 -192.6105512 47.2440945 8797.4094488 -192.6105512 263.7795276 8797.4094488 -308.0862598 263.7795276 8682.7204724 -308.0862598 47.2440945 8682.7204724 -189.2058661 47.2440945 8800.0393701 -189.2058661 263.7795276 8800.0393701 -312.5669685 263.7795276 8680.7480315 -312.5669685 47.2440945 8680.7480315 -188.7355906 47.2440945 8800.4015748 -188.7355906 263.7795276 8800.4015748 -317.3123228 263.7795276 8679.5393701 -317.3123228 47.2440945 8679.5393701 -185.4085433 47.2440945 8803.9921260 -185.4085433 263.7795276 8803.9921260 -322.1918504 263.7795276 8679.1338583 -322.1918504 47.2440945 8679.1338583 -182.7209055 263.7795276 8808.0866142 -182.7209055 47.2440945 8808.0866142 -507.0799213 263.7795276 8679.1338583 -507.0799213 47.2440945 8679.1338583 -180.7465748 47.2440945 8812.5669291 -180.7465748 263.7795276 8812.5669291 -512.2074803 263.7795276 8679.5826772 -512.2074803 47.2440945 8679.5826772 -179.5398425 263.7795276 8817.3110236 -179.5398425 47.2440945 8817.3110236 -517.1791339 263.7795276 8680.9133858 -517.1791339 47.2440945 8680.9133858 -179.1338583 263.7795276 8822.1929134 -179.1338583 47.2440945 8822.1929134 -521.8437008 263.7795276 8683.0905512 -521.8437008 47.2440945 8683.0905512 -179.1338583 263.7795276 9007.0787402 -179.1338583 47.2440945 9007.0787402 -526.0598425 263.7795276 8686.0433071 -526.0598425 47.2440945 8686.0433071 -179.5824409 263.7795276 9012.2086614 -179.5824409 47.2440945 9012.2086614 -529.6992126 263.7795276 8689.6811024 -529.6992126 47.2440945 8689.6811024 -180.9145669 263.7795276 9017.1771654 -180.9145669 47.2440945 9017.1771654 -532.6515748 47.2440945 8693.8976378 -532.6515748 263.7795276 8693.8976378 -183.0898031 47.2440945 9021.8425197 -183.0898031 263.7795276 9021.8425197 -534.8267717 263.7795276 8698.5629921 -534.8267717 47.2440945 8698.5629921 -186.0419685 263.7795276 9026.0590551 -186.0419685 47.2440945 9026.0590551 -536.1590551 47.2440945 8703.5354331 -536.1590551 263.7795276 8703.5354331 -189.6814567 47.2440945 9029.7007874 -189.6814567 263.7795276 9029.7007874 -536.6074803 47.2440945 8708.6614173 -536.6074803 263.7795276 8708.6614173 -193.8976378 47.2440945 9032.6535433 -193.8976378 263.7795276 9032.6535433 -536.6074803 47.2440945 8710.0393701 -536.6074803 263.7795276 8710.0393701 -198.5624016 47.2440945 9034.8267717 -198.5624016 263.7795276 9034.8267717 -536.2440945 47.2440945 8714.6574803 -536.2440945 263.7795276 8714.6574803 -203.5340157 47.2440945 9036.1574803 -203.5340157 263.7795276 9036.1574803 -535.1622047 47.2440945 8719.1653543 -535.1622047 263.7795276 8719.1653543 -208.6614173 47.2440945 9036.6062992 -208.6614173 263.7795276 9036.6062992 -533.3893701 47.2440945 8723.4448819 -533.3893701 263.7795276 8723.4448819 -210.0394094 47.2440945 9036.6062992 -210.0394094 263.7795276 9036.6062992 -530.9681102 47.2440945 8727.3937008 -530.9681102 263.7795276 8727.3937008 -214.6585433 47.2440945 9036.2440945 -214.6585433 263.7795276 9036.2440945 -527.9590551 263.7795276 8730.9173228 -527.9590551 47.2440945 8730.9173228 -219.1639370 47.2440945 9035.1614173 -219.1639370 263.7795276 9035.1614173 -273.0542126 47.2440945 8985.8228346 -230.9185433 47.2440945 9027.9606299 -230.9185433 263.7795276 9027.9606299 -273.0542126 263.7795276 8985.8228346 -223.4446457 47.2440945 9033.3897638 -223.4446457 263.7795276 9033.3897638 -227.3952756 263.7795276 9030.9685039 -227.3952756 47.2440945 9030.9685039 -225.3937008 47.2440945 9032.1968504 -225.3937008 263.7795276 9032.1968504 - - - - - - - - - - -0.7549754 0.0000000 0.6557531 -0.7952469 0.0000000 0.6062857 -0.7952469 0.0000000 0.6062857 -0.7549754 0.0000000 0.6557531 -0.6558414 -0.0000000 0.7548987 -0.6558414 -0.0000000 0.7548987 -0.7379293 0.0000000 0.6748780 -0.7379293 0.0000000 0.6748780 -0.6012653 -0.0000000 0.7990495 -0.6012653 -0.0000000 0.7990495 -0.6163935 0.0000000 0.7874383 -0.6163935 0.0000000 0.7874383 -0.6062427 0.0000000 0.7952797 -0.6062427 0.0000000 0.7952797 -0.4776530 0.0000000 0.8785486 -0.4776530 0.0000000 0.8785486 -0.6107489 0.0000000 0.7918243 -0.6107489 0.0000000 0.7918243 -0.3259731 0.0000000 0.9453790 -0.3259731 0.0000000 0.9453790 -0.6742044 0.0000000 0.7385448 -0.6742044 0.0000000 0.7385448 -0.1653942 -0.0000000 0.9862275 -0.1653942 -0.0000000 0.9862275 -0.7874753 -0.0000000 0.6163462 -0.7874753 -0.0000000 0.6163462 -0.0414452 -0.0000000 0.9991408 -0.0414452 -0.0000000 0.9991408 -0.8785563 -0.0000000 0.4776387 -0.8785563 -0.0000000 0.4776387 0.0436402 0.0000000 0.9990473 0.0436402 0.0000000 0.9990473 -0.9453681 0.0000000 0.3260049 -0.9453681 0.0000000 0.3260049 0.1735355 0.0000000 0.9848276 0.1735355 0.0000000 0.9848276 -0.9862492 -0.0000000 0.1652649 -0.9862492 -0.0000000 0.1652649 0.3420619 0.0000000 0.9396774 0.3420619 0.0000000 0.9396774 -0.9991396 -0.0000000 0.0414733 -0.9991396 -0.0000000 0.0414733 0.5001958 0.0000000 0.8659124 0.5001958 0.0000000 0.8659124 -0.9990492 0.0000000 -0.0435974 -0.9990492 0.0000000 -0.0435974 0.6427402 0.0000000 0.7660842 0.6427402 0.0000000 0.7660842 -0.9847982 0.0000000 -0.1737023 -0.9847982 0.0000000 -0.1737023 0.7659794 0.0000000 0.6428651 0.7659794 0.0000000 0.6428651 -0.9396740 0.0000000 -0.3420714 -0.9396740 0.0000000 -0.3420714 0.8660418 0.0000000 0.4999716 0.8660418 0.0000000 0.4999716 -0.8660479 0.0000000 -0.4999610 -0.8660479 0.0000000 -0.4999610 0.9397040 0.0000000 0.3419890 0.9397040 0.0000000 0.3419890 -0.7661531 -0.0000002 -0.6426581 -0.7661531 -0.0000002 -0.6426581 0.9848097 0.0000000 0.1736371 0.9848097 0.0000000 0.1736371 -0.6429336 -0.0000002 -0.7659220 -0.6429336 -0.0000002 -0.7659220 0.9990484 0.0000000 0.0436155 0.9990484 0.0000000 0.0436155 -0.4998867 -0.0000000 -0.8660908 -0.4998867 -0.0000000 -0.8660908 0.9992293 0.0000000 -0.0392526 0.9992293 0.0000000 -0.0392526 -0.3417295 -0.0000000 -0.9397983 -0.3417295 -0.0000000 -0.9397983 0.9876953 -0.0000000 -0.1563905 0.9876953 -0.0000000 -0.1563905 -0.1735378 0.0000000 -0.9848272 -0.1735378 0.0000000 -0.9848272 0.9510620 -0.0000000 -0.3090002 0.9510620 -0.0000000 -0.3090002 -0.0436416 0.0000000 -0.9990473 -0.0436416 0.0000000 -0.9990473 0.8909382 0.0000003 -0.4541246 0.8909382 0.0000003 -0.4541246 0.0391170 0.0000000 -0.9992346 0.0391170 0.0000000 -0.9992346 0.8089594 0.0000003 -0.5878645 0.8089594 0.0000003 -0.5878645 0.1563998 0.0000000 -0.9876938 0.1563998 0.0000000 -0.9876938 0.7343461 -0.0000000 -0.6787752 0.7343461 -0.0000000 -0.6787752 0.3089798 0.0000000 -0.9510686 0.3089798 0.0000000 -0.9510686 0.7071093 -0.0000000 -0.7071043 0.6787248 -0.0000000 -0.7343927 0.6787248 -0.0000000 -0.7343927 0.7071093 -0.0000000 -0.7071043 0.4536153 0.0000000 -0.8911976 0.4536153 0.0000000 -0.8911976 0.5879616 -0.0000000 -0.8088889 0.5879616 -0.0000000 -0.8088889 0.5225404 0.0000000 -0.8526146 0.5225404 0.0000000 -0.8526146 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 1 6 2 6 1 7 8 5 4 5 8 9 6 10 11 10 6 7 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 19 22 23 22 19 18 24 21 20 21 24 25 23 26 27 26 23 22 28 24 29 24 28 25 27 30 31 30 27 26 32 28 29 28 32 33 31 34 35 34 31 30 36 32 37 32 36 33 35 38 39 38 35 34 40 37 41 37 40 36 39 42 43 42 39 38 44 41 45 41 44 40 43 46 47 46 43 42 48 45 49 45 48 44 47 50 51 50 47 46 52 49 53 49 52 48 50 54 51 54 50 55 56 52 53 52 56 57 54 58 59 58 54 55 60 56 61 56 60 57 58 62 59 62 58 63 64 60 61 60 64 65 63 66 62 66 63 67 65 68 69 68 65 64 67 70 66 70 67 71 69 72 73 72 69 68 71 74 70 74 71 75 73 76 77 76 73 72 75 78 74 78 75 79 77 80 81 80 77 76 79 82 78 82 79 83 81 84 85 84 81 80 83 86 82 86 83 87 85 88 89 88 85 84 86 90 91 90 86 87 89 92 93 92 89 88 90 94 91 94 90 95 95 90 96 96 90 97 93 98 99 98 93 92 100 95 96 95 100 101 99 102 103 102 99 98 103 101 100 101 103 102

-
-
-
- - - - -385.1551181 263.7795276 3709.8822835 -393.7007874 47.2440945 3710.6299213 -393.7007874 263.7795276 3710.6299213 -385.1551181 47.2440945 3709.8822835 -376.8691339 263.7795276 3707.6618110 -376.8691339 47.2440945 3707.6618110 -402.2464567 47.2440945 3709.8822835 -402.2464567 263.7795276 3709.8822835 -369.0944882 263.7795276 3704.0366142 -369.0944882 47.2440945 3704.0366142 -410.5326772 47.2440945 3707.6618110 -410.5326772 263.7795276 3707.6618110 -362.0675591 263.7795276 3699.1165354 -362.0675591 47.2440945 3699.1165354 -418.3070866 47.2440945 3704.0366142 -418.3070866 263.7795276 3704.0366142 -356.0017717 47.2440945 3693.0503937 -356.0017717 263.7795276 3693.0503937 -425.3338583 47.2440945 3699.1165354 -425.3338583 263.7795276 3699.1165354 -351.0814567 263.7795276 3686.0236220 -351.0814567 47.2440945 3686.0236220 -431.4000000 47.2440945 3693.0503937 -431.4000000 263.7795276 3693.0503937 -347.4561024 47.2440945 3678.2492126 -347.4561024 263.7795276 3678.2492126 -436.3200787 263.7795276 3686.0236220 -436.3200787 47.2440945 3686.0236220 -345.2359055 47.2440945 3669.9629921 -345.2359055 263.7795276 3669.9629921 -439.9456693 47.2440945 3678.2492126 -439.9456693 263.7795276 3678.2492126 -344.4881890 47.2440945 3661.4173228 -344.4881890 263.7795276 3661.4173228 -442.1657480 263.7795276 3669.9629921 -442.1657480 47.2440945 3669.9629921 -345.2359055 47.2440945 3652.8720472 -345.2359055 263.7795276 3652.8720472 -442.9133858 263.7795276 3661.4173228 -442.9133858 47.2440945 3661.4173228 -347.4561024 47.2440945 3644.5858268 -347.4561024 263.7795276 3644.5858268 -442.1657480 263.7795276 3652.8720472 -442.1657480 47.2440945 3652.8720472 -351.0814567 263.7795276 3636.8110236 -351.0814567 47.2440945 3636.8110236 -439.9456693 47.2440945 3644.5858268 -439.9456693 263.7795276 3644.5858268 -356.0017717 47.2440945 3629.7838583 -356.0017717 263.7795276 3629.7838583 -436.3200787 263.7795276 3636.8110236 -436.3200787 47.2440945 3636.8110236 -362.0675591 263.7795276 3623.7181102 -362.0675591 47.2440945 3623.7181102 -431.4000000 263.7795276 3629.7838583 -431.4000000 47.2440945 3629.7838583 -369.0944882 263.7795276 3618.7984252 -369.0944882 47.2440945 3618.7984252 -425.3338583 47.2440945 3623.7181102 -425.3338583 263.7795276 3623.7181102 -376.8691339 263.7795276 3615.1732283 -376.8691339 47.2440945 3615.1732283 -418.3070866 47.2440945 3618.7984252 -418.3070866 263.7795276 3618.7984252 -385.1551181 263.7795276 3612.9523622 -385.1551181 47.2440945 3612.9523622 -410.5326772 47.2440945 3615.1732283 -410.5326772 263.7795276 3615.1732283 -393.7007874 263.7795276 3612.2047244 -393.7007874 47.2440945 3612.2047244 -402.2464567 47.2440945 3612.9523622 -402.2464567 263.7795276 3612.9523622 - - - - - - - - - - -0.1736614 -0.0000000 -0.9848054 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 -0.1736614 -0.0000000 -0.9848054 -0.3420244 0.0000000 -0.9396911 -0.3420244 0.0000000 -0.9396911 0.1736579 -0.0000000 -0.9848060 0.1736579 -0.0000000 -0.9848060 -0.4999823 0.0000000 -0.8660356 -0.4999823 0.0000000 -0.8660356 0.3420265 0.0000000 -0.9396903 0.3420265 0.0000000 -0.9396903 -0.6427904 -0.0000000 -0.7660421 -0.6427904 -0.0000000 -0.7660421 0.4999919 -0.0000000 -0.8660301 0.4999919 -0.0000000 -0.8660301 -0.7660503 -0.0000000 -0.6427807 -0.7660503 -0.0000000 -0.6427807 0.6427832 0.0000000 -0.7660481 0.6427832 0.0000000 -0.7660481 -0.8660203 0.0000000 -0.5000088 -0.8660203 0.0000000 -0.5000088 0.7660481 0.0000000 -0.6427832 0.7660481 0.0000000 -0.6427832 -0.9396928 0.0000000 -0.3420198 -0.9396928 0.0000000 -0.3420198 0.8660197 0.0000000 -0.5000099 0.8660197 0.0000000 -0.5000099 -0.9848079 0.0000000 -0.1736471 -0.9848079 0.0000000 -0.1736471 0.9396908 0.0000000 -0.3420253 0.9396908 0.0000000 -0.3420253 -1.0000000 0.0000000 0.0000020 -1.0000000 0.0000000 0.0000020 0.9848099 0.0000000 -0.1736360 0.9848099 0.0000000 -0.1736360 -0.9848076 0.0000000 0.1736491 -0.9848076 0.0000000 0.1736491 1.0000000 0.0000000 0.0000020 1.0000000 0.0000000 0.0000020 -0.9396961 0.0000000 0.3420107 -0.9396961 0.0000000 0.3420107 0.9848095 0.0000000 0.1736380 0.9848095 0.0000000 0.1736380 -0.8660317 0.0000000 0.4999890 -0.8660317 0.0000000 0.4999890 0.9396941 0.0000000 0.3420161 0.9396941 0.0000000 0.3420161 -0.7660483 -0.0000000 0.6427830 -0.7660483 -0.0000000 0.6427830 0.8660311 0.0000000 0.4999901 0.8660311 0.0000000 0.4999901 -0.6427636 -0.0000000 0.7660646 -0.6427636 -0.0000000 0.7660646 0.7660461 -0.0000000 0.6427856 0.7660461 -0.0000000 0.6427856 -0.4999660 0.0000000 0.8660450 -0.4999660 0.0000000 0.8660450 0.6427564 -0.0000000 0.7660706 0.6427564 -0.0000000 0.7660706 -0.3420452 0.0000000 0.9396835 -0.3420452 0.0000000 0.9396835 0.4999756 -0.0000000 0.8660395 0.4999756 -0.0000000 0.8660395 -0.1736832 0.0000000 0.9848016 -0.1736832 0.0000000 0.9848016 0.3420474 0.0000000 0.9396827 0.3420474 0.0000000 0.9396827 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.1736797 0.0000000 0.9848022 0.1736797 0.0000000 0.9848022 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 12 16 13 16 12 17 15 18 19 18 15 14 16 20 21 20 16 17 22 19 18 19 22 23 20 24 21 24 20 25 26 22 27 22 26 23 25 28 24 28 25 29 30 26 27 26 30 31 29 32 28 32 29 33 34 30 35 30 34 31 33 36 32 36 33 37 38 35 39 35 38 34 37 40 36 40 37 41 42 39 43 39 42 38 40 44 45 44 40 41 46 42 43 42 46 47 44 48 45 48 44 49 50 46 51 46 50 47 48 52 53 52 48 49 54 51 55 51 54 50 53 56 57 56 53 52 58 54 55 54 58 59 57 60 61 60 57 56 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 71 70 71 69 68

-
-
-
- - - - 270.0010630 263.7795276 8270.5433071 297.4078740 47.2440945 8307.3897638 270.0010630 47.2440945 8270.5433071 297.4078740 263.7795276 8307.3897638 238.0594488 263.7795276 8237.5551181 238.0594488 47.2440945 8237.5551181 300.4010630 263.7795276 8311.2637795 300.4010630 47.2440945 8311.2637795 225.3937008 47.2440945 8227.4803150 225.3937008 263.7795276 8227.4803150 303.9934646 263.7795276 8314.5905512 303.9934646 47.2440945 8314.5905512 202.1196063 47.2440945 8208.9724409 202.1196063 263.7795276 8208.9724409 308.0862598 263.7795276 8317.2795276 308.0862598 47.2440945 8317.2795276 198.3441339 47.2440945 8205.8543307 198.3441339 263.7795276 8205.8543307 312.5669685 263.7795276 8319.2519685 312.5669685 47.2440945 8319.2519685 195.1354331 263.7795276 8202.1574803 195.1354331 47.2440945 8202.1574803 317.3123228 263.7795276 8320.4606299 317.3123228 47.2440945 8320.4606299 192.5816142 263.7795276 8197.9803150 192.5816142 47.2440945 8197.9803150 322.1918504 263.7795276 8320.8661417 322.1918504 47.2440945 8320.8661417 190.7529134 47.2440945 8193.4409449 190.7529134 263.7795276 8193.4409449 520.7763780 263.7795276 8320.8661417 520.7763780 47.2440945 8320.8661417 189.6995669 263.7795276 8188.6614173 189.6995669 47.2440945 8188.6614173 525.5578740 263.7795276 8320.4763780 525.5578740 47.2440945 8320.4763780 189.4505512 263.7795276 8183.7716535 189.4505512 47.2440945 8183.7716535 530.2133858 263.7795276 8319.3188976 530.2133858 47.2440945 8319.3188976 190.0126378 263.7795276 8178.9094488 190.0126378 47.2440945 8178.9094488 534.6196850 263.7795276 8317.4212598 534.6196850 47.2440945 8317.4212598 191.3704724 263.7795276 8174.2047244 191.3704724 47.2440945 8174.2047244 538.6606299 263.7795276 8314.8346457 538.6606299 47.2440945 8314.8346457 193.4866929 47.2440945 8169.7913386 193.4866929 263.7795276 8169.7913386 542.2295276 263.7795276 8311.6259843 542.2295276 47.2440945 8311.6259843 283.2355118 263.7795276 8016.6220472 283.2355118 47.2440945 8016.6220472 545.2318898 47.2440945 8307.8858268 545.2318898 263.7795276 8307.8858268 285.9833071 47.2440945 8012.7007874 285.9833071 263.7795276 8012.7007874 547.5885827 263.7795276 8303.7086614 547.5885827 47.2440945 8303.7086614 289.3288583 263.7795276 8009.2755906 289.3288583 47.2440945 8009.2755906 549.2377953 47.2440945 8299.2007874 549.2377953 263.7795276 8299.2007874 293.1840945 47.2440945 8006.4370079 293.1840945 263.7795276 8006.4370079 550.1354331 47.2440945 8294.4881890 550.1354331 263.7795276 8294.4881890 297.4477165 47.2440945 8004.2559055 297.4477165 263.7795276 8004.2559055 550.2578740 47.2440945 8289.6929134 550.2578740 263.7795276 8289.6929134 302.0075591 47.2440945 8002.7952756 302.0075591 263.7795276 8002.7952756 549.6023622 47.2440945 8284.9409449 549.6023622 263.7795276 8284.9409449 306.7437008 47.2440945 8002.0905512 306.7437008 263.7795276 8002.0905512 548.1854331 47.2440945 8280.3582677 548.1854331 263.7795276 8280.3582677 311.5315748 47.2440945 8002.1574803 311.5315748 263.7795276 8002.1574803 508.6807087 263.7795276 8200.0078740 508.6807087 47.2440945 8200.0078740 316.2453150 47.2440945 8003.0000000 316.2453150 263.7795276 8003.0000000 489.7606299 47.2440945 8172.8661417 489.7606299 263.7795276 8172.8661417 320.7609843 47.2440945 8004.5944882 320.7609843 263.7795276 8004.5944882 457.4830709 263.7795276 8126.5551181 457.4830709 47.2440945 8126.5551181 324.9596850 47.2440945 8006.8976378 324.9596850 263.7795276 8006.8976378 395.7700787 47.2440945 8061.6889764 395.7700787 263.7795276 8061.6889764 - - - - - - - - - - 0.7619958 -0.0000006 -0.6475820 0.7968814 -0.0000006 -0.6041357 0.7619958 -0.0000006 -0.6475820 0.7968814 -0.0000006 -0.6041357 0.6718724 0.0000000 -0.7406669 0.6718724 0.0000000 -0.7406669 0.7379293 0.0000000 -0.6748780 0.7379293 0.0000000 -0.6748780 0.6224616 0.0000000 -0.7826504 0.6224616 0.0000000 -0.7826504 0.6163935 0.0000000 -0.7874383 0.6163935 0.0000000 -0.7874383 0.6296257 0.0000000 -0.7768987 0.6296257 0.0000000 -0.7768987 0.4776530 0.0000000 -0.8785486 0.4776530 0.0000000 -0.8785486 0.6983922 0.0000000 -0.7157152 0.6983922 0.0000000 -0.7157152 0.3259731 0.0000000 -0.9453790 0.3259731 0.0000000 -0.9453790 0.8069751 0.0000000 -0.5905855 0.8069751 0.0000000 -0.5905855 0.1653942 0.0000000 -0.9862275 0.1653942 0.0000000 -0.9862275 0.8934387 -0.0000000 -0.4491851 0.8934387 -0.0000000 -0.4491851 0.0414452 -0.0000000 -0.9991408 0.0414452 -0.0000000 -0.9991408 0.9553537 -0.0000000 -0.2954645 0.9553537 -0.0000000 -0.2954645 -0.0406564 0.0000000 -0.9991732 -0.0406564 0.0000000 -0.9991732 0.9910487 0.0000000 -0.1335010 0.9910487 0.0000000 -0.1335010 -0.1617957 0.0000000 -0.9868243 -0.1617957 0.0000000 -0.9868243 0.9994847 -0.0000000 0.0320997 0.9994847 -0.0000000 0.0320997 -0.3194717 0.0000000 -0.9475958 -0.3194717 0.0000000 -0.9475958 0.9804553 -0.0000000 0.1967421 0.9804553 -0.0000000 0.1967421 -0.4688797 0.0000000 -0.8832620 -0.4688797 0.0000000 -0.8832620 0.9344643 -0.0000000 0.3560568 0.9344643 -0.0000000 0.3560568 -0.6058557 0.0000000 -0.7955746 -0.6058557 0.0000000 -0.7955746 0.8830062 -0.0000004 0.4693613 0.8830062 -0.0000004 0.4693613 -0.7265880 0.0000000 -0.6870734 -0.7265880 0.0000000 -0.6870734 0.8415649 -0.0000004 0.5401561 0.8415649 -0.0000004 0.5401561 -0.8281272 0.0000000 -0.5605402 -0.8281272 0.0000000 -0.5605402 0.7696970 0.0000000 0.6384094 0.7696970 0.0000000 0.6384094 -0.9080476 0.0000000 -0.4188670 -0.9080476 0.0000000 -0.4188670 0.6563086 0.0000000 0.7544926 0.6563086 0.0000000 0.7544926 -0.9639111 0.0000000 -0.2662243 -0.9639111 0.0000000 -0.2662243 0.5258908 0.0000000 0.8505521 0.5258908 0.0000000 0.8505521 -0.9942943 0.0000000 -0.1066715 -0.9942943 0.0000000 -0.1066715 0.3815064 0.0000000 0.9243662 0.3815064 0.0000000 0.9243662 -0.9984449 0.0000000 0.0557471 -0.9984449 0.0000000 0.0557471 0.2268629 -0.0000000 0.9739267 0.2268629 -0.0000000 0.9739267 -0.9762292 0.0000000 0.2167406 -0.9762292 0.0000000 0.2167406 0.0668179 -0.0000000 0.9977652 0.0668179 -0.0000000 0.9977652 -0.9292531 0.0000005 0.3694438 -0.9292531 0.0000005 0.3694438 -0.0952789 0.0000000 0.9954506 -0.0952789 0.0000000 0.9954506 -0.8613581 0.0000005 0.5079982 -0.8613581 0.0000005 0.5079982 -0.2552943 0.0000000 0.9668634 -0.2552943 0.0000000 0.9668634 -0.8203753 0.0000000 0.5718254 -0.8203753 0.0000000 0.5718254 -0.4082879 0.0000000 0.9128532 -0.4082879 0.0000000 0.9128532 -0.7746767 0.0000003 0.6323575 -0.7746767 0.0000003 0.6323575 -0.5481348 -0.0000000 0.8363900 -0.5481348 -0.0000000 0.8363900 -0.6701596 0.0000003 0.7422170 -0.6701596 0.0000003 0.7422170 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 1 6 7 6 1 3 4 8 9 8 4 5 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 20 16 21 16 20 17 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 24 25 24 28 29 30 27 26 27 30 31 32 28 33 28 32 29 34 31 30 31 34 35 36 33 37 33 36 32 38 35 34 35 38 39 40 37 41 37 40 36 42 39 38 39 42 43 44 41 45 41 44 40 46 43 42 43 46 47 48 44 45 44 48 49 50 47 46 47 50 51 52 48 53 48 52 49 50 54 51 54 50 55 56 52 53 52 56 57 54 58 59 58 54 55 60 56 61 56 60 57 58 62 59 62 58 63 64 60 61 60 64 65 63 66 62 66 63 67 68 65 64 65 68 69 67 70 66 70 67 71 72 69 68 69 72 73 71 74 70 74 71 75 76 73 72 73 76 77 75 78 74 78 75 79 80 77 76 77 80 81 78 82 83 82 78 79 84 81 80 81 84 85 82 86 83 86 82 87 88 85 84 85 88 89 86 90 91 90 86 87 92 89 88 89 92 93 90 94 91 94 90 95 94 93 92 93 94 95

-
-
-
- - - - 314.9606299 263.7795276 8561.0236220 304.3639764 47.2440945 8560.0984252 304.3639764 263.7795276 8560.0984252 314.9606299 47.2440945 8561.0236220 294.0893307 47.2440945 8557.3425197 294.0893307 263.7795276 8557.3425197 374.0157480 263.7795276 8561.0236220 374.0157480 47.2440945 8561.0236220 284.4488189 47.2440945 8552.8464567 284.4488189 263.7795276 8552.8464567 384.6124016 263.7795276 8560.0984252 384.6124016 47.2440945 8560.0984252 275.7353937 47.2440945 8546.7480315 275.7353937 263.7795276 8546.7480315 394.8870079 263.7795276 8557.3425197 394.8870079 47.2440945 8557.3425197 268.2138189 263.7795276 8539.2244094 268.2138189 47.2440945 8539.2244094 404.5275591 263.7795276 8552.8464567 404.5275591 47.2440945 8552.8464567 262.1125984 263.7795276 8530.5118110 262.1125984 47.2440945 8530.5118110 413.2409449 263.7795276 8546.7480315 413.2409449 47.2440945 8546.7480315 257.6172047 47.2440945 8520.8700787 257.6172047 263.7795276 8520.8700787 420.7625984 47.2440945 8539.2244094 420.7625984 263.7795276 8539.2244094 254.8640945 263.7795276 8510.5984252 254.8640945 47.2440945 8510.5984252 426.8637795 47.2440945 8530.5118110 426.8637795 263.7795276 8530.5118110 253.9370079 263.7795276 8500.0000000 253.9370079 47.2440945 8500.0000000 431.3590551 47.2440945 8520.8700787 431.3590551 263.7795276 8520.8700787 254.8640945 263.7795276 8489.4015748 254.8640945 47.2440945 8489.4015748 434.1122047 263.7795276 8510.5984252 434.1122047 47.2440945 8510.5984252 257.6172047 47.2440945 8479.1299213 257.6172047 263.7795276 8479.1299213 435.0393701 47.2440945 8500.0000000 435.0393701 263.7795276 8500.0000000 262.1125984 263.7795276 8469.4881890 262.1125984 47.2440945 8469.4881890 434.1122047 47.2440945 8489.4015748 434.1122047 263.7795276 8489.4015748 268.2138189 263.7795276 8460.7755906 268.2138189 47.2440945 8460.7755906 431.3590551 47.2440945 8479.1299213 431.3590551 263.7795276 8479.1299213 275.7353937 263.7795276 8453.2519685 275.7353937 47.2440945 8453.2519685 426.8637795 47.2440945 8469.4881890 426.8637795 263.7795276 8469.4881890 284.4488189 47.2440945 8447.1535433 284.4488189 263.7795276 8447.1535433 420.7625984 47.2440945 8460.7755906 420.7625984 263.7795276 8460.7755906 294.0893307 47.2440945 8442.6574803 294.0893307 263.7795276 8442.6574803 413.2409449 47.2440945 8453.2519685 413.2409449 263.7795276 8453.2519685 304.3639764 47.2440945 8439.9055118 304.3639764 263.7795276 8439.9055118 404.5275591 263.7795276 8447.1535433 404.5275591 47.2440945 8447.1535433 314.9606299 47.2440945 8438.9763780 314.9606299 263.7795276 8438.9763780 394.8870079 263.7795276 8442.6574803 394.8870079 47.2440945 8442.6574803 374.0157480 47.2440945 8438.9763780 374.0157480 263.7795276 8438.9763780 384.6124016 263.7795276 8439.9055118 384.6124016 47.2440945 8439.9055118 - - - - - - - - - - 0.0435310 0.0000000 -0.9990521 0.1736872 0.0000000 -0.9848009 0.1736872 0.0000000 -0.9848009 0.0435310 0.0000000 -0.9990521 0.3421653 0.0000000 -0.9396398 0.3421653 0.0000000 -0.9396398 -0.0435310 -0.0000000 -0.9990521 -0.0435310 -0.0000000 -0.9990521 0.4999301 0.0000000 -0.8660658 0.4999301 0.0000000 -0.8660658 -0.1736877 -0.0000000 -0.9848008 -0.1736877 -0.0000000 -0.9848008 0.6427577 0.0000000 -0.7660695 0.6427577 0.0000000 -0.7660695 -0.3421650 0.0000000 -0.9396399 -0.3421650 0.0000000 -0.9396399 0.7660735 -0.0000000 -0.6427530 0.7660735 -0.0000000 -0.6427530 -0.4999303 0.0000000 -0.8660656 -0.4999303 0.0000000 -0.8660656 0.8660272 0.0000000 -0.4999969 0.8660272 0.0000000 -0.4999969 -0.6427565 0.0000000 -0.7660705 -0.6427565 0.0000000 -0.7660705 0.9396888 0.0000000 -0.3420307 0.9396888 0.0000000 -0.3420307 -0.7660728 0.0000000 -0.6427538 -0.7660728 0.0000000 -0.6427538 0.9848025 0.0000000 -0.1736781 0.9848025 0.0000000 -0.1736781 -0.8660305 0.0000000 -0.4999912 -0.8660305 0.0000000 -0.4999912 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -0.9396899 0.0000000 -0.3420277 -0.9396899 0.0000000 -0.3420277 0.9848025 0.0000000 0.1736781 0.9848025 0.0000000 0.1736781 -0.9848015 0.0000000 -0.1736835 -0.9848015 0.0000000 -0.1736835 0.9396888 -0.0000000 0.3420307 0.9396888 -0.0000000 0.3420307 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 0.8660272 -0.0000000 0.4999969 0.8660272 -0.0000000 0.4999969 -0.9848015 0.0000000 0.1736835 -0.9848015 0.0000000 0.1736835 0.7660735 -0.0000000 0.6427530 0.7660735 -0.0000000 0.6427530 -0.9396899 -0.0000000 0.3420277 -0.9396899 -0.0000000 0.3420277 0.6427577 0.0000000 0.7660695 0.6427577 0.0000000 0.7660695 -0.8660305 -0.0000000 0.4999912 -0.8660305 -0.0000000 0.4999912 0.4999301 0.0000000 0.8660658 0.4999301 0.0000000 0.8660658 -0.7660728 -0.0000000 0.6427538 -0.7660728 -0.0000000 0.6427538 0.3419974 0.0000000 0.9397009 0.3419974 0.0000000 0.9397009 -0.6427565 0.0000000 0.7660705 -0.6427565 0.0000000 0.7660705 0.1736927 0.0000000 0.9847999 0.1736927 0.0000000 0.9847999 -0.4999303 0.0000000 0.8660656 -0.4999303 0.0000000 0.8660656 0.0437151 0.0000000 0.9990440 0.0437151 0.0000000 0.9990440 -0.3419971 0.0000000 0.9397010 -0.3419971 0.0000000 0.9397010 -0.0437151 0.0000000 0.9990440 -0.0437151 0.0000000 0.9990440 -0.1736932 0.0000000 0.9847998 -0.1736932 0.0000000 0.9847998 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 16 12 17 12 16 13 18 15 14 15 18 19 20 17 21 17 20 16 22 19 18 19 22 23 24 20 21 20 24 25 22 26 23 26 22 27 28 24 29 24 28 25 27 30 26 30 27 31 32 29 33 29 32 28 31 34 30 34 31 35 36 33 37 33 36 32 34 38 39 38 34 35 40 36 37 36 40 41 38 42 39 42 38 43 44 40 45 40 44 41 43 46 42 46 43 47 48 45 49 45 48 44 47 50 46 50 47 51 52 49 53 49 52 48 51 54 50 54 51 55 56 52 53 52 56 57 55 58 54 58 55 59 60 57 56 57 60 61 59 62 58 62 59 63 64 61 60 61 64 65 62 66 67 66 62 63 68 65 64 65 68 69 67 70 71 70 67 66 72 69 68 69 72 73 71 74 75 74 71 70 75 73 72 73 75 74

-
-
-
- - - - 225.3937008 47.2440945 8772.7480315 192.6105512 263.7795276 8797.4094488 192.6105512 47.2440945 8797.4094488 225.3937008 263.7795276 8772.7480315 189.2058661 263.7795276 8800.0393701 189.2058661 47.2440945 8800.0393701 232.3503543 47.2440945 8767.5118110 232.3503543 263.7795276 8767.5118110 188.7355906 263.7795276 8800.4015748 188.7355906 47.2440945 8800.4015748 267.5136614 47.2440945 8732.3503937 267.5136614 263.7795276 8732.3503937 185.4085433 47.2440945 8803.9921260 185.4085433 263.7795276 8803.9921260 297.4078740 263.7795276 8692.6102362 297.4078740 47.2440945 8692.6102362 182.7209055 47.2440945 8808.0866142 182.7209055 263.7795276 8808.0866142 300.4010630 263.7795276 8688.7362205 300.4010630 47.2440945 8688.7362205 180.7465748 47.2440945 8812.5669291 180.7465748 263.7795276 8812.5669291 303.9934646 47.2440945 8685.4094488 303.9934646 263.7795276 8685.4094488 179.5398425 263.7795276 8817.3110236 179.5398425 47.2440945 8817.3110236 308.0862598 47.2440945 8682.7204724 308.0862598 263.7795276 8682.7204724 179.1338583 47.2440945 8822.1929134 179.1338583 263.7795276 8822.1929134 312.5669685 47.2440945 8680.7480315 312.5669685 263.7795276 8680.7480315 179.1338583 47.2440945 9007.0787402 179.1338583 263.7795276 9007.0787402 317.3123228 47.2440945 8679.5393701 317.3123228 263.7795276 8679.5393701 179.5824409 47.2440945 9012.2086614 179.5824409 263.7795276 9012.2086614 322.1918504 47.2440945 8679.1338583 322.1918504 263.7795276 8679.1338583 180.9145669 47.2440945 9017.1771654 180.9145669 263.7795276 9017.1771654 507.0799213 47.2440945 8679.1338583 507.0799213 263.7795276 8679.1338583 183.0898031 47.2440945 9021.8425197 183.0898031 263.7795276 9021.8425197 512.2074803 47.2440945 8679.5826772 512.2074803 263.7795276 8679.5826772 186.0419685 263.7795276 9026.0590551 186.0419685 47.2440945 9026.0590551 517.1791339 47.2440945 8680.9133858 517.1791339 263.7795276 8680.9133858 189.6814567 47.2440945 9029.7007874 189.6814567 263.7795276 9029.7007874 521.8437008 47.2440945 8683.0905512 521.8437008 263.7795276 8683.0905512 193.8976378 263.7795276 9032.6535433 193.8976378 47.2440945 9032.6535433 526.0598425 47.2440945 8686.0433071 526.0598425 263.7795276 8686.0433071 198.5624016 263.7795276 9034.8267717 198.5624016 47.2440945 9034.8267717 529.6992126 47.2440945 8689.6811024 529.6992126 263.7795276 8689.6811024 203.5340157 263.7795276 9036.1574803 203.5340157 47.2440945 9036.1574803 532.6515748 263.7795276 8693.8976378 532.6515748 47.2440945 8693.8976378 208.6614173 263.7795276 9036.6062992 208.6614173 47.2440945 9036.6062992 534.8267717 263.7795276 8698.5629921 534.8267717 47.2440945 8698.5629921 210.0394094 263.7795276 9036.6062992 210.0394094 47.2440945 9036.6062992 536.1590551 47.2440945 8703.5354331 536.1590551 263.7795276 8703.5354331 214.6585433 263.7795276 9036.2440945 214.6585433 47.2440945 9036.2440945 536.6074803 263.7795276 8708.6614173 536.6074803 47.2440945 8708.6614173 219.1639370 263.7795276 9035.1614173 219.1639370 47.2440945 9035.1614173 536.6074803 263.7795276 8710.0393701 536.6074803 47.2440945 8710.0393701 223.4446457 263.7795276 9033.3897638 223.4446457 47.2440945 9033.3897638 536.2440945 47.2440945 8714.6574803 536.2440945 263.7795276 8714.6574803 225.3937008 263.7795276 9032.1968504 225.3937008 47.2440945 9032.1968504 535.1622047 263.7795276 8719.1653543 535.1622047 47.2440945 8719.1653543 227.3952756 263.7795276 9030.9685039 227.3952756 47.2440945 9030.9685039 533.3893701 263.7795276 8723.4448819 533.3893701 47.2440945 8723.4448819 230.9185433 263.7795276 9027.9606299 230.9185433 47.2440945 9027.9606299 530.9681102 263.7795276 8727.3937008 530.9681102 47.2440945 8727.3937008 273.0542126 47.2440945 8985.8228346 273.0542126 263.7795276 8985.8228346 527.9590551 263.7795276 8730.9173228 527.9590551 47.2440945 8730.9173228 489.7606299 263.7795276 8769.1181102 489.7606299 47.2440945 8769.1181102 - - - - - - - - - - 0.6012653 -0.0000000 0.7990495 0.6062427 0.0000000 0.7952797 0.6062427 0.0000000 0.7952797 0.6012653 -0.0000000 0.7990495 0.6107489 0.0000000 0.7918243 0.6107489 0.0000000 0.7918243 0.6558414 -0.0000000 0.7548987 0.6558414 -0.0000000 0.7548987 0.6742044 0.0000000 0.7385448 0.6742044 0.0000000 0.7385448 0.7549754 -0.0000000 0.6557531 0.7549754 -0.0000000 0.6557531 0.7874753 -0.0000000 0.6163462 0.7874753 -0.0000000 0.6163462 0.7952469 -0.0000000 0.6062857 0.7952469 -0.0000000 0.6062857 0.8785563 -0.0000000 0.4776387 0.8785563 -0.0000000 0.4776387 0.7379293 0.0000000 0.6748780 0.7379293 0.0000000 0.6748780 0.9453681 0.0000000 0.3260049 0.9453681 0.0000000 0.3260049 0.6163935 0.0000000 0.7874383 0.6163935 0.0000000 0.7874383 0.9862492 -0.0000000 0.1652649 0.9862492 -0.0000000 0.1652649 0.4776530 0.0000000 0.8785486 0.4776530 0.0000000 0.8785486 0.9991396 -0.0000000 0.0414733 0.9991396 -0.0000000 0.0414733 0.3259731 0.0000000 0.9453790 0.3259731 0.0000000 0.9453790 0.9990492 0.0000000 -0.0435974 0.9990492 0.0000000 -0.0435974 0.1653942 -0.0000000 0.9862275 0.1653942 -0.0000000 0.9862275 0.9847982 0.0000000 -0.1737023 0.9847982 0.0000000 -0.1737023 0.0414452 -0.0000000 0.9991408 0.0414452 -0.0000000 0.9991408 0.9396740 -0.0000000 -0.3420714 0.9396740 -0.0000000 -0.3420714 -0.0436402 0.0000000 0.9990473 -0.0436402 0.0000000 0.9990473 0.8660479 -0.0000000 -0.4999610 0.8660479 -0.0000000 -0.4999610 -0.1735355 0.0000000 0.9848276 -0.1735355 0.0000000 0.9848276 0.7661531 -0.0000002 -0.6426581 0.7661531 -0.0000002 -0.6426581 -0.3420619 0.0000000 0.9396774 -0.3420619 0.0000000 0.9396774 0.6429336 -0.0000002 -0.7659220 0.6429336 -0.0000002 -0.7659220 -0.5001958 0.0000000 0.8659124 -0.5001958 0.0000000 0.8659124 0.4998867 -0.0000000 -0.8660908 0.4998867 -0.0000000 -0.8660908 -0.6427402 0.0000000 0.7660842 -0.6427402 0.0000000 0.7660842 0.3417295 -0.0000000 -0.9397983 0.3417295 -0.0000000 -0.9397983 -0.7659794 0.0000000 0.6428651 -0.7659794 0.0000000 0.6428651 0.1735378 0.0000000 -0.9848272 0.1735378 0.0000000 -0.9848272 -0.8660418 0.0000000 0.4999716 -0.8660418 0.0000000 0.4999716 0.0436416 0.0000000 -0.9990473 0.0436416 0.0000000 -0.9990473 -0.9397040 0.0000000 0.3419890 -0.9397040 0.0000000 0.3419890 -0.0391170 0.0000000 -0.9992346 -0.0391170 0.0000000 -0.9992346 -0.9848097 0.0000000 0.1736371 -0.9848097 0.0000000 0.1736371 -0.1563998 0.0000000 -0.9876938 -0.1563998 0.0000000 -0.9876938 -0.9990484 0.0000000 0.0436155 -0.9990484 0.0000000 0.0436155 -0.3089798 0.0000000 -0.9510686 -0.3089798 0.0000000 -0.9510686 -0.9992293 0.0000000 -0.0392526 -0.9992293 0.0000000 -0.0392526 -0.4536153 0.0000000 -0.8911976 -0.4536153 0.0000000 -0.8911976 -0.9876953 -0.0000000 -0.1563905 -0.9876953 -0.0000000 -0.1563905 -0.5225404 0.0000000 -0.8526146 -0.5225404 0.0000000 -0.8526146 -0.9510620 -0.0000000 -0.3090002 -0.9510620 -0.0000000 -0.3090002 -0.5879616 -0.0000000 -0.8088889 -0.5879616 -0.0000000 -0.8088889 -0.8909382 0.0000003 -0.4541246 -0.8909382 0.0000003 -0.4541246 -0.6787328 -0.0000000 -0.7343853 -0.6787328 -0.0000000 -0.7343853 -0.8089594 0.0000003 -0.5878645 -0.8089594 0.0000003 -0.5878645 -0.7071155 -0.0000002 -0.7070980 -0.7071155 -0.0000002 -0.7070980 -0.7343448 -0.0000002 -0.6787767 -0.7343448 -0.0000002 -0.6787767 -0.7071064 -0.0000005 -0.7071071 -0.7071064 -0.0000005 -0.7071071 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 8 12 9 12 8 13 14 10 15 10 14 11 13 16 12 16 13 17 18 15 19 15 18 14 17 20 16 20 17 21 22 18 19 18 22 23 20 24 25 24 20 21 26 23 22 23 26 27 24 28 25 28 24 29 30 27 26 27 30 31 29 32 28 32 29 33 34 31 30 31 34 35 33 36 32 36 33 37 38 35 34 35 38 39 37 40 36 40 37 41 42 39 38 39 42 43 41 44 40 44 41 45 46 43 42 43 46 47 44 48 49 48 44 45 50 47 46 47 50 51 48 52 49 52 48 53 54 51 50 51 54 55 56 52 53 52 56 57 58 55 54 55 58 59 60 57 56 57 60 61 62 59 58 59 62 63 64 61 60 61 64 65 66 62 67 62 66 63 68 65 64 65 68 69 70 67 71 67 70 66 72 69 68 69 72 73 74 70 71 70 74 75 76 73 72 73 76 77 78 74 79 74 78 75 80 77 76 77 80 81 82 79 83 79 82 78 84 81 80 81 84 85 86 82 83 82 86 87 88 85 84 85 88 89 90 86 91 86 90 87 92 89 88 89 92 93 94 91 95 91 94 90 96 93 92 93 96 97 98 95 99 95 98 94 96 100 97 100 96 101 102 99 103 99 102 98 104 100 101 100 104 105 105 104 102 105 102 103

-
-
-
- - - - 439.9456693 47.2440945 3644.5858268 436.3200787 263.7795276 3636.8110236 436.3200787 47.2440945 3636.8110236 439.9456693 263.7795276 3644.5858268 442.1657480 263.7795276 3652.8720472 442.1657480 47.2440945 3652.8720472 431.4000000 47.2440945 3629.7838583 431.4000000 263.7795276 3629.7838583 442.9133858 263.7795276 3661.4173228 442.9133858 47.2440945 3661.4173228 425.3338583 263.7795276 3623.7181102 425.3338583 47.2440945 3623.7181102 442.1657480 263.7795276 3669.9629921 442.1657480 47.2440945 3669.9629921 418.3070866 263.7795276 3618.7984252 418.3070866 47.2440945 3618.7984252 439.9456693 263.7795276 3678.2492126 439.9456693 47.2440945 3678.2492126 410.5326772 263.7795276 3615.1732283 410.5326772 47.2440945 3615.1732283 436.3200787 263.7795276 3686.0236220 436.3200787 47.2440945 3686.0236220 402.2464567 263.7795276 3612.9523622 402.2464567 47.2440945 3612.9523622 431.4000000 47.2440945 3693.0503937 431.4000000 263.7795276 3693.0503937 393.7007874 263.7795276 3612.2047244 393.7007874 47.2440945 3612.2047244 425.3338583 263.7795276 3699.1165354 425.3338583 47.2440945 3699.1165354 385.1551181 263.7795276 3612.9523622 385.1551181 47.2440945 3612.9523622 418.3070866 47.2440945 3704.0366142 418.3070866 263.7795276 3704.0366142 376.8691339 263.7795276 3615.1732283 376.8691339 47.2440945 3615.1732283 410.5326772 47.2440945 3707.6618110 410.5326772 263.7795276 3707.6618110 369.0944882 263.7795276 3618.7984252 369.0944882 47.2440945 3618.7984252 402.2464567 47.2440945 3709.8822835 402.2464567 263.7795276 3709.8822835 362.0675591 263.7795276 3623.7181102 362.0675591 47.2440945 3623.7181102 393.7007874 47.2440945 3710.6299213 393.7007874 263.7795276 3710.6299213 356.0017717 263.7795276 3629.7838583 356.0017717 47.2440945 3629.7838583 385.1551181 47.2440945 3709.8822835 385.1551181 263.7795276 3709.8822835 351.0814567 47.2440945 3636.8110236 351.0814567 263.7795276 3636.8110236 376.8691339 47.2440945 3707.6618110 376.8691339 263.7795276 3707.6618110 347.4561024 47.2440945 3644.5858268 347.4561024 263.7795276 3644.5858268 369.0944882 47.2440945 3704.0366142 369.0944882 263.7795276 3704.0366142 345.2359055 263.7795276 3652.8720472 345.2359055 47.2440945 3652.8720472 362.0675591 47.2440945 3699.1165354 362.0675591 263.7795276 3699.1165354 344.4881890 47.2440945 3661.4173228 344.4881890 263.7795276 3661.4173228 356.0017717 47.2440945 3693.0503937 356.0017717 263.7795276 3693.0503937 345.2359055 47.2440945 3669.9629921 345.2359055 263.7795276 3669.9629921 351.0814567 263.7795276 3686.0236220 351.0814567 47.2440945 3686.0236220 347.4561024 47.2440945 3678.2492126 347.4561024 263.7795276 3678.2492126 - - - - - - - - - - -0.9396944 -0.0000001 0.3420154 -0.8660316 -0.0000001 0.4999893 -0.8660316 -0.0000001 0.4999893 -0.9396944 -0.0000001 0.3420154 -0.9848095 0.0000000 0.1736380 -0.9848095 0.0000000 0.1736380 -0.7660461 -0.0000000 0.6427856 -0.7660461 -0.0000000 0.6427856 -1.0000000 0.0000000 0.0000020 -1.0000000 0.0000000 0.0000020 -0.6427564 -0.0000000 0.7660706 -0.6427564 -0.0000000 0.7660706 -0.9848099 0.0000000 -0.1736360 -0.9848099 0.0000000 -0.1736360 -0.4999756 -0.0000000 0.8660395 -0.4999756 -0.0000000 0.8660395 -0.9396904 -0.0000001 -0.3420262 -0.9396904 -0.0000001 -0.3420262 -0.3420474 0.0000000 0.9396827 -0.3420474 0.0000000 0.9396827 -0.8660192 -0.0000001 -0.5000107 -0.8660192 -0.0000001 -0.5000107 -0.1736797 0.0000000 0.9848022 -0.1736797 0.0000000 0.9848022 -0.7660481 0.0000000 -0.6427832 -0.7660481 0.0000000 -0.6427832 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 -0.6427832 0.0000000 -0.7660481 -0.6427832 0.0000000 -0.7660481 0.1736832 0.0000000 0.9848016 0.1736832 0.0000000 0.9848016 -0.4999919 -0.0000000 -0.8660301 -0.4999919 -0.0000000 -0.8660301 0.3420452 0.0000000 0.9396835 0.3420452 0.0000000 0.9396835 -0.3420265 0.0000000 -0.9396903 -0.3420265 0.0000000 -0.9396903 0.4999660 0.0000000 0.8660450 0.4999660 0.0000000 0.8660450 -0.1736579 -0.0000000 -0.9848060 -0.1736579 -0.0000000 -0.9848060 0.6427636 -0.0000000 0.7660646 0.6427636 -0.0000000 0.7660646 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -1.0000000 0.7660483 -0.0000000 0.6427830 0.7660483 -0.0000000 0.6427830 0.1736614 -0.0000000 -0.9848054 0.1736614 -0.0000000 -0.9848054 0.8660317 0.0000000 0.4999890 0.8660317 0.0000000 0.4999890 0.3420244 0.0000000 -0.9396911 0.3420244 0.0000000 -0.9396911 0.9396961 0.0000000 0.3420107 0.9396961 0.0000000 0.3420107 0.4999823 0.0000000 -0.8660356 0.4999823 0.0000000 -0.8660356 0.9848076 0.0000000 0.1736491 0.9848076 0.0000000 0.1736491 0.6427904 -0.0000000 -0.7660421 0.6427904 -0.0000000 -0.7660421 1.0000000 0.0000000 0.0000020 1.0000000 0.0000000 0.0000020 0.7660503 -0.0000000 -0.6427807 0.7660503 -0.0000000 -0.6427807 0.9848079 0.0000000 -0.1736471 0.9848079 0.0000000 -0.1736471 0.8660203 0.0000000 -0.5000088 0.8660203 0.0000000 -0.5000088 0.9396928 0.0000000 -0.3420198 0.9396928 0.0000000 -0.3420198 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 0 5 0 4 3 1 6 2 6 1 7 8 5 9 5 8 4 6 10 11 10 6 7 12 9 13 9 12 8 11 14 15 14 11 10 16 13 17 13 16 12 15 18 19 18 15 14 20 17 21 17 20 16 19 22 23 22 19 18 24 20 21 20 24 25 23 26 27 26 23 22 28 24 29 24 28 25 27 30 31 30 27 26 28 32 33 32 28 29 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 45 48 49 48 45 44 46 50 47 50 46 51 49 52 53 52 49 48 51 54 50 54 51 55 53 56 57 56 53 52 54 58 59 58 54 55 57 60 61 60 57 56 58 62 59 62 58 63 64 61 60 61 64 65 63 66 62 66 63 67 68 64 69 64 68 65 67 70 66 70 67 71 70 68 69 68 70 71

-
-
-
- - - - -30.5118110 47.2440945 3419.1212598 -30.5118110 263.7795276 3903.7133858 -30.5118110 47.2440945 3903.7133858 -30.5118110 263.7795276 3419.1212598 -30.5118110 47.2440945 3903.7133858 -35.3339252 263.7795276 3905.5129921 -35.3339252 47.2440945 3905.5129921 -30.5118110 263.7795276 3903.7133858 -30.5118110 263.7795276 3419.1212598 -35.0885039 47.2440945 3417.4374016 -35.0885039 263.7795276 3417.4374016 -30.5118110 47.2440945 3419.1212598 -39.7702756 263.7795276 3908.1228346 -39.7702756 47.2440945 3908.1228346 -39.3255827 47.2440945 3415.0228346 -39.3255827 263.7795276 3415.0228346 -43.6860630 263.7795276 3911.4629921 -43.6860630 47.2440945 3911.4629921 -43.1074409 47.2440945 3411.9444882 -43.1074409 263.7795276 3411.9444882 -46.9622835 47.2440945 3915.4326772 -46.9622835 263.7795276 3915.4326772 -46.3309843 47.2440945 3408.2842520 -46.3309843 263.7795276 3408.2842520 -49.4994488 263.7795276 3919.9106299 -49.4994488 47.2440945 3919.9106299 -48.9081890 263.7795276 3404.1444882 -48.9081890 47.2440945 3404.1444882 -51.2204331 47.2440945 3924.7614173 -51.2204331 263.7795276 3924.7614173 -50.7688189 263.7795276 3399.6362205 -50.7688189 47.2440945 3399.6362205 -52.0729528 263.7795276 3929.8374016 -52.0729528 47.2440945 3929.8374016 -51.8621260 263.7795276 3394.8838583 -51.8621260 47.2440945 3394.8838583 -52.0311024 47.2440945 3934.9842520 -52.0311024 263.7795276 3934.9842520 -52.1582677 263.7795276 3390.0161417 -52.1582677 47.2440945 3390.0161417 -51.0961417 263.7795276 3940.0472441 -51.0961417 47.2440945 3940.0472441 -51.6491732 263.7795276 3385.1665354 -51.6491732 47.2440945 3385.1665354 -49.2964567 47.2440945 3944.8661417 -49.2964567 263.7795276 3944.8661417 -50.3487008 47.2440945 3380.4661417 -50.3487008 263.7795276 3380.4661417 -46.6868110 263.7795276 3949.3031496 -46.6868110 47.2440945 3949.3031496 -48.2923622 263.7795276 3376.0440945 -48.2923622 47.2440945 3376.0440945 -43.3464173 47.2440945 3953.2204724 -43.3464173 263.7795276 3953.2204724 -45.5362205 263.7795276 3372.0208661 -45.5362205 47.2440945 3372.0208661 -39.3768110 263.7795276 3956.4960630 -39.3768110 47.2440945 3956.4960630 -42.1554724 263.7795276 3368.5059055 -42.1554724 47.2440945 3368.5059055 -34.8986102 263.7795276 3959.0314961 -34.8986102 47.2440945 3959.0314961 -38.2423465 47.2440945 3365.5952756 -38.2423465 263.7795276 3365.5952756 -30.0478622 263.7795276 3960.7559055 -30.0478622 47.2440945 3960.7559055 -33.9035591 47.2440945 3363.3692913 -33.9035591 263.7795276 3363.3692913 -24.9719646 263.7795276 3961.6062992 -24.9719646 47.2440945 3961.6062992 -29.2574724 47.2440945 3361.8874016 -29.2574724 263.7795276 3361.8874016 -19.8251417 263.7795276 3961.5629921 -19.8251417 47.2440945 3961.5629921 -24.4308189 47.2440945 3361.1901575 -24.4308189 263.7795276 3361.1901575 -14.7637795 263.7795276 3960.6299213 -14.7637795 47.2440945 3960.6299213 -19.5552559 47.2440945 3361.2976378 -19.5552559 263.7795276 3361.2976378 14.7637795 263.7795276 3960.6299213 14.7637795 47.2440945 3960.6299213 -14.7637795 47.2440945 3362.2043307 -14.7637795 263.7795276 3362.2043307 19.8251417 263.7795276 3961.5629921 19.8251417 47.2440945 3961.5629921 14.7637795 47.2440945 3362.2043307 14.7637795 263.7795276 3362.2043307 24.9719646 263.7795276 3961.6062992 24.9719646 47.2440945 3961.6062992 19.8251417 47.2440945 3361.2700787 19.8251417 263.7795276 3361.2700787 30.0478622 263.7795276 3960.7559055 30.0478622 47.2440945 3960.7559055 24.9719646 47.2440945 3361.2279528 24.9719646 263.7795276 3361.2279528 34.8986102 263.7795276 3959.0314961 34.8986102 47.2440945 3959.0314961 30.0478622 47.2440945 3362.0807087 30.0478622 263.7795276 3362.0807087 39.3768110 263.7795276 3956.4960630 39.3768110 47.2440945 3956.4960630 34.8986102 47.2440945 3363.8015748 34.8986102 263.7795276 3363.8015748 43.3464173 263.7795276 3953.2204724 43.3464173 47.2440945 3953.2204724 39.3768110 47.2440945 3366.3385827 39.3768110 263.7795276 3366.3385827 46.6868110 263.7795276 3949.3031496 46.6868110 47.2440945 3949.3031496 43.3464173 47.2440945 3369.6145669 43.3464173 263.7795276 3369.6145669 49.2964567 47.2440945 3944.8661417 49.2964567 263.7795276 3944.8661417 46.6868110 263.7795276 3373.5311024 46.6868110 47.2440945 3373.5311024 51.0961417 47.2440945 3940.0472441 51.0961417 263.7795276 3940.0472441 49.2964567 47.2440945 3377.9669291 49.2964567 263.7795276 3377.9669291 52.0311024 47.2440945 3934.9842520 52.0311024 263.7795276 3934.9842520 51.0961417 47.2440945 3382.7893701 51.0961417 263.7795276 3382.7893701 52.0729528 263.7795276 3929.8374016 52.0729528 47.2440945 3929.8374016 52.0311024 263.7795276 3387.8503937 52.0311024 47.2440945 3387.8503937 51.2204331 47.2440945 3924.7614173 51.2204331 263.7795276 3924.7614173 52.0729528 263.7795276 3392.9972441 52.0729528 47.2440945 3392.9972441 49.4994488 47.2440945 3919.9106299 49.4994488 263.7795276 3919.9106299 51.2204331 263.7795276 3398.0728346 51.2204331 47.2440945 3398.0728346 46.9622835 47.2440945 3915.4326772 46.9622835 263.7795276 3915.4326772 49.4994488 263.7795276 3402.9244094 49.4994488 47.2440945 3402.9244094 43.6860630 47.2440945 3911.4629921 43.6860630 263.7795276 3911.4629921 46.9622835 263.7795276 3407.4019685 46.9622835 47.2440945 3407.4019685 39.7702756 263.7795276 3908.1228346 39.7702756 47.2440945 3908.1228346 43.6860630 47.2440945 3411.3720472 43.6860630 263.7795276 3411.3720472 35.3339252 263.7795276 3905.5129921 35.3339252 47.2440945 3905.5129921 39.7702756 47.2440945 3414.7118110 39.7702756 263.7795276 3414.7118110 30.5118110 263.7795276 3903.7133858 30.5118110 47.2440945 3903.7133858 35.3339252 47.2440945 3417.3220472 35.3339252 263.7795276 3417.3220472 30.5118110 263.7795276 3903.7133858 30.5118110 47.2440945 3419.1212598 30.5118110 47.2440945 3903.7133858 30.5118110 263.7795276 3419.1212598 30.5118110 47.2440945 3419.1212598 30.5118110 263.7795276 3419.1212598 - - - - - - - - - - 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3496434 0.0000000 0.9368829 0.4299849 0.0000000 0.9028361 0.4299849 0.0000000 0.9028361 0.3496434 0.0000000 0.9368829 0.3452915 0.0000000 -0.9384955 0.4216447 0.0000000 -0.9067611 0.4216447 0.0000000 -0.9067611 0.3452915 0.0000000 -0.9384955 0.5802183 0.0000000 0.8144610 0.5802183 0.0000000 0.8144610 0.5651265 0.0000000 -0.8250043 0.5651265 0.0000000 -0.8250043 0.7128277 0.0000000 0.7013392 0.7128277 0.0000000 0.7013392 0.6932425 0.0000000 -0.7207044 0.6932425 0.0000000 -0.7207044 0.8237866 0.0000000 0.5669000 0.8237866 0.0000000 0.5669000 0.8024301 0.0000000 -0.5967461 0.8024301 0.0000000 -0.5967461 0.9097100 0.0000000 0.4152441 0.9097100 0.0000000 0.4152441 0.8896916 0.0000000 -0.4565619 0.8896916 0.0000000 -0.4565619 0.9679993 0.0000000 0.2509531 0.9679993 0.0000000 0.2509531 0.9527080 0.0000000 -0.3038872 0.9527080 0.0000000 -0.3038872 0.9968706 -0.0000000 0.0790512 0.9968706 -0.0000000 0.0790512 0.9897298 -0.0000000 -0.1429507 0.9897298 -0.0000000 -0.1429507 0.9954558 -0.0000000 -0.0952253 0.9954558 -0.0000000 -0.0952253 0.9997599 0.0000000 0.0219134 0.9997599 0.0000000 0.0219134 0.9637666 0.0000000 -0.2667468 0.9637666 0.0000000 -0.2667468 0.9825185 0.0000000 0.1861647 0.9825185 0.0000000 0.1861647 0.9028070 0.0000000 -0.4300460 0.9028070 0.0000000 -0.4300460 0.9384789 0.0000000 0.3453366 0.9384789 0.0000000 0.3453366 0.8145353 0.0000000 -0.5801139 0.8145353 0.0000000 -0.5801139 0.8688358 0.0000000 0.4951003 0.8688358 0.0000000 0.4951003 0.7013656 0.0000000 -0.7128017 0.7013656 0.0000000 -0.7128017 0.7755048 0.0000000 0.6313417 0.7755048 0.0000000 0.6313417 0.5667347 0.0000000 -0.8239003 0.5667347 0.0000000 -0.8239003 0.6610325 0.0000000 0.7503573 0.6610325 0.0000000 0.7503573 0.4153864 0.0000000 -0.9096451 0.4153864 0.0000000 -0.9096451 0.5284538 -0.0000000 0.8489621 0.5284538 -0.0000000 0.8489621 0.2510620 0.0000000 -0.9679710 0.2510620 0.0000000 -0.9679710 0.3814744 -0.0000000 0.9243794 0.3814744 -0.0000000 0.9243794 0.0787085 0.0000000 -0.9968977 0.0787085 0.0000000 -0.9968977 0.2241877 0.0000000 0.9745460 0.2241877 0.0000000 0.9745460 -0.0952150 0.0000000 -0.9954567 -0.0952150 0.0000000 -0.9954567 0.0606744 0.0000000 0.9981576 0.0606744 0.0000000 0.9981576 -0.0910263 0.0000000 -0.9958485 -0.0910263 0.0000000 -0.9958485 -0.1043398 0.0000000 0.9945417 -0.1043398 0.0000000 0.9945417 0.0910263 0.0000000 -0.9958485 0.0910263 0.0000000 -0.9958485 -0.0933733 0.0000000 0.9956312 -0.0933733 0.0000000 0.9956312 0.0952150 0.0000000 -0.9954567 0.0952150 0.0000000 -0.9954567 0.0911386 0.0000000 0.9958382 0.0911386 0.0000000 0.9958382 -0.0787085 0.0000000 -0.9968977 -0.0787085 0.0000000 -0.9968977 0.0952132 0.0000000 0.9954569 0.0952132 0.0000000 0.9954569 -0.2510620 0.0000000 -0.9679710 -0.2510620 0.0000000 -0.9679710 -0.0790484 0.0000000 0.9968708 -0.0790484 0.0000000 0.9968708 -0.4153864 0.0000000 -0.9096451 -0.4153864 0.0000000 -0.9096451 -0.2509671 0.0000000 0.9679956 -0.2509671 0.0000000 0.9679956 -0.5667347 0.0000000 -0.8239003 -0.5667347 0.0000000 -0.8239003 -0.4152125 0.0000000 0.9097245 -0.4152125 0.0000000 0.9097245 -0.7013656 0.0000000 -0.7128017 -0.7013656 0.0000000 -0.7128017 -0.5668687 0.0000000 0.8238082 -0.5668687 0.0000000 0.8238082 -0.8145353 0.0000000 -0.5801139 -0.8145353 0.0000000 -0.5801139 -0.7013512 0.0000000 0.7128159 -0.7013512 0.0000000 0.7128159 -0.9028070 0.0000000 -0.4300460 -0.9028070 0.0000000 -0.4300460 -0.8144728 0.0000000 0.5802017 -0.8144728 0.0000000 0.5802017 -0.9637666 0.0000000 -0.2667468 -0.9637666 0.0000000 -0.2667468 -0.9028338 -0.0000000 0.4299898 -0.9028338 -0.0000000 0.4299898 -0.9954558 -0.0000000 -0.0952253 -0.9954558 -0.0000000 -0.0952253 -0.9637895 -0.0000000 0.2666642 -0.9637895 -0.0000000 0.2666642 -0.9968706 -0.0000000 0.0790512 -0.9968706 -0.0000000 0.0790512 -0.9954524 -0.0000000 0.0952598 -0.9954524 -0.0000000 0.0952598 -0.9679993 0.0000000 0.2509531 -0.9679993 0.0000000 0.2509531 -0.9968701 -0.0000000 -0.0790575 -0.9968701 -0.0000000 -0.0790575 -0.9097100 0.0000000 0.4152441 -0.9097100 0.0000000 0.4152441 -0.9680041 0.0000000 -0.2509345 -0.9680041 0.0000000 -0.2509345 -0.8237866 0.0000000 0.5669000 -0.8237866 0.0000000 0.5669000 -0.9097128 0.0000000 -0.4152380 -0.9097128 0.0000000 -0.4152380 -0.7128277 0.0000000 0.7013392 -0.7128277 0.0000000 0.7013392 -0.8237897 0.0000000 -0.5668955 -0.8237897 0.0000000 -0.5668955 -0.5802183 0.0000000 0.8144610 -0.5802183 0.0000000 0.8144610 -0.7128244 0.0000000 -0.7013426 -0.7128244 0.0000000 -0.7013426 -0.4299849 0.0000000 0.9028361 -0.4299849 0.0000000 0.9028361 -0.5802215 0.0000000 -0.8144587 -0.5802215 0.0000000 -0.8144587 -0.3496434 0.0000000 0.9368829 -0.3496434 0.0000000 0.9368829 -0.4299823 0.0000000 -0.9028373 -0.4299823 0.0000000 -0.9028373 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.3495762 0.0000000 -0.9369079 -0.3495762 0.0000000 -0.9369079 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 6 12 13 12 6 5 10 14 15 14 10 9 13 16 17 16 13 12 15 18 19 18 15 14 16 20 17 20 16 21 22 19 18 19 22 23 20 24 25 24 20 21 26 22 27 22 26 23 24 28 25 28 24 29 30 27 31 27 30 26 28 32 33 32 28 29 34 31 35 31 34 30 32 36 33 36 32 37 38 35 39 35 38 34 36 40 41 40 36 37 42 39 43 39 42 38 40 44 41 44 40 45 46 42 43 42 46 47 44 48 49 48 44 45 50 46 51 46 50 47 48 52 49 52 48 53 54 51 55 51 54 50 56 52 53 52 56 57 58 55 59 55 58 54 60 57 56 57 60 61 62 58 59 58 62 63 64 61 60 61 64 65 66 63 62 63 66 67 68 65 64 65 68 69 70 67 66 67 70 71 72 69 68 69 72 73 74 71 70 71 74 75 76 73 72 73 76 77 78 75 74 75 78 79 80 77 76 77 80 81 82 79 78 79 82 83 84 81 80 81 84 85 86 83 82 83 86 87 88 85 84 85 88 89 90 87 86 87 90 91 92 89 88 89 92 93 94 91 90 91 94 95 96 93 92 93 96 97 98 95 94 95 98 99 100 97 96 97 100 101 102 99 98 99 102 103 104 101 100 101 104 105 106 103 102 103 106 107 105 108 109 108 105 104 110 107 106 107 110 111 108 112 109 112 108 113 114 110 115 110 114 111 113 116 112 116 113 117 118 114 115 114 118 119 117 120 116 120 117 121 122 119 118 119 122 123 120 124 125 124 120 121 126 122 127 122 126 123 124 128 125 128 124 129 130 127 131 127 130 126 129 132 128 132 129 133 134 131 135 131 134 130 133 136 132 136 133 137 138 135 139 135 138 134 137 140 136 140 137 141 142 139 143 139 142 138 140 144 145 144 140 141 146 142 143 142 146 147 145 148 149 148 145 144 147 150 151 150 147 146 149 152 153 152 149 148 151 154 155 154 151 150 156 157 158 157 156 159 155 160 161 160 155 154

-
-
-
- - - - -157.4803150 263.7795276 7212.5984252 -162.9495276 47.2440945 7212.1220472 -162.9495276 263.7795276 7212.1220472 -157.4803150 47.2440945 7212.5984252 -152.0111024 263.7795276 7212.1220472 -152.0111024 47.2440945 7212.1220472 -168.2525984 47.2440945 7210.6968504 -168.2525984 263.7795276 7210.6968504 -146.7080315 263.7795276 7210.6968504 -146.7080315 47.2440945 7210.6968504 -173.2283465 47.2440945 7208.3779528 -173.2283465 263.7795276 7208.3779528 -141.7322835 263.7795276 7208.3779528 -141.7322835 47.2440945 7208.3779528 -177.7255906 47.2440945 7205.2283465 -177.7255906 263.7795276 7205.2283465 -137.2350394 263.7795276 7205.2283465 -137.2350394 47.2440945 7205.2283465 -181.6076772 47.2440945 7201.3464567 -181.6076772 263.7795276 7201.3464567 -133.3529528 263.7795276 7201.3464567 -133.3529528 47.2440945 7201.3464567 -184.7567323 263.7795276 7196.8503937 -184.7567323 47.2440945 7196.8503937 -130.2039370 263.7795276 7196.8503937 -130.2039370 47.2440945 7196.8503937 -187.0769291 47.2440945 7191.8740157 -187.0769291 263.7795276 7191.8740157 -127.8837008 47.2440945 7191.8740157 -127.8837008 263.7795276 7191.8740157 -188.4978740 263.7795276 7186.5708661 -188.4978740 47.2440945 7186.5708661 -126.4627559 47.2440945 7186.5708661 -126.4627559 263.7795276 7186.5708661 -188.9763780 47.2440945 7181.1023622 -188.9763780 263.7795276 7181.1023622 -125.9842520 47.2440945 7181.1023622 -125.9842520 263.7795276 7181.1023622 -188.4978740 263.7795276 7175.6338583 -188.4978740 47.2440945 7175.6338583 -126.4627559 47.2440945 7175.6338583 -126.4627559 263.7795276 7175.6338583 -187.0769291 263.7795276 7170.3307087 -187.0769291 47.2440945 7170.3307087 -127.8837008 263.7795276 7170.3307087 -127.8837008 47.2440945 7170.3307087 -184.7567323 47.2440945 7165.3543307 -184.7567323 263.7795276 7165.3543307 -130.2039370 47.2440945 7165.3543307 -130.2039370 263.7795276 7165.3543307 -181.6076772 263.7795276 7160.8582677 -181.6076772 47.2440945 7160.8582677 -133.3529528 263.7795276 7160.8582677 -133.3529528 47.2440945 7160.8582677 -177.7255906 47.2440945 7156.9763780 -177.7255906 263.7795276 7156.9763780 -137.2350394 263.7795276 7156.9763780 -137.2350394 47.2440945 7156.9763780 -173.2283465 47.2440945 7153.8267717 -173.2283465 263.7795276 7153.8267717 -141.7322835 263.7795276 7153.8267717 -141.7322835 47.2440945 7153.8267717 -168.2525984 47.2440945 7151.5039370 -168.2525984 263.7795276 7151.5039370 -146.7080315 263.7795276 7151.5039370 -146.7080315 47.2440945 7151.5039370 -162.9495276 47.2440945 7150.0866142 -162.9495276 263.7795276 7150.0866142 -152.0111024 263.7795276 7150.0866142 -152.0111024 47.2440945 7150.0866142 -157.4803150 47.2440945 7149.6062992 -157.4803150 263.7795276 7149.6062992 -152.5590551 263.7795276 7150.0354331 -152.5590551 47.2440945 7150.0354331 - - - - - - - - - - -0.0000106 0.0000003 -1.0000000 0.1738266 -0.0000000 -0.9847763 0.1738266 -0.0000000 -0.9847763 -0.0000106 0.0000003 -1.0000000 -0.1738370 0.0000003 -0.9847744 -0.1738370 0.0000003 -0.9847744 0.3422675 -0.0000000 -0.9396025 0.3422675 -0.0000000 -0.9396025 -0.3422675 -0.0000000 -0.9396025 -0.3422675 -0.0000000 -0.9396025 0.4999437 0.0000000 -0.8660579 0.4999437 0.0000000 -0.8660579 -0.4999437 0.0000000 -0.8660579 -0.4999437 0.0000000 -0.8660579 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.7659942 0.0000000 -0.6428475 0.7659942 0.0000000 -0.6428475 -0.7659961 0.0000000 -0.6428452 -0.7659961 0.0000000 -0.6428452 0.8660061 0.0000000 -0.5000334 0.8660061 0.0000000 -0.5000334 -0.8660060 0.0000000 -0.5000337 -0.8660060 0.0000000 -0.5000337 0.9397027 -0.0000000 -0.3419924 0.9397027 -0.0000000 -0.3419924 -0.9397016 -0.0000000 -0.3419954 -0.9397016 -0.0000000 -0.3419954 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 0.9397027 -0.0000000 0.3419924 0.9397027 -0.0000000 0.3419924 -0.9397016 0.0000000 0.3419954 -0.9397016 0.0000000 0.3419954 0.8660061 0.0000000 0.5000334 0.8660061 0.0000000 0.5000334 -0.8660060 0.0000000 0.5000337 -0.8660060 0.0000000 0.5000337 0.7659942 0.0000000 0.6428475 0.7659942 0.0000000 0.6428475 -0.7659961 0.0000000 0.6428452 -0.7659961 0.0000000 0.6428452 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.5002251 0.0000000 0.8658954 0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 0.3419220 -0.0000000 0.9397283 0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 0.1734963 -0.0000000 0.9848345 0.1734963 -0.0000000 0.9848345 -0.1762222 -0.0000000 0.9843504 -0.1762222 -0.0000000 0.9843504 0.0003084 0.0000000 1.0000000 0.0003084 0.0000000 1.0000000 -0.0899353 0.0000000 0.9959476 -0.0899353 0.0000000 0.9959476 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 22 18 23 18 22 19 21 24 25 24 21 20 26 22 23 22 26 27 24 28 25 28 24 29 30 26 31 26 30 27 29 32 28 32 29 33 34 30 31 30 34 35 33 36 32 36 33 37 38 34 39 34 38 35 37 40 36 40 37 41 42 39 43 39 42 38 40 44 45 44 40 41 46 42 43 42 46 47 44 48 45 48 44 49 50 46 51 46 50 47 48 52 53 52 48 49 54 50 51 50 54 55 53 56 57 56 53 52 58 55 54 55 58 59 57 60 61 60 57 56 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 72 73 72 69 68 73 71 70 71 73 72

-
-
-
- - - - 162.9495276 263.7795276 7212.1220472 157.4803150 47.2440945 7212.5984252 157.4803150 263.7795276 7212.5984252 162.9495276 47.2440945 7212.1220472 168.2525984 263.7795276 7210.6968504 168.2525984 47.2440945 7210.6968504 152.0111024 47.2440945 7212.1220472 152.0111024 263.7795276 7212.1220472 173.2283465 263.7795276 7208.3779528 173.2283465 47.2440945 7208.3779528 146.7080315 47.2440945 7210.6968504 146.7080315 263.7795276 7210.6968504 177.7255906 263.7795276 7205.2283465 177.7255906 47.2440945 7205.2283465 141.7322835 47.2440945 7208.3779528 141.7322835 263.7795276 7208.3779528 181.6076772 263.7795276 7201.3464567 181.6076772 47.2440945 7201.3464567 137.2350394 47.2440945 7205.2283465 137.2350394 263.7795276 7205.2283465 184.7567323 263.7795276 7196.8503937 184.7567323 47.2440945 7196.8503937 133.3529528 47.2440945 7201.3464567 133.3529528 263.7795276 7201.3464567 187.0769291 47.2440945 7191.8740157 187.0769291 263.7795276 7191.8740157 130.2039370 263.7795276 7196.8503937 130.2039370 47.2440945 7196.8503937 188.4978740 47.2440945 7186.5708661 188.4978740 263.7795276 7186.5708661 127.8837008 47.2440945 7191.8740157 127.8837008 263.7795276 7191.8740157 188.9763780 47.2440945 7181.1023622 188.9763780 263.7795276 7181.1023622 126.4627559 263.7795276 7186.5708661 126.4627559 47.2440945 7186.5708661 188.4978740 47.2440945 7175.6338583 188.4978740 263.7795276 7175.6338583 125.9842520 47.2440945 7181.1023622 125.9842520 263.7795276 7181.1023622 187.0769291 263.7795276 7170.3307087 187.0769291 47.2440945 7170.3307087 126.4627559 263.7795276 7175.6338583 126.4627559 47.2440945 7175.6338583 184.7567323 47.2440945 7165.3543307 184.7567323 263.7795276 7165.3543307 127.8837008 263.7795276 7170.3307087 127.8837008 47.2440945 7170.3307087 181.6076772 263.7795276 7160.8582677 181.6076772 47.2440945 7160.8582677 130.2039370 47.2440945 7165.3543307 130.2039370 263.7795276 7165.3543307 177.7255906 263.7795276 7156.9763780 177.7255906 47.2440945 7156.9763780 133.3529528 263.7795276 7160.8582677 133.3529528 47.2440945 7160.8582677 173.2283465 263.7795276 7153.8267717 173.2283465 47.2440945 7153.8267717 137.2350394 47.2440945 7156.9763780 137.2350394 263.7795276 7156.9763780 168.2525984 263.7795276 7151.5039370 168.2525984 47.2440945 7151.5039370 141.7322835 47.2440945 7153.8267717 141.7322835 263.7795276 7153.8267717 162.9495276 263.7795276 7150.0866142 162.9495276 47.2440945 7150.0866142 146.7080315 47.2440945 7151.5039370 146.7080315 263.7795276 7151.5039370 157.4803150 263.7795276 7149.6062992 157.4803150 47.2440945 7149.6062992 152.0111024 47.2440945 7150.0866142 152.0111024 263.7795276 7150.0866142 - - - - - - - - - - -0.1738266 -0.0000000 -0.9847763 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1738266 -0.0000000 -0.9847763 -0.3422675 -0.0000000 -0.9396025 -0.3422675 -0.0000000 -0.9396025 0.1738266 -0.0000000 -0.9847763 0.1738266 -0.0000000 -0.9847763 -0.4999437 0.0000000 -0.8660579 -0.4999437 0.0000000 -0.8660579 0.3422675 -0.0000000 -0.9396025 0.3422675 -0.0000000 -0.9396025 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.4999437 0.0000000 -0.8660579 0.4999437 0.0000000 -0.8660579 -0.7659942 0.0000000 -0.6428475 -0.7659942 0.0000000 -0.6428475 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.8660061 0.0000000 -0.5000334 -0.8660061 0.0000000 -0.5000334 0.7659961 0.0000000 -0.6428452 0.7659961 0.0000000 -0.6428452 -0.9397027 -0.0000000 -0.3419924 -0.9397027 -0.0000000 -0.3419924 0.8660060 0.0000000 -0.5000337 0.8660060 0.0000000 -0.5000337 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 0.9397016 -0.0000000 -0.3419954 0.9397016 -0.0000000 -0.3419954 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.9397027 -0.0000000 0.3419924 -0.9397027 -0.0000000 0.3419924 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -0.8660061 0.0000000 0.5000334 -0.8660061 0.0000000 0.5000334 0.9397016 0.0000000 0.3419954 0.9397016 0.0000000 0.3419954 -0.7659942 0.0000000 0.6428475 -0.7659942 0.0000000 0.6428475 0.8660060 0.0000000 0.5000337 0.8660060 0.0000000 0.5000337 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.7659961 0.0000000 0.6428452 0.7659961 0.0000000 0.6428452 -0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 0.5002251 0.0000000 0.8658954 0.5002251 0.0000000 0.8658954 -0.1734963 -0.0000000 0.9848345 -0.1734963 -0.0000000 0.9848345 0.3419220 -0.0000000 0.9397283 0.3419220 -0.0000000 0.9397283 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.1734963 -0.0000000 0.9848345 0.1734963 -0.0000000 0.9848345 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 17 20 21 20 17 16 19 22 23 22 19 18 20 24 21 24 20 25 26 22 27 22 26 23 25 28 24 28 25 29 30 26 27 26 30 31 29 32 28 32 29 33 34 30 35 30 34 31 33 36 32 36 33 37 38 34 35 34 38 39 36 40 41 40 36 37 42 38 43 38 42 39 40 44 41 44 40 45 46 43 47 43 46 42 44 48 49 48 44 45 50 46 47 46 50 51 49 52 53 52 49 48 54 50 55 50 54 51 53 56 57 56 53 52 58 54 55 54 58 59 57 60 61 60 57 56 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 71 70 71 69 68

-
-
-
- - - - 162.9495276 263.7795276 4731.8031496 157.4803150 47.2440945 4732.2834646 157.4803150 263.7795276 4732.2834646 162.9495276 47.2440945 4731.8031496 168.2525984 263.7795276 4730.3858268 168.2525984 47.2440945 4730.3858268 152.0111024 47.2440945 4731.8031496 152.0111024 263.7795276 4731.8031496 173.2283465 263.7795276 4728.0629921 173.2283465 47.2440945 4728.0629921 146.7080315 47.2440945 4730.3858268 146.7080315 263.7795276 4730.3858268 177.7255906 263.7795276 4724.9133858 177.7255906 47.2440945 4724.9133858 141.7322835 47.2440945 4728.0629921 141.7322835 263.7795276 4728.0629921 181.6076772 263.7795276 4721.0314961 181.6076772 47.2440945 4721.0314961 137.2350394 47.2440945 4724.9133858 137.2350394 263.7795276 4724.9133858 184.7567323 47.2440945 4716.5354331 184.7567323 263.7795276 4716.5354331 133.3529528 47.2440945 4721.0314961 133.3529528 263.7795276 4721.0314961 187.0769291 263.7795276 4711.5590551 187.0769291 47.2440945 4711.5590551 130.2039370 47.2440945 4716.5354331 130.2039370 263.7795276 4716.5354331 188.4978740 47.2440945 4706.2559055 188.4978740 263.7795276 4706.2559055 127.8837008 263.7795276 4711.5590551 127.8837008 47.2440945 4711.5590551 188.9763780 47.2440945 4700.7874016 188.9763780 263.7795276 4700.7874016 126.4627559 47.2440945 4706.2559055 126.4627559 263.7795276 4706.2559055 188.4978740 263.7795276 4695.3188976 188.4978740 47.2440945 4695.3188976 125.9842520 263.7795276 4700.7874016 125.9842520 47.2440945 4700.7874016 187.0769291 47.2440945 4690.0157480 187.0769291 263.7795276 4690.0157480 126.4627559 263.7795276 4695.3188976 126.4627559 47.2440945 4695.3188976 184.7567323 263.7795276 4685.0393701 184.7567323 47.2440945 4685.0393701 127.8837008 47.2440945 4690.0157480 127.8837008 263.7795276 4690.0157480 181.6076772 47.2440945 4680.5433071 181.6076772 263.7795276 4680.5433071 130.2039370 263.7795276 4685.0393701 130.2039370 47.2440945 4685.0393701 177.7255906 263.7795276 4676.6614173 177.7255906 47.2440945 4676.6614173 133.3529528 47.2440945 4680.5433071 133.3529528 263.7795276 4680.5433071 173.2283465 263.7795276 4673.5118110 173.2283465 47.2440945 4673.5118110 137.2350394 47.2440945 4676.6614173 137.2350394 263.7795276 4676.6614173 168.2525984 263.7795276 4671.1889764 168.2525984 47.2440945 4671.1889764 141.7322835 47.2440945 4673.5118110 141.7322835 263.7795276 4673.5118110 162.9495276 263.7795276 4669.7716535 162.9495276 47.2440945 4669.7716535 146.7080315 47.2440945 4671.1889764 146.7080315 263.7795276 4671.1889764 157.4803150 263.7795276 4669.2913386 157.4803150 47.2440945 4669.2913386 152.0111024 47.2440945 4669.7716535 152.0111024 263.7795276 4669.7716535 - - - - - - - - - - -0.1734963 -0.0000000 -0.9848345 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.1734963 -0.0000000 -0.9848345 -0.3419220 -0.0000000 -0.9397283 -0.3419220 -0.0000000 -0.9397283 0.1734963 -0.0000000 -0.9848345 0.1734963 -0.0000000 -0.9848345 -0.5002251 0.0000000 -0.8658954 -0.5002251 0.0000000 -0.8658954 0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 -0.7659942 0.0000000 -0.6428475 -0.7659942 0.0000000 -0.6428475 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.8660061 0.0000000 -0.5000334 -0.8660061 0.0000000 -0.5000334 0.7659961 0.0000000 -0.6428452 0.7659961 0.0000000 -0.6428452 -0.9397027 -0.0000000 -0.3419924 -0.9397027 -0.0000000 -0.3419924 0.8660060 0.0000000 -0.5000337 0.8660060 0.0000000 -0.5000337 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 0.9397016 0.0000000 -0.3419954 0.9397016 0.0000000 -0.3419954 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.9397027 -0.0000000 0.3419924 -0.9397027 -0.0000000 0.3419924 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -0.8660061 0.0000000 0.5000334 -0.8660061 0.0000000 0.5000334 0.9397016 -0.0000000 0.3419954 0.9397016 -0.0000000 0.3419954 -0.7659942 0.0000000 0.6428475 -0.7659942 0.0000000 0.6428475 0.8660060 0.0000000 0.5000337 0.8660060 0.0000000 0.5000337 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.7659961 0.0000000 0.6428452 0.7659961 0.0000000 0.6428452 -0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 0.5002251 0.0000000 0.8658954 0.5002251 0.0000000 0.8658954 -0.1734963 -0.0000000 0.9848345 -0.1734963 -0.0000000 0.9848345 0.3419220 -0.0000000 0.9397283 0.3419220 -0.0000000 0.9397283 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.1734963 -0.0000000 0.9848345 0.1734963 -0.0000000 0.9848345 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 16 20 17 20 16 21 19 22 23 22 19 18 20 24 25 24 20 21 26 23 22 23 26 27 24 28 25 28 24 29 30 26 31 26 30 27 29 32 28 32 29 33 34 30 31 30 34 35 32 36 37 36 32 33 38 34 39 34 38 35 36 40 37 40 36 41 42 39 43 39 42 38 40 44 45 44 40 41 46 42 43 42 46 47 44 48 45 48 44 49 50 46 51 46 50 47 48 52 53 52 48 49 54 50 51 50 54 55 53 56 57 56 53 52 58 55 54 55 58 59 57 60 61 60 57 56 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 71 70 71 69 68

-
-
-
- - - - -157.4803150 263.7795276 4732.2834646 -162.9495276 47.2440945 4731.8031496 -162.9495276 263.7795276 4731.8031496 -157.4803150 47.2440945 4732.2834646 -152.5590551 263.7795276 4731.8543307 -152.5590551 47.2440945 4731.8543307 -168.2525984 47.2440945 4730.3858268 -168.2525984 263.7795276 4730.3858268 -152.0111024 263.7795276 4731.8031496 -152.0111024 47.2440945 4731.8031496 -173.2283465 47.2440945 4728.0629921 -173.2283465 263.7795276 4728.0629921 -146.7080315 263.7795276 4730.3858268 -146.7080315 47.2440945 4730.3858268 -177.7255906 47.2440945 4724.9133858 -177.7255906 263.7795276 4724.9133858 -141.7322835 263.7795276 4728.0629921 -141.7322835 47.2440945 4728.0629921 -181.6076772 47.2440945 4721.0314961 -181.6076772 263.7795276 4721.0314961 -137.2350394 263.7795276 4724.9133858 -137.2350394 47.2440945 4724.9133858 -184.7567323 47.2440945 4716.5354331 -184.7567323 263.7795276 4716.5354331 -133.3529528 263.7795276 4721.0314961 -133.3529528 47.2440945 4721.0314961 -187.0769291 263.7795276 4711.5590551 -187.0769291 47.2440945 4711.5590551 -130.2039370 47.2440945 4716.5354331 -130.2039370 263.7795276 4716.5354331 -188.4978740 47.2440945 4706.2559055 -188.4978740 263.7795276 4706.2559055 -127.8837008 263.7795276 4711.5590551 -127.8837008 47.2440945 4711.5590551 -188.9763780 263.7795276 4700.7874016 -188.9763780 47.2440945 4700.7874016 -126.4627559 47.2440945 4706.2559055 -126.4627559 263.7795276 4706.2559055 -188.4978740 263.7795276 4695.3188976 -188.4978740 47.2440945 4695.3188976 -125.9842520 47.2440945 4700.7874016 -125.9842520 263.7795276 4700.7874016 -187.0769291 47.2440945 4690.0157480 -187.0769291 263.7795276 4690.0157480 -126.4627559 263.7795276 4695.3188976 -126.4627559 47.2440945 4695.3188976 -184.7567323 263.7795276 4685.0393701 -184.7567323 47.2440945 4685.0393701 -127.8837008 47.2440945 4690.0157480 -127.8837008 263.7795276 4690.0157480 -181.6076772 47.2440945 4680.5433071 -181.6076772 263.7795276 4680.5433071 -130.2039370 263.7795276 4685.0393701 -130.2039370 47.2440945 4685.0393701 -177.7255906 47.2440945 4676.6614173 -177.7255906 263.7795276 4676.6614173 -133.3529528 47.2440945 4680.5433071 -133.3529528 263.7795276 4680.5433071 -173.2283465 47.2440945 4673.5118110 -173.2283465 263.7795276 4673.5118110 -137.2350394 263.7795276 4676.6614173 -137.2350394 47.2440945 4676.6614173 -168.2525984 47.2440945 4671.1889764 -168.2525984 263.7795276 4671.1889764 -141.7322835 263.7795276 4673.5118110 -141.7322835 47.2440945 4673.5118110 -162.9495276 47.2440945 4669.7716535 -162.9495276 263.7795276 4669.7716535 -146.7080315 263.7795276 4671.1889764 -146.7080315 47.2440945 4671.1889764 -157.4803150 47.2440945 4669.2913386 -157.4803150 263.7795276 4669.2913386 -152.0111024 263.7795276 4669.7716535 -152.0111024 47.2440945 4669.7716535 -152.5590551 47.2440945 4669.7204724 -152.5590551 263.7795276 4669.7204724 - - - - - - - - - - 0.0003084 0.0000000 -1.0000000 0.1734963 -0.0000000 -0.9848345 0.1734963 -0.0000000 -0.9848345 0.0003084 0.0000000 -1.0000000 -0.0899353 0.0000000 -0.9959476 -0.0899353 0.0000000 -0.9959476 0.3419220 -0.0000000 -0.9397283 0.3419220 -0.0000000 -0.9397283 -0.1762222 -0.0000000 -0.9843504 -0.1762222 -0.0000000 -0.9843504 0.5002251 0.0000000 -0.8658954 0.5002251 0.0000000 -0.8658954 -0.3419220 -0.0000000 -0.9397283 -0.3419220 -0.0000000 -0.9397283 0.6428123 0.0000000 -0.7660237 0.6428123 0.0000000 -0.7660237 -0.5002251 0.0000000 -0.8658954 -0.5002251 0.0000000 -0.8658954 0.7659942 0.0000000 -0.6428475 0.7659942 0.0000000 -0.6428475 -0.6428123 0.0000000 -0.7660237 -0.6428123 0.0000000 -0.7660237 0.8660061 0.0000000 -0.5000334 0.8660061 0.0000000 -0.5000334 -0.7659961 0.0000000 -0.6428452 -0.7659961 0.0000000 -0.6428452 0.9397027 -0.0000000 -0.3419924 0.9397027 -0.0000000 -0.3419924 -0.8660060 0.0000000 -0.5000337 -0.8660060 0.0000000 -0.5000337 0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 -0.1736520 -0.9397016 0.0000000 -0.3419954 -0.9397016 0.0000000 -0.3419954 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.9848071 -0.0000000 -0.1736520 -0.9848071 -0.0000000 -0.1736520 0.9848071 -0.0000000 0.1736520 0.9848071 -0.0000000 0.1736520 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.9397027 -0.0000000 0.3419924 0.9397027 -0.0000000 0.3419924 -0.9848071 -0.0000000 0.1736520 -0.9848071 -0.0000000 0.1736520 0.8660061 0.0000000 0.5000334 0.8660061 0.0000000 0.5000334 -0.9397016 -0.0000000 0.3419954 -0.9397016 -0.0000000 0.3419954 0.7659942 0.0000000 0.6428475 0.7659942 0.0000000 0.6428475 -0.8660060 0.0000000 0.5000337 -0.8660060 0.0000000 0.5000337 0.6428123 0.0000000 0.7660237 0.6428123 0.0000000 0.7660237 -0.7659961 0.0000000 0.6428452 -0.7659961 0.0000000 0.6428452 0.5002251 0.0000000 0.8658954 0.5002251 0.0000000 0.8658954 -0.6428123 0.0000000 0.7660237 -0.6428123 0.0000000 0.7660237 0.3419220 -0.0000000 0.9397283 0.3419220 -0.0000000 0.9397283 -0.5002251 0.0000000 0.8658954 -0.5002251 0.0000000 0.8658954 0.1734963 -0.0000000 0.9848345 0.1734963 -0.0000000 0.9848345 -0.3419220 -0.0000000 0.9397283 -0.3419220 -0.0000000 0.9397283 0.0003084 0.0000000 1.0000000 0.0003084 0.0000000 1.0000000 -0.1762222 -0.0000000 0.9843504 -0.1762222 -0.0000000 0.9843504 -0.0899353 0.0000000 0.9959476 -0.0899353 0.0000000 0.9959476 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 22 19 18 19 22 23 24 21 20 21 24 25 26 22 27 22 26 23 24 28 25 28 24 29 30 26 27 26 30 31 28 32 33 32 28 29 34 30 35 30 34 31 32 36 33 36 32 37 38 35 39 35 38 34 37 40 36 40 37 41 42 38 39 38 42 43 40 44 45 44 40 41 46 42 47 42 46 43 44 48 45 48 44 49 50 46 47 46 50 51 48 52 53 52 48 49 54 51 50 51 54 55 52 56 53 56 52 57 58 55 54 55 58 59 56 60 61 60 56 57 62 59 58 59 62 63 61 64 65 64 61 60 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 72 73 72 69 68 74 71 70 71 74 75 73 75 74 75 73 72

-
-
-
- - - - 7201.4212598 263.7795276 3559.5897638 7426.9251969 263.7795276 3544.3913386 7313.5629921 263.7795276 3542.9433071 7443.6377953 263.7795276 3547.1688976 7459.7834646 263.7795276 3552.3094488 7475.0275591 263.7795276 3559.7062992 7093.3661417 263.7795276 3593.9070866 7445.0905512 263.7795276 3665.4362205 7449.7716535 263.7795276 3666.5003937 7881.0669291 263.7795276 3794.1326772 7355.7559055 263.7795276 3659.4740157 6992.1692913 263.7795276 3645.0153543 6975.6062992 263.7795276 3653.4106299 6957.9291339 263.7795276 3659.1047244 7454.2125984 263.7795276 3668.3090551 7458.3070866 263.7795276 3670.8137795 7461.9370079 263.7795276 3673.9472441 7465.0157480 263.7795276 3677.6279528 7467.4566929 263.7795276 3681.7578740 7469.1968504 263.7795276 3686.2299213 7470.1889764 263.7795276 3690.9232283 7470.4055118 263.7795276 3695.7157480 7469.8464567 263.7795276 3700.4807087 7468.5236220 263.7795276 3705.0917323 7466.4685039 263.7795276 3709.4275591 7425.5708661 263.7795276 3780.2681102 7367.1771654 263.7795276 3881.4066929 7896.3385827 263.7795276 3804.6303150 7909.7834646 263.7795276 3817.3877953 7537.6259843 263.7795276 3865.9960630 7921.0669291 263.7795276 3832.0917323 7548.2244094 263.7795276 3865.0692913 7929.9094488 263.7795276 3848.3795276 7527.3503937 263.7795276 3868.7500000 7517.7125984 263.7795276 3873.2448819 7509.0000000 263.7795276 3879.3464567 7501.4763780 263.7795276 3886.8677165 7364.3858268 263.7795276 3885.4295276 7360.9685039 263.7795276 3888.9358268 7495.3740157 263.7795276 3895.5811024 7357.0196850 263.7795276 3891.8295276 7352.6456693 263.7795276 3894.0303150 7347.9685039 263.7795276 3895.4771654 7343.1141732 263.7795276 3896.1318898 7465.8464567 263.7795276 3946.7244094 7297.5039370 263.7795276 3901.4444882 7252.9606299 263.7795276 3912.6118110 7210.2362205 263.7795276 3929.4448819 7205.6496063 263.7795276 3931.1562992 7200.8464567 263.7795276 3932.0866142 7195.9527559 263.7795276 3932.2106299 2976.3015748 263.7795276 1683.1366142 3409.2696850 263.7795276 1917.8980315 3414.3456693 263.7795276 1917.0456693 3404.4188976 263.7795276 1919.6192913 3399.9401575 263.7795276 1922.1562992 3395.9708661 263.7795276 1925.4326772 2705.9578740 263.7795276 1289.5216535 3495.4000000 263.7795276 1381.6208661 3020.9185039 263.7795276 1107.6791339 2749.7791339 263.7795276 1544.0547244 2741.4933071 263.7795276 1546.2751969 2733.7185039 263.7795276 1549.9003937 2469.7374016 263.7795276 1698.6673228 3359.1854331 263.7795276 1441.2885827 3367.7307087 263.7795276 1440.5409449 3350.8992126 263.7795276 1443.5090551 3343.1244094 263.7795276 1447.1342520 3336.0976378 263.7795276 1452.0547244 3330.0318898 263.7795276 1458.1204724 3325.1114173 263.7795276 1465.1472441 3321.4866142 263.7795276 1472.9220472 3319.2661417 263.7795276 1481.2078740 3318.5181102 263.7795276 1489.7535433 2758.3248031 263.7795276 1543.3070866 3319.2657480 263.7795276 1498.2992126 3321.4866142 263.7795276 1506.5854331 3325.1114173 263.7795276 1514.3598425 3330.0318898 263.7795276 1521.3870079 3336.0976378 263.7795276 1527.4527559 3343.1244094 263.7795276 1532.3732283 3350.8992126 263.7795276 1535.9984252 3359.1854331 263.7795276 1538.2188976 3367.7307087 263.7795276 1538.9661417 2726.6921260 263.7795276 1554.8204724 2720.6259843 263.7795276 1560.8866142 2715.7055118 263.7795276 1567.9133858 2712.0803150 263.7795276 1575.6881890 2709.8598425 263.7795276 1583.9740157 2709.1122047 263.7795276 1592.5196850 2709.8598425 263.7795276 1601.0653543 2712.0803150 263.7795276 1609.3511811 2715.7055118 263.7795276 1617.1259843 2720.6259843 263.7795276 1624.1531496 2726.6921260 263.7795276 1630.2188976 2733.7185039 263.7795276 1635.1389764 2741.4933071 263.7795276 1638.7641732 2749.7791339 263.7795276 1640.9846457 2758.3248031 263.7795276 1641.7322835 2944.9066929 263.7795276 1646.3334646 2950.0535433 263.7795276 1646.2913386 2939.8456693 263.7795276 1647.2681102 2935.0232283 263.7795276 1649.0681102 2930.5866142 263.7795276 1651.6775591 2926.6708661 263.7795276 1655.0177165 2923.3948819 263.7795276 1658.9874016 2920.8578740 263.7795276 1663.4657480 2919.1362205 263.7795276 1668.3165354 2904.3724409 263.7795276 1693.8881890 2901.1909449 263.7795276 1697.5838583 2898.6606299 263.7795276 1701.7527559 2469.7374016 263.7795276 2062.3527559 2896.8511811 263.7795276 1706.2814961 2895.8110236 263.7795276 1711.0460630 2895.5700787 263.7795276 1715.9165354 2896.1346457 263.7795276 1720.7606299 2897.4877953 263.7795276 1725.4456693 2899.5937008 263.7795276 1729.8444882 2902.3952756 263.7795276 1733.8362205 2905.8149606 263.7795276 1737.3125984 2909.7618110 263.7795276 1740.1783465 2914.1248031 263.7795276 1742.3559055 2918.7870079 263.7795276 1743.7854331 2923.6212598 263.7795276 1744.4279528 3365.4590551 263.7795276 1978.2807087 3364.6070866 263.7795276 1983.3562992 3364.6484252 263.7795276 1988.5035433 3365.5830709 263.7795276 1993.5645669 3367.3826772 263.7795276 1998.3870079 3369.9925197 263.7795276 2002.8232283 3373.3334646 263.7795276 2006.7389764 3377.3031496 263.7795276 2010.0153543 3381.7807087 263.7795276 2012.5523622 3386.6314961 263.7795276 2014.2732283 3391.7074803 263.7795276 2015.1259843 2965.4846457 263.7795276 2123.1984252 2974.0299213 263.7795276 2122.4511811 2957.1984252 263.7795276 2125.4188976 2949.4236220 263.7795276 2129.0440945 2942.3968504 263.7795276 2133.9645669 2936.3311024 263.7795276 2140.0303150 2931.4106299 263.7795276 2147.0574803 2927.7858268 263.7795276 2154.8318898 2925.5653543 263.7795276 2163.1181102 2924.8173228 263.7795276 2171.6633858 2925.5649606 263.7795276 2180.2090551 2944.2188976 263.7795276 2336.2948819 2927.7858268 263.7795276 2188.4952756 2931.4106299 263.7795276 2196.2700787 2936.3311024 263.7795276 2203.2968504 2942.3968504 263.7795276 2209.3625984 2949.4236220 263.7795276 2214.2830709 2957.1984252 263.7795276 2217.9082677 2965.4846457 263.7795276 2220.1287402 2974.0299213 263.7795276 2220.8759843 4120.1456693 263.7795276 2224.7838583 4122.4645669 263.7795276 2229.7598425 4125.6141732 263.7795276 2234.2570866 4129.4960630 263.7795276 2238.1393701 4133.9921260 263.7795276 2241.2881890 4138.9685039 263.7795276 2243.6086614 4144.2716535 263.7795276 2245.0291339 4149.7401575 263.7795276 2245.5078740 3211.7515748 263.7795276 2328.1397638 6939.5748031 263.7795276 3661.9582677 7266.5472441 263.7795276 3667.0862205 3399.3641732 263.7795276 1452.0547244 3622.1035433 263.7795276 1617.3885827 3392.3370079 263.7795276 1447.1342520 3384.5625984 263.7795276 1443.5090551 3376.2767717 263.7795276 1441.2889764 3405.4299213 263.7795276 1458.1204724 3410.3500000 263.7795276 1465.1472441 3413.9755906 263.7795276 1472.9220472 3416.1956693 263.7795276 1481.2078740 3416.9433071 263.7795276 1489.7535433 3416.1956693 263.7795276 1498.2992126 3413.9755906 263.7795276 1506.5854331 3410.3500000 263.7795276 1514.3598425 3405.4299213 263.7795276 1521.3870079 3399.3637795 263.7795276 1527.4527559 3392.3370079 263.7795276 1532.3732283 3384.5625984 263.7795276 1535.9984252 3376.2767717 263.7795276 1538.2188976 2766.8708661 263.7795276 1544.0547244 2775.1570866 263.7795276 1546.2751969 2782.9311024 263.7795276 1549.9003937 2789.9582677 263.7795276 1554.8204724 2796.0244094 263.7795276 1560.8862205 2800.9440945 263.7795276 1567.9133858 2804.5696850 263.7795276 1575.6877953 2806.7905512 263.7795276 1583.9740157 2807.5374016 263.7795276 1592.5196850 2806.7897638 263.7795276 1601.0653543 2804.5696850 263.7795276 1609.3515748 2800.9440945 263.7795276 1617.1259843 2796.0244094 263.7795276 1624.1527559 3633.3937008 263.7795276 1634.6051181 2789.9582677 263.7795276 1630.2185039 2782.9311024 263.7795276 1635.1389764 3647.5011811 263.7795276 1649.6000000 2775.1570866 263.7795276 1638.7645669 2766.8704724 263.7795276 1640.9846457 2955.1295276 263.7795276 1647.1440945 2959.9799213 263.7795276 1648.8649606 2964.4582677 263.7795276 1651.4019685 3663.9976378 263.7795276 1661.9173228 2968.4279528 263.7795276 1654.6783465 2971.7685039 263.7795276 1658.5940945 2974.3775591 263.7795276 1663.0303150 4160.5118110 263.7795276 2184.4153543 4165.4881890 263.7795276 2186.7354331 6868.5196850 263.7795276 3644.6240157 2976.1779528 263.7795276 1667.8527559 2977.1122047 263.7795276 1672.9137795 2977.1547244 263.7795276 1678.0610236 3424.5535433 263.7795276 1918.0224409 3419.4917323 263.7795276 1917.0874016 3429.3755906 263.7795276 1919.8220472 3433.8122047 263.7795276 1922.4318898 3437.7279528 263.7795276 1925.7724409 3441.0039370 263.7795276 1929.7421260 3443.5413386 263.7795276 1934.2200787 3445.2622047 263.7795276 1939.0708661 3446.1145669 263.7795276 1944.1464567 3446.0728346 263.7795276 1949.2937008 3445.1377953 263.7795276 1954.3551181 3443.3377953 263.7795276 1959.1771654 3440.7283465 263.7795276 1963.6133858 3437.3877953 263.7795276 1967.5291339 4155.2125984 263.7795276 2182.9940945 3422.6240157 263.7795276 1993.1007874 3420.9031496 263.7795276 1997.9515748 3418.3661417 263.7795276 2002.4295276 3415.0905512 263.7795276 2006.3992126 3411.1740157 263.7795276 2009.7397638 3406.7381890 263.7795276 2012.3492126 3401.9157480 263.7795276 2014.1492126 3396.8543307 263.7795276 2015.0842520 4149.7401575 263.7795276 2182.5157480 2982.5759843 263.7795276 2123.1984252 2990.8618110 263.7795276 2125.4188976 2998.6362205 263.7795276 2129.0440945 3005.6633858 263.7795276 2133.9645669 3011.7291339 263.7795276 2140.0303150 3016.6492126 263.7795276 2147.0570866 3020.2748031 263.7795276 2154.8318898 3022.4948819 263.7795276 2163.1177165 3023.2425197 263.7795276 2171.6637795 3022.4948819 263.7795276 2180.2090551 4169.9881890 263.7795276 2189.8846457 4173.8700787 263.7795276 2193.7665354 4177.0196850 263.7795276 2198.2637795 4179.3385827 263.7795276 2203.2393701 4180.7598425 263.7795276 2208.5425197 4181.2362205 263.7795276 2214.0118110 4180.7598425 263.7795276 2219.4811024 4179.3385827 263.7795276 2224.7838583 4177.0196850 263.7795276 2229.7594488 4173.8700787 263.7795276 2234.2570866 4169.9881890 263.7795276 2238.1393701 4165.4881890 263.7795276 2241.2881890 4160.5157480 263.7795276 2243.6086614 4155.2125984 263.7795276 2245.0291339 4003.0314961 263.7795276 2457.1791339 3997.7322835 263.7795276 2455.7582677 3232.3062992 263.7795276 2329.3082677 3252.3460630 263.7795276 2334.0283465 3271.2614173 263.7795276 2342.1566929 3992.2598425 263.7795276 2455.2795276 4008.0078740 263.7795276 2459.4992126 4012.5078740 263.7795276 2462.6484252 4016.3897638 263.7795276 2466.5303150 4019.5393701 263.7795276 2471.0275591 4021.8582677 263.7795276 2476.0031496 4023.2795276 263.7795276 2481.3062992 4023.7559055 263.7795276 2486.7755906 4023.2795276 263.7795276 2492.2448819 4021.8582677 263.7795276 2497.5480315 4019.5393701 263.7795276 2502.5236220 4016.3897638 263.7795276 2507.0208661 4012.5078740 263.7795276 2510.9031496 4008.0078740 263.7795276 2514.0519685 4003.0354331 263.7795276 2516.3724409 6308.5275591 263.7795276 3424.5732283 3997.7322835 263.7795276 2517.7933071 3992.2598425 263.7795276 2518.2716535 6303.2283465 263.7795276 3423.1515748 6297.7559055 263.7795276 3422.6732283 6313.5039370 263.7795276 3426.8933071 6318.0039370 263.7795276 3430.0417323 6321.8858268 263.7795276 3433.9236220 6325.0354331 263.7795276 3438.4212598 6327.3543307 263.7795276 3443.3968504 6328.7755906 263.7795276 3448.7000000 6329.2519685 263.7795276 3454.1692913 6328.7755906 263.7795276 3459.6385827 6327.3543307 263.7795276 3464.9413386 6325.0354331 263.7795276 3469.9177165 6321.8858268 263.7795276 3474.4145669 6318.0039370 263.7795276 3478.2964567 6313.5039370 263.7795276 3481.4456693 6308.5275591 263.7795276 3483.7665354 6303.2283465 263.7795276 3485.1870079 6297.7559055 263.7795276 3485.6653543 3020.2748031 263.7795276 2188.4952756 4144.2716535 263.7795276 2182.9940945 4138.9685039 263.7795276 2184.4153543 4133.9921260 263.7795276 2186.7354331 4129.4960630 263.7795276 2189.8846457 3016.6492126 263.7795276 2196.2696850 4125.6141732 263.7795276 2193.7665354 4122.4645669 263.7795276 2198.2637795 3011.7291339 263.7795276 2203.2968504 4120.1456693 263.7795276 2203.2393701 4118.7244094 263.7795276 2208.5425197 3005.6629921 263.7795276 2209.3625984 4118.2440945 263.7795276 2214.0118110 2998.6362205 263.7795276 2214.2830709 4118.7244094 263.7795276 2219.4811024 2990.8618110 263.7795276 2217.9082677 2982.5759843 263.7795276 2220.1283465 2942.0440945 263.7795276 1739.1062992 2945.7897638 263.7795276 1735.9846457 2937.8334646 263.7795276 1741.5685039 2933.2763780 263.7795276 1743.3043307 2928.4952756 263.7795276 1744.2661417 6140.2755906 263.7795276 3695.4377953 7096.6535433 263.7795276 3722.0244094 7179.5118110 263.7795276 3688.0976378 6145.7480315 263.7795276 3695.9157480 6151.0472441 263.7795276 3697.3370079 6156.0236220 263.7795276 3699.6570866 6160.5236220 263.7795276 3702.8059055 6164.4055118 263.7795276 3706.6877953 6167.5551181 263.7795276 3711.1850394 6169.8740157 263.7795276 3716.1610236 6171.2952756 263.7795276 3721.4637795 6171.7716535 263.7795276 3726.9330709 7092.5629921 263.7795276 3724.5098425 7088.9251969 263.7795276 3727.6236220 6171.2952756 263.7795276 3732.4023622 7085.8385827 263.7795276 3731.2854331 7083.3858268 263.7795276 3735.3964567 6169.8740157 263.7795276 3737.7055118 7081.6259843 263.7795276 3739.8511811 6167.5551181 263.7795276 3742.6811024 7080.6141732 263.7795276 3744.5307087 6164.4055118 263.7795276 3747.1783465 7080.3700787 263.7795276 3749.3129921 6160.5236220 263.7795276 3751.0606299 7080.9015748 263.7795276 3754.0716535 6156.0236220 263.7795276 3754.2102362 7082.1929134 263.7795276 3758.6818898 6151.0472441 263.7795276 3756.5303150 6145.7480315 263.7795276 3757.9507874 6140.2755906 263.7795276 3758.4295276 7203.7362205 263.7795276 4461.7401575 7654.6102362 263.7795276 4489.8543307 7603.4685039 263.7795276 4460.3267717 7214.3307087 263.7795276 4462.6692913 7224.6062992 263.7795276 4465.4212598 7234.2480315 263.7795276 4469.9173228 7242.9606299 263.7795276 4476.0157480 7250.4803150 263.7795276 4483.5393701 7256.5826772 263.7795276 4492.2519685 7664.2519685 263.7795276 4494.3503937 7261.0787402 263.7795276 4501.8937008 7674.5275591 263.7795276 4497.1023622 7676.2913386 263.7795276 4497.2598425 7685.1220472 263.7795276 4498.0314961 7135.2007874 263.7795276 4053.2952756 7361.2165354 263.7795276 4053.1496063 7127.6771654 263.7795276 4045.7716535 7334.8818898 263.7795276 4055.4527559 7141.2992126 263.7795276 4062.0078740 7327.0314961 263.7795276 4056.1417323 7293.8897638 263.7795276 4065.0196850 7145.7952756 263.7795276 4071.6496063 7262.7913386 263.7795276 4079.5236220 7148.5472441 263.7795276 4081.9212598 7234.6811024 263.7795276 4099.2047244 7149.4763780 263.7795276 4092.5196850 7148.5472441 263.7795276 4103.1181102 7210.4212598 263.7795276 4123.4685039 7145.7952756 263.7795276 4113.3897638 7141.2992126 263.7795276 4123.0314961 7135.2007874 263.7795276 4131.7440945 7190.7401575 263.7795276 4151.5748031 7127.6771654 263.7795276 4139.2677165 7118.9645669 263.7795276 4145.3661417 7109.3228346 263.7795276 4149.8622047 7099.0472441 263.7795276 4152.6181102 7176.2362205 263.7795276 4182.6732283 7088.4527559 263.7795276 4153.5433071 6631.7992126 263.7795276 4162.8149606 6641.1377953 263.7795276 4178.8700787 6647.8425197 263.7795276 4196.1889764 7170.2322835 263.7795276 4205.0866142 6651.7480315 263.7795276 4214.3464567 7167.3543307 263.7795276 4215.8188976 6652.7598425 263.7795276 4232.8897638 7164.3661417 263.7795276 4250.0000000 6800.9803150 263.7795276 4253.6023622 6796.2125984 263.7795276 4254.0196850 6791.5708661 263.7795276 4255.2047244 6787.1850394 263.7795276 4257.1220472 6783.1653543 263.7795276 4259.7244094 6659.0984252 263.7795276 4346.0826772 6978.5039370 263.7795276 4252.4606299 6779.6181102 263.7795276 4262.9448819 6776.6417323 263.7795276 4266.6929134 6774.3070866 263.7795276 4270.8740157 6772.6771654 263.7795276 4275.3779528 6771.7992126 263.7795276 4280.0826772 6771.6968504 263.7795276 4284.8700787 6783.7440945 263.7795276 4373.5905512 6683.4055118 263.7795276 4456.8188976 6809.0629921 263.7795276 4459.4685039 6725.0590551 263.7795276 4562.2598425 6847.0748031 263.7795276 4540.5354331 6896.9055118 263.7795276 4614.9212598 6782.9960630 263.7795276 4659.7086614 6900.1692913 263.7795276 4618.4409449 6903.9566929 263.7795276 4621.3818898 6908.1692913 263.7795276 4623.6771654 6912.7007874 263.7795276 4625.2559055 6917.4251969 263.7795276 4626.0787402 6922.2244094 263.7795276 4626.1259843 7143.6968504 263.7795276 4626.7559055 7153.3346457 263.7795276 4631.2519685 7163.6102362 263.7795276 4634.0039370 7174.2086614 263.7795276 4634.9291339 7256.5826772 263.7795276 4553.2755906 7531.7795276 263.7795276 4562.5669291 7536.6653543 263.7795276 4562.2834646 7227.0551181 263.7795276 4604.4173228 7527.0039370 263.7795276 4563.6496063 7526.4527559 263.7795276 4563.8740157 7522.4724409 263.7795276 4565.5078740 7484.7244094 263.7795276 4581.5708661 7476.7125984 263.7795276 4584.9763780 7428.6811024 263.7795276 4597.8503937 7420.0393701 263.7795276 4598.9015748 7379.3188976 263.7795276 4603.8661417 7374.4645669 263.7795276 4604.5236220 7220.9527559 263.7795276 4613.1338583 7369.7874016 263.7795276 4605.9685039 7365.4133858 263.7795276 4608.1692913 7361.4645669 263.7795276 4611.0629921 7358.0472441 263.7795276 4614.5708661 7213.4330709 263.7795276 4620.6535433 7355.2559055 263.7795276 4618.5944882 7262.8110236 263.7795276 4778.7125984 7204.7204724 263.7795276 4626.7559055 7195.0787402 263.7795276 4631.2519685 7184.8031496 263.7795276 4634.0039370 6793.7559055 263.7795276 4672.7952756 6806.2834646 263.7795276 4684.2086614 6820.3110236 263.7795276 4693.7125984 7137.8464567 263.7795276 4877.0433071 7260.6338583 263.7795276 4783.3740157 7259.3031496 263.7795276 4788.3464567 7258.8543307 263.7795276 4793.4763780 7259.3031496 263.7795276 4798.6023622 7260.6338583 263.7795276 4803.5748031 7262.8110236 263.7795276 4808.2401575 7265.7637795 263.7795276 4812.4566929 7269.4015748 263.7795276 4816.0944882 7273.6181102 263.7795276 4819.0472441 7274.8110236 263.7795276 4819.7362205 7278.9921260 263.7795276 4821.7283465 7283.4370079 263.7795276 4823.0472441 7288.0314961 263.7795276 4823.6496063 7745.3661417 263.7795276 4824.8818898 7315.9724409 263.7795276 4939.9370079 7226.3503937 263.7795276 4928.1377953 7229.1771654 263.7795276 4929.4842520 7243.0787402 263.7795276 4936.1141732 7260.8464567 263.7795276 4941.3818898 7297.7480315 263.7795276 4943.3149606 7279.2204724 263.7795276 4943.7992126 7936.0984252 263.7795276 3865.8503937 7558.8188976 263.7795276 3865.9960630 7942.5433071 263.7795276 3889.9102362 7569.0944882 263.7795276 3868.7500000 7578.7362205 263.7795276 3873.2448819 7587.4488189 263.7795276 3879.3464567 7795.4606299 263.7795276 3885.6590551 7800.5905512 263.7795276 3886.1074803 7805.5590551 263.7795276 3887.4397638 7810.2244094 263.7795276 3889.6149606 7811.4173228 263.7795276 3890.3039370 7815.2362205 263.7795276 3892.9283465 7818.5984252 263.7795276 3896.1177165 8001.9960630 263.7795276 4111.7834646 7821.4173228 263.7795276 3899.7940945 7822.5118110 263.7795276 3901.8027559 7823.6299213 263.7795276 3903.8657480 7825.1771654 263.7795276 3908.2334646 7839.1574803 263.7795276 3960.4133858 7857.7480315 263.7795276 4029.7874016 7918.4763780 263.7795276 4256.4409449 8002.4015748 263.7795276 4113.3031496 8051.1535433 263.7795276 4295.2440945 7933.9015748 263.7795276 4314.0000000 8054.5314961 263.7795276 4313.4645669 8055.0157480 263.7795276 4331.9921260 7934.7440945 263.7795276 4318.5551181 7934.8070866 263.7795276 4320.9015748 7934.8661417 263.7795276 4323.1850394 7934.2637795 263.7795276 4327.7795276 7932.9448819 263.7795276 4332.2204724 8052.5944882 263.7795276 4350.3700787 7930.9527559 263.7795276 4336.4055118 7930.2637795 263.7795276 4337.5984252 7927.3110236 263.7795276 4341.8149606 7923.6692913 263.7795276 4345.4527559 7919.4527559 263.7795276 4348.4055118 7914.7913386 263.7795276 4350.5826772 8047.3307087 263.7795276 4368.1377953 7909.8188976 263.7795276 4351.9133858 7904.6889764 263.7795276 4352.3622047 7664.4921260 263.7795276 4354.6338583 7715.6338583 263.7795276 4384.1614173 8040.7007874 263.7795276 4382.0393701 8039.3543307 263.7795276 4384.8661417 7724.3464567 263.7795276 4390.2598425 7731.8700787 263.7795276 4397.7834646 7899.9212598 263.7795276 4626.3700787 7732.8858268 263.7795276 4399.2362205 7737.9724409 263.7795276 4406.4960630 7742.4645669 263.7795276 4416.1377953 7745.2204724 263.7795276 4426.4094488 7746.1456693 263.7795276 4437.0078740 7745.2204724 263.7795276 4447.6062992 7742.4645669 263.7795276 4457.8779528 7737.9724409 263.7795276 4467.5196850 7731.8700787 263.7795276 4476.2322835 7724.3464567 263.7795276 4483.7559055 7715.6338583 263.7795276 4489.8543307 7705.9960630 263.7795276 4494.3503937 7695.7204724 263.7795276 4497.1062992 7263.8307087 263.7795276 4512.1653543 7541.5314961 263.7795276 4562.8149606 7264.7598425 263.7795276 4522.7637795 7263.8307087 263.7795276 4533.3622047 7261.0787402 263.7795276 4543.6338583 7546.2480315 263.7795276 4564.1417323 7550.6771654 263.7795276 4566.2322835 7710.7913386 263.7795276 4658.6732283 7881.4645669 263.7795276 4658.3346457 7715.0078740 263.7795276 4661.6259843 7718.6496063 263.7795276 4665.2677165 7817.0826772 263.7795276 4769.8503937 7721.6023622 263.7795276 4669.4842520 7723.7755906 263.7795276 4674.1456693 7724.9330709 263.7795276 4678.4685039 7725.1102362 263.7795276 4679.1181102 7725.5551181 263.7795276 4684.2480315 7725.1102362 263.7795276 4689.3740157 7723.7755906 263.7795276 4694.3464567 7721.6023622 263.7795276 4699.0118110 7720.9133858 263.7795276 4700.2047244 7718.2874016 263.7795276 4704.0236220 7715.0984252 263.7795276 4707.3818898 7711.4212598 263.7795276 4710.2047244 7709.4133858 263.7795276 4711.2952756 7707.3503937 263.7795276 4712.4133858 7702.9842520 263.7795276 4713.9606299 7645.4251969 263.7795276 4729.3818898 7297.2165354 263.7795276 4822.6850394 7806.5866142 263.7795276 4785.1259843 7793.8267717 263.7795276 4798.5669291 7779.1259843 263.7795276 4809.8503937 7762.8346457 263.7795276 4818.6929134 7292.6614173 263.7795276 4823.5314961 6983.3818898 263.7795276 4252.8346457 7167.3543307 263.7795276 4284.1811024 6988.1377953 263.7795276 4254.0078740 6992.6299213 263.7795276 4255.9527559 6996.7362205 263.7795276 4258.6141732 7000.3503937 263.7795276 4261.9173228 7003.3700787 263.7795276 4265.7716535 7005.7086614 263.7795276 4270.0708661 7007.3070866 263.7795276 4274.6968504 7008.1181102 263.7795276 4279.5275591 7014.9015748 263.7795276 4324.9409449 7176.2362205 263.7795276 4317.3267717 7190.7401575 263.7795276 4348.4251969 7027.5000000 263.7795276 4369.0984252 7210.4212598 263.7795276 4376.5314961 7045.7047244 263.7795276 4411.2559055 7221.9685039 263.7795276 4388.0826772 7234.6811024 263.7795276 4400.7952756 7262.7913386 263.7795276 4420.4763780 7047.5669291 263.7795276 4415.7874016 7048.6496063 263.7795276 4420.5629921 7293.8897638 263.7795276 4434.9803150 7048.9330709 263.7795276 4425.4488189 7048.4015748 263.7795276 4430.3188976 7047.0748031 263.7795276 4435.0314961 7311.2559055 263.7795276 4439.6338583 7044.9842520 263.7795276 4439.4606299 7193.1377953 263.7795276 4462.6692913 7182.8622047 263.7795276 4465.4212598 7173.2244094 263.7795276 4469.9173228 6945.6929134 263.7795276 4611.4370079 7327.0314961 263.7795276 4443.8582677 7361.2165354 263.7795276 4446.8503937 7594.7559055 263.7795276 4454.2283465 7164.5118110 263.7795276 4476.0157480 7156.9881890 263.7795276 4483.5393701 7150.8858268 263.7795276 4492.2519685 7121.3582677 263.7795276 4543.3937008 7116.8661417 263.7795276 4553.0354331 7114.1102362 263.7795276 4563.3110236 7113.1850394 263.7795276 4573.9055118 7114.1102362 263.7795276 4584.5039370 7116.8661417 263.7795276 4594.7795276 7121.3582677 263.7795276 4604.4173228 7127.4606299 263.7795276 4613.1338583 6942.9645669 263.7795276 4615.3858268 7134.9842520 263.7795276 4620.6535433 6939.6338583 263.7795276 4618.8385827 6935.7874016 263.7795276 4621.7047244 6931.5275591 263.7795276 4623.9094488 6926.9645669 263.7795276 4625.3976378 7633.9803150 263.7795276 4346.4566929 7889.9251969 263.7795276 4348.4055118 7871.5196850 263.7795276 4337.7755906 7644.5748031 263.7795276 4347.3818898 7654.8503937 263.7795276 4350.1377953 7894.5905512 263.7795276 4350.5826772 7899.5629921 263.7795276 4351.9133858 7594.9685039 263.7795276 3886.8677165 7790.3346457 263.7795276 3886.1074803 7785.3622047 263.7795276 3887.4397638 7601.0708661 263.7795276 3895.5811024 7780.6968504 263.7795276 3889.6149606 7776.4803150 263.7795276 3892.5673228 7772.8425197 263.7795276 3896.2070866 7605.5669291 263.7795276 3905.2216535 7769.8897638 263.7795276 3900.4228346 7761.2322835 263.7795276 3915.4220472 7608.3188976 263.7795276 3915.4968504 7677.4448819 263.7795276 4060.5393701 7609.2480315 263.7795276 3926.0933071 7608.3188976 263.7795276 3936.6897638 7605.5669291 263.7795276 3946.9645669 7601.0708661 263.7795276 3956.6062992 7571.5433071 263.7795276 4007.7480315 7565.4409449 263.7795276 4016.4606299 7557.9212598 263.7795276 4023.9842520 7549.2086614 263.7795276 4030.0826772 7539.5669291 263.7795276 4034.5787402 7529.2913386 263.7795276 4037.3307087 7518.6968504 263.7795276 4038.2598425 7118.9645669 263.7795276 4039.6732283 7395.3976378 263.7795276 4056.1417323 7428.5433071 263.7795276 4065.0196850 7675.3582677 263.7795276 4064.9685039 7674.0314961 263.7795276 4069.6811024 7459.6417323 263.7795276 4079.5236220 7673.5000000 263.7795276 4074.5511811 7673.7795276 263.7795276 4079.4370079 7674.8661417 263.7795276 4084.2125984 7487.7480315 263.7795276 4099.2047244 7676.7244094 263.7795276 4088.7440945 7692.7874016 263.7795276 4126.4921260 7500.4645669 263.7795276 4111.9173228 7512.0118110 263.7795276 4123.4685039 7531.6929134 263.7795276 4151.5748031 7696.1929134 263.7795276 4134.5000000 7709.0629921 263.7795276 4182.5354331 7546.1968504 263.7795276 4182.6732283 7710.1181102 263.7795276 4191.1771654 7555.0748031 263.7795276 4215.8188976 7715.0826772 263.7795276 4231.8976378 7558.0669291 263.7795276 4250.0000000 7715.6574803 263.7795276 4236.1614173 7715.7401575 263.7795276 4236.7519685 7717.1850394 263.7795276 4241.4291339 7719.3858268 263.7795276 4245.8031496 7722.2795276 263.7795276 4249.7519685 7725.7874016 263.7795276 4253.1692913 7555.0748031 263.7795276 4284.1811024 7729.8110236 263.7795276 4255.9606299 7546.1968504 263.7795276 4317.3267717 7531.6929134 263.7795276 4348.4251969 7623.3818898 263.7795276 4347.3818898 7613.1102362 263.7795276 4350.1377953 7512.0118110 263.7795276 4376.5314961 7603.4685039 263.7795276 4354.6338583 7594.7559055 263.7795276 4360.7322835 7587.2322835 263.7795276 4368.2559055 7581.1299213 263.7795276 4376.9685039 7495.6062992 263.7795276 4392.9409449 7576.6377953 263.7795276 4386.6102362 7573.8818898 263.7795276 4396.8818898 7487.7480315 263.7795276 4400.7952756 7572.9566929 263.7795276 4407.4803150 7459.6417323 263.7795276 4420.4763780 7573.8818898 263.7795276 4418.0787402 7576.6377953 263.7795276 4428.3503937 7428.5433071 263.7795276 4434.9803150 7581.1299213 263.7795276 4437.9921260 7395.3976378 263.7795276 4443.8582677 7586.2165354 263.7795276 4445.2519685 7387.5511811 263.7795276 4444.5472441 7587.2322835 263.7795276 4446.7047244 7037.3110236 263.7795276 4001.9685039 7465.8464567 263.7795276 4007.7480315 7461.3543307 263.7795276 3998.1062992 7047.9055118 263.7795276 4002.8937008 7058.1811024 263.7795276 4005.6496063 7067.8188976 263.7795276 4010.1456693 7471.9488189 263.7795276 4016.4606299 7479.4724409 263.7795276 4023.9842520 7488.1850394 263.7795276 4030.0826772 7497.8228346 263.7795276 4034.5787402 7508.0984252 263.7795276 4037.3307087 3986.7913386 263.7795276 2455.7582677 3981.4881890 263.7795276 2457.1791339 3976.5118110 263.7795276 2459.4992126 3972.0157480 263.7795276 2462.6484252 3968.1338583 263.7795276 2466.5303150 3964.9842520 263.7795276 2471.0275591 3962.6653543 263.7795276 2476.0031496 3961.2440945 263.7795276 2481.3062992 3960.7637795 263.7795276 2486.7755906 3961.2440945 263.7795276 2492.2448819 3962.6653543 263.7795276 2497.5480315 3964.9842520 263.7795276 2502.5236220 3968.1338583 263.7795276 2507.0208661 3972.0157480 263.7795276 2510.9031496 3976.5118110 263.7795276 2514.0519685 6590.5984252 263.7795276 4126.0000000 3967.8188976 263.7795276 2466.9811024 3981.4881890 263.7795276 2516.3724409 3986.7913386 263.7795276 2517.7933071 6120.0314961 263.7795276 3751.0606299 6116.1496063 263.7795276 3747.1783465 6113.0000000 263.7795276 3742.6811024 6110.6811024 263.7795276 3737.7055118 6109.2598425 263.7795276 3732.4023622 6108.7795276 263.7795276 3726.9330709 6109.2598425 263.7795276 3721.4637795 6110.6811024 263.7795276 3716.1610236 6113.0000000 263.7795276 3711.1850394 6270.4803150 263.7795276 3438.4212598 6273.6299213 263.7795276 3433.9236220 6277.5118110 263.7795276 3430.0417323 6282.0078740 263.7795276 3426.8933071 6286.9842520 263.7795276 3424.5732283 6292.2874016 263.7795276 3423.1515748 6268.1614173 263.7795276 3443.3968504 6266.7401575 263.7795276 3448.7000000 6266.2598425 263.7795276 3454.1692913 6266.7401575 263.7795276 3459.6385827 6268.1614173 263.7795276 3464.9413386 6270.4803150 263.7795276 3469.9169291 6273.6299213 263.7795276 3474.4145669 6116.1496063 263.7795276 3706.6877953 6277.5118110 263.7795276 3478.2964567 6282.0078740 263.7795276 3481.4456693 6286.9842520 263.7795276 3483.7665354 6292.2874016 263.7795276 3485.1870079 6120.0314961 263.7795276 3702.8059055 6124.5275591 263.7795276 3699.6570866 6129.5039370 263.7795276 3697.3370079 6134.8070866 263.7795276 3695.9157480 6885.0314961 263.7795276 3653.1236220 6902.6732283 263.7795276 3658.9299213 6921.0039370 263.7795276 3661.8992126 6115.8346457 263.7795276 3707.1389764 6124.5275591 263.7795276 3754.2094488 6129.5039370 263.7795276 3756.5303150 6134.8070866 263.7795276 3757.9507874 7084.2165354 263.7795276 3763.0220472 7171.9881890 263.7795276 3917.3314961 7174.7559055 263.7795276 3921.3708661 7178.1496063 263.7795276 3924.8984252 7182.0787402 263.7795276 3927.8165354 7186.4370079 263.7795276 3930.0452756 7191.1062992 263.7795276 3931.5232283 7016.4370079 263.7795276 4005.6496063 7026.7125984 263.7795276 4002.8937008 7461.3543307 263.7795276 3956.3661417 7458.5984252 263.7795276 3966.6377953 7457.6732283 263.7795276 3977.2362205 7458.5984252 263.7795276 3987.8346457 7006.7952756 263.7795276 4010.1456693 6998.0826772 263.7795276 4016.2440945 6990.5629921 263.7795276 4023.7677165 6984.4606299 263.7795276 4032.4803150 6979.9645669 263.7795276 4042.1220472 6977.2125984 263.7795276 4052.3937008 6976.2834646 263.7795276 4062.9921260 6977.2125984 263.7795276 4073.5905512 6979.9645669 263.7795276 4083.8622047 6984.4606299 263.7795276 4093.5039370 6989.5472441 263.7795276 4100.7637795 6990.5629921 263.7795276 4102.2165354 6998.0826772 263.7795276 4109.7401575 7006.7952756 263.7795276 4115.8385827 7057.9409449 263.7795276 4145.3661417 6606.2125984 263.7795276 4136.0511811 6620.0629921 263.7795276 4148.4251969 7067.5826772 263.7795276 4149.8622047 7077.8543307 263.7795276 4152.6181102 - - - - - - - - - - 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 5 7 8 5 8 9 7 6 10 10 6 11 10 11 12 10 12 13 9 8 14 9 14 15 9 15 16 9 16 17 9 17 18 9 18 19 9 19 20 9 20 21 9 21 22 9 22 23 9 23 24 9 24 25 9 25 26 9 26 27 27 26 28 28 26 29 28 29 30 30 29 31 30 31 32 29 26 33 33 26 34 34 26 35 35 26 36 36 26 37 36 37 38 36 38 39 39 38 40 39 40 41 39 41 42 39 42 43 39 43 44 44 43 45 44 45 46 44 46 47 44 47 48 44 48 49 44 49 50 51 52 53 52 51 54 54 51 55 55 51 56 57 58 59 58 57 60 60 57 61 61 57 62 62 57 63 58 60 64 58 64 65 64 60 66 66 60 67 67 60 68 68 60 69 69 60 70 70 60 71 71 60 72 72 60 73 73 60 74 73 74 75 75 74 76 76 74 77 77 74 78 78 74 79 79 74 80 80 74 81 81 74 82 82 74 83 62 63 84 84 63 85 85 63 86 86 63 87 87 63 88 88 63 89 89 63 90 90 63 91 91 63 92 92 63 93 93 63 94 94 63 95 95 63 96 96 63 97 97 63 98 98 63 99 98 99 100 99 63 101 101 63 102 102 63 103 103 63 104 104 63 105 105 63 106 106 63 107 107 63 108 108 63 109 109 63 110 110 63 111 110 111 112 112 111 113 113 111 114 114 111 115 115 111 116 116 111 117 117 111 118 118 111 119 119 111 120 120 111 121 121 111 122 122 111 123 123 111 124 124 111 125 125 111 126 126 111 127 127 111 128 128 111 129 129 111 130 130 111 131 131 111 132 132 111 133 133 111 134 111 135 136 135 111 137 137 111 138 138 111 139 139 111 140 140 111 141 141 111 142 142 111 143 143 111 144 144 111 145 145 111 146 145 146 147 147 146 148 148 146 149 149 146 150 150 146 151 151 146 152 152 146 153 153 146 154 154 146 155 155 146 156 156 146 157 157 146 158 158 146 159 159 146 160 160 146 161 161 146 162 162 146 163 164 10 13 10 164 165 58 166 167 166 58 168 168 58 169 169 58 170 170 58 65 167 166 171 167 171 172 167 172 173 167 173 174 167 174 175 167 175 176 167 176 177 167 177 178 167 178 179 167 179 180 167 180 181 167 181 182 167 182 183 167 183 83 167 83 74 167 74 184 167 184 185 167 185 186 167 186 187 167 187 188 167 188 189 167 189 190 167 190 191 167 191 192 167 192 193 167 193 194 167 194 195 167 195 196 167 196 197 197 196 198 197 198 199 197 199 200 200 199 201 200 201 202 200 202 98 200 98 100 200 100 203 200 203 204 200 204 205 200 205 206 206 205 207 206 207 208 206 208 209 206 209 210 206 210 211 206 211 212 210 209 213 210 213 214 210 214 215 210 215 51 210 51 216 216 51 217 217 51 53 210 216 218 210 218 219 210 219 220 210 220 221 210 221 222 210 222 223 210 223 224 210 224 225 210 225 226 210 226 227 210 227 228 210 228 229 210 229 230 230 229 231 230 231 232 230 232 233 230 233 234 230 234 235 230 235 236 230 236 237 230 237 238 230 238 134 230 134 239 239 134 111 239 111 136 239 136 240 239 240 241 239 241 242 239 242 243 239 243 244 239 244 245 239 245 246 239 246 247 239 247 248 239 248 249 212 211 250 212 250 251 212 251 252 212 252 253 212 253 254 212 254 255 212 255 256 212 256 257 212 257 258 212 258 259 212 259 260 212 260 261 212 261 262 212 262 263 212 263 162 212 162 264 264 162 265 265 162 266 266 162 163 265 266 267 265 267 268 265 268 269 212 264 270 212 270 271 212 271 272 212 272 273 212 273 274 212 274 275 212 275 276 212 276 277 212 277 278 212 278 279 212 279 280 212 280 281 212 281 282 212 282 283 212 283 284 284 283 285 284 285 286 284 286 287 287 286 288 212 284 289 212 289 290 212 290 291 212 291 292 212 292 293 212 293 294 212 294 295 212 295 296 212 296 297 212 297 298 212 298 299 212 299 300 212 300 301 212 301 302 212 302 303 212 303 304 305 239 249 239 305 306 306 305 307 307 305 308 308 305 309 309 305 310 309 310 311 311 310 312 312 310 313 312 313 314 314 313 315 315 313 316 315 316 317 317 316 318 317 318 319 319 318 320 319 320 321 319 321 155 155 321 154 322 124 323 124 322 324 124 324 325 124 325 326 124 326 123 327 328 329 328 327 330 328 330 331 328 331 332 328 332 333 328 333 334 328 334 335 328 335 336 328 336 337 328 337 338 328 338 339 339 338 340 340 338 341 340 341 342 342 341 343 343 341 344 343 344 345 345 344 346 345 346 347 347 346 348 347 348 349 349 348 350 349 350 351 351 350 352 351 352 353 353 352 354 353 354 355 353 355 356 357 358 359 358 357 360 358 360 361 358 361 362 358 362 363 358 363 364 358 364 365 358 365 366 366 365 367 366 367 368 368 367 369 369 367 370 371 372 373 372 371 374 374 371 375 374 375 376 376 375 377 377 375 378 377 378 379 379 378 380 379 380 381 381 380 382 381 382 383 381 383 384 384 383 385 384 385 386 384 386 387 384 387 388 388 387 389 388 389 390 388 390 391 388 391 392 388 392 393 393 392 394 393 394 395 393 395 396 393 396 397 393 397 398 398 397 399 398 399 400 400 399 401 400 401 402 402 401 403 403 401 404 404 401 405 405 401 406 406 401 407 407 401 408 402 403 409 407 408 410 410 408 411 411 408 412 412 408 413 413 408 414 414 408 415 415 408 416 416 408 417 416 417 418 418 417 419 418 419 420 420 419 421 421 419 422 421 422 423 423 422 424 424 422 425 425 422 426 426 422 427 427 422 428 428 422 429 429 422 430 430 422 431 431 422 432 433 434 435 434 433 436 434 436 437 437 436 438 438 436 439 439 436 440 440 436 441 441 436 442 442 436 443 443 436 444 444 436 445 445 436 446 445 446 447 447 446 448 448 446 449 449 446 450 450 446 451 450 451 452 452 451 453 453 451 454 453 454 455 453 455 456 453 456 432 453 432 422 453 422 457 453 457 458 453 458 459 453 459 460 453 460 461 461 460 462 462 460 463 463 460 464 464 460 465 465 460 466 466 460 467 467 460 468 468 460 469 469 460 470 470 460 471 471 460 472 472 460 473 473 460 474 474 460 475 475 460 476 475 476 477 475 477 478 475 478 479 475 479 480 480 479 481 31 482 32 482 31 483 482 483 484 484 483 485 484 485 486 484 486 487 484 487 488 484 488 489 484 489 490 484 490 491 484 491 492 484 492 493 484 493 494 484 494 495 495 494 496 495 496 497 495 497 498 495 498 499 495 499 500 495 500 501 495 501 502 495 502 503 503 502 504 504 502 505 504 505 506 506 505 507 507 505 508 507 508 509 507 509 510 507 510 511 507 511 512 507 512 513 513 512 514 513 514 515 513 515 516 513 516 517 513 517 518 513 518 519 513 519 520 520 519 521 520 521 522 520 522 523 520 523 524 520 524 525 525 524 526 526 524 527 526 527 528 526 528 529 529 528 530 529 530 531 529 531 532 529 532 533 529 533 534 529 534 535 529 535 536 529 536 537 529 537 538 529 538 539 529 539 540 529 540 541 529 541 542 529 542 370 529 370 367 529 367 543 529 543 544 544 543 545 544 545 435 435 545 546 435 546 547 435 547 433 529 544 548 529 548 549 529 549 550 529 550 551 551 550 552 551 552 553 551 553 554 554 553 555 554 555 556 554 556 557 554 557 558 554 558 559 554 559 560 554 560 561 554 561 562 554 562 563 554 563 564 554 564 565 554 565 566 554 566 567 554 567 568 554 568 569 554 569 570 554 570 571 554 571 572 572 571 573 573 571 574 574 571 575 575 571 474 474 571 576 474 576 473 402 577 578 577 402 409 578 577 579 578 579 580 578 580 581 578 581 582 578 582 583 578 583 584 578 584 585 578 585 586 578 586 587 578 587 588 588 587 589 589 587 590 589 590 591 591 590 592 591 592 593 593 592 594 594 592 595 595 592 596 595 596 597 595 597 598 598 597 599 598 599 600 598 600 601 598 601 602 602 601 603 602 603 604 604 603 605 605 603 606 606 603 607 602 604 608 608 604 609 609 604 357 609 357 610 610 357 359 606 607 611 611 607 612 612 607 613 613 607 614 614 607 615 615 607 616 616 607 617 617 607 618 618 607 619 619 607 620 620 607 621 621 607 622 621 622 623 623 622 624 623 624 625 623 625 429 429 625 626 429 626 627 429 627 428 628 629 630 629 628 631 629 631 632 629 632 633 633 632 523 633 523 634 634 523 522 635 488 487 488 635 636 636 635 637 637 635 638 637 638 639 639 638 640 640 638 641 641 638 642 641 642 643 643 642 644 644 642 645 644 645 646 646 645 647 646 647 648 646 648 649 646 649 650 646 650 651 646 651 652 646 652 653 646 653 654 646 654 655 646 655 656 646 656 657 646 657 658 646 658 373 646 373 372 646 372 659 646 659 660 646 660 661 661 660 662 662 660 663 662 663 664 664 663 665 665 663 666 666 663 667 666 667 668 668 667 669 669 667 670 669 670 671 669 671 672 669 672 673 673 672 674 674 672 675 674 675 676 676 675 677 676 677 678 678 677 679 678 679 680 680 679 681 681 679 682 682 679 683 683 679 684 684 679 685 685 679 686 685 686 687 687 686 630 630 686 688 630 688 689 630 689 628 628 689 690 690 689 691 691 689 692 691 692 693 693 692 694 694 692 695 695 692 696 696 692 697 696 697 698 698 697 699 699 697 700 699 700 701 701 700 702 701 702 703 703 702 704 704 702 705 704 705 706 706 705 707 706 707 708 708 707 709 708 709 609 708 609 710 710 609 610 711 712 713 712 711 714 712 714 715 712 715 716 712 716 717 717 716 658 717 658 718 718 658 719 719 658 720 720 658 721 721 658 657 268 722 269 722 268 723 723 268 724 724 268 725 725 268 726 726 268 727 727 268 728 728 268 729 729 268 730 730 268 731 731 268 732 732 268 733 733 268 734 734 268 735 735 268 736 736 268 737 726 727 738 736 737 739 739 737 740 740 737 286 286 737 741 286 741 742 286 742 743 286 743 744 286 744 745 286 745 746 286 746 747 286 747 748 286 748 749 286 749 750 286 750 751 286 751 752 286 752 753 286 753 754 286 754 755 286 755 288 750 749 756 756 749 757 757 749 758 758 749 759 759 749 760 760 749 761 761 749 762 762 749 763 762 763 764 764 763 765 765 763 766 766 763 767 767 763 304 304 763 768 304 768 769 304 769 770 304 770 771 304 771 327 304 327 212 212 327 772 772 327 773 773 327 774 774 327 164 164 327 165 165 327 329 763 749 775 741 737 776 776 737 777 777 737 778 778 737 356 356 737 353 353 737 779 779 737 780 780 737 781 781 737 782 782 737 783 783 737 784 784 737 785 785 737 50 50 737 786 50 786 787 50 787 44 44 787 788 788 787 711 788 711 789 789 711 790 790 711 791 791 711 713 786 737 792 792 737 793 793 737 794 794 737 795 795 737 796 796 737 797 797 737 798 798 737 799 799 737 800 800 737 801 801 737 802 802 737 803 803 737 804 804 737 805 805 737 806 806 737 807 806 807 808 806 808 809 809 808 395 809 395 810 810 395 394

-
-
-
- - - - 7795.4606299 47.2440945 3885.6590551 7594.9685039 47.2440945 3886.8677165 7587.4488189 47.2440945 3879.3464567 7790.3346457 47.2440945 3886.1074803 7785.3622047 47.2440945 3887.4397638 7601.0708661 47.2440945 3895.5811024 7780.6968504 47.2440945 3889.6149606 7776.4803150 47.2440945 3892.5673228 7772.8425197 47.2440945 3896.2070866 7605.5669291 47.2440945 3905.2216535 7769.8897638 47.2440945 3900.4228346 7761.2322835 47.2440945 3915.4220472 7608.3188976 47.2440945 3915.4968504 7677.4448819 47.2440945 4060.5393701 7609.2480315 47.2440945 3926.0933071 7608.3188976 47.2440945 3936.6897638 7605.5669291 47.2440945 3946.9645669 7601.0708661 47.2440945 3956.6062992 7571.5433071 47.2440945 4007.7480315 7565.4409449 47.2440945 4016.4606299 7557.9212598 47.2440945 4023.9842520 7549.2086614 47.2440945 4030.0826772 7539.5669291 47.2440945 4034.5787402 7529.2913386 47.2440945 4037.3307087 7518.6968504 47.2440945 4038.2598425 7118.9645669 47.2440945 4039.6732283 7127.6771654 47.2440945 4045.7716535 7361.2165354 47.2440945 4053.1496063 7395.3976378 47.2440945 4056.1417323 7428.5433071 47.2440945 4065.0196850 7675.3582677 47.2440945 4064.9685039 7674.0314961 47.2440945 4069.6811024 7459.6417323 47.2440945 4079.5236220 7673.5000000 47.2440945 4074.5511811 7673.7795276 47.2440945 4079.4370079 7674.8661417 47.2440945 4084.2125984 7487.7480315 47.2440945 4099.2047244 7676.7244094 47.2440945 4088.7440945 7692.7874016 47.2440945 4126.4921260 7500.4645669 47.2440945 4111.9173228 7512.0118110 47.2440945 4123.4685039 7531.6929134 47.2440945 4151.5748031 7696.1929134 47.2440945 4134.5000000 7709.0629921 47.2440945 4182.5354331 7546.1968504 47.2440945 4182.6732283 7710.1181102 47.2440945 4191.1771654 7555.0748031 47.2440945 4215.8188976 7715.0826772 47.2440945 4231.8976378 7558.0669291 47.2440945 4250.0000000 7715.6574803 47.2440945 4236.1614173 7715.7401575 47.2440945 4236.7519685 7717.1850394 47.2440945 4241.4291339 7719.3858268 47.2440945 4245.8031496 7722.2795276 47.2440945 4249.7519685 7725.7874016 47.2440945 4253.1692913 7555.0748031 47.2440945 4284.1811024 7729.8110236 47.2440945 4255.9606299 7871.5196850 47.2440945 4337.7755906 7546.1968504 47.2440945 4317.3267717 7531.6929134 47.2440945 4348.4251969 7633.9803150 47.2440945 4346.4566929 7623.3818898 47.2440945 4347.3818898 7613.1102362 47.2440945 4350.1377953 7512.0118110 47.2440945 4376.5314961 7603.4685039 47.2440945 4354.6338583 7594.7559055 47.2440945 4360.7322835 7587.2322835 47.2440945 4368.2559055 7581.1299213 47.2440945 4376.9685039 7495.6062992 47.2440945 4392.9409449 7576.6377953 47.2440945 4386.6102362 7573.8818898 47.2440945 4396.8818898 7487.7480315 47.2440945 4400.7952756 7572.9566929 47.2440945 4407.4803150 7459.6417323 47.2440945 4420.4763780 7573.8818898 47.2440945 4418.0787402 7576.6377953 47.2440945 4428.3503937 7428.5433071 47.2440945 4434.9803150 7581.1299213 47.2440945 4437.9921260 7395.3976378 47.2440945 4443.8582677 7586.2165354 47.2440945 4445.2519685 7387.5511811 47.2440945 4444.5472441 7361.2165354 47.2440945 4446.8503937 7587.2322835 47.2440945 4446.7047244 7594.7559055 47.2440945 4454.2283465 7654.6102362 47.2440945 4489.8543307 7203.7362205 47.2440945 4461.7401575 7603.4685039 47.2440945 4460.3267717 7214.3307087 47.2440945 4462.6692913 7224.6062992 47.2440945 4465.4212598 7234.2480315 47.2440945 4469.9173228 7242.9606299 47.2440945 4476.0157480 7250.4803150 47.2440945 4483.5393701 7256.5826772 47.2440945 4492.2519685 7664.2519685 47.2440945 4494.3503937 7261.0787402 47.2440945 4501.8937008 7674.5275591 47.2440945 4497.1023622 7676.2913386 47.2440945 4497.2598425 7685.1220472 47.2440945 4498.0314961 7889.9251969 47.2440945 4348.4055118 7644.5748031 47.2440945 4347.3818898 7654.8503937 47.2440945 4350.1377953 7894.5905512 47.2440945 4350.5826772 7664.4921260 47.2440945 4354.6338583 7899.5629921 47.2440945 4351.9133858 7904.6889764 47.2440945 4352.3622047 3271.2614173 47.2440945 2342.1566929 3976.5118110 47.2440945 2514.0519685 6590.5984252 47.2440945 4126.0000000 3972.0157480 47.2440945 2510.9031496 3968.1338583 47.2440945 2507.0208661 3964.9842520 47.2440945 2502.5236220 3962.6653543 47.2440945 2497.5480315 3961.2440945 47.2440945 2492.2448819 3960.7637795 47.2440945 2486.7755906 3961.2440945 47.2440945 2481.3062992 3962.6653543 47.2440945 2476.0031496 3964.9842520 47.2440945 2471.0275591 3968.1338583 47.2440945 2466.5303150 3972.0157480 47.2440945 2462.6484252 3976.5118110 47.2440945 2459.4992126 3981.4881890 47.2440945 2457.1791339 3986.7913386 47.2440945 2455.7582677 3992.2598425 47.2440945 2455.2795276 3967.8188976 47.2440945 2466.9811024 3981.4881890 47.2440945 2516.3724409 3986.7913386 47.2440945 2517.7933071 3992.2598425 47.2440945 2518.2716535 6120.0314961 47.2440945 3751.0606299 6116.1496063 47.2440945 3747.1783465 6113.0000000 47.2440945 3742.6811024 6110.6811024 47.2440945 3737.7055118 6109.2598425 47.2440945 3732.4023622 6108.7795276 47.2440945 3726.9330709 6109.2598425 47.2440945 3721.4637795 6110.6811024 47.2440945 3716.1610236 6113.0000000 47.2440945 3711.1850394 6270.4803150 47.2440945 3438.4212598 6273.6299213 47.2440945 3433.9236220 6277.5118110 47.2440945 3430.0417323 6282.0078740 47.2440945 3426.8933071 6286.9842520 47.2440945 3424.5732283 6292.2874016 47.2440945 3423.1515748 6297.7559055 47.2440945 3422.6732283 6268.1614173 47.2440945 3443.3968504 6266.7401575 47.2440945 3448.7000000 6266.2598425 47.2440945 3454.1692913 6266.7401575 47.2440945 3459.6385827 6268.1614173 47.2440945 3464.9413386 6270.4803150 47.2440945 3469.9169291 6273.6299213 47.2440945 3474.4145669 6116.1496063 47.2440945 3706.6877953 6277.5118110 47.2440945 3478.2964567 6282.0078740 47.2440945 3481.4456693 6286.9842520 47.2440945 3483.7665354 6292.2874016 47.2440945 3485.1870079 6297.7559055 47.2440945 3485.6653543 6120.0314961 47.2440945 3702.8059055 6124.5275591 47.2440945 3699.6570866 6129.5039370 47.2440945 3697.3370079 6134.8070866 47.2440945 3695.9157480 6140.2755906 47.2440945 3695.4377953 6868.5196850 47.2440945 3644.6240157 6885.0314961 47.2440945 3653.1236220 6902.6732283 47.2440945 3658.9299213 6921.0039370 47.2440945 3661.8992126 6939.5748031 47.2440945 3661.9582677 7266.5472441 47.2440945 3667.0862205 7179.5118110 47.2440945 3688.0976378 6115.8346457 47.2440945 3707.1389764 6124.5275591 47.2440945 3754.2094488 6129.5039370 47.2440945 3756.5303150 6134.8070866 47.2440945 3757.9507874 6140.2755906 47.2440945 3758.4295276 7082.1929134 47.2440945 3758.6818898 7084.2165354 47.2440945 3763.0220472 7171.9881890 47.2440945 3917.3314961 7174.7559055 47.2440945 3921.3708661 7178.1496063 47.2440945 3924.8984252 7182.0787402 47.2440945 3927.8165354 7186.4370079 47.2440945 3930.0452756 7191.1062992 47.2440945 3931.5232283 7195.9527559 47.2440945 3932.2106299 7016.4370079 47.2440945 4005.6496063 7026.7125984 47.2440945 4002.8937008 7465.8464567 47.2440945 3946.7244094 7461.3543307 47.2440945 3956.3661417 7037.3110236 47.2440945 4001.9685039 7458.5984252 47.2440945 3966.6377953 7457.6732283 47.2440945 3977.2362205 7458.5984252 47.2440945 3987.8346457 7461.3543307 47.2440945 3998.1062992 7006.7952756 47.2440945 4010.1456693 6998.0826772 47.2440945 4016.2440945 6990.5629921 47.2440945 4023.7677165 6984.4606299 47.2440945 4032.4803150 6979.9645669 47.2440945 4042.1220472 6977.2125984 47.2440945 4052.3937008 6976.2834646 47.2440945 4062.9921260 6977.2125984 47.2440945 4073.5905512 6979.9645669 47.2440945 4083.8622047 6984.4606299 47.2440945 4093.5039370 6989.5472441 47.2440945 4100.7637795 6990.5629921 47.2440945 4102.2165354 6998.0826772 47.2440945 4109.7401575 7006.7952756 47.2440945 4115.8385827 7057.9409449 47.2440945 4145.3661417 6606.2125984 47.2440945 4136.0511811 6620.0629921 47.2440945 4148.4251969 7067.5826772 47.2440945 4149.8622047 6631.7992126 47.2440945 4162.8149606 7077.8543307 47.2440945 4152.6181102 7088.4527559 47.2440945 4153.5433071 7164.3661417 47.2440945 4250.0000000 6983.3818898 47.2440945 4252.8346457 6978.5039370 47.2440945 4252.4606299 7167.3543307 47.2440945 4284.1811024 6988.1377953 47.2440945 4254.0078740 6992.6299213 47.2440945 4255.9527559 6996.7362205 47.2440945 4258.6141732 7000.3503937 47.2440945 4261.9173228 7003.3700787 47.2440945 4265.7716535 7005.7086614 47.2440945 4270.0708661 7007.3070866 47.2440945 4274.6968504 7008.1181102 47.2440945 4279.5275591 7014.9015748 47.2440945 4324.9409449 7176.2362205 47.2440945 4317.3267717 7190.7401575 47.2440945 4348.4251969 7027.5000000 47.2440945 4369.0984252 7210.4212598 47.2440945 4376.5314961 7045.7047244 47.2440945 4411.2559055 7221.9685039 47.2440945 4388.0826772 7234.6811024 47.2440945 4400.7952756 7262.7913386 47.2440945 4420.4763780 7047.5669291 47.2440945 4415.7874016 7048.6496063 47.2440945 4420.5629921 7293.8897638 47.2440945 4434.9803150 7048.9330709 47.2440945 4425.4488189 7048.4015748 47.2440945 4430.3188976 7047.0748031 47.2440945 4435.0314961 7311.2559055 47.2440945 4439.6338583 7044.9842520 47.2440945 4439.4606299 7193.1377953 47.2440945 4462.6692913 7182.8622047 47.2440945 4465.4212598 7173.2244094 47.2440945 4469.9173228 6945.6929134 47.2440945 4611.4370079 7327.0314961 47.2440945 4443.8582677 7164.5118110 47.2440945 4476.0157480 7156.9881890 47.2440945 4483.5393701 7150.8858268 47.2440945 4492.2519685 7121.3582677 47.2440945 4543.3937008 7116.8661417 47.2440945 4553.0354331 7114.1102362 47.2440945 4563.3110236 7113.1850394 47.2440945 4573.9055118 7114.1102362 47.2440945 4584.5039370 7116.8661417 47.2440945 4594.7795276 7121.3582677 47.2440945 4604.4173228 7127.4606299 47.2440945 4613.1338583 6942.9645669 47.2440945 4615.3858268 7134.9842520 47.2440945 4620.6535433 6939.6338583 47.2440945 4618.8385827 6935.7874016 47.2440945 4621.7047244 7143.6968504 47.2440945 4626.7559055 6931.5275591 47.2440945 4623.9094488 6926.9645669 47.2440945 4625.3976378 6922.2244094 47.2440945 4626.1259843 7936.0984252 47.2440945 3865.8503937 7548.2244094 47.2440945 3865.0692913 7929.9094488 47.2440945 3848.3795276 7558.8188976 47.2440945 3865.9960630 7942.5433071 47.2440945 3889.9102362 7569.0944882 47.2440945 3868.7500000 7578.7362205 47.2440945 3873.2448819 7800.5905512 47.2440945 3886.1074803 7805.5590551 47.2440945 3887.4397638 7810.2244094 47.2440945 3889.6149606 7811.4173228 47.2440945 3890.3039370 7815.2362205 47.2440945 3892.9283465 7818.5984252 47.2440945 3896.1177165 8001.9960630 47.2440945 4111.7834646 7821.4173228 47.2440945 3899.7940945 7822.5118110 47.2440945 3901.8027559 7823.6299213 47.2440945 3903.8657480 7825.1771654 47.2440945 3908.2334646 7839.1574803 47.2440945 3960.4133858 7857.7480315 47.2440945 4029.7874016 7918.4763780 47.2440945 4256.4409449 8002.4015748 47.2440945 4113.3031496 8051.1535433 47.2440945 4295.2440945 7933.9015748 47.2440945 4314.0000000 8054.5314961 47.2440945 4313.4645669 8055.0157480 47.2440945 4331.9921260 7934.7440945 47.2440945 4318.5551181 7934.8070866 47.2440945 4320.9015748 7934.8661417 47.2440945 4323.1850394 7934.2637795 47.2440945 4327.7795276 7932.9448819 47.2440945 4332.2204724 8052.5944882 47.2440945 4350.3700787 7930.9527559 47.2440945 4336.4055118 7930.2637795 47.2440945 4337.5984252 7927.3110236 47.2440945 4341.8149606 7923.6692913 47.2440945 4345.4527559 7919.4527559 47.2440945 4348.4055118 7914.7913386 47.2440945 4350.5826772 8047.3307087 47.2440945 4368.1377953 7909.8188976 47.2440945 4351.9133858 7715.6338583 47.2440945 4384.1614173 8040.7007874 47.2440945 4382.0393701 8039.3543307 47.2440945 4384.8661417 7724.3464567 47.2440945 4390.2598425 7731.8700787 47.2440945 4397.7834646 7899.9212598 47.2440945 4626.3700787 7732.8858268 47.2440945 4399.2362205 7737.9724409 47.2440945 4406.4960630 7742.4645669 47.2440945 4416.1377953 7745.2204724 47.2440945 4426.4094488 7746.1456693 47.2440945 4437.0078740 7745.2204724 47.2440945 4447.6062992 7742.4645669 47.2440945 4457.8779528 7737.9724409 47.2440945 4467.5196850 7731.8700787 47.2440945 4476.2322835 7724.3464567 47.2440945 4483.7559055 7715.6338583 47.2440945 4489.8543307 7705.9960630 47.2440945 4494.3503937 7695.7204724 47.2440945 4497.1062992 7263.8307087 47.2440945 4512.1653543 7541.5314961 47.2440945 4562.8149606 7264.7598425 47.2440945 4522.7637795 7536.6653543 47.2440945 4562.2834646 7263.8307087 47.2440945 4533.3622047 7261.0787402 47.2440945 4543.6338583 7256.5826772 47.2440945 4553.2755906 7546.2480315 47.2440945 4564.1417323 7550.6771654 47.2440945 4566.2322835 7710.7913386 47.2440945 4658.6732283 7881.4645669 47.2440945 4658.3346457 7715.0078740 47.2440945 4661.6259843 7718.6496063 47.2440945 4665.2677165 7817.0826772 47.2440945 4769.8503937 7721.6023622 47.2440945 4669.4842520 7723.7755906 47.2440945 4674.1456693 7724.9330709 47.2440945 4678.4685039 7725.1102362 47.2440945 4679.1181102 7725.5551181 47.2440945 4684.2480315 7725.1102362 47.2440945 4689.3740157 7723.7755906 47.2440945 4694.3464567 7721.6023622 47.2440945 4699.0118110 7720.9133858 47.2440945 4700.2047244 7718.2874016 47.2440945 4704.0236220 7715.0984252 47.2440945 4707.3818898 7711.4212598 47.2440945 4710.2047244 7709.4133858 47.2440945 4711.2952756 7707.3503937 47.2440945 4712.4133858 7702.9842520 47.2440945 4713.9606299 7645.4251969 47.2440945 4729.3818898 7297.2165354 47.2440945 4822.6850394 7806.5866142 47.2440945 4785.1259843 7793.8267717 47.2440945 4798.5669291 7779.1259843 47.2440945 4809.8503937 7762.8346457 47.2440945 4818.6929134 7745.3661417 47.2440945 4824.8818898 7292.6614173 47.2440945 4823.5314961 7288.0314961 47.2440945 4823.6496063 7531.7795276 47.2440945 4562.5669291 7227.0551181 47.2440945 4604.4173228 7527.0039370 47.2440945 4563.6496063 7526.4527559 47.2440945 4563.8740157 7522.4724409 47.2440945 4565.5078740 7484.7244094 47.2440945 4581.5708661 7476.7125984 47.2440945 4584.9763780 7428.6811024 47.2440945 4597.8503937 7420.0393701 47.2440945 4598.9015748 7379.3188976 47.2440945 4603.8661417 7374.4645669 47.2440945 4604.5236220 7220.9527559 47.2440945 4613.1338583 7369.7874016 47.2440945 4605.9685039 7365.4133858 47.2440945 4608.1692913 7361.4645669 47.2440945 4611.0629921 7358.0472441 47.2440945 4614.5708661 7213.4330709 47.2440945 4620.6535433 7355.2559055 47.2440945 4618.5944882 7262.8110236 47.2440945 4778.7125984 7204.7204724 47.2440945 4626.7559055 7195.0787402 47.2440945 4631.2519685 7184.8031496 47.2440945 4634.0039370 7174.2086614 47.2440945 4634.9291339 6782.9960630 47.2440945 4659.7086614 6793.7559055 47.2440945 4672.7952756 6806.2834646 47.2440945 4684.2086614 6820.3110236 47.2440945 4693.7125984 7137.8464567 47.2440945 4877.0433071 7260.6338583 47.2440945 4783.3740157 7259.3031496 47.2440945 4788.3464567 7258.8543307 47.2440945 4793.4763780 7259.3031496 47.2440945 4798.6023622 7260.6338583 47.2440945 4803.5748031 7262.8110236 47.2440945 4808.2401575 7265.7637795 47.2440945 4812.4566929 7269.4015748 47.2440945 4816.0944882 7273.6181102 47.2440945 4819.0472441 7274.8110236 47.2440945 4819.7362205 7278.9921260 47.2440945 4821.7283465 7283.4370079 47.2440945 4823.0472441 7315.9724409 47.2440945 4939.9370079 7226.3503937 47.2440945 4928.1377953 7229.1771654 47.2440945 4929.4842520 7243.0787402 47.2440945 4936.1141732 7260.8464567 47.2440945 4941.3818898 7297.7480315 47.2440945 4943.3149606 7279.2204724 47.2440945 4943.7992126 7135.2007874 47.2440945 4053.2952756 7334.8818898 47.2440945 4055.4527559 7141.2992126 47.2440945 4062.0078740 7327.0314961 47.2440945 4056.1417323 7293.8897638 47.2440945 4065.0196850 7145.7952756 47.2440945 4071.6496063 7262.7913386 47.2440945 4079.5236220 7148.5472441 47.2440945 4081.9212598 7234.6811024 47.2440945 4099.2047244 7149.4763780 47.2440945 4092.5196850 7148.5472441 47.2440945 4103.1181102 7210.4212598 47.2440945 4123.4685039 7145.7952756 47.2440945 4113.3897638 7141.2992126 47.2440945 4123.0314961 7135.2007874 47.2440945 4131.7440945 7190.7401575 47.2440945 4151.5748031 7127.6771654 47.2440945 4139.2677165 7118.9645669 47.2440945 4145.3661417 7109.3228346 47.2440945 4149.8622047 7099.0472441 47.2440945 4152.6181102 7176.2362205 47.2440945 4182.6732283 6641.1377953 47.2440945 4178.8700787 6647.8425197 47.2440945 4196.1889764 7170.2322835 47.2440945 4205.0866142 6651.7480315 47.2440945 4214.3464567 7167.3543307 47.2440945 4215.8188976 6652.7598425 47.2440945 4232.8897638 6800.9803150 47.2440945 4253.6023622 6796.2125984 47.2440945 4254.0196850 6791.5708661 47.2440945 4255.2047244 6787.1850394 47.2440945 4257.1220472 6783.1653543 47.2440945 4259.7244094 6659.0984252 47.2440945 4346.0826772 6779.6181102 47.2440945 4262.9448819 6776.6417323 47.2440945 4266.6929134 6774.3070866 47.2440945 4270.8740157 6772.6771654 47.2440945 4275.3779528 6771.7992126 47.2440945 4280.0826772 6771.6968504 47.2440945 4284.8700787 6783.7440945 47.2440945 4373.5905512 6683.4055118 47.2440945 4456.8188976 6809.0629921 47.2440945 4459.4685039 6725.0590551 47.2440945 4562.2598425 6847.0748031 47.2440945 4540.5354331 6896.9055118 47.2440945 4614.9212598 6900.1692913 47.2440945 4618.4409449 6903.9566929 47.2440945 4621.3818898 6908.1692913 47.2440945 4623.6771654 6912.7007874 47.2440945 4625.2559055 6917.4251969 47.2440945 4626.0787402 7153.3346457 47.2440945 4631.2519685 7163.6102362 47.2440945 4634.0039370 3495.4000000 47.2440945 1381.6208661 2705.9578740 47.2440945 1289.5216535 3020.9185039 47.2440945 1107.6791339 2749.7791339 47.2440945 1544.0547244 2741.4933071 47.2440945 1546.2751969 2733.7185039 47.2440945 1549.9003937 2469.7374016 47.2440945 1698.6673228 3359.1854331 47.2440945 1441.2885827 3367.7307087 47.2440945 1440.5409449 3350.8992126 47.2440945 1443.5090551 3343.1244094 47.2440945 1447.1342520 3336.0976378 47.2440945 1452.0547244 3330.0318898 47.2440945 1458.1204724 3325.1114173 47.2440945 1465.1472441 3321.4866142 47.2440945 1472.9220472 3319.2661417 47.2440945 1481.2078740 3318.5181102 47.2440945 1489.7535433 2758.3248031 47.2440945 1543.3070866 3319.2657480 47.2440945 1498.2992126 3321.4866142 47.2440945 1506.5854331 3325.1114173 47.2440945 1514.3598425 3330.0318898 47.2440945 1521.3870079 3336.0976378 47.2440945 1527.4527559 3343.1244094 47.2440945 1532.3732283 3350.8992126 47.2440945 1535.9984252 3359.1854331 47.2440945 1538.2188976 3367.7307087 47.2440945 1538.9661417 2726.6921260 47.2440945 1554.8204724 2720.6259843 47.2440945 1560.8866142 2715.7055118 47.2440945 1567.9133858 2712.0803150 47.2440945 1575.6881890 2709.8598425 47.2440945 1583.9740157 2709.1122047 47.2440945 1592.5196850 2709.8598425 47.2440945 1601.0653543 2712.0803150 47.2440945 1609.3511811 2715.7055118 47.2440945 1617.1259843 2720.6259843 47.2440945 1624.1531496 2726.6921260 47.2440945 1630.2188976 2733.7185039 47.2440945 1635.1389764 2741.4933071 47.2440945 1638.7641732 2749.7791339 47.2440945 1640.9846457 2758.3248031 47.2440945 1641.7322835 2944.9066929 47.2440945 1646.3334646 2950.0535433 47.2440945 1646.2913386 2939.8456693 47.2440945 1647.2681102 2935.0232283 47.2440945 1649.0681102 2930.5866142 47.2440945 1651.6775591 2926.6708661 47.2440945 1655.0177165 2923.3948819 47.2440945 1658.9874016 2920.8578740 47.2440945 1663.4657480 2919.1362205 47.2440945 1668.3165354 2904.3724409 47.2440945 1693.8881890 2901.1909449 47.2440945 1697.5838583 2898.6606299 47.2440945 1701.7527559 2469.7374016 47.2440945 2062.3527559 2896.8511811 47.2440945 1706.2814961 2895.8110236 47.2440945 1711.0460630 2895.5700787 47.2440945 1715.9165354 2896.1346457 47.2440945 1720.7606299 2897.4877953 47.2440945 1725.4456693 2899.5937008 47.2440945 1729.8444882 2902.3952756 47.2440945 1733.8362205 2905.8149606 47.2440945 1737.3125984 2909.7618110 47.2440945 1740.1783465 2914.1248031 47.2440945 1742.3559055 2918.7870079 47.2440945 1743.7854331 2923.6212598 47.2440945 1744.4279528 3365.4590551 47.2440945 1978.2807087 3364.6070866 47.2440945 1983.3562992 3364.6484252 47.2440945 1988.5035433 3365.5830709 47.2440945 1993.5645669 3367.3826772 47.2440945 1998.3870079 3369.9925197 47.2440945 2002.8232283 3373.3334646 47.2440945 2006.7389764 3377.3031496 47.2440945 2010.0153543 3381.7807087 47.2440945 2012.5523622 3386.6314961 47.2440945 2014.2732283 3391.7074803 47.2440945 2015.1259843 2976.3015748 47.2440945 1683.1366142 3399.9401575 47.2440945 1922.1562992 3395.9708661 47.2440945 1925.4326772 3404.4188976 47.2440945 1919.6192913 3409.2696850 47.2440945 1917.8980315 3414.3456693 47.2440945 1917.0456693 7355.7559055 47.2440945 3659.4740157 6957.9291339 47.2440945 3659.1047244 7096.6535433 47.2440945 3722.0244094 6145.7480315 47.2440945 3695.9157480 6151.0472441 47.2440945 3697.3370079 6156.0236220 47.2440945 3699.6570866 6160.5236220 47.2440945 3702.8059055 6164.4055118 47.2440945 3706.6877953 6167.5551181 47.2440945 3711.1850394 6169.8740157 47.2440945 3716.1610236 6171.2952756 47.2440945 3721.4637795 6171.7716535 47.2440945 3726.9330709 7092.5629921 47.2440945 3724.5098425 7088.9251969 47.2440945 3727.6236220 6171.2952756 47.2440945 3732.4023622 7085.8385827 47.2440945 3731.2854331 7083.3858268 47.2440945 3735.3964567 6169.8740157 47.2440945 3737.7055118 7081.6259843 47.2440945 3739.8511811 6167.5551181 47.2440945 3742.6811024 7080.6141732 47.2440945 3744.5307087 6164.4055118 47.2440945 3747.1783465 7080.3700787 47.2440945 3749.3129921 6160.5236220 47.2440945 3751.0606299 7080.9015748 47.2440945 3754.0716535 6156.0236220 47.2440945 3754.2102362 6151.0472441 47.2440945 3756.5303150 6145.7480315 47.2440945 3757.9507874 4149.7401575 47.2440945 2182.5157480 3020.2748031 47.2440945 2188.4952756 3022.4948819 47.2440945 2180.2090551 4144.2716535 47.2440945 2182.9940945 4138.9685039 47.2440945 2184.4153543 4133.9921260 47.2440945 2186.7354331 4129.4960630 47.2440945 2189.8846457 3016.6492126 47.2440945 2196.2696850 4125.6141732 47.2440945 2193.7665354 4122.4645669 47.2440945 2198.2637795 3011.7291339 47.2440945 2203.2968504 4120.1456693 47.2440945 2203.2393701 4118.7244094 47.2440945 2208.5425197 3005.6629921 47.2440945 2209.3625984 4118.2440945 47.2440945 2214.0118110 2998.6362205 47.2440945 2214.2830709 4118.7244094 47.2440945 2219.4811024 2990.8618110 47.2440945 2217.9082677 2982.5759843 47.2440945 2220.1283465 4120.1456693 47.2440945 2224.7838583 2974.0299213 47.2440945 2220.8759843 2925.5649606 47.2440945 2180.2090551 2944.2188976 47.2440945 2336.2948819 2924.8173228 47.2440945 2171.6633858 2925.5653543 47.2440945 2163.1181102 2927.7858268 47.2440945 2154.8318898 2931.4106299 47.2440945 2147.0574803 2936.3311024 47.2440945 2140.0303150 2942.3968504 47.2440945 2133.9645669 2949.4236220 47.2440945 2129.0440945 2957.1984252 47.2440945 2125.4188976 2965.4846457 47.2440945 2123.1984252 2974.0299213 47.2440945 2122.4511811 2927.7858268 47.2440945 2188.4952756 2931.4106299 47.2440945 2196.2700787 2936.3311024 47.2440945 2203.2968504 2942.3968504 47.2440945 2209.3625984 2949.4236220 47.2440945 2214.2830709 2957.1984252 47.2440945 2217.9082677 2965.4846457 47.2440945 2220.1287402 4122.4645669 47.2440945 2229.7598425 4125.6141732 47.2440945 2234.2570866 4129.4960630 47.2440945 2238.1393701 4133.9921260 47.2440945 2241.2881890 4138.9685039 47.2440945 2243.6086614 4144.2716535 47.2440945 2245.0291339 4149.7401575 47.2440945 2245.5078740 3211.7515748 47.2440945 2328.1397638 7426.9251969 47.2440945 3544.3913386 7201.4212598 47.2440945 3559.5897638 7313.5629921 47.2440945 3542.9433071 7443.6377953 47.2440945 3547.1688976 7459.7834646 47.2440945 3552.3094488 7475.0275591 47.2440945 3559.7062992 7093.3661417 47.2440945 3593.9070866 7445.0905512 47.2440945 3665.4362205 7449.7716535 47.2440945 3666.5003937 7881.0669291 47.2440945 3794.1326772 6992.1692913 47.2440945 3645.0153543 6975.6062992 47.2440945 3653.4106299 7454.2125984 47.2440945 3668.3090551 7458.3070866 47.2440945 3670.8137795 7461.9370079 47.2440945 3673.9472441 7465.0157480 47.2440945 3677.6279528 7467.4566929 47.2440945 3681.7578740 7469.1968504 47.2440945 3686.2299213 7470.1889764 47.2440945 3690.9232283 7470.4055118 47.2440945 3695.7157480 7469.8464567 47.2440945 3700.4807087 7468.5236220 47.2440945 3705.0917323 7466.4685039 47.2440945 3709.4275591 7425.5708661 47.2440945 3780.2681102 7367.1771654 47.2440945 3881.4066929 7896.3385827 47.2440945 3804.6303150 7909.7834646 47.2440945 3817.3877953 7537.6259843 47.2440945 3865.9960630 7921.0669291 47.2440945 3832.0917323 7527.3503937 47.2440945 3868.7500000 7517.7125984 47.2440945 3873.2448819 7509.0000000 47.2440945 3879.3464567 7501.4763780 47.2440945 3886.8677165 7364.3858268 47.2440945 3885.4295276 7360.9685039 47.2440945 3888.9358268 7495.3740157 47.2440945 3895.5811024 7357.0196850 47.2440945 3891.8295276 7352.6456693 47.2440945 3894.0303150 7347.9685039 47.2440945 3895.4771654 7343.1141732 47.2440945 3896.1318898 7297.5039370 47.2440945 3901.4444882 7252.9606299 47.2440945 3912.6118110 7210.2362205 47.2440945 3929.4448819 7205.6496063 47.2440945 3931.1562992 7200.8464567 47.2440945 3932.0866142 7465.8464567 47.2440945 4007.7480315 7047.9055118 47.2440945 4002.8937008 7058.1811024 47.2440945 4005.6496063 7067.8188976 47.2440945 4010.1456693 7471.9488189 47.2440945 4016.4606299 7479.4724409 47.2440945 4023.9842520 7488.1850394 47.2440945 4030.0826772 7497.8228346 47.2440945 4034.5787402 7508.0984252 47.2440945 4037.3307087 3376.2767717 47.2440945 1441.2889764 3384.5625984 47.2440945 1443.5090551 3392.3370079 47.2440945 1447.1342520 3399.3641732 47.2440945 1452.0547244 3622.1035433 47.2440945 1617.3885827 3405.4299213 47.2440945 1458.1204724 3410.3500000 47.2440945 1465.1472441 3413.9755906 47.2440945 1472.9220472 3416.1956693 47.2440945 1481.2078740 3416.9433071 47.2440945 1489.7535433 3416.1956693 47.2440945 1498.2992126 3413.9755906 47.2440945 1506.5854331 3410.3500000 47.2440945 1514.3598425 3405.4299213 47.2440945 1521.3870079 3399.3637795 47.2440945 1527.4527559 3392.3370079 47.2440945 1532.3732283 3384.5625984 47.2440945 1535.9984252 3376.2767717 47.2440945 1538.2188976 2766.8708661 47.2440945 1544.0547244 2775.1570866 47.2440945 1546.2751969 2782.9311024 47.2440945 1549.9003937 2789.9582677 47.2440945 1554.8204724 2796.0244094 47.2440945 1560.8862205 2800.9440945 47.2440945 1567.9133858 2804.5696850 47.2440945 1575.6877953 2806.7905512 47.2440945 1583.9740157 2807.5374016 47.2440945 1592.5196850 2806.7897638 47.2440945 1601.0653543 2804.5696850 47.2440945 1609.3515748 2800.9440945 47.2440945 1617.1259843 2796.0244094 47.2440945 1624.1527559 3633.3937008 47.2440945 1634.6051181 2789.9582677 47.2440945 1630.2185039 2782.9311024 47.2440945 1635.1389764 3647.5011811 47.2440945 1649.6000000 2775.1570866 47.2440945 1638.7645669 2766.8704724 47.2440945 1640.9846457 2955.1295276 47.2440945 1647.1440945 2959.9799213 47.2440945 1648.8649606 2964.4582677 47.2440945 1651.4019685 3663.9976378 47.2440945 1661.9173228 2968.4279528 47.2440945 1654.6783465 2971.7685039 47.2440945 1658.5940945 2974.3775591 47.2440945 1663.0303150 4160.5118110 47.2440945 2184.4153543 4165.4881890 47.2440945 2186.7354331 2976.1779528 47.2440945 1667.8527559 2977.1122047 47.2440945 1672.9137795 2977.1547244 47.2440945 1678.0610236 3424.5535433 47.2440945 1918.0224409 3419.4917323 47.2440945 1917.0874016 3429.3755906 47.2440945 1919.8220472 3433.8122047 47.2440945 1922.4318898 3437.7279528 47.2440945 1925.7724409 3441.0039370 47.2440945 1929.7421260 3443.5413386 47.2440945 1934.2200787 3445.2622047 47.2440945 1939.0708661 3446.1145669 47.2440945 1944.1464567 3446.0728346 47.2440945 1949.2937008 3445.1377953 47.2440945 1954.3551181 3443.3377953 47.2440945 1959.1771654 3440.7283465 47.2440945 1963.6133858 3437.3877953 47.2440945 1967.5291339 4155.2125984 47.2440945 2182.9940945 3422.6240157 47.2440945 1993.1007874 3420.9031496 47.2440945 1997.9515748 3418.3661417 47.2440945 2002.4295276 3415.0905512 47.2440945 2006.3992126 3411.1740157 47.2440945 2009.7397638 3406.7381890 47.2440945 2012.3492126 3401.9157480 47.2440945 2014.1492126 3396.8543307 47.2440945 2015.0842520 2982.5759843 47.2440945 2123.1984252 2990.8618110 47.2440945 2125.4188976 2998.6362205 47.2440945 2129.0440945 3005.6633858 47.2440945 2133.9645669 3011.7291339 47.2440945 2140.0303150 3016.6492126 47.2440945 2147.0570866 3020.2748031 47.2440945 2154.8318898 3022.4948819 47.2440945 2163.1177165 3023.2425197 47.2440945 2171.6637795 4169.9881890 47.2440945 2189.8846457 4173.8700787 47.2440945 2193.7665354 4177.0196850 47.2440945 2198.2637795 4179.3385827 47.2440945 2203.2393701 4180.7598425 47.2440945 2208.5425197 4181.2362205 47.2440945 2214.0118110 4180.7598425 47.2440945 2219.4811024 4179.3385827 47.2440945 2224.7838583 4177.0196850 47.2440945 2229.7594488 4173.8700787 47.2440945 2234.2570866 4169.9881890 47.2440945 2238.1393701 4165.4881890 47.2440945 2241.2881890 4160.5157480 47.2440945 2243.6086614 4155.2125984 47.2440945 2245.0291339 4003.0314961 47.2440945 2457.1791339 3997.7322835 47.2440945 2455.7582677 3232.3062992 47.2440945 2329.3082677 3252.3460630 47.2440945 2334.0283465 4008.0078740 47.2440945 2459.4992126 4012.5078740 47.2440945 2462.6484252 4016.3897638 47.2440945 2466.5303150 4019.5393701 47.2440945 2471.0275591 4021.8582677 47.2440945 2476.0031496 4023.2795276 47.2440945 2481.3062992 4023.7559055 47.2440945 2486.7755906 4023.2795276 47.2440945 2492.2448819 4021.8582677 47.2440945 2497.5480315 4019.5393701 47.2440945 2502.5236220 4016.3897638 47.2440945 2507.0208661 4012.5078740 47.2440945 2510.9031496 4008.0078740 47.2440945 2514.0519685 4003.0354331 47.2440945 2516.3724409 6308.5275591 47.2440945 3424.5732283 3997.7322835 47.2440945 2517.7933071 6303.2283465 47.2440945 3423.1515748 6313.5039370 47.2440945 3426.8933071 6318.0039370 47.2440945 3430.0417323 6321.8858268 47.2440945 3433.9236220 6325.0354331 47.2440945 3438.4212598 6327.3543307 47.2440945 3443.3968504 6328.7755906 47.2440945 3448.7000000 6329.2519685 47.2440945 3454.1692913 6328.7755906 47.2440945 3459.6385827 6327.3543307 47.2440945 3464.9413386 6325.0354331 47.2440945 3469.9177165 6321.8858268 47.2440945 3474.4145669 6318.0039370 47.2440945 3478.2964567 6313.5039370 47.2440945 3481.4456693 6308.5275591 47.2440945 3483.7665354 6303.2283465 47.2440945 3485.1870079 2942.0440945 47.2440945 1739.1062992 2945.7897638 47.2440945 1735.9846457 2937.8334646 47.2440945 1741.5685039 2933.2763780 47.2440945 1743.3043307 2928.4952756 47.2440945 1744.2661417 2923.6212598 47.2440945 1744.4279528 3365.4590551 47.2440945 1978.2807087 2928.4952756 47.2440945 1744.2661417 2933.2763780 47.2440945 1743.3043307 2937.8334646 47.2440945 1741.5685039 2942.0440945 47.2440945 1739.1062992 2945.7897638 47.2440945 1735.9846457 6297.7559055 47.2440945 3485.6653543 6868.5196850 47.2440945 3644.6240157 6303.2283465 47.2440945 3485.1870079 6308.5275591 47.2440945 3483.7665354 6313.5039370 47.2440945 3481.4456693 6318.0039370 47.2440945 3478.2964567 6321.8858268 47.2440945 3474.4145669 6325.0354331 47.2440945 3469.9177165 6327.3543307 47.2440945 3464.9413386 6328.7755906 47.2440945 3459.6385827 6329.2519685 47.2440945 3454.1692913 6328.7755906 47.2440945 3448.7000000 6327.3543307 47.2440945 3443.3968504 6325.0354331 47.2440945 3438.4212598 6321.8858268 47.2440945 3433.9236220 6318.0039370 47.2440945 3430.0417323 6313.5039370 47.2440945 3426.8933071 6308.5275591 47.2440945 3424.5732283 6297.7559055 47.2440945 3422.6732283 6303.2283465 47.2440945 3423.1515748 3992.2598425 47.2440945 2518.2716535 3997.7322835 47.2440945 2517.7933071 4003.0354331 47.2440945 2516.3724409 4008.0078740 47.2440945 2514.0519685 4012.5078740 47.2440945 2510.9031496 4016.3897638 47.2440945 2507.0208661 4019.5393701 47.2440945 2502.5236220 4021.8582677 47.2440945 2497.5480315 4023.2795276 47.2440945 2492.2448819 4023.7559055 47.2440945 2486.7755906 4023.2795276 47.2440945 2481.3062992 4021.8582677 47.2440945 2476.0031496 4019.5393701 47.2440945 2471.0275591 4016.3897638 47.2440945 2466.5303150 4012.5078740 47.2440945 2462.6484252 4008.0078740 47.2440945 2459.4992126 4003.0314961 47.2440945 2457.1791339 3992.2598425 47.2440945 2455.2795276 3997.7322835 47.2440945 2455.7582677 3271.2614173 47.2440945 2342.1566929 3252.3460630 47.2440945 2334.0283465 3232.3062992 47.2440945 2329.3082677 3211.7515748 47.2440945 2328.1397638 4149.7401575 47.2440945 2245.5078740 4155.2125984 47.2440945 2245.0291339 4160.5157480 47.2440945 2243.6086614 4165.4881890 47.2440945 2241.2881890 4169.9881890 47.2440945 2238.1393701 4173.8700787 47.2440945 2234.2570866 4177.0196850 47.2440945 2229.7594488 4179.3385827 47.2440945 2224.7838583 4180.7598425 47.2440945 2219.4811024 4181.2362205 47.2440945 2214.0118110 4180.7598425 47.2440945 2208.5425197 4179.3385827 47.2440945 2203.2393701 4177.0196850 47.2440945 2198.2637795 4173.8700787 47.2440945 2193.7665354 4169.9881890 47.2440945 2189.8846457 4165.4881890 47.2440945 2186.7354331 3022.4948819 47.2440945 2180.2090551 4149.7401575 47.2440945 2182.5157480 3023.2425197 47.2440945 2171.6637795 3022.4948819 47.2440945 2163.1177165 3020.2748031 47.2440945 2154.8318898 3016.6492126 47.2440945 2147.0570866 3011.7291339 47.2440945 2140.0303150 3005.6633858 47.2440945 2133.9645669 2998.6362205 47.2440945 2129.0440945 2990.8618110 47.2440945 2125.4188976 2982.5759843 47.2440945 2123.1984252 2974.0299213 47.2440945 2122.4511811 2469.7374016 47.2440945 2062.3527559 3391.7074803 47.2440945 2015.1259843 4155.2125984 47.2440945 2182.9940945 3396.8543307 47.2440945 2015.0842520 3401.9157480 47.2440945 2014.1492126 3406.7381890 47.2440945 2012.3492126 3411.1740157 47.2440945 2009.7397638 3415.0905512 47.2440945 2006.3992126 3418.3661417 47.2440945 2002.4295276 3420.9031496 47.2440945 1997.9515748 3422.6240157 47.2440945 1993.1007874 3437.3877953 47.2440945 1967.5291339 4160.5118110 47.2440945 2184.4153543 3440.7283465 47.2440945 1963.6133858 3443.3377953 47.2440945 1959.1771654 3445.1377953 47.2440945 1954.3551181 3446.0728346 47.2440945 1949.2937008 3446.1145669 47.2440945 1944.1464567 3445.2622047 47.2440945 1939.0708661 3443.5413386 47.2440945 1934.2200787 3441.0039370 47.2440945 1929.7421260 3437.7279528 47.2440945 1925.7724409 3433.8122047 47.2440945 1922.4318898 3429.3755906 47.2440945 1919.8220472 3424.5535433 47.2440945 1918.0224409 3414.3456693 47.2440945 1917.0456693 3419.4917323 47.2440945 1917.0874016 2976.3015748 47.2440945 1683.1366142 2977.1547244 47.2440945 1678.0610236 2977.1122047 47.2440945 1672.9137795 2976.1779528 47.2440945 1667.8527559 2974.3775591 47.2440945 1663.0303150 3663.9976378 47.2440945 1661.9173228 2971.7685039 47.2440945 1658.5940945 2968.4279528 47.2440945 1654.6783465 2964.4582677 47.2440945 1651.4019685 3647.5011811 47.2440945 1649.6000000 2959.9799213 47.2440945 1648.8649606 2955.1295276 47.2440945 1647.1440945 2950.0535433 47.2440945 1646.2913386 2758.3248031 47.2440945 1641.7322835 2766.8704724 47.2440945 1640.9846457 2775.1570866 47.2440945 1638.7645669 2782.9311024 47.2440945 1635.1389764 3633.3937008 47.2440945 1634.6051181 2789.9582677 47.2440945 1630.2185039 2796.0244094 47.2440945 1624.1527559 3622.1035433 47.2440945 1617.3885827 2800.9440945 47.2440945 1617.1259843 2804.5696850 47.2440945 1609.3515748 2806.7897638 47.2440945 1601.0653543 2807.5374016 47.2440945 1592.5196850 2806.7905512 47.2440945 1583.9740157 2804.5696850 47.2440945 1575.6877953 2800.9440945 47.2440945 1567.9133858 2796.0244094 47.2440945 1560.8862205 2789.9582677 47.2440945 1554.8204724 2782.9311024 47.2440945 1549.9003937 2775.1570866 47.2440945 1546.2751969 2766.8708661 47.2440945 1544.0547244 2758.3248031 47.2440945 1543.3070866 3367.7307087 47.2440945 1538.9661417 3376.2767717 47.2440945 1538.2188976 3384.5625984 47.2440945 1535.9984252 3392.3370079 47.2440945 1532.3732283 3399.3637795 47.2440945 1527.4527559 3405.4299213 47.2440945 1521.3870079 3410.3500000 47.2440945 1514.3598425 3413.9755906 47.2440945 1506.5854331 3416.1956693 47.2440945 1498.2992126 3416.9433071 47.2440945 1489.7535433 3416.1956693 47.2440945 1481.2078740 3413.9755906 47.2440945 1472.9220472 3410.3500000 47.2440945 1465.1472441 3405.4299213 47.2440945 1458.1204724 3399.3641732 47.2440945 1452.0547244 3495.4000000 47.2440945 1381.6208661 3392.3370079 47.2440945 1447.1342520 3384.5625984 47.2440945 1443.5090551 3376.2767717 47.2440945 1441.2889764 3367.7307087 47.2440945 1440.5409449 7518.6968504 47.2440945 4038.2598425 7508.0984252 47.2440945 4037.3307087 7118.9645669 47.2440945 4039.6732283 7497.8228346 47.2440945 4034.5787402 7488.1850394 47.2440945 4030.0826772 7479.4724409 47.2440945 4023.9842520 7471.9488189 47.2440945 4016.4606299 7067.8188976 47.2440945 4010.1456693 7465.8464567 47.2440945 4007.7480315 7058.1811024 47.2440945 4005.6496063 7047.9055118 47.2440945 4002.8937008 7037.3110236 47.2440945 4001.9685039 7461.3543307 47.2440945 3998.1062992 7195.9527559 47.2440945 3932.2106299 7465.8464567 47.2440945 3946.7244094 7200.8464567 47.2440945 3932.0866142 7205.6496063 47.2440945 3931.1562992 7210.2362205 47.2440945 3929.4448819 7252.9606299 47.2440945 3912.6118110 7297.5039370 47.2440945 3901.4444882 7343.1141732 47.2440945 3896.1318898 7495.3740157 47.2440945 3895.5811024 7347.9685039 47.2440945 3895.4771654 7352.6456693 47.2440945 3894.0303150 7357.0196850 47.2440945 3891.8295276 7360.9685039 47.2440945 3888.9358268 7501.4763780 47.2440945 3886.8677165 7364.3858268 47.2440945 3885.4295276 7367.1771654 47.2440945 3881.4066929 7509.0000000 47.2440945 3879.3464567 7517.7125984 47.2440945 3873.2448819 7527.3503937 47.2440945 3868.7500000 7537.6259843 47.2440945 3865.9960630 7929.9094488 47.2440945 3848.3795276 7921.0669291 47.2440945 3832.0917323 7548.2244094 47.2440945 3865.0692913 7909.7834646 47.2440945 3817.3877953 7896.3385827 47.2440945 3804.6303150 7881.0669291 47.2440945 3794.1326772 7425.5708661 47.2440945 3780.2681102 7466.4685039 47.2440945 3709.4275591 7468.5236220 47.2440945 3705.0917323 7469.8464567 47.2440945 3700.4807087 7470.4055118 47.2440945 3695.7157480 7470.1889764 47.2440945 3690.9232283 7469.1968504 47.2440945 3686.2299213 7467.4566929 47.2440945 3681.7578740 7465.0157480 47.2440945 3677.6279528 7461.9370079 47.2440945 3673.9472441 7458.3070866 47.2440945 3670.8137795 7454.2125984 47.2440945 3668.3090551 7449.7716535 47.2440945 3666.5003937 6957.9291339 47.2440945 3659.1047244 7355.7559055 47.2440945 3659.4740157 6975.6062992 47.2440945 3653.4106299 6992.1692913 47.2440945 3645.0153543 7093.3661417 47.2440945 3593.9070866 7445.0905512 47.2440945 3665.4362205 7475.0275591 47.2440945 3559.7062992 7201.4212598 47.2440945 3559.5897638 7459.7834646 47.2440945 3552.3094488 7443.6377953 47.2440945 3547.1688976 7426.9251969 47.2440945 3544.3913386 7313.5629921 47.2440945 3542.9433071 2944.2188976 47.2440945 2336.2948819 4144.2716535 47.2440945 2245.0291339 4138.9685039 47.2440945 2243.6086614 4133.9921260 47.2440945 2241.2881890 4129.4960630 47.2440945 2238.1393701 4125.6141732 47.2440945 2234.2570866 4122.4645669 47.2440945 2229.7598425 4120.1456693 47.2440945 2224.7838583 2974.0299213 47.2440945 2220.8759843 2965.4846457 47.2440945 2220.1287402 2957.1984252 47.2440945 2217.9082677 2949.4236220 47.2440945 2214.2830709 2942.3968504 47.2440945 2209.3625984 2936.3311024 47.2440945 2203.2968504 2931.4106299 47.2440945 2196.2700787 2927.7858268 47.2440945 2188.4952756 2925.5649606 47.2440945 2180.2090551 2965.4846457 47.2440945 2123.1984252 2957.1984252 47.2440945 2125.4188976 2949.4236220 47.2440945 2129.0440945 2942.3968504 47.2440945 2133.9645669 2936.3311024 47.2440945 2140.0303150 2931.4106299 47.2440945 2147.0574803 2927.7858268 47.2440945 2154.8318898 2925.5653543 47.2440945 2163.1181102 2924.8173228 47.2440945 2171.6633858 2982.5759843 47.2440945 2220.1283465 4118.7244094 47.2440945 2219.4811024 2990.8618110 47.2440945 2217.9082677 2998.6362205 47.2440945 2214.2830709 4118.2440945 47.2440945 2214.0118110 3005.6629921 47.2440945 2209.3625984 4118.7244094 47.2440945 2208.5425197 3011.7291339 47.2440945 2203.2968504 4120.1456693 47.2440945 2203.2393701 4122.4645669 47.2440945 2198.2637795 3016.6492126 47.2440945 2196.2696850 4125.6141732 47.2440945 2193.7665354 4129.4960630 47.2440945 2189.8846457 3020.2748031 47.2440945 2188.4952756 4133.9921260 47.2440945 2186.7354331 4138.9685039 47.2440945 2184.4153543 4144.2716535 47.2440945 2182.9940945 6140.2755906 47.2440945 3758.4295276 7082.1929134 47.2440945 3758.6818898 6145.7480315 47.2440945 3757.9507874 6151.0472441 47.2440945 3756.5303150 6156.0236220 47.2440945 3754.2102362 7080.9015748 47.2440945 3754.0716535 6160.5236220 47.2440945 3751.0606299 7080.3700787 47.2440945 3749.3129921 6164.4055118 47.2440945 3747.1783465 7080.6141732 47.2440945 3744.5307087 6167.5551181 47.2440945 3742.6811024 7081.6259843 47.2440945 3739.8511811 6169.8740157 47.2440945 3737.7055118 7083.3858268 47.2440945 3735.3964567 6171.2952756 47.2440945 3732.4023622 7085.8385827 47.2440945 3731.2854331 7088.9251969 47.2440945 3727.6236220 6171.7716535 47.2440945 3726.9330709 7092.5629921 47.2440945 3724.5098425 7096.6535433 47.2440945 3722.0244094 6171.2952756 47.2440945 3721.4637795 6169.8740157 47.2440945 3716.1610236 6167.5551181 47.2440945 3711.1850394 6164.4055118 47.2440945 3706.6877953 6160.5236220 47.2440945 3702.8059055 6156.0236220 47.2440945 3699.6570866 6151.0472441 47.2440945 3697.3370079 6145.7480315 47.2440945 3695.9157480 6140.2755906 47.2440945 3695.4377953 7179.5118110 47.2440945 3688.0976378 7266.5472441 47.2440945 3667.0862205 6939.5748031 47.2440945 3661.9582677 3409.2696850 47.2440945 1917.8980315 3404.4188976 47.2440945 1919.6192913 3399.9401575 47.2440945 1922.1562992 3395.9708661 47.2440945 1925.4326772 3386.6314961 47.2440945 2014.2732283 3381.7807087 47.2440945 2012.5523622 3377.3031496 47.2440945 2010.0153543 3373.3334646 47.2440945 2006.7389764 3369.9925197 47.2440945 2002.8232283 3367.3826772 47.2440945 1998.3870079 3365.5830709 47.2440945 1993.5645669 3364.6484252 47.2440945 1988.5035433 3364.6070866 47.2440945 1983.3562992 2918.7870079 47.2440945 1743.7854331 2914.1248031 47.2440945 1742.3559055 2909.7618110 47.2440945 1740.1783465 2905.8149606 47.2440945 1737.3125984 2902.3952756 47.2440945 1733.8362205 2899.5937008 47.2440945 1729.8444882 2897.4877953 47.2440945 1725.4456693 2896.1346457 47.2440945 1720.7606299 2895.5700787 47.2440945 1715.9165354 2895.8110236 47.2440945 1711.0460630 2896.8511811 47.2440945 1706.2814961 2898.6606299 47.2440945 1701.7527559 2469.7374016 47.2440945 1698.6673228 2901.1909449 47.2440945 1697.5838583 2904.3724409 47.2440945 1693.8881890 2919.1362205 47.2440945 1668.3165354 2920.8578740 47.2440945 1663.4657480 2923.3948819 47.2440945 1658.9874016 2926.6708661 47.2440945 1655.0177165 2930.5866142 47.2440945 1651.6775591 2935.0232283 47.2440945 1649.0681102 2939.8456693 47.2440945 1647.2681102 2944.9066929 47.2440945 1646.3334646 2749.7791339 47.2440945 1640.9846457 2741.4933071 47.2440945 1638.7641732 2733.7185039 47.2440945 1635.1389764 2726.6921260 47.2440945 1630.2188976 2720.6259843 47.2440945 1624.1531496 2715.7055118 47.2440945 1617.1259843 2712.0803150 47.2440945 1609.3511811 2709.8598425 47.2440945 1601.0653543 2709.1122047 47.2440945 1592.5196850 2709.8598425 47.2440945 1583.9740157 2712.0803150 47.2440945 1575.6881890 2715.7055118 47.2440945 1567.9133858 2720.6259843 47.2440945 1560.8866142 2726.6921260 47.2440945 1554.8204724 2733.7185039 47.2440945 1549.9003937 3359.1854331 47.2440945 1538.2188976 3350.8992126 47.2440945 1535.9984252 3343.1244094 47.2440945 1532.3732283 3336.0976378 47.2440945 1527.4527559 3330.0318898 47.2440945 1521.3870079 3325.1114173 47.2440945 1514.3598425 3321.4866142 47.2440945 1506.5854331 3319.2657480 47.2440945 1498.2992126 3318.5181102 47.2440945 1489.7535433 2749.7791339 47.2440945 1544.0547244 3319.2661417 47.2440945 1481.2078740 3321.4866142 47.2440945 1472.9220472 3325.1114173 47.2440945 1465.1472441 3330.0318898 47.2440945 1458.1204724 3336.0976378 47.2440945 1452.0547244 3343.1244094 47.2440945 1447.1342520 3350.8992126 47.2440945 1443.5090551 3359.1854331 47.2440945 1441.2885827 2705.9578740 47.2440945 1289.5216535 2741.4933071 47.2440945 1546.2751969 3020.9185039 47.2440945 1107.6791339 7174.2086614 47.2440945 4634.9291339 7163.6102362 47.2440945 4634.0039370 6782.9960630 47.2440945 4659.7086614 7153.3346457 47.2440945 4631.2519685 7143.6968504 47.2440945 4626.7559055 6922.2244094 47.2440945 4626.1259843 6917.4251969 47.2440945 4626.0787402 6912.7007874 47.2440945 4625.2559055 6908.1692913 47.2440945 4623.6771654 6903.9566929 47.2440945 4621.3818898 6900.1692913 47.2440945 4618.4409449 6896.9055118 47.2440945 4614.9212598 6725.0590551 47.2440945 4562.2598425 6847.0748031 47.2440945 4540.5354331 6809.0629921 47.2440945 4459.4685039 6683.4055118 47.2440945 4456.8188976 6783.7440945 47.2440945 4373.5905512 6659.0984252 47.2440945 4346.0826772 6771.6968504 47.2440945 4284.8700787 6771.7992126 47.2440945 4280.0826772 6772.6771654 47.2440945 4275.3779528 6774.3070866 47.2440945 4270.8740157 6776.6417323 47.2440945 4266.6929134 6779.6181102 47.2440945 4262.9448819 6783.1653543 47.2440945 4259.7244094 6978.5039370 47.2440945 4252.4606299 7164.3661417 47.2440945 4250.0000000 6800.9803150 47.2440945 4253.6023622 6652.7598425 47.2440945 4232.8897638 6787.1850394 47.2440945 4257.1220472 6791.5708661 47.2440945 4255.2047244 6796.2125984 47.2440945 4254.0196850 7167.3543307 47.2440945 4215.8188976 6651.7480315 47.2440945 4214.3464567 7170.2322835 47.2440945 4205.0866142 6647.8425197 47.2440945 4196.1889764 7176.2362205 47.2440945 4182.6732283 6641.1377953 47.2440945 4178.8700787 6631.7992126 47.2440945 4162.8149606 7088.4527559 47.2440945 4153.5433071 7099.0472441 47.2440945 4152.6181102 7190.7401575 47.2440945 4151.5748031 7109.3228346 47.2440945 4149.8622047 7118.9645669 47.2440945 4145.3661417 7127.6771654 47.2440945 4139.2677165 7135.2007874 47.2440945 4131.7440945 7210.4212598 47.2440945 4123.4685039 7141.2992126 47.2440945 4123.0314961 7145.7952756 47.2440945 4113.3897638 7148.5472441 47.2440945 4103.1181102 7234.6811024 47.2440945 4099.2047244 7149.4763780 47.2440945 4092.5196850 7148.5472441 47.2440945 4081.9212598 7262.7913386 47.2440945 4079.5236220 7145.7952756 47.2440945 4071.6496063 7293.8897638 47.2440945 4065.0196850 7141.2992126 47.2440945 4062.0078740 7327.0314961 47.2440945 4056.1417323 7334.8818898 47.2440945 4055.4527559 7135.2007874 47.2440945 4053.2952756 7361.2165354 47.2440945 4053.1496063 7127.6771654 47.2440945 4045.7716535 7279.2204724 47.2440945 4943.7992126 7297.7480315 47.2440945 4943.3149606 7260.8464567 47.2440945 4941.3818898 7315.9724409 47.2440945 4939.9370079 7243.0787402 47.2440945 4936.1141732 7229.1771654 47.2440945 4929.4842520 7226.3503937 47.2440945 4928.1377953 7137.8464567 47.2440945 4877.0433071 7745.3661417 47.2440945 4824.8818898 7288.0314961 47.2440945 4823.6496063 7283.4370079 47.2440945 4823.0472441 7278.9921260 47.2440945 4821.7283465 7274.8110236 47.2440945 4819.7362205 7273.6181102 47.2440945 4819.0472441 7269.4015748 47.2440945 4816.0944882 7265.7637795 47.2440945 4812.4566929 7262.8110236 47.2440945 4808.2401575 7260.6338583 47.2440945 4803.5748031 7259.3031496 47.2440945 4798.6023622 7258.8543307 47.2440945 4793.4763780 7259.3031496 47.2440945 4788.3464567 7260.6338583 47.2440945 4783.3740157 7262.8110236 47.2440945 4778.7125984 6820.3110236 47.2440945 4693.7125984 6806.2834646 47.2440945 4684.2086614 6793.7559055 47.2440945 4672.7952756 7184.8031496 47.2440945 4634.0039370 7195.0787402 47.2440945 4631.2519685 7204.7204724 47.2440945 4626.7559055 7213.4330709 47.2440945 4620.6535433 7355.2559055 47.2440945 4618.5944882 7358.0472441 47.2440945 4614.5708661 7220.9527559 47.2440945 4613.1338583 7361.4645669 47.2440945 4611.0629921 7365.4133858 47.2440945 4608.1692913 7369.7874016 47.2440945 4605.9685039 7374.4645669 47.2440945 4604.5236220 7227.0551181 47.2440945 4604.4173228 7379.3188976 47.2440945 4603.8661417 7420.0393701 47.2440945 4598.9015748 7428.6811024 47.2440945 4597.8503937 7476.7125984 47.2440945 4584.9763780 7484.7244094 47.2440945 4581.5708661 7522.4724409 47.2440945 4565.5078740 7526.4527559 47.2440945 4563.8740157 7527.0039370 47.2440945 4563.6496063 7531.7795276 47.2440945 4562.5669291 7536.6653543 47.2440945 4562.2834646 7256.5826772 47.2440945 4553.2755906 7292.6614173 47.2440945 4823.5314961 7297.2165354 47.2440945 4822.6850394 7762.8346457 47.2440945 4818.6929134 7779.1259843 47.2440945 4809.8503937 7793.8267717 47.2440945 4798.5669291 7806.5866142 47.2440945 4785.1259843 7817.0826772 47.2440945 4769.8503937 7645.4251969 47.2440945 4729.3818898 7702.9842520 47.2440945 4713.9606299 7707.3503937 47.2440945 4712.4133858 7709.4133858 47.2440945 4711.2952756 7711.4212598 47.2440945 4710.2047244 7715.0984252 47.2440945 4707.3818898 7718.2874016 47.2440945 4704.0236220 7720.9133858 47.2440945 4700.2047244 7721.6023622 47.2440945 4699.0118110 7723.7755906 47.2440945 4694.3464567 7725.1102362 47.2440945 4689.3740157 7725.5551181 47.2440945 4684.2480315 7725.1102362 47.2440945 4679.1181102 7724.9330709 47.2440945 4678.4685039 7723.7755906 47.2440945 4674.1456693 7721.6023622 47.2440945 4669.4842520 7718.6496063 47.2440945 4665.2677165 7881.4645669 47.2440945 4658.3346457 7715.0078740 47.2440945 4661.6259843 7710.7913386 47.2440945 4658.6732283 7899.9212598 47.2440945 4626.3700787 7550.6771654 47.2440945 4566.2322835 7546.2480315 47.2440945 4564.1417323 7541.5314961 47.2440945 4562.8149606 7261.0787402 47.2440945 4543.6338583 7263.8307087 47.2440945 4533.3622047 7264.7598425 47.2440945 4522.7637795 7263.8307087 47.2440945 4512.1653543 7261.0787402 47.2440945 4501.8937008 7685.1220472 47.2440945 4498.0314961 7695.7204724 47.2440945 4497.1062992 7705.9960630 47.2440945 4494.3503937 7715.6338583 47.2440945 4489.8543307 7724.3464567 47.2440945 4483.7559055 7731.8700787 47.2440945 4476.2322835 7737.9724409 47.2440945 4467.5196850 7742.4645669 47.2440945 4457.8779528 7745.2204724 47.2440945 4447.6062992 7746.1456693 47.2440945 4437.0078740 7745.2204724 47.2440945 4426.4094488 7742.4645669 47.2440945 4416.1377953 7737.9724409 47.2440945 4406.4960630 7732.8858268 47.2440945 4399.2362205 7731.8700787 47.2440945 4397.7834646 8039.3543307 47.2440945 4384.8661417 7724.3464567 47.2440945 4390.2598425 7715.6338583 47.2440945 4384.1614173 8040.7007874 47.2440945 4382.0393701 8047.3307087 47.2440945 4368.1377953 7664.4921260 47.2440945 4354.6338583 7904.6889764 47.2440945 4352.3622047 7909.8188976 47.2440945 4351.9133858 7914.7913386 47.2440945 4350.5826772 8052.5944882 47.2440945 4350.3700787 7919.4527559 47.2440945 4348.4055118 7923.6692913 47.2440945 4345.4527559 7927.3110236 47.2440945 4341.8149606 7930.2637795 47.2440945 4337.5984252 7930.9527559 47.2440945 4336.4055118 7932.9448819 47.2440945 4332.2204724 8055.0157480 47.2440945 4331.9921260 7934.2637795 47.2440945 4327.7795276 7934.8661417 47.2440945 4323.1850394 7934.8070866 47.2440945 4320.9015748 7934.7440945 47.2440945 4318.5551181 7933.9015748 47.2440945 4314.0000000 8054.5314961 47.2440945 4313.4645669 8051.1535433 47.2440945 4295.2440945 7918.4763780 47.2440945 4256.4409449 8002.4015748 47.2440945 4113.3031496 8001.9960630 47.2440945 4111.7834646 7857.7480315 47.2440945 4029.7874016 7839.1574803 47.2440945 3960.4133858 7825.1771654 47.2440945 3908.2334646 7823.6299213 47.2440945 3903.8657480 7822.5118110 47.2440945 3901.8027559 7821.4173228 47.2440945 3899.7940945 7818.5984252 47.2440945 3896.1177165 7942.5433071 47.2440945 3889.9102362 7815.2362205 47.2440945 3892.9283465 7811.4173228 47.2440945 3890.3039370 7810.2244094 47.2440945 3889.6149606 7805.5590551 47.2440945 3887.4397638 7800.5905512 47.2440945 3886.1074803 7795.4606299 47.2440945 3885.6590551 7587.4488189 47.2440945 3879.3464567 7578.7362205 47.2440945 3873.2448819 7569.0944882 47.2440945 3868.7500000 7558.8188976 47.2440945 3865.9960630 7936.0984252 47.2440945 3865.8503937 6926.9645669 47.2440945 4625.3976378 6931.5275591 47.2440945 4623.9094488 6935.7874016 47.2440945 4621.7047244 7134.9842520 47.2440945 4620.6535433 6939.6338583 47.2440945 4618.8385827 6942.9645669 47.2440945 4615.3858268 7127.4606299 47.2440945 4613.1338583 6945.6929134 47.2440945 4611.4370079 7121.3582677 47.2440945 4604.4173228 7116.8661417 47.2440945 4594.7795276 7114.1102362 47.2440945 4584.5039370 7113.1850394 47.2440945 4573.9055118 7114.1102362 47.2440945 4563.3110236 7116.8661417 47.2440945 4553.0354331 7121.3582677 47.2440945 4543.3937008 7150.8858268 47.2440945 4492.2519685 7156.9881890 47.2440945 4483.5393701 7164.5118110 47.2440945 4476.0157480 7173.2244094 47.2440945 4469.9173228 7603.4685039 47.2440945 4460.3267717 7594.7559055 47.2440945 4454.2283465 7203.7362205 47.2440945 4461.7401575 7361.2165354 47.2440945 4446.8503937 7193.1377953 47.2440945 4462.6692913 7327.0314961 47.2440945 4443.8582677 7311.2559055 47.2440945 4439.6338583 7044.9842520 47.2440945 4439.4606299 7182.8622047 47.2440945 4465.4212598 7047.0748031 47.2440945 4435.0314961 7293.8897638 47.2440945 4434.9803150 7048.4015748 47.2440945 4430.3188976 7048.9330709 47.2440945 4425.4488189 7048.6496063 47.2440945 4420.5629921 7262.7913386 47.2440945 4420.4763780 7047.5669291 47.2440945 4415.7874016 7045.7047244 47.2440945 4411.2559055 7234.6811024 47.2440945 4400.7952756 7221.9685039 47.2440945 4388.0826772 7210.4212598 47.2440945 4376.5314961 7027.5000000 47.2440945 4369.0984252 7190.7401575 47.2440945 4348.4251969 7014.9015748 47.2440945 4324.9409449 7176.2362205 47.2440945 4317.3267717 7167.3543307 47.2440945 4284.1811024 7008.1181102 47.2440945 4279.5275591 7007.3070866 47.2440945 4274.6968504 7005.7086614 47.2440945 4270.0708661 7003.3700787 47.2440945 4265.7716535 7000.3503937 47.2440945 4261.9173228 6996.7362205 47.2440945 4258.6141732 6992.6299213 47.2440945 4255.9527559 6988.1377953 47.2440945 4254.0078740 6983.3818898 47.2440945 4252.8346457 7077.8543307 47.2440945 4152.6181102 7067.5826772 47.2440945 4149.8622047 6620.0629921 47.2440945 4148.4251969 7057.9409449 47.2440945 4145.3661417 6606.2125984 47.2440945 4136.0511811 6590.5984252 47.2440945 4126.0000000 7006.7952756 47.2440945 4115.8385827 6998.0826772 47.2440945 4109.7401575 6990.5629921 47.2440945 4102.2165354 6989.5472441 47.2440945 4100.7637795 6984.4606299 47.2440945 4093.5039370 6979.9645669 47.2440945 4083.8622047 6977.2125984 47.2440945 4073.5905512 6976.2834646 47.2440945 4062.9921260 6977.2125984 47.2440945 4052.3937008 6979.9645669 47.2440945 4042.1220472 6984.4606299 47.2440945 4032.4803150 6990.5629921 47.2440945 4023.7677165 6998.0826772 47.2440945 4016.2440945 7006.7952756 47.2440945 4010.1456693 7016.4370079 47.2440945 4005.6496063 7458.5984252 47.2440945 3987.8346457 7457.6732283 47.2440945 3977.2362205 7458.5984252 47.2440945 3966.6377953 7461.3543307 47.2440945 3956.3661417 7026.7125984 47.2440945 4002.8937008 7191.1062992 47.2440945 3931.5232283 7186.4370079 47.2440945 3930.0452756 7182.0787402 47.2440945 3927.8165354 7178.1496063 47.2440945 3924.8984252 7174.7559055 47.2440945 3921.3708661 7171.9881890 47.2440945 3917.3314961 7084.2165354 47.2440945 3763.0220472 6134.8070866 47.2440945 3757.9507874 6129.5039370 47.2440945 3756.5303150 6124.5275591 47.2440945 3754.2094488 6120.0314961 47.2440945 3751.0606299 6115.8346457 47.2440945 3707.1389764 6116.1496063 47.2440945 3706.6877953 6113.0000000 47.2440945 3711.1850394 6921.0039370 47.2440945 3661.8992126 6902.6732283 47.2440945 3658.9299213 6885.0314961 47.2440945 3653.1236220 6134.8070866 47.2440945 3695.9157480 6129.5039370 47.2440945 3697.3370079 6124.5275591 47.2440945 3699.6570866 6120.0314961 47.2440945 3702.8059055 6292.2874016 47.2440945 3485.1870079 6286.9842520 47.2440945 3483.7665354 6282.0078740 47.2440945 3481.4456693 6277.5118110 47.2440945 3478.2964567 6273.6299213 47.2440945 3474.4145669 6270.4803150 47.2440945 3469.9169291 6268.1614173 47.2440945 3464.9413386 6266.7401575 47.2440945 3459.6385827 6266.2598425 47.2440945 3454.1692913 6266.7401575 47.2440945 3448.7000000 6268.1614173 47.2440945 3443.3968504 6270.4803150 47.2440945 3438.4212598 6292.2874016 47.2440945 3423.1515748 6286.9842520 47.2440945 3424.5732283 6282.0078740 47.2440945 3426.8933071 6277.5118110 47.2440945 3430.0417323 6273.6299213 47.2440945 3433.9236220 6110.6811024 47.2440945 3716.1610236 6109.2598425 47.2440945 3721.4637795 6108.7795276 47.2440945 3726.9330709 6109.2598425 47.2440945 3732.4023622 6110.6811024 47.2440945 3737.7055118 6113.0000000 47.2440945 3742.6811024 6116.1496063 47.2440945 3747.1783465 3986.7913386 47.2440945 2517.7933071 3981.4881890 47.2440945 2516.3724409 3976.5118110 47.2440945 2514.0519685 3967.8188976 47.2440945 2466.9811024 3968.1338583 47.2440945 2466.5303150 3964.9842520 47.2440945 2471.0275591 3986.7913386 47.2440945 2455.7582677 3981.4881890 47.2440945 2457.1791339 3976.5118110 47.2440945 2459.4992126 3972.0157480 47.2440945 2462.6484252 3962.6653543 47.2440945 2476.0031496 3961.2440945 47.2440945 2481.3062992 3960.7637795 47.2440945 2486.7755906 3961.2440945 47.2440945 2492.2448819 3962.6653543 47.2440945 2497.5480315 3964.9842520 47.2440945 2502.5236220 3968.1338583 47.2440945 2507.0208661 3972.0157480 47.2440945 2510.9031496 7899.5629921 47.2440945 4351.9133858 7894.5905512 47.2440945 4350.5826772 7654.8503937 47.2440945 4350.1377953 7889.9251969 47.2440945 4348.4055118 7644.5748031 47.2440945 4347.3818898 7633.9803150 47.2440945 4346.4566929 7871.5196850 47.2440945 4337.7755906 7676.2913386 47.2440945 4497.2598425 7674.5275591 47.2440945 4497.1023622 7664.2519685 47.2440945 4494.3503937 7256.5826772 47.2440945 4492.2519685 7654.6102362 47.2440945 4489.8543307 7250.4803150 47.2440945 4483.5393701 7242.9606299 47.2440945 4476.0157480 7234.2480315 47.2440945 4469.9173228 7224.6062992 47.2440945 4465.4212598 7214.3307087 47.2440945 4462.6692913 7587.2322835 47.2440945 4446.7047244 7586.2165354 47.2440945 4445.2519685 7387.5511811 47.2440945 4444.5472441 7395.3976378 47.2440945 4443.8582677 7581.1299213 47.2440945 4437.9921260 7428.5433071 47.2440945 4434.9803150 7576.6377953 47.2440945 4428.3503937 7459.6417323 47.2440945 4420.4763780 7573.8818898 47.2440945 4418.0787402 7572.9566929 47.2440945 4407.4803150 7487.7480315 47.2440945 4400.7952756 7573.8818898 47.2440945 4396.8818898 7495.6062992 47.2440945 4392.9409449 7576.6377953 47.2440945 4386.6102362 7581.1299213 47.2440945 4376.9685039 7512.0118110 47.2440945 4376.5314961 7587.2322835 47.2440945 4368.2559055 7594.7559055 47.2440945 4360.7322835 7603.4685039 47.2440945 4354.6338583 7613.1102362 47.2440945 4350.1377953 7531.6929134 47.2440945 4348.4251969 7623.3818898 47.2440945 4347.3818898 7546.1968504 47.2440945 4317.3267717 7555.0748031 47.2440945 4284.1811024 7729.8110236 47.2440945 4255.9606299 7725.7874016 47.2440945 4253.1692913 7558.0669291 47.2440945 4250.0000000 7722.2795276 47.2440945 4249.7519685 7719.3858268 47.2440945 4245.8031496 7717.1850394 47.2440945 4241.4291339 7715.7401575 47.2440945 4236.7519685 7715.6574803 47.2440945 4236.1614173 7715.0826772 47.2440945 4231.8976378 7555.0748031 47.2440945 4215.8188976 7710.1181102 47.2440945 4191.1771654 7546.1968504 47.2440945 4182.6732283 7709.0629921 47.2440945 4182.5354331 7531.6929134 47.2440945 4151.5748031 7696.1929134 47.2440945 4134.5000000 7692.7874016 47.2440945 4126.4921260 7512.0118110 47.2440945 4123.4685039 7500.4645669 47.2440945 4111.9173228 7487.7480315 47.2440945 4099.2047244 7676.7244094 47.2440945 4088.7440945 7674.8661417 47.2440945 4084.2125984 7459.6417323 47.2440945 4079.5236220 7673.7795276 47.2440945 4079.4370079 7673.5000000 47.2440945 4074.5511811 7674.0314961 47.2440945 4069.6811024 7428.5433071 47.2440945 4065.0196850 7675.3582677 47.2440945 4064.9685039 7677.4448819 47.2440945 4060.5393701 7395.3976378 47.2440945 4056.1417323 7529.2913386 47.2440945 4037.3307087 7539.5669291 47.2440945 4034.5787402 7549.2086614 47.2440945 4030.0826772 7557.9212598 47.2440945 4023.9842520 7565.4409449 47.2440945 4016.4606299 7571.5433071 47.2440945 4007.7480315 7601.0708661 47.2440945 3956.6062992 7605.5669291 47.2440945 3946.9645669 7608.3188976 47.2440945 3936.6897638 7609.2480315 47.2440945 3926.0933071 7608.3188976 47.2440945 3915.4968504 7761.2322835 47.2440945 3915.4220472 7605.5669291 47.2440945 3905.2216535 7769.8897638 47.2440945 3900.4228346 7772.8425197 47.2440945 3896.2070866 7601.0708661 47.2440945 3895.5811024 7776.4803150 47.2440945 3892.5673228 7780.6968504 47.2440945 3889.6149606 7785.3622047 47.2440945 3887.4397638 7594.9685039 47.2440945 3886.8677165 7790.3346457 47.2440945 3886.1074803 7226.3503937 47.2440945 4928.1377953 7137.8464567 263.7795276 4877.0433071 7137.8464567 47.2440945 4877.0433071 7226.3503937 263.7795276 4928.1377953 7226.3503937 263.7795276 4928.1377953 7226.3503937 47.2440945 4928.1377953 7137.8464567 263.7795276 4877.0433071 7137.8464567 47.2440945 4877.0433071 6820.3110236 263.7795276 4693.7125984 6820.3110236 47.2440945 4693.7125984 6820.3110236 263.7795276 4693.7125984 6820.3110236 47.2440945 4693.7125984 6806.2834646 263.7795276 4684.2086614 6806.2834646 47.2440945 4684.2086614 6806.2834646 263.7795276 4684.2086614 6806.2834646 47.2440945 4684.2086614 6793.7559055 263.7795276 4672.7952756 6793.7559055 47.2440945 4672.7952756 6793.7559055 263.7795276 4672.7952756 6793.7559055 47.2440945 4672.7952756 6782.9960630 47.2440945 4659.7086614 6782.9960630 263.7795276 4659.7086614 6782.9960630 263.7795276 4659.7086614 6782.9960630 47.2440945 4659.7086614 6725.0590551 47.2440945 4562.2598425 6725.0590551 263.7795276 4562.2598425 6725.0590551 263.7795276 4562.2598425 6725.0590551 47.2440945 4562.2598425 6683.4055118 263.7795276 4456.8188976 6683.4055118 47.2440945 4456.8188976 6683.4055118 263.7795276 4456.8188976 6683.4055118 47.2440945 4456.8188976 6659.0984252 47.2440945 4346.0826772 6659.0984252 263.7795276 4346.0826772 6659.0984252 263.7795276 4346.0826772 6659.0984252 47.2440945 4346.0826772 6652.7598425 263.7795276 4232.8897638 6652.7598425 47.2440945 4232.8897638 6652.7598425 263.7795276 4232.8897638 6652.7598425 47.2440945 4232.8897638 6651.7480315 47.2440945 4214.3464567 6651.7480315 263.7795276 4214.3464567 6651.7480315 263.7795276 4214.3464567 6651.7480315 47.2440945 4214.3464567 6647.8425197 47.2440945 4196.1889764 6647.8425197 263.7795276 4196.1889764 6647.8425197 263.7795276 4196.1889764 6647.8425197 47.2440945 4196.1889764 6641.1377953 263.7795276 4178.8700787 6641.1377953 47.2440945 4178.8700787 6641.1377953 263.7795276 4178.8700787 6641.1377953 47.2440945 4178.8700787 6631.7992126 47.2440945 4162.8149606 6631.7992126 263.7795276 4162.8149606 6631.7992126 263.7795276 4162.8149606 6631.7992126 47.2440945 4162.8149606 6620.0629921 47.2440945 4148.4251969 6620.0629921 263.7795276 4148.4251969 6620.0629921 263.7795276 4148.4251969 6620.0629921 47.2440945 4148.4251969 6606.2125984 263.7795276 4136.0511811 6606.2125984 47.2440945 4136.0511811 6606.2125984 263.7795276 4136.0511811 6606.2125984 47.2440945 4136.0511811 6590.5984252 263.7795276 4126.0000000 6590.5984252 47.2440945 4126.0000000 6590.5984252 263.7795276 4126.0000000 6590.5984252 47.2440945 4126.0000000 3271.2614173 263.7795276 2342.1566929 3271.2614173 47.2440945 2342.1566929 3271.2614173 263.7795276 2342.1566929 3271.2614173 47.2440945 2342.1566929 3252.3460630 263.7795276 2334.0283465 3252.3460630 47.2440945 2334.0283465 3252.3460630 263.7795276 2334.0283465 3252.3460630 47.2440945 2334.0283465 3232.3062992 263.7795276 2329.3082677 3232.3062992 47.2440945 2329.3082677 3232.3062992 263.7795276 2329.3082677 3232.3062992 47.2440945 2329.3082677 3211.7515748 263.7795276 2328.1397638 3211.7515748 47.2440945 2328.1397638 3211.7515748 263.7795276 2328.1397638 3211.7515748 47.2440945 2328.1397638 2944.2188976 263.7795276 2336.2948819 2944.2188976 47.2440945 2336.2948819 2944.2188976 263.7795276 2336.2948819 2944.2188976 47.2440945 2336.2948819 2469.7374016 263.7795276 2062.3527559 2469.7374016 47.2440945 2062.3527559 2469.7374016 263.7795276 2062.3527559 2469.7374016 47.2440945 2062.3527559 2469.7374016 47.2440945 1698.6673228 2469.7374016 263.7795276 1698.6673228 2469.7374016 263.7795276 1698.6673228 2469.7374016 47.2440945 1698.6673228 2705.9578740 47.2440945 1289.5216535 2705.9578740 263.7795276 1289.5216535 2705.9578740 263.7795276 1289.5216535 2705.9578740 47.2440945 1289.5216535 3020.9185039 263.7795276 1107.6791339 3020.9185039 47.2440945 1107.6791339 3020.9185039 47.2440945 1107.6791339 3020.9185039 263.7795276 1107.6791339 3495.4000000 263.7795276 1381.6208661 3495.4000000 47.2440945 1381.6208661 3495.4000000 47.2440945 1381.6208661 3495.4000000 263.7795276 1381.6208661 3622.1035433 47.2440945 1617.3885827 3622.1035433 263.7795276 1617.3885827 3622.1035433 263.7795276 1617.3885827 3622.1035433 47.2440945 1617.3885827 3633.3937008 263.7795276 1634.6051181 3633.3937008 47.2440945 1634.6051181 3633.3937008 263.7795276 1634.6051181 3633.3937008 47.2440945 1634.6051181 3647.5011811 47.2440945 1649.6000000 3647.5011811 263.7795276 1649.6000000 3647.5011811 263.7795276 1649.6000000 3647.5011811 47.2440945 1649.6000000 3663.9976378 263.7795276 1661.9173228 3663.9976378 47.2440945 1661.9173228 3663.9976378 47.2440945 1661.9173228 3663.9976378 263.7795276 1661.9173228 6868.5196850 263.7795276 3644.6240157 6868.5196850 47.2440945 3644.6240157 6868.5196850 47.2440945 3644.6240157 6868.5196850 263.7795276 3644.6240157 6885.0314961 263.7795276 3653.1236220 6885.0314961 47.2440945 3653.1236220 6885.0314961 47.2440945 3653.1236220 6885.0314961 263.7795276 3653.1236220 6902.6732283 263.7795276 3658.9299213 6902.6732283 47.2440945 3658.9299213 6902.6732283 47.2440945 3658.9299213 6902.6732283 263.7795276 3658.9299213 6921.0039370 263.7795276 3661.8992126 6921.0039370 47.2440945 3661.8992126 6921.0039370 47.2440945 3661.8992126 6921.0039370 263.7795276 3661.8992126 6939.5748031 263.7795276 3661.9582677 6939.5748031 47.2440945 3661.9582677 6939.5748031 47.2440945 3661.9582677 6939.5748031 263.7795276 3661.9582677 6957.9291339 263.7795276 3659.1047244 6957.9291339 47.2440945 3659.1047244 6957.9291339 47.2440945 3659.1047244 6957.9291339 263.7795276 3659.1047244 6975.6062992 263.7795276 3653.4106299 6975.6062992 47.2440945 3653.4106299 6975.6062992 47.2440945 3653.4106299 6975.6062992 263.7795276 3653.4106299 6992.1692913 263.7795276 3645.0153543 6992.1692913 47.2440945 3645.0153543 6992.1692913 47.2440945 3645.0153543 6992.1692913 263.7795276 3645.0153543 7093.3661417 263.7795276 3593.9070866 7093.3661417 47.2440945 3593.9070866 7093.3661417 47.2440945 3593.9070866 7093.3661417 263.7795276 3593.9070866 7201.4212598 263.7795276 3559.5897638 7201.4212598 47.2440945 3559.5897638 7201.4212598 47.2440945 3559.5897638 7201.4212598 263.7795276 3559.5897638 7313.5629921 263.7795276 3542.9433071 7313.5629921 47.2440945 3542.9433071 7313.5629921 47.2440945 3542.9433071 7313.5629921 263.7795276 3542.9433071 7426.9251969 263.7795276 3544.3913386 7426.9251969 47.2440945 3544.3913386 7426.9251969 47.2440945 3544.3913386 7426.9251969 263.7795276 3544.3913386 7443.6377953 263.7795276 3547.1688976 7443.6377953 47.2440945 3547.1688976 7443.6377953 47.2440945 3547.1688976 7443.6377953 263.7795276 3547.1688976 7459.7834646 263.7795276 3552.3094488 7459.7834646 47.2440945 3552.3094488 7459.7834646 47.2440945 3552.3094488 7459.7834646 263.7795276 3552.3094488 7475.0275591 263.7795276 3559.7062992 7475.0275591 47.2440945 3559.7062992 7475.0275591 47.2440945 3559.7062992 7475.0275591 263.7795276 3559.7062992 7881.0669291 263.7795276 3794.1326772 7881.0669291 47.2440945 3794.1326772 7881.0669291 47.2440945 3794.1326772 7881.0669291 263.7795276 3794.1326772 7896.3385827 263.7795276 3804.6303150 7896.3385827 47.2440945 3804.6303150 7896.3385827 47.2440945 3804.6303150 7896.3385827 263.7795276 3804.6303150 7909.7834646 263.7795276 3817.3877953 7909.7834646 47.2440945 3817.3877953 7909.7834646 47.2440945 3817.3877953 7909.7834646 263.7795276 3817.3877953 7921.0669291 47.2440945 3832.0917323 7921.0669291 263.7795276 3832.0917323 7921.0669291 263.7795276 3832.0917323 7921.0669291 47.2440945 3832.0917323 7929.9094488 263.7795276 3848.3795276 7929.9094488 47.2440945 3848.3795276 7929.9094488 263.7795276 3848.3795276 7929.9094488 47.2440945 3848.3795276 7936.0984252 47.2440945 3865.8503937 7936.0984252 263.7795276 3865.8503937 7936.0984252 263.7795276 3865.8503937 7936.0984252 47.2440945 3865.8503937 7942.5433071 47.2440945 3889.9102362 7942.5433071 263.7795276 3889.9102362 7942.5433071 263.7795276 3889.9102362 7942.5433071 47.2440945 3889.9102362 8001.9960630 47.2440945 4111.7834646 8001.9960630 263.7795276 4111.7834646 8001.9960630 263.7795276 4111.7834646 8001.9960630 47.2440945 4111.7834646 8002.4015748 263.7795276 4113.3031496 8002.4015748 47.2440945 4113.3031496 8002.4015748 263.7795276 4113.3031496 8002.4015748 47.2440945 4113.3031496 8051.1535433 47.2440945 4295.2440945 8051.1535433 263.7795276 4295.2440945 8051.1535433 263.7795276 4295.2440945 8051.1535433 47.2440945 4295.2440945 8054.5314961 47.2440945 4313.4645669 8054.5314961 263.7795276 4313.4645669 8054.5314961 263.7795276 4313.4645669 8054.5314961 47.2440945 4313.4645669 8055.0157480 263.7795276 4331.9921260 8055.0157480 47.2440945 4331.9921260 8055.0157480 263.7795276 4331.9921260 8055.0157480 47.2440945 4331.9921260 8052.5944882 47.2440945 4350.3700787 8052.5944882 263.7795276 4350.3700787 8052.5944882 263.7795276 4350.3700787 8052.5944882 47.2440945 4350.3700787 8047.3307087 47.2440945 4368.1377953 8047.3307087 263.7795276 4368.1377953 8047.3307087 263.7795276 4368.1377953 8047.3307087 47.2440945 4368.1377953 8040.7007874 47.2440945 4382.0393701 8039.3543307 47.2440945 4384.8661417 8040.7007874 263.7795276 4382.0393701 8039.3543307 263.7795276 4384.8661417 8040.7007874 263.7795276 4382.0393701 8039.3543307 47.2440945 4384.8661417 8039.3543307 263.7795276 4384.8661417 8040.7007874 47.2440945 4382.0393701 7881.4645669 47.2440945 4658.3346457 7899.9212598 47.2440945 4626.3700787 7881.4645669 263.7795276 4658.3346457 7899.9212598 263.7795276 4626.3700787 7899.9212598 263.7795276 4626.3700787 7881.4645669 263.7795276 4658.3346457 7881.4645669 47.2440945 4658.3346457 7899.9212598 47.2440945 4626.3700787 7817.0826772 47.2440945 4769.8503937 7817.0826772 263.7795276 4769.8503937 7817.0826772 263.7795276 4769.8503937 7817.0826772 47.2440945 4769.8503937 7806.5866142 263.7795276 4785.1259843 7806.5866142 47.2440945 4785.1259843 7806.5866142 263.7795276 4785.1259843 7806.5866142 47.2440945 4785.1259843 7793.8267717 47.2440945 4798.5669291 7793.8267717 263.7795276 4798.5669291 7793.8267717 263.7795276 4798.5669291 7793.8267717 47.2440945 4798.5669291 7779.1259843 263.7795276 4809.8503937 7779.1259843 47.2440945 4809.8503937 7779.1259843 263.7795276 4809.8503937 7779.1259843 47.2440945 4809.8503937 7762.8346457 263.7795276 4818.6929134 7762.8346457 47.2440945 4818.6929134 7762.8346457 263.7795276 4818.6929134 7762.8346457 47.2440945 4818.6929134 7745.3661417 263.7795276 4824.8818898 7745.3661417 47.2440945 4824.8818898 7745.3661417 263.7795276 4824.8818898 7745.3661417 47.2440945 4824.8818898 7315.9724409 263.7795276 4939.9370079 7315.9724409 47.2440945 4939.9370079 7315.9724409 263.7795276 4939.9370079 7315.9724409 47.2440945 4939.9370079 7297.7480315 263.7795276 4943.3149606 7297.7480315 47.2440945 4943.3149606 7297.7480315 263.7795276 4943.3149606 7297.7480315 47.2440945 4943.3149606 7279.2204724 263.7795276 4943.7992126 7279.2204724 47.2440945 4943.7992126 7279.2204724 263.7795276 4943.7992126 7279.2204724 47.2440945 4943.7992126 7260.8464567 263.7795276 4941.3818898 7260.8464567 47.2440945 4941.3818898 7260.8464567 263.7795276 4941.3818898 7260.8464567 47.2440945 4941.3818898 7243.0787402 263.7795276 4936.1141732 7243.0787402 47.2440945 4936.1141732 7243.0787402 263.7795276 4936.1141732 7243.0787402 47.2440945 4936.1141732 7229.1771654 47.2440945 4929.4842520 7229.1771654 263.7795276 4929.4842520 7229.1771654 263.7795276 4929.4842520 7229.1771654 47.2440945 4929.4842520 - - - - - - - - - - 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.4655571 0.0000000 0.8850179 -0.4999896 -0.0000002 0.8660314 -0.4999896 -0.0000002 0.8660314 -0.4655571 0.0000000 0.8850179 0.4655571 -0.0000000 -0.8850179 0.4655571 -0.0000000 -0.8850179 0.4999896 0.0000002 -0.8660314 0.4999896 0.0000002 -0.8660314 -0.5307967 -0.0000002 0.8474992 -0.5307967 -0.0000002 0.8474992 0.5307967 0.0000002 -0.8474992 0.5307967 0.0000002 -0.8474992 -0.6187776 0.0000000 0.7855662 -0.6187776 0.0000000 0.7855662 0.6187776 -0.0000000 -0.7855662 0.6187776 -0.0000000 -0.7855662 -0.7248236 0.0000000 0.6889345 -0.7248236 0.0000000 0.6889345 0.7248236 -0.0000000 -0.6889345 0.7248236 -0.0000000 -0.6889345 -0.8183494 -0.0000000 0.5747211 -0.8183494 -0.0000000 0.5747211 0.8183494 0.0000000 -0.5747211 0.8183494 0.0000000 -0.5747211 -0.8976850 -0.0000000 0.4406377 -0.8976850 -0.0000000 0.4406377 0.8976850 0.0000000 -0.4406377 0.8976850 0.0000000 -0.4406377 -0.9564669 -0.0000000 0.2918409 -0.9564669 -0.0000000 0.2918409 0.9564669 0.0000000 -0.2918409 0.9564669 0.0000000 -0.2918409 -0.9907651 0.0000000 0.1355896 -0.9907651 0.0000000 0.1355896 0.9907651 -0.0000000 -0.1355896 0.9907651 -0.0000000 -0.1355896 -0.9984755 0.0000000 0.0551971 -0.9984755 0.0000000 0.0551971 0.9984755 -0.0000000 -0.0551971 0.9984755 -0.0000000 -0.0551971 -0.9911437 0.0000000 0.1327935 -0.9911437 0.0000000 0.1327935 0.9911437 -0.0000000 -0.1327935 0.9911437 -0.0000000 -0.1327935 -0.9580680 0.0000000 0.2865409 -0.9580680 0.0000000 0.2865409 0.9580680 -0.0000000 -0.2865409 0.9580680 -0.0000000 -0.2865409 -0.9012743 0.0000000 0.4332489 -0.9012743 0.0000000 0.4332489 0.9012743 -0.0000000 -0.4332489 0.9012743 -0.0000000 -0.4332489 -0.8222172 0.0000000 0.5691738 -0.8222172 0.0000000 0.5691738 0.8222172 -0.0000000 -0.5691738 0.8222172 -0.0000000 -0.5691738 -0.7228300 0.0000000 0.6910259 -0.7228300 0.0000000 0.6910259 0.7228300 -0.0000000 -0.6910259 0.7228300 -0.0000000 -0.6910259 -0.6056276 0.0000000 0.7957482 -0.6056276 0.0000000 0.7957482 0.6056276 -0.0000000 -0.7957482 0.6056276 -0.0000000 -0.7957482 -0.5077208 0.0000002 0.8615217 -0.5077208 0.0000002 0.8615217 0.5077208 -0.0000002 -0.8615217 0.5077208 -0.0000002 -0.8615217 -0.4345103 0.0000002 0.9006669 -0.4345103 0.0000002 0.9006669 0.4345103 -0.0000002 -0.9006669 0.4345103 -0.0000002 -0.9006669 -0.3132293 0.0000000 0.9496775 -0.3132293 0.0000000 0.9496775 0.3132293 -0.0000000 -0.9496775 0.3132293 -0.0000000 -0.9496775 -0.1435557 -0.0000000 0.9896422 -0.1435557 -0.0000000 0.9896422 0.1435557 0.0000000 -0.9896422 0.1435557 0.0000000 -0.9896422 -0.0131566 -0.0000002 0.9999134 -0.0131566 -0.0000002 0.9999134 0.0131566 0.0000002 -0.9999134 0.0131566 0.0000002 -0.9999134 -0.2440722 -0.0000002 0.9697571 -0.2440722 -0.0000002 0.9697571 0.2440722 0.0000002 -0.9697571 0.2440722 0.0000002 -0.9697571 -0.8660254 -0.0000000 0.4999999 -0.8660254 -0.0000000 0.4999999 0.8660254 0.0000000 -0.4999999 0.8660254 0.0000000 -0.4999999 -0.9659258 -0.0000001 -0.2588191 -0.9659258 -0.0000001 -0.2588191 0.9659258 0.0000001 0.2588191 0.9659258 0.0000001 0.2588191 -0.7071067 0.0000003 -0.7071069 -0.7071067 0.0000003 -0.7071069 0.7071067 -0.0000003 0.7071069 0.7071067 -0.0000003 0.7071069 -0.0000002 0.0000004 -1.0000000 -0.0000002 0.0000004 -1.0000000 0.0000002 -0.0000004 1.0000000 0.0000002 -0.0000004 1.0000000 0.7177982 -0.0000005 -0.6962512 0.7177982 -0.0000005 -0.6962512 -0.7177982 0.0000005 0.6962512 -0.7177982 0.0000005 0.6962512 0.8593627 -0.0000005 -0.5113666 0.8593627 -0.0000005 -0.5113666 -0.8593627 0.0000005 0.5113666 -0.8593627 0.0000005 0.5113666 0.7852668 0.0000000 -0.6191575 0.7852668 0.0000000 -0.6191575 -0.7852668 -0.0000000 0.6191575 -0.7852668 -0.0000000 0.6191575 0.6658423 -0.0000000 -0.7460925 0.6658423 -0.0000000 -0.7460925 -0.6658423 0.0000000 0.7460925 -0.6658423 0.0000000 0.7460925 0.5627571 0.0000003 -0.8266223 0.5627571 0.0000003 -0.8266223 -0.5627571 -0.0000003 0.8266223 -0.5627571 -0.0000003 0.8266223 0.4922985 0.0000003 -0.8704265 0.4922985 0.0000003 -0.8704265 -0.4922985 -0.0000003 0.8704265 -0.4922985 -0.0000003 0.8704265 0.3863498 -0.0000000 -0.9223523 0.3863498 -0.0000000 -0.9223523 -0.3863498 0.0000000 0.9223523 -0.3863498 0.0000000 0.9223523 0.2369965 -0.0000000 -0.9715105 0.2369965 -0.0000000 -0.9715105 -0.2369965 0.0000000 0.9715105 -0.2369965 0.0000000 0.9715105 0.0817933 -0.0000000 -0.9966493 0.0817933 -0.0000000 -0.9966493 -0.0817933 0.0000000 0.9966493 -0.0817933 0.0000000 0.9966493 -0.0754557 0.0000000 -0.9971492 -0.0754557 0.0000000 -0.9971492 0.0754557 -0.0000000 0.9971492 0.0754557 -0.0000000 0.9971492 -0.2308275 -0.0000000 -0.9729947 -0.2308275 -0.0000000 -0.9729947 0.2308275 0.0000000 0.9729947 0.2308275 0.0000000 0.9729947 -0.3805348 -0.0000000 -0.9247666 -0.3805348 -0.0000000 -0.9247666 0.3805348 0.0000000 0.9247666 0.3805348 0.0000000 0.9247666 -0.4514583 0.0000000 -0.8922922 -0.4514583 0.0000000 -0.8922922 0.4514583 -0.0000000 0.8922922 0.4514583 -0.0000000 0.8922922 -0.3779613 -0.0000001 -0.9258214 -0.3779613 -0.0000001 -0.9258214 0.3779613 0.0000001 0.9258214 0.3779613 0.0000001 0.9258214 -0.2254850 -0.0000001 -0.9742466 -0.2254850 -0.0000001 -0.9742466 0.2254850 0.0000001 0.9742466 0.2254850 0.0000001 0.9742466 -0.0672455 -0.0000001 -0.9977365 -0.0672455 -0.0000001 -0.9977365 0.0672455 0.0000001 0.9977365 0.0672455 0.0000001 0.9977365 0.0886150 -0.0000001 -0.9960660 0.0886150 -0.0000001 -0.9960660 -0.0886150 0.0000001 0.9960660 -0.0886150 0.0000001 0.9960660 0.2342666 0.0000000 -0.9721724 0.2342666 0.0000000 -0.9721724 -0.2342666 -0.0000000 0.9721724 -0.2342666 -0.0000000 0.9721724 0.3709194 0.0000000 -0.9286651 0.3709194 0.0000000 -0.9286651 -0.3709194 -0.0000000 0.9286651 -0.3709194 -0.0000000 0.9286651 0.4685765 0.0000001 -0.8834229 0.4685765 0.0000001 -0.8834229 -0.4685765 -0.0000001 0.8834229 -0.4685765 -0.0000001 0.8834229 0.5336469 -0.0000000 -0.8457074 0.5336469 -0.0000000 -0.8457074 -0.5336469 0.0000000 0.8457074 -0.5336469 0.0000000 0.8457074 0.6293318 -0.0000001 -0.7771368 0.6293318 -0.0000001 -0.7771368 -0.6293318 0.0000001 0.7771368 -0.6293318 0.0000001 0.7771368 0.7431181 -0.0000000 -0.6691603 0.7431181 -0.0000000 -0.6691603 -0.7431181 0.0000000 0.6691603 -0.7431181 0.0000000 0.6691603 0.8386753 0.0000000 -0.5446317 0.8386753 0.0000000 -0.5446317 -0.8386753 -0.0000000 0.5446317 -0.8386753 -0.0000000 0.5446317 0.9135325 0.0000000 -0.4067658 0.9135325 0.0000000 -0.4067658 -0.9135325 -0.0000000 0.4067658 -0.9135325 -0.0000000 0.4067658 0.9550143 0.0000000 -0.2965596 0.9550143 0.0000000 -0.2965596 -0.9550143 -0.0000000 0.2965596 -0.9550143 -0.0000000 0.2965596 0.9659344 0.0000007 -0.2587872 0.9659344 0.0000007 -0.2587872 -0.9659344 -0.0000007 0.2587872 -0.9659344 -0.0000007 0.2587872 0.9660586 0.0000007 -0.2583231 0.9660586 0.0000007 -0.2583231 -0.9660586 -0.0000007 0.2583231 -0.9660586 -0.0000007 0.2583231 0.9660590 0.0000000 -0.2583214 0.9660590 0.0000000 -0.2583214 -0.9660590 -0.0000000 0.2583214 -0.9660590 -0.0000000 0.2583214 0.9753359 0.0000000 -0.2207256 0.9753359 0.0000000 -0.2207256 -0.9753359 -0.0000000 0.2207256 -0.9753359 -0.0000000 0.2207256 0.9945217 0.0000000 -0.1045301 0.9945217 0.0000000 -0.1045301 -0.9945217 -0.0000000 0.1045301 -0.9945217 -0.0000000 0.1045301 0.9986258 0.0000000 0.0524074 0.9986258 0.0000000 0.0524074 -0.9986258 -0.0000000 -0.0524074 -0.9986258 -0.0000000 -0.0524074 0.9781338 -0.0000000 0.2079764 0.9781338 -0.0000000 0.2079764 -0.9781338 0.0000000 -0.2079764 -0.9781338 0.0000000 -0.2079764 0.9335918 -0.0000000 0.3583382 0.9335918 -0.0000000 0.3583382 -0.9335918 0.0000000 -0.3583382 -0.9335918 0.0000000 -0.3583382 0.9026292 -0.0000000 0.4304190 0.8850101 0.0000002 0.4655719 0.9026292 -0.0000000 0.4304190 0.8850101 0.0000002 0.4655719 -0.9026292 0.0000000 -0.4304190 -0.8850101 -0.0000002 -0.4655719 -0.8850101 -0.0000002 -0.4655719 -0.9026292 0.0000000 -0.4304190 0.8660269 0.0000006 0.4999974 0.8660226 0.0000003 0.5000049 0.8660269 0.0000006 0.4999974 0.8660226 0.0000003 0.5000049 -0.8660226 -0.0000003 -0.5000049 -0.8660269 -0.0000006 -0.4999974 -0.8660269 -0.0000006 -0.4999974 -0.8660226 -0.0000003 -0.5000049 0.8457637 0.0000010 0.5335576 0.8457637 0.0000010 0.5335576 -0.8457637 -0.0000010 -0.5335576 -0.8457637 -0.0000010 -0.5335576 0.7771248 0.0000006 0.6293466 0.7771248 0.0000006 0.6293466 -0.7771248 -0.0000006 -0.6293466 -0.7771248 -0.0000006 -0.6293466 0.6691101 0.0000000 0.7431633 0.6691101 0.0000000 0.7431633 -0.6691101 -0.0000000 -0.7431633 -0.6691101 -0.0000000 -0.7431633 0.5446369 0.0000000 0.8386720 0.5446369 0.0000000 0.8386720 -0.5446369 -0.0000000 -0.8386720 -0.5446369 -0.0000000 -0.8386720 0.4067436 0.0000000 0.9135424 0.4067436 0.0000000 0.9135424 -0.4067436 -0.0000000 -0.9135424 -0.4067436 -0.0000000 -0.9135424 0.2966151 -0.0000005 0.9549971 0.2966151 -0.0000005 0.9549971 -0.2966151 0.0000005 -0.9549971 -0.2966151 0.0000005 -0.9549971 0.2207035 -0.0000005 0.9753410 0.2207035 -0.0000005 0.9753410 -0.2207035 0.0000005 -0.9753410 -0.2207035 0.0000005 -0.9753410 0.1045109 0.0000000 0.9945237 0.1045109 0.0000000 0.9945237 -0.1045109 -0.0000000 -0.9945237 -0.1045109 -0.0000000 -0.9945237 -0.0523160 0.0000000 0.9986306 -0.0523160 0.0000000 0.9986306 0.0523160 -0.0000000 -0.9986306 0.0523160 -0.0000000 -0.9986306 -0.2079866 0.0000000 0.9781317 -0.2079866 0.0000000 0.9781317 0.2079866 -0.0000000 -0.9781317 0.2079866 -0.0000000 -0.9781317 -0.3584333 0.0000000 0.9335553 -0.3584333 0.0000000 0.9335553 0.3584333 -0.0000000 -0.9335553 0.3584333 -0.0000000 -0.9335553 -0.4304190 0.0000000 0.9026292 -0.4304190 0.0000000 0.9026292 0.4304190 -0.0000000 -0.9026292 0.4304190 -0.0000000 -0.9026292 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 5 6 7 5 7 8 5 8 9 9 8 10 9 10 11 9 11 12 12 11 13 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 18 13 19 19 13 20 20 13 21 21 13 22 22 13 23 23 13 24 24 13 25 25 13 26 26 13 27 27 13 28 28 13 29 29 13 30 29 30 31 29 31 32 32 31 33 32 33 34 32 34 35 32 35 36 36 35 37 36 37 38 36 38 39 39 38 40 40 38 41 41 38 42 41 42 43 41 43 44 44 43 45 44 45 46 46 45 47 46 47 48 48 47 49 48 49 50 48 50 51 48 51 52 48 52 53 48 53 54 48 54 55 55 54 56 55 56 57 55 57 58 58 57 59 59 57 60 59 60 61 59 61 62 59 62 63 63 62 64 63 64 65 63 65 66 63 66 67 63 67 68 68 67 69 68 69 70 68 70 71 71 70 72 71 72 73 73 72 74 73 74 75 73 75 76 76 75 77 76 77 78 78 77 79 78 79 80 80 79 81 81 79 82 81 82 83 84 85 86 85 84 87 87 84 88 88 84 89 89 84 90 90 84 91 91 84 92 92 84 93 92 93 94 94 93 95 94 95 96 94 96 97 98 60 57 60 98 99 99 98 100 100 98 101 100 101 102 102 101 103 102 103 104 105 106 107 106 105 108 108 105 109 109 105 110 110 105 111 111 105 112 112 105 113 113 105 114 114 105 115 115 105 116 116 105 117 117 105 118 118 105 119 119 105 120 120 105 121 121 105 122 116 117 123 107 106 124 107 124 125 107 125 126 107 126 127 127 126 128 128 126 129 129 126 130 130 126 131 131 126 132 132 126 133 133 126 134 134 126 135 135 126 136 136 126 137 137 126 138 138 126 139 139 126 140 140 126 141 141 126 142 135 136 143 135 143 144 135 144 145 135 145 146 135 146 147 135 147 148 135 148 149 135 149 150 150 149 151 150 151 152 150 152 153 150 153 154 150 154 155 150 155 156 156 155 157 157 155 158 158 155 159 159 155 160 160 155 161 160 161 162 160 162 163 160 163 164 160 164 165 160 165 166 160 166 167 135 150 168 107 127 169 107 169 170 107 170 171 107 171 172 107 172 173 107 173 174 107 174 175 107 175 176 107 176 177 107 177 178 107 178 179 107 179 180 107 180 181 107 181 182 182 181 183 183 181 184 183 184 185 183 185 186 186 185 187 186 187 188 186 188 189 186 189 190 107 182 191 107 191 192 107 192 193 107 193 194 107 194 195 107 195 196 107 196 197 107 197 198 107 198 199 107 199 200 107 200 201 107 201 202 107 202 203 107 203 204 107 204 205 107 205 206 206 205 207 207 205 208 207 208 209 209 208 210 209 210 211 212 213 214 213 212 215 213 215 216 216 215 217 217 215 218 218 215 219 219 215 220 220 215 221 221 215 222 222 215 223 223 215 224 224 215 225 224 225 226 224 226 227 227 226 228 227 228 229 229 228 230 229 230 231 229 231 232 229 232 233 233 232 234 234 232 235 234 235 236 236 235 237 237 235 238 238 235 239 238 239 240 240 239 241 240 241 242 240 242 243 240 243 244 241 239 245 241 245 81 241 81 85 85 81 83 85 83 86 244 243 246 244 246 247 244 247 248 244 248 249 244 249 250 244 250 251 244 251 252 244 252 253 244 253 254 244 254 255 244 255 256 244 256 257 257 256 258 257 258 259 259 258 260 260 258 261 260 261 262 262 261 263 263 261 264 265 266 267 266 265 268 268 265 269 268 269 270 270 269 271 271 269 2 2 269 0 0 269 272 272 269 273 273 269 274 274 269 275 275 269 276 276 269 277 277 269 278 277 278 279 279 278 280 280 278 281 281 278 282 282 278 283 283 278 284 284 278 285 285 278 286 285 286 287 285 287 288 288 287 289 288 289 290 288 290 291 291 290 292 292 290 293 293 290 294 294 290 295 295 290 296 295 296 297 297 296 298 298 296 299 299 296 300 300 296 301 301 296 302 302 296 303 302 303 304 304 303 104 104 303 102 102 303 305 305 303 306 305 306 307 305 307 308 308 307 309 309 307 310 309 310 311 311 310 312 312 310 313 313 310 314 314 310 315 315 310 316 316 310 317 317 310 318 318 310 319 319 310 320 320 310 321 321 310 322 322 310 323 323 310 97 97 310 94 94 310 324 324 310 325 324 325 326 326 325 327 326 327 328 328 327 329 329 327 330 325 310 331 331 310 332 332 310 333 333 310 334 333 334 335 335 334 336 336 334 337 336 337 338 338 337 339 339 337 340 340 337 341 341 337 342 342 337 343 343 337 344 344 337 345 345 337 346 346 337 347 347 337 348 348 337 349 349 337 350 350 337 351 351 337 352 352 337 353 353 337 354 354 337 355 354 355 356 354 356 357 354 357 358 354 358 359 354 359 360 360 359 361 330 362 363 362 330 327 363 362 364 363 364 365 363 365 366 363 366 367 363 367 368 363 368 369 363 369 370 363 370 371 363 371 372 363 372 373 373 372 374 373 374 375 373 375 376 373 376 377 373 377 378 378 377 379 378 379 380 378 380 381 381 380 382 382 380 383 383 380 384 384 380 385 385 380 386 386 380 387 387 380 388 388 380 389 389 380 390 389 390 391 389 391 392 389 392 393 389 393 394 389 394 395 389 395 396 389 396 397 389 397 398 389 398 399 389 399 400 389 400 401 389 401 361 389 361 359 389 359 402 389 402 403 403 402 404 404 402 405 405 402 406 406 402 407 406 407 408 27 409 26 409 27 410 409 410 411 411 410 412 411 412 413 411 413 414 414 413 415 414 415 416 416 415 417 416 417 418 418 417 419 419 417 420 419 420 421 421 420 422 422 420 423 423 420 424 423 424 425 425 424 426 426 424 427 427 424 428 428 424 429 428 429 211 211 429 209 209 429 430 430 429 431 431 429 432 431 432 433 433 432 434 433 434 435 435 434 212 435 212 436 435 436 437 435 437 438 435 438 439 435 439 440 435 440 441 436 212 214 441 440 442 441 442 443 441 443 444 441 444 445 441 445 446 441 446 447 441 447 448 441 448 449 449 448 450 449 450 451 451 450 452 451 452 453 451 453 385 385 453 454 385 454 455 385 455 456 385 456 457 385 457 458 385 458 264 385 264 261 385 261 459 385 459 460 385 460 384 461 462 463 462 461 464 462 464 465 462 465 466 462 466 467 464 461 468 468 461 469 464 468 470 464 470 471 464 471 472 464 472 473 464 473 474 464 474 475 464 475 476 464 476 477 464 477 478 478 477 479 478 479 480 478 480 481 478 481 482 478 482 483 478 483 484 478 484 485 478 485 486 478 486 487 467 466 488 467 488 489 467 489 490 467 490 491 467 491 492 467 492 493 467 493 494 467 494 495 467 495 496 467 496 497 467 497 498 467 498 499 467 499 500 467 500 501 467 501 502 467 502 503 503 502 504 467 503 505 467 505 506 467 506 507 467 507 508 467 508 509 467 509 510 467 510 511 467 511 512 467 512 513 467 513 514 467 514 515 515 514 516 515 516 517 515 517 518 515 518 519 515 519 520 515 520 521 515 521 522 515 522 523 515 523 524 515 524 525 515 525 526 515 526 527 515 527 528 515 528 529 515 529 530 515 530 531 515 531 532 515 532 533 515 533 534 515 534 535 515 535 536 515 536 537 515 537 538 539 540 541 540 539 542 542 539 543 543 539 544 545 165 546 165 545 166 547 160 167 160 547 548 548 547 549 549 547 550 550 547 551 551 547 552 552 547 553 553 547 554 554 547 555 555 547 556 556 547 557 556 557 558 556 558 559 559 558 560 559 560 561 559 561 562 562 561 563 562 563 564 564 563 565 564 565 566 566 565 567 566 567 568 568 567 569 568 569 570 570 569 173 570 173 571 571 173 572 572 173 172 573 574 575 574 573 576 574 576 577 574 577 578 574 578 579 574 579 580 580 579 581 580 581 582 580 582 583 583 582 584 583 584 585 583 585 586 586 585 587 586 587 588 588 587 589 588 589 590 590 589 591 591 589 592 591 592 593 515 594 595 594 515 596 596 515 597 597 515 598 598 515 599 599 515 600 600 515 601 601 515 602 602 515 603 603 515 604 604 515 605 595 594 606 595 606 607 595 607 608 595 608 609 595 609 610 595 610 611 595 611 612 595 612 593 595 593 592 595 592 613 595 613 614 595 614 615 595 615 616 595 616 617 595 617 618 595 618 619 595 619 620 621 622 623 622 621 624 622 624 625 622 625 626 622 626 627 627 626 628 628 626 629 629 626 630 627 628 545 627 545 631 631 545 632 632 545 546 629 630 633 633 630 634 634 630 635 635 630 636 636 630 637 637 630 638 638 630 639 639 630 640 640 630 641 641 630 642 642 630 643 643 630 644 644 630 645 645 630 646 645 646 647 645 647 648 648 647 649 648 649 266 266 649 267 645 648 650 645 650 651 645 651 652 645 652 653 645 653 654 654 653 655 655 653 656 655 656 657 657 656 658 658 656 659 659 656 660 660 656 184 660 184 661 661 184 662 662 184 663 663 184 664 664 184 665 665 184 181 666 186 190 186 666 667 667 666 668 668 666 669 669 666 670 669 670 25 25 670 671 25 671 672 25 672 673 25 673 674 25 674 24 461 675 469 675 461 676 676 461 677 677 461 678 678 461 679 678 679 680 680 679 681 681 679 682 682 679 683 683 679 684 684 679 685 685 679 686 686 679 687 687 679 688 688 679 689 689 679 690 690 679 691 691 679 692 692 679 487 487 679 478 478 679 693 693 679 694 694 679 695 695 679 696 696 679 697 697 679 698 698 679 699 699 679 700 700 679 701 701 679 702 702 679 703 703 679 704 704 679 705 705 679 706 705 706 707 707 706 708 708 706 709 708 709 710 710 709 711 711 709 502 502 709 504 504 709 712 712 709 713 713 709 714 714 709 715 714 715 716 716 715 717 717 715 718 718 715 719 719 715 720 720 715 161 718 719 721 721 719 722 722 719 723 723 719 539 539 719 724 539 724 725 539 725 544 724 719 726 726 719 727 727 719 728 728 719 729 729 719 730 730 719 731 731 719 732 732 719 733 733 719 734 734 719 735 735 719 736 736 719 737 737 719 738 737 738 739 739 738 740 740 738 741 741 738 742 742 738 743 743 738 744 744 738 745 745 738 746 746 738 538 538 738 573 538 573 515 515 573 605 605 573 747 747 573 748 748 573 749 749 573 750 750 573 751 751 573 752 752 573 753 753 573 754 754 573 755 755 573 575 720 161 756 756 161 757 757 161 758 758 161 759 759 161 760 760 161 761 761 161 762 762 161 763 763 161 764 764 161 765 765 161 766 766 161 767 767 161 768 768 161 769 769 161 619 619 161 770 619 770 771 619 771 772 619 772 620 772 771 773 773 771 105 105 771 122 770 161 774 774 161 775 775 161 776 776 161 777 777 161 778 778 161 779 779 161 780 780 161 781 781 161 782 782 161 783 783 161 784 784 161 785 785 161 786 786 161 787 787 161 788 787 788 789 789 788 126 126 788 790 126 790 142 788 161 791 791 161 792 792 161 793 793 161 794 794 161 795 795 161 796 796 161 797 797 161 798 798 161 799 799 161 800 800 161 801 801 161 802 802 161 803 803 161 804 804 161 805 805 161 155 528 806 807 806 528 808 808 528 809 809 528 810 810 528 527 1622 1623 1624 1623 1622 1625 1624 1630 1631 1630 1624 1623 1631 1634 1635 1634 1631 1630 1635 1638 1639 1638 1635 1634 1638 1642 1639 1642 1638 1643 1643 1646 1642 1646 1643 1647 1646 1650 1651 1650 1646 1647 1650 1654 1651 1654 1650 1655 1654 1658 1659 1658 1654 1655 1658 1662 1659 1662 1658 1663 1663 1666 1662 1666 1663 1667 1666 1670 1671 1670 1666 1667 1670 1674 1671 1674 1670 1675 1675 1678 1674 1678 1675 1679 1678 1682 1683 1682 1678 1679 1683 1686 1687 1686 1683 1682 1687 1690 1691 1690 1687 1686 1691 1694 1695 1694 1691 1690 1695 1698 1699 1698 1695 1694 1699 1702 1703 1702 1699 1698 1703 1706 1707 1706 1703 1702 1707 1710 1711 1710 1707 1706 1710 1714 1711 1714 1710 1715 1715 1718 1714 1718 1715 1719 1722 1718 1719 1718 1722 1723 1726 1723 1722 1723 1726 1727 1726 1730 1727 1730 1726 1731 1730 1734 1735 1734 1730 1731 1734 1738 1735 1738 1734 1739 1742 1738 1739 1738 1742 1743 1746 1743 1742 1743 1746 1747 1750 1747 1746 1747 1750 1751 1754 1751 1750 1751 1754 1755 1758 1755 1754 1755 1758 1759 1762 1759 1758 1759 1762 1763 1766 1763 1762 1763 1766 1767 1770 1767 1766 1767 1770 1771 1774 1771 1770 1771 1774 1775 1778 1775 1774 1775 1778 1779 1782 1779 1778 1779 1782 1783 1786 1783 1782 1783 1786 1787 1790 1787 1786 1787 1790 1791 1794 1791 1790 1791 1794 1795 1798 1795 1794 1795 1798 1799 1802 1799 1798 1799 1802 1803 1806 1803 1802 1803 1806 1807 1810 1807 1806 1807 1810 1811 1814 1811 1810 1811 1814 1815 1814 1818 1815 1818 1814 1819 1818 1822 1823 1822 1818 1819 1822 1826 1823 1826 1822 1827 1827 1830 1826 1830 1827 1831 1831 1834 1830 1834 1831 1835 1834 1838 1839 1838 1834 1835 1838 1842 1839 1842 1838 1843 1843 1846 1842 1846 1843 1847 1846 1850 1851 1850 1846 1847 1850 1854 1851 1854 1850 1855 1855 1858 1854 1858 1855 1859 1859 1862 1858 1862 1859 1863 1863 1859 1864 1865 1863 1864 1863 1870 1871 1870 1863 1865 1870 1865 1872 1872 1865 1873 1872 1878 1870 1878 1872 1879 1878 1882 1883 1882 1878 1879 1882 1886 1883 1886 1882 1887 1886 1890 1891 1890 1886 1887 1891 1894 1895 1894 1891 1890 1895 1898 1899 1898 1895 1894 1899 1902 1903 1902 1899 1898 1903 1906 1907 1906 1903 1902 1907 1910 1911 1910 1907 1906 1911 1914 1915 1914 1911 1910 1915 1918 1919 1918 1915 1914 1922 1625 1622 1625 1922 1923 1923 1922 1919 1923 1919 1918

-
- - -

811 812 813 813 812 814 814 812 815 815 812 816 817 816 812 818 819 820 820 819 821 821 819 822 822 819 823 823 819 824 824 819 825 825 819 826 826 819 827 827 819 828 828 819 829 829 819 830 830 819 831 831 819 832 832 819 833 833 819 834 834 819 835 836 837 838 837 835 838 838 835 839 839 835 840 835 819 840 840 819 841 841 819 842 842 819 843 843 819 844 844 819 845 845 819 846 846 819 847 847 819 848 848 819 849 849 819 850 850 819 851 851 819 852 852 819 853 853 819 854 855 856 857 857 856 858 858 856 859 860 859 861 859 856 861 856 854 861 854 819 861 861 819 862 862 819 863 863 819 864 864 819 865 865 819 866 866 819 867 867 819 868 868 819 869 869 819 870 870 819 871 871 819 872 872 819 873 873 819 874 874 819 875 875 819 876 877 878 879 879 878 880 880 878 881 881 878 882 882 878 883 883 878 884 884 878 885 885 878 886 886 878 887 887 878 888 888 878 889 889 878 890 878 891 890 890 891 892 892 891 893 893 891 894 894 891 895 895 891 896 896 891 897 897 891 898 898 891 899 899 891 900 891 901 900 900 901 902 902 901 903 903 901 904 904 901 905 905 901 906 906 901 907 907 901 908 908 901 909 909 901 910 910 901 911 911 901 912 912 901 913 914 915 916 915 913 916 913 901 916 916 901 917 917 901 918 918 901 919 919 901 920 819 921 876 876 921 901 901 921 920 920 921 922 922 921 923 923 921 924 921 925 924 924 925 926 926 925 927 927 925 928 928 925 929 929 925 930 930 925 931 931 925 932 925 933 932 932 933 934 934 933 935 933 936 935 935 936 937 937 936 938 938 936 939 939 936 940 940 936 941 941 936 942 942 936 943 943 936 944 944 936 945 945 936 946 946 936 947 947 936 948 948 936 949 949 936 950 950 936 951 951 936 952 952 936 953 953 936 954 954 936 955 955 936 956 956 936 957 957 936 958 958 936 959 959 936 960 960 936 961 961 936 962 962 936 963 963 936 964 936 965 964 964 965 966 966 965 967 967 965 968 969 968 965 970 971 972 971 973 972 973 974 972 974 975 972 975 976 972 972 976 977 976 978 977 977 978 979 979 978 980 980 978 981 982 981 978 983 984 985 985 984 986 986 984 987 987 984 988 988 984 989 989 984 990 984 991 990 990 991 992 992 991 993 993 991 994 994 991 995 991 996 995 995 996 997 997 996 998 996 999 998 999 1000 998 1000 1001 998 1001 1002 998 1003 1004 1005 1005 1004 1002 1004 1006 1002 1002 1006 998 1006 1007 998 1007 1008 998 998 1008 1009 1009 1008 1010 1010 1008 1011 1011 1008 1012 1012 1008 1013 1013 1008 1014 1014 1008 1015 1015 1008 1016 1016 1008 1017 1017 1008 1018 1018 1008 1019 1019 1008 1020 1020 1008 1021 1022 1023 1024 1024 1023 1025 1025 1023 1026 1023 1027 1026 1008 1028 1021 1021 1028 1027 1027 1028 1026 1026 1028 1029 1028 1030 1029 1030 1031 1029 1031 1032 1029 1033 1029 1032 860 861 1034 861 1035 1034 1035 1036 1034 1036 1037 1034 1037 1038 1034 1038 1039 1034 1039 1040 1034 1040 1041 1034 1041 1042 1034 1042 1043 1034 1043 1044 1034 1044 1045 1034 1045 1046 1034 1046 1047 1034 1047 1048 1034 1048 1049 1034 1049 1050 1034 888 889 1051 1051 889 1052 1052 889 1053 1053 889 1054 1054 889 1055 1055 889 1056 1056 889 1057 1057 889 1058 1058 889 1059 1059 889 1050 1034 1050 889 1042 1041 1060 1041 1061 1060 1060 1061 1062 1062 1061 1063 1061 1064 1063 1063 1064 1065 1064 1066 1065 1065 1066 1067 1066 1068 1067 1068 1069 1067 1067 1069 1070 1069 1071 1070 1071 1072 1070 1070 1072 1073 1072 1074 1073 1074 1075 1073 1075 1076 1073 1076 878 1073 877 1073 878 1077 1078 1079 1079 1078 1080 1080 1078 1081 1078 1082 1081 1081 1082 1083 1082 1084 1083 1083 1084 1085 1084 1086 1085 1085 1086 1087 1086 1088 1087 1087 1088 1089 1088 1090 1089 1089 1090 1091 1090 1092 1091 1092 1093 1091 1091 1093 1094 1093 1095 1094 1095 1096 1094 1094 1096 1097 1097 1096 1098 1098 1096 1099 1099 1096 1100 1100 1096 1101 1101 1096 1102 1102 1096 1103 1103 1096 1104 1104 1096 1105 1106 1105 1096 1107 1023 1108 1022 1108 1023 914 916 1109 1109 916 1110 1110 916 1111 1112 1111 916 890 1113 889 1113 1114 889 1114 1115 889 1115 1116 889 1116 1117 889 1117 1118 889 1118 1119 889 1119 1120 889 1120 1121 889 1121 812 889 812 811 889 811 1122 889 1122 1123 889 1123 1124 889 1124 1125 889 1125 1126 889 1126 1127 889 1127 1128 889 1128 1129 889 1129 1130 889 1130 1131 889 1131 1132 889 1132 1133 889 889 1133 1134 1133 1135 1134 1135 1136 1134 1136 1137 1134 1137 1138 1134 1138 1139 1134 1139 1140 1134 1140 1141 1134 1141 1142 1134 1142 1143 1134 1143 1144 1134 928 929 1144 1144 929 1134 929 1145 1134 1145 1146 1134 1146 1147 1134 1147 1148 1134 1148 1149 1134 1149 1150 1134 1150 1151 1134 1151 1152 1134 1152 1153 1134 1153 1154 1134 1154 1155 1134 1155 1156 1134 1156 1157 1134 1157 1158 1134 1158 1159 1134 950 1160 949 1160 1161 949 1161 1162 949 1162 1163 949 1163 1164 949 1164 1165 949 1165 1166 949 1166 1167 949 1167 1168 949 949 1168 1169 1168 1170 1169 1170 1171 1169 1171 1172 1169 1172 1173 1169 1173 1174 1169 1174 1175 1169 1175 1176 1169 1176 1177 1169 969 965 1177 1177 965 1169 1134 1159 1178 1159 1179 1178 1179 1169 1178 1169 965 1178 1180 1178 965 1181 1182 1183 1182 1184 1183 1184 1185 1183 1185 1186 1183 1186 1187 1183 1187 1188 1183 1188 1189 1183 1189 1190 1183 1190 1191 1183 1191 1192 1183 1183 1192 1193 1192 1194 1193 1194 1195 1193 1193 1195 1196 1195 1197 1196 1196 1197 1198 1197 1199 1198 1199 1200 1198 1200 1201 1198 1201 1202 1198 1202 1203 1198 1203 1204 1198 1204 1205 1198 1206 1207 1208 1198 1205 1209 1205 1210 1209 1210 1211 1209 1211 1212 1209 1212 1208 1209 1208 1207 1209 1207 1213 1209 1209 1213 1214 1213 1215 1214 1214 1215 1216 1215 1217 1216 1216 1217 1218 1218 1217 1219 1219 1217 1220 1220 1217 1221 1217 1222 1221 1221 1222 1223 1223 1222 1224 1224 1222 1225 1225 1222 1226 1222 1227 1226 1226 1227 1228 1228 1227 1229 1229 1227 1230 1227 1231 1230 1230 1231 1232 1232 1231 1233 1231 1234 1233 1233 1234 1235 1234 1236 1235 1235 1236 1237 1236 1238 1237 1238 1239 1237 1237 1239 1240 1239 1241 1240 1242 1240 1241 1243 1244 1245 1244 1246 1245 1245 1246 1247 1247 1246 1248 1248 1246 1249 1249 1246 1250 1246 1251 1250 1251 1252 1250 1252 1253 1250 1253 1254 1250 1254 1255 1250 1255 1256 1250 1256 1257 1250 1257 1258 1250 1258 1259 1250 1259 1260 1250 1260 1261 1250 1261 1262 1250 1262 1263 1250 1263 1264 1250 1264 1265 1250 1250 1265 1266 1266 1265 1267 1267 1265 1268 1268 1265 1183 1183 1265 1181 1181 1265 1269 1269 1265 1270 1270 1265 1271 1271 1265 1272 1265 1273 1272 1273 1274 1272 1272 1274 1275 1274 1276 1275 1276 1277 1275 1277 1278 1275 1278 1279 1275 1275 1279 1280 1279 1281 1280 1281 1282 1280 1282 1283 1280 1283 1284 1280 1284 1285 1280 1285 1286 1280 1286 1287 1280 1287 1288 1280 1288 1289 1280 1290 1291 1289 1280 1289 1291 1252 1251 1292 1292 1251 1293 1251 1294 1293 1294 1295 1293 1295 1296 1293 1296 1297 1293 1297 1298 1293 1293 1298 1299 1299 1298 1300 1300 1298 1301 1301 1298 1302 1302 1298 1303 1303 1298 1304 1304 1298 1305 1305 1298 1306 1306 1298 1307 1307 1298 1308 1308 1298 1309 1309 1298 1310 1310 1298 1311 1311 1298 1312 1312 1298 1313 1313 1298 1314 1314 1298 1315 1298 1316 1315 1315 1316 1317 1317 1316 1318 1316 1319 1318 1318 1319 1320 1320 1319 1321 1321 1319 1322 1291 1290 1323 1323 1290 1324 1324 1290 1325 1290 1322 1325 1325 1322 1326 1322 1319 1326 1326 1319 1327 1327 1319 1328 1328 1319 1329 1329 1319 1330 1330 1319 1331 1331 1319 1332 1332 1319 1333 1333 1319 1334 1334 1319 1335 1335 1319 1336 1336 1319 1337 1337 1319 1338 1338 1319 1339 1339 1319 1340 1340 1319 1341 1341 1319 1342 1319 1343 1342 1342 1343 1344 1344 1343 1345 1343 1346 1345 1346 1347 1345 1345 1347 1348 1348 1347 1349 1349 1347 1350 1350 1347 1351 1347 1352 1351 1351 1352 1353 1353 1352 1354 1354 1352 1355 1355 1352 1356 1356 1352 1357 1357 1352 1358 1352 1359 1358 1358 1359 1360 1360 1359 1361 1361 1359 1362 1362 1359 1363 1363 1359 1364 1359 1365 1364 1365 1366 1364 1364 1366 1367 1366 1368 1367 1368 1369 1367 1367 1369 1370 1370 1369 1371 1371 1369 1372 1372 1369 1373 1373 1369 1374 1374 1369 1375 1375 1369 1376 1369 1377 1376 1376 1377 1378 1378 1377 1379 1379 1377 1380 1380 1377 1381 1381 1377 1382 1382 1377 1383 1383 1377 1384 1384 1377 1385 1385 1377 1386 1386 1377 1387 1377 1388 1387 1387 1388 1005 1003 1005 1388 1186 1185 1389 1389 1185 1390 1390 1185 1391 1185 1392 1391 1391 1392 1393 1393 1392 1394 1392 1395 1394 1394 1395 1396 1395 1397 1396 1397 1398 1396 1398 1399 1396 1399 1400 1396 1400 1401 1396 1401 1402 1396 1402 1403 1396 1403 1404 1396 1404 1405 1396 1405 1406 1396 1406 1407 1396 1408 1409 1410 1409 1411 1410 1410 1411 1412 1411 1413 1412 1413 1414 1412 1396 1407 1415 1407 1416 1415 1416 1412 1415 1412 1414 1415 1415 1414 1417 1414 1418 1417 1417 1418 1419 1419 1418 1420 1420 1418 1421 1418 1422 1421 1421 1422 1423 1423 1422 1424 1422 1425 1424 1425 1426 1424 1426 1427 1424 1424 1427 1428 1427 1429 1428 1428 1429 1430 1429 1431 1430 1431 1432 1430 1430 1432 1433 1433 1432 1434 1434 1432 1435 1435 1432 1436 1436 1432 1437 1437 1432 1438 1438 1432 1439 1439 1432 1440 1440 1432 1441 1432 1207 1441 1206 1441 1207 1220 1442 1219 1442 1443 1219 1219 1443 1444 1443 1445 1444 1444 1445 1446 1446 1445 1447 1445 1448 1447 1448 1449 1447 1449 1450 1447 1450 1451 1447 1451 1452 1447 1452 1453 1447 1453 1454 1447 1454 1455 1447 1455 1456 1447 1456 1457 1447 1457 1458 1447 1458 1459 1447 1459 1460 1447 1460 1461 1447 1461 1462 1447 982 1463 981 1463 1464 981 1464 1465 981 1465 1466 981 981 1466 1467 1466 984 1467 984 983 1467 1467 983 1462 1462 983 1447 983 1468 1447 1468 1469 1447 1469 1470 1447 1470 1471 1447 1471 1472 1447 1472 1473 1447 1473 1474 1447 1474 1078 1447 1078 1077 1447 1077 1475 1447 1475 1476 1447 1476 1477 1447 1477 1478 1447 1479 1480 1481 1106 1107 1105 1107 1108 1105 1108 1482 1105 1482 1483 1105 1483 1484 1105 1484 819 1105 819 818 1105 1105 818 1485 1485 818 1486 1486 818 1487 1487 818 1488 1488 818 1480 818 1489 1480 1489 1490 1480 1490 1491 1480 1491 1492 1480 1492 1493 1480 1480 1493 1481 1493 1494 1481 1494 1495 1481 1495 1496 1481 1496 1497 1481 1497 1498 1481 1498 1499 1481 1499 1500 1481 836 838 1501 1501 838 1502 1502 838 1503 1503 838 1504 1504 838 1505 1505 838 1500 1500 838 1481 1481 838 1506 1506 838 1507 1507 838 1508 1508 838 1509 1509 838 1510 1510 838 1511 1511 838 1512 1512 838 1478 1478 838 1447 838 1513 1447 1513 1514 1447 1514 1515 1447 1516 1517 1518 855 857 1519 1519 857 1520 1520 857 1521 1521 857 1522 1522 857 1517 1517 857 1518 1518 857 1523 1523 857 1524 1524 857 1525 1525 857 1526 1526 857 1527 1527 857 1528 1528 857 1529 1529 857 1530 1530 857 1515 1447 1515 857 1349 1531 1348 1531 1532 1348 1348 1532 1533 1532 1534 1533 1533 1534 1535 1535 1534 1536 1537 1536 1534 1328 1538 1327 1538 1539 1327 1539 1540 1327 1327 1540 1541 1540 1542 1541 1541 1542 1543 1543 1542 1544 1544 1542 1545 1545 1542 1546 1546 1542 1547 1547 1542 1410 1408 1410 1542 1409 1548 1411 1548 1549 1411 1411 1549 1550 1550 1549 1551 1549 1552 1551 1551 1552 1553 1552 1554 1553 1553 1554 1555 1554 1556 1555 1556 1557 1555 1555 1557 1558 1557 1559 1558 1558 1559 1560 1559 1561 1560 1561 1562 1560 1560 1562 1563 1562 1564 1563 1564 1565 1563 1565 1566 1563 1566 1567 1563 1563 1567 1568 1567 1569 1568 1569 1536 1568 1536 1537 1568 1568 1537 1570 1570 1537 1571 1537 1572 1571 1572 1573 1571 1571 1573 1574 1573 1575 1574 1575 1576 1574 1576 1577 1574 1577 1578 1574 1578 1579 1574 1579 1580 1574 1574 1580 1581 1580 1582 1581 1581 1582 1583 1582 1584 1583 1583 1584 1585 1584 1586 1585 1586 1587 1585 1585 1587 1588 1588 1587 1589 1589 1587 1590 1587 1591 1590 1591 1592 1590 1590 1592 1593 1592 1594 1593 1594 1595 1593 1595 1596 1593 1593 1596 1597 1596 1598 1597 1598 1599 1597 1597 1599 1600 1600 1599 1241 1241 1599 1242 1242 1599 972 972 1599 970 970 1599 1601 1601 1599 1602 1602 1599 1603 1603 1599 1604 1604 1599 1605 1605 1599 1606 1606 1599 1607 1607 1599 1608 1608 1599 1609 1609 1599 1610 1610 1599 1611 1599 1612 1611 1611 1612 1613 1612 1614 1613 1614 1615 1613 1613 1615 1616 1615 1617 1616 1617 1618 1616 1618 1619 1616 1616 1619 1620 1619 1621 1620 1621 1383 1620 1384 1620 1383 1626 1627 1628 1629 1628 1627 1628 1629 1632 1633 1632 1629 1632 1633 1636 1637 1636 1633 1636 1637 1640 1641 1640 1637 1644 1640 1645 1641 1645 1640 1648 1644 1649 1645 1649 1644 1648 1649 1652 1653 1652 1649 1656 1652 1657 1653 1657 1652 1656 1657 1660 1661 1660 1657 1664 1660 1665 1661 1665 1660 1668 1664 1669 1665 1669 1664 1668 1669 1672 1673 1672 1669 1676 1672 1677 1673 1677 1672 1680 1676 1681 1677 1681 1676 1680 1681 1684 1685 1684 1681 1684 1685 1688 1689 1688 1685 1688 1689 1692 1693 1692 1689 1692 1693 1696 1697 1696 1693 1696 1697 1700 1701 1700 1697 1700 1701 1704 1705 1704 1701 1704 1705 1708 1709 1708 1705 1708 1709 1712 1713 1712 1709 1716 1712 1717 1713 1717 1712 1720 1716 1721 1717 1721 1716 1724 1725 1721 1720 1721 1725 1728 1729 1724 1725 1724 1729 1732 1729 1733 1728 1733 1729 1732 1733 1736 1737 1736 1733 1740 1736 1741 1737 1741 1736 1744 1745 1741 1740 1741 1745 1748 1749 1744 1745 1744 1749 1752 1753 1748 1749 1748 1753 1756 1757 1752 1753 1752 1757 1760 1761 1756 1757 1756 1761 1764 1765 1760 1761 1760 1765 1768 1769 1764 1765 1764 1769 1772 1773 1768 1769 1768 1773 1776 1777 1772 1773 1772 1777 1780 1781 1776 1777 1776 1781 1784 1785 1780 1781 1780 1785 1788 1789 1784 1785 1784 1789 1792 1793 1788 1789 1788 1793 1796 1797 1792 1793 1792 1797 1800 1801 1796 1797 1796 1801 1804 1805 1800 1801 1800 1805 1808 1809 1804 1805 1804 1809 1812 1813 1808 1809 1808 1813 1816 1817 1812 1813 1812 1817 1820 1817 1821 1816 1821 1817 1820 1821 1824 1825 1824 1821 1828 1824 1829 1825 1829 1824 1832 1828 1833 1829 1833 1828 1836 1832 1837 1833 1837 1832 1836 1837 1840 1841 1840 1837 1844 1840 1845 1841 1845 1840 1848 1844 1849 1845 1849 1844 1848 1849 1852 1853 1852 1849 1856 1852 1857 1853 1857 1852 1860 1856 1861 1857 1861 1856 1866 1867 1868 1866 1860 1867 1867 1860 1869 1861 1869 1860 1874 1868 1875 1875 1868 1876 1868 1867 1876 1877 1876 1867 1880 1875 1881 1876 1881 1875 1880 1881 1884 1885 1884 1881 1888 1884 1889 1885 1889 1884 1888 1889 1892 1893 1892 1889 1892 1893 1896 1897 1896 1893 1896 1897 1900 1901 1900 1897 1900 1901 1904 1905 1904 1901 1904 1905 1908 1909 1908 1905 1908 1909 1912 1913 1912 1909 1912 1913 1916 1917 1916 1913 1916 1917 1920 1921 1920 1917 1920 1921 1924 1921 1925 1924 1924 1925 1626 1627 1626 1925

-
-
-
- - - - 7724.3464567 47.2440945 4390.2598425 7715.6338583 263.7795276 4384.1614173 7715.6338583 47.2440945 4384.1614173 7724.3464567 263.7795276 4390.2598425 7724.3464567 263.7795276 4390.2598425 7724.3464567 47.2440945 4390.2598425 7715.6338583 263.7795276 4384.1614173 7715.6338583 47.2440945 4384.1614173 7731.8700787 47.2440945 4397.7834646 7731.8700787 263.7795276 4397.7834646 7731.8700787 263.7795276 4397.7834646 7731.8700787 47.2440945 4397.7834646 7664.4921260 263.7795276 4354.6338583 7664.4921260 47.2440945 4354.6338583 7664.4921260 263.7795276 4354.6338583 7664.4921260 47.2440945 4354.6338583 7732.8858268 263.7795276 4399.2362205 7732.8858268 47.2440945 4399.2362205 7732.8858268 263.7795276 4399.2362205 7732.8858268 47.2440945 4399.2362205 7654.8503937 263.7795276 4350.1377953 7654.8503937 47.2440945 4350.1377953 7654.8503937 263.7795276 4350.1377953 7654.8503937 47.2440945 4350.1377953 7737.9724409 263.7795276 4406.4960630 7737.9724409 47.2440945 4406.4960630 7737.9724409 263.7795276 4406.4960630 7737.9724409 47.2440945 4406.4960630 7644.5748031 263.7795276 4347.3818898 7644.5748031 47.2440945 4347.3818898 7644.5748031 263.7795276 4347.3818898 7644.5748031 47.2440945 4347.3818898 7742.4645669 47.2440945 4416.1377953 7742.4645669 263.7795276 4416.1377953 7742.4645669 263.7795276 4416.1377953 7742.4645669 47.2440945 4416.1377953 7633.9803150 263.7795276 4346.4566929 7633.9803150 47.2440945 4346.4566929 7633.9803150 263.7795276 4346.4566929 7633.9803150 47.2440945 4346.4566929 7745.2204724 263.7795276 4426.4094488 7745.2204724 47.2440945 4426.4094488 7745.2204724 263.7795276 4426.4094488 7745.2204724 47.2440945 4426.4094488 7623.3818898 263.7795276 4347.3818898 7623.3818898 47.2440945 4347.3818898 7623.3818898 263.7795276 4347.3818898 7623.3818898 47.2440945 4347.3818898 7746.1456693 47.2440945 4437.0078740 7746.1456693 263.7795276 4437.0078740 7746.1456693 263.7795276 4437.0078740 7746.1456693 47.2440945 4437.0078740 7613.1102362 263.7795276 4350.1377953 7613.1102362 47.2440945 4350.1377953 7613.1102362 263.7795276 4350.1377953 7613.1102362 47.2440945 4350.1377953 7745.2204724 263.7795276 4447.6062992 7745.2204724 47.2440945 4447.6062992 7745.2204724 263.7795276 4447.6062992 7745.2204724 47.2440945 4447.6062992 7603.4685039 263.7795276 4354.6338583 7603.4685039 47.2440945 4354.6338583 7603.4685039 263.7795276 4354.6338583 7603.4685039 47.2440945 4354.6338583 7742.4645669 263.7795276 4457.8779528 7742.4645669 47.2440945 4457.8779528 7742.4645669 263.7795276 4457.8779528 7742.4645669 47.2440945 4457.8779528 7594.7559055 263.7795276 4360.7322835 7594.7559055 47.2440945 4360.7322835 7594.7559055 263.7795276 4360.7322835 7594.7559055 47.2440945 4360.7322835 7737.9724409 263.7795276 4467.5196850 7737.9724409 47.2440945 4467.5196850 7737.9724409 263.7795276 4467.5196850 7737.9724409 47.2440945 4467.5196850 7587.2322835 263.7795276 4368.2559055 7587.2322835 47.2440945 4368.2559055 7587.2322835 263.7795276 4368.2559055 7587.2322835 47.2440945 4368.2559055 7731.8700787 263.7795276 4476.2322835 7731.8700787 47.2440945 4476.2322835 7731.8700787 263.7795276 4476.2322835 7731.8700787 47.2440945 4476.2322835 7581.1299213 47.2440945 4376.9685039 7581.1299213 263.7795276 4376.9685039 7581.1299213 263.7795276 4376.9685039 7581.1299213 47.2440945 4376.9685039 7724.3464567 47.2440945 4483.7559055 7724.3464567 263.7795276 4483.7559055 7724.3464567 47.2440945 4483.7559055 7724.3464567 263.7795276 4483.7559055 7576.6377953 47.2440945 4386.6102362 7576.6377953 263.7795276 4386.6102362 7576.6377953 263.7795276 4386.6102362 7576.6377953 47.2440945 4386.6102362 7715.6338583 47.2440945 4489.8543307 7715.6338583 263.7795276 4489.8543307 7715.6338583 47.2440945 4489.8543307 7715.6338583 263.7795276 4489.8543307 7573.8818898 47.2440945 4396.8818898 7573.8818898 263.7795276 4396.8818898 7573.8818898 263.7795276 4396.8818898 7573.8818898 47.2440945 4396.8818898 7705.9960630 47.2440945 4494.3503937 7705.9960630 263.7795276 4494.3503937 7705.9960630 47.2440945 4494.3503937 7705.9960630 263.7795276 4494.3503937 7572.9566929 47.2440945 4407.4803150 7572.9566929 263.7795276 4407.4803150 7572.9566929 263.7795276 4407.4803150 7572.9566929 47.2440945 4407.4803150 7695.7204724 47.2440945 4497.1062992 7695.7204724 263.7795276 4497.1062992 7695.7204724 47.2440945 4497.1062992 7695.7204724 263.7795276 4497.1062992 7573.8818898 47.2440945 4418.0787402 7573.8818898 263.7795276 4418.0787402 7573.8818898 263.7795276 4418.0787402 7573.8818898 47.2440945 4418.0787402 7685.1220472 47.2440945 4498.0314961 7685.1220472 263.7795276 4498.0314961 7685.1220472 47.2440945 4498.0314961 7685.1220472 263.7795276 4498.0314961 7576.6377953 263.7795276 4428.3503937 7576.6377953 47.2440945 4428.3503937 7576.6377953 263.7795276 4428.3503937 7576.6377953 47.2440945 4428.3503937 7676.2913386 47.2440945 4497.2598425 7676.2913386 263.7795276 4497.2598425 7676.2913386 47.2440945 4497.2598425 7676.2913386 263.7795276 4497.2598425 7581.1299213 47.2440945 4437.9921260 7581.1299213 263.7795276 4437.9921260 7581.1299213 263.7795276 4437.9921260 7581.1299213 47.2440945 4437.9921260 7674.5275591 47.2440945 4497.1023622 7674.5275591 263.7795276 4497.1023622 7674.5275591 47.2440945 4497.1023622 7674.5275591 263.7795276 4497.1023622 7586.2165354 263.7795276 4445.2519685 7586.2165354 47.2440945 4445.2519685 7586.2165354 263.7795276 4445.2519685 7586.2165354 47.2440945 4445.2519685 7664.2519685 47.2440945 4494.3503937 7664.2519685 263.7795276 4494.3503937 7664.2519685 47.2440945 4494.3503937 7664.2519685 263.7795276 4494.3503937 7587.2322835 47.2440945 4446.7047244 7587.2322835 263.7795276 4446.7047244 7587.2322835 263.7795276 4446.7047244 7587.2322835 47.2440945 4446.7047244 7654.6102362 47.2440945 4489.8543307 7654.6102362 263.7795276 4489.8543307 7654.6102362 47.2440945 4489.8543307 7654.6102362 263.7795276 4489.8543307 7594.7559055 263.7795276 4454.2283465 7594.7559055 47.2440945 4454.2283465 7594.7559055 47.2440945 4454.2283465 7594.7559055 263.7795276 4454.2283465 7603.4685039 47.2440945 4460.3267717 7603.4685039 263.7795276 4460.3267717 7603.4685039 47.2440945 4460.3267717 7603.4685039 263.7795276 4460.3267717 - - - - - - - - - - -0.6427226 -0.0000000 0.7660989 -0.5372334 -0.0000000 0.8434336 -0.5372334 -0.0000000 0.8434336 -0.6427226 -0.0000000 0.7660989 0.6427226 0.0000000 -0.7660989 0.6427226 0.0000000 -0.7660989 0.5372334 0.0000000 -0.8434336 0.5372334 0.0000000 -0.8434336 -0.7662646 -0.0000000 0.6425252 -0.7662646 -0.0000000 0.6425252 0.7662646 0.0000000 -0.6425252 0.7662646 0.0000000 -0.6425252 -0.4617561 -0.0000000 0.8870069 -0.4617561 -0.0000000 0.8870069 0.4617561 0.0000000 -0.8870069 0.4617561 0.0000000 -0.8870069 -0.8192632 0.0000000 0.5734176 -0.8192632 0.0000000 0.5734176 0.8192632 -0.0000000 -0.5734176 0.8192632 -0.0000000 -0.5734176 -0.3421317 -0.0000000 0.9396520 -0.3421317 -0.0000000 0.9396520 0.3421317 0.0000000 -0.9396520 0.3421317 0.0000000 -0.9396520 -0.8660339 0.0000000 0.4999853 -0.8660339 0.0000000 0.4999853 0.8660339 -0.0000000 -0.4999853 0.8660339 -0.0000000 -0.4999853 -0.1736892 0.0000003 0.9848005 -0.1736892 0.0000003 0.9848005 0.1736892 -0.0000003 -0.9848005 0.1736892 -0.0000003 -0.9848005 -0.9396930 0.0000000 0.3420192 -0.9396930 0.0000000 0.3420192 0.9396930 -0.0000000 -0.3420192 0.9396930 -0.0000000 -0.3420192 -0.0000208 0.0000003 1.0000000 -0.0000208 0.0000003 1.0000000 0.0000208 -0.0000003 -1.0000000 0.0000208 -0.0000003 -1.0000000 -0.9847958 -0.0000000 0.1737160 -0.9847958 -0.0000000 0.1737160 0.9847958 0.0000000 -0.1737160 0.9847958 0.0000000 -0.1737160 0.1737160 0.0000000 0.9847958 0.1737160 0.0000000 0.9847958 -0.1737160 -0.0000000 -0.9847958 -0.1737160 -0.0000000 -0.9847958 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.3421768 -0.0000000 0.9396356 0.3421768 -0.0000000 0.9396356 -0.3421768 0.0000000 -0.9396356 -0.3421768 0.0000000 -0.9396356 -0.9847958 -0.0000000 -0.1737160 -0.9847958 -0.0000000 -0.1737160 0.9847958 0.0000000 0.1737160 0.9847958 0.0000000 0.1737160 0.4999284 -0.0000000 0.8660667 0.4999284 -0.0000000 0.8660667 -0.4999284 0.0000000 -0.8660667 -0.4999284 0.0000000 -0.8660667 -0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 -0.3420192 0.9396930 -0.0000000 0.3420192 0.9396930 -0.0000000 0.3420192 0.6427226 0.0000000 0.7660989 0.6427226 0.0000000 0.7660989 -0.6427226 -0.0000000 -0.7660989 -0.6427226 -0.0000000 -0.7660989 -0.8660748 0.0000000 -0.4999144 -0.8660748 0.0000000 -0.4999144 0.8660748 -0.0000000 0.4999144 0.8660748 -0.0000000 0.4999144 0.7660015 0.0000000 0.6428388 0.7660015 0.0000000 0.6428388 -0.7660015 -0.0000000 -0.6428388 -0.7660015 -0.0000000 -0.6428388 -0.7660015 -0.0000000 -0.6428388 -0.7660015 -0.0000000 -0.6428388 0.7660015 0.0000000 0.6428388 0.7660015 0.0000000 0.6428388 0.8660748 0.0000000 0.4999144 0.8660748 0.0000000 0.4999144 -0.8660748 -0.0000000 -0.4999144 -0.8660748 -0.0000000 -0.4999144 -0.6427226 -0.0000000 -0.7660989 -0.6427226 -0.0000000 -0.7660989 0.6427226 0.0000000 0.7660989 0.6427226 0.0000000 0.7660989 0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 0.3420192 -0.9396930 -0.0000000 -0.3420192 -0.9396930 -0.0000000 -0.3420192 -0.4999961 -0.0000000 -0.8660276 -0.4999961 -0.0000000 -0.8660276 0.4999961 0.0000000 0.8660276 0.4999961 0.0000000 0.8660276 0.9847958 0.0000000 0.1737160 0.9847958 0.0000000 0.1737160 -0.9847958 -0.0000000 -0.1737160 -0.9847958 -0.0000000 -0.1737160 -0.3422052 0.0000000 -0.9396252 -0.3422052 0.0000000 -0.9396252 0.3422052 -0.0000000 0.9396252 0.3422052 -0.0000000 0.9396252 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.1736687 0.0000000 -0.9848041 -0.1736687 0.0000000 -0.9848041 0.1736687 -0.0000000 0.9848041 0.1736687 -0.0000000 0.9848041 0.9847958 0.0000000 -0.1737160 0.9847958 0.0000000 -0.1737160 -0.9847958 -0.0000000 0.1737160 -0.9847958 -0.0000000 0.1737160 0.0000433 -0.0000000 -1.0000000 0.0000433 -0.0000000 -1.0000000 -0.0000433 0.0000000 1.0000000 -0.0000433 0.0000000 1.0000000 0.9396930 0.0000000 -0.3420192 0.9396930 0.0000000 -0.3420192 -0.9396930 -0.0000000 0.3420192 -0.9396930 -0.0000000 0.3420192 0.0879916 0.0000000 -0.9961212 0.0879916 0.0000000 -0.9961212 -0.0879916 -0.0000000 0.9961212 -0.0879916 -0.0000000 0.9961212 0.8660339 0.0000000 -0.4999853 0.8660339 0.0000000 -0.4999853 -0.8660339 -0.0000000 0.4999853 -0.8660339 -0.0000000 0.4999853 0.1744650 0.0000000 -0.9846634 0.1744650 0.0000000 -0.9846634 -0.1744650 -0.0000000 0.9846634 -0.1744650 -0.0000000 0.9846634 0.8192632 0.0000000 -0.5734176 0.8192632 0.0000000 -0.5734176 -0.8192632 -0.0000000 0.5734176 -0.8192632 -0.0000000 0.5734176 0.3419638 0.0000000 -0.9397131 0.3419638 0.0000000 -0.9397131 -0.3419638 -0.0000000 0.9397131 -0.3419638 -0.0000000 0.9397131 0.7662646 0.0000000 -0.6425252 0.7662646 0.0000000 -0.6425252 -0.7662646 -0.0000000 0.6425252 -0.7662646 -0.0000000 0.6425252 0.4617561 0.0000000 -0.8870069 0.4617561 0.0000000 -0.8870069 -0.4617561 -0.0000000 0.8870069 -0.4617561 -0.0000000 0.8870069 0.6427226 0.0000000 -0.7660989 0.6427226 0.0000000 -0.7660989 -0.6427226 -0.0000000 0.7660989 -0.6427226 -0.0000000 0.7660989 0.5372334 0.0000000 -0.8434336 0.5372334 0.0000000 -0.8434336 -0.5372334 -0.0000000 0.8434336 -0.5372334 -0.0000000 0.8434336 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 8 17 8 16 9 13 20 21 20 13 12 24 17 25 17 24 16 21 28 29 28 21 20 32 24 25 24 32 33 29 36 37 36 29 28 40 32 41 32 40 33 37 44 45 44 37 36 48 40 41 40 48 49 45 52 53 52 45 44 56 48 57 48 56 49 53 60 61 60 53 52 64 57 65 57 64 56 61 68 69 68 61 60 72 65 73 65 72 64 69 76 77 76 69 68 80 73 81 73 80 72 76 84 77 84 76 85 80 88 89 88 80 81 85 92 84 92 85 93 89 96 97 96 89 88 93 100 92 100 93 101 97 104 105 104 97 96 101 108 100 108 101 109 105 112 113 112 105 104 109 116 108 116 109 117 113 120 121 120 113 112 116 124 125 124 116 117 121 128 129 128 121 120 124 132 125 132 124 133 129 136 137 136 129 128 132 140 141 140 132 133 137 144 145 144 137 136 140 148 141 148 140 149 145 152 153 152 145 144 156 148 149 148 156 157 153 160 161 160 153 152 161 157 156 157 161 160

-
- - -

4 5 6 7 6 5 10 11 4 5 4 11 6 7 14 15 14 7 10 18 11 19 11 18 14 15 22 23 22 15 18 26 19 27 19 26 22 23 30 31 30 23 34 35 26 27 26 35 30 31 38 39 38 31 34 42 35 43 35 42 38 39 46 47 46 39 50 51 42 43 42 51 46 47 54 55 54 47 50 58 51 59 51 58 54 55 62 63 62 55 58 66 59 67 59 66 62 63 70 71 70 63 66 74 67 75 67 74 70 71 78 79 78 71 74 82 75 83 75 82 86 78 87 79 87 78 83 82 90 91 90 82 94 86 95 87 95 86 90 91 98 99 98 91 102 94 103 95 103 94 98 99 106 107 106 99 110 102 111 103 111 102 106 107 114 115 114 107 118 110 119 111 119 110 114 115 122 123 122 115 118 119 126 127 126 119 122 123 130 131 130 123 134 126 135 127 135 126 130 131 138 139 138 131 134 135 142 143 142 135 138 139 146 147 146 139 150 142 151 143 151 142 146 147 154 155 154 147 158 159 151 150 151 159 154 155 162 163 162 155 162 163 158 159 158 163

-
-
-
- - - - 7531.6929134 263.7795276 4151.5748031 7512.0118110 47.2440945 4123.4685039 7531.6929134 47.2440945 4151.5748031 7512.0118110 263.7795276 4123.4685039 7512.0118110 263.7795276 4123.4685039 7531.6929134 263.7795276 4151.5748031 7512.0118110 47.2440945 4123.4685039 7531.6929134 47.2440945 4151.5748031 7500.4645669 47.2440945 4111.9173228 7500.4645669 263.7795276 4111.9173228 7500.4645669 263.7795276 4111.9173228 7500.4645669 47.2440945 4111.9173228 7546.1968504 263.7795276 4182.6732283 7546.1968504 47.2440945 4182.6732283 7546.1968504 263.7795276 4182.6732283 7546.1968504 47.2440945 4182.6732283 7487.7480315 263.7795276 4099.2047244 7487.7480315 47.2440945 4099.2047244 7487.7480315 263.7795276 4099.2047244 7487.7480315 47.2440945 4099.2047244 7555.0748031 47.2440945 4215.8188976 7555.0748031 263.7795276 4215.8188976 7555.0748031 263.7795276 4215.8188976 7555.0748031 47.2440945 4215.8188976 7459.6417323 263.7795276 4079.5236220 7459.6417323 47.2440945 4079.5236220 7459.6417323 263.7795276 4079.5236220 7459.6417323 47.2440945 4079.5236220 7558.0669291 263.7795276 4250.0000000 7558.0669291 47.2440945 4250.0000000 7558.0669291 263.7795276 4250.0000000 7558.0669291 47.2440945 4250.0000000 7428.5433071 263.7795276 4065.0196850 7428.5433071 47.2440945 4065.0196850 7428.5433071 263.7795276 4065.0196850 7428.5433071 47.2440945 4065.0196850 7555.0748031 263.7795276 4284.1811024 7555.0748031 47.2440945 4284.1811024 7555.0748031 263.7795276 4284.1811024 7555.0748031 47.2440945 4284.1811024 7395.3976378 263.7795276 4056.1417323 7395.3976378 47.2440945 4056.1417323 7395.3976378 263.7795276 4056.1417323 7395.3976378 47.2440945 4056.1417323 7546.1968504 263.7795276 4317.3267717 7546.1968504 47.2440945 4317.3267717 7546.1968504 263.7795276 4317.3267717 7546.1968504 47.2440945 4317.3267717 7361.2165354 263.7795276 4053.1496063 7361.2165354 47.2440945 4053.1496063 7361.2165354 263.7795276 4053.1496063 7361.2165354 47.2440945 4053.1496063 7531.6929134 263.7795276 4348.4251969 7531.6929134 47.2440945 4348.4251969 7531.6929134 263.7795276 4348.4251969 7531.6929134 47.2440945 4348.4251969 7334.8818898 263.7795276 4055.4527559 7334.8818898 47.2440945 4055.4527559 7334.8818898 263.7795276 4055.4527559 7334.8818898 47.2440945 4055.4527559 7512.0118110 263.7795276 4376.5314961 7512.0118110 47.2440945 4376.5314961 7512.0118110 263.7795276 4376.5314961 7512.0118110 47.2440945 4376.5314961 7327.0314961 263.7795276 4056.1417323 7327.0314961 47.2440945 4056.1417323 7327.0314961 263.7795276 4056.1417323 7327.0314961 47.2440945 4056.1417323 7495.6062992 263.7795276 4392.9409449 7495.6062992 47.2440945 4392.9409449 7495.6062992 263.7795276 4392.9409449 7495.6062992 47.2440945 4392.9409449 7293.8897638 263.7795276 4065.0196850 7293.8897638 47.2440945 4065.0196850 7293.8897638 263.7795276 4065.0196850 7293.8897638 47.2440945 4065.0196850 7487.7480315 47.2440945 4400.7952756 7487.7480315 263.7795276 4400.7952756 7487.7480315 47.2440945 4400.7952756 7487.7480315 263.7795276 4400.7952756 7262.7913386 263.7795276 4079.5236220 7262.7913386 47.2440945 4079.5236220 7262.7913386 263.7795276 4079.5236220 7262.7913386 47.2440945 4079.5236220 7459.6417323 47.2440945 4420.4763780 7459.6417323 263.7795276 4420.4763780 7459.6417323 47.2440945 4420.4763780 7459.6417323 263.7795276 4420.4763780 7234.6811024 263.7795276 4099.2047244 7234.6811024 47.2440945 4099.2047244 7234.6811024 263.7795276 4099.2047244 7234.6811024 47.2440945 4099.2047244 7428.5433071 47.2440945 4434.9803150 7428.5433071 263.7795276 4434.9803150 7428.5433071 47.2440945 4434.9803150 7428.5433071 263.7795276 4434.9803150 7210.4212598 47.2440945 4123.4685039 7210.4212598 263.7795276 4123.4685039 7210.4212598 263.7795276 4123.4685039 7210.4212598 47.2440945 4123.4685039 7395.3976378 47.2440945 4443.8582677 7395.3976378 263.7795276 4443.8582677 7395.3976378 47.2440945 4443.8582677 7395.3976378 263.7795276 4443.8582677 7190.7401575 47.2440945 4151.5748031 7190.7401575 263.7795276 4151.5748031 7190.7401575 263.7795276 4151.5748031 7190.7401575 47.2440945 4151.5748031 7387.5511811 47.2440945 4444.5472441 7387.5511811 263.7795276 4444.5472441 7387.5511811 47.2440945 4444.5472441 7387.5511811 263.7795276 4444.5472441 7176.2362205 47.2440945 4182.6732283 7176.2362205 263.7795276 4182.6732283 7176.2362205 263.7795276 4182.6732283 7176.2362205 47.2440945 4182.6732283 7361.2165354 47.2440945 4446.8503937 7361.2165354 263.7795276 4446.8503937 7361.2165354 47.2440945 4446.8503937 7361.2165354 263.7795276 4446.8503937 7170.2322835 47.2440945 4205.0866142 7170.2322835 263.7795276 4205.0866142 7170.2322835 263.7795276 4205.0866142 7170.2322835 47.2440945 4205.0866142 7327.0314961 47.2440945 4443.8582677 7327.0314961 263.7795276 4443.8582677 7327.0314961 47.2440945 4443.8582677 7327.0314961 263.7795276 4443.8582677 7167.3543307 47.2440945 4215.8188976 7167.3543307 263.7795276 4215.8188976 7167.3543307 263.7795276 4215.8188976 7167.3543307 47.2440945 4215.8188976 7311.2559055 47.2440945 4439.6338583 7311.2559055 263.7795276 4439.6338583 7311.2559055 47.2440945 4439.6338583 7311.2559055 263.7795276 4439.6338583 7164.3661417 47.2440945 4250.0000000 7164.3661417 263.7795276 4250.0000000 7164.3661417 263.7795276 4250.0000000 7164.3661417 47.2440945 4250.0000000 7293.8897638 47.2440945 4434.9803150 7293.8897638 263.7795276 4434.9803150 7293.8897638 47.2440945 4434.9803150 7293.8897638 263.7795276 4434.9803150 7167.3543307 47.2440945 4284.1811024 7167.3543307 263.7795276 4284.1811024 7167.3543307 263.7795276 4284.1811024 7167.3543307 47.2440945 4284.1811024 7262.7913386 47.2440945 4420.4763780 7262.7913386 263.7795276 4420.4763780 7262.7913386 47.2440945 4420.4763780 7262.7913386 263.7795276 4420.4763780 7176.2362205 263.7795276 4317.3267717 7176.2362205 47.2440945 4317.3267717 7176.2362205 263.7795276 4317.3267717 7176.2362205 47.2440945 4317.3267717 7234.6811024 47.2440945 4400.7952756 7234.6811024 263.7795276 4400.7952756 7234.6811024 47.2440945 4400.7952756 7234.6811024 263.7795276 4400.7952756 7190.7401575 47.2440945 4348.4251969 7190.7401575 263.7795276 4348.4251969 7190.7401575 263.7795276 4348.4251969 7190.7401575 47.2440945 4348.4251969 7221.9685039 47.2440945 4388.0826772 7221.9685039 263.7795276 4388.0826772 7221.9685039 47.2440945 4388.0826772 7221.9685039 263.7795276 4388.0826772 7210.4212598 47.2440945 4376.5314961 7210.4212598 263.7795276 4376.5314961 7210.4212598 263.7795276 4376.5314961 7210.4212598 47.2440945 4376.5314961 - - - - - - - - - - -0.8660036 -0.0000001 0.5000377 -0.7660926 0.0000000 0.6427302 -0.8660036 -0.0000001 0.5000377 -0.7660926 0.0000000 0.6427302 0.7660926 -0.0000000 -0.6427302 0.8660036 0.0000001 -0.5000377 0.7660926 -0.0000000 -0.6427302 0.8660036 0.0000001 -0.5000377 -0.7071123 0.0000000 0.7071013 -0.7071123 0.0000000 0.7071013 0.7071123 -0.0000000 -0.7071013 0.7071123 -0.0000000 -0.7071013 -0.9396976 -0.0000001 0.3420064 -0.9396976 -0.0000001 0.3420064 0.9396976 0.0000001 -0.3420064 0.9396976 0.0000001 -0.3420064 -0.6427362 -0.0000000 0.7660876 -0.6427362 -0.0000000 0.7660876 0.6427362 0.0000000 -0.7660876 0.6427362 0.0000000 -0.7660876 -0.9848119 0.0000000 0.1736248 -0.9848119 0.0000000 0.1736248 0.9848119 -0.0000000 -0.1736248 0.9848119 -0.0000000 -0.1736248 -0.5000375 -0.0000000 0.8660037 -0.5000375 -0.0000000 0.8660037 0.5000375 0.0000000 -0.8660037 0.5000375 0.0000000 -0.8660037 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 -0.0000000 -0.3420064 -0.0000008 0.9396976 -0.3420064 -0.0000008 0.9396976 0.3420064 0.0000008 -0.9396976 0.3420064 0.0000008 -0.9396976 -0.9848117 -0.0000004 -0.1736258 -0.9848117 -0.0000004 -0.1736258 0.9848117 0.0000004 0.1736258 0.9848117 0.0000004 0.1736258 -0.1736251 -0.0000008 0.9848118 -0.1736251 -0.0000008 0.9848118 0.1736251 0.0000008 -0.9848118 0.1736251 0.0000008 -0.9848118 -0.9396974 -0.0000004 -0.3420071 -0.9396974 -0.0000004 -0.3420071 0.9396974 0.0000004 0.3420071 0.9396974 0.0000004 0.3420071 -0.0000399 -0.0000000 1.0000000 -0.0000399 -0.0000000 1.0000000 0.0000399 0.0000000 -1.0000000 0.0000399 0.0000000 -1.0000000 -0.8660037 0.0000000 -0.5000375 -0.8660037 0.0000000 -0.5000375 0.8660037 -0.0000000 0.5000375 0.8660037 -0.0000000 0.5000375 0.0872758 0.0000000 0.9961842 0.0872758 0.0000000 0.9961842 -0.0872758 -0.0000000 -0.9961842 -0.0872758 -0.0000000 -0.9961842 -0.7660764 0.0000000 -0.6427495 -0.7660764 0.0000000 -0.6427495 0.7660764 -0.0000000 0.6427495 0.7660764 -0.0000000 0.6427495 0.1737498 0.0000000 0.9847898 0.1737498 0.0000000 0.9847898 -0.1737498 -0.0000000 -0.9847898 -0.1737498 -0.0000000 -0.9847898 -0.7070606 0.0000000 -0.7071529 -0.7070606 0.0000000 -0.7071529 0.7070606 -0.0000000 0.7071529 0.7070606 -0.0000000 0.7071529 0.3420202 0.0000000 0.9396926 0.3420202 0.0000000 0.9396926 -0.3420202 -0.0000000 -0.9396926 -0.3420202 -0.0000000 -0.9396926 -0.6427015 -0.0000006 -0.7661167 -0.6427015 -0.0000006 -0.7661167 0.6427015 0.0000006 0.7661167 0.6427015 0.0000006 0.7661167 0.5000090 -0.0000000 0.8660202 0.5000090 -0.0000000 0.8660202 -0.5000090 0.0000000 -0.8660202 -0.5000090 0.0000000 -0.8660202 -0.5000398 -0.0000006 -0.8660024 -0.5000398 -0.0000006 -0.8660024 0.5000398 0.0000006 0.8660024 0.5000398 0.0000006 0.8660024 0.6428025 -0.0000007 0.7660319 0.6428025 -0.0000007 0.7660319 -0.6428025 0.0000007 -0.7660319 -0.6428025 0.0000007 -0.7660319 -0.3420062 0.0000000 -0.9396977 -0.3420062 0.0000000 -0.9396977 0.3420062 -0.0000000 0.9396977 0.3420062 -0.0000000 0.9396977 0.7660649 -0.0000007 0.6427632 0.7660649 -0.0000007 0.6427632 -0.7660649 0.0000007 -0.6427632 -0.7660649 0.0000007 -0.6427632 -0.1737608 0.0000007 -0.9847879 -0.1737608 0.0000007 -0.9847879 0.1737608 -0.0000007 0.9847879 0.1737608 -0.0000007 0.9847879 0.8660037 0.0000000 0.5000375 0.8660037 0.0000000 0.5000375 -0.8660037 -0.0000000 -0.5000375 -0.8660037 -0.0000000 -0.5000375 -0.0873017 0.0000007 -0.9961819 -0.0873017 0.0000007 -0.9961819 0.0873017 -0.0000007 0.9961819 0.0873017 -0.0000007 0.9961819 0.9396935 0.0000000 0.3420177 0.9396935 0.0000000 0.3420177 -0.9396935 -0.0000000 -0.3420177 -0.9396935 -0.0000000 -0.3420177 0.0000349 -0.0000000 -1.0000000 0.0000349 -0.0000000 -1.0000000 -0.0000349 0.0000000 1.0000000 -0.0000349 0.0000000 1.0000000 0.9659098 0.0000000 0.2588789 0.9659098 0.0000000 0.2588789 -0.9659098 -0.0000000 -0.2588789 -0.9659098 -0.0000000 -0.2588789 0.1735900 0.0000000 -0.9848180 0.1735900 0.0000000 -0.9848180 -0.1735900 -0.0000000 0.9848180 -0.1735900 -0.0000000 0.9848180 0.9847963 -0.0000003 0.1737133 0.9847963 -0.0000003 0.1737133 -0.9847963 0.0000003 -0.1737133 -0.9847963 0.0000003 -0.1737133 0.2587512 0.0000000 -0.9659440 0.2587512 0.0000000 -0.9659440 -0.2587512 -0.0000000 0.9659440 -0.2587512 -0.0000000 0.9659440 1.0000000 -0.0000003 0.0000014 1.0000000 -0.0000003 0.0000014 -1.0000000 0.0000003 -0.0000014 -1.0000000 0.0000003 -0.0000014 0.3420588 0.0000000 -0.9396786 0.3420588 0.0000000 -0.9396786 -0.3420588 -0.0000000 0.9396786 -0.3420588 -0.0000000 0.9396786 0.9848122 0.0000000 -0.1736231 0.9848122 0.0000000 -0.1736231 -0.9848122 -0.0000000 0.1736231 -0.9848122 -0.0000000 0.1736231 0.5000090 -0.0000000 -0.8660202 0.5000090 -0.0000000 -0.8660202 -0.5000090 0.0000000 0.8660202 -0.5000090 0.0000000 0.8660202 0.9396779 -0.0000005 -0.3420607 0.9396779 -0.0000005 -0.3420607 -0.9396779 0.0000005 0.3420607 -0.9396779 0.0000005 0.3420607 0.6427703 -0.0000000 -0.7660590 0.6427703 -0.0000000 -0.7660590 -0.6427703 0.0000000 0.7660590 -0.6427703 0.0000000 0.7660590 0.8660024 -0.0000005 -0.5000398 0.8660024 -0.0000005 -0.5000398 -0.8660024 0.0000005 0.5000398 -0.8660024 0.0000005 0.5000398 0.7071670 0.0000000 -0.7070465 0.7071670 0.0000000 -0.7070465 -0.7071670 -0.0000000 0.7070465 -0.7071670 -0.0000000 0.7070465 0.7660926 0.0000000 -0.6427302 0.7660926 0.0000000 -0.6427302 -0.7660926 -0.0000000 0.6427302 -0.7660926 -0.0000000 0.6427302 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 8 16 17 16 8 9 20 12 13 12 20 21 17 24 25 24 17 16 28 20 29 20 28 21 25 32 33 32 25 24 36 29 37 29 36 28 33 40 41 40 33 32 44 37 45 37 44 36 41 48 49 48 41 40 52 45 53 45 52 44 49 56 57 56 49 48 60 53 61 53 60 52 57 64 65 64 57 56 68 61 69 61 68 60 65 72 73 72 65 64 68 76 77 76 68 69 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 85 92 93 92 85 84 88 96 89 96 88 97 93 100 101 100 93 92 97 104 96 104 97 105 101 108 109 108 101 100 105 112 104 112 105 113 109 116 117 116 109 108 113 120 112 120 113 121 117 124 125 124 117 116 121 128 120 128 121 129 125 132 133 132 125 124 129 136 128 136 129 137 133 140 141 140 133 132 137 144 136 144 137 145 141 148 149 148 141 140 144 152 153 152 144 145 149 156 157 156 149 148 152 160 153 160 152 161 157 164 165 164 157 156 161 168 160 168 161 169 169 164 168 164 169 165

-
- - -

4 5 6 7 6 5 10 4 11 6 11 4 5 14 7 15 7 14 10 11 18 19 18 11 22 23 14 15 14 23 18 19 26 27 26 19 22 30 23 31 23 30 26 27 34 35 34 27 30 38 31 39 31 38 34 35 42 43 42 35 38 46 39 47 39 46 42 43 50 51 50 43 46 54 47 55 47 54 50 51 58 59 58 51 54 62 55 63 55 62 58 59 66 67 66 59 62 70 63 71 63 70 66 67 74 75 74 67 71 70 78 79 78 70 74 75 82 83 82 75 78 79 86 87 86 79 82 83 90 91 90 83 86 87 94 95 94 87 98 90 99 91 99 90 94 95 102 103 102 95 106 98 107 99 107 98 102 103 110 111 110 103 114 106 115 107 115 106 110 111 118 119 118 111 122 114 123 115 123 114 118 119 126 127 126 119 130 122 131 123 131 122 126 127 134 135 134 127 138 130 139 131 139 130 134 135 142 143 142 135 146 138 147 139 147 138 142 143 150 151 150 143 146 147 154 155 154 147 150 151 158 159 158 151 162 154 163 155 163 154 158 159 166 167 166 159 170 162 171 163 171 162 167 170 166 171 166 170

-
-
-
- - - - 7127.6771654 47.2440945 4045.7716535 7118.9645669 263.7795276 4039.6732283 7118.9645669 47.2440945 4039.6732283 7127.6771654 263.7795276 4045.7716535 7127.6771654 263.7795276 4045.7716535 7127.6771654 47.2440945 4045.7716535 7118.9645669 263.7795276 4039.6732283 7118.9645669 47.2440945 4039.6732283 7135.2007874 47.2440945 4053.2952756 7135.2007874 263.7795276 4053.2952756 7135.2007874 263.7795276 4053.2952756 7135.2007874 47.2440945 4053.2952756 7067.8188976 263.7795276 4010.1456693 7067.8188976 47.2440945 4010.1456693 7067.8188976 263.7795276 4010.1456693 7067.8188976 47.2440945 4010.1456693 7141.2992126 263.7795276 4062.0078740 7141.2992126 47.2440945 4062.0078740 7141.2992126 263.7795276 4062.0078740 7141.2992126 47.2440945 4062.0078740 7058.1811024 263.7795276 4005.6496063 7058.1811024 47.2440945 4005.6496063 7058.1811024 263.7795276 4005.6496063 7058.1811024 47.2440945 4005.6496063 7145.7952756 47.2440945 4071.6496063 7145.7952756 263.7795276 4071.6496063 7145.7952756 263.7795276 4071.6496063 7145.7952756 47.2440945 4071.6496063 7047.9055118 263.7795276 4002.8937008 7047.9055118 47.2440945 4002.8937008 7047.9055118 263.7795276 4002.8937008 7047.9055118 47.2440945 4002.8937008 7148.5472441 263.7795276 4081.9212598 7148.5472441 47.2440945 4081.9212598 7148.5472441 263.7795276 4081.9212598 7148.5472441 47.2440945 4081.9212598 7037.3110236 263.7795276 4001.9685039 7037.3110236 47.2440945 4001.9685039 7037.3110236 263.7795276 4001.9685039 7037.3110236 47.2440945 4001.9685039 7149.4763780 263.7795276 4092.5196850 7149.4763780 47.2440945 4092.5196850 7149.4763780 263.7795276 4092.5196850 7149.4763780 47.2440945 4092.5196850 7026.7125984 263.7795276 4002.8937008 7026.7125984 47.2440945 4002.8937008 7026.7125984 263.7795276 4002.8937008 7026.7125984 47.2440945 4002.8937008 7148.5472441 47.2440945 4103.1181102 7148.5472441 263.7795276 4103.1181102 7148.5472441 263.7795276 4103.1181102 7148.5472441 47.2440945 4103.1181102 7016.4370079 263.7795276 4005.6496063 7016.4370079 47.2440945 4005.6496063 7016.4370079 263.7795276 4005.6496063 7016.4370079 47.2440945 4005.6496063 7145.7952756 263.7795276 4113.3897638 7145.7952756 47.2440945 4113.3897638 7145.7952756 263.7795276 4113.3897638 7145.7952756 47.2440945 4113.3897638 7006.7952756 263.7795276 4010.1456693 7006.7952756 47.2440945 4010.1456693 7006.7952756 263.7795276 4010.1456693 7006.7952756 47.2440945 4010.1456693 7141.2992126 263.7795276 4123.0314961 7141.2992126 47.2440945 4123.0314961 7141.2992126 263.7795276 4123.0314961 7141.2992126 47.2440945 4123.0314961 6998.0826772 263.7795276 4016.2440945 6998.0826772 47.2440945 4016.2440945 6998.0826772 263.7795276 4016.2440945 6998.0826772 47.2440945 4016.2440945 7135.2007874 263.7795276 4131.7440945 7135.2007874 47.2440945 4131.7440945 7135.2007874 263.7795276 4131.7440945 7135.2007874 47.2440945 4131.7440945 6990.5629921 47.2440945 4023.7677165 6990.5629921 263.7795276 4023.7677165 6990.5629921 263.7795276 4023.7677165 6990.5629921 47.2440945 4023.7677165 7127.6771654 47.2440945 4139.2677165 7127.6771654 263.7795276 4139.2677165 7127.6771654 47.2440945 4139.2677165 7127.6771654 263.7795276 4139.2677165 6984.4606299 47.2440945 4032.4803150 6984.4606299 263.7795276 4032.4803150 6984.4606299 263.7795276 4032.4803150 6984.4606299 47.2440945 4032.4803150 7118.9645669 47.2440945 4145.3661417 7118.9645669 263.7795276 4145.3661417 7118.9645669 47.2440945 4145.3661417 7118.9645669 263.7795276 4145.3661417 6979.9645669 263.7795276 4042.1220472 6979.9645669 47.2440945 4042.1220472 6979.9645669 263.7795276 4042.1220472 6979.9645669 47.2440945 4042.1220472 7109.3228346 47.2440945 4149.8622047 7109.3228346 263.7795276 4149.8622047 7109.3228346 47.2440945 4149.8622047 7109.3228346 263.7795276 4149.8622047 6977.2125984 47.2440945 4052.3937008 6977.2125984 263.7795276 4052.3937008 6977.2125984 263.7795276 4052.3937008 6977.2125984 47.2440945 4052.3937008 7099.0472441 47.2440945 4152.6181102 7099.0472441 263.7795276 4152.6181102 7099.0472441 47.2440945 4152.6181102 7099.0472441 263.7795276 4152.6181102 6976.2834646 47.2440945 4062.9921260 6976.2834646 263.7795276 4062.9921260 6976.2834646 263.7795276 4062.9921260 6976.2834646 47.2440945 4062.9921260 7088.4527559 47.2440945 4153.5433071 7088.4527559 263.7795276 4153.5433071 7088.4527559 47.2440945 4153.5433071 7088.4527559 263.7795276 4153.5433071 6977.2125984 47.2440945 4073.5905512 6977.2125984 263.7795276 4073.5905512 6977.2125984 263.7795276 4073.5905512 6977.2125984 47.2440945 4073.5905512 7077.8543307 47.2440945 4152.6181102 7077.8543307 263.7795276 4152.6181102 7077.8543307 47.2440945 4152.6181102 7077.8543307 263.7795276 4152.6181102 6979.9645669 263.7795276 4083.8622047 6979.9645669 47.2440945 4083.8622047 6979.9645669 263.7795276 4083.8622047 6979.9645669 47.2440945 4083.8622047 7067.5826772 47.2440945 4149.8622047 7067.5826772 263.7795276 4149.8622047 7067.5826772 47.2440945 4149.8622047 7067.5826772 263.7795276 4149.8622047 6984.4606299 47.2440945 4093.5039370 6984.4606299 263.7795276 4093.5039370 6984.4606299 263.7795276 4093.5039370 6984.4606299 47.2440945 4093.5039370 7057.9409449 47.2440945 4145.3661417 7057.9409449 263.7795276 4145.3661417 7057.9409449 47.2440945 4145.3661417 7057.9409449 263.7795276 4145.3661417 6989.5472441 47.2440945 4100.7637795 6989.5472441 263.7795276 4100.7637795 6989.5472441 263.7795276 4100.7637795 6989.5472441 47.2440945 4100.7637795 7006.7952756 47.2440945 4115.8385827 7006.7952756 263.7795276 4115.8385827 7006.7952756 47.2440945 4115.8385827 7006.7952756 263.7795276 4115.8385827 6990.5629921 47.2440945 4102.2165354 6990.5629921 263.7795276 4102.2165354 6990.5629921 263.7795276 4102.2165354 6990.5629921 47.2440945 4102.2165354 6998.0826772 47.2440945 4109.7401575 6998.0826772 263.7795276 4109.7401575 6998.0826772 47.2440945 4109.7401575 6998.0826772 263.7795276 4109.7401575 - - - - - - - - - - -0.6427226 -0.0000000 0.7660989 -0.5372194 -0.0000000 0.8434425 -0.5372194 -0.0000000 0.8434425 -0.6427226 -0.0000000 0.7660989 0.6427226 0.0000000 -0.7660989 0.6427226 0.0000000 -0.7660989 0.5372194 0.0000000 -0.8434425 0.5372194 0.0000000 -0.8434425 -0.7660932 0.0000007 0.6427295 -0.7660932 0.0000007 0.6427295 0.7660932 -0.0000007 -0.6427295 0.7660932 -0.0000007 -0.6427295 -0.4618107 0.0000000 0.8869785 -0.4618107 0.0000000 0.8869785 0.4618107 -0.0000000 -0.8869785 0.4618107 -0.0000000 -0.8869785 -0.8660623 0.0000007 0.4999361 -0.8660623 0.0000007 0.4999361 0.8660623 -0.0000007 -0.4999361 0.8660623 -0.0000007 -0.4999361 -0.3422052 -0.0000000 0.9396252 -0.3422052 -0.0000000 0.9396252 0.3422052 0.0000000 -0.9396252 0.3422052 0.0000000 -0.9396252 -0.9396968 0.0000000 0.3420088 -0.9396968 0.0000000 0.3420088 0.9396968 -0.0000000 -0.3420088 0.9396968 -0.0000000 -0.3420088 -0.1736892 0.0000003 0.9848005 -0.1736892 0.0000003 0.9848005 0.1736892 -0.0000003 -0.9848005 0.1736892 -0.0000003 -0.9848005 -0.9847948 0.0000000 0.1737214 -0.9847948 0.0000000 0.1737214 0.9847948 -0.0000000 -0.1737214 0.9847948 -0.0000000 -0.1737214 -0.0000208 0.0000003 1.0000000 -0.0000208 0.0000003 1.0000000 0.0000208 -0.0000003 -1.0000000 0.0000208 -0.0000003 -1.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 0.1736687 -0.0000000 0.9848041 0.1736687 -0.0000000 0.9848041 -0.1736687 0.0000000 -0.9848041 -0.1736687 0.0000000 -0.9848041 -0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 -0.1737214 0.9847948 -0.0000000 0.1737214 0.9847948 -0.0000000 0.1737214 0.3421317 -0.0000000 0.9396520 0.3421317 -0.0000000 0.9396520 -0.3421317 0.0000000 -0.9396520 -0.3421317 0.0000000 -0.9396520 -0.9396968 0.0000000 -0.3420088 -0.9396968 0.0000000 -0.3420088 0.9396968 -0.0000000 0.3420088 0.9396968 -0.0000000 0.3420088 0.4999284 0.0000000 0.8660667 0.4999284 0.0000000 0.8660667 -0.4999284 -0.0000000 -0.8660667 -0.4999284 -0.0000000 -0.8660667 -0.8660667 -0.0000000 -0.4999284 -0.8660667 -0.0000000 -0.4999284 0.8660667 0.0000000 0.4999284 0.8660667 0.0000000 0.4999284 0.6428229 0.0000000 0.7660148 0.6428229 0.0000000 0.7660148 -0.6428229 -0.0000000 -0.7660148 -0.6428229 -0.0000000 -0.7660148 -0.7660989 -0.0000000 -0.6427226 -0.7660989 -0.0000000 -0.6427226 0.7660989 0.0000000 0.6427226 0.7660989 0.0000000 0.6427226 0.7660856 -0.0000000 0.6427385 0.7660856 -0.0000000 0.6427385 -0.7660856 0.0000000 -0.6427385 -0.7660856 0.0000000 -0.6427385 -0.6427226 -0.0000000 -0.7660989 -0.6427226 -0.0000000 -0.7660989 0.6427226 0.0000000 0.7660989 0.6427226 0.0000000 0.7660989 0.8659909 0.0000000 0.5000597 0.8659909 0.0000000 0.5000597 -0.8659909 -0.0000000 -0.5000597 -0.8659909 -0.0000000 -0.5000597 -0.4999284 0.0000000 -0.8660667 -0.4999284 0.0000000 -0.8660667 0.4999284 -0.0000000 0.8660667 0.4999284 -0.0000000 0.8660667 0.9396968 0.0000000 0.3420088 0.9396968 0.0000000 0.3420088 -0.9396968 -0.0000000 -0.3420088 -0.9396968 -0.0000000 -0.3420088 -0.3421317 0.0000000 -0.9396520 -0.3421317 0.0000000 -0.9396520 0.3421317 -0.0000000 0.9396520 0.3421317 -0.0000000 0.9396520 0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 0.1737214 -0.9847948 -0.0000000 -0.1737214 -0.9847948 -0.0000000 -0.1737214 -0.1736846 0.0000000 -0.9848013 -0.1736846 0.0000000 -0.9848013 0.1736846 -0.0000000 0.9848013 0.1736846 -0.0000000 0.9848013 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 -0.0000086 0.0000006 -1.0000000 -0.0000086 0.0000006 -1.0000000 0.0000086 -0.0000006 1.0000000 0.0000086 -0.0000006 1.0000000 0.9847948 0.0000000 -0.1737214 0.9847948 0.0000000 -0.1737214 -0.9847948 -0.0000000 0.1737214 -0.9847948 -0.0000000 0.1737214 0.1737233 0.0000006 -0.9847945 0.1737233 0.0000006 -0.9847945 -0.1737233 -0.0000006 0.9847945 -0.1737233 -0.0000006 0.9847945 0.9396968 0.0000000 -0.3420088 0.9396968 0.0000000 -0.3420088 -0.9396968 -0.0000000 0.3420088 -0.9396968 -0.0000000 0.3420088 0.3421768 -0.0000000 -0.9396356 0.3421768 -0.0000000 -0.9396356 -0.3421768 0.0000000 0.9396356 -0.3421768 0.0000000 0.9396356 0.8659500 -0.0000000 -0.5001306 0.8659500 -0.0000000 -0.5001306 -0.8659500 0.0000000 0.5001306 -0.8659500 0.0000000 0.5001306 0.4617413 -0.0000000 -0.8870146 0.4617413 -0.0000000 -0.8870146 -0.4617413 0.0000000 0.8870146 -0.4617413 0.0000000 0.8870146 0.8192632 -0.0000000 -0.5734176 0.8192632 -0.0000000 -0.5734176 -0.8192632 0.0000000 0.5734176 -0.8192632 0.0000000 0.5734176 0.5372194 0.0000000 -0.8434425 0.5372194 0.0000000 -0.8434425 -0.5372194 -0.0000000 0.8434425 -0.5372194 -0.0000000 0.8434425 0.7663487 0.0000000 -0.6424249 0.7663487 0.0000000 -0.6424249 -0.7663487 -0.0000000 0.6424249 -0.7663487 -0.0000000 0.6424249 0.6428229 0.0000000 -0.7660148 0.6428229 0.0000000 -0.7660148 -0.6428229 -0.0000000 0.7660148 -0.6428229 -0.0000000 0.7660148 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 8 17 8 16 9 13 20 21 20 13 12 24 16 17 16 24 25 21 28 29 28 21 20 32 24 33 24 32 25 29 36 37 36 29 28 40 33 41 33 40 32 37 44 45 44 37 36 48 40 41 40 48 49 45 52 53 52 45 44 56 48 57 48 56 49 53 60 61 60 53 52 64 57 65 57 64 56 61 68 69 68 61 60 72 65 73 65 72 64 68 76 69 76 68 77 72 80 81 80 72 73 77 84 76 84 77 85 81 88 89 88 81 80 84 92 93 92 84 85 89 96 97 96 89 88 92 100 93 100 92 101 97 104 105 104 97 96 101 108 100 108 101 109 105 112 113 112 105 104 109 116 108 116 109 117 113 120 121 120 113 112 116 124 125 124 116 117 121 128 129 128 121 120 124 132 125 132 124 133 129 136 137 136 129 128 133 140 132 140 133 141 137 144 145 144 137 136 141 148 140 148 141 149 145 152 153 152 145 144 149 152 148 152 149 153

-
- - -

4 5 6 7 6 5 10 11 4 5 4 11 6 7 14 15 14 7 10 18 11 19 11 18 14 15 22 23 22 15 26 27 18 19 18 27 22 23 30 31 30 23 26 34 27 35 27 34 30 31 38 39 38 31 34 42 35 43 35 42 38 39 46 47 46 39 50 51 42 43 42 51 46 47 54 55 54 47 50 58 51 59 51 58 54 55 62 63 62 55 58 66 59 67 59 66 62 63 70 71 70 63 66 74 67 75 67 74 78 70 79 71 79 70 75 74 82 83 82 74 86 78 87 79 87 78 82 83 90 91 90 83 86 87 94 95 94 87 90 91 98 99 98 91 102 94 103 95 103 94 98 99 106 107 106 99 110 102 111 103 111 102 106 107 114 115 114 107 118 110 119 111 119 110 114 115 122 123 122 115 118 119 126 127 126 119 122 123 130 131 130 123 134 126 135 127 135 126 130 131 138 139 138 131 142 134 143 135 143 134 138 139 146 147 146 139 150 142 151 143 151 142 146 147 154 155 154 147 155 150 154 151 154 150

-
-
-
- - - - 2800.9440945 263.7795276 1617.1259843 2804.5696850 47.2440945 1609.3515748 2800.9440945 47.2440945 1617.1259843 2804.5696850 263.7795276 1609.3515748 2804.5696850 263.7795276 1609.3515748 2800.9440945 263.7795276 1617.1259843 2804.5696850 47.2440945 1609.3515748 2800.9440945 47.2440945 1617.1259843 2806.7897638 263.7795276 1601.0653543 2806.7897638 47.2440945 1601.0653543 2806.7897638 263.7795276 1601.0653543 2806.7897638 47.2440945 1601.0653543 2796.0244094 47.2440945 1624.1527559 2796.0244094 263.7795276 1624.1527559 2796.0244094 263.7795276 1624.1527559 2796.0244094 47.2440945 1624.1527559 2807.5374016 47.2440945 1592.5196850 2807.5374016 263.7795276 1592.5196850 2807.5374016 263.7795276 1592.5196850 2807.5374016 47.2440945 1592.5196850 2789.9582677 47.2440945 1630.2185039 2789.9582677 263.7795276 1630.2185039 2789.9582677 47.2440945 1630.2185039 2789.9582677 263.7795276 1630.2185039 2806.7905512 263.7795276 1583.9740157 2806.7905512 47.2440945 1583.9740157 2806.7905512 263.7795276 1583.9740157 2806.7905512 47.2440945 1583.9740157 2782.9311024 47.2440945 1635.1389764 2782.9311024 263.7795276 1635.1389764 2782.9311024 47.2440945 1635.1389764 2782.9311024 263.7795276 1635.1389764 2804.5696850 47.2440945 1575.6877953 2804.5696850 263.7795276 1575.6877953 2804.5696850 263.7795276 1575.6877953 2804.5696850 47.2440945 1575.6877953 2775.1570866 47.2440945 1638.7645669 2775.1570866 263.7795276 1638.7645669 2775.1570866 47.2440945 1638.7645669 2775.1570866 263.7795276 1638.7645669 2800.9440945 263.7795276 1567.9133858 2800.9440945 47.2440945 1567.9133858 2800.9440945 263.7795276 1567.9133858 2800.9440945 47.2440945 1567.9133858 2766.8704724 47.2440945 1640.9846457 2766.8704724 263.7795276 1640.9846457 2766.8704724 47.2440945 1640.9846457 2766.8704724 263.7795276 1640.9846457 2796.0244094 47.2440945 1560.8862205 2796.0244094 263.7795276 1560.8862205 2796.0244094 263.7795276 1560.8862205 2796.0244094 47.2440945 1560.8862205 2758.3248031 47.2440945 1641.7322835 2758.3248031 263.7795276 1641.7322835 2758.3248031 47.2440945 1641.7322835 2758.3248031 263.7795276 1641.7322835 2789.9582677 263.7795276 1554.8204724 2789.9582677 47.2440945 1554.8204724 2789.9582677 263.7795276 1554.8204724 2789.9582677 47.2440945 1554.8204724 2749.7791339 47.2440945 1640.9846457 2749.7791339 263.7795276 1640.9846457 2749.7791339 47.2440945 1640.9846457 2749.7791339 263.7795276 1640.9846457 2782.9311024 263.7795276 1549.9003937 2782.9311024 47.2440945 1549.9003937 2782.9311024 263.7795276 1549.9003937 2782.9311024 47.2440945 1549.9003937 2741.4933071 47.2440945 1638.7641732 2741.4933071 263.7795276 1638.7641732 2741.4933071 47.2440945 1638.7641732 2741.4933071 263.7795276 1638.7641732 2775.1570866 263.7795276 1546.2751969 2775.1570866 47.2440945 1546.2751969 2775.1570866 263.7795276 1546.2751969 2775.1570866 47.2440945 1546.2751969 2733.7185039 47.2440945 1635.1389764 2733.7185039 263.7795276 1635.1389764 2733.7185039 47.2440945 1635.1389764 2733.7185039 263.7795276 1635.1389764 2766.8708661 263.7795276 1544.0547244 2766.8708661 47.2440945 1544.0547244 2766.8708661 263.7795276 1544.0547244 2766.8708661 47.2440945 1544.0547244 2726.6921260 47.2440945 1630.2188976 2726.6921260 263.7795276 1630.2188976 2726.6921260 47.2440945 1630.2188976 2726.6921260 263.7795276 1630.2188976 2758.3248031 263.7795276 1543.3070866 2758.3248031 47.2440945 1543.3070866 2758.3248031 263.7795276 1543.3070866 2758.3248031 47.2440945 1543.3070866 2720.6259843 47.2440945 1624.1531496 2720.6259843 263.7795276 1624.1531496 2720.6259843 47.2440945 1624.1531496 2720.6259843 263.7795276 1624.1531496 2749.7791339 263.7795276 1544.0547244 2749.7791339 47.2440945 1544.0547244 2749.7791339 263.7795276 1544.0547244 2749.7791339 47.2440945 1544.0547244 2715.7055118 263.7795276 1617.1259843 2715.7055118 47.2440945 1617.1259843 2715.7055118 263.7795276 1617.1259843 2715.7055118 47.2440945 1617.1259843 2741.4933071 263.7795276 1546.2751969 2741.4933071 47.2440945 1546.2751969 2741.4933071 263.7795276 1546.2751969 2741.4933071 47.2440945 1546.2751969 2712.0803150 263.7795276 1609.3511811 2712.0803150 47.2440945 1609.3511811 2712.0803150 263.7795276 1609.3511811 2712.0803150 47.2440945 1609.3511811 2733.7185039 263.7795276 1549.9003937 2733.7185039 47.2440945 1549.9003937 2733.7185039 263.7795276 1549.9003937 2733.7185039 47.2440945 1549.9003937 2709.8598425 263.7795276 1601.0653543 2709.8598425 47.2440945 1601.0653543 2709.8598425 263.7795276 1601.0653543 2709.8598425 47.2440945 1601.0653543 2726.6921260 263.7795276 1554.8204724 2726.6921260 47.2440945 1554.8204724 2726.6921260 263.7795276 1554.8204724 2726.6921260 47.2440945 1554.8204724 2709.1122047 47.2440945 1592.5196850 2709.1122047 263.7795276 1592.5196850 2709.1122047 263.7795276 1592.5196850 2709.1122047 47.2440945 1592.5196850 2720.6259843 263.7795276 1560.8866142 2720.6259843 47.2440945 1560.8866142 2720.6259843 263.7795276 1560.8866142 2720.6259843 47.2440945 1560.8866142 2709.8598425 263.7795276 1583.9740157 2709.8598425 47.2440945 1583.9740157 2709.8598425 263.7795276 1583.9740157 2709.8598425 47.2440945 1583.9740157 2715.7055118 263.7795276 1567.9133858 2715.7055118 47.2440945 1567.9133858 2715.7055118 263.7795276 1567.9133858 2715.7055118 47.2440945 1567.9133858 2712.0803150 47.2440945 1575.6881890 2712.0803150 263.7795276 1575.6881890 2712.0803150 263.7795276 1575.6881890 2712.0803150 47.2440945 1575.6881890 - - - - - - - - - - -0.8660291 0.0000000 -0.4999936 -0.9396908 -0.0000000 -0.3420253 -0.8660291 0.0000000 -0.4999936 -0.9396908 -0.0000000 -0.3420253 0.9396908 0.0000000 0.3420253 0.8660291 -0.0000000 0.4999936 0.9396908 0.0000000 0.3420253 0.8660291 -0.0000000 0.4999936 -0.9848099 -0.0000000 -0.1736360 -0.9848099 -0.0000000 -0.1736360 0.9848099 0.0000000 0.1736360 0.9848099 0.0000000 0.1736360 -0.7660498 -0.0000000 -0.6427813 -0.7660498 -0.0000000 -0.6427813 0.7660498 0.0000000 0.6427813 0.7660498 0.0000000 0.6427813 -1.0000000 0.0000000 -0.0000457 -1.0000000 0.0000000 -0.0000457 1.0000000 -0.0000000 0.0000457 1.0000000 -0.0000000 0.0000457 -0.6427751 -0.0000000 -0.7660549 -0.6427751 -0.0000000 -0.7660549 0.6427751 0.0000000 0.7660549 0.6427751 0.0000000 0.7660549 -0.9848101 0.0000000 0.1736347 -0.9848101 0.0000000 0.1736347 0.9848101 -0.0000000 -0.1736347 0.9848101 -0.0000000 -0.1736347 -0.5000231 0.0000000 -0.8660120 -0.5000231 0.0000000 -0.8660120 0.5000231 -0.0000000 0.8660120 0.5000231 -0.0000000 0.8660120 -0.9396756 0.0000000 0.3420669 -0.9396756 0.0000000 0.3420669 0.9396756 -0.0000000 -0.3420669 0.9396756 -0.0000000 -0.3420669 -0.3420288 0.0000000 -0.9396895 -0.3420288 0.0000000 -0.9396895 0.3420288 -0.0000000 0.9396895 0.3420288 -0.0000000 0.9396895 -0.8660357 0.0000000 0.4999822 -0.8660357 0.0000000 0.4999822 0.8660357 -0.0000000 -0.4999822 0.8660357 -0.0000000 -0.4999822 -0.1736302 0.0000000 -0.9848109 -0.1736302 0.0000000 -0.9848109 0.1736302 -0.0000000 0.9848109 0.1736302 -0.0000000 0.9848109 -0.7660582 0.0000000 0.6427712 -0.7660582 0.0000000 0.6427712 0.7660582 -0.0000000 -0.6427712 0.7660582 -0.0000000 -0.6427712 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.6427607 0.0000000 0.7660670 -0.6427607 0.0000000 0.7660670 0.6427607 -0.0000000 -0.7660670 0.6427607 -0.0000000 -0.7660670 0.1736637 0.0000000 -0.9848050 0.1736637 0.0000000 -0.9848050 -0.1736637 -0.0000000 0.9848050 -0.1736637 -0.0000000 0.9848050 -0.4999889 0.0000000 0.8660318 -0.4999889 0.0000000 0.8660318 0.4999889 -0.0000000 -0.8660318 0.4999889 -0.0000000 -0.8660318 0.3420230 0.0000000 -0.9396916 0.3420230 0.0000000 -0.9396916 -0.3420230 -0.0000000 0.9396916 -0.3420230 -0.0000000 0.9396916 -0.3420357 0.0000000 0.9396870 -0.3420357 0.0000000 0.9396870 0.3420357 -0.0000000 -0.9396870 0.3420357 -0.0000000 -0.9396870 0.4999949 0.0000000 -0.8660284 0.4999949 0.0000000 -0.8660284 -0.4999949 -0.0000000 0.8660284 -0.4999949 -0.0000000 0.8660284 -0.1736559 0.0000000 0.9848064 -0.1736559 0.0000000 0.9848064 0.1736559 -0.0000000 -0.9848064 0.1736559 -0.0000000 -0.9848064 0.6427809 0.0000000 -0.7660501 0.6427809 0.0000000 -0.7660501 -0.6427809 -0.0000000 0.7660501 -0.6427809 -0.0000000 0.7660501 0.0000020 0.0000000 1.0000000 0.0000020 0.0000000 1.0000000 -0.0000020 -0.0000000 -1.0000000 -0.0000020 -0.0000000 -1.0000000 0.7660341 -0.0000000 -0.6428000 0.7660341 -0.0000000 -0.6428000 -0.7660341 0.0000000 0.6428000 -0.7660341 0.0000000 0.6428000 0.1736637 0.0000000 0.9848050 0.1736637 0.0000000 0.9848050 -0.1736637 -0.0000000 -0.9848050 -0.1736637 -0.0000000 -0.9848050 0.8660321 0.0000000 -0.4999883 0.8660321 0.0000000 -0.4999883 -0.8660321 -0.0000000 0.4999883 -0.8660321 -0.0000000 0.4999883 0.3420230 0.0000000 0.9396916 0.3420230 0.0000000 0.9396916 -0.3420230 -0.0000000 -0.9396916 -0.3420230 -0.0000000 -0.9396916 0.9396916 0.0000000 -0.3420230 0.9396916 0.0000000 -0.3420230 -0.9396916 -0.0000000 0.3420230 -0.9396916 -0.0000000 0.3420230 0.4999949 0.0000000 0.8660284 0.4999949 0.0000000 0.8660284 -0.4999949 -0.0000000 -0.8660284 -0.4999949 -0.0000000 -0.8660284 0.9848050 0.0000000 -0.1736637 0.9848050 0.0000000 -0.1736637 -0.9848050 -0.0000000 0.1736637 -0.9848050 -0.0000000 0.1736637 0.6427933 0.0000000 0.7660397 0.6427933 0.0000000 0.7660397 -0.6427933 -0.0000000 -0.7660397 -0.6427933 -0.0000000 -0.7660397 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.7660360 0.0000000 0.6427976 0.7660360 0.0000000 0.6427976 -0.7660360 -0.0000000 -0.6427976 -0.7660360 -0.0000000 -0.6427976 0.9848050 0.0000000 0.1736637 0.9848050 0.0000000 0.1736637 -0.9848050 -0.0000000 -0.1736637 -0.9848050 -0.0000000 -0.1736637 0.8660256 0.0000000 0.4999997 0.8660256 0.0000000 0.4999997 -0.8660256 -0.0000000 -0.4999997 -0.8660256 -0.0000000 -0.4999997 0.9396916 0.0000000 0.3420230 0.9396916 0.0000000 0.3420230 -0.9396916 -0.0000000 -0.3420230 -0.9396916 -0.0000000 -0.3420230 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 8 9 8 1 3 12 0 2 0 12 13 8 16 9 16 8 17 13 20 21 20 13 12 16 24 25 24 16 17 21 28 29 28 21 20 24 32 25 32 24 33 29 36 37 36 29 28 32 40 41 40 32 33 37 44 45 44 37 36 40 48 41 48 40 49 45 52 53 52 45 44 48 56 57 56 48 49 53 60 61 60 53 52 57 64 65 64 57 56 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 85 92 93 92 85 84 89 96 97 96 89 88 100 92 101 92 100 93 97 104 105 104 97 96 108 101 109 101 108 100 105 112 113 112 105 104 116 109 117 109 116 108 113 120 121 120 113 112 124 116 117 116 124 125 121 128 129 128 121 120 132 124 133 124 132 125 129 136 137 136 129 128 140 132 133 132 140 141 136 140 137 140 136 141

-
- - -

4 5 6 7 6 5 4 6 10 11 10 6 14 15 5 7 5 15 18 10 19 11 19 10 15 14 22 23 22 14 18 19 26 27 26 19 22 23 30 31 30 23 34 26 35 27 35 26 30 31 38 39 38 31 34 35 42 43 42 35 38 39 46 47 46 39 50 42 51 43 51 42 46 47 54 55 54 47 50 51 58 59 58 51 54 55 62 63 62 55 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 70 71 78 79 78 71 74 75 82 83 82 75 78 79 86 87 86 79 82 83 90 91 90 83 86 87 94 95 94 87 90 91 98 99 98 91 95 102 94 103 94 102 98 99 106 107 106 99 102 110 103 111 103 110 106 107 114 115 114 107 110 118 111 119 111 118 114 115 122 123 122 115 126 127 118 119 118 127 122 123 130 131 130 123 126 134 127 135 127 134 130 131 138 139 138 131 142 143 134 135 134 143 142 138 143 139 143 138

-
-
-
- - - - 7014.9015748 263.7795276 4324.9409449 7008.1181102 47.2440945 4279.5275591 7014.9015748 47.2440945 4324.9409449 7008.1181102 263.7795276 4279.5275591 7008.1181102 263.7795276 4279.5275591 7014.9015748 263.7795276 4324.9409449 7008.1181102 47.2440945 4279.5275591 7014.9015748 47.2440945 4324.9409449 7027.5000000 47.2440945 4369.0984252 7027.5000000 263.7795276 4369.0984252 7027.5000000 263.7795276 4369.0984252 7027.5000000 47.2440945 4369.0984252 7007.3070866 47.2440945 4274.6968504 7007.3070866 263.7795276 4274.6968504 7007.3070866 263.7795276 4274.6968504 7007.3070866 47.2440945 4274.6968504 7045.7047244 263.7795276 4411.2559055 7045.7047244 47.2440945 4411.2559055 7045.7047244 263.7795276 4411.2559055 7045.7047244 47.2440945 4411.2559055 7005.7086614 47.2440945 4270.0708661 7005.7086614 263.7795276 4270.0708661 7005.7086614 263.7795276 4270.0708661 7005.7086614 47.2440945 4270.0708661 7047.5669291 47.2440945 4415.7874016 7047.5669291 263.7795276 4415.7874016 7047.5669291 263.7795276 4415.7874016 7047.5669291 47.2440945 4415.7874016 7003.3700787 263.7795276 4265.7716535 7003.3700787 47.2440945 4265.7716535 7003.3700787 263.7795276 4265.7716535 7003.3700787 47.2440945 4265.7716535 7048.6496063 263.7795276 4420.5629921 7048.6496063 47.2440945 4420.5629921 7048.6496063 263.7795276 4420.5629921 7048.6496063 47.2440945 4420.5629921 7000.3503937 47.2440945 4261.9173228 7000.3503937 263.7795276 4261.9173228 7000.3503937 263.7795276 4261.9173228 7000.3503937 47.2440945 4261.9173228 7048.9330709 263.7795276 4425.4488189 7048.9330709 47.2440945 4425.4488189 7048.9330709 263.7795276 4425.4488189 7048.9330709 47.2440945 4425.4488189 6996.7362205 263.7795276 4258.6141732 6996.7362205 47.2440945 4258.6141732 6996.7362205 263.7795276 4258.6141732 6996.7362205 47.2440945 4258.6141732 7048.4015748 263.7795276 4430.3188976 7048.4015748 47.2440945 4430.3188976 7048.4015748 263.7795276 4430.3188976 7048.4015748 47.2440945 4430.3188976 6992.6299213 263.7795276 4255.9527559 6992.6299213 47.2440945 4255.9527559 6992.6299213 263.7795276 4255.9527559 6992.6299213 47.2440945 4255.9527559 7047.0748031 47.2440945 4435.0314961 7047.0748031 263.7795276 4435.0314961 7047.0748031 263.7795276 4435.0314961 7047.0748031 47.2440945 4435.0314961 6988.1377953 263.7795276 4254.0078740 6988.1377953 47.2440945 4254.0078740 6988.1377953 263.7795276 4254.0078740 6988.1377953 47.2440945 4254.0078740 7044.9842520 47.2440945 4439.4606299 7044.9842520 263.7795276 4439.4606299 7044.9842520 263.7795276 4439.4606299 7044.9842520 47.2440945 4439.4606299 6983.3818898 263.7795276 4252.8346457 6983.3818898 47.2440945 4252.8346457 6983.3818898 263.7795276 4252.8346457 6983.3818898 47.2440945 4252.8346457 6945.6929134 263.7795276 4611.4370079 6945.6929134 47.2440945 4611.4370079 6945.6929134 263.7795276 4611.4370079 6945.6929134 47.2440945 4611.4370079 6978.5039370 263.7795276 4252.4606299 6978.5039370 47.2440945 4252.4606299 6978.5039370 263.7795276 4252.4606299 6978.5039370 47.2440945 4252.4606299 6942.9645669 47.2440945 4615.3858268 6942.9645669 263.7795276 4615.3858268 6942.9645669 263.7795276 4615.3858268 6942.9645669 47.2440945 4615.3858268 6800.9803150 263.7795276 4253.6023622 6800.9803150 47.2440945 4253.6023622 6800.9803150 263.7795276 4253.6023622 6800.9803150 47.2440945 4253.6023622 6939.6338583 263.7795276 4618.8385827 6939.6338583 47.2440945 4618.8385827 6939.6338583 263.7795276 4618.8385827 6939.6338583 47.2440945 4618.8385827 6796.2125984 263.7795276 4254.0196850 6796.2125984 47.2440945 4254.0196850 6796.2125984 263.7795276 4254.0196850 6796.2125984 47.2440945 4254.0196850 6935.7874016 47.2440945 4621.7047244 6935.7874016 263.7795276 4621.7047244 6935.7874016 47.2440945 4621.7047244 6935.7874016 263.7795276 4621.7047244 6791.5708661 263.7795276 4255.2047244 6791.5708661 47.2440945 4255.2047244 6791.5708661 263.7795276 4255.2047244 6791.5708661 47.2440945 4255.2047244 6931.5275591 47.2440945 4623.9094488 6931.5275591 263.7795276 4623.9094488 6931.5275591 47.2440945 4623.9094488 6931.5275591 263.7795276 4623.9094488 6787.1850394 263.7795276 4257.1220472 6787.1850394 47.2440945 4257.1220472 6787.1850394 263.7795276 4257.1220472 6787.1850394 47.2440945 4257.1220472 6926.9645669 47.2440945 4625.3976378 6926.9645669 263.7795276 4625.3976378 6926.9645669 47.2440945 4625.3976378 6926.9645669 263.7795276 4625.3976378 6783.1653543 263.7795276 4259.7244094 6783.1653543 47.2440945 4259.7244094 6783.1653543 263.7795276 4259.7244094 6783.1653543 47.2440945 4259.7244094 6922.2244094 47.2440945 4626.1259843 6922.2244094 263.7795276 4626.1259843 6922.2244094 47.2440945 4626.1259843 6922.2244094 263.7795276 4626.1259843 6779.6181102 263.7795276 4262.9448819 6779.6181102 47.2440945 4262.9448819 6779.6181102 263.7795276 4262.9448819 6779.6181102 47.2440945 4262.9448819 6917.4251969 47.2440945 4626.0787402 6917.4251969 263.7795276 4626.0787402 6917.4251969 47.2440945 4626.0787402 6917.4251969 263.7795276 4626.0787402 6776.6417323 263.7795276 4266.6929134 6776.6417323 47.2440945 4266.6929134 6776.6417323 263.7795276 4266.6929134 6776.6417323 47.2440945 4266.6929134 6912.7007874 47.2440945 4625.2559055 6912.7007874 263.7795276 4625.2559055 6912.7007874 47.2440945 4625.2559055 6912.7007874 263.7795276 4625.2559055 6774.3070866 47.2440945 4270.8740157 6774.3070866 263.7795276 4270.8740157 6774.3070866 263.7795276 4270.8740157 6774.3070866 47.2440945 4270.8740157 6908.1692913 47.2440945 4623.6771654 6908.1692913 263.7795276 4623.6771654 6908.1692913 47.2440945 4623.6771654 6908.1692913 263.7795276 4623.6771654 6772.6771654 47.2440945 4275.3779528 6772.6771654 263.7795276 4275.3779528 6772.6771654 263.7795276 4275.3779528 6772.6771654 47.2440945 4275.3779528 6903.9566929 47.2440945 4621.3818898 6903.9566929 263.7795276 4621.3818898 6903.9566929 47.2440945 4621.3818898 6903.9566929 263.7795276 4621.3818898 6771.7992126 47.2440945 4280.0826772 6771.7992126 263.7795276 4280.0826772 6771.7992126 263.7795276 4280.0826772 6771.7992126 47.2440945 4280.0826772 6900.1692913 47.2440945 4618.4409449 6900.1692913 263.7795276 4618.4409449 6900.1692913 47.2440945 4618.4409449 6900.1692913 263.7795276 4618.4409449 6771.6968504 47.2440945 4284.8700787 6771.6968504 263.7795276 4284.8700787 6771.6968504 263.7795276 4284.8700787 6771.6968504 47.2440945 4284.8700787 6896.9055118 263.7795276 4614.9212598 6896.9055118 47.2440945 4614.9212598 6896.9055118 263.7795276 4614.9212598 6896.9055118 47.2440945 4614.9212598 6783.7440945 263.7795276 4373.5905512 6783.7440945 47.2440945 4373.5905512 6783.7440945 263.7795276 4373.5905512 6783.7440945 47.2440945 4373.5905512 6847.0748031 263.7795276 4540.5354331 6847.0748031 47.2440945 4540.5354331 6847.0748031 263.7795276 4540.5354331 6847.0748031 47.2440945 4540.5354331 6809.0629921 47.2440945 4459.4685039 6809.0629921 263.7795276 4459.4685039 6809.0629921 263.7795276 4459.4685039 6809.0629921 47.2440945 4459.4685039 - - - - - - - - - - -0.9773800 -0.0000006 0.2114906 -0.9876527 -0.0000006 0.1566594 -0.9773800 -0.0000006 0.2114906 -0.9876527 -0.0000006 0.1566594 0.9876527 0.0000006 -0.1566594 0.9773800 0.0000006 -0.2114906 0.9876527 0.0000006 -0.1566594 0.9773800 0.0000006 -0.2114906 -0.9418237 0.0000000 0.3361072 -0.9418237 0.0000000 0.3361072 0.9418237 -0.0000000 -0.3361072 0.9418237 -0.0000000 -0.3361072 -0.9690327 -0.0000000 0.2469324 -0.9690327 -0.0000000 0.2469324 0.9690327 0.0000000 -0.2469324 0.9690327 0.0000000 -0.2469324 -0.9215381 0.0000000 0.3882880 -0.9215381 0.0000000 0.3882880 0.9215381 -0.0000000 -0.3882880 0.9215381 -0.0000000 -0.3882880 -0.9149388 0.0000000 0.4035925 -0.9149388 0.0000000 0.4035925 0.9149388 -0.0000000 -0.4035925 0.9149388 -0.0000000 -0.4035925 -0.9534181 -0.0000000 0.3016520 -0.9534181 -0.0000000 0.3016520 0.9534181 0.0000000 -0.3016520 0.9534181 0.0000000 -0.3016520 -0.8357055 0.0000000 0.5491779 -0.8357055 0.0000000 0.5491779 0.8357055 -0.0000000 -0.5491779 0.8357055 -0.0000000 -0.5491779 -0.9901535 -0.0000000 0.1399861 -0.9901535 -0.0000000 0.1399861 0.9901535 0.0000000 -0.1399861 0.9901535 0.0000000 -0.1399861 -0.7334246 -0.0000000 0.6797708 -0.7334246 -0.0000000 0.6797708 0.7334246 0.0000000 -0.6797708 0.7334246 0.0000000 -0.6797708 -0.9996780 0.0000000 -0.0253733 -0.9996780 0.0000000 -0.0253733 0.9996780 -0.0000000 0.0253733 0.9996780 -0.0000000 0.0253733 -0.6113478 -0.0000000 0.7913620 -0.6113478 -0.0000000 0.7913620 0.6113478 0.0000000 -0.7913620 0.6113478 0.0000000 -0.7913620 -0.9817067 0.0000000 -0.1903996 -0.9817067 0.0000000 -0.1903996 0.9817067 -0.0000000 0.1903996 0.9817067 -0.0000000 0.1903996 -0.4722344 0.0000000 0.8814730 -0.4722344 0.0000000 0.8814730 0.4722344 -0.0000000 -0.8814730 0.4722344 -0.0000000 -0.8814730 -0.9366991 -0.0000000 -0.3501354 -0.9366991 -0.0000000 -0.3501354 0.9366991 0.0000000 0.3501354 0.9366991 0.0000000 0.3501354 -0.3195210 -0.0000000 0.9475792 -0.3195210 -0.0000000 0.9475792 0.3195210 0.0000000 -0.9475792 0.3195210 0.0000000 -0.9475792 -0.8859305 -0.0000000 -0.4638179 -0.8859305 -0.0000000 -0.4638179 0.8859305 0.0000000 0.4638179 0.8859305 0.0000000 0.4638179 -0.1585209 -0.0000000 0.9873556 -0.1585209 -0.0000000 0.9873556 0.1585209 0.0000000 -0.9873556 0.1585209 0.0000000 -0.9873556 -0.8450667 -0.0000000 -0.5346609 -0.8450667 -0.0000000 -0.5346609 0.8450667 0.0000000 0.5346609 0.8450667 0.0000000 0.5346609 -0.0350395 0.0000003 0.9993859 -0.0350395 0.0000003 0.9993859 0.0350395 -0.0000003 -0.9993859 0.0350395 -0.0000003 -0.9993859 -0.7737799 -0.0000000 -0.6334545 -0.7737799 -0.0000000 -0.6334545 0.7737799 0.0000000 0.6334545 0.7737799 0.0000000 0.6334545 0.0468528 0.0000003 0.9989018 0.0468528 0.0000003 0.9989018 -0.0468528 -0.0000003 -0.9989018 -0.0468528 -0.0000003 -0.9989018 -0.6608008 -0.0000000 -0.7505613 -0.6608008 -0.0000000 -0.7505613 0.6608008 0.0000000 0.7505613 0.6608008 0.0000000 0.7505613 0.1678369 0.0000000 0.9858148 0.1678369 0.0000000 0.9858148 -0.1678369 -0.0000000 -0.9858148 -0.1678369 -0.0000000 -0.9858148 -0.5303298 -0.0000000 -0.8477914 -0.5303298 -0.0000000 -0.8477914 0.5303298 0.0000000 0.8477914 0.5303298 0.0000000 0.8477914 0.3250312 0.0000000 0.9457033 0.3250312 0.0000000 0.9457033 -0.3250312 -0.0000000 -0.9457033 -0.3250312 -0.0000000 -0.9457033 -0.3861288 -0.0000000 -0.9224449 -0.3861288 -0.0000000 -0.9224449 0.3861288 0.0000000 0.9224449 0.3861288 0.0000000 0.9224449 0.4735686 0.0000000 0.8807569 0.4735686 0.0000000 0.8807569 -0.4735686 -0.0000000 -0.8807569 -0.4735686 -0.0000000 -0.8807569 -0.2317379 0.0000000 -0.9727783 -0.2317379 0.0000000 -0.9727783 0.2317379 -0.0000000 0.9727783 0.2317379 -0.0000000 0.9727783 0.6098332 -0.0000000 0.7925298 0.6098332 -0.0000000 0.7925298 -0.6098332 0.0000000 -0.7925298 -0.6098332 0.0000000 -0.7925298 -0.0712487 0.0000000 -0.9974586 -0.0712487 0.0000000 -0.9974586 0.0712487 -0.0000000 0.9974586 0.0712487 -0.0000000 0.9974586 0.7300548 -0.0000000 0.6833886 0.7300548 -0.0000000 0.6833886 -0.7300548 0.0000000 -0.6833886 -0.7300548 0.0000000 -0.6833886 0.0910143 0.0000000 -0.9958496 0.0910143 0.0000000 -0.9958496 -0.0910143 -0.0000000 0.9958496 -0.0910143 -0.0000000 0.9958496 0.8308298 0.0000000 0.5565265 0.8308298 0.0000000 0.5565265 -0.8308298 -0.0000000 -0.5565265 -0.8308298 -0.0000000 -0.5565265 0.2511224 0.0000000 -0.9679554 0.2511224 0.0000000 -0.9679554 -0.2511224 -0.0000000 0.9679554 -0.2511224 -0.0000000 0.9679554 0.9096979 0.0000000 0.4152706 0.9096979 0.0000000 0.4152706 -0.9096979 -0.0000000 -0.4152706 -0.9096979 -0.0000000 -0.4152706 0.4050790 -0.0000000 -0.9142817 0.4050790 -0.0000000 -0.9142817 -0.4050790 0.0000000 0.9142817 -0.4050790 0.0000000 0.9142817 0.9648676 0.0000000 0.2627367 0.9648676 0.0000000 0.2627367 -0.9648676 -0.0000000 -0.2627367 -0.9648676 -0.0000000 -0.2627367 0.5476639 -0.0000000 -0.8366984 0.5476639 -0.0000000 -0.8366984 -0.5476639 0.0000000 0.8366984 -0.5476639 0.0000000 0.8366984 0.9947070 0.0000000 0.1027519 0.9947070 0.0000000 0.1027519 -0.9947070 -0.0000000 -0.1027519 -0.9947070 -0.0000000 -0.1027519 0.6755262 0.0000000 -0.7373360 0.6755262 0.0000000 -0.7373360 -0.6755262 -0.0000000 0.7373360 -0.6755262 -0.0000000 0.7373360 0.9983877 0.0000000 -0.0567620 0.9983877 0.0000000 -0.0567620 -0.9983877 -0.0000000 0.0567620 -0.9983877 -0.0000000 0.0567620 0.7844662 -0.0000007 -0.6201716 0.7844662 -0.0000007 -0.6201716 -0.7844662 0.0000007 0.6201716 -0.7844662 0.0000007 0.6201716 0.9778570 0.0000000 -0.2092740 0.9778570 0.0000000 -0.2092740 -0.9778570 -0.0000000 0.2092740 -0.9778570 -0.0000000 0.2092740 0.8706160 -0.0000007 -0.4919631 0.8706160 -0.0000007 -0.4919631 -0.8706160 0.0000007 0.4919631 -0.8706160 0.0000007 0.4919631 0.9349855 0.0000000 -0.3546860 0.9349855 0.0000000 -0.3546860 -0.9349855 -0.0000000 0.3546860 -0.9349855 -0.0000000 0.3546860 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 0 2 0 8 9 3 12 1 12 3 13 16 8 17 8 16 9 13 20 12 20 13 21 24 16 17 16 24 25 20 28 29 28 20 21 32 24 33 24 32 25 28 36 29 36 28 37 40 33 41 33 40 32 36 44 45 44 36 37 48 41 49 41 48 40 45 52 53 52 45 44 56 48 49 48 56 57 53 60 61 60 53 52 64 57 56 57 64 65 61 68 69 68 61 60 72 64 73 64 72 65 69 76 77 76 69 68 80 72 73 72 80 81 77 84 85 84 77 76 88 80 89 80 88 81 85 92 93 92 85 84 88 96 97 96 88 89 93 100 101 100 93 92 97 104 105 104 97 96 101 108 109 108 101 100 105 112 113 112 105 104 109 116 117 116 109 108 113 120 121 120 113 112 117 124 125 124 117 116 121 128 129 128 121 120 125 132 133 132 125 124 129 136 137 136 129 128 132 140 133 140 132 141 137 144 145 144 137 136 141 148 140 148 141 149 145 152 153 152 145 144 149 156 148 156 149 157 153 160 161 160 153 152 157 164 156 164 157 165 168 160 169 160 168 161 164 172 173 172 164 165 176 169 177 169 176 168 172 180 173 180 172 181 180 176 177 176 180 181

-
- - -

4 5 6 7 6 5 10 11 5 7 5 11 14 4 15 6 15 4 10 18 11 19 11 18 22 14 23 15 23 14 26 27 18 19 18 27 22 23 30 31 30 23 26 34 27 35 27 34 38 30 39 31 39 30 34 42 35 43 35 42 38 39 46 47 46 39 42 50 43 51 43 50 46 47 54 55 54 47 58 59 50 51 50 59 54 55 62 63 62 55 66 67 58 59 58 67 62 63 70 71 70 63 66 74 67 75 67 74 70 71 78 79 78 71 82 83 74 75 74 83 78 79 86 87 86 79 82 90 83 91 83 90 86 87 94 95 94 87 91 90 98 99 98 90 94 95 102 103 102 95 98 99 106 107 106 99 102 103 110 111 110 103 106 107 114 115 114 107 110 111 118 119 118 111 114 115 122 123 122 115 118 119 126 127 126 119 122 123 130 131 130 123 126 127 134 135 134 127 130 131 138 139 138 131 142 134 143 135 143 134 138 139 146 147 146 139 150 142 151 143 151 142 146 147 154 155 154 147 158 150 159 151 159 150 154 155 162 163 162 155 166 158 167 159 167 158 163 170 162 171 162 170 166 167 174 175 174 167 170 178 171 179 171 178 182 174 183 175 183 174 182 183 178 179 178 183

-
-
-
- - - - 7156.9881890 263.7795276 4483.5393701 7150.8858268 47.2440945 4492.2519685 7156.9881890 47.2440945 4483.5393701 7150.8858268 263.7795276 4492.2519685 7150.8858268 263.7795276 4492.2519685 7156.9881890 263.7795276 4483.5393701 7150.8858268 47.2440945 4492.2519685 7156.9881890 47.2440945 4483.5393701 7164.5118110 47.2440945 4476.0157480 7164.5118110 263.7795276 4476.0157480 7164.5118110 263.7795276 4476.0157480 7164.5118110 47.2440945 4476.0157480 7121.3582677 47.2440945 4543.3937008 7121.3582677 263.7795276 4543.3937008 7121.3582677 263.7795276 4543.3937008 7121.3582677 47.2440945 4543.3937008 7173.2244094 47.2440945 4469.9173228 7173.2244094 263.7795276 4469.9173228 7173.2244094 263.7795276 4469.9173228 7173.2244094 47.2440945 4469.9173228 7116.8661417 47.2440945 4553.0354331 7116.8661417 263.7795276 4553.0354331 7116.8661417 263.7795276 4553.0354331 7116.8661417 47.2440945 4553.0354331 7182.8622047 47.2440945 4465.4212598 7182.8622047 263.7795276 4465.4212598 7182.8622047 263.7795276 4465.4212598 7182.8622047 47.2440945 4465.4212598 7114.1102362 263.7795276 4563.3110236 7114.1102362 47.2440945 4563.3110236 7114.1102362 263.7795276 4563.3110236 7114.1102362 47.2440945 4563.3110236 7193.1377953 47.2440945 4462.6692913 7193.1377953 263.7795276 4462.6692913 7193.1377953 263.7795276 4462.6692913 7193.1377953 47.2440945 4462.6692913 7113.1850394 47.2440945 4573.9055118 7113.1850394 263.7795276 4573.9055118 7113.1850394 263.7795276 4573.9055118 7113.1850394 47.2440945 4573.9055118 7203.7362205 47.2440945 4461.7401575 7203.7362205 263.7795276 4461.7401575 7203.7362205 263.7795276 4461.7401575 7203.7362205 47.2440945 4461.7401575 7114.1102362 47.2440945 4584.5039370 7114.1102362 263.7795276 4584.5039370 7114.1102362 263.7795276 4584.5039370 7114.1102362 47.2440945 4584.5039370 7214.3307087 47.2440945 4462.6692913 7214.3307087 263.7795276 4462.6692913 7214.3307087 263.7795276 4462.6692913 7214.3307087 47.2440945 4462.6692913 7116.8661417 47.2440945 4594.7795276 7116.8661417 263.7795276 4594.7795276 7116.8661417 263.7795276 4594.7795276 7116.8661417 47.2440945 4594.7795276 7224.6062992 47.2440945 4465.4212598 7224.6062992 263.7795276 4465.4212598 7224.6062992 263.7795276 4465.4212598 7224.6062992 47.2440945 4465.4212598 7121.3582677 263.7795276 4604.4173228 7121.3582677 47.2440945 4604.4173228 7121.3582677 263.7795276 4604.4173228 7121.3582677 47.2440945 4604.4173228 7234.2480315 47.2440945 4469.9173228 7234.2480315 263.7795276 4469.9173228 7234.2480315 263.7795276 4469.9173228 7234.2480315 47.2440945 4469.9173228 7127.4606299 47.2440945 4613.1338583 7127.4606299 263.7795276 4613.1338583 7127.4606299 263.7795276 4613.1338583 7127.4606299 47.2440945 4613.1338583 7242.9606299 47.2440945 4476.0157480 7242.9606299 263.7795276 4476.0157480 7242.9606299 263.7795276 4476.0157480 7242.9606299 47.2440945 4476.0157480 7134.9842520 263.7795276 4620.6535433 7134.9842520 47.2440945 4620.6535433 7134.9842520 47.2440945 4620.6535433 7134.9842520 263.7795276 4620.6535433 7250.4803150 263.7795276 4483.5393701 7250.4803150 47.2440945 4483.5393701 7250.4803150 263.7795276 4483.5393701 7250.4803150 47.2440945 4483.5393701 7143.6968504 263.7795276 4626.7559055 7143.6968504 47.2440945 4626.7559055 7143.6968504 47.2440945 4626.7559055 7143.6968504 263.7795276 4626.7559055 7256.5826772 263.7795276 4492.2519685 7256.5826772 47.2440945 4492.2519685 7256.5826772 263.7795276 4492.2519685 7256.5826772 47.2440945 4492.2519685 7153.3346457 263.7795276 4631.2519685 7153.3346457 47.2440945 4631.2519685 7153.3346457 47.2440945 4631.2519685 7153.3346457 263.7795276 4631.2519685 7261.0787402 263.7795276 4501.8937008 7261.0787402 47.2440945 4501.8937008 7261.0787402 263.7795276 4501.8937008 7261.0787402 47.2440945 4501.8937008 7163.6102362 263.7795276 4634.0039370 7163.6102362 47.2440945 4634.0039370 7163.6102362 47.2440945 4634.0039370 7163.6102362 263.7795276 4634.0039370 7263.8307087 263.7795276 4512.1653543 7263.8307087 47.2440945 4512.1653543 7263.8307087 263.7795276 4512.1653543 7263.8307087 47.2440945 4512.1653543 7174.2086614 263.7795276 4634.9291339 7174.2086614 47.2440945 4634.9291339 7174.2086614 47.2440945 4634.9291339 7174.2086614 263.7795276 4634.9291339 7264.7598425 263.7795276 4522.7637795 7264.7598425 47.2440945 4522.7637795 7264.7598425 263.7795276 4522.7637795 7264.7598425 47.2440945 4522.7637795 7184.8031496 263.7795276 4634.0039370 7184.8031496 47.2440945 4634.0039370 7184.8031496 47.2440945 4634.0039370 7184.8031496 263.7795276 4634.0039370 7263.8307087 47.2440945 4533.3622047 7263.8307087 263.7795276 4533.3622047 7263.8307087 263.7795276 4533.3622047 7263.8307087 47.2440945 4533.3622047 7195.0787402 263.7795276 4631.2519685 7195.0787402 47.2440945 4631.2519685 7195.0787402 47.2440945 4631.2519685 7195.0787402 263.7795276 4631.2519685 7261.0787402 47.2440945 4543.6338583 7261.0787402 263.7795276 4543.6338583 7261.0787402 263.7795276 4543.6338583 7261.0787402 47.2440945 4543.6338583 7204.7204724 263.7795276 4626.7559055 7204.7204724 47.2440945 4626.7559055 7204.7204724 47.2440945 4626.7559055 7204.7204724 263.7795276 4626.7559055 7256.5826772 263.7795276 4553.2755906 7256.5826772 47.2440945 4553.2755906 7256.5826772 263.7795276 4553.2755906 7256.5826772 47.2440945 4553.2755906 7213.4330709 263.7795276 4620.6535433 7213.4330709 47.2440945 4620.6535433 7213.4330709 47.2440945 4620.6535433 7213.4330709 263.7795276 4620.6535433 7227.0551181 263.7795276 4604.4173228 7227.0551181 47.2440945 4604.4173228 7227.0551181 263.7795276 4604.4173228 7227.0551181 47.2440945 4604.4173228 7220.9527559 263.7795276 4613.1338583 7220.9527559 47.2440945 4613.1338583 7220.9527559 47.2440945 4613.1338583 7220.9527559 263.7795276 4613.1338583 - - - - - - - - - - 0.7660015 0.0000000 0.6428388 0.8433521 0.0000000 0.5373613 0.7660015 0.0000000 0.6428388 0.8433521 0.0000000 0.5373613 -0.8433521 -0.0000000 -0.5373613 -0.7660015 -0.0000000 -0.6428388 -0.8433521 -0.0000000 -0.5373613 -0.7660015 -0.0000000 -0.6428388 0.6427226 -0.0000000 0.7660989 0.6427226 -0.0000000 0.7660989 -0.6427226 0.0000000 -0.7660989 -0.6427226 0.0000000 -0.7660989 0.8870844 -0.0000000 0.4616073 0.8870844 -0.0000000 0.4616073 -0.8870844 0.0000000 -0.4616073 -0.8870844 0.0000000 -0.4616073 0.4999961 -0.0000000 0.8660276 0.4999961 -0.0000000 0.8660276 -0.4999961 0.0000000 -0.8660276 -0.4999961 0.0000000 -0.8660276 0.9397094 -0.0000000 0.3419741 0.9397094 -0.0000000 0.3419741 -0.9397094 0.0000000 -0.3419741 -0.9397094 0.0000000 -0.3419741 0.3420373 -0.0000000 0.9396864 0.3420373 -0.0000000 0.9396864 -0.3420373 0.0000000 -0.9396864 -0.3420373 0.0000000 -0.9396864 0.9848013 -0.0000000 0.1736846 0.9848013 -0.0000000 0.1736846 -0.9848013 0.0000000 -0.1736846 -0.9848013 0.0000000 -0.1736846 0.1736743 0.0000000 0.9848032 0.1736743 0.0000000 0.9848032 -0.1736743 -0.0000000 -0.9848032 -0.1736743 -0.0000000 -0.9848032 1.0000000 -0.0000000 0.0000161 1.0000000 -0.0000000 0.0000161 -1.0000000 0.0000000 -0.0000161 -1.0000000 0.0000000 -0.0000161 -0.0000162 -0.0000000 1.0000000 -0.0000162 -0.0000000 1.0000000 0.0000162 0.0000000 -1.0000000 0.0000162 0.0000000 -1.0000000 0.9848041 -0.0000000 -0.1736687 0.9848041 -0.0000000 -0.1736687 -0.9848041 0.0000000 0.1736687 -0.9848041 0.0000000 0.1736687 -0.1736902 -0.0000000 0.9848003 -0.1736902 -0.0000000 0.9848003 0.1736902 0.0000000 -0.9848003 0.1736902 0.0000000 -0.9848003 0.9396826 -0.0000000 -0.3420476 0.9396826 -0.0000000 -0.3420476 -0.9396826 0.0000000 0.3420476 -0.9396826 0.0000000 0.3420476 -0.3419638 -0.0000000 0.9397131 -0.3419638 -0.0000000 0.9397131 0.3419638 0.0000000 -0.9397131 0.3419638 0.0000000 -0.9397131 0.8660888 0.0000000 -0.4998902 0.8660888 0.0000000 -0.4998902 -0.8660888 -0.0000000 0.4998902 -0.8660888 -0.0000000 0.4998902 -0.4999284 -0.0000000 0.8660667 -0.4999284 -0.0000000 0.8660667 0.4999284 0.0000000 -0.8660667 0.4999284 0.0000000 -0.8660667 0.7659856 -0.0000000 -0.6428577 0.7659856 -0.0000000 -0.6428577 -0.7659856 0.0000000 0.6428577 -0.7659856 0.0000000 0.6428577 -0.6428229 -0.0000000 0.7660148 -0.6428229 -0.0000000 0.7660148 0.6428229 0.0000000 -0.7660148 0.6428229 0.0000000 -0.7660148 0.6427385 -0.0000000 -0.7660856 0.6427385 -0.0000000 -0.7660856 -0.6427385 0.0000000 0.7660856 -0.6427385 0.0000000 0.7660856 -0.7660856 -0.0000000 0.6427385 -0.7660856 -0.0000000 0.6427385 0.7660856 0.0000000 -0.6427385 0.7660856 0.0000000 -0.6427385 0.5001274 0.0000000 -0.8659518 0.5001274 0.0000000 -0.8659518 -0.5001274 -0.0000000 0.8659518 -0.5001274 -0.0000000 0.8659518 -0.8659909 -0.0000000 0.5000597 -0.8659909 -0.0000000 0.5000597 0.8659909 0.0000000 -0.5000597 0.8659909 0.0000000 -0.5000597 0.3420373 0.0000000 -0.9396864 0.3420373 0.0000000 -0.9396864 -0.3420373 -0.0000000 0.9396864 -0.3420373 -0.0000000 0.9396864 -0.9396968 -0.0000000 0.3420088 -0.9396968 -0.0000000 0.3420088 0.9396968 0.0000000 -0.3420088 0.9396968 0.0000000 -0.3420088 0.1734927 -0.0000000 -0.9848352 0.1734927 -0.0000000 -0.9848352 -0.1734927 0.0000000 0.9848352 -0.1734927 0.0000000 0.9848352 -0.9847948 0.0000000 0.1737214 -0.9847948 0.0000000 0.1737214 0.9847948 -0.0000000 -0.1737214 0.9847948 -0.0000000 -0.1737214 -0.0000161 0.0000000 -1.0000000 -0.0000161 0.0000000 -1.0000000 0.0000161 -0.0000000 1.0000000 0.0000161 -0.0000000 1.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.1735086 0.0000000 -0.9848324 -0.1735086 0.0000000 -0.9848324 0.1735086 -0.0000000 0.9848324 0.1735086 -0.0000000 0.9848324 -0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 -0.1737214 0.9847948 -0.0000000 0.1737214 0.9847948 -0.0000000 0.1737214 -0.3419638 0.0000000 -0.9397131 -0.3419638 0.0000000 -0.9397131 0.3419638 -0.0000000 0.9397131 0.3419638 -0.0000000 0.9397131 -0.9396968 0.0000000 -0.3420088 -0.9396968 0.0000000 -0.3420088 0.9396968 -0.0000000 0.3420088 0.9396968 -0.0000000 0.3420088 -0.5000597 0.0000000 -0.8659909 -0.5000597 0.0000000 -0.8659909 0.5000597 -0.0000000 0.8659909 0.5000597 -0.0000000 0.8659909 -0.8870069 0.0000000 -0.4617561 -0.8870069 0.0000000 -0.4617561 0.8870069 -0.0000000 0.4617561 0.8870069 -0.0000000 0.4617561 -0.6428388 0.0000000 -0.7660015 -0.6428388 0.0000000 -0.7660015 0.6428388 -0.0000000 0.7660015 0.6428388 -0.0000000 0.7660015 -0.8434092 0.0000000 -0.5372718 -0.8434092 0.0000000 -0.5372718 0.8434092 -0.0000000 0.5372718 0.8434092 -0.0000000 0.5372718 -0.7660697 0.0000000 -0.6427575 -0.7660697 0.0000000 -0.6427575 0.7660697 -0.0000000 0.6427575 0.7660697 -0.0000000 0.6427575 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 0 2 0 8 9 3 12 1 12 3 13 16 9 8 9 16 17 13 20 12 20 13 21 24 17 16 17 24 25 20 28 29 28 20 21 32 25 24 25 32 33 28 36 29 36 28 37 40 33 32 33 40 41 37 44 36 44 37 45 48 41 40 41 48 49 45 52 44 52 45 53 56 49 48 49 56 57 52 60 61 60 52 53 64 57 56 57 64 65 60 68 61 68 60 69 72 65 64 65 72 73 76 68 69 68 76 77 80 72 81 72 80 73 84 77 76 77 84 85 88 81 89 81 88 80 92 85 84 85 92 93 96 89 97 89 96 88 100 93 92 93 100 101 104 97 105 97 104 96 108 101 100 101 108 109 112 105 113 105 112 104 116 109 108 109 116 117 120 112 113 112 120 121 124 117 116 117 124 125 128 121 120 121 128 129 132 125 124 125 132 133 136 128 137 128 136 129 140 133 132 133 140 141 144 137 145 137 144 136 148 141 140 141 148 149 149 144 145 144 149 148

-
- - -

4 5 6 7 6 5 10 11 5 7 5 11 14 4 15 6 15 4 18 19 10 11 10 19 22 14 23 15 23 14 26 27 18 19 18 27 22 23 30 31 30 23 34 35 26 27 26 35 38 30 39 31 39 30 42 43 34 35 34 43 46 38 47 39 47 38 50 51 42 43 42 51 54 46 55 47 55 46 58 59 50 51 50 59 54 55 62 63 62 55 66 67 58 59 58 67 70 62 71 63 71 62 74 75 66 67 66 75 78 79 71 70 71 79 74 82 75 83 75 82 86 87 78 79 78 87 82 90 83 91 83 90 94 95 86 87 86 95 90 98 91 99 91 98 102 103 94 95 94 103 98 106 99 107 99 106 110 111 102 103 102 111 106 114 107 115 107 114 118 119 110 111 110 119 122 123 114 115 114 123 126 127 118 119 118 127 130 131 122 123 122 131 134 135 126 127 126 135 130 138 131 139 131 138 142 143 134 135 134 143 138 146 139 147 139 146 150 151 142 143 142 151 151 150 146 147 146 150

-
-
-
- - - - 7420.0393701 47.2440945 4598.9015748 7379.3188976 263.7795276 4603.8661417 7379.3188976 47.2440945 4603.8661417 7420.0393701 263.7795276 4598.9015748 7420.0393701 263.7795276 4598.9015748 7420.0393701 47.2440945 4598.9015748 7379.3188976 263.7795276 4603.8661417 7379.3188976 47.2440945 4603.8661417 7374.4645669 263.7795276 4604.5236220 7374.4645669 47.2440945 4604.5236220 7374.4645669 263.7795276 4604.5236220 7374.4645669 47.2440945 4604.5236220 7428.6811024 47.2440945 4597.8503937 7428.6811024 263.7795276 4597.8503937 7428.6811024 263.7795276 4597.8503937 7428.6811024 47.2440945 4597.8503937 7369.7874016 263.7795276 4605.9685039 7369.7874016 47.2440945 4605.9685039 7369.7874016 263.7795276 4605.9685039 7369.7874016 47.2440945 4605.9685039 7476.7125984 47.2440945 4584.9763780 7476.7125984 263.7795276 4584.9763780 7476.7125984 263.7795276 4584.9763780 7476.7125984 47.2440945 4584.9763780 7365.4133858 263.7795276 4608.1692913 7365.4133858 47.2440945 4608.1692913 7365.4133858 263.7795276 4608.1692913 7365.4133858 47.2440945 4608.1692913 7484.7244094 47.2440945 4581.5708661 7484.7244094 263.7795276 4581.5708661 7484.7244094 263.7795276 4581.5708661 7484.7244094 47.2440945 4581.5708661 7361.4645669 263.7795276 4611.0629921 7361.4645669 47.2440945 4611.0629921 7361.4645669 263.7795276 4611.0629921 7361.4645669 47.2440945 4611.0629921 7522.4724409 47.2440945 4565.5078740 7522.4724409 263.7795276 4565.5078740 7522.4724409 263.7795276 4565.5078740 7522.4724409 47.2440945 4565.5078740 7358.0472441 47.2440945 4614.5708661 7358.0472441 263.7795276 4614.5708661 7358.0472441 263.7795276 4614.5708661 7358.0472441 47.2440945 4614.5708661 7526.4527559 47.2440945 4563.8740157 7526.4527559 263.7795276 4563.8740157 7526.4527559 263.7795276 4563.8740157 7526.4527559 47.2440945 4563.8740157 7355.2559055 263.7795276 4618.5944882 7355.2559055 47.2440945 4618.5944882 7355.2559055 263.7795276 4618.5944882 7355.2559055 47.2440945 4618.5944882 7527.0039370 47.2440945 4563.6496063 7527.0039370 263.7795276 4563.6496063 7527.0039370 263.7795276 4563.6496063 7527.0039370 47.2440945 4563.6496063 7262.8110236 47.2440945 4778.7125984 7262.8110236 263.7795276 4778.7125984 7262.8110236 263.7795276 4778.7125984 7262.8110236 47.2440945 4778.7125984 7531.7795276 47.2440945 4562.5669291 7531.7795276 263.7795276 4562.5669291 7531.7795276 263.7795276 4562.5669291 7531.7795276 47.2440945 4562.5669291 7260.6338583 47.2440945 4783.3740157 7260.6338583 263.7795276 4783.3740157 7260.6338583 263.7795276 4783.3740157 7260.6338583 47.2440945 4783.3740157 7536.6653543 47.2440945 4562.2834646 7536.6653543 263.7795276 4562.2834646 7536.6653543 263.7795276 4562.2834646 7536.6653543 47.2440945 4562.2834646 7259.3031496 47.2440945 4788.3464567 7259.3031496 263.7795276 4788.3464567 7259.3031496 263.7795276 4788.3464567 7259.3031496 47.2440945 4788.3464567 7541.5314961 47.2440945 4562.8149606 7541.5314961 263.7795276 4562.8149606 7541.5314961 263.7795276 4562.8149606 7541.5314961 47.2440945 4562.8149606 7258.8543307 47.2440945 4793.4763780 7258.8543307 263.7795276 4793.4763780 7258.8543307 263.7795276 4793.4763780 7258.8543307 47.2440945 4793.4763780 7546.2480315 47.2440945 4564.1417323 7546.2480315 263.7795276 4564.1417323 7546.2480315 263.7795276 4564.1417323 7546.2480315 47.2440945 4564.1417323 7259.3031496 263.7795276 4798.6023622 7259.3031496 47.2440945 4798.6023622 7259.3031496 263.7795276 4798.6023622 7259.3031496 47.2440945 4798.6023622 7550.6771654 47.2440945 4566.2322835 7550.6771654 263.7795276 4566.2322835 7550.6771654 263.7795276 4566.2322835 7550.6771654 47.2440945 4566.2322835 7260.6338583 47.2440945 4803.5748031 7260.6338583 263.7795276 4803.5748031 7260.6338583 263.7795276 4803.5748031 7260.6338583 47.2440945 4803.5748031 7710.7913386 47.2440945 4658.6732283 7710.7913386 263.7795276 4658.6732283 7710.7913386 263.7795276 4658.6732283 7710.7913386 47.2440945 4658.6732283 7262.8110236 263.7795276 4808.2401575 7262.8110236 47.2440945 4808.2401575 7262.8110236 263.7795276 4808.2401575 7262.8110236 47.2440945 4808.2401575 7715.0078740 47.2440945 4661.6259843 7715.0078740 263.7795276 4661.6259843 7715.0078740 263.7795276 4661.6259843 7715.0078740 47.2440945 4661.6259843 7265.7637795 47.2440945 4812.4566929 7265.7637795 263.7795276 4812.4566929 7265.7637795 263.7795276 4812.4566929 7265.7637795 47.2440945 4812.4566929 7718.6496063 47.2440945 4665.2677165 7718.6496063 263.7795276 4665.2677165 7718.6496063 263.7795276 4665.2677165 7718.6496063 47.2440945 4665.2677165 7269.4015748 263.7795276 4816.0944882 7269.4015748 47.2440945 4816.0944882 7269.4015748 47.2440945 4816.0944882 7269.4015748 263.7795276 4816.0944882 7721.6023622 263.7795276 4669.4842520 7721.6023622 47.2440945 4669.4842520 7721.6023622 263.7795276 4669.4842520 7721.6023622 47.2440945 4669.4842520 7273.6181102 263.7795276 4819.0472441 7273.6181102 47.2440945 4819.0472441 7273.6181102 47.2440945 4819.0472441 7273.6181102 263.7795276 4819.0472441 7723.7755906 47.2440945 4674.1456693 7723.7755906 263.7795276 4674.1456693 7723.7755906 263.7795276 4674.1456693 7723.7755906 47.2440945 4674.1456693 7274.8110236 263.7795276 4819.7362205 7274.8110236 47.2440945 4819.7362205 7274.8110236 47.2440945 4819.7362205 7274.8110236 263.7795276 4819.7362205 7724.9330709 263.7795276 4678.4685039 7724.9330709 47.2440945 4678.4685039 7724.9330709 263.7795276 4678.4685039 7724.9330709 47.2440945 4678.4685039 7278.9921260 263.7795276 4821.7283465 7278.9921260 47.2440945 4821.7283465 7278.9921260 47.2440945 4821.7283465 7278.9921260 263.7795276 4821.7283465 7725.1102362 263.7795276 4679.1181102 7725.1102362 47.2440945 4679.1181102 7725.1102362 263.7795276 4679.1181102 7725.1102362 47.2440945 4679.1181102 7283.4370079 263.7795276 4823.0472441 7283.4370079 47.2440945 4823.0472441 7283.4370079 47.2440945 4823.0472441 7283.4370079 263.7795276 4823.0472441 7725.5551181 263.7795276 4684.2480315 7725.5551181 47.2440945 4684.2480315 7725.5551181 263.7795276 4684.2480315 7725.5551181 47.2440945 4684.2480315 7288.0314961 263.7795276 4823.6496063 7288.0314961 47.2440945 4823.6496063 7288.0314961 47.2440945 4823.6496063 7288.0314961 263.7795276 4823.6496063 7725.1102362 47.2440945 4689.3740157 7725.1102362 263.7795276 4689.3740157 7725.1102362 263.7795276 4689.3740157 7725.1102362 47.2440945 4689.3740157 7292.6614173 263.7795276 4823.5314961 7292.6614173 47.2440945 4823.5314961 7292.6614173 47.2440945 4823.5314961 7292.6614173 263.7795276 4823.5314961 7723.7755906 263.7795276 4694.3464567 7723.7755906 47.2440945 4694.3464567 7723.7755906 263.7795276 4694.3464567 7723.7755906 47.2440945 4694.3464567 7297.2165354 263.7795276 4822.6850394 7297.2165354 47.2440945 4822.6850394 7297.2165354 47.2440945 4822.6850394 7297.2165354 263.7795276 4822.6850394 7721.6023622 47.2440945 4699.0118110 7721.6023622 263.7795276 4699.0118110 7721.6023622 263.7795276 4699.0118110 7721.6023622 47.2440945 4699.0118110 7645.4251969 263.7795276 4729.3818898 7645.4251969 47.2440945 4729.3818898 7645.4251969 47.2440945 4729.3818898 7645.4251969 263.7795276 4729.3818898 7720.9133858 263.7795276 4700.2047244 7720.9133858 47.2440945 4700.2047244 7720.9133858 263.7795276 4700.2047244 7720.9133858 47.2440945 4700.2047244 7702.9842520 263.7795276 4713.9606299 7702.9842520 47.2440945 4713.9606299 7702.9842520 47.2440945 4713.9606299 7702.9842520 263.7795276 4713.9606299 7718.2874016 263.7795276 4704.0236220 7718.2874016 47.2440945 4704.0236220 7718.2874016 263.7795276 4704.0236220 7718.2874016 47.2440945 4704.0236220 7707.3503937 263.7795276 4712.4133858 7707.3503937 47.2440945 4712.4133858 7707.3503937 47.2440945 4712.4133858 7707.3503937 263.7795276 4712.4133858 7715.0984252 47.2440945 4707.3818898 7715.0984252 263.7795276 4707.3818898 7715.0984252 263.7795276 4707.3818898 7715.0984252 47.2440945 4707.3818898 7709.4133858 263.7795276 4711.2952756 7709.4133858 47.2440945 4711.2952756 7711.4212598 263.7795276 4710.2047244 7711.4212598 47.2440945 4710.2047244 7711.4212598 47.2440945 4710.2047244 7711.4212598 263.7795276 4710.2047244 7709.4133858 47.2440945 4711.2952756 7709.4133858 263.7795276 4711.2952756 - - - - - - - - - - 0.1208861 0.0000000 0.9926664 0.1276221 -0.0000000 0.9918229 0.1276221 -0.0000000 0.9918229 0.1208861 0.0000000 0.9926664 -0.1208861 -0.0000000 -0.9926664 -0.1208861 -0.0000000 -0.9926664 -0.1276221 0.0000000 -0.9918229 -0.1276221 0.0000000 -0.9918229 0.2154207 0.0000000 0.9765213 0.2154207 0.0000000 0.9765213 -0.2154207 -0.0000000 -0.9765213 -0.2154207 -0.0000000 -0.9765213 0.1902938 0.0000000 0.9817272 0.1902938 0.0000000 0.9817272 -0.1902938 -0.0000000 -0.9817272 -0.1902938 -0.0000000 -0.9817272 0.3736060 0.0000000 0.9275875 0.3736060 0.0000000 0.9275875 -0.3736060 -0.0000000 -0.9275875 -0.3736060 -0.0000000 -0.9275875 0.3258399 0.0000000 0.9454249 0.3258399 0.0000000 0.9454249 -0.3258399 -0.0000000 -0.9454249 -0.3258399 -0.0000000 -0.9454249 0.5220765 -0.0000000 0.8528986 0.5220765 -0.0000000 0.8528986 -0.5220765 0.0000000 -0.8528986 -0.5220765 0.0000000 -0.8528986 0.3913719 0.0000000 0.9202326 0.3913719 0.0000000 0.9202326 -0.3913719 -0.0000000 -0.9202326 -0.3913719 -0.0000000 -0.9202326 0.6559481 -0.0000000 0.7548060 0.6559481 -0.0000000 0.7548060 -0.6559481 0.0000000 -0.7548060 -0.6559481 0.0000000 -0.7548060 0.3856540 0.0000000 0.9226435 0.3856540 0.0000000 0.9226435 -0.3856540 -0.0000000 -0.9226435 -0.3856540 -0.0000000 -0.9226435 0.7716170 0.0000000 0.6360875 0.7716170 0.0000000 0.6360875 -0.7716170 -0.0000000 -0.6360875 -0.7716170 -0.0000000 -0.6360875 0.3784123 0.0000000 0.9256371 0.3784123 0.0000000 0.9256371 -0.3784123 -0.0000000 -0.9256371 -0.3784123 -0.0000000 -0.9256371 0.8445585 0.0000000 0.5354633 0.8445585 0.0000000 0.5354633 -0.8445585 -0.0000000 -0.5354633 -0.8445585 -0.0000000 -0.5354633 0.3000980 -0.0000000 0.9539084 0.3000980 -0.0000000 0.9539084 -0.3000980 0.0000000 -0.9539084 -0.3000980 0.0000000 -0.9539084 0.8868673 0.0000000 0.4620242 0.8868673 0.0000000 0.4620242 -0.8868673 -0.0000000 -0.4620242 -0.8868673 -0.0000000 -0.4620242 0.1399861 -0.0000000 0.9901535 0.1399861 -0.0000000 0.9901535 -0.1399861 0.0000000 -0.9901535 -0.1399861 0.0000000 -0.9901535 0.9396399 -0.0000000 0.3421650 0.9396399 -0.0000000 0.3421650 -0.9396399 0.0000000 -0.3421650 -0.9396399 0.0000000 -0.3421650 -0.0254169 0.0000000 0.9996769 -0.0254169 0.0000000 0.9996769 0.0254169 -0.0000000 -0.9996769 0.0254169 -0.0000000 -0.9996769 0.9848345 -0.0000000 0.1734963 0.9848345 -0.0000000 0.1734963 -0.9848345 0.0000000 -0.1734963 -0.9848345 0.0000000 -0.1734963 -0.1903355 -0.0000000 0.9817191 -0.1903355 -0.0000000 0.9817191 0.1903355 0.0000000 -0.9817191 0.1903355 0.0000000 -0.9817191 1.0000000 0.0000000 -0.0000333 1.0000000 0.0000000 -0.0000333 -1.0000000 -0.0000000 0.0000333 -1.0000000 -0.0000000 0.0000333 -0.3500334 -0.0000000 0.9367372 -0.3500334 -0.0000000 0.9367372 0.3500334 0.0000000 -0.9367372 0.3500334 0.0000000 -0.9367372 0.9848287 -0.0000000 -0.1735291 0.9848287 -0.0000000 -0.1735291 -0.9848287 0.0000000 0.1735291 -0.9848287 0.0000000 0.1735291 -0.4638146 -0.0000002 0.8859323 -0.4638146 -0.0000002 0.8859323 0.4638146 0.0000002 -0.8859323 0.4638146 0.0000002 -0.8859323 0.9396952 -0.0000000 -0.3420129 0.9396952 -0.0000000 -0.3420129 -0.9396952 0.0000000 0.3420129 -0.9396952 0.0000000 0.3420129 -0.5373183 -0.0000002 0.8433795 -0.5373183 -0.0000002 0.8433795 0.5373183 0.0000002 -0.8433795 0.5373183 0.0000002 -0.8433795 0.8659395 -0.0000000 -0.5001488 0.8659395 -0.0000000 -0.5001488 -0.8659395 0.0000000 0.5001488 -0.8659395 0.0000000 0.5001488 -0.6428063 0.0000000 0.7660288 -0.6428063 0.0000000 0.7660288 0.6428063 -0.0000000 -0.7660288 0.6428063 -0.0000000 -0.7660288 0.7660288 0.0000000 -0.6428063 0.7660288 0.0000000 -0.6428063 -0.7660288 -0.0000000 0.6428063 -0.7660288 -0.0000000 0.6428063 -0.7660288 0.0000000 0.6428063 -0.7660288 0.0000000 0.6428063 0.7660288 -0.0000000 -0.6428063 0.7660288 -0.0000000 -0.6428063 0.6428063 -0.0000000 -0.7660288 0.6428063 -0.0000000 -0.7660288 -0.6428063 0.0000000 0.7660288 -0.6428063 0.0000000 0.7660288 -0.8660320 0.0000000 0.4999886 -0.8660320 0.0000000 0.4999886 0.8660320 -0.0000000 -0.4999886 0.8660320 -0.0000000 -0.4999886 0.5373858 -0.0000000 -0.8433366 0.5373858 -0.0000000 -0.8433366 -0.5373858 0.0000000 0.8433366 -0.5373858 0.0000000 0.8433366 -0.9397357 0.0000000 0.3419017 -0.9397357 0.0000000 0.3419017 0.9397357 -0.0000000 -0.3419017 0.9397357 -0.0000000 -0.3419017 0.4654973 0.0000000 -0.8850493 0.4654973 0.0000000 -0.8850493 -0.4654973 -0.0000000 0.8850493 -0.4654973 -0.0000000 0.8850493 -0.9653703 -0.0000000 0.2608835 -0.9653703 -0.0000000 0.2608835 0.9653703 0.0000000 -0.2608835 0.9653703 0.0000000 -0.2608835 0.3583902 0.0000000 -0.9335719 0.3583902 0.0000000 -0.9335719 -0.3583902 -0.0000000 0.9335719 -0.3583902 -0.0000000 0.9335719 -0.9844855 0.0000000 0.1754662 -0.9844855 0.0000000 0.1754662 0.9844855 -0.0000000 -0.1754662 0.9844855 -0.0000000 -0.1754662 0.2078776 -0.0000000 -0.9781548 0.2078776 -0.0000000 -0.9781548 -0.2078776 0.0000000 0.9781548 -0.2078776 0.0000000 0.9781548 -1.0000000 0.0000000 -0.0000331 -1.0000000 0.0000000 -0.0000331 1.0000000 -0.0000000 0.0000331 1.0000000 -0.0000000 0.0000331 0.0524050 -0.0000006 -0.9986259 0.0524050 -0.0000006 -0.9986259 -0.0524050 0.0000006 0.9986259 -0.0524050 0.0000006 0.9986259 -0.9848308 0.0000000 -0.1735175 -0.9848308 0.0000000 -0.1735175 0.9848308 -0.0000000 0.1735175 0.9848308 -0.0000000 0.1735175 -0.1044261 -0.0000006 -0.9945327 -0.1044261 -0.0000006 -0.9945327 0.1044261 0.0000006 0.9945327 0.1044261 0.0000006 0.9945327 -0.9396875 0.0000000 -0.3420343 -0.9396875 0.0000000 -0.3420343 0.9396875 -0.0000000 0.3420343 0.9396875 -0.0000000 0.3420343 -0.2209279 0.0000000 -0.9752901 -0.2209279 0.0000000 -0.9752901 0.2209279 -0.0000000 0.9752901 0.2209279 -0.0000000 0.9752901 -0.8870669 -0.0000000 -0.4616410 -0.8870669 -0.0000000 -0.4616410 0.8870669 0.0000000 0.4616410 0.8870669 0.0000000 0.4616410 -0.2588074 0.0000000 -0.9659290 -0.2588074 0.0000000 -0.9659290 0.2588074 -0.0000000 0.9659290 0.2588074 -0.0000000 0.9659290 -0.8456233 0.0000000 -0.5337802 -0.8456233 0.0000000 -0.5337802 0.8456233 -0.0000000 0.5337802 0.8456233 -0.0000000 0.5337802 -0.2966369 0.0000000 -0.9549903 -0.2966369 0.0000000 -0.9549903 0.2966369 -0.0000000 0.9549903 0.2966369 -0.0000000 0.9549903 -0.7769681 0.0000000 -0.6295399 -0.7769681 0.0000000 -0.6295399 0.7769681 -0.0000000 0.6295399 0.7769681 -0.0000000 0.6295399 -0.4066971 0.0000000 -0.9135631 -0.4066971 0.0000000 -0.9135631 0.4066971 -0.0000000 0.9135631 0.4066971 -0.0000000 0.9135631 -0.6690877 -0.0000000 -0.7431835 -0.6690877 -0.0000000 -0.7431835 0.6690877 0.0000000 0.7431835 0.6690877 0.0000000 0.7431835 -0.4768837 0.0000000 -0.8789664 -0.4768837 0.0000000 -0.8789664 -0.5445973 -0.0000000 -0.8386977 -0.5445973 -0.0000000 -0.8386977 0.5445973 0.0000000 0.8386977 0.5445973 0.0000000 0.8386977 0.4768837 -0.0000000 0.8789664 0.4768837 -0.0000000 0.8789664 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 8 9 8 2 1 12 3 0 3 12 13 9 16 17 16 9 8 20 13 12 13 20 21 17 24 25 24 17 16 28 21 20 21 28 29 25 32 33 32 25 24 36 29 28 29 36 37 32 40 33 40 32 41 44 37 36 37 44 45 40 48 49 48 40 41 52 45 44 45 52 53 48 56 49 56 48 57 60 53 52 53 60 61 57 64 56 64 57 65 68 61 60 61 68 69 65 72 64 72 65 73 76 69 68 69 76 77 73 80 72 80 73 81 84 77 76 77 84 85 80 88 89 88 80 81 92 85 84 85 92 93 88 96 89 96 88 97 100 93 92 93 100 101 96 104 105 104 96 97 108 101 100 101 108 109 104 112 105 112 104 113 116 109 108 109 116 117 120 112 113 112 120 121 124 116 125 116 124 117 128 121 120 121 128 129 132 124 125 124 132 133 136 129 128 129 136 137 140 132 141 132 140 133 144 137 136 137 144 145 148 141 149 141 148 140 152 145 144 145 152 153 156 149 157 149 156 148 160 153 152 153 160 161 164 156 157 156 164 165 168 161 160 161 168 169 172 164 173 164 172 165 176 169 168 169 176 177 180 172 173 172 180 181 184 177 176 177 184 185 188 180 189 180 188 181 192 185 184 185 192 193 196 189 197 189 196 188 200 193 192 193 200 201 204 196 197 196 204 205 208 201 200 201 208 209 209 208 210 209 210 211 205 211 210 211 205 204

-
- - -

4 5 6 7 6 5 6 7 10 11 10 7 14 15 4 5 4 15 10 11 18 19 18 11 22 23 14 15 14 23 18 19 26 27 26 19 30 31 22 23 22 31 26 27 34 35 34 27 38 39 30 31 30 39 42 34 43 35 43 34 46 47 38 39 38 47 42 43 50 51 50 43 54 55 46 47 46 55 58 50 59 51 59 50 62 63 54 55 54 63 66 58 67 59 67 58 70 71 62 63 62 71 74 66 75 67 75 66 78 79 70 71 70 79 82 74 83 75 83 74 86 87 78 79 78 87 82 83 90 91 90 83 94 95 86 87 86 95 98 90 99 91 99 90 102 103 94 95 94 103 98 99 106 107 106 99 110 111 102 103 102 111 114 106 115 107 115 106 118 119 110 111 110 119 122 123 115 114 115 123 118 126 119 127 119 126 130 131 122 123 122 131 134 135 126 127 126 135 138 139 130 131 130 139 134 142 135 143 135 142 146 147 138 139 138 147 142 150 143 151 143 150 154 155 146 147 146 155 150 158 151 159 151 158 162 163 154 155 154 163 166 167 158 159 158 167 170 171 162 163 162 171 166 174 167 175 167 174 178 179 170 171 170 179 182 183 174 175 174 183 186 187 178 179 178 187 182 190 183 191 183 190 194 195 186 187 186 195 190 198 191 199 191 198 202 203 194 195 194 203 206 207 198 199 198 207 212 213 214 213 215 214 214 215 202 203 202 215 207 206 212 213 212 206

-
-
-
- - - - 3016.6492126 263.7795276 2196.2696850 3020.2748031 47.2440945 2188.4952756 3016.6492126 47.2440945 2196.2696850 3020.2748031 263.7795276 2188.4952756 3020.2748031 263.7795276 2188.4952756 3016.6492126 263.7795276 2196.2696850 3020.2748031 47.2440945 2188.4952756 3016.6492126 47.2440945 2196.2696850 3022.4948819 47.2440945 2180.2090551 3022.4948819 263.7795276 2180.2090551 3022.4948819 263.7795276 2180.2090551 3022.4948819 47.2440945 2180.2090551 3011.7291339 263.7795276 2203.2968504 3011.7291339 47.2440945 2203.2968504 3011.7291339 263.7795276 2203.2968504 3011.7291339 47.2440945 2203.2968504 3023.2425197 263.7795276 2171.6637795 3023.2425197 47.2440945 2171.6637795 3023.2425197 263.7795276 2171.6637795 3023.2425197 47.2440945 2171.6637795 3005.6629921 47.2440945 2209.3625984 3005.6629921 263.7795276 2209.3625984 3005.6629921 47.2440945 2209.3625984 3005.6629921 263.7795276 2209.3625984 3022.4948819 47.2440945 2163.1177165 3022.4948819 263.7795276 2163.1177165 3022.4948819 263.7795276 2163.1177165 3022.4948819 47.2440945 2163.1177165 2998.6362205 47.2440945 2214.2830709 2998.6362205 263.7795276 2214.2830709 2998.6362205 47.2440945 2214.2830709 2998.6362205 263.7795276 2214.2830709 3020.2748031 263.7795276 2154.8318898 3020.2748031 47.2440945 2154.8318898 3020.2748031 263.7795276 2154.8318898 3020.2748031 47.2440945 2154.8318898 2990.8618110 47.2440945 2217.9082677 2990.8618110 263.7795276 2217.9082677 2990.8618110 47.2440945 2217.9082677 2990.8618110 263.7795276 2217.9082677 3016.6492126 47.2440945 2147.0570866 3016.6492126 263.7795276 2147.0570866 3016.6492126 263.7795276 2147.0570866 3016.6492126 47.2440945 2147.0570866 2982.5759843 47.2440945 2220.1283465 2982.5759843 263.7795276 2220.1283465 2982.5759843 47.2440945 2220.1283465 2982.5759843 263.7795276 2220.1283465 3011.7291339 263.7795276 2140.0303150 3011.7291339 47.2440945 2140.0303150 3011.7291339 263.7795276 2140.0303150 3011.7291339 47.2440945 2140.0303150 2974.0299213 47.2440945 2220.8759843 2974.0299213 263.7795276 2220.8759843 2974.0299213 47.2440945 2220.8759843 2974.0299213 263.7795276 2220.8759843 3005.6633858 263.7795276 2133.9645669 3005.6633858 47.2440945 2133.9645669 3005.6633858 263.7795276 2133.9645669 3005.6633858 47.2440945 2133.9645669 2965.4846457 47.2440945 2220.1287402 2965.4846457 263.7795276 2220.1287402 2965.4846457 47.2440945 2220.1287402 2965.4846457 263.7795276 2220.1287402 2998.6362205 263.7795276 2129.0440945 2998.6362205 47.2440945 2129.0440945 2998.6362205 263.7795276 2129.0440945 2998.6362205 47.2440945 2129.0440945 2957.1984252 47.2440945 2217.9082677 2957.1984252 263.7795276 2217.9082677 2957.1984252 47.2440945 2217.9082677 2957.1984252 263.7795276 2217.9082677 2990.8618110 263.7795276 2125.4188976 2990.8618110 47.2440945 2125.4188976 2990.8618110 263.7795276 2125.4188976 2990.8618110 47.2440945 2125.4188976 2949.4236220 47.2440945 2214.2830709 2949.4236220 263.7795276 2214.2830709 2949.4236220 47.2440945 2214.2830709 2949.4236220 263.7795276 2214.2830709 2982.5759843 263.7795276 2123.1984252 2982.5759843 47.2440945 2123.1984252 2982.5759843 263.7795276 2123.1984252 2982.5759843 47.2440945 2123.1984252 2942.3968504 47.2440945 2209.3625984 2942.3968504 263.7795276 2209.3625984 2942.3968504 47.2440945 2209.3625984 2942.3968504 263.7795276 2209.3625984 2974.0299213 263.7795276 2122.4511811 2974.0299213 47.2440945 2122.4511811 2974.0299213 263.7795276 2122.4511811 2974.0299213 47.2440945 2122.4511811 2936.3311024 47.2440945 2203.2968504 2936.3311024 263.7795276 2203.2968504 2936.3311024 47.2440945 2203.2968504 2936.3311024 263.7795276 2203.2968504 2965.4846457 263.7795276 2123.1984252 2965.4846457 47.2440945 2123.1984252 2965.4846457 263.7795276 2123.1984252 2965.4846457 47.2440945 2123.1984252 2931.4106299 47.2440945 2196.2700787 2931.4106299 263.7795276 2196.2700787 2931.4106299 263.7795276 2196.2700787 2931.4106299 47.2440945 2196.2700787 2957.1984252 263.7795276 2125.4188976 2957.1984252 47.2440945 2125.4188976 2957.1984252 263.7795276 2125.4188976 2957.1984252 47.2440945 2125.4188976 2927.7858268 263.7795276 2188.4952756 2927.7858268 47.2440945 2188.4952756 2927.7858268 263.7795276 2188.4952756 2927.7858268 47.2440945 2188.4952756 2949.4236220 263.7795276 2129.0440945 2949.4236220 47.2440945 2129.0440945 2949.4236220 263.7795276 2129.0440945 2949.4236220 47.2440945 2129.0440945 2925.5649606 47.2440945 2180.2090551 2925.5649606 263.7795276 2180.2090551 2925.5649606 263.7795276 2180.2090551 2925.5649606 47.2440945 2180.2090551 2942.3968504 263.7795276 2133.9645669 2942.3968504 47.2440945 2133.9645669 2942.3968504 263.7795276 2133.9645669 2942.3968504 47.2440945 2133.9645669 2924.8173228 263.7795276 2171.6633858 2924.8173228 47.2440945 2171.6633858 2924.8173228 263.7795276 2171.6633858 2924.8173228 47.2440945 2171.6633858 2936.3311024 263.7795276 2140.0303150 2936.3311024 47.2440945 2140.0303150 2936.3311024 263.7795276 2140.0303150 2936.3311024 47.2440945 2140.0303150 2925.5653543 263.7795276 2163.1181102 2925.5653543 47.2440945 2163.1181102 2925.5653543 263.7795276 2163.1181102 2925.5653543 47.2440945 2163.1181102 2931.4106299 263.7795276 2147.0574803 2931.4106299 47.2440945 2147.0574803 2931.4106299 263.7795276 2147.0574803 2931.4106299 47.2440945 2147.0574803 2927.7858268 47.2440945 2154.8318898 2927.7858268 263.7795276 2154.8318898 2927.7858268 263.7795276 2154.8318898 2927.7858268 47.2440945 2154.8318898 - - - - - - - - - - -0.8660263 -0.0000000 -0.4999985 -0.9396908 -0.0000000 -0.3420253 -0.8660263 -0.0000000 -0.4999985 -0.9396908 -0.0000000 -0.3420253 0.9396908 0.0000000 0.3420253 0.8660263 0.0000000 0.4999985 0.9396908 0.0000000 0.3420253 0.8660263 0.0000000 0.4999985 -0.9848095 -0.0000000 -0.1736380 -0.9848095 -0.0000000 -0.1736380 0.9848095 0.0000000 0.1736380 0.9848095 0.0000000 0.1736380 -0.7660461 -0.0000000 -0.6427856 -0.7660461 -0.0000000 -0.6427856 0.7660461 0.0000000 0.6427856 0.7660461 0.0000000 0.6427856 -1.0000000 -0.0000000 -0.0000040 -1.0000000 -0.0000000 -0.0000040 1.0000000 0.0000000 0.0000040 1.0000000 0.0000000 0.0000040 -0.6427852 0.0000000 -0.7660465 -0.6427852 0.0000000 -0.7660465 0.6427852 -0.0000000 0.7660465 0.6427852 -0.0000000 0.7660465 -0.9848092 -0.0000000 0.1736399 -0.9848092 -0.0000000 0.1736399 0.9848092 0.0000000 -0.1736399 0.9848092 0.0000000 -0.1736399 -0.5000081 0.0000000 -0.8660207 -0.5000081 0.0000000 -0.8660207 0.5000081 -0.0000000 0.8660207 0.5000081 -0.0000000 0.8660207 -0.9396920 -0.0000000 0.3420217 -0.9396920 -0.0000000 0.3420217 0.9396920 0.0000000 -0.3420217 0.9396920 0.0000000 -0.3420217 -0.3420113 0.0000000 -0.9396958 -0.3420113 0.0000000 -0.9396958 0.3420113 -0.0000000 0.9396958 0.3420113 -0.0000000 0.9396958 -0.8660246 0.0000000 0.5000015 -0.8660246 0.0000000 0.5000015 0.8660246 -0.0000000 -0.5000015 0.8660246 -0.0000000 -0.5000015 -0.1736399 -0.0000000 -0.9848092 -0.1736399 -0.0000000 -0.9848092 0.1736399 0.0000000 0.9848092 0.1736399 0.0000000 0.9848092 -0.7660481 0.0000000 0.6427832 -0.7660481 0.0000000 0.6427832 0.7660481 -0.0000000 -0.6427832 0.7660481 -0.0000000 -0.6427832 -0.0000189 -0.0000000 -1.0000000 -0.0000189 -0.0000000 -1.0000000 0.0000189 0.0000000 1.0000000 0.0000189 0.0000000 1.0000000 -0.6427875 0.0000000 0.7660445 -0.6427875 0.0000000 0.7660445 0.6427875 -0.0000000 -0.7660445 0.6427875 -0.0000000 -0.7660445 0.1736373 0.0000000 -0.9848097 0.1736373 0.0000000 -0.9848097 -0.1736373 -0.0000000 0.9848097 -0.1736373 -0.0000000 0.9848097 -0.4999967 0.0000000 0.8660273 -0.4999967 0.0000000 0.8660273 0.4999967 -0.0000000 -0.8660273 0.4999967 -0.0000000 -0.8660273 0.3420174 0.0000000 -0.9396936 0.3420174 0.0000000 -0.9396936 -0.3420174 -0.0000000 0.9396936 -0.3420174 -0.0000000 0.9396936 -0.3420321 0.0000000 0.9396883 -0.3420321 0.0000000 0.9396883 0.3420321 -0.0000000 -0.9396883 0.3420321 -0.0000000 -0.9396883 0.4999997 0.0000000 -0.8660256 0.4999997 0.0000000 -0.8660256 -0.4999997 -0.0000000 0.8660256 -0.4999997 -0.0000000 0.8660256 -0.1736392 0.0000000 0.9848093 -0.1736392 0.0000000 0.9848093 0.1736392 -0.0000000 -0.9848093 0.1736392 -0.0000000 -0.9848093 0.6427976 0.0000000 -0.7660360 0.6427976 0.0000000 -0.7660360 -0.6427976 -0.0000000 0.7660360 -0.6427976 -0.0000000 0.7660360 0.0000040 0.0000000 1.0000000 0.0000040 0.0000000 1.0000000 -0.0000040 -0.0000000 -1.0000000 -0.0000040 -0.0000000 -1.0000000 0.7660360 0.0000000 -0.6427976 0.7660360 0.0000000 -0.6427976 -0.7660360 -0.0000000 0.6427976 -0.7660360 -0.0000000 0.6427976 0.1736373 0.0000000 0.9848097 0.1736373 0.0000000 0.9848097 -0.1736373 -0.0000000 -0.9848097 -0.1736373 -0.0000000 -0.9848097 0.8660360 0.0000000 -0.4999817 0.8660360 0.0000000 -0.4999817 -0.8660360 -0.0000000 0.4999817 -0.8660360 -0.0000000 0.4999817 0.3420174 0.0000000 0.9396936 0.3420174 0.0000000 0.9396936 -0.3420174 -0.0000000 -0.9396936 -0.3420174 -0.0000000 -0.9396936 0.9396931 0.0000000 -0.3420187 0.9396931 0.0000000 -0.3420187 -0.9396931 -0.0000000 0.3420187 -0.9396931 -0.0000000 0.3420187 0.4999997 0.0000000 0.8660256 0.4999997 0.0000000 0.8660256 -0.4999997 -0.0000000 -0.8660256 -0.4999997 -0.0000000 -0.8660256 0.9848022 -0.0000000 -0.1736797 0.9848022 -0.0000000 -0.1736797 -0.9848022 0.0000000 0.1736797 -0.9848022 0.0000000 0.1736797 0.6427976 0.0000000 0.7660360 0.6427976 0.0000000 0.7660360 -0.6427976 -0.0000000 -0.7660360 -0.6427976 -0.0000000 -0.7660360 1.0000000 0.0000000 0.0000249 1.0000000 0.0000000 0.0000249 -1.0000000 -0.0000000 -0.0000249 -1.0000000 -0.0000000 -0.0000249 0.7660445 0.0000000 0.6427875 0.7660445 0.0000000 0.6427875 -0.7660445 -0.0000000 -0.6427875 -0.7660445 -0.0000000 -0.6427875 0.9848017 0.0000000 0.1736823 0.9848017 0.0000000 0.1736823 -0.9848017 -0.0000000 -0.1736823 -0.9848017 -0.0000000 -0.1736823 0.8660377 0.0000000 0.4999787 0.8660377 0.0000000 0.4999787 -0.8660377 -0.0000000 -0.4999787 -0.8660377 -0.0000000 -0.4999787 0.9396974 0.0000000 0.3420070 0.9396974 0.0000000 0.3420070 -0.9396974 -0.0000000 -0.3420070 -0.9396974 -0.0000000 -0.3420070 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 8 16 17 16 8 9 12 20 21 20 12 13 16 24 17 24 16 25 21 28 29 28 21 20 24 32 33 32 24 25 29 36 37 36 29 28 32 40 33 40 32 41 37 44 45 44 37 36 40 48 49 48 40 41 45 52 53 52 45 44 49 56 57 56 49 48 53 60 61 60 53 52 57 64 65 64 57 56 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 85 92 93 92 85 84 89 96 97 96 89 88 100 93 92 93 100 101 97 104 105 104 97 96 108 100 109 100 108 101 105 112 113 112 105 104 116 108 109 108 116 117 113 120 121 120 113 112 124 116 125 116 124 117 121 128 129 128 121 120 132 125 133 125 132 124 129 136 137 136 129 128 140 132 133 132 140 141 136 140 137 140 136 141

-
- - -

4 5 6 7 6 5 10 4 11 6 11 4 5 14 7 15 7 14 10 11 18 19 18 11 15 14 22 23 22 14 26 18 27 19 27 18 22 23 30 31 30 23 26 27 34 35 34 27 30 31 38 39 38 31 42 34 43 35 43 34 38 39 46 47 46 39 42 43 50 51 50 43 46 47 54 55 54 47 50 51 58 59 58 51 54 55 62 63 62 55 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 70 71 78 79 78 71 74 75 82 83 82 75 78 79 86 87 86 79 82 83 90 91 90 83 86 87 94 95 94 87 90 91 98 99 98 91 102 103 95 94 95 103 98 99 106 107 106 99 102 110 103 111 103 110 106 107 114 115 114 107 118 119 110 111 110 119 114 115 122 123 122 115 118 126 119 127 119 126 122 123 130 131 130 123 126 134 127 135 127 134 130 131 138 139 138 131 142 143 134 135 134 143 142 138 143 139 143 138

-
-
-
- - - - 7343.1141732 263.7795276 3896.1318898 7297.5039370 47.2440945 3901.4444882 7297.5039370 263.7795276 3901.4444882 7343.1141732 47.2440945 3896.1318898 7343.1141732 47.2440945 3896.1318898 7343.1141732 263.7795276 3896.1318898 7297.5039370 47.2440945 3901.4444882 7297.5039370 263.7795276 3901.4444882 7252.9606299 47.2440945 3912.6118110 7252.9606299 263.7795276 3912.6118110 7252.9606299 47.2440945 3912.6118110 7252.9606299 263.7795276 3912.6118110 7347.9685039 263.7795276 3895.4771654 7347.9685039 47.2440945 3895.4771654 7347.9685039 47.2440945 3895.4771654 7347.9685039 263.7795276 3895.4771654 7210.2362205 47.2440945 3929.4448819 7210.2362205 263.7795276 3929.4448819 7210.2362205 47.2440945 3929.4448819 7210.2362205 263.7795276 3929.4448819 7352.6456693 263.7795276 3894.0303150 7352.6456693 47.2440945 3894.0303150 7352.6456693 47.2440945 3894.0303150 7352.6456693 263.7795276 3894.0303150 7205.6496063 47.2440945 3931.1562992 7205.6496063 263.7795276 3931.1562992 7205.6496063 47.2440945 3931.1562992 7205.6496063 263.7795276 3931.1562992 7357.0196850 263.7795276 3891.8295276 7357.0196850 47.2440945 3891.8295276 7357.0196850 47.2440945 3891.8295276 7357.0196850 263.7795276 3891.8295276 7200.8464567 47.2440945 3932.0866142 7200.8464567 263.7795276 3932.0866142 7200.8464567 47.2440945 3932.0866142 7200.8464567 263.7795276 3932.0866142 7360.9685039 263.7795276 3888.9358268 7360.9685039 47.2440945 3888.9358268 7360.9685039 47.2440945 3888.9358268 7360.9685039 263.7795276 3888.9358268 7195.9527559 47.2440945 3932.2106299 7195.9527559 263.7795276 3932.2106299 7195.9527559 47.2440945 3932.2106299 7195.9527559 263.7795276 3932.2106299 7364.3858268 47.2440945 3885.4295276 7364.3858268 263.7795276 3885.4295276 7364.3858268 263.7795276 3885.4295276 7364.3858268 47.2440945 3885.4295276 7191.1062992 47.2440945 3931.5232283 7191.1062992 263.7795276 3931.5232283 7191.1062992 47.2440945 3931.5232283 7191.1062992 263.7795276 3931.5232283 7367.1771654 263.7795276 3881.4066929 7367.1771654 47.2440945 3881.4066929 7367.1771654 263.7795276 3881.4066929 7367.1771654 47.2440945 3881.4066929 7186.4370079 47.2440945 3930.0452756 7186.4370079 263.7795276 3930.0452756 7186.4370079 47.2440945 3930.0452756 7186.4370079 263.7795276 3930.0452756 7425.5708661 263.7795276 3780.2681102 7425.5708661 47.2440945 3780.2681102 7425.5708661 263.7795276 3780.2681102 7425.5708661 47.2440945 3780.2681102 7182.0787402 47.2440945 3927.8165354 7182.0787402 263.7795276 3927.8165354 7182.0787402 47.2440945 3927.8165354 7182.0787402 263.7795276 3927.8165354 7466.4685039 47.2440945 3709.4275591 7466.4685039 263.7795276 3709.4275591 7466.4685039 263.7795276 3709.4275591 7466.4685039 47.2440945 3709.4275591 7178.1496063 47.2440945 3924.8984252 7178.1496063 263.7795276 3924.8984252 7178.1496063 47.2440945 3924.8984252 7178.1496063 263.7795276 3924.8984252 7468.5236220 47.2440945 3705.0917323 7468.5236220 263.7795276 3705.0917323 7468.5236220 263.7795276 3705.0917323 7468.5236220 47.2440945 3705.0917323 7174.7559055 263.7795276 3921.3708661 7174.7559055 47.2440945 3921.3708661 7174.7559055 263.7795276 3921.3708661 7174.7559055 47.2440945 3921.3708661 7469.8464567 47.2440945 3700.4807087 7469.8464567 263.7795276 3700.4807087 7469.8464567 263.7795276 3700.4807087 7469.8464567 47.2440945 3700.4807087 7171.9881890 47.2440945 3917.3314961 7171.9881890 263.7795276 3917.3314961 7171.9881890 263.7795276 3917.3314961 7171.9881890 47.2440945 3917.3314961 7470.4055118 263.7795276 3695.7157480 7470.4055118 47.2440945 3695.7157480 7470.4055118 263.7795276 3695.7157480 7470.4055118 47.2440945 3695.7157480 7084.2165354 263.7795276 3763.0220472 7084.2165354 47.2440945 3763.0220472 7084.2165354 263.7795276 3763.0220472 7084.2165354 47.2440945 3763.0220472 7470.1889764 47.2440945 3690.9232283 7470.1889764 263.7795276 3690.9232283 7470.1889764 263.7795276 3690.9232283 7470.1889764 47.2440945 3690.9232283 7082.1929134 263.7795276 3758.6818898 7082.1929134 47.2440945 3758.6818898 7082.1929134 263.7795276 3758.6818898 7082.1929134 47.2440945 3758.6818898 7469.1968504 47.2440945 3686.2299213 7469.1968504 263.7795276 3686.2299213 7469.1968504 263.7795276 3686.2299213 7469.1968504 47.2440945 3686.2299213 7080.9015748 47.2440945 3754.0716535 7080.9015748 263.7795276 3754.0716535 7080.9015748 263.7795276 3754.0716535 7080.9015748 47.2440945 3754.0716535 7467.4566929 263.7795276 3681.7578740 7467.4566929 47.2440945 3681.7578740 7467.4566929 263.7795276 3681.7578740 7467.4566929 47.2440945 3681.7578740 7080.3700787 263.7795276 3749.3129921 7080.3700787 47.2440945 3749.3129921 7080.3700787 263.7795276 3749.3129921 7080.3700787 47.2440945 3749.3129921 7465.0157480 47.2440945 3677.6279528 7465.0157480 263.7795276 3677.6279528 7465.0157480 263.7795276 3677.6279528 7465.0157480 47.2440945 3677.6279528 7080.6141732 263.7795276 3744.5307087 7080.6141732 47.2440945 3744.5307087 7080.6141732 263.7795276 3744.5307087 7080.6141732 47.2440945 3744.5307087 7461.9370079 47.2440945 3673.9472441 7461.9370079 263.7795276 3673.9472441 7461.9370079 263.7795276 3673.9472441 7461.9370079 47.2440945 3673.9472441 7081.6259843 47.2440945 3739.8511811 7081.6259843 263.7795276 3739.8511811 7081.6259843 263.7795276 3739.8511811 7081.6259843 47.2440945 3739.8511811 7458.3070866 263.7795276 3670.8137795 7458.3070866 47.2440945 3670.8137795 7458.3070866 263.7795276 3670.8137795 7458.3070866 47.2440945 3670.8137795 7083.3858268 263.7795276 3735.3964567 7083.3858268 47.2440945 3735.3964567 7083.3858268 263.7795276 3735.3964567 7083.3858268 47.2440945 3735.3964567 7454.2125984 263.7795276 3668.3090551 7454.2125984 47.2440945 3668.3090551 7454.2125984 263.7795276 3668.3090551 7454.2125984 47.2440945 3668.3090551 7085.8385827 47.2440945 3731.2854331 7085.8385827 263.7795276 3731.2854331 7085.8385827 263.7795276 3731.2854331 7085.8385827 47.2440945 3731.2854331 7449.7716535 263.7795276 3666.5003937 7449.7716535 47.2440945 3666.5003937 7449.7716535 263.7795276 3666.5003937 7449.7716535 47.2440945 3666.5003937 7088.9251969 263.7795276 3727.6236220 7088.9251969 47.2440945 3727.6236220 7088.9251969 263.7795276 3727.6236220 7088.9251969 47.2440945 3727.6236220 7445.0905512 263.7795276 3665.4362205 7445.0905512 47.2440945 3665.4362205 7445.0905512 263.7795276 3665.4362205 7445.0905512 47.2440945 3665.4362205 7092.5629921 47.2440945 3724.5098425 7092.5629921 263.7795276 3724.5098425 7092.5629921 263.7795276 3724.5098425 7092.5629921 47.2440945 3724.5098425 7355.7559055 263.7795276 3659.4740157 7355.7559055 47.2440945 3659.4740157 7355.7559055 263.7795276 3659.4740157 7355.7559055 47.2440945 3659.4740157 7096.6535433 47.2440945 3722.0244094 7096.6535433 263.7795276 3722.0244094 7096.6535433 263.7795276 3722.0244094 7096.6535433 47.2440945 3722.0244094 7266.5472441 263.7795276 3667.0862205 7266.5472441 47.2440945 3667.0862205 7266.5472441 263.7795276 3667.0862205 7266.5472441 47.2440945 3667.0862205 7179.5118110 47.2440945 3688.0976378 7179.5118110 263.7795276 3688.0976378 7179.5118110 263.7795276 3688.0976378 7179.5118110 47.2440945 3688.0976378 - - - - - - - - - - -0.1246856 -0.0000001 -0.9921963 -0.1798169 -0.0000001 -0.9837001 -0.1798169 -0.0000001 -0.9837001 -0.1246856 -0.0000001 -0.9921963 0.1246856 0.0000001 0.9921963 0.1246856 0.0000001 0.9921963 0.1798169 0.0000001 0.9837001 0.1798169 0.0000001 0.9837001 -0.3055152 0.0000005 -0.9521872 -0.3055152 0.0000005 -0.9521872 0.3055152 -0.0000005 0.9521872 0.3055152 -0.0000005 0.9521872 -0.2153360 0.0000000 -0.9765400 -0.2153360 0.0000000 -0.9765400 0.2153360 -0.0000000 0.9765400 0.2153360 -0.0000000 0.9765400 -0.3580923 0.0000005 -0.9336862 -0.3580923 0.0000005 -0.9336862 0.3580923 -0.0000005 0.9336862 0.3580923 -0.0000005 0.9336862 -0.3737842 0.0000000 -0.9275157 -0.3737842 0.0000000 -0.9275157 0.3737842 -0.0000000 0.9275157 0.3737842 -0.0000000 0.9275157 -0.2708021 -0.0000000 -0.9626350 -0.2708021 -0.0000000 -0.9626350 0.2708021 0.0000000 0.9626350 0.2708021 0.0000000 0.9626350 -0.5220765 -0.0000000 -0.8528986 -0.5220765 -0.0000000 -0.8528986 0.5220765 0.0000000 0.8528986 0.5220765 0.0000000 0.8528986 -0.1081163 -0.0000000 -0.9941383 -0.1081163 -0.0000000 -0.9941383 0.1081163 0.0000000 0.9941383 0.1081163 0.0000000 0.9941383 -0.6558634 -0.0000000 -0.7548796 -0.6558634 -0.0000000 -0.7548796 0.6558634 0.0000000 0.7548796 0.6558634 0.0000000 0.7548796 0.0577477 0.0000000 -0.9983312 0.0577477 0.0000000 -0.9983312 -0.0577477 -0.0000000 0.9983312 -0.0577477 -0.0000000 0.9983312 -0.7715164 0.0000000 -0.6362094 -0.7715164 0.0000000 -0.6362094 0.7715164 -0.0000000 0.6362094 0.7715164 -0.0000000 0.6362094 0.2218607 0.0000000 -0.9750784 0.2218607 0.0000000 -0.9750784 -0.2218607 -0.0000000 0.9750784 -0.2218607 -0.0000000 0.9750784 -0.8445321 0.0000000 -0.5355049 -0.8445321 0.0000000 -0.5355049 0.8445321 -0.0000000 0.5355049 0.8445321 -0.0000000 0.5355049 0.3798463 0.0000000 -0.9250496 0.3798463 0.0000000 -0.9250496 -0.3798463 -0.0000000 0.9250496 -0.3798463 -0.0000000 0.9250496 -0.8660289 -0.0000005 -0.4999940 -0.8660289 -0.0000005 -0.4999940 0.8660289 0.0000005 0.4999940 0.8660289 0.0000005 0.4999940 0.5275870 0.0000000 -0.8495010 0.5275870 0.0000000 -0.8495010 -0.5275870 -0.0000000 0.8495010 -0.5275870 -0.0000000 0.8495010 -0.8855602 -0.0000005 -0.4645245 -0.8855602 -0.0000005 -0.4645245 0.8855602 0.0000005 0.4645245 0.8855602 0.0000005 0.4645245 0.6607140 0.0000000 -0.7506377 0.6607140 0.0000000 -0.7506377 -0.6607140 -0.0000000 0.7506377 -0.6607140 -0.0000000 0.7506377 -0.9355437 0.0000000 -0.3532109 -0.9355437 0.0000000 -0.3532109 0.9355437 -0.0000000 0.3532109 0.9355437 -0.0000000 0.3532109 0.7754385 0.0000000 -0.6314231 0.7754385 0.0000000 -0.6314231 -0.7754385 -0.0000000 0.6314231 -0.7754385 -0.0000000 0.6314231 -0.9804448 0.0000000 -0.1967942 -0.9804448 0.0000000 -0.1967942 0.9804448 -0.0000000 0.1967942 0.9804448 -0.0000000 0.1967942 0.8478182 0.0000003 -0.5302870 0.8478182 0.0000003 -0.5302870 -0.8478182 -0.0000003 0.5302870 -0.8478182 -0.0000003 0.5302870 -0.9993585 0.0000000 -0.0358129 -0.9993585 0.0000000 -0.0358129 0.9993585 -0.0000000 0.0358129 0.9993585 -0.0000000 0.0358129 0.8885016 0.0000003 -0.4588734 0.8885016 0.0000003 -0.4588734 -0.8885016 -0.0000003 0.4588734 -0.8885016 -0.0000003 0.4588734 -0.9919795 -0.0000000 0.1263990 -0.9919795 -0.0000000 0.1263990 0.9919795 0.0000000 -0.1263990 0.9919795 0.0000000 -0.1263990 0.9377519 0.0000000 -0.3473058 0.9377519 0.0000000 -0.3473058 -0.9377519 -0.0000000 0.3473058 -0.9377519 -0.0000000 0.3473058 -0.9583274 -0.0000000 0.2856722 -0.9583274 -0.0000000 0.2856722 0.9583274 0.0000000 -0.2856722 0.9583274 0.0000000 -0.2856722 0.9815928 0.0000000 -0.1909860 0.9815928 0.0000000 -0.1909860 -0.9815928 -0.0000000 0.1909860 -0.9815928 -0.0000000 0.1909860 -0.8993797 0.0000000 0.4371683 -0.8993797 0.0000000 0.4371683 0.8993797 -0.0000000 -0.4371683 0.8993797 -0.0000000 -0.4371683 0.9995465 0.0000000 -0.0301115 0.9995465 0.0000000 -0.0301115 -0.9995465 -0.0000000 0.0301115 -0.9995465 -0.0000000 0.0301115 -0.8166635 -0.0000000 0.5771142 -0.8166635 -0.0000000 0.5771142 0.8166635 0.0000000 -0.5771142 0.8166635 0.0000000 -0.5771142 0.9913046 0.0000000 0.1315872 0.9913046 0.0000000 0.1315872 -0.9913046 -0.0000000 -0.1315872 -0.9913046 -0.0000000 -0.1315872 -0.7125829 -0.0000000 0.7015879 -0.7125829 -0.0000000 0.7015879 0.7125829 0.0000000 -0.7015879 0.7125829 0.0000000 -0.7015879 0.9569220 -0.0000000 0.2903453 0.9569220 -0.0000000 0.2903453 -0.9569220 0.0000000 -0.2903453 -0.9569220 0.0000000 -0.2903453 -0.5895998 0.0000000 0.8076956 -0.5895998 0.0000000 0.8076956 0.5895998 -0.0000000 -0.8076956 0.5895998 -0.0000000 -0.8076956 0.8973429 -0.0000000 0.4413341 0.8973429 -0.0000000 0.4413341 -0.8973429 0.0000000 -0.4413341 -0.8973429 0.0000000 -0.4413341 -0.4509942 0.0000000 0.8925269 -0.4509942 0.0000000 0.8925269 0.4509942 -0.0000000 -0.8925269 0.4509942 -0.0000000 -0.8925269 0.8143701 0.0000000 0.5803458 0.8143701 0.0000000 0.5803458 -0.8143701 -0.0000000 -0.5803458 -0.8143701 -0.0000000 -0.5803458 -0.3004325 0.0000000 0.9538031 -0.3004325 0.0000000 0.9538031 0.3004325 -0.0000000 -0.9538031 0.3004325 -0.0000000 -0.9538031 0.7097782 -0.0000000 0.7044253 0.7097782 -0.0000000 0.7044253 -0.7097782 0.0000000 -0.7044253 -0.7097782 0.0000000 -0.7044253 -0.1445783 0.0000006 0.9894934 -0.1445783 0.0000006 0.9894934 0.1445783 -0.0000006 -0.9894934 0.1445783 -0.0000006 -0.9894934 0.5866901 -0.0000000 0.8098115 0.5866901 -0.0000000 0.8098115 -0.5866901 0.0000000 -0.8098115 -0.5866901 0.0000000 -0.8098115 0.0092426 0.0000007 0.9999573 0.0092426 0.0000007 0.9999573 -0.0092426 -0.0000007 -0.9999573 -0.0092426 -0.0000007 -0.9999573 0.4504875 0.0000000 0.8927828 0.4504875 0.0000000 0.8927828 -0.4504875 -0.0000000 -0.8927828 -0.4504875 -0.0000000 -0.8927828 0.1603076 0.0000003 0.9870671 0.1603076 0.0000003 0.9870671 -0.1603076 -0.0000003 -0.9870671 -0.1603076 -0.0000003 -0.9870671 0.3076817 0.0000002 0.9514893 0.3076817 0.0000002 0.9514893 -0.3076817 -0.0000002 -0.9514893 -0.3076817 -0.0000002 -0.9514893 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 8 9 8 2 1 12 3 0 3 12 13 9 16 17 16 9 8 20 13 12 13 20 21 17 24 25 24 17 16 28 21 20 21 28 29 25 32 33 32 25 24 36 29 28 29 36 37 33 40 41 40 33 32 36 44 37 44 36 45 41 48 49 48 41 40 44 52 53 52 44 45 49 56 57 56 49 48 53 60 61 60 53 52 57 64 65 64 57 56 60 68 61 68 60 69 65 72 73 72 65 64 69 76 68 76 69 77 80 72 81 72 80 73 77 84 76 84 77 85 88 80 81 80 88 89 84 92 93 92 84 85 96 88 97 88 96 89 92 100 93 100 92 101 104 97 105 97 104 96 101 108 100 108 101 109 112 104 105 104 112 113 108 116 117 116 108 109 120 112 121 112 120 113 116 124 117 124 116 125 128 121 129 121 128 120 125 132 124 132 125 133 136 128 129 128 136 137 132 140 141 140 132 133 144 136 145 136 144 137 141 148 149 148 141 140 152 144 145 144 152 153 149 156 157 156 149 148 160 152 161 152 160 153 157 164 165 164 157 156 168 160 161 160 168 169 165 172 173 172 165 164 176 169 168 169 176 177 173 180 181 180 173 172 184 177 176 177 184 185 181 185 184 185 181 180

-
- - -

4 5 6 7 6 5 6 7 10 11 10 7 14 15 4 5 4 15 10 11 18 19 18 11 22 23 14 15 14 23 18 19 26 27 26 19 30 31 22 23 22 31 26 27 34 35 34 27 38 39 30 31 30 39 34 35 42 43 42 35 46 39 47 38 47 39 42 43 50 51 50 43 46 47 54 55 54 47 50 51 58 59 58 51 54 55 62 63 62 55 58 59 66 67 66 59 70 62 71 63 71 62 66 67 74 75 74 67 78 70 79 71 79 70 75 82 74 83 74 82 86 78 87 79 87 78 90 91 82 83 82 91 86 87 94 95 94 87 90 98 91 99 91 98 102 94 103 95 103 94 98 106 99 107 99 106 110 102 111 103 111 102 114 115 106 107 106 115 110 111 118 119 118 111 114 122 115 123 115 122 126 118 127 119 127 118 122 130 123 131 123 130 134 126 135 127 135 126 138 139 130 131 130 139 134 135 142 143 142 135 138 146 139 147 139 146 142 143 150 151 150 143 154 155 146 147 146 155 150 151 158 159 158 151 154 162 155 163 155 162 158 159 166 167 166 159 170 171 162 163 162 171 166 167 174 175 174 167 178 179 170 171 170 179 174 175 182 183 182 175 186 187 178 179 178 187 182 183 186 187 186 183

-
-
-
- - - - 7565.4409449 47.2440945 4016.4606299 7571.5433071 263.7795276 4007.7480315 7571.5433071 47.2440945 4007.7480315 7565.4409449 263.7795276 4016.4606299 7565.4409449 263.7795276 4016.4606299 7565.4409449 47.2440945 4016.4606299 7571.5433071 263.7795276 4007.7480315 7571.5433071 47.2440945 4007.7480315 7557.9212598 263.7795276 4023.9842520 7557.9212598 47.2440945 4023.9842520 7557.9212598 263.7795276 4023.9842520 7557.9212598 47.2440945 4023.9842520 7601.0708661 47.2440945 3956.6062992 7601.0708661 263.7795276 3956.6062992 7601.0708661 263.7795276 3956.6062992 7601.0708661 47.2440945 3956.6062992 7549.2086614 47.2440945 4030.0826772 7549.2086614 263.7795276 4030.0826772 7549.2086614 47.2440945 4030.0826772 7549.2086614 263.7795276 4030.0826772 7605.5669291 47.2440945 3946.9645669 7605.5669291 263.7795276 3946.9645669 7605.5669291 263.7795276 3946.9645669 7605.5669291 47.2440945 3946.9645669 7539.5669291 47.2440945 4034.5787402 7539.5669291 263.7795276 4034.5787402 7539.5669291 47.2440945 4034.5787402 7539.5669291 263.7795276 4034.5787402 7608.3188976 263.7795276 3936.6897638 7608.3188976 47.2440945 3936.6897638 7608.3188976 263.7795276 3936.6897638 7608.3188976 47.2440945 3936.6897638 7529.2913386 47.2440945 4037.3307087 7529.2913386 263.7795276 4037.3307087 7529.2913386 47.2440945 4037.3307087 7529.2913386 263.7795276 4037.3307087 7609.2480315 47.2440945 3926.0933071 7609.2480315 263.7795276 3926.0933071 7609.2480315 263.7795276 3926.0933071 7609.2480315 47.2440945 3926.0933071 7518.6968504 47.2440945 4038.2598425 7518.6968504 263.7795276 4038.2598425 7518.6968504 47.2440945 4038.2598425 7518.6968504 263.7795276 4038.2598425 7608.3188976 47.2440945 3915.4968504 7608.3188976 263.7795276 3915.4968504 7608.3188976 263.7795276 3915.4968504 7608.3188976 47.2440945 3915.4968504 7508.0984252 47.2440945 4037.3307087 7508.0984252 263.7795276 4037.3307087 7508.0984252 47.2440945 4037.3307087 7508.0984252 263.7795276 4037.3307087 7605.5669291 47.2440945 3905.2216535 7605.5669291 263.7795276 3905.2216535 7605.5669291 263.7795276 3905.2216535 7605.5669291 47.2440945 3905.2216535 7497.8228346 47.2440945 4034.5787402 7497.8228346 263.7795276 4034.5787402 7497.8228346 47.2440945 4034.5787402 7497.8228346 263.7795276 4034.5787402 7601.0708661 47.2440945 3895.5811024 7601.0708661 263.7795276 3895.5811024 7601.0708661 263.7795276 3895.5811024 7601.0708661 47.2440945 3895.5811024 7488.1850394 47.2440945 4030.0826772 7488.1850394 263.7795276 4030.0826772 7488.1850394 47.2440945 4030.0826772 7488.1850394 263.7795276 4030.0826772 7594.9685039 263.7795276 3886.8677165 7594.9685039 47.2440945 3886.8677165 7594.9685039 263.7795276 3886.8677165 7594.9685039 47.2440945 3886.8677165 7479.4724409 47.2440945 4023.9842520 7479.4724409 263.7795276 4023.9842520 7479.4724409 47.2440945 4023.9842520 7479.4724409 263.7795276 4023.9842520 7587.4488189 47.2440945 3879.3464567 7587.4488189 263.7795276 3879.3464567 7587.4488189 263.7795276 3879.3464567 7587.4488189 47.2440945 3879.3464567 7471.9488189 47.2440945 4016.4606299 7471.9488189 263.7795276 4016.4606299 7471.9488189 47.2440945 4016.4606299 7471.9488189 263.7795276 4016.4606299 7578.7362205 263.7795276 3873.2448819 7578.7362205 47.2440945 3873.2448819 7578.7362205 263.7795276 3873.2448819 7578.7362205 47.2440945 3873.2448819 7465.8464567 263.7795276 4007.7480315 7465.8464567 47.2440945 4007.7480315 7465.8464567 263.7795276 4007.7480315 7465.8464567 47.2440945 4007.7480315 7569.0944882 263.7795276 3868.7500000 7569.0944882 47.2440945 3868.7500000 7569.0944882 263.7795276 3868.7500000 7569.0944882 47.2440945 3868.7500000 7461.3543307 47.2440945 3998.1062992 7461.3543307 263.7795276 3998.1062992 7461.3543307 263.7795276 3998.1062992 7461.3543307 47.2440945 3998.1062992 7558.8188976 263.7795276 3865.9960630 7558.8188976 47.2440945 3865.9960630 7558.8188976 263.7795276 3865.9960630 7558.8188976 47.2440945 3865.9960630 7458.5984252 263.7795276 3987.8346457 7458.5984252 47.2440945 3987.8346457 7458.5984252 263.7795276 3987.8346457 7458.5984252 47.2440945 3987.8346457 7548.2244094 263.7795276 3865.0692913 7548.2244094 47.2440945 3865.0692913 7548.2244094 263.7795276 3865.0692913 7548.2244094 47.2440945 3865.0692913 7457.6732283 263.7795276 3977.2362205 7457.6732283 47.2440945 3977.2362205 7457.6732283 263.7795276 3977.2362205 7457.6732283 47.2440945 3977.2362205 7537.6259843 263.7795276 3865.9960630 7537.6259843 47.2440945 3865.9960630 7537.6259843 263.7795276 3865.9960630 7537.6259843 47.2440945 3865.9960630 7458.5984252 263.7795276 3966.6377953 7458.5984252 47.2440945 3966.6377953 7458.5984252 263.7795276 3966.6377953 7458.5984252 47.2440945 3966.6377953 7527.3503937 263.7795276 3868.7500000 7527.3503937 47.2440945 3868.7500000 7527.3503937 263.7795276 3868.7500000 7527.3503937 47.2440945 3868.7500000 7461.3543307 47.2440945 3956.3661417 7461.3543307 263.7795276 3956.3661417 7461.3543307 263.7795276 3956.3661417 7461.3543307 47.2440945 3956.3661417 7517.7125984 263.7795276 3873.2448819 7517.7125984 47.2440945 3873.2448819 7517.7125984 263.7795276 3873.2448819 7517.7125984 47.2440945 3873.2448819 7465.8464567 263.7795276 3946.7244094 7465.8464567 47.2440945 3946.7244094 7465.8464567 263.7795276 3946.7244094 7465.8464567 47.2440945 3946.7244094 7509.0000000 263.7795276 3879.3464567 7509.0000000 47.2440945 3879.3464567 7509.0000000 263.7795276 3879.3464567 7509.0000000 47.2440945 3879.3464567 7495.3740157 47.2440945 3895.5811024 7495.3740157 263.7795276 3895.5811024 7495.3740157 263.7795276 3895.5811024 7495.3740157 47.2440945 3895.5811024 7501.4763780 263.7795276 3886.8677165 7501.4763780 47.2440945 3886.8677165 7501.4763780 263.7795276 3886.8677165 7501.4763780 47.2440945 3886.8677165 - - - - - - - - - - -0.7660856 0.0000000 -0.6427385 -0.8433521 0.0000000 -0.5373613 -0.8433521 0.0000000 -0.5373613 -0.7660856 0.0000000 -0.6427385 0.7660856 -0.0000000 0.6427385 0.7660856 -0.0000000 0.6427385 0.8433521 -0.0000000 0.5373613 0.8433521 -0.0000000 0.5373613 -0.6428229 0.0000000 -0.7660148 -0.6428229 0.0000000 -0.7660148 0.6428229 -0.0000000 0.7660148 0.6428229 -0.0000000 0.7660148 -0.8870069 -0.0000000 -0.4617561 -0.8870069 -0.0000000 -0.4617561 0.8870069 0.0000000 0.4617561 0.8870069 0.0000000 0.4617561 -0.4999284 0.0000000 -0.8660667 -0.4999284 0.0000000 -0.8660667 0.4999284 -0.0000000 0.8660667 0.4999284 -0.0000000 0.8660667 -0.9397099 0.0000000 -0.3419728 -0.9397099 0.0000000 -0.3419728 0.9397099 -0.0000000 0.3419728 0.9397099 -0.0000000 0.3419728 -0.3419638 0.0000000 -0.9397131 -0.3419638 0.0000000 -0.9397131 0.3419638 -0.0000000 0.9397131 0.3419638 -0.0000000 0.9397131 -0.9848001 0.0000000 -0.1736916 -0.9848001 0.0000000 -0.1736916 0.9848001 -0.0000000 0.1736916 0.9848001 -0.0000000 0.1736916 -0.1736902 0.0000000 -0.9848003 -0.1736902 0.0000000 -0.9848003 0.1736902 -0.0000000 0.9848003 0.1736902 -0.0000000 0.9848003 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.0000162 0.0000000 -1.0000000 -0.0000162 0.0000000 -1.0000000 0.0000162 -0.0000000 1.0000000 0.0000162 -0.0000000 1.0000000 -0.9848009 0.0000000 0.1736869 -0.9848009 0.0000000 0.1736869 0.9848009 -0.0000000 -0.1736869 0.9848009 -0.0000000 -0.1736869 0.1736743 -0.0000000 -0.9848032 0.1736743 -0.0000000 -0.9848032 -0.1736743 0.0000000 0.9848032 -0.1736743 0.0000000 0.9848032 -0.9397035 0.0000000 0.3419903 -0.9397035 0.0000000 0.3419903 0.9397035 -0.0000000 -0.3419903 0.9397035 -0.0000000 -0.3419903 0.3420373 0.0000000 -0.9396864 0.3420373 0.0000000 -0.9396864 -0.3420373 -0.0000000 0.9396864 -0.3420373 -0.0000000 0.9396864 -0.8659898 0.0000000 0.5000616 -0.8659898 0.0000000 0.5000616 0.8659898 -0.0000000 -0.5000616 0.8659898 -0.0000000 -0.5000616 0.4999961 0.0000000 -0.8660276 0.4999961 0.0000000 -0.8660276 -0.4999961 -0.0000000 0.8660276 -0.4999961 -0.0000000 0.8660276 -0.7660488 0.0000000 0.6427824 -0.7660488 0.0000000 0.6427824 0.7660488 -0.0000000 -0.6427824 0.7660488 -0.0000000 -0.6427824 0.6427226 -0.0000000 -0.7660989 0.6427226 -0.0000000 -0.7660989 -0.6427226 0.0000000 0.7660989 -0.6427226 0.0000000 0.7660989 -0.6428557 0.0000000 0.7659873 -0.6428557 0.0000000 0.7659873 0.6428557 -0.0000000 -0.7659873 0.6428557 -0.0000000 -0.7659873 0.7660015 0.0000000 -0.6428388 0.7660015 0.0000000 -0.6428388 -0.7660015 -0.0000000 0.6428388 -0.7660015 -0.0000000 0.6428388 -0.4999899 0.0000000 0.8660313 -0.4999899 0.0000000 0.8660313 0.4999899 -0.0000000 -0.8660313 0.4999899 -0.0000000 -0.8660313 0.8660748 0.0000000 -0.4999144 0.8660748 0.0000000 -0.4999144 -0.8660748 -0.0000000 0.4999144 -0.8660748 -0.0000000 0.4999144 -0.3420005 -0.0000000 0.9396998 -0.3420005 -0.0000000 0.9396998 0.3420005 0.0000000 -0.9396998 0.3420005 0.0000000 -0.9396998 0.9396930 0.0000000 -0.3420192 0.9396930 0.0000000 -0.3420192 -0.9396930 -0.0000000 0.3420192 -0.9396930 -0.0000000 0.3420192 -0.1736692 -0.0000000 0.9848040 -0.1736692 -0.0000000 0.9848040 0.1736692 0.0000000 -0.9848040 0.1736692 0.0000000 -0.9848040 0.9847958 -0.0000000 -0.1737160 0.9847958 -0.0000000 -0.1737160 -0.9847958 0.0000000 0.1737160 -0.9847958 0.0000000 0.1737160 -0.0000161 -0.0000000 1.0000000 -0.0000161 -0.0000000 1.0000000 0.0000161 0.0000000 -1.0000000 0.0000161 0.0000000 -1.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 -0.0000000 0.1736534 -0.0000000 0.9848068 0.1736534 -0.0000000 0.9848068 -0.1736534 0.0000000 -0.9848068 -0.1736534 0.0000000 -0.9848068 0.9847958 0.0000000 0.1737160 0.9847958 0.0000000 0.1737160 -0.9847958 -0.0000000 -0.1737160 -0.9847958 -0.0000000 -0.1737160 0.3420740 -0.0000000 0.9396730 0.3420740 -0.0000000 0.9396730 -0.3420740 0.0000000 -0.9396730 -0.3420740 0.0000000 -0.9396730 0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 0.3420192 -0.9396930 -0.0000000 -0.3420192 -0.9396930 -0.0000000 -0.3420192 0.5000576 0.0000000 0.8659922 0.5000576 0.0000000 0.8659922 -0.5000576 -0.0000000 -0.8659922 -0.5000576 -0.0000000 -0.8659922 0.8870874 0.0000000 0.4616014 0.8870874 0.0000000 0.4616014 -0.8870874 -0.0000000 -0.4616014 -0.8870874 -0.0000000 -0.4616014 0.6427554 0.0000000 0.7660714 0.6427554 0.0000000 0.7660714 -0.6427554 -0.0000000 -0.7660714 -0.6427554 -0.0000000 -0.7660714 0.8433671 0.0000000 0.5373378 0.8433671 0.0000000 0.5373378 -0.8433671 -0.0000000 -0.5373378 -0.8433671 -0.0000000 -0.5373378 0.7659647 0.0000000 0.6428827 0.7659647 0.0000000 0.6428827 -0.7659647 -0.0000000 -0.6428827 -0.7659647 -0.0000000 -0.6428827 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 0 9 0 8 3 1 12 2 12 1 13 8 16 17 16 8 9 13 20 12 20 13 21 17 24 25 24 17 16 20 28 29 28 20 21 25 32 33 32 25 24 28 36 29 36 28 37 33 40 41 40 33 32 37 44 36 44 37 45 41 48 49 48 41 40 45 52 44 52 45 53 49 56 57 56 49 48 53 60 52 60 53 61 57 64 65 64 57 56 60 68 69 68 60 61 65 72 73 72 65 64 68 76 69 76 68 77 73 80 81 80 73 72 76 84 85 84 76 77 88 80 89 80 88 81 85 92 93 92 85 84 96 88 89 88 96 97 93 100 101 100 93 92 104 96 105 96 104 97 101 108 109 108 101 100 112 105 113 105 112 104 109 116 117 116 109 108 120 113 121 113 120 112 117 124 125 124 117 116 128 120 121 120 128 129 125 132 133 132 125 124 136 128 137 128 136 129 133 140 141 140 133 132 144 136 137 136 144 145 141 148 149 148 141 140 148 144 149 144 148 145

-
- - -

4 5 6 7 6 5 4 10 5 11 5 10 14 6 15 7 15 6 11 10 18 19 18 10 22 14 23 15 23 14 18 19 26 27 26 19 22 23 30 31 30 23 26 27 34 35 34 27 38 30 39 31 39 30 34 35 42 43 42 35 46 38 47 39 47 38 42 43 50 51 50 43 54 46 55 47 55 46 50 51 58 59 58 51 62 54 63 55 63 54 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 78 70 79 71 79 70 74 75 82 83 82 75 78 79 86 87 86 79 83 90 82 91 82 90 86 87 94 95 94 87 98 99 90 91 90 99 94 95 102 103 102 95 98 106 99 107 99 106 102 103 110 111 110 103 106 114 107 115 107 114 110 111 118 119 118 111 114 122 115 123 115 122 118 119 126 127 126 119 130 131 122 123 122 131 126 127 134 135 134 127 130 138 131 139 131 138 134 135 142 143 142 135 146 147 138 139 138 147 142 143 150 151 150 143 146 150 147 151 147 150

-
-
-
- - - - 7709.0629921 263.7795276 4182.5354331 7710.1181102 47.2440945 4191.1771654 7709.0629921 47.2440945 4182.5354331 7710.1181102 263.7795276 4191.1771654 7715.0826772 263.7795276 4231.8976378 7715.0826772 47.2440945 4231.8976378 7710.1181102 263.7795276 4191.1771654 7710.1181102 47.2440945 4191.1771654 7715.0826772 263.7795276 4231.8976378 7715.0826772 47.2440945 4231.8976378 7709.0629921 263.7795276 4182.5354331 7709.0629921 47.2440945 4182.5354331 7696.1929134 263.7795276 4134.5000000 7696.1929134 47.2440945 4134.5000000 7696.1929134 263.7795276 4134.5000000 7696.1929134 47.2440945 4134.5000000 7715.6574803 263.7795276 4236.1614173 7715.6574803 47.2440945 4236.1614173 7715.6574803 263.7795276 4236.1614173 7715.6574803 47.2440945 4236.1614173 7692.7874016 263.7795276 4126.4921260 7692.7874016 47.2440945 4126.4921260 7692.7874016 263.7795276 4126.4921260 7692.7874016 47.2440945 4126.4921260 7715.7401575 47.2440945 4236.7519685 7715.7401575 263.7795276 4236.7519685 7715.7401575 263.7795276 4236.7519685 7715.7401575 47.2440945 4236.7519685 7676.7244094 263.7795276 4088.7440945 7676.7244094 47.2440945 4088.7440945 7676.7244094 263.7795276 4088.7440945 7676.7244094 47.2440945 4088.7440945 7717.1850394 263.7795276 4241.4291339 7717.1850394 47.2440945 4241.4291339 7717.1850394 263.7795276 4241.4291339 7717.1850394 47.2440945 4241.4291339 7674.8661417 263.7795276 4084.2125984 7674.8661417 47.2440945 4084.2125984 7674.8661417 263.7795276 4084.2125984 7674.8661417 47.2440945 4084.2125984 7719.3858268 47.2440945 4245.8031496 7719.3858268 263.7795276 4245.8031496 7719.3858268 263.7795276 4245.8031496 7719.3858268 47.2440945 4245.8031496 7673.7795276 263.7795276 4079.4370079 7673.7795276 47.2440945 4079.4370079 7673.7795276 263.7795276 4079.4370079 7673.7795276 47.2440945 4079.4370079 7722.2795276 47.2440945 4249.7519685 7722.2795276 263.7795276 4249.7519685 7722.2795276 263.7795276 4249.7519685 7722.2795276 47.2440945 4249.7519685 7673.5000000 263.7795276 4074.5511811 7673.5000000 47.2440945 4074.5511811 7673.5000000 263.7795276 4074.5511811 7673.5000000 47.2440945 4074.5511811 7725.7874016 263.7795276 4253.1692913 7725.7874016 47.2440945 4253.1692913 7725.7874016 47.2440945 4253.1692913 7725.7874016 263.7795276 4253.1692913 7674.0314961 263.7795276 4069.6811024 7674.0314961 47.2440945 4069.6811024 7674.0314961 263.7795276 4069.6811024 7674.0314961 47.2440945 4069.6811024 7729.8110236 263.7795276 4255.9606299 7729.8110236 47.2440945 4255.9606299 7729.8110236 47.2440945 4255.9606299 7729.8110236 263.7795276 4255.9606299 7675.3582677 263.7795276 4064.9685039 7675.3582677 47.2440945 4064.9685039 7675.3582677 263.7795276 4064.9685039 7675.3582677 47.2440945 4064.9685039 7871.5196850 263.7795276 4337.7755906 7871.5196850 47.2440945 4337.7755906 7871.5196850 47.2440945 4337.7755906 7871.5196850 263.7795276 4337.7755906 7677.4448819 47.2440945 4060.5393701 7677.4448819 263.7795276 4060.5393701 7677.4448819 263.7795276 4060.5393701 7677.4448819 47.2440945 4060.5393701 7889.9251969 263.7795276 4348.4055118 7889.9251969 47.2440945 4348.4055118 7889.9251969 47.2440945 4348.4055118 7889.9251969 263.7795276 4348.4055118 7761.2322835 263.7795276 3915.4220472 7761.2322835 47.2440945 3915.4220472 7761.2322835 263.7795276 3915.4220472 7761.2322835 47.2440945 3915.4220472 7894.5905512 263.7795276 4350.5826772 7894.5905512 47.2440945 4350.5826772 7894.5905512 47.2440945 4350.5826772 7894.5905512 263.7795276 4350.5826772 7769.8897638 263.7795276 3900.4228346 7769.8897638 47.2440945 3900.4228346 7769.8897638 263.7795276 3900.4228346 7769.8897638 47.2440945 3900.4228346 7899.5629921 263.7795276 4351.9133858 7899.5629921 47.2440945 4351.9133858 7899.5629921 47.2440945 4351.9133858 7899.5629921 263.7795276 4351.9133858 7772.8425197 47.2440945 3896.2070866 7772.8425197 263.7795276 3896.2070866 7772.8425197 263.7795276 3896.2070866 7772.8425197 47.2440945 3896.2070866 7904.6889764 263.7795276 4352.3622047 7904.6889764 47.2440945 4352.3622047 7904.6889764 47.2440945 4352.3622047 7904.6889764 263.7795276 4352.3622047 7776.4803150 263.7795276 3892.5673228 7776.4803150 47.2440945 3892.5673228 7776.4803150 263.7795276 3892.5673228 7776.4803150 47.2440945 3892.5673228 7909.8188976 263.7795276 4351.9133858 7909.8188976 47.2440945 4351.9133858 7909.8188976 47.2440945 4351.9133858 7909.8188976 263.7795276 4351.9133858 7780.6968504 47.2440945 3889.6149606 7780.6968504 263.7795276 3889.6149606 7780.6968504 263.7795276 3889.6149606 7780.6968504 47.2440945 3889.6149606 7914.7913386 263.7795276 4350.5826772 7914.7913386 47.2440945 4350.5826772 7914.7913386 47.2440945 4350.5826772 7914.7913386 263.7795276 4350.5826772 7785.3622047 47.2440945 3887.4397638 7785.3622047 263.7795276 3887.4397638 7785.3622047 263.7795276 3887.4397638 7785.3622047 47.2440945 3887.4397638 7919.4527559 263.7795276 4348.4055118 7919.4527559 47.2440945 4348.4055118 7919.4527559 47.2440945 4348.4055118 7919.4527559 263.7795276 4348.4055118 7790.3346457 47.2440945 3886.1074803 7790.3346457 263.7795276 3886.1074803 7790.3346457 263.7795276 3886.1074803 7790.3346457 47.2440945 3886.1074803 7923.6692913 263.7795276 4345.4527559 7923.6692913 47.2440945 4345.4527559 7923.6692913 47.2440945 4345.4527559 7923.6692913 263.7795276 4345.4527559 7795.4606299 47.2440945 3885.6590551 7795.4606299 263.7795276 3885.6590551 7795.4606299 263.7795276 3885.6590551 7795.4606299 47.2440945 3885.6590551 7927.3110236 263.7795276 4341.8149606 7927.3110236 47.2440945 4341.8149606 7927.3110236 47.2440945 4341.8149606 7927.3110236 263.7795276 4341.8149606 7800.5905512 47.2440945 3886.1074803 7800.5905512 263.7795276 3886.1074803 7800.5905512 263.7795276 3886.1074803 7800.5905512 47.2440945 3886.1074803 7930.2637795 263.7795276 4337.5984252 7930.2637795 47.2440945 4337.5984252 7930.2637795 263.7795276 4337.5984252 7930.2637795 47.2440945 4337.5984252 7805.5590551 47.2440945 3887.4397638 7805.5590551 263.7795276 3887.4397638 7805.5590551 263.7795276 3887.4397638 7805.5590551 47.2440945 3887.4397638 7930.9527559 47.2440945 4336.4055118 7930.9527559 263.7795276 4336.4055118 7930.9527559 263.7795276 4336.4055118 7930.9527559 47.2440945 4336.4055118 7810.2244094 47.2440945 3889.6149606 7810.2244094 263.7795276 3889.6149606 7810.2244094 263.7795276 3889.6149606 7810.2244094 47.2440945 3889.6149606 7932.9448819 47.2440945 4332.2204724 7932.9448819 263.7795276 4332.2204724 7932.9448819 263.7795276 4332.2204724 7932.9448819 47.2440945 4332.2204724 7811.4173228 47.2440945 3890.3039370 7811.4173228 263.7795276 3890.3039370 7811.4173228 263.7795276 3890.3039370 7811.4173228 47.2440945 3890.3039370 7934.2637795 263.7795276 4327.7795276 7934.2637795 47.2440945 4327.7795276 7934.2637795 263.7795276 4327.7795276 7934.2637795 47.2440945 4327.7795276 7815.2362205 47.2440945 3892.9283465 7815.2362205 263.7795276 3892.9283465 7815.2362205 263.7795276 3892.9283465 7815.2362205 47.2440945 3892.9283465 7934.8661417 47.2440945 4323.1850394 7934.8661417 263.7795276 4323.1850394 7934.8661417 263.7795276 4323.1850394 7934.8661417 47.2440945 4323.1850394 7818.5984252 47.2440945 3896.1177165 7818.5984252 263.7795276 3896.1177165 7818.5984252 263.7795276 3896.1177165 7818.5984252 47.2440945 3896.1177165 7934.8070866 47.2440945 4320.9015748 7934.7440945 47.2440945 4318.5551181 7934.8070866 263.7795276 4320.9015748 7934.7440945 263.7795276 4318.5551181 7934.7440945 263.7795276 4318.5551181 7934.8070866 263.7795276 4320.9015748 7934.7440945 47.2440945 4318.5551181 7934.8070866 47.2440945 4320.9015748 7821.4173228 263.7795276 3899.7940945 7821.4173228 47.2440945 3899.7940945 7821.4173228 263.7795276 3899.7940945 7821.4173228 47.2440945 3899.7940945 7933.9015748 263.7795276 4314.0000000 7933.9015748 47.2440945 4314.0000000 7933.9015748 263.7795276 4314.0000000 7933.9015748 47.2440945 4314.0000000 7822.5118110 263.7795276 3901.8027559 7822.5118110 47.2440945 3901.8027559 7822.5118110 263.7795276 3901.8027559 7822.5118110 47.2440945 3901.8027559 7918.4763780 47.2440945 4256.4409449 7918.4763780 263.7795276 4256.4409449 7918.4763780 263.7795276 4256.4409449 7918.4763780 47.2440945 4256.4409449 7823.6299213 263.7795276 3903.8657480 7823.6299213 47.2440945 3903.8657480 7823.6299213 263.7795276 3903.8657480 7823.6299213 47.2440945 3903.8657480 7857.7480315 47.2440945 4029.7874016 7857.7480315 263.7795276 4029.7874016 7857.7480315 263.7795276 4029.7874016 7857.7480315 47.2440945 4029.7874016 7825.1771654 47.2440945 3908.2334646 7825.1771654 263.7795276 3908.2334646 7825.1771654 263.7795276 3908.2334646 7825.1771654 47.2440945 3908.2334646 7839.1574803 47.2440945 3960.4133858 7839.1574803 263.7795276 3960.4133858 7839.1574803 263.7795276 3960.4133858 7839.1574803 47.2440945 3960.4133858 - - - - - - - - - - 0.9817083 0.0000000 -0.1903910 0.9926473 0.0000000 -0.1210430 0.9817083 0.0000000 -0.1903910 0.9926473 0.0000000 -0.1210430 0.9918610 0.0000000 -0.1273251 0.9918610 0.0000000 -0.1273251 -0.9926473 -0.0000000 0.1210430 -0.9926473 -0.0000000 0.1210430 -0.9918610 -0.0000000 0.1273251 -0.9918610 -0.0000000 0.1273251 -0.9817083 -0.0000000 0.1903910 -0.9817083 -0.0000000 0.1903910 0.9454119 0.0000000 -0.3258778 0.9454119 0.0000000 -0.3258778 -0.9454119 -0.0000000 0.3258778 -0.9454119 -0.0000000 0.3258778 0.9906916 -0.0000000 -0.1361254 0.9906916 -0.0000000 -0.1361254 -0.9906916 0.0000000 0.1361254 -0.9906916 0.0000000 0.1361254 0.9201980 -0.0000000 -0.3914533 0.9201980 -0.0000000 -0.3914533 -0.9201980 0.0000000 0.3914533 -0.9201980 0.0000000 0.3914533 0.9760371 0.0000000 -0.2176042 0.9760371 0.0000000 -0.2176042 -0.9760371 -0.0000000 0.2176042 -0.9760371 -0.0000000 0.2176042 0.9227105 -0.0000000 -0.3854935 0.9227105 -0.0000000 -0.3854935 -0.9227105 0.0000000 0.3854935 -0.9227105 0.0000000 0.3854935 0.9275875 0.0000000 -0.3736060 0.9275875 0.0000000 -0.3736060 -0.9275875 -0.0000000 0.3736060 -0.9275875 -0.0000000 0.3736060 0.9534120 0.0000000 -0.3016713 0.9534120 0.0000000 -0.3016713 -0.9534120 -0.0000000 0.3016713 -0.9534120 -0.0000000 0.3016713 0.8528986 0.0000000 -0.5220765 0.8528986 0.0000000 -0.5220765 -0.8528986 -0.0000000 0.5220765 -0.8528986 -0.0000000 0.5220765 0.9901548 0.0000000 -0.1399766 0.9901548 0.0000000 -0.1399766 -0.9901548 -0.0000000 0.1399766 -0.9901548 -0.0000000 0.1399766 0.7548060 0.0000000 -0.6559481 0.7548060 0.0000000 -0.6559481 -0.7548060 -0.0000000 0.6559481 -0.7548060 -0.0000000 0.6559481 0.9996678 0.0000000 0.0257747 0.9996678 0.0000000 0.0257747 -0.9996678 -0.0000000 -0.0257747 -0.9996678 -0.0000000 -0.0257747 0.6360875 -0.0000000 -0.7716170 0.6360875 -0.0000000 -0.7716170 -0.6360875 0.0000000 0.7716170 -0.6360875 0.0000000 0.7716170 0.9817067 -0.0000000 0.1903996 0.9817067 -0.0000000 0.1903996 -0.9817067 0.0000000 -0.1903996 -0.9817067 0.0000000 -0.1903996 0.5354608 -0.0000000 -0.8445601 0.5354608 -0.0000000 -0.8445601 -0.5354608 0.0000000 0.8445601 -0.5354608 0.0000000 0.8445601 0.9368263 -0.0000000 0.3497948 0.9368263 -0.0000000 0.3497948 -0.9368263 0.0000000 -0.3497948 -0.9368263 0.0000000 -0.3497948 0.5000603 0.0000000 -0.8659906 0.5000603 0.0000000 -0.8659906 -0.5000603 -0.0000000 0.8659906 -0.5000603 -0.0000000 0.8659906 0.8860954 -0.0000006 0.4635030 0.8860954 -0.0000006 0.4635030 -0.8860954 0.0000006 -0.4635030 -0.8860954 0.0000006 -0.4635030 0.4619425 -0.0000000 -0.8869099 0.4619425 -0.0000000 -0.8869099 -0.4619425 0.0000000 0.8869099 -0.4619425 0.0000000 0.8869099 0.8660495 -0.0000006 0.4999582 0.8660495 -0.0000006 0.4999582 -0.8660495 0.0000006 -0.4999582 -0.8660495 0.0000006 -0.4999582 0.3420129 0.0000000 -0.9396952 0.3420129 0.0000000 -0.9396952 -0.3420129 -0.0000000 0.9396952 -0.3420129 -0.0000000 0.9396952 0.8433859 -0.0000000 0.5373082 0.8433859 -0.0000000 0.5373082 -0.8433859 0.0000000 -0.5373082 -0.8433859 0.0000000 -0.5373082 0.1735291 0.0000000 -0.9848287 0.1735291 0.0000000 -0.9848287 -0.1735291 -0.0000000 0.9848287 -0.1735291 -0.0000000 0.9848287 0.7660875 -0.0000000 0.6427363 0.7660875 -0.0000000 0.6427363 -0.7660875 0.0000000 -0.6427363 -0.7660875 0.0000000 -0.6427363 0.0000333 0.0000000 -1.0000000 0.0000333 0.0000000 -1.0000000 -0.0000333 -0.0000000 1.0000000 -0.0000333 -0.0000000 1.0000000 0.6428859 -0.0000000 0.7659620 0.6428859 -0.0000000 0.7659620 -0.6428859 0.0000000 -0.7659620 -0.6428859 0.0000000 -0.7659620 -0.1735092 -0.0000004 -0.9848323 -0.1735092 -0.0000004 -0.9848323 0.1735092 0.0000004 0.9848323 0.1735092 0.0000004 0.9848323 0.4999716 0.0000000 0.8660418 0.4999716 0.0000000 0.8660418 -0.4999716 -0.0000000 -0.8660418 -0.4999716 -0.0000000 -0.8660418 -0.3421773 -0.0000004 -0.9396354 -0.3421773 -0.0000004 -0.9396354 0.3421773 0.0000004 0.9396354 0.3421773 0.0000004 0.9396354 0.3419890 0.0000000 0.9397040 0.3419890 0.0000000 0.9397040 -0.3419890 -0.0000000 -0.9397040 -0.3419890 -0.0000000 -0.9397040 -0.5002889 0.0000000 -0.8658586 -0.5002889 0.0000000 -0.8658586 0.5002889 -0.0000000 0.8658586 0.5002889 -0.0000000 0.8658586 0.1736371 0.0000000 0.9848097 0.1736371 0.0000000 0.9848097 -0.1736371 -0.0000000 -0.9848097 -0.1736371 -0.0000000 -0.9848097 -0.6425991 0.0000000 -0.7662026 -0.6425991 0.0000000 -0.7662026 0.6425991 -0.0000000 0.7662026 0.6425991 -0.0000000 0.7662026 0.0000333 0.0000000 1.0000000 0.0000333 0.0000000 1.0000000 -0.0000333 -0.0000000 -1.0000000 -0.0000333 -0.0000000 -1.0000000 -0.7658549 -0.0000000 -0.6430134 -0.7658549 -0.0000000 -0.6430134 0.7658549 0.0000000 0.6430134 0.7658549 0.0000000 0.6430134 -0.1737018 0.0000000 0.9847983 -0.1737018 0.0000000 0.9847983 0.1737018 -0.0000000 -0.9847983 0.1737018 -0.0000000 -0.9847983 -0.8433366 0.0000000 -0.5373858 -0.8433366 0.0000000 -0.5373858 0.8433366 -0.0000000 0.5373858 0.8433366 -0.0000000 0.5373858 -0.3420820 0.0000000 0.9396701 -0.3420820 0.0000000 0.9396701 0.3420820 -0.0000000 -0.9396701 0.3420820 -0.0000000 -0.9396701 -0.8851343 0.0000000 -0.4653356 -0.8851343 0.0000000 -0.4653356 0.8851343 -0.0000000 0.4653356 0.8851343 -0.0000000 0.4653356 -0.4617947 0.0000000 0.8869868 -0.4617947 0.0000000 0.8869868 0.4617947 -0.0000000 -0.8869868 0.4617947 -0.0000000 -0.8869868 -0.9335940 0.0000000 -0.3583325 -0.9335940 0.0000000 -0.3583325 0.9335940 -0.0000000 0.3583325 0.9335940 -0.0000000 0.3583325 -0.5336618 -0.0000000 0.8456980 -0.5336618 -0.0000000 0.8456980 0.5336618 0.0000000 -0.8456980 0.5336618 0.0000000 -0.8456980 -0.9781297 0.0000000 -0.2079958 -0.9781297 0.0000000 -0.2079958 0.9781297 -0.0000000 0.2079958 0.9781297 -0.0000000 0.2079958 -0.6292278 0.0000000 0.7772210 -0.6292278 0.0000000 0.7772210 0.6292278 -0.0000000 -0.7772210 0.6292278 -0.0000000 -0.7772210 -0.9986482 0.0000000 -0.0519792 -0.9986482 0.0000000 -0.0519792 0.9986482 -0.0000000 0.0519792 0.9986482 -0.0000000 0.0519792 -0.7431993 0.0000000 0.6690701 -0.7431993 0.0000000 0.6690701 0.7431993 -0.0000000 -0.6690701 0.7431993 -0.0000000 -0.6690701 -0.9996527 0.0000000 0.0263536 -0.9945318 0.0000000 0.1044346 -0.9996527 0.0000000 0.0263536 -0.9945318 0.0000000 0.1044346 0.9945318 -0.0000000 -0.1044346 0.9996527 -0.0000000 -0.0263536 0.9945318 -0.0000000 -0.1044346 0.9996527 -0.0000000 -0.0263536 -0.8383624 0.0000000 0.5451132 -0.8383624 0.0000000 0.5451132 0.8383624 -0.0000000 -0.5451132 0.8383624 -0.0000000 -0.5451132 -0.9753785 0.0000000 0.2205374 -0.9753785 0.0000000 0.2205374 0.9753785 -0.0000000 -0.2205374 0.9753785 -0.0000000 -0.2205374 -0.8786409 -0.0000000 0.4774831 -0.8786409 -0.0000000 0.4774831 0.8786409 0.0000000 -0.4774831 0.8786409 0.0000000 -0.4774831 -0.9659228 0.0000000 0.2588305 -0.9659228 0.0000000 0.2588305 0.9659228 -0.0000000 -0.2588305 0.9659228 -0.0000000 -0.2588305 -0.9136750 -0.0000000 0.4064455 -0.9136750 -0.0000000 0.4064455 0.9136750 0.0000000 -0.4064455 0.9136750 0.0000000 -0.4064455 -0.9659244 0.0000000 0.2588245 -0.9659244 0.0000000 0.2588245 0.9659244 -0.0000000 -0.2588245 0.9659244 -0.0000000 -0.2588245 -0.9550065 0.0000000 0.2965847 -0.9550065 0.0000000 0.2965847 0.9550065 -0.0000000 -0.2965847 0.9550065 -0.0000000 -0.2965847 -0.9659255 0.0000000 0.2588202 -0.9659255 0.0000000 0.2588202 0.9659255 -0.0000000 -0.2588202 0.9659255 -0.0000000 -0.2588202 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 12 2 13 2 12 0 5 16 17 16 5 4 20 13 21 13 20 12 16 24 17 24 16 25 28 21 29 21 28 20 24 32 33 32 24 25 36 29 37 29 36 28 32 40 33 40 32 41 44 37 45 37 44 36 41 48 40 48 41 49 52 45 53 45 52 44 56 48 49 48 56 57 60 53 61 53 60 52 64 57 56 57 64 65 68 61 69 61 68 60 72 65 64 65 72 73 76 68 69 68 76 77 80 73 72 73 80 81 84 76 85 76 84 77 88 81 80 81 88 89 92 85 93 85 92 84 96 89 88 89 96 97 100 92 93 92 100 101 104 97 96 97 104 105 108 100 109 100 108 101 112 105 104 105 112 113 116 108 109 108 116 117 120 113 112 113 120 121 124 117 116 117 124 125 128 121 120 121 128 129 132 125 124 125 132 133 136 129 128 129 136 137 140 133 132 133 140 141 144 137 136 137 144 145 148 141 140 141 148 149 145 152 153 152 145 144 156 149 148 149 156 157 152 160 153 160 152 161 164 157 156 157 164 165 161 168 160 168 161 169 172 165 164 165 172 173 168 176 177 176 168 169 180 173 172 173 180 181 176 184 177 184 176 185 188 181 180 181 188 189 185 192 184 192 185 193 193 185 194 193 194 195 200 188 201 188 200 189 193 204 205 204 193 195 208 201 209 201 208 200 204 212 205 212 204 213 216 209 217 209 216 208 213 220 212 220 213 221 224 216 217 216 224 225 221 228 220 228 221 229 229 224 228 224 229 225

-
- - -

6 7 8 9 8 7 6 10 7 11 7 10 10 14 11 15 11 14 8 9 18 19 18 9 14 22 15 23 15 22 26 18 27 19 27 18 22 30 23 31 23 30 26 27 34 35 34 27 30 38 31 39 31 38 42 34 43 35 43 34 38 46 39 47 39 46 50 42 51 43 51 42 46 54 47 55 47 54 58 59 51 50 51 59 54 62 55 63 55 62 66 67 58 59 58 67 62 70 63 71 63 70 74 75 66 67 66 75 78 79 70 71 70 79 82 83 74 75 74 83 78 86 79 87 79 86 90 91 82 83 82 91 86 94 87 95 87 94 98 99 90 91 90 99 102 103 94 95 94 103 106 107 98 99 98 107 102 110 103 111 103 110 114 115 106 107 106 115 118 119 110 111 110 119 122 123 114 115 114 123 126 127 118 119 118 127 130 131 122 123 122 131 134 135 126 127 126 135 138 139 130 131 130 139 142 143 134 135 134 143 146 147 138 139 138 147 150 151 142 143 142 151 147 146 154 155 154 146 158 159 150 151 150 159 162 154 163 155 163 154 166 167 158 159 158 167 170 162 171 163 171 162 174 175 166 167 166 175 170 171 178 179 178 171 182 183 174 175 174 183 186 178 187 179 187 178 190 191 182 183 182 191 196 197 198 197 186 198 198 186 199 187 199 186 190 202 191 203 191 202 196 198 206 207 206 198 202 210 203 211 203 210 214 206 215 207 215 206 210 218 211 219 211 218 222 214 223 215 223 214 226 227 218 219 218 227 230 222 231 223 231 222 226 230 227 231 227 230

-
-
-
- - - - 3376.2767717 47.2440945 1441.2889764 3367.7307087 263.7795276 1440.5409449 3367.7307087 47.2440945 1440.5409449 3376.2767717 263.7795276 1441.2889764 3376.2767717 263.7795276 1441.2889764 3376.2767717 47.2440945 1441.2889764 3367.7307087 263.7795276 1440.5409449 3367.7307087 47.2440945 1440.5409449 3384.5625984 47.2440945 1443.5090551 3384.5625984 263.7795276 1443.5090551 3384.5625984 263.7795276 1443.5090551 3384.5625984 47.2440945 1443.5090551 3359.1854331 263.7795276 1441.2885827 3359.1854331 47.2440945 1441.2885827 3359.1854331 263.7795276 1441.2885827 3359.1854331 47.2440945 1441.2885827 3392.3370079 47.2440945 1447.1342520 3392.3370079 263.7795276 1447.1342520 3392.3370079 263.7795276 1447.1342520 3392.3370079 47.2440945 1447.1342520 3350.8992126 263.7795276 1443.5090551 3350.8992126 47.2440945 1443.5090551 3350.8992126 263.7795276 1443.5090551 3350.8992126 47.2440945 1443.5090551 3399.3641732 47.2440945 1452.0547244 3399.3641732 263.7795276 1452.0547244 3399.3641732 263.7795276 1452.0547244 3399.3641732 47.2440945 1452.0547244 3343.1244094 263.7795276 1447.1342520 3343.1244094 47.2440945 1447.1342520 3343.1244094 263.7795276 1447.1342520 3343.1244094 47.2440945 1447.1342520 3405.4299213 47.2440945 1458.1204724 3405.4299213 263.7795276 1458.1204724 3405.4299213 263.7795276 1458.1204724 3405.4299213 47.2440945 1458.1204724 3336.0976378 263.7795276 1452.0547244 3336.0976378 47.2440945 1452.0547244 3336.0976378 263.7795276 1452.0547244 3336.0976378 47.2440945 1452.0547244 3410.3500000 263.7795276 1465.1472441 3410.3500000 47.2440945 1465.1472441 3410.3500000 263.7795276 1465.1472441 3410.3500000 47.2440945 1465.1472441 3330.0318898 263.7795276 1458.1204724 3330.0318898 47.2440945 1458.1204724 3330.0318898 263.7795276 1458.1204724 3330.0318898 47.2440945 1458.1204724 3413.9755906 263.7795276 1472.9220472 3413.9755906 47.2440945 1472.9220472 3413.9755906 263.7795276 1472.9220472 3413.9755906 47.2440945 1472.9220472 3325.1114173 263.7795276 1465.1472441 3325.1114173 47.2440945 1465.1472441 3325.1114173 263.7795276 1465.1472441 3325.1114173 47.2440945 1465.1472441 3416.1956693 47.2440945 1481.2078740 3416.1956693 263.7795276 1481.2078740 3416.1956693 263.7795276 1481.2078740 3416.1956693 47.2440945 1481.2078740 3321.4866142 263.7795276 1472.9220472 3321.4866142 47.2440945 1472.9220472 3321.4866142 263.7795276 1472.9220472 3321.4866142 47.2440945 1472.9220472 3416.9433071 47.2440945 1489.7535433 3416.9433071 263.7795276 1489.7535433 3416.9433071 263.7795276 1489.7535433 3416.9433071 47.2440945 1489.7535433 3319.2661417 47.2440945 1481.2078740 3319.2661417 263.7795276 1481.2078740 3319.2661417 263.7795276 1481.2078740 3319.2661417 47.2440945 1481.2078740 3416.1956693 263.7795276 1498.2992126 3416.1956693 47.2440945 1498.2992126 3416.1956693 263.7795276 1498.2992126 3416.1956693 47.2440945 1498.2992126 3318.5181102 47.2440945 1489.7535433 3318.5181102 263.7795276 1489.7535433 3318.5181102 263.7795276 1489.7535433 3318.5181102 47.2440945 1489.7535433 3413.9755906 47.2440945 1506.5854331 3413.9755906 263.7795276 1506.5854331 3413.9755906 263.7795276 1506.5854331 3413.9755906 47.2440945 1506.5854331 3319.2657480 263.7795276 1498.2992126 3319.2657480 47.2440945 1498.2992126 3319.2657480 263.7795276 1498.2992126 3319.2657480 47.2440945 1498.2992126 3410.3500000 263.7795276 1514.3598425 3410.3500000 47.2440945 1514.3598425 3410.3500000 263.7795276 1514.3598425 3410.3500000 47.2440945 1514.3598425 3321.4866142 47.2440945 1506.5854331 3321.4866142 263.7795276 1506.5854331 3321.4866142 263.7795276 1506.5854331 3321.4866142 47.2440945 1506.5854331 3405.4299213 263.7795276 1521.3870079 3405.4299213 47.2440945 1521.3870079 3405.4299213 263.7795276 1521.3870079 3405.4299213 47.2440945 1521.3870079 3325.1114173 263.7795276 1514.3598425 3325.1114173 47.2440945 1514.3598425 3325.1114173 263.7795276 1514.3598425 3325.1114173 47.2440945 1514.3598425 3399.3637795 47.2440945 1527.4527559 3399.3637795 263.7795276 1527.4527559 3399.3637795 47.2440945 1527.4527559 3399.3637795 263.7795276 1527.4527559 3330.0318898 263.7795276 1521.3870079 3330.0318898 47.2440945 1521.3870079 3330.0318898 263.7795276 1521.3870079 3330.0318898 47.2440945 1521.3870079 3392.3370079 47.2440945 1532.3732283 3392.3370079 263.7795276 1532.3732283 3392.3370079 47.2440945 1532.3732283 3392.3370079 263.7795276 1532.3732283 3336.0976378 263.7795276 1527.4527559 3336.0976378 47.2440945 1527.4527559 3336.0976378 47.2440945 1527.4527559 3336.0976378 263.7795276 1527.4527559 3384.5625984 47.2440945 1535.9984252 3384.5625984 263.7795276 1535.9984252 3384.5625984 47.2440945 1535.9984252 3384.5625984 263.7795276 1535.9984252 3343.1244094 263.7795276 1532.3732283 3343.1244094 47.2440945 1532.3732283 3343.1244094 47.2440945 1532.3732283 3343.1244094 263.7795276 1532.3732283 3376.2767717 47.2440945 1538.2188976 3376.2767717 263.7795276 1538.2188976 3376.2767717 47.2440945 1538.2188976 3376.2767717 263.7795276 1538.2188976 3350.8992126 263.7795276 1535.9984252 3350.8992126 47.2440945 1535.9984252 3350.8992126 47.2440945 1535.9984252 3350.8992126 263.7795276 1535.9984252 3367.7307087 47.2440945 1538.9661417 3367.7307087 263.7795276 1538.9661417 3367.7307087 47.2440945 1538.9661417 3367.7307087 263.7795276 1538.9661417 3359.1854331 263.7795276 1538.2188976 3359.1854331 47.2440945 1538.2188976 3359.1854331 47.2440945 1538.2188976 3359.1854331 263.7795276 1538.2188976 - - - - - - - - - - -0.1736622 0.0000000 0.9848053 -0.0000186 0.0000000 1.0000000 -0.0000186 0.0000000 1.0000000 -0.1736622 0.0000000 0.9848053 0.1736622 -0.0000000 -0.9848053 0.1736622 -0.0000000 -0.9848053 0.0000186 -0.0000000 -1.0000000 0.0000186 -0.0000000 -1.0000000 -0.3420113 0.0000000 0.9396958 -0.3420113 0.0000000 0.9396958 0.3420113 -0.0000000 -0.9396958 0.3420113 -0.0000000 -0.9396958 0.1736598 0.0000000 0.9848057 0.1736598 0.0000000 0.9848057 -0.1736598 -0.0000000 -0.9848057 -0.1736598 -0.0000000 -0.9848057 -0.4999967 0.0000000 0.8660273 -0.4999967 0.0000000 0.8660273 0.4999967 -0.0000000 -0.8660273 0.4999967 -0.0000000 -0.8660273 0.3420174 0.0000000 0.9396936 0.3420174 0.0000000 0.9396936 -0.3420174 -0.0000000 -0.9396936 -0.3420174 -0.0000000 -0.9396936 -0.6427875 -0.0000000 0.7660445 -0.6427875 -0.0000000 0.7660445 0.6427875 0.0000000 -0.7660445 0.6427875 0.0000000 -0.7660445 0.4999997 0.0000000 0.8660256 0.4999997 0.0000000 0.8660256 -0.4999997 -0.0000000 -0.8660256 -0.4999997 -0.0000000 -0.8660256 -0.7660488 -0.0000001 0.6427824 -0.7660488 -0.0000001 0.6427824 0.7660488 0.0000001 -0.6427824 0.7660488 0.0000001 -0.6427824 0.6427976 -0.0000000 0.7660360 0.6427976 -0.0000000 0.7660360 -0.6427976 0.0000000 -0.7660360 -0.6427976 0.0000000 -0.7660360 -0.8660251 -0.0000001 0.5000005 -0.8660251 -0.0000001 0.5000005 0.8660251 0.0000001 -0.5000005 0.8660251 0.0000001 -0.5000005 0.7660360 -0.0000000 0.6427976 0.7660360 -0.0000000 0.6427976 -0.7660360 0.0000000 -0.6427976 -0.7660360 0.0000000 -0.6427976 -0.9396920 0.0000000 0.3420217 -0.9396920 0.0000000 0.3420217 0.9396920 -0.0000000 -0.3420217 0.9396920 -0.0000000 -0.3420217 0.8660360 -0.0000000 0.4999817 0.8660360 -0.0000000 0.4999817 -0.8660360 0.0000000 -0.4999817 -0.8660360 0.0000000 -0.4999817 -0.9848089 0.0000000 0.1736419 -0.9848089 0.0000000 0.1736419 0.9848089 -0.0000000 -0.1736419 0.9848089 -0.0000000 -0.1736419 0.9396987 -0.0000000 0.3420035 0.9396987 -0.0000000 0.3420035 -0.9396987 0.0000000 -0.3420035 -0.9396987 0.0000000 -0.3420035 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 0.9848010 0.0000000 0.1736862 0.9848010 0.0000000 0.1736862 -0.9848010 -0.0000000 -0.1736862 -0.9848010 -0.0000000 -0.1736862 -0.9848099 -0.0000000 -0.1736360 -0.9848099 -0.0000000 -0.1736360 0.9848099 0.0000000 0.1736360 0.9848099 0.0000000 0.1736360 1.0000000 0.0000000 0.0000229 1.0000000 0.0000000 0.0000229 -1.0000000 -0.0000000 -0.0000229 -1.0000000 -0.0000000 -0.0000229 -0.9396908 -0.0000000 -0.3420253 -0.9396908 -0.0000000 -0.3420253 0.9396908 0.0000000 0.3420253 0.9396908 0.0000000 0.3420253 0.9848022 -0.0000000 -0.1736797 0.9848022 -0.0000000 -0.1736797 -0.9848022 0.0000000 0.1736797 -0.9848022 0.0000000 0.1736797 -0.8660263 -0.0000000 -0.4999985 -0.8660263 -0.0000000 -0.4999985 0.8660263 0.0000000 0.4999985 0.8660263 0.0000000 0.4999985 0.9396898 0.0000000 -0.3420278 0.9396898 0.0000000 -0.3420278 -0.9396898 -0.0000000 0.3420278 -0.9396898 -0.0000000 0.3420278 -0.7660461 -0.0000000 -0.6427856 -0.7660461 -0.0000000 -0.6427856 0.7660461 0.0000000 0.6427856 0.7660461 0.0000000 0.6427856 0.8660377 0.0000000 -0.4999787 0.8660377 0.0000000 -0.4999787 -0.8660377 -0.0000000 0.4999787 -0.8660377 -0.0000000 0.4999787 -0.6427852 -0.0000000 -0.7660465 -0.6427852 -0.0000000 -0.7660465 0.6427852 0.0000000 0.7660465 0.6427852 0.0000000 0.7660465 0.7660445 -0.0000000 -0.6427875 0.7660445 -0.0000000 -0.6427875 -0.7660445 0.0000000 0.6427875 -0.7660445 0.0000000 0.6427875 -0.5000081 0.0000000 -0.8660207 -0.5000081 0.0000000 -0.8660207 0.5000081 -0.0000000 0.8660207 0.5000081 -0.0000000 0.8660207 0.6427976 -0.0000000 -0.7660360 0.6427976 -0.0000000 -0.7660360 -0.6427976 0.0000000 0.7660360 -0.6427976 0.0000000 0.7660360 -0.3420321 0.0000000 -0.9396883 -0.3420321 0.0000000 -0.9396883 0.3420321 -0.0000000 0.9396883 0.3420321 -0.0000000 0.9396883 0.4999997 0.0000000 -0.8660256 0.4999997 0.0000000 -0.8660256 -0.4999997 -0.0000000 0.8660256 -0.4999997 -0.0000000 0.8660256 -0.1736392 0.0000000 -0.9848093 -0.1736392 0.0000000 -0.9848093 0.1736392 -0.0000000 0.9848093 0.1736392 -0.0000000 0.9848093 0.3420174 0.0000000 -0.9396936 0.3420174 0.0000000 -0.9396936 -0.3420174 -0.0000000 0.9396936 -0.3420174 -0.0000000 0.9396936 0.0000040 0.0000000 -1.0000000 0.0000040 0.0000000 -1.0000000 -0.0000040 -0.0000000 1.0000000 -0.0000040 -0.0000000 1.0000000 0.1736373 0.0000000 -0.9848097 0.1736373 0.0000000 -0.9848097 -0.1736373 -0.0000000 0.9848097 -0.1736373 -0.0000000 0.9848097 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 9 8 9 16 17 13 20 21 20 13 12 24 17 16 17 24 25 21 28 29 28 21 20 32 25 24 25 32 33 29 36 37 36 29 28 40 32 41 32 40 33 37 44 45 44 37 36 48 41 49 41 48 40 45 52 53 52 45 44 56 48 49 48 56 57 53 60 61 60 53 52 64 57 56 57 64 65 60 68 61 68 60 69 72 64 73 64 72 65 69 76 68 76 69 77 80 72 73 72 80 81 76 84 85 84 76 77 88 80 89 80 88 81 84 92 85 92 84 93 96 89 97 89 96 88 92 100 101 100 92 93 96 104 105 104 96 97 101 108 109 108 101 100 105 112 113 112 105 104 116 109 108 109 116 117 113 120 121 120 113 112 124 117 116 117 124 125 121 128 129 128 121 120 132 125 124 125 132 133 129 136 137 136 129 128 140 133 132 133 140 141 137 141 140 141 137 136

-
- - -

4 5 6 7 6 5 10 11 4 5 4 11 6 7 14 15 14 7 18 19 10 11 10 19 14 15 22 23 22 15 26 27 18 19 18 27 22 23 30 31 30 23 34 35 26 27 26 35 30 31 38 39 38 31 34 42 35 43 35 42 38 39 46 47 46 39 42 50 43 51 43 50 46 47 54 55 54 47 58 59 50 51 50 59 54 55 62 63 62 55 66 67 58 59 58 67 70 62 71 63 71 62 66 74 67 75 67 74 78 70 79 71 79 70 82 83 74 75 74 83 78 79 86 87 86 79 82 90 83 91 83 90 94 86 95 87 95 86 90 98 91 99 91 98 94 95 102 103 102 95 99 98 106 107 106 98 102 103 110 111 110 103 106 107 114 115 114 107 118 119 111 110 111 119 114 115 122 123 122 115 126 127 118 119 118 127 122 123 130 131 130 123 134 135 126 127 126 135 130 131 138 139 138 131 142 143 134 135 134 143 138 139 142 143 142 139

-
-
-
- - - - 3365.4590551 263.7795276 1978.2807087 2945.7897638 47.2440945 1735.9846457 2945.7897638 263.7795276 1735.9846457 3365.4590551 47.2440945 1978.2807087 3365.4590551 47.2440945 1978.2807087 3365.4590551 263.7795276 1978.2807087 2945.7897638 47.2440945 1735.9846457 2945.7897638 263.7795276 1735.9846457 3365.4590551 263.7795276 1978.2807087 3364.6070866 47.2440945 1983.3562992 3365.4590551 47.2440945 1978.2807087 3364.6070866 263.7795276 1983.3562992 3364.6070866 263.7795276 1983.3562992 3365.4590551 263.7795276 1978.2807087 3364.6070866 47.2440945 1983.3562992 3365.4590551 47.2440945 1978.2807087 2945.7897638 263.7795276 1735.9846457 2942.0440945 47.2440945 1739.1062992 2942.0440945 263.7795276 1739.1062992 2945.7897638 47.2440945 1735.9846457 2945.7897638 47.2440945 1735.9846457 2945.7897638 263.7795276 1735.9846457 2942.0440945 47.2440945 1739.1062992 2942.0440945 263.7795276 1739.1062992 3364.6484252 263.7795276 1988.5035433 3364.6484252 47.2440945 1988.5035433 3364.6484252 263.7795276 1988.5035433 3364.6484252 47.2440945 1988.5035433 2937.8334646 47.2440945 1741.5685039 2937.8334646 263.7795276 1741.5685039 2937.8334646 47.2440945 1741.5685039 2937.8334646 263.7795276 1741.5685039 3365.5830709 47.2440945 1993.5645669 3365.5830709 263.7795276 1993.5645669 3365.5830709 263.7795276 1993.5645669 3365.5830709 47.2440945 1993.5645669 2933.2763780 47.2440945 1743.3043307 2933.2763780 263.7795276 1743.3043307 2933.2763780 47.2440945 1743.3043307 2933.2763780 263.7795276 1743.3043307 3367.3826772 47.2440945 1998.3870079 3367.3826772 263.7795276 1998.3870079 3367.3826772 263.7795276 1998.3870079 3367.3826772 47.2440945 1998.3870079 2928.4952756 47.2440945 1744.2661417 2928.4952756 263.7795276 1744.2661417 2928.4952756 47.2440945 1744.2661417 2928.4952756 263.7795276 1744.2661417 3369.9925197 263.7795276 2002.8232283 3369.9925197 47.2440945 2002.8232283 3369.9925197 263.7795276 2002.8232283 3369.9925197 47.2440945 2002.8232283 2923.6212598 47.2440945 1744.4279528 2923.6212598 263.7795276 1744.4279528 2923.6212598 47.2440945 1744.4279528 2923.6212598 263.7795276 1744.4279528 3373.3334646 47.2440945 2006.7389764 3373.3334646 263.7795276 2006.7389764 3373.3334646 263.7795276 2006.7389764 3373.3334646 47.2440945 2006.7389764 2918.7870079 47.2440945 1743.7854331 2918.7870079 263.7795276 1743.7854331 2918.7870079 47.2440945 1743.7854331 2918.7870079 263.7795276 1743.7854331 3377.3031496 263.7795276 2010.0153543 3377.3031496 47.2440945 2010.0153543 3377.3031496 47.2440945 2010.0153543 3377.3031496 263.7795276 2010.0153543 2914.1248031 47.2440945 1742.3559055 2914.1248031 263.7795276 1742.3559055 2914.1248031 47.2440945 1742.3559055 2914.1248031 263.7795276 1742.3559055 3381.7807087 263.7795276 2012.5523622 3381.7807087 47.2440945 2012.5523622 3381.7807087 47.2440945 2012.5523622 3381.7807087 263.7795276 2012.5523622 2909.7618110 47.2440945 1740.1783465 2909.7618110 263.7795276 1740.1783465 2909.7618110 47.2440945 1740.1783465 2909.7618110 263.7795276 1740.1783465 3386.6314961 263.7795276 2014.2732283 3386.6314961 47.2440945 2014.2732283 3386.6314961 47.2440945 2014.2732283 3386.6314961 263.7795276 2014.2732283 2905.8149606 47.2440945 1737.3125984 2905.8149606 263.7795276 1737.3125984 2905.8149606 47.2440945 1737.3125984 2905.8149606 263.7795276 1737.3125984 3391.7074803 263.7795276 2015.1259843 3391.7074803 47.2440945 2015.1259843 3391.7074803 47.2440945 2015.1259843 3391.7074803 263.7795276 2015.1259843 2902.3952756 47.2440945 1733.8362205 2902.3952756 263.7795276 1733.8362205 2902.3952756 263.7795276 1733.8362205 2902.3952756 47.2440945 1733.8362205 3396.8543307 263.7795276 2015.0842520 3396.8543307 47.2440945 2015.0842520 3396.8543307 47.2440945 2015.0842520 3396.8543307 263.7795276 2015.0842520 2899.5937008 263.7795276 1729.8444882 2899.5937008 47.2440945 1729.8444882 2899.5937008 263.7795276 1729.8444882 2899.5937008 47.2440945 1729.8444882 3401.9157480 263.7795276 2014.1492126 3401.9157480 47.2440945 2014.1492126 3401.9157480 47.2440945 2014.1492126 3401.9157480 263.7795276 2014.1492126 2897.4877953 263.7795276 1725.4456693 2897.4877953 47.2440945 1725.4456693 2897.4877953 263.7795276 1725.4456693 2897.4877953 47.2440945 1725.4456693 3406.7381890 263.7795276 2012.3492126 3406.7381890 47.2440945 2012.3492126 3406.7381890 47.2440945 2012.3492126 3406.7381890 263.7795276 2012.3492126 2896.1346457 47.2440945 1720.7606299 2896.1346457 263.7795276 1720.7606299 2896.1346457 263.7795276 1720.7606299 2896.1346457 47.2440945 1720.7606299 3411.1740157 263.7795276 2009.7397638 3411.1740157 47.2440945 2009.7397638 3411.1740157 47.2440945 2009.7397638 3411.1740157 263.7795276 2009.7397638 2895.5700787 263.7795276 1715.9165354 2895.5700787 47.2440945 1715.9165354 2895.5700787 263.7795276 1715.9165354 2895.5700787 47.2440945 1715.9165354 3415.0905512 263.7795276 2006.3992126 3415.0905512 47.2440945 2006.3992126 3415.0905512 47.2440945 2006.3992126 3415.0905512 263.7795276 2006.3992126 2895.8110236 263.7795276 1711.0460630 2895.8110236 47.2440945 1711.0460630 2895.8110236 263.7795276 1711.0460630 2895.8110236 47.2440945 1711.0460630 3418.3661417 263.7795276 2002.4295276 3418.3661417 47.2440945 2002.4295276 3418.3661417 263.7795276 2002.4295276 3418.3661417 47.2440945 2002.4295276 2896.8511811 47.2440945 1706.2814961 2896.8511811 263.7795276 1706.2814961 2896.8511811 263.7795276 1706.2814961 2896.8511811 47.2440945 1706.2814961 3420.9031496 47.2440945 1997.9515748 3420.9031496 263.7795276 1997.9515748 3420.9031496 263.7795276 1997.9515748 3420.9031496 47.2440945 1997.9515748 2898.6606299 47.2440945 1701.7527559 2898.6606299 263.7795276 1701.7527559 2898.6606299 263.7795276 1701.7527559 2898.6606299 47.2440945 1701.7527559 3422.6240157 263.7795276 1993.1007874 3422.6240157 47.2440945 1993.1007874 3422.6240157 263.7795276 1993.1007874 3422.6240157 47.2440945 1993.1007874 2901.1909449 263.7795276 1697.5838583 2901.1909449 47.2440945 1697.5838583 2901.1909449 263.7795276 1697.5838583 2901.1909449 47.2440945 1697.5838583 3437.3877953 47.2440945 1967.5291339 3437.3877953 263.7795276 1967.5291339 3437.3877953 263.7795276 1967.5291339 3437.3877953 47.2440945 1967.5291339 2904.3724409 263.7795276 1693.8881890 2904.3724409 47.2440945 1693.8881890 2904.3724409 263.7795276 1693.8881890 2904.3724409 47.2440945 1693.8881890 3440.7283465 47.2440945 1963.6133858 3440.7283465 263.7795276 1963.6133858 3440.7283465 263.7795276 1963.6133858 3440.7283465 47.2440945 1963.6133858 2919.1362205 263.7795276 1668.3165354 2919.1362205 47.2440945 1668.3165354 2919.1362205 263.7795276 1668.3165354 2919.1362205 47.2440945 1668.3165354 3443.3377953 47.2440945 1959.1771654 3443.3377953 263.7795276 1959.1771654 3443.3377953 263.7795276 1959.1771654 3443.3377953 47.2440945 1959.1771654 2920.8578740 47.2440945 1663.4657480 2920.8578740 263.7795276 1663.4657480 2920.8578740 263.7795276 1663.4657480 2920.8578740 47.2440945 1663.4657480 3445.1377953 47.2440945 1954.3551181 3445.1377953 263.7795276 1954.3551181 3445.1377953 263.7795276 1954.3551181 3445.1377953 47.2440945 1954.3551181 2923.3948819 263.7795276 1658.9874016 2923.3948819 47.2440945 1658.9874016 2923.3948819 263.7795276 1658.9874016 2923.3948819 47.2440945 1658.9874016 3446.0728346 47.2440945 1949.2937008 3446.0728346 263.7795276 1949.2937008 3446.0728346 263.7795276 1949.2937008 3446.0728346 47.2440945 1949.2937008 2926.6708661 47.2440945 1655.0177165 2926.6708661 263.7795276 1655.0177165 2926.6708661 263.7795276 1655.0177165 2926.6708661 47.2440945 1655.0177165 3446.1145669 47.2440945 1944.1464567 3446.1145669 263.7795276 1944.1464567 3446.1145669 263.7795276 1944.1464567 3446.1145669 47.2440945 1944.1464567 2930.5866142 47.2440945 1651.6775591 2930.5866142 263.7795276 1651.6775591 2930.5866142 263.7795276 1651.6775591 2930.5866142 47.2440945 1651.6775591 3445.2622047 263.7795276 1939.0708661 3445.2622047 47.2440945 1939.0708661 3445.2622047 263.7795276 1939.0708661 3445.2622047 47.2440945 1939.0708661 2935.0232283 47.2440945 1649.0681102 2935.0232283 263.7795276 1649.0681102 2935.0232283 263.7795276 1649.0681102 2935.0232283 47.2440945 1649.0681102 3443.5413386 47.2440945 1934.2200787 3443.5413386 263.7795276 1934.2200787 3443.5413386 263.7795276 1934.2200787 3443.5413386 47.2440945 1934.2200787 2939.8456693 47.2440945 1647.2681102 2939.8456693 263.7795276 1647.2681102 2939.8456693 263.7795276 1647.2681102 2939.8456693 47.2440945 1647.2681102 3441.0039370 263.7795276 1929.7421260 3441.0039370 47.2440945 1929.7421260 3441.0039370 263.7795276 1929.7421260 3441.0039370 47.2440945 1929.7421260 2944.9066929 47.2440945 1646.3334646 2944.9066929 263.7795276 1646.3334646 2944.9066929 263.7795276 1646.3334646 2944.9066929 47.2440945 1646.3334646 3437.7279528 47.2440945 1925.7724409 3437.7279528 263.7795276 1925.7724409 3437.7279528 263.7795276 1925.7724409 3437.7279528 47.2440945 1925.7724409 2950.0535433 47.2440945 1646.2913386 2950.0535433 263.7795276 1646.2913386 2950.0535433 263.7795276 1646.2913386 2950.0535433 47.2440945 1646.2913386 3433.8122047 263.7795276 1922.4318898 3433.8122047 47.2440945 1922.4318898 3433.8122047 263.7795276 1922.4318898 3433.8122047 47.2440945 1922.4318898 2955.1295276 47.2440945 1647.1440945 2955.1295276 263.7795276 1647.1440945 2955.1295276 263.7795276 1647.1440945 2955.1295276 47.2440945 1647.1440945 3429.3755906 263.7795276 1919.8220472 3429.3755906 47.2440945 1919.8220472 3429.3755906 263.7795276 1919.8220472 3429.3755906 47.2440945 1919.8220472 2959.9799213 47.2440945 1648.8649606 2959.9799213 263.7795276 1648.8649606 2959.9799213 263.7795276 1648.8649606 2959.9799213 47.2440945 1648.8649606 3424.5535433 263.7795276 1918.0224409 3424.5535433 47.2440945 1918.0224409 3424.5535433 263.7795276 1918.0224409 3424.5535433 47.2440945 1918.0224409 2964.4582677 47.2440945 1651.4019685 2964.4582677 263.7795276 1651.4019685 2964.4582677 263.7795276 1651.4019685 2964.4582677 47.2440945 1651.4019685 3419.4917323 263.7795276 1917.0874016 3419.4917323 47.2440945 1917.0874016 3419.4917323 263.7795276 1917.0874016 3419.4917323 47.2440945 1917.0874016 2968.4279528 47.2440945 1654.6783465 2968.4279528 263.7795276 1654.6783465 2968.4279528 263.7795276 1654.6783465 2968.4279528 47.2440945 1654.6783465 3414.3456693 263.7795276 1917.0456693 3414.3456693 47.2440945 1917.0456693 3414.3456693 263.7795276 1917.0456693 3414.3456693 47.2440945 1917.0456693 2971.7685039 263.7795276 1658.5940945 2971.7685039 47.2440945 1658.5940945 2971.7685039 263.7795276 1658.5940945 2971.7685039 47.2440945 1658.5940945 3409.2696850 263.7795276 1917.8980315 3409.2696850 47.2440945 1917.8980315 3409.2696850 263.7795276 1917.8980315 3409.2696850 47.2440945 1917.8980315 2974.3775591 263.7795276 1663.0303150 2974.3775591 47.2440945 1663.0303150 2974.3775591 263.7795276 1663.0303150 2974.3775591 47.2440945 1663.0303150 3404.4188976 263.7795276 1919.6192913 3404.4188976 47.2440945 1919.6192913 3404.4188976 263.7795276 1919.6192913 3404.4188976 47.2440945 1919.6192913 2976.1779528 263.7795276 1667.8527559 2976.1779528 47.2440945 1667.8527559 2976.1779528 263.7795276 1667.8527559 2976.1779528 47.2440945 1667.8527559 3399.9401575 263.7795276 1922.1562992 3399.9401575 47.2440945 1922.1562992 3399.9401575 263.7795276 1922.1562992 3399.9401575 47.2440945 1922.1562992 2977.1122047 47.2440945 1672.9137795 2977.1122047 263.7795276 1672.9137795 2977.1122047 263.7795276 1672.9137795 2977.1122047 47.2440945 1672.9137795 3395.9708661 263.7795276 1925.4326772 3395.9708661 47.2440945 1925.4326772 3395.9708661 263.7795276 1925.4326772 3395.9708661 47.2440945 1925.4326772 2977.1547244 263.7795276 1678.0610236 2977.1547244 47.2440945 1678.0610236 2977.1547244 263.7795276 1678.0610236 2977.1547244 47.2440945 1678.0610236 3395.9708661 47.2440945 1925.4326772 2976.3015748 263.7795276 1683.1366142 2976.3015748 47.2440945 1683.1366142 3395.9708661 263.7795276 1925.4326772 3395.9708661 263.7795276 1925.4326772 3395.9708661 47.2440945 1925.4326772 2976.3015748 263.7795276 1683.1366142 2976.3015748 47.2440945 1683.1366142 2976.3015748 263.7795276 1683.1366142 2976.3015748 47.2440945 1683.1366142 2976.3015748 263.7795276 1683.1366142 2976.3015748 47.2440945 1683.1366142 - - - - - - - - - - 0.4999999 0.0000001 -0.8660255 0.4999999 0.0000001 -0.8660255 0.4999999 0.0000001 -0.8660255 0.4999999 0.0000001 -0.8660255 -0.4999999 -0.0000001 0.8660255 -0.4999999 -0.0000001 0.8660255 -0.4999999 -0.0000001 0.8660255 -0.4999999 -0.0000001 0.8660255 0.9862031 0.0000000 0.1655401 0.9968703 0.0000000 0.0790547 0.9862031 0.0000000 0.1655401 0.9968703 0.0000000 0.0790547 -0.9968703 -0.0000000 -0.0790547 -0.9862031 -0.0000000 -0.1655401 -0.9968703 -0.0000000 -0.0790547 -0.9862031 -0.0000000 -0.1655401 -0.6402162 0.0000000 -0.7681948 -0.5744718 0.0000000 -0.8185244 -0.5744718 0.0000000 -0.8185244 -0.6402162 0.0000000 -0.7681948 0.6402162 -0.0000000 0.7681948 0.6402162 -0.0000000 0.7681948 0.5744718 -0.0000000 0.8185244 0.5744718 -0.0000000 0.8185244 0.9954601 0.0000000 -0.0951801 0.9954601 0.0000000 -0.0951801 -0.9954601 -0.0000000 0.0951801 -0.9954601 -0.0000000 0.0951801 -0.4318461 0.0000000 -0.9019473 -0.4318461 0.0000000 -0.9019473 0.4318461 -0.0000000 0.9019473 0.4318461 -0.0000000 0.9019473 0.9637994 0.0000000 -0.2666283 0.9637994 0.0000000 -0.2666283 -0.9637994 -0.0000000 0.2666283 -0.9637994 -0.0000000 0.2666283 -0.2775371 0.0000000 -0.9607149 -0.2775371 0.0000000 -0.9607149 0.2775371 -0.0000000 0.9607149 0.2775371 -0.0000000 0.9607149 0.9028381 0.0000000 -0.4299807 0.9028381 0.0000000 -0.4299807 -0.9028381 -0.0000000 0.4299807 -0.9028381 -0.0000000 0.4299807 -0.1155941 0.0000000 -0.9932965 -0.1155941 0.0000000 -0.9932965 0.1155941 -0.0000000 0.9932965 0.1155941 -0.0000000 0.9932965 0.8144221 0.0000000 -0.5802730 0.8144221 0.0000000 -0.5802730 -0.8144221 -0.0000000 0.5802730 -0.8144221 -0.0000000 0.5802730 0.0494543 0.0000000 -0.9987764 0.0494543 0.0000000 -0.9987764 -0.0494543 -0.0000000 0.9987764 -0.0494543 -0.0000000 0.9987764 0.7013044 0.0000000 -0.7128620 0.7013044 0.0000000 -0.7128620 -0.7013044 -0.0000000 0.7128620 -0.7013044 -0.0000000 0.7128620 0.2131789 -0.0000000 -0.9770132 0.2131789 -0.0000000 -0.9770132 -0.2131789 0.0000000 0.9770132 -0.2131789 0.0000000 0.9770132 0.5669143 0.0000000 -0.8237768 0.5669143 0.0000000 -0.8237768 -0.5669143 -0.0000000 0.8237768 -0.5669143 -0.0000000 0.8237768 0.3711271 0.0000000 -0.9285821 0.3711271 0.0000000 -0.9285821 -0.3711271 -0.0000000 0.9285821 -0.3711271 -0.0000000 0.9285821 0.4152393 0.0000000 -0.9097122 0.4152393 0.0000000 -0.9097122 -0.4152393 -0.0000000 0.9097122 -0.4152393 -0.0000000 0.9097122 0.5188218 0.0000000 -0.8548824 0.5188218 0.0000000 -0.8548824 -0.5188218 -0.0000000 0.8548824 -0.5188218 -0.0000000 0.8548824 0.2509645 0.0000000 -0.9679963 0.2509645 0.0000000 -0.9679963 -0.2509645 -0.0000000 0.9679963 -0.2509645 -0.0000000 0.9679963 0.6524546 -0.0000000 -0.7578278 0.6524546 -0.0000000 -0.7578278 -0.6524546 0.0000000 0.7578278 -0.6524546 0.0000000 0.7578278 0.0790852 -0.0000000 -0.9968679 0.0790852 -0.0000000 -0.9968679 -0.0790852 0.0000000 0.9968679 -0.0790852 0.0000000 0.9968679 0.7683290 -0.0000000 -0.6400551 0.7683290 -0.0000000 -0.6400551 -0.7683290 0.0000000 0.6400551 -0.7683290 0.0000000 0.6400551 -0.0952490 0.0000000 -0.9954535 -0.0952490 0.0000000 -0.9954535 0.0952490 -0.0000000 0.9954535 0.0952490 -0.0000000 0.9954535 0.8631958 -0.0000000 -0.5048692 0.8631958 -0.0000000 -0.5048692 -0.8631958 0.0000000 0.5048692 -0.8631958 0.0000000 0.5048692 -0.2666924 -0.0000000 -0.9637817 -0.2666924 -0.0000000 -0.9637817 0.2666924 0.0000000 0.9637817 0.2666924 0.0000000 0.9637817 0.9345390 -0.0000000 -0.3558608 0.9345390 -0.0000000 -0.3558608 -0.9345390 0.0000000 0.3558608 -0.9345390 0.0000000 0.3558608 -0.4300008 -0.0000000 -0.9028285 -0.4300008 -0.0000000 -0.9028285 0.4300008 0.0000000 0.9028285 0.4300008 0.0000000 0.9028285 0.9803442 0.0000000 -0.1972950 0.9803442 0.0000000 -0.1972950 -0.9803442 -0.0000000 0.1972950 -0.9803442 -0.0000000 0.1972950 -0.5801978 0.0000000 -0.8144756 -0.5801978 0.0000000 -0.8144756 0.5801978 -0.0000000 0.8144756 0.5801978 -0.0000000 0.8144756 0.9994457 0.0000000 -0.0332907 0.9994457 0.0000000 -0.0332907 -0.9994457 -0.0000000 0.0332907 -0.9994457 -0.0000000 0.0332907 -0.7128481 0.0000000 -0.7013184 -0.7128481 0.0000000 -0.7013184 0.7128481 -0.0000000 0.7013184 0.7128481 -0.0000000 0.7013184 0.9912763 0.0000000 0.1317999 0.9912763 0.0000000 0.1317999 -0.9912763 -0.0000000 -0.1317999 -0.9912763 -0.0000000 -0.1317999 -0.8238209 0.0000000 -0.5668502 -0.8238209 0.0000000 -0.5668502 0.8238209 -0.0000000 0.5668502 0.8238209 -0.0000000 0.5668502 0.9560642 0.0000000 0.2931574 0.9560642 0.0000000 0.2931574 -0.9560642 -0.0000000 -0.2931574 -0.9560642 -0.0000000 -0.2931574 -0.9097201 0.0000000 -0.4152221 -0.9097201 0.0000000 -0.4152221 0.9097201 -0.0000000 0.4152221 0.9097201 -0.0000000 0.4152221 0.8947990 0.0000000 0.4464693 0.8947990 0.0000000 0.4464693 -0.8947990 -0.0000000 -0.4464693 -0.8947990 -0.0000000 -0.4464693 -0.9080240 0.0000000 -0.4189182 -0.9080240 0.0000000 -0.4189182 0.9080240 -0.0000000 0.4189182 0.9080240 -0.0000000 0.4189182 0.8091201 0.0000000 0.5876434 0.8091201 0.0000000 0.5876434 -0.8091201 -0.0000000 -0.5876434 -0.8091201 -0.0000000 -0.5876434 -0.8168043 0.0000000 -0.5769149 -0.8168043 0.0000000 -0.5769149 0.8168043 -0.0000000 0.5769149 0.8168043 -0.0000000 0.5769149 0.8155109 -0.0000000 0.5787417 0.8155109 -0.0000000 0.5787417 -0.8155109 0.0000000 -0.5787417 -0.8155109 0.0000000 -0.5787417 -0.8144581 -0.0000000 -0.5802224 -0.8144581 -0.0000000 -0.5802224 0.8144581 0.0000000 0.5802224 0.8144581 0.0000000 0.5802224 0.9079938 0.0000000 0.4189837 0.9079938 0.0000000 0.4189837 -0.9079938 -0.0000000 -0.4189837 -0.9079938 -0.0000000 -0.4189837 -0.9028311 -0.0000000 -0.4299953 -0.9028311 -0.0000000 -0.4299953 0.9028311 0.0000000 0.4299953 0.9028311 0.0000000 0.4299953 0.9096980 0.0000000 0.4152705 0.9096980 0.0000000 0.4152705 -0.9096980 -0.0000000 -0.4152705 -0.9096980 -0.0000000 -0.4152705 -0.9637781 0.0000000 -0.2667053 -0.9637781 0.0000000 -0.2667053 0.9637781 -0.0000000 0.2667053 0.9637781 -0.0000000 0.2667053 0.8238149 0.0000000 0.5668589 0.8238149 0.0000000 0.5668589 -0.8238149 -0.0000000 -0.5668589 -0.8238149 -0.0000000 -0.5668589 -0.9954535 0.0000000 -0.0952487 -0.9954535 0.0000000 -0.0952487 0.9954535 -0.0000000 0.0952487 0.9954535 -0.0000000 0.0952487 0.7128418 -0.0000000 0.7013248 0.7128418 -0.0000000 0.7013248 -0.7128418 0.0000000 -0.7013248 -0.7128418 0.0000000 -0.7013248 -0.9968703 0.0000000 0.0790542 -0.9968703 0.0000000 0.0790542 0.9968703 -0.0000000 -0.0790542 0.9968703 -0.0000000 -0.0790542 0.5801829 -0.0000000 0.8144862 0.5801829 -0.0000000 0.8144862 -0.5801829 0.0000000 -0.8144862 -0.5801829 0.0000000 -0.8144862 -0.9680042 0.0000000 0.2509341 -0.9680042 0.0000000 0.2509341 0.9680042 -0.0000000 -0.2509341 0.9680042 -0.0000000 -0.2509341 0.4299657 -0.0000000 0.9028452 0.4299657 -0.0000000 0.9028452 -0.4299657 0.0000000 -0.9028452 -0.4299657 0.0000000 -0.9028452 -0.9097062 0.0000000 0.4152524 -0.9097062 0.0000000 0.4152524 0.9097062 -0.0000000 -0.4152524 0.9097062 -0.0000000 -0.4152524 0.2666628 -0.0000000 0.9637899 0.2666628 -0.0000000 0.9637899 -0.2666628 0.0000000 -0.9637899 -0.2666628 0.0000000 -0.9637899 -0.8237853 0.0000000 0.5669019 -0.8237853 0.0000000 0.5669019 0.8237853 -0.0000000 -0.5669019 0.8237853 -0.0000000 -0.5669019 0.0952565 0.0000000 0.9954528 0.0952565 0.0000000 0.9954528 -0.0952565 -0.0000000 -0.9954528 -0.0952565 -0.0000000 -0.9954528 -0.7128623 0.0000000 0.7013041 -0.7128623 0.0000000 0.7013041 0.7128623 -0.0000000 -0.7013041 0.7128623 -0.0000000 -0.7013041 -0.0790471 0.0000000 0.9968709 -0.0790471 0.0000000 0.9968709 0.0790471 -0.0000000 -0.9968709 0.0790471 -0.0000000 -0.9968709 -0.5802335 -0.0000000 0.8144502 -0.5802335 -0.0000000 0.8144502 0.5802335 0.0000000 -0.8144502 0.5802335 0.0000000 -0.8144502 -0.2509769 0.0000000 0.9679931 -0.2509769 0.0000000 0.9679931 0.2509769 -0.0000000 -0.9679931 0.2509769 -0.0000000 -0.9679931 -0.4299752 -0.0000000 0.9028407 -0.4299752 -0.0000000 0.9028407 0.4299752 0.0000000 -0.9028407 0.4299752 0.0000000 -0.9028407 -0.4152166 0.0000000 0.9097226 -0.4152166 0.0000000 0.9097226 0.4152166 -0.0000000 -0.9097226 0.4152166 -0.0000000 -0.9097226 -0.2666640 0.0000000 0.9637895 -0.2666640 0.0000000 0.9637895 0.2666640 -0.0000000 -0.9637895 0.2666640 -0.0000000 -0.9637895 -0.5668832 0.0000000 0.8237981 -0.5668832 0.0000000 0.8237981 0.5668832 -0.0000000 -0.8237981 0.5668832 -0.0000000 -0.8237981 -0.0952427 0.0000000 0.9954541 -0.0952427 0.0000000 0.9954541 0.0952427 -0.0000000 -0.9954541 0.0952427 -0.0000000 -0.9954541 -0.7013251 0.0000000 0.7128416 -0.7013251 0.0000000 0.7128416 0.7013251 -0.0000000 -0.7128416 0.7013251 -0.0000000 -0.7128416 0.0790470 -0.0000000 0.9968709 0.0790470 -0.0000000 0.9968709 -0.0790470 0.0000000 -0.9968709 -0.0790470 0.0000000 -0.9968709 -0.8144772 0.0000000 0.5801956 -0.8144772 0.0000000 0.5801956 0.8144772 -0.0000000 -0.5801956 0.8144772 -0.0000000 -0.5801956 0.2509629 -0.0000000 0.9679967 0.2509629 -0.0000000 0.9679967 -0.2509629 0.0000000 -0.9679967 -0.2509629 0.0000000 -0.9679967 -0.9028356 0.0000000 0.4299858 -0.9028356 0.0000000 0.4299858 0.9028356 -0.0000000 -0.4299858 0.9028356 -0.0000000 -0.4299858 0.4152206 -0.0000000 0.9097208 0.4152206 -0.0000000 0.9097208 -0.4152206 0.0000000 -0.9097208 -0.4152206 0.0000000 -0.9097208 -0.9637904 0.0000000 0.2666611 -0.9637904 0.0000000 0.2666611 0.9637904 -0.0000000 -0.2666611 0.9637904 -0.0000000 -0.2666611 0.5668878 0.0000000 0.8237950 0.5668878 0.0000000 0.8237950 -0.5668878 -0.0000000 -0.8237950 -0.5668878 -0.0000000 -0.8237950 -0.9954527 0.0000000 0.0952568 -0.9954527 0.0000000 0.0952568 0.9954527 -0.0000000 -0.0952568 0.9954527 -0.0000000 -0.0952568 0.6365809 0.0000000 0.7712099 0.6365809 0.0000000 0.7712099 -0.6365809 -0.0000000 -0.7712099 -0.6365809 -0.0000000 -0.7712099 -0.9968704 0.0000000 -0.0790532 -0.9968704 0.0000000 -0.0790532 0.9968704 -0.0000000 0.0790532 0.9968704 -0.0000000 0.0790532 -0.4999999 0.0000004 0.8660254 -0.4999999 0.0000004 0.8660254 -0.4999999 0.0000004 0.8660254 -0.4999999 0.0000004 0.8660254 0.4999999 -0.0000004 -0.8660254 0.4999999 -0.0000004 -0.8660254 0.4999999 -0.0000004 -0.8660254 0.4999999 -0.0000004 -0.8660254 -0.9861656 0.0000000 -0.1657633 -0.9861656 0.0000000 -0.1657633 0.9861656 -0.0000000 0.1657633 0.9861656 -0.0000000 0.1657633 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 9 24 25 24 9 11 18 28 29 28 18 17 24 32 25 32 24 33 29 36 37 36 29 28 33 40 32 40 33 41 37 44 45 44 37 36 40 48 49 48 40 41 45 52 53 52 45 44 48 56 49 56 48 57 53 60 61 60 53 52 64 56 57 56 64 65 61 68 69 68 61 60 72 65 64 65 72 73 69 76 77 76 69 68 80 73 72 73 80 81 77 84 85 84 77 76 88 81 80 81 88 89 92 85 84 85 92 93 96 89 88 89 96 97 100 92 101 92 100 93 104 97 96 97 104 105 108 101 109 101 108 100 112 105 104 105 112 113 116 108 109 108 116 117 120 113 112 113 120 121 124 116 125 116 124 117 128 121 120 121 128 129 132 125 133 125 132 124 129 136 137 136 129 128 140 132 133 132 140 141 136 144 137 144 136 145 148 141 140 141 148 149 144 152 153 152 144 145 156 148 157 148 156 149 152 160 153 160 152 161 164 157 165 157 164 156 161 168 160 168 161 169 172 165 173 165 172 164 169 176 168 176 169 177 180 172 173 172 180 181 177 184 176 184 177 185 188 180 189 180 188 181 185 192 184 192 185 193 196 188 189 188 196 197 193 200 192 200 193 201 204 197 196 197 204 205 200 208 209 208 200 201 212 205 204 205 212 213 208 216 209 216 208 217 220 213 212 213 220 221 216 224 225 224 216 217 228 221 220 221 228 229 224 232 225 232 224 233 236 229 228 229 236 237 232 240 241 240 232 233 244 237 236 237 244 245 241 248 249 248 241 240 252 245 244 245 252 253 249 256 257 256 249 248 260 253 252 253 260 261 257 264 265 264 257 256 268 261 260 261 268 269 265 272 273 272 265 264 276 268 277 268 276 269 273 280 281 280 273 272 284 277 285 277 284 276 281 288 289 288 281 280 292 285 293 285 292 284 289 296 297 296 289 288 300 292 293 292 300 301 297 304 305 304 297 296 308 300 309 300 308 301 312 313 314 313 312 315 320 309 321 309 320 308

-
- - -

4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 12 14 26 27 26 14 22 23 30 31 30 23 34 26 35 27 35 26 30 31 38 39 38 31 42 34 43 35 43 34 38 39 46 47 46 39 42 43 50 51 50 43 46 47 54 55 54 47 58 50 59 51 59 50 54 55 62 63 62 55 66 67 59 58 59 67 62 63 70 71 70 63 74 75 66 67 66 75 70 71 78 79 78 71 82 83 74 75 74 83 78 79 86 87 86 79 90 91 82 83 82 91 94 95 87 86 87 95 98 99 90 91 90 99 94 102 95 103 95 102 106 107 98 99 98 107 102 110 103 111 103 110 114 115 106 107 106 115 118 119 110 111 110 119 122 123 114 115 114 123 118 126 119 127 119 126 130 131 122 123 122 131 126 134 127 135 127 134 131 130 138 139 138 130 142 143 134 135 134 143 146 138 147 139 147 138 150 151 142 143 142 151 146 147 154 155 154 147 150 158 151 159 151 158 162 154 163 155 163 154 158 166 159 167 159 166 170 162 171 163 171 162 166 174 167 175 167 174 178 170 179 171 179 170 182 183 174 175 174 183 186 178 187 179 187 178 182 190 183 191 183 190 194 186 195 187 195 186 198 199 190 191 190 199 202 194 203 195 203 194 206 207 198 199 198 207 202 203 210 211 210 203 214 215 206 207 206 215 218 210 219 211 219 210 222 223 214 215 214 223 218 219 226 227 226 219 230 231 222 223 222 231 234 226 235 227 235 226 238 239 230 231 230 239 234 235 242 243 242 235 246 247 238 239 238 247 242 243 250 251 250 243 254 255 246 247 246 255 250 251 258 259 258 251 262 263 254 255 254 263 258 259 266 267 266 259 270 271 262 263 262 271 266 267 274 275 274 267 270 278 271 279 271 278 274 275 282 283 282 275 278 286 279 287 279 286 282 283 290 291 290 283 286 294 287 295 287 294 290 291 298 299 298 291 302 303 294 295 294 303 298 299 306 307 306 299 302 310 303 311 303 310 316 317 318 319 318 317 310 322 311 323 311 322

-
-
-
- - - - 6164.4055118 47.2440945 3747.1783465 6167.5551181 263.7795276 3742.6811024 6167.5551181 47.2440945 3742.6811024 6164.4055118 263.7795276 3747.1783465 6164.4055118 263.7795276 3747.1783465 6164.4055118 47.2440945 3747.1783465 6167.5551181 263.7795276 3742.6811024 6167.5551181 47.2440945 3742.6811024 6169.8740157 47.2440945 3737.7055118 6169.8740157 263.7795276 3737.7055118 6169.8740157 263.7795276 3737.7055118 6169.8740157 47.2440945 3737.7055118 6160.5236220 263.7795276 3751.0606299 6160.5236220 47.2440945 3751.0606299 6160.5236220 263.7795276 3751.0606299 6160.5236220 47.2440945 3751.0606299 6171.2952756 263.7795276 3732.4023622 6171.2952756 47.2440945 3732.4023622 6171.2952756 263.7795276 3732.4023622 6171.2952756 47.2440945 3732.4023622 6156.0236220 47.2440945 3754.2102362 6156.0236220 263.7795276 3754.2102362 6156.0236220 47.2440945 3754.2102362 6156.0236220 263.7795276 3754.2102362 6171.7716535 47.2440945 3726.9330709 6171.7716535 263.7795276 3726.9330709 6171.7716535 263.7795276 3726.9330709 6171.7716535 47.2440945 3726.9330709 6151.0472441 47.2440945 3756.5303150 6151.0472441 263.7795276 3756.5303150 6151.0472441 47.2440945 3756.5303150 6151.0472441 263.7795276 3756.5303150 6171.2952756 47.2440945 3721.4637795 6171.2952756 263.7795276 3721.4637795 6171.2952756 263.7795276 3721.4637795 6171.2952756 47.2440945 3721.4637795 6145.7480315 47.2440945 3757.9507874 6145.7480315 263.7795276 3757.9507874 6145.7480315 47.2440945 3757.9507874 6145.7480315 263.7795276 3757.9507874 6169.8740157 263.7795276 3716.1610236 6169.8740157 47.2440945 3716.1610236 6169.8740157 263.7795276 3716.1610236 6169.8740157 47.2440945 3716.1610236 6140.2755906 47.2440945 3758.4295276 6140.2755906 263.7795276 3758.4295276 6140.2755906 47.2440945 3758.4295276 6140.2755906 263.7795276 3758.4295276 6167.5551181 47.2440945 3711.1850394 6167.5551181 263.7795276 3711.1850394 6167.5551181 263.7795276 3711.1850394 6167.5551181 47.2440945 3711.1850394 6134.8070866 47.2440945 3757.9507874 6134.8070866 263.7795276 3757.9507874 6134.8070866 47.2440945 3757.9507874 6134.8070866 263.7795276 3757.9507874 6164.4055118 47.2440945 3706.6877953 6164.4055118 263.7795276 3706.6877953 6164.4055118 263.7795276 3706.6877953 6164.4055118 47.2440945 3706.6877953 6129.5039370 47.2440945 3756.5303150 6129.5039370 263.7795276 3756.5303150 6129.5039370 47.2440945 3756.5303150 6129.5039370 263.7795276 3756.5303150 6160.5236220 263.7795276 3702.8059055 6160.5236220 47.2440945 3702.8059055 6160.5236220 263.7795276 3702.8059055 6160.5236220 47.2440945 3702.8059055 6124.5275591 47.2440945 3754.2094488 6124.5275591 263.7795276 3754.2094488 6124.5275591 47.2440945 3754.2094488 6124.5275591 263.7795276 3754.2094488 6156.0236220 263.7795276 3699.6570866 6156.0236220 47.2440945 3699.6570866 6156.0236220 263.7795276 3699.6570866 6156.0236220 47.2440945 3699.6570866 6120.0314961 47.2440945 3751.0606299 6120.0314961 263.7795276 3751.0606299 6120.0314961 47.2440945 3751.0606299 6120.0314961 263.7795276 3751.0606299 6151.0472441 263.7795276 3697.3370079 6151.0472441 47.2440945 3697.3370079 6151.0472441 263.7795276 3697.3370079 6151.0472441 47.2440945 3697.3370079 6116.1496063 263.7795276 3747.1783465 6116.1496063 47.2440945 3747.1783465 6116.1496063 263.7795276 3747.1783465 6116.1496063 47.2440945 3747.1783465 6145.7480315 263.7795276 3695.9157480 6145.7480315 47.2440945 3695.9157480 6145.7480315 263.7795276 3695.9157480 6145.7480315 47.2440945 3695.9157480 6113.0000000 263.7795276 3742.6811024 6113.0000000 47.2440945 3742.6811024 6113.0000000 263.7795276 3742.6811024 6113.0000000 47.2440945 3742.6811024 6140.2755906 263.7795276 3695.4377953 6140.2755906 47.2440945 3695.4377953 6140.2755906 263.7795276 3695.4377953 6140.2755906 47.2440945 3695.4377953 6110.6811024 263.7795276 3737.7055118 6110.6811024 47.2440945 3737.7055118 6110.6811024 263.7795276 3737.7055118 6110.6811024 47.2440945 3737.7055118 6134.8070866 263.7795276 3695.9157480 6134.8070866 47.2440945 3695.9157480 6134.8070866 263.7795276 3695.9157480 6134.8070866 47.2440945 3695.9157480 6109.2598425 263.7795276 3732.4023622 6109.2598425 47.2440945 3732.4023622 6109.2598425 263.7795276 3732.4023622 6109.2598425 47.2440945 3732.4023622 6129.5039370 263.7795276 3697.3370079 6129.5039370 47.2440945 3697.3370079 6129.5039370 263.7795276 3697.3370079 6129.5039370 47.2440945 3697.3370079 6108.7795276 47.2440945 3726.9330709 6108.7795276 263.7795276 3726.9330709 6108.7795276 263.7795276 3726.9330709 6108.7795276 47.2440945 3726.9330709 6124.5275591 263.7795276 3699.6570866 6124.5275591 47.2440945 3699.6570866 6124.5275591 263.7795276 3699.6570866 6124.5275591 47.2440945 3699.6570866 6109.2598425 47.2440945 3721.4637795 6109.2598425 263.7795276 3721.4637795 6109.2598425 263.7795276 3721.4637795 6109.2598425 47.2440945 3721.4637795 6120.0314961 263.7795276 3702.8059055 6120.0314961 47.2440945 3702.8059055 6120.0314961 263.7795276 3702.8059055 6120.0314961 47.2440945 3702.8059055 6110.6811024 263.7795276 3716.1610236 6110.6811024 47.2440945 3716.1610236 6110.6811024 263.7795276 3716.1610236 6110.6811024 47.2440945 3716.1610236 6116.1496063 47.2440945 3706.6877953 6116.1496063 263.7795276 3706.6877953 6116.1496063 263.7795276 3706.6877953 6116.1496063 47.2440945 3706.6877953 6113.0000000 263.7795276 3711.1850394 6113.0000000 47.2440945 3711.1850394 6113.0000000 263.7795276 3711.1850394 6113.0000000 47.2440945 3711.1850394 6115.8346457 263.7795276 3707.1389764 6115.8346457 47.2440945 3707.1389764 6115.8346457 263.7795276 3707.1389764 6115.8346457 47.2440945 3707.1389764 - - - - - - - - - - -0.7660319 0.0000000 -0.6428026 -0.8660548 -0.0000000 -0.4999491 -0.8660548 -0.0000000 -0.4999491 -0.7660319 0.0000000 -0.6428026 0.7660319 -0.0000000 0.6428026 0.7660319 -0.0000000 0.6428026 0.8660548 0.0000000 0.4999491 0.8660548 0.0000000 0.4999491 -0.9397195 -0.0000000 -0.3419463 -0.9397195 -0.0000000 -0.3419463 0.9397195 0.0000000 0.3419463 0.9397195 0.0000000 0.3419463 -0.6427312 0.0000000 -0.7660918 -0.6427312 0.0000000 -0.7660918 0.6427312 -0.0000000 0.7660918 0.6427312 -0.0000000 0.7660918 -0.9848368 0.0000000 -0.1734832 -0.9848368 0.0000000 -0.1734832 0.9848368 -0.0000000 0.1734832 0.9848368 -0.0000000 0.1734832 -0.4998825 -0.0000000 -0.8660932 -0.4998825 -0.0000000 -0.8660932 0.4998825 0.0000000 0.8660932 0.4998825 0.0000000 0.8660932 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.3420314 -0.0000000 -0.9396885 -0.3420314 -0.0000000 -0.9396885 0.3420314 0.0000000 0.9396885 0.3420314 0.0000000 0.9396885 -0.9848352 0.0000000 0.1734923 -0.9848352 0.0000000 0.1734923 0.9848352 -0.0000000 -0.1734923 0.9848352 -0.0000000 -0.1734923 -0.1736928 0.0000000 -0.9847999 -0.1736928 0.0000000 -0.9847999 0.1736928 -0.0000000 0.9847999 0.1736928 -0.0000000 0.9847999 -0.9397216 0.0000000 0.3419406 -0.9397216 0.0000000 0.3419406 0.9397216 -0.0000000 -0.3419406 0.9397216 -0.0000000 -0.3419406 0.0000313 -0.0000000 -1.0000000 0.0000313 -0.0000000 -1.0000000 -0.0000313 0.0000000 1.0000000 -0.0000313 0.0000000 1.0000000 -0.8660625 0.0000000 0.4999358 -0.8660625 0.0000000 0.4999358 0.8660625 -0.0000000 -0.4999358 0.8660625 -0.0000000 -0.4999358 0.1736322 -0.0000000 -0.9848106 0.1736322 -0.0000000 -0.9848106 -0.1736322 0.0000000 0.9848106 -0.1736322 0.0000000 0.9848106 -0.7660156 0.0000000 0.6428220 -0.7660156 0.0000000 0.6428220 0.7660156 -0.0000000 -0.6428220 0.7660156 -0.0000000 -0.6428220 0.3420052 -0.0000000 -0.9396980 0.3420052 -0.0000000 -0.9396980 -0.3420052 0.0000000 0.9396980 -0.3420052 0.0000000 0.9396980 -0.6426668 0.0000000 0.7661458 -0.6426668 0.0000000 0.7661458 0.6426668 -0.0000000 -0.7661458 0.6426668 -0.0000000 -0.7661458 0.5000660 0.0000000 -0.8659873 0.5000660 0.0000000 -0.8659873 -0.5000660 -0.0000000 0.8659873 -0.5000660 -0.0000000 0.8659873 -0.4998316 0.0000000 0.8661226 -0.4998316 0.0000000 0.8661226 0.4998316 -0.0000000 -0.8661226 0.4998316 -0.0000000 -0.8661226 0.6428437 0.0000000 -0.7659974 0.6428437 0.0000000 -0.7659974 -0.6428437 -0.0000000 0.7659974 -0.6428437 -0.0000000 0.7659974 -0.3420965 0.0000000 0.9396648 -0.3420965 0.0000000 0.9396648 0.3420965 -0.0000000 -0.9396648 0.3420965 -0.0000000 -0.9396648 0.7660319 0.0000000 -0.6428026 0.7660319 0.0000000 -0.6428026 -0.7660319 -0.0000000 0.6428026 -0.7660319 -0.0000000 0.6428026 -0.1736908 0.0000000 0.9848002 -0.1736908 0.0000000 0.9848002 0.1736908 -0.0000000 -0.9848002 0.1736908 -0.0000000 -0.9848002 0.8660549 0.0000000 -0.4999489 0.8660549 0.0000000 -0.4999489 -0.8660549 -0.0000000 0.4999489 -0.8660549 -0.0000000 0.4999489 0.0000312 -0.0000000 1.0000000 0.0000312 -0.0000000 1.0000000 -0.0000312 0.0000000 -1.0000000 -0.0000312 0.0000000 -1.0000000 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 -0.9397196 -0.0000000 0.3419461 -0.9397196 -0.0000000 0.3419461 0.1736300 -0.0000000 0.9848109 0.1736300 -0.0000000 0.9848109 -0.1736300 0.0000000 -0.9848109 -0.1736300 0.0000000 -0.9848109 0.9847748 0.0000000 -0.1738349 0.9847748 0.0000000 -0.1738349 -0.9847748 -0.0000000 0.1738349 -0.9847748 -0.0000000 0.1738349 0.3420093 -0.0000000 0.9396966 0.3420093 -0.0000000 0.9396966 -0.3420093 0.0000000 -0.9396966 -0.3420093 0.0000000 -0.9396966 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.5000097 0.0000000 0.8660198 0.5000097 0.0000000 0.8660198 -0.5000097 -0.0000000 -0.8660198 -0.5000097 -0.0000000 -0.8660198 0.9847732 -0.0000000 0.1738441 0.9847732 -0.0000000 0.1738441 -0.9847732 0.0000000 -0.1738441 -0.9847732 0.0000000 -0.1738441 0.6428243 0.0000000 0.7660137 0.6428243 0.0000000 0.7660137 -0.6428243 -0.0000000 -0.7660137 -0.6428243 -0.0000000 -0.7660137 0.9397216 -0.0000000 0.3419406 0.9397216 -0.0000000 0.3419406 -0.9397216 0.0000000 -0.3419406 -0.9397216 0.0000000 -0.3419406 0.7665035 0.0000000 0.6422402 0.7665035 0.0000000 0.6422402 -0.7665035 -0.0000000 -0.6422402 -0.7665035 -0.0000000 -0.6422402 0.8660202 -0.0000000 0.5000091 0.8660202 -0.0000000 0.5000091 -0.8660202 0.0000000 -0.5000091 -0.8660202 0.0000000 -0.5000091 0.8194874 -0.0000000 0.5730972 0.8194874 -0.0000000 0.5730972 -0.8194874 0.0000000 -0.5730972 -0.8194874 0.0000000 -0.5730972 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 8 2 8 1 9 12 0 13 0 12 3 8 16 17 16 8 9 12 20 21 20 12 13 16 24 17 24 16 25 21 28 29 28 21 20 25 32 24 32 25 33 29 36 37 36 29 28 32 40 41 40 32 33 37 44 45 44 37 36 40 48 41 48 40 49 45 52 53 52 45 44 49 56 48 56 49 57 53 60 61 60 53 52 56 64 65 64 56 57 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 84 76 85 76 84 77 81 88 89 88 81 80 92 85 93 85 92 84 89 96 97 96 89 88 100 93 101 93 100 92 97 104 105 104 97 96 108 101 109 101 108 100 105 112 113 112 105 104 116 108 109 108 116 117 113 120 121 120 113 112 124 117 116 117 124 125 121 128 129 128 121 120 132 124 133 124 132 125 128 136 129 136 128 137 140 133 141 133 140 132 136 144 145 144 136 137 144 141 145 141 144 140

-
- - -

4 5 6 7 6 5 10 6 11 7 11 6 4 14 5 15 5 14 10 11 18 19 18 11 15 14 22 23 22 14 26 18 27 19 27 18 22 23 30 31 30 23 34 26 35 27 35 26 30 31 38 39 38 31 34 35 42 43 42 35 38 39 46 47 46 39 50 42 51 43 51 42 46 47 54 55 54 47 58 50 59 51 59 50 54 55 62 63 62 55 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 70 71 78 79 78 71 74 75 82 83 82 75 79 86 78 87 78 86 82 83 90 91 90 83 86 94 87 95 87 94 90 91 98 99 98 91 94 102 95 103 95 102 98 99 106 107 106 99 102 110 103 111 103 110 106 107 114 115 114 107 118 119 110 111 110 119 114 115 122 123 122 115 126 127 118 119 118 127 122 123 130 131 130 123 126 134 127 135 127 134 138 130 139 131 139 130 134 142 135 143 135 142 138 139 146 147 146 139 142 146 143 147 143 146

-
-
-
- - - - 6325.0354331 47.2440945 3469.9177165 6327.3543307 263.7795276 3464.9413386 6327.3543307 47.2440945 3464.9413386 6325.0354331 263.7795276 3469.9177165 6325.0354331 263.7795276 3469.9177165 6325.0354331 47.2440945 3469.9177165 6327.3543307 263.7795276 3464.9413386 6327.3543307 47.2440945 3464.9413386 6328.7755906 47.2440945 3459.6385827 6328.7755906 263.7795276 3459.6385827 6328.7755906 263.7795276 3459.6385827 6328.7755906 47.2440945 3459.6385827 6321.8858268 263.7795276 3474.4145669 6321.8858268 47.2440945 3474.4145669 6321.8858268 263.7795276 3474.4145669 6321.8858268 47.2440945 3474.4145669 6329.2519685 263.7795276 3454.1692913 6329.2519685 47.2440945 3454.1692913 6329.2519685 263.7795276 3454.1692913 6329.2519685 47.2440945 3454.1692913 6318.0039370 263.7795276 3478.2964567 6318.0039370 47.2440945 3478.2964567 6318.0039370 263.7795276 3478.2964567 6318.0039370 47.2440945 3478.2964567 6328.7755906 47.2440945 3448.7000000 6328.7755906 263.7795276 3448.7000000 6328.7755906 263.7795276 3448.7000000 6328.7755906 47.2440945 3448.7000000 6313.5039370 47.2440945 3481.4456693 6313.5039370 263.7795276 3481.4456693 6313.5039370 47.2440945 3481.4456693 6313.5039370 263.7795276 3481.4456693 6327.3543307 47.2440945 3443.3968504 6327.3543307 263.7795276 3443.3968504 6327.3543307 263.7795276 3443.3968504 6327.3543307 47.2440945 3443.3968504 6308.5275591 47.2440945 3483.7665354 6308.5275591 263.7795276 3483.7665354 6308.5275591 47.2440945 3483.7665354 6308.5275591 263.7795276 3483.7665354 6325.0354331 263.7795276 3438.4212598 6325.0354331 47.2440945 3438.4212598 6325.0354331 263.7795276 3438.4212598 6325.0354331 47.2440945 3438.4212598 6303.2283465 47.2440945 3485.1870079 6303.2283465 263.7795276 3485.1870079 6303.2283465 47.2440945 3485.1870079 6303.2283465 263.7795276 3485.1870079 6321.8858268 47.2440945 3433.9236220 6321.8858268 263.7795276 3433.9236220 6321.8858268 263.7795276 3433.9236220 6321.8858268 47.2440945 3433.9236220 6297.7559055 47.2440945 3485.6653543 6297.7559055 263.7795276 3485.6653543 6297.7559055 47.2440945 3485.6653543 6297.7559055 263.7795276 3485.6653543 6318.0039370 47.2440945 3430.0417323 6318.0039370 263.7795276 3430.0417323 6318.0039370 263.7795276 3430.0417323 6318.0039370 47.2440945 3430.0417323 6292.2874016 47.2440945 3485.1870079 6292.2874016 263.7795276 3485.1870079 6292.2874016 47.2440945 3485.1870079 6292.2874016 263.7795276 3485.1870079 6313.5039370 263.7795276 3426.8933071 6313.5039370 47.2440945 3426.8933071 6313.5039370 263.7795276 3426.8933071 6313.5039370 47.2440945 3426.8933071 6286.9842520 47.2440945 3483.7665354 6286.9842520 263.7795276 3483.7665354 6286.9842520 47.2440945 3483.7665354 6286.9842520 263.7795276 3483.7665354 6308.5275591 263.7795276 3424.5732283 6308.5275591 47.2440945 3424.5732283 6308.5275591 263.7795276 3424.5732283 6308.5275591 47.2440945 3424.5732283 6282.0078740 47.2440945 3481.4456693 6282.0078740 263.7795276 3481.4456693 6282.0078740 47.2440945 3481.4456693 6282.0078740 263.7795276 3481.4456693 6303.2283465 263.7795276 3423.1515748 6303.2283465 47.2440945 3423.1515748 6303.2283465 263.7795276 3423.1515748 6303.2283465 47.2440945 3423.1515748 6277.5118110 47.2440945 3478.2964567 6277.5118110 263.7795276 3478.2964567 6277.5118110 47.2440945 3478.2964567 6277.5118110 263.7795276 3478.2964567 6297.7559055 263.7795276 3422.6732283 6297.7559055 47.2440945 3422.6732283 6297.7559055 263.7795276 3422.6732283 6297.7559055 47.2440945 3422.6732283 6273.6299213 47.2440945 3474.4145669 6273.6299213 263.7795276 3474.4145669 6273.6299213 47.2440945 3474.4145669 6273.6299213 263.7795276 3474.4145669 6292.2874016 263.7795276 3423.1515748 6292.2874016 47.2440945 3423.1515748 6292.2874016 263.7795276 3423.1515748 6292.2874016 47.2440945 3423.1515748 6270.4803150 263.7795276 3469.9169291 6270.4803150 47.2440945 3469.9169291 6270.4803150 263.7795276 3469.9169291 6270.4803150 47.2440945 3469.9169291 6286.9842520 263.7795276 3424.5732283 6286.9842520 47.2440945 3424.5732283 6286.9842520 263.7795276 3424.5732283 6286.9842520 47.2440945 3424.5732283 6268.1614173 47.2440945 3464.9413386 6268.1614173 263.7795276 3464.9413386 6268.1614173 263.7795276 3464.9413386 6268.1614173 47.2440945 3464.9413386 6282.0078740 263.7795276 3426.8933071 6282.0078740 47.2440945 3426.8933071 6282.0078740 263.7795276 3426.8933071 6282.0078740 47.2440945 3426.8933071 6266.7401575 47.2440945 3459.6385827 6266.7401575 263.7795276 3459.6385827 6266.7401575 263.7795276 3459.6385827 6266.7401575 47.2440945 3459.6385827 6277.5118110 263.7795276 3430.0417323 6277.5118110 47.2440945 3430.0417323 6277.5118110 263.7795276 3430.0417323 6277.5118110 47.2440945 3430.0417323 6266.2598425 263.7795276 3454.1692913 6266.2598425 47.2440945 3454.1692913 6266.2598425 263.7795276 3454.1692913 6266.2598425 47.2440945 3454.1692913 6273.6299213 263.7795276 3433.9236220 6273.6299213 47.2440945 3433.9236220 6273.6299213 263.7795276 3433.9236220 6273.6299213 47.2440945 3433.9236220 6266.7401575 263.7795276 3448.7000000 6266.7401575 47.2440945 3448.7000000 6266.7401575 263.7795276 3448.7000000 6266.7401575 47.2440945 3448.7000000 6270.4803150 263.7795276 3438.4212598 6270.4803150 47.2440945 3438.4212598 6270.4803150 263.7795276 3438.4212598 6270.4803150 47.2440945 3438.4212598 6268.1614173 47.2440945 3443.3968504 6268.1614173 263.7795276 3443.3968504 6268.1614173 263.7795276 3443.3968504 6268.1614173 47.2440945 3443.3968504 - - - - - - - - - - -0.8660597 0.0000000 -0.4999405 -0.9397267 0.0000000 -0.3419264 -0.9397267 0.0000000 -0.3419264 -0.8660597 0.0000000 -0.4999405 0.8660597 -0.0000000 0.4999405 0.8660597 -0.0000000 0.4999405 0.9397267 -0.0000000 0.3419264 0.9397267 -0.0000000 0.3419264 -0.9848352 0.0000000 -0.1734923 -0.9848352 0.0000000 -0.1734923 0.9848352 -0.0000000 0.1734923 0.9848352 -0.0000000 0.1734923 -0.7660024 0.0000000 -0.6428378 -0.7660024 0.0000000 -0.6428378 0.7660024 -0.0000000 0.6428378 0.7660024 -0.0000000 0.6428378 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 -0.6426893 0.0000000 -0.7661269 -0.6426893 0.0000000 -0.7661269 0.6426893 -0.0000000 0.7661269 0.6426893 -0.0000000 0.7661269 -0.9848368 0.0000000 0.1734832 -0.9848368 0.0000000 0.1734832 0.9848368 -0.0000000 -0.1734832 0.9848368 -0.0000000 -0.1734832 -0.4999133 0.0000000 -0.8660754 -0.4999133 0.0000000 -0.8660754 0.4999133 -0.0000000 0.8660754 0.4999133 -0.0000000 0.8660754 -0.9397196 0.0000000 0.3419461 -0.9397196 0.0000000 0.3419461 0.9397196 -0.0000000 -0.3419461 0.9397196 -0.0000000 -0.3419461 -0.3420925 0.0000000 -0.9396663 -0.3420925 0.0000000 -0.9396663 0.3420925 -0.0000000 0.9396663 0.3420925 -0.0000000 0.9396663 -0.8660652 0.0000000 0.4999311 -0.8660652 0.0000000 0.4999311 0.8660652 -0.0000000 -0.4999311 0.8660652 -0.0000000 -0.4999311 -0.1736577 0.0000000 -0.9848061 -0.1736577 0.0000000 -0.9848061 0.1736577 -0.0000000 0.9848061 0.1736577 -0.0000000 0.9848061 -0.7660288 0.0000000 0.6428063 -0.7660288 0.0000000 0.6428063 0.7660288 -0.0000000 -0.6428063 0.7660288 -0.0000000 -0.6428063 0.0000312 -0.0000000 -1.0000000 0.0000312 -0.0000000 -1.0000000 -0.0000312 0.0000000 1.0000000 -0.0000312 0.0000000 1.0000000 -0.6426443 -0.0000000 0.7661647 -0.6426443 -0.0000000 0.7661647 0.6426443 0.0000000 -0.7661647 0.6426443 0.0000000 -0.7661647 0.1735970 -0.0000000 -0.9848168 0.1735970 -0.0000000 -0.9848168 -0.1735970 0.0000000 0.9848168 -0.1735970 0.0000000 0.9848168 -0.4998062 -0.0000000 0.8661373 -0.4998062 -0.0000000 0.8661373 0.4998062 0.0000000 -0.8661373 0.4998062 0.0000000 -0.8661373 0.3420052 -0.0000000 -0.9396980 0.3420052 -0.0000000 -0.9396980 -0.3420052 0.0000000 0.9396980 -0.3420052 0.0000000 0.9396980 -0.3421291 0.0000000 0.9396530 -0.3421291 0.0000000 0.9396530 0.3421291 -0.0000000 -0.9396530 0.3421291 -0.0000000 -0.9396530 0.5000914 0.0000000 -0.8659726 0.5000914 0.0000000 -0.8659726 -0.5000914 -0.0000000 0.8659726 -0.5000914 -0.0000000 0.8659726 -0.1737601 0.0000000 0.9847880 -0.1737601 0.0000000 0.9847880 0.1737601 -0.0000000 -0.9847880 0.1737601 -0.0000000 -0.9847880 0.6428468 0.0000000 -0.7659948 0.6428468 0.0000000 -0.7659948 -0.6428468 -0.0000000 0.7659948 -0.6428468 -0.0000000 0.7659948 0.0000312 -0.0000000 1.0000000 0.0000312 -0.0000000 1.0000000 -0.0000312 0.0000000 -1.0000000 -0.0000312 0.0000000 -1.0000000 0.7660288 0.0000000 -0.6428063 0.7660288 0.0000000 -0.6428063 -0.7660288 -0.0000000 0.6428063 -0.7660288 -0.0000000 0.6428063 0.1736993 -0.0000000 0.9847987 0.1736993 -0.0000000 0.9847987 -0.1736993 0.0000000 -0.9847987 -0.1736993 0.0000000 -0.9847987 0.8660652 0.0000000 -0.4999311 0.8660652 0.0000000 -0.4999311 -0.8660652 -0.0000000 0.4999311 -0.8660652 -0.0000000 0.4999311 0.3420418 -0.0000000 0.9396847 0.3420418 -0.0000000 0.9396847 -0.3420418 0.0000000 -0.9396847 -0.3420418 0.0000000 -0.9396847 0.9397164 0.0000000 -0.3419548 0.9397164 0.0000000 -0.3419548 -0.9397164 -0.0000000 0.3419548 -0.9397164 -0.0000000 0.3419548 0.4999843 0.0000000 0.8660345 0.4999843 0.0000000 0.8660345 -0.4999843 -0.0000000 -0.8660345 -0.4999843 -0.0000000 -0.8660345 0.9847732 0.0000000 -0.1738441 0.9847732 0.0000000 -0.1738441 -0.9847732 -0.0000000 0.1738441 -0.9847732 -0.0000000 0.1738441 0.6428018 0.0000000 0.7660325 0.6428018 0.0000000 0.7660325 -0.6428018 -0.0000000 -0.7660325 -0.6428018 -0.0000000 -0.7660325 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 -0.0000000 0.7660288 0.0000000 0.6428063 0.7660288 0.0000000 0.6428063 -0.7660288 -0.0000000 -0.6428063 -0.7660288 -0.0000000 -0.6428063 0.9847748 0.0000000 0.1738349 0.9847748 0.0000000 0.1738349 -0.9847748 -0.0000000 -0.1738349 -0.9847748 -0.0000000 -0.1738349 0.8660652 0.0000000 0.4999311 0.8660652 0.0000000 0.4999311 -0.8660652 -0.0000000 -0.4999311 -0.8660652 -0.0000000 -0.4999311 0.9397196 0.0000000 0.3419461 0.9397196 0.0000000 0.3419461 -0.9397196 -0.0000000 -0.3419461 -0.9397196 -0.0000000 -0.3419461 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 8 2 8 1 9 12 0 13 0 12 3 8 16 17 16 8 9 20 13 21 13 20 12 16 24 17 24 16 25 20 28 29 28 20 21 25 32 24 32 25 33 29 36 37 36 29 28 32 40 41 40 32 33 37 44 45 44 37 36 40 48 41 48 40 49 45 52 53 52 45 44 49 56 48 56 49 57 53 60 61 60 53 52 56 64 65 64 56 57 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 85 92 93 92 85 84 89 96 97 96 89 88 100 92 101 92 100 93 97 104 105 104 97 96 108 100 101 100 108 109 105 112 113 112 105 104 116 109 108 109 116 117 113 120 121 120 113 112 124 116 125 116 124 117 121 128 129 128 121 120 132 125 133 125 132 124 129 136 137 136 129 128 140 132 133 132 140 141 136 140 137 140 136 141

-
- - -

4 5 6 7 6 5 10 6 11 7 11 6 4 14 5 15 5 14 10 11 18 19 18 11 14 22 15 23 15 22 26 18 27 19 27 18 23 22 30 31 30 22 34 26 35 27 35 26 30 31 38 39 38 31 34 35 42 43 42 35 38 39 46 47 46 39 50 42 51 43 51 42 46 47 54 55 54 47 58 50 59 51 59 50 54 55 62 63 62 55 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 70 71 78 79 78 71 74 75 82 83 82 75 78 79 86 87 86 79 82 83 90 91 90 83 86 87 94 95 94 87 90 91 98 99 98 91 95 102 94 103 94 102 98 99 106 107 106 99 110 111 102 103 102 111 106 107 114 115 114 107 118 119 110 111 110 119 114 115 122 123 122 115 118 126 119 127 119 126 122 123 130 131 130 123 126 134 127 135 127 134 130 131 138 139 138 131 142 143 134 135 134 143 142 138 143 139 143 138

-
-
-
- - - - 4177.0196850 263.7795276 2229.7594488 4179.3385827 47.2440945 2224.7838583 4177.0196850 47.2440945 2229.7594488 4179.3385827 263.7795276 2224.7838583 4179.3385827 263.7795276 2224.7838583 4177.0196850 263.7795276 2229.7594488 4179.3385827 47.2440945 2224.7838583 4177.0196850 47.2440945 2229.7594488 4180.7598425 263.7795276 2219.4811024 4180.7598425 47.2440945 2219.4811024 4180.7598425 263.7795276 2219.4811024 4180.7598425 47.2440945 2219.4811024 4173.8700787 47.2440945 2234.2570866 4173.8700787 263.7795276 2234.2570866 4173.8700787 263.7795276 2234.2570866 4173.8700787 47.2440945 2234.2570866 4181.2362205 47.2440945 2214.0118110 4181.2362205 263.7795276 2214.0118110 4181.2362205 263.7795276 2214.0118110 4181.2362205 47.2440945 2214.0118110 4169.9881890 263.7795276 2238.1393701 4169.9881890 47.2440945 2238.1393701 4169.9881890 263.7795276 2238.1393701 4169.9881890 47.2440945 2238.1393701 4180.7598425 47.2440945 2208.5425197 4180.7598425 263.7795276 2208.5425197 4180.7598425 263.7795276 2208.5425197 4180.7598425 47.2440945 2208.5425197 4165.4881890 47.2440945 2241.2881890 4165.4881890 263.7795276 2241.2881890 4165.4881890 47.2440945 2241.2881890 4165.4881890 263.7795276 2241.2881890 4179.3385827 263.7795276 2203.2393701 4179.3385827 47.2440945 2203.2393701 4179.3385827 263.7795276 2203.2393701 4179.3385827 47.2440945 2203.2393701 4160.5157480 47.2440945 2243.6086614 4160.5157480 263.7795276 2243.6086614 4160.5157480 47.2440945 2243.6086614 4160.5157480 263.7795276 2243.6086614 4177.0196850 47.2440945 2198.2637795 4177.0196850 263.7795276 2198.2637795 4177.0196850 263.7795276 2198.2637795 4177.0196850 47.2440945 2198.2637795 4155.2125984 47.2440945 2245.0291339 4155.2125984 263.7795276 2245.0291339 4155.2125984 47.2440945 2245.0291339 4155.2125984 263.7795276 2245.0291339 4173.8700787 263.7795276 2193.7665354 4173.8700787 47.2440945 2193.7665354 4173.8700787 263.7795276 2193.7665354 4173.8700787 47.2440945 2193.7665354 4149.7401575 47.2440945 2245.5078740 4149.7401575 263.7795276 2245.5078740 4149.7401575 47.2440945 2245.5078740 4149.7401575 263.7795276 2245.5078740 4169.9881890 263.7795276 2189.8846457 4169.9881890 47.2440945 2189.8846457 4169.9881890 263.7795276 2189.8846457 4169.9881890 47.2440945 2189.8846457 4144.2716535 47.2440945 2245.0291339 4144.2716535 263.7795276 2245.0291339 4144.2716535 47.2440945 2245.0291339 4144.2716535 263.7795276 2245.0291339 4165.4881890 263.7795276 2186.7354331 4165.4881890 47.2440945 2186.7354331 4165.4881890 263.7795276 2186.7354331 4165.4881890 47.2440945 2186.7354331 4138.9685039 47.2440945 2243.6086614 4138.9685039 263.7795276 2243.6086614 4138.9685039 47.2440945 2243.6086614 4138.9685039 263.7795276 2243.6086614 4160.5118110 263.7795276 2184.4153543 4160.5118110 47.2440945 2184.4153543 4160.5118110 263.7795276 2184.4153543 4160.5118110 47.2440945 2184.4153543 4133.9921260 47.2440945 2241.2881890 4133.9921260 263.7795276 2241.2881890 4133.9921260 47.2440945 2241.2881890 4133.9921260 263.7795276 2241.2881890 4155.2125984 263.7795276 2182.9940945 4155.2125984 47.2440945 2182.9940945 4155.2125984 263.7795276 2182.9940945 4155.2125984 47.2440945 2182.9940945 4129.4960630 47.2440945 2238.1393701 4129.4960630 263.7795276 2238.1393701 4129.4960630 47.2440945 2238.1393701 4129.4960630 263.7795276 2238.1393701 4149.7401575 263.7795276 2182.5157480 4149.7401575 47.2440945 2182.5157480 4149.7401575 263.7795276 2182.5157480 4149.7401575 47.2440945 2182.5157480 4125.6141732 47.2440945 2234.2570866 4125.6141732 263.7795276 2234.2570866 4125.6141732 263.7795276 2234.2570866 4125.6141732 47.2440945 2234.2570866 4144.2716535 263.7795276 2182.9940945 4144.2716535 47.2440945 2182.9940945 4144.2716535 263.7795276 2182.9940945 4144.2716535 47.2440945 2182.9940945 4122.4645669 263.7795276 2229.7598425 4122.4645669 47.2440945 2229.7598425 4122.4645669 263.7795276 2229.7598425 4122.4645669 47.2440945 2229.7598425 4138.9685039 263.7795276 2184.4153543 4138.9685039 47.2440945 2184.4153543 4138.9685039 263.7795276 2184.4153543 4138.9685039 47.2440945 2184.4153543 4120.1456693 263.7795276 2224.7838583 4120.1456693 47.2440945 2224.7838583 4120.1456693 263.7795276 2224.7838583 4120.1456693 47.2440945 2224.7838583 4133.9921260 263.7795276 2186.7354331 4133.9921260 47.2440945 2186.7354331 4133.9921260 263.7795276 2186.7354331 4133.9921260 47.2440945 2186.7354331 4118.7244094 263.7795276 2219.4811024 4118.7244094 47.2440945 2219.4811024 4118.7244094 263.7795276 2219.4811024 4118.7244094 47.2440945 2219.4811024 4129.4960630 263.7795276 2189.8846457 4129.4960630 47.2440945 2189.8846457 4129.4960630 263.7795276 2189.8846457 4129.4960630 47.2440945 2189.8846457 4118.2440945 47.2440945 2214.0118110 4118.2440945 263.7795276 2214.0118110 4118.2440945 263.7795276 2214.0118110 4118.2440945 47.2440945 2214.0118110 4125.6141732 263.7795276 2193.7665354 4125.6141732 47.2440945 2193.7665354 4125.6141732 263.7795276 2193.7665354 4125.6141732 47.2440945 2193.7665354 4118.7244094 47.2440945 2208.5425197 4118.7244094 263.7795276 2208.5425197 4118.7244094 263.7795276 2208.5425197 4118.7244094 47.2440945 2208.5425197 4122.4645669 47.2440945 2198.2637795 4122.4645669 263.7795276 2198.2637795 4122.4645669 263.7795276 2198.2637795 4122.4645669 47.2440945 2198.2637795 4120.1456693 263.7795276 2203.2393701 4120.1456693 47.2440945 2203.2393701 4120.1456693 263.7795276 2203.2393701 4120.1456693 47.2440945 2203.2393701 - - - - - - - - - - -0.8660652 0.0000000 -0.4999311 -0.9397164 0.0000000 -0.3419548 -0.8660652 0.0000000 -0.4999311 -0.9397164 0.0000000 -0.3419548 0.9397164 -0.0000000 0.3419548 0.8660652 -0.0000000 0.4999311 0.9397164 -0.0000000 0.3419548 0.8660652 -0.0000000 0.4999311 -0.9848352 0.0000000 -0.1734923 -0.9848352 0.0000000 -0.1734923 0.9848352 -0.0000000 0.1734923 0.9848352 -0.0000000 0.1734923 -0.7660451 0.0000000 -0.6427868 -0.7660451 0.0000000 -0.6427868 0.7660451 -0.0000000 0.6427868 0.7660451 -0.0000000 0.6427868 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.6426862 0.0000000 -0.7661295 -0.6426862 0.0000000 -0.7661295 0.6426862 -0.0000000 0.7661295 0.6426862 -0.0000000 0.7661295 -0.9848368 0.0000000 0.1734832 -0.9848368 0.0000000 0.1734832 0.9848368 -0.0000000 -0.1734832 0.9848368 -0.0000000 -0.1734832 -0.4999911 0.0000000 -0.8660306 -0.4999911 0.0000000 -0.8660306 0.4999911 -0.0000000 0.8660306 0.4999911 -0.0000000 0.8660306 -0.9397196 0.0000000 0.3419461 -0.9397196 0.0000000 0.3419461 0.9397196 -0.0000000 -0.3419461 0.9397196 -0.0000000 -0.3419461 -0.3421172 0.0000000 -0.9396573 -0.3421172 0.0000000 -0.9396573 0.3421172 -0.0000000 0.9396573 0.3421172 -0.0000000 0.9396573 -0.8660549 0.0000000 0.4999489 -0.8660549 0.0000000 0.4999489 0.8660549 -0.0000000 -0.4999489 0.8660549 -0.0000000 -0.4999489 -0.1736014 0.0000000 -0.9848160 -0.1736014 0.0000000 -0.9848160 0.1736014 -0.0000000 0.9848160 0.1736014 -0.0000000 0.9848160 -0.7660156 0.0000000 0.6428220 -0.7660156 0.0000000 0.6428220 0.7660156 -0.0000000 -0.6428220 0.7660156 -0.0000000 -0.6428220 0.0000313 -0.0000000 -1.0000000 0.0000313 -0.0000000 -1.0000000 -0.0000313 0.0000000 1.0000000 -0.0000313 0.0000000 1.0000000 -0.6426893 0.0000000 0.7661269 -0.6426893 0.0000000 0.7661269 0.6426893 -0.0000000 -0.7661269 0.6426893 -0.0000000 -0.7661269 0.1736322 -0.0000000 -0.9848106 0.1736322 -0.0000000 -0.9848106 -0.1736322 0.0000000 0.9848106 -0.1736322 0.0000000 0.9848106 -0.4998571 -0.0000000 0.8661079 -0.4998571 -0.0000000 0.8661079 0.4998571 0.0000000 -0.8661079 0.4998571 0.0000000 -0.8661079 0.3419747 -0.0000000 -0.9397092 0.3419747 -0.0000000 -0.9397092 -0.3419747 0.0000000 0.9397092 -0.3419747 0.0000000 0.9397092 -0.3420965 -0.0000000 0.9396648 -0.3420965 -0.0000000 0.9396648 0.3420965 0.0000000 -0.9396648 0.3420965 0.0000000 -0.9396648 0.5000378 0.0000000 -0.8660036 0.5000378 0.0000000 -0.8660036 -0.5000378 -0.0000000 0.8660036 -0.5000378 -0.0000000 0.8660036 -0.1737259 0.0000000 0.9847940 -0.1737259 0.0000000 0.9847940 0.1737259 -0.0000000 -0.9847940 0.1737259 -0.0000000 -0.9847940 0.6428437 0.0000000 -0.7659974 0.6428437 0.0000000 -0.7659974 -0.6428437 -0.0000000 0.7659974 -0.6428437 -0.0000000 0.7659974 0.0000312 -0.0000000 1.0000000 0.0000312 -0.0000000 1.0000000 -0.0000312 0.0000000 -1.0000000 -0.0000312 0.0000000 -1.0000000 0.7660319 0.0000000 -0.6428026 0.7660319 0.0000000 -0.6428026 -0.7660319 -0.0000000 0.6428026 -0.7660319 -0.0000000 0.6428026 0.1736652 -0.0000000 0.9848047 0.1736652 -0.0000000 0.9848047 -0.1736652 0.0000000 -0.9848047 -0.1736652 0.0000000 -0.9848047 0.8660625 0.0000000 -0.4999358 0.8660625 0.0000000 -0.4999358 -0.8660625 -0.0000000 0.4999358 -0.8660625 -0.0000000 0.4999358 0.3420093 -0.0000000 0.9396966 0.3420093 -0.0000000 0.9396966 -0.3420093 0.0000000 -0.9396966 -0.3420093 0.0000000 -0.9396966 0.9397216 0.0000000 -0.3419406 0.9397216 0.0000000 -0.3419406 -0.9397216 -0.0000000 0.3419406 -0.9397216 -0.0000000 0.3419406 0.5000351 0.0000000 0.8660051 0.5000351 0.0000000 0.8660051 -0.5000351 -0.0000000 -0.8660051 -0.5000351 -0.0000000 -0.8660051 0.9847732 -0.0000000 -0.1738441 0.9847732 -0.0000000 -0.1738441 -0.9847732 0.0000000 0.1738441 -0.9847732 0.0000000 0.1738441 0.6428468 0.0000000 0.7659948 0.6428468 0.0000000 0.7659948 -0.6428468 -0.0000000 -0.7659948 -0.6428468 -0.0000000 -0.7659948 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.7660156 0.0000000 0.6428220 0.7660156 0.0000000 0.6428220 -0.7660156 -0.0000000 -0.6428220 -0.7660156 -0.0000000 -0.6428220 0.9847748 0.0000000 0.1738349 0.9847748 0.0000000 0.1738349 -0.9847748 -0.0000000 -0.1738349 -0.9847748 -0.0000000 -0.1738349 0.8660549 0.0000000 0.4999489 0.8660549 0.0000000 0.4999489 -0.8660549 -0.0000000 -0.4999489 -0.8660549 -0.0000000 -0.4999489 0.9397196 0.0000000 0.3419461 0.9397196 0.0000000 0.3419461 -0.9397196 -0.0000000 -0.3419461 -0.9397196 -0.0000000 -0.3419461 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 8 9 8 1 3 12 0 2 0 12 13 8 16 9 16 8 17 20 12 21 12 20 13 17 24 16 24 17 25 20 28 29 28 20 21 24 32 33 32 24 25 29 36 37 36 29 28 32 40 33 40 32 41 37 44 45 44 37 36 40 48 49 48 40 41 45 52 53 52 45 44 49 56 57 56 49 48 53 60 61 60 53 52 57 64 65 64 57 56 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 92 85 84 85 92 93 89 96 97 96 89 88 100 92 101 92 100 93 97 104 105 104 97 96 108 101 109 101 108 100 105 112 113 112 105 104 116 109 117 109 116 108 113 120 121 120 113 112 124 116 117 116 124 125 121 128 129 128 121 120 132 125 124 125 132 133 128 136 129 136 128 137 140 132 141 132 140 133 137 141 136 141 137 140

-
- - -

4 5 6 7 6 5 4 6 10 11 10 6 14 15 5 7 5 15 18 10 19 11 19 10 14 22 15 23 15 22 26 18 27 19 27 18 23 22 30 31 30 22 26 27 34 35 34 27 30 31 38 39 38 31 42 34 43 35 43 34 38 39 46 47 46 39 42 43 50 51 50 43 46 47 54 55 54 47 50 51 58 59 58 51 54 55 62 63 62 55 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 70 71 78 79 78 71 74 75 82 83 82 75 78 79 86 87 86 79 82 83 90 91 90 83 94 95 87 86 87 95 90 91 98 99 98 91 94 102 95 103 95 102 98 99 106 107 106 99 102 110 103 111 103 110 106 107 114 115 114 107 110 118 111 119 111 118 114 115 122 123 122 115 126 127 118 119 118 127 122 123 130 131 130 123 134 135 126 127 126 135 138 130 139 131 139 130 134 142 135 143 135 142 142 138 143 139 143 138

-
-
-
- - - - 4016.3897638 263.7795276 2507.0208661 4019.5393701 47.2440945 2502.5236220 4016.3897638 47.2440945 2507.0208661 4019.5393701 263.7795276 2502.5236220 4019.5393701 263.7795276 2502.5236220 4016.3897638 263.7795276 2507.0208661 4019.5393701 47.2440945 2502.5236220 4016.3897638 47.2440945 2507.0208661 4021.8582677 47.2440945 2497.5480315 4021.8582677 263.7795276 2497.5480315 4021.8582677 263.7795276 2497.5480315 4021.8582677 47.2440945 2497.5480315 4012.5078740 263.7795276 2510.9031496 4012.5078740 47.2440945 2510.9031496 4012.5078740 263.7795276 2510.9031496 4012.5078740 47.2440945 2510.9031496 4023.2795276 263.7795276 2492.2448819 4023.2795276 47.2440945 2492.2448819 4023.2795276 263.7795276 2492.2448819 4023.2795276 47.2440945 2492.2448819 4008.0078740 47.2440945 2514.0519685 4008.0078740 263.7795276 2514.0519685 4008.0078740 47.2440945 2514.0519685 4008.0078740 263.7795276 2514.0519685 4023.7559055 47.2440945 2486.7755906 4023.7559055 263.7795276 2486.7755906 4023.7559055 263.7795276 2486.7755906 4023.7559055 47.2440945 2486.7755906 4003.0354331 47.2440945 2516.3724409 4003.0354331 263.7795276 2516.3724409 4003.0354331 47.2440945 2516.3724409 4003.0354331 263.7795276 2516.3724409 4023.2795276 263.7795276 2481.3062992 4023.2795276 47.2440945 2481.3062992 4023.2795276 263.7795276 2481.3062992 4023.2795276 47.2440945 2481.3062992 3997.7322835 47.2440945 2517.7933071 3997.7322835 263.7795276 2517.7933071 3997.7322835 47.2440945 2517.7933071 3997.7322835 263.7795276 2517.7933071 4021.8582677 47.2440945 2476.0031496 4021.8582677 263.7795276 2476.0031496 4021.8582677 263.7795276 2476.0031496 4021.8582677 47.2440945 2476.0031496 3992.2598425 47.2440945 2518.2716535 3992.2598425 263.7795276 2518.2716535 3992.2598425 47.2440945 2518.2716535 3992.2598425 263.7795276 2518.2716535 4019.5393701 47.2440945 2471.0275591 4019.5393701 263.7795276 2471.0275591 4019.5393701 263.7795276 2471.0275591 4019.5393701 47.2440945 2471.0275591 3986.7913386 47.2440945 2517.7933071 3986.7913386 263.7795276 2517.7933071 3986.7913386 47.2440945 2517.7933071 3986.7913386 263.7795276 2517.7933071 4016.3897638 263.7795276 2466.5303150 4016.3897638 47.2440945 2466.5303150 4016.3897638 263.7795276 2466.5303150 4016.3897638 47.2440945 2466.5303150 3981.4881890 47.2440945 2516.3724409 3981.4881890 263.7795276 2516.3724409 3981.4881890 47.2440945 2516.3724409 3981.4881890 263.7795276 2516.3724409 4012.5078740 263.7795276 2462.6484252 4012.5078740 47.2440945 2462.6484252 4012.5078740 263.7795276 2462.6484252 4012.5078740 47.2440945 2462.6484252 3976.5118110 47.2440945 2514.0519685 3976.5118110 263.7795276 2514.0519685 3976.5118110 47.2440945 2514.0519685 3976.5118110 263.7795276 2514.0519685 4008.0078740 263.7795276 2459.4992126 4008.0078740 47.2440945 2459.4992126 4008.0078740 263.7795276 2459.4992126 4008.0078740 47.2440945 2459.4992126 3972.0157480 47.2440945 2510.9031496 3972.0157480 263.7795276 2510.9031496 3972.0157480 47.2440945 2510.9031496 3972.0157480 263.7795276 2510.9031496 4003.0314961 263.7795276 2457.1791339 4003.0314961 47.2440945 2457.1791339 4003.0314961 263.7795276 2457.1791339 4003.0314961 47.2440945 2457.1791339 3968.1338583 263.7795276 2507.0208661 3968.1338583 47.2440945 2507.0208661 3968.1338583 263.7795276 2507.0208661 3968.1338583 47.2440945 2507.0208661 3997.7322835 263.7795276 2455.7582677 3997.7322835 47.2440945 2455.7582677 3997.7322835 263.7795276 2455.7582677 3997.7322835 47.2440945 2455.7582677 3964.9842520 47.2440945 2502.5236220 3964.9842520 263.7795276 2502.5236220 3964.9842520 263.7795276 2502.5236220 3964.9842520 47.2440945 2502.5236220 3992.2598425 263.7795276 2455.2795276 3992.2598425 47.2440945 2455.2795276 3992.2598425 263.7795276 2455.2795276 3992.2598425 47.2440945 2455.2795276 3962.6653543 263.7795276 2497.5480315 3962.6653543 47.2440945 2497.5480315 3962.6653543 263.7795276 2497.5480315 3962.6653543 47.2440945 2497.5480315 3986.7913386 263.7795276 2455.7582677 3986.7913386 47.2440945 2455.7582677 3986.7913386 263.7795276 2455.7582677 3986.7913386 47.2440945 2455.7582677 3961.2440945 263.7795276 2492.2448819 3961.2440945 47.2440945 2492.2448819 3961.2440945 263.7795276 2492.2448819 3961.2440945 47.2440945 2492.2448819 3981.4881890 263.7795276 2457.1791339 3981.4881890 47.2440945 2457.1791339 3981.4881890 263.7795276 2457.1791339 3981.4881890 47.2440945 2457.1791339 3960.7637795 47.2440945 2486.7755906 3960.7637795 263.7795276 2486.7755906 3960.7637795 263.7795276 2486.7755906 3960.7637795 47.2440945 2486.7755906 3976.5118110 263.7795276 2459.4992126 3976.5118110 47.2440945 2459.4992126 3976.5118110 263.7795276 2459.4992126 3976.5118110 47.2440945 2459.4992126 3961.2440945 263.7795276 2481.3062992 3961.2440945 47.2440945 2481.3062992 3961.2440945 263.7795276 2481.3062992 3961.2440945 47.2440945 2481.3062992 3972.0157480 263.7795276 2462.6484252 3972.0157480 47.2440945 2462.6484252 3972.0157480 263.7795276 2462.6484252 3972.0157480 47.2440945 2462.6484252 3962.6653543 263.7795276 2476.0031496 3962.6653543 47.2440945 2476.0031496 3962.6653543 263.7795276 2476.0031496 3962.6653543 47.2440945 2476.0031496 3968.1338583 263.7795276 2466.5303150 3968.1338583 47.2440945 2466.5303150 3968.1338583 263.7795276 2466.5303150 3968.1338583 47.2440945 2466.5303150 3964.9842520 47.2440945 2471.0275591 3964.9842520 263.7795276 2471.0275591 3964.9842520 263.7795276 2471.0275591 3964.9842520 47.2440945 2471.0275591 3967.8188976 47.2440945 2466.9811024 3967.8188976 263.7795276 2466.9811024 3967.8188976 263.7795276 2466.9811024 3967.8188976 47.2440945 2466.9811024 - - - - - - - - - - -0.7660319 -0.0000000 -0.6428026 -0.8660548 -0.0000000 -0.4999491 -0.7660319 -0.0000000 -0.6428026 -0.8660548 -0.0000000 -0.4999491 0.8660548 0.0000000 0.4999491 0.7660319 0.0000000 0.6428026 0.8660548 0.0000000 0.4999491 0.7660319 0.0000000 0.6428026 -0.9397195 -0.0000000 -0.3419463 -0.9397195 -0.0000000 -0.3419463 0.9397195 0.0000000 0.3419463 0.9397195 0.0000000 0.3419463 -0.6426862 0.0000000 -0.7661295 -0.6426862 0.0000000 -0.7661295 0.6426862 -0.0000000 0.7661295 0.6426862 -0.0000000 0.7661295 -0.9848368 0.0000000 -0.1734832 -0.9848368 0.0000000 -0.1734832 0.9848368 -0.0000000 0.1734832 0.9848368 -0.0000000 0.1734832 -0.4999911 -0.0000000 -0.8660306 -0.4999911 -0.0000000 -0.8660306 0.4999911 0.0000000 0.8660306 0.4999911 0.0000000 0.8660306 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 1.0000000 -0.0000000 0.0000000 1.0000000 -0.0000000 0.0000000 -0.3421497 -0.0000000 -0.9396455 -0.3421497 -0.0000000 -0.9396455 0.3421497 0.0000000 0.9396455 0.3421497 0.0000000 0.9396455 -0.9848368 -0.0000000 0.1734832 -0.9848368 -0.0000000 0.1734832 0.9848368 0.0000000 -0.1734832 0.9848368 0.0000000 -0.1734832 -0.1736004 -0.0000000 -0.9848162 -0.1736004 -0.0000000 -0.9848162 0.1736004 0.0000000 0.9848162 0.1736004 0.0000000 0.9848162 -0.9397196 -0.0000000 0.3419461 -0.9397196 -0.0000000 0.3419461 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 0.0000312 0.0000000 -1.0000000 0.0000312 0.0000000 -1.0000000 -0.0000312 -0.0000000 1.0000000 -0.0000312 -0.0000000 1.0000000 -0.8660549 -0.0000000 0.4999489 -0.8660549 -0.0000000 0.4999489 0.8660549 0.0000000 -0.4999489 0.8660549 0.0000000 -0.4999489 0.1736311 0.0000000 -0.9848108 0.1736311 0.0000000 -0.9848108 -0.1736311 -0.0000000 0.9848108 -0.1736311 -0.0000000 0.9848108 -0.7660156 -0.0000000 0.6428220 -0.7660156 -0.0000000 0.6428220 0.7660156 0.0000000 -0.6428220 0.7660156 0.0000000 -0.6428220 0.3420072 0.0000000 -0.9396973 0.3420072 0.0000000 -0.9396973 -0.3420072 -0.0000000 0.9396973 -0.3420072 -0.0000000 0.9396973 -0.6426893 0.0000000 0.7661269 -0.6426893 0.0000000 0.7661269 0.6426893 -0.0000000 -0.7661269 0.6426893 -0.0000000 -0.7661269 0.5000378 -0.0000000 -0.8660036 0.5000378 -0.0000000 -0.8660036 -0.5000378 0.0000000 0.8660036 -0.5000378 0.0000000 0.8660036 -0.4998571 0.0000000 0.8661079 -0.4998571 0.0000000 0.8661079 0.4998571 -0.0000000 -0.8661079 0.4998571 -0.0000000 -0.8661079 0.6428437 0.0000000 -0.7659974 0.6428437 0.0000000 -0.7659974 -0.6428437 -0.0000000 0.7659974 -0.6428437 -0.0000000 0.7659974 -0.3420640 0.0000000 0.9396767 -0.3420640 0.0000000 0.9396767 0.3420640 -0.0000000 -0.9396767 0.3420640 -0.0000000 -0.9396767 0.7660319 -0.0000000 -0.6428026 0.7660319 -0.0000000 -0.6428026 -0.7660319 0.0000000 0.6428026 -0.7660319 0.0000000 0.6428026 -0.1737270 0.0000000 0.9847939 -0.1737270 0.0000000 0.9847939 0.1737270 -0.0000000 -0.9847939 0.1737270 -0.0000000 -0.9847939 0.8660549 -0.0000000 -0.4999489 0.8660549 -0.0000000 -0.4999489 -0.8660549 0.0000000 0.4999489 -0.8660549 0.0000000 0.4999489 0.0000313 0.0000000 1.0000000 0.0000313 0.0000000 1.0000000 -0.0000313 -0.0000000 -1.0000000 -0.0000313 -0.0000000 -1.0000000 0.9397196 0.0000000 -0.3419461 0.9397196 0.0000000 -0.3419461 -0.9397196 -0.0000000 0.3419461 -0.9397196 -0.0000000 0.3419461 0.1736663 0.0000000 0.9848046 0.1736663 0.0000000 0.9848046 -0.1736663 -0.0000000 -0.9848046 -0.1736663 -0.0000000 -0.9848046 0.9847748 0.0000000 -0.1738349 0.9847748 0.0000000 -0.1738349 -0.9847748 -0.0000000 0.1738349 -0.9847748 -0.0000000 0.1738349 0.3419767 0.0000000 0.9397084 0.3419767 0.0000000 0.9397084 -0.3419767 -0.0000000 -0.9397084 -0.3419767 -0.0000000 -0.9397084 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 -1.0000000 -0.0000000 0.0000000 0.5000351 0.0000000 0.8660051 0.5000351 0.0000000 0.8660051 -0.5000351 -0.0000000 -0.8660051 -0.5000351 -0.0000000 -0.8660051 0.9847748 -0.0000000 0.1738349 0.9847748 -0.0000000 0.1738349 -0.9847748 0.0000000 -0.1738349 -0.9847748 0.0000000 -0.1738349 0.6428468 0.0000000 0.7659948 0.6428468 0.0000000 0.7659948 -0.6428468 -0.0000000 -0.7659948 -0.6428468 -0.0000000 -0.7659948 0.9397196 -0.0000000 0.3419461 0.9397196 -0.0000000 0.3419461 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 0.7663719 -0.0000000 0.6423972 0.7663719 -0.0000000 0.6423972 -0.7663719 0.0000000 -0.6423972 -0.7663719 0.0000000 -0.6423972 0.8660240 -0.0000000 0.5000024 0.8660240 -0.0000000 0.5000024 -0.8660240 0.0000000 -0.5000024 -0.8660240 0.0000000 -0.5000024 0.8193831 -0.0000000 0.5732464 0.8193831 -0.0000000 0.5732464 -0.8193831 0.0000000 -0.5732464 -0.8193831 0.0000000 -0.5732464 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 8 16 17 16 8 9 12 20 21 20 12 13 16 24 17 24 16 25 21 28 29 28 21 20 24 32 33 32 24 25 29 36 37 36 29 28 32 40 33 40 32 41 37 44 45 44 37 36 41 48 40 48 41 49 45 52 53 52 45 44 48 56 57 56 48 49 53 60 61 60 53 52 57 64 65 64 57 56 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 84 76 85 76 84 77 81 88 89 88 81 80 92 84 85 84 92 93 89 96 97 96 89 88 100 92 101 92 100 93 97 104 105 104 97 96 108 101 109 101 108 100 105 112 113 112 105 104 116 108 109 108 116 117 113 120 121 120 113 112 124 116 125 116 124 117 121 128 129 128 121 120 132 125 133 125 132 124 129 136 137 136 129 128 140 132 133 132 140 141 136 144 137 144 136 145 145 140 144 140 145 141

-
- - -

4 5 6 7 6 5 10 4 11 6 11 4 5 14 7 15 7 14 10 11 18 19 18 11 15 14 22 23 22 14 26 18 27 19 27 18 22 23 30 31 30 23 26 27 34 35 34 27 30 31 38 39 38 31 42 34 43 35 43 34 38 39 46 47 46 39 50 42 51 43 51 42 46 47 54 55 54 47 50 51 58 59 58 51 54 55 62 63 62 55 58 59 66 67 66 59 62 63 70 71 70 63 66 67 74 75 74 67 70 71 78 79 78 71 74 75 82 83 82 75 79 86 78 87 78 86 82 83 90 91 90 83 94 95 86 87 86 95 90 91 98 99 98 91 94 102 95 103 95 102 98 99 106 107 106 99 102 110 103 111 103 110 106 107 114 115 114 107 118 119 110 111 110 119 114 115 122 123 122 115 118 126 119 127 119 126 122 123 130 131 130 123 126 134 127 135 127 134 130 131 138 139 138 131 142 143 134 135 134 143 146 138 147 139 147 138 142 146 143 147 143 146

-
-
-
- - - - 7260.8464567 263.7795276 -4941.3818898 7297.7480315 263.7795276 -4943.3149606 7279.2204724 263.7795276 -4943.7992126 7315.9724409 263.7795276 -4939.9370079 7243.0787402 263.7795276 -4936.1141732 7340.0314961 263.7795276 -4933.4881890 7229.1771654 263.7795276 -4929.4842520 7494.0511811 263.7795276 -4892.2204724 7226.3503937 263.7795276 -4928.1377953 7137.8464567 263.7795276 -4877.0433071 7561.9094488 263.7795276 -4874.0393701 7283.4370079 263.7795276 -4823.0472441 6820.3110236 263.7795276 -4693.7125984 7288.0314961 263.7795276 -4823.6496063 7745.3661417 263.7795276 -4824.8818898 7278.9921260 263.7795276 -4821.7283465 7274.8110236 263.7795276 -4819.7362205 7273.6181102 263.7795276 -4819.0472441 7269.4015748 263.7795276 -4816.0944882 7265.7637795 263.7795276 -4812.4566929 7262.8110236 263.7795276 -4808.2401575 7260.6338583 263.7795276 -4803.5748031 7259.3031496 263.7795276 -4798.6023622 7258.8543307 263.7795276 -4793.4763780 7259.3031496 263.7795276 -4788.3464567 7260.6338583 263.7795276 -4783.3740157 7262.8110236 263.7795276 -4778.7125984 7271.4685039 263.7795276 -4763.7125984 7355.2559055 263.7795276 -4618.5944882 6806.2834646 263.7795276 -4684.2086614 6793.7559055 263.7795276 -4672.7952756 7184.8031496 263.7795276 -4634.0039370 7174.2086614 263.7795276 -4634.9291339 6782.9960630 263.7795276 -4659.7086614 7195.0787402 263.7795276 -4631.2519685 7204.7204724 263.7795276 -4626.7559055 7213.4330709 263.7795276 -4620.6535433 7220.9527559 263.7795276 -4613.1338583 7358.0472441 263.7795276 -4614.5708661 7361.4645669 263.7795276 -4611.0629921 7227.0551181 263.7795276 -4604.4173228 7365.4133858 263.7795276 -4608.1692913 7369.7874016 263.7795276 -4605.9685039 7374.4645669 263.7795276 -4604.5236220 7379.3188976 263.7795276 -4603.8661417 7256.5826772 263.7795276 -4553.2755906 7420.0393701 263.7795276 -4598.9015748 7428.6811024 263.7795276 -4597.8503937 7476.7125984 263.7795276 -4584.9763780 7484.7244094 263.7795276 -4581.5708661 7522.4724409 263.7795276 -4565.5078740 7526.4527559 263.7795276 -4563.8740157 7527.0039370 263.7795276 -4563.6496063 7531.7795276 263.7795276 -4562.5669291 7536.6653543 263.7795276 -4562.2834646 7256.5826772 263.7795276 -4492.2519685 7685.1220472 263.7795276 -4498.0314961 7261.0787402 263.7795276 -4501.8937008 7676.2913386 263.7795276 -4497.2598425 7674.5275591 263.7795276 -4497.1023622 7664.2519685 263.7795276 -4494.3503937 7654.6102362 263.7795276 -4489.8543307 7250.4803150 263.7795276 -4483.5393701 7603.4685039 263.7795276 -4460.3267717 7242.9606299 263.7795276 -4476.0157480 7234.2480315 263.7795276 -4469.9173228 7224.6062992 263.7795276 -4465.4212598 7214.3307087 263.7795276 -4462.6692913 7203.7362205 263.7795276 -4461.7401575 6917.4251969 263.7795276 -4626.0787402 6912.7007874 263.7795276 -4625.2559055 6739.7007874 263.7795276 -4586.8897638 7163.6102362 263.7795276 -4634.0039370 7153.3346457 263.7795276 -4631.2519685 6922.2244094 263.7795276 -4626.1259843 7143.6968504 263.7795276 -4626.7559055 6908.1692913 263.7795276 -4623.6771654 6903.9566929 263.7795276 -4621.3818898 6900.1692913 263.7795276 -4618.4409449 6896.9055118 263.7795276 -4614.9212598 6847.0748031 263.7795276 -4540.5354331 6725.0590551 263.7795276 -4562.2598425 6683.4055118 263.7795276 -4456.8188976 6809.0629921 263.7795276 -4459.4685039 6801.4685039 263.7795276 -4433.7165354 6659.0984252 263.7795276 -4346.0826772 6783.7440945 263.7795276 -4373.5905512 6771.6968504 263.7795276 -4284.8700787 6652.7598425 263.7795276 -4232.8897638 6771.7992126 263.7795276 -4280.0826772 6772.6771654 263.7795276 -4275.3779528 6774.3070866 263.7795276 -4270.8740157 6776.6417323 263.7795276 -4266.6929134 6779.6181102 263.7795276 -4262.9448819 6783.1653543 263.7795276 -4259.7244094 6787.1850394 263.7795276 -4257.1220472 6791.5708661 263.7795276 -4255.2047244 6796.2125984 263.7795276 -4254.0196850 6800.9803150 263.7795276 -4253.6023622 6978.5039370 263.7795276 -4252.4606299 7164.3661417 263.7795276 -4250.0000000 7167.3543307 263.7795276 -4215.8188976 6651.7480315 263.7795276 -4214.3464567 7170.2322835 263.7795276 -4205.0866142 6647.8425197 263.7795276 -4196.1889764 7176.2362205 263.7795276 -4182.6732283 6641.1377953 263.7795276 -4178.8700787 7190.7401575 263.7795276 -4151.5748031 6631.7992126 263.7795276 -4162.8149606 7088.4527559 263.7795276 -4153.5433071 7099.0472441 263.7795276 -4152.6181102 7109.3228346 263.7795276 -4149.8622047 7210.4212598 263.7795276 -4123.4685039 7118.9645669 263.7795276 -4145.3661417 7127.6771654 263.7795276 -4139.2677165 7135.2007874 263.7795276 -4131.7440945 7141.2992126 263.7795276 -4123.0314961 7234.6811024 263.7795276 -4099.2047244 7145.7952756 263.7795276 -4113.3897638 7148.5472441 263.7795276 -4103.1181102 7149.4763780 263.7795276 -4092.5196850 7262.7913386 263.7795276 -4079.5236220 7148.5472441 263.7795276 -4081.9212598 7145.7952756 263.7795276 -4071.6496063 7293.8897638 263.7795276 -4065.0196850 7141.2992126 263.7795276 -4062.0078740 7327.0314961 263.7795276 -4056.1417323 7135.2007874 263.7795276 -4053.2952756 7330.0944882 263.7795276 -4055.8740157 7334.8818898 263.7795276 -4055.4527559 7361.2165354 263.7795276 -4053.1496063 7127.6771654 263.7795276 -4045.7716535 7067.8188976 263.7795276 -4010.1456693 7518.6968504 263.7795276 -4038.2598425 7118.9645669 263.7795276 -4039.6732283 7508.0984252 263.7795276 -4037.3307087 7497.8228346 263.7795276 -4034.5787402 7488.1850394 263.7795276 -4030.0826772 7479.4724409 263.7795276 -4023.9842520 7471.9488189 263.7795276 -4016.4606299 7465.8464567 263.7795276 -4007.7480315 7058.1811024 263.7795276 -4005.6496063 7461.3543307 263.7795276 -3998.1062992 7047.9055118 263.7795276 -4002.8937008 7037.3110236 263.7795276 -4001.9685039 7134.9842520 263.7795276 -4620.6535433 6926.9645669 263.7795276 -4625.3976378 6931.5275591 263.7795276 -4623.9094488 6935.7874016 263.7795276 -4621.7047244 6939.6338583 263.7795276 -4618.8385827 7127.4606299 263.7795276 -4613.1338583 6942.9645669 263.7795276 -4615.3858268 6945.6929134 263.7795276 -4611.4370079 7121.3582677 263.7795276 -4604.4173228 6986.5944882 263.7795276 -4540.5984252 7116.8661417 263.7795276 -4594.7795276 7114.1102362 263.7795276 -4584.5039370 7113.1850394 263.7795276 -4573.9055118 7114.1102362 263.7795276 -4563.3110236 7116.8661417 263.7795276 -4553.0354331 7121.3582677 263.7795276 -4543.3937008 7150.8858268 263.7795276 -4492.2519685 7044.9842520 263.7795276 -4439.4606299 7156.9881890 263.7795276 -4483.5393701 7164.5118110 263.7795276 -4476.0157480 7173.2244094 263.7795276 -4469.9173228 7182.8622047 263.7795276 -4465.4212598 7193.1377953 263.7795276 -4462.6692913 7594.7559055 263.7795276 -4454.2283465 7361.2165354 263.7795276 -4446.8503937 7327.0314961 263.7795276 -4443.8582677 7311.2559055 263.7795276 -4439.6338583 7293.8897638 263.7795276 -4434.9803150 7047.0748031 263.7795276 -4435.0314961 7048.4015748 263.7795276 -4430.3188976 7262.7913386 263.7795276 -4420.4763780 7048.9330709 263.7795276 -4425.4488189 7048.6496063 263.7795276 -4420.5629921 7047.5669291 263.7795276 -4415.7874016 7234.6811024 263.7795276 -4400.7952756 7045.7047244 263.7795276 -4411.2559055 7027.5000000 263.7795276 -4369.0984252 7221.9685039 263.7795276 -4388.0826772 7210.4212598 263.7795276 -4376.5314961 7190.7401575 263.7795276 -4348.4251969 7014.9015748 263.7795276 -4324.9409449 7176.2362205 263.7795276 -4317.3267717 7008.1181102 263.7795276 -4279.5275591 7167.3543307 263.7795276 -4284.1811024 7007.3070866 263.7795276 -4274.6968504 7005.7086614 263.7795276 -4270.0708661 7003.3700787 263.7795276 -4265.7716535 7000.3503937 263.7795276 -4261.9173228 6996.7362205 263.7795276 -4258.6141732 6992.6299213 263.7795276 -4255.9527559 6988.1377953 263.7795276 -4254.0078740 6983.3818898 263.7795276 -4252.8346457 7654.8503937 263.7795276 -4350.1377953 7904.6889764 263.7795276 -4352.3622047 7664.4921260 263.7795276 -4354.6338583 7899.5629921 263.7795276 -4351.9133858 7894.5905512 263.7795276 -4350.5826772 7889.9251969 263.7795276 -4348.4055118 7644.5748031 263.7795276 -4347.3818898 7871.5196850 263.7795276 -4337.7755906 7633.9803150 263.7795276 -4346.4566929 2974.0299213 263.7795276 -2220.8759843 4118.7244094 263.7795276 -2219.4811024 4120.1456693 263.7795276 -2224.7838583 2982.5759843 263.7795276 -2220.1283465 2990.8618110 263.7795276 -2217.9082677 4118.2440945 263.7795276 -2214.0118110 2998.6362205 263.7795276 -2214.2830709 3005.6629921 263.7795276 -2209.3625984 4118.7244094 263.7795276 -2208.5425197 3011.7291339 263.7795276 -2203.2968504 4120.1456693 263.7795276 -2203.2393701 3016.6492126 263.7795276 -2196.2696850 4122.4645669 263.7795276 -2198.2637795 4125.6141732 263.7795276 -2193.7665354 3020.2748031 263.7795276 -2188.4952756 4129.4960630 263.7795276 -2189.8846457 4133.9921260 263.7795276 -2186.7354331 3022.4948819 263.7795276 -2180.2090551 4138.9685039 263.7795276 -2184.4153543 4144.2716535 263.7795276 -2182.9940945 4149.7401575 263.7795276 -2182.5157480 2469.7374016 263.7795276 -2062.3527559 3211.7515748 263.7795276 -2328.1397638 2944.2188976 263.7795276 -2336.2948819 2957.1984252 263.7795276 -2217.9082677 2965.4846457 263.7795276 -2220.1287402 4149.7401575 263.7795276 -2245.5078740 4144.2716535 263.7795276 -2245.0291339 4138.9685039 263.7795276 -2243.6086614 4133.9921260 263.7795276 -2241.2881890 4129.4960630 263.7795276 -2238.1393701 4125.6141732 263.7795276 -2234.2570866 4122.4645669 263.7795276 -2229.7598425 2949.4236220 263.7795276 -2214.2830709 2942.3968504 263.7795276 -2209.3625984 2936.3311024 263.7795276 -2203.2968504 2931.4106299 263.7795276 -2196.2700787 2927.7858268 263.7795276 -2188.4952756 2925.5649606 263.7795276 -2180.2090551 2924.8173228 263.7795276 -2171.6633858 2925.5653543 263.7795276 -2163.1181102 2927.7858268 263.7795276 -2154.8318898 2931.4106299 263.7795276 -2147.0574803 2936.3311024 263.7795276 -2140.0303150 2942.3968504 263.7795276 -2133.9645669 2949.4236220 263.7795276 -2129.0440945 2957.1984252 263.7795276 -2125.4188976 2965.4846457 263.7795276 -2123.1984252 2974.0299213 263.7795276 -2122.4511811 2976.3015748 263.7795276 -1683.1366142 3399.9401575 263.7795276 -1922.1562992 3395.9708661 263.7795276 -1925.4326772 3404.4188976 263.7795276 -1919.6192913 3409.2696850 263.7795276 -1917.8980315 3414.3456693 263.7795276 -1917.0456693 3386.6314961 263.7795276 -2014.2732283 3391.7074803 263.7795276 -2015.1259843 2469.7374016 263.7795276 -1698.6673228 3381.7807087 263.7795276 -2012.5523622 3377.3031496 263.7795276 -2010.0153543 3373.3334646 263.7795276 -2006.7389764 3369.9925197 263.7795276 -2002.8232283 3367.3826772 263.7795276 -1998.3870079 3365.5830709 263.7795276 -1993.5645669 3364.6484252 263.7795276 -1988.5035433 3364.6070866 263.7795276 -1983.3562992 3365.4590551 263.7795276 -1978.2807087 2922.2688976 263.7795276 -1744.3299213 2927.4157480 263.7795276 -1744.3716535 2917.2074803 263.7795276 -1743.3948819 2912.3854331 263.7795276 -1741.5952756 2907.9488189 263.7795276 -1738.9854331 2904.0334646 263.7795276 -1735.6452756 2900.7570866 263.7795276 -1731.6755906 2898.2196850 263.7795276 -1727.1972441 2896.4988189 263.7795276 -1722.3464567 2895.6468504 263.7795276 -1717.2708661 2895.6885827 263.7795276 -1712.1240157 2896.6232283 263.7795276 -1707.0622047 2898.4224409 263.7795276 -1702.2401575 2901.0330709 263.7795276 -1697.8043307 2741.4933071 263.7795276 -1638.7641732 2733.7185039 263.7795276 -1635.1389764 2726.6921260 263.7795276 -1630.2188976 2720.6259843 263.7795276 -1624.1531496 2715.7055118 263.7795276 -1617.1259843 2712.0803150 263.7795276 -1609.3511811 2709.8598425 263.7795276 -1601.0653543 2709.1122047 263.7795276 -1592.5196850 2705.9578740 263.7795276 -1289.5216535 2904.3724409 263.7795276 -1693.8881890 2749.7791339 263.7795276 -1640.9846457 2919.1362205 263.7795276 -1668.3165354 2920.7460630 263.7795276 -1663.7133858 2923.0917323 263.7795276 -1659.4374016 2758.3248031 263.7795276 -1641.7322835 2926.1086614 263.7795276 -1655.6059055 2929.7149606 263.7795276 -1652.3232283 2933.8125984 263.7795276 -1649.6787402 2938.2897638 263.7795276 -1647.7452756 2943.0236220 263.7795276 -1646.5748031 2947.8858268 263.7795276 -1646.1996063 2709.8598425 263.7795276 -1583.9740157 2712.0803150 263.7795276 -1575.6881890 2715.7055118 263.7795276 -1567.9133858 2720.6259843 263.7795276 -1560.8866142 2726.6921260 263.7795276 -1554.8204724 2733.7185039 263.7795276 -1549.9003937 2741.4933071 263.7795276 -1546.2751969 2749.7791339 263.7795276 -1544.0547244 2758.3248031 263.7795276 -1543.3070866 3350.8992126 263.7795276 -1535.9984252 3359.1854331 263.7795276 -1538.2188976 3367.7307087 263.7795276 -1538.9661417 3343.1244094 263.7795276 -1532.3732283 3336.0976378 263.7795276 -1527.4527559 3330.0318898 263.7795276 -1521.3870079 3325.1114173 263.7795276 -1514.3598425 3321.4866142 263.7795276 -1506.5854331 3319.2657480 263.7795276 -1498.2992126 3318.5181102 263.7795276 -1489.7535433 3319.2661417 263.7795276 -1481.2078740 3321.4866142 263.7795276 -1472.9220472 3325.1114173 263.7795276 -1465.1472441 3330.0318898 263.7795276 -1458.1204724 3336.0976378 263.7795276 -1452.0547244 3343.1244094 263.7795276 -1447.1342520 3350.8992126 263.7795276 -1443.5090551 3359.1854331 263.7795276 -1441.2885827 3367.7307087 263.7795276 -1440.5409449 3495.4000000 263.7795276 -1381.6208661 3020.9185039 263.7795276 -1107.6791339 6868.5196850 263.7795276 -3644.6240157 6313.5039370 263.7795276 -3426.8933071 3663.9976378 263.7795276 -1661.9173228 6318.0039370 263.7795276 -3430.0417323 6321.8858268 263.7795276 -3433.9236220 6325.0354331 263.7795276 -3438.4212598 6327.3543307 263.7795276 -3443.3968504 6328.7755906 263.7795276 -3448.7000000 6329.2519685 263.7795276 -3454.1692913 6328.7755906 263.7795276 -3459.6385827 6327.3543307 263.7795276 -3464.9413386 6325.0354331 263.7795276 -3469.9177165 6321.8858268 263.7795276 -3474.4145669 6318.0039370 263.7795276 -3478.2964567 6313.5039370 263.7795276 -3481.4456693 6308.5275591 263.7795276 -3483.7665354 6303.2283465 263.7795276 -3485.1870079 6297.7559055 263.7795276 -3485.6653543 6308.5275591 263.7795276 -3424.5732283 6303.2283465 263.7795276 -3423.1515748 6297.7559055 263.7795276 -3422.6732283 4173.8700787 263.7795276 -2193.7665354 4177.0196850 263.7795276 -2198.2637795 4179.3385827 263.7795276 -2203.2393701 4180.7598425 263.7795276 -2208.5425197 4181.2362205 263.7795276 -2214.0118110 4180.7598425 263.7795276 -2219.4811024 4179.3385827 263.7795276 -2224.7838583 4177.0196850 263.7795276 -2229.7594488 4019.5393701 263.7795276 -2502.5236220 4016.3897638 263.7795276 -2507.0208661 4012.5078740 263.7795276 -2510.9031496 4008.0078740 263.7795276 -2514.0519685 4003.0354331 263.7795276 -2516.3724409 3997.7322835 263.7795276 -2517.7933071 3992.2598425 263.7795276 -2518.2716535 4021.8582677 263.7795276 -2497.5480315 4023.2795276 263.7795276 -2492.2448819 4023.7559055 263.7795276 -2486.7755906 4023.2795276 263.7795276 -2481.3062992 4021.8582677 263.7795276 -2476.0031496 4019.5393701 263.7795276 -2471.0275591 4016.3897638 263.7795276 -2466.5303150 4173.8700787 263.7795276 -2234.2570866 4012.5078740 263.7795276 -2462.6484252 4008.0078740 263.7795276 -2459.4992126 4003.0314961 263.7795276 -2457.1791339 3997.7322835 263.7795276 -2455.7582677 3992.2598425 263.7795276 -2455.2795276 4169.9881890 263.7795276 -2238.1393701 4165.4881890 263.7795276 -2241.2881890 4160.5157480 263.7795276 -2243.6086614 4155.2125984 263.7795276 -2245.0291339 3271.2614173 263.7795276 -2342.1566929 3252.3460630 263.7795276 -2334.0283465 3232.3062992 263.7795276 -2329.3082677 4169.9881890 263.7795276 -2189.8846457 4165.4881890 263.7795276 -2186.7354331 4160.5118110 263.7795276 -2184.4153543 4155.2125984 263.7795276 -2182.9940945 3418.3661417 263.7795276 -2002.4295276 3415.0905512 263.7795276 -2006.3992126 3411.1740157 263.7795276 -2009.7397638 3406.7381890 263.7795276 -2012.3492126 3023.2425197 263.7795276 -2171.6637795 3022.4948819 263.7795276 -2163.1177165 3401.9157480 263.7795276 -2014.1492126 3020.2748031 263.7795276 -2154.8318898 3016.6492126 263.7795276 -2147.0570866 3011.7291339 263.7795276 -2140.0303150 3005.6633858 263.7795276 -2133.9645669 2998.6362205 263.7795276 -2129.0440945 2990.8618110 263.7795276 -2125.4188976 2982.5759843 263.7795276 -2123.1984252 3396.8543307 263.7795276 -2015.0842520 3420.9031496 263.7795276 -1997.9515748 3422.6240157 263.7795276 -1993.1007874 3440.7283465 263.7795276 -1963.6133858 3437.3877953 263.7795276 -1967.5291339 3443.3377953 263.7795276 -1959.1771654 3445.1377953 263.7795276 -1954.3551181 3446.0728346 263.7795276 -1949.2937008 3446.1145669 263.7795276 -1944.1464567 3445.2622047 263.7795276 -1939.0708661 3443.5413386 263.7795276 -1934.2200787 3441.0039370 263.7795276 -1929.7421260 3437.7279528 263.7795276 -1925.7724409 3433.8122047 263.7795276 -1922.4318898 3429.3755906 263.7795276 -1919.8220472 3424.5535433 263.7795276 -1918.0224409 3419.4917323 263.7795276 -1917.0874016 2977.1318898 263.7795276 -1678.3311024 2977.1594488 263.7795276 -1673.4543307 2976.3838583 263.7795276 -1668.6397638 2974.8267717 263.7795276 -1664.0185039 2972.5295276 263.7795276 -1659.7165354 3647.5011811 263.7795276 -1649.6000000 2969.5559055 263.7795276 -1655.8511811 2965.9870079 263.7795276 -1652.5279528 2961.9192913 263.7795276 -1649.8377953 2957.4641732 263.7795276 -1647.8535433 3633.3937008 263.7795276 -1634.6051181 2952.7437008 263.7795276 -1646.6299213 2766.8704724 263.7795276 -1640.9846457 2775.1570866 263.7795276 -1638.7645669 2782.9311024 263.7795276 -1635.1389764 2789.9582677 263.7795276 -1630.2185039 3622.1035433 263.7795276 -1617.3885827 2796.0244094 263.7795276 -1624.1527559 2800.9440945 263.7795276 -1617.1259843 3376.2767717 263.7795276 -1538.2188976 3384.5625984 263.7795276 -1535.9984252 3392.3370079 263.7795276 -1532.3732283 3399.3637795 263.7795276 -1527.4527559 3405.4299213 263.7795276 -1521.3870079 3410.3500000 263.7795276 -1514.3598425 2804.5696850 263.7795276 -1609.3515748 2806.7897638 263.7795276 -1601.0653543 2807.5374016 263.7795276 -1592.5196850 2806.7905512 263.7795276 -1583.9740157 2804.5696850 263.7795276 -1575.6877953 2800.9440945 263.7795276 -1567.9133858 2796.0244094 263.7795276 -1560.8862205 2789.9582677 263.7795276 -1554.8204724 2782.9311024 263.7795276 -1549.9003937 2775.1570866 263.7795276 -1546.2751969 2766.8708661 263.7795276 -1544.0547244 3413.9755906 263.7795276 -1506.5854331 3416.1956693 263.7795276 -1498.2992126 3416.9433071 263.7795276 -1489.7535433 3416.1956693 263.7795276 -1481.2078740 3413.9755906 263.7795276 -1472.9220472 3410.3500000 263.7795276 -1465.1472441 3405.4299213 263.7795276 -1458.1204724 3399.3641732 263.7795276 -1452.0547244 3392.3370079 263.7795276 -1447.1342520 3384.5625984 263.7795276 -1443.5090551 3376.2767717 263.7795276 -1441.2889764 2941.8204724 263.7795276 -1739.2610236 2945.7897638 263.7795276 -1735.9846457 2937.3421260 263.7795276 -1741.7980315 2932.4917323 263.7795276 -1743.5192913 7587.2322835 263.7795276 -4446.7047244 7387.5511811 263.7795276 -4444.5472441 7586.2165354 263.7795276 -4445.2519685 7581.1299213 263.7795276 -4437.9921260 7395.3976378 263.7795276 -4443.8582677 7428.5433071 263.7795276 -4434.9803150 7576.6377953 263.7795276 -4428.3503937 7459.6417323 263.7795276 -4420.4763780 7573.8818898 263.7795276 -4418.0787402 7487.7480315 263.7795276 -4400.7952756 7572.9566929 263.7795276 -4407.4803150 7573.8818898 263.7795276 -4396.8818898 7495.6062992 263.7795276 -4392.9409449 7576.6377953 263.7795276 -4386.6102362 7512.0118110 263.7795276 -4376.5314961 7581.1299213 263.7795276 -4376.9685039 7587.2322835 263.7795276 -4368.2559055 7531.6929134 263.7795276 -4348.4251969 7594.7559055 263.7795276 -4360.7322835 7603.4685039 263.7795276 -4354.6338583 7613.1102362 263.7795276 -4350.1377953 7623.3818898 263.7795276 -4347.3818898 7546.1968504 263.7795276 -4317.3267717 7729.8110236 263.7795276 -4255.9606299 7555.0748031 263.7795276 -4284.1811024 7557.5944882 263.7795276 -4255.4094488 7725.7874016 263.7795276 -4253.1692913 7558.0669291 263.7795276 -4250.0000000 7722.2795276 263.7795276 -4249.7519685 7555.0748031 263.7795276 -4215.8188976 7719.3858268 263.7795276 -4245.8031496 7717.1850394 263.7795276 -4241.4291339 7715.7401575 263.7795276 -4236.7519685 7715.6574803 263.7795276 -4236.1614173 7715.0826772 263.7795276 -4231.8976378 7710.1181102 263.7795276 -4191.1771654 7546.1968504 263.7795276 -4182.6732283 7709.0629921 263.7795276 -4182.5354331 7531.6929134 263.7795276 -4151.5748031 7696.1929134 263.7795276 -4134.5000000 7512.0118110 263.7795276 -4123.4685039 7692.7874016 263.7795276 -4126.4921260 7676.7244094 263.7795276 -4088.7440945 7500.4645669 263.7795276 -4111.9173228 7487.7480315 263.7795276 -4099.2047244 7459.6417323 263.7795276 -4079.5236220 7674.8661417 263.7795276 -4084.2125984 7673.7795276 263.7795276 -4079.4370079 7428.5433071 263.7795276 -4065.0196850 7673.5000000 263.7795276 -4074.5511811 7674.0314961 263.7795276 -4069.6811024 7675.3582677 263.7795276 -4064.9685039 7395.3976378 263.7795276 -4056.1417323 7677.4448819 263.7795276 -4060.5393701 7529.2913386 263.7795276 -4037.3307087 7539.5669291 263.7795276 -4034.5787402 7549.2086614 263.7795276 -4030.0826772 7769.8897638 263.7795276 -3900.4228346 7557.9212598 263.7795276 -4023.9842520 7565.4409449 263.7795276 -4016.4606299 7571.5433071 263.7795276 -4007.7480315 7601.0708661 263.7795276 -3956.6062992 7605.5669291 263.7795276 -3946.9645669 7608.3188976 263.7795276 -3936.6897638 7609.2480315 263.7795276 -3926.0933071 7608.3188976 263.7795276 -3915.4968504 7605.5669291 263.7795276 -3905.2216535 7601.0708661 263.7795276 -3895.5811024 7772.8425197 263.7795276 -3896.2070866 7776.4803150 263.7795276 -3892.5673228 7594.9685039 263.7795276 -3886.8677165 7780.6968504 263.7795276 -3889.6149606 7785.3622047 263.7795276 -3887.4397638 7790.3346457 263.7795276 -3886.1074803 7587.4488189 263.7795276 -3879.3464567 7795.4606299 263.7795276 -3885.6590551 7762.8346457 263.7795276 -4818.6929134 7292.6614173 263.7795276 -4823.5314961 7297.2165354 263.7795276 -4822.6850394 7349.3976378 263.7795276 -4808.7047244 7779.1259843 263.7795276 -4809.8503937 7793.8267717 263.7795276 -4798.5669291 7418.7716535 263.7795276 -4790.1141732 7806.5866142 263.7795276 -4785.1259843 7645.4251969 263.7795276 -4729.3818898 7817.0826772 263.7795276 -4769.8503937 7702.9842520 263.7795276 -4713.9606299 7707.3503937 263.7795276 -4712.4133858 7709.4133858 263.7795276 -4711.2952756 7711.4212598 263.7795276 -4710.2047244 7956.5157480 263.7795276 -4528.3464567 7715.0984252 263.7795276 -4707.3818898 7718.2874016 263.7795276 -4704.0236220 7720.9133858 263.7795276 -4700.2047244 7721.6023622 263.7795276 -4699.0118110 7723.7755906 263.7795276 -4694.3464567 7725.1102362 263.7795276 -4689.3740157 7725.5551181 263.7795276 -4684.2480315 7725.1102362 263.7795276 -4679.1181102 7724.9330709 263.7795276 -4678.4685039 7723.7755906 263.7795276 -4674.1456693 7721.6023622 263.7795276 -4669.4842520 7718.6496063 263.7795276 -4665.2677165 7715.0078740 263.7795276 -4661.6259843 7710.7913386 263.7795276 -4658.6732283 7550.6771654 263.7795276 -4566.2322835 7546.2480315 263.7795276 -4564.1417323 7541.5314961 263.7795276 -4562.8149606 7261.0787402 263.7795276 -4543.6338583 7263.8307087 263.7795276 -4533.3622047 7264.7598425 263.7795276 -4522.7637795 7974.9685039 263.7795276 -4496.3818898 7263.8307087 263.7795276 -4512.1653543 7695.7204724 263.7795276 -4497.1062992 7705.9960630 263.7795276 -4494.3503937 8039.3543307 263.7795276 -4384.8661417 7715.6338583 263.7795276 -4489.8543307 7724.3464567 263.7795276 -4483.7559055 7731.8700787 263.7795276 -4476.2322835 7737.9724409 263.7795276 -4467.5196850 7742.4645669 263.7795276 -4457.8779528 7745.2204724 263.7795276 -4447.6062992 7746.1456693 263.7795276 -4437.0078740 7745.2204724 263.7795276 -4426.4094488 7742.4645669 263.7795276 -4416.1377953 7737.9724409 263.7795276 -4406.4960630 7732.8858268 263.7795276 -4399.2362205 7731.8700787 263.7795276 -4397.7834646 7724.3464567 263.7795276 -4390.2598425 7715.6338583 263.7795276 -4384.1614173 8040.7007874 263.7795276 -4382.0393701 8047.3307087 263.7795276 -4368.1377953 8052.5944882 263.7795276 -4350.3700787 7909.8188976 263.7795276 -4351.9133858 7914.7913386 263.7795276 -4350.5826772 7919.4527559 263.7795276 -4348.4055118 8055.0157480 263.7795276 -4331.9921260 7923.6692913 263.7795276 -4345.4527559 7927.3110236 263.7795276 -4341.8149606 7930.2637795 263.7795276 -4337.5984252 7930.9527559 263.7795276 -4336.4055118 7932.9448819 263.7795276 -4332.2204724 7934.2637795 263.7795276 -4327.7795276 8054.5314961 263.7795276 -4313.4645669 7934.8661417 263.7795276 -4323.1850394 7934.8070866 263.7795276 -4320.9015748 7934.7440945 263.7795276 -4318.5551181 7933.9015748 263.7795276 -4314.0000000 7918.4763780 263.7795276 -4256.4409449 8051.1535433 263.7795276 -4295.2440945 7936.0984252 263.7795276 -3865.8503937 7825.1771654 263.7795276 -3908.2334646 7823.6299213 263.7795276 -3903.8657480 7822.5118110 263.7795276 -3901.8027559 7821.4173228 263.7795276 -3899.7940945 7818.5984252 263.7795276 -3896.1177165 7815.2362205 263.7795276 -3892.9283465 7811.4173228 263.7795276 -3890.3039370 7810.2244094 263.7795276 -3889.6149606 7805.5590551 263.7795276 -3887.4397638 7800.5905512 263.7795276 -3886.1074803 7578.7362205 263.7795276 -3873.2448819 7569.0944882 263.7795276 -3868.7500000 7558.8188976 263.7795276 -3865.9960630 7548.2244094 263.7795276 -3865.0692913 7929.9094488 263.7795276 -3848.3795276 6620.0629921 263.7795276 -4148.4251969 7077.8543307 263.7795276 -4152.6181102 7067.5826772 263.7795276 -4149.8622047 7057.9409449 263.7795276 -4145.3661417 6606.2125984 263.7795276 -4136.0511811 7006.7952756 263.7795276 -4115.8385827 6590.5984252 263.7795276 -4126.0000000 6129.5039370 263.7795276 -3756.5303150 6124.5275591 263.7795276 -3754.2094488 6998.0826772 263.7795276 -4109.7401575 6990.5629921 263.7795276 -4102.2165354 6989.5472441 263.7795276 -4100.7637795 6984.4606299 263.7795276 -4093.5039370 6979.9645669 263.7795276 -4083.8622047 6977.2125984 263.7795276 -4073.5905512 6976.2834646 263.7795276 -4062.9921260 6977.2125984 263.7795276 -4052.3937008 6979.9645669 263.7795276 -4042.1220472 6984.4606299 263.7795276 -4032.4803150 6990.5629921 263.7795276 -4023.7677165 6998.0826772 263.7795276 -4016.2440945 7006.7952756 263.7795276 -4010.1456693 7016.4370079 263.7795276 -4005.6496063 7026.7125984 263.7795276 -4002.8937008 6134.8070866 263.7795276 -3757.9507874 7458.5984252 263.7795276 -3987.8346457 7457.6732283 263.7795276 -3977.2362205 7191.1062992 263.7795276 -3931.5232283 7195.9527559 263.7795276 -3932.2106299 7458.5984252 263.7795276 -3966.6377953 7461.3543307 263.7795276 -3956.3661417 7465.8464567 263.7795276 -3946.7244094 7186.4370079 263.7795276 -3930.0452756 7182.0787402 263.7795276 -3927.8165354 7178.1496063 263.7795276 -3924.8984252 7174.7559055 263.7795276 -3921.3708661 7171.9881890 263.7795276 -3917.3314961 6140.2755906 263.7795276 -3758.4295276 7084.2165354 263.7795276 -3763.0220472 7082.1929134 263.7795276 -3758.6818898 6120.0314961 263.7795276 -3751.0606299 6116.1496063 263.7795276 -3747.1783465 6113.0000000 263.7795276 -3742.6811024 6110.6811024 263.7795276 -3737.7055118 6109.2598425 263.7795276 -3732.4023622 6108.7795276 263.7795276 -3726.9330709 6109.2598425 263.7795276 -3721.4637795 6110.6811024 263.7795276 -3716.1610236 6113.0000000 263.7795276 -3711.1850394 6116.1496063 263.7795276 -3706.6877953 6120.0314961 263.7795276 -3702.8059055 6124.5275591 263.7795276 -3699.6570866 6129.5039370 263.7795276 -3697.3370079 6134.8070866 263.7795276 -3695.9157480 6140.2755906 263.7795276 -3695.4377953 6286.9842520 263.7795276 -3483.7665354 6902.6732283 263.7795276 -3658.9299213 6921.0039370 263.7795276 -3661.8992126 7179.5118110 263.7795276 -3688.0976378 7266.5472441 263.7795276 -3667.0862205 6939.5748031 263.7795276 -3661.9582677 6885.0314961 263.7795276 -3653.1236220 6292.2874016 263.7795276 -3485.1870079 6282.0078740 263.7795276 -3481.4456693 6277.5118110 263.7795276 -3478.2964567 6273.6299213 263.7795276 -3474.4145669 6270.4803150 263.7795276 -3469.9169291 6268.1614173 263.7795276 -3464.9413386 6266.7401575 263.7795276 -3459.6385827 6266.2598425 263.7795276 -3454.1692913 6266.7401575 263.7795276 -3448.7000000 6268.1614173 263.7795276 -3443.3968504 6270.4803150 263.7795276 -3438.4212598 6273.6299213 263.7795276 -3433.9236220 6277.5118110 263.7795276 -3430.0417323 6282.0078740 263.7795276 -3426.8933071 6286.9842520 263.7795276 -3424.5732283 6292.2874016 263.7795276 -3423.1515748 3986.7913386 263.7795276 -2517.7933071 3981.4881890 263.7795276 -2516.3724409 3976.5118110 263.7795276 -2514.0519685 3972.0157480 263.7795276 -2510.9031496 3968.1338583 263.7795276 -2507.0208661 3964.9842520 263.7795276 -2502.5236220 3962.6653543 263.7795276 -2497.5480315 3961.2440945 263.7795276 -2492.2448819 3960.7637795 263.7795276 -2486.7755906 3961.2440945 263.7795276 -2481.3062992 3962.6653543 263.7795276 -2476.0031496 3964.9842520 263.7795276 -2471.0275591 3968.1338583 263.7795276 -2466.5303150 3972.0157480 263.7795276 -2462.6484252 3976.5118110 263.7795276 -2459.4992126 3981.4881890 263.7795276 -2457.1791339 3986.7913386 263.7795276 -2455.7582677 7080.9015748 263.7795276 -3754.0716535 6145.7480315 263.7795276 -3757.9507874 6151.0472441 263.7795276 -3756.5303150 6156.0236220 263.7795276 -3754.2102362 6160.5236220 263.7795276 -3751.0606299 7080.3700787 263.7795276 -3749.3129921 6164.4055118 263.7795276 -3747.1783465 7080.6141732 263.7795276 -3744.5307087 6167.5551181 263.7795276 -3742.6811024 7081.6259843 263.7795276 -3739.8511811 6169.8740157 263.7795276 -3737.7055118 7083.3858268 263.7795276 -3735.3964567 6171.2952756 263.7795276 -3732.4023622 7085.8385827 263.7795276 -3731.2854331 6171.7716535 263.7795276 -3726.9330709 7088.9251969 263.7795276 -3727.6236220 7092.5629921 263.7795276 -3724.5098425 6171.2952756 263.7795276 -3721.4637795 7096.6535433 263.7795276 -3722.0244094 6169.8740157 263.7795276 -3716.1610236 6167.5551181 263.7795276 -3711.1850394 6164.4055118 263.7795276 -3706.6877953 6160.5236220 263.7795276 -3702.8059055 6156.0236220 263.7795276 -3699.6570866 6151.0472441 263.7795276 -3697.3370079 6145.7480315 263.7795276 -3695.9157480 7355.7559055 263.7795276 -3659.4740157 6957.9291339 263.7795276 -3659.1047244 7200.8464567 263.7795276 -3932.0866142 7495.3740157 263.7795276 -3895.5811024 7205.6496063 263.7795276 -3931.1562992 7210.2362205 263.7795276 -3929.4448819 7252.9606299 263.7795276 -3912.6118110 7297.5039370 263.7795276 -3901.4444882 7343.1141732 263.7795276 -3896.1318898 7347.9685039 263.7795276 -3895.4771654 7501.4763780 263.7795276 -3886.8677165 7352.6456693 263.7795276 -3894.0303150 7357.0196850 263.7795276 -3891.8295276 7360.9685039 263.7795276 -3888.9358268 7364.3858268 263.7795276 -3885.4295276 7509.0000000 263.7795276 -3879.3464567 7367.1771654 263.7795276 -3881.4066929 7466.4685039 263.7795276 -3709.4275591 7517.7125984 263.7795276 -3873.2448819 7527.3503937 263.7795276 -3868.7500000 7537.6259843 263.7795276 -3865.9960630 7921.0669291 263.7795276 -3832.0917323 7909.7834646 263.7795276 -3817.3877953 7896.3385827 263.7795276 -3804.6303150 7881.0669291 263.7795276 -3794.1326772 7468.5236220 263.7795276 -3705.0917323 7469.8464567 263.7795276 -3700.4807087 7470.4055118 263.7795276 -3695.7157480 7475.0275591 263.7795276 -3559.7062992 7470.1889764 263.7795276 -3690.9232283 7469.1968504 263.7795276 -3686.2299213 7467.4566929 263.7795276 -3681.7578740 7465.0157480 263.7795276 -3677.6279528 7461.9370079 263.7795276 -3673.9472441 7458.3070866 263.7795276 -3670.8137795 7454.2125984 263.7795276 -3668.3090551 7449.7716535 263.7795276 -3666.5003937 7445.0905512 263.7795276 -3665.4362205 6975.6062992 263.7795276 -3653.4106299 6992.1692913 263.7795276 -3645.0153543 7093.3661417 263.7795276 -3593.9070866 7201.4212598 263.7795276 -3559.5897638 7459.7834646 263.7795276 -3552.3094488 7313.5629921 263.7795276 -3542.9433071 7443.6377953 263.7795276 -3547.1688976 7426.9251969 263.7795276 -3544.3913386 7137.8464567 263.7795276 -4877.0433071 6820.3110236 47.2440945 -4693.7125984 6820.3110236 263.7795276 -4693.7125984 7137.8464567 47.2440945 -4877.0433071 6806.2834646 47.2440945 -4684.2086614 6806.2834646 263.7795276 -4684.2086614 6793.7559055 47.2440945 -4672.7952756 6793.7559055 263.7795276 -4672.7952756 6782.9960630 263.7795276 -4659.7086614 6782.9960630 47.2440945 -4659.7086614 6739.7007874 263.7795276 -4586.8897638 6739.7007874 47.2440945 -4586.8897638 6725.0590551 263.7795276 -4562.2598425 6725.0590551 47.2440945 -4562.2598425 6683.4055118 263.7795276 -4456.8188976 6683.4055118 47.2440945 -4456.8188976 6659.0984252 263.7795276 -4346.0826772 6659.0984252 47.2440945 -4346.0826772 6652.7598425 263.7795276 -4232.8897638 6652.7598425 47.2440945 -4232.8897638 6651.7480315 47.2440945 -4214.3464567 6651.7480315 263.7795276 -4214.3464567 6647.8425197 263.7795276 -4196.1889764 6647.8425197 47.2440945 -4196.1889764 6641.1377953 263.7795276 -4178.8700787 6641.1377953 47.2440945 -4178.8700787 6631.7992126 263.7795276 -4162.8149606 6631.7992126 47.2440945 -4162.8149606 6620.0629921 263.7795276 -4148.4251969 6620.0629921 47.2440945 -4148.4251969 6606.2125984 47.2440945 -4136.0511811 6606.2125984 263.7795276 -4136.0511811 6590.5984252 47.2440945 -4126.0000000 6590.5984252 263.7795276 -4126.0000000 3271.2614173 47.2440945 -2342.1566929 3271.2614173 263.7795276 -2342.1566929 3252.3460630 47.2440945 -2334.0283465 3252.3460630 263.7795276 -2334.0283465 3232.3062992 47.2440945 -2329.3082677 3232.3062992 263.7795276 -2329.3082677 3211.7515748 47.2440945 -2328.1397638 3211.7515748 263.7795276 -2328.1397638 2944.2188976 47.2440945 -2336.2948819 2944.2188976 263.7795276 -2336.2948819 2469.7374016 47.2440945 -2062.3527559 2469.7374016 263.7795276 -2062.3527559 2469.7374016 47.2440945 -1698.6673228 2469.7374016 263.7795276 -1698.6673228 2705.9578740 263.7795276 -1289.5216535 2705.9578740 47.2440945 -1289.5216535 3020.9185039 47.2440945 -1107.6791339 3020.9185039 263.7795276 -1107.6791339 3495.4000000 47.2440945 -1381.6208661 3495.4000000 263.7795276 -1381.6208661 3622.1035433 263.7795276 -1617.3885827 3622.1035433 47.2440945 -1617.3885827 3633.3937008 263.7795276 -1634.6051181 3633.3937008 47.2440945 -1634.6051181 3647.5011811 263.7795276 -1649.6000000 3647.5011811 47.2440945 -1649.6000000 3663.9976378 47.2440945 -1661.9173228 3663.9976378 263.7795276 -1661.9173228 6868.5196850 47.2440945 -3644.6240157 6868.5196850 263.7795276 -3644.6240157 6885.0314961 47.2440945 -3653.1236220 6885.0314961 263.7795276 -3653.1236220 6902.6732283 47.2440945 -3658.9299213 6902.6732283 263.7795276 -3658.9299213 6921.0039370 47.2440945 -3661.8992126 6921.0039370 263.7795276 -3661.8992126 6939.5748031 47.2440945 -3661.9582677 6939.5748031 263.7795276 -3661.9582677 6957.9291339 47.2440945 -3659.1047244 6957.9291339 263.7795276 -3659.1047244 6975.6062992 47.2440945 -3653.4106299 6975.6062992 263.7795276 -3653.4106299 6992.1692913 47.2440945 -3645.0153543 6992.1692913 263.7795276 -3645.0153543 7093.3661417 47.2440945 -3593.9070866 7093.3661417 263.7795276 -3593.9070866 7201.4212598 47.2440945 -3559.5897638 7201.4212598 263.7795276 -3559.5897638 7313.5629921 47.2440945 -3542.9433071 7313.5629921 263.7795276 -3542.9433071 7426.9251969 47.2440945 -3544.3913386 7426.9251969 263.7795276 -3544.3913386 7443.6377953 47.2440945 -3547.1688976 7443.6377953 263.7795276 -3547.1688976 7459.7834646 47.2440945 -3552.3094488 7459.7834646 263.7795276 -3552.3094488 7475.0275591 47.2440945 -3559.7062992 7475.0275591 263.7795276 -3559.7062992 7881.0669291 47.2440945 -3794.1326772 7881.0669291 263.7795276 -3794.1326772 7896.3385827 47.2440945 -3804.6303150 7896.3385827 263.7795276 -3804.6303150 7909.7834646 47.2440945 -3817.3877953 7909.7834646 263.7795276 -3817.3877953 7921.0669291 263.7795276 -3832.0917323 7921.0669291 47.2440945 -3832.0917323 7929.9094488 263.7795276 -3848.3795276 7929.9094488 47.2440945 -3848.3795276 7936.0984252 263.7795276 -3865.8503937 7936.0984252 47.2440945 -3865.8503937 8051.1535433 47.2440945 -4295.2440945 8051.1535433 263.7795276 -4295.2440945 8054.5314961 263.7795276 -4313.4645669 8054.5314961 47.2440945 -4313.4645669 8055.0157480 263.7795276 -4331.9921260 8055.0157480 47.2440945 -4331.9921260 8052.5944882 47.2440945 -4350.3700787 8052.5944882 263.7795276 -4350.3700787 8047.3307087 263.7795276 -4368.1377953 8047.3307087 47.2440945 -4368.1377953 8039.3543307 47.2440945 -4384.8661417 8040.7007874 47.2440945 -4382.0393701 8039.3543307 263.7795276 -4384.8661417 8040.7007874 263.7795276 -4382.0393701 7974.9685039 263.7795276 -4496.3818898 7974.9685039 47.2440945 -4496.3818898 7956.5157480 263.7795276 -4528.3464567 7956.5157480 47.2440945 -4528.3464567 7817.0826772 47.2440945 -4769.8503937 7817.0826772 263.7795276 -4769.8503937 7806.5866142 263.7795276 -4785.1259843 7806.5866142 47.2440945 -4785.1259843 7793.8267717 263.7795276 -4798.5669291 7793.8267717 47.2440945 -4798.5669291 7779.1259843 47.2440945 -4809.8503937 7779.1259843 263.7795276 -4809.8503937 7762.8346457 47.2440945 -4818.6929134 7762.8346457 263.7795276 -4818.6929134 7745.3661417 47.2440945 -4824.8818898 7745.3661417 263.7795276 -4824.8818898 7561.9094488 263.7795276 -4874.0393701 7494.0511811 47.2440945 -4892.2204724 7494.0511811 263.7795276 -4892.2204724 7561.9094488 47.2440945 -4874.0393701 7340.0314961 47.2440945 -4933.4881890 7340.0314961 263.7795276 -4933.4881890 7315.9724409 47.2440945 -4939.9370079 7315.9724409 263.7795276 -4939.9370079 7297.7480315 47.2440945 -4943.3149606 7297.7480315 263.7795276 -4943.3149606 7279.2204724 47.2440945 -4943.7992126 7279.2204724 263.7795276 -4943.7992126 7260.8464567 47.2440945 -4941.3818898 7260.8464567 263.7795276 -4941.3818898 7243.0787402 47.2440945 -4936.1141732 7243.0787402 263.7795276 -4936.1141732 7229.1771654 263.7795276 -4929.4842520 7226.3503937 47.2440945 -4928.1377953 7226.3503937 263.7795276 -4928.1377953 7229.1771654 47.2440945 -4929.4842520 7518.6968504 47.2440945 -4038.2598425 7067.8188976 47.2440945 -4010.1456693 7118.9645669 47.2440945 -4039.6732283 7508.0984252 47.2440945 -4037.3307087 7497.8228346 47.2440945 -4034.5787402 7488.1850394 47.2440945 -4030.0826772 7479.4724409 47.2440945 -4023.9842520 7471.9488189 47.2440945 -4016.4606299 7465.8464567 47.2440945 -4007.7480315 7058.1811024 47.2440945 -4005.6496063 7461.3543307 47.2440945 -3998.1062992 7047.9055118 47.2440945 -4002.8937008 7037.3110236 47.2440945 -4001.9685039 7762.8346457 47.2440945 -4818.6929134 7288.0314961 47.2440945 -4823.6496063 7745.3661417 47.2440945 -4824.8818898 7292.6614173 47.2440945 -4823.5314961 7297.2165354 47.2440945 -4822.6850394 7349.3976378 47.2440945 -4808.7047244 7779.1259843 47.2440945 -4809.8503937 7793.8267717 47.2440945 -4798.5669291 7418.7716535 47.2440945 -4790.1141732 7806.5866142 47.2440945 -4785.1259843 7645.4251969 47.2440945 -4729.3818898 7817.0826772 47.2440945 -4769.8503937 7702.9842520 47.2440945 -4713.9606299 7707.3503937 47.2440945 -4712.4133858 7709.4133858 47.2440945 -4711.2952756 7711.4212598 47.2440945 -4710.2047244 7956.5157480 47.2440945 -4528.3464567 7715.0984252 47.2440945 -4707.3818898 7718.2874016 47.2440945 -4704.0236220 7720.9133858 47.2440945 -4700.2047244 7721.6023622 47.2440945 -4699.0118110 7723.7755906 47.2440945 -4694.3464567 7725.1102362 47.2440945 -4689.3740157 7725.5551181 47.2440945 -4684.2480315 7725.1102362 47.2440945 -4679.1181102 7724.9330709 47.2440945 -4678.4685039 7723.7755906 47.2440945 -4674.1456693 7721.6023622 47.2440945 -4669.4842520 7718.6496063 47.2440945 -4665.2677165 7715.0078740 47.2440945 -4661.6259843 7710.7913386 47.2440945 -4658.6732283 7550.6771654 47.2440945 -4566.2322835 7546.2480315 47.2440945 -4564.1417323 7541.5314961 47.2440945 -4562.8149606 7536.6653543 47.2440945 -4562.2834646 7256.5826772 47.2440945 -4553.2755906 7261.0787402 47.2440945 -4543.6338583 7263.8307087 47.2440945 -4533.3622047 7264.7598425 47.2440945 -4522.7637795 7974.9685039 47.2440945 -4496.3818898 7263.8307087 47.2440945 -4512.1653543 7261.0787402 47.2440945 -4501.8937008 7685.1220472 47.2440945 -4498.0314961 7695.7204724 47.2440945 -4497.1062992 7705.9960630 47.2440945 -4494.3503937 8039.3543307 47.2440945 -4384.8661417 7715.6338583 47.2440945 -4489.8543307 7724.3464567 47.2440945 -4483.7559055 7731.8700787 47.2440945 -4476.2322835 7737.9724409 47.2440945 -4467.5196850 7742.4645669 47.2440945 -4457.8779528 7745.2204724 47.2440945 -4447.6062992 7746.1456693 47.2440945 -4437.0078740 7745.2204724 47.2440945 -4426.4094488 7742.4645669 47.2440945 -4416.1377953 7737.9724409 47.2440945 -4406.4960630 7732.8858268 47.2440945 -4399.2362205 7731.8700787 47.2440945 -4397.7834646 7724.3464567 47.2440945 -4390.2598425 7715.6338583 47.2440945 -4384.1614173 8040.7007874 47.2440945 -4382.0393701 7664.4921260 47.2440945 -4354.6338583 8047.3307087 47.2440945 -4368.1377953 7904.6889764 47.2440945 -4352.3622047 8052.5944882 47.2440945 -4350.3700787 7909.8188976 47.2440945 -4351.9133858 7914.7913386 47.2440945 -4350.5826772 7919.4527559 47.2440945 -4348.4055118 8055.0157480 47.2440945 -4331.9921260 7923.6692913 47.2440945 -4345.4527559 7927.3110236 47.2440945 -4341.8149606 7930.2637795 47.2440945 -4337.5984252 7930.9527559 47.2440945 -4336.4055118 7932.9448819 47.2440945 -4332.2204724 7934.2637795 47.2440945 -4327.7795276 8054.5314961 47.2440945 -4313.4645669 7934.8661417 47.2440945 -4323.1850394 7934.8070866 47.2440945 -4320.9015748 7934.7440945 47.2440945 -4318.5551181 7933.9015748 47.2440945 -4314.0000000 7918.4763780 47.2440945 -4256.4409449 8051.1535433 47.2440945 -4295.2440945 7936.0984252 47.2440945 -3865.8503937 7825.1771654 47.2440945 -3908.2334646 7823.6299213 47.2440945 -3903.8657480 7822.5118110 47.2440945 -3901.8027559 7821.4173228 47.2440945 -3899.7940945 7818.5984252 47.2440945 -3896.1177165 7815.2362205 47.2440945 -3892.9283465 7811.4173228 47.2440945 -3890.3039370 7810.2244094 47.2440945 -3889.6149606 7805.5590551 47.2440945 -3887.4397638 7800.5905512 47.2440945 -3886.1074803 7795.4606299 47.2440945 -3885.6590551 7587.4488189 47.2440945 -3879.3464567 7578.7362205 47.2440945 -3873.2448819 7569.0944882 47.2440945 -3868.7500000 7558.8188976 47.2440945 -3865.9960630 7548.2244094 47.2440945 -3865.0692913 7929.9094488 47.2440945 -3848.3795276 7080.9015748 47.2440945 -3754.0716535 6140.2755906 47.2440945 -3758.4295276 7082.1929134 47.2440945 -3758.6818898 6145.7480315 47.2440945 -3757.9507874 6151.0472441 47.2440945 -3756.5303150 6156.0236220 47.2440945 -3754.2102362 6160.5236220 47.2440945 -3751.0606299 7080.3700787 47.2440945 -3749.3129921 6164.4055118 47.2440945 -3747.1783465 7080.6141732 47.2440945 -3744.5307087 6167.5551181 47.2440945 -3742.6811024 7081.6259843 47.2440945 -3739.8511811 6169.8740157 47.2440945 -3737.7055118 7083.3858268 47.2440945 -3735.3964567 6171.2952756 47.2440945 -3732.4023622 7085.8385827 47.2440945 -3731.2854331 6171.7716535 47.2440945 -3726.9330709 7088.9251969 47.2440945 -3727.6236220 7092.5629921 47.2440945 -3724.5098425 6171.2952756 47.2440945 -3721.4637795 7096.6535433 47.2440945 -3722.0244094 7179.5118110 47.2440945 -3688.0976378 6169.8740157 47.2440945 -3716.1610236 6167.5551181 47.2440945 -3711.1850394 6164.4055118 47.2440945 -3706.6877953 6160.5236220 47.2440945 -3702.8059055 6156.0236220 47.2440945 -3699.6570866 6151.0472441 47.2440945 -3697.3370079 6145.7480315 47.2440945 -3695.9157480 6140.2755906 47.2440945 -3695.4377953 7465.8464567 47.2440945 -3946.7244094 7200.8464567 47.2440945 -3932.0866142 7195.9527559 47.2440945 -3932.2106299 7495.3740157 47.2440945 -3895.5811024 7205.6496063 47.2440945 -3931.1562992 7210.2362205 47.2440945 -3929.4448819 7252.9606299 47.2440945 -3912.6118110 7297.5039370 47.2440945 -3901.4444882 7343.1141732 47.2440945 -3896.1318898 7347.9685039 47.2440945 -3895.4771654 7501.4763780 47.2440945 -3886.8677165 7352.6456693 47.2440945 -3894.0303150 7357.0196850 47.2440945 -3891.8295276 7360.9685039 47.2440945 -3888.9358268 7364.3858268 47.2440945 -3885.4295276 7509.0000000 47.2440945 -3879.3464567 7367.1771654 47.2440945 -3881.4066929 7466.4685039 47.2440945 -3709.4275591 7517.7125984 47.2440945 -3873.2448819 7527.3503937 47.2440945 -3868.7500000 7537.6259843 47.2440945 -3865.9960630 7921.0669291 47.2440945 -3832.0917323 7909.7834646 47.2440945 -3817.3877953 7896.3385827 47.2440945 -3804.6303150 7881.0669291 47.2440945 -3794.1326772 7468.5236220 47.2440945 -3705.0917323 7469.8464567 47.2440945 -3700.4807087 7470.4055118 47.2440945 -3695.7157480 7475.0275591 47.2440945 -3559.7062992 7470.1889764 47.2440945 -3690.9232283 7469.1968504 47.2440945 -3686.2299213 7467.4566929 47.2440945 -3681.7578740 7465.0157480 47.2440945 -3677.6279528 7461.9370079 47.2440945 -3673.9472441 7458.3070866 47.2440945 -3670.8137795 7454.2125984 47.2440945 -3668.3090551 7449.7716535 47.2440945 -3666.5003937 7445.0905512 47.2440945 -3665.4362205 7355.7559055 47.2440945 -3659.4740157 6957.9291339 47.2440945 -3659.1047244 6975.6062992 47.2440945 -3653.4106299 6992.1692913 47.2440945 -3645.0153543 7093.3661417 47.2440945 -3593.9070866 7201.4212598 47.2440945 -3559.5897638 7459.7834646 47.2440945 -3552.3094488 7313.5629921 47.2440945 -3542.9433071 7443.6377953 47.2440945 -3547.1688976 7426.9251969 47.2440945 -3544.3913386 6939.5748031 47.2440945 -3661.9582677 7266.5472441 47.2440945 -3667.0862205 3211.7515748 47.2440945 -2328.1397638 2469.7374016 47.2440945 -2062.3527559 2944.2188976 47.2440945 -2336.2948819 2957.1984252 47.2440945 -2217.9082677 2965.4846457 47.2440945 -2220.1287402 2974.0299213 47.2440945 -2220.8759843 4149.7401575 47.2440945 -2245.5078740 4144.2716535 47.2440945 -2245.0291339 4138.9685039 47.2440945 -2243.6086614 4133.9921260 47.2440945 -2241.2881890 4129.4960630 47.2440945 -2238.1393701 4125.6141732 47.2440945 -2234.2570866 4122.4645669 47.2440945 -2229.7598425 4120.1456693 47.2440945 -2224.7838583 2949.4236220 47.2440945 -2214.2830709 2942.3968504 47.2440945 -2209.3625984 2936.3311024 47.2440945 -2203.2968504 2931.4106299 47.2440945 -2196.2700787 2927.7858268 47.2440945 -2188.4952756 2925.5649606 47.2440945 -2180.2090551 2924.8173228 47.2440945 -2171.6633858 2925.5653543 47.2440945 -2163.1181102 2927.7858268 47.2440945 -2154.8318898 2931.4106299 47.2440945 -2147.0574803 2936.3311024 47.2440945 -2140.0303150 2942.3968504 47.2440945 -2133.9645669 2949.4236220 47.2440945 -2129.0440945 2957.1984252 47.2440945 -2125.4188976 2965.4846457 47.2440945 -2123.1984252 2974.0299213 47.2440945 -2122.4511811 4118.7244094 47.2440945 -2219.4811024 2982.5759843 47.2440945 -2220.1283465 2990.8618110 47.2440945 -2217.9082677 4118.2440945 47.2440945 -2214.0118110 2998.6362205 47.2440945 -2214.2830709 3005.6629921 47.2440945 -2209.3625984 4118.7244094 47.2440945 -2208.5425197 3011.7291339 47.2440945 -2203.2968504 4120.1456693 47.2440945 -2203.2393701 3016.6492126 47.2440945 -2196.2696850 4122.4645669 47.2440945 -2198.2637795 4125.6141732 47.2440945 -2193.7665354 3020.2748031 47.2440945 -2188.4952756 4129.4960630 47.2440945 -2189.8846457 4133.9921260 47.2440945 -2186.7354331 3022.4948819 47.2440945 -2180.2090551 4138.9685039 47.2440945 -2184.4153543 4144.2716535 47.2440945 -2182.9940945 4149.7401575 47.2440945 -2182.5157480 7088.4527559 47.2440945 -4153.5433071 6620.0629921 47.2440945 -4148.4251969 6631.7992126 47.2440945 -4162.8149606 7077.8543307 47.2440945 -4152.6181102 7067.5826772 47.2440945 -4149.8622047 7057.9409449 47.2440945 -4145.3661417 6606.2125984 47.2440945 -4136.0511811 7006.7952756 47.2440945 -4115.8385827 6590.5984252 47.2440945 -4126.0000000 6129.5039370 47.2440945 -3756.5303150 6124.5275591 47.2440945 -3754.2094488 3271.2614173 47.2440945 -2342.1566929 6998.0826772 47.2440945 -4109.7401575 6990.5629921 47.2440945 -4102.2165354 6989.5472441 47.2440945 -4100.7637795 6984.4606299 47.2440945 -4093.5039370 6979.9645669 47.2440945 -4083.8622047 6977.2125984 47.2440945 -4073.5905512 6976.2834646 47.2440945 -4062.9921260 6977.2125984 47.2440945 -4052.3937008 6979.9645669 47.2440945 -4042.1220472 6984.4606299 47.2440945 -4032.4803150 6990.5629921 47.2440945 -4023.7677165 6998.0826772 47.2440945 -4016.2440945 7006.7952756 47.2440945 -4010.1456693 7016.4370079 47.2440945 -4005.6496063 7026.7125984 47.2440945 -4002.8937008 6134.8070866 47.2440945 -3757.9507874 7458.5984252 47.2440945 -3987.8346457 7457.6732283 47.2440945 -3977.2362205 7191.1062992 47.2440945 -3931.5232283 7458.5984252 47.2440945 -3966.6377953 7461.3543307 47.2440945 -3956.3661417 7186.4370079 47.2440945 -3930.0452756 7182.0787402 47.2440945 -3927.8165354 7178.1496063 47.2440945 -3924.8984252 7174.7559055 47.2440945 -3921.3708661 7171.9881890 47.2440945 -3917.3314961 7084.2165354 47.2440945 -3763.0220472 6120.0314961 47.2440945 -3751.0606299 6116.1496063 47.2440945 -3747.1783465 6113.0000000 47.2440945 -3742.6811024 6110.6811024 47.2440945 -3737.7055118 6109.2598425 47.2440945 -3732.4023622 6108.7795276 47.2440945 -3726.9330709 6109.2598425 47.2440945 -3721.4637795 6110.6811024 47.2440945 -3716.1610236 6113.0000000 47.2440945 -3711.1850394 6116.1496063 47.2440945 -3706.6877953 6120.0314961 47.2440945 -3702.8059055 6124.5275591 47.2440945 -3699.6570866 6129.5039370 47.2440945 -3697.3370079 6134.8070866 47.2440945 -3695.9157480 6286.9842520 47.2440945 -3483.7665354 6902.6732283 47.2440945 -3658.9299213 6921.0039370 47.2440945 -3661.8992126 6885.0314961 47.2440945 -3653.1236220 6868.5196850 47.2440945 -3644.6240157 6292.2874016 47.2440945 -3485.1870079 6297.7559055 47.2440945 -3485.6653543 6282.0078740 47.2440945 -3481.4456693 6277.5118110 47.2440945 -3478.2964567 6273.6299213 47.2440945 -3474.4145669 6270.4803150 47.2440945 -3469.9169291 6268.1614173 47.2440945 -3464.9413386 6266.7401575 47.2440945 -3459.6385827 6266.2598425 47.2440945 -3454.1692913 6266.7401575 47.2440945 -3448.7000000 6268.1614173 47.2440945 -3443.3968504 6270.4803150 47.2440945 -3438.4212598 6273.6299213 47.2440945 -3433.9236220 6277.5118110 47.2440945 -3430.0417323 6282.0078740 47.2440945 -3426.8933071 6286.9842520 47.2440945 -3424.5732283 6292.2874016 47.2440945 -3423.1515748 6297.7559055 47.2440945 -3422.6732283 3986.7913386 47.2440945 -2517.7933071 3992.2598425 47.2440945 -2518.2716535 3981.4881890 47.2440945 -2516.3724409 3976.5118110 47.2440945 -2514.0519685 3972.0157480 47.2440945 -2510.9031496 3968.1338583 47.2440945 -2507.0208661 3964.9842520 47.2440945 -2502.5236220 3962.6653543 47.2440945 -2497.5480315 3961.2440945 47.2440945 -2492.2448819 3960.7637795 47.2440945 -2486.7755906 3961.2440945 47.2440945 -2481.3062992 3962.6653543 47.2440945 -2476.0031496 3964.9842520 47.2440945 -2471.0275591 3968.1338583 47.2440945 -2466.5303150 3972.0157480 47.2440945 -2462.6484252 3976.5118110 47.2440945 -2459.4992126 3981.4881890 47.2440945 -2457.1791339 3986.7913386 47.2440945 -2455.7582677 3992.2598425 47.2440945 -2455.2795276 7587.2322835 47.2440945 -4446.7047244 7361.2165354 47.2440945 -4446.8503937 7594.7559055 47.2440945 -4454.2283465 7387.5511811 47.2440945 -4444.5472441 7586.2165354 47.2440945 -4445.2519685 7581.1299213 47.2440945 -4437.9921260 7395.3976378 47.2440945 -4443.8582677 7428.5433071 47.2440945 -4434.9803150 7576.6377953 47.2440945 -4428.3503937 7459.6417323 47.2440945 -4420.4763780 7573.8818898 47.2440945 -4418.0787402 7487.7480315 47.2440945 -4400.7952756 7572.9566929 47.2440945 -4407.4803150 7573.8818898 47.2440945 -4396.8818898 7495.6062992 47.2440945 -4392.9409449 7576.6377953 47.2440945 -4386.6102362 7512.0118110 47.2440945 -4376.5314961 7581.1299213 47.2440945 -4376.9685039 7587.2322835 47.2440945 -4368.2559055 7531.6929134 47.2440945 -4348.4251969 7594.7559055 47.2440945 -4360.7322835 7603.4685039 47.2440945 -4354.6338583 7613.1102362 47.2440945 -4350.1377953 7623.3818898 47.2440945 -4347.3818898 7546.1968504 47.2440945 -4317.3267717 7633.9803150 47.2440945 -4346.4566929 7871.5196850 47.2440945 -4337.7755906 7729.8110236 47.2440945 -4255.9606299 7555.0748031 47.2440945 -4284.1811024 7557.5944882 47.2440945 -4255.4094488 7725.7874016 47.2440945 -4253.1692913 7558.0669291 47.2440945 -4250.0000000 7722.2795276 47.2440945 -4249.7519685 7555.0748031 47.2440945 -4215.8188976 7719.3858268 47.2440945 -4245.8031496 7717.1850394 47.2440945 -4241.4291339 7715.7401575 47.2440945 -4236.7519685 7715.6574803 47.2440945 -4236.1614173 7715.0826772 47.2440945 -4231.8976378 7710.1181102 47.2440945 -4191.1771654 7546.1968504 47.2440945 -4182.6732283 7709.0629921 47.2440945 -4182.5354331 7531.6929134 47.2440945 -4151.5748031 7696.1929134 47.2440945 -4134.5000000 7512.0118110 47.2440945 -4123.4685039 7692.7874016 47.2440945 -4126.4921260 7676.7244094 47.2440945 -4088.7440945 7500.4645669 47.2440945 -4111.9173228 7487.7480315 47.2440945 -4099.2047244 7459.6417323 47.2440945 -4079.5236220 7674.8661417 47.2440945 -4084.2125984 7673.7795276 47.2440945 -4079.4370079 7428.5433071 47.2440945 -4065.0196850 7673.5000000 47.2440945 -4074.5511811 7674.0314961 47.2440945 -4069.6811024 7675.3582677 47.2440945 -4064.9685039 7395.3976378 47.2440945 -4056.1417323 7677.4448819 47.2440945 -4060.5393701 7529.2913386 47.2440945 -4037.3307087 7539.5669291 47.2440945 -4034.5787402 7549.2086614 47.2440945 -4030.0826772 7769.8897638 47.2440945 -3900.4228346 7361.2165354 47.2440945 -4053.1496063 7127.6771654 47.2440945 -4045.7716535 7557.9212598 47.2440945 -4023.9842520 7565.4409449 47.2440945 -4016.4606299 7571.5433071 47.2440945 -4007.7480315 7601.0708661 47.2440945 -3956.6062992 7605.5669291 47.2440945 -3946.9645669 7608.3188976 47.2440945 -3936.6897638 7609.2480315 47.2440945 -3926.0933071 7608.3188976 47.2440945 -3915.4968504 7605.5669291 47.2440945 -3905.2216535 7601.0708661 47.2440945 -3895.5811024 7772.8425197 47.2440945 -3896.2070866 7776.4803150 47.2440945 -3892.5673228 7594.9685039 47.2440945 -3886.8677165 7780.6968504 47.2440945 -3889.6149606 7785.3622047 47.2440945 -3887.4397638 7790.3346457 47.2440945 -3886.1074803 7654.8503937 47.2440945 -4350.1377953 7899.5629921 47.2440945 -4351.9133858 7894.5905512 47.2440945 -4350.5826772 7889.9251969 47.2440945 -4348.4055118 7644.5748031 47.2440945 -4347.3818898 7134.9842520 47.2440945 -4620.6535433 6922.2244094 47.2440945 -4626.1259843 7143.6968504 47.2440945 -4626.7559055 6926.9645669 47.2440945 -4625.3976378 6931.5275591 47.2440945 -4623.9094488 6935.7874016 47.2440945 -4621.7047244 6939.6338583 47.2440945 -4618.8385827 7127.4606299 47.2440945 -4613.1338583 6942.9645669 47.2440945 -4615.3858268 6945.6929134 47.2440945 -4611.4370079 7121.3582677 47.2440945 -4604.4173228 6986.5944882 47.2440945 -4540.5984252 7116.8661417 47.2440945 -4594.7795276 7114.1102362 47.2440945 -4584.5039370 7113.1850394 47.2440945 -4573.9055118 7114.1102362 47.2440945 -4563.3110236 7116.8661417 47.2440945 -4553.0354331 7121.3582677 47.2440945 -4543.3937008 7150.8858268 47.2440945 -4492.2519685 7044.9842520 47.2440945 -4439.4606299 7156.9881890 47.2440945 -4483.5393701 7164.5118110 47.2440945 -4476.0157480 7173.2244094 47.2440945 -4469.9173228 7182.8622047 47.2440945 -4465.4212598 7193.1377953 47.2440945 -4462.6692913 7203.7362205 47.2440945 -4461.7401575 7603.4685039 47.2440945 -4460.3267717 7327.0314961 47.2440945 -4443.8582677 7311.2559055 47.2440945 -4439.6338583 7293.8897638 47.2440945 -4434.9803150 7047.0748031 47.2440945 -4435.0314961 7048.4015748 47.2440945 -4430.3188976 7262.7913386 47.2440945 -4420.4763780 7048.9330709 47.2440945 -4425.4488189 7048.6496063 47.2440945 -4420.5629921 7047.5669291 47.2440945 -4415.7874016 7234.6811024 47.2440945 -4400.7952756 7045.7047244 47.2440945 -4411.2559055 7027.5000000 47.2440945 -4369.0984252 7221.9685039 47.2440945 -4388.0826772 7210.4212598 47.2440945 -4376.5314961 7190.7401575 47.2440945 -4348.4251969 7014.9015748 47.2440945 -4324.9409449 7176.2362205 47.2440945 -4317.3267717 7008.1181102 47.2440945 -4279.5275591 7167.3543307 47.2440945 -4284.1811024 7164.3661417 47.2440945 -4250.0000000 7007.3070866 47.2440945 -4274.6968504 7005.7086614 47.2440945 -4270.0708661 7003.3700787 47.2440945 -4265.7716535 7000.3503937 47.2440945 -4261.9173228 6996.7362205 47.2440945 -4258.6141732 6992.6299213 47.2440945 -4255.9527559 6988.1377953 47.2440945 -4254.0078740 6983.3818898 47.2440945 -4252.8346457 6978.5039370 47.2440945 -4252.4606299 6782.9960630 47.2440945 -4659.7086614 6912.7007874 47.2440945 -4625.2559055 6739.7007874 47.2440945 -4586.8897638 6917.4251969 47.2440945 -4626.0787402 7174.2086614 47.2440945 -4634.9291339 7163.6102362 47.2440945 -4634.0039370 7153.3346457 47.2440945 -4631.2519685 6908.1692913 47.2440945 -4623.6771654 6903.9566929 47.2440945 -4621.3818898 6900.1692913 47.2440945 -4618.4409449 6896.9055118 47.2440945 -4614.9212598 6847.0748031 47.2440945 -4540.5354331 6725.0590551 47.2440945 -4562.2598425 6683.4055118 47.2440945 -4456.8188976 6809.0629921 47.2440945 -4459.4685039 6801.4685039 47.2440945 -4433.7165354 6659.0984252 47.2440945 -4346.0826772 6783.7440945 47.2440945 -4373.5905512 6771.6968504 47.2440945 -4284.8700787 6652.7598425 47.2440945 -4232.8897638 6771.7992126 47.2440945 -4280.0826772 6772.6771654 47.2440945 -4275.3779528 6774.3070866 47.2440945 -4270.8740157 6776.6417323 47.2440945 -4266.6929134 6779.6181102 47.2440945 -4262.9448819 6783.1653543 47.2440945 -4259.7244094 6787.1850394 47.2440945 -4257.1220472 6791.5708661 47.2440945 -4255.2047244 6796.2125984 47.2440945 -4254.0196850 6800.9803150 47.2440945 -4253.6023622 7167.3543307 47.2440945 -4215.8188976 6651.7480315 47.2440945 -4214.3464567 7170.2322835 47.2440945 -4205.0866142 6647.8425197 47.2440945 -4196.1889764 7176.2362205 47.2440945 -4182.6732283 6641.1377953 47.2440945 -4178.8700787 7190.7401575 47.2440945 -4151.5748031 7099.0472441 47.2440945 -4152.6181102 7109.3228346 47.2440945 -4149.8622047 7210.4212598 47.2440945 -4123.4685039 7118.9645669 47.2440945 -4145.3661417 7127.6771654 47.2440945 -4139.2677165 7135.2007874 47.2440945 -4131.7440945 7141.2992126 47.2440945 -4123.0314961 7234.6811024 47.2440945 -4099.2047244 7145.7952756 47.2440945 -4113.3897638 7148.5472441 47.2440945 -4103.1181102 7149.4763780 47.2440945 -4092.5196850 7262.7913386 47.2440945 -4079.5236220 7148.5472441 47.2440945 -4081.9212598 7145.7952756 47.2440945 -4071.6496063 7293.8897638 47.2440945 -4065.0196850 7141.2992126 47.2440945 -4062.0078740 7327.0314961 47.2440945 -4056.1417323 7135.2007874 47.2440945 -4053.2952756 7330.0944882 47.2440945 -4055.8740157 7334.8818898 47.2440945 -4055.4527559 3365.4590551 47.2440945 -1978.2807087 2932.4917323 47.2440945 -1743.5192913 2927.4157480 47.2440945 -1744.3716535 2937.3421260 47.2440945 -1741.7980315 2941.8204724 47.2440945 -1739.2610236 2945.7897638 47.2440945 -1735.9846457 6303.2283465 47.2440945 -3485.1870079 6308.5275591 47.2440945 -3483.7665354 6313.5039370 47.2440945 -3481.4456693 6318.0039370 47.2440945 -3478.2964567 6321.8858268 47.2440945 -3474.4145669 6325.0354331 47.2440945 -3469.9177165 6327.3543307 47.2440945 -3464.9413386 6328.7755906 47.2440945 -3459.6385827 6329.2519685 47.2440945 -3454.1692913 6328.7755906 47.2440945 -3448.7000000 6327.3543307 47.2440945 -3443.3968504 6325.0354331 47.2440945 -3438.4212598 6321.8858268 47.2440945 -3433.9236220 6318.0039370 47.2440945 -3430.0417323 6313.5039370 47.2440945 -3426.8933071 3663.9976378 47.2440945 -1661.9173228 6308.5275591 47.2440945 -3424.5732283 6303.2283465 47.2440945 -3423.1515748 4173.8700787 47.2440945 -2193.7665354 4177.0196850 47.2440945 -2198.2637795 4179.3385827 47.2440945 -2203.2393701 4180.7598425 47.2440945 -2208.5425197 4181.2362205 47.2440945 -2214.0118110 4180.7598425 47.2440945 -2219.4811024 4179.3385827 47.2440945 -2224.7838583 4177.0196850 47.2440945 -2229.7594488 4019.5393701 47.2440945 -2502.5236220 4016.3897638 47.2440945 -2507.0208661 4012.5078740 47.2440945 -2510.9031496 4008.0078740 47.2440945 -2514.0519685 4003.0354331 47.2440945 -2516.3724409 3997.7322835 47.2440945 -2517.7933071 4021.8582677 47.2440945 -2497.5480315 4023.2795276 47.2440945 -2492.2448819 4023.7559055 47.2440945 -2486.7755906 4023.2795276 47.2440945 -2481.3062992 4021.8582677 47.2440945 -2476.0031496 4019.5393701 47.2440945 -2471.0275591 4016.3897638 47.2440945 -2466.5303150 4173.8700787 47.2440945 -2234.2570866 4012.5078740 47.2440945 -2462.6484252 4008.0078740 47.2440945 -2459.4992126 4003.0314961 47.2440945 -2457.1791339 3997.7322835 47.2440945 -2455.7582677 4169.9881890 47.2440945 -2238.1393701 4165.4881890 47.2440945 -2241.2881890 4160.5157480 47.2440945 -2243.6086614 4155.2125984 47.2440945 -2245.0291339 3252.3460630 47.2440945 -2334.0283465 3232.3062992 47.2440945 -2329.3082677 4169.9881890 47.2440945 -2189.8846457 4165.4881890 47.2440945 -2186.7354331 4160.5118110 47.2440945 -2184.4153543 4155.2125984 47.2440945 -2182.9940945 3418.3661417 47.2440945 -2002.4295276 3415.0905512 47.2440945 -2006.3992126 3411.1740157 47.2440945 -2009.7397638 3406.7381890 47.2440945 -2012.3492126 3023.2425197 47.2440945 -2171.6637795 3022.4948819 47.2440945 -2163.1177165 3401.9157480 47.2440945 -2014.1492126 3020.2748031 47.2440945 -2154.8318898 3016.6492126 47.2440945 -2147.0570866 3011.7291339 47.2440945 -2140.0303150 3005.6633858 47.2440945 -2133.9645669 2998.6362205 47.2440945 -2129.0440945 2990.8618110 47.2440945 -2125.4188976 2982.5759843 47.2440945 -2123.1984252 3396.8543307 47.2440945 -2015.0842520 3391.7074803 47.2440945 -2015.1259843 3420.9031496 47.2440945 -1997.9515748 3422.6240157 47.2440945 -1993.1007874 3440.7283465 47.2440945 -1963.6133858 3437.3877953 47.2440945 -1967.5291339 3443.3377953 47.2440945 -1959.1771654 3445.1377953 47.2440945 -1954.3551181 3446.0728346 47.2440945 -1949.2937008 3446.1145669 47.2440945 -1944.1464567 3445.2622047 47.2440945 -1939.0708661 3443.5413386 47.2440945 -1934.2200787 3441.0039370 47.2440945 -1929.7421260 3437.7279528 47.2440945 -1925.7724409 3433.8122047 47.2440945 -1922.4318898 3429.3755906 47.2440945 -1919.8220472 3424.5535433 47.2440945 -1918.0224409 3419.4917323 47.2440945 -1917.0874016 3414.3456693 47.2440945 -1917.0456693 2976.3015748 47.2440945 -1683.1366142 2977.1318898 47.2440945 -1678.3311024 2977.1594488 47.2440945 -1673.4543307 2976.3838583 47.2440945 -1668.6397638 2974.8267717 47.2440945 -1664.0185039 2972.5295276 47.2440945 -1659.7165354 3647.5011811 47.2440945 -1649.6000000 2969.5559055 47.2440945 -1655.8511811 2965.9870079 47.2440945 -1652.5279528 2961.9192913 47.2440945 -1649.8377953 2957.4641732 47.2440945 -1647.8535433 3633.3937008 47.2440945 -1634.6051181 2952.7437008 47.2440945 -1646.6299213 2947.8858268 47.2440945 -1646.1996063 2758.3248031 47.2440945 -1641.7322835 2766.8704724 47.2440945 -1640.9846457 2775.1570866 47.2440945 -1638.7645669 2782.9311024 47.2440945 -1635.1389764 2789.9582677 47.2440945 -1630.2185039 3622.1035433 47.2440945 -1617.3885827 2796.0244094 47.2440945 -1624.1527559 2800.9440945 47.2440945 -1617.1259843 3376.2767717 47.2440945 -1538.2188976 3384.5625984 47.2440945 -1535.9984252 3392.3370079 47.2440945 -1532.3732283 3399.3637795 47.2440945 -1527.4527559 3405.4299213 47.2440945 -1521.3870079 3410.3500000 47.2440945 -1514.3598425 3495.4000000 47.2440945 -1381.6208661 2804.5696850 47.2440945 -1609.3515748 2806.7897638 47.2440945 -1601.0653543 2807.5374016 47.2440945 -1592.5196850 3367.7307087 47.2440945 -1538.9661417 2806.7905512 47.2440945 -1583.9740157 2804.5696850 47.2440945 -1575.6877953 2800.9440945 47.2440945 -1567.9133858 2796.0244094 47.2440945 -1560.8862205 2789.9582677 47.2440945 -1554.8204724 2782.9311024 47.2440945 -1549.9003937 2775.1570866 47.2440945 -1546.2751969 2766.8708661 47.2440945 -1544.0547244 2758.3248031 47.2440945 -1543.3070866 3413.9755906 47.2440945 -1506.5854331 3416.1956693 47.2440945 -1498.2992126 3416.9433071 47.2440945 -1489.7535433 3416.1956693 47.2440945 -1481.2078740 3413.9755906 47.2440945 -1472.9220472 3410.3500000 47.2440945 -1465.1472441 3405.4299213 47.2440945 -1458.1204724 3399.3641732 47.2440945 -1452.0547244 3392.3370079 47.2440945 -1447.1342520 3384.5625984 47.2440945 -1443.5090551 3376.2767717 47.2440945 -1441.2889764 3367.7307087 47.2440945 -1440.5409449 3386.6314961 47.2440945 -2014.2732283 2469.7374016 47.2440945 -1698.6673228 3381.7807087 47.2440945 -2012.5523622 3377.3031496 47.2440945 -2010.0153543 3373.3334646 47.2440945 -2006.7389764 3369.9925197 47.2440945 -2002.8232283 3367.3826772 47.2440945 -1998.3870079 3365.5830709 47.2440945 -1993.5645669 3364.6484252 47.2440945 -1988.5035433 3364.6070866 47.2440945 -1983.3562992 2922.2688976 47.2440945 -1744.3299213 2917.2074803 47.2440945 -1743.3948819 2912.3854331 47.2440945 -1741.5952756 2907.9488189 47.2440945 -1738.9854331 2904.0334646 47.2440945 -1735.6452756 2900.7570866 47.2440945 -1731.6755906 2898.2196850 47.2440945 -1727.1972441 2896.4988189 47.2440945 -1722.3464567 2895.6468504 47.2440945 -1717.2708661 2895.6885827 47.2440945 -1712.1240157 2896.6232283 47.2440945 -1707.0622047 2898.4224409 47.2440945 -1702.2401575 2901.0330709 47.2440945 -1697.8043307 2741.4933071 47.2440945 -1638.7641732 2733.7185039 47.2440945 -1635.1389764 2726.6921260 47.2440945 -1630.2188976 2720.6259843 47.2440945 -1624.1531496 2715.7055118 47.2440945 -1617.1259843 2712.0803150 47.2440945 -1609.3511811 2709.8598425 47.2440945 -1601.0653543 2709.1122047 47.2440945 -1592.5196850 2705.9578740 47.2440945 -1289.5216535 2904.3724409 47.2440945 -1693.8881890 2749.7791339 47.2440945 -1640.9846457 2919.1362205 47.2440945 -1668.3165354 2920.7460630 47.2440945 -1663.7133858 2923.0917323 47.2440945 -1659.4374016 2926.1086614 47.2440945 -1655.6059055 2929.7149606 47.2440945 -1652.3232283 2933.8125984 47.2440945 -1649.6787402 2938.2897638 47.2440945 -1647.7452756 2943.0236220 47.2440945 -1646.5748031 2709.8598425 47.2440945 -1583.9740157 2712.0803150 47.2440945 -1575.6881890 2715.7055118 47.2440945 -1567.9133858 2720.6259843 47.2440945 -1560.8866142 2726.6921260 47.2440945 -1554.8204724 2733.7185039 47.2440945 -1549.9003937 2741.4933071 47.2440945 -1546.2751969 2749.7791339 47.2440945 -1544.0547244 3350.8992126 47.2440945 -1535.9984252 3359.1854331 47.2440945 -1538.2188976 3343.1244094 47.2440945 -1532.3732283 3336.0976378 47.2440945 -1527.4527559 3330.0318898 47.2440945 -1521.3870079 3325.1114173 47.2440945 -1514.3598425 3321.4866142 47.2440945 -1506.5854331 3319.2657480 47.2440945 -1498.2992126 3318.5181102 47.2440945 -1489.7535433 3319.2661417 47.2440945 -1481.2078740 3321.4866142 47.2440945 -1472.9220472 3325.1114173 47.2440945 -1465.1472441 3330.0318898 47.2440945 -1458.1204724 3336.0976378 47.2440945 -1452.0547244 3343.1244094 47.2440945 -1447.1342520 3350.8992126 47.2440945 -1443.5090551 3359.1854331 47.2440945 -1441.2885827 3020.9185039 47.2440945 -1107.6791339 3399.9401575 47.2440945 -1922.1562992 3395.9708661 47.2440945 -1925.4326772 3404.4188976 47.2440945 -1919.6192913 3409.2696850 47.2440945 -1917.8980315 7297.7480315 47.2440945 -4943.3149606 7260.8464567 47.2440945 -4941.3818898 7279.2204724 47.2440945 -4943.7992126 7315.9724409 47.2440945 -4939.9370079 7243.0787402 47.2440945 -4936.1141732 7340.0314961 47.2440945 -4933.4881890 7229.1771654 47.2440945 -4929.4842520 7494.0511811 47.2440945 -4892.2204724 7226.3503937 47.2440945 -4928.1377953 7137.8464567 47.2440945 -4877.0433071 7561.9094488 47.2440945 -4874.0393701 7283.4370079 47.2440945 -4823.0472441 6820.3110236 47.2440945 -4693.7125984 7278.9921260 47.2440945 -4821.7283465 7274.8110236 47.2440945 -4819.7362205 7273.6181102 47.2440945 -4819.0472441 7269.4015748 47.2440945 -4816.0944882 7265.7637795 47.2440945 -4812.4566929 7262.8110236 47.2440945 -4808.2401575 7260.6338583 47.2440945 -4803.5748031 7259.3031496 47.2440945 -4798.6023622 7258.8543307 47.2440945 -4793.4763780 7259.3031496 47.2440945 -4788.3464567 7260.6338583 47.2440945 -4783.3740157 7262.8110236 47.2440945 -4778.7125984 7271.4685039 47.2440945 -4763.7125984 7355.2559055 47.2440945 -4618.5944882 6806.2834646 47.2440945 -4684.2086614 6793.7559055 47.2440945 -4672.7952756 7184.8031496 47.2440945 -4634.0039370 7195.0787402 47.2440945 -4631.2519685 7204.7204724 47.2440945 -4626.7559055 7213.4330709 47.2440945 -4620.6535433 7220.9527559 47.2440945 -4613.1338583 7358.0472441 47.2440945 -4614.5708661 7361.4645669 47.2440945 -4611.0629921 7227.0551181 47.2440945 -4604.4173228 7365.4133858 47.2440945 -4608.1692913 7369.7874016 47.2440945 -4605.9685039 7374.4645669 47.2440945 -4604.5236220 7379.3188976 47.2440945 -4603.8661417 7420.0393701 47.2440945 -4598.9015748 7428.6811024 47.2440945 -4597.8503937 7476.7125984 47.2440945 -4584.9763780 7484.7244094 47.2440945 -4581.5708661 7522.4724409 47.2440945 -4565.5078740 7526.4527559 47.2440945 -4563.8740157 7527.0039370 47.2440945 -4563.6496063 7531.7795276 47.2440945 -4562.5669291 7256.5826772 47.2440945 -4492.2519685 7676.2913386 47.2440945 -4497.2598425 7674.5275591 47.2440945 -4497.1023622 7664.2519685 47.2440945 -4494.3503937 7654.6102362 47.2440945 -4489.8543307 7250.4803150 47.2440945 -4483.5393701 7242.9606299 47.2440945 -4476.0157480 7234.2480315 47.2440945 -4469.9173228 7224.6062992 47.2440945 -4465.4212598 7214.3307087 47.2440945 -4462.6692913 - - - - - - - - - - -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.4999896 0.0000002 -0.8660314 -0.5307967 0.0000002 -0.8474992 -0.5307967 0.0000002 -0.8474992 -0.4999896 0.0000002 -0.8660314 -0.6187776 0.0000000 -0.7855662 -0.6187776 0.0000000 -0.7855662 -0.7248236 0.0000000 -0.6889345 -0.7248236 0.0000000 -0.6889345 -0.8183445 0.0000000 -0.5747281 -0.8183445 0.0000000 -0.5747281 -0.8595659 0.0000000 -0.5110249 -0.8595659 0.0000000 -0.5110249 -0.8976962 -0.0000000 -0.4406150 -0.8976962 -0.0000000 -0.4406150 -0.9564668 0.0000001 -0.2918411 -0.9564668 0.0000001 -0.2918411 -0.9907651 0.0000001 -0.1355898 -0.9907651 0.0000001 -0.1355898 -0.9984755 0.0000000 -0.0551971 -0.9984755 0.0000000 -0.0551971 -0.9911437 0.0000000 -0.1327935 -0.9911437 0.0000000 -0.1327935 -0.9580680 0.0000000 -0.2865409 -0.9580680 0.0000000 -0.2865409 -0.9012743 0.0000000 -0.4332489 -0.9012743 0.0000000 -0.4332489 -0.8222172 0.0000000 -0.5691738 -0.8222172 0.0000000 -0.5691738 -0.7228300 0.0000000 -0.6910259 -0.7228300 0.0000000 -0.6910259 -0.6056276 0.0000000 -0.7957482 -0.6056276 0.0000000 -0.7957482 -0.5077208 -0.0000002 -0.8615217 -0.5077208 -0.0000002 -0.8615217 -0.4345103 -0.0000002 -0.9006669 -0.4345103 -0.0000002 -0.9006669 -0.3132293 0.0000000 -0.9496775 -0.3132293 0.0000000 -0.9496775 -0.1435557 -0.0000000 -0.9896422 -0.1435557 -0.0000000 -0.9896422 -0.0131566 0.0000001 -0.9999134 -0.0131566 0.0000001 -0.9999134 -0.2440722 0.0000001 -0.9697571 -0.2440722 0.0000001 -0.9697571 -0.8660255 0.0000003 -0.4999999 -0.8660255 0.0000003 -0.4999999 -0.9659258 0.0000003 0.2588192 -0.9659258 0.0000003 0.2588192 -0.7071066 -0.0000000 0.7071069 -0.7071066 -0.0000000 0.7071069 -0.0000001 0.0000000 1.0000000 -0.0000001 0.0000000 1.0000000 0.7177984 -0.0000001 0.6962510 0.7177984 -0.0000001 0.6962510 0.8593628 -0.0000001 0.5113664 0.8593628 -0.0000001 0.5113664 0.7852668 0.0000000 0.6191575 0.7852668 0.0000000 0.6191575 0.6658423 -0.0000000 0.7460925 0.6658423 -0.0000000 0.7460925 0.5627571 -0.0000003 0.8266223 0.5627571 -0.0000003 0.8266223 0.4922985 -0.0000003 0.8704265 0.4922985 -0.0000003 0.8704265 0.3863498 0.0000000 0.9223523 0.3863498 0.0000000 0.9223523 0.2369965 0.0000000 0.9715105 0.2369965 0.0000000 0.9715105 0.0817933 0.0000000 0.9966493 0.0817933 0.0000000 0.9966493 -0.0754557 0.0000000 0.9971492 -0.0754557 0.0000000 0.9971492 -0.2308275 -0.0000000 0.9729947 -0.2308275 -0.0000000 0.9729947 -0.3805348 -0.0000000 0.9247666 -0.3805348 -0.0000000 0.9247666 -0.4514583 0.0000000 0.8922922 -0.4514583 0.0000000 0.8922922 -0.3779611 0.0000000 0.9258215 -0.3779611 0.0000000 0.9258215 -0.2254848 0.0000000 0.9742467 -0.2254848 0.0000000 0.9742467 -0.0672454 0.0000000 0.9977365 -0.0672454 0.0000000 0.9977365 0.0886151 0.0000000 0.9960659 0.0886151 0.0000000 0.9960659 0.2342666 0.0000000 0.9721724 0.2342666 0.0000000 0.9721724 0.3709194 0.0000000 0.9286651 0.3709194 0.0000000 0.9286651 0.4685765 -0.0000001 0.8834229 0.4685765 -0.0000001 0.8834229 0.5336469 0.0000000 0.8457074 0.5336469 0.0000000 0.8457074 0.6293318 0.0000001 0.7771368 0.6293318 0.0000001 0.7771368 0.7431181 0.0000000 0.6691603 0.7431181 0.0000000 0.6691603 0.8386753 0.0000000 0.5446317 0.8386753 0.0000000 0.5446317 0.9135325 0.0000000 0.4067658 0.9135325 0.0000000 0.4067658 0.9550034 -0.0000003 0.2965949 0.9550034 -0.0000003 0.2965949 0.9753367 -0.0000003 0.2207224 0.9753367 -0.0000003 0.2207224 0.9945217 0.0000000 0.1045301 0.9945217 0.0000000 0.1045301 0.9986258 0.0000000 -0.0524074 0.9986258 0.0000000 -0.0524074 0.9781338 -0.0000000 -0.2079764 0.9781338 -0.0000000 -0.2079764 0.9335918 0.0000000 -0.3583382 0.9335918 0.0000000 -0.3583382 0.8850080 -0.0000001 -0.4655759 0.9026292 0.0000000 -0.4304190 0.8850080 -0.0000001 -0.4655759 0.9026292 0.0000000 -0.4304190 0.8660334 -0.0000001 -0.4999861 0.8660334 -0.0000001 -0.4999861 0.8660365 -0.0000002 -0.4999808 0.8660365 -0.0000002 -0.4999808 0.8457600 -0.0000008 -0.5335636 0.8457600 -0.0000008 -0.5335636 0.7771248 -0.0000006 -0.6293466 0.7771248 -0.0000006 -0.6293466 0.6691101 0.0000000 -0.7431633 0.6691101 0.0000000 -0.7431633 0.5446369 0.0000000 -0.8386720 0.5446369 0.0000000 -0.8386720 0.4067436 0.0000000 -0.9135424 0.4067436 0.0000000 -0.9135424 0.2966145 0.0000000 -0.9549973 0.2966145 0.0000000 -0.9549973 0.2588165 0.0000000 -0.9659265 0.2588127 0.0000000 -0.9659275 0.2588127 0.0000000 -0.9659275 0.2588165 0.0000000 -0.9659265 0.2588554 -0.0000000 -0.9659161 0.2588554 -0.0000000 -0.9659161 0.2207460 -0.0000000 -0.9753313 0.2207460 -0.0000000 -0.9753313 0.1045109 0.0000000 -0.9945237 0.1045109 0.0000000 -0.9945237 -0.0523160 0.0000000 -0.9986306 -0.0523160 0.0000000 -0.9986306 -0.2079866 0.0000000 -0.9781317 -0.2079866 0.0000000 -0.9781317 -0.3584333 0.0000000 -0.9335553 -0.3584333 0.0000000 -0.9335553 -0.4304190 0.0000000 -0.9026292 -0.4655571 0.0000000 -0.8850179 -0.4655571 0.0000000 -0.8850179 -0.4304190 0.0000000 -0.9026292 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 7 9 10 10 9 11 11 9 12 10 11 13 10 13 14 11 12 15 15 12 16 16 12 17 17 12 18 18 12 19 19 12 20 20 12 21 21 12 22 22 12 23 23 12 24 24 12 25 25 12 26 26 12 27 27 12 28 28 12 29 28 29 30 28 30 31 31 30 32 32 30 33 28 31 34 28 34 35 28 35 36 28 36 37 28 37 38 38 37 39 39 37 40 39 40 41 41 40 42 42 40 43 43 40 44 44 40 45 44 45 46 46 45 47 47 45 48 48 45 49 49 45 50 50 45 51 51 45 52 52 45 53 53 45 54 55 56 57 56 55 58 58 55 59 59 55 60 60 55 61 61 55 62 61 62 63 63 62 64 63 64 65 63 65 66 63 66 67 63 67 68 33 69 32 69 33 70 70 33 71 32 69 72 72 69 73 73 69 74 73 74 75 70 71 76 76 71 77 77 71 78 78 71 79 79 71 80 80 71 81 80 81 82 80 82 83 83 82 84 84 82 85 84 85 86 86 85 87 87 85 88 87 88 89 89 88 90 90 88 91 91 88 92 92 88 93 93 88 94 94 88 95 95 88 96 96 88 97 97 88 98 98 88 99 99 88 100 100 88 101 101 88 102 101 102 103 103 102 104 103 104 105 105 104 106 105 106 107 107 106 108 107 108 109 107 109 110 107 110 111 107 111 112 112 111 113 112 113 114 112 114 115 112 115 116 112 116 117 117 116 118 117 118 119 117 119 120 117 120 121 121 120 122 121 122 123 121 123 124 124 123 125 124 125 126 126 125 127 126 127 128 128 127 129 129 127 130 130 127 131 132 133 134 133 132 135 135 132 136 136 132 137 137 132 138 138 132 139 139 132 140 140 132 141 140 141 142 142 141 143 142 143 144 74 145 75 145 74 146 145 146 147 145 147 148 145 148 149 145 149 150 150 149 151 150 151 152 150 152 153 153 152 154 153 154 155 155 154 156 156 154 157 157 154 158 158 154 159 159 154 160 160 154 161 161 154 162 161 162 163 163 162 164 164 162 165 165 162 166 166 162 167 167 162 68 68 162 63 63 162 168 168 162 169 169 162 170 170 162 171 171 162 172 172 162 173 172 173 174 172 174 175 175 174 176 175 176 177 175 177 178 175 178 179 179 178 180 179 180 181 179 181 182 182 181 183 183 181 184 184 181 185 184 185 186 186 185 187 186 187 188 188 187 100 100 187 189 100 189 190 100 190 191 100 191 192 100 192 193 100 193 194 100 194 195 100 195 196 100 196 99 197 198 199 198 197 200 200 197 201 201 197 202 202 197 203 202 203 204 204 203 205 206 207 208 207 206 209 207 209 210 207 210 211 211 210 212 211 212 213 211 213 214 214 213 215 214 215 216 216 215 217 216 217 218 218 217 219 219 217 220 219 220 221 221 220 222 222 220 223 222 223 224 224 223 225 225 223 226 227 228 229 228 227 230 228 230 231 228 231 206 228 206 232 232 206 233 233 206 234 234 206 235 235 206 236 236 206 237 237 206 238 238 206 208 230 227 239 239 227 240 240 227 241 241 227 242 242 227 243 243 227 244 244 227 245 245 227 246 246 227 247 247 227 248 248 227 249 249 227 250 250 227 251 251 227 252 252 227 253 253 227 254 255 256 257 256 255 258 258 255 259 259 255 260 227 261 262 261 227 263 261 263 264 264 263 265 265 263 266 266 263 267 267 263 268 268 263 269 269 263 270 270 263 271 271 263 272 272 263 273 272 273 274 273 263 275 275 263 276 276 263 277 277 263 278 278 263 279 279 263 280 280 263 281 281 263 282 282 263 283 283 263 284 284 263 285 285 263 286 286 263 287 287 263 288 288 263 289 289 263 290 290 263 291 291 263 292 292 263 293 293 263 294 294 263 295 286 287 296 296 287 297 296 297 298 298 297 299 299 297 300 300 297 301 300 301 302 302 301 303 303 301 304 304 301 305 305 301 306 306 301 307 294 295 308 308 295 309 309 295 310 310 295 311 311 295 312 312 295 313 313 295 314 314 295 315 315 295 316 316 295 317 316 317 318 316 318 319 317 295 320 320 295 321 321 295 322 322 295 323 323 295 324 324 295 325 325 295 326 326 295 327 327 295 328 328 295 329 329 295 330 330 295 331 331 295 332 332 295 333 333 295 334 334 295 335 335 295 336 336 295 337 338 339 340 339 338 341 341 338 342 342 338 343 343 338 344 344 338 345 345 338 346 346 338 347 347 338 348 348 338 349 349 338 350 350 338 351 351 338 352 352 338 353 353 338 354 354 338 355 340 339 356 340 356 357 340 357 358 340 358 359 359 358 360 360 358 361 361 358 362 362 358 363 363 358 364 364 358 365 365 358 366 366 358 367 367 358 368 368 358 369 369 358 370 370 358 371 371 358 372 372 358 373 366 367 374 366 374 375 366 375 376 366 376 377 366 377 378 366 378 379 366 379 380 366 380 381 381 380 382 381 382 383 381 383 384 381 384 385 381 385 386 381 386 387 387 386 388 388 386 389 389 386 390 390 386 391 390 391 392 390 392 393 390 393 228 390 228 232 340 359 394 340 394 395 340 395 396 340 396 397 340 397 226 340 226 398 398 226 399 399 226 400 400 226 401 401 226 223 401 223 402 401 402 403 401 403 404 404 403 405 404 405 406 404 406 407 404 407 408 404 408 409 404 409 410 404 410 411 404 411 254 404 254 412 412 254 227 412 227 262 340 398 413 340 413 414 340 414 415 415 414 416 340 415 417 340 417 418 340 418 419 340 419 420 340 420 421 340 421 422 340 422 423 340 423 424 340 424 425 340 425 426 340 426 427 340 427 428 340 428 260 340 260 255 340 255 429 340 429 430 340 430 431 340 431 432 340 432 433 340 433 434 434 433 435 434 435 436 434 436 437 434 437 438 434 438 439 439 438 440 439 440 307 439 307 301 439 301 441 439 441 442 439 442 443 439 443 444 439 444 445 445 444 446 445 446 447 445 447 448 445 448 449 445 449 450 445 450 451 445 451 452 445 452 453 445 453 336 448 447 454 448 454 455 448 455 456 448 456 319 319 456 457 319 457 458 319 458 459 319 459 460 319 460 461 319 461 462 319 462 463 319 463 464 319 464 316 336 453 465 336 465 466 336 466 467 336 467 468 336 468 469 336 469 470 336 470 471 336 471 472 336 472 473 336 473 474 336 474 475 336 475 335 272 476 477 476 272 478 478 272 479 479 272 274 169 480 168 480 169 481 480 481 482 482 481 483 483 481 484 483 484 485 483 485 486 486 485 487 486 487 488 488 487 489 488 489 490 490 489 491 491 489 492 491 492 493 493 492 494 493 494 495 495 494 496 496 494 497 496 497 498 498 497 499 499 497 500 500 497 501 501 497 502 501 502 205 205 502 204 204 502 503 503 502 504 503 504 505 503 505 506 506 505 507 506 507 508 508 507 509 508 509 510 510 509 511 511 509 512 512 509 513 513 509 514 514 509 515 515 509 516 515 516 517 517 516 518 517 518 519 519 518 520 519 520 521 521 520 522 522 520 523 522 523 524 522 524 525 522 525 526 526 525 527 527 525 528 527 528 529 529 528 530 530 528 531 531 528 532 531 532 533 533 532 534 533 534 535 533 535 536 533 536 537 534 532 130 534 130 133 133 130 131 133 131 134 537 536 538 537 538 539 537 539 540 537 540 541 537 541 542 537 542 543 537 543 544 537 544 545 537 545 546 537 546 547 537 547 548 548 547 549 549 547 550 549 550 551 551 550 552 552 550 553 553 550 554 553 554 555 13 556 14 556 13 557 556 557 558 556 558 559 556 559 560 560 559 561 561 559 562 561 562 563 563 562 564 563 564 565 565 564 566 565 566 567 565 567 568 565 568 569 565 569 570 570 569 571 570 571 572 570 572 573 570 573 574 570 574 575 570 575 576 570 576 577 570 577 578 570 578 579 570 579 580 570 580 581 570 581 582 570 582 583 570 583 584 570 584 585 570 585 586 570 586 587 570 587 54 570 54 45 570 45 588 570 588 589 570 589 590 570 590 591 591 590 592 591 592 57 591 57 56 591 56 593 591 593 594 591 594 595 595 594 596 595 596 597 595 597 598 595 598 599 595 599 600 595 600 601 595 601 602 595 602 603 595 603 604 595 604 605 595 605 606 595 606 607 595 607 608 595 608 609 595 609 610 610 609 199 610 199 611 611 199 198 611 198 612 612 198 613 612 613 614 612 614 615 612 615 616 616 615 617 616 617 618 616 618 619 616 619 620 616 620 621 616 621 622 616 622 623 623 622 624 623 624 625 623 625 626 623 626 627 623 627 628 623 628 629 629 628 630 630 628 631 630 631 632 630 632 633 630 633 634 630 634 635 630 635 636 630 636 637 630 637 638 630 638 639 630 639 640 630 640 555 630 555 554 630 554 641 630 641 642 630 642 643 630 643 644 630 644 645 646 109 108 109 646 647 647 646 648 648 646 649 649 646 650 649 650 651 651 650 652 651 652 653 653 652 654 654 652 391 651 653 655 655 653 656 656 653 657 657 653 658 658 653 659 659 653 660 660 653 661 661 653 662 662 653 663 663 653 664 664 653 665 665 653 666 666 653 667 667 653 668 668 653 669 669 653 144 144 653 670 144 670 142 142 670 671 671 670 672 672 670 673 672 673 674 672 674 675 675 674 676 676 674 677 673 670 678 678 670 679 679 670 680 680 670 681 681 670 682 682 670 683 682 683 684 684 683 685 654 391 686 686 391 687 687 391 688 688 391 689 689 391 690 690 391 691 691 391 692 692 391 693 693 391 694 694 391 695 695 391 696 696 391 697 697 391 698 698 391 699 699 391 700 700 391 701 700 701 702 700 702 703 700 703 704 704 703 705 705 703 706 702 701 707 707 701 338 338 701 708 338 708 355 701 391 709 709 391 710 710 391 711 711 391 712 712 391 713 713 391 714 714 391 715 715 391 716 716 391 717 717 391 718 718 391 719 719 391 720 720 391 721 721 391 722 722 391 723 723 391 358 358 391 724 358 724 373 724 391 725 725 391 726 726 391 727 727 391 728 728 391 729 729 391 730 730 391 731 731 391 732 732 391 733 733 391 734 734 391 735 735 391 736 736 391 737 737 391 738 738 391 739 739 391 740 740 391 386 683 741 685 741 683 742 741 742 743 741 743 744 741 744 745 741 745 746 746 745 747 746 747 748 748 747 749 748 749 750 750 749 751 750 751 752 752 751 753 752 753 754 754 753 755 754 755 756 756 755 757 757 755 758 757 758 759 759 758 704 704 758 760 704 760 761 704 761 762 704 762 763 704 763 764 704 764 765 704 765 766 704 766 700 706 767 705 767 706 768 677 769 770 769 677 674 770 769 771 770 771 772 770 772 773 770 773 774 770 774 775 770 775 776 770 776 777 777 776 778 777 778 779 777 779 780 777 780 781 777 781 782 782 781 783 782 783 784 782 784 785 785 784 786 786 784 787 787 784 644 644 784 645 645 784 788 788 784 789 789 784 790 790 784 791 791 784 792 791 792 793 791 793 794 791 794 795 795 794 796 795 796 797 795 797 798 795 798 799 795 799 800 795 800 801 795 801 802 795 802 803 795 803 804 795 804 767 795 767 768 795 768 805 795 805 806 795 806 807 795 807 808 795 808 809 809 808 810 809 810 811 811 810 812 813 814 815 814 813 816 815 817 818 817 815 814 818 819 820 819 818 817 821 819 822 819 821 820 823 822 824 822 823 821 825 824 826 824 825 823 827 826 828 826 827 825 829 828 830 828 829 827 831 830 832 830 831 829 833 831 832 831 833 834 835 833 836 833 835 834 837 836 838 836 837 835 839 838 840 838 839 837 841 840 842 840 841 839 841 843 844 843 841 842 844 845 846 845 844 843 846 847 848 847 846 845 848 849 850 849 848 847 850 851 852 851 850 849 852 853 854 853 852 851 854 855 856 855 854 853 856 857 858 857 856 855 859 858 857 858 859 860 861 859 862 859 861 860 863 861 862 861 863 864 865 864 863 864 865 866 867 865 868 865 867 866 869 868 870 868 869 867 871 870 872 870 871 869 873 871 872 871 873 874 875 874 873 874 875 876 877 876 875 876 877 878 879 878 877 878 879 880 881 880 879 880 881 882 883 882 881 882 883 884 885 884 883 884 885 886 887 886 885 886 887 888 889 888 887 888 889 890 891 890 889 890 891 892 893 892 891 892 893 894 895 894 893 894 895 896 897 896 895 896 897 898 899 898 897 898 899 900 901 900 899 900 901 902 903 902 901 902 903 904 905 904 903 904 905 906 907 906 905 906 907 908 909 908 907 908 909 910 911 909 912 909 911 910 913 912 914 912 913 911 915 914 916 914 915 913 917 915 916 915 917 918 919 917 920 917 919 918 921 920 922 920 921 919 923 921 922 921 923 924 925 923 926 923 925 924 927 926 928 926 927 925 925 927 929 925 929 930 931 927 932 927 931 929 933 932 934 932 933 931 935 933 934 933 935 936 937 935 938 935 937 936 939 938 940 938 939 937 939 941 942 941 939 940 942 943 944 943 942 941 944 945 946 945 944 943 947 948 949 948 947 950 950 947 946 950 946 945 949 951 952 951 949 948 952 953 954 953 952 951 954 955 956 955 954 953 956 957 958 957 956 955 958 959 960 959 958 957 960 961 962 961 960 959 963 964 965 964 963 966 966 963 962 966 962 961 965 816 813 816 965 964 967 968 969 968 967 970 968 970 971 968 971 972 968 972 973 968 973 974 968 974 975 968 975 976 976 975 977 976 977 978 978 977 979 980 981 982 981 980 983 983 980 984 984 980 985 985 980 986 985 986 987 985 987 988 988 987 989 988 989 990 990 989 991 990 991 992 992 991 993 993 991 994 994 991 995 995 991 996 995 996 997 997 996 998 998 996 999 999 996 1000 1000 996 1001 1001 996 1002 1002 996 1003 1003 996 1004 1004 996 1005 1005 996 1006 1006 996 1007 1007 996 1008 1008 996 1009 1009 996 1010 1010 996 1011 1011 996 1012 1012 996 1013 1013 996 1014 1014 996 1015 1015 996 1016 1016 996 1017 1017 996 1018 1018 996 1019 1018 1019 1020 1020 1019 1021 1021 1019 1022 1022 1019 1023 1023 1019 1024 1024 1019 1025 1024 1025 1026 1026 1025 1027 1027 1025 1028 1028 1025 1029 1029 1025 1030 1030 1025 1031 1031 1025 1032 1032 1025 1033 1033 1025 1034 1034 1025 1035 1035 1025 1036 1036 1025 1037 1037 1025 1038 1038 1025 1039 1039 1025 1040 1039 1040 1041 1041 1040 1042 1041 1042 1043 1043 1042 1044 1043 1044 1045 1045 1044 1046 1046 1044 1047 1047 1044 1048 1047 1048 1049 1049 1048 1050 1050 1048 1051 1051 1048 1052 1052 1048 1053 1053 1048 1054 1054 1048 1055 1054 1055 1056 1056 1055 1057 1057 1055 1058 1058 1055 1059 1059 1055 1060 1060 1055 1061 1060 1061 1062 1060 1062 1063 1063 1062 1064 1064 1062 1065 1065 1062 1066 1066 1062 1067 1067 1062 1068 1068 1062 1069 1069 1062 1070 1070 1062 1071 1071 1062 1072 1072 1062 1073 1073 1062 1074 1074 1062 1075 1075 1062 1076 1076 1062 1077 1077 1062 1078 1078 1062 1079 1080 1081 1082 1081 1080 1083 1083 1080 1084 1084 1080 1085 1085 1080 1086 1086 1080 1087 1086 1087 1088 1088 1087 1089 1088 1089 1090 1090 1089 1091 1090 1091 1092 1092 1091 1093 1092 1093 1094 1094 1093 1095 1094 1095 1096 1096 1095 1097 1096 1097 1098 1096 1098 1099 1099 1098 1100 1099 1100 1101 1099 1101 1102 1102 1101 1103 1103 1101 1104 1104 1101 1105 1105 1101 1106 1106 1101 1107 1107 1101 1108 1108 1101 1109 1110 1111 1112 1111 1110 1113 1111 1113 1114 1114 1113 1115 1115 1113 1116 1116 1113 1117 1117 1113 1118 1118 1113 1119 1119 1113 1120 1119 1120 1121 1121 1120 1122 1122 1120 1123 1123 1120 1124 1124 1120 1125 1124 1125 1126 1126 1125 1127 1127 1125 1128 1127 1128 1129 1127 1129 1130 1127 1130 1078 1127 1078 1079 1127 1079 1131 1127 1131 1132 1127 1132 1133 1127 1133 1134 1127 1134 1135 1135 1134 1136 1136 1134 1137 1137 1134 1138 1137 1138 1139 1139 1138 1140 1140 1138 1141 1141 1138 1142 1142 1138 1143 1143 1138 1144 1144 1138 1145 1145 1138 1146 1146 1138 1147 1147 1138 1148 1148 1138 1149 1149 1138 1150 1150 1138 1151 1151 1138 1152 1152 1138 1153 1153 1138 1154 1153 1154 1155 1155 1154 1156 1155 1156 1157 1148 1158 1159 1158 1148 1149 1160 1161 1162 1161 1160 1163 1163 1160 1164 1164 1160 1165 1165 1160 1166 1165 1166 1167 1165 1167 1168 1165 1168 1169 1165 1169 1170 1165 1170 1171 1165 1171 1172 1165 1172 1173 1161 1163 1174 1161 1174 1175 1161 1175 1176 1161 1176 1177 1161 1177 1178 1161 1178 1179 1161 1179 1180 1161 1180 1181 1161 1181 1182 1161 1182 1183 1161 1183 1184 1161 1184 1185 1161 1185 1186 1161 1186 1187 1161 1187 1188 1161 1188 1189 1190 1165 1173 1165 1190 1191 1191 1190 1192 1192 1190 1193 1192 1193 1194 1194 1193 1195 1195 1193 1196 1195 1196 1197 1197 1196 1198 1197 1198 1199 1199 1198 1200 1199 1200 1201 1199 1201 1202 1202 1201 1203 1202 1203 1204 1202 1204 1205 1205 1204 1206 1205 1206 1207 1205 1207 1208 1209 1210 1211 1210 1209 1212 1210 1212 1213 1210 1213 1214 1210 1214 1215 1215 1214 1216 1215 1216 1217 1217 1216 1218 1217 1218 1219 1217 1219 1220 1218 1216 1221 1218 1221 1222 1218 1222 1223 1218 1223 1224 1218 1224 1225 1218 1225 1226 1218 1226 1227 1218 1227 1228 1218 1228 1229 1218 1229 1230 1218 1230 1231 1218 1231 1232 1218 1232 1233 1218 1233 1234 1218 1234 1235 1218 1235 979 1218 979 1236 1236 979 977 1236 977 1237 1236 1237 1238 1236 1238 1239 1239 1238 1112 1112 1238 1240 1112 1240 1241 1112 1241 1110 1236 1239 1242 1236 1242 1243 1236 1243 1244 1236 1244 1245 1236 1245 1246 1236 1246 1081 1081 1246 1247 1081 1247 1082 1220 1219 1248 1220 1248 1249 1220 1249 1250 1220 1250 1251 1220 1251 1252 1220 1252 1253 1220 1253 1254 1220 1254 1255 1220 1255 1256 1220 1256 1257 1220 1257 1258 1220 1258 1259 1220 1259 1260 1220 1260 1261 1220 1261 1109 1220 1109 1262 1262 1109 1263 1263 1109 1264 1264 1109 1101 1264 1101 1159 1264 1159 1158 1262 1263 1265 1262 1265 1266 1262 1266 1267 1267 1266 1268 1220 1262 1269 1220 1269 1270 1220 1270 1271 1220 1271 1272 1220 1272 1273 1220 1273 1274 1220 1274 1275 1220 1275 1276 1220 1276 1277 1220 1277 1278 1220 1278 1279 1220 1279 1280 1220 1280 1281 1220 1281 1282 1220 1282 1283 1220 1283 1284 1220 1284 1285 1285 1284 1286 1220 1285 1287 1220 1287 1288 1220 1288 1289 1220 1289 1290 1220 1290 1291 1220 1291 1292 1220 1292 1293 1220 1293 1294 1220 1294 1295 1220 1295 1296 1220 1296 1297 1220 1297 1298 1220 1298 1299 1220 1299 1300 1220 1300 1301 1220 1301 1302 1220 1302 1303 1304 1305 1306 1305 1304 1307 1307 1304 1308 1307 1308 1309 1307 1309 1310 1310 1309 1311 1311 1309 1312 1311 1312 1313 1313 1312 1314 1313 1314 1315 1315 1314 1316 1315 1316 1317 1315 1317 1318 1318 1317 1319 1318 1319 1320 1320 1319 1321 1320 1321 1322 1320 1322 1323 1323 1322 1324 1323 1324 1325 1323 1325 1326 1323 1326 1327 1323 1327 1328 1328 1327 1329 1328 1329 1330 1328 1330 1331 1328 1331 1332 1332 1331 1333 1333 1331 1334 1333 1334 1335 1335 1334 1336 1335 1336 1337 1337 1336 1338 1337 1338 1339 1337 1339 1340 1337 1340 1341 1337 1341 1342 1337 1342 1343 1337 1343 1344 1344 1343 1345 1344 1345 1346 1346 1345 1347 1346 1347 1348 1348 1347 1349 1348 1349 1350 1348 1350 1351 1351 1350 1352 1352 1350 1353 1353 1350 1354 1353 1354 1355 1353 1355 1356 1356 1355 1357 1356 1357 1358 1356 1358 1359 1356 1359 1360 1360 1359 1361 1360 1361 1362 1362 1361 1363 1363 1361 1364 1364 1361 1365 1360 1362 1366 1366 1362 967 1366 967 1367 1367 967 969 1364 1365 1368 1368 1365 1369 1369 1365 1370 1370 1365 1371 1371 1365 1372 1372 1365 1373 1373 1365 1374 1374 1365 1375 1375 1365 1376 1376 1365 1377 1377 1365 1378 1377 1378 1379 1377 1379 1380 1380 1379 1381 1380 1381 1382 1380 1382 1383 1380 1383 1074 1074 1383 1073 1043 1384 1041 1384 1043 1385 1384 1385 1386 1384 1386 1387 1384 1387 1388 1388 1387 1330 1388 1330 1329 1389 1390 1391 1390 1389 1392 1392 1389 1393 1393 1389 1394 1394 1389 1395 1395 1389 1396 1395 1396 1397 1397 1396 1398 1398 1396 1399 1398 1399 1400 1400 1399 1401 1400 1401 1402 1400 1402 1403 1400 1403 1404 1400 1404 1405 1400 1405 1406 1400 1406 1407 1400 1407 1408 1408 1407 1409 1408 1409 1410 1408 1410 1411 1408 1411 1412 1408 1412 1413 1408 1413 1414 1408 1414 1415 1408 1415 1306 1408 1306 1305 1408 1305 1416 1408 1416 1417 1408 1417 1418 1408 1418 1419 1419 1418 1420 1420 1418 1421 1420 1421 1422 1422 1421 1423 1423 1421 1424 1424 1421 1425 1424 1425 1426 1426 1425 1427 1427 1425 1428 1427 1428 1429 1427 1429 1430 1427 1430 1431 1431 1430 1432 1431 1432 1433 1433 1432 1434 1433 1434 1435 1433 1435 1436 1436 1435 1437 1437 1435 1438 1438 1435 1439 1439 1435 1440 1440 1435 1441 1441 1435 1442 1442 1435 1443 1443 1435 1444 1445 1446 1447 1446 1445 1448 1448 1445 1449 1448 1449 1450 1448 1450 1451 1448 1451 1390 1390 1451 1391 1447 1446 1452 1447 1452 1453 1447 1453 1454 1447 1454 1455 1447 1455 1456 1447 1456 1457 1457 1456 1458 1458 1456 1459 1458 1459 1460 1458 1460 1461 1461 1460 1462 1461 1462 1463 1461 1463 1464 1464 1463 1465 1464 1465 1466 1464 1466 1467 1464 1467 1468 1464 1468 1469 1464 1469 1470 1464 1470 1471 1464 1471 1472 1464 1472 1473 1464 1473 1474 1464 1474 1444 1464 1444 1435 1464 1435 1475 1464 1475 1476 1476 1475 1477 1476 1477 1478 1478 1477 1479 1478 1479 1480 1480 1479 1481 1480 1481 1211 1211 1481 1209 1209 1481 1482 1482 1481 1483 1483 1481 1484 1483 1484 1485 1485 1484 1486 1486 1484 1487 1487 1484 1488 1488 1484 1489 1488 1489 1490 1490 1489 1491 1491 1489 1492 1492 1489 1493 1492 1493 1494 1494 1493 1495 1495 1493 1496 1495 1496 1497 1497 1496 1498 1497 1498 1499 1499 1498 1500 1499 1500 1501 1499 1501 1366 1499 1366 1367 1502 1503 1504 1503 1502 1505 1505 1502 1506 1506 1502 1507 1266 1508 1268 1508 1266 1509 1509 1266 1510 1510 1266 1511 1511 1266 1512 1512 1266 1513 1513 1266 1514 1514 1266 1515 1515 1266 1516 1516 1266 1517 1517 1266 1518 1518 1266 1519 1519 1266 1520 1520 1266 1521 1521 1266 1522 1522 1266 1523 1522 1523 1524 1524 1523 1525 1525 1523 1284 1284 1523 1526 1284 1526 1527 1284 1527 1528 1284 1528 1529 1284 1529 1530 1284 1530 1531 1284 1531 1532 1284 1532 1533 1284 1533 1534 1284 1534 1535 1284 1535 1536 1284 1536 1537 1284 1537 1538 1284 1538 1539 1284 1539 1286 1534 1533 1540 1540 1533 1541 1541 1533 1542 1542 1533 1543 1543 1533 1544 1544 1533 1545 1545 1533 1546 1546 1533 1547 1546 1547 1548 1548 1547 1549 1549 1547 1550 1550 1547 1551 1551 1547 1303 1303 1547 1552 1303 1552 1553 1303 1553 1554 1303 1554 1555 1303 1555 1220 1220 1555 1556 1556 1555 1557 1557 1555 1160 1160 1555 1166 1526 1523 1558 1558 1523 1559 1559 1523 1560 1560 1523 1561 1561 1523 1208 1208 1523 1562 1208 1562 1563 1208 1563 1564 1208 1564 1565 1208 1565 1205 1205 1565 1566 1566 1565 1567 1567 1565 1568 1567 1568 1569 1569 1568 1570 1570 1568 1571 1571 1568 1572 1572 1568 1573 1573 1568 1574 1574 1568 1575 1575 1568 1189 1189 1568 1576 1189 1576 1161 1161 1576 1577 1562 1523 1578 1578 1523 1579 1579 1523 1580 1579 1580 1581 1580 1523 1582 1582 1523 1583 1583 1523 1584 1584 1523 1585 1585 1523 1586 1586 1523 1587 1587 1523 1588 1588 1523 1589 1589 1523 1590 1590 1523 1591 1591 1523 1592 1592 1523 1593 1593 1523 1594 1594 1523 1595 1595 1523 1596 1596 1523 1597 1597 1523 1598 1598 1523 1599 1599 1523 1600 1600 1523 1601 1600 1601 1602 1602 1601 1603 1603 1601 1604 1604 1601 1605 1605 1601 1606 1605 1606 1607 1607 1606 1608 1608 1606 1609 1609 1606 1610 1610 1606 1611 1611 1606 1612 1612 1606 1613 1613 1606 1614 1613 1614 1615 1615 1614 1616 1616 1614 1617 1617 1614 1618 1618 1614 1619 1619 1614 1620 1620 1614 1621 1621 1614 1622 1622 1614 1623 1616 1617 1624 1624 1617 1625 1625 1617 1626 1626 1617 1627 1626 1627 1628 1628 1627 1629 1629 1627 1630 1630 1627 1631 1631 1627 1632 1632 1627 1633 1633 1627 1634 1634 1627 1635 1635 1627 1636 1622 1623 1637 1637 1623 1638 1638 1623 1639 1639 1623 1640 1640 1623 1641 1641 1623 1642 1642 1623 1643 1643 1623 1644 1644 1623 1645 1645 1623 1646 1646 1623 1647 1647 1623 1648 1161 1649 1650 1649 1161 1577 1650 1649 1651 1650 1651 1652 1650 1652 1653 1650 1653 1654 1650 1654 1655 1650 1655 1656 1650 1656 1657 1650 1657 1658 1650 1658 1502 1650 1502 1659 1659 1502 1504 1650 1659 1660 1650 1660 1661 1650 1661 1662 1650 1662 1663 1650 1663 1664 1650 1664 1665 1650 1665 1666 1650 1666 1667 1650 1667 1668 1650 1668 1669 1650 1669 1670 1650 1670 1671 1650 1671 1672 1650 1672 1673 1650 1673 1674 1650 1674 1675 1650 1675 1676 1650 1676 1677 1650 1677 1678 1650 1678 1679 1650 1679 1680 1672 1671 1681 1672 1681 1682 1682 1681 1683 1682 1683 1684 1682 1684 1685 1682 1685 1609 1609 1685 1686 1609 1686 1687 1609 1687 1688 1609 1688 1689 1609 1689 1690 1609 1690 1608 1680 1679 1691 1680 1691 1692 1680 1692 1693 1680 1693 1694 1680 1694 1695 1680 1695 1696 1680 1696 1697 1680 1697 1698 1680 1698 1636 1680 1636 1699 1699 1636 1700 1700 1636 1627 1680 1699 1701 1680 1701 1702 1680 1702 1703 1680 1703 1704 1680 1704 1705 1680 1705 1706 1680 1706 1707 1680 1707 1708 1680 1708 1709 1680 1709 1710 1680 1710 1711 1680 1711 1712 1680 1712 1713 1680 1713 1714 1680 1714 1715 1680 1715 1648 1680 1648 1623 1680 1623 1716 1717 1595 1718 1595 1717 1719 1595 1719 1720 1595 1720 1594 1721 1722 1723 1722 1721 1724 1722 1724 1725 1725 1724 1726 1725 1726 1727 1727 1726 1728 1727 1728 1729 1729 1728 1730 1730 1728 1731 1730 1731 1732 1730 1732 1733 1732 1731 981 981 1731 982 1733 1732 1734 1733 1734 1735 1733 1735 1736 1733 1736 1737 1733 1737 1738 1733 1738 1739 1733 1739 1740 1733 1740 1741 1733 1741 1742 1733 1742 1743 1733 1743 1744 1733 1744 1745 1733 1745 1746 1733 1746 1747 1733 1747 1748 1748 1747 1749 1749 1747 1750 1749 1750 1449 1749 1449 1445 1750 1747 1751 1751 1747 1752 1752 1747 1753 1753 1747 1754 1754 1747 1755 1754 1755 1756 1754 1756 1757 1757 1756 1758 1757 1758 1759 1757 1759 1760 1757 1760 1761 1757 1761 1015 1015 1761 1762 1015 1762 1763 1015 1763 1764 1015 1764 1765 1015 1765 1766 1015 1766 1767 1015 1767 1768 1015 1768 1769 1015 1769 1014 1022 1770 1021 1770 1022 1771 1770 1771 1772 1770 1772 1773 1770 1773 1774 1770 1774 1775 1775 1774 1415 1775 1415 1776 1776 1415 1777 1777 1415 1778 1778 1415 1779 1779 1415 1414

-
-
-
- - - - 7664.2519685 47.2440945 -4494.3503937 7654.6102362 263.7795276 -4489.8543307 7654.6102362 47.2440945 -4489.8543307 7664.2519685 263.7795276 -4494.3503937 7674.5275591 47.2440945 -4497.1023622 7674.5275591 263.7795276 -4497.1023622 7603.4685039 263.7795276 -4460.3267717 7603.4685039 47.2440945 -4460.3267717 7676.2913386 47.2440945 -4497.2598425 7676.2913386 263.7795276 -4497.2598425 7594.7559055 263.7795276 -4454.2283465 7594.7559055 47.2440945 -4454.2283465 7685.1220472 47.2440945 -4498.0314961 7685.1220472 263.7795276 -4498.0314961 7587.2322835 263.7795276 -4446.7047244 7587.2322835 47.2440945 -4446.7047244 7695.7204724 47.2440945 -4497.1062992 7695.7204724 263.7795276 -4497.1062992 7586.2165354 263.7795276 -4445.2519685 7586.2165354 47.2440945 -4445.2519685 7705.9960630 47.2440945 -4494.3503937 7705.9960630 263.7795276 -4494.3503937 7581.1299213 47.2440945 -4437.9921260 7581.1299213 263.7795276 -4437.9921260 7715.6338583 47.2440945 -4489.8543307 7715.6338583 263.7795276 -4489.8543307 7576.6377953 263.7795276 -4428.3503937 7576.6377953 47.2440945 -4428.3503937 7724.3464567 47.2440945 -4483.7559055 7724.3464567 263.7795276 -4483.7559055 7573.8818898 47.2440945 -4418.0787402 7573.8818898 263.7795276 -4418.0787402 7731.8700787 47.2440945 -4476.2322835 7731.8700787 263.7795276 -4476.2322835 7572.9566929 47.2440945 -4407.4803150 7572.9566929 263.7795276 -4407.4803150 7737.9724409 263.7795276 -4467.5196850 7737.9724409 47.2440945 -4467.5196850 7573.8818898 47.2440945 -4396.8818898 7573.8818898 263.7795276 -4396.8818898 7742.4645669 47.2440945 -4457.8779528 7742.4645669 263.7795276 -4457.8779528 7576.6377953 263.7795276 -4386.6102362 7576.6377953 47.2440945 -4386.6102362 7745.2204724 263.7795276 -4447.6062992 7745.2204724 47.2440945 -4447.6062992 7581.1299213 47.2440945 -4376.9685039 7581.1299213 263.7795276 -4376.9685039 7746.1456693 263.7795276 -4437.0078740 7746.1456693 47.2440945 -4437.0078740 7587.2322835 47.2440945 -4368.2559055 7587.2322835 263.7795276 -4368.2559055 7745.2204724 263.7795276 -4426.4094488 7745.2204724 47.2440945 -4426.4094488 7594.7559055 263.7795276 -4360.7322835 7594.7559055 47.2440945 -4360.7322835 7742.4645669 263.7795276 -4416.1377953 7742.4645669 47.2440945 -4416.1377953 7603.4685039 263.7795276 -4354.6338583 7603.4685039 47.2440945 -4354.6338583 7737.9724409 263.7795276 -4406.4960630 7737.9724409 47.2440945 -4406.4960630 7613.1102362 263.7795276 -4350.1377953 7613.1102362 47.2440945 -4350.1377953 7732.8858268 47.2440945 -4399.2362205 7732.8858268 263.7795276 -4399.2362205 7623.3818898 263.7795276 -4347.3818898 7623.3818898 47.2440945 -4347.3818898 7731.8700787 263.7795276 -4397.7834646 7731.8700787 47.2440945 -4397.7834646 7633.9803150 263.7795276 -4346.4566929 7633.9803150 47.2440945 -4346.4566929 7724.3464567 47.2440945 -4390.2598425 7724.3464567 263.7795276 -4390.2598425 7644.5748031 263.7795276 -4347.3818898 7644.5748031 47.2440945 -4347.3818898 7715.6338583 47.2440945 -4384.1614173 7715.6338583 263.7795276 -4384.1614173 7654.8503937 263.7795276 -4350.1377953 7654.8503937 47.2440945 -4350.1377953 7664.4921260 47.2440945 -4354.6338583 7664.4921260 263.7795276 -4354.6338583 - - - - - - - - - - 0.3419638 0.0000000 0.9397131 0.4617561 0.0000000 0.8870069 0.4617561 0.0000000 0.8870069 0.3419638 0.0000000 0.9397131 0.1744650 0.0000000 0.9846634 0.1744650 0.0000000 0.9846634 0.5372334 0.0000000 0.8434336 0.5372334 0.0000000 0.8434336 0.0879916 0.0000000 0.9961212 0.0879916 0.0000000 0.9961212 0.6427226 0.0000000 0.7660989 0.6427226 0.0000000 0.7660989 0.0000433 -0.0000000 1.0000000 0.0000433 -0.0000000 1.0000000 0.7662646 0.0000000 0.6425252 0.7662646 0.0000000 0.6425252 -0.1736687 0.0000000 0.9848041 -0.1736687 0.0000000 0.9848041 0.8192632 -0.0000000 0.5734176 0.8192632 -0.0000000 0.5734176 -0.3422052 0.0000000 0.9396252 -0.3422052 0.0000000 0.9396252 0.8660339 -0.0000000 0.4999853 0.8660339 -0.0000000 0.4999853 -0.4999961 -0.0000000 0.8660276 -0.4999961 -0.0000000 0.8660276 0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 0.3420192 -0.6427226 -0.0000000 0.7660989 -0.6427226 -0.0000000 0.7660989 0.9847958 0.0000000 0.1737160 0.9847958 0.0000000 0.1737160 -0.7660015 -0.0000000 0.6428388 -0.7660015 -0.0000000 0.6428388 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 -0.0000000 -0.8660748 0.0000000 0.4999144 -0.8660748 0.0000000 0.4999144 0.9847958 0.0000000 -0.1737160 0.9847958 0.0000000 -0.1737160 -0.9396930 0.0000000 0.3420192 -0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 -0.3420192 0.9396930 0.0000000 -0.3420192 -0.9847958 -0.0000000 0.1737160 -0.9847958 -0.0000000 0.1737160 0.8660748 0.0000000 -0.4999144 0.8660748 0.0000000 -0.4999144 -1.0000000 -0.0000000 -0.0000000 -1.0000000 -0.0000000 0.0000000 0.7660015 0.0000000 -0.6428388 0.7660015 0.0000000 -0.6428388 -0.9847958 -0.0000000 -0.1737160 -0.9847958 -0.0000000 -0.1737160 0.6427226 0.0000000 -0.7660989 0.6427226 0.0000000 -0.7660989 -0.9396930 0.0000000 -0.3420192 -0.9396930 0.0000000 -0.3420192 0.4999284 -0.0000000 -0.8660667 0.4999284 -0.0000000 -0.8660667 -0.8660339 -0.0000000 -0.4999853 -0.8660339 -0.0000000 -0.4999853 0.3421768 -0.0000000 -0.9396356 0.3421768 -0.0000000 -0.9396356 -0.8192632 -0.0000000 -0.5734176 -0.8192632 -0.0000000 -0.5734176 0.1737160 0.0000000 -0.9847958 0.1737160 0.0000000 -0.9847958 -0.7662646 -0.0000000 -0.6425252 -0.7662646 -0.0000000 -0.6425252 -0.0000208 0.0000003 -1.0000000 -0.0000208 0.0000003 -1.0000000 -0.6427226 -0.0000000 -0.7660989 -0.6427226 -0.0000000 -0.7660989 -0.1736892 0.0000003 -0.9848005 -0.1736892 0.0000003 -0.9848005 -0.5372334 -0.0000000 -0.8434336 -0.5372334 -0.0000000 -0.8434336 -0.3421317 -0.0000000 -0.9396520 -0.3421317 -0.0000000 -0.9396520 -0.4617561 -0.0000000 -0.8870069 -0.4617561 -0.0000000 -0.8870069 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 18 22 19 22 18 23 24 21 20 21 24 25 22 26 27 26 22 23 28 25 24 25 28 29 26 30 27 30 26 31 32 29 28 29 32 33 31 34 30 34 31 35 36 32 37 32 36 33 35 38 34 38 35 39 40 36 37 36 40 41 38 42 43 42 38 39 44 40 45 40 44 41 42 46 43 46 42 47 48 45 49 45 48 44 47 50 46 50 47 51 52 49 53 49 52 48 54 50 51 50 54 55 56 53 57 53 56 52 58 55 54 55 58 59 60 57 61 57 60 56 62 59 58 59 62 63 64 60 61 60 64 65 66 63 62 63 66 67 68 64 69 64 68 65 70 67 66 67 70 71 68 72 73 72 68 69 74 71 70 71 74 75 73 76 77 76 73 72 78 75 74 75 78 79 77 80 81 80 77 76 81 79 78 79 81 80

-
-
-
- - - - 7361.2165354 47.2440945 -4446.8503937 7327.0314961 263.7795276 -4443.8582677 7327.0314961 47.2440945 -4443.8582677 7361.2165354 263.7795276 -4446.8503937 7311.2559055 263.7795276 -4439.6338583 7311.2559055 47.2440945 -4439.6338583 7387.5511811 47.2440945 -4444.5472441 7387.5511811 263.7795276 -4444.5472441 7293.8897638 263.7795276 -4434.9803150 7293.8897638 47.2440945 -4434.9803150 7395.3976378 47.2440945 -4443.8582677 7395.3976378 263.7795276 -4443.8582677 7262.7913386 263.7795276 -4420.4763780 7262.7913386 47.2440945 -4420.4763780 7428.5433071 47.2440945 -4434.9803150 7428.5433071 263.7795276 -4434.9803150 7234.6811024 263.7795276 -4400.7952756 7234.6811024 47.2440945 -4400.7952756 7459.6417323 47.2440945 -4420.4763780 7459.6417323 263.7795276 -4420.4763780 7221.9685039 263.7795276 -4388.0826772 7221.9685039 47.2440945 -4388.0826772 7487.7480315 47.2440945 -4400.7952756 7487.7480315 263.7795276 -4400.7952756 7210.4212598 47.2440945 -4376.5314961 7210.4212598 263.7795276 -4376.5314961 7495.6062992 47.2440945 -4392.9409449 7495.6062992 263.7795276 -4392.9409449 7190.7401575 47.2440945 -4348.4251969 7190.7401575 263.7795276 -4348.4251969 7512.0118110 47.2440945 -4376.5314961 7512.0118110 263.7795276 -4376.5314961 7176.2362205 47.2440945 -4317.3267717 7176.2362205 263.7795276 -4317.3267717 7531.6929134 263.7795276 -4348.4251969 7531.6929134 47.2440945 -4348.4251969 7167.3543307 263.7795276 -4284.1811024 7167.3543307 47.2440945 -4284.1811024 7546.1968504 263.7795276 -4317.3267717 7546.1968504 47.2440945 -4317.3267717 7164.3661417 47.2440945 -4250.0000000 7164.3661417 263.7795276 -4250.0000000 7555.0748031 263.7795276 -4284.1811024 7555.0748031 47.2440945 -4284.1811024 7167.3543307 47.2440945 -4215.8188976 7167.3543307 263.7795276 -4215.8188976 7558.0669291 47.2440945 -4250.0000000 7557.5944882 47.2440945 -4255.4094488 7558.0669291 263.7795276 -4250.0000000 7557.5944882 263.7795276 -4255.4094488 7170.2322835 47.2440945 -4205.0866142 7170.2322835 263.7795276 -4205.0866142 7555.0748031 263.7795276 -4215.8188976 7555.0748031 47.2440945 -4215.8188976 7176.2362205 47.2440945 -4182.6732283 7176.2362205 263.7795276 -4182.6732283 7546.1968504 47.2440945 -4182.6732283 7546.1968504 263.7795276 -4182.6732283 7190.7401575 47.2440945 -4151.5748031 7190.7401575 263.7795276 -4151.5748031 7531.6929134 263.7795276 -4151.5748031 7531.6929134 47.2440945 -4151.5748031 7210.4212598 47.2440945 -4123.4685039 7210.4212598 263.7795276 -4123.4685039 7512.0118110 263.7795276 -4123.4685039 7512.0118110 47.2440945 -4123.4685039 7234.6811024 47.2440945 -4099.2047244 7234.6811024 263.7795276 -4099.2047244 7500.4645669 263.7795276 -4111.9173228 7500.4645669 47.2440945 -4111.9173228 7262.7913386 263.7795276 -4079.5236220 7262.7913386 47.2440945 -4079.5236220 7487.7480315 47.2440945 -4099.2047244 7487.7480315 263.7795276 -4099.2047244 7293.8897638 263.7795276 -4065.0196850 7293.8897638 47.2440945 -4065.0196850 7459.6417323 47.2440945 -4079.5236220 7459.6417323 263.7795276 -4079.5236220 7327.0314961 263.7795276 -4056.1417323 7327.0314961 47.2440945 -4056.1417323 7428.5433071 47.2440945 -4065.0196850 7428.5433071 263.7795276 -4065.0196850 7330.0944882 263.7795276 -4055.8740157 7330.0944882 47.2440945 -4055.8740157 7334.8818898 263.7795276 -4055.4527559 7334.8818898 47.2440945 -4055.4527559 7395.3976378 47.2440945 -4056.1417323 7395.3976378 263.7795276 -4056.1417323 7361.2165354 263.7795276 -4053.1496063 7361.2165354 47.2440945 -4053.1496063 - - - - - - - - - - 0.0000349 0.0000000 1.0000000 0.1735900 0.0000000 0.9848180 0.1735900 0.0000000 0.9848180 0.0000349 0.0000000 1.0000000 0.2587512 -0.0000000 0.9659440 0.2587512 -0.0000000 0.9659440 -0.0872976 0.0000000 0.9961823 -0.0872976 0.0000000 0.9961823 0.3420588 -0.0000000 0.9396786 0.3420588 -0.0000000 0.9396786 -0.1737567 0.0000000 0.9847886 -0.1737567 0.0000000 0.9847886 0.5000090 0.0000000 0.8660202 0.5000090 0.0000000 0.8660202 -0.3420062 0.0000000 0.9396977 -0.3420062 0.0000000 0.9396977 0.6427703 0.0000000 0.7660590 0.6427703 0.0000000 0.7660590 -0.5000375 0.0000000 0.8660037 -0.5000375 0.0000000 0.8660037 0.7071670 -0.0000000 0.7070465 0.7071670 -0.0000000 0.7070465 -0.6426995 0.0000000 0.7661184 -0.6426995 0.0000000 0.7661184 0.7660926 0.0000000 0.6427302 0.7660926 0.0000000 0.6427302 -0.7070606 0.0000000 0.7071529 -0.7070606 0.0000000 0.7071529 0.8660036 -0.0000001 0.5000377 0.8660036 -0.0000001 0.5000377 -0.7660764 0.0000000 0.6427495 -0.7660764 0.0000000 0.6427495 0.9396787 -0.0000001 0.3420585 0.9396787 -0.0000001 0.3420585 -0.8660037 0.0000000 0.5000375 -0.8660037 0.0000000 0.5000375 0.9848122 0.0000000 0.1736231 0.9848122 0.0000000 0.1736231 -0.9396974 -0.0000004 0.3420071 -0.9396974 -0.0000004 0.3420071 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 -0.9848106 -0.0000004 0.1736319 -0.9848106 -0.0000004 0.1736319 0.9847965 0.0000000 -0.1737119 0.9847965 0.0000000 -0.1737119 -1.0000000 0.0000000 0.0000062 -0.9961894 -0.0000000 0.0872164 -1.0000000 0.0000000 0.0000062 -0.9961894 -0.0000000 0.0872164 0.9659098 0.0000000 -0.2588789 0.9659098 0.0000000 -0.2588789 -0.9848119 0.0000000 -0.1736248 -0.9848119 0.0000000 -0.1736248 0.9396935 0.0000000 -0.3420177 0.9396935 0.0000000 -0.3420177 -0.9396976 -0.0000001 -0.3420064 -0.9396976 -0.0000001 -0.3420064 0.8660037 0.0000000 -0.5000375 0.8660037 0.0000000 -0.5000375 -0.8660036 -0.0000001 -0.5000377 -0.8660036 -0.0000001 -0.5000377 0.7660649 -0.0000007 -0.6427632 0.7660649 -0.0000007 -0.6427632 -0.7660926 -0.0000000 -0.6427302 -0.7660926 -0.0000000 -0.6427302 0.6428037 -0.0000010 -0.7660309 0.6428037 -0.0000010 -0.7660309 -0.7071123 -0.0000000 -0.7071013 -0.7071123 -0.0000000 -0.7071013 0.5000104 -0.0000004 -0.8660194 0.5000104 -0.0000004 -0.8660194 -0.6427362 -0.0000000 -0.7660876 -0.6427362 -0.0000000 -0.7660876 0.3420202 0.0000000 -0.9396926 0.3420202 0.0000000 -0.9396926 -0.5000375 -0.0000000 -0.8660037 -0.5000375 -0.0000000 -0.8660037 0.1737597 0.0000000 -0.9847881 0.1737597 0.0000000 -0.9847881 -0.3420064 -0.0000008 -0.9396976 -0.3420064 -0.0000008 -0.9396976 0.0874472 0.0000000 -0.9961692 0.0874472 0.0000000 -0.9961692 0.0872858 0.0000000 -0.9961833 0.0872858 0.0000000 -0.9961833 -0.1736251 -0.0000008 -0.9848118 -0.1736251 -0.0000008 -0.9848118 -0.0000399 -0.0000000 -1.0000000 -0.0000399 -0.0000000 -1.0000000 - - - - - - - - - - - - - - -

0 1 2 1 0 3 2 4 5 4 2 1 6 3 0 3 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 11 10 11 14 15 13 16 17 16 13 12 18 15 14 15 18 19 17 20 21 20 17 16 22 19 18 19 22 23 20 24 21 24 20 25 26 23 22 23 26 27 25 28 24 28 25 29 30 27 26 27 30 31 29 32 28 32 29 33 34 30 35 30 34 31 32 36 37 36 32 33 38 35 39 35 38 34 36 40 37 40 36 41 42 39 43 39 42 38 41 44 40 44 41 45 46 43 47 43 46 48 43 48 42 42 48 49 45 50 44 50 45 51 52 46 53 46 52 48 51 54 50 54 51 55 56 52 53 52 56 57 55 58 54 58 55 59 60 56 61 56 60 57 59 62 58 62 59 63 64 61 65 61 64 60 63 66 62 66 63 67 68 65 69 65 68 64 70 66 67 66 70 71 68 72 73 72 68 69 74 71 70 71 74 75 73 76 77 76 73 72 78 75 74 75 78 79 77 80 81 80 77 76 82 79 78 79 82 83 83 82 84 83 84 85 81 86 87 86 81 80 88 85 84 85 88 89 87 89 88 89 87 86

-
-
-
- - - - 7067.5826772 47.2440945 -4149.8622047 7057.9409449 263.7795276 -4145.3661417 7057.9409449 47.2440945 -4145.3661417 7067.5826772 263.7795276 -4149.8622047 7077.8543307 47.2440945 -4152.6181102 7077.8543307 263.7795276 -4152.6181102 7006.7952756 263.7795276 -4115.8385827 7006.7952756 47.2440945 -4115.8385827 7088.4527559 47.2440945 -4153.5433071 7088.4527559 263.7795276 -4153.5433071 6998.0826772 263.7795276 -4109.7401575 6998.0826772 47.2440945 -4109.7401575 7099.0472441 47.2440945 -4152.6181102 7099.0472441 263.7795276 -4152.6181102 6990.5629921 47.2440945 -4102.2165354 6990.5629921 263.7795276 -4102.2165354 7109.3228346 47.2440945 -4149.8622047 7109.3228346 263.7795276 -4149.8622047 6989.5472441 263.7795276 -4100.7637795 6989.5472441 47.2440945 -4100.7637795 7118.9645669 47.2440945 -4145.3661417 7118.9645669 263.7795276 -4145.3661417 6984.4606299 47.2440945 -4093.5039370 6984.4606299 263.7795276 -4093.5039370 7127.6771654 47.2440945 -4139.2677165 7127.6771654 263.7795276 -4139.2677165 6979.9645669 47.2440945 -4083.8622047 6979.9645669 263.7795276 -4083.8622047 7135.2007874 47.2440945 -4131.7440945 7135.2007874 263.7795276 -4131.7440945 6977.2125984 47.2440945 -4073.5905512 6977.2125984 263.7795276 -4073.5905512 7141.2992126 47.2440945 -4123.0314961 7141.2992126 263.7795276 -4123.0314961 6976.2834646 47.2440945 -4062.9921260 6976.2834646 263.7795276 -4062.9921260 7145.7952756 263.7795276 -4113.3897638 7145.7952756 47.2440945 -4113.3897638 6977.2125984 47.2440945 -4052.3937008 6977.2125984 263.7795276 -4052.3937008 7148.5472441 263.7795276 -4103.1181102 7148.5472441 47.2440945 -4103.1181102 6979.9645669 47.2440945 -4042.1220472 6979.9645669 263.7795276 -4042.1220472 7149.4763780 263.7795276 -4092.5196850 7149.4763780 47.2440945 -4092.5196850 6984.4606299 47.2440945 -4032.4803150 6984.4606299 263.7795276 -4032.4803150 7148.5472441 263.7795276 -4081.9212598 7148.5472441 47.2440945 -4081.9212598 6990.5629921 263.7795276 -4023.7677165 6990.5629921 47.2440945 -4023.7677165 7145.7952756 263.7795276 -4071.6496063 7145.7952756 47.2440945 -4071.6496063 6998.0826772 47.2440945 -4016.2440945 6998.0826772 263.7795276 -4016.2440945 7141.2992126 47.2440945 -4062.0078740 7141.2992126 263.7795276 -4062.0078740 7006.7952756 263.7795276 -4010.1456693 7006.7952756 47.2440945 -4010.1456693 7135.2007874 263.7795276 -4053.2952756 7135.2007874 47.2440945 -4053.2952756 7016.4370079 263.7795276 -4005.6496063 7016.4370079 47.2440945 -4005.6496063 7127.6771654 47.2440945 -4045.7716535 7127.6771654 263.7795276 -4045.7716535 7026.7125984 263.7795276 -4002.8937008 7026.7125984 47.2440945 -4002.8937008 7118.9645669 47.2440945 -4039.6732283 7118.9645669 263.7795276 -4039.6732283 7037.3110236 263.7795276 -4001.9685039 7037.3110236 47.2440945 -4001.9685039 7067.8188976 47.2440945 -4010.1456693 7067.8188976 263.7795276 -4010.1456693 7047.9055118 263.7795276 -4002.8937008 7047.9055118 47.2440945 -4002.8937008 7058.1811024 47.2440945 -4005.6496063 7058.1811024 263.7795276 -4005.6496063 - - - - - - - - - - 0.3421768 -0.0000000 0.9396356 0.4617413 -0.0000000 0.8870146 0.4617413 -0.0000000 0.8870146 0.3421768 -0.0000000 0.9396356 0.1737233 0.0000006 0.9847945 0.1737233 0.0000006 0.9847945 0.5372194 0.0000000 0.8434425 0.5372194 0.0000000 0.8434425 -0.0000086 0.0000006 1.0000000 -0.0000086 0.0000006 1.0000000 0.6428229 0.0000000 0.7660148 0.6428229 0.0000000 0.7660148 -0.1736846 0.0000000 0.9848013 -0.1736846 0.0000000 0.9848013 0.7663487 0.0000000 0.6424249 0.7663487 0.0000000 0.6424249 -0.3421317 -0.0000000 0.9396520 -0.3421317 -0.0000000 0.9396520 0.8192632 -0.0000000 0.5734176 0.8192632 -0.0000000 0.5734176 -0.4999284 -0.0000000 0.8660667 -0.4999284 -0.0000000 0.8660667 0.8659500 -0.0000000 0.5001306 0.8659500 -0.0000000 0.5001306 -0.6427226 -0.0000000 0.7660989 -0.6427226 -0.0000000 0.7660989 0.9396968 0.0000000 0.3420088 0.9396968 0.0000000 0.3420088 -0.7660989 -0.0000000 0.6427226 -0.7660989 -0.0000000 0.6427226 0.9847948 0.0000000 0.1737214 0.9847948 0.0000000 0.1737214 -0.8660667 0.0000000 0.4999284 -0.8660667 0.0000000 0.4999284 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 -0.0000000 -0.9396968 0.0000000 0.3420088 -0.9396968 0.0000000 0.3420088 0.9847948 0.0000000 -0.1737214 0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 0.1737214 -0.9847948 0.0000000 0.1737214 0.9396968 0.0000000 -0.3420088 0.9396968 0.0000000 -0.3420088 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.8659909 0.0000000 -0.5000597 0.8659909 0.0000000 -0.5000597 -0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 -0.1737214 0.7660856 0.0000000 -0.6427385 0.7660856 0.0000000 -0.6427385 -0.9396968 0.0000000 -0.3420088 -0.9396968 0.0000000 -0.3420088 0.6428229 -0.0000000 -0.7660148 0.6428229 -0.0000000 -0.7660148 -0.8660623 0.0000007 -0.4999361 -0.8660623 0.0000007 -0.4999361 0.4999284 -0.0000000 -0.8660667 0.4999284 -0.0000000 -0.8660667 -0.7660932 0.0000007 -0.6427295 -0.7660932 0.0000007 -0.6427295 0.3421317 0.0000000 -0.9396520 0.3421317 0.0000000 -0.9396520 -0.6427226 -0.0000000 -0.7660989 -0.6427226 -0.0000000 -0.7660989 0.1736687 0.0000000 -0.9848041 0.1736687 0.0000000 -0.9848041 -0.5372194 -0.0000000 -0.8434425 -0.5372194 -0.0000000 -0.8434425 -0.0000208 0.0000003 -1.0000000 -0.0000208 0.0000003 -1.0000000 -0.4618107 0.0000000 -0.8869785 -0.4618107 0.0000000 -0.8869785 -0.1736892 0.0000003 -0.9848005 -0.1736892 0.0000003 -0.9848005 -0.3422052 -0.0000000 -0.9396252 -0.3422052 -0.0000000 -0.9396252 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 10 14 11 14 10 15 16 13 12 13 16 17 14 18 19 18 14 15 20 17 16 17 20 21 18 22 19 22 18 23 24 21 20 21 24 25 23 26 22 26 23 27 28 25 24 25 28 29 27 30 26 30 27 31 32 29 28 29 32 33 31 34 30 34 31 35 36 32 37 32 36 33 35 38 34 38 35 39 40 37 41 37 40 36 39 42 38 42 39 43 44 41 45 41 44 40 43 46 42 46 43 47 48 45 49 45 48 44 46 50 51 50 46 47 52 49 53 49 52 48 50 54 51 54 50 55 56 52 53 52 56 57 58 54 55 54 58 59 60 56 61 56 60 57 62 59 58 59 62 63 60 64 65 64 60 61 66 63 62 63 66 67 65 68 69 68 65 64 70 67 66 67 70 71 69 72 73 72 69 68 74 71 70 71 74 75 73 76 77 76 73 72 77 75 74 75 77 76

-
-
-
- - - - 2800.9440945 263.7795276 -1617.1259843 2796.0244094 47.2440945 -1624.1527559 2800.9440945 47.2440945 -1617.1259843 2796.0244094 263.7795276 -1624.1527559 2789.9582677 263.7795276 -1630.2185039 2789.9582677 47.2440945 -1630.2185039 2804.5696850 47.2440945 -1609.3515748 2804.5696850 263.7795276 -1609.3515748 2782.9311024 263.7795276 -1635.1389764 2782.9311024 47.2440945 -1635.1389764 2806.7897638 263.7795276 -1601.0653543 2806.7897638 47.2440945 -1601.0653543 2775.1570866 263.7795276 -1638.7645669 2775.1570866 47.2440945 -1638.7645669 2807.5374016 263.7795276 -1592.5196850 2807.5374016 47.2440945 -1592.5196850 2766.8704724 263.7795276 -1640.9846457 2766.8704724 47.2440945 -1640.9846457 2806.7905512 47.2440945 -1583.9740157 2806.7905512 263.7795276 -1583.9740157 2758.3248031 263.7795276 -1641.7322835 2758.3248031 47.2440945 -1641.7322835 2804.5696850 263.7795276 -1575.6877953 2804.5696850 47.2440945 -1575.6877953 2749.7791339 263.7795276 -1640.9846457 2749.7791339 47.2440945 -1640.9846457 2800.9440945 47.2440945 -1567.9133858 2800.9440945 263.7795276 -1567.9133858 2741.4933071 263.7795276 -1638.7641732 2741.4933071 47.2440945 -1638.7641732 2796.0244094 263.7795276 -1560.8862205 2796.0244094 47.2440945 -1560.8862205 2733.7185039 263.7795276 -1635.1389764 2733.7185039 47.2440945 -1635.1389764 2789.9582677 47.2440945 -1554.8204724 2789.9582677 263.7795276 -1554.8204724 2726.6921260 263.7795276 -1630.2188976 2726.6921260 47.2440945 -1630.2188976 2782.9311024 47.2440945 -1549.9003937 2782.9311024 263.7795276 -1549.9003937 2720.6259843 263.7795276 -1624.1531496 2720.6259843 47.2440945 -1624.1531496 2775.1570866 47.2440945 -1546.2751969 2775.1570866 263.7795276 -1546.2751969 2715.7055118 263.7795276 -1617.1259843 2715.7055118 47.2440945 -1617.1259843 2766.8708661 47.2440945 -1544.0547244 2766.8708661 263.7795276 -1544.0547244 2712.0803150 47.2440945 -1609.3511811 2712.0803150 263.7795276 -1609.3511811 2758.3248031 47.2440945 -1543.3070866 2758.3248031 263.7795276 -1543.3070866 2709.8598425 47.2440945 -1601.0653543 2709.8598425 263.7795276 -1601.0653543 2749.7791339 47.2440945 -1544.0547244 2749.7791339 263.7795276 -1544.0547244 2709.1122047 47.2440945 -1592.5196850 2709.1122047 263.7795276 -1592.5196850 2741.4933071 47.2440945 -1546.2751969 2741.4933071 263.7795276 -1546.2751969 2709.8598425 47.2440945 -1583.9740157 2709.8598425 263.7795276 -1583.9740157 2733.7185039 47.2440945 -1549.9003937 2733.7185039 263.7795276 -1549.9003937 2712.0803150 263.7795276 -1575.6881890 2712.0803150 47.2440945 -1575.6881890 2726.6921260 47.2440945 -1554.8204724 2726.6921260 263.7795276 -1554.8204724 2715.7055118 47.2440945 -1567.9133858 2715.7055118 263.7795276 -1567.9133858 2720.6259843 47.2440945 -1560.8866142 2720.6259843 263.7795276 -1560.8866142 - - - - - - - - - - -0.8660291 0.0000000 0.4999936 -0.7660498 -0.0000000 0.6427813 -0.8660291 0.0000000 0.4999936 -0.7660498 -0.0000000 0.6427813 -0.6427751 -0.0000000 0.7660549 -0.6427751 -0.0000000 0.7660549 -0.9396908 -0.0000000 0.3420253 -0.9396908 -0.0000000 0.3420253 -0.5000231 0.0000000 0.8660120 -0.5000231 0.0000000 0.8660120 -0.9848099 -0.0000000 0.1736360 -0.9848099 -0.0000000 0.1736360 -0.3420288 0.0000000 0.9396895 -0.3420288 0.0000000 0.9396895 -1.0000000 0.0000000 0.0000457 -1.0000000 0.0000000 0.0000457 -0.1736302 0.0000000 0.9848109 -0.1736302 0.0000000 0.9848109 -0.9848101 0.0000000 -0.1736347 -0.9848101 0.0000000 -0.1736347 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 -0.9396756 0.0000000 -0.3420669 -0.9396756 0.0000000 -0.3420669 0.1736637 0.0000000 0.9848050 0.1736637 0.0000000 0.9848050 -0.8660357 0.0000000 -0.4999822 -0.8660357 0.0000000 -0.4999822 0.3420230 0.0000000 0.9396916 0.3420230 0.0000000 0.9396916 -0.7660582 0.0000000 -0.6427712 -0.7660582 0.0000000 -0.6427712 0.4999949 0.0000000 0.8660284 0.4999949 0.0000000 0.8660284 -0.6427607 0.0000000 -0.7660670 -0.6427607 0.0000000 -0.7660670 0.6427809 0.0000000 0.7660501 0.6427809 0.0000000 0.7660501 -0.4999889 0.0000000 -0.8660318 -0.4999889 0.0000000 -0.8660318 0.7660341 -0.0000000 0.6428000 0.7660341 -0.0000000 0.6428000 -0.3420357 0.0000000 -0.9396870 -0.3420357 0.0000000 -0.9396870 0.8660321 0.0000000 0.4999883 0.8660321 0.0000000 0.4999883 -0.1736559 -0.0000000 -0.9848064 -0.1736559 -0.0000000 -0.9848064 0.9396916 0.0000000 0.3420230 0.9396916 0.0000000 0.3420230 0.0000020 -0.0000000 -1.0000000 0.0000020 -0.0000000 -1.0000000 0.9848050 0.0000000 0.1736637 0.9848050 0.0000000 0.1736637 0.1736637 0.0000000 -0.9848050 0.1736637 0.0000000 -0.9848050 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3420230 0.0000000 -0.9396916 0.3420230 0.0000000 -0.9396916 0.9848050 0.0000000 -0.1736637 0.9848050 0.0000000 -0.1736637 0.4999949 0.0000000 -0.8660284 0.4999949 0.0000000 -0.8660284 0.9396916 0.0000000 -0.3420230 0.9396916 0.0000000 -0.3420230 0.6427933 0.0000000 -0.7660397 0.6427933 0.0000000 -0.7660397 0.8660256 0.0000000 -0.4999997 0.8660256 0.0000000 -0.4999997 0.7660360 0.0000000 -0.6427976 0.7660360 0.0000000 -0.6427976 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 6 0 2 0 6 7 5 8 9 8 5 4 10 6 11 6 10 7 9 12 13 12 9 8 14 11 15 11 14 10 13 16 17 16 13 12 18 14 15 14 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 22 23 22 26 27 25 28 29 28 25 24 30 26 31 26 30 27 29 32 33 32 29 28 30 34 35 34 30 31 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 44 48 45 48 44 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 53 56 52 56 53 57 55 58 59 58 55 54 57 60 56 60 57 61 59 62 63 62 59 58 60 64 65 64 60 61 63 66 67 66 63 62 64 68 65 68 64 69 67 70 71 70 67 66 68 71 70 71 68 69

-
-
-
- - - - 7252.9606299 47.2440945 -3912.6118110 7210.2362205 263.7795276 -3929.4448819 7210.2362205 47.2440945 -3929.4448819 7252.9606299 263.7795276 -3912.6118110 7297.5039370 47.2440945 -3901.4444882 7297.5039370 263.7795276 -3901.4444882 7205.6496063 263.7795276 -3931.1562992 7205.6496063 47.2440945 -3931.1562992 7343.1141732 47.2440945 -3896.1318898 7343.1141732 263.7795276 -3896.1318898 7200.8464567 263.7795276 -3932.0866142 7200.8464567 47.2440945 -3932.0866142 7347.9685039 47.2440945 -3895.4771654 7347.9685039 263.7795276 -3895.4771654 7195.9527559 263.7795276 -3932.2106299 7195.9527559 47.2440945 -3932.2106299 7352.6456693 47.2440945 -3894.0303150 7352.6456693 263.7795276 -3894.0303150 7191.1062992 263.7795276 -3931.5232283 7191.1062992 47.2440945 -3931.5232283 7357.0196850 47.2440945 -3891.8295276 7357.0196850 263.7795276 -3891.8295276 7186.4370079 263.7795276 -3930.0452756 7186.4370079 47.2440945 -3930.0452756 7360.9685039 47.2440945 -3888.9358268 7360.9685039 263.7795276 -3888.9358268 7182.0787402 263.7795276 -3927.8165354 7182.0787402 47.2440945 -3927.8165354 7364.3858268 263.7795276 -3885.4295276 7364.3858268 47.2440945 -3885.4295276 7178.1496063 263.7795276 -3924.8984252 7178.1496063 47.2440945 -3924.8984252 7367.1771654 263.7795276 -3881.4066929 7367.1771654 47.2440945 -3881.4066929 7174.7559055 263.7795276 -3921.3708661 7174.7559055 47.2440945 -3921.3708661 7466.4685039 47.2440945 -3709.4275591 7466.4685039 263.7795276 -3709.4275591 7171.9881890 47.2440945 -3917.3314961 7171.9881890 263.7795276 -3917.3314961 7468.5236220 263.7795276 -3705.0917323 7468.5236220 47.2440945 -3705.0917323 7084.2165354 263.7795276 -3763.0220472 7084.2165354 47.2440945 -3763.0220472 7469.8464567 263.7795276 -3700.4807087 7469.8464567 47.2440945 -3700.4807087 7082.1929134 47.2440945 -3758.6818898 7082.1929134 263.7795276 -3758.6818898 7470.4055118 47.2440945 -3695.7157480 7470.4055118 263.7795276 -3695.7157480 7080.9015748 47.2440945 -3754.0716535 7080.9015748 263.7795276 -3754.0716535 7470.1889764 263.7795276 -3690.9232283 7470.1889764 47.2440945 -3690.9232283 7080.3700787 47.2440945 -3749.3129921 7080.3700787 263.7795276 -3749.3129921 7469.1968504 263.7795276 -3686.2299213 7469.1968504 47.2440945 -3686.2299213 7080.6141732 263.7795276 -3744.5307087 7080.6141732 47.2440945 -3744.5307087 7467.4566929 47.2440945 -3681.7578740 7467.4566929 263.7795276 -3681.7578740 7081.6259843 47.2440945 -3739.8511811 7081.6259843 263.7795276 -3739.8511811 7465.0157480 263.7795276 -3677.6279528 7465.0157480 47.2440945 -3677.6279528 7083.3858268 47.2440945 -3735.3964567 7083.3858268 263.7795276 -3735.3964567 7461.9370079 47.2440945 -3673.9472441 7461.9370079 263.7795276 -3673.9472441 7085.8385827 47.2440945 -3731.2854331 7085.8385827 263.7795276 -3731.2854331 7458.3070866 47.2440945 -3670.8137795 7458.3070866 263.7795276 -3670.8137795 7088.9251969 263.7795276 -3727.6236220 7088.9251969 47.2440945 -3727.6236220 7454.2125984 47.2440945 -3668.3090551 7454.2125984 263.7795276 -3668.3090551 7092.5629921 263.7795276 -3724.5098425 7092.5629921 47.2440945 -3724.5098425 7449.7716535 47.2440945 -3666.5003937 7449.7716535 263.7795276 -3666.5003937 7096.6535433 263.7795276 -3722.0244094 7096.6535433 47.2440945 -3722.0244094 7445.0905512 47.2440945 -3665.4362205 7445.0905512 263.7795276 -3665.4362205 7179.5118110 263.7795276 -3688.0976378 7179.5118110 47.2440945 -3688.0976378 7355.7559055 47.2440945 -3659.4740157 7355.7559055 263.7795276 -3659.4740157 7266.5472441 263.7795276 -3667.0862205 7266.5472441 47.2440945 -3667.0862205 - - - - - - - - - - -0.3055152 -0.0000005 0.9521872 -0.3580923 -0.0000005 0.9336862 -0.3580923 -0.0000005 0.9336862 -0.3055152 -0.0000005 0.9521872 -0.1798169 0.0000001 0.9837001 -0.1798169 0.0000001 0.9837001 -0.2708021 0.0000000 0.9626350 -0.2708021 0.0000000 0.9626350 -0.1246856 0.0000001 0.9921963 -0.1246856 0.0000001 0.9921963 -0.1081163 0.0000000 0.9941383 -0.1081163 0.0000000 0.9941383 -0.2153360 -0.0000000 0.9765400 -0.2153360 -0.0000000 0.9765400 0.0577477 0.0000000 0.9983312 0.0577477 0.0000000 0.9983312 -0.3737842 -0.0000000 0.9275157 -0.3737842 -0.0000000 0.9275157 0.2218607 0.0000000 0.9750784 0.2218607 0.0000000 0.9750784 -0.5220765 -0.0000000 0.8528986 -0.5220765 -0.0000000 0.8528986 0.3798463 0.0000000 0.9250496 0.3798463 0.0000000 0.9250496 -0.6558634 -0.0000000 0.7548796 -0.6558634 -0.0000000 0.7548796 0.5275870 0.0000000 0.8495010 0.5275870 0.0000000 0.8495010 -0.7715164 0.0000000 0.6362094 -0.7715164 0.0000000 0.6362094 0.6607140 0.0000000 0.7506377 0.6607140 0.0000000 0.7506377 -0.8445357 0.0000000 0.5354992 -0.8445357 0.0000000 0.5354992 0.7754385 0.0000000 0.6314231 0.7754385 0.0000000 0.6314231 -0.8855556 0.0000000 0.4645333 -0.8855556 0.0000000 0.4645333 0.8478182 0.0000003 0.5302870 0.8478182 0.0000003 0.5302870 -0.9355437 0.0000000 0.3532109 -0.9355437 0.0000000 0.3532109 0.8885016 0.0000003 0.4588734 0.8885016 0.0000003 0.4588734 -0.9804448 0.0000000 0.1967942 -0.9804448 0.0000000 0.1967942 0.9377519 0.0000000 0.3473058 0.9377519 0.0000000 0.3473058 -0.9993585 0.0000000 0.0358129 -0.9993585 0.0000000 0.0358129 0.9815928 0.0000000 0.1909860 0.9815928 0.0000000 0.1909860 -0.9919795 -0.0000000 -0.1263990 -0.9919795 -0.0000000 -0.1263990 0.9995465 0.0000000 0.0301115 0.9995465 0.0000000 0.0301115 -0.9583274 -0.0000000 -0.2856722 -0.9583274 -0.0000000 -0.2856722 0.9913046 -0.0000000 -0.1315872 0.9913046 -0.0000000 -0.1315872 -0.8993797 0.0000000 -0.4371683 -0.8993797 0.0000000 -0.4371683 0.9569220 -0.0000000 -0.2903453 0.9569220 -0.0000000 -0.2903453 -0.8166635 0.0000000 -0.5771142 -0.8166635 0.0000000 -0.5771142 0.8973429 -0.0000000 -0.4413341 0.8973429 -0.0000000 -0.4413341 -0.7125829 0.0000000 -0.7015879 -0.7125829 0.0000000 -0.7015879 0.8143701 0.0000000 -0.5803458 0.8143701 0.0000000 -0.5803458 -0.5895998 0.0000000 -0.8076956 -0.5895998 0.0000000 -0.8076956 0.7097782 0.0000000 -0.7044253 0.7097782 0.0000000 -0.7044253 -0.4509942 0.0000000 -0.8925269 -0.4509942 0.0000000 -0.8925269 0.5866901 0.0000000 -0.8098115 0.5866901 0.0000000 -0.8098115 -0.3004325 0.0000000 -0.9538031 -0.3004325 0.0000000 -0.9538031 0.4504875 0.0000000 -0.8927828 0.4504875 0.0000000 -0.8927828 -0.1445783 -0.0000006 -0.9894934 -0.1445783 -0.0000006 -0.9894934 0.3076816 -0.0000000 -0.9514894 0.3076816 -0.0000000 -0.9514894 0.0092425 -0.0000006 -0.9999573 0.0092425 -0.0000006 -0.9999573 0.1603073 -0.0000000 -0.9870672 0.1603073 -0.0000000 -0.9870672 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 19 22 23 22 19 18 24 21 20 21 24 25 23 26 27 26 23 22 28 24 29 24 28 25 27 30 31 30 27 26 32 29 33 29 32 28 31 34 35 34 31 30 36 32 33 32 36 37 34 38 35 38 34 39 40 36 41 36 40 37 38 42 43 42 38 39 44 41 45 41 44 40 42 46 43 46 42 47 48 44 45 44 48 49 47 50 46 50 47 51 52 48 53 48 52 49 51 54 50 54 51 55 56 53 57 53 56 52 54 58 59 58 54 55 60 56 57 56 60 61 58 62 59 62 58 63 64 60 65 60 64 61 63 66 62 66 63 67 68 64 65 64 68 69 67 70 66 70 67 71 69 72 73 72 69 68 70 74 75 74 70 71 73 76 77 76 73 72 78 75 74 75 78 79 77 80 81 80 77 76 82 79 78 79 82 83 81 84 85 84 81 80 86 83 82 83 86 87 85 88 89 88 85 84 90 87 86 87 90 91 89 91 90 91 89 88

-
-
-
- - - - 7461.3543307 263.7795276 -3956.3661417 7465.8464567 47.2440945 -3946.7244094 7461.3543307 47.2440945 -3956.3661417 7465.8464567 263.7795276 -3946.7244094 7458.5984252 263.7795276 -3966.6377953 7458.5984252 47.2440945 -3966.6377953 7495.3740157 47.2440945 -3895.5811024 7495.3740157 263.7795276 -3895.5811024 7457.6732283 263.7795276 -3977.2362205 7457.6732283 47.2440945 -3977.2362205 7501.4763780 47.2440945 -3886.8677165 7501.4763780 263.7795276 -3886.8677165 7458.5984252 47.2440945 -3987.8346457 7458.5984252 263.7795276 -3987.8346457 7509.0000000 263.7795276 -3879.3464567 7509.0000000 47.2440945 -3879.3464567 7461.3543307 263.7795276 -3998.1062992 7461.3543307 47.2440945 -3998.1062992 7517.7125984 263.7795276 -3873.2448819 7517.7125984 47.2440945 -3873.2448819 7465.8464567 263.7795276 -4007.7480315 7465.8464567 47.2440945 -4007.7480315 7527.3503937 263.7795276 -3868.7500000 7527.3503937 47.2440945 -3868.7500000 7471.9488189 263.7795276 -4016.4606299 7471.9488189 47.2440945 -4016.4606299 7537.6259843 263.7795276 -3865.9960630 7537.6259843 47.2440945 -3865.9960630 7479.4724409 47.2440945 -4023.9842520 7479.4724409 263.7795276 -4023.9842520 7548.2244094 263.7795276 -3865.0692913 7548.2244094 47.2440945 -3865.0692913 7488.1850394 47.2440945 -4030.0826772 7488.1850394 263.7795276 -4030.0826772 7558.8188976 263.7795276 -3865.9960630 7558.8188976 47.2440945 -3865.9960630 7497.8228346 47.2440945 -4034.5787402 7497.8228346 263.7795276 -4034.5787402 7569.0944882 263.7795276 -3868.7500000 7569.0944882 47.2440945 -3868.7500000 7508.0984252 47.2440945 -4037.3307087 7508.0984252 263.7795276 -4037.3307087 7578.7362205 263.7795276 -3873.2448819 7578.7362205 47.2440945 -3873.2448819 7518.6968504 47.2440945 -4038.2598425 7518.6968504 263.7795276 -4038.2598425 7587.4488189 263.7795276 -3879.3464567 7587.4488189 47.2440945 -3879.3464567 7529.2913386 47.2440945 -4037.3307087 7529.2913386 263.7795276 -4037.3307087 7594.9685039 47.2440945 -3886.8677165 7594.9685039 263.7795276 -3886.8677165 7539.5669291 47.2440945 -4034.5787402 7539.5669291 263.7795276 -4034.5787402 7601.0708661 263.7795276 -3895.5811024 7601.0708661 47.2440945 -3895.5811024 7549.2086614 47.2440945 -4030.0826772 7549.2086614 263.7795276 -4030.0826772 7605.5669291 47.2440945 -3905.2216535 7605.5669291 263.7795276 -3905.2216535 7557.9212598 47.2440945 -4023.9842520 7557.9212598 263.7795276 -4023.9842520 7608.3188976 47.2440945 -3915.4968504 7608.3188976 263.7795276 -3915.4968504 7565.4409449 263.7795276 -4016.4606299 7565.4409449 47.2440945 -4016.4606299 7609.2480315 47.2440945 -3926.0933071 7609.2480315 263.7795276 -3926.0933071 7571.5433071 263.7795276 -4007.7480315 7571.5433071 47.2440945 -4007.7480315 7608.3188976 47.2440945 -3936.6897638 7608.3188976 263.7795276 -3936.6897638 7601.0708661 263.7795276 -3956.6062992 7601.0708661 47.2440945 -3956.6062992 7605.5669291 263.7795276 -3946.9645669 7605.5669291 47.2440945 -3946.9645669 - - - - - - - - - - 0.9396930 0.0000000 -0.3420192 0.8870874 0.0000000 -0.4616014 0.9396930 0.0000000 -0.3420192 0.8870874 0.0000000 -0.4616014 0.9847958 -0.0000000 -0.1737160 0.9847958 -0.0000000 -0.1737160 0.8433671 0.0000000 -0.5373378 0.8433671 0.0000000 -0.5373378 1.0000000 -0.0000000 -0.0000000 1.0000000 -0.0000000 -0.0000000 0.7659647 0.0000000 -0.6428827 0.7659647 0.0000000 -0.6428827 0.9847958 0.0000000 0.1737160 0.9847958 0.0000000 0.1737160 0.6427554 0.0000000 -0.7660714 0.6427554 0.0000000 -0.7660714 0.9396930 0.0000000 0.3420192 0.9396930 0.0000000 0.3420192 0.5000576 0.0000000 -0.8659922 0.5000576 0.0000000 -0.8659922 0.8660748 0.0000000 0.4999144 0.8660748 0.0000000 0.4999144 0.3420740 -0.0000000 -0.9396730 0.3420740 -0.0000000 -0.9396730 0.7660015 0.0000000 0.6428388 0.7660015 0.0000000 0.6428388 0.1736534 -0.0000000 -0.9848068 0.1736534 -0.0000000 -0.9848068 0.6427226 0.0000000 0.7660989 0.6427226 0.0000000 0.7660989 -0.0000161 -0.0000000 -1.0000000 -0.0000161 -0.0000000 -1.0000000 0.4999961 0.0000000 0.8660276 0.4999961 0.0000000 0.8660276 -0.1736692 -0.0000000 -0.9848040 -0.1736692 -0.0000000 -0.9848040 0.3420373 0.0000000 0.9396864 0.3420373 0.0000000 0.9396864 -0.3420005 -0.0000000 -0.9396998 -0.3420005 -0.0000000 -0.9396998 0.1736743 -0.0000000 0.9848032 0.1736743 -0.0000000 0.9848032 -0.4999899 0.0000000 -0.8660313 -0.4999899 0.0000000 -0.8660313 -0.0000162 -0.0000000 1.0000000 -0.0000162 -0.0000000 1.0000000 -0.6428557 0.0000000 -0.7659873 -0.6428557 0.0000000 -0.7659873 -0.1736902 0.0000000 0.9848003 -0.1736902 0.0000000 0.9848003 -0.7660488 0.0000000 -0.6427824 -0.7660488 0.0000000 -0.6427824 -0.3419638 0.0000000 0.9397131 -0.3419638 0.0000000 0.9397131 -0.8659898 0.0000000 -0.5000616 -0.8659898 0.0000000 -0.5000616 -0.4999284 -0.0000000 0.8660667 -0.4999284 -0.0000000 0.8660667 -0.9397035 0.0000000 -0.3419903 -0.9397035 0.0000000 -0.3419903 -0.6428229 -0.0000000 0.7660148 -0.6428229 -0.0000000 0.7660148 -0.9848009 0.0000000 -0.1736869 -0.9848009 0.0000000 -0.1736869 -0.7660856 0.0000000 0.6427385 -0.7660856 0.0000000 0.6427385 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.8433521 0.0000000 0.5373613 -0.8433521 0.0000000 0.5373613 -0.9848001 0.0000000 0.1736916 -0.9848001 0.0000000 0.1736916 -0.8870069 0.0000000 0.4617561 -0.8870069 0.0000000 0.4617561 -0.9397099 0.0000000 0.3419728 -0.9397099 0.0000000 0.3419728 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 5 9 5 8 4 7 10 6 10 7 11 12 8 9 8 12 13 14 10 11 10 14 15 16 12 17 12 16 13 18 15 14 15 18 19 20 17 21 17 20 16 22 19 18 19 22 23 24 21 25 21 24 20 26 23 22 23 26 27 28 24 25 24 28 29 30 27 26 27 30 31 32 29 28 29 32 33 34 31 30 31 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 46 50 47 50 46 51 52 49 48 49 52 53 50 54 55 54 50 51 56 53 52 53 56 57 54 58 55 58 54 59 60 57 56 57 60 61 59 62 58 62 59 63 64 60 65 60 64 61 63 66 62 66 63 67 68 65 69 65 68 64 67 70 66 70 67 71 72 69 73 69 72 68 70 74 75 74 70 71 74 73 75 73 74 72

-
-
-
- - - - 7692.7874016 263.7795276 -4126.4921260 7676.7244094 47.2440945 -4088.7440945 7692.7874016 47.2440945 -4126.4921260 7676.7244094 263.7795276 -4088.7440945 7674.8661417 47.2440945 -4084.2125984 7674.8661417 263.7795276 -4084.2125984 7696.1929134 263.7795276 -4134.5000000 7696.1929134 47.2440945 -4134.5000000 7673.7795276 263.7795276 -4079.4370079 7673.7795276 47.2440945 -4079.4370079 7709.0629921 263.7795276 -4182.5354331 7709.0629921 47.2440945 -4182.5354331 7673.5000000 47.2440945 -4074.5511811 7673.5000000 263.7795276 -4074.5511811 7715.0826772 263.7795276 -4231.8976378 7710.1181102 47.2440945 -4191.1771654 7715.0826772 47.2440945 -4231.8976378 7710.1181102 263.7795276 -4191.1771654 7674.0314961 263.7795276 -4069.6811024 7674.0314961 47.2440945 -4069.6811024 7715.6574803 47.2440945 -4236.1614173 7715.6574803 263.7795276 -4236.1614173 7675.3582677 47.2440945 -4064.9685039 7675.3582677 263.7795276 -4064.9685039 7715.7401575 263.7795276 -4236.7519685 7715.7401575 47.2440945 -4236.7519685 7677.4448819 263.7795276 -4060.5393701 7677.4448819 47.2440945 -4060.5393701 7717.1850394 263.7795276 -4241.4291339 7717.1850394 47.2440945 -4241.4291339 7769.8897638 47.2440945 -3900.4228346 7769.8897638 263.7795276 -3900.4228346 7719.3858268 263.7795276 -4245.8031496 7719.3858268 47.2440945 -4245.8031496 7772.8425197 47.2440945 -3896.2070866 7772.8425197 263.7795276 -3896.2070866 7722.2795276 263.7795276 -4249.7519685 7722.2795276 47.2440945 -4249.7519685 7776.4803150 47.2440945 -3892.5673228 7776.4803150 263.7795276 -3892.5673228 7725.7874016 47.2440945 -4253.1692913 7725.7874016 263.7795276 -4253.1692913 7780.6968504 263.7795276 -3889.6149606 7780.6968504 47.2440945 -3889.6149606 7729.8110236 47.2440945 -4255.9606299 7729.8110236 263.7795276 -4255.9606299 7785.3622047 263.7795276 -3887.4397638 7785.3622047 47.2440945 -3887.4397638 7871.5196850 47.2440945 -4337.7755906 7871.5196850 263.7795276 -4337.7755906 7790.3346457 263.7795276 -3886.1074803 7790.3346457 47.2440945 -3886.1074803 7889.9251969 47.2440945 -4348.4055118 7889.9251969 263.7795276 -4348.4055118 7795.4606299 263.7795276 -3885.6590551 7795.4606299 47.2440945 -3885.6590551 7894.5905512 47.2440945 -4350.5826772 7894.5905512 263.7795276 -4350.5826772 7800.5905512 263.7795276 -3886.1074803 7800.5905512 47.2440945 -3886.1074803 7899.5629921 47.2440945 -4351.9133858 7899.5629921 263.7795276 -4351.9133858 7805.5590551 263.7795276 -3887.4397638 7805.5590551 47.2440945 -3887.4397638 7904.6889764 47.2440945 -4352.3622047 7904.6889764 263.7795276 -4352.3622047 7810.2244094 263.7795276 -3889.6149606 7810.2244094 47.2440945 -3889.6149606 7909.8188976 47.2440945 -4351.9133858 7909.8188976 263.7795276 -4351.9133858 7811.4173228 263.7795276 -3890.3039370 7811.4173228 47.2440945 -3890.3039370 7914.7913386 47.2440945 -4350.5826772 7914.7913386 263.7795276 -4350.5826772 7815.2362205 263.7795276 -3892.9283465 7815.2362205 47.2440945 -3892.9283465 7919.4527559 47.2440945 -4348.4055118 7919.4527559 263.7795276 -4348.4055118 7818.5984252 263.7795276 -3896.1177165 7818.5984252 47.2440945 -3896.1177165 7923.6692913 47.2440945 -4345.4527559 7923.6692913 263.7795276 -4345.4527559 7821.4173228 263.7795276 -3899.7940945 7821.4173228 47.2440945 -3899.7940945 7927.3110236 47.2440945 -4341.8149606 7927.3110236 263.7795276 -4341.8149606 7822.5118110 47.2440945 -3901.8027559 7822.5118110 263.7795276 -3901.8027559 7930.2637795 263.7795276 -4337.5984252 7930.2637795 47.2440945 -4337.5984252 7823.6299213 47.2440945 -3903.8657480 7823.6299213 263.7795276 -3903.8657480 7930.9527559 263.7795276 -4336.4055118 7930.9527559 47.2440945 -4336.4055118 7825.1771654 263.7795276 -3908.2334646 7825.1771654 47.2440945 -3908.2334646 7932.9448819 263.7795276 -4332.2204724 7932.9448819 47.2440945 -4332.2204724 7918.4763780 47.2440945 -4256.4409449 7918.4763780 263.7795276 -4256.4409449 7934.2637795 263.7795276 -4327.7795276 7934.2637795 47.2440945 -4327.7795276 7933.9015748 47.2440945 -4314.0000000 7933.9015748 263.7795276 -4314.0000000 7934.8661417 263.7795276 -4323.1850394 7934.8661417 47.2440945 -4323.1850394 7934.7440945 263.7795276 -4318.5551181 7934.7440945 47.2440945 -4318.5551181 7934.8070866 47.2440945 -4320.9015748 7934.8070866 263.7795276 -4320.9015748 - - - - - - - - - - 0.9201980 -0.0000000 0.3914533 0.9227105 -0.0000000 0.3854935 0.9201980 -0.0000000 0.3914533 0.9227105 -0.0000000 0.3854935 0.9534120 0.0000000 0.3016713 0.9534120 0.0000000 0.3016713 0.9454119 0.0000000 0.3258778 0.9454119 0.0000000 0.3258778 0.9901548 0.0000000 0.1399766 0.9901548 0.0000000 0.1399766 0.9817083 0.0000000 0.1903910 0.9817083 0.0000000 0.1903910 0.9996678 0.0000000 -0.0257747 0.9996678 0.0000000 -0.0257747 0.9918610 -0.0000000 0.1273251 0.9926473 -0.0000000 0.1210430 0.9918610 -0.0000000 0.1273251 0.9926473 -0.0000000 0.1210430 0.9817067 -0.0000000 -0.1903996 0.9817067 -0.0000000 -0.1903996 0.9906916 -0.0000000 0.1361254 0.9906916 -0.0000000 0.1361254 0.9368263 -0.0000000 -0.3497948 0.9368263 -0.0000000 -0.3497948 0.9760371 0.0000000 0.2176042 0.9760371 0.0000000 0.2176042 0.8860982 -0.0000000 -0.4634976 0.8860982 -0.0000000 -0.4634976 0.9275875 0.0000000 0.3736060 0.9275875 0.0000000 0.3736060 0.8433528 -0.0000000 -0.5373602 0.8433528 -0.0000000 -0.5373602 0.8528986 0.0000000 0.5220765 0.8528986 0.0000000 0.5220765 0.7660875 -0.0000000 -0.6427363 0.7660875 -0.0000000 -0.6427363 0.7548060 0.0000000 0.6559481 0.7548060 0.0000000 0.6559481 0.6428859 -0.0000000 -0.7659620 0.6428859 -0.0000000 -0.7659620 0.6360875 -0.0000000 0.7716170 0.6360875 -0.0000000 0.7716170 0.4999716 0.0000000 -0.8660418 0.4999716 0.0000000 -0.8660418 0.5354608 -0.0000000 0.8445601 0.5354608 -0.0000000 0.8445601 0.3419890 0.0000000 -0.9397040 0.3419890 0.0000000 -0.9397040 0.5000603 0.0000000 0.8659906 0.5000603 0.0000000 0.8659906 0.1736371 0.0000000 -0.9848097 0.1736371 0.0000000 -0.9848097 0.4619425 -0.0000000 0.8869099 0.4619425 -0.0000000 0.8869099 0.0000333 0.0000000 -1.0000000 0.0000333 0.0000000 -1.0000000 0.3420129 0.0000000 0.9396952 0.3420129 0.0000000 0.9396952 -0.1737018 0.0000000 -0.9847983 -0.1737018 0.0000000 -0.9847983 0.1735291 0.0000000 0.9848287 0.1735291 0.0000000 0.9848287 -0.3420820 0.0000000 -0.9396701 -0.3420820 0.0000000 -0.9396701 0.0000333 0.0000000 1.0000000 0.0000333 0.0000000 1.0000000 -0.4617947 0.0000000 -0.8869868 -0.4617947 0.0000000 -0.8869868 -0.1735092 -0.0000004 0.9848323 -0.1735092 -0.0000004 0.9848323 -0.5336618 -0.0000000 -0.8456980 -0.5336618 -0.0000000 -0.8456980 -0.3421773 -0.0000004 0.9396354 -0.3421773 -0.0000004 0.9396354 -0.6292278 -0.0000000 -0.7772210 -0.6292278 -0.0000000 -0.7772210 -0.5002889 0.0000000 0.8658586 -0.5002889 0.0000000 0.8658586 -0.7431993 0.0000000 -0.6690701 -0.7431993 0.0000000 -0.6690701 -0.6425991 0.0000000 0.7662026 -0.6425991 0.0000000 0.7662026 -0.8383624 0.0000000 -0.5451132 -0.8383624 0.0000000 -0.5451132 -0.7658549 -0.0000000 0.6430134 -0.7658549 -0.0000000 0.6430134 -0.8786409 0.0000000 -0.4774831 -0.8786409 0.0000000 -0.4774831 -0.8433366 0.0000000 0.5373858 -0.8433366 0.0000000 0.5373858 -0.9136750 0.0000000 -0.4064455 -0.9136750 0.0000000 -0.4064455 -0.8851343 0.0000000 0.4653356 -0.8851343 0.0000000 0.4653356 -0.9550043 0.0000000 -0.2965920 -0.9550043 0.0000000 -0.2965920 -0.9335940 0.0000000 0.3583325 -0.9335940 0.0000000 0.3583325 -0.9659219 0.0000000 -0.2588335 -0.9659219 0.0000000 -0.2588335 -0.9781297 0.0000000 0.2079958 -0.9781297 0.0000000 0.2079958 -0.9753785 0.0000000 -0.2205374 -0.9753785 0.0000000 -0.2205374 -0.9986482 0.0000000 0.0519792 -0.9986482 0.0000000 0.0519792 -0.9945318 0.0000000 -0.1044346 -0.9945318 0.0000000 -0.1044346 -0.9996527 0.0000000 -0.0263536 -0.9996527 0.0000000 -0.0263536 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 4 8 9 8 4 5 10 7 11 7 10 6 8 12 9 12 8 13 14 15 16 15 10 11 10 15 14 10 14 17 12 18 19 18 12 13 20 14 16 14 20 21 18 22 19 22 18 23 24 20 25 20 24 21 22 26 27 26 22 23 28 25 29 25 28 24 26 30 27 30 26 31 32 29 33 29 32 28 31 34 30 34 31 35 36 33 37 33 36 32 35 38 34 38 35 39 40 36 37 36 40 41 42 38 39 38 42 43 44 41 40 41 44 45 46 43 42 43 46 47 48 45 44 45 48 49 50 47 46 47 50 51 52 49 48 49 52 53 54 51 50 51 54 55 56 53 52 53 56 57 58 55 54 55 58 59 60 57 56 57 60 61 62 59 58 59 62 63 64 61 60 61 64 65 66 63 62 63 66 67 68 65 64 65 68 69 70 67 66 67 70 71 72 69 68 69 72 73 74 71 70 71 74 75 76 73 72 73 76 77 78 75 74 75 78 79 80 77 76 77 80 81 79 82 83 82 79 78 84 81 80 81 84 85 82 86 83 86 82 87 88 84 89 84 88 85 87 90 86 90 87 91 92 89 93 89 92 88 90 94 95 94 90 91 96 93 97 93 96 92 94 98 95 98 94 99 100 97 101 97 100 96 99 102 98 102 99 103 104 101 105 101 104 100 102 106 107 106 102 103 106 108 107 108 106 109 108 104 105 104 108 109

-
-
-
- - - - 3410.3500000 263.7795276 -1514.3598425 3405.4299213 47.2440945 -1521.3870079 3410.3500000 47.2440945 -1514.3598425 3405.4299213 263.7795276 -1521.3870079 3399.3637795 263.7795276 -1527.4527559 3399.3637795 47.2440945 -1527.4527559 3413.9755906 47.2440945 -1506.5854331 3413.9755906 263.7795276 -1506.5854331 3392.3370079 263.7795276 -1532.3732283 3392.3370079 47.2440945 -1532.3732283 3416.1956693 47.2440945 -1498.2992126 3416.1956693 263.7795276 -1498.2992126 3384.5625984 263.7795276 -1535.9984252 3384.5625984 47.2440945 -1535.9984252 3416.9433071 263.7795276 -1489.7535433 3416.9433071 47.2440945 -1489.7535433 3376.2767717 263.7795276 -1538.2188976 3376.2767717 47.2440945 -1538.2188976 3416.1956693 47.2440945 -1481.2078740 3416.1956693 263.7795276 -1481.2078740 3367.7307087 263.7795276 -1538.9661417 3367.7307087 47.2440945 -1538.9661417 3413.9755906 263.7795276 -1472.9220472 3413.9755906 47.2440945 -1472.9220472 3359.1854331 263.7795276 -1538.2188976 3359.1854331 47.2440945 -1538.2188976 3410.3500000 47.2440945 -1465.1472441 3410.3500000 263.7795276 -1465.1472441 3350.8992126 263.7795276 -1535.9984252 3350.8992126 47.2440945 -1535.9984252 3405.4299213 263.7795276 -1458.1204724 3405.4299213 47.2440945 -1458.1204724 3343.1244094 263.7795276 -1532.3732283 3343.1244094 47.2440945 -1532.3732283 3399.3641732 263.7795276 -1452.0547244 3399.3641732 47.2440945 -1452.0547244 3336.0976378 263.7795276 -1527.4527559 3336.0976378 47.2440945 -1527.4527559 3392.3370079 47.2440945 -1447.1342520 3392.3370079 263.7795276 -1447.1342520 3330.0318898 263.7795276 -1521.3870079 3330.0318898 47.2440945 -1521.3870079 3384.5625984 47.2440945 -1443.5090551 3384.5625984 263.7795276 -1443.5090551 3325.1114173 263.7795276 -1514.3598425 3325.1114173 47.2440945 -1514.3598425 3376.2767717 47.2440945 -1441.2889764 3376.2767717 263.7795276 -1441.2889764 3321.4866142 47.2440945 -1506.5854331 3321.4866142 263.7795276 -1506.5854331 3367.7307087 47.2440945 -1440.5409449 3367.7307087 263.7795276 -1440.5409449 3319.2657480 47.2440945 -1498.2992126 3319.2657480 263.7795276 -1498.2992126 3359.1854331 47.2440945 -1441.2885827 3359.1854331 263.7795276 -1441.2885827 3318.5181102 263.7795276 -1489.7535433 3318.5181102 47.2440945 -1489.7535433 3350.8992126 47.2440945 -1443.5090551 3350.8992126 263.7795276 -1443.5090551 3319.2661417 47.2440945 -1481.2078740 3319.2661417 263.7795276 -1481.2078740 3343.1244094 47.2440945 -1447.1342520 3343.1244094 263.7795276 -1447.1342520 3321.4866142 263.7795276 -1472.9220472 3321.4866142 47.2440945 -1472.9220472 3336.0976378 47.2440945 -1452.0547244 3336.0976378 263.7795276 -1452.0547244 3325.1114173 47.2440945 -1465.1472441 3325.1114173 263.7795276 -1465.1472441 3330.0318898 47.2440945 -1458.1204724 3330.0318898 263.7795276 -1458.1204724 - - - - - - - - - - -0.8660263 -0.0000000 0.4999985 -0.7660461 -0.0000000 0.6427856 -0.8660263 -0.0000000 0.4999985 -0.7660461 -0.0000000 0.6427856 -0.6427852 -0.0000000 0.7660465 -0.6427852 -0.0000000 0.7660465 -0.9396908 -0.0000000 0.3420253 -0.9396908 -0.0000000 0.3420253 -0.5000081 0.0000000 0.8660207 -0.5000081 0.0000000 0.8660207 -0.9848099 -0.0000000 0.1736360 -0.9848099 -0.0000000 0.1736360 -0.3420321 0.0000000 0.9396883 -0.3420321 0.0000000 0.9396883 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.1736392 0.0000000 0.9848093 -0.1736392 0.0000000 0.9848093 -0.9848089 0.0000000 -0.1736419 -0.9848089 0.0000000 -0.1736419 0.0000040 0.0000000 1.0000000 0.0000040 0.0000000 1.0000000 -0.9396920 0.0000000 -0.3420217 -0.9396920 0.0000000 -0.3420217 0.1736373 0.0000000 0.9848097 0.1736373 0.0000000 0.9848097 -0.8660246 -0.0000000 -0.5000015 -0.8660246 -0.0000000 -0.5000015 0.3420174 0.0000000 0.9396936 0.3420174 0.0000000 0.9396936 -0.7660481 -0.0000000 -0.6427832 -0.7660481 -0.0000000 -0.6427832 0.4999997 0.0000000 0.8660256 0.4999997 0.0000000 0.8660256 -0.6427875 -0.0000000 -0.7660445 -0.6427875 -0.0000000 -0.7660445 0.6427976 -0.0000000 0.7660360 0.6427976 -0.0000000 0.7660360 -0.4999967 0.0000000 -0.8660273 -0.4999967 0.0000000 -0.8660273 0.7660445 -0.0000000 0.6427875 0.7660445 -0.0000000 0.6427875 -0.3420113 0.0000000 -0.9396958 -0.3420113 0.0000000 -0.9396958 0.8660377 -0.0000000 0.4999787 0.8660377 -0.0000000 0.4999787 -0.1736624 0.0000000 -0.9848052 -0.1736624 0.0000000 -0.9848052 0.9396898 -0.0000000 0.3420278 0.9396898 -0.0000000 0.3420278 -0.0000189 0.0000000 -1.0000000 -0.0000189 0.0000000 -1.0000000 0.9848022 -0.0000000 0.1736797 0.9848022 -0.0000000 0.1736797 0.1736598 0.0000000 -0.9848057 0.1736598 0.0000000 -0.9848057 1.0000000 0.0000000 -0.0000229 1.0000000 0.0000000 -0.0000229 0.3420174 0.0000000 -0.9396936 0.3420174 0.0000000 -0.9396936 0.9848010 0.0000000 -0.1736862 0.9848010 0.0000000 -0.1736862 0.4999997 0.0000000 -0.8660256 0.4999997 0.0000000 -0.8660256 0.9396987 0.0000000 -0.3420035 0.9396987 0.0000000 -0.3420035 0.6427976 -0.0000000 -0.7660360 0.6427976 -0.0000000 -0.7660360 0.8660360 0.0000000 -0.4999817 0.8660360 0.0000000 -0.4999817 0.7660360 -0.0000000 -0.6427976 0.7660360 -0.0000000 -0.6427976 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 6 0 2 0 6 7 5 8 9 8 5 4 10 7 6 7 10 11 9 12 13 12 9 8 14 10 15 10 14 11 13 16 17 16 13 12 18 14 15 14 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 22 23 22 26 27 25 28 29 28 25 24 30 26 31 26 30 27 29 32 33 32 29 28 34 31 35 31 34 30 33 36 37 36 33 32 34 38 39 38 34 35 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 44 48 45 48 44 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 52 56 57 56 52 53 55 58 59 58 55 54 56 60 57 60 56 61 59 62 63 62 59 58 60 64 65 64 60 61 63 66 67 66 63 62 64 68 65 68 64 69 67 70 71 70 67 66 68 71 70 71 68 69

-
-
-
- - - - 7027.5000000 263.7795276 -4369.0984252 7045.7047244 47.2440945 -4411.2559055 7027.5000000 47.2440945 -4369.0984252 7045.7047244 263.7795276 -4411.2559055 7014.9015748 263.7795276 -4324.9409449 7014.9015748 47.2440945 -4324.9409449 7047.5669291 47.2440945 -4415.7874016 7047.5669291 263.7795276 -4415.7874016 7008.1181102 263.7795276 -4279.5275591 7008.1181102 47.2440945 -4279.5275591 7048.6496063 47.2440945 -4420.5629921 7048.6496063 263.7795276 -4420.5629921 7007.3070866 263.7795276 -4274.6968504 7007.3070866 47.2440945 -4274.6968504 7048.9330709 47.2440945 -4425.4488189 7048.9330709 263.7795276 -4425.4488189 7005.7086614 263.7795276 -4270.0708661 7005.7086614 47.2440945 -4270.0708661 7048.4015748 263.7795276 -4430.3188976 7048.4015748 47.2440945 -4430.3188976 7003.3700787 47.2440945 -4265.7716535 7003.3700787 263.7795276 -4265.7716535 7047.0748031 263.7795276 -4435.0314961 7047.0748031 47.2440945 -4435.0314961 7000.3503937 263.7795276 -4261.9173228 7000.3503937 47.2440945 -4261.9173228 7044.9842520 47.2440945 -4439.4606299 7044.9842520 263.7795276 -4439.4606299 6996.7362205 47.2440945 -4258.6141732 6996.7362205 263.7795276 -4258.6141732 6986.5944882 47.2440945 -4540.5984252 6986.5944882 263.7795276 -4540.5984252 6992.6299213 47.2440945 -4255.9527559 6992.6299213 263.7795276 -4255.9527559 6945.6929134 263.7795276 -4611.4370079 6945.6929134 47.2440945 -4611.4370079 6988.1377953 47.2440945 -4254.0078740 6988.1377953 263.7795276 -4254.0078740 6942.9645669 47.2440945 -4615.3858268 6942.9645669 263.7795276 -4615.3858268 6983.3818898 47.2440945 -4252.8346457 6983.3818898 263.7795276 -4252.8346457 6939.6338583 47.2440945 -4618.8385827 6939.6338583 263.7795276 -4618.8385827 6978.5039370 47.2440945 -4252.4606299 6978.5039370 263.7795276 -4252.4606299 6935.7874016 263.7795276 -4621.7047244 6935.7874016 47.2440945 -4621.7047244 6800.9803150 47.2440945 -4253.6023622 6800.9803150 263.7795276 -4253.6023622 6931.5275591 263.7795276 -4623.9094488 6931.5275591 47.2440945 -4623.9094488 6796.2125984 47.2440945 -4254.0196850 6796.2125984 263.7795276 -4254.0196850 6926.9645669 263.7795276 -4625.3976378 6926.9645669 47.2440945 -4625.3976378 6791.5708661 47.2440945 -4255.2047244 6791.5708661 263.7795276 -4255.2047244 6922.2244094 263.7795276 -4626.1259843 6922.2244094 47.2440945 -4626.1259843 6787.1850394 47.2440945 -4257.1220472 6787.1850394 263.7795276 -4257.1220472 6917.4251969 263.7795276 -4626.0787402 6917.4251969 47.2440945 -4626.0787402 6783.1653543 47.2440945 -4259.7244094 6783.1653543 263.7795276 -4259.7244094 6912.7007874 263.7795276 -4625.2559055 6912.7007874 47.2440945 -4625.2559055 6779.6181102 47.2440945 -4262.9448819 6779.6181102 263.7795276 -4262.9448819 6908.1692913 263.7795276 -4623.6771654 6908.1692913 47.2440945 -4623.6771654 6776.6417323 263.7795276 -4266.6929134 6776.6417323 47.2440945 -4266.6929134 6903.9566929 263.7795276 -4621.3818898 6903.9566929 47.2440945 -4621.3818898 6774.3070866 263.7795276 -4270.8740157 6774.3070866 47.2440945 -4270.8740157 6900.1692913 263.7795276 -4618.4409449 6900.1692913 47.2440945 -4618.4409449 6772.6771654 263.7795276 -4275.3779528 6772.6771654 47.2440945 -4275.3779528 6896.9055118 47.2440945 -4614.9212598 6896.9055118 263.7795276 -4614.9212598 6771.7992126 47.2440945 -4280.0826772 6771.7992126 263.7795276 -4280.0826772 6847.0748031 47.2440945 -4540.5354331 6847.0748031 263.7795276 -4540.5354331 6771.6968504 263.7795276 -4284.8700787 6771.6968504 47.2440945 -4284.8700787 6809.0629921 47.2440945 -4459.4685039 6809.0629921 263.7795276 -4459.4685039 6783.7440945 263.7795276 -4373.5905512 6783.7440945 47.2440945 -4373.5905512 6801.4685039 47.2440945 -4433.7165354 6801.4685039 263.7795276 -4433.7165354 - - - - - - - - - - -0.9418237 -0.0000000 -0.3361072 -0.9215381 -0.0000000 -0.3882880 -0.9418237 -0.0000000 -0.3361072 -0.9215381 -0.0000000 -0.3882880 -0.9773800 0.0000006 -0.2114906 -0.9773800 0.0000006 -0.2114906 -0.9534181 -0.0000000 -0.3016520 -0.9534181 -0.0000000 -0.3016520 -0.9876527 0.0000006 -0.1566594 -0.9876527 0.0000006 -0.1566594 -0.9901535 -0.0000000 -0.1399861 -0.9901535 -0.0000000 -0.1399861 -0.9690327 0.0000000 -0.2469324 -0.9690327 0.0000000 -0.2469324 -0.9996780 0.0000000 0.0253733 -0.9996780 0.0000000 0.0253733 -0.9149388 0.0000000 -0.4035925 -0.9149388 0.0000000 -0.4035925 -0.9817067 0.0000000 0.1903996 -0.9817067 0.0000000 0.1903996 -0.8357055 0.0000000 -0.5491779 -0.8357055 0.0000000 -0.5491779 -0.9366991 -0.0000000 0.3501354 -0.9366991 -0.0000000 0.3501354 -0.7334246 -0.0000000 -0.6797708 -0.7334246 -0.0000000 -0.6797708 -0.8859350 -0.0000000 0.4638094 -0.8859350 -0.0000000 0.4638094 -0.6113478 -0.0000000 -0.7913620 -0.6113478 -0.0000000 -0.7913620 -0.8660218 0.0000001 0.5000063 -0.8660218 0.0000001 0.5000063 -0.4722344 0.0000000 -0.8814730 -0.4722344 0.0000000 -0.8814730 -0.8450594 0.0000001 0.5346725 -0.8450594 0.0000001 0.5346725 -0.3195210 -0.0000000 -0.9475792 -0.3195210 -0.0000000 -0.9475792 -0.7737799 -0.0000000 0.6334545 -0.7737799 -0.0000000 0.6334545 -0.1585209 -0.0000000 -0.9873556 -0.1585209 -0.0000000 -0.9873556 -0.6608008 -0.0000000 0.7505613 -0.6608008 -0.0000000 0.7505613 -0.0350395 0.0000003 -0.9993859 -0.0350395 0.0000003 -0.9993859 -0.5303298 -0.0000000 0.8477914 -0.5303298 -0.0000000 0.8477914 0.0468528 0.0000003 -0.9989018 0.0468528 0.0000003 -0.9989018 -0.3861288 -0.0000000 0.9224449 -0.3861288 -0.0000000 0.9224449 0.1678369 -0.0000000 -0.9858148 0.1678369 -0.0000000 -0.9858148 -0.2317379 0.0000000 0.9727783 -0.2317379 0.0000000 0.9727783 0.3250312 -0.0000000 -0.9457033 0.3250312 -0.0000000 -0.9457033 -0.0712487 0.0000000 0.9974586 -0.0712487 0.0000000 0.9974586 0.4735686 0.0000000 -0.8807569 0.4735686 0.0000000 -0.8807569 0.0910143 0.0000000 0.9958496 0.0910143 0.0000000 0.9958496 0.6098332 -0.0000000 -0.7925298 0.6098332 -0.0000000 -0.7925298 0.2511224 -0.0000000 0.9679554 0.2511224 -0.0000000 0.9679554 0.7300548 -0.0000000 -0.6833886 0.7300548 -0.0000000 -0.6833886 0.4050790 0.0000000 0.9142817 0.4050790 0.0000000 0.9142817 0.8308298 0.0000000 -0.5565265 0.8308298 0.0000000 -0.5565265 0.5476639 0.0000000 0.8366984 0.5476639 0.0000000 0.8366984 0.9096979 0.0000000 -0.4152706 0.9096979 0.0000000 -0.4152706 0.6755262 0.0000000 0.7373360 0.6755262 0.0000000 0.7373360 0.9648676 0.0000000 -0.2627367 0.9648676 0.0000000 -0.2627367 0.7844662 0.0000007 0.6201716 0.7844662 0.0000007 0.6201716 0.9947070 0.0000000 -0.1027519 0.9947070 0.0000000 -0.1027519 0.8706162 0.0000012 0.4919628 0.8706162 0.0000012 0.4919628 0.9983877 0.0000000 0.0567620 0.9983877 0.0000000 0.0567620 0.9349718 0.0000005 0.3547222 0.9349718 0.0000005 0.3547222 0.9778605 0.0000000 0.2092576 0.9778605 0.0000000 0.2092576 0.9591755 0.0000000 0.2828114 0.9591755 0.0000000 0.2828114 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 5 9 5 8 4 7 10 6 10 7 11 12 9 13 9 12 8 11 14 10 14 11 15 16 13 17 13 16 12 14 18 19 18 14 15 20 16 17 16 20 21 19 22 23 22 19 18 24 20 25 20 24 21 22 26 23 26 22 27 24 28 29 28 24 25 27 30 26 30 27 31 29 32 33 32 29 28 30 34 35 34 30 31 33 36 37 36 33 32 34 38 35 38 34 39 37 40 41 40 37 36 39 42 38 42 39 43 41 44 45 44 41 40 42 46 47 46 42 43 45 48 49 48 45 44 47 50 51 50 47 46 49 52 53 52 49 48 51 54 55 54 51 50 53 56 57 56 53 52 55 58 59 58 55 54 57 60 61 60 57 56 59 62 63 62 59 58 61 64 65 64 61 60 63 66 67 66 63 62 65 68 69 68 65 64 67 70 71 70 67 66 72 68 73 68 72 69 71 74 75 74 71 70 76 73 77 73 76 72 75 78 79 78 75 74 80 77 81 77 80 76 78 82 79 82 78 83 84 80 81 80 84 85 83 86 82 86 83 87 88 84 89 84 88 85 87 90 86 90 87 91 92 89 93 89 92 88 91 94 90 94 91 95 94 92 93 92 94 95

-
-
-
- - - - 7261.0787402 263.7795276 -4543.6338583 7256.5826772 47.2440945 -4553.2755906 7261.0787402 47.2440945 -4543.6338583 7256.5826772 263.7795276 -4553.2755906 7263.8307087 263.7795276 -4533.3622047 7263.8307087 47.2440945 -4533.3622047 7227.0551181 47.2440945 -4604.4173228 7227.0551181 263.7795276 -4604.4173228 7264.7598425 47.2440945 -4522.7637795 7264.7598425 263.7795276 -4522.7637795 7220.9527559 263.7795276 -4613.1338583 7220.9527559 47.2440945 -4613.1338583 7263.8307087 263.7795276 -4512.1653543 7263.8307087 47.2440945 -4512.1653543 7213.4330709 263.7795276 -4620.6535433 7213.4330709 47.2440945 -4620.6535433 7261.0787402 47.2440945 -4501.8937008 7261.0787402 263.7795276 -4501.8937008 7204.7204724 263.7795276 -4626.7559055 7204.7204724 47.2440945 -4626.7559055 7256.5826772 263.7795276 -4492.2519685 7256.5826772 47.2440945 -4492.2519685 7195.0787402 263.7795276 -4631.2519685 7195.0787402 47.2440945 -4631.2519685 7250.4803150 263.7795276 -4483.5393701 7250.4803150 47.2440945 -4483.5393701 7184.8031496 263.7795276 -4634.0039370 7184.8031496 47.2440945 -4634.0039370 7242.9606299 263.7795276 -4476.0157480 7242.9606299 47.2440945 -4476.0157480 7174.2086614 263.7795276 -4634.9291339 7174.2086614 47.2440945 -4634.9291339 7234.2480315 47.2440945 -4469.9173228 7234.2480315 263.7795276 -4469.9173228 7163.6102362 263.7795276 -4634.0039370 7163.6102362 47.2440945 -4634.0039370 7224.6062992 47.2440945 -4465.4212598 7224.6062992 263.7795276 -4465.4212598 7153.3346457 263.7795276 -4631.2519685 7153.3346457 47.2440945 -4631.2519685 7214.3307087 47.2440945 -4462.6692913 7214.3307087 263.7795276 -4462.6692913 7143.6968504 263.7795276 -4626.7559055 7143.6968504 47.2440945 -4626.7559055 7203.7362205 47.2440945 -4461.7401575 7203.7362205 263.7795276 -4461.7401575 7134.9842520 263.7795276 -4620.6535433 7134.9842520 47.2440945 -4620.6535433 7193.1377953 47.2440945 -4462.6692913 7193.1377953 263.7795276 -4462.6692913 7127.4606299 263.7795276 -4613.1338583 7127.4606299 47.2440945 -4613.1338583 7182.8622047 47.2440945 -4465.4212598 7182.8622047 263.7795276 -4465.4212598 7121.3582677 47.2440945 -4604.4173228 7121.3582677 263.7795276 -4604.4173228 7173.2244094 47.2440945 -4469.9173228 7173.2244094 263.7795276 -4469.9173228 7116.8661417 47.2440945 -4594.7795276 7116.8661417 263.7795276 -4594.7795276 7164.5118110 47.2440945 -4476.0157480 7164.5118110 263.7795276 -4476.0157480 7114.1102362 263.7795276 -4584.5039370 7114.1102362 47.2440945 -4584.5039370 7156.9881890 47.2440945 -4483.5393701 7156.9881890 263.7795276 -4483.5393701 7113.1850394 47.2440945 -4573.9055118 7113.1850394 263.7795276 -4573.9055118 7150.8858268 263.7795276 -4492.2519685 7150.8858268 47.2440945 -4492.2519685 7114.1102362 47.2440945 -4563.3110236 7114.1102362 263.7795276 -4563.3110236 7121.3582677 263.7795276 -4543.3937008 7121.3582677 47.2440945 -4543.3937008 7116.8661417 47.2440945 -4553.0354331 7116.8661417 263.7795276 -4553.0354331 - - - - - - - - - - -0.9396968 0.0000000 0.3420088 -0.8870069 0.0000000 0.4617561 -0.9396968 0.0000000 0.3420088 -0.8870069 0.0000000 0.4617561 -0.9847948 0.0000000 0.1737214 -0.9847948 0.0000000 0.1737214 -0.8434092 0.0000000 0.5372718 -0.8434092 0.0000000 0.5372718 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.7660697 0.0000000 0.6427575 -0.7660697 0.0000000 0.6427575 -0.9847948 0.0000000 -0.1737214 -0.9847948 0.0000000 -0.1737214 -0.6428388 0.0000000 0.7660015 -0.6428388 0.0000000 0.7660015 -0.9396968 -0.0000000 -0.3420088 -0.9396968 -0.0000000 -0.3420088 -0.5000597 0.0000000 0.8659909 -0.5000597 0.0000000 0.8659909 -0.8659909 -0.0000000 -0.5000597 -0.8659909 -0.0000000 -0.5000597 -0.3419638 0.0000000 0.9397131 -0.3419638 0.0000000 0.9397131 -0.7660856 -0.0000000 -0.6427385 -0.7660856 -0.0000000 -0.6427385 -0.1735086 0.0000000 0.9848324 -0.1735086 0.0000000 0.9848324 -0.6428229 -0.0000000 -0.7660148 -0.6428229 -0.0000000 -0.7660148 -0.0000161 -0.0000000 1.0000000 -0.0000161 -0.0000000 1.0000000 -0.4999284 -0.0000000 -0.8660667 -0.4999284 -0.0000000 -0.8660667 0.1734927 -0.0000000 0.9848352 0.1734927 -0.0000000 0.9848352 -0.3419638 -0.0000000 -0.9397131 -0.3419638 -0.0000000 -0.9397131 0.3420373 0.0000000 0.9396864 0.3420373 0.0000000 0.9396864 -0.1736902 -0.0000000 -0.9848003 -0.1736902 -0.0000000 -0.9848003 0.5001274 0.0000000 0.8659518 0.5001274 0.0000000 0.8659518 -0.0000162 -0.0000000 -1.0000000 -0.0000162 -0.0000000 -1.0000000 0.6427385 -0.0000000 0.7660856 0.6427385 -0.0000000 0.7660856 0.1736743 0.0000000 -0.9848032 0.1736743 0.0000000 -0.9848032 0.7659856 -0.0000000 0.6428577 0.7659856 -0.0000000 0.6428577 0.3420373 -0.0000000 -0.9396864 0.3420373 -0.0000000 -0.9396864 0.8660888 0.0000000 0.4998902 0.8660888 0.0000000 0.4998902 0.4999961 -0.0000000 -0.8660276 0.4999961 -0.0000000 -0.8660276 0.9396826 -0.0000000 0.3420476 0.9396826 -0.0000000 0.3420476 0.6427226 -0.0000000 -0.7660989 0.6427226 -0.0000000 -0.7660989 0.9848041 -0.0000000 0.1736687 0.9848041 -0.0000000 0.1736687 0.7660015 0.0000000 -0.6428388 0.7660015 0.0000000 -0.6428388 1.0000000 -0.0000000 -0.0000161 1.0000000 -0.0000000 -0.0000161 0.8433521 0.0000000 -0.5373613 0.8433521 0.0000000 -0.5373613 0.9848013 -0.0000000 -0.1736846 0.9848013 -0.0000000 -0.1736846 0.8870844 -0.0000000 -0.4616073 0.8870844 -0.0000000 -0.4616073 0.9397094 -0.0000000 -0.3419741 0.9397094 -0.0000000 -0.3419741 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 2 5 2 4 0 3 6 1 6 3 7 8 4 5 4 8 9 6 10 11 10 6 7 12 8 13 8 12 9 11 14 15 14 11 10 16 12 13 12 16 17 15 18 19 18 15 14 20 16 21 16 20 17 19 22 23 22 19 18 24 21 25 21 24 20 23 26 27 26 23 22 28 25 29 25 28 24 27 30 31 30 27 26 28 32 33 32 28 29 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 45 48 49 48 45 44 47 50 51 50 47 46 49 52 53 52 49 48 50 54 51 54 50 55 53 56 57 56 53 52 55 58 54 58 55 59 57 60 61 60 57 56 58 62 63 62 58 59 61 64 65 64 61 60 62 66 63 66 62 67 68 64 69 64 68 65 67 70 66 70 67 71 72 69 73 69 72 68 71 74 70 74 71 75 74 72 73 72 74 75

-
-
-
- - - - 7522.4724409 263.7795276 -4565.5078740 7484.7244094 47.2440945 -4581.5708661 7484.7244094 263.7795276 -4581.5708661 7522.4724409 47.2440945 -4565.5078740 7526.4527559 263.7795276 -4563.8740157 7526.4527559 47.2440945 -4563.8740157 7476.7125984 47.2440945 -4584.9763780 7476.7125984 263.7795276 -4584.9763780 7527.0039370 263.7795276 -4563.6496063 7527.0039370 47.2440945 -4563.6496063 7428.6811024 47.2440945 -4597.8503937 7428.6811024 263.7795276 -4597.8503937 7531.7795276 263.7795276 -4562.5669291 7531.7795276 47.2440945 -4562.5669291 7420.0393701 47.2440945 -4598.9015748 7420.0393701 263.7795276 -4598.9015748 7536.6653543 263.7795276 -4562.2834646 7536.6653543 47.2440945 -4562.2834646 7379.3188976 47.2440945 -4603.8661417 7379.3188976 263.7795276 -4603.8661417 7541.5314961 263.7795276 -4562.8149606 7541.5314961 47.2440945 -4562.8149606 7374.4645669 47.2440945 -4604.5236220 7374.4645669 263.7795276 -4604.5236220 7546.2480315 263.7795276 -4564.1417323 7546.2480315 47.2440945 -4564.1417323 7369.7874016 47.2440945 -4605.9685039 7369.7874016 263.7795276 -4605.9685039 7550.6771654 263.7795276 -4566.2322835 7550.6771654 47.2440945 -4566.2322835 7365.4133858 47.2440945 -4608.1692913 7365.4133858 263.7795276 -4608.1692913 7710.7913386 263.7795276 -4658.6732283 7710.7913386 47.2440945 -4658.6732283 7361.4645669 47.2440945 -4611.0629921 7361.4645669 263.7795276 -4611.0629921 7715.0078740 263.7795276 -4661.6259843 7715.0078740 47.2440945 -4661.6259843 7358.0472441 263.7795276 -4614.5708661 7358.0472441 47.2440945 -4614.5708661 7718.6496063 263.7795276 -4665.2677165 7718.6496063 47.2440945 -4665.2677165 7355.2559055 263.7795276 -4618.5944882 7355.2559055 47.2440945 -4618.5944882 7721.6023622 263.7795276 -4669.4842520 7721.6023622 47.2440945 -4669.4842520 7271.4685039 263.7795276 -4763.7125984 7271.4685039 47.2440945 -4763.7125984 7723.7755906 47.2440945 -4674.1456693 7723.7755906 263.7795276 -4674.1456693 7262.8110236 47.2440945 -4778.7125984 7262.8110236 263.7795276 -4778.7125984 7724.9330709 47.2440945 -4678.4685039 7724.9330709 263.7795276 -4678.4685039 7260.6338583 263.7795276 -4783.3740157 7260.6338583 47.2440945 -4783.3740157 7725.1102362 263.7795276 -4679.1181102 7725.1102362 47.2440945 -4679.1181102 7259.3031496 263.7795276 -4788.3464567 7259.3031496 47.2440945 -4788.3464567 7725.5551181 47.2440945 -4684.2480315 7725.5551181 263.7795276 -4684.2480315 7258.8543307 263.7795276 -4793.4763780 7258.8543307 47.2440945 -4793.4763780 7725.1102362 47.2440945 -4689.3740157 7725.1102362 263.7795276 -4689.3740157 7259.3031496 47.2440945 -4798.6023622 7259.3031496 263.7795276 -4798.6023622 7723.7755906 47.2440945 -4694.3464567 7723.7755906 263.7795276 -4694.3464567 7260.6338583 263.7795276 -4803.5748031 7260.6338583 47.2440945 -4803.5748031 7721.6023622 47.2440945 -4699.0118110 7721.6023622 263.7795276 -4699.0118110 7262.8110236 263.7795276 -4808.2401575 7262.8110236 47.2440945 -4808.2401575 7720.9133858 263.7795276 -4700.2047244 7720.9133858 47.2440945 -4700.2047244 7265.7637795 47.2440945 -4812.4566929 7265.7637795 263.7795276 -4812.4566929 7718.2874016 47.2440945 -4704.0236220 7718.2874016 263.7795276 -4704.0236220 7269.4015748 47.2440945 -4816.0944882 7269.4015748 263.7795276 -4816.0944882 7715.0984252 263.7795276 -4707.3818898 7715.0984252 47.2440945 -4707.3818898 7273.6181102 47.2440945 -4819.0472441 7273.6181102 263.7795276 -4819.0472441 7711.4212598 263.7795276 -4710.2047244 7711.4212598 47.2440945 -4710.2047244 7274.8110236 47.2440945 -4819.7362205 7274.8110236 263.7795276 -4819.7362205 7709.4133858 47.2440945 -4711.2952756 7707.3503937 263.7795276 -4712.4133858 7707.3503937 47.2440945 -4712.4133858 7709.4133858 263.7795276 -4711.2952756 7278.9921260 47.2440945 -4821.7283465 7278.9921260 263.7795276 -4821.7283465 7702.9842520 263.7795276 -4713.9606299 7702.9842520 47.2440945 -4713.9606299 7283.4370079 47.2440945 -4823.0472441 7283.4370079 263.7795276 -4823.0472441 7645.4251969 263.7795276 -4729.3818898 7645.4251969 47.2440945 -4729.3818898 7288.0314961 47.2440945 -4823.6496063 7288.0314961 263.7795276 -4823.6496063 7418.7716535 47.2440945 -4790.1141732 7349.3976378 263.7795276 -4808.7047244 7349.3976378 47.2440945 -4808.7047244 7418.7716535 263.7795276 -4790.1141732 7292.6614173 47.2440945 -4823.5314961 7292.6614173 263.7795276 -4823.5314961 7297.2165354 263.7795276 -4822.6850394 7297.2165354 47.2440945 -4822.6850394 - - - - - - - - - - 0.3856540 0.0000000 -0.9226435 0.3913719 0.0000000 -0.9202326 0.3913719 0.0000000 -0.9202326 0.3856540 0.0000000 -0.9226435 0.3784123 0.0000000 -0.9256371 0.3784123 0.0000000 -0.9256371 0.3258399 0.0000000 -0.9454249 0.3258399 0.0000000 -0.9454249 0.3000980 -0.0000000 -0.9539084 0.3000980 -0.0000000 -0.9539084 0.1902938 0.0000000 -0.9817272 0.1902938 0.0000000 -0.9817272 0.1399861 -0.0000000 -0.9901535 0.1399861 -0.0000000 -0.9901535 0.1208861 0.0000000 -0.9926664 0.1208861 0.0000000 -0.9926664 -0.0254169 0.0000000 -0.9996769 -0.0254169 0.0000000 -0.9996769 0.1276221 -0.0000000 -0.9918229 0.1276221 -0.0000000 -0.9918229 -0.1903355 -0.0000000 -0.9817191 -0.1903355 -0.0000000 -0.9817191 0.2154207 -0.0000000 -0.9765213 0.2154207 -0.0000000 -0.9765213 -0.3500334 -0.0000000 -0.9367372 -0.3500334 -0.0000000 -0.9367372 0.3736060 -0.0000000 -0.9275875 0.3736060 -0.0000000 -0.9275875 -0.4638146 -0.0000002 -0.8859323 -0.4638146 -0.0000002 -0.8859323 0.5220765 -0.0000000 -0.8528986 0.5220765 -0.0000000 -0.8528986 -0.5373183 -0.0000002 -0.8433795 -0.5373183 -0.0000002 -0.8433795 0.6559481 -0.0000000 -0.7548060 0.6559481 -0.0000000 -0.7548060 -0.6428063 0.0000000 -0.7660288 -0.6428063 0.0000000 -0.7660288 0.7716170 -0.0000000 -0.6360875 0.7716170 -0.0000000 -0.6360875 -0.7660288 0.0000000 -0.6428063 -0.7660288 0.0000000 -0.6428063 0.8445547 0.0000004 -0.5354694 0.8445547 0.0000004 -0.5354694 -0.8660320 0.0000000 -0.4999886 -0.8660320 0.0000000 -0.4999886 0.8660558 0.0000004 -0.4999474 0.8660558 0.0000004 -0.4999474 -0.9397357 0.0000000 -0.3419017 -0.9397357 0.0000000 -0.3419017 0.8869000 0.0000000 -0.4619614 0.8869000 0.0000000 -0.4619614 -0.9653703 0.0000000 -0.2608835 -0.9653703 0.0000000 -0.2608835 0.9396399 -0.0000000 -0.3421650 0.9396399 -0.0000000 -0.3421650 -0.9844855 0.0000000 -0.1754662 -0.9844855 0.0000000 -0.1754662 0.9848345 -0.0000000 -0.1734963 0.9848345 -0.0000000 -0.1734963 -1.0000000 0.0000000 0.0000331 -1.0000000 0.0000000 0.0000331 1.0000000 0.0000000 0.0000333 1.0000000 0.0000000 0.0000333 -0.9848308 0.0000000 0.1735175 -0.9848308 0.0000000 0.1735175 0.9848287 0.0000000 0.1735291 0.9848287 0.0000000 0.1735291 -0.9396875 0.0000000 0.3420343 -0.9396875 0.0000000 0.3420343 0.9396952 -0.0000000 0.3420129 0.9396952 -0.0000000 0.3420129 -0.8870669 -0.0000000 0.4616410 -0.8870669 -0.0000000 0.4616410 0.8659395 -0.0000000 0.5001488 0.8659395 -0.0000000 0.5001488 -0.8456233 0.0000000 0.5337802 -0.8456233 0.0000000 0.5337802 0.7660288 0.0000000 0.6428063 0.7660288 0.0000000 0.6428063 -0.7769681 0.0000000 0.6295399 -0.7769681 0.0000000 0.6295399 0.6428063 -0.0000000 0.7660288 0.6428063 -0.0000000 0.7660288 -0.6690877 0.0000000 0.7431835 -0.6690877 0.0000000 0.7431835 0.5373858 -0.0000000 0.8433366 0.5373858 -0.0000000 0.8433366 -0.5445973 -0.0000000 0.8386977 -0.5445973 -0.0000000 0.8386977 0.4654973 0.0000000 0.8850493 0.4654973 0.0000000 0.8850493 -0.4768837 0.0000000 0.8789664 -0.4066971 0.0000000 0.9135631 -0.4066971 0.0000000 0.9135631 -0.4768837 0.0000000 0.8789664 0.3583902 0.0000000 0.9335719 0.3583902 0.0000000 0.9335719 -0.2966369 0.0000000 0.9549903 -0.2966369 0.0000000 0.9549903 0.2078776 0.0000000 0.9781548 0.2078776 0.0000000 0.9781548 -0.2588094 -0.0000000 0.9659284 -0.2588094 -0.0000000 0.9659284 0.0524050 -0.0000006 0.9986259 0.0524050 -0.0000006 0.9986259 -0.2588254 -0.0000000 0.9659241 -0.2588087 -0.0000000 0.9659286 -0.2588087 -0.0000000 0.9659286 -0.2588254 -0.0000000 0.9659241 -0.1044261 -0.0000006 0.9945327 -0.1044261 -0.0000006 0.9945327 -0.2209130 0.0000000 0.9752935 -0.2209130 0.0000000 0.9752935 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 2 6 7 6 2 1 8 5 4 5 8 9 7 10 11 10 7 6 12 9 8 9 12 13 11 14 15 14 11 10 16 13 12 13 16 17 15 18 19 18 15 14 20 17 16 17 20 21 19 22 23 22 19 18 24 21 20 21 24 25 23 26 27 26 23 22 28 25 24 25 28 29 27 30 31 30 27 26 32 29 28 29 32 33 31 34 35 34 31 30 36 33 32 33 36 37 38 34 39 34 38 35 40 37 36 37 40 41 42 39 43 39 42 38 41 44 45 44 41 40 46 43 47 43 46 42 44 48 45 48 44 49 50 46 47 46 50 51 49 52 48 52 49 53 54 50 55 50 54 51 52 56 57 56 52 53 58 55 59 55 58 54 56 60 57 60 56 61 62 59 63 59 62 58 61 64 60 64 61 65 66 62 63 62 66 67 65 68 64 68 65 69 70 66 71 66 70 67 69 72 68 72 69 73 74 71 75 71 74 70 72 76 77 76 72 73 78 74 75 74 78 79 76 80 77 80 76 81 82 79 78 79 82 83 80 84 85 84 80 81 86 83 82 83 86 87 85 88 89 88 85 84 90 87 86 87 90 91 92 93 94 93 92 95 95 92 89 95 89 88 96 91 90 91 96 97 94 98 99 98 94 93 100 97 96 97 100 101 99 102 103 102 99 98 104 101 100 101 104 105 106 107 108 107 106 109 109 106 103 109 103 102 110 105 104 105 110 111 108 112 113 112 108 107 113 111 110 111 113 112

-
-
-
- - - - 2936.3311024 47.2440945 -2203.2968504 2931.4106299 263.7795276 -2196.2700787 2931.4106299 47.2440945 -2196.2700787 2936.3311024 263.7795276 -2203.2968504 2942.3968504 47.2440945 -2209.3625984 2942.3968504 263.7795276 -2209.3625984 2927.7858268 47.2440945 -2188.4952756 2927.7858268 263.7795276 -2188.4952756 2949.4236220 47.2440945 -2214.2830709 2949.4236220 263.7795276 -2214.2830709 2925.5649606 263.7795276 -2180.2090551 2925.5649606 47.2440945 -2180.2090551 2957.1984252 47.2440945 -2217.9082677 2957.1984252 263.7795276 -2217.9082677 2924.8173228 47.2440945 -2171.6633858 2924.8173228 263.7795276 -2171.6633858 2965.4846457 47.2440945 -2220.1287402 2965.4846457 263.7795276 -2220.1287402 2925.5653543 263.7795276 -2163.1181102 2925.5653543 47.2440945 -2163.1181102 2974.0299213 47.2440945 -2220.8759843 2974.0299213 263.7795276 -2220.8759843 2927.7858268 47.2440945 -2154.8318898 2927.7858268 263.7795276 -2154.8318898 2982.5759843 47.2440945 -2220.1283465 2982.5759843 263.7795276 -2220.1283465 2931.4106299 263.7795276 -2147.0574803 2931.4106299 47.2440945 -2147.0574803 2990.8618110 47.2440945 -2217.9082677 2990.8618110 263.7795276 -2217.9082677 2936.3311024 47.2440945 -2140.0303150 2936.3311024 263.7795276 -2140.0303150 2998.6362205 47.2440945 -2214.2830709 2998.6362205 263.7795276 -2214.2830709 2942.3968504 263.7795276 -2133.9645669 2942.3968504 47.2440945 -2133.9645669 3005.6629921 47.2440945 -2209.3625984 3005.6629921 263.7795276 -2209.3625984 2949.4236220 263.7795276 -2129.0440945 2949.4236220 47.2440945 -2129.0440945 3011.7291339 47.2440945 -2203.2968504 3011.7291339 263.7795276 -2203.2968504 2957.1984252 263.7795276 -2125.4188976 2957.1984252 47.2440945 -2125.4188976 3016.6492126 263.7795276 -2196.2696850 3016.6492126 47.2440945 -2196.2696850 2965.4846457 263.7795276 -2123.1984252 2965.4846457 47.2440945 -2123.1984252 3020.2748031 47.2440945 -2188.4952756 3020.2748031 263.7795276 -2188.4952756 2974.0299213 263.7795276 -2122.4511811 2974.0299213 47.2440945 -2122.4511811 3022.4948819 263.7795276 -2180.2090551 3022.4948819 47.2440945 -2180.2090551 2982.5759843 263.7795276 -2123.1984252 2982.5759843 47.2440945 -2123.1984252 3023.2425197 47.2440945 -2171.6637795 3023.2425197 263.7795276 -2171.6637795 2990.8618110 263.7795276 -2125.4188976 2990.8618110 47.2440945 -2125.4188976 3022.4948819 263.7795276 -2163.1177165 3022.4948819 47.2440945 -2163.1177165 2998.6362205 263.7795276 -2129.0440945 2998.6362205 47.2440945 -2129.0440945 3020.2748031 47.2440945 -2154.8318898 3020.2748031 263.7795276 -2154.8318898 3005.6633858 263.7795276 -2133.9645669 3005.6633858 47.2440945 -2133.9645669 3016.6492126 263.7795276 -2147.0570866 3016.6492126 47.2440945 -2147.0570866 3011.7291339 47.2440945 -2140.0303150 3011.7291339 263.7795276 -2140.0303150 - - - - - - - - - - 0.7660363 0.0000000 0.6427974 0.8660361 0.0000000 0.4999814 0.8660361 0.0000000 0.4999814 0.7660363 0.0000000 0.6427974 0.6427976 0.0000000 0.7660360 0.6427976 0.0000000 0.7660360 0.9396931 0.0000000 0.3420187 0.9396931 0.0000000 0.3420187 0.4999997 0.0000000 0.8660256 0.4999997 0.0000000 0.8660256 0.9848022 -0.0000000 0.1736797 0.9848022 -0.0000000 0.1736797 0.3420174 0.0000000 0.9396936 0.3420174 0.0000000 0.9396936 1.0000000 0.0000000 -0.0000249 1.0000000 0.0000000 -0.0000249 0.1736382 0.0000001 0.9848095 0.1736382 0.0000001 0.9848095 0.9848017 0.0000000 -0.1736823 0.9848017 0.0000000 -0.1736823 -0.0000179 0.0000001 1.0000000 -0.0000179 0.0000001 1.0000000 0.9396974 0.0000000 -0.3420070 0.9396974 0.0000000 -0.3420070 -0.1736399 -0.0000000 0.9848092 -0.1736399 -0.0000000 0.9848092 0.8660377 0.0000000 -0.4999787 0.8660377 0.0000000 -0.4999787 -0.3420113 0.0000000 0.9396958 -0.3420113 0.0000000 0.9396958 0.7660445 0.0000000 -0.6427875 0.7660445 0.0000000 -0.6427875 -0.5000081 0.0000000 0.8660207 -0.5000081 0.0000000 0.8660207 0.6427976 0.0000000 -0.7660360 0.6427976 0.0000000 -0.7660360 -0.6427852 0.0000000 0.7660465 -0.6427852 0.0000000 0.7660465 0.4999997 0.0000000 -0.8660256 0.4999997 0.0000000 -0.8660256 -0.7660461 0.0000000 0.6427856 -0.7660461 0.0000000 0.6427856 0.3420174 0.0000000 -0.9396936 0.3420174 0.0000000 -0.9396936 -0.8660263 0.0000000 0.4999985 -0.8660263 0.0000000 0.4999985 0.1736373 0.0000000 -0.9848097 0.1736373 0.0000000 -0.9848097 -0.9396908 -0.0000000 0.3420253 -0.9396908 -0.0000000 0.3420253 0.0000040 0.0000000 -1.0000000 0.0000040 0.0000000 -1.0000000 -0.9848095 -0.0000000 0.1736380 -0.9848095 -0.0000000 0.1736380 -0.1736392 0.0000000 -0.9848093 -0.1736392 0.0000000 -0.9848093 -1.0000000 -0.0000000 0.0000040 -1.0000000 -0.0000000 0.0000040 -0.3420321 0.0000000 -0.9396883 -0.3420321 0.0000000 -0.9396883 -0.9848092 -0.0000000 -0.1736399 -0.9848092 -0.0000000 -0.1736399 -0.4999967 0.0000000 -0.8660273 -0.4999967 0.0000000 -0.8660273 -0.9396920 -0.0000000 -0.3420217 -0.9396920 -0.0000000 -0.3420217 -0.6427875 0.0000000 -0.7660445 -0.6427875 0.0000000 -0.7660445 -0.8660246 -0.0000000 -0.5000015 -0.8660246 -0.0000000 -0.5000015 -0.7660481 -0.0000000 -0.6427832 -0.7660481 -0.0000000 -0.6427832 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 3 0 3 4 5 1 6 2 6 1 7 8 5 4 5 8 9 6 10 11 10 6 7 12 9 8 9 12 13 10 14 11 14 10 15 16 13 12 13 16 17 14 18 19 18 14 15 20 17 16 17 20 21 18 22 19 22 18 23 24 21 20 21 24 25 22 26 27 26 22 23 28 25 24 25 28 29 26 30 27 30 26 31 32 29 28 29 32 33 34 30 31 30 34 35 36 33 32 33 36 37 38 35 34 35 38 39 40 37 36 37 40 41 42 39 38 39 42 43 44 40 45 40 44 41 46 43 42 43 46 47 48 44 45 44 48 49 50 47 46 47 50 51 52 48 53 48 52 49 54 51 50 51 54 55 56 52 53 52 56 57 58 55 54 55 58 59 60 56 61 56 60 57 62 59 58 59 62 63 64 60 61 60 64 65 66 63 62 63 66 67 68 64 69 64 68 65 66 70 67 70 66 71 70 68 69 68 70 71

-
-
-
- - - - 3395.9708661 263.7795276 -1925.4326772 2976.3015748 47.2440945 -1683.1366142 2976.3015748 263.7795276 -1683.1366142 3395.9708661 47.2440945 -1925.4326772 3399.9401575 263.7795276 -1922.1562992 3395.9708661 47.2440945 -1925.4326772 3395.9708661 263.7795276 -1925.4326772 3399.9401575 47.2440945 -1922.1562992 2977.1318898 263.7795276 -1678.3311024 2976.3015748 47.2440945 -1683.1366142 2977.1318898 47.2440945 -1678.3311024 2976.3015748 263.7795276 -1683.1366142 3404.4188976 263.7795276 -1919.6192913 3404.4188976 47.2440945 -1919.6192913 2977.1594488 47.2440945 -1673.4543307 2977.1594488 263.7795276 -1673.4543307 3409.2696850 263.7795276 -1917.8980315 3409.2696850 47.2440945 -1917.8980315 2976.3838583 47.2440945 -1668.6397638 2976.3838583 263.7795276 -1668.6397638 3414.3456693 263.7795276 -1917.0456693 3414.3456693 47.2440945 -1917.0456693 2974.8267717 263.7795276 -1664.0185039 2974.8267717 47.2440945 -1664.0185039 3419.4917323 263.7795276 -1917.0874016 3419.4917323 47.2440945 -1917.0874016 2972.5295276 47.2440945 -1659.7165354 2972.5295276 263.7795276 -1659.7165354 3424.5535433 263.7795276 -1918.0224409 3424.5535433 47.2440945 -1918.0224409 2969.5559055 263.7795276 -1655.8511811 2969.5559055 47.2440945 -1655.8511811 3429.3755906 263.7795276 -1919.8220472 3429.3755906 47.2440945 -1919.8220472 2965.9870079 47.2440945 -1652.5279528 2965.9870079 263.7795276 -1652.5279528 3433.8122047 263.7795276 -1922.4318898 3433.8122047 47.2440945 -1922.4318898 2961.9192913 47.2440945 -1649.8377953 2961.9192913 263.7795276 -1649.8377953 3437.7279528 263.7795276 -1925.7724409 3437.7279528 47.2440945 -1925.7724409 2957.4641732 47.2440945 -1647.8535433 2957.4641732 263.7795276 -1647.8535433 3441.0039370 47.2440945 -1929.7421260 3441.0039370 263.7795276 -1929.7421260 2952.7437008 47.2440945 -1646.6299213 2952.7437008 263.7795276 -1646.6299213 3443.5413386 47.2440945 -1934.2200787 3443.5413386 263.7795276 -1934.2200787 2947.8858268 47.2440945 -1646.1996063 2947.8858268 263.7795276 -1646.1996063 3445.2622047 47.2440945 -1939.0708661 3445.2622047 263.7795276 -1939.0708661 2943.0236220 47.2440945 -1646.5748031 2943.0236220 263.7795276 -1646.5748031 3446.1145669 263.7795276 -1944.1464567 3446.1145669 47.2440945 -1944.1464567 2938.2897638 47.2440945 -1647.7452756 2938.2897638 263.7795276 -1647.7452756 3446.0728346 47.2440945 -1949.2937008 3446.0728346 263.7795276 -1949.2937008 2933.8125984 47.2440945 -1649.6787402 2933.8125984 263.7795276 -1649.6787402 3445.1377953 47.2440945 -1954.3551181 3445.1377953 263.7795276 -1954.3551181 2929.7149606 47.2440945 -1652.3232283 2929.7149606 263.7795276 -1652.3232283 3443.3377953 263.7795276 -1959.1771654 3443.3377953 47.2440945 -1959.1771654 2926.1086614 47.2440945 -1655.6059055 2926.1086614 263.7795276 -1655.6059055 3440.7283465 47.2440945 -1963.6133858 3440.7283465 263.7795276 -1963.6133858 2923.0917323 263.7795276 -1659.4374016 2923.0917323 47.2440945 -1659.4374016 3437.3877953 263.7795276 -1967.5291339 3437.3877953 47.2440945 -1967.5291339 2920.7460630 47.2440945 -1663.7133858 2920.7460630 263.7795276 -1663.7133858 3422.6240157 47.2440945 -1993.1007874 3422.6240157 263.7795276 -1993.1007874 2919.1362205 263.7795276 -1668.3165354 2919.1362205 47.2440945 -1668.3165354 3420.9031496 263.7795276 -1997.9515748 3420.9031496 47.2440945 -1997.9515748 2904.3724409 47.2440945 -1693.8881890 2904.3724409 263.7795276 -1693.8881890 3418.3661417 47.2440945 -2002.4295276 3418.3661417 263.7795276 -2002.4295276 2901.0330709 263.7795276 -1697.8043307 2901.0330709 47.2440945 -1697.8043307 3415.0905512 47.2440945 -2006.3992126 3415.0905512 263.7795276 -2006.3992126 2898.4224409 263.7795276 -1702.2401575 2898.4224409 47.2440945 -1702.2401575 3411.1740157 263.7795276 -2009.7397638 3411.1740157 47.2440945 -2009.7397638 2896.6232283 47.2440945 -1707.0622047 2896.6232283 263.7795276 -1707.0622047 3406.7381890 263.7795276 -2012.3492126 3406.7381890 47.2440945 -2012.3492126 2895.6885827 263.7795276 -1712.1240157 2895.6885827 47.2440945 -1712.1240157 3401.9157480 263.7795276 -2014.1492126 3401.9157480 47.2440945 -2014.1492126 2895.6468504 263.7795276 -1717.2708661 2895.6468504 47.2440945 -1717.2708661 3396.8543307 263.7795276 -2015.0842520 3396.8543307 47.2440945 -2015.0842520 2896.4988189 263.7795276 -1722.3464567 2896.4988189 47.2440945 -1722.3464567 3391.7074803 263.7795276 -2015.1259843 3391.7074803 47.2440945 -2015.1259843 2898.2196850 47.2440945 -1727.1972441 2898.2196850 263.7795276 -1727.1972441 3386.6314961 263.7795276 -2014.2732283 3386.6314961 47.2440945 -2014.2732283 2900.7570866 263.7795276 -1731.6755906 2900.7570866 47.2440945 -1731.6755906 3381.7807087 263.7795276 -2012.5523622 3381.7807087 47.2440945 -2012.5523622 2904.0334646 263.7795276 -1735.6452756 2904.0334646 47.2440945 -1735.6452756 3377.3031496 263.7795276 -2010.0153543 3377.3031496 47.2440945 -2010.0153543 2907.9488189 47.2440945 -1738.9854331 2907.9488189 263.7795276 -1738.9854331 3373.3334646 263.7795276 -2006.7389764 3373.3334646 47.2440945 -2006.7389764 2912.3854331 47.2440945 -1741.5952756 2912.3854331 263.7795276 -1741.5952756 3369.9925197 47.2440945 -2002.8232283 3369.9925197 263.7795276 -2002.8232283 2917.2074803 47.2440945 -1743.3948819 2917.2074803 263.7795276 -1743.3948819 3367.3826772 263.7795276 -1998.3870079 3367.3826772 47.2440945 -1998.3870079 2922.2688976 47.2440945 -1744.3299213 2922.2688976 263.7795276 -1744.3299213 3365.5830709 47.2440945 -1993.5645669 3365.5830709 263.7795276 -1993.5645669 2927.4157480 47.2440945 -1744.3716535 2927.4157480 263.7795276 -1744.3716535 3364.6484252 263.7795276 -1988.5035433 3364.6484252 47.2440945 -1988.5035433 2932.4917323 47.2440945 -1743.5192913 2932.4917323 263.7795276 -1743.5192913 3364.6070866 47.2440945 -1983.3562992 3364.6070866 263.7795276 -1983.3562992 2937.3421260 47.2440945 -1741.7980315 2937.3421260 263.7795276 -1741.7980315 3365.4590551 47.2440945 -1978.2807087 3365.4590551 263.7795276 -1978.2807087 2941.8204724 47.2440945 -1739.2610236 2941.8204724 263.7795276 -1739.2610236 3365.4590551 47.2440945 -1978.2807087 2945.7897638 263.7795276 -1735.9846457 2945.7897638 47.2440945 -1735.9846457 3365.4590551 263.7795276 -1978.2807087 2945.7897638 47.2440945 -1735.9846457 2945.7897638 263.7795276 -1735.9846457 - - - - - - - - - - -0.4999999 -0.0000004 -0.8660254 -0.4999999 -0.0000004 -0.8660254 -0.4999999 -0.0000004 -0.8660254 -0.4999999 -0.0000004 -0.8660254 0.5668878 0.0000000 -0.8237950 0.6365809 0.0000000 -0.7712099 0.6365809 0.0000000 -0.7712099 0.5668878 0.0000000 -0.8237950 -0.9960977 -0.0000000 0.0882578 -0.9853990 -0.0000000 0.1702611 -0.9960977 -0.0000000 0.0882578 -0.9853990 -0.0000000 0.1702611 0.4152206 0.0000000 -0.9097208 0.4152206 0.0000000 -0.9097208 -0.9970343 -0.0000000 -0.0769585 -0.9970343 -0.0000000 -0.0769585 0.2509629 -0.0000000 -0.9679967 0.2509629 -0.0000000 -0.9679967 -0.9707751 0.0000000 -0.2399910 -0.9707751 0.0000000 -0.2399910 0.0790470 -0.0000000 -0.9968709 0.0790470 -0.0000000 -0.9968709 -0.9180217 0.0000000 -0.3965300 -0.9180217 0.0000000 -0.3965300 -0.0952427 0.0000000 -0.9954541 -0.0952427 0.0000000 -0.9954541 -0.8402200 0.0000000 -0.5422456 -0.8402200 0.0000000 -0.5422456 -0.2666640 0.0000000 -0.9637895 -0.2666640 0.0000000 -0.9637895 -0.7395573 -0.0000000 -0.6730936 -0.7395573 -0.0000000 -0.6730936 -0.4299752 -0.0000000 -0.9028407 -0.4299752 -0.0000000 -0.9028407 -0.6186618 0.0000000 -0.7856574 -0.6186618 0.0000000 -0.7856574 -0.5802335 -0.0000000 -0.8144502 -0.5802335 -0.0000000 -0.8144502 -0.4808814 0.0000000 -0.8767857 -0.4808814 0.0000000 -0.8767857 -0.7128623 0.0000000 -0.7013041 -0.7128623 0.0000000 -0.7013041 -0.3300178 -0.0000000 -0.9439747 -0.3300178 -0.0000000 -0.9439747 -0.8237853 0.0000000 -0.5669019 -0.8237853 0.0000000 -0.5669019 -0.1701599 -0.0000000 -0.9854165 -0.1701599 -0.0000000 -0.9854165 -0.9097062 0.0000000 -0.4152524 -0.9097062 0.0000000 -0.4152524 -0.0056684 -0.0000000 -0.9999839 -0.0056684 -0.0000000 -0.9999839 -0.9680042 0.0000000 -0.2509341 -0.9680042 0.0000000 -0.2509341 0.1590256 0.0000000 -0.9872745 0.1590256 0.0000000 -0.9872745 -0.9968703 0.0000000 -0.0790542 -0.9968703 0.0000000 -0.0790542 0.3193336 0.0000000 -0.9476424 0.3193336 0.0000000 -0.9476424 -0.9954535 0.0000000 0.0952487 -0.9954535 0.0000000 0.0952487 0.4709661 0.0000000 -0.8821513 0.4709661 0.0000000 -0.8821513 -0.9637781 0.0000000 0.2667053 -0.9637781 0.0000000 0.2667053 0.6097811 0.0000000 -0.7925699 0.6097811 0.0000000 -0.7925699 -0.9028311 0.0000000 0.4299953 -0.9028311 0.0000000 0.4299953 0.7319095 0.0000000 -0.6814019 0.7319095 0.0000000 -0.6814019 -0.8144581 0.0000000 0.5802224 -0.8144581 0.0000000 0.5802224 0.8340555 -0.0000000 -0.5516805 0.8340555 -0.0000000 -0.5516805 -0.8168043 0.0000000 0.5769149 -0.8168043 0.0000000 0.5769149 0.9134608 -0.0000000 -0.4069268 0.9134608 -0.0000000 -0.4069268 -0.9080240 0.0000000 0.4189182 -0.9080240 0.0000000 0.4189182 0.9089597 0.0000000 -0.4168840 0.9089597 0.0000000 -0.4168840 -0.9097201 0.0000000 0.4152221 -0.9097201 0.0000000 0.4152221 0.8168690 0.0000000 -0.5768233 0.8168690 0.0000000 -0.5768233 -0.8238209 0.0000000 0.5668502 -0.8238209 0.0000000 0.5668502 0.8144545 0.0000000 -0.5802274 0.8144545 0.0000000 -0.5802274 -0.7128481 0.0000000 0.7013184 -0.7128481 0.0000000 0.7013184 0.9028111 -0.0000000 -0.4300374 0.9028111 -0.0000000 -0.4300374 -0.5801978 0.0000000 0.8144756 -0.5801978 0.0000000 0.8144756 0.9638091 0.0000000 -0.2665933 0.9638091 0.0000000 -0.2665933 -0.4300008 0.0000000 0.9028285 -0.4300008 0.0000000 0.9028285 0.9954577 -0.0000000 -0.0952046 0.9954577 -0.0000000 -0.0952046 -0.2666924 0.0000000 0.9637817 -0.2666924 0.0000000 0.9637817 0.9968733 -0.0000000 0.0790163 0.9968733 -0.0000000 0.0790163 -0.0952490 0.0000000 0.9954535 -0.0952490 0.0000000 0.9954535 0.9680136 0.0000000 0.2508976 0.9680136 0.0000000 0.2508976 0.0790852 -0.0000000 0.9968679 0.0790852 -0.0000000 0.9968679 0.9097141 0.0000000 0.4152352 0.9097141 0.0000000 0.4152352 0.2509645 0.0000000 0.9679963 0.2509645 0.0000000 0.9679963 0.8237793 0.0000000 0.5669107 0.8237793 0.0000000 0.5669107 0.4152393 0.0000000 0.9097122 0.4152393 0.0000000 0.9097122 0.7128386 -0.0000000 0.7013282 0.7128386 -0.0000000 0.7013282 0.5669143 0.0000000 0.8237768 0.5669143 0.0000000 0.8237768 0.5802300 -0.0000000 0.8144527 0.5802300 -0.0000000 0.8144527 0.7013044 0.0000000 0.7128620 0.7013044 0.0000000 0.7128620 0.4299752 0.0000000 0.9028407 0.4299752 0.0000000 0.9028407 0.8144221 0.0000000 0.5802730 0.8144221 0.0000000 0.5802730 0.2666707 0.0000000 0.9637877 0.2666707 0.0000000 0.9637877 0.9028381 0.0000000 0.4299807 0.9028381 0.0000000 0.4299807 0.0952490 0.0000000 0.9954535 0.0952490 0.0000000 0.9954535 0.9637994 0.0000000 0.2666283 0.9637994 0.0000000 0.2666283 -0.0790476 0.0000000 0.9968708 -0.0790476 0.0000000 0.9968708 0.9954601 0.0000000 0.0951801 0.9954601 0.0000000 0.0951801 -0.2509753 -0.0000000 0.9679935 -0.2509753 -0.0000000 0.9679935 0.9968703 -0.0000000 -0.0790547 0.9968703 -0.0000000 -0.0790547 -0.4152494 -0.0000000 0.9097076 -0.4152494 -0.0000000 0.9097076 0.9862031 -0.0000000 -0.1655401 0.9862031 -0.0000000 -0.1655401 -0.5669033 0.0000000 0.8237843 -0.5669033 0.0000000 0.8237843 0.4999999 -0.0000001 0.8660255 0.4999999 -0.0000001 0.8660255 0.4999999 -0.0000001 0.8660255 0.4999999 -0.0000001 0.8660255 -0.6365809 0.0000000 0.7712099 -0.6365809 0.0000000 0.7712099 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 7 4 7 12 13 14 8 10 8 14 15 16 13 12 13 16 17 18 15 14 15 18 19 20 17 16 17 20 21 22 18 23 18 22 19 24 21 20 21 24 25 26 22 23 22 26 27 28 25 24 25 28 29 30 26 31 26 30 27 32 29 28 29 32 33 30 34 35 34 30 31 36 33 32 33 36 37 35 38 39 38 35 34 40 37 36 37 40 41 39 42 43 42 39 38 40 44 41 44 40 45 43 46 47 46 43 42 45 48 44 48 45 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 52 56 57 56 52 53 55 58 59 58 55 54 56 60 57 60 56 61 59 62 63 62 59 58 61 64 60 64 61 65 63 66 67 66 63 62 64 68 69 68 64 65 67 70 71 70 67 66 68 72 69 72 68 73 74 70 75 70 74 71 72 76 77 76 72 73 78 74 75 74 78 79 76 80 77 80 76 81 82 78 83 78 82 79 80 84 85 84 80 81 86 82 83 82 86 87 84 88 85 88 84 89 90 86 91 86 90 87 89 92 88 92 89 93 94 91 95 91 94 90 92 96 97 96 92 93 98 94 95 94 98 99 97 100 101 100 97 96 102 98 103 98 102 99 101 104 105 104 101 100 106 103 107 103 106 102 105 108 109 108 105 104 110 107 111 107 110 106 109 112 113 112 109 108 114 110 111 110 114 115 113 116 117 116 113 112 118 114 119 114 118 115 117 120 121 120 117 116 122 119 123 119 122 118 121 124 125 124 121 120 126 122 123 122 126 127 125 128 129 128 125 124 130 127 126 127 130 131 128 132 129 132 128 133 134 131 130 131 134 135 132 136 137 136 132 133 138 135 134 135 138 139 136 140 137 140 136 141 142 139 138 139 142 143 140 144 145 144 140 141 146 143 142 143 146 147 144 148 145 148 144 149 150 147 146 147 150 151 149 152 148 152 149 153 154 151 150 151 154 155 156 157 158 157 156 159 160 155 154 155 160 161

-
-
-
- - - - 6327.3543307 263.7795276 -3464.9413386 6325.0354331 47.2440945 -3469.9177165 6327.3543307 47.2440945 -3464.9413386 6325.0354331 263.7795276 -3469.9177165 6321.8858268 47.2440945 -3474.4145669 6321.8858268 263.7795276 -3474.4145669 6328.7755906 263.7795276 -3459.6385827 6328.7755906 47.2440945 -3459.6385827 6318.0039370 47.2440945 -3478.2964567 6318.0039370 263.7795276 -3478.2964567 6329.2519685 263.7795276 -3454.1692913 6329.2519685 47.2440945 -3454.1692913 6313.5039370 263.7795276 -3481.4456693 6313.5039370 47.2440945 -3481.4456693 6328.7755906 47.2440945 -3448.7000000 6328.7755906 263.7795276 -3448.7000000 6308.5275591 263.7795276 -3483.7665354 6308.5275591 47.2440945 -3483.7665354 6327.3543307 263.7795276 -3443.3968504 6327.3543307 47.2440945 -3443.3968504 6303.2283465 263.7795276 -3485.1870079 6303.2283465 47.2440945 -3485.1870079 6325.0354331 263.7795276 -3438.4212598 6325.0354331 47.2440945 -3438.4212598 6297.7559055 263.7795276 -3485.6653543 6297.7559055 47.2440945 -3485.6653543 6321.8858268 263.7795276 -3433.9236220 6321.8858268 47.2440945 -3433.9236220 6292.2874016 263.7795276 -3485.1870079 6292.2874016 47.2440945 -3485.1870079 6318.0039370 263.7795276 -3430.0417323 6318.0039370 47.2440945 -3430.0417323 6286.9842520 263.7795276 -3483.7665354 6286.9842520 47.2440945 -3483.7665354 6313.5039370 47.2440945 -3426.8933071 6313.5039370 263.7795276 -3426.8933071 6282.0078740 263.7795276 -3481.4456693 6282.0078740 47.2440945 -3481.4456693 6308.5275591 47.2440945 -3424.5732283 6308.5275591 263.7795276 -3424.5732283 6277.5118110 263.7795276 -3478.2964567 6277.5118110 47.2440945 -3478.2964567 6303.2283465 47.2440945 -3423.1515748 6303.2283465 263.7795276 -3423.1515748 6273.6299213 263.7795276 -3474.4145669 6273.6299213 47.2440945 -3474.4145669 6297.7559055 47.2440945 -3422.6732283 6297.7559055 263.7795276 -3422.6732283 6270.4803150 47.2440945 -3469.9169291 6270.4803150 263.7795276 -3469.9169291 6292.2874016 47.2440945 -3423.1515748 6292.2874016 263.7795276 -3423.1515748 6268.1614173 47.2440945 -3464.9413386 6268.1614173 263.7795276 -3464.9413386 6286.9842520 47.2440945 -3424.5732283 6286.9842520 263.7795276 -3424.5732283 6266.7401575 47.2440945 -3459.6385827 6266.7401575 263.7795276 -3459.6385827 6282.0078740 47.2440945 -3426.8933071 6282.0078740 263.7795276 -3426.8933071 6266.2598425 263.7795276 -3454.1692913 6266.2598425 47.2440945 -3454.1692913 6277.5118110 47.2440945 -3430.0417323 6277.5118110 263.7795276 -3430.0417323 6266.7401575 47.2440945 -3448.7000000 6266.7401575 263.7795276 -3448.7000000 6273.6299213 47.2440945 -3433.9236220 6273.6299213 263.7795276 -3433.9236220 6268.1614173 47.2440945 -3443.3968504 6268.1614173 263.7795276 -3443.3968504 6270.4803150 263.7795276 -3438.4212598 6270.4803150 47.2440945 -3438.4212598 - - - - - - - - - - -0.9397267 0.0000000 0.3419264 -0.8660578 0.0000001 0.4999439 -0.9397267 0.0000000 0.3419264 -0.8660578 0.0000001 0.4999439 -0.7659998 0.0000001 0.6428408 -0.7659998 0.0000001 0.6428408 -0.9848352 0.0000000 0.1734923 -0.9848352 0.0000000 0.1734923 -0.6426893 0.0000000 0.7661269 -0.6426893 0.0000000 0.7661269 -1.0000000 0.0000000 -0.0000000 -1.0000000 0.0000000 -0.0000000 -0.4999133 0.0000000 0.8660754 -0.4999133 0.0000000 0.8660754 -0.9848368 0.0000000 -0.1734832 -0.9848368 0.0000000 -0.1734832 -0.3420925 0.0000000 0.9396663 -0.3420925 0.0000000 0.9396663 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 -0.1736577 0.0000000 0.9848061 -0.1736577 0.0000000 0.9848061 -0.8660652 0.0000000 -0.4999311 -0.8660652 0.0000000 -0.4999311 0.0000312 -0.0000000 1.0000000 0.0000312 -0.0000000 1.0000000 -0.7660288 0.0000000 -0.6428063 -0.7660288 0.0000000 -0.6428063 0.1735970 -0.0000000 0.9848168 0.1735970 -0.0000000 0.9848168 -0.6426443 0.0000000 -0.7661647 -0.6426443 0.0000000 -0.7661647 0.3420052 -0.0000000 0.9396980 0.3420052 -0.0000000 0.9396980 -0.4998062 0.0000000 -0.8661373 -0.4998062 0.0000000 -0.8661373 0.5000914 0.0000000 0.8659726 0.5000914 0.0000000 0.8659726 -0.3421291 0.0000000 -0.9396530 -0.3421291 0.0000000 -0.9396530 0.6428468 0.0000000 0.7659948 0.6428468 0.0000000 0.7659948 -0.1737601 -0.0000000 -0.9847880 -0.1737601 -0.0000000 -0.9847880 0.7660288 0.0000000 0.6428063 0.7660288 0.0000000 0.6428063 0.0000312 -0.0000000 -1.0000000 0.0000312 -0.0000000 -1.0000000 0.8660652 0.0000000 0.4999311 0.8660652 0.0000000 0.4999311 0.1736993 -0.0000000 -0.9847987 0.1736993 -0.0000000 -0.9847987 0.9397164 0.0000000 0.3419548 0.9397164 0.0000000 0.3419548 0.3420418 -0.0000000 -0.9396847 0.3420418 -0.0000000 -0.9396847 0.9847732 0.0000000 0.1738441 0.9847732 0.0000000 0.1738441 0.4999843 0.0000000 -0.8660345 0.4999843 0.0000000 -0.8660345 1.0000000 0.0000000 -0.0000000 1.0000000 0.0000000 -0.0000000 0.6428018 -0.0000000 -0.7660325 0.6428018 -0.0000000 -0.7660325 0.9847748 0.0000000 -0.1738349 0.9847748 0.0000000 -0.1738349 0.7660288 0.0000000 -0.6428063 0.7660288 0.0000000 -0.6428063 0.9397207 0.0000001 -0.3419429 0.9397207 0.0000001 -0.3419429 0.8660669 0.0000001 -0.4999281 0.8660669 0.0000001 -0.4999281 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 5 8 4 8 5 9 10 7 11 7 10 6 8 12 13 12 8 9 14 10 11 10 14 15 13 16 17 16 13 12 18 14 19 14 18 15 17 20 21 20 17 16 22 19 23 19 22 18 21 24 25 24 21 20 26 23 27 23 26 22 25 28 29 28 25 24 30 27 31 27 30 26 29 32 33 32 29 28 30 34 35 34 30 31 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 41 44 45 44 41 40 43 46 47 46 43 42 44 48 45 48 44 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 53 56 52 56 53 57 55 58 59 58 55 54 56 60 61 60 56 57 59 62 63 62 59 58 60 64 61 64 60 65 63 66 67 66 63 62 65 68 64 68 65 69 70 66 71 66 70 67 69 71 68 71 69 70

-
-
-
- - - - 6167.5551181 263.7795276 -3742.6811024 6164.4055118 47.2440945 -3747.1783465 6167.5551181 47.2440945 -3742.6811024 6164.4055118 263.7795276 -3747.1783465 6160.5236220 47.2440945 -3751.0606299 6160.5236220 263.7795276 -3751.0606299 6169.8740157 263.7795276 -3737.7055118 6169.8740157 47.2440945 -3737.7055118 6156.0236220 263.7795276 -3754.2102362 6156.0236220 47.2440945 -3754.2102362 6171.2952756 263.7795276 -3732.4023622 6171.2952756 47.2440945 -3732.4023622 6151.0472441 263.7795276 -3756.5303150 6151.0472441 47.2440945 -3756.5303150 6171.7716535 47.2440945 -3726.9330709 6171.7716535 263.7795276 -3726.9330709 6145.7480315 263.7795276 -3757.9507874 6145.7480315 47.2440945 -3757.9507874 6171.2952756 263.7795276 -3721.4637795 6171.2952756 47.2440945 -3721.4637795 6140.2755906 263.7795276 -3758.4295276 6140.2755906 47.2440945 -3758.4295276 6169.8740157 263.7795276 -3716.1610236 6169.8740157 47.2440945 -3716.1610236 6134.8070866 263.7795276 -3757.9507874 6134.8070866 47.2440945 -3757.9507874 6167.5551181 47.2440945 -3711.1850394 6167.5551181 263.7795276 -3711.1850394 6129.5039370 263.7795276 -3756.5303150 6129.5039370 47.2440945 -3756.5303150 6164.4055118 263.7795276 -3706.6877953 6164.4055118 47.2440945 -3706.6877953 6124.5275591 263.7795276 -3754.2094488 6124.5275591 47.2440945 -3754.2094488 6160.5236220 263.7795276 -3702.8059055 6160.5236220 47.2440945 -3702.8059055 6120.0314961 263.7795276 -3751.0606299 6120.0314961 47.2440945 -3751.0606299 6156.0236220 47.2440945 -3699.6570866 6156.0236220 263.7795276 -3699.6570866 6116.1496063 47.2440945 -3747.1783465 6116.1496063 263.7795276 -3747.1783465 6151.0472441 47.2440945 -3697.3370079 6151.0472441 263.7795276 -3697.3370079 6113.0000000 47.2440945 -3742.6811024 6113.0000000 263.7795276 -3742.6811024 6145.7480315 47.2440945 -3695.9157480 6145.7480315 263.7795276 -3695.9157480 6110.6811024 47.2440945 -3737.7055118 6110.6811024 263.7795276 -3737.7055118 6140.2755906 47.2440945 -3695.4377953 6140.2755906 263.7795276 -3695.4377953 6109.2598425 47.2440945 -3732.4023622 6109.2598425 263.7795276 -3732.4023622 6134.8070866 47.2440945 -3695.9157480 6134.8070866 263.7795276 -3695.9157480 6108.7795276 47.2440945 -3726.9330709 6108.7795276 263.7795276 -3726.9330709 6129.5039370 47.2440945 -3697.3370079 6129.5039370 263.7795276 -3697.3370079 6109.2598425 263.7795276 -3721.4637795 6109.2598425 47.2440945 -3721.4637795 6124.5275591 47.2440945 -3699.6570866 6124.5275591 263.7795276 -3699.6570866 6110.6811024 47.2440945 -3716.1610236 6110.6811024 263.7795276 -3716.1610236 6120.0314961 47.2440945 -3702.8059055 6120.0314961 263.7795276 -3702.8059055 6113.0000000 47.2440945 -3711.1850394 6113.0000000 263.7795276 -3711.1850394 6116.1496063 263.7795276 -3706.6877953 6116.1496063 47.2440945 -3706.6877953 - - - - - - - - - - -0.8660549 0.0000000 0.4999489 -0.7660319 0.0000000 0.6428026 -0.8660549 0.0000000 0.4999489 -0.7660319 0.0000000 0.6428026 -0.6427312 0.0000000 0.7660918 -0.6427312 0.0000000 0.7660918 -0.9397196 0.0000000 0.3419461 -0.9397196 0.0000000 0.3419461 -0.4998825 0.0000000 0.8660932 -0.4998825 0.0000000 0.8660932 -0.9848368 0.0000000 0.1734832 -0.9848368 0.0000000 0.1734832 -0.3420314 0.0000000 0.9396885 -0.3420314 0.0000000 0.9396885 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.1736928 0.0000000 0.9847999 -0.1736928 0.0000000 0.9847999 -0.9848352 0.0000000 -0.1734923 -0.9848352 0.0000000 -0.1734923 0.0000313 -0.0000000 1.0000000 0.0000313 -0.0000000 1.0000000 -0.9397216 0.0000000 -0.3419406 -0.9397216 0.0000000 -0.3419406 0.1736322 -0.0000000 0.9848106 0.1736322 -0.0000000 0.9848106 -0.8660625 0.0000000 -0.4999358 -0.8660625 0.0000000 -0.4999358 0.3420052 -0.0000000 0.9396980 0.3420052 -0.0000000 0.9396980 -0.7660156 0.0000000 -0.6428220 -0.7660156 0.0000000 -0.6428220 0.5000660 0.0000000 0.8659873 0.5000660 0.0000000 0.8659873 -0.6426668 0.0000000 -0.7661458 -0.6426668 0.0000000 -0.7661458 0.6428437 0.0000000 0.7659974 0.6428437 0.0000000 0.7659974 -0.4998316 -0.0000000 -0.8661226 -0.4998316 -0.0000000 -0.8661226 0.7660319 0.0000000 0.6428026 0.7660319 0.0000000 0.6428026 -0.3420965 -0.0000000 -0.9396648 -0.3420965 -0.0000000 -0.9396648 0.8660549 0.0000000 0.4999489 0.8660549 0.0000000 0.4999489 -0.1736908 0.0000000 -0.9848002 -0.1736908 0.0000000 -0.9848002 0.9397196 0.0000000 0.3419461 0.9397196 0.0000000 0.3419461 0.0000312 -0.0000000 -1.0000000 0.0000312 -0.0000000 -1.0000000 0.9847748 0.0000000 0.1738349 0.9847748 0.0000000 0.1738349 0.1736300 -0.0000000 -0.9848109 0.1736300 -0.0000000 -0.9848109 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3420093 -0.0000000 -0.9396966 0.3420093 -0.0000000 -0.9396966 0.9847732 -0.0000000 -0.1738441 0.9847732 -0.0000000 -0.1738441 0.5000097 0.0000000 -0.8660198 0.5000097 0.0000000 -0.8660198 0.9397216 -0.0000000 -0.3419406 0.9397216 -0.0000000 -0.3419406 0.6428243 0.0000000 -0.7660137 0.6428243 0.0000000 -0.7660137 0.8660625 0.0000000 -0.4999358 0.8660625 0.0000000 -0.4999358 0.7660156 0.0000000 -0.6428220 0.7660156 0.0000000 -0.6428220 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 4 8 9 8 4 5 10 7 11 7 10 6 9 12 13 12 9 8 14 10 11 10 14 15 13 16 17 16 13 12 18 14 19 14 18 15 17 20 21 20 17 16 22 19 23 19 22 18 21 24 25 24 21 20 26 22 23 22 26 27 25 28 29 28 25 24 30 26 31 26 30 27 29 32 33 32 29 28 34 31 35 31 34 30 33 36 37 36 33 32 34 38 39 38 34 35 36 40 37 40 36 41 39 42 43 42 39 38 41 44 40 44 41 45 43 46 47 46 43 42 45 48 44 48 45 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 53 56 52 56 53 57 55 58 59 58 55 54 56 60 61 60 56 57 59 62 63 62 59 58 60 64 61 64 60 65 63 66 67 66 63 62 65 68 64 68 65 69 70 66 71 66 70 67 68 70 71 70 68 69

-
-
-
- - - - 4019.5393701 263.7795276 -2502.5236220 4016.3897638 47.2440945 -2507.0208661 4019.5393701 47.2440945 -2502.5236220 4016.3897638 263.7795276 -2507.0208661 4012.5078740 47.2440945 -2510.9031496 4012.5078740 263.7795276 -2510.9031496 4021.8582677 263.7795276 -2497.5480315 4021.8582677 47.2440945 -2497.5480315 4008.0078740 263.7795276 -2514.0519685 4008.0078740 47.2440945 -2514.0519685 4023.2795276 47.2440945 -2492.2448819 4023.2795276 263.7795276 -2492.2448819 4003.0354331 263.7795276 -2516.3724409 4003.0354331 47.2440945 -2516.3724409 4023.7559055 263.7795276 -2486.7755906 4023.7559055 47.2440945 -2486.7755906 3997.7322835 263.7795276 -2517.7933071 3997.7322835 47.2440945 -2517.7933071 4023.2795276 263.7795276 -2481.3062992 4023.2795276 47.2440945 -2481.3062992 3992.2598425 263.7795276 -2518.2716535 3992.2598425 47.2440945 -2518.2716535 4021.8582677 47.2440945 -2476.0031496 4021.8582677 263.7795276 -2476.0031496 3986.7913386 263.7795276 -2517.7933071 3986.7913386 47.2440945 -2517.7933071 4019.5393701 263.7795276 -2471.0275591 4019.5393701 47.2440945 -2471.0275591 3981.4881890 263.7795276 -2516.3724409 3981.4881890 47.2440945 -2516.3724409 4016.3897638 47.2440945 -2466.5303150 4016.3897638 263.7795276 -2466.5303150 3976.5118110 263.7795276 -2514.0519685 3976.5118110 47.2440945 -2514.0519685 4012.5078740 47.2440945 -2462.6484252 4012.5078740 263.7795276 -2462.6484252 3972.0157480 263.7795276 -2510.9031496 3972.0157480 47.2440945 -2510.9031496 4008.0078740 47.2440945 -2459.4992126 4008.0078740 263.7795276 -2459.4992126 3968.1338583 47.2440945 -2507.0208661 3968.1338583 263.7795276 -2507.0208661 4003.0314961 47.2440945 -2457.1791339 4003.0314961 263.7795276 -2457.1791339 3964.9842520 263.7795276 -2502.5236220 3964.9842520 47.2440945 -2502.5236220 3997.7322835 47.2440945 -2455.7582677 3997.7322835 263.7795276 -2455.7582677 3962.6653543 47.2440945 -2497.5480315 3962.6653543 263.7795276 -2497.5480315 3992.2598425 47.2440945 -2455.2795276 3992.2598425 263.7795276 -2455.2795276 3961.2440945 47.2440945 -2492.2448819 3961.2440945 263.7795276 -2492.2448819 3986.7913386 47.2440945 -2455.7582677 3986.7913386 263.7795276 -2455.7582677 3960.7637795 263.7795276 -2486.7755906 3960.7637795 47.2440945 -2486.7755906 3981.4881890 47.2440945 -2457.1791339 3981.4881890 263.7795276 -2457.1791339 3961.2440945 263.7795276 -2481.3062992 3961.2440945 47.2440945 -2481.3062992 3976.5118110 47.2440945 -2459.4992126 3976.5118110 263.7795276 -2459.4992126 3962.6653543 47.2440945 -2476.0031496 3962.6653543 263.7795276 -2476.0031496 3972.0157480 47.2440945 -2462.6484252 3972.0157480 263.7795276 -2462.6484252 3964.9842520 47.2440945 -2471.0275591 3964.9842520 263.7795276 -2471.0275591 3968.1338583 47.2440945 -2466.5303150 3968.1338583 263.7795276 -2466.5303150 - - - - - - - - - - -0.8660549 -0.0000000 0.4999489 -0.7660319 -0.0000000 0.6428026 -0.8660549 -0.0000000 0.4999489 -0.7660319 -0.0000000 0.6428026 -0.6426862 0.0000000 0.7661295 -0.6426862 0.0000000 0.7661295 -0.9397196 0.0000000 0.3419461 -0.9397196 0.0000000 0.3419461 -0.4999911 -0.0000000 0.8660306 -0.4999911 -0.0000000 0.8660306 -0.9848368 0.0000000 0.1734832 -0.9848368 0.0000000 0.1734832 -0.3421497 -0.0000000 0.9396455 -0.3421497 -0.0000000 0.9396455 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.1736004 -0.0000000 0.9848162 -0.1736004 -0.0000000 0.9848162 -0.9848368 -0.0000000 -0.1734832 -0.9848368 -0.0000000 -0.1734832 0.0000312 0.0000000 1.0000000 0.0000312 0.0000000 1.0000000 -0.9397196 -0.0000000 -0.3419461 -0.9397196 -0.0000000 -0.3419461 0.1736311 0.0000000 0.9848108 0.1736311 0.0000000 0.9848108 -0.8660549 -0.0000000 -0.4999489 -0.8660549 -0.0000000 -0.4999489 0.3420072 0.0000000 0.9396973 0.3420072 0.0000000 0.9396973 -0.7660156 0.0000000 -0.6428220 -0.7660156 0.0000000 -0.6428220 0.5000378 -0.0000000 0.8660036 0.5000378 -0.0000000 0.8660036 -0.6426893 0.0000000 -0.7661269 -0.6426893 0.0000000 -0.7661269 0.6428437 0.0000000 0.7659974 0.6428437 0.0000000 0.7659974 -0.4998571 0.0000000 -0.8661079 -0.4998571 0.0000000 -0.8661079 0.7660319 -0.0000000 0.6428026 0.7660319 -0.0000000 0.6428026 -0.3420640 0.0000000 -0.9396767 -0.3420640 0.0000000 -0.9396767 0.8660549 -0.0000000 0.4999489 0.8660549 -0.0000000 0.4999489 -0.1737270 0.0000000 -0.9847939 -0.1737270 0.0000000 -0.9847939 0.9397196 0.0000000 0.3419461 0.9397196 0.0000000 0.3419461 0.0000313 0.0000000 -1.0000000 0.0000313 0.0000000 -1.0000000 0.9847748 0.0000000 0.1738349 0.9847748 0.0000000 0.1738349 0.1736663 0.0000000 -0.9848046 0.1736663 0.0000000 -0.9848046 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.3419767 0.0000000 -0.9397084 0.3419767 0.0000000 -0.9397084 0.9847748 -0.0000000 -0.1738349 0.9847748 -0.0000000 -0.1738349 0.5000351 0.0000000 -0.8660051 0.5000351 0.0000000 -0.8660051 0.9397196 -0.0000000 -0.3419461 0.9397196 -0.0000000 -0.3419461 0.6428468 0.0000000 -0.7659948 0.6428468 0.0000000 -0.7659948 0.8660549 0.0000000 -0.4999489 0.8660549 0.0000000 -0.4999489 0.7660156 0.0000000 -0.6428220 0.7660156 0.0000000 -0.6428220 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 2 7 2 6 0 4 8 9 8 4 5 10 6 7 6 10 11 9 12 13 12 9 8 14 10 15 10 14 11 13 16 17 16 13 12 18 15 19 15 18 14 17 20 21 20 17 16 22 18 19 18 22 23 21 24 25 24 21 20 26 22 27 22 26 23 25 28 29 28 25 24 30 26 27 26 30 31 29 32 33 32 29 28 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 36 40 37 40 36 41 39 42 43 42 39 38 40 44 45 44 40 41 43 46 47 46 43 42 44 48 45 48 44 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 52 56 57 56 52 53 55 58 59 58 55 54 57 60 61 60 57 56 59 62 63 62 59 58 60 64 61 64 60 65 63 66 67 66 63 62 65 68 64 68 65 69 67 70 71 70 67 66 69 70 68 70 69 71

-
-
-
- - - - 4179.3385827 263.7795276 -2224.7838583 4177.0196850 47.2440945 -2229.7594488 4179.3385827 47.2440945 -2224.7838583 4177.0196850 263.7795276 -2229.7594488 4173.8700787 263.7795276 -2234.2570866 4173.8700787 47.2440945 -2234.2570866 4180.7598425 263.7795276 -2219.4811024 4180.7598425 47.2440945 -2219.4811024 4169.9881890 47.2440945 -2238.1393701 4169.9881890 263.7795276 -2238.1393701 4181.2362205 47.2440945 -2214.0118110 4181.2362205 263.7795276 -2214.0118110 4165.4881890 263.7795276 -2241.2881890 4165.4881890 47.2440945 -2241.2881890 4180.7598425 263.7795276 -2208.5425197 4180.7598425 47.2440945 -2208.5425197 4160.5157480 263.7795276 -2243.6086614 4160.5157480 47.2440945 -2243.6086614 4179.3385827 47.2440945 -2203.2393701 4179.3385827 263.7795276 -2203.2393701 4155.2125984 263.7795276 -2245.0291339 4155.2125984 47.2440945 -2245.0291339 4177.0196850 263.7795276 -2198.2637795 4177.0196850 47.2440945 -2198.2637795 4149.7401575 263.7795276 -2245.5078740 4149.7401575 47.2440945 -2245.5078740 4173.8700787 263.7795276 -2193.7665354 4173.8700787 47.2440945 -2193.7665354 4144.2716535 263.7795276 -2245.0291339 4144.2716535 47.2440945 -2245.0291339 4169.9881890 47.2440945 -2189.8846457 4169.9881890 263.7795276 -2189.8846457 4138.9685039 263.7795276 -2243.6086614 4138.9685039 47.2440945 -2243.6086614 4165.4881890 47.2440945 -2186.7354331 4165.4881890 263.7795276 -2186.7354331 4133.9921260 263.7795276 -2241.2881890 4133.9921260 47.2440945 -2241.2881890 4160.5118110 47.2440945 -2184.4153543 4160.5118110 263.7795276 -2184.4153543 4129.4960630 263.7795276 -2238.1393701 4129.4960630 47.2440945 -2238.1393701 4155.2125984 47.2440945 -2182.9940945 4155.2125984 263.7795276 -2182.9940945 4125.6141732 47.2440945 -2234.2570866 4125.6141732 263.7795276 -2234.2570866 4149.7401575 47.2440945 -2182.5157480 4149.7401575 263.7795276 -2182.5157480 4122.4645669 47.2440945 -2229.7598425 4122.4645669 263.7795276 -2229.7598425 4144.2716535 47.2440945 -2182.9940945 4144.2716535 263.7795276 -2182.9940945 4120.1456693 47.2440945 -2224.7838583 4120.1456693 263.7795276 -2224.7838583 4138.9685039 47.2440945 -2184.4153543 4138.9685039 263.7795276 -2184.4153543 4118.7244094 47.2440945 -2219.4811024 4118.7244094 263.7795276 -2219.4811024 4133.9921260 47.2440945 -2186.7354331 4133.9921260 263.7795276 -2186.7354331 4118.2440945 47.2440945 -2214.0118110 4118.2440945 263.7795276 -2214.0118110 4129.4960630 47.2440945 -2189.8846457 4129.4960630 263.7795276 -2189.8846457 4118.7244094 263.7795276 -2208.5425197 4118.7244094 47.2440945 -2208.5425197 4125.6141732 47.2440945 -2193.7665354 4125.6141732 263.7795276 -2193.7665354 4120.1456693 47.2440945 -2203.2393701 4120.1456693 263.7795276 -2203.2393701 4122.4645669 263.7795276 -2198.2637795 4122.4645669 47.2440945 -2198.2637795 - - - - - - - - - - -0.9397164 0.0000000 0.3419548 -0.8660612 0.0000003 0.4999380 -0.9397164 0.0000000 0.3419548 -0.8660612 0.0000003 0.4999380 -0.7660400 0.0000003 0.6427929 -0.7660400 0.0000003 0.6427929 -0.9848352 0.0000000 0.1734923 -0.9848352 0.0000000 0.1734923 -0.6426862 0.0000000 0.7661295 -0.6426862 0.0000000 0.7661295 -1.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 -0.4999911 0.0000000 0.8660306 -0.4999911 0.0000000 0.8660306 -0.9848368 0.0000000 -0.1734832 -0.9848368 0.0000000 -0.1734832 -0.3421172 0.0000000 0.9396573 -0.3421172 0.0000000 0.9396573 -0.9397196 0.0000000 -0.3419461 -0.9397196 0.0000000 -0.3419461 -0.1736014 0.0000000 0.9848160 -0.1736014 0.0000000 0.9848160 -0.8660549 0.0000000 -0.4999489 -0.8660549 0.0000000 -0.4999489 0.0000313 -0.0000000 1.0000000 0.0000313 -0.0000000 1.0000000 -0.7660156 0.0000000 -0.6428220 -0.7660156 0.0000000 -0.6428220 0.1736322 -0.0000000 0.9848106 0.1736322 -0.0000000 0.9848106 -0.6426893 0.0000000 -0.7661269 -0.6426893 0.0000000 -0.7661269 0.3419747 -0.0000000 0.9397092 0.3419747 -0.0000000 0.9397092 -0.4998571 -0.0000000 -0.8661079 -0.4998571 -0.0000000 -0.8661079 0.5000378 0.0000000 0.8660036 0.5000378 0.0000000 0.8660036 -0.3420965 -0.0000000 -0.9396648 -0.3420965 -0.0000000 -0.9396648 0.6428437 0.0000000 0.7659974 0.6428437 0.0000000 0.7659974 -0.1737259 0.0000000 -0.9847940 -0.1737259 0.0000000 -0.9847940 0.7660319 0.0000000 0.6428026 0.7660319 0.0000000 0.6428026 0.0000312 -0.0000000 -1.0000000 0.0000312 -0.0000000 -1.0000000 0.8660625 0.0000000 0.4999358 0.8660625 0.0000000 0.4999358 0.1736652 -0.0000000 -0.9848047 0.1736652 -0.0000000 -0.9848047 0.9397216 0.0000000 0.3419406 0.9397216 0.0000000 0.3419406 0.3420093 -0.0000000 -0.9396966 0.3420093 -0.0000000 -0.9396966 0.9847732 -0.0000000 0.1738441 0.9847732 -0.0000000 0.1738441 0.5000351 0.0000000 -0.8660051 0.5000351 0.0000000 -0.8660051 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.6428468 0.0000000 -0.7659948 0.6428468 0.0000000 -0.7659948 0.9847748 0.0000000 -0.1738349 0.9847748 0.0000000 -0.1738349 0.7660156 0.0000000 -0.6428220 0.7660156 0.0000000 -0.6428220 0.9397195 -0.0000000 -0.3419463 0.9397195 -0.0000000 -0.3419463 0.8660548 -0.0000000 -0.4999491 0.8660548 -0.0000000 -0.4999491 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 5 4 1 3 6 2 7 2 6 0 4 8 5 8 4 9 10 6 7 6 10 11 8 12 13 12 8 9 14 10 15 10 14 11 13 16 17 16 13 12 18 14 15 14 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 23 27 23 26 22 25 28 29 28 25 24 26 30 31 30 26 27 29 32 33 32 29 28 31 34 35 34 31 30 33 36 37 36 33 32 35 38 39 38 35 34 37 40 41 40 37 36 39 42 43 42 39 38 40 44 41 44 40 45 43 46 47 46 43 42 45 48 44 48 45 49 47 50 51 50 47 46 49 52 48 52 49 53 51 54 55 54 51 50 53 56 52 56 53 57 55 58 59 58 55 54 57 60 56 60 57 61 59 62 63 62 59 58 60 64 65 64 60 61 63 66 67 66 63 62 64 68 65 68 64 69 70 66 71 66 70 67 68 70 71 70 68 69

-
-
-
- - - - 3877.3893701 1334.9188976 271.8713386 3857.7043307 1300.8236220 -271.8713386 3857.7043307 1300.8236220 271.8713386 3877.3893701 1334.9188976 -271.8713386 3877.3893701 1334.9188976 271.8713386 3838.7429134 1327.4066929 -232.9179528 3877.3893701 1334.9188976 -271.8713386 3838.7429134 1327.4066929 232.9179528 3688.8531496 2304.8543307 -97.6445669 3706.3204724 2214.9925197 -0.0000000 3877.3893701 1334.9188976 -271.8713386 3688.8531496 2304.8543307 97.6445669 3877.3893701 1334.9188976 271.8713386 3857.7043307 1300.8236220 -271.8713386 2166.9582677 2322.4370079 -82.6774803 2147.2732283 2288.3413386 -82.6774803 3877.3893701 1334.9188976 -271.8713386 2166.9582677 2322.4370079 82.6774803 3857.7043307 1300.8236220 271.8713386 2147.2732283 2288.3413386 82.6774803 3877.3893701 1334.9188976 271.8713386 3833.6866142 1353.4216535 228.2449606 3838.7429134 1327.4066929 232.9179528 3877.3893701 1334.9188976 271.8713386 3838.7429134 1327.4066929 -232.9179528 3833.6866142 1353.4216535 -228.2449606 3646.4708661 2316.5629921 -55.2385827 3670.9771654 2190.4889764 77.8848819 3648.1700787 2307.8196850 0.0039867 3877.3893701 1334.9188976 -271.8713386 2187.7047244 2336.9657480 -80.2510630 3877.3893701 1334.9188976 -271.8713386 2166.9582677 2322.4370079 -82.6774803 2303.3429134 2417.9448819 -66.7266535 2311.5692913 2423.7055118 -65.7645669 2320.8992126 2429.2169291 -64.8554724 2338.9511811 2439.8803150 -63.0965748 2344.0751969 2442.9066929 -62.5973228 2358.0874016 2448.4354331 -61.7216142 2377.6748031 2456.1637795 -60.4974016 2378.5527559 2456.5098425 -60.4425197 2398.1570866 2461.0074803 -59.7938976 2413.4452756 2464.4783465 -59.2945669 2418.7629921 2464.9023622 -59.2603543 2450.6555118 2467.4476378 -59.0551181 3304.6921260 2504.7350394 -59.0551969 3460.7472441 2511.5519685 -59.0546063 3471.5322835 2511.7425197 -59.1044882 3496.3763780 2512.1822835 -59.2193701 3526.9200787 2508.0645669 -60.1903543 3528.8043307 2507.8102362 -60.2502756 3533.5303150 2506.3570866 -60.5459055 3547.7822835 2501.9732283 -61.4375197 3560.1700787 2498.1629921 -62.2125591 3571.9480315 2492.2688976 -63.3539764 3587.8692913 2484.3011811 -64.8969291 3589.2385827 2483.6161417 -65.0296457 3590.0921260 2482.9964567 -65.1466535 3605.8212598 2471.5763780 -67.3030315 3615.4716535 2464.5692913 -68.6261811 3621.9125984 2458.0007874 -69.8461811 3622.5145669 2457.3870079 -69.9602362 3638.1960630 2441.3944882 -72.9306693 3650.3937008 2423.9401575 -76.1344094 3656.6854331 2414.9377953 -77.7868504 3658.8972441 2410.2027559 -78.6474016 3661.1578740 2405.3629921 -79.5270472 3670.1909449 2386.0255906 -83.0416142 3670.9700787 2384.3578740 -83.3447244 3675.9909449 2365.8043307 -86.6883465 3679.5830709 2352.5326772 -89.0801969 3680.9299213 2345.6086614 -90.3239764 3688.8531496 2304.8543307 -97.6445669 3680.9299213 2345.6086614 -90.3239764 3680.9952756 2345.2803150 90.3829528 3680.3102362 2348.8078740 -0.0000000 3877.3893701 1334.9188976 271.8713386 2273.3078740 2396.9082677 70.2400787 2166.9582677 2322.4370079 82.6774803 2303.3830709 2417.8889764 66.7369291 2304.3811024 2418.5850394 66.6207087 2317.4877953 2427.7283465 65.0940945 2320.7196850 2429.4944882 64.8046457 2339.1212598 2439.5500000 63.1566929 2340.1842520 2440.1307087 63.0615748 2352.0818898 2446.6318898 61.9960630 2357.9622047 2448.7011811 61.6732283 2358.9889764 2449.0625984 61.6168504 2377.8401575 2455.6964567 60.5818504 2387.6161417 2459.1370079 60.0451181 2398.1204724 2461.0437008 59.7872047 2398.9338583 2461.1913386 59.7672047 2418.8153543 2464.8003937 59.2790157 2424.9244094 2465.9090551 59.1290157 2460.5381890 2467.7629921 59.0757874 2474.3606299 2468.4822835 59.0551181 3281.0566929 2503.7039370 59.0550394 3321.5740157 2505.4716535 59.0552756 3361.5814961 2507.2204724 59.0548819 3401.1515748 2508.9468504 59.0551181 3463.1988189 2511.6082677 59.0635827 3471.5307087 2511.9570866 59.0662598 3481.3555118 2512.3685039 59.0694488 3484.2791339 2512.2114173 59.1201181 3505.5846457 2511.0685039 59.4893701 3512.3133858 2510.7078740 59.6059843 3526.7988189 2507.5795276 60.2758268 3533.5102362 2506.1299213 60.5861811 3543.7992126 2503.9082677 61.0619291 3568.2645669 2494.2594488 62.9708268 3572.1909449 2492.7106299 63.2771654 3573.8712598 2492.0480315 63.4083071 3589.8118110 2482.5271654 65.2280709 3601.4118110 2475.5984252 66.5524016 3606.6598425 2471.2748031 67.3632677 3622.3122047 2458.3807087 69.7816535 3622.8838583 2457.7417323 69.8998819 3637.4956693 2441.4098425 72.9225197 3643.5889764 2434.5988189 74.1830709 3650.3311024 2423.9342520 76.1350000 3659.0059055 2410.2129921 78.6464567 3661.0295276 2407.0114173 79.2324016 3669.8405512 2385.8901575 83.0629921 3673.3401575 2377.5000000 84.5845669 3676.1074803 2365.8527559 86.6807087 3679.2358268 2352.6854331 89.0503150 3688.8531496 2304.8543307 97.6445669 3680.9952756 2345.2803150 90.3829528 2166.9582677 2322.4370079 -82.6774803 2147.2732283 2288.3413386 82.6774803 2147.2732283 2288.3413386 -82.6774803 2166.9582677 2322.4370079 82.6774803 2166.9582677 2322.4370079 -82.6774803 2199.3110236 2297.0287402 -47.4638189 2166.9582677 2322.4370079 82.6774803 2199.3110236 2297.0287402 47.4638189 3833.6866142 1353.4216535 -228.2449606 2209.4503937 2304.1291339 -46.2779528 2199.3110236 2297.0287402 -47.4638189 2252.0629921 2333.9641732 -41.2953150 2285.5562992 2357.4216535 -37.3776024 2287.4059055 2358.7173228 -37.1612441 2319.1834646 2380.9724409 -33.4444055 2322.7496063 2383.4692913 -33.0273307 2326.4444882 2385.9976378 -32.6057323 2337.2933071 2393.4204724 -31.3679764 2343.3811024 2397.5862205 -30.6733976 2356.1232283 2404.7425197 -29.4978189 2359.7976378 2406.8059055 -29.1588228 2373.1303150 2412.7011811 -28.2125197 2377.0232283 2414.4220472 -27.9362126 2389.5397638 2418.5881890 -27.2915315 2394.9511811 2420.3893701 -27.0128110 2400.2251969 2421.7921260 -26.8039843 2406.3763780 2423.0295276 -26.6313937 2414.8799213 2424.7405512 -26.3927992 2418.5311024 2425.4748031 -26.2903583 2423.5326772 2425.9996063 -26.2358268 2434.7216535 2427.1728346 -26.1138386 2437.1283465 2427.4251969 -26.0876024 2441.1397638 2427.6051181 -26.0867205 2462.0389764 2428.5370079 -26.0833386 2790.2137795 2442.8653543 -26.0833386 3054.6933071 2454.4125984 -26.0833386 3130.7574803 2457.7346457 -26.0831457 3297.9629921 2465.0374016 -26.0827283 3464.8826772 2472.3275591 -26.0823031 3465.1692913 2472.3362205 -26.0830354 3474.1716535 2472.6011811 -26.1058898 3486.3842520 2472.9602362 -26.1368937 3495.7377953 2472.4039370 -26.3086457 3501.5181102 2472.0606299 -26.4147835 3504.7066929 2471.8708661 -26.4733504 3518.1311024 2469.5374016 -26.9933780 3522.1118110 2468.8456693 -27.1475748 3529.6992126 2466.8905512 -27.5548110 3534.3614173 2465.2921260 -27.8757520 3537.3972441 2464.2511811 -28.0847638 3545.4905512 2461.4763780 -28.6419291 3556.8338583 2456.1838583 -29.6728386 3560.6547244 2454.4011811 -30.0200827 3565.0488189 2451.7543307 -30.5257402 3575.0594488 2445.7236220 -31.6777559 3575.1303150 2445.6807087 -31.6858976 3577.1259843 2444.3062992 -31.9462559 3579.1877953 2442.6913386 -32.2499291 3590.2362205 2434.0377953 -33.8771299 3592.1547244 2432.1704724 -34.2246969 3602.1799213 2422.4133858 -36.0405748 3603.9374016 2420.2960630 -36.4312992 3606.2771654 2417.4775591 -36.9515433 3612.9157480 2409.4807087 -38.4275276 3614.4909449 2407.3220472 -38.8242520 3618.9783465 2400.3011811 -40.1097244 3623.3972441 2393.3866142 -41.3757087 3623.4173228 2393.3472441 -41.3828740 3629.4137795 2381.2456693 -43.5849213 3630.7842520 2378.4708661 -44.0898425 3636.5413386 2362.8814961 -46.9113386 3636.5803150 2362.7779528 -46.9300787 3637.1826772 2360.3236220 -47.3718898 3640.5854331 2346.4724409 -49.8654724 3640.9137795 2345.1330709 -50.1065748 3642.3055118 2337.9787402 -51.3916929 3646.4708661 2316.5629921 -55.2385827 2209.0283465 2303.8338583 46.3272835 3833.6866142 1353.4216535 228.2449606 2199.3110236 2297.0287402 47.4638189 2251.2188976 2333.3732283 41.3939764 2270.8338583 2347.1102362 39.0997402 2285.5870079 2357.4429134 37.3740669 2289.3405512 2360.0716535 36.9350236 2302.1263780 2369.0185039 35.4408819 2306.7842520 2372.2779528 34.8965630 2323.2267717 2383.8047244 32.9713268 2337.2811024 2393.5700787 31.3412362 2338.9062992 2394.6996063 31.1527047 2342.2559055 2396.7031496 30.8218780 2354.9326772 2404.2862205 29.5697992 2356.1248031 2404.8539370 29.4779370 2371.7803150 2412.3098425 28.2717047 2373.0870079 2412.7866142 28.1969291 2375.4216535 2413.6385827 28.0633386 2389.4531496 2418.7594488 27.2603543 2389.4787402 2418.7673228 27.2591693 2392.2177165 2419.6007874 27.1320354 2395.0496063 2420.2944882 27.0304528 2410.5460630 2424.0917323 26.4746260 2414.8771654 2424.7125984 26.3976969 2430.0141732 2426.8830709 26.1288386 2434.6988189 2427.1366142 26.1201535 2454.5543307 2428.2102362 26.0833386 2473.9429134 2429.0566929 26.0833386 2944.6814961 2449.6094488 26.0833386 3130.7566929 2457.7358268 26.0829685 3297.9625984 2465.0381890 26.0826378 3432.8751969 2470.9299213 26.0823701 3464.8826772 2472.3275591 26.0823031 3474.1468504 2472.6417323 26.0984724 3482.5185039 2472.9248031 26.1130748 3495.7669291 2472.5161417 26.2888740 3499.4023622 2472.4039370 26.3371181 3501.5129921 2472.1149606 26.4050472 3516.1031496 2470.1149606 26.8747244 3522.1850394 2468.8287402 27.1511417 3534.3732283 2465.3019685 27.8740787 3537.4657480 2464.4074803 28.0574961 3538.4732283 2464.1157480 28.1172441 3550.0527559 2459.3649606 29.0535039 3554.0161417 2457.7393701 29.3738740 3565.0669291 2451.7677165 30.5234488 3568.8385827 2449.7295276 30.9158189 3575.0586614 2445.7224409 31.6779016 3575.2559055 2445.5960630 31.7019685 3579.1464567 2442.6350394 32.2596260 3588.6791339 2435.3807087 33.6258819 3591.5496063 2432.6578740 34.1332087 3603.8933071 2420.2578740 36.4378071 3606.2685039 2417.4669291 36.9533819 3611.7677165 2411.0043307 38.1472559 3613.0051181 2409.3598425 38.4497795 3614.3940945 2407.2602362 38.8345787 3618.9897638 2400.3082677 40.1085827 3622.2771654 2395.3358268 41.0197244 3623.3224409 2393.2996063 41.3905906 3629.4862205 2381.2956693 43.5766535 3629.9066929 2380.4759843 43.7258661 3630.6917323 2378.4370079 44.0951575 3635.9110236 2364.8870079 46.5491732 3636.6240157 2362.6330709 46.9562205 3637.1937008 2360.3299213 47.3709055 3640.6177165 2346.4811024 49.8641339 3642.1665354 2338.6645669 51.2685039 3640.7539370 2345.9326772 49.9629528 3653.9523622 2278.0492126 62.1566535 3670.9771654 2190.4889764 77.8848819 3653.9523622 2278.0492126 62.1566535 3648.1700787 2307.8208661 0.0039882 2450.6555118 2467.4476378 -59.0551181 3349.2712598 2506.6818898 0.0000000 3304.6921260 2504.7350394 -59.0551969 2449.4318898 2467.3940945 0.0000000 2459.3929134 2467.8287402 0.0000000 2474.3606299 2468.4822835 59.0551181 3281.0566929 2503.7039370 59.0550394 3321.5740157 2505.4716535 59.0552756 3460.7472441 2511.5519685 -59.0546063 3389.5783465 2508.4417323 0.0000000 3457.1456693 2511.3913386 -0.0000000 3471.5322835 2511.7425197 -59.1044882 3485.2566929 2512.3259843 -29.5797717 3496.3763780 2512.1822835 -59.2193701 3506.1377953 2511.3141732 -29.8184606 3526.9200787 2508.0645669 -60.1903543 3526.7925197 2508.1236220 -30.2438189 3528.8043307 2507.8102362 -60.2502756 3533.5303150 2506.3570866 -60.5459055 3534.0145669 2506.5874016 -0.0000000 3547.7822835 2501.9732283 -61.4375197 3540.4751969 2504.3807087 0.0000000 3560.1700787 2498.1629921 -62.2125591 3560.6330709 2497.4964567 0.0000000 3571.9480315 2492.2688976 -63.3539764 3565.1834646 2495.9425197 0.0000000 3587.8692913 2484.3011811 -64.8969291 3579.7381890 2488.0775591 0.0000000 3589.2385827 2483.6161417 -65.0296457 3590.0921260 2482.9964567 -65.1466535 3593.8094488 2480.4740157 -0.0000000 3605.8212598 2471.5763780 -67.3030315 3598.0720472 2477.1637795 0.0000000 3615.4716535 2464.5692913 -68.6261811 3614.9921260 2464.0236220 0.0000000 3621.9125984 2458.0007874 -69.8461811 3619.3196850 2460.6629921 -0.0000000 3622.5145669 2457.3870079 -69.9602362 3630.1208661 2448.9744094 0.0000000 3638.1960630 2441.3944882 -72.9306693 3643.9767717 2432.7850394 0.0000000 3650.3937008 2423.9401575 -76.1344094 3655.6771654 2414.9696850 0.0000000 3656.6854331 2414.9377953 -77.7868504 3658.8972441 2410.2027559 -78.6474016 3659.1814961 2409.6334646 0.0000000 3661.1578740 2405.3629921 -79.5270472 3665.1649606 2396.0755906 0.0000000 3670.1909449 2386.0255906 -83.0416142 3672.1818898 2380.1759843 0.0000000 3670.9700787 2384.3578740 -83.3447244 3673.1165354 2376.5696850 0.0000000 3675.9909449 2365.8043307 -86.6883465 3678.3818898 2356.2484252 0.0000000 3679.5830709 2352.5326772 -89.0801969 2166.9582677 2322.4370079 82.6774803 2187.7047244 2336.9657480 -80.2510630 2166.9582677 2322.4370079 -82.6774803 2240.5070866 2373.9366142 -0.0000000 2303.3429134 2417.9448819 -66.7266535 2311.5692913 2423.7055118 -65.7645669 2303.3196850 2417.9181102 -0.0000000 2309.3826772 2422.1637795 0.0000000 2320.8992126 2429.2169291 -64.8554724 2320.8251969 2429.1854331 0.0000000 2338.9511811 2439.8803150 -63.0965748 2338.6055118 2440.0964567 0.0000000 2344.0751969 2442.9066929 -62.5973228 2339.9578740 2440.9267717 0.0000000 2358.0874016 2448.4354331 -61.7216142 2357.7606299 2448.3409449 -0.0000000 2377.6748031 2456.1637795 -60.4974016 2375.0996063 2455.5618110 0.0000000 2378.5527559 2456.5098425 -60.4425197 2398.1570866 2461.0074803 -59.7938976 2378.8322835 2456.6204724 -60.4250394 2397.4503937 2460.8874016 0.0000000 2413.4452756 2464.4783465 -59.2945669 2398.1570866 2461.0074803 -59.7938976 2411.8472441 2464.3181102 -0.0000000 2418.7629921 2464.9023622 -59.2603543 2417.8708661 2464.8106299 -0.0000000 3679.2358268 2352.6854331 89.0503150 2460.5381890 2467.7629921 59.0757874 2424.9244094 2465.9090551 59.1290157 2418.8153543 2464.8003937 59.2790157 2398.9338583 2461.1913386 59.7672047 2398.1204724 2461.0437008 59.7872047 2387.6161417 2459.1370079 60.0451181 2377.1370079 2456.0472441 0.0000000 2377.8401575 2455.6964567 60.5818504 2358.9889764 2449.0625984 61.6168504 2357.9622047 2448.7011811 61.6732283 2352.0818898 2446.6318898 61.9960630 2340.1842520 2440.1307087 63.0615748 2339.1212598 2439.5500000 63.1566929 2320.7196850 2429.4944882 64.8046457 2317.4877953 2427.7283465 65.0940945 2304.3811024 2418.5850394 66.6207087 2303.3830709 2417.8889764 66.7369291 2273.3078740 2396.9082677 70.2400787 3676.1074803 2365.8527559 86.6807087 3673.3401575 2377.5000000 84.5845669 3669.8405512 2385.8901575 83.0629921 3661.0295276 2407.0114173 79.2324016 3659.0059055 2410.2129921 78.6464567 3650.3311024 2423.9342520 76.1350000 3643.5889764 2434.5988189 74.1830709 3637.4956693 2441.4098425 72.9225197 3641.2661417 2436.9125984 -0.0000000 3622.8838583 2457.7417323 69.8998819 3622.3122047 2458.3807087 69.7816535 3606.6598425 2471.2748031 67.3632677 3601.4118110 2475.5984252 66.5524016 3589.8118110 2482.5271654 65.2280709 3573.8712598 2492.0480315 63.4083071 3572.1909449 2492.7106299 63.2771654 3568.2645669 2494.2594488 62.9708268 3543.7992126 2503.9082677 61.0619291 3533.5102362 2506.1299213 60.5861811 3526.7925197 2508.1236220 30.2438189 3526.7988189 2507.5795276 60.2758268 3506.1377953 2511.3141732 29.8184606 3512.3133858 2510.7078740 59.6059843 3505.5846457 2511.0685039 59.4893701 3485.2566929 2512.3259843 29.5797717 3484.2791339 2512.2114173 59.1201181 3478.0204724 2511.9311024 0.0000000 3481.3555118 2512.3685039 59.0694488 3470.9059055 2511.9925197 0.0000000 3471.5307087 2511.9570866 59.0662598 3463.1988189 2511.6082677 59.0635827 3463.1988189 2511.6082677 59.0635827 3440.6716535 2510.6653543 59.0563386 3401.1515748 2508.9468504 59.0551181 3401.1515748 2508.9468504 59.0551181 3361.5814961 2507.2204724 59.0548819 2166.9582677 2322.4370079 82.6774803 2189.5401575 2290.1870079 -48.6064567 2189.5401575 2290.1870079 48.6064567 2166.9582677 2322.4370079 -82.6774803 2199.3110236 2297.0287402 -47.4638189 2189.5401575 2290.1870079 -48.6064567 2166.9582677 2322.4370079 -82.6774803 2199.3110236 2297.0287402 47.4638189 2166.9582677 2322.4370079 82.6774803 2189.5401575 2290.1870079 48.6064567 3642.3055118 2337.9787402 -51.3916929 3641.8551181 2340.3062992 0.0400031 3640.9137795 2345.1330709 -50.1065748 3640.5854331 2346.4724409 -49.8654724 3637.1826772 2360.3236220 -47.3718898 3640.0799213 2348.1562992 0.0277367 3636.5803150 2362.7779528 -46.9300787 3637.6980315 2358.6862205 0.0112809 3636.5413386 2362.8814961 -46.9113386 3630.7842520 2378.4708661 -44.0898425 3635.7358268 2364.3555118 0.0056737 3630.7720472 2378.5047244 -44.0837402 3623.4173228 2393.3472441 -41.3828740 3629.4137795 2381.2456693 -43.5849213 3624.3196850 2391.3291339 0.0013781 3621.9027559 2395.2011811 0.0009651 3623.3972441 2393.3866142 -41.3757087 3618.9783465 2400.3011811 -40.1097244 3614.4909449 2407.3220472 -38.8242520 3614.9161417 2406.3929134 -0.0002287 3614.4767717 2407.3444882 -38.8202126 3606.2771654 2417.4775591 -36.9515433 3612.9157480 2409.4807087 -38.4275276 3612.5318898 2409.3933071 -0.0001760 3603.7893701 2420.3933071 0.0000171 3603.9374016 2420.2960630 -36.4312992 3601.6133858 2422.5744094 0.0000366 3602.1799213 2422.4133858 -36.0405748 3592.1547244 2432.1704724 -34.2246969 3589.3303150 2434.5102362 0.0000981 3590.2362205 2434.0377953 -33.8771299 3579.1877953 2442.6913386 -32.2499291 3575.8602362 2445.0141732 -0.0001227 3577.1259843 2444.3062992 -31.9462559 3575.1303150 2445.6807087 -31.6858976 3575.0594488 2445.7236220 -31.6777559 3561.9023622 2453.7224409 -0.0001874 3565.0488189 2451.7543307 -30.5257402 3561.2850394 2454.0161417 -0.0001777 3560.6547244 2454.4011811 -30.0200827 3556.8338583 2456.1838583 -29.6728386 3545.8413386 2461.3755906 0.0000660 3545.4905512 2461.4763780 -28.6419291 3537.3972441 2464.2511811 -28.0847638 3545.7196850 2461.4338583 0.0000679 3534.3614173 2465.2921260 -27.8757520 3529.7822835 2466.9153543 -0.0003184 3529.6992126 2466.8905512 -27.5548110 3522.1118110 2468.8456693 -27.1475748 3528.9397638 2467.2051181 -0.0003389 3518.1311024 2469.5374016 -26.9933780 3513.2606299 2470.6771654 -0.0011186 3504.7066929 2471.8708661 -26.4733504 3511.7062992 2471.0212598 -0.0011958 3501.5181102 2472.0606299 -26.4147835 3496.4893701 2472.6791339 0.0101594 3495.7377953 2472.4039370 -26.3086457 3494.8204724 2472.8610236 0.0114051 3486.3842520 2472.9602362 -26.1368937 3479.7263780 2472.8944882 -0.0158074 3474.1716535 2472.6011811 -26.1058898 3479.7196850 2472.8944882 -0.0158196 3465.1692913 2472.3362205 -26.0830354 3458.9082677 2472.0606299 -0.0796895 3464.8826772 2472.3275591 -26.0823031 3458.8704724 2472.0590551 -0.0798092 3447.8181102 2471.5771654 -0.1149126 3292.0988189 2464.7779528 -0.0155277 3297.9629921 2465.0374016 -26.0827283 3386.8874016 2468.9165354 0.0509220 3271.8531496 2463.8940945 -0.0297209 3130.7574803 2457.7346457 -26.0831457 3125.6814961 2457.5122047 -0.0055155 3054.6933071 2454.4125984 -26.0833386 3125.6771654 2457.5118110 -0.0055148 2790.2137795 2442.8653543 -26.0833386 2793.4291339 2443.0055118 -0.0369324 2793.4204724 2443.0051181 -0.0369342 2462.0389764 2428.5370079 -26.0833386 2461.1114173 2428.4964567 -0.0293888 2456.5929134 2428.2992126 -26.0833386 2944.6814961 2449.6094488 26.0833386 2473.9429134 2429.0566929 26.0833386 2462.0389764 2428.5370079 -26.0833386 2456.5929134 2428.2992126 -26.0833386 2441.1397638 2427.6051181 -26.0867205 2440.3291339 2427.3877953 -0.0161041 2437.1283465 2427.4251969 -26.0876024 2441.1397638 2427.6051181 -26.0867205 2434.7216535 2427.1728346 -26.1138386 2426.2866142 2426.5314961 -0.0047451 2423.5326772 2425.9996063 -26.2358268 2422.8996063 2425.9803150 -0.0035271 2418.5311024 2425.4748031 -26.2903583 2414.8799213 2424.7405512 -26.3927992 2406.6649606 2423.3389764 0.0023110 2406.3763780 2423.0295276 -26.6313937 2405.7594488 2423.0956693 0.0021714 2400.2251969 2421.7921260 -26.8039843 2394.9511811 2420.3893701 -27.0128110 2388.9452756 2418.5775591 -0.0004209 2389.5397638 2418.5881890 -27.2915315 2387.4043307 2418.1637795 -0.0006584 2377.0232283 2414.4220472 -27.9362126 2372.6236220 2412.5342520 -0.0002307 2373.1303150 2412.7011811 -28.2125197 2368.7535433 2411.0602362 -0.0001187 2359.7976378 2406.8059055 -29.1588228 2356.9051181 2405.0980315 0.0003302 2356.1232283 2404.7425197 -29.4978189 2350.6177165 2401.9346457 0.0005685 2343.3811024 2397.5862205 -30.6733976 2341.8838583 2396.3791339 -0.0024767 2337.2933071 2393.4204724 -31.3679764 2334.4047244 2391.6224409 -0.0050844 2326.4444882 2385.9976378 -32.6057323 2325.9011811 2385.6681102 -0.0062945 2322.7496063 2383.4692913 -33.0273307 2308.3015748 2373.3444882 -0.0087992 2319.1834646 2380.9724409 -33.4444055 2287.4059055 2358.7173228 -37.1612441 2221.9448819 2312.8771654 -0.0040031 2285.5562992 2357.4216535 -37.3776024 2252.0629921 2333.9641732 -41.2953150 2252.0629921 2333.9641732 -41.2953150 2217.9720472 2310.0968504 -45.2813386 2189.5401575 2290.1870079 48.6064567 2209.4503937 2304.1291339 -46.2779528 2209.0283465 2303.8338583 46.3272835 2189.5401575 2290.1870079 48.6064567 2209.0283465 2303.8338583 46.3272835 2251.2188976 2333.3732283 41.3939764 2270.8338583 2347.1102362 39.0997402 2285.5870079 2357.4429134 37.3740669 2289.3405512 2360.0716535 36.9350236 2302.1263780 2369.0185039 35.4408819 2306.7842520 2372.2779528 34.8965630 2323.2267717 2383.8047244 32.9713268 2337.2811024 2393.5700787 31.3412362 2338.9062992 2394.6996063 31.1527047 2342.2559055 2396.7031496 30.8218780 2354.9326772 2404.2862205 29.5697992 2356.1248031 2404.8539370 29.4779370 2371.7803150 2412.3098425 28.2717047 2373.0870079 2412.7866142 28.1969291 2375.4216535 2413.6385827 28.0633386 2389.4531496 2418.7594488 27.2603543 2389.4787402 2418.7673228 27.2591693 2392.2177165 2419.6007874 27.1320354 2395.0496063 2420.2944882 27.0304528 2410.5460630 2424.0917323 26.4746260 2414.8771654 2424.7125984 26.3976969 2430.0141732 2426.8830709 26.1288386 2434.6988189 2427.1366142 26.1201535 2454.5543307 2428.2102362 26.0833386 2461.1090551 2428.4960630 -0.0293880 2451.9322835 2428.0956693 -0.0254897 3038.8500000 2453.7208661 0.0088635 3130.7566929 2457.7358268 26.0829685 3297.9625984 2465.0381890 26.0826378 3432.8751969 2470.9299213 26.0823701 3292.0881890 2464.7775591 -0.0155355 3464.8826772 2472.3275591 26.0823031 3474.1468504 2472.6417323 26.0984724 3482.5185039 2472.9248031 26.1130748 3478.0968504 2472.8980315 -0.0187450 3495.7669291 2472.5161417 26.2888740 3499.4023622 2472.4039370 26.3371181 3501.5129921 2472.1149606 26.4050472 3516.1031496 2470.1149606 26.8747244 3522.1850394 2468.8287402 27.1511417 3534.3732283 2465.3019685 27.8740787 3537.4657480 2464.4074803 28.0574961 3538.4732283 2464.1157480 28.1172441 3550.0527559 2459.3649606 29.0535039 3554.0161417 2457.7393701 29.3738740 3565.0669291 2451.7677165 30.5234488 3568.8385827 2449.7295276 30.9158189 3575.0586614 2445.7224409 31.6779016 3575.2559055 2445.5960630 31.7019685 3579.1464567 2442.6350394 32.2596260 3588.6791339 2435.3807087 33.6258819 3577.1330709 2444.2196850 -0.0001168 3592.1122047 2432.1240157 34.2326339 3591.5496063 2432.6578740 34.1332087 3592.1122047 2432.1240157 34.2326339 3606.2685039 2417.4669291 36.9533819 3603.8933071 2420.2578740 36.4378071 3611.7677165 2411.0043307 38.1472559 3613.0051181 2409.3598425 38.4497795 3614.3940945 2407.2602362 38.8345787 3618.9897638 2400.3082677 40.1085827 3622.2771654 2395.3358268 41.0197244 3623.3224409 2393.2996063 41.3905906 3629.4862205 2381.2956693 43.5766535 3629.6570866 2380.1295276 -0.0032559 3629.9066929 2380.4759843 43.7258661 3630.6917323 2378.4370079 44.0951575 3631.9228346 2375.3740157 -0.0052236 3635.9110236 2364.8870079 46.5491732 3636.6240157 2362.6330709 46.9562205 3637.1937008 2360.3299213 47.3709055 3640.6177165 2346.4811024 49.8641339 3640.7539370 2345.9326772 49.9629528 3642.1665354 2338.6645669 51.2685039 3432.3582677 2510.3094488 -0.0000000 2378.8322835 2456.6204724 -60.4250394 3440.6716535 2510.6653543 59.0563386 3630.7720472 2378.5047244 -44.0837402 3614.4767717 2407.3444882 -38.8202126 3591.1488189 2433.0625984 0.0001301 2217.9720472 2310.0968504 -45.2813386 3600.8440945 2423.8417323 35.7757205 3498.9901575 2511.7496063 0.0000000 3503.4566929 2511.7106299 -0.0000000 3600.8440945 2423.8417323 35.7757205 - - - - - - - - - - -0.8660241 0.5000023 0.0000000 -0.8660241 0.5000023 0.0000000 -0.8660241 0.5000023 0.0000000 -0.8660241 0.5000023 0.0000000 0.1908113 -0.9816267 0.0000000 0.1908113 -0.9816267 0.0000000 0.1908113 -0.9816267 0.0000000 0.1908113 -0.9816267 0.0000000 0.9816271 0.1908094 -0.0000025 0.9816272 0.1908091 -0.0000006 0.9816272 0.1908088 0.0000005 0.9816271 0.1908094 -0.0000025 0.9816272 0.1908088 0.0000005 0.0825808 -0.0476781 0.9954432 0.0825808 -0.0476781 0.9954432 0.0825808 -0.0476781 0.9954432 0.0825808 -0.0476781 0.9954432 0.0825808 -0.0476781 -0.9954432 0.0825808 -0.0476781 -0.9954432 0.0825808 -0.0476781 -0.9954432 0.0825808 -0.0476781 -0.9954432 -0.8656670 -0.4649384 0.1856152 -0.9023562 -0.1000913 0.4192076 -0.6779088 -0.6001521 0.4245669 -0.9023563 -0.1000913 -0.4192073 -0.8656670 -0.4649384 -0.1856148 -0.9816167 -0.1908628 -0.0000107 -0.9816254 -0.1908181 -0.0000134 -0.9955206 -0.0870764 0.0368287 -0.6779088 -0.6001522 -0.4245668 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076441 0.1753000 -0.9844854 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 -0.0076560 0.1753505 -0.9844763 0.9816157 0.1908682 -0.0000146 0.9780414 0.2084096 0.0007150 0.9753505 0.2206597 0.0008335 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 -0.0076560 0.1753505 0.9844763 0.8660266 -0.4999980 0.0000000 0.8660266 -0.4999980 0.0000000 0.8660266 -0.4999980 0.0000000 0.8660266 -0.4999980 0.0000000 -0.5067158 -0.8494266 -0.1473551 -0.5067158 -0.8494266 -0.1473551 -0.5067158 -0.8494266 0.1473553 -0.5067158 -0.8494266 0.1473553 0.0076560 -0.1753506 0.9844763 0.0076552 -0.1753494 0.9844765 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076625 -0.1753459 0.9844771 0.0082979 -0.1748959 0.9845520 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076581 -0.1753495 0.9844765 0.0078379 -0.1752636 0.9844903 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0092748 -0.1775934 -0.9840602 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076453 -0.1753609 -0.9844745 0.0076541 -0.1753524 -0.9844760 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 0.0076560 -0.1753506 -0.9844763 -0.9816143 -0.1908754 -0.0001111 -0.9941718 -0.1048388 0.0251236 -0.0617103 0.9980941 -0.0000036 -0.0436265 0.9990479 0.0000107 -0.0436253 0.9990480 0.0000045 -0.0611244 0.9981296 -0.0010877 -0.0439172 0.9990350 0.0005723 -0.0471364 0.9988881 0.0008927 -0.0436192 0.9990482 -0.0000004 -0.0436309 0.9990477 -0.0000079 -0.0301245 0.9995458 0.0008674 -0.0436340 0.9990476 0.0000103 -0.0428505 0.9990814 -0.0004811 -0.0217113 0.9997543 -0.0044711 0.0053732 0.9999850 0.0010963 0.0576054 0.9983107 -0.0075716 0.1037211 0.9946063 -0.0004803 0.1371687 0.9905330 -0.0053977 0.1910611 0.9815778 -0.0008526 0.2205616 0.9753622 0.0046011 0.2893297 0.9572294 0.0004890 0.2495935 0.9683470 0.0026808 0.2947774 0.9555584 -0.0037909 0.3220319 0.9467161 0.0049151 0.3782320 0.9257056 0.0031201 0.3278064 0.9447401 0.0030086 0.4447121 0.8956736 -0.0002434 0.3936286 0.9192663 -0.0024608 0.4496547 0.8932012 0.0015013 0.4768668 0.8789731 0.0020774 0.5322760 0.8463417 0.0196979 0.5801892 0.8143924 0.0120638 0.5479808 0.8364669 0.0063325 0.5881301 0.8087662 -0.0004570 0.6099508 0.7924295 0.0039357 0.6607960 0.7505339 0.0068912 0.6166667 0.7872235 -0.0011814 0.7120297 0.7021374 0.0041114 0.6740951 0.7386348 -0.0038050 0.7157541 0.6983451 0.0031974 0.7340391 0.6791072 -0.0000746 0.7737786 0.6334389 0.0046681 0.8354225 0.5496025 -0.0025037 0.8216466 0.5699555 0.0068949 0.8366896 0.5476774 0.0001175 0.8713351 0.4905631 0.0110931 0.9047841 0.4258431 0.0048317 0.8784609 0.4778141 -0.0002889 0.9066853 0.4218036 0.0018635 0.9144604 0.4046746 0.0007877 0.9069917 0.4211035 0.0061556 0.9447832 0.3276955 -0.0005897 0.9415501 0.3368553 0.0034642 0.9680427 0.2507765 -0.0021288 0.9655315 0.2602841 0.0010004 0.9680857 0.2506190 0.0005298 0.9748467 0.2228743 0.0009755 -0.5735886 0.8191435 -0.0000113 -0.5735890 0.8191432 0.0000196 -0.5735780 0.8191509 0.0000052 -0.5735203 0.8191914 0.0000741 -0.5735873 0.8191445 0.0001127 -0.5426187 0.8399775 0.0016490 -0.5735775 0.8191511 0.0005254 -0.5493031 0.8356228 -0.0008598 -0.5096485 0.8603815 0.0014163 -0.5201208 0.8540926 -0.0003711 -0.5098430 0.8602608 -0.0033759 -0.5227643 0.8524727 0.0027818 -0.4391224 0.8984272 -0.0002462 -0.4585939 0.8886458 0.0005530 -0.3688156 0.9295006 0.0018998 -0.3833781 0.9235852 -0.0034155 -0.3683370 0.9296836 -0.0040301 -0.3088225 0.9511195 0.0006521 -0.3656831 0.9307314 -0.0038792 -0.0076558 0.1753498 -0.9844764 -0.0074131 0.1743142 -0.9846622 -0.2312515 0.9728937 -0.0007633 -0.1512803 0.9884909 -0.0002782 -0.2225263 0.9749263 0.0008055 -0.1576407 0.9874965 0.0003662 -0.0795845 0.9968280 0.0004420 -0.0829958 0.9965486 -0.0016326 0.9727518 0.2318471 0.0008830 -0.0515300 0.9986677 0.0027365 -0.1159680 0.9932521 0.0012971 -0.1752960 0.9844861 0.0076420 -0.1826266 0.9831683 0.0052539 -0.1844709 0.9828056 -0.0079808 -0.2492540 0.9684175 -0.0063322 -0.2327215 0.9725406 0.0023541 -0.3303216 0.9438032 0.0110986 -0.3368686 0.9415482 0.0025556 -0.3376124 0.9412136 -0.0116068 -0.4003175 0.9163566 -0.0060402 -0.4789542 0.8777561 0.0121284 -0.4837090 0.8752170 0.0045599 -0.4830168 0.8755581 -0.0096329 -0.5252530 0.8509145 -0.0073391 -0.5720705 0.8202038 0.0009959 -0.5724758 0.8199215 0.0004128 -0.5727269 0.8197460 -0.0006410 0.9726398 0.2323070 -0.0022896 0.9542989 0.2988379 -0.0030973 0.9225422 0.3858892 -0.0023379 0.8887052 0.4581692 -0.0168526 0.8508423 0.5251854 -0.0157394 0.8448489 0.5349737 -0.0057906 0.8042656 0.5942399 -0.0059776 0.7448648 0.6672022 -0.0041993 0.7885294 0.6149962 -0.0009840 0.7451688 0.6668251 -0.0082257 0.6990067 0.7150752 -0.0075535 0.6343073 0.7730314 -0.0087590 0.5831982 0.8122663 -0.0101612 0.5130813 0.8583264 -0.0048311 0.4411524 0.8973006 -0.0153683 0.3757137 0.9266763 -0.0105018 0.3628291 0.9318545 -0.0014852 0.2960455 0.9551340 -0.0087264 0.2174499 0.9760500 0.0064746 0.1961350 0.9805478 0.0075493 0.1998368 0.9798140 0.0054544 0.0985255 0.9951330 0.0017221 0.1450118 0.9893802 -0.0099218 0.0523980 0.9985931 0.0081426 -0.0013992 0.9999888 -0.0045220 0.0485540 0.9988187 -0.0019371 0.0107816 0.9999284 0.0051945 0.0098734 0.9999374 -0.0052734 -0.0219074 0.9997600 -0.0002049 -0.0419664 0.9991186 0.0008634 -0.0420405 0.9991158 0.0003788 -0.0076560 0.1753507 0.9844763 -0.0076755 0.1758127 0.9843937 -0.0076560 0.1753506 0.9844763 -0.0435487 0.9990513 0.0000347 -0.0436406 0.9990473 -0.0000288 -0.8191497 -0.5735798 0.0000000 -0.8191497 -0.5735798 0.0000000 -0.8191497 -0.5735798 0.0000000 -0.8191497 -0.5735798 0.0000000 0.5757236 -0.7826638 -0.2366003 0.5498925 -0.7125356 -0.4357882 0.4335431 -0.4931984 -0.7541855 0.4335431 -0.4931984 0.7541855 0.4335431 -0.4931984 0.7541855 0.4335431 -0.4931984 0.7541855 -0.9816166 -0.1908636 0.0000203 -0.9788033 -0.2048027 0.0001739 -0.9770484 -0.2130066 -0.0021680 -0.9715350 -0.2368735 -0.0032782 -0.9714504 -0.2372423 0.0004150 -0.9749673 -0.2223481 0.0002995 -0.9562642 -0.2924916 -0.0027261 -0.9624124 -0.2715923 0.0000578 -0.9375958 -0.3476590 -0.0068771 -0.9390221 -0.3437766 -0.0074287 -0.9447073 -0.3279097 0.0018258 0.0127981 -0.1728902 0.9848580 -0.8927158 -0.4505702 -0.0067017 -0.8969210 -0.4421653 -0.0047482 -0.8767981 -0.4808586 -0.0002856 -0.8482267 -0.5296332 -0.0004562 -0.8717346 -0.4898763 -0.0100028 -0.8435980 -0.5369474 -0.0054610 -0.8427471 -0.5382455 -0.0083113 -0.8167639 -0.5769716 -0.0007351 0.0380602 -0.1536914 0.9873856 -0.7714629 -0.6362528 -0.0052272 -0.7913730 -0.6112629 -0.0092955 -0.7826375 -0.6224774 -0.0006690 -0.7458993 -0.6660585 -0.0005120 -0.7682969 -0.6400760 -0.0047565 -0.7092696 -0.7049365 0.0010966 -0.7386598 -0.6740236 -0.0085998 -0.6979591 -0.7161010 -0.0072439 -0.6249068 -0.7806990 0.0007365 -0.6625459 -0.7489860 -0.0072717 -0.6167835 -0.7871133 -0.0055553 -0.5334136 -0.8458545 0.0001583 -0.5951589 -0.8035873 -0.0057748 -0.5443763 -0.8388256 -0.0051050 -0.5193146 -0.8545766 -0.0033459 -0.4745086 -0.8802502 0.0010599 -0.5153263 -0.8569932 0.0012077 -0.4350882 -0.9003872 0.0010204 -0.4720940 -0.8815471 -0.0013945 -0.4241607 -0.9055865 -0.0008524 -0.4245947 -0.9053396 0.0089203 -0.3759020 -0.9266584 0.0013421 -0.3244301 -0.9459091 0.0010146 -0.3849358 -0.9228660 0.0119479 -0.3244223 -0.9459111 0.0015473 -0.3210394 -0.9470469 0.0059799 -0.2883674 -0.9575183 0.0017313 -0.2064224 -0.9784277 -0.0083119 -0.2754399 -0.9612920 0.0071058 -0.1795095 -0.9837554 -0.0013062 -0.2122736 -0.9771766 0.0081162 -0.1080989 -0.9941301 -0.0044611 -0.1655441 -0.9861760 0.0072190 -0.0680912 -0.9976789 -0.0005729 -0.1069724 -0.9942511 0.0046633 -0.0600735 -0.9981003 0.0136731 -0.0555827 -0.9984540 0.0002759 -0.0120306 -0.9998978 0.0077176 0.0013317 -0.9999874 -0.0048308 0.0294110 -0.9995550 0.0049800 -0.0017269 -0.9999829 0.0055954 0.0324117 -0.9994744 0.0006084 0.0423610 -0.9991013 -0.0014417 0.0359410 -0.9993519 -0.0019825 0.0423993 -0.9991007 -0.0003622 0.0436231 -0.9990481 0.0000121 0.0386082 -0.9991185 0.0164785 0.0436261 -0.9990479 -0.0001592 0.0436231 -0.9990481 0.0000127 0.0436239 -0.9990480 -0.0001173 0.0436257 -0.9990479 -0.0000350 0.0673095 -0.9864455 -0.1496489 0.0436210 -0.9990482 -0.0000075 0.0653455 -0.9958183 -0.0638429 0.0436193 -0.9990482 -0.0000011 0.0448775 -0.9989802 -0.0049627 0.0441498 -0.9990249 -0.0003430 0.0436191 -0.9990482 0.0000014 0.1095981 -0.9936882 -0.0239171 0.0441774 -0.9990237 0.0000987 0.0436235 -0.9990480 0.0000233 0.0436205 -0.9990482 0.0000001 0.0076559 -0.1753496 0.9844765 0.0075161 -0.1721363 0.9850445 0.0076560 -0.1753502 0.9844764 0.0603306 -0.9981758 -0.0023031 0.0770596 -0.9969670 -0.0108908 0.0470048 -0.9988859 -0.0041833 0.0970673 -0.9952727 -0.0032017 0.1141531 -0.9934622 -0.0013871 0.1066073 -0.9942871 0.0052871 0.1580073 -0.9874358 -0.0020715 0.1565474 -0.9876455 -0.0070230 0.1902320 -0.9817367 -0.0021982 0.2138091 -0.9768754 -0.0003654 0.1977157 -0.9802258 0.0081141 0.2551828 -0.9668915 -0.0015844 0.2318705 -0.9727465 -0.0005675 0.2835420 -0.9589595 -0.0007361 0.2614570 -0.9652144 0.0011872 0.3143924 -0.9492581 0.0081549 0.3063904 -0.9519056 0.0008266 0.3639554 -0.9314108 0.0032327 0.3569192 -0.9341352 -0.0003449 0.4018189 -0.9157035 0.0053577 0.4036897 -0.9148930 -0.0023189 0.4525238 -0.8917515 0.0012389 0.4487093 -0.8936753 -0.0021100 0.4864966 -0.8736787 0.0025623 0.4950799 -0.8688418 -0.0031409 0.5331520 -0.8460195 -0.0000133 0.5360715 -0.8441680 -0.0027736 0.5621959 -0.8270040 0.0003697 0.5558569 -0.8312774 0.0010099 0.5654041 -0.8248105 0.0024398 0.5731795 -0.8194299 -0.0000262 0.5697198 -0.8218389 0.0003490 0.5735825 -0.8191478 -0.0000876 0.5736157 -0.8191245 -0.0001843 0.5735991 -0.8191362 -0.0001051 0.5735640 -0.8191607 -0.0000114 0.5735878 -0.8191441 -0.0000488 0.5736122 -0.8191270 0.0000746 0.0076558 -0.1753503 0.9844763 -0.0167243 -0.1414174 0.9898088 0.5735964 -0.8191381 0.0000120 0.5736217 -0.8191203 0.0000070 0.0076560 -0.1753506 -0.9844763 0.0098668 -0.1784132 -0.9839062 0.5735840 -0.8191467 0.0000199 0.5736087 -0.8191294 -0.0000706 0.5736087 -0.8191294 0.0000203 0.5735970 -0.8191376 0.0000964 0.5733706 -0.8192961 -0.0000957 0.5733882 -0.8192838 -0.0001439 0.5735208 -0.8191910 -0.0001473 0.5725409 -0.8198761 0.0001037 0.5708931 -0.8210239 -0.0008948 0.5411490 -0.8409126 0.0048657 0.5158387 -0.8566642 0.0060828 0.4726231 -0.8812522 0.0046771 0.4317961 -0.9019495 0.0062573 0.3881585 -0.9215886 0.0027279 0.3435773 -0.9391171 0.0037006 0.3450347 -0.9385899 -0.0002507 0.3179590 -0.9480991 -0.0031799 0.2919770 -0.9564253 -0.0000891 0.2633274 -0.9646955 0.0046211 0.2422515 -0.9702121 0.0016434 0.1866711 -0.9824220 0.0009266 0.1455324 -0.9893524 0.0014929 0.0951165 -0.9954658 0.0008681 0.0551680 -0.9984700 0.0037616 0.0493565 -0.9987811 0.0004740 0.0986820 -0.9949832 -0.0164404 0.0515637 -0.9986684 -0.0016461 0.0436227 -0.9990481 0.0000675 0.0436219 -0.9990481 0.0000965 0.0436228 -0.9990481 0.0001580 0.0436198 -0.9990482 0.0002108 0.0420093 -0.9991169 0.0007381 0.0380484 -0.9992748 0.0015066 0.0359476 -0.9993517 -0.0019996 -0.0015825 -0.9999987 0.0003363 0.0180714 -0.9998145 0.0066622 -0.0261142 -0.9996353 -0.0068847 -0.0893236 -0.9959990 -0.0027043 -0.1307731 -0.9914091 -0.0025207 -0.1761101 -0.9843620 -0.0040787 -0.2395181 -0.9708850 -0.0036610 -0.2777745 -0.9605887 -0.0105192 -0.2870618 -0.9578978 0.0052209 -0.3231317 -0.9463282 0.0069846 -0.3789367 -0.9253766 -0.0092261 -0.4308628 -0.9024053 -0.0046815 -0.4745549 -0.8802005 -0.0066845 -0.5141326 -0.8577101 0.0010058 -0.5409151 -0.8410616 0.0051175 -0.5750908 -0.8180796 0.0040530 -0.6045775 -0.7965462 0.0004346 -0.6527301 -0.7575821 0.0035804 -0.5738001 -0.8189953 0.0002641 -0.6870329 -0.7266237 0.0019346 -0.6887124 -0.7250143 0.0054315 0.0064893 -0.1764740 -0.9842839 -0.7646228 -0.6444519 0.0058062 -0.7604489 -0.6493924 0.0026487 -0.7827380 -0.6222610 0.0105991 -0.8194387 -0.5730867 0.0095866 -0.8330063 -0.5532419 0.0048983 -0.8360964 -0.5485522 0.0057696 -0.8666904 -0.4987550 0.0095481 -0.8885705 -0.4587182 0.0044786 -0.8912204 -0.4535367 0.0055401 -0.9029117 -0.4298260 -0.0000286 -0.9154998 -0.4022306 0.0084125 -0.9323135 -0.3616374 0.0031429 -0.9256823 -0.3782995 0.0013411 -0.9458284 -0.3246419 0.0040412 -0.9628381 -0.2700702 0.0022267 -0.9711050 -0.2386527 0.0000437 -0.9707208 -0.2401987 0.0024012 -0.9768708 -0.2138275 0.0011199 -0.9816204 -0.1908440 -0.0001342 -0.0435089 0.9990530 0.0001591 -0.2962838 0.9550997 0.0007482 -0.0425593 0.9990939 -0.0000300 -0.9233748 -0.3837892 -0.0092092 -0.8305523 -0.5568064 -0.0122239 -0.6643345 -0.7474350 0.0008122 0.5735709 -0.8191559 -0.0000087 0.0075985 -0.1754067 -0.9844667 0.0129128 0.9998982 0.0060782 0.0804499 0.9967587 0.0000026 -0.7308003 -0.6825763 0.0045239 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 10 11 12 11 10 9 13 14 15 14 13 16 17 18 19 18 17 20 21 22 23 21 24 22 24 21 25 25 21 26 26 21 27 26 27 28 25 29 24 30 31 32 31 30 33 31 33 34 31 34 35 31 35 36 31 36 37 31 37 38 31 38 39 31 39 40 31 40 41 31 41 42 31 42 43 31 43 44 31 44 45 31 45 46 31 46 47 31 47 48 31 48 49 31 49 50 31 50 51 31 51 52 31 52 53 31 53 54 31 54 55 31 55 56 31 56 57 31 57 58 31 58 59 31 59 60 31 60 61 31 61 62 31 62 63 31 63 64 31 64 65 31 65 66 31 66 67 31 67 68 31 68 69 31 69 70 31 70 71 31 71 72 8 11 9 11 8 73 11 73 74 74 73 75 76 77 78 77 76 79 79 76 80 80 76 81 81 76 82 82 76 83 83 76 84 84 76 85 85 76 86 86 76 87 87 76 88 88 76 89 89 76 90 90 76 91 91 76 92 92 76 93 93 76 94 94 76 95 95 76 96 96 76 97 97 76 98 98 76 99 99 76 100 100 76 101 101 76 102 102 76 103 103 76 104 104 76 105 105 76 106 106 76 107 107 76 108 108 76 109 109 76 110 110 76 111 111 76 112 112 76 113 113 76 114 114 76 115 115 76 116 116 76 117 117 76 118 118 76 119 119 76 120 120 76 121 121 76 122 122 76 123 123 76 124 124 76 125 125 76 126 125 126 127 128 129 130 129 128 131 25 132 29 132 25 133 21 134 135 134 21 23 136 137 138 137 136 139 139 136 140 140 136 141 141 136 142 142 136 143 143 136 144 144 136 145 145 136 146 146 136 147 147 136 148 148 136 149 149 136 150 150 136 151 151 136 152 152 136 153 153 136 154 154 136 155 155 136 156 156 136 157 157 136 158 158 136 159 159 136 160 160 136 161 161 136 162 162 136 163 163 136 164 164 136 165 165 136 166 166 136 167 167 136 168 168 136 169 169 136 170 170 136 171 171 136 172 172 136 173 173 136 174 174 136 175 175 136 176 176 136 177 177 136 178 178 136 179 179 136 180 180 136 181 181 136 182 182 136 183 183 136 184 184 136 185 185 136 186 186 136 187 187 136 188 188 136 189 189 136 190 190 136 191 191 136 192 192 136 193 193 136 194 194 136 195 195 136 196 196 136 197 197 136 198 198 136 199 199 136 200 200 136 201 201 136 202 202 136 203 203 136 204 205 206 207 206 205 208 206 208 209 206 209 210 206 210 211 206 211 212 206 212 213 206 213 214 206 214 215 206 215 216 206 216 217 206 217 218 206 218 219 206 219 220 206 220 221 206 221 222 206 222 223 206 223 224 206 224 225 206 225 226 206 226 227 206 227 228 206 228 229 206 229 230 206 230 231 206 231 232 206 232 233 206 233 234 206 234 235 206 235 236 206 236 237 206 237 238 206 238 239 206 239 240 206 240 241 206 241 242 206 242 243 206 243 244 206 244 245 206 245 246 206 246 247 206 247 248 206 248 249 206 249 250 206 250 251 206 251 252 206 252 253 206 253 254 206 254 255 206 255 256 206 256 257 206 257 258 206 258 259 206 259 260 206 260 261 206 261 262 206 262 263 206 263 264 206 264 265 206 265 266 206 266 267 206 267 268 206 268 269 206 269 270 206 270 271 206 271 272 272 271 273 206 272 274 206 274 275 28 27 276 26 28 277 278 279 280 279 278 281 279 281 282 279 282 283 279 283 284 285 279 284 279 286 280 286 279 287 288 289 286 290 291 289 292 293 291 294 295 293 294 296 295 297 298 296 299 300 298 301 302 300 303 304 302 305 306 304 305 307 306 308 309 307 310 311 309 311 312 313 314 315 313 315 316 317 317 318 319 319 320 321 320 322 321 322 323 324 324 325 326 326 327 328 328 329 330 330 331 332 332 75 73 333 334 335 334 333 336 336 337 334 336 338 337 338 336 339 338 339 340 340 341 338 342 343 341 344 345 343 346 347 345 348 349 347 350 351 349 352 40 353 354 355 356 357 358 355 359 278 358 360 74 75 361 283 282 362 361 281 363 362 359 364 363 357 365 364 354 366 365 367 368 366 367 369 368 350 370 369 348 371 370 346 372 371 346 373 372 344 374 373 342 375 374 340 376 375 340 377 376 339 378 377 336 333 378 336 379 360 331 380 379 329 381 380 327 382 381 325 383 382 325 384 383 320 385 384 318 386 385 387 388 386 316 314 389 388 389 312 390 390 310 391 391 310 392 392 305 393 393 305 394 394 301 395 395 299 396 396 299 397 397 398 399 399 400 401 401 400 402 402 403 404 404 405 406 406 407 408 408 288 409 410 411 412 413 287 414 285 414 287 415 416 417 416 415 418 419 420 421 422 423 424 425 26 277 426 425 277 425 426 427 428 427 426 429 428 430 431 429 432 433 431 432 434 433 435 197 436 196 437 438 439 440 441 437 442 441 440 443 442 444 192 445 191 446 447 448 449 450 446 451 452 450 451 453 452 454 455 453 454 456 455 457 458 456 457 459 458 457 460 459 461 462 460 463 464 462 463 465 464 466 467 465 466 468 467 469 470 468 471 472 470 471 473 472 474 475 473 476 477 475 478 479 477 480 481 479 482 483 481 484 485 483 486 487 485 488 489 487 490 491 489 489 492 493 492 489 491 492 491 494 495 496 493 497 498 496 499 500 498 500 499 501 502 503 500 503 504 505 504 503 502 504 502 506 504 506 507 508 509 510 511 512 513 511 514 512 515 516 514 517 518 516 517 519 518 520 521 519 522 523 521 522 524 523 525 526 524 527 528 526 529 530 528 531 532 530 533 534 532 535 536 534 537 538 536 539 540 538 541 542 540 542 543 544 543 542 541 543 545 544 545 546 547 546 545 543 546 548 547 549 550 137 551 419 552 553 207 554 555 546 556 556 546 557 557 543 558 543 559 558 559 543 560 560 541 561 561 541 562 562 541 563 563 539 564 564 539 565 565 537 566 566 535 567 567 533 568 568 531 569 569 529 570 570 527 571 571 527 572 572 525 573 573 525 574 574 522 575 575 520 576 576 517 577 577 515 578 578 511 579 580 581 505 581 580 507 581 507 579 582 506 501 506 582 583 499 582 501 582 499 584 582 584 583 585 497 586 497 585 584 490 494 491 494 490 587 494 585 492 585 494 587 588 587 490 589 588 590 591 589 486 592 591 482 593 592 480 594 593 478 595 594 476 596 595 474 597 596 471 598 597 469 599 598 469 600 599 466 601 600 463 602 601 461 603 602 457 604 603 457 605 604 457 606 605 607 608 606 454 606 608 609 257 256 610 449 611 612 611 448 613 613 448 614 448 615 614 615 444 616 616 440 617 617 440 618 618 439 619 619 620 621 621 620 622 622 623 624 624 435 625 625 432 626 626 430 627 430 628 627 628 426 629 629 277 276 277 629 426 277 28 276 281 278 359 361 282 281 285 287 279 287 630 286 630 287 413 288 286 630 407 289 288 290 292 291 407 290 289 292 294 293 297 296 294 299 298 297 301 300 299 303 302 301 305 304 303 305 308 307 310 309 308 312 311 310 312 314 313 314 316 315 316 387 317 317 387 318 318 320 319 320 323 322 323 325 324 325 327 326 328 327 329 329 331 330 331 75 332 377 339 336 376 340 339 342 341 340 344 343 342 346 345 344 346 348 347 350 349 348 367 351 350 367 631 351 367 356 631 354 356 367 354 357 355 359 358 357 331 360 75 362 281 359 363 359 357 364 357 354 365 354 367 368 367 350 369 350 348 370 348 346 372 346 344 373 344 342 374 342 340 329 379 331 327 380 329 325 381 327 383 325 323 320 383 323 318 384 320 387 385 318 316 386 387 314 388 316 389 314 312 390 312 310 392 310 308 392 308 305 394 305 303 394 303 301 395 301 299 397 299 297 399 398 400 397 297 398 402 400 403 404 403 405 406 405 407 408 407 288 409 288 630 632 630 413 409 630 632 551 420 419 430 428 426 429 430 432 435 433 432 434 435 623 438 633 620 620 633 434 440 437 439 439 438 620 444 442 440 448 443 444 448 634 443 447 634 448 449 446 448 451 450 449 635 453 451 635 454 453 454 607 456 607 457 456 457 461 460 463 462 461 466 465 463 469 468 466 469 471 470 471 474 473 474 476 475 476 478 477 480 479 478 482 481 480 482 484 483 484 486 485 486 590 487 590 488 487 488 490 489 492 586 493 497 496 495 586 495 493 499 498 497 501 502 500 506 502 501 507 580 504 580 505 504 581 513 505 511 513 581 515 514 511 517 516 515 520 519 517 520 522 521 522 525 524 525 527 526 529 528 527 531 530 529 533 532 531 535 534 533 535 537 536 537 539 538 539 541 540 560 543 541 557 546 543 546 636 548 551 552 636 551 546 555 563 541 539 565 539 537 566 537 535 567 535 533 568 533 531 569 531 529 570 529 527 572 527 525 574 525 522 575 522 520 576 520 517 577 517 515 578 515 511 579 511 581 584 499 497 497 495 586 585 586 492 588 490 488 589 590 486 588 488 590 591 486 484 592 482 480 591 484 482 593 480 478 594 478 476 595 476 474 596 474 471 597 471 469 599 469 466 600 466 463 601 463 461 602 461 457 605 457 607 606 607 454 608 454 635 257 610 637 449 448 611 451 449 612 448 444 615 444 440 616 440 439 618 439 620 619 620 623 622 623 435 624 435 432 625 626 432 430 430 426 628 638 292 290 407 638 290 638 407 405 639 294 292 297 294 639 398 639 400 398 297 639 400 405 403 620 434 623 635 451 640 551 636 546 640 608 635 640 451 612 638 639 292 400 638 405 400 639 638

-
-
-
- - - - -2913.3858268 -0.0000000 2541.2665354 -2904.8712598 -34.5724882 2515.6685039 -2906.4637795 -18.1148858 2504.9007874 -2913.3858268 -0.0000000 2541.2665354 -3645.9165354 721.3208661 2104.9708661 -2904.8712598 -34.5724882 2515.6685039 -3672.7086614 774.5374016 2120.4393701 -3645.9165354 721.3208661 2104.9708661 -2906.4637795 -18.1148858 2504.9007874 -2904.8712598 -34.5724882 2515.6685039 -3019.1118110 1146.2763780 1743.0850394 -873.9102362 -18.1148858 3678.3960630 -2913.3858268 -0.0000000 2541.2665354 -2906.4637795 -18.1148858 2504.9007874 -891.3874016 0.0000000 3708.6677165 -3667.2476378 496.5389764 1808.8925197 -3640.5874016 450.0141732 1800.9232283 -2913.3858268 -0.0000000 2541.2665354 -3030.4444882 1209.9744094 1749.6279528 -3672.7086614 774.5374016 2120.4393701 -3628.0177165 464.0960630 1799.7535433 -3645.9165354 721.3208661 2104.9708661 -3640.5874016 450.0141732 1800.9232283 -3019.1118110 1146.2763780 1743.0850394 -4531.1732283 1123.4653543 883.7460630 -3628.0177165 464.0960630 1799.7535433 -4587.6968504 1096.1980315 867.4299213 -851.9807087 2109.3019685 2417.9992126 -873.9102362 -18.1148858 3678.3960630 -542.6248031 367.3988976 3638.9700787 -695.4783465 1234.2736220 3031.9775591 -849.8657480 2109.8488189 2418.8937008 -560.1023622 385.5137795 3669.2425197 -542.6248031 367.3988976 3638.9700787 -4620.2165354 1124.2212598 883.0874016 -867.6527559 2129.7177165 2447.9370079 -3667.2476378 496.5389764 1808.8925197 -891.3874016 0.0000000 3708.6677165 -560.1023622 385.5137795 3669.2425197 -3628.0177165 464.0960630 1799.7535433 -3640.5874016 450.0141732 1800.9232283 -3667.2476378 496.5389764 1808.8925197 -3030.4444882 1209.9744094 1749.6279528 -3667.2476378 496.5389764 1808.8925197 -3672.7086614 774.5374016 2120.4393701 -3628.0177165 464.0960630 1799.7535433 -4620.2165354 1124.2212598 883.0874016 -4587.6968504 1096.1980315 867.4299213 -3667.2476378 496.5389764 1808.8925197 -1503.8822835 2583.8917323 -0.0000000 -4531.1732283 1123.4653543 -883.7460630 -1539.7874016 2566.5704724 -1634.1547244 -4587.6968504 1096.1980315 -867.4299213 -4603.1102362 1088.7618110 -862.9803150 -4603.1102362 1088.7618110 862.9803150 -1539.7874016 2566.5704724 1634.1547244 -1528.0826772 2572.1751969 1637.1236220 -1423.8976378 2617.8692913 1657.7968504 -765.2307087 2130.2645669 2450.2736220 -514.4429134 402.1271654 3633.5370079 -514.4429134 402.1271654 3633.5370079 -560.1023622 385.5137795 3669.2425197 -864.3535433 -24.7086378 3694.2232283 -891.3874016 0.0000000 3708.6677165 -533.0681102 360.8051575 3654.7980315 13.8536811 740.5137795 4136.2047244 -560.1023622 385.5137795 3669.2425197 -891.3874016 0.0000000 3708.6677165 -517.8586614 436.4224409 3661.2220472 -474.5724409 492.0905512 3647.0094488 -429.2440945 553.9909449 3625.9598425 -379.9566535 625.2889764 3596.2429134 -329.9838976 701.7098425 3559.0464567 -280.9939764 780.5834646 3515.8141732 -231.5618504 864.1500000 3465.3818898 -194.0036220 930.3543307 3422.4263780 -149.7511024 1011.4633858 3366.5039370 -500.2724409 458.6657480 3656.0874016 -499.6425197 459.4354331 3655.9492126 -1557.2740157 2601.8468504 1651.4464567 -4603.1102362 1088.7618110 862.9803150 -4620.2165354 1124.2212598 883.0874016 -4603.1102362 1088.7618110 -862.9803150 -4603.1102362 1088.7618110 862.9803150 -4620.2165354 1124.2212598 -883.0874016 -4587.6968504 1096.1980315 -867.4299213 -4603.1102362 1088.7618110 -862.9803150 -4620.2165354 1124.2212598 -883.0874016 -3628.0177165 464.0960630 -1799.7535433 -3019.1118110 1146.2763780 -1743.0850394 -851.9807087 2109.3019685 -2417.9992126 -2906.4637795 -18.1148858 -2504.9007874 -873.9102362 -18.1148858 -3678.3960630 -542.6248031 367.3988976 -3638.9700787 -695.4783465 1234.2736220 -3031.9775591 -849.8657480 2109.8488189 -2418.8937008 -1528.0826772 2572.1751969 -1637.1236220 -1473.4744094 2597.2429134 1649.7208661 -1413.6074803 2622.1507874 1659.4732283 -753.0157480 2133.1043307 2454.0311024 -486.0161417 439.5822835 3624.0503937 -462.0980315 471.0964567 3616.0685039 -500.2724409 458.6657480 3656.0874016 -508.8929134 389.5151969 3650.9334646 -533.0681102 360.8051575 3654.7980315 15.1089291 694.7169291 4109.5826772 -864.3535433 -24.7086378 3694.2232283 -508.8929134 389.5151969 3650.9334646 -484.3578740 419.8090551 3645.0322835 -459.0795276 452.2027559 3636.9299213 -433.0149606 486.8224409 3626.4925197 -406.1196850 523.8019685 3613.5716535 -377.9705906 563.8346457 3597.7759843 -349.9771654 604.9700787 3579.8019685 -320.8928740 649.0889764 3558.7657480 -291.1985433 695.5649606 3534.8397638 -264.2883071 738.9208661 3511.0413386 -233.4503937 790.0582677 3481.2811024 -202.2224803 843.4370079 3448.4173228 -140.1040551 951.7688976 3379.3645669 -172.5096063 895.7303150 3414.5740157 -140.8784252 953.0515748 3375.7212598 -864.3535433 -24.7086378 3694.2232283 13.8536811 740.5137795 4136.2047244 -891.3874016 0.0000000 3708.6677165 15.1089291 694.7169291 4109.5826772 -194.0036220 930.3543307 3422.4263780 -202.2224803 843.4370079 3448.4173228 -231.5618504 864.1500000 3465.3818898 -233.4503937 790.0582677 3481.2811024 -280.9939764 780.5834646 3515.8141732 -291.1985433 695.5649606 3534.8397638 -329.9838976 701.7098425 3559.0464567 -349.9771654 604.9700787 3579.8019685 -379.9566535 625.2889764 3596.2429134 -377.9705906 563.8346457 3597.7759843 -429.2440945 553.9909449 3625.9598425 -433.0149606 486.8224409 3626.4925197 -474.5724409 492.0905512 3647.0094488 -484.3578740 419.8090551 3645.0322835 -517.8586614 436.4224409 3661.2220472 13.8536811 740.5137795 4136.2047244 -61.9168110 935.8968504 3414.1984252 -149.7511024 1011.4633858 3366.5039370 26.0040787 861.5881890 3454.9720472 101.7801969 798.6500000 3484.3303150 181.9253543 733.2484252 3509.2862205 250.8098425 678.0566929 3525.3968504 310.8124803 630.8027559 3535.1354331 375.8205906 580.5531496 3540.7385827 391.9251575 568.2669291 3541.2771654 1136.5791339 -0.0000000 3567.1062992 1100.7964567 0.0000000 3708.6677165 -140.8784252 953.0515748 3375.7212598 -149.7511024 1011.4633858 3366.5039370 -499.6425197 459.4354331 3655.9492126 -486.0161417 439.5822835 3624.0503937 -748.0862205 2159.6996063 2486.3334646 -4620.2165354 1124.2212598 -883.0874016 -1520.9885827 2619.3511811 -0.0000000 -1557.2740157 2601.8468504 -1651.4464567 -1438.5507874 2653.1125984 1672.1452756 -3628.0177165 464.0960630 -1799.7535433 -3667.2476378 496.5389764 -1808.8925197 -3645.9165354 721.3208661 -2104.9708661 -3628.0177165 464.0960630 -1799.7535433 -3640.5874016 450.0141732 -1800.9232283 -3019.1118110 1146.2763780 -1743.0850394 -3645.9165354 721.3208661 -2104.9708661 -2904.8712598 -34.5724882 -2515.6685039 -873.9102362 -18.1148858 -3678.3960630 -2913.3858268 0.0000000 -2541.2665354 -891.3874016 -0.0000000 -3708.6677165 -2906.4637795 -18.1148858 -2504.9007874 -560.1023622 385.5137795 -3669.2425197 -542.6248031 367.3988976 -3638.9700787 -489.7267717 433.9901575 -3626.4527559 -779.5173228 2126.9094488 -2445.6393701 -1423.8976378 2617.8692913 -1657.7968504 -1496.4106299 2587.4783465 0.0000000 -1478.2019685 2596.0700787 -0.0000000 -1351.0645669 2650.3692913 0.0000000 -737.3259843 2136.6141732 2457.8948819 -462.0980315 471.0964567 3616.0685039 -580.6370079 1251.0007874 3078.5594488 -172.5096063 895.7303150 3414.5740157 -149.7511024 1011.4633858 3366.5039370 -89.6125197 908.4539370 3406.1322835 15.1089291 694.7169291 4109.5826772 -140.1040551 951.7688976 3379.3645669 -39.0339961 865.5043307 3430.6437008 12.1441181 822.5007874 3453.0661417 60.7656299 782.0807087 3472.0905512 109.5618504 741.9531496 3488.8944882 157.4007874 703.0531496 3503.0681102 202.5702756 666.7421260 3514.2602362 243.3269291 634.3413386 3522.4629921 282.8871654 603.2362205 3528.6244094 324.0731890 571.2366142 3533.0299213 361.1544094 542.7811024 3535.1405512 368.4442913 537.2279528 3535.3413386 1113.0984252 -31.0390354 3561.1712598 1077.3153543 -31.0390354 3702.7322835 536.2448819 337.5825591 3915.5539370 17.2576969 691.1586614 4119.6929134 -459.0795276 452.2027559 3636.9299213 -406.1196850 523.8019685 3613.5716535 -320.8928740 649.0889764 3558.7657480 -264.2883071 738.9208661 3511.0413386 13.8536811 740.5137795 4136.2047244 26.0040787 861.5881890 3454.9720472 -39.0339961 865.5043307 3430.6437008 -61.9168110 935.8968504 3414.1984252 -89.6125197 908.4539370 3406.1322835 17.2576969 691.1586614 4119.6929134 1100.7964567 0.0000000 3708.6677165 13.8536811 740.5137795 4136.2047244 536.2448819 337.5825591 3915.5539370 1136.5791339 -0.0000000 3567.1062992 1077.3153543 -31.0390354 3702.7322835 1113.0984252 -31.0390354 3561.1712598 1120.4114173 -22.4590709 3539.1027559 391.9251575 568.2669291 3541.2771654 375.6111417 545.9196850 3513.2681102 1136.5791339 -0.0000000 3567.1062992 391.9251575 568.2669291 3541.2771654 1962.3854331 2440.5472441 1132.9838583 87.6907874 2293.6657480 2333.1393701 1136.5791339 -0.0000000 3567.1062992 2912.9055118 0.0000000 2541.5437008 391.9251575 568.2669291 3541.2771654 1113.0984252 -31.0390354 3561.1712598 368.4442913 537.2279528 3535.3413386 1136.5791339 -0.0000000 3567.1062992 361.1544094 542.7811024 3535.1405512 375.8205906 580.5531496 3540.7385827 324.0731890 571.2366142 3533.0299213 310.8124803 630.8027559 3535.1354331 243.3269291 634.3413386 3522.4629921 250.8098425 678.0566929 3525.3968504 202.5702756 666.7421260 3514.2602362 181.9253543 733.2484252 3509.2862205 109.5618504 741.9531496 3488.8944882 101.7801969 798.6500000 3484.3303150 12.1441181 822.5007874 3453.0661417 -463.8598425 508.6019685 3638.8165354 -1408.5968504 2666.9964567 0.0000000 -1438.5507874 2653.1125984 -1672.1452756 -867.6527559 2129.7177165 -2447.9370079 -1379.0027559 2678.8263780 1682.5271654 -3628.0177165 464.0960630 -1799.7535433 -3667.2476378 496.5389764 -1808.8925197 -3640.5874016 450.0141732 -1800.9232283 -3030.4444882 1209.9744094 -1749.6279528 -3667.2476378 496.5389764 -1808.8925197 -2913.3858268 0.0000000 -2541.2665354 -891.3874016 -0.0000000 -3708.6677165 -560.1023622 385.5137795 -3669.2425197 -1473.4744094 2597.2429134 -1649.7208661 -3667.2476378 496.5389764 -1808.8925197 -3645.9165354 721.3208661 -2104.9708661 -3640.5874016 450.0141732 -1800.9232283 -3672.7086614 774.5374016 -2120.4393701 -2913.3858268 0.0000000 -2541.2665354 -2906.4637795 -18.1148858 -2504.9007874 -2904.8712598 -34.5724882 -2515.6685039 -2913.3858268 0.0000000 -2541.2665354 -2904.8712598 -34.5724882 -2515.6685039 -489.7267717 433.9901575 -3626.4527559 -864.3535433 -24.7086378 -3694.2232283 -560.1023622 385.5137795 -3669.2425197 -891.3874016 -0.0000000 -3708.6677165 -533.0681102 360.8051575 -3654.7980315 -560.1023622 385.5137795 -3669.2425197 13.8536811 740.5137795 -4136.2047244 -891.3874016 -0.0000000 -3708.6677165 -515.3448819 439.5598425 -3660.5594488 -468.8976378 499.6417323 -3644.7129921 -445.8681102 530.8728346 -3634.3921260 -402.7066929 591.8708661 -3610.8299213 -354.6840945 663.4236220 -3578.3102362 -302.8327559 744.9409449 -3535.9110236 -248.2083858 835.5586614 -3483.1346457 -196.8852362 925.1909449 -3425.8661417 -149.7511024 1011.4633858 -3366.5039370 -485.7173228 439.4877953 -3624.7586614 -737.1625984 2136.5842520 -2457.4625984 -1413.6074803 2622.1507874 -1659.4732283 -1282.3948819 2674.5551181 0.0000000 -463.8598425 508.6019685 3638.8165354 -407.0169291 549.5633858 3587.9228346 -449.8015748 488.6133858 3609.7850394 536.2448819 337.5825591 3915.5539370 60.7656299 782.0807087 3472.0905512 157.4007874 703.0531496 3503.0681102 282.8871654 603.2362205 3528.6244094 391.9251575 568.2669291 3541.2771654 375.6436614 545.7358268 3513.3968504 375.6111417 545.9196850 3513.2681102 73.6679921 2263.3354331 2310.2102362 279.1761811 1091.2897638 3131.5523622 72.0661811 2263.3240157 2311.1444882 1927.5452756 2408.5858268 1123.3818898 375.6111417 545.9196850 3513.2681102 1120.4114173 -22.4590709 3539.1027559 2903.6185039 -22.4590709 2509.5677165 1982.5212598 2342.5417323 1144.6090551 2912.9055118 0.0000000 2541.5437008 2903.6185039 -22.4590709 2509.5677165 -579.2122047 2834.6456693 1535.4330709 984.2519685 2834.6456693 787.4015748 -20.6085669 2284.8338583 2400.5377953 3626.1547244 681.9098425 2093.5614173 -714.8409449 2168.0362205 2497.0094488 -750.0397638 2159.6551181 -2488.1889764 -1327.3921260 2701.4212598 -0.0000000 -3672.7086614 774.5374016 -2120.4393701 -3030.4444882 1209.9744094 -1749.6279528 -3672.7086614 774.5374016 -2120.4393701 -3667.2476378 496.5389764 -1808.8925197 -501.0094488 458.8771654 -3654.3460630 13.8536811 740.5137795 -4136.2047244 -864.3535433 -24.7086378 -3694.2232283 -891.3874016 -0.0000000 -3708.6677165 15.1089291 694.7169291 -4109.5826772 15.1089291 694.7169291 -4109.5826772 -533.0681102 360.8051575 -3654.7980315 -864.3535433 -24.7086378 -3694.2232283 -519.5724409 376.6906693 -3652.8822835 -494.2866142 407.4118110 -3647.6562992 -468.1704724 440.4169291 -3640.0759843 -441.2003937 475.8196850 -3629.9940945 -415.4358268 510.8507874 -3618.2901575 -389.3521260 547.4862205 -3604.4393701 -360.0083858 590.0787402 -3586.5007874 -329.9383465 635.2181102 -3565.5641732 -301.3686220 679.4858268 -3543.3110236 -268.8879528 731.4267717 -3515.2511811 -237.0373622 784.0299213 -3484.8803150 -206.9804331 835.2000000 -3453.6027559 -140.1040551 951.7688976 -3379.3645669 -173.2106693 894.4795276 -3415.4023622 -140.8784252 953.0515748 -3375.7212598 -519.5724409 376.6906693 -3652.8822835 -173.2106693 894.4795276 -3415.4023622 -196.8852362 925.1909449 -3425.8661417 -248.2083858 835.5586614 -3483.1346457 -140.8784252 953.0515748 -3375.7212598 -149.7511024 1011.4633858 -3366.5039370 13.8536811 740.5137795 -4136.2047244 253.9381496 675.5740157 -3526.0059055 1100.7964567 -0.0000000 -3708.6677165 180.6920079 734.2452756 -3508.9519685 106.8856693 794.4472441 -3486.1106299 24.7820630 862.6118110 -3454.4543307 -59.1915354 933.5732283 -3415.5685039 -149.7511024 1011.4633858 -3366.5039370 323.9303937 620.5811024 -3536.6956693 391.9251575 568.2669291 -3541.2771654 1136.5791339 0.0000000 -3567.1062992 -494.2866142 407.4118110 -3647.6562992 -515.3448819 439.5598425 -3660.5594488 -468.1704724 440.4169291 -3640.0759843 -468.8976378 499.6417323 -3644.7129921 -441.2003937 475.8196850 -3629.9940945 -445.8681102 530.8728346 -3634.3921260 -389.3521260 547.4862205 -3604.4393701 -402.7066929 591.8708661 -3610.8299213 -329.9383465 635.2181102 -3565.5641732 -354.6840945 663.4236220 -3578.3102362 -301.3686220 679.4858268 -3543.3110236 -302.8327559 744.9409449 -3535.9110236 -237.0373622 784.0299213 -3484.8803150 -485.7173228 439.4877953 -3624.7586614 -580.6366142 1251.0007874 -3078.5594488 -1375.8779528 2637.8488189 1665.6192913 -734.0811024 2137.3401575 2458.6940945 -664.5464567 2152.8948819 2475.8188976 -449.8015748 488.6133858 3609.7850394 -407.0169291 549.5633858 3587.9228346 -438.8476378 542.9688976 3626.8417323 -354.7129528 629.7251969 3551.8248031 -375.0929134 598.4905512 3565.8909449 391.9251575 568.2669291 3541.2771654 294.6187402 609.8476378 3505.8590551 375.6436614 545.7358268 3513.3968504 375.6436614 545.7358268 3513.3968504 -29.0906929 2254.6452756 2373.4456693 3628.8397638 -52.8891339 1226.7787402 1982.5212598 2342.5417323 1144.6090551 1912.5236220 2418.1917323 1106.3968504 3597.1885827 635.8062992 2076.8377953 1927.5452756 2408.5858268 1123.3818898 1916.5039370 2416.5877953 1112.1452756 3597.1885827 635.8062992 2076.8377953 2904.9893701 -25.9782992 2511.5988189 -28.6543937 2254.6877953 2373.2086614 9.5469803 2258.4200787 2352.4322835 -7.6626457 2329.3700787 2212.8027559 -579.2122047 2795.2755906 1524.4559055 976.6188976 2795.2755906 780.0763780 -581.4795276 2795.2740157 1525.5437008 -566.7543307 2783.3181102 1543.1803150 2912.9055118 0.0000000 2541.5437008 2903.6185039 -22.4590709 2509.5677165 2904.9893701 -25.9782992 2511.5988189 -579.2122047 2834.6456693 0.0000000 984.2519685 2834.6456693 -787.4015748 -579.2122047 2834.6456693 -1535.4330709 1962.3854331 2440.5472441 -1132.9838583 260.2005512 670.9712598 3525.3019685 3597.1885827 635.8062992 2076.8377953 2912.9055118 0.0000000 2541.5437008 2904.9893701 -25.9782992 2511.5988189 3626.1547244 681.9098425 2093.5614173 1962.3854331 2440.5472441 1132.9838583 3626.1547244 681.9098425 2093.5614173 3657.4944882 0.0000000 1251.8783465 -393.6994094 605.0039370 3605.2244094 -438.8476378 542.9688976 3626.8417323 -1379.0027559 2678.8263780 -1682.5271654 -748.8251969 2159.9291339 -2488.4090551 -1318.2106299 2699.4011811 1684.5464567 -501.0094488 458.8771654 -3654.3460630 13.8536811 740.5137795 -4136.2047244 17.2576969 691.1586614 -4119.6929134 15.1089291 694.7169291 -4109.5826772 1077.3153543 -31.0390354 -3702.7322835 208.0519685 662.3641732 -3515.4696850 166.3268898 695.8448819 -3505.4511811 121.8583071 731.9118110 -3492.7594488 76.7298031 768.9039370 -3477.8425197 31.5090945 806.3507874 -3460.9125984 -16.0905512 846.1681102 -3440.9956693 -63.8727165 886.5409449 -3418.8968504 -112.1138189 927.7031496 -3394.4858268 -140.1040551 951.7688976 -3379.3645669 249.0087795 629.8527559 -3523.4590551 289.8666929 597.7854331 -3529.5181102 329.4705512 567.0736220 -3533.4480315 368.4442913 537.2279528 -3535.3413386 1113.0984252 -31.0390354 -3561.1712598 -149.7511024 1011.4633858 -3366.5039370 -206.9804331 835.2000000 -3453.6027559 -268.8879528 731.4267717 -3515.2511811 -360.0083858 590.0787402 -3586.5007874 -415.4358268 510.8507874 -3618.2901575 24.7820630 862.6118110 -3454.4543307 -59.1915354 933.5732283 -3415.5685039 -16.0905512 846.1681102 -3440.9956693 106.8856693 794.4472441 -3486.1106299 76.7298031 768.9039370 -3477.8425197 180.6920079 734.2452756 -3508.9519685 121.8583071 731.9118110 -3492.7594488 253.9381496 675.5740157 -3526.0059055 208.0519685 662.3641732 -3515.4696850 323.9303937 620.5811024 -3536.6956693 289.8666929 597.7854331 -3529.5181102 391.9251575 568.2669291 -3541.2771654 329.4705512 567.0736220 -3533.4480315 1136.5791339 0.0000000 -3567.1062992 391.8415354 568.1523622 -3541.1330709 391.9251575 568.2669291 -3541.2771654 391.9251575 568.2669291 -3541.2771654 87.6907874 2293.6657480 -2333.1393701 1136.5791339 0.0000000 -3567.1062992 2912.9055118 -0.0000000 -2541.5437008 1113.0984252 -31.0390354 -3561.1712598 368.4442913 537.2279528 -3535.3413386 1136.5791339 0.0000000 -3567.1062992 1100.7964567 -0.0000000 -3708.6677165 1113.0984252 -31.0390354 -3561.1712598 1077.3153543 -31.0390354 -3702.7322835 1136.5791339 0.0000000 -3567.1062992 17.2576969 691.1586614 -4119.6929134 13.8536811 740.5137795 -4136.2047244 -112.1138189 927.7031496 -3394.4858268 -479.5905512 485.4685039 -3648.9468504 -433.7744094 510.7122047 -3602.8098425 -449.8137795 488.7185039 -3609.5881890 -692.2944882 2146.8330709 -2469.9877953 -1375.8779528 2637.8488189 -1665.6192913 -1305.2850394 2663.5653543 1671.3874016 -1296.3318898 2666.8271654 1672.1188976 -618.9444882 2162.4019685 2482.3566929 -393.6994094 605.0039370 3605.2244094 -354.7129528 629.7251969 3551.8248031 -384.6023622 619.1921260 3597.9807087 -375.0929134 598.4905512 3565.8909449 -461.9303150 1266.6354331 3109.1720472 260.2005512 670.9712598 3525.3019685 294.6187402 609.8476378 3505.8590551 1912.5236220 2418.1917323 -1106.3968504 976.6188976 2795.2755906 -780.0763780 1916.5039370 2416.5877953 -1112.1452756 1945.1007874 2405.0657480 -1102.3129921 1945.1007874 2405.0657480 1102.3129921 1945.1007874 2405.0657480 1102.3129921 3628.8397638 -52.8891339 1226.7787402 1912.5236220 2418.1917323 1106.3968504 3977.0393701 1231.9259843 914.4330709 3635.1606299 -61.9900000 1227.2220472 3981.2165354 1229.5129921 914.0468504 3657.4944882 0.0000000 1251.8783465 3628.8397638 -52.8891339 1226.7787402 -642.2011811 2794.1681102 1553.2023622 -579.2122047 2795.2755906 0.0000000 -579.2122047 2795.2755906 -1524.4559055 -627.9854331 2833.9921260 -1557.7803150 -627.9854331 2833.9921260 1557.7803150 2166.9582677 2322.4370079 -82.6774803 3996.7244094 1266.0212598 -944.8818898 3877.3893701 1334.9188976 -271.8713386 2166.9582677 2322.4370079 82.6774803 3877.3893701 1334.9188976 271.8713386 3996.7244094 1266.0212598 944.8818898 -21.7603583 2284.7019685 2401.0421260 3996.7244094 1266.0212598 944.8818898 1962.3854331 2440.5472441 1132.9838583 3657.4944882 0.0000000 1251.8783465 -384.6023622 619.1921260 3597.9807087 -1295.2854331 2711.1275591 0.0000000 -1178.8799213 2746.3173228 0.0000000 -1318.2106299 2699.4011811 -1684.5464567 -63.8727165 886.5409449 -3418.8968504 249.0087795 629.8527559 -3523.4590551 166.3268898 695.8448819 -3505.4511811 31.5090945 806.3507874 -3460.9125984 1120.4114173 -22.4590709 -3539.1027559 375.6111024 545.9196850 -3513.2681102 375.2861811 546.0118110 -3513.3854331 3626.1547244 681.9098425 -2093.5614173 2912.9055118 -0.0000000 -2541.5437008 2903.6185039 -22.4590709 -2509.5677165 378.9256299 578.1795276 -3540.8673228 -449.8137795 488.7185039 -3609.5881890 -479.5905512 485.4685039 -3648.9468504 -433.7744094 510.7122047 -3602.8098425 -463.6374016 507.8633858 -3640.4960630 -374.5260236 598.6212598 -3566.7259843 -373.2836614 600.4645669 -3565.9696850 -650.1531496 2155.9874016 -2478.4929134 -1296.3318898 2666.8271654 -1672.1188976 -1305.2850394 2663.5653543 -1671.3874016 -1220.5582677 2696.3346457 -0.0000000 -365.2174409 649.4259843 3582.5440945 -347.5346850 640.7267717 3546.8712598 251.4991732 644.8842520 3497.3822835 247.5532677 648.0905512 3496.6059055 251.4991732 644.8842520 3497.3822835 -692.9531496 2791.1385827 1573.0464567 -71.8438189 2250.4688976 2396.6972441 3628.8397638 -52.8891339 -1226.7787402 1982.5212598 2342.5417323 -1144.6090551 3597.1885827 635.8062992 -2076.8377953 1927.5452756 2408.5858268 -1123.3818898 3628.8397638 -52.8891339 -1226.7787402 1945.1007874 2405.0657480 -1102.3129921 1912.5236220 2418.1917323 -1106.3968504 3977.0393701 1231.9259843 -914.4330709 3635.1606299 -61.9900000 -1227.2220472 3981.2165354 1229.5129921 -914.0468504 3977.0393701 1231.9259843 914.4330709 3857.7043307 1300.8236220 -271.8713386 3977.0393701 1231.9259843 -914.4330709 3857.7043307 1300.8236220 271.8713386 2147.2732283 2288.3413386 -82.6774803 2147.2732283 2288.3413386 82.6774803 1927.5452756 2408.5858268 -1123.3818898 -7.6626457 2329.3700787 -2212.8027559 73.6679921 2263.3354331 -2310.2102362 -581.4795276 2795.2740157 -1525.5437008 3996.7244094 1266.0212598 944.8818898 3981.2165354 1229.5129921 914.0468504 3657.4944882 0.0000000 1251.8783465 3635.1606299 -61.9900000 1227.2220472 3996.7244094 1266.0212598 944.8818898 3657.4944882 0.0000000 1251.8783465 3628.8397638 -52.8891339 1226.7787402 3635.1606299 -61.9900000 1227.2220472 -701.0433071 2827.4795276 0.0000000 -700.4011811 2828.6232283 1584.3110236 3996.7244094 1266.0212598 -944.8818898 3657.4944882 -0.0000000 -1251.8783465 1962.3854331 2440.5472441 -1132.9838583 3996.7244094 1266.0212598 -944.8818898 3977.0393701 1231.9259843 914.4330709 3977.0393701 1231.9259843 -914.4330709 3996.7244094 1266.0212598 944.8818898 235.9734252 689.8606299 3522.3637795 257.3487402 673.1944882 3524.9559055 -626.2653543 2187.4417323 2509.8122047 -556.6452756 2202.6940945 2519.8744094 -626.3208661 2187.5759843 -2510.6208661 -1195.7362205 2740.8539370 -1688.6149606 -1194.2881890 2741.3437008 1688.6629921 -1195.7362205 2740.8539370 1688.6149606 375.6111024 545.9196850 -3513.2681102 72.0669685 2263.3240157 -2311.1437008 1120.4114173 -22.4590709 -3539.1027559 2903.6185039 -22.4590709 -2509.5677165 1982.5212598 2342.5417323 -1144.6090551 375.4472835 545.9661417 -3513.3275591 378.9256299 578.1795276 -3540.8673228 1962.3854331 2440.5472441 -1132.9838583 3657.4944882 -0.0000000 -1251.8783465 3626.1547244 681.9098425 -2093.5614173 2912.9055118 -0.0000000 -2541.5437008 3597.1885827 635.8062992 -2076.8377953 2904.9893701 -25.9782992 -2511.5988189 3626.1547244 681.9098425 -2093.5614173 2912.9055118 -0.0000000 -2541.5437008 2904.9893701 -25.9782992 -2511.5988189 2903.6185039 -22.4590709 -2509.5677165 -22.8393189 2284.1602362 -2399.1850394 -384.2070866 619.3685039 -3598.4188976 -379.4964173 625.9811024 -3595.9232283 -463.6374016 507.8633858 -3640.4960630 -438.7082677 542.8590551 -3627.2901575 -438.7082677 542.8590551 -3627.2901575 -374.5260236 598.6212598 -3566.7259843 -384.2070866 619.3685039 -3598.4188976 -373.2836614 600.4645669 -3565.9696850 -461.9299213 1266.6354331 -3109.1720472 -618.9795276 2162.4106299 -2482.4602362 -615.4354331 2163.1409449 -2482.9114173 -1276.5141732 2674.0468504 1673.7381890 -615.4114173 2163.1389764 2482.8633858 -574.8448819 2171.5960630 2488.6795276 -347.5346850 640.7267717 3546.8712598 -365.2174409 649.4259843 3582.5440945 -286.5844094 740.8291339 3493.7027559 -323.5946063 680.0448819 3525.9870079 19.9552795 1314.2964567 3073.9208661 247.5532677 648.0905512 3496.6059055 210.2841339 678.3736220 3489.2795276 257.3487402 673.1944882 3524.9559055 -112.0994882 2245.9519685 2415.0535433 -657.7468504 2793.5614173 1559.7803150 3597.1885827 635.8062992 -2076.8377953 2904.9893701 -25.9782992 -2511.5988189 3657.4944882 -0.0000000 -1251.8783465 3628.8397638 -52.8891339 -1226.7787402 3657.4944882 -0.0000000 -1251.8783465 3635.1606299 -61.9900000 -1227.2220472 3628.8397638 -52.8891339 -1226.7787402 3657.4944882 -0.0000000 -1251.8783465 3981.2165354 1229.5129921 -914.0468504 3635.1606299 -61.9900000 -1227.2220472 3996.7244094 1266.0212598 -944.8818898 3996.7244094 1266.0212598 -944.8818898 -642.2011811 2794.1681102 -1553.2023622 -700.4011811 2828.6232283 -1584.3110236 -814.1787402 2820.1877953 -1625.9952756 -814.1787402 2820.1877953 1625.9952756 -137.9396063 2271.3877953 2451.9354331 235.9734252 689.8606299 3522.3637795 210.2841339 678.3736220 3489.2795276 -1194.2881890 2741.3437008 -1688.6629921 -503.0913386 2212.8314961 2518.7196850 -1083.2948819 2775.2129921 -0.0000000 -589.3452756 2195.9204724 -2517.3251969 61.1445669 2262.5503937 -2318.8574803 -28.3601732 2254.8307087 -2373.7389764 375.4472835 545.9661417 -3513.3275591 -28.8030630 2254.7846457 -2373.9618110 375.2861811 546.0118110 -3513.3854331 344.4858661 570.1759843 -3511.5381890 257.2215354 673.4838583 -3523.9476378 -379.4964173 625.9811024 -3595.9232283 -312.4752756 697.4830709 -3517.6515748 -323.2307874 680.3228346 -3526.1976378 -354.8332677 629.9015748 -3551.3090551 -1176.6625984 2705.4905512 -1674.2027559 -560.3755906 2174.4862205 -2489.9192913 -1168.6708661 2710.7070866 0.0000000 -1184.4311024 2703.0448819 1674.1669291 -1176.6625984 2705.4905512 1674.2027559 -498.5669291 2186.3429134 2492.0716535 -332.0652362 701.1322835 3556.1448819 -278.9076772 784.0401575 3513.8149606 -323.5946063 680.0448819 3525.9870079 -286.5844094 740.8291339 3493.7027559 -340.9274016 1280.9728346 3123.9070866 112.9325197 759.5236220 3460.2220472 114.4705512 758.2413386 3460.6811024 -140.3738189 2242.3952756 2425.6161417 -659.8421260 2793.7476378 -0.0000000 -657.7468504 2793.5614173 -1559.7803150 -53.5724016 2281.5177165 -2417.5492126 -822.6043307 2820.3291339 0.0000000 114.4705512 758.2413386 3460.6811024 117.0996850 786.0929134 3489.3925197 -332.0652362 701.1322835 3556.1448819 -278.9076772 784.0401575 3513.8149606 -364.9285827 648.9531496 -3583.8940945 -426.6708661 2227.6732283 -2519.1665354 -395.0362205 2233.2858268 2516.3893701 -1071.1673228 2772.2326772 1676.4535433 -17.7763937 2255.9366142 -2368.4181102 344.4858661 570.1759843 -3511.5381890 257.2215354 673.4838583 -3523.9476378 -354.8332677 629.9015748 -3551.3090551 -323.2307874 680.3228346 -3526.1976378 -364.9285827 648.9531496 -3583.8940945 -331.6880709 701.3696850 -3556.4452756 -312.4752756 697.4830709 -3517.6515748 -340.9270472 1280.9728346 -3123.9070866 -1276.5141732 2674.0468504 -1673.7381890 -498.5535433 2186.2874016 -2491.7027559 -1184.4311024 2703.0448819 -1674.1669291 -495.2763780 2186.9791339 2492.2181102 -270.5911417 797.8492126 3505.7602362 -238.1896850 825.9397638 3442.1637795 -259.2232677 788.9484252 3464.5641732 117.0996850 786.0929134 3489.3925197 112.9325197 759.5236220 3460.2220472 105.5337008 765.8362205 3457.3078740 24.9163268 834.6169291 3425.5500000 -141.0820472 2242.3062992 2425.8807087 -198.2011417 2235.1208661 2447.2188976 -697.3192913 2790.8374016 1574.6917323 -698.9814961 2790.9877953 -0.0000000 -692.9531496 2791.1385827 -1573.0464567 -138.1326378 2271.2110236 -2451.1562992 -822.3492126 2818.8472441 -1627.8771654 -822.3492126 2818.8472441 1627.8771654 -173.0060630 2267.3692913 2467.2964567 -270.5911417 797.8492126 3505.7602362 -1071.1673228 2772.2326772 -1676.4535433 -379.2724016 2235.9452756 -2514.2393701 -502.9759843 2212.7791339 -2518.3031496 -242.4348425 847.6133858 3473.2980315 -1062.0448819 2778.9944882 0.0000000 -331.6880709 701.3696850 -3556.4452756 -100.1993701 2247.3251969 -2409.8570866 253.5208661 643.0248031 -3498.8299213 253.5208661 643.0248031 -3498.8299213 -272.1274803 795.2897638 -3507.2629921 -259.1012598 788.8610236 -3464.9358268 -244.8921654 813.1870079 -3450.9027559 -495.2594488 2186.9165354 -2491.7980315 -1175.5838583 2705.8311024 -1674.2082677 -1073.3665354 2737.1066929 0.0000000 -484.1114173 2189.1377953 2492.7145669 -1175.5838583 2705.8311024 1674.2082677 -259.2232677 788.9484252 3464.5641732 -238.1896850 825.9397638 3442.1637795 -242.4348425 847.6133858 3473.2980315 -219.5778346 858.6720472 3422.3433071 -219.2155118 1293.8169291 3122.8653543 105.5337008 765.8362205 3457.3078740 24.9163268 834.6169291 3425.5500000 113.7553937 788.8003937 3488.4649606 -20.5286063 874.2748031 3403.4047244 -256.2469685 2226.8141732 2462.7933071 -812.6417323 2780.1228346 1613.8417323 -756.8539370 2786.7385827 1597.1244094 -697.3192913 2790.8374016 -1574.6917323 -833.3114173 2819.6992126 0.0000000 113.7850394 788.7759843 3488.4736220 -1004.5952756 2788.9350394 -1669.8515748 -167.2903150 980.4535433 -3386.7263780 -242.4225197 847.7547244 -3473.1090551 -167.2943701 980.4185039 3386.6653543 -379.2846063 2235.9433071 2514.2405512 -1004.5952756 2788.9350394 1669.8515748 251.6163780 644.5921260 -3498.3582677 -140.4279921 2242.3665354 -2425.5031496 -141.1337008 2242.2795276 -2425.7775591 251.6163780 644.5921260 -3498.3582677 257.1210630 673.5622047 -3523.9330709 -259.1012598 788.8610236 -3464.9358268 -272.1274803 795.2897638 -3507.2629921 -174.5677953 942.5169291 -3366.6484252 -244.8921654 813.1870079 -3450.9027559 -265.3989370 807.1736220 -3499.5263780 -469.5515748 2191.8240157 -2492.5393701 -1062.1677165 2735.7685039 -1665.7578740 -1063.6460630 2735.4511811 -1665.9811024 -1053.3610236 2741.2003937 0.0000000 -167.2943701 980.4185039 3386.6653543 -219.5778346 858.6720472 3422.3433071 113.7850394 788.7759843 3488.4736220 -16.3394724 897.2059055 3436.1929134 -20.5286063 874.2748031 3403.4047244 -98.3900394 1304.9822835 3106.1614173 -797.8433071 2784.0145669 0.0000000 -756.8539370 2786.7385827 -1597.1244094 -204.5968504 2263.1098425 -2477.5712598 -946.8413386 2798.4141732 -1656.5500000 -946.8413386 2798.4141732 1656.5500000 -257.4305118 2254.9177165 2488.7972441 -363.4767323 2238.7019685 -2512.5972441 -150.0793307 1010.8515748 -3366.9385827 -265.3989370 807.1736220 -3499.5263780 -942.4208661 2800.2822835 -0.0000000 19.9559409 1314.2964567 -3073.9208661 -185.8985827 2236.7618110 -2443.1881890 257.1210630 673.5622047 -3523.9330709 219.4409843 703.0688976 -3518.6944882 -174.5677953 942.5169291 -3366.6484252 -242.4225197 847.7547244 -3473.1090551 -219.2150394 1293.8169291 -3122.8653543 -377.8780709 2207.9094488 -2486.2397638 -1055.4070866 2737.2200787 -1664.7381890 -441.3236220 2196.9295276 2491.5562992 -164.3916535 962.7633858 3351.9291339 -164.3916535 962.7633858 3351.9291339 -150.5169685 988.9334646 3334.2259843 -16.3394724 897.2059055 3436.1929134 113.7553937 788.8003937 3488.4649606 -16.8019291 897.5909449 3436.0070866 -16.8019291 897.5909449 3436.0070866 -79.5488189 925.7787402 3374.6437008 -27.1283543 880.0338583 3400.1885827 -258.0086220 2226.5622047 2463.2661417 -286.8523622 2222.4346457 2471.0051181 -817.6578740 2779.5283465 1615.3448819 -812.6417323 2780.1228346 -1613.8417323 116.8882677 786.9523622 -3485.7236220 -332.0174803 2243.9169291 2507.7925197 -27.7798622 907.6232283 -3426.9933071 -149.7515748 1011.4641732 -3366.5027559 -150.0793307 1010.8515748 -3366.9385827 -164.1526378 962.6177165 -3352.6082677 -167.2903150 980.4535433 -3386.7263780 -149.7554331 1011.4173228 3366.4444882 -228.0766535 2231.0125984 -2456.2547244 244.2912992 650.6212598 -3496.5452756 219.4409843 703.0688976 -3518.6944882 -164.1526378 962.6177165 -3352.6082677 -150.5169685 988.9334646 -3334.2259843 -374.9530709 2208.3842520 -2485.7996063 -377.6107480 2207.9527559 -2486.2000000 -937.8086614 2764.8444882 0.0000000 -1063.6460630 2735.4511811 1665.9811024 -377.8780709 2207.9094488 2486.2397638 -149.7554331 1011.4173228 3366.4444882 -150.5169685 988.9334646 3334.2259843 -27.8056811 906.9515748 3430.5913386 -27.1283543 880.0338583 3400.1885827 -79.5488189 925.7787402 3374.6437008 -27.8056811 906.9515748 3430.5913386 -933.7539370 2762.0846457 1644.4440945 -374.9615748 2208.3748031 2485.7519685 -857.6543307 2774.7850394 1627.3303150 -818.1393701 2781.2346457 -0.0000000 -817.6578740 2779.5283465 -1615.3448819 -257.2464173 2255.0216535 -2489.1783465 -149.7515748 1011.4641732 -3366.5027559 -150.5169685 988.9334646 -3334.2259843 -81.5541732 952.6736220 3404.1350394 244.2912992 650.6212598 -3496.5452756 162.8203150 717.6775591 -3476.3795276 -98.3894488 1304.9822835 -3106.1614173 162.8203150 717.6775591 -3476.3795276 116.8882677 786.9523622 -3485.7236220 -39.8934252 890.9173228 -3395.1866142 -317.5564961 2217.7003937 -2477.1606299 -936.4472441 2765.0307087 -0.0000000 -1055.4070866 2737.2200787 1664.7381890 -377.6114567 2207.9523622 2486.1952756 -149.7554331 1011.4173228 3366.4444882 -150.5169685 988.9334646 3334.2259843 -81.5541732 952.6736220 3404.1350394 -256.2059055 2226.8279528 -2462.8267717 42.2690157 847.9874016 -3461.7330709 111.6246850 791.2574803 -3484.0314961 -149.7515748 1011.4641732 -3366.5027559 -27.7798622 907.6232283 -3426.9933071 -39.8934252 890.9173228 -3395.1866142 -16.6206339 898.1232283 -3432.5279528 -150.5169685 988.9334646 -3334.2259843 102.6811024 768.4062992 -3455.5161417 114.4157087 758.5078740 -3459.5866142 -257.9807874 2226.5637795 -2463.2413386 114.4157087 758.5078740 -3459.5866142 -933.7539370 2762.0846457 -1644.4440945 -939.5708661 2761.1141732 -1645.7519685 -959.9720472 2757.7094488 -1650.3397638 -959.9720472 2757.7094488 1650.3397638 -939.5708661 2761.1141732 1645.7519685 -857.6543307 2774.7850394 -1627.3303150 111.6246850 791.2574803 -3484.0314961 42.2690157 847.9874016 -3461.7330709 102.6811024 768.4062992 -3455.5161417 -27.1363583 879.8909449 -3400.8972441 -16.6206339 898.1232283 -3432.5279528 67.9922047 797.6673228 -3443.4814961 67.9922047 797.6673228 -3443.4814961 -27.1363583 879.8909449 -3400.8972441 - - - - - - - - - - 0.9808871 0.1637156 0.1051555 0.9808871 0.1637156 0.1051555 0.9808871 0.1637156 0.1051555 -0.7504936 -0.5025821 0.4291509 -0.7487046 -0.5025840 0.4322624 -0.7504936 -0.5025821 0.4291509 -0.7487046 -0.5025840 0.4322623 -0.1039073 -0.5515487 -0.8276456 0.1079843 -0.5369546 -0.8366715 -0.1039073 -0.5515487 -0.8276456 0.3702037 -0.4832490 -0.7933597 0.2216280 -0.7750540 0.5917536 -0.2300610 -0.8878557 0.3984774 -0.2300610 -0.8878557 0.3984774 0.2216313 -0.7750524 0.5917545 -0.7469059 -0.5025795 0.4353682 -0.7469059 -0.5025795 0.4353682 -0.3172527 0.4975265 0.8073525 -0.3702037 0.4832489 0.7933598 0.1039072 0.5515485 0.8276458 0.6648085 -0.5515490 0.5038089 0.6648085 -0.5515490 0.5038089 0.6648085 -0.5515490 0.5038089 0.6648085 -0.5515490 0.5038089 0.4890717 -0.7593653 -0.4291542 0.4439288 -0.4601182 -0.7689073 0.4719423 -0.8586690 -0.1998947 0.4429980 -0.5087458 -0.7381941 0.4439288 -0.4601182 -0.7689073 0.4387103 -0.4622423 -0.7706266 0.4165868 -0.4711546 -0.7774759 0.4206389 -0.5259086 -0.7392449 0.6329200 -0.4443048 0.6340390 0.6329044 -0.4464407 0.6325525 -0.4814009 0.8234942 0.3001840 -0.4050124 0.5364670 0.7403837 -0.4439289 0.4601181 0.7689073 -0.4439289 0.4601181 0.7689073 -0.4334300 0.4643689 0.7723341 -0.1705616 0.0706100 -0.9828138 -0.1705616 0.0706100 -0.9828138 -0.1705616 0.0706100 -0.9828138 -0.6648087 0.5515485 -0.5038091 -0.6648087 0.5515485 -0.5038091 -0.6648087 0.5515485 -0.5038091 -0.6183442 -0.7783424 0.1087822 -0.5056216 -0.7857832 0.3562185 -0.4445653 -0.7708312 0.4562685 -0.6183442 -0.7783424 0.1087822 0.4336117 -0.9010998 -0.0000000 0.4890717 -0.7593653 0.4291542 0.4767911 -0.7907037 0.3840025 0.4719423 -0.8586690 0.1998947 0.4345018 -0.9006710 -0.0000000 0.4345018 -0.9006710 -0.0000000 0.4768097 -0.7899420 -0.3855440 0.4680985 -0.7947795 -0.3862762 0.4076737 -0.8327886 -0.3745201 0.3776387 -0.5532806 -0.7424753 0.4127348 -0.4729453 -0.7784425 0.6652743 -0.4168499 0.6193919 -0.3346646 0.1682533 -0.9271949 -0.3259617 0.1853043 -0.9270444 -0.3259617 0.1853043 -0.9270444 -0.3347369 0.1750397 -0.9259116 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.6866701 0.6275994 0.3668831 -0.4082729 0.4741958 0.7800331 -0.3836015 0.4832981 0.7869389 -0.4546748 0.8019394 0.3875101 -0.0106365 -0.4971113 0.8676216 -0.9006715 -0.4345007 0.0000000 -0.9006715 -0.4345007 0.0000000 -0.9006715 -0.4345007 0.0000000 -0.9006715 -0.4345007 0.0000000 -0.4445653 -0.7708312 -0.4562685 -0.0106365 -0.4971113 -0.8676216 -0.5056216 -0.7857832 -0.3562185 0.4439288 -0.4601182 0.7689073 0.3702037 -0.4832490 0.7933597 0.4429980 -0.5087458 0.7381941 0.1079843 -0.5369546 0.8366715 0.4439288 -0.4601182 0.7689073 0.4343981 -0.4639807 0.7720234 0.4166165 -0.4713490 0.7773422 0.4243345 -0.5233292 0.7389633 0.4680985 -0.7947805 0.3862743 0.4361789 -0.8135469 -0.3845638 0.4074184 -0.8332282 -0.3738195 0.3329974 -0.5787552 -0.7444160 0.3785993 -0.4867340 -0.7872437 0.3626733 -0.4916996 -0.7916436 0.6862167 -0.4330809 0.5844207 -0.3539736 0.1421819 -0.9243847 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6866693 -0.6275994 -0.3668845 0.6944932 -0.3759064 -0.6134930 0.6866693 -0.6275994 -0.3668845 0.9638801 -0.1087165 -0.2431377 0.0027201 -0.5024900 0.8645787 0.0027201 -0.5024900 0.8645787 0.0027201 -0.5024900 0.8645787 0.0027201 -0.5024900 0.8645787 -0.5916499 -0.1931381 -0.7827184 -0.5802436 -0.1704476 -0.7964075 -0.5769784 -0.1688397 -0.7991177 -0.5632289 -0.1536282 -0.8118938 -0.5552758 -0.1355526 -0.8205451 -0.5389687 -0.1108388 -0.8350015 -0.5306374 -0.0967299 -0.8420613 -0.5077957 -0.0591953 -0.8594414 -0.5032209 -0.0548845 -0.8624132 -0.4823401 -0.0306755 -0.8754467 -0.4650773 -0.0032701 -0.8852640 -0.4418913 0.0305594 -0.8965480 -0.4243350 0.0523441 -0.9039911 -0.3909723 0.0997100 -0.9149856 -0.3779659 0.1109838 -0.9191433 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 0.5964152 0.7883915 0.1507572 -0.5939099 -0.2087275 -0.7769838 -0.5923648 -0.2126068 -0.7771115 0.7058937 -0.4112919 0.5766741 0.7211202 -0.4057266 0.5615795 -0.3770720 0.5527605 0.7431504 -0.4814009 0.8234942 -0.3001840 -0.4122558 0.9110681 0.0001302 -0.4548554 0.8018311 -0.3875223 -0.4217056 0.8254182 0.3752988 -0.6183442 -0.7783424 -0.1087822 -0.6183442 -0.7783424 -0.1087822 0.6648085 -0.5515490 -0.5038089 0.6648085 -0.5515490 -0.5038089 0.6648085 -0.5515490 -0.5038089 0.6648085 -0.5515490 -0.5038089 -0.1039073 -0.5515487 0.8276456 -0.1039073 -0.5515487 0.8276456 0.2216280 -0.7750540 -0.5917536 -0.2300610 -0.8878557 -0.3984774 0.2216313 -0.7750524 -0.5917545 -0.2300610 -0.8878557 -0.3984774 0.6400218 -0.4372686 -0.6317977 0.6406023 -0.4370368 -0.6313696 0.3936743 -0.4807899 0.7834932 0.3683848 -0.5593388 0.7425852 0.4076737 -0.8327886 0.3745201 0.4295929 -0.9030227 -0.0000000 0.4097643 -0.9121914 0.0000000 0.3618633 -0.9322312 0.0000000 0.3166229 -0.5883803 -0.7440151 0.7364991 -0.3436038 0.5826710 0.3331456 -0.5005855 -0.7990170 -0.5890419 -0.1873949 -0.7860743 0.4379212 -0.1169871 -0.8913692 -0.5964151 -0.7883915 -0.1507579 -0.7725817 -0.6322290 -0.0583445 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.5964151 -0.7883915 -0.1507579 -0.8608374 -0.5088656 0.0038385 -0.4089685 0.0710502 -0.9097783 -0.4655025 0.0066014 -0.8850219 -0.5097713 -0.0835032 -0.8562479 -0.5488751 -0.1254077 -0.8264436 -0.9786663 -0.1226444 0.1648354 0.3321236 -0.0778025 -0.9400216 0.3472760 -0.0993144 -0.9324891 0.3723766 -0.1110889 -0.9214092 0.3765137 -0.1134691 -0.9194358 0.1629715 -0.3029099 0.9389813 0.5367805 -0.5313933 0.6553532 0.1629715 -0.3029099 0.9389813 0.1629715 -0.3029099 0.9389813 0.7643511 -0.6151734 0.1932074 0.5367807 -0.5313922 0.6553539 0.7643511 -0.6151734 0.1932074 -0.0884386 -0.7515067 0.6537708 -0.4470726 -0.5539174 0.7023543 -0.4470726 -0.5539174 0.7023543 -0.0884399 -0.7515062 0.6537712 0.3974056 0.5717972 0.7177163 0.3980532 0.8469344 0.3524992 0.3122157 0.7461788 0.5879954 0.4106626 0.5704604 0.7112884 0.2684868 0.5578223 0.7853337 0.1122120 0.1035103 -0.9882783 0.1131613 0.1033699 -0.9881848 0.1108862 0.1051065 -0.9882595 0.1131613 0.1033699 -0.9881848 0.1178376 0.1017303 -0.9878083 0.1238729 0.0907094 -0.9881434 0.1394921 0.0744882 -0.9874176 0.1666035 0.0550159 -0.9844880 0.1975074 0.0336727 -0.9797229 0.2093965 0.0214028 -0.9775966 0.2268809 0.0069487 -0.9738977 0.2518609 -0.0131323 -0.9676744 0.2747422 -0.0360739 -0.9608410 0.2955860 -0.0478087 -0.9541191 0.3257719 -0.0704603 -0.9428192 -0.3121002 0.5068114 0.8035768 -0.3904552 0.9206219 0.0001226 -0.4217448 0.8256003 -0.3748540 -0.4134972 0.5300523 -0.7403139 -0.3755133 0.8462966 0.3778515 -0.1705616 0.0706100 0.9828138 -0.1705616 0.0706100 0.9828138 -0.1705616 0.0706100 0.9828138 -0.3702037 0.4832489 -0.7933598 -0.4439289 0.4601181 -0.7689073 -0.3172527 0.4975265 -0.8073525 -0.4439289 0.4601181 -0.7689073 -0.4302095 0.4657475 -0.7733040 0.4361789 -0.8135469 0.3845638 -0.7469059 -0.5025795 -0.4353682 -0.7487046 -0.5025840 -0.4322624 -0.7469059 -0.5025795 -0.4353682 -0.7487046 -0.5025840 -0.4322623 0.9808871 0.1637156 -0.1051555 0.9808871 0.1637156 -0.1051555 0.9808871 0.1637156 -0.1051555 -0.7504936 -0.5025821 -0.4291509 -0.7504936 -0.5025821 -0.4291509 0.6901867 -0.3788978 -0.6165053 -0.3259617 0.1853043 0.9270444 -0.3355818 0.1662784 0.9272197 -0.3259617 0.1853043 0.9270444 -0.3309274 0.1795080 0.9264253 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 -0.6866701 0.6275993 -0.3668832 0.3495830 -0.4978769 0.7936689 0.3399146 -0.5761705 0.7432938 0.4073727 -0.8332316 0.3738617 0.3327631 -0.9430105 -0.0000000 0.7387141 -0.3282009 0.5887152 0.2958739 -0.5122495 -0.8062624 0.3111531 -0.5067925 -0.8039559 0.1629720 -0.3029091 0.9389815 0.3074796 -0.0595833 -0.9496874 0.2560944 -0.0089442 -0.9666104 0.1745333 0.0553909 -0.9830921 0.8989463 -0.1332091 -0.4173139 0.8989463 -0.1332091 -0.4173139 0.8989463 -0.1332091 -0.4173139 -0.3248441 -0.7439423 -0.5839745 -0.4022718 -0.5716386 -0.7151271 -0.3249237 -0.7515776 -0.5740695 -0.3320794 -0.7219295 -0.6070758 -0.4024750 -0.5717108 -0.7149550 -0.4106625 -0.5704604 -0.7112884 -0.1695237 -0.5413314 -0.8235424 -0.3708359 -0.5683385 -0.7344876 0.2852305 -0.8213246 0.4940338 0.2852305 -0.8213246 0.4940338 0.0968836 0.9697456 0.2240692 0.1960447 0.9668764 0.1634517 0.2591998 0.7417704 0.6185404 0.0476437 0.5131563 0.8569718 -0.3009683 0.5991924 0.7418804 -0.3225127 0.5890489 -0.7409500 -0.3396315 0.9405586 0.0000000 0.1039072 0.5515485 -0.8276458 -0.6648087 0.5515485 0.5038091 -0.6648087 0.5515485 0.5038091 -0.6648087 0.5515485 0.5038091 0.6695709 -0.4062947 -0.6217712 0.0027201 -0.5024900 -0.8645787 0.0027201 -0.5024900 -0.8645787 0.0027201 -0.5024900 -0.8645787 0.0027201 -0.5024900 -0.8645787 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6866694 -0.6275993 0.3668846 0.6973004 -0.3744371 0.6112029 0.6866694 -0.6275993 0.3668846 0.9638696 -0.1087710 0.2431547 -0.3433916 0.1436098 0.9281479 -0.5872008 -0.1861928 0.7877357 -0.5891100 -0.1901600 0.7853589 -0.5693122 -0.1596177 0.8064774 -0.5925016 -0.2091204 0.7779527 -0.5909851 -0.2125647 0.7781727 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 0.5964152 0.7883915 -0.1507573 -0.3701455 0.1238396 0.9206824 -0.3783125 0.1101309 0.9191033 -0.4041369 0.0771842 0.9114362 -0.4291300 0.0501530 0.9018493 -0.4363356 0.0491546 0.8984403 -0.4569039 0.0155161 0.8893807 -0.4756435 -0.0138782 0.8795286 -0.4874560 -0.0319097 0.8725643 -0.5149769 -0.0693092 0.8543975 -0.5166308 -0.0740801 0.8529975 -0.5292284 -0.1020676 0.8423179 -0.5446747 -0.1200348 0.8300128 -0.5578612 -0.1472148 0.8167733 0.7198784 -0.3708202 -0.5867431 0.3332879 -0.5010957 0.7986377 0.3817499 -0.8450171 -0.3744504 0.3150675 -0.5906615 -0.7428671 0.2695725 -0.6137027 -0.7420914 0.7481179 -0.3244327 0.5788463 0.7723948 -0.3445424 0.5335698 0.7518524 -0.3369201 0.5667476 0.2489370 -0.5269561 -0.8126178 0.2488699 -0.5280148 -0.8119508 -0.4792846 -0.5183303 0.7082513 -0.4902713 -0.5053220 0.7101294 -0.4799908 -0.5238828 0.7036730 -0.3871685 -0.5733538 -0.7220567 -0.2606016 -0.7459156 -0.6129411 -0.7659812 -0.5131564 0.3872252 -0.7659812 -0.5131564 0.3872252 -0.4519360 -0.8896994 0.0647204 -0.7659812 -0.5131564 0.3872252 -0.7659812 -0.5131564 0.3872252 -0.5570385 -0.8304233 -0.0102589 -0.0476436 -0.5131564 -0.8569717 -0.0476436 -0.5131564 -0.8569717 -0.2626079 -0.7485615 -0.6088454 -0.2903414 -0.7489267 -0.5956598 -0.1985238 -0.8808709 -0.4297149 -0.1050058 -0.9698422 -0.2199541 -0.1960447 -0.9668764 -0.1634516 -0.0940473 -0.9696864 -0.2255292 -0.1946711 -0.8798988 -0.4334528 -0.9182392 -0.1449926 0.3685295 -0.9182392 -0.1449926 0.3685295 -0.9182392 -0.1449926 0.3685295 -0.0289205 0.9995817 0.0000000 0.1960447 0.9668764 -0.1634517 0.0968613 0.9696608 -0.2244458 0.3980532 0.8469344 -0.3524992 0.3590626 0.5749046 0.7352270 0.7009806 -0.5872248 0.4047137 0.7513704 -0.5837146 0.3077658 0.7513704 -0.5837146 0.3077658 0.7009807 -0.5872248 0.4047137 0.7659812 0.5131565 -0.3872251 0.7659812 0.5131565 -0.3872251 0.7659812 0.5131565 -0.3872251 -0.2837107 0.5151488 0.8087830 -0.3107499 0.5064392 0.8043344 -0.3752470 0.8466606 -0.3773004 -0.2741225 0.6115778 -0.7421788 -0.3098848 0.8834155 0.3514947 -0.3969987 0.4787972 -0.7830359 -0.9786663 -0.1226444 -0.1648354 -0.8608372 -0.5088659 -0.0038383 -0.7725817 -0.6322290 0.0583445 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 -0.5964150 -0.7883915 0.1507579 0.4387463 -0.1205613 0.8904868 -0.5740886 -0.1776106 0.7992977 -0.5518243 -0.1257182 0.8244301 -0.4960666 -0.0571134 0.8664041 -0.4601547 0.0145058 0.8877202 0.3321867 -0.0784525 0.9399453 0.3686992 -0.1098238 0.9230383 0.3436871 -0.0895043 0.9348092 0.2949970 -0.0467719 0.9543528 0.3010469 -0.0511266 0.9522378 0.2515678 -0.0131393 0.9677505 0.2712421 -0.0312454 0.9620039 0.2056807 0.0230981 0.9783465 0.2234445 0.0079305 0.9746844 0.1574194 0.0606275 0.9856690 0.1703207 0.0532481 0.9839489 0.1177331 0.0948765 0.9885026 0.1314083 0.0787558 0.9881950 -0.0884390 -0.7515048 -0.6537730 -0.1620949 -0.7240580 -0.6704217 -0.4441497 -0.5549888 -0.7033623 0.4111623 0.5703874 -0.7110582 0.3065393 0.7456341 -0.5916616 0.4106626 0.5704604 -0.7112884 0.2684868 0.5578223 -0.7853337 0.1131613 0.1033699 0.9881848 0.1175744 0.1000004 0.9880163 0.1131613 0.1033699 0.9881848 0.5367770 -0.5313996 -0.6553510 0.7643511 -0.6151734 -0.1932074 0.5367766 -0.5313993 -0.6553515 0.7643511 -0.6151734 -0.1932074 0.1629928 -0.3028805 -0.9389871 0.1629928 -0.3028805 -0.9389871 0.3789648 -0.1275135 0.9165839 0.7343661 -0.3781916 -0.5636289 0.3273734 -0.5019685 0.8005338 0.3437389 -0.4963429 0.7971746 0.3060051 -0.5959190 0.7424564 0.3817459 -0.8449435 0.3746204 0.3450827 -0.8665642 -0.3605337 0.3445490 -0.8669771 -0.3600509 0.2382028 -0.6287132 -0.7402562 0.8162123 -0.3319678 0.4728581 0.8227000 -0.3141612 0.4737800 0.8337276 -0.3108839 0.4563437 0.8277351 -0.3310793 0.4530354 0.2215927 -0.5320242 -0.8172190 -0.5168348 -0.5313000 0.6712691 -0.3707524 -0.5750618 -0.7292781 -0.4519360 -0.8896994 -0.0647204 -0.1960447 -0.9668764 0.1634516 -0.5570385 -0.8304233 0.0102589 -0.4340372 -0.9008949 -0.0000000 -0.4340372 -0.9008949 -0.0000000 -0.1940731 -0.1817582 -0.9640019 -0.1940731 -0.1817582 -0.9640019 -0.1940731 -0.1817582 -0.9640019 -0.0470787 0.0778295 -0.9958545 -0.1940731 -0.1817582 -0.9640019 0.0023327 0.1619267 -0.9868000 0.6422140 -0.5837175 0.4968251 0.6422140 -0.5837175 0.4968251 -0.0723342 -0.9696295 -0.2336371 0.0096965 -0.9999530 0.0002570 -0.1119628 -0.9656477 0.2344970 0.0511875 0.9681591 -0.2450466 0.0509770 0.9683146 0.2444754 0.5000000 0.8660254 0.0000000 0.5000000 0.8660254 0.0000000 0.5000000 0.8660254 0.0000000 0.5000000 0.8660254 0.0000000 0.5000000 0.8660254 0.0000000 0.5000000 0.8660254 0.0000000 0.1958593 0.7424144 0.6406715 0.1940731 0.1817582 0.9640019 0.1940731 0.1817582 0.9640019 0.1940731 0.1817582 0.9640019 -0.1919710 0.5406880 0.8190260 -0.2897559 0.9571004 0.0006106 -0.2897615 0.9570987 0.0005901 -0.3105194 0.8830220 -0.3519231 0.3563250 -0.1011977 0.9288657 0.1876075 0.0344534 0.9816396 0.2470748 -0.0040910 0.9689878 0.3053469 -0.0724817 0.9494786 -0.0884376 -0.7515052 -0.6537727 -0.2292227 -0.6913893 -0.6851553 -0.2401223 -0.6871288 -0.6857079 0.0476437 0.5131563 -0.8569718 0.2852305 -0.8213246 -0.4940338 0.2852305 -0.8213246 -0.4940338 0.3958353 0.5721754 -0.7182825 0.7494155 -0.3665470 -0.5513799 -0.3711551 0.4878997 -0.7900619 0.7604611 -0.3269956 -0.5610462 0.7569865 -0.3384748 -0.5589331 0.2761966 -0.5183542 0.8093357 0.2611721 -0.5220891 0.8119188 0.2482511 -0.6232355 0.7415854 0.3446064 -0.8669065 0.3601661 0.3450638 -0.8665012 0.3607030 0.2987614 -0.9543278 0.0000000 0.8291230 -0.2926985 0.4763220 0.2286711 -0.5294807 -0.8169209 -0.5497400 -0.5180077 0.6553274 -0.5493028 -0.5203003 0.6538762 -0.3227359 -0.5799629 -0.7479870 -0.0274347 -0.9680138 -0.2493925 -0.2375812 -0.7428869 -0.6258388 -0.7659812 -0.5131564 -0.3872252 -0.7659812 -0.5131564 -0.3872252 -0.7659812 -0.5131564 -0.3872252 -0.7659812 -0.5131564 -0.3872252 -0.1940731 -0.1817582 0.9640019 -0.1940731 -0.1817582 0.9640019 -0.1940731 -0.1817582 0.9640019 -0.0470787 0.0778295 0.9958545 -0.1940731 -0.1817582 0.9640019 0.0023327 0.1619267 0.9868000 -0.4999999 -0.8660255 -0.0000000 -0.4999999 -0.8660255 -0.0000000 -0.4999999 -0.8660255 -0.0000000 -0.4999999 -0.8660255 -0.0000000 -0.4999999 -0.8660255 -0.0000000 -0.4999999 -0.8660255 -0.0000000 -0.3320794 -0.7219296 0.6070758 -0.1993871 -0.8809818 0.4290872 -0.3248331 -0.7439347 0.5839902 -0.0940505 -0.9696843 0.2255369 0.2506692 0.5602956 -0.7894515 0.9480615 -0.2871921 -0.1367487 0.9480615 -0.2871921 -0.1367487 0.9480615 -0.2871921 -0.1367487 0.9480615 -0.2871921 -0.1367487 -0.3802028 -0.2203083 0.8982818 -0.3802028 -0.2203083 0.8982818 -0.3802028 -0.2203083 0.8982818 -0.0592940 0.9982406 0.0000000 0.0201342 0.9678220 0.2508289 0.1940731 0.1817582 -0.9640019 0.1940731 0.1817582 -0.9640019 0.1940731 0.1817582 -0.9640019 0.8660241 -0.5000023 0.0000000 0.8660241 -0.5000023 0.0000000 0.8660241 -0.5000023 0.0000000 0.8660241 -0.5000023 0.0000000 0.3341983 0.5774936 0.7448575 0.3591089 0.5749343 0.7351812 -0.2441537 0.6266131 0.7400979 -0.1697745 0.6571826 0.7343621 -0.2724870 0.6124374 -0.7420723 -0.3077262 0.8835856 -0.3529603 -0.2641634 0.8973462 0.3535358 -0.3095669 0.8832593 0.3521666 -0.4133228 -0.5704220 0.7097767 -0.3346384 -0.7523160 0.5674837 -0.4106625 -0.5704604 0.7112884 -0.1695237 -0.5413314 0.8235424 -0.3708359 -0.5683385 0.7344876 0.0029432 -0.7825080 -0.6226335 -0.4661545 -0.5332849 -0.7059088 0.7659812 0.5131565 0.3872251 0.7659812 0.5131565 0.3872251 0.7659812 0.5131565 0.3872251 0.7513704 -0.5837146 -0.3077658 0.7009806 -0.5872248 -0.4047137 0.7513704 -0.5837146 -0.3077658 0.7009807 -0.5872248 -0.4047137 -0.9182392 -0.1449926 -0.3685295 -0.9182392 -0.1449926 -0.3685295 -0.9182392 -0.1449926 -0.3685295 0.2914265 0.7469337 -0.5976292 -0.2919619 0.5126658 -0.8074231 -0.2671501 0.5198917 -0.8113837 -0.2919619 0.5126658 -0.8074231 -0.2919619 0.5126658 -0.8074231 0.7713476 -0.3172301 -0.5517136 0.7969120 -0.3544170 -0.4892033 0.7882311 -0.3770901 -0.4863073 0.8228971 -0.3336790 -0.4598899 0.2213171 -0.5326902 0.8168598 0.2248715 -0.6326792 0.7410464 0.2259532 -0.6337652 0.7397884 0.3195633 -0.8761974 -0.3607733 0.2373643 -0.6300268 -0.7394082 0.1931911 -0.6477022 -0.7369933 0.8293926 -0.2973674 0.4729488 -0.1890827 0.5396478 0.8203828 0.1606283 -0.5453242 -0.8226907 0.1745281 -0.5426616 -0.8216193 -0.2249359 -0.5823255 -0.7812175 -0.3280219 -0.5834471 -0.7429610 -0.3129384 -0.5832593 -0.7495853 -0.5271236 -0.5494804 0.6482376 -0.1837779 -0.7392624 -0.6478555 -0.0427166 -0.9682698 -0.2462292 -0.0476436 -0.5131564 0.8569717 -0.0476436 -0.5131564 0.8569717 0.6422140 -0.5837175 -0.4968251 0.6422140 -0.5837175 -0.4968251 -0.3802028 -0.2203083 -0.8982818 -0.3802028 -0.2203083 -0.8982818 -0.3802028 -0.2203083 -0.8982818 0.9480615 -0.2871921 0.1367487 0.9480615 -0.2871921 0.1367487 0.9480615 -0.2871921 0.1367487 0.9480615 -0.2871921 0.1367487 0.2506692 0.5602956 0.7894515 -0.0724926 -0.9696268 0.2335993 0.0204434 0.9679137 -0.2504500 -0.0416634 0.9578134 -0.2843549 -0.0413550 0.9578411 0.2843065 0.1952550 0.7425989 0.6406421 -0.5558370 -0.5556607 0.6182932 -0.5786181 -0.5104417 0.6361214 -0.2647000 0.8959449 -0.3566743 -0.1127406 0.6788008 0.7256163 -0.2318091 0.9727613 -0.0000000 -0.1964872 0.6457087 -0.7378706 -0.3305452 -0.7451627 0.5791999 -0.2396053 -0.7497637 0.6168012 -0.4173280 -0.5704020 0.7074454 -0.2368797 -0.7443332 0.6243846 -0.4127972 -0.5708678 0.7097242 -0.4849390 -0.5153287 -0.7065907 0.3466791 0.5776683 -0.7389946 0.8198828 -0.3397188 -0.4608507 0.1880632 -0.5386819 0.8212515 0.2025355 -0.5353290 0.8200013 0.2025355 -0.5353290 0.8200013 0.2829062 -0.8949519 0.3450003 0.1805638 -0.6524846 0.7359759 0.2678932 -0.9634486 0.0000427 0.2832989 -0.8945515 -0.3457157 0.2827053 -0.8947195 -0.3457670 0.1607779 -0.6609016 -0.7330481 0.8405606 -0.2967096 0.4532342 0.8718433 -0.3213528 0.3696236 0.8485425 -0.2989721 0.4365676 0.8742431 -0.3256195 0.3600986 0.1086241 -0.5558010 -0.8241881 -0.2381531 -0.5815583 -0.7778644 -0.2534803 -0.5810236 -0.7734076 -0.1524636 -0.7386128 -0.6566628 0.0444888 -0.9990098 0.0002812 -0.0419158 -0.9685461 0.2452786 0.2405006 0.7407573 -0.6272465 -0.0588927 0.9982643 0.0000000 -0.6089953 -0.5362127 0.5844661 0.2579246 0.5825809 0.7707622 -0.1865310 0.5389778 0.8214068 -0.1729918 0.5422125 0.8222405 -0.1776175 0.5422186 -0.8212496 -0.0861742 0.6878273 -0.7207410 -0.0609606 0.6937782 0.7176041 -0.1995553 0.9247910 0.3239434 -0.2653091 -0.7528646 0.6023337 -0.3937104 -0.5727564 0.7189870 -0.5042063 -0.5126803 -0.6949352 0.8432356 -0.3081747 -0.4404340 0.8420205 -0.3041034 -0.4455587 0.8437281 -0.3055314 -0.4413315 0.8425560 -0.3014736 -0.4463329 0.8482156 -0.3056346 -0.4325711 0.1086621 -0.5561525 0.8239460 0.3195660 -0.8762122 0.3607350 0.1480003 -0.6650536 0.7319833 0.2830095 -0.8948298 0.3452322 0.1604623 -0.6613731 -0.7326920 0.8925410 -0.3135675 0.3241079 0.0973678 -0.5571917 -0.8246556 0.0975685 -0.5555192 -0.8257596 -0.6092770 -0.5465564 0.5745064 -0.6348494 -0.5239064 0.5678806 -0.1849011 -0.5822641 -0.7916945 -0.1692886 -0.5838201 -0.7940374 -0.1527042 -0.7384402 -0.6568010 -0.1205385 -0.7308842 -0.6717728 -0.0272723 -0.9680320 -0.2493395 0.0705901 -0.9975053 0.0003847 -0.0275891 -0.9681271 0.2489351 0.1692933 0.7388660 -0.6522399 -0.0881412 0.9527844 -0.2905736 -0.0883702 0.9525567 0.2912498 0.1404209 0.7323145 0.6663314 -0.1077898 0.5561068 0.8240914 -0.1996512 0.9246170 -0.3243805 -0.0478198 0.6973471 -0.7151366 -0.1389423 0.6685780 -0.7305467 -0.0510323 0.5653357 0.8232808 -0.1760948 0.9843732 0.0000000 -0.1748916 0.5420486 -0.8219466 -0.2044050 -0.7399117 0.6408973 -0.3415799 -0.5773917 0.7415808 -0.5296592 -0.5004169 -0.6848679 0.8863724 -0.3167949 -0.3376166 0.1276441 -0.5505046 0.8250161 0.1132120 -0.5535267 0.8251008 0.1488032 -0.6659478 0.7310069 0.2570603 -0.9023840 0.3458656 0.2325252 -0.9725904 0.0000577 0.1276674 -0.6729401 -0.7285964 0.2560354 -0.9023573 -0.3466946 0.8959727 -0.3092770 0.3187171 0.8919137 -0.3049546 0.3339050 0.8945976 -0.3003488 0.3308862 0.8973208 -0.2932457 0.3298822 -0.0030478 -0.5720366 -0.8202224 -0.6538822 -0.5137036 0.5554698 -0.6636355 -0.5264896 0.5314100 -0.6363696 -0.5321449 0.5584403 -0.1238669 -0.5851447 -0.8014130 -0.0798912 -0.7265915 -0.6824091 0.0327952 -0.9618897 -0.2714639 0.0060767 -0.9638016 -0.2665511 -0.0272823 -0.9680232 0.2493727 -0.1170832 0.9931221 0.0000000 0.2562396 0.5837099 0.7704700 -0.1514839 0.9353902 -0.3195275 -0.0475278 0.5638815 -0.8244870 -0.0527581 0.5651185 -0.8233211 -0.0466398 0.5642461 0.8242882 -0.0228923 0.7047587 0.7090777 -0.1517086 0.9354021 0.3193861 -0.2901508 -0.5814542 0.7600813 -0.1637137 -0.7389845 0.6535287 -0.1628991 -0.7395709 0.6530687 -0.5637621 -0.4837116 -0.6694740 0.3474050 0.5804604 -0.7364615 0.8871521 -0.3242710 -0.3283436 -0.1555031 0.5480680 -0.8218517 0.0428887 -0.5659589 0.8233172 0.8956803 -0.2919755 -0.3354209 0.8950985 -0.3004947 -0.3293958 0.1048400 -0.6797026 0.7259566 0.1541107 -0.9375213 0.3119354 0.1902111 -0.9254547 0.3276481 0.2017083 -0.9794456 0.0000256 0.9087769 -0.3307134 0.2544663 0.1057374 -0.5638163 -0.8191036 -0.6116495 -0.5511142 0.5675897 -0.6758498 -0.5522013 0.4881606 -0.6993757 -0.5409070 0.4672187 -0.1160151 -0.5808450 -0.8057044 0.1031446 -0.9946663 0.0003956 0.0068279 -0.9640184 0.2657479 0.1138643 0.7276247 -0.6764593 -0.0898236 0.9529655 -0.2894625 -0.0893782 0.9530740 0.2892428 0.0679809 0.7253383 0.6850278 0.0027980 0.7077707 -0.7064367 -0.0372130 0.5661773 -0.8234430 -0.0527189 0.5656023 -0.8229914 -0.1750554 0.9845586 0.0000000 -0.2285973 -0.5827419 0.7798430 -0.1394132 -0.7344209 0.6642213 -0.5105849 -0.5198113 -0.6849082 0.3241191 0.5817548 -0.7459947 0.9083817 -0.3145954 -0.2754494 0.9002021 -0.2828506 -0.3311067 -0.0032552 -0.5715709 0.8205462 0.0345842 -0.6989977 0.7142872 0.1548857 -0.9376183 0.3112592 0.0796897 -0.6902894 -0.7191315 0.9122826 -0.3340227 0.2370008 0.0182987 -0.5668502 -0.8236176 -0.0151832 -0.5719764 -0.8201295 0.1674791 0.5839901 0.7942961 0.2416839 0.5876795 0.7721540 0.1525968 0.5836263 0.7975554 -0.6815175 -0.5565998 0.4751112 -0.0969421 -0.5779820 -0.8102710 -0.1103372 -0.5779627 -0.8085696 -0.0786157 -0.7273704 -0.6817271 -0.0464733 -0.7189705 -0.6934852 0.0327091 -0.9618850 -0.2714909 0.0324039 -0.9620426 0.2709687 0.2254719 0.5835148 -0.7801749 0.0286292 0.7150702 0.6984661 0.0914383 0.5794972 -0.8098284 0.0546859 0.5772981 -0.8147001 0.9140140 -0.3371684 -0.2256011 0.9157292 -0.3224764 -0.2396853 0.9062930 -0.3283479 -0.2661216 -0.0013412 0.5710571 0.8209093 -0.0851599 -0.7263197 0.6820612 -0.5546316 -0.5082812 -0.6588126 -0.5749692 -0.5250361 -0.6274930 -0.0058104 -0.5706082 0.8212019 -0.0350337 -0.5747037 0.8176114 0.0097580 -0.7070182 0.7071280 0.0086519 -0.7054335 0.7087233 0.1672855 -0.9859078 0.0011707 0.1913530 -0.9247138 -0.3290721 0.0248321 -0.7085298 -0.7052439 0.9092338 -0.3436230 0.2349831 0.9155418 -0.3396804 0.2154075 0.0966348 0.5808823 0.8082311 -0.6991229 -0.5422611 0.4660258 -0.7091723 -0.5428887 0.4498294 -0.6969554 -0.5459383 0.4649780 0.0930616 -0.9519686 -0.2917112 -0.0044789 -0.7111984 -0.7029770 0.0667620 -0.9554427 -0.2875276 0.1359925 -0.9907099 0.0000089 0.0327254 -0.9618716 0.2715364 0.0432923 0.7190936 -0.6935634 0.9164670 -0.3379584 -0.2141783 0.9202069 -0.3307689 -0.2093111 0.0851217 0.5794083 0.8105802 -0.2910137 -0.5819376 0.7593811 -0.2756413 -0.5820522 0.7650079 -0.1154825 -0.5801778 0.8062614 -0.6027036 -0.4954855 -0.6254938 -0.6135176 -0.5006483 -0.6106942 -0.1255510 -0.5798421 0.8049969 -0.0264951 -0.7152295 0.6983873 0.1364334 -0.9906487 0.0010653 0.1544652 -0.9380150 -0.3102714 -0.0006093 -0.7125120 -0.7016597 -0.7146265 -0.5655955 0.4115953 -0.7170030 -0.5578822 0.4179403 -0.7105266 -0.5465369 0.4432261 -0.0533922 -0.7229905 0.6887917 0.2017299 0.5856056 -0.7850930 0.2294753 0.5860091 -0.7771321 -0.7169578 -0.5521140 -0.4256073 -0.6864868 -0.5047986 -0.5233681 -0.6866000 -0.5105867 -0.5175729 0.0915276 0.5793232 -0.8099428 -0.7210402 -0.5600196 -0.4080184 -0.2173385 -0.5827541 0.7830464 -0.2181955 -0.5811217 0.7840206 -0.0535367 -0.7228313 0.6889476 -0.6266098 -0.4981594 -0.5993307 0.0935692 -0.9521039 0.2911065 0.0928967 -0.9519440 0.2918439 0.1274152 -0.9428739 0.3078216 0.1273996 -0.9428702 -0.3078394 0.0931194 -0.9517925 -0.2922667 0.0667613 -0.9554412 0.2875327 -0.6136057 -0.5083843 -0.6041800 -0.6788526 -0.5291852 -0.5090404 -0.6238046 -0.5077380 -0.5941969 -0.6800828 -0.5124608 -0.5242817 -0.6847487 -0.5126154 -0.5180200 -0.6513456 -0.5284871 -0.5444725 -0.2139900 -0.5885597 0.7796190 -0.1422403 -0.5799849 0.8021130 - - - - - - - - - - - - - - -

0 1 2 3 4 5 4 3 6 7 8 9 8 7 10 11 12 13 12 11 14 4 15 16 15 4 6 17 18 19 20 21 22 21 20 23 24 25 26 25 24 10 10 24 27 10 27 8 8 27 28 28 27 29 29 27 30 30 27 31 11 32 14 32 11 33 34 18 35 18 34 36 35 18 17 35 17 37 35 37 38 39 40 41 42 43 44 45 46 47 46 45 48 49 50 51 50 49 52 52 49 53 53 49 54 54 49 55 54 55 26 26 55 24 55 27 24 27 55 56 31 27 57 30 31 58 59 29 30 60 32 33 61 62 63 62 61 64 65 66 67 66 65 68 68 65 69 69 65 70 70 65 71 71 65 72 72 65 73 73 65 74 74 65 75 75 65 76 35 77 78 77 35 38 35 79 34 47 46 80 81 82 83 82 81 84 85 86 87 88 50 52 50 88 89 50 89 90 90 89 91 90 91 92 90 92 93 90 93 94 90 94 95 96 51 50 49 51 96 56 55 49 27 56 97 27 97 57 31 57 98 58 31 98 30 58 99 30 100 59 100 30 101 102 32 60 103 64 61 104 105 106 105 104 107 105 107 108 105 108 109 105 109 110 105 110 111 105 111 112 105 112 113 105 113 114 105 114 115 105 115 116 105 116 117 105 117 118 105 118 119 119 118 120 119 120 121 122 123 124 123 122 125 126 127 128 128 129 130 130 131 132 132 133 134 135 136 134 136 137 138 138 139 140 103 61 140 141 142 143 142 141 144 144 141 145 145 141 146 146 141 147 147 141 148 148 141 149 149 141 150 150 141 151 151 141 152 153 126 154 155 102 156 78 157 35 158 159 160 159 158 34 159 34 79 35 161 79 162 87 163 87 162 85 90 96 50 164 165 166 165 164 167 168 91 89 91 168 169 170 171 172 171 170 173 174 170 172 170 174 175 176 94 93 94 177 95 95 178 90 179 49 96 56 49 179 97 56 179 57 97 180 98 57 181 99 58 98 30 99 182 183 155 156 102 60 156 101 30 184 185 127 126 153 185 126 186 119 121 187 188 189 188 187 190 188 190 191 188 191 192 188 192 193 188 193 194 188 194 195 188 195 196 188 196 197 188 197 198 188 198 199 188 199 200 188 200 201 188 201 202 188 202 203 188 203 204 139 103 140 205 139 138 137 205 138 206 137 136 135 206 136 133 135 134 207 133 132 131 207 132 208 131 130 129 208 130 127 129 128 209 188 204 210 211 212 212 213 186 214 215 216 215 214 217 218 219 220 219 218 215 221 222 223 222 221 224 225 226 227 226 225 228 226 228 229 230 231 232 231 230 233 230 234 235 235 236 237 237 238 239 239 240 241 241 242 243 243 244 210 245 157 78 157 161 35 79 246 159 159 247 160 248 158 160 79 249 246 249 79 161 250 251 252 158 253 254 253 158 248 253 248 255 255 248 256 256 248 257 90 258 96 259 260 261 260 259 262 263 264 265 260 266 267 266 260 262 268 175 174 269 270 271 270 269 272 273 274 275 274 273 276 274 276 277 274 277 278 274 278 279 274 279 280 274 280 281 274 281 282 274 282 283 274 283 284 285 94 176 94 286 177 177 287 95 90 178 258 95 287 178 179 96 258 97 179 180 57 180 181 98 181 288 182 99 98 184 30 182 289 155 183 290 101 184 101 290 291 213 119 186 230 232 234 215 292 219 211 213 212 210 244 211 243 293 244 242 293 243 241 294 242 240 294 241 239 238 240 237 295 238 236 295 237 235 234 236 296 297 298 299 300 301 300 299 302 300 302 303 303 302 304 304 302 305 305 302 306 307 221 308 221 307 224 309 226 310 226 309 227 225 227 311 312 226 229 245 313 157 157 249 161 246 247 159 314 160 247 314 248 160 249 315 246 255 316 253 317 318 319 257 248 314 320 268 174 321 322 323 322 321 324 325 326 327 326 325 328 328 325 329 329 325 330 330 325 331 331 325 332 332 325 333 333 325 334 334 325 335 335 325 336 336 325 337 337 325 338 338 325 339 339 325 340 339 340 341 341 340 342 343 270 272 344 345 346 347 348 345 349 350 351 350 349 352 352 349 353 353 349 354 354 349 355 355 349 356 351 350 357 351 357 358 351 358 359 360 361 270 362 363 361 364 365 363 366 367 365 368 369 367 370 371 369 372 346 371 320 373 268 285 374 94 374 286 94 286 287 177 180 258 178 181 178 287 179 258 180 181 180 178 375 98 288 181 287 288 182 98 375 376 184 182 184 376 377 289 183 378 379 380 378 381 290 184 290 381 382 383 384 385 386 387 303 388 389 390 389 388 391 390 389 392 390 392 393 394 305 306 305 394 395 303 396 300 300 397 301 301 398 299 393 399 400 399 393 302 399 302 299 399 299 401 401 299 402 402 299 398 403 404 405 406 407 408 407 406 310 310 406 309 311 227 309 407 226 409 226 407 310 225 311 410 411 412 413 412 411 414 415 416 417 245 418 313 418 245 419 313 249 157 246 420 247 247 421 314 422 315 249 246 315 420 423 257 314 424 425 426 427 426 425 426 427 428 426 428 429 426 429 430 426 430 431 426 431 432 426 432 433 426 433 434 426 434 435 426 435 436 428 427 437 437 427 438 438 427 439 439 427 440 440 427 441 442 342 340 347 345 344 344 346 443 443 346 372 372 371 444 444 371 370 370 369 368 368 367 445 445 367 366 366 365 446 446 365 364 364 363 362 362 361 360 360 270 343 447 448 449 450 447 451 452 450 453 454 452 455 456 454 457 458 456 459 460 461 462 409 463 464 463 409 465 465 409 466 467 458 468 458 467 469 470 471 472 471 470 473 470 474 475 474 470 472 448 442 476 477 373 320 285 478 374 478 285 479 374 480 286 286 481 287 482 375 288 288 287 481 182 375 482 376 182 482 377 376 483 184 377 484 380 289 378 485 380 379 486 487 488 485 379 488 381 184 489 383 490 384 386 491 387 303 387 396 492 493 494 493 492 495 493 495 496 493 496 400 400 496 390 400 390 393 497 498 499 498 497 500 498 500 501 501 500 502 503 411 504 411 503 414 300 396 397 397 398 301 396 402 398 505 401 402 401 506 399 493 506 507 506 493 400 506 400 399 406 408 508 509 309 406 408 409 464 409 408 407 311 309 509 409 510 511 510 409 226 511 510 512 510 226 513 513 226 514 514 226 515 512 515 511 515 512 514 410 311 516 517 518 519 520 313 418 313 422 249 421 247 420 423 314 421 422 521 315 521 422 522 315 523 420 448 476 524 476 442 340 458 459 468 459 456 457 457 454 525 454 455 525 455 452 526 452 453 526 453 450 451 451 447 527 527 447 449 449 448 524 461 528 529 528 461 460 530 462 461 531 466 409 532 528 460 528 532 533 463 534 464 535 373 477 536 423 421 537 535 538 374 539 540 539 374 478 374 541 480 480 542 286 286 543 481 543 286 542 482 288 544 288 481 543 376 482 483 484 377 483 489 184 484 545 487 486 487 485 488 546 381 489 547 490 548 490 547 384 491 549 387 550 387 551 387 550 396 552 553 554 553 552 492 553 492 555 555 492 494 556 557 558 557 556 559 559 556 560 559 560 561 562 563 564 563 562 565 495 566 496 566 495 564 566 564 563 496 566 567 496 567 565 496 565 562 568 569 570 569 568 571 571 568 493 493 568 494 572 502 500 573 574 575 574 573 576 577 578 579 396 398 397 396 505 402 505 506 401 506 571 507 493 507 571 408 464 508 406 508 580 509 406 580 581 311 509 311 581 516 582 583 584 585 586 587 586 585 588 589 410 516 410 589 590 520 591 313 313 592 422 592 313 591 420 593 421 522 594 521 521 523 315 422 595 522 595 422 596 420 523 593 597 570 598 570 597 568 568 597 599 568 599 600 568 600 601 529 602 461 602 530 461 462 530 603 604 605 606 607 608 609 608 607 610 611 612 613 534 614 464 538 535 477 421 615 536 615 421 616 536 615 617 617 615 618 619 537 538 620 537 619 621 622 620 540 623 374 542 480 541 374 624 541 624 374 625 544 543 542 483 482 544 288 543 544 484 483 626 627 489 484 489 627 628 545 486 629 630 591 520 631 546 489 546 631 632 633 634 635 634 633 549 490 636 548 549 551 387 637 550 551 396 550 638 600 639 601 639 600 640 608 641 642 641 608 610 643 644 645 646 647 648 647 646 649 650 559 561 571 651 569 569 598 570 396 638 505 638 506 505 506 651 571 508 464 614 580 652 653 652 580 508 654 509 580 509 654 581 655 516 581 636 656 657 589 516 655 630 592 591 592 596 422 616 421 593 522 658 594 521 594 523 659 595 596 595 660 522 523 661 593 597 598 662 597 663 664 664 665 666 603 530 667 534 668 614 669 622 621 621 620 619 540 670 623 670 540 671 671 540 672 623 625 374 542 541 624 673 625 674 625 673 624 675 544 542 483 544 675 484 626 676 626 483 675 627 484 676 628 627 677 489 628 678 679 545 629 680 681 682 679 629 681 631 489 683 635 684 633 684 635 685 549 633 637 636 657 548 549 637 551 686 550 637 550 687 638 651 663 569 569 662 598 638 687 506 506 688 651 508 614 652 652 689 653 580 653 690 655 581 654 654 580 690 656 691 657 589 655 692 592 693 694 693 592 630 592 659 596 695 616 593 522 660 658 594 658 696 523 594 661 659 697 595 595 698 660 695 593 661 597 662 699 597 699 663 664 663 665 666 665 700 603 667 701 668 689 614 702 622 669 703 702 704 705 706 703 670 707 623 623 674 625 542 624 708 673 674 709 624 710 708 710 624 673 675 542 708 677 626 675 626 677 676 627 676 677 677 678 628 678 677 711 683 489 678 712 680 682 680 679 681 713 631 683 631 713 714 715 716 691 633 717 718 717 633 684 719 633 720 633 719 686 633 686 637 686 721 550 550 722 687 651 688 663 569 663 699 569 699 662 506 687 723 506 723 688 652 614 689 653 689 724 690 653 725 655 654 726 726 654 690 715 691 656 692 655 727 728 592 694 728 659 592 704 702 669 660 729 658 658 730 696 731 594 696 594 731 661 732 697 659 697 698 595 698 733 660 734 695 661 665 723 735 723 665 663 700 665 736 667 737 701 668 724 689 705 703 704 738 706 705 707 739 740 739 707 670 707 741 623 623 709 674 709 623 741 673 709 742 743 710 673 675 708 710 677 675 743 711 683 678 683 711 744 711 677 745 712 682 746 747 748 746 748 747 749 750 713 683 715 751 716 752 751 753 718 754 633 633 755 720 720 756 719 719 721 686 550 757 722 757 550 721 722 758 687 688 723 663 687 758 723 653 724 725 690 725 759 727 655 726 726 690 759 692 727 760 732 659 728 733 729 660 730 729 761 729 730 658 762 696 730 763 731 696 734 661 731 764 697 732 697 765 698 698 766 733 767 665 735 768 723 769 723 768 735 736 665 767 701 737 770 668 771 724 738 772 706 773 734 731 774 707 740 775 772 776 707 777 741 778 709 741 779 742 709 780 673 742 675 710 743 743 673 780 745 677 743 744 711 745 750 683 744 748 712 746 781 748 749 750 782 713 783 751 715 784 752 753 753 751 783 784 785 752 633 754 786 633 786 755 755 756 720 719 756 757 719 757 721 757 787 722 722 788 758 769 758 788 758 769 723 725 724 789 759 725 790 727 726 791 791 726 759 760 727 792 733 761 729 761 793 730 794 762 730 762 763 696 763 773 731 773 763 795 764 765 697 765 766 698 766 796 733 767 735 768 797 769 798 769 797 768 701 770 799 771 800 724 776 772 738 801 775 802 774 803 707 802 775 776 707 804 777 805 741 777 778 779 709 805 778 741 780 742 779 745 743 780 744 745 806 750 744 806 781 749 807 750 808 782 808 750 809 792 810 811 810 792 812 760 792 811 813 785 784 754 814 786 814 754 815 816 786 817 786 816 755 755 818 756 756 787 757 787 819 722 722 819 788 788 819 769 820 789 724 725 789 790 759 790 796 821 727 791 727 821 792 791 759 796 733 796 761 790 793 761 822 730 793 823 794 730 824 825 826 826 801 802 827 765 764 765 821 766 766 791 796 767 768 797 797 798 828 819 798 769 799 770 829 800 820 724 799 829 830 803 831 832 831 803 774 803 833 707 805 777 804 707 834 804 780 779 778 835 778 805 745 780 836 806 745 837 750 806 837 838 781 807 838 807 839 814 809 750 812 792 840 813 841 785 842 841 843 814 750 786 817 844 816 816 818 755 786 845 817 756 846 847 846 756 818 756 847 787 787 848 819 820 849 789 790 849 793 849 790 789 796 790 761 840 792 821 821 791 766 822 823 730 822 793 849 850 851 824 824 851 825 826 825 801 852 765 827 852 821 765 797 853 767 853 797 854 819 828 798 797 828 855 830 856 857 829 856 830 858 803 832 803 859 833 707 833 834 805 804 834 780 778 835 835 805 860 836 780 861 862 745 836 837 745 862 750 837 862 863 864 865 864 842 865 843 841 813 865 842 843 786 750 845 845 844 817 816 844 846 816 846 818 844 847 846 787 847 848 819 848 866 820 867 849 867 820 868 840 821 852 869 870 871 849 872 822 872 849 867 869 871 873 874 854 797 854 874 875 819 866 828 855 876 859 876 855 866 866 855 828 874 797 855 857 856 877 858 855 803 878 833 859 855 859 803 879 834 833 880 805 834 861 780 835 860 805 880 881 835 860 862 861 881 861 862 836 750 862 845 845 882 844 844 860 847 847 883 848 848 876 866 884 857 877 885 884 886 870 887 871 888 885 889 870 888 887 884 877 886 878 859 876 874 855 890 855 891 890 891 855 858 878 879 833 879 880 834 861 835 881 860 880 879 860 882 881 882 860 844 862 881 882 862 882 845 860 879 847 878 847 879 847 878 883 848 883 876 885 886 889 888 889 887 883 878 876

-
-
-
- - - - -2976.3929134 -3174.1755906 4419.0748031 -2523.3125984 78.7931496 2540.9712598 -2981.2456693 -3178.3779528 4421.5000000 -2970.7712598 -3170.7673228 4417.1062992 -2964.5515748 -3168.2551181 4415.6574803 -2957.9228346 -3166.7169291 4414.7677165 -2964.5515748 -3168.2551181 4415.6574803 -2970.7712598 -3203.2472441 4360.8464567 -2964.5515748 -3200.7358268 4359.3976378 -2970.7712598 -3170.7673228 4417.1062992 -2957.9228346 -3166.7169291 4414.7677165 -2957.9228346 -3199.1976378 4358.5118110 -2369.0791339 -231.5158268 2720.1287402 -2523.3125984 78.7931496 2540.9712598 -2365.4539370 -238.2488189 2724.0161417 -2360.5334646 -244.3343307 2727.5295276 -2354.4681102 -249.5874803 2730.5622047 -2521.5366142 84.5338583 2537.6570866 -2518.6362205 89.9202756 2534.5476378 -2514.7000000 94.7886614 2531.7366142 -2509.8472441 98.9911811 2529.3102362 -2504.2255906 102.4000787 2527.3421260 -2498.0062992 104.9118110 2525.8921260 -2491.3771654 106.4500000 2525.0039370 -2484.5405512 106.9679921 2524.7051181 -2371.2996063 -224.3399213 2715.9854331 -2372.0472441 -216.9391339 2711.7129921 -2045.9944882 66.9518898 2547.8078740 -2280.2153543 -238.2488189 2724.0161417 -2726.3114173 -3274.4059055 4476.9409449 -2276.5901575 -231.5158268 2720.1287402 -2274.3696850 -224.3399213 2715.9854331 -2273.6220472 -216.9391339 2711.7129921 -2273.6220472 -12.3662087 2593.6027559 -2084.7665354 106.9679921 2524.7051181 -2077.9299213 106.4500000 2525.0039370 -2071.3011811 104.9118110 2525.8921260 -2065.0814961 102.4000787 2527.3421260 -2059.4598425 98.9911811 2529.3102362 -2054.6070866 94.7886614 2531.7366142 -2050.6708661 89.9202756 2534.5476378 -2047.7704724 84.5338583 2537.6570866 -2045.9944882 78.7931496 2540.9712598 -2045.3964567 72.8725197 2544.3901575 -2339.6661417 27.6828937 2570.4799213 -2347.4409449 24.5432441 2572.2933071 -2354.4681102 20.2821142 2574.7527559 -2360.5334646 15.0289882 2577.7858268 -2365.4539370 8.9434764 2581.2996063 -2369.0791339 2.2104709 2585.1862205 -2371.2996063 -4.9654291 2589.3295276 -2372.0472441 -12.3662087 2593.6027559 -2331.3803150 29.6056732 2569.3700787 -2322.8346457 30.2531575 2568.9964567 -2314.2889764 29.6056732 2569.3700787 -2306.0031496 27.6828937 2570.4799213 -2298.2283465 24.5432441 2572.2933071 -2291.2011811 20.2821142 2574.7527559 -2285.1358268 15.0289882 2577.7858268 -2280.2153543 8.9434764 2581.2996063 -2276.5901575 2.2104709 2585.1862205 -2274.3696850 -4.9654291 2589.3295276 -2371.2996063 -209.5383858 2707.4397638 -2371.2996063 -19.7669803 2597.8751969 -2369.0791339 -202.3624803 2703.2964567 -2369.0791339 -26.9428819 2602.0185039 -2365.4539370 -195.6294488 2699.4098425 -2365.4539370 -33.6758858 2605.9059055 -2360.5334646 -189.5439370 2695.8960630 -2360.5334646 -39.7614173 2609.4192913 -2354.4681102 -184.2908268 2692.8629921 -2354.4681102 -45.0145276 2612.4519685 -2347.4409449 -180.0296850 2690.4035433 -2347.4409449 -49.2756693 2614.9118110 -2339.6661417 -176.8900394 2688.5901575 -2339.6661417 -52.4153150 2616.7251969 -2331.3803150 -174.9672835 2687.4803150 -2331.3803150 -54.3380709 2617.8346457 -2322.8346457 -174.3197638 2687.1066929 -2322.8346457 -54.9855512 2618.2090551 -2314.2889764 -174.9672835 2687.4803150 -2314.2889764 -54.3380709 2617.8346457 -2306.0031496 -176.8900394 2688.5901575 -2306.0031496 -52.4153150 2616.7251969 -2298.2283465 -180.0296850 2690.4035433 -2298.2283465 -49.2756693 2614.9118110 -2291.2011811 -184.2908268 2692.8629921 -2291.2011811 -45.0145276 2612.4519685 -2285.1358268 -189.5439370 2695.8960630 -2285.1358268 -39.7614173 2609.4192913 -2280.2153543 -195.6294488 2699.4098425 -2280.2153543 -33.6758858 2605.9059055 -2276.5901575 -202.3624803 2703.2964567 -2276.5901575 -26.9428819 2602.0185039 -2274.3696850 -209.5383858 2707.4397638 -2274.3696850 -19.7669803 2597.8751969 -3198.9531496 -3285.5330709 4483.3661417 -2989.8582677 -3206.2149606 4437.5708661 -2990.4570866 -3200.2948819 4434.1535433 -2988.0826772 -3211.9559055 4440.8858268 -3203.6291339 -3274.4059055 4476.9409449 -3203.6291339 -3262.5645669 4470.1062992 -3204.2271654 -3268.4854331 4473.5236220 -3201.8531496 -3280.1468504 4480.2559055 -2523.3125984 78.7931496 2540.9712598 -2989.8582677 -3194.3740157 4430.7362205 -2988.0826772 -3188.6330709 4427.4212598 -2985.1822835 -3183.2468504 4424.3110236 -2976.3929134 -3206.6566929 4362.8149606 -2981.2456693 -3178.3779528 4421.5000000 -2981.2456693 -3210.8586614 4365.2440945 -2976.3929134 -3174.1755906 4419.0748031 -2964.5515748 -3200.7358268 4359.3976378 -2970.7712598 -3203.2472441 4360.8464567 -3203.6291339 -3295.0448819 4413.8464567 -2523.3125984 46.3128346 2484.7137795 -2957.9228346 -3199.1976378 4358.5118110 -2951.0870079 -3198.6791339 4358.2125984 -2951.0870079 -3166.1996063 4414.4685039 -2951.0870079 -3198.6791339 4358.2125984 -2521.5366142 84.5338583 2537.6570866 -2518.6362205 57.4399606 2478.2897638 -2521.5366142 52.0535433 2481.3996063 -2518.6362205 89.9202756 2534.5476378 -2523.3125984 78.7931496 2540.9712598 -2523.3125984 46.3128346 2484.7137795 -2951.0870079 -3166.1996063 4414.4685039 -2944.2500000 -3166.7169291 4414.7677165 -2937.6208661 -3168.2551181 4415.6574803 -2347.4409449 -253.8485827 2733.0220472 -2339.6661417 -256.9882283 2734.8354331 -2331.3803150 -258.9110236 2735.9448819 -2322.8346457 -259.5585039 2736.3192913 -2360.5334646 -276.8146457 2671.2720472 -2354.4681102 -249.5874803 2730.5622047 -2354.4681102 -282.0677953 2674.3047244 -2360.5334646 -244.3343307 2727.5295276 -2365.4539370 -270.7291339 2667.7578740 -2365.4539370 -238.2488189 2724.0161417 -2369.0791339 -263.9961417 2663.8712598 -2369.0791339 -231.5158268 2720.1287402 -2371.2996063 -256.8202362 2659.7279528 -2371.2996063 -224.3399213 2715.9854331 -2372.0472441 -249.4194488 2655.4547244 -2372.0472441 -216.9391339 2711.7129921 -2371.2996063 -242.0186614 2651.1822835 -2371.2996063 -209.5383858 2707.4397638 -2369.0791339 -234.8427953 2647.0389764 -2369.0791339 -202.3624803 2703.2964567 -2365.4539370 -228.1097638 2643.1515748 -2365.4539370 -195.6294488 2699.4098425 -2360.5334646 -222.0242520 2639.6381890 -2360.5334646 -189.5439370 2695.8960630 -2354.4681102 -216.7711417 2636.6055118 -2354.4681102 -184.2908268 2692.8629921 -2347.4409449 -180.0296850 2690.4035433 -2347.4409449 -212.5100000 2634.1460630 -2339.6661417 -176.8900394 2688.5901575 -2339.6661417 -209.3703543 2632.3326772 -2331.3803150 -174.9672835 2687.4803150 -2331.3803150 -207.4475591 2631.2228346 -2322.8346457 -174.3197638 2687.1066929 -2322.8346457 -206.8000787 2630.8484252 -2314.2889764 -207.4475591 2631.2228346 -2314.2889764 -174.9672835 2687.4803150 -2306.0031496 -209.3703543 2632.3326772 -2306.0031496 -176.8900394 2688.5901575 -2298.2283465 -212.5100000 2634.1460630 -2298.2283465 -180.0296850 2690.4035433 -2291.2011811 -216.7711417 2636.6055118 -2291.2011811 -184.2908268 2692.8629921 -2285.1358268 -189.5439370 2695.8960630 -2285.1358268 -222.0242520 2639.6381890 -2280.2153543 -195.6294488 2699.4098425 -2280.2153543 -228.1097638 2643.1515748 -2276.5901575 -202.3624803 2703.2964567 -2276.5901575 -234.8427953 2647.0389764 -2274.3696850 -209.5383858 2707.4397638 -2274.3696850 -242.0186614 2651.1822835 -2273.6220472 -216.9391339 2711.7129921 -2273.6220472 -249.4194488 2655.4547244 -2274.3696850 -224.3399213 2715.9854331 -2274.3696850 -256.8202362 2659.7279528 -2276.5901575 -231.5158268 2720.1287402 -2276.5901575 -263.9961417 2663.8712598 -2280.2153543 -238.2488189 2724.0161417 -2280.2153543 -270.7291339 2667.7578740 -2931.4011811 -3170.7673228 4417.1062992 -2925.7795276 -3174.1755906 4419.0748031 -2314.2889764 -258.9110236 2735.9448819 -2306.0031496 -256.9882283 2734.8354331 -2298.2283465 -253.8485827 2733.0220472 -2291.2011811 -249.5874803 2730.5622047 -2285.1358268 -244.3343307 2727.5295276 -2045.9944882 34.4715827 2491.5503937 -2726.3114173 -3274.4059055 4476.9409449 -2726.3114173 -3306.8862205 4420.6850394 -2045.9944882 66.9518898 2547.8078740 -2045.3964567 40.3922047 2488.1322835 -2045.3964567 72.8725197 2544.3901575 -2045.9944882 46.3128346 2484.7137795 -2045.9944882 78.7931496 2540.9712598 -2047.7704724 52.0535433 2481.3996063 -2047.7704724 84.5338583 2537.6570866 -2050.6708661 57.4399606 2478.2897638 -2050.6708661 89.9202756 2534.5476378 -2054.6070866 62.3083465 2475.4787402 -2054.6070866 94.7886614 2531.7366142 -2059.4598425 66.5108661 2473.0527559 -2059.4598425 98.9911811 2529.3102362 -2065.0814961 102.4000787 2527.3421260 -2065.0814961 69.9197638 2471.0842520 -2071.3011811 104.9118110 2525.8921260 -2071.3011811 72.4314961 2469.6342520 -2077.9299213 106.4500000 2525.0039370 -2077.9299213 73.9696850 2468.7460630 -2084.7665354 106.9679921 2524.7051181 -2084.7665354 74.4876772 2468.4472441 -2484.5405512 106.9679921 2524.7051181 -2484.5405512 74.4876772 2468.4472441 -2491.3771654 73.9696850 2468.7460630 -2491.3771654 106.4500000 2525.0039370 -2498.0062992 72.4314961 2469.6342520 -2498.0062992 104.9118110 2525.8921260 -2504.2255906 69.9197638 2471.0842520 -2504.2255906 102.4000787 2527.3421260 -2509.8472441 66.5108661 2473.0527559 -2509.8472441 98.9911811 2529.3102362 -2514.7000000 94.7886614 2531.7366142 -2514.7000000 62.3083465 2475.4787402 -2985.1822835 -3215.7271654 4368.0551181 -2988.0826772 -3188.6330709 4427.4212598 -2988.0826772 -3221.1133858 4371.1614173 -2985.1822835 -3183.2468504 4424.3110236 -3203.6291339 -3262.5645669 4470.1062992 -3203.6291339 -3295.0448819 4413.8464567 -3204.2271654 -3268.4854331 4473.5236220 -3204.2271654 -3300.9657480 4417.2677165 -3203.6291339 -3274.4059055 4476.9409449 -3203.6291339 -3306.8862205 4420.6850394 -3201.8531496 -3280.1468504 4480.2559055 -3201.8531496 -3312.6267717 4424.0000000 -3198.9531496 -3285.5330709 4483.3661417 -3198.9531496 -3318.0133858 4427.1102362 -3195.0169291 -3290.4019685 4486.1771654 -3190.1641732 -3294.6047244 4488.6023622 -3184.5429134 -3298.0129921 4490.5708661 -3178.3228346 -3300.5244094 4492.0196850 -3171.6940945 -3302.0629921 4492.9094488 -2989.8582677 -3238.6956693 4381.3149606 -2988.0826772 -3211.9559055 4440.8858268 -2988.0826772 -3244.4366142 4384.6299213 -2989.8582677 -3206.2149606 4437.5708661 -2990.4570866 -3232.7748031 4377.8976378 -2990.4570866 -3200.2948819 4434.1535433 -2989.8582677 -3226.8543307 4374.4763780 -2989.8582677 -3194.3740157 4430.7362205 -2976.3929134 -3206.6566929 4362.8149606 -2981.2456693 -3210.8586614 4365.2440945 -3184.5429134 -3330.4933071 4434.3149606 -3203.6291339 -3306.8862205 4420.6850394 -3204.2271654 -3300.9657480 4417.2677165 -3201.8531496 -3312.6267717 4424.0000000 -3198.9531496 -3318.0133858 4427.1102362 -3195.0169291 -3322.8818898 4429.9212598 -3190.1641732 -3327.0842520 4432.3464567 -2484.5405512 74.4876772 2468.4472441 -2371.2996063 -37.4457441 2533.0720472 -2372.0472441 -44.8465354 2537.3444882 -2369.0791339 -30.2698425 2528.9287402 -2365.4539370 -23.5368386 2525.0413386 -2360.5334646 -17.4513228 2521.5279528 -2354.4681102 -12.1981969 2518.4952756 -2347.4409449 -7.9370709 2516.0350394 -2339.6661417 -4.7974213 2514.2224409 -2084.7665354 74.4876772 2468.4472441 -2331.3803150 -2.8746402 2513.1122047 -2322.8346457 -2.2271555 2512.7385827 -2314.2889764 -2.8746402 2513.1122047 -2306.0031496 -4.7974213 2514.2224409 -2298.2283465 -7.9370709 2516.0350394 -2291.2011811 -12.1981969 2518.4952756 -2285.1358268 -17.4513228 2521.5279528 -2280.2153543 -23.5368386 2525.0413386 -2276.5901575 -30.2698425 2528.9287402 -2274.3696850 -37.4457441 2533.0720472 -2273.6220472 -44.8465354 2537.3444882 -2273.6220472 -249.4194488 2655.4547244 -2523.3125984 46.3128346 2484.7137795 -2944.2500000 -3199.1976378 4358.5118110 -2369.0791339 -263.9961417 2663.8712598 -2365.4539370 -270.7291339 2667.7578740 -2360.5334646 -276.8146457 2671.2720472 -2354.4681102 -282.0677953 2674.3047244 -2347.4409449 -286.3288976 2676.7649606 -2339.6661417 -289.4685433 2678.5779528 -2331.3803150 -291.3913386 2679.6874016 -2322.8346457 -292.0388189 2680.0610236 -2314.2889764 -291.3913386 2679.6874016 -2306.0031496 -289.4685433 2678.5779528 -2298.2283465 -286.3288976 2676.7649606 -2291.2011811 -282.0677953 2674.3047244 -2285.1358268 -276.8146457 2671.2720472 -2280.2153543 -270.7291339 2667.7578740 -2521.5366142 52.0535433 2481.3996063 -2518.6362205 57.4399606 2478.2897638 -2514.7000000 62.3083465 2475.4787402 -2509.8472441 66.5108661 2473.0527559 -2504.2255906 69.9197638 2471.0842520 -2498.0062992 72.4314961 2469.6342520 -2491.3771654 73.9696850 2468.7460630 -2371.2996063 -256.8202362 2659.7279528 -2372.0472441 -249.4194488 2655.4547244 -2274.3696850 -256.8202362 2659.7279528 -2276.5901575 -263.9961417 2663.8712598 -2371.2996063 -52.2472835 2541.6177165 -2371.2996063 -242.0186614 2651.1822835 -2369.0791339 -59.4231890 2545.7610236 -2369.0791339 -234.8427953 2647.0389764 -2365.4539370 -66.1561811 2549.6476378 -2365.4539370 -228.1097638 2643.1515748 -2360.5334646 -72.2417323 2553.1618110 -2360.5334646 -222.0242520 2639.6381890 -2354.4681102 -77.4948425 2556.1944882 -2354.4681102 -216.7711417 2636.6055118 -2347.4409449 -81.7559843 2558.6547244 -2347.4409449 -212.5100000 2634.1460630 -2339.6661417 -84.8956299 2560.4677165 -2339.6661417 -209.3703543 2632.3326772 -2331.3803150 -86.8183858 2561.5771654 -2331.3803150 -207.4475591 2631.2228346 -2322.8346457 -87.4658661 2561.9507874 -2322.8346457 -206.8000787 2630.8484252 -2314.2889764 -86.8183858 2561.5771654 -2314.2889764 -207.4475591 2631.2228346 -2306.0031496 -84.8956299 2560.4677165 -2306.0031496 -209.3703543 2632.3326772 -2298.2283465 -81.7559843 2558.6547244 -2298.2283465 -212.5100000 2634.1460630 -2291.2011811 -77.4948425 2556.1944882 -2291.2011811 -216.7711417 2636.6055118 -2285.1358268 -72.2417323 2553.1618110 -2285.1358268 -222.0242520 2639.6381890 -2280.2153543 -66.1561811 2549.6476378 -2280.2153543 -228.1097638 2643.1515748 -2276.5901575 -59.4231890 2545.7610236 -2276.5901575 -234.8427953 2647.0389764 -2274.3696850 -52.2472835 2541.6177165 -2274.3696850 -242.0186614 2651.1822835 -2944.2500000 -3199.1976378 4358.5118110 -2944.2500000 -3166.7169291 4414.7677165 -2347.4409449 -253.8485827 2733.0220472 -2339.6661417 -289.4685433 2678.5779528 -2347.4409449 -286.3288976 2676.7649606 -2339.6661417 -256.9882283 2734.8354331 -2937.6208661 -3200.7358268 4359.3976378 -2937.6208661 -3168.2551181 4415.6574803 -2331.3803150 -258.9110236 2735.9448819 -2322.8346457 -292.0388189 2680.0610236 -2331.3803150 -291.3913386 2679.6874016 -2322.8346457 -259.5585039 2736.3192913 -2084.7665354 74.4876772 2468.4472441 -2285.1358268 -244.3343307 2727.5295276 -2285.1358268 -276.8146457 2671.2720472 -2931.4011811 -3203.2472441 4360.8464567 -2931.4011811 -3170.7673228 4417.1062992 -2925.7795276 -3206.6566929 4362.8149606 -2925.7795276 -3174.1755906 4419.0748031 -2765.0838583 -3302.5807087 4493.2086614 -2920.9271654 -3222.2106299 4446.8070866 -2925.7795276 -3226.4129921 4449.2322835 -2916.9909449 -3217.3421260 4443.9960630 -2914.0905512 -3211.9559055 4440.8858268 -2912.3149606 -3206.2149606 4437.5708661 -2911.7161417 -3200.2948819 4434.1535433 -2920.9271654 -3178.3779528 4421.5000000 -2925.7795276 -3174.1755906 4419.0748031 -2916.9909449 -3183.2468504 4424.3110236 -2914.0905512 -3188.6330709 4427.4212598 -2912.3149606 -3194.3740157 4430.7362205 -2758.2468504 -3302.0629921 4492.9094488 -2751.6177165 -3300.5244094 4492.0196850 -2745.3988189 -3298.0129921 4490.5708661 -2739.7763780 -3294.6047244 4488.6023622 -2734.9240157 -3290.4019685 4486.1771654 -2730.9877953 -3285.5330709 4483.3661417 -2728.0874016 -3280.1468504 4480.2559055 -2291.2011811 -249.5874803 2730.5622047 -2291.2011811 -282.0677953 2674.3047244 -2298.2283465 -286.3288976 2676.7649606 -2298.2283465 -253.8485827 2733.0220472 -2306.0031496 -289.4685433 2678.5779528 -2306.0031496 -256.9882283 2734.8354331 -2314.2889764 -291.3913386 2679.6874016 -2314.2889764 -258.9110236 2735.9448819 -2045.9944882 34.4715827 2491.5503937 -2726.3114173 -3306.8862205 4420.6850394 -2914.0905512 -3221.1133858 4371.1614173 -2728.0874016 -3280.1468504 4480.2559055 -2728.0874016 -3312.6267717 4424.0000000 -2084.7665354 74.4876772 2468.4472441 -2931.4011811 -3203.2472441 4360.8464567 -2937.6208661 -3200.7358268 4359.3976378 -2045.9944882 34.4715827 2491.5503937 -2077.9299213 73.9696850 2468.7460630 -2071.3011811 72.4314961 2469.6342520 -2065.0814961 69.9197638 2471.0842520 -2059.4598425 66.5108661 2473.0527559 -2054.6070866 62.3083465 2475.4787402 -2050.6708661 57.4399606 2478.2897638 -2047.7704724 52.0535433 2481.3996063 -2045.9944882 46.3128346 2484.7137795 -2045.3964567 40.3922047 2488.1322835 -2985.1822835 -3215.7271654 4368.0551181 -2988.0826772 -3221.1133858 4371.1614173 -3195.0169291 -3290.4019685 4486.1771654 -3195.0169291 -3322.8818898 4429.9212598 -3164.8578740 -3302.5807087 4493.2086614 -2985.1822835 -3217.3421260 4443.9960630 -2981.2456693 -3222.2106299 4446.8070866 -2976.3929134 -3226.4129921 4449.2322835 -2970.7712598 -3229.8224409 4451.2007874 -2964.5515748 -3232.3338583 4452.6496063 -2957.9228346 -3233.8720472 4453.5393701 -3190.1641732 -3294.6047244 4488.6023622 -3190.1641732 -3327.0842520 4432.3464567 -3184.5429134 -3330.4933071 4434.3149606 -3184.5429134 -3298.0129921 4490.5708661 -3178.3228346 -3333.0055118 4435.7637795 -3178.3228346 -3300.5244094 4492.0196850 -3171.6940945 -3334.5437008 4436.6535433 -3171.6940945 -3302.0629921 4492.9094488 -2990.4570866 -3232.7748031 4377.8976378 -3178.3228346 -3333.0055118 4435.7637795 -3171.6940945 -3334.5437008 4436.6535433 -2989.8582677 -3238.6956693 4381.3149606 -2988.0826772 -3244.4366142 4384.6299213 -2985.1822835 -3249.8224409 4387.7401575 -2985.1822835 -3217.3421260 4443.9960630 -2985.1822835 -3249.8224409 4387.7401575 -2989.8582677 -3226.8543307 4374.4763780 -2925.7795276 -3206.6566929 4362.8149606 -2920.9271654 -3210.8586614 4365.2440945 -2920.9271654 -3178.3779528 4421.5000000 -2920.9271654 -3210.8586614 4365.2440945 -2739.7763780 -3294.6047244 4488.6023622 -2745.3988189 -3330.4933071 4434.3149606 -2739.7763780 -3327.0842520 4432.3464567 -2745.3988189 -3298.0129921 4490.5708661 -2734.9240157 -3322.8818898 4429.9212598 -2734.9240157 -3290.4019685 4486.1771654 -2730.9877953 -3318.0133858 4427.1102362 -2730.9877953 -3285.5330709 4483.3661417 -2916.9909449 -3183.2468504 4424.3110236 -2916.9909449 -3215.7271654 4368.0551181 -2914.0905512 -3188.6330709 4427.4212598 -2914.0905512 -3221.1133858 4371.1614173 -2912.3149606 -3194.3740157 4430.7362205 -2912.3149606 -3226.8543307 4374.4763780 -2911.7161417 -3200.2948819 4434.1535433 -2911.7161417 -3232.7748031 4377.8976378 -2912.3149606 -3206.2149606 4437.5708661 -2912.3149606 -3238.6956693 4381.3149606 -2914.0905512 -3211.9559055 4440.8858268 -2914.0905512 -3244.4366142 4384.6299213 -2916.9909449 -3217.3421260 4443.9960630 -2916.9909449 -3249.8224409 4387.7401575 -2920.9271654 -3222.2106299 4446.8070866 -2920.9271654 -3254.6909449 4390.5511811 -2925.7795276 -3226.4129921 4449.2322835 -2925.7795276 -3258.8933071 4392.9763780 -2937.6208661 -3232.3338583 4452.6496063 -2944.2500000 -3233.8720472 4453.5393701 -2931.4011811 -3229.8224409 4451.2007874 -2758.2468504 -3302.0629921 4492.9094488 -2765.0838583 -3335.0618110 4436.9527559 -2758.2468504 -3334.5437008 4436.6535433 -2765.0838583 -3302.5807087 4493.2086614 -2751.6177165 -3300.5244094 4492.0196850 -2751.6177165 -3333.0055118 4435.7637795 -2912.3149606 -3226.8543307 4374.4763780 -2911.7161417 -3232.7748031 4377.8976378 -2916.9909449 -3215.7271654 4368.0551181 -2914.0905512 -3244.4366142 4384.6299213 -2745.3988189 -3330.4933071 4434.3149606 -2916.9909449 -3249.8224409 4387.7401575 -2912.3149606 -3238.6956693 4381.3149606 -2739.7763780 -3327.0842520 4432.3464567 -2734.9240157 -3322.8818898 4429.9212598 -2730.9877953 -3318.0133858 4427.1102362 -2728.0874016 -3312.6267717 4424.0000000 -2981.2456693 -3222.2106299 4446.8070866 -2981.2456693 -3254.6909449 4390.5511811 -3164.8578740 -3335.0618110 4436.9527559 -3164.8578740 -3302.5807087 4493.2086614 -2951.0870079 -3234.3901575 4453.8385827 -2964.5515748 -3232.3338583 4452.6496063 -2957.9228346 -3266.3523622 4397.2834646 -2964.5515748 -3264.8141732 4396.3937008 -2957.9228346 -3233.8720472 4453.5393701 -2970.7712598 -3229.8224409 4451.2007874 -2970.7712598 -3262.3023622 4394.9448819 -2976.3929134 -3226.4129921 4449.2322835 -2976.3929134 -3258.8933071 4392.9763780 -3164.8578740 -3335.0618110 4436.9527559 -2981.2456693 -3254.6909449 4390.5511811 -2976.3929134 -3258.8933071 4392.9763780 -2970.7712598 -3262.3023622 4394.9448819 -2964.5515748 -3264.8141732 4396.3937008 -2937.6208661 -3264.8141732 4396.3937008 -2765.0838583 -3335.0618110 4436.9527559 -2944.2500000 -3266.3523622 4397.2834646 -2931.4011811 -3262.3023622 4394.9448819 -2925.7795276 -3258.8933071 4392.9763780 -2920.9271654 -3254.6909449 4390.5511811 -2758.2468504 -3334.5437008 4436.6535433 -2931.4011811 -3262.3023622 4394.9448819 -2931.4011811 -3229.8224409 4451.2007874 -2937.6208661 -3264.8141732 4396.3937008 -2937.6208661 -3232.3338583 4452.6496063 -2944.2500000 -3266.3523622 4397.2834646 -2944.2500000 -3233.8720472 4453.5393701 -2751.6177165 -3333.0055118 4435.7637795 -2951.0870079 -3266.8700787 4397.5826772 -2951.0870079 -3234.3901575 4453.8385827 -2957.9228346 -3266.3523622 4397.2834646 -2951.0870079 -3266.8700787 4397.5826772 -2957.9228346 -3266.3523622 4397.2834646 - - - - - - - - - - -0.0000174 0.5000020 0.8660243 0.0000000 0.4999999 0.8660255 -0.0000033 0.5000004 0.8660252 -0.0000174 0.5000020 0.8660243 -0.0000174 0.5000020 0.8660243 -0.0000192 0.5000026 0.8660239 0.3419739 -0.8138156 0.4698490 0.4999737 -0.7500202 0.4330080 0.3419844 -0.8138123 0.4698470 0.4999689 -0.7500226 0.4330094 0.1736502 -0.8528650 0.4924092 0.1736511 -0.8528649 0.4924092 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 -0.0000078 0.5000012 0.8660247 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000011 0.4999998 0.8660255 0.0000014 0.4999954 0.8660281 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000050 0.4999908 0.8660307 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000052 0.4999924 0.8660298 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.6427831 -0.6634193 0.3830204 0.7660381 -0.5566737 0.3214031 0.7660340 -0.5566780 0.3214055 0.6427913 -0.6634134 0.3830170 0.0000394 -0.4999717 -0.8660417 -0.0063700 -0.4878273 -0.8729169 0.0001152 -0.5002208 -0.8658979 0.0000002 -0.5000003 -0.8660252 0.0001559 -0.5000158 -0.8660162 0.0000833 -0.5000086 -0.8660204 0.0000075 -0.8660204 0.5000087 0.0000075 -0.8660204 0.5000087 -0.9396925 0.2961984 -0.1710101 -0.8660232 0.4330165 -0.2500011 -0.9396936 0.2961959 -0.1710086 -0.8660235 0.4330160 -0.2500009 -0.9762985 0.1874329 -0.1082137 -0.9762986 0.1874322 -0.1082133 -0.0000227 0.5000036 0.8660233 -0.0000227 0.5000036 0.8660233 -0.0000063 0.5000011 0.8660248 -0.0000227 0.5000036 0.8660233 -0.0000227 0.5000036 0.8660233 -0.0000227 0.5000036 0.8660233 -0.0000062 0.5000011 0.8660248 0.7660530 0.5566618 -0.3213883 0.6427912 0.6634108 -0.3830216 0.6427897 0.6634119 -0.3830223 0.7660528 0.5566621 -0.3213884 0.8660268 0.4330113 -0.2499978 0.8660264 0.4330117 -0.2499980 0.9396900 0.2962047 -0.1710133 0.9396900 0.2962047 -0.1710133 0.9848063 0.1503911 -0.0868283 0.9848060 0.1503924 -0.0868291 1.0000000 -0.0000003 0.0000002 1.0000000 0.0000002 -0.0000001 0.9848059 -0.1503928 0.0868292 0.9848062 -0.1503913 0.0868284 0.9396902 -0.2962042 0.1710130 0.9396901 -0.2962043 0.1710131 0.8660253 -0.4330138 0.2499987 0.8660250 -0.4330142 0.2499989 0.7660522 -0.5566631 0.3213879 0.7660527 -0.5566626 0.3213876 0.6427845 -0.6634162 0.3830234 0.6427813 -0.6634185 0.3830248 0.4999913 -0.7500041 0.4330157 0.4999914 -0.7500041 0.4330156 0.3420294 -0.8137946 0.4698450 0.3420271 -0.8137953 0.4698454 0.1736483 -0.8528691 0.4924028 0.1736488 -0.8528690 0.4924028 0.0000000 -0.8660268 0.4999977 0.0000000 -0.8660268 0.4999977 -0.1736488 -0.8528690 0.4924028 -0.1736483 -0.8528691 0.4924028 -0.3420271 -0.8137953 0.4698454 -0.3420294 -0.8137946 0.4698450 -0.4999914 -0.7500041 0.4330156 -0.4999913 -0.7500041 0.4330157 -0.6427845 -0.6634162 0.3830234 -0.6427813 -0.6634185 0.3830248 -0.7660527 -0.5566626 0.3213876 -0.7660522 -0.5566631 0.3213879 -0.8660250 -0.4330142 0.2499989 -0.8660253 -0.4330138 0.2499987 -0.9396901 -0.2962043 0.1710131 -0.9396902 -0.2962042 0.1710130 -0.9848062 -0.1503913 0.0868284 -0.9848059 -0.1503928 0.0868292 -1.0000000 0.0000002 -0.0000001 -1.0000000 -0.0000003 0.0000002 -0.9848060 0.1503924 -0.0868291 -0.9848063 0.1503911 -0.0868283 -0.9396900 0.2962047 -0.1710133 -0.9396900 0.2962047 -0.1710133 -0.8660264 0.4330117 -0.2499980 -0.8660268 0.4330113 -0.2499978 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.9914455 -0.1130344 0.0652611 0.9763002 -0.1874249 0.1082120 0.9763005 -0.1874239 0.1082114 0.9914457 -0.1130333 0.0652604 1.0000000 -0.0000019 0.0000011 1.0000000 -0.0000025 0.0000014 0.9848112 0.1503670 -0.0868145 0.9848114 0.1503659 -0.0868138 0.9396936 0.2961959 -0.1710086 0.9396925 0.2961984 -0.1710101 0.8660232 0.4330165 -0.2500011 0.8660235 0.4330160 -0.2500009 0.7660428 0.5566726 -0.3213939 0.7660435 0.5566719 -0.3213935 0.6427815 0.6634187 -0.3830241 0.6427817 0.6634186 -0.3830241 0.4999971 0.7500022 -0.4330123 0.4999968 0.7500024 -0.4330123 0.3420188 0.8137993 -0.4698446 0.3420189 0.8137992 -0.4698445 0.1736418 0.8528707 -0.4924024 0.1736426 0.8528706 -0.4924023 0.0436101 0.8652027 -0.4995222 0.0436109 0.8652027 -0.4995222 -0.0436101 0.8652027 -0.4995222 -0.0436109 0.8652027 -0.4995222 -0.1736353 0.8528717 -0.4924029 -0.1736344 0.8528718 -0.4924030 -0.3420234 0.8137978 -0.4698437 -0.3420232 0.8137979 -0.4698438 -0.5000073 0.7499971 -0.4330093 -0.5000076 0.7499970 -0.4330092 -0.6427815 0.6634187 -0.3830241 -0.6427817 0.6634186 -0.3830241 -0.7660435 0.5566719 -0.3213935 -0.7660428 0.5566726 -0.3213939 0.8660104 -0.4330332 0.2500163 0.9396990 -0.2961843 0.1709989 0.9397009 -0.2961799 0.1709963 0.8660049 -0.4330415 0.2500211 -0.9914461 0.1130312 -0.0652576 -0.9914456 0.1130346 -0.0652596 -1.0000000 -0.0000004 0.0000010 -1.0000000 -0.0000015 0.0000017 -0.9848120 -0.1503618 0.0868136 -0.9848114 -0.1503649 0.0868154 -0.9397071 -0.2961620 0.1709932 -0.9397090 -0.2961574 0.1709905 -0.8660464 -0.4329786 0.2499862 -0.8660475 -0.4329771 0.2499853 0.0000108 0.4999796 0.8660372 0.0000108 0.4999796 0.8660372 0.0000108 0.4999796 0.8660372 0.0000108 0.4999796 0.8660372 0.0000107 0.4999807 0.8660366 0.9848065 0.1503884 -0.0868301 0.9397054 0.2961650 -0.1709974 0.9397072 0.2961606 -0.1709949 0.9848074 0.1503841 -0.0868276 1.0000000 0.0000003 -0.0000011 1.0000000 0.0000003 -0.0000011 0.9848061 -0.1503933 0.0868267 0.9848081 -0.1503832 0.0868209 0.0000551 -0.5000850 -0.8659763 0.0010255 -0.5013045 -0.8652703 -0.0000035 -0.5000054 -0.8660223 -0.0000111 -0.5000016 -0.8660245 0.0000515 -0.5001142 -0.8659595 -0.0000111 -0.5000016 -0.8660245 -0.0000111 -0.5000016 -0.8660245 -0.0000111 -0.5000016 -0.8660245 -0.0000111 -0.5000016 -0.8660245 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0001343 -0.4999739 -0.8660405 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000184 -0.4999925 -0.8660297 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0029405 -0.4987481 -0.8667420 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.1736364 -0.8528671 0.4924105 -0.1736355 -0.8528673 0.4924105 0.4999967 0.7500007 -0.4330152 0.3420129 0.8137994 -0.4698487 0.4999985 0.7499998 -0.4330147 0.3420138 0.8137991 -0.4698485 -0.3419775 -0.8138145 0.4698483 -0.3419670 -0.8138178 0.4698502 0.1736390 0.8528704 -0.4924039 0.0000000 0.8660266 -0.4999979 0.1736363 0.8528708 -0.4924041 0.0000000 0.8660266 -0.4999979 -0.0000006 -0.4999998 -0.8660255 -0.7660528 0.5566621 -0.3213884 -0.7660530 0.5566618 -0.3213883 -0.4999737 -0.7500202 0.4330080 -0.4999689 -0.7500226 0.4330094 -0.6427986 -0.6634080 0.3830139 -0.6428068 -0.6634021 0.3830105 -0.0000018 0.4999947 0.8660284 -0.0000022 0.4999929 0.8660295 -0.0000007 0.5000033 0.8660235 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 0.0000064 0.4999985 0.8660262 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.6427912 0.6634108 -0.3830216 -0.6427897 0.6634119 -0.3830223 -0.4999985 0.7499998 -0.4330147 -0.4999967 0.7500007 -0.4330152 -0.3420129 0.8137994 -0.4698487 -0.3420138 0.8137991 -0.4698485 -0.1736363 0.8528708 -0.4924041 -0.1736390 0.8528704 -0.4924039 0.0000001 -0.4999998 -0.8660255 0.0000020 -0.5000060 -0.8660220 -0.0001601 -0.5000271 -0.8660098 0.9396982 -0.2961832 0.1710054 0.9397001 -0.2961785 0.1710027 -0.0000001 -0.4999997 -0.8660256 0.0001274 -0.5000257 -0.8660105 -0.0001278 -0.4999748 -0.8660399 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0002742 -0.4996460 -0.8662296 -0.0001801 -0.4997740 -0.8661559 -0.7660380 -0.5566748 0.3214016 -0.7660327 -0.5566802 0.3214048 0.0000091 0.4999870 0.8660329 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000020 0.4999994 0.8660257 -0.6427728 -0.6634223 0.3830326 -0.6427692 -0.6634249 0.3830341 -0.4999616 -0.7500136 0.4330335 -0.4999675 -0.7500107 0.4330318 -0.3420383 -0.8137829 0.4698587 -0.3420378 -0.8137830 0.4698588 -0.1737262 -0.8528465 0.4924145 -0.1737143 -0.8528483 0.4924156 0.0001000 -0.5001471 -0.8659404 0.0000056 -0.5000047 -0.8660227 -0.0000007 -0.4999943 -0.8660287 0.0000056 -0.5000047 -0.8660227 0.0000056 -0.5000047 -0.8660227 -0.0000111 -0.4999772 -0.8660386 0.8660125 0.4330286 -0.2500172 0.8660147 0.4330253 -0.2500153 0.0001489 -0.5002209 -0.8658978 0.0002167 -0.5000440 -0.8660000 0.0000880 -0.5000180 -0.8660150 -0.7660663 -0.5566447 0.3213863 -0.7660622 -0.5566489 0.3213887 0.6427505 -0.6634385 0.3830419 0.4999503 -0.7500192 0.4330368 0.6427469 -0.6634411 0.3830434 0.4999562 -0.7500163 0.4330351 0.7660458 -0.5566667 0.3213970 0.7660510 -0.5566613 0.3213939 0.8660345 -0.4329966 0.2499965 0.8660334 -0.4329981 0.2499974 -0.8660167 -0.4330238 0.2500109 -0.8660222 -0.4330156 0.2500062 -0.9396990 -0.2961843 0.1709989 -0.9397009 -0.2961799 0.1709963 -0.9848081 -0.1503832 0.0868209 -0.9848061 -0.1503933 0.0868267 -1.0000000 0.0000003 -0.0000011 -1.0000000 0.0000003 -0.0000011 -0.9848074 0.1503841 -0.0868276 -0.9848065 0.1503884 -0.0868301 -0.9397054 0.2961650 -0.1709974 -0.9397072 0.2961606 -0.1709949 -0.8660242 0.4330110 -0.2500070 -0.8660264 0.4330077 -0.2500051 -0.7660399 0.5566710 -0.3214036 -0.7660354 0.5566757 -0.3214063 -0.6427939 0.6634051 -0.3830271 -0.6427885 0.6634090 -0.3830293 0.0000003 0.5000099 0.8660197 0.0000001 0.5000043 0.8660229 0.0000003 0.5000099 0.8660197 0.1737020 -0.8528502 0.4924167 0.0436175 -0.8651903 0.4995431 0.1737139 -0.8528484 0.4924156 0.0436168 -0.8651903 0.4995431 0.3420650 -0.8137745 0.4698539 0.3420655 -0.8137743 0.4698538 -0.0001171 -0.5002156 -0.8659009 -0.0000742 -0.5001369 -0.8659464 -0.0005044 -0.4998989 -0.8660836 -0.0000010 -0.5000026 -0.8660239 -0.0000014 -0.5000003 -0.8660252 0.0000069 -0.4999894 -0.8660315 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 0.7660118 0.5567000 -0.3214203 0.7660073 0.5567047 -0.3214230 -0.0436225 -0.8651901 0.4995430 -0.0436218 -0.8651901 0.4995430 -0.0000000 0.5000028 0.8660238 0.3420264 0.8137903 -0.4698545 0.1737177 0.8528523 -0.4924074 0.3420288 0.8137896 -0.4698540 0.1737049 0.8528543 -0.4924086 0.4999823 0.7500045 -0.4330254 0.4999753 0.7500080 -0.4330274 0.6427783 0.6634164 -0.3830336 0.6427730 0.6634203 -0.3830359 -0.0000236 -0.4999581 -0.8660496 -0.0000270 -0.4999510 -0.8660537 -0.0000270 -0.4999510 -0.8660537 -0.0000270 -0.4999510 -0.8660537 -0.0000066 -0.4999931 -0.8660294 0.0000150 -0.4999761 -0.8660392 0.0000130 -0.4999803 -0.8660368 0.0000010 -0.4999977 -0.8660267 0.0000150 -0.4999761 -0.8660392 0.0000150 -0.4999761 -0.8660392 0.0000150 -0.4999761 -0.8660392 0.0000014 -0.4999912 -0.8660305 -0.4999753 0.7500080 -0.4330274 -0.4999823 0.7500045 -0.4330254 -0.3420218 0.8137918 -0.4698553 -0.3420194 0.8137925 -0.4698557 -0.1737030 0.8528546 -0.4924087 -0.1736902 0.8528565 -0.4924099 -0.0000024 -0.4999953 -0.8660281 0.0000075 0.8660204 -0.5000087 0.0000075 0.8660204 -0.5000087 0.0000001 -0.5000069 -0.8660214 -0.0000027 -0.5000032 -0.8660235 -0.0000002 -0.5000066 -0.8660216 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 1 4 5 6 7 8 7 6 9 10 8 11 8 10 6 5 12 13 12 5 14 14 5 15 15 5 16 13 12 17 17 12 18 18 12 19 19 12 20 20 12 21 21 12 22 22 12 23 23 12 24 24 12 25 24 25 26 27 28 29 28 27 30 30 27 31 31 27 32 32 27 33 33 27 34 34 27 35 35 27 36 36 27 37 37 27 38 38 27 39 39 27 40 40 27 41 41 27 42 42 27 43 24 44 34 44 24 45 45 24 46 46 24 47 47 24 48 48 24 49 49 24 50 50 24 51 51 24 26 34 44 52 34 52 53 34 53 54 34 54 55 34 55 56 34 56 57 34 57 58 34 58 59 34 59 60 34 60 61 34 61 33 62 51 26 51 62 63 63 62 64 63 64 65 65 64 66 65 66 67 67 66 68 67 68 69 69 68 70 69 70 71 71 70 72 71 72 73 73 72 74 73 74 75 75 74 76 75 76 77 77 76 78 77 78 79 79 78 80 79 80 81 81 80 82 81 82 83 83 82 84 83 84 85 85 84 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 91 90 92 91 92 93 93 92 94 93 94 95 95 94 32 95 32 33 96 97 98 97 96 99 100 101 102 101 100 103 101 103 104 104 103 96 104 96 105 105 96 98 104 105 106 104 106 107 104 107 2 108 109 110 109 108 111 9 108 7 108 9 111 112 113 114 115 116 112 116 115 117 118 11 119 11 118 10 120 121 122 121 120 123 124 122 125 122 124 120 126 16 5 16 126 127 16 127 128 16 128 129 129 128 130 130 128 131 131 128 132 133 134 135 134 133 136 137 136 133 136 137 138 139 138 137 138 139 140 141 140 139 140 141 142 143 142 141 142 143 144 145 144 143 144 145 146 147 146 145 146 147 148 149 148 147 148 149 150 151 150 149 150 151 152 153 152 151 152 153 154 155 153 156 153 155 154 157 156 158 156 157 155 159 158 160 158 159 157 161 160 162 160 161 159 163 161 162 161 163 164 165 164 163 164 165 166 167 166 165 166 167 168 169 168 167 168 169 170 171 169 172 169 171 170 173 172 174 172 173 171 175 174 176 174 175 173 177 176 178 176 177 175 179 178 180 178 179 177 181 180 182 180 181 179 183 182 184 182 183 181 185 184 186 184 185 183 187 132 128 132 187 188 132 188 29 132 29 189 189 29 190 190 29 191 191 29 192 192 29 193 193 29 28 194 195 196 195 194 197 198 197 194 197 198 199 200 199 198 199 200 201 202 201 200 201 202 203 204 203 202 203 204 205 206 205 204 205 206 207 208 207 206 207 208 209 210 208 211 208 210 209 212 211 213 211 212 210 214 213 215 213 214 212 216 215 217 215 216 214 218 217 219 217 218 216 220 218 219 218 220 221 222 221 220 221 222 223 224 223 222 223 224 225 226 225 224 225 226 227 228 226 229 226 228 227 123 229 121 229 123 228 230 231 232 231 230 233 110 233 230 233 110 109 234 125 235 125 234 124 236 235 237 235 236 234 238 237 239 237 238 236 240 239 241 239 240 238 242 241 243 241 242 240 244 99 96 99 244 245 99 245 246 99 246 247 99 247 248 249 250 251 250 249 252 253 252 249 252 253 254 255 254 253 254 255 256 232 256 255 256 232 231 257 258 259 113 260 261 260 113 262 262 113 263 263 113 264 264 113 265 265 113 259 259 113 257 115 112 114 113 261 114 266 267 268 267 266 269 269 266 270 270 266 271 271 266 272 272 266 273 273 266 274 274 266 275 274 275 276 276 275 277 277 275 278 278 275 279 279 275 280 280 275 281 281 275 282 282 275 283 283 275 284 284 275 285 285 275 286 286 275 287 288 289 117 289 288 290 289 290 291 289 291 292 289 292 293 289 293 294 289 294 295 289 295 296 289 296 297 289 297 298 289 298 299 289 299 300 289 300 301 289 301 302 289 302 303 289 303 275 290 288 304 290 304 305 290 305 306 290 306 307 290 307 308 290 308 309 290 309 310 290 310 266 290 266 311 311 266 312 312 266 268 313 275 314 275 313 287 315 312 268 312 315 316 316 315 317 316 317 318 318 317 319 318 319 320 320 319 321 320 321 322 322 321 323 322 323 324 324 323 325 324 325 326 326 325 327 326 327 328 328 327 329 328 329 330 330 329 331 330 331 332 332 331 333 332 333 334 334 333 335 334 335 336 336 335 337 336 337 338 338 337 339 338 339 340 340 339 341 340 341 342 342 341 343 342 343 344 344 343 345 344 345 346 346 345 347 346 347 348 348 347 286 348 286 287 349 118 119 118 349 350 351 352 353 352 351 354 134 353 135 353 134 351 355 350 349 350 355 356 357 358 359 358 357 360 354 359 352 359 354 357 361 303 314 362 186 363 186 362 185 364 356 355 356 364 365 366 365 364 365 366 367 368 369 370 369 368 371 371 368 372 372 368 373 373 368 374 375 29 376 29 375 377 29 377 378 29 378 379 29 379 374 29 374 368 29 368 380 29 380 381 29 381 382 29 382 383 29 383 384 29 384 385 29 385 386 387 363 388 363 387 362 389 387 388 387 389 390 391 390 389 390 391 392 393 392 391 392 393 394 358 394 393 394 358 360 395 396 397 196 398 399 398 196 195 400 401 402 401 400 403 403 400 404 403 404 405 403 405 406 403 406 407 403 407 408 403 408 409 403 409 410 403 410 411 403 411 412 259 413 414 413 259 258 415 243 416 243 415 242 417 99 248 99 417 418 418 417 419 419 417 420 420 417 421 421 417 422 422 417 423 424 416 425 416 424 415 426 424 425 424 426 427 428 427 426 427 428 429 430 429 428 429 430 431 432 433 259 433 432 434 434 432 435 434 435 436 434 436 437 251 438 439 438 251 250 259 440 432 440 259 414 361 402 289 395 441 401 441 395 442 443 366 444 366 443 367 445 446 447 446 445 448 449 445 447 445 449 450 451 450 449 450 451 452 399 452 451 452 399 398 453 444 454 444 453 443 455 454 456 454 455 453 457 456 458 456 457 455 459 458 460 458 459 457 461 460 462 460 461 459 463 462 464 462 463 461 465 464 466 464 465 463 467 466 468 466 467 465 469 468 470 468 469 467 368 471 472 471 368 473 473 368 370 474 475 476 475 474 477 478 476 479 476 478 474 448 479 446 479 448 478 396 480 397 480 396 481 395 397 482 483 484 485 484 483 486 484 486 481 484 481 396 484 396 487 487 396 488 488 396 489 489 396 490 439 491 492 491 439 438 493 431 430 431 493 494 368 423 417 423 368 495 495 368 472 496 497 498 497 496 499 500 498 501 498 500 496 502 501 503 501 502 500 492 502 503 502 492 491 437 504 434 504 437 505 504 505 506 504 506 507 504 507 508 395 482 442 509 510 511 510 509 512 510 512 513 510 513 514 510 514 485 510 485 515 516 469 470 469 516 517 518 517 516 517 518 519 520 519 518 519 520 521 477 493 475 493 477 494 484 515 485 515 484 522 523 521 520 521 523 524 499 523 497 523 499 524 508 510 504 510 508 525 526 510 527 510 526 511

-
-
-
- - - - -2322.8346457 30.2531575 2568.9964567 -2331.3803150 -2.8746402 2513.1122047 -2322.8346457 -2.2271555 2512.7385827 -2331.3803150 29.6056732 2569.3700787 -2339.6661417 -4.7974213 2514.2224409 -2339.6661417 27.6828937 2570.4799213 -2314.2889764 -2.8746402 2513.1122047 -2314.2889764 29.6056732 2569.3700787 -2347.4409449 -7.9370709 2516.0350394 -2347.4409449 24.5432441 2572.2933071 -2306.0031496 -4.7974213 2514.2224409 -2306.0031496 27.6828937 2570.4799213 -2354.4681102 -12.1981969 2518.4952756 -2354.4681102 20.2821142 2574.7527559 -2298.2283465 -7.9370709 2516.0350394 -2298.2283465 24.5432441 2572.2933071 -2360.5334646 15.0289882 2577.7858268 -2360.5334646 -17.4513228 2521.5279528 -2291.2011811 -12.1981969 2518.4952756 -2291.2011811 20.2821142 2574.7527559 -2365.4539370 8.9434764 2581.2996063 -2365.4539370 -23.5368386 2525.0413386 -2285.1358268 15.0289882 2577.7858268 -2285.1358268 -17.4513228 2521.5279528 -2369.0791339 2.2104709 2585.1862205 -2369.0791339 -30.2698425 2528.9287402 -2280.2153543 8.9434764 2581.2996063 -2280.2153543 -23.5368386 2525.0413386 -2371.2996063 -4.9654291 2589.3295276 -2371.2996063 -37.4457441 2533.0720472 -2276.5901575 2.2104709 2585.1862205 -2276.5901575 -30.2698425 2528.9287402 -2372.0472441 -12.3662087 2593.6027559 -2372.0472441 -44.8465354 2537.3444882 -2274.3696850 -4.9654291 2589.3295276 -2274.3696850 -37.4457441 2533.0720472 -2371.2996063 -19.7669803 2597.8751969 -2371.2996063 -52.2472835 2541.6177165 -2273.6220472 -12.3662087 2593.6027559 -2273.6220472 -44.8465354 2537.3444882 -2369.0791339 -26.9428819 2602.0185039 -2369.0791339 -59.4231890 2545.7610236 -2274.3696850 -19.7669803 2597.8751969 -2274.3696850 -52.2472835 2541.6177165 -2365.4539370 -33.6758858 2605.9059055 -2365.4539370 -66.1561811 2549.6476378 -2276.5901575 -26.9428819 2602.0185039 -2276.5901575 -59.4231890 2545.7610236 -2360.5334646 -39.7614173 2609.4192913 -2360.5334646 -72.2417323 2553.1618110 -2280.2153543 -33.6758858 2605.9059055 -2280.2153543 -66.1561811 2549.6476378 -2354.4681102 -45.0145276 2612.4519685 -2354.4681102 -77.4948425 2556.1944882 -2285.1358268 -39.7614173 2609.4192913 -2285.1358268 -72.2417323 2553.1618110 -2347.4409449 -81.7559843 2558.6547244 -2347.4409449 -49.2756693 2614.9118110 -2291.2011811 -45.0145276 2612.4519685 -2291.2011811 -77.4948425 2556.1944882 -2339.6661417 -84.8956299 2560.4677165 -2339.6661417 -52.4153150 2616.7251969 -2298.2283465 -81.7559843 2558.6547244 -2298.2283465 -49.2756693 2614.9118110 -2331.3803150 -86.8183858 2561.5771654 -2331.3803150 -54.3380709 2617.8346457 -2306.0031496 -84.8956299 2560.4677165 -2306.0031496 -52.4153150 2616.7251969 -2322.8346457 -87.4658661 2561.9507874 -2322.8346457 -54.9855512 2618.2090551 -2314.2889764 -86.8183858 2561.5771654 -2314.2889764 -54.3380709 2617.8346457 - - - - - - - - - - 0.0000000 -0.8660266 0.4999979 0.1736435 -0.8528701 0.4924028 0.0000000 -0.8660266 0.4999979 0.1736420 -0.8528703 0.4924030 0.3420240 -0.8137973 0.4698443 0.3420252 -0.8137969 0.4698440 -0.1736435 -0.8528701 0.4924028 -0.1736420 -0.8528703 0.4924030 0.4999900 -0.7500061 0.4330137 0.4999902 -0.7500060 0.4330137 -0.3420240 -0.8137973 0.4698443 -0.3420252 -0.8137969 0.4698440 0.6427900 -0.6634129 0.3830200 0.6427885 -0.6634140 0.3830206 -0.4999900 -0.7500061 0.4330137 -0.4999902 -0.7500060 0.4330137 0.7660531 -0.5566622 0.3213873 0.7660527 -0.5566627 0.3213876 -0.6427900 -0.6634129 0.3830200 -0.6427885 -0.6634140 0.3830206 0.8660247 -0.4330146 0.2499991 0.8660250 -0.4330142 0.2499989 -0.7660531 -0.5566622 0.3213873 -0.7660527 -0.5566627 0.3213876 0.9396900 -0.2962045 0.1710132 0.9396900 -0.2962045 0.1710132 -0.8660247 -0.4330146 0.2499991 -0.8660250 -0.4330142 0.2499989 0.9848062 -0.1503911 0.0868283 0.9848060 -0.1503925 0.0868291 -0.9396900 -0.2962045 0.1710132 -0.9396900 -0.2962045 0.1710132 1.0000000 0.0000003 -0.0000002 1.0000000 -0.0000001 0.0000001 -0.9848062 -0.1503911 0.0868283 -0.9848060 -0.1503925 0.0868291 0.9848060 0.1503926 -0.0868291 0.9848062 0.1503912 -0.0868283 -1.0000000 0.0000003 -0.0000002 -1.0000000 -0.0000001 0.0000001 0.9396900 0.2962046 -0.1710132 0.9396900 0.2962046 -0.1710132 -0.9848060 0.1503926 -0.0868291 -0.9848062 0.1503912 -0.0868283 0.8660270 0.4330110 -0.2499975 0.8660272 0.4330106 -0.2499973 -0.9396900 0.2962046 -0.1710132 -0.9396900 0.2962046 -0.1710132 0.7660524 0.5566625 -0.3213886 0.7660527 0.5566622 -0.3213884 -0.8660270 0.4330110 -0.2499975 -0.8660272 0.4330106 -0.2499973 0.6427914 0.6634107 -0.3830216 0.6427899 0.6634118 -0.3830222 -0.7660524 0.5566625 -0.3213886 -0.7660527 0.5566622 -0.3213884 0.4999999 0.7499992 -0.4330143 0.4999982 0.7500000 -0.4330148 -0.6427914 0.6634107 -0.3830216 -0.6427899 0.6634118 -0.3830222 0.3420111 0.8137999 -0.4698490 0.3420119 0.8137997 -0.4698489 -0.4999999 0.7499992 -0.4330143 -0.4999982 0.7500000 -0.4330148 0.1736345 0.8528711 -0.4924043 0.1736370 0.8528707 -0.4924040 -0.3420111 0.8137999 -0.4698490 -0.3420119 0.8137997 -0.4698489 0.0000000 0.8660266 -0.4999979 0.0000000 0.8660266 -0.4999979 -0.1736345 0.8528711 -0.4924043 -0.1736370 0.8528707 -0.4924040 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 0 2 0 6 7 5 8 4 8 5 9 10 7 6 7 10 11 9 12 8 12 9 13 14 11 10 11 14 15 12 16 17 16 12 13 18 15 14 15 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 23 27 23 26 22 25 28 29 28 25 24 30 27 31 27 30 26 29 32 33 32 29 28 34 31 35 31 34 30 33 36 37 36 33 32 38 35 39 35 38 34 37 40 41 40 37 36 42 39 43 39 42 38 41 44 45 44 41 40 46 43 47 43 46 42 45 48 49 48 45 44 50 47 51 47 50 46 49 52 53 52 49 48 54 51 55 51 54 50 52 56 53 56 52 57 58 55 59 55 58 54 57 60 56 60 57 61 62 58 59 58 62 63 61 64 60 64 61 65 66 63 62 63 66 67 65 68 64 68 65 69 70 67 66 67 70 71 68 71 70 71 68 69

-
-
-
- - - - -5019.6181102 -3074.8192913 4270.1377953 -4931.8543307 -3127.8696850 4334.4842520 -4930.7362205 -3138.8685039 4317.1181102 -5020.8897638 -3063.7122047 4287.4251969 -4833.5157480 -3194.4909449 4357.9133858 -4834.4724409 -3183.5862205 4375.3503937 -5020.8897638 -3087.9724409 4254.3503937 -4931.8543307 -3152.1299213 4301.4094488 -5047.4566929 -3097.2669291 4286.6023622 -5019.6181102 -3074.8192913 4270.1377953 -5048.3031496 -3106.0358268 4276.0787402 -5048.3031496 -3089.8618110 4298.1299213 -5050.8149606 -3084.0464567 4310.3031496 -5024.6574803 -3054.9885827 4305.6889764 -5020.8897638 -3063.7122047 4287.4251969 -5024.6574803 -3054.9885827 4305.6889764 -4935.1771654 -3119.4673228 4352.9842520 -4729.1850394 -3240.9858268 4392.0196850 -4729.9645669 -3230.1594488 4409.5118110 -4834.4724409 -3207.8460630 4342.2755906 -4837.3070866 -3175.4618110 4394.0551181 -5050.8149606 -3115.9023622 4266.8740157 -5024.6574803 -3102.7724409 4240.5433071 -5054.9173228 -3126.5665354 4259.2677165 -5020.8897638 -3087.9724409 4254.3503937 -5024.6574803 -3102.7724409 4240.5433071 -4935.1771654 -3167.2511811 4287.8385827 -4955.2834646 -3163.6885827 4335.3228346 -5048.3031496 -3106.0358268 4276.0787402 -4956.0275591 -3172.5299213 4324.8503937 -5047.4566929 -3097.2669291 4286.6023622 -4956.0275591 -3156.3559055 4346.9015748 -5048.3031496 -3089.8618110 4298.1299213 -5050.8149606 -3084.0464567 4310.3031496 -4958.2440945 -3150.7543307 4359.2322835 -5030.8070866 -3048.9141732 4324.3740157 -5030.8070866 -3048.9141732 4324.3740157 -4940.6023622 -3113.9169291 4372.0511811 -4619.0551181 -3277.7696850 4419.0000000 -4619.6456693 -3267.0055118 4436.5393701 -4729.9645669 -3254.4196850 4376.4370079 -4732.2755906 -3222.2688976 4428.3858268 -4837.3070866 -3223.2464567 4328.9094488 -4841.9370079 -3170.3669291 4413.4566929 -5030.8070866 -3118.7696850 4229.1377953 -4961.8582677 -3193.6244094 4308.4527559 -5050.8149606 -3115.9023622 4266.8740157 -5054.9173228 -3126.5665354 4259.2677165 -4958.2440945 -3182.6098425 4315.8031496 -4940.6023622 -3183.7724409 4276.8149606 -5030.8070866 -3118.7696850 4229.1377953 -4855.0984252 -3230.2748031 4367.2047244 -4854.4645669 -3221.3704724 4377.6299213 -4855.0984252 -3214.1007874 4389.2559055 -4856.9881890 -3208.6854331 4401.7244094 -5054.9173228 -3079.9964567 4322.7598425 -4961.8582677 -3147.0543307 4371.9448819 -5054.9173228 -3079.9964567 4322.7598425 -5060.4842520 -3077.8354331 4335.1181102 -5049.4527559 -3045.3625984 4360.7401575 -5039.1574803 -3045.6720472 4342.9133858 -5039.1574803 -3045.6720472 4342.9133858 -4947.9645669 -3111.3866142 4391.1141732 -4504.5078740 -3304.3795276 4438.5157480 -4504.9094488 -3293.6598425 4456.0905512 -4619.6456693 -3291.2657480 4403.4645669 -4621.4094488 -3259.2988189 4455.5472441 -4732.2755906 -3270.0527559 4363.2401575 -4736.0511811 -3217.5547244 4448.0708661 -4841.9370079 -3240.2224409 4318.2204724 -4848.2165354 -3168.4547244 4432.9724409 -5039.1574803 -3135.4771654 4220.4763780 -4966.7677165 -3205.2370079 4303.0275591 -5060.4842520 -3137.7051181 4253.4960630 -4860.0748031 -3251.8590551 4351.1692913 -4856.9881890 -3240.5409449 4358.2952756 -4947.9645669 -3201.1913386 4268.6771654 -5039.1574803 -3135.4771654 4220.4763780 -4746.7874016 -3278.5440945 4402.6102362 -4746.2677165 -3269.5881890 4412.9960630 -4746.7874016 -3262.3700787 4424.6614173 -4748.3267717 -3257.1098425 4437.2440945 -4860.0748031 -3205.2881890 4414.6614173 -5060.4842520 -3077.8354331 4335.1181102 -4966.7677165 -3145.3673228 4384.6535433 -5061.3779528 -3047.9940945 4377.3149606 -5067.3464567 -3077.6295276 4347.0039370 -5075.2992126 -3079.3834646 4358.0551181 -5049.4527559 -3045.3625984 4360.7401575 -4957.0393701 -3111.9543307 4409.5826772 -4386.9881890 -3320.4799213 4450.3267717 -4387.1889764 -3309.7877953 4467.9173228 -4504.9094488 -3317.9200787 4423.0118110 -4506.0944882 -3286.0874016 4475.1968504 -4621.4094488 -3307.0830709 4390.4015748 -4624.2795276 -3254.8854331 4475.4527559 -4736.0511811 -3287.4102362 4352.8307087 -4741.1732283 -3216.1586614 4467.9606299 -4848.2165354 -3258.2590551 4310.5354331 -4855.9645669 -3169.7838583 4452.0000000 -5060.4842520 -3137.7051181 4253.4960630 -4972.8188976 -3217.0960630 4299.6889764 -5067.3464567 -3148.9787402 4249.7283465 -4864.2637795 -3263.8834646 4346.0433071 -4748.3267717 -3288.9657480 4393.8110236 -4957.0393701 -3218.9787402 4263.6692913 -5049.4527559 -3152.3874016 4214.8267717 -4632.4527559 -3316.7314961 4430.6220472 -4632.0590551 -3307.7342520 4440.9763780 -4632.4527559 -3300.5578740 4452.6692913 -4633.6259843 -3295.4200787 4465.3425197 -4750.8464567 -3253.9669291 4450.3661417 -4864.2637795 -3204.0137795 4427.6692913 -5067.3464567 -3077.6295276 4347.0039370 -4972.8188976 -3145.7456693 4396.9645669 -5061.3779528 -3047.9940945 4377.3149606 -4967.5551181 -3115.6019685 4426.9015748 -5075.2992126 -3079.3834646 4358.0551181 -4979.8307087 -3148.1775591 4408.5118110 -5103.1377953 -3072.3066929 4414.7716535 -5093.4685039 -3088.5035433 4376.3425197 -5103.1377953 -3095.5921260 4383.0236220 -5084.0944882 -3083.0452756 4367.9330709 -5088.6338583 -3061.6748031 4404.7480315 -5074.5708661 -3053.4870079 4392.1338583 -4267.9724409 -3325.8696850 4454.2795276 -4267.9724409 -3315.1862205 4471.8779528 -4387.1889764 -3334.0480315 4434.8425197 -4387.7834646 -3302.2956693 4487.0866142 -4506.0944882 -3333.8708661 4410.0511811 -4508.0314961 -3281.8909449 4495.2598425 -4624.2795276 -3324.7409449 4380.2125984 -4628.1811024 -3253.8984252 4495.6417323 -4741.1732283 -3305.9637795 4345.5275591 -4747.4921260 -3218.1248031 4487.4566929 -4855.9645669 -3276.8086614 4306.0866142 -4864.9370079 -3174.3141732 4469.9685039 -5103.1377953 -3188.7322835 4256.0393701 -5088.6338583 -3199.2625984 4217.1653543 -5103.1377953 -3212.0177165 4224.2952756 -5074.5708661 -3184.7720472 4213.1456693 -5093.4685039 -3180.2291339 4251.2874016 -5061.3779528 -3168.9874016 4212.3582677 -5084.0944882 -3170.5688976 4248.6062992 -5075.2992126 -3160.0456693 4248.0826772 -5049.4527559 -3152.3874016 4214.8267717 -5067.3464567 -3148.9787402 4249.7283465 -4979.8307087 -3228.8397638 4298.5433071 -5075.2992126 -3160.0456693 4248.0826772 -4869.4291339 -3276.2500000 4343.0787402 -4754.2598425 -3312.9062992 4382.0039370 -4750.8464567 -3300.5370079 4386.8740157 -4967.5551181 -3236.5952756 4261.9448819 -5061.3779528 -3168.9874016 4212.3582677 -4513.5354331 -3344.3570866 4450.8818898 -4513.2677165 -3335.3291339 4461.2165354 -4633.6259843 -3327.2763780 4421.9133858 -4513.5354331 -3328.1830709 4472.9330709 -4514.3267717 -3323.1350394 4485.6732283 -4635.5433071 -3292.4779528 4478.6141732 -4754.2598425 -3253.0366142 4463.6259843 -4869.4291339 -3204.8996063 4440.3543307 -5074.5708661 -3053.4870079 4392.1338583 -4979.1889764 -3122.2192913 4442.5472441 -4875.4094488 -3207.9200787 4452.3346457 -5084.0944882 -3083.0452756 4367.9330709 -4987.5866142 -3152.5889764 4418.9409449 -5088.6338583 -3061.6748031 4404.7480315 -4991.5905512 -3131.6051181 4456.0393701 -5093.4685039 -3088.5035433 4376.3425197 -4995.8503937 -3158.8456693 4427.9370079 -5004.3779528 -3166.7582677 4435.2244094 -5103.1377953 -3095.5921260 4383.0236220 -5117.6377953 -3085.0622047 4421.9015748 -5112.8031496 -3104.0952756 4387.7795276 -5004.3779528 -3143.4736220 4466.9685039 -5103.1377953 -3072.3066929 4414.7716535 4393.4448819 -3325.8696850 4454.2795276 4393.4448819 -3315.1862205 4471.8779528 -4267.9724409 -3339.4472441 4438.8031496 -4267.9724409 -3307.7212598 4491.0669291 -4387.7834646 -3350.0795276 4421.9409449 -4388.7598425 -3298.2322835 4507.2440945 -4508.0314961 -3351.7464567 4400.0236220 -4510.6574803 -3281.2003937 4515.6692913 -4628.1811024 -3343.7031496 4373.2086614 -4632.9881890 -3256.3681102 4515.5078740 -4754.8070866 -3223.3925197 4505.9645669 -4747.4921260 -3325.1496063 4341.5433071 -4864.9370079 -3295.3078740 4305.0118110 -4874.8622047 -3181.9078740 4486.3267717 -4979.1889764 -3253.5043307 4263.5590551 -5074.5708661 -3184.7720472 4213.1456693 -4991.5905512 -3269.1929134 4268.4566929 -5088.6338583 -3199.2625984 4217.1653543 -5004.3779528 -3283.1846457 4276.4960630 -5103.1377953 -3212.0177165 4224.2952756 -5112.8031496 -3195.8212598 4262.7244094 -5004.3779528 -3259.8988189 4308.2401575 -5093.4685039 -3180.2291339 4251.2874016 -5103.1377953 -3188.7322835 4256.0393701 -4995.8503937 -3250.5712598 4302.8818898 -4987.5866142 -3240.1125984 4299.6181102 -5084.0944882 -3170.5688976 4248.6062992 -4758.4724409 -3325.6972441 4379.3503937 -4638.1417323 -3351.6897638 4410.4488189 -4635.5433071 -3339.0484252 4415.1220472 -4391.5314961 -3361.0720472 4463.1417323 -4391.3976378 -3352.0263780 4473.4645669 -4514.3267717 -3354.9901575 4442.2401575 -4391.5314961 -3344.8980315 4485.1929134 -4391.9291339 -3339.9035433 4497.9724409 -4515.6181102 -3320.3374016 4499.0472441 -4638.1417323 -3291.8200787 4492.0748031 -4758.4724409 -3254.3476378 4476.6220472 -4763.3503937 -3257.8598425 4488.9645669 -4882.0275591 -3212.9822835 4463.2401575 -4885.4448819 -3192.3338583 4500.5826772 -4889.0787402 -3219.9330709 4472.7440945 -4896.3543307 -3228.5606299 4480.5551181 -5012.9015748 -3176.0858268 4440.5826772 -5112.8031496 -3104.0952756 4387.7795276 -5131.7007874 -3099.5523622 4425.9212598 -5122.1771654 -3113.7559055 4390.4606299 -5144.8937008 -3115.3374016 4426.7086614 -5017.1653543 -3157.4645669 4475.0078740 -5117.6377953 -3085.0622047 4421.9015748 -4896.3543307 -3205.2751969 4512.2992126 4393.4448819 -3307.7212598 4491.0669291 4393.4448819 -3535.8374016 4496.0826772 4393.4448819 -3538.5137795 4537.0118110 4393.4448819 -3538.9661417 4516.4291339 4393.4448819 -3534.4937008 4557.2047244 4393.4448819 -3529.2236220 4476.5826772 4393.4448819 -3527.0283465 4576.3897638 4393.4448819 -3519.3240157 4458.5314961 4393.4448819 -3516.3452756 4593.9921260 4393.4448819 -3506.4393701 4442.4724409 4393.4448819 -3502.7681102 4609.4685039 4393.4448819 -3499.6799213 4519.0000000 4393.4448819 -3490.9633858 4428.8976378 4393.4448819 -3497.5940945 4505.4330709 4393.4448819 -3493.1846457 4492.4330709 4393.4448819 -3486.5846457 4480.4015748 4393.4448819 -3473.3637795 4418.2125984 4393.4448819 -3477.9956693 4469.6929134 4393.4448819 -3467.6779528 4460.6417323 4393.4448819 -3454.1767717 4410.7480315 4393.4448819 -3455.9456693 4453.5196850 4393.4448819 -3443.1539370 4448.5433071 4393.4448819 -3433.9850394 4406.7283465 4393.4448819 -3429.6925197 4445.8622047 4393.4448819 -3413.4023622 4406.2755906 4393.4448819 -3415.9712598 4445.5629921 4393.4448819 -3402.4047244 4447.6496063 4393.4448819 -3393.0539370 4409.4055118 4393.4448819 -3389.4066929 4452.0590551 4393.4448819 -3373.5566929 4416.0196850 4393.4448819 -3377.3728346 4458.6574803 4393.4448819 -3366.6673228 4467.2480315 4393.4448819 -3355.5051181 4425.9173228 4393.4448819 -3357.6153543 4477.5629921 4393.4448819 -3350.4933071 4489.2992126 4393.4448819 -3339.4472441 4438.8031496 4393.4448819 -3345.5165354 4502.0905512 4393.4448819 -3342.8366142 4515.5511811 4393.4448819 -3342.5350394 4529.2716535 4393.4448819 -3499.3783465 4532.7204724 4393.4448819 -3486.7098425 4622.3503937 4393.4448819 -3496.6984252 4546.1811024 4393.4448819 -3491.7216535 4558.9724409 4393.4448819 -3484.5992126 4570.7047244 4393.4448819 -3468.6578740 4632.2519685 4393.4448819 -3475.5484252 4581.0236220 4393.4448819 -3464.8429134 4589.6102362 4393.4448819 -3449.1618110 4638.8661417 4393.4448819 -3452.8078740 4596.2125984 4393.4448819 -3439.8102362 4600.6220472 4393.4448819 -3428.8129921 4641.9921260 4393.4448819 -3426.2444882 4602.7086614 4393.4448819 -3408.2299213 4641.5393701 4393.4448819 -3412.5224409 4602.4055118 4393.4448819 -3399.0610236 4599.7244094 4393.4448819 -3388.0381890 4637.5196850 4393.4448819 -3386.2700787 4594.7480315 4393.4448819 -3368.8511811 4630.0551181 4393.4448819 -3374.5370079 4587.6259843 4393.4448819 -3364.2192913 4578.5748031 4393.4448819 -3351.2523622 4619.3740157 4393.4448819 -3355.6303150 4567.8700787 4393.4448819 -3349.0307087 4555.8346457 4393.4448819 -3335.7751969 4605.7952756 4393.4448819 -3344.6208661 4542.8385827 4393.4448819 -3325.8696850 4454.2795276 4393.4448819 -3322.8917323 4589.7362205 4393.4448819 -3315.1862205 4471.8779528 4393.4448819 -3312.9917323 4571.6850394 4393.4448819 -3307.7212598 4491.0669291 4393.4448819 -3306.3775591 4552.1889764 4393.4448819 -3303.7015748 4511.2559055 4393.4448819 -3303.2488189 4531.8385827 4393.4448819 -3339.4472441 4438.8031496 -4267.9724409 -3355.5051181 4425.9173228 -4267.9724409 -3303.7015748 4511.2559055 -4388.7598425 -3368.0870079 4412.0078740 -4390.0826772 -3297.7192913 4527.7834646 -4510.6574803 -3371.0043307 4393.2322835 -4513.8976378 -3284.0342520 4535.7992126 -4632.9881890 -3363.3933071 4369.5944882 -4638.5590551 -3262.2196850 4534.4448819 -4762.9055118 -3231.8027559 4522.9251969 -4754.8070866 -3344.3862205 4341.0078740 -4874.8622047 -3313.1937008 4307.3385827 -4885.4448819 -3329.9220472 4313.0000000 -4896.3543307 -3344.9862205 4321.8267717 -5017.1653543 -3295.0531496 4287.4251969 -5117.6377953 -3222.6507874 4234.3188976 -5122.1771654 -3201.2795276 4271.1338583 -5117.6377953 -3222.6507874 4234.3188976 -5131.7007874 -3230.8377953 4246.9330709 -5012.9015748 -3267.8114173 4315.5275591 -5112.8031496 -3195.8212598 4262.7244094 -4896.3543307 -3321.7011811 4353.5708661 -4889.0787402 -3311.6582677 4347.6889764 -4882.0275591 -3300.5055118 4343.9133858 -4875.4094488 -3288.5822835 4342.3622047 -4763.3503937 -3338.5212598 4378.9921260 -4641.3464567 -3364.8165354 4408.0433071 -4517.3700787 -3379.7460630 4431.0275591 -4515.6181102 -3366.9074803 4435.5551181 -4267.9724409 -3366.6673228 4467.2480315 -4267.9724409 -3357.6153543 4477.5629921 -4391.9291339 -3371.7590551 4454.5393701 -4267.9724409 -3350.4933071 4489.2992126 -4267.9724409 -3345.5165354 4502.0905512 -4392.5787402 -3337.1940945 4511.4094488 -4517.3700787 -3319.8763780 4512.6535433 -4641.3464567 -3293.4669291 4505.3188976 -4645.0629921 -3297.3681102 4517.9409449 -4768.7480315 -3263.4657480 4500.2677165 -4771.5314961 -3243.0980315 4537.8188976 -4774.5000000 -3270.9968504 4510.1968504 -4780.4330709 -3280.2220472 4518.4488189 -4903.6299213 -3238.6035433 4486.4370079 -5021.1653543 -3186.5448819 4443.8464567 -5041.1968504 -3190.0622047 4481.5196850 -5131.7007874 -3099.5523622 4425.9212598 -5144.8937008 -3115.3374016 4426.7086614 -5029.5629921 -3173.1531496 4479.9055118 -5122.1771654 -3113.7559055 4390.4606299 -5130.9763780 -3124.2791339 4390.9842520 -4907.2677165 -3220.3397638 4521.1259843 -4780.4330709 -3256.9370079 4550.1929134 4393.4448819 -3303.7015748 4511.2559055 4393.4448819 -3473.3637795 4418.2125984 -4267.9724409 -3490.9633858 4428.8976378 -4267.9724409 -3473.3637795 4418.2125984 4393.4448819 -3490.9633858 4428.8976378 4393.4448819 -3454.1767717 4410.7480315 -4267.9724409 -3454.1767717 4410.7480315 4393.4448819 -3433.9850394 4406.7283465 -4267.9724409 -3433.9850394 4406.7283465 4393.4448819 -3413.4023622 4406.2755906 -4267.9724409 -3413.4023622 4406.2755906 4393.4448819 -3393.0539370 4409.4055118 -4267.9724409 -3393.0539370 4409.4055118 4393.4448819 -3373.5566929 4416.0196850 -4267.9724409 -3373.5566929 4416.0196850 4393.4448819 -3355.5051181 4425.9173228 -4267.9724409 -3303.2488189 4531.8385827 4393.4448819 -3303.2488189 4531.8385827 -4267.9724409 -3306.3775591 4552.1889764 4393.4448819 -3306.3775591 4552.1889764 -4267.9724409 -3312.9917323 4571.6850394 4393.4448819 -3312.9917323 4571.6850394 -4267.9724409 -3322.8917323 4589.7362205 4393.4448819 -3322.8917323 4589.7362205 -4267.9724409 -3335.7751969 4605.7952756 4393.4448819 -3335.7751969 4605.7952756 4393.4448819 -3351.2523622 4619.3740157 -4267.9724409 -3351.2523622 4619.3740157 4393.4448819 -3368.8511811 4630.0551181 -4267.9724409 -3368.8511811 4630.0551181 4393.4448819 -3388.0381890 4637.5196850 -4267.9724409 -3388.0381890 4637.5196850 4393.4448819 -3408.2299213 4641.5393701 -4267.9724409 -3408.2299213 4641.5393701 4393.4448819 -3428.8129921 4641.9921260 -4267.9724409 -3428.8129921 4641.9921260 4393.4448819 -3449.1618110 4638.8661417 -4267.9724409 -3449.1618110 4638.8661417 4393.4448819 -3468.6578740 4632.2519685 -4267.9724409 -3468.6578740 4632.2519685 4393.4448819 -3486.7098425 4622.3503937 -4267.9724409 -3486.7098425 4622.3503937 4393.4448819 -3502.7681102 4609.4685039 -4267.9724409 -3502.7681102 4609.4685039 -4267.9724409 -3516.3452756 4593.9921260 4393.4448819 -3516.3452756 4593.9921260 -4267.9724409 -3527.0283465 4576.3897638 4393.4448819 -3527.0283465 4576.3897638 -4267.9724409 -3534.4937008 4557.2047244 4393.4448819 -3534.4937008 4557.2047244 -4267.9724409 -3538.5137795 4537.0118110 4393.4448819 -3538.5137795 4537.0118110 -4267.9724409 -3538.9661417 4516.4291339 4393.4448819 -3538.9661417 4516.4291339 -4267.9724409 -3535.8374016 4496.0826772 4393.4448819 -3535.8374016 4496.0826772 -4267.9724409 -3529.2236220 4476.5826772 4393.4448819 -3529.2236220 4476.5826772 -4267.9724409 -3519.3240157 4458.5314961 4393.4448819 -3519.3240157 4458.5314961 -4267.9724409 -3506.4393701 4442.4724409 4393.4448819 -3506.4393701 4442.4724409 -4390.0826772 -3387.5236220 4405.3503937 -4391.7125984 -3300.7740157 4548.0787402 -4517.6496063 -3290.3074803 4555.0472441 -4513.8976378 -3391.0590551 4389.8897638 -4638.5590551 -3383.2129921 4369.4881890 -4644.7204724 -3271.2755906 4551.8779528 -4762.9055118 -3363.0874016 4343.9370079 -4771.5314961 -3380.6866142 4350.2362205 -4780.4330709 -3396.6480315 4359.7165354 -4907.2677165 -3357.9279528 4333.5433071 -5131.7007874 -3230.8377953 4246.9330709 -5029.5629921 -3304.4377953 4300.9173228 -5130.9763780 -3204.9409449 4281.0118110 -5122.1771654 -3201.2795276 4271.1338583 -5021.1653543 -3274.0681102 4324.5236220 -4903.6299213 -3330.3287402 4361.3818898 -4780.4330709 -3373.3625984 4391.4645669 -4774.5000000 -3362.7216535 4385.1417323 -4768.7480315 -3350.9893701 4380.9409449 -4645.0629921 -3378.0303150 4407.9685039 -4519.5275591 -3393.1161417 4428.7992126 -4393.4606299 -3396.7220472 4443.4803150 -4392.5787402 -3383.7645669 4447.9173228 4393.4448819 -3357.6153543 4477.5629921 4393.4448819 -3366.6673228 4467.2480315 -4267.9724409 -3377.3728346 4458.6574803 4393.4448819 -3350.4933071 4489.2992126 4393.4448819 -3345.5165354 4502.0905512 -4267.9724409 -3342.8366142 4515.5511811 -4393.4606299 -3336.8523622 4525.1023622 -4519.5275591 -3321.7665354 4526.0748031 -4522.0314961 -3325.9484252 4538.9055118 -4649.1692913 -3303.4043307 4529.5629921 -4651.2913386 -3283.2594488 4567.2755906 -4653.5472441 -3311.3944882 4539.8267717 -4658.0629921 -3321.0929134 4548.4251969 -4786.3661417 -3290.8629921 4524.7677165 -4910.6811024 -3249.7562992 4490.2125984 -5051.7125984 -3207.6779528 4479.7952756 -5156.8188976 -3131.9374016 4424.2401575 -4927.7755906 -3254.9543307 4529.1141732 -4917.8464567 -3237.0688976 4526.7874016 -5028.9212598 -3197.8177165 4444.9212598 -5130.9763780 -3124.2791339 4390.9842520 -5156.8188976 -3131.9374016 4424.2401575 -5138.9251969 -3135.3456693 4389.3385827 -4789.3307087 -3272.8980315 4559.6771654 -4658.0629921 -3297.8078740 4580.1732283 -4397.9173228 -3467.4791339 4413.8976378 -4400.2125984 -3484.9748031 4424.5039370 -4395.6889764 -3448.3933071 4406.5078740 -4393.6023622 -3428.2960630 4402.5551181 -4391.7125984 -3407.7988189 4402.1653543 -4393.6023622 -3307.3031496 4567.5118110 -4395.6889764 -3317.1082677 4585.4960630 -4397.9173228 -3329.8909449 4601.4803150 -4400.2125984 -3345.2641732 4614.9803150 -4402.5078740 -3362.7586614 4625.5866142 -4404.7362205 -3381.8448819 4632.9803150 -4406.8228346 -3401.9417323 4636.9291339 -4408.7125984 -3422.4393701 4637.3188976 -4410.3425197 -3442.7145669 4634.1377953 -4411.6653543 -3462.1511811 4627.4763780 -4412.6377953 -3480.1586614 4617.5472441 -4413.2362205 -3496.1901575 4604.6417323 -4413.4370079 -3509.7582677 4589.1574803 -4413.2362205 -3520.4503937 4571.5669291 -4412.6377953 -3527.9425197 4552.3976378 -4411.6653543 -3532.0066929 4532.2401575 -4410.3425197 -3532.5192913 4511.7007874 -4408.7125984 -3529.4641732 4491.4055118 -4406.8228346 -3522.9350394 4471.9724409 -4404.7362205 -3513.1307087 4453.9881890 -4402.5078740 -3500.3472441 4438.0039370 -4521.8031496 -3299.8299213 4572.8228346 -4517.6496063 -3411.3007874 4390.0905512 -4644.7204724 -3402.5606299 4372.8897638 -4651.2913386 -3420.8476378 4379.6929134 -4789.3307087 -3410.4866142 4372.0944882 -4917.8464567 -3368.3543307 4347.7992126 -5144.8937008 -3236.3307087 4261.7519685 -5041.1968504 -3311.0551181 4316.5629921 -5138.9251969 -3206.6960630 4292.0629921 -5144.8937008 -3236.3307087 4261.7519685 -5156.8188976 -3238.9622047 4278.3267717 -5130.9763780 -3204.9409449 4281.0118110 -5028.9212598 -3278.4795276 4334.9527559 -4910.6811024 -3337.2799213 4370.8858268 -4786.3661417 -3382.5885827 4399.7165354 -4653.5472441 -3403.1192913 4414.7755906 -4649.1692913 -3390.9279528 4410.2362205 -4522.0314961 -3406.6102362 4428.9330709 -4394.5472441 -3410.2389764 4441.3582677 -4267.9724409 -3402.4047244 4447.6496063 -4267.9724409 -3389.4066929 4452.0590551 4393.4448819 -3377.3728346 4458.6574803 4393.4448819 -3342.8366142 4515.5511811 -4267.9724409 -3342.5350394 4529.2716535 -4394.5472441 -3338.8889764 4538.6338583 -4395.8031496 -3343.2421260 4551.5905512 -4524.7992126 -3332.2972441 4550.7559055 -4526.2283465 -3312.3118110 4588.5866142 -4527.7480315 -3340.6177165 4561.2637795 -4530.7913386 -3350.6594488 4570.1141732 -4662.5787402 -3332.2066929 4555.0944882 -4792.1181102 -3302.5960630 4528.9685039 -4917.2992126 -3261.6799213 4491.7637795 -5060.7874016 -3225.4657480 4474.7874016 -5167.1141732 -3148.8484252 4418.5905512 -4936.7480315 -3273.4535433 4528.0393701 -4806.0551181 -3309.1988189 4568.9015748 -4797.9606299 -3290.4972441 4565.9763780 -5035.9330709 -3209.5622047 4443.7755906 -5167.1141732 -3238.6523622 4296.1535433 -5175.4645669 -3235.4114173 4314.6929134 -5181.6181102 -3229.3362205 4333.3779528 -5185.3858268 -3220.6133858 4351.6417323 -5186.6535433 -3209.5059055 4368.9291339 -5145.7874016 -3206.4889764 4303.9488189 -5185.3858268 -3196.3523622 4384.7165354 -5151.3543307 -3204.3283465 4316.3070866 -5155.4566929 -3200.2783465 4328.7637795 -5157.9685039 -3194.4625984 4340.9370079 -5181.6181102 -3181.5523622 4398.5236220 -5158.8149606 -3187.0578740 4352.4645669 -5157.9685039 -3178.2889764 4362.9881890 -5175.4645669 -3165.5559055 4409.9291339 -5155.4566929 -3168.4224409 4372.1929134 -5151.3543307 -3157.7578740 4379.7992126 -5167.1141732 -3148.8484252 4418.5905512 -5145.7874016 -3146.6196850 4385.5708661 -5138.9251969 -3135.3456693 4389.3385827 -4530.7913386 -3327.3740157 4601.8582677 -4526.2283465 -3449.9000000 4401.0039370 -4530.7913386 -3467.0850394 4411.3818898 -4521.8031496 -3431.1153543 4393.8346457 -4535.3543307 -3344.5582677 4612.2362205 -4539.7795276 -3363.3433071 4619.4094488 -4543.9330709 -3383.1582677 4623.1496063 -4547.6850394 -3403.4000000 4623.3543307 -4550.9251969 -3423.4543307 4620.0078740 -4553.5511811 -3442.7125984 4613.2204724 -4555.4881890 -3460.5881890 4603.1929134 -4556.6732283 -3476.5385827 4590.2283465 -4557.0708661 -3490.0795276 4574.7244094 -4556.6732283 -3500.7996063 4557.1535433 -4555.4881890 -3508.3716535 4538.0433071 -4553.5511811 -3512.5681102 4517.9803150 -4550.9251969 -3513.2586614 4497.5748031 -4547.6850394 -3510.4248031 4477.4409449 -4543.9330709 -3504.1507874 4458.1929134 -4539.7795276 -3494.6291339 4440.4212598 -4535.3543307 -3482.1472441 4424.6574803 -4658.0629921 -3437.5188976 4389.6968504 -4664.8385827 -3452.0673228 4402.5944882 -4797.9606299 -3421.7826772 4386.9881890 -4927.7755906 -3375.9476378 4364.1574803 -5156.8188976 -3238.9622047 4278.3267717 -5051.7125984 -3314.7027559 4333.8818898 -5138.9251969 -3206.6960630 4292.0629921 -5035.9330709 -3280.9114173 4346.5000000 -4917.2992126 -3342.3417323 4381.7952756 -4792.1181102 -3390.1188976 4409.6456693 -4662.5787402 -3423.9326772 4430.0393701 -4658.0629921 -3414.2334646 4421.4409449 -4524.7992126 -3419.8200787 4431.4291339 -4395.8031496 -3423.9043307 4441.6181102 -4267.9724409 -3415.9712598 4445.5629921 4393.4448819 -3402.4047244 4447.6496063 4393.4448819 -3389.4066929 4452.0590551 4393.4448819 -3342.5350394 4529.2716535 -4267.9724409 -3344.6208661 4542.8385827 -4267.9724409 -3349.0307087 4555.8346457 -4397.1968504 -3349.7787402 4563.5787402 -4398.6811024 -3358.3003937 4574.2322835 -4400.2125984 -3368.5488189 4583.2362205 -4533.8346457 -3362.1153543 4577.0314961 -4666.9566929 -3344.3988189 4559.6299213 -4797.5157480 -3315.0633858 4530.9212598 -4923.2834646 -3274.0122047 4491.0472441 -5068.1496063 -3242.8850394 4466.6496063 -5175.4645669 -3165.5559055 4409.9291339 -4944.4921260 -3292.0027559 4523.5905512 -4813.3700787 -3328.4350394 4568.3700787 -4677.5669291 -3352.1133858 4600.3818898 -4671.4055118 -3332.7657480 4596.9803150 -4664.8385827 -3314.4787402 4590.1732283 -5041.9842520 -3221.4204724 4440.4370079 -5145.7874016 -3146.6196850 4385.5708661 -5046.8937008 -3233.0330709 4435.0118110 -5151.3543307 -3157.7578740 4379.7992126 -5050.5078740 -3244.0468504 4427.6614173 -5155.4566929 -3168.4224409 4372.1929134 -5157.9685039 -3178.2889764 4362.9881890 -5052.7244094 -3254.1275591 4418.6141732 -5158.8149606 -3187.0578740 4352.4645669 -5053.4685039 -3262.9685039 4408.1417323 -5157.9685039 -3194.4625984 4340.9370079 -5052.7244094 -3270.3011811 4396.5629921 -5050.5078740 -3275.9027559 4384.2322835 -5155.4566929 -3200.2783465 4328.7637795 -5046.8937008 -3279.6031496 4371.5196850 -5151.3543307 -3204.3283465 4316.3070866 -5041.9842520 -3281.2897638 4358.8110236 -5145.7874016 -3206.4889764 4303.9488189 -5167.1141732 -3238.6523622 4296.1535433 -5060.7874016 -3315.2704724 4352.3543307 -5175.4645669 -3235.4114173 4314.6929134 -5068.1496063 -3312.7405512 4371.4133858 -5181.6181102 -3229.3362205 4333.3779528 -5073.5748031 -3307.1897638 4390.4803150 -5185.3858268 -3220.6133858 4351.6417323 -5076.8976378 -3298.7874016 4408.9803150 -5078.0157480 -3287.7885827 4426.3464567 -5186.6535433 -3209.5059055 4368.9291339 -5076.8976378 -3274.5267717 4442.0551181 -5185.3858268 -3196.3523622 4384.7165354 -5073.5748031 -3259.4059055 4455.6259843 -5181.6181102 -3181.5523622 4398.5236220 -4683.1377953 -3371.9330709 4600.2716535 -4694.7204724 -3428.2433071 4579.4685039 -4696.4803150 -3444.0606299 4566.4055118 -4697.0748031 -3457.5566929 4550.8700787 -4696.4803150 -3468.3212598 4533.3307087 -4694.7204724 -3476.0271654 4514.3188976 -4691.8464567 -3480.4409449 4494.4173228 -4687.9488189 -3481.4275591 4474.2244094 -4683.1377953 -3478.9578740 4454.3622047 -4677.5669291 -3473.1066929 4435.4251969 -4671.4055118 -3464.0511811 4417.9921260 -4806.0551181 -3430.1921260 4403.9448819 -4936.7480315 -3380.4783465 4382.1259843 -4923.2834646 -3345.3622047 4393.7716535 -4666.9566929 -3431.9216535 4440.3070866 -4533.8346457 -3453.8409449 4451.9763780 -4530.7913386 -3443.7996063 4443.1299213 -4527.7480315 -3432.3433071 4436.2086614 -4397.1968504 -3437.3015748 4444.2519685 -4267.9724409 -3429.6925197 4445.8622047 4393.4448819 -3415.9712598 4445.5629921 4393.4448819 -3344.6208661 4542.8385827 4393.4448819 -3349.0307087 4555.8346457 -4267.9724409 -3355.6303150 4567.8700787 -4267.9724409 -3364.2192913 4578.5748031 -4267.9724409 -3374.5370079 4587.6259843 -4401.7440945 -3380.2122047 4590.3070866 -4536.7834646 -3374.6385827 4581.8110236 -4671.0669291 -3357.2964567 4561.8976378 -4802.3937008 -3327.8877953 4530.5629921 -4928.4448819 -3286.3787402 4488.0826772 -4950.7755906 -3310.0393701 4515.9055118 -4819.6889764 -3347.6216535 4564.3858268 -4932.6338583 -3298.4035433 4482.9566929 -4935.7204724 -3309.7208661 4475.8346457 -4937.6102362 -3319.9877953 4466.9212598 -4938.2480315 -3328.8913386 4456.4960630 -4937.6102362 -3336.1610236 4444.8700787 -4935.7204724 -3341.5771654 4432.4015748 -4932.6338583 -3344.9740157 4419.4685039 -4928.4448819 -3346.2488189 4406.4566929 -4944.4921260 -3381.8074803 4401.1574803 -4950.7755906 -3379.8948819 4420.6692913 -4955.4055118 -3374.8000000 4440.0708661 -4958.2401575 -3366.6763780 4458.7755906 -4959.1929134 -3355.7712598 4476.2125984 -4958.2401575 -3342.4157480 4491.8503937 -4955.4055118 -3327.0161417 4505.2165354 -4687.9488189 -3391.6232283 4596.6614173 -4691.8464567 -3410.5854331 4589.6535433 -4828.5866142 -3383.5318898 4546.6732283 -4830.8976378 -3399.1649606 4533.4763780 -4831.6771654 -3412.5988189 4517.8937008 -4830.8976378 -3423.4251969 4500.4015748 -4828.5866142 -3431.3165354 4481.5236220 -4824.8110236 -3436.0307087 4461.8425197 -4819.6889764 -3437.4263780 4441.9527559 -4813.3700787 -3435.4598425 4422.4566929 -4797.5157480 -3395.7255906 4420.9488189 -4802.3937008 -3399.2374016 4433.2874016 -4671.0669291 -3437.9586614 4451.9291339 -4536.7834646 -3462.1622047 4462.4881890 -4401.7440945 -3471.9377953 4465.2519685 -4400.2125984 -3461.6893701 4456.2519685 -4398.6811024 -3450.0259843 4449.1811024 -4267.9724409 -3443.1539370 4448.5433071 4393.4448819 -3429.6925197 4445.8622047 4393.4448819 -3355.6303150 4567.8700787 4393.4448819 -3364.2192913 4578.5748031 4393.4448819 -3374.5370079 4587.6259843 -4267.9724409 -3386.2700787 4594.7480315 -4403.2283465 -3392.9362205 4595.2322835 -4539.5511811 -3387.8488189 4584.3070866 -4674.7795276 -3370.5098425 4561.8267717 -4806.6023622 -3340.6787402 4527.9094488 -4824.8110236 -3366.1751969 4557.0826772 -4810.0196850 -3353.0472441 4523.0393701 -4814.0787402 -3375.0413386 4507.3031496 -4814.5944882 -3383.9964567 4496.9133858 -4814.0787402 -3391.2141732 4485.2519685 -4812.5354331 -3396.4744094 4472.6692913 -4810.0196850 -3399.6177165 4459.5472441 -4806.6023622 -3400.5480315 4446.2874016 -4674.7795276 -3441.8598425 4464.5511811 -4539.5511811 -3468.5106299 4474.3346457 -4267.9724409 -3477.9956693 4469.6929134 -4267.9724409 -3467.6779528 4460.6417323 -4267.9724409 -3455.9456693 4453.5196850 4393.4448819 -3443.1539370 4448.5433071 4393.4448819 -3386.2700787 4594.7480315 -4267.9724409 -3399.0610236 4599.7244094 -4404.6181102 -3406.3342520 4597.8661417 -4542.0551181 -3401.3429134 4584.4409449 -4677.9842520 -3383.6366142 4559.4173228 -4812.5354331 -3364.6188976 4516.0984252 -4682.5039370 -3439.9059055 4504.5236220 -4683.6771654 -3434.7685039 4517.1968504 -4680.5866142 -3442.8484252 4491.2559055 -4677.9842520 -3443.5062992 4477.7952756 -4542.0551181 -3472.6929134 4487.1692913 -4403.2283465 -3480.4598425 4475.9055118 4393.4448819 -3477.9956693 4469.6929134 4393.4448819 -3467.6779528 4460.6417323 4393.4448819 -3455.9456693 4453.5196850 4393.4448819 -3399.0610236 4599.7244094 -4267.9724409 -3412.5224409 4602.4055118 -4405.8779528 -3419.9992126 4598.1259843 -4544.2125984 -3414.7129921 4582.2125984 -4680.5866142 -3396.2779528 4554.7480315 -4682.5039370 -3408.0500000 4547.9566929 -4684.0708661 -3427.5921260 4528.8897638 -4683.6771654 -3418.5952756 4539.2480315 -4547.2559055 -3471.3244094 4527.5708661 -4548.0472441 -3466.2759843 4540.3070866 -4545.9645669 -3474.1216535 4514.1929134 -4544.2125984 -3474.5822835 4500.5905512 -4404.6181102 -3486.9964567 4487.8976378 -4405.8779528 -3491.3492126 4500.8503937 -4267.9724409 -3486.5846457 4480.4015748 4393.4448819 -3486.5846457 4480.4015748 4393.4448819 -3412.5224409 4602.4055118 -4267.9724409 -3426.2444882 4602.7086614 -4406.9645669 -3433.5161417 4596.0039370 -4545.9645669 -3427.5511811 4577.6850394 -4547.2559055 -3439.4688976 4571.0000000 -4548.3110236 -3459.1299213 4552.0236220 -4548.0472441 -3450.1019685 4562.3582677 -4408.4960630 -3490.3350394 4541.5118110 -4408.8937008 -3485.3401575 4554.2913386 -4407.8464567 -3493.0440945 4528.0748031 -4406.9645669 -3493.3854331 4514.3818898 -4267.9724409 -3493.1846457 4492.4330709 -4267.9724409 -3497.5940945 4505.4330709 4393.4448819 -3493.1846457 4492.4330709 4393.4448819 -3426.2444882 4602.7086614 -4267.9724409 -3439.8102362 4600.6220472 -4407.8464567 -3446.4744094 4591.5669291 -4408.4960630 -3458.4787402 4584.9448819 -4409.0275591 -3478.2118110 4566.0196850 -4408.8937008 -3469.1665354 4576.3425197 -4267.9724409 -3496.6984252 4546.1811024 -4267.9724409 -3491.7216535 4558.9724409 -4267.9724409 -3499.3783465 4532.7204724 -4267.9724409 -3499.6799213 4519.0000000 4393.4448819 -3497.5940945 4505.4330709 4393.4448819 -3439.8102362 4600.6220472 -4267.9724409 -3452.8078740 4596.2125984 -4267.9724409 -3464.8429134 4589.6102362 -4267.9724409 -3484.5992126 4570.7047244 -4267.9724409 -3475.5484252 4581.0236220 4393.4448819 -3496.6984252 4546.1811024 4393.4448819 -3491.7216535 4558.9724409 4393.4448819 -3499.3783465 4532.7204724 4393.4448819 -3499.6799213 4519.0000000 4393.4448819 -3452.8078740 4596.2125984 4393.4448819 -3464.8429134 4589.6102362 4393.4448819 -3484.5992126 4570.7047244 4393.4448819 -3475.5484252 4581.0236220 - - - - - - - - - - 0.6663497 0.6012420 -0.4410058 0.6139566 0.7238156 -0.3148782 0.6234891 0.6304266 -0.4624108 0.6561896 0.6949535 -0.2940320 0.5320284 0.6827532 -0.5007933 0.5238977 0.7753385 -0.3526774 0.6561903 0.4892042 -0.5745377 0.6139549 0.5177541 -0.5958104 -0.7071225 0.5701379 -0.4182351 -0.7071250 0.5701585 -0.4182027 -0.7071266 0.5701723 -0.4181812 -0.7071225 0.5701379 -0.4182351 -0.7071134 0.5701661 -0.4182119 -0.7071421 0.5701614 -0.4181699 -0.7071225 0.5701379 -0.4182351 0.6260365 0.7674632 -0.1381253 0.5856611 0.7950557 -0.1577580 0.4338847 0.7264915 -0.5328735 0.4272534 0.8184031 -0.3842798 0.5238956 0.5692813 -0.6336026 0.4997484 0.8442106 -0.1938041 -0.7071288 0.5701908 -0.4181523 -0.7071251 0.5701468 -0.4182184 -0.7071142 0.5701563 -0.4182240 -0.7071288 0.5701908 -0.4181523 0.6260365 0.3622817 -0.6905289 0.5856615 0.3892988 -0.7109479 -0.6234952 -0.6304249 0.4624049 -0.6561966 -0.4892078 0.5745274 -0.6139564 -0.5177655 0.5957990 -0.6663549 -0.6012397 0.4410012 -0.6139582 -0.7238067 0.3148956 -0.6561983 -0.6949420 0.2940396 -0.6260400 -0.7674617 0.1381177 -0.5856685 -0.7950491 0.1577635 -0.7071117 0.5701931 -0.4181780 0.5767977 0.8165900 0.0220283 0.5394834 0.8419860 0.0041415 0.3302815 0.7611010 -0.5582467 0.3252286 0.8524811 -0.4092704 0.4272542 0.6123690 -0.6651752 0.4075566 0.8852947 -0.2239438 0.4997457 0.4384513 -0.7470038 0.4603439 0.8872649 -0.0290602 -0.7070900 0.5701445 -0.4182810 -0.5394852 -0.2489910 0.8043378 -0.6260482 -0.3623120 0.6905025 -0.5767845 -0.2242781 0.7855056 -0.5856742 -0.3893224 0.7109246 0.5394803 0.2489719 -0.8043470 0.5767924 0.2242783 -0.7854997 -0.5238930 -0.5692761 0.6336094 -0.5320361 -0.6827509 0.5007882 -0.5238949 -0.7753344 0.3526908 -0.4997509 -0.8442084 0.1938072 -0.5767861 -0.8165976 -0.0220491 -0.5394733 -0.8419924 -0.0041562 -0.7070797 0.5701984 -0.4182250 -0.7070833 0.5701950 -0.4182234 -0.7070861 0.5701925 -0.4182222 -0.7070797 0.5701984 -0.4182250 0.5099322 0.8408310 0.1815831 0.4768223 0.8632003 0.1659086 0.2225144 0.7861427 -0.5765994 0.2191196 0.8771364 -0.4273386 0.3252246 0.6464493 -0.6901683 0.3102501 0.9177932 -0.2477914 0.4075573 0.4795518 -0.7771275 0.3754155 0.9251140 -0.0568093 0.4603455 0.2942480 -0.8375561 0.4068726 0.9032203 0.1365570 -0.7070787 0.5701879 -0.4182409 -0.4768120 -0.1010333 0.8731796 -0.5099081 -0.0793672 0.8565598 -0.4603523 -0.2942697 0.8375447 -0.4997473 -0.4384454 0.7470062 0.4768231 0.1010574 -0.8731707 0.5099281 0.0793836 -0.8565463 -0.4272553 -0.6123920 0.6651533 -0.4338846 -0.7264803 0.5328889 -0.4272519 -0.8184053 0.3842766 -0.4075506 -0.8853017 0.2239273 -0.4603356 -0.8872701 0.0290336 -0.5099191 -0.8408355 -0.1815989 -0.4768071 -0.8632024 -0.1659415 -0.7070887 0.5701971 -0.4182114 -0.7070902 0.5701887 -0.4182204 -0.7070887 0.5701971 -0.4182114 0.4274859 0.8394108 0.3356268 0.3996205 0.8580520 0.3225682 0.1119662 0.8012797 -0.5877196 0.1102528 0.8920497 -0.4382826 0.2191195 0.6710799 -0.7082643 0.2090200 0.9413099 -0.2650401 0.3102523 0.5120475 -0.8009687 0.2857697 0.9550559 -0.0787650 0.3753998 0.3320320 -0.8653495 0.3318124 0.9366698 0.1120276 0.4068869 0.1410916 -0.9025166 0.3410032 0.8915891 0.2979692 -0.7071021 0.5701571 -0.4182433 -0.3995751 0.0500078 0.9153354 -0.4274507 0.0680154 0.9014764 -0.4068821 -0.1410484 0.9025255 -0.4075524 -0.4795171 0.7771514 0.3996284 -0.0498994 -0.9153181 0.4274872 -0.0679478 -0.9014642 -0.3252274 -0.6464372 0.6901783 -0.3302816 -0.7610745 0.5582827 -0.3252292 -0.8524871 0.4092575 -0.3102394 -0.9178049 0.2477613 -0.3754148 -0.9251162 0.0567779 -0.4068633 -0.9032186 -0.1365956 -0.4274824 -0.8394101 -0.3356330 -0.3996198 -0.8580515 -0.3225703 0.3320089 0.8123677 0.4794047 0.3102865 0.8267368 0.4692852 -0.3319926 -0.8123594 -0.4794300 -0.3102763 -0.8267345 -0.4692959 -0.7071387 0.5701537 -0.4181861 -0.7070873 0.5702055 -0.4182025 -0.7071387 0.5701537 -0.4181861 -0.7070873 0.5702055 -0.4182025 -0.7070873 0.5702055 -0.4182025 -0.7070873 0.5702055 -0.4182025 0.0280917 0.8060187 -0.5912230 0.0276621 0.8965796 -0.4420179 0.1102534 0.6859892 -0.7192100 0.1051658 0.9555426 -0.2754606 0.2090193 0.5355340 -0.8182385 0.1925392 0.9767141 -0.0946480 0.2857628 0.3619715 -0.8873085 0.2525853 0.9631312 0.0926228 0.3318050 0.1744997 -0.9270681 0.2780979 0.9196263 0.2773968 0.3410134 -0.0163615 -0.9399160 0.2647685 0.8527780 0.4501859 -0.7071808 0.5701018 -0.4181857 -0.7070838 0.5701821 -0.4182402 -0.7071197 0.5701668 -0.4182004 -0.7070838 0.5701821 -0.4182402 -0.7070838 0.5701821 -0.4182402 -0.7070838 0.5701821 -0.4182402 -0.7070838 0.5701821 -0.4182402 -0.7070838 0.5701821 -0.4182402 -0.7070838 0.5701821 -0.4182402 -0.7070838 0.5701821 -0.4182402 -0.3102407 0.1993401 0.9295237 -0.3319722 0.2132896 0.9188591 -0.3409985 0.0164051 0.9399207 -0.3318101 -0.1744990 0.9270664 -0.3754117 -0.3320231 0.8653477 0.3102640 -0.1992889 -0.9295269 0.3319843 -0.2132381 -0.9188666 -0.2191143 -0.6710781 0.7082677 -0.2225167 -0.7861214 0.5766276 -0.3102386 -0.5120249 0.8009884 -0.2191210 -0.8771519 0.4273061 -0.2090204 -0.9413174 0.2650134 -0.2857740 -0.9550560 0.0787476 -0.3318058 -0.9366704 -0.1120419 -0.3410087 -0.8915904 -0.2979590 0.2263864 0.7605249 0.6085648 0.2115262 0.7702420 0.6016510 -0.2647661 -0.8527806 -0.4501823 -0.2264001 -0.7605336 -0.6085487 -0.2115396 -0.7702546 -0.6016302 0.1138589 0.6854684 0.7191448 0.1063697 0.6903182 0.7156440 -0.1138693 -0.6854878 -0.7191246 -0.1063871 -0.6903438 -0.7156167 0.0019439 -0.5894734 -0.8077854 0.0020706 -0.5895757 -0.8077105 -0.7071441 0.5701304 -0.4182087 -0.7071441 0.5701304 -0.4182087 -0.0019266 0.5894867 0.8077758 -0.0020678 0.5895616 0.8077208 0.0000000 0.8063341 -0.5914603 0.0000000 0.8968038 -0.4424284 0.0276646 0.6909622 -0.7223613 0.0263872 0.9598227 -0.2793637 0.1051582 0.5497460 -0.8286864 0.0968774 0.9898199 -0.1042659 0.1925499 0.3836964 -0.9031620 0.1701733 0.9822756 0.0785853 0.2525832 0.2009645 -0.9464750 0.2116947 0.9418091 0.2611149 0.2159237 0.8745487 0.4342137 0.2781109 0.0117006 -0.9604777 0.2647943 -0.1731961 -0.9486238 0.1804952 0.7879981 0.5886259 0.2115109 -0.3424924 -0.9154027 0.2263744 -0.3519958 -0.9082145 0.1063689 -0.4752165 -0.8734157 0.1138633 -0.4800008 -0.8698473 -0.0019439 -0.5934073 -0.8049000 -0.0020726 -0.5933112 -0.8049705 -0.7071759 0.5701299 -0.4181557 0.0019422 0.5934030 0.8049032 -0.1138730 0.4800077 0.8698423 0.0020847 0.5933235 0.8049614 -0.1064248 0.4751532 0.8734433 -0.2115724 0.3424222 0.9154147 -0.2263942 0.3520087 0.9082046 -0.2780981 -0.0116643 0.9604818 -0.2525753 -0.2009701 0.9464759 -0.2857724 -0.3620117 0.8872889 -0.1102566 -0.6859998 0.7191994 -0.1119680 -0.8012777 0.5877221 -0.2090127 -0.5355487 0.8182306 -0.1102538 -0.8920701 0.4382409 -0.1051700 -0.9555411 0.2754642 -0.1925376 -0.9767134 0.0946584 -0.2525812 -0.9631323 -0.0926220 -0.2780969 -0.9196251 -0.2774017 -0.2159244 -0.8745455 -0.4342197 -0.1804996 -0.7879973 -0.5886257 0.0907621 0.6992513 0.7090909 -0.0907887 -0.6992758 -0.7090633 0.0016692 -0.5892937 -0.8079171 0.1101794 -0.4707280 -0.8753717 0.1178519 -0.4757671 -0.8716402 -0.7070981 0.5701589 -0.4182476 -0.7070581 0.5702259 -0.4182240 -0.7071006 0.5701782 -0.4182171 -0.1101436 0.4707711 0.8753531 -0.1178986 0.4757275 0.8716555 -0.0016422 0.5893363 0.8078861 0.0000000 0.9600066 -0.2799773 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 0.6914182 -0.7224548 0.0263858 0.5548071 -0.8315605 0.0243064 0.9938282 -0.1082349 0.0968736 0.3967673 -0.9127931 0.0856257 0.9938597 0.0700797 0.1701670 0.2200923 -0.9605220 0.1426311 0.9578540 0.2493434 0.2117184 0.0339067 -0.9767424 0.1643672 0.8917708 0.4215783 0.1472012 0.8028393 0.5777377 0.2158950 -0.1515078 -0.9645904 0.1805355 -0.3246840 -0.9284327 0.0907581 -0.4662979 -0.8799598 -0.0016818 -0.5935892 -0.8047665 -0.1101407 -0.6935090 -0.7119791 -0.1178930 -0.6884880 -0.7156015 -0.7070275 0.5702399 -0.4182566 -0.7071212 0.5701881 -0.4181688 -0.7071033 0.5701853 -0.4182029 0.1101768 0.6935325 0.7119507 0.1179335 0.6885178 0.7155662 0.0016538 0.5935664 0.8047833 -0.0907798 0.4662679 0.8799735 -0.1805168 0.3246896 0.9284344 -0.2647803 0.1731872 0.9486293 -0.2159566 0.1513696 0.9645984 -0.2116886 -0.0338694 0.9767501 -0.1701732 -0.2201022 0.9605187 -0.1925307 -0.3836759 0.9031748 -0.0276645 -0.6909136 0.7224078 -0.0280915 -0.8060256 0.5912137 -0.1051747 -0.5497884 0.8286561 -0.0276623 -0.8966029 0.4419705 -0.0263885 -0.9598177 0.2793806 -0.0968769 -0.9898183 0.1042812 -0.1701768 -0.9822751 -0.0785841 -0.2116809 -0.9418018 -0.2611525 -0.1643661 -0.8917636 -0.4215939 -0.1471932 -0.8028222 -0.5777635 0.0740227 0.7067229 0.7036074 -0.0740424 -0.7067358 -0.7035924 0.0013652 -0.5891539 -0.8080197 0.0940119 -0.4614890 -0.8821506 0.2149925 -0.3377765 -0.9163434 -0.3131836 0.1947429 0.9295113 -0.2300536 0.3475033 0.9090197 -0.3351137 0.2088467 0.9187393 -0.2149607 0.3378260 0.9163326 0.2300253 -0.3474988 -0.9090286 -0.7070558 0.5702530 -0.4181908 -0.0939810 0.4615405 0.8821269 -0.0013421 0.5892060 0.8079818 0.0000000 0.9940367 -0.1090459 0.0000000 -0.4424519 -0.8967922 -0.0000860 -0.5926868 -0.8054330 0.0047898 -0.4438073 -0.8961095 0.0000000 -0.5914392 -0.8063496 0.0000000 -0.2799729 -0.9600079 0.0095257 -0.2813754 -0.9595505 0.0000000 -0.1090329 -0.9940381 0.0139792 -0.1103785 -0.9937913 0.0000000 0.0652670 -0.9978678 0.0180081 0.0640689 -0.9977830 0.0000000 0.2375443 -0.9713767 0.0214841 0.2365176 -0.9713896 0.0000000 0.4025443 -0.9154005 0.0243029 0.4017223 -0.9154390 0.0000000 0.5554364 -0.8315590 0.0214845 0.9975740 0.0662160 0.0000000 0.9978702 0.0652315 0.0180066 0.9709399 0.2386450 0.0000000 0.9713830 0.2375187 0.0139808 0.9147426 0.4037952 0.0000000 0.9153747 0.4026030 0.0095327 0.8307140 0.5566178 0.0000000 0.8315633 0.5554300 0.0047938 0.7214240 0.6924771 0.0000000 0.7225043 0.6913664 0.0000000 0.5914240 0.8063608 -0.0000896 0.5901657 0.8072822 0.0000000 0.4423875 0.8968240 -0.0049570 0.4410327 0.8974773 0.0000000 0.2799729 0.9600079 -0.0096667 0.2785661 0.9603684 0.0000000 0.1090327 0.9940382 -0.0140832 0.1076764 0.9940862 0.0000000 -0.0651715 0.9978741 -0.0180678 -0.0663517 0.9976327 0.0000000 -0.2374601 0.9713973 -0.0215056 -0.2383954 0.9709300 0.0000000 -0.4026253 0.9153649 -0.0242857 -0.4032264 0.9147780 0.0000000 -0.5554353 0.8315597 -0.0263280 -0.5556958 0.8309687 0.0000000 -0.6913652 0.7225055 -0.0275843 -0.6913109 0.7220307 -0.0280057 -0.8060492 0.5911855 0.0000000 -0.8063725 0.5914079 -0.0275818 -0.8963482 0.4424921 0.0000000 -0.8968101 0.4424157 -0.0263309 -0.9595179 0.2804141 0.0000000 -0.9599970 0.2800102 -0.0242855 -0.9936604 0.1097692 0.0000000 -0.9940388 0.1090271 -0.0215048 -0.9977025 -0.0642442 0.0000000 -0.9978686 -0.0652555 -0.0180735 -0.9715087 -0.2363139 0.0000000 -0.9713890 -0.2374942 -0.0140925 -0.9158420 -0.4012915 0.0000000 -0.9153941 -0.4025589 -0.0096754 -0.8323317 -0.5541934 0.0000000 -0.8315555 -0.5554416 -0.0049571 -0.7235035 -0.6903029 0.0000000 -0.7224522 -0.6914208 0.0856319 0.2317427 -0.9690008 0.0717638 0.9675616 0.2422281 0.1107434 0.9042319 0.4124324 0.1426142 0.0498686 -0.9885213 0.1643636 -0.1342658 -0.9772192 0.1120490 0.8145792 0.5691272 0.1471932 -0.3099069 -0.9393039 0.0740560 -0.4587743 -0.8854614 -0.0013496 -0.5937065 -0.8046806 -0.0939888 -0.7027550 -0.7051961 -0.2300635 -0.7626602 -0.6045000 -0.2149637 -0.7725329 -0.5974810 -0.7070601 0.5702006 -0.4182550 0.2300510 0.7626557 0.6045104 0.2149723 0.7725408 0.5974676 0.0939973 0.7027671 0.7051829 0.0013638 0.5937318 0.8046618 -0.0740111 0.4588654 0.8854179 -0.1472054 0.3098842 0.9393095 -0.1643906 0.1341640 0.9772286 -0.1426243 -0.0499052 0.9885180 -0.0856291 -0.2316729 0.9690177 -0.0968790 -0.3967449 0.9128022 0.0000000 -0.8063414 0.5914504 0.0000000 -0.6913631 0.7225075 -0.0263936 -0.5548046 0.8315620 0.0000000 -0.8968307 0.4423739 0.0000000 -0.9600018 0.2799938 -0.0243076 -0.9938287 0.1082294 -0.0856256 -0.9938594 -0.0700839 -0.1426193 -0.9578493 -0.2493680 -0.1107386 -0.9042240 -0.4124511 -0.1120411 -0.8145659 -0.5691478 0.0563515 0.7126295 0.6992737 -0.0563544 -0.7126399 -0.6992629 0.0010104 -0.5891078 -0.8080538 0.0766809 -0.4537409 -0.8878284 0.1834349 -0.3197829 -0.9295647 -0.4019113 0.0457782 0.9145336 -0.4299328 0.0639467 0.9005935 -0.2672417 0.1684585 0.9487906 -0.1834407 0.3197602 0.9295714 0.3131259 -0.1948141 -0.9295158 0.3351163 -0.2088139 -0.9187458 -0.7071106 0.5701698 -0.4182116 -0.7071106 0.5701698 -0.4182116 -0.0766380 0.4538258 0.8877887 -0.0010398 0.5890355 0.8081065 0.0191061 -0.4460212 -0.8948184 -0.0003483 -0.5939202 -0.8045239 0.0379777 -0.2845267 -0.9579156 0.0557143 -0.1142622 -0.9918871 0.0717670 0.0596548 -0.9956359 0.0557253 0.9117683 0.4069069 0.0379898 0.8282188 0.5591158 0.0191047 0.7194822 0.6942480 -0.0003546 0.5889168 0.8081936 -0.0197747 0.4406056 0.8974829 -0.0385971 0.2789329 0.9595346 -0.0562385 0.1088828 0.9924625 -0.0721694 -0.0642854 0.9953185 -0.0859150 -0.2355705 0.9680522 -0.0970534 -0.3996172 0.9115299 -0.1052488 -0.5515245 0.8274923 -0.1102775 -0.6868067 0.7184257 -0.1119662 -0.8012800 0.5877192 -0.1102736 -0.8915714 0.4392495 -0.1052491 -0.9549412 0.2775067 -0.0970533 -0.9894720 0.1073584 -0.0859119 -0.9941070 -0.0661090 -0.0721735 -0.9686756 -0.2376102 -0.0562441 -0.9139187 -0.4019816 -0.0386083 -0.8314341 -0.5542804 -0.0197840 -0.7236886 -0.6898430 0.0754945 0.8230750 0.5628926 0.1107354 -0.1217940 -0.9863589 0.1120540 -0.2981498 -0.9479191 0.0563691 -0.4528773 -0.8897891 -0.0766560 -0.7104955 -0.6995141 -0.1834191 -0.7905637 -0.5842658 -0.3351152 -0.8135813 -0.4751666 -0.3131931 -0.8280845 -0.4649582 -0.7071105 0.5701680 -0.4182143 -0.7071279 0.5701518 -0.4182070 -0.7071105 0.5701680 -0.4182143 0.3350954 0.8135796 0.4751835 0.3131795 0.8280843 0.4649678 0.1834538 0.7905983 0.5842080 0.0766657 0.7105108 0.6994975 -0.0563622 0.4528803 0.8897880 -0.1120385 0.2982139 0.9479008 -0.1107494 0.1217561 0.9863620 -0.0717697 -0.0596394 0.9956366 -0.0214899 -0.2364930 0.9713955 -0.0243134 -0.4017182 0.9154405 0.0000000 -0.5554391 0.8315572 0.0000000 -0.9940382 0.1090328 -0.0214848 -0.9975734 -0.0662244 -0.0717662 -0.9675596 -0.2422355 -0.0557178 -0.9117640 -0.4069175 -0.0754865 -0.8230577 -0.5629190 0.0379641 0.7168936 0.6961482 -0.0379682 -0.7169208 -0.6961199 0.0006937 -0.5890110 -0.8081248 0.0583555 -0.4476598 -0.8922978 0.1495756 -0.3047366 -0.9406183 0.2672179 -0.1685106 -0.9487881 -0.4784228 -0.1044902 0.8718907 -0.5116375 -0.0827461 0.8552077 -0.3429514 0.0120547 0.9392758 -0.2179457 0.1465130 0.9649008 -0.1496035 0.3046866 0.9406300 0.4018549 -0.0458657 -0.9145540 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 -0.7070931 0.5701842 -0.4182216 0.4299471 -0.0639247 -0.9005882 -0.0007015 0.5889599 0.8081620 0.0379782 -0.4485996 -0.8929256 -0.0006986 -0.5938927 -0.8045439 0.0754955 -0.2896621 -0.9541469 -0.0393057 0.4432915 0.8955153 -0.0767163 0.2841505 0.9557055 -0.1117858 0.1164884 0.9868811 -0.1434392 -0.0545825 0.9881528 -0.1707529 -0.2239435 0.9595273 -0.1928770 -0.3864107 0.9019342 -0.2091823 -0.5373036 0.8170359 -0.2191628 -0.6719011 0.7074720 -0.2225165 -0.7861229 0.5766258 -0.2191599 -0.8766530 0.4283089 -0.2091823 -0.9407054 0.2670507 -0.1928808 -0.9763433 0.0977283 -0.1707471 -0.9824843 -0.0746320 -0.1434388 -0.9589108 -0.2447761 -0.1117824 -0.9063010 -0.4075820 -0.0767206 -0.8262070 -0.5581182 -0.0393229 -0.7210337 -0.6917833 -0.0010349 -0.5938315 -0.8045888 -0.0583553 -0.7166177 -0.6950207 -0.1495769 -0.8056421 -0.5732081 -0.2672517 -0.8543695 -0.4456785 -0.4299269 -0.8397946 -0.3315236 -0.4019139 -0.8585429 -0.3183855 0.4299233 0.8397958 0.3315252 0.4018950 0.8585418 0.3184124 0.2672545 0.8543744 0.4456674 0.1495753 0.8056387 0.5732134 0.0583688 0.7166319 0.6950049 0.0010065 0.5937395 0.8046567 -0.0754922 0.2896761 0.9541429 -0.0557147 0.1142295 0.9918909 -0.0180089 -0.0641266 0.9977793 0.0000000 -0.2375409 0.9713775 0.0000000 -0.4025541 0.9153962 0.0000000 -0.9978696 -0.0652400 -0.0180072 -0.9709352 -0.2386642 -0.0139823 -0.9147433 -0.4037935 -0.0379835 -0.8281950 -0.5591514 -0.0191096 -0.7195068 -0.6942224 0.0003420 -0.5889652 -0.8081583 0.0393316 -0.4431996 -0.8955597 0.1138624 -0.2927921 -0.9493725 0.2179598 -0.1464640 -0.9649051 0.3429181 -0.0121247 -0.9392871 -0.5404362 -0.2515296 0.8029082 -0.5778068 -0.2267911 0.7840313 -0.4082458 -0.1446373 0.9013409 -0.2796771 -0.0161268 0.9599587 -0.1659206 0.1290241 0.9776621 -0.1138628 0.2928175 0.9493646 -0.0583474 0.4476738 0.8922913 0.4784168 0.1044810 -0.8718951 0.5116308 0.0827109 -0.8552151 0.5404637 0.2515891 -0.8028711 0.5778261 0.2268101 -0.7840116 0.5861310 0.3910030 -0.7096246 0.6265248 0.3639342 -0.6892159 0.6563087 0.4899558 -0.5737615 0.6140758 0.5185134 -0.5950250 0.6663402 0.6012558 -0.4410015 0.6234851 0.6304377 -0.4624009 0.6563117 0.6944328 -0.2949883 0.6140763 0.7233009 -0.3158262 0.5861140 0.7943276 -0.1597311 0.6265204 0.7667159 -0.1400676 0.5404460 0.8413778 0.0012624 0.5778195 0.8159388 0.0191948 0.4784170 0.8630098 0.1622690 0.5116350 0.8405642 0.1779929 -0.5116346 -0.8405675 -0.1779782 -0.4784252 -0.8630103 -0.1622423 -0.5778066 -0.8159478 -0.0192039 -0.5404377 -0.8413831 -0.0012763 -0.6265044 -0.7667346 0.1400369 -0.5861104 -0.7943375 0.1596950 -0.6563072 -0.6944306 0.2950035 -0.6140746 -0.7232934 0.3158464 -0.6234866 -0.6304229 0.4624192 -0.6663360 -0.6012463 0.4410208 -0.6140730 -0.5185229 0.5950196 -0.6563049 -0.4899757 0.5737489 -0.5861089 -0.3909363 0.7096796 -0.6265015 -0.3638893 0.6892608 -0.2129009 -0.0384552 0.9763168 -0.3104809 -0.5137733 0.7997741 -0.3252938 -0.6472364 0.6893976 -0.3302825 -0.7610889 0.5582626 -0.3252912 -0.8520006 0.4102202 -0.3104806 -0.9171728 0.2497918 -0.2862859 -0.9546449 0.0818144 -0.2534337 -0.9632749 -0.0887288 -0.2128989 -0.9427741 -0.2566145 -0.1659103 -0.8937307 -0.4167963 -0.1138626 -0.8175742 -0.5644534 -0.2179508 -0.8763497 -0.4295447 -0.3429582 -0.8922767 -0.2936359 0.3429449 0.8922679 0.2936780 0.1138713 0.8175859 0.5644347 0.0393159 0.7210463 0.6917705 0.0006858 0.5938923 0.8045442 -0.0379657 0.4486631 0.8928942 -0.0379790 0.2845577 0.9579063 -0.0139775 0.1103309 0.9937966 0.0000000 -0.0653569 0.9978620 0.0000000 -0.9713761 -0.2375468 0.0000000 -0.9153774 -0.4025969 -0.0095302 -0.8307052 -0.5566309 -0.0047933 -0.7214062 -0.6924956 0.0000816 -0.5901902 -0.8072643 0.0197861 -0.4405209 -0.8975243 0.0767237 -0.2841316 -0.9557106 0.1658999 -0.1291101 -0.9776542 0.2797032 0.0161805 -0.9599502 0.4082510 0.1446732 -0.9013328 -0.4611660 -0.2968702 0.8361782 -0.3329312 -0.1781819 0.9259633 0.4611414 0.2968379 -0.8362033 0.5001193 0.4400699 -0.7458010 0.5240009 0.5700604 -0.6328145 0.5320340 0.6827598 -0.5007783 0.5239989 0.7748510 -0.3535972 0.5001435 0.8435157 -0.1958003 0.4611650 0.8867371 -0.0320036 0.4082394 0.9031626 0.1328083 -0.4082463 -0.9031618 -0.1327920 -0.4611659 -0.8867370 0.0319920 -0.5001389 -0.8435242 0.1957753 -0.5240012 -0.7748281 0.3536440 -0.5320300 -0.6827481 0.5007985 -0.5240029 -0.5700556 0.6328172 -0.5001454 -0.4401300 0.7457481 -0.2534328 -0.2047371 0.9454388 -0.2862793 -0.3647941 0.8859850 -0.4078763 -0.4812490 0.7759100 -0.4273318 -0.6131447 0.6644104 -0.4338849 -0.7264881 0.5328780 -0.4273283 -0.8179156 0.3852331 -0.4078709 -0.8846437 0.2259353 -0.3760885 -0.9246515 0.0598082 -0.3329298 -0.9367239 -0.1081948 -0.2796800 -0.9204723 -0.2729649 0.2179263 0.8763201 0.4296175 0.2796870 0.9204691 0.2729685 0.1658964 0.8937132 0.4168394 0.0767229 0.8262122 0.5581103 0.0197795 0.7236379 0.6898963 0.0003511 0.5939185 0.8045251 -0.0190963 0.4460729 0.8947929 -0.0095225 0.2814151 0.9595389 0.0000000 0.1089830 0.9940436 0.0000000 -0.8315665 -0.5554253 0.0000000 -0.7224653 -0.6914072 0.0000000 -0.5914276 -0.8063581 0.0049544 -0.4410245 -0.8974814 0.0386059 -0.2789068 -0.9595418 0.1117746 -0.1165191 -0.9868788 0.2129077 0.0384770 -0.9763144 0.3329114 0.1781582 -0.9259750 -0.3760800 -0.3347483 0.8640066 0.3760926 0.3347780 -0.8639896 0.4273362 0.6131404 -0.6644115 0.4338779 0.7265158 -0.5328459 0.4273401 0.8178901 -0.3852742 0.4078732 0.8846402 -0.2259450 0.3760917 0.9246513 -0.0597918 0.3329278 0.9367261 0.1081820 0.2129021 0.9427780 0.2565976 0.1117739 0.9062837 0.4076228 0.0049604 0.7235719 0.6902312 0.0000955 0.5926874 0.8054325 -0.0047832 0.4438052 0.8961105 0.0000000 0.2800111 0.9599968 0.0000000 -0.4424200 -0.8968080 0.0096726 -0.2785831 -0.9603634 0.0562428 -0.1089263 -0.9924575 0.1434444 0.0545872 -0.9881518 0.2534167 0.2047025 -0.9454506 0.4078633 0.4811924 -0.7759520 0.3104827 0.9171702 -0.2497985 0.3252965 0.8519849 -0.4102485 0.2862829 0.9546486 -0.0817806 0.2534280 0.9632776 0.0887161 0.1434440 0.9589143 0.2447596 0.0386039 0.8314405 0.5542710 0.0000000 0.7225274 0.6913423 0.0000000 0.5914396 0.8063493 0.0000000 0.4424240 0.8968060 0.0000000 -0.2800211 -0.9599939 0.0140916 -0.1077569 -0.9940774 0.0721797 0.0643384 -0.9953144 0.1707568 0.2239832 -0.9595174 0.2862684 0.3647156 -0.8860208 0.3104847 0.5137803 -0.7997681 0.3302777 0.7611130 -0.5582327 0.3253001 0.6472640 -0.6893687 0.2091795 0.9407020 -0.2670650 0.2191656 0.8766486 -0.4283150 0.1928778 0.9763470 -0.0976969 0.1707429 0.9824856 0.0746256 0.0562404 0.9139390 0.4019360 0.0721746 0.9686774 0.2376025 0.0096739 0.8323431 0.5541764 0.0000000 0.8315710 0.5554185 0.0000000 -0.1091249 -0.9940280 0.0180791 0.0663995 -0.9976293 0.0859099 0.2355151 -0.9680662 0.1928887 0.3865024 -0.9018924 0.2091790 0.5373003 -0.8170389 0.2225148 0.7861384 -0.5766053 0.2191656 0.6718806 -0.7074906 0.1052531 0.9549403 -0.2775081 0.1102731 0.8915692 -0.4392541 0.0970505 0.9894742 -0.1073410 0.0859127 0.9941076 0.0660993 0.0140924 0.9158102 0.4013641 0.0180739 0.9715095 0.2363105 0.0000000 0.9153686 0.4026170 0.0000000 0.0652188 -0.9978710 0.0215093 0.2384375 -0.9709196 0.0970487 0.3995942 -0.9115405 0.1052539 0.5515520 -0.8274733 0.1119641 0.8012869 -0.5877103 0.1102743 0.6867844 -0.7184475 0.0263315 0.9595215 -0.2804017 0.0275825 0.8963357 -0.4425173 0.0242860 0.9936605 -0.1097683 0.0215061 0.9977034 0.0642295 0.0000000 0.9713903 0.2374888 0.0000000 0.2375496 -0.9713754 0.0242843 0.4032201 -0.9147807 0.0263282 0.5556859 -0.8309753 0.0280034 0.8060471 -0.5911886 0.0275816 0.6913118 -0.7220300 0.0000000 0.9600018 -0.2799938 0.0000000 0.8967924 -0.4424516 0.0000000 0.9940382 -0.1090328 0.0000000 0.9978696 0.0652400 0.0000000 0.4026545 -0.9153520 0.0000000 0.5554334 -0.8315610 0.0000000 0.8063652 -0.5914179 0.0000000 0.6913740 -0.7224971 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 4 2 4 1 5 6 2 7 2 6 0 8 9 10 9 8 11 9 11 12 9 12 13 9 13 14 15 1 3 1 15 16 5 17 4 17 5 18 2 19 7 19 2 4 16 5 1 5 16 20 21 22 23 22 21 10 22 10 9 22 9 24 25 7 26 7 25 6 27 28 29 28 27 30 31 30 27 30 31 32 31 33 32 33 31 34 35 13 12 36 16 15 16 36 37 18 38 17 38 18 39 4 40 19 40 4 17 20 18 5 18 20 41 7 42 26 42 7 19 37 20 16 20 37 43 22 44 23 45 46 47 46 45 48 29 46 48 46 29 28 25 49 50 49 25 26 51 27 29 27 51 52 52 31 27 31 52 53 53 34 31 34 53 54 34 55 33 55 34 56 57 35 12 35 57 58 35 58 59 35 59 60 61 37 36 37 61 62 39 63 38 63 39 64 17 65 40 65 17 38 41 39 18 39 41 66 19 67 42 67 19 40 43 41 20 41 43 68 26 69 49 69 26 42 62 43 37 43 62 70 44 71 23 72 47 73 47 72 45 74 48 45 48 74 75 75 29 48 29 75 51 50 76 77 76 50 49 78 52 51 52 78 79 79 53 52 53 79 80 80 54 53 54 80 81 54 56 34 56 54 82 56 83 55 83 56 84 85 86 87 86 59 58 59 86 85 88 62 61 62 88 89 64 90 63 90 64 91 38 92 65 92 38 63 66 64 39 64 66 93 40 94 67 94 40 65 68 66 41 66 68 95 42 96 69 96 42 67 70 68 43 68 70 97 49 98 76 98 49 69 89 70 62 70 89 99 23 71 100 101 73 102 73 101 72 103 45 72 45 103 74 104 75 74 78 51 75 77 105 106 105 77 76 107 79 78 79 107 108 108 80 79 80 108 109 109 81 80 81 109 110 81 82 54 82 81 111 82 84 56 84 82 112 84 113 83 113 84 114 115 89 88 89 115 116 114 117 113 117 114 118 119 120 121 120 119 122 122 119 87 87 119 85 85 119 123 85 123 124 91 125 90 125 91 126 63 127 92 127 63 90 93 91 64 91 93 128 65 129 94 129 65 92 95 93 66 93 95 130 67 131 96 131 67 94 97 95 68 95 97 132 96 133 69 99 97 70 97 99 134 133 98 69 76 135 105 135 76 98 116 99 89 99 116 136 137 138 139 138 137 140 140 137 141 140 141 142 142 141 143 142 143 144 142 144 145 145 144 146 145 146 71 71 146 100 147 102 148 102 147 101 149 72 101 72 149 103 150 74 103 74 150 151 78 75 104 104 74 151 106 152 153 152 106 105 154 108 107 108 154 155 156 78 104 78 156 107 155 109 108 109 155 157 157 110 109 110 157 158 110 111 81 111 110 159 111 112 82 112 111 160 112 114 84 114 112 161 162 116 115 116 162 163 161 118 114 118 161 164 118 165 117 165 118 166 167 163 162 163 167 168 166 169 165 169 166 170 169 171 172 171 169 170 173 121 174 121 173 119 175 167 176 167 175 168 126 177 125 177 126 178 90 179 127 179 90 125 128 126 91 126 128 180 92 181 129 181 92 127 130 128 93 128 130 182 94 183 131 183 94 129 132 130 95 130 132 184 96 185 133 185 96 131 134 132 97 132 134 186 136 134 99 134 136 187 98 188 135 188 98 133 105 189 152 189 105 135 163 136 116 136 163 190 153 191 192 191 153 152 192 193 194 193 192 191 194 195 196 195 194 193 137 139 197 198 199 200 199 198 201 202 203 199 202 148 203 148 202 147 149 101 147 204 103 149 103 204 150 205 151 150 151 205 206 206 104 151 104 206 156 207 155 154 155 207 208 209 107 156 107 209 154 208 157 155 157 208 210 210 158 157 158 210 211 158 159 110 159 158 212 159 160 111 160 159 213 160 161 112 161 160 214 214 164 161 164 214 215 164 166 118 166 164 216 168 190 163 190 168 217 216 170 166 170 216 218 170 219 171 219 170 218 172 220 221 220 172 171 222 223 224 223 222 174 174 222 173 225 176 226 176 225 175 227 168 175 168 227 217 180 178 126 178 180 228 229 230 231 230 229 232 232 229 233 232 233 234 234 233 235 234 235 236 236 235 237 236 237 238 238 237 239 239 237 240 239 240 241 241 240 242 242 240 243 243 240 244 243 244 245 245 244 246 246 244 247 246 247 248 248 247 249 249 247 250 249 250 251 251 250 252 251 252 253 253 252 254 254 252 255 254 255 256 256 255 257 256 257 258 258 257 259 259 257 260 259 260 261 261 260 262 262 260 263 262 263 264 264 263 265 265 263 266 238 267 268 267 238 239 268 267 269 268 269 270 268 270 271 268 271 272 272 271 273 272 273 274 272 274 275 275 274 276 275 276 277 275 277 278 278 277 279 278 279 280 280 279 281 280 281 282 280 282 283 283 282 284 283 284 285 285 284 286 285 286 287 285 287 288 288 287 289 288 289 290 288 290 291 291 290 292 291 292 266 291 266 263 291 263 293 291 293 294 294 293 295 294 295 296 296 295 297 296 297 298 298 297 299 298 299 300 125 301 179 301 125 177 302 127 179 182 180 128 180 182 303 302 181 127 129 304 183 304 129 181 184 182 130 182 184 305 183 306 131 186 184 132 184 186 307 306 185 131 133 308 188 308 133 185 187 186 134 186 187 309 190 187 136 187 190 310 135 311 189 311 135 188 189 312 152 312 191 152 191 313 193 313 191 312 193 314 195 314 193 313 196 315 316 315 196 195 317 318 319 318 317 139 139 317 197 320 200 321 200 320 198 322 201 198 201 322 323 202 199 201 324 147 202 147 324 325 149 147 325 326 149 325 149 326 204 327 150 204 150 327 205 328 206 205 206 328 329 329 156 206 156 329 209 330 208 207 208 330 331 332 154 209 154 332 207 331 210 208 210 331 333 333 211 210 211 333 334 211 212 158 212 211 335 212 213 159 213 212 336 213 214 160 214 213 337 337 215 214 215 337 338 215 216 164 216 215 339 217 310 190 310 217 340 339 218 216 218 339 341 218 342 219 342 218 341 171 343 220 343 171 219 220 344 221 345 346 347 346 345 348 348 226 346 226 348 225 344 349 221 223 350 224 351 175 225 175 351 227 352 217 227 217 352 340 303 228 180 228 303 353 354 355 356 355 354 357 358 356 359 356 358 354 360 359 361 359 360 358 362 361 363 361 362 360 364 363 365 363 364 362 366 365 367 365 366 364 368 367 302 367 368 366 301 302 179 302 301 368 369 353 303 353 369 370 371 370 369 370 371 372 373 372 371 372 373 374 375 374 373 374 375 376 377 376 375 376 377 378 379 377 380 377 379 378 381 380 382 380 381 379 383 382 384 382 383 381 385 384 386 384 385 383 387 386 388 386 387 385 389 388 390 388 389 387 391 390 392 390 391 389 393 392 394 392 393 391 395 394 396 394 395 393 395 397 398 397 395 396 398 399 400 399 398 397 400 401 402 401 400 399 402 403 404 403 402 401 404 405 406 405 404 403 406 407 408 407 406 405 408 409 410 409 408 407 410 411 412 411 410 409 412 413 414 413 412 411 357 413 355 413 357 414 305 303 182 303 305 369 181 367 304 367 181 302 183 415 306 415 183 304 307 305 184 305 307 416 309 307 186 307 309 417 306 418 185 418 308 185 188 419 311 419 188 308 310 309 187 309 310 420 311 421 189 421 312 189 312 422 313 422 312 421 423 314 313 195 424 315 424 195 314 315 425 316 425 315 426 317 319 427 428 320 321 320 428 429 430 198 320 198 430 322 431 323 322 323 431 432 323 202 201 202 323 324 433 325 324 325 433 326 434 204 326 204 434 327 435 205 327 205 435 328 436 329 328 329 436 437 437 209 329 209 437 332 438 330 439 330 438 331 440 207 332 207 440 330 441 331 438 331 441 333 442 333 441 333 442 334 334 335 211 335 334 443 335 336 212 336 335 444 336 337 213 337 336 445 445 338 337 338 445 446 338 339 215 339 338 447 340 420 310 420 340 448 447 341 339 341 447 449 341 450 342 450 341 449 219 451 343 451 219 342 220 452 344 452 220 343 453 347 454 347 453 345 455 348 345 348 455 456 456 225 348 225 456 351 349 457 458 457 349 344 459 350 460 350 459 224 461 227 351 227 461 352 462 340 352 340 462 448 463 355 464 355 463 356 465 356 463 356 465 359 466 359 465 359 466 361 467 361 466 361 467 363 415 363 467 363 415 365 304 365 415 365 304 367 416 369 305 369 416 371 468 371 416 371 468 373 469 373 468 373 469 375 470 375 469 375 470 377 380 470 471 470 380 377 382 471 472 471 382 380 384 472 473 472 384 382 386 473 474 473 386 384 388 474 475 474 388 386 390 475 476 475 390 388 392 476 477 476 392 390 392 478 394 396 478 479 478 396 394 397 479 480 479 397 396 399 480 481 480 399 397 401 481 482 481 401 399 403 482 483 482 403 401 405 483 484 483 405 403 407 484 485 484 407 405 409 485 486 485 409 407 411 486 487 486 411 409 413 487 488 487 413 411 464 413 488 413 464 355 415 467 306 417 416 307 416 417 468 420 417 309 417 420 489 467 418 306 308 490 419 490 308 418 311 491 421 491 311 419 421 492 422 492 421 491 422 423 313 314 493 424 493 314 423 424 426 315 426 424 494 426 495 425 495 426 496 497 498 499 498 497 319 319 497 427 500 429 428 429 500 501 429 430 320 430 429 502 503 322 430 322 503 431 504 432 431 432 324 323 324 432 433 505 326 433 326 505 434 506 327 434 327 506 435 507 328 435 328 507 436 508 437 436 437 508 509 509 332 437 332 509 440 510 330 440 330 510 439 511 334 442 334 511 443 443 444 335 444 443 512 444 445 336 445 444 513 513 446 445 446 513 514 446 447 338 447 446 515 448 489 420 489 448 516 515 449 447 449 515 517 449 518 450 518 449 517 450 519 342 519 451 342 343 520 452 520 343 451 344 521 457 521 344 452 522 454 523 454 522 453 524 345 453 345 524 455 525 456 455 456 525 526 526 351 456 351 526 461 457 527 458 528 497 499 497 528 529 497 529 530 497 530 531 497 531 532 497 532 533 533 532 534 533 534 535 535 534 536 536 534 537 537 534 538 537 538 539 539 538 540 540 538 541 540 541 542 542 541 543 543 541 544 543 544 545 545 544 459 545 459 460 527 546 458 462 352 461 547 448 462 448 547 516 548 464 549 464 548 463 550 463 548 463 550 465 490 465 550 465 490 466 418 466 490 466 418 467 489 468 417 468 489 469 516 469 489 469 516 470 471 516 547 516 471 470 472 547 551 547 472 471 473 551 552 551 473 472 474 552 553 552 474 473 475 553 554 553 475 474 475 555 476 476 556 477 392 477 478 479 557 558 557 479 478 480 558 559 558 480 479 481 559 560 559 481 480 482 560 561 560 482 481 483 561 562 561 483 482 484 562 563 562 484 483 485 563 564 563 485 484 486 564 565 564 486 485 487 565 566 565 487 486 488 566 567 566 488 487 549 488 567 488 549 464 419 550 491 550 419 490 491 548 492 548 491 550 422 568 423 568 422 492 423 569 493 569 423 568 493 494 424 494 493 570 494 496 426 496 494 571 496 572 495 572 496 573 574 501 500 501 574 575 501 502 429 502 501 576 502 503 430 503 502 577 578 431 503 431 578 579 504 433 432 433 504 505 504 431 579 580 434 505 434 580 506 581 435 506 435 581 507 582 436 507 436 582 508 583 509 508 509 583 584 584 440 509 440 584 510 585 443 511 443 585 512 512 513 444 513 512 586 586 514 513 514 586 587 514 515 446 515 514 588 588 517 515 517 588 589 517 590 518 590 517 589 450 591 519 591 450 518 451 592 520 592 451 519 452 593 521 593 452 520 457 594 527 594 457 521 595 523 596 523 595 522 597 453 522 453 597 524 598 455 524 455 598 525 599 526 525 526 599 600 600 461 526 461 600 601 546 602 603 602 546 527 603 604 605 604 603 602 605 606 607 606 605 604 608 606 609 606 608 607 610 609 611 609 610 608 612 611 613 611 612 610 612 614 615 614 612 613 615 616 617 616 615 614 617 618 619 618 617 616 619 575 574 575 619 618 573 620 572 620 573 621 621 622 620 622 621 623 623 624 622 624 623 625 625 626 624 626 625 627 628 626 627 626 628 629 630 629 628 629 630 631 632 631 630 631 632 633 632 596 633 596 632 595 462 461 601 551 462 601 462 551 547 492 549 568 549 492 548 552 601 600 601 552 551 552 599 553 553 634 554 475 554 555 476 555 556 478 556 557 556 478 477 558 635 636 635 558 557 559 636 637 636 559 558 560 637 638 637 560 559 561 638 639 638 561 560 562 639 640 639 562 561 563 640 641 640 563 562 564 641 642 641 564 563 565 642 643 642 565 564 566 643 644 643 566 565 567 644 569 644 567 566 568 567 569 567 568 549 569 570 493 570 569 644 570 571 494 571 570 645 571 573 496 573 571 646 575 576 501 576 575 647 577 502 576 577 578 503 578 577 648 649 579 578 579 649 650 580 505 504 651 504 579 652 506 580 506 652 581 653 507 581 507 653 582 654 508 582 508 654 583 655 512 585 512 655 586 656 586 655 586 656 587 587 588 514 588 587 657 657 589 588 589 657 658 589 659 590 659 589 658 518 660 591 660 518 590 519 661 592 661 519 591 520 662 593 662 520 592 593 663 521 663 594 521 527 664 602 664 527 594 665 522 595 522 665 597 666 524 597 524 666 598 599 525 598 552 600 599 602 667 604 667 602 664 668 606 604 606 669 609 669 606 668 609 670 611 670 609 669 611 671 613 671 611 670 613 672 614 672 613 671 614 673 616 673 614 672 616 674 618 674 616 673 618 647 575 647 618 674 646 621 573 621 646 675 675 623 621 623 675 676 676 625 623 625 676 677 677 627 625 627 677 678 678 628 627 628 678 679 679 630 628 630 679 680 680 632 630 632 680 681 681 595 632 595 681 665 553 599 634 554 634 682 554 682 555 555 683 556 557 683 635 683 557 556 636 684 685 684 636 635 637 685 686 685 637 636 638 686 687 686 638 637 639 687 688 687 639 638 640 688 689 688 640 639 641 689 690 689 641 640 642 690 691 690 642 641 643 691 645 691 643 642 644 645 570 645 644 643 645 646 571 646 645 691 647 692 576 692 647 693 692 577 576 692 648 577 648 692 694 648 649 578 649 648 695 696 650 649 650 696 697 651 579 650 580 504 651 698 580 651 580 698 652 699 581 652 581 699 653 700 582 653 582 700 654 701 587 656 587 701 657 702 657 701 657 702 658 702 659 658 659 702 703 590 704 660 704 590 659 591 705 661 705 591 660 592 706 662 706 592 661 593 707 663 707 593 662 594 708 664 708 594 663 709 597 665 597 709 666 634 598 666 599 598 634 710 667 664 667 668 604 711 669 668 712 670 669 713 671 670 671 714 672 714 671 713 672 715 673 715 672 714 673 716 674 716 673 715 674 693 647 693 674 716 691 675 646 675 691 690 690 676 675 676 690 689 689 677 676 677 689 688 688 678 677 678 688 687 687 679 678 679 687 686 686 680 679 680 686 685 685 681 680 681 685 684 684 665 681 665 684 709 634 666 682 555 682 683 635 709 684 709 635 683 693 694 692 694 693 717 694 695 648 695 694 718 696 649 695 719 697 696 697 719 720 697 651 650 651 697 698 721 652 698 652 721 699 722 653 699 653 722 700 703 704 659 704 703 723 660 724 705 724 660 704 661 725 706 725 661 705 662 726 707 726 662 706 663 727 708 727 663 707 708 710 664 682 666 709 710 728 667 728 668 667 711 712 669 728 711 668 712 713 670 713 729 714 729 713 730 714 731 715 731 714 729 715 732 716 732 715 731 716 717 693 717 716 732 682 709 683 717 718 694 718 717 733 734 695 718 734 696 695 734 719 696 735 720 719 720 735 736 720 698 697 698 720 721 737 699 721 699 737 722 723 724 704 724 723 738 705 739 725 739 705 724 706 740 726 740 706 725 707 741 727 741 707 726 708 742 710 742 708 727 710 743 728 743 710 742 711 744 712 744 711 745 745 711 728 712 730 713 730 712 744 730 746 729 746 730 747 729 748 731 748 729 746 731 749 732 749 731 748 732 733 717 733 732 749 733 750 718 750 733 751 750 734 718 752 719 734 736 721 720 721 736 737 752 735 719 735 752 753 738 739 724 739 738 754 725 755 740 755 725 739 726 756 741 756 726 740 741 757 727 757 742 727 742 758 743 758 742 757 743 745 728 745 759 744 759 745 760 744 747 730 747 744 759 747 761 746 761 747 762 746 763 748 763 746 761 748 764 749 764 748 763 749 751 733 751 749 764 751 765 750 765 751 766 750 752 734 765 753 752 753 765 767 754 755 739 755 754 768 740 769 756 769 740 755 756 770 741 770 757 741 757 771 758 771 757 770 743 760 745 760 743 758 760 772 759 772 760 773 759 762 747 762 759 772 762 774 761 774 762 775 761 776 763 776 761 774 763 777 764 777 763 776 764 766 751 766 764 777 766 767 765 767 766 778 765 752 750 768 769 755 769 768 779 756 780 770 780 756 769 770 781 771 781 770 780 758 773 760 773 758 771 773 782 772 782 773 783 772 775 762 775 772 782 775 784 774 784 775 785 774 786 776 786 774 784 776 787 777 787 776 786 777 778 766 778 777 787 779 780 769 780 779 788 788 781 780 781 788 789 771 783 773 783 771 781 783 790 782 790 783 791 782 785 775 785 782 790 789 783 781 783 789 791

-
-
-
- - - - 1691.3240157 -3174.1755906 4419.0748031 2144.4039370 78.7931496 2540.9712598 1686.4712598 -3178.3779528 4421.5000000 1696.9456693 -3170.7673228 4417.1062992 1703.1653543 -3168.2551181 4415.6574803 1709.7940945 -3166.7169291 4414.7677165 1703.1653543 -3168.2551181 4415.6574803 1696.9456693 -3203.2472441 4360.8464567 1703.1653543 -3200.7358268 4359.3976378 1696.9456693 -3170.7673228 4417.1062992 1709.7940945 -3166.7169291 4414.7677165 1709.7940945 -3199.1976378 4358.5118110 2298.6374016 -231.5158268 2720.1287402 2144.4039370 78.7931496 2540.9712598 2302.2625984 -238.2488189 2724.0161417 2307.1830709 -244.3343307 2727.5295276 2313.2488189 -249.5874803 2730.5622047 2146.1803150 84.5338583 2537.6570866 2149.0807087 89.9202756 2534.5476378 2153.0169291 94.7886614 2531.7366142 2157.8692913 98.9911811 2529.3102362 2163.4909449 102.4000787 2527.3421260 2169.7106299 104.9118110 2525.8921260 2176.3393701 106.4500000 2525.0039370 2183.1759843 106.9679921 2524.7051181 2296.4173228 -224.3399213 2715.9854331 2295.6696850 -216.9391339 2711.7129921 2621.7224409 66.9518898 2547.8078740 2387.5015748 -238.2488189 2724.0161417 1941.4055118 -3274.4059055 4476.9409449 2391.1267717 -231.5158268 2720.1287402 2393.3472441 -224.3399213 2715.9854331 2394.0948819 -216.9391339 2711.7129921 2394.0948819 -12.3662087 2593.6027559 2582.9503937 106.9679921 2524.7051181 2589.7870079 106.4500000 2525.0039370 2596.4157480 104.9118110 2525.8921260 2602.6354331 102.4000787 2527.3421260 2608.2574803 98.9911811 2529.3102362 2613.1102362 94.7886614 2531.7366142 2617.0456693 89.9202756 2534.5476378 2619.9460630 84.5338583 2537.6570866 2621.7224409 78.7931496 2540.9712598 2622.3204724 72.8725197 2544.3901575 2328.0503937 27.6828937 2570.4799213 2320.2759843 24.5432441 2572.2933071 2313.2488189 20.2821142 2574.7527559 2307.1830709 15.0289882 2577.7858268 2302.2625984 8.9434764 2581.2996063 2298.6374016 2.2104709 2585.1862205 2296.4173228 -4.9654291 2589.3295276 2295.6696850 -12.3662087 2593.6027559 2336.3366142 29.6056732 2569.3700787 2344.8822835 30.2531575 2568.9964567 2353.4279528 29.6056732 2569.3700787 2361.7137795 27.6828937 2570.4799213 2369.4885827 24.5432441 2572.2933071 2376.5153543 20.2821142 2574.7527559 2382.5811024 15.0289882 2577.7858268 2387.5015748 8.9434764 2581.2996063 2391.1267717 2.2104709 2585.1862205 2393.3472441 -4.9654291 2589.3295276 2296.4173228 -209.5383858 2707.4397638 2296.4173228 -19.7669803 2597.8751969 2298.6374016 -202.3624803 2703.2964567 2298.6374016 -26.9428819 2602.0185039 2302.2625984 -195.6294488 2699.4098425 2302.2625984 -33.6758858 2605.9059055 2307.1830709 -189.5439370 2695.8960630 2307.1830709 -39.7614173 2609.4192913 2313.2488189 -184.2908268 2692.8629921 2313.2488189 -45.0145276 2612.4519685 2320.2759843 -180.0296850 2690.4035433 2320.2759843 -49.2756693 2614.9118110 2328.0503937 -176.8900394 2688.5901575 2328.0503937 -52.4153150 2616.7251969 2336.3366142 -174.9672835 2687.4803150 2336.3366142 -54.3380709 2617.8346457 2344.8822835 -174.3197638 2687.1066929 2344.8822835 -54.9855512 2618.2090551 2353.4279528 -174.9672835 2687.4803150 2353.4279528 -54.3380709 2617.8346457 2361.7137795 -176.8900394 2688.5901575 2361.7137795 -52.4153150 2616.7251969 2369.4885827 -180.0296850 2690.4035433 2369.4885827 -49.2756693 2614.9118110 2376.5153543 -184.2908268 2692.8629921 2376.5153543 -45.0145276 2612.4519685 2382.5811024 -189.5439370 2695.8960630 2382.5811024 -39.7614173 2609.4192913 2387.5015748 -195.6294488 2699.4098425 2387.5015748 -33.6758858 2605.9059055 2391.1267717 -202.3624803 2703.2964567 2391.1267717 -26.9428819 2602.0185039 2393.3472441 -209.5383858 2707.4397638 2393.3472441 -19.7669803 2597.8751969 1468.7637795 -3285.5330709 4483.3661417 1677.8586614 -3206.2149606 4437.5708661 1677.2602362 -3200.2948819 4434.1535433 1679.6346457 -3211.9559055 4440.8858268 1464.0874016 -3274.4059055 4476.9409449 1464.0874016 -3262.5645669 4470.1062992 1463.4893701 -3268.4854331 4473.5236220 1465.8637795 -3280.1468504 4480.2559055 2144.4039370 78.7931496 2540.9712598 1677.8586614 -3194.3740157 4430.7362205 1679.6346457 -3188.6330709 4427.4212598 1682.5350394 -3183.2468504 4424.3110236 1691.3240157 -3206.6566929 4362.8149606 1686.4712598 -3178.3779528 4421.5000000 1686.4712598 -3210.8586614 4365.2440945 1691.3240157 -3174.1755906 4419.0748031 1703.1653543 -3200.7358268 4359.3976378 1696.9456693 -3203.2472441 4360.8464567 1464.0874016 -3295.0448819 4413.8464567 2144.4039370 46.3128346 2484.7137795 1709.7940945 -3199.1976378 4358.5118110 1716.6303150 -3198.6791339 4358.2125984 1716.6303150 -3166.1996063 4414.4685039 1716.6303150 -3198.6791339 4358.2125984 2146.1803150 84.5338583 2537.6570866 2149.0807087 57.4399606 2478.2897638 2146.1803150 52.0535433 2481.3996063 2149.0807087 89.9202756 2534.5476378 2144.4039370 78.7931496 2540.9712598 2144.4039370 46.3128346 2484.7137795 1716.6303150 -3166.1996063 4414.4685039 1723.4669291 -3166.7169291 4414.7677165 1730.0960630 -3168.2551181 4415.6574803 2320.2759843 -253.8485827 2733.0220472 2328.0503937 -256.9882283 2734.8354331 2336.3366142 -258.9110236 2735.9448819 2344.8822835 -259.5585039 2736.3192913 2307.1830709 -276.8146457 2671.2720472 2313.2488189 -249.5874803 2730.5622047 2313.2488189 -282.0677953 2674.3047244 2307.1830709 -244.3343307 2727.5295276 2302.2625984 -270.7291339 2667.7578740 2302.2625984 -238.2488189 2724.0161417 2298.6374016 -263.9961417 2663.8712598 2298.6374016 -231.5158268 2720.1287402 2296.4173228 -256.8202362 2659.7279528 2296.4173228 -224.3399213 2715.9854331 2295.6696850 -249.4194488 2655.4547244 2295.6696850 -216.9391339 2711.7129921 2296.4173228 -242.0186614 2651.1822835 2296.4173228 -209.5383858 2707.4397638 2298.6374016 -234.8427953 2647.0389764 2298.6374016 -202.3624803 2703.2964567 2302.2625984 -228.1097638 2643.1515748 2302.2625984 -195.6294488 2699.4098425 2307.1830709 -222.0242520 2639.6381890 2307.1830709 -189.5439370 2695.8960630 2313.2488189 -216.7711417 2636.6055118 2313.2488189 -184.2908268 2692.8629921 2320.2759843 -180.0296850 2690.4035433 2320.2759843 -212.5100000 2634.1460630 2328.0503937 -176.8900394 2688.5901575 2328.0503937 -209.3703543 2632.3326772 2336.3366142 -174.9672835 2687.4803150 2336.3366142 -207.4475591 2631.2228346 2344.8822835 -174.3197638 2687.1066929 2344.8822835 -206.8000787 2630.8484252 2353.4279528 -207.4475591 2631.2228346 2353.4279528 -174.9672835 2687.4803150 2361.7137795 -209.3703543 2632.3326772 2361.7137795 -176.8900394 2688.5901575 2369.4885827 -212.5100000 2634.1460630 2369.4885827 -180.0296850 2690.4035433 2376.5153543 -216.7711417 2636.6055118 2376.5153543 -184.2908268 2692.8629921 2382.5811024 -189.5439370 2695.8960630 2382.5811024 -222.0242520 2639.6381890 2387.5015748 -195.6294488 2699.4098425 2387.5015748 -228.1097638 2643.1515748 2391.1267717 -202.3624803 2703.2964567 2391.1267717 -234.8427953 2647.0389764 2393.3472441 -209.5383858 2707.4397638 2393.3472441 -242.0186614 2651.1822835 2394.0948819 -216.9391339 2711.7129921 2394.0948819 -249.4194488 2655.4547244 2393.3472441 -224.3399213 2715.9854331 2393.3472441 -256.8202362 2659.7279528 2391.1267717 -231.5158268 2720.1287402 2391.1267717 -263.9961417 2663.8712598 2387.5015748 -238.2488189 2724.0161417 2387.5015748 -270.7291339 2667.7578740 1736.3153543 -3170.7673228 4417.1062992 1741.9370079 -3174.1755906 4419.0748031 2353.4279528 -258.9110236 2735.9448819 2361.7137795 -256.9882283 2734.8354331 2369.4885827 -253.8485827 2733.0220472 2376.5153543 -249.5874803 2730.5622047 2382.5811024 -244.3343307 2727.5295276 2621.7224409 34.4715827 2491.5503937 1941.4055118 -3274.4059055 4476.9409449 1941.4055118 -3306.8862205 4420.6850394 2621.7224409 66.9518898 2547.8078740 2622.3204724 40.3922047 2488.1322835 2622.3204724 72.8725197 2544.3901575 2621.7224409 46.3128346 2484.7137795 2621.7224409 78.7931496 2540.9712598 2619.9460630 52.0535433 2481.3996063 2619.9460630 84.5338583 2537.6570866 2617.0456693 57.4399606 2478.2897638 2617.0456693 89.9202756 2534.5476378 2613.1102362 62.3083465 2475.4787402 2613.1102362 94.7886614 2531.7366142 2608.2574803 66.5108661 2473.0527559 2608.2574803 98.9911811 2529.3102362 2602.6354331 102.4000787 2527.3421260 2602.6354331 69.9197638 2471.0842520 2596.4157480 104.9118110 2525.8921260 2596.4157480 72.4314961 2469.6342520 2589.7870079 106.4500000 2525.0039370 2589.7870079 73.9696850 2468.7460630 2582.9503937 106.9679921 2524.7051181 2582.9503937 74.4876772 2468.4472441 2183.1759843 106.9679921 2524.7051181 2183.1759843 74.4876772 2468.4472441 2176.3393701 73.9696850 2468.7460630 2176.3393701 106.4500000 2525.0039370 2169.7106299 72.4314961 2469.6342520 2169.7106299 104.9118110 2525.8921260 2163.4909449 69.9197638 2471.0842520 2163.4909449 102.4000787 2527.3421260 2157.8692913 66.5108661 2473.0527559 2157.8692913 98.9911811 2529.3102362 2153.0169291 94.7886614 2531.7366142 2153.0169291 62.3083465 2475.4787402 1682.5350394 -3215.7271654 4368.0551181 1679.6346457 -3188.6330709 4427.4212598 1679.6346457 -3221.1133858 4371.1614173 1682.5350394 -3183.2468504 4424.3110236 1464.0874016 -3262.5645669 4470.1062992 1464.0874016 -3295.0448819 4413.8464567 1463.4893701 -3268.4854331 4473.5236220 1463.4893701 -3300.9657480 4417.2677165 1464.0874016 -3274.4059055 4476.9409449 1464.0874016 -3306.8862205 4420.6850394 1465.8637795 -3280.1468504 4480.2559055 1465.8637795 -3312.6267717 4424.0000000 1468.7637795 -3285.5330709 4483.3661417 1468.7637795 -3318.0133858 4427.1102362 1472.7000000 -3290.4019685 4486.1771654 1477.5527559 -3294.6047244 4488.6023622 1483.1744094 -3298.0129921 4490.5708661 1489.3940945 -3300.5244094 4492.0196850 1496.0228346 -3302.0629921 4492.9094488 1677.8586614 -3238.6956693 4381.3149606 1679.6346457 -3211.9559055 4440.8858268 1679.6346457 -3244.4366142 4384.6299213 1677.8586614 -3206.2149606 4437.5708661 1677.2602362 -3232.7748031 4377.8976378 1677.2602362 -3200.2948819 4434.1535433 1677.8586614 -3226.8543307 4374.4763780 1677.8586614 -3194.3740157 4430.7362205 1691.3240157 -3206.6566929 4362.8149606 1686.4712598 -3210.8586614 4365.2440945 1483.1744094 -3330.4933071 4434.3149606 1464.0874016 -3306.8862205 4420.6850394 1463.4893701 -3300.9657480 4417.2677165 1465.8637795 -3312.6267717 4424.0000000 1468.7637795 -3318.0133858 4427.1102362 1472.7000000 -3322.8818898 4429.9212598 1477.5527559 -3327.0842520 4432.3464567 2183.1759843 74.4876772 2468.4472441 2296.4173228 -37.4457441 2533.0720472 2295.6696850 -44.8465354 2537.3444882 2298.6374016 -30.2698425 2528.9287402 2302.2625984 -23.5368386 2525.0413386 2307.1830709 -17.4513228 2521.5279528 2313.2488189 -12.1981969 2518.4952756 2320.2759843 -7.9370709 2516.0350394 2328.0503937 -4.7974213 2514.2224409 2582.9503937 74.4876772 2468.4472441 2336.3366142 -2.8746402 2513.1122047 2344.8822835 -2.2271555 2512.7385827 2353.4279528 -2.8746402 2513.1122047 2361.7137795 -4.7974213 2514.2224409 2369.4885827 -7.9370709 2516.0350394 2376.5153543 -12.1981969 2518.4952756 2382.5811024 -17.4513228 2521.5279528 2387.5015748 -23.5368386 2525.0413386 2391.1267717 -30.2698425 2528.9287402 2393.3472441 -37.4457441 2533.0720472 2394.0948819 -44.8465354 2537.3444882 2394.0948819 -249.4194488 2655.4547244 2144.4039370 46.3128346 2484.7137795 1723.4669291 -3199.1976378 4358.5118110 2298.6374016 -263.9961417 2663.8712598 2302.2625984 -270.7291339 2667.7578740 2307.1830709 -276.8146457 2671.2720472 2313.2488189 -282.0677953 2674.3047244 2320.2759843 -286.3288976 2676.7649606 2328.0503937 -289.4685433 2678.5779528 2336.3366142 -291.3913386 2679.6874016 2344.8822835 -292.0388189 2680.0610236 2353.4279528 -291.3913386 2679.6874016 2361.7137795 -289.4685433 2678.5779528 2369.4885827 -286.3288976 2676.7649606 2376.5153543 -282.0677953 2674.3047244 2382.5811024 -276.8146457 2671.2720472 2387.5015748 -270.7291339 2667.7578740 2146.1803150 52.0535433 2481.3996063 2149.0807087 57.4399606 2478.2897638 2153.0169291 62.3083465 2475.4787402 2157.8692913 66.5108661 2473.0527559 2163.4909449 69.9197638 2471.0842520 2169.7106299 72.4314961 2469.6342520 2176.3393701 73.9696850 2468.7460630 2296.4173228 -256.8202362 2659.7279528 2295.6696850 -249.4194488 2655.4547244 2393.3472441 -256.8202362 2659.7279528 2391.1267717 -263.9961417 2663.8712598 2296.4173228 -52.2472835 2541.6177165 2296.4173228 -242.0186614 2651.1822835 2298.6374016 -59.4231890 2545.7610236 2298.6374016 -234.8427953 2647.0389764 2302.2625984 -66.1561811 2549.6476378 2302.2625984 -228.1097638 2643.1515748 2307.1830709 -72.2417323 2553.1618110 2307.1830709 -222.0242520 2639.6381890 2313.2488189 -77.4948425 2556.1944882 2313.2488189 -216.7711417 2636.6055118 2320.2759843 -81.7559843 2558.6547244 2320.2759843 -212.5100000 2634.1460630 2328.0503937 -84.8956299 2560.4677165 2328.0503937 -209.3703543 2632.3326772 2336.3366142 -86.8183858 2561.5771654 2336.3366142 -207.4475591 2631.2228346 2344.8822835 -87.4658661 2561.9507874 2344.8822835 -206.8000787 2630.8484252 2353.4279528 -86.8183858 2561.5771654 2353.4279528 -207.4475591 2631.2228346 2361.7137795 -84.8956299 2560.4677165 2361.7137795 -209.3703543 2632.3326772 2369.4885827 -81.7559843 2558.6547244 2369.4885827 -212.5100000 2634.1460630 2376.5153543 -77.4948425 2556.1944882 2376.5153543 -216.7711417 2636.6055118 2382.5811024 -72.2417323 2553.1618110 2382.5811024 -222.0242520 2639.6381890 2387.5015748 -66.1561811 2549.6476378 2387.5015748 -228.1097638 2643.1515748 2391.1267717 -59.4231890 2545.7610236 2391.1267717 -234.8427953 2647.0389764 2393.3472441 -52.2472835 2541.6177165 2393.3472441 -242.0186614 2651.1822835 1723.4669291 -3199.1976378 4358.5118110 1723.4669291 -3166.7169291 4414.7677165 2320.2759843 -253.8485827 2733.0220472 2328.0503937 -289.4685433 2678.5779528 2320.2759843 -286.3288976 2676.7649606 2328.0503937 -256.9882283 2734.8354331 1730.0960630 -3200.7358268 4359.3976378 1730.0960630 -3168.2551181 4415.6574803 2336.3366142 -258.9110236 2735.9448819 2344.8822835 -292.0388189 2680.0610236 2336.3366142 -291.3913386 2679.6874016 2344.8822835 -259.5585039 2736.3192913 2582.9503937 74.4876772 2468.4472441 2382.5811024 -244.3343307 2727.5295276 2382.5811024 -276.8146457 2671.2720472 1736.3153543 -3203.2472441 4360.8464567 1736.3153543 -3170.7673228 4417.1062992 1741.9370079 -3206.6566929 4362.8149606 1741.9370079 -3174.1755906 4419.0748031 1902.6334646 -3302.5807087 4493.2086614 1746.7897638 -3222.2106299 4446.8070866 1741.9370079 -3226.4129921 4449.2322835 1750.7259843 -3217.3421260 4443.9960630 1753.6263780 -3211.9559055 4440.8858268 1755.4023622 -3206.2149606 4437.5708661 1756.0003937 -3200.2948819 4434.1535433 1746.7897638 -3178.3779528 4421.5000000 1741.9370079 -3174.1755906 4419.0748031 1750.7259843 -3183.2468504 4424.3110236 1753.6263780 -3188.6330709 4427.4212598 1755.4023622 -3194.3740157 4430.7362205 1909.4700787 -3302.0629921 4492.9094488 1916.0988189 -3300.5244094 4492.0196850 1922.3185039 -3298.0129921 4490.5708661 1927.9401575 -3294.6047244 4488.6023622 1932.7929134 -3290.4019685 4486.1771654 1936.7291339 -3285.5330709 4483.3661417 1939.6295276 -3280.1468504 4480.2559055 2376.5153543 -249.5874803 2730.5622047 2376.5153543 -282.0677953 2674.3047244 2369.4885827 -286.3288976 2676.7649606 2369.4885827 -253.8485827 2733.0220472 2361.7137795 -289.4685433 2678.5779528 2361.7137795 -256.9882283 2734.8354331 2353.4279528 -291.3913386 2679.6874016 2353.4279528 -258.9110236 2735.9448819 2621.7224409 34.4715827 2491.5503937 1941.4055118 -3306.8862205 4420.6850394 1753.6263780 -3221.1133858 4371.1614173 1939.6295276 -3280.1468504 4480.2559055 1939.6295276 -3312.6267717 4424.0000000 2582.9503937 74.4876772 2468.4472441 1736.3153543 -3203.2472441 4360.8464567 1730.0960630 -3200.7358268 4359.3976378 2621.7224409 34.4715827 2491.5503937 2589.7870079 73.9696850 2468.7460630 2596.4157480 72.4314961 2469.6342520 2602.6354331 69.9197638 2471.0842520 2608.2574803 66.5108661 2473.0527559 2613.1102362 62.3083465 2475.4787402 2617.0456693 57.4399606 2478.2897638 2619.9460630 52.0535433 2481.3996063 2621.7224409 46.3128346 2484.7137795 2622.3204724 40.3922047 2488.1322835 1682.5350394 -3215.7271654 4368.0551181 1679.6346457 -3221.1133858 4371.1614173 1472.7000000 -3290.4019685 4486.1771654 1472.7000000 -3322.8818898 4429.9212598 1502.8594488 -3302.5807087 4493.2086614 1682.5350394 -3217.3421260 4443.9960630 1686.4712598 -3222.2106299 4446.8070866 1691.3240157 -3226.4129921 4449.2322835 1696.9456693 -3229.8224409 4451.2007874 1703.1653543 -3232.3338583 4452.6496063 1709.7940945 -3233.8720472 4453.5393701 1477.5527559 -3294.6047244 4488.6023622 1477.5527559 -3327.0842520 4432.3464567 1483.1744094 -3330.4933071 4434.3149606 1483.1744094 -3298.0129921 4490.5708661 1489.3940945 -3333.0055118 4435.7637795 1489.3940945 -3300.5244094 4492.0196850 1496.0228346 -3334.5437008 4436.6535433 1496.0228346 -3302.0629921 4492.9094488 1677.2602362 -3232.7748031 4377.8976378 1489.3940945 -3333.0055118 4435.7637795 1496.0228346 -3334.5437008 4436.6535433 1677.8586614 -3238.6956693 4381.3149606 1679.6346457 -3244.4366142 4384.6299213 1682.5350394 -3249.8224409 4387.7401575 1682.5350394 -3217.3421260 4443.9960630 1682.5350394 -3249.8224409 4387.7401575 1677.8586614 -3226.8543307 4374.4763780 1741.9370079 -3206.6566929 4362.8149606 1746.7897638 -3210.8586614 4365.2440945 1746.7897638 -3178.3779528 4421.5000000 1746.7897638 -3210.8586614 4365.2440945 1927.9401575 -3294.6047244 4488.6023622 1922.3185039 -3330.4933071 4434.3149606 1927.9401575 -3327.0842520 4432.3464567 1922.3185039 -3298.0129921 4490.5708661 1932.7929134 -3322.8818898 4429.9212598 1932.7929134 -3290.4019685 4486.1771654 1936.7291339 -3318.0133858 4427.1102362 1936.7291339 -3285.5330709 4483.3661417 1750.7259843 -3183.2468504 4424.3110236 1750.7259843 -3215.7271654 4368.0551181 1753.6263780 -3188.6330709 4427.4212598 1753.6263780 -3221.1133858 4371.1614173 1755.4023622 -3194.3740157 4430.7362205 1755.4023622 -3226.8543307 4374.4763780 1756.0003937 -3200.2948819 4434.1535433 1756.0003937 -3232.7748031 4377.8976378 1755.4023622 -3206.2149606 4437.5708661 1755.4023622 -3238.6956693 4381.3149606 1753.6263780 -3211.9559055 4440.8858268 1753.6263780 -3244.4366142 4384.6299213 1750.7259843 -3217.3421260 4443.9960630 1750.7259843 -3249.8224409 4387.7401575 1746.7897638 -3222.2106299 4446.8070866 1746.7897638 -3254.6909449 4390.5511811 1741.9370079 -3226.4129921 4449.2322835 1741.9370079 -3258.8933071 4392.9763780 1730.0960630 -3232.3338583 4452.6496063 1723.4669291 -3233.8720472 4453.5393701 1736.3153543 -3229.8224409 4451.2007874 1909.4700787 -3302.0629921 4492.9094488 1902.6334646 -3335.0618110 4436.9527559 1909.4700787 -3334.5437008 4436.6535433 1902.6334646 -3302.5807087 4493.2086614 1916.0988189 -3300.5244094 4492.0196850 1916.0988189 -3333.0055118 4435.7637795 1755.4023622 -3226.8543307 4374.4763780 1756.0003937 -3232.7748031 4377.8976378 1750.7259843 -3215.7271654 4368.0551181 1753.6263780 -3244.4366142 4384.6299213 1922.3185039 -3330.4933071 4434.3149606 1750.7259843 -3249.8224409 4387.7401575 1755.4023622 -3238.6956693 4381.3149606 1927.9401575 -3327.0842520 4432.3464567 1932.7929134 -3322.8818898 4429.9212598 1936.7291339 -3318.0133858 4427.1102362 1939.6295276 -3312.6267717 4424.0000000 1686.4712598 -3222.2106299 4446.8070866 1686.4712598 -3254.6909449 4390.5511811 1502.8594488 -3335.0618110 4436.9527559 1502.8594488 -3302.5807087 4493.2086614 1716.6303150 -3234.3901575 4453.8385827 1703.1653543 -3232.3338583 4452.6496063 1709.7940945 -3266.3523622 4397.2834646 1703.1653543 -3264.8141732 4396.3937008 1709.7940945 -3233.8720472 4453.5393701 1696.9456693 -3229.8224409 4451.2007874 1696.9456693 -3262.3023622 4394.9448819 1691.3240157 -3226.4129921 4449.2322835 1691.3240157 -3258.8933071 4392.9763780 1502.8594488 -3335.0618110 4436.9527559 1686.4712598 -3254.6909449 4390.5511811 1691.3240157 -3258.8933071 4392.9763780 1696.9456693 -3262.3023622 4394.9448819 1703.1653543 -3264.8141732 4396.3937008 1730.0960630 -3264.8141732 4396.3937008 1902.6334646 -3335.0618110 4436.9527559 1723.4669291 -3266.3523622 4397.2834646 1736.3153543 -3262.3023622 4394.9448819 1741.9370079 -3258.8933071 4392.9763780 1746.7897638 -3254.6909449 4390.5511811 1909.4700787 -3334.5437008 4436.6535433 1736.3153543 -3262.3023622 4394.9448819 1736.3153543 -3229.8224409 4451.2007874 1730.0960630 -3264.8141732 4396.3937008 1730.0960630 -3232.3338583 4452.6496063 1723.4669291 -3266.3523622 4397.2834646 1723.4669291 -3233.8720472 4453.5393701 1916.0988189 -3333.0055118 4435.7637795 1716.6303150 -3266.8700787 4397.5826772 1716.6303150 -3234.3901575 4453.8385827 1709.7940945 -3266.3523622 4397.2834646 1716.6303150 -3266.8700787 4397.5826772 1709.7940945 -3266.3523622 4397.2834646 - - - - - - - - - - -0.0000174 0.5000020 0.8660243 0.0000000 0.4999999 0.8660255 -0.0000033 0.5000004 0.8660252 -0.0000174 0.5000020 0.8660243 -0.0000174 0.5000020 0.8660243 -0.0000192 0.5000026 0.8660239 0.3419739 -0.8138156 0.4698490 0.4999737 -0.7500202 0.4330080 0.3419844 -0.8138123 0.4698470 0.4999689 -0.7500226 0.4330094 0.1736477 -0.8528654 0.4924095 0.1736486 -0.8528653 0.4924094 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 -0.0000078 0.5000012 0.8660247 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000011 0.4999998 0.8660255 0.0000014 0.4999954 0.8660281 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000001 0.4999999 0.8660255 0.0000050 0.4999908 0.8660307 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000052 0.4999924 0.8660298 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.0000002 0.5000000 0.8660254 0.6427831 -0.6634193 0.3830204 0.7660532 -0.5566582 0.3213941 0.7660491 -0.5566624 0.3213965 0.6427913 -0.6634134 0.3830170 0.0000394 -0.4999717 -0.8660417 -0.0063696 -0.4878282 -0.8729164 0.0001152 -0.5002208 -0.8658979 0.0000002 -0.5000003 -0.8660252 0.0001559 -0.5000158 -0.8660162 0.0000833 -0.5000086 -0.8660204 0.0000025 -0.8660204 0.5000087 0.0000025 -0.8660204 0.5000087 -0.9396831 0.2962210 -0.1710231 -0.8660232 0.4330165 -0.2500011 -0.9396841 0.2962184 -0.1710217 -0.8660235 0.4330160 -0.2500009 -0.9762925 0.1874564 -0.1082272 -0.9762926 0.1874557 -0.1082268 -0.0000227 0.5000036 0.8660233 -0.0000227 0.5000036 0.8660233 -0.0000063 0.5000011 0.8660248 -0.0000227 0.5000036 0.8660233 -0.0000227 0.5000036 0.8660233 -0.0000227 0.5000036 0.8660233 -0.0000062 0.5000011 0.8660248 0.7660426 0.5566726 -0.3213945 0.6427788 0.6634198 -0.3830269 0.6427773 0.6634209 -0.3830275 0.7660423 0.5566728 -0.3213946 0.8660268 0.4330113 -0.2499978 0.8660264 0.4330117 -0.2499980 0.9396975 0.2961866 -0.1710029 0.9396975 0.2961866 -0.1710029 0.9848101 0.1503722 -0.0868174 0.9848098 0.1503735 -0.0868182 1.0000000 -0.0000003 0.0000002 1.0000000 0.0000002 -0.0000001 0.9848098 -0.1503739 0.0868183 0.9848101 -0.1503724 0.0868175 0.9396977 -0.2961862 0.1710026 0.9396977 -0.2961862 0.1710027 0.8660253 -0.4330138 0.2499987 0.8660250 -0.4330142 0.2499989 0.7660418 -0.5566739 0.3213941 0.7660423 -0.5566733 0.3213938 0.6427721 -0.6634253 0.3830286 0.6427689 -0.6634276 0.3830300 0.4999997 -0.7499999 0.4330132 0.4999998 -0.7499999 0.4330132 0.3420329 -0.8137934 0.4698443 0.3420307 -0.8137942 0.4698448 0.1736425 -0.8528700 0.4924033 0.1736430 -0.8528699 0.4924033 0.0000000 -0.8660268 0.4999977 0.0000000 -0.8660268 0.4999977 -0.1736488 -0.8528690 0.4924028 -0.1736483 -0.8528691 0.4924028 -0.3420271 -0.8137953 0.4698454 -0.3420294 -0.8137946 0.4698450 -0.5000028 -0.7499984 0.4330123 -0.5000027 -0.7499984 0.4330124 -0.6427822 -0.6634179 0.3830244 -0.6427790 -0.6634203 0.3830258 -0.7660423 -0.5566733 0.3213938 -0.7660418 -0.5566739 0.3213941 -0.8660250 -0.4330142 0.2499989 -0.8660253 -0.4330138 0.2499987 -0.9396901 -0.2962043 0.1710131 -0.9396902 -0.2962042 0.1710130 -0.9848062 -0.1503913 0.0868284 -0.9848059 -0.1503928 0.0868292 -1.0000000 0.0000002 -0.0000001 -1.0000000 -0.0000003 0.0000002 -0.9848060 0.1503924 -0.0868291 -0.9848063 0.1503911 -0.0868283 -0.9396900 0.2962047 -0.1710133 -0.9396900 0.2962047 -0.1710133 -0.8660264 0.4330117 -0.2499980 -0.8660268 0.4330113 -0.2499978 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.0000072 0.4999990 0.8660260 0.9914455 -0.1130344 0.0652611 0.9763002 -0.1874249 0.1082120 0.9763005 -0.1874239 0.1082114 0.9914457 -0.1130333 0.0652604 1.0000000 -0.0000019 0.0000011 1.0000000 -0.0000025 0.0000014 0.9848063 0.1503906 -0.0868281 0.9848066 0.1503895 -0.0868275 0.9396841 0.2962184 -0.1710217 0.9396831 0.2962210 -0.1710231 0.8660467 0.4329812 -0.2499808 0.8660470 0.4329807 -0.2499805 0.7660730 0.5566414 -0.3213759 0.7660737 0.5566408 -0.3213755 0.6427689 0.6634279 -0.3830294 0.6427691 0.6634278 -0.3830294 0.4999828 0.7500093 -0.4330164 0.4999825 0.7500095 -0.4330165 0.3420188 0.8137993 -0.4698446 0.3420189 0.8137992 -0.4698445 0.1736418 0.8528707 -0.4924024 0.1736426 0.8528706 -0.4924023 0.0436101 0.8652027 -0.4995222 0.0436109 0.8652027 -0.4995222 -0.0436101 0.8652027 -0.4995222 -0.0436109 0.8652027 -0.4995222 -0.1736426 0.8528706 -0.4924023 -0.1736418 0.8528707 -0.4924024 -0.3420189 0.8137992 -0.4698445 -0.3420188 0.8137993 -0.4698446 -0.4999968 0.7500024 -0.4330123 -0.4999971 0.7500022 -0.4330123 -0.6427971 0.6634074 -0.3830176 -0.6427972 0.6634073 -0.3830176 -0.7660565 0.5566585 -0.3213857 -0.7660558 0.5566592 -0.3213861 0.8660222 -0.4330156 0.2500062 0.9396895 -0.2962069 0.1710119 0.9396914 -0.2962024 0.1710093 0.8660167 -0.4330238 0.2500109 -0.9914461 0.1130312 -0.0652576 -0.9914456 0.1130346 -0.0652596 -1.0000000 -0.0000004 0.0000010 -1.0000000 -0.0000015 0.0000017 -0.9848072 -0.1503854 0.0868272 -0.9848066 -0.1503885 0.0868290 -0.9396976 -0.2961846 0.1710062 -0.9396996 -0.2961799 0.1710035 -0.8660464 -0.4329786 0.2499862 -0.8660475 -0.4329771 0.2499853 0.0000108 0.4999796 0.8660372 0.0000108 0.4999796 0.8660372 0.0000108 0.4999796 0.8660372 0.0000108 0.4999796 0.8660372 0.0000107 0.4999807 0.8660366 0.9848067 0.1503876 -0.0868297 0.9396959 0.2961876 -0.1710104 0.9396977 0.2961832 -0.1710079 0.9848075 0.1503833 -0.0868272 1.0000000 0.0000003 -0.0000011 1.0000000 0.0000003 -0.0000011 0.9848062 -0.1503925 0.0868263 0.9848083 -0.1503824 0.0868204 0.0000551 -0.5000850 -0.8659763 0.0010255 -0.5013045 -0.8652703 -0.0000035 -0.5000054 -0.8660223 -0.0000111 -0.5000016 -0.8660245 0.0000515 -0.5001142 -0.8659595 -0.0000111 -0.5000016 -0.8660245 -0.0000111 -0.5000016 -0.8660245 -0.0000111 -0.5000016 -0.8660245 -0.0000111 -0.5000016 -0.8660245 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0001343 -0.4999739 -0.8660405 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000184 -0.4999925 -0.8660297 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0029405 -0.4987481 -0.8667420 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.0000000 -0.5000003 -0.8660252 -0.1736389 -0.8528668 0.4924102 -0.1736379 -0.8528669 0.4924103 0.5000051 0.7499965 -0.4330128 0.3420164 0.8137982 -0.4698481 0.5000069 0.7499956 -0.4330123 0.3420173 0.8137980 -0.4698479 -0.3419888 -0.8138109 0.4698462 -0.3419784 -0.8138142 0.4698482 0.1736331 0.8528713 -0.4924044 0.0000000 0.8660266 -0.4999979 0.1736304 0.8528717 -0.4924046 0.0000000 0.8660266 -0.4999979 -0.0000006 -0.4999998 -0.8660255 -0.7660423 0.5566728 -0.3213946 -0.7660426 0.5566726 -0.3213945 -0.4999842 -0.7500150 0.4330050 -0.4999794 -0.7500174 0.4330064 -0.6427831 -0.6634193 0.3830204 -0.6427913 -0.6634134 0.3830170 -0.0000018 0.4999947 0.8660284 -0.0000022 0.4999929 0.8660295 -0.0000007 0.5000033 0.8660235 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 0.0000064 0.4999985 0.8660262 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.0000022 0.4999929 0.8660295 -0.6427889 0.6634125 -0.3830226 -0.6427874 0.6634136 -0.3830232 -0.5000099 0.7499941 -0.4330114 -0.5000081 0.7499950 -0.4330119 -0.3420129 0.8137994 -0.4698487 -0.3420138 0.8137991 -0.4698485 -0.1736363 0.8528708 -0.4924041 -0.1736390 0.8528704 -0.4924039 0.0000001 -0.4999998 -0.8660255 0.0000020 -0.5000060 -0.8660220 -0.0001601 -0.5000271 -0.8660098 0.9396982 -0.2961832 0.1710054 0.9397001 -0.2961785 0.1710027 -0.0000001 -0.4999997 -0.8660256 0.0001274 -0.5000257 -0.8660105 -0.0001278 -0.4999748 -0.8660399 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0000001 -0.4999997 -0.8660256 -0.0002742 -0.4996461 -0.8662296 -0.0001801 -0.4997740 -0.8661559 -0.7660380 -0.5566748 0.3214016 -0.7660327 -0.5566802 0.3214048 0.0000091 0.4999870 0.8660329 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000104 0.4999848 0.8660342 0.0000020 0.4999994 0.8660257 -0.6427602 -0.6634315 0.3830379 -0.6427566 -0.6634341 0.3830394 -0.4999578 -0.7500155 0.4330346 -0.4999637 -0.7500125 0.4330329 -0.3420497 -0.8137793 0.4698566 -0.3420492 -0.8137795 0.4698567 -0.1737237 -0.8528469 0.4924148 -0.1737118 -0.8528487 0.4924158 0.0001000 -0.5001472 -0.8659404 0.0000056 -0.5000047 -0.8660227 -0.0000007 -0.4999944 -0.8660287 0.0000056 -0.5000047 -0.8660227 0.0000056 -0.5000047 -0.8660227 -0.0000111 -0.4999772 -0.8660386 0.8660242 0.4330110 -0.2500070 0.8660264 0.4330077 -0.2500051 0.0001489 -0.5002209 -0.8658978 0.0002167 -0.5000440 -0.8660000 0.0000880 -0.5000180 -0.8660150 -0.7660532 -0.5566582 0.3213941 -0.7660491 -0.5566624 0.3213965 0.6427602 -0.6634315 0.3830379 0.4999578 -0.7500155 0.4330346 0.6427566 -0.6634341 0.3830394 0.4999637 -0.7500125 0.4330329 0.7660327 -0.5566802 0.3214048 0.7660380 -0.5566748 0.3214016 0.8660345 -0.4329966 0.2499965 0.8660334 -0.4329981 0.2499974 -0.8660167 -0.4330238 0.2500109 -0.8660222 -0.4330156 0.2500062 -0.9396895 -0.2962069 0.1710119 -0.9396914 -0.2962024 0.1710093 -0.9848132 -0.1503581 0.0868064 -0.9848112 -0.1503682 0.0868122 -1.0000000 0.0000003 -0.0000011 -1.0000000 0.0000003 -0.0000011 -0.9848125 0.1503590 -0.0868131 -0.9848116 0.1503633 -0.0868156 -0.9396959 0.2961876 -0.1710104 -0.9396977 0.2961832 -0.1710079 -0.8660242 0.4330110 -0.2500070 -0.8660264 0.4330077 -0.2500051 -0.7660269 0.5566844 -0.3214113 -0.7660224 0.5566891 -0.3214140 -0.6427783 0.6634164 -0.3830336 -0.6427730 0.6634203 -0.3830359 0.0000003 0.5000099 0.8660197 0.0000001 0.5000043 0.8660229 0.0000003 0.5000099 0.8660197 0.1737118 -0.8528487 0.4924158 0.0436200 -0.8651902 0.4995430 0.1737237 -0.8528469 0.4924148 0.0436193 -0.8651902 0.4995431 0.3420492 -0.8137795 0.4698567 0.3420497 -0.8137793 0.4698566 -0.0001171 -0.5002156 -0.8659009 -0.0000742 -0.5001369 -0.8659464 -0.0005044 -0.4998989 -0.8660836 -0.0000010 -0.5000026 -0.8660239 -0.0000014 -0.5000003 -0.8660252 0.0000069 -0.4999894 -0.8660315 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 -0.0000010 -0.5000026 -0.8660239 0.7660269 0.5566844 -0.3214113 0.7660224 0.5566891 -0.3214140 -0.0436200 -0.8651902 0.4995430 -0.0436193 -0.8651902 0.4995431 -0.0000000 0.5000028 0.8660238 0.3420264 0.8137903 -0.4698545 0.1737152 0.8528527 -0.4924077 0.3420288 0.8137896 -0.4698540 0.1737024 0.8528547 -0.4924088 0.4999823 0.7500045 -0.4330254 0.4999753 0.7500080 -0.4330274 0.6427783 0.6634164 -0.3830336 0.6427730 0.6634203 -0.3830359 -0.0000236 -0.4999581 -0.8660496 -0.0000270 -0.4999510 -0.8660537 -0.0000270 -0.4999510 -0.8660537 -0.0000270 -0.4999510 -0.8660537 -0.0000066 -0.4999931 -0.8660294 0.0000150 -0.4999761 -0.8660392 0.0000130 -0.4999803 -0.8660368 0.0000010 -0.4999977 -0.8660267 0.0000150 -0.4999761 -0.8660392 0.0000150 -0.4999761 -0.8660392 0.0000150 -0.4999761 -0.8660392 0.0000014 -0.4999912 -0.8660305 -0.4999858 0.7500027 -0.4330244 -0.4999928 0.7499992 -0.4330223 -0.3420332 0.8137882 -0.4698532 -0.3420308 0.8137890 -0.4698537 -0.1737054 0.8528542 -0.4924085 -0.1736926 0.8528561 -0.4924097 -0.0000024 -0.4999953 -0.8660281 0.0000025 0.8660204 -0.5000087 0.0000025 0.8660204 -0.5000087 0.0000001 -0.5000069 -0.8660214 -0.0000027 -0.5000032 -0.8660235 -0.0000002 -0.5000066 -0.8660216 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 1 4 5 6 7 8 7 6 9 10 8 11 8 10 6 5 12 13 12 5 14 14 5 15 15 5 16 13 12 17 17 12 18 18 12 19 19 12 20 20 12 21 21 12 22 22 12 23 23 12 24 24 12 25 24 25 26 27 28 29 28 27 30 30 27 31 31 27 32 32 27 33 33 27 34 34 27 35 35 27 36 36 27 37 37 27 38 38 27 39 39 27 40 40 27 41 41 27 42 42 27 43 24 44 34 44 24 45 45 24 46 46 24 47 47 24 48 48 24 49 49 24 50 50 24 51 51 24 26 34 44 52 34 52 53 34 53 54 34 54 55 34 55 56 34 56 57 34 57 58 34 58 59 34 59 60 34 60 61 34 61 33 62 51 26 51 62 63 63 62 64 63 64 65 65 64 66 65 66 67 67 66 68 67 68 69 69 68 70 69 70 71 71 70 72 71 72 73 73 72 74 73 74 75 75 74 76 75 76 77 77 76 78 77 78 79 79 78 80 79 80 81 81 80 82 81 82 83 83 82 84 83 84 85 85 84 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 91 90 92 91 92 93 93 92 94 93 94 95 95 94 32 95 32 33 96 97 98 97 96 99 100 101 102 101 100 103 101 103 104 104 103 96 104 96 105 105 96 98 104 105 106 104 106 107 104 107 2 108 109 110 109 108 111 9 108 7 108 9 111 112 113 114 115 116 112 116 115 117 118 11 119 11 118 10 120 121 122 121 120 123 124 122 125 122 124 120 126 16 5 16 126 127 16 127 128 16 128 129 129 128 130 130 128 131 131 128 132 133 134 135 134 133 136 137 136 133 136 137 138 139 138 137 138 139 140 141 140 139 140 141 142 143 142 141 142 143 144 145 144 143 144 145 146 147 146 145 146 147 148 149 148 147 148 149 150 151 150 149 150 151 152 153 152 151 152 153 154 155 153 156 153 155 154 157 156 158 156 157 155 159 158 160 158 159 157 161 160 162 160 161 159 163 161 162 161 163 164 165 164 163 164 165 166 167 166 165 166 167 168 169 168 167 168 169 170 171 169 172 169 171 170 173 172 174 172 173 171 175 174 176 174 175 173 177 176 178 176 177 175 179 178 180 178 179 177 181 180 182 180 181 179 183 182 184 182 183 181 185 184 186 184 185 183 187 132 128 132 187 188 132 188 29 132 29 189 189 29 190 190 29 191 191 29 192 192 29 193 193 29 28 194 195 196 195 194 197 198 197 194 197 198 199 200 199 198 199 200 201 202 201 200 201 202 203 204 203 202 203 204 205 206 205 204 205 206 207 208 207 206 207 208 209 210 208 211 208 210 209 212 211 213 211 212 210 214 213 215 213 214 212 216 215 217 215 216 214 218 217 219 217 218 216 220 218 219 218 220 221 222 221 220 221 222 223 224 223 222 223 224 225 226 225 224 225 226 227 228 226 229 226 228 227 123 229 121 229 123 228 230 231 232 231 230 233 110 233 230 233 110 109 234 125 235 125 234 124 236 235 237 235 236 234 238 237 239 237 238 236 240 239 241 239 240 238 242 241 243 241 242 240 244 99 96 99 244 245 99 245 246 99 246 247 99 247 248 249 250 251 250 249 252 253 252 249 252 253 254 255 254 253 254 255 256 232 256 255 256 232 231 257 258 259 113 260 261 260 113 262 262 113 263 263 113 264 264 113 265 265 113 259 259 113 257 115 112 114 113 261 114 266 267 268 267 266 269 269 266 270 270 266 271 271 266 272 272 266 273 273 266 274 274 266 275 274 275 276 276 275 277 277 275 278 278 275 279 279 275 280 280 275 281 281 275 282 282 275 283 283 275 284 284 275 285 285 275 286 286 275 287 288 289 117 289 288 290 289 290 291 289 291 292 289 292 293 289 293 294 289 294 295 289 295 296 289 296 297 289 297 298 289 298 299 289 299 300 289 300 301 289 301 302 289 302 303 289 303 275 290 288 304 290 304 305 290 305 306 290 306 307 290 307 308 290 308 309 290 309 310 290 310 266 290 266 311 311 266 312 312 266 268 313 275 314 275 313 287 315 312 268 312 315 316 316 315 317 316 317 318 318 317 319 318 319 320 320 319 321 320 321 322 322 321 323 322 323 324 324 323 325 324 325 326 326 325 327 326 327 328 328 327 329 328 329 330 330 329 331 330 331 332 332 331 333 332 333 334 334 333 335 334 335 336 336 335 337 336 337 338 338 337 339 338 339 340 340 339 341 340 341 342 342 341 343 342 343 344 344 343 345 344 345 346 346 345 347 346 347 348 348 347 286 348 286 287 349 118 119 118 349 350 351 352 353 352 351 354 134 353 135 353 134 351 355 350 349 350 355 356 357 358 359 358 357 360 354 359 352 359 354 357 361 303 314 362 186 363 186 362 185 364 356 355 356 364 365 366 365 364 365 366 367 368 369 370 369 368 371 371 368 372 372 368 373 373 368 374 375 29 376 29 375 377 29 377 378 29 378 379 29 379 374 29 374 368 29 368 380 29 380 381 29 381 382 29 382 383 29 383 384 29 384 385 29 385 386 387 363 388 363 387 362 389 387 388 387 389 390 391 390 389 390 391 392 393 392 391 392 393 394 358 394 393 394 358 360 395 396 397 196 398 399 398 196 195 400 401 402 401 400 403 403 400 404 403 404 405 403 405 406 403 406 407 403 407 408 403 408 409 403 409 410 403 410 411 403 411 412 259 413 414 413 259 258 415 243 416 243 415 242 417 99 248 99 417 418 418 417 419 419 417 420 420 417 421 421 417 422 422 417 423 424 416 425 416 424 415 426 424 425 424 426 427 428 427 426 427 428 429 430 429 428 429 430 431 432 433 259 433 432 434 434 432 435 434 435 436 434 436 437 251 438 439 438 251 250 259 440 432 440 259 414 361 402 289 395 441 401 441 395 442 443 366 444 366 443 367 445 446 447 446 445 448 449 445 447 445 449 450 451 450 449 450 451 452 399 452 451 452 399 398 453 444 454 444 453 443 455 454 456 454 455 453 457 456 458 456 457 455 459 458 460 458 459 457 461 460 462 460 461 459 463 462 464 462 463 461 465 464 466 464 465 463 467 466 468 466 467 465 469 468 470 468 469 467 368 471 472 471 368 473 473 368 370 474 475 476 475 474 477 478 476 479 476 478 474 448 479 446 479 448 478 396 480 397 480 396 481 395 397 482 483 484 485 484 483 486 484 486 481 484 481 396 484 396 487 487 396 488 488 396 489 489 396 490 439 491 492 491 439 438 493 431 430 431 493 494 368 423 417 423 368 495 495 368 472 496 497 498 497 496 499 500 498 501 498 500 496 502 501 503 501 502 500 492 502 503 502 492 491 437 504 434 504 437 505 504 505 506 504 506 507 504 507 508 395 482 442 509 510 511 510 509 512 510 512 513 510 513 514 510 514 485 510 485 515 516 469 470 469 516 517 518 517 516 517 518 519 520 519 518 519 520 521 477 493 475 493 477 494 484 515 485 515 484 522 523 521 520 521 523 524 499 523 497 523 499 524 508 510 504 510 508 525 526 510 527 510 526 511

-
-
-
- - - - 2344.8822835 30.2531575 2568.9964567 2336.3366142 -2.8746402 2513.1122047 2344.8822835 -2.2271555 2512.7385827 2336.3366142 29.6056732 2569.3700787 2328.0503937 -4.7974213 2514.2224409 2328.0503937 27.6828937 2570.4799213 2353.4279528 -2.8746402 2513.1122047 2353.4279528 29.6056732 2569.3700787 2320.2759843 -7.9370709 2516.0350394 2320.2759843 24.5432441 2572.2933071 2361.7137795 -4.7974213 2514.2224409 2361.7137795 27.6828937 2570.4799213 2313.2488189 -12.1981969 2518.4952756 2313.2488189 20.2821142 2574.7527559 2369.4885827 -7.9370709 2516.0350394 2369.4885827 24.5432441 2572.2933071 2307.1830709 15.0289882 2577.7858268 2307.1830709 -17.4513228 2521.5279528 2376.5153543 -12.1981969 2518.4952756 2376.5153543 20.2821142 2574.7527559 2302.2625984 8.9434764 2581.2996063 2302.2625984 -23.5368386 2525.0413386 2382.5811024 15.0289882 2577.7858268 2382.5811024 -17.4513228 2521.5279528 2298.6374016 2.2104709 2585.1862205 2298.6374016 -30.2698425 2528.9287402 2387.5015748 8.9434764 2581.2996063 2387.5015748 -23.5368386 2525.0413386 2296.4173228 -4.9654291 2589.3295276 2296.4173228 -37.4457441 2533.0720472 2391.1267717 2.2104709 2585.1862205 2391.1267717 -30.2698425 2528.9287402 2295.6696850 -12.3662087 2593.6027559 2295.6696850 -44.8465354 2537.3444882 2393.3472441 -4.9654291 2589.3295276 2393.3472441 -37.4457441 2533.0720472 2296.4173228 -19.7669803 2597.8751969 2296.4173228 -52.2472835 2541.6177165 2394.0948819 -12.3662087 2593.6027559 2394.0948819 -44.8465354 2537.3444882 2298.6374016 -26.9428819 2602.0185039 2298.6374016 -59.4231890 2545.7610236 2393.3472441 -19.7669803 2597.8751969 2393.3472441 -52.2472835 2541.6177165 2302.2625984 -33.6758858 2605.9059055 2302.2625984 -66.1561811 2549.6476378 2391.1267717 -26.9428819 2602.0185039 2391.1267717 -59.4231890 2545.7610236 2307.1830709 -39.7614173 2609.4192913 2307.1830709 -72.2417323 2553.1618110 2387.5015748 -33.6758858 2605.9059055 2387.5015748 -66.1561811 2549.6476378 2313.2488189 -45.0145276 2612.4519685 2313.2488189 -77.4948425 2556.1944882 2382.5811024 -39.7614173 2609.4192913 2382.5811024 -72.2417323 2553.1618110 2320.2759843 -81.7559843 2558.6547244 2320.2759843 -49.2756693 2614.9118110 2376.5153543 -45.0145276 2612.4519685 2376.5153543 -77.4948425 2556.1944882 2328.0503937 -84.8956299 2560.4677165 2328.0503937 -52.4153150 2616.7251969 2369.4885827 -81.7559843 2558.6547244 2369.4885827 -49.2756693 2614.9118110 2336.3366142 -86.8183858 2561.5771654 2336.3366142 -54.3380709 2617.8346457 2361.7137795 -84.8956299 2560.4677165 2361.7137795 -52.4153150 2616.7251969 2344.8822835 -87.4658661 2561.9507874 2344.8822835 -54.9855512 2618.2090551 2353.4279528 -86.8183858 2561.5771654 2353.4279528 -54.3380709 2617.8346457 - - - - - - - - - - 0.0000000 -0.8660266 0.4999979 0.1736377 -0.8528710 0.4924033 0.0000000 -0.8660266 0.4999979 0.1736362 -0.8528712 0.4924035 0.3420275 -0.8137961 0.4698436 0.3420287 -0.8137958 0.4698434 -0.1736435 -0.8528701 0.4924028 -0.1736420 -0.8528703 0.4924030 0.4999984 -0.7500019 0.4330113 0.4999986 -0.7500018 0.4330113 -0.3420240 -0.8137973 0.4698443 -0.3420252 -0.8137969 0.4698440 0.6427776 -0.6634219 0.3830252 0.6427761 -0.6634230 0.3830259 -0.5000014 -0.7500004 0.4330105 -0.5000016 -0.7500003 0.4330104 0.7660427 -0.5566730 0.3213936 0.7660422 -0.5566734 0.3213938 -0.6427877 -0.6634146 0.3830210 -0.6427862 -0.6634157 0.3830216 0.8660247 -0.4330146 0.2499991 0.8660250 -0.4330142 0.2499989 -0.7660427 -0.5566730 0.3213936 -0.7660422 -0.5566734 0.3213938 0.9396976 -0.2961865 0.1710028 0.9396976 -0.2961865 0.1710028 -0.8660247 -0.4330146 0.2499991 -0.8660250 -0.4330142 0.2499989 0.9848101 -0.1503722 0.0868174 0.9848098 -0.1503736 0.0868182 -0.9396900 -0.2962045 0.1710132 -0.9396900 -0.2962045 0.1710132 1.0000000 0.0000003 -0.0000002 1.0000000 -0.0000001 0.0000001 -0.9848062 -0.1503911 0.0868283 -0.9848060 -0.1503925 0.0868291 0.9848098 0.1503737 -0.0868182 0.9848101 0.1503723 -0.0868174 -1.0000000 0.0000003 -0.0000002 -1.0000000 -0.0000001 0.0000001 0.9396976 0.2961866 -0.1710028 0.9396976 0.2961866 -0.1710028 -0.9848060 0.1503926 -0.0868291 -0.9848062 0.1503912 -0.0868283 0.8660270 0.4330110 -0.2499975 0.8660272 0.4330106 -0.2499973 -0.9396900 0.2962046 -0.1710132 -0.9396900 0.2962046 -0.1710132 0.7660420 0.5566732 -0.3213948 0.7660422 0.5566729 -0.3213947 -0.8660270 0.4330110 -0.2499975 -0.8660272 0.4330106 -0.2499973 0.6427790 0.6634197 -0.3830268 0.6427775 0.6634208 -0.3830274 -0.7660420 0.5566732 -0.3213948 -0.7660422 0.5566729 -0.3213947 0.5000083 0.7499950 -0.4330119 0.5000066 0.7499958 -0.4330124 -0.6427890 0.6634124 -0.3830225 -0.6427875 0.6634135 -0.3830232 0.3420147 0.8137988 -0.4698484 0.3420154 0.8137985 -0.4698482 -0.5000113 0.7499935 -0.4330110 -0.5000096 0.7499943 -0.4330115 0.1736286 0.8528720 -0.4924048 0.1736312 0.8528716 -0.4924046 -0.3420111 0.8137999 -0.4698490 -0.3420119 0.8137997 -0.4698489 0.0000000 0.8660266 -0.4999979 0.0000000 0.8660266 -0.4999979 -0.1736345 0.8528711 -0.4924043 -0.1736370 0.8528707 -0.4924040 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 4 1 4 3 5 6 0 2 0 6 7 5 8 4 8 5 9 10 7 6 7 10 11 9 12 8 12 9 13 14 11 10 11 14 15 12 16 17 16 12 13 18 15 14 15 18 19 17 20 21 20 17 16 22 18 23 18 22 19 21 24 25 24 21 20 26 23 27 23 26 22 25 28 29 28 25 24 30 27 31 27 30 26 29 32 33 32 29 28 34 31 35 31 34 30 33 36 37 36 33 32 38 35 39 35 38 34 37 40 41 40 37 36 42 39 43 39 42 38 41 44 45 44 41 40 46 43 47 43 46 42 45 48 49 48 45 44 50 47 51 47 50 46 49 52 53 52 49 48 54 51 55 51 54 50 52 56 53 56 52 57 58 55 59 55 58 54 57 60 56 60 57 61 62 58 59 58 62 63 61 64 60 64 61 65 66 63 62 63 66 67 65 68 64 68 65 69 70 67 66 67 70 71 68 71 70 71 68 69

-
-
-
- - - - -5311.2165354 1072.8346457 -699.2960630 -5680.9527559 1190.9448819 -510.1185039 -5680.9527559 1072.8346457 -510.1185039 -5311.2165354 1190.9448819 -699.2960630 -5311.2165354 1190.9448819 -699.2960630 -5311.2165354 1072.8346457 -699.2960630 -5680.9527559 1190.9448819 -510.1185039 -5680.9527559 1072.8346457 -510.1185039 -7844.8385827 1190.9448819 -8321.3779528 -7015.3779528 1190.9448819 -8335.3897638 -7430.4606299 1190.9448819 -8349.4133858 -6603.8385827 1190.9448819 -8279.4409449 -8254.2519685 1190.9448819 -8251.5590551 -6200.0748031 1190.9448819 -8182.1417323 -8654.5000000 1190.9448819 -8140.6811024 -5808.2244094 1190.9448819 -8044.4960630 -9041.4803150 1190.9448819 -7989.8818898 -5432.3070866 1190.9448819 -7867.9133858 -9411.2165354 1190.9448819 -7800.7047244 -5076.1850394 1190.9448819 -7654.2086614 -9759.9173228 1190.9448819 -7575.0905512 -4743.5118110 1190.9448819 -7405.5708661 -10084.0039370 1190.9448819 -7315.3582677 -4437.6968504 1190.9448819 -7124.5511811 -10380.1535433 1190.9448819 -7024.1732283 -4161.8858268 1190.9448819 -6814.0354331 -10645.3188976 1190.9448819 -6704.5196850 -3918.9000000 1190.9448819 -6477.2086614 -10876.7913386 1190.9448819 -6359.6771654 -3711.2385827 1190.9448819 -6117.5275591 -11072.1850394 1190.9448819 -5993.1889764 -3541.0303150 1190.9448819 -5738.6850394 -11229.5000000 1190.9448819 -5608.8110236 -3410.0228346 1190.9448819 -5344.5669291 -11347.1220472 1190.9448819 -5210.4921260 -3319.5598425 1190.9448819 -4939.2125984 -11423.8425197 1190.9448819 -4802.3188976 -3270.5692913 1190.9448819 -4526.7913386 -11458.8779528 1190.9448819 -4388.4724409 -3263.5551181 1190.9448819 -4111.5275591 -11451.8622047 1190.9448819 -3973.2086614 -3298.5877953 1190.9448819 -3697.6830709 -11402.8740157 1190.9448819 -3560.7862205 -3375.3090551 1190.9448819 -3289.5074803 -11312.4094488 1190.9448819 -3155.4350394 -3492.9311024 1190.9448819 -2891.1881890 -11181.4015748 1190.9448819 -2761.3157480 -3650.2468504 1190.9448819 -2506.8118110 -11011.1929134 1190.9448819 -2382.4712598 -3845.6417323 1190.9448819 -2140.3228346 -10803.5314961 1190.9448819 -2022.7909449 -4077.1102362 1190.9448819 -1795.4822835 -10560.5472441 1190.9448819 -1685.9645669 -4342.2795276 1190.9448819 -1475.8279528 -10284.7322835 1190.9448819 -1375.4492126 -4638.4291339 1190.9448819 -1184.6409449 -9978.9212598 1190.9448819 -1094.4299213 -4962.5157480 1190.9448819 -924.9086614 -9646.2440945 1190.9448819 -845.7913386 -9290.1259843 1190.9448819 -632.0846457 -8914.2086614 1190.9448819 -455.5023622 -6067.9291339 1190.9448819 -359.3170866 -8522.3582677 1190.9448819 -317.8571260 -6468.1811024 1190.9448819 -248.4393307 -8118.5905512 1190.9448819 -220.5607087 -6877.5944882 1190.9448819 -178.6232677 -7707.0551181 1190.9448819 -164.6119685 -7291.9685039 1190.9448819 -150.5849213 -7291.9685039 1190.9448819 -150.5849213 -7707.0551181 1190.9448819 -164.6119685 -6877.5944882 1190.9448819 -178.6232677 -8118.5905512 1190.9448819 -220.5607087 -6468.1811024 1190.9448819 -248.4393307 -8522.3582677 1190.9448819 -317.8571260 -6067.9291339 1190.9448819 -359.3170866 -8914.2086614 1190.9448819 -455.5023622 -9290.1259843 1190.9448819 -632.0846457 -9646.2440945 1190.9448819 -845.7913386 -4962.5157480 1190.9448819 -924.9086614 -9978.9212598 1190.9448819 -1094.4299213 -4638.4291339 1190.9448819 -1184.6409449 -10284.7322835 1190.9448819 -1375.4492126 -4342.2795276 1190.9448819 -1475.8279528 -10560.5472441 1190.9448819 -1685.9645669 -4077.1102362 1190.9448819 -1795.4822835 -10803.5314961 1190.9448819 -2022.7909449 -3845.6417323 1190.9448819 -2140.3228346 -11011.1929134 1190.9448819 -2382.4712598 -3650.2468504 1190.9448819 -2506.8118110 -11181.4015748 1190.9448819 -2761.3157480 -3492.9311024 1190.9448819 -2891.1881890 -11312.4094488 1190.9448819 -3155.4350394 -3375.3090551 1190.9448819 -3289.5074803 -11402.8740157 1190.9448819 -3560.7862205 -3298.5877953 1190.9448819 -3697.6830709 -11451.8622047 1190.9448819 -3973.2086614 -3263.5551181 1190.9448819 -4111.5275591 -11458.8779528 1190.9448819 -4388.4724409 -3270.5692913 1190.9448819 -4526.7913386 -11423.8425197 1190.9448819 -4802.3188976 -3319.5598425 1190.9448819 -4939.2125984 -11347.1220472 1190.9448819 -5210.4921260 -3410.0228346 1190.9448819 -5344.5669291 -11229.5000000 1190.9448819 -5608.8110236 -3541.0303150 1190.9448819 -5738.6850394 -11072.1850394 1190.9448819 -5993.1889764 -3711.2385827 1190.9448819 -6117.5275591 -10876.7913386 1190.9448819 -6359.6771654 -3918.9000000 1190.9448819 -6477.2086614 -10645.3188976 1190.9448819 -6704.5196850 -4161.8858268 1190.9448819 -6814.0354331 -10380.1535433 1190.9448819 -7024.1732283 -4437.6968504 1190.9448819 -7124.5511811 -10084.0039370 1190.9448819 -7315.3582677 -4743.5118110 1190.9448819 -7405.5708661 -9759.9173228 1190.9448819 -7575.0905512 -5076.1850394 1190.9448819 -7654.2086614 -9411.2165354 1190.9448819 -7800.7047244 -5432.3070866 1190.9448819 -7867.9133858 -9041.4803150 1190.9448819 -7989.8818898 -5808.2244094 1190.9448819 -8044.4960630 -8654.5000000 1190.9448819 -8140.6811024 -6200.0748031 1190.9448819 -8182.1417323 -8254.2519685 1190.9448819 -8251.5590551 -6603.8385827 1190.9448819 -8279.4409449 -7844.8385827 1190.9448819 -8321.3779528 -7015.3779528 1190.9448819 -8335.3897638 -7430.4606299 1190.9448819 -8349.4133858 -6067.9291339 1072.8346457 -359.3170866 -6067.9291339 1072.8346457 -359.3170866 -4962.5157480 1072.8346457 -924.9086614 -4962.5157480 1072.8346457 -924.9086614 -3375.3090551 1072.8346457 -3289.5074803 -3298.5877953 1072.8346457 -3697.6830709 -3375.3090551 1072.8346457 -3289.5074803 -3298.5877953 1072.8346457 -3697.6830709 -3263.5551181 1072.8346457 -4111.5275591 -3263.5551181 1072.8346457 -4111.5275591 -3270.5692913 1072.8346457 -4526.7913386 -3270.5692913 1072.8346457 -4526.7913386 -3319.5598425 1072.8346457 -4939.2125984 -3319.5598425 1072.8346457 -4939.2125984 -3410.0228346 1072.8346457 -5344.5669291 -3410.0228346 1072.8346457 -5344.5669291 -3541.0303150 1072.8346457 -5738.6850394 -3541.0303150 1072.8346457 -5738.6850394 -3711.2385827 1072.8346457 -6117.5275591 -3711.2385827 1072.8346457 -6117.5275591 -3918.9000000 1072.8346457 -6477.2086614 -3918.9000000 1072.8346457 -6477.2086614 -4161.8858268 1072.8346457 -6814.0354331 -4161.8858268 1072.8346457 -6814.0354331 -4437.6968504 1072.8346457 -7124.5511811 -4437.6968504 1072.8346457 -7124.5511811 -4743.5118110 1072.8346457 -7405.5708661 -4743.5118110 1072.8346457 -7405.5708661 -5076.1850394 1072.8346457 -7654.2086614 -5076.1850394 1072.8346457 -7654.2086614 -5432.3070866 1072.8346457 -7867.9133858 -5432.3070866 1072.8346457 -7867.9133858 -5808.2244094 1072.8346457 -8044.4960630 -5808.2244094 1072.8346457 -8044.4960630 -6200.0748031 1072.8346457 -8182.1417323 -6200.0748031 1072.8346457 -8182.1417323 -6603.8385827 1072.8346457 -8279.4409449 -6603.8385827 1072.8346457 -8279.4409449 -7015.3779528 1072.8346457 -8335.3897638 -7015.3779528 1072.8346457 -8335.3897638 -7430.4606299 1072.8346457 -8349.4133858 -7430.4606299 1072.8346457 -8349.4133858 -7844.8385827 1072.8346457 -8321.3779528 -7844.8385827 1072.8346457 -8321.3779528 -8254.2519685 1072.8346457 -8251.5590551 -8254.2519685 1072.8346457 -8251.5590551 -8654.5000000 1072.8346457 -8140.6811024 -8654.5000000 1072.8346457 -8140.6811024 -9041.4803150 1072.8346457 -7989.8818898 -9041.4803150 1072.8346457 -7989.8818898 -9411.2165354 1072.8346457 -7800.7047244 -9411.2165354 1072.8346457 -7800.7047244 -9759.9173228 1072.8346457 -7575.0905512 -9759.9173228 1072.8346457 -7575.0905512 -10084.0039370 1072.8346457 -7315.3582677 -10084.0039370 1072.8346457 -7315.3582677 -10380.1535433 1072.8346457 -7024.1732283 -10380.1535433 1072.8346457 -7024.1732283 -10645.3188976 1072.8346457 -6704.5196850 -10645.3188976 1072.8346457 -6704.5196850 -10876.7913386 1072.8346457 -6359.6771654 -10876.7913386 1072.8346457 -6359.6771654 -11072.1850394 1072.8346457 -5993.1889764 -11072.1850394 1072.8346457 -5993.1889764 -11229.5000000 1072.8346457 -5608.8110236 -11229.5000000 1072.8346457 -5608.8110236 -11347.1220472 1072.8346457 -5210.4921260 -11347.1220472 1072.8346457 -5210.4921260 -11423.8425197 1072.8346457 -4802.3188976 -11423.8425197 1072.8346457 -4802.3188976 -11458.8779528 1072.8346457 -4388.4724409 -11458.8779528 1072.8346457 -4388.4724409 -11451.8622047 1072.8346457 -3973.2086614 -11451.8622047 1072.8346457 -3973.2086614 -11402.8740157 1072.8346457 -3560.7862205 -11402.8740157 1072.8346457 -3560.7862205 -11312.4094488 1072.8346457 -3155.4350394 -11312.4094488 1072.8346457 -3155.4350394 -11181.4015748 1072.8346457 -2761.3157480 -11181.4015748 1072.8346457 -2761.3157480 -11011.1929134 1072.8346457 -2382.4712598 -11011.1929134 1072.8346457 -2382.4712598 -10803.5314961 1072.8346457 -2022.7909449 -10803.5314961 1072.8346457 -2022.7909449 -10560.5472441 1072.8346457 -1685.9645669 -10560.5472441 1072.8346457 -1685.9645669 -10284.7322835 1072.8346457 -1375.4492126 -10284.7322835 1072.8346457 -1375.4492126 -9978.9212598 1072.8346457 -1094.4299213 -9978.9212598 1072.8346457 -1094.4299213 -9646.2440945 1072.8346457 -845.7913386 -9646.2440945 1072.8346457 -845.7913386 -9290.1259843 1072.8346457 -632.0846457 -9290.1259843 1072.8346457 -632.0846457 -8914.2086614 1072.8346457 -455.5023622 -8914.2086614 1072.8346457 -455.5023622 -8522.3582677 1072.8346457 -317.8571260 -8522.3582677 1072.8346457 -317.8571260 -8118.5905512 1072.8346457 -220.5607087 -8118.5905512 1072.8346457 -220.5607087 -7707.0551181 1072.8346457 -164.6119685 -7707.0551181 1072.8346457 -164.6119685 -7291.9685039 1072.8346457 -150.5849213 -7291.9685039 1072.8346457 -150.5849213 -6877.5944882 1072.8346457 -178.6232677 -6877.5944882 1072.8346457 -178.6232677 -6468.1811024 1072.8346457 -248.4393307 -6468.1811024 1072.8346457 -248.4393307 -4638.4291339 1072.8346457 -1184.6409449 -4638.4291339 1072.8346457 -1184.6409449 -4342.2795276 1072.8346457 -1475.8279528 -4342.2795276 1072.8346457 -1475.8279528 -4077.1102362 1072.8346457 -1795.4822835 -4077.1102362 1072.8346457 -1795.4822835 -3845.6417323 1072.8346457 -2140.3228346 -3845.6417323 1072.8346457 -2140.3228346 -3650.2468504 1072.8346457 -2506.8118110 -3650.2468504 1072.8346457 -2506.8118110 -3492.9311024 1072.8346457 -2891.1881890 -3492.9311024 1072.8346457 -2891.1881890 - - - - - - - - - - 0.3590780 -0.6958825 0.6219409 0.2943156 0.6958827 0.6550768 0.2943156 -0.6958827 0.6550768 0.3590780 0.6958825 0.6219409 -0.3590780 -0.6958825 -0.6219409 -0.3590780 0.6958825 -0.6219409 -0.2943156 -0.6958827 -0.6550768 -0.2943156 0.6958827 -0.6550768 -0.0847110 0.6958810 -0.7131435 0.0605741 0.6958817 -0.7155973 -0.0121296 0.6958842 -0.7180516 0.1326648 0.6958816 -0.7057966 -0.1564267 0.6958830 -0.7009119 0.2033885 0.6958833 -0.6887522 -0.2265298 0.6958834 -0.6814915 0.2720221 0.6958827 -0.6646437 -0.2943129 0.6958818 -0.6550789 0.3378655 0.6958829 -0.6337144 -0.3590790 0.6958821 -0.6219408 0.4002447 0.6958820 -0.5962822 -0.4201571 0.6958829 -0.5824217 0.4585163 0.6958827 -0.5527296 -0.4769208 0.6958833 -0.5369292 0.5120845 0.6958818 -0.5035058 -0.5287973 0.6958810 -0.4859250 0.5603948 0.6958833 -0.4491149 -0.5752434 0.6958835 -0.4299316 0.6029559 0.6958822 -0.3901182 -0.6157881 0.6958819 -0.3695313 0.6393293 0.6958829 -0.3271163 -0.6500140 0.6958824 -0.3053349 0.6691431 0.6958824 -0.2607590 -0.6775683 0.6958829 -0.2380086 0.6920910 0.6958822 -0.1917238 -0.6981712 0.6958824 -0.1682401 0.7079358 0.6958829 -0.1207226 -0.7116088 0.6958831 -0.0967455 0.7165175 0.6958822 -0.0484828 -0.7177468 0.6958816 -0.0242560 0.7177457 0.6958827 0.0242551 -0.7165165 0.6958833 0.0484819 0.7116097 0.6958823 0.0967437 -0.7079370 0.6958816 0.1207225 0.6981710 0.6958825 0.1682402 -0.6920899 0.6958828 0.1917255 0.6775683 0.6958826 0.2380097 -0.6691431 0.6958825 0.2607586 0.6500131 0.6958826 0.3053364 -0.6393295 0.6958826 0.3271164 0.6157882 0.6958827 0.3695298 -0.6029559 0.6958825 0.3901175 0.5752442 0.6958823 0.4299325 -0.5603944 0.6958822 0.4491170 0.5287959 0.6958820 0.4859250 -0.5120830 0.6958832 0.5035053 0.4769220 0.6958829 0.5369286 -0.4585174 0.6958816 0.5527301 0.4201563 0.6958825 0.5824227 -0.4002453 0.6958834 0.5962801 -0.3378686 0.6958818 0.6337139 -0.2720215 0.6958827 0.6646439 0.2265320 0.6958821 0.6814920 -0.2033854 0.6958824 0.6887540 0.1564234 0.6958826 0.7009131 -0.1326619 0.6958826 0.7057961 0.0847112 0.6958826 0.7131420 -0.0605773 0.6958824 0.7155963 0.0121295 0.6958825 0.7180532 -0.0121295 -0.6958825 -0.7180532 0.0605773 -0.6958824 -0.7155963 -0.0847112 -0.6958826 -0.7131420 0.1326619 -0.6958826 -0.7057961 -0.1564234 -0.6958826 -0.7009131 0.2033854 -0.6958824 -0.6887540 -0.2265320 -0.6958821 -0.6814920 0.2720215 -0.6958827 -0.6646439 0.3378686 -0.6958818 -0.6337139 0.4002453 -0.6958834 -0.5962801 -0.4201563 -0.6958825 -0.5824227 0.4585174 -0.6958816 -0.5527301 -0.4769220 -0.6958829 -0.5369286 0.5120830 -0.6958832 -0.5035053 -0.5287959 -0.6958820 -0.4859250 0.5603944 -0.6958822 -0.4491170 -0.5752442 -0.6958823 -0.4299325 0.6029559 -0.6958825 -0.3901175 -0.6157882 -0.6958827 -0.3695298 0.6393295 -0.6958826 -0.3271164 -0.6500131 -0.6958826 -0.3053364 0.6691431 -0.6958825 -0.2607586 -0.6775683 -0.6958826 -0.2380097 0.6920899 -0.6958828 -0.1917255 -0.6981710 -0.6958825 -0.1682402 0.7079370 -0.6958816 -0.1207225 -0.7116097 -0.6958823 -0.0967437 0.7165165 -0.6958833 -0.0484819 -0.7177457 -0.6958827 -0.0242551 0.7177468 -0.6958816 0.0242560 -0.7165175 -0.6958822 0.0484828 0.7116088 -0.6958831 0.0967455 -0.7079358 -0.6958829 0.1207226 0.6981712 -0.6958824 0.1682401 -0.6920910 -0.6958822 0.1917238 0.6775683 -0.6958829 0.2380086 -0.6691431 -0.6958824 0.2607590 0.6500140 -0.6958824 0.3053349 -0.6393293 -0.6958829 0.3271163 0.6157881 -0.6958819 0.3695313 -0.6029559 -0.6958822 0.3901182 0.5752434 -0.6958835 0.4299316 -0.5603948 -0.6958833 0.4491149 0.5287973 -0.6958810 0.4859250 -0.5120845 -0.6958818 0.5035058 0.4769208 -0.6958833 0.5369292 -0.4585163 -0.6958827 0.5527296 0.4201571 -0.6958829 0.5824217 -0.4002447 -0.6958820 0.5962822 0.3590790 -0.6958821 0.6219408 -0.3378655 -0.6958829 0.6337144 0.2943129 -0.6958818 0.6550789 -0.2720221 -0.6958827 0.6646437 0.2265298 -0.6958834 0.6814915 -0.2033885 -0.6958833 0.6887522 0.1564267 -0.6958830 0.7009119 -0.1326648 -0.6958816 0.7057966 0.0847110 -0.6958810 0.7131435 -0.0605741 -0.6958817 0.7155973 0.0121296 -0.6958842 0.7180516 0.2265320 -0.6958821 0.6814920 -0.2265320 0.6958821 -0.6814920 0.4201563 -0.6958825 0.5824227 -0.4201563 0.6958825 -0.5824227 0.6981710 -0.6958825 0.1682402 0.7116097 -0.6958823 0.0967437 -0.6981710 0.6958825 -0.1682402 -0.7116097 0.6958823 -0.0967437 0.7177457 -0.6958827 0.0242551 -0.7177457 0.6958827 -0.0242551 0.7165175 -0.6958822 -0.0484828 -0.7165175 0.6958822 0.0484828 0.7079358 -0.6958829 -0.1207226 -0.7079358 0.6958829 0.1207226 0.6920910 -0.6958822 -0.1917238 -0.6920910 0.6958822 0.1917238 0.6691431 -0.6958824 -0.2607590 -0.6691431 0.6958824 0.2607590 0.6393293 -0.6958829 -0.3271163 -0.6393293 0.6958829 0.3271163 0.6029559 -0.6958822 -0.3901182 -0.6029559 0.6958822 0.3901182 0.5603948 -0.6958833 -0.4491149 -0.5603948 0.6958833 0.4491149 0.5120845 -0.6958818 -0.5035058 -0.5120845 0.6958818 0.5035058 0.4585163 -0.6958827 -0.5527296 -0.4585163 0.6958827 0.5527296 0.4002447 -0.6958820 -0.5962822 -0.4002447 0.6958820 0.5962822 0.3378655 -0.6958829 -0.6337144 -0.3378655 0.6958829 0.6337144 0.2720221 -0.6958827 -0.6646437 -0.2720221 0.6958827 0.6646437 0.2033885 -0.6958833 -0.6887522 -0.2033885 0.6958833 0.6887522 0.1326648 -0.6958816 -0.7057966 -0.1326648 0.6958816 0.7057966 0.0605741 -0.6958817 -0.7155973 -0.0605741 0.6958817 0.7155973 -0.0121296 -0.6958842 -0.7180516 0.0121296 0.6958842 0.7180516 -0.0847110 -0.6958810 -0.7131435 0.0847110 0.6958810 0.7131435 -0.1564267 -0.6958830 -0.7009119 0.1564267 0.6958830 0.7009119 -0.2265298 -0.6958834 -0.6814915 0.2265298 0.6958834 0.6814915 -0.2943129 -0.6958818 -0.6550789 0.2943129 0.6958818 0.6550789 -0.3590790 -0.6958821 -0.6219408 0.3590790 0.6958821 0.6219408 -0.4201571 -0.6958829 -0.5824217 0.4201571 0.6958829 0.5824217 -0.4769208 -0.6958833 -0.5369292 0.4769208 0.6958833 0.5369292 -0.5287973 -0.6958810 -0.4859250 0.5287973 0.6958810 0.4859250 -0.5752434 -0.6958835 -0.4299316 0.5752434 0.6958835 0.4299316 -0.6157881 -0.6958819 -0.3695313 0.6157881 0.6958819 0.3695313 -0.6500140 -0.6958824 -0.3053349 0.6500140 0.6958824 0.3053349 -0.6775683 -0.6958829 -0.2380086 0.6775683 0.6958829 0.2380086 -0.6981712 -0.6958824 -0.1682401 0.6981712 0.6958824 0.1682401 -0.7116088 -0.6958831 -0.0967455 0.7116088 0.6958831 0.0967455 -0.7177468 -0.6958816 -0.0242560 0.7177468 0.6958816 0.0242560 -0.7165165 -0.6958833 0.0484819 0.7165165 0.6958833 -0.0484819 -0.7079370 -0.6958816 0.1207225 0.7079370 0.6958816 -0.1207225 -0.6920899 -0.6958828 0.1917255 0.6920899 0.6958828 -0.1917255 -0.6691431 -0.6958825 0.2607586 0.6691431 0.6958825 -0.2607586 -0.6393295 -0.6958826 0.3271164 0.6393295 0.6958826 -0.3271164 -0.6029559 -0.6958825 0.3901175 0.6029559 0.6958825 -0.3901175 -0.5603944 -0.6958822 0.4491170 0.5603944 0.6958822 -0.4491170 -0.5120830 -0.6958832 0.5035053 0.5120830 0.6958832 -0.5035053 -0.4585174 -0.6958816 0.5527301 0.4585174 0.6958816 -0.5527301 -0.4002453 -0.6958834 0.5962801 0.4002453 0.6958834 -0.5962801 -0.3378686 -0.6958818 0.6337139 0.3378686 0.6958818 -0.6337139 -0.2720215 -0.6958827 0.6646439 0.2720215 0.6958827 -0.6646439 -0.2033854 -0.6958824 0.6887540 0.2033854 0.6958824 -0.6887540 -0.1326619 -0.6958826 0.7057961 0.1326619 0.6958826 -0.7057961 -0.0605773 -0.6958824 0.7155963 0.0605773 0.6958824 -0.7155963 0.0121295 -0.6958825 0.7180532 -0.0121295 0.6958825 -0.7180532 0.0847112 -0.6958826 0.7131420 -0.0847112 0.6958826 -0.7131420 0.1564234 -0.6958826 0.7009131 -0.1564234 0.6958826 -0.7009131 0.4769220 -0.6958829 0.5369286 -0.4769220 0.6958829 -0.5369286 0.5287959 -0.6958820 0.4859250 -0.5287959 0.6958820 -0.4859250 0.5752442 -0.6958823 0.4299325 -0.5752442 0.6958823 -0.4299325 0.6157882 -0.6958827 0.3695298 -0.6157882 0.6958827 -0.3695298 0.6500131 -0.6958826 0.3053364 -0.6500131 0.6958826 -0.3053364 0.6775683 -0.6958826 0.2380097 -0.6775683 0.6958826 -0.2380097 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 3 3 58 59 3 59 1 1 59 60 1 60 61 61 60 62 61 62 63 63 62 64 63 64 65 65 64 66 65 66 67 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 6 75 76 6 6 76 4 76 77 4 4 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 99 98 98 99 100 99 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 121 123 122 122 123 124 123 125 124 124 125 126 127 126 125 2 61 128 61 2 1 6 7 74 129 74 7 130 3 0 3 130 57 78 131 4 5 4 131 41 132 133 132 41 43 92 94 134 135 134 94 39 133 136 133 39 41 94 96 135 137 135 96 37 136 138 136 37 39 96 98 137 139 137 98 35 138 140 138 35 37 98 100 139 141 139 100 33 140 142 140 33 35 100 102 141 143 141 102 31 142 144 142 31 33 102 104 143 145 143 104 29 144 146 144 29 31 104 106 145 147 145 106 27 146 148 146 27 29 106 108 147 149 147 108 25 148 150 148 25 27 108 110 149 151 149 110 23 150 152 150 23 25 110 112 151 153 151 112 23 154 21 154 23 152 153 112 155 114 155 112 21 156 19 156 21 154 155 114 157 116 157 114 19 158 17 158 19 156 157 116 159 118 159 116 17 160 15 160 17 158 159 118 161 120 161 118 15 162 13 162 15 160 161 120 163 122 163 120 13 164 11 164 13 162 163 122 165 124 165 122 11 166 9 166 11 164 165 124 167 126 167 124 9 168 10 168 9 166 167 126 169 127 169 126 10 170 8 170 10 168 169 127 171 125 171 127 8 172 12 172 8 170 171 125 173 123 173 125 12 174 14 174 12 172 173 123 175 121 175 123 14 176 16 176 14 174 175 121 177 119 177 121 16 178 18 178 16 176 177 119 179 117 179 119 18 180 20 180 18 178 179 117 181 115 181 117 20 182 22 182 20 180 181 115 183 113 183 115 22 184 24 184 22 182 183 113 185 111 185 113 186 24 184 24 186 26 109 187 111 185 111 187 28 186 188 186 28 26 109 107 187 189 187 107 30 188 190 188 30 28 107 105 189 191 189 105 32 190 192 190 32 30 105 103 191 193 191 103 34 192 194 192 34 32 103 101 193 195 193 101 36 194 196 194 36 34 101 99 195 197 195 99 198 36 196 36 198 38 97 199 99 197 99 199 40 198 200 198 40 38 97 95 199 201 199 95 42 200 202 200 42 40 95 93 201 203 201 93 44 202 204 202 44 42 93 91 203 205 203 91 46 204 206 204 46 44 91 89 205 207 205 89 48 206 208 206 48 46 89 87 207 209 207 87 50 208 210 208 50 48 87 85 209 211 209 85 52 210 212 210 52 50 85 83 211 213 211 83 54 212 214 212 54 52 83 81 213 215 213 81 216 54 214 54 216 56 79 217 81 215 81 217 218 56 216 56 218 58 77 219 79 217 79 219 220 58 218 58 220 59 76 221 77 219 77 221 222 59 220 59 222 60 75 223 76 221 76 223 224 60 222 60 224 62 73 225 75 223 75 225 226 62 224 62 226 64 71 227 73 225 73 227 228 64 226 64 228 66 69 229 71 227 71 229 230 66 228 66 230 67 68 231 69 229 69 231 232 67 230 67 232 65 70 233 68 231 68 233 234 65 232 65 234 63 72 235 70 233 70 235 128 63 234 63 128 61 74 129 72 235 72 129 236 57 130 57 236 55 80 237 78 131 78 237 238 55 236 55 238 53 82 239 80 237 80 239 240 53 238 53 240 51 84 241 82 239 82 241 49 240 242 240 49 51 84 86 241 243 241 86 47 242 244 242 47 49 86 88 243 245 243 88 246 47 244 47 246 45 90 247 88 245 88 247 43 246 132 246 43 45 90 92 247 134 247 92

-
-
-
- - - - -7015.3779528 1072.8346457 -8335.3897638 -7844.8385827 1072.8346457 -8321.3779528 -7430.4606299 1072.8346457 -8349.4133858 -6603.8385827 1072.8346457 -8279.4409449 -8254.2519685 1072.8346457 -8251.5590551 -6200.0748031 1072.8346457 -8182.1417323 -8654.5000000 1072.8346457 -8140.6811024 -5808.2244094 1072.8346457 -8044.4960630 -9041.4803150 1072.8346457 -7989.8818898 -5432.3070866 1072.8346457 -7867.9133858 -9411.2165354 1072.8346457 -7800.7047244 -5076.1850394 1072.8346457 -7654.2086614 -9759.9173228 1072.8346457 -7575.0905512 -4743.5118110 1072.8346457 -7405.5708661 -10084.0039370 1072.8346457 -7315.3582677 -4437.6968504 1072.8346457 -7124.5511811 -10380.1535433 1072.8346457 -7024.1732283 -4161.8858268 1072.8346457 -6814.0354331 -10645.3188976 1072.8346457 -6704.5196850 -3918.9000000 1072.8346457 -6477.2086614 -10876.7913386 1072.8346457 -6359.6771654 -3711.2385827 1072.8346457 -6117.5275591 -11072.1850394 1072.8346457 -5993.1889764 -3541.0303150 1072.8346457 -5738.6850394 -11229.5000000 1072.8346457 -5608.8110236 -3410.0228346 1072.8346457 -5344.5669291 -11347.1220472 1072.8346457 -5210.4921260 -3319.5598425 1072.8346457 -4939.2125984 -11423.8425197 1072.8346457 -4802.3188976 -3270.5692913 1072.8346457 -4526.7913386 -11458.8779528 1072.8346457 -4388.4724409 -3263.5551181 1072.8346457 -4111.5275591 -11451.8622047 1072.8346457 -3973.2086614 -3298.5877953 1072.8346457 -3697.6830709 -11402.8740157 1072.8346457 -3560.7862205 -3375.3090551 1072.8346457 -3289.5074803 -11312.4094488 1072.8346457 -3155.4350394 -3492.9311024 1072.8346457 -2891.1881890 -11181.4015748 1072.8346457 -2761.3157480 -3650.2468504 1072.8346457 -2506.8118110 -11011.1929134 1072.8346457 -2382.4712598 -3845.6417323 1072.8346457 -2140.3228346 -10803.5314961 1072.8346457 -2022.7909449 -4077.1102362 1072.8346457 -1795.4822835 -10560.5472441 1072.8346457 -1685.9645669 -4342.2795276 1072.8346457 -1475.8279528 -10284.7322835 1072.8346457 -1375.4492126 -4638.4291339 1072.8346457 -1184.6409449 -9978.9212598 1072.8346457 -1094.4299213 -4962.5157480 1072.8346457 -924.9086614 -9646.2440945 1072.8346457 -845.7913386 -5311.2165354 1072.8346457 -699.2960630 -9290.1259843 1072.8346457 -632.0846457 -5680.9527559 1072.8346457 -510.1185039 -8914.2086614 1072.8346457 -455.5023622 -6067.9291339 1072.8346457 -359.3170866 -8522.3582677 1072.8346457 -317.8571260 -6468.1811024 1072.8346457 -248.4393307 -8118.5905512 1072.8346457 -220.5607087 -6877.5944882 1072.8346457 -178.6232677 -7707.0551181 1072.8346457 -164.6119685 -7291.9685039 1072.8346457 -150.5849213 -7291.9685039 1072.8346457 -150.5849213 -6877.5944882 1072.8346457 -178.6232677 -7707.0551181 1072.8346457 -164.6119685 -8118.5905512 1072.8346457 -220.5607087 -6468.1811024 1072.8346457 -248.4393307 -8522.3582677 1072.8346457 -317.8571260 -6067.9291339 1072.8346457 -359.3170866 -8914.2086614 1072.8346457 -455.5023622 -5680.9527559 1072.8346457 -510.1185039 -9290.1259843 1072.8346457 -632.0846457 -5311.2165354 1072.8346457 -699.2960630 -9646.2440945 1072.8346457 -845.7913386 -4962.5157480 1072.8346457 -924.9086614 -9978.9212598 1072.8346457 -1094.4299213 -4638.4291339 1072.8346457 -1184.6409449 -10284.7322835 1072.8346457 -1375.4492126 -4342.2795276 1072.8346457 -1475.8279528 -10560.5472441 1072.8346457 -1685.9645669 -4077.1102362 1072.8346457 -1795.4822835 -10803.5314961 1072.8346457 -2022.7909449 -3845.6417323 1072.8346457 -2140.3228346 -11011.1929134 1072.8346457 -2382.4712598 -3650.2468504 1072.8346457 -2506.8118110 -11181.4015748 1072.8346457 -2761.3157480 -3492.9311024 1072.8346457 -2891.1881890 -11312.4094488 1072.8346457 -3155.4350394 -3375.3090551 1072.8346457 -3289.5074803 -11402.8740157 1072.8346457 -3560.7862205 -3298.5877953 1072.8346457 -3697.6830709 -11451.8622047 1072.8346457 -3973.2086614 -3263.5551181 1072.8346457 -4111.5275591 -11458.8779528 1072.8346457 -4388.4724409 -3270.5692913 1072.8346457 -4526.7913386 -11423.8425197 1072.8346457 -4802.3188976 -3319.5598425 1072.8346457 -4939.2125984 -11347.1220472 1072.8346457 -5210.4921260 -3410.0228346 1072.8346457 -5344.5669291 -11229.5000000 1072.8346457 -5608.8110236 -3541.0303150 1072.8346457 -5738.6850394 -11072.1850394 1072.8346457 -5993.1889764 -3711.2385827 1072.8346457 -6117.5275591 -10876.7913386 1072.8346457 -6359.6771654 -3918.9000000 1072.8346457 -6477.2086614 -10645.3188976 1072.8346457 -6704.5196850 -4161.8858268 1072.8346457 -6814.0354331 -10380.1535433 1072.8346457 -7024.1732283 -4437.6968504 1072.8346457 -7124.5511811 -10084.0039370 1072.8346457 -7315.3582677 -4743.5118110 1072.8346457 -7405.5708661 -9759.9173228 1072.8346457 -7575.0905512 -5076.1850394 1072.8346457 -7654.2086614 -9411.2165354 1072.8346457 -7800.7047244 -5432.3070866 1072.8346457 -7867.9133858 -9041.4803150 1072.8346457 -7989.8818898 -5808.2244094 1072.8346457 -8044.4960630 -8654.5000000 1072.8346457 -8140.6811024 -6200.0748031 1072.8346457 -8182.1417323 -8254.2519685 1072.8346457 -8251.5590551 -6603.8385827 1072.8346457 -8279.4409449 -7844.8385827 1072.8346457 -8321.3779528 -7015.3779528 1072.8346457 -8335.3897638 -7430.4606299 1072.8346457 -8349.4133858 - - - - - - - - - - 0.0605741 -0.6958817 -0.7155973 -0.0847110 -0.6958810 -0.7131435 -0.0121296 -0.6958842 -0.7180516 0.1326648 -0.6958816 -0.7057966 -0.1564267 -0.6958830 -0.7009119 0.2033885 -0.6958833 -0.6887522 -0.2265298 -0.6958834 -0.6814915 0.2720221 -0.6958827 -0.6646437 -0.2943129 -0.6958818 -0.6550789 0.3378655 -0.6958829 -0.6337144 -0.3590790 -0.6958821 -0.6219408 0.4002447 -0.6958820 -0.5962822 -0.4201571 -0.6958829 -0.5824217 0.4585163 -0.6958827 -0.5527296 -0.4769208 -0.6958833 -0.5369292 0.5120845 -0.6958818 -0.5035058 -0.5287973 -0.6958810 -0.4859250 0.5603948 -0.6958833 -0.4491149 -0.5752434 -0.6958835 -0.4299316 0.6029559 -0.6958822 -0.3901182 -0.6157881 -0.6958819 -0.3695313 0.6393293 -0.6958829 -0.3271163 -0.6500140 -0.6958824 -0.3053349 0.6691431 -0.6958824 -0.2607590 -0.6775683 -0.6958829 -0.2380086 0.6920910 -0.6958822 -0.1917238 -0.6981712 -0.6958824 -0.1682401 0.7079358 -0.6958829 -0.1207226 -0.7116088 -0.6958831 -0.0967455 0.7165175 -0.6958822 -0.0484828 -0.7177468 -0.6958816 -0.0242560 0.7177457 -0.6958827 0.0242551 -0.7165165 -0.6958833 0.0484819 0.7116097 -0.6958823 0.0967437 -0.7079370 -0.6958816 0.1207225 0.6981710 -0.6958825 0.1682402 -0.6920899 -0.6958828 0.1917255 0.6775683 -0.6958826 0.2380097 -0.6691431 -0.6958825 0.2607586 0.6500131 -0.6958826 0.3053364 -0.6393295 -0.6958826 0.3271164 0.6157882 -0.6958827 0.3695298 -0.6029559 -0.6958825 0.3901175 0.5752442 -0.6958823 0.4299325 -0.5603944 -0.6958822 0.4491170 0.5287959 -0.6958820 0.4859250 -0.5120830 -0.6958832 0.5035053 0.4769220 -0.6958829 0.5369286 -0.4585174 -0.6958816 0.5527301 0.4201563 -0.6958825 0.5824227 -0.4002453 -0.6958834 0.5962801 0.3590780 -0.6958825 0.6219409 -0.3378686 -0.6958818 0.6337139 0.2943156 -0.6958827 0.6550768 -0.2720215 -0.6958827 0.6646439 0.2265320 -0.6958821 0.6814920 -0.2033854 -0.6958824 0.6887540 0.1564234 -0.6958826 0.7009131 -0.1326619 -0.6958826 0.7057961 0.0847112 -0.6958826 0.7131420 -0.0605773 -0.6958824 0.7155963 0.0121295 -0.6958825 0.7180532 -0.0121295 0.6958825 -0.7180532 -0.0847112 0.6958826 -0.7131420 0.0605773 0.6958824 -0.7155963 0.1326619 0.6958826 -0.7057961 -0.1564234 0.6958826 -0.7009131 0.2033854 0.6958824 -0.6887540 -0.2265320 0.6958821 -0.6814920 0.2720215 0.6958827 -0.6646439 -0.2943156 0.6958827 -0.6550768 0.3378686 0.6958818 -0.6337139 -0.3590780 0.6958825 -0.6219409 0.4002453 0.6958834 -0.5962801 -0.4201563 0.6958825 -0.5824227 0.4585174 0.6958816 -0.5527301 -0.4769220 0.6958829 -0.5369286 0.5120830 0.6958832 -0.5035053 -0.5287959 0.6958820 -0.4859250 0.5603944 0.6958822 -0.4491170 -0.5752442 0.6958823 -0.4299325 0.6029559 0.6958825 -0.3901175 -0.6157882 0.6958827 -0.3695298 0.6393295 0.6958826 -0.3271164 -0.6500131 0.6958826 -0.3053364 0.6691431 0.6958825 -0.2607586 -0.6775683 0.6958826 -0.2380097 0.6920899 0.6958828 -0.1917255 -0.6981710 0.6958825 -0.1682402 0.7079370 0.6958816 -0.1207225 -0.7116097 0.6958823 -0.0967437 0.7165165 0.6958833 -0.0484819 -0.7177457 0.6958827 -0.0242551 0.7177468 0.6958816 0.0242560 -0.7165175 0.6958822 0.0484828 0.7116088 0.6958831 0.0967455 -0.7079358 0.6958829 0.1207226 0.6981712 0.6958824 0.1682401 -0.6920910 0.6958822 0.1917238 0.6775683 0.6958829 0.2380086 -0.6691431 0.6958824 0.2607590 0.6500140 0.6958824 0.3053349 -0.6393293 0.6958829 0.3271163 0.6157881 0.6958819 0.3695313 -0.6029559 0.6958822 0.3901182 0.5752434 0.6958835 0.4299316 -0.5603948 0.6958833 0.4491149 0.5287973 0.6958810 0.4859250 -0.5120845 0.6958818 0.5035058 0.4769208 0.6958833 0.5369292 -0.4585163 0.6958827 0.5527296 0.4201571 0.6958829 0.5824217 -0.4002447 0.6958820 0.5962822 0.3590790 0.6958821 0.6219408 -0.3378655 0.6958829 0.6337144 0.2943129 0.6958818 0.6550789 -0.2720221 0.6958827 0.6646437 0.2265298 0.6958834 0.6814915 -0.2033885 0.6958833 0.6887522 0.1564267 0.6958830 0.7009119 -0.1326648 0.6958816 0.7057966 0.0847110 0.6958810 0.7131435 -0.0605741 0.6958817 0.7155973 0.0121296 0.6958842 0.7180516 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 24 25 26 26 25 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 36 35 37 36 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 47 46 47 48 48 47 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 54 54 53 55 54 55 56 56 55 57 56 57 58 58 57 59 58 59 60 60 59 61 62 63 64 64 63 65 63 66 65 65 66 67 66 68 67 67 68 69 68 70 69 69 70 71 70 72 71 71 72 73 72 74 73 73 74 75 74 76 75 75 76 77 76 78 77 77 78 79 78 80 79 79 80 81 80 82 81 81 82 83 82 84 83 83 84 85 84 86 85 85 86 87 86 88 87 87 88 89 88 90 89 89 90 91 90 92 91 91 92 93 92 94 93 93 94 95 94 96 95 95 96 97 96 98 97 97 98 99 98 100 99 99 100 101 100 102 101 101 102 103 102 104 103 103 104 105 104 106 105 105 106 107 106 108 107 107 108 109 108 110 109 109 110 111 110 112 111 111 112 113 112 114 113 113 114 115 114 116 115 115 116 117 116 118 117 117 118 119 118 120 119 119 120 121 120 122 121 123 121 122

-
-
-
- - - - -3261.2157480 1190.9448819 4250.0000000 -3282.2515748 1072.8346457 4664.7913386 -3261.2157480 1072.8346457 4250.0000000 -3282.2515748 1190.9448819 4664.7913386 -3282.2515748 1190.9448819 4664.7913386 -3261.2157480 1190.9448819 4250.0000000 -3282.2515748 1072.8346457 4664.7913386 -3261.2157480 1072.8346457 4250.0000000 -7982.0708661 1190.9448819 197.2798819 -7153.5551181 1190.9448819 155.2624016 -7568.8779528 1190.9448819 155.2624016 -6740.3622047 1190.9448819 197.2798819 -8388.8897638 1190.9448819 280.8838583 -6333.5393701 1190.9448819 280.8838583 -8785.1653543 1190.9448819 405.2161417 -5937.2637795 1190.9448819 405.2161417 -9166.8307087 1190.9448819 569.0011811 -5555.5984252 1190.9448819 569.0011811 -9529.9685039 1190.9448819 770.5586614 -5192.4645669 1190.9448819 770.5586614 -9870.8503937 1190.9448819 1007.8192913 -4851.5826772 1190.9448819 1007.8192913 -10185.9803150 1190.9448819 1278.3496063 -4536.4527559 1190.9448819 1278.3496063 -10472.1220472 1190.9448819 1579.3728346 -4250.3070866 1190.9448819 1579.3728346 -10726.3464567 1190.9448819 1907.8003937 -3996.0866142 1190.9448819 1907.8003937 -10946.0354331 1190.9448819 2260.2622047 -3776.3952756 1190.9448819 2260.2622047 -11128.9409449 1190.9448819 2633.1413386 -3593.4889764 1190.9448819 2633.1413386 -11273.1889764 1190.9448819 3022.6114173 -3449.2448819 1190.9448819 3022.6114173 -11377.2874016 1190.9448819 3424.6759843 -3345.1433071 1190.9448819 3424.6759843 -11440.1811024 1190.9448819 3835.2098425 -3282.2515748 1190.9448819 3835.2098425 -11461.2165354 1190.9448819 4250.0000000 -11440.1811024 1190.9448819 4664.7913386 -11377.2874016 1190.9448819 5075.3228346 -3345.1433071 1190.9448819 5075.3228346 -11273.1889764 1190.9448819 5477.3897638 -3449.2448819 1190.9448819 5477.3897638 -11128.9409449 1190.9448819 5866.8582677 -3593.4889764 1190.9448819 5866.8582677 -10946.0354331 1190.9448819 6239.7362205 -3776.3952756 1190.9448819 6239.7362205 -10726.3464567 1190.9448819 6592.2007874 -3996.0866142 1190.9448819 6592.2007874 -10472.1220472 1190.9448819 6920.6259843 -4250.3070866 1190.9448819 6920.6259843 -10185.9803150 1190.9448819 7221.6496063 -4536.4527559 1190.9448819 7221.6496063 -9870.8503937 1190.9448819 7492.1811024 -4851.5826772 1190.9448819 7492.1811024 -9529.9685039 1190.9448819 7729.4409449 -5192.4645669 1190.9448819 7729.4409449 -9166.8307087 1190.9448819 7931.0000000 -5555.5984252 1190.9448819 7931.0000000 -8785.1653543 1190.9448819 8094.7834646 -5937.2637795 1190.9448819 8094.7834646 -8388.8897638 1190.9448819 8219.1141732 -6333.5393701 1190.9448819 8219.1141732 -7982.0708661 1190.9448819 8302.7204724 -6740.3622047 1190.9448819 8302.7204724 -7568.8779528 1190.9448819 8344.7362205 -7153.5551181 1190.9448819 8344.7362205 -7153.5551181 1190.9448819 8344.7362205 -7568.8779528 1190.9448819 8344.7362205 -6740.3622047 1190.9448819 8302.7204724 -7982.0708661 1190.9448819 8302.7204724 -6333.5393701 1190.9448819 8219.1141732 -8388.8897638 1190.9448819 8219.1141732 -5937.2637795 1190.9448819 8094.7834646 -8785.1653543 1190.9448819 8094.7834646 -5555.5984252 1190.9448819 7931.0000000 -9166.8307087 1190.9448819 7931.0000000 -5192.4645669 1190.9448819 7729.4409449 -9529.9685039 1190.9448819 7729.4409449 -4851.5826772 1190.9448819 7492.1811024 -9870.8503937 1190.9448819 7492.1811024 -4536.4527559 1190.9448819 7221.6496063 -10185.9803150 1190.9448819 7221.6496063 -4250.3070866 1190.9448819 6920.6259843 -10472.1220472 1190.9448819 6920.6259843 -3996.0866142 1190.9448819 6592.2007874 -10726.3464567 1190.9448819 6592.2007874 -3776.3952756 1190.9448819 6239.7362205 -10946.0354331 1190.9448819 6239.7362205 -3593.4889764 1190.9448819 5866.8582677 -11128.9409449 1190.9448819 5866.8582677 -3449.2448819 1190.9448819 5477.3897638 -11273.1889764 1190.9448819 5477.3897638 -3345.1433071 1190.9448819 5075.3228346 -11377.2874016 1190.9448819 5075.3228346 -11440.1811024 1190.9448819 4664.7913386 -11461.2165354 1190.9448819 4250.0000000 -3282.2515748 1190.9448819 3835.2098425 -11440.1811024 1190.9448819 3835.2098425 -3345.1433071 1190.9448819 3424.6759843 -11377.2874016 1190.9448819 3424.6759843 -3449.2448819 1190.9448819 3022.6114173 -11273.1889764 1190.9448819 3022.6114173 -3593.4889764 1190.9448819 2633.1413386 -11128.9409449 1190.9448819 2633.1413386 -3776.3952756 1190.9448819 2260.2622047 -10946.0354331 1190.9448819 2260.2622047 -3996.0866142 1190.9448819 1907.8003937 -10726.3464567 1190.9448819 1907.8003937 -4250.3070866 1190.9448819 1579.3728346 -10472.1220472 1190.9448819 1579.3728346 -4536.4527559 1190.9448819 1278.3496063 -10185.9803150 1190.9448819 1278.3496063 -4851.5826772 1190.9448819 1007.8192913 -9870.8503937 1190.9448819 1007.8192913 -5192.4645669 1190.9448819 770.5586614 -9529.9685039 1190.9448819 770.5586614 -5555.5984252 1190.9448819 569.0011811 -9166.8307087 1190.9448819 569.0011811 -5937.2637795 1190.9448819 405.2161417 -8785.1653543 1190.9448819 405.2161417 -6333.5393701 1190.9448819 280.8838583 -8388.8897638 1190.9448819 280.8838583 -6740.3622047 1190.9448819 197.2798819 -7982.0708661 1190.9448819 197.2798819 -7153.5551181 1190.9448819 155.2624016 -7568.8779528 1190.9448819 155.2624016 -3345.1433071 1072.8346457 5075.3228346 -3345.1433071 1072.8346457 5075.3228346 -3282.2515748 1072.8346457 3835.2098425 -3282.2515748 1072.8346457 3835.2098425 -4851.5826772 1072.8346457 1007.8192913 -4536.4527559 1072.8346457 1278.3496063 -4536.4527559 1072.8346457 1278.3496063 -4851.5826772 1072.8346457 1007.8192913 -5192.4645669 1072.8346457 770.5586614 -5192.4645669 1072.8346457 770.5586614 -5555.5984252 1072.8346457 569.0011811 -5555.5984252 1072.8346457 569.0011811 -5937.2637795 1072.8346457 405.2161417 -5937.2637795 1072.8346457 405.2161417 -6333.5393701 1072.8346457 280.8838583 -6333.5393701 1072.8346457 280.8838583 -6740.3622047 1072.8346457 197.2798819 -6740.3622047 1072.8346457 197.2798819 -7153.5551181 1072.8346457 155.2624016 -7153.5551181 1072.8346457 155.2624016 -7568.8779528 1072.8346457 155.2624016 -7568.8779528 1072.8346457 155.2624016 -7982.0708661 1072.8346457 197.2798819 -7982.0708661 1072.8346457 197.2798819 -8388.8897638 1072.8346457 280.8838583 -8388.8897638 1072.8346457 280.8838583 -8785.1653543 1072.8346457 405.2161417 -8785.1653543 1072.8346457 405.2161417 -9166.8307087 1072.8346457 569.0011811 -9166.8307087 1072.8346457 569.0011811 -9529.9685039 1072.8346457 770.5586614 -9529.9685039 1072.8346457 770.5586614 -9870.8503937 1072.8346457 1007.8192913 -9870.8503937 1072.8346457 1007.8192913 -10185.9803150 1072.8346457 1278.3496063 -10185.9803150 1072.8346457 1278.3496063 -10472.1220472 1072.8346457 1579.3728346 -10472.1220472 1072.8346457 1579.3728346 -10726.3464567 1072.8346457 1907.8003937 -10726.3464567 1072.8346457 1907.8003937 -10946.0354331 1072.8346457 2260.2622047 -10946.0354331 1072.8346457 2260.2622047 -11128.9409449 1072.8346457 2633.1413386 -11128.9409449 1072.8346457 2633.1413386 -11273.1889764 1072.8346457 3022.6114173 -11273.1889764 1072.8346457 3022.6114173 -11377.2874016 1072.8346457 3424.6759843 -11377.2874016 1072.8346457 3424.6759843 -11440.1811024 1072.8346457 3835.2098425 -11440.1811024 1072.8346457 3835.2098425 -11461.2165354 1072.8346457 4250.0000000 -11461.2165354 1072.8346457 4250.0000000 -11440.1811024 1072.8346457 4664.7913386 -11440.1811024 1072.8346457 4664.7913386 -11377.2874016 1072.8346457 5075.3228346 -11377.2874016 1072.8346457 5075.3228346 -11273.1889764 1072.8346457 5477.3897638 -11273.1889764 1072.8346457 5477.3897638 -11128.9409449 1072.8346457 5866.8582677 -11128.9409449 1072.8346457 5866.8582677 -10946.0354331 1072.8346457 6239.7362205 -10946.0354331 1072.8346457 6239.7362205 -10726.3464567 1072.8346457 6592.2007874 -10726.3464567 1072.8346457 6592.2007874 -10472.1220472 1072.8346457 6920.6259843 -10472.1220472 1072.8346457 6920.6259843 -10185.9803150 1072.8346457 7221.6496063 -10185.9803150 1072.8346457 7221.6496063 -9870.8503937 1072.8346457 7492.1811024 -9870.8503937 1072.8346457 7492.1811024 -9529.9685039 1072.8346457 7729.4409449 -9529.9685039 1072.8346457 7729.4409449 -9166.8307087 1072.8346457 7931.0000000 -9166.8307087 1072.8346457 7931.0000000 -8785.1653543 1072.8346457 8094.7834646 -8785.1653543 1072.8346457 8094.7834646 -8388.8897638 1072.8346457 8219.1141732 -8388.8897638 1072.8346457 8219.1141732 -7982.0708661 1072.8346457 8302.7204724 -7982.0708661 1072.8346457 8302.7204724 -7568.8779528 1072.8346457 8344.7362205 -7568.8779528 1072.8346457 8344.7362205 -7153.5551181 1072.8346457 8344.7362205 -7153.5551181 1072.8346457 8344.7362205 -6740.3622047 1072.8346457 8302.7204724 -6740.3622047 1072.8346457 8302.7204724 -6333.5393701 1072.8346457 8219.1141732 -6333.5393701 1072.8346457 8219.1141732 -5937.2637795 1072.8346457 8094.7834646 -5937.2637795 1072.8346457 8094.7834646 -5555.5984252 1072.8346457 7931.0000000 -5555.5984252 1072.8346457 7931.0000000 -5192.4645669 1072.8346457 7729.4409449 -5192.4645669 1072.8346457 7729.4409449 -4851.5826772 1072.8346457 7492.1811024 -4851.5826772 1072.8346457 7492.1811024 -4536.4527559 1072.8346457 7221.6496063 -4536.4527559 1072.8346457 7221.6496063 -4250.3070866 1072.8346457 6920.6259843 -4250.3070866 1072.8346457 6920.6259843 -3996.0866142 1072.8346457 6592.2007874 -3996.0866142 1072.8346457 6592.2007874 -3776.3952756 1072.8346457 6239.7362205 -3776.3952756 1072.8346457 6239.7362205 -3593.4889764 1072.8346457 5866.8582677 -3593.4889764 1072.8346457 5866.8582677 -3449.2448819 1072.8346457 5477.3897638 -3449.2448819 1072.8346457 5477.3897638 -3345.1433071 1072.8346457 3424.6759843 -3345.1433071 1072.8346457 3424.6759843 -3449.2448819 1072.8346457 3022.6114173 -3449.2448819 1072.8346457 3022.6114173 -3593.4889764 1072.8346457 2633.1413386 -3593.4889764 1072.8346457 2633.1413386 -3776.3952756 1072.8346457 2260.2622047 -3776.3952756 1072.8346457 2260.2622047 -3996.0866142 1072.8346457 1907.8003937 -3996.0866142 1072.8346457 1907.8003937 -4250.3070866 1072.8346457 1579.3728346 -4250.3070866 1072.8346457 1579.3728346 - - - - - - - - - - 0.7181557 0.6958825 -0.0000001 0.7144711 -0.6958823 0.0726551 0.7181557 -0.6958825 -0.0000001 0.7144711 0.6958823 0.0726551 -0.7144711 -0.6958823 -0.0726551 -0.7181557 -0.6958825 0.0000001 -0.7144711 0.6958823 -0.0726551 -0.7181557 0.6958825 0.0000001 -0.1087491 0.6958823 -0.7098742 0.0363739 0.6958825 -0.7172339 -0.0363739 0.6958825 -0.7172339 0.1087484 0.6958825 -0.7098741 -0.1800080 0.6958826 -0.6952298 0.1800074 0.6958824 -0.6952302 -0.2494189 0.6958826 -0.6734520 0.2494189 0.6958826 -0.6734520 -0.3162709 0.6958825 -0.6447637 0.3162726 0.6958820 -0.6447634 -0.3798781 0.6958824 -0.6094590 0.3798793 0.6958829 -0.6094577 -0.4395874 0.6958824 -0.5679001 0.4395874 0.6958824 -0.5679001 -0.4947868 0.6958821 -0.5205133 0.4947845 0.6958829 -0.5205145 -0.5449055 0.6958834 -0.4677865 0.5449068 0.6958819 -0.4677873 -0.5894366 0.6958815 -0.4102602 0.5894361 0.6958828 -0.4102587 -0.6279176 0.6958829 -0.3485205 0.6279167 0.6958825 -0.3485227 -0.6599526 0.6958836 -0.2832112 0.6599546 0.6958825 -0.2832093 -0.6852220 0.6958806 -0.2149904 0.6852206 0.6958824 -0.2149894 -0.7034538 0.6958839 -0.1445625 0.7034548 0.6958826 -0.1445637 -0.7144715 0.6958818 -0.0726563 0.7144711 0.6958824 -0.0726549 -0.7181555 0.6958827 -0.0000001 -0.7144716 0.6958817 0.0726565 -0.7034536 0.6958842 0.1445623 0.7034547 0.6958829 0.1445635 -0.6852223 0.6958803 0.2149905 0.6852209 0.6958821 0.2149894 -0.6599522 0.6958836 0.2832121 0.6599542 0.6958825 0.2832102 -0.6279175 0.6958834 0.3485195 0.6279167 0.6958831 0.3485218 -0.5894372 0.6958807 0.4102606 0.5894367 0.6958821 0.4102591 -0.5449045 0.6958839 0.4677870 0.5449058 0.6958823 0.4677878 -0.4947874 0.6958823 0.5205125 0.4947851 0.6958830 0.5205137 -0.4395878 0.6958820 0.5679003 0.4395878 0.6958820 0.5679003 -0.3798784 0.6958830 0.6094582 0.3798796 0.6958835 0.6094569 -0.3162712 0.6958818 0.6447644 0.3162729 0.6958812 0.6447641 -0.2494165 0.6958826 0.6734529 0.2494165 0.6958826 0.6734529 -0.1800084 0.6958836 0.6952287 0.1800078 0.6958834 0.6952291 -0.1087497 0.6958813 0.7098752 0.1087490 0.6958815 0.7098751 -0.0363724 0.6958830 0.7172335 0.0363724 0.6958830 0.7172335 -0.0363724 -0.6958830 -0.7172335 0.0363724 -0.6958830 -0.7172335 -0.1087490 -0.6958815 -0.7098751 0.1087497 -0.6958813 -0.7098752 -0.1800078 -0.6958834 -0.6952291 0.1800084 -0.6958836 -0.6952287 -0.2494165 -0.6958826 -0.6734529 0.2494165 -0.6958826 -0.6734529 -0.3162729 -0.6958812 -0.6447641 0.3162712 -0.6958818 -0.6447644 -0.3798796 -0.6958835 -0.6094569 0.3798784 -0.6958830 -0.6094582 -0.4395878 -0.6958820 -0.5679003 0.4395878 -0.6958820 -0.5679003 -0.4947851 -0.6958830 -0.5205137 0.4947874 -0.6958823 -0.5205125 -0.5449058 -0.6958823 -0.4677878 0.5449045 -0.6958839 -0.4677870 -0.5894367 -0.6958821 -0.4102591 0.5894372 -0.6958807 -0.4102606 -0.6279167 -0.6958831 -0.3485218 0.6279175 -0.6958834 -0.3485195 -0.6599542 -0.6958825 -0.2832102 0.6599522 -0.6958836 -0.2832121 -0.6852209 -0.6958821 -0.2149894 0.6852223 -0.6958803 -0.2149905 -0.7034547 -0.6958829 -0.1445635 0.7034536 -0.6958842 -0.1445623 0.7144716 -0.6958817 -0.0726565 0.7181555 -0.6958827 0.0000001 -0.7144711 -0.6958824 0.0726549 0.7144715 -0.6958818 0.0726563 -0.7034548 -0.6958826 0.1445637 0.7034538 -0.6958839 0.1445625 -0.6852206 -0.6958824 0.2149894 0.6852220 -0.6958806 0.2149904 -0.6599546 -0.6958825 0.2832093 0.6599526 -0.6958836 0.2832112 -0.6279167 -0.6958825 0.3485227 0.6279176 -0.6958829 0.3485205 -0.5894361 -0.6958828 0.4102587 0.5894366 -0.6958815 0.4102602 -0.5449068 -0.6958819 0.4677873 0.5449055 -0.6958834 0.4677865 -0.4947845 -0.6958829 0.5205145 0.4947868 -0.6958821 0.5205133 -0.4395874 -0.6958824 0.5679001 0.4395874 -0.6958824 0.5679001 -0.3798793 -0.6958829 0.6094577 0.3798781 -0.6958824 0.6094590 -0.3162726 -0.6958820 0.6447634 0.3162709 -0.6958825 0.6447637 -0.2494189 -0.6958826 0.6734520 0.2494189 -0.6958826 0.6734520 -0.1800074 -0.6958824 0.6952302 0.1800080 -0.6958826 0.6952298 -0.1087484 -0.6958825 0.7098741 0.1087491 -0.6958823 0.7098742 -0.0363739 -0.6958825 0.7172339 0.0363739 -0.6958825 0.7172339 0.7034547 -0.6958829 0.1445635 -0.7034547 0.6958829 -0.1445635 0.7144711 -0.6958824 -0.0726549 -0.7144711 0.6958824 0.0726549 0.4395874 -0.6958824 -0.5679001 0.4947845 -0.6958829 -0.5205145 -0.4947845 0.6958829 0.5205145 -0.4395874 0.6958824 0.5679001 0.3798793 -0.6958829 -0.6094577 -0.3798793 0.6958829 0.6094577 0.3162726 -0.6958820 -0.6447634 -0.3162726 0.6958820 0.6447634 0.2494189 -0.6958826 -0.6734520 -0.2494189 0.6958826 0.6734520 0.1800074 -0.6958824 -0.6952302 -0.1800074 0.6958824 0.6952302 0.1087484 -0.6958825 -0.7098741 -0.1087484 0.6958825 0.7098741 0.0363739 -0.6958825 -0.7172339 -0.0363739 0.6958825 0.7172339 -0.0363739 -0.6958825 -0.7172339 0.0363739 0.6958825 0.7172339 -0.1087491 -0.6958823 -0.7098742 0.1087491 0.6958823 0.7098742 -0.1800080 -0.6958826 -0.6952298 0.1800080 0.6958826 0.6952298 -0.2494189 -0.6958826 -0.6734520 0.2494189 0.6958826 0.6734520 -0.3162709 -0.6958825 -0.6447637 0.3162709 0.6958825 0.6447637 -0.3798781 -0.6958824 -0.6094590 0.3798781 0.6958824 0.6094590 -0.4395874 -0.6958824 -0.5679001 0.4395874 0.6958824 0.5679001 -0.4947868 -0.6958821 -0.5205133 0.4947868 0.6958821 0.5205133 -0.5449055 -0.6958834 -0.4677865 0.5449055 0.6958834 0.4677865 -0.5894366 -0.6958815 -0.4102602 0.5894366 0.6958815 0.4102602 -0.6279176 -0.6958829 -0.3485205 0.6279176 0.6958829 0.3485205 -0.6599526 -0.6958836 -0.2832112 0.6599526 0.6958836 0.2832112 -0.6852220 -0.6958806 -0.2149904 0.6852220 0.6958806 0.2149904 -0.7034538 -0.6958839 -0.1445625 0.7034538 0.6958839 0.1445625 -0.7144715 -0.6958818 -0.0726563 0.7144715 0.6958818 0.0726563 -0.7181555 -0.6958827 -0.0000001 0.7181555 0.6958827 0.0000001 -0.7144716 -0.6958817 0.0726565 0.7144716 0.6958817 -0.0726565 -0.7034536 -0.6958842 0.1445623 0.7034536 0.6958842 -0.1445623 -0.6852223 -0.6958803 0.2149905 0.6852223 0.6958803 -0.2149905 -0.6599522 -0.6958836 0.2832121 0.6599522 0.6958836 -0.2832121 -0.6279175 -0.6958834 0.3485195 0.6279175 0.6958834 -0.3485195 -0.5894372 -0.6958807 0.4102606 0.5894372 0.6958807 -0.4102606 -0.5449045 -0.6958839 0.4677870 0.5449045 0.6958839 -0.4677870 -0.4947874 -0.6958823 0.5205125 0.4947874 0.6958823 -0.5205125 -0.4395878 -0.6958820 0.5679003 0.4395878 0.6958820 -0.5679003 -0.3798784 -0.6958830 0.6094582 0.3798784 0.6958830 -0.6094582 -0.3162712 -0.6958818 0.6447644 0.3162712 0.6958818 -0.6447644 -0.2494165 -0.6958826 0.6734529 0.2494165 0.6958826 -0.6734529 -0.1800084 -0.6958836 0.6952287 0.1800084 0.6958836 -0.6952287 -0.1087497 -0.6958813 0.7098752 0.1087497 0.6958813 -0.7098752 -0.0363724 -0.6958830 0.7172335 0.0363724 0.6958830 -0.7172335 0.0363724 -0.6958830 0.7172335 -0.0363724 0.6958830 -0.7172335 0.1087490 -0.6958815 0.7098751 -0.1087490 0.6958815 -0.7098751 0.1800078 -0.6958834 0.6952291 -0.1800078 0.6958834 -0.6952291 0.2494165 -0.6958826 0.6734529 -0.2494165 0.6958826 -0.6734529 0.3162729 -0.6958812 0.6447641 -0.3162729 0.6958812 -0.6447641 0.3798796 -0.6958835 0.6094569 -0.3798796 0.6958835 -0.6094569 0.4395878 -0.6958820 0.5679003 -0.4395878 0.6958820 -0.5679003 0.4947851 -0.6958830 0.5205137 -0.4947851 0.6958830 -0.5205137 0.5449058 -0.6958823 0.4677878 -0.5449058 0.6958823 -0.4677878 0.5894367 -0.6958821 0.4102591 -0.5894367 0.6958821 -0.4102591 0.6279167 -0.6958831 0.3485218 -0.6279167 0.6958831 -0.3485218 0.6599542 -0.6958825 0.2832102 -0.6599542 0.6958825 -0.2832102 0.6852209 -0.6958821 0.2149894 -0.6852209 0.6958821 -0.2149894 0.7034548 -0.6958826 -0.1445637 -0.7034548 0.6958826 0.1445637 0.6852206 -0.6958824 -0.2149894 -0.6852206 0.6958824 0.2149894 0.6599546 -0.6958825 -0.2832093 -0.6599546 0.6958825 0.2832093 0.6279167 -0.6958825 -0.3485227 -0.6279167 0.6958825 0.3485227 0.5894361 -0.6958828 -0.4102587 -0.5894361 0.6958828 0.4102587 0.5449068 -0.6958819 -0.4677873 -0.5449068 0.6958819 0.4677873 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 0 0 38 39 0 39 3 3 39 40 3 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61 61 60 62 61 62 63 63 62 64 63 64 65 65 64 66 65 66 67 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 4 95 96 4 4 96 5 96 97 5 5 97 98 97 99 98 98 99 100 99 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 121 123 122 122 123 124 123 125 124 124 125 126 127 126 125 3 128 1 128 3 41 94 4 129 6 129 4 37 2 130 2 37 0 5 98 7 131 7 98 23 132 21 132 23 133 134 112 135 114 135 112 21 136 19 136 21 132 135 114 137 116 137 114 19 138 17 138 19 136 137 116 139 118 139 116 17 140 15 140 17 138 139 118 141 120 141 118 15 142 13 142 15 140 141 120 143 122 143 120 13 144 11 144 13 142 143 122 145 124 145 122 11 146 9 146 11 144 145 124 147 126 147 124 9 148 10 148 9 146 147 126 149 127 149 126 10 150 8 150 10 148 149 127 151 125 151 127 8 152 12 152 8 150 151 125 153 123 153 125 12 154 14 154 12 152 153 123 155 121 155 123 14 156 16 156 14 154 155 121 157 119 157 121 16 158 18 158 16 156 157 119 159 117 159 119 18 160 20 160 18 158 159 117 161 115 161 117 20 162 22 162 20 160 161 115 163 113 163 115 24 162 164 162 24 22 113 111 163 165 163 111 26 164 166 164 26 24 111 109 165 167 165 109 168 26 166 26 168 28 107 169 109 167 109 169 30 168 170 168 30 28 107 105 169 171 169 105 32 170 172 170 32 30 105 103 171 173 171 103 34 172 174 172 34 32 103 101 173 175 173 101 36 174 176 174 36 34 101 99 175 177 175 99 38 176 178 176 38 36 99 97 177 179 177 97 39 178 180 178 39 38 97 96 179 181 179 96 40 180 182 180 40 39 96 95 181 183 181 95 42 182 184 182 42 40 95 93 183 185 183 93 44 184 186 184 44 42 93 91 185 187 185 91 46 186 188 186 46 44 91 89 187 189 187 89 48 188 190 188 48 46 89 87 189 191 189 87 50 190 192 190 50 48 87 85 191 193 191 85 52 192 194 192 52 50 85 83 193 195 193 83 196 52 194 52 196 54 81 197 83 195 83 197 198 54 196 54 198 56 79 199 81 197 81 199 200 56 198 56 200 58 77 201 79 199 79 201 202 58 200 58 202 60 75 203 77 201 77 203 204 60 202 60 204 62 73 205 75 203 75 205 206 62 204 62 206 64 71 207 73 205 73 207 208 64 206 64 208 66 69 209 71 207 71 209 210 66 208 66 210 67 68 211 69 209 69 211 212 67 210 67 212 65 70 213 68 211 68 213 214 65 212 65 214 63 72 215 70 213 70 215 216 63 214 63 216 61 74 217 72 215 72 217 218 61 216 61 218 59 76 219 74 217 74 219 220 59 218 59 220 57 78 221 76 219 76 221 222 57 220 57 222 55 80 223 78 221 78 223 224 55 222 55 224 53 82 225 80 223 80 225 51 224 226 224 51 53 82 84 225 227 225 84 49 226 228 226 49 51 84 86 227 229 227 86 47 228 230 228 47 49 86 88 229 231 229 88 45 230 232 230 45 47 88 90 231 233 231 90 43 232 234 232 43 45 90 92 233 235 233 92 41 234 128 234 41 43 92 94 235 129 235 94 35 130 236 130 35 37 98 100 131 237 131 100 33 236 238 236 33 35 100 102 237 239 237 102 31 238 240 238 31 33 102 104 239 241 239 104 29 240 242 240 29 31 104 106 241 243 241 106 27 242 244 242 27 29 106 108 243 245 243 108 246 27 244 27 246 25 110 247 108 245 108 247 23 246 133 246 23 25 110 112 247 134 247 112

-
-
-
- - - - -6740.3622047 1072.8346457 197.2798819 -7568.8779528 1072.8346457 155.2624016 -7153.5551181 1072.8346457 155.2624016 -7982.0708661 1072.8346457 197.2798819 -6333.5393701 1072.8346457 280.8838583 -8388.8897638 1072.8346457 280.8838583 -5937.2637795 1072.8346457 405.2161417 -8785.1653543 1072.8346457 405.2161417 -5555.5984252 1072.8346457 569.0011811 -9166.8307087 1072.8346457 569.0011811 -5192.4645669 1072.8346457 770.5586614 -9529.9685039 1072.8346457 770.5586614 -4851.5826772 1072.8346457 1007.8192913 -9870.8503937 1072.8346457 1007.8192913 -4536.4527559 1072.8346457 1278.3496063 -10185.9803150 1072.8346457 1278.3496063 -4250.3070866 1072.8346457 1579.3728346 -10472.1220472 1072.8346457 1579.3728346 -3996.0866142 1072.8346457 1907.8003937 -10726.3464567 1072.8346457 1907.8003937 -3776.3952756 1072.8346457 2260.2622047 -10946.0354331 1072.8346457 2260.2622047 -3593.4889764 1072.8346457 2633.1413386 -11128.9409449 1072.8346457 2633.1413386 -3449.2448819 1072.8346457 3022.6114173 -11273.1889764 1072.8346457 3022.6114173 -3345.1433071 1072.8346457 3424.6759843 -11377.2874016 1072.8346457 3424.6759843 -3282.2515748 1072.8346457 3835.2098425 -11440.1811024 1072.8346457 3835.2098425 -3261.2157480 1072.8346457 4250.0000000 -11461.2165354 1072.8346457 4250.0000000 -3282.2515748 1072.8346457 4664.7913386 -11440.1811024 1072.8346457 4664.7913386 -3345.1433071 1072.8346457 5075.3228346 -11377.2874016 1072.8346457 5075.3228346 -3449.2448819 1072.8346457 5477.3897638 -11273.1889764 1072.8346457 5477.3897638 -3593.4889764 1072.8346457 5866.8582677 -11128.9409449 1072.8346457 5866.8582677 -3776.3952756 1072.8346457 6239.7362205 -10946.0354331 1072.8346457 6239.7362205 -3996.0866142 1072.8346457 6592.2007874 -10726.3464567 1072.8346457 6592.2007874 -4250.3070866 1072.8346457 6920.6259843 -10472.1220472 1072.8346457 6920.6259843 -4536.4527559 1072.8346457 7221.6496063 -10185.9803150 1072.8346457 7221.6496063 -4851.5826772 1072.8346457 7492.1811024 -9870.8503937 1072.8346457 7492.1811024 -5192.4645669 1072.8346457 7729.4409449 -9529.9685039 1072.8346457 7729.4409449 -5555.5984252 1072.8346457 7931.0000000 -9166.8307087 1072.8346457 7931.0000000 -5937.2637795 1072.8346457 8094.7834646 -8785.1653543 1072.8346457 8094.7834646 -6333.5393701 1072.8346457 8219.1141732 -8388.8897638 1072.8346457 8219.1141732 -6740.3622047 1072.8346457 8302.7204724 -7982.0708661 1072.8346457 8302.7204724 -7153.5551181 1072.8346457 8344.7362205 -7568.8779528 1072.8346457 8344.7362205 -7568.8779528 1072.8346457 8344.7362205 -7153.5551181 1072.8346457 8344.7362205 -7982.0708661 1072.8346457 8302.7204724 -6740.3622047 1072.8346457 8302.7204724 -8388.8897638 1072.8346457 8219.1141732 -6333.5393701 1072.8346457 8219.1141732 -8785.1653543 1072.8346457 8094.7834646 -5937.2637795 1072.8346457 8094.7834646 -9166.8307087 1072.8346457 7931.0000000 -5555.5984252 1072.8346457 7931.0000000 -9529.9685039 1072.8346457 7729.4409449 -5192.4645669 1072.8346457 7729.4409449 -9870.8503937 1072.8346457 7492.1811024 -4851.5826772 1072.8346457 7492.1811024 -10185.9803150 1072.8346457 7221.6496063 -4536.4527559 1072.8346457 7221.6496063 -10472.1220472 1072.8346457 6920.6259843 -4250.3070866 1072.8346457 6920.6259843 -10726.3464567 1072.8346457 6592.2007874 -3996.0866142 1072.8346457 6592.2007874 -10946.0354331 1072.8346457 6239.7362205 -3776.3952756 1072.8346457 6239.7362205 -11128.9409449 1072.8346457 5866.8582677 -3593.4889764 1072.8346457 5866.8582677 -11273.1889764 1072.8346457 5477.3897638 -3449.2448819 1072.8346457 5477.3897638 -11377.2874016 1072.8346457 5075.3228346 -3345.1433071 1072.8346457 5075.3228346 -11440.1811024 1072.8346457 4664.7913386 -3282.2515748 1072.8346457 4664.7913386 -11461.2165354 1072.8346457 4250.0000000 -3261.2157480 1072.8346457 4250.0000000 -11440.1811024 1072.8346457 3835.2098425 -3282.2515748 1072.8346457 3835.2098425 -11377.2874016 1072.8346457 3424.6759843 -3345.1433071 1072.8346457 3424.6759843 -11273.1889764 1072.8346457 3022.6114173 -3449.2448819 1072.8346457 3022.6114173 -11128.9409449 1072.8346457 2633.1413386 -3593.4889764 1072.8346457 2633.1413386 -10946.0354331 1072.8346457 2260.2622047 -3776.3952756 1072.8346457 2260.2622047 -10726.3464567 1072.8346457 1907.8003937 -3996.0866142 1072.8346457 1907.8003937 -10472.1220472 1072.8346457 1579.3728346 -4250.3070866 1072.8346457 1579.3728346 -10185.9803150 1072.8346457 1278.3496063 -4536.4527559 1072.8346457 1278.3496063 -9870.8503937 1072.8346457 1007.8192913 -4851.5826772 1072.8346457 1007.8192913 -9529.9685039 1072.8346457 770.5586614 -5192.4645669 1072.8346457 770.5586614 -9166.8307087 1072.8346457 569.0011811 -5555.5984252 1072.8346457 569.0011811 -8785.1653543 1072.8346457 405.2161417 -5937.2637795 1072.8346457 405.2161417 -8388.8897638 1072.8346457 280.8838583 -6333.5393701 1072.8346457 280.8838583 -7982.0708661 1072.8346457 197.2798819 -6740.3622047 1072.8346457 197.2798819 -7568.8779528 1072.8346457 155.2624016 -7153.5551181 1072.8346457 155.2624016 - - - - - - - - - - 0.1087484 -0.6958825 -0.7098741 -0.0363739 -0.6958825 -0.7172339 0.0363739 -0.6958825 -0.7172339 -0.1087491 -0.6958823 -0.7098742 0.1800074 -0.6958824 -0.6952302 -0.1800080 -0.6958826 -0.6952298 0.2494189 -0.6958826 -0.6734520 -0.2494189 -0.6958826 -0.6734520 0.3162726 -0.6958820 -0.6447634 -0.3162709 -0.6958825 -0.6447637 0.3798793 -0.6958829 -0.6094577 -0.3798781 -0.6958824 -0.6094590 0.4395874 -0.6958824 -0.5679001 -0.4395874 -0.6958824 -0.5679001 0.4947845 -0.6958829 -0.5205145 -0.4947868 -0.6958821 -0.5205133 0.5449068 -0.6958819 -0.4677873 -0.5449055 -0.6958834 -0.4677865 0.5894361 -0.6958828 -0.4102587 -0.5894366 -0.6958815 -0.4102602 0.6279167 -0.6958825 -0.3485227 -0.6279176 -0.6958829 -0.3485205 0.6599546 -0.6958825 -0.2832093 -0.6599526 -0.6958836 -0.2832112 0.6852206 -0.6958824 -0.2149894 -0.6852220 -0.6958806 -0.2149904 0.7034548 -0.6958826 -0.1445637 -0.7034538 -0.6958839 -0.1445625 0.7144711 -0.6958824 -0.0726549 -0.7144715 -0.6958818 -0.0726563 0.7181557 -0.6958825 -0.0000001 -0.7181555 -0.6958827 -0.0000001 0.7144711 -0.6958823 0.0726551 -0.7144716 -0.6958817 0.0726565 0.7034547 -0.6958829 0.1445635 -0.7034536 -0.6958842 0.1445623 0.6852209 -0.6958821 0.2149894 -0.6852223 -0.6958803 0.2149905 0.6599542 -0.6958825 0.2832102 -0.6599522 -0.6958836 0.2832121 0.6279167 -0.6958831 0.3485218 -0.6279175 -0.6958834 0.3485195 0.5894367 -0.6958821 0.4102591 -0.5894372 -0.6958807 0.4102606 0.5449058 -0.6958823 0.4677878 -0.5449045 -0.6958839 0.4677870 0.4947851 -0.6958830 0.5205137 -0.4947874 -0.6958823 0.5205125 0.4395878 -0.6958820 0.5679003 -0.4395878 -0.6958820 0.5679003 0.3798796 -0.6958835 0.6094569 -0.3798784 -0.6958830 0.6094582 0.3162729 -0.6958812 0.6447641 -0.3162712 -0.6958818 0.6447644 0.2494165 -0.6958826 0.6734529 -0.2494165 -0.6958826 0.6734529 0.1800078 -0.6958834 0.6952291 -0.1800084 -0.6958836 0.6952287 0.1087490 -0.6958815 0.7098751 -0.1087497 -0.6958813 0.7098752 0.0363724 -0.6958830 0.7172335 -0.0363724 -0.6958830 0.7172335 0.0363724 0.6958830 -0.7172335 -0.0363724 0.6958830 -0.7172335 0.1087497 0.6958813 -0.7098752 -0.1087490 0.6958815 -0.7098751 0.1800084 0.6958836 -0.6952287 -0.1800078 0.6958834 -0.6952291 0.2494165 0.6958826 -0.6734529 -0.2494165 0.6958826 -0.6734529 0.3162712 0.6958818 -0.6447644 -0.3162729 0.6958812 -0.6447641 0.3798784 0.6958830 -0.6094582 -0.3798796 0.6958835 -0.6094569 0.4395878 0.6958820 -0.5679003 -0.4395878 0.6958820 -0.5679003 0.4947874 0.6958823 -0.5205125 -0.4947851 0.6958830 -0.5205137 0.5449045 0.6958839 -0.4677870 -0.5449058 0.6958823 -0.4677878 0.5894372 0.6958807 -0.4102606 -0.5894367 0.6958821 -0.4102591 0.6279175 0.6958834 -0.3485195 -0.6279167 0.6958831 -0.3485218 0.6599522 0.6958836 -0.2832121 -0.6599542 0.6958825 -0.2832102 0.6852223 0.6958803 -0.2149905 -0.6852209 0.6958821 -0.2149894 0.7034536 0.6958842 -0.1445623 -0.7034547 0.6958829 -0.1445635 0.7144716 0.6958817 -0.0726565 -0.7144711 0.6958823 -0.0726551 0.7181555 0.6958827 0.0000001 -0.7181557 0.6958825 0.0000001 0.7144715 0.6958818 0.0726563 -0.7144711 0.6958824 0.0726549 0.7034538 0.6958839 0.1445625 -0.7034548 0.6958826 0.1445637 0.6852220 0.6958806 0.2149904 -0.6852206 0.6958824 0.2149894 0.6599526 0.6958836 0.2832112 -0.6599546 0.6958825 0.2832093 0.6279176 0.6958829 0.3485205 -0.6279167 0.6958825 0.3485227 0.5894366 0.6958815 0.4102602 -0.5894361 0.6958828 0.4102587 0.5449055 0.6958834 0.4677865 -0.5449068 0.6958819 0.4677873 0.4947868 0.6958821 0.5205133 -0.4947845 0.6958829 0.5205145 0.4395874 0.6958824 0.5679001 -0.4395874 0.6958824 0.5679001 0.3798781 0.6958824 0.6094590 -0.3798793 0.6958829 0.6094577 0.3162709 0.6958825 0.6447637 -0.3162726 0.6958820 0.6447634 0.2494189 0.6958826 0.6734520 -0.2494189 0.6958826 0.6734520 0.1800080 0.6958826 0.6952298 -0.1800074 0.6958824 0.6952302 0.1087491 0.6958823 0.7098742 -0.1087484 0.6958825 0.7098741 0.0363739 0.6958825 0.7172339 -0.0363739 0.6958825 0.7172339 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61 62 63 64 63 65 64 64 65 66 65 67 66 66 67 68 67 69 68 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 99 98 98 99 100 99 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 123 122 121

-
-
-
- - - - -2050.0000000 1072.8346457 -4949.2952756 -2398.7007874 1190.9448819 -5174.9094488 -2398.7007874 1072.8346457 -5174.9094488 -2050.0000000 1190.9448819 -4949.2952756 -2050.0000000 1190.9448819 -4949.2952756 -2050.0000000 1072.8346457 -4949.2952756 -2398.7007874 1190.9448819 -5174.9094488 -2398.7007874 1072.8346457 -5174.9094488 -345.8394094 1190.9448819 -12585.3897638 483.6224409 1190.9448819 -12571.3779528 69.2468898 1190.9448819 -12599.4133858 -757.3767717 1190.9448819 -12529.4409449 893.0358268 1190.9448819 -12501.5590551 -1161.1425197 1190.9448819 -12432.1417323 1293.2846457 1190.9448819 -12390.6850394 -1552.9933071 1190.9448819 -12294.4960630 1680.2633858 1190.9448819 -12239.8818898 -1928.9082677 1190.9448819 -12117.9133858 2050.0000000 1190.9448819 -12050.7047244 -2285.0303150 1190.9448819 -11904.2086614 2398.7007874 1190.9448819 -11825.0905512 -2617.7047244 1190.9448819 -11655.5708661 2722.7881890 1190.9448819 -11565.3582677 -2923.5177165 1190.9448819 -11374.5511811 3018.9354331 1190.9448819 -11274.1732283 -3199.3318898 1190.9448819 -11064.0354331 3284.1043307 1190.9448819 -10954.5196850 -3442.3161417 1190.9448819 -10727.2086614 3515.5748031 1190.9448819 -10609.6771654 -3649.9775591 1190.9448819 -10367.5275591 3710.9696850 1190.9448819 -10243.1889764 -3820.1854331 1190.9448819 -9988.6850394 3868.2850394 1190.9448819 -9858.8110236 -3951.1929134 1190.9448819 -9594.5669291 3985.9055118 1190.9448819 -9460.4921260 -4041.6574803 1190.9448819 -9189.2125984 4062.6299213 1190.9448819 -9052.3149606 -4090.6456693 1190.9448819 -8776.7913386 4097.6614173 1190.9448819 -8638.4724409 -4097.6614173 1190.9448819 -8361.5275591 4090.6456693 1190.9448819 -8223.2086614 -4062.6299213 1190.9448819 -7947.6850394 4041.6574803 1190.9448819 -7810.7874016 -3985.9055118 1190.9448819 -7539.5078740 3951.1929134 1190.9448819 -7405.4370079 -3868.2850394 1190.9448819 -7141.1889764 3820.1854331 1190.9448819 -7011.3149606 -3710.9696850 1190.9448819 -6756.8110236 3649.9775591 1190.9448819 -6632.4724409 -3515.5748031 1190.9448819 -6390.3228346 3442.3161417 1190.9448819 -6272.7913386 -3284.1043307 1190.9448819 -6045.4842520 3199.3318898 1190.9448819 -5935.9645669 -3018.9354331 1190.9448819 -5725.8267717 2923.5177165 1190.9448819 -5625.4488189 -2722.7881890 1190.9448819 -5434.6417323 2617.7047244 1190.9448819 -5344.4291339 2285.0303150 1190.9448819 -5095.7913386 1928.9082677 1190.9448819 -4882.0866142 -1680.2633858 1190.9448819 -4760.1181102 1552.9933071 1190.9448819 -4705.5039370 -1293.2846457 1190.9448819 -4609.3188976 1161.1425197 1190.9448819 -4567.8582677 -893.0358268 1190.9448819 -4498.4409449 757.3767717 1190.9448819 -4470.5590551 -483.6224409 1190.9448819 -4428.6220472 345.8394094 1190.9448819 -4414.6102362 -69.2468898 1190.9448819 -4400.5866142 -69.2468898 1190.9448819 -4400.5866142 -483.6224409 1190.9448819 -4428.6220472 345.8394094 1190.9448819 -4414.6102362 757.3767717 1190.9448819 -4470.5590551 -893.0358268 1190.9448819 -4498.4409449 1161.1425197 1190.9448819 -4567.8582677 -1293.2846457 1190.9448819 -4609.3188976 1552.9933071 1190.9448819 -4705.5039370 -1680.2633858 1190.9448819 -4760.1181102 1928.9082677 1190.9448819 -4882.0866142 2285.0303150 1190.9448819 -5095.7913386 2617.7047244 1190.9448819 -5344.4291339 -2722.7881890 1190.9448819 -5434.6417323 2923.5177165 1190.9448819 -5625.4488189 -3018.9354331 1190.9448819 -5725.8267717 3199.3318898 1190.9448819 -5935.9645669 -3284.1043307 1190.9448819 -6045.4842520 3442.3161417 1190.9448819 -6272.7913386 -3515.5748031 1190.9448819 -6390.3228346 3649.9775591 1190.9448819 -6632.4724409 -3710.9696850 1190.9448819 -6756.8110236 3820.1854331 1190.9448819 -7011.3149606 -3868.2850394 1190.9448819 -7141.1889764 3951.1929134 1190.9448819 -7405.4370079 -3985.9055118 1190.9448819 -7539.5078740 4041.6574803 1190.9448819 -7810.7874016 -4062.6299213 1190.9448819 -7947.6850394 4090.6456693 1190.9448819 -8223.2086614 -4097.6614173 1190.9448819 -8361.5275591 4097.6614173 1190.9448819 -8638.4724409 -4090.6456693 1190.9448819 -8776.7913386 4062.6299213 1190.9448819 -9052.3149606 -4041.6574803 1190.9448819 -9189.2125984 3985.9055118 1190.9448819 -9460.4921260 -3951.1929134 1190.9448819 -9594.5669291 3868.2850394 1190.9448819 -9858.8110236 -3820.1854331 1190.9448819 -9988.6850394 3710.9696850 1190.9448819 -10243.1889764 -3649.9775591 1190.9448819 -10367.5275591 3515.5748031 1190.9448819 -10609.6771654 -3442.3161417 1190.9448819 -10727.2086614 3284.1043307 1190.9448819 -10954.5196850 -3199.3318898 1190.9448819 -11064.0354331 3018.9354331 1190.9448819 -11274.1732283 -2923.5177165 1190.9448819 -11374.5511811 2722.7881890 1190.9448819 -11565.3582677 -2617.7047244 1190.9448819 -11655.5708661 2398.7007874 1190.9448819 -11825.0905512 -2285.0303150 1190.9448819 -11904.2086614 2050.0000000 1190.9448819 -12050.7047244 -1928.9082677 1190.9448819 -12117.9133858 1680.2633858 1190.9448819 -12239.8818898 -1552.9933071 1190.9448819 -12294.4960630 1293.2846457 1190.9448819 -12390.6850394 -1161.1425197 1190.9448819 -12432.1417323 893.0358268 1190.9448819 -12501.5590551 -757.3767717 1190.9448819 -12529.4409449 483.6224409 1190.9448819 -12571.3779528 -345.8394094 1190.9448819 -12585.3897638 69.2468898 1190.9448819 -12599.4133858 -2722.7881890 1072.8346457 -5434.6417323 -2722.7881890 1072.8346457 -5434.6417323 -1680.2633858 1072.8346457 -4760.1181102 -1680.2633858 1072.8346457 -4760.1181102 1552.9933071 1072.8346457 -4705.5039370 1161.1425197 1072.8346457 -4567.8582677 1552.9933071 1072.8346457 -4705.5039370 1161.1425197 1072.8346457 -4567.8582677 1928.9082677 1072.8346457 -4882.0866142 1928.9082677 1072.8346457 -4882.0866142 2285.0303150 1072.8346457 -5095.7913386 2285.0303150 1072.8346457 -5095.7913386 2617.7047244 1072.8346457 -5344.4291339 2617.7047244 1072.8346457 -5344.4291339 2923.5177165 1072.8346457 -5625.4488189 2923.5177165 1072.8346457 -5625.4488189 3199.3318898 1072.8346457 -5935.9645669 3199.3318898 1072.8346457 -5935.9645669 3442.3161417 1072.8346457 -6272.7913386 3442.3161417 1072.8346457 -6272.7913386 3649.9775591 1072.8346457 -6632.4724409 3649.9775591 1072.8346457 -6632.4724409 3820.1854331 1072.8346457 -7011.3149606 3820.1854331 1072.8346457 -7011.3149606 3951.1929134 1072.8346457 -7405.4370079 3951.1929134 1072.8346457 -7405.4370079 4041.6574803 1072.8346457 -7810.7874016 4041.6574803 1072.8346457 -7810.7874016 4090.6456693 1072.8346457 -8223.2086614 4090.6456693 1072.8346457 -8223.2086614 4097.6614173 1072.8346457 -8638.4724409 4097.6614173 1072.8346457 -8638.4724409 4062.6299213 1072.8346457 -9052.3149606 4062.6299213 1072.8346457 -9052.3149606 3985.9055118 1072.8346457 -9460.4921260 3985.9055118 1072.8346457 -9460.4921260 3868.2850394 1072.8346457 -9858.8110236 3868.2850394 1072.8346457 -9858.8110236 3710.9696850 1072.8346457 -10243.1889764 3710.9696850 1072.8346457 -10243.1889764 3515.5748031 1072.8346457 -10609.6771654 3515.5748031 1072.8346457 -10609.6771654 3284.1043307 1072.8346457 -10954.5196850 3284.1043307 1072.8346457 -10954.5196850 3018.9354331 1072.8346457 -11274.1732283 3018.9354331 1072.8346457 -11274.1732283 2722.7881890 1072.8346457 -11565.3582677 2722.7881890 1072.8346457 -11565.3582677 2398.7007874 1072.8346457 -11825.0905512 2398.7007874 1072.8346457 -11825.0905512 2050.0000000 1072.8346457 -12050.7047244 2050.0000000 1072.8346457 -12050.7047244 1680.2633858 1072.8346457 -12239.8818898 1680.2633858 1072.8346457 -12239.8818898 1293.2846457 1072.8346457 -12390.6850394 1293.2846457 1072.8346457 -12390.6850394 893.0358268 1072.8346457 -12501.5590551 893.0358268 1072.8346457 -12501.5590551 483.6224409 1072.8346457 -12571.3779528 483.6224409 1072.8346457 -12571.3779528 69.2468898 1072.8346457 -12599.4133858 69.2468898 1072.8346457 -12599.4133858 -345.8394094 1072.8346457 -12585.3897638 -345.8394094 1072.8346457 -12585.3897638 -757.3767717 1072.8346457 -12529.4409449 -757.3767717 1072.8346457 -12529.4409449 -1161.1425197 1072.8346457 -12432.1417323 -1161.1425197 1072.8346457 -12432.1417323 -1552.9933071 1072.8346457 -12294.4960630 -1552.9933071 1072.8346457 -12294.4960630 -1928.9082677 1072.8346457 -12117.9133858 -1928.9082677 1072.8346457 -12117.9133858 -2285.0303150 1072.8346457 -11904.2086614 -2285.0303150 1072.8346457 -11904.2086614 -2617.7047244 1072.8346457 -11655.5708661 -2617.7047244 1072.8346457 -11655.5708661 -2923.5177165 1072.8346457 -11374.5511811 -2923.5177165 1072.8346457 -11374.5511811 -3199.3318898 1072.8346457 -11064.0354331 -3199.3318898 1072.8346457 -11064.0354331 -3442.3161417 1072.8346457 -10727.2086614 -3442.3161417 1072.8346457 -10727.2086614 -3649.9775591 1072.8346457 -10367.5275591 -3649.9775591 1072.8346457 -10367.5275591 -3820.1854331 1072.8346457 -9988.6850394 -3820.1854331 1072.8346457 -9988.6850394 -3951.1929134 1072.8346457 -9594.5669291 -3951.1929134 1072.8346457 -9594.5669291 -4041.6574803 1072.8346457 -9189.2125984 -4041.6574803 1072.8346457 -9189.2125984 -4090.6456693 1072.8346457 -8776.7913386 -4090.6456693 1072.8346457 -8776.7913386 -4097.6614173 1072.8346457 -8361.5275591 -4097.6614173 1072.8346457 -8361.5275591 -4062.6299213 1072.8346457 -7947.6850394 -4062.6299213 1072.8346457 -7947.6850394 -3985.9055118 1072.8346457 -7539.5078740 -3985.9055118 1072.8346457 -7539.5078740 -3868.2850394 1072.8346457 -7141.1889764 -3868.2850394 1072.8346457 -7141.1889764 -3710.9696850 1072.8346457 -6756.8110236 -3710.9696850 1072.8346457 -6756.8110236 -3515.5748031 1072.8346457 -6390.3228346 -3515.5748031 1072.8346457 -6390.3228346 -3284.1043307 1072.8346457 -6045.4842520 -3284.1043307 1072.8346457 -6045.4842520 -3018.9354331 1072.8346457 -5725.8267717 -3018.9354331 1072.8346457 -5725.8267717 -1293.2846457 1072.8346457 -4609.3188976 -1293.2846457 1072.8346457 -4609.3188976 -893.0358268 1072.8346457 -4498.4409449 -893.0358268 1072.8346457 -4498.4409449 -483.6224409 1072.8346457 -4428.6220472 -483.6224409 1072.8346457 -4428.6220472 -69.2468898 1072.8346457 -4400.5866142 -69.2468898 1072.8346457 -4400.5866142 345.8394094 1072.8346457 -4414.6102362 345.8394094 1072.8346457 -4414.6102362 757.3767717 1072.8346457 -4470.5590551 757.3767717 1072.8346457 -4470.5590551 - - - - - - - - - - -0.3590789 -0.6958821 0.6219409 -0.4201566 0.6958830 0.5824219 -0.4201566 -0.6958830 0.5824219 -0.3590789 0.6958821 0.6219409 0.3590789 -0.6958821 -0.6219409 0.3590789 0.6958821 -0.6219409 0.4201566 -0.6958830 -0.5824219 0.4201566 0.6958830 -0.5824219 -0.0605742 0.6958816 -0.7155974 0.0847112 0.6958811 -0.7131434 0.0121298 0.6958842 -0.7180516 -0.1326646 0.6958818 -0.7057965 0.1564231 0.6958841 -0.7009117 -0.2033880 0.6958832 -0.6887524 0.2265306 0.6958812 -0.6814934 -0.2720229 0.6958824 -0.6646437 0.2943156 0.6958830 -0.6550765 -0.3378662 0.6958831 -0.6337137 0.3590789 0.6958821 -0.6219409 -0.4002441 0.6958822 -0.5962824 0.4201566 0.6958830 -0.5824219 -0.4585171 0.6958822 -0.5527297 0.4769219 0.6958828 -0.5369289 -0.5120832 0.6958827 -0.5035057 0.5287958 0.6958822 -0.4859249 -0.5603949 0.6958823 -0.4491162 0.5752437 0.6958824 -0.4299330 -0.6029562 0.6958825 -0.3901171 0.6157878 0.6958826 -0.3695305 -0.6393295 0.6958828 -0.3271161 0.6500136 0.6958823 -0.3053361 -0.6691431 0.6958825 -0.2607586 0.6775691 0.6958825 -0.2380078 -0.6920902 0.6958826 -0.1917250 0.6981697 0.6958836 -0.1682412 -0.7079369 0.6958818 -0.1207220 0.7116105 0.6958813 -0.0967453 -0.7165166 0.6958832 -0.0484820 0.7177460 0.6958826 -0.0242529 -0.7177460 0.6958826 0.0242529 0.7165166 0.6958832 0.0484820 -0.7116105 0.6958813 0.0967453 0.7079370 0.6958816 0.1207228 -0.6981697 0.6958836 0.1682412 0.6920898 0.6958832 0.1917245 -0.6775691 0.6958825 0.2380078 0.6691438 0.6958821 0.2607578 -0.6500136 0.6958823 0.3053361 0.6393295 0.6958828 0.3271161 -0.6157873 0.6958820 0.3695324 0.6029562 0.6958825 0.3901171 -0.5752430 0.6958836 0.4299321 0.5603949 0.6958823 0.4491162 -0.5287978 0.6958815 0.4859237 0.5120832 0.6958827 0.5035057 -0.4769219 0.6958828 0.5369289 0.4585171 0.6958822 0.5527297 0.4002441 0.6958822 0.5962824 0.3378662 0.6958831 0.6337137 -0.2943131 0.6958820 0.6550786 0.2720229 0.6958824 0.6646437 -0.2265302 0.6958832 0.6814915 0.2033880 0.6958832 0.6887524 -0.1564265 0.6958831 0.7009119 0.1326646 0.6958818 0.7057965 -0.0847112 0.6958811 0.7131434 0.0605742 0.6958816 0.7155974 -0.0121298 0.6958842 0.7180516 0.0121298 -0.6958842 -0.7180516 0.0847112 -0.6958811 -0.7131434 -0.0605742 -0.6958816 -0.7155974 -0.1326646 -0.6958818 -0.7057965 0.1564265 -0.6958831 -0.7009119 -0.2033880 -0.6958832 -0.6887524 0.2265302 -0.6958832 -0.6814915 -0.2720229 -0.6958824 -0.6646437 0.2943131 -0.6958820 -0.6550786 -0.3378662 -0.6958831 -0.6337137 -0.4002441 -0.6958822 -0.5962824 -0.4585171 -0.6958822 -0.5527297 0.4769219 -0.6958828 -0.5369289 -0.5120832 -0.6958827 -0.5035057 0.5287978 -0.6958815 -0.4859237 -0.5603949 -0.6958823 -0.4491162 0.5752430 -0.6958836 -0.4299321 -0.6029562 -0.6958825 -0.3901171 0.6157873 -0.6958820 -0.3695324 -0.6393295 -0.6958828 -0.3271161 0.6500136 -0.6958823 -0.3053361 -0.6691438 -0.6958821 -0.2607578 0.6775691 -0.6958825 -0.2380078 -0.6920898 -0.6958832 -0.1917245 0.6981697 -0.6958836 -0.1682412 -0.7079370 -0.6958816 -0.1207228 0.7116105 -0.6958813 -0.0967453 -0.7165166 -0.6958832 -0.0484820 0.7177460 -0.6958826 -0.0242529 -0.7177460 -0.6958826 0.0242529 0.7165166 -0.6958832 0.0484820 -0.7116105 -0.6958813 0.0967453 0.7079369 -0.6958818 0.1207220 -0.6981697 -0.6958836 0.1682412 0.6920902 -0.6958826 0.1917250 -0.6775691 -0.6958825 0.2380078 0.6691431 -0.6958825 0.2607586 -0.6500136 -0.6958823 0.3053361 0.6393295 -0.6958828 0.3271161 -0.6157878 -0.6958826 0.3695305 0.6029562 -0.6958825 0.3901171 -0.5752437 -0.6958824 0.4299330 0.5603949 -0.6958823 0.4491162 -0.5287958 -0.6958822 0.4859249 0.5120832 -0.6958827 0.5035057 -0.4769219 -0.6958828 0.5369289 0.4585171 -0.6958822 0.5527297 -0.4201566 -0.6958830 0.5824219 0.4002441 -0.6958822 0.5962824 -0.3590789 -0.6958821 0.6219409 0.3378662 -0.6958831 0.6337137 -0.2943156 -0.6958830 0.6550765 0.2720229 -0.6958824 0.6646437 -0.2265306 -0.6958812 0.6814934 0.2033880 -0.6958832 0.6887524 -0.1564231 -0.6958841 0.7009117 0.1326646 -0.6958818 0.7057965 -0.0847112 -0.6958811 0.7131434 0.0605742 -0.6958816 0.7155974 -0.0121298 -0.6958842 0.7180516 -0.4769219 -0.6958828 0.5369289 0.4769219 0.6958828 -0.5369289 -0.2943131 -0.6958820 0.6550786 0.2943131 0.6958820 -0.6550786 0.2720229 -0.6958824 0.6646437 0.2033880 -0.6958832 0.6887524 -0.2720229 0.6958824 -0.6646437 -0.2033880 0.6958832 -0.6887524 0.3378662 -0.6958831 0.6337137 -0.3378662 0.6958831 -0.6337137 0.4002441 -0.6958822 0.5962824 -0.4002441 0.6958822 -0.5962824 0.4585171 -0.6958822 0.5527297 -0.4585171 0.6958822 -0.5527297 0.5120832 -0.6958827 0.5035057 -0.5120832 0.6958827 -0.5035057 0.5603949 -0.6958823 0.4491162 -0.5603949 0.6958823 -0.4491162 0.6029562 -0.6958825 0.3901171 -0.6029562 0.6958825 -0.3901171 0.6393295 -0.6958828 0.3271161 -0.6393295 0.6958828 -0.3271161 0.6691438 -0.6958821 0.2607578 -0.6691438 0.6958821 -0.2607578 0.6920898 -0.6958832 0.1917245 -0.6920898 0.6958832 -0.1917245 0.7079370 -0.6958816 0.1207228 -0.7079370 0.6958816 -0.1207228 0.7165166 -0.6958832 0.0484820 -0.7165166 0.6958832 -0.0484820 0.7177460 -0.6958826 -0.0242529 -0.7177460 0.6958826 0.0242529 0.7116105 -0.6958813 -0.0967453 -0.7116105 0.6958813 0.0967453 0.6981697 -0.6958836 -0.1682412 -0.6981697 0.6958836 0.1682412 0.6775691 -0.6958825 -0.2380078 -0.6775691 0.6958825 0.2380078 0.6500136 -0.6958823 -0.3053361 -0.6500136 0.6958823 0.3053361 0.6157878 -0.6958826 -0.3695305 -0.6157878 0.6958826 0.3695305 0.5752437 -0.6958824 -0.4299330 -0.5752437 0.6958824 0.4299330 0.5287958 -0.6958822 -0.4859249 -0.5287958 0.6958822 0.4859249 0.4769219 -0.6958828 -0.5369289 -0.4769219 0.6958828 0.5369289 0.4201566 -0.6958830 -0.5824219 -0.4201566 0.6958830 0.5824219 0.3590789 -0.6958821 -0.6219409 -0.3590789 0.6958821 0.6219409 0.2943156 -0.6958830 -0.6550765 -0.2943156 0.6958830 0.6550765 0.2265306 -0.6958812 -0.6814934 -0.2265306 0.6958812 0.6814934 0.1564231 -0.6958841 -0.7009117 -0.1564231 0.6958841 0.7009117 0.0847112 -0.6958811 -0.7131434 -0.0847112 0.6958811 0.7131434 0.0121298 -0.6958842 -0.7180516 -0.0121298 0.6958842 0.7180516 -0.0605742 -0.6958816 -0.7155974 0.0605742 0.6958816 0.7155974 -0.1326646 -0.6958818 -0.7057965 0.1326646 0.6958818 0.7057965 -0.2033880 -0.6958832 -0.6887524 0.2033880 0.6958832 0.6887524 -0.2720229 -0.6958824 -0.6646437 0.2720229 0.6958824 0.6646437 -0.3378662 -0.6958831 -0.6337137 0.3378662 0.6958831 0.6337137 -0.4002441 -0.6958822 -0.5962824 0.4002441 0.6958822 0.5962824 -0.4585171 -0.6958822 -0.5527297 0.4585171 0.6958822 0.5527297 -0.5120832 -0.6958827 -0.5035057 0.5120832 0.6958827 0.5035057 -0.5603949 -0.6958823 -0.4491162 0.5603949 0.6958823 0.4491162 -0.6029562 -0.6958825 -0.3901171 0.6029562 0.6958825 0.3901171 -0.6393295 -0.6958828 -0.3271161 0.6393295 0.6958828 0.3271161 -0.6691431 -0.6958825 -0.2607586 0.6691431 0.6958825 0.2607586 -0.6920902 -0.6958826 -0.1917250 0.6920902 0.6958826 0.1917250 -0.7079369 -0.6958818 -0.1207220 0.7079369 0.6958818 0.1207220 -0.7165166 -0.6958832 -0.0484820 0.7165166 0.6958832 0.0484820 -0.7177460 -0.6958826 0.0242529 0.7177460 0.6958826 -0.0242529 -0.7116105 -0.6958813 0.0967453 0.7116105 0.6958813 -0.0967453 -0.6981697 -0.6958836 0.1682412 0.6981697 0.6958836 -0.1682412 -0.6775691 -0.6958825 0.2380078 0.6775691 0.6958825 -0.2380078 -0.6500136 -0.6958823 0.3053361 0.6500136 0.6958823 -0.3053361 -0.6157873 -0.6958820 0.3695324 0.6157873 0.6958820 -0.3695324 -0.5752430 -0.6958836 0.4299321 0.5752430 0.6958836 -0.4299321 -0.5287978 -0.6958815 0.4859237 0.5287978 0.6958815 -0.4859237 -0.2265302 -0.6958832 0.6814915 0.2265302 0.6958832 -0.6814915 -0.1564265 -0.6958831 0.7009119 0.1564265 0.6958831 -0.7009119 -0.0847112 -0.6958811 0.7131434 0.0847112 0.6958811 -0.7131434 -0.0121298 -0.6958842 0.7180516 0.0121298 0.6958842 -0.7180516 0.0605742 -0.6958816 0.7155974 -0.0605742 0.6958816 -0.7155974 0.1326646 -0.6958818 0.7057965 -0.1326646 0.6958818 -0.7057965 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 24 25 26 26 25 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 36 35 37 36 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 47 46 47 48 48 47 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 54 54 53 55 54 55 56 56 55 1 56 1 57 57 1 3 57 3 58 58 3 59 58 59 60 60 59 61 60 61 62 62 61 63 62 63 64 64 63 65 64 65 66 66 65 67 68 69 70 70 69 71 69 72 71 71 72 73 72 74 73 73 74 75 74 76 75 75 76 77 76 4 77 77 4 78 4 6 78 78 6 79 6 80 79 79 80 81 80 82 81 81 82 83 82 84 83 83 84 85 84 86 85 85 86 87 86 88 87 87 88 89 88 90 89 89 90 91 90 92 91 91 92 93 92 94 93 93 94 95 94 96 95 95 96 97 96 98 97 97 98 99 98 100 99 99 100 101 100 102 101 101 102 103 102 104 103 103 104 105 104 106 105 105 106 107 106 108 107 107 108 109 108 110 109 109 110 111 110 112 111 111 112 113 112 114 113 113 114 115 114 116 115 115 116 117 116 118 117 117 118 119 118 120 119 119 120 121 120 122 121 121 122 123 122 124 123 123 124 125 124 126 125 127 125 126 2 55 128 55 2 1 6 7 80 129 80 7 130 3 0 3 130 59 76 131 4 5 4 131 132 62 133 62 132 60 75 134 73 135 73 134 136 60 132 60 136 58 77 137 75 134 75 137 138 58 136 58 138 57 78 139 77 137 77 139 140 57 138 57 140 56 79 141 78 139 78 141 142 56 140 56 142 54 81 143 79 141 79 143 52 142 144 142 52 54 81 83 143 145 143 83 50 144 146 144 50 52 83 85 145 147 145 85 48 146 148 146 48 50 85 87 147 149 147 87 46 148 150 148 46 48 87 89 149 151 149 89 44 150 152 150 44 46 89 91 151 153 151 91 42 152 154 152 42 44 91 93 153 155 153 93 40 154 156 154 40 42 93 95 155 157 155 95 38 156 158 156 38 40 95 97 157 159 157 97 36 158 160 158 36 38 97 99 159 161 159 99 34 160 162 160 34 36 99 101 161 163 161 101 32 162 164 162 32 34 101 103 163 165 163 103 30 164 166 164 30 32 103 105 165 167 165 105 28 166 168 166 28 30 105 107 167 169 167 107 26 168 170 168 26 28 107 109 169 171 169 109 24 170 172 170 24 26 109 111 171 173 171 111 24 174 22 174 24 172 173 111 175 113 175 111 22 176 20 176 22 174 175 113 177 115 177 113 20 178 18 178 20 176 177 115 179 117 179 115 18 180 16 180 18 178 179 117 181 119 181 117 16 182 14 182 16 180 181 119 183 121 183 119 14 184 12 184 14 182 183 121 185 123 185 121 12 186 9 186 12 184 185 123 187 125 187 123 9 188 10 188 9 186 187 125 189 127 189 125 10 190 8 190 10 188 189 127 191 126 191 127 8 192 11 192 8 190 191 126 193 124 193 126 11 194 13 194 11 192 193 124 195 122 195 124 13 196 15 196 13 194 195 122 197 120 197 122 15 198 17 198 15 196 197 120 199 118 199 120 17 200 19 200 17 198 199 118 201 116 201 118 19 202 21 202 19 200 201 116 203 114 203 116 21 204 23 204 21 202 203 114 205 112 205 114 25 204 206 204 25 23 112 110 205 207 205 110 27 206 208 206 27 25 110 108 207 209 207 108 29 208 210 208 29 27 108 106 209 211 209 106 31 210 212 210 31 29 106 104 211 213 211 104 33 212 214 212 33 31 104 102 213 215 213 102 35 214 216 214 35 33 102 100 215 217 215 100 37 216 218 216 37 35 100 98 217 219 217 98 39 218 220 218 39 37 98 96 219 221 219 96 41 220 222 220 41 39 96 94 221 223 221 94 43 222 224 222 43 41 94 92 223 225 223 92 45 224 226 224 45 43 92 90 225 227 225 90 47 226 228 226 47 45 90 88 227 229 227 88 49 228 230 228 49 47 88 86 229 231 229 86 51 230 232 230 51 49 86 84 231 233 231 84 53 232 234 232 53 51 84 82 233 235 233 82 128 53 234 53 128 55 80 129 82 235 82 129 236 59 130 59 236 61 74 237 76 131 76 237 238 61 236 61 238 63 72 239 74 237 74 239 240 63 238 63 240 65 69 241 72 239 72 241 242 65 240 65 242 67 68 243 69 241 69 243 244 67 242 67 244 66 70 245 68 243 68 245 246 66 244 66 246 64 71 247 70 245 70 247 133 64 246 64 133 62 73 135 71 247 71 135

-
-
-
- - - - 483.6224409 1072.8346457 -12571.3779528 -345.8394094 1072.8346457 -12585.3897638 69.2468898 1072.8346457 -12599.4133858 -757.3767717 1072.8346457 -12529.4409449 893.0358268 1072.8346457 -12501.5590551 -1161.1425197 1072.8346457 -12432.1417323 1293.2846457 1072.8346457 -12390.6850394 -1552.9933071 1072.8346457 -12294.4960630 1680.2633858 1072.8346457 -12239.8818898 -1928.9082677 1072.8346457 -12117.9133858 2050.0000000 1072.8346457 -12050.7047244 -2285.0303150 1072.8346457 -11904.2086614 2398.7007874 1072.8346457 -11825.0905512 -2617.7047244 1072.8346457 -11655.5708661 2722.7881890 1072.8346457 -11565.3582677 -2923.5177165 1072.8346457 -11374.5511811 3018.9354331 1072.8346457 -11274.1732283 -3199.3318898 1072.8346457 -11064.0354331 3284.1043307 1072.8346457 -10954.5196850 -3442.3161417 1072.8346457 -10727.2086614 3515.5748031 1072.8346457 -10609.6771654 -3649.9775591 1072.8346457 -10367.5275591 3710.9696850 1072.8346457 -10243.1889764 -3820.1854331 1072.8346457 -9988.6850394 3868.2850394 1072.8346457 -9858.8110236 -3951.1929134 1072.8346457 -9594.5669291 3985.9055118 1072.8346457 -9460.4921260 -4041.6574803 1072.8346457 -9189.2125984 4062.6299213 1072.8346457 -9052.3149606 -4090.6456693 1072.8346457 -8776.7913386 4097.6614173 1072.8346457 -8638.4724409 -4097.6614173 1072.8346457 -8361.5275591 4090.6456693 1072.8346457 -8223.2086614 -4062.6299213 1072.8346457 -7947.6850394 4041.6574803 1072.8346457 -7810.7874016 -3985.9055118 1072.8346457 -7539.5078740 3951.1929134 1072.8346457 -7405.4370079 -3868.2850394 1072.8346457 -7141.1889764 3820.1854331 1072.8346457 -7011.3149606 -3710.9696850 1072.8346457 -6756.8110236 3649.9775591 1072.8346457 -6632.4724409 -3515.5748031 1072.8346457 -6390.3228346 3442.3161417 1072.8346457 -6272.7913386 -3284.1043307 1072.8346457 -6045.4842520 3199.3318898 1072.8346457 -5935.9645669 -3018.9354331 1072.8346457 -5725.8267717 2923.5177165 1072.8346457 -5625.4488189 -2722.7881890 1072.8346457 -5434.6417323 2617.7047244 1072.8346457 -5344.4291339 -2398.7007874 1072.8346457 -5174.9094488 2285.0303150 1072.8346457 -5095.7913386 -2050.0000000 1072.8346457 -4949.2952756 1928.9082677 1072.8346457 -4882.0866142 -1680.2633858 1072.8346457 -4760.1181102 1552.9933071 1072.8346457 -4705.5039370 -1293.2846457 1072.8346457 -4609.3188976 1161.1425197 1072.8346457 -4567.8582677 -893.0358268 1072.8346457 -4498.4409449 757.3767717 1072.8346457 -4470.5590551 -483.6224409 1072.8346457 -4428.6220472 345.8394094 1072.8346457 -4414.6102362 -69.2468898 1072.8346457 -4400.5866142 -69.2468898 1072.8346457 -4400.5866142 345.8394094 1072.8346457 -4414.6102362 -483.6224409 1072.8346457 -4428.6220472 757.3767717 1072.8346457 -4470.5590551 -893.0358268 1072.8346457 -4498.4409449 1161.1425197 1072.8346457 -4567.8582677 -1293.2846457 1072.8346457 -4609.3188976 1552.9933071 1072.8346457 -4705.5039370 -1680.2633858 1072.8346457 -4760.1181102 1928.9082677 1072.8346457 -4882.0866142 -2050.0000000 1072.8346457 -4949.2952756 2285.0303150 1072.8346457 -5095.7913386 -2398.7007874 1072.8346457 -5174.9094488 2617.7047244 1072.8346457 -5344.4291339 -2722.7881890 1072.8346457 -5434.6417323 2923.5177165 1072.8346457 -5625.4488189 -3018.9354331 1072.8346457 -5725.8267717 3199.3318898 1072.8346457 -5935.9645669 -3284.1043307 1072.8346457 -6045.4842520 3442.3161417 1072.8346457 -6272.7913386 -3515.5748031 1072.8346457 -6390.3228346 3649.9775591 1072.8346457 -6632.4724409 -3710.9696850 1072.8346457 -6756.8110236 3820.1854331 1072.8346457 -7011.3149606 -3868.2850394 1072.8346457 -7141.1889764 3951.1929134 1072.8346457 -7405.4370079 -3985.9055118 1072.8346457 -7539.5078740 4041.6574803 1072.8346457 -7810.7874016 -4062.6299213 1072.8346457 -7947.6850394 4090.6456693 1072.8346457 -8223.2086614 -4097.6614173 1072.8346457 -8361.5275591 4097.6614173 1072.8346457 -8638.4724409 -4090.6456693 1072.8346457 -8776.7913386 4062.6299213 1072.8346457 -9052.3149606 -4041.6574803 1072.8346457 -9189.2125984 3985.9055118 1072.8346457 -9460.4921260 -3951.1929134 1072.8346457 -9594.5669291 3868.2850394 1072.8346457 -9858.8110236 -3820.1854331 1072.8346457 -9988.6850394 3710.9696850 1072.8346457 -10243.1889764 -3649.9775591 1072.8346457 -10367.5275591 3515.5748031 1072.8346457 -10609.6771654 -3442.3161417 1072.8346457 -10727.2086614 3284.1043307 1072.8346457 -10954.5196850 -3199.3318898 1072.8346457 -11064.0354331 3018.9354331 1072.8346457 -11274.1732283 -2923.5177165 1072.8346457 -11374.5511811 2722.7881890 1072.8346457 -11565.3582677 -2617.7047244 1072.8346457 -11655.5708661 2398.7007874 1072.8346457 -11825.0905512 -2285.0303150 1072.8346457 -11904.2086614 2050.0000000 1072.8346457 -12050.7047244 -1928.9082677 1072.8346457 -12117.9133858 1680.2633858 1072.8346457 -12239.8818898 -1552.9933071 1072.8346457 -12294.4960630 1293.2846457 1072.8346457 -12390.6850394 -1161.1425197 1072.8346457 -12432.1417323 893.0358268 1072.8346457 -12501.5590551 -757.3767717 1072.8346457 -12529.4409449 483.6224409 1072.8346457 -12571.3779528 -345.8394094 1072.8346457 -12585.3897638 69.2468898 1072.8346457 -12599.4133858 - - - - - - - - - - 0.0847112 -0.6958811 -0.7131434 -0.0605742 -0.6958816 -0.7155974 0.0121298 -0.6958842 -0.7180516 -0.1326646 -0.6958818 -0.7057965 0.1564231 -0.6958841 -0.7009117 -0.2033880 -0.6958832 -0.6887524 0.2265306 -0.6958812 -0.6814934 -0.2720229 -0.6958824 -0.6646437 0.2943156 -0.6958830 -0.6550765 -0.3378662 -0.6958831 -0.6337137 0.3590789 -0.6958821 -0.6219409 -0.4002441 -0.6958822 -0.5962824 0.4201566 -0.6958830 -0.5824219 -0.4585171 -0.6958822 -0.5527297 0.4769219 -0.6958828 -0.5369289 -0.5120832 -0.6958827 -0.5035057 0.5287958 -0.6958822 -0.4859249 -0.5603949 -0.6958823 -0.4491162 0.5752437 -0.6958824 -0.4299330 -0.6029562 -0.6958825 -0.3901171 0.6157878 -0.6958826 -0.3695305 -0.6393295 -0.6958828 -0.3271161 0.6500136 -0.6958823 -0.3053361 -0.6691431 -0.6958825 -0.2607586 0.6775691 -0.6958825 -0.2380078 -0.6920902 -0.6958826 -0.1917250 0.6981697 -0.6958836 -0.1682412 -0.7079369 -0.6958818 -0.1207220 0.7116105 -0.6958813 -0.0967453 -0.7165166 -0.6958832 -0.0484820 0.7177460 -0.6958826 -0.0242529 -0.7177460 -0.6958826 0.0242529 0.7165166 -0.6958832 0.0484820 -0.7116105 -0.6958813 0.0967453 0.7079370 -0.6958816 0.1207228 -0.6981697 -0.6958836 0.1682412 0.6920898 -0.6958832 0.1917245 -0.6775691 -0.6958825 0.2380078 0.6691438 -0.6958821 0.2607578 -0.6500136 -0.6958823 0.3053361 0.6393295 -0.6958828 0.3271161 -0.6157873 -0.6958820 0.3695324 0.6029562 -0.6958825 0.3901171 -0.5752430 -0.6958836 0.4299321 0.5603949 -0.6958823 0.4491162 -0.5287978 -0.6958815 0.4859237 0.5120832 -0.6958827 0.5035057 -0.4769219 -0.6958828 0.5369289 0.4585171 -0.6958822 0.5527297 -0.4201566 -0.6958830 0.5824219 0.4002441 -0.6958822 0.5962824 -0.3590789 -0.6958821 0.6219409 0.3378662 -0.6958831 0.6337137 -0.2943131 -0.6958820 0.6550786 0.2720229 -0.6958824 0.6646437 -0.2265302 -0.6958832 0.6814915 0.2033880 -0.6958832 0.6887524 -0.1564265 -0.6958831 0.7009119 0.1326646 -0.6958818 0.7057965 -0.0847112 -0.6958811 0.7131434 0.0605742 -0.6958816 0.7155974 -0.0121298 -0.6958842 0.7180516 0.0121298 0.6958842 -0.7180516 -0.0605742 0.6958816 -0.7155974 0.0847112 0.6958811 -0.7131434 -0.1326646 0.6958818 -0.7057965 0.1564265 0.6958831 -0.7009119 -0.2033880 0.6958832 -0.6887524 0.2265302 0.6958832 -0.6814915 -0.2720229 0.6958824 -0.6646437 0.2943131 0.6958820 -0.6550786 -0.3378662 0.6958831 -0.6337137 0.3590789 0.6958821 -0.6219409 -0.4002441 0.6958822 -0.5962824 0.4201566 0.6958830 -0.5824219 -0.4585171 0.6958822 -0.5527297 0.4769219 0.6958828 -0.5369289 -0.5120832 0.6958827 -0.5035057 0.5287978 0.6958815 -0.4859237 -0.5603949 0.6958823 -0.4491162 0.5752430 0.6958836 -0.4299321 -0.6029562 0.6958825 -0.3901171 0.6157873 0.6958820 -0.3695324 -0.6393295 0.6958828 -0.3271161 0.6500136 0.6958823 -0.3053361 -0.6691438 0.6958821 -0.2607578 0.6775691 0.6958825 -0.2380078 -0.6920898 0.6958832 -0.1917245 0.6981697 0.6958836 -0.1682412 -0.7079370 0.6958816 -0.1207228 0.7116105 0.6958813 -0.0967453 -0.7165166 0.6958832 -0.0484820 0.7177460 0.6958826 -0.0242529 -0.7177460 0.6958826 0.0242529 0.7165166 0.6958832 0.0484820 -0.7116105 0.6958813 0.0967453 0.7079369 0.6958818 0.1207220 -0.6981697 0.6958836 0.1682412 0.6920902 0.6958826 0.1917250 -0.6775691 0.6958825 0.2380078 0.6691431 0.6958825 0.2607586 -0.6500136 0.6958823 0.3053361 0.6393295 0.6958828 0.3271161 -0.6157878 0.6958826 0.3695305 0.6029562 0.6958825 0.3901171 -0.5752437 0.6958824 0.4299330 0.5603949 0.6958823 0.4491162 -0.5287958 0.6958822 0.4859249 0.5120832 0.6958827 0.5035057 -0.4769219 0.6958828 0.5369289 0.4585171 0.6958822 0.5527297 -0.4201566 0.6958830 0.5824219 0.4002441 0.6958822 0.5962824 -0.3590789 0.6958821 0.6219409 0.3378662 0.6958831 0.6337137 -0.2943156 0.6958830 0.6550765 0.2720229 0.6958824 0.6646437 -0.2265306 0.6958812 0.6814934 0.2033880 0.6958832 0.6887524 -0.1564231 0.6958841 0.7009117 0.1326646 0.6958818 0.7057965 -0.0847112 0.6958811 0.7131434 0.0605742 0.6958816 0.7155974 -0.0121298 0.6958842 0.7180516 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61 62 63 64 63 65 64 64 65 66 65 67 66 66 67 68 67 69 68 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 99 98 98 99 100 99 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 123 122 121

-
-
-
- - - - 5680.9527559 1190.9448819 510.1185039 5311.2165354 1072.8346457 699.2960630 5311.2165354 1190.9448819 699.2960630 5680.9527559 1072.8346457 510.1185039 5680.9527559 1072.8346457 510.1185039 5680.9527559 1190.9448819 510.1185039 5311.2165354 1072.8346457 699.2960630 5311.2165354 1190.9448819 699.2960630 6067.9291339 1190.9448819 359.3170866 6067.9291339 1072.8346457 359.3170866 6067.9291339 1072.8346457 359.3170866 6067.9291339 1190.9448819 359.3170866 4962.5157480 1072.8346457 924.9086614 4962.5157480 1190.9448819 924.9086614 4962.5157480 1072.8346457 924.9086614 4962.5157480 1190.9448819 924.9086614 6468.1811024 1190.9448819 248.4393307 6468.1811024 1072.8346457 248.4393307 6468.1811024 1072.8346457 248.4393307 6468.1811024 1190.9448819 248.4393307 4638.4291339 1072.8346457 1184.6409449 4638.4291339 1190.9448819 1184.6409449 4638.4291339 1072.8346457 1184.6409449 4638.4291339 1190.9448819 1184.6409449 6877.5944882 1190.9448819 178.6232677 6877.5944882 1072.8346457 178.6232677 6877.5944882 1072.8346457 178.6232677 6877.5944882 1190.9448819 178.6232677 4342.2795276 1072.8346457 1475.8279528 4342.2795276 1190.9448819 1475.8279528 4342.2795276 1072.8346457 1475.8279528 4342.2795276 1190.9448819 1475.8279528 7291.9685039 1190.9448819 150.5849213 7291.9685039 1072.8346457 150.5849213 7291.9685039 1072.8346457 150.5849213 7291.9685039 1190.9448819 150.5849213 4077.1102362 1190.9448819 1795.4822835 4077.1102362 1072.8346457 1795.4822835 4077.1102362 1190.9448819 1795.4822835 4077.1102362 1072.8346457 1795.4822835 7707.0551181 1190.9448819 164.6119685 7707.0551181 1072.8346457 164.6119685 7707.0551181 1072.8346457 164.6119685 7707.0551181 1190.9448819 164.6119685 3845.6417323 1190.9448819 2140.3228346 3845.6417323 1072.8346457 2140.3228346 3845.6417323 1190.9448819 2140.3228346 3845.6417323 1072.8346457 2140.3228346 8118.5905512 1190.9448819 220.5607087 8118.5905512 1072.8346457 220.5607087 8118.5905512 1072.8346457 220.5607087 8118.5905512 1190.9448819 220.5607087 3650.2468504 1190.9448819 2506.8118110 3650.2468504 1072.8346457 2506.8118110 3650.2468504 1190.9448819 2506.8118110 3650.2468504 1072.8346457 2506.8118110 8522.3582677 1190.9448819 317.8571260 8522.3582677 1072.8346457 317.8571260 8522.3582677 1072.8346457 317.8571260 8522.3582677 1190.9448819 317.8571260 3492.9311024 1190.9448819 2891.1881890 3492.9311024 1072.8346457 2891.1881890 3492.9311024 1190.9448819 2891.1881890 3492.9311024 1072.8346457 2891.1881890 8914.2086614 1190.9448819 455.5023622 8914.2086614 1072.8346457 455.5023622 8914.2086614 1072.8346457 455.5023622 8914.2086614 1190.9448819 455.5023622 3375.3090551 1190.9448819 3289.5074803 3375.3090551 1072.8346457 3289.5074803 3375.3090551 1190.9448819 3289.5074803 3375.3090551 1072.8346457 3289.5074803 9290.1259843 1190.9448819 632.0846457 9290.1259843 1072.8346457 632.0846457 9290.1259843 1072.8346457 632.0846457 9290.1259843 1190.9448819 632.0846457 3298.5877953 1190.9448819 3697.6830709 3298.5877953 1072.8346457 3697.6830709 3298.5877953 1190.9448819 3697.6830709 3298.5877953 1072.8346457 3697.6830709 9646.2440945 1190.9448819 845.7913386 9646.2440945 1072.8346457 845.7913386 9646.2440945 1072.8346457 845.7913386 9646.2440945 1190.9448819 845.7913386 3263.5551181 1190.9448819 4111.5275591 3263.5551181 1072.8346457 4111.5275591 3263.5551181 1190.9448819 4111.5275591 3263.5551181 1072.8346457 4111.5275591 9978.9212598 1190.9448819 1094.4299213 9978.9212598 1072.8346457 1094.4299213 9978.9212598 1072.8346457 1094.4299213 9978.9212598 1190.9448819 1094.4299213 3270.5692913 1190.9448819 4526.7913386 3270.5692913 1072.8346457 4526.7913386 3270.5692913 1190.9448819 4526.7913386 3270.5692913 1072.8346457 4526.7913386 10284.7322835 1190.9448819 1375.4492126 10284.7322835 1072.8346457 1375.4492126 10284.7322835 1072.8346457 1375.4492126 10284.7322835 1190.9448819 1375.4492126 3319.5598425 1190.9448819 4939.2125984 3319.5598425 1072.8346457 4939.2125984 3319.5598425 1190.9448819 4939.2125984 3319.5598425 1072.8346457 4939.2125984 10560.5472441 1072.8346457 1685.9645669 10560.5472441 1190.9448819 1685.9645669 10560.5472441 1190.9448819 1685.9645669 10560.5472441 1072.8346457 1685.9645669 3410.0228346 1190.9448819 5344.5669291 3410.0228346 1072.8346457 5344.5669291 3410.0228346 1190.9448819 5344.5669291 3410.0228346 1072.8346457 5344.5669291 10803.5314961 1072.8346457 2022.7909449 10803.5314961 1190.9448819 2022.7909449 10803.5314961 1190.9448819 2022.7909449 10803.5314961 1072.8346457 2022.7909449 3541.0303150 1190.9448819 5738.6850394 3541.0303150 1072.8346457 5738.6850394 3541.0303150 1190.9448819 5738.6850394 3541.0303150 1072.8346457 5738.6850394 11011.1929134 1072.8346457 2382.4712598 11011.1929134 1190.9448819 2382.4712598 11011.1929134 1190.9448819 2382.4712598 11011.1929134 1072.8346457 2382.4712598 3711.2385827 1190.9448819 6117.5275591 3711.2385827 1072.8346457 6117.5275591 3711.2385827 1190.9448819 6117.5275591 3711.2385827 1072.8346457 6117.5275591 11181.4015748 1072.8346457 2761.3157480 11181.4015748 1190.9448819 2761.3157480 11181.4015748 1190.9448819 2761.3157480 11181.4015748 1072.8346457 2761.3157480 3918.9000000 1190.9448819 6477.2086614 3918.9000000 1072.8346457 6477.2086614 3918.9000000 1190.9448819 6477.2086614 3918.9000000 1072.8346457 6477.2086614 11312.4094488 1072.8346457 3155.4350394 11312.4094488 1190.9448819 3155.4350394 11312.4094488 1190.9448819 3155.4350394 11312.4094488 1072.8346457 3155.4350394 4161.8858268 1190.9448819 6814.0354331 4161.8858268 1072.8346457 6814.0354331 4161.8858268 1190.9448819 6814.0354331 4161.8858268 1072.8346457 6814.0354331 11402.8740157 1072.8346457 3560.7862205 11402.8740157 1190.9448819 3560.7862205 11402.8740157 1190.9448819 3560.7862205 11402.8740157 1072.8346457 3560.7862205 4437.6968504 1190.9448819 7124.5511811 4437.6968504 1072.8346457 7124.5511811 4437.6968504 1190.9448819 7124.5511811 4437.6968504 1072.8346457 7124.5511811 11451.8622047 1072.8346457 3973.2086614 11451.8622047 1190.9448819 3973.2086614 11451.8622047 1190.9448819 3973.2086614 11451.8622047 1072.8346457 3973.2086614 4743.5118110 1072.8346457 7405.5708661 4743.5118110 1190.9448819 7405.5708661 4743.5118110 1190.9448819 7405.5708661 4743.5118110 1072.8346457 7405.5708661 11458.8779528 1072.8346457 4388.4724409 11458.8779528 1190.9448819 4388.4724409 11458.8779528 1190.9448819 4388.4724409 11458.8779528 1072.8346457 4388.4724409 5076.1850394 1072.8346457 7654.2086614 5076.1850394 1190.9448819 7654.2086614 5076.1850394 1190.9448819 7654.2086614 5076.1850394 1072.8346457 7654.2086614 11423.8425197 1072.8346457 4802.3188976 11423.8425197 1190.9448819 4802.3188976 11423.8425197 1190.9448819 4802.3188976 11423.8425197 1072.8346457 4802.3188976 5432.3070866 1072.8346457 7867.9133858 5432.3070866 1190.9448819 7867.9133858 5432.3070866 1190.9448819 7867.9133858 5432.3070866 1072.8346457 7867.9133858 11347.1220472 1072.8346457 5210.4921260 11347.1220472 1190.9448819 5210.4921260 11347.1220472 1190.9448819 5210.4921260 11347.1220472 1072.8346457 5210.4921260 5808.2244094 1072.8346457 8044.4960630 5808.2244094 1190.9448819 8044.4960630 5808.2244094 1190.9448819 8044.4960630 5808.2244094 1072.8346457 8044.4960630 11229.5000000 1072.8346457 5608.8110236 11229.5000000 1190.9448819 5608.8110236 11229.5000000 1190.9448819 5608.8110236 11229.5000000 1072.8346457 5608.8110236 6200.0748031 1072.8346457 8182.1417323 6200.0748031 1190.9448819 8182.1417323 6200.0748031 1190.9448819 8182.1417323 6200.0748031 1072.8346457 8182.1417323 11072.1850394 1072.8346457 5993.1889764 11072.1850394 1190.9448819 5993.1889764 11072.1850394 1190.9448819 5993.1889764 11072.1850394 1072.8346457 5993.1889764 6603.8385827 1072.8346457 8279.4409449 6603.8385827 1190.9448819 8279.4409449 6603.8385827 1190.9448819 8279.4409449 6603.8385827 1072.8346457 8279.4409449 10876.7913386 1072.8346457 6359.6771654 10876.7913386 1190.9448819 6359.6771654 10876.7913386 1190.9448819 6359.6771654 10876.7913386 1072.8346457 6359.6771654 7015.3779528 1072.8346457 8335.3897638 7015.3779528 1190.9448819 8335.3897638 7015.3779528 1190.9448819 8335.3897638 7015.3779528 1072.8346457 8335.3897638 10645.3188976 1072.8346457 6704.5196850 10645.3188976 1190.9448819 6704.5196850 10645.3188976 1190.9448819 6704.5196850 10645.3188976 1072.8346457 6704.5196850 7430.4606299 1072.8346457 8349.4133858 7430.4606299 1190.9448819 8349.4133858 7430.4606299 1190.9448819 8349.4133858 7430.4606299 1072.8346457 8349.4133858 10380.1535433 1072.8346457 7024.1732283 10380.1535433 1190.9448819 7024.1732283 10380.1535433 1190.9448819 7024.1732283 10380.1535433 1072.8346457 7024.1732283 7844.8385827 1072.8346457 8321.3779528 7844.8385827 1190.9448819 8321.3779528 7844.8385827 1190.9448819 8321.3779528 7844.8385827 1072.8346457 8321.3779528 10084.0039370 1190.9448819 7315.3582677 10084.0039370 1072.8346457 7315.3582677 10084.0039370 1190.9448819 7315.3582677 10084.0039370 1072.8346457 7315.3582677 8254.2519685 1072.8346457 8251.5590551 8254.2519685 1190.9448819 8251.5590551 8254.2519685 1190.9448819 8251.5590551 8254.2519685 1072.8346457 8251.5590551 9759.9173228 1190.9448819 7575.0905512 9759.9173228 1072.8346457 7575.0905512 9759.9173228 1190.9448819 7575.0905512 9759.9173228 1072.8346457 7575.0905512 8654.5000000 1072.8346457 8140.6811024 8654.5000000 1190.9448819 8140.6811024 8654.5000000 1190.9448819 8140.6811024 8654.5000000 1072.8346457 8140.6811024 9411.2165354 1190.9448819 7800.7047244 9411.2165354 1072.8346457 7800.7047244 9411.2165354 1190.9448819 7800.7047244 9411.2165354 1072.8346457 7800.7047244 9041.4803150 1072.8346457 7989.8818898 9041.4803150 1190.9448819 7989.8818898 9041.4803150 1190.9448819 7989.8818898 9041.4803150 1072.8346457 7989.8818898 - - - - - - - - - - -0.2943156 0.6958827 -0.6550768 -0.3590780 -0.6958825 -0.6219409 -0.3590780 0.6958825 -0.6219409 -0.2943156 -0.6958827 -0.6550768 0.2943156 0.6958827 0.6550768 0.2943156 -0.6958827 0.6550768 0.3590780 0.6958825 0.6219409 0.3590780 -0.6958825 0.6219409 -0.2265320 0.6958821 -0.6814920 -0.2265320 -0.6958821 -0.6814920 0.2265320 0.6958821 0.6814920 0.2265320 -0.6958821 0.6814920 -0.4201563 -0.6958825 -0.5824227 -0.4201563 0.6958825 -0.5824227 0.4201563 0.6958825 0.5824227 0.4201563 -0.6958825 0.5824227 -0.1564234 0.6958826 -0.7009131 -0.1564234 -0.6958826 -0.7009131 0.1564234 0.6958826 0.7009131 0.1564234 -0.6958826 0.7009131 -0.4769220 -0.6958829 -0.5369286 -0.4769220 0.6958829 -0.5369286 0.4769220 0.6958829 0.5369286 0.4769220 -0.6958829 0.5369286 -0.0847112 0.6958826 -0.7131420 -0.0847112 -0.6958826 -0.7131420 0.0847112 0.6958826 0.7131420 0.0847112 -0.6958826 0.7131420 -0.5287959 -0.6958820 -0.4859250 -0.5287959 0.6958820 -0.4859250 0.5287959 0.6958820 0.4859250 0.5287959 -0.6958820 0.4859250 -0.0121295 0.6958825 -0.7180532 -0.0121295 -0.6958825 -0.7180532 0.0121295 0.6958825 0.7180532 0.0121295 -0.6958825 0.7180532 -0.5752442 0.6958823 -0.4299325 -0.5752442 -0.6958823 -0.4299325 0.5752442 -0.6958823 0.4299325 0.5752442 0.6958823 0.4299325 0.0605773 0.6958824 -0.7155963 0.0605773 -0.6958824 -0.7155963 -0.0605773 0.6958824 0.7155963 -0.0605773 -0.6958824 0.7155963 -0.6157882 0.6958827 -0.3695298 -0.6157882 -0.6958827 -0.3695298 0.6157882 -0.6958827 0.3695298 0.6157882 0.6958827 0.3695298 0.1326619 0.6958826 -0.7057961 0.1326619 -0.6958826 -0.7057961 -0.1326619 0.6958826 0.7057961 -0.1326619 -0.6958826 0.7057961 -0.6500131 0.6958826 -0.3053364 -0.6500131 -0.6958826 -0.3053364 0.6500131 -0.6958826 0.3053364 0.6500131 0.6958826 0.3053364 0.2033854 0.6958824 -0.6887540 0.2033854 -0.6958824 -0.6887540 -0.2033854 0.6958824 0.6887540 -0.2033854 -0.6958824 0.6887540 -0.6775683 0.6958826 -0.2380097 -0.6775683 -0.6958826 -0.2380097 0.6775683 -0.6958826 0.2380097 0.6775683 0.6958826 0.2380097 0.2720215 0.6958827 -0.6646439 0.2720215 -0.6958827 -0.6646439 -0.2720215 0.6958827 0.6646439 -0.2720215 -0.6958827 0.6646439 -0.6981710 0.6958825 -0.1682402 -0.6981710 -0.6958825 -0.1682402 0.6981710 -0.6958825 0.1682402 0.6981710 0.6958825 0.1682402 0.3378686 0.6958818 -0.6337139 0.3378686 -0.6958818 -0.6337139 -0.3378686 0.6958818 0.6337139 -0.3378686 -0.6958818 0.6337139 -0.7116097 0.6958823 -0.0967437 -0.7116097 -0.6958823 -0.0967437 0.7116097 -0.6958823 0.0967437 0.7116097 0.6958823 0.0967437 0.4002453 0.6958834 -0.5962801 0.4002453 -0.6958834 -0.5962801 -0.4002453 0.6958834 0.5962801 -0.4002453 -0.6958834 0.5962801 -0.7177457 0.6958827 -0.0242551 -0.7177457 -0.6958827 -0.0242551 0.7177457 -0.6958827 0.0242551 0.7177457 0.6958827 0.0242551 0.4585174 0.6958816 -0.5527301 0.4585174 -0.6958816 -0.5527301 -0.4585174 0.6958816 0.5527301 -0.4585174 -0.6958816 0.5527301 -0.7165175 0.6958822 0.0484828 -0.7165175 -0.6958822 0.0484828 0.7165175 -0.6958822 -0.0484828 0.7165175 0.6958822 -0.0484828 0.5120830 0.6958832 -0.5035053 0.5120830 -0.6958832 -0.5035053 -0.5120830 0.6958832 0.5035053 -0.5120830 -0.6958832 0.5035053 -0.7079358 0.6958829 0.1207226 -0.7079358 -0.6958829 0.1207226 0.7079358 -0.6958829 -0.1207226 0.7079358 0.6958829 -0.1207226 0.5603944 -0.6958822 -0.4491170 0.5603944 0.6958822 -0.4491170 -0.5603944 -0.6958822 0.4491170 -0.5603944 0.6958822 0.4491170 -0.6920910 0.6958822 0.1917238 -0.6920910 -0.6958822 0.1917238 0.6920910 -0.6958822 -0.1917238 0.6920910 0.6958822 -0.1917238 0.6029559 -0.6958825 -0.3901175 0.6029559 0.6958825 -0.3901175 -0.6029559 -0.6958825 0.3901175 -0.6029559 0.6958825 0.3901175 -0.6691431 0.6958824 0.2607590 -0.6691431 -0.6958824 0.2607590 0.6691431 -0.6958824 -0.2607590 0.6691431 0.6958824 -0.2607590 0.6393295 -0.6958826 -0.3271164 0.6393295 0.6958826 -0.3271164 -0.6393295 -0.6958826 0.3271164 -0.6393295 0.6958826 0.3271164 -0.6393293 0.6958829 0.3271163 -0.6393293 -0.6958829 0.3271163 0.6393293 -0.6958829 -0.3271163 0.6393293 0.6958829 -0.3271163 0.6691431 -0.6958825 -0.2607586 0.6691431 0.6958825 -0.2607586 -0.6691431 -0.6958825 0.2607586 -0.6691431 0.6958825 0.2607586 -0.6029559 0.6958822 0.3901182 -0.6029559 -0.6958822 0.3901182 0.6029559 -0.6958822 -0.3901182 0.6029559 0.6958822 -0.3901182 0.6920899 -0.6958828 -0.1917255 0.6920899 0.6958828 -0.1917255 -0.6920899 -0.6958828 0.1917255 -0.6920899 0.6958828 0.1917255 -0.5603948 0.6958833 0.4491149 -0.5603948 -0.6958833 0.4491149 0.5603948 -0.6958833 -0.4491149 0.5603948 0.6958833 -0.4491149 0.7079370 -0.6958816 -0.1207225 0.7079370 0.6958816 -0.1207225 -0.7079370 -0.6958816 0.1207225 -0.7079370 0.6958816 0.1207225 -0.5120845 0.6958818 0.5035058 -0.5120845 -0.6958818 0.5035058 0.5120845 -0.6958818 -0.5035058 0.5120845 0.6958818 -0.5035058 0.7165165 -0.6958833 -0.0484819 0.7165165 0.6958833 -0.0484819 -0.7165165 -0.6958833 0.0484819 -0.7165165 0.6958833 0.0484819 -0.4585163 -0.6958827 0.5527296 -0.4585163 0.6958827 0.5527296 0.4585163 -0.6958827 -0.5527296 0.4585163 0.6958827 -0.5527296 0.7177468 -0.6958816 0.0242560 0.7177468 0.6958816 0.0242560 -0.7177468 -0.6958816 -0.0242560 -0.7177468 0.6958816 -0.0242560 -0.4002447 -0.6958820 0.5962822 -0.4002447 0.6958820 0.5962822 0.4002447 -0.6958820 -0.5962822 0.4002447 0.6958820 -0.5962822 0.7116088 -0.6958831 0.0967455 0.7116088 0.6958831 0.0967455 -0.7116088 -0.6958831 -0.0967455 -0.7116088 0.6958831 -0.0967455 -0.3378655 -0.6958829 0.6337144 -0.3378655 0.6958829 0.6337144 0.3378655 -0.6958829 -0.6337144 0.3378655 0.6958829 -0.6337144 0.6981712 -0.6958824 0.1682401 0.6981712 0.6958824 0.1682401 -0.6981712 -0.6958824 -0.1682401 -0.6981712 0.6958824 -0.1682401 -0.2720221 -0.6958827 0.6646437 -0.2720221 0.6958827 0.6646437 0.2720221 -0.6958827 -0.6646437 0.2720221 0.6958827 -0.6646437 0.6775683 -0.6958829 0.2380086 0.6775683 0.6958829 0.2380086 -0.6775683 -0.6958829 -0.2380086 -0.6775683 0.6958829 -0.2380086 -0.2033885 -0.6958833 0.6887522 -0.2033885 0.6958833 0.6887522 0.2033885 -0.6958833 -0.6887522 0.2033885 0.6958833 -0.6887522 0.6500140 -0.6958824 0.3053349 0.6500140 0.6958824 0.3053349 -0.6500140 -0.6958824 -0.3053349 -0.6500140 0.6958824 -0.3053349 -0.1326648 -0.6958816 0.7057966 -0.1326648 0.6958816 0.7057966 0.1326648 -0.6958816 -0.7057966 0.1326648 0.6958816 -0.7057966 0.6157881 -0.6958819 0.3695313 0.6157881 0.6958819 0.3695313 -0.6157881 -0.6958819 -0.3695313 -0.6157881 0.6958819 -0.3695313 -0.0605741 -0.6958817 0.7155973 -0.0605741 0.6958817 0.7155973 0.0605741 -0.6958817 -0.7155973 0.0605741 0.6958817 -0.7155973 0.5752434 -0.6958835 0.4299316 0.5752434 0.6958835 0.4299316 -0.5752434 -0.6958835 -0.4299316 -0.5752434 0.6958835 -0.4299316 0.0121296 -0.6958842 0.7180516 0.0121296 0.6958842 0.7180516 -0.0121296 -0.6958842 -0.7180516 -0.0121296 0.6958842 -0.7180516 0.5287973 -0.6958810 0.4859250 0.5287973 0.6958810 0.4859250 -0.5287973 -0.6958810 -0.4859250 -0.5287973 0.6958810 -0.4859250 0.0847110 -0.6958810 0.7131435 0.0847110 0.6958810 0.7131435 -0.0847110 -0.6958810 -0.7131435 -0.0847110 0.6958810 -0.7131435 0.4769208 0.6958833 0.5369292 0.4769208 -0.6958833 0.5369292 -0.4769208 -0.6958833 -0.5369292 -0.4769208 0.6958833 -0.5369292 0.1564267 -0.6958830 0.7009119 0.1564267 0.6958830 0.7009119 -0.1564267 -0.6958830 -0.7009119 -0.1564267 0.6958830 -0.7009119 0.4201571 0.6958829 0.5824217 0.4201571 -0.6958829 0.5824217 -0.4201571 -0.6958829 -0.5824217 -0.4201571 0.6958829 -0.5824217 0.2265298 -0.6958834 0.6814915 0.2265298 0.6958834 0.6814915 -0.2265298 -0.6958834 -0.6814915 -0.2265298 0.6958834 -0.6814915 0.3590790 0.6958821 0.6219408 0.3590790 -0.6958821 0.6219408 -0.3590790 -0.6958821 -0.6219408 -0.3590790 0.6958821 -0.6219408 0.2943129 -0.6958818 0.6550789 0.2943129 0.6958818 0.6550789 -0.2943129 -0.6958818 -0.6550789 -0.2943129 0.6958818 -0.6550789 - - - - - - - - - - - - - - -

0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 9 8 9 16 17 13 20 21 20 13 12 24 17 16 17 24 25 21 28 29 28 21 20 32 25 24 25 32 33 36 28 37 28 36 29 40 33 32 33 40 41 44 37 45 37 44 36 48 41 40 41 48 49 52 45 53 45 52 44 56 49 48 49 56 57 60 53 61 53 60 52 64 57 56 57 64 65 68 61 69 61 68 60 72 65 64 65 72 73 76 69 77 69 76 68 80 73 72 73 80 81 84 77 85 77 84 76 88 81 80 81 88 89 92 85 93 85 92 84 96 89 88 89 96 97 100 93 101 93 100 92 96 104 97 104 96 105 108 101 109 101 108 100 105 112 104 112 105 113 116 109 117 109 116 108 113 120 112 120 113 121 124 117 125 117 124 116 121 128 120 128 121 129 132 125 133 125 132 124 129 136 128 136 129 137 140 133 141 133 140 132 137 144 136 144 137 145 148 141 149 141 148 140 145 152 144 152 145 153 156 148 149 148 156 157 153 160 152 160 153 161 164 157 156 157 164 165 161 168 160 168 161 169 172 165 164 165 172 173 169 176 168 176 169 177 180 173 172 173 180 181 177 184 176 184 177 185 188 181 180 181 188 189 185 192 184 192 185 193 196 189 188 189 196 197 193 200 192 200 193 201 204 197 196 197 204 205 201 208 200 208 201 209 212 205 204 205 212 213 209 216 208 216 209 217 220 213 212 213 220 221 216 224 225 224 216 217 228 221 220 221 228 229 225 232 233 232 225 224 236 229 228 229 236 237 233 240 241 240 233 232 244 237 236 237 244 245 241 245 244 245 241 240

-
- - -

4 5 6 7 6 5 10 11 4 5 4 11 6 7 14 15 14 7 18 19 10 11 10 19 14 15 22 23 22 15 26 27 18 19 18 27 22 23 30 31 30 23 34 35 26 27 26 35 31 38 30 39 30 38 42 43 34 35 34 43 38 46 39 47 39 46 50 51 42 43 42 51 46 54 47 55 47 54 58 59 50 51 50 59 54 62 55 63 55 62 66 67 58 59 58 67 62 70 63 71 63 70 74 75 66 67 66 75 70 78 71 79 71 78 82 83 74 75 74 83 78 86 79 87 79 86 90 91 82 83 82 91 86 94 87 95 87 94 98 99 90 91 90 99 94 102 95 103 95 102 106 99 107 98 107 99 102 110 103 111 103 110 114 106 115 107 115 106 110 118 111 119 111 118 122 114 123 115 123 114 118 126 119 127 119 126 130 122 131 123 131 122 126 134 127 135 127 134 138 130 139 131 139 130 134 142 135 143 135 142 146 138 147 139 147 138 142 150 143 151 143 150 154 146 155 147 155 146 158 159 150 151 150 159 162 154 163 155 163 154 166 167 158 159 158 167 170 162 171 163 171 162 174 175 166 167 166 175 178 170 179 171 179 170 182 183 174 175 174 183 186 178 187 179 187 178 190 191 182 183 182 191 194 186 195 187 195 186 198 199 190 191 190 199 202 194 203 195 203 194 206 207 198 199 198 207 210 202 211 203 211 202 214 215 206 207 206 215 218 210 219 211 219 210 222 223 214 215 214 223 218 219 226 227 226 219 230 231 222 223 222 231 226 227 234 235 234 227 238 239 230 231 230 239 234 235 242 243 242 235 246 247 238 239 238 247 242 243 246 247 246 243

-
-
-
- - - - 6877.5944882 1190.9448819 178.6232677 7707.0551181 1190.9448819 164.6119685 7291.9685039 1190.9448819 150.5849213 8118.5905512 1190.9448819 220.5607087 6468.1811024 1190.9448819 248.4393307 8522.3582677 1190.9448819 317.8571260 6067.9291339 1190.9448819 359.3170866 8914.2086614 1190.9448819 455.5023622 5680.9527559 1190.9448819 510.1185039 9290.1259843 1190.9448819 632.0846457 5311.2165354 1190.9448819 699.2960630 9646.2440945 1190.9448819 845.7913386 4962.5157480 1190.9448819 924.9086614 9978.9212598 1190.9448819 1094.4299213 4638.4291339 1190.9448819 1184.6409449 10284.7322835 1190.9448819 1375.4492126 4342.2795276 1190.9448819 1475.8279528 10560.5472441 1190.9448819 1685.9645669 4077.1102362 1190.9448819 1795.4822835 10803.5314961 1190.9448819 2022.7909449 3845.6417323 1190.9448819 2140.3228346 11011.1929134 1190.9448819 2382.4712598 3650.2468504 1190.9448819 2506.8118110 11181.4015748 1190.9448819 2761.3157480 3492.9311024 1190.9448819 2891.1881890 11312.4094488 1190.9448819 3155.4350394 3375.3090551 1190.9448819 3289.5074803 11402.8740157 1190.9448819 3560.7862205 3298.5877953 1190.9448819 3697.6830709 11451.8622047 1190.9448819 3973.2086614 3263.5551181 1190.9448819 4111.5275591 11458.8779528 1190.9448819 4388.4724409 3270.5692913 1190.9448819 4526.7913386 11423.8425197 1190.9448819 4802.3188976 3319.5598425 1190.9448819 4939.2125984 11347.1220472 1190.9448819 5210.4921260 3410.0228346 1190.9448819 5344.5669291 11229.5000000 1190.9448819 5608.8110236 3541.0303150 1190.9448819 5738.6850394 11072.1850394 1190.9448819 5993.1889764 3711.2385827 1190.9448819 6117.5275591 10876.7913386 1190.9448819 6359.6771654 3918.9000000 1190.9448819 6477.2086614 10645.3188976 1190.9448819 6704.5196850 4161.8858268 1190.9448819 6814.0354331 10380.1535433 1190.9448819 7024.1732283 4437.6968504 1190.9448819 7124.5511811 10084.0039370 1190.9448819 7315.3582677 4743.5118110 1190.9448819 7405.5708661 9759.9173228 1190.9448819 7575.0905512 5076.1850394 1190.9448819 7654.2086614 9411.2165354 1190.9448819 7800.7047244 5432.3070866 1190.9448819 7867.9133858 9041.4803150 1190.9448819 7989.8818898 5808.2244094 1190.9448819 8044.4960630 8654.5000000 1190.9448819 8140.6811024 6200.0748031 1190.9448819 8182.1417323 8254.2519685 1190.9448819 8251.5590551 6603.8385827 1190.9448819 8279.4409449 7844.8385827 1190.9448819 8321.3779528 7015.3779528 1190.9448819 8335.3897638 7430.4606299 1190.9448819 8349.4133858 7430.4606299 1190.9448819 8349.4133858 7015.3779528 1190.9448819 8335.3897638 7844.8385827 1190.9448819 8321.3779528 6603.8385827 1190.9448819 8279.4409449 8254.2519685 1190.9448819 8251.5590551 6200.0748031 1190.9448819 8182.1417323 8654.5000000 1190.9448819 8140.6811024 5808.2244094 1190.9448819 8044.4960630 9041.4803150 1190.9448819 7989.8818898 5432.3070866 1190.9448819 7867.9133858 9411.2165354 1190.9448819 7800.7047244 5076.1850394 1190.9448819 7654.2086614 9759.9173228 1190.9448819 7575.0905512 4743.5118110 1190.9448819 7405.5708661 10084.0039370 1190.9448819 7315.3582677 4437.6968504 1190.9448819 7124.5511811 10380.1535433 1190.9448819 7024.1732283 4161.8858268 1190.9448819 6814.0354331 10645.3188976 1190.9448819 6704.5196850 3918.9000000 1190.9448819 6477.2086614 10876.7913386 1190.9448819 6359.6771654 3711.2385827 1190.9448819 6117.5275591 11072.1850394 1190.9448819 5993.1889764 3541.0303150 1190.9448819 5738.6850394 11229.5000000 1190.9448819 5608.8110236 3410.0228346 1190.9448819 5344.5669291 11347.1220472 1190.9448819 5210.4921260 3319.5598425 1190.9448819 4939.2125984 11423.8425197 1190.9448819 4802.3188976 3270.5692913 1190.9448819 4526.7913386 11458.8779528 1190.9448819 4388.4724409 3263.5551181 1190.9448819 4111.5275591 11451.8622047 1190.9448819 3973.2086614 3298.5877953 1190.9448819 3697.6830709 11402.8740157 1190.9448819 3560.7862205 3375.3090551 1190.9448819 3289.5074803 11312.4094488 1190.9448819 3155.4350394 3492.9311024 1190.9448819 2891.1881890 11181.4015748 1190.9448819 2761.3157480 3650.2468504 1190.9448819 2506.8118110 11011.1929134 1190.9448819 2382.4712598 3845.6417323 1190.9448819 2140.3228346 10803.5314961 1190.9448819 2022.7909449 4077.1102362 1190.9448819 1795.4822835 10560.5472441 1190.9448819 1685.9645669 4342.2795276 1190.9448819 1475.8279528 10284.7322835 1190.9448819 1375.4492126 4638.4291339 1190.9448819 1184.6409449 9978.9212598 1190.9448819 1094.4299213 4962.5157480 1190.9448819 924.9086614 9646.2440945 1190.9448819 845.7913386 5311.2165354 1190.9448819 699.2960630 9290.1259843 1190.9448819 632.0846457 5680.9527559 1190.9448819 510.1185039 8914.2086614 1190.9448819 455.5023622 6067.9291339 1190.9448819 359.3170866 8522.3582677 1190.9448819 317.8571260 6468.1811024 1190.9448819 248.4393307 8118.5905512 1190.9448819 220.5607087 6877.5944882 1190.9448819 178.6232677 7707.0551181 1190.9448819 164.6119685 7291.9685039 1190.9448819 150.5849213 - - - - - - - - - - -0.0847112 0.6958826 -0.7131420 0.0605773 0.6958824 -0.7155963 -0.0121295 0.6958825 -0.7180532 0.1326619 0.6958826 -0.7057961 -0.1564234 0.6958826 -0.7009131 0.2033854 0.6958824 -0.6887540 -0.2265320 0.6958821 -0.6814920 0.2720215 0.6958827 -0.6646439 -0.2943156 0.6958827 -0.6550768 0.3378686 0.6958818 -0.6337139 -0.3590780 0.6958825 -0.6219409 0.4002453 0.6958834 -0.5962801 -0.4201563 0.6958825 -0.5824227 0.4585174 0.6958816 -0.5527301 -0.4769220 0.6958829 -0.5369286 0.5120830 0.6958832 -0.5035053 -0.5287959 0.6958820 -0.4859250 0.5603944 0.6958822 -0.4491170 -0.5752442 0.6958823 -0.4299325 0.6029559 0.6958825 -0.3901175 -0.6157882 0.6958827 -0.3695298 0.6393295 0.6958826 -0.3271164 -0.6500131 0.6958826 -0.3053364 0.6691431 0.6958825 -0.2607586 -0.6775683 0.6958826 -0.2380097 0.6920899 0.6958828 -0.1917255 -0.6981710 0.6958825 -0.1682402 0.7079370 0.6958816 -0.1207225 -0.7116097 0.6958823 -0.0967437 0.7165165 0.6958833 -0.0484819 -0.7177457 0.6958827 -0.0242551 0.7177468 0.6958816 0.0242560 -0.7165175 0.6958822 0.0484828 0.7116088 0.6958831 0.0967455 -0.7079358 0.6958829 0.1207226 0.6981712 0.6958824 0.1682401 -0.6920910 0.6958822 0.1917238 0.6775683 0.6958829 0.2380086 -0.6691431 0.6958824 0.2607590 0.6500140 0.6958824 0.3053349 -0.6393293 0.6958829 0.3271163 0.6157881 0.6958819 0.3695313 -0.6029559 0.6958822 0.3901182 0.5752434 0.6958835 0.4299316 -0.5603948 0.6958833 0.4491149 0.5287973 0.6958810 0.4859250 -0.5120845 0.6958818 0.5035058 0.4769208 0.6958833 0.5369292 -0.4585163 0.6958827 0.5527296 0.4201571 0.6958829 0.5824217 -0.4002447 0.6958820 0.5962822 0.3590790 0.6958821 0.6219408 -0.3378655 0.6958829 0.6337144 0.2943129 0.6958818 0.6550789 -0.2720221 0.6958827 0.6646437 0.2265298 0.6958834 0.6814915 -0.2033885 0.6958833 0.6887522 0.1564267 0.6958830 0.7009119 -0.1326648 0.6958816 0.7057966 0.0847110 0.6958810 0.7131435 -0.0605741 0.6958817 0.7155973 0.0121296 0.6958842 0.7180516 -0.0121296 -0.6958842 -0.7180516 0.0605741 -0.6958817 -0.7155973 -0.0847110 -0.6958810 -0.7131435 0.1326648 -0.6958816 -0.7057966 -0.1564267 -0.6958830 -0.7009119 0.2033885 -0.6958833 -0.6887522 -0.2265298 -0.6958834 -0.6814915 0.2720221 -0.6958827 -0.6646437 -0.2943129 -0.6958818 -0.6550789 0.3378655 -0.6958829 -0.6337144 -0.3590790 -0.6958821 -0.6219408 0.4002447 -0.6958820 -0.5962822 -0.4201571 -0.6958829 -0.5824217 0.4585163 -0.6958827 -0.5527296 -0.4769208 -0.6958833 -0.5369292 0.5120845 -0.6958818 -0.5035058 -0.5287973 -0.6958810 -0.4859250 0.5603948 -0.6958833 -0.4491149 -0.5752434 -0.6958835 -0.4299316 0.6029559 -0.6958822 -0.3901182 -0.6157881 -0.6958819 -0.3695313 0.6393293 -0.6958829 -0.3271163 -0.6500140 -0.6958824 -0.3053349 0.6691431 -0.6958824 -0.2607590 -0.6775683 -0.6958829 -0.2380086 0.6920910 -0.6958822 -0.1917238 -0.6981712 -0.6958824 -0.1682401 0.7079358 -0.6958829 -0.1207226 -0.7116088 -0.6958831 -0.0967455 0.7165175 -0.6958822 -0.0484828 -0.7177468 -0.6958816 -0.0242560 0.7177457 -0.6958827 0.0242551 -0.7165165 -0.6958833 0.0484819 0.7116097 -0.6958823 0.0967437 -0.7079370 -0.6958816 0.1207225 0.6981710 -0.6958825 0.1682402 -0.6920899 -0.6958828 0.1917255 0.6775683 -0.6958826 0.2380097 -0.6691431 -0.6958825 0.2607586 0.6500131 -0.6958826 0.3053364 -0.6393295 -0.6958826 0.3271164 0.6157882 -0.6958827 0.3695298 -0.6029559 -0.6958825 0.3901175 0.5752442 -0.6958823 0.4299325 -0.5603944 -0.6958822 0.4491170 0.5287959 -0.6958820 0.4859250 -0.5120830 -0.6958832 0.5035053 0.4769220 -0.6958829 0.5369286 -0.4585174 -0.6958816 0.5527301 0.4201563 -0.6958825 0.5824227 -0.4002453 -0.6958834 0.5962801 0.3590780 -0.6958825 0.6219409 -0.3378686 -0.6958818 0.6337139 0.2943156 -0.6958827 0.6550768 -0.2720215 -0.6958827 0.6646439 0.2265320 -0.6958821 0.6814920 -0.2033854 -0.6958824 0.6887540 0.1564234 -0.6958826 0.7009131 -0.1326619 -0.6958826 0.7057961 0.0847112 -0.6958826 0.7131420 -0.0605773 -0.6958824 0.7155963 0.0121295 -0.6958825 0.7180532 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61

-
- - -

62 63 64 63 65 64 64 65 66 65 67 66 66 67 68 67 69 68 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 99 98 98 99 100 99 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 123 122 121

-
-
-
- - - - 7707.0551181 1072.8346457 164.6119685 6877.5944882 1072.8346457 178.6232677 7291.9685039 1072.8346457 150.5849213 8118.5905512 1072.8346457 220.5607087 6468.1811024 1072.8346457 248.4393307 8522.3582677 1072.8346457 317.8571260 6067.9291339 1072.8346457 359.3170866 8914.2086614 1072.8346457 455.5023622 5680.9527559 1072.8346457 510.1185039 9290.1259843 1072.8346457 632.0846457 5311.2165354 1072.8346457 699.2960630 9646.2440945 1072.8346457 845.7913386 4962.5157480 1072.8346457 924.9086614 9978.9212598 1072.8346457 1094.4299213 4638.4291339 1072.8346457 1184.6409449 10284.7322835 1072.8346457 1375.4492126 4342.2795276 1072.8346457 1475.8279528 10560.5472441 1072.8346457 1685.9645669 4077.1102362 1072.8346457 1795.4822835 10803.5314961 1072.8346457 2022.7909449 3845.6417323 1072.8346457 2140.3228346 11011.1929134 1072.8346457 2382.4712598 3650.2468504 1072.8346457 2506.8118110 11181.4015748 1072.8346457 2761.3157480 3492.9311024 1072.8346457 2891.1881890 11312.4094488 1072.8346457 3155.4350394 3375.3090551 1072.8346457 3289.5074803 11402.8740157 1072.8346457 3560.7862205 3298.5877953 1072.8346457 3697.6830709 11451.8622047 1072.8346457 3973.2086614 3263.5551181 1072.8346457 4111.5275591 11458.8779528 1072.8346457 4388.4724409 3270.5692913 1072.8346457 4526.7913386 11423.8425197 1072.8346457 4802.3188976 3319.5598425 1072.8346457 4939.2125984 11347.1220472 1072.8346457 5210.4921260 3410.0228346 1072.8346457 5344.5669291 11229.5000000 1072.8346457 5608.8110236 3541.0303150 1072.8346457 5738.6850394 11072.1850394 1072.8346457 5993.1889764 3711.2385827 1072.8346457 6117.5275591 10876.7913386 1072.8346457 6359.6771654 3918.9000000 1072.8346457 6477.2086614 10645.3188976 1072.8346457 6704.5196850 4161.8858268 1072.8346457 6814.0354331 10380.1535433 1072.8346457 7024.1732283 4437.6968504 1072.8346457 7124.5511811 10084.0039370 1072.8346457 7315.3582677 4743.5118110 1072.8346457 7405.5708661 9759.9173228 1072.8346457 7575.0905512 5076.1850394 1072.8346457 7654.2086614 9411.2165354 1072.8346457 7800.7047244 5432.3070866 1072.8346457 7867.9133858 9041.4803150 1072.8346457 7989.8818898 5808.2244094 1072.8346457 8044.4960630 8654.5000000 1072.8346457 8140.6811024 6200.0748031 1072.8346457 8182.1417323 8254.2519685 1072.8346457 8251.5590551 6603.8385827 1072.8346457 8279.4409449 7844.8385827 1072.8346457 8321.3779528 7015.3779528 1072.8346457 8335.3897638 7430.4606299 1072.8346457 8349.4133858 7430.4606299 1072.8346457 8349.4133858 7844.8385827 1072.8346457 8321.3779528 7015.3779528 1072.8346457 8335.3897638 6603.8385827 1072.8346457 8279.4409449 8254.2519685 1072.8346457 8251.5590551 6200.0748031 1072.8346457 8182.1417323 8654.5000000 1072.8346457 8140.6811024 5808.2244094 1072.8346457 8044.4960630 9041.4803150 1072.8346457 7989.8818898 5432.3070866 1072.8346457 7867.9133858 9411.2165354 1072.8346457 7800.7047244 5076.1850394 1072.8346457 7654.2086614 9759.9173228 1072.8346457 7575.0905512 4743.5118110 1072.8346457 7405.5708661 10084.0039370 1072.8346457 7315.3582677 4437.6968504 1072.8346457 7124.5511811 10380.1535433 1072.8346457 7024.1732283 4161.8858268 1072.8346457 6814.0354331 10645.3188976 1072.8346457 6704.5196850 3918.9000000 1072.8346457 6477.2086614 10876.7913386 1072.8346457 6359.6771654 3711.2385827 1072.8346457 6117.5275591 11072.1850394 1072.8346457 5993.1889764 3541.0303150 1072.8346457 5738.6850394 11229.5000000 1072.8346457 5608.8110236 3410.0228346 1072.8346457 5344.5669291 11347.1220472 1072.8346457 5210.4921260 3319.5598425 1072.8346457 4939.2125984 11423.8425197 1072.8346457 4802.3188976 3270.5692913 1072.8346457 4526.7913386 11458.8779528 1072.8346457 4388.4724409 3263.5551181 1072.8346457 4111.5275591 11451.8622047 1072.8346457 3973.2086614 3298.5877953 1072.8346457 3697.6830709 11402.8740157 1072.8346457 3560.7862205 3375.3090551 1072.8346457 3289.5074803 11312.4094488 1072.8346457 3155.4350394 3492.9311024 1072.8346457 2891.1881890 11181.4015748 1072.8346457 2761.3157480 3650.2468504 1072.8346457 2506.8118110 11011.1929134 1072.8346457 2382.4712598 3845.6417323 1072.8346457 2140.3228346 10803.5314961 1072.8346457 2022.7909449 4077.1102362 1072.8346457 1795.4822835 10560.5472441 1072.8346457 1685.9645669 4342.2795276 1072.8346457 1475.8279528 10284.7322835 1072.8346457 1375.4492126 4638.4291339 1072.8346457 1184.6409449 9978.9212598 1072.8346457 1094.4299213 4962.5157480 1072.8346457 924.9086614 9646.2440945 1072.8346457 845.7913386 5311.2165354 1072.8346457 699.2960630 9290.1259843 1072.8346457 632.0846457 5680.9527559 1072.8346457 510.1185039 8914.2086614 1072.8346457 455.5023622 6067.9291339 1072.8346457 359.3170866 8522.3582677 1072.8346457 317.8571260 6468.1811024 1072.8346457 248.4393307 8118.5905512 1072.8346457 220.5607087 6877.5944882 1072.8346457 178.6232677 7707.0551181 1072.8346457 164.6119685 7291.9685039 1072.8346457 150.5849213 - - - - - - - - - - 0.0605773 -0.6958824 -0.7155963 -0.0847112 -0.6958826 -0.7131420 -0.0121295 -0.6958825 -0.7180532 0.1326619 -0.6958826 -0.7057961 -0.1564234 -0.6958826 -0.7009131 0.2033854 -0.6958824 -0.6887540 -0.2265320 -0.6958821 -0.6814920 0.2720215 -0.6958827 -0.6646439 -0.2943156 -0.6958827 -0.6550768 0.3378686 -0.6958818 -0.6337139 -0.3590780 -0.6958825 -0.6219409 0.4002453 -0.6958834 -0.5962801 -0.4201563 -0.6958825 -0.5824227 0.4585174 -0.6958816 -0.5527301 -0.4769220 -0.6958829 -0.5369286 0.5120830 -0.6958832 -0.5035053 -0.5287959 -0.6958820 -0.4859250 0.5603944 -0.6958822 -0.4491170 -0.5752442 -0.6958823 -0.4299325 0.6029559 -0.6958825 -0.3901175 -0.6157882 -0.6958827 -0.3695298 0.6393295 -0.6958826 -0.3271164 -0.6500131 -0.6958826 -0.3053364 0.6691431 -0.6958825 -0.2607586 -0.6775683 -0.6958826 -0.2380097 0.6920899 -0.6958828 -0.1917255 -0.6981710 -0.6958825 -0.1682402 0.7079370 -0.6958816 -0.1207225 -0.7116097 -0.6958823 -0.0967437 0.7165165 -0.6958833 -0.0484819 -0.7177457 -0.6958827 -0.0242551 0.7177468 -0.6958816 0.0242560 -0.7165175 -0.6958822 0.0484828 0.7116088 -0.6958831 0.0967455 -0.7079358 -0.6958829 0.1207226 0.6981712 -0.6958824 0.1682401 -0.6920910 -0.6958822 0.1917238 0.6775683 -0.6958829 0.2380086 -0.6691431 -0.6958824 0.2607590 0.6500140 -0.6958824 0.3053349 -0.6393293 -0.6958829 0.3271163 0.6157881 -0.6958819 0.3695313 -0.6029559 -0.6958822 0.3901182 0.5752434 -0.6958835 0.4299316 -0.5603948 -0.6958833 0.4491149 0.5287973 -0.6958810 0.4859250 -0.5120845 -0.6958818 0.5035058 0.4769208 -0.6958833 0.5369292 -0.4585163 -0.6958827 0.5527296 0.4201571 -0.6958829 0.5824217 -0.4002447 -0.6958820 0.5962822 0.3590790 -0.6958821 0.6219408 -0.3378655 -0.6958829 0.6337144 0.2943129 -0.6958818 0.6550789 -0.2720221 -0.6958827 0.6646437 0.2265298 -0.6958834 0.6814915 -0.2033885 -0.6958833 0.6887522 0.1564267 -0.6958830 0.7009119 -0.1326648 -0.6958816 0.7057966 0.0847110 -0.6958810 0.7131435 -0.0605741 -0.6958817 0.7155973 0.0121296 -0.6958842 0.7180516 -0.0121296 0.6958842 -0.7180516 -0.0847110 0.6958810 -0.7131435 0.0605741 0.6958817 -0.7155973 0.1326648 0.6958816 -0.7057966 -0.1564267 0.6958830 -0.7009119 0.2033885 0.6958833 -0.6887522 -0.2265298 0.6958834 -0.6814915 0.2720221 0.6958827 -0.6646437 -0.2943129 0.6958818 -0.6550789 0.3378655 0.6958829 -0.6337144 -0.3590790 0.6958821 -0.6219408 0.4002447 0.6958820 -0.5962822 -0.4201571 0.6958829 -0.5824217 0.4585163 0.6958827 -0.5527296 -0.4769208 0.6958833 -0.5369292 0.5120845 0.6958818 -0.5035058 -0.5287973 0.6958810 -0.4859250 0.5603948 0.6958833 -0.4491149 -0.5752434 0.6958835 -0.4299316 0.6029559 0.6958822 -0.3901182 -0.6157881 0.6958819 -0.3695313 0.6393293 0.6958829 -0.3271163 -0.6500140 0.6958824 -0.3053349 0.6691431 0.6958824 -0.2607590 -0.6775683 0.6958829 -0.2380086 0.6920910 0.6958822 -0.1917238 -0.6981712 0.6958824 -0.1682401 0.7079358 0.6958829 -0.1207226 -0.7116088 0.6958831 -0.0967455 0.7165175 0.6958822 -0.0484828 -0.7177468 0.6958816 -0.0242560 0.7177457 0.6958827 0.0242551 -0.7165165 0.6958833 0.0484819 0.7116097 0.6958823 0.0967437 -0.7079370 0.6958816 0.1207225 0.6981710 0.6958825 0.1682402 -0.6920899 0.6958828 0.1917255 0.6775683 0.6958826 0.2380097 -0.6691431 0.6958825 0.2607586 0.6500131 0.6958826 0.3053364 -0.6393295 0.6958826 0.3271164 0.6157882 0.6958827 0.3695298 -0.6029559 0.6958825 0.3901175 0.5752442 0.6958823 0.4299325 -0.5603944 0.6958822 0.4491170 0.5287959 0.6958820 0.4859250 -0.5120830 0.6958832 0.5035053 0.4769220 0.6958829 0.5369286 -0.4585174 0.6958816 0.5527301 0.4201563 0.6958825 0.5824227 -0.4002453 0.6958834 0.5962801 0.3590780 0.6958825 0.6219409 -0.3378686 0.6958818 0.6337139 0.2943156 0.6958827 0.6550768 -0.2720215 0.6958827 0.6646439 0.2265320 0.6958821 0.6814920 -0.2033854 0.6958824 0.6887540 0.1564234 0.6958826 0.7009131 -0.1326619 0.6958826 0.7057961 0.0847112 0.6958826 0.7131420 -0.0605773 0.6958824 0.7155963 0.0121295 0.6958825 0.7180532 - - - - - - - - - - - - - - -

0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 24 25 26 26 25 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 36 35 37 36 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 47 46 47 48 48 47 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 54 54 53 55 54 55 56 56 55 57 56 57 58 58 57 59 58 59 60 60 59 61

-
- - -

62 63 64 64 63 65 63 66 65 65 66 67 66 68 67 67 68 69 68 70 69 69 70 71 70 72 71 71 72 73 72 74 73 73 74 75 74 76 75 75 76 77 76 78 77 77 78 79 78 80 79 79 80 81 80 82 81 81 82 83 82 84 83 83 84 85 84 86 85 85 86 87 86 88 87 87 88 89 88 90 89 89 90 91 90 92 91 91 92 93 92 94 93 93 94 95 94 96 95 95 96 97 96 98 97 97 98 99 98 100 99 99 100 101 100 102 101 101 102 103 102 104 103 103 104 105 104 106 105 105 106 107 106 108 107 107 108 109 108 110 109 109 110 111 110 112 111 111 112 113 112 114 113 113 114 115 114 116 115 115 116 117 116 118 117 117 118 119 118 120 119 119 120 121 120 122 121 123 121 122

-
-
-
- - - - 2398.7007874 1190.9448819 5174.9094488 2050.0000000 1072.8346457 4949.2952756 2050.0000000 1190.9448819 4949.2952756 2398.7007874 1072.8346457 5174.9094488 2398.7007874 1072.8346457 5174.9094488 2398.7007874 1190.9448819 5174.9094488 2050.0000000 1072.8346457 4949.2952756 2050.0000000 1190.9448819 4949.2952756 -345.8394094 1190.9448819 4414.6102362 483.6224409 1190.9448819 4428.6220472 69.2468898 1190.9448819 4400.5866142 -757.3767717 1190.9448819 4470.5590551 893.0358268 1190.9448819 4498.4409449 -1161.1425197 1190.9448819 4567.8582677 1293.2846457 1190.9448819 4609.3188976 -1552.9933071 1190.9448819 4705.5039370 1680.2633858 1190.9448819 4760.1181102 -1928.9082677 1190.9448819 4882.0866142 -2285.0303150 1190.9448819 5095.7913386 -2617.7047244 1190.9448819 5344.4291339 2722.7881890 1190.9448819 5434.6417323 -2923.5177165 1190.9448819 5625.4488189 3018.9354331 1190.9448819 5725.8267717 -3199.3318898 1190.9448819 5935.9645669 3284.1043307 1190.9448819 6045.4842520 -3442.3161417 1190.9448819 6272.7913386 3515.5748031 1190.9448819 6390.3228346 -3649.9775591 1190.9448819 6632.4724409 3710.9696850 1190.9448819 6756.8110236 -3820.1854331 1190.9448819 7011.3149606 3868.2850394 1190.9448819 7141.1889764 -3951.1929134 1190.9448819 7405.4370079 3985.9055118 1190.9448819 7539.5078740 -4041.6574803 1190.9448819 7810.7874016 4062.6299213 1190.9448819 7947.6850394 -4090.6456693 1190.9448819 8223.2086614 4097.6614173 1190.9448819 8361.5275591 -4097.6614173 1190.9448819 8638.4724409 4090.6456693 1190.9448819 8776.7913386 -4062.6299213 1190.9448819 9052.3149606 4041.6574803 1190.9448819 9189.2125984 -3985.9055118 1190.9448819 9460.4921260 3951.1929134 1190.9448819 9594.5669291 -3868.2850394 1190.9448819 9858.8110236 3820.1854331 1190.9448819 9988.6850394 -3710.9696850 1190.9448819 10243.1889764 3649.9775591 1190.9448819 10367.5275591 -3515.5748031 1190.9448819 10609.6771654 3442.3161417 1190.9448819 10727.2086614 -3284.1043307 1190.9448819 10954.5196850 3199.3318898 1190.9448819 11064.0354331 -3018.9354331 1190.9448819 11274.1732283 2923.5177165 1190.9448819 11374.5511811 -2722.7881890 1190.9448819 11565.3582677 2617.7047244 1190.9448819 11655.5708661 -2398.7007874 1190.9448819 11825.0905512 2285.0303150 1190.9448819 11904.2086614 -2050.0000000 1190.9448819 12050.7047244 1928.9082677 1190.9448819 12117.9133858 -1680.2633858 1190.9448819 12239.8818898 1552.9933071 1190.9448819 12294.4960630 -1293.2846457 1190.9448819 12390.6850394 1161.1425197 1190.9448819 12432.1417323 -893.0358268 1190.9448819 12501.5590551 757.3767717 1190.9448819 12529.4409449 -483.6224409 1190.9448819 12571.3779528 345.8394094 1190.9448819 12585.3897638 -69.2468898 1190.9448819 12599.4133858 -69.2468898 1190.9448819 12599.4133858 -483.6224409 1190.9448819 12571.3779528 345.8394094 1190.9448819 12585.3897638 757.3767717 1190.9448819 12529.4409449 -893.0358268 1190.9448819 12501.5590551 1161.1425197 1190.9448819 12432.1417323 -1293.2846457 1190.9448819 12390.6850394 1552.9933071 1190.9448819 12294.4960630 -1680.2633858 1190.9448819 12239.8818898 1928.9082677 1190.9448819 12117.9133858 -2050.0000000 1190.9448819 12050.7047244 2285.0303150 1190.9448819 11904.2086614 -2398.7007874 1190.9448819 11825.0905512 2617.7047244 1190.9448819 11655.5708661 -2722.7881890 1190.9448819 11565.3582677 2923.5177165 1190.9448819 11374.5511811 -3018.9354331 1190.9448819 11274.1732283 3199.3318898 1190.9448819 11064.0354331 -3284.1043307 1190.9448819 10954.5196850 3442.3161417 1190.9448819 10727.2086614 -3515.5748031 1190.9448819 10609.6771654 3649.9775591 1190.9448819 10367.5275591 -3710.9696850 1190.9448819 10243.1889764 3820.1854331 1190.9448819 9988.6850394 -3868.2850394 1190.9448819 9858.8110236 3951.1929134 1190.9448819 9594.5669291 -3985.9055118 1190.9448819 9460.4921260 4041.6574803 1190.9448819 9189.2125984 -4062.6299213 1190.9448819 9052.3149606 4090.6456693 1190.9448819 8776.7913386 -4097.6614173 1190.9448819 8638.4724409 4097.6614173 1190.9448819 8361.5275591 -4090.6456693 1190.9448819 8223.2086614 4062.6299213 1190.9448819 7947.6850394 -4041.6574803 1190.9448819 7810.7874016 3985.9055118 1190.9448819 7539.5078740 -3951.1929134 1190.9448819 7405.4370079 3868.2850394 1190.9448819 7141.1889764 -3820.1854331 1190.9448819 7011.3149606 3710.9696850 1190.9448819 6756.8110236 -3649.9775591 1190.9448819 6632.4724409 3515.5748031 1190.9448819 6390.3228346 -3442.3161417 1190.9448819 6272.7913386 3284.1043307 1190.9448819 6045.4842520 -3199.3318898 1190.9448819 5935.9645669 3018.9354331 1190.9448819 5725.8267717 -2923.5177165 1190.9448819 5625.4488189 2722.7881890 1190.9448819 5434.6417323 -2617.7047244 1190.9448819 5344.4291339 -2285.0303150 1190.9448819 5095.7913386 -1928.9082677 1190.9448819 4882.0866142 1680.2633858 1190.9448819 4760.1181102 -1552.9933071 1190.9448819 4705.5039370 1293.2846457 1190.9448819 4609.3188976 -1161.1425197 1190.9448819 4567.8582677 893.0358268 1190.9448819 4498.4409449 -757.3767717 1190.9448819 4470.5590551 483.6224409 1190.9448819 4428.6220472 -345.8394094 1190.9448819 4414.6102362 69.2468898 1190.9448819 4400.5866142 2722.7881890 1072.8346457 5434.6417323 2722.7881890 1072.8346457 5434.6417323 1680.2633858 1072.8346457 4760.1181102 1680.2633858 1072.8346457 4760.1181102 -1552.9933071 1072.8346457 4705.5039370 -1161.1425197 1072.8346457 4567.8582677 -1161.1425197 1072.8346457 4567.8582677 -1552.9933071 1072.8346457 4705.5039370 -1928.9082677 1072.8346457 4882.0866142 -1928.9082677 1072.8346457 4882.0866142 -2285.0303150 1072.8346457 5095.7913386 -2285.0303150 1072.8346457 5095.7913386 -2617.7047244 1072.8346457 5344.4291339 -2617.7047244 1072.8346457 5344.4291339 -2923.5177165 1072.8346457 5625.4488189 -2923.5177165 1072.8346457 5625.4488189 -3199.3318898 1072.8346457 5935.9645669 -3199.3318898 1072.8346457 5935.9645669 -3442.3161417 1072.8346457 6272.7913386 -3442.3161417 1072.8346457 6272.7913386 -3649.9775591 1072.8346457 6632.4724409 -3649.9775591 1072.8346457 6632.4724409 -3820.1854331 1072.8346457 7011.3149606 -3820.1854331 1072.8346457 7011.3149606 -3951.1929134 1072.8346457 7405.4370079 -3951.1929134 1072.8346457 7405.4370079 -4041.6574803 1072.8346457 7810.7874016 -4041.6574803 1072.8346457 7810.7874016 -4090.6456693 1072.8346457 8223.2086614 -4090.6456693 1072.8346457 8223.2086614 -4097.6614173 1072.8346457 8638.4724409 -4097.6614173 1072.8346457 8638.4724409 -4062.6299213 1072.8346457 9052.3149606 -4062.6299213 1072.8346457 9052.3149606 -3985.9055118 1072.8346457 9460.4921260 -3985.9055118 1072.8346457 9460.4921260 -3868.2850394 1072.8346457 9858.8110236 -3868.2850394 1072.8346457 9858.8110236 -3710.9696850 1072.8346457 10243.1889764 -3710.9696850 1072.8346457 10243.1889764 -3515.5748031 1072.8346457 10609.6771654 -3515.5748031 1072.8346457 10609.6771654 -3284.1043307 1072.8346457 10954.5196850 -3284.1043307 1072.8346457 10954.5196850 -3018.9354331 1072.8346457 11274.1732283 -3018.9354331 1072.8346457 11274.1732283 -2722.7881890 1072.8346457 11565.3582677 -2722.7881890 1072.8346457 11565.3582677 -2398.7007874 1072.8346457 11825.0905512 -2398.7007874 1072.8346457 11825.0905512 -2050.0000000 1072.8346457 12050.7047244 -2050.0000000 1072.8346457 12050.7047244 -1680.2633858 1072.8346457 12239.8818898 -1680.2633858 1072.8346457 12239.8818898 -1293.2846457 1072.8346457 12390.6850394 -1293.2846457 1072.8346457 12390.6850394 -893.0358268 1072.8346457 12501.5590551 -893.0358268 1072.8346457 12501.5590551 -483.6224409 1072.8346457 12571.3779528 -483.6224409 1072.8346457 12571.3779528 -69.2468898 1072.8346457 12599.4133858 -69.2468898 1072.8346457 12599.4133858 345.8394094 1072.8346457 12585.3897638 345.8394094 1072.8346457 12585.3897638 757.3767717 1072.8346457 12529.4409449 757.3767717 1072.8346457 12529.4409449 1161.1425197 1072.8346457 12432.1417323 1161.1425197 1072.8346457 12432.1417323 1552.9933071 1072.8346457 12294.4960630 1552.9933071 1072.8346457 12294.4960630 1928.9082677 1072.8346457 12117.9133858 1928.9082677 1072.8346457 12117.9133858 2285.0303150 1072.8346457 11904.2086614 2285.0303150 1072.8346457 11904.2086614 2617.7047244 1072.8346457 11655.5708661 2617.7047244 1072.8346457 11655.5708661 2923.5177165 1072.8346457 11374.5511811 2923.5177165 1072.8346457 11374.5511811 3199.3318898 1072.8346457 11064.0354331 3199.3318898 1072.8346457 11064.0354331 3442.3161417 1072.8346457 10727.2086614 3442.3161417 1072.8346457 10727.2086614 3649.9775591 1072.8346457 10367.5275591 3649.9775591 1072.8346457 10367.5275591 3820.1854331 1072.8346457 9988.6850394 3820.1854331 1072.8346457 9988.6850394 3951.1929134 1072.8346457 9594.5669291 3951.1929134 1072.8346457 9594.5669291 4041.6574803 1072.8346457 9189.2125984 4041.6574803 1072.8346457 9189.2125984 4090.6456693 1072.8346457 8776.7913386 4090.6456693 1072.8346457 8776.7913386 4097.6614173 1072.8346457 8361.5275591 4097.6614173 1072.8346457 8361.5275591 4062.6299213 1072.8346457 7947.6850394 4062.6299213 1072.8346457 7947.6850394 3985.9055118 1072.8346457 7539.5078740 3985.9055118 1072.8346457 7539.5078740 3868.2850394 1072.8346457 7141.1889764 3868.2850394 1072.8346457 7141.1889764 3710.9696850 1072.8346457 6756.8110236 3710.9696850 1072.8346457 6756.8110236 3515.5748031 1072.8346457 6390.3228346 3515.5748031 1072.8346457 6390.3228346 3284.1043307 1072.8346457 6045.4842520 3284.1043307 1072.8346457 6045.4842520 3018.9354331 1072.8346457 5725.8267717 3018.9354331 1072.8346457 5725.8267717 1293.2846457 1072.8346457 4609.3188976 1293.2846457 1072.8346457 4609.3188976 893.0358268 1072.8346457 4498.4409449 893.0358268 1072.8346457 4498.4409449 483.6224409 1072.8346457 4428.6220472 483.6224409 1072.8346457 4428.6220472 69.2468898 1072.8346457 4400.5866142 69.2468898 1072.8346457 4400.5866142 -345.8394094 1072.8346457 4414.6102362 -345.8394094 1072.8346457 4414.6102362 -757.3767717 1072.8346457 4470.5590551 -757.3767717 1072.8346457 4470.5590551 - - - - - - - - - - 0.4201566 0.6958830 -0.5824219 0.3590789 -0.6958821 -0.6219409 0.3590789 0.6958821 -0.6219409 0.4201566 -0.6958830 -0.5824219 -0.4201566 0.6958830 0.5824219 -0.4201566 -0.6958830 0.5824219 -0.3590789 0.6958821 0.6219409 -0.3590789 -0.6958821 0.6219409 -0.0605742 0.6958816 -0.7155974 0.0847112 0.6958811 -0.7131434 0.0121298 0.6958842 -0.7180516 -0.1326646 0.6958818 -0.7057965 0.1564265 0.6958831 -0.7009119 -0.2033880 0.6958832 -0.6887524 0.2265302 0.6958832 -0.6814915 -0.2720229 0.6958824 -0.6646437 0.2943131 0.6958820 -0.6550786 -0.3378662 0.6958831 -0.6337137 -0.4002441 0.6958822 -0.5962824 -0.4585171 0.6958822 -0.5527297 0.4769219 0.6958828 -0.5369289 -0.5120832 0.6958827 -0.5035057 0.5287978 0.6958815 -0.4859237 -0.5603949 0.6958823 -0.4491162 0.5752430 0.6958836 -0.4299321 -0.6029562 0.6958825 -0.3901171 0.6157873 0.6958820 -0.3695324 -0.6393295 0.6958828 -0.3271161 0.6500136 0.6958823 -0.3053361 -0.6691438 0.6958821 -0.2607578 0.6775691 0.6958825 -0.2380078 -0.6920898 0.6958832 -0.1917245 0.6981697 0.6958836 -0.1682412 -0.7079370 0.6958816 -0.1207228 0.7116105 0.6958813 -0.0967453 -0.7165166 0.6958832 -0.0484820 0.7177460 0.6958826 -0.0242529 -0.7177460 0.6958826 0.0242529 0.7165166 0.6958832 0.0484820 -0.7116105 0.6958813 0.0967453 0.7079369 0.6958818 0.1207220 -0.6981697 0.6958836 0.1682412 0.6920902 0.6958826 0.1917250 -0.6775691 0.6958825 0.2380078 0.6691431 0.6958825 0.2607586 -0.6500136 0.6958823 0.3053361 0.6393295 0.6958828 0.3271161 -0.6157878 0.6958826 0.3695305 0.6029562 0.6958825 0.3901171 -0.5752437 0.6958824 0.4299330 0.5603949 0.6958823 0.4491162 -0.5287958 0.6958822 0.4859249 0.5120832 0.6958827 0.5035057 -0.4769219 0.6958828 0.5369289 0.4585171 0.6958822 0.5527297 -0.4201566 0.6958830 0.5824219 0.4002441 0.6958822 0.5962824 -0.3590789 0.6958821 0.6219409 0.3378662 0.6958831 0.6337137 -0.2943156 0.6958830 0.6550765 0.2720229 0.6958824 0.6646437 -0.2265306 0.6958812 0.6814934 0.2033880 0.6958832 0.6887524 -0.1564231 0.6958841 0.7009117 0.1326646 0.6958818 0.7057965 -0.0847112 0.6958811 0.7131434 0.0605742 0.6958816 0.7155974 -0.0121298 0.6958842 0.7180516 0.0121298 -0.6958842 -0.7180516 0.0847112 -0.6958811 -0.7131434 -0.0605742 -0.6958816 -0.7155974 -0.1326646 -0.6958818 -0.7057965 0.1564231 -0.6958841 -0.7009117 -0.2033880 -0.6958832 -0.6887524 0.2265306 -0.6958812 -0.6814934 -0.2720229 -0.6958824 -0.6646437 0.2943156 -0.6958830 -0.6550765 -0.3378662 -0.6958831 -0.6337137 0.3590789 -0.6958821 -0.6219409 -0.4002441 -0.6958822 -0.5962824 0.4201566 -0.6958830 -0.5824219 -0.4585171 -0.6958822 -0.5527297 0.4769219 -0.6958828 -0.5369289 -0.5120832 -0.6958827 -0.5035057 0.5287958 -0.6958822 -0.4859249 -0.5603949 -0.6958823 -0.4491162 0.5752437 -0.6958824 -0.4299330 -0.6029562 -0.6958825 -0.3901171 0.6157878 -0.6958826 -0.3695305 -0.6393295 -0.6958828 -0.3271161 0.6500136 -0.6958823 -0.3053361 -0.6691431 -0.6958825 -0.2607586 0.6775691 -0.6958825 -0.2380078 -0.6920902 -0.6958826 -0.1917250 0.6981697 -0.6958836 -0.1682412 -0.7079369 -0.6958818 -0.1207220 0.7116105 -0.6958813 -0.0967453 -0.7165166 -0.6958832 -0.0484820 0.7177460 -0.6958826 -0.0242529 -0.7177460 -0.6958826 0.0242529 0.7165166 -0.6958832 0.0484820 -0.7116105 -0.6958813 0.0967453 0.7079370 -0.6958816 0.1207228 -0.6981697 -0.6958836 0.1682412 0.6920898 -0.6958832 0.1917245 -0.6775691 -0.6958825 0.2380078 0.6691438 -0.6958821 0.2607578 -0.6500136 -0.6958823 0.3053361 0.6393295 -0.6958828 0.3271161 -0.6157873 -0.6958820 0.3695324 0.6029562 -0.6958825 0.3901171 -0.5752430 -0.6958836 0.4299321 0.5603949 -0.6958823 0.4491162 -0.5287978 -0.6958815 0.4859237 0.5120832 -0.6958827 0.5035057 -0.4769219 -0.6958828 0.5369289 0.4585171 -0.6958822 0.5527297 0.4002441 -0.6958822 0.5962824 0.3378662 -0.6958831 0.6337137 -0.2943131 -0.6958820 0.6550786 0.2720229 -0.6958824 0.6646437 -0.2265302 -0.6958832 0.6814915 0.2033880 -0.6958832 0.6887524 -0.1564265 -0.6958831 0.7009119 0.1326646 -0.6958818 0.7057965 -0.0847112 -0.6958811 0.7131434 0.0605742 -0.6958816 0.7155974 -0.0121298 -0.6958842 0.7180516 0.4769219 -0.6958828 -0.5369289 -0.4769219 0.6958828 0.5369289 0.2943131 -0.6958820 -0.6550786 -0.2943131 0.6958820 0.6550786 -0.2720229 -0.6958824 -0.6646437 -0.2033880 -0.6958832 -0.6887524 0.2033880 0.6958832 0.6887524 0.2720229 0.6958824 0.6646437 -0.3378662 -0.6958831 -0.6337137 0.3378662 0.6958831 0.6337137 -0.4002441 -0.6958822 -0.5962824 0.4002441 0.6958822 0.5962824 -0.4585171 -0.6958822 -0.5527297 0.4585171 0.6958822 0.5527297 -0.5120832 -0.6958827 -0.5035057 0.5120832 0.6958827 0.5035057 -0.5603949 -0.6958823 -0.4491162 0.5603949 0.6958823 0.4491162 -0.6029562 -0.6958825 -0.3901171 0.6029562 0.6958825 0.3901171 -0.6393295 -0.6958828 -0.3271161 0.6393295 0.6958828 0.3271161 -0.6691438 -0.6958821 -0.2607578 0.6691438 0.6958821 0.2607578 -0.6920898 -0.6958832 -0.1917245 0.6920898 0.6958832 0.1917245 -0.7079370 -0.6958816 -0.1207228 0.7079370 0.6958816 0.1207228 -0.7165166 -0.6958832 -0.0484820 0.7165166 0.6958832 0.0484820 -0.7177460 -0.6958826 0.0242529 0.7177460 0.6958826 -0.0242529 -0.7116105 -0.6958813 0.0967453 0.7116105 0.6958813 -0.0967453 -0.6981697 -0.6958836 0.1682412 0.6981697 0.6958836 -0.1682412 -0.6775691 -0.6958825 0.2380078 0.6775691 0.6958825 -0.2380078 -0.6500136 -0.6958823 0.3053361 0.6500136 0.6958823 -0.3053361 -0.6157878 -0.6958826 0.3695305 0.6157878 0.6958826 -0.3695305 -0.5752437 -0.6958824 0.4299330 0.5752437 0.6958824 -0.4299330 -0.5287958 -0.6958822 0.4859249 0.5287958 0.6958822 -0.4859249 -0.4769219 -0.6958828 0.5369289 0.4769219 0.6958828 -0.5369289 -0.4201566 -0.6958830 0.5824219 0.4201566 0.6958830 -0.5824219 -0.3590789 -0.6958821 0.6219409 0.3590789 0.6958821 -0.6219409 -0.2943156 -0.6958830 0.6550765 0.2943156 0.6958830 -0.6550765 -0.2265306 -0.6958812 0.6814934 0.2265306 0.6958812 -0.6814934 -0.1564231 -0.6958841 0.7009117 0.1564231 0.6958841 -0.7009117 -0.0847112 -0.6958811 0.7131434 0.0847112 0.6958811 -0.7131434 -0.0121298 -0.6958842 0.7180516 0.0121298 0.6958842 -0.7180516 0.0605742 -0.6958816 0.7155974 -0.0605742 0.6958816 -0.7155974 0.1326646 -0.6958818 0.7057965 -0.1326646 0.6958818 -0.7057965 0.2033880 -0.6958832 0.6887524 -0.2033880 0.6958832 -0.6887524 0.2720229 -0.6958824 0.6646437 -0.2720229 0.6958824 -0.6646437 0.3378662 -0.6958831 0.6337137 -0.3378662 0.6958831 -0.6337137 0.4002441 -0.6958822 0.5962824 -0.4002441 0.6958822 -0.5962824 0.4585171 -0.6958822 0.5527297 -0.4585171 0.6958822 -0.5527297 0.5120832 -0.6958827 0.5035057 -0.5120832 0.6958827 -0.5035057 0.5603949 -0.6958823 0.4491162 -0.5603949 0.6958823 -0.4491162 0.6029562 -0.6958825 0.3901171 -0.6029562 0.6958825 -0.3901171 0.6393295 -0.6958828 0.3271161 -0.6393295 0.6958828 -0.3271161 0.6691431 -0.6958825 0.2607586 -0.6691431 0.6958825 -0.2607586 0.6920902 -0.6958826 0.1917250 -0.6920902 0.6958826 -0.1917250 0.7079369 -0.6958818 0.1207220 -0.7079369 0.6958818 -0.1207220 0.7165166 -0.6958832 0.0484820 -0.7165166 0.6958832 -0.0484820 0.7177460 -0.6958826 -0.0242529 -0.7177460 0.6958826 0.0242529 0.7116105 -0.6958813 -0.0967453 -0.7116105 0.6958813 0.0967453 0.6981697 -0.6958836 -0.1682412 -0.6981697 0.6958836 0.1682412 0.6775691 -0.6958825 -0.2380078 -0.6775691 0.6958825 0.2380078 0.6500136 -0.6958823 -0.3053361 -0.6500136 0.6958823 0.3053361 0.6157873 -0.6958820 -0.3695324 -0.6157873 0.6958820 0.3695324 0.5752430 -0.6958836 -0.4299321 -0.5752430 0.6958836 0.4299321 0.5287978 -0.6958815 -0.4859237 -0.5287978 0.6958815 0.4859237 0.2265302 -0.6958832 -0.6814915 -0.2265302 0.6958832 0.6814915 0.1564265 -0.6958831 -0.7009119 -0.1564265 0.6958831 0.7009119 0.0847112 -0.6958811 -0.7131434 -0.0847112 0.6958811 0.7131434 0.0121298 -0.6958842 -0.7180516 -0.0121298 0.6958842 0.7180516 -0.0605742 -0.6958816 -0.7155974 0.0605742 0.6958816 0.7155974 -0.1326646 -0.6958818 -0.7057965 0.1326646 0.6958818 0.7057965 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 2 2 17 18 2 18 0 0 18 19 0 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 24 25 26 26 25 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 36 35 37 36 37 38 38 37 39 38 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 47 46 47 48 48 47 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 54 54 53 55 54 55 56 56 55 57 56 57 58 58 57 59 58 59 60 60 59 61 60 61 62 62 61 63 62 63 64 64 63 65 64 65 66 66 65 67 68 69 70 70 69 71 69 72 71 71 72 73 72 74 73 73 74 75 74 76 75 75 76 77 76 78 77 77 78 79 78 80 79 79 80 81 80 82 81 81 82 83 82 84 83 83 84 85 84 86 85 85 86 87 86 88 87 87 88 89 88 90 89 89 90 91 90 92 91 91 92 93 92 94 93 93 94 95 94 96 95 95 96 97 96 98 97 97 98 99 98 100 99 99 100 101 100 102 101 101 102 103 102 104 103 103 104 105 104 106 105 105 106 107 106 108 107 107 108 109 108 110 109 109 110 111 110 112 111 111 112 113 112 114 113 113 114 115 114 116 115 115 116 5 116 117 5 5 117 7 117 118 7 7 118 119 118 120 119 119 120 121 120 122 121 121 122 123 122 124 123 123 124 125 124 126 125 127 125 126 20 3 0 3 20 128 129 115 4 5 4 115 2 130 16 130 2 1 6 7 131 119 131 7 13 132 15 132 13 133 134 122 135 120 135 122 15 136 17 136 15 132 135 120 137 118 137 120 17 138 18 138 17 136 137 118 139 117 139 118 18 140 19 140 18 138 139 117 141 116 141 117 19 142 21 142 19 140 141 116 143 114 143 116 23 142 144 142 23 21 114 112 143 145 143 112 25 144 146 144 25 23 112 110 145 147 145 110 27 146 148 146 27 25 110 108 147 149 147 108 29 148 150 148 29 27 108 106 149 151 149 106 31 150 152 150 31 29 106 104 151 153 151 104 33 152 154 152 33 31 104 102 153 155 153 102 35 154 156 154 35 33 102 100 155 157 155 100 37 156 158 156 37 35 100 98 157 159 157 98 39 158 160 158 39 37 98 96 159 161 159 96 41 160 162 160 41 39 96 94 161 163 161 94 43 162 164 162 43 41 94 92 163 165 163 92 45 164 166 164 45 43 92 90 165 167 165 90 168 45 166 45 168 47 88 169 90 167 90 169 49 168 170 168 49 47 88 86 169 171 169 86 51 170 172 170 51 49 86 84 171 173 171 84 174 51 172 51 174 53 82 175 84 173 84 175 176 53 174 53 176 55 80 177 82 175 82 177 178 55 176 55 178 57 78 179 80 177 80 179 180 57 178 57 180 59 76 181 78 179 78 181 182 59 180 59 182 61 74 183 76 181 76 183 184 61 182 61 184 63 72 185 74 183 74 185 186 63 184 63 186 65 69 187 72 185 72 187 188 65 186 65 188 67 68 189 69 187 69 189 190 67 188 67 190 66 70 191 68 189 68 191 192 66 190 66 192 64 71 193 70 191 70 193 194 64 192 64 194 62 73 195 71 193 71 195 196 62 194 62 196 60 75 197 73 195 73 197 198 60 196 60 198 58 77 199 75 197 75 199 200 58 198 58 200 56 79 201 77 199 77 201 202 56 200 56 202 54 81 203 79 201 79 203 204 54 202 54 204 52 83 205 81 203 81 205 50 204 206 204 50 52 83 85 205 207 205 85 48 206 208 206 48 50 85 87 207 209 207 87 46 208 210 208 46 48 87 89 209 211 209 89 44 210 212 210 44 46 89 91 211 213 211 91 42 212 214 212 42 44 91 93 213 215 213 93 40 214 216 214 40 42 93 95 215 217 215 95 38 216 218 216 38 40 95 97 217 219 217 97 36 218 220 218 36 38 97 99 219 221 219 99 34 220 222 220 34 36 99 101 221 223 221 101 32 222 224 222 32 34 101 103 223 225 223 103 30 224 226 224 30 32 103 105 225 227 225 105 28 226 228 226 28 30 105 107 227 229 227 107 26 228 230 228 26 28 107 109 229 231 229 109 24 230 232 230 24 26 109 111 231 233 231 111 22 232 234 232 22 24 111 113 233 235 233 113 22 128 20 128 22 234 235 113 129 115 129 113 16 236 14 236 16 130 131 119 237 121 237 119 14 238 12 238 14 236 237 121 239 123 239 121 12 240 9 240 12 238 239 123 241 125 241 123 9 242 10 242 9 240 241 125 243 127 243 125 10 244 8 244 10 242 243 127 245 126 245 127 8 246 11 246 8 244 245 126 247 124 247 126 11 133 13 133 11 246 247 124 134 122 134 124

-
-
-
- - - - 483.6224409 1072.8346457 4428.6220472 -345.8394094 1072.8346457 4414.6102362 69.2468898 1072.8346457 4400.5866142 -757.3767717 1072.8346457 4470.5590551 893.0358268 1072.8346457 4498.4409449 -1161.1425197 1072.8346457 4567.8582677 1293.2846457 1072.8346457 4609.3188976 -1552.9933071 1072.8346457 4705.5039370 1680.2633858 1072.8346457 4760.1181102 -1928.9082677 1072.8346457 4882.0866142 2050.0000000 1072.8346457 4949.2952756 -2285.0303150 1072.8346457 5095.7913386 2398.7007874 1072.8346457 5174.9094488 -2617.7047244 1072.8346457 5344.4291339 2722.7881890 1072.8346457 5434.6417323 -2923.5177165 1072.8346457 5625.4488189 3018.9354331 1072.8346457 5725.8267717 -3199.3318898 1072.8346457 5935.9645669 3284.1043307 1072.8346457 6045.4842520 -3442.3161417 1072.8346457 6272.7913386 3515.5748031 1072.8346457 6390.3228346 -3649.9775591 1072.8346457 6632.4724409 3710.9696850 1072.8346457 6756.8110236 -3820.1854331 1072.8346457 7011.3149606 3868.2850394 1072.8346457 7141.1889764 -3951.1929134 1072.8346457 7405.4370079 3985.9055118 1072.8346457 7539.5078740 -4041.6574803 1072.8346457 7810.7874016 4062.6299213 1072.8346457 7947.6850394 -4090.6456693 1072.8346457 8223.2086614 4097.6614173 1072.8346457 8361.5275591 -4097.6614173 1072.8346457 8638.4724409 4090.6456693 1072.8346457 8776.7913386 -4062.6299213 1072.8346457 9052.3149606 4041.6574803 1072.8346457 9189.2125984 -3985.9055118 1072.8346457 9460.4921260 3951.1929134 1072.8346457 9594.5669291 -3868.2850394 1072.8346457 9858.8110236 3820.1854331 1072.8346457 9988.6850394 -3710.9696850 1072.8346457 10243.1889764 3649.9775591 1072.8346457 10367.5275591 -3515.5748031 1072.8346457 10609.6771654 3442.3161417 1072.8346457 10727.2086614 -3284.1043307 1072.8346457 10954.5196850 3199.3318898 1072.8346457 11064.0354331 -3018.9354331 1072.8346457 11274.1732283 2923.5177165 1072.8346457 11374.5511811 -2722.7881890 1072.8346457 11565.3582677 2617.7047244 1072.8346457 11655.5708661 -2398.7007874 1072.8346457 11825.0905512 2285.0303150 1072.8346457 11904.2086614 -2050.0000000 1072.8346457 12050.7047244 1928.9082677 1072.8346457 12117.9133858 -1680.2633858 1072.8346457 12239.8818898 1552.9933071 1072.8346457 12294.4960630 -1293.2846457 1072.8346457 12390.6850394 1161.1425197 1072.8346457 12432.1417323 -893.0358268 1072.8346457 12501.5590551 757.3767717 1072.8346457 12529.4409449 -483.6224409 1072.8346457 12571.3779528 345.8394094 1072.8346457 12585.3897638 -69.2468898 1072.8346457 12599.4133858 -69.2468898 1072.8346457 12599.4133858 345.8394094 1072.8346457 12585.3897638 -483.6224409 1072.8346457 12571.3779528 757.3767717 1072.8346457 12529.4409449 -893.0358268 1072.8346457 12501.5590551 1161.1425197 1072.8346457 12432.1417323 -1293.2846457 1072.8346457 12390.6850394 1552.9933071 1072.8346457 12294.4960630 -1680.2633858 1072.8346457 12239.8818898 1928.9082677 1072.8346457 12117.9133858 -2050.0000000 1072.8346457 12050.7047244 2285.0303150 1072.8346457 11904.2086614 -2398.7007874 1072.8346457 11825.0905512 2617.7047244 1072.8346457 11655.5708661 -2722.7881890 1072.8346457 11565.3582677 2923.5177165 1072.8346457 11374.5511811 -3018.9354331 1072.8346457 11274.1732283 3199.3318898 1072.8346457 11064.0354331 -3284.1043307 1072.8346457 10954.5196850 3442.3161417 1072.8346457 10727.2086614 -3515.5748031 1072.8346457 10609.6771654 3649.9775591 1072.8346457 10367.5275591 -3710.9696850 1072.8346457 10243.1889764 3820.1854331 1072.8346457 9988.6850394 -3868.2850394 1072.8346457 9858.8110236 3951.1929134 1072.8346457 9594.5669291 -3985.9055118 1072.8346457 9460.4921260 4041.6574803 1072.8346457 9189.2125984 -4062.6299213 1072.8346457 9052.3149606 4090.6456693 1072.8346457 8776.7913386 -4097.6614173 1072.8346457 8638.4724409 4097.6614173 1072.8346457 8361.5275591 -4090.6456693 1072.8346457 8223.2086614 4062.6299213 1072.8346457 7947.6850394 -4041.6574803 1072.8346457 7810.7874016 3985.9055118 1072.8346457 7539.5078740 -3951.1929134 1072.8346457 7405.4370079 3868.2850394 1072.8346457 7141.1889764 -3820.1854331 1072.8346457 7011.3149606 3710.9696850 1072.8346457 6756.8110236 -3649.9775591 1072.8346457 6632.4724409 3515.5748031 1072.8346457 6390.3228346 -3442.3161417 1072.8346457 6272.7913386 3284.1043307 1072.8346457 6045.4842520 -3199.3318898 1072.8346457 5935.9645669 3018.9354331 1072.8346457 5725.8267717 -2923.5177165 1072.8346457 5625.4488189 2722.7881890 1072.8346457 5434.6417323 -2617.7047244 1072.8346457 5344.4291339 2398.7007874 1072.8346457 5174.9094488 -2285.0303150 1072.8346457 5095.7913386 2050.0000000 1072.8346457 4949.2952756 -1928.9082677 1072.8346457 4882.0866142 1680.2633858 1072.8346457 4760.1181102 -1552.9933071 1072.8346457 4705.5039370 1293.2846457 1072.8346457 4609.3188976 -1161.1425197 1072.8346457 4567.8582677 893.0358268 1072.8346457 4498.4409449 -757.3767717 1072.8346457 4470.5590551 483.6224409 1072.8346457 4428.6220472 -345.8394094 1072.8346457 4414.6102362 69.2468898 1072.8346457 4400.5866142 - - - - - - - - - - 0.0847112 -0.6958811 -0.7131434 -0.0605742 -0.6958816 -0.7155974 0.0121298 -0.6958842 -0.7180516 -0.1326646 -0.6958818 -0.7057965 0.1564265 -0.6958831 -0.7009119 -0.2033880 -0.6958832 -0.6887524 0.2265302 -0.6958832 -0.6814915 -0.2720229 -0.6958824 -0.6646437 0.2943131 -0.6958820 -0.6550786 -0.3378662 -0.6958831 -0.6337137 0.3590789 -0.6958821 -0.6219409 -0.4002441 -0.6958822 -0.5962824 0.4201566 -0.6958830 -0.5824219 -0.4585171 -0.6958822 -0.5527297 0.4769219 -0.6958828 -0.5369289 -0.5120832 -0.6958827 -0.5035057 0.5287978 -0.6958815 -0.4859237 -0.5603949 -0.6958823 -0.4491162 0.5752430 -0.6958836 -0.4299321 -0.6029562 -0.6958825 -0.3901171 0.6157873 -0.6958820 -0.3695324 -0.6393295 -0.6958828 -0.3271161 0.6500136 -0.6958823 -0.3053361 -0.6691438 -0.6958821 -0.2607578 0.6775691 -0.6958825 -0.2380078 -0.6920898 -0.6958832 -0.1917245 0.6981697 -0.6958836 -0.1682412 -0.7079370 -0.6958816 -0.1207228 0.7116105 -0.6958813 -0.0967453 -0.7165166 -0.6958832 -0.0484820 0.7177460 -0.6958826 -0.0242529 -0.7177460 -0.6958826 0.0242529 0.7165166 -0.6958832 0.0484820 -0.7116105 -0.6958813 0.0967453 0.7079369 -0.6958818 0.1207220 -0.6981697 -0.6958836 0.1682412 0.6920902 -0.6958826 0.1917250 -0.6775691 -0.6958825 0.2380078 0.6691431 -0.6958825 0.2607586 -0.6500136 -0.6958823 0.3053361 0.6393295 -0.6958828 0.3271161 -0.6157878 -0.6958826 0.3695305 0.6029562 -0.6958825 0.3901171 -0.5752437 -0.6958824 0.4299330 0.5603949 -0.6958823 0.4491162 -0.5287958 -0.6958822 0.4859249 0.5120832 -0.6958827 0.5035057 -0.4769219 -0.6958828 0.5369289 0.4585171 -0.6958822 0.5527297 -0.4201566 -0.6958830 0.5824219 0.4002441 -0.6958822 0.5962824 -0.3590789 -0.6958821 0.6219409 0.3378662 -0.6958831 0.6337137 -0.2943156 -0.6958830 0.6550765 0.2720229 -0.6958824 0.6646437 -0.2265306 -0.6958812 0.6814934 0.2033880 -0.6958832 0.6887524 -0.1564231 -0.6958841 0.7009117 0.1326646 -0.6958818 0.7057965 -0.0847112 -0.6958811 0.7131434 0.0605742 -0.6958816 0.7155974 -0.0121298 -0.6958842 0.7180516 0.0121298 0.6958842 -0.7180516 -0.0605742 0.6958816 -0.7155974 0.0847112 0.6958811 -0.7131434 -0.1326646 0.6958818 -0.7057965 0.1564231 0.6958841 -0.7009117 -0.2033880 0.6958832 -0.6887524 0.2265306 0.6958812 -0.6814934 -0.2720229 0.6958824 -0.6646437 0.2943156 0.6958830 -0.6550765 -0.3378662 0.6958831 -0.6337137 0.3590789 0.6958821 -0.6219409 -0.4002441 0.6958822 -0.5962824 0.4201566 0.6958830 -0.5824219 -0.4585171 0.6958822 -0.5527297 0.4769219 0.6958828 -0.5369289 -0.5120832 0.6958827 -0.5035057 0.5287958 0.6958822 -0.4859249 -0.5603949 0.6958823 -0.4491162 0.5752437 0.6958824 -0.4299330 -0.6029562 0.6958825 -0.3901171 0.6157878 0.6958826 -0.3695305 -0.6393295 0.6958828 -0.3271161 0.6500136 0.6958823 -0.3053361 -0.6691431 0.6958825 -0.2607586 0.6775691 0.6958825 -0.2380078 -0.6920902 0.6958826 -0.1917250 0.6981697 0.6958836 -0.1682412 -0.7079369 0.6958818 -0.1207220 0.7116105 0.6958813 -0.0967453 -0.7165166 0.6958832 -0.0484820 0.7177460 0.6958826 -0.0242529 -0.7177460 0.6958826 0.0242529 0.7165166 0.6958832 0.0484820 -0.7116105 0.6958813 0.0967453 0.7079370 0.6958816 0.1207228 -0.6981697 0.6958836 0.1682412 0.6920898 0.6958832 0.1917245 -0.6775691 0.6958825 0.2380078 0.6691438 0.6958821 0.2607578 -0.6500136 0.6958823 0.3053361 0.6393295 0.6958828 0.3271161 -0.6157873 0.6958820 0.3695324 0.6029562 0.6958825 0.3901171 -0.5752430 0.6958836 0.4299321 0.5603949 0.6958823 0.4491162 -0.5287978 0.6958815 0.4859237 0.5120832 0.6958827 0.5035057 -0.4769219 0.6958828 0.5369289 0.4585171 0.6958822 0.5527297 -0.4201566 0.6958830 0.5824219 0.4002441 0.6958822 0.5962824 -0.3590789 0.6958821 0.6219409 0.3378662 0.6958831 0.6337137 -0.2943131 0.6958820 0.6550786 0.2720229 0.6958824 0.6646437 -0.2265302 0.6958832 0.6814915 0.2033880 0.6958832 0.6887524 -0.1564265 0.6958831 0.7009119 0.1326646 0.6958818 0.7057965 -0.0847112 0.6958811 0.7131434 0.0605742 0.6958816 0.7155974 -0.0121298 0.6958842 0.7180516 - - - - - - - - - - - - - - -

0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61 62 63 64 63 65 64 64 65 66 65 67 66 66 67 68 67 69 68 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 99 98 98 99 100 99 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 123 122 121

-
-
-
- - - - 3261.2157480 1190.9448819 -4250.0000000 3282.2515748 1072.8346457 -4664.7913386 3261.2157480 1072.8346457 -4250.0000000 3282.2515748 1190.9448819 -4664.7913386 3282.2515748 1190.9448819 -4664.7913386 3261.2157480 1190.9448819 -4250.0000000 3282.2515748 1072.8346457 -4664.7913386 3261.2157480 1072.8346457 -4250.0000000 6740.3622047 1190.9448819 -8302.7204724 7568.8779528 1190.9448819 -8344.7362205 7153.5551181 1190.9448819 -8344.7362205 7982.0708661 1190.9448819 -8302.7204724 6333.5393701 1190.9448819 -8219.1141732 8388.8897638 1190.9448819 -8219.1141732 5937.2637795 1190.9448819 -8094.7834646 8785.1653543 1190.9448819 -8094.7834646 5555.5984252 1190.9448819 -7931.0000000 9166.8307087 1190.9448819 -7931.0000000 5192.4645669 1190.9448819 -7729.4409449 9529.9685039 1190.9448819 -7729.4409449 4851.5826772 1190.9448819 -7492.1811024 9870.8503937 1190.9448819 -7492.1811024 4536.4527559 1190.9448819 -7221.6496063 10185.9803150 1190.9448819 -7221.6496063 4250.3070866 1190.9448819 -6920.6259843 10472.1220472 1190.9448819 -6920.6259843 3996.0866142 1190.9448819 -6592.2007874 10726.3464567 1190.9448819 -6592.2007874 3776.3952756 1190.9448819 -6239.7362205 10946.0354331 1190.9448819 -6239.7362205 3593.4889764 1190.9448819 -5866.8582677 11128.9409449 1190.9448819 -5866.8582677 3449.2448819 1190.9448819 -5477.3897638 11273.1889764 1190.9448819 -5477.3897638 3345.1433071 1190.9448819 -5075.3228346 11377.2874016 1190.9448819 -5075.3228346 11440.1811024 1190.9448819 -4664.7913386 11461.2165354 1190.9448819 -4250.0000000 3282.2515748 1190.9448819 -3835.2098425 11440.1811024 1190.9448819 -3835.2098425 3345.1433071 1190.9448819 -3424.6759843 11377.2874016 1190.9448819 -3424.6759843 3449.2448819 1190.9448819 -3022.6114173 11273.1889764 1190.9448819 -3022.6114173 3593.4889764 1190.9448819 -2633.1413386 11128.9409449 1190.9448819 -2633.1413386 3776.3952756 1190.9448819 -2260.2622047 10946.0354331 1190.9448819 -2260.2622047 3996.0866142 1190.9448819 -1907.8003937 10726.3464567 1190.9448819 -1907.8003937 4250.3070866 1190.9448819 -1579.3728346 10472.1220472 1190.9448819 -1579.3728346 4536.4527559 1190.9448819 -1278.3496063 10185.9803150 1190.9448819 -1278.3496063 4851.5826772 1190.9448819 -1007.8192913 9870.8503937 1190.9448819 -1007.8192913 5192.4645669 1190.9448819 -770.5586614 9529.9685039 1190.9448819 -770.5586614 5555.5984252 1190.9448819 -569.0011811 9166.8307087 1190.9448819 -569.0011811 5937.2637795 1190.9448819 -405.2161417 8785.1653543 1190.9448819 -405.2161417 6333.5393701 1190.9448819 -280.8838583 8388.8897638 1190.9448819 -280.8838583 6740.3622047 1190.9448819 -197.2798819 7982.0708661 1190.9448819 -197.2798819 7153.5551181 1190.9448819 -155.2624016 7568.8779528 1190.9448819 -155.2624016 7568.8779528 1190.9448819 -155.2624016 7153.5551181 1190.9448819 -155.2624016 7982.0708661 1190.9448819 -197.2798819 6740.3622047 1190.9448819 -197.2798819 8388.8897638 1190.9448819 -280.8838583 6333.5393701 1190.9448819 -280.8838583 8785.1653543 1190.9448819 -405.2161417 5937.2637795 1190.9448819 -405.2161417 9166.8307087 1190.9448819 -569.0011811 5555.5984252 1190.9448819 -569.0011811 9529.9685039 1190.9448819 -770.5586614 5192.4645669 1190.9448819 -770.5586614 9870.8503937 1190.9448819 -1007.8192913 4851.5826772 1190.9448819 -1007.8192913 10185.9803150 1190.9448819 -1278.3496063 4536.4527559 1190.9448819 -1278.3496063 10472.1220472 1190.9448819 -1579.3728346 4250.3070866 1190.9448819 -1579.3728346 10726.3464567 1190.9448819 -1907.8003937 3996.0866142 1190.9448819 -1907.8003937 10946.0354331 1190.9448819 -2260.2622047 3776.3952756 1190.9448819 -2260.2622047 11128.9409449 1190.9448819 -2633.1413386 3593.4889764 1190.9448819 -2633.1413386 11273.1889764 1190.9448819 -3022.6114173 3449.2448819 1190.9448819 -3022.6114173 11377.2874016 1190.9448819 -3424.6759843 3345.1433071 1190.9448819 -3424.6759843 11440.1811024 1190.9448819 -3835.2098425 3282.2515748 1190.9448819 -3835.2098425 11461.2165354 1190.9448819 -4250.0000000 11440.1811024 1190.9448819 -4664.7913386 11377.2874016 1190.9448819 -5075.3228346 3345.1433071 1190.9448819 -5075.3228346 11273.1889764 1190.9448819 -5477.3897638 3449.2448819 1190.9448819 -5477.3897638 11128.9409449 1190.9448819 -5866.8582677 3593.4889764 1190.9448819 -5866.8582677 10946.0354331 1190.9448819 -6239.7362205 3776.3952756 1190.9448819 -6239.7362205 10726.3464567 1190.9448819 -6592.2007874 3996.0866142 1190.9448819 -6592.2007874 10472.1220472 1190.9448819 -6920.6259843 4250.3070866 1190.9448819 -6920.6259843 10185.9803150 1190.9448819 -7221.6496063 4536.4527559 1190.9448819 -7221.6496063 9870.8503937 1190.9448819 -7492.1811024 4851.5826772 1190.9448819 -7492.1811024 9529.9685039 1190.9448819 -7729.4409449 5192.4645669 1190.9448819 -7729.4409449 9166.8307087 1190.9448819 -7931.0000000 5555.5984252 1190.9448819 -7931.0000000 8785.1653543 1190.9448819 -8094.7834646 5937.2637795 1190.9448819 -8094.7834646 8388.8897638 1190.9448819 -8219.1141732 6333.5393701 1190.9448819 -8219.1141732 7982.0708661 1190.9448819 -8302.7204724 6740.3622047 1190.9448819 -8302.7204724 7568.8779528 1190.9448819 -8344.7362205 7153.5551181 1190.9448819 -8344.7362205 3345.1433071 1072.8346457 -5075.3228346 3345.1433071 1072.8346457 -5075.3228346 7982.0708661 1072.8346457 -8302.7204724 7153.5551181 1072.8346457 -8344.7362205 7568.8779528 1072.8346457 -8344.7362205 6740.3622047 1072.8346457 -8302.7204724 8388.8897638 1072.8346457 -8219.1141732 6333.5393701 1072.8346457 -8219.1141732 8785.1653543 1072.8346457 -8094.7834646 5937.2637795 1072.8346457 -8094.7834646 9166.8307087 1072.8346457 -7931.0000000 5555.5984252 1072.8346457 -7931.0000000 9529.9685039 1072.8346457 -7729.4409449 5192.4645669 1072.8346457 -7729.4409449 9870.8503937 1072.8346457 -7492.1811024 4851.5826772 1072.8346457 -7492.1811024 10185.9803150 1072.8346457 -7221.6496063 4536.4527559 1072.8346457 -7221.6496063 10472.1220472 1072.8346457 -6920.6259843 4250.3070866 1072.8346457 -6920.6259843 10726.3464567 1072.8346457 -6592.2007874 3996.0866142 1072.8346457 -6592.2007874 10946.0354331 1072.8346457 -6239.7362205 3776.3952756 1072.8346457 -6239.7362205 11128.9409449 1072.8346457 -5866.8582677 3593.4889764 1072.8346457 -5866.8582677 11273.1889764 1072.8346457 -5477.3897638 3449.2448819 1072.8346457 -5477.3897638 11377.2874016 1072.8346457 -5075.3228346 11440.1811024 1072.8346457 -4664.7913386 11461.2165354 1072.8346457 -4250.0000000 11440.1811024 1072.8346457 -3835.2098425 3282.2515748 1072.8346457 -3835.2098425 11377.2874016 1072.8346457 -3424.6759843 3345.1433071 1072.8346457 -3424.6759843 11273.1889764 1072.8346457 -3022.6114173 3449.2448819 1072.8346457 -3022.6114173 11128.9409449 1072.8346457 -2633.1413386 3593.4889764 1072.8346457 -2633.1413386 10946.0354331 1072.8346457 -2260.2622047 3776.3952756 1072.8346457 -2260.2622047 10726.3464567 1072.8346457 -1907.8003937 3996.0866142 1072.8346457 -1907.8003937 10472.1220472 1072.8346457 -1579.3728346 4250.3070866 1072.8346457 -1579.3728346 10185.9803150 1072.8346457 -1278.3496063 4536.4527559 1072.8346457 -1278.3496063 9870.8503937 1072.8346457 -1007.8192913 4851.5826772 1072.8346457 -1007.8192913 9529.9685039 1072.8346457 -770.5586614 5192.4645669 1072.8346457 -770.5586614 9166.8307087 1072.8346457 -569.0011811 5555.5984252 1072.8346457 -569.0011811 8785.1653543 1072.8346457 -405.2161417 5937.2637795 1072.8346457 -405.2161417 8388.8897638 1072.8346457 -280.8838583 6333.5393701 1072.8346457 -280.8838583 7982.0708661 1072.8346457 -197.2798819 6740.3622047 1072.8346457 -197.2798819 7568.8779528 1072.8346457 -155.2624016 7153.5551181 1072.8346457 -155.2624016 7153.5551181 1072.8346457 -155.2624016 7568.8779528 1072.8346457 -155.2624016 6740.3622047 1072.8346457 -197.2798819 7982.0708661 1072.8346457 -197.2798819 6333.5393701 1072.8346457 -280.8838583 8388.8897638 1072.8346457 -280.8838583 5937.2637795 1072.8346457 -405.2161417 8785.1653543 1072.8346457 -405.2161417 5555.5984252 1072.8346457 -569.0011811 9166.8307087 1072.8346457 -569.0011811 5192.4645669 1072.8346457 -770.5586614 9529.9685039 1072.8346457 -770.5586614 4851.5826772 1072.8346457 -1007.8192913 9870.8503937 1072.8346457 -1007.8192913 4536.4527559 1072.8346457 -1278.3496063 10185.9803150 1072.8346457 -1278.3496063 4250.3070866 1072.8346457 -1579.3728346 10472.1220472 1072.8346457 -1579.3728346 3996.0866142 1072.8346457 -1907.8003937 10726.3464567 1072.8346457 -1907.8003937 3776.3952756 1072.8346457 -2260.2622047 10946.0354331 1072.8346457 -2260.2622047 3593.4889764 1072.8346457 -2633.1413386 11128.9409449 1072.8346457 -2633.1413386 3449.2448819 1072.8346457 -3022.6114173 11273.1889764 1072.8346457 -3022.6114173 3345.1433071 1072.8346457 -3424.6759843 11377.2874016 1072.8346457 -3424.6759843 3282.2515748 1072.8346457 -3835.2098425 11440.1811024 1072.8346457 -3835.2098425 11461.2165354 1072.8346457 -4250.0000000 11440.1811024 1072.8346457 -4664.7913386 11377.2874016 1072.8346457 -5075.3228346 3449.2448819 1072.8346457 -5477.3897638 11273.1889764 1072.8346457 -5477.3897638 3593.4889764 1072.8346457 -5866.8582677 11128.9409449 1072.8346457 -5866.8582677 3776.3952756 1072.8346457 -6239.7362205 10946.0354331 1072.8346457 -6239.7362205 3996.0866142 1072.8346457 -6592.2007874 10726.3464567 1072.8346457 -6592.2007874 4250.3070866 1072.8346457 -6920.6259843 10472.1220472 1072.8346457 -6920.6259843 4536.4527559 1072.8346457 -7221.6496063 10185.9803150 1072.8346457 -7221.6496063 4851.5826772 1072.8346457 -7492.1811024 9870.8503937 1072.8346457 -7492.1811024 5192.4645669 1072.8346457 -7729.4409449 9529.9685039 1072.8346457 -7729.4409449 5555.5984252 1072.8346457 -7931.0000000 9166.8307087 1072.8346457 -7931.0000000 5937.2637795 1072.8346457 -8094.7834646 8785.1653543 1072.8346457 -8094.7834646 6333.5393701 1072.8346457 -8219.1141732 8388.8897638 1072.8346457 -8219.1141732 6740.3622047 1072.8346457 -8302.7204724 7982.0708661 1072.8346457 -8302.7204724 7153.5551181 1072.8346457 -8344.7362205 7568.8779528 1072.8346457 -8344.7362205 - - - - - - - - - - -0.7181557 0.6958825 0.0000001 -0.7144711 -0.6958823 -0.0726551 -0.7181557 -0.6958825 0.0000001 -0.7144711 0.6958823 -0.0726551 0.7144711 -0.6958823 0.0726551 0.7181557 -0.6958825 -0.0000001 0.7144711 0.6958823 0.0726551 0.7181557 0.6958825 -0.0000001 -0.1087490 0.6958815 -0.7098751 0.0363724 0.6958830 -0.7172335 -0.0363724 0.6958830 -0.7172335 0.1087497 0.6958813 -0.7098752 -0.1800078 0.6958834 -0.6952291 0.1800084 0.6958836 -0.6952287 -0.2494165 0.6958826 -0.6734529 0.2494165 0.6958826 -0.6734529 -0.3162729 0.6958812 -0.6447641 0.3162712 0.6958818 -0.6447644 -0.3798796 0.6958835 -0.6094569 0.3798784 0.6958830 -0.6094582 -0.4395878 0.6958820 -0.5679003 0.4395878 0.6958820 -0.5679003 -0.4947851 0.6958830 -0.5205137 0.4947874 0.6958823 -0.5205125 -0.5449058 0.6958823 -0.4677878 0.5449045 0.6958839 -0.4677870 -0.5894367 0.6958821 -0.4102591 0.5894372 0.6958807 -0.4102606 -0.6279167 0.6958831 -0.3485218 0.6279175 0.6958834 -0.3485195 -0.6599542 0.6958825 -0.2832102 0.6599522 0.6958836 -0.2832121 -0.6852209 0.6958821 -0.2149894 0.6852223 0.6958803 -0.2149905 -0.7034547 0.6958829 -0.1445635 0.7034536 0.6958842 -0.1445623 0.7144716 0.6958817 -0.0726565 0.7181555 0.6958827 0.0000001 -0.7144711 0.6958824 0.0726549 0.7144715 0.6958818 0.0726563 -0.7034548 0.6958826 0.1445637 0.7034538 0.6958839 0.1445625 -0.6852206 0.6958824 0.2149894 0.6852220 0.6958806 0.2149904 -0.6599546 0.6958825 0.2832093 0.6599526 0.6958836 0.2832112 -0.6279167 0.6958825 0.3485227 0.6279176 0.6958829 0.3485205 -0.5894361 0.6958828 0.4102587 0.5894366 0.6958815 0.4102602 -0.5449068 0.6958819 0.4677873 0.5449055 0.6958834 0.4677865 -0.4947845 0.6958829 0.5205145 0.4947868 0.6958821 0.5205133 -0.4395874 0.6958824 0.5679001 0.4395874 0.6958824 0.5679001 -0.3798793 0.6958829 0.6094577 0.3798781 0.6958824 0.6094590 -0.3162726 0.6958820 0.6447634 0.3162709 0.6958825 0.6447637 -0.2494189 0.6958826 0.6734520 0.2494189 0.6958826 0.6734520 -0.1800074 0.6958824 0.6952302 0.1800080 0.6958826 0.6952298 -0.1087484 0.6958825 0.7098741 0.1087491 0.6958823 0.7098742 -0.0363739 0.6958825 0.7172339 0.0363739 0.6958825 0.7172339 -0.0363739 -0.6958825 -0.7172339 0.0363739 -0.6958825 -0.7172339 -0.1087491 -0.6958823 -0.7098742 0.1087484 -0.6958825 -0.7098741 -0.1800080 -0.6958826 -0.6952298 0.1800074 -0.6958824 -0.6952302 -0.2494189 -0.6958826 -0.6734520 0.2494189 -0.6958826 -0.6734520 -0.3162709 -0.6958825 -0.6447637 0.3162726 -0.6958820 -0.6447634 -0.3798781 -0.6958824 -0.6094590 0.3798793 -0.6958829 -0.6094577 -0.4395874 -0.6958824 -0.5679001 0.4395874 -0.6958824 -0.5679001 -0.4947868 -0.6958821 -0.5205133 0.4947845 -0.6958829 -0.5205145 -0.5449055 -0.6958834 -0.4677865 0.5449068 -0.6958819 -0.4677873 -0.5894366 -0.6958815 -0.4102602 0.5894361 -0.6958828 -0.4102587 -0.6279176 -0.6958829 -0.3485205 0.6279167 -0.6958825 -0.3485227 -0.6599526 -0.6958836 -0.2832112 0.6599546 -0.6958825 -0.2832093 -0.6852220 -0.6958806 -0.2149904 0.6852206 -0.6958824 -0.2149894 -0.7034538 -0.6958839 -0.1445625 0.7034548 -0.6958826 -0.1445637 -0.7144715 -0.6958818 -0.0726563 0.7144711 -0.6958824 -0.0726549 -0.7181555 -0.6958827 -0.0000001 -0.7144716 -0.6958817 0.0726565 -0.7034536 -0.6958842 0.1445623 0.7034547 -0.6958829 0.1445635 -0.6852223 -0.6958803 0.2149905 0.6852209 -0.6958821 0.2149894 -0.6599522 -0.6958836 0.2832121 0.6599542 -0.6958825 0.2832102 -0.6279175 -0.6958834 0.3485195 0.6279167 -0.6958831 0.3485218 -0.5894372 -0.6958807 0.4102606 0.5894367 -0.6958821 0.4102591 -0.5449045 -0.6958839 0.4677870 0.5449058 -0.6958823 0.4677878 -0.4947874 -0.6958823 0.5205125 0.4947851 -0.6958830 0.5205137 -0.4395878 -0.6958820 0.5679003 0.4395878 -0.6958820 0.5679003 -0.3798784 -0.6958830 0.6094582 0.3798796 -0.6958835 0.6094569 -0.3162712 -0.6958818 0.6447644 0.3162729 -0.6958812 0.6447641 -0.2494165 -0.6958826 0.6734529 0.2494165 -0.6958826 0.6734529 -0.1800084 -0.6958836 0.6952287 0.1800078 -0.6958834 0.6952291 -0.1087497 -0.6958813 0.7098752 0.1087490 -0.6958815 0.7098751 -0.0363724 -0.6958830 0.7172335 0.0363724 -0.6958830 0.7172335 -0.7034547 -0.6958829 -0.1445635 0.7034547 0.6958829 0.1445635 0.1087497 -0.6958813 -0.7098752 -0.0363724 -0.6958830 -0.7172335 0.0363724 -0.6958830 -0.7172335 -0.1087490 -0.6958815 -0.7098751 0.1800084 -0.6958836 -0.6952287 -0.1800078 -0.6958834 -0.6952291 0.2494165 -0.6958826 -0.6734529 -0.2494165 -0.6958826 -0.6734529 0.3162712 -0.6958818 -0.6447644 -0.3162729 -0.6958812 -0.6447641 0.3798784 -0.6958830 -0.6094582 -0.3798796 -0.6958835 -0.6094569 0.4395878 -0.6958820 -0.5679003 -0.4395878 -0.6958820 -0.5679003 0.4947874 -0.6958823 -0.5205125 -0.4947851 -0.6958830 -0.5205137 0.5449045 -0.6958839 -0.4677870 -0.5449058 -0.6958823 -0.4677878 0.5894372 -0.6958807 -0.4102606 -0.5894367 -0.6958821 -0.4102591 0.6279175 -0.6958834 -0.3485195 -0.6279167 -0.6958831 -0.3485218 0.6599522 -0.6958836 -0.2832121 -0.6599542 -0.6958825 -0.2832102 0.6852223 -0.6958803 -0.2149905 -0.6852209 -0.6958821 -0.2149894 0.7034536 -0.6958842 -0.1445623 0.7144716 -0.6958817 -0.0726565 0.7181555 -0.6958827 0.0000001 0.7144715 -0.6958818 0.0726563 -0.7144711 -0.6958824 0.0726549 0.7034538 -0.6958839 0.1445625 -0.7034548 -0.6958826 0.1445637 0.6852220 -0.6958806 0.2149904 -0.6852206 -0.6958824 0.2149894 0.6599526 -0.6958836 0.2832112 -0.6599546 -0.6958825 0.2832093 0.6279176 -0.6958829 0.3485205 -0.6279167 -0.6958825 0.3485227 0.5894366 -0.6958815 0.4102602 -0.5894361 -0.6958828 0.4102587 0.5449055 -0.6958834 0.4677865 -0.5449068 -0.6958819 0.4677873 0.4947868 -0.6958821 0.5205133 -0.4947845 -0.6958829 0.5205145 0.4395874 -0.6958824 0.5679001 -0.4395874 -0.6958824 0.5679001 0.3798781 -0.6958824 0.6094590 -0.3798793 -0.6958829 0.6094577 0.3162709 -0.6958825 0.6447637 -0.3162726 -0.6958820 0.6447634 0.2494189 -0.6958826 0.6734520 -0.2494189 -0.6958826 0.6734520 0.1800080 -0.6958826 0.6952298 -0.1800074 -0.6958824 0.6952302 0.1087491 -0.6958823 0.7098742 -0.1087484 -0.6958825 0.7098741 0.0363739 -0.6958825 0.7172339 -0.0363739 -0.6958825 0.7172339 0.0363739 0.6958825 -0.7172339 -0.0363739 0.6958825 -0.7172339 0.1087484 0.6958825 -0.7098741 -0.1087491 0.6958823 -0.7098742 0.1800074 0.6958824 -0.6952302 -0.1800080 0.6958826 -0.6952298 0.2494189 0.6958826 -0.6734520 -0.2494189 0.6958826 -0.6734520 0.3162726 0.6958820 -0.6447634 -0.3162709 0.6958825 -0.6447637 0.3798793 0.6958829 -0.6094577 -0.3798781 0.6958824 -0.6094590 0.4395874 0.6958824 -0.5679001 -0.4395874 0.6958824 -0.5679001 0.4947845 0.6958829 -0.5205145 -0.4947868 0.6958821 -0.5205133 0.5449068 0.6958819 -0.4677873 -0.5449055 0.6958834 -0.4677865 0.5894361 0.6958828 -0.4102587 -0.5894366 0.6958815 -0.4102602 0.6279167 0.6958825 -0.3485227 -0.6279176 0.6958829 -0.3485205 0.6599546 0.6958825 -0.2832093 -0.6599526 0.6958836 -0.2832112 0.6852206 0.6958824 -0.2149894 -0.6852220 0.6958806 -0.2149904 0.7034548 0.6958826 -0.1445637 -0.7034538 0.6958839 -0.1445625 0.7144711 0.6958824 -0.0726549 -0.7144715 0.6958818 -0.0726563 -0.7181555 0.6958827 -0.0000001 -0.7144716 0.6958817 0.0726565 -0.7034536 0.6958842 0.1445623 0.6852209 0.6958821 0.2149894 -0.6852223 0.6958803 0.2149905 0.6599542 0.6958825 0.2832102 -0.6599522 0.6958836 0.2832121 0.6279167 0.6958831 0.3485218 -0.6279175 0.6958834 0.3485195 0.5894367 0.6958821 0.4102591 -0.5894372 0.6958807 0.4102606 0.5449058 0.6958823 0.4677878 -0.5449045 0.6958839 0.4677870 0.4947851 0.6958830 0.5205137 -0.4947874 0.6958823 0.5205125 0.4395878 0.6958820 0.5679003 -0.4395878 0.6958820 0.5679003 0.3798796 0.6958835 0.6094569 -0.3798784 0.6958830 0.6094582 0.3162729 0.6958812 0.6447641 -0.3162712 0.6958818 0.6447644 0.2494165 0.6958826 0.6734529 -0.2494165 0.6958826 0.6734529 0.1800078 0.6958834 0.6952291 -0.1800084 0.6958836 0.6952287 0.1087490 0.6958815 0.7098751 -0.1087497 0.6958813 0.7098752 0.0363724 0.6958830 0.7172335 -0.0363724 0.6958830 0.7172335 - - - - - - - - - - - - - - -

0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 3 35 3 36 36 3 0 36 0 37 37 0 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 47 47 46 48 47 48 49 49 48 50 49 50 51 51 50 52 51 52 53 53 52 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 59 60 61 61 60 62 61 62 63 63 62 64 63 64 65 65 64 66 65 66 67 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 73 75 74 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 80 81 82 81 83 82 82 83 84 83 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 5 98 98 5 99 5 4 99 99 4 100 4 101 100 100 101 102 101 103 102 102 103 104 103 105 104 104 105 106 105 107 106 106 107 108 107 109 108 108 109 110 109 111 110 110 111 112 111 113 112 112 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 118 119 120 119 121 120 120 121 122 121 123 122 122 123 124 123 125 124 124 125 126 127 126 125 3 128 1 128 3 34 101 4 129 6 129 4 130 131 132 131 130 133 133 130 134 133 134 135 135 134 136 135 136 137 137 136 138 137 138 139 139 138 140 139 140 141 141 140 142 141 142 143 143 142 144 143 144 145 145 144 146 145 146 147 147 146 148 147 148 149 149 148 150 149 150 151 151 150 152 151 152 153 153 152 154 153 154 155 155 154 156 155 156 128 128 156 157 128 157 1 1 157 158 1 158 2 2 158 159 2 159 160 160 159 161 160 161 162 162 161 163 162 163 164 164 163 165 164 165 166 166 165 167 166 167 168 168 167 169 168 169 170 170 169 171 170 171 172 172 171 173 172 173 174 174 173 175 174 175 176 176 175 177 176 177 178 178 177 179 178 179 180 180 179 181 180 181 182 182 181 183 182 183 184 184 183 185 184 185 186 186 185 187 186 187 188 189 190 191 190 192 191 191 192 193 192 194 193 193 194 195 194 196 195 195 196 197 196 198 197 197 198 199 198 200 199 199 200 201 200 202 201 201 202 203 202 204 203 203 204 205 204 206 205 205 206 207 206 208 207 207 208 209 208 210 209 209 210 211 210 212 211 211 212 213 212 214 213 213 214 215 214 216 215 215 216 217 216 218 217 217 218 7 218 219 7 7 219 6 219 220 6 6 220 129 220 221 129 129 221 222 221 223 222 222 223 224 223 225 224 224 225 226 225 227 226 226 227 228 227 229 228 228 229 230 229 231 230 230 231 232 231 233 232 232 233 234 233 235 234 234 235 236 235 237 236 236 237 238 237 239 238 238 239 240 239 241 240 240 241 242 241 243 242 242 243 244 243 245 244 244 245 246 247 246 245 38 2 160 2 38 0 5 97 7 217 7 97 176 52 174 52 176 54 81 201 83 203 83 201 178 54 176 54 178 56 79 199 81 201 81 199 180 56 178 56 180 58 77 197 79 199 79 197 182 58 180 58 182 60 75 195 77 197 77 195 184 60 182 60 184 62 73 193 75 195 75 193 186 62 184 62 186 64 71 191 73 193 73 191 188 64 186 64 188 66 69 189 71 191 71 189 187 66 188 66 187 67 68 190 69 189 69 190 185 67 187 67 185 65 70 192 68 190 68 192 183 65 185 65 183 63 72 194 70 192 70 194 181 63 183 63 181 61 74 196 72 194 72 196 179 61 181 61 179 59 76 198 74 196 74 198 177 59 179 59 177 57 78 200 76 198 76 200 175 57 177 57 175 55 80 202 78 200 78 202 173 55 175 55 173 53 82 204 80 202 80 204 51 173 171 173 51 53 82 84 204 206 204 84 49 171 169 171 49 51 84 86 206 208 206 86 47 169 167 169 47 49 86 88 208 210 208 88 45 167 165 167 45 47 88 90 210 212 210 90 43 165 163 165 43 45 90 92 212 214 212 92 41 163 161 163 41 43 92 94 214 216 214 94 39 161 159 161 39 41 94 96 216 218 216 96 37 159 158 159 37 39 96 98 218 219 218 98 36 158 157 158 36 37 98 99 219 220 219 99 35 157 156 157 35 36 99 100 220 221 220 100 33 156 154 156 33 35 100 102 221 223 221 102 31 154 152 154 31 33 102 104 223 225 223 104 29 152 150 152 29 31 104 106 225 227 225 106 148 29 150 29 148 27 108 229 106 227 106 229 25 148 146 148 25 27 108 110 229 231 229 110 23 146 144 146 23 25 110 112 231 233 231 112 23 142 21 142 23 144 233 112 235 114 235 112 21 140 19 140 21 142 235 114 237 116 237 114 19 138 17 138 19 140 237 116 239 118 239 116 17 136 15 136 17 138 239 118 241 120 241 118 15 134 13 134 15 136 241 120 243 122 243 120 13 130 11 130 13 134 243 122 245 124 245 122 11 132 9 132 11 130 245 124 247 126 247 124 9 131 10 131 9 132 247 126 246 127 246 126 10 133 8 133 10 131 246 127 244 125 244 127 8 135 12 135 8 133 244 125 242 123 242 125 12 137 14 137 12 135 242 123 240 121 240 123 14 139 16 139 14 137 240 121 238 119 238 121 16 141 18 141 16 139 238 119 236 117 236 119 18 143 20 143 18 141 236 117 234 115 234 117 20 145 22 145 20 143 234 115 232 113 232 115 24 145 147 145 24 22 113 111 232 230 232 111 26 147 149 147 26 24 111 109 230 228 230 109 28 149 151 149 28 26 109 107 228 226 228 107 153 28 151 28 153 30 105 224 107 226 107 224 32 153 155 153 32 30 105 103 224 222 224 103 34 155 128 155 34 32 103 101 222 129 222 101 40 160 162 160 40 38 97 95 217 215 217 95 42 162 164 162 42 40 95 93 215 213 215 93 44 164 166 164 44 42 93 91 213 211 213 91 46 166 168 166 46 44 91 89 211 209 211 89 48 168 170 168 48 46 89 87 209 207 209 87 50 170 172 170 50 48 87 85 207 205 207 85 52 172 174 172 52 50 85 83 205 203 205 83

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0.1568627 0.1411765 0.1529412 1.0000000 - - - - - - - - - - - 0.1450980 0.1450980 0.1568627 0.1686275 - - - 0.8313725 0.8313725 0.8313725 0.8313725 - - - 1.0000000 - - - - - - - - - - - 1.0000000 1.0000000 1.0000000 1.0000000 - - - - - - - - - - - 0.9333333 0.9490196 1.0000000 0.1686275 - - - 0.8313725 0.8313725 0.8313725 0.8313725 - - - 1.0000000 - - - - - - - - - - - 0.9411765 0.9882353 1.0000000 0.1686275 - - - 0.8313725 0.8313725 0.8313725 0.8313725 - - - 1.0000000 - - - - - - - - - - - 0.9411765 0.9882353 1.0000000 0.3882353 - - - 0.6117647 0.6117647 0.6117647 0.6117647 - - - 1.0000000 - - - - - - - - - - - 0.6352941 0.7333333 1.0000000 0.3882353 - - - 0.6117647 0.6117647 0.6117647 0.6117647 - - - 1.0000000 - - - - - - - - - -
diff --git a/files/vehicles/sFly_Hexrotor/sfly-hex.skp b/files/vehicles/sFly_Hexrotor/sfly-hex.skp deleted file mode 100644 index 2333efaed7d732f98a0800d9a86d7930ed826c17..0000000000000000000000000000000000000000 Binary files a/files/vehicles/sFly_Hexrotor/sfly-hex.skp and /dev/null differ diff --git a/files/xplane/QRO_X/QRO_X.acf b/files/xplane/QRO_X/QRO_X.acf deleted file mode 100755 index 68aa90c3859bbd7a4347804a7b52bd02c4e4c5f8..0000000000000000000000000000000000000000 Binary files a/files/xplane/QRO_X/QRO_X.acf and /dev/null differ diff --git a/files/xplane/QRO_X/QRO_X_paint.png b/files/xplane/QRO_X/QRO_X_paint.png deleted file mode 100755 index 502efd6824fa7a5bac8f8ca61a688090d6e5a466..0000000000000000000000000000000000000000 Binary files a/files/xplane/QRO_X/QRO_X_paint.png and /dev/null differ diff --git a/files/flightgear/Aircraft/EasyStar/EasyStar-set.xml b/flightgear/Aircraft/EasyStar/EasyStar-set.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/EasyStar-set.xml rename to flightgear/Aircraft/EasyStar/EasyStar-set.xml diff --git a/files/flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml b/flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml rename to flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml diff --git a/files/flightgear/Aircraft/EasyStar/Engines/prop6x5.xml b/flightgear/Aircraft/EasyStar/Engines/prop6x5.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Engines/prop6x5.xml rename to flightgear/Aircraft/EasyStar/Engines/prop6x5.xml diff --git a/files/flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg b/flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg rename to flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg diff --git a/files/flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg b/flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg rename to flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg diff --git a/files/flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg b/flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg rename to flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg diff --git a/files/flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg b/flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg rename to flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg diff --git a/files/flightgear/Aircraft/EasyStar/Models/body.ac b/flightgear/Aircraft/EasyStar/Models/body.ac similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/body.ac rename to flightgear/Aircraft/EasyStar/Models/body.ac diff --git a/files/flightgear/Aircraft/EasyStar/Models/easystar.ac b/flightgear/Aircraft/EasyStar/Models/easystar.ac similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/easystar.ac rename to flightgear/Aircraft/EasyStar/Models/easystar.ac diff --git a/files/flightgear/Aircraft/EasyStar/Models/easystar.xml b/flightgear/Aircraft/EasyStar/Models/easystar.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/easystar.xml rename to flightgear/Aircraft/EasyStar/Models/easystar.xml diff --git a/files/flightgear/Aircraft/EasyStar/Models/wing.jpg b/flightgear/Aircraft/EasyStar/Models/wing.jpg similarity index 100% rename from files/flightgear/Aircraft/EasyStar/Models/wing.jpg rename to flightgear/Aircraft/EasyStar/Models/wing.jpg diff --git a/files/flightgear/Aircraft/EasyStar/easystar.xml b/flightgear/Aircraft/EasyStar/easystar.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/easystar.xml rename to flightgear/Aircraft/EasyStar/easystar.xml diff --git a/files/flightgear/Aircraft/EasyStar/readme.txt b/flightgear/Aircraft/EasyStar/readme.txt similarity index 100% rename from files/flightgear/Aircraft/EasyStar/readme.txt rename to flightgear/Aircraft/EasyStar/readme.txt diff --git a/files/flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt b/flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt similarity index 100% rename from files/flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt rename to flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt diff --git a/files/flightgear/Aircraft/EasyStar/reset00.xml b/flightgear/Aircraft/EasyStar/reset00.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/reset00.xml rename to flightgear/Aircraft/EasyStar/reset00.xml diff --git a/files/flightgear/Aircraft/EasyStar/reset01.xml b/flightgear/Aircraft/EasyStar/reset01.xml similarity index 100% rename from files/flightgear/Aircraft/EasyStar/reset01.xml rename to flightgear/Aircraft/EasyStar/reset01.xml diff --git a/files/flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 b/flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 similarity index 100% rename from files/flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 rename to flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 diff --git a/files/flightgear/Aircraft/Malolo1/COPYING b/flightgear/Aircraft/Malolo1/COPYING similarity index 100% rename from files/flightgear/Aircraft/Malolo1/COPYING rename to flightgear/Aircraft/Malolo1/COPYING diff --git a/files/flightgear/Aircraft/Malolo1/Engines/18x8.xml b/flightgear/Aircraft/Malolo1/Engines/18x8.xml similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Engines/18x8.xml rename to flightgear/Aircraft/Malolo1/Engines/18x8.xml diff --git a/files/flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml b/flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml rename to flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml diff --git a/files/flightgear/Aircraft/Malolo1/Malolo1-set.xml b/flightgear/Aircraft/Malolo1/Malolo1-set.xml similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Malolo1-set.xml rename to flightgear/Aircraft/Malolo1/Malolo1-set.xml diff --git a/files/flightgear/Aircraft/Malolo1/Malolo1-splash.rgb b/flightgear/Aircraft/Malolo1/Malolo1-splash.rgb similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Malolo1-splash.rgb rename to flightgear/Aircraft/Malolo1/Malolo1-splash.rgb diff --git a/files/flightgear/Aircraft/Malolo1/Malolo1.xml b/flightgear/Aircraft/Malolo1/Malolo1.xml similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Malolo1.xml rename to flightgear/Aircraft/Malolo1/Malolo1.xml diff --git a/files/flightgear/Aircraft/Malolo1/Models/DSC01758.rgb b/flightgear/Aircraft/Malolo1/Models/DSC01758.rgb similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Models/DSC01758.rgb rename to flightgear/Aircraft/Malolo1/Models/DSC01758.rgb diff --git a/files/flightgear/Aircraft/Malolo1/Models/Malolo1.ac b/flightgear/Aircraft/Malolo1/Models/Malolo1.ac similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Models/Malolo1.ac rename to flightgear/Aircraft/Malolo1/Models/Malolo1.ac diff --git a/files/flightgear/Aircraft/Malolo1/Models/Malolo1.xml b/flightgear/Aircraft/Malolo1/Models/Malolo1.xml similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Models/Malolo1.xml rename to flightgear/Aircraft/Malolo1/Models/Malolo1.xml diff --git a/files/flightgear/Aircraft/Malolo1/Nasal/catapult.nas b/flightgear/Aircraft/Malolo1/Nasal/catapult.nas similarity index 100% rename from files/flightgear/Aircraft/Malolo1/Nasal/catapult.nas rename to flightgear/Aircraft/Malolo1/Nasal/catapult.nas diff --git a/files/flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt b/flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt similarity index 100% rename from files/flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt rename to flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt diff --git a/files/flightgear/Aircraft/Malolo1/thumbnail.jpg b/flightgear/Aircraft/Malolo1/thumbnail.jpg similarity index 100% rename from files/flightgear/Aircraft/Malolo1/thumbnail.jpg rename to flightgear/Aircraft/Malolo1/thumbnail.jpg diff --git a/files/flightgear/Aircraft/Rascal/Dialogs/config.xml b/flightgear/Aircraft/Rascal/Dialogs/config.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Dialogs/config.xml rename to flightgear/Aircraft/Rascal/Dialogs/config.xml diff --git a/files/flightgear/Aircraft/Rascal/Engines/18x8.xml b/flightgear/Aircraft/Rascal/Engines/18x8.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Engines/18x8.xml rename to flightgear/Aircraft/Rascal/Engines/18x8.xml diff --git a/files/flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml b/flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml rename to flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml diff --git a/files/flightgear/Aircraft/Rascal/Models/Rascal.rgb b/flightgear/Aircraft/Rascal/Models/Rascal.rgb similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/Rascal.rgb rename to flightgear/Aircraft/Rascal/Models/Rascal.rgb diff --git a/files/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac b/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac rename to flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac diff --git a/files/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change b/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change rename to flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change diff --git a/files/flightgear/Aircraft/Rascal/Models/Rascal110.xml b/flightgear/Aircraft/Rascal/Models/Rascal110.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/Rascal110.xml rename to flightgear/Aircraft/Rascal/Models/Rascal110.xml diff --git a/files/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac b/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac rename to flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac diff --git a/files/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml b/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml rename to flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml diff --git a/files/flightgear/Aircraft/Rascal/Models/fix.sh b/flightgear/Aircraft/Rascal/Models/fix.sh similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/fix.sh rename to flightgear/Aircraft/Rascal/Models/fix.sh diff --git a/files/flightgear/Aircraft/Rascal/Models/smoke.png b/flightgear/Aircraft/Rascal/Models/smoke.png similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/smoke.png rename to flightgear/Aircraft/Rascal/Models/smoke.png diff --git a/files/flightgear/Aircraft/Rascal/Models/smokeW.xml b/flightgear/Aircraft/Rascal/Models/smokeW.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Models/smokeW.xml rename to flightgear/Aircraft/Rascal/Models/smokeW.xml diff --git a/files/flightgear/Aircraft/Rascal/README.Rascal b/flightgear/Aircraft/Rascal/README.Rascal similarity index 100% rename from files/flightgear/Aircraft/Rascal/README.Rascal rename to flightgear/Aircraft/Rascal/README.Rascal diff --git a/files/flightgear/Aircraft/Rascal/Rascal-keyboard.xml b/flightgear/Aircraft/Rascal/Rascal-keyboard.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal-keyboard.xml rename to flightgear/Aircraft/Rascal/Rascal-keyboard.xml diff --git a/files/flightgear/Aircraft/Rascal/Rascal-submodels.xml b/flightgear/Aircraft/Rascal/Rascal-submodels.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal-submodels.xml rename to flightgear/Aircraft/Rascal/Rascal-submodels.xml diff --git a/files/flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml b/flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml rename to flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml diff --git a/files/flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml b/flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml rename to flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml diff --git a/files/flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml b/flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml rename to flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml diff --git a/files/flightgear/Aircraft/Rascal/Rascal110-YASim.xml b/flightgear/Aircraft/Rascal/Rascal110-YASim.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal110-YASim.xml rename to flightgear/Aircraft/Rascal/Rascal110-YASim.xml diff --git a/files/flightgear/Aircraft/Rascal/Rascal110-splash.rgb b/flightgear/Aircraft/Rascal/Rascal110-splash.rgb similarity index 100% rename from files/flightgear/Aircraft/Rascal/Rascal110-splash.rgb rename to flightgear/Aircraft/Rascal/Rascal110-splash.rgb diff --git a/files/flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 b/flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 rename to flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 diff --git a/files/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml b/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml rename to flightgear/Aircraft/Rascal/Systems/110-autopilot.xml diff --git a/files/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a b/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a rename to flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a diff --git a/files/flightgear/Aircraft/Rascal/Systems/airdata.nas b/flightgear/Aircraft/Rascal/Systems/airdata.nas similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/airdata.nas rename to flightgear/Aircraft/Rascal/Systems/airdata.nas diff --git a/files/flightgear/Aircraft/Rascal/Systems/electrical.xml b/flightgear/Aircraft/Rascal/Systems/electrical.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/electrical.xml rename to flightgear/Aircraft/Rascal/Systems/electrical.xml diff --git a/files/flightgear/Aircraft/Rascal/Systems/main.nas b/flightgear/Aircraft/Rascal/Systems/main.nas similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/main.nas rename to flightgear/Aircraft/Rascal/Systems/main.nas diff --git a/files/flightgear/Aircraft/Rascal/Systems/ugear.nas b/flightgear/Aircraft/Rascal/Systems/ugear.nas similarity index 100% rename from files/flightgear/Aircraft/Rascal/Systems/ugear.nas rename to flightgear/Aircraft/Rascal/Systems/ugear.nas diff --git a/files/flightgear/Aircraft/Rascal/initfile.xml b/flightgear/Aircraft/Rascal/initfile.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal/initfile.xml rename to flightgear/Aircraft/Rascal/initfile.xml diff --git a/files/flightgear/Aircraft/Rascal/thumbnail.jpg b/flightgear/Aircraft/Rascal/thumbnail.jpg similarity index 100% rename from files/flightgear/Aircraft/Rascal/thumbnail.jpg rename to flightgear/Aircraft/Rascal/thumbnail.jpg diff --git a/files/flightgear/Aircraft/Rascal110/Dialogs/config.xml b/flightgear/Aircraft/Rascal110/Dialogs/config.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Dialogs/config.xml rename to flightgear/Aircraft/Rascal110/Dialogs/config.xml diff --git a/files/flightgear/Aircraft/Rascal110/Engines/18x8.xml b/flightgear/Aircraft/Rascal110/Engines/18x8.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Engines/18x8.xml rename to flightgear/Aircraft/Rascal110/Engines/18x8.xml diff --git a/files/flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml b/flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml rename to flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml diff --git a/files/flightgear/Aircraft/Rascal110/Models/Rascal.rgb b/flightgear/Aircraft/Rascal110/Models/Rascal.rgb similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/Rascal.rgb rename to flightgear/Aircraft/Rascal110/Models/Rascal.rgb diff --git a/files/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac b/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac rename to flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac diff --git a/files/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change b/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change rename to flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change diff --git a/files/flightgear/Aircraft/Rascal110/Models/Rascal110.xml b/flightgear/Aircraft/Rascal110/Models/Rascal110.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/Rascal110.xml rename to flightgear/Aircraft/Rascal110/Models/Rascal110.xml diff --git a/files/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac b/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac rename to flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac diff --git a/files/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml b/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml rename to flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml diff --git a/files/flightgear/Aircraft/Rascal110/Models/fix.sh b/flightgear/Aircraft/Rascal110/Models/fix.sh similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/fix.sh rename to flightgear/Aircraft/Rascal110/Models/fix.sh diff --git a/files/flightgear/Aircraft/Rascal110/Models/smoke.png b/flightgear/Aircraft/Rascal110/Models/smoke.png similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/smoke.png rename to flightgear/Aircraft/Rascal110/Models/smoke.png diff --git a/files/flightgear/Aircraft/Rascal110/Models/smokeW.xml b/flightgear/Aircraft/Rascal110/Models/smokeW.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Models/smokeW.xml rename to flightgear/Aircraft/Rascal110/Models/smokeW.xml diff --git a/files/flightgear/Aircraft/Rascal110/README.Rascal b/flightgear/Aircraft/Rascal110/README.Rascal similarity index 100% rename from files/flightgear/Aircraft/Rascal110/README.Rascal rename to flightgear/Aircraft/Rascal110/README.Rascal diff --git a/files/flightgear/Aircraft/Rascal110/Rascal-keyboard.xml b/flightgear/Aircraft/Rascal110/Rascal-keyboard.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal-keyboard.xml rename to flightgear/Aircraft/Rascal110/Rascal-keyboard.xml diff --git a/files/flightgear/Aircraft/Rascal110/Rascal-submodels.xml b/flightgear/Aircraft/Rascal110/Rascal-submodels.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal-submodels.xml rename to flightgear/Aircraft/Rascal110/Rascal-submodels.xml diff --git a/files/flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml b/flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml rename to flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml diff --git a/files/flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml b/flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml rename to flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml diff --git a/files/flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml b/flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml rename to flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml diff --git a/files/flightgear/Aircraft/Rascal110/Rascal110-YASim.xml b/flightgear/Aircraft/Rascal110/Rascal110-YASim.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal110-YASim.xml rename to flightgear/Aircraft/Rascal110/Rascal110-YASim.xml diff --git a/files/flightgear/Aircraft/Rascal110/Rascal110-splash.rgb b/flightgear/Aircraft/Rascal110/Rascal110-splash.rgb similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Rascal110-splash.rgb rename to flightgear/Aircraft/Rascal110/Rascal110-splash.rgb diff --git a/files/flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 b/flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 rename to flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 diff --git a/files/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml b/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml rename to flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml diff --git a/files/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a b/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a rename to flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a diff --git a/files/flightgear/Aircraft/Rascal110/Systems/airdata.nas b/flightgear/Aircraft/Rascal110/Systems/airdata.nas similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/airdata.nas rename to flightgear/Aircraft/Rascal110/Systems/airdata.nas diff --git a/files/flightgear/Aircraft/Rascal110/Systems/electrical.xml b/flightgear/Aircraft/Rascal110/Systems/electrical.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/electrical.xml rename to flightgear/Aircraft/Rascal110/Systems/electrical.xml diff --git a/files/flightgear/Aircraft/Rascal110/Systems/main.nas b/flightgear/Aircraft/Rascal110/Systems/main.nas similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/main.nas rename to flightgear/Aircraft/Rascal110/Systems/main.nas diff --git a/files/flightgear/Aircraft/Rascal110/Systems/ugear.nas b/flightgear/Aircraft/Rascal110/Systems/ugear.nas similarity index 100% rename from files/flightgear/Aircraft/Rascal110/Systems/ugear.nas rename to flightgear/Aircraft/Rascal110/Systems/ugear.nas diff --git a/files/flightgear/Aircraft/Rascal110/initfile.xml b/flightgear/Aircraft/Rascal110/initfile.xml similarity index 100% rename from files/flightgear/Aircraft/Rascal110/initfile.xml rename to flightgear/Aircraft/Rascal110/initfile.xml diff --git a/files/flightgear/Aircraft/Rascal110/thumbnail.jpg b/flightgear/Aircraft/Rascal110/thumbnail.jpg similarity index 100% rename from files/flightgear/Aircraft/Rascal110/thumbnail.jpg rename to flightgear/Aircraft/Rascal110/thumbnail.jpg diff --git a/files/flightgear/Aircraft/YardStick/Engines/18x8.xml b/flightgear/Aircraft/YardStick/Engines/18x8.xml similarity index 100% rename from files/flightgear/Aircraft/YardStick/Engines/18x8.xml rename to flightgear/Aircraft/YardStick/Engines/18x8.xml diff --git a/files/flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml b/flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml similarity index 100% rename from files/flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml rename to flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml diff --git a/files/flightgear/Aircraft/YardStick/Models/yardstik.ac b/flightgear/Aircraft/YardStick/Models/yardstik.ac similarity index 100% rename from files/flightgear/Aircraft/YardStick/Models/yardstik.ac rename to flightgear/Aircraft/YardStick/Models/yardstik.ac diff --git a/files/flightgear/Aircraft/YardStick/Models/yardstik.xml b/flightgear/Aircraft/YardStick/Models/yardstik.xml similarity index 100% rename from files/flightgear/Aircraft/YardStick/Models/yardstik.xml rename to flightgear/Aircraft/YardStick/Models/yardstik.xml diff --git a/files/flightgear/Aircraft/YardStick/YardStik-set.xml b/flightgear/Aircraft/YardStick/YardStik-set.xml similarity index 100% rename from files/flightgear/Aircraft/YardStick/YardStik-set.xml rename to flightgear/Aircraft/YardStick/YardStik-set.xml diff --git a/files/flightgear/Aircraft/YardStick/YardStik-splash.rgb b/flightgear/Aircraft/YardStick/YardStik-splash.rgb similarity index 100% rename from files/flightgear/Aircraft/YardStick/YardStik-splash.rgb rename to flightgear/Aircraft/YardStick/YardStik-splash.rgb diff --git a/files/flightgear/Aircraft/YardStick/YardStik.xml b/flightgear/Aircraft/YardStick/YardStik.xml similarity index 100% rename from files/flightgear/Aircraft/YardStick/YardStik.xml rename to flightgear/Aircraft/YardStick/YardStik.xml diff --git a/files/flightgear/Aircraft/YardStick/thumbnail.jpg b/flightgear/Aircraft/YardStick/thumbnail.jpg similarity index 100% rename from files/flightgear/Aircraft/YardStick/thumbnail.jpg rename to flightgear/Aircraft/YardStick/thumbnail.jpg diff --git a/files/flightgear/Aircraft/arducopter/Engines/a2830-12.xml b/flightgear/Aircraft/arducopter/Engines/a2830-12.xml similarity index 100% rename from files/flightgear/Aircraft/arducopter/Engines/a2830-12.xml rename to flightgear/Aircraft/arducopter/Engines/a2830-12.xml diff --git a/files/flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml b/flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml similarity index 100% rename from files/flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml rename to flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml diff --git a/files/flightgear/Aircraft/arducopter/Models/arducopter.ac b/flightgear/Aircraft/arducopter/Models/arducopter.ac similarity index 100% rename from files/flightgear/Aircraft/arducopter/Models/arducopter.ac rename to flightgear/Aircraft/arducopter/Models/arducopter.ac diff --git a/files/flightgear/Aircraft/arducopter/Models/arducopter.xml b/flightgear/Aircraft/arducopter/Models/arducopter.xml similarity index 100% rename from files/flightgear/Aircraft/arducopter/Models/arducopter.xml rename to flightgear/Aircraft/arducopter/Models/arducopter.xml diff --git a/files/flightgear/Aircraft/arducopter/Models/quad.3ds b/flightgear/Aircraft/arducopter/Models/quad.3ds similarity index 100% rename from files/flightgear/Aircraft/arducopter/Models/quad.3ds rename to flightgear/Aircraft/arducopter/Models/quad.3ds diff --git a/files/flightgear/Aircraft/arducopter/Models/quad.skp b/flightgear/Aircraft/arducopter/Models/quad.skp similarity index 100% rename from files/flightgear/Aircraft/arducopter/Models/quad.skp rename to flightgear/Aircraft/arducopter/Models/quad.skp diff --git a/files/flightgear/Aircraft/arducopter/arducopter-set.xml b/flightgear/Aircraft/arducopter/arducopter-set.xml similarity index 100% rename from files/flightgear/Aircraft/arducopter/arducopter-set.xml rename to flightgear/Aircraft/arducopter/arducopter-set.xml diff --git a/files/flightgear/Aircraft/arducopter/arducopter.jpg b/flightgear/Aircraft/arducopter/arducopter.jpg similarity index 100% rename from files/flightgear/Aircraft/arducopter/arducopter.jpg rename to flightgear/Aircraft/arducopter/arducopter.jpg diff --git a/files/flightgear/Aircraft/arducopter/arducopter.xml b/flightgear/Aircraft/arducopter/arducopter.xml similarity index 100% rename from files/flightgear/Aircraft/arducopter/arducopter.xml rename to flightgear/Aircraft/arducopter/arducopter.xml diff --git a/files/flightgear/Aircraft/arducopter/data/arducopter_half_step.txt b/flightgear/Aircraft/arducopter/data/arducopter_half_step.txt similarity index 100% rename from files/flightgear/Aircraft/arducopter/data/arducopter_half_step.txt rename to flightgear/Aircraft/arducopter/data/arducopter_half_step.txt diff --git a/files/flightgear/Aircraft/arducopter/data/arducopter_step.txt b/flightgear/Aircraft/arducopter/data/arducopter_step.txt similarity index 100% rename from files/flightgear/Aircraft/arducopter/data/arducopter_step.txt rename to flightgear/Aircraft/arducopter/data/arducopter_step.txt diff --git a/files/flightgear/Aircraft/arducopter/formatXml.sh b/flightgear/Aircraft/arducopter/formatXml.sh similarity index 100% rename from files/flightgear/Aircraft/arducopter/formatXml.sh rename to flightgear/Aircraft/arducopter/formatXml.sh diff --git a/files/flightgear/Aircraft/arducopter/initfile.xml b/flightgear/Aircraft/arducopter/initfile.xml similarity index 100% rename from files/flightgear/Aircraft/arducopter/initfile.xml rename to flightgear/Aircraft/arducopter/initfile.xml diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml b/flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml rename to flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml b/flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml rename to flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml b/flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml rename to flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml b/flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml rename to flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml b/flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml rename to flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png diff --git a/files/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png b/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png rename to flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png diff --git a/files/flightgear/Aircraft/jeep/Models/GPA.xml b/flightgear/Aircraft/jeep/Models/GPA.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/GPA.xml rename to flightgear/Aircraft/jeep/Models/GPA.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Jeep.xml b/flightgear/Aircraft/jeep/Models/Jeep.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Jeep.xml rename to flightgear/Aircraft/jeep/Models/Jeep.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/airborn.xml b/flightgear/Aircraft/jeep/Models/Liveries/airborn.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/airborn.xml rename to flightgear/Aircraft/jeep/Models/Liveries/airborn.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/army-g.xml b/flightgear/Aircraft/jeep/Models/Liveries/army-g.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/army-g.xml rename to flightgear/Aircraft/jeep/Models/Liveries/army-g.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/hippie.xml b/flightgear/Aircraft/jeep/Models/Liveries/hippie.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/hippie.xml rename to flightgear/Aircraft/jeep/Models/Liveries/hippie.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png b/flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png rename to flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png b/flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png rename to flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png b/flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png rename to flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png b/flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png rename to flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/navy.xml b/flightgear/Aircraft/jeep/Models/Liveries/navy.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/navy.xml rename to flightgear/Aircraft/jeep/Models/Liveries/navy.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/raf.xml b/flightgear/Aircraft/jeep/Models/Liveries/raf.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/raf.xml rename to flightgear/Aircraft/jeep/Models/Liveries/raf.xml diff --git a/files/flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png b/flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png rename to flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png diff --git a/files/flightgear/Aircraft/jeep/Models/cabin.png b/flightgear/Aircraft/jeep/Models/cabin.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/cabin.png rename to flightgear/Aircraft/jeep/Models/cabin.png diff --git a/files/flightgear/Aircraft/jeep/Models/current.ac b/flightgear/Aircraft/jeep/Models/current.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/current.ac rename to flightgear/Aircraft/jeep/Models/current.ac diff --git a/files/flightgear/Aircraft/jeep/Models/current.rgb b/flightgear/Aircraft/jeep/Models/current.rgb similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/current.rgb rename to flightgear/Aircraft/jeep/Models/current.rgb diff --git a/files/flightgear/Aircraft/jeep/Models/current.xml b/flightgear/Aircraft/jeep/Models/current.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/current.xml rename to flightgear/Aircraft/jeep/Models/current.xml diff --git a/files/flightgear/Aircraft/jeep/Models/fuel.ac b/flightgear/Aircraft/jeep/Models/fuel.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/fuel.ac rename to flightgear/Aircraft/jeep/Models/fuel.ac diff --git a/files/flightgear/Aircraft/jeep/Models/fuel.rgb b/flightgear/Aircraft/jeep/Models/fuel.rgb similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/fuel.rgb rename to flightgear/Aircraft/jeep/Models/fuel.rgb diff --git a/files/flightgear/Aircraft/jeep/Models/fuelgauge.xml b/flightgear/Aircraft/jeep/Models/fuelgauge.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/fuelgauge.xml rename to flightgear/Aircraft/jeep/Models/fuelgauge.xml diff --git a/files/flightgear/Aircraft/jeep/Models/gpa.ac b/flightgear/Aircraft/jeep/Models/gpa.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/gpa.ac rename to flightgear/Aircraft/jeep/Models/gpa.ac diff --git a/files/flightgear/Aircraft/jeep/Models/gpatrans.ac b/flightgear/Aircraft/jeep/Models/gpatrans.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/gpatrans.ac rename to flightgear/Aircraft/jeep/Models/gpatrans.ac diff --git a/files/flightgear/Aircraft/jeep/Models/gpatrans.xml b/flightgear/Aircraft/jeep/Models/gpatrans.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/gpatrans.xml rename to flightgear/Aircraft/jeep/Models/gpatrans.xml diff --git a/files/flightgear/Aircraft/jeep/Models/jeep-1.png b/flightgear/Aircraft/jeep/Models/jeep-1.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/jeep-1.png rename to flightgear/Aircraft/jeep/Models/jeep-1.png diff --git a/files/flightgear/Aircraft/jeep/Models/jeep-2.png b/flightgear/Aircraft/jeep/Models/jeep-2.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/jeep-2.png rename to flightgear/Aircraft/jeep/Models/jeep-2.png diff --git a/files/flightgear/Aircraft/jeep/Models/jeep.ac b/flightgear/Aircraft/jeep/Models/jeep.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/jeep.ac rename to flightgear/Aircraft/jeep/Models/jeep.ac diff --git a/files/flightgear/Aircraft/jeep/Models/pilot-b.ac b/flightgear/Aircraft/jeep/Models/pilot-b.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/pilot-b.ac rename to flightgear/Aircraft/jeep/Models/pilot-b.ac diff --git a/files/flightgear/Aircraft/jeep/Models/pilot.xml b/flightgear/Aircraft/jeep/Models/pilot.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/pilot.xml rename to flightgear/Aircraft/jeep/Models/pilot.xml diff --git a/files/flightgear/Aircraft/jeep/Models/pilot1.rgb b/flightgear/Aircraft/jeep/Models/pilot1.rgb similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/pilot1.rgb rename to flightgear/Aircraft/jeep/Models/pilot1.rgb diff --git a/files/flightgear/Aircraft/jeep/Models/roof.ac b/flightgear/Aircraft/jeep/Models/roof.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/roof.ac rename to flightgear/Aircraft/jeep/Models/roof.ac diff --git a/files/flightgear/Aircraft/jeep/Models/softroof.png b/flightgear/Aircraft/jeep/Models/softroof.png similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/softroof.png rename to flightgear/Aircraft/jeep/Models/softroof.png diff --git a/files/flightgear/Aircraft/jeep/Models/speedometer.ac b/flightgear/Aircraft/jeep/Models/speedometer.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/speedometer.ac rename to flightgear/Aircraft/jeep/Models/speedometer.ac diff --git a/files/flightgear/Aircraft/jeep/Models/speedometer.rgb b/flightgear/Aircraft/jeep/Models/speedometer.rgb similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/speedometer.rgb rename to flightgear/Aircraft/jeep/Models/speedometer.rgb diff --git a/files/flightgear/Aircraft/jeep/Models/speedometer.xml b/flightgear/Aircraft/jeep/Models/speedometer.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/speedometer.xml rename to flightgear/Aircraft/jeep/Models/speedometer.xml diff --git a/files/flightgear/Aircraft/jeep/Models/transparent.ac b/flightgear/Aircraft/jeep/Models/transparent.ac similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/transparent.ac rename to flightgear/Aircraft/jeep/Models/transparent.ac diff --git a/files/flightgear/Aircraft/jeep/Models/transparent.xml b/flightgear/Aircraft/jeep/Models/transparent.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/Models/transparent.xml rename to flightgear/Aircraft/jeep/Models/transparent.xml diff --git a/files/flightgear/Aircraft/jeep/Nasal/failure.nas b/flightgear/Aircraft/jeep/Nasal/failure.nas similarity index 100% rename from files/flightgear/Aircraft/jeep/Nasal/failure.nas rename to flightgear/Aircraft/jeep/Nasal/failure.nas diff --git a/files/flightgear/Aircraft/jeep/Nasal/jeep.nas b/flightgear/Aircraft/jeep/Nasal/jeep.nas similarity index 100% rename from files/flightgear/Aircraft/jeep/Nasal/jeep.nas rename to flightgear/Aircraft/jeep/Nasal/jeep.nas diff --git a/files/flightgear/Aircraft/jeep/Nasal/walk.nas b/flightgear/Aircraft/jeep/Nasal/walk.nas similarity index 100% rename from files/flightgear/Aircraft/jeep/Nasal/walk.nas rename to flightgear/Aircraft/jeep/Nasal/walk.nas diff --git a/files/flightgear/Aircraft/jeep/README b/flightgear/Aircraft/jeep/README similarity index 100% rename from files/flightgear/Aircraft/jeep/README rename to flightgear/Aircraft/jeep/README diff --git a/files/flightgear/Aircraft/jeep/gpa-set.xml b/flightgear/Aircraft/jeep/gpa-set.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/gpa-set.xml rename to flightgear/Aircraft/jeep/gpa-set.xml diff --git a/files/flightgear/Aircraft/jeep/gpa-yasim.xml b/flightgear/Aircraft/jeep/gpa-yasim.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/gpa-yasim.xml rename to flightgear/Aircraft/jeep/gpa-yasim.xml diff --git a/files/flightgear/Aircraft/jeep/jeep-set.xml b/flightgear/Aircraft/jeep/jeep-set.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/jeep-set.xml rename to flightgear/Aircraft/jeep/jeep-set.xml diff --git a/files/flightgear/Aircraft/jeep/jeep-yasim.xml b/flightgear/Aircraft/jeep/jeep-yasim.xml similarity index 100% rename from files/flightgear/Aircraft/jeep/jeep-yasim.xml rename to flightgear/Aircraft/jeep/jeep-yasim.xml diff --git a/files/flightgear/Aircraft/jeep/thumbnail.jpg b/flightgear/Aircraft/jeep/thumbnail.jpg similarity index 100% rename from files/flightgear/Aircraft/jeep/thumbnail.jpg rename to flightgear/Aircraft/jeep/thumbnail.jpg diff --git a/files/flightgear/Protocol/qgroundcontrol-fixed-wing.xml b/flightgear/Protocol/qgroundcontrol-fixed-wing.xml similarity index 100% rename from files/flightgear/Protocol/qgroundcontrol-fixed-wing.xml rename to flightgear/Protocol/qgroundcontrol-fixed-wing.xml diff --git a/files/flightgear/Protocol/qgroundcontrol-quadrotor.xml b/flightgear/Protocol/qgroundcontrol-quadrotor.xml similarity index 100% rename from files/flightgear/Protocol/qgroundcontrol-quadrotor.xml rename to flightgear/Protocol/qgroundcontrol-quadrotor.xml diff --git a/files/flightgear/Protocol/quadhil.xml b/flightgear/Protocol/quadhil.xml similarity index 100% rename from files/flightgear/Protocol/quadhil.xml rename to flightgear/Protocol/quadhil.xml diff --git a/libs/opmapcontrol/src/core/tilecachequeue.cpp b/libs/opmapcontrol/src/core/tilecachequeue.cpp index db8e4d4b96230c352ad9c924f902081f826807b3..d50755d8e15f4e0043b14188cdb817612247baf9 100644 --- a/libs/opmapcontrol/src/core/tilecachequeue.cpp +++ b/libs/opmapcontrol/src/core/tilecachequeue.cpp @@ -28,45 +28,39 @@ //#define DEBUG_TILECACHEQUEUE - + +#ifndef DEBUG_TILECACHEQUEUE +#undef qDebug +#define qDebug QT_NO_QDEBUG_MACRO +#endif + namespace core { TileCacheQueue::TileCacheQueue() { } + TileCacheQueue::~TileCacheQueue() { - // QThread::wait(10000); + quit(); + _waitc.wakeAll(); + wait(); + this->deleteLater(); } void TileCacheQueue::EnqueueCacheTask(CacheItemQueue *task) { -#ifdef DEBUG_TILECACHEQUEUE qDebug()<<"DB Do I EnqueueCacheTask"<GetPosition().X()<<","<GetPosition().Y(); -#endif //DEBUG_TILECACHEQUEUE - if(!tileCacheQueue.contains(task)) - { -#ifdef DEBUG_TILECACHEQUEUE + if(!_tileCacheQueue.contains(task)) { qDebug()<<"EnqueueCacheTask"<GetPosition().X()<<","<GetPosition().Y(); -#endif //DEBUG_TILECACHEQUEUE - mutex.lock(); - tileCacheQueue.enqueue(task); - mutex.unlock(); - if(this->isRunning()) - { -#ifdef DEBUG_TILECACHEQUEUE + _mutex.lock(); + _tileCacheQueue.enqueue(task); + _mutex.unlock(); + if(this->isRunning()) { qDebug()<<"Wake Thread"; -#endif //DEBUG_TILECACHEQUEUE - //this->start(QThread::NormalPriority); - //waitmutex.lock(); - waitc.wakeAll(); - //waitmutex.unlock(); - } - else - { -#ifdef DEBUG_TILECACHEQUEUE + _waitc.wakeAll(); + } else { qDebug()<<"Start Thread"; -#endif //DEBUG_TILECACHEQUEUE this->start(QThread::NormalPriority); } } @@ -74,59 +68,35 @@ void TileCacheQueue::EnqueueCacheTask(CacheItemQueue *task) } void TileCacheQueue::run() { -#ifdef DEBUG_TILECACHEQUEUE qDebug()<<"Cache Engine Start"; -#endif //DEBUG_TILECACHEQUEUE - while(true) - { - CacheItemQueue *task; -#ifdef DEBUG_TILECACHEQUEUE - qDebug()<<"Cache"; -#endif //DEBUG_TILECACHEQUEUE - if(tileCacheQueue.count()>0) - { - mutex.lock(); - task=tileCacheQueue.dequeue(); - mutex.unlock(); -#ifdef DEBUG_TILECACHEQUEUE - qDebug()<<"Cache engine Put:"<GetPosition().X()<<","<GetPosition().Y(); -#endif //DEBUG_TILECACHEQUEUE - Cache::Instance()->ImageCache.PutImageToCache(task->GetImg(),task->GetMapType(),task->GetPosition(),task->GetZoom()); + while(true) { + CacheItemQueue *task = NULL; + qDebug() << "Cache"; + if(_tileCacheQueue.count() > 0) { + _mutex.lock(); + task = _tileCacheQueue.dequeue(); + _mutex.unlock(); + Q_ASSERT(task); + qDebug() << "Cache engine Put:" << task->GetPosition().X() << "," << task->GetPosition().Y(); + Cache* cache = Cache::Instance(); + if(cache) { + cache->ImageCache.PutImageToCache(task->GetImg(), task->GetMapType(), task->GetPosition(), task->GetZoom()); + } usleep(44); delete task; - } - - else - { - #ifdef DEBUG_TILECACHEQUEUE - qDebug()<<"Cache engine BEGIN WAIT"; - #endif //DEBUG_TILECACHEQUEUE - waitmutex.lock(); - int tout=4000; - if(!waitc.wait(&waitmutex,tout)) - { - waitmutex.unlock(); -#ifdef DEBUG_TILECACHEQUEUE - qDebug()<<"Cache Engine TimeOut"; -#endif //DEBUG_TILECACHEQUEUE - mutex.lock(); - if(tileCacheQueue.count()==0) - { - mutex.unlock(); - break; - } - mutex.unlock(); + } else { + qDebug() << "Cache engine BEGIN WAIT"; + _waitmutex.lock(); + _waitc.wait(&_waitmutex); + qDebug() << "Cache engine WOKE UP"; + if(!this->isRunning()) { + _waitmutex.unlock(); + break; } - #ifdef DEBUG_TILECACHEQUEUE - qDebug()<<"Cache Engine DID NOT TimeOut"; - #endif //DEBUG_TILECACHEQUEUE - waitmutex.unlock(); + _waitmutex.unlock(); } } -#ifdef DEBUG_TILECACHEQUEUE - qDebug()<<"Cache Engine Stopped"; -#endif //DEBUG_TILECACHEQUEUE + qDebug() << "Cache Engine Stopped"; } - } diff --git a/libs/opmapcontrol/src/core/tilecachequeue.h b/libs/opmapcontrol/src/core/tilecachequeue.h index 7842256cf5f32a1e0f2146f6c9a4846f3e804de3..45230a3867d3c1c694105ba71f6cb20fcfdd7134 100644 --- a/libs/opmapcontrol/src/core/tilecachequeue.h +++ b/libs/opmapcontrol/src/core/tilecachequeue.h @@ -37,7 +37,6 @@ #include "pureimagecache.h" #include "cache.h" - namespace core { class TileCacheQueue:public QThread { @@ -47,13 +46,12 @@ namespace core { ~TileCacheQueue(); void EnqueueCacheTask(CacheItemQueue *task); - protected: - QQueue tileCacheQueue; private: void run(); - QMutex mutex; - QMutex waitmutex; - QWaitCondition waitc; + QMutex _mutex; + QMutex _waitmutex; + QWaitCondition _waitc; + QQueue _tileCacheQueue; }; } #endif // TILECACHEQUEUE_H diff --git a/libs/qextserialport/src/qextserialport_unix.cpp b/libs/qextserialport/src/qextserialport_unix.cpp index 97d7ac1a3416edba120f09479e8126fc94a983fd..78c486568147216a35916a2fbe1c49cb0eb7b444 100755 --- a/libs/qextserialport/src/qextserialport_unix.cpp +++ b/libs/qextserialport/src/qextserialport_unix.cpp @@ -120,7 +120,11 @@ bool QextSerialPortPrivate::close_sys() bool QextSerialPortPrivate::flush_sys() { +#ifdef __android__ + ::ioctl(fd, TCSADRAIN, ¤tTermios); +#else ::tcdrain(fd); +#endif return true; } diff --git a/libs/qtandroidserialport/src/qserialport.cpp b/libs/qtandroidserialport/src/qserialport.cpp new file mode 100644 index 0000000000000000000000000000000000000000..54cbee2e28e7a06c9db986e970a0215ae6886cf5 --- /dev/null +++ b/libs/qtandroidserialport/src/qserialport.cpp @@ -0,0 +1,1375 @@ +/**************************************************************************** +** +** Copyright (C) 2011-2012 Denis Shienkov +** Copyright (C) 2011 Sergey Belyashov +** Copyright (C) 2012 Laszlo Papp +** Copyright (C) 2012 Andre Hartmann +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qserialport.h" +#include "qserialportinfo.h" +#include "qserialportinfo_p.h" + +#ifdef Q_OS_WINCE +#include "qserialport_wince_p.h" +#elif defined (Q_OS_WIN) +#include "qserialport_win_p.h" +#elif defined (Q_OS_SYMBIAN) +#include "qserialport_symbian_p.h" +#elif defined (Q_OS_ANDROID) +#include "qserialport_android_p.h" +#elif defined (Q_OS_UNIX) +#include "qserialport_unix_p.h" +#else +#error Unsupported OS +#endif + +#ifndef SERIALPORT_BUFFERSIZE +# define SERIALPORT_BUFFERSIZE 16384 +#endif + +#include + +QT_BEGIN_NAMESPACE + +QSerialPortPrivateData::QSerialPortPrivateData(QSerialPort *q) + : readBufferMaxSize(0) + , readBuffer(SERIALPORT_BUFFERSIZE) + , writeBuffer(SERIALPORT_BUFFERSIZE) + , error(QSerialPort::NoError) + , inputBaudRate(9600) + , outputBaudRate(9600) + , dataBits(QSerialPort::Data8) + , parity(QSerialPort::NoParity) + , stopBits(QSerialPort::OneStop) + , flowControl(QSerialPort::NoFlowControl) + , policy(QSerialPort::IgnorePolicy) +#if QT_DEPRECATED_SINCE(5,3) + , settingsRestoredOnClose(true) +#endif + , q_ptr(q) +{ +} + +int QSerialPortPrivateData::timeoutValue(int msecs, int elapsed) +{ + if (msecs == -1) + return msecs; + msecs -= elapsed; + return qMax(msecs, 0); +} + +/*! + \class QSerialPort + + \brief Provides functions to access serial ports. + + \reentrant + \ingroup serialport-main + \inmodule QtSerialPort + \since 5.1 + + You can get information about the available serial ports using the + QSerialPortInfo helper class, which allows an enumeration of all the serial + ports in the system. This is useful to obtain the correct name of the + serial port you want to use. You can pass an object + of the helper class as an argument to the setPort() or setPortName() + methods to assign the desired serial device. + + After setting the port, you can open it in read-only (r/o), write-only + (w/o), or read-write (r/w) mode using the open() method. + + \note The serial port is always opened with exclusive access + (that is, no other process or thread can access an already opened serial port). + + Having successfully opened, QSerialPort tries to determine the current + configuration of the port and initializes itself. You can reconfigure the + port to the desired setting using the setBaudRate(), setDataBits(), + setParity(), setStopBits(), and setFlowControl() methods. + + There are a couple of properties to work with the pinout signals namely: + QSerialPort::dataTerminalReady, QSerialPort::requestToSend. It is also + possible to use the pinoutSignals() method to query the current pinout + signals set. + + Once you know that the ports are ready to read or write, you can + use the read() or write() methods. Alternatively the + readLine() and readAll() convenience methods can also be invoked. + If not all the data is read at once, the remaining data will + be available for later as new incoming data is appended to the + QSerialPort's internal read buffer. You can limit the size of the read + buffer using setReadBufferSize(). + + Use the close() method to close the port and cancel the I/O operations. + + See the following example: + + \code + int numRead = 0, numReadTotal = 0; + char buffer[50]; + + forever { + numRead = serial.read(buffer, 50); + + // Do whatever with the array + + numReadTotal += numRead; + if (numRead == 0 && !serial.waitForReadyRead()) + break; + } + \endcode + + If \l{QIODevice::}{waitForReadyRead()} returns false, the + connection has been closed or an error has occurred. + + Programming with a blocking serial port is radically different from + programming with a non-blocking serial port. A blocking serial port + does not require an event loop and typically leads to simpler code. + However, in a GUI application, blocking serial port should only be + used in non-GUI threads, to avoid freezing the user interface. + + For more details about these approaches, refer to the + \l {Examples}{example} applications. + + The QSerialPort class can also be used with QTextStream and QDataStream's + stream operators (operator<<() and operator>>()). There is one issue to be + aware of, though: make sure that enough data is available before attempting + to read by using the operator>>() overloaded operator. + + \sa QSerialPortInfo +*/ + +/*! + \enum QSerialPort::Direction + + This enum describes the possible directions of the data transmission. + + \note This enumeration is used for setting the baud rate of the device + separately for each direction on some operating systems (for example, + POSIX-like). + + \value Input Input direction. + \value Output Output direction. + \value AllDirections Simultaneously in two directions. +*/ + +/*! + \enum QSerialPort::BaudRate + + This enum describes the baud rate which the communication device operates + with. + + \note Only the most common standard baud rates are listed in this enum. + + \value Baud1200 1200 baud. + \value Baud2400 2400 baud. + \value Baud4800 4800 baud. + \value Baud9600 9600 baud. + \value Baud19200 19200 baud. + \value Baud38400 38400 baud. + \value Baud57600 57600 baud. + \value Baud115200 115200 baud. + \value UnknownBaud Unknown baud. This value is obsolete. It is provided to + keep old source code working. We strongly advise against + using it in new code. + + \sa QSerialPort::baudRate +*/ + +/*! + \enum QSerialPort::DataBits + + This enum describes the number of data bits used. + + \value Data5 The number of data bits in each character is 5. It + is used for Baudot code. It generally only makes + sense with older equipment such as teleprinters. + \value Data6 The number of data bits in each character is 6. It + is rarely used. + \value Data7 The number of data bits in each character is 7. It + is used for true ASCII. It generally only makes + sense with older equipment such as teleprinters. + \value Data8 The number of data bits in each character is 8. It + is used for most kinds of data, as this size matches + the size of a byte. It is almost universally used in + newer applications. + \value UnknownDataBits Unknown number of bits. This value is obsolete. It + is provided to keep old source code working. We + strongly advise against using it in new code. + + \sa QSerialPort::dataBits +*/ + +/*! + \enum QSerialPort::Parity + + This enum describes the parity scheme used. + + \value NoParity No parity bit it sent. This is the most common + parity setting. Error detection is handled by the + communication protocol. + \value EvenParity The number of 1 bits in each character, including + the parity bit, is always even. + \value OddParity The number of 1 bits in each character, including + the parity bit, is always odd. It ensures that at + least one state transition occurs in each character. + \value SpaceParity Space parity. The parity bit is sent in the space + signal condition. It does not provide error + detection information. + \value MarkParity Mark parity. The parity bit is always set to the + mark signal condition (logical 1). It does not + provide error detection information. + \value UnknownParity Unknown parity. This value is obsolete. It is + provided to keep old source code working. We + strongly advise against using it in new code. + + \sa QSerialPort::parity +*/ + +/*! + \enum QSerialPort::StopBits + + This enum describes the number of stop bits used. + + \value OneStop 1 stop bit. + \value OneAndHalfStop 1.5 stop bits. This is only for the Windows platform. + \value TwoStop 2 stop bits. + \value UnknownStopBits Unknown number of stop bits. This value is obsolete. + It is provided to keep old source code working. We + strongly advise against using it in new code. + + \sa QSerialPort::stopBits +*/ + +/*! + \enum QSerialPort::FlowControl + + This enum describes the flow control used. + + \value NoFlowControl No flow control. + \value HardwareControl Hardware flow control (RTS/CTS). + \value SoftwareControl Software flow control (XON/XOFF). + \value UnknownFlowControl Unknown flow control. This value is obsolete. It + is provided to keep old source code working. We + strongly advise against using it in new code. + + \sa QSerialPort::flowControl +*/ + +/*! + \enum QSerialPort::PinoutSignal + + This enum describes the possible RS-232 pinout signals. + + \value NoSignal No line active + \value TransmittedDataSignal TxD (Transmitted Data). This value is + obsolete. It is provided to keep old + source code working. We strongly + advise against using it in new code. + \value ReceivedDataSignal RxD (Received Data). This value is + obsolete. It is provided to keep old + source code working. We strongly + advise against using it in new code. + \value DataTerminalReadySignal DTR (Data Terminal Ready). + \value DataCarrierDetectSignal DCD (Data Carrier Detect). + \value DataSetReadySignal DSR (Data Set Ready). + \value RingIndicatorSignal RNG (Ring Indicator). + \value RequestToSendSignal RTS (Request To Send). + \value ClearToSendSignal CTS (Clear To Send). + \value SecondaryTransmittedDataSignal STD (Secondary Transmitted Data). + \value SecondaryReceivedDataSignal SRD (Secondary Received Data). + + \sa pinoutSignals(), QSerialPort::dataTerminalReady, + QSerialPort::requestToSend +*/ + +/*! + \enum QSerialPort::DataErrorPolicy + \obsolete + + This enum describes the policies for the received symbols + while parity errors were detected. + + \value SkipPolicy Skips the bad character. + \value PassZeroPolicy Replaces bad character with zero. + \value IgnorePolicy Ignores the error for a bad character. + \value StopReceivingPolicy Stops data reception on error. + \value UnknownPolicy Unknown policy. + + \sa QSerialPort::dataErrorPolicy +*/ + +/*! + \enum QSerialPort::SerialPortError + + This enum describes the errors that may be contained by the + QSerialPort::error property. + + \value NoError No error occurred. + + \value DeviceNotFoundError An error occurred while attempting to + open an non-existing device. + + \value PermissionError An error occurred while attempting to + open an already opened device by another + process or a user not having enough permission + and credentials to open. + + \value OpenError An error occurred while attempting to open an + already opened device in this object. + + \value NotOpenError This error occurs when an operation is executed + that can only be successfully performed if the + device is open. This value was introduced in + QtSerialPort 5.2. + + \value ParityError Parity error detected by the hardware while + reading data. + + \value FramingError Framing error detected by the hardware while + reading data. + + \value BreakConditionError Break condition detected by the hardware on + the input line. + + \value WriteError An I/O error occurred while writing the data. + + \value ReadError An I/O error occurred while reading the data. + + \value ResourceError An I/O error occurred when a resource becomes + unavailable, e.g. when the device is + unexpectedly removed from the system. + + \value UnsupportedOperationError The requested device operation is not + supported or prohibited by the running operating + system. + + \value TimeoutError A timeout error occurred. This value was + introduced in QtSerialPort 5.2. + + \value UnknownError An unidentified error occurred. + \sa QSerialPort::error +*/ + + + +/*! + Constructs a new serial port object with the given \a parent. +*/ +QSerialPort::QSerialPort(QObject *parent) + : QIODevice(parent) + , d_ptr(new QSerialPortPrivate(this)) +{} + +/*! + Constructs a new serial port object with the given \a parent + to represent the serial port with the specified \a name. + + The name should have a specific format; see the setPort() method. +*/ +QSerialPort::QSerialPort(const QString &name, QObject *parent) + : QIODevice(parent) + , d_ptr(new QSerialPortPrivate(this)) +{ + setPortName(name); +} + +/*! + Constructs a new serial port object with the given \a parent + to represent the serial port with the specified helper class + \a serialPortInfo. +*/ +QSerialPort::QSerialPort(const QSerialPortInfo &serialPortInfo, QObject *parent) + : QIODevice(parent) + , d_ptr(new QSerialPortPrivate(this)) +{ + setPort(serialPortInfo); +} + +/*! + Closes the serial port, if necessary, and then destroys object. +*/ +QSerialPort::~QSerialPort() +{ + /**/ + if (isOpen()) + close(); + delete d_ptr; +} + +/*! + Sets the \a name of the serial port. + + The name of the serial port can be passed as either a short name or + the long system location if necessary. + + \sa portName(), QSerialPortInfo +*/ +void QSerialPort::setPortName(const QString &name) +{ + Q_D(QSerialPort); + d->systemLocation = QSerialPortInfoPrivate::portNameToSystemLocation(name); +} + +/*! + Sets the port stored in the serial port info instance \a serialPortInfo. + + \sa portName(), QSerialPortInfo +*/ +void QSerialPort::setPort(const QSerialPortInfo &serialPortInfo) +{ + Q_D(QSerialPort); + d->systemLocation = serialPortInfo.systemLocation(); +} + +/*! + Returns the name set by setPort() or passed to the QSerialPort constructor. + This name is short, i.e. it is extracted and converted from the internal + variable system location of the device. The conversion algorithm is + platform specific: + \table + \header + \li Platform + \li Brief Description + \row + \li Windows + \li Removes the prefix "\\\\.\\" or "//./" from the system location + and returns the remainder of the string. + \row + \li Windows CE + \li Removes the suffix ":" from the system location + and returns the remainder of the string. + \row + \li Symbian + \li Returns the system location as it is, + as it is equivalent to the port name. + \row + \li Unix, BSD + \li Removes the prefix "/dev/" from the system location + and returns the remainder of the string. + \endtable + + \sa setPort(), QSerialPortInfo::portName() +*/ +QString QSerialPort::portName() const +{ + Q_D(const QSerialPort); + return QSerialPortInfoPrivate::portNameFromSystemLocation(d->systemLocation); +} + +/*! + \reimp + + Opens the serial port using OpenMode \a mode, and then returns true if + successful; otherwise returns false and sets an error code which can be + obtained by calling the error() method. + + \note The method returns false if opening the port is successful, but could + not set any of the port settings successfully. In that case, the port is + closed automatically not to leave the port around with incorrect settings. + + \warning The \a mode has to be QIODevice::ReadOnly, QIODevice::WriteOnly, + or QIODevice::ReadWrite. Other modes are unsupported. + + \sa QIODevice::OpenMode, setPort() +*/ +bool QSerialPort::open(OpenMode mode) +{ + Q_D(QSerialPort); + + if (isOpen()) { + setError(QSerialPort::OpenError); + return false; + } + + // Define while not supported modes. + static const OpenMode unsupportedModes = Append | Truncate | Text | Unbuffered; + if ((mode & unsupportedModes) || mode == NotOpen) { + setError(QSerialPort::UnsupportedOperationError); + return false; + } + + clearError(); + if (!d->open(mode)) + return false; + + if (!d->setBaudRate() + || !d->setDataBits(d->dataBits) + || !d->setParity(d->parity) + || !d->setStopBits(d->stopBits) + || !d->setFlowControl(d->flowControl)) { + d->close(); + return false; + } + + QIODevice::open(mode); + return true; +} + +/*! + \reimp + + \note The serial port has to be open before trying to close it; otherwise + sets the NotOpenError error code. + + \sa QIODevice::close() +*/ +void QSerialPort::close() +{ + Q_D(QSerialPort); + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + return; + } + + QIODevice::close(); + d->close(); +} + +/*! + \property QSerialPort::settingsRestoredOnClose + \brief the flag which specifies to restore the previous settings when closing + the serial port. + \obsolete + + If this flag is true, the settings will be restored; otherwise not. + The default state of the QSerialPort class is to restore the + settings. +*/ +#if QT_DEPRECATED_SINCE(5,3) +void QSerialPort::setSettingsRestoredOnClose(bool restore) +{ + Q_D(QSerialPort); + + if (d->settingsRestoredOnClose != restore) { + d->settingsRestoredOnClose = restore; + emit settingsRestoredOnCloseChanged(d->settingsRestoredOnClose); + } +} + +bool QSerialPort::settingsRestoredOnClose() const +{ + Q_D(const QSerialPort); + return d->settingsRestoredOnClose; +} +#endif // QT_DEPRECATED_SINCE(5,3) +/*! + \fn void QSerialPort::settingsRestoredOnCloseChanged(bool restore) + \obsolete + + This signal is emitted after the flag which specifies to restore the + previous settings while closing the serial port has been changed. The new + flag which specifies to restore the previous settings while closing the serial + port is passed as \a restore. + + \sa QSerialPort::settingsRestoredOnClose +*/ + +/*! + \property QSerialPort::baudRate + \brief the data baud rate for the desired direction + + If the setting is successful or set before opening the port, returns true; + otherwise returns false and sets an error code which can be obtained by + accessing the value of the QSerialPort::error property. To set the baud + rate, use the enumeration QSerialPort::BaudRate or any positive qint32 + value. + + \note If the setting is set before opening the port, the actual serial port + setting is done automatically in the \l{QSerialPort::open()} method right + after that the opening of the port succeeds. + + \warning Setting the AllDirections flag is only supported on + the Windows, Windows CE, and Symbian platforms. + + \warning Returns equal baud rate in any direction on Windows, Windows CE, and + Symbian. + + The default value is Baud9600, i.e. 9600 bits per second. +*/ +bool QSerialPort::setBaudRate(qint32 baudRate, Directions directions) +{ + Q_D(QSerialPort); + + if (!isOpen() || d->setBaudRate(baudRate, directions)) { + if (directions & QSerialPort::Input) { + if (d->inputBaudRate != baudRate) + d->inputBaudRate = baudRate; + else + directions &= ~QSerialPort::Input; + } + + if (directions & QSerialPort::Output) { + if (d->outputBaudRate != baudRate) + d->outputBaudRate = baudRate; + else + directions &= ~QSerialPort::Output; + } + + if (directions) + emit baudRateChanged(baudRate, directions); + + return true; + } + + return false; +} + +qint32 QSerialPort::baudRate(Directions directions) const +{ + Q_D(const QSerialPort); + if (directions == QSerialPort::AllDirections) + return d->inputBaudRate == d->outputBaudRate ? + d->inputBaudRate : -1; + return directions & QSerialPort::Input ? d->inputBaudRate : d->outputBaudRate; +} + +/*! + \fn void QSerialPort::baudRateChanged(qint32 baudRate, Directions directions) + + This signal is emitted after the baud rate has been changed. The new baud + rate is passed as \a baudRate and directions as \a directions. + + \sa QSerialPort::baudRate +*/ + +/*! + \property QSerialPort::dataBits + \brief the data bits in a frame + + If the setting is successful or set before opening the port, returns + true; otherwise returns false and sets an error code which can be obtained + by accessing the value of the QSerialPort::error property. + + \note If the setting is set before opening the port, the actual serial port + setting is done automatically in the \l{QSerialPort::open()} method right + after that the opening of the port succeeds. + + The default value is Data8, i.e. 8 data bits. +*/ +bool QSerialPort::setDataBits(DataBits dataBits) +{ + Q_D(QSerialPort); + + if (!isOpen() || d->setDataBits(dataBits)) { + if (d->dataBits != dataBits) { + d->dataBits = dataBits; + emit dataBitsChanged(d->dataBits); + } + return true; + } + + return false; +} + +QSerialPort::DataBits QSerialPort::dataBits() const +{ + Q_D(const QSerialPort); + return d->dataBits; +} + +/*! + \fn void QSerialPort::dataBitsChanged(DataBits dataBits) + + This signal is emitted after the data bits in a frame has been changed. The + new data bits in a frame is passed as \a dataBits. + + \sa QSerialPort::dataBits +*/ + + +/*! + \property QSerialPort::parity + \brief the parity checking mode + + If the setting is successful or set before opening the port, returns true; + otherwise returns false and sets an error code which can be obtained by + accessing the value of the QSerialPort::error property. + + \note If the setting is set before opening the port, the actual serial port + setting is done automatically in the \l{QSerialPort::open()} method right + after that the opening of the port succeeds. + + The default value is NoParity, i.e. no parity. +*/ +bool QSerialPort::setParity(Parity parity) +{ + Q_D(QSerialPort); + + if (!isOpen() || d->setParity(parity)) { + if (d->parity != parity) { + d->parity = parity; + emit parityChanged(d->parity); + } + return true; + } + + return false; +} + +QSerialPort::Parity QSerialPort::parity() const +{ + Q_D(const QSerialPort); + return d->parity; +} + +/*! + \fn void QSerialPort::parityChanged(Parity parity) + + This signal is emitted after the parity checking mode has been changed. The + new parity checking mode is passed as \a parity. + + \sa QSerialPort::parity +*/ + +/*! + \property QSerialPort::stopBits + \brief the number of stop bits in a frame + + If the setting is successful or set before opening the port, returns true; + otherwise returns false and sets an error code which can be obtained by + accessing the value of the QSerialPort::error property. + + \note If the setting is set before opening the port, the actual serial port + setting is done automatically in the \l{QSerialPort::open()} method right + after that the opening of the port succeeds. + + The default value is OneStop, i.e. 1 stop bit. +*/ +bool QSerialPort::setStopBits(StopBits stopBits) +{ + Q_D(QSerialPort); + + if (!isOpen() || d->setStopBits(stopBits)) { + if (d->stopBits != stopBits) { + d->stopBits = stopBits; + emit stopBitsChanged(d->stopBits); + } + return true; + } + + return false; +} + +QSerialPort::StopBits QSerialPort::stopBits() const +{ + Q_D(const QSerialPort); + return d->stopBits; +} + +/*! + \fn void QSerialPort::stopBitsChanged(StopBits stopBits) + + This signal is emitted after the number of stop bits in a frame has been + changed. The new number of stop bits in a frame is passed as \a stopBits. + + \sa QSerialPort::stopBits +*/ + +/*! + \property QSerialPort::flowControl + \brief the desired flow control mode + + If the setting is successful or set before opening the port, returns true; + otherwise returns false and sets an error code which can be obtained by + accessing the value of the QSerialPort::error property. + + \note If the setting is set before opening the port, the actual serial port + setting is done automatically in the \l{QSerialPort::open()} method right + after that the opening of the port succeeds. + + The default value is NoFlowControl, i.e. no flow control. +*/ +bool QSerialPort::setFlowControl(FlowControl flowControl) +{ + Q_D(QSerialPort); + + if (!isOpen() || d->setFlowControl(flowControl)) { + if (d->flowControl != flowControl) { + d->flowControl = flowControl; + emit flowControlChanged(d->flowControl); + } + return true; + } + + return false; +} + +QSerialPort::FlowControl QSerialPort::flowControl() const +{ + Q_D(const QSerialPort); + return d->flowControl; +} + +/*! + \fn void QSerialPort::flowControlChanged(FlowControl flow) + + This signal is emitted after the flow control mode has been changed. The + new flow control mode is passed as \a flow. + + \sa QSerialPort::flowControl +*/ + +/*! + \property QSerialPort::dataTerminalReady + \brief the state (high or low) of the line signal DTR + + Returns true on success, false otherwise. + If the flag is true then the DTR signal is set to high; otherwise low. + + \note The serial port has to be open before trying to set or get this + property; otherwise false is returned and the error code is set to + NotOpenError. + + \sa pinoutSignals() +*/ +bool QSerialPort::setDataTerminalReady(bool set) +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + const bool dataTerminalReady = isDataTerminalReady(); + const bool retval = d->setDataTerminalReady(set); + if (retval && (dataTerminalReady != set)) + emit dataTerminalReadyChanged(set); + + return retval; +} + +bool QSerialPort::isDataTerminalReady() +{ + Q_D(QSerialPort); + return d->pinoutSignals() & QSerialPort::DataTerminalReadySignal; +} + +/*! + \fn void QSerialPort::dataTerminalReadyChanged(bool set) + + This signal is emitted after the state (high or low) of the line signal DTR + has been changed. The new the state (high or low) of the line signal DTR is + passed as \a set. + + \sa QSerialPort::dataTerminalReady +*/ + +/*! + \property QSerialPort::requestToSend + \brief the state (high or low) of the line signal RTS + + Returns true on success, false otherwise. + If the flag is true then the RTS signal is set to high; otherwise low. + + \note The serial port has to be open before trying to set or get this + property; otherwise false is returned and the error code is set to + NotOpenError. + + \sa pinoutSignals() +*/ +bool QSerialPort::setRequestToSend(bool set) +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + const bool requestToSend = isRequestToSend(); + const bool retval = d->setRequestToSend(set); + if (retval && (requestToSend != set)) + emit requestToSendChanged(set); + + return retval; +} + +bool QSerialPort::isRequestToSend() +{ + Q_D(QSerialPort); + return d->pinoutSignals() & QSerialPort::RequestToSendSignal; +} + +/*! + \fn void QSerialPort::requestToSendChanged(bool set) + + This signal is emitted after the state (high or low) of the line signal RTS + has been changed. The new the state (high or low) of the line signal RTS is + passed as \a set. + + \sa QSerialPort::requestToSend +*/ + +/*! + Returns the state of the line signals in a bitmap format. + + From this result, it is possible to allocate the state of the + desired signal by applying a mask "AND", where the mask is + the desired enumeration value from QSerialPort::PinoutSignals. + + \note This method performs a system call, thus ensuring that the line signal + states are returned properly. This is necessary when the underlying + operating systems cannot provide proper notifications about the changes. + + \note The serial port has to be open before trying to get the pinout + signals; otherwise returns NoSignal and sets the NotOpenError error code. + + \sa QSerialPort::dataTerminalReady, QSerialPort::requestToSend +*/ +QSerialPort::PinoutSignals QSerialPort::pinoutSignals() +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return QSerialPort::NoSignal; + } + + return d->pinoutSignals(); +} + +/*! + This function writes as much as possible from the internal write + buffer to the underlying serial port without blocking. If any data + was written, this function returns true; otherwise returns false. + + Call this function for sending the buffered data immediately to the serial + port. The number of bytes successfully written depends on the operating + system. In most cases, this function does not need to be called, because the + QSerialPort class will start sending data automatically once control is + returned to the event loop. In the absence of an event loop, call + waitForBytesWritten() instead. + + \note The serial port has to be open before trying to flush any buffered + data; otherwise returns false and sets the NotOpenError error code. + + \sa write(), waitForBytesWritten() +*/ +bool QSerialPort::flush() +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + return d->flush(); +} + +/*! + Discards all characters from the output or input buffer, depending on + given directions \a directions. This includes clearing the internal class buffers and + the UART (driver) buffers. Also terminate pending read or write operations. + If successful, returns true; otherwise returns false. + + \note The serial port has to be open before trying to clear any buffered + data; otherwise returns false and sets the NotOpenError error code. +*/ +bool QSerialPort::clear(Directions directions) +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + if (directions & Input) + d->readBuffer.clear(); + if (directions & Output) + d->writeBuffer.clear(); + return d->clear(directions); +} + +/*! + \reimp + + Returns true if no more data is currently available for reading; otherwise + returns false. + + This function is most commonly used when reading data from the + serial port in a loop. For example: + + \code + // This slot is connected to QSerialPort::readyRead() + void QSerialPortClass::readyReadSlot() + { + while (!port.atEnd()) { + QByteArray data = port.read(100); + .... + } + } + \endcode + + \sa bytesAvailable(), readyRead() + */ +bool QSerialPort::atEnd() const +{ + Q_D(const QSerialPort); + return QIODevice::atEnd() && (!isOpen() || (d->readBuffer.size() == 0)); +} + +/*! + \property QSerialPort::dataErrorPolicy + \brief the error policy for how the process receives characters in the case where + a parity error is detected. + \obsolete + + If the setting is successful, returns true; otherwise returns false. The + default policy set is IgnorePolicy. + + \note The serial port has to be open before trying to set this property; + otherwise returns false and sets the NotOpenError error code. This is a bit + unusual as opposed to the regular Qt property settings of a class. However, + this is a special use case since the property is set through the interaction + with the kernel and hardware. Hence, the two scenarios cannot be completely + compared to each other. +*/ +#if QT_DEPRECATED_SINCE(5, 2) +bool QSerialPort::setDataErrorPolicy(DataErrorPolicy policy) +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + const bool ret = d->policy == policy || d->setDataErrorPolicy(policy); + if (ret && (d->policy != policy)) { + d->policy = policy; + emit dataErrorPolicyChanged(d->policy); + } + + return ret; +} + +QSerialPort::DataErrorPolicy QSerialPort::dataErrorPolicy() const +{ + Q_D(const QSerialPort); + return d->policy; +} +#endif // QT_DEPRECATED_SINCE(5, 2) +/*! + \fn void QSerialPort::dataErrorPolicyChanged(DataErrorPolicy policy) + \obsolete + + This signal is emitted after the error policy for how the process receives + characters in case of parity error detection has been changed. The new error + policy for how the process receives the character in case of parity error + detection is passed as \a policy. + + \sa QSerialPort::dataErrorPolicy +*/ + +/*! + \property QSerialPort::error + \brief the error status of the serial port + + The I/O device status returns an error code. For example, if open() + returns false, or a read/write operation returns -1, this property can + be used to figure out the reason why the operation failed. + + The error code is set to the default QSerialPort::NoError after a call to + clearError() +*/ +QSerialPort::SerialPortError QSerialPort::error() const +{ + Q_D(const QSerialPort); + return d->error; +} + +void QSerialPort::clearError() +{ + setError(QSerialPort::NoError); +} + +/*! + \fn void QSerialPort::error(SerialPortError error) + + This signal is emitted after the error has been changed. The new error + is passed as \a error. + + \sa QSerialPort::error +*/ + +/*! + Returns the size of the internal read buffer. This limits the + amount of data that the client can receive before calling the read() + or readAll() methods. + + A read buffer size of 0 (the default) means that the buffer has + no size limit, ensuring that no data is lost. + + \sa setReadBufferSize(), read() +*/ +qint64 QSerialPort::readBufferSize() const +{ + Q_D(const QSerialPort); + return d->readBufferMaxSize; +} + +/*! + Sets the size of QSerialPort's internal read buffer to be \a + size bytes. + + If the buffer size is limited to a certain size, QSerialPort + will not buffer more than this size of data. The special case of a buffer + size of 0 means that the read buffer is unlimited and all + incoming data is buffered. This is the default. + + This option is useful if the data is only read at certain points + in time (for instance in a real-time streaming application) or if the serial + port should be protected against receiving too much data, which may + eventually cause the application to run out of memory. + + \sa readBufferSize(), read() +*/ +void QSerialPort::setReadBufferSize(qint64 size) +{ + Q_D(QSerialPort); + + if (d->readBufferMaxSize == size) + return; + d->readBufferMaxSize = size; +} + +/*! + \reimp + + Always returns true. The serial port is a sequential device. +*/ +bool QSerialPort::isSequential() const +{ + return true; +} + +/*! + \reimp + + Returns the number of incoming bytes that are waiting to be read. + + \sa bytesToWrite(), read() +*/ +qint64 QSerialPort::bytesAvailable() const +{ + Q_D(const QSerialPort); + return d->readBuffer.size() + QIODevice::bytesAvailable(); +} + +/*! + \reimp + + Returns the number of bytes that are waiting to be written. The + bytes are written when control goes back to the event loop or + when flush() is called. + + \sa bytesAvailable(), flush() +*/ +qint64 QSerialPort::bytesToWrite() const +{ + Q_D(const QSerialPort); + return d->bytesToWrite() + QIODevice::bytesToWrite(); +} + +/*! + \reimp + + Returns true if a line of data can be read from the serial port; + otherwise returns false. + + \sa readLine() +*/ +bool QSerialPort::canReadLine() const +{ + Q_D(const QSerialPort); + const bool hasLine = (d->readBuffer.size() > 0) && d->readBuffer.canReadLine(); + return hasLine || QIODevice::canReadLine(); +} + +/*! + \reimp + + This function blocks until new data is available for reading and the + \l{QIODevice::}{readyRead()} signal has been emitted. The function + will timeout after \a msecs milliseconds. + + The function returns true if the readyRead() signal is emitted and + there is new data available for reading; otherwise it returns false + (if an error occurred or the operation timed out). + + \sa waitForBytesWritten() +*/ +bool QSerialPort::waitForReadyRead(int msecs) +{ + Q_D(QSerialPort); + return d->waitForReadyRead(msecs); +} + +/*! + \fn Handle QSerialPort::handle() const + \since 5.2 + + If the platform is supported and the serial port is open, returns the native + serial port handle; otherwise returns -1. + + \warning This function is for expert use only; use it at your own risk. + Furthermore, this function carries no compatibility promise between minor + Qt releases. +*/ + +/*! + \reimp +*/ +bool QSerialPort::waitForBytesWritten(int msecs) +{ + Q_D(QSerialPort); + return d->waitForBytesWritten(msecs); +} + +/*! + Sends a continuous stream of zero bits during a specified period + of time \a duration in msec if the terminal is using asynchronous + serial data. If successful, returns true; otherwise returns false. + + If the duration is zero then zero bits are transmitted by at least + 0.25 seconds, but no more than 0.5 seconds. + + If the duration is non zero then zero bits are transmitted within a certain + period of time depending on the implementation. + + \note The serial port has to be open before trying to send a break + duration; otherwise returns false and sets the NotOpenError error code. + + \sa setBreakEnabled() +*/ +bool QSerialPort::sendBreak(int duration) +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + return d->sendBreak(duration); +} + +/*! + Controls the signal break, depending on the flag \a set. + If successful, returns true; otherwise returns false. + + If \a set is true then enables the break transmission; otherwise disables. + + \note The serial port has to be open before trying to set break enabled; + otherwise returns false and sets the NotOpenError error code. + + \sa sendBreak() +*/ +bool QSerialPort::setBreakEnabled(bool set) +{ + Q_D(QSerialPort); + + if (!isOpen()) { + setError(QSerialPort::NotOpenError); + qWarning("%s: device not open", Q_FUNC_INFO); + return false; + } + + return d->setBreakEnabled(set); +} + +/*! + \reimp +*/ +qint64 QSerialPort::readData(char *data, qint64 maxSize) +{ + Q_D(QSerialPort); +#ifdef Q_OS_ANDROID + qint64 retL = d->readBuffer.read(data, maxSize); + d->startReadThread(); + return retL; +#else + return d->readData(data, maxSize); +#endif +} + +/*! + \reimp +*/ +qint64 QSerialPort::readLineData(char *data, qint64 maxSize) +{ +#ifdef Q_OS_ANDROID + qint64 retL = QIODevice::readLineData(data, maxSize); + Q_D(QSerialPort); + d->startReadThread(); + return retL; +#else + return QIODevice::readLineData(data, maxSize); +#endif +} + +/*! + \reimp +*/ +qint64 QSerialPort::writeData(const char *data, qint64 maxSize) +{ + Q_D(QSerialPort); + return d->writeData(data, maxSize); +} + +void QSerialPort::setError(QSerialPort::SerialPortError serialPortError, const QString &errorString) +{ + Q_D(QSerialPort); + + d->error = serialPortError; + + if (errorString.isNull()) + setErrorString(qt_error_string(-1)); + else + setErrorString(errorString); + + emit error(serialPortError); +} + +#include "moc_qserialport.cpp" + +QT_END_NAMESPACE diff --git a/libs/qtandroidserialport/src/qserialport.h b/libs/qtandroidserialport/src/qserialport.h new file mode 100644 index 0000000000000000000000000000000000000000..e1b6aea92d2ced14cf3a7f5dda84b05ee4d33a6f --- /dev/null +++ b/libs/qtandroidserialport/src/qserialport.h @@ -0,0 +1,287 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Denis Shienkov +** Copyright (C) 2013 Laszlo Papp +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QSERIALPORT_H +#define QSERIALPORT_H + +#include + +QT_BEGIN_NAMESPACE + +class QSerialPortInfo; +class QSerialPortPrivate; + +class QSerialPort : public QIODevice +{ + Q_OBJECT + Q_DECLARE_PRIVATE(QSerialPort) + + Q_PROPERTY(qint32 baudRate READ baudRate WRITE setBaudRate NOTIFY baudRateChanged) + Q_PROPERTY(DataBits dataBits READ dataBits WRITE setDataBits NOTIFY dataBitsChanged) + Q_PROPERTY(Parity parity READ parity WRITE setParity NOTIFY parityChanged) + Q_PROPERTY(StopBits stopBits READ stopBits WRITE setStopBits NOTIFY stopBitsChanged) + Q_PROPERTY(FlowControl flowControl READ flowControl WRITE setFlowControl NOTIFY flowControlChanged) +#if QT_DEPRECATED_SINCE(5, 2) + Q_PROPERTY(DataErrorPolicy dataErrorPolicy READ dataErrorPolicy WRITE setDataErrorPolicy NOTIFY dataErrorPolicyChanged) +#endif + Q_PROPERTY(bool dataTerminalReady READ isDataTerminalReady WRITE setDataTerminalReady NOTIFY dataTerminalReadyChanged) + Q_PROPERTY(bool requestToSend READ isRequestToSend WRITE setRequestToSend NOTIFY requestToSendChanged) + Q_PROPERTY(SerialPortError error READ error RESET clearError NOTIFY error) +#if QT_DEPRECATED_SINCE(5, 3) + Q_PROPERTY(bool settingsRestoredOnClose READ settingsRestoredOnClose WRITE setSettingsRestoredOnClose NOTIFY settingsRestoredOnCloseChanged) +#endif + + Q_ENUMS(BaudRate DataBits Parity StopBits FlowControl DataErrorPolicy SerialPortError) + Q_FLAGS(Directions PinoutSignals) + +#if defined(Q_OS_WIN32) || defined(Q_OS_WINCE) + typedef void* Handle; +#else + typedef int Handle; +#endif + +public: + + enum Direction { + Input = 1, + Output = 2, + AllDirections = Input | Output + }; + Q_DECLARE_FLAGS(Directions, Direction) + + enum BaudRate { + Baud1200 = 1200, + Baud2400 = 2400, + Baud4800 = 4800, + Baud9600 = 9600, + Baud19200 = 19200, + Baud38400 = 38400, + Baud57600 = 57600, + Baud115200 = 115200, + UnknownBaud = -1 + }; + + enum DataBits { + Data5 = 5, + Data6 = 6, + Data7 = 7, + Data8 = 8, + UnknownDataBits = -1 + }; + + enum Parity { + NoParity = 0, + EvenParity = 2, + OddParity = 3, + SpaceParity = 4, + MarkParity = 5, + UnknownParity = -1 + }; + + enum StopBits { + OneStop = 1, + OneAndHalfStop = 3, + TwoStop = 2, + UnknownStopBits = -1 + }; + + enum FlowControl { + NoFlowControl, + HardwareControl, + SoftwareControl, + UnknownFlowControl = -1 + }; + + enum PinoutSignal { + NoSignal = 0x00, + TransmittedDataSignal = 0x01, + ReceivedDataSignal = 0x02, + DataTerminalReadySignal = 0x04, + DataCarrierDetectSignal = 0x08, + DataSetReadySignal = 0x10, + RingIndicatorSignal = 0x20, + RequestToSendSignal = 0x40, + ClearToSendSignal = 0x80, + SecondaryTransmittedDataSignal = 0x100, + SecondaryReceivedDataSignal = 0x200 + }; + Q_DECLARE_FLAGS(PinoutSignals, PinoutSignal) + +#if QT_DEPRECATED_SINCE(5, 2) +#if defined _MSC_VER +#pragma deprecated(UnknownBaud) +#pragma deprecated(UnknownDataBits) +#pragma deprecated(UnknownParity) +#pragma deprecated(UnknownStopBits) +#pragma deprecated(UnknownFlowControl) +#pragma deprecated(TransmittedDataSignal) +#pragma deprecated(ReceivedDataSignal) +#endif +#endif + +#if QT_DEPRECATED_SINCE(5, 2) + enum DataErrorPolicy { + SkipPolicy, + PassZeroPolicy, + IgnorePolicy, + StopReceivingPolicy, + UnknownPolicy = -1 + }; +#endif + + enum SerialPortError { + NoError, + DeviceNotFoundError, + PermissionError, + OpenError, + ParityError, + FramingError, + BreakConditionError, + WriteError, + ReadError, + ResourceError, + UnsupportedOperationError, + UnknownError, + TimeoutError, + NotOpenError + }; + + explicit QSerialPort(QObject *parent = Q_NULLPTR); + explicit QSerialPort(const QString &name, QObject *parent = Q_NULLPTR); + explicit QSerialPort(const QSerialPortInfo &info, QObject *parent = Q_NULLPTR); + virtual ~QSerialPort(); + + void setPortName(const QString &name); + QString portName() const; + + void setPort(const QSerialPortInfo &info); + + bool open(OpenMode mode) Q_DECL_OVERRIDE; + void close() Q_DECL_OVERRIDE; + +#if QT_DEPRECATED_SINCE(5, 3) + QT_DEPRECATED void setSettingsRestoredOnClose(bool restore); + QT_DEPRECATED bool settingsRestoredOnClose() const; +#endif + + bool setBaudRate(qint32 baudRate, Directions directions = AllDirections); + qint32 baudRate(Directions directions = AllDirections) const; + + bool setDataBits(DataBits dataBits); + DataBits dataBits() const; + + bool setParity(Parity parity); + Parity parity() const; + + bool setStopBits(StopBits stopBits); + StopBits stopBits() const; + + bool setFlowControl(FlowControl flowControl); + FlowControl flowControl() const; + + bool setDataTerminalReady(bool set); + bool isDataTerminalReady(); + + bool setRequestToSend(bool set); + bool isRequestToSend(); + + PinoutSignals pinoutSignals(); + + bool flush(); + bool clear(Directions directions = AllDirections); + bool atEnd() const Q_DECL_OVERRIDE; + +#if QT_DEPRECATED_SINCE(5, 2) + QT_DEPRECATED bool setDataErrorPolicy(DataErrorPolicy policy = IgnorePolicy); + QT_DEPRECATED DataErrorPolicy dataErrorPolicy() const; +#endif + + SerialPortError error() const; + void clearError(); + + qint64 readBufferSize() const; + void setReadBufferSize(qint64 size); + + bool isSequential() const Q_DECL_OVERRIDE; + + qint64 bytesAvailable() const Q_DECL_OVERRIDE; + qint64 bytesToWrite() const Q_DECL_OVERRIDE; + bool canReadLine() const Q_DECL_OVERRIDE; + + bool waitForReadyRead(int msecs) Q_DECL_OVERRIDE; + bool waitForBytesWritten(int msecs) Q_DECL_OVERRIDE; + + bool sendBreak(int duration = 0); + bool setBreakEnabled(bool set = true); + + Handle handle() const; + +Q_SIGNALS: + void baudRateChanged(qint32 baudRate, QSerialPort::Directions directions); + void dataBitsChanged(QSerialPort::DataBits dataBits); + void parityChanged(QSerialPort::Parity parity); + void stopBitsChanged(QSerialPort::StopBits stopBits); + void flowControlChanged(QSerialPort::FlowControl flowControl); + void dataErrorPolicyChanged(QSerialPort::DataErrorPolicy policy); + void dataTerminalReadyChanged(bool set); + void requestToSendChanged(bool set); + void error(QSerialPort::SerialPortError serialPortError); + void settingsRestoredOnCloseChanged(bool restore); + +protected: + qint64 readData(char *data, qint64 maxSize) Q_DECL_OVERRIDE; + qint64 readLineData(char *data, qint64 maxSize) Q_DECL_OVERRIDE; + qint64 writeData(const char *data, qint64 maxSize) Q_DECL_OVERRIDE; + +private: + void setError(QSerialPort::SerialPortError error, const QString &errorString = QString()); + + QSerialPortPrivate * const d_ptr; + + Q_DISABLE_COPY(QSerialPort) + +#if defined (Q_OS_WIN32) + Q_PRIVATE_SLOT(d_func(), bool _q_completeAsyncCommunication()) + Q_PRIVATE_SLOT(d_func(), bool _q_completeAsyncRead()) + Q_PRIVATE_SLOT(d_func(), bool _q_completeAsyncWrite()) + Q_PRIVATE_SLOT(d_func(), bool _q_startAsyncWrite()) +#endif +}; + +Q_DECLARE_OPERATORS_FOR_FLAGS(QSerialPort::Directions) +Q_DECLARE_OPERATORS_FOR_FLAGS(QSerialPort::PinoutSignals) + +QT_END_NAMESPACE + +#endif // QSERIALPORT_H diff --git a/libs/qtandroidserialport/src/qserialport_android.cpp b/libs/qtandroidserialport/src/qserialport_android.cpp new file mode 100644 index 0000000000000000000000000000000000000000..4c15cd2ea97f092d6f5eafda80aec03fc45e7447 --- /dev/null +++ b/libs/qtandroidserialport/src/qserialport_android.cpp @@ -0,0 +1,822 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Denis Shienkov +** Copyright (C) 2012 Laszlo Papp +** Copyright (C) 2012 Andre Hartmann +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +// Written by: S. Michael Goza 2014 +// Adapted for QGC by: Gus Grubba 2015 + + +#include +#include + +#include +#include +#include +#include +#include + +#include + +#include "qserialport_android_p.h" + +QT_BEGIN_NAMESPACE + +#define BAD_PORT 0 + +static const char kJniClassName[] {"org/qgroundcontrol/qgchelper/UsbDeviceJNI"}; +static const char kJTag[] {"QGC_QSerialPort"}; + +static void jniDeviceHasDisconnected(JNIEnv *envA, jobject thizA, jint userDataA) +{ + Q_UNUSED(envA); + Q_UNUSED(thizA); + if (userDataA != 0) + ((QSerialPortPrivate *)userDataA)->q_ptr->close(); +} + +static void jniDeviceNewData(JNIEnv *envA, jobject thizA, jint userDataA, jbyteArray dataA) +{ + Q_UNUSED(thizA); + if (userDataA != 0) + { + jbyte *bytesL = envA->GetByteArrayElements(dataA, NULL); + jsize lenL = envA->GetArrayLength(dataA); + ((QSerialPortPrivate *)userDataA)->newDataArrived((char *)bytesL, lenL); + envA->ReleaseByteArrayElements(dataA, bytesL, JNI_ABORT); + } +} + +static void jniDeviceException(JNIEnv *envA, jobject thizA, jint userDataA, jstring messageA) +{ + Q_UNUSED(thizA); + if(userDataA != 0) + { + const char *stringL = envA->GetStringUTFChars(messageA, NULL); + QString strL = QString::fromUtf8(stringL); + envA->ReleaseStringUTFChars(messageA, stringL); + if(envA->ExceptionCheck()) + envA->ExceptionClear(); + ((QSerialPortPrivate *)userDataA)->exceptionArrived(strL); + } +} + +void cleanJavaException() +{ + QAndroidJniEnvironment env; + if (env->ExceptionCheck()) { + env->ExceptionDescribe(); + env->ExceptionClear(); + } +} + +QSerialPortPrivate::QSerialPortPrivate(QSerialPort *q) + : QSerialPortPrivateData(q) + , descriptor(-1) + , isCustomBaudRateSupported(false) + , emittedBytesWritten(false) + , pendingBytesWritten(0) + , hasRegisteredFunctions(false) + , jniDataBits(8) + , jniStopBits(1) + , jniParity(0) + , internalWriteTimeoutMsec(0) + , isReadStopped(true) +{ +} + +bool QSerialPortPrivate::open(QIODevice::OpenMode mode) +{ + rwMode = mode; + __android_log_print(ANDROID_LOG_INFO, kJTag, "Opening %s", systemLocation.toLatin1().data()); + + __android_log_print(ANDROID_LOG_INFO, kJTag, "Calling Java Open"); + QAndroidJniObject jnameL = QAndroidJniObject::fromString(systemLocation); + cleanJavaException(); + deviceId = QAndroidJniObject::callStaticMethod( + kJniClassName, + "open", + "(Ljava/lang/String;I)I", + jnameL.object(), + (jint)this); + cleanJavaException(); + + isReadStopped = false; + + if (deviceId == BAD_PORT) + { + __android_log_print(ANDROID_LOG_ERROR, kJTag, "Error opening %s", systemLocation.toLatin1().data()); + q_ptr->setError(QSerialPort::DeviceNotFoundError); + return false; + } + + if (!hasRegisteredFunctions) + { + __android_log_print(ANDROID_LOG_INFO, kJTag, "Registering Native Functions"); + // REGISTER THE C++ FUNCTION WITH JNI + JNINativeMethod javaMethods[] { + {"nativeDeviceHasDisconnected", "(I)V", reinterpret_cast(jniDeviceHasDisconnected)}, + {"nativeDeviceNewData", "(I[B)V", reinterpret_cast(jniDeviceNewData)}, + {"nativeDeviceException", "(ILjava/lang/String;)V", reinterpret_cast(jniDeviceException)} + }; + + QAndroidJniEnvironment jniEnv; + if (jniEnv->ExceptionCheck()) { + jniEnv->ExceptionDescribe(); + jniEnv->ExceptionClear(); + } + + QAndroidJniObject javaClass(kJniClassName); + if(!javaClass.isValid()) { + __android_log_print(ANDROID_LOG_ERROR, kJTag, "Java class %s not valid", kJniClassName); + return false; + } + jclass objectClass = jniEnv->GetObjectClass(javaClass.object()); + jint val = jniEnv->RegisterNatives(objectClass, javaMethods, sizeof(javaMethods) / sizeof(javaMethods[0])); + jniEnv->DeleteLocalRef(objectClass); + hasRegisteredFunctions = true; + __android_log_print(ANDROID_LOG_INFO, kJTag, "Native Functions Registered"); + + if (jniEnv->ExceptionCheck()) { + jniEnv->ExceptionDescribe(); + jniEnv->ExceptionClear(); + } + + if(val < 0) { + __android_log_print(ANDROID_LOG_ERROR, kJTag, "Error registering methods"); + q_ptr->setError(QSerialPort::OpenError); + return false; + } + } + + __android_log_print(ANDROID_LOG_INFO, kJTag, "Calling Java getDeviceHandle"); + cleanJavaException(); + descriptor = QAndroidJniObject::callStaticMethod( + kJniClassName, + "getDeviceHandle", + "(I)I", + deviceId); + cleanJavaException(); + + if (rwMode == QIODevice::WriteOnly) + stopReadThread(); + + return true; +} + +void QSerialPortPrivate::close() +{ + if (deviceId == BAD_PORT) + return; + + __android_log_print(ANDROID_LOG_INFO, kJTag, "Closing %s", systemLocation.toLatin1().data()); + cleanJavaException(); + jboolean resultL = QAndroidJniObject::callStaticMethod( + kJniClassName, + "close", + "(I)Z", + deviceId); + cleanJavaException(); + + descriptor = -1; + isCustomBaudRateSupported = false; + pendingBytesWritten = 0; + deviceId = BAD_PORT; + + if (!resultL) + q_ptr->setErrorString(QStringLiteral("Closing device failed")); +} + +bool QSerialPortPrivate::setParameters(int baudRateA, int dataBitsA, int stopBitsA, int parityA) +{ + if (deviceId == BAD_PORT) + { + q_ptr->setError(QSerialPort::NotOpenError); + return false; + } + + cleanJavaException(); + jboolean resultL = QAndroidJniObject::callStaticMethod( + kJniClassName, + "setParameters", + "(IIIII)Z", + deviceId, + baudRateA, + dataBitsA, + stopBitsA, + parityA); + cleanJavaException(); + + if(resultL) + { + // SET THE JNI VALUES TO WHAT WAS SENT + inputBaudRate = outputBaudRate = baudRateA; + jniDataBits = dataBitsA; + jniStopBits = stopBitsA; + jniParity = parityA; + } + + return resultL; +} + + + +void QSerialPortPrivate::stopReadThread() +{ + if (isReadStopped) + return; + cleanJavaException(); + QAndroidJniObject::callStaticMethod( + kJniClassName, + "stopIoManager", + "(I)V", + deviceId); + cleanJavaException(); + isReadStopped = true; +} + + + +void QSerialPortPrivate::startReadThread() +{ + if (!isReadStopped) + return; + cleanJavaException(); + QAndroidJniObject::callStaticMethod( + kJniClassName, + "startIoManager", + "(I)V", + deviceId); + cleanJavaException(); + isReadStopped = false; +} + +QSerialPort::PinoutSignals QSerialPortPrivate::pinoutSignals() +{ + return QSerialPort::NoSignal; +} + +bool QSerialPortPrivate::setDataTerminalReady(bool set) +{ + if (deviceId == BAD_PORT) + { + q_ptr->setError(QSerialPort::NotOpenError); + return false; + } + cleanJavaException(); + bool res = QAndroidJniObject::callStaticMethod( + kJniClassName, + "setDataTerminalReady", + "(IZ)Z", + deviceId, + set); + cleanJavaException(); + return res; +} + +bool QSerialPortPrivate::setRequestToSend(bool set) +{ + if (deviceId == BAD_PORT) + { + q_ptr->setError(QSerialPort::NotOpenError); + return false; + } + cleanJavaException(); + bool res = QAndroidJniObject::callStaticMethod( + kJniClassName, + "setRequestToSend", + "(IZ)Z", + deviceId, + set); + cleanJavaException(); + return res; +} + +bool QSerialPortPrivate::flush() +{ + return writeDataOneShot(); +} + +bool QSerialPortPrivate::clear(QSerialPort::Directions directions) +{ + if (deviceId == BAD_PORT) + { + q_ptr->setError(QSerialPort::NotOpenError); + return false; + } + + bool inputL = false; + bool outputL = false; + + if (directions == QSerialPort::AllDirections) + inputL = outputL = true; + else + { + if (directions & QSerialPort::Input) + inputL = true; + + if (directions & QSerialPort::Output) + outputL = true; + } + + cleanJavaException(); + bool res = QAndroidJniObject::callStaticMethod( + kJniClassName, + "purgeBuffers", + "(IZZ)Z", + deviceId, + inputL, + outputL); + + cleanJavaException(); + return res; +} + +bool QSerialPortPrivate::sendBreak(int duration) +{ + Q_UNUSED(duration); + return true; +} + +bool QSerialPortPrivate::setBreakEnabled(bool set) +{ + Q_UNUSED(set); + return true; +} + +void QSerialPortPrivate::startWriting() +{ + writeDataOneShot(); +} + +bool QSerialPortPrivate::waitForReadyRead(int msecs) +{ + int origL = readBuffer.size(); + + if (origL > 0) + return true; + + for (int iL=0; iLpolicy = policy; + return true; +} + +////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +void QSerialPortPrivate::newDataArrived(char *bytesA, int lengthA) +{ + Q_Q(QSerialPort); + + int bytesToReadL = lengthA; + + // Always buffered, read data from the port into the read buffer + if (readBufferMaxSize && (bytesToReadL > (readBufferMaxSize - readBuffer.size()))) { + bytesToReadL = readBufferMaxSize - readBuffer.size(); + if (bytesToReadL <= 0) { + // Buffer is full. User must read data from the buffer + // before we can read more from the port. + stopReadThread(); + return; + } + } + + char *ptr = readBuffer.reserve(bytesToReadL); + memcpy(ptr, bytesA, bytesToReadL); + + emit q->readyRead(); +} + + + +void QSerialPortPrivate::exceptionArrived(QString strA) +{ + q_ptr->setErrorString(strA); +} + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +bool QSerialPortPrivate::writeDataOneShot() +{ + Q_Q(QSerialPort); + + pendingBytesWritten = -1; + + while (!writeBuffer.isEmpty()) + { + pendingBytesWritten = writeToPort(writeBuffer.readPointer(), writeBuffer.nextDataBlockSize()); + + if (pendingBytesWritten <= 0) + { + QSerialPort::SerialPortError errorL = decodeSystemError(); + if (errorL != QSerialPort::ResourceError) + errorL = QSerialPort::WriteError; + q->setError(errorL); + return false; + } + + writeBuffer.free(pendingBytesWritten); + + emit q->bytesWritten(pendingBytesWritten); + } + + return (pendingBytesWritten < 0)? false: true; +} + +QSerialPort::SerialPortError QSerialPortPrivate::decodeSystemError() const +{ + QSerialPort::SerialPortError error; + switch (errno) { + case ENODEV: + error = QSerialPort::DeviceNotFoundError; + break; + case EACCES: + error = QSerialPort::PermissionError; + break; + case EBUSY: + error = QSerialPort::PermissionError; + break; + case EAGAIN: + error = QSerialPort::ResourceError; + break; + case EIO: + error = QSerialPort::ResourceError; + break; + case EBADF: + error = QSerialPort::ResourceError; + break; + default: + error = QSerialPort::UnknownError; + break; + } + return error; +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +qint64 QSerialPortPrivate::writeToPort(const char *data, qint64 maxSize) +{ + if (deviceId == BAD_PORT) + { + q_ptr->setError(QSerialPort::NotOpenError); + return 0; + } + + QAndroidJniEnvironment jniEnv; + jbyteArray jarrayL = jniEnv->NewByteArray(maxSize); + jniEnv->SetByteArrayRegion(jarrayL, 0, maxSize, (jbyte *)data); + if (jniEnv->ExceptionCheck()) + jniEnv->ExceptionClear(); + int resultL = QAndroidJniObject::callStaticMethod( + kJniClassName, + "write", + "(I[BI)I", + deviceId, + jarrayL, + internalWriteTimeoutMsec); + + if (jniEnv->ExceptionCheck()) + { + jniEnv->ExceptionClear(); + q_ptr->setErrorString(QStringLiteral("Writing to the device threw an exception")); + jniEnv->DeleteLocalRef(jarrayL); + return 0; + } + jniEnv->DeleteLocalRef(jarrayL); + return resultL; +} + +static inline bool evenParity(quint8 c) +{ + c ^= c >> 4; //(c7 ^ c3)(c6 ^ c2)(c5 ^ c1)(c4 ^ c0) + c ^= c >> 2; //[(c7 ^ c3)(c5 ^ c1)][(c6 ^ c2)(c4 ^ c0)] + c ^= c >> 1; + return c & 1; //(c7 ^ c3)(c5 ^ c1)(c6 ^ c2)(c4 ^ c0) +} + +typedef QMap BaudRateMap; + +// The OS specific defines can be found in termios.h + +static const BaudRateMap createStandardBaudRateMap() +{ + BaudRateMap baudRateMap; + +#ifdef B50 + baudRateMap.insert(50, B50); +#endif + +#ifdef B75 + baudRateMap.insert(75, B75); +#endif + +#ifdef B110 + baudRateMap.insert(110, B110); +#endif + +#ifdef B134 + baudRateMap.insert(134, B134); +#endif + +#ifdef B150 + baudRateMap.insert(150, B150); +#endif + +#ifdef B200 + baudRateMap.insert(200, B200); +#endif + +#ifdef B300 + baudRateMap.insert(300, B300); +#endif + +#ifdef B600 + baudRateMap.insert(600, B600); +#endif + +#ifdef B1200 + baudRateMap.insert(1200, B1200); +#endif + +#ifdef B1800 + baudRateMap.insert(1800, B1800); +#endif + +#ifdef B2400 + baudRateMap.insert(2400, B2400); +#endif + +#ifdef B4800 + baudRateMap.insert(4800, B4800); +#endif + +#ifdef B7200 + baudRateMap.insert(7200, B7200); +#endif + +#ifdef B9600 + baudRateMap.insert(9600, B9600); +#endif + +#ifdef B14400 + baudRateMap.insert(14400, B14400); +#endif + +#ifdef B19200 + baudRateMap.insert(19200, B19200); +#endif + +#ifdef B28800 + baudRateMap.insert(28800, B28800); +#endif + +#ifdef B38400 + baudRateMap.insert(38400, B38400); +#endif + +#ifdef B57600 + baudRateMap.insert(57600, B57600); +#endif + +#ifdef B76800 + baudRateMap.insert(76800, B76800); +#endif + +#ifdef B115200 + baudRateMap.insert(115200, B115200); +#endif + +#ifdef B230400 + baudRateMap.insert(230400, B230400); +#endif + +#ifdef B460800 + baudRateMap.insert(460800, B460800); +#endif + +#ifdef B500000 + baudRateMap.insert(500000, B500000); +#endif + +#ifdef B576000 + baudRateMap.insert(576000, B576000); +#endif + +#ifdef B921600 + baudRateMap.insert(921600, B921600); +#endif + +#ifdef B1000000 + baudRateMap.insert(1000000, B1000000); +#endif + +#ifdef B1152000 + baudRateMap.insert(1152000, B1152000); +#endif + +#ifdef B1500000 + baudRateMap.insert(1500000, B1500000); +#endif + +#ifdef B2000000 + baudRateMap.insert(2000000, B2000000); +#endif + +#ifdef B2500000 + baudRateMap.insert(2500000, B2500000); +#endif + +#ifdef B3000000 + baudRateMap.insert(3000000, B3000000); +#endif + +#ifdef B3500000 + baudRateMap.insert(3500000, B3500000); +#endif + +#ifdef B4000000 + baudRateMap.insert(4000000, B4000000); +#endif + + return baudRateMap; +} + +static const BaudRateMap& standardBaudRateMap() +{ + static const BaudRateMap baudRateMap = createStandardBaudRateMap(); + return baudRateMap; +} + +qint32 QSerialPortPrivate::baudRateFromSetting(qint32 setting) +{ + return standardBaudRateMap().key(setting); +} + +qint32 QSerialPortPrivate::settingFromBaudRate(qint32 baudRate) +{ + return standardBaudRateMap().value(baudRate); +} + +QList QSerialPortPrivate::standardBaudRates() +{ + return standardBaudRateMap().keys(); +} + +QSerialPort::Handle QSerialPort::handle() const +{ + Q_D(const QSerialPort); + return d->descriptor; +} + +qint64 QSerialPortPrivate::bytesToWrite() const +{ + return writeBuffer.size(); +} + +qint64 QSerialPortPrivate::writeData(const char *data, qint64 maxSize) +{ + return writeToPort(data, maxSize); +} + +QT_END_NAMESPACE + diff --git a/libs/qtandroidserialport/src/qserialport_android_p.h b/libs/qtandroidserialport/src/qserialport_android_p.h new file mode 100644 index 0000000000000000000000000000000000000000..f105c1fd74f0441ede8327a2b9bd297aa5bef232 --- /dev/null +++ b/libs/qtandroidserialport/src/qserialport_android_p.h @@ -0,0 +1,133 @@ +#ifndef QSERIALPORT_ANDROID_P_H +#define QSERIALPORT_ANDROID_P_H +/**************************************************************************** +** +** Copyright (C) 2012 Denis Shienkov +** Copyright (C) 2012 Laszlo Papp +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qserialport_p.h" + +#include +#include +#include +#include + + +QT_BEGIN_NAMESPACE + +class QSerialPortPrivate : public QSerialPortPrivateData +{ + Q_DECLARE_PUBLIC(QSerialPort) + +public: + QSerialPortPrivate(QSerialPort *q); + + bool open(QIODevice::OpenMode mode); + void close(); + + QSerialPort::PinoutSignals pinoutSignals(); + + bool setDataTerminalReady(bool set); + bool setRequestToSend(bool set); + + bool flush(); + bool clear(QSerialPort::Directions directions); + + bool sendBreak(int duration); + bool setBreakEnabled(bool set); + + void startWriting(); + + bool waitForReadyRead(int msecs); + bool waitForBytesWritten(int msecs); + + bool setBaudRate(); + bool setBaudRate(qint32 baudRate, QSerialPort::Directions directions); + bool setDataBits(QSerialPort::DataBits dataBits); + bool setParity(QSerialPort::Parity parity); + bool setStopBits(QSerialPort::StopBits stopBits); + bool setFlowControl(QSerialPort::FlowControl flowControl); + bool setDataErrorPolicy(QSerialPort::DataErrorPolicy policy); + + bool startAsyncWrite(); + bool completeAsyncWrite(); + void newDataArrived(char *bytesA, int lengthA); + void exceptionArrived(QString strA); + + void stopReadThread(); + void startReadThread(); + qint64 bytesToWrite() const; + qint64 writeData(const char *data, qint64 maxSize); + + static qint32 baudRateFromSetting(qint32 setting); + static qint32 settingFromBaudRate(qint32 baudRate); + + static QList standardBaudRates(); + + int descriptor; + bool isCustomBaudRateSupported; + + bool emittedBytesWritten; + + qint64 pendingBytesWritten; + +private: + QIODevice::OpenMode rwMode; + int deviceId; + bool hasRegisteredFunctions; + int jniDataBits; + int jniStopBits; + int jniParity; + qint64 internalWriteTimeoutMsec; + bool isReadStopped; + + bool setParameters(int baudRateA, int dataBitsA, int stopBitsA, int parityA); + + QSerialPort::SerialPortError decodeSystemError() const; + + qint64 writeToPort(const char *data, qint64 maxSize); + + bool writeDataOneShot(); +}; + +QT_END_NAMESPACE + +#endif // QSERIALPORT_ANDROID_P_H + diff --git a/libs/qtandroidserialport/src/qserialport_p.h b/libs/qtandroidserialport/src/qserialport_p.h new file mode 100644 index 0000000000000000000000000000000000000000..7bbdaaa7ca172e62ced4e401bdaa1644f6b11681 --- /dev/null +++ b/libs/qtandroidserialport/src/qserialport_p.h @@ -0,0 +1,338 @@ +/**************************************************************************** +** +** Copyright (C) 2011-2012 Denis Shienkov +** Copyright (C) 2011 Sergey Belyashov +** Copyright (C) 2012 Laszlo Papp +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QSERIALPORT_P_H +#define QSERIALPORT_P_H + +// +// W A R N I N G +// ------------- +// +// This file is not part of the Qt API. It exists purely as an +// implementation detail. This header file may change from version to +// version without notice, or even be removed. +// +// We mean it. +// + +#include "qserialport.h" + +QT_BEGIN_NAMESPACE + +class QGCRingBuffer +{ +public: + explicit inline QGCRingBuffer(int growth = 4096) : + head(0), tail(0), tailBuffer(0), basicBlockSize(growth), bufferSize(0) { + buffers.append(QByteArray()); + } + + inline int nextDataBlockSize() const { + return (tailBuffer == 0 ? tail : buffers.first().size()) - head; + } + + inline const char *readPointer() const { + return buffers.isEmpty() ? 0 : (buffers.first().constData() + head); + } + + // access the bytes at a specified position + // the out-variable length will contain the amount of bytes readable + // from there, e.g. the amount still the same QByteArray + inline const char *readPointerAtPosition(qint64 pos, qint64 &length) const { + if (pos >= 0) { + pos += head; + for (int i = 0; i < buffers.size(); ++i) { + length = (i == tailBuffer ? tail : buffers[i].size()); + if (length > pos) { + length -= pos; + return buffers[i].constData() + pos; + } + pos -= length; + } + } + + length = 0; + return 0; + } + + inline void free(int bytes) { + while (bytes > 0) { + int blockSize = buffers.first().size() - head; + + if (tailBuffer == 0 || blockSize > bytes) { + bufferSize -= bytes; + if (bufferSize <= 0) + clear(); // try to minify/squeeze us + else + head += bytes; + return; + } + + bufferSize -= blockSize; + bytes -= blockSize; + buffers.removeFirst(); + --tailBuffer; + head = 0; + } + } + + inline char *reserve(int bytes) { + if (bytes <= 0) + return 0; + + // if need buffer reallocation + if (tail + bytes > buffers.last().size()) { + if (tail >= basicBlockSize) { + // shrink this buffer to its current size + buffers.last().resize(tail); + + // create a new QByteArray + buffers.append(QByteArray()); + ++tailBuffer; + tail = 0; + } + buffers.last().resize(qMax(basicBlockSize, tail + bytes)); + } + + char *writePtr = buffers.last().data() + tail; + bufferSize += bytes; + tail += bytes; + return writePtr; + } + + inline void truncate(int pos) { + if (pos < size()) + chop(size() - pos); + } + + inline void chop(int bytes) { + while (bytes > 0) { + if (tailBuffer == 0 || tail > bytes) { + bufferSize -= bytes; + if (bufferSize <= 0) + clear(); // try to minify/squeeze us + else + tail -= bytes; + return; + } + + bufferSize -= tail; + bytes -= tail; + buffers.removeLast(); + --tailBuffer; + tail = buffers.last().size(); + } + } + + inline bool isEmpty() const { + return tailBuffer == 0 && tail == 0; + } + + inline int getChar() { + if (isEmpty()) + return -1; + char c = *readPointer(); + free(1); + return int(uchar(c)); + } + + inline void putChar(char c) { + char *ptr = reserve(1); + *ptr = c; + } + + inline void ungetChar(char c) { + --head; + if (head < 0) { + buffers.prepend(QByteArray()); + buffers.first().resize(basicBlockSize); + head = basicBlockSize - 1; + ++tailBuffer; + } + buffers.first()[head] = c; + ++bufferSize; + } + + inline int size() const { + return bufferSize; + } + + inline void clear() { + buffers.erase(buffers.begin() + 1, buffers.end()); + buffers.first().clear(); + + head = tail = 0; + tailBuffer = 0; + bufferSize = 0; + } + + inline int indexOf(char c) const { + int index = 0; + int j = head; + for (int i = 0; i < buffers.size(); ++i) { + const char *ptr = buffers[i].constData() + j; + j = index + (i == tailBuffer ? tail : buffers[i].size()) - j; + + while (index < j) { + if (*ptr++ == c) + return index; + ++index; + } + j = 0; + } + return -1; + } + + inline int indexOf(char c, int maxLength) const { + int index = 0; + int j = head; + for (int i = 0; index < maxLength && i < buffers.size(); ++i) { + const char *ptr = buffers[i].constData() + j; + j = qMin(index + (i == tailBuffer ? tail : buffers[i].size()) - j, maxLength); + + while (index < j) { + if (*ptr++ == c) + return index; + ++index; + } + j = 0; + } + return -1; + } + + inline int read(char *data, int maxLength) { + int bytesToRead = qMin(size(), maxLength); + int readSoFar = 0; + while (readSoFar < bytesToRead) { + int bytesToReadFromThisBlock = qMin(bytesToRead - readSoFar, nextDataBlockSize()); + if (data) + memcpy(data + readSoFar, readPointer(), bytesToReadFromThisBlock); + readSoFar += bytesToReadFromThisBlock; + free(bytesToReadFromThisBlock); + } + return readSoFar; + } + + // read an unspecified amount (will read the first buffer) + inline QByteArray read() { + if (bufferSize == 0) + return QByteArray(); + + QByteArray qba(buffers.takeFirst()); + + qba.reserve(0); // avoid that resizing needlessly reallocates + if (tailBuffer == 0) { + qba.resize(tail); + tail = 0; + buffers.append(QByteArray()); + } else { + --tailBuffer; + } + qba.remove(0, head); // does nothing if head is 0 + head = 0; + bufferSize -= qba.size(); + return qba; + } + + // append a new buffer to the end + inline void append(const QByteArray &qba) { + if (tail == 0) { + buffers.last() = qba; + } else { + buffers.last().resize(tail); + buffers.append(qba); + ++tailBuffer; + } + tail = qba.size(); + bufferSize += tail; + } + + inline int skip(int length) { + return read(0, length); + } + + inline int readLine(char *data, int maxLength) { + if (!data || --maxLength <= 0) + return -1; + + int i = indexOf('\n', maxLength); + i = read(data, i >= 0 ? (i + 1) : maxLength); + + // Terminate it. + data[i] = '\0'; + return i; + } + + inline bool canReadLine() const { + return indexOf('\n') >= 0; + } + +private: + QList buffers; + int head, tail; + int tailBuffer; // always buffers.size() - 1 + const int basicBlockSize; + int bufferSize; +}; + +class QSerialPortPrivateData +{ +public: + enum IoConstants { + ReadChunkSize = 512 + }; + + QSerialPortPrivateData(QSerialPort *q); + int timeoutValue(int msecs, int elapsed); + + qint64 readBufferMaxSize; + QGCRingBuffer readBuffer; + QGCRingBuffer writeBuffer; + QSerialPort::SerialPortError error; + QString systemLocation; + qint32 inputBaudRate; + qint32 outputBaudRate; + QSerialPort::DataBits dataBits; + QSerialPort::Parity parity; + QSerialPort::StopBits stopBits; + QSerialPort::FlowControl flowControl; + QSerialPort::DataErrorPolicy policy; + bool settingsRestoredOnClose; + QSerialPort * const q_ptr; +}; + +QT_END_NAMESPACE + +#endif // QSERIALPORT_P_H diff --git a/libs/qtandroidserialport/src/qserialportinfo.cpp b/libs/qtandroidserialport/src/qserialportinfo.cpp new file mode 100644 index 0000000000000000000000000000000000000000..be3eed17c55e7fc4aba35e1cc780158e3c18213e --- /dev/null +++ b/libs/qtandroidserialport/src/qserialportinfo.cpp @@ -0,0 +1,292 @@ +/**************************************************************************** +** +** Copyright (C) 2011-2012 Denis Shienkov +** Copyright (C) 2011 Sergey Belyashov +** Copyright (C) 2012 Laszlo Papp +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qserialportinfo.h" +#include "qserialportinfo_p.h" +#include "qserialport.h" + +QT_BEGIN_NAMESPACE + + +/*! + \class QSerialPortInfo + + \brief Provides information about existing serial ports. + + \ingroup serialport-main + \inmodule QtSerialPort + \since 5.1 + + Use the static functions to generate a list of QSerialPortInfo + objects. Each QSerialPortInfo object in the list represents a single + serial port and can be queried for the port name, system location, + description, and manufacturer. The QSerialPortInfo class can also be + used as an input parameter for the setPort() method of the QSerialPort + class. + + \sa QSerialPort +*/ + +/*! + Constructs an empty QSerialPortInfo object. + + \sa isNull() +*/ +QSerialPortInfo::QSerialPortInfo() +{ +} + +/*! + Constructs a copy of \a other. +*/ +QSerialPortInfo::QSerialPortInfo(const QSerialPortInfo &other) + : d_ptr(other.d_ptr ? new QSerialPortInfoPrivate(*other.d_ptr) : Q_NULLPTR) +{ +} + +/*! + Constructs a QSerialPortInfo object from serial \a port. +*/ +QSerialPortInfo::QSerialPortInfo(const QSerialPort &port) +{ + foreach (const QSerialPortInfo &serialPortInfo, availablePorts()) { + if (port.portName() == serialPortInfo.portName()) { + *this = serialPortInfo; + break; + } + } +} + +/*! + Constructs a QSerialPortInfo object from serial port \a name. + + This constructor finds the relevant serial port among the available ones + according to the port name \a name, and constructs the serial port info + instance for that port. +*/ +QSerialPortInfo::QSerialPortInfo(const QString &name) +{ + foreach (const QSerialPortInfo &serialPortInfo, availablePorts()) { + if (name == serialPortInfo.portName()) { + *this = serialPortInfo; + break; + } + } +} + +QSerialPortInfo::QSerialPortInfo(const QSerialPortInfoPrivate &dd) + : d_ptr(new QSerialPortInfoPrivate(dd)) +{ +} + +/*! + Destroys the QSerialPortInfo object. References to the values in the + object become invalid. +*/ +QSerialPortInfo::~QSerialPortInfo() +{ +} + +/*! \fn void QSerialPortInfo::swap(QSerialPortInfo &other) + + Swaps QSerialPortInfo \a other with this QSerialPortInfo. This operation is + very fast and never fails. +*/ +void QSerialPortInfo::swap(QSerialPortInfo &other) +{ + d_ptr.swap(other.d_ptr); +} + +/*! + Sets the QSerialPortInfo object to be equal to \a other. +*/ +QSerialPortInfo& QSerialPortInfo::operator=(const QSerialPortInfo &other) +{ + QSerialPortInfo(other).swap(*this); + return *this; +} + +/*! + Returns the name of the serial port. + + \sa systemLocation() +*/ +QString QSerialPortInfo::portName() const +{ + Q_D(const QSerialPortInfo); + return !d ? QString() : d->portName; +} + +/*! + Returns the system location of the serial port. + + \sa portName() +*/ +QString QSerialPortInfo::systemLocation() const +{ + Q_D(const QSerialPortInfo); + return !d ? QString() : d->device; +} + +/*! + Returns the description string of the serial port, + if available; otherwise returns an empty string. + + \sa manufacturer(), serialNumber() +*/ +QString QSerialPortInfo::description() const +{ + Q_D(const QSerialPortInfo); + return !d ? QString() : d->description; +} + +/*! + Returns the manufacturer string of the serial port, + if available; otherwise returns an empty string. + + \sa description(), serialNumber() +*/ +QString QSerialPortInfo::manufacturer() const +{ + Q_D(const QSerialPortInfo); + return !d ? QString() : d->manufacturer; +} + +/*! + \since 5.3 + + Returns the serial number string of the serial port, + if available; otherwise returns an empty string. + + \note The serial number may include letters. + + \sa description(), manufacturer() +*/ +QString QSerialPortInfo::serialNumber() const +{ + Q_D(const QSerialPortInfo); + return !d ? QString() : d->serialNumber; +} + +/*! + Returns the 16-bit vendor number for the serial port, if available; + otherwise returns zero. + + \sa hasVendorIdentifier(), productIdentifier(), hasProductIdentifier() +*/ +quint16 QSerialPortInfo::vendorIdentifier() const +{ + Q_D(const QSerialPortInfo); + return !d ? 0 : d->vendorIdentifier; +} + +/*! + Returns the 16-bit product number for the serial port, if available; + otherwise returns zero. + + \sa hasProductIdentifier(), vendorIdentifier(), hasVendorIdentifier() +*/ +quint16 QSerialPortInfo::productIdentifier() const +{ + Q_D(const QSerialPortInfo); + return !d ? 0 : d->productIdentifier; +} + +/*! + Returns true if there is a valid 16-bit vendor number present; otherwise + returns false. + + \sa vendorIdentifier(), productIdentifier(), hasProductIdentifier() +*/ +bool QSerialPortInfo::hasVendorIdentifier() const +{ + Q_D(const QSerialPortInfo); + return !d ? false : d->hasVendorIdentifier; +} + +/*! + Returns true if there is a valid 16-bit product number present; otherwise + returns false. + + \sa productIdentifier(), vendorIdentifier(), hasVendorIdentifier() +*/ +bool QSerialPortInfo::hasProductIdentifier() const +{ + Q_D(const QSerialPortInfo); + return !d ? false : d->hasProductIdentifier; +} + +/*! + \fn bool QSerialPortInfo::isNull() const + + Returns whether this QSerialPortInfo object holds a + serial port definition. + + \sa isBusy() +*/ + +/*! + \fn bool QSerialPortInfo::isBusy() const + + Returns true if serial port is busy; + otherwise returns false. + + \sa isNull() +*/ + +/*! + \fn bool QSerialPortInfo::isValid() const + \obsolete + + Returns true if serial port is present on system; + otherwise returns false. + + \sa isNull(), isBusy() +*/ + +/*! + \fn QList QSerialPortInfo::standardBaudRates() + + Returns a list of available standard baud rates supported by + the current serial port. +*/ + +/*! + \fn QList QSerialPortInfo::availablePorts() + + Returns a list of available serial ports on the system. +*/ + +QT_END_NAMESPACE diff --git a/libs/qtandroidserialport/src/qserialportinfo.h b/libs/qtandroidserialport/src/qserialportinfo.h new file mode 100644 index 0000000000000000000000000000000000000000..099656a5b7e1d18ccac29ccbd4cc70ef83ad0058 --- /dev/null +++ b/libs/qtandroidserialport/src/qserialportinfo.h @@ -0,0 +1,95 @@ +/**************************************************************************** +** +** Copyright (C) 2012 Denis Shienkov +** Copyright (C) 2012 Laszlo Papp +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QSERIALPORTINFO_H +#define QSERIALPORTINFO_H + +#include +#include + +QT_BEGIN_NAMESPACE + +class QSerialPort; +class QSerialPortInfoPrivate; +class QSerialPortInfoPrivateDeleter; + +class QSerialPortInfo +{ + Q_DECLARE_PRIVATE(QSerialPortInfo) +public: + QSerialPortInfo(); + explicit QSerialPortInfo(const QSerialPort &port); + explicit QSerialPortInfo(const QString &name); + QSerialPortInfo(const QSerialPortInfo &other); + ~QSerialPortInfo(); + + QSerialPortInfo& operator=(const QSerialPortInfo &other); + void swap(QSerialPortInfo &other); + + QString portName() const; + QString systemLocation() const; + QString description() const; + QString manufacturer() const; + QString serialNumber() const; + + quint16 vendorIdentifier() const; + quint16 productIdentifier() const; + + bool hasVendorIdentifier() const; + bool hasProductIdentifier() const; + + bool isNull() const; + bool isBusy() const; +#if QT_DEPRECATED_SINCE(5, 2) + QT_DEPRECATED bool isValid() const; +#endif + + static QList standardBaudRates(); + static QList availablePorts(); + + QScopedPointer d_ptr; + +private: + QSerialPortInfo(const QSerialPortInfoPrivate &dd); + friend QList availablePortsByUdev(bool &ok); + friend QList availablePortsBySysfs(bool &ok); + friend QList availablePortsByFiltersOfDevices(bool &ok); +}; + +inline bool QSerialPortInfo::isNull() const +{ return !d_ptr; } + +QT_END_NAMESPACE + +#endif // QSERIALPORTINFO_H diff --git a/libs/qtandroidserialport/src/qserialportinfo_android.cpp b/libs/qtandroidserialport/src/qserialportinfo_android.cpp new file mode 100644 index 0000000000000000000000000000000000000000..569be0c24f46ecff6de98405d84a6ec7e740407d --- /dev/null +++ b/libs/qtandroidserialport/src/qserialportinfo_android.cpp @@ -0,0 +1,160 @@ +/**************************************************************************** +** +** Copyright (C) 2011-2012 Denis Shienkov +** Copyright (C) 2011 Sergey Belyashov +** Copyright (C) 2012 Laszlo Papp +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qserialportinfo.h" +#include "qserialportinfo_p.h" +#include "qserialport_android_p.h" + +#include +#include +#include +#include + +#include + +QT_BEGIN_NAMESPACE +static const char V_jniClassName[] {"org/qgroundcontrol/qgchelper/UsbDeviceJNI"}; +static const char V_TAG[] {"QGC_QSerialPortInfo"}; + +extern void cleanJavaException(); + +QList availablePortsByFiltersOfDevices(bool &ok) +{ + QList serialPortInfoList; + + //__android_log_print(ANDROID_LOG_INFO, V_TAG, "Collecting device list"); + QAndroidJniObject resultL = QAndroidJniObject::callStaticObjectMethod( + V_jniClassName, + "availableDevicesInfo", + "()[Ljava/lang/String;"); + + if (!resultL.isValid()) { + __android_log_print(ANDROID_LOG_ERROR, V_TAG, "Error from availableDevicesInfo"); + ok = false; + return serialPortInfoList; + } + + QAndroidJniEnvironment envL; + jobjectArray objArrayL = resultL.object(); + int countL = envL->GetArrayLength(objArrayL); + + for (int iL = 0; iL < countL; iL++) + { + QSerialPortInfoPrivate priv; + jstring stringL = (jstring)(envL->GetObjectArrayElement(objArrayL, iL)); + const char *rawStringL = envL->GetStringUTFChars(stringL, 0); + //__android_log_print(ANDROID_LOG_INFO, V_TAG, "Adding device: %s", rawStringL); + QStringList strListL = QString::fromUtf8(rawStringL).split(QStringLiteral(":")); + envL->ReleaseStringUTFChars(stringL, rawStringL); + + priv.portName = strListL[0]; + priv.device = strListL[0]; + priv.manufacturer = strListL[1]; + priv.productIdentifier = strListL[2].toInt(); + priv.hasProductIdentifier = (priv.productIdentifier != 0) ? true: false; + priv.vendorIdentifier = strListL[3].toInt(); + priv.hasVendorIdentifier = (priv.vendorIdentifier != 0) ? true: false; + + serialPortInfoList.append(priv); + } + + return serialPortInfoList; +} + +QList availablePortsBySysfs() +{ + bool ok; + return availablePortsByFiltersOfDevices(ok); +} + +QList availablePortsByUdev() +{ + bool ok; + return availablePortsByFiltersOfDevices(ok); +} + +QList QSerialPortInfo::availablePorts() +{ + bool ok; + return availablePortsByFiltersOfDevices(ok); +} + +QList QSerialPortInfo::standardBaudRates() +{ + return QSerialPortPrivate::standardBaudRates(); +} + +bool QSerialPortInfo::isBusy() const +{ + QAndroidJniObject jstrL = QAndroidJniObject::fromString(d_ptr->portName); + cleanJavaException(); + jboolean resultL = QAndroidJniObject::callStaticMethod( + V_jniClassName, + "isDeviceNameOpen", + "(Ljava/lang/String;)Z", + jstrL.object()); + cleanJavaException(); + return resultL; +} + +bool QSerialPortInfo::isValid() const +{ + QAndroidJniObject jstrL = QAndroidJniObject::fromString(d_ptr->portName); + cleanJavaException(); + jboolean resultL = QAndroidJniObject::callStaticMethod( + V_jniClassName, + "isDeviceNameValid", + "(Ljava/lang/String;)Z", + jstrL.object()); + cleanJavaException(); + return resultL; +} + +QString QSerialPortInfoPrivate::portNameToSystemLocation(const QString &source) +{ + return (source.startsWith(QLatin1Char('/')) + || source.startsWith(QStringLiteral("./")) + || source.startsWith(QStringLiteral("../"))) + ? source : (QStringLiteral("/dev/") + source); +} + +QString QSerialPortInfoPrivate::portNameFromSystemLocation(const QString &source) +{ + return source.startsWith(QStringLiteral("/dev/")) + ? source.mid(5) : source; +} + +QT_END_NAMESPACE + diff --git a/libs/qtandroidserialport/src/qserialportinfo_p.h b/libs/qtandroidserialport/src/qserialportinfo_p.h new file mode 100644 index 0000000000000000000000000000000000000000..5a15dcfebe74b5e173b5a615a8d050e81476f44a --- /dev/null +++ b/libs/qtandroidserialport/src/qserialportinfo_p.h @@ -0,0 +1,95 @@ +/**************************************************************************** +** +** Copyright (C) 2011-2012 Denis Shienkov +** Copyright (C) 2011 Sergey Belyashov +** Copyright (C) 2012 Laszlo Papp +** Contact: http://www.qt.io/licensing/ +** +** This file is part of the QtSerialPort module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL21$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see http://www.qt.io/terms-conditions. For further +** information use the contact form at http://www.qt.io/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 or version 3 as published by the Free +** Software Foundation and appearing in the file LICENSE.LGPLv21 and +** LICENSE.LGPLv3 included in the packaging of this file. Please review the +** following information to ensure the GNU Lesser General Public License +** requirements will be met: https://www.gnu.org/licenses/lgpl.html and +** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** As a special exception, The Qt Company gives you certain additional +** rights. These rights are described in The Qt Company LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef QSERIALPORTINFO_P_H +#define QSERIALPORTINFO_P_H + +// +// W A R N I N G +// ------------- +// +// This file is not part of the Qt API. It exists purely as an +// implementation detail. This header file may change from version to +// version without notice, or even be removed. +// +// We mean it. +// + +#include + +QT_BEGIN_NAMESPACE + +class Q_AUTOTEST_EXPORT QSerialPortInfoPrivate +{ +public: + QSerialPortInfoPrivate() + : vendorIdentifier(0) + , productIdentifier(0) + , hasVendorIdentifier(false) + , hasProductIdentifier(false) + { + } + + ~QSerialPortInfoPrivate() + { + } + + static QString portNameToSystemLocation(const QString &source); + static QString portNameFromSystemLocation(const QString &source); + + QString portName; + QString device; + QString description; + QString manufacturer; + QString serialNumber; + + quint16 vendorIdentifier; + quint16 productIdentifier; + + bool hasVendorIdentifier; + bool hasProductIdentifier; +}; + +class QSerialPortInfoPrivateDeleter +{ +public: + static void cleanup(QSerialPortInfoPrivate *p) { + delete p; + } +}; + +QT_END_NAMESPACE + +#endif // QSERIALPORTINFO_P_H diff --git a/libs/qtandroidserialport/src/qtandroidserialport.pri b/libs/qtandroidserialport/src/qtandroidserialport.pri new file mode 100644 index 0000000000000000000000000000000000000000..d3d98a0ba880c05feaaa2e0ae6769ed9c717136a --- /dev/null +++ b/libs/qtandroidserialport/src/qtandroidserialport.pri @@ -0,0 +1,26 @@ +android { + + QT += androidextras + + INCLUDEPATH += $$PWD + + PUBLIC_HEADERS += \ + $$PWD/qserialport.h \ + $$PWD/qserialportinfo.h + + PRIVATE_HEADERS += \ + $$PWD/qserialport_p.h \ + $$PWD/qserialportinfo_p.h \ + $$PWD/qserialport_android_p.h + + SOURCES += \ + $$PWD/qserialport.cpp \ + $$PWD/qserialportinfo.cpp \ + $$PWD/qserialport_android.cpp \ + $$PWD/qserialportinfo_android.cpp + + CONFIG += mobility + + HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS + +} diff --git a/qgroundcontrol.desktop b/qgroundcontrol.desktop new file mode 100644 index 0000000000000000000000000000000000000000..9f815f8e1edc32205ca0dc8429613e0b90d37bf6 --- /dev/null +++ b/qgroundcontrol.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Application +Name=qgroundcontrol +GenericName=Ground Control Station +Comment=UAS ground control station +Icon=qgroundcontrol +Exec=qgroundcontrol +Terminal=false +Categories=Utility; +Keywords=computer; diff --git a/qgroundcontrol.pro b/qgroundcontrol.pro index ffbc0bf66f6fee9b832c12bee1cef512fe25492b..6928aadf96b2ef13c0e8365a3b6c38315f2aa07e 100644 --- a/qgroundcontrol.pro +++ b/qgroundcontrol.pro @@ -3,7 +3,7 @@ # Please see our website at # Maintainer: # Lorenz Meier -# (c) 2009-2014 QGroundControl Developers +# (c) 2009-2015 QGroundControl Developers # This file is part of the open groundstation project # QGroundControl is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,772 +17,16 @@ # along with QGroundControl. If not, see . # ------------------------------------------------- -message(Qt version $$[QT_VERSION]) +TEMPLATE = subdirs +CONFIG += ordered +SUBDIRS = ./QGCLocationPlugin.pro +SUBDIRS += ./QGCApplication.pro -# Load additional config flags from user_config.pri -exists(user_config.pri):infile(user_config.pri, CONFIG) { - CONFIG += $$fromfile(user_config.pri, CONFIG) - message($$sprintf("Using user-supplied additional config: '%1' specified in user_config.pri", $$fromfile(user_config.pri, CONFIG))) -} +QGCApplication.depends = QGCLocationPlugin -# Setup our supported build types. We do this once here and then use the defined config scopes -# to allow us to easily modify suported build types in one place instead of duplicated throughout -# the project file. +message(Qt version $$[QT_VERSION]) !equals(QT_MAJOR_VERSION, 5) | !greaterThan(QT_MINOR_VERSION, 3) { error("Unsupported Qt version, 5.4+ is required") } -linux { - linux-g++ | linux-g++-64 { - message("Linux build") - CONFIG += LinuxBuild link_pkgconfig - } else { - error("Unsuported Linux toolchain, only GCC 32- or 64-bit is supported") - } -} else : win32 { - win32-msvc2010 | win32-msvc2012 | win32-msvc2013 { - message("Windows build") - CONFIG += WindowsBuild - } else { - error("Unsupported Windows toolchain, only Visual Studio 2010, 2012, and 2013 are supported") - } -} else : macx { - macx-clang | macx-llvm { - message("Mac build") - CONFIG += MacBuild - } else { - error("Unsupported Mac toolchain, only 64-bit LLVM+clang is supported") - } -} else { - error("Unsupported build platform, only Linux, Windows, and Mac are supported") -} - -# Installer configuration - -installer { - CONFIG -= debug - CONFIG -= debug_and_release - CONFIG += release - message(Build Installer) -} - -# Setup our supported build flavors - -CONFIG(debug, debug|release) { - message(Debug flavor) - CONFIG += DebugBuild -} else:CONFIG(release, debug|release) { - message(Release flavor) - CONFIG += ReleaseBuild -} else { - error(Unsupported build flavor) -} - -# Need to special case Windows debug_and_release since VS Project creation in this case does strange things [QTBUG-40351] -win32:debug_and_release { - CONFIG += WindowsDebugAndRelease -} - -# Setup our build directories - -BASEDIR = $${IN_PWD} -DebugBuild { - DESTDIR = $${OUT_PWD}/debug - BUILDDIR = $${OUT_PWD}/build-debug -} -ReleaseBuild { - DESTDIR = $${OUT_PWD}/release - BUILDDIR = $${OUT_PWD}/build-release -} -OBJECTS_DIR = $${BUILDDIR}/obj -MOC_DIR = $${BUILDDIR}/moc -UI_DIR = $${BUILDDIR}/ui -RCC_DIR = $${BUILDDIR}/rcc -LANGUAGE = C++ - -message(BASEDIR $$BASEDIR DESTDIR $$DESTDIR TARGET $$TARGET) - -# Qt configuration -CONFIG += qt \ - thread - -QT += network \ - opengl \ - svg \ - xml \ - concurrent \ - widgets \ - gui \ - serialport \ - sql \ - printsupport \ - qml \ - quick \ - quickwidgets - -contains(DEFINES, QGC_NOTIFY_TUNES_ENABLED) { - QT += multimedia -} - -!contains(DEFINES, DISABLE_GOOGLE_EARTH) { - QT += webkit webkitwidgets -} - - -# testlib is needed even in release flavor for QSignalSpy support -QT += testlib - -# Turn off serial port warnings -DEFINES += _TTY_NOWARN_ - -# -# OS Specific settings -# - -MacBuild { - QMAKE_INFO_PLIST = Custom-Info.plist - CONFIG += x86_64 - CONFIG -= x86 - QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6 - QMAKE_MAC_SDK = macosx10.9 - ICON = $$BASEDIR/files/images/icons/macx.icns - QT += quickwidgets -} - -LinuxBuild { - DEFINES += __STDC_LIMIT_MACROS - CONFIG += qesp_linux_udev -} - -WindowsBuild { - DEFINES += __STDC_LIMIT_MACROS - - # Specify multi-process compilation within Visual Studio. - # (drastically improves compilation times for multi-core computers) - QMAKE_CXXFLAGS_DEBUG += -MP - QMAKE_CXXFLAGS_RELEASE += -MP - - RC_FILE = $$BASEDIR/qgroundcontrol.rc -} - -# -# By default warnings as errors are turned off. Even so, in order for a pull request -# to be accepted you must compile cleanly with warnings as errors turned on the default -# set of OS builds. See http://www.qgroundcontrol.org/dev/contribute for more details. -# You can use the WarningsAsErrorsOn CONFIG switch to turn warnings as errors on for your -# own builds. -# - -MacBuild | LinuxBuild { - QMAKE_CXXFLAGS_WARN_ON += -Wall - WarningsAsErrorsOn { - QMAKE_CXXFLAGS_WARN_ON += -Werror - } -} - -WindowsBuild { - QMAKE_CXXFLAGS_WARN_ON += /W3 \ - /wd4996 \ # silence warnings about deprecated strcpy and whatnot - /wd4005 \ # silence warnings about macro redefinition - /wd4290 \ # ignore exception specifications - /Zc:strictStrings- # work around win 8.1 sdk sapi.h problem - WarningsAsErrorsOn { - QMAKE_CXXFLAGS_WARN_ON += /WX - } -} - -# -# Build-specific settings -# - -DebugBuild { - CONFIG += console -} - -ReleaseBuild { - DEFINES += QT_NO_DEBUG - - WindowsBuild { - # Use link time code generation for better optimization (I believe this is supported in MSVC Express, but not 100% sure) - QMAKE_LFLAGS_LTCG = /LTCG - QMAKE_CFLAGS_LTCG = -GL - } -} - -# qextserialport should not be used by general QGroundControl code. Use QSerialPort instead. This is only -# here to support special case Firmware Upgrade code. -include(libs/qextserialport/src/qextserialport.pri) - -# -# External library configuration -# - -include(QGCExternalLibs.pri) - -# -# Post link configuration -# - -include(QGCSetup.pri) - -# -# Installer targets -# - -include(QGCInstaller.pri) - -# -# Main QGroundControl portion of project file -# - -RESOURCES += qgroundcontrol.qrc - -TRANSLATIONS += \ - es-MX.ts \ - en-US.ts - -DEPENDPATH += \ - . \ - plugins - -INCLUDEPATH += . - -INCLUDEPATH += \ - src \ - src/ui \ - src/ui/linechart \ - src/ui/uas \ - src/ui/map \ - src/uas \ - src/comm \ - src/audio \ - include/ui \ - src/input \ - src/lib/qmapcontrol \ - src/ui/mavlink \ - src/ui/param \ - src/ui/map3D \ - src/ui/mission \ - src/ui/designer \ - src/ui/configuration \ - src/ui/px4_configuration \ - src/ui/main \ - src/ui/toolbar \ - src/VehicleSetup \ - src/AutoPilotPlugins \ - src/QmlControls - -FORMS += \ - src/ui/MainWindow.ui \ - src/ui/SerialSettings.ui \ - src/ui/UASControl.ui \ - src/ui/UASList.ui \ - src/ui/UASInfo.ui \ - src/ui/Linechart.ui \ - src/ui/UASView.ui \ - src/ui/ParameterInterface.ui \ - src/ui/WaypointList.ui \ - src/ui/JoystickWidget.ui \ - src/ui/DebugConsole.ui \ - src/ui/HDDisplay.ui \ - src/ui/MAVLinkSettingsWidget.ui \ - src/ui/AudioOutputWidget.ui \ - src/ui/QGCSensorSettingsWidget.ui \ - src/ui/QGCDataPlot2D.ui \ - src/ui/QMap3D.ui \ - src/ui/map3D/QGCGoogleEarthView.ui \ - src/ui/uas/QGCUnconnectedInfoWidget.ui \ - src/ui/designer/QGCToolWidget.ui \ - src/ui/designer/QGCParamSlider.ui \ - src/ui/designer/QGCActionButton.ui \ - src/ui/designer/QGCCommandButton.ui \ - src/ui/designer/QGCToolWidgetComboBox.ui \ - src/ui/designer/QGCTextLabel.ui \ - src/ui/designer/QGCXYPlot.ui \ - src/ui/QGCMAVLinkLogPlayer.ui \ - src/ui/QGCWaypointListMulti.ui \ - src/ui/QGCUASFileViewMulti.ui \ - src/ui/QGCTCPLinkConfiguration.ui \ - src/ui/SettingsDialog.ui \ - src/ui/map/QGCMapTool.ui \ - src/ui/map/QGCMapToolBar.ui \ - src/ui/QGCMAVLinkInspector.ui \ - src/ui/WaypointViewOnlyView.ui \ - src/ui/WaypointEditableView.ui \ - src/ui/mavlink/QGCMAVLinkMessageSender.ui \ - src/ui/QGCPluginHost.ui \ - src/ui/mission/QGCMissionOther.ui \ - src/ui/mission/QGCMissionNavWaypoint.ui \ - src/ui/mission/QGCMissionDoJump.ui \ - src/ui/mission/QGCMissionConditionDelay.ui \ - src/ui/mission/QGCMissionNavLoiterUnlim.ui \ - src/ui/mission/QGCMissionNavLoiterTurns.ui \ - src/ui/mission/QGCMissionNavLoiterTime.ui \ - src/ui/mission/QGCMissionNavReturnToLaunch.ui \ - src/ui/mission/QGCMissionNavLand.ui \ - src/ui/mission/QGCMissionNavTakeoff.ui \ - src/ui/mission/QGCMissionNavSweep.ui \ - src/ui/mission/QGCMissionDoStartSearch.ui \ - src/ui/mission/QGCMissionDoFinishSearch.ui \ - src/ui/QGCHilConfiguration.ui \ - src/ui/QGCHilFlightGearConfiguration.ui \ - src/ui/QGCHilJSBSimConfiguration.ui \ - src/ui/QGCHilXPlaneConfiguration.ui \ - src/ui/uas/UASQuickView.ui \ - src/ui/uas/UASQuickViewItemSelect.ui \ - src/ui/QGCTabbedInfoView.ui \ - src/ui/UASRawStatusView.ui \ - src/ui/uas/UASMessageView.ui \ - src/ui/JoystickButton.ui \ - src/ui/JoystickAxis.ui \ - src/ui/configuration/terminalconsole.ui \ - src/ui/configuration/SerialSettingsDialog.ui \ - src/ui/px4_configuration/QGCPX4AirframeConfig.ui \ - src/ui/px4_configuration/PX4RCCalibration.ui \ - src/ui/QGCUASFileView.ui \ - src/QGCQmlWidgetHolder.ui \ - src/ui/QGCMapRCToParamDialog.ui \ - src/ui/QGCLinkConfiguration.ui \ - src/ui/QGCCommConfiguration.ui \ - src/ui/QGCUDPLinkConfiguration.ui - -HEADERS += \ - src/MG.h \ - src/QGCApplication.h \ - src/QGCSingleton.h \ - src/uas/UASInterface.h \ - src/uas/UAS.h \ - src/uas/UASManager.h \ - src/comm/LinkManager.h \ - src/comm/LinkInterface.h \ - src/comm/SerialLink.h \ - src/comm/ProtocolInterface.h \ - src/comm/MAVLinkProtocol.h \ - src/comm/QGCFlightGearLink.h \ - src/comm/QGCJSBSimLink.h \ - src/comm/QGCXPlaneLink.h \ - src/ui/SerialConfigurationWindow.h \ - src/ui/MainWindow.h \ - src/ui/uas/UASControlWidget.h \ - src/ui/uas/UASListWidget.h \ - src/ui/uas/UASInfoWidget.h \ - src/ui/HUD.h \ - src/ui/linechart/LinechartWidget.h \ - src/ui/linechart/LinechartPlot.h \ - src/ui/linechart/Scrollbar.h \ - src/ui/linechart/ScrollZoomer.h \ - src/QGCConfig.h \ - src/ui/uas/UASView.h \ - src/ui/CameraView.h \ - src/comm/MAVLinkSimulationLink.h \ - src/comm/UDPLink.h \ - src/comm/TCPLink.h \ - src/ui/ParameterInterface.h \ - src/ui/WaypointList.h \ - src/Waypoint.h \ - src/input/JoystickInput.h \ - src/ui/JoystickWidget.h \ - src/ui/DebugConsole.h \ - src/ui/HDDisplay.h \ - src/ui/MAVLinkSettingsWidget.h \ - src/ui/AudioOutputWidget.h \ - src/GAudioOutput.h \ - src/LogCompressor.h \ - src/ui/QGCParamWidget.h \ - src/ui/QGCSensorSettingsWidget.h \ - src/ui/linechart/Linecharts.h \ - src/uas/UASWaypointManager.h \ - src/ui/HSIDisplay.h \ - src/QGC.h \ - src/ui/QGCDataPlot2D.h \ - src/ui/linechart/IncrementalPlot.h \ - src/comm/QGCMAVLink.h \ - src/ui/QGCMainWindowAPConfigurator.h \ - src/comm/MAVLinkSwarmSimulationLink.h \ - src/ui/uas/QGCUnconnectedInfoWidget.h \ - src/ui/designer/QGCToolWidget.h \ - src/ui/designer/QGCParamSlider.h \ - src/ui/designer/QGCCommandButton.h \ - src/ui/designer/QGCToolWidgetItem.h \ - src/ui/designer/QGCToolWidgetComboBox.h \ - src/ui/designer/QGCTextLabel.h \ - src/ui/designer/QGCRadioChannelDisplay.h \ - src/ui/designer/QGCXYPlot.h \ - src/ui/designer/RCChannelWidget.h \ - src/ui/QGCMAVLinkLogPlayer.h \ - src/comm/MAVLinkSimulationWaypointPlanner.h \ - src/comm/MAVLinkSimulationMAV.h \ - src/uas/QGCMAVLinkUASFactory.h \ - src/ui/QGCWaypointListMulti.h \ - src/ui/QGCUASFileViewMulti.h \ - src/ui/QGCTCPLinkConfiguration.h \ - src/ui/SettingsDialog.h \ - src/uas/QGCUASParamManager.h \ - src/ui/map/QGCMapWidget.h \ - src/ui/map/MAV2DIcon.h \ - src/ui/map/Waypoint2DIcon.h \ - src/ui/map/QGCMapTool.h \ - src/ui/map/QGCMapToolBar.h \ - src/QGCGeo.h \ - src/ui/QGCToolBar.h \ - src/ui/QGCMAVLinkInspector.h \ - src/ui/MAVLinkDecoder.h \ - src/ui/WaypointViewOnlyView.h \ - src/ui/WaypointEditableView.h \ - src/ui/QGCRGBDView.h \ - src/ui/mavlink/QGCMAVLinkMessageSender.h \ - src/ui/QGCPluginHost.h \ - src/ui/mission/QGCMissionOther.h \ - src/ui/mission/QGCMissionNavWaypoint.h \ - src/ui/mission/QGCMissionDoJump.h \ - src/ui/mission/QGCMissionConditionDelay.h \ - src/ui/mission/QGCMissionNavLoiterUnlim.h \ - src/ui/mission/QGCMissionNavLoiterTurns.h \ - src/ui/mission/QGCMissionNavLoiterTime.h \ - src/ui/mission/QGCMissionNavReturnToLaunch.h \ - src/ui/mission/QGCMissionNavLand.h \ - src/ui/mission/QGCMissionNavTakeoff.h \ - src/ui/mission/QGCMissionNavSweep.h \ - src/ui/mission/QGCMissionDoStartSearch.h \ - src/ui/mission/QGCMissionDoFinishSearch.h \ - src/comm/QGCHilLink.h \ - src/ui/QGCHilConfiguration.h \ - src/ui/QGCHilFlightGearConfiguration.h \ - src/ui/QGCHilJSBSimConfiguration.h \ - src/ui/QGCHilXPlaneConfiguration.h \ - src/ui/uas/UASQuickView.h \ - src/ui/uas/UASQuickViewItem.h \ - src/ui/linechart/ChartPlot.h \ - src/ui/uas/UASQuickViewItemSelect.h \ - src/ui/uas/UASQuickViewTextItem.h \ - src/ui/uas/UASQuickViewGaugeItem.h \ - src/ui/QGCTabbedInfoView.h \ - src/ui/UASRawStatusView.h \ - src/ui/PrimaryFlightDisplay.h \ - src/ui/uas/UASMessageView.h \ - src/ui/JoystickButton.h \ - src/ui/JoystickAxis.h \ - src/ui/configuration/console.h \ - src/ui/configuration/SerialSettingsDialog.h \ - src/ui/configuration/terminalconsole.h \ - src/ui/configuration/ApmHighlighter.h \ - src/uas/UASParameterDataModel.h \ - src/uas/UASParameterCommsMgr.h \ - src/ui/QGCPendingParamWidget.h \ - src/ui/px4_configuration/QGCPX4AirframeConfig.h \ - src/ui/QGCBaseParamWidget.h \ - src/ui/px4_configuration/PX4RCCalibration.h \ - src/ui/px4_configuration/RCValueWidget.h \ - src/uas/UASManagerInterface.h \ - src/uas/QGCUASParamManagerInterface.h \ - src/uas/QGCUASFileManager.h \ - src/ui/QGCUASFileView.h \ - src/CmdLineOptParser.h \ - src/uas/QGXPX4UAS.h \ - src/QGCFileDialog.h \ - src/QGCMessageBox.h \ - src/QGCComboBox.h \ - src/QGCTemporaryFile.h \ - src/audio/QGCAudioWorker.h \ - src/QGCQuickWidget.h \ - src/QGCPalette.h \ - src/QGCQmlWidgetHolder.h \ - src/ui/QGCParamTreeWidget.h \ - src/ui/QGCMapRCToParamDialog.h \ - src/QGCDockWidget.h \ - src/ui/QGCLinkConfiguration.h \ - src/comm/LinkConfiguration.h \ - src/ui/QGCCommConfiguration.h \ - src/ui/QGCUDPLinkConfiguration.h \ - src/uas/UASMessageHandler.h \ - src/ui/toolbar/MainToolBar.h \ - src/QmlControls/MousePosition.h - -SOURCES += \ - src/main.cc \ - src/QGCApplication.cc \ - src/QGCSingleton.cc \ - src/uas/UASManager.cc \ - src/uas/UAS.cc \ - src/comm/LinkManager.cc \ - src/comm/SerialLink.cc \ - src/comm/MAVLinkProtocol.cc \ - src/comm/QGCFlightGearLink.cc \ - src/comm/QGCJSBSimLink.cc \ - src/comm/QGCXPlaneLink.cc \ - src/ui/SerialConfigurationWindow.cc \ - src/ui/MainWindow.cc \ - src/ui/uas/UASControlWidget.cc \ - src/ui/uas/UASListWidget.cc \ - src/ui/uas/UASInfoWidget.cc \ - src/ui/HUD.cc \ - src/ui/linechart/LinechartWidget.cc \ - src/ui/linechart/LinechartPlot.cc \ - src/ui/linechart/Scrollbar.cc \ - src/ui/linechart/ScrollZoomer.cc \ - src/ui/uas/UASView.cc \ - src/ui/CameraView.cc \ - src/comm/MAVLinkSimulationLink.cc \ - src/comm/UDPLink.cc \ - src/comm/TCPLink.cc \ - src/ui/ParameterInterface.cc \ - src/ui/WaypointList.cc \ - src/Waypoint.cc \ - src/input/JoystickInput.cc \ - src/ui/JoystickWidget.cc \ - src/ui/DebugConsole.cc \ - src/ui/HDDisplay.cc \ - src/ui/MAVLinkSettingsWidget.cc \ - src/ui/AudioOutputWidget.cc \ - src/GAudioOutput.cc \ - src/LogCompressor.cc \ - src/ui/QGCParamWidget.cc \ - src/ui/QGCSensorSettingsWidget.cc \ - src/ui/linechart/Linecharts.cc \ - src/uas/UASWaypointManager.cc \ - src/ui/HSIDisplay.cc \ - src/QGC.cc \ - src/ui/QGCDataPlot2D.cc \ - src/ui/linechart/IncrementalPlot.cc \ - src/ui/QGCMainWindowAPConfigurator.cc \ - src/comm/MAVLinkSwarmSimulationLink.cc \ - src/ui/uas/QGCUnconnectedInfoWidget.cc \ - src/ui/designer/QGCToolWidget.cc \ - src/ui/designer/QGCParamSlider.cc \ - src/ui/designer/QGCCommandButton.cc \ - src/ui/designer/QGCToolWidgetItem.cc \ - src/ui/designer/QGCToolWidgetComboBox.cc \ - src/ui/designer/QGCTextLabel.cc \ - src/ui/designer/QGCRadioChannelDisplay.cpp \ - src/ui/designer/QGCXYPlot.cc \ - src/ui/designer/RCChannelWidget.cc \ - src/ui/QGCMAVLinkLogPlayer.cc \ - src/comm/MAVLinkSimulationWaypointPlanner.cc \ - src/comm/MAVLinkSimulationMAV.cc \ - src/uas/QGCMAVLinkUASFactory.cc \ - src/ui/QGCWaypointListMulti.cc \ - src/ui/QGCUASFileViewMulti.cc \ - src/ui/QGCTCPLinkConfiguration.cc \ - src/ui/SettingsDialog.cc \ - src/uas/QGCUASParamManager.cc \ - src/ui/map/QGCMapWidget.cc \ - src/ui/map/MAV2DIcon.cc \ - src/ui/map/Waypoint2DIcon.cc \ - src/ui/map/QGCMapTool.cc \ - src/ui/map/QGCMapToolBar.cc \ - src/ui/QGCToolBar.cc \ - src/ui/QGCMAVLinkInspector.cc \ - src/ui/MAVLinkDecoder.cc \ - src/ui/WaypointViewOnlyView.cc \ - src/ui/WaypointEditableView.cc \ - src/ui/QGCRGBDView.cc \ - src/ui/mavlink/QGCMAVLinkMessageSender.cc \ - src/ui/QGCPluginHost.cc \ - src/ui/mission/QGCMissionOther.cc \ - src/ui/mission/QGCMissionNavWaypoint.cc \ - src/ui/mission/QGCMissionDoJump.cc \ - src/ui/mission/QGCMissionConditionDelay.cc \ - src/ui/mission/QGCMissionNavLoiterUnlim.cc \ - src/ui/mission/QGCMissionNavLoiterTurns.cc \ - src/ui/mission/QGCMissionNavLoiterTime.cc \ - src/ui/mission/QGCMissionNavReturnToLaunch.cc \ - src/ui/mission/QGCMissionNavLand.cc \ - src/ui/mission/QGCMissionNavTakeoff.cc \ - src/ui/mission/QGCMissionNavSweep.cc \ - src/ui/mission/QGCMissionDoStartSearch.cc \ - src/ui/mission/QGCMissionDoFinishSearch.cc \ - src/ui/QGCHilConfiguration.cc \ - src/ui/QGCHilFlightGearConfiguration.cc \ - src/ui/QGCHilJSBSimConfiguration.cc \ - src/ui/QGCHilXPlaneConfiguration.cc \ - src/ui/uas/UASQuickViewItem.cc \ - src/ui/uas/UASQuickView.cc \ - src/ui/linechart/ChartPlot.cc \ - src/ui/uas/UASQuickViewTextItem.cc \ - src/ui/uas/UASQuickViewGaugeItem.cc \ - src/ui/uas/UASQuickViewItemSelect.cc \ - src/ui/QGCTabbedInfoView.cpp \ - src/ui/UASRawStatusView.cpp \ - src/ui/PrimaryFlightDisplay.cc \ - src/ui/JoystickButton.cc \ - src/ui/JoystickAxis.cc \ - src/ui/uas/UASMessageView.cc \ - src/ui/configuration/terminalconsole.cpp \ - src/ui/configuration/console.cpp \ - src/ui/configuration/SerialSettingsDialog.cc \ - src/ui/configuration/ApmHighlighter.cc \ - src/uas/UASParameterDataModel.cc \ - src/uas/UASParameterCommsMgr.cc \ - src/ui/QGCPendingParamWidget.cc \ - src/ui/px4_configuration/QGCPX4AirframeConfig.cc \ - src/ui/QGCBaseParamWidget.cc \ - src/ui/px4_configuration/PX4RCCalibration.cc \ - src/ui/px4_configuration/RCValueWidget.cc \ - src/uas/QGCUASFileManager.cc \ - src/ui/QGCUASFileView.cc \ - src/CmdLineOptParser.cc \ - src/uas/QGXPX4UAS.cc \ - src/QGCFileDialog.cc \ - src/QGCComboBox.cc \ - src/QGCTemporaryFile.cc \ - src/audio/QGCAudioWorker.cpp \ - src/QGCQuickWidget.cc \ - src/QGCPalette.cc \ - src/QGCQmlWidgetHolder.cpp \ - src/ui/QGCParamTreeWidget.cpp \ - src/ui/QGCMapRCToParamDialog.cpp \ - src/QGCDockWidget.cc \ - src/ui/QGCLinkConfiguration.cc \ - src/comm/LinkConfiguration.cc \ - src/ui/QGCCommConfiguration.cc \ - src/ui/QGCUDPLinkConfiguration.cc \ - src/uas/UASMessageHandler.cc \ - src/ui/toolbar/MainToolBar.cc \ - src/QmlControls/MousePosition.cc - -# -# Unit Test specific configuration goes here -# -# We have to special case Windows debug_and_release builds because you can't have files -# which are only in the debug variant [QTBUG-40351]. So in this case we include unit tests -# even in the release variant. If you want a Windows release build with no unit tests run -# qmake with CONFIG-=debug_and_release CONFIG+=release. -# - -DebugBuild|WindowsDebugAndRelease { - -DEFINES += UNITTEST_BUILD - -INCLUDEPATH += \ - src/qgcunittest - -HEADERS += \ - src/qgcunittest/UnitTest.h \ - src/qgcunittest/MessageBoxTest.h \ - src/qgcunittest/FileDialogTest.h \ - src/qgcunittest/MockLink.h \ - src/qgcunittest/MockLinkMissionItemHandler.h \ - src/qgcunittest/MockUASManager.h \ - src/qgcunittest/MockUAS.h \ - src/qgcunittest/MockQGCUASParamManager.h \ - src/qgcunittest/MockMavlinkInterface.h \ - src/qgcunittest/MockMavlinkFileServer.h \ - src/qgcunittest/MultiSignalSpy.h \ - src/qgcunittest/FlightGearTest.h \ - src/qgcunittest/TCPLinkTest.h \ - src/qgcunittest/TCPLoopBackServer.h \ - src/qgcunittest/QGCUASFileManagerTest.h \ - src/qgcunittest/PX4RCCalibrationTest.h \ - src/qgcunittest/LinkManagerTest.h \ - src/qgcunittest/MainWindowTest.h \ - src/qgcunittest/MavlinkLogTest.h \ - src/FactSystem/FactSystemTestBase.h \ - src/FactSystem/FactSystemTestPX4.h \ - src/FactSystem/FactSystemTestGeneric.h \ - src/QmlControls/QmlTestWidget.h \ - src/VehicleSetup/SetupViewTest.h \ - -SOURCES += \ - src/qgcunittest/UnitTest.cc \ - src/qgcunittest/MessageBoxTest.cc \ - src/qgcunittest/FileDialogTest.cc \ - src/qgcunittest/MockLink.cc \ - src/qgcunittest/MockLinkMissionItemHandler.cc \ - src/qgcunittest/MockUASManager.cc \ - src/qgcunittest/MockUAS.cc \ - src/qgcunittest/MockQGCUASParamManager.cc \ - src/qgcunittest/MockMavlinkFileServer.cc \ - src/qgcunittest/MultiSignalSpy.cc \ - src/qgcunittest/FlightGearTest.cc \ - src/qgcunittest/TCPLinkTest.cc \ - src/qgcunittest/TCPLoopBackServer.cc \ - src/qgcunittest/QGCUASFileManagerTest.cc \ - src/qgcunittest/PX4RCCalibrationTest.cc \ - src/qgcunittest/LinkManagerTest.cc \ - src/qgcunittest/MainWindowTest.cc \ - src/qgcunittest/MavlinkLogTest.cc \ - src/FactSystem/FactSystemTestBase.cc \ - src/FactSystem/FactSystemTestPX4.cc \ - src/FactSystem/FactSystemTestGeneric.cc \ - src/QmlControls/QmlTestWidget.cc \ - src/VehicleSetup/SetupViewTest.cc \ - -} - -# -# AutoPilot Plugin Support -# - -INCLUDEPATH += \ - src/VehicleSetup - -FORMS += \ - src/VehicleSetup/ParameterEditor.ui \ - src/ui/QGCPX4VehicleConfig.ui \ - src/VehicleSetup/SetupView.ui \ - -HEADERS+= \ - src/VehicleSetup/SetupView.h \ - src/VehicleSetup/ParameterEditor.h \ - src/VehicleSetup/VehicleComponent.h \ - src/VehicleSetup/FirmwareUpgradeController.h \ - src/VehicleSetup/PX4Bootloader.h \ - src/VehicleSetup/PX4FirmwareUpgradeThread.h \ - src/AutoPilotPlugins/AutoPilotPluginManager.h \ - src/AutoPilotPlugins/AutoPilotPlugin.h \ - src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h \ - src/AutoPilotPlugins/Generic/GenericParameterFacts.h \ - src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h \ - src/AutoPilotPlugins/PX4/PX4Component.h \ - src/AutoPilotPlugins/PX4/RadioComponent.h \ - src/AutoPilotPlugins/PX4/FlightModesComponent.h \ - src/AutoPilotPlugins/PX4/FlightModesComponentController.h \ - src/AutoPilotPlugins/PX4/AirframeComponent.h \ - src/AutoPilotPlugins/PX4/SensorsComponent.h \ - src/AutoPilotPlugins/PX4/SensorsComponentController.h \ - src/AutoPilotPlugins/PX4/SafetyComponent.h \ - src/AutoPilotPlugins/PX4/PX4ParameterFacts.h \ - -SOURCES += \ - src/VehicleSetup/SetupView.cc \ - src/VehicleSetup/ParameterEditor.cc \ - src/VehicleSetup/VehicleComponent.cc \ - src/VehicleSetup/FirmwareUpgradeController.cc \ - src/VehicleSetup/PX4Bootloader.cc \ - src/VehicleSetup/PX4FirmwareUpgradeThread.cc \ - src/AutoPilotPlugins/AutoPilotPluginManager.cc \ - src/AutoPilotPlugins/AutoPilotPlugin.cc \ - src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc \ - src/AutoPilotPlugins/Generic/GenericParameterFacts.cc \ - src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc \ - src/AutoPilotPlugins/PX4/PX4Component.cc \ - src/AutoPilotPlugins/PX4/RadioComponent.cc \ - src/AutoPilotPlugins/PX4/FlightModesComponent.cc \ - src/AutoPilotPlugins/PX4/FlightModesComponentController.cc \ - src/AutoPilotPlugins/PX4/AirframeComponent.cc \ - src/AutoPilotPlugins/PX4/SensorsComponent.cc \ - src/AutoPilotPlugins/PX4/SensorsComponentController.cc \ - src/AutoPilotPlugins/PX4/SafetyComponent.cc \ - src/AutoPilotPlugins/PX4/PX4ParameterFacts.cc \ - -# Fact System code - -INCLUDEPATH += \ - src/FactSystem - -HEADERS += \ - src/FactSystem/FactSystem.h \ - src/FactSystem/Fact.h \ - src/FactSystem/FactBinder.h \ - src/FactSystem/FactMetaData.h \ - src/FactSystem/FactValidator.h \ - src/FactSystem/FactLoader.h \ - -SOURCES += \ - src/FactSystem/FactSystem.cc \ - src/FactSystem/Fact.cc \ - src/FactSystem/FactBinder.cc \ - src/FactSystem/FactMetaData.cc \ - src/FactSystem/FactValidator.cc \ - src/FactSystem/FactLoader.cc \ diff --git a/qgroundcontrol.qrc b/qgroundcontrol.qrc index 16459b2f42d82337cf273530d5f93621be5920bc..c3b264b8a1866729cefe8cc7d5cbc1631d030235 100644 --- a/qgroundcontrol.qrc +++ b/qgroundcontrol.qrc @@ -1,249 +1,9 @@ - - files/images/control/launch.svg - files/images/status/dialog-error.svg - files/images/status/dialog-warning.svg - files/images/control/land.svg - files/images/actions/media-record.svg - files/images/actions/media-playback-stop.svg - files/images/actions/media-playback-start.svg - files/images/actions/media-playback-pause.svg - files/images/actions/list-remove.svg - files/images/actions/list-add.svg - files/images/actions/go-up.svg - files/images/actions/go-top.svg - files/images/actions/go-previous.svg - files/images/actions/go-next.svg - files/images/actions/go-last.svg - files/images/actions/go-jump.svg - files/images/actions/go-home.svg - files/images/actions/go-first.svg - files/images/actions/go-down.svg - files/images/actions/go-bottom.svg - files/images/actions/process-stop.svg - files/images/categories/preferences-system.svg - files/images/categories/applications-system.svg - files/images/categories/applications-internet.svg - files/images/categories/applications-development.svg - files/images/devices/network-wireless.svg - files/images/devices/network-wired.svg - files/images/apps/utilities-terminal.svg - files/images/apps/utilities-system-monitor.svg - files/images/apps/accessories-text-editor.svg - files/images/apps/accessories-calculator.svg - files/images/devices/input-gaming.svg - files/images/mavs/helicopter.svg - files/images/mavs/unknown.svg - files/images/mavs/fixed-wing.svg - files/images/mavs/groundstation.svg - files/images/mavs/generic.svg - files/images/mavs/quadrotor.svg - files/images/mavs/coaxial.svg - files/images/mavs/airship.svg - files/images/mavs/antenna-tracker.svg - files/images/mavs/flapping-wing.svg - files/images/mavs/free-balloon.svg - files/images/mavs/ground-rover.svg - files/images/mavs/hexarotor.svg - files/images/mavs/kite.svg - files/images/mavs/octorotor.svg - files/images/mavs/rocket.svg - files/images/mavs/submarine.svg - files/images/mavs/surface-boat.svg - files/images/mavs/tricopter.svg - files/images/actions/system-shutdown.svg - files/images/actions/system-log-out.svg - files/images/actions/system-lock-screen.svg - files/images/status/gps.svg - files/images/status/battery_0.svg - files/images/status/battery_20.svg - files/images/status/battery_40.svg - files/images/status/battery_60.svg - files/images/status/battery_80.svg - files/images/status/battery_100.svg - files/images/status/message_megaphone.png - files/images/status/message_triangle.png - files/images/status/weather-storm.svg - files/images/status/weather-snow.svg - files/images/status/weather-showers.svg - files/images/status/weather-showers-scattered.svg - files/images/status/weather-severe-alert.svg - files/images/status/weather-overcast.svg - files/images/status/weather-few-clouds.svg - files/images/status/weather-few-clouds-night.svg - files/images/status/weather-clear.svg - files/images/status/weather-clear-night.svg - files/images/status/user-trash-full.svg - files/images/status/software-update-urgent.svg - files/images/status/software-update-available.svg - files/images/status/printer-error.svg - files/images/status/network-wireless-encrypted.svg - files/images/status/network-transmit.svg - files/images/status/network-transmit-receive.svg - files/images/status/network-receive.svg - files/images/status/network-offline.svg - files/images/status/network-idle.svg - files/images/status/network-error.svg - files/images/status/mail-attachment.svg - files/images/status/image-missing.svg - files/images/status/image-loading.svg - files/images/status/folder-visiting.svg - files/images/status/folder-open.svg - files/images/status/folder-drag-accept.svg - files/images/status/dialog-information.svg - files/images/status/battery-caution.svg - files/images/status/audio-volume-muted.svg - files/images/status/audio-volume-medium.svg - files/images/status/audio-volume-low.svg - files/images/status/audio-volume-high.svg - files/images/status/colorbars.png - files/styles/style-dark.css - files/images/splash.png - files/audio/alert.wav - demo-log.txt - files/images/mapproviders/openstreetmap.png - files/images/mapproviders/google.png - files/images/mapproviders/yahoo.png - files/images/earth.html - files/images/mapproviders/googleearth.svg - files/images/contrib/slugs.png - files/styles/style-light.css - files/images/patterns/lenna.jpg - files/images/rc_stick.svg - files/images/actions/qgroundcontrol-connect.svg - files/images/mavs/frames_plus.png - files/images/mavs/frames_x.png - files/images/mavs/frames-05.png - files/images/devices/BR-HMC5883-01-2.jpg - files/images/devices/BR-APMPWRDEAN-2.jpg - files/images/devices/AC-0004-11-2.jpg - files/images/devices/BR-0004-03-2.jpg - files/images/devices/BR-0016-01-3T.jpg - files/images/devices/MinimOSD.jpg - files/images/devices/cameraGimalPitch1.png - files/images/devices/cameraGimalRoll1.png - files/images/devices/cameraGimalYaw.png - files/images/devices/Shutter.png - files/images/actions/qgroundcontrol-generic.svg - files/images/actions/qgroundcontrol-px4.svg - files/images/actions/qgroundcontrol-apm.svg - files/images/actions/qgroundcontrol-ardrone.svg - files/images/actions/qgroundcontrol-wifi.svg - files/images/firmware/apmcopter.png - files/images/firmware/apmplane.png - files/images/firmware/apmrover.png - files/images/firmware/FW icons 2013+logos.ai - files/images/firmware/heli.png - files/images/firmware/heli_off.png - files/images/firmware/heli_on.png - files/images/firmware/hexa_off.png - files/images/firmware/hexa_on.png - files/images/firmware/hexaplus.png - files/images/firmware/hexax.png - files/images/firmware/hexay.png - files/images/firmware/octaplus.png - files/images/firmware/octax.png - files/images/firmware/octo_off.png - files/images/firmware/octo_on.png - files/images/firmware/octx.png - files/images/firmware/plane.png - files/images/firmware/plane_off.png - files/images/firmware/plane_on.png - files/images/firmware/quad_off.png - files/images/firmware/quad_on.png - files/images/firmware/quad_T_off.png - files/images/firmware/quad_T_on.png - files/images/firmware/quadplus.png - files/images/firmware/quadx.png - files/images/firmware/quady.png - files/images/firmware/rover.png - files/images/firmware/rover_off.png - files/images/firmware/rover_on.png - files/images/firmware/Tir_off.png - files/images/firmware/Tir_on.png - files/images/firmware/triy.png - files/images/firmware/X8.png - files/images/firmware/X8_on.png - files/images/firmware/Y6_off.png - files/images/firmware/Y6_on.png - files/images/px4/airframes/quad_x.png - files/images/px4/airframes/quad_+.png - files/images/px4/airframes/octo_+.png - files/images/px4/airframes/hexa_+.png - files/images/px4/airframes/hexa_x.png - files/images/px4/airframes/octo_x.png - files/images/px4/airframes/flying_wing.png - files/images/px4/airframes/plane_ert.png - files/images/px4/airframes/plane_aert.png - files/images/px4/airframes/quad_h.png - files/images/px4/calibration/arrows.png - files/images/px4/calibration/accel_back.png - files/images/px4/calibration/accel_front.png - files/images/px4/calibration/accel_right.png - files/images/px4/calibration/accel_down.png - files/images/px4/calibration/accel_up.png - files/images/px4/calibration/accel_left.png - files/images/px4/calibration/mag_calibration_figure8.png - files/images/px4/calibration/mode1/radioCenter.png - files/images/px4/calibration/mode1/radioHome.png - files/images/px4/calibration/mode1/radioRollLeft.png - files/images/px4/calibration/mode1/radioRollRight.png - files/images/px4/calibration/mode1/radioPitchUp.png - files/images/px4/calibration/mode1/radioPitchDown.png - files/images/px4/calibration/mode1/radioYawLeft.png - files/images/px4/calibration/mode1/radioYawRight.png - files/images/px4/calibration/mode1/radioThrottleUp.png - files/images/px4/calibration/mode1/radioThrottleDown.png - files/images/px4/calibration/mode1/radioSwitchMinMax.png - files/images/px4/calibration/mode2/radioCenter.png - files/images/px4/calibration/mode2/radioHome.png - files/images/px4/calibration/mode2/radioRollLeft.png - files/images/px4/calibration/mode2/radioRollRight.png - files/images/px4/calibration/mode2/radioPitchUp.png - files/images/px4/calibration/mode2/radioPitchDown.png - files/images/px4/calibration/mode2/radioYawLeft.png - files/images/px4/calibration/mode2/radioYawRight.png - files/images/px4/calibration/mode2/radioThrottleUp.png - files/images/px4/calibration/mode2/radioThrottleDown.png - files/images/px4/calibration/mode2/radioSwitchMinMax.png - files/images/px4/menu/sensors.png - files/images/px4/menu/firmware_upgrade.png - files/images/px4/menu/plane.png - files/images/px4/menu/remote.png - files/images/px4/menu/cogwheels.png - files/images/px4/rc/cessna_back.png - files/images/px4/rc/cessna_side.png - files/images/px4/calibration/3dr_gps/gps_15.png - files/images/px4/calibration/3dr_gps/gps_14.png - files/images/px4/calibration/3dr_gps/gps_13.png - files/images/px4/calibration/3dr_gps/gps_12.png - files/images/px4/calibration/3dr_gps/gps_19.png - files/images/px4/calibration/3dr_gps/gps_18.png - files/images/px4/calibration/3dr_gps/gps_17.png - files/images/px4/calibration/3dr_gps/gps_16.png - files/images/px4/calibration/3dr_gps/gps_07.png - files/images/px4/calibration/3dr_gps/gps_06.png - files/images/px4/calibration/3dr_gps/gps_04.png - files/images/px4/calibration/3dr_gps/gps_03.png - files/images/px4/calibration/3dr_gps/gps_02.png - files/images/px4/calibration/3dr_gps/gps_01.png - files/images/px4/calibration/3dr_gps/gps_24.png - files/images/px4/calibration/3dr_gps/gps_00.png - files/images/px4/menu/toggle_switch.png - files/images/px4/boards/px4flow_1.x.png - files/images/px4/boards/px4fmu_1.x.png - files/images/px4/boards/px4fmu_2.x.png - - - files/styles/Vera.ttf - - src/qgcunittest/MockLink.param + src/comm/MockLink.params src/FactSystem/FactSystemTest.qml - - files/QLoggingCategory/qtlogging.ini - + src/test.qml src/QmlControls/QmlTest.qml @@ -263,34 +23,40 @@ src/QmlControls/QGCComboBox.qml src/QmlControls/QGCColoredImage.qml src/QmlControls/QGCToolBarButton.qml + src/QmlControls/QGCMovableItem.qml src/QmlControls/SubMenuButton.qml src/QmlControls/IndicatorButton.qml src/QmlControls/VehicleRotationCal.qml - + src/QmlControls/VehicleSummaryRow.qml src/QmlControls/arrow-down.png + src/ViewWidgets/ViewWidget.qml + src/QmlControls/ParameterEditor.qml + + src/ViewWidgets/ParameterEditorWidget.qml + + src/VehicleSetup/SetupViewButtonsConnected.qml + src/VehicleSetup/SetupViewButtonsDisconnected.qml - files/images/px4/airframes/octo_x.png - files/images/px4/boards/px4fmu_2.x.png - src/VehicleSetup/SetupViewButtons.qml src/VehicleSetup/VehicleSummary.qml src/VehicleSetup/FirmwareUpgrade.qml - + src/VehicleSetup/SetupParameterEditor.qml src/AutoPilotPlugins/PX4/SafetyComponent.qml + src/AutoPilotPlugins/PX4/PowerComponent.qml src/AutoPilotPlugins/PX4/SensorsComponent.qml src/AutoPilotPlugins/PX4/FlightModesComponent.qml - src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml + src/AutoPilotPlugins/PX4/PowerComponentSummary.qml src/AutoPilotPlugins/PX4/SensorsComponentSummary.qml src/AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml src/AutoPilotPlugins/PX4/RadioComponentSummary.qml src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml - - src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.png + src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.svg src/AutoPilotPlugins/PX4/Images/SafetyComponentHome.png src/AutoPilotPlugins/PX4/Images/SafetyComponentArrowDown.png src/AutoPilotPlugins/PX4/Images/SafetyComponentPlane.png + src/AutoPilotPlugins/PX4/Images/VehicleDown.png src/AutoPilotPlugins/PX4/Images/VehicleUpsideDown.png src/AutoPilotPlugins/PX4/Images/VehicleLeft.png @@ -298,18 +64,198 @@ src/AutoPilotPlugins/PX4/Images/VehicleNoseDown.png src/AutoPilotPlugins/PX4/Images/VehicleTailDown.png - files/Setup/cogwheels.png + src/AutoPilotPlugins/PX4/Images/VehicleDownRotate.png + src/AutoPilotPlugins/PX4/Images/VehicleLeftRotate.png + src/AutoPilotPlugins/PX4/Images/VehicleNoseDownRotate.png + + + src/AutoPilotPlugins/PX4/AirframeComponent.qml + src/AutoPilotPlugins/PX4/Images/AirframeStandardPlane.png + src/AutoPilotPlugins/PX4/Images/AirframeFlyingWing.png + src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorX.png + src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorPlus.png + src/AutoPilotPlugins/PX4/Images/AirframeOctoRotorX.png + src/AutoPilotPlugins/PX4/Images/AirframeOctoRotorPlus.png + src/AutoPilotPlugins/PX4/Images/AirframeHexaRotorX.png + src/AutoPilotPlugins/PX4/Images/AirframeHexaRotorPlus.png + src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorH.png + src/AutoPilotPlugins/PX4/Images/AirframeSimulation.png + + resources/CogWheels.png src/AutoPilotPlugins/PX4/Images/SensorsComponentIcon.png src/AutoPilotPlugins/PX4/Images/RadioComponentIcon.png src/AutoPilotPlugins/PX4/Images/FlightModesComponentIcon.png src/AutoPilotPlugins/PX4/Images/AirframeComponentIcon.png src/AutoPilotPlugins/PX4/Images/SafetyComponentIcon.png + src/AutoPilotPlugins/PX4/Images/PowerComponentIcon.png src/VehicleSetup/FirmwareUpgradeIcon.png src/VehicleSetup/VehicleSummaryIcon.png + src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_01cell.svg + src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_02cell.svg + src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_03cell.svg + src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_04cell.svg + src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_05cell.svg + src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_06cell.svg + src/ui/toolbar/MainToolBar.qml + src/ui/flightdisplay/FlightDisplay.qml + src/ui/mapdisplay/MapDisplay.qml + + src/ui/qmlcommon/qmldir + src/ui/qmlcommon/QGCAltitudeWidget.qml + src/ui/qmlcommon/QGCAttitudeWidget.qml + src/ui/qmlcommon/QGCAttitudeInstrument.qml + src/ui/qmlcommon/QGCCompass.qml + src/ui/qmlcommon/QGCCompassInstrument.qml + src/ui/qmlcommon/QGCCurrentAltitude.qml + src/ui/qmlcommon/QGCCurrentSpeed.qml + src/ui/qmlcommon/QGCMapBackground.qml + src/ui/qmlcommon/QGCPitchWidget.qml + src/ui/qmlcommon/QGCSpeedWidget.qml + src/ui/qmlcommon/QGCSlider.qml + src/ui/qmlcommon/QGCWaypointEditor.qml + src/ui/qmlcommon/QGCMapToolButton.qml + src/ui/qmlcommon/QGCArtificialHorizon.qml + + src/ui/qmlcommon/compass.svg + src/ui/qmlcommon/compassNeedle.svg + src/ui/qmlcommon/crossHair.svg + src/ui/qmlcommon/rollDialWhite.svg + src/ui/qmlcommon/rollPointerWhite.svg + src/ui/qmlcommon/scale.png + src/ui/qmlcommon/scale_end.png + src/ui/qmlcommon/buttonLeft.svg + src/ui/qmlcommon/buttonRight.svg + src/ui/qmlcommon/buttonHome.svg + src/ui/qmlcommon/buttonMore.svg + src/ui/qmlcommon/attitudeInstrument.svg + src/ui/qmlcommon/attitudeDial.svg + src/ui/qmlcommon/attitudePointer.svg + src/ui/qmlcommon/compassInstrumentAirplane.svg + src/ui/qmlcommon/compassInstrumentDial.svg + src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml + + + resources/LeftArrow.svg + resources/RightArrow.svg + resources/DownArrow.svg + resources/UpArrow.svg + resources/BottomArrow.svg + resources/JumpArrow.svg + + resources/PlusSign.svg + resources/MinusSign.svg + + resources/Play.svg + resources/Pause.svg + resources/Stop.svg + + resources/Launch.svg + resources/Land.svg + resources/Kill.svg + resources/Shutdown.svg + + resources/Antenna_T.svg + resources/Antenna_RC.svg + resources/Gps.svg + resources/Megaphone.png + resources/Yield.png + + resources/Battery_0.svg + resources/Battery_20.svg + resources/Battery_40.svg + resources/Battery_60.svg + resources/Battery_80.svg + resources/Battery_100.svg + + resources/SystemLockScreen.svg + + resources/SplashScreen.png + + resources/QGroundControlConnect.svg + + + + resources/mavs/helicopter.svg + resources/mavs/unknown.svg + resources/mavs/fixed-wing.svg + resources/mavs/groundstation.svg + resources/mavs/generic.svg + resources/mavs/quadrotor.svg + resources/mavs/coaxial.svg + resources/mavs/airship.svg + resources/mavs/antenna-tracker.svg + resources/mavs/flapping-wing.svg + resources/mavs/free-balloon.svg + resources/mavs/ground-rover.svg + resources/mavs/hexarotor.svg + resources/mavs/kite.svg + resources/mavs/octorotor.svg + resources/mavs/rocket.svg + resources/mavs/submarine.svg + resources/mavs/surface-boat.svg + resources/mavs/tricopter.svg + + + + resources/mapproviders/openstreetmap.png + resources/mapproviders/google.png + resources/mapproviders/yahoo.png + resources/mapproviders/googleearth.svg + + + + resources/calibration/accel_back.png + resources/calibration/accel_front.png + resources/calibration/accel_right.png + resources/calibration/accel_down.png + resources/calibration/accel_up.png + resources/calibration/accel_left.png + + + + resources/calibration/mode1/radioCenter.png + resources/calibration/mode1/radioHome.png + resources/calibration/mode1/radioRollLeft.png + resources/calibration/mode1/radioRollRight.png + resources/calibration/mode1/radioPitchUp.png + resources/calibration/mode1/radioPitchDown.png + resources/calibration/mode1/radioYawLeft.png + resources/calibration/mode1/radioYawRight.png + resources/calibration/mode1/radioThrottleUp.png + resources/calibration/mode1/radioThrottleDown.png + resources/calibration/mode1/radioSwitchMinMax.png + + + + resources/calibration/mode2/radioCenter.png + resources/calibration/mode2/radioHome.png + resources/calibration/mode2/radioRollLeft.png + resources/calibration/mode2/radioRollRight.png + resources/calibration/mode2/radioPitchUp.png + resources/calibration/mode2/radioPitchDown.png + resources/calibration/mode2/radioYawLeft.png + resources/calibration/mode2/radioYawRight.png + resources/calibration/mode2/radioThrottleUp.png + resources/calibration/mode2/radioThrottleDown.png + resources/calibration/mode2/radioSwitchMinMax.png + + + + resources/styles/style-dark.css + resources/styles/style-light.css + + + + resources/styles/Vera.ttf + + + + resources/audio/alert.wav + diff --git a/qgroundcontrol.rc b/qgroundcontrol.rc index 31f38f1b9991618a757030c63a3a6402a057d06e..b1bc3a8bdcb59cf295563fc7bd76730238ad60c5 100644 --- a/qgroundcontrol.rc +++ b/qgroundcontrol.rc @@ -1,4 +1,4 @@ -IDI_ICON1 ICON DISCARDABLE "files/images/icons/qgroundcontrol.ico" +IDI_ICON1 ICON DISCARDABLE "resources/icons/qgroundcontrol.ico" 1 VERSIONINFO FILEVERSION 2,0,0,227 diff --git a/resources/Antenna_RC.svg b/resources/Antenna_RC.svg new file mode 100644 index 0000000000000000000000000000000000000000..f323ef3138441b3d62bf7c517e05125283c40afb --- /dev/null +++ b/resources/Antenna_RC.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + diff --git a/resources/Antenna_T.svg b/resources/Antenna_T.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d3f9842f81688520b0f527d61342714faf9214d --- /dev/null +++ b/resources/Antenna_T.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/resources/Battery_0.svg b/resources/Battery_0.svg new file mode 100644 index 0000000000000000000000000000000000000000..5abc1691819fe0f31575bd925880946ce717833d --- /dev/null +++ b/resources/Battery_0.svg @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/resources/Battery_100.svg b/resources/Battery_100.svg new file mode 100644 index 0000000000000000000000000000000000000000..f06d3ac5ea8df0ee03f9736e7849bff4f3a57845 --- /dev/null +++ b/resources/Battery_100.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/resources/Battery_20.svg b/resources/Battery_20.svg new file mode 100644 index 0000000000000000000000000000000000000000..f456b06558d15f133d5574e457dc818c82c17f0c --- /dev/null +++ b/resources/Battery_20.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/resources/Battery_40.svg b/resources/Battery_40.svg new file mode 100644 index 0000000000000000000000000000000000000000..3b823ac4416b66a2b8c15df5ab44122dfa79d62e --- /dev/null +++ b/resources/Battery_40.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/resources/Battery_60.svg b/resources/Battery_60.svg new file mode 100644 index 0000000000000000000000000000000000000000..6892d6ec9e753f2f33ccf264ab5b0dcee617118e --- /dev/null +++ b/resources/Battery_60.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/resources/Battery_80.svg b/resources/Battery_80.svg new file mode 100644 index 0000000000000000000000000000000000000000..390a8f32e690c6f8d3209c9bccecfdd11eb41be6 --- /dev/null +++ b/resources/Battery_80.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/files/images/actions/go-bottom.svg b/resources/BottomArrow.svg similarity index 100% rename from files/images/actions/go-bottom.svg rename to resources/BottomArrow.svg diff --git a/files/images/px4/menu/cogwheels.png b/resources/CogWheels.png similarity index 100% rename from files/images/px4/menu/cogwheels.png rename to resources/CogWheels.png diff --git a/files/images/actions/go-down.svg b/resources/DownArrow.svg similarity index 100% rename from files/images/actions/go-down.svg rename to resources/DownArrow.svg diff --git a/files/images/status/gps.svg b/resources/Gps.svg similarity index 100% rename from files/images/status/gps.svg rename to resources/Gps.svg diff --git a/files/images/actions/go-jump.svg b/resources/JumpArrow.svg similarity index 100% rename from files/images/actions/go-jump.svg rename to resources/JumpArrow.svg diff --git a/files/images/actions/process-stop.svg b/resources/Kill.svg similarity index 100% rename from files/images/actions/process-stop.svg rename to resources/Kill.svg diff --git a/files/images/control/land.svg b/resources/Land.svg similarity index 100% rename from files/images/control/land.svg rename to resources/Land.svg diff --git a/files/images/control/launch.svg b/resources/Launch.svg similarity index 100% rename from files/images/control/launch.svg rename to resources/Launch.svg diff --git a/files/images/actions/go-previous.svg b/resources/LeftArrow.svg similarity index 100% rename from files/images/actions/go-previous.svg rename to resources/LeftArrow.svg diff --git a/files/images/status/message_megaphone.png b/resources/Megaphone.png similarity index 100% rename from files/images/status/message_megaphone.png rename to resources/Megaphone.png diff --git a/files/images/actions/list-remove.svg b/resources/MinusSign.svg similarity index 100% rename from files/images/actions/list-remove.svg rename to resources/MinusSign.svg diff --git a/files/images/actions/media-playback-pause.svg b/resources/Pause.svg similarity index 100% rename from files/images/actions/media-playback-pause.svg rename to resources/Pause.svg diff --git a/files/images/actions/media-playback-start.svg b/resources/Play.svg similarity index 100% rename from files/images/actions/media-playback-start.svg rename to resources/Play.svg diff --git a/files/images/actions/list-add.svg b/resources/PlusSign.svg similarity index 100% rename from files/images/actions/list-add.svg rename to resources/PlusSign.svg diff --git a/files/images/actions/qgroundcontrol-connect.svg b/resources/QGroundControlConnect.svg similarity index 100% rename from files/images/actions/qgroundcontrol-connect.svg rename to resources/QGroundControlConnect.svg diff --git a/files/images/actions/go-next.svg b/resources/RightArrow.svg similarity index 100% rename from files/images/actions/go-next.svg rename to resources/RightArrow.svg diff --git a/files/images/actions/system-log-out.svg b/resources/Shutdown.svg similarity index 100% rename from files/images/actions/system-log-out.svg rename to resources/Shutdown.svg diff --git a/files/images/splash.png b/resources/SplashScreen.png similarity index 100% rename from files/images/splash.png rename to resources/SplashScreen.png diff --git a/files/images/actions/media-playback-stop.svg b/resources/Stop.svg similarity index 100% rename from files/images/actions/media-playback-stop.svg rename to resources/Stop.svg diff --git a/files/images/actions/system-lock-screen.svg b/resources/SystemLockScreen.svg similarity index 100% rename from files/images/actions/system-lock-screen.svg rename to resources/SystemLockScreen.svg diff --git a/files/images/actions/go-up.svg b/resources/UpArrow.svg similarity index 100% rename from files/images/actions/go-up.svg rename to resources/UpArrow.svg diff --git a/files/images/status/message_triangle.png b/resources/Yield.png similarity index 100% rename from files/images/status/message_triangle.png rename to resources/Yield.png diff --git a/files/audio/alert.wav b/resources/audio/alert.wav similarity index 100% rename from files/audio/alert.wav rename to resources/audio/alert.wav diff --git a/files/images/px4/calibration/3dr_gps/gps_00.png b/resources/calibration/3dr_gps/gps_00.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_00.png rename to resources/calibration/3dr_gps/gps_00.png diff --git a/files/images/px4/calibration/3dr_gps/gps_01.png b/resources/calibration/3dr_gps/gps_01.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_01.png rename to resources/calibration/3dr_gps/gps_01.png diff --git a/files/images/px4/calibration/3dr_gps/gps_02.png b/resources/calibration/3dr_gps/gps_02.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_02.png rename to resources/calibration/3dr_gps/gps_02.png diff --git a/files/images/px4/calibration/3dr_gps/gps_03.png b/resources/calibration/3dr_gps/gps_03.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_03.png rename to resources/calibration/3dr_gps/gps_03.png diff --git a/files/images/px4/calibration/3dr_gps/gps_04.png b/resources/calibration/3dr_gps/gps_04.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_04.png rename to resources/calibration/3dr_gps/gps_04.png diff --git a/files/images/px4/calibration/3dr_gps/gps_06.png b/resources/calibration/3dr_gps/gps_06.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_06.png rename to resources/calibration/3dr_gps/gps_06.png diff --git a/files/images/px4/calibration/3dr_gps/gps_07.png b/resources/calibration/3dr_gps/gps_07.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_07.png rename to resources/calibration/3dr_gps/gps_07.png diff --git a/files/images/px4/calibration/3dr_gps/gps_12.png b/resources/calibration/3dr_gps/gps_12.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_12.png rename to resources/calibration/3dr_gps/gps_12.png diff --git a/files/images/px4/calibration/3dr_gps/gps_13.png b/resources/calibration/3dr_gps/gps_13.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_13.png rename to resources/calibration/3dr_gps/gps_13.png diff --git a/files/images/px4/calibration/3dr_gps/gps_14.png b/resources/calibration/3dr_gps/gps_14.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_14.png rename to resources/calibration/3dr_gps/gps_14.png diff --git a/files/images/px4/calibration/3dr_gps/gps_15.png b/resources/calibration/3dr_gps/gps_15.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_15.png rename to resources/calibration/3dr_gps/gps_15.png diff --git a/files/images/px4/calibration/3dr_gps/gps_16.png b/resources/calibration/3dr_gps/gps_16.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_16.png rename to resources/calibration/3dr_gps/gps_16.png diff --git a/files/images/px4/calibration/3dr_gps/gps_17.png b/resources/calibration/3dr_gps/gps_17.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_17.png rename to resources/calibration/3dr_gps/gps_17.png diff --git a/files/images/px4/calibration/3dr_gps/gps_18.png b/resources/calibration/3dr_gps/gps_18.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_18.png rename to resources/calibration/3dr_gps/gps_18.png diff --git a/files/images/px4/calibration/3dr_gps/gps_19.png b/resources/calibration/3dr_gps/gps_19.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_19.png rename to resources/calibration/3dr_gps/gps_19.png diff --git a/files/images/px4/calibration/3dr_gps/gps_24.png b/resources/calibration/3dr_gps/gps_24.png similarity index 100% rename from files/images/px4/calibration/3dr_gps/gps_24.png rename to resources/calibration/3dr_gps/gps_24.png diff --git a/files/images/px4/calibration/accel_back.png b/resources/calibration/accel_back.png similarity index 100% rename from files/images/px4/calibration/accel_back.png rename to resources/calibration/accel_back.png diff --git a/files/images/px4/calibration/accel_down.png b/resources/calibration/accel_down.png similarity index 100% rename from files/images/px4/calibration/accel_down.png rename to resources/calibration/accel_down.png diff --git a/files/images/px4/calibration/accel_front.png b/resources/calibration/accel_front.png similarity index 100% rename from files/images/px4/calibration/accel_front.png rename to resources/calibration/accel_front.png diff --git a/files/images/px4/calibration/accel_left.png b/resources/calibration/accel_left.png similarity index 100% rename from files/images/px4/calibration/accel_left.png rename to resources/calibration/accel_left.png diff --git a/files/images/px4/calibration/accel_right.png b/resources/calibration/accel_right.png similarity index 100% rename from files/images/px4/calibration/accel_right.png rename to resources/calibration/accel_right.png diff --git a/files/images/px4/calibration/accel_up.png b/resources/calibration/accel_up.png similarity index 100% rename from files/images/px4/calibration/accel_up.png rename to resources/calibration/accel_up.png diff --git a/files/images/px4/calibration/mag_calibration_figure8.png b/resources/calibration/mag_calibration_figure8.png similarity index 100% rename from files/images/px4/calibration/mag_calibration_figure8.png rename to resources/calibration/mag_calibration_figure8.png diff --git a/files/images/px4/calibration/mode1/radioCenter.png b/resources/calibration/mode1/radioCenter.png similarity index 100% rename from files/images/px4/calibration/mode1/radioCenter.png rename to resources/calibration/mode1/radioCenter.png diff --git a/files/images/px4/calibration/mode1/radioHome.png b/resources/calibration/mode1/radioHome.png similarity index 100% rename from files/images/px4/calibration/mode1/radioHome.png rename to resources/calibration/mode1/radioHome.png diff --git a/files/images/px4/calibration/mode1/radioPitchDown.png b/resources/calibration/mode1/radioPitchDown.png similarity index 100% rename from files/images/px4/calibration/mode1/radioPitchDown.png rename to resources/calibration/mode1/radioPitchDown.png diff --git a/files/images/px4/calibration/mode1/radioPitchUp.png b/resources/calibration/mode1/radioPitchUp.png similarity index 100% rename from files/images/px4/calibration/mode1/radioPitchUp.png rename to resources/calibration/mode1/radioPitchUp.png diff --git a/files/images/px4/calibration/mode1/radioRollLeft.png b/resources/calibration/mode1/radioRollLeft.png similarity index 100% rename from files/images/px4/calibration/mode1/radioRollLeft.png rename to resources/calibration/mode1/radioRollLeft.png diff --git a/files/images/px4/calibration/mode1/radioRollRight.png b/resources/calibration/mode1/radioRollRight.png similarity index 100% rename from files/images/px4/calibration/mode1/radioRollRight.png rename to resources/calibration/mode1/radioRollRight.png diff --git a/files/images/px4/calibration/mode1/radioSwitchMinMax.png b/resources/calibration/mode1/radioSwitchMinMax.png similarity index 100% rename from files/images/px4/calibration/mode1/radioSwitchMinMax.png rename to resources/calibration/mode1/radioSwitchMinMax.png diff --git a/files/images/px4/calibration/mode1/radioThrottleDown.png b/resources/calibration/mode1/radioThrottleDown.png similarity index 100% rename from files/images/px4/calibration/mode1/radioThrottleDown.png rename to resources/calibration/mode1/radioThrottleDown.png diff --git a/files/images/px4/calibration/mode1/radioThrottleUp.png b/resources/calibration/mode1/radioThrottleUp.png similarity index 100% rename from files/images/px4/calibration/mode1/radioThrottleUp.png rename to resources/calibration/mode1/radioThrottleUp.png diff --git a/files/images/px4/calibration/mode1/radioYawLeft.png b/resources/calibration/mode1/radioYawLeft.png similarity index 100% rename from files/images/px4/calibration/mode1/radioYawLeft.png rename to resources/calibration/mode1/radioYawLeft.png diff --git a/files/images/px4/calibration/mode1/radioYawRight.png b/resources/calibration/mode1/radioYawRight.png similarity index 100% rename from files/images/px4/calibration/mode1/radioYawRight.png rename to resources/calibration/mode1/radioYawRight.png diff --git a/files/images/px4/calibration/mode2/radioCenter.png b/resources/calibration/mode2/radioCenter.png similarity index 100% rename from files/images/px4/calibration/mode2/radioCenter.png rename to resources/calibration/mode2/radioCenter.png diff --git a/files/images/px4/calibration/mode2/radioHome.png b/resources/calibration/mode2/radioHome.png similarity index 100% rename from files/images/px4/calibration/mode2/radioHome.png rename to resources/calibration/mode2/radioHome.png diff --git a/files/images/px4/calibration/mode2/radioPitchDown.png b/resources/calibration/mode2/radioPitchDown.png similarity index 100% rename from files/images/px4/calibration/mode2/radioPitchDown.png rename to resources/calibration/mode2/radioPitchDown.png diff --git a/files/images/px4/calibration/mode2/radioPitchUp.png b/resources/calibration/mode2/radioPitchUp.png similarity index 100% rename from files/images/px4/calibration/mode2/radioPitchUp.png rename to resources/calibration/mode2/radioPitchUp.png diff --git a/files/images/px4/calibration/mode2/radioRollLeft.png b/resources/calibration/mode2/radioRollLeft.png similarity index 100% rename from files/images/px4/calibration/mode2/radioRollLeft.png rename to resources/calibration/mode2/radioRollLeft.png diff --git a/files/images/px4/calibration/mode2/radioRollRight.png b/resources/calibration/mode2/radioRollRight.png similarity index 100% rename from files/images/px4/calibration/mode2/radioRollRight.png rename to resources/calibration/mode2/radioRollRight.png diff --git a/files/images/px4/calibration/mode2/radioSwitchMinMax.png b/resources/calibration/mode2/radioSwitchMinMax.png similarity index 100% rename from files/images/px4/calibration/mode2/radioSwitchMinMax.png rename to resources/calibration/mode2/radioSwitchMinMax.png diff --git a/files/images/px4/calibration/mode2/radioThrottleDown.png b/resources/calibration/mode2/radioThrottleDown.png similarity index 100% rename from files/images/px4/calibration/mode2/radioThrottleDown.png rename to resources/calibration/mode2/radioThrottleDown.png diff --git a/files/images/px4/calibration/mode2/radioThrottleUp.png b/resources/calibration/mode2/radioThrottleUp.png similarity index 100% rename from files/images/px4/calibration/mode2/radioThrottleUp.png rename to resources/calibration/mode2/radioThrottleUp.png diff --git a/files/images/px4/calibration/mode2/radioYawLeft.png b/resources/calibration/mode2/radioYawLeft.png similarity index 100% rename from files/images/px4/calibration/mode2/radioYawLeft.png rename to resources/calibration/mode2/radioYawLeft.png diff --git a/files/images/px4/calibration/mode2/radioYawRight.png b/resources/calibration/mode2/radioYawRight.png similarity index 100% rename from files/images/px4/calibration/mode2/radioYawRight.png rename to resources/calibration/mode2/radioYawRight.png diff --git a/resources/flightgear/Aircraft/EasyStar/EasyStar-set.xml b/resources/flightgear/Aircraft/EasyStar/EasyStar-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..011116394536bd1bc14db4d84011c97e91d64c29 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/EasyStar-set.xml @@ -0,0 +1,95 @@ + + + + + + + Easy Star (R/C) + Ken Northup, 3d model + Ron Jensen, 3d model, FDM + 0.0 + + + jsb + easystar + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/EasyStar/Models/easystar.xml + + + + true + + 0.0 + 0.15 + 0.40 + 0 + + + + + News Camera + lookat + true + + + /position/latitude-deg + /position/longitude-deg + /position/altitude-ft + /orientation/heading-deg + + /sim/tower/latitude-deg + /sim/tower/longitude-deg + /sim/tower/altitude-ft + + + + + + -7.5 + + Easy Star R/C + Cruise speed: mph + Never-exceed (Vne): mph + Best Glide (Vglide): mph + Maneuvering (Va): mph + Approach speed: mph + Stall speed (Vs): mph + + + + + + + 0.00 + + + + diff --git a/resources/flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml b/resources/flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml new file mode 100644 index 0000000000000000000000000000000000000000..5c7e2bf813d22dd6f6bd616a87ae44f980090758 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/Engines/ElecMot400.xml @@ -0,0 +1,6 @@ + + + + + 70.0 + diff --git a/resources/flightgear/Aircraft/EasyStar/Engines/prop6x5.xml b/resources/flightgear/Aircraft/EasyStar/Engines/prop6x5.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d4286fcf0c7417187c663ace69e16372707d7e7 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/Engines/prop6x5.xml @@ -0,0 +1,98 @@ + + + + + 1e-4 + 5.5 + 2 + 1.0 + 1.0 + 1.0 + + + +0.00 0.088784 +0.05 0.091205 +0.10 0.090752 +0.15 0.089925 +0.20 0.088593 +0.25 0.086674 +0.30 0.084053 +0.35 0.080709 +0.40 0.076332 +0.45 0.070568 +0.50 0.063187 +0.55 0.055458 +0.60 0.047475 +0.65 0.039233 +0.70 0.030741 +0.71 0.029014 +0.72 0.027279 +0.73 0.025533 +0.74 0.023780 +0.75 0.022018 +0.76 0.020248 +0.77 0.018470 +0.78 0.016683 +0.79 0.014887 +0.80 0.013086 +0.81 0.011274 +0.82 0.009459 +0.83 0.007626 +0.84 0.005791 +0.85 0.003949 +0.86 0.002076 +0.87 0.000208 +0.88 -0.001676 +0.89 -0.003521 +0.90 -0.005448 +0.91 -0.007298 +0.92 -0.009234 + +
+ + + + +0.00 0.048163 +0.05 0.047685 +0.10 0.047684 +0.15 0.047603 +0.20 0.048065 +0.25 0.048509 +0.30 0.049003 +0.35 0.049322 +0.40 0.049003 +0.45 0.047900 +0.50 0.045619 +0.55 0.042672 +0.60 0.039115 +0.65 0.034900 +0.70 0.029989 +0.71 0.028920 +0.72 0.027823 +0.73 0.026695 +0.74 0.025539 +0.75 0.024353 +0.76 0.023136 +0.77 0.021891 +0.78 0.020614 +0.79 0.019306 +0.80 0.017969 +0.81 0.016598 +0.82 0.015201 +0.83 0.013764 +0.84 0.012300 +0.85 0.010804 +0.86 0.009257 +0.87 0.007688 +0.88 0.006079 +0.89 0.004477 +0.90 0.002777 +0.91 0.001121 +0.92 -0.000641 + +
+ +
diff --git a/resources/flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1dfa6b155eaae7811e74b98b94bb5ea36096632 Binary files /dev/null and b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarK.jpg differ diff --git a/resources/flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a220c93e8caf5b7f985a282ec85f14eff96b1bf9 Binary files /dev/null and b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarPurWeiss.jpg differ diff --git a/resources/flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28fca8aa0c9773dd677f76ca5801a2be600c67f1 Binary files /dev/null and b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarV1Weiss.jpg differ diff --git a/resources/flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff9b3e0f5c4a18baef3777b491fb3b5638dd1d18 Binary files /dev/null and b/resources/flightgear/Aircraft/EasyStar/Models/EasyStarV2Weiss.jpg differ diff --git a/resources/flightgear/Aircraft/EasyStar/Models/body.ac b/resources/flightgear/Aircraft/EasyStar/Models/body.ac new file mode 100644 index 0000000000000000000000000000000000000000..88c1788039c163d10b1c8090e2fd97b4403800a6 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/Models/body.ac @@ -0,0 +1,19481 @@ +AC3Db +MATERIAL "nonamemat10" rgb 0.6 0.6 0.6 amb 0.267 0.267 0.267 emis 0.427 0.427 0.427 spec 0.533 0.533 0.533 shi 100 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.663 0.655 0.663 emis 0 0 0 spec 1 1 1 shi 94 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.5 0.5 0.5 emis 0.5 0.5 0.5 spec 0 0 0 shi 0 trans 0.01 +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0 0 0 shi 10 trans 0.906 +MATERIAL "ac3dmat11" rgb 0 0 0 amb 0 0 0 emis 0 0 0 spec 0.318 0.357 0.345 shi 0 trans 0.416 +MATERIAL "ac3dmat14" rgb 0.8 0.8 0.8 amb 0.2 0.2 0.2 emis 0.5 0.5 0.5 spec 0 0 0 shi 0 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.502 0.502 0.502 emis 0 0 0 spec 1 1 1 shi 53 trans 0 +OBJECT world +kids 29 +OBJECT poly +name "Prop1.XYZObject" +loc 0.0781118 0.128551 0.0149774 +crease 90.000000 +numvert 4 +0.105639 0.0150353 -0.0160943 +0.0734506 0.0311295 -0.0160943 +0.0734506 0.0150353 -0.0160943 +0.0734506 0.0150353 0.0321885 +numsurf 2 +SURF 0x30 +mat 1 +refs 3 +2 0 1 +1 0 0 +0 1 1 +SURF 0x30 +mat 1 +refs 3 +2 0.228492 0.43996 +3 0.407273 0.426103 +0 0.225044 0.52355 +kids 0 +OBJECT poly +name "PropDisk.XYZObject" +loc 0.0758537 0.128551 0.0149774 +crease 90.000000 +numvert 4 +0.0734506 0.0150353 0.0321885 +0.0734506 0.0150353 -0.0160943 +0.0734506 0.0311295 -0.0160943 +0.105639 0.0150353 -0.0160943 +numsurf 2 +SURF 0x30 +mat 1 +refs 3 +1 0.228492 0.43996 +0 0.407273 0.426103 +3 0.225044 0.52355 +SURF 0x30 +mat 1 +refs 3 +1 0 1 +2 0 0 +3 1 1 +kids 0 +OBJECT poly +name "Prop.XYZObject" +loc 0.0744167 0.128551 0.0149774 +crease 90.000000 +numvert 4 +0.105639 0.0150353 -0.0160943 +0.0734506 0.0311295 -0.0160943 +0.0734506 0.0150353 -0.0160943 +0.0734506 0.0150353 0.0321885 +numsurf 2 +SURF 0x30 +mat 1 +refs 3 +2 0 1 +1 0 0 +0 1 1 +SURF 0x30 +mat 1 +refs 3 +2 0.228492 0.43996 +3 0.407273 0.426103 +0 0.225044 0.52355 +kids 0 +OBJECT poly +name "COORD_TWHEEL" +loc -0.172734 -0.152879 0.00665918 +crease 45.000000 +numvert 1 +-0.0684905 0.110534 0 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "COORD_FRWHEEL" +loc 0.0897779 -0.120814 -0.23944 +crease 45.000000 +numvert 1 +0.0158148 0.0810133 0.149843 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "COORD_FLWHEEL" +loc 0.0950589 -0.120943 0.232736 +crease 45.000000 +numvert 1 +0.00934233 0.0752087 -0.161497 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "COORD_RWINGTIP" +loc 0.0318163 0.238398 -0.876639 +crease 45.000000 +numvert 1 +0.0609192 -0.0928822 -0.0801789 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 -0.150287 0.0657885 +kids 0 +OBJECT poly +name "COORD_LWINGTIP" +loc 0.0842196 0.259836 0.878923 +crease 45.000000 +numvert 1 +0.00183925 -0.117249 0.124222 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "COORD_TAILEND" +loc 0.977519 0.113785 0.00878852 +crease 45.000000 +numvert 1 +-0.230368 -0.0857406 0 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "COORD_TAILTOP" +loc 0.908578 0.339968 -0.00706747 +crease 45.000000 +numvert 1 +-0.245081 -0.0631678 0 +numsurf 1 +SURF 0x21 +mat 2 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "COORD_NOSETIP" +loc -0.367299 0.0868216 -0.00161347 +crease 45.000000 +numvert 1 +-0.146044 -0.063689 0 +numsurf 1 +SURF 0x21 +mat 5 +refs 1 +0 0 0 +kids 0 +OBJECT poly +name "Ruder.XYZObject" +loc 0.52472 0.148246 0.0249858 +crease 90.000000 +numvert 4 +0.173683 -0.0264609 -0.0247198 +0.120761 -0.0264609 -0.0511806 +0.120761 -0.0264609 -0.0247198 +0.120761 0.0529215 -0.0247198 +numsurf 2 +SURF 0x30 +mat 1 +refs 3 +2 0 1 +1 0 0 +0 1 1 +SURF 0x30 +mat 1 +refs 3 +2 0.228492 0.43996 +3 0.407273 0.426103 +0 0.225044 0.52355 +kids 0 +OBJECT poly +name "Elevator.XYZObject" +loc 0.545268 0.0127676 0.0259802 +crease 90.000000 +numvert 4 +0.120761 0.0247198 0.0529215 +0.120761 0.0247198 -0.0264608 +0.120761 0.0511806 -0.0264608 +0.173683 0.0247198 -0.0264608 +numsurf 2 +SURF 0x30 +mat 1 +refs 3 +1 0.228492 0.43996 +0 0.407273 0.426103 +3 0.225044 0.52355 +SURF 0x30 +mat 1 +refs 3 +1 0 1 +2 0 0 +3 1 1 +kids 0 +OBJECT poly +name "Fuse4" +loc -2.04153 0.0376999 0 +texture "EasyStarK.jpg" +crease 45.000000 +numvert 45 +1.82902 0.0878167 0.0145005 +1.8698 0.0905356 0.0145733 +1.8698 0.0837352 0.0269371 +1.82902 0.0808907 0.0273472 +1.8698 0.0527165 0.0458764 +1.8698 0.00396907 0.0538676 +1.82902 0.00427341 0.0549657 +1.82902 0.0483836 0.047173 +1.78839 0.080249 0.0145601 +1.71272 0.0417485 0.0098368 +1.74863 0.0655963 0.0120794 +1.78839 0.0733294 0.0277574 +1.71272 0.0371575 0.0274795 +1.74863 0.0595037 0.0276118 +1.78839 0.0442424 0.0482711 +1.78839 0.00322151 0.055786 +1.74863 -0.00168037 0.0554949 +1.71272 -0.0094862 0.0544497 +1.71272 0.0174443 0.0477948 +1.74863 0.0336449 0.0480197 +1.8698 0.0950868 -6.61019e-006 +1.82902 0.0920042 6.62201e-006 +1.8698 0.0905356 -0.0145733 +1.82902 0.0878167 -0.0145005 +1.8698 0.0837352 -0.0269371 +1.82902 0.0808907 -0.0273472 +1.8698 0.00396907 -0.0538676 +1.8698 0.0527165 -0.0458764 +1.82902 0.0483836 -0.047173 +1.82902 0.00427341 -0.0549657 +1.78839 0.08398 6.6238e-006 +1.74863 0.0689701 6.62552e-006 +1.71272 0.0443747 6.62711e-006 +1.78839 0.080249 -0.0145601 +1.74863 0.0655963 -0.0120794 +1.71272 0.0417485 -0.0098368 +1.78839 0.0733294 -0.0277574 +1.74863 0.0595037 -0.0276118 +1.71272 0.0371575 -0.0274795 +1.78839 0.00322151 -0.055786 +1.78839 0.0442424 -0.0482711 +1.74863 0.0336449 -0.0480197 +1.71272 0.0174443 -0.0477948 +1.71272 -0.0094862 -0.0544497 +1.74863 -0.00168037 -0.0554949 +numsurf 64 +SURF 0x30 +mat 0 +refs 3 +11 0.475468 0.551259 +7 0.639157 0.460855 +3 0.639157 0.578638 +SURF 0x30 +mat 0 +refs 3 +7 0.639157 0.460855 +11 0.475468 0.551259 +14 0.475468 0.44585 +SURF 0x30 +mat 0 +refs 3 +7 0.639157 0.460855 +5 0.80345 0.299929 +4 0.80345 0.476577 +SURF 0x30 +mat 0 +refs 3 +5 0.80345 0.299929 +7 0.639157 0.460855 +6 0.639157 0.301051 +SURF 0x30 +mat 0 +refs 3 +14 0.475468 0.44585 +6 0.639157 0.301051 +7 0.639157 0.460855 +SURF 0x30 +mat 0 +refs 3 +6 0.639157 0.301051 +14 0.475468 0.44585 +15 0.475468 0.297228 +SURF 0x30 +mat 0 +refs 3 +1 0.80345 0.613593 +3 0.639157 0.578638 +2 0.80345 0.588949 +SURF 0x30 +mat 0 +refs 3 +3 0.639157 0.578638 +1 0.80345 0.613593 +0 0.639157 0.603739 +SURF 0x30 +mat 0 +refs 3 +3 0.639157 0.578638 +8 0.475468 0.576325 +11 0.475468 0.551259 +SURF 0x30 +mat 0 +refs 3 +8 0.475468 0.576325 +3 0.639157 0.578638 +0 0.639157 0.603739 +SURF 0x30 +mat 0 +refs 3 +1 0.80345 0.613593 +21 0.639157 0.618917 +0 0.639157 0.603739 +SURF 0x30 +mat 0 +refs 3 +21 0.639157 0.618917 +1 0.80345 0.613593 +20 0.80345 0.630083 +SURF 0x30 +mat 0 +refs 3 +0 0.639157 0.603739 +30 0.475468 0.589838 +8 0.475468 0.576325 +SURF 0x30 +mat 0 +refs 3 +30 0.475468 0.589838 +0 0.639157 0.603739 +21 0.639157 0.618917 +SURF 0x30 +mat 0 +refs 3 +23 0.639157 0.603739 +30 0.475468 0.589838 +21 0.639157 0.618917 +SURF 0x30 +mat 0 +refs 3 +30 0.475468 0.589838 +23 0.639157 0.603739 +33 0.475468 0.576325 +SURF 0x30 +mat 0 +refs 3 +20 0.80345 0.630083 +23 0.639157 0.603739 +21 0.639157 0.618917 +SURF 0x30 +mat 0 +refs 3 +23 0.639157 0.603739 +20 0.80345 0.630083 +22 0.80345 0.613593 +SURF 0x30 +mat 0 +refs 3 +25 0.639157 0.578638 +33 0.475468 0.576325 +23 0.639157 0.603739 +SURF 0x30 +mat 0 +refs 3 +33 0.475468 0.576325 +25 0.639157 0.578638 +36 0.475468 0.551259 +SURF 0x30 +mat 0 +refs 3 +43 0.170637 0.251176 +41 0.315311 0.407461 +44 0.315311 0.279461 +SURF 0x30 +mat 0 +refs 3 +41 0.315311 0.407461 +43 0.170637 0.251176 +42 0.170637 0.348759 +SURF 0x30 +mat 0 +refs 3 +24 0.80345 0.588949 +23 0.639157 0.603739 +22 0.80345 0.613593 +SURF 0x30 +mat 0 +refs 3 +23 0.639157 0.603739 +24 0.80345 0.588949 +25 0.639157 0.578638 +SURF 0x30 +mat 0 +refs 3 +28 0.639157 0.460855 +24 0.80345 0.588949 +27 0.80345 0.476577 +SURF 0x30 +mat 0 +refs 3 +24 0.80345 0.588949 +28 0.639157 0.460855 +25 0.639157 0.578638 +SURF 0x30 +mat 0 +refs 3 +40 0.475468 0.44585 +25 0.639157 0.578638 +28 0.639157 0.460855 +SURF 0x30 +mat 0 +refs 3 +25 0.639157 0.578638 +40 0.475468 0.44585 +36 0.475468 0.551259 +SURF 0x30 +mat 0 +refs 3 +8 0.475468 0.576325 +31 0.315311 0.53546 +10 0.315311 0.523241 +SURF 0x30 +mat 0 +refs 3 +31 0.315311 0.53546 +8 0.475468 0.576325 +30 0.475468 0.589838 +SURF 0x30 +mat 0 +refs 3 +10 0.315311 0.523241 +32 0.170637 0.446342 +9 0.170637 0.436816 +SURF 0x30 +mat 0 +refs 3 +32 0.170637 0.446342 +10 0.315311 0.523241 +31 0.315311 0.53546 +SURF 0x30 +mat 0 +refs 3 +8 0.475468 0.576325 +13 0.315311 0.50116 +11 0.475468 0.551259 +SURF 0x30 +mat 0 +refs 3 +13 0.315311 0.50116 +8 0.475468 0.576325 +10 0.315311 0.523241 +SURF 0x30 +mat 0 +refs 3 +10 0.315311 0.523241 +12 0.170637 0.420197 +13 0.315311 0.50116 +SURF 0x30 +mat 0 +refs 3 +12 0.170637 0.420197 +10 0.315311 0.523241 +9 0.170637 0.436816 +SURF 0x30 +mat 0 +refs 3 +13 0.315311 0.50116 +14 0.475468 0.44585 +11 0.475468 0.551259 +SURF 0x30 +mat 0 +refs 3 +14 0.475468 0.44585 +13 0.315311 0.50116 +19 0.315311 0.407461 +SURF 0x30 +mat 0 +refs 3 +12 0.170637 0.420197 +19 0.315311 0.407461 +13 0.315311 0.50116 +SURF 0x30 +mat 0 +refs 3 +19 0.315311 0.407461 +12 0.170637 0.420197 +18 0.170637 0.348759 +SURF 0x30 +mat 0 +refs 3 +29 0.639157 0.301051 +27 0.80345 0.476577 +26 0.80345 0.299929 +SURF 0x30 +mat 0 +refs 3 +27 0.80345 0.476577 +29 0.639157 0.301051 +28 0.639157 0.460855 +SURF 0x30 +mat 0 +refs 3 +39 0.475468 0.297228 +28 0.639157 0.460855 +29 0.639157 0.301051 +SURF 0x30 +mat 0 +refs 3 +28 0.639157 0.460855 +39 0.475468 0.297228 +40 0.475468 0.44585 +SURF 0x30 +mat 0 +refs 3 +19 0.315311 0.407461 +15 0.475468 0.297228 +14 0.475468 0.44585 +SURF 0x30 +mat 0 +refs 3 +15 0.475468 0.297228 +19 0.315311 0.407461 +16 0.315311 0.279461 +SURF 0x30 +mat 0 +refs 3 +18 0.170637 0.348759 +16 0.315311 0.279461 +19 0.315311 0.407461 +SURF 0x30 +mat 0 +refs 3 +16 0.315311 0.279461 +18 0.170637 0.348759 +17 0.170637 0.251176 +SURF 0x30 +mat 0 +refs 3 +44 0.315311 0.279461 +40 0.475468 0.44585 +39 0.475468 0.297228 +SURF 0x30 +mat 0 +refs 3 +40 0.475468 0.44585 +44 0.315311 0.279461 +41 0.315311 0.407461 +SURF 0x30 +mat 0 +refs 3 +42 0.170637 0.348759 +37 0.315311 0.50116 +41 0.315311 0.407461 +SURF 0x30 +mat 0 +refs 3 +37 0.315311 0.50116 +42 0.170637 0.348759 +38 0.170637 0.420197 +SURF 0x30 +mat 0 +refs 3 +41 0.315311 0.407461 +36 0.475468 0.551259 +40 0.475468 0.44585 +SURF 0x30 +mat 0 +refs 3 +36 0.475468 0.551259 +41 0.315311 0.407461 +37 0.315311 0.50116 +SURF 0x30 +mat 0 +refs 3 +34 0.315311 0.523241 +38 0.170637 0.420197 +35 0.170637 0.436816 +SURF 0x30 +mat 0 +refs 3 +38 0.170637 0.420197 +34 0.315311 0.523241 +37 0.315311 0.50116 +SURF 0x30 +mat 0 +refs 3 +33 0.475468 0.576325 +37 0.315311 0.50116 +34 0.315311 0.523241 +SURF 0x30 +mat 0 +refs 3 +37 0.315311 0.50116 +33 0.475468 0.576325 +36 0.475468 0.551259 +SURF 0x30 +mat 0 +refs 3 +31 0.315311 0.53546 +35 0.170637 0.436816 +32 0.170637 0.446342 +SURF 0x30 +mat 0 +refs 3 +35 0.170637 0.436816 +31 0.315311 0.53546 +34 0.315311 0.523241 +SURF 0x30 +mat 0 +refs 3 +30 0.475468 0.589838 +34 0.315311 0.523241 +31 0.315311 0.53546 +SURF 0x30 +mat 0 +refs 3 +34 0.315311 0.523241 +30 0.475468 0.589838 +33 0.475468 0.576325 +SURF 0x30 +mat 0 +refs 3 +3 0.639157 0.578638 +4 0.80345 0.476577 +2 0.80345 0.588949 +SURF 0x30 +mat 0 +refs 3 +4 0.80345 0.476577 +3 0.639157 0.578638 +7 0.639157 0.460855 +kids 0 +OBJECT poly +name "Motor" +loc -2.04153 0.0376999 0 +crease 45.000000 +numvert 34 +2.14261 0.100174 -6.90859e-009 +2.18482 0.107616 -8.75343e-009 +2.1402 0.113821 0.00574199 +2.18241 0.121263 0.00574199 +2.14076 0.110619 0.0106042 +2.18298 0.118062 0.0106042 +2.14161 0.10583 0.0138588 +2.18382 0.113272 0.0138588 +2.14261 0.100174 0.0150033 +2.18482 0.107616 0.0150033 +2.1436 0.0945246 0.0138588 +2.18581 0.101967 0.0138588 +2.14445 0.0897286 0.0106042 +2.18666 0.0971706 0.0106042 +2.14502 0.0865268 0.00574199 +2.18722 0.0939689 0.00574199 +2.14522 0.0854023 -7.0225e-009 +2.18742 0.0928444 -8.86735e-009 +2.14502 0.0865268 -0.005742 +2.18722 0.0939689 -0.005742 +2.14445 0.0897286 -0.0106042 +2.18666 0.0971706 -0.0106042 +2.1436 0.0945246 -0.0138588 +2.18581 0.101967 -0.0138588 +2.14261 0.100174 -0.0150033 +2.18482 0.107616 -0.0150033 +2.14161 0.10583 -0.0138588 +2.18382 0.113272 -0.0138588 +2.14076 0.110619 -0.0106042 +2.18298 0.118062 -0.0106042 +2.14 0.114946 -6.79467e-009 +2.1402 0.113821 -0.005742 +2.18241 0.121263 -0.005742 +2.18221 0.122388 -8.63952e-009 +numsurf 64 +SURF 0x30 +mat 0 +refs 3 +0 0.46875 0 +16 0.5 0 +14 0.4375 0 +SURF 0x30 +mat 0 +refs 3 +0 0.40625 0 +14 0.4375 0 +12 0.375 0 +SURF 0x30 +mat 0 +refs 3 +1 0.84375 1 +27 0.8125 1 +29 0.875 1 +SURF 0x30 +mat 0 +refs 3 +0 0.34375 0 +12 0.375 0 +10 0.3125 0 +SURF 0x30 +mat 0 +refs 3 +0 0.28125 0 +10 0.3125 0 +8 0.25 0 +SURF 0x30 +mat 0 +refs 3 +0 0.21875 0 +8 0.25 0 +6 0.1875 0 +SURF 0x30 +mat 0 +refs 3 +0 0.15625 0 +6 0.1875 0 +4 0.125 0 +SURF 0x30 +mat 0 +refs 3 +0 0.09375 0 +4 0.125 0 +2 0.0625 0 +SURF 0x30 +mat 0 +refs 3 +0 0.03125 0 +2 0.0625 0 +30 0 0 +SURF 0x30 +mat 0 +refs 3 +1 0.90625 1 +29 0.875 1 +32 0.9375 1 +SURF 0x30 +mat 0 +refs 3 +1 0.96875 1 +32 0.9375 1 +33 1 1 +SURF 0x30 +mat 0 +refs 3 +1 0.78125 1 +25 0.75 1 +27 0.8125 1 +SURF 0x30 +mat 0 +refs 3 +1 0.71875 1 +23 0.6875 1 +25 0.75 1 +SURF 0x30 +mat 0 +refs 3 +0 0.65625 0 +22 0.6875 0 +20 0.625 0 +SURF 0x30 +mat 0 +refs 3 +0 0.71875 0 +24 0.75 0 +22 0.6875 0 +SURF 0x30 +mat 0 +refs 3 +0 0.78125 0 +26 0.8125 0 +24 0.75 0 +SURF 0x30 +mat 0 +refs 3 +0 0.84375 0 +28 0.875 0 +26 0.8125 0 +SURF 0x30 +mat 0 +refs 3 +1 0.65625 1 +21 0.625 1 +23 0.6875 1 +SURF 0x30 +mat 0 +refs 3 +1 0.59375 1 +19 0.5625 1 +21 0.625 1 +SURF 0x30 +mat 0 +refs 3 +1 0.53125 1 +17 0.5 1 +19 0.5625 1 +SURF 0x30 +mat 0 +refs 3 +1 0.46875 1 +15 0.4375 1 +17 0.5 1 +SURF 0x30 +mat 0 +refs 3 +1 0.40625 1 +13 0.375 1 +15 0.4375 1 +SURF 0x30 +mat 0 +refs 3 +1 0.34375 1 +11 0.3125 1 +13 0.375 1 +SURF 0x30 +mat 0 +refs 3 +1 0.28125 1 +9 0.25 1 +11 0.3125 1 +SURF 0x30 +mat 0 +refs 3 +1 0.21875 1 +7 0.1875 1 +9 0.25 1 +SURF 0x30 +mat 0 +refs 3 +1 0.15625 1 +5 0.125 1 +7 0.1875 1 +SURF 0x30 +mat 0 +refs 3 +1 0.09375 1 +3 0.0625 1 +5 0.125 1 +SURF 0x30 +mat 0 +refs 3 +0 0.90625 0 +31 0.9375 0 +28 0.875 0 +SURF 0x30 +mat 0 +refs 3 +1 0.03125 1 +33 0 1 +3 0.0625 1 +SURF 0x30 +mat 0 +refs 3 +0 0.96875 0 +30 1 0 +31 0.9375 0 +SURF 0x30 +mat 0 +refs 3 +0 0.59375 0 +20 0.625 0 +18 0.5625 0 +SURF 0x30 +mat 0 +refs 3 +0 0.53125 0 +18 0.5625 0 +16 0.5 0 +SURF 0x30 +mat 0 +refs 3 +32 0.9375 1 +30 1 0 +33 1 1 +SURF 0x30 +mat 0 +refs 3 +30 1 0 +32 0.9375 1 +31 0.9375 0 +SURF 0x30 +mat 0 +refs 3 +29 0.875 1 +31 0.9375 0 +32 0.9375 1 +SURF 0x30 +mat 0 +refs 3 +31 0.9375 0 +29 0.875 1 +28 0.875 0 +SURF 0x30 +mat 0 +refs 3 +3 0.0625 1 +30 0 0 +2 0.0625 0 +SURF 0x30 +mat 0 +refs 3 +30 0 0 +3 0.0625 1 +33 0 1 +SURF 0x30 +mat 0 +refs 3 +26 0.8125 0 +29 0.875 1 +27 0.8125 1 +SURF 0x30 +mat 0 +refs 3 +29 0.875 1 +26 0.8125 0 +28 0.875 0 +SURF 0x30 +mat 0 +refs 3 +24 0.75 0 +27 0.8125 1 +25 0.75 1 +SURF 0x30 +mat 0 +refs 3 +27 0.8125 1 +24 0.75 0 +26 0.8125 0 +SURF 0x30 +mat 0 +refs 3 +3 0.0625 1 +4 0.125 0 +5 0.125 1 +SURF 0x30 +mat 0 +refs 3 +4 0.125 0 +3 0.0625 1 +2 0.0625 0 +SURF 0x30 +mat 0 +refs 3 +5 0.125 1 +6 0.1875 0 +7 0.1875 1 +SURF 0x30 +mat 0 +refs 3 +6 0.1875 0 +5 0.125 1 +4 0.125 0 +SURF 0x30 +mat 0 +refs 3 +7 0.1875 1 +8 0.25 0 +9 0.25 1 +SURF 0x30 +mat 0 +refs 3 +8 0.25 0 +7 0.1875 1 +6 0.1875 0 +SURF 0x30 +mat 0 +refs 3 +9 0.25 1 +10 0.3125 0 +11 0.3125 1 +SURF 0x30 +mat 0 +refs 3 +10 0.3125 0 +9 0.25 1 +8 0.25 0 +SURF 0x30 +mat 0 +refs 3 +11 0.3125 1 +12 0.375 0 +13 0.375 1 +SURF 0x30 +mat 0 +refs 3 +12 0.375 0 +11 0.3125 1 +10 0.3125 0 +SURF 0x30 +mat 0 +refs 3 +14 0.4375 0 +13 0.375 1 +12 0.375 0 +SURF 0x30 +mat 0 +refs 3 +13 0.375 1 +14 0.4375 0 +15 0.4375 1 +SURF 0x30 +mat 0 +refs 3 +16 0.5 0 +15 0.4375 1 +14 0.4375 0 +SURF 0x30 +mat 0 +refs 3 +15 0.4375 1 +16 0.5 0 +17 0.5 1 +SURF 0x30 +mat 0 +refs 3 +22 0.6875 0 +25 0.75 1 +23 0.6875 1 +SURF 0x30 +mat 0 +refs 3 +25 0.75 1 +22 0.6875 0 +24 0.75 0 +SURF 0x30 +mat 0 +refs 3 +20 0.625 0 +23 0.6875 1 +21 0.625 1 +SURF 0x30 +mat 0 +refs 3 +23 0.6875 1 +20 0.625 0 +22 0.6875 0 +SURF 0x30 +mat 0 +refs 3 +18 0.5625 0 +17 0.5 1 +16 0.5 0 +SURF 0x30 +mat 0 +refs 3 +17 0.5 1 +18 0.5625 0 +19 0.5625 1 +SURF 0x30 +mat 0 +refs 3 +20 0.625 0 +19 0.5625 1 +18 0.5625 0 +SURF 0x30 +mat 0 +refs 3 +19 0.5625 1 +20 0.625 0 +21 0.625 1 +kids 0 +OBJECT poly +name "RHStab" +loc 0.639177 0.0381001 0 +texture "wing.jpg" +crease 45.000000 +numvert 157 +-0.0308731 3.21865e-006 -0.266136 +-0.0272547 -0.00253689 -0.266136 +-0.0442225 -0.00268245 -0.226412 +-0.0483968 3.21865e-006 -0.226412 +-0.0169415 -0.00468695 -0.266136 +-0.0323484 -0.00496471 -0.226412 +-0.00151503 -0.00612903 -0.266136 +-0.0145732 -0.00648618 -0.226412 +0.0144145 -0.00663173 -0.266136 +0.00701219 -0.00701547 -0.226412 +0.0326194 -0.00612903 -0.266136 +0.0279755 -0.00648618 -0.226412 +0.0480462 -0.00468695 -0.266136 +0.0457507 -0.00496471 -0.226412 +0.0583594 -0.00253689 -0.266136 +0.0576317 -0.00268245 -0.226412 +0.0619778 3.21865e-006 -0.266136 +0.0617992 3.21865e-006 -0.226412 +0.0583594 0.00253689 -0.266136 +0.0576317 0.002689 -0.226412 +0.0480462 0.00469339 -0.266136 +0.0457507 0.00496471 -0.226412 +0.0326194 0.00612903 -0.266136 +0.0144145 0.00663173 -0.266136 +-0.00151503 0.00612903 -0.266136 +-0.0169415 0.00469339 -0.266136 +-0.0323484 0.00496471 -0.226412 +-0.0272547 0.00253689 -0.266136 +-0.0442225 0.002689 -0.226412 +-0.0564013 -0.00291407 -0.178008 +-0.0612304 3.21865e-006 -0.178008 +-0.0426416 -0.00538814 -0.178008 +-0.0220484 -0.00704193 -0.178008 +0 -0.00761735 -0.178008 +0.0242843 -0.00704193 -0.178008 +-0.0426416 0.00538802 -0.178008 +-0.0564013 0.00291407 -0.178008 +-0.0619844 -0.0030992 -0.122785 +-0.0670913 3.21865e-006 -0.122785 +-0.0474443 -0.0057255 -0.122785 +-0.0256737 -0.00747859 -0.122785 +0 -0.00809371 -0.122785 +0.0256734 -0.00747859 -0.122785 +-0.0474443 0.0057255 -0.122785 +-0.0619844 0.00309932 -0.122785 +-0.0628445 -0.00329101 -0.0628643 +-0.068077 3.21865e-006 -0.0628643 +-0.0479336 -0.0060761 -0.0628643 +-0.0256208 -0.0079416 -0.0628643 +0.000701249 -0.00858986 -0.0628643 +0.0270232 -0.0079416 -0.0628643 +-0.0479336 0.00607598 -0.0628643 +-0.0628445 0.00329101 -0.0628643 +-0.0647892 -0.00335062 1.9818e-005 +-0.0701278 3.21865e-006 1.98182e-005 +-0.0495875 -0.00619519 1.98174e-005 +-0.026838 -0.00809371 1.98164e-005 +0 -0.00876176 1.98152e-005 +0.0268378 -0.00809371 1.9814e-005 +-0.0495875 0.00619507 1.98174e-005 +-0.0647892 0.00335717 1.9818e-005 +0.0244499 -0.00170338 -0.304881 +0.00518644 -0.00208056 -0.295653 +0.00269228 3.21865e-006 -0.295653 +0.0227497 3.21865e-006 -0.304881 +0.0405511 3.21865e-006 -0.311232 +0.0415633 -0.00144541 -0.311232 +0.0293054 -0.00314558 -0.304881 +0.012291 -0.00384676 -0.295653 +0.044441 -0.00266922 -0.311232 +0.036562 -0.00411797 -0.304881 +0.0229149 -0.00502431 -0.295653 +0.0487474 -0.00348961 -0.311232 +0.045129 -0.00445533 -0.304881 +0.0354574 -0.00544107 -0.295653 +0.0538278 -0.00377405 -0.311232 +0.0559514 -0.00411797 -0.304881 +0.0479932 -0.00502431 -0.295653 +0.0595369 -0.00348961 -0.311232 +0.0632083 -0.00314558 -0.304881 +0.0586174 -0.00384676 -0.295653 +0.0638433 -0.00266922 -0.311232 +0.0680572 -0.00170338 -0.304881 +0.065722 -0.00208056 -0.295653 +0.066721 -0.00144541 -0.311232 +0.069764 3.21865e-006 -0.304881 +0.068216 3.21865e-006 -0.295653 +0.0677331 3.21865e-006 -0.311232 +0.0680572 0.00170338 -0.304881 +0.065722 0.00208044 -0.295653 +0.066721 0.00144541 -0.311232 +0.0632083 0.00315213 -0.304881 +0.0586174 0.00384676 -0.295653 +0.0638433 0.00266922 -0.311232 +0.0559514 0.00411797 -0.304881 +0.0479932 0.00502431 -0.295653 +0.0595369 0.00348949 -0.311232 +0.045129 0.00445533 -0.304881 +0.0354574 0.00544095 -0.295653 +0.0538278 0.0037806 -0.311232 +0.036562 0.00411797 -0.304881 +0.0229149 0.00502431 -0.295653 +0.0487474 0.00348949 -0.311232 +0.0293054 0.00315213 -0.304881 +0.012291 0.00384676 -0.295653 +0.044441 0.00266922 -0.311232 +0.0244499 0.00170338 -0.304881 +0.00518644 0.00208044 -0.295653 +0.0415633 0.00144541 -0.311232 +0.0526702 3.21865e-006 -0.314163 +0.0616075 3.21865e-006 -0.315466 +0.0531399 -0.000671506 -0.314163 +0.0544827 -0.00124037 -0.314163 +0.0564873 -0.00162399 -0.314163 +0.0588556 -0.00176299 -0.314163 +0.0612236 -0.00162399 -0.314163 +0.0632348 -0.00124037 -0.314163 +0.064571 -0.000671506 -0.314163 +0.0650473 3.21865e-006 -0.314163 +0.064571 0.000671506 -0.314163 +0.0632348 0.00124705 -0.314163 +0.0612236 0.00162399 -0.314163 +0.0588556 0.00176299 -0.314163 +0.0564939 0.00162399 -0.314163 +0.0544827 0.00124705 -0.314163 +0.0531399 0.000671506 -0.314163 +-0.0134487 -0.0022856 -0.282264 +-0.0164586 3.21865e-006 -0.282264 +-0.00489527 -0.00423038 -0.282264 +0.0079118 -0.00552702 -0.282264 +0.0250849 -0.0059768 -0.282264 +0.0410141 -0.00552702 -0.282264 +0.0538212 -0.00423038 -0.282264 +0.0623812 -0.0022856 -0.282264 +0.0653845 3.21865e-006 -0.282264 +0.0623812 0.00229216 -0.282264 +0.0538212 0.00423038 -0.282264 +0.0410141 0.00552702 -0.282264 +0.0250849 0.00598347 -0.282264 +0.0079118 0.00552702 -0.282264 +-0.00489527 0.00423038 -0.282264 +-0.0134487 0.00229216 -0.282264 +-0.026838 0.00809371 1.98164e-005 +0.0268378 0.00809371 1.9814e-005 +0 0.00876176 1.98152e-005 +-0.0256208 0.00794148 -0.0628643 +0.0270232 0.00794148 -0.0628643 +0.000701249 0.00859642 -0.0628643 +-0.0256737 0.00747848 -0.122785 +0.0256734 0.00747848 -0.122785 +0 0.00809371 -0.122785 +-0.0220484 0.00704181 -0.178008 +-0.0145732 0.00648618 -0.226412 +0.0242843 0.00704181 -0.178008 +0 0.00762403 -0.178008 +0.00701219 0.00702202 -0.226412 +0.0279755 0.00648618 -0.226412 +numsurf 288 +SURF 0x30 +mat 0 +refs 3 +2 0.597622 0.838697 +0 0.65137 0.822626 +1 0.65137 0.818269 +SURF 0x30 +mat 0 +refs 3 +0 0.65137 0.822626 +2 0.597622 0.838697 +3 0.597622 0.843722 +SURF 0x30 +mat 0 +refs 3 +5 0.597622 0.824402 +1 0.65137 0.818269 +4 0.65137 0.805853 +SURF 0x30 +mat 0 +refs 3 +1 0.65137 0.818269 +5 0.597622 0.824402 +2 0.597622 0.838697 +SURF 0x30 +mat 0 +refs 3 +7 0.597622 0.696335 +4 0.65137 0.699187 +6 0.65137 0.680614 +SURF 0x30 +mat 0 +refs 3 +4 0.65137 0.805853 +7 0.597622 0.803002 +5 0.597622 0.824402 +SURF 0x30 +mat 0 +refs 3 +9 0.597622 0.670348 +6 0.65137 0.680614 +8 0.65137 0.661437 +SURF 0x30 +mat 0 +refs 3 +6 0.65137 0.680614 +9 0.597622 0.670348 +7 0.597622 0.696335 +SURF 0x30 +mat 0 +refs 3 +11 0.597622 0.645111 +8 0.65137 0.661437 +10 0.65137 0.63952 +SURF 0x30 +mat 0 +refs 3 +8 0.65137 0.661437 +11 0.597622 0.645111 +9 0.597622 0.670348 +SURF 0x30 +mat 0 +refs 3 +13 0.597622 0.623711 +10 0.65137 0.63952 +12 0.65137 0.620947 +SURF 0x30 +mat 0 +refs 3 +10 0.65137 0.63952 +13 0.597622 0.623711 +11 0.597622 0.645111 +SURF 0x30 +mat 0 +refs 3 +15 0.597622 0.716074 +12 0.65137 0.727614 +14 0.65137 0.715198 +SURF 0x30 +mat 0 +refs 3 +12 0.65137 0.727614 +15 0.597622 0.716074 +13 0.597622 0.730377 +SURF 0x30 +mat 0 +refs 3 +17 0.597622 0.711056 +14 0.65137 0.715198 +16 0.65137 0.710842 +SURF 0x30 +mat 0 +refs 3 +14 0.65137 0.715198 +17 0.597622 0.711056 +15 0.597622 0.716074 +SURF 0x30 +mat 0 +refs 3 +19 0.597622 0.716074 +16 0.65137 0.710842 +18 0.65137 0.715198 +SURF 0x30 +mat 0 +refs 3 +16 0.65137 0.710842 +19 0.597622 0.716074 +17 0.597622 0.711056 +SURF 0x30 +mat 0 +refs 3 +21 0.597622 0.730377 +18 0.65137 0.715198 +20 0.65137 0.727614 +SURF 0x30 +mat 0 +refs 3 +18 0.65137 0.715198 +21 0.597622 0.730377 +19 0.597622 0.716074 +SURF 0x30 +mat 0 +refs 3 +156 0.597622 0.751777 +20 0.65137 0.727614 +22 0.65137 0.746186 +SURF 0x30 +mat 0 +refs 3 +20 0.65137 0.727614 +156 0.597622 0.751777 +21 0.597622 0.730377 +SURF 0x30 +mat 0 +refs 3 +155 0.597622 0.777015 +22 0.65137 0.746186 +23 0.65137 0.768103 +SURF 0x30 +mat 0 +refs 3 +22 0.65137 0.746186 +155 0.597622 0.777015 +156 0.597622 0.751777 +SURF 0x30 +mat 0 +refs 3 +152 0.597622 0.803002 +23 0.65137 0.768103 +24 0.65137 0.787281 +SURF 0x30 +mat 0 +refs 3 +23 0.65137 0.768103 +152 0.597622 0.803002 +155 0.597622 0.777015 +SURF 0x30 +mat 0 +refs 3 +26 0.597622 0.824402 +24 0.65137 0.787281 +25 0.65137 0.805853 +SURF 0x30 +mat 0 +refs 3 +24 0.65137 0.787281 +26 0.597622 0.824402 +152 0.597622 0.803002 +SURF 0x30 +mat 0 +refs 3 +28 0.597622 0.838697 +25 0.65137 0.805853 +27 0.65137 0.818269 +SURF 0x30 +mat 0 +refs 3 +25 0.65137 0.805853 +28 0.597622 0.838697 +26 0.597622 0.824402 +SURF 0x30 +mat 0 +refs 3 +3 0.597622 0.843722 +27 0.65137 0.818269 +0 0.65137 0.822626 +SURF 0x30 +mat 0 +refs 3 +27 0.65137 0.818269 +3 0.597622 0.843722 +28 0.597622 0.838697 +SURF 0x30 +mat 0 +refs 3 +29 0.532131 0.853359 +3 0.597622 0.843722 +2 0.597622 0.838697 +SURF 0x30 +mat 0 +refs 3 +3 0.597622 0.843722 +29 0.532131 0.853359 +30 0.532131 0.859173 +SURF 0x30 +mat 0 +refs 3 +31 0.532131 0.836794 +2 0.597622 0.838697 +5 0.597622 0.824402 +SURF 0x30 +mat 0 +refs 3 +2 0.597622 0.838697 +31 0.532131 0.836794 +29 0.532131 0.853359 +SURF 0x30 +mat 0 +refs 3 +32 0.532131 0.812002 +5 0.597622 0.824402 +7 0.597622 0.803002 +SURF 0x30 +mat 0 +refs 3 +5 0.597622 0.824402 +32 0.532131 0.812002 +31 0.532131 0.836794 +SURF 0x30 +mat 0 +refs 3 +33 0.532131 0.67879 +7 0.597622 0.696335 +9 0.597622 0.670348 +SURF 0x30 +mat 0 +refs 3 +7 0.597622 0.696335 +33 0.532131 0.67879 +32 0.532131 0.705335 +SURF 0x30 +mat 0 +refs 3 +34 0.532131 0.649554 +9 0.597622 0.670348 +11 0.597622 0.645111 +SURF 0x30 +mat 0 +refs 3 +9 0.597622 0.670348 +34 0.532131 0.649554 +33 0.532131 0.67879 +SURF 0x30 +mat 0 +refs 3 +35 0.532131 0.836794 +152 0.597622 0.803002 +26 0.597622 0.824402 +SURF 0x30 +mat 0 +refs 3 +152 0.597622 0.803002 +35 0.532131 0.836794 +151 0.532131 0.812002 +SURF 0x30 +mat 0 +refs 3 +36 0.532131 0.853359 +26 0.597622 0.824402 +28 0.597622 0.838697 +SURF 0x30 +mat 0 +refs 3 +26 0.597622 0.824402 +36 0.532131 0.853359 +35 0.532131 0.836794 +SURF 0x30 +mat 0 +refs 3 +30 0.532131 0.859173 +28 0.597622 0.838697 +3 0.597622 0.843722 +SURF 0x30 +mat 0 +refs 3 +28 0.597622 0.838697 +30 0.532131 0.859173 +36 0.532131 0.853359 +SURF 0x30 +mat 0 +refs 3 +37 0.457413 0.860081 +30 0.532131 0.859173 +29 0.532131 0.853359 +SURF 0x30 +mat 0 +refs 3 +30 0.532131 0.859173 +37 0.457413 0.860081 +38 0.457413 0.866229 +SURF 0x30 +mat 0 +refs 3 +39 0.457413 0.842576 +29 0.532131 0.853359 +31 0.532131 0.836794 +SURF 0x30 +mat 0 +refs 3 +29 0.532131 0.853359 +39 0.457413 0.842576 +37 0.457413 0.860081 +SURF 0x30 +mat 0 +refs 3 +40 0.457413 0.816366 +31 0.532131 0.836794 +32 0.532131 0.812002 +SURF 0x30 +mat 0 +refs 3 +31 0.532131 0.836794 +40 0.457413 0.816366 +39 0.457413 0.842576 +SURF 0x30 +mat 0 +refs 3 +41 0.457413 0.67879 +32 0.532131 0.705335 +33 0.532131 0.67879 +SURF 0x30 +mat 0 +refs 3 +32 0.532131 0.705335 +41 0.457413 0.67879 +40 0.457413 0.709699 +SURF 0x30 +mat 0 +refs 3 +42 0.457413 0.647882 +33 0.532131 0.67879 +34 0.532131 0.649554 +SURF 0x30 +mat 0 +refs 3 +33 0.532131 0.67879 +42 0.457413 0.647882 +41 0.457413 0.67879 +SURF 0x30 +mat 0 +refs 3 +43 0.457413 0.842576 +151 0.532131 0.812002 +35 0.532131 0.836794 +SURF 0x30 +mat 0 +refs 3 +151 0.532131 0.812002 +43 0.457413 0.842576 +148 0.457413 0.816366 +SURF 0x30 +mat 0 +refs 3 +44 0.457413 0.860081 +35 0.532131 0.836794 +36 0.532131 0.853359 +SURF 0x30 +mat 0 +refs 3 +35 0.532131 0.836794 +44 0.457413 0.860081 +43 0.457413 0.842576 +SURF 0x30 +mat 0 +refs 3 +38 0.457413 0.866229 +36 0.532131 0.853359 +30 0.532131 0.859173 +SURF 0x30 +mat 0 +refs 3 +36 0.532131 0.853359 +38 0.457413 0.866229 +44 0.457413 0.860081 +SURF 0x30 +mat 0 +refs 3 +45 0.376339 0.861116 +38 0.457413 0.866229 +37 0.457413 0.860081 +SURF 0x30 +mat 0 +refs 3 +38 0.457413 0.866229 +45 0.376339 0.861116 +46 0.376339 0.867416 +SURF 0x30 +mat 0 +refs 3 +47 0.376339 0.843165 +37 0.457413 0.860081 +39 0.457413 0.842576 +SURF 0x30 +mat 0 +refs 3 +37 0.457413 0.860081 +47 0.376339 0.843165 +45 0.376339 0.861116 +SURF 0x30 +mat 0 +refs 3 +48 0.376339 0.816302 +39 0.457413 0.842576 +40 0.457413 0.816366 +SURF 0x30 +mat 0 +refs 3 +39 0.457413 0.842576 +48 0.376339 0.816302 +47 0.376339 0.843165 +SURF 0x30 +mat 0 +refs 3 +49 0.376339 0.677946 +40 0.457413 0.709699 +41 0.457413 0.67879 +SURF 0x30 +mat 0 +refs 3 +40 0.457413 0.709699 +49 0.376339 0.677946 +48 0.376339 0.709636 +SURF 0x30 +mat 0 +refs 3 +50 0.376339 0.646257 +41 0.457413 0.67879 +42 0.457413 0.647882 +SURF 0x30 +mat 0 +refs 3 +41 0.457413 0.67879 +50 0.376339 0.646257 +49 0.376339 0.677946 +SURF 0x30 +mat 0 +refs 3 +51 0.376339 0.843165 +148 0.457413 0.816366 +43 0.457413 0.842576 +SURF 0x30 +mat 0 +refs 3 +148 0.457413 0.816366 +51 0.376339 0.843165 +145 0.376339 0.816302 +SURF 0x30 +mat 0 +refs 3 +52 0.376339 0.861116 +43 0.457413 0.842576 +44 0.457413 0.860081 +SURF 0x30 +mat 0 +refs 3 +43 0.457413 0.842576 +52 0.376339 0.861116 +51 0.376339 0.843165 +SURF 0x30 +mat 0 +refs 3 +46 0.376339 0.867416 +44 0.457413 0.860081 +38 0.457413 0.866229 +SURF 0x30 +mat 0 +refs 3 +44 0.457413 0.860081 +46 0.376339 0.867416 +52 0.376339 0.861116 +SURF 0x30 +mat 0 +refs 3 +53 0.240106 0.739498 +46 0.309018 0.743573 +45 0.309018 0.737087 +SURF 0x30 +mat 0 +refs 3 +46 0.309018 0.743573 +53 0.240106 0.739498 +54 0.240106 0.746115 +SURF 0x30 +mat 0 +refs 3 +55 0.240106 0.720655 +45 0.309018 0.737087 +47 0.309018 0.718605 +SURF 0x30 +mat 0 +refs 3 +45 0.309018 0.737087 +55 0.240106 0.720655 +53 0.240106 0.739498 +SURF 0x30 +mat 0 +refs 3 +56 0.240106 0.692456 +47 0.309018 0.718605 +48 0.309018 0.690947 +SURF 0x30 +mat 0 +refs 3 +47 0.309018 0.718605 +56 0.240106 0.692456 +55 0.240106 0.720655 +SURF 0x30 +mat 0 +refs 3 +57 0.240106 0.659189 +48 0.309018 0.690947 +49 0.309018 0.65832 +SURF 0x30 +mat 0 +refs 3 +48 0.309018 0.690947 +57 0.240106 0.659189 +56 0.240106 0.692456 +SURF 0x30 +mat 0 +refs 3 +58 0.240106 0.625924 +49 0.309018 0.65832 +50 0.309018 0.625694 +SURF 0x30 +mat 0 +refs 3 +49 0.309018 0.65832 +58 0.240106 0.625924 +57 0.240106 0.659189 +SURF 0x30 +mat 0 +refs 3 +59 0.240106 0.720655 +145 0.309018 0.690947 +51 0.309018 0.718605 +SURF 0x30 +mat 0 +refs 3 +145 0.309018 0.690947 +59 0.240106 0.720655 +142 0.240106 0.692456 +SURF 0x30 +mat 0 +refs 3 +60 0.240106 0.739498 +51 0.309018 0.718605 +52 0.309018 0.737087 +SURF 0x30 +mat 0 +refs 3 +51 0.309018 0.718605 +60 0.240106 0.739498 +59 0.240106 0.720655 +SURF 0x30 +mat 0 +refs 3 +54 0.240106 0.746115 +52 0.309018 0.737087 +46 0.309018 0.743573 +SURF 0x30 +mat 0 +refs 3 +52 0.309018 0.737087 +54 0.240106 0.746115 +60 0.240106 0.739498 +SURF 0x30 +mat 0 +refs 3 +64 0.703793 0.758069 +62 0.691307 0.779213 +63 0.691307 0.782216 +SURF 0x30 +mat 0 +refs 3 +62 0.691307 0.779213 +64 0.703793 0.758069 +61 0.703793 0.756022 +SURF 0x30 +mat 0 +refs 3 +65 0.712385 0.736637 +61 0.703793 0.756022 +64 0.703793 0.758069 +SURF 0x30 +mat 0 +refs 3 +61 0.703793 0.756022 +65 0.712385 0.736637 +66 0.712385 0.735419 +SURF 0x30 +mat 0 +refs 3 +68 0.691307 0.77066 +61 0.703793 0.756022 +67 0.703793 0.750176 +SURF 0x30 +mat 0 +refs 3 +61 0.703793 0.756022 +68 0.691307 0.77066 +62 0.691307 0.779213 +SURF 0x30 +mat 0 +refs 3 +67 0.703793 0.750176 +66 0.712385 0.735419 +69 0.712385 0.731954 +SURF 0x30 +mat 0 +refs 3 +66 0.712385 0.735419 +67 0.703793 0.750176 +61 0.703793 0.756022 +SURF 0x30 +mat 0 +refs 3 +71 0.691307 0.75787 +67 0.703793 0.750176 +70 0.703793 0.74144 +SURF 0x30 +mat 0 +refs 3 +67 0.703793 0.750176 +71 0.691307 0.75787 +68 0.691307 0.77066 +SURF 0x30 +mat 0 +refs 3 +70 0.703793 0.74144 +69 0.712385 0.731954 +72 0.712385 0.72677 +SURF 0x30 +mat 0 +refs 3 +69 0.712385 0.731954 +70 0.703793 0.74144 +67 0.703793 0.750176 +SURF 0x30 +mat 0 +refs 3 +74 0.691307 0.74277 +70 0.703793 0.74144 +73 0.703793 0.731126 +SURF 0x30 +mat 0 +refs 3 +70 0.703793 0.74144 +74 0.691307 0.74277 +71 0.691307 0.75787 +SURF 0x30 +mat 0 +refs 3 +73 0.703793 0.731126 +72 0.712385 0.72677 +75 0.712385 0.720653 +SURF 0x30 +mat 0 +refs 3 +72 0.712385 0.72677 +73 0.703793 0.731126 +70 0.703793 0.74144 +SURF 0x30 +mat 0 +refs 3 +77 0.691307 0.727678 +73 0.703793 0.731126 +76 0.703793 0.718097 +SURF 0x30 +mat 0 +refs 3 +73 0.703793 0.731126 +77 0.691307 0.727678 +74 0.691307 0.74277 +SURF 0x30 +mat 0 +refs 3 +76 0.703793 0.718097 +75 0.712385 0.720653 +78 0.712385 0.71378 +SURF 0x30 +mat 0 +refs 3 +75 0.712385 0.720653 +76 0.703793 0.718097 +73 0.703793 0.731126 +SURF 0x30 +mat 0 +refs 3 +80 0.691307 0.714887 +76 0.703793 0.718097 +79 0.703793 0.70936 +SURF 0x30 +mat 0 +refs 3 +76 0.703793 0.718097 +80 0.691307 0.714887 +77 0.691307 0.727678 +SURF 0x30 +mat 0 +refs 3 +79 0.703793 0.70936 +78 0.712385 0.71378 +81 0.712385 0.708596 +SURF 0x30 +mat 0 +refs 3 +78 0.712385 0.71378 +79 0.703793 0.70936 +76 0.703793 0.718097 +SURF 0x30 +mat 0 +refs 3 +83 0.691307 0.706334 +79 0.703793 0.70936 +82 0.703793 0.703523 +SURF 0x30 +mat 0 +refs 3 +79 0.703793 0.70936 +83 0.691307 0.706334 +80 0.691307 0.714887 +SURF 0x30 +mat 0 +refs 3 +82 0.703793 0.703523 +81 0.712385 0.708596 +84 0.712385 0.705131 +SURF 0x30 +mat 0 +refs 3 +81 0.712385 0.708596 +82 0.703793 0.703523 +79 0.703793 0.70936 +SURF 0x30 +mat 0 +refs 3 +86 0.691307 0.703331 +82 0.703793 0.703523 +85 0.703793 0.701468 +SURF 0x30 +mat 0 +refs 3 +82 0.703793 0.703523 +86 0.691307 0.703331 +83 0.691307 0.706334 +SURF 0x30 +mat 0 +refs 3 +85 0.703793 0.701468 +84 0.712385 0.705131 +87 0.712385 0.703913 +SURF 0x30 +mat 0 +refs 3 +84 0.712385 0.705131 +85 0.703793 0.701468 +82 0.703793 0.703523 +SURF 0x30 +mat 0 +refs 3 +89 0.691307 0.706334 +85 0.703793 0.701468 +88 0.703793 0.703523 +SURF 0x30 +mat 0 +refs 3 +85 0.703793 0.701468 +89 0.691307 0.706334 +86 0.691307 0.703331 +SURF 0x30 +mat 0 +refs 3 +88 0.703793 0.703523 +87 0.712385 0.703913 +90 0.712385 0.705131 +SURF 0x30 +mat 0 +refs 3 +87 0.712385 0.703913 +88 0.703793 0.703523 +85 0.703793 0.701468 +SURF 0x30 +mat 0 +refs 3 +92 0.691307 0.714887 +88 0.703793 0.703523 +91 0.703793 0.70936 +SURF 0x30 +mat 0 +refs 3 +88 0.703793 0.703523 +92 0.691307 0.714887 +89 0.691307 0.706334 +SURF 0x30 +mat 0 +refs 3 +91 0.703793 0.70936 +90 0.712385 0.705131 +93 0.712385 0.708596 +SURF 0x30 +mat 0 +refs 3 +90 0.712385 0.705131 +91 0.703793 0.70936 +88 0.703793 0.703523 +SURF 0x30 +mat 0 +refs 3 +95 0.691307 0.727678 +91 0.703793 0.70936 +94 0.703793 0.718097 +SURF 0x30 +mat 0 +refs 3 +91 0.703793 0.70936 +95 0.691307 0.727678 +92 0.691307 0.714887 +SURF 0x30 +mat 0 +refs 3 +94 0.703793 0.718097 +93 0.712385 0.708596 +96 0.712385 0.71378 +SURF 0x30 +mat 0 +refs 3 +93 0.712385 0.708596 +94 0.703793 0.718097 +91 0.703793 0.70936 +SURF 0x30 +mat 0 +refs 3 +98 0.691307 0.74277 +94 0.703793 0.718097 +97 0.703793 0.731126 +SURF 0x30 +mat 0 +refs 3 +94 0.703793 0.718097 +98 0.691307 0.74277 +95 0.691307 0.727678 +SURF 0x30 +mat 0 +refs 3 +97 0.703793 0.731126 +96 0.712385 0.71378 +99 0.712385 0.720653 +SURF 0x30 +mat 0 +refs 3 +96 0.712385 0.71378 +97 0.703793 0.731126 +94 0.703793 0.718097 +SURF 0x30 +mat 0 +refs 3 +101 0.691307 0.75787 +97 0.703793 0.731126 +100 0.703793 0.74144 +SURF 0x30 +mat 0 +refs 3 +97 0.703793 0.731126 +101 0.691307 0.75787 +98 0.691307 0.74277 +SURF 0x30 +mat 0 +refs 3 +100 0.703793 0.74144 +99 0.712385 0.720653 +102 0.712385 0.72677 +SURF 0x30 +mat 0 +refs 3 +99 0.712385 0.720653 +100 0.703793 0.74144 +97 0.703793 0.731126 +SURF 0x30 +mat 0 +refs 3 +104 0.691307 0.77066 +100 0.703793 0.74144 +103 0.703793 0.750176 +SURF 0x30 +mat 0 +refs 3 +100 0.703793 0.74144 +104 0.691307 0.77066 +101 0.691307 0.75787 +SURF 0x30 +mat 0 +refs 3 +103 0.703793 0.750176 +102 0.712385 0.72677 +105 0.712385 0.731954 +SURF 0x30 +mat 0 +refs 3 +102 0.712385 0.72677 +103 0.703793 0.750176 +100 0.703793 0.74144 +SURF 0x30 +mat 0 +refs 3 +107 0.691307 0.779213 +103 0.703793 0.750176 +106 0.703793 0.756022 +SURF 0x30 +mat 0 +refs 3 +103 0.703793 0.750176 +107 0.691307 0.779213 +104 0.691307 0.77066 +SURF 0x30 +mat 0 +refs 3 +106 0.703793 0.756022 +105 0.712385 0.731954 +108 0.712385 0.735419 +SURF 0x30 +mat 0 +refs 3 +105 0.712385 0.731954 +106 0.703793 0.756022 +103 0.703793 0.750176 +SURF 0x30 +mat 0 +refs 3 +107 0.691307 0.779213 +64 0.703793 0.758069 +63 0.691307 0.782216 +SURF 0x30 +mat 0 +refs 3 +64 0.703793 0.758069 +107 0.691307 0.779213 +106 0.703793 0.756022 +SURF 0x30 +mat 0 +refs 3 +106 0.703793 0.756022 +65 0.712385 0.736637 +64 0.703793 0.758069 +SURF 0x30 +mat 0 +refs 3 +65 0.712385 0.736637 +106 0.703793 0.756022 +108 0.712385 0.735419 +SURF 0x30 +mat 0 +refs 3 +109 0.71635 0.722047 +66 0.712385 0.735419 +65 0.712385 0.736637 +SURF 0x30 +mat 0 +refs 3 +66 0.712385 0.735419 +109 0.71635 0.722047 +111 0.71635 0.721482 +SURF 0x30 +mat 0 +refs 3 +111 0.71635 0.721482 +69 0.712385 0.731954 +66 0.712385 0.735419 +SURF 0x30 +mat 0 +refs 3 +69 0.712385 0.731954 +111 0.71635 0.721482 +112 0.71635 0.719865 +SURF 0x30 +mat 0 +refs 3 +112 0.71635 0.719865 +72 0.712385 0.72677 +69 0.712385 0.731954 +SURF 0x30 +mat 0 +refs 3 +72 0.712385 0.72677 +112 0.71635 0.719865 +113 0.71635 0.717452 +SURF 0x30 +mat 0 +refs 3 +75 0.712385 0.720653 +113 0.71635 0.717452 +114 0.71635 0.7146 +SURF 0x30 +mat 0 +refs 3 +113 0.71635 0.717452 +75 0.712385 0.720653 +72 0.712385 0.72677 +SURF 0x30 +mat 0 +refs 3 +78 0.712385 0.71378 +114 0.71635 0.7146 +115 0.71635 0.71175 +SURF 0x30 +mat 0 +refs 3 +114 0.71635 0.7146 +78 0.712385 0.71378 +75 0.712385 0.720653 +SURF 0x30 +mat 0 +refs 3 +81 0.712385 0.708596 +115 0.71635 0.71175 +116 0.71635 0.709328 +SURF 0x30 +mat 0 +refs 3 +115 0.71635 0.71175 +81 0.712385 0.708596 +78 0.712385 0.71378 +SURF 0x30 +mat 0 +refs 3 +84 0.712385 0.705131 +116 0.71635 0.709328 +117 0.71635 0.70772 +SURF 0x30 +mat 0 +refs 3 +116 0.71635 0.709328 +84 0.712385 0.705131 +81 0.712385 0.708596 +SURF 0x30 +mat 0 +refs 3 +117 0.71635 0.70772 +87 0.712385 0.703913 +84 0.712385 0.705131 +SURF 0x30 +mat 0 +refs 3 +87 0.712385 0.703913 +117 0.71635 0.70772 +118 0.71635 0.707146 +SURF 0x30 +mat 0 +refs 3 +119 0.71635 0.70772 +87 0.712385 0.703913 +118 0.71635 0.707146 +SURF 0x30 +mat 0 +refs 3 +87 0.712385 0.703913 +119 0.71635 0.70772 +90 0.712385 0.705131 +SURF 0x30 +mat 0 +refs 3 +93 0.712385 0.708596 +119 0.71635 0.70772 +120 0.71635 0.709328 +SURF 0x30 +mat 0 +refs 3 +119 0.71635 0.70772 +93 0.712385 0.708596 +90 0.712385 0.705131 +SURF 0x30 +mat 0 +refs 3 +96 0.712385 0.71378 +120 0.71635 0.709328 +121 0.71635 0.71175 +SURF 0x30 +mat 0 +refs 3 +120 0.71635 0.709328 +96 0.712385 0.71378 +93 0.712385 0.708596 +SURF 0x30 +mat 0 +refs 3 +99 0.712385 0.720653 +121 0.71635 0.71175 +122 0.71635 0.7146 +SURF 0x30 +mat 0 +refs 3 +121 0.71635 0.71175 +99 0.712385 0.720653 +96 0.712385 0.71378 +SURF 0x30 +mat 0 +refs 3 +102 0.712385 0.72677 +122 0.71635 0.7146 +123 0.71635 0.717444 +SURF 0x30 +mat 0 +refs 3 +122 0.71635 0.7146 +102 0.712385 0.72677 +99 0.712385 0.720653 +SURF 0x30 +mat 0 +refs 3 +102 0.712385 0.72677 +124 0.71635 0.719865 +105 0.712385 0.731954 +SURF 0x30 +mat 0 +refs 3 +124 0.71635 0.719865 +102 0.712385 0.72677 +123 0.71635 0.717444 +SURF 0x30 +mat 0 +refs 3 +105 0.712385 0.731954 +125 0.71635 0.721482 +108 0.712385 0.735419 +SURF 0x30 +mat 0 +refs 3 +125 0.71635 0.721482 +105 0.712385 0.731954 +124 0.71635 0.719865 +SURF 0x30 +mat 0 +refs 3 +108 0.712385 0.735419 +109 0.71635 0.722047 +65 0.712385 0.736637 +SURF 0x30 +mat 0 +refs 3 +109 0.71635 0.722047 +108 0.712385 0.735419 +125 0.71635 0.721482 +SURF 0x30 +mat 0 +refs 3 +1 0.65137 0.818269 +127 0.673191 0.805272 +126 0.673191 0.801648 +SURF 0x30 +mat 0 +refs 3 +127 0.673191 0.805272 +1 0.65137 0.818269 +0 0.65137 0.822626 +SURF 0x30 +mat 0 +refs 3 +63 0.691307 0.782216 +126 0.673191 0.801648 +127 0.673191 0.805272 +SURF 0x30 +mat 0 +refs 3 +126 0.673191 0.801648 +63 0.691307 0.782216 +62 0.691307 0.779213 +SURF 0x30 +mat 0 +refs 3 +4 0.65137 0.805853 +126 0.673191 0.801648 +128 0.673191 0.791351 +SURF 0x30 +mat 0 +refs 3 +126 0.673191 0.801648 +4 0.65137 0.805853 +1 0.65137 0.818269 +SURF 0x30 +mat 0 +refs 3 +128 0.673191 0.791351 +62 0.691307 0.779213 +68 0.691307 0.77066 +SURF 0x30 +mat 0 +refs 3 +62 0.691307 0.779213 +128 0.673191 0.791351 +126 0.673191 0.801648 +SURF 0x30 +mat 0 +refs 3 +6 0.65137 0.787281 +128 0.673191 0.791351 +129 0.673191 0.775932 +SURF 0x30 +mat 0 +refs 3 +128 0.673191 0.791351 +6 0.65137 0.787281 +4 0.65137 0.805853 +SURF 0x30 +mat 0 +refs 3 +129 0.673191 0.775932 +68 0.691307 0.77066 +71 0.691307 0.75787 +SURF 0x30 +mat 0 +refs 3 +68 0.691307 0.77066 +129 0.673191 0.775932 +128 0.673191 0.791351 +SURF 0x30 +mat 0 +refs 3 +8 0.65137 0.768103 +129 0.673191 0.775932 +130 0.673191 0.755257 +SURF 0x30 +mat 0 +refs 3 +129 0.673191 0.775932 +8 0.65137 0.768103 +6 0.65137 0.787281 +SURF 0x30 +mat 0 +refs 3 +130 0.673191 0.755257 +71 0.691307 0.75787 +74 0.691307 0.74277 +SURF 0x30 +mat 0 +refs 3 +71 0.691307 0.75787 +130 0.673191 0.755257 +129 0.673191 0.775932 +SURF 0x30 +mat 0 +refs 3 +10 0.65137 0.746186 +130 0.673191 0.755257 +131 0.673191 0.73608 +SURF 0x30 +mat 0 +refs 3 +130 0.673191 0.755257 +10 0.65137 0.746186 +8 0.65137 0.768103 +SURF 0x30 +mat 0 +refs 3 +131 0.673191 0.73608 +74 0.691307 0.74277 +77 0.691307 0.727678 +SURF 0x30 +mat 0 +refs 3 +74 0.691307 0.74277 +131 0.673191 0.73608 +130 0.673191 0.755257 +SURF 0x30 +mat 0 +refs 3 +12 0.65137 0.727614 +131 0.673191 0.73608 +132 0.673191 0.720661 +SURF 0x30 +mat 0 +refs 3 +131 0.673191 0.73608 +12 0.65137 0.727614 +10 0.65137 0.746186 +SURF 0x30 +mat 0 +refs 3 +132 0.673191 0.720661 +77 0.691307 0.727678 +80 0.691307 0.714887 +SURF 0x30 +mat 0 +refs 3 +77 0.691307 0.727678 +132 0.673191 0.720661 +131 0.673191 0.73608 +SURF 0x30 +mat 0 +refs 3 +14 0.65137 0.715198 +132 0.673191 0.720661 +133 0.673191 0.710356 +SURF 0x30 +mat 0 +refs 3 +132 0.673191 0.720661 +14 0.65137 0.715198 +12 0.65137 0.727614 +SURF 0x30 +mat 0 +refs 3 +133 0.673191 0.710356 +80 0.691307 0.714887 +83 0.691307 0.706334 +SURF 0x30 +mat 0 +refs 3 +80 0.691307 0.714887 +133 0.673191 0.710356 +132 0.673191 0.720661 +SURF 0x30 +mat 0 +refs 3 +16 0.65137 0.710842 +133 0.673191 0.710356 +134 0.673191 0.70674 +SURF 0x30 +mat 0 +refs 3 +133 0.673191 0.710356 +16 0.65137 0.710842 +14 0.65137 0.715198 +SURF 0x30 +mat 0 +refs 3 +134 0.673191 0.70674 +83 0.691307 0.706334 +86 0.691307 0.703331 +SURF 0x30 +mat 0 +refs 3 +83 0.691307 0.706334 +134 0.673191 0.70674 +133 0.673191 0.710356 +SURF 0x30 +mat 0 +refs 3 +18 0.65137 0.715198 +134 0.673191 0.70674 +135 0.673191 0.710356 +SURF 0x30 +mat 0 +refs 3 +134 0.673191 0.70674 +18 0.65137 0.715198 +16 0.65137 0.710842 +SURF 0x30 +mat 0 +refs 3 +135 0.673191 0.710356 +86 0.691307 0.703331 +89 0.691307 0.706334 +SURF 0x30 +mat 0 +refs 3 +86 0.691307 0.703331 +135 0.673191 0.710356 +134 0.673191 0.70674 +SURF 0x30 +mat 0 +refs 3 +20 0.65137 0.727614 +135 0.673191 0.710356 +136 0.673191 0.720661 +SURF 0x30 +mat 0 +refs 3 +135 0.673191 0.710356 +20 0.65137 0.727614 +18 0.65137 0.715198 +SURF 0x30 +mat 0 +refs 3 +136 0.673191 0.720661 +89 0.691307 0.706334 +92 0.691307 0.714887 +SURF 0x30 +mat 0 +refs 3 +89 0.691307 0.706334 +136 0.673191 0.720661 +135 0.673191 0.710356 +SURF 0x30 +mat 0 +refs 3 +22 0.65137 0.746186 +136 0.673191 0.720661 +137 0.673191 0.73608 +SURF 0x30 +mat 0 +refs 3 +136 0.673191 0.720661 +22 0.65137 0.746186 +20 0.65137 0.727614 +SURF 0x30 +mat 0 +refs 3 +137 0.673191 0.73608 +92 0.691307 0.714887 +95 0.691307 0.727678 +SURF 0x30 +mat 0 +refs 3 +92 0.691307 0.714887 +137 0.673191 0.73608 +136 0.673191 0.720661 +SURF 0x30 +mat 0 +refs 3 +23 0.65137 0.768103 +137 0.673191 0.73608 +138 0.673191 0.755257 +SURF 0x30 +mat 0 +refs 3 +137 0.673191 0.73608 +23 0.65137 0.768103 +22 0.65137 0.746186 +SURF 0x30 +mat 0 +refs 3 +138 0.673191 0.755257 +95 0.691307 0.727678 +98 0.691307 0.74277 +SURF 0x30 +mat 0 +refs 3 +95 0.691307 0.727678 +138 0.673191 0.755257 +137 0.673191 0.73608 +SURF 0x30 +mat 0 +refs 3 +24 0.65137 0.787281 +138 0.673191 0.755257 +139 0.673191 0.775932 +SURF 0x30 +mat 0 +refs 3 +138 0.673191 0.755257 +24 0.65137 0.787281 +23 0.65137 0.768103 +SURF 0x30 +mat 0 +refs 3 +139 0.673191 0.775932 +98 0.691307 0.74277 +101 0.691307 0.75787 +SURF 0x30 +mat 0 +refs 3 +98 0.691307 0.74277 +139 0.673191 0.775932 +138 0.673191 0.755257 +SURF 0x30 +mat 0 +refs 3 +25 0.65137 0.805853 +139 0.673191 0.775932 +140 0.673191 0.791351 +SURF 0x30 +mat 0 +refs 3 +139 0.673191 0.775932 +25 0.65137 0.805853 +24 0.65137 0.787281 +SURF 0x30 +mat 0 +refs 3 +140 0.673191 0.791351 +101 0.691307 0.75787 +104 0.691307 0.77066 +SURF 0x30 +mat 0 +refs 3 +101 0.691307 0.75787 +140 0.673191 0.791351 +139 0.673191 0.775932 +SURF 0x30 +mat 0 +refs 3 +27 0.65137 0.818269 +140 0.673191 0.791351 +141 0.673191 0.801648 +SURF 0x30 +mat 0 +refs 3 +140 0.673191 0.791351 +27 0.65137 0.818269 +25 0.65137 0.805853 +SURF 0x30 +mat 0 +refs 3 +141 0.673191 0.801648 +104 0.691307 0.77066 +107 0.691307 0.779213 +SURF 0x30 +mat 0 +refs 3 +104 0.691307 0.77066 +141 0.673191 0.801648 +140 0.673191 0.791351 +SURF 0x30 +mat 0 +refs 3 +0 0.65137 0.822626 +141 0.673191 0.801648 +127 0.673191 0.805272 +SURF 0x30 +mat 0 +refs 3 +141 0.673191 0.801648 +0 0.65137 0.822626 +27 0.65137 0.818269 +SURF 0x30 +mat 0 +refs 3 +141 0.673191 0.801648 +63 0.691307 0.782216 +127 0.673191 0.805272 +SURF 0x30 +mat 0 +refs 3 +63 0.691307 0.782216 +141 0.673191 0.801648 +107 0.691307 0.779213 +SURF 0x30 +mat 0 +refs 3 +109 0.71635 0.722047 +110 0.718114 0.711287 +111 0.71635 0.721482 +SURF 0x30 +mat 0 +refs 3 +111 0.71635 0.721482 +110 0.718114 0.711287 +112 0.71635 0.719865 +SURF 0x30 +mat 0 +refs 3 +112 0.71635 0.719865 +110 0.718114 0.711287 +113 0.71635 0.717452 +SURF 0x30 +mat 0 +refs 3 +113 0.71635 0.717452 +110 0.718114 0.711287 +114 0.71635 0.7146 +SURF 0x30 +mat 0 +refs 3 +114 0.71635 0.7146 +110 0.718114 0.711287 +115 0.71635 0.71175 +SURF 0x30 +mat 0 +refs 3 +115 0.71635 0.71175 +110 0.718114 0.711287 +116 0.71635 0.709328 +SURF 0x30 +mat 0 +refs 3 +116 0.71635 0.709328 +110 0.718114 0.711287 +117 0.71635 0.70772 +SURF 0x30 +mat 0 +refs 3 +117 0.71635 0.70772 +110 0.718114 0.711287 +118 0.71635 0.707146 +SURF 0x30 +mat 0 +refs 3 +118 0.71635 0.707146 +110 0.718114 0.711287 +119 0.71635 0.70772 +SURF 0x30 +mat 0 +refs 3 +119 0.71635 0.70772 +110 0.718114 0.711287 +120 0.71635 0.709328 +SURF 0x30 +mat 0 +refs 3 +120 0.71635 0.709328 +110 0.718114 0.711287 +121 0.71635 0.71175 +SURF 0x30 +mat 0 +refs 3 +121 0.71635 0.71175 +110 0.718114 0.711287 +122 0.71635 0.7146 +SURF 0x30 +mat 0 +refs 3 +122 0.71635 0.7146 +110 0.718114 0.711287 +123 0.71635 0.717444 +SURF 0x30 +mat 0 +refs 3 +123 0.71635 0.717444 +110 0.718114 0.711287 +124 0.71635 0.719865 +SURF 0x30 +mat 0 +refs 3 +124 0.71635 0.719865 +110 0.718114 0.711287 +125 0.71635 0.721482 +SURF 0x30 +mat 0 +refs 3 +125 0.71635 0.721482 +110 0.718114 0.711287 +109 0.71635 0.722047 +SURF 0x30 +mat 0 +refs 3 +154 0.532131 0.785457 +156 0.597622 0.751777 +155 0.597622 0.777015 +SURF 0x30 +mat 0 +refs 3 +156 0.597622 0.751777 +154 0.532131 0.785457 +153 0.532131 0.756221 +SURF 0x30 +mat 0 +refs 3 +151 0.532131 0.812002 +155 0.597622 0.777015 +152 0.597622 0.803002 +SURF 0x30 +mat 0 +refs 3 +155 0.597622 0.777015 +151 0.532131 0.812002 +154 0.532131 0.785457 +SURF 0x30 +mat 0 +refs 3 +142 0.240106 0.692456 +147 0.309018 0.65832 +145 0.309018 0.690947 +SURF 0x30 +mat 0 +refs 3 +147 0.309018 0.65832 +142 0.240106 0.692456 +144 0.240106 0.659189 +SURF 0x30 +mat 0 +refs 3 +144 0.240106 0.659189 +146 0.309018 0.625694 +147 0.309018 0.65832 +SURF 0x30 +mat 0 +refs 3 +146 0.309018 0.625694 +144 0.240106 0.659189 +143 0.240106 0.625924 +SURF 0x30 +mat 0 +refs 3 +145 0.376339 0.816302 +150 0.457413 0.785457 +148 0.457413 0.816366 +SURF 0x30 +mat 0 +refs 3 +150 0.457413 0.785457 +145 0.376339 0.816302 +147 0.376339 0.784613 +SURF 0x30 +mat 0 +refs 3 +147 0.376339 0.784613 +149 0.457413 0.754549 +150 0.457413 0.785457 +SURF 0x30 +mat 0 +refs 3 +149 0.457413 0.754549 +147 0.376339 0.784613 +146 0.376339 0.752924 +SURF 0x30 +mat 0 +refs 3 +148 0.457413 0.816366 +154 0.532131 0.785457 +151 0.532131 0.812002 +SURF 0x30 +mat 0 +refs 3 +154 0.532131 0.785457 +148 0.457413 0.816366 +150 0.457413 0.785457 +SURF 0x30 +mat 0 +refs 3 +150 0.457413 0.785457 +153 0.532131 0.756221 +154 0.532131 0.785457 +SURF 0x30 +mat 0 +refs 3 +153 0.532131 0.756221 +150 0.457413 0.785457 +149 0.457413 0.754549 +kids 0 +OBJECT poly +name "LHStab" +loc 0.639177 0.0381001 0 +texture "wing.jpg" +crease 45.000000 +numvert 157 +0.012291 0.00384676 0.295653 +-0.00489527 0.00423038 0.282264 +0.0229149 0.00502431 0.295653 +0.0079118 0.00552702 0.282264 +0.0354574 0.00544095 0.295653 +0.0250849 0.00598347 0.282264 +0.0479932 0.00502431 0.295653 +0.0410141 0.00552702 0.282264 +0.065722 0.00208044 0.295653 +0.0586174 0.00384676 0.295653 +0.0538212 0.00423038 0.282264 +0.0623812 0.00229216 0.282264 +-0.0619844 0.00309932 0.122785 +-0.0474443 0.0057255 0.122785 +-0.0256737 0.00747848 0.122785 +-0.0564013 0.00291407 0.178008 +-0.0426416 0.00538802 0.178008 +-0.0220484 0.00704181 0.178008 +0 0.00762403 0.178008 +0.0242843 0.00704181 0.178008 +-0.0272547 0.00253689 0.266136 +-0.0442225 0.002689 0.226412 +-0.0169415 0.00469339 0.266136 +-0.0323484 0.00496471 0.226412 +-0.00151503 0.00612903 0.266136 +-0.0145732 0.00648618 0.226412 +0.0144145 0.00663173 0.266136 +0.00701219 0.00702202 0.226412 +0.0326194 0.00612903 0.266136 +0.0279755 0.00648618 0.226412 +0.0583594 0.00253689 0.266136 +0.0480462 0.00469339 0.266136 +0.0457507 0.00496471 0.226412 +0.0576317 0.002689 0.226412 +-0.0134487 0.00229216 0.282264 +0.0653845 3.21865e-006 0.282264 +0.0623812 -0.0022856 0.282264 +0.0538212 -0.00423038 0.282264 +0.0410141 -0.00552702 0.282264 +0.0250849 -0.0059768 0.282264 +0.0079118 -0.00552702 0.282264 +-0.00489527 -0.00423038 0.282264 +-0.0134487 -0.0022856 0.282264 +-0.0164586 3.21865e-006 0.282264 +0.0531399 0.000671506 0.314163 +0.0544827 0.00124705 0.314163 +0.0564939 0.00162399 0.314163 +0.0588556 0.00176299 0.314163 +0.0612236 0.00162399 0.314163 +0.0632348 0.00124705 0.314163 +0.064571 0.000671506 0.314163 +0.0650473 3.21865e-006 0.314163 +0.064571 -0.000671506 0.314163 +0.0632348 -0.00124037 0.314163 +0.0612236 -0.00162399 0.314163 +0.0588556 -0.00176299 0.314163 +0.0564873 -0.00162399 0.314163 +0.0544827 -0.00124037 0.314163 +0.0526702 3.21865e-006 0.314163 +0.0616075 3.21865e-006 0.315466 +0.0531399 -0.000671506 0.314163 +0.0415633 0.00144541 0.311232 +0.0244499 0.00170338 0.304881 +0.00518644 0.00208044 0.295653 +0.044441 0.00266922 0.311232 +0.0293054 0.00315213 0.304881 +0.0487474 0.00348949 0.311232 +0.036562 0.00411797 0.304881 +0.0538278 0.0037806 0.311232 +0.045129 0.00445533 0.304881 +0.0595369 0.00348949 0.311232 +0.0559514 0.00411797 0.304881 +0.0638433 0.00266922 0.311232 +0.0632083 0.00315213 0.304881 +0.066721 0.00144541 0.311232 +0.0680572 0.00170338 0.304881 +0.0677331 3.21865e-006 0.311232 +0.069764 3.21865e-006 0.304881 +0.068216 3.21865e-006 0.295653 +0.066721 -0.00144541 0.311232 +0.0680572 -0.00170338 0.304881 +0.065722 -0.00208056 0.295653 +0.0638433 -0.00266922 0.311232 +0.0632083 -0.00314558 0.304881 +0.0586174 -0.00384676 0.295653 +0.0595369 -0.00348961 0.311232 +0.0559514 -0.00411797 0.304881 +0.0479932 -0.00502431 0.295653 +0.0538278 -0.00377405 0.311232 +0.045129 -0.00445533 0.304881 +0.0354574 -0.00544107 0.295653 +0.0487474 -0.00348961 0.311232 +0.036562 -0.00411797 0.304881 +0.0229149 -0.00502431 0.295653 +0.044441 -0.00266922 0.311232 +0.0293054 -0.00314558 0.304881 +0.012291 -0.00384676 0.295653 +0.0405511 3.21865e-006 0.311232 +0.0415633 -0.00144541 0.311232 +0.0244499 -0.00170338 0.304881 +0.00518644 -0.00208056 0.295653 +0.00269228 3.21865e-006 0.295653 +0.0227497 3.21865e-006 0.304881 +-0.0647892 0.00335717 -1.98732e-005 +-0.0495875 0.00619507 -1.98739e-005 +-0.026838 0.00809371 -1.98748e-005 +0 0.00876176 -1.9876e-005 +0.0268378 0.00809371 -1.98772e-005 +0.0268378 -0.00809371 -1.98772e-005 +0 -0.00876176 -1.9876e-005 +-0.026838 -0.00809371 -1.98748e-005 +-0.0495875 -0.00619519 -1.98739e-005 +-0.0647892 -0.00335062 -1.98732e-005 +-0.0701278 3.21865e-006 -1.9873e-005 +-0.0628445 0.00329101 0.0628643 +-0.0479336 0.00607598 0.0628643 +-0.0256208 0.00794148 0.0628643 +0.000701249 0.00859642 0.0628643 +0.0270232 0.00794148 0.0628643 +0.0270232 -0.0079416 0.0628643 +0.000701249 -0.00858986 0.0628643 +-0.0256208 -0.0079416 0.0628643 +-0.0479336 -0.0060761 0.0628643 +-0.0628445 -0.00329101 0.0628643 +-0.068077 3.21865e-006 0.0628643 +0 0.00809371 0.122785 +0.0256734 0.00747848 0.122785 +0.0256734 -0.00747859 0.122785 +0 -0.00809371 0.122785 +-0.0256737 -0.00747859 0.122785 +-0.0474443 -0.0057255 0.122785 +-0.0619844 -0.0030992 0.122785 +-0.0670913 3.21865e-006 0.122785 +0.0242843 -0.00704193 0.178008 +0 -0.00761735 0.178008 +-0.0220484 -0.00704193 0.178008 +-0.0426416 -0.00538814 0.178008 +-0.0564013 -0.00291407 0.178008 +-0.0612304 3.21865e-006 0.178008 +0.0619778 3.21865e-006 0.266136 +0.0617992 3.21865e-006 0.226412 +0.0583594 -0.00253689 0.266136 +0.0576317 -0.00268245 0.226412 +0.0480462 -0.00468695 0.266136 +0.0457507 -0.00496471 0.226412 +0.0326194 -0.00612903 0.266136 +0.0279755 -0.00648618 0.226412 +0.0144145 -0.00663173 0.266136 +0.00701219 -0.00701547 0.226412 +-0.00151503 -0.00612903 0.266136 +-0.0145732 -0.00648618 0.226412 +-0.0169415 -0.00468695 0.266136 +-0.0323484 -0.00496471 0.226412 +-0.0308731 3.21865e-006 0.266136 +-0.0272547 -0.00253689 0.266136 +-0.0442225 -0.00268245 0.226412 +-0.0483968 3.21865e-006 0.226412 +numsurf 288 +SURF 0x30 +mat 0 +refs 3 +17 0.291159 0.832362 +23 0.218752 0.847838 +25 0.218752 0.82113 +SURF 0x30 +mat 0 +refs 3 +23 0.218752 0.847838 +17 0.291159 0.832362 +16 0.291159 0.863304 +SURF 0x30 +mat 0 +refs 3 +18 0.291159 0.799233 +25 0.218752 0.82113 +27 0.218752 0.788697 +SURF 0x30 +mat 0 +refs 3 +25 0.218752 0.82113 +18 0.291159 0.799233 +17 0.291159 0.832362 +SURF 0x30 +mat 0 +refs 3 +19 0.291159 0.762745 +27 0.218752 0.788697 +29 0.218752 0.757199 +SURF 0x30 +mat 0 +refs 3 +27 0.218752 0.788697 +19 0.291159 0.762745 +18 0.291159 0.799233 +SURF 0x30 +mat 0 +refs 3 +23 0.218752 0.847838 +20 0.159328 0.840184 +22 0.159328 0.824688 +SURF 0x30 +mat 0 +refs 3 +20 0.159328 0.840184 +23 0.218752 0.847838 +21 0.218752 0.865679 +SURF 0x30 +mat 0 +refs 3 +25 0.218752 0.82113 +22 0.159328 0.824688 +24 0.159328 0.801509 +SURF 0x30 +mat 0 +refs 3 +22 0.159328 0.824688 +25 0.218752 0.82113 +23 0.218752 0.847838 +SURF 0x30 +mat 0 +refs 3 +27 0.218752 0.788697 +24 0.159328 0.801509 +26 0.159328 0.777575 +SURF 0x30 +mat 0 +refs 3 +24 0.159328 0.801509 +27 0.218752 0.788697 +25 0.218752 0.82113 +SURF 0x30 +mat 0 +refs 3 +29 0.218752 0.757199 +26 0.159328 0.777575 +28 0.159328 0.750221 +SURF 0x30 +mat 0 +refs 3 +26 0.159328 0.777575 +29 0.218752 0.757199 +27 0.218752 0.788697 +SURF 0x30 +mat 0 +refs 3 +30 0.159328 0.711545 +10 0.135202 0.718364 +11 0.135202 0.705503 +SURF 0x30 +mat 0 +refs 3 +10 0.135202 0.718364 +30 0.159328 0.711545 +31 0.159328 0.727041 +SURF 0x30 +mat 0 +refs 3 +11 0.135202 0.705503 +9 0.115173 0.711158 +8 0.115173 0.700483 +SURF 0x30 +mat 0 +refs 3 +9 0.115173 0.711158 +11 0.135202 0.705503 +10 0.135202 0.718364 +SURF 0x30 +mat 0 +refs 3 +31 0.159328 0.727041 +7 0.135202 0.737607 +10 0.135202 0.718364 +SURF 0x30 +mat 0 +refs 3 +7 0.135202 0.737607 +31 0.159328 0.727041 +28 0.159328 0.750221 +SURF 0x30 +mat 0 +refs 3 +10 0.135202 0.718364 +6 0.115173 0.727121 +9 0.115173 0.711158 +SURF 0x30 +mat 0 +refs 3 +6 0.115173 0.727121 +10 0.135202 0.718364 +7 0.135202 0.737607 +SURF 0x30 +mat 0 +refs 3 +28 0.159328 0.750221 +5 0.135202 0.761542 +7 0.135202 0.737607 +SURF 0x30 +mat 0 +refs 3 +5 0.135202 0.761542 +28 0.159328 0.750221 +26 0.159328 0.777575 +SURF 0x30 +mat 0 +refs 3 +32 0.218752 0.73049 +28 0.159328 0.750221 +31 0.159328 0.727041 +SURF 0x30 +mat 0 +refs 3 +28 0.159328 0.750221 +32 0.218752 0.73049 +29 0.218752 0.757199 +SURF 0x30 +mat 0 +refs 3 +33 0.218752 0.712639 +31 0.159328 0.727041 +30 0.159328 0.711545 +SURF 0x30 +mat 0 +refs 3 +31 0.159328 0.727041 +33 0.218752 0.712639 +32 0.218752 0.73049 +SURF 0x30 +mat 0 +refs 3 +7 0.135202 0.737607 +4 0.115173 0.745957 +6 0.115173 0.727121 +SURF 0x30 +mat 0 +refs 3 +4 0.115173 0.745957 +7 0.135202 0.737607 +5 0.135202 0.761542 +SURF 0x30 +mat 0 +refs 3 +26 0.159328 0.777575 +3 0.135202 0.787345 +5 0.135202 0.761542 +SURF 0x30 +mat 0 +refs 3 +3 0.135202 0.787345 +26 0.159328 0.777575 +24 0.159328 0.801509 +SURF 0x30 +mat 0 +refs 3 +5 0.135202 0.761542 +2 0.115173 0.764802 +4 0.115173 0.745957 +SURF 0x30 +mat 0 +refs 3 +2 0.115173 0.764802 +5 0.135202 0.761542 +3 0.135202 0.787345 +SURF 0x30 +mat 0 +refs 3 +24 0.159328 0.801509 +1 0.135202 0.806588 +3 0.135202 0.787345 +SURF 0x30 +mat 0 +refs 3 +1 0.135202 0.806588 +24 0.159328 0.801509 +22 0.159328 0.824688 +SURF 0x30 +mat 0 +refs 3 +3 0.135202 0.787345 +0 0.115173 0.780765 +2 0.115173 0.764802 +SURF 0x30 +mat 0 +refs 3 +0 0.115173 0.780765 +3 0.135202 0.787345 +1 0.135202 0.806588 +SURF 0x30 +mat 0 +refs 3 +13 0.373769 0.87052 +15 0.291159 0.883978 +16 0.291159 0.863304 +SURF 0x30 +mat 0 +refs 3 +15 0.291159 0.883978 +13 0.373769 0.87052 +12 0.373769 0.892367 +SURF 0x30 +mat 0 +refs 3 +14 0.373769 0.837809 +16 0.291159 0.863304 +17 0.291159 0.832362 +SURF 0x30 +mat 0 +refs 3 +16 0.291159 0.863304 +14 0.373769 0.837809 +13 0.373769 0.87052 +SURF 0x30 +mat 0 +refs 3 +16 0.291159 0.863304 +21 0.218752 0.865679 +23 0.218752 0.847838 +SURF 0x30 +mat 0 +refs 3 +21 0.218752 0.865679 +16 0.291159 0.863304 +15 0.291159 0.883978 +SURF 0x30 +mat 0 +refs 3 +60 0.0874849 0.719388 +59 0.0855355 0.706665 +58 0.0874849 0.720094 +SURF 0x30 +mat 0 +refs 3 +57 0.0874849 0.71737 +59 0.0855355 0.706665 +60 0.0874849 0.719388 +SURF 0x30 +mat 0 +refs 3 +56 0.0874849 0.714358 +59 0.0855355 0.706665 +57 0.0874849 0.71737 +SURF 0x30 +mat 0 +refs 3 +55 0.0874849 0.7108 +59 0.0855355 0.706665 +56 0.0874849 0.714358 +SURF 0x30 +mat 0 +refs 3 +54 0.0874849 0.707242 +59 0.0855355 0.706665 +55 0.0874849 0.7108 +SURF 0x30 +mat 0 +refs 3 +53 0.0874849 0.70422 +59 0.0855355 0.706665 +54 0.0874849 0.707242 +SURF 0x30 +mat 0 +refs 3 +52 0.0874849 0.702212 +59 0.0855355 0.706665 +53 0.0874849 0.70422 +SURF 0x30 +mat 0 +refs 3 +51 0.0874849 0.701496 +59 0.0855355 0.706665 +52 0.0874849 0.702212 +SURF 0x30 +mat 0 +refs 3 +50 0.0874849 0.702212 +59 0.0855355 0.706665 +51 0.0874849 0.701496 +SURF 0x30 +mat 0 +refs 3 +49 0.0874849 0.70422 +59 0.0855355 0.706665 +50 0.0874849 0.702212 +SURF 0x30 +mat 0 +refs 3 +48 0.0874849 0.707242 +59 0.0855355 0.706665 +49 0.0874849 0.70422 +SURF 0x30 +mat 0 +refs 3 +47 0.0874849 0.7108 +59 0.0855355 0.706665 +48 0.0874849 0.707242 +SURF 0x30 +mat 0 +refs 3 +46 0.0874849 0.714348 +59 0.0855355 0.706665 +47 0.0874849 0.7108 +SURF 0x30 +mat 0 +refs 3 +45 0.0874849 0.71737 +59 0.0855355 0.706665 +46 0.0874849 0.714348 +SURF 0x30 +mat 0 +refs 3 +44 0.0874849 0.719388 +59 0.0855355 0.706665 +45 0.0874849 0.71737 +SURF 0x30 +mat 0 +refs 3 +58 0.0874849 0.720094 +59 0.0855355 0.706665 +44 0.0874849 0.719388 +SURF 0x30 +mat 0 +refs 3 +89 0.101369 0.731425 +85 0.0918688 0.709776 +88 0.0918688 0.718354 +SURF 0x30 +mat 0 +refs 3 +85 0.0918688 0.709776 +89 0.101369 0.731425 +86 0.101369 0.715164 +SURF 0x30 +mat 0 +refs 3 +90 0.115173 0.745957 +86 0.101369 0.715164 +89 0.101369 0.731425 +SURF 0x30 +mat 0 +refs 3 +86 0.101369 0.715164 +90 0.115173 0.745957 +87 0.115173 0.727121 +SURF 0x30 +mat 0 +refs 3 +92 0.101369 0.744297 +88 0.0918688 0.718354 +91 0.0918688 0.725988 +SURF 0x30 +mat 0 +refs 3 +88 0.0918688 0.718354 +92 0.101369 0.744297 +89 0.101369 0.731425 +SURF 0x30 +mat 0 +refs 3 +93 0.115173 0.764802 +89 0.101369 0.731425 +92 0.101369 0.744297 +SURF 0x30 +mat 0 +refs 3 +89 0.101369 0.731425 +93 0.115173 0.764802 +90 0.115173 0.745957 +SURF 0x30 +mat 0 +refs 3 +95 0.101369 0.7552 +91 0.0918688 0.725988 +94 0.0918688 0.732458 +SURF 0x30 +mat 0 +refs 3 +91 0.0918688 0.725988 +95 0.101369 0.7552 +92 0.101369 0.744297 +SURF 0x30 +mat 0 +refs 3 +96 0.115173 0.780765 +92 0.101369 0.744297 +95 0.101369 0.7552 +SURF 0x30 +mat 0 +refs 3 +92 0.101369 0.744297 +96 0.115173 0.780765 +93 0.115173 0.764802 +SURF 0x30 +mat 0 +refs 3 +99 0.101369 0.762496 +94 0.0918688 0.732458 +98 0.0918688 0.736782 +SURF 0x30 +mat 0 +refs 3 +94 0.0918688 0.732458 +99 0.101369 0.762496 +95 0.101369 0.7552 +SURF 0x30 +mat 0 +refs 3 +100 0.115173 0.79144 +95 0.101369 0.7552 +99 0.101369 0.762496 +SURF 0x30 +mat 0 +refs 3 +95 0.101369 0.7552 +100 0.115173 0.79144 +96 0.115173 0.780765 +SURF 0x30 +mat 0 +refs 3 +97 0.0918688 0.738303 +99 0.101369 0.762496 +98 0.0918688 0.736782 +SURF 0x30 +mat 0 +refs 3 +99 0.101369 0.762496 +97 0.0918688 0.738303 +102 0.101369 0.765051 +SURF 0x30 +mat 0 +refs 3 +102 0.101369 0.765051 +100 0.115173 0.79144 +99 0.101369 0.762496 +SURF 0x30 +mat 0 +refs 3 +100 0.115173 0.79144 +102 0.101369 0.765051 +101 0.115173 0.795188 +SURF 0x30 +mat 0 +refs 3 +114 0.772836 0.819455 +113 0.866906 0.830399 +124 0.772836 0.827318 +SURF 0x30 +mat 0 +refs 3 +113 0.866906 0.830399 +114 0.772836 0.819455 +103 0.866906 0.822377 +SURF 0x30 +mat 0 +refs 3 +115 0.772836 0.797051 +103 0.866906 0.822377 +114 0.772836 0.819455 +SURF 0x30 +mat 0 +refs 3 +103 0.866906 0.822377 +115 0.772836 0.797051 +104 0.866906 0.799536 +SURF 0x30 +mat 0 +refs 3 +116 0.772836 0.763525 +104 0.866906 0.799536 +115 0.772836 0.797051 +SURF 0x30 +mat 0 +refs 3 +104 0.866906 0.799536 +116 0.772836 0.763525 +105 0.866906 0.765354 +SURF 0x30 +mat 0 +refs 3 +117 0.772836 0.723975 +105 0.866906 0.765354 +116 0.772836 0.763525 +SURF 0x30 +mat 0 +refs 3 +105 0.866906 0.765354 +117 0.772836 0.723975 +106 0.866906 0.725029 +SURF 0x30 +mat 0 +refs 3 +118 0.772836 0.684425 +106 0.866906 0.725029 +117 0.772836 0.723975 +SURF 0x30 +mat 0 +refs 3 +106 0.866906 0.725029 +118 0.772836 0.684425 +107 0.866906 0.684704 +SURF 0x30 +mat 0 +refs 3 +109 0.866906 0.725029 +119 0.772836 0.684425 +120 0.772836 0.723975 +SURF 0x30 +mat 0 +refs 3 +119 0.772836 0.684425 +109 0.866906 0.725029 +108 0.866906 0.684704 +SURF 0x30 +mat 0 +refs 3 +110 0.866906 0.765354 +120 0.772836 0.723975 +121 0.772836 0.763525 +SURF 0x30 +mat 0 +refs 3 +120 0.772836 0.723975 +110 0.866906 0.765354 +109 0.866906 0.725029 +SURF 0x30 +mat 0 +refs 3 +111 0.866906 0.799536 +121 0.772836 0.763525 +122 0.772836 0.797051 +SURF 0x30 +mat 0 +refs 3 +121 0.772836 0.763525 +111 0.866906 0.799536 +110 0.866906 0.765354 +SURF 0x30 +mat 0 +refs 3 +112 0.866906 0.822377 +122 0.772836 0.797051 +123 0.772836 0.819455 +SURF 0x30 +mat 0 +refs 3 +122 0.772836 0.797051 +112 0.866906 0.822377 +111 0.866906 0.799536 +SURF 0x30 +mat 0 +refs 3 +113 0.866906 0.830399 +123 0.772836 0.819455 +124 0.772836 0.827318 +SURF 0x30 +mat 0 +refs 3 +123 0.772836 0.819455 +113 0.866906 0.830399 +112 0.866906 0.822377 +SURF 0x30 +mat 0 +refs 3 +114 0.772836 0.819455 +132 0.683201 0.825836 +12 0.683201 0.818163 +SURF 0x30 +mat 0 +refs 3 +132 0.683201 0.825836 +114 0.772836 0.819455 +124 0.772836 0.827318 +SURF 0x30 +mat 0 +refs 3 +115 0.772836 0.797051 +12 0.683201 0.818163 +13 0.683201 0.796316 +SURF 0x30 +mat 0 +refs 3 +12 0.683201 0.818163 +115 0.772836 0.797051 +114 0.772836 0.819455 +SURF 0x30 +mat 0 +refs 3 +116 0.772836 0.763525 +13 0.683201 0.796316 +14 0.683201 0.763605 +SURF 0x30 +mat 0 +refs 3 +13 0.683201 0.796316 +116 0.772836 0.763525 +115 0.772836 0.797051 +SURF 0x30 +mat 0 +refs 3 +117 0.772836 0.723975 +14 0.683201 0.763605 +125 0.683201 0.725029 +SURF 0x30 +mat 0 +refs 3 +14 0.683201 0.763605 +117 0.772836 0.723975 +116 0.772836 0.763525 +SURF 0x30 +mat 0 +refs 3 +118 0.772836 0.684425 +125 0.683201 0.725029 +126 0.683201 0.686453 +SURF 0x30 +mat 0 +refs 3 +125 0.683201 0.725029 +118 0.772836 0.684425 +117 0.772836 0.723975 +SURF 0x30 +mat 0 +refs 3 +120 0.772836 0.723975 +127 0.683201 0.686453 +128 0.683201 0.725029 +SURF 0x30 +mat 0 +refs 3 +127 0.683201 0.686453 +120 0.772836 0.723975 +119 0.772836 0.684425 +SURF 0x30 +mat 0 +refs 3 +121 0.772836 0.763525 +128 0.683201 0.725029 +129 0.683201 0.763605 +SURF 0x30 +mat 0 +refs 3 +128 0.683201 0.725029 +121 0.772836 0.763525 +120 0.772836 0.723975 +SURF 0x30 +mat 0 +refs 3 +122 0.772836 0.797051 +129 0.683201 0.763605 +130 0.683201 0.796316 +SURF 0x30 +mat 0 +refs 3 +129 0.683201 0.763605 +122 0.772836 0.797051 +121 0.772836 0.763525 +SURF 0x30 +mat 0 +refs 3 +123 0.772836 0.819455 +130 0.683201 0.796316 +131 0.683201 0.818163 +SURF 0x30 +mat 0 +refs 3 +130 0.683201 0.796316 +123 0.772836 0.819455 +122 0.772836 0.797051 +SURF 0x30 +mat 0 +refs 3 +124 0.772836 0.827318 +131 0.683201 0.818163 +132 0.683201 0.825836 +SURF 0x30 +mat 0 +refs 3 +131 0.683201 0.818163 +124 0.772836 0.827318 +123 0.772836 0.819455 +SURF 0x30 +mat 0 +refs 3 +12 0.373769 0.892367 +138 0.291159 0.891234 +15 0.291159 0.883978 +SURF 0x30 +mat 0 +refs 3 +138 0.291159 0.891234 +12 0.373769 0.892367 +132 0.373769 0.900041 +SURF 0x30 +mat 0 +refs 3 +86 0.101369 0.715164 +82 0.0918688 0.703306 +85 0.0918688 0.709776 +SURF 0x30 +mat 0 +refs 3 +82 0.0918688 0.703306 +86 0.101369 0.715164 +83 0.101369 0.70426 +SURF 0x30 +mat 0 +refs 3 +84 0.115173 0.711158 +80 0.101369 0.696974 +83 0.101369 0.70426 +SURF 0x30 +mat 0 +refs 3 +80 0.101369 0.696974 +84 0.115173 0.711158 +81 0.115173 0.700483 +SURF 0x30 +mat 0 +refs 3 +125 0.373769 0.799233 +17 0.291159 0.832362 +18 0.291159 0.799233 +SURF 0x30 +mat 0 +refs 3 +17 0.291159 0.832362 +125 0.373769 0.799233 +14 0.373769 0.837809 +SURF 0x30 +mat 0 +refs 3 +126 0.373769 0.760657 +18 0.291159 0.799233 +19 0.291159 0.762745 +SURF 0x30 +mat 0 +refs 3 +18 0.291159 0.799233 +126 0.373769 0.760657 +125 0.373769 0.799233 +SURF 0x30 +mat 0 +refs 3 +128 0.376269 0.657566 +133 0.293659 0.621078 +134 0.293659 0.657566 +SURF 0x30 +mat 0 +refs 3 +133 0.291159 0.762745 +128 0.373769 0.799233 +127 0.373769 0.760657 +SURF 0x30 +mat 0 +refs 3 +129 0.376269 0.696142 +134 0.293659 0.657566 +135 0.293659 0.690695 +SURF 0x30 +mat 0 +refs 3 +134 0.293659 0.657566 +129 0.376269 0.696142 +128 0.376269 0.657566 +SURF 0x30 +mat 0 +refs 3 +130 0.376269 0.728854 +135 0.293659 0.690695 +136 0.293659 0.721637 +SURF 0x30 +mat 0 +refs 3 +135 0.293659 0.690695 +130 0.376269 0.728854 +129 0.376269 0.696142 +SURF 0x30 +mat 0 +refs 3 +131 0.373769 0.892367 +136 0.291159 0.863304 +137 0.291159 0.883978 +SURF 0x30 +mat 0 +refs 3 +136 0.291159 0.863304 +131 0.373769 0.892367 +130 0.373769 0.87052 +SURF 0x30 +mat 0 +refs 3 +132 0.373769 0.900041 +137 0.291159 0.883978 +138 0.291159 0.891234 +SURF 0x30 +mat 0 +refs 3 +137 0.291159 0.883978 +132 0.373769 0.900041 +131 0.373769 0.892367 +SURF 0x30 +mat 0 +refs 3 +15 0.291159 0.883978 +156 0.218752 0.871951 +21 0.218752 0.865679 +SURF 0x30 +mat 0 +refs 3 +156 0.218752 0.871951 +15 0.291159 0.883978 +138 0.291159 0.891234 +SURF 0x30 +mat 0 +refs 3 +83 0.101369 0.70426 +79 0.0918688 0.698982 +82 0.0918688 0.703306 +SURF 0x30 +mat 0 +refs 3 +79 0.0918688 0.698982 +83 0.101369 0.70426 +80 0.101369 0.696974 +SURF 0x30 +mat 0 +refs 3 +81 0.115173 0.700483 +77 0.101369 0.694409 +80 0.101369 0.696974 +SURF 0x30 +mat 0 +refs 3 +77 0.101369 0.694409 +81 0.115173 0.700483 +78 0.115173 0.696736 +SURF 0x30 +mat 0 +refs 3 +80 0.101369 0.696974 +76 0.0918688 0.697461 +79 0.0918688 0.698982 +SURF 0x30 +mat 0 +refs 3 +76 0.0918688 0.697461 +80 0.101369 0.696974 +77 0.101369 0.694409 +SURF 0x30 +mat 0 +refs 3 +78 0.115173 0.696736 +75 0.101369 0.696974 +77 0.101369 0.694409 +SURF 0x30 +mat 0 +refs 3 +75 0.101369 0.696974 +78 0.115173 0.696736 +8 0.115173 0.700483 +SURF 0x30 +mat 0 +refs 3 +134 0.293659 0.657566 +146 0.221252 0.615532 +148 0.221252 0.64703 +SURF 0x30 +mat 0 +refs 3 +146 0.218752 0.757199 +134 0.291159 0.799233 +133 0.291159 0.762745 +SURF 0x30 +mat 0 +refs 3 +135 0.293659 0.690695 +148 0.221252 0.64703 +150 0.221252 0.679463 +SURF 0x30 +mat 0 +refs 3 +148 0.221252 0.64703 +135 0.293659 0.690695 +134 0.293659 0.657566 +SURF 0x30 +mat 0 +refs 3 +136 0.293659 0.721637 +150 0.221252 0.679463 +152 0.221252 0.706171 +SURF 0x30 +mat 0 +refs 3 +150 0.221252 0.679463 +136 0.293659 0.721637 +135 0.293659 0.690695 +SURF 0x30 +mat 0 +refs 3 +137 0.291159 0.883978 +152 0.218752 0.847838 +155 0.218752 0.865679 +SURF 0x30 +mat 0 +refs 3 +152 0.218752 0.847838 +137 0.291159 0.883978 +136 0.291159 0.863304 +SURF 0x30 +mat 0 +refs 3 +138 0.291159 0.891234 +155 0.218752 0.865679 +156 0.218752 0.871951 +SURF 0x30 +mat 0 +refs 3 +155 0.218752 0.865679 +138 0.291159 0.891234 +137 0.291159 0.883978 +SURF 0x30 +mat 0 +refs 3 +21 0.218752 0.865679 +153 0.159328 0.845621 +20 0.159328 0.840184 +SURF 0x30 +mat 0 +refs 3 +153 0.159328 0.845621 +21 0.218752 0.865679 +156 0.218752 0.871951 +SURF 0x30 +mat 0 +refs 3 +77 0.101369 0.694409 +74 0.0918688 0.698982 +76 0.0918688 0.697461 +SURF 0x30 +mat 0 +refs 3 +74 0.0918688 0.698982 +77 0.101369 0.694409 +75 0.101369 0.696974 +SURF 0x30 +mat 0 +refs 3 +8 0.115173 0.700483 +73 0.101369 0.70426 +75 0.101369 0.696974 +SURF 0x30 +mat 0 +refs 3 +73 0.101369 0.70426 +8 0.115173 0.700483 +9 0.115173 0.711158 +SURF 0x30 +mat 0 +refs 3 +75 0.101369 0.696974 +72 0.0918688 0.703306 +74 0.0918688 0.698982 +SURF 0x30 +mat 0 +refs 3 +72 0.0918688 0.703306 +75 0.101369 0.696974 +73 0.101369 0.70426 +SURF 0x30 +mat 0 +refs 3 +9 0.115173 0.711158 +71 0.101369 0.715164 +73 0.101369 0.70426 +SURF 0x30 +mat 0 +refs 3 +71 0.101369 0.715164 +9 0.115173 0.711158 +6 0.115173 0.727121 +SURF 0x30 +mat 0 +refs 3 +73 0.101369 0.70426 +70 0.0918688 0.709776 +72 0.0918688 0.703306 +SURF 0x30 +mat 0 +refs 3 +70 0.0918688 0.709776 +73 0.101369 0.70426 +71 0.101369 0.715164 +SURF 0x30 +mat 0 +refs 3 +6 0.115173 0.727121 +69 0.101369 0.731425 +71 0.101369 0.715164 +SURF 0x30 +mat 0 +refs 3 +69 0.101369 0.731425 +6 0.115173 0.727121 +4 0.115173 0.745957 +SURF 0x30 +mat 0 +refs 3 +140 0.218752 0.706377 +30 0.159328 0.711545 +139 0.159328 0.706109 +SURF 0x30 +mat 0 +refs 3 +30 0.159328 0.711545 +140 0.218752 0.706377 +33 0.218752 0.712639 +SURF 0x30 +mat 0 +refs 3 +142 0.218752 0.712639 +139 0.159328 0.706109 +141 0.159328 0.711545 +SURF 0x30 +mat 0 +refs 3 +139 0.159328 0.706109 +142 0.218752 0.712639 +140 0.218752 0.706377 +SURF 0x30 +mat 0 +refs 3 +144 0.218752 0.73049 +141 0.159328 0.711545 +143 0.159328 0.727041 +SURF 0x30 +mat 0 +refs 3 +141 0.159328 0.711545 +144 0.218752 0.73049 +142 0.218752 0.712639 +SURF 0x30 +mat 0 +refs 3 +146 0.221252 0.615532 +143 0.161828 0.585375 +145 0.161828 0.608554 +SURF 0x30 +mat 0 +refs 3 +143 0.159328 0.727041 +146 0.218752 0.757199 +144 0.218752 0.73049 +SURF 0x30 +mat 0 +refs 3 +148 0.221252 0.64703 +145 0.161828 0.608554 +147 0.161828 0.635908 +SURF 0x30 +mat 0 +refs 3 +145 0.161828 0.608554 +148 0.221252 0.64703 +146 0.221252 0.615532 +SURF 0x30 +mat 0 +refs 3 +150 0.221252 0.679463 +147 0.161828 0.635908 +149 0.161828 0.659843 +SURF 0x30 +mat 0 +refs 3 +147 0.161828 0.635908 +150 0.221252 0.679463 +148 0.221252 0.64703 +SURF 0x30 +mat 0 +refs 3 +152 0.221252 0.706171 +149 0.161828 0.659843 +151 0.161828 0.683022 +SURF 0x30 +mat 0 +refs 3 +149 0.161828 0.659843 +152 0.221252 0.706171 +150 0.221252 0.679463 +SURF 0x30 +mat 0 +refs 3 +155 0.218752 0.865679 +151 0.159328 0.824688 +154 0.159328 0.840184 +SURF 0x30 +mat 0 +refs 3 +151 0.159328 0.824688 +155 0.218752 0.865679 +152 0.218752 0.847838 +SURF 0x30 +mat 0 +refs 3 +156 0.218752 0.871951 +154 0.159328 0.840184 +153 0.159328 0.845621 +SURF 0x30 +mat 0 +refs 3 +154 0.159328 0.840184 +156 0.218752 0.871951 +155 0.218752 0.865679 +SURF 0x30 +mat 0 +refs 3 +71 0.101369 0.715164 +68 0.0918688 0.718354 +70 0.0918688 0.709776 +SURF 0x30 +mat 0 +refs 3 +68 0.0918688 0.718354 +71 0.101369 0.715164 +69 0.101369 0.731425 +SURF 0x30 +mat 0 +refs 3 +4 0.115173 0.745957 +67 0.101369 0.744297 +69 0.101369 0.731425 +SURF 0x30 +mat 0 +refs 3 +67 0.101369 0.744297 +4 0.115173 0.745957 +2 0.115173 0.764802 +SURF 0x30 +mat 0 +refs 3 +69 0.101369 0.731425 +66 0.0918688 0.725988 +68 0.0918688 0.718354 +SURF 0x30 +mat 0 +refs 3 +66 0.0918688 0.725988 +69 0.101369 0.731425 +67 0.101369 0.744297 +SURF 0x30 +mat 0 +refs 3 +2 0.115173 0.764802 +65 0.101369 0.7552 +67 0.101369 0.744297 +SURF 0x30 +mat 0 +refs 3 +65 0.101369 0.7552 +2 0.115173 0.764802 +0 0.115173 0.780765 +SURF 0x30 +mat 0 +refs 3 +67 0.101369 0.744297 +64 0.0918688 0.732458 +66 0.0918688 0.725988 +SURF 0x30 +mat 0 +refs 3 +64 0.0918688 0.732458 +67 0.101369 0.744297 +65 0.101369 0.7552 +SURF 0x30 +mat 0 +refs 3 +0 0.115173 0.780765 +62 0.101369 0.762496 +65 0.101369 0.7552 +SURF 0x30 +mat 0 +refs 3 +62 0.101369 0.762496 +0 0.115173 0.780765 +63 0.115173 0.79144 +SURF 0x30 +mat 0 +refs 3 +65 0.101369 0.7552 +61 0.0918688 0.736782 +64 0.0918688 0.732458 +SURF 0x30 +mat 0 +refs 3 +61 0.0918688 0.736782 +65 0.101369 0.7552 +62 0.101369 0.762496 +SURF 0x30 +mat 0 +refs 3 +63 0.115173 0.79144 +102 0.101369 0.765051 +62 0.101369 0.762496 +SURF 0x30 +mat 0 +refs 3 +102 0.101369 0.765051 +63 0.115173 0.79144 +101 0.115173 0.795188 +SURF 0x30 +mat 0 +refs 3 +62 0.101369 0.762496 +97 0.0918688 0.738303 +61 0.0918688 0.736782 +SURF 0x30 +mat 0 +refs 3 +97 0.0918688 0.738303 +62 0.101369 0.762496 +102 0.101369 0.765051 +SURF 0x30 +mat 0 +refs 3 +58 0.0874849 0.720094 +98 0.0918688 0.736782 +60 0.0874849 0.719388 +SURF 0x30 +mat 0 +refs 3 +98 0.0918688 0.736782 +58 0.0874849 0.720094 +97 0.0918688 0.738303 +SURF 0x30 +mat 0 +refs 3 +60 0.0874849 0.719388 +94 0.0918688 0.732458 +57 0.0874849 0.71737 +SURF 0x30 +mat 0 +refs 3 +94 0.0918688 0.732458 +60 0.0874849 0.719388 +98 0.0918688 0.736782 +SURF 0x30 +mat 0 +refs 3 +57 0.0874849 0.71737 +91 0.0918688 0.725988 +56 0.0874849 0.714358 +SURF 0x30 +mat 0 +refs 3 +91 0.0918688 0.725988 +57 0.0874849 0.71737 +94 0.0918688 0.732458 +SURF 0x30 +mat 0 +refs 3 +91 0.0918688 0.725988 +55 0.0874849 0.7108 +56 0.0874849 0.714358 +SURF 0x30 +mat 0 +refs 3 +55 0.0874849 0.7108 +91 0.0918688 0.725988 +88 0.0918688 0.718354 +SURF 0x30 +mat 0 +refs 3 +88 0.0918688 0.718354 +54 0.0874849 0.707242 +55 0.0874849 0.7108 +SURF 0x30 +mat 0 +refs 3 +54 0.0874849 0.707242 +88 0.0918688 0.718354 +85 0.0918688 0.709776 +SURF 0x30 +mat 0 +refs 3 +85 0.0918688 0.709776 +53 0.0874849 0.70422 +54 0.0874849 0.707242 +SURF 0x30 +mat 0 +refs 3 +53 0.0874849 0.70422 +85 0.0918688 0.709776 +82 0.0918688 0.703306 +SURF 0x30 +mat 0 +refs 3 +82 0.0918688 0.703306 +52 0.0874849 0.702212 +53 0.0874849 0.70422 +SURF 0x30 +mat 0 +refs 3 +52 0.0874849 0.702212 +82 0.0918688 0.703306 +79 0.0918688 0.698982 +SURF 0x30 +mat 0 +refs 3 +52 0.0874849 0.702212 +76 0.0918688 0.697461 +51 0.0874849 0.701496 +SURF 0x30 +mat 0 +refs 3 +76 0.0918688 0.697461 +52 0.0874849 0.702212 +79 0.0918688 0.698982 +SURF 0x30 +mat 0 +refs 3 +51 0.0874849 0.701496 +74 0.0918688 0.698982 +50 0.0874849 0.702212 +SURF 0x30 +mat 0 +refs 3 +74 0.0918688 0.698982 +51 0.0874849 0.701496 +76 0.0918688 0.697461 +SURF 0x30 +mat 0 +refs 3 +74 0.0918688 0.698982 +49 0.0874849 0.70422 +50 0.0874849 0.702212 +SURF 0x30 +mat 0 +refs 3 +49 0.0874849 0.70422 +74 0.0918688 0.698982 +72 0.0918688 0.703306 +SURF 0x30 +mat 0 +refs 3 +72 0.0918688 0.703306 +48 0.0874849 0.707242 +49 0.0874849 0.70422 +SURF 0x30 +mat 0 +refs 3 +48 0.0874849 0.707242 +72 0.0918688 0.703306 +70 0.0918688 0.709776 +SURF 0x30 +mat 0 +refs 3 +70 0.0918688 0.709776 +47 0.0874849 0.7108 +48 0.0874849 0.707242 +SURF 0x30 +mat 0 +refs 3 +47 0.0874849 0.7108 +70 0.0918688 0.709776 +68 0.0918688 0.718354 +SURF 0x30 +mat 0 +refs 3 +68 0.0918688 0.718354 +46 0.0874849 0.714348 +47 0.0874849 0.7108 +SURF 0x30 +mat 0 +refs 3 +46 0.0874849 0.714348 +68 0.0918688 0.718354 +66 0.0918688 0.725988 +SURF 0x30 +mat 0 +refs 3 +66 0.0918688 0.725988 +45 0.0874849 0.71737 +46 0.0874849 0.714348 +SURF 0x30 +mat 0 +refs 3 +45 0.0874849 0.71737 +66 0.0918688 0.725988 +64 0.0918688 0.732458 +SURF 0x30 +mat 0 +refs 3 +64 0.0918688 0.732458 +44 0.0874849 0.719388 +45 0.0874849 0.71737 +SURF 0x30 +mat 0 +refs 3 +44 0.0874849 0.719388 +64 0.0918688 0.732458 +61 0.0918688 0.736782 +SURF 0x30 +mat 0 +refs 3 +61 0.0918688 0.736782 +58 0.0874849 0.720094 +44 0.0874849 0.719388 +SURF 0x30 +mat 0 +refs 3 +58 0.0874849 0.720094 +61 0.0918688 0.736782 +97 0.0918688 0.738303 +SURF 0x30 +mat 0 +refs 3 +153 0.159328 0.845621 +42 0.135202 0.81944 +43 0.135202 0.823963 +SURF 0x30 +mat 0 +refs 3 +42 0.135202 0.81944 +153 0.159328 0.845621 +154 0.159328 0.840184 +SURF 0x30 +mat 0 +refs 3 +101 0.115173 0.795188 +42 0.135202 0.81944 +100 0.115173 0.79144 +SURF 0x30 +mat 0 +refs 3 +42 0.135202 0.81944 +101 0.115173 0.795188 +43 0.135202 0.823963 +SURF 0x30 +mat 0 +refs 3 +154 0.159328 0.840184 +41 0.135202 0.806588 +42 0.135202 0.81944 +SURF 0x30 +mat 0 +refs 3 +41 0.135202 0.806588 +154 0.159328 0.840184 +151 0.159328 0.824688 +SURF 0x30 +mat 0 +refs 3 +42 0.135202 0.81944 +96 0.115173 0.780765 +100 0.115173 0.79144 +SURF 0x30 +mat 0 +refs 3 +96 0.115173 0.780765 +42 0.135202 0.81944 +41 0.135202 0.806588 +SURF 0x30 +mat 0 +refs 3 +151 0.161828 0.683022 +40 0.137702 0.645679 +41 0.137702 0.664922 +SURF 0x30 +mat 0 +refs 3 +40 0.137702 0.645679 +151 0.161828 0.683022 +149 0.161828 0.659843 +SURF 0x30 +mat 0 +refs 3 +41 0.135202 0.806588 +93 0.115173 0.764802 +96 0.115173 0.780765 +SURF 0x30 +mat 0 +refs 3 +93 0.117673 0.623136 +41 0.137702 0.664922 +40 0.137702 0.645679 +SURF 0x30 +mat 0 +refs 3 +149 0.161828 0.659843 +39 0.137702 0.619875 +40 0.137702 0.645679 +SURF 0x30 +mat 0 +refs 3 +39 0.137702 0.619875 +149 0.161828 0.659843 +147 0.161828 0.635908 +SURF 0x30 +mat 0 +refs 3 +40 0.137702 0.645679 +90 0.117673 0.60429 +93 0.117673 0.623136 +SURF 0x30 +mat 0 +refs 3 +90 0.117673 0.60429 +40 0.137702 0.645679 +39 0.137702 0.619875 +SURF 0x30 +mat 0 +refs 3 +147 0.161828 0.635908 +38 0.137702 0.595941 +39 0.137702 0.619875 +SURF 0x30 +mat 0 +refs 3 +38 0.137702 0.595941 +147 0.161828 0.635908 +145 0.161828 0.608554 +SURF 0x30 +mat 0 +refs 3 +39 0.137702 0.619875 +87 0.117673 0.585454 +90 0.117673 0.60429 +SURF 0x30 +mat 0 +refs 3 +87 0.117673 0.585454 +39 0.137702 0.619875 +38 0.137702 0.595941 +SURF 0x30 +mat 0 +refs 3 +145 0.161828 0.608554 +37 0.137702 0.576698 +38 0.137702 0.595941 +SURF 0x30 +mat 0 +refs 3 +37 0.137702 0.576698 +145 0.161828 0.608554 +143 0.161828 0.585375 +SURF 0x30 +mat 0 +refs 3 +38 0.137702 0.595941 +84 0.117673 0.569491 +87 0.117673 0.585454 +SURF 0x30 +mat 0 +refs 3 +84 0.117673 0.569491 +38 0.137702 0.595941 +37 0.137702 0.576698 +SURF 0x30 +mat 0 +refs 3 +143 0.159328 0.727041 +36 0.135202 0.705503 +37 0.135202 0.718364 +SURF 0x30 +mat 0 +refs 3 +36 0.135202 0.705503 +143 0.159328 0.727041 +141 0.159328 0.711545 +SURF 0x30 +mat 0 +refs 3 +37 0.135202 0.718364 +81 0.115173 0.700483 +84 0.115173 0.711158 +SURF 0x30 +mat 0 +refs 3 +81 0.115173 0.700483 +37 0.135202 0.718364 +36 0.135202 0.705503 +SURF 0x30 +mat 0 +refs 3 +141 0.159328 0.711545 +35 0.135202 0.70099 +36 0.135202 0.705503 +SURF 0x30 +mat 0 +refs 3 +35 0.135202 0.70099 +141 0.159328 0.711545 +139 0.159328 0.706109 +SURF 0x30 +mat 0 +refs 3 +36 0.135202 0.705503 +78 0.115173 0.696736 +81 0.115173 0.700483 +SURF 0x30 +mat 0 +refs 3 +78 0.115173 0.696736 +36 0.135202 0.705503 +35 0.135202 0.70099 +SURF 0x30 +mat 0 +refs 3 +139 0.159328 0.706109 +11 0.135202 0.705503 +35 0.135202 0.70099 +SURF 0x30 +mat 0 +refs 3 +11 0.135202 0.705503 +139 0.159328 0.706109 +30 0.159328 0.711545 +SURF 0x30 +mat 0 +refs 3 +35 0.135202 0.70099 +8 0.115173 0.700483 +78 0.115173 0.696736 +SURF 0x30 +mat 0 +refs 3 +8 0.115173 0.700483 +35 0.135202 0.70099 +11 0.135202 0.705503 +SURF 0x30 +mat 0 +refs 3 +22 0.159328 0.824688 +34 0.135202 0.81944 +1 0.135202 0.806588 +SURF 0x30 +mat 0 +refs 3 +34 0.135202 0.81944 +22 0.159328 0.824688 +20 0.159328 0.840184 +SURF 0x30 +mat 0 +refs 3 +1 0.135202 0.806588 +63 0.115173 0.79144 +0 0.115173 0.780765 +SURF 0x30 +mat 0 +refs 3 +63 0.115173 0.79144 +1 0.135202 0.806588 +34 0.135202 0.81944 +SURF 0x30 +mat 0 +refs 3 +20 0.159328 0.840184 +43 0.135202 0.823963 +34 0.135202 0.81944 +SURF 0x30 +mat 0 +refs 3 +43 0.135202 0.823963 +20 0.159328 0.840184 +153 0.159328 0.845621 +SURF 0x30 +mat 0 +refs 3 +34 0.135202 0.81944 +101 0.115173 0.795188 +63 0.115173 0.79144 +SURF 0x30 +mat 0 +refs 3 +101 0.115173 0.795188 +34 0.135202 0.81944 +43 0.135202 0.823963 +SURF 0x30 +mat 0 +refs 3 +87 0.115173 0.727121 +83 0.101369 0.70426 +86 0.101369 0.715164 +SURF 0x30 +mat 0 +refs 3 +83 0.101369 0.70426 +87 0.115173 0.727121 +84 0.115173 0.711158 +kids 0 +OBJECT poly +name "Ruder.Ruder" +loc 0.588035 0.148025 3.63536e-005 +texture "wing.jpg" +crease 45.000000 +numvert 60 +0.0577782 0.0122083 -0.00526911 +0.0577782 -0.0771126 -0.0057383 +0.0577782 -0.0984857 -0.0055575 +0.0577782 -0.0622656 -0.00573533 +0.0577782 -0.0574558 -0.00573048 +0.0577782 -0.101734 -0.00494999 +0.0577782 0.0122083 0.00526911 +0.0577782 -0.0971971 0.00561609 +0.0577782 -0.0771126 0.00574106 +0.0577782 -0.0622656 0.00573533 +0.0577782 -0.0574558 0.00573048 +0.0577782 -0.0984857 0.00556288 +0.0577782 -0.0266891 -0.00567683 +0.0577782 -0.0122945 -0.0055307 +0.0577782 -0.0266891 0.00567683 +0.0577782 -0.0122945 0.0055307 +0.0577782 -0.101734 0.00495242 +0.0577782 0.0466471 0.00462362 +0.0577782 0.0373558 0.00479826 +0.0577782 0.0466471 -0.00462362 +0.0577782 0.0373558 -0.00479826 +0.0577782 -0.0971971 -0.00561046 +0.105592 -0.0622656 -3.31035e-006 +0.0756316 -0.101527 0.00444872 +0.0988179 -0.0975114 0.00241124 +0.106961 -0.0939391 -3.31041e-006 +0.106445 -0.0879724 -3.31041e-006 +0.0988179 -0.0975114 -0.00241124 +0.0756316 -0.101527 -0.00444872 +0.0642337 -0.0266891 0.00556008 +0.0856338 -0.0266891 0.00425688 +0.0999293 -0.0266891 0.0023054 +0.104944 -0.0266891 -3.31035e-006 +0.0999293 -0.0266891 -0.0023054 +0.0856338 -0.0266891 -0.00425688 +0.0642337 -0.0266891 -0.00556008 +0.0990428 0.0122083 0.00210033 +0.103349 0.0122083 -3.31028e-006 +0.0990428 0.0122083 -0.00210033 +0.0982424 0.0466471 0.00180264 +0.101901 0.0466471 -3.31021e-006 +0.0982424 0.0466471 -0.00179603 +0.0867848 0.0122083 0.0038732 +0.0684343 0.0122083 0.00506394 +0.0867848 0.0122083 -0.0038732 +0.0684343 0.0122083 -0.00506394 +0.0878235 0.0466471 0.00332414 +0.0722315 0.0466471 0.00434288 +0.0878235 0.0466471 -0.00332414 +0.0722315 0.0466471 -0.00434288 +0.0999359 -0.0902015 -0.00241124 +0.100055 -0.0622656 -0.00235832 +0.0814133 -0.0937738 -0.00444872 +0.0842975 -0.0622656 -0.00434949 +0.0607144 -0.0622656 -0.00568577 +0.0842975 -0.0622656 0.00435611 +0.0814133 -0.0937738 0.00444872 +0.0999359 -0.0902015 0.00241124 +0.100055 -0.0622656 0.00235832 +0.0607144 -0.0622656 0.00568577 +numsurf 87 +SURF 0x30 +mat 0 +refs 3 +54 0.136913 0.0967237 +21 0.140373 0.0460202 +1 0.140373 0.0751733 +SURF 0x30 +mat 0 +refs 3 +21 0.140373 0.0460202 +54 0.136913 0.0967237 +52 0.112525 0.050989 +SURF 0x30 +mat 0 +refs 3 +52 0.112525 0.050989 +2 0.140373 0.0441495 +21 0.140373 0.0460202 +SURF 0x30 +mat 0 +refs 3 +2 0.140373 0.0441495 +52 0.112525 0.050989 +28 0.119337 0.0397353 +SURF 0x30 +mat 0 +refs 3 +49 0.123343 0.254813 +20 0.140372 0.241326 +19 0.140372 0.254813 +SURF 0x30 +mat 0 +refs 3 +20 0.140372 0.241326 +49 0.123343 0.254813 +45 0.127817 0.204824 +SURF 0x30 +mat 0 +refs 3 +43 0.127817 0.204824 +17 0.140372 0.254813 +18 0.140372 0.241326 +SURF 0x30 +mat 0 +refs 3 +17 0.140372 0.254813 +43 0.127817 0.204824 +47 0.123343 0.254813 +SURF 0x30 +mat 0 +refs 3 +29 0.132766 0.148364 +6 0.140373 0.204824 +15 0.140372 0.169258 +SURF 0x30 +mat 0 +refs 3 +6 0.140373 0.204824 +29 0.132766 0.148364 +43 0.127817 0.204824 +SURF 0x30 +mat 0 +refs 3 +59 0.136913 0.0967237 +14 0.140372 0.148364 +10 0.140373 0.103705 +SURF 0x30 +mat 0 +refs 3 +14 0.140372 0.148364 +59 0.136913 0.0967237 +29 0.132766 0.148364 +SURF 0x30 +mat 0 +refs 3 +45 0.127817 0.204824 +13 0.140372 0.169258 +0 0.140373 0.204824 +SURF 0x30 +mat 0 +refs 3 +13 0.140372 0.169258 +45 0.127817 0.204824 +35 0.132766 0.148364 +SURF 0x30 +mat 0 +refs 3 +35 0.132766 0.148364 +4 0.140373 0.103705 +12 0.140372 0.148364 +SURF 0x30 +mat 0 +refs 3 +4 0.140373 0.103705 +35 0.132766 0.148364 +54 0.136913 0.0967237 +SURF 0x30 +mat 0 +refs 3 +23 0.119337 0.0397353 +7 0.140373 0.0460202 +11 0.140373 0.0441495 +SURF 0x30 +mat 0 +refs 3 +7 0.140373 0.0460202 +23 0.119337 0.0397353 +56 0.112525 0.050989 +SURF 0x30 +mat 0 +refs 3 +56 0.233102 0.050989 +8 0.205254 0.0751733 +7 0.205254 0.0460202 +SURF 0x30 +mat 0 +refs 3 +8 0.205254 0.0751733 +56 0.233102 0.050989 +59 0.208714 0.0967237 +SURF 0x30 +mat 0 +refs 3 +27 0.0920178 0.0455638 +25 0.082423 0.0507489 +24 0.0920178 0.0455638 +SURF 0x30 +mat 0 +refs 3 +38 0.0917528 0.204824 +48 0.104972 0.254813 +41 0.0926961 0.254813 +SURF 0x30 +mat 0 +refs 3 +48 0.104972 0.254813 +38 0.0917528 0.204824 +44 0.106196 0.204824 +SURF 0x30 +mat 0 +refs 3 +38 0.0917528 0.204824 +40 0.088386 0.254813 +37 0.0866789 0.204824 +SURF 0x30 +mat 0 +refs 3 +40 0.088386 0.254813 +38 0.0917528 0.204824 +41 0.0926961 0.254813 +SURF 0x30 +mat 0 +refs 3 +40 0.088386 0.254813 +36 0.0917528 0.204824 +37 0.0866789 0.204824 +SURF 0x30 +mat 0 +refs 3 +36 0.0917528 0.204824 +40 0.088386 0.254813 +39 0.0926961 0.254813 +SURF 0x30 +mat 0 +refs 3 +46 0.104972 0.254813 +36 0.0917528 0.204824 +39 0.0926961 0.254813 +SURF 0x30 +mat 0 +refs 3 +36 0.0917528 0.204824 +46 0.104972 0.254813 +42 0.106196 0.204824 +SURF 0x30 +mat 0 +refs 3 +34 0.107552 0.148364 +45 0.127817 0.204824 +44 0.106196 0.204824 +SURF 0x30 +mat 0 +refs 3 +45 0.127817 0.204824 +34 0.107552 0.148364 +35 0.132766 0.148364 +SURF 0x30 +mat 0 +refs 3 +33 0.0907085 0.148364 +44 0.106196 0.204824 +38 0.0917528 0.204824 +SURF 0x30 +mat 0 +refs 3 +44 0.106196 0.204824 +33 0.0907085 0.148364 +34 0.107552 0.148364 +SURF 0x30 +mat 0 +refs 3 +33 0.0907085 0.148364 +37 0.0866789 0.204824 +32 0.0848006 0.148364 +SURF 0x30 +mat 0 +refs 3 +37 0.0866789 0.204824 +33 0.0907085 0.148364 +38 0.0917528 0.204824 +SURF 0x30 +mat 0 +refs 3 +37 0.0866789 0.204824 +31 0.0907085 0.148364 +32 0.0848006 0.148364 +SURF 0x30 +mat 0 +refs 3 +31 0.0907085 0.148364 +37 0.0866789 0.204824 +36 0.0917528 0.204824 +SURF 0x30 +mat 0 +refs 3 +42 0.106196 0.204824 +31 0.0907085 0.148364 +36 0.0917528 0.204824 +SURF 0x30 +mat 0 +refs 3 +31 0.0907085 0.148364 +42 0.106196 0.204824 +30 0.107552 0.148364 +SURF 0x30 +mat 0 +refs 3 +43 0.127817 0.204824 +30 0.107552 0.148364 +42 0.106196 0.204824 +SURF 0x30 +mat 0 +refs 3 +30 0.107552 0.148364 +43 0.127817 0.204824 +29 0.132766 0.148364 +SURF 0x30 +mat 0 +refs 3 +27 0.0920178 0.0455638 +52 0.112525 0.050989 +50 0.0907007 0.0561741 +SURF 0x30 +mat 0 +refs 3 +52 0.112525 0.050989 +27 0.0920178 0.0455638 +28 0.119337 0.0397353 +SURF 0x30 +mat 0 +refs 3 +25 0.082423 0.0507489 +50 0.0907007 0.0561741 +26 0.0830311 0.05941 +SURF 0x30 +mat 0 +refs 3 +50 0.0907007 0.0561741 +25 0.082423 0.0507489 +27 0.0920178 0.0455638 +SURF 0x30 +mat 0 +refs 3 +57 0.0907007 0.0561741 +25 0.082423 0.0507489 +26 0.0830311 0.05941 +SURF 0x30 +mat 0 +refs 3 +25 0.082423 0.0507489 +57 0.0907007 0.0561741 +24 0.0920178 0.0455638 +SURF 0x30 +mat 0 +refs 3 +56 0.112525 0.050989 +24 0.0920178 0.0455638 +57 0.0907007 0.0561741 +SURF 0x30 +mat 0 +refs 3 +24 0.0920178 0.0455638 +56 0.112525 0.050989 +23 0.119337 0.0397353 +SURF 0x30 +mat 0 +refs 3 +53 0.109126 0.0967237 +35 0.132766 0.148364 +34 0.107552 0.148364 +SURF 0x30 +mat 0 +refs 3 +35 0.132766 0.148364 +53 0.109126 0.0967237 +54 0.136913 0.0967237 +SURF 0x30 +mat 0 +refs 3 +51 0.0905605 0.0967237 +34 0.107552 0.148364 +33 0.0907085 0.148364 +SURF 0x30 +mat 0 +refs 3 +34 0.107552 0.148364 +51 0.0905605 0.0967237 +53 0.109126 0.0967237 +SURF 0x30 +mat 0 +refs 3 +26 0.0830311 0.05941 +51 0.0905605 0.0967237 +22 0.0840368 0.0967237 +SURF 0x30 +mat 0 +refs 3 +51 0.0905605 0.0967237 +26 0.0830311 0.05941 +50 0.0907007 0.0561741 +SURF 0x30 +mat 0 +refs 3 +51 0.0905605 0.0967237 +32 0.0848006 0.148364 +22 0.0840368 0.0967237 +SURF 0x30 +mat 0 +refs 3 +32 0.0848006 0.148364 +51 0.0905605 0.0967237 +33 0.0907085 0.148364 +SURF 0x30 +mat 0 +refs 3 +58 0.0905605 0.0967237 +26 0.0830311 0.05941 +22 0.0840368 0.0967237 +SURF 0x30 +mat 0 +refs 3 +26 0.0830311 0.05941 +58 0.0905605 0.0967237 +57 0.0907007 0.0561741 +SURF 0x30 +mat 0 +refs 3 +32 0.0848006 0.148364 +58 0.0905605 0.0967237 +22 0.0840368 0.0967237 +SURF 0x30 +mat 0 +refs 3 +58 0.0905605 0.0967237 +32 0.0848006 0.148364 +31 0.0907085 0.148364 +SURF 0x30 +mat 0 +refs 3 +30 0.107552 0.148364 +58 0.0905605 0.0967237 +31 0.0907085 0.148364 +SURF 0x30 +mat 0 +refs 3 +58 0.0905605 0.0967237 +30 0.107552 0.148364 +55 0.109126 0.0967237 +SURF 0x30 +mat 0 +refs 3 +29 0.132766 0.148364 +55 0.109126 0.0967237 +30 0.107552 0.148364 +SURF 0x30 +mat 0 +refs 3 +55 0.109126 0.0967237 +29 0.132766 0.148364 +59 0.136913 0.0967237 +SURF 0x30 +mat 0 +refs 3 +23 0.119337 0.0397353 +27 0.0920178 0.0455638 +24 0.0920178 0.0455638 +SURF 0x30 +mat 0 +refs 3 +27 0.0920178 0.0455638 +23 0.119337 0.0397353 +28 0.119337 0.0397353 +SURF 0x30 +mat 0 +refs 3 +44 0.106196 0.204824 +49 0.123343 0.254813 +48 0.104972 0.254813 +SURF 0x30 +mat 0 +refs 3 +49 0.123343 0.254813 +44 0.106196 0.204824 +45 0.127817 0.204824 +SURF 0x30 +mat 0 +refs 3 +47 0.123343 0.254813 +42 0.106196 0.204824 +46 0.104972 0.254813 +SURF 0x30 +mat 0 +refs 3 +42 0.106196 0.204824 +47 0.123343 0.254813 +43 0.127817 0.204824 +SURF 0x30 +mat 0 +refs 3 +50 0.0907007 0.0561741 +53 0.109126 0.0967237 +51 0.0905605 0.0967237 +SURF 0x30 +mat 0 +refs 3 +53 0.109126 0.0967237 +50 0.0907007 0.0561741 +52 0.112525 0.050989 +SURF 0x30 +mat 0 +refs 3 +52 0.112525 0.050989 +54 0.136913 0.0967237 +53 0.109126 0.0967237 +SURF 0x30 +mat 0 +refs 3 +55 0.109126 0.0967237 +57 0.0907007 0.0561741 +58 0.0905605 0.0967237 +SURF 0x30 +mat 0 +refs 3 +57 0.254926 0.0561741 +55 0.236501 0.0967237 +56 0.233102 0.050989 +SURF 0x30 +mat 0 +refs 3 +59 0.208714 0.0967237 +56 0.233102 0.050989 +55 0.236501 0.0967237 +SURF 0x30 +mat 0 +refs 3 +20 0.140372 0.241326 +45 0.127817 0.204824 +0 0.140373 0.204824 +SURF 0x30 +mat 0 +refs 3 +6 0.140373 0.204824 +43 0.127817 0.204824 +18 0.140372 0.241326 +SURF 0x30 +mat 0 +refs 3 +16 0.140373 0.0394351 +23 0.119337 0.0397353 +11 0.140373 0.0441495 +SURF 0x30 +mat 0 +refs 3 +14 0.140372 0.148364 +29 0.132766 0.148364 +15 0.140372 0.169258 +SURF 0x30 +mat 0 +refs 3 +13 0.140372 0.169258 +35 0.132766 0.148364 +12 0.140372 0.148364 +SURF 0x30 +mat 0 +refs 3 +9 0.140373 0.0967237 +59 0.136913 0.0967237 +10 0.140373 0.103705 +SURF 0x30 +mat 0 +refs 3 +8 0.205254 0.0751733 +59 0.208714 0.0967237 +9 0.205254 0.0967237 +SURF 0x30 +mat 0 +refs 3 +2 0.140373 0.0441495 +28 0.119337 0.0397353 +5 0.140373 0.0394351 +SURF 0x30 +mat 0 +refs 3 +4 0.140373 0.103705 +54 0.136913 0.0967237 +3 0.140373 0.0967237 +SURF 0x30 +mat 0 +refs 3 +3 0.140373 0.0967237 +54 0.136913 0.0967237 +1 0.140373 0.0751733 +kids 0 +OBJECT poly +name "VStab" +loc 0.585504 0.148025 3.63566e-005 +texture "wing.jpg" +crease 45.000000 +numvert 136 +0.0119768 0.0466471 0.00180265 +0.100773 0.0466471 0.00180264 +0.104431 0.0466471 -3.31326e-006 +0.100773 0.0466471 -0.00179603 +0.00831848 0.0466471 -3.30903e-006 +0.0119768 0.0466471 -0.00179602 +0.0321136 0.0751321 0.00142558 +0.0400714 0.0751321 0.00262954 +0.0999392 0.0751321 0.00142557 +0.102731 0.0751321 -3.31313e-006 +0.0999392 0.0751321 -0.00142558 +0.0293218 0.0751321 -3.30995e-006 +0.0321136 0.0751321 -0.00142557 +0.0539504 0.0946337 0.000982354 +0.0592623 0.0946337 0.00182248 +0.0672204 0.0946337 0.00237816 +0.0766073 0.0946337 0.00257662 +0.0859943 0.0946337 0.00237816 +0.0939524 0.0946337 0.00182248 +0.099271 0.0946337 0.000982354 +0.101136 0.0946337 -3.31306e-006 +0.099271 0.0946337 -0.00098236 +0.0939524 0.0946337 -0.00182249 +0.0859943 0.0946337 -0.00237817 +0.0766073 0.0946337 -0.00257662 +0.0672204 0.0946337 -0.00237817 +0.0592623 0.0946337 -0.00182249 +0.0520848 0.0946337 -3.31095e-006 +0.0539504 0.0946337 -0.00098236 +0.0752843 0.106455 0.000506059 +0.0777054 0.106455 0.000929433 +0.0813307 0.106455 0.00121389 +0.0856106 0.106455 0.00131311 +0.0898907 0.106455 0.00121389 +0.0935158 0.106455 0.000929433 +0.095937 0.106455 0.000506057 +0.0967903 0.106455 -3.31286e-006 +0.095937 0.106455 -0.000506069 +0.0935158 0.106455 -0.000929439 +0.0898907 0.106455 -0.00121389 +0.0856106 0.106455 -0.00131312 +0.0813307 0.106455 -0.00121389 +0.0777054 0.106455 -0.000929439 +0.0744309 0.106455 -3.31194e-006 +0.0752843 0.106455 -0.000506067 +0.0907969 0.110901 -3.31267e-006 +0.0223958 0.0466471 0.00332414 +0.037981 0.0466471 0.00434288 +0.0519788 0.0751321 0.00343659 +0.0563713 0.0466471 0.0047001 +0.066023 0.0751321 0.00372105 +0.0903537 0.0466471 0.00332414 +0.0747617 0.0466471 0.00434288 +0.0800737 0.0751321 0.00343659 +0.0919811 0.0751321 0.00262954 +0.0903537 0.0466471 -0.00332414 +0.0919811 0.0751321 -0.00262955 +0.0747617 0.0466471 -0.00434288 +0.0800737 0.0751321 -0.0034366 +0.0563713 0.0466471 -0.0047001 +0.066023 0.0751321 -0.00372105 +0.0223958 0.0466471 -0.00332414 +0.037981 0.0466471 -0.00434288 +0.0519788 0.0751321 -0.0034366 +0.0400714 0.0751321 -0.00262955 +0.0603085 0.0122083 -0.00526912 +0.0603085 -0.0771124 -0.0057383 +0.0603085 -0.0984857 -0.0055575 +0.0603085 -0.0622656 -0.00573533 +0.0603085 -0.0574558 -0.00573049 +0.0603085 -0.101734 -0.00494999 +0.0603085 0.0122083 0.00526911 +0.0603085 -0.0971971 0.00561609 +0.0603085 -0.0771124 0.00574106 +0.0603085 -0.0622656 0.00573533 +0.0603085 -0.0574558 0.00573048 +0.0603085 -0.0984857 0.00556287 +0.0603085 -0.0266891 -0.00567684 +0.0603085 -0.0122944 -0.0055307 +0.0603085 -0.0266891 0.00567683 +0.0603085 -0.0122944 0.0055307 +0.0603085 -0.101734 0.00495242 +0.0603085 0.0466471 0.00462362 +0.0603085 0.0373558 0.00479826 +0.0603085 0.0466471 -0.00462363 +0.0603085 0.0373558 -0.00479826 +0.0603085 -0.0971971 -0.00561046 +-0.0372866 -0.0622656 -3.30704e-006 +-0.0962875 -0.110901 0.00241124 +-0.0731013 -0.110901 0.00444873 +0.0284355 -0.110901 0.00629437 +-0.0384045 -0.110901 0.00581807 +0.029626 -0.102089 0.00581807 +0.029626 -0.102089 -0.00581145 +0.0284355 -0.110901 -0.00629437 +-0.0384045 -0.110901 -0.00581145 +-0.0731013 -0.110901 -0.00444872 +-0.104431 -0.110901 -3.30413e-006 +-0.0962875 -0.110901 -0.00241124 +-0.0619416 -0.0977893 -3.30599e-006 +-0.0193991 -0.0266891 0.0023054 +-0.0244201 -0.0266891 -3.30757e-006 +-0.0193991 -0.0266891 -0.00230539 +-0.0029406 0.0122083 0.00210033 +-0.00724709 0.0122083 -3.30837e-006 +-0.0029406 0.0122083 -0.00210032 +-0.00510371 -0.0266891 0.00425689 +0.0415268 -0.0266891 0.00601652 +0.0162899 -0.0266891 0.00556008 +0.0415268 -0.0266891 -0.00601653 +-0.00510371 -0.0266891 -0.00425688 +0.0162899 -0.0266891 -0.00556007 +0.00932413 0.0122083 0.0038732 +0.0276747 0.0122083 0.00506394 +0.0493197 0.0122083 0.00548069 +0.0493197 0.0122083 -0.0054807 +0.00932413 0.0122083 -0.0038732 +0.0276747 0.0122083 -0.00506393 +0.0562192 -0.0977893 -0.00581146 +0.0235137 -0.0977893 -0.00629436 +0.035421 -0.0622656 -0.00615544 +-0.00919193 -0.0977893 -0.00581145 +0.00759757 -0.0622656 -0.00568576 +-0.0317498 -0.0622656 -0.00235832 +-0.0554388 -0.0977893 -0.00241124 +-0.0369161 -0.0977893 -0.00444872 +-0.0159922 -0.0622656 -0.00434949 +0.0562192 -0.0977893 0.00581807 +0.035421 -0.0622656 0.00615544 +0.0235137 -0.0977893 0.00629437 +0.00759757 -0.0622656 0.00568577 +-0.00919193 -0.0977893 0.00581807 +-0.0159922 -0.0622656 0.00435611 +-0.0369161 -0.0977893 0.00444873 +-0.0317498 -0.0622656 0.00235832 +-0.0554388 -0.0977893 0.00241124 +numsurf 228 +SURF 0x30 +mat 0 +refs 3 +59 0.145011 0.254813 +65 0.140373 0.204824 +115 0.15332 0.204824 +SURF 0x30 +mat 0 +refs 3 +65 0.140373 0.204824 +59 0.145011 0.254813 +85 0.140372 0.241326 +SURF 0x30 +mat 0 +refs 3 +71 0.140373 0.204824 +49 0.145011 0.254813 +114 0.15332 0.204824 +SURF 0x30 +mat 0 +refs 3 +49 0.145011 0.254813 +71 0.140373 0.204824 +83 0.140372 0.241326 +SURF 0x30 +mat 0 +refs 3 +81 0.140373 0.0394351 +127 0.145191 0.0451605 +92 0.176524 0.0389192 +SURF 0x30 +mat 0 +refs 3 +127 0.145191 0.0451605 +81 0.140373 0.0394351 +76 0.140373 0.0441495 +SURF 0x30 +mat 0 +refs 3 +79 0.140372 0.148364 +114 0.15332 0.204824 +107 0.162502 0.148364 +SURF 0x30 +mat 0 +refs 3 +114 0.15332 0.204824 +79 0.140372 0.148364 +80 0.140372 0.169258 +SURF 0x30 +mat 0 +refs 3 +115 0.15332 0.204824 +77 0.140372 0.148364 +109 0.162502 0.148364 +SURF 0x30 +mat 0 +refs 3 +77 0.140372 0.148364 +115 0.15332 0.204824 +78 0.140372 0.169258 +SURF 0x30 +mat 0 +refs 3 +74 0.140373 0.0967237 +107 0.162502 0.148364 +128 0.169696 0.0967237 +SURF 0x30 +mat 0 +refs 3 +107 0.162502 0.148364 +74 0.140373 0.0967237 +75 0.140373 0.103705 +SURF 0x30 +mat 0 +refs 3 +127 0.200436 0.0451605 +74 0.205254 0.0967237 +128 0.175931 0.0967237 +SURF 0x30 +mat 0 +refs 3 +74 0.205254 0.0967237 +127 0.200436 0.0451605 +73 0.205254 0.0751733 +SURF 0x30 +mat 0 +refs 3 +118 0.145191 0.0451605 +70 0.140373 0.0394351 +93 0.176524 0.0389192 +SURF 0x30 +mat 0 +refs 3 +70 0.140373 0.0394351 +118 0.145191 0.0451605 +67 0.140373 0.0441495 +SURF 0x30 +mat 0 +refs 3 +109 0.162502 0.148364 +68 0.140373 0.0967237 +120 0.169696 0.0967237 +SURF 0x30 +mat 0 +refs 3 +68 0.140373 0.0967237 +109 0.162502 0.148364 +69 0.140373 0.103705 +SURF 0x30 +mat 0 +refs 3 +68 0.140373 0.0967237 +118 0.145191 0.0451605 +120 0.169696 0.0967237 +SURF 0x30 +mat 0 +refs 3 +118 0.145191 0.0451605 +68 0.140373 0.0967237 +66 0.140373 0.0751733 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +44 0.122727 0.341625 +43 0.123733 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +42 0.119875 0.341625 +44 0.122727 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +41 0.115603 0.341625 +42 0.119875 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +40 0.110561 0.341625 +41 0.115603 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +39 0.105518 0.341625 +40 0.110561 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +38 0.101247 0.341625 +39 0.105518 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +37 0.0983937 0.341625 +38 0.101247 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +36 0.0973883 0.341625 +37 0.0983937 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +35 0.0983937 0.341625 +36 0.0973883 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +34 0.101247 0.341625 +35 0.0983937 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +33 0.105518 0.341625 +34 0.101247 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +32 0.110561 0.341625 +33 0.105518 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +31 0.115603 0.341625 +32 0.110561 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +30 0.119875 0.341625 +31 0.115603 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +29 0.122727 0.341625 +30 0.119875 0.341625 +SURF 0x30 +mat 0 +refs 3 +45 0.10445 0.348078 +43 0.123733 0.341625 +29 0.122727 0.341625 +SURF 0x30 +mat 0 +refs 3 +28 0.147864 0.324466 +43 0.123733 0.341625 +44 0.122727 0.341625 +SURF 0x30 +mat 0 +refs 3 +43 0.123733 0.341625 +28 0.147864 0.324466 +27 0.150062 0.324466 +SURF 0x30 +mat 0 +refs 3 +26 0.141605 0.324466 +44 0.122727 0.341625 +42 0.119875 0.341625 +SURF 0x30 +mat 0 +refs 3 +44 0.122727 0.341625 +26 0.141605 0.324466 +28 0.147864 0.324466 +SURF 0x30 +mat 0 +refs 3 +25 0.132229 0.324466 +42 0.119875 0.341625 +41 0.115603 0.341625 +SURF 0x30 +mat 0 +refs 3 +42 0.119875 0.341625 +25 0.132229 0.324466 +26 0.141605 0.324466 +SURF 0x30 +mat 0 +refs 3 +24 0.121169 0.324466 +41 0.115603 0.341625 +40 0.110561 0.341625 +SURF 0x30 +mat 0 +refs 3 +41 0.115603 0.341625 +24 0.121169 0.324466 +25 0.132229 0.324466 +SURF 0x30 +mat 0 +refs 3 +23 0.110108 0.324466 +40 0.110561 0.341625 +39 0.105518 0.341625 +SURF 0x30 +mat 0 +refs 3 +40 0.110561 0.341625 +23 0.110108 0.324466 +24 0.121169 0.324466 +SURF 0x30 +mat 0 +refs 3 +22 0.100732 0.324466 +39 0.105518 0.341625 +38 0.101247 0.341625 +SURF 0x30 +mat 0 +refs 3 +39 0.105518 0.341625 +22 0.100732 0.324466 +23 0.110108 0.324466 +SURF 0x30 +mat 0 +refs 3 +22 0.100732 0.324466 +37 0.0983937 0.341625 +21 0.0944652 0.324466 +SURF 0x30 +mat 0 +refs 3 +37 0.0983937 0.341625 +22 0.100732 0.324466 +38 0.101247 0.341625 +SURF 0x30 +mat 0 +refs 3 +21 0.0944652 0.324466 +36 0.0973883 0.341625 +20 0.0922672 0.324466 +SURF 0x30 +mat 0 +refs 3 +36 0.0973883 0.341625 +21 0.0944652 0.324466 +37 0.0983937 0.341625 +SURF 0x30 +mat 0 +refs 3 +36 0.0973883 0.341625 +19 0.0944652 0.324466 +20 0.0922672 0.324466 +SURF 0x30 +mat 0 +refs 3 +19 0.0944652 0.324466 +36 0.0973883 0.341625 +35 0.0983937 0.341625 +SURF 0x30 +mat 0 +refs 3 +35 0.0983937 0.341625 +18 0.100732 0.324466 +19 0.0944652 0.324466 +SURF 0x30 +mat 0 +refs 3 +18 0.100732 0.324466 +35 0.0983937 0.341625 +34 0.101247 0.341625 +SURF 0x30 +mat 0 +refs 3 +33 0.105518 0.341625 +18 0.100732 0.324466 +34 0.101247 0.341625 +SURF 0x30 +mat 0 +refs 3 +18 0.100732 0.324466 +33 0.105518 0.341625 +17 0.110108 0.324466 +SURF 0x30 +mat 0 +refs 3 +32 0.110561 0.341625 +17 0.110108 0.324466 +33 0.105518 0.341625 +SURF 0x30 +mat 0 +refs 3 +17 0.110108 0.324466 +32 0.110561 0.341625 +16 0.121169 0.324466 +SURF 0x30 +mat 0 +refs 3 +31 0.115603 0.341625 +16 0.121169 0.324466 +32 0.110561 0.341625 +SURF 0x30 +mat 0 +refs 3 +16 0.121169 0.324466 +31 0.115603 0.341625 +15 0.132229 0.324466 +SURF 0x30 +mat 0 +refs 3 +30 0.119875 0.341625 +15 0.132229 0.324466 +31 0.115603 0.341625 +SURF 0x30 +mat 0 +refs 3 +15 0.132229 0.324466 +30 0.119875 0.341625 +14 0.141605 0.324466 +SURF 0x30 +mat 0 +refs 3 +29 0.122727 0.341625 +14 0.141605 0.324466 +30 0.119875 0.341625 +SURF 0x30 +mat 0 +refs 3 +14 0.141605 0.324466 +29 0.122727 0.341625 +13 0.147864 0.324466 +SURF 0x30 +mat 0 +refs 3 +43 0.123733 0.341625 +13 0.147864 0.324466 +29 0.122727 0.341625 +SURF 0x30 +mat 0 +refs 3 +13 0.147864 0.324466 +43 0.123733 0.341625 +27 0.150062 0.324466 +SURF 0x30 +mat 0 +refs 3 +12 0.173593 0.296159 +27 0.150062 0.324466 +28 0.147864 0.324466 +SURF 0x30 +mat 0 +refs 3 +27 0.150062 0.324466 +12 0.173593 0.296159 +11 0.176882 0.296159 +SURF 0x30 +mat 0 +refs 3 +64 0.164217 0.296159 +28 0.147864 0.324466 +26 0.141605 0.324466 +SURF 0x30 +mat 0 +refs 3 +28 0.147864 0.324466 +64 0.164217 0.296159 +12 0.173593 0.296159 +SURF 0x30 +mat 0 +refs 3 +63 0.150187 0.296159 +26 0.141605 0.324466 +25 0.132229 0.324466 +SURF 0x30 +mat 0 +refs 3 +26 0.141605 0.324466 +63 0.150187 0.296159 +64 0.164217 0.296159 +SURF 0x30 +mat 0 +refs 3 +60 0.133639 0.296159 +25 0.132229 0.324466 +24 0.121169 0.324466 +SURF 0x30 +mat 0 +refs 3 +25 0.132229 0.324466 +60 0.133639 0.296159 +63 0.150187 0.296159 +SURF 0x30 +mat 0 +refs 3 +58 0.117084 0.296159 +24 0.121169 0.324466 +23 0.110108 0.324466 +SURF 0x30 +mat 0 +refs 3 +24 0.121169 0.324466 +58 0.117084 0.296159 +60 0.133639 0.296159 +SURF 0x30 +mat 0 +refs 3 +56 0.103055 0.296159 +23 0.110108 0.324466 +22 0.100732 0.324466 +SURF 0x30 +mat 0 +refs 3 +23 0.110108 0.324466 +56 0.103055 0.296159 +58 0.117084 0.296159 +SURF 0x30 +mat 0 +refs 3 +10 0.0936781 0.296159 +22 0.100732 0.324466 +21 0.0944652 0.324466 +SURF 0x30 +mat 0 +refs 3 +22 0.100732 0.324466 +10 0.0936781 0.296159 +56 0.103055 0.296159 +SURF 0x30 +mat 0 +refs 3 +10 0.0936781 0.296159 +20 0.0922672 0.324466 +9 0.0903888 0.296159 +SURF 0x30 +mat 0 +refs 3 +20 0.0922672 0.324466 +10 0.0936781 0.296159 +21 0.0944652 0.324466 +SURF 0x30 +mat 0 +refs 3 +20 0.0922672 0.324466 +8 0.0936781 0.296159 +9 0.0903888 0.296159 +SURF 0x30 +mat 0 +refs 3 +8 0.0936781 0.296159 +20 0.0922672 0.324466 +19 0.0944652 0.324466 +SURF 0x30 +mat 0 +refs 3 +18 0.100732 0.324466 +8 0.0936781 0.296159 +19 0.0944652 0.324466 +SURF 0x30 +mat 0 +refs 3 +8 0.0936781 0.296159 +18 0.100732 0.324466 +54 0.103055 0.296159 +SURF 0x30 +mat 0 +refs 3 +17 0.110108 0.324466 +54 0.103055 0.296159 +18 0.100732 0.324466 +SURF 0x30 +mat 0 +refs 3 +54 0.103055 0.296159 +17 0.110108 0.324466 +53 0.117084 0.296159 +SURF 0x30 +mat 0 +refs 3 +16 0.121169 0.324466 +53 0.117084 0.296159 +17 0.110108 0.324466 +SURF 0x30 +mat 0 +refs 3 +53 0.117084 0.296159 +16 0.121169 0.324466 +50 0.133639 0.296159 +SURF 0x30 +mat 0 +refs 3 +15 0.132229 0.324466 +50 0.133639 0.296159 +16 0.121169 0.324466 +SURF 0x30 +mat 0 +refs 3 +50 0.133639 0.296159 +15 0.132229 0.324466 +48 0.150187 0.296159 +SURF 0x30 +mat 0 +refs 3 +14 0.141605 0.324466 +48 0.150187 0.296159 +15 0.132229 0.324466 +SURF 0x30 +mat 0 +refs 3 +48 0.150187 0.296159 +14 0.141605 0.324466 +7 0.164217 0.296159 +SURF 0x30 +mat 0 +refs 3 +13 0.147864 0.324466 +7 0.164217 0.296159 +14 0.141605 0.324466 +SURF 0x30 +mat 0 +refs 3 +7 0.164217 0.296159 +13 0.147864 0.324466 +6 0.173593 0.296159 +SURF 0x30 +mat 0 +refs 3 +27 0.150062 0.324466 +6 0.173593 0.296159 +13 0.147864 0.324466 +SURF 0x30 +mat 0 +refs 3 +6 0.173593 0.296159 +27 0.150062 0.324466 +11 0.176882 0.296159 +SURF 0x30 +mat 0 +refs 3 +5 0.197319 0.254813 +11 0.176882 0.296159 +12 0.173593 0.296159 +SURF 0x30 +mat 0 +refs 3 +11 0.176882 0.296159 +5 0.197319 0.254813 +4 0.201629 0.254813 +SURF 0x30 +mat 0 +refs 3 +61 0.185043 0.254813 +12 0.173593 0.296159 +64 0.164217 0.296159 +SURF 0x30 +mat 0 +refs 3 +12 0.173593 0.296159 +61 0.185043 0.254813 +5 0.197319 0.254813 +SURF 0x30 +mat 0 +refs 3 +3 0.0926961 0.254813 +56 0.103055 0.296159 +10 0.0936781 0.296159 +SURF 0x30 +mat 0 +refs 3 +56 0.103055 0.296159 +3 0.0926961 0.254813 +55 0.104972 0.254813 +SURF 0x30 +mat 0 +refs 3 +3 0.0926961 0.254813 +9 0.0903888 0.296159 +2 0.088386 0.254813 +SURF 0x30 +mat 0 +refs 3 +9 0.0903888 0.296159 +3 0.0926961 0.254813 +10 0.0936781 0.296159 +SURF 0x30 +mat 0 +refs 3 +9 0.0903888 0.296159 +1 0.0926961 0.254813 +2 0.088386 0.254813 +SURF 0x30 +mat 0 +refs 3 +1 0.0926961 0.254813 +9 0.0903888 0.296159 +8 0.0936781 0.296159 +SURF 0x30 +mat 0 +refs 3 +54 0.103055 0.296159 +1 0.0926961 0.254813 +8 0.0936781 0.296159 +SURF 0x30 +mat 0 +refs 3 +1 0.0926961 0.254813 +54 0.103055 0.296159 +51 0.104972 0.254813 +SURF 0x30 +mat 0 +refs 3 +7 0.164217 0.296159 +47 0.16668 0.254813 +48 0.150187 0.296159 +SURF 0x30 +mat 0 +refs 3 +47 0.16668 0.254813 +7 0.164217 0.296159 +46 0.185043 0.254813 +SURF 0x30 +mat 0 +refs 3 +6 0.173593 0.296159 +46 0.185043 0.254813 +7 0.164217 0.296159 +SURF 0x30 +mat 0 +refs 3 +46 0.185043 0.254813 +6 0.173593 0.296159 +0 0.197319 0.254813 +SURF 0x30 +mat 0 +refs 3 +11 0.176882 0.296159 +0 0.197319 0.254813 +6 0.173593 0.296159 +SURF 0x30 +mat 0 +refs 3 +0 0.197319 0.254813 +11 0.176882 0.296159 +4 0.201629 0.254813 +SURF 0x30 +mat 0 +refs 3 +48 0.150187 0.296159 +49 0.145011 0.254813 +50 0.133639 0.296159 +SURF 0x30 +mat 0 +refs 3 +49 0.145011 0.254813 +48 0.150187 0.296159 +47 0.16668 0.254813 +SURF 0x30 +mat 0 +refs 3 +50 0.133639 0.296159 +52 0.123343 0.254813 +53 0.117084 0.296159 +SURF 0x30 +mat 0 +refs 3 +52 0.123343 0.254813 +50 0.133639 0.296159 +49 0.145011 0.254813 +SURF 0x30 +mat 0 +refs 3 +53 0.117084 0.296159 +51 0.104972 0.254813 +54 0.103055 0.296159 +SURF 0x30 +mat 0 +refs 3 +51 0.104972 0.254813 +53 0.117084 0.296159 +52 0.123343 0.254813 +SURF 0x30 +mat 0 +refs 3 +55 0.104972 0.254813 +58 0.117084 0.296159 +56 0.103055 0.296159 +SURF 0x30 +mat 0 +refs 3 +58 0.117084 0.296159 +55 0.104972 0.254813 +57 0.123343 0.254813 +SURF 0x30 +mat 0 +refs 3 +57 0.123343 0.254813 +60 0.133639 0.296159 +58 0.117084 0.296159 +SURF 0x30 +mat 0 +refs 3 +60 0.133639 0.296159 +57 0.123343 0.254813 +59 0.145011 0.254813 +SURF 0x30 +mat 0 +refs 3 +59 0.145011 0.254813 +63 0.150187 0.296159 +60 0.133639 0.296159 +SURF 0x30 +mat 0 +refs 3 +63 0.150187 0.296159 +59 0.145011 0.254813 +62 0.16668 0.254813 +SURF 0x30 +mat 0 +refs 3 +62 0.16668 0.254813 +64 0.164217 0.296159 +63 0.150187 0.296159 +SURF 0x30 +mat 0 +refs 3 +64 0.164217 0.296159 +62 0.16668 0.254813 +61 0.185043 0.254813 +SURF 0x30 +mat 0 +refs 3 +119 0.183725 0.0451605 +93 0.176524 0.0389192 +94 0.177926 0.0261292 +SURF 0x30 +mat 0 +refs 3 +119 0.183725 0.0451605 +118 0.145191 0.0451605 +93 0.176524 0.0389192 +SURF 0x30 +mat 0 +refs 3 +92 0.176524 0.0389192 +129 0.183725 0.0451605 +90 0.177926 0.0261292 +SURF 0x30 +mat 0 +refs 3 +92 0.176524 0.0389192 +127 0.145191 0.0451605 +129 0.183725 0.0451605 +SURF 0x30 +mat 0 +refs 3 +105 0.214895 0.204824 +4 0.201629 0.254813 +5 0.197319 0.254813 +SURF 0x30 +mat 0 +refs 3 +4 0.201629 0.254813 +105 0.214895 0.204824 +104 0.219969 0.204824 +SURF 0x30 +mat 0 +refs 3 +116 0.200444 0.204824 +5 0.197319 0.254813 +61 0.185043 0.254813 +SURF 0x30 +mat 0 +refs 3 +5 0.197319 0.254813 +116 0.200444 0.204824 +105 0.214895 0.204824 +SURF 0x30 +mat 0 +refs 3 +0 0.197319 0.254813 +112 0.200444 0.204824 +46 0.185043 0.254813 +SURF 0x30 +mat 0 +refs 3 +112 0.200444 0.204824 +0 0.197319 0.254813 +103 0.214895 0.204824 +SURF 0x30 +mat 0 +refs 3 +4 0.201629 0.254813 +103 0.214895 0.204824 +0 0.197319 0.254813 +SURF 0x30 +mat 0 +refs 3 +103 0.214895 0.204824 +4 0.201629 0.254813 +104 0.219969 0.204824 +SURF 0x30 +mat 0 +refs 3 +102 0.234287 0.148364 +104 0.219969 0.204824 +105 0.214895 0.204824 +SURF 0x30 +mat 0 +refs 3 +104 0.219969 0.204824 +102 0.234287 0.148364 +101 0.240203 0.148364 +SURF 0x30 +mat 0 +refs 3 +110 0.217444 0.148364 +105 0.214895 0.204824 +116 0.200444 0.204824 +SURF 0x30 +mat 0 +refs 3 +105 0.214895 0.204824 +110 0.217444 0.148364 +102 0.234287 0.148364 +SURF 0x30 +mat 0 +refs 3 +103 0.214895 0.204824 +106 0.217444 0.148364 +112 0.200444 0.204824 +SURF 0x30 +mat 0 +refs 3 +106 0.217444 0.148364 +103 0.214895 0.204824 +100 0.234287 0.148364 +SURF 0x30 +mat 0 +refs 3 +104 0.219969 0.204824 +100 0.234287 0.148364 +103 0.214895 0.204824 +SURF 0x30 +mat 0 +refs 3 +100 0.234287 0.148364 +104 0.219969 0.204824 +101 0.240203 0.148364 +SURF 0x30 +mat 0 +refs 3 +98 0.32488 0.0261292 +99 0.284412 0.0451605 +124 0.27675 0.0451605 +SURF 0x30 +mat 0 +refs 3 +99 0.284412 0.0451605 +98 0.32488 0.0261292 +97 0.334475 0.0261292 +SURF 0x30 +mat 0 +refs 3 +96 0.297561 0.0261292 +124 0.27675 0.0451605 +125 0.254926 0.0451605 +SURF 0x30 +mat 0 +refs 3 +124 0.27675 0.0451605 +96 0.297561 0.0261292 +98 0.32488 0.0261292 +SURF 0x30 +mat 0 +refs 3 +95 0.25668 0.0261292 +125 0.254926 0.0451605 +121 0.222261 0.0451605 +SURF 0x30 +mat 0 +refs 3 +125 0.254926 0.0451605 +95 0.25668 0.0261292 +96 0.297561 0.0261292 +SURF 0x30 +mat 0 +refs 3 +94 0.177926 0.0261292 +121 0.222261 0.0451605 +119 0.183725 0.0451605 +SURF 0x30 +mat 0 +refs 3 +121 0.222261 0.0451605 +94 0.177926 0.0261292 +95 0.25668 0.0261292 +SURF 0x30 +mat 0 +refs 3 +131 0.222261 0.0451605 +90 0.177926 0.0261292 +129 0.183725 0.0451605 +SURF 0x30 +mat 0 +refs 3 +90 0.177926 0.0261292 +131 0.222261 0.0451605 +91 0.25668 0.0261292 +SURF 0x30 +mat 0 +refs 3 +133 0.254926 0.0451605 +91 0.25668 0.0261292 +131 0.222261 0.0451605 +SURF 0x30 +mat 0 +refs 3 +91 0.25668 0.0261292 +133 0.254926 0.0451605 +89 0.297561 0.0261292 +SURF 0x30 +mat 0 +refs 3 +135 0.27675 0.0451605 +89 0.297561 0.0261292 +133 0.254926 0.0451605 +SURF 0x30 +mat 0 +refs 3 +89 0.297561 0.0261292 +135 0.27675 0.0451605 +88 0.32488 0.0261292 +SURF 0x30 +mat 0 +refs 3 +99 0.284412 0.0451605 +88 0.32488 0.0261292 +135 0.27675 0.0451605 +SURF 0x30 +mat 0 +refs 3 +88 0.32488 0.0261292 +99 0.284412 0.0451605 +97 0.334475 0.0261292 +SURF 0x30 +mat 0 +refs 3 +124 0.27675 0.0451605 +87 0.255363 0.0967237 +123 0.248839 0.0967237 +SURF 0x30 +mat 0 +refs 3 +87 0.255363 0.0967237 +124 0.27675 0.0451605 +99 0.284412 0.0451605 +SURF 0x30 +mat 0 +refs 3 +123 0.248839 0.0967237 +101 0.240203 0.148364 +102 0.234287 0.148364 +SURF 0x30 +mat 0 +refs 3 +101 0.240203 0.148364 +123 0.248839 0.0967237 +87 0.255363 0.0967237 +SURF 0x30 +mat 0 +refs 3 +126 0.230273 0.0967237 +102 0.234287 0.148364 +110 0.217444 0.148364 +SURF 0x30 +mat 0 +refs 3 +102 0.234287 0.148364 +126 0.230273 0.0967237 +123 0.248839 0.0967237 +SURF 0x30 +mat 0 +refs 3 +122 0.202479 0.0967237 +110 0.217444 0.148364 +111 0.192237 0.148364 +SURF 0x30 +mat 0 +refs 3 +110 0.217444 0.148364 +122 0.202479 0.0967237 +126 0.230273 0.0967237 +SURF 0x30 +mat 0 +refs 3 +120 0.169696 0.0967237 +111 0.192237 0.148364 +109 0.162502 0.148364 +SURF 0x30 +mat 0 +refs 3 +111 0.192237 0.148364 +120 0.169696 0.0967237 +122 0.202479 0.0967237 +SURF 0x30 +mat 0 +refs 3 +108 0.192237 0.148364 +128 0.169696 0.0967237 +107 0.162502 0.148364 +SURF 0x30 +mat 0 +refs 3 +128 0.169696 0.0967237 +108 0.192237 0.148364 +130 0.202479 0.0967237 +SURF 0x30 +mat 0 +refs 3 +106 0.217444 0.148364 +130 0.202479 0.0967237 +108 0.192237 0.148364 +SURF 0x30 +mat 0 +refs 3 +130 0.202479 0.0967237 +106 0.217444 0.148364 +132 0.230273 0.0967237 +SURF 0x30 +mat 0 +refs 3 +100 0.234287 0.148364 +132 0.230273 0.0967237 +106 0.217444 0.148364 +SURF 0x30 +mat 0 +refs 3 +132 0.230273 0.0967237 +100 0.234287 0.148364 +134 0.248839 0.0967237 +SURF 0x30 +mat 0 +refs 3 +87 0.255363 0.0967237 +135 0.27675 0.0451605 +134 0.248839 0.0967237 +SURF 0x30 +mat 0 +refs 3 +135 0.27675 0.0451605 +87 0.255363 0.0967237 +99 0.284412 0.0451605 +SURF 0x30 +mat 0 +refs 3 +101 0.240203 0.148364 +134 0.248839 0.0967237 +100 0.234287 0.148364 +SURF 0x30 +mat 0 +refs 3 +134 0.248839 0.0967237 +101 0.240203 0.148364 +87 0.255363 0.0967237 +SURF 0x30 +mat 0 +refs 3 +115 0.15332 0.204824 +62 0.16668 0.254813 +59 0.145011 0.254813 +SURF 0x30 +mat 0 +refs 3 +62 0.16668 0.254813 +115 0.15332 0.204824 +117 0.178823 0.204824 +SURF 0x30 +mat 0 +refs 3 +117 0.178823 0.204824 +61 0.185043 0.254813 +62 0.16668 0.254813 +SURF 0x30 +mat 0 +refs 3 +61 0.185043 0.254813 +117 0.178823 0.204824 +116 0.200444 0.204824 +SURF 0x30 +mat 0 +refs 3 +112 0.200444 0.204824 +108 0.192237 0.148364 +113 0.178823 0.204824 +SURF 0x30 +mat 0 +refs 3 +108 0.192237 0.148364 +112 0.200444 0.204824 +106 0.217444 0.148364 +SURF 0x30 +mat 0 +refs 3 +113 0.178823 0.204824 +107 0.162502 0.148364 +114 0.15332 0.204824 +SURF 0x30 +mat 0 +refs 3 +107 0.162502 0.148364 +113 0.178823 0.204824 +108 0.192237 0.148364 +SURF 0x30 +mat 0 +refs 3 +109 0.162502 0.148364 +117 0.178823 0.204824 +115 0.15332 0.204824 +SURF 0x30 +mat 0 +refs 3 +117 0.178823 0.204824 +109 0.162502 0.148364 +111 0.192237 0.148364 +SURF 0x30 +mat 0 +refs 3 +111 0.192237 0.148364 +116 0.200444 0.204824 +117 0.178823 0.204824 +SURF 0x30 +mat 0 +refs 3 +116 0.200444 0.204824 +111 0.192237 0.148364 +110 0.217444 0.148364 +SURF 0x30 +mat 0 +refs 3 +46 0.185043 0.254813 +113 0.178823 0.204824 +47 0.16668 0.254813 +SURF 0x30 +mat 0 +refs 3 +113 0.178823 0.204824 +46 0.185043 0.254813 +112 0.200444 0.204824 +SURF 0x30 +mat 0 +refs 3 +47 0.16668 0.254813 +114 0.15332 0.204824 +49 0.145011 0.254813 +SURF 0x30 +mat 0 +refs 3 +114 0.15332 0.204824 +47 0.16668 0.254813 +113 0.178823 0.204824 +SURF 0x30 +mat 0 +refs 3 +120 0.169696 0.0967237 +118 0.145191 0.0451605 +119 0.183725 0.0451605 +SURF 0x30 +mat 0 +refs 3 +119 0.183725 0.0451605 +122 0.202479 0.0967237 +120 0.169696 0.0967237 +SURF 0x30 +mat 0 +refs 3 +122 0.202479 0.0967237 +119 0.183725 0.0451605 +121 0.222261 0.0451605 +SURF 0x30 +mat 0 +refs 3 +121 0.222261 0.0451605 +126 0.230273 0.0967237 +122 0.202479 0.0967237 +SURF 0x30 +mat 0 +refs 3 +126 0.230273 0.0967237 +121 0.222261 0.0451605 +125 0.254926 0.0451605 +SURF 0x30 +mat 0 +refs 3 +125 0.254926 0.0451605 +123 0.248839 0.0967237 +126 0.230273 0.0967237 +SURF 0x30 +mat 0 +refs 3 +123 0.248839 0.0967237 +125 0.254926 0.0451605 +124 0.27675 0.0451605 +SURF 0x30 +mat 0 +refs 3 +130 0.143148 0.0967237 +129 0.161902 0.0451605 +128 0.175931 0.0967237 +SURF 0x30 +mat 0 +refs 3 +129 0.161902 0.0451605 +130 0.143148 0.0967237 +131 0.123366 0.0451605 +SURF 0x30 +mat 0 +refs 3 +134 0.0967879 0.0967237 +133 0.0907007 0.0451605 +132 0.115354 0.0967237 +SURF 0x30 +mat 0 +refs 3 +133 0.254926 0.0451605 +134 0.248839 0.0967237 +135 0.27675 0.0451605 +SURF 0x30 +mat 0 +refs 3 +132 0.115354 0.0967237 +131 0.123366 0.0451605 +130 0.143148 0.0967237 +SURF 0x30 +mat 0 +refs 3 +131 0.123366 0.0451605 +132 0.115354 0.0967237 +133 0.0907007 0.0451605 +SURF 0x30 +mat 0 +refs 3 +127 0.200436 0.0451605 +128 0.175931 0.0967237 +129 0.161902 0.0451605 +SURF 0x30 +mat 0 +refs 3 +86 0.140373 0.0460202 +118 0.145191 0.0451605 +66 0.140373 0.0751733 +SURF 0x30 +mat 0 +refs 3 +67 0.140373 0.0441495 +118 0.145191 0.0451605 +86 0.140373 0.0460202 +SURF 0x30 +mat 0 +refs 3 +85 0.140372 0.241326 +59 0.145011 0.254813 +84 0.140372 0.254813 +SURF 0x30 +mat 0 +refs 3 +82 0.140372 0.254813 +49 0.145011 0.254813 +83 0.140372 0.241326 +SURF 0x30 +mat 0 +refs 3 +71 0.140373 0.204824 +114 0.15332 0.204824 +80 0.140372 0.169258 +SURF 0x30 +mat 0 +refs 3 +79 0.140372 0.148364 +107 0.162502 0.148364 +75 0.140373 0.103705 +SURF 0x30 +mat 0 +refs 3 +78 0.140372 0.169258 +115 0.15332 0.204824 +65 0.140373 0.204824 +SURF 0x30 +mat 0 +refs 3 +69 0.140373 0.103705 +109 0.162502 0.148364 +77 0.140372 0.148364 +SURF 0x30 +mat 0 +refs 3 +72 0.140373 0.0460202 +127 0.145191 0.0451605 +76 0.140373 0.0441495 +SURF 0x30 +mat 0 +refs 3 +73 0.205254 0.0751733 +127 0.200436 0.0451605 +72 0.205254 0.0460202 +kids 0 +OBJECT poly +name "Elevator.Elevator" +loc 0.686383 0.0381001 4.08036e-015 +texture "wing.jpg" +crease 45.000000 +numvert 70 +-0.0192305 -0.00648618 -0.226412 +-0.00145525 -0.00496471 -0.226412 +0.0104257 -0.00268245 -0.226412 +0.0145932 3.21865e-006 -0.226412 +0.0104257 0.002689 -0.226412 +-0.00145525 0.00496471 -0.226412 +-0.0229217 -0.00704193 -0.178008 +-0.0023284 -0.00538814 -0.178008 +0.011431 -0.00291407 -0.178008 +0.0162603 3.21865e-006 -0.178008 +0.011431 0.00291407 -0.178008 +-0.0023284 0.00538802 -0.178008 +-0.0215325 -0.00747859 -0.122785 +0.000231743 -0.0057255 -0.122785 +0.0147784 -0.0030992 -0.122785 +0.0198854 3.21865e-006 -0.122785 +0.0147784 0.00309932 -0.122785 +0.000231743 0.0057255 -0.122785 +-0.0201828 -0.0079416 -0.0628643 +0.00213033 -0.0060761 -0.0628643 +0.0170407 -0.00329101 -0.0628643 +0.0222735 3.21865e-006 -0.0628643 +0.0170407 0.00329101 -0.0628643 +0.00213033 0.00607598 -0.0628643 +-0.0203682 -0.00809371 1.97885e-005 +0.00238144 -0.00619519 1.97885e-005 +0.0175833 -0.00335062 1.97886e-005 +0.0229217 3.21865e-006 1.97887e-005 +0.0175833 0.00335717 1.97889e-005 +0.00238144 0.00619507 1.9789e-005 +-0.0203682 0.00809371 1.9789e-005 +-0.0201828 0.00794148 -0.0628643 +-0.0215325 0.00747848 -0.122785 +-0.0229217 0.00704181 -0.178008 +-0.0192305 0.00648618 -0.226412 +-0.0229217 0.00704181 0.178008 +-0.0192305 0.00648618 0.226412 +-0.00145525 0.00496471 0.226412 +0.0104257 0.002689 0.226412 +-0.0203682 0.00809371 -1.99077e-005 +0.00238144 0.00619507 -1.99077e-005 +0.0175833 0.00335717 -1.99078e-005 +0.0229217 3.21865e-006 -1.99079e-005 +0.0175833 -0.00335062 -1.99081e-005 +0.00238144 -0.00619519 -1.99082e-005 +-0.0203682 -0.00809371 -1.99082e-005 +-0.0201828 0.00794148 0.0628643 +0.00213033 0.00607598 0.0628643 +0.0170407 0.00329101 0.0628643 +0.0222735 3.21865e-006 0.0628643 +0.0170407 -0.00329101 0.0628643 +0.00213033 -0.0060761 0.0628643 +-0.0201828 -0.0079416 0.0628643 +-0.0215325 0.00747848 0.122785 +0.000231743 0.0057255 0.122785 +0.0147784 0.00309932 0.122785 +0.0198854 3.21865e-006 0.122785 +0.0147784 -0.0030992 0.122785 +0.000231743 -0.0057255 0.122785 +-0.0215325 -0.00747859 0.122785 +-0.0023284 0.00538802 0.178008 +0.011431 0.00291407 0.178008 +0.0162603 3.21865e-006 0.178008 +0.011431 -0.00291407 0.178008 +-0.0023284 -0.00538814 0.178008 +-0.0229217 -0.00704193 0.178008 +0.0145932 3.21865e-006 0.226412 +0.0104257 -0.00268245 0.226412 +-0.00145525 -0.00496471 0.226412 +-0.0192305 -0.00648618 0.226412 +numsurf 96 +SURF 0x30 +mat 0 +refs 3 +7 0.532131 0.624762 +0 0.597622 0.645111 +1 0.597622 0.623711 +SURF 0x30 +mat 0 +refs 3 +0 0.597622 0.645111 +7 0.532131 0.624762 +6 0.532131 0.649554 +SURF 0x30 +mat 0 +refs 3 +8 0.532131 0.714864 +1 0.597622 0.730377 +2 0.597622 0.716074 +SURF 0x30 +mat 0 +refs 3 +1 0.597622 0.730377 +8 0.532131 0.714864 +7 0.532131 0.731429 +SURF 0x30 +mat 0 +refs 3 +9 0.532131 0.709049 +2 0.597622 0.716074 +3 0.597622 0.711056 +SURF 0x30 +mat 0 +refs 3 +2 0.597622 0.716074 +9 0.532131 0.709049 +8 0.532131 0.714864 +SURF 0x30 +mat 0 +refs 3 +10 0.532131 0.714864 +3 0.597622 0.711056 +4 0.597622 0.716074 +SURF 0x30 +mat 0 +refs 3 +3 0.597622 0.711056 +10 0.532131 0.714864 +9 0.532131 0.709049 +SURF 0x30 +mat 0 +refs 3 +11 0.532131 0.731429 +4 0.597622 0.716074 +5 0.597622 0.730377 +SURF 0x30 +mat 0 +refs 3 +4 0.597622 0.716074 +11 0.532131 0.731429 +10 0.532131 0.714864 +SURF 0x30 +mat 0 +refs 3 +33 0.532131 0.756221 +5 0.597622 0.730377 +34 0.597622 0.751777 +SURF 0x30 +mat 0 +refs 3 +5 0.597622 0.730377 +33 0.532131 0.756221 +11 0.532131 0.731429 +SURF 0x30 +mat 0 +refs 3 +13 0.457413 0.62168 +6 0.532131 0.649554 +7 0.532131 0.624762 +SURF 0x30 +mat 0 +refs 3 +6 0.532131 0.649554 +13 0.457413 0.62168 +12 0.457413 0.647882 +SURF 0x30 +mat 0 +refs 3 +14 0.457413 0.710834 +7 0.532131 0.731429 +8 0.532131 0.714864 +SURF 0x30 +mat 0 +refs 3 +7 0.532131 0.731429 +14 0.457413 0.710834 +13 0.457413 0.728346 +SURF 0x30 +mat 0 +refs 3 +15 0.457413 0.704685 +8 0.532131 0.714864 +9 0.532131 0.709049 +SURF 0x30 +mat 0 +refs 3 +8 0.532131 0.714864 +15 0.457413 0.704685 +14 0.457413 0.710834 +SURF 0x30 +mat 0 +refs 3 +16 0.457413 0.710834 +9 0.532131 0.709049 +10 0.532131 0.714864 +SURF 0x30 +mat 0 +refs 3 +9 0.532131 0.709049 +16 0.457413 0.710834 +15 0.457413 0.704685 +SURF 0x30 +mat 0 +refs 3 +17 0.457413 0.728346 +10 0.532131 0.714864 +11 0.532131 0.731429 +SURF 0x30 +mat 0 +refs 3 +10 0.532131 0.714864 +17 0.457413 0.728346 +16 0.457413 0.710834 +SURF 0x30 +mat 0 +refs 3 +32 0.457413 0.754549 +11 0.532131 0.731429 +33 0.532131 0.756221 +SURF 0x30 +mat 0 +refs 3 +11 0.532131 0.731429 +32 0.457413 0.754549 +17 0.457413 0.728346 +SURF 0x30 +mat 0 +refs 3 +19 0.376339 0.619394 +12 0.457413 0.647882 +13 0.457413 0.62168 +SURF 0x30 +mat 0 +refs 3 +12 0.457413 0.647882 +19 0.376339 0.619394 +18 0.376339 0.646257 +SURF 0x30 +mat 0 +refs 3 +20 0.376339 0.70811 +13 0.457413 0.728346 +14 0.457413 0.710834 +SURF 0x30 +mat 0 +refs 3 +13 0.457413 0.728346 +20 0.376339 0.70811 +19 0.376339 0.726061 +SURF 0x30 +mat 0 +refs 3 +21 0.376339 0.70181 +14 0.457413 0.710834 +15 0.457413 0.704685 +SURF 0x30 +mat 0 +refs 3 +14 0.457413 0.710834 +21 0.376339 0.70181 +20 0.376339 0.70811 +SURF 0x30 +mat 0 +refs 3 +22 0.376339 0.70811 +15 0.457413 0.704685 +16 0.457413 0.710834 +SURF 0x30 +mat 0 +refs 3 +15 0.457413 0.704685 +22 0.376339 0.70811 +21 0.376339 0.70181 +SURF 0x30 +mat 0 +refs 3 +23 0.376339 0.726061 +16 0.457413 0.710834 +17 0.457413 0.728346 +SURF 0x30 +mat 0 +refs 3 +16 0.457413 0.710834 +23 0.376339 0.726061 +22 0.376339 0.70811 +SURF 0x30 +mat 0 +refs 3 +31 0.376339 0.752924 +17 0.457413 0.728346 +32 0.457413 0.754549 +SURF 0x30 +mat 0 +refs 3 +17 0.457413 0.728346 +31 0.376339 0.752924 +23 0.376339 0.726061 +SURF 0x30 +mat 0 +refs 3 +25 0.240106 0.597725 +18 0.309018 0.625694 +19 0.309018 0.598036 +SURF 0x30 +mat 0 +refs 3 +18 0.309018 0.625694 +25 0.240106 0.597725 +24 0.240106 0.625924 +SURF 0x30 +mat 0 +refs 3 +26 0.240106 0.578882 +19 0.309018 0.598036 +20 0.309018 0.579554 +SURF 0x30 +mat 0 +refs 3 +19 0.309018 0.598036 +26 0.240106 0.578882 +25 0.240106 0.597725 +SURF 0x30 +mat 0 +refs 3 +27 0.240106 0.572264 +20 0.309018 0.579554 +21 0.309018 0.573068 +SURF 0x30 +mat 0 +refs 3 +20 0.309018 0.579554 +27 0.240106 0.572264 +26 0.240106 0.578882 +SURF 0x30 +mat 0 +refs 3 +28 0.240106 0.578882 +21 0.309018 0.573068 +22 0.309018 0.579554 +SURF 0x30 +mat 0 +refs 3 +21 0.309018 0.573068 +28 0.240106 0.578882 +27 0.240106 0.572264 +SURF 0x30 +mat 0 +refs 3 +29 0.240106 0.597725 +22 0.309018 0.579554 +23 0.309018 0.598036 +SURF 0x30 +mat 0 +refs 3 +22 0.309018 0.579554 +29 0.240106 0.597725 +28 0.240106 0.578882 +SURF 0x30 +mat 0 +refs 3 +31 0.309018 0.625694 +29 0.240106 0.597725 +23 0.309018 0.598036 +SURF 0x30 +mat 0 +refs 3 +29 0.240106 0.597725 +31 0.309018 0.625694 +30 0.240106 0.625924 +SURF 0x30 +mat 0 +refs 3 +47 0.772836 0.650899 +39 0.866906 0.684704 +46 0.772836 0.684425 +SURF 0x30 +mat 0 +refs 3 +39 0.866906 0.684704 +47 0.772836 0.650899 +40 0.866906 0.650522 +SURF 0x30 +mat 0 +refs 3 +48 0.772836 0.628495 +40 0.866906 0.650522 +47 0.772836 0.650899 +SURF 0x30 +mat 0 +refs 3 +40 0.866906 0.650522 +48 0.772836 0.628495 +41 0.866906 0.62768 +SURF 0x30 +mat 0 +refs 3 +49 0.772836 0.620633 +41 0.866906 0.62768 +48 0.772836 0.628495 +SURF 0x30 +mat 0 +refs 3 +41 0.866906 0.62768 +49 0.772836 0.620633 +42 0.866906 0.619659 +SURF 0x30 +mat 0 +refs 3 +43 0.866906 0.62768 +49 0.772836 0.620633 +50 0.772836 0.628495 +SURF 0x30 +mat 0 +refs 3 +49 0.772836 0.620633 +43 0.866906 0.62768 +42 0.866906 0.619659 +SURF 0x30 +mat 0 +refs 3 +44 0.866906 0.650522 +50 0.772836 0.628495 +51 0.772836 0.650899 +SURF 0x30 +mat 0 +refs 3 +50 0.772836 0.628495 +44 0.866906 0.650522 +43 0.866906 0.62768 +SURF 0x30 +mat 0 +refs 3 +45 0.866906 0.684704 +51 0.772836 0.650899 +52 0.772836 0.684425 +SURF 0x30 +mat 0 +refs 3 +51 0.772836 0.650899 +45 0.866906 0.684704 +44 0.866906 0.650522 +SURF 0x30 +mat 0 +refs 3 +47 0.772836 0.650899 +53 0.683201 0.686453 +54 0.683201 0.653751 +SURF 0x30 +mat 0 +refs 3 +53 0.683201 0.686453 +47 0.772836 0.650899 +46 0.772836 0.684425 +SURF 0x30 +mat 0 +refs 3 +48 0.772836 0.628495 +54 0.683201 0.653751 +55 0.683201 0.631894 +SURF 0x30 +mat 0 +refs 3 +54 0.683201 0.653751 +48 0.772836 0.628495 +47 0.772836 0.650899 +SURF 0x30 +mat 0 +refs 3 +49 0.772836 0.620633 +55 0.683201 0.631894 +56 0.683201 0.624221 +SURF 0x30 +mat 0 +refs 3 +55 0.683201 0.631894 +49 0.772836 0.620633 +48 0.772836 0.628495 +SURF 0x30 +mat 0 +refs 3 +50 0.772836 0.628495 +56 0.683201 0.624221 +57 0.683201 0.631894 +SURF 0x30 +mat 0 +refs 3 +56 0.683201 0.624221 +50 0.772836 0.628495 +49 0.772836 0.620633 +SURF 0x30 +mat 0 +refs 3 +51 0.772836 0.650899 +57 0.683201 0.631894 +58 0.683201 0.653751 +SURF 0x30 +mat 0 +refs 3 +57 0.683201 0.631894 +51 0.772836 0.650899 +50 0.772836 0.628495 +SURF 0x30 +mat 0 +refs 3 +52 0.772836 0.684425 +58 0.683201 0.653751 +59 0.683201 0.686453 +SURF 0x30 +mat 0 +refs 3 +58 0.683201 0.653751 +52 0.772836 0.684425 +51 0.772836 0.650899 +SURF 0x30 +mat 0 +refs 3 +54 0.373769 0.727956 +35 0.291159 0.762745 +60 0.291159 0.731802 +SURF 0x30 +mat 0 +refs 3 +35 0.291159 0.762745 +54 0.373769 0.727956 +53 0.373769 0.760657 +SURF 0x30 +mat 0 +refs 3 +55 0.373769 0.706099 +60 0.291159 0.731802 +61 0.291159 0.711128 +SURF 0x30 +mat 0 +refs 3 +60 0.291159 0.731802 +55 0.373769 0.706099 +54 0.373769 0.727956 +SURF 0x30 +mat 0 +refs 3 +56 0.373769 0.698425 +61 0.291159 0.711128 +62 0.291159 0.703872 +SURF 0x30 +mat 0 +refs 3 +61 0.291159 0.711128 +56 0.373769 0.698425 +55 0.373769 0.706099 +SURF 0x30 +mat 0 +refs 3 +57 0.373769 0.706099 +62 0.291159 0.703872 +63 0.291159 0.711128 +SURF 0x30 +mat 0 +refs 3 +62 0.291159 0.703872 +57 0.373769 0.706099 +56 0.373769 0.698425 +SURF 0x30 +mat 0 +refs 3 +58 0.373769 0.727956 +63 0.291159 0.711128 +64 0.291159 0.731802 +SURF 0x30 +mat 0 +refs 3 +63 0.291159 0.711128 +58 0.373769 0.727956 +57 0.373769 0.706099 +SURF 0x30 +mat 0 +refs 3 +59 0.373769 0.760657 +64 0.291159 0.731802 +65 0.291159 0.762745 +SURF 0x30 +mat 0 +refs 3 +64 0.291159 0.731802 +59 0.373769 0.760657 +58 0.373769 0.727956 +SURF 0x30 +mat 0 +refs 3 +60 0.291159 0.731802 +36 0.218752 0.757199 +37 0.218752 0.73049 +SURF 0x30 +mat 0 +refs 3 +36 0.218752 0.757199 +60 0.291159 0.731802 +35 0.291159 0.762745 +SURF 0x30 +mat 0 +refs 3 +61 0.291159 0.711128 +37 0.218752 0.73049 +38 0.218752 0.712639 +SURF 0x30 +mat 0 +refs 3 +37 0.218752 0.73049 +61 0.291159 0.711128 +60 0.291159 0.731802 +SURF 0x30 +mat 0 +refs 3 +62 0.291159 0.703872 +38 0.218752 0.712639 +66 0.218752 0.706377 +SURF 0x30 +mat 0 +refs 3 +38 0.218752 0.712639 +62 0.291159 0.703872 +61 0.291159 0.711128 +SURF 0x30 +mat 0 +refs 3 +63 0.291159 0.711128 +66 0.218752 0.706377 +67 0.218752 0.712639 +SURF 0x30 +mat 0 +refs 3 +66 0.218752 0.706377 +63 0.291159 0.711128 +62 0.291159 0.703872 +SURF 0x30 +mat 0 +refs 3 +64 0.291159 0.731802 +67 0.218752 0.712639 +68 0.218752 0.73049 +SURF 0x30 +mat 0 +refs 3 +67 0.218752 0.712639 +64 0.291159 0.731802 +63 0.291159 0.711128 +SURF 0x30 +mat 0 +refs 3 +65 0.291159 0.762745 +68 0.218752 0.73049 +69 0.218752 0.757199 +SURF 0x30 +mat 0 +refs 3 +68 0.218752 0.73049 +65 0.291159 0.762745 +64 0.291159 0.731802 +kids 0 +OBJECT poly +name "Fuse" +loc -2.04153 0.0376999 0 +texture "EasyStarPurWeiss.jpg" +crease 45.000000 +numvert 298 +2.68478 -0.0216252 -6.64583e-006 +2.67528 -0.0380573 -0.0123109 +2.68065 -0.0288358 -0.0213208 +2.68468 -0.021096 -0.0246218 +2.6905 -0.0091753 -0.0213208 +2.69566 -0.00044322 -0.0123109 +2.69703 0.00275183 -6.64636e-006 +1.71272 -0.0592127 -0.0298213 +1.71272 -0.0668731 -6.60332e-006 +1.66808 -0.0631223 -1.32166e-005 +1.66808 -0.0565269 -0.0270628 +2.11558 -0.0668334 6.60947e-006 +2.07821 -0.0688841 4.63023e-005 +2.07821 -0.0603769 -0.0234244 +2.11565 -0.060033 -0.0230474 +2.08033 -0.0387321 -0.0425953 +2.1169 -0.0384079 -0.0410539 +2.08327 -0.014011 -0.0485423 +2.11856 -0.0183506 -0.0463593 +2.10076 0.0445137 -0.039797 +2.12912 0.0281808 -0.0356295 +2.11511 0.0800968 -0.0262028 +2.14597 0.0663306 -0.0230474 +2.12285 0.0963835 -0.0235633 +2.16358 0.0835168 -0.0207453 +1.71272 0.0417485 -0.0098368 +1.71272 0.0371575 -0.0274795 +1.66808 0.0280087 -0.0239404 +1.66808 0.0346041 -1.32166e-005 +1.71272 0.0443747 6.62711e-006 +2.14438 -0.059603 -0.0229018 +2.17205 -0.0588489 -0.0227364 +2.17214 -0.0641477 -6.6234e-006 +2.14389 -0.065722 1.32235e-005 +2.14653 -0.039162 -0.0397772 +2.17205 -0.0397706 -0.0393737 +2.14817 -0.019495 -0.0442888 +2.17383 -0.0201235 -0.0431377 +2.15151 0.00523257 -0.0346901 +2.18067 -0.00374424 -0.0347232 +2.15914 0.0317464 -0.022538 +2.18913 0.00450492 -0.0196339 +2.17624 0.0417022 -6.6236e-006 +2.2019 0.0095787 -6.62473e-006 +2.16946 0.040657 -0.0108159 +2.17509 0.0735279 6.60687e-006 +1.62453 -0.0543703 -4.62907e-005 +1.58172 -0.040452 -6.59759e-006 +1.58172 -0.0374222 -0.0128401 +1.62453 -0.0493891 -0.0212282 +1.58172 -0.0291467 -0.032302 +1.62453 -0.0349878 -0.0422248 +1.66808 -0.0385005 -0.0489459 +1.58172 -0.0178347 -0.0338301 +1.62453 -0.0157045 -0.045969 +1.58172 -0.00652921 -0.0282072 +1.62453 0.00290406 -0.0385005 +1.58172 0.00175297 -0.0128401 +1.62453 0.0165181 -0.0181058 +1.58172 0.00478268 -6.59759e-006 +1.62453 0.021506 -4.62907e-005 +1.74863 -0.0699096 3.30863e-005 +1.74863 -0.0620837 -0.0299536 +1.78839 -0.0646371 -0.0293186 +1.78839 -0.0726482 3.30846e-005 +1.71272 -0.0414046 -0.0518896 +1.74863 -0.0422513 -0.0543505 +1.78839 -0.0427408 -0.0549723 +1.56382 -0.0343992 -2.64424e-005 +1.56382 -0.0324211 -0.00935389 +1.56382 -0.02701 -0.0230474 +1.56382 -0.0196142 -0.0250518 +1.56382 -0.0122249 -0.0208445 +1.56382 -0.00680709 -0.00935389 +1.56382 -0.00482917 -2.64424e-005 +1.82902 -0.073733 3.30828e-005 +1.82902 -0.065722 -0.029689 +1.8698 -0.0650407 -0.0292789 +1.8698 -0.072979 -6.61019e-006 +1.82902 -0.0438323 -0.055012 +1.8698 -0.0433694 -0.0530208 +1.93661 -0.0738654 3.30781e-005 +1.93661 -0.0656625 -0.0271289 +1.93661 -0.0432569 -0.0501102 +1.93661 -0.000582218 -0.0519293 +1.8698 0.00396907 -0.0538676 +1.8698 0.0527165 -0.0458764 +1.93661 0.0537088 -0.0445335 +1.8698 0.0837352 -0.0269371 +1.93661 0.0839071 -0.0259514 +1.93661 0.095583 -6.6131e-006 +1.93661 0.0910516 -0.0143351 +1.8698 0.0905356 -0.0145733 +1.8698 0.0950868 -6.61019e-006 +2.18239 0.108073 -1.98543e-005 +2.17986 0.124048 -0.0164189 +2.17882 0.131127 -1.98541e-005 +2.18239 0.108073 -0.0231201 +2.18492 0.0920968 -0.0164189 +2.18597 0.085475 -1.98544e-005 +2.17469 0.132238 -1.98539e-005 +2.17469 0.125153 -0.0164189 +2.13536 0.123923 -0.0164189 +2.1386 0.130624 -1.98524e-005 +2.17469 0.109138 -0.0231201 +2.13072 0.109138 -0.0231201 +2.17469 0.0931156 -0.0211356 +1.98927 -0.0640153 -0.0248864 +2.02969 -0.0626923 -0.0243704 +2.02969 -0.0711334 4.63044e-005 +1.98917 -0.0723505 3.9691e-005 +1.98952 -0.0412458 -0.0463196 +2.02969 -0.039645 -0.0448643 +2.00796 0.08441 -0.0267717 +2.05645 0.0827694 -0.0276185 +2.04309 0.0547209 -0.0431576 +2.00371 0.054238 -0.0438191 +2.00806 0.090099 -0.0204674 +2.06044 0.0915213 -0.0216648 +2.0081 0.0933338 -0.0165909 +2.06322 0.0992545 -0.019065 +2.00817 0.0987914 -0.00469018 +2.0082 0.100478 -1.32315e-005 +2.0675 0.109587 -1.98492e-005 +2.06572 0.106141 -0.00983019 +2.05405 -0.0617 -0.0238743 +2.05372 -0.0701873 4.63034e-005 +2.05523 -0.0390232 -0.043184 +2.05778 -0.0110739 -0.0490649 +2.03288 -0.00721061 -0.0502292 +2.07332 0.0527098 -0.0410142 +2.09001 0.0825444 -0.026904 +2.10549 0.0968796 -0.0225181 +2.11722 0.118591 -0.0127607 +2.12025 0.124075 -1.98516e-005 +2.11135 0.104851 -0.0207651 +1.55227 -0.0273606 -5.29027e-005 +1.54463 -0.0196142 -3.30568e-005 +1.55227 -0.0263219 -0.00654903 +1.55227 -0.0234907 -0.0135082 +1.55227 -0.0196142 -0.0160551 +1.55227 -0.0157442 -0.0135082 +1.55227 -0.0129063 -0.00654903 +1.55227 -0.0118678 -5.29027e-005 +2.61695 -0.0436406 -6.64285e-006 +2.61691 -0.0400947 -0.0135215 +2.6168 -0.0295701 -0.0235435 +2.63069 -0.0294046 -0.023054 +2.63069 -0.0396118 -0.013237 +2.61666 -0.0209637 -0.027076 +2.63069 -0.02099 -0.0265733 +2.61653 -0.00840795 -0.0232194 +2.63069 -0.0085535 -0.0228489 +2.61644 0.000555634 -0.0134024 +2.63069 0.000370383 -0.0131973 +2.6164 0.00408149 -6.64285e-006 +2.63069 0.00384331 -6.64345e-006 +2.65107 -0.0291665 -0.0223263 +2.65119 -0.0388974 -0.0128136 +2.65093 -0.0210297 -0.025839 +2.65079 -0.00876522 -0.0223329 +2.65068 0.000112414 -0.0129195 +2.65065 0.00349939 -6.64431e-006 +2.66966 -0.0492833 -6.64517e-006 +2.66648 -0.0551443 -6.64504e-006 +2.6673 -0.0535831 -0.00706503 +2.65123 -0.0560241 -6.64437e-006 +2.6512 -0.0538148 -0.00680043 +2.63069 -0.047398 -6.64345e-006 +2.63069 -0.0460087 -0.00559649 +2.68065 -0.0288358 0.0213208 +2.67528 -0.0380573 0.0123109 +2.68468 -0.021096 0.0246218 +2.6905 -0.0091753 0.0213208 +2.69566 -0.00044322 0.0123109 +1.66808 -0.0565269 0.0270628 +1.71272 -0.0592127 0.0298213 +2.11565 -0.060033 0.0230474 +2.07821 -0.0603769 0.0234244 +2.1169 -0.0384079 0.0410539 +2.08033 -0.0387321 0.0425953 +2.11856 -0.0183506 0.0463593 +2.08327 -0.014011 0.0485423 +2.12912 0.0281808 0.0356295 +2.10076 0.0445137 0.039797 +2.14597 0.0663306 0.0230474 +2.11511 0.0800968 0.0262028 +2.16358 0.0835168 0.0207453 +2.12285 0.0963835 0.0235633 +1.66808 0.0280087 0.0239404 +1.71272 0.0371575 0.0274795 +1.71272 0.0417485 0.0098368 +2.17205 -0.0588489 0.0227364 +2.14438 -0.059603 0.0229018 +2.17205 -0.0397706 0.0393737 +2.14653 -0.039162 0.0397772 +2.17383 -0.0201235 0.0431377 +2.14817 -0.019495 0.0442888 +2.18067 -0.00374424 0.0347232 +2.15151 0.00523257 0.0346901 +2.18913 0.00450492 0.0196339 +2.15914 0.0317464 0.022538 +2.16946 0.040657 0.0108159 +1.62453 -0.0493891 0.0212282 +1.58172 -0.0374222 0.0128401 +1.62453 -0.0349878 0.0422248 +1.58172 -0.0291467 0.032302 +1.62453 -0.0157045 0.045969 +1.58172 -0.0178347 0.0338301 +1.62453 0.00290406 0.0385005 +1.58172 -0.00652921 0.0282072 +1.62453 0.0165181 0.0181058 +1.58172 0.00175297 0.0128401 +1.66808 0.0099889 0.0451884 +1.74863 -0.0620837 0.0299536 +1.78839 -0.0646371 0.0293186 +1.56382 -0.0324211 0.00935389 +1.56382 -0.02701 0.0230474 +1.56382 -0.0196142 0.0250518 +1.56382 -0.0122249 0.0208445 +1.56382 -0.00680709 0.00935389 +1.82902 -0.065722 0.029689 +1.8698 -0.0650407 0.0292789 +1.93661 -0.0656625 0.0271289 +1.93661 0.0537088 0.0445335 +1.8698 0.0527165 0.0458764 +1.8698 0.00396907 0.0538676 +1.93661 -0.000582218 0.0519293 +1.93661 0.0839071 0.0259514 +1.8698 0.0837352 0.0269371 +1.8698 0.0905356 0.0145733 +1.93661 0.0910516 0.0143351 +2.17986 0.124048 0.0164189 +2.18239 0.108073 0.0231201 +2.18492 0.0920968 0.0164189 +2.17469 0.125153 0.0164189 +2.13536 0.123923 0.0164189 +2.17469 0.109138 0.0231201 +2.13072 0.109138 0.0231201 +2.17469 0.0931156 0.0211356 +2.02969 -0.0626923 0.0243704 +1.98927 -0.0640153 0.0248864 +2.02969 -0.039645 0.0448643 +1.98952 -0.0412458 0.0463196 +1.93661 -0.0432569 0.0501102 +2.00371 0.054238 0.0438191 +2.04309 0.0547209 0.0431576 +2.05645 0.0827694 0.0276185 +2.00796 0.08441 0.0267717 +2.06044 0.0915213 0.0216648 +2.00806 0.090099 0.0204674 +2.0081 0.0933338 0.0165909 +2.06322 0.0992545 0.019065 +2.00817 0.0987914 0.00469018 +2.06572 0.106141 0.00983019 +2.05405 -0.0617 0.0238743 +2.05523 -0.0390232 0.043184 +2.05778 -0.0110739 0.0490649 +2.03288 -0.00721061 0.0502292 +2.07332 0.0527098 0.0410142 +2.09001 0.0825444 0.026904 +2.10549 0.0968796 0.0225181 +2.11722 0.118591 0.0127607 +2.11135 0.104851 0.0207651 +1.55227 -0.0263219 0.00654907 +1.55227 -0.0234907 0.0135082 +1.55227 -0.0196142 0.0160551 +1.55227 -0.0157442 0.0135082 +1.55227 -0.0129063 0.00654907 +2.61691 -0.0400947 0.0135215 +2.6168 -0.0295701 0.0235435 +2.63069 -0.0396118 0.013237 +2.63069 -0.0294046 0.023054 +2.61666 -0.0209637 0.027076 +2.63069 -0.02099 0.0265733 +2.61653 -0.00840795 0.0232194 +2.63069 -0.0085535 0.0228489 +2.61644 0.000555634 0.0134024 +2.63069 0.000370383 0.0131973 +2.65119 -0.0388974 0.0128136 +2.65107 -0.0291665 0.0223263 +2.65093 -0.0210297 0.025839 +2.65079 -0.00876522 0.0223329 +2.65068 0.000112414 0.0129195 +2.6673 -0.0535831 0.00706503 +2.6512 -0.0538148 0.00680043 +2.63069 -0.0460087 0.00559643 +2.53075 -0.000575542 -0.00237488 +2.52261 -0.000575542 3.30525e-005 +2.55394 -0.000575542 -0.00441237 +2.58863 -0.000575542 -0.0057751 +2.65547 -0.000575542 -0.00625801 +2.65666 0.00823593 -0.0057751 +2.65666 0.00823593 0.00585443 +2.58863 -0.000575542 0.00585443 +2.65547 -0.000575542 0.00633072 +2.55394 -0.000575542 0.00448508 +2.53075 -0.000575542 0.0024476 +numsurf 523 +SURF 0x30 +mat 0 +refs 3 +157 0.909641 0.214954 +148 0.892985 0.206336 +147 0.892985 0.214757 +SURF 0x30 +mat 0 +refs 3 +148 0.892985 0.206336 +157 0.909641 0.214954 +158 0.909734 0.206926 +SURF 0x30 +mat 0 +refs 3 +8 0.143009 0.183846 +10 0.106539 0.192382 +7 0.143009 0.190166 +SURF 0x30 +mat 0 +refs 3 +10 0.106539 0.192382 +8 0.143009 0.183846 +9 0.106539 0.186941 +SURF 0x30 +mat 0 +refs 3 +14 0.472201 0.189489 +12 0.441611 0.182187 +13 0.441611 0.189206 +SURF 0x30 +mat 0 +refs 3 +12 0.441611 0.182187 +14 0.472201 0.189489 +11 0.472147 0.183879 +SURF 0x30 +mat 0 +refs 3 +15 0.443346 0.207062 +14 0.472201 0.189489 +13 0.441611 0.189206 +SURF 0x30 +mat 0 +refs 3 +14 0.472201 0.189489 +15 0.443346 0.207062 +16 0.473228 0.20733 +SURF 0x30 +mat 0 +refs 3 +17 0.445751 0.227457 +16 0.473228 0.20733 +15 0.443346 0.207062 +SURF 0x30 +mat 0 +refs 3 +16 0.473228 0.20733 +17 0.445751 0.227457 +18 0.474579 0.223876 +SURF 0x30 +mat 0 +refs 3 +19 0.460035 0.275738 +18 0.474579 0.223876 +17 0.445751 0.227457 +SURF 0x30 +mat 0 +refs 3 +18 0.474579 0.223876 +19 0.460035 0.275738 +20 0.483205 0.262264 +SURF 0x30 +mat 0 +refs 3 +21 0.471763 0.305093 +20 0.483205 0.262264 +19 0.460035 0.275738 +SURF 0x30 +mat 0 +refs 3 +20 0.483205 0.262264 +21 0.471763 0.305093 +22 0.496976 0.293737 +SURF 0x30 +mat 0 +refs 3 +23 0.478087 0.318529 +22 0.496976 0.293737 +21 0.471763 0.305093 +SURF 0x30 +mat 0 +refs 3 +22 0.496976 0.293737 +23 0.478087 0.318529 +24 0.511363 0.307915 +SURF 0x30 +mat 0 +refs 3 +31 0.518281 0.190466 +33 0.495279 0.184796 +30 0.495679 0.189844 +SURF 0x30 +mat 0 +refs 3 +33 0.495279 0.184796 +31 0.518281 0.190466 +32 0.518356 0.186095 +SURF 0x30 +mat 0 +refs 3 +30 0.495679 0.189844 +11 0.472147 0.183879 +14 0.472201 0.189489 +SURF 0x30 +mat 0 +refs 3 +11 0.472147 0.183879 +30 0.495679 0.189844 +33 0.495279 0.184796 +SURF 0x30 +mat 0 +refs 3 +34 0.49743 0.206708 +31 0.518281 0.190466 +30 0.495679 0.189844 +SURF 0x30 +mat 0 +refs 3 +31 0.518281 0.190466 +34 0.49743 0.206708 +35 0.518281 0.206205 +SURF 0x30 +mat 0 +refs 3 +16 0.473228 0.20733 +30 0.495679 0.189844 +14 0.472201 0.189489 +SURF 0x30 +mat 0 +refs 3 +30 0.495679 0.189844 +16 0.473228 0.20733 +34 0.49743 0.206708 +SURF 0x30 +mat 0 +refs 3 +36 0.498775 0.222932 +35 0.518281 0.206205 +34 0.49743 0.206708 +SURF 0x30 +mat 0 +refs 3 +35 0.518281 0.206205 +36 0.498775 0.222932 +37 0.519734 0.222414 +SURF 0x30 +mat 0 +refs 3 +18 0.474579 0.223876 +34 0.49743 0.206708 +16 0.473228 0.20733 +SURF 0x30 +mat 0 +refs 3 +34 0.49743 0.206708 +18 0.474579 0.223876 +36 0.498775 0.222932 +SURF 0x30 +mat 0 +refs 3 +296 0.830281 0.23854 +287 0.811338 0.23854 +289 0.830281 0.23854 +SURF 0x30 +mat 0 +refs 3 +287 0.811338 0.23854 +296 0.830281 0.23854 +297 0.811338 0.23854 +SURF 0x30 +mat 0 +refs 3 +294 0.858628 0.23854 +289 0.830281 0.23854 +290 0.858628 0.23854 +SURF 0x30 +mat 0 +refs 3 +289 0.830281 0.23854 +294 0.858628 0.23854 +296 0.830281 0.23854 +SURF 0x30 +mat 0 +refs 3 +295 0.913236 0.23854 +290 0.858628 0.23854 +291 0.913236 0.23854 +SURF 0x30 +mat 0 +refs 3 +290 0.858628 0.23854 +295 0.913236 0.23854 +294 0.858628 0.23854 +SURF 0x30 +mat 0 +refs 3 +292 0.914208 0.24581 +295 0.913236 0.23854 +291 0.913236 0.23854 +SURF 0x30 +mat 0 +refs 3 +295 0.913236 0.23854 +292 0.914208 0.24581 +293 0.914208 0.24581 +SURF 0x30 +mat 0 +refs 3 +38 0.501499 0.243332 +37 0.519734 0.222414 +36 0.498775 0.222932 +SURF 0x30 +mat 0 +refs 3 +37 0.519734 0.222414 +38 0.501499 0.243332 +39 0.525323 0.235926 +SURF 0x30 +mat 0 +refs 3 +20 0.483205 0.262264 +36 0.498775 0.222932 +18 0.474579 0.223876 +SURF 0x30 +mat 0 +refs 3 +36 0.498775 0.222932 +20 0.483205 0.262264 +38 0.501499 0.243332 +SURF 0x30 +mat 0 +refs 3 +40 0.507736 0.265205 +39 0.525323 0.235926 +38 0.501499 0.243332 +SURF 0x30 +mat 0 +refs 3 +39 0.525323 0.235926 +40 0.507736 0.265205 +41 0.532235 0.242732 +SURF 0x30 +mat 0 +refs 3 +22 0.496976 0.293737 +38 0.501499 0.243332 +20 0.483205 0.262264 +SURF 0x30 +mat 0 +refs 3 +38 0.501499 0.243332 +22 0.496976 0.293737 +40 0.507736 0.265205 +SURF 0x30 +mat 0 +refs 3 +24 0.511363 0.307915 +42 0.521707 0.273419 +44 0.516167 0.272556 +SURF 0x30 +mat 0 +refs 3 +42 0.521707 0.273419 +24 0.511363 0.307915 +45 0.520767 0.299674 +SURF 0x30 +mat 0 +refs 3 +24 0.511363 0.307915 +40 0.507736 0.265205 +22 0.496976 0.293737 +SURF 0x30 +mat 0 +refs 3 +40 0.507736 0.265205 +24 0.511363 0.307915 +44 0.516167 0.272556 +SURF 0x30 +mat 0 +refs 3 +44 0.516167 0.272556 +41 0.532235 0.242732 +40 0.507736 0.265205 +SURF 0x30 +mat 0 +refs 3 +41 0.532235 0.242732 +44 0.516167 0.272556 +43 0.542666 0.246918 +SURF 0x30 +mat 0 +refs 3 +46 0.0709605 0.194161 +48 0.0359876 0.208143 +49 0.0709605 0.19827 +SURF 0x30 +mat 0 +refs 3 +48 0.0359876 0.208143 +46 0.0709605 0.194161 +47 0.0359876 0.205643 +SURF 0x30 +mat 0 +refs 3 +9 0.106539 0.186941 +49 0.0709605 0.19827 +10 0.106539 0.192382 +SURF 0x30 +mat 0 +refs 3 +49 0.0709605 0.19827 +9 0.106539 0.186941 +46 0.0709605 0.194161 +SURF 0x30 +mat 0 +refs 3 +49 0.0709605 0.19827 +50 0.0359876 0.21497 +51 0.0709605 0.210151 +SURF 0x30 +mat 0 +refs 3 +50 0.0359876 0.21497 +49 0.0709605 0.19827 +48 0.0359876 0.208143 +SURF 0x30 +mat 0 +refs 3 +10 0.106539 0.192382 +51 0.0709605 0.210151 +52 0.106539 0.207253 +SURF 0x30 +mat 0 +refs 3 +51 0.0709605 0.210151 +10 0.106539 0.192382 +49 0.0709605 0.19827 +SURF 0x30 +mat 0 +refs 3 +54 0.0709605 0.226059 +50 0.0359876 0.21497 +53 0.0359876 0.224302 +SURF 0x30 +mat 0 +refs 3 +50 0.0359876 0.21497 +54 0.0709605 0.226059 +51 0.0709605 0.210151 +SURF 0x30 +mat 0 +refs 3 +56 0.0709605 0.241411 +53 0.0359876 0.224302 +55 0.0359876 0.233629 +SURF 0x30 +mat 0 +refs 3 +53 0.0359876 0.224302 +56 0.0709605 0.241411 +54 0.0709605 0.226059 +SURF 0x30 +mat 0 +refs 3 +55 0.0359876 0.233629 +58 0.0709605 0.252642 +56 0.0709605 0.241411 +SURF 0x30 +mat 0 +refs 3 +58 0.0709605 0.252642 +55 0.0359876 0.233629 +57 0.0359876 0.240461 +SURF 0x30 +mat 0 +refs 3 +57 0.0359876 0.240461 +60 0.0709605 0.256757 +58 0.0709605 0.252642 +SURF 0x30 +mat 0 +refs 3 +60 0.0709605 0.256757 +57 0.0359876 0.240461 +59 0.0359876 0.242961 +SURF 0x30 +mat 0 +refs 3 +58 0.0709605 0.252642 +28 0.106539 0.267563 +27 0.106539 0.262122 +SURF 0x30 +mat 0 +refs 3 +28 0.106539 0.267563 +58 0.0709605 0.252642 +60 0.0709605 0.256757 +SURF 0x30 +mat 0 +refs 3 +61 0.17235 0.181342 +7 0.143009 0.190166 +62 0.17235 0.187798 +SURF 0x30 +mat 0 +refs 3 +7 0.143009 0.190166 +61 0.17235 0.181342 +8 0.143009 0.183846 +SURF 0x30 +mat 0 +refs 3 +63 0.204832 0.185691 +61 0.17235 0.181342 +62 0.17235 0.187798 +SURF 0x30 +mat 0 +refs 3 +61 0.17235 0.181342 +63 0.204832 0.185691 +64 0.204832 0.179082 +SURF 0x30 +mat 0 +refs 3 +62 0.17235 0.187798 +65 0.143009 0.204857 +66 0.17235 0.204159 +SURF 0x30 +mat 0 +refs 3 +65 0.143009 0.204857 +62 0.17235 0.187798 +7 0.143009 0.190166 +SURF 0x30 +mat 0 +refs 3 +63 0.204832 0.185691 +66 0.17235 0.204159 +67 0.204832 0.203755 +SURF 0x30 +mat 0 +refs 3 +66 0.17235 0.204159 +63 0.204832 0.185691 +62 0.17235 0.187798 +SURF 0x30 +mat 0 +refs 3 +47 0.0359876 0.205643 +69 0.0213628 0.212269 +48 0.0359876 0.208143 +SURF 0x30 +mat 0 +refs 3 +69 0.0213628 0.212269 +47 0.0359876 0.205643 +68 0.0213628 0.210637 +SURF 0x30 +mat 0 +refs 3 +48 0.0359876 0.208143 +70 0.0213628 0.216733 +50 0.0359876 0.21497 +SURF 0x30 +mat 0 +refs 3 +70 0.0213628 0.216733 +48 0.0359876 0.208143 +69 0.0213628 0.212269 +SURF 0x30 +mat 0 +refs 3 +53 0.0359876 0.224302 +70 0.0213628 0.216733 +71 0.0213628 0.222834 +SURF 0x30 +mat 0 +refs 3 +70 0.0213628 0.216733 +53 0.0359876 0.224302 +50 0.0359876 0.21497 +SURF 0x30 +mat 0 +refs 3 +55 0.0359876 0.233629 +71 0.0213628 0.222834 +72 0.0213628 0.22893 +SURF 0x30 +mat 0 +refs 3 +71 0.0213628 0.222834 +55 0.0359876 0.233629 +53 0.0359876 0.224302 +SURF 0x30 +mat 0 +refs 3 +72 0.0213628 0.22893 +57 0.0359876 0.240461 +55 0.0359876 0.233629 +SURF 0x30 +mat 0 +refs 3 +57 0.0359876 0.240461 +72 0.0213628 0.22893 +73 0.0213628 0.2334 +SURF 0x30 +mat 0 +refs 3 +73 0.0213628 0.2334 +59 0.0359876 0.242961 +57 0.0359876 0.240461 +SURF 0x30 +mat 0 +refs 3 +59 0.0359876 0.242961 +73 0.0213628 0.2334 +74 0.0213628 0.235031 +SURF 0x30 +mat 0 +refs 3 +75 0.238027 0.178187 +63 0.204832 0.185691 +76 0.238027 0.184796 +SURF 0x30 +mat 0 +refs 3 +63 0.204832 0.185691 +75 0.238027 0.178187 +64 0.204832 0.179082 +SURF 0x30 +mat 0 +refs 3 +77 0.271346 0.185358 +75 0.238027 0.178187 +76 0.238027 0.184796 +SURF 0x30 +mat 0 +refs 3 +75 0.238027 0.178187 +77 0.271346 0.185358 +78 0.271346 0.178809 +SURF 0x30 +mat 0 +refs 3 +80 0.271346 0.203237 +76 0.238027 0.184796 +79 0.238027 0.202855 +SURF 0x30 +mat 0 +refs 3 +76 0.238027 0.184796 +80 0.271346 0.203237 +77 0.271346 0.185358 +SURF 0x30 +mat 0 +refs 3 +82 0.325927 0.184845 +78 0.271346 0.178809 +77 0.271346 0.185358 +SURF 0x30 +mat 0 +refs 3 +78 0.271346 0.178809 +82 0.325927 0.184845 +81 0.325927 0.178078 +SURF 0x30 +mat 0 +refs 3 +83 0.325927 0.203329 +77 0.271346 0.185358 +80 0.271346 0.203237 +SURF 0x30 +mat 0 +refs 3 +77 0.271346 0.185358 +83 0.325927 0.203329 +82 0.325927 0.184845 +SURF 0x30 +mat 0 +refs 3 +87 0.325927 0.283324 +85 0.271346 0.24229 +86 0.271346 0.282505 +SURF 0x30 +mat 0 +refs 3 +85 0.271346 0.24229 +87 0.325927 0.283324 +84 0.325927 0.238535 +SURF 0x30 +mat 0 +refs 3 +89 0.325927 0.308237 +86 0.271346 0.282505 +88 0.271346 0.308095 +SURF 0x30 +mat 0 +refs 3 +86 0.271346 0.282505 +89 0.325927 0.308237 +87 0.325927 0.283324 +SURF 0x30 +mat 0 +refs 3 +93 0.271346 0.31746 +91 0.325927 0.314131 +92 0.271346 0.313705 +SURF 0x30 +mat 0 +refs 3 +91 0.325927 0.314131 +93 0.271346 0.31746 +90 0.325927 0.317869 +SURF 0x30 +mat 0 +refs 3 +92 0.271346 0.313705 +89 0.325927 0.308237 +88 0.271346 0.308095 +SURF 0x30 +mat 0 +refs 3 +89 0.325927 0.308237 +92 0.271346 0.313705 +91 0.325927 0.314131 +SURF 0x30 +mat 0 +refs 3 +100 0.520437 0.348109 +95 0.524663 0.341352 +101 0.520437 0.342264 +SURF 0x30 +mat 0 +refs 3 +95 0.524663 0.341352 +100 0.520437 0.348109 +96 0.523809 0.347192 +SURF 0x30 +mat 0 +refs 3 +286 0.892985 0.201059 +269 0.881727 0.205938 +144 0.881759 0.203013 +SURF 0x30 +mat 0 +refs 3 +269 0.881727 0.205938 +286 0.892985 0.201059 +271 0.892985 0.206336 +SURF 0x30 +mat 0 +refs 3 +285 0.909744 0.194619 +271 0.892985 0.206336 +286 0.892985 0.201059 +SURF 0x30 +mat 0 +refs 3 +271 0.892985 0.206336 +285 0.909744 0.194619 +279 0.909734 0.206926 +SURF 0x30 +mat 0 +refs 3 +285 0.909744 0.194619 +168 0.892985 0.199913 +166 0.909766 0.192797 +SURF 0x30 +mat 0 +refs 3 +168 0.892985 0.199913 +285 0.909744 0.194619 +286 0.892985 0.201059 +SURF 0x30 +mat 0 +refs 3 +285 0.909744 0.194619 +171 0.929417 0.207619 +279 0.909734 0.206926 +SURF 0x30 +mat 0 +refs 3 +171 0.929417 0.207619 +285 0.909744 0.194619 +284 0.922899 0.19481 +SURF 0x30 +mat 0 +refs 3 +284 0.922899 0.19481 +166 0.909766 0.192797 +164 0.922229 0.193522 +SURF 0x30 +mat 0 +refs 3 +166 0.909766 0.192797 +284 0.922899 0.19481 +285 0.909744 0.194619 +SURF 0x30 +mat 0 +refs 3 +163 0.924828 0.198358 +171 0.929417 0.207619 +284 0.922899 0.19481 +SURF 0x30 +mat 0 +refs 3 +171 0.929417 0.207619 +163 0.924828 0.198358 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +156 0.892985 0.242186 +283 0.909323 0.239108 +162 0.909296 0.241902 +SURF 0x30 +mat 0 +refs 3 +283 0.909323 0.239108 +156 0.892985 0.242186 +278 0.892985 0.239321 +SURF 0x30 +mat 0 +refs 3 +162 0.909296 0.241902 +174 0.946069 0.23865 +6 0.947187 0.241286 +SURF 0x30 +mat 0 +refs 3 +174 0.946069 0.23865 +162 0.909296 0.241902 +283 0.909323 0.239108 +SURF 0x30 +mat 0 +refs 3 +278 0.892985 0.239321 +282 0.909409 0.231784 +283 0.909323 0.239108 +SURF 0x30 +mat 0 +refs 3 +282 0.909409 0.231784 +278 0.892985 0.239321 +276 0.892985 0.231959 +SURF 0x30 +mat 0 +refs 3 +283 0.909323 0.239108 +173 0.941848 0.231446 +174 0.946069 0.23865 +SURF 0x30 +mat 0 +refs 3 +173 0.941848 0.231446 +283 0.909323 0.239108 +282 0.909409 0.231784 +SURF 0x30 +mat 0 +refs 3 +281 0.909523 0.221666 +276 0.892985 0.231959 +274 0.892985 0.221699 +SURF 0x30 +mat 0 +refs 3 +276 0.892985 0.231959 +281 0.909523 0.221666 +282 0.909409 0.231784 +SURF 0x30 +mat 0 +refs 3 +281 0.909523 0.221666 +173 0.941848 0.231446 +282 0.909409 0.231784 +SURF 0x30 +mat 0 +refs 3 +173 0.941848 0.231446 +281 0.909523 0.221666 +172 0.937097 0.221612 +SURF 0x30 +mat 0 +refs 3 +280 0.909641 0.214954 +274 0.892985 0.221699 +272 0.892985 0.214757 +SURF 0x30 +mat 0 +refs 3 +274 0.892985 0.221699 +280 0.909641 0.214954 +281 0.909523 0.221666 +SURF 0x30 +mat 0 +refs 3 +280 0.909641 0.214954 +172 0.937097 0.221612 +281 0.909523 0.221666 +SURF 0x30 +mat 0 +refs 3 +172 0.937097 0.221612 +280 0.909641 0.214954 +170 0.933805 0.215227 +SURF 0x30 +mat 0 +refs 3 +279 0.909734 0.206926 +272 0.892985 0.214757 +271 0.892985 0.206336 +SURF 0x30 +mat 0 +refs 3 +272 0.892985 0.214757 +279 0.909734 0.206926 +280 0.909641 0.214954 +SURF 0x30 +mat 0 +refs 3 +279 0.909734 0.206926 +170 0.933805 0.215227 +280 0.909641 0.214954 +SURF 0x30 +mat 0 +refs 3 +170 0.933805 0.215227 +279 0.909734 0.206926 +171 0.929417 0.207619 +SURF 0x30 +mat 0 +refs 3 +155 0.881316 0.242382 +278 0.892985 0.239321 +156 0.892985 0.242186 +SURF 0x30 +mat 0 +refs 3 +278 0.892985 0.239321 +155 0.881316 0.242382 +277 0.881343 0.239474 +SURF 0x30 +mat 0 +refs 3 +43 0.542666 0.246918 +277 0.881343 0.239474 +155 0.881316 0.242382 +SURF 0x30 +mat 0 +refs 3 +277 0.881343 0.239474 +43 0.542666 0.246918 +200 0.532235 0.242732 +SURF 0x30 +mat 0 +refs 3 +277 0.881343 0.239474 +276 0.892985 0.231959 +278 0.892985 0.239321 +SURF 0x30 +mat 0 +refs 3 +276 0.892985 0.231959 +277 0.881343 0.239474 +275 0.881419 0.232079 +SURF 0x30 +mat 0 +refs 3 +200 0.532235 0.242732 +275 0.881419 0.232079 +277 0.881343 0.239474 +SURF 0x30 +mat 0 +refs 3 +275 0.881419 0.232079 +200 0.532235 0.242732 +198 0.525323 0.235926 +SURF 0x30 +mat 0 +refs 3 +273 0.881527 0.221721 +276 0.892985 0.231959 +275 0.881419 0.232079 +SURF 0x30 +mat 0 +refs 3 +276 0.892985 0.231959 +273 0.881527 0.221721 +274 0.892985 0.221699 +SURF 0x30 +mat 0 +refs 3 +273 0.881527 0.221721 +198 0.525323 0.235926 +196 0.519734 0.222414 +SURF 0x30 +mat 0 +refs 3 +198 0.525323 0.235926 +273 0.881527 0.221721 +275 0.881419 0.232079 +SURF 0x30 +mat 0 +refs 3 +270 0.881641 0.214621 +274 0.892985 0.221699 +273 0.881527 0.221721 +SURF 0x30 +mat 0 +refs 3 +274 0.892985 0.221699 +270 0.881641 0.214621 +272 0.892985 0.214757 +SURF 0x30 +mat 0 +refs 3 +270 0.881641 0.214621 +196 0.519734 0.222414 +194 0.518281 0.206205 +SURF 0x30 +mat 0 +refs 3 +196 0.519734 0.222414 +270 0.881641 0.214621 +273 0.881527 0.221721 +SURF 0x30 +mat 0 +refs 3 +269 0.881727 0.205938 +272 0.892985 0.214757 +270 0.881641 0.214621 +SURF 0x30 +mat 0 +refs 3 +272 0.892985 0.214757 +269 0.881727 0.205938 +271 0.892985 0.206336 +SURF 0x30 +mat 0 +refs 3 +269 0.881727 0.205938 +194 0.518281 0.206205 +192 0.518281 0.190466 +SURF 0x30 +mat 0 +refs 3 +194 0.518281 0.206205 +269 0.881727 0.205938 +270 0.881641 0.214621 +SURF 0x30 +mat 0 +refs 3 +269 0.881727 0.205938 +32 0.518356 0.186095 +144 0.881759 0.203013 +SURF 0x30 +mat 0 +refs 3 +32 0.518356 0.186095 +269 0.881727 0.205938 +192 0.518281 0.190466 +SURF 0x30 +mat 0 +refs 3 +268 0.0119264 0.228368 +74 0.0213628 0.235031 +143 0.0119264 0.229225 +SURF 0x30 +mat 0 +refs 3 +74 0.0213628 0.235031 +268 0.0119264 0.228368 +220 0.0213628 0.2334 +SURF 0x30 +mat 0 +refs 3 +267 0.0119264 0.226027 +220 0.0213628 0.2334 +268 0.0119264 0.228368 +SURF 0x30 +mat 0 +refs 3 +220 0.0213628 0.2334 +267 0.0119264 0.226027 +219 0.0213628 0.22893 +SURF 0x30 +mat 0 +refs 3 +218 0.0213628 0.222834 +267 0.0119264 0.226027 +266 0.0119264 0.222834 +SURF 0x30 +mat 0 +refs 3 +267 0.0119264 0.226027 +218 0.0213628 0.222834 +219 0.0213628 0.22893 +SURF 0x30 +mat 0 +refs 3 +217 0.0213628 0.216733 +266 0.0119264 0.222834 +265 0.0119264 0.219636 +SURF 0x30 +mat 0 +refs 3 +266 0.0119264 0.222834 +217 0.0213628 0.216733 +218 0.0213628 0.222834 +SURF 0x30 +mat 0 +refs 3 +216 0.0213628 0.212269 +265 0.0119264 0.219636 +264 0.0119264 0.2173 +SURF 0x30 +mat 0 +refs 3 +265 0.0119264 0.219636 +216 0.0213628 0.212269 +217 0.0213628 0.216733 +SURF 0x30 +mat 0 +refs 3 +103 0.490955 0.346777 +101 0.520437 0.342264 +102 0.488307 0.341249 +SURF 0x30 +mat 0 +refs 3 +101 0.520437 0.342264 +103 0.490955 0.346777 +100 0.520437 0.348109 +SURF 0x30 +mat 0 +refs 3 +95 0.524663 0.341352 +104 0.520437 0.329051 +101 0.520437 0.342264 +SURF 0x30 +mat 0 +refs 3 +104 0.520437 0.329051 +95 0.524663 0.341352 +97 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +102 0.488307 0.341249 +104 0.520437 0.329051 +105 0.484513 0.329051 +SURF 0x30 +mat 0 +refs 3 +104 0.520437 0.329051 +102 0.488307 0.341249 +101 0.520437 0.342264 +SURF 0x30 +mat 0 +refs 3 +68 0.0213628 0.210637 +264 0.0119264 0.2173 +136 0.0119264 0.216444 +SURF 0x30 +mat 0 +refs 3 +264 0.0119264 0.2173 +68 0.0213628 0.210637 +216 0.0213628 0.212269 +SURF 0x30 +mat 0 +refs 3 +188 0.478087 0.318529 +263 0.468688 0.325515 +261 0.4639 0.318939 +SURF 0x30 +mat 0 +refs 3 +263 0.468688 0.325515 +188 0.478087 0.318529 +238 0.484513 0.329051 +SURF 0x30 +mat 0 +refs 3 +261 0.4639 0.318939 +252 0.42937 0.320898 +249 0.4271 0.314518 +SURF 0x30 +mat 0 +refs 3 +252 0.42937 0.320898 +261 0.4639 0.318939 +263 0.468688 0.325515 +SURF 0x30 +mat 0 +refs 3 +238 0.484513 0.329051 +262 0.473487 0.33685 +263 0.468688 0.325515 +SURF 0x30 +mat 0 +refs 3 +262 0.473487 0.33685 +238 0.484513 0.329051 +236 0.488307 0.341249 +SURF 0x30 +mat 0 +refs 3 +263 0.468688 0.325515 +254 0.431407 0.326579 +252 0.42937 0.320898 +SURF 0x30 +mat 0 +refs 3 +254 0.431407 0.326579 +263 0.468688 0.325515 +262 0.473487 0.33685 +SURF 0x30 +mat 0 +refs 3 +134 0.475963 0.341374 +236 0.488307 0.341249 +103 0.490955 0.346777 +SURF 0x30 +mat 0 +refs 3 +236 0.488307 0.341249 +134 0.475963 0.341374 +262 0.473487 0.33685 +SURF 0x30 +mat 0 +refs 3 +123 0.432861 0.329422 +262 0.473487 0.33685 +134 0.475963 0.341374 +SURF 0x30 +mat 0 +refs 3 +262 0.473487 0.33685 +123 0.432861 0.329422 +254 0.431407 0.326579 +SURF 0x30 +mat 0 +refs 3 +260 0.451258 0.307113 +249 0.4271 0.314518 +247 0.423841 0.307298 +SURF 0x30 +mat 0 +refs 3 +249 0.4271 0.314518 +260 0.451258 0.307113 +261 0.4639 0.318939 +SURF 0x30 +mat 0 +refs 3 +186 0.471763 0.305093 +261 0.4639 0.318939 +260 0.451258 0.307113 +SURF 0x30 +mat 0 +refs 3 +261 0.4639 0.318939 +186 0.471763 0.305093 +188 0.478087 0.318529 +SURF 0x30 +mat 0 +refs 3 +259 0.437617 0.2825 +247 0.423841 0.307298 +246 0.412924 0.284159 +SURF 0x30 +mat 0 +refs 3 +247 0.423841 0.307298 +259 0.437617 0.2825 +260 0.451258 0.307113 +SURF 0x30 +mat 0 +refs 3 +184 0.460035 0.275738 +260 0.451258 0.307113 +259 0.437617 0.2825 +SURF 0x30 +mat 0 +refs 3 +260 0.451258 0.307113 +184 0.460035 0.275738 +186 0.471763 0.305093 +SURF 0x30 +mat 0 +refs 3 +97 0.526733 0.328173 +106 0.520437 0.315834 +104 0.520437 0.329051 +SURF 0x30 +mat 0 +refs 3 +106 0.520437 0.315834 +97 0.526733 0.328173 +98 0.528798 0.314993 +SURF 0x30 +mat 0 +refs 3 +106 0.520437 0.315834 +99 0.529657 0.30953 +45 0.520767 0.299674 +SURF 0x30 +mat 0 +refs 3 +99 0.529657 0.30953 +106 0.520437 0.315834 +98 0.528798 0.314993 +SURF 0x30 +mat 0 +refs 3 +108 0.401974 0.187296 +110 0.368871 0.179328 +107 0.368952 0.186204 +SURF 0x30 +mat 0 +refs 3 +110 0.368871 0.179328 +108 0.401974 0.187296 +109 0.401974 0.180332 +SURF 0x30 +mat 0 +refs 3 +257 0.424927 0.22988 +246 0.412924 0.284159 +258 0.404579 0.233067 +SURF 0x30 +mat 0 +refs 3 +246 0.412924 0.284159 +257 0.424927 0.22988 +259 0.437617 0.2825 +SURF 0x30 +mat 0 +refs 3 +182 0.445751 0.227457 +259 0.437617 0.2825 +257 0.424927 0.22988 +SURF 0x30 +mat 0 +refs 3 +259 0.437617 0.2825 +182 0.445751 0.227457 +184 0.460035 0.275738 +SURF 0x30 +mat 0 +refs 3 +256 0.422841 0.206822 +258 0.404579 0.233067 +242 0.401974 0.206309 +SURF 0x30 +mat 0 +refs 3 +258 0.404579 0.233067 +256 0.422841 0.206822 +257 0.424927 0.22988 +SURF 0x30 +mat 0 +refs 3 +180 0.443346 0.207062 +257 0.424927 0.22988 +256 0.422841 0.206822 +SURF 0x30 +mat 0 +refs 3 +257 0.424927 0.22988 +180 0.443346 0.207062 +182 0.445751 0.227457 +SURF 0x30 +mat 0 +refs 3 +255 0.421879 0.188114 +242 0.401974 0.206309 +240 0.401974 0.187296 +SURF 0x30 +mat 0 +refs 3 +242 0.401974 0.206309 +255 0.421879 0.188114 +256 0.422841 0.206822 +SURF 0x30 +mat 0 +refs 3 +178 0.441611 0.189206 +256 0.422841 0.206822 +255 0.421879 0.188114 +SURF 0x30 +mat 0 +refs 3 +256 0.422841 0.206822 +178 0.441611 0.189206 +180 0.443346 0.207062 +SURF 0x30 +mat 0 +refs 3 +255 0.421879 0.188114 +109 0.401974 0.180332 +126 0.421604 0.181112 +SURF 0x30 +mat 0 +refs 3 +109 0.401974 0.180332 +255 0.421879 0.188114 +240 0.401974 0.187296 +SURF 0x30 +mat 0 +refs 3 +178 0.441611 0.189206 +126 0.421604 0.181112 +12 0.441611 0.182187 +SURF 0x30 +mat 0 +refs 3 +126 0.421604 0.181112 +178 0.441611 0.189206 +255 0.421879 0.188114 +SURF 0x30 +mat 0 +refs 3 +239 0.520437 0.315834 +238 0.484513 0.329051 +188 0.478087 0.318529 +SURF 0x30 +mat 0 +refs 3 +238 0.484513 0.329051 +239 0.520437 0.315834 +237 0.520437 0.329051 +SURF 0x30 +mat 0 +refs 3 +251 0.384339 0.316014 +254 0.431407 0.326579 +253 0.384393 0.320516 +SURF 0x30 +mat 0 +refs 3 +254 0.431407 0.326579 +251 0.384339 0.316014 +252 0.42937 0.320898 +SURF 0x30 +mat 0 +refs 3 +231 0.325927 0.314131 +253 0.384393 0.320516 +90 0.325927 0.317869 +SURF 0x30 +mat 0 +refs 3 +253 0.384393 0.320516 +231 0.325927 0.314131 +251 0.384339 0.316014 +SURF 0x30 +mat 0 +refs 3 +107 0.368952 0.186204 +81 0.325927 0.178078 +82 0.325927 0.184845 +SURF 0x30 +mat 0 +refs 3 +81 0.325927 0.178078 +107 0.368952 0.186204 +110 0.368871 0.179328 +SURF 0x30 +mat 0 +refs 3 +111 0.369158 0.204988 +108 0.401974 0.187296 +107 0.368952 0.186204 +SURF 0x30 +mat 0 +refs 3 +108 0.401974 0.187296 +111 0.369158 0.204988 +112 0.401974 0.206309 +SURF 0x30 +mat 0 +refs 3 +111 0.369158 0.204988 +82 0.325927 0.184845 +83 0.325927 0.203329 +SURF 0x30 +mat 0 +refs 3 +82 0.325927 0.184845 +111 0.369158 0.204988 +107 0.368952 0.186204 +SURF 0x30 +mat 0 +refs 3 +113 0.38422 0.308652 +115 0.412924 0.284159 +116 0.38075 0.28376 +SURF 0x30 +mat 0 +refs 3 +115 0.412924 0.284159 +113 0.38422 0.308652 +114 0.423841 0.307298 +SURF 0x30 +mat 0 +refs 3 +122 0.384415 0.321908 +254 0.431407 0.326579 +123 0.432861 0.329422 +SURF 0x30 +mat 0 +refs 3 +254 0.431407 0.326579 +122 0.384415 0.321908 +253 0.384393 0.320516 +SURF 0x30 +mat 0 +refs 3 +249 0.4271 0.314518 +251 0.384339 0.316014 +250 0.384307 0.313345 +SURF 0x30 +mat 0 +refs 3 +251 0.384339 0.316014 +249 0.4271 0.314518 +252 0.42937 0.320898 +SURF 0x30 +mat 0 +refs 3 +228 0.325927 0.308237 +250 0.384307 0.313345 +231 0.325927 0.314131 +SURF 0x30 +mat 0 +refs 3 +250 0.384307 0.313345 +228 0.325927 0.308237 +248 0.38422 0.308652 +SURF 0x30 +mat 0 +refs 3 +247 0.423841 0.307298 +250 0.384307 0.313345 +248 0.38422 0.308652 +SURF 0x30 +mat 0 +refs 3 +250 0.384307 0.313345 +247 0.423841 0.307298 +249 0.4271 0.314518 +SURF 0x30 +mat 0 +refs 3 +245 0.38075 0.28376 +228 0.325927 0.308237 +224 0.325927 0.283324 +SURF 0x30 +mat 0 +refs 3 +228 0.325927 0.308237 +245 0.38075 0.28376 +248 0.38422 0.308652 +SURF 0x30 +mat 0 +refs 3 +246 0.412924 0.284159 +248 0.38422 0.308652 +245 0.38075 0.28376 +SURF 0x30 +mat 0 +refs 3 +248 0.38422 0.308652 +246 0.412924 0.284159 +247 0.423841 0.307298 +SURF 0x30 +mat 0 +refs 3 +113 0.38422 0.308652 +87 0.325927 0.283324 +89 0.325927 0.308237 +SURF 0x30 +mat 0 +refs 3 +87 0.325927 0.283324 +113 0.38422 0.308652 +116 0.38075 0.28376 +SURF 0x30 +mat 0 +refs 3 +117 0.384307 0.313345 +114 0.423841 0.307298 +113 0.38422 0.308652 +SURF 0x30 +mat 0 +refs 3 +114 0.423841 0.307298 +117 0.384307 0.313345 +118 0.4271 0.314518 +SURF 0x30 +mat 0 +refs 3 +89 0.325927 0.308237 +117 0.384307 0.313345 +113 0.38422 0.308652 +SURF 0x30 +mat 0 +refs 3 +117 0.384307 0.313345 +89 0.325927 0.308237 +91 0.325927 0.314131 +SURF 0x30 +mat 0 +refs 3 +119 0.384339 0.316014 +118 0.4271 0.314518 +117 0.384307 0.313345 +SURF 0x30 +mat 0 +refs 3 +118 0.4271 0.314518 +119 0.384339 0.316014 +120 0.42937 0.320898 +SURF 0x30 +mat 0 +refs 3 +121 0.384393 0.320516 +123 0.432861 0.329422 +124 0.431407 0.326579 +SURF 0x30 +mat 0 +refs 3 +123 0.432861 0.329422 +121 0.384393 0.320516 +122 0.384415 0.321908 +SURF 0x30 +mat 0 +refs 3 +243 0.369158 0.204988 +223 0.325927 0.184845 +241 0.368952 0.186204 +SURF 0x30 +mat 0 +refs 3 +223 0.325927 0.184845 +243 0.369158 0.204988 +244 0.325927 0.203329 +SURF 0x30 +mat 0 +refs 3 +240 0.401974 0.187296 +243 0.369158 0.204988 +241 0.368952 0.186204 +SURF 0x30 +mat 0 +refs 3 +243 0.369158 0.204988 +240 0.401974 0.187296 +242 0.401974 0.206309 +SURF 0x30 +mat 0 +refs 3 +110 0.368871 0.179328 +223 0.325927 0.184845 +81 0.325927 0.178078 +SURF 0x30 +mat 0 +refs 3 +223 0.325927 0.184845 +110 0.368871 0.179328 +241 0.368952 0.186204 +SURF 0x30 +mat 0 +refs 3 +109 0.401974 0.180332 +241 0.368952 0.186204 +110 0.368871 0.179328 +SURF 0x30 +mat 0 +refs 3 +241 0.368952 0.186204 +109 0.401974 0.180332 +240 0.401974 0.187296 +SURF 0x30 +mat 0 +refs 3 +99 0.529657 0.30953 +239 0.520437 0.315834 +45 0.520767 0.299674 +SURF 0x30 +mat 0 +refs 3 +239 0.520437 0.315834 +99 0.529657 0.30953 +234 0.528798 0.314993 +SURF 0x30 +mat 0 +refs 3 +234 0.528798 0.314993 +237 0.520437 0.329051 +239 0.520437 0.315834 +SURF 0x30 +mat 0 +refs 3 +237 0.520437 0.329051 +234 0.528798 0.314993 +233 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +237 0.520437 0.329051 +236 0.488307 0.341249 +238 0.484513 0.329051 +SURF 0x30 +mat 0 +refs 3 +236 0.488307 0.341249 +237 0.520437 0.329051 +235 0.520437 0.342264 +SURF 0x30 +mat 0 +refs 3 +233 0.526733 0.328173 +235 0.520437 0.342264 +237 0.520437 0.329051 +SURF 0x30 +mat 0 +refs 3 +235 0.520437 0.342264 +233 0.526733 0.328173 +232 0.524663 0.341352 +SURF 0x30 +mat 0 +refs 3 +103 0.490955 0.346777 +235 0.520437 0.342264 +100 0.520437 0.348109 +SURF 0x30 +mat 0 +refs 3 +235 0.520437 0.342264 +103 0.490955 0.346777 +236 0.488307 0.341249 +SURF 0x30 +mat 0 +refs 3 +100 0.520437 0.348109 +232 0.524663 0.341352 +96 0.523809 0.347192 +SURF 0x30 +mat 0 +refs 3 +232 0.524663 0.341352 +100 0.520437 0.348109 +235 0.520437 0.342264 +SURF 0x30 +mat 0 +refs 3 +91 0.325927 0.314131 +121 0.384393 0.320516 +119 0.384339 0.316014 +SURF 0x30 +mat 0 +refs 3 +121 0.384393 0.320516 +91 0.325927 0.314131 +90 0.325927 0.317869 +SURF 0x30 +mat 0 +refs 3 +119 0.384339 0.316014 +124 0.431407 0.326579 +120 0.42937 0.320898 +SURF 0x30 +mat 0 +refs 3 +124 0.431407 0.326579 +119 0.384339 0.316014 +121 0.384393 0.320516 +SURF 0x30 +mat 0 +refs 3 +105 0.484513 0.329051 +106 0.520437 0.315834 +23 0.478087 0.318529 +SURF 0x30 +mat 0 +refs 3 +106 0.520437 0.315834 +105 0.484513 0.329051 +104 0.520437 0.329051 +SURF 0x30 +mat 0 +refs 3 +230 0.271346 0.313705 +228 0.325927 0.308237 +231 0.325927 0.314131 +SURF 0x30 +mat 0 +refs 3 +228 0.325927 0.308237 +230 0.271346 0.313705 +229 0.271346 0.308095 +SURF 0x30 +mat 0 +refs 3 +93 0.271346 0.31746 +231 0.325927 0.314131 +90 0.325927 0.317869 +SURF 0x30 +mat 0 +refs 3 +231 0.325927 0.314131 +93 0.271346 0.31746 +230 0.271346 0.313705 +SURF 0x30 +mat 0 +refs 3 +224 0.325927 0.283324 +229 0.271346 0.308095 +225 0.271346 0.282505 +SURF 0x30 +mat 0 +refs 3 +229 0.271346 0.308095 +224 0.325927 0.283324 +228 0.325927 0.308237 +SURF 0x30 +mat 0 +refs 3 +227 0.325927 0.238535 +225 0.271346 0.282505 +226 0.271346 0.24229 +SURF 0x30 +mat 0 +refs 3 +225 0.271346 0.282505 +227 0.325927 0.238535 +224 0.325927 0.283324 +SURF 0x30 +mat 0 +refs 3 +13 0.441611 0.189206 +126 0.421604 0.181112 +125 0.421879 0.188114 +SURF 0x30 +mat 0 +refs 3 +126 0.421604 0.181112 +13 0.441611 0.189206 +12 0.441611 0.182187 +SURF 0x30 +mat 0 +refs 3 +81 0.325927 0.178078 +222 0.271346 0.185358 +78 0.271346 0.178809 +SURF 0x30 +mat 0 +refs 3 +222 0.271346 0.185358 +81 0.325927 0.178078 +223 0.325927 0.184845 +SURF 0x30 +mat 0 +refs 3 +125 0.421879 0.188114 +109 0.401974 0.180332 +108 0.401974 0.187296 +SURF 0x30 +mat 0 +refs 3 +109 0.401974 0.180332 +125 0.421879 0.188114 +126 0.421604 0.181112 +SURF 0x30 +mat 0 +refs 3 +127 0.422841 0.206822 +13 0.441611 0.189206 +125 0.421879 0.188114 +SURF 0x30 +mat 0 +refs 3 +13 0.441611 0.189206 +127 0.422841 0.206822 +15 0.443346 0.207062 +SURF 0x30 +mat 0 +refs 3 +127 0.422841 0.206822 +108 0.401974 0.187296 +112 0.401974 0.206309 +SURF 0x30 +mat 0 +refs 3 +108 0.401974 0.187296 +127 0.422841 0.206822 +125 0.421879 0.188114 +SURF 0x30 +mat 0 +refs 3 +128 0.424927 0.22988 +15 0.443346 0.207062 +127 0.422841 0.206822 +SURF 0x30 +mat 0 +refs 3 +15 0.443346 0.207062 +128 0.424927 0.22988 +17 0.445751 0.227457 +SURF 0x30 +mat 0 +refs 3 +129 0.404579 0.233067 +127 0.422841 0.206822 +112 0.401974 0.206309 +SURF 0x30 +mat 0 +refs 3 +127 0.422841 0.206822 +129 0.404579 0.233067 +128 0.424927 0.22988 +SURF 0x30 +mat 0 +refs 3 +130 0.437617 0.2825 +17 0.445751 0.227457 +128 0.424927 0.22988 +SURF 0x30 +mat 0 +refs 3 +17 0.445751 0.227457 +130 0.437617 0.2825 +19 0.460035 0.275738 +SURF 0x30 +mat 0 +refs 3 +115 0.412924 0.284159 +128 0.424927 0.22988 +129 0.404579 0.233067 +SURF 0x30 +mat 0 +refs 3 +128 0.424927 0.22988 +115 0.412924 0.284159 +130 0.437617 0.2825 +SURF 0x30 +mat 0 +refs 3 +131 0.451258 0.307113 +19 0.460035 0.275738 +130 0.437617 0.2825 +SURF 0x30 +mat 0 +refs 3 +19 0.460035 0.275738 +131 0.451258 0.307113 +21 0.471763 0.305093 +SURF 0x30 +mat 0 +refs 3 +114 0.423841 0.307298 +130 0.437617 0.2825 +115 0.412924 0.284159 +SURF 0x30 +mat 0 +refs 3 +130 0.437617 0.2825 +114 0.423841 0.307298 +131 0.451258 0.307113 +SURF 0x30 +mat 0 +refs 3 +132 0.4639 0.318939 +21 0.471763 0.305093 +131 0.451258 0.307113 +SURF 0x30 +mat 0 +refs 3 +21 0.471763 0.305093 +132 0.4639 0.318939 +23 0.478087 0.318529 +SURF 0x30 +mat 0 +refs 3 +118 0.4271 0.314518 +131 0.451258 0.307113 +114 0.423841 0.307298 +SURF 0x30 +mat 0 +refs 3 +131 0.451258 0.307113 +118 0.4271 0.314518 +132 0.4639 0.318939 +SURF 0x30 +mat 0 +refs 3 +124 0.431407 0.326579 +134 0.475963 0.341374 +133 0.473487 0.33685 +SURF 0x30 +mat 0 +refs 3 +134 0.475963 0.341374 +124 0.431407 0.326579 +123 0.432861 0.329422 +SURF 0x30 +mat 0 +refs 3 +133 0.473487 0.33685 +103 0.490955 0.346777 +102 0.488307 0.341249 +SURF 0x30 +mat 0 +refs 3 +103 0.490955 0.346777 +133 0.473487 0.33685 +134 0.475963 0.341374 +SURF 0x30 +mat 0 +refs 3 +124 0.431407 0.326579 +135 0.468688 0.325515 +120 0.42937 0.320898 +SURF 0x30 +mat 0 +refs 3 +135 0.468688 0.325515 +124 0.431407 0.326579 +133 0.473487 0.33685 +SURF 0x30 +mat 0 +refs 3 +133 0.473487 0.33685 +105 0.484513 0.329051 +135 0.468688 0.325515 +SURF 0x30 +mat 0 +refs 3 +105 0.484513 0.329051 +133 0.473487 0.33685 +102 0.488307 0.341249 +SURF 0x30 +mat 0 +refs 3 +222 0.271346 0.185358 +75 0.238027 0.178187 +78 0.271346 0.178809 +SURF 0x30 +mat 0 +refs 3 +75 0.238027 0.178187 +222 0.271346 0.185358 +221 0.238027 0.184796 +SURF 0x30 +mat 0 +refs 3 +221 0.238027 0.184796 +64 0.204832 0.179082 +75 0.238027 0.178187 +SURF 0x30 +mat 0 +refs 3 +64 0.204832 0.179082 +221 0.238027 0.184796 +215 0.204832 0.185691 +SURF 0x30 +mat 0 +refs 3 +220 0.0213628 0.2334 +59 0.0359876 0.242961 +74 0.0213628 0.235031 +SURF 0x30 +mat 0 +refs 3 +59 0.0359876 0.242961 +220 0.0213628 0.2334 +212 0.0359876 0.240461 +SURF 0x30 +mat 0 +refs 3 +219 0.0213628 0.22893 +212 0.0359876 0.240461 +220 0.0213628 0.2334 +SURF 0x30 +mat 0 +refs 3 +212 0.0359876 0.240461 +219 0.0213628 0.22893 +210 0.0359876 0.233629 +SURF 0x30 +mat 0 +refs 3 +208 0.0359876 0.224302 +219 0.0213628 0.22893 +218 0.0213628 0.222834 +SURF 0x30 +mat 0 +refs 3 +219 0.0213628 0.22893 +208 0.0359876 0.224302 +210 0.0359876 0.233629 +SURF 0x30 +mat 0 +refs 3 +120 0.42937 0.320898 +132 0.4639 0.318939 +118 0.4271 0.314518 +SURF 0x30 +mat 0 +refs 3 +132 0.4639 0.318939 +120 0.42937 0.320898 +135 0.468688 0.325515 +SURF 0x30 +mat 0 +refs 3 +135 0.468688 0.325515 +23 0.478087 0.318529 +132 0.4639 0.318939 +SURF 0x30 +mat 0 +refs 3 +23 0.478087 0.318529 +135 0.468688 0.325515 +105 0.484513 0.329051 +SURF 0x30 +mat 0 +refs 3 +206 0.0359876 0.21497 +218 0.0213628 0.222834 +217 0.0213628 0.216733 +SURF 0x30 +mat 0 +refs 3 +218 0.0213628 0.222834 +206 0.0359876 0.21497 +208 0.0359876 0.224302 +SURF 0x30 +mat 0 +refs 3 +204 0.0359876 0.208143 +217 0.0213628 0.216733 +216 0.0213628 0.212269 +SURF 0x30 +mat 0 +refs 3 +217 0.0213628 0.216733 +204 0.0359876 0.208143 +206 0.0359876 0.21497 +SURF 0x30 +mat 0 +refs 3 +47 0.0359876 0.205643 +216 0.0213628 0.212269 +68 0.0213628 0.210637 +SURF 0x30 +mat 0 +refs 3 +216 0.0213628 0.212269 +47 0.0359876 0.205643 +204 0.0359876 0.208143 +SURF 0x30 +mat 0 +refs 3 +68 0.0213628 0.210637 +138 0.0119264 0.2173 +69 0.0213628 0.212269 +SURF 0x30 +mat 0 +refs 3 +138 0.0119264 0.2173 +68 0.0213628 0.210637 +136 0.0119264 0.216444 +SURF 0x30 +mat 0 +refs 3 +69 0.0213628 0.212269 +139 0.0119264 0.219636 +70 0.0213628 0.216733 +SURF 0x30 +mat 0 +refs 3 +139 0.0119264 0.219636 +69 0.0213628 0.212269 +138 0.0119264 0.2173 +SURF 0x30 +mat 0 +refs 3 +71 0.0213628 0.222834 +139 0.0119264 0.219636 +140 0.0119264 0.222834 +SURF 0x30 +mat 0 +refs 3 +139 0.0119264 0.219636 +71 0.0213628 0.222834 +70 0.0213628 0.216733 +SURF 0x30 +mat 0 +refs 3 +72 0.0213628 0.22893 +140 0.0119264 0.222834 +141 0.0119264 0.226027 +SURF 0x30 +mat 0 +refs 3 +140 0.0119264 0.222834 +72 0.0213628 0.22893 +71 0.0213628 0.222834 +SURF 0x30 +mat 0 +refs 3 +141 0.0119264 0.226027 +73 0.0213628 0.2334 +72 0.0213628 0.22893 +SURF 0x30 +mat 0 +refs 3 +73 0.0213628 0.2334 +141 0.0119264 0.226027 +142 0.0119264 0.228368 +SURF 0x30 +mat 0 +refs 3 +142 0.0119264 0.228368 +74 0.0213628 0.235031 +73 0.0213628 0.2334 +SURF 0x30 +mat 0 +refs 3 +74 0.0213628 0.235031 +142 0.0119264 0.228368 +143 0.0119264 0.229225 +SURF 0x30 +mat 0 +refs 3 +145 0.881727 0.205938 +32 0.518356 0.186095 +31 0.518281 0.190466 +SURF 0x30 +mat 0 +refs 3 +32 0.518356 0.186095 +145 0.881727 0.205938 +144 0.881759 0.203013 +SURF 0x30 +mat 0 +refs 3 +215 0.204832 0.185691 +61 0.17235 0.181342 +64 0.204832 0.179082 +SURF 0x30 +mat 0 +refs 3 +61 0.17235 0.181342 +215 0.204832 0.185691 +214 0.17235 0.187798 +SURF 0x30 +mat 0 +refs 3 +61 0.17235 0.181342 +176 0.143009 0.190166 +8 0.143009 0.183846 +SURF 0x30 +mat 0 +refs 3 +176 0.143009 0.190166 +61 0.17235 0.181342 +214 0.17235 0.187798 +SURF 0x30 +mat 0 +refs 3 +211 0.0709605 0.252642 +28 0.106539 0.267563 +60 0.0709605 0.256757 +SURF 0x30 +mat 0 +refs 3 +28 0.106539 0.267563 +211 0.0709605 0.252642 +189 0.106539 0.262122 +SURF 0x30 +mat 0 +refs 3 +59 0.0359876 0.242961 +211 0.0709605 0.252642 +60 0.0709605 0.256757 +SURF 0x30 +mat 0 +refs 3 +211 0.0709605 0.252642 +59 0.0359876 0.242961 +212 0.0359876 0.240461 +SURF 0x30 +mat 0 +refs 3 +209 0.0709605 0.241411 +189 0.106539 0.262122 +211 0.0709605 0.252642 +SURF 0x30 +mat 0 +refs 3 +189 0.106539 0.262122 +209 0.0709605 0.241411 +213 0.106539 0.247256 +SURF 0x30 +mat 0 +refs 3 +210 0.0359876 0.233629 +211 0.0709605 0.252642 +212 0.0359876 0.240461 +SURF 0x30 +mat 0 +refs 3 +211 0.0709605 0.252642 +210 0.0359876 0.233629 +209 0.0709605 0.241411 +SURF 0x30 +mat 0 +refs 3 +146 0.881641 0.214621 +31 0.518281 0.190466 +35 0.518281 0.206205 +SURF 0x30 +mat 0 +refs 3 +31 0.518281 0.190466 +146 0.881641 0.214621 +145 0.881727 0.205938 +SURF 0x30 +mat 0 +refs 3 +207 0.0709605 0.226059 +210 0.0359876 0.233629 +208 0.0359876 0.224302 +SURF 0x30 +mat 0 +refs 3 +210 0.0359876 0.233629 +207 0.0709605 0.226059 +209 0.0709605 0.241411 +SURF 0x30 +mat 0 +refs 3 +147 0.892985 0.214757 +145 0.881727 0.205938 +146 0.881641 0.214621 +SURF 0x30 +mat 0 +refs 3 +145 0.881727 0.205938 +147 0.892985 0.214757 +148 0.892985 0.206336 +SURF 0x30 +mat 0 +refs 3 +205 0.0709605 0.210151 +208 0.0359876 0.224302 +206 0.0359876 0.21497 +SURF 0x30 +mat 0 +refs 3 +208 0.0359876 0.224302 +205 0.0709605 0.210151 +207 0.0709605 0.226059 +SURF 0x30 +mat 0 +refs 3 +37 0.519734 0.222414 +146 0.881641 0.214621 +35 0.518281 0.206205 +SURF 0x30 +mat 0 +refs 3 +146 0.881641 0.214621 +37 0.519734 0.222414 +149 0.881527 0.221721 +SURF 0x30 +mat 0 +refs 3 +203 0.0709605 0.19827 +206 0.0359876 0.21497 +204 0.0359876 0.208143 +SURF 0x30 +mat 0 +refs 3 +206 0.0359876 0.21497 +203 0.0709605 0.19827 +205 0.0709605 0.210151 +SURF 0x30 +mat 0 +refs 3 +9 0.106539 0.186941 +203 0.0709605 0.19827 +46 0.0709605 0.194161 +SURF 0x30 +mat 0 +refs 3 +203 0.0709605 0.19827 +9 0.106539 0.186941 +175 0.106539 0.192382 +SURF 0x30 +mat 0 +refs 3 +203 0.0709605 0.19827 +47 0.0359876 0.205643 +46 0.0709605 0.194161 +SURF 0x30 +mat 0 +refs 3 +47 0.0359876 0.205643 +203 0.0709605 0.19827 +204 0.0359876 0.208143 +SURF 0x30 +mat 0 +refs 3 +202 0.516167 0.272556 +200 0.532235 0.242732 +43 0.542666 0.246918 +SURF 0x30 +mat 0 +refs 3 +200 0.532235 0.242732 +202 0.516167 0.272556 +201 0.507736 0.265205 +SURF 0x30 +mat 0 +refs 3 +201 0.507736 0.265205 +187 0.511363 0.307915 +185 0.496976 0.293737 +SURF 0x30 +mat 0 +refs 3 +187 0.511363 0.307915 +201 0.507736 0.265205 +202 0.516167 0.272556 +SURF 0x30 +mat 0 +refs 3 +42 0.521707 0.273419 +187 0.511363 0.307915 +202 0.516167 0.272556 +SURF 0x30 +mat 0 +refs 3 +187 0.511363 0.307915 +42 0.521707 0.273419 +45 0.520767 0.299674 +SURF 0x30 +mat 0 +refs 3 +199 0.501499 0.243332 +185 0.496976 0.293737 +183 0.483205 0.262264 +SURF 0x30 +mat 0 +refs 3 +185 0.496976 0.293737 +199 0.501499 0.243332 +201 0.507736 0.265205 +SURF 0x30 +mat 0 +refs 3 +198 0.525323 0.235926 +201 0.507736 0.265205 +199 0.501499 0.243332 +SURF 0x30 +mat 0 +refs 3 +201 0.507736 0.265205 +198 0.525323 0.235926 +200 0.532235 0.242732 +SURF 0x30 +mat 0 +refs 3 +197 0.498775 0.222932 +183 0.483205 0.262264 +181 0.474579 0.223876 +SURF 0x30 +mat 0 +refs 3 +183 0.483205 0.262264 +197 0.498775 0.222932 +199 0.501499 0.243332 +SURF 0x30 +mat 0 +refs 3 +196 0.519734 0.222414 +199 0.501499 0.243332 +197 0.498775 0.222932 +SURF 0x30 +mat 0 +refs 3 +199 0.501499 0.243332 +196 0.519734 0.222414 +198 0.525323 0.235926 +SURF 0x30 +mat 0 +refs 3 +195 0.49743 0.206708 +181 0.474579 0.223876 +179 0.473228 0.20733 +SURF 0x30 +mat 0 +refs 3 +181 0.474579 0.223876 +195 0.49743 0.206708 +197 0.498775 0.222932 +SURF 0x30 +mat 0 +refs 3 +194 0.518281 0.206205 +197 0.498775 0.222932 +195 0.49743 0.206708 +SURF 0x30 +mat 0 +refs 3 +197 0.498775 0.222932 +194 0.518281 0.206205 +196 0.519734 0.222414 +SURF 0x30 +mat 0 +refs 3 +193 0.495679 0.189844 +179 0.473228 0.20733 +177 0.472201 0.189489 +SURF 0x30 +mat 0 +refs 3 +179 0.473228 0.20733 +193 0.495679 0.189844 +195 0.49743 0.206708 +SURF 0x30 +mat 0 +refs 3 +192 0.518281 0.190466 +195 0.49743 0.206708 +193 0.495679 0.189844 +SURF 0x30 +mat 0 +refs 3 +195 0.49743 0.206708 +192 0.518281 0.190466 +194 0.518281 0.206205 +SURF 0x30 +mat 0 +refs 3 +33 0.495279 0.184796 +177 0.472201 0.189489 +11 0.472147 0.183879 +SURF 0x30 +mat 0 +refs 3 +177 0.472201 0.189489 +33 0.495279 0.184796 +193 0.495679 0.189844 +SURF 0x30 +mat 0 +refs 3 +192 0.518281 0.190466 +33 0.495279 0.184796 +32 0.518356 0.186095 +SURF 0x30 +mat 0 +refs 3 +33 0.495279 0.184796 +192 0.518281 0.190466 +193 0.495679 0.189844 +SURF 0x30 +mat 0 +refs 3 +185 0.496976 0.293737 +188 0.478087 0.318529 +186 0.471763 0.305093 +SURF 0x30 +mat 0 +refs 3 +188 0.478087 0.318529 +185 0.496976 0.293737 +187 0.511363 0.307915 +SURF 0x30 +mat 0 +refs 3 +183 0.483205 0.262264 +186 0.471763 0.305093 +184 0.460035 0.275738 +SURF 0x30 +mat 0 +refs 3 +186 0.471763 0.305093 +183 0.483205 0.262264 +185 0.496976 0.293737 +SURF 0x30 +mat 0 +refs 3 +181 0.474579 0.223876 +184 0.460035 0.275738 +182 0.445751 0.227457 +SURF 0x30 +mat 0 +refs 3 +184 0.460035 0.275738 +181 0.474579 0.223876 +183 0.483205 0.262264 +SURF 0x30 +mat 0 +refs 3 +179 0.473228 0.20733 +182 0.445751 0.227457 +180 0.443346 0.207062 +SURF 0x30 +mat 0 +refs 3 +182 0.445751 0.227457 +179 0.473228 0.20733 +181 0.474579 0.223876 +SURF 0x30 +mat 0 +refs 3 +177 0.472201 0.189489 +180 0.443346 0.207062 +178 0.441611 0.189206 +SURF 0x30 +mat 0 +refs 3 +180 0.443346 0.207062 +177 0.472201 0.189489 +179 0.473228 0.20733 +SURF 0x30 +mat 0 +refs 3 +177 0.472201 0.189489 +12 0.441611 0.182187 +11 0.472147 0.183879 +SURF 0x30 +mat 0 +refs 3 +12 0.441611 0.182187 +177 0.472201 0.189489 +178 0.441611 0.189206 +SURF 0x30 +mat 0 +refs 3 +150 0.892985 0.221699 +146 0.881641 0.214621 +149 0.881527 0.221721 +SURF 0x30 +mat 0 +refs 3 +146 0.881641 0.214621 +150 0.892985 0.221699 +147 0.892985 0.214757 +SURF 0x30 +mat 0 +refs 3 +39 0.525323 0.235926 +149 0.881527 0.221721 +37 0.519734 0.222414 +SURF 0x30 +mat 0 +refs 3 +149 0.881527 0.221721 +39 0.525323 0.235926 +151 0.881419 0.232079 +SURF 0x30 +mat 0 +refs 3 +152 0.892985 0.231959 +149 0.881527 0.221721 +151 0.881419 0.232079 +SURF 0x30 +mat 0 +refs 3 +149 0.881527 0.221721 +152 0.892985 0.231959 +150 0.892985 0.221699 +SURF 0x30 +mat 0 +refs 3 +41 0.532235 0.242732 +151 0.881419 0.232079 +39 0.525323 0.235926 +SURF 0x30 +mat 0 +refs 3 +151 0.881419 0.232079 +41 0.532235 0.242732 +153 0.881343 0.239474 +SURF 0x30 +mat 0 +refs 3 +8 0.143009 0.183846 +175 0.106539 0.192382 +9 0.106539 0.186941 +SURF 0x30 +mat 0 +refs 3 +175 0.106539 0.192382 +8 0.143009 0.183846 +176 0.143009 0.190166 +SURF 0x30 +mat 0 +refs 3 +148 0.892985 0.206336 +144 0.881759 0.203013 +145 0.881727 0.205938 +SURF 0x30 +mat 0 +refs 3 +144 0.881759 0.203013 +148 0.892985 0.206336 +169 0.892985 0.201059 +SURF 0x30 +mat 0 +refs 3 +158 0.909734 0.206926 +169 0.892985 0.201059 +148 0.892985 0.206336 +SURF 0x30 +mat 0 +refs 3 +169 0.892985 0.201059 +158 0.909734 0.206926 +167 0.909744 0.194619 +SURF 0x30 +mat 0 +refs 3 +166 0.909766 0.192797 +169 0.892985 0.201059 +167 0.909744 0.194619 +SURF 0x30 +mat 0 +refs 3 +169 0.892985 0.201059 +166 0.909766 0.192797 +168 0.892985 0.199913 +SURF 0x30 +mat 0 +refs 3 +1 0.929417 0.207619 +167 0.909744 0.194619 +158 0.909734 0.206926 +SURF 0x30 +mat 0 +refs 3 +167 0.909744 0.194619 +1 0.929417 0.207619 +165 0.922899 0.19481 +SURF 0x30 +mat 0 +refs 3 +164 0.922229 0.193522 +167 0.909744 0.194619 +165 0.922899 0.19481 +SURF 0x30 +mat 0 +refs 3 +167 0.909744 0.194619 +164 0.922229 0.193522 +166 0.909766 0.192797 +SURF 0x30 +mat 0 +refs 3 +1 0.929417 0.207619 +163 0.924828 0.198358 +165 0.922899 0.19481 +SURF 0x30 +mat 0 +refs 3 +163 0.924828 0.198358 +1 0.929417 0.207619 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +156 0.892985 0.242186 +161 0.909323 0.239108 +154 0.892985 0.239321 +SURF 0x30 +mat 0 +refs 3 +161 0.909323 0.239108 +156 0.892985 0.242186 +162 0.909296 0.241902 +SURF 0x30 +mat 0 +refs 3 +162 0.909296 0.241902 +5 0.946069 0.23865 +161 0.909323 0.239108 +SURF 0x30 +mat 0 +refs 3 +5 0.946069 0.23865 +162 0.909296 0.241902 +6 0.947187 0.241286 +SURF 0x30 +mat 0 +refs 3 +154 0.892985 0.239321 +160 0.909409 0.231784 +152 0.892985 0.231959 +SURF 0x30 +mat 0 +refs 3 +160 0.909409 0.231784 +154 0.892985 0.239321 +161 0.909323 0.239108 +SURF 0x30 +mat 0 +refs 3 +161 0.909323 0.239108 +4 0.941848 0.231446 +160 0.909409 0.231784 +SURF 0x30 +mat 0 +refs 3 +4 0.941848 0.231446 +161 0.909323 0.239108 +5 0.946069 0.23865 +SURF 0x30 +mat 0 +refs 3 +160 0.909409 0.231784 +150 0.892985 0.221699 +152 0.892985 0.231959 +SURF 0x30 +mat 0 +refs 3 +150 0.892985 0.221699 +160 0.909409 0.231784 +159 0.909523 0.221666 +SURF 0x30 +mat 0 +refs 3 +153 0.881343 0.239474 +152 0.892985 0.231959 +151 0.881419 0.232079 +SURF 0x30 +mat 0 +refs 3 +152 0.892985 0.231959 +153 0.881343 0.239474 +154 0.892985 0.239321 +SURF 0x30 +mat 0 +refs 3 +43 0.542666 0.246918 +153 0.881343 0.239474 +41 0.532235 0.242732 +SURF 0x30 +mat 0 +refs 3 +153 0.881343 0.239474 +43 0.542666 0.246918 +155 0.881316 0.242382 +SURF 0x30 +mat 0 +refs 3 +155 0.881316 0.242382 +154 0.892985 0.239321 +153 0.881343 0.239474 +SURF 0x30 +mat 0 +refs 3 +154 0.892985 0.239321 +155 0.881316 0.242382 +156 0.892985 0.242186 +SURF 0x30 +mat 0 +refs 3 +2 0.933805 0.215227 +158 0.909734 0.206926 +157 0.909641 0.214954 +SURF 0x30 +mat 0 +refs 3 +158 0.909734 0.206926 +2 0.933805 0.215227 +1 0.929417 0.207619 +SURF 0x30 +mat 0 +refs 3 +4 0.941848 0.231446 +159 0.909523 0.221666 +160 0.909409 0.231784 +SURF 0x30 +mat 0 +refs 3 +159 0.909523 0.221666 +4 0.941848 0.231446 +3 0.937097 0.221612 +SURF 0x30 +mat 0 +refs 3 +159 0.909523 0.221666 +147 0.892985 0.214757 +150 0.892985 0.221699 +SURF 0x30 +mat 0 +refs 3 +147 0.892985 0.214757 +159 0.909523 0.221666 +157 0.909641 0.214954 +SURF 0x30 +mat 0 +refs 3 +3 0.937097 0.221612 +157 0.909641 0.214954 +159 0.909523 0.221666 +SURF 0x30 +mat 0 +refs 3 +157 0.909641 0.214954 +3 0.937097 0.221612 +2 0.933805 0.215227 +SURF 0x30 +mat 0 +refs 3 +0 0.937178 0.221175 +1 0.929417 0.207619 +2 0.933805 0.215227 +SURF 0x30 +mat 0 +refs 3 +0 0.937178 0.221175 +2 0.933805 0.215227 +3 0.937097 0.221612 +SURF 0x30 +mat 0 +refs 3 +0 0.937178 0.221175 +3 0.937097 0.221612 +4 0.941848 0.231446 +SURF 0x30 +mat 0 +refs 3 +0 0.937178 0.221175 +4 0.941848 0.231446 +5 0.946069 0.23865 +SURF 0x30 +mat 0 +refs 3 +0 0.937178 0.221175 +5 0.946069 0.23865 +6 0.947187 0.241286 +SURF 0x30 +mat 0 +refs 3 +25 0.143009 0.273457 +26 0.143009 0.269669 +27 0.106539 0.262122 +SURF 0x30 +mat 0 +refs 3 +27 0.106539 0.262122 +28 0.106539 0.267563 +25 0.143009 0.273457 +SURF 0x30 +mat 0 +refs 3 +25 0.143009 0.273457 +28 0.106539 0.267563 +29 0.143009 0.275624 +SURF 0x30 +mat 0 +refs 3 +287 0.811338 0.23854 +297 0.811338 0.23854 +288 0.804685 0.23854 +SURF 0x30 +mat 0 +refs 3 +42 0.521707 0.273419 +43 0.542666 0.246918 +44 0.516167 0.272556 +SURF 0x30 +mat 0 +refs 3 +94 0.526733 0.328173 +95 0.524663 0.341352 +96 0.523809 0.347192 +SURF 0x30 +mat 0 +refs 3 +94 0.526733 0.328173 +97 0.526733 0.328173 +95 0.524663 0.341352 +SURF 0x30 +mat 0 +refs 3 +94 0.526733 0.328173 +98 0.528798 0.314993 +97 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +94 0.526733 0.328173 +99 0.529657 0.30953 +98 0.528798 0.314993 +SURF 0x30 +mat 0 +refs 3 +168 0.892985 0.199913 +286 0.892985 0.201059 +144 0.881759 0.203013 +SURF 0x30 +mat 0 +refs 3 +284 0.922899 0.19481 +164 0.922229 0.193522 +163 0.924828 0.198358 +SURF 0x30 +mat 0 +refs 3 +143 0.0119264 0.229225 +137 0.00568414 0.222834 +268 0.0119264 0.228368 +SURF 0x30 +mat 0 +refs 3 +268 0.0119264 0.228368 +137 0.00568414 0.222834 +267 0.0119264 0.226027 +SURF 0x30 +mat 0 +refs 3 +267 0.0119264 0.226027 +137 0.00568414 0.222834 +266 0.0119264 0.222834 +SURF 0x30 +mat 0 +refs 3 +266 0.0119264 0.222834 +137 0.00568414 0.222834 +265 0.0119264 0.219636 +SURF 0x30 +mat 0 +refs 3 +265 0.0119264 0.219636 +137 0.00568414 0.222834 +264 0.0119264 0.2173 +SURF 0x30 +mat 0 +refs 3 +264 0.0119264 0.2173 +137 0.00568414 0.222834 +136 0.0119264 0.216444 +SURF 0x30 +mat 0 +refs 3 +24 0.511363 0.307915 +106 0.520437 0.315834 +45 0.520767 0.299674 +SURF 0x30 +mat 0 +refs 3 +187 0.511363 0.307915 +239 0.520437 0.315834 +188 0.478087 0.318529 +SURF 0x30 +mat 0 +refs 3 +122 0.384415 0.321908 +90 0.325927 0.317869 +253 0.384393 0.320516 +SURF 0x30 +mat 0 +refs 3 +251 0.384339 0.316014 +231 0.325927 0.314131 +250 0.384307 0.313345 +SURF 0x30 +mat 0 +refs 3 +117 0.384307 0.313345 +91 0.325927 0.314131 +119 0.384339 0.316014 +SURF 0x30 +mat 0 +refs 3 +121 0.384393 0.320516 +90 0.325927 0.317869 +122 0.384415 0.321908 +SURF 0x30 +mat 0 +refs 3 +45 0.520767 0.299674 +239 0.520437 0.315834 +187 0.511363 0.307915 +SURF 0x30 +mat 0 +refs 3 +234 0.528798 0.314993 +99 0.529657 0.30953 +94 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +233 0.526733 0.328173 +234 0.528798 0.314993 +94 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +232 0.524663 0.341352 +233 0.526733 0.328173 +94 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +96 0.523809 0.347192 +232 0.524663 0.341352 +94 0.526733 0.328173 +SURF 0x30 +mat 0 +refs 3 +23 0.478087 0.318529 +106 0.520437 0.315834 +24 0.511363 0.307915 +SURF 0x30 +mat 0 +refs 3 +136 0.0119264 0.216444 +137 0.00568414 0.222834 +138 0.0119264 0.2173 +SURF 0x30 +mat 0 +refs 3 +138 0.0119264 0.2173 +137 0.00568414 0.222834 +139 0.0119264 0.219636 +SURF 0x30 +mat 0 +refs 3 +139 0.0119264 0.219636 +137 0.00568414 0.222834 +140 0.0119264 0.222834 +SURF 0x30 +mat 0 +refs 3 +140 0.0119264 0.222834 +137 0.00568414 0.222834 +141 0.0119264 0.226027 +SURF 0x30 +mat 0 +refs 3 +141 0.0119264 0.226027 +137 0.00568414 0.222834 +142 0.0119264 0.228368 +SURF 0x30 +mat 0 +refs 3 +142 0.0119264 0.228368 +137 0.00568414 0.222834 +143 0.0119264 0.229225 +SURF 0x30 +mat 0 +refs 3 +202 0.516167 0.272556 +43 0.542666 0.246918 +42 0.521707 0.273419 +SURF 0x30 +mat 0 +refs 3 +29 0.143009 0.275624 +28 0.106539 0.267563 +191 0.143009 0.273457 +SURF 0x30 +mat 0 +refs 3 +191 0.143009 0.273457 +28 0.106539 0.267563 +189 0.106539 0.262122 +SURF 0x30 +mat 0 +refs 3 +189 0.106539 0.262122 +190 0.143009 0.269669 +191 0.143009 0.273457 +SURF 0x30 +mat 0 +refs 3 +6 0.947187 0.241286 +174 0.946069 0.23865 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +174 0.946069 0.23865 +173 0.941848 0.231446 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +173 0.941848 0.231446 +172 0.937097 0.221612 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +172 0.937097 0.221612 +170 0.933805 0.215227 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +170 0.933805 0.215227 +171 0.929417 0.207619 +0 0.937178 0.221175 +SURF 0x30 +mat 0 +refs 3 +144 0.881759 0.203013 +169 0.892985 0.201059 +168 0.892985 0.199913 +SURF 0x30 +mat 0 +refs 3 +163 0.924828 0.198358 +164 0.922229 0.193522 +165 0.922899 0.19481 +kids 0 +OBJECT poly +name "RWing" +loc -0.0200908 0.142409 -0.45335 +texture "wing.jpg" +crease 45.000000 +numvert 243 +-0.0656525 -0.0336944 0.355815 +-0.0194785 -0.0321863 0.355815 +0.0658444 -0.0379944 0.355815 +0.0267023 -0.0336944 0.355815 +-0.0654409 -0.033959 0.267972 +-0.0194785 -0.0324707 0.267972 +0.0654541 -0.0381995 0.267972 +0.0264905 -0.033959 0.267972 +-0.0647727 -0.0332447 0.181835 +-0.0194785 -0.0317894 0.181835 +0.0642236 -0.0373791 0.181835 +0.0258224 -0.0332447 0.181835 +-0.0645346 -0.031108 0.0982192 +-0.0194785 -0.0297056 0.0982192 +0.0637871 -0.0351036 0.0982192 +0.0255843 -0.031108 0.0982192 +-0.101778 -0.0322193 0.0179437 +-0.0640185 -0.028409 0.0179437 +-0.0194785 -0.0270727 0.0179437 +0.0628278 -0.0322193 0.0179437 +0.0250684 -0.028409 0.0179437 +-0.0984044 -0.0279392 -0.0582237 +-0.0945279 -0.0229844 -0.129549 +-0.0617165 -0.0243472 -0.0582237 +-0.0184532 -0.0230904 -0.0582237 +0.0615048 -0.0279392 -0.0582237 +0.0248236 -0.0243472 -0.0582237 +-0.0586801 -0.0196438 -0.129549 +-0.0545985 -0.0150727 -0.19535 +-0.0163957 -0.0184664 -0.129549 +-0.0143451 -0.014001 -0.19535 +0.0607572 -0.0229844 -0.129549 +0.0249096 -0.0196438 -0.129549 +0.0259084 -0.0150727 -0.19535 +0.0600362 -0.018129 -0.19535 +-0.130958 -0.044431 0.355815 +-0.104801 -0.0379944 0.355815 +0.0920009 -0.044431 0.355815 +0.121783 -0.0520185 0.355815 +0.0920009 -0.059613 0.355815 +0.0658444 -0.0660495 0.355815 +0.0267023 -0.0703493 0.355815 +-0.0194785 -0.0718576 0.355815 +-0.0656525 -0.0703493 0.355815 +-0.104801 -0.0660495 0.355815 +-0.14014 -0.0520185 0.355815 +-0.130958 -0.059613 0.355815 +-0.130442 -0.0445435 0.267972 +-0.104404 -0.0381995 0.267972 +0.0914916 -0.0445435 0.267972 +0.121233 -0.0520185 0.267972 +0.0914916 -0.0595005 0.267972 +0.0654541 -0.0658444 0.267972 +0.0264905 -0.0700847 0.267972 +-0.0194785 -0.0715731 0.267972 +-0.0654409 -0.0700847 0.267972 +-0.104404 -0.0658444 0.267972 +-0.139584 -0.0520185 0.267972 +-0.130442 -0.0595005 0.267972 +-0.128828 -0.0435644 0.181835 +-0.0647728 -0.0332447 0.181835 +-0.103174 -0.0373791 0.181835 +0.0898774 -0.0435644 0.181835 +0.119487 -0.0508676 0.181835 +0.0898774 -0.0581642 0.181835 +0.0642236 -0.0643493 0.181835 +0.0258224 -0.0684904 0.181835 +-0.0194785 -0.0699393 0.181835 +-0.0647728 -0.0684904 0.181835 +-0.103174 -0.0643493 0.181835 +-0.137844 -0.0508676 0.181835 +-0.128828 -0.0581642 0.181835 +-0.128259 -0.041077 0.0982192 +-0.102737 -0.0351036 0.0982192 +0.063787 -0.0351036 0.0982192 +0.0893085 -0.041077 0.0982192 +0.118865 -0.0481223 0.0982192 +0.0893085 -0.0551674 0.0982192 +0.063787 -0.0611409 0.0982192 +0.0255843 -0.0651366 0.0982192 +-0.0194785 -0.0665389 0.0982192 +-0.0645346 -0.0651366 0.0982192 +-0.102737 -0.0611409 0.0982192 +-0.137222 -0.0481223 0.0982192 +-0.128259 -0.0551674 0.0982192 +-0.127009 -0.0379282 0.0179437 +0.0880583 -0.0379282 0.0179437 +0.117516 -0.0446492 0.0179437 +0.0880583 -0.0513769 0.0179437 +0.0628278 -0.0570792 0.0179437 +0.0250684 -0.0608962 0.0179437 +-0.0194785 -0.0622325 0.0179437 +-0.0640185 -0.0608962 0.0179437 +-0.101778 -0.0570792 0.0179437 +-0.135866 -0.0446492 0.0179437 +-0.127009 -0.0513769 0.0179437 +-0.122914 -0.0333174 -0.0582237 +0.0860142 -0.0333174 -0.0582237 +0.115214 -0.0396613 -0.0582237 +0.0860142 -0.0460054 -0.0582237 +0.0615048 -0.0513836 -0.0582237 +0.0248236 -0.0549756 -0.0582237 +-0.0184532 -0.0562325 -0.0582237 +-0.0617165 -0.0549756 -0.0582237 +-0.0984044 -0.0513836 -0.0582237 +-0.13152 -0.0396613 -0.0582237 +-0.122914 -0.0460054 -0.0582237 +-0.118482 -0.027979 -0.129549 +0.0847043 -0.027979 -0.129549 +0.113712 -0.0338798 -0.129549 +0.0847043 -0.0397738 -0.129549 +0.0607572 -0.0447749 -0.129549 +0.0249096 -0.0481156 -0.129549 +-0.0163957 -0.0492866 -0.129549 +-0.0586801 -0.0481156 -0.129549 +-0.0945279 -0.0447749 -0.129549 +-0.126889 -0.0338798 -0.129549 +-0.118482 -0.0397738 -0.129549 +-0.111529 -0.0227001 -0.19535 +-0.0887264 -0.018129 -0.19535 +0.0828389 -0.0227001 -0.19535 +0.111436 -0.0280915 -0.19535 +0.0828389 -0.0334895 -0.19535 +0.0600362 -0.0380605 -0.19535 +0.0259084 -0.0411168 -0.19535 +-0.0143451 -0.0421885 -0.19535 +-0.0545985 -0.0411168 -0.19535 +-0.0887264 -0.0380605 -0.19535 +-0.119533 -0.0280915 -0.19535 +-0.111529 -0.0334895 -0.19535 +-0.097002 -0.0147949 -0.251586 +-0.075926 -0.0106934 -0.251586 +-0.044378 -0.00794816 -0.251586 +-0.00716762 -0.00698888 -0.251586 +0.0300496 -0.00794816 -0.251586 +0.0615975 -0.0106934 -0.251586 +0.0826735 -0.0147949 -0.251586 +0.110669 -0.0196306 -0.251586 +0.0826735 -0.024473 -0.251586 +0.0615975 -0.0285743 -0.251586 +0.0300496 -0.0313131 -0.251586 +-0.00716762 -0.0322789 -0.251586 +-0.044378 -0.0313131 -0.251586 +-0.075926 -0.0285743 -0.251586 +-0.104404 -0.0196306 -0.251586 +-0.097002 -0.024473 -0.251586 +-0.0809403 -0.00700223 -0.296543 +-0.0618224 -0.0034101 -0.296543 +-0.0332117 -0.00100887 -0.296543 +0.000532538 -0.000168681 -0.296543 +0.0342766 -0.00100887 -0.296543 +0.0648455 -0.0034101 -0.296543 +0.0839635 -0.00700223 -0.296543 +0.111271 -0.0112425 -0.296543 +0.0839635 -0.0154763 -0.296543 +0.0648455 -0.0190682 -0.296543 +0.0342766 -0.0214696 -0.296543 +0.000532538 -0.0223163 -0.296543 +-0.0332117 -0.0214696 -0.296543 +-0.0618224 -0.0190682 -0.296543 +-0.0876481 -0.0112425 -0.296543 +-0.0809403 -0.0154763 -0.296543 +-0.0585875 0.00605631 -0.340309 +-0.0415401 0.00930429 -0.340309 +-0.0160254 0.0114807 -0.340309 +0.0140738 0.0122415 -0.340309 +0.044173 0.0114807 -0.340309 +0.0696878 0.00930429 -0.340309 +0.0867352 0.00605631 -0.340309 +0.113322 0.00221944 -0.340309 +0.0867352 -0.00161731 -0.340309 +0.0696878 -0.00487208 -0.340309 +0.044173 -0.00704849 -0.340309 +0.0140738 -0.00780928 -0.340309 +-0.0160254 -0.00704849 -0.340309 +-0.0415401 -0.00487208 -0.340309 +-0.0645743 0.00221944 -0.340309 +-0.0585875 -0.00161731 -0.340309 +-0.0308831 0.0218798 -0.378274 +-0.0165479 0.024645 -0.378274 +0.0048985 0.0264906 -0.378274 +0.0302016 0.0271388 -0.378274 +0.0555048 0.0264906 -0.378274 +0.0769513 0.024645 -0.378274 +0.0912865 0.0218798 -0.378274 +0.116914 0.0186251 -0.378274 +0.0912865 0.0153705 -0.378274 +0.0769513 0.0126053 -0.378274 +0.0555048 0.0107597 -0.378274 +0.0302016 0.0101113 -0.378274 +0.0048985 0.0107597 -0.378274 +-0.0165479 0.0126053 -0.378274 +-0.0359106 0.0186251 -0.378274 +-0.0308831 0.0153705 -0.378274 +-0.00171669 0.0398997 -0.408194 +0.0107266 0.0421952 -0.408194 +0.0293417 0.0437232 -0.408194 +0.0512976 0.044259 -0.408194 +0.0732601 0.0437232 -0.408194 +0.0918752 0.0421952 -0.408194 +0.104312 0.0398997 -0.408194 +0.129278 0.0372006 -0.408194 +0.104312 0.034495 -0.408194 +0.0918752 0.0322062 -0.408194 +0.0732601 0.0306715 -0.408194 +0.0512976 0.0301355 -0.408194 +0.0293417 0.0306715 -0.408194 +0.0107266 0.0322062 -0.408194 +-0.00608265 0.0372006 -0.408194 +-0.00171669 0.034495 -0.408194 +0.0348192 0.0571718 -0.429773 +0.044431 0.0588521 -0.429773 +0.0588124 0.0599701 -0.429773 +0.0757871 0.0603603 -0.429773 +0.092755 0.0599701 -0.429773 +0.107143 0.0588521 -0.429773 +0.116755 0.0571718 -0.429773 +0.140722 0.0551939 -0.429773 +0.116755 0.0532159 -0.429773 +0.107143 0.0515424 -0.429773 +0.092755 0.0504243 -0.429773 +0.0757871 0.0500275 -0.429773 +0.0588124 0.0504243 -0.429773 +0.044431 0.0515424 -0.429773 +0.0314388 0.0551939 -0.429773 +0.0348192 0.0532159 -0.429773 +0.0696217 0.067022 -0.440152 +0.0749072 0.0679547 -0.440152 +0.0828124 0.0685831 -0.440152 +0.0921398 0.0688014 -0.440152 +0.101467 0.0685831 -0.440152 +0.109372 0.0679547 -0.440152 +0.114651 0.067022 -0.440152 +0.135483 0.0659173 -0.440152 +0.114651 0.0648125 -0.440152 +0.109372 0.0638797 -0.440152 +0.101467 0.0632513 -0.440152 +0.0921398 0.063033 -0.440152 +0.0828124 0.0632513 -0.440152 +0.0749072 0.0638797 -0.440152 +0.0677628 0.0659173 -0.440152 +0.0696217 0.0648125 -0.440152 +0.108684 0.071957 -0.444512 +numsurf 464 +SURF 0x30 +mat 0 +refs 3 +26 0.565707 0.47417 +18 0.4871 0.52664 +20 0.4871 0.47388 +SURF 0x30 +mat 0 +refs 3 +18 0.4871 0.52664 +26 0.565707 0.47417 +24 0.565707 0.525425 +SURF 0x30 +mat 0 +refs 3 +25 0.565707 0.430725 +20 0.4871 0.47388 +19 0.4871 0.429159 +SURF 0x30 +mat 0 +refs 3 +20 0.4871 0.47388 +25 0.565707 0.430725 +26 0.565707 0.47417 +SURF 0x30 +mat 0 +refs 3 +27 0.639317 0.573069 +21 0.565707 0.620117 +23 0.565707 0.576665 +SURF 0x30 +mat 0 +refs 3 +21 0.565707 0.620117 +27 0.639317 0.573069 +22 0.639317 0.615526 +SURF 0x30 +mat 0 +refs 3 +29 0.639317 0.522988 +23 0.565707 0.576665 +24 0.565707 0.525425 +SURF 0x30 +mat 0 +refs 3 +23 0.565707 0.576665 +29 0.639317 0.522988 +27 0.639317 0.573069 +SURF 0x30 +mat 0 +refs 3 +32 0.639317 0.474068 +24 0.565707 0.525425 +26 0.565707 0.47417 +SURF 0x30 +mat 0 +refs 3 +24 0.565707 0.525425 +32 0.639317 0.474068 +29 0.639317 0.522988 +SURF 0x30 +mat 0 +refs 3 +31 0.639317 0.431611 +26 0.565707 0.47417 +25 0.565707 0.430725 +SURF 0x30 +mat 0 +refs 3 +26 0.565707 0.47417 +31 0.639317 0.431611 +32 0.639317 0.474068 +SURF 0x30 +mat 0 +refs 3 +23 0.565707 0.576665 +16 0.4871 0.624113 +17 0.4871 0.579392 +SURF 0x30 +mat 0 +refs 3 +16 0.4871 0.624113 +23 0.565707 0.576665 +21 0.565707 0.620117 +SURF 0x30 +mat 0 +refs 3 +30 0.707226 0.52056 +27 0.639317 0.573069 +29 0.639317 0.522988 +SURF 0x30 +mat 0 +refs 3 +27 0.639317 0.573069 +30 0.707226 0.52056 +28 0.707226 0.568235 +SURF 0x30 +mat 0 +refs 3 +33 0.707226 0.472885 +29 0.639317 0.522988 +32 0.639317 0.474068 +SURF 0x30 +mat 0 +refs 3 +29 0.639317 0.522988 +33 0.707226 0.472885 +30 0.707226 0.52056 +SURF 0x30 +mat 0 +refs 3 +34 0.707226 0.432465 +32 0.639317 0.474068 +31 0.639317 0.431611 +SURF 0x30 +mat 0 +refs 3 +32 0.639317 0.474068 +34 0.707226 0.432465 +33 0.707226 0.472885 +SURF 0x30 +mat 0 +refs 3 +19 0.4871 0.429159 +15 0.404253 0.473269 +14 0.404253 0.428023 +SURF 0x30 +mat 0 +refs 3 +15 0.404253 0.473269 +19 0.4871 0.429159 +20 0.4871 0.47388 +SURF 0x30 +mat 0 +refs 3 +20 0.4871 0.47388 +13 0.404253 0.52664 +15 0.404253 0.473269 +SURF 0x30 +mat 0 +refs 3 +13 0.404253 0.52664 +20 0.4871 0.47388 +18 0.4871 0.52664 +SURF 0x30 +mat 0 +refs 3 +18 0.4871 0.52664 +12 0.404253 0.580003 +13 0.404253 0.52664 +SURF 0x30 +mat 0 +refs 3 +12 0.404253 0.580003 +18 0.4871 0.52664 +17 0.4871 0.579392 +SURF 0x30 +mat 0 +refs 3 +14 0.404253 0.428023 +11 0.317959 0.472987 +10 0.317959 0.427505 +SURF 0x30 +mat 0 +refs 3 +11 0.317959 0.472987 +14 0.404253 0.428023 +15 0.404253 0.473269 +SURF 0x30 +mat 0 +refs 3 +15 0.404253 0.473269 +9 0.317959 0.52664 +11 0.317959 0.472987 +SURF 0x30 +mat 0 +refs 3 +9 0.317959 0.52664 +15 0.404253 0.473269 +13 0.404253 0.52664 +SURF 0x30 +mat 0 +refs 3 +13 0.404253 0.52664 +8 0.317959 0.580285 +9 0.317959 0.52664 +SURF 0x30 +mat 0 +refs 3 +8 0.317959 0.580285 +13 0.404253 0.52664 +12 0.404253 0.580003 +SURF 0x30 +mat 0 +refs 3 +10 0.317959 0.427505 +7 0.229063 0.472195 +6 0.229063 0.426048 +SURF 0x30 +mat 0 +refs 3 +7 0.229063 0.472195 +10 0.317959 0.427505 +11 0.317959 0.472987 +SURF 0x30 +mat 0 +refs 3 +11 0.317959 0.472987 +5 0.229063 0.52664 +7 0.229063 0.472195 +SURF 0x30 +mat 0 +refs 3 +5 0.229063 0.52664 +11 0.317959 0.472987 +9 0.317959 0.52664 +SURF 0x30 +mat 0 +refs 3 +9 0.317959 0.52664 +4 0.229063 0.581076 +5 0.229063 0.52664 +SURF 0x30 +mat 0 +refs 3 +4 0.229063 0.581076 +9 0.317959 0.52664 +8 0.317959 0.580285 +SURF 0x30 +mat 0 +refs 3 +6 0.229063 0.426048 +3 0.138406 0.471945 +2 0.138406 0.425586 +SURF 0x30 +mat 0 +refs 3 +3 0.138406 0.471945 +6 0.229063 0.426048 +7 0.229063 0.472195 +SURF 0x30 +mat 0 +refs 3 +7 0.229063 0.472195 +1 0.138406 0.52664 +3 0.138406 0.471945 +SURF 0x30 +mat 0 +refs 3 +1 0.138406 0.52664 +7 0.229063 0.472195 +5 0.229063 0.52664 +SURF 0x30 +mat 0 +refs 3 +5 0.229063 0.52664 +0 0.138406 0.581327 +1 0.138406 0.52664 +SURF 0x30 +mat 0 +refs 3 +0 0.138406 0.581327 +5 0.229063 0.52664 +4 0.229063 0.581076 +SURF 0x30 +mat 0 +refs 3 +24 0.565707 0.525425 +17 0.4871 0.579392 +18 0.4871 0.52664 +SURF 0x30 +mat 0 +refs 3 +17 0.4871 0.579392 +24 0.565707 0.525425 +23 0.565707 0.576665 +SURF 0x30 +mat 0 +refs 3 +240 0.959666 0.445493 +225 0.948963 0.480667 +224 0.948963 0.484276 +SURF 0x30 +mat 0 +refs 3 +225 0.948963 0.480667 +240 0.959666 0.445493 +241 0.959666 0.443508 +SURF 0x30 +mat 0 +refs 3 +241 0.959666 0.443508 +223 0.948963 0.470404 +225 0.948963 0.480667 +SURF 0x30 +mat 0 +refs 3 +223 0.948963 0.470404 +241 0.959666 0.443508 +239 0.959666 0.437865 +SURF 0x30 +mat 0 +refs 3 +239 0.959666 0.437865 +222 0.948963 0.455049 +223 0.948963 0.470404 +SURF 0x30 +mat 0 +refs 3 +222 0.948963 0.455049 +239 0.959666 0.437865 +238 0.959666 0.429425 +SURF 0x30 +mat 0 +refs 3 +238 0.959666 0.429425 +221 0.948963 0.436926 +222 0.948963 0.455049 +SURF 0x30 +mat 0 +refs 3 +221 0.948963 0.436926 +238 0.959666 0.429425 +237 0.959666 0.419466 +SURF 0x30 +mat 0 +refs 3 +237 0.959666 0.419466 +220 0.948963 0.418809 +221 0.948963 0.436926 +SURF 0x30 +mat 0 +refs 3 +220 0.948963 0.418809 +237 0.959666 0.419466 +236 0.959666 0.409507 +SURF 0x30 +mat 0 +refs 3 +236 0.959666 0.409507 +219 0.948963 0.403447 +220 0.948963 0.418809 +SURF 0x30 +mat 0 +refs 3 +219 0.948963 0.403447 +236 0.959666 0.409507 +235 0.959666 0.401067 +SURF 0x30 +mat 0 +refs 3 +235 0.959666 0.401067 +218 0.948963 0.393184 +219 0.948963 0.403447 +SURF 0x30 +mat 0 +refs 3 +218 0.948963 0.393184 +235 0.959666 0.401067 +234 0.959666 0.39543 +SURF 0x30 +mat 0 +refs 3 +233 0.959666 0.373189 +218 0.948963 0.393184 +234 0.959666 0.39543 +SURF 0x30 +mat 0 +refs 3 +218 0.948963 0.393184 +233 0.959666 0.373189 +217 0.948963 0.367595 +SURF 0x30 +mat 0 +refs 3 +216 0.948963 0.393184 +233 0.959666 0.373189 +232 0.959666 0.39543 +SURF 0x30 +mat 0 +refs 3 +233 0.959666 0.373189 +216 0.948963 0.393184 +217 0.948963 0.367595 +SURF 0x30 +mat 0 +refs 3 +215 0.948963 0.403447 +232 0.959666 0.39543 +231 0.959666 0.401067 +SURF 0x30 +mat 0 +refs 3 +232 0.959666 0.39543 +215 0.948963 0.403447 +216 0.948963 0.393184 +SURF 0x30 +mat 0 +refs 3 +214 0.948963 0.418809 +231 0.959666 0.401067 +230 0.959666 0.409507 +SURF 0x30 +mat 0 +refs 3 +231 0.959666 0.401067 +214 0.948963 0.418809 +215 0.948963 0.403447 +SURF 0x30 +mat 0 +refs 3 +213 0.948963 0.436926 +230 0.959666 0.409507 +229 0.959666 0.419466 +SURF 0x30 +mat 0 +refs 3 +230 0.959666 0.409507 +213 0.948963 0.436926 +214 0.948963 0.418809 +SURF 0x30 +mat 0 +refs 3 +212 0.948963 0.455049 +229 0.959666 0.419466 +228 0.959666 0.429425 +SURF 0x30 +mat 0 +refs 3 +229 0.959666 0.419466 +212 0.948963 0.455049 +213 0.948963 0.436926 +SURF 0x30 +mat 0 +refs 3 +211 0.948963 0.470404 +228 0.959666 0.429425 +227 0.959666 0.437865 +SURF 0x30 +mat 0 +refs 3 +228 0.959666 0.429425 +211 0.948963 0.470404 +212 0.948963 0.455049 +SURF 0x30 +mat 0 +refs 3 +210 0.948963 0.480667 +227 0.959666 0.437865 +226 0.959666 0.443508 +SURF 0x30 +mat 0 +refs 3 +227 0.959666 0.437865 +210 0.948963 0.480667 +211 0.948963 0.470404 +SURF 0x30 +mat 0 +refs 3 +210 0.948963 0.480667 +240 0.959666 0.445493 +224 0.948963 0.484276 +SURF 0x30 +mat 0 +refs 3 +240 0.959666 0.445493 +210 0.948963 0.480667 +226 0.959666 0.443508 +SURF 0x30 +mat 0 +refs 3 +224 0.948963 0.484276 +209 0.926711 0.519676 +208 0.926711 0.524337 +SURF 0x30 +mat 0 +refs 3 +209 0.926711 0.519676 +224 0.948963 0.484276 +225 0.948963 0.480667 +SURF 0x30 +mat 0 +refs 3 +225 0.948963 0.480667 +207 0.926711 0.50639 +209 0.926711 0.519676 +SURF 0x30 +mat 0 +refs 3 +207 0.926711 0.50639 +225 0.948963 0.480667 +223 0.948963 0.470404 +SURF 0x30 +mat 0 +refs 3 +223 0.948963 0.470404 +206 0.926711 0.486515 +207 0.926711 0.50639 +SURF 0x30 +mat 0 +refs 3 +206 0.926711 0.486515 +223 0.948963 0.470404 +222 0.948963 0.455049 +SURF 0x30 +mat 0 +refs 3 +205 0.926711 0.463073 +222 0.948963 0.455049 +221 0.948963 0.436926 +SURF 0x30 +mat 0 +refs 3 +222 0.948963 0.455049 +205 0.926711 0.463073 +206 0.926711 0.486515 +SURF 0x30 +mat 0 +refs 3 +204 0.926711 0.439624 +221 0.948963 0.436926 +220 0.948963 0.418809 +SURF 0x30 +mat 0 +refs 3 +221 0.948963 0.436926 +204 0.926711 0.439624 +205 0.926711 0.463073 +SURF 0x30 +mat 0 +refs 3 +203 0.926711 0.419748 +220 0.948963 0.418809 +219 0.948963 0.403447 +SURF 0x30 +mat 0 +refs 3 +220 0.948963 0.418809 +203 0.926711 0.419748 +204 0.926711 0.439624 +SURF 0x30 +mat 0 +refs 3 +202 0.926711 0.40647 +219 0.948963 0.403447 +218 0.948963 0.393184 +SURF 0x30 +mat 0 +refs 3 +219 0.948963 0.403447 +202 0.926711 0.40647 +203 0.926711 0.419748 +SURF 0x30 +mat 0 +refs 3 +201 0.926711 0.379814 +218 0.948963 0.393184 +217 0.948963 0.367595 +SURF 0x30 +mat 0 +refs 3 +218 0.948963 0.393184 +201 0.926711 0.379814 +202 0.926711 0.40647 +SURF 0x30 +mat 0 +refs 3 +200 0.926711 0.40647 +217 0.948963 0.367595 +216 0.948963 0.393184 +SURF 0x30 +mat 0 +refs 3 +217 0.948963 0.367595 +200 0.926711 0.40647 +201 0.926711 0.379814 +SURF 0x30 +mat 0 +refs 3 +199 0.926711 0.419748 +216 0.948963 0.393184 +215 0.948963 0.403447 +SURF 0x30 +mat 0 +refs 3 +216 0.948963 0.393184 +199 0.926711 0.419748 +200 0.926711 0.40647 +SURF 0x30 +mat 0 +refs 3 +198 0.926711 0.439624 +215 0.948963 0.403447 +214 0.948963 0.418809 +SURF 0x30 +mat 0 +refs 3 +215 0.948963 0.403447 +198 0.926711 0.439624 +199 0.926711 0.419748 +SURF 0x30 +mat 0 +refs 3 +197 0.926711 0.463073 +214 0.948963 0.418809 +213 0.948963 0.436926 +SURF 0x30 +mat 0 +refs 3 +214 0.948963 0.418809 +197 0.926711 0.463073 +198 0.926711 0.439624 +SURF 0x30 +mat 0 +refs 3 +196 0.926711 0.486515 +213 0.948963 0.436926 +212 0.948963 0.455049 +SURF 0x30 +mat 0 +refs 3 +213 0.948963 0.436926 +196 0.926711 0.486515 +197 0.926711 0.463073 +SURF 0x30 +mat 0 +refs 3 +195 0.926711 0.50639 +212 0.948963 0.455049 +211 0.948963 0.470404 +SURF 0x30 +mat 0 +refs 3 +212 0.948963 0.455049 +195 0.926711 0.50639 +196 0.926711 0.486515 +SURF 0x30 +mat 0 +refs 3 +194 0.926711 0.519676 +211 0.948963 0.470404 +210 0.948963 0.480667 +SURF 0x30 +mat 0 +refs 3 +211 0.948963 0.470404 +194 0.926711 0.519676 +195 0.926711 0.50639 +SURF 0x30 +mat 0 +refs 3 +208 0.926711 0.524337 +210 0.948963 0.480667 +224 0.948963 0.484276 +SURF 0x30 +mat 0 +refs 3 +210 0.948963 0.480667 +208 0.926711 0.524337 +194 0.926711 0.519676 +SURF 0x30 +mat 0 +refs 3 +208 0.926711 0.524337 +193 0.895857 0.550817 +192 0.895857 0.556184 +SURF 0x30 +mat 0 +refs 3 +193 0.895857 0.550817 +208 0.926711 0.524337 +209 0.926711 0.519676 +SURF 0x30 +mat 0 +refs 3 +191 0.895857 0.535511 +209 0.926711 0.519676 +207 0.926711 0.50639 +SURF 0x30 +mat 0 +refs 3 +209 0.926711 0.519676 +191 0.895857 0.535511 +193 0.895857 0.550817 +SURF 0x30 +mat 0 +refs 3 +190 0.895857 0.512613 +207 0.926711 0.50639 +206 0.926711 0.486515 +SURF 0x30 +mat 0 +refs 3 +207 0.926711 0.50639 +190 0.895857 0.512613 +191 0.895857 0.535511 +SURF 0x30 +mat 0 +refs 3 +189 0.895857 0.485597 +206 0.926711 0.486515 +205 0.926711 0.463073 +SURF 0x30 +mat 0 +refs 3 +206 0.926711 0.486515 +189 0.895857 0.485597 +190 0.895857 0.512613 +SURF 0x30 +mat 0 +refs 3 +188 0.895857 0.458581 +205 0.926711 0.463073 +204 0.926711 0.439624 +SURF 0x30 +mat 0 +refs 3 +205 0.926711 0.463073 +188 0.895857 0.458581 +189 0.895857 0.485597 +SURF 0x30 +mat 0 +refs 3 +187 0.895857 0.435683 +204 0.926711 0.439624 +203 0.926711 0.419748 +SURF 0x30 +mat 0 +refs 3 +204 0.926711 0.439624 +187 0.895857 0.435683 +188 0.895857 0.458581 +SURF 0x30 +mat 0 +refs 3 +186 0.895857 0.420377 +203 0.926711 0.419748 +202 0.926711 0.40647 +SURF 0x30 +mat 0 +refs 3 +203 0.926711 0.419748 +186 0.895857 0.420377 +187 0.895857 0.435683 +SURF 0x30 +mat 0 +refs 3 +185 0.895857 0.393015 +202 0.926711 0.40647 +201 0.926711 0.379814 +SURF 0x30 +mat 0 +refs 3 +202 0.926711 0.40647 +185 0.895857 0.393015 +186 0.895857 0.420377 +SURF 0x30 +mat 0 +refs 3 +184 0.895857 0.420377 +201 0.926711 0.379814 +200 0.926711 0.40647 +SURF 0x30 +mat 0 +refs 3 +201 0.926711 0.379814 +184 0.895857 0.420377 +185 0.895857 0.393015 +SURF 0x30 +mat 0 +refs 3 +183 0.895857 0.435683 +200 0.926711 0.40647 +199 0.926711 0.419748 +SURF 0x30 +mat 0 +refs 3 +200 0.926711 0.40647 +183 0.895857 0.435683 +184 0.895857 0.420377 +SURF 0x30 +mat 0 +refs 3 +182 0.895857 0.458581 +199 0.926711 0.419748 +198 0.926711 0.439624 +SURF 0x30 +mat 0 +refs 3 +199 0.926711 0.419748 +182 0.895857 0.458581 +183 0.895857 0.435683 +SURF 0x30 +mat 0 +refs 3 +181 0.895857 0.485597 +198 0.926711 0.439624 +197 0.926711 0.463073 +SURF 0x30 +mat 0 +refs 3 +198 0.926711 0.439624 +181 0.895857 0.485597 +182 0.895857 0.458581 +SURF 0x30 +mat 0 +refs 3 +180 0.895857 0.512613 +197 0.926711 0.463073 +196 0.926711 0.486515 +SURF 0x30 +mat 0 +refs 3 +197 0.926711 0.463073 +180 0.895857 0.512613 +181 0.895857 0.485597 +SURF 0x30 +mat 0 +refs 3 +179 0.895857 0.535511 +196 0.926711 0.486515 +195 0.926711 0.50639 +SURF 0x30 +mat 0 +refs 3 +196 0.926711 0.486515 +179 0.895857 0.535511 +180 0.895857 0.512613 +SURF 0x30 +mat 0 +refs 3 +178 0.895857 0.550817 +195 0.926711 0.50639 +194 0.926711 0.519676 +SURF 0x30 +mat 0 +refs 3 +195 0.926711 0.50639 +178 0.895857 0.550817 +179 0.895857 0.535511 +SURF 0x30 +mat 0 +refs 3 +192 0.895857 0.556184 +194 0.926711 0.519676 +208 0.926711 0.524337 +SURF 0x30 +mat 0 +refs 3 +194 0.926711 0.519676 +192 0.895857 0.556184 +178 0.895857 0.550817 +SURF 0x30 +mat 0 +refs 3 +177 0.856707 0.580396 +192 0.895857 0.556184 +193 0.895857 0.550817 +SURF 0x30 +mat 0 +refs 3 +192 0.895857 0.556184 +177 0.856707 0.580396 +176 0.856707 0.586788 +SURF 0x30 +mat 0 +refs 3 +175 0.856707 0.562195 +193 0.895857 0.550817 +191 0.895857 0.535511 +SURF 0x30 +mat 0 +refs 3 +193 0.895857 0.550817 +175 0.856707 0.562195 +177 0.856707 0.580396 +SURF 0x30 +mat 0 +refs 3 +174 0.856707 0.534953 +191 0.895857 0.535511 +190 0.895857 0.512613 +SURF 0x30 +mat 0 +refs 3 +191 0.895857 0.535511 +174 0.856707 0.534953 +175 0.856707 0.562195 +SURF 0x30 +mat 0 +refs 3 +173 0.856707 0.502816 +190 0.895857 0.512613 +189 0.895857 0.485597 +SURF 0x30 +mat 0 +refs 3 +190 0.895857 0.512613 +173 0.856707 0.502816 +174 0.856707 0.534953 +SURF 0x30 +mat 0 +refs 3 +172 0.856707 0.47068 +189 0.895857 0.485597 +188 0.895857 0.458581 +SURF 0x30 +mat 0 +refs 3 +189 0.895857 0.485597 +172 0.856707 0.47068 +173 0.856707 0.502816 +SURF 0x30 +mat 0 +refs 3 +171 0.856707 0.443438 +188 0.895857 0.458581 +187 0.895857 0.435683 +SURF 0x30 +mat 0 +refs 3 +188 0.895857 0.458581 +171 0.856707 0.443438 +172 0.856707 0.47068 +SURF 0x30 +mat 0 +refs 3 +170 0.856707 0.425236 +187 0.895857 0.435683 +186 0.895857 0.420377 +SURF 0x30 +mat 0 +refs 3 +187 0.895857 0.435683 +170 0.856707 0.425236 +171 0.856707 0.443438 +SURF 0x30 +mat 0 +refs 3 +169 0.856707 0.39685 +186 0.895857 0.420377 +185 0.895857 0.393015 +SURF 0x30 +mat 0 +refs 3 +186 0.895857 0.420377 +169 0.856707 0.39685 +170 0.856707 0.425236 +SURF 0x30 +mat 0 +refs 3 +168 0.856707 0.425236 +185 0.895857 0.393015 +184 0.895857 0.420377 +SURF 0x30 +mat 0 +refs 3 +185 0.895857 0.393015 +168 0.856707 0.425236 +169 0.856707 0.39685 +SURF 0x30 +mat 0 +refs 3 +167 0.856707 0.443438 +184 0.895857 0.420377 +183 0.895857 0.435683 +SURF 0x30 +mat 0 +refs 3 +184 0.895857 0.420377 +167 0.856707 0.443438 +168 0.856707 0.425236 +SURF 0x30 +mat 0 +refs 3 +166 0.856707 0.47068 +183 0.895857 0.435683 +182 0.895857 0.458581 +SURF 0x30 +mat 0 +refs 3 +183 0.895857 0.435683 +166 0.856707 0.47068 +167 0.856707 0.443438 +SURF 0x30 +mat 0 +refs 3 +165 0.856707 0.502816 +182 0.895857 0.458581 +181 0.895857 0.485597 +SURF 0x30 +mat 0 +refs 3 +182 0.895857 0.458581 +165 0.856707 0.502816 +166 0.856707 0.47068 +SURF 0x30 +mat 0 +refs 3 +164 0.856707 0.534953 +181 0.895857 0.485597 +180 0.895857 0.512613 +SURF 0x30 +mat 0 +refs 3 +181 0.895857 0.485597 +164 0.856707 0.534953 +165 0.856707 0.502816 +SURF 0x30 +mat 0 +refs 3 +163 0.856707 0.562195 +180 0.895857 0.512613 +179 0.895857 0.535511 +SURF 0x30 +mat 0 +refs 3 +180 0.895857 0.512613 +163 0.856707 0.562195 +164 0.856707 0.534953 +SURF 0x30 +mat 0 +refs 3 +162 0.856707 0.580396 +179 0.895857 0.535511 +178 0.895857 0.550817 +SURF 0x30 +mat 0 +refs 3 +179 0.895857 0.535511 +162 0.856707 0.580396 +163 0.856707 0.562195 +SURF 0x30 +mat 0 +refs 3 +176 0.856707 0.586788 +178 0.895857 0.550817 +192 0.895857 0.556184 +SURF 0x30 +mat 0 +refs 3 +178 0.895857 0.550817 +176 0.856707 0.586788 +162 0.856707 0.580396 +SURF 0x30 +mat 0 +refs 3 +161 0.811575 0.604262 +176 0.856707 0.586788 +177 0.856707 0.580396 +SURF 0x30 +mat 0 +refs 3 +176 0.856707 0.586788 +161 0.811575 0.604262 +160 0.811575 0.611424 +SURF 0x30 +mat 0 +refs 3 +159 0.811575 0.58385 +177 0.856707 0.580396 +175 0.856707 0.562195 +SURF 0x30 +mat 0 +refs 3 +177 0.856707 0.580396 +159 0.811575 0.58385 +161 0.811575 0.604262 +SURF 0x30 +mat 0 +refs 3 +158 0.811575 0.553303 +175 0.856707 0.562195 +174 0.856707 0.534953 +SURF 0x30 +mat 0 +refs 3 +175 0.856707 0.562195 +158 0.811575 0.553303 +159 0.811575 0.58385 +SURF 0x30 +mat 0 +refs 3 +157 0.811575 0.517274 +174 0.856707 0.534953 +173 0.856707 0.502816 +SURF 0x30 +mat 0 +refs 3 +174 0.856707 0.534953 +157 0.811575 0.517274 +158 0.811575 0.553303 +SURF 0x30 +mat 0 +refs 3 +156 0.811575 0.481246 +173 0.856707 0.502816 +172 0.856707 0.47068 +SURF 0x30 +mat 0 +refs 3 +173 0.856707 0.502816 +156 0.811575 0.481246 +157 0.811575 0.517274 +SURF 0x30 +mat 0 +refs 3 +155 0.811575 0.448608 +172 0.856707 0.47068 +171 0.856707 0.443438 +SURF 0x30 +mat 0 +refs 3 +172 0.856707 0.47068 +155 0.811575 0.448608 +156 0.811575 0.481246 +SURF 0x30 +mat 0 +refs 3 +154 0.811575 0.428196 +171 0.856707 0.443438 +170 0.856707 0.425236 +SURF 0x30 +mat 0 +refs 3 +171 0.856707 0.443438 +154 0.811575 0.428196 +155 0.811575 0.448608 +SURF 0x30 +mat 0 +refs 3 +153 0.811575 0.39904 +170 0.856707 0.425236 +169 0.856707 0.39685 +SURF 0x30 +mat 0 +refs 3 +170 0.856707 0.425236 +153 0.811575 0.39904 +154 0.811575 0.428196 +SURF 0x30 +mat 0 +refs 3 +152 0.811575 0.428196 +169 0.856707 0.39685 +168 0.856707 0.425236 +SURF 0x30 +mat 0 +refs 3 +169 0.856707 0.39685 +152 0.811575 0.428196 +153 0.811575 0.39904 +SURF 0x30 +mat 0 +refs 3 +151 0.811575 0.448608 +168 0.856707 0.425236 +167 0.856707 0.443438 +SURF 0x30 +mat 0 +refs 3 +168 0.856707 0.425236 +151 0.811575 0.448608 +152 0.811575 0.428196 +SURF 0x30 +mat 0 +refs 3 +150 0.811575 0.481246 +167 0.856707 0.443438 +166 0.856707 0.47068 +SURF 0x30 +mat 0 +refs 3 +167 0.856707 0.443438 +150 0.811575 0.481246 +151 0.811575 0.448608 +SURF 0x30 +mat 0 +refs 3 +149 0.811575 0.517274 +166 0.856707 0.47068 +165 0.856707 0.502816 +SURF 0x30 +mat 0 +refs 3 +166 0.856707 0.47068 +149 0.811575 0.517274 +150 0.811575 0.481246 +SURF 0x30 +mat 0 +refs 3 +148 0.811575 0.553303 +165 0.856707 0.502816 +164 0.856707 0.534953 +SURF 0x30 +mat 0 +refs 3 +165 0.856707 0.502816 +148 0.811575 0.553303 +149 0.811575 0.517274 +SURF 0x30 +mat 0 +refs 3 +147 0.811575 0.58385 +164 0.856707 0.534953 +163 0.856707 0.562195 +SURF 0x30 +mat 0 +refs 3 +164 0.856707 0.534953 +147 0.811575 0.58385 +148 0.811575 0.553303 +SURF 0x30 +mat 0 +refs 3 +146 0.811575 0.604262 +163 0.856707 0.562195 +162 0.856707 0.580396 +SURF 0x30 +mat 0 +refs 3 +163 0.856707 0.562195 +146 0.811575 0.604262 +147 0.811575 0.58385 +SURF 0x30 +mat 0 +refs 3 +160 0.811575 0.611424 +162 0.856707 0.580396 +176 0.856707 0.586788 +SURF 0x30 +mat 0 +refs 3 +162 0.856707 0.580396 +160 0.811575 0.611424 +146 0.811575 0.604262 +SURF 0x30 +mat 0 +refs 3 +145 0.765216 0.621411 +160 0.811575 0.611424 +161 0.811575 0.604262 +SURF 0x30 +mat 0 +refs 3 +160 0.811575 0.611424 +145 0.765216 0.621411 +144 0.765216 0.629315 +SURF 0x30 +mat 0 +refs 3 +143 0.765216 0.598908 +161 0.811575 0.604262 +159 0.811575 0.58385 +SURF 0x30 +mat 0 +refs 3 +161 0.811575 0.604262 +143 0.765216 0.598908 +145 0.765216 0.621411 +SURF 0x30 +mat 0 +refs 3 +142 0.765216 0.565225 +159 0.811575 0.58385 +158 0.811575 0.553303 +SURF 0x30 +mat 0 +refs 3 +159 0.811575 0.58385 +142 0.765216 0.565225 +143 0.765216 0.598908 +SURF 0x30 +mat 0 +refs 3 +141 0.765216 0.525496 +158 0.811575 0.553303 +157 0.811575 0.517274 +SURF 0x30 +mat 0 +refs 3 +158 0.811575 0.553303 +141 0.765216 0.525496 +142 0.765216 0.565225 +SURF 0x30 +mat 0 +refs 3 +140 0.765216 0.485759 +157 0.811575 0.517274 +156 0.811575 0.481246 +SURF 0x30 +mat 0 +refs 3 +157 0.811575 0.517274 +140 0.765216 0.485759 +141 0.765216 0.525496 +SURF 0x30 +mat 0 +refs 3 +139 0.765216 0.452076 +156 0.811575 0.481246 +155 0.811575 0.448608 +SURF 0x30 +mat 0 +refs 3 +156 0.811575 0.481246 +139 0.765216 0.452076 +140 0.765216 0.485759 +SURF 0x30 +mat 0 +refs 3 +138 0.765216 0.429573 +155 0.811575 0.448608 +154 0.811575 0.428196 +SURF 0x30 +mat 0 +refs 3 +155 0.811575 0.448608 +138 0.765216 0.429573 +139 0.765216 0.452076 +SURF 0x30 +mat 0 +refs 3 +137 0.765216 0.399682 +154 0.811575 0.428196 +153 0.811575 0.39904 +SURF 0x30 +mat 0 +refs 3 +154 0.811575 0.428196 +137 0.765216 0.399682 +138 0.765216 0.429573 +SURF 0x30 +mat 0 +refs 3 +136 0.765216 0.429573 +153 0.811575 0.39904 +152 0.811575 0.428196 +SURF 0x30 +mat 0 +refs 3 +153 0.811575 0.39904 +136 0.765216 0.429573 +137 0.765216 0.399682 +SURF 0x30 +mat 0 +refs 3 +135 0.765216 0.452076 +152 0.811575 0.428196 +151 0.811575 0.448608 +SURF 0x30 +mat 0 +refs 3 +152 0.811575 0.428196 +135 0.765216 0.452076 +136 0.765216 0.429573 +SURF 0x30 +mat 0 +refs 3 +134 0.765216 0.485759 +151 0.811575 0.448608 +150 0.811575 0.481246 +SURF 0x30 +mat 0 +refs 3 +151 0.811575 0.448608 +134 0.765216 0.485759 +135 0.765216 0.452076 +SURF 0x30 +mat 0 +refs 3 +133 0.765216 0.525496 +150 0.811575 0.481246 +149 0.811575 0.517274 +SURF 0x30 +mat 0 +refs 3 +150 0.811575 0.481246 +133 0.765216 0.525496 +134 0.765216 0.485759 +SURF 0x30 +mat 0 +refs 3 +132 0.765216 0.565225 +149 0.811575 0.517274 +148 0.811575 0.553303 +SURF 0x30 +mat 0 +refs 3 +149 0.811575 0.517274 +132 0.765216 0.565225 +133 0.765216 0.525496 +SURF 0x30 +mat 0 +refs 3 +131 0.765216 0.598908 +148 0.811575 0.553303 +147 0.811575 0.58385 +SURF 0x30 +mat 0 +refs 3 +148 0.811575 0.553303 +131 0.765216 0.598908 +132 0.765216 0.565225 +SURF 0x30 +mat 0 +refs 3 +130 0.765216 0.621411 +147 0.811575 0.58385 +146 0.811575 0.604262 +SURF 0x30 +mat 0 +refs 3 +147 0.811575 0.58385 +130 0.765216 0.621411 +131 0.765216 0.598908 +SURF 0x30 +mat 0 +refs 3 +144 0.765216 0.629315 +146 0.811575 0.604262 +160 0.811575 0.611424 +SURF 0x30 +mat 0 +refs 3 +146 0.811575 0.604262 +144 0.765216 0.629315 +130 0.765216 0.621411 +SURF 0x30 +mat 0 +refs 3 +129 0.707225 0.636921 +144 0.765216 0.629315 +145 0.765216 0.621411 +SURF 0x30 +mat 0 +refs 3 +144 0.765216 0.629315 +129 0.707225 0.636921 +128 0.707225 0.645468 +SURF 0x30 +mat 0 +refs 3 +127 0.707225 0.612575 +145 0.765216 0.621411 +143 0.765216 0.598908 +SURF 0x30 +mat 0 +refs 3 +145 0.765216 0.621411 +127 0.707225 0.612575 +129 0.707225 0.636921 +SURF 0x30 +mat 0 +refs 3 +126 0.707225 0.576137 +143 0.765216 0.598908 +142 0.765216 0.565225 +SURF 0x30 +mat 0 +refs 3 +143 0.765216 0.598908 +126 0.707225 0.576137 +127 0.707225 0.612575 +SURF 0x30 +mat 0 +refs 3 +125 0.707225 0.533159 +142 0.765216 0.565225 +141 0.765216 0.525496 +SURF 0x30 +mat 0 +refs 3 +142 0.765216 0.565225 +125 0.707225 0.533159 +126 0.707225 0.576137 +SURF 0x30 +mat 0 +refs 3 +124 0.707225 0.490181 +141 0.765216 0.525496 +140 0.765216 0.485759 +SURF 0x30 +mat 0 +refs 3 +141 0.765216 0.525496 +124 0.707225 0.490181 +125 0.707225 0.533159 +SURF 0x30 +mat 0 +refs 3 +123 0.707225 0.453743 +140 0.765216 0.485759 +139 0.765216 0.452076 +SURF 0x30 +mat 0 +refs 3 +140 0.765216 0.485759 +123 0.707225 0.453743 +124 0.707225 0.490181 +SURF 0x30 +mat 0 +refs 3 +122 0.707225 0.429396 +139 0.765216 0.452076 +138 0.765216 0.429573 +SURF 0x30 +mat 0 +refs 3 +139 0.765216 0.452076 +122 0.707225 0.429396 +123 0.707225 0.453743 +SURF 0x30 +mat 0 +refs 3 +121 0.707225 0.398863 +138 0.765216 0.429573 +137 0.765216 0.399682 +SURF 0x30 +mat 0 +refs 3 +138 0.765216 0.429573 +121 0.707225 0.398863 +122 0.707225 0.429396 +SURF 0x30 +mat 0 +refs 3 +120 0.707225 0.429396 +137 0.765216 0.399682 +136 0.765216 0.429573 +SURF 0x30 +mat 0 +refs 3 +137 0.765216 0.399682 +120 0.707225 0.429396 +121 0.707225 0.398863 +SURF 0x30 +mat 0 +refs 3 +34 0.707225 0.453743 +136 0.765216 0.429573 +135 0.765216 0.452076 +SURF 0x30 +mat 0 +refs 3 +136 0.765216 0.429573 +34 0.707225 0.453743 +120 0.707225 0.429396 +SURF 0x30 +mat 0 +refs 3 +33 0.707225 0.490181 +135 0.765216 0.452076 +134 0.765216 0.485759 +SURF 0x30 +mat 0 +refs 3 +135 0.765216 0.452076 +33 0.707225 0.490181 +34 0.707225 0.453743 +SURF 0x30 +mat 0 +refs 3 +30 0.707225 0.533159 +134 0.765216 0.485759 +133 0.765216 0.525496 +SURF 0x30 +mat 0 +refs 3 +134 0.765216 0.485759 +30 0.707225 0.533159 +33 0.707225 0.490181 +SURF 0x30 +mat 0 +refs 3 +28 0.707225 0.576137 +133 0.765216 0.525496 +132 0.765216 0.565225 +SURF 0x30 +mat 0 +refs 3 +133 0.765216 0.525496 +28 0.707225 0.576137 +30 0.707225 0.533159 +SURF 0x30 +mat 0 +refs 3 +119 0.707225 0.612575 +132 0.765216 0.565225 +131 0.765216 0.598908 +SURF 0x30 +mat 0 +refs 3 +132 0.765216 0.565225 +119 0.707225 0.612575 +28 0.707225 0.576137 +SURF 0x30 +mat 0 +refs 3 +118 0.707225 0.636921 +131 0.765216 0.598908 +130 0.765216 0.621411 +SURF 0x30 +mat 0 +refs 3 +131 0.765216 0.598908 +118 0.707225 0.636921 +119 0.707225 0.612575 +SURF 0x30 +mat 0 +refs 3 +128 0.707225 0.645468 +130 0.765216 0.621411 +144 0.765216 0.629315 +SURF 0x30 +mat 0 +refs 3 +130 0.765216 0.621411 +128 0.707225 0.645468 +118 0.707225 0.636921 +SURF 0x30 +mat 0 +refs 3 +117 0.639317 0.643896 +128 0.707226 0.645142 +129 0.707226 0.635661 +SURF 0x30 +mat 0 +refs 3 +128 0.707226 0.645142 +117 0.639317 0.643896 +116 0.639317 0.653854 +SURF 0x30 +mat 0 +refs 3 +115 0.639317 0.615526 +129 0.707226 0.635661 +127 0.707226 0.608655 +SURF 0x30 +mat 0 +refs 3 +129 0.707226 0.635661 +115 0.639317 0.615526 +117 0.639317 0.643896 +SURF 0x30 +mat 0 +refs 3 +114 0.639317 0.573069 +127 0.707226 0.608655 +126 0.707226 0.568235 +SURF 0x30 +mat 0 +refs 3 +127 0.707226 0.608655 +114 0.639317 0.573069 +115 0.639317 0.615526 +SURF 0x30 +mat 0 +refs 3 +113 0.639317 0.637988 +126 0.707226 0.683235 +125 0.707226 0.63556 +SURF 0x30 +mat 0 +refs 3 +126 0.707226 0.683235 +113 0.639317 0.637988 +114 0.639317 0.688069 +SURF 0x30 +mat 0 +refs 3 +112 0.639317 0.589068 +125 0.707226 0.63556 +124 0.707226 0.587885 +SURF 0x30 +mat 0 +refs 3 +125 0.707226 0.63556 +112 0.639317 0.589068 +113 0.639317 0.637988 +SURF 0x30 +mat 0 +refs 3 +111 0.639317 0.431611 +124 0.707226 0.472885 +123 0.707226 0.432465 +SURF 0x30 +mat 0 +refs 3 +124 0.707226 0.472885 +111 0.639317 0.431611 +112 0.639317 0.474068 +SURF 0x30 +mat 0 +refs 3 +110 0.639317 0.403249 +123 0.707226 0.432465 +122 0.707226 0.405458 +SURF 0x30 +mat 0 +refs 3 +123 0.707226 0.432465 +110 0.639317 0.403249 +111 0.639317 0.431611 +SURF 0x30 +mat 0 +refs 3 +109 0.639317 0.368893 +122 0.707226 0.405458 +121 0.707226 0.371588 +SURF 0x30 +mat 0 +refs 3 +122 0.707226 0.405458 +109 0.639317 0.368893 +110 0.639317 0.403249 +SURF 0x30 +mat 0 +refs 3 +108 0.639317 0.403249 +121 0.707226 0.371588 +120 0.707226 0.405458 +SURF 0x30 +mat 0 +refs 3 +121 0.707226 0.371588 +108 0.639317 0.403249 +109 0.639317 0.368893 +SURF 0x30 +mat 0 +refs 3 +31 0.639317 0.431611 +120 0.707226 0.405458 +34 0.707226 0.432465 +SURF 0x30 +mat 0 +refs 3 +120 0.707226 0.405458 +31 0.639317 0.431611 +108 0.639317 0.403249 +SURF 0x30 +mat 0 +refs 3 +22 0.639317 0.615526 +28 0.707226 0.568235 +119 0.707226 0.608655 +SURF 0x30 +mat 0 +refs 3 +28 0.707226 0.568235 +22 0.639317 0.615526 +27 0.639317 0.573069 +SURF 0x30 +mat 0 +refs 3 +107 0.639317 0.643896 +119 0.707226 0.608655 +118 0.707226 0.635661 +SURF 0x30 +mat 0 +refs 3 +119 0.707226 0.608655 +107 0.639317 0.643896 +22 0.639317 0.615526 +SURF 0x30 +mat 0 +refs 3 +116 0.639317 0.653854 +118 0.707226 0.635661 +128 0.707226 0.645142 +SURF 0x30 +mat 0 +refs 3 +118 0.707226 0.635661 +116 0.639317 0.653854 +107 0.639317 0.643896 +SURF 0x30 +mat 0 +refs 3 +106 0.565707 0.649145 +116 0.639317 0.653854 +117 0.639317 0.643896 +SURF 0x30 +mat 0 +refs 3 +116 0.639317 0.653854 +106 0.565707 0.649145 +105 0.565707 0.659338 +SURF 0x30 +mat 0 +refs 3 +104 0.565707 0.620117 +117 0.639317 0.643896 +115 0.639317 0.615526 +SURF 0x30 +mat 0 +refs 3 +117 0.639317 0.643896 +104 0.565707 0.620117 +106 0.565707 0.649145 +SURF 0x30 +mat 0 +refs 3 +103 0.565707 0.576665 +115 0.639317 0.615526 +114 0.639317 0.573069 +SURF 0x30 +mat 0 +refs 3 +115 0.639317 0.615526 +103 0.565707 0.576665 +104 0.565707 0.620117 +SURF 0x30 +mat 0 +refs 3 +102 0.565707 0.640425 +114 0.639317 0.688069 +113 0.639317 0.637988 +SURF 0x30 +mat 0 +refs 3 +114 0.639317 0.688069 +102 0.565707 0.640425 +103 0.565707 0.691665 +SURF 0x30 +mat 0 +refs 3 +101 0.565707 0.58917 +113 0.639317 0.637988 +112 0.639317 0.589068 +SURF 0x30 +mat 0 +refs 3 +113 0.639317 0.637988 +101 0.565707 0.58917 +102 0.565707 0.640425 +SURF 0x30 +mat 0 +refs 3 +100 0.565707 0.430726 +112 0.639317 0.474068 +111 0.639317 0.431611 +SURF 0x30 +mat 0 +refs 3 +112 0.635567 0.630735 +100 0.561957 0.587392 +101 0.561957 0.630836 +SURF 0x30 +mat 0 +refs 3 +99 0.565707 0.401697 +111 0.639317 0.431611 +110 0.639317 0.403249 +SURF 0x30 +mat 0 +refs 3 +111 0.639317 0.431611 +99 0.565707 0.401697 +100 0.565707 0.430726 +SURF 0x30 +mat 0 +refs 3 +98 0.565707 0.367114 +110 0.639317 0.403249 +109 0.639317 0.368893 +SURF 0x30 +mat 0 +refs 3 +110 0.639317 0.403249 +98 0.565707 0.367114 +99 0.565707 0.401697 +SURF 0x30 +mat 0 +refs 3 +97 0.565707 0.401697 +109 0.639317 0.368893 +108 0.639317 0.403249 +SURF 0x30 +mat 0 +refs 3 +109 0.639317 0.368893 +97 0.565707 0.401697 +98 0.565707 0.367114 +SURF 0x30 +mat 0 +refs 3 +25 0.565707 0.430726 +108 0.639317 0.403249 +31 0.639317 0.431611 +SURF 0x30 +mat 0 +refs 3 +108 0.639317 0.403249 +25 0.565707 0.430726 +97 0.565707 0.401697 +SURF 0x30 +mat 0 +refs 3 +96 0.565707 0.649145 +22 0.639317 0.615526 +107 0.639317 0.643896 +SURF 0x30 +mat 0 +refs 3 +22 0.639317 0.615526 +96 0.565707 0.649145 +21 0.565707 0.620117 +SURF 0x30 +mat 0 +refs 3 +105 0.565707 0.659338 +107 0.639317 0.643896 +116 0.639317 0.653854 +SURF 0x30 +mat 0 +refs 3 +107 0.639317 0.643896 +105 0.565707 0.659338 +96 0.565707 0.649145 +SURF 0x30 +mat 0 +refs 3 +95 0.4871 0.653995 +105 0.565707 0.659338 +106 0.565707 0.649145 +SURF 0x30 +mat 0 +refs 3 +105 0.565707 0.659338 +95 0.4871 0.653995 +94 0.4871 0.664486 +SURF 0x30 +mat 0 +refs 3 +93 0.4871 0.624113 +106 0.565707 0.649145 +104 0.565707 0.620117 +SURF 0x30 +mat 0 +refs 3 +106 0.565707 0.649145 +93 0.4871 0.624113 +95 0.4871 0.653995 +SURF 0x30 +mat 0 +refs 3 +92 0.4871 0.579392 +104 0.565707 0.620117 +103 0.565707 0.576665 +SURF 0x30 +mat 0 +refs 3 +104 0.565707 0.620117 +92 0.4871 0.579392 +93 0.4871 0.624113 +SURF 0x30 +mat 0 +refs 3 +91 0.4871 0.64164 +103 0.565707 0.691665 +102 0.565707 0.640425 +SURF 0x30 +mat 0 +refs 3 +103 0.565707 0.691665 +91 0.4871 0.64164 +92 0.4871 0.694392 +SURF 0x30 +mat 0 +refs 3 +90 0.4871 0.58888 +102 0.565707 0.640425 +101 0.565707 0.58917 +SURF 0x30 +mat 0 +refs 3 +102 0.565707 0.640425 +90 0.4871 0.58888 +91 0.4871 0.64164 +SURF 0x30 +mat 0 +refs 3 +89 0.4871 0.429159 +101 0.565707 0.47417 +100 0.565707 0.430726 +SURF 0x30 +mat 0 +refs 3 +101 0.565707 0.47417 +89 0.4871 0.429159 +90 0.4871 0.47388 +SURF 0x30 +mat 0 +refs 3 +88 0.4871 0.399276 +100 0.565707 0.430726 +99 0.565707 0.401697 +SURF 0x30 +mat 0 +refs 3 +100 0.565707 0.430726 +88 0.4871 0.399276 +89 0.4871 0.429159 +SURF 0x30 +mat 0 +refs 3 +87 0.4871 0.364388 +99 0.565707 0.401697 +98 0.565707 0.367114 +SURF 0x30 +mat 0 +refs 3 +99 0.565707 0.401697 +87 0.4871 0.364388 +88 0.4871 0.399276 +SURF 0x30 +mat 0 +refs 3 +86 0.4871 0.399276 +98 0.565707 0.367114 +97 0.565707 0.401697 +SURF 0x30 +mat 0 +refs 3 +98 0.565707 0.367114 +86 0.4871 0.399276 +87 0.4871 0.364388 +SURF 0x30 +mat 0 +refs 3 +19 0.4871 0.429159 +97 0.565707 0.401697 +25 0.565707 0.430726 +SURF 0x30 +mat 0 +refs 3 +97 0.565707 0.401697 +19 0.4871 0.429159 +86 0.4871 0.399276 +SURF 0x30 +mat 0 +refs 3 +85 0.4871 0.653995 +21 0.565707 0.620117 +96 0.565707 0.649145 +SURF 0x30 +mat 0 +refs 3 +21 0.565707 0.620117 +85 0.4871 0.653995 +16 0.4871 0.624113 +SURF 0x30 +mat 0 +refs 3 +94 0.4871 0.664486 +96 0.565707 0.649145 +105 0.565707 0.659338 +SURF 0x30 +mat 0 +refs 3 +96 0.565707 0.649145 +94 0.4871 0.664486 +85 0.4871 0.653995 +SURF 0x30 +mat 0 +refs 3 +84 0.404253 0.655476 +94 0.4871 0.664486 +95 0.4871 0.653995 +SURF 0x30 +mat 0 +refs 3 +94 0.4871 0.664486 +84 0.404253 0.655476 +83 0.404253 0.666092 +SURF 0x30 +mat 0 +refs 3 +82 0.404253 0.625249 +95 0.4871 0.653995 +93 0.4871 0.624113 +SURF 0x30 +mat 0 +refs 3 +95 0.4871 0.653995 +82 0.404253 0.625249 +84 0.404253 0.655476 +SURF 0x30 +mat 0 +refs 3 +81 0.400503 0.686669 +93 0.48335 0.73078 +92 0.48335 0.686058 +SURF 0x30 +mat 0 +refs 3 +93 0.4871 0.624113 +81 0.404253 0.580003 +82 0.404253 0.625249 +SURF 0x30 +mat 0 +refs 3 +80 0.404253 0.64164 +92 0.4871 0.694392 +91 0.4871 0.64164 +SURF 0x30 +mat 0 +refs 3 +92 0.4871 0.694392 +80 0.404253 0.64164 +81 0.404253 0.695003 +SURF 0x30 +mat 0 +refs 3 +79 0.404253 0.588269 +91 0.4871 0.64164 +90 0.4871 0.58888 +SURF 0x30 +mat 0 +refs 3 +91 0.4871 0.64164 +79 0.404253 0.588269 +80 0.404253 0.64164 +SURF 0x30 +mat 0 +refs 3 +78 0.404253 0.428023 +90 0.4871 0.47388 +89 0.4871 0.429159 +SURF 0x30 +mat 0 +refs 3 +90 0.4871 0.47388 +78 0.404253 0.428023 +79 0.404253 0.473269 +SURF 0x30 +mat 0 +refs 3 +77 0.404253 0.397796 +89 0.4871 0.429159 +88 0.4871 0.399276 +SURF 0x30 +mat 0 +refs 3 +89 0.4871 0.429159 +77 0.404253 0.397796 +78 0.404253 0.428023 +SURF 0x30 +mat 0 +refs 3 +76 0.404253 0.36279 +88 0.4871 0.399276 +87 0.4871 0.364388 +SURF 0x30 +mat 0 +refs 3 +88 0.4871 0.399276 +76 0.404253 0.36279 +77 0.404253 0.397796 +SURF 0x30 +mat 0 +refs 3 +75 0.404253 0.397796 +87 0.4871 0.364388 +86 0.4871 0.399276 +SURF 0x30 +mat 0 +refs 3 +87 0.4871 0.364388 +75 0.404253 0.397796 +76 0.404253 0.36279 +SURF 0x30 +mat 0 +refs 3 +74 0.404253 0.428023 +86 0.4871 0.399276 +19 0.4871 0.429159 +SURF 0x30 +mat 0 +refs 3 +86 0.4871 0.399276 +74 0.404253 0.428023 +75 0.404253 0.397796 +SURF 0x30 +mat 0 +refs 3 +73 0.404253 0.625249 +17 0.4871 0.579392 +16 0.4871 0.624113 +SURF 0x30 +mat 0 +refs 3 +17 0.4871 0.579392 +73 0.404253 0.625249 +12 0.404253 0.580003 +SURF 0x30 +mat 0 +refs 3 +72 0.404253 0.655476 +16 0.4871 0.624113 +85 0.4871 0.653995 +SURF 0x30 +mat 0 +refs 3 +16 0.4871 0.624113 +72 0.404253 0.655476 +73 0.404253 0.625249 +SURF 0x30 +mat 0 +refs 3 +83 0.404253 0.666092 +85 0.4871 0.653995 +94 0.4871 0.664486 +SURF 0x30 +mat 0 +refs 3 +85 0.4871 0.653995 +83 0.404253 0.666092 +72 0.404253 0.655476 +SURF 0x30 +mat 0 +refs 3 +71 0.317959 0.65615 +83 0.404253 0.666092 +84 0.404253 0.655476 +SURF 0x30 +mat 0 +refs 3 +83 0.404253 0.666092 +71 0.317959 0.65615 +70 0.317959 0.666828 +SURF 0x30 +mat 0 +refs 3 +69 0.317959 0.625766 +84 0.404253 0.655476 +82 0.404253 0.625249 +SURF 0x30 +mat 0 +refs 3 +84 0.404253 0.655476 +69 0.317959 0.625766 +71 0.317959 0.65615 +SURF 0x30 +mat 0 +refs 3 +68 0.317959 0.580285 +82 0.404253 0.625249 +81 0.404253 0.580003 +SURF 0x30 +mat 0 +refs 3 +82 0.404253 0.625249 +68 0.317959 0.580285 +69 0.317959 0.625766 +SURF 0x30 +mat 0 +refs 3 +67 0.317959 0.64164 +81 0.404253 0.695003 +80 0.404253 0.64164 +SURF 0x30 +mat 0 +refs 3 +81 0.404253 0.695003 +67 0.317959 0.64164 +68 0.317959 0.695285 +SURF 0x30 +mat 0 +refs 3 +66 0.317959 0.587987 +80 0.404253 0.64164 +79 0.404253 0.588269 +SURF 0x30 +mat 0 +refs 3 +80 0.404253 0.64164 +66 0.317959 0.587987 +67 0.317959 0.64164 +SURF 0x30 +mat 0 +refs 3 +65 0.317959 0.427505 +79 0.404253 0.473269 +78 0.404253 0.428023 +SURF 0x30 +mat 0 +refs 3 +79 0.404253 0.473269 +65 0.317959 0.427505 +66 0.317959 0.472987 +SURF 0x30 +mat 0 +refs 3 +64 0.317959 0.397122 +78 0.404253 0.428023 +77 0.404253 0.397796 +SURF 0x30 +mat 0 +refs 3 +78 0.404253 0.428023 +64 0.317959 0.397122 +65 0.317959 0.427505 +SURF 0x30 +mat 0 +refs 3 +63 0.317959 0.362053 +77 0.404253 0.397796 +76 0.404253 0.36279 +SURF 0x30 +mat 0 +refs 3 +77 0.404253 0.397796 +63 0.317959 0.362053 +64 0.317959 0.397122 +SURF 0x30 +mat 0 +refs 3 +62 0.317959 0.397122 +76 0.404253 0.36279 +75 0.404253 0.397796 +SURF 0x30 +mat 0 +refs 3 +76 0.404253 0.36279 +62 0.317959 0.397122 +63 0.317959 0.362053 +SURF 0x30 +mat 0 +refs 3 +10 0.317959 0.427505 +75 0.404253 0.397796 +74 0.404253 0.428023 +SURF 0x30 +mat 0 +refs 3 +75 0.404253 0.397796 +10 0.317959 0.427505 +62 0.317959 0.397122 +SURF 0x30 +mat 0 +refs 3 +61 0.317959 0.625766 +12 0.404253 0.580003 +73 0.404253 0.625249 +SURF 0x30 +mat 0 +refs 3 +12 0.404253 0.580003 +61 0.317959 0.625766 +60 0.317959 0.580285 +SURF 0x30 +mat 0 +refs 3 +59 0.317959 0.65615 +73 0.404253 0.625249 +72 0.404253 0.655476 +SURF 0x30 +mat 0 +refs 3 +73 0.404253 0.625249 +59 0.317959 0.65615 +61 0.317959 0.625766 +SURF 0x30 +mat 0 +refs 3 +70 0.317959 0.666828 +72 0.404253 0.655476 +83 0.404253 0.666092 +SURF 0x30 +mat 0 +refs 3 +72 0.404253 0.655476 +70 0.317959 0.666828 +59 0.317959 0.65615 +SURF 0x30 +mat 0 +refs 3 +58 0.229063 0.658061 +70 0.317959 0.666828 +71 0.317959 0.65615 +SURF 0x30 +mat 0 +refs 3 +70 0.317959 0.666828 +58 0.229063 0.658061 +57 0.229063 0.668889 +SURF 0x30 +mat 0 +refs 3 +56 0.229063 0.627223 +71 0.317959 0.65615 +69 0.317959 0.625766 +SURF 0x30 +mat 0 +refs 3 +71 0.317959 0.65615 +56 0.229063 0.627223 +58 0.229063 0.658061 +SURF 0x30 +mat 0 +refs 3 +55 0.229063 0.581076 +69 0.317959 0.625766 +68 0.317959 0.580285 +SURF 0x30 +mat 0 +refs 3 +69 0.317959 0.625766 +55 0.229063 0.581076 +56 0.229063 0.627223 +SURF 0x30 +mat 0 +refs 3 +54 0.229063 0.52664 +68 0.317959 0.580285 +67 0.317959 0.52664 +SURF 0x30 +mat 0 +refs 3 +68 0.317959 0.580285 +54 0.229063 0.52664 +55 0.229063 0.581076 +SURF 0x30 +mat 0 +refs 3 +53 0.229063 0.472195 +67 0.317959 0.52664 +66 0.317959 0.472987 +SURF 0x30 +mat 0 +refs 3 +67 0.317959 0.52664 +53 0.229063 0.472195 +54 0.229063 0.52664 +SURF 0x30 +mat 0 +refs 3 +52 0.229063 0.426048 +66 0.317959 0.472987 +65 0.317959 0.427505 +SURF 0x30 +mat 0 +refs 3 +66 0.317959 0.472987 +52 0.229063 0.426048 +53 0.229063 0.472195 +SURF 0x30 +mat 0 +refs 3 +51 0.229063 0.39521 +65 0.317959 0.427505 +64 0.317959 0.397122 +SURF 0x30 +mat 0 +refs 3 +65 0.317959 0.427505 +51 0.229063 0.39521 +52 0.229063 0.426048 +SURF 0x30 +mat 0 +refs 3 +50 0.229063 0.359985 +64 0.317959 0.397122 +63 0.317959 0.362053 +SURF 0x30 +mat 0 +refs 3 +64 0.317959 0.397122 +50 0.229063 0.359985 +51 0.229063 0.39521 +SURF 0x30 +mat 0 +refs 3 +49 0.229063 0.39521 +63 0.317959 0.362053 +62 0.317959 0.397122 +SURF 0x30 +mat 0 +refs 3 +63 0.317959 0.362053 +49 0.229063 0.39521 +50 0.229063 0.359985 +SURF 0x30 +mat 0 +refs 3 +6 0.229063 0.426048 +62 0.317959 0.397122 +10 0.317959 0.427505 +SURF 0x30 +mat 0 +refs 3 +62 0.317959 0.397122 +6 0.229063 0.426048 +49 0.229063 0.39521 +SURF 0x30 +mat 0 +refs 3 +48 0.229063 0.627223 +60 0.317959 0.580285 +61 0.317959 0.625766 +SURF 0x30 +mat 0 +refs 3 +60 0.317959 0.580285 +48 0.229063 0.627223 +4 0.229063 0.581076 +SURF 0x30 +mat 0 +refs 3 +47 0.229063 0.658061 +61 0.317959 0.625766 +59 0.317959 0.65615 +SURF 0x30 +mat 0 +refs 3 +61 0.317959 0.625766 +47 0.229063 0.658061 +48 0.229063 0.627223 +SURF 0x30 +mat 0 +refs 3 +57 0.229063 0.668889 +59 0.317959 0.65615 +70 0.317959 0.666828 +SURF 0x30 +mat 0 +refs 3 +59 0.317959 0.65615 +57 0.229063 0.668889 +47 0.229063 0.658061 +SURF 0x30 +mat 0 +refs 3 +46 0.138406 0.658672 +57 0.229063 0.668889 +58 0.229063 0.658061 +SURF 0x30 +mat 0 +refs 3 +57 0.229063 0.668889 +46 0.138406 0.658672 +45 0.138406 0.669547 +SURF 0x30 +mat 0 +refs 3 +44 0.138406 0.627693 +58 0.229063 0.658061 +56 0.229063 0.627223 +SURF 0x30 +mat 0 +refs 3 +58 0.229063 0.658061 +44 0.138406 0.627693 +46 0.138406 0.658672 +SURF 0x30 +mat 0 +refs 3 +43 0.138406 0.581327 +56 0.229063 0.627223 +55 0.229063 0.581076 +SURF 0x30 +mat 0 +refs 3 +56 0.229063 0.627223 +43 0.138406 0.581327 +44 0.138406 0.627693 +SURF 0x30 +mat 0 +refs 3 +42 0.138406 0.52664 +55 0.229063 0.581076 +54 0.229063 0.52664 +SURF 0x30 +mat 0 +refs 3 +55 0.229063 0.581076 +42 0.138406 0.52664 +43 0.138406 0.581327 +SURF 0x30 +mat 0 +refs 3 +41 0.138406 0.471945 +54 0.229063 0.52664 +53 0.229063 0.472195 +SURF 0x30 +mat 0 +refs 3 +54 0.229063 0.52664 +41 0.138406 0.471945 +42 0.138406 0.52664 +SURF 0x30 +mat 0 +refs 3 +40 0.138406 0.425586 +53 0.229063 0.472195 +52 0.229063 0.426048 +SURF 0x30 +mat 0 +refs 3 +53 0.229063 0.472195 +40 0.138406 0.425586 +41 0.138406 0.471945 +SURF 0x30 +mat 0 +refs 3 +39 0.138406 0.394607 +52 0.229063 0.426048 +51 0.229063 0.39521 +SURF 0x30 +mat 0 +refs 3 +52 0.229063 0.426048 +39 0.138406 0.394607 +40 0.138406 0.425586 +SURF 0x30 +mat 0 +refs 3 +38 0.138406 0.359334 +51 0.229063 0.39521 +50 0.229063 0.359985 +SURF 0x30 +mat 0 +refs 3 +51 0.229063 0.39521 +38 0.138406 0.359334 +39 0.138406 0.394607 +SURF 0x30 +mat 0 +refs 3 +37 0.138406 0.394607 +50 0.229063 0.359985 +49 0.229063 0.39521 +SURF 0x30 +mat 0 +refs 3 +50 0.229063 0.359985 +37 0.138406 0.394607 +38 0.138406 0.359334 +SURF 0x30 +mat 0 +refs 3 +2 0.138406 0.425586 +49 0.229063 0.39521 +6 0.229063 0.426048 +SURF 0x30 +mat 0 +refs 3 +49 0.229063 0.39521 +2 0.138406 0.425586 +37 0.138406 0.394607 +SURF 0x30 +mat 0 +refs 3 +36 0.138406 0.627693 +4 0.229063 0.581076 +48 0.229063 0.627223 +SURF 0x30 +mat 0 +refs 3 +4 0.229063 0.581076 +36 0.138406 0.627693 +0 0.138406 0.581327 +SURF 0x30 +mat 0 +refs 3 +35 0.138406 0.658672 +48 0.229063 0.627223 +47 0.229063 0.658061 +SURF 0x30 +mat 0 +refs 3 +48 0.229063 0.627223 +35 0.138406 0.658672 +36 0.138406 0.627693 +SURF 0x30 +mat 0 +refs 3 +45 0.138406 0.669547 +47 0.229063 0.658061 +57 0.229063 0.668889 +SURF 0x30 +mat 0 +refs 3 +47 0.229063 0.658061 +45 0.138406 0.669547 +35 0.138406 0.658672 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +241 0.959666 0.443508 +240 0.959666 0.445493 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +239 0.959666 0.437865 +241 0.959666 0.443508 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +238 0.959666 0.429425 +239 0.959666 0.437865 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +237 0.959666 0.419466 +238 0.959666 0.429425 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +236 0.959666 0.409507 +237 0.959666 0.419466 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +235 0.959666 0.401067 +236 0.959666 0.409507 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +234 0.959666 0.39543 +235 0.959666 0.401067 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +233 0.959666 0.373189 +234 0.959666 0.39543 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +232 0.959666 0.39543 +233 0.959666 0.373189 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +231 0.959666 0.401067 +232 0.959666 0.39543 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +230 0.959666 0.409507 +231 0.959666 0.401067 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +229 0.959666 0.419466 +230 0.959666 0.409507 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +228 0.959666 0.429425 +229 0.959666 0.419466 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +227 0.959666 0.437865 +228 0.959666 0.429425 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +226 0.959666 0.443508 +227 0.959666 0.437865 +SURF 0x30 +mat 0 +refs 3 +242 0.964162 0.401801 +240 0.959666 0.445493 +226 0.959666 0.443508 +kids 0 +OBJECT poly +name "LWing" +loc -0.0200908 0.142409 0.45335 +texture "wing.jpg" +crease 45.000000 +numvert 242 +-0.130958 -0.044431 -0.355815 +-0.104801 -0.0379944 -0.355815 +-0.0656525 -0.0336944 -0.355815 +-0.0194785 -0.0321863 -0.355815 +0.0267023 -0.0336944 -0.355815 +0.0658444 -0.0379944 -0.355815 +0.0920009 -0.044431 -0.355815 +0.121783 -0.0520185 -0.355815 +0.0920009 -0.059613 -0.355815 +0.0658444 -0.0660495 -0.355815 +0.0267023 -0.0703493 -0.355815 +-0.0194785 -0.0718576 -0.355815 +-0.0656525 -0.0703493 -0.355815 +-0.104801 -0.0660495 -0.355815 +-0.130958 -0.059613 -0.355815 +-0.14014 -0.0520185 -0.355815 +-0.130442 -0.0445435 -0.267972 +-0.104404 -0.0381995 -0.267972 +-0.0654409 -0.033959 -0.267972 +-0.0194785 -0.0324707 -0.267972 +0.0264905 -0.033959 -0.267972 +0.0642236 -0.0373791 -0.181835 +0.0654541 -0.0381995 -0.267972 +0.0914916 -0.0445435 -0.267972 +0.121233 -0.0520185 -0.267972 +0.0914916 -0.0595005 -0.267972 +0.0654541 -0.0658444 -0.267972 +0.0264905 -0.0700847 -0.267972 +-0.0194785 -0.0715731 -0.267972 +-0.0654409 -0.0700847 -0.267972 +-0.104404 -0.0658444 -0.267972 +-0.130442 -0.0595005 -0.267972 +-0.139584 -0.0520185 -0.267972 +-0.128828 -0.0435644 -0.181835 +-0.103174 -0.0373791 -0.181835 +-0.0647728 -0.0332447 -0.181835 +-0.0194785 -0.0317894 -0.181835 +0.0258224 -0.0332447 -0.181835 +0.0898774 -0.0435644 -0.181835 +0.119487 -0.0508676 -0.181835 +0.0898774 -0.0581642 -0.181835 +0.0642236 -0.0643493 -0.181835 +0.0258224 -0.0684904 -0.181835 +-0.0194785 -0.0699393 -0.181835 +-0.0647728 -0.0684904 -0.181835 +-0.103174 -0.0643493 -0.181835 +-0.128828 -0.0581642 -0.181835 +-0.137844 -0.0508676 -0.181835 +-0.128259 -0.041077 -0.0982192 +-0.102737 -0.0351036 -0.0982192 +-0.0645346 -0.031108 -0.0982192 +-0.0194785 -0.0297056 -0.0982192 +0.0255843 -0.031108 -0.0982192 +0.0893085 -0.041077 -0.0982192 +0.118865 -0.0481223 -0.0982192 +0.0893085 -0.0551674 -0.0982192 +0.063787 -0.0611409 -0.0982192 +0.0255843 -0.0651366 -0.0982192 +-0.0194785 -0.0665389 -0.0982192 +-0.0645346 -0.0651366 -0.0982192 +-0.102737 -0.0611409 -0.0982192 +-0.128259 -0.0551674 -0.0982192 +-0.137222 -0.0481223 -0.0982192 +-0.127009 -0.0379282 -0.0179437 +-0.101778 -0.0322193 -0.0179437 +-0.0617165 -0.0243472 0.0582237 +-0.0640185 -0.028409 -0.0179437 +-0.0194785 -0.0270727 -0.0179437 +0.0250684 -0.028409 -0.0179437 +0.0880583 -0.0379282 -0.0179437 +0.117516 -0.0446492 -0.0179437 +0.0880583 -0.0513769 -0.0179437 +0.0628278 -0.0570792 -0.0179437 +0.0250684 -0.0608962 -0.0179437 +-0.0194785 -0.0622325 -0.0179437 +-0.0640185 -0.0608962 -0.0179437 +-0.101778 -0.0570792 -0.0179437 +-0.127009 -0.0513769 -0.0179437 +-0.135866 -0.0446492 -0.0179437 +-0.122914 -0.0333174 0.0582237 +-0.0984044 -0.0279392 0.0582237 +-0.0184532 -0.0230904 0.0582237 +0.0248236 -0.0243472 0.0582237 +0.0860142 -0.0333174 0.0582237 +0.115214 -0.0396613 0.0582237 +0.0860142 -0.0460054 0.0582237 +0.0615048 -0.0513836 0.0582237 +0.0248236 -0.0549756 0.0582237 +-0.0184532 -0.0562325 0.0582237 +-0.0617165 -0.0549756 0.0582237 +-0.0984044 -0.0513836 0.0582237 +-0.122914 -0.0460054 0.0582237 +-0.13152 -0.0396613 0.0582237 +-0.118482 -0.027979 0.129549 +-0.0945279 -0.0229844 0.129549 +-0.0143451 -0.014001 0.19535 +-0.0163957 -0.0184664 0.129549 +0.0249096 -0.0196438 0.129549 +0.0847043 -0.027979 0.129549 +0.113712 -0.0338798 0.129549 +0.0847043 -0.0397738 0.129549 +0.0607572 -0.0447749 0.129549 +0.0249096 -0.0481156 0.129549 +-0.0163957 -0.0492866 0.129549 +-0.0586801 -0.0481156 0.129549 +-0.0945279 -0.0447749 0.129549 +-0.118482 -0.0397738 0.129549 +-0.126889 -0.0338798 0.129549 +-0.111529 -0.0227001 0.19535 +-0.0887264 -0.018129 0.19535 +0.0300496 -0.00794816 0.251586 +0.0259084 -0.0150727 0.19535 +0.0600362 -0.018129 0.19535 +0.0828389 -0.0227001 0.19535 +0.111436 -0.0280915 0.19535 +0.0828389 -0.0334895 0.19535 +0.0600362 -0.0380605 0.19535 +0.0259084 -0.0411168 0.19535 +-0.0143451 -0.0421885 0.19535 +-0.0545985 -0.0411168 0.19535 +-0.0887264 -0.0380605 0.19535 +-0.111529 -0.0334895 0.19535 +-0.119533 -0.0280915 0.19535 +-0.097002 -0.0147949 0.251586 +-0.075926 -0.0106934 0.251586 +0.0648455 -0.0034101 0.296543 +0.0615975 -0.0106934 0.251586 +0.0839635 -0.00700223 0.296543 +0.0826735 -0.0147949 0.251586 +0.110669 -0.0196306 0.251586 +0.0826735 -0.024473 0.251586 +0.0615975 -0.0285743 0.251586 +0.0300496 -0.0313131 0.251586 +-0.00716762 -0.0322789 0.251586 +-0.044378 -0.0313131 0.251586 +-0.075926 -0.0285743 0.251586 +-0.097002 -0.024473 0.251586 +-0.104404 -0.0196306 0.251586 +-0.0809403 -0.00700223 0.296543 +-0.0618224 -0.0034101 0.296543 +0.111271 -0.0112425 0.296543 +0.0839635 -0.0154763 0.296543 +0.0648455 -0.0190682 0.296543 +0.0342766 -0.0214696 0.296543 +0.000532538 -0.0223163 0.296543 +-0.0332117 -0.0214696 0.296543 +-0.0618224 -0.0190682 0.296543 +-0.0809403 -0.0154763 0.296543 +-0.0876481 -0.0112425 0.296543 +-0.0585875 0.00605631 0.340309 +-0.0415401 0.00930429 0.340309 +0.113322 0.00221944 0.340309 +0.0867352 -0.00161731 0.340309 +0.0696878 -0.00487208 0.340309 +0.044173 -0.00704849 0.340309 +0.0140738 -0.00780928 0.340309 +-0.0160254 -0.00704849 0.340309 +-0.0415401 -0.00487208 0.340309 +-0.0585875 -0.00161731 0.340309 +-0.0645743 0.00221944 0.340309 +-0.0308831 0.0218798 0.378274 +-0.0165479 0.024645 0.378274 +0.0048985 0.0264906 0.378274 +0.0302016 0.0271388 0.378274 +0.116914 0.0186251 0.378274 +0.0912865 0.0153705 0.378274 +0.0769513 0.0126053 0.378274 +0.0555048 0.0107597 0.378274 +0.0302016 0.0101113 0.378274 +0.0048985 0.0107597 0.378274 +-0.0165479 0.0126053 0.378274 +-0.0308831 0.0153705 0.378274 +-0.0359106 0.0186251 0.378274 +-0.00171669 0.0398997 0.408194 +0.0107266 0.0421952 0.408194 +0.0293417 0.0437232 0.408194 +0.0512976 0.044259 0.408194 +0.0732601 0.0437232 0.408194 +0.0918752 0.0421952 0.408194 +0.104312 0.0398997 0.408194 +0.129278 0.0372006 0.408194 +0.104312 0.034495 0.408194 +0.0918752 0.0322062 0.408194 +0.0732601 0.0306715 0.408194 +0.0512976 0.0301355 0.408194 +0.0293417 0.0306715 0.408194 +0.0107266 0.0322062 0.408194 +-0.00171669 0.034495 0.408194 +-0.00608265 0.0372006 0.408194 +0.0348192 0.0571718 0.429773 +0.044431 0.0588521 0.429773 +0.0588124 0.0599701 0.429773 +0.0757871 0.0603603 0.429773 +0.092755 0.0599701 0.429773 +0.107143 0.0588521 0.429773 +0.116755 0.0571718 0.429773 +0.140722 0.0551939 0.429773 +0.116755 0.0532159 0.429773 +0.107143 0.0515424 0.429773 +0.092755 0.0504243 0.429773 +0.0757871 0.0500275 0.429773 +0.0588124 0.0504243 0.429773 +0.044431 0.0515424 0.429773 +0.0348192 0.0532159 0.429773 +0.0314388 0.0551939 0.429773 +0.0696217 0.067022 0.440152 +0.0749072 0.0679547 0.440152 +0.0828124 0.0685831 0.440152 +0.0921398 0.0688014 0.440152 +0.101467 0.0685831 0.440152 +0.109372 0.0679547 0.440152 +0.114651 0.067022 0.440152 +0.135483 0.0659173 0.440152 +0.114651 0.0648125 0.440152 +0.109372 0.0638797 0.440152 +0.101467 0.0632513 0.440152 +0.0921398 0.063033 0.440152 +0.0828124 0.0632513 0.440152 +0.0749072 0.0638797 0.440152 +0.108684 0.071957 0.444512 +0.0696217 0.0648125 0.440152 +0.0677628 0.0659173 0.440152 +-0.0586801 -0.0196438 0.129549 +-0.0545985 -0.0150727 0.19535 +-0.044378 -0.00794816 0.251586 +-0.00716762 -0.00698888 0.251586 +-0.0332117 -0.00100887 0.296543 +0.000532538 -0.000168681 0.296543 +0.0342766 -0.00100887 0.296543 +-0.0160254 0.0114807 0.340309 +0.0140738 0.0122415 0.340309 +0.044173 0.0114807 0.340309 +0.0696878 0.00930429 0.340309 +0.0867352 0.00605619 0.340309 +0.0302016 0.0271389 0.378274 +0.0555048 0.0264906 0.378274 +0.0769513 0.024645 0.378274 +0.0912865 0.0218798 0.378274 +0.0607572 -0.0229844 0.129549 +0.0615048 -0.0279392 0.0582237 +0.0628278 -0.0322193 -0.0179437 +0.063787 -0.0351036 -0.0982192 +numsurf 464 +SURF 0x30 +mat 0 +refs 3 +203 0.0705152 0.732481 +221 0.0610094 0.698833 +204 0.0705152 0.735934 +SURF 0x30 +mat 0 +refs 3 +221 0.0610094 0.698833 +203 0.0705152 0.732481 +220 0.0610094 0.696935 +SURF 0x30 +mat 0 +refs 3 +202 0.0705152 0.722664 +220 0.0610094 0.696935 +203 0.0705152 0.732481 +SURF 0x30 +mat 0 +refs 3 +220 0.0610094 0.696935 +202 0.0705152 0.722664 +218 0.0610094 0.691536 +SURF 0x30 +mat 0 +refs 3 +201 0.0705152 0.707975 +218 0.0610094 0.691536 +202 0.0705152 0.722664 +SURF 0x30 +mat 0 +refs 3 +218 0.0610094 0.691536 +201 0.0705152 0.707975 +217 0.0610094 0.683462 +SURF 0x30 +mat 0 +refs 3 +200 0.0705152 0.690637 +217 0.0610094 0.683462 +201 0.0705152 0.707975 +SURF 0x30 +mat 0 +refs 3 +217 0.0610094 0.683462 +200 0.0705152 0.690637 +216 0.0610094 0.673935 +SURF 0x30 +mat 0 +refs 3 +199 0.0705152 0.673307 +216 0.0610094 0.673935 +200 0.0705152 0.690637 +SURF 0x30 +mat 0 +refs 3 +216 0.0610094 0.673935 +199 0.0705152 0.673307 +215 0.0610094 0.664408 +SURF 0x30 +mat 0 +refs 3 +198 0.0705152 0.658611 +215 0.0610094 0.664408 +199 0.0705152 0.673307 +SURF 0x30 +mat 0 +refs 3 +215 0.0610094 0.664408 +198 0.0705152 0.658611 +214 0.0610094 0.656334 +SURF 0x30 +mat 0 +refs 3 +197 0.0705152 0.648793 +214 0.0610094 0.656334 +198 0.0705152 0.658611 +SURF 0x30 +mat 0 +refs 3 +214 0.0610094 0.656334 +197 0.0705152 0.648793 +213 0.0610094 0.650942 +SURF 0x30 +mat 0 +refs 3 +197 0.0705152 0.648793 +212 0.0610094 0.629665 +213 0.0610094 0.650942 +SURF 0x30 +mat 0 +refs 3 +212 0.0610094 0.629665 +197 0.0705152 0.648793 +196 0.0705152 0.624314 +SURF 0x30 +mat 0 +refs 3 +211 0.0610094 0.650942 +196 0.0705152 0.624314 +195 0.0705152 0.648793 +SURF 0x30 +mat 0 +refs 3 +196 0.0705152 0.624314 +211 0.0610094 0.650942 +212 0.0610094 0.629665 +SURF 0x30 +mat 0 +refs 3 +210 0.0610094 0.656334 +195 0.0705152 0.648793 +194 0.0705152 0.658611 +SURF 0x30 +mat 0 +refs 3 +195 0.0705152 0.648793 +210 0.0610094 0.656334 +211 0.0610094 0.650942 +SURF 0x30 +mat 0 +refs 3 +209 0.0610094 0.664408 +194 0.0705152 0.658611 +193 0.0705152 0.673307 +SURF 0x30 +mat 0 +refs 3 +194 0.0705152 0.658611 +209 0.0610094 0.664408 +210 0.0610094 0.656334 +SURF 0x30 +mat 0 +refs 3 +208 0.0610094 0.673935 +193 0.0705152 0.673307 +192 0.0705152 0.690637 +SURF 0x30 +mat 0 +refs 3 +193 0.0705152 0.673307 +208 0.0610094 0.673935 +209 0.0610094 0.664408 +SURF 0x30 +mat 0 +refs 3 +207 0.0610094 0.683462 +192 0.0705152 0.690637 +191 0.0705152 0.707975 +SURF 0x30 +mat 0 +refs 3 +192 0.0705152 0.690637 +207 0.0610094 0.683462 +208 0.0610094 0.673935 +SURF 0x30 +mat 0 +refs 3 +206 0.0610094 0.691536 +191 0.0705152 0.707975 +190 0.0705152 0.722664 +SURF 0x30 +mat 0 +refs 3 +191 0.0705152 0.707975 +206 0.0610094 0.691536 +207 0.0610094 0.683462 +SURF 0x30 +mat 0 +refs 3 +205 0.0610094 0.696935 +190 0.0705152 0.722664 +189 0.0705152 0.732481 +SURF 0x30 +mat 0 +refs 3 +190 0.0705152 0.722664 +205 0.0610094 0.696935 +206 0.0610094 0.691536 +SURF 0x30 +mat 0 +refs 3 +221 0.0610094 0.698833 +189 0.0705152 0.732481 +204 0.0705152 0.735934 +SURF 0x30 +mat 0 +refs 3 +189 0.0705152 0.732481 +221 0.0610094 0.698833 +205 0.0610094 0.696935 +SURF 0x30 +mat 0 +refs 3 +187 0.0902785 0.769799 +204 0.0705152 0.735934 +188 0.0902785 0.774258 +SURF 0x30 +mat 0 +refs 3 +204 0.0705152 0.735934 +187 0.0902785 0.769799 +203 0.0705152 0.732481 +SURF 0x30 +mat 0 +refs 3 +186 0.0902785 0.757089 +203 0.0705152 0.732481 +187 0.0902785 0.769799 +SURF 0x30 +mat 0 +refs 3 +203 0.0705152 0.732481 +186 0.0902785 0.757089 +202 0.0705152 0.722664 +SURF 0x30 +mat 0 +refs 3 +185 0.0902785 0.738076 +202 0.0705152 0.722664 +186 0.0902785 0.757089 +SURF 0x30 +mat 0 +refs 3 +202 0.0705152 0.722664 +185 0.0902785 0.738076 +201 0.0705152 0.707975 +SURF 0x30 +mat 0 +refs 3 +200 0.0705152 0.690637 +185 0.0902785 0.738076 +184 0.0902785 0.715651 +SURF 0x30 +mat 0 +refs 3 +185 0.0902785 0.738076 +200 0.0705152 0.690637 +201 0.0705152 0.707975 +SURF 0x30 +mat 0 +refs 3 +199 0.0705152 0.673307 +184 0.0902785 0.715651 +183 0.0902785 0.693218 +SURF 0x30 +mat 0 +refs 3 +184 0.0902785 0.715651 +199 0.0705152 0.673307 +200 0.0705152 0.690637 +SURF 0x30 +mat 0 +refs 3 +198 0.0705152 0.658611 +183 0.0902785 0.693218 +182 0.0902785 0.674205 +SURF 0x30 +mat 0 +refs 3 +183 0.0902785 0.693218 +198 0.0705152 0.658611 +199 0.0705152 0.673307 +SURF 0x30 +mat 0 +refs 3 +197 0.0705152 0.648793 +182 0.0902785 0.674205 +181 0.0902785 0.661503 +SURF 0x30 +mat 0 +refs 3 +182 0.0902785 0.674205 +197 0.0705152 0.648793 +198 0.0705152 0.658611 +SURF 0x30 +mat 0 +refs 3 +196 0.0705152 0.624314 +181 0.0902785 0.661503 +180 0.0902785 0.636003 +SURF 0x30 +mat 0 +refs 3 +181 0.0902785 0.661503 +196 0.0705152 0.624314 +197 0.0705152 0.648793 +SURF 0x30 +mat 0 +refs 3 +195 0.0705152 0.648793 +180 0.0902785 0.636003 +179 0.0902785 0.661503 +SURF 0x30 +mat 0 +refs 3 +180 0.0902785 0.636003 +195 0.0705152 0.648793 +196 0.0705152 0.624314 +SURF 0x30 +mat 0 +refs 3 +194 0.0705152 0.658611 +179 0.0902785 0.661503 +178 0.0902785 0.674205 +SURF 0x30 +mat 0 +refs 3 +179 0.0902785 0.661503 +194 0.0705152 0.658611 +195 0.0705152 0.648793 +SURF 0x30 +mat 0 +refs 3 +193 0.0705152 0.673307 +178 0.0902785 0.674205 +177 0.0902785 0.693218 +SURF 0x30 +mat 0 +refs 3 +178 0.0902785 0.674205 +193 0.0705152 0.673307 +194 0.0705152 0.658611 +SURF 0x30 +mat 0 +refs 3 +192 0.0705152 0.690637 +177 0.0902785 0.693218 +176 0.0902785 0.715651 +SURF 0x30 +mat 0 +refs 3 +177 0.0902785 0.693218 +192 0.0705152 0.690637 +193 0.0705152 0.673307 +SURF 0x30 +mat 0 +refs 3 +191 0.0705152 0.707975 +176 0.0902785 0.715651 +175 0.0902785 0.738076 +SURF 0x30 +mat 0 +refs 3 +176 0.0902785 0.715651 +191 0.0705152 0.707975 +192 0.0705152 0.690637 +SURF 0x30 +mat 0 +refs 3 +190 0.0705152 0.722664 +175 0.0902785 0.738076 +174 0.0902785 0.757089 +SURF 0x30 +mat 0 +refs 3 +175 0.0902785 0.738076 +190 0.0705152 0.722664 +191 0.0705152 0.707975 +SURF 0x30 +mat 0 +refs 3 +189 0.0705152 0.732481 +174 0.0902785 0.757089 +173 0.0902785 0.769799 +SURF 0x30 +mat 0 +refs 3 +174 0.0902785 0.757089 +189 0.0705152 0.732481 +190 0.0705152 0.722664 +SURF 0x30 +mat 0 +refs 3 +204 0.0705152 0.735934 +173 0.0902785 0.769799 +188 0.0902785 0.774258 +SURF 0x30 +mat 0 +refs 3 +173 0.0902785 0.769799 +204 0.0705152 0.735934 +189 0.0705152 0.732481 +SURF 0x30 +mat 0 +refs 3 +171 0.117681 0.799589 +188 0.0902785 0.774258 +172 0.117681 0.804724 +SURF 0x30 +mat 0 +refs 3 +188 0.0902785 0.774258 +171 0.117681 0.799589 +187 0.0902785 0.769799 +SURF 0x30 +mat 0 +refs 3 +186 0.0902785 0.757089 +171 0.117681 0.799589 +170 0.117681 0.784947 +SURF 0x30 +mat 0 +refs 3 +171 0.117681 0.799589 +186 0.0902785 0.757089 +187 0.0902785 0.769799 +SURF 0x30 +mat 0 +refs 3 +185 0.0902785 0.738076 +170 0.117681 0.784947 +169 0.117681 0.763042 +SURF 0x30 +mat 0 +refs 3 +170 0.117681 0.784947 +185 0.0902785 0.738076 +186 0.0902785 0.757089 +SURF 0x30 +mat 0 +refs 3 +184 0.0902785 0.715651 +169 0.117681 0.763042 +168 0.117681 0.737198 +SURF 0x30 +mat 0 +refs 3 +169 0.117681 0.763042 +184 0.0902785 0.715651 +185 0.0902785 0.738076 +SURF 0x30 +mat 0 +refs 3 +183 0.0902785 0.693218 +168 0.117681 0.737198 +167 0.117681 0.711353 +SURF 0x30 +mat 0 +refs 3 +168 0.117681 0.737198 +183 0.0902785 0.693218 +184 0.0902785 0.715651 +SURF 0x30 +mat 0 +refs 3 +182 0.0902785 0.674205 +167 0.117681 0.711353 +166 0.117681 0.689448 +SURF 0x30 +mat 0 +refs 3 +167 0.117681 0.711353 +182 0.0902785 0.674205 +183 0.0902785 0.693218 +SURF 0x30 +mat 0 +refs 3 +181 0.0902785 0.661503 +166 0.117681 0.689448 +165 0.117681 0.674807 +SURF 0x30 +mat 0 +refs 3 +166 0.117681 0.689448 +181 0.0902785 0.661503 +182 0.0902785 0.674205 +SURF 0x30 +mat 0 +refs 3 +180 0.0902785 0.636003 +165 0.117681 0.674807 +164 0.117681 0.648631 +SURF 0x30 +mat 0 +refs 3 +165 0.117681 0.674807 +180 0.0902785 0.636003 +181 0.0902785 0.661503 +SURF 0x30 +mat 0 +refs 3 +175 0.0902785 0.738076 +163 0.117681 0.737198 +162 0.117681 0.763042 +SURF 0x30 +mat 0 +refs 3 +163 0.117681 0.737198 +175 0.0902785 0.738076 +176 0.0902785 0.715651 +SURF 0x30 +mat 0 +refs 3 +174 0.0902785 0.757089 +162 0.117681 0.763042 +161 0.117681 0.784947 +SURF 0x30 +mat 0 +refs 3 +162 0.117681 0.763042 +174 0.0902785 0.757089 +175 0.0902785 0.738076 +SURF 0x30 +mat 0 +refs 3 +173 0.0902785 0.769799 +161 0.117681 0.784947 +160 0.117681 0.799589 +SURF 0x30 +mat 0 +refs 3 +161 0.117681 0.784947 +173 0.0902785 0.769799 +174 0.0902785 0.757089 +SURF 0x30 +mat 0 +refs 3 +188 0.0902785 0.774258 +160 0.117681 0.799589 +172 0.117681 0.804724 +SURF 0x30 +mat 0 +refs 3 +160 0.117681 0.799589 +188 0.0902785 0.774258 +173 0.0902785 0.769799 +SURF 0x30 +mat 0 +refs 3 +171 0.117681 0.799589 +159 0.152452 0.834 +158 0.152452 0.827885 +SURF 0x30 +mat 0 +refs 3 +159 0.152452 0.834 +171 0.117681 0.799589 +172 0.117681 0.804724 +SURF 0x30 +mat 0 +refs 3 +170 0.117681 0.784947 +158 0.152452 0.827885 +157 0.152452 0.810474 +SURF 0x30 +mat 0 +refs 3 +158 0.152452 0.827885 +170 0.117681 0.784947 +171 0.117681 0.799589 +SURF 0x30 +mat 0 +refs 3 +169 0.0343099 0.623193 +157 0.0690803 0.670625 +156 0.0690803 0.644564 +SURF 0x30 +mat 0 +refs 3 +157 0.0690803 0.670625 +169 0.0343099 0.623193 +170 0.0343099 0.645098 +SURF 0x30 +mat 0 +refs 3 +168 0.0343099 0.597349 +156 0.0690803 0.644564 +155 0.0690803 0.613821 +SURF 0x30 +mat 0 +refs 3 +156 0.0690803 0.644564 +168 0.0343099 0.597349 +169 0.0343099 0.623193 +SURF 0x30 +mat 0 +refs 3 +167 0.0343099 0.571505 +155 0.0690803 0.613821 +154 0.0690803 0.583079 +SURF 0x30 +mat 0 +refs 3 +155 0.0690803 0.613821 +167 0.0343099 0.571505 +168 0.0343099 0.597349 +SURF 0x30 +mat 0 +refs 3 +166 0.117681 0.689448 +154 0.152452 0.722928 +153 0.152452 0.696867 +SURF 0x30 +mat 0 +refs 3 +154 0.152452 0.722928 +166 0.117681 0.689448 +167 0.117681 0.711353 +SURF 0x30 +mat 0 +refs 3 +165 0.117681 0.674807 +153 0.152452 0.696867 +152 0.152452 0.679455 +SURF 0x30 +mat 0 +refs 3 +153 0.152452 0.696867 +165 0.117681 0.674807 +166 0.117681 0.689448 +SURF 0x30 +mat 0 +refs 3 +164 0.117681 0.648631 +152 0.152452 0.679455 +151 0.152452 0.6523 +SURF 0x30 +mat 0 +refs 3 +152 0.152452 0.679455 +164 0.117681 0.648631 +165 0.117681 0.674807 +SURF 0x30 +mat 0 +refs 3 +160 0.117681 0.799589 +150 0.152452 0.810474 +149 0.152452 0.827885 +SURF 0x30 +mat 0 +refs 3 +150 0.152452 0.810474 +160 0.117681 0.799589 +161 0.117681 0.784947 +SURF 0x30 +mat 0 +refs 3 +172 0.117681 0.804724 +149 0.152452 0.827885 +159 0.152452 0.834 +SURF 0x30 +mat 0 +refs 3 +149 0.152452 0.827885 +172 0.117681 0.804724 +160 0.117681 0.799589 +SURF 0x30 +mat 0 +refs 3 +158 0.152452 0.827885 +148 0.192535 0.857567 +147 0.192535 0.850716 +SURF 0x30 +mat 0 +refs 3 +148 0.192535 0.857567 +158 0.152452 0.827885 +159 0.152452 0.834 +SURF 0x30 +mat 0 +refs 3 +157 0.152452 0.810474 +147 0.192535 0.850716 +146 0.192535 0.831189 +SURF 0x30 +mat 0 +refs 3 +147 0.192535 0.850716 +157 0.152452 0.810474 +158 0.152452 0.827885 +SURF 0x30 +mat 0 +refs 3 +156 0.0690803 0.644564 +146 0.109164 0.691341 +145 0.109164 0.662118 +SURF 0x30 +mat 0 +refs 3 +146 0.109164 0.691341 +156 0.0690803 0.644564 +157 0.0690803 0.670625 +SURF 0x30 +mat 0 +refs 3 +155 0.0690803 0.613821 +145 0.109164 0.662118 +144 0.109164 0.627652 +SURF 0x30 +mat 0 +refs 3 +145 0.109164 0.662118 +155 0.0690803 0.613821 +156 0.0690803 0.644564 +SURF 0x30 +mat 0 +refs 3 +154 0.0690803 0.583079 +144 0.109164 0.627652 +143 0.109164 0.593187 +SURF 0x30 +mat 0 +refs 3 +144 0.109164 0.627652 +154 0.0690803 0.583079 +155 0.0690803 0.613821 +SURF 0x30 +mat 0 +refs 3 +153 0.152452 0.696867 +143 0.192535 0.733035 +142 0.192535 0.701813 +SURF 0x30 +mat 0 +refs 3 +143 0.192535 0.733035 +153 0.152452 0.696867 +154 0.152452 0.722928 +SURF 0x30 +mat 0 +refs 3 +152 0.152452 0.679455 +142 0.192535 0.701813 +141 0.192535 0.682286 +SURF 0x30 +mat 0 +refs 3 +142 0.192535 0.701813 +152 0.152452 0.679455 +153 0.152452 0.696867 +SURF 0x30 +mat 0 +refs 3 +151 0.152452 0.6523 +141 0.192535 0.682286 +140 0.192535 0.654395 +SURF 0x30 +mat 0 +refs 3 +141 0.192535 0.682286 +151 0.152452 0.6523 +152 0.152452 0.679455 +SURF 0x30 +mat 0 +refs 3 +149 0.152452 0.827885 +139 0.192535 0.831189 +138 0.192535 0.850716 +SURF 0x30 +mat 0 +refs 3 +139 0.192535 0.831189 +149 0.152452 0.827885 +150 0.152452 0.810474 +SURF 0x30 +mat 0 +refs 3 +159 0.152452 0.834 +138 0.192535 0.850716 +148 0.192535 0.857567 +SURF 0x30 +mat 0 +refs 3 +138 0.192535 0.850716 +159 0.152452 0.834 +149 0.152452 0.827885 +SURF 0x30 +mat 0 +refs 3 +147 0.192535 0.850716 +137 0.23371 0.874682 +136 0.23371 0.867121 +SURF 0x30 +mat 0 +refs 3 +137 0.23371 0.874682 +147 0.192535 0.850716 +148 0.192535 0.857567 +SURF 0x30 +mat 0 +refs 3 +146 0.192535 0.831189 +136 0.23371 0.867121 +135 0.23371 0.845595 +SURF 0x30 +mat 0 +refs 3 +136 0.23371 0.867121 +146 0.192535 0.831189 +147 0.192535 0.850716 +SURF 0x30 +mat 0 +refs 3 +145 0.109164 0.662118 +135 0.150338 0.705746 +134 0.150338 0.673523 +SURF 0x30 +mat 0 +refs 3 +135 0.150338 0.705746 +145 0.109164 0.662118 +146 0.109164 0.691341 +SURF 0x30 +mat 0 +refs 3 +144 0.109164 0.627652 +134 0.150338 0.673523 +133 0.150338 0.635517 +SURF 0x30 +mat 0 +refs 3 +134 0.150338 0.673523 +144 0.109164 0.627652 +145 0.109164 0.662118 +SURF 0x30 +mat 0 +refs 3 +143 0.109164 0.593187 +133 0.150338 0.635517 +132 0.150338 0.597504 +SURF 0x30 +mat 0 +refs 3 +133 0.150338 0.635517 +143 0.109164 0.593187 +144 0.109164 0.627652 +SURF 0x30 +mat 0 +refs 3 +142 0.192535 0.701813 +132 0.23371 0.737353 +131 0.23371 0.70513 +SURF 0x30 +mat 0 +refs 3 +132 0.23371 0.737353 +142 0.192535 0.701813 +143 0.192535 0.733035 +SURF 0x30 +mat 0 +refs 3 +141 0.192535 0.682286 +131 0.23371 0.70513 +130 0.23371 0.683604 +SURF 0x30 +mat 0 +refs 3 +131 0.23371 0.70513 +141 0.192535 0.682286 +142 0.192535 0.701813 +SURF 0x30 +mat 0 +refs 3 +140 0.192535 0.654395 +130 0.23371 0.683604 +129 0.23371 0.655009 +SURF 0x30 +mat 0 +refs 3 +130 0.23371 0.683604 +140 0.192535 0.654395 +141 0.192535 0.682286 +SURF 0x30 +mat 0 +refs 3 +127 0.192535 0.682286 +129 0.23371 0.655009 +128 0.23371 0.683604 +SURF 0x30 +mat 0 +refs 3 +129 0.23371 0.655009 +127 0.192535 0.682286 +140 0.192535 0.654395 +SURF 0x30 +mat 0 +refs 3 +125 0.192535 0.701813 +128 0.23371 0.683604 +126 0.23371 0.70513 +SURF 0x30 +mat 0 +refs 3 +128 0.23371 0.683604 +125 0.192535 0.701813 +127 0.192535 0.682286 +SURF 0x30 +mat 0 +refs 3 +138 0.192535 0.850716 +124 0.23371 0.845595 +123 0.23371 0.867121 +SURF 0x30 +mat 0 +refs 3 +124 0.23371 0.845595 +138 0.192535 0.850716 +139 0.192535 0.831189 +SURF 0x30 +mat 0 +refs 3 +148 0.192535 0.857567 +123 0.23371 0.867121 +137 0.23371 0.874682 +SURF 0x30 +mat 0 +refs 3 +123 0.23371 0.867121 +148 0.192535 0.857567 +138 0.192535 0.850716 +SURF 0x30 +mat 0 +refs 3 +136 0.23371 0.867121 +122 0.285214 0.890134 +121 0.285214 0.881959 +SURF 0x30 +mat 0 +refs 3 +122 0.285214 0.890134 +136 0.23371 0.867121 +137 0.23371 0.874682 +SURF 0x30 +mat 0 +refs 3 +135 0.23371 0.845595 +121 0.285214 0.881959 +120 0.285214 0.858669 +SURF 0x30 +mat 0 +refs 3 +121 0.285214 0.881959 +135 0.23371 0.845595 +136 0.23371 0.867121 +SURF 0x30 +mat 0 +refs 3 +134 0.150338 0.673523 +120 0.201842 0.71882 +119 0.201842 0.683962 +SURF 0x30 +mat 0 +refs 3 +120 0.201842 0.71882 +134 0.150338 0.673523 +135 0.150338 0.705746 +SURF 0x30 +mat 0 +refs 3 +133 0.150338 0.635517 +119 0.201842 0.683962 +118 0.201842 0.642848 +SURF 0x30 +mat 0 +refs 3 +119 0.201842 0.683962 +133 0.150338 0.635517 +134 0.150338 0.673523 +SURF 0x30 +mat 0 +refs 3 +132 0.150338 0.597504 +118 0.201842 0.642848 +117 0.201842 0.601734 +SURF 0x30 +mat 0 +refs 3 +118 0.201842 0.642848 +132 0.150338 0.597504 +133 0.150338 0.635517 +SURF 0x30 +mat 0 +refs 3 +131 0.23371 0.70513 +117 0.285214 0.741583 +116 0.285214 0.706725 +SURF 0x30 +mat 0 +refs 3 +117 0.285214 0.741583 +131 0.23371 0.70513 +132 0.23371 0.737353 +SURF 0x30 +mat 0 +refs 3 +130 0.23371 0.683604 +116 0.285214 0.706725 +115 0.285214 0.683435 +SURF 0x30 +mat 0 +refs 3 +116 0.285214 0.706725 +130 0.23371 0.683604 +131 0.23371 0.70513 +SURF 0x30 +mat 0 +refs 3 +129 0.23371 0.655009 +115 0.285214 0.683435 +114 0.285214 0.654226 +SURF 0x30 +mat 0 +refs 3 +115 0.285214 0.683435 +129 0.23371 0.655009 +130 0.23371 0.683604 +SURF 0x30 +mat 0 +refs 3 +128 0.23371 0.683604 +114 0.285214 0.654226 +113 0.285214 0.683435 +SURF 0x30 +mat 0 +refs 3 +114 0.285214 0.654226 +128 0.23371 0.683604 +129 0.23371 0.655009 +SURF 0x30 +mat 0 +refs 3 +126 0.23371 0.70513 +113 0.285214 0.683435 +112 0.285214 0.706725 +SURF 0x30 +mat 0 +refs 3 +113 0.285214 0.683435 +126 0.23371 0.70513 +128 0.23371 0.683604 +SURF 0x30 +mat 0 +refs 3 +110 0.23371 0.737353 +112 0.285214 0.706725 +111 0.285214 0.741583 +SURF 0x30 +mat 0 +refs 3 +112 0.285214 0.706725 +110 0.23371 0.737353 +126 0.23371 0.70513 +SURF 0x30 +mat 0 +refs 3 +123 0.23371 0.867121 +109 0.285214 0.858669 +108 0.285214 0.881959 +SURF 0x30 +mat 0 +refs 3 +109 0.285214 0.858669 +123 0.23371 0.867121 +124 0.23371 0.845595 +SURF 0x30 +mat 0 +refs 3 +137 0.23371 0.874682 +108 0.285214 0.881959 +122 0.285214 0.890134 +SURF 0x30 +mat 0 +refs 3 +108 0.285214 0.881959 +137 0.23371 0.874682 +123 0.23371 0.867121 +SURF 0x30 +mat 0 +refs 3 +121 0.285214 0.881959 +107 0.345479 0.897648 +106 0.345479 0.88906 +SURF 0x30 +mat 0 +refs 3 +107 0.345479 0.897648 +121 0.285214 0.881959 +122 0.285214 0.890134 +SURF 0x30 +mat 0 +refs 3 +120 0.285214 0.858669 +106 0.345479 0.88906 +105 0.345479 0.864594 +SURF 0x30 +mat 0 +refs 3 +106 0.345479 0.88906 +120 0.285214 0.858669 +121 0.285214 0.881959 +SURF 0x30 +mat 0 +refs 3 +119 0.201842 0.683962 +105 0.262107 0.724745 +104 0.262107 0.688131 +SURF 0x30 +mat 0 +refs 3 +105 0.262107 0.724745 +119 0.201842 0.683962 +120 0.201842 0.71882 +SURF 0x30 +mat 0 +refs 3 +118 0.201842 0.642848 +104 0.262107 0.688131 +103 0.262107 0.644942 +SURF 0x30 +mat 0 +refs 3 +104 0.262107 0.688131 +118 0.201842 0.642848 +119 0.201842 0.683962 +SURF 0x30 +mat 0 +refs 3 +117 0.201842 0.601734 +103 0.262107 0.644942 +102 0.262107 0.602754 +SURF 0x30 +mat 0 +refs 3 +103 0.262107 0.644942 +117 0.201842 0.601734 +118 0.201842 0.642848 +SURF 0x30 +mat 0 +refs 3 +116 0.285214 0.706725 +102 0.345479 0.742603 +101 0.345479 0.705989 +SURF 0x30 +mat 0 +refs 3 +102 0.345479 0.742603 +116 0.285214 0.706725 +117 0.285214 0.741583 +SURF 0x30 +mat 0 +refs 3 +115 0.285214 0.683435 +101 0.345479 0.705989 +100 0.345479 0.681529 +SURF 0x30 +mat 0 +refs 3 +101 0.345479 0.705989 +115 0.285214 0.683435 +116 0.285214 0.706725 +SURF 0x30 +mat 0 +refs 3 +114 0.285214 0.654226 +100 0.345479 0.681529 +99 0.345479 0.651901 +SURF 0x30 +mat 0 +refs 3 +100 0.345479 0.681529 +114 0.285214 0.654226 +115 0.285214 0.683435 +SURF 0x30 +mat 0 +refs 3 +113 0.285214 0.683435 +99 0.345479 0.651901 +98 0.345479 0.681529 +SURF 0x30 +mat 0 +refs 3 +99 0.345479 0.651901 +113 0.285214 0.683435 +114 0.285214 0.654226 +SURF 0x30 +mat 0 +refs 3 +95 0.285214 0.782697 +97 0.345479 0.742603 +96 0.345479 0.784791 +SURF 0x30 +mat 0 +refs 3 +97 0.345479 0.742603 +95 0.285214 0.782697 +111 0.285214 0.741583 +SURF 0x30 +mat 0 +refs 3 +108 0.285214 0.881959 +94 0.345479 0.864594 +93 0.345479 0.88906 +SURF 0x30 +mat 0 +refs 3 +94 0.345479 0.864594 +108 0.285214 0.881959 +109 0.285214 0.858669 +SURF 0x30 +mat 0 +refs 3 +122 0.285214 0.890134 +93 0.345479 0.88906 +107 0.345479 0.897648 +SURF 0x30 +mat 0 +refs 3 +93 0.345479 0.88906 +122 0.285214 0.890134 +108 0.285214 0.881959 +SURF 0x30 +mat 0 +refs 3 +106 0.345479 0.88906 +92 0.410802 0.902378 +91 0.410802 0.893587 +SURF 0x30 +mat 0 +refs 3 +92 0.410802 0.902378 +106 0.345479 0.88906 +107 0.345479 0.897648 +SURF 0x30 +mat 0 +refs 3 +105 0.345479 0.864594 +91 0.410802 0.893587 +90 0.410802 0.868554 +SURF 0x30 +mat 0 +refs 3 +91 0.410802 0.893587 +105 0.345479 0.864594 +106 0.345479 0.88906 +SURF 0x30 +mat 0 +refs 3 +104 0.262107 0.688131 +90 0.327431 0.728705 +89 0.327431 0.691232 +SURF 0x30 +mat 0 +refs 3 +90 0.327431 0.728705 +104 0.262107 0.688131 +105 0.262107 0.724745 +SURF 0x30 +mat 0 +refs 3 +103 0.262107 0.644942 +89 0.327431 0.691232 +88 0.327431 0.647044 +SURF 0x30 +mat 0 +refs 3 +89 0.327431 0.691232 +103 0.262107 0.644942 +104 0.262107 0.688131 +SURF 0x30 +mat 0 +refs 3 +102 0.262107 0.602754 +88 0.327431 0.647044 +87 0.327431 0.602842 +SURF 0x30 +mat 0 +refs 3 +88 0.327431 0.647044 +102 0.262107 0.602754 +103 0.262107 0.644942 +SURF 0x30 +mat 0 +refs 3 +101 0.345479 0.705989 +87 0.410802 0.742691 +86 0.410802 0.705225 +SURF 0x30 +mat 0 +refs 3 +87 0.410802 0.742691 +101 0.345479 0.705989 +102 0.345479 0.742603 +SURF 0x30 +mat 0 +refs 3 +100 0.345479 0.681529 +86 0.410802 0.705225 +85 0.410802 0.680192 +SURF 0x30 +mat 0 +refs 3 +86 0.410802 0.705225 +100 0.345479 0.681529 +101 0.345479 0.705989 +SURF 0x30 +mat 0 +refs 3 +99 0.345479 0.651901 +85 0.410802 0.680192 +84 0.410802 0.650368 +SURF 0x30 +mat 0 +refs 3 +85 0.410802 0.680192 +99 0.345479 0.651901 +100 0.345479 0.681529 +SURF 0x30 +mat 0 +refs 3 +98 0.345479 0.681529 +84 0.410802 0.650368 +83 0.410802 0.680192 +SURF 0x30 +mat 0 +refs 3 +84 0.410802 0.650368 +98 0.345479 0.681529 +99 0.345479 0.651901 +SURF 0x30 +mat 0 +refs 3 +96 0.345479 0.784791 +82 0.410802 0.742691 +81 0.410802 0.786893 +SURF 0x30 +mat 0 +refs 3 +82 0.410802 0.742691 +96 0.345479 0.784791 +97 0.345479 0.742603 +SURF 0x30 +mat 0 +refs 3 +93 0.345479 0.88906 +80 0.410802 0.868554 +79 0.410802 0.893587 +SURF 0x30 +mat 0 +refs 3 +80 0.410802 0.868554 +93 0.345479 0.88906 +94 0.345479 0.864594 +SURF 0x30 +mat 0 +refs 3 +107 0.345479 0.897648 +79 0.410802 0.893587 +92 0.410802 0.902378 +SURF 0x30 +mat 0 +refs 3 +79 0.410802 0.893587 +107 0.345479 0.897648 +93 0.345479 0.88906 +SURF 0x30 +mat 0 +refs 3 +91 0.410802 0.893587 +78 0.480561 0.906817 +77 0.480561 0.89777 +SURF 0x30 +mat 0 +refs 3 +78 0.480561 0.906817 +91 0.410802 0.893587 +92 0.410802 0.902378 +SURF 0x30 +mat 0 +refs 3 +90 0.410802 0.868554 +77 0.480561 0.89777 +76 0.480561 0.872 +SURF 0x30 +mat 0 +refs 3 +77 0.480561 0.89777 +90 0.410802 0.868554 +91 0.410802 0.893587 +SURF 0x30 +mat 0 +refs 3 +89 0.410802 0.831081 +76 0.480561 0.872 +75 0.480561 0.833433 +SURF 0x30 +mat 0 +refs 3 +76 0.480561 0.872 +89 0.410802 0.831081 +90 0.410802 0.868554 +SURF 0x30 +mat 0 +refs 3 +88 0.327431 0.647044 +75 0.39719 0.693584 +74 0.39719 0.648091 +SURF 0x30 +mat 0 +refs 3 +75 0.39719 0.693584 +88 0.327431 0.647044 +89 0.327431 0.691232 +SURF 0x30 +mat 0 +refs 3 +87 0.327431 0.602842 +74 0.39719 0.648091 +73 0.39719 0.602592 +SURF 0x30 +mat 0 +refs 3 +74 0.39719 0.648091 +87 0.327431 0.602842 +88 0.327431 0.647044 +SURF 0x30 +mat 0 +refs 3 +86 0.410802 0.705225 +73 0.480561 0.742441 +72 0.480561 0.703874 +SURF 0x30 +mat 0 +refs 3 +73 0.480561 0.742441 +86 0.410802 0.705225 +87 0.410802 0.742691 +SURF 0x30 +mat 0 +refs 3 +85 0.410802 0.680192 +72 0.480561 0.703874 +71 0.480561 0.678104 +SURF 0x30 +mat 0 +refs 3 +72 0.480561 0.703874 +85 0.410802 0.680192 +86 0.410802 0.705225 +SURF 0x30 +mat 0 +refs 3 +84 0.410802 0.650368 +71 0.480561 0.678104 +70 0.480561 0.648016 +SURF 0x30 +mat 0 +refs 3 +71 0.480561 0.678104 +84 0.410802 0.650368 +85 0.410802 0.680192 +SURF 0x30 +mat 0 +refs 3 +83 0.410802 0.680192 +70 0.480561 0.648016 +69 0.480561 0.678104 +SURF 0x30 +mat 0 +refs 3 +70 0.480561 0.648016 +83 0.410802 0.680192 +84 0.410802 0.650368 +SURF 0x30 +mat 0 +refs 3 +81 0.410802 0.786893 +68 0.480561 0.742441 +67 0.480561 0.78794 +SURF 0x30 +mat 0 +refs 3 +68 0.480561 0.742441 +81 0.410802 0.786893 +82 0.410802 0.742691 +SURF 0x30 +mat 0 +refs 3 +65 0.410802 0.831081 +67 0.480561 0.78794 +66 0.480561 0.833433 +SURF 0x30 +mat 0 +refs 3 +67 0.480561 0.78794 +65 0.410802 0.831081 +81 0.410802 0.786893 +SURF 0x30 +mat 0 +refs 3 +80 0.410802 0.868554 +66 0.480561 0.833433 +64 0.480561 0.872 +SURF 0x30 +mat 0 +refs 3 +66 0.480561 0.833433 +80 0.410802 0.868554 +65 0.410802 0.831081 +SURF 0x30 +mat 0 +refs 3 +79 0.410802 0.893587 +64 0.480561 0.872 +63 0.480561 0.89777 +SURF 0x30 +mat 0 +refs 3 +64 0.480561 0.872 +79 0.410802 0.893587 +80 0.410802 0.868554 +SURF 0x30 +mat 0 +refs 3 +92 0.410802 0.902378 +63 0.480561 0.89777 +78 0.480561 0.906817 +SURF 0x30 +mat 0 +refs 3 +63 0.480561 0.89777 +92 0.410802 0.902378 +79 0.410802 0.893587 +SURF 0x30 +mat 0 +refs 3 +77 0.480561 0.89777 +62 0.554082 0.908202 +61 0.554082 0.899047 +SURF 0x30 +mat 0 +refs 3 +62 0.554082 0.908202 +77 0.480561 0.89777 +78 0.480561 0.906817 +SURF 0x30 +mat 0 +refs 3 +76 0.480561 0.872 +61 0.554082 0.899047 +60 0.554082 0.872979 +SURF 0x30 +mat 0 +refs 3 +61 0.554082 0.899047 +76 0.480561 0.872 +77 0.480561 0.89777 +SURF 0x30 +mat 0 +refs 3 +75 0.480561 0.833433 +60 0.554082 0.872979 +59 0.554082 0.83396 +SURF 0x30 +mat 0 +refs 3 +60 0.554082 0.872979 +75 0.480561 0.833433 +76 0.480561 0.872 +SURF 0x30 +mat 0 +refs 3 +74 0.39719 0.648091 +59 0.470711 0.694111 +58 0.470711 0.648091 +SURF 0x30 +mat 0 +refs 3 +59 0.470711 0.694111 +74 0.39719 0.648091 +75 0.39719 0.693584 +SURF 0x30 +mat 0 +refs 3 +73 0.39719 0.602592 +58 0.470711 0.648091 +57 0.470711 0.602065 +SURF 0x30 +mat 0 +refs 3 +58 0.470711 0.648091 +73 0.39719 0.602592 +74 0.39719 0.648091 +SURF 0x30 +mat 0 +refs 3 +72 0.480561 0.703874 +57 0.554082 0.741914 +56 0.554082 0.702894 +SURF 0x30 +mat 0 +refs 3 +57 0.554082 0.741914 +72 0.480561 0.703874 +73 0.480561 0.742441 +SURF 0x30 +mat 0 +refs 3 +71 0.480561 0.678104 +56 0.554082 0.702894 +55 0.554082 0.676827 +SURF 0x30 +mat 0 +refs 3 +56 0.554082 0.702894 +71 0.480561 0.678104 +72 0.480561 0.703874 +SURF 0x30 +mat 0 +refs 3 +70 0.480561 0.648016 +55 0.554082 0.676827 +54 0.554082 0.646638 +SURF 0x30 +mat 0 +refs 3 +55 0.554082 0.676827 +70 0.480561 0.648016 +71 0.480561 0.678104 +SURF 0x30 +mat 0 +refs 3 +69 0.480561 0.678104 +54 0.554082 0.646638 +53 0.554082 0.676827 +SURF 0x30 +mat 0 +refs 3 +54 0.554082 0.646638 +69 0.480561 0.678104 +70 0.480561 0.648016 +SURF 0x30 +mat 0 +refs 3 +67 0.480561 0.78794 +52 0.554082 0.741914 +51 0.554082 0.78794 +SURF 0x30 +mat 0 +refs 3 +52 0.554082 0.741914 +67 0.480561 0.78794 +68 0.480561 0.742441 +SURF 0x30 +mat 0 +refs 3 +66 0.480561 0.833433 +51 0.554082 0.78794 +50 0.554082 0.83396 +SURF 0x30 +mat 0 +refs 3 +51 0.554082 0.78794 +66 0.480561 0.833433 +67 0.480561 0.78794 +SURF 0x30 +mat 0 +refs 3 +64 0.480561 0.872 +50 0.554082 0.83396 +49 0.554082 0.872979 +SURF 0x30 +mat 0 +refs 3 +50 0.554082 0.83396 +64 0.480561 0.872 +66 0.480561 0.833433 +SURF 0x30 +mat 0 +refs 3 +63 0.480561 0.89777 +49 0.554082 0.872979 +48 0.554082 0.899047 +SURF 0x30 +mat 0 +refs 3 +49 0.554082 0.872979 +63 0.480561 0.89777 +64 0.480561 0.872 +SURF 0x30 +mat 0 +refs 3 +78 0.480561 0.906817 +48 0.554082 0.899047 +62 0.554082 0.908202 +SURF 0x30 +mat 0 +refs 3 +48 0.554082 0.899047 +78 0.480561 0.906817 +63 0.480561 0.89777 +SURF 0x30 +mat 0 +refs 3 +61 0.554082 0.899047 +47 0.630663 0.908837 +46 0.630663 0.899628 +SURF 0x30 +mat 0 +refs 3 +47 0.630663 0.908837 +61 0.554082 0.899047 +62 0.554082 0.908202 +SURF 0x30 +mat 0 +refs 3 +60 0.554082 0.872979 +46 0.630663 0.899628 +45 0.630663 0.873425 +SURF 0x30 +mat 0 +refs 3 +46 0.630663 0.899628 +60 0.554082 0.872979 +61 0.554082 0.899047 +SURF 0x30 +mat 0 +refs 3 +59 0.554082 0.83396 +45 0.630663 0.873425 +44 0.630663 0.834203 +SURF 0x30 +mat 0 +refs 3 +45 0.630663 0.873425 +59 0.554082 0.83396 +60 0.554082 0.872979 +SURF 0x30 +mat 0 +refs 3 +58 0.470711 0.648091 +44 0.547291 0.694354 +43 0.547291 0.648091 +SURF 0x30 +mat 0 +refs 3 +44 0.547291 0.694354 +58 0.470711 0.648091 +59 0.470711 0.694111 +SURF 0x30 +mat 0 +refs 3 +57 0.470711 0.602065 +43 0.547291 0.648091 +42 0.547291 0.601822 +SURF 0x30 +mat 0 +refs 3 +43 0.547291 0.648091 +57 0.470711 0.602065 +58 0.470711 0.648091 +SURF 0x30 +mat 0 +refs 3 +56 0.554082 0.702894 +42 0.630663 0.74167 +41 0.630663 0.702448 +SURF 0x30 +mat 0 +refs 3 +42 0.630663 0.74167 +56 0.554082 0.702894 +57 0.554082 0.741914 +SURF 0x30 +mat 0 +refs 3 +55 0.554082 0.676827 +41 0.630663 0.702448 +40 0.630663 0.676246 +SURF 0x30 +mat 0 +refs 3 +41 0.630663 0.702448 +55 0.554082 0.676827 +56 0.554082 0.702894 +SURF 0x30 +mat 0 +refs 3 +54 0.554082 0.646638 +40 0.630663 0.676246 +39 0.630663 0.646003 +SURF 0x30 +mat 0 +refs 3 +40 0.630663 0.676246 +54 0.554082 0.646638 +55 0.554082 0.676827 +SURF 0x30 +mat 0 +refs 3 +53 0.554082 0.676827 +39 0.630663 0.646003 +38 0.630663 0.676246 +SURF 0x30 +mat 0 +refs 3 +39 0.630663 0.646003 +53 0.554082 0.676827 +54 0.554082 0.646638 +SURF 0x30 +mat 0 +refs 3 +51 0.554082 0.78794 +37 0.630663 0.74167 +36 0.630663 0.78794 +SURF 0x30 +mat 0 +refs 3 +37 0.630663 0.74167 +51 0.554082 0.78794 +52 0.554082 0.741914 +SURF 0x30 +mat 0 +refs 3 +50 0.554082 0.83396 +36 0.630663 0.78794 +35 0.630663 0.834203 +SURF 0x30 +mat 0 +refs 3 +36 0.630663 0.78794 +50 0.554082 0.83396 +51 0.554082 0.78794 +SURF 0x30 +mat 0 +refs 3 +49 0.554082 0.872979 +35 0.630663 0.834203 +34 0.630663 0.873425 +SURF 0x30 +mat 0 +refs 3 +35 0.630663 0.834203 +49 0.554082 0.872979 +50 0.554082 0.83396 +SURF 0x30 +mat 0 +refs 3 +48 0.554082 0.899047 +34 0.630663 0.873425 +33 0.630663 0.899628 +SURF 0x30 +mat 0 +refs 3 +34 0.630663 0.873425 +48 0.554082 0.899047 +49 0.554082 0.872979 +SURF 0x30 +mat 0 +refs 3 +62 0.554082 0.908202 +33 0.630663 0.899628 +47 0.630663 0.908837 +SURF 0x30 +mat 0 +refs 3 +33 0.630663 0.899628 +62 0.554082 0.908202 +48 0.554082 0.899047 +SURF 0x30 +mat 0 +refs 3 +46 0.630663 0.899628 +32 0.709552 0.910614 +31 0.709552 0.901276 +SURF 0x30 +mat 0 +refs 3 +32 0.709552 0.910614 +46 0.630663 0.899628 +47 0.630663 0.908837 +SURF 0x30 +mat 0 +refs 3 +45 0.630663 0.873425 +31 0.709552 0.901276 +30 0.709552 0.874682 +SURF 0x30 +mat 0 +refs 3 +31 0.709552 0.901276 +45 0.630663 0.873425 +46 0.630663 0.899628 +SURF 0x30 +mat 0 +refs 3 +44 0.630663 0.834203 +30 0.709552 0.874682 +29 0.709552 0.834885 +SURF 0x30 +mat 0 +refs 3 +30 0.709552 0.874682 +44 0.630663 0.834203 +45 0.630663 0.873425 +SURF 0x30 +mat 0 +refs 3 +43 0.630663 0.78794 +29 0.709552 0.834885 +28 0.709552 0.78794 +SURF 0x30 +mat 0 +refs 3 +29 0.709552 0.834885 +43 0.630663 0.78794 +44 0.630663 0.834203 +SURF 0x30 +mat 0 +refs 3 +42 0.630663 0.74167 +28 0.709552 0.78794 +27 0.709552 0.740988 +SURF 0x30 +mat 0 +refs 3 +28 0.709552 0.78794 +42 0.630663 0.74167 +43 0.630663 0.78794 +SURF 0x30 +mat 0 +refs 3 +41 0.630663 0.702448 +27 0.709552 0.740988 +26 0.709552 0.701191 +SURF 0x30 +mat 0 +refs 3 +27 0.709552 0.740988 +41 0.630663 0.702448 +42 0.630663 0.74167 +SURF 0x30 +mat 0 +refs 3 +40 0.630663 0.676246 +26 0.709552 0.701191 +25 0.709552 0.674597 +SURF 0x30 +mat 0 +refs 3 +26 0.709552 0.701191 +40 0.630663 0.676246 +41 0.630663 0.702448 +SURF 0x30 +mat 0 +refs 3 +39 0.630663 0.646003 +25 0.709552 0.674597 +24 0.709552 0.644219 +SURF 0x30 +mat 0 +refs 3 +25 0.709552 0.674597 +39 0.630663 0.646003 +40 0.630663 0.676246 +SURF 0x30 +mat 0 +refs 3 +38 0.630663 0.676246 +24 0.709552 0.644219 +23 0.709552 0.674597 +SURF 0x30 +mat 0 +refs 3 +24 0.709552 0.644219 +38 0.630663 0.676246 +39 0.630663 0.646003 +SURF 0x30 +mat 0 +refs 3 +21 0.630663 0.702448 +23 0.709552 0.674597 +22 0.709552 0.701191 +SURF 0x30 +mat 0 +refs 3 +23 0.709552 0.674597 +21 0.630663 0.702448 +38 0.630663 0.676246 +SURF 0x30 +mat 0 +refs 3 +37 0.630663 0.74167 +22 0.709552 0.701191 +20 0.709552 0.740988 +SURF 0x30 +mat 0 +refs 3 +22 0.709552 0.701191 +37 0.630663 0.74167 +21 0.630663 0.702448 +SURF 0x30 +mat 0 +refs 3 +36 0.630663 0.78794 +20 0.709552 0.740988 +19 0.709552 0.78794 +SURF 0x30 +mat 0 +refs 3 +20 0.709552 0.740988 +36 0.630663 0.78794 +37 0.630663 0.74167 +SURF 0x30 +mat 0 +refs 3 +35 0.630663 0.834203 +19 0.709552 0.78794 +18 0.709552 0.834885 +SURF 0x30 +mat 0 +refs 3 +19 0.709552 0.78794 +35 0.630663 0.834203 +36 0.630663 0.78794 +SURF 0x30 +mat 0 +refs 3 +34 0.630663 0.873425 +18 0.709552 0.834885 +17 0.709552 0.874682 +SURF 0x30 +mat 0 +refs 3 +18 0.709552 0.834885 +34 0.630663 0.873425 +35 0.630663 0.834203 +SURF 0x30 +mat 0 +refs 3 +33 0.630663 0.899628 +17 0.709552 0.874682 +16 0.709552 0.901276 +SURF 0x30 +mat 0 +refs 3 +17 0.709552 0.874682 +33 0.630663 0.899628 +34 0.630663 0.873425 +SURF 0x30 +mat 0 +refs 3 +47 0.630663 0.908837 +16 0.709552 0.901276 +32 0.709552 0.910614 +SURF 0x30 +mat 0 +refs 3 +16 0.709552 0.901276 +47 0.630663 0.908837 +33 0.630663 0.899628 +SURF 0x30 +mat 0 +refs 3 +31 0.709552 0.901276 +15 0.790004 0.911182 +14 0.790004 0.901803 +SURF 0x30 +mat 0 +refs 3 +15 0.790004 0.911182 +31 0.709552 0.901276 +32 0.709552 0.910614 +SURF 0x30 +mat 0 +refs 3 +30 0.709552 0.874682 +14 0.790004 0.901803 +13 0.790004 0.875087 +SURF 0x30 +mat 0 +refs 3 +14 0.790004 0.901803 +30 0.709552 0.874682 +31 0.709552 0.901276 +SURF 0x30 +mat 0 +refs 3 +29 0.709552 0.834885 +13 0.790004 0.875087 +12 0.790004 0.835101 +SURF 0x30 +mat 0 +refs 3 +13 0.790004 0.875087 +29 0.709552 0.834885 +30 0.709552 0.874682 +SURF 0x30 +mat 0 +refs 3 +28 0.709552 0.78794 +12 0.790004 0.835101 +11 0.790004 0.78794 +SURF 0x30 +mat 0 +refs 3 +12 0.790004 0.835101 +28 0.709552 0.78794 +29 0.709552 0.834885 +SURF 0x30 +mat 0 +refs 3 +27 0.709552 0.740988 +11 0.790004 0.78794 +10 0.790004 0.740772 +SURF 0x30 +mat 0 +refs 3 +11 0.790004 0.78794 +27 0.709552 0.740988 +28 0.709552 0.78794 +SURF 0x30 +mat 0 +refs 3 +26 0.709552 0.701191 +10 0.790004 0.740772 +9 0.790004 0.700793 +SURF 0x30 +mat 0 +refs 3 +10 0.790004 0.740772 +26 0.709552 0.701191 +27 0.709552 0.740988 +SURF 0x30 +mat 0 +refs 3 +25 0.709552 0.674597 +9 0.790004 0.700793 +8 0.790004 0.674077 +SURF 0x30 +mat 0 +refs 3 +9 0.790004 0.700793 +25 0.709552 0.674597 +26 0.709552 0.701191 +SURF 0x30 +mat 0 +refs 3 +24 0.709552 0.644219 +8 0.790004 0.674077 +7 0.790004 0.643658 +SURF 0x30 +mat 0 +refs 3 +8 0.790004 0.674077 +24 0.709552 0.644219 +25 0.709552 0.674597 +SURF 0x30 +mat 0 +refs 3 +23 0.709552 0.674597 +7 0.790004 0.643658 +6 0.790004 0.674077 +SURF 0x30 +mat 0 +refs 3 +7 0.790004 0.643658 +23 0.709552 0.674597 +24 0.709552 0.644219 +SURF 0x30 +mat 0 +refs 3 +22 0.709552 0.701191 +6 0.790004 0.674077 +5 0.790004 0.700793 +SURF 0x30 +mat 0 +refs 3 +6 0.790004 0.674077 +22 0.709552 0.701191 +23 0.709552 0.674597 +SURF 0x30 +mat 0 +refs 3 +20 0.709552 0.740988 +5 0.790004 0.700793 +4 0.790004 0.740772 +SURF 0x30 +mat 0 +refs 3 +5 0.790004 0.700793 +20 0.709552 0.740988 +22 0.709552 0.701191 +SURF 0x30 +mat 0 +refs 3 +19 0.709552 0.78794 +4 0.790004 0.740772 +3 0.790004 0.78794 +SURF 0x30 +mat 0 +refs 3 +4 0.790004 0.740772 +19 0.709552 0.78794 +20 0.709552 0.740988 +SURF 0x30 +mat 0 +refs 3 +18 0.709552 0.834885 +3 0.790004 0.78794 +2 0.790004 0.835101 +SURF 0x30 +mat 0 +refs 3 +3 0.790004 0.78794 +18 0.709552 0.834885 +19 0.709552 0.78794 +SURF 0x30 +mat 0 +refs 3 +17 0.709552 0.874682 +2 0.790004 0.835101 +1 0.790004 0.875087 +SURF 0x30 +mat 0 +refs 3 +2 0.790004 0.835101 +17 0.709552 0.874682 +18 0.709552 0.834885 +SURF 0x30 +mat 0 +refs 3 +16 0.709552 0.901276 +1 0.790004 0.875087 +0 0.790004 0.901803 +SURF 0x30 +mat 0 +refs 3 +1 0.790004 0.875087 +16 0.709552 0.901276 +17 0.709552 0.874682 +SURF 0x30 +mat 0 +refs 3 +32 0.709552 0.910614 +0 0.790004 0.901803 +15 0.790004 0.911182 +SURF 0x30 +mat 0 +refs 3 +0 0.790004 0.901803 +32 0.709552 0.910614 +16 0.709552 0.901276 +SURF 0x30 +mat 0 +refs 3 +221 0.0610094 0.698833 +220 0.0610094 0.696935 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +220 0.0610094 0.696935 +218 0.0610094 0.691536 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +218 0.0610094 0.691536 +217 0.0610094 0.683462 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +217 0.0610094 0.683462 +216 0.0610094 0.673935 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +216 0.0610094 0.673935 +215 0.0610094 0.664408 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +215 0.0610094 0.664408 +214 0.0610094 0.656334 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +214 0.0610094 0.656334 +213 0.0610094 0.650942 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +213 0.0610094 0.650942 +212 0.0610094 0.629665 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +212 0.0610094 0.629665 +211 0.0610094 0.650942 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +211 0.0610094 0.650942 +210 0.0610094 0.656334 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +210 0.0610094 0.656334 +209 0.0610094 0.664408 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +209 0.0610094 0.664408 +208 0.0610094 0.673935 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +208 0.0610094 0.673935 +207 0.0610094 0.683462 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +207 0.0610094 0.683462 +206 0.0610094 0.691536 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +206 0.0610094 0.691536 +205 0.0610094 0.696935 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +205 0.0610094 0.696935 +221 0.0610094 0.698833 +219 0.0570167 0.657036 +SURF 0x30 +mat 0 +refs 3 +109 0.285214 0.858669 +222 0.345479 0.82798 +94 0.345479 0.864594 +SURF 0x30 +mat 0 +refs 3 +222 0.345479 0.82798 +109 0.285214 0.858669 +223 0.285214 0.823811 +SURF 0x30 +mat 0 +refs 3 +222 0.345479 0.82798 +81 0.410802 0.786893 +65 0.410802 0.831081 +SURF 0x30 +mat 0 +refs 3 +81 0.410802 0.786893 +222 0.345479 0.82798 +96 0.345479 0.784791 +SURF 0x30 +mat 0 +refs 3 +94 0.345479 0.864594 +65 0.410802 0.831081 +80 0.410802 0.868554 +SURF 0x30 +mat 0 +refs 3 +65 0.410802 0.831081 +94 0.345479 0.864594 +222 0.345479 0.82798 +SURF 0x30 +mat 0 +refs 3 +223 0.285214 0.823811 +96 0.345479 0.784791 +222 0.345479 0.82798 +SURF 0x30 +mat 0 +refs 3 +96 0.345479 0.784791 +223 0.285214 0.823811 +95 0.285214 0.782697 +SURF 0x30 +mat 0 +refs 3 +124 0.23371 0.845595 +223 0.285214 0.823811 +109 0.285214 0.858669 +SURF 0x30 +mat 0 +refs 3 +223 0.285214 0.823811 +124 0.23371 0.845595 +224 0.23371 0.813372 +SURF 0x30 +mat 0 +refs 3 +224 0.23371 0.813372 +95 0.285214 0.782697 +223 0.285214 0.823811 +SURF 0x30 +mat 0 +refs 3 +95 0.285214 0.782697 +224 0.23371 0.813372 +225 0.23371 0.775366 +SURF 0x30 +mat 0 +refs 3 +225 0.23371 0.775366 +111 0.285214 0.741583 +95 0.285214 0.782697 +SURF 0x30 +mat 0 +refs 3 +111 0.285214 0.741583 +225 0.23371 0.775366 +110 0.23371 0.737353 +SURF 0x30 +mat 0 +refs 3 +139 0.192535 0.831189 +224 0.23371 0.813372 +124 0.23371 0.845595 +SURF 0x30 +mat 0 +refs 3 +224 0.23371 0.813372 +139 0.192535 0.831189 +226 0.192535 0.801967 +SURF 0x30 +mat 0 +refs 3 +226 0.192535 0.801967 +225 0.23371 0.775366 +224 0.23371 0.813372 +SURF 0x30 +mat 0 +refs 3 +225 0.23371 0.775366 +226 0.192535 0.801967 +227 0.192535 0.767501 +SURF 0x30 +mat 0 +refs 3 +227 0.192535 0.767501 +110 0.23371 0.737353 +225 0.23371 0.775366 +SURF 0x30 +mat 0 +refs 3 +110 0.23371 0.737353 +227 0.192535 0.767501 +228 0.192535 0.733035 +SURF 0x30 +mat 0 +refs 3 +228 0.192535 0.733035 +126 0.23371 0.70513 +110 0.23371 0.737353 +SURF 0x30 +mat 0 +refs 3 +126 0.23371 0.70513 +228 0.192535 0.733035 +125 0.192535 0.701813 +SURF 0x30 +mat 0 +refs 3 +150 0.152452 0.810474 +226 0.192535 0.801967 +139 0.192535 0.831189 +SURF 0x30 +mat 0 +refs 3 +226 0.192535 0.801967 +150 0.152452 0.810474 +229 0.152452 0.784413 +SURF 0x30 +mat 0 +refs 3 +229 0.152452 0.784413 +227 0.192535 0.767501 +226 0.192535 0.801967 +SURF 0x30 +mat 0 +refs 3 +227 0.192535 0.767501 +229 0.152452 0.784413 +230 0.152452 0.75367 +SURF 0x30 +mat 0 +refs 3 +230 0.152452 0.75367 +228 0.192535 0.733035 +227 0.192535 0.767501 +SURF 0x30 +mat 0 +refs 3 +228 0.192535 0.733035 +230 0.152452 0.75367 +231 0.152452 0.722928 +SURF 0x30 +mat 0 +refs 3 +231 0.152452 0.722928 +125 0.192535 0.701813 +228 0.192535 0.733035 +SURF 0x30 +mat 0 +refs 3 +125 0.192535 0.701813 +231 0.152452 0.722928 +232 0.152452 0.696867 +SURF 0x30 +mat 0 +refs 3 +232 0.152452 0.696867 +127 0.192535 0.682286 +125 0.192535 0.701813 +SURF 0x30 +mat 0 +refs 3 +127 0.192535 0.682286 +232 0.152452 0.696867 +233 0.152452 0.679455 +SURF 0x30 +mat 0 +refs 3 +233 0.152452 0.679455 +140 0.192535 0.654395 +127 0.192535 0.682286 +SURF 0x30 +mat 0 +refs 3 +140 0.192535 0.654395 +233 0.152452 0.679455 +151 0.152452 0.6523 +SURF 0x30 +mat 0 +refs 3 +161 0.117681 0.784947 +229 0.152452 0.784413 +150 0.152452 0.810474 +SURF 0x30 +mat 0 +refs 3 +229 0.152452 0.784413 +161 0.117681 0.784947 +162 0.117681 0.763042 +SURF 0x30 +mat 0 +refs 3 +162 0.117681 0.763042 +230 0.152452 0.75367 +229 0.152452 0.784413 +SURF 0x30 +mat 0 +refs 3 +230 0.152452 0.75367 +162 0.117681 0.763042 +234 0.117681 0.737198 +SURF 0x30 +mat 0 +refs 3 +234 0.117681 0.737198 +231 0.152452 0.722928 +230 0.152452 0.75367 +SURF 0x30 +mat 0 +refs 3 +231 0.152452 0.722928 +234 0.117681 0.737198 +235 0.117681 0.711353 +SURF 0x30 +mat 0 +refs 3 +235 0.117681 0.711353 +232 0.152452 0.696867 +231 0.152452 0.722928 +SURF 0x30 +mat 0 +refs 3 +232 0.152452 0.696867 +235 0.117681 0.711353 +236 0.117681 0.689448 +SURF 0x30 +mat 0 +refs 3 +236 0.117681 0.689448 +233 0.152452 0.679455 +232 0.152452 0.696867 +SURF 0x30 +mat 0 +refs 3 +233 0.152452 0.679455 +236 0.117681 0.689448 +237 0.117681 0.674807 +SURF 0x30 +mat 0 +refs 3 +237 0.117681 0.674807 +151 0.152452 0.6523 +233 0.152452 0.679455 +SURF 0x30 +mat 0 +refs 3 +151 0.152452 0.6523 +237 0.117681 0.674807 +164 0.117681 0.648631 +SURF 0x30 +mat 0 +refs 3 +179 0.0902785 0.661503 +164 0.117681 0.648631 +237 0.117681 0.674807 +SURF 0x30 +mat 0 +refs 3 +164 0.117681 0.648631 +179 0.0902785 0.661503 +180 0.0902785 0.636003 +SURF 0x30 +mat 0 +refs 3 +178 0.0902785 0.674205 +237 0.117681 0.674807 +236 0.117681 0.689448 +SURF 0x30 +mat 0 +refs 3 +237 0.117681 0.674807 +178 0.0902785 0.674205 +179 0.0902785 0.661503 +SURF 0x30 +mat 0 +refs 3 +177 0.0902785 0.693218 +236 0.117681 0.689448 +235 0.117681 0.711353 +SURF 0x30 +mat 0 +refs 3 +236 0.117681 0.689448 +177 0.0902785 0.693218 +178 0.0902785 0.674205 +SURF 0x30 +mat 0 +refs 3 +176 0.0902785 0.715651 +235 0.117681 0.711353 +234 0.117681 0.737198 +SURF 0x30 +mat 0 +refs 3 +235 0.117681 0.711353 +176 0.0902785 0.715651 +177 0.0902785 0.693218 +SURF 0x30 +mat 0 +refs 3 +240 0.480561 0.703874 +53 0.554082 0.676827 +241 0.554082 0.702894 +SURF 0x30 +mat 0 +refs 3 +53 0.554082 0.676827 +240 0.480561 0.703874 +69 0.480561 0.678104 +SURF 0x30 +mat 0 +refs 3 +68 0.480561 0.742441 +241 0.554082 0.702894 +52 0.554082 0.741914 +SURF 0x30 +mat 0 +refs 3 +241 0.554082 0.702894 +68 0.480561 0.742441 +240 0.480561 0.703874 +SURF 0x30 +mat 0 +refs 3 +241 0.554082 0.702894 +38 0.630663 0.676246 +21 0.630663 0.702448 +SURF 0x30 +mat 0 +refs 3 +38 0.630663 0.676246 +241 0.554082 0.702894 +53 0.554082 0.676827 +SURF 0x30 +mat 0 +refs 3 +52 0.554082 0.741914 +21 0.630663 0.702448 +37 0.630663 0.74167 +SURF 0x30 +mat 0 +refs 3 +21 0.630663 0.702448 +52 0.554082 0.741914 +241 0.554082 0.702894 +SURF 0x30 +mat 0 +refs 3 +112 0.285214 0.706725 +98 0.345479 0.681529 +238 0.345479 0.705989 +SURF 0x30 +mat 0 +refs 3 +98 0.345479 0.681529 +112 0.285214 0.706725 +113 0.285214 0.683435 +SURF 0x30 +mat 0 +refs 3 +111 0.285214 0.741583 +238 0.345479 0.705989 +97 0.345479 0.742603 +SURF 0x30 +mat 0 +refs 3 +238 0.345479 0.705989 +111 0.285214 0.741583 +112 0.285214 0.706725 +SURF 0x30 +mat 0 +refs 3 +238 0.345479 0.705989 +83 0.410802 0.680192 +239 0.410802 0.705225 +SURF 0x30 +mat 0 +refs 3 +83 0.410802 0.680192 +238 0.345479 0.705989 +98 0.345479 0.681529 +SURF 0x30 +mat 0 +refs 3 +97 0.345479 0.742603 +239 0.410802 0.705225 +82 0.410802 0.742691 +SURF 0x30 +mat 0 +refs 3 +239 0.410802 0.705225 +97 0.345479 0.742603 +238 0.345479 0.705989 +SURF 0x30 +mat 0 +refs 3 +239 0.410802 0.705225 +69 0.480561 0.678104 +240 0.480561 0.703874 +SURF 0x30 +mat 0 +refs 3 +69 0.480561 0.678104 +239 0.410802 0.705225 +83 0.410802 0.680192 +SURF 0x30 +mat 0 +refs 3 +82 0.410802 0.742691 +240 0.480561 0.703874 +68 0.480561 0.742441 +SURF 0x30 +mat 0 +refs 3 +240 0.480561 0.703874 +82 0.410802 0.742691 +239 0.410802 0.705225 +kids 0 +OBJECT poly +name "Center" +loc -0.0292663 0.090387 0 +texture "wing.jpg" +crease 45.000000 +numvert 64 +-0.122318 0.00763059 0.008838 +-0.0960355 0.0140938 0.008838 +-0.0567019 0.0184135 0.008838 +-0.010303 0.0199349 0.008838 +0.0361027 0.0184135 0.008838 +0.0754367 0.0140938 0.008838 +0.101719 0.00763059 0.008838 +0.131547 3.45707e-006 0.008838 +0.101719 -0.00763059 0.008838 +0.0754367 -0.0140938 0.008838 +0.0361027 -0.0184134 0.008838 +-0.010303 -0.0199349 0.008838 +-0.0567019 -0.0184134 0.008838 +-0.0960355 -0.0140938 0.008838 +-0.122318 -0.00763059 0.008838 +-0.131546 3.45707e-006 0.008838 +-0.121782 0.00759101 0.097535 +-0.0956255 0.0140276 0.097535 +-0.056477 0.0183276 0.097535 +-0.010303 0.0198357 0.097535 +0.0358778 0.0183276 0.097535 +0.0750199 0.0140276 0.097535 +0.101176 0.00759101 0.097535 +0.130959 3.45707e-006 0.097535 +0.101176 -0.00759101 0.097535 +0.0750199 -0.0140275 0.097535 +0.0358778 -0.0183274 0.097535 +-0.010303 -0.0198356 0.097535 +-0.056477 -0.0183274 0.097535 +-0.0956255 -0.0140275 0.097535 +-0.121782 -0.00759101 0.097535 +-0.130964 3.45707e-006 0.097535 +-0.122318 -0.00763059 -0.008838 +-0.131546 3.45707e-006 -0.008838 +-0.0960355 -0.0140938 -0.008838 +-0.0567019 -0.0184134 -0.008838 +-0.010303 -0.0199349 -0.008838 +0.0361027 -0.0184134 -0.008838 +0.0754367 -0.0140938 -0.008838 +0.101719 -0.00763059 -0.008838 +0.131547 3.45707e-006 -0.008838 +0.101719 0.00763059 -0.008838 +0.0754367 0.0140938 -0.008838 +0.0358778 0.0183276 -0.097535 +0.0361027 0.0184135 -0.008838 +-0.010303 0.0198357 -0.097535 +-0.010303 0.0199349 -0.008838 +-0.0567019 0.0184135 -0.008838 +-0.0960355 0.0140938 -0.008838 +-0.122318 0.00763059 -0.008838 +-0.121782 0.00759101 -0.097535 +-0.056477 0.0183276 -0.097535 +-0.0956255 0.0140276 -0.097535 +0.0750199 0.0140276 -0.097535 +0.101176 0.00759101 -0.097535 +0.130959 3.45707e-006 -0.097535 +0.101176 -0.00759101 -0.097535 +0.0750199 -0.0140275 -0.097535 +0.0358778 -0.0183274 -0.097535 +-0.010303 -0.0198356 -0.097535 +-0.056477 -0.0183274 -0.097535 +-0.0956255 -0.0140275 -0.097535 +-0.130964 3.45707e-006 -0.097535 +-0.121782 -0.00759101 -0.097535 +numsurf 64 +SURF 0x30 +mat 0 +refs 3 +30 0.790004 0.901803 +15 0.871238 0.911776 +14 0.871238 0.90235 +SURF 0x30 +mat 0 +refs 3 +15 0.871238 0.911776 +30 0.790004 0.901803 +31 0.790004 0.911182 +SURF 0x30 +mat 0 +refs 3 +29 0.790004 0.875087 +14 0.871238 0.90235 +13 0.871238 0.875506 +SURF 0x30 +mat 0 +refs 3 +14 0.871238 0.90235 +29 0.790004 0.875087 +30 0.790004 0.901803 +SURF 0x30 +mat 0 +refs 3 +28 0.790004 0.835101 +13 0.871238 0.875506 +12 0.871238 0.835331 +SURF 0x30 +mat 0 +refs 3 +13 0.871238 0.875506 +28 0.790004 0.835101 +29 0.790004 0.875087 +SURF 0x30 +mat 0 +refs 3 +27 0.790004 0.78794 +12 0.871238 0.835331 +11 0.871238 0.78794 +SURF 0x30 +mat 0 +refs 3 +12 0.871238 0.835331 +27 0.790004 0.78794 +28 0.790004 0.835101 +SURF 0x30 +mat 0 +refs 3 +26 0.790004 0.740772 +11 0.871238 0.78794 +10 0.871238 0.740542 +SURF 0x30 +mat 0 +refs 3 +11 0.871238 0.78794 +26 0.790004 0.740772 +27 0.790004 0.78794 +SURF 0x30 +mat 0 +refs 3 +25 0.790004 0.700793 +10 0.871238 0.740542 +9 0.871238 0.700367 +SURF 0x30 +mat 0 +refs 3 +10 0.871238 0.740542 +25 0.790004 0.700793 +26 0.790004 0.740772 +SURF 0x30 +mat 0 +refs 3 +24 0.790004 0.674077 +9 0.871238 0.700367 +8 0.871238 0.673523 +SURF 0x30 +mat 0 +refs 3 +9 0.871238 0.700367 +24 0.790004 0.674077 +25 0.790004 0.700793 +SURF 0x30 +mat 0 +refs 3 +23 0.790004 0.643658 +8 0.871238 0.673523 +7 0.871238 0.643057 +SURF 0x30 +mat 0 +refs 3 +8 0.871238 0.673523 +23 0.790004 0.643658 +24 0.790004 0.674077 +SURF 0x30 +mat 0 +refs 3 +22 0.790004 0.674077 +7 0.871238 0.643057 +6 0.871238 0.673523 +SURF 0x30 +mat 0 +refs 3 +7 0.871238 0.643057 +22 0.790004 0.674077 +23 0.790004 0.643658 +SURF 0x30 +mat 0 +refs 3 +21 0.790004 0.700793 +6 0.871238 0.673523 +5 0.871238 0.700367 +SURF 0x30 +mat 0 +refs 3 +6 0.871238 0.673523 +21 0.790004 0.700793 +22 0.790004 0.674077 +SURF 0x30 +mat 0 +refs 3 +20 0.790004 0.740772 +5 0.871238 0.700367 +4 0.871238 0.740542 +SURF 0x30 +mat 0 +refs 3 +5 0.871238 0.700367 +20 0.790004 0.740772 +21 0.790004 0.700793 +SURF 0x30 +mat 0 +refs 3 +19 0.790004 0.78794 +4 0.871238 0.740542 +3 0.871238 0.78794 +SURF 0x30 +mat 0 +refs 3 +4 0.871238 0.740542 +19 0.790004 0.78794 +20 0.790004 0.740772 +SURF 0x30 +mat 0 +refs 3 +18 0.790004 0.835101 +3 0.871238 0.78794 +2 0.871238 0.835331 +SURF 0x30 +mat 0 +refs 3 +3 0.871238 0.78794 +18 0.790004 0.835101 +19 0.790004 0.78794 +SURF 0x30 +mat 0 +refs 3 +17 0.790004 0.875087 +2 0.871238 0.835331 +1 0.871238 0.875506 +SURF 0x30 +mat 0 +refs 3 +2 0.871238 0.835331 +17 0.790004 0.875087 +18 0.790004 0.835101 +SURF 0x30 +mat 0 +refs 3 +16 0.790004 0.901803 +1 0.871238 0.875506 +0 0.871238 0.90235 +SURF 0x30 +mat 0 +refs 3 +1 0.871238 0.875506 +16 0.790004 0.901803 +17 0.790004 0.875087 +SURF 0x30 +mat 0 +refs 3 +31 0.790004 0.911182 +0 0.871238 0.90235 +15 0.871238 0.911776 +SURF 0x30 +mat 0 +refs 3 +0 0.871238 0.90235 +31 0.790004 0.911182 +16 0.790004 0.901803 +SURF 0x30 +mat 0 +refs 3 +33 0.0468687 0.670237 +50 0.138406 0.658672 +62 0.138406 0.669547 +SURF 0x30 +mat 0 +refs 3 +50 0.138406 0.658672 +33 0.0468687 0.670237 +49 0.0468687 0.659307 +SURF 0x30 +mat 0 +refs 3 +49 0.0468687 0.659307 +52 0.138406 0.627693 +50 0.138406 0.658672 +SURF 0x30 +mat 0 +refs 3 +52 0.138406 0.627693 +49 0.0468687 0.659307 +48 0.0468687 0.628179 +SURF 0x30 +mat 0 +refs 3 +48 0.0468687 0.628179 +51 0.138406 0.581327 +52 0.138406 0.627693 +SURF 0x30 +mat 0 +refs 3 +51 0.138406 0.581327 +48 0.0468687 0.628179 +47 0.0468687 0.581593 +SURF 0x30 +mat 0 +refs 3 +47 0.0468687 0.581593 +45 0.138406 0.52664 +51 0.138406 0.581327 +SURF 0x30 +mat 0 +refs 3 +45 0.138406 0.52664 +47 0.0468687 0.581593 +46 0.0468687 0.52664 +SURF 0x30 +mat 0 +refs 3 +46 0.0468687 0.52664 +43 0.138406 0.471945 +45 0.138406 0.52664 +SURF 0x30 +mat 0 +refs 3 +43 0.138406 0.471945 +46 0.0468687 0.52664 +44 0.0468687 0.471678 +SURF 0x30 +mat 0 +refs 3 +44 0.0468687 0.471678 +53 0.138406 0.425586 +43 0.138406 0.471945 +SURF 0x30 +mat 0 +refs 3 +53 0.138406 0.425586 +44 0.0468687 0.471678 +42 0.0468687 0.425092 +SURF 0x30 +mat 0 +refs 3 +42 0.0468687 0.425092 +54 0.138406 0.394607 +53 0.138406 0.425586 +SURF 0x30 +mat 0 +refs 3 +54 0.138406 0.394607 +42 0.0468687 0.425092 +41 0.0468687 0.393964 +SURF 0x30 +mat 0 +refs 3 +41 0.0468687 0.393964 +55 0.138406 0.359334 +54 0.138406 0.394607 +SURF 0x30 +mat 0 +refs 3 +55 0.138406 0.359334 +41 0.0468687 0.393964 +40 0.0468687 0.358637 +SURF 0x30 +mat 0 +refs 3 +40 0.0468687 0.358637 +56 0.138406 0.394607 +55 0.138406 0.359334 +SURF 0x30 +mat 0 +refs 3 +56 0.138406 0.394607 +40 0.0468687 0.358637 +39 0.0468687 0.393964 +SURF 0x30 +mat 0 +refs 3 +39 0.0468687 0.393964 +57 0.138406 0.425586 +56 0.138406 0.394607 +SURF 0x30 +mat 0 +refs 3 +57 0.138406 0.425586 +39 0.0468687 0.393964 +38 0.0468687 0.425092 +SURF 0x30 +mat 0 +refs 3 +38 0.0468687 0.425092 +58 0.138406 0.471945 +57 0.138406 0.425586 +SURF 0x30 +mat 0 +refs 3 +58 0.138406 0.471945 +38 0.0468687 0.425092 +37 0.0468687 0.471678 +SURF 0x30 +mat 0 +refs 3 +37 0.0468687 0.471678 +59 0.138406 0.52664 +58 0.138406 0.471945 +SURF 0x30 +mat 0 +refs 3 +59 0.138406 0.52664 +37 0.0468687 0.471678 +36 0.0468687 0.52664 +SURF 0x30 +mat 0 +refs 3 +36 0.0468687 0.52664 +60 0.138406 0.581327 +59 0.138406 0.52664 +SURF 0x30 +mat 0 +refs 3 +60 0.138406 0.581327 +36 0.0468687 0.52664 +35 0.0468687 0.581593 +SURF 0x30 +mat 0 +refs 3 +35 0.0468687 0.581593 +61 0.138406 0.627693 +60 0.138406 0.581327 +SURF 0x30 +mat 0 +refs 3 +61 0.138406 0.627693 +35 0.0468687 0.581593 +34 0.0468687 0.628179 +SURF 0x30 +mat 0 +refs 3 +34 0.0468687 0.628179 +63 0.138406 0.658672 +61 0.138406 0.627693 +SURF 0x30 +mat 0 +refs 3 +63 0.138406 0.658672 +34 0.0468687 0.628179 +32 0.0468687 0.659307 +SURF 0x30 +mat 0 +refs 3 +32 0.0468687 0.659307 +62 0.138406 0.669547 +63 0.138406 0.658672 +SURF 0x30 +mat 0 +refs 3 +62 0.138406 0.669547 +32 0.0468687 0.659307 +33 0.0468687 0.670237 +kids 0 +OBJECT poly +name "Fuse2" +loc -0.26096 0.0234177 0 +texture "EasyStarV1Weiss.jpg" +crease 45.000000 +numvert 55 +0.15604 0.0137 -0.0519293 +0.15604 -0.0289747 -0.0501102 +0.08923 -0.0290871 -0.0530208 +0.08923 0.0182513 -0.0538676 +0.0484501 0.0185556 -0.0549657 +0.0484501 -0.0295501 -0.055012 +0.00782007 -0.0503549 -0.0293186 +0.0484501 -0.0514398 -0.029689 +0.00782007 -0.0284586 -0.0549723 +0.00782007 0.0175037 -0.055786 +-0.0319399 0.0126019 -0.0554949 +-0.0319399 -0.0279691 -0.0543505 +-0.15604 0.0308003 -0.0181058 +-0.15604 0.0171863 -0.0385005 +-0.15604 -0.00142229 -0.045969 +-0.15604 -0.0207056 -0.0422248 +-0.11249 0.0422909 -0.0239404 +-0.0678499 0.0514398 -0.0274795 +-0.11249 0.0242711 -0.0451884 +-0.0678499 0.0317265 -0.0477948 +-0.11249 -0.000350595 -0.0521873 +-0.0678499 0.00479603 -0.0544497 +-0.11249 -0.0242183 -0.0489459 +-0.11249 -0.0422447 -0.0270628 +-0.0678499 -0.0449305 -0.0298213 +-0.0678499 -0.0271224 -0.0518896 +0.15604 0.0137 0.0519293 +0.15604 -0.0513803 0.0271289 +0.15604 -0.0289747 0.0501102 +0.08923 0.0182513 0.0538676 +0.0484501 0.0185556 0.0549657 +0.08923 -0.0290871 0.0530208 +0.08923 -0.0507585 0.0292789 +0.0484501 -0.0514398 0.029689 +0.0484501 -0.0295501 0.055012 +0.00782007 0.0175037 0.055786 +-0.0319399 0.0126019 0.0554949 +0.00782007 -0.0284586 0.0549723 +0.00782007 -0.0503549 0.0293186 +-0.0319399 -0.0478015 0.0299536 +-0.0319399 -0.0279691 0.0543505 +-0.15604 0.0171863 0.0385005 +-0.15604 -0.00142229 0.045969 +-0.15604 -0.0351069 0.0212282 +-0.15604 -0.0207056 0.0422248 +-0.0678499 0.0514398 0.0274795 +-0.11249 0.0422909 0.0239404 +-0.0678499 0.0317265 0.0477948 +-0.11249 0.0242711 0.0451884 +-0.0678499 0.00479603 0.0544497 +-0.11249 -0.000350595 0.0521873 +-0.0678499 -0.0271224 0.0518896 +-0.0678499 -0.0449305 0.0298213 +-0.11249 -0.0422447 0.0270628 +-0.11249 -0.0242183 0.0489459 +numsurf 60 +SURF 0x30 +mat 0 +refs 3 +19 0.706023 0.897321 +20 0.844342 0.768698 +18 0.844342 0.867418 +SURF 0x30 +mat 0 +refs 3 +20 0.844342 0.768698 +19 0.706023 0.897321 +21 0.706023 0.789334 +SURF 0x30 +mat 0 +refs 3 +21 0.706023 0.789334 +22 0.844342 0.67299 +20 0.844342 0.768698 +SURF 0x30 +mat 0 +refs 3 +22 0.844342 0.67299 +21 0.706023 0.789334 +25 0.706023 0.661354 +SURF 0x30 +mat 0 +refs 3 +24 0.706023 0.589934 +22 0.844342 0.67299 +25 0.706023 0.661354 +SURF 0x30 +mat 0 +refs 3 +22 0.844342 0.67299 +24 0.706023 0.589934 +23 0.844342 0.600719 +SURF 0x30 +mat 0 +refs 3 +7 0.345687 0.563836 +8 0.471579 0.655985 +5 0.345687 0.651619 +SURF 0x30 +mat 0 +refs 3 +8 0.471579 0.655985 +7 0.345687 0.563836 +6 0.471579 0.56819 +SURF 0x30 +mat 0 +refs 3 +4 0.345687 0.844518 +8 0.471579 0.655985 +9 0.471579 0.840304 +SURF 0x30 +mat 0 +refs 3 +8 0.471579 0.655985 +4 0.345687 0.844518 +5 0.345687 0.651619 +SURF 0x30 +mat 0 +refs 3 +3 0.219335 0.843281 +5 0.345687 0.651619 +4 0.345687 0.844518 +SURF 0x30 +mat 0 +refs 3 +5 0.345687 0.651619 +3 0.219335 0.843281 +2 0.219335 0.653475 +SURF 0x30 +mat 0 +refs 3 +0 0.0123514 0.825049 +2 0.219335 0.653475 +3 0.219335 0.843281 +SURF 0x30 +mat 0 +refs 3 +2 0.219335 0.653475 +0 0.0123514 0.825049 +1 0.0123514 0.653919 +SURF 0x30 +mat 0 +refs 3 +20 0.844342 0.768698 +15 0.979262 0.687066 +14 0.979262 0.764415 +SURF 0x30 +mat 0 +refs 3 +15 0.979262 0.687066 +20 0.844342 0.768698 +22 0.844342 0.67299 +SURF 0x30 +mat 0 +refs 3 +18 0.844342 0.867418 +14 0.979262 0.764415 +13 0.979262 0.839009 +SURF 0x30 +mat 0 +refs 3 +14 0.979262 0.764415 +18 0.844342 0.867418 +20 0.844342 0.768698 +SURF 0x30 +mat 0 +refs 3 +13 0.979262 0.839009 +16 0.844342 0.939689 +18 0.844342 0.867418 +SURF 0x30 +mat 0 +refs 3 +16 0.844342 0.939689 +13 0.979262 0.839009 +12 0.979262 0.893621 +SURF 0x30 +mat 0 +refs 3 +10 0.594758 0.820638 +25 0.706023 0.661354 +21 0.706023 0.789334 +SURF 0x30 +mat 0 +refs 3 +25 0.706023 0.661354 +10 0.594758 0.820638 +11 0.594758 0.657934 +SURF 0x30 +mat 0 +refs 3 +9 0.471579 0.840304 +11 0.594758 0.657934 +10 0.594758 0.820638 +SURF 0x30 +mat 0 +refs 3 +11 0.594758 0.657934 +9 0.471579 0.840304 +8 0.471579 0.655985 +SURF 0x30 +mat 0 +refs 3 +18 0.844342 0.867418 +17 0.706023 0.976385 +19 0.706023 0.897321 +SURF 0x30 +mat 0 +refs 3 +17 0.706023 0.976385 +18 0.844342 0.867418 +16 0.844342 0.939689 +SURF 0x30 +mat 0 +refs 3 +28 0.984429 0.667628 +29 0.919986 0.828992 +31 0.919986 0.66725 +SURF 0x30 +mat 0 +refs 3 +29 0.919986 0.828992 +28 0.984429 0.667628 +26 0.984429 0.813447 +SURF 0x30 +mat 0 +refs 3 +28 0.984429 0.667628 +32 0.919986 0.593182 +27 0.984429 0.591053 +SURF 0x30 +mat 0 +refs 3 +32 0.919986 0.593182 +28 0.984429 0.667628 +31 0.919986 0.66725 +SURF 0x30 +mat 0 +refs 3 +31 0.919986 0.66725 +30 0.774814 0.830047 +34 0.774814 0.665669 +SURF 0x30 +mat 0 +refs 3 +30 0.774814 0.830047 +31 0.919986 0.66725 +29 0.919986 0.828992 +SURF 0x30 +mat 0 +refs 3 +34 0.774814 0.665669 +35 0.630179 0.826446 +37 0.630179 0.669388 +SURF 0x30 +mat 0 +refs 3 +35 0.630179 0.826446 +34 0.774814 0.665669 +30 0.774814 0.830047 +SURF 0x30 +mat 0 +refs 3 +31 0.919986 0.66725 +33 0.774814 0.590854 +32 0.919986 0.593182 +SURF 0x30 +mat 0 +refs 3 +33 0.774814 0.590854 +31 0.919986 0.66725 +34 0.774814 0.665669 +SURF 0x30 +mat 0 +refs 3 +33 0.774814 0.590854 +37 0.630179 0.669388 +38 0.630179 0.594574 +SURF 0x30 +mat 0 +refs 3 +37 0.630179 0.669388 +33 0.774814 0.590854 +34 0.774814 0.665669 +SURF 0x30 +mat 0 +refs 3 +37 0.630179 0.669388 +36 0.488674 0.809697 +40 0.488674 0.671049 +SURF 0x30 +mat 0 +refs 3 +36 0.488674 0.809697 +37 0.630179 0.669388 +35 0.630179 0.826446 +SURF 0x30 +mat 0 +refs 3 +40 0.488674 0.671049 +49 0.360835 0.783012 +51 0.360835 0.673954 +SURF 0x30 +mat 0 +refs 3 +49 0.360835 0.783012 +40 0.488674 0.671049 +36 0.488674 0.809697 +SURF 0x30 +mat 0 +refs 3 +37 0.630179 0.669388 +39 0.488674 0.603297 +38 0.630179 0.594574 +SURF 0x30 +mat 0 +refs 3 +39 0.488674 0.603297 +37 0.630179 0.669388 +40 0.488674 0.671049 +SURF 0x30 +mat 0 +refs 3 +39 0.488674 0.603297 +51 0.360835 0.673954 +52 0.360835 0.613104 +SURF 0x30 +mat 0 +refs 3 +51 0.360835 0.673954 +39 0.488674 0.603297 +40 0.488674 0.671049 +SURF 0x30 +mat 0 +refs 3 +50 0.201934 0.765427 +41 0.0469293 0.825352 +42 0.0469293 0.761787 +SURF 0x30 +mat 0 +refs 3 +41 0.0469293 0.825352 +50 0.201934 0.765427 +48 0.201934 0.849561 +SURF 0x30 +mat 0 +refs 3 +54 0.201934 0.68387 +42 0.0469293 0.761787 +44 0.0469293 0.695875 +SURF 0x30 +mat 0 +refs 3 +42 0.0469293 0.761787 +54 0.201934 0.68387 +50 0.201934 0.765427 +SURF 0x30 +mat 0 +refs 3 +53 0.201934 0.622284 +44 0.0469293 0.695875 +43 0.0469293 0.646672 +SURF 0x30 +mat 0 +refs 3 +44 0.0469293 0.695875 +53 0.201934 0.622284 +54 0.201934 0.68387 +SURF 0x30 +mat 0 +refs 3 +48 0.201934 0.849561 +45 0.360835 0.942417 +46 0.201934 0.911147 +SURF 0x30 +mat 0 +refs 3 +45 0.360835 0.942417 +48 0.201934 0.849561 +47 0.360835 0.875043 +SURF 0x30 +mat 0 +refs 3 +49 0.360835 0.783012 +48 0.201934 0.849561 +50 0.201934 0.765427 +SURF 0x30 +mat 0 +refs 3 +48 0.201934 0.849561 +49 0.360835 0.783012 +47 0.360835 0.875043 +SURF 0x30 +mat 0 +refs 3 +51 0.360835 0.673954 +50 0.201934 0.765427 +54 0.201934 0.68387 +SURF 0x30 +mat 0 +refs 3 +50 0.201934 0.765427 +51 0.360835 0.673954 +49 0.360835 0.783012 +SURF 0x30 +mat 0 +refs 3 +52 0.360835 0.613104 +54 0.201934 0.68387 +53 0.201934 0.622284 +SURF 0x30 +mat 0 +refs 3 +54 0.201934 0.68387 +52 0.360835 0.613104 +51 0.360835 0.673954 +kids 0 +OBJECT poly +name "Fuse3" +loc -0.0516798 0.043432 0 +texture "EasyStarV2Weiss.jpg" +crease 45.000000 +numvert 18 +-0.000330091 -0.0469779 0.0463196 +0.03984 -0.045377 0.0448643 +0.04303 -0.0129427 0.0502292 +0.0029 -0.00858331 0.0509569 +-0.0532401 -0.00631428 0.0519293 +-0.0532401 -0.0489889 0.0501102 +0.0532401 0.0489888 0.0431576 +0.01386 0.0485059 0.0438191 +-0.0532401 0.0479767 0.0445335 +-0.0532401 0.0479767 -0.0445335 +0.0532401 0.0489888 -0.0431576 +0.01386 0.0485059 -0.0438191 +-0.0532401 -0.00631428 -0.0519293 +-0.0532401 -0.0489889 -0.0501102 +-0.000330091 -0.0469779 -0.0463196 +0.03984 -0.045377 -0.0448643 +0.04303 -0.0129427 -0.0502292 +0.0029 -0.00858331 -0.0509569 +numsurf 16 +SURF 0x30 +mat 0 +refs 3 +1 0.29305 0.12421 +3 0.46755 0.29801 +0 0.4828 0.11665 +SURF 0x30 +mat 0 +refs 3 +3 0.46755 0.29801 +1 0.29305 0.12421 +2 0.27799 0.27743 +SURF 0x30 +mat 0 +refs 3 +0 0.4828 0.11665 +4 0.73277 0.30875 +5 0.73277 0.10715 +SURF 0x30 +mat 0 +refs 3 +4 0.73277 0.30875 +0 0.4828 0.11665 +3 0.46755 0.29801 +SURF 0x30 +mat 0 +refs 3 +2 0.27799 0.27743 +7 0.41578 0.5677 +3 0.46755 0.29801 +SURF 0x30 +mat 0 +refs 3 +7 0.41578 0.5677 +2 0.27799 0.27743 +6 0.22973 0.56999 +SURF 0x30 +mat 0 +refs 3 +3 0.46755 0.29801 +8 0.73277 0.5652 +4 0.73277 0.30875 +SURF 0x30 +mat 0 +refs 3 +8 0.73277 0.5652 +3 0.46755 0.29801 +7 0.41578 0.5677 +SURF 0x30 +mat 0 +refs 3 +17 0.467432 0.296623 +15 0.292943 0.122823 +14 0.482693 0.115272 +SURF 0x30 +mat 0 +refs 3 +15 0.292943 0.122823 +17 0.467432 0.296623 +16 0.277873 0.276053 +SURF 0x30 +mat 0 +refs 3 +17 0.467432 0.296623 +13 0.732663 0.105773 +12 0.732663 0.307362 +SURF 0x30 +mat 0 +refs 3 +13 0.732663 0.105773 +17 0.467432 0.296623 +14 0.482693 0.115272 +SURF 0x30 +mat 0 +refs 3 +11 0.415663 0.566323 +16 0.277873 0.276053 +17 0.467432 0.296623 +SURF 0x30 +mat 0 +refs 3 +16 0.277873 0.276053 +11 0.415663 0.566323 +10 0.229613 0.568613 +SURF 0x30 +mat 0 +refs 3 +11 0.415663 0.566323 +12 0.732663 0.307362 +9 0.732663 0.563823 +SURF 0x30 +mat 0 +refs 3 +12 0.732663 0.307362 +11 0.415663 0.566323 +17 0.467432 0.296623 +kids 0 +OBJECT poly +name "PropDisk.PropDisk" +loc 0.150434 0.14381 -0.00102582 +crease 45.000000 +numvert 28 +0 0 0 +1.49012e-008 -0.0220233 -0.0528847 +1.49012e-008 -0.0406938 -0.0404766 +1.49012e-008 -0.0531689 -0.0219057 +0 -0.0575496 -1.97906e-009 +0 -0.0531689 0.0219055 +0 -0.0406938 0.0404764 +0 -0.0220233 0.0528847 +0 0 0.0572422 +0 0.0220233 0.0528847 +0 0.0406936 0.0404764 +0 0.0531688 0.0219055 +0 0.0575496 1.97906e-009 +1.49012e-008 0.0531688 -0.0219057 +1.49012e-008 0.0406936 -0.0404766 +1.49012e-008 0.0220233 -0.0528847 +1.49012e-008 0 -0.0572422 +1.49012e-008 0.000290751 -0.000698328 +1.49012e-008 0.000702024 -0.000698328 +1.49012e-008 0.0016948 -0.000698328 +1.49012e-008 -0.0016948 -0.000698328 +1.49012e-008 -0.000702024 -0.000698328 +1.49012e-008 -0.000290751 -0.000698328 +1.49012e-008 0 -0.000698328 +0 0.00922346 0.0221484 +0 0 0.0221484 +0 -0.00922358 0.0221484 +0 -0.0222672 0.0221484 +numsurf 25 +SURF 0x30 +mat 3 +refs 3 +27 0.0664644 1.20742 +0 0.0664644 1.26384 +26 0.0664644 1.24047 +SURF 0x30 +mat 3 +refs 4 +26 0.0664644 1.24047 +7 0.0664644 1.20804 +6 0.0664644 1.16073 +27 0.0664644 1.20742 +SURF 0x30 +mat 3 +refs 3 +26 0.0664644 1.24047 +0 0.0664644 1.26384 +25 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 4 +25 0.0664644 1.26384 +8 0.0664644 1.26384 +7 0.0664644 1.20804 +26 0.0664644 1.24047 +SURF 0x30 +mat 3 +refs 3 +25 0.0664644 1.26384 +0 0.0664644 1.26384 +24 0.0664644 1.28721 +SURF 0x30 +mat 3 +refs 4 +24 0.0664644 1.28721 +9 0.0664644 1.31964 +8 0.0664644 1.26384 +25 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 3 +23 0.0664644 1.26384 +0 0.0664644 1.26384 +22 0.0664644 1.2631 +SURF 0x30 +mat 3 +refs 4 +22 0.0664644 1.2631 +1 0.0664644 1.20804 +16 0.0664644 1.26384 +23 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 3 +22 0.0664644 1.2631 +0 0.0664644 1.26384 +21 0.0664644 1.26206 +SURF 0x30 +mat 3 +refs 4 +21 0.0664644 1.26206 +2 0.0664644 1.16073 +1 0.0664644 1.20804 +22 0.0664644 1.2631 +SURF 0x30 +mat 3 +refs 3 +21 0.0664644 1.26206 +0 0.0664644 1.26384 +20 0.0664644 1.25955 +SURF 0x30 +mat 3 +refs 4 +20 0.0664644 1.25955 +3 0.0664644 1.12912 +2 0.0664644 1.16073 +21 0.0664644 1.26206 +SURF 0x30 +mat 3 +refs 3 +19 0.0664644 1.26813 +0 0.0664644 1.26384 +18 0.0664644 1.26562 +SURF 0x30 +mat 3 +refs 4 +18 0.0664644 1.26562 +14 0.0664644 1.36695 +13 0.0664644 1.39856 +19 0.0664644 1.26813 +SURF 0x30 +mat 3 +refs 3 +18 0.0664644 1.26562 +0 0.0664644 1.26384 +17 0.0664644 1.26458 +SURF 0x30 +mat 3 +refs 4 +17 0.0664644 1.26458 +15 0.0664644 1.31964 +14 0.0664644 1.36695 +18 0.0664644 1.26562 +SURF 0x30 +mat 3 +refs 3 +17 0.0664644 1.26458 +0 0.0664644 1.26384 +23 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 4 +23 0.0664644 1.26384 +16 0.0664644 1.26384 +15 0.0664644 1.31964 +17 0.0664644 1.26458 +SURF 0x30 +mat 3 +refs 4 +19 0.0664644 1.26813 +13 0.0664644 1.39856 +12 0.0664644 1.40966 +0 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 3 +12 0.0664644 1.40966 +11 0.0664644 1.39856 +0 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 3 +11 0.0664644 1.39856 +10 0.0664644 1.36695 +0 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 4 +10 0.0664644 1.36695 +9 0.0664644 1.31964 +24 0.0664644 1.28721 +0 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 4 +27 0.0664644 1.20742 +6 0.0664644 1.16073 +5 0.0664644 1.12912 +0 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 3 +5 0.0664644 1.12912 +4 0.0664644 1.11802 +0 0.0664644 1.26384 +SURF 0x30 +mat 3 +refs 4 +4 0.0664644 1.11802 +3 0.0664644 1.12912 +20 0.0664644 1.25955 +0 0.0664644 1.26384 +kids 0 +OBJECT poly +name "Prop.Prop" +loc 0.0510153 0.143375 -0.000973124 +texture "C:/Program Files/SVKSystems/ClearView/models/Sportster/data/test1.gif" +crease 45.000000 +numvert 34 +0.0998651 0.000222802 -5.99509e-005 +0.0968886 0.000222802 -5.9951e-005 +0.0998651 -0.00510955 -5.99509e-005 +0.0998651 -0.00354779 0.00342499 +0.0998651 0.000222802 0.0048685 +0.0998651 0.00399339 0.00342499 +0.0998651 0.00555527 -5.99509e-005 +0.0998652 0.00399339 -0.00354491 +0.0998652 0.000222802 -0.00498843 +0.0998652 -0.00354779 -0.00354491 +0.0968886 -0.00510955 -5.9951e-005 +0.0968886 -0.00354779 0.00342499 +0.0968886 0.000222802 0.0048685 +0.0968886 0.00399339 0.00342499 +0.0968886 0.00555527 -5.9951e-005 +0.0968886 0.00399339 -0.00354491 +0.0968886 0.000222802 -0.00498843 +0.0968886 -0.00354779 -0.00354491 +0.0995637 0.0578228 -5.99509e-005 +0.100374 0.0461 -0.00406533 +0.101485 0.0286309 -0.00421164 +0.100185 0.00491226 -0.0018139 +0.0986232 0.00483048 0.0013787 +0.0962729 0.0272771 0.00501967 +0.0968428 0.0462753 0.00418048 +0.0985947 0.0576521 0.0024445 +0.0992934 -0.0565273 0.00163652 +0.101045 -0.0451509 0.00337254 +0.101615 -0.0261527 0.00421174 +0.0992647 -0.0037061 0.000570752 +0.0977038 -0.00378788 -0.00262186 +0.0964029 -0.0275062 -0.0050196 +0.0975139 -0.0449756 -0.0048733 +0.0983242 -0.0566987 -0.000867896 +numsurf 38 +SURF 0x30 +mat 4 +refs 4 +16 0.720536 0.714303 +8 0.702192 0.714303 +9 0.702192 0.705307 +17 0.720536 0.705307 +SURF 0x30 +mat 4 +refs 4 +15 0.720536 0.723299 +7 0.702192 0.723299 +8 0.702192 0.714303 +16 0.720536 0.714303 +SURF 0x30 +mat 4 +refs 4 +14 0.720536 0.727026 +6 0.702192 0.727026 +7 0.702192 0.723299 +15 0.720536 0.723299 +SURF 0x30 +mat 4 +refs 4 +13 0.720536 0.723299 +5 0.702192 0.723299 +6 0.702192 0.727026 +14 0.720536 0.727026 +SURF 0x30 +mat 4 +refs 4 +12 0.720536 0.714303 +4 0.702192 0.714303 +5 0.702192 0.723299 +13 0.720536 0.723299 +SURF 0x30 +mat 4 +refs 4 +11 0.720536 0.705307 +3 0.702192 0.705307 +4 0.702192 0.714303 +12 0.720536 0.714303 +SURF 0x30 +mat 4 +refs 4 +10 0.720536 0.701581 +2 0.702192 0.701581 +3 0.702192 0.705307 +11 0.720536 0.705307 +SURF 0x30 +mat 4 +refs 4 +17 0.720536 0.705307 +9 0.702192 0.705307 +2 0.702192 0.701581 +10 0.720536 0.701581 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +16 0.720536 0.714303 +17 0.720536 0.705307 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +15 0.720536 0.723299 +16 0.720536 0.714303 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +14 0.720536 0.727026 +15 0.720536 0.723299 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +13 0.720536 0.723299 +14 0.720536 0.727026 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +12 0.720536 0.714303 +13 0.720536 0.723299 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +11 0.720536 0.705307 +12 0.720536 0.714303 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +10 0.720536 0.701581 +11 0.720536 0.705307 +SURF 0x30 +mat 4 +refs 3 +1 0.720536 0.714303 +17 0.720536 0.705307 +10 0.720536 0.701581 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +9 0.702192 0.705307 +8 0.702192 0.714303 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +8 0.702192 0.714303 +7 0.702192 0.723299 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +7 0.702192 0.723299 +6 0.702192 0.727026 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +6 0.702192 0.727026 +5 0.702192 0.723299 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +5 0.702192 0.723299 +4 0.702192 0.714303 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +4 0.702192 0.714303 +3 0.702192 0.705307 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +3 0.702192 0.705307 +2 0.702192 0.701581 +SURF 0x30 +mat 4 +refs 3 +0 0.702192 0.714303 +2 0.702192 0.701581 +9 0.702192 0.705307 +SURF 0x30 +mat 4 +refs 3 +22 0.709845 0.725296 +21 0.700223 0.725491 +20 0.692207 0.782079 +SURF 0x30 +mat 4 +refs 3 +23 0.724331 0.778849 +22 0.709845 0.725296 +20 0.692207 0.782079 +SURF 0x30 +mat 4 +refs 3 +24 0.720819 0.824175 +23 0.724331 0.778849 +20 0.692207 0.782079 +SURF 0x30 +mat 4 +refs 3 +24 0.720819 0.824175 +20 0.692207 0.782079 +19 0.699055 0.823758 +SURF 0x30 +mat 4 +refs 3 +25 0.710022 0.851318 +24 0.720819 0.824175 +19 0.699055 0.823758 +SURF 0x30 +mat 4 +refs 3 +19 0.699055 0.823758 +18 0.704048 0.851725 +25 0.710022 0.851318 +SURF 0x31 +mat 4 +refs 8 +18 0.704048 0.851725 +19 0.699055 0.823758 +20 0.692207 0.782079 +21 0.700223 0.725491 +22 0.709845 0.725296 +23 0.724331 0.778849 +24 0.720819 0.824175 +25 0.710022 0.851318 +SURF 0x31 +mat 4 +refs 8 +33 0.71169 0.578501 +32 0.716682 0.606468 +31 0.72353 0.648147 +30 0.715513 0.704734 +29 0.705892 0.70493 +28 0.691406 0.651376 +27 0.694917 0.60605 +26 0.705715 0.578908 +SURF 0x30 +mat 4 +refs 3 +32 0.716682 0.606468 +33 0.71169 0.578501 +26 0.705715 0.578908 +SURF 0x30 +mat 4 +refs 3 +26 0.705715 0.578908 +27 0.694917 0.60605 +32 0.716682 0.606468 +SURF 0x30 +mat 4 +refs 3 +27 0.694917 0.60605 +31 0.72353 0.648147 +32 0.716682 0.606468 +SURF 0x30 +mat 4 +refs 3 +27 0.694917 0.60605 +28 0.691406 0.651376 +31 0.72353 0.648147 +SURF 0x30 +mat 4 +refs 3 +28 0.691406 0.651376 +29 0.705892 0.70493 +31 0.72353 0.648147 +SURF 0x30 +mat 4 +refs 3 +29 0.705892 0.70493 +30 0.715513 0.704734 +31 0.72353 0.648147 +kids 0 +OBJECT poly +name "Prop1.Prop1" +loc -0.000147298 0.184629 -0.000748106 +texture "EasyStarV2Weiss.jpg" +crease 45.000000 +numvert 80 +0.170696 -0.0412946 -0.00037245 +0.168956 -0.0448939 -0.000403966 +0.168956 -0.0445876 -0.00193642 +0.170696 -0.0411755 -0.000653813 +0.168956 -0.0436982 -0.00322115 +0.168956 -0.0423977 -0.00408822 +0.170696 -0.040892 -0.000768314 +0.168956 -0.0408606 -0.00436766 +0.168956 -0.039328 -0.00406151 +0.170696 -0.0406106 -0.000648866 +0.168956 -0.0380432 -0.00317183 +0.168956 -0.037176 -0.00187166 +0.170696 -0.0404959 -0.000365461 +0.168956 -0.0368966 -0.000334064 +0.168956 -0.0372027 0.00119843 +0.170696 -0.0406154 -8.40825e-005 +0.168956 -0.0380925 0.0024833 +0.168956 -0.0393926 0.00335041 +0.170696 -0.0408989 3.04329e-005 +0.168956 -0.0409303 0.00362972 +0.168956 -0.0446145 0.00113361 +0.168956 -0.0424626 0.00332341 +0.170696 -0.0411803 -8.90297e-005 +0.168956 -0.0437473 0.00243372 +0.148105 -0.0528969 -0.000474059 +0.164461 -0.0481413 -0.000432203 +0.157934 -0.0506858 -0.000454569 +0.148105 -0.0493072 -0.00892948 +0.157934 -0.0499361 -0.00420677 +0.164461 -0.0459741 -0.00553755 +0.157934 -0.0477576 -0.00735236 +0.148105 -0.0407906 -0.0123702 +0.157934 -0.0445746 -0.00947525 +0.164461 -0.040832 -0.00761522 +0.157934 -0.0408099 -0.0101594 +0.148105 -0.0323349 -0.00878096 +0.157934 -0.0370579 -0.00940982 +0.164461 -0.0357268 -0.00544832 +0.157934 -0.0339121 -0.0072315 +0.148105 -0.0288938 -0.000263998 +0.157934 -0.0317888 -0.00404812 +0.164461 -0.033649 -0.000305707 +0.157934 -0.0311047 -0.000283385 +0.148105 -0.0324833 0.00819149 +0.157934 -0.0318545 0.00346882 +0.164461 -0.0358163 0.00479979 +0.157934 -0.0340329 0.00661453 +0.148105 -0.0410003 0.0116325 +0.157934 -0.0372162 0.00873757 +0.164461 -0.0409585 0.00687726 +0.157934 -0.040981 0.00942159 +0.157934 -0.0500017 0.00331024 +0.148105 -0.0494558 0.00804313 +0.157934 -0.0447329 0.00867183 +0.164461 -0.0460639 0.00471017 +0.157934 -0.0478788 0.00649354 +0.170696 -0.0412641 -0.0005255 +0.170696 -0.0410454 -0.000740404 +0.170696 -0.0407386 -0.000737722 +0.170696 -0.0405241 -0.000519003 +0.170696 -0.0405264 -0.000212411 +0.170696 -0.0407451 2.53797e-006 +0.170696 -0.0410519 -1.74041e-007 +0.170696 -0.0412669 -0.000218893 +0.148105 -0.0519777 -0.00507359 +0.164461 -0.0475865 -0.00320933 +0.148105 -0.0454052 -0.0115316 +0.164461 -0.043618 -0.00710879 +0.148105 -0.0361913 -0.0114512 +0.164461 -0.0380551 -0.00706051 +0.148105 -0.0297323 -0.00487877 +0.164461 -0.0341554 -0.00309221 +0.148105 -0.029813 0.00433538 +0.164461 -0.034204 0.00247153 +0.148105 -0.0363853 0.0107939 +0.164461 -0.0381723 0.00637107 +0.148105 -0.0520582 0.00414093 +0.148105 -0.0455996 0.0107134 +0.164461 -0.0437356 0.00632231 +0.164461 -0.0476348 0.00235419 +numsurf 128 +SURF 0x30 +mat 6 +refs 3 +2 0.642951 0.734598 +25 0.64619 0.733901 +65 0.64619 0.733999 +SURF 0x30 +mat 6 +refs 3 +25 0.64619 0.733901 +2 0.642951 0.734598 +1 0.642951 0.73455 +SURF 0x30 +mat 6 +refs 3 +20 0.642951 0.734593 +25 0.64619 0.733901 +1 0.642951 0.73455 +SURF 0x30 +mat 6 +refs 3 +25 0.64619 0.733901 +20 0.642951 0.734593 +79 0.64619 0.73399 +SURF 0x30 +mat 6 +refs 3 +20 0.642951 0.734593 +0 0.641697 0.735096 +63 0.641697 0.735101 +SURF 0x30 +mat 6 +refs 3 +0 0.641697 0.735096 +20 0.642951 0.734593 +1 0.642951 0.73455 +SURF 0x30 +mat 6 +refs 3 +0 0.641697 0.735096 +2 0.642951 0.734598 +56 0.641697 0.735101 +SURF 0x30 +mat 6 +refs 3 +2 0.642951 0.734598 +0 0.641697 0.735096 +1 0.642951 0.73455 +SURF 0x30 +mat 6 +refs 3 +5 0.642951 0.734939 +29 0.64619 0.734282 +67 0.64619 0.734695 +SURF 0x30 +mat 6 +refs 3 +29 0.64619 0.734282 +5 0.642951 0.734939 +4 0.642951 0.734737 +SURF 0x30 +mat 6 +refs 3 +4 0.642951 0.734737 +65 0.64619 0.733999 +29 0.64619 0.734282 +SURF 0x30 +mat 6 +refs 3 +65 0.64619 0.733999 +4 0.642951 0.734737 +2 0.642951 0.734598 +SURF 0x30 +mat 6 +refs 3 +56 0.641697 0.735101 +4 0.642951 0.734737 +3 0.641697 0.735119 +SURF 0x30 +mat 6 +refs 3 +4 0.642951 0.734737 +56 0.641697 0.735101 +2 0.642951 0.734598 +SURF 0x30 +mat 6 +refs 3 +3 0.641697 0.735119 +5 0.642951 0.734939 +57 0.641697 0.735144 +SURF 0x30 +mat 6 +refs 3 +5 0.642951 0.734939 +3 0.641697 0.735119 +4 0.642951 0.734737 +SURF 0x30 +mat 6 +refs 3 +8 0.642951 0.735418 +33 0.64619 0.735185 +69 0.64619 0.735672 +SURF 0x30 +mat 6 +refs 3 +33 0.64619 0.735185 +8 0.642951 0.735418 +7 0.642951 0.735179 +SURF 0x30 +mat 6 +refs 3 +7 0.642951 0.735179 +67 0.64619 0.734695 +33 0.64619 0.735185 +SURF 0x30 +mat 6 +refs 3 +67 0.64619 0.734695 +7 0.642951 0.735179 +5 0.642951 0.734939 +SURF 0x30 +mat 6 +refs 3 +57 0.641697 0.735144 +7 0.642951 0.735179 +6 0.641697 0.735174 +SURF 0x30 +mat 6 +refs 3 +7 0.642951 0.735179 +57 0.641697 0.735144 +5 0.642951 0.734939 +SURF 0x30 +mat 6 +refs 3 +58 0.641697 0.735204 +7 0.642951 0.735179 +8 0.642951 0.735418 +SURF 0x30 +mat 6 +refs 3 +7 0.642951 0.735179 +58 0.641697 0.735204 +6 0.641697 0.735174 +SURF 0x30 +mat 6 +refs 3 +71 0.64619 0.736357 +10 0.642951 0.735618 +37 0.64619 0.736081 +SURF 0x30 +mat 6 +refs 3 +10 0.642951 0.735618 +71 0.64619 0.736357 +11 0.642951 0.735754 +SURF 0x30 +mat 6 +refs 3 +10 0.642951 0.735618 +69 0.64619 0.735672 +37 0.64619 0.736081 +SURF 0x30 +mat 6 +refs 3 +69 0.64619 0.735672 +10 0.642951 0.735618 +8 0.642951 0.735418 +SURF 0x30 +mat 6 +refs 3 +9 0.641697 0.735229 +8 0.642951 0.735418 +10 0.642951 0.735618 +SURF 0x30 +mat 6 +refs 3 +8 0.642951 0.735418 +9 0.641697 0.735229 +58 0.641697 0.735204 +SURF 0x30 +mat 6 +refs 3 +59 0.641697 0.735246 +10 0.642951 0.735618 +11 0.642951 0.735754 +SURF 0x30 +mat 6 +refs 3 +10 0.642951 0.735618 +59 0.641697 0.735246 +9 0.641697 0.735229 +SURF 0x30 +mat 6 +refs 3 +41 0.64619 0.736446 +14 0.642951 0.735749 +13 0.642951 0.735797 +SURF 0x30 +mat 6 +refs 3 +14 0.642951 0.735749 +41 0.64619 0.736446 +73 0.64619 0.736348 +SURF 0x30 +mat 6 +refs 3 +71 0.64619 0.736357 +13 0.642951 0.735797 +11 0.642951 0.735754 +SURF 0x30 +mat 6 +refs 3 +13 0.642951 0.735797 +71 0.64619 0.736357 +41 0.64619 0.736446 +SURF 0x30 +mat 6 +refs 3 +12 0.641697 0.735251 +11 0.642951 0.735754 +13 0.642951 0.735797 +SURF 0x30 +mat 6 +refs 3 +11 0.642951 0.735754 +12 0.641697 0.735251 +59 0.641697 0.735246 +SURF 0x30 +mat 6 +refs 3 +14 0.642951 0.735749 +12 0.641697 0.735251 +13 0.642951 0.735797 +SURF 0x30 +mat 6 +refs 3 +12 0.641697 0.735251 +14 0.642951 0.735749 +60 0.641697 0.735246 +SURF 0x30 +mat 6 +refs 3 +17 0.642951 0.735408 +45 0.64619 0.736065 +75 0.64619 0.735652 +SURF 0x30 +mat 6 +refs 3 +45 0.64619 0.736065 +17 0.642951 0.735408 +16 0.642951 0.735611 +SURF 0x30 +mat 6 +refs 3 +73 0.64619 0.736348 +16 0.642951 0.735611 +14 0.642951 0.735749 +SURF 0x30 +mat 6 +refs 3 +16 0.642951 0.735611 +73 0.64619 0.736348 +45 0.64619 0.736065 +SURF 0x30 +mat 6 +refs 3 +16 0.642951 0.735611 +60 0.641697 0.735246 +14 0.642951 0.735749 +SURF 0x30 +mat 6 +refs 3 +60 0.641697 0.735246 +16 0.642951 0.735611 +15 0.641697 0.735228 +SURF 0x30 +mat 6 +refs 3 +17 0.642951 0.735408 +15 0.641697 0.735228 +16 0.642951 0.735611 +SURF 0x30 +mat 6 +refs 3 +15 0.641697 0.735228 +17 0.642951 0.735408 +61 0.641697 0.735203 +SURF 0x30 +mat 6 +refs 3 +21 0.642951 0.734929 +49 0.64619 0.735162 +78 0.64619 0.734675 +SURF 0x30 +mat 6 +refs 3 +49 0.64619 0.735162 +21 0.642951 0.734929 +19 0.642951 0.735168 +SURF 0x30 +mat 6 +refs 3 +19 0.642951 0.735168 +75 0.64619 0.735652 +49 0.64619 0.735162 +SURF 0x30 +mat 6 +refs 3 +75 0.64619 0.735652 +19 0.642951 0.735168 +17 0.642951 0.735408 +SURF 0x30 +mat 6 +refs 3 +17 0.642951 0.735408 +18 0.641697 0.735173 +61 0.641697 0.735203 +SURF 0x30 +mat 6 +refs 3 +18 0.641697 0.735173 +17 0.642951 0.735408 +19 0.642951 0.735168 +SURF 0x30 +mat 6 +refs 3 +19 0.642951 0.735168 +62 0.641697 0.735143 +18 0.641697 0.735173 +SURF 0x30 +mat 6 +refs 3 +62 0.641697 0.735143 +19 0.642951 0.735168 +21 0.642951 0.734929 +SURF 0x30 +mat 6 +refs 3 +23 0.642951 0.734729 +79 0.64619 0.73399 +20 0.642951 0.734593 +SURF 0x30 +mat 6 +refs 3 +79 0.64619 0.73399 +23 0.642951 0.734729 +54 0.64619 0.734266 +SURF 0x30 +mat 6 +refs 3 +23 0.642951 0.734729 +78 0.64619 0.734675 +54 0.64619 0.734266 +SURF 0x30 +mat 6 +refs 3 +78 0.64619 0.734675 +23 0.642951 0.734729 +21 0.642951 0.734929 +SURF 0x30 +mat 6 +refs 3 +21 0.642951 0.734929 +22 0.641697 0.735118 +62 0.641697 0.735143 +SURF 0x30 +mat 6 +refs 3 +22 0.641697 0.735118 +21 0.642951 0.734929 +23 0.642951 0.734729 +SURF 0x30 +mat 6 +refs 3 +23 0.642951 0.734729 +63 0.641697 0.735101 +22 0.641697 0.735118 +SURF 0x30 +mat 6 +refs 3 +63 0.641697 0.735101 +23 0.642951 0.734729 +20 0.642951 0.734593 +SURF 0x30 +mat 6 +refs 3 +28 0.650894 0.733526 +24 0.658602 0.732704 +64 0.658602 0.732893 +SURF 0x30 +mat 6 +refs 3 +24 0.658602 0.732704 +28 0.650894 0.733526 +26 0.650894 0.73339 +SURF 0x30 +mat 6 +refs 3 +51 0.650894 0.733514 +24 0.658602 0.732704 +26 0.650894 0.73339 +SURF 0x30 +mat 6 +refs 3 +24 0.658602 0.732704 +51 0.650894 0.733514 +76 0.658602 0.732876 +SURF 0x30 +mat 6 +refs 3 +79 0.64619 0.73399 +26 0.650894 0.73339 +25 0.64619 0.733901 +SURF 0x30 +mat 6 +refs 3 +26 0.650894 0.73339 +79 0.64619 0.73399 +51 0.650894 0.733514 +SURF 0x30 +mat 6 +refs 3 +65 0.64619 0.733999 +26 0.650894 0.73339 +28 0.650894 0.733526 +SURF 0x30 +mat 6 +refs 3 +26 0.650894 0.73339 +65 0.64619 0.733999 +25 0.64619 0.733901 +SURF 0x30 +mat 6 +refs 3 +32 0.650894 0.734503 +27 0.658602 0.733442 +66 0.658602 0.734245 +SURF 0x30 +mat 6 +refs 3 +27 0.658602 0.733442 +32 0.650894 0.734503 +30 0.650894 0.733923 +SURF 0x30 +mat 6 +refs 3 +30 0.650894 0.733923 +64 0.658602 0.732893 +27 0.658602 0.733442 +SURF 0x30 +mat 6 +refs 3 +64 0.658602 0.732893 +30 0.650894 0.733923 +28 0.650894 0.733526 +SURF 0x30 +mat 6 +refs 3 +29 0.64619 0.734282 +28 0.650894 0.733526 +30 0.650894 0.733923 +SURF 0x30 +mat 6 +refs 3 +28 0.650894 0.733526 +29 0.64619 0.734282 +65 0.64619 0.733999 +SURF 0x30 +mat 6 +refs 3 +67 0.64619 0.734695 +30 0.650894 0.733923 +32 0.650894 0.734503 +SURF 0x30 +mat 6 +refs 3 +30 0.650894 0.733923 +67 0.64619 0.734695 +29 0.64619 0.734282 +SURF 0x30 +mat 6 +refs 3 +36 0.650894 0.735873 +31 0.658602 0.735195 +68 0.658602 0.736142 +SURF 0x30 +mat 6 +refs 3 +31 0.658602 0.735195 +36 0.650894 0.735873 +34 0.650894 0.735189 +SURF 0x30 +mat 6 +refs 3 +34 0.650894 0.735189 +66 0.658602 0.734245 +31 0.658602 0.735195 +SURF 0x30 +mat 6 +refs 3 +66 0.658602 0.734245 +34 0.650894 0.735189 +32 0.650894 0.734503 +SURF 0x30 +mat 6 +refs 3 +33 0.64619 0.735185 +32 0.650894 0.734503 +34 0.650894 0.735189 +SURF 0x30 +mat 6 +refs 3 +32 0.650894 0.734503 +33 0.64619 0.735185 +67 0.64619 0.734695 +SURF 0x30 +mat 6 +refs 3 +69 0.64619 0.735672 +34 0.650894 0.735189 +36 0.650894 0.735873 +SURF 0x30 +mat 6 +refs 3 +34 0.650894 0.735189 +69 0.64619 0.735672 +33 0.64619 0.735185 +SURF 0x30 +mat 6 +refs 3 +70 0.658602 0.737471 +38 0.650894 0.736446 +35 0.658602 0.736935 +SURF 0x30 +mat 6 +refs 3 +38 0.650894 0.736446 +70 0.658602 0.737471 +40 0.650894 0.736833 +SURF 0x30 +mat 6 +refs 3 +38 0.650894 0.736446 +68 0.658602 0.736142 +35 0.658602 0.736935 +SURF 0x30 +mat 6 +refs 3 +68 0.658602 0.736142 +38 0.650894 0.736446 +36 0.650894 0.735873 +SURF 0x30 +mat 6 +refs 3 +37 0.64619 0.736081 +36 0.650894 0.735873 +38 0.650894 0.736446 +SURF 0x30 +mat 6 +refs 3 +36 0.650894 0.735873 +37 0.64619 0.736081 +69 0.64619 0.735672 +SURF 0x30 +mat 6 +refs 3 +40 0.650894 0.736833 +37 0.64619 0.736081 +38 0.650894 0.736446 +SURF 0x30 +mat 6 +refs 3 +37 0.64619 0.736081 +40 0.650894 0.736833 +71 0.64619 0.736357 +SURF 0x30 +mat 6 +refs 3 +39 0.658602 0.737643 +44 0.650894 0.736821 +42 0.650894 0.736957 +SURF 0x30 +mat 6 +refs 3 +44 0.650894 0.736821 +39 0.658602 0.737643 +72 0.658602 0.737454 +SURF 0x30 +mat 6 +refs 3 +70 0.658602 0.737471 +42 0.650894 0.736957 +40 0.650894 0.736833 +SURF 0x30 +mat 6 +refs 3 +42 0.650894 0.736957 +70 0.658602 0.737471 +39 0.658602 0.737643 +SURF 0x30 +mat 6 +refs 3 +40 0.650894 0.736833 +41 0.64619 0.736446 +71 0.64619 0.736357 +SURF 0x30 +mat 6 +refs 3 +41 0.64619 0.736446 +40 0.650894 0.736833 +42 0.650894 0.736957 +SURF 0x30 +mat 6 +refs 3 +42 0.650894 0.736957 +73 0.64619 0.736348 +41 0.64619 0.736446 +SURF 0x30 +mat 6 +refs 3 +73 0.64619 0.736348 +42 0.650894 0.736957 +44 0.650894 0.736821 +SURF 0x30 +mat 6 +refs 3 +48 0.650894 0.735844 +43 0.658602 0.736905 +74 0.658602 0.736102 +SURF 0x30 +mat 6 +refs 3 +43 0.658602 0.736905 +48 0.650894 0.735844 +46 0.650894 0.736424 +SURF 0x30 +mat 6 +refs 3 +72 0.658602 0.737454 +46 0.650894 0.736424 +44 0.650894 0.736821 +SURF 0x30 +mat 6 +refs 3 +46 0.650894 0.736424 +72 0.658602 0.737454 +43 0.658602 0.736905 +SURF 0x30 +mat 6 +refs 3 +44 0.650894 0.736821 +45 0.64619 0.736065 +73 0.64619 0.736348 +SURF 0x30 +mat 6 +refs 3 +45 0.64619 0.736065 +44 0.650894 0.736821 +46 0.650894 0.736424 +SURF 0x30 +mat 6 +refs 3 +75 0.64619 0.735652 +46 0.650894 0.736424 +48 0.650894 0.735844 +SURF 0x30 +mat 6 +refs 3 +46 0.650894 0.736424 +75 0.64619 0.735652 +45 0.64619 0.736065 +SURF 0x30 +mat 6 +refs 3 +53 0.650894 0.734474 +47 0.658602 0.735152 +77 0.658602 0.734205 +SURF 0x30 +mat 6 +refs 3 +47 0.658602 0.735152 +53 0.650894 0.734474 +50 0.650894 0.735158 +SURF 0x30 +mat 6 +refs 3 +50 0.650894 0.735158 +74 0.658602 0.736102 +47 0.658602 0.735152 +SURF 0x30 +mat 6 +refs 3 +74 0.658602 0.736102 +50 0.650894 0.735158 +48 0.650894 0.735844 +SURF 0x30 +mat 6 +refs 3 +49 0.64619 0.735162 +48 0.650894 0.735844 +50 0.650894 0.735158 +SURF 0x30 +mat 6 +refs 3 +48 0.650894 0.735844 +49 0.64619 0.735162 +75 0.64619 0.735652 +SURF 0x30 +mat 6 +refs 3 +78 0.64619 0.734675 +50 0.650894 0.735158 +53 0.650894 0.734474 +SURF 0x30 +mat 6 +refs 3 +50 0.650894 0.735158 +78 0.64619 0.734675 +49 0.64619 0.735162 +SURF 0x30 +mat 6 +refs 3 +55 0.650894 0.733901 +76 0.658602 0.732876 +51 0.650894 0.733514 +SURF 0x30 +mat 6 +refs 3 +76 0.658602 0.732876 +55 0.650894 0.733901 +52 0.658602 0.733412 +SURF 0x30 +mat 6 +refs 3 +55 0.650894 0.733901 +77 0.658602 0.734205 +52 0.658602 0.733412 +SURF 0x30 +mat 6 +refs 3 +77 0.658602 0.734205 +55 0.650894 0.733901 +53 0.650894 0.734474 +SURF 0x30 +mat 6 +refs 3 +54 0.64619 0.734266 +53 0.650894 0.734474 +55 0.650894 0.733901 +SURF 0x30 +mat 6 +refs 3 +53 0.650894 0.734474 +54 0.64619 0.734266 +78 0.64619 0.734675 +SURF 0x30 +mat 6 +refs 3 +54 0.64619 0.734266 +51 0.650894 0.733514 +79 0.64619 0.73399 +SURF 0x30 +mat 6 +refs 3 +51 0.650894 0.733514 +54 0.64619 0.734266 +55 0.650894 0.733901 +kids 0 diff --git a/resources/flightgear/Aircraft/EasyStar/Models/easystar.ac b/resources/flightgear/Aircraft/EasyStar/Models/easystar.ac new file mode 100644 index 0000000000000000000000000000000000000000..e6bf85e851c700f0c2ced6ea29af7b4fec77541b --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/Models/easystar.ac @@ -0,0 +1,19239 @@ +AC3Db +MATERIAL "ac3dmat12" rgb 0.266667 0.266667 0.266667 amb 0.1 0.1 0.1 emis 0 0 0 spec 0 0 0 shi 10 trans 0 +MATERIAL "nonamemat10" rgb 0.6 0.6 0.6 amb 0.267 0.267 0.267 emis 0.427 0.427 0.427 spec 0.533 0.533 0.533 shi 100 trans 0 +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0 0 0 shi 10 trans 0.906 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.502 0.502 0.502 emis 0 0 0 spec 1 1 1 shi 53 trans 0 +OBJECT world +kids 16 +OBJECT poly +name "Fuse4" +loc -0.0682968 -0.00616619 0 +texture "EasyStarK.jpg" +crease 45.000000 +numvert 45 +0.0288487 0.0343925 0.0110784 +0.0600045 0.0364698 0.011134 +0.0600045 0.0312743 0.0205799 +0.0288487 0.0291011 0.0208933 +0.0600045 0.00757598 0.0350496 +0.0600045 -0.0296671 0.0411548 +0.0288487 -0.0294345 0.0419938 +0.0288487 0.00426565 0.0360402 +-0.00219265 0.0286108 0.0111239 +-0.0600045 -0.000803569 0.00751532 +-0.0325693 0.0174161 0.00922866 +-0.00219265 0.0233242 0.0212067 +-0.0600045 -0.0043111 0.0209943 +-0.0325693 0.0127614 0.0210954 +-0.00219265 0.00110177 0.0368791 +-0.00219265 -0.0302382 0.0426205 +-0.0325693 -0.0339832 0.0423981 +-0.0600045 -0.0399469 0.0415996 +-0.0600045 -0.019372 0.0365152 +-0.0325693 -0.00699472 0.0366871 +0.0600045 0.0399469 -5.05019e-06 +0.0288487 0.0375918 5.05922e-06 +0.0600045 0.0364698 -0.011134 +0.0288487 0.0343925 -0.0110784 +0.0600045 0.0312743 -0.0205799 +0.0288487 0.0291011 -0.0208933 +0.0600045 -0.0296671 -0.0411548 +0.0600045 0.00757598 -0.0350496 +0.0288487 0.00426565 -0.0360402 +0.0288487 -0.0294345 -0.0419938 +-0.00219265 0.0314613 5.06058e-06 +-0.0325693 0.0199937 5.0619e-06 +-0.0600045 0.00120284 5.06311e-06 +-0.00219265 0.0286108 -0.0111239 +-0.0325693 0.0174161 -0.00922866 +-0.0600045 -0.000803569 -0.00751532 +-0.00219265 0.0233242 -0.0212067 +-0.0325693 0.0127614 -0.0210954 +-0.0600045 -0.0043111 -0.0209943 +-0.00219265 -0.0302382 -0.0426205 +-0.00219265 0.00110177 -0.0368791 +-0.0325693 -0.00699472 -0.0366871 +-0.0600045 -0.019372 -0.0365152 +-0.0600045 -0.0399469 -0.0415996 +-0.0325693 -0.0339832 -0.0423981 +numsurf 64 +SURF 0x30 +mat 1 +refs 3 +11 0.475468 0.551259 +7 0.639157 0.460855 +3 0.639157 0.578638 +SURF 0x30 +mat 1 +refs 3 +7 0.639157 0.460855 +11 0.475468 0.551259 +14 0.475468 0.44585 +SURF 0x30 +mat 1 +refs 3 +7 0.639157 0.460855 +5 0.80345 0.299929 +4 0.80345 0.476577 +SURF 0x30 +mat 1 +refs 3 +5 0.80345 0.299929 +7 0.639157 0.460855 +6 0.639157 0.301051 +SURF 0x30 +mat 1 +refs 3 +14 0.475468 0.44585 +6 0.639157 0.301051 +7 0.639157 0.460855 +SURF 0x30 +mat 1 +refs 3 +6 0.639157 0.301051 +14 0.475468 0.44585 +15 0.475468 0.297228 +SURF 0x30 +mat 1 +refs 3 +1 0.80345 0.613593 +3 0.639157 0.578638 +2 0.80345 0.588949 +SURF 0x30 +mat 1 +refs 3 +3 0.639157 0.578638 +1 0.80345 0.613593 +0 0.639157 0.603739 +SURF 0x30 +mat 1 +refs 3 +3 0.639157 0.578638 +8 0.475468 0.576325 +11 0.475468 0.551259 +SURF 0x30 +mat 1 +refs 3 +8 0.475468 0.576325 +3 0.639157 0.578638 +0 0.639157 0.603739 +SURF 0x30 +mat 1 +refs 3 +1 0.80345 0.613593 +21 0.639157 0.618917 +0 0.639157 0.603739 +SURF 0x30 +mat 1 +refs 3 +21 0.639157 0.618917 +1 0.80345 0.613593 +20 0.80345 0.630083 +SURF 0x30 +mat 1 +refs 3 +0 0.639157 0.603739 +30 0.475468 0.589838 +8 0.475468 0.576325 +SURF 0x30 +mat 1 +refs 3 +30 0.475468 0.589838 +0 0.639157 0.603739 +21 0.639157 0.618917 +SURF 0x30 +mat 1 +refs 3 +23 0.639157 0.603739 +30 0.475468 0.589838 +21 0.639157 0.618917 +SURF 0x30 +mat 1 +refs 3 +30 0.475468 0.589838 +23 0.639157 0.603739 +33 0.475468 0.576325 +SURF 0x30 +mat 1 +refs 3 +20 0.80345 0.630083 +23 0.639157 0.603739 +21 0.639157 0.618917 +SURF 0x30 +mat 1 +refs 3 +23 0.639157 0.603739 +20 0.80345 0.630083 +22 0.80345 0.613593 +SURF 0x30 +mat 1 +refs 3 +25 0.639157 0.578638 +33 0.475468 0.576325 +23 0.639157 0.603739 +SURF 0x30 +mat 1 +refs 3 +33 0.475468 0.576325 +25 0.639157 0.578638 +36 0.475468 0.551259 +SURF 0x30 +mat 1 +refs 3 +43 0.170637 0.251176 +41 0.315311 0.407461 +44 0.315311 0.279461 +SURF 0x30 +mat 1 +refs 3 +41 0.315311 0.407461 +43 0.170637 0.251176 +42 0.170637 0.348759 +SURF 0x30 +mat 1 +refs 3 +24 0.80345 0.588949 +23 0.639157 0.603739 +22 0.80345 0.613593 +SURF 0x30 +mat 1 +refs 3 +23 0.639157 0.603739 +24 0.80345 0.588949 +25 0.639157 0.578638 +SURF 0x30 +mat 1 +refs 3 +28 0.639157 0.460855 +24 0.80345 0.588949 +27 0.80345 0.476577 +SURF 0x30 +mat 1 +refs 3 +24 0.80345 0.588949 +28 0.639157 0.460855 +25 0.639157 0.578638 +SURF 0x30 +mat 1 +refs 3 +40 0.475468 0.44585 +25 0.639157 0.578638 +28 0.639157 0.460855 +SURF 0x30 +mat 1 +refs 3 +25 0.639157 0.578638 +40 0.475468 0.44585 +36 0.475468 0.551259 +SURF 0x30 +mat 1 +refs 3 +8 0.475468 0.576325 +31 0.315311 0.53546 +10 0.315311 0.523241 +SURF 0x30 +mat 1 +refs 3 +31 0.315311 0.53546 +8 0.475468 0.576325 +30 0.475468 0.589838 +SURF 0x30 +mat 1 +refs 3 +10 0.315311 0.523241 +32 0.170637 0.446342 +9 0.170637 0.436816 +SURF 0x30 +mat 1 +refs 3 +32 0.170637 0.446342 +10 0.315311 0.523241 +31 0.315311 0.53546 +SURF 0x30 +mat 1 +refs 3 +8 0.475468 0.576325 +13 0.315311 0.50116 +11 0.475468 0.551259 +SURF 0x30 +mat 1 +refs 3 +13 0.315311 0.50116 +8 0.475468 0.576325 +10 0.315311 0.523241 +SURF 0x30 +mat 1 +refs 3 +10 0.315311 0.523241 +12 0.170637 0.420197 +13 0.315311 0.50116 +SURF 0x30 +mat 1 +refs 3 +12 0.170637 0.420197 +10 0.315311 0.523241 +9 0.170637 0.436816 +SURF 0x30 +mat 1 +refs 3 +13 0.315311 0.50116 +14 0.475468 0.44585 +11 0.475468 0.551259 +SURF 0x30 +mat 1 +refs 3 +14 0.475468 0.44585 +13 0.315311 0.50116 +19 0.315311 0.407461 +SURF 0x30 +mat 1 +refs 3 +12 0.170637 0.420197 +19 0.315311 0.407461 +13 0.315311 0.50116 +SURF 0x30 +mat 1 +refs 3 +19 0.315311 0.407461 +12 0.170637 0.420197 +18 0.170637 0.348759 +SURF 0x30 +mat 1 +refs 3 +29 0.639157 0.301051 +27 0.80345 0.476577 +26 0.80345 0.299929 +SURF 0x30 +mat 1 +refs 3 +27 0.80345 0.476577 +29 0.639157 0.301051 +28 0.639157 0.460855 +SURF 0x30 +mat 1 +refs 3 +39 0.475468 0.297228 +28 0.639157 0.460855 +29 0.639157 0.301051 +SURF 0x30 +mat 1 +refs 3 +28 0.639157 0.460855 +39 0.475468 0.297228 +40 0.475468 0.44585 +SURF 0x30 +mat 1 +refs 3 +19 0.315311 0.407461 +15 0.475468 0.297228 +14 0.475468 0.44585 +SURF 0x30 +mat 1 +refs 3 +15 0.475468 0.297228 +19 0.315311 0.407461 +16 0.315311 0.279461 +SURF 0x30 +mat 1 +refs 3 +18 0.170637 0.348759 +16 0.315311 0.279461 +19 0.315311 0.407461 +SURF 0x30 +mat 1 +refs 3 +16 0.315311 0.279461 +18 0.170637 0.348759 +17 0.170637 0.251176 +SURF 0x30 +mat 1 +refs 3 +44 0.315311 0.279461 +40 0.475468 0.44585 +39 0.475468 0.297228 +SURF 0x30 +mat 1 +refs 3 +40 0.475468 0.44585 +44 0.315311 0.279461 +41 0.315311 0.407461 +SURF 0x30 +mat 1 +refs 3 +42 0.170637 0.348759 +37 0.315311 0.50116 +41 0.315311 0.407461 +SURF 0x30 +mat 1 +refs 3 +37 0.315311 0.50116 +42 0.170637 0.348759 +38 0.170637 0.420197 +SURF 0x30 +mat 1 +refs 3 +41 0.315311 0.407461 +36 0.475468 0.551259 +40 0.475468 0.44585 +SURF 0x30 +mat 1 +refs 3 +36 0.475468 0.551259 +41 0.315311 0.407461 +37 0.315311 0.50116 +SURF 0x30 +mat 1 +refs 3 +34 0.315311 0.523241 +38 0.170637 0.420197 +35 0.170637 0.436816 +SURF 0x30 +mat 1 +refs 3 +38 0.170637 0.420197 +34 0.315311 0.523241 +37 0.315311 0.50116 +SURF 0x30 +mat 1 +refs 3 +33 0.475468 0.576325 +37 0.315311 0.50116 +34 0.315311 0.523241 +SURF 0x30 +mat 1 +refs 3 +37 0.315311 0.50116 +33 0.475468 0.576325 +36 0.475468 0.551259 +SURF 0x30 +mat 1 +refs 3 +31 0.315311 0.53546 +35 0.170637 0.436816 +32 0.170637 0.446342 +SURF 0x30 +mat 1 +refs 3 +35 0.170637 0.436816 +31 0.315311 0.53546 +34 0.315311 0.523241 +SURF 0x30 +mat 1 +refs 3 +30 0.475468 0.589838 +34 0.315311 0.523241 +31 0.315311 0.53546 +SURF 0x30 +mat 1 +refs 3 +34 0.315311 0.523241 +30 0.475468 0.589838 +33 0.475468 0.576325 +SURF 0x30 +mat 1 +refs 3 +3 0.639157 0.578638 +4 0.80345 0.476577 +2 0.80345 0.588949 +SURF 0x30 +mat 1 +refs 3 +4 0.80345 0.476577 +3 0.639157 0.578638 +7 0.639157 0.460855 +kids 0 +OBJECT poly +name "Motor" +loc 0.216255 0.0405103 0 +crease 45.000000 +numvert 34 +-0.0161203 -0.00284296 -5.27816e-09 +0.016128 0.00284273 -6.68762e-09 +-0.0179617 0.00758336 0.00438688 +0.0142868 0.013269 0.00438688 +-0.0175338 0.00513703 0.00810161 +0.0147223 0.0108235 0.00810161 +-0.0168844 0.00147822 0.0105881 +0.0153641 0.00716391 0.0105881 +-0.0161203 -0.00284296 0.0114625 +0.016128 0.00284273 0.0114625 +-0.015364 -0.0071591 0.0105881 +0.0168845 -0.00147311 0.0105881 +-0.0147147 -0.0108232 0.00810161 +0.0175339 -0.00513756 0.00810161 +-0.0142791 -0.0132694 0.00438688 +0.0179617 -0.00758364 0.00438688 +-0.0141263 -0.0141285 -5.36519e-09 +0.0181144 -0.00844277 -6.77466e-09 +-0.0142791 -0.0132694 -0.00438689 +0.0179617 -0.00758364 -0.00438689 +-0.0147147 -0.0108232 -0.00810161 +0.0175339 -0.00513756 -0.00810161 +-0.015364 -0.0071591 -0.0105881 +0.0168845 -0.00147311 -0.0105881 +-0.0161203 -0.00284296 -0.0114625 +0.016128 0.00284273 -0.0114625 +-0.0168844 0.00147822 -0.0105881 +0.0153641 0.00716391 -0.0105881 +-0.0175338 0.00513703 -0.00810161 +0.0147223 0.0108235 -0.00810161 +-0.0181144 0.00844285 -5.19113e-09 +-0.0179617 0.00758336 -0.00438689 +0.0142868 0.013269 -0.00438689 +0.014134 0.0141285 -6.60059e-09 +numsurf 64 +SURF 0x30 +mat 1 +refs 3 +0 0.46875 0 +16 0.5 0 +14 0.4375 0 +SURF 0x30 +mat 1 +refs 3 +0 0.40625 0 +14 0.4375 0 +12 0.375 0 +SURF 0x30 +mat 1 +refs 3 +1 0.84375 1 +27 0.8125 1 +29 0.875 1 +SURF 0x30 +mat 1 +refs 3 +0 0.34375 0 +12 0.375 0 +10 0.3125 0 +SURF 0x30 +mat 1 +refs 3 +0 0.28125 0 +10 0.3125 0 +8 0.25 0 +SURF 0x30 +mat 1 +refs 3 +0 0.21875 0 +8 0.25 0 +6 0.1875 0 +SURF 0x30 +mat 1 +refs 3 +0 0.15625 0 +6 0.1875 0 +4 0.125 0 +SURF 0x30 +mat 1 +refs 3 +0 0.09375 0 +4 0.125 0 +2 0.0625 0 +SURF 0x30 +mat 1 +refs 3 +0 0.03125 0 +2 0.0625 0 +30 0 0 +SURF 0x30 +mat 1 +refs 3 +1 0.90625 1 +29 0.875 1 +32 0.9375 1 +SURF 0x30 +mat 1 +refs 3 +1 0.96875 1 +32 0.9375 1 +33 1 1 +SURF 0x30 +mat 1 +refs 3 +1 0.78125 1 +25 0.75 1 +27 0.8125 1 +SURF 0x30 +mat 1 +refs 3 +1 0.71875 1 +23 0.6875 1 +25 0.75 1 +SURF 0x30 +mat 1 +refs 3 +0 0.65625 0 +22 0.6875 0 +20 0.625 0 +SURF 0x30 +mat 1 +refs 3 +0 0.71875 0 +24 0.75 0 +22 0.6875 0 +SURF 0x30 +mat 1 +refs 3 +0 0.78125 0 +26 0.8125 0 +24 0.75 0 +SURF 0x30 +mat 1 +refs 3 +0 0.84375 0 +28 0.875 0 +26 0.8125 0 +SURF 0x30 +mat 1 +refs 3 +1 0.65625 1 +21 0.625 1 +23 0.6875 1 +SURF 0x30 +mat 1 +refs 3 +1 0.59375 1 +19 0.5625 1 +21 0.625 1 +SURF 0x30 +mat 1 +refs 3 +1 0.53125 1 +17 0.5 1 +19 0.5625 1 +SURF 0x30 +mat 1 +refs 3 +1 0.46875 1 +15 0.4375 1 +17 0.5 1 +SURF 0x30 +mat 1 +refs 3 +1 0.40625 1 +13 0.375 1 +15 0.4375 1 +SURF 0x30 +mat 1 +refs 3 +1 0.34375 1 +11 0.3125 1 +13 0.375 1 +SURF 0x30 +mat 1 +refs 3 +1 0.28125 1 +9 0.25 1 +11 0.3125 1 +SURF 0x30 +mat 1 +refs 3 +1 0.21875 1 +7 0.1875 1 +9 0.25 1 +SURF 0x30 +mat 1 +refs 3 +1 0.15625 1 +5 0.125 1 +7 0.1875 1 +SURF 0x30 +mat 1 +refs 3 +1 0.09375 1 +3 0.0625 1 +5 0.125 1 +SURF 0x30 +mat 1 +refs 3 +0 0.90625 0 +31 0.9375 0 +28 0.875 0 +SURF 0x30 +mat 1 +refs 3 +1 0.03125 1 +33 0 1 +3 0.0625 1 +SURF 0x30 +mat 1 +refs 3 +0 0.96875 0 +30 1 0 +31 0.9375 0 +SURF 0x30 +mat 1 +refs 3 +0 0.59375 0 +20 0.625 0 +18 0.5625 0 +SURF 0x30 +mat 1 +refs 3 +0 0.53125 0 +18 0.5625 0 +16 0.5 0 +SURF 0x30 +mat 1 +refs 3 +32 0.9375 1 +30 1 0 +33 1 1 +SURF 0x30 +mat 1 +refs 3 +30 1 0 +32 0.9375 1 +31 0.9375 0 +SURF 0x30 +mat 1 +refs 3 +29 0.875 1 +31 0.9375 0 +32 0.9375 1 +SURF 0x30 +mat 1 +refs 3 +31 0.9375 0 +29 0.875 1 +28 0.875 0 +SURF 0x30 +mat 1 +refs 3 +3 0.0625 1 +30 0 0 +2 0.0625 0 +SURF 0x30 +mat 1 +refs 3 +30 0 0 +3 0.0625 1 +33 0 1 +SURF 0x30 +mat 1 +refs 3 +26 0.8125 0 +29 0.875 1 +27 0.8125 1 +SURF 0x30 +mat 1 +refs 3 +29 0.875 1 +26 0.8125 0 +28 0.875 0 +SURF 0x30 +mat 1 +refs 3 +24 0.75 0 +27 0.8125 1 +25 0.75 1 +SURF 0x30 +mat 1 +refs 3 +27 0.8125 1 +24 0.75 0 +26 0.8125 0 +SURF 0x30 +mat 1 +refs 3 +3 0.0625 1 +4 0.125 0 +5 0.125 1 +SURF 0x30 +mat 1 +refs 3 +4 0.125 0 +3 0.0625 1 +2 0.0625 0 +SURF 0x30 +mat 1 +refs 3 +5 0.125 1 +6 0.1875 0 +7 0.1875 1 +SURF 0x30 +mat 1 +refs 3 +6 0.1875 0 +5 0.125 1 +4 0.125 0 +SURF 0x30 +mat 1 +refs 3 +7 0.1875 1 +8 0.25 0 +9 0.25 1 +SURF 0x30 +mat 1 +refs 3 +8 0.25 0 +7 0.1875 1 +6 0.1875 0 +SURF 0x30 +mat 1 +refs 3 +9 0.25 1 +10 0.3125 0 +11 0.3125 1 +SURF 0x30 +mat 1 +refs 3 +10 0.3125 0 +9 0.25 1 +8 0.25 0 +SURF 0x30 +mat 1 +refs 3 +11 0.3125 1 +12 0.375 0 +13 0.375 1 +SURF 0x30 +mat 1 +refs 3 +12 0.375 0 +11 0.3125 1 +10 0.3125 0 +SURF 0x30 +mat 1 +refs 3 +14 0.4375 0 +13 0.375 1 +12 0.375 0 +SURF 0x30 +mat 1 +refs 3 +13 0.375 1 +14 0.4375 0 +15 0.4375 1 +SURF 0x30 +mat 1 +refs 3 +16 0.5 0 +15 0.4375 1 +14 0.4375 0 +SURF 0x30 +mat 1 +refs 3 +15 0.4375 1 +16 0.5 0 +17 0.5 1 +SURF 0x30 +mat 1 +refs 3 +22 0.6875 0 +25 0.75 1 +23 0.6875 1 +SURF 0x30 +mat 1 +refs 3 +25 0.75 1 +22 0.6875 0 +24 0.75 0 +SURF 0x30 +mat 1 +refs 3 +20 0.625 0 +23 0.6875 1 +21 0.625 1 +SURF 0x30 +mat 1 +refs 3 +23 0.6875 1 +20 0.625 0 +22 0.6875 0 +SURF 0x30 +mat 1 +refs 3 +18 0.5625 0 +17 0.5 1 +16 0.5 0 +SURF 0x30 +mat 1 +refs 3 +17 0.5 1 +18 0.5625 0 +19 0.5625 1 +SURF 0x30 +mat 1 +refs 3 +20 0.625 0 +19 0.5625 1 +18 0.5625 0 +SURF 0x30 +mat 1 +refs 3 +19 0.5625 1 +20 0.625 0 +21 0.625 1 +kids 0 +OBJECT poly +name "RHStab" +loc 0.611241 -0.0385599 0 +texture "wing.jpg" +crease 45.000000 +numvert 157 +-0.023587 2.45869e-06 -0.203328 +-0.0208226 -0.00193818 -0.203328 +-0.0337859 -0.00204939 -0.172979 +-0.0369751 2.45869e-06 -0.172979 +-0.0129432 -0.00358083 -0.203328 +-0.0247142 -0.00379304 -0.172979 +-0.00115746 -0.00468258 -0.203328 +-0.0111339 -0.00495544 -0.172979 +0.0110127 -0.00506664 -0.203328 +0.00535738 -0.00535982 -0.172979 +0.0249213 -0.00468258 -0.203328 +0.0213733 -0.00495544 -0.172979 +0.0367073 -0.00358083 -0.203328 +0.0349536 -0.00379304 -0.172979 +0.0445866 -0.00193818 -0.203328 +0.0440307 -0.00204939 -0.172979 +0.0473511 2.45869e-06 -0.203328 +0.0472147 2.45869e-06 -0.172979 +0.0445866 0.00193818 -0.203328 +0.0440307 0.00205439 -0.172979 +0.0367073 0.00358575 -0.203328 +0.0349536 0.00379304 -0.172979 +0.0249213 0.00468258 -0.203328 +0.0110127 0.00506664 -0.203328 +-0.00115746 0.00468258 -0.203328 +-0.0129432 0.00358575 -0.203328 +-0.0247142 0.00379304 -0.172979 +-0.0208226 0.00193818 -0.203328 +-0.0337859 0.00205439 -0.172979 +-0.0430905 -0.00222635 -0.135998 +-0.04678 2.45869e-06 -0.135998 +-0.0325781 -0.00411654 -0.135998 +-0.0168449 -0.00538003 -0.135998 +0 -0.00581965 -0.135998 +0.0185533 -0.00538003 -0.135998 +-0.0325781 0.00411645 -0.135998 +-0.0430905 0.00222635 -0.135998 +-0.0473561 -0.00236778 -0.0938077 +-0.0512577 2.45869e-06 -0.0938077 +-0.0362474 -0.00437428 -0.0938077 +-0.0196146 -0.00571364 -0.0938077 +0 -0.00618359 -0.0938077 +0.0196145 -0.00571364 -0.0938077 +-0.0362474 0.00437428 -0.0938077 +-0.0473561 0.00236788 -0.0938077 +-0.0480132 -0.00251433 -0.0480283 +-0.0520108 2.45869e-06 -0.0480283 +-0.0366212 -0.00464214 -0.0480283 +-0.0195743 -0.00606738 -0.0480283 +0.000535786 -0.00656265 -0.0480283 +0.0206457 -0.00606738 -0.0480283 +-0.0366212 0.00464205 -0.0480283 +-0.0480132 0.00251433 -0.0480283 +-0.0494989 -0.00255987 1.5141e-05 +-0.0535775 2.45869e-06 1.51411e-05 +-0.0378848 -0.00473313 1.51405e-05 +-0.0205042 -0.00618359 1.51397e-05 +0 -0.00669398 1.51388e-05 +0.0205041 -0.00618359 1.51379e-05 +-0.0378848 0.00473303 1.51405e-05 +-0.0494989 0.00256487 1.5141e-05 +0.0186798 -0.00130138 -0.232929 +0.00396246 -0.00158955 -0.225879 +0.00205696 2.45869e-06 -0.225879 +0.0173808 2.45869e-06 -0.232929 +0.0309811 2.45869e-06 -0.237781 +0.0317544 -0.00110429 -0.237781 +0.0223894 -0.00240323 -0.232929 +0.00939041 -0.00293892 -0.225879 +0.033953 -0.00203929 -0.237781 +0.0279334 -0.00314613 -0.232929 +0.017507 -0.00383857 -0.225879 +0.0372431 -0.00266606 -0.237781 +0.0344786 -0.00340387 -0.232929 +0.0270894 -0.00415698 -0.225879 +0.0411245 -0.00288338 -0.237781 +0.042747 -0.00314613 -0.232929 +0.0366668 -0.00383857 -0.225879 +0.0454862 -0.00266606 -0.237781 +0.0482912 -0.00240323 -0.232929 +0.0447838 -0.00293892 -0.225879 +0.0487763 -0.00203929 -0.237781 +0.0519957 -0.00130138 -0.232929 +0.0502116 -0.00158955 -0.225879 +0.0509749 -0.00110429 -0.237781 +0.0532997 2.45869e-06 -0.232929 +0.0521171 2.45869e-06 -0.225879 +0.0517482 2.45869e-06 -0.237781 +0.0519957 0.00130139 -0.232929 +0.0502116 0.00158946 -0.225879 +0.0509749 0.00110429 -0.237781 +0.0482912 0.00240823 -0.232929 +0.0447838 0.00293892 -0.225879 +0.0487763 0.00203929 -0.237781 +0.042747 0.00314613 -0.232929 +0.0366668 0.00383857 -0.225879 +0.0454862 0.00266597 -0.237781 +0.0344786 0.00340387 -0.232929 +0.0270894 0.00415689 -0.225879 +0.0411245 0.00288838 -0.237781 +0.0279334 0.00314613 -0.232929 +0.017507 0.00383857 -0.225879 +0.0372431 0.00266597 -0.237781 +0.0223894 0.00240823 -0.232929 +0.00939041 0.00293892 -0.225879 +0.033953 0.00203929 -0.237781 +0.0186798 0.00130139 -0.232929 +0.00396246 0.00158946 -0.225879 +0.0317544 0.00110429 -0.237781 +0.04024 2.45869e-06 -0.240021 +0.0470681 2.45869e-06 -0.241016 +0.0405989 -0.000513028 -0.240021 +0.0416248 -0.000947639 -0.240021 +0.0431563 -0.00124073 -0.240021 +0.0449657 -0.00134693 -0.240021 +0.0467749 -0.00124073 -0.240021 +0.0483114 -0.000947639 -0.240021 +0.0493323 -0.000513028 -0.240021 +0.0496962 2.45869e-06 -0.240021 +0.0493323 0.000513032 -0.240021 +0.0483114 0.000952747 -0.240021 +0.0467749 0.00124073 -0.240021 +0.0449657 0.00134693 -0.240021 +0.0431613 0.00124073 -0.240021 +0.0416248 0.000952747 -0.240021 +0.0405989 0.000513032 -0.240021 +-0.0102748 -0.0017462 -0.21565 +-0.0125743 2.45869e-06 -0.21565 +-0.00373995 -0.00323201 -0.21565 +0.00604463 -0.00422264 -0.21565 +0.0191649 -0.00456628 -0.21565 +0.0313348 -0.00422264 -0.21565 +0.0411194 -0.00323201 -0.21565 +0.0476593 -0.0017462 -0.21565 +0.0499538 2.45869e-06 -0.21565 +0.0476593 0.00175121 -0.21565 +0.0411194 0.00323201 -0.21565 +0.0313348 0.00422264 -0.21565 +0.0191649 0.00457137 -0.21565 +0.00604463 0.00422264 -0.21565 +-0.00373995 0.00323201 -0.21565 +-0.0102748 0.00175121 -0.21565 +-0.0205042 0.00618359 1.51397e-05 +0.0205041 0.00618359 1.51379e-05 +0 0.00669398 1.51388e-05 +-0.0195743 0.00606729 -0.0480283 +0.0206457 0.00606729 -0.0480283 +0.000535786 0.00656767 -0.0480283 +-0.0196146 0.00571356 -0.0938077 +0.0196145 0.00571356 -0.0938077 +0 0.00618359 -0.0938077 +-0.0168449 0.00537995 -0.135998 +-0.0111339 0.00495544 -0.172979 +0.0185533 0.00537995 -0.135998 +0 0.00582476 -0.135998 +0.00535738 0.00536482 -0.172979 +0.0213733 0.00495544 -0.172979 +numsurf 288 +SURF 0x30 +mat 1 +refs 3 +2 0.597622 0.838697 +0 0.65137 0.822626 +1 0.65137 0.818269 +SURF 0x30 +mat 1 +refs 3 +0 0.65137 0.822626 +2 0.597622 0.838697 +3 0.597622 0.843722 +SURF 0x30 +mat 1 +refs 3 +5 0.597622 0.824402 +1 0.65137 0.818269 +4 0.65137 0.805853 +SURF 0x30 +mat 1 +refs 3 +1 0.65137 0.818269 +5 0.597622 0.824402 +2 0.597622 0.838697 +SURF 0x30 +mat 1 +refs 3 +7 0.597622 0.696335 +4 0.65137 0.699187 +6 0.65137 0.680614 +SURF 0x30 +mat 1 +refs 3 +4 0.65137 0.805853 +7 0.597622 0.803002 +5 0.597622 0.824402 +SURF 0x30 +mat 1 +refs 3 +9 0.597622 0.670348 +6 0.65137 0.680614 +8 0.65137 0.661437 +SURF 0x30 +mat 1 +refs 3 +6 0.65137 0.680614 +9 0.597622 0.670348 +7 0.597622 0.696335 +SURF 0x30 +mat 1 +refs 3 +11 0.597622 0.645111 +8 0.65137 0.661437 +10 0.65137 0.63952 +SURF 0x30 +mat 1 +refs 3 +8 0.65137 0.661437 +11 0.597622 0.645111 +9 0.597622 0.670348 +SURF 0x30 +mat 1 +refs 3 +13 0.597622 0.623711 +10 0.65137 0.63952 +12 0.65137 0.620947 +SURF 0x30 +mat 1 +refs 3 +10 0.65137 0.63952 +13 0.597622 0.623711 +11 0.597622 0.645111 +SURF 0x30 +mat 1 +refs 3 +15 0.597622 0.716074 +12 0.65137 0.727614 +14 0.65137 0.715198 +SURF 0x30 +mat 1 +refs 3 +12 0.65137 0.727614 +15 0.597622 0.716074 +13 0.597622 0.730377 +SURF 0x30 +mat 1 +refs 3 +17 0.597622 0.711056 +14 0.65137 0.715198 +16 0.65137 0.710842 +SURF 0x30 +mat 1 +refs 3 +14 0.65137 0.715198 +17 0.597622 0.711056 +15 0.597622 0.716074 +SURF 0x30 +mat 1 +refs 3 +19 0.597622 0.716074 +16 0.65137 0.710842 +18 0.65137 0.715198 +SURF 0x30 +mat 1 +refs 3 +16 0.65137 0.710842 +19 0.597622 0.716074 +17 0.597622 0.711056 +SURF 0x30 +mat 1 +refs 3 +21 0.597622 0.730377 +18 0.65137 0.715198 +20 0.65137 0.727614 +SURF 0x30 +mat 1 +refs 3 +18 0.65137 0.715198 +21 0.597622 0.730377 +19 0.597622 0.716074 +SURF 0x30 +mat 1 +refs 3 +156 0.597622 0.751777 +20 0.65137 0.727614 +22 0.65137 0.746186 +SURF 0x30 +mat 1 +refs 3 +20 0.65137 0.727614 +156 0.597622 0.751777 +21 0.597622 0.730377 +SURF 0x30 +mat 1 +refs 3 +155 0.597622 0.777015 +22 0.65137 0.746186 +23 0.65137 0.768103 +SURF 0x30 +mat 1 +refs 3 +22 0.65137 0.746186 +155 0.597622 0.777015 +156 0.597622 0.751777 +SURF 0x30 +mat 1 +refs 3 +152 0.597622 0.803002 +23 0.65137 0.768103 +24 0.65137 0.787281 +SURF 0x30 +mat 1 +refs 3 +23 0.65137 0.768103 +152 0.597622 0.803002 +155 0.597622 0.777015 +SURF 0x30 +mat 1 +refs 3 +26 0.597622 0.824402 +24 0.65137 0.787281 +25 0.65137 0.805853 +SURF 0x30 +mat 1 +refs 3 +24 0.65137 0.787281 +26 0.597622 0.824402 +152 0.597622 0.803002 +SURF 0x30 +mat 1 +refs 3 +28 0.597622 0.838697 +25 0.65137 0.805853 +27 0.65137 0.818269 +SURF 0x30 +mat 1 +refs 3 +25 0.65137 0.805853 +28 0.597622 0.838697 +26 0.597622 0.824402 +SURF 0x30 +mat 1 +refs 3 +3 0.597622 0.843722 +27 0.65137 0.818269 +0 0.65137 0.822626 +SURF 0x30 +mat 1 +refs 3 +27 0.65137 0.818269 +3 0.597622 0.843722 +28 0.597622 0.838697 +SURF 0x30 +mat 1 +refs 3 +29 0.532131 0.853359 +3 0.597622 0.843722 +2 0.597622 0.838697 +SURF 0x30 +mat 1 +refs 3 +3 0.597622 0.843722 +29 0.532131 0.853359 +30 0.532131 0.859173 +SURF 0x30 +mat 1 +refs 3 +31 0.532131 0.836794 +2 0.597622 0.838697 +5 0.597622 0.824402 +SURF 0x30 +mat 1 +refs 3 +2 0.597622 0.838697 +31 0.532131 0.836794 +29 0.532131 0.853359 +SURF 0x30 +mat 1 +refs 3 +32 0.532131 0.812002 +5 0.597622 0.824402 +7 0.597622 0.803002 +SURF 0x30 +mat 1 +refs 3 +5 0.597622 0.824402 +32 0.532131 0.812002 +31 0.532131 0.836794 +SURF 0x30 +mat 1 +refs 3 +33 0.532131 0.67879 +7 0.597622 0.696335 +9 0.597622 0.670348 +SURF 0x30 +mat 1 +refs 3 +7 0.597622 0.696335 +33 0.532131 0.67879 +32 0.532131 0.705335 +SURF 0x30 +mat 1 +refs 3 +34 0.532131 0.649554 +9 0.597622 0.670348 +11 0.597622 0.645111 +SURF 0x30 +mat 1 +refs 3 +9 0.597622 0.670348 +34 0.532131 0.649554 +33 0.532131 0.67879 +SURF 0x30 +mat 1 +refs 3 +35 0.532131 0.836794 +152 0.597622 0.803002 +26 0.597622 0.824402 +SURF 0x30 +mat 1 +refs 3 +152 0.597622 0.803002 +35 0.532131 0.836794 +151 0.532131 0.812002 +SURF 0x30 +mat 1 +refs 3 +36 0.532131 0.853359 +26 0.597622 0.824402 +28 0.597622 0.838697 +SURF 0x30 +mat 1 +refs 3 +26 0.597622 0.824402 +36 0.532131 0.853359 +35 0.532131 0.836794 +SURF 0x30 +mat 1 +refs 3 +30 0.532131 0.859173 +28 0.597622 0.838697 +3 0.597622 0.843722 +SURF 0x30 +mat 1 +refs 3 +28 0.597622 0.838697 +30 0.532131 0.859173 +36 0.532131 0.853359 +SURF 0x30 +mat 1 +refs 3 +37 0.457413 0.860081 +30 0.532131 0.859173 +29 0.532131 0.853359 +SURF 0x30 +mat 1 +refs 3 +30 0.532131 0.859173 +37 0.457413 0.860081 +38 0.457413 0.866229 +SURF 0x30 +mat 1 +refs 3 +39 0.457413 0.842576 +29 0.532131 0.853359 +31 0.532131 0.836794 +SURF 0x30 +mat 1 +refs 3 +29 0.532131 0.853359 +39 0.457413 0.842576 +37 0.457413 0.860081 +SURF 0x30 +mat 1 +refs 3 +40 0.457413 0.816366 +31 0.532131 0.836794 +32 0.532131 0.812002 +SURF 0x30 +mat 1 +refs 3 +31 0.532131 0.836794 +40 0.457413 0.816366 +39 0.457413 0.842576 +SURF 0x30 +mat 1 +refs 3 +41 0.457413 0.67879 +32 0.532131 0.705335 +33 0.532131 0.67879 +SURF 0x30 +mat 1 +refs 3 +32 0.532131 0.705335 +41 0.457413 0.67879 +40 0.457413 0.709699 +SURF 0x30 +mat 1 +refs 3 +42 0.457413 0.647882 +33 0.532131 0.67879 +34 0.532131 0.649554 +SURF 0x30 +mat 1 +refs 3 +33 0.532131 0.67879 +42 0.457413 0.647882 +41 0.457413 0.67879 +SURF 0x30 +mat 1 +refs 3 +43 0.457413 0.842576 +151 0.532131 0.812002 +35 0.532131 0.836794 +SURF 0x30 +mat 1 +refs 3 +151 0.532131 0.812002 +43 0.457413 0.842576 +148 0.457413 0.816366 +SURF 0x30 +mat 1 +refs 3 +44 0.457413 0.860081 +35 0.532131 0.836794 +36 0.532131 0.853359 +SURF 0x30 +mat 1 +refs 3 +35 0.532131 0.836794 +44 0.457413 0.860081 +43 0.457413 0.842576 +SURF 0x30 +mat 1 +refs 3 +38 0.457413 0.866229 +36 0.532131 0.853359 +30 0.532131 0.859173 +SURF 0x30 +mat 1 +refs 3 +36 0.532131 0.853359 +38 0.457413 0.866229 +44 0.457413 0.860081 +SURF 0x30 +mat 1 +refs 3 +45 0.376339 0.861116 +38 0.457413 0.866229 +37 0.457413 0.860081 +SURF 0x30 +mat 1 +refs 3 +38 0.457413 0.866229 +45 0.376339 0.861116 +46 0.376339 0.867416 +SURF 0x30 +mat 1 +refs 3 +47 0.376339 0.843165 +37 0.457413 0.860081 +39 0.457413 0.842576 +SURF 0x30 +mat 1 +refs 3 +37 0.457413 0.860081 +47 0.376339 0.843165 +45 0.376339 0.861116 +SURF 0x30 +mat 1 +refs 3 +48 0.376339 0.816302 +39 0.457413 0.842576 +40 0.457413 0.816366 +SURF 0x30 +mat 1 +refs 3 +39 0.457413 0.842576 +48 0.376339 0.816302 +47 0.376339 0.843165 +SURF 0x30 +mat 1 +refs 3 +49 0.376339 0.677946 +40 0.457413 0.709699 +41 0.457413 0.67879 +SURF 0x30 +mat 1 +refs 3 +40 0.457413 0.709699 +49 0.376339 0.677946 +48 0.376339 0.709636 +SURF 0x30 +mat 1 +refs 3 +50 0.376339 0.646257 +41 0.457413 0.67879 +42 0.457413 0.647882 +SURF 0x30 +mat 1 +refs 3 +41 0.457413 0.67879 +50 0.376339 0.646257 +49 0.376339 0.677946 +SURF 0x30 +mat 1 +refs 3 +51 0.376339 0.843165 +148 0.457413 0.816366 +43 0.457413 0.842576 +SURF 0x30 +mat 1 +refs 3 +148 0.457413 0.816366 +51 0.376339 0.843165 +145 0.376339 0.816302 +SURF 0x30 +mat 1 +refs 3 +52 0.376339 0.861116 +43 0.457413 0.842576 +44 0.457413 0.860081 +SURF 0x30 +mat 1 +refs 3 +43 0.457413 0.842576 +52 0.376339 0.861116 +51 0.376339 0.843165 +SURF 0x30 +mat 1 +refs 3 +46 0.376339 0.867416 +44 0.457413 0.860081 +38 0.457413 0.866229 +SURF 0x30 +mat 1 +refs 3 +44 0.457413 0.860081 +46 0.376339 0.867416 +52 0.376339 0.861116 +SURF 0x30 +mat 1 +refs 3 +53 0.240106 0.739498 +46 0.309018 0.743573 +45 0.309018 0.737087 +SURF 0x30 +mat 1 +refs 3 +46 0.309018 0.743573 +53 0.240106 0.739498 +54 0.240106 0.746115 +SURF 0x30 +mat 1 +refs 3 +55 0.240106 0.720655 +45 0.309018 0.737087 +47 0.309018 0.718605 +SURF 0x30 +mat 1 +refs 3 +45 0.309018 0.737087 +55 0.240106 0.720655 +53 0.240106 0.739498 +SURF 0x30 +mat 1 +refs 3 +56 0.240106 0.692456 +47 0.309018 0.718605 +48 0.309018 0.690947 +SURF 0x30 +mat 1 +refs 3 +47 0.309018 0.718605 +56 0.240106 0.692456 +55 0.240106 0.720655 +SURF 0x30 +mat 1 +refs 3 +57 0.240106 0.659189 +48 0.309018 0.690947 +49 0.309018 0.65832 +SURF 0x30 +mat 1 +refs 3 +48 0.309018 0.690947 +57 0.240106 0.659189 +56 0.240106 0.692456 +SURF 0x30 +mat 1 +refs 3 +58 0.240106 0.625924 +49 0.309018 0.65832 +50 0.309018 0.625694 +SURF 0x30 +mat 1 +refs 3 +49 0.309018 0.65832 +58 0.240106 0.625924 +57 0.240106 0.659189 +SURF 0x30 +mat 1 +refs 3 +59 0.240106 0.720655 +145 0.309018 0.690947 +51 0.309018 0.718605 +SURF 0x30 +mat 1 +refs 3 +145 0.309018 0.690947 +59 0.240106 0.720655 +142 0.240106 0.692456 +SURF 0x30 +mat 1 +refs 3 +60 0.240106 0.739498 +51 0.309018 0.718605 +52 0.309018 0.737087 +SURF 0x30 +mat 1 +refs 3 +51 0.309018 0.718605 +60 0.240106 0.739498 +59 0.240106 0.720655 +SURF 0x30 +mat 1 +refs 3 +54 0.240106 0.746115 +52 0.309018 0.737087 +46 0.309018 0.743573 +SURF 0x30 +mat 1 +refs 3 +52 0.309018 0.737087 +54 0.240106 0.746115 +60 0.240106 0.739498 +SURF 0x30 +mat 1 +refs 3 +64 0.703793 0.758069 +62 0.691307 0.779213 +63 0.691307 0.782216 +SURF 0x30 +mat 1 +refs 3 +62 0.691307 0.779213 +64 0.703793 0.758069 +61 0.703793 0.756022 +SURF 0x30 +mat 1 +refs 3 +65 0.712385 0.736637 +61 0.703793 0.756022 +64 0.703793 0.758069 +SURF 0x30 +mat 1 +refs 3 +61 0.703793 0.756022 +65 0.712385 0.736637 +66 0.712385 0.735419 +SURF 0x30 +mat 1 +refs 3 +68 0.691307 0.77066 +61 0.703793 0.756022 +67 0.703793 0.750176 +SURF 0x30 +mat 1 +refs 3 +61 0.703793 0.756022 +68 0.691307 0.77066 +62 0.691307 0.779213 +SURF 0x30 +mat 1 +refs 3 +67 0.703793 0.750176 +66 0.712385 0.735419 +69 0.712385 0.731954 +SURF 0x30 +mat 1 +refs 3 +66 0.712385 0.735419 +67 0.703793 0.750176 +61 0.703793 0.756022 +SURF 0x30 +mat 1 +refs 3 +71 0.691307 0.75787 +67 0.703793 0.750176 +70 0.703793 0.74144 +SURF 0x30 +mat 1 +refs 3 +67 0.703793 0.750176 +71 0.691307 0.75787 +68 0.691307 0.77066 +SURF 0x30 +mat 1 +refs 3 +70 0.703793 0.74144 +69 0.712385 0.731954 +72 0.712385 0.72677 +SURF 0x30 +mat 1 +refs 3 +69 0.712385 0.731954 +70 0.703793 0.74144 +67 0.703793 0.750176 +SURF 0x30 +mat 1 +refs 3 +74 0.691307 0.74277 +70 0.703793 0.74144 +73 0.703793 0.731126 +SURF 0x30 +mat 1 +refs 3 +70 0.703793 0.74144 +74 0.691307 0.74277 +71 0.691307 0.75787 +SURF 0x30 +mat 1 +refs 3 +73 0.703793 0.731126 +72 0.712385 0.72677 +75 0.712385 0.720653 +SURF 0x30 +mat 1 +refs 3 +72 0.712385 0.72677 +73 0.703793 0.731126 +70 0.703793 0.74144 +SURF 0x30 +mat 1 +refs 3 +77 0.691307 0.727678 +73 0.703793 0.731126 +76 0.703793 0.718097 +SURF 0x30 +mat 1 +refs 3 +73 0.703793 0.731126 +77 0.691307 0.727678 +74 0.691307 0.74277 +SURF 0x30 +mat 1 +refs 3 +76 0.703793 0.718097 +75 0.712385 0.720653 +78 0.712385 0.71378 +SURF 0x30 +mat 1 +refs 3 +75 0.712385 0.720653 +76 0.703793 0.718097 +73 0.703793 0.731126 +SURF 0x30 +mat 1 +refs 3 +80 0.691307 0.714887 +76 0.703793 0.718097 +79 0.703793 0.70936 +SURF 0x30 +mat 1 +refs 3 +76 0.703793 0.718097 +80 0.691307 0.714887 +77 0.691307 0.727678 +SURF 0x30 +mat 1 +refs 3 +79 0.703793 0.70936 +78 0.712385 0.71378 +81 0.712385 0.708596 +SURF 0x30 +mat 1 +refs 3 +78 0.712385 0.71378 +79 0.703793 0.70936 +76 0.703793 0.718097 +SURF 0x30 +mat 1 +refs 3 +83 0.691307 0.706334 +79 0.703793 0.70936 +82 0.703793 0.703523 +SURF 0x30 +mat 1 +refs 3 +79 0.703793 0.70936 +83 0.691307 0.706334 +80 0.691307 0.714887 +SURF 0x30 +mat 1 +refs 3 +82 0.703793 0.703523 +81 0.712385 0.708596 +84 0.712385 0.705131 +SURF 0x30 +mat 1 +refs 3 +81 0.712385 0.708596 +82 0.703793 0.703523 +79 0.703793 0.70936 +SURF 0x30 +mat 1 +refs 3 +86 0.691307 0.703331 +82 0.703793 0.703523 +85 0.703793 0.701468 +SURF 0x30 +mat 1 +refs 3 +82 0.703793 0.703523 +86 0.691307 0.703331 +83 0.691307 0.706334 +SURF 0x30 +mat 1 +refs 3 +85 0.703793 0.701468 +84 0.712385 0.705131 +87 0.712385 0.703913 +SURF 0x30 +mat 1 +refs 3 +84 0.712385 0.705131 +85 0.703793 0.701468 +82 0.703793 0.703523 +SURF 0x30 +mat 1 +refs 3 +89 0.691307 0.706334 +85 0.703793 0.701468 +88 0.703793 0.703523 +SURF 0x30 +mat 1 +refs 3 +85 0.703793 0.701468 +89 0.691307 0.706334 +86 0.691307 0.703331 +SURF 0x30 +mat 1 +refs 3 +88 0.703793 0.703523 +87 0.712385 0.703913 +90 0.712385 0.705131 +SURF 0x30 +mat 1 +refs 3 +87 0.712385 0.703913 +88 0.703793 0.703523 +85 0.703793 0.701468 +SURF 0x30 +mat 1 +refs 3 +92 0.691307 0.714887 +88 0.703793 0.703523 +91 0.703793 0.70936 +SURF 0x30 +mat 1 +refs 3 +88 0.703793 0.703523 +92 0.691307 0.714887 +89 0.691307 0.706334 +SURF 0x30 +mat 1 +refs 3 +91 0.703793 0.70936 +90 0.712385 0.705131 +93 0.712385 0.708596 +SURF 0x30 +mat 1 +refs 3 +90 0.712385 0.705131 +91 0.703793 0.70936 +88 0.703793 0.703523 +SURF 0x30 +mat 1 +refs 3 +95 0.691307 0.727678 +91 0.703793 0.70936 +94 0.703793 0.718097 +SURF 0x30 +mat 1 +refs 3 +91 0.703793 0.70936 +95 0.691307 0.727678 +92 0.691307 0.714887 +SURF 0x30 +mat 1 +refs 3 +94 0.703793 0.718097 +93 0.712385 0.708596 +96 0.712385 0.71378 +SURF 0x30 +mat 1 +refs 3 +93 0.712385 0.708596 +94 0.703793 0.718097 +91 0.703793 0.70936 +SURF 0x30 +mat 1 +refs 3 +98 0.691307 0.74277 +94 0.703793 0.718097 +97 0.703793 0.731126 +SURF 0x30 +mat 1 +refs 3 +94 0.703793 0.718097 +98 0.691307 0.74277 +95 0.691307 0.727678 +SURF 0x30 +mat 1 +refs 3 +97 0.703793 0.731126 +96 0.712385 0.71378 +99 0.712385 0.720653 +SURF 0x30 +mat 1 +refs 3 +96 0.712385 0.71378 +97 0.703793 0.731126 +94 0.703793 0.718097 +SURF 0x30 +mat 1 +refs 3 +101 0.691307 0.75787 +97 0.703793 0.731126 +100 0.703793 0.74144 +SURF 0x30 +mat 1 +refs 3 +97 0.703793 0.731126 +101 0.691307 0.75787 +98 0.691307 0.74277 +SURF 0x30 +mat 1 +refs 3 +100 0.703793 0.74144 +99 0.712385 0.720653 +102 0.712385 0.72677 +SURF 0x30 +mat 1 +refs 3 +99 0.712385 0.720653 +100 0.703793 0.74144 +97 0.703793 0.731126 +SURF 0x30 +mat 1 +refs 3 +104 0.691307 0.77066 +100 0.703793 0.74144 +103 0.703793 0.750176 +SURF 0x30 +mat 1 +refs 3 +100 0.703793 0.74144 +104 0.691307 0.77066 +101 0.691307 0.75787 +SURF 0x30 +mat 1 +refs 3 +103 0.703793 0.750176 +102 0.712385 0.72677 +105 0.712385 0.731954 +SURF 0x30 +mat 1 +refs 3 +102 0.712385 0.72677 +103 0.703793 0.750176 +100 0.703793 0.74144 +SURF 0x30 +mat 1 +refs 3 +107 0.691307 0.779213 +103 0.703793 0.750176 +106 0.703793 0.756022 +SURF 0x30 +mat 1 +refs 3 +103 0.703793 0.750176 +107 0.691307 0.779213 +104 0.691307 0.77066 +SURF 0x30 +mat 1 +refs 3 +106 0.703793 0.756022 +105 0.712385 0.731954 +108 0.712385 0.735419 +SURF 0x30 +mat 1 +refs 3 +105 0.712385 0.731954 +106 0.703793 0.756022 +103 0.703793 0.750176 +SURF 0x30 +mat 1 +refs 3 +107 0.691307 0.779213 +64 0.703793 0.758069 +63 0.691307 0.782216 +SURF 0x30 +mat 1 +refs 3 +64 0.703793 0.758069 +107 0.691307 0.779213 +106 0.703793 0.756022 +SURF 0x30 +mat 1 +refs 3 +106 0.703793 0.756022 +65 0.712385 0.736637 +64 0.703793 0.758069 +SURF 0x30 +mat 1 +refs 3 +65 0.712385 0.736637 +106 0.703793 0.756022 +108 0.712385 0.735419 +SURF 0x30 +mat 1 +refs 3 +109 0.71635 0.722047 +66 0.712385 0.735419 +65 0.712385 0.736637 +SURF 0x30 +mat 1 +refs 3 +66 0.712385 0.735419 +109 0.71635 0.722047 +111 0.71635 0.721482 +SURF 0x30 +mat 1 +refs 3 +111 0.71635 0.721482 +69 0.712385 0.731954 +66 0.712385 0.735419 +SURF 0x30 +mat 1 +refs 3 +69 0.712385 0.731954 +111 0.71635 0.721482 +112 0.71635 0.719865 +SURF 0x30 +mat 1 +refs 3 +112 0.71635 0.719865 +72 0.712385 0.72677 +69 0.712385 0.731954 +SURF 0x30 +mat 1 +refs 3 +72 0.712385 0.72677 +112 0.71635 0.719865 +113 0.71635 0.717452 +SURF 0x30 +mat 1 +refs 3 +75 0.712385 0.720653 +113 0.71635 0.717452 +114 0.71635 0.7146 +SURF 0x30 +mat 1 +refs 3 +113 0.71635 0.717452 +75 0.712385 0.720653 +72 0.712385 0.72677 +SURF 0x30 +mat 1 +refs 3 +78 0.712385 0.71378 +114 0.71635 0.7146 +115 0.71635 0.71175 +SURF 0x30 +mat 1 +refs 3 +114 0.71635 0.7146 +78 0.712385 0.71378 +75 0.712385 0.720653 +SURF 0x30 +mat 1 +refs 3 +81 0.712385 0.708596 +115 0.71635 0.71175 +116 0.71635 0.709328 +SURF 0x30 +mat 1 +refs 3 +115 0.71635 0.71175 +81 0.712385 0.708596 +78 0.712385 0.71378 +SURF 0x30 +mat 1 +refs 3 +84 0.712385 0.705131 +116 0.71635 0.709328 +117 0.71635 0.70772 +SURF 0x30 +mat 1 +refs 3 +116 0.71635 0.709328 +84 0.712385 0.705131 +81 0.712385 0.708596 +SURF 0x30 +mat 1 +refs 3 +117 0.71635 0.70772 +87 0.712385 0.703913 +84 0.712385 0.705131 +SURF 0x30 +mat 1 +refs 3 +87 0.712385 0.703913 +117 0.71635 0.70772 +118 0.71635 0.707146 +SURF 0x30 +mat 1 +refs 3 +119 0.71635 0.70772 +87 0.712385 0.703913 +118 0.71635 0.707146 +SURF 0x30 +mat 1 +refs 3 +87 0.712385 0.703913 +119 0.71635 0.70772 +90 0.712385 0.705131 +SURF 0x30 +mat 1 +refs 3 +93 0.712385 0.708596 +119 0.71635 0.70772 +120 0.71635 0.709328 +SURF 0x30 +mat 1 +refs 3 +119 0.71635 0.70772 +93 0.712385 0.708596 +90 0.712385 0.705131 +SURF 0x30 +mat 1 +refs 3 +96 0.712385 0.71378 +120 0.71635 0.709328 +121 0.71635 0.71175 +SURF 0x30 +mat 1 +refs 3 +120 0.71635 0.709328 +96 0.712385 0.71378 +93 0.712385 0.708596 +SURF 0x30 +mat 1 +refs 3 +99 0.712385 0.720653 +121 0.71635 0.71175 +122 0.71635 0.7146 +SURF 0x30 +mat 1 +refs 3 +121 0.71635 0.71175 +99 0.712385 0.720653 +96 0.712385 0.71378 +SURF 0x30 +mat 1 +refs 3 +102 0.712385 0.72677 +122 0.71635 0.7146 +123 0.71635 0.717444 +SURF 0x30 +mat 1 +refs 3 +122 0.71635 0.7146 +102 0.712385 0.72677 +99 0.712385 0.720653 +SURF 0x30 +mat 1 +refs 3 +102 0.712385 0.72677 +124 0.71635 0.719865 +105 0.712385 0.731954 +SURF 0x30 +mat 1 +refs 3 +124 0.71635 0.719865 +102 0.712385 0.72677 +123 0.71635 0.717444 +SURF 0x30 +mat 1 +refs 3 +105 0.712385 0.731954 +125 0.71635 0.721482 +108 0.712385 0.735419 +SURF 0x30 +mat 1 +refs 3 +125 0.71635 0.721482 +105 0.712385 0.731954 +124 0.71635 0.719865 +SURF 0x30 +mat 1 +refs 3 +108 0.712385 0.735419 +109 0.71635 0.722047 +65 0.712385 0.736637 +SURF 0x30 +mat 1 +refs 3 +109 0.71635 0.722047 +108 0.712385 0.735419 +125 0.71635 0.721482 +SURF 0x30 +mat 1 +refs 3 +1 0.65137 0.818269 +127 0.673191 0.805272 +126 0.673191 0.801648 +SURF 0x30 +mat 1 +refs 3 +127 0.673191 0.805272 +1 0.65137 0.818269 +0 0.65137 0.822626 +SURF 0x30 +mat 1 +refs 3 +63 0.691307 0.782216 +126 0.673191 0.801648 +127 0.673191 0.805272 +SURF 0x30 +mat 1 +refs 3 +126 0.673191 0.801648 +63 0.691307 0.782216 +62 0.691307 0.779213 +SURF 0x30 +mat 1 +refs 3 +4 0.65137 0.805853 +126 0.673191 0.801648 +128 0.673191 0.791351 +SURF 0x30 +mat 1 +refs 3 +126 0.673191 0.801648 +4 0.65137 0.805853 +1 0.65137 0.818269 +SURF 0x30 +mat 1 +refs 3 +128 0.673191 0.791351 +62 0.691307 0.779213 +68 0.691307 0.77066 +SURF 0x30 +mat 1 +refs 3 +62 0.691307 0.779213 +128 0.673191 0.791351 +126 0.673191 0.801648 +SURF 0x30 +mat 1 +refs 3 +6 0.65137 0.787281 +128 0.673191 0.791351 +129 0.673191 0.775932 +SURF 0x30 +mat 1 +refs 3 +128 0.673191 0.791351 +6 0.65137 0.787281 +4 0.65137 0.805853 +SURF 0x30 +mat 1 +refs 3 +129 0.673191 0.775932 +68 0.691307 0.77066 +71 0.691307 0.75787 +SURF 0x30 +mat 1 +refs 3 +68 0.691307 0.77066 +129 0.673191 0.775932 +128 0.673191 0.791351 +SURF 0x30 +mat 1 +refs 3 +8 0.65137 0.768103 +129 0.673191 0.775932 +130 0.673191 0.755257 +SURF 0x30 +mat 1 +refs 3 +129 0.673191 0.775932 +8 0.65137 0.768103 +6 0.65137 0.787281 +SURF 0x30 +mat 1 +refs 3 +130 0.673191 0.755257 +71 0.691307 0.75787 +74 0.691307 0.74277 +SURF 0x30 +mat 1 +refs 3 +71 0.691307 0.75787 +130 0.673191 0.755257 +129 0.673191 0.775932 +SURF 0x30 +mat 1 +refs 3 +10 0.65137 0.746186 +130 0.673191 0.755257 +131 0.673191 0.73608 +SURF 0x30 +mat 1 +refs 3 +130 0.673191 0.755257 +10 0.65137 0.746186 +8 0.65137 0.768103 +SURF 0x30 +mat 1 +refs 3 +131 0.673191 0.73608 +74 0.691307 0.74277 +77 0.691307 0.727678 +SURF 0x30 +mat 1 +refs 3 +74 0.691307 0.74277 +131 0.673191 0.73608 +130 0.673191 0.755257 +SURF 0x30 +mat 1 +refs 3 +12 0.65137 0.727614 +131 0.673191 0.73608 +132 0.673191 0.720661 +SURF 0x30 +mat 1 +refs 3 +131 0.673191 0.73608 +12 0.65137 0.727614 +10 0.65137 0.746186 +SURF 0x30 +mat 1 +refs 3 +132 0.673191 0.720661 +77 0.691307 0.727678 +80 0.691307 0.714887 +SURF 0x30 +mat 1 +refs 3 +77 0.691307 0.727678 +132 0.673191 0.720661 +131 0.673191 0.73608 +SURF 0x30 +mat 1 +refs 3 +14 0.65137 0.715198 +132 0.673191 0.720661 +133 0.673191 0.710356 +SURF 0x30 +mat 1 +refs 3 +132 0.673191 0.720661 +14 0.65137 0.715198 +12 0.65137 0.727614 +SURF 0x30 +mat 1 +refs 3 +133 0.673191 0.710356 +80 0.691307 0.714887 +83 0.691307 0.706334 +SURF 0x30 +mat 1 +refs 3 +80 0.691307 0.714887 +133 0.673191 0.710356 +132 0.673191 0.720661 +SURF 0x30 +mat 1 +refs 3 +16 0.65137 0.710842 +133 0.673191 0.710356 +134 0.673191 0.70674 +SURF 0x30 +mat 1 +refs 3 +133 0.673191 0.710356 +16 0.65137 0.710842 +14 0.65137 0.715198 +SURF 0x30 +mat 1 +refs 3 +134 0.673191 0.70674 +83 0.691307 0.706334 +86 0.691307 0.703331 +SURF 0x30 +mat 1 +refs 3 +83 0.691307 0.706334 +134 0.673191 0.70674 +133 0.673191 0.710356 +SURF 0x30 +mat 1 +refs 3 +18 0.65137 0.715198 +134 0.673191 0.70674 +135 0.673191 0.710356 +SURF 0x30 +mat 1 +refs 3 +134 0.673191 0.70674 +18 0.65137 0.715198 +16 0.65137 0.710842 +SURF 0x30 +mat 1 +refs 3 +135 0.673191 0.710356 +86 0.691307 0.703331 +89 0.691307 0.706334 +SURF 0x30 +mat 1 +refs 3 +86 0.691307 0.703331 +135 0.673191 0.710356 +134 0.673191 0.70674 +SURF 0x30 +mat 1 +refs 3 +20 0.65137 0.727614 +135 0.673191 0.710356 +136 0.673191 0.720661 +SURF 0x30 +mat 1 +refs 3 +135 0.673191 0.710356 +20 0.65137 0.727614 +18 0.65137 0.715198 +SURF 0x30 +mat 1 +refs 3 +136 0.673191 0.720661 +89 0.691307 0.706334 +92 0.691307 0.714887 +SURF 0x30 +mat 1 +refs 3 +89 0.691307 0.706334 +136 0.673191 0.720661 +135 0.673191 0.710356 +SURF 0x30 +mat 1 +refs 3 +22 0.65137 0.746186 +136 0.673191 0.720661 +137 0.673191 0.73608 +SURF 0x30 +mat 1 +refs 3 +136 0.673191 0.720661 +22 0.65137 0.746186 +20 0.65137 0.727614 +SURF 0x30 +mat 1 +refs 3 +137 0.673191 0.73608 +92 0.691307 0.714887 +95 0.691307 0.727678 +SURF 0x30 +mat 1 +refs 3 +92 0.691307 0.714887 +137 0.673191 0.73608 +136 0.673191 0.720661 +SURF 0x30 +mat 1 +refs 3 +23 0.65137 0.768103 +137 0.673191 0.73608 +138 0.673191 0.755257 +SURF 0x30 +mat 1 +refs 3 +137 0.673191 0.73608 +23 0.65137 0.768103 +22 0.65137 0.746186 +SURF 0x30 +mat 1 +refs 3 +138 0.673191 0.755257 +95 0.691307 0.727678 +98 0.691307 0.74277 +SURF 0x30 +mat 1 +refs 3 +95 0.691307 0.727678 +138 0.673191 0.755257 +137 0.673191 0.73608 +SURF 0x30 +mat 1 +refs 3 +24 0.65137 0.787281 +138 0.673191 0.755257 +139 0.673191 0.775932 +SURF 0x30 +mat 1 +refs 3 +138 0.673191 0.755257 +24 0.65137 0.787281 +23 0.65137 0.768103 +SURF 0x30 +mat 1 +refs 3 +139 0.673191 0.775932 +98 0.691307 0.74277 +101 0.691307 0.75787 +SURF 0x30 +mat 1 +refs 3 +98 0.691307 0.74277 +139 0.673191 0.775932 +138 0.673191 0.755257 +SURF 0x30 +mat 1 +refs 3 +25 0.65137 0.805853 +139 0.673191 0.775932 +140 0.673191 0.791351 +SURF 0x30 +mat 1 +refs 3 +139 0.673191 0.775932 +25 0.65137 0.805853 +24 0.65137 0.787281 +SURF 0x30 +mat 1 +refs 3 +140 0.673191 0.791351 +101 0.691307 0.75787 +104 0.691307 0.77066 +SURF 0x30 +mat 1 +refs 3 +101 0.691307 0.75787 +140 0.673191 0.791351 +139 0.673191 0.775932 +SURF 0x30 +mat 1 +refs 3 +27 0.65137 0.818269 +140 0.673191 0.791351 +141 0.673191 0.801648 +SURF 0x30 +mat 1 +refs 3 +140 0.673191 0.791351 +27 0.65137 0.818269 +25 0.65137 0.805853 +SURF 0x30 +mat 1 +refs 3 +141 0.673191 0.801648 +104 0.691307 0.77066 +107 0.691307 0.779213 +SURF 0x30 +mat 1 +refs 3 +104 0.691307 0.77066 +141 0.673191 0.801648 +140 0.673191 0.791351 +SURF 0x30 +mat 1 +refs 3 +0 0.65137 0.822626 +141 0.673191 0.801648 +127 0.673191 0.805272 +SURF 0x30 +mat 1 +refs 3 +141 0.673191 0.801648 +0 0.65137 0.822626 +27 0.65137 0.818269 +SURF 0x30 +mat 1 +refs 3 +141 0.673191 0.801648 +63 0.691307 0.782216 +127 0.673191 0.805272 +SURF 0x30 +mat 1 +refs 3 +63 0.691307 0.782216 +141 0.673191 0.801648 +107 0.691307 0.779213 +SURF 0x30 +mat 1 +refs 3 +109 0.71635 0.722047 +110 0.718114 0.711287 +111 0.71635 0.721482 +SURF 0x30 +mat 1 +refs 3 +111 0.71635 0.721482 +110 0.718114 0.711287 +112 0.71635 0.719865 +SURF 0x30 +mat 1 +refs 3 +112 0.71635 0.719865 +110 0.718114 0.711287 +113 0.71635 0.717452 +SURF 0x30 +mat 1 +refs 3 +113 0.71635 0.717452 +110 0.718114 0.711287 +114 0.71635 0.7146 +SURF 0x30 +mat 1 +refs 3 +114 0.71635 0.7146 +110 0.718114 0.711287 +115 0.71635 0.71175 +SURF 0x30 +mat 1 +refs 3 +115 0.71635 0.71175 +110 0.718114 0.711287 +116 0.71635 0.709328 +SURF 0x30 +mat 1 +refs 3 +116 0.71635 0.709328 +110 0.718114 0.711287 +117 0.71635 0.70772 +SURF 0x30 +mat 1 +refs 3 +117 0.71635 0.70772 +110 0.718114 0.711287 +118 0.71635 0.707146 +SURF 0x30 +mat 1 +refs 3 +118 0.71635 0.707146 +110 0.718114 0.711287 +119 0.71635 0.70772 +SURF 0x30 +mat 1 +refs 3 +119 0.71635 0.70772 +110 0.718114 0.711287 +120 0.71635 0.709328 +SURF 0x30 +mat 1 +refs 3 +120 0.71635 0.709328 +110 0.718114 0.711287 +121 0.71635 0.71175 +SURF 0x30 +mat 1 +refs 3 +121 0.71635 0.71175 +110 0.718114 0.711287 +122 0.71635 0.7146 +SURF 0x30 +mat 1 +refs 3 +122 0.71635 0.7146 +110 0.718114 0.711287 +123 0.71635 0.717444 +SURF 0x30 +mat 1 +refs 3 +123 0.71635 0.717444 +110 0.718114 0.711287 +124 0.71635 0.719865 +SURF 0x30 +mat 1 +refs 3 +124 0.71635 0.719865 +110 0.718114 0.711287 +125 0.71635 0.721482 +SURF 0x30 +mat 1 +refs 3 +125 0.71635 0.721482 +110 0.718114 0.711287 +109 0.71635 0.722047 +SURF 0x30 +mat 1 +refs 3 +154 0.532131 0.785457 +156 0.597622 0.751777 +155 0.597622 0.777015 +SURF 0x30 +mat 1 +refs 3 +156 0.597622 0.751777 +154 0.532131 0.785457 +153 0.532131 0.756221 +SURF 0x30 +mat 1 +refs 3 +151 0.532131 0.812002 +155 0.597622 0.777015 +152 0.597622 0.803002 +SURF 0x30 +mat 1 +refs 3 +155 0.597622 0.777015 +151 0.532131 0.812002 +154 0.532131 0.785457 +SURF 0x30 +mat 1 +refs 3 +142 0.240106 0.692456 +147 0.309018 0.65832 +145 0.309018 0.690947 +SURF 0x30 +mat 1 +refs 3 +147 0.309018 0.65832 +142 0.240106 0.692456 +144 0.240106 0.659189 +SURF 0x30 +mat 1 +refs 3 +144 0.240106 0.659189 +146 0.309018 0.625694 +147 0.309018 0.65832 +SURF 0x30 +mat 1 +refs 3 +146 0.309018 0.625694 +144 0.240106 0.659189 +143 0.240106 0.625924 +SURF 0x30 +mat 1 +refs 3 +145 0.376339 0.816302 +150 0.457413 0.785457 +148 0.457413 0.816366 +SURF 0x30 +mat 1 +refs 3 +150 0.457413 0.785457 +145 0.376339 0.816302 +147 0.376339 0.784613 +SURF 0x30 +mat 1 +refs 3 +147 0.376339 0.784613 +149 0.457413 0.754549 +150 0.457413 0.785457 +SURF 0x30 +mat 1 +refs 3 +149 0.457413 0.754549 +147 0.376339 0.784613 +146 0.376339 0.752924 +SURF 0x30 +mat 1 +refs 3 +148 0.457413 0.816366 +154 0.532131 0.785457 +151 0.532131 0.812002 +SURF 0x30 +mat 1 +refs 3 +154 0.532131 0.785457 +148 0.457413 0.816366 +150 0.457413 0.785457 +SURF 0x30 +mat 1 +refs 3 +150 0.457413 0.785457 +153 0.532131 0.756221 +154 0.532131 0.785457 +SURF 0x30 +mat 1 +refs 3 +153 0.532131 0.756221 +150 0.457413 0.785457 +149 0.457413 0.754549 +kids 0 +OBJECT poly +name "LHStab" +loc 0.611241 -0.0385599 0 +texture "wing.jpg" +crease 45.000000 +numvert 157 +0.00939041 0.00293892 0.225879 +-0.00373995 0.00323201 0.21565 +0.017507 0.00383857 0.225879 +0.00604463 0.00422264 0.21565 +0.0270894 0.00415689 0.225879 +0.0191649 0.00457137 0.21565 +0.0366668 0.00383857 0.225879 +0.0313348 0.00422264 0.21565 +0.0502116 0.00158946 0.225879 +0.0447838 0.00293892 0.225879 +0.0411194 0.00323201 0.21565 +0.0476593 0.00175121 0.21565 +-0.0473561 0.00236788 0.0938077 +-0.0362474 0.00437428 0.0938077 +-0.0196146 0.00571356 0.0938077 +-0.0430905 0.00222635 0.135998 +-0.0325781 0.00411645 0.135998 +-0.0168449 0.00537995 0.135998 +0 0.00582476 0.135998 +0.0185533 0.00537995 0.135998 +-0.0208226 0.00193818 0.203328 +-0.0337859 0.00205439 0.172979 +-0.0129432 0.00358575 0.203328 +-0.0247142 0.00379304 0.172979 +-0.00115746 0.00468258 0.203328 +-0.0111339 0.00495544 0.172979 +0.0110127 0.00506664 0.203328 +0.00535738 0.00536482 0.172979 +0.0249213 0.00468258 0.203328 +0.0213733 0.00495544 0.172979 +0.0445866 0.00193818 0.203328 +0.0367073 0.00358575 0.203328 +0.0349536 0.00379304 0.172979 +0.0440307 0.00205439 0.172979 +-0.0102748 0.00175121 0.21565 +0.0499538 2.45869e-06 0.21565 +0.0476593 -0.0017462 0.21565 +0.0411194 -0.00323201 0.21565 +0.0313348 -0.00422264 0.21565 +0.0191649 -0.00456628 0.21565 +0.00604463 -0.00422264 0.21565 +-0.00373995 -0.00323201 0.21565 +-0.0102748 -0.0017462 0.21565 +-0.0125743 2.45869e-06 0.21565 +0.0405989 0.000513032 0.240021 +0.0416248 0.000952747 0.240021 +0.0431613 0.00124073 0.240021 +0.0449657 0.00134693 0.240021 +0.0467749 0.00124073 0.240021 +0.0483114 0.000952747 0.240021 +0.0493323 0.000513032 0.240021 +0.0496962 2.45869e-06 0.240021 +0.0493323 -0.000513028 0.240021 +0.0483114 -0.000947639 0.240021 +0.0467749 -0.00124073 0.240021 +0.0449657 -0.00134693 0.240021 +0.0431563 -0.00124073 0.240021 +0.0416248 -0.000947639 0.240021 +0.04024 2.45869e-06 0.240021 +0.0470681 2.45869e-06 0.241016 +0.0405989 -0.000513028 0.240021 +0.0317544 0.00110429 0.237781 +0.0186798 0.00130139 0.232929 +0.00396246 0.00158946 0.225879 +0.033953 0.00203929 0.237781 +0.0223894 0.00240823 0.232929 +0.0372431 0.00266597 0.237781 +0.0279334 0.00314613 0.232929 +0.0411245 0.00288838 0.237781 +0.0344786 0.00340387 0.232929 +0.0454862 0.00266597 0.237781 +0.042747 0.00314613 0.232929 +0.0487763 0.00203929 0.237781 +0.0482912 0.00240823 0.232929 +0.0509749 0.00110429 0.237781 +0.0519957 0.00130139 0.232929 +0.0517482 2.45869e-06 0.237781 +0.0532997 2.45869e-06 0.232929 +0.0521171 2.45869e-06 0.225879 +0.0509749 -0.00110429 0.237781 +0.0519957 -0.00130138 0.232929 +0.0502116 -0.00158955 0.225879 +0.0487763 -0.00203929 0.237781 +0.0482912 -0.00240323 0.232929 +0.0447838 -0.00293892 0.225879 +0.0454862 -0.00266606 0.237781 +0.042747 -0.00314613 0.232929 +0.0366668 -0.00383857 0.225879 +0.0411245 -0.00288338 0.237781 +0.0344786 -0.00340387 0.232929 +0.0270894 -0.00415698 0.225879 +0.0372431 -0.00266606 0.237781 +0.0279334 -0.00314613 0.232929 +0.017507 -0.00383857 0.225879 +0.033953 -0.00203929 0.237781 +0.0223894 -0.00240323 0.232929 +0.00939041 -0.00293892 0.225879 +0.0309811 2.45869e-06 0.237781 +0.0317544 -0.00110429 0.237781 +0.0186798 -0.00130138 0.232929 +0.00396246 -0.00158955 0.225879 +0.00205696 2.45869e-06 0.225879 +0.0173808 2.45869e-06 0.232929 +-0.0494989 0.00256487 -1.51831e-05 +-0.0378848 0.00473303 -1.51837e-05 +-0.0205042 0.00618359 -1.51843e-05 +0 0.00669398 -1.51853e-05 +0.0205041 0.00618359 -1.51862e-05 +0.0205041 -0.00618359 -1.51862e-05 +0 -0.00669398 -1.51853e-05 +-0.0205042 -0.00618359 -1.51843e-05 +-0.0378848 -0.00473313 -1.51837e-05 +-0.0494989 -0.00255987 -1.51831e-05 +-0.0535775 2.45869e-06 -1.5183e-05 +-0.0480132 0.00251433 0.0480283 +-0.0366212 0.00464205 0.0480283 +-0.0195743 0.00606729 0.0480283 +0.000535786 0.00656767 0.0480283 +0.0206457 0.00606729 0.0480283 +0.0206457 -0.00606738 0.0480283 +0.000535786 -0.00656265 0.0480283 +-0.0195743 -0.00606738 0.0480283 +-0.0366212 -0.00464214 0.0480283 +-0.0480132 -0.00251433 0.0480283 +-0.0520108 2.45869e-06 0.0480283 +0 0.00618359 0.0938077 +0.0196145 0.00571356 0.0938077 +0.0196145 -0.00571364 0.0938077 +0 -0.00618359 0.0938077 +-0.0196146 -0.00571364 0.0938077 +-0.0362474 -0.00437428 0.0938077 +-0.0473561 -0.00236778 0.0938077 +-0.0512577 2.45869e-06 0.0938077 +0.0185533 -0.00538003 0.135998 +0 -0.00581965 0.135998 +-0.0168449 -0.00538003 0.135998 +-0.0325781 -0.00411654 0.135998 +-0.0430905 -0.00222635 0.135998 +-0.04678 2.45869e-06 0.135998 +0.0473511 2.45869e-06 0.203328 +0.0472147 2.45869e-06 0.172979 +0.0445866 -0.00193818 0.203328 +0.0440307 -0.00204939 0.172979 +0.0367073 -0.00358083 0.203328 +0.0349536 -0.00379304 0.172979 +0.0249213 -0.00468258 0.203328 +0.0213733 -0.00495544 0.172979 +0.0110127 -0.00506664 0.203328 +0.00535738 -0.00535982 0.172979 +-0.00115746 -0.00468258 0.203328 +-0.0111339 -0.00495544 0.172979 +-0.0129432 -0.00358083 0.203328 +-0.0247142 -0.00379304 0.172979 +-0.023587 2.45869e-06 0.203328 +-0.0208226 -0.00193818 0.203328 +-0.0337859 -0.00204939 0.172979 +-0.0369751 2.45869e-06 0.172979 +numsurf 288 +SURF 0x30 +mat 1 +refs 3 +17 0.291159 0.832362 +23 0.218752 0.847838 +25 0.218752 0.82113 +SURF 0x30 +mat 1 +refs 3 +23 0.218752 0.847838 +17 0.291159 0.832362 +16 0.291159 0.863304 +SURF 0x30 +mat 1 +refs 3 +18 0.291159 0.799233 +25 0.218752 0.82113 +27 0.218752 0.788697 +SURF 0x30 +mat 1 +refs 3 +25 0.218752 0.82113 +18 0.291159 0.799233 +17 0.291159 0.832362 +SURF 0x30 +mat 1 +refs 3 +19 0.291159 0.762745 +27 0.218752 0.788697 +29 0.218752 0.757199 +SURF 0x30 +mat 1 +refs 3 +27 0.218752 0.788697 +19 0.291159 0.762745 +18 0.291159 0.799233 +SURF 0x30 +mat 1 +refs 3 +23 0.218752 0.847838 +20 0.159328 0.840184 +22 0.159328 0.824688 +SURF 0x30 +mat 1 +refs 3 +20 0.159328 0.840184 +23 0.218752 0.847838 +21 0.218752 0.865679 +SURF 0x30 +mat 1 +refs 3 +25 0.218752 0.82113 +22 0.159328 0.824688 +24 0.159328 0.801509 +SURF 0x30 +mat 1 +refs 3 +22 0.159328 0.824688 +25 0.218752 0.82113 +23 0.218752 0.847838 +SURF 0x30 +mat 1 +refs 3 +27 0.218752 0.788697 +24 0.159328 0.801509 +26 0.159328 0.777575 +SURF 0x30 +mat 1 +refs 3 +24 0.159328 0.801509 +27 0.218752 0.788697 +25 0.218752 0.82113 +SURF 0x30 +mat 1 +refs 3 +29 0.218752 0.757199 +26 0.159328 0.777575 +28 0.159328 0.750221 +SURF 0x30 +mat 1 +refs 3 +26 0.159328 0.777575 +29 0.218752 0.757199 +27 0.218752 0.788697 +SURF 0x30 +mat 1 +refs 3 +30 0.159328 0.711545 +10 0.135202 0.718364 +11 0.135202 0.705503 +SURF 0x30 +mat 1 +refs 3 +10 0.135202 0.718364 +30 0.159328 0.711545 +31 0.159328 0.727041 +SURF 0x30 +mat 1 +refs 3 +11 0.135202 0.705503 +9 0.115173 0.711158 +8 0.115173 0.700483 +SURF 0x30 +mat 1 +refs 3 +9 0.115173 0.711158 +11 0.135202 0.705503 +10 0.135202 0.718364 +SURF 0x30 +mat 1 +refs 3 +31 0.159328 0.727041 +7 0.135202 0.737607 +10 0.135202 0.718364 +SURF 0x30 +mat 1 +refs 3 +7 0.135202 0.737607 +31 0.159328 0.727041 +28 0.159328 0.750221 +SURF 0x30 +mat 1 +refs 3 +10 0.135202 0.718364 +6 0.115173 0.727121 +9 0.115173 0.711158 +SURF 0x30 +mat 1 +refs 3 +6 0.115173 0.727121 +10 0.135202 0.718364 +7 0.135202 0.737607 +SURF 0x30 +mat 1 +refs 3 +28 0.159328 0.750221 +5 0.135202 0.761542 +7 0.135202 0.737607 +SURF 0x30 +mat 1 +refs 3 +5 0.135202 0.761542 +28 0.159328 0.750221 +26 0.159328 0.777575 +SURF 0x30 +mat 1 +refs 3 +32 0.218752 0.73049 +28 0.159328 0.750221 +31 0.159328 0.727041 +SURF 0x30 +mat 1 +refs 3 +28 0.159328 0.750221 +32 0.218752 0.73049 +29 0.218752 0.757199 +SURF 0x30 +mat 1 +refs 3 +33 0.218752 0.712639 +31 0.159328 0.727041 +30 0.159328 0.711545 +SURF 0x30 +mat 1 +refs 3 +31 0.159328 0.727041 +33 0.218752 0.712639 +32 0.218752 0.73049 +SURF 0x30 +mat 1 +refs 3 +7 0.135202 0.737607 +4 0.115173 0.745957 +6 0.115173 0.727121 +SURF 0x30 +mat 1 +refs 3 +4 0.115173 0.745957 +7 0.135202 0.737607 +5 0.135202 0.761542 +SURF 0x30 +mat 1 +refs 3 +26 0.159328 0.777575 +3 0.135202 0.787345 +5 0.135202 0.761542 +SURF 0x30 +mat 1 +refs 3 +3 0.135202 0.787345 +26 0.159328 0.777575 +24 0.159328 0.801509 +SURF 0x30 +mat 1 +refs 3 +5 0.135202 0.761542 +2 0.115173 0.764802 +4 0.115173 0.745957 +SURF 0x30 +mat 1 +refs 3 +2 0.115173 0.764802 +5 0.135202 0.761542 +3 0.135202 0.787345 +SURF 0x30 +mat 1 +refs 3 +24 0.159328 0.801509 +1 0.135202 0.806588 +3 0.135202 0.787345 +SURF 0x30 +mat 1 +refs 3 +1 0.135202 0.806588 +24 0.159328 0.801509 +22 0.159328 0.824688 +SURF 0x30 +mat 1 +refs 3 +3 0.135202 0.787345 +0 0.115173 0.780765 +2 0.115173 0.764802 +SURF 0x30 +mat 1 +refs 3 +0 0.115173 0.780765 +3 0.135202 0.787345 +1 0.135202 0.806588 +SURF 0x30 +mat 1 +refs 3 +13 0.373769 0.87052 +15 0.291159 0.883978 +16 0.291159 0.863304 +SURF 0x30 +mat 1 +refs 3 +15 0.291159 0.883978 +13 0.373769 0.87052 +12 0.373769 0.892367 +SURF 0x30 +mat 1 +refs 3 +14 0.373769 0.837809 +16 0.291159 0.863304 +17 0.291159 0.832362 +SURF 0x30 +mat 1 +refs 3 +16 0.291159 0.863304 +14 0.373769 0.837809 +13 0.373769 0.87052 +SURF 0x30 +mat 1 +refs 3 +16 0.291159 0.863304 +21 0.218752 0.865679 +23 0.218752 0.847838 +SURF 0x30 +mat 1 +refs 3 +21 0.218752 0.865679 +16 0.291159 0.863304 +15 0.291159 0.883978 +SURF 0x30 +mat 1 +refs 3 +60 0.0874849 0.719388 +59 0.0855355 0.706665 +58 0.0874849 0.720094 +SURF 0x30 +mat 1 +refs 3 +57 0.0874849 0.71737 +59 0.0855355 0.706665 +60 0.0874849 0.719388 +SURF 0x30 +mat 1 +refs 3 +56 0.0874849 0.714358 +59 0.0855355 0.706665 +57 0.0874849 0.71737 +SURF 0x30 +mat 1 +refs 3 +55 0.0874849 0.7108 +59 0.0855355 0.706665 +56 0.0874849 0.714358 +SURF 0x30 +mat 1 +refs 3 +54 0.0874849 0.707242 +59 0.0855355 0.706665 +55 0.0874849 0.7108 +SURF 0x30 +mat 1 +refs 3 +53 0.0874849 0.70422 +59 0.0855355 0.706665 +54 0.0874849 0.707242 +SURF 0x30 +mat 1 +refs 3 +52 0.0874849 0.702212 +59 0.0855355 0.706665 +53 0.0874849 0.70422 +SURF 0x30 +mat 1 +refs 3 +51 0.0874849 0.701496 +59 0.0855355 0.706665 +52 0.0874849 0.702212 +SURF 0x30 +mat 1 +refs 3 +50 0.0874849 0.702212 +59 0.0855355 0.706665 +51 0.0874849 0.701496 +SURF 0x30 +mat 1 +refs 3 +49 0.0874849 0.70422 +59 0.0855355 0.706665 +50 0.0874849 0.702212 +SURF 0x30 +mat 1 +refs 3 +48 0.0874849 0.707242 +59 0.0855355 0.706665 +49 0.0874849 0.70422 +SURF 0x30 +mat 1 +refs 3 +47 0.0874849 0.7108 +59 0.0855355 0.706665 +48 0.0874849 0.707242 +SURF 0x30 +mat 1 +refs 3 +46 0.0874849 0.714348 +59 0.0855355 0.706665 +47 0.0874849 0.7108 +SURF 0x30 +mat 1 +refs 3 +45 0.0874849 0.71737 +59 0.0855355 0.706665 +46 0.0874849 0.714348 +SURF 0x30 +mat 1 +refs 3 +44 0.0874849 0.719388 +59 0.0855355 0.706665 +45 0.0874849 0.71737 +SURF 0x30 +mat 1 +refs 3 +58 0.0874849 0.720094 +59 0.0855355 0.706665 +44 0.0874849 0.719388 +SURF 0x30 +mat 1 +refs 3 +89 0.101369 0.731425 +85 0.0918688 0.709776 +88 0.0918688 0.718354 +SURF 0x30 +mat 1 +refs 3 +85 0.0918688 0.709776 +89 0.101369 0.731425 +86 0.101369 0.715164 +SURF 0x30 +mat 1 +refs 3 +90 0.115173 0.745957 +86 0.101369 0.715164 +89 0.101369 0.731425 +SURF 0x30 +mat 1 +refs 3 +86 0.101369 0.715164 +90 0.115173 0.745957 +87 0.115173 0.727121 +SURF 0x30 +mat 1 +refs 3 +92 0.101369 0.744297 +88 0.0918688 0.718354 +91 0.0918688 0.725988 +SURF 0x30 +mat 1 +refs 3 +88 0.0918688 0.718354 +92 0.101369 0.744297 +89 0.101369 0.731425 +SURF 0x30 +mat 1 +refs 3 +93 0.115173 0.764802 +89 0.101369 0.731425 +92 0.101369 0.744297 +SURF 0x30 +mat 1 +refs 3 +89 0.101369 0.731425 +93 0.115173 0.764802 +90 0.115173 0.745957 +SURF 0x30 +mat 1 +refs 3 +95 0.101369 0.7552 +91 0.0918688 0.725988 +94 0.0918688 0.732458 +SURF 0x30 +mat 1 +refs 3 +91 0.0918688 0.725988 +95 0.101369 0.7552 +92 0.101369 0.744297 +SURF 0x30 +mat 1 +refs 3 +96 0.115173 0.780765 +92 0.101369 0.744297 +95 0.101369 0.7552 +SURF 0x30 +mat 1 +refs 3 +92 0.101369 0.744297 +96 0.115173 0.780765 +93 0.115173 0.764802 +SURF 0x30 +mat 1 +refs 3 +99 0.101369 0.762496 +94 0.0918688 0.732458 +98 0.0918688 0.736782 +SURF 0x30 +mat 1 +refs 3 +94 0.0918688 0.732458 +99 0.101369 0.762496 +95 0.101369 0.7552 +SURF 0x30 +mat 1 +refs 3 +100 0.115173 0.79144 +95 0.101369 0.7552 +99 0.101369 0.762496 +SURF 0x30 +mat 1 +refs 3 +95 0.101369 0.7552 +100 0.115173 0.79144 +96 0.115173 0.780765 +SURF 0x30 +mat 1 +refs 3 +97 0.0918688 0.738303 +99 0.101369 0.762496 +98 0.0918688 0.736782 +SURF 0x30 +mat 1 +refs 3 +99 0.101369 0.762496 +97 0.0918688 0.738303 +102 0.101369 0.765051 +SURF 0x30 +mat 1 +refs 3 +102 0.101369 0.765051 +100 0.115173 0.79144 +99 0.101369 0.762496 +SURF 0x30 +mat 1 +refs 3 +100 0.115173 0.79144 +102 0.101369 0.765051 +101 0.115173 0.795188 +SURF 0x30 +mat 1 +refs 3 +114 0.772836 0.819455 +113 0.866906 0.830399 +124 0.772836 0.827318 +SURF 0x30 +mat 1 +refs 3 +113 0.866906 0.830399 +114 0.772836 0.819455 +103 0.866906 0.822377 +SURF 0x30 +mat 1 +refs 3 +115 0.772836 0.797051 +103 0.866906 0.822377 +114 0.772836 0.819455 +SURF 0x30 +mat 1 +refs 3 +103 0.866906 0.822377 +115 0.772836 0.797051 +104 0.866906 0.799536 +SURF 0x30 +mat 1 +refs 3 +116 0.772836 0.763525 +104 0.866906 0.799536 +115 0.772836 0.797051 +SURF 0x30 +mat 1 +refs 3 +104 0.866906 0.799536 +116 0.772836 0.763525 +105 0.866906 0.765354 +SURF 0x30 +mat 1 +refs 3 +117 0.772836 0.723975 +105 0.866906 0.765354 +116 0.772836 0.763525 +SURF 0x30 +mat 1 +refs 3 +105 0.866906 0.765354 +117 0.772836 0.723975 +106 0.866906 0.725029 +SURF 0x30 +mat 1 +refs 3 +118 0.772836 0.684425 +106 0.866906 0.725029 +117 0.772836 0.723975 +SURF 0x30 +mat 1 +refs 3 +106 0.866906 0.725029 +118 0.772836 0.684425 +107 0.866906 0.684704 +SURF 0x30 +mat 1 +refs 3 +109 0.866906 0.725029 +119 0.772836 0.684425 +120 0.772836 0.723975 +SURF 0x30 +mat 1 +refs 3 +119 0.772836 0.684425 +109 0.866906 0.725029 +108 0.866906 0.684704 +SURF 0x30 +mat 1 +refs 3 +110 0.866906 0.765354 +120 0.772836 0.723975 +121 0.772836 0.763525 +SURF 0x30 +mat 1 +refs 3 +120 0.772836 0.723975 +110 0.866906 0.765354 +109 0.866906 0.725029 +SURF 0x30 +mat 1 +refs 3 +111 0.866906 0.799536 +121 0.772836 0.763525 +122 0.772836 0.797051 +SURF 0x30 +mat 1 +refs 3 +121 0.772836 0.763525 +111 0.866906 0.799536 +110 0.866906 0.765354 +SURF 0x30 +mat 1 +refs 3 +112 0.866906 0.822377 +122 0.772836 0.797051 +123 0.772836 0.819455 +SURF 0x30 +mat 1 +refs 3 +122 0.772836 0.797051 +112 0.866906 0.822377 +111 0.866906 0.799536 +SURF 0x30 +mat 1 +refs 3 +113 0.866906 0.830399 +123 0.772836 0.819455 +124 0.772836 0.827318 +SURF 0x30 +mat 1 +refs 3 +123 0.772836 0.819455 +113 0.866906 0.830399 +112 0.866906 0.822377 +SURF 0x30 +mat 1 +refs 3 +114 0.772836 0.819455 +132 0.683201 0.825836 +12 0.683201 0.818163 +SURF 0x30 +mat 1 +refs 3 +132 0.683201 0.825836 +114 0.772836 0.819455 +124 0.772836 0.827318 +SURF 0x30 +mat 1 +refs 3 +115 0.772836 0.797051 +12 0.683201 0.818163 +13 0.683201 0.796316 +SURF 0x30 +mat 1 +refs 3 +12 0.683201 0.818163 +115 0.772836 0.797051 +114 0.772836 0.819455 +SURF 0x30 +mat 1 +refs 3 +116 0.772836 0.763525 +13 0.683201 0.796316 +14 0.683201 0.763605 +SURF 0x30 +mat 1 +refs 3 +13 0.683201 0.796316 +116 0.772836 0.763525 +115 0.772836 0.797051 +SURF 0x30 +mat 1 +refs 3 +117 0.772836 0.723975 +14 0.683201 0.763605 +125 0.683201 0.725029 +SURF 0x30 +mat 1 +refs 3 +14 0.683201 0.763605 +117 0.772836 0.723975 +116 0.772836 0.763525 +SURF 0x30 +mat 1 +refs 3 +118 0.772836 0.684425 +125 0.683201 0.725029 +126 0.683201 0.686453 +SURF 0x30 +mat 1 +refs 3 +125 0.683201 0.725029 +118 0.772836 0.684425 +117 0.772836 0.723975 +SURF 0x30 +mat 1 +refs 3 +120 0.772836 0.723975 +127 0.683201 0.686453 +128 0.683201 0.725029 +SURF 0x30 +mat 1 +refs 3 +127 0.683201 0.686453 +120 0.772836 0.723975 +119 0.772836 0.684425 +SURF 0x30 +mat 1 +refs 3 +121 0.772836 0.763525 +128 0.683201 0.725029 +129 0.683201 0.763605 +SURF 0x30 +mat 1 +refs 3 +128 0.683201 0.725029 +121 0.772836 0.763525 +120 0.772836 0.723975 +SURF 0x30 +mat 1 +refs 3 +122 0.772836 0.797051 +129 0.683201 0.763605 +130 0.683201 0.796316 +SURF 0x30 +mat 1 +refs 3 +129 0.683201 0.763605 +122 0.772836 0.797051 +121 0.772836 0.763525 +SURF 0x30 +mat 1 +refs 3 +123 0.772836 0.819455 +130 0.683201 0.796316 +131 0.683201 0.818163 +SURF 0x30 +mat 1 +refs 3 +130 0.683201 0.796316 +123 0.772836 0.819455 +122 0.772836 0.797051 +SURF 0x30 +mat 1 +refs 3 +124 0.772836 0.827318 +131 0.683201 0.818163 +132 0.683201 0.825836 +SURF 0x30 +mat 1 +refs 3 +131 0.683201 0.818163 +124 0.772836 0.827318 +123 0.772836 0.819455 +SURF 0x30 +mat 1 +refs 3 +12 0.373769 0.892367 +138 0.291159 0.891234 +15 0.291159 0.883978 +SURF 0x30 +mat 1 +refs 3 +138 0.291159 0.891234 +12 0.373769 0.892367 +132 0.373769 0.900041 +SURF 0x30 +mat 1 +refs 3 +86 0.101369 0.715164 +82 0.0918688 0.703306 +85 0.0918688 0.709776 +SURF 0x30 +mat 1 +refs 3 +82 0.0918688 0.703306 +86 0.101369 0.715164 +83 0.101369 0.70426 +SURF 0x30 +mat 1 +refs 3 +84 0.115173 0.711158 +80 0.101369 0.696974 +83 0.101369 0.70426 +SURF 0x30 +mat 1 +refs 3 +80 0.101369 0.696974 +84 0.115173 0.711158 +81 0.115173 0.700483 +SURF 0x30 +mat 1 +refs 3 +125 0.373769 0.799233 +17 0.291159 0.832362 +18 0.291159 0.799233 +SURF 0x30 +mat 1 +refs 3 +17 0.291159 0.832362 +125 0.373769 0.799233 +14 0.373769 0.837809 +SURF 0x30 +mat 1 +refs 3 +126 0.373769 0.760657 +18 0.291159 0.799233 +19 0.291159 0.762745 +SURF 0x30 +mat 1 +refs 3 +18 0.291159 0.799233 +126 0.373769 0.760657 +125 0.373769 0.799233 +SURF 0x30 +mat 1 +refs 3 +128 0.376269 0.657566 +133 0.293659 0.621078 +134 0.293659 0.657566 +SURF 0x30 +mat 1 +refs 3 +133 0.291159 0.762745 +128 0.373769 0.799233 +127 0.373769 0.760657 +SURF 0x30 +mat 1 +refs 3 +129 0.376269 0.696142 +134 0.293659 0.657566 +135 0.293659 0.690695 +SURF 0x30 +mat 1 +refs 3 +134 0.293659 0.657566 +129 0.376269 0.696142 +128 0.376269 0.657566 +SURF 0x30 +mat 1 +refs 3 +130 0.376269 0.728854 +135 0.293659 0.690695 +136 0.293659 0.721637 +SURF 0x30 +mat 1 +refs 3 +135 0.293659 0.690695 +130 0.376269 0.728854 +129 0.376269 0.696142 +SURF 0x30 +mat 1 +refs 3 +131 0.373769 0.892367 +136 0.291159 0.863304 +137 0.291159 0.883978 +SURF 0x30 +mat 1 +refs 3 +136 0.291159 0.863304 +131 0.373769 0.892367 +130 0.373769 0.87052 +SURF 0x30 +mat 1 +refs 3 +132 0.373769 0.900041 +137 0.291159 0.883978 +138 0.291159 0.891234 +SURF 0x30 +mat 1 +refs 3 +137 0.291159 0.883978 +132 0.373769 0.900041 +131 0.373769 0.892367 +SURF 0x30 +mat 1 +refs 3 +15 0.291159 0.883978 +156 0.218752 0.871951 +21 0.218752 0.865679 +SURF 0x30 +mat 1 +refs 3 +156 0.218752 0.871951 +15 0.291159 0.883978 +138 0.291159 0.891234 +SURF 0x30 +mat 1 +refs 3 +83 0.101369 0.70426 +79 0.0918688 0.698982 +82 0.0918688 0.703306 +SURF 0x30 +mat 1 +refs 3 +79 0.0918688 0.698982 +83 0.101369 0.70426 +80 0.101369 0.696974 +SURF 0x30 +mat 1 +refs 3 +81 0.115173 0.700483 +77 0.101369 0.694409 +80 0.101369 0.696974 +SURF 0x30 +mat 1 +refs 3 +77 0.101369 0.694409 +81 0.115173 0.700483 +78 0.115173 0.696736 +SURF 0x30 +mat 1 +refs 3 +80 0.101369 0.696974 +76 0.0918688 0.697461 +79 0.0918688 0.698982 +SURF 0x30 +mat 1 +refs 3 +76 0.0918688 0.697461 +80 0.101369 0.696974 +77 0.101369 0.694409 +SURF 0x30 +mat 1 +refs 3 +78 0.115173 0.696736 +75 0.101369 0.696974 +77 0.101369 0.694409 +SURF 0x30 +mat 1 +refs 3 +75 0.101369 0.696974 +78 0.115173 0.696736 +8 0.115173 0.700483 +SURF 0x30 +mat 1 +refs 3 +134 0.293659 0.657566 +146 0.221252 0.615532 +148 0.221252 0.64703 +SURF 0x30 +mat 1 +refs 3 +146 0.218752 0.757199 +134 0.291159 0.799233 +133 0.291159 0.762745 +SURF 0x30 +mat 1 +refs 3 +135 0.293659 0.690695 +148 0.221252 0.64703 +150 0.221252 0.679463 +SURF 0x30 +mat 1 +refs 3 +148 0.221252 0.64703 +135 0.293659 0.690695 +134 0.293659 0.657566 +SURF 0x30 +mat 1 +refs 3 +136 0.293659 0.721637 +150 0.221252 0.679463 +152 0.221252 0.706171 +SURF 0x30 +mat 1 +refs 3 +150 0.221252 0.679463 +136 0.293659 0.721637 +135 0.293659 0.690695 +SURF 0x30 +mat 1 +refs 3 +137 0.291159 0.883978 +152 0.218752 0.847838 +155 0.218752 0.865679 +SURF 0x30 +mat 1 +refs 3 +152 0.218752 0.847838 +137 0.291159 0.883978 +136 0.291159 0.863304 +SURF 0x30 +mat 1 +refs 3 +138 0.291159 0.891234 +155 0.218752 0.865679 +156 0.218752 0.871951 +SURF 0x30 +mat 1 +refs 3 +155 0.218752 0.865679 +138 0.291159 0.891234 +137 0.291159 0.883978 +SURF 0x30 +mat 1 +refs 3 +21 0.218752 0.865679 +153 0.159328 0.845621 +20 0.159328 0.840184 +SURF 0x30 +mat 1 +refs 3 +153 0.159328 0.845621 +21 0.218752 0.865679 +156 0.218752 0.871951 +SURF 0x30 +mat 1 +refs 3 +77 0.101369 0.694409 +74 0.0918688 0.698982 +76 0.0918688 0.697461 +SURF 0x30 +mat 1 +refs 3 +74 0.0918688 0.698982 +77 0.101369 0.694409 +75 0.101369 0.696974 +SURF 0x30 +mat 1 +refs 3 +8 0.115173 0.700483 +73 0.101369 0.70426 +75 0.101369 0.696974 +SURF 0x30 +mat 1 +refs 3 +73 0.101369 0.70426 +8 0.115173 0.700483 +9 0.115173 0.711158 +SURF 0x30 +mat 1 +refs 3 +75 0.101369 0.696974 +72 0.0918688 0.703306 +74 0.0918688 0.698982 +SURF 0x30 +mat 1 +refs 3 +72 0.0918688 0.703306 +75 0.101369 0.696974 +73 0.101369 0.70426 +SURF 0x30 +mat 1 +refs 3 +9 0.115173 0.711158 +71 0.101369 0.715164 +73 0.101369 0.70426 +SURF 0x30 +mat 1 +refs 3 +71 0.101369 0.715164 +9 0.115173 0.711158 +6 0.115173 0.727121 +SURF 0x30 +mat 1 +refs 3 +73 0.101369 0.70426 +70 0.0918688 0.709776 +72 0.0918688 0.703306 +SURF 0x30 +mat 1 +refs 3 +70 0.0918688 0.709776 +73 0.101369 0.70426 +71 0.101369 0.715164 +SURF 0x30 +mat 1 +refs 3 +6 0.115173 0.727121 +69 0.101369 0.731425 +71 0.101369 0.715164 +SURF 0x30 +mat 1 +refs 3 +69 0.101369 0.731425 +6 0.115173 0.727121 +4 0.115173 0.745957 +SURF 0x30 +mat 1 +refs 3 +140 0.218752 0.706377 +30 0.159328 0.711545 +139 0.159328 0.706109 +SURF 0x30 +mat 1 +refs 3 +30 0.159328 0.711545 +140 0.218752 0.706377 +33 0.218752 0.712639 +SURF 0x30 +mat 1 +refs 3 +142 0.218752 0.712639 +139 0.159328 0.706109 +141 0.159328 0.711545 +SURF 0x30 +mat 1 +refs 3 +139 0.159328 0.706109 +142 0.218752 0.712639 +140 0.218752 0.706377 +SURF 0x30 +mat 1 +refs 3 +144 0.218752 0.73049 +141 0.159328 0.711545 +143 0.159328 0.727041 +SURF 0x30 +mat 1 +refs 3 +141 0.159328 0.711545 +144 0.218752 0.73049 +142 0.218752 0.712639 +SURF 0x30 +mat 1 +refs 3 +146 0.221252 0.615532 +143 0.161828 0.585375 +145 0.161828 0.608554 +SURF 0x30 +mat 1 +refs 3 +143 0.159328 0.727041 +146 0.218752 0.757199 +144 0.218752 0.73049 +SURF 0x30 +mat 1 +refs 3 +148 0.221252 0.64703 +145 0.161828 0.608554 +147 0.161828 0.635908 +SURF 0x30 +mat 1 +refs 3 +145 0.161828 0.608554 +148 0.221252 0.64703 +146 0.221252 0.615532 +SURF 0x30 +mat 1 +refs 3 +150 0.221252 0.679463 +147 0.161828 0.635908 +149 0.161828 0.659843 +SURF 0x30 +mat 1 +refs 3 +147 0.161828 0.635908 +150 0.221252 0.679463 +148 0.221252 0.64703 +SURF 0x30 +mat 1 +refs 3 +152 0.221252 0.706171 +149 0.161828 0.659843 +151 0.161828 0.683022 +SURF 0x30 +mat 1 +refs 3 +149 0.161828 0.659843 +152 0.221252 0.706171 +150 0.221252 0.679463 +SURF 0x30 +mat 1 +refs 3 +155 0.218752 0.865679 +151 0.159328 0.824688 +154 0.159328 0.840184 +SURF 0x30 +mat 1 +refs 3 +151 0.159328 0.824688 +155 0.218752 0.865679 +152 0.218752 0.847838 +SURF 0x30 +mat 1 +refs 3 +156 0.218752 0.871951 +154 0.159328 0.840184 +153 0.159328 0.845621 +SURF 0x30 +mat 1 +refs 3 +154 0.159328 0.840184 +156 0.218752 0.871951 +155 0.218752 0.865679 +SURF 0x30 +mat 1 +refs 3 +71 0.101369 0.715164 +68 0.0918688 0.718354 +70 0.0918688 0.709776 +SURF 0x30 +mat 1 +refs 3 +68 0.0918688 0.718354 +71 0.101369 0.715164 +69 0.101369 0.731425 +SURF 0x30 +mat 1 +refs 3 +4 0.115173 0.745957 +67 0.101369 0.744297 +69 0.101369 0.731425 +SURF 0x30 +mat 1 +refs 3 +67 0.101369 0.744297 +4 0.115173 0.745957 +2 0.115173 0.764802 +SURF 0x30 +mat 1 +refs 3 +69 0.101369 0.731425 +66 0.0918688 0.725988 +68 0.0918688 0.718354 +SURF 0x30 +mat 1 +refs 3 +66 0.0918688 0.725988 +69 0.101369 0.731425 +67 0.101369 0.744297 +SURF 0x30 +mat 1 +refs 3 +2 0.115173 0.764802 +65 0.101369 0.7552 +67 0.101369 0.744297 +SURF 0x30 +mat 1 +refs 3 +65 0.101369 0.7552 +2 0.115173 0.764802 +0 0.115173 0.780765 +SURF 0x30 +mat 1 +refs 3 +67 0.101369 0.744297 +64 0.0918688 0.732458 +66 0.0918688 0.725988 +SURF 0x30 +mat 1 +refs 3 +64 0.0918688 0.732458 +67 0.101369 0.744297 +65 0.101369 0.7552 +SURF 0x30 +mat 1 +refs 3 +0 0.115173 0.780765 +62 0.101369 0.762496 +65 0.101369 0.7552 +SURF 0x30 +mat 1 +refs 3 +62 0.101369 0.762496 +0 0.115173 0.780765 +63 0.115173 0.79144 +SURF 0x30 +mat 1 +refs 3 +65 0.101369 0.7552 +61 0.0918688 0.736782 +64 0.0918688 0.732458 +SURF 0x30 +mat 1 +refs 3 +61 0.0918688 0.736782 +65 0.101369 0.7552 +62 0.101369 0.762496 +SURF 0x30 +mat 1 +refs 3 +63 0.115173 0.79144 +102 0.101369 0.765051 +62 0.101369 0.762496 +SURF 0x30 +mat 1 +refs 3 +102 0.101369 0.765051 +63 0.115173 0.79144 +101 0.115173 0.795188 +SURF 0x30 +mat 1 +refs 3 +62 0.101369 0.762496 +97 0.0918688 0.738303 +61 0.0918688 0.736782 +SURF 0x30 +mat 1 +refs 3 +97 0.0918688 0.738303 +62 0.101369 0.762496 +102 0.101369 0.765051 +SURF 0x30 +mat 1 +refs 3 +58 0.0874849 0.720094 +98 0.0918688 0.736782 +60 0.0874849 0.719388 +SURF 0x30 +mat 1 +refs 3 +98 0.0918688 0.736782 +58 0.0874849 0.720094 +97 0.0918688 0.738303 +SURF 0x30 +mat 1 +refs 3 +60 0.0874849 0.719388 +94 0.0918688 0.732458 +57 0.0874849 0.71737 +SURF 0x30 +mat 1 +refs 3 +94 0.0918688 0.732458 +60 0.0874849 0.719388 +98 0.0918688 0.736782 +SURF 0x30 +mat 1 +refs 3 +57 0.0874849 0.71737 +91 0.0918688 0.725988 +56 0.0874849 0.714358 +SURF 0x30 +mat 1 +refs 3 +91 0.0918688 0.725988 +57 0.0874849 0.71737 +94 0.0918688 0.732458 +SURF 0x30 +mat 1 +refs 3 +91 0.0918688 0.725988 +55 0.0874849 0.7108 +56 0.0874849 0.714358 +SURF 0x30 +mat 1 +refs 3 +55 0.0874849 0.7108 +91 0.0918688 0.725988 +88 0.0918688 0.718354 +SURF 0x30 +mat 1 +refs 3 +88 0.0918688 0.718354 +54 0.0874849 0.707242 +55 0.0874849 0.7108 +SURF 0x30 +mat 1 +refs 3 +54 0.0874849 0.707242 +88 0.0918688 0.718354 +85 0.0918688 0.709776 +SURF 0x30 +mat 1 +refs 3 +85 0.0918688 0.709776 +53 0.0874849 0.70422 +54 0.0874849 0.707242 +SURF 0x30 +mat 1 +refs 3 +53 0.0874849 0.70422 +85 0.0918688 0.709776 +82 0.0918688 0.703306 +SURF 0x30 +mat 1 +refs 3 +82 0.0918688 0.703306 +52 0.0874849 0.702212 +53 0.0874849 0.70422 +SURF 0x30 +mat 1 +refs 3 +52 0.0874849 0.702212 +82 0.0918688 0.703306 +79 0.0918688 0.698982 +SURF 0x30 +mat 1 +refs 3 +52 0.0874849 0.702212 +76 0.0918688 0.697461 +51 0.0874849 0.701496 +SURF 0x30 +mat 1 +refs 3 +76 0.0918688 0.697461 +52 0.0874849 0.702212 +79 0.0918688 0.698982 +SURF 0x30 +mat 1 +refs 3 +51 0.0874849 0.701496 +74 0.0918688 0.698982 +50 0.0874849 0.702212 +SURF 0x30 +mat 1 +refs 3 +74 0.0918688 0.698982 +51 0.0874849 0.701496 +76 0.0918688 0.697461 +SURF 0x30 +mat 1 +refs 3 +74 0.0918688 0.698982 +49 0.0874849 0.70422 +50 0.0874849 0.702212 +SURF 0x30 +mat 1 +refs 3 +49 0.0874849 0.70422 +74 0.0918688 0.698982 +72 0.0918688 0.703306 +SURF 0x30 +mat 1 +refs 3 +72 0.0918688 0.703306 +48 0.0874849 0.707242 +49 0.0874849 0.70422 +SURF 0x30 +mat 1 +refs 3 +48 0.0874849 0.707242 +72 0.0918688 0.703306 +70 0.0918688 0.709776 +SURF 0x30 +mat 1 +refs 3 +70 0.0918688 0.709776 +47 0.0874849 0.7108 +48 0.0874849 0.707242 +SURF 0x30 +mat 1 +refs 3 +47 0.0874849 0.7108 +70 0.0918688 0.709776 +68 0.0918688 0.718354 +SURF 0x30 +mat 1 +refs 3 +68 0.0918688 0.718354 +46 0.0874849 0.714348 +47 0.0874849 0.7108 +SURF 0x30 +mat 1 +refs 3 +46 0.0874849 0.714348 +68 0.0918688 0.718354 +66 0.0918688 0.725988 +SURF 0x30 +mat 1 +refs 3 +66 0.0918688 0.725988 +45 0.0874849 0.71737 +46 0.0874849 0.714348 +SURF 0x30 +mat 1 +refs 3 +45 0.0874849 0.71737 +66 0.0918688 0.725988 +64 0.0918688 0.732458 +SURF 0x30 +mat 1 +refs 3 +64 0.0918688 0.732458 +44 0.0874849 0.719388 +45 0.0874849 0.71737 +SURF 0x30 +mat 1 +refs 3 +44 0.0874849 0.719388 +64 0.0918688 0.732458 +61 0.0918688 0.736782 +SURF 0x30 +mat 1 +refs 3 +61 0.0918688 0.736782 +58 0.0874849 0.720094 +44 0.0874849 0.719388 +SURF 0x30 +mat 1 +refs 3 +58 0.0874849 0.720094 +61 0.0918688 0.736782 +97 0.0918688 0.738303 +SURF 0x30 +mat 1 +refs 3 +153 0.159328 0.845621 +42 0.135202 0.81944 +43 0.135202 0.823963 +SURF 0x30 +mat 1 +refs 3 +42 0.135202 0.81944 +153 0.159328 0.845621 +154 0.159328 0.840184 +SURF 0x30 +mat 1 +refs 3 +101 0.115173 0.795188 +42 0.135202 0.81944 +100 0.115173 0.79144 +SURF 0x30 +mat 1 +refs 3 +42 0.135202 0.81944 +101 0.115173 0.795188 +43 0.135202 0.823963 +SURF 0x30 +mat 1 +refs 3 +154 0.159328 0.840184 +41 0.135202 0.806588 +42 0.135202 0.81944 +SURF 0x30 +mat 1 +refs 3 +41 0.135202 0.806588 +154 0.159328 0.840184 +151 0.159328 0.824688 +SURF 0x30 +mat 1 +refs 3 +42 0.135202 0.81944 +96 0.115173 0.780765 +100 0.115173 0.79144 +SURF 0x30 +mat 1 +refs 3 +96 0.115173 0.780765 +42 0.135202 0.81944 +41 0.135202 0.806588 +SURF 0x30 +mat 1 +refs 3 +151 0.161828 0.683022 +40 0.137702 0.645679 +41 0.137702 0.664922 +SURF 0x30 +mat 1 +refs 3 +40 0.137702 0.645679 +151 0.161828 0.683022 +149 0.161828 0.659843 +SURF 0x30 +mat 1 +refs 3 +41 0.135202 0.806588 +93 0.115173 0.764802 +96 0.115173 0.780765 +SURF 0x30 +mat 1 +refs 3 +93 0.117673 0.623136 +41 0.137702 0.664922 +40 0.137702 0.645679 +SURF 0x30 +mat 1 +refs 3 +149 0.161828 0.659843 +39 0.137702 0.619875 +40 0.137702 0.645679 +SURF 0x30 +mat 1 +refs 3 +39 0.137702 0.619875 +149 0.161828 0.659843 +147 0.161828 0.635908 +SURF 0x30 +mat 1 +refs 3 +40 0.137702 0.645679 +90 0.117673 0.60429 +93 0.117673 0.623136 +SURF 0x30 +mat 1 +refs 3 +90 0.117673 0.60429 +40 0.137702 0.645679 +39 0.137702 0.619875 +SURF 0x30 +mat 1 +refs 3 +147 0.161828 0.635908 +38 0.137702 0.595941 +39 0.137702 0.619875 +SURF 0x30 +mat 1 +refs 3 +38 0.137702 0.595941 +147 0.161828 0.635908 +145 0.161828 0.608554 +SURF 0x30 +mat 1 +refs 3 +39 0.137702 0.619875 +87 0.117673 0.585454 +90 0.117673 0.60429 +SURF 0x30 +mat 1 +refs 3 +87 0.117673 0.585454 +39 0.137702 0.619875 +38 0.137702 0.595941 +SURF 0x30 +mat 1 +refs 3 +145 0.161828 0.608554 +37 0.137702 0.576698 +38 0.137702 0.595941 +SURF 0x30 +mat 1 +refs 3 +37 0.137702 0.576698 +145 0.161828 0.608554 +143 0.161828 0.585375 +SURF 0x30 +mat 1 +refs 3 +38 0.137702 0.595941 +84 0.117673 0.569491 +87 0.117673 0.585454 +SURF 0x30 +mat 1 +refs 3 +84 0.117673 0.569491 +38 0.137702 0.595941 +37 0.137702 0.576698 +SURF 0x30 +mat 1 +refs 3 +143 0.159328 0.727041 +36 0.135202 0.705503 +37 0.135202 0.718364 +SURF 0x30 +mat 1 +refs 3 +36 0.135202 0.705503 +143 0.159328 0.727041 +141 0.159328 0.711545 +SURF 0x30 +mat 1 +refs 3 +37 0.135202 0.718364 +81 0.115173 0.700483 +84 0.115173 0.711158 +SURF 0x30 +mat 1 +refs 3 +81 0.115173 0.700483 +37 0.135202 0.718364 +36 0.135202 0.705503 +SURF 0x30 +mat 1 +refs 3 +141 0.159328 0.711545 +35 0.135202 0.70099 +36 0.135202 0.705503 +SURF 0x30 +mat 1 +refs 3 +35 0.135202 0.70099 +141 0.159328 0.711545 +139 0.159328 0.706109 +SURF 0x30 +mat 1 +refs 3 +36 0.135202 0.705503 +78 0.115173 0.696736 +81 0.115173 0.700483 +SURF 0x30 +mat 1 +refs 3 +78 0.115173 0.696736 +36 0.135202 0.705503 +35 0.135202 0.70099 +SURF 0x30 +mat 1 +refs 3 +139 0.159328 0.706109 +11 0.135202 0.705503 +35 0.135202 0.70099 +SURF 0x30 +mat 1 +refs 3 +11 0.135202 0.705503 +139 0.159328 0.706109 +30 0.159328 0.711545 +SURF 0x30 +mat 1 +refs 3 +35 0.135202 0.70099 +8 0.115173 0.700483 +78 0.115173 0.696736 +SURF 0x30 +mat 1 +refs 3 +8 0.115173 0.700483 +35 0.135202 0.70099 +11 0.135202 0.705503 +SURF 0x30 +mat 1 +refs 3 +22 0.159328 0.824688 +34 0.135202 0.81944 +1 0.135202 0.806588 +SURF 0x30 +mat 1 +refs 3 +34 0.135202 0.81944 +22 0.159328 0.824688 +20 0.159328 0.840184 +SURF 0x30 +mat 1 +refs 3 +1 0.135202 0.806588 +63 0.115173 0.79144 +0 0.115173 0.780765 +SURF 0x30 +mat 1 +refs 3 +63 0.115173 0.79144 +1 0.135202 0.806588 +34 0.135202 0.81944 +SURF 0x30 +mat 1 +refs 3 +20 0.159328 0.840184 +43 0.135202 0.823963 +34 0.135202 0.81944 +SURF 0x30 +mat 1 +refs 3 +43 0.135202 0.823963 +20 0.159328 0.840184 +153 0.159328 0.845621 +SURF 0x30 +mat 1 +refs 3 +34 0.135202 0.81944 +101 0.115173 0.795188 +63 0.115173 0.79144 +SURF 0x30 +mat 1 +refs 3 +101 0.115173 0.795188 +34 0.135202 0.81944 +43 0.135202 0.823963 +SURF 0x30 +mat 1 +refs 3 +87 0.115173 0.727121 +83 0.101369 0.70426 +86 0.101369 0.715164 +SURF 0x30 +mat 1 +refs 3 +83 0.101369 0.70426 +87 0.115173 0.727121 +84 0.115173 0.711158 +kids 0 +OBJECT poly +name "Rudder" +loc 0.616311 0.0243796 2.88285e-05 +texture "wing.jpg" +crease 45.000000 +numvert 60 +0 0.0303703 -0.00402665 +0 -0.0378708 -0.00438512 +0 -0.0541999 -0.00424698 +0 -0.0265277 -0.00438285 +0 -0.022853 -0.00437914 +0 -0.0566816 -0.00378285 +0 0.0303703 0.00402455 +0 -0.0532154 0.00428964 +0 -0.0378708 0.00438512 +0 -0.0265277 0.00438074 +0 -0.022853 0.00437703 +0 -0.0541999 0.00424899 +0 0.000652727 -0.00433815 +0 0.0116502 -0.00422651 +0 0.000652727 0.00433604 +0 0.0116502 0.0042244 +0 -0.0566816 0.00378259 +0 0.0566816 0.00353139 +0 0.049583 0.00366482 +0 0.0566816 -0.0035335 +0 0.049583 -0.00366693 +0 -0.0532154 -0.00428745 +0.0365298 -0.0265277 -3.5835e-06 +0.01364 -0.0565234 0.00339777 +0.0313543 -0.0534555 0.00184113 +0.0375757 -0.0507263 -3.58355e-06 +0.0371814 -0.0461677 -3.58355e-06 +0.0313543 -0.0534555 -0.00184324 +0.01364 -0.0565234 -0.00339988 +0.00493205 0.000652727 0.00424685 +0.0212817 0.000652727 0.0032512 +0.0322035 0.000652727 0.00176027 +0.0360347 0.000652727 -3.5835e-06 +0.0322035 0.000652727 -0.00176238 +0.0212817 0.000652727 -0.00325331 +0.00493205 0.000652727 -0.00424896 +0.0315262 0.0303703 0.0016036 +0.0348161 0.0303703 -3.58345e-06 +0.0315262 0.0303703 -0.00160571 +0.0309147 0.0566816 0.00137616 +0.0337098 0.0566816 -3.5834e-06 +0.0309147 0.0566816 -0.00137322 +0.0221611 0.0303703 0.00295807 +0.00814128 0.0303703 0.0038678 +0.0221611 0.0303703 -0.00296018 +0.00814128 0.0303703 -0.0038699 +0.0229547 0.0566816 0.00253859 +0.0110424 0.0566816 0.00331691 +0.0229547 0.0566816 -0.0025407 +0.0110424 0.0566816 -0.00331901 +0.0322085 -0.0478707 -0.00184324 +0.0322995 -0.0265277 -0.00180281 +0.0180572 -0.0506 -0.00339988 +0.0202608 -0.0265277 -0.00332406 +0.00224328 -0.0265277 -0.00434498 +0.0202608 -0.0265277 0.00332701 +0.0180572 -0.0506 0.00339777 +0.0322085 -0.0478707 0.00184113 +0.0322995 -0.0265277 0.0018007 +0.00224328 -0.0265277 0.00434287 +numsurf 87 +SURF 0x30 +mat 1 +refs 3 +54 0.136913 0.0967237 +21 0.140373 0.0460202 +1 0.140373 0.0751733 +SURF 0x30 +mat 1 +refs 3 +21 0.140373 0.0460202 +54 0.136913 0.0967237 +52 0.112525 0.050989 +SURF 0x30 +mat 1 +refs 3 +52 0.112525 0.050989 +2 0.140373 0.0441495 +21 0.140373 0.0460202 +SURF 0x30 +mat 1 +refs 3 +2 0.140373 0.0441495 +52 0.112525 0.050989 +28 0.119337 0.0397353 +SURF 0x30 +mat 1 +refs 3 +49 0.123343 0.254813 +20 0.140372 0.241326 +19 0.140372 0.254813 +SURF 0x30 +mat 1 +refs 3 +20 0.140372 0.241326 +49 0.123343 0.254813 +45 0.127817 0.204824 +SURF 0x30 +mat 1 +refs 3 +43 0.127817 0.204824 +17 0.140372 0.254813 +18 0.140372 0.241326 +SURF 0x30 +mat 1 +refs 3 +17 0.140372 0.254813 +43 0.127817 0.204824 +47 0.123343 0.254813 +SURF 0x30 +mat 1 +refs 3 +29 0.132766 0.148364 +6 0.140373 0.204824 +15 0.140372 0.169258 +SURF 0x30 +mat 1 +refs 3 +6 0.140373 0.204824 +29 0.132766 0.148364 +43 0.127817 0.204824 +SURF 0x30 +mat 1 +refs 3 +59 0.136913 0.0967237 +14 0.140372 0.148364 +10 0.140373 0.103705 +SURF 0x30 +mat 1 +refs 3 +14 0.140372 0.148364 +59 0.136913 0.0967237 +29 0.132766 0.148364 +SURF 0x30 +mat 1 +refs 3 +45 0.127817 0.204824 +13 0.140372 0.169258 +0 0.140373 0.204824 +SURF 0x30 +mat 1 +refs 3 +13 0.140372 0.169258 +45 0.127817 0.204824 +35 0.132766 0.148364 +SURF 0x30 +mat 1 +refs 3 +35 0.132766 0.148364 +4 0.140373 0.103705 +12 0.140372 0.148364 +SURF 0x30 +mat 1 +refs 3 +4 0.140373 0.103705 +35 0.132766 0.148364 +54 0.136913 0.0967237 +SURF 0x30 +mat 1 +refs 3 +23 0.119337 0.0397353 +7 0.140373 0.0460202 +11 0.140373 0.0441495 +SURF 0x30 +mat 1 +refs 3 +7 0.140373 0.0460202 +23 0.119337 0.0397353 +56 0.112525 0.050989 +SURF 0x30 +mat 1 +refs 3 +56 0.233102 0.050989 +8 0.205254 0.0751733 +7 0.205254 0.0460202 +SURF 0x30 +mat 1 +refs 3 +8 0.205254 0.0751733 +56 0.233102 0.050989 +59 0.208714 0.0967237 +SURF 0x30 +mat 1 +refs 3 +27 0.0920178 0.0455638 +25 0.082423 0.0507489 +24 0.0920178 0.0455638 +SURF 0x30 +mat 1 +refs 3 +38 0.0917528 0.204824 +48 0.104972 0.254813 +41 0.0926961 0.254813 +SURF 0x30 +mat 1 +refs 3 +48 0.104972 0.254813 +38 0.0917528 0.204824 +44 0.106196 0.204824 +SURF 0x30 +mat 1 +refs 3 +38 0.0917528 0.204824 +40 0.088386 0.254813 +37 0.0866789 0.204824 +SURF 0x30 +mat 1 +refs 3 +40 0.088386 0.254813 +38 0.0917528 0.204824 +41 0.0926961 0.254813 +SURF 0x30 +mat 1 +refs 3 +40 0.088386 0.254813 +36 0.0917528 0.204824 +37 0.0866789 0.204824 +SURF 0x30 +mat 1 +refs 3 +36 0.0917528 0.204824 +40 0.088386 0.254813 +39 0.0926961 0.254813 +SURF 0x30 +mat 1 +refs 3 +46 0.104972 0.254813 +36 0.0917528 0.204824 +39 0.0926961 0.254813 +SURF 0x30 +mat 1 +refs 3 +36 0.0917528 0.204824 +46 0.104972 0.254813 +42 0.106196 0.204824 +SURF 0x30 +mat 1 +refs 3 +34 0.107552 0.148364 +45 0.127817 0.204824 +44 0.106196 0.204824 +SURF 0x30 +mat 1 +refs 3 +45 0.127817 0.204824 +34 0.107552 0.148364 +35 0.132766 0.148364 +SURF 0x30 +mat 1 +refs 3 +33 0.0907085 0.148364 +44 0.106196 0.204824 +38 0.0917528 0.204824 +SURF 0x30 +mat 1 +refs 3 +44 0.106196 0.204824 +33 0.0907085 0.148364 +34 0.107552 0.148364 +SURF 0x30 +mat 1 +refs 3 +33 0.0907085 0.148364 +37 0.0866789 0.204824 +32 0.0848006 0.148364 +SURF 0x30 +mat 1 +refs 3 +37 0.0866789 0.204824 +33 0.0907085 0.148364 +38 0.0917528 0.204824 +SURF 0x30 +mat 1 +refs 3 +37 0.0866789 0.204824 +31 0.0907085 0.148364 +32 0.0848006 0.148364 +SURF 0x30 +mat 1 +refs 3 +31 0.0907085 0.148364 +37 0.0866789 0.204824 +36 0.0917528 0.204824 +SURF 0x30 +mat 1 +refs 3 +42 0.106196 0.204824 +31 0.0907085 0.148364 +36 0.0917528 0.204824 +SURF 0x30 +mat 1 +refs 3 +31 0.0907085 0.148364 +42 0.106196 0.204824 +30 0.107552 0.148364 +SURF 0x30 +mat 1 +refs 3 +43 0.127817 0.204824 +30 0.107552 0.148364 +42 0.106196 0.204824 +SURF 0x30 +mat 1 +refs 3 +30 0.107552 0.148364 +43 0.127817 0.204824 +29 0.132766 0.148364 +SURF 0x30 +mat 1 +refs 3 +27 0.0920178 0.0455638 +52 0.112525 0.050989 +50 0.0907007 0.0561741 +SURF 0x30 +mat 1 +refs 3 +52 0.112525 0.050989 +27 0.0920178 0.0455638 +28 0.119337 0.0397353 +SURF 0x30 +mat 1 +refs 3 +25 0.082423 0.0507489 +50 0.0907007 0.0561741 +26 0.0830311 0.05941 +SURF 0x30 +mat 1 +refs 3 +50 0.0907007 0.0561741 +25 0.082423 0.0507489 +27 0.0920178 0.0455638 +SURF 0x30 +mat 1 +refs 3 +57 0.0907007 0.0561741 +25 0.082423 0.0507489 +26 0.0830311 0.05941 +SURF 0x30 +mat 1 +refs 3 +25 0.082423 0.0507489 +57 0.0907007 0.0561741 +24 0.0920178 0.0455638 +SURF 0x30 +mat 1 +refs 3 +56 0.112525 0.050989 +24 0.0920178 0.0455638 +57 0.0907007 0.0561741 +SURF 0x30 +mat 1 +refs 3 +24 0.0920178 0.0455638 +56 0.112525 0.050989 +23 0.119337 0.0397353 +SURF 0x30 +mat 1 +refs 3 +53 0.109126 0.0967237 +35 0.132766 0.148364 +34 0.107552 0.148364 +SURF 0x30 +mat 1 +refs 3 +35 0.132766 0.148364 +53 0.109126 0.0967237 +54 0.136913 0.0967237 +SURF 0x30 +mat 1 +refs 3 +51 0.0905605 0.0967237 +34 0.107552 0.148364 +33 0.0907085 0.148364 +SURF 0x30 +mat 1 +refs 3 +34 0.107552 0.148364 +51 0.0905605 0.0967237 +53 0.109126 0.0967237 +SURF 0x30 +mat 1 +refs 3 +26 0.0830311 0.05941 +51 0.0905605 0.0967237 +22 0.0840368 0.0967237 +SURF 0x30 +mat 1 +refs 3 +51 0.0905605 0.0967237 +26 0.0830311 0.05941 +50 0.0907007 0.0561741 +SURF 0x30 +mat 1 +refs 3 +51 0.0905605 0.0967237 +32 0.0848006 0.148364 +22 0.0840368 0.0967237 +SURF 0x30 +mat 1 +refs 3 +32 0.0848006 0.148364 +51 0.0905605 0.0967237 +33 0.0907085 0.148364 +SURF 0x30 +mat 1 +refs 3 +58 0.0905605 0.0967237 +26 0.0830311 0.05941 +22 0.0840368 0.0967237 +SURF 0x30 +mat 1 +refs 3 +26 0.0830311 0.05941 +58 0.0905605 0.0967237 +57 0.0907007 0.0561741 +SURF 0x30 +mat 1 +refs 3 +32 0.0848006 0.148364 +58 0.0905605 0.0967237 +22 0.0840368 0.0967237 +SURF 0x30 +mat 1 +refs 3 +58 0.0905605 0.0967237 +32 0.0848006 0.148364 +31 0.0907085 0.148364 +SURF 0x30 +mat 1 +refs 3 +30 0.107552 0.148364 +58 0.0905605 0.0967237 +31 0.0907085 0.148364 +SURF 0x30 +mat 1 +refs 3 +58 0.0905605 0.0967237 +30 0.107552 0.148364 +55 0.109126 0.0967237 +SURF 0x30 +mat 1 +refs 3 +29 0.132766 0.148364 +55 0.109126 0.0967237 +30 0.107552 0.148364 +SURF 0x30 +mat 1 +refs 3 +55 0.109126 0.0967237 +29 0.132766 0.148364 +59 0.136913 0.0967237 +SURF 0x30 +mat 1 +refs 3 +23 0.119337 0.0397353 +27 0.0920178 0.0455638 +24 0.0920178 0.0455638 +SURF 0x30 +mat 1 +refs 3 +27 0.0920178 0.0455638 +23 0.119337 0.0397353 +28 0.119337 0.0397353 +SURF 0x30 +mat 1 +refs 3 +44 0.106196 0.204824 +49 0.123343 0.254813 +48 0.104972 0.254813 +SURF 0x30 +mat 1 +refs 3 +49 0.123343 0.254813 +44 0.106196 0.204824 +45 0.127817 0.204824 +SURF 0x30 +mat 1 +refs 3 +47 0.123343 0.254813 +42 0.106196 0.204824 +46 0.104972 0.254813 +SURF 0x30 +mat 1 +refs 3 +42 0.106196 0.204824 +47 0.123343 0.254813 +43 0.127817 0.204824 +SURF 0x30 +mat 1 +refs 3 +50 0.0907007 0.0561741 +53 0.109126 0.0967237 +51 0.0905605 0.0967237 +SURF 0x30 +mat 1 +refs 3 +53 0.109126 0.0967237 +50 0.0907007 0.0561741 +52 0.112525 0.050989 +SURF 0x30 +mat 1 +refs 3 +52 0.112525 0.050989 +54 0.136913 0.0967237 +53 0.109126 0.0967237 +SURF 0x30 +mat 1 +refs 3 +55 0.109126 0.0967237 +57 0.0907007 0.0561741 +58 0.0905605 0.0967237 +SURF 0x30 +mat 1 +refs 3 +57 0.254926 0.0561741 +55 0.236501 0.0967237 +56 0.233102 0.050989 +SURF 0x30 +mat 1 +refs 3 +59 0.208714 0.0967237 +56 0.233102 0.050989 +55 0.236501 0.0967237 +SURF 0x30 +mat 1 +refs 3 +20 0.140372 0.241326 +45 0.127817 0.204824 +0 0.140373 0.204824 +SURF 0x30 +mat 1 +refs 3 +6 0.140373 0.204824 +43 0.127817 0.204824 +18 0.140372 0.241326 +SURF 0x30 +mat 1 +refs 3 +16 0.140373 0.0394351 +23 0.119337 0.0397353 +11 0.140373 0.0441495 +SURF 0x30 +mat 1 +refs 3 +14 0.140372 0.148364 +29 0.132766 0.148364 +15 0.140372 0.169258 +SURF 0x30 +mat 1 +refs 3 +13 0.140372 0.169258 +35 0.132766 0.148364 +12 0.140372 0.148364 +SURF 0x30 +mat 1 +refs 3 +9 0.140373 0.0967237 +59 0.136913 0.0967237 +10 0.140373 0.103705 +SURF 0x30 +mat 1 +refs 3 +8 0.205254 0.0751733 +59 0.208714 0.0967237 +9 0.205254 0.0967237 +SURF 0x30 +mat 1 +refs 3 +2 0.140373 0.0441495 +28 0.119337 0.0397353 +5 0.140373 0.0394351 +SURF 0x30 +mat 1 +refs 3 +4 0.140373 0.103705 +54 0.136913 0.0967237 +3 0.140373 0.0967237 +SURF 0x30 +mat 1 +refs 3 +3 0.140373 0.0967237 +54 0.136913 0.0967237 +1 0.140373 0.0751733 +kids 0 +OBJECT poly +name "VStab" +loc 0.570234 0.0454228 2.77764e-05 +texture "wing.jpg" +crease 45.000000 +numvert 136 +0.00915033 0.0356384 0.00137722 +0.0769906 0.0356384 0.00137722 +0.0797853 0.0356384 -2.53133e-06 +0.0769906 0.0356384 -0.00137217 +0.0063554 0.0356384 -2.5281e-06 +0.00915033 0.0356384 -0.00137216 +0.0245349 0.0574009 0.00108914 +0.0306146 0.0574009 0.00200897 +0.0763536 0.0574009 0.00108914 +0.0784865 0.0574009 -2.53123e-06 +0.0763536 0.0574009 -0.00108914 +0.0224019 0.0574009 -2.5288e-06 +0.0245349 0.0574009 -0.00108914 +0.0412182 0.0723001 0.000750518 +0.0452764 0.0723001 0.00139237 +0.0513564 0.0723001 0.00181691 +0.0585281 0.0723001 0.00196854 +0.0656997 0.0723001 0.00181691 +0.0717797 0.0723001 0.00139237 +0.0758431 0.0723001 0.000750518 +0.077268 0.0723001 -2.53118e-06 +0.0758431 0.0723001 -0.000750523 +0.0717797 0.0723001 -0.00139238 +0.0656997 0.0723001 -0.00181692 +0.0585281 0.0723001 -0.00196854 +0.0513564 0.0723001 -0.00181692 +0.0452764 0.0723001 -0.00139238 +0.0397928 0.0723001 -2.52956e-06 +0.0412182 0.0723001 -0.000750523 +0.0575173 0.0813316 0.000386629 +0.0593669 0.0813316 0.000710087 +0.0621368 0.0813316 0.000927412 +0.0654066 0.0813316 0.00100322 +0.0686765 0.0813316 0.000927412 +0.0714462 0.0813316 0.000710087 +0.0732959 0.0813316 0.000386628 +0.0739478 0.0813316 -2.53102e-06 +0.0732959 0.0813316 -0.000386637 +0.0714462 0.0813316 -0.000710091 +0.0686765 0.0813316 -0.000927412 +0.0654066 0.0813316 -0.00100322 +0.0621368 0.0813316 -0.000927412 +0.0593669 0.0813316 -0.000710091 +0.0568653 0.0813316 -2.53032e-06 +0.0575173 0.0813316 -0.000386635 +0.0693689 0.0847284 -2.53088e-06 +0.0171105 0.0356384 0.00253964 +0.0290175 0.0356384 0.00331796 +0.0397118 0.0574009 0.00262555 +0.0430678 0.0356384 0.00359088 +0.0504416 0.0574009 0.00284288 +0.0690303 0.0356384 0.00253964 +0.057118 0.0356384 0.00331796 +0.0611764 0.0574009 0.00262555 +0.0702736 0.0574009 0.00200897 +0.0690303 0.0356384 -0.00253964 +0.0702736 0.0574009 -0.00200898 +0.057118 0.0356384 -0.00331796 +0.0611764 0.0574009 -0.00262556 +0.0430678 0.0356384 -0.00359088 +0.0504416 0.0574009 -0.00284288 +0.0171105 0.0356384 -0.00253964 +0.0290175 0.0356384 -0.00331796 +0.0397118 0.0574009 -0.00262556 +0.0306146 0.0574009 -0.00200898 +0.0460758 0.00932714 -0.00402561 +0.0460758 -0.0589139 -0.00438406 +0.0460758 -0.0752431 -0.00424593 +0.0460758 -0.0475709 -0.00438179 +0.0460758 -0.0438962 -0.00437809 +0.0460758 -0.0777248 -0.00378179 +0.0460758 0.00932714 0.0040256 +0.0460758 -0.0742586 0.00429069 +0.0460758 -0.0589139 0.00438617 +0.0460758 -0.0475709 0.00438179 +0.0460758 -0.0438962 0.00437809 +0.0460758 -0.0752431 0.00425003 +0.0460758 -0.0203905 -0.00433711 +0.0460758 -0.00939292 -0.00422545 +0.0460758 -0.0203905 0.0043371 +0.0460758 -0.00939292 0.00422546 +0.0460758 -0.0777248 0.00378365 +0.0460758 0.0356384 0.00353245 +0.0460758 0.0285398 0.00366587 +0.0460758 0.0356384 -0.00353245 +0.0460758 0.0285398 -0.00366587 +0.0460758 -0.0742586 -0.00428639 +-0.0284868 -0.0475709 -2.52658e-06 +-0.0735637 -0.0847284 0.00184219 +-0.0558494 -0.0847284 0.00339883 +0.0217248 -0.0847284 0.0048089 +-0.029341 -0.0847284 0.00444501 +0.0226343 -0.077996 0.00444501 +0.0226343 -0.077996 -0.00443995 +0.0217248 -0.0847284 -0.0048089 +-0.029341 -0.0847284 -0.00443995 +-0.0558494 -0.0847284 -0.00339882 +-0.0797853 -0.0847284 -2.52435e-06 +-0.0735637 -0.0847284 -0.00184219 +-0.0473233 -0.074711 -2.52578e-06 +-0.0148209 -0.0203905 0.00176133 +-0.0186568 -0.0203905 -2.52698e-06 +-0.0148209 -0.0203905 -0.00176132 +-0.00224656 0.00932714 0.00160465 +-0.00553674 0.00932714 -2.52759e-06 +-0.00224656 0.00932714 -0.00160464 +-0.00389922 -0.0203905 0.00325226 +0.0317265 -0.0203905 0.00459662 +0.0124456 -0.0203905 0.0042479 +0.0317265 -0.0203905 -0.00459663 +-0.00389922 -0.0203905 -0.00325226 +0.0124456 -0.0203905 -0.00424789 +0.00712371 0.00932714 0.00295912 +0.0211435 0.00932714 0.00386885 +0.0376803 0.00932714 0.00418725 +0.0376803 0.00932714 -0.00418725 +0.00712371 0.00932714 -0.00295912 +0.0211435 0.00932714 -0.00386884 +0.0429515 -0.074711 -0.00443996 +0.0179645 -0.074711 -0.00480889 +0.0270617 -0.0475709 -0.00470276 +-0.00702256 -0.074711 -0.00443995 +0.00580454 -0.0475709 -0.00434392 +-0.0242568 -0.0475709 -0.00180176 +-0.0423552 -0.074711 -0.00184219 +-0.0282038 -0.074711 -0.00339882 +-0.012218 -0.0475709 -0.00332301 +0.0429515 -0.074711 0.00444501 +0.0270617 -0.0475709 0.00470276 +0.0179645 -0.074711 0.0048089 +0.00580454 -0.0475709 0.00434393 +-0.00702256 -0.074711 0.00444501 +-0.012218 -0.0475709 0.00332807 +-0.0282038 -0.074711 0.00339883 +-0.0242568 -0.0475709 0.00180176 +-0.0423552 -0.074711 0.00184219 +numsurf 228 +SURF 0x30 +mat 1 +refs 3 +59 0.145011 0.254813 +65 0.140373 0.204824 +115 0.15332 0.204824 +SURF 0x30 +mat 1 +refs 3 +65 0.140373 0.204824 +59 0.145011 0.254813 +85 0.140372 0.241326 +SURF 0x30 +mat 1 +refs 3 +71 0.140373 0.204824 +49 0.145011 0.254813 +114 0.15332 0.204824 +SURF 0x30 +mat 1 +refs 3 +49 0.145011 0.254813 +71 0.140373 0.204824 +83 0.140372 0.241326 +SURF 0x30 +mat 1 +refs 3 +81 0.140373 0.0394351 +127 0.145191 0.0451605 +92 0.176524 0.0389192 +SURF 0x30 +mat 1 +refs 3 +127 0.145191 0.0451605 +81 0.140373 0.0394351 +76 0.140373 0.0441495 +SURF 0x30 +mat 1 +refs 3 +79 0.140372 0.148364 +114 0.15332 0.204824 +107 0.162502 0.148364 +SURF 0x30 +mat 1 +refs 3 +114 0.15332 0.204824 +79 0.140372 0.148364 +80 0.140372 0.169258 +SURF 0x30 +mat 1 +refs 3 +115 0.15332 0.204824 +77 0.140372 0.148364 +109 0.162502 0.148364 +SURF 0x30 +mat 1 +refs 3 +77 0.140372 0.148364 +115 0.15332 0.204824 +78 0.140372 0.169258 +SURF 0x30 +mat 1 +refs 3 +74 0.140373 0.0967237 +107 0.162502 0.148364 +128 0.169696 0.0967237 +SURF 0x30 +mat 1 +refs 3 +107 0.162502 0.148364 +74 0.140373 0.0967237 +75 0.140373 0.103705 +SURF 0x30 +mat 1 +refs 3 +127 0.200436 0.0451605 +74 0.205254 0.0967237 +128 0.175931 0.0967237 +SURF 0x30 +mat 1 +refs 3 +74 0.205254 0.0967237 +127 0.200436 0.0451605 +73 0.205254 0.0751733 +SURF 0x30 +mat 1 +refs 3 +118 0.145191 0.0451605 +70 0.140373 0.0394351 +93 0.176524 0.0389192 +SURF 0x30 +mat 1 +refs 3 +70 0.140373 0.0394351 +118 0.145191 0.0451605 +67 0.140373 0.0441495 +SURF 0x30 +mat 1 +refs 3 +109 0.162502 0.148364 +68 0.140373 0.0967237 +120 0.169696 0.0967237 +SURF 0x30 +mat 1 +refs 3 +68 0.140373 0.0967237 +109 0.162502 0.148364 +69 0.140373 0.103705 +SURF 0x30 +mat 1 +refs 3 +68 0.140373 0.0967237 +118 0.145191 0.0451605 +120 0.169696 0.0967237 +SURF 0x30 +mat 1 +refs 3 +118 0.145191 0.0451605 +68 0.140373 0.0967237 +66 0.140373 0.0751733 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +44 0.122727 0.341625 +43 0.123733 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +42 0.119875 0.341625 +44 0.122727 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +41 0.115603 0.341625 +42 0.119875 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +40 0.110561 0.341625 +41 0.115603 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +39 0.105518 0.341625 +40 0.110561 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +38 0.101247 0.341625 +39 0.105518 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +37 0.0983937 0.341625 +38 0.101247 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +36 0.0973883 0.341625 +37 0.0983937 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +35 0.0983937 0.341625 +36 0.0973883 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +34 0.101247 0.341625 +35 0.0983937 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +33 0.105518 0.341625 +34 0.101247 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +32 0.110561 0.341625 +33 0.105518 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +31 0.115603 0.341625 +32 0.110561 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +30 0.119875 0.341625 +31 0.115603 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +29 0.122727 0.341625 +30 0.119875 0.341625 +SURF 0x30 +mat 1 +refs 3 +45 0.10445 0.348078 +43 0.123733 0.341625 +29 0.122727 0.341625 +SURF 0x30 +mat 1 +refs 3 +28 0.147864 0.324466 +43 0.123733 0.341625 +44 0.122727 0.341625 +SURF 0x30 +mat 1 +refs 3 +43 0.123733 0.341625 +28 0.147864 0.324466 +27 0.150062 0.324466 +SURF 0x30 +mat 1 +refs 3 +26 0.141605 0.324466 +44 0.122727 0.341625 +42 0.119875 0.341625 +SURF 0x30 +mat 1 +refs 3 +44 0.122727 0.341625 +26 0.141605 0.324466 +28 0.147864 0.324466 +SURF 0x30 +mat 1 +refs 3 +25 0.132229 0.324466 +42 0.119875 0.341625 +41 0.115603 0.341625 +SURF 0x30 +mat 1 +refs 3 +42 0.119875 0.341625 +25 0.132229 0.324466 +26 0.141605 0.324466 +SURF 0x30 +mat 1 +refs 3 +24 0.121169 0.324466 +41 0.115603 0.341625 +40 0.110561 0.341625 +SURF 0x30 +mat 1 +refs 3 +41 0.115603 0.341625 +24 0.121169 0.324466 +25 0.132229 0.324466 +SURF 0x30 +mat 1 +refs 3 +23 0.110108 0.324466 +40 0.110561 0.341625 +39 0.105518 0.341625 +SURF 0x30 +mat 1 +refs 3 +40 0.110561 0.341625 +23 0.110108 0.324466 +24 0.121169 0.324466 +SURF 0x30 +mat 1 +refs 3 +22 0.100732 0.324466 +39 0.105518 0.341625 +38 0.101247 0.341625 +SURF 0x30 +mat 1 +refs 3 +39 0.105518 0.341625 +22 0.100732 0.324466 +23 0.110108 0.324466 +SURF 0x30 +mat 1 +refs 3 +22 0.100732 0.324466 +37 0.0983937 0.341625 +21 0.0944652 0.324466 +SURF 0x30 +mat 1 +refs 3 +37 0.0983937 0.341625 +22 0.100732 0.324466 +38 0.101247 0.341625 +SURF 0x30 +mat 1 +refs 3 +21 0.0944652 0.324466 +36 0.0973883 0.341625 +20 0.0922672 0.324466 +SURF 0x30 +mat 1 +refs 3 +36 0.0973883 0.341625 +21 0.0944652 0.324466 +37 0.0983937 0.341625 +SURF 0x30 +mat 1 +refs 3 +36 0.0973883 0.341625 +19 0.0944652 0.324466 +20 0.0922672 0.324466 +SURF 0x30 +mat 1 +refs 3 +19 0.0944652 0.324466 +36 0.0973883 0.341625 +35 0.0983937 0.341625 +SURF 0x30 +mat 1 +refs 3 +35 0.0983937 0.341625 +18 0.100732 0.324466 +19 0.0944652 0.324466 +SURF 0x30 +mat 1 +refs 3 +18 0.100732 0.324466 +35 0.0983937 0.341625 +34 0.101247 0.341625 +SURF 0x30 +mat 1 +refs 3 +33 0.105518 0.341625 +18 0.100732 0.324466 +34 0.101247 0.341625 +SURF 0x30 +mat 1 +refs 3 +18 0.100732 0.324466 +33 0.105518 0.341625 +17 0.110108 0.324466 +SURF 0x30 +mat 1 +refs 3 +32 0.110561 0.341625 +17 0.110108 0.324466 +33 0.105518 0.341625 +SURF 0x30 +mat 1 +refs 3 +17 0.110108 0.324466 +32 0.110561 0.341625 +16 0.121169 0.324466 +SURF 0x30 +mat 1 +refs 3 +31 0.115603 0.341625 +16 0.121169 0.324466 +32 0.110561 0.341625 +SURF 0x30 +mat 1 +refs 3 +16 0.121169 0.324466 +31 0.115603 0.341625 +15 0.132229 0.324466 +SURF 0x30 +mat 1 +refs 3 +30 0.119875 0.341625 +15 0.132229 0.324466 +31 0.115603 0.341625 +SURF 0x30 +mat 1 +refs 3 +15 0.132229 0.324466 +30 0.119875 0.341625 +14 0.141605 0.324466 +SURF 0x30 +mat 1 +refs 3 +29 0.122727 0.341625 +14 0.141605 0.324466 +30 0.119875 0.341625 +SURF 0x30 +mat 1 +refs 3 +14 0.141605 0.324466 +29 0.122727 0.341625 +13 0.147864 0.324466 +SURF 0x30 +mat 1 +refs 3 +43 0.123733 0.341625 +13 0.147864 0.324466 +29 0.122727 0.341625 +SURF 0x30 +mat 1 +refs 3 +13 0.147864 0.324466 +43 0.123733 0.341625 +27 0.150062 0.324466 +SURF 0x30 +mat 1 +refs 3 +12 0.173593 0.296159 +27 0.150062 0.324466 +28 0.147864 0.324466 +SURF 0x30 +mat 1 +refs 3 +27 0.150062 0.324466 +12 0.173593 0.296159 +11 0.176882 0.296159 +SURF 0x30 +mat 1 +refs 3 +64 0.164217 0.296159 +28 0.147864 0.324466 +26 0.141605 0.324466 +SURF 0x30 +mat 1 +refs 3 +28 0.147864 0.324466 +64 0.164217 0.296159 +12 0.173593 0.296159 +SURF 0x30 +mat 1 +refs 3 +63 0.150187 0.296159 +26 0.141605 0.324466 +25 0.132229 0.324466 +SURF 0x30 +mat 1 +refs 3 +26 0.141605 0.324466 +63 0.150187 0.296159 +64 0.164217 0.296159 +SURF 0x30 +mat 1 +refs 3 +60 0.133639 0.296159 +25 0.132229 0.324466 +24 0.121169 0.324466 +SURF 0x30 +mat 1 +refs 3 +25 0.132229 0.324466 +60 0.133639 0.296159 +63 0.150187 0.296159 +SURF 0x30 +mat 1 +refs 3 +58 0.117084 0.296159 +24 0.121169 0.324466 +23 0.110108 0.324466 +SURF 0x30 +mat 1 +refs 3 +24 0.121169 0.324466 +58 0.117084 0.296159 +60 0.133639 0.296159 +SURF 0x30 +mat 1 +refs 3 +56 0.103055 0.296159 +23 0.110108 0.324466 +22 0.100732 0.324466 +SURF 0x30 +mat 1 +refs 3 +23 0.110108 0.324466 +56 0.103055 0.296159 +58 0.117084 0.296159 +SURF 0x30 +mat 1 +refs 3 +10 0.0936781 0.296159 +22 0.100732 0.324466 +21 0.0944652 0.324466 +SURF 0x30 +mat 1 +refs 3 +22 0.100732 0.324466 +10 0.0936781 0.296159 +56 0.103055 0.296159 +SURF 0x30 +mat 1 +refs 3 +10 0.0936781 0.296159 +20 0.0922672 0.324466 +9 0.0903888 0.296159 +SURF 0x30 +mat 1 +refs 3 +20 0.0922672 0.324466 +10 0.0936781 0.296159 +21 0.0944652 0.324466 +SURF 0x30 +mat 1 +refs 3 +20 0.0922672 0.324466 +8 0.0936781 0.296159 +9 0.0903888 0.296159 +SURF 0x30 +mat 1 +refs 3 +8 0.0936781 0.296159 +20 0.0922672 0.324466 +19 0.0944652 0.324466 +SURF 0x30 +mat 1 +refs 3 +18 0.100732 0.324466 +8 0.0936781 0.296159 +19 0.0944652 0.324466 +SURF 0x30 +mat 1 +refs 3 +8 0.0936781 0.296159 +18 0.100732 0.324466 +54 0.103055 0.296159 +SURF 0x30 +mat 1 +refs 3 +17 0.110108 0.324466 +54 0.103055 0.296159 +18 0.100732 0.324466 +SURF 0x30 +mat 1 +refs 3 +54 0.103055 0.296159 +17 0.110108 0.324466 +53 0.117084 0.296159 +SURF 0x30 +mat 1 +refs 3 +16 0.121169 0.324466 +53 0.117084 0.296159 +17 0.110108 0.324466 +SURF 0x30 +mat 1 +refs 3 +53 0.117084 0.296159 +16 0.121169 0.324466 +50 0.133639 0.296159 +SURF 0x30 +mat 1 +refs 3 +15 0.132229 0.324466 +50 0.133639 0.296159 +16 0.121169 0.324466 +SURF 0x30 +mat 1 +refs 3 +50 0.133639 0.296159 +15 0.132229 0.324466 +48 0.150187 0.296159 +SURF 0x30 +mat 1 +refs 3 +14 0.141605 0.324466 +48 0.150187 0.296159 +15 0.132229 0.324466 +SURF 0x30 +mat 1 +refs 3 +48 0.150187 0.296159 +14 0.141605 0.324466 +7 0.164217 0.296159 +SURF 0x30 +mat 1 +refs 3 +13 0.147864 0.324466 +7 0.164217 0.296159 +14 0.141605 0.324466 +SURF 0x30 +mat 1 +refs 3 +7 0.164217 0.296159 +13 0.147864 0.324466 +6 0.173593 0.296159 +SURF 0x30 +mat 1 +refs 3 +27 0.150062 0.324466 +6 0.173593 0.296159 +13 0.147864 0.324466 +SURF 0x30 +mat 1 +refs 3 +6 0.173593 0.296159 +27 0.150062 0.324466 +11 0.176882 0.296159 +SURF 0x30 +mat 1 +refs 3 +5 0.197319 0.254813 +11 0.176882 0.296159 +12 0.173593 0.296159 +SURF 0x30 +mat 1 +refs 3 +11 0.176882 0.296159 +5 0.197319 0.254813 +4 0.201629 0.254813 +SURF 0x30 +mat 1 +refs 3 +61 0.185043 0.254813 +12 0.173593 0.296159 +64 0.164217 0.296159 +SURF 0x30 +mat 1 +refs 3 +12 0.173593 0.296159 +61 0.185043 0.254813 +5 0.197319 0.254813 +SURF 0x30 +mat 1 +refs 3 +3 0.0926961 0.254813 +56 0.103055 0.296159 +10 0.0936781 0.296159 +SURF 0x30 +mat 1 +refs 3 +56 0.103055 0.296159 +3 0.0926961 0.254813 +55 0.104972 0.254813 +SURF 0x30 +mat 1 +refs 3 +3 0.0926961 0.254813 +9 0.0903888 0.296159 +2 0.088386 0.254813 +SURF 0x30 +mat 1 +refs 3 +9 0.0903888 0.296159 +3 0.0926961 0.254813 +10 0.0936781 0.296159 +SURF 0x30 +mat 1 +refs 3 +9 0.0903888 0.296159 +1 0.0926961 0.254813 +2 0.088386 0.254813 +SURF 0x30 +mat 1 +refs 3 +1 0.0926961 0.254813 +9 0.0903888 0.296159 +8 0.0936781 0.296159 +SURF 0x30 +mat 1 +refs 3 +54 0.103055 0.296159 +1 0.0926961 0.254813 +8 0.0936781 0.296159 +SURF 0x30 +mat 1 +refs 3 +1 0.0926961 0.254813 +54 0.103055 0.296159 +51 0.104972 0.254813 +SURF 0x30 +mat 1 +refs 3 +7 0.164217 0.296159 +47 0.16668 0.254813 +48 0.150187 0.296159 +SURF 0x30 +mat 1 +refs 3 +47 0.16668 0.254813 +7 0.164217 0.296159 +46 0.185043 0.254813 +SURF 0x30 +mat 1 +refs 3 +6 0.173593 0.296159 +46 0.185043 0.254813 +7 0.164217 0.296159 +SURF 0x30 +mat 1 +refs 3 +46 0.185043 0.254813 +6 0.173593 0.296159 +0 0.197319 0.254813 +SURF 0x30 +mat 1 +refs 3 +11 0.176882 0.296159 +0 0.197319 0.254813 +6 0.173593 0.296159 +SURF 0x30 +mat 1 +refs 3 +0 0.197319 0.254813 +11 0.176882 0.296159 +4 0.201629 0.254813 +SURF 0x30 +mat 1 +refs 3 +48 0.150187 0.296159 +49 0.145011 0.254813 +50 0.133639 0.296159 +SURF 0x30 +mat 1 +refs 3 +49 0.145011 0.254813 +48 0.150187 0.296159 +47 0.16668 0.254813 +SURF 0x30 +mat 1 +refs 3 +50 0.133639 0.296159 +52 0.123343 0.254813 +53 0.117084 0.296159 +SURF 0x30 +mat 1 +refs 3 +52 0.123343 0.254813 +50 0.133639 0.296159 +49 0.145011 0.254813 +SURF 0x30 +mat 1 +refs 3 +53 0.117084 0.296159 +51 0.104972 0.254813 +54 0.103055 0.296159 +SURF 0x30 +mat 1 +refs 3 +51 0.104972 0.254813 +53 0.117084 0.296159 +52 0.123343 0.254813 +SURF 0x30 +mat 1 +refs 3 +55 0.104972 0.254813 +58 0.117084 0.296159 +56 0.103055 0.296159 +SURF 0x30 +mat 1 +refs 3 +58 0.117084 0.296159 +55 0.104972 0.254813 +57 0.123343 0.254813 +SURF 0x30 +mat 1 +refs 3 +57 0.123343 0.254813 +60 0.133639 0.296159 +58 0.117084 0.296159 +SURF 0x30 +mat 1 +refs 3 +60 0.133639 0.296159 +57 0.123343 0.254813 +59 0.145011 0.254813 +SURF 0x30 +mat 1 +refs 3 +59 0.145011 0.254813 +63 0.150187 0.296159 +60 0.133639 0.296159 +SURF 0x30 +mat 1 +refs 3 +63 0.150187 0.296159 +59 0.145011 0.254813 +62 0.16668 0.254813 +SURF 0x30 +mat 1 +refs 3 +62 0.16668 0.254813 +64 0.164217 0.296159 +63 0.150187 0.296159 +SURF 0x30 +mat 1 +refs 3 +64 0.164217 0.296159 +62 0.16668 0.254813 +61 0.185043 0.254813 +SURF 0x30 +mat 1 +refs 3 +119 0.183725 0.0451605 +93 0.176524 0.0389192 +94 0.177926 0.0261292 +SURF 0x30 +mat 1 +refs 3 +119 0.183725 0.0451605 +118 0.145191 0.0451605 +93 0.176524 0.0389192 +SURF 0x30 +mat 1 +refs 3 +92 0.176524 0.0389192 +129 0.183725 0.0451605 +90 0.177926 0.0261292 +SURF 0x30 +mat 1 +refs 3 +92 0.176524 0.0389192 +127 0.145191 0.0451605 +129 0.183725 0.0451605 +SURF 0x30 +mat 1 +refs 3 +105 0.214895 0.204824 +4 0.201629 0.254813 +5 0.197319 0.254813 +SURF 0x30 +mat 1 +refs 3 +4 0.201629 0.254813 +105 0.214895 0.204824 +104 0.219969 0.204824 +SURF 0x30 +mat 1 +refs 3 +116 0.200444 0.204824 +5 0.197319 0.254813 +61 0.185043 0.254813 +SURF 0x30 +mat 1 +refs 3 +5 0.197319 0.254813 +116 0.200444 0.204824 +105 0.214895 0.204824 +SURF 0x30 +mat 1 +refs 3 +0 0.197319 0.254813 +112 0.200444 0.204824 +46 0.185043 0.254813 +SURF 0x30 +mat 1 +refs 3 +112 0.200444 0.204824 +0 0.197319 0.254813 +103 0.214895 0.204824 +SURF 0x30 +mat 1 +refs 3 +4 0.201629 0.254813 +103 0.214895 0.204824 +0 0.197319 0.254813 +SURF 0x30 +mat 1 +refs 3 +103 0.214895 0.204824 +4 0.201629 0.254813 +104 0.219969 0.204824 +SURF 0x30 +mat 1 +refs 3 +102 0.234287 0.148364 +104 0.219969 0.204824 +105 0.214895 0.204824 +SURF 0x30 +mat 1 +refs 3 +104 0.219969 0.204824 +102 0.234287 0.148364 +101 0.240203 0.148364 +SURF 0x30 +mat 1 +refs 3 +110 0.217444 0.148364 +105 0.214895 0.204824 +116 0.200444 0.204824 +SURF 0x30 +mat 1 +refs 3 +105 0.214895 0.204824 +110 0.217444 0.148364 +102 0.234287 0.148364 +SURF 0x30 +mat 1 +refs 3 +103 0.214895 0.204824 +106 0.217444 0.148364 +112 0.200444 0.204824 +SURF 0x30 +mat 1 +refs 3 +106 0.217444 0.148364 +103 0.214895 0.204824 +100 0.234287 0.148364 +SURF 0x30 +mat 1 +refs 3 +104 0.219969 0.204824 +100 0.234287 0.148364 +103 0.214895 0.204824 +SURF 0x30 +mat 1 +refs 3 +100 0.234287 0.148364 +104 0.219969 0.204824 +101 0.240203 0.148364 +SURF 0x30 +mat 1 +refs 3 +98 0.32488 0.0261292 +99 0.284412 0.0451605 +124 0.27675 0.0451605 +SURF 0x30 +mat 1 +refs 3 +99 0.284412 0.0451605 +98 0.32488 0.0261292 +97 0.334475 0.0261292 +SURF 0x30 +mat 1 +refs 3 +96 0.297561 0.0261292 +124 0.27675 0.0451605 +125 0.254926 0.0451605 +SURF 0x30 +mat 1 +refs 3 +124 0.27675 0.0451605 +96 0.297561 0.0261292 +98 0.32488 0.0261292 +SURF 0x30 +mat 1 +refs 3 +95 0.25668 0.0261292 +125 0.254926 0.0451605 +121 0.222261 0.0451605 +SURF 0x30 +mat 1 +refs 3 +125 0.254926 0.0451605 +95 0.25668 0.0261292 +96 0.297561 0.0261292 +SURF 0x30 +mat 1 +refs 3 +94 0.177926 0.0261292 +121 0.222261 0.0451605 +119 0.183725 0.0451605 +SURF 0x30 +mat 1 +refs 3 +121 0.222261 0.0451605 +94 0.177926 0.0261292 +95 0.25668 0.0261292 +SURF 0x30 +mat 1 +refs 3 +131 0.222261 0.0451605 +90 0.177926 0.0261292 +129 0.183725 0.0451605 +SURF 0x30 +mat 1 +refs 3 +90 0.177926 0.0261292 +131 0.222261 0.0451605 +91 0.25668 0.0261292 +SURF 0x30 +mat 1 +refs 3 +133 0.254926 0.0451605 +91 0.25668 0.0261292 +131 0.222261 0.0451605 +SURF 0x30 +mat 1 +refs 3 +91 0.25668 0.0261292 +133 0.254926 0.0451605 +89 0.297561 0.0261292 +SURF 0x30 +mat 1 +refs 3 +135 0.27675 0.0451605 +89 0.297561 0.0261292 +133 0.254926 0.0451605 +SURF 0x30 +mat 1 +refs 3 +89 0.297561 0.0261292 +135 0.27675 0.0451605 +88 0.32488 0.0261292 +SURF 0x30 +mat 1 +refs 3 +99 0.284412 0.0451605 +88 0.32488 0.0261292 +135 0.27675 0.0451605 +SURF 0x30 +mat 1 +refs 3 +88 0.32488 0.0261292 +99 0.284412 0.0451605 +97 0.334475 0.0261292 +SURF 0x30 +mat 1 +refs 3 +124 0.27675 0.0451605 +87 0.255363 0.0967237 +123 0.248839 0.0967237 +SURF 0x30 +mat 1 +refs 3 +87 0.255363 0.0967237 +124 0.27675 0.0451605 +99 0.284412 0.0451605 +SURF 0x30 +mat 1 +refs 3 +123 0.248839 0.0967237 +101 0.240203 0.148364 +102 0.234287 0.148364 +SURF 0x30 +mat 1 +refs 3 +101 0.240203 0.148364 +123 0.248839 0.0967237 +87 0.255363 0.0967237 +SURF 0x30 +mat 1 +refs 3 +126 0.230273 0.0967237 +102 0.234287 0.148364 +110 0.217444 0.148364 +SURF 0x30 +mat 1 +refs 3 +102 0.234287 0.148364 +126 0.230273 0.0967237 +123 0.248839 0.0967237 +SURF 0x30 +mat 1 +refs 3 +122 0.202479 0.0967237 +110 0.217444 0.148364 +111 0.192237 0.148364 +SURF 0x30 +mat 1 +refs 3 +110 0.217444 0.148364 +122 0.202479 0.0967237 +126 0.230273 0.0967237 +SURF 0x30 +mat 1 +refs 3 +120 0.169696 0.0967237 +111 0.192237 0.148364 +109 0.162502 0.148364 +SURF 0x30 +mat 1 +refs 3 +111 0.192237 0.148364 +120 0.169696 0.0967237 +122 0.202479 0.0967237 +SURF 0x30 +mat 1 +refs 3 +108 0.192237 0.148364 +128 0.169696 0.0967237 +107 0.162502 0.148364 +SURF 0x30 +mat 1 +refs 3 +128 0.169696 0.0967237 +108 0.192237 0.148364 +130 0.202479 0.0967237 +SURF 0x30 +mat 1 +refs 3 +106 0.217444 0.148364 +130 0.202479 0.0967237 +108 0.192237 0.148364 +SURF 0x30 +mat 1 +refs 3 +130 0.202479 0.0967237 +106 0.217444 0.148364 +132 0.230273 0.0967237 +SURF 0x30 +mat 1 +refs 3 +100 0.234287 0.148364 +132 0.230273 0.0967237 +106 0.217444 0.148364 +SURF 0x30 +mat 1 +refs 3 +132 0.230273 0.0967237 +100 0.234287 0.148364 +134 0.248839 0.0967237 +SURF 0x30 +mat 1 +refs 3 +87 0.255363 0.0967237 +135 0.27675 0.0451605 +134 0.248839 0.0967237 +SURF 0x30 +mat 1 +refs 3 +135 0.27675 0.0451605 +87 0.255363 0.0967237 +99 0.284412 0.0451605 +SURF 0x30 +mat 1 +refs 3 +101 0.240203 0.148364 +134 0.248839 0.0967237 +100 0.234287 0.148364 +SURF 0x30 +mat 1 +refs 3 +134 0.248839 0.0967237 +101 0.240203 0.148364 +87 0.255363 0.0967237 +SURF 0x30 +mat 1 +refs 3 +115 0.15332 0.204824 +62 0.16668 0.254813 +59 0.145011 0.254813 +SURF 0x30 +mat 1 +refs 3 +62 0.16668 0.254813 +115 0.15332 0.204824 +117 0.178823 0.204824 +SURF 0x30 +mat 1 +refs 3 +117 0.178823 0.204824 +61 0.185043 0.254813 +62 0.16668 0.254813 +SURF 0x30 +mat 1 +refs 3 +61 0.185043 0.254813 +117 0.178823 0.204824 +116 0.200444 0.204824 +SURF 0x30 +mat 1 +refs 3 +112 0.200444 0.204824 +108 0.192237 0.148364 +113 0.178823 0.204824 +SURF 0x30 +mat 1 +refs 3 +108 0.192237 0.148364 +112 0.200444 0.204824 +106 0.217444 0.148364 +SURF 0x30 +mat 1 +refs 3 +113 0.178823 0.204824 +107 0.162502 0.148364 +114 0.15332 0.204824 +SURF 0x30 +mat 1 +refs 3 +107 0.162502 0.148364 +113 0.178823 0.204824 +108 0.192237 0.148364 +SURF 0x30 +mat 1 +refs 3 +109 0.162502 0.148364 +117 0.178823 0.204824 +115 0.15332 0.204824 +SURF 0x30 +mat 1 +refs 3 +117 0.178823 0.204824 +109 0.162502 0.148364 +111 0.192237 0.148364 +SURF 0x30 +mat 1 +refs 3 +111 0.192237 0.148364 +116 0.200444 0.204824 +117 0.178823 0.204824 +SURF 0x30 +mat 1 +refs 3 +116 0.200444 0.204824 +111 0.192237 0.148364 +110 0.217444 0.148364 +SURF 0x30 +mat 1 +refs 3 +46 0.185043 0.254813 +113 0.178823 0.204824 +47 0.16668 0.254813 +SURF 0x30 +mat 1 +refs 3 +113 0.178823 0.204824 +46 0.185043 0.254813 +112 0.200444 0.204824 +SURF 0x30 +mat 1 +refs 3 +47 0.16668 0.254813 +114 0.15332 0.204824 +49 0.145011 0.254813 +SURF 0x30 +mat 1 +refs 3 +114 0.15332 0.204824 +47 0.16668 0.254813 +113 0.178823 0.204824 +SURF 0x30 +mat 1 +refs 3 +120 0.169696 0.0967237 +118 0.145191 0.0451605 +119 0.183725 0.0451605 +SURF 0x30 +mat 1 +refs 3 +119 0.183725 0.0451605 +122 0.202479 0.0967237 +120 0.169696 0.0967237 +SURF 0x30 +mat 1 +refs 3 +122 0.202479 0.0967237 +119 0.183725 0.0451605 +121 0.222261 0.0451605 +SURF 0x30 +mat 1 +refs 3 +121 0.222261 0.0451605 +126 0.230273 0.0967237 +122 0.202479 0.0967237 +SURF 0x30 +mat 1 +refs 3 +126 0.230273 0.0967237 +121 0.222261 0.0451605 +125 0.254926 0.0451605 +SURF 0x30 +mat 1 +refs 3 +125 0.254926 0.0451605 +123 0.248839 0.0967237 +126 0.230273 0.0967237 +SURF 0x30 +mat 1 +refs 3 +123 0.248839 0.0967237 +125 0.254926 0.0451605 +124 0.27675 0.0451605 +SURF 0x30 +mat 1 +refs 3 +130 0.143148 0.0967237 +129 0.161902 0.0451605 +128 0.175931 0.0967237 +SURF 0x30 +mat 1 +refs 3 +129 0.161902 0.0451605 +130 0.143148 0.0967237 +131 0.123366 0.0451605 +SURF 0x30 +mat 1 +refs 3 +134 0.0967879 0.0967237 +133 0.0907007 0.0451605 +132 0.115354 0.0967237 +SURF 0x30 +mat 1 +refs 3 +133 0.254926 0.0451605 +134 0.248839 0.0967237 +135 0.27675 0.0451605 +SURF 0x30 +mat 1 +refs 3 +132 0.115354 0.0967237 +131 0.123366 0.0451605 +130 0.143148 0.0967237 +SURF 0x30 +mat 1 +refs 3 +131 0.123366 0.0451605 +132 0.115354 0.0967237 +133 0.0907007 0.0451605 +SURF 0x30 +mat 1 +refs 3 +127 0.200436 0.0451605 +128 0.175931 0.0967237 +129 0.161902 0.0451605 +SURF 0x30 +mat 1 +refs 3 +86 0.140373 0.0460202 +118 0.145191 0.0451605 +66 0.140373 0.0751733 +SURF 0x30 +mat 1 +refs 3 +67 0.140373 0.0441495 +118 0.145191 0.0451605 +86 0.140373 0.0460202 +SURF 0x30 +mat 1 +refs 3 +85 0.140372 0.241326 +59 0.145011 0.254813 +84 0.140372 0.254813 +SURF 0x30 +mat 1 +refs 3 +82 0.140372 0.254813 +49 0.145011 0.254813 +83 0.140372 0.241326 +SURF 0x30 +mat 1 +refs 3 +71 0.140373 0.204824 +114 0.15332 0.204824 +80 0.140372 0.169258 +SURF 0x30 +mat 1 +refs 3 +79 0.140372 0.148364 +107 0.162502 0.148364 +75 0.140373 0.103705 +SURF 0x30 +mat 1 +refs 3 +78 0.140372 0.169258 +115 0.15332 0.204824 +65 0.140373 0.204824 +SURF 0x30 +mat 1 +refs 3 +69 0.140373 0.103705 +109 0.162502 0.148364 +77 0.140372 0.148364 +SURF 0x30 +mat 1 +refs 3 +72 0.140373 0.0460202 +127 0.145191 0.0451605 +76 0.140373 0.0441495 +SURF 0x30 +mat 1 +refs 3 +73 0.205254 0.0751733 +127 0.200436 0.0451605 +72 0.205254 0.0460202 +kids 0 +OBJECT poly +name "Elevator" +loc 0.629794 -0.0385599 0 +texture "wing.jpg" +crease 45.000000 +numvert 70 +0.00282007 -0.00495544 -0.172979 +0.0164003 -0.00379304 -0.172979 +0.0254774 -0.00204939 -0.172979 +0.0286613 2.45869e-06 -0.172979 +0.0254774 0.00205439 -0.172979 +0.0164003 0.00379304 -0.172979 +0 -0.00538003 -0.135998 +0.0157333 -0.00411654 -0.135998 +0.0262454 -0.00222635 -0.135998 +0.029935 2.45869e-06 -0.135998 +0.0262454 0.00222635 -0.135998 +0.0157333 0.00411645 -0.135998 +0.00106132 -0.00571364 -0.0938077 +0.0176892 -0.00437428 -0.0938077 +0.0288029 -0.00236778 -0.0938077 +0.0327047 2.45869e-06 -0.0938077 +0.0288029 0.00236788 -0.0938077 +0.0176892 0.00437428 -0.0938077 +0.00209248 -0.00606738 -0.0480283 +0.0191397 -0.00464214 -0.0480283 +0.0305313 -0.00251433 -0.0480283 +0.0345291 2.45869e-06 -0.0480283 +0.0305313 0.00251433 -0.0480283 +0.0191397 0.00464205 -0.0480283 +0.00195086 -0.00618359 1.51184e-05 +0.0193316 -0.00473313 1.51184e-05 +0.0309458 -0.00255987 1.51185e-05 +0.0350243 2.45869e-06 1.51186e-05 +0.0309458 0.00256487 1.51187e-05 +0.0193316 0.00473303 1.51188e-05 +0.00195086 0.00618359 1.51188e-05 +0.00209248 0.00606729 -0.0480283 +0.00106132 0.00571356 -0.0938077 +0 0.00537995 -0.135998 +0.00282007 0.00495544 -0.172979 +0 0.00537995 0.135998 +0.00282007 0.00495544 0.172979 +0.0164003 0.00379304 0.172979 +0.0254774 0.00205439 0.172979 +0.00195086 0.00618359 -1.52095e-05 +0.0193316 0.00473303 -1.52095e-05 +0.0309458 0.00256487 -1.52096e-05 +0.0350243 2.45869e-06 -1.52096e-05 +0.0309458 -0.00255987 -1.52098e-05 +0.0193316 -0.00473313 -1.52099e-05 +0.00195086 -0.00618359 -1.52099e-05 +0.00209248 0.00606729 0.0480283 +0.0191397 0.00464205 0.0480283 +0.0305313 0.00251433 0.0480283 +0.0345291 2.45869e-06 0.0480283 +0.0305313 -0.00251433 0.0480283 +0.0191397 -0.00464214 0.0480283 +0.00209248 -0.00606738 0.0480283 +0.00106132 0.00571356 0.0938077 +0.0176892 0.00437428 0.0938077 +0.0288029 0.00236788 0.0938077 +0.0327047 2.45869e-06 0.0938077 +0.0288029 -0.00236778 0.0938077 +0.0176892 -0.00437428 0.0938077 +0.00106132 -0.00571364 0.0938077 +0.0157333 0.00411645 0.135998 +0.0262454 0.00222635 0.135998 +0.029935 2.45869e-06 0.135998 +0.0262454 -0.00222635 0.135998 +0.0157333 -0.00411654 0.135998 +0 -0.00538003 0.135998 +0.0286613 2.45869e-06 0.172979 +0.0254774 -0.00204939 0.172979 +0.0164003 -0.00379304 0.172979 +0.00282007 -0.00495544 0.172979 +numsurf 96 +SURF 0x30 +mat 1 +refs 3 +7 0.532131 0.624762 +0 0.597622 0.645111 +1 0.597622 0.623711 +SURF 0x30 +mat 1 +refs 3 +0 0.597622 0.645111 +7 0.532131 0.624762 +6 0.532131 0.649554 +SURF 0x30 +mat 1 +refs 3 +8 0.532131 0.714864 +1 0.597622 0.730377 +2 0.597622 0.716074 +SURF 0x30 +mat 1 +refs 3 +1 0.597622 0.730377 +8 0.532131 0.714864 +7 0.532131 0.731429 +SURF 0x30 +mat 1 +refs 3 +9 0.532131 0.709049 +2 0.597622 0.716074 +3 0.597622 0.711056 +SURF 0x30 +mat 1 +refs 3 +2 0.597622 0.716074 +9 0.532131 0.709049 +8 0.532131 0.714864 +SURF 0x30 +mat 1 +refs 3 +10 0.532131 0.714864 +3 0.597622 0.711056 +4 0.597622 0.716074 +SURF 0x30 +mat 1 +refs 3 +3 0.597622 0.711056 +10 0.532131 0.714864 +9 0.532131 0.709049 +SURF 0x30 +mat 1 +refs 3 +11 0.532131 0.731429 +4 0.597622 0.716074 +5 0.597622 0.730377 +SURF 0x30 +mat 1 +refs 3 +4 0.597622 0.716074 +11 0.532131 0.731429 +10 0.532131 0.714864 +SURF 0x30 +mat 1 +refs 3 +33 0.532131 0.756221 +5 0.597622 0.730377 +34 0.597622 0.751777 +SURF 0x30 +mat 1 +refs 3 +5 0.597622 0.730377 +33 0.532131 0.756221 +11 0.532131 0.731429 +SURF 0x30 +mat 1 +refs 3 +13 0.457413 0.62168 +6 0.532131 0.649554 +7 0.532131 0.624762 +SURF 0x30 +mat 1 +refs 3 +6 0.532131 0.649554 +13 0.457413 0.62168 +12 0.457413 0.647882 +SURF 0x30 +mat 1 +refs 3 +14 0.457413 0.710834 +7 0.532131 0.731429 +8 0.532131 0.714864 +SURF 0x30 +mat 1 +refs 3 +7 0.532131 0.731429 +14 0.457413 0.710834 +13 0.457413 0.728346 +SURF 0x30 +mat 1 +refs 3 +15 0.457413 0.704685 +8 0.532131 0.714864 +9 0.532131 0.709049 +SURF 0x30 +mat 1 +refs 3 +8 0.532131 0.714864 +15 0.457413 0.704685 +14 0.457413 0.710834 +SURF 0x30 +mat 1 +refs 3 +16 0.457413 0.710834 +9 0.532131 0.709049 +10 0.532131 0.714864 +SURF 0x30 +mat 1 +refs 3 +9 0.532131 0.709049 +16 0.457413 0.710834 +15 0.457413 0.704685 +SURF 0x30 +mat 1 +refs 3 +17 0.457413 0.728346 +10 0.532131 0.714864 +11 0.532131 0.731429 +SURF 0x30 +mat 1 +refs 3 +10 0.532131 0.714864 +17 0.457413 0.728346 +16 0.457413 0.710834 +SURF 0x30 +mat 1 +refs 3 +32 0.457413 0.754549 +11 0.532131 0.731429 +33 0.532131 0.756221 +SURF 0x30 +mat 1 +refs 3 +11 0.532131 0.731429 +32 0.457413 0.754549 +17 0.457413 0.728346 +SURF 0x30 +mat 1 +refs 3 +19 0.376339 0.619394 +12 0.457413 0.647882 +13 0.457413 0.62168 +SURF 0x30 +mat 1 +refs 3 +12 0.457413 0.647882 +19 0.376339 0.619394 +18 0.376339 0.646257 +SURF 0x30 +mat 1 +refs 3 +20 0.376339 0.70811 +13 0.457413 0.728346 +14 0.457413 0.710834 +SURF 0x30 +mat 1 +refs 3 +13 0.457413 0.728346 +20 0.376339 0.70811 +19 0.376339 0.726061 +SURF 0x30 +mat 1 +refs 3 +21 0.376339 0.70181 +14 0.457413 0.710834 +15 0.457413 0.704685 +SURF 0x30 +mat 1 +refs 3 +14 0.457413 0.710834 +21 0.376339 0.70181 +20 0.376339 0.70811 +SURF 0x30 +mat 1 +refs 3 +22 0.376339 0.70811 +15 0.457413 0.704685 +16 0.457413 0.710834 +SURF 0x30 +mat 1 +refs 3 +15 0.457413 0.704685 +22 0.376339 0.70811 +21 0.376339 0.70181 +SURF 0x30 +mat 1 +refs 3 +23 0.376339 0.726061 +16 0.457413 0.710834 +17 0.457413 0.728346 +SURF 0x30 +mat 1 +refs 3 +16 0.457413 0.710834 +23 0.376339 0.726061 +22 0.376339 0.70811 +SURF 0x30 +mat 1 +refs 3 +31 0.376339 0.752924 +17 0.457413 0.728346 +32 0.457413 0.754549 +SURF 0x30 +mat 1 +refs 3 +17 0.457413 0.728346 +31 0.376339 0.752924 +23 0.376339 0.726061 +SURF 0x30 +mat 1 +refs 3 +25 0.240106 0.597725 +18 0.309018 0.625694 +19 0.309018 0.598036 +SURF 0x30 +mat 1 +refs 3 +18 0.309018 0.625694 +25 0.240106 0.597725 +24 0.240106 0.625924 +SURF 0x30 +mat 1 +refs 3 +26 0.240106 0.578882 +19 0.309018 0.598036 +20 0.309018 0.579554 +SURF 0x30 +mat 1 +refs 3 +19 0.309018 0.598036 +26 0.240106 0.578882 +25 0.240106 0.597725 +SURF 0x30 +mat 1 +refs 3 +27 0.240106 0.572264 +20 0.309018 0.579554 +21 0.309018 0.573068 +SURF 0x30 +mat 1 +refs 3 +20 0.309018 0.579554 +27 0.240106 0.572264 +26 0.240106 0.578882 +SURF 0x30 +mat 1 +refs 3 +28 0.240106 0.578882 +21 0.309018 0.573068 +22 0.309018 0.579554 +SURF 0x30 +mat 1 +refs 3 +21 0.309018 0.573068 +28 0.240106 0.578882 +27 0.240106 0.572264 +SURF 0x30 +mat 1 +refs 3 +29 0.240106 0.597725 +22 0.309018 0.579554 +23 0.309018 0.598036 +SURF 0x30 +mat 1 +refs 3 +22 0.309018 0.579554 +29 0.240106 0.597725 +28 0.240106 0.578882 +SURF 0x30 +mat 1 +refs 3 +31 0.309018 0.625694 +29 0.240106 0.597725 +23 0.309018 0.598036 +SURF 0x30 +mat 1 +refs 3 +29 0.240106 0.597725 +31 0.309018 0.625694 +30 0.240106 0.625924 +SURF 0x30 +mat 1 +refs 3 +47 0.772836 0.650899 +39 0.866906 0.684704 +46 0.772836 0.684425 +SURF 0x30 +mat 1 +refs 3 +39 0.866906 0.684704 +47 0.772836 0.650899 +40 0.866906 0.650522 +SURF 0x30 +mat 1 +refs 3 +48 0.772836 0.628495 +40 0.866906 0.650522 +47 0.772836 0.650899 +SURF 0x30 +mat 1 +refs 3 +40 0.866906 0.650522 +48 0.772836 0.628495 +41 0.866906 0.62768 +SURF 0x30 +mat 1 +refs 3 +49 0.772836 0.620633 +41 0.866906 0.62768 +48 0.772836 0.628495 +SURF 0x30 +mat 1 +refs 3 +41 0.866906 0.62768 +49 0.772836 0.620633 +42 0.866906 0.619659 +SURF 0x30 +mat 1 +refs 3 +43 0.866906 0.62768 +49 0.772836 0.620633 +50 0.772836 0.628495 +SURF 0x30 +mat 1 +refs 3 +49 0.772836 0.620633 +43 0.866906 0.62768 +42 0.866906 0.619659 +SURF 0x30 +mat 1 +refs 3 +44 0.866906 0.650522 +50 0.772836 0.628495 +51 0.772836 0.650899 +SURF 0x30 +mat 1 +refs 3 +50 0.772836 0.628495 +44 0.866906 0.650522 +43 0.866906 0.62768 +SURF 0x30 +mat 1 +refs 3 +45 0.866906 0.684704 +51 0.772836 0.650899 +52 0.772836 0.684425 +SURF 0x30 +mat 1 +refs 3 +51 0.772836 0.650899 +45 0.866906 0.684704 +44 0.866906 0.650522 +SURF 0x30 +mat 1 +refs 3 +47 0.772836 0.650899 +53 0.683201 0.686453 +54 0.683201 0.653751 +SURF 0x30 +mat 1 +refs 3 +53 0.683201 0.686453 +47 0.772836 0.650899 +46 0.772836 0.684425 +SURF 0x30 +mat 1 +refs 3 +48 0.772836 0.628495 +54 0.683201 0.653751 +55 0.683201 0.631894 +SURF 0x30 +mat 1 +refs 3 +54 0.683201 0.653751 +48 0.772836 0.628495 +47 0.772836 0.650899 +SURF 0x30 +mat 1 +refs 3 +49 0.772836 0.620633 +55 0.683201 0.631894 +56 0.683201 0.624221 +SURF 0x30 +mat 1 +refs 3 +55 0.683201 0.631894 +49 0.772836 0.620633 +48 0.772836 0.628495 +SURF 0x30 +mat 1 +refs 3 +50 0.772836 0.628495 +56 0.683201 0.624221 +57 0.683201 0.631894 +SURF 0x30 +mat 1 +refs 3 +56 0.683201 0.624221 +50 0.772836 0.628495 +49 0.772836 0.620633 +SURF 0x30 +mat 1 +refs 3 +51 0.772836 0.650899 +57 0.683201 0.631894 +58 0.683201 0.653751 +SURF 0x30 +mat 1 +refs 3 +57 0.683201 0.631894 +51 0.772836 0.650899 +50 0.772836 0.628495 +SURF 0x30 +mat 1 +refs 3 +52 0.772836 0.684425 +58 0.683201 0.653751 +59 0.683201 0.686453 +SURF 0x30 +mat 1 +refs 3 +58 0.683201 0.653751 +52 0.772836 0.684425 +51 0.772836 0.650899 +SURF 0x30 +mat 1 +refs 3 +54 0.373769 0.727956 +35 0.291159 0.762745 +60 0.291159 0.731802 +SURF 0x30 +mat 1 +refs 3 +35 0.291159 0.762745 +54 0.373769 0.727956 +53 0.373769 0.760657 +SURF 0x30 +mat 1 +refs 3 +55 0.373769 0.706099 +60 0.291159 0.731802 +61 0.291159 0.711128 +SURF 0x30 +mat 1 +refs 3 +60 0.291159 0.731802 +55 0.373769 0.706099 +54 0.373769 0.727956 +SURF 0x30 +mat 1 +refs 3 +56 0.373769 0.698425 +61 0.291159 0.711128 +62 0.291159 0.703872 +SURF 0x30 +mat 1 +refs 3 +61 0.291159 0.711128 +56 0.373769 0.698425 +55 0.373769 0.706099 +SURF 0x30 +mat 1 +refs 3 +57 0.373769 0.706099 +62 0.291159 0.703872 +63 0.291159 0.711128 +SURF 0x30 +mat 1 +refs 3 +62 0.291159 0.703872 +57 0.373769 0.706099 +56 0.373769 0.698425 +SURF 0x30 +mat 1 +refs 3 +58 0.373769 0.727956 +63 0.291159 0.711128 +64 0.291159 0.731802 +SURF 0x30 +mat 1 +refs 3 +63 0.291159 0.711128 +58 0.373769 0.727956 +57 0.373769 0.706099 +SURF 0x30 +mat 1 +refs 3 +59 0.373769 0.760657 +64 0.291159 0.731802 +65 0.291159 0.762745 +SURF 0x30 +mat 1 +refs 3 +64 0.291159 0.731802 +59 0.373769 0.760657 +58 0.373769 0.727956 +SURF 0x30 +mat 1 +refs 3 +60 0.291159 0.731802 +36 0.218752 0.757199 +37 0.218752 0.73049 +SURF 0x30 +mat 1 +refs 3 +36 0.218752 0.757199 +60 0.291159 0.731802 +35 0.291159 0.762745 +SURF 0x30 +mat 1 +refs 3 +61 0.291159 0.711128 +37 0.218752 0.73049 +38 0.218752 0.712639 +SURF 0x30 +mat 1 +refs 3 +37 0.218752 0.73049 +61 0.291159 0.711128 +60 0.291159 0.731802 +SURF 0x30 +mat 1 +refs 3 +62 0.291159 0.703872 +38 0.218752 0.712639 +66 0.218752 0.706377 +SURF 0x30 +mat 1 +refs 3 +38 0.218752 0.712639 +62 0.291159 0.703872 +61 0.291159 0.711128 +SURF 0x30 +mat 1 +refs 3 +63 0.291159 0.711128 +66 0.218752 0.706377 +67 0.218752 0.712639 +SURF 0x30 +mat 1 +refs 3 +66 0.218752 0.706377 +63 0.291159 0.711128 +62 0.291159 0.703872 +SURF 0x30 +mat 1 +refs 3 +64 0.291159 0.731802 +67 0.218752 0.712639 +68 0.218752 0.73049 +SURF 0x30 +mat 1 +refs 3 +67 0.218752 0.712639 +64 0.291159 0.731802 +63 0.291159 0.711128 +SURF 0x30 +mat 1 +refs 3 +65 0.291159 0.762745 +68 0.218752 0.73049 +69 0.218752 0.757199 +SURF 0x30 +mat 1 +refs 3 +68 0.218752 0.73049 +65 0.291159 0.762745 +64 0.291159 0.731802 +kids 0 +OBJECT poly +name "Fuse" +loc 0.183495 -0.0165673 -0.00043716 +texture "EasyStarPurWeiss.jpg" +crease 45.000000 +numvert 298 +0.430858 -0.03882 0.000432083 +0.4236 -0.0513741 -0.00896837 +0.427702 -0.0443289 -0.0158519 +0.430781 -0.0384157 -0.0183739 +0.435228 -0.0293083 -0.0158519 +0.43917 -0.022637 -0.00896837 +0.440217 -0.0201959 0.000432082 +-0.311796 -0.0675368 -0.0223463 +-0.311796 -0.0733894 0.000432115 +-0.345901 -0.0705238 0.000427063 +-0.345901 -0.0654849 -0.0202388 +-0.00401098 -0.0733591 0.00044221 +-0.0325616 -0.0749258 0.000472535 +-0.0325616 -0.0684263 -0.0174591 +-0.00395761 -0.0681635 -0.0171711 +-0.0309421 -0.0518897 -0.0321057 +-0.00300258 -0.051642 -0.030928 +-0.0286958 -0.0330027 -0.0366492 +-0.00173427 -0.0363182 -0.0349813 +-0.0153335 0.0117101 -0.0299677 +0.00633359 -0.000768201 -0.0267838 +-0.00437018 0.0388956 -0.0195818 +0.019207 0.0283782 -0.0171711 +0.00154319 0.0513387 -0.0175652 +0.0326609 0.0415085 -0.0154122 +-0.311796 0.00959752 -0.00707816 +-0.311796 0.00608999 -0.0205572 +-0.345901 -0.000899687 -0.0178533 +-0.345901 0.00413919 0.000427063 +-0.311796 0.0116039 0.000442223 +0.0179922 -0.067835 -0.0170598 +0.039132 -0.0672589 -0.0169334 +0.0392007 -0.0713072 0.0004321 +0.0176177 -0.0725099 0.000447263 +0.0196347 -0.0522181 -0.0299526 +0.039132 -0.0526831 -0.0296443 +0.0208877 -0.0371925 -0.0333995 +0.040492 -0.0376727 -0.03252 +0.0234395 -0.0183007 -0.0260661 +0.0457177 -0.0251589 -0.0260914 +0.0292689 0.00195591 -0.0167819 +0.0521812 -0.0188566 -0.0145631 +0.0423332 0.00956215 0.0004321 +0.0619375 -0.0149802 0.000432099 +0.0371533 0.00876361 -0.00782619 +0.0414546 0.033877 0.000442208 +-0.379173 -0.0638372 0.000401794 +-0.41188 -0.0532037 0.000432119 +-0.41188 -0.0508889 -0.00937268 +-0.379173 -0.0600316 -0.0157812 +-0.41188 -0.0445664 -0.0242416 +-0.379173 -0.049029 -0.0318226 +-0.345901 -0.0517127 -0.0369575 +-0.41188 -0.035924 -0.025409 +-0.379173 -0.0342966 -0.0346832 +-0.41188 -0.0272867 -0.0211131 +-0.379173 -0.0200796 -0.0289772 +-0.41188 -0.0209591 -0.00937268 +-0.379173 -0.0096785 -0.0133957 +-0.41188 -0.0186444 0.000432119 +-0.379173 -0.00586775 0.000401794 +-0.284361 -0.0757093 0.000462438 +-0.284361 -0.0697303 -0.0224474 +-0.253984 -0.0716811 -0.0219623 +-0.253984 -0.0778016 0.000462437 +-0.311796 -0.0539314 -0.0392065 +-0.284361 -0.0545783 -0.0410866 +-0.253984 -0.0549523 -0.0415617 +-0.425556 -0.0485793 0.000416958 +-0.425556 -0.0470681 -0.00670921 +-0.425556 -0.042934 -0.0171711 +-0.425556 -0.0372836 -0.0187024 +-0.425556 -0.0316382 -0.015488 +-0.425556 -0.027499 -0.00670921 +-0.425556 -0.0259878 0.000416958 +-0.222943 -0.0786304 0.000462435 +-0.222943 -0.0725099 -0.0222452 +-0.191787 -0.0719894 -0.0219319 +-0.191787 -0.0780543 0.00043211 +-0.222943 -0.0557862 -0.041592 +-0.191787 -0.0554326 -0.0400707 +-0.140744 -0.0787315 0.000462432 +-0.140744 -0.0724645 -0.0202893 +-0.140744 -0.0553466 -0.037847 +-0.140744 -0.0227431 -0.0392368 +-0.191787 -0.019266 -0.0407177 +-0.191787 0.0179771 -0.0346124 +-0.140744 0.0187352 -0.0335864 +-0.191787 0.0416754 -0.0201428 +-0.140744 0.0418067 -0.0193897 +-0.140744 0.0507271 0.000432108 +-0.140744 0.0472651 -0.0105149 +-0.191787 0.0468709 -0.0106968 +-0.191787 0.050348 0.00043211 +0.0470318 0.0602694 0.000421991 +0.045099 0.0724743 -0.0121069 +0.0443042 0.0778827 0.000421991 +0.0470318 0.0602694 -0.0172266 +0.0489648 0.0480636 -0.0121069 +0.049767 0.0430046 0.000421991 +0.041149 0.0787315 0.000421992 +0.041149 0.0733186 -0.0121069 +0.0111009 0.0723788 -0.0121069 +0.0135763 0.0774984 0.000421993 +0.041149 0.0610831 -0.0172266 +0.00755584 0.0610831 -0.0172266 +0.041149 0.048842 -0.0157104 +-0.100512 -0.071206 -0.018576 +-0.069631 -0.0701952 -0.0181818 +-0.069631 -0.0766443 0.000472537 +-0.100588 -0.0775741 0.000467484 +-0.100321 -0.0538101 -0.034951 +-0.069631 -0.0525871 -0.0338392 +-0.0862327 0.0421909 -0.0200164 +-0.0491865 0.0409375 -0.0206634 +-0.0593933 0.0195084 -0.0325352 +-0.0894797 0.0191395 -0.0330406 +-0.0861563 0.0465373 -0.0151999 +-0.046138 0.0476239 -0.0161147 +-0.0861257 0.0490087 -0.0122383 +-0.0440141 0.0535321 -0.0141285 +-0.0860724 0.0531783 -0.00314614 +-0.0860494 0.0544669 0.000427051 +-0.0407441 0.0614261 0.000421995 +-0.042104 0.0587934 -0.0070731 +-0.05102 -0.0694371 -0.0178028 +-0.0512721 -0.0759214 0.000472536 +-0.0501185 -0.0521121 -0.0325554 +-0.0481702 -0.0307588 -0.0370484 +-0.0671938 -0.0278072 -0.037938 +-0.0362978 0.0179719 -0.0308977 +-0.0235466 0.0407656 -0.0201175 +-0.0117198 0.0517177 -0.0167667 +-0.00275815 0.0683052 -0.00931201 +-0.000443175 0.072495 0.000421993 +-0.00724272 0.0578078 -0.0154274 +-0.43438 -0.0432018 0.000396742 +-0.440217 -0.0372836 0.000411905 +-0.43438 -0.0424083 -0.0045663 +-0.43438 -0.0402452 -0.0098831 +-0.43438 -0.0372836 -0.0118289 +-0.43438 -0.0343269 -0.0098831 +-0.43438 -0.0321587 -0.0045663 +-0.43438 -0.0313653 0.000396742 +0.379036 -0.0556397 0.000432085 +0.379005 -0.0529307 -0.00989327 +0.378921 -0.0448899 -0.0175501 +0.389533 -0.0447635 -0.0171761 +0.389533 -0.0525617 -0.00967591 +0.378814 -0.0383146 -0.0202489 +0.389533 -0.0383347 -0.0198648 +0.378715 -0.028722 -0.0173025 +0.389533 -0.0288332 -0.0170194 +0.378646 -0.0218738 -0.00980227 +0.389533 -0.0220154 -0.00964558 +0.378615 -0.0191801 0.000432085 +0.389533 -0.019362 0.000432084 +0.405104 -0.0445815 -0.0166201 +0.405195 -0.0520159 -0.00935243 +0.404996 -0.038365 -0.0193038 +0.404889 -0.028995 -0.0166252 +0.404805 -0.0222124 -0.00943334 +0.404783 -0.0196248 0.000432084 +0.419306 -0.0599508 0.000432083 +0.416877 -0.0644286 0.000432083 +0.417503 -0.0632358 -0.00496052 +0.405226 -0.0651007 0.000432084 +0.405203 -0.0634128 -0.00475837 +0.389533 -0.0585104 0.000432084 +0.389533 -0.057449 -0.00383856 +0.427702 -0.0443289 0.0167263 +0.4236 -0.0513741 0.00984269 +0.430781 -0.0384157 0.0192482 +0.435228 -0.0293083 0.0167263 +0.43917 -0.022637 0.00984269 +-0.345901 -0.0654849 0.0211131 +-0.311796 -0.0675368 0.0232206 +-0.00395761 -0.0681635 0.0180454 +-0.0325616 -0.0684263 0.0183334 +-0.00300258 -0.051642 0.0318023 +-0.0309421 -0.0518897 0.03298 +-0.00173427 -0.0363182 0.0358557 +-0.0286958 -0.0330027 0.0375235 +0.00633359 -0.000768201 0.0276581 +-0.0153335 0.0117101 0.0308421 +0.019207 0.0283782 0.0180454 +-0.00437018 0.0388956 0.0204561 +0.0326609 0.0415085 0.0162866 +0.00154319 0.0513387 0.0184395 +-0.345901 -0.000899687 0.0187276 +-0.311796 0.00608999 0.0214315 +-0.311796 0.00959752 0.00795248 +0.039132 -0.0672589 0.0178078 +0.0179922 -0.067835 0.0179341 +0.039132 -0.0526831 0.0305187 +0.0196347 -0.0522181 0.0308269 +0.040492 -0.0376727 0.0333944 +0.0208877 -0.0371925 0.0342738 +0.0457177 -0.0251589 0.0269657 +0.0234395 -0.0183007 0.0269404 +0.0521812 -0.0188566 0.0154375 +0.0292689 0.00195591 0.0176562 +0.0371533 0.00876361 0.00870051 +-0.379173 -0.0600316 0.0166555 +-0.41188 -0.0508889 0.010247 +-0.379173 -0.049029 0.0326969 +-0.41188 -0.0445664 0.0251159 +-0.379173 -0.0342966 0.0355575 +-0.41188 -0.035924 0.0262834 +-0.379173 -0.0200796 0.0298515 +-0.41188 -0.0272867 0.0219875 +-0.379173 -0.0096785 0.01427 +-0.41188 -0.0209591 0.010247 +-0.345901 -0.0146668 0.0349611 +-0.284361 -0.0697303 0.0233217 +-0.253984 -0.0716811 0.0228366 +-0.425556 -0.0470681 0.00758353 +-0.425556 -0.042934 0.0180454 +-0.425556 -0.0372836 0.0195767 +-0.425556 -0.0316382 0.0163624 +-0.425556 -0.027499 0.00758353 +-0.222943 -0.0725099 0.0231196 +-0.191787 -0.0719894 0.0228062 +-0.140744 -0.0724645 0.0211636 +-0.140744 0.0187352 0.0344608 +-0.191787 0.0179771 0.0354867 +-0.191787 -0.019266 0.041592 +-0.140744 -0.0227431 0.0401111 +-0.140744 0.0418067 0.020264 +-0.191787 0.0416754 0.0210171 +-0.191787 0.0468709 0.0115712 +-0.140744 0.0472651 0.0113892 +0.045099 0.0724743 0.0129812 +0.0470318 0.0602694 0.0181009 +0.0489648 0.0480636 0.0129812 +0.041149 0.0733186 0.0129812 +0.0111009 0.0723788 0.0129812 +0.041149 0.0610831 0.0181009 +0.00755584 0.0610831 0.0181009 +0.041149 0.048842 0.0165848 +-0.069631 -0.0701952 0.0190561 +-0.100512 -0.071206 0.0194504 +-0.069631 -0.0525871 0.0347135 +-0.100321 -0.0538101 0.0358253 +-0.140744 -0.0553466 0.0387213 +-0.0894797 0.0191395 0.0339149 +-0.0593933 0.0195084 0.0334096 +-0.0491865 0.0409375 0.0215377 +-0.0862327 0.0421909 0.0208907 +-0.046138 0.0476239 0.0169891 +-0.0861563 0.0465373 0.0160743 +-0.0861257 0.0490087 0.0131126 +-0.0440141 0.0535321 0.0150028 +-0.0860724 0.0531783 0.00402046 +-0.042104 0.0587934 0.00794742 +-0.05102 -0.0694371 0.0186771 +-0.0501185 -0.0521121 0.0334297 +-0.0481702 -0.0307588 0.0379227 +-0.0671938 -0.0278072 0.0388123 +-0.0362978 0.0179719 0.031772 +-0.0235466 0.0407656 0.0209918 +-0.0117198 0.0517177 0.017641 +-0.00275815 0.0683052 0.0101863 +-0.00724272 0.0578078 0.0163017 +-0.43438 -0.0424083 0.00544065 +-0.43438 -0.0402452 0.0107574 +-0.43438 -0.0372836 0.0127033 +-0.43438 -0.0343269 0.0107574 +-0.43438 -0.0321587 0.00544065 +0.379005 -0.0529307 0.0107676 +0.378921 -0.0448899 0.0184244 +0.389533 -0.0525617 0.0105502 +0.389533 -0.0447635 0.0180504 +0.378814 -0.0383146 0.0211232 +0.389533 -0.0383347 0.0207392 +0.378715 -0.028722 0.0181768 +0.389533 -0.0288332 0.0178937 +0.378646 -0.0218738 0.0106766 +0.389533 -0.0220154 0.0105199 +0.405195 -0.0520159 0.0102267 +0.405104 -0.0445815 0.0174945 +0.404996 -0.038365 0.0201782 +0.404889 -0.028995 0.0174995 +0.404805 -0.0222124 0.0103077 +0.417503 -0.0632358 0.00583484 +0.405203 -0.0634128 0.00563269 +0.389533 -0.057449 0.00471283 +0.313179 -0.022738 -0.00137725 +0.30696 -0.022738 0.000462412 +0.330896 -0.022738 -0.00293389 +0.357399 -0.022738 -0.00397502 +0.408465 -0.022738 -0.00434396 +0.409374 -0.0160061 -0.00397502 +0.409374 -0.0160061 0.00490994 +0.357399 -0.022738 0.00490994 +0.408465 -0.022738 0.00527383 +0.330896 -0.022738 0.00386376 +0.313179 -0.022738 0.00230713 +numsurf 523 +SURF 0x30 +mat 1 +refs 3 +157 0.909641 0.214954 +148 0.892985 0.206336 +147 0.892985 0.214757 +SURF 0x30 +mat 1 +refs 3 +148 0.892985 0.206336 +157 0.909641 0.214954 +158 0.909734 0.206926 +SURF 0x30 +mat 1 +refs 3 +8 0.143009 0.183846 +10 0.106539 0.192382 +7 0.143009 0.190166 +SURF 0x30 +mat 1 +refs 3 +10 0.106539 0.192382 +8 0.143009 0.183846 +9 0.106539 0.186941 +SURF 0x30 +mat 1 +refs 3 +14 0.472201 0.189489 +12 0.441611 0.182187 +13 0.441611 0.189206 +SURF 0x30 +mat 1 +refs 3 +12 0.441611 0.182187 +14 0.472201 0.189489 +11 0.472147 0.183879 +SURF 0x30 +mat 1 +refs 3 +15 0.443346 0.207062 +14 0.472201 0.189489 +13 0.441611 0.189206 +SURF 0x30 +mat 1 +refs 3 +14 0.472201 0.189489 +15 0.443346 0.207062 +16 0.473228 0.20733 +SURF 0x30 +mat 1 +refs 3 +17 0.445751 0.227457 +16 0.473228 0.20733 +15 0.443346 0.207062 +SURF 0x30 +mat 1 +refs 3 +16 0.473228 0.20733 +17 0.445751 0.227457 +18 0.474579 0.223876 +SURF 0x30 +mat 1 +refs 3 +19 0.460035 0.275738 +18 0.474579 0.223876 +17 0.445751 0.227457 +SURF 0x30 +mat 1 +refs 3 +18 0.474579 0.223876 +19 0.460035 0.275738 +20 0.483205 0.262264 +SURF 0x30 +mat 1 +refs 3 +21 0.471763 0.305093 +20 0.483205 0.262264 +19 0.460035 0.275738 +SURF 0x30 +mat 1 +refs 3 +20 0.483205 0.262264 +21 0.471763 0.305093 +22 0.496976 0.293737 +SURF 0x30 +mat 1 +refs 3 +23 0.478087 0.318529 +22 0.496976 0.293737 +21 0.471763 0.305093 +SURF 0x30 +mat 1 +refs 3 +22 0.496976 0.293737 +23 0.478087 0.318529 +24 0.511363 0.307915 +SURF 0x30 +mat 1 +refs 3 +31 0.518281 0.190466 +33 0.495279 0.184796 +30 0.495679 0.189844 +SURF 0x30 +mat 1 +refs 3 +33 0.495279 0.184796 +31 0.518281 0.190466 +32 0.518356 0.186095 +SURF 0x30 +mat 1 +refs 3 +30 0.495679 0.189844 +11 0.472147 0.183879 +14 0.472201 0.189489 +SURF 0x30 +mat 1 +refs 3 +11 0.472147 0.183879 +30 0.495679 0.189844 +33 0.495279 0.184796 +SURF 0x30 +mat 1 +refs 3 +34 0.49743 0.206708 +31 0.518281 0.190466 +30 0.495679 0.189844 +SURF 0x30 +mat 1 +refs 3 +31 0.518281 0.190466 +34 0.49743 0.206708 +35 0.518281 0.206205 +SURF 0x30 +mat 1 +refs 3 +16 0.473228 0.20733 +30 0.495679 0.189844 +14 0.472201 0.189489 +SURF 0x30 +mat 1 +refs 3 +30 0.495679 0.189844 +16 0.473228 0.20733 +34 0.49743 0.206708 +SURF 0x30 +mat 1 +refs 3 +36 0.498775 0.222932 +35 0.518281 0.206205 +34 0.49743 0.206708 +SURF 0x30 +mat 1 +refs 3 +35 0.518281 0.206205 +36 0.498775 0.222932 +37 0.519734 0.222414 +SURF 0x30 +mat 1 +refs 3 +18 0.474579 0.223876 +34 0.49743 0.206708 +16 0.473228 0.20733 +SURF 0x30 +mat 1 +refs 3 +34 0.49743 0.206708 +18 0.474579 0.223876 +36 0.498775 0.222932 +SURF 0x30 +mat 1 +refs 3 +296 0.830281 0.23854 +287 0.811338 0.23854 +289 0.830281 0.23854 +SURF 0x30 +mat 1 +refs 3 +287 0.811338 0.23854 +296 0.830281 0.23854 +297 0.811338 0.23854 +SURF 0x30 +mat 1 +refs 3 +294 0.858628 0.23854 +289 0.830281 0.23854 +290 0.858628 0.23854 +SURF 0x30 +mat 1 +refs 3 +289 0.830281 0.23854 +294 0.858628 0.23854 +296 0.830281 0.23854 +SURF 0x30 +mat 1 +refs 3 +295 0.913236 0.23854 +290 0.858628 0.23854 +291 0.913236 0.23854 +SURF 0x30 +mat 1 +refs 3 +290 0.858628 0.23854 +295 0.913236 0.23854 +294 0.858628 0.23854 +SURF 0x30 +mat 1 +refs 3 +292 0.914208 0.24581 +295 0.913236 0.23854 +291 0.913236 0.23854 +SURF 0x30 +mat 1 +refs 3 +295 0.913236 0.23854 +292 0.914208 0.24581 +293 0.914208 0.24581 +SURF 0x30 +mat 1 +refs 3 +38 0.501499 0.243332 +37 0.519734 0.222414 +36 0.498775 0.222932 +SURF 0x30 +mat 1 +refs 3 +37 0.519734 0.222414 +38 0.501499 0.243332 +39 0.525323 0.235926 +SURF 0x30 +mat 1 +refs 3 +20 0.483205 0.262264 +36 0.498775 0.222932 +18 0.474579 0.223876 +SURF 0x30 +mat 1 +refs 3 +36 0.498775 0.222932 +20 0.483205 0.262264 +38 0.501499 0.243332 +SURF 0x30 +mat 1 +refs 3 +40 0.507736 0.265205 +39 0.525323 0.235926 +38 0.501499 0.243332 +SURF 0x30 +mat 1 +refs 3 +39 0.525323 0.235926 +40 0.507736 0.265205 +41 0.532235 0.242732 +SURF 0x30 +mat 1 +refs 3 +22 0.496976 0.293737 +38 0.501499 0.243332 +20 0.483205 0.262264 +SURF 0x30 +mat 1 +refs 3 +38 0.501499 0.243332 +22 0.496976 0.293737 +40 0.507736 0.265205 +SURF 0x30 +mat 1 +refs 3 +24 0.511363 0.307915 +42 0.521707 0.273419 +44 0.516167 0.272556 +SURF 0x30 +mat 1 +refs 3 +42 0.521707 0.273419 +24 0.511363 0.307915 +45 0.520767 0.299674 +SURF 0x30 +mat 1 +refs 3 +24 0.511363 0.307915 +40 0.507736 0.265205 +22 0.496976 0.293737 +SURF 0x30 +mat 1 +refs 3 +40 0.507736 0.265205 +24 0.511363 0.307915 +44 0.516167 0.272556 +SURF 0x30 +mat 1 +refs 3 +44 0.516167 0.272556 +41 0.532235 0.242732 +40 0.507736 0.265205 +SURF 0x30 +mat 1 +refs 3 +41 0.532235 0.242732 +44 0.516167 0.272556 +43 0.542666 0.246918 +SURF 0x30 +mat 1 +refs 3 +46 0.0709605 0.194161 +48 0.0359876 0.208143 +49 0.0709605 0.19827 +SURF 0x30 +mat 1 +refs 3 +48 0.0359876 0.208143 +46 0.0709605 0.194161 +47 0.0359876 0.205643 +SURF 0x30 +mat 1 +refs 3 +9 0.106539 0.186941 +49 0.0709605 0.19827 +10 0.106539 0.192382 +SURF 0x30 +mat 1 +refs 3 +49 0.0709605 0.19827 +9 0.106539 0.186941 +46 0.0709605 0.194161 +SURF 0x30 +mat 1 +refs 3 +49 0.0709605 0.19827 +50 0.0359876 0.21497 +51 0.0709605 0.210151 +SURF 0x30 +mat 1 +refs 3 +50 0.0359876 0.21497 +49 0.0709605 0.19827 +48 0.0359876 0.208143 +SURF 0x30 +mat 1 +refs 3 +10 0.106539 0.192382 +51 0.0709605 0.210151 +52 0.106539 0.207253 +SURF 0x30 +mat 1 +refs 3 +51 0.0709605 0.210151 +10 0.106539 0.192382 +49 0.0709605 0.19827 +SURF 0x30 +mat 1 +refs 3 +54 0.0709605 0.226059 +50 0.0359876 0.21497 +53 0.0359876 0.224302 +SURF 0x30 +mat 1 +refs 3 +50 0.0359876 0.21497 +54 0.0709605 0.226059 +51 0.0709605 0.210151 +SURF 0x30 +mat 1 +refs 3 +56 0.0709605 0.241411 +53 0.0359876 0.224302 +55 0.0359876 0.233629 +SURF 0x30 +mat 1 +refs 3 +53 0.0359876 0.224302 +56 0.0709605 0.241411 +54 0.0709605 0.226059 +SURF 0x30 +mat 1 +refs 3 +55 0.0359876 0.233629 +58 0.0709605 0.252642 +56 0.0709605 0.241411 +SURF 0x30 +mat 1 +refs 3 +58 0.0709605 0.252642 +55 0.0359876 0.233629 +57 0.0359876 0.240461 +SURF 0x30 +mat 1 +refs 3 +57 0.0359876 0.240461 +60 0.0709605 0.256757 +58 0.0709605 0.252642 +SURF 0x30 +mat 1 +refs 3 +60 0.0709605 0.256757 +57 0.0359876 0.240461 +59 0.0359876 0.242961 +SURF 0x30 +mat 1 +refs 3 +58 0.0709605 0.252642 +28 0.106539 0.267563 +27 0.106539 0.262122 +SURF 0x30 +mat 1 +refs 3 +28 0.106539 0.267563 +58 0.0709605 0.252642 +60 0.0709605 0.256757 +SURF 0x30 +mat 1 +refs 3 +61 0.17235 0.181342 +7 0.143009 0.190166 +62 0.17235 0.187798 +SURF 0x30 +mat 1 +refs 3 +7 0.143009 0.190166 +61 0.17235 0.181342 +8 0.143009 0.183846 +SURF 0x30 +mat 1 +refs 3 +63 0.204832 0.185691 +61 0.17235 0.181342 +62 0.17235 0.187798 +SURF 0x30 +mat 1 +refs 3 +61 0.17235 0.181342 +63 0.204832 0.185691 +64 0.204832 0.179082 +SURF 0x30 +mat 1 +refs 3 +62 0.17235 0.187798 +65 0.143009 0.204857 +66 0.17235 0.204159 +SURF 0x30 +mat 1 +refs 3 +65 0.143009 0.204857 +62 0.17235 0.187798 +7 0.143009 0.190166 +SURF 0x30 +mat 1 +refs 3 +63 0.204832 0.185691 +66 0.17235 0.204159 +67 0.204832 0.203755 +SURF 0x30 +mat 1 +refs 3 +66 0.17235 0.204159 +63 0.204832 0.185691 +62 0.17235 0.187798 +SURF 0x30 +mat 1 +refs 3 +47 0.0359876 0.205643 +69 0.0213628 0.212269 +48 0.0359876 0.208143 +SURF 0x30 +mat 1 +refs 3 +69 0.0213628 0.212269 +47 0.0359876 0.205643 +68 0.0213628 0.210637 +SURF 0x30 +mat 1 +refs 3 +48 0.0359876 0.208143 +70 0.0213628 0.216733 +50 0.0359876 0.21497 +SURF 0x30 +mat 1 +refs 3 +70 0.0213628 0.216733 +48 0.0359876 0.208143 +69 0.0213628 0.212269 +SURF 0x30 +mat 1 +refs 3 +53 0.0359876 0.224302 +70 0.0213628 0.216733 +71 0.0213628 0.222834 +SURF 0x30 +mat 1 +refs 3 +70 0.0213628 0.216733 +53 0.0359876 0.224302 +50 0.0359876 0.21497 +SURF 0x30 +mat 1 +refs 3 +55 0.0359876 0.233629 +71 0.0213628 0.222834 +72 0.0213628 0.22893 +SURF 0x30 +mat 1 +refs 3 +71 0.0213628 0.222834 +55 0.0359876 0.233629 +53 0.0359876 0.224302 +SURF 0x30 +mat 1 +refs 3 +72 0.0213628 0.22893 +57 0.0359876 0.240461 +55 0.0359876 0.233629 +SURF 0x30 +mat 1 +refs 3 +57 0.0359876 0.240461 +72 0.0213628 0.22893 +73 0.0213628 0.2334 +SURF 0x30 +mat 1 +refs 3 +73 0.0213628 0.2334 +59 0.0359876 0.242961 +57 0.0359876 0.240461 +SURF 0x30 +mat 1 +refs 3 +59 0.0359876 0.242961 +73 0.0213628 0.2334 +74 0.0213628 0.235031 +SURF 0x30 +mat 1 +refs 3 +75 0.238027 0.178187 +63 0.204832 0.185691 +76 0.238027 0.184796 +SURF 0x30 +mat 1 +refs 3 +63 0.204832 0.185691 +75 0.238027 0.178187 +64 0.204832 0.179082 +SURF 0x30 +mat 1 +refs 3 +77 0.271346 0.185358 +75 0.238027 0.178187 +76 0.238027 0.184796 +SURF 0x30 +mat 1 +refs 3 +75 0.238027 0.178187 +77 0.271346 0.185358 +78 0.271346 0.178809 +SURF 0x30 +mat 1 +refs 3 +80 0.271346 0.203237 +76 0.238027 0.184796 +79 0.238027 0.202855 +SURF 0x30 +mat 1 +refs 3 +76 0.238027 0.184796 +80 0.271346 0.203237 +77 0.271346 0.185358 +SURF 0x30 +mat 1 +refs 3 +82 0.325927 0.184845 +78 0.271346 0.178809 +77 0.271346 0.185358 +SURF 0x30 +mat 1 +refs 3 +78 0.271346 0.178809 +82 0.325927 0.184845 +81 0.325927 0.178078 +SURF 0x30 +mat 1 +refs 3 +83 0.325927 0.203329 +77 0.271346 0.185358 +80 0.271346 0.203237 +SURF 0x30 +mat 1 +refs 3 +77 0.271346 0.185358 +83 0.325927 0.203329 +82 0.325927 0.184845 +SURF 0x30 +mat 1 +refs 3 +87 0.325927 0.283324 +85 0.271346 0.24229 +86 0.271346 0.282505 +SURF 0x30 +mat 1 +refs 3 +85 0.271346 0.24229 +87 0.325927 0.283324 +84 0.325927 0.238535 +SURF 0x30 +mat 1 +refs 3 +89 0.325927 0.308237 +86 0.271346 0.282505 +88 0.271346 0.308095 +SURF 0x30 +mat 1 +refs 3 +86 0.271346 0.282505 +89 0.325927 0.308237 +87 0.325927 0.283324 +SURF 0x30 +mat 1 +refs 3 +93 0.271346 0.31746 +91 0.325927 0.314131 +92 0.271346 0.313705 +SURF 0x30 +mat 1 +refs 3 +91 0.325927 0.314131 +93 0.271346 0.31746 +90 0.325927 0.317869 +SURF 0x30 +mat 1 +refs 3 +92 0.271346 0.313705 +89 0.325927 0.308237 +88 0.271346 0.308095 +SURF 0x30 +mat 1 +refs 3 +89 0.325927 0.308237 +92 0.271346 0.313705 +91 0.325927 0.314131 +SURF 0x30 +mat 1 +refs 3 +100 0.520437 0.348109 +95 0.524663 0.341352 +101 0.520437 0.342264 +SURF 0x30 +mat 1 +refs 3 +95 0.524663 0.341352 +100 0.520437 0.348109 +96 0.523809 0.347192 +SURF 0x30 +mat 1 +refs 3 +286 0.892985 0.201059 +269 0.881727 0.205938 +144 0.881759 0.203013 +SURF 0x30 +mat 1 +refs 3 +269 0.881727 0.205938 +286 0.892985 0.201059 +271 0.892985 0.206336 +SURF 0x30 +mat 1 +refs 3 +285 0.909744 0.194619 +271 0.892985 0.206336 +286 0.892985 0.201059 +SURF 0x30 +mat 1 +refs 3 +271 0.892985 0.206336 +285 0.909744 0.194619 +279 0.909734 0.206926 +SURF 0x30 +mat 1 +refs 3 +285 0.909744 0.194619 +168 0.892985 0.199913 +166 0.909766 0.192797 +SURF 0x30 +mat 1 +refs 3 +168 0.892985 0.199913 +285 0.909744 0.194619 +286 0.892985 0.201059 +SURF 0x30 +mat 1 +refs 3 +285 0.909744 0.194619 +171 0.929417 0.207619 +279 0.909734 0.206926 +SURF 0x30 +mat 1 +refs 3 +171 0.929417 0.207619 +285 0.909744 0.194619 +284 0.922899 0.19481 +SURF 0x30 +mat 1 +refs 3 +284 0.922899 0.19481 +166 0.909766 0.192797 +164 0.922229 0.193522 +SURF 0x30 +mat 1 +refs 3 +166 0.909766 0.192797 +284 0.922899 0.19481 +285 0.909744 0.194619 +SURF 0x30 +mat 1 +refs 3 +163 0.924828 0.198358 +171 0.929417 0.207619 +284 0.922899 0.19481 +SURF 0x30 +mat 1 +refs 3 +171 0.929417 0.207619 +163 0.924828 0.198358 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +156 0.892985 0.242186 +283 0.909323 0.239108 +162 0.909296 0.241902 +SURF 0x30 +mat 1 +refs 3 +283 0.909323 0.239108 +156 0.892985 0.242186 +278 0.892985 0.239321 +SURF 0x30 +mat 1 +refs 3 +162 0.909296 0.241902 +174 0.946069 0.23865 +6 0.947187 0.241286 +SURF 0x30 +mat 1 +refs 3 +174 0.946069 0.23865 +162 0.909296 0.241902 +283 0.909323 0.239108 +SURF 0x30 +mat 1 +refs 3 +278 0.892985 0.239321 +282 0.909409 0.231784 +283 0.909323 0.239108 +SURF 0x30 +mat 1 +refs 3 +282 0.909409 0.231784 +278 0.892985 0.239321 +276 0.892985 0.231959 +SURF 0x30 +mat 1 +refs 3 +283 0.909323 0.239108 +173 0.941848 0.231446 +174 0.946069 0.23865 +SURF 0x30 +mat 1 +refs 3 +173 0.941848 0.231446 +283 0.909323 0.239108 +282 0.909409 0.231784 +SURF 0x30 +mat 1 +refs 3 +281 0.909523 0.221666 +276 0.892985 0.231959 +274 0.892985 0.221699 +SURF 0x30 +mat 1 +refs 3 +276 0.892985 0.231959 +281 0.909523 0.221666 +282 0.909409 0.231784 +SURF 0x30 +mat 1 +refs 3 +281 0.909523 0.221666 +173 0.941848 0.231446 +282 0.909409 0.231784 +SURF 0x30 +mat 1 +refs 3 +173 0.941848 0.231446 +281 0.909523 0.221666 +172 0.937097 0.221612 +SURF 0x30 +mat 1 +refs 3 +280 0.909641 0.214954 +274 0.892985 0.221699 +272 0.892985 0.214757 +SURF 0x30 +mat 1 +refs 3 +274 0.892985 0.221699 +280 0.909641 0.214954 +281 0.909523 0.221666 +SURF 0x30 +mat 1 +refs 3 +280 0.909641 0.214954 +172 0.937097 0.221612 +281 0.909523 0.221666 +SURF 0x30 +mat 1 +refs 3 +172 0.937097 0.221612 +280 0.909641 0.214954 +170 0.933805 0.215227 +SURF 0x30 +mat 1 +refs 3 +279 0.909734 0.206926 +272 0.892985 0.214757 +271 0.892985 0.206336 +SURF 0x30 +mat 1 +refs 3 +272 0.892985 0.214757 +279 0.909734 0.206926 +280 0.909641 0.214954 +SURF 0x30 +mat 1 +refs 3 +279 0.909734 0.206926 +170 0.933805 0.215227 +280 0.909641 0.214954 +SURF 0x30 +mat 1 +refs 3 +170 0.933805 0.215227 +279 0.909734 0.206926 +171 0.929417 0.207619 +SURF 0x30 +mat 1 +refs 3 +155 0.881316 0.242382 +278 0.892985 0.239321 +156 0.892985 0.242186 +SURF 0x30 +mat 1 +refs 3 +278 0.892985 0.239321 +155 0.881316 0.242382 +277 0.881343 0.239474 +SURF 0x30 +mat 1 +refs 3 +43 0.542666 0.246918 +277 0.881343 0.239474 +155 0.881316 0.242382 +SURF 0x30 +mat 1 +refs 3 +277 0.881343 0.239474 +43 0.542666 0.246918 +200 0.532235 0.242732 +SURF 0x30 +mat 1 +refs 3 +277 0.881343 0.239474 +276 0.892985 0.231959 +278 0.892985 0.239321 +SURF 0x30 +mat 1 +refs 3 +276 0.892985 0.231959 +277 0.881343 0.239474 +275 0.881419 0.232079 +SURF 0x30 +mat 1 +refs 3 +200 0.532235 0.242732 +275 0.881419 0.232079 +277 0.881343 0.239474 +SURF 0x30 +mat 1 +refs 3 +275 0.881419 0.232079 +200 0.532235 0.242732 +198 0.525323 0.235926 +SURF 0x30 +mat 1 +refs 3 +273 0.881527 0.221721 +276 0.892985 0.231959 +275 0.881419 0.232079 +SURF 0x30 +mat 1 +refs 3 +276 0.892985 0.231959 +273 0.881527 0.221721 +274 0.892985 0.221699 +SURF 0x30 +mat 1 +refs 3 +273 0.881527 0.221721 +198 0.525323 0.235926 +196 0.519734 0.222414 +SURF 0x30 +mat 1 +refs 3 +198 0.525323 0.235926 +273 0.881527 0.221721 +275 0.881419 0.232079 +SURF 0x30 +mat 1 +refs 3 +270 0.881641 0.214621 +274 0.892985 0.221699 +273 0.881527 0.221721 +SURF 0x30 +mat 1 +refs 3 +274 0.892985 0.221699 +270 0.881641 0.214621 +272 0.892985 0.214757 +SURF 0x30 +mat 1 +refs 3 +270 0.881641 0.214621 +196 0.519734 0.222414 +194 0.518281 0.206205 +SURF 0x30 +mat 1 +refs 3 +196 0.519734 0.222414 +270 0.881641 0.214621 +273 0.881527 0.221721 +SURF 0x30 +mat 1 +refs 3 +269 0.881727 0.205938 +272 0.892985 0.214757 +270 0.881641 0.214621 +SURF 0x30 +mat 1 +refs 3 +272 0.892985 0.214757 +269 0.881727 0.205938 +271 0.892985 0.206336 +SURF 0x30 +mat 1 +refs 3 +269 0.881727 0.205938 +194 0.518281 0.206205 +192 0.518281 0.190466 +SURF 0x30 +mat 1 +refs 3 +194 0.518281 0.206205 +269 0.881727 0.205938 +270 0.881641 0.214621 +SURF 0x30 +mat 1 +refs 3 +269 0.881727 0.205938 +32 0.518356 0.186095 +144 0.881759 0.203013 +SURF 0x30 +mat 1 +refs 3 +32 0.518356 0.186095 +269 0.881727 0.205938 +192 0.518281 0.190466 +SURF 0x30 +mat 1 +refs 3 +268 0.0119264 0.228368 +74 0.0213628 0.235031 +143 0.0119264 0.229225 +SURF 0x30 +mat 1 +refs 3 +74 0.0213628 0.235031 +268 0.0119264 0.228368 +220 0.0213628 0.2334 +SURF 0x30 +mat 1 +refs 3 +267 0.0119264 0.226027 +220 0.0213628 0.2334 +268 0.0119264 0.228368 +SURF 0x30 +mat 1 +refs 3 +220 0.0213628 0.2334 +267 0.0119264 0.226027 +219 0.0213628 0.22893 +SURF 0x30 +mat 1 +refs 3 +218 0.0213628 0.222834 +267 0.0119264 0.226027 +266 0.0119264 0.222834 +SURF 0x30 +mat 1 +refs 3 +267 0.0119264 0.226027 +218 0.0213628 0.222834 +219 0.0213628 0.22893 +SURF 0x30 +mat 1 +refs 3 +217 0.0213628 0.216733 +266 0.0119264 0.222834 +265 0.0119264 0.219636 +SURF 0x30 +mat 1 +refs 3 +266 0.0119264 0.222834 +217 0.0213628 0.216733 +218 0.0213628 0.222834 +SURF 0x30 +mat 1 +refs 3 +216 0.0213628 0.212269 +265 0.0119264 0.219636 +264 0.0119264 0.2173 +SURF 0x30 +mat 1 +refs 3 +265 0.0119264 0.219636 +216 0.0213628 0.212269 +217 0.0213628 0.216733 +SURF 0x30 +mat 1 +refs 3 +103 0.490955 0.346777 +101 0.520437 0.342264 +102 0.488307 0.341249 +SURF 0x30 +mat 1 +refs 3 +101 0.520437 0.342264 +103 0.490955 0.346777 +100 0.520437 0.348109 +SURF 0x30 +mat 1 +refs 3 +95 0.524663 0.341352 +104 0.520437 0.329051 +101 0.520437 0.342264 +SURF 0x30 +mat 1 +refs 3 +104 0.520437 0.329051 +95 0.524663 0.341352 +97 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +102 0.488307 0.341249 +104 0.520437 0.329051 +105 0.484513 0.329051 +SURF 0x30 +mat 1 +refs 3 +104 0.520437 0.329051 +102 0.488307 0.341249 +101 0.520437 0.342264 +SURF 0x30 +mat 1 +refs 3 +68 0.0213628 0.210637 +264 0.0119264 0.2173 +136 0.0119264 0.216444 +SURF 0x30 +mat 1 +refs 3 +264 0.0119264 0.2173 +68 0.0213628 0.210637 +216 0.0213628 0.212269 +SURF 0x30 +mat 1 +refs 3 +188 0.478087 0.318529 +263 0.468688 0.325515 +261 0.4639 0.318939 +SURF 0x30 +mat 1 +refs 3 +263 0.468688 0.325515 +188 0.478087 0.318529 +238 0.484513 0.329051 +SURF 0x30 +mat 1 +refs 3 +261 0.4639 0.318939 +252 0.42937 0.320898 +249 0.4271 0.314518 +SURF 0x30 +mat 1 +refs 3 +252 0.42937 0.320898 +261 0.4639 0.318939 +263 0.468688 0.325515 +SURF 0x30 +mat 1 +refs 3 +238 0.484513 0.329051 +262 0.473487 0.33685 +263 0.468688 0.325515 +SURF 0x30 +mat 1 +refs 3 +262 0.473487 0.33685 +238 0.484513 0.329051 +236 0.488307 0.341249 +SURF 0x30 +mat 1 +refs 3 +263 0.468688 0.325515 +254 0.431407 0.326579 +252 0.42937 0.320898 +SURF 0x30 +mat 1 +refs 3 +254 0.431407 0.326579 +263 0.468688 0.325515 +262 0.473487 0.33685 +SURF 0x30 +mat 1 +refs 3 +134 0.475963 0.341374 +236 0.488307 0.341249 +103 0.490955 0.346777 +SURF 0x30 +mat 1 +refs 3 +236 0.488307 0.341249 +134 0.475963 0.341374 +262 0.473487 0.33685 +SURF 0x30 +mat 1 +refs 3 +123 0.432861 0.329422 +262 0.473487 0.33685 +134 0.475963 0.341374 +SURF 0x30 +mat 1 +refs 3 +262 0.473487 0.33685 +123 0.432861 0.329422 +254 0.431407 0.326579 +SURF 0x30 +mat 1 +refs 3 +260 0.451258 0.307113 +249 0.4271 0.314518 +247 0.423841 0.307298 +SURF 0x30 +mat 1 +refs 3 +249 0.4271 0.314518 +260 0.451258 0.307113 +261 0.4639 0.318939 +SURF 0x30 +mat 1 +refs 3 +186 0.471763 0.305093 +261 0.4639 0.318939 +260 0.451258 0.307113 +SURF 0x30 +mat 1 +refs 3 +261 0.4639 0.318939 +186 0.471763 0.305093 +188 0.478087 0.318529 +SURF 0x30 +mat 1 +refs 3 +259 0.437617 0.2825 +247 0.423841 0.307298 +246 0.412924 0.284159 +SURF 0x30 +mat 1 +refs 3 +247 0.423841 0.307298 +259 0.437617 0.2825 +260 0.451258 0.307113 +SURF 0x30 +mat 1 +refs 3 +184 0.460035 0.275738 +260 0.451258 0.307113 +259 0.437617 0.2825 +SURF 0x30 +mat 1 +refs 3 +260 0.451258 0.307113 +184 0.460035 0.275738 +186 0.471763 0.305093 +SURF 0x30 +mat 1 +refs 3 +97 0.526733 0.328173 +106 0.520437 0.315834 +104 0.520437 0.329051 +SURF 0x30 +mat 1 +refs 3 +106 0.520437 0.315834 +97 0.526733 0.328173 +98 0.528798 0.314993 +SURF 0x30 +mat 1 +refs 3 +106 0.520437 0.315834 +99 0.529657 0.30953 +45 0.520767 0.299674 +SURF 0x30 +mat 1 +refs 3 +99 0.529657 0.30953 +106 0.520437 0.315834 +98 0.528798 0.314993 +SURF 0x30 +mat 1 +refs 3 +108 0.401974 0.187296 +110 0.368871 0.179328 +107 0.368952 0.186204 +SURF 0x30 +mat 1 +refs 3 +110 0.368871 0.179328 +108 0.401974 0.187296 +109 0.401974 0.180332 +SURF 0x30 +mat 1 +refs 3 +257 0.424927 0.22988 +246 0.412924 0.284159 +258 0.404579 0.233067 +SURF 0x30 +mat 1 +refs 3 +246 0.412924 0.284159 +257 0.424927 0.22988 +259 0.437617 0.2825 +SURF 0x30 +mat 1 +refs 3 +182 0.445751 0.227457 +259 0.437617 0.2825 +257 0.424927 0.22988 +SURF 0x30 +mat 1 +refs 3 +259 0.437617 0.2825 +182 0.445751 0.227457 +184 0.460035 0.275738 +SURF 0x30 +mat 1 +refs 3 +256 0.422841 0.206822 +258 0.404579 0.233067 +242 0.401974 0.206309 +SURF 0x30 +mat 1 +refs 3 +258 0.404579 0.233067 +256 0.422841 0.206822 +257 0.424927 0.22988 +SURF 0x30 +mat 1 +refs 3 +180 0.443346 0.207062 +257 0.424927 0.22988 +256 0.422841 0.206822 +SURF 0x30 +mat 1 +refs 3 +257 0.424927 0.22988 +180 0.443346 0.207062 +182 0.445751 0.227457 +SURF 0x30 +mat 1 +refs 3 +255 0.421879 0.188114 +242 0.401974 0.206309 +240 0.401974 0.187296 +SURF 0x30 +mat 1 +refs 3 +242 0.401974 0.206309 +255 0.421879 0.188114 +256 0.422841 0.206822 +SURF 0x30 +mat 1 +refs 3 +178 0.441611 0.189206 +256 0.422841 0.206822 +255 0.421879 0.188114 +SURF 0x30 +mat 1 +refs 3 +256 0.422841 0.206822 +178 0.441611 0.189206 +180 0.443346 0.207062 +SURF 0x30 +mat 1 +refs 3 +255 0.421879 0.188114 +109 0.401974 0.180332 +126 0.421604 0.181112 +SURF 0x30 +mat 1 +refs 3 +109 0.401974 0.180332 +255 0.421879 0.188114 +240 0.401974 0.187296 +SURF 0x30 +mat 1 +refs 3 +178 0.441611 0.189206 +126 0.421604 0.181112 +12 0.441611 0.182187 +SURF 0x30 +mat 1 +refs 3 +126 0.421604 0.181112 +178 0.441611 0.189206 +255 0.421879 0.188114 +SURF 0x30 +mat 1 +refs 3 +239 0.520437 0.315834 +238 0.484513 0.329051 +188 0.478087 0.318529 +SURF 0x30 +mat 1 +refs 3 +238 0.484513 0.329051 +239 0.520437 0.315834 +237 0.520437 0.329051 +SURF 0x30 +mat 1 +refs 3 +251 0.384339 0.316014 +254 0.431407 0.326579 +253 0.384393 0.320516 +SURF 0x30 +mat 1 +refs 3 +254 0.431407 0.326579 +251 0.384339 0.316014 +252 0.42937 0.320898 +SURF 0x30 +mat 1 +refs 3 +231 0.325927 0.314131 +253 0.384393 0.320516 +90 0.325927 0.317869 +SURF 0x30 +mat 1 +refs 3 +253 0.384393 0.320516 +231 0.325927 0.314131 +251 0.384339 0.316014 +SURF 0x30 +mat 1 +refs 3 +107 0.368952 0.186204 +81 0.325927 0.178078 +82 0.325927 0.184845 +SURF 0x30 +mat 1 +refs 3 +81 0.325927 0.178078 +107 0.368952 0.186204 +110 0.368871 0.179328 +SURF 0x30 +mat 1 +refs 3 +111 0.369158 0.204988 +108 0.401974 0.187296 +107 0.368952 0.186204 +SURF 0x30 +mat 1 +refs 3 +108 0.401974 0.187296 +111 0.369158 0.204988 +112 0.401974 0.206309 +SURF 0x30 +mat 1 +refs 3 +111 0.369158 0.204988 +82 0.325927 0.184845 +83 0.325927 0.203329 +SURF 0x30 +mat 1 +refs 3 +82 0.325927 0.184845 +111 0.369158 0.204988 +107 0.368952 0.186204 +SURF 0x30 +mat 1 +refs 3 +113 0.38422 0.308652 +115 0.412924 0.284159 +116 0.38075 0.28376 +SURF 0x30 +mat 1 +refs 3 +115 0.412924 0.284159 +113 0.38422 0.308652 +114 0.423841 0.307298 +SURF 0x30 +mat 1 +refs 3 +122 0.384415 0.321908 +254 0.431407 0.326579 +123 0.432861 0.329422 +SURF 0x30 +mat 1 +refs 3 +254 0.431407 0.326579 +122 0.384415 0.321908 +253 0.384393 0.320516 +SURF 0x30 +mat 1 +refs 3 +249 0.4271 0.314518 +251 0.384339 0.316014 +250 0.384307 0.313345 +SURF 0x30 +mat 1 +refs 3 +251 0.384339 0.316014 +249 0.4271 0.314518 +252 0.42937 0.320898 +SURF 0x30 +mat 1 +refs 3 +228 0.325927 0.308237 +250 0.384307 0.313345 +231 0.325927 0.314131 +SURF 0x30 +mat 1 +refs 3 +250 0.384307 0.313345 +228 0.325927 0.308237 +248 0.38422 0.308652 +SURF 0x30 +mat 1 +refs 3 +247 0.423841 0.307298 +250 0.384307 0.313345 +248 0.38422 0.308652 +SURF 0x30 +mat 1 +refs 3 +250 0.384307 0.313345 +247 0.423841 0.307298 +249 0.4271 0.314518 +SURF 0x30 +mat 1 +refs 3 +245 0.38075 0.28376 +228 0.325927 0.308237 +224 0.325927 0.283324 +SURF 0x30 +mat 1 +refs 3 +228 0.325927 0.308237 +245 0.38075 0.28376 +248 0.38422 0.308652 +SURF 0x30 +mat 1 +refs 3 +246 0.412924 0.284159 +248 0.38422 0.308652 +245 0.38075 0.28376 +SURF 0x30 +mat 1 +refs 3 +248 0.38422 0.308652 +246 0.412924 0.284159 +247 0.423841 0.307298 +SURF 0x30 +mat 1 +refs 3 +113 0.38422 0.308652 +87 0.325927 0.283324 +89 0.325927 0.308237 +SURF 0x30 +mat 1 +refs 3 +87 0.325927 0.283324 +113 0.38422 0.308652 +116 0.38075 0.28376 +SURF 0x30 +mat 1 +refs 3 +117 0.384307 0.313345 +114 0.423841 0.307298 +113 0.38422 0.308652 +SURF 0x30 +mat 1 +refs 3 +114 0.423841 0.307298 +117 0.384307 0.313345 +118 0.4271 0.314518 +SURF 0x30 +mat 1 +refs 3 +89 0.325927 0.308237 +117 0.384307 0.313345 +113 0.38422 0.308652 +SURF 0x30 +mat 1 +refs 3 +117 0.384307 0.313345 +89 0.325927 0.308237 +91 0.325927 0.314131 +SURF 0x30 +mat 1 +refs 3 +119 0.384339 0.316014 +118 0.4271 0.314518 +117 0.384307 0.313345 +SURF 0x30 +mat 1 +refs 3 +118 0.4271 0.314518 +119 0.384339 0.316014 +120 0.42937 0.320898 +SURF 0x30 +mat 1 +refs 3 +121 0.384393 0.320516 +123 0.432861 0.329422 +124 0.431407 0.326579 +SURF 0x30 +mat 1 +refs 3 +123 0.432861 0.329422 +121 0.384393 0.320516 +122 0.384415 0.321908 +SURF 0x30 +mat 1 +refs 3 +243 0.369158 0.204988 +223 0.325927 0.184845 +241 0.368952 0.186204 +SURF 0x30 +mat 1 +refs 3 +223 0.325927 0.184845 +243 0.369158 0.204988 +244 0.325927 0.203329 +SURF 0x30 +mat 1 +refs 3 +240 0.401974 0.187296 +243 0.369158 0.204988 +241 0.368952 0.186204 +SURF 0x30 +mat 1 +refs 3 +243 0.369158 0.204988 +240 0.401974 0.187296 +242 0.401974 0.206309 +SURF 0x30 +mat 1 +refs 3 +110 0.368871 0.179328 +223 0.325927 0.184845 +81 0.325927 0.178078 +SURF 0x30 +mat 1 +refs 3 +223 0.325927 0.184845 +110 0.368871 0.179328 +241 0.368952 0.186204 +SURF 0x30 +mat 1 +refs 3 +109 0.401974 0.180332 +241 0.368952 0.186204 +110 0.368871 0.179328 +SURF 0x30 +mat 1 +refs 3 +241 0.368952 0.186204 +109 0.401974 0.180332 +240 0.401974 0.187296 +SURF 0x30 +mat 1 +refs 3 +99 0.529657 0.30953 +239 0.520437 0.315834 +45 0.520767 0.299674 +SURF 0x30 +mat 1 +refs 3 +239 0.520437 0.315834 +99 0.529657 0.30953 +234 0.528798 0.314993 +SURF 0x30 +mat 1 +refs 3 +234 0.528798 0.314993 +237 0.520437 0.329051 +239 0.520437 0.315834 +SURF 0x30 +mat 1 +refs 3 +237 0.520437 0.329051 +234 0.528798 0.314993 +233 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +237 0.520437 0.329051 +236 0.488307 0.341249 +238 0.484513 0.329051 +SURF 0x30 +mat 1 +refs 3 +236 0.488307 0.341249 +237 0.520437 0.329051 +235 0.520437 0.342264 +SURF 0x30 +mat 1 +refs 3 +233 0.526733 0.328173 +235 0.520437 0.342264 +237 0.520437 0.329051 +SURF 0x30 +mat 1 +refs 3 +235 0.520437 0.342264 +233 0.526733 0.328173 +232 0.524663 0.341352 +SURF 0x30 +mat 1 +refs 3 +103 0.490955 0.346777 +235 0.520437 0.342264 +100 0.520437 0.348109 +SURF 0x30 +mat 1 +refs 3 +235 0.520437 0.342264 +103 0.490955 0.346777 +236 0.488307 0.341249 +SURF 0x30 +mat 1 +refs 3 +100 0.520437 0.348109 +232 0.524663 0.341352 +96 0.523809 0.347192 +SURF 0x30 +mat 1 +refs 3 +232 0.524663 0.341352 +100 0.520437 0.348109 +235 0.520437 0.342264 +SURF 0x30 +mat 1 +refs 3 +91 0.325927 0.314131 +121 0.384393 0.320516 +119 0.384339 0.316014 +SURF 0x30 +mat 1 +refs 3 +121 0.384393 0.320516 +91 0.325927 0.314131 +90 0.325927 0.317869 +SURF 0x30 +mat 1 +refs 3 +119 0.384339 0.316014 +124 0.431407 0.326579 +120 0.42937 0.320898 +SURF 0x30 +mat 1 +refs 3 +124 0.431407 0.326579 +119 0.384339 0.316014 +121 0.384393 0.320516 +SURF 0x30 +mat 1 +refs 3 +105 0.484513 0.329051 +106 0.520437 0.315834 +23 0.478087 0.318529 +SURF 0x30 +mat 1 +refs 3 +106 0.520437 0.315834 +105 0.484513 0.329051 +104 0.520437 0.329051 +SURF 0x30 +mat 1 +refs 3 +230 0.271346 0.313705 +228 0.325927 0.308237 +231 0.325927 0.314131 +SURF 0x30 +mat 1 +refs 3 +228 0.325927 0.308237 +230 0.271346 0.313705 +229 0.271346 0.308095 +SURF 0x30 +mat 1 +refs 3 +93 0.271346 0.31746 +231 0.325927 0.314131 +90 0.325927 0.317869 +SURF 0x30 +mat 1 +refs 3 +231 0.325927 0.314131 +93 0.271346 0.31746 +230 0.271346 0.313705 +SURF 0x30 +mat 1 +refs 3 +224 0.325927 0.283324 +229 0.271346 0.308095 +225 0.271346 0.282505 +SURF 0x30 +mat 1 +refs 3 +229 0.271346 0.308095 +224 0.325927 0.283324 +228 0.325927 0.308237 +SURF 0x30 +mat 1 +refs 3 +227 0.325927 0.238535 +225 0.271346 0.282505 +226 0.271346 0.24229 +SURF 0x30 +mat 1 +refs 3 +225 0.271346 0.282505 +227 0.325927 0.238535 +224 0.325927 0.283324 +SURF 0x30 +mat 1 +refs 3 +13 0.441611 0.189206 +126 0.421604 0.181112 +125 0.421879 0.188114 +SURF 0x30 +mat 1 +refs 3 +126 0.421604 0.181112 +13 0.441611 0.189206 +12 0.441611 0.182187 +SURF 0x30 +mat 1 +refs 3 +81 0.325927 0.178078 +222 0.271346 0.185358 +78 0.271346 0.178809 +SURF 0x30 +mat 1 +refs 3 +222 0.271346 0.185358 +81 0.325927 0.178078 +223 0.325927 0.184845 +SURF 0x30 +mat 1 +refs 3 +125 0.421879 0.188114 +109 0.401974 0.180332 +108 0.401974 0.187296 +SURF 0x30 +mat 1 +refs 3 +109 0.401974 0.180332 +125 0.421879 0.188114 +126 0.421604 0.181112 +SURF 0x30 +mat 1 +refs 3 +127 0.422841 0.206822 +13 0.441611 0.189206 +125 0.421879 0.188114 +SURF 0x30 +mat 1 +refs 3 +13 0.441611 0.189206 +127 0.422841 0.206822 +15 0.443346 0.207062 +SURF 0x30 +mat 1 +refs 3 +127 0.422841 0.206822 +108 0.401974 0.187296 +112 0.401974 0.206309 +SURF 0x30 +mat 1 +refs 3 +108 0.401974 0.187296 +127 0.422841 0.206822 +125 0.421879 0.188114 +SURF 0x30 +mat 1 +refs 3 +128 0.424927 0.22988 +15 0.443346 0.207062 +127 0.422841 0.206822 +SURF 0x30 +mat 1 +refs 3 +15 0.443346 0.207062 +128 0.424927 0.22988 +17 0.445751 0.227457 +SURF 0x30 +mat 1 +refs 3 +129 0.404579 0.233067 +127 0.422841 0.206822 +112 0.401974 0.206309 +SURF 0x30 +mat 1 +refs 3 +127 0.422841 0.206822 +129 0.404579 0.233067 +128 0.424927 0.22988 +SURF 0x30 +mat 1 +refs 3 +130 0.437617 0.2825 +17 0.445751 0.227457 +128 0.424927 0.22988 +SURF 0x30 +mat 1 +refs 3 +17 0.445751 0.227457 +130 0.437617 0.2825 +19 0.460035 0.275738 +SURF 0x30 +mat 1 +refs 3 +115 0.412924 0.284159 +128 0.424927 0.22988 +129 0.404579 0.233067 +SURF 0x30 +mat 1 +refs 3 +128 0.424927 0.22988 +115 0.412924 0.284159 +130 0.437617 0.2825 +SURF 0x30 +mat 1 +refs 3 +131 0.451258 0.307113 +19 0.460035 0.275738 +130 0.437617 0.2825 +SURF 0x30 +mat 1 +refs 3 +19 0.460035 0.275738 +131 0.451258 0.307113 +21 0.471763 0.305093 +SURF 0x30 +mat 1 +refs 3 +114 0.423841 0.307298 +130 0.437617 0.2825 +115 0.412924 0.284159 +SURF 0x30 +mat 1 +refs 3 +130 0.437617 0.2825 +114 0.423841 0.307298 +131 0.451258 0.307113 +SURF 0x30 +mat 1 +refs 3 +132 0.4639 0.318939 +21 0.471763 0.305093 +131 0.451258 0.307113 +SURF 0x30 +mat 1 +refs 3 +21 0.471763 0.305093 +132 0.4639 0.318939 +23 0.478087 0.318529 +SURF 0x30 +mat 1 +refs 3 +118 0.4271 0.314518 +131 0.451258 0.307113 +114 0.423841 0.307298 +SURF 0x30 +mat 1 +refs 3 +131 0.451258 0.307113 +118 0.4271 0.314518 +132 0.4639 0.318939 +SURF 0x30 +mat 1 +refs 3 +124 0.431407 0.326579 +134 0.475963 0.341374 +133 0.473487 0.33685 +SURF 0x30 +mat 1 +refs 3 +134 0.475963 0.341374 +124 0.431407 0.326579 +123 0.432861 0.329422 +SURF 0x30 +mat 1 +refs 3 +133 0.473487 0.33685 +103 0.490955 0.346777 +102 0.488307 0.341249 +SURF 0x30 +mat 1 +refs 3 +103 0.490955 0.346777 +133 0.473487 0.33685 +134 0.475963 0.341374 +SURF 0x30 +mat 1 +refs 3 +124 0.431407 0.326579 +135 0.468688 0.325515 +120 0.42937 0.320898 +SURF 0x30 +mat 1 +refs 3 +135 0.468688 0.325515 +124 0.431407 0.326579 +133 0.473487 0.33685 +SURF 0x30 +mat 1 +refs 3 +133 0.473487 0.33685 +105 0.484513 0.329051 +135 0.468688 0.325515 +SURF 0x30 +mat 1 +refs 3 +105 0.484513 0.329051 +133 0.473487 0.33685 +102 0.488307 0.341249 +SURF 0x30 +mat 1 +refs 3 +222 0.271346 0.185358 +75 0.238027 0.178187 +78 0.271346 0.178809 +SURF 0x30 +mat 1 +refs 3 +75 0.238027 0.178187 +222 0.271346 0.185358 +221 0.238027 0.184796 +SURF 0x30 +mat 1 +refs 3 +221 0.238027 0.184796 +64 0.204832 0.179082 +75 0.238027 0.178187 +SURF 0x30 +mat 1 +refs 3 +64 0.204832 0.179082 +221 0.238027 0.184796 +215 0.204832 0.185691 +SURF 0x30 +mat 1 +refs 3 +220 0.0213628 0.2334 +59 0.0359876 0.242961 +74 0.0213628 0.235031 +SURF 0x30 +mat 1 +refs 3 +59 0.0359876 0.242961 +220 0.0213628 0.2334 +212 0.0359876 0.240461 +SURF 0x30 +mat 1 +refs 3 +219 0.0213628 0.22893 +212 0.0359876 0.240461 +220 0.0213628 0.2334 +SURF 0x30 +mat 1 +refs 3 +212 0.0359876 0.240461 +219 0.0213628 0.22893 +210 0.0359876 0.233629 +SURF 0x30 +mat 1 +refs 3 +208 0.0359876 0.224302 +219 0.0213628 0.22893 +218 0.0213628 0.222834 +SURF 0x30 +mat 1 +refs 3 +219 0.0213628 0.22893 +208 0.0359876 0.224302 +210 0.0359876 0.233629 +SURF 0x30 +mat 1 +refs 3 +120 0.42937 0.320898 +132 0.4639 0.318939 +118 0.4271 0.314518 +SURF 0x30 +mat 1 +refs 3 +132 0.4639 0.318939 +120 0.42937 0.320898 +135 0.468688 0.325515 +SURF 0x30 +mat 1 +refs 3 +135 0.468688 0.325515 +23 0.478087 0.318529 +132 0.4639 0.318939 +SURF 0x30 +mat 1 +refs 3 +23 0.478087 0.318529 +135 0.468688 0.325515 +105 0.484513 0.329051 +SURF 0x30 +mat 1 +refs 3 +206 0.0359876 0.21497 +218 0.0213628 0.222834 +217 0.0213628 0.216733 +SURF 0x30 +mat 1 +refs 3 +218 0.0213628 0.222834 +206 0.0359876 0.21497 +208 0.0359876 0.224302 +SURF 0x30 +mat 1 +refs 3 +204 0.0359876 0.208143 +217 0.0213628 0.216733 +216 0.0213628 0.212269 +SURF 0x30 +mat 1 +refs 3 +217 0.0213628 0.216733 +204 0.0359876 0.208143 +206 0.0359876 0.21497 +SURF 0x30 +mat 1 +refs 3 +47 0.0359876 0.205643 +216 0.0213628 0.212269 +68 0.0213628 0.210637 +SURF 0x30 +mat 1 +refs 3 +216 0.0213628 0.212269 +47 0.0359876 0.205643 +204 0.0359876 0.208143 +SURF 0x30 +mat 1 +refs 3 +68 0.0213628 0.210637 +138 0.0119264 0.2173 +69 0.0213628 0.212269 +SURF 0x30 +mat 1 +refs 3 +138 0.0119264 0.2173 +68 0.0213628 0.210637 +136 0.0119264 0.216444 +SURF 0x30 +mat 1 +refs 3 +69 0.0213628 0.212269 +139 0.0119264 0.219636 +70 0.0213628 0.216733 +SURF 0x30 +mat 1 +refs 3 +139 0.0119264 0.219636 +69 0.0213628 0.212269 +138 0.0119264 0.2173 +SURF 0x30 +mat 1 +refs 3 +71 0.0213628 0.222834 +139 0.0119264 0.219636 +140 0.0119264 0.222834 +SURF 0x30 +mat 1 +refs 3 +139 0.0119264 0.219636 +71 0.0213628 0.222834 +70 0.0213628 0.216733 +SURF 0x30 +mat 1 +refs 3 +72 0.0213628 0.22893 +140 0.0119264 0.222834 +141 0.0119264 0.226027 +SURF 0x30 +mat 1 +refs 3 +140 0.0119264 0.222834 +72 0.0213628 0.22893 +71 0.0213628 0.222834 +SURF 0x30 +mat 1 +refs 3 +141 0.0119264 0.226027 +73 0.0213628 0.2334 +72 0.0213628 0.22893 +SURF 0x30 +mat 1 +refs 3 +73 0.0213628 0.2334 +141 0.0119264 0.226027 +142 0.0119264 0.228368 +SURF 0x30 +mat 1 +refs 3 +142 0.0119264 0.228368 +74 0.0213628 0.235031 +73 0.0213628 0.2334 +SURF 0x30 +mat 1 +refs 3 +74 0.0213628 0.235031 +142 0.0119264 0.228368 +143 0.0119264 0.229225 +SURF 0x30 +mat 1 +refs 3 +145 0.881727 0.205938 +32 0.518356 0.186095 +31 0.518281 0.190466 +SURF 0x30 +mat 1 +refs 3 +32 0.518356 0.186095 +145 0.881727 0.205938 +144 0.881759 0.203013 +SURF 0x30 +mat 1 +refs 3 +215 0.204832 0.185691 +61 0.17235 0.181342 +64 0.204832 0.179082 +SURF 0x30 +mat 1 +refs 3 +61 0.17235 0.181342 +215 0.204832 0.185691 +214 0.17235 0.187798 +SURF 0x30 +mat 1 +refs 3 +61 0.17235 0.181342 +176 0.143009 0.190166 +8 0.143009 0.183846 +SURF 0x30 +mat 1 +refs 3 +176 0.143009 0.190166 +61 0.17235 0.181342 +214 0.17235 0.187798 +SURF 0x30 +mat 1 +refs 3 +211 0.0709605 0.252642 +28 0.106539 0.267563 +60 0.0709605 0.256757 +SURF 0x30 +mat 1 +refs 3 +28 0.106539 0.267563 +211 0.0709605 0.252642 +189 0.106539 0.262122 +SURF 0x30 +mat 1 +refs 3 +59 0.0359876 0.242961 +211 0.0709605 0.252642 +60 0.0709605 0.256757 +SURF 0x30 +mat 1 +refs 3 +211 0.0709605 0.252642 +59 0.0359876 0.242961 +212 0.0359876 0.240461 +SURF 0x30 +mat 1 +refs 3 +209 0.0709605 0.241411 +189 0.106539 0.262122 +211 0.0709605 0.252642 +SURF 0x30 +mat 1 +refs 3 +189 0.106539 0.262122 +209 0.0709605 0.241411 +213 0.106539 0.247256 +SURF 0x30 +mat 1 +refs 3 +210 0.0359876 0.233629 +211 0.0709605 0.252642 +212 0.0359876 0.240461 +SURF 0x30 +mat 1 +refs 3 +211 0.0709605 0.252642 +210 0.0359876 0.233629 +209 0.0709605 0.241411 +SURF 0x30 +mat 1 +refs 3 +146 0.881641 0.214621 +31 0.518281 0.190466 +35 0.518281 0.206205 +SURF 0x30 +mat 1 +refs 3 +31 0.518281 0.190466 +146 0.881641 0.214621 +145 0.881727 0.205938 +SURF 0x30 +mat 1 +refs 3 +207 0.0709605 0.226059 +210 0.0359876 0.233629 +208 0.0359876 0.224302 +SURF 0x30 +mat 1 +refs 3 +210 0.0359876 0.233629 +207 0.0709605 0.226059 +209 0.0709605 0.241411 +SURF 0x30 +mat 1 +refs 3 +147 0.892985 0.214757 +145 0.881727 0.205938 +146 0.881641 0.214621 +SURF 0x30 +mat 1 +refs 3 +145 0.881727 0.205938 +147 0.892985 0.214757 +148 0.892985 0.206336 +SURF 0x30 +mat 1 +refs 3 +205 0.0709605 0.210151 +208 0.0359876 0.224302 +206 0.0359876 0.21497 +SURF 0x30 +mat 1 +refs 3 +208 0.0359876 0.224302 +205 0.0709605 0.210151 +207 0.0709605 0.226059 +SURF 0x30 +mat 1 +refs 3 +37 0.519734 0.222414 +146 0.881641 0.214621 +35 0.518281 0.206205 +SURF 0x30 +mat 1 +refs 3 +146 0.881641 0.214621 +37 0.519734 0.222414 +149 0.881527 0.221721 +SURF 0x30 +mat 1 +refs 3 +203 0.0709605 0.19827 +206 0.0359876 0.21497 +204 0.0359876 0.208143 +SURF 0x30 +mat 1 +refs 3 +206 0.0359876 0.21497 +203 0.0709605 0.19827 +205 0.0709605 0.210151 +SURF 0x30 +mat 1 +refs 3 +9 0.106539 0.186941 +203 0.0709605 0.19827 +46 0.0709605 0.194161 +SURF 0x30 +mat 1 +refs 3 +203 0.0709605 0.19827 +9 0.106539 0.186941 +175 0.106539 0.192382 +SURF 0x30 +mat 1 +refs 3 +203 0.0709605 0.19827 +47 0.0359876 0.205643 +46 0.0709605 0.194161 +SURF 0x30 +mat 1 +refs 3 +47 0.0359876 0.205643 +203 0.0709605 0.19827 +204 0.0359876 0.208143 +SURF 0x30 +mat 1 +refs 3 +202 0.516167 0.272556 +200 0.532235 0.242732 +43 0.542666 0.246918 +SURF 0x30 +mat 1 +refs 3 +200 0.532235 0.242732 +202 0.516167 0.272556 +201 0.507736 0.265205 +SURF 0x30 +mat 1 +refs 3 +201 0.507736 0.265205 +187 0.511363 0.307915 +185 0.496976 0.293737 +SURF 0x30 +mat 1 +refs 3 +187 0.511363 0.307915 +201 0.507736 0.265205 +202 0.516167 0.272556 +SURF 0x30 +mat 1 +refs 3 +42 0.521707 0.273419 +187 0.511363 0.307915 +202 0.516167 0.272556 +SURF 0x30 +mat 1 +refs 3 +187 0.511363 0.307915 +42 0.521707 0.273419 +45 0.520767 0.299674 +SURF 0x30 +mat 1 +refs 3 +199 0.501499 0.243332 +185 0.496976 0.293737 +183 0.483205 0.262264 +SURF 0x30 +mat 1 +refs 3 +185 0.496976 0.293737 +199 0.501499 0.243332 +201 0.507736 0.265205 +SURF 0x30 +mat 1 +refs 3 +198 0.525323 0.235926 +201 0.507736 0.265205 +199 0.501499 0.243332 +SURF 0x30 +mat 1 +refs 3 +201 0.507736 0.265205 +198 0.525323 0.235926 +200 0.532235 0.242732 +SURF 0x30 +mat 1 +refs 3 +197 0.498775 0.222932 +183 0.483205 0.262264 +181 0.474579 0.223876 +SURF 0x30 +mat 1 +refs 3 +183 0.483205 0.262264 +197 0.498775 0.222932 +199 0.501499 0.243332 +SURF 0x30 +mat 1 +refs 3 +196 0.519734 0.222414 +199 0.501499 0.243332 +197 0.498775 0.222932 +SURF 0x30 +mat 1 +refs 3 +199 0.501499 0.243332 +196 0.519734 0.222414 +198 0.525323 0.235926 +SURF 0x30 +mat 1 +refs 3 +195 0.49743 0.206708 +181 0.474579 0.223876 +179 0.473228 0.20733 +SURF 0x30 +mat 1 +refs 3 +181 0.474579 0.223876 +195 0.49743 0.206708 +197 0.498775 0.222932 +SURF 0x30 +mat 1 +refs 3 +194 0.518281 0.206205 +197 0.498775 0.222932 +195 0.49743 0.206708 +SURF 0x30 +mat 1 +refs 3 +197 0.498775 0.222932 +194 0.518281 0.206205 +196 0.519734 0.222414 +SURF 0x30 +mat 1 +refs 3 +193 0.495679 0.189844 +179 0.473228 0.20733 +177 0.472201 0.189489 +SURF 0x30 +mat 1 +refs 3 +179 0.473228 0.20733 +193 0.495679 0.189844 +195 0.49743 0.206708 +SURF 0x30 +mat 1 +refs 3 +192 0.518281 0.190466 +195 0.49743 0.206708 +193 0.495679 0.189844 +SURF 0x30 +mat 1 +refs 3 +195 0.49743 0.206708 +192 0.518281 0.190466 +194 0.518281 0.206205 +SURF 0x30 +mat 1 +refs 3 +33 0.495279 0.184796 +177 0.472201 0.189489 +11 0.472147 0.183879 +SURF 0x30 +mat 1 +refs 3 +177 0.472201 0.189489 +33 0.495279 0.184796 +193 0.495679 0.189844 +SURF 0x30 +mat 1 +refs 3 +192 0.518281 0.190466 +33 0.495279 0.184796 +32 0.518356 0.186095 +SURF 0x30 +mat 1 +refs 3 +33 0.495279 0.184796 +192 0.518281 0.190466 +193 0.495679 0.189844 +SURF 0x30 +mat 1 +refs 3 +185 0.496976 0.293737 +188 0.478087 0.318529 +186 0.471763 0.305093 +SURF 0x30 +mat 1 +refs 3 +188 0.478087 0.318529 +185 0.496976 0.293737 +187 0.511363 0.307915 +SURF 0x30 +mat 1 +refs 3 +183 0.483205 0.262264 +186 0.471763 0.305093 +184 0.460035 0.275738 +SURF 0x30 +mat 1 +refs 3 +186 0.471763 0.305093 +183 0.483205 0.262264 +185 0.496976 0.293737 +SURF 0x30 +mat 1 +refs 3 +181 0.474579 0.223876 +184 0.460035 0.275738 +182 0.445751 0.227457 +SURF 0x30 +mat 1 +refs 3 +184 0.460035 0.275738 +181 0.474579 0.223876 +183 0.483205 0.262264 +SURF 0x30 +mat 1 +refs 3 +179 0.473228 0.20733 +182 0.445751 0.227457 +180 0.443346 0.207062 +SURF 0x30 +mat 1 +refs 3 +182 0.445751 0.227457 +179 0.473228 0.20733 +181 0.474579 0.223876 +SURF 0x30 +mat 1 +refs 3 +177 0.472201 0.189489 +180 0.443346 0.207062 +178 0.441611 0.189206 +SURF 0x30 +mat 1 +refs 3 +180 0.443346 0.207062 +177 0.472201 0.189489 +179 0.473228 0.20733 +SURF 0x30 +mat 1 +refs 3 +177 0.472201 0.189489 +12 0.441611 0.182187 +11 0.472147 0.183879 +SURF 0x30 +mat 1 +refs 3 +12 0.441611 0.182187 +177 0.472201 0.189489 +178 0.441611 0.189206 +SURF 0x30 +mat 1 +refs 3 +150 0.892985 0.221699 +146 0.881641 0.214621 +149 0.881527 0.221721 +SURF 0x30 +mat 1 +refs 3 +146 0.881641 0.214621 +150 0.892985 0.221699 +147 0.892985 0.214757 +SURF 0x30 +mat 1 +refs 3 +39 0.525323 0.235926 +149 0.881527 0.221721 +37 0.519734 0.222414 +SURF 0x30 +mat 1 +refs 3 +149 0.881527 0.221721 +39 0.525323 0.235926 +151 0.881419 0.232079 +SURF 0x30 +mat 1 +refs 3 +152 0.892985 0.231959 +149 0.881527 0.221721 +151 0.881419 0.232079 +SURF 0x30 +mat 1 +refs 3 +149 0.881527 0.221721 +152 0.892985 0.231959 +150 0.892985 0.221699 +SURF 0x30 +mat 1 +refs 3 +41 0.532235 0.242732 +151 0.881419 0.232079 +39 0.525323 0.235926 +SURF 0x30 +mat 1 +refs 3 +151 0.881419 0.232079 +41 0.532235 0.242732 +153 0.881343 0.239474 +SURF 0x30 +mat 1 +refs 3 +8 0.143009 0.183846 +175 0.106539 0.192382 +9 0.106539 0.186941 +SURF 0x30 +mat 1 +refs 3 +175 0.106539 0.192382 +8 0.143009 0.183846 +176 0.143009 0.190166 +SURF 0x30 +mat 1 +refs 3 +148 0.892985 0.206336 +144 0.881759 0.203013 +145 0.881727 0.205938 +SURF 0x30 +mat 1 +refs 3 +144 0.881759 0.203013 +148 0.892985 0.206336 +169 0.892985 0.201059 +SURF 0x30 +mat 1 +refs 3 +158 0.909734 0.206926 +169 0.892985 0.201059 +148 0.892985 0.206336 +SURF 0x30 +mat 1 +refs 3 +169 0.892985 0.201059 +158 0.909734 0.206926 +167 0.909744 0.194619 +SURF 0x30 +mat 1 +refs 3 +166 0.909766 0.192797 +169 0.892985 0.201059 +167 0.909744 0.194619 +SURF 0x30 +mat 1 +refs 3 +169 0.892985 0.201059 +166 0.909766 0.192797 +168 0.892985 0.199913 +SURF 0x30 +mat 1 +refs 3 +1 0.929417 0.207619 +167 0.909744 0.194619 +158 0.909734 0.206926 +SURF 0x30 +mat 1 +refs 3 +167 0.909744 0.194619 +1 0.929417 0.207619 +165 0.922899 0.19481 +SURF 0x30 +mat 1 +refs 3 +164 0.922229 0.193522 +167 0.909744 0.194619 +165 0.922899 0.19481 +SURF 0x30 +mat 1 +refs 3 +167 0.909744 0.194619 +164 0.922229 0.193522 +166 0.909766 0.192797 +SURF 0x30 +mat 1 +refs 3 +1 0.929417 0.207619 +163 0.924828 0.198358 +165 0.922899 0.19481 +SURF 0x30 +mat 1 +refs 3 +163 0.924828 0.198358 +1 0.929417 0.207619 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +156 0.892985 0.242186 +161 0.909323 0.239108 +154 0.892985 0.239321 +SURF 0x30 +mat 1 +refs 3 +161 0.909323 0.239108 +156 0.892985 0.242186 +162 0.909296 0.241902 +SURF 0x30 +mat 1 +refs 3 +162 0.909296 0.241902 +5 0.946069 0.23865 +161 0.909323 0.239108 +SURF 0x30 +mat 1 +refs 3 +5 0.946069 0.23865 +162 0.909296 0.241902 +6 0.947187 0.241286 +SURF 0x30 +mat 1 +refs 3 +154 0.892985 0.239321 +160 0.909409 0.231784 +152 0.892985 0.231959 +SURF 0x30 +mat 1 +refs 3 +160 0.909409 0.231784 +154 0.892985 0.239321 +161 0.909323 0.239108 +SURF 0x30 +mat 1 +refs 3 +161 0.909323 0.239108 +4 0.941848 0.231446 +160 0.909409 0.231784 +SURF 0x30 +mat 1 +refs 3 +4 0.941848 0.231446 +161 0.909323 0.239108 +5 0.946069 0.23865 +SURF 0x30 +mat 1 +refs 3 +160 0.909409 0.231784 +150 0.892985 0.221699 +152 0.892985 0.231959 +SURF 0x30 +mat 1 +refs 3 +150 0.892985 0.221699 +160 0.909409 0.231784 +159 0.909523 0.221666 +SURF 0x30 +mat 1 +refs 3 +153 0.881343 0.239474 +152 0.892985 0.231959 +151 0.881419 0.232079 +SURF 0x30 +mat 1 +refs 3 +152 0.892985 0.231959 +153 0.881343 0.239474 +154 0.892985 0.239321 +SURF 0x30 +mat 1 +refs 3 +43 0.542666 0.246918 +153 0.881343 0.239474 +41 0.532235 0.242732 +SURF 0x30 +mat 1 +refs 3 +153 0.881343 0.239474 +43 0.542666 0.246918 +155 0.881316 0.242382 +SURF 0x30 +mat 1 +refs 3 +155 0.881316 0.242382 +154 0.892985 0.239321 +153 0.881343 0.239474 +SURF 0x30 +mat 1 +refs 3 +154 0.892985 0.239321 +155 0.881316 0.242382 +156 0.892985 0.242186 +SURF 0x30 +mat 1 +refs 3 +2 0.933805 0.215227 +158 0.909734 0.206926 +157 0.909641 0.214954 +SURF 0x30 +mat 1 +refs 3 +158 0.909734 0.206926 +2 0.933805 0.215227 +1 0.929417 0.207619 +SURF 0x30 +mat 1 +refs 3 +4 0.941848 0.231446 +159 0.909523 0.221666 +160 0.909409 0.231784 +SURF 0x30 +mat 1 +refs 3 +159 0.909523 0.221666 +4 0.941848 0.231446 +3 0.937097 0.221612 +SURF 0x30 +mat 1 +refs 3 +159 0.909523 0.221666 +147 0.892985 0.214757 +150 0.892985 0.221699 +SURF 0x30 +mat 1 +refs 3 +147 0.892985 0.214757 +159 0.909523 0.221666 +157 0.909641 0.214954 +SURF 0x30 +mat 1 +refs 3 +3 0.937097 0.221612 +157 0.909641 0.214954 +159 0.909523 0.221666 +SURF 0x30 +mat 1 +refs 3 +157 0.909641 0.214954 +3 0.937097 0.221612 +2 0.933805 0.215227 +SURF 0x30 +mat 1 +refs 3 +0 0.937178 0.221175 +1 0.929417 0.207619 +2 0.933805 0.215227 +SURF 0x30 +mat 1 +refs 3 +0 0.937178 0.221175 +2 0.933805 0.215227 +3 0.937097 0.221612 +SURF 0x30 +mat 1 +refs 3 +0 0.937178 0.221175 +3 0.937097 0.221612 +4 0.941848 0.231446 +SURF 0x30 +mat 1 +refs 3 +0 0.937178 0.221175 +4 0.941848 0.231446 +5 0.946069 0.23865 +SURF 0x30 +mat 1 +refs 3 +0 0.937178 0.221175 +5 0.946069 0.23865 +6 0.947187 0.241286 +SURF 0x30 +mat 1 +refs 3 +25 0.143009 0.273457 +26 0.143009 0.269669 +27 0.106539 0.262122 +SURF 0x30 +mat 1 +refs 3 +27 0.106539 0.262122 +28 0.106539 0.267563 +25 0.143009 0.273457 +SURF 0x30 +mat 1 +refs 3 +25 0.143009 0.273457 +28 0.106539 0.267563 +29 0.143009 0.275624 +SURF 0x30 +mat 1 +refs 3 +287 0.811338 0.23854 +297 0.811338 0.23854 +288 0.804685 0.23854 +SURF 0x30 +mat 1 +refs 3 +42 0.521707 0.273419 +43 0.542666 0.246918 +44 0.516167 0.272556 +SURF 0x30 +mat 1 +refs 3 +94 0.526733 0.328173 +95 0.524663 0.341352 +96 0.523809 0.347192 +SURF 0x30 +mat 1 +refs 3 +94 0.526733 0.328173 +97 0.526733 0.328173 +95 0.524663 0.341352 +SURF 0x30 +mat 1 +refs 3 +94 0.526733 0.328173 +98 0.528798 0.314993 +97 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +94 0.526733 0.328173 +99 0.529657 0.30953 +98 0.528798 0.314993 +SURF 0x30 +mat 1 +refs 3 +168 0.892985 0.199913 +286 0.892985 0.201059 +144 0.881759 0.203013 +SURF 0x30 +mat 1 +refs 3 +284 0.922899 0.19481 +164 0.922229 0.193522 +163 0.924828 0.198358 +SURF 0x30 +mat 1 +refs 3 +143 0.0119264 0.229225 +137 0.00568414 0.222834 +268 0.0119264 0.228368 +SURF 0x30 +mat 1 +refs 3 +268 0.0119264 0.228368 +137 0.00568414 0.222834 +267 0.0119264 0.226027 +SURF 0x30 +mat 1 +refs 3 +267 0.0119264 0.226027 +137 0.00568414 0.222834 +266 0.0119264 0.222834 +SURF 0x30 +mat 1 +refs 3 +266 0.0119264 0.222834 +137 0.00568414 0.222834 +265 0.0119264 0.219636 +SURF 0x30 +mat 1 +refs 3 +265 0.0119264 0.219636 +137 0.00568414 0.222834 +264 0.0119264 0.2173 +SURF 0x30 +mat 1 +refs 3 +264 0.0119264 0.2173 +137 0.00568414 0.222834 +136 0.0119264 0.216444 +SURF 0x30 +mat 1 +refs 3 +24 0.511363 0.307915 +106 0.520437 0.315834 +45 0.520767 0.299674 +SURF 0x30 +mat 1 +refs 3 +187 0.511363 0.307915 +239 0.520437 0.315834 +188 0.478087 0.318529 +SURF 0x30 +mat 1 +refs 3 +122 0.384415 0.321908 +90 0.325927 0.317869 +253 0.384393 0.320516 +SURF 0x30 +mat 1 +refs 3 +251 0.384339 0.316014 +231 0.325927 0.314131 +250 0.384307 0.313345 +SURF 0x30 +mat 1 +refs 3 +117 0.384307 0.313345 +91 0.325927 0.314131 +119 0.384339 0.316014 +SURF 0x30 +mat 1 +refs 3 +121 0.384393 0.320516 +90 0.325927 0.317869 +122 0.384415 0.321908 +SURF 0x30 +mat 1 +refs 3 +45 0.520767 0.299674 +239 0.520437 0.315834 +187 0.511363 0.307915 +SURF 0x30 +mat 1 +refs 3 +234 0.528798 0.314993 +99 0.529657 0.30953 +94 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +233 0.526733 0.328173 +234 0.528798 0.314993 +94 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +232 0.524663 0.341352 +233 0.526733 0.328173 +94 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +96 0.523809 0.347192 +232 0.524663 0.341352 +94 0.526733 0.328173 +SURF 0x30 +mat 1 +refs 3 +23 0.478087 0.318529 +106 0.520437 0.315834 +24 0.511363 0.307915 +SURF 0x30 +mat 1 +refs 3 +136 0.0119264 0.216444 +137 0.00568414 0.222834 +138 0.0119264 0.2173 +SURF 0x30 +mat 1 +refs 3 +138 0.0119264 0.2173 +137 0.00568414 0.222834 +139 0.0119264 0.219636 +SURF 0x30 +mat 1 +refs 3 +139 0.0119264 0.219636 +137 0.00568414 0.222834 +140 0.0119264 0.222834 +SURF 0x30 +mat 1 +refs 3 +140 0.0119264 0.222834 +137 0.00568414 0.222834 +141 0.0119264 0.226027 +SURF 0x30 +mat 1 +refs 3 +141 0.0119264 0.226027 +137 0.00568414 0.222834 +142 0.0119264 0.228368 +SURF 0x30 +mat 1 +refs 3 +142 0.0119264 0.228368 +137 0.00568414 0.222834 +143 0.0119264 0.229225 +SURF 0x30 +mat 1 +refs 3 +202 0.516167 0.272556 +43 0.542666 0.246918 +42 0.521707 0.273419 +SURF 0x30 +mat 1 +refs 3 +29 0.143009 0.275624 +28 0.106539 0.267563 +191 0.143009 0.273457 +SURF 0x30 +mat 1 +refs 3 +191 0.143009 0.273457 +28 0.106539 0.267563 +189 0.106539 0.262122 +SURF 0x30 +mat 1 +refs 3 +189 0.106539 0.262122 +190 0.143009 0.269669 +191 0.143009 0.273457 +SURF 0x30 +mat 1 +refs 3 +6 0.947187 0.241286 +174 0.946069 0.23865 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +174 0.946069 0.23865 +173 0.941848 0.231446 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +173 0.941848 0.231446 +172 0.937097 0.221612 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +172 0.937097 0.221612 +170 0.933805 0.215227 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +170 0.933805 0.215227 +171 0.929417 0.207619 +0 0.937178 0.221175 +SURF 0x30 +mat 1 +refs 3 +144 0.881759 0.203013 +169 0.892985 0.201059 +168 0.892985 0.199913 +SURF 0x30 +mat 1 +refs 3 +163 0.924828 0.198358 +164 0.922229 0.193522 +165 0.922899 0.19481 +kids 0 +OBJECT poly +name "RWing" +loc 0.10756 0.0411321 -0.346359 +texture "wing.jpg" +crease 45.000000 +numvert 243 +-0.0501585 -0.0257425 0.271843 +-0.0148816 -0.0245903 0.271843 +0.0503051 -0.0290277 0.271843 +0.0204006 -0.0257425 0.271843 +-0.0499968 -0.0259447 0.204731 +-0.0148816 -0.0248076 0.204731 +0.0500069 -0.0291844 0.204731 +0.0202387 -0.0259447 0.204731 +-0.0494863 -0.0253989 0.138922 +-0.0148816 -0.0242871 0.138922 +0.0490668 -0.0285576 0.138922 +0.0197283 -0.0253989 0.138922 +-0.0493044 -0.0237665 0.0750395 +-0.0148816 -0.0226951 0.0750395 +0.0487333 -0.0268192 0.0750395 +0.0195464 -0.0237665 0.0750395 +-0.0777584 -0.0246155 0.013709 +-0.0489101 -0.0217045 0.013709 +-0.0148816 -0.0206835 0.013709 +0.0480004 -0.0246155 0.013709 +0.0191523 -0.0217045 0.013709 +-0.075181 -0.0213455 -0.0444829 +-0.0722193 -0.0175601 -0.0989754 +-0.0471514 -0.0186013 -0.0444829 +-0.0140982 -0.0176411 -0.0444829 +0.0469897 -0.0213455 -0.0444829 +0.0189652 -0.0186013 -0.0444829 +-0.0448316 -0.0150079 -0.0989754 +-0.0417133 -0.0115155 -0.149247 +-0.0125263 -0.0141083 -0.0989754 +-0.0109597 -0.0106968 -0.149247 +0.0464185 -0.0175601 -0.0989754 +0.0190309 -0.0150079 -0.0989754 +0.019794 -0.0115155 -0.149247 +0.0458677 -0.0138506 -0.149247 +-0.100052 -0.0339453 0.271843 +-0.080068 -0.0290277 0.271843 +0.0702887 -0.0339453 0.271843 +0.0930422 -0.0397421 0.271843 +0.0702887 -0.0455443 0.271843 +0.0503051 -0.0504618 0.271843 +0.0204006 -0.0537469 0.271843 +-0.0148816 -0.0548992 0.271843 +-0.0501585 -0.0537469 0.271843 +-0.080068 -0.0504618 0.271843 +-0.107067 -0.0397421 0.271843 +-0.100052 -0.0455443 0.271843 +-0.0996577 -0.0340312 0.204731 +-0.0797647 -0.0291844 0.204731 +0.0698996 -0.0340312 0.204731 +0.092622 -0.0397421 0.204731 +0.0698996 -0.0454584 0.204731 +0.0500069 -0.0503051 0.204731 +0.0202387 -0.0535447 0.204731 +-0.0148816 -0.0546818 0.204731 +-0.0499968 -0.0535447 0.204731 +-0.0797647 -0.0503051 0.204731 +-0.106642 -0.0397421 0.204731 +-0.0996577 -0.0454584 0.204731 +-0.0984246 -0.0332832 0.138922 +-0.0494864 -0.0253989 0.138922 +-0.0788249 -0.0285576 0.138922 +0.0686663 -0.0332832 0.138922 +0.0912881 -0.0388628 0.138922 +0.0686663 -0.0444374 0.138922 +0.0490668 -0.0491629 0.138922 +0.0197283 -0.0523267 0.138922 +-0.0148816 -0.0534336 0.138922 +-0.0494864 -0.0523267 0.138922 +-0.0788249 -0.0491629 0.138922 +-0.105313 -0.0388628 0.138922 +-0.0984246 -0.0444374 0.138922 +-0.0979899 -0.0313828 0.0750395 +-0.0784911 -0.0268192 0.0750395 +0.0487333 -0.0268192 0.0750395 +0.0682317 -0.0313828 0.0750395 +0.0908128 -0.0367654 0.0750395 +0.0682317 -0.0421479 0.0750395 +0.0487333 -0.0467116 0.0750395 +0.0195464 -0.0497644 0.0750395 +-0.0148816 -0.0508357 0.0750395 +-0.0493044 -0.0497644 0.0750395 +-0.0784911 -0.0467116 0.0750395 +-0.104838 -0.0367654 0.0750395 +-0.0979899 -0.0421479 0.0750395 +-0.0970349 -0.0289771 0.013709 +0.0672765 -0.0289771 0.013709 +0.0897823 -0.034112 0.013709 +0.0672765 -0.0392519 0.013709 +0.0480004 -0.0436085 0.013709 +0.0191523 -0.0465247 0.013709 +-0.0148816 -0.0475456 0.013709 +-0.0489101 -0.0465247 0.013709 +-0.0777584 -0.0436085 0.013709 +-0.103802 -0.034112 0.013709 +-0.0970349 -0.0392519 0.013709 +-0.0939063 -0.0254545 -0.0444829 +0.0657148 -0.0254545 -0.0444829 +0.0880235 -0.0303012 -0.0444829 +0.0657148 -0.0351481 -0.0444829 +0.0469897 -0.0392571 -0.0444829 +0.0189652 -0.0420014 -0.0444829 +-0.0140982 -0.0429616 -0.0444829 +-0.0471514 -0.0420014 -0.0444829 +-0.075181 -0.0392571 -0.0444829 +-0.100481 -0.0303012 -0.0444829 +-0.0939063 -0.0351481 -0.0444829 +-0.0905202 -0.021376 -0.0989754 +0.0647141 -0.021376 -0.0989754 +0.086876 -0.0258842 -0.0989754 +0.0647141 -0.0303872 -0.0989754 +0.0464185 -0.034208 -0.0989754 +0.0190309 -0.0367603 -0.0989754 +-0.0125263 -0.037655 -0.0989754 +-0.0448316 -0.0367603 -0.0989754 +-0.0722193 -0.034208 -0.0989754 +-0.0969432 -0.0258842 -0.0989754 +-0.0905202 -0.0303872 -0.0989754 +-0.0852082 -0.0173429 -0.149247 +-0.067787 -0.0138506 -0.149247 +0.0632889 -0.0173429 -0.149247 +0.0851371 -0.0214619 -0.149247 +0.0632889 -0.025586 -0.149247 +0.0458677 -0.0290782 -0.149247 +0.019794 -0.0314132 -0.149247 +-0.0109597 -0.032232 -0.149247 +-0.0417133 -0.0314132 -0.149247 +-0.067787 -0.0290782 -0.149247 +-0.0913232 -0.0214619 -0.149247 +-0.0852082 -0.025586 -0.149247 +-0.0741095 -0.0113033 -0.192212 +-0.0580075 -0.00816976 -0.192212 +-0.0339048 -0.00607239 -0.192212 +-0.00547607 -0.0053395 -0.192212 +0.0229579 -0.00607239 -0.192212 +0.0470605 -0.00816976 -0.192212 +0.0631626 -0.0113033 -0.192212 +0.0845511 -0.0149978 -0.192212 +0.0631626 -0.0186974 -0.192212 +0.0470605 -0.0218308 -0.192212 +0.0229579 -0.0239232 -0.192212 +-0.00547607 -0.0246611 -0.192212 +-0.0339048 -0.0239232 -0.192212 +-0.0580075 -0.0218308 -0.192212 +-0.0797647 -0.0149978 -0.192212 +-0.0741095 -0.0186974 -0.192212 +-0.0618384 -0.00534971 -0.226559 +-0.0472323 -0.00260532 -0.226559 +-0.0253737 -0.000770777 -0.226559 +0.000406861 -0.000128865 -0.226559 +0.0261873 -0.000770777 -0.226559 +0.049542 -0.00260532 -0.226559 +0.0641481 -0.00534971 -0.226559 +0.0850111 -0.00858927 -0.226559 +0.0641481 -0.0118239 -0.226559 +0.049542 -0.0145681 -0.226559 +0.0261873 -0.0164028 -0.226559 +0.000406861 -0.0170497 -0.226559 +-0.0253737 -0.0164028 -0.226559 +-0.0472323 -0.0145681 -0.226559 +-0.0669632 -0.00858927 -0.226559 +-0.0618384 -0.0118239 -0.226559 +-0.0447609 0.00462702 -0.259996 +-0.0317366 0.00710848 -0.259996 +-0.0122434 0.00877126 -0.259996 +0.0107524 0.00935251 -0.259996 +0.0337482 0.00877126 -0.259996 +0.0532415 0.00710848 -0.259996 +0.0662657 0.00462702 -0.259996 +0.086578 0.00169565 -0.259996 +0.0662657 -0.00123563 -0.259996 +0.0532415 -0.00372227 -0.259996 +0.0337482 -0.00538504 -0.259996 +0.0107524 -0.00596629 -0.259996 +-0.0122434 -0.00538504 -0.259996 +-0.0317366 -0.00372227 -0.259996 +-0.0493348 0.00169565 -0.259996 +-0.0447609 -0.00123563 -0.259996 +-0.0235947 0.0167162 -0.289001 +-0.0126426 0.0188288 -0.289001 +0.00374246 0.0202388 -0.289001 +0.023074 0.020734 -0.289001 +0.0424057 0.0202388 -0.289001 +0.0587908 0.0188288 -0.289001 +0.0697429 0.0167162 -0.289001 +0.0893223 0.0142296 -0.289001 +0.0697429 0.0117431 -0.289001 +0.0587908 0.00963044 -0.289001 +0.0424057 0.0082204 -0.289001 +0.023074 0.00772504 -0.289001 +0.00374246 0.0082204 -0.289001 +-0.0126426 0.00963044 -0.289001 +-0.0274357 0.0142296 -0.289001 +-0.0235947 0.0117431 -0.289001 +-0.00131156 0.0304834 -0.31186 +0.00819512 0.0322371 -0.31186 +0.0224171 0.0334045 -0.31186 +0.0391914 0.0338139 -0.31186 +0.0559707 0.0334045 -0.31186 +0.0701926 0.0322371 -0.31186 +0.0796944 0.0304834 -0.31186 +0.0987684 0.0284213 -0.31186 +0.0796944 0.0263542 -0.31186 +0.0701926 0.0246055 -0.31186 +0.0559707 0.023433 -0.31186 +0.0391914 0.0230235 -0.31186 +0.0224171 0.023433 -0.31186 +0.00819512 0.0246055 -0.31186 +-0.00464714 0.0284213 -0.31186 +-0.00131156 0.0263542 -0.31186 +0.0266019 0.0436793 -0.328347 +0.0339453 0.044963 -0.328347 +0.0449327 0.0458172 -0.328347 +0.0579013 0.0461153 -0.328347 +0.0708648 0.0458172 -0.328347 +0.0818572 0.044963 -0.328347 +0.0892008 0.0436793 -0.328347 +0.107512 0.0421681 -0.328347 +0.0892008 0.0406569 -0.328347 +0.0818572 0.0393784 -0.328347 +0.0708648 0.0385242 -0.328347 +0.0579013 0.038221 -0.328347 +0.0449327 0.0385242 -0.328347 +0.0339453 0.0393784 -0.328347 +0.0240192 0.0421681 -0.328347 +0.0266019 0.0406569 -0.328347 +0.053191 0.0512048 -0.336276 +0.0572291 0.0519174 -0.336276 +0.0632687 0.0523975 -0.336276 +0.0703948 0.0525643 -0.336276 +0.0775208 0.0523975 -0.336276 +0.0835602 0.0519174 -0.336276 +0.0875934 0.0512048 -0.336276 +0.103509 0.0503608 -0.336276 +0.0875934 0.0495168 -0.336276 +0.0835602 0.0488041 -0.336276 +0.0775208 0.048324 -0.336276 +0.0703948 0.0481572 -0.336276 +0.0632687 0.048324 -0.336276 +0.0572291 0.0488041 -0.336276 +0.0517708 0.0503608 -0.336276 +0.053191 0.0495168 -0.336276 +0.0830346 0.0549751 -0.339607 +numsurf 464 +SURF 0x30 +mat 1 +refs 3 +26 0.565707 0.47417 +18 0.4871 0.52664 +20 0.4871 0.47388 +SURF 0x30 +mat 1 +refs 3 +18 0.4871 0.52664 +26 0.565707 0.47417 +24 0.565707 0.525425 +SURF 0x30 +mat 1 +refs 3 +25 0.565707 0.430725 +20 0.4871 0.47388 +19 0.4871 0.429159 +SURF 0x30 +mat 1 +refs 3 +20 0.4871 0.47388 +25 0.565707 0.430725 +26 0.565707 0.47417 +SURF 0x30 +mat 1 +refs 3 +27 0.639317 0.573069 +21 0.565707 0.620117 +23 0.565707 0.576665 +SURF 0x30 +mat 1 +refs 3 +21 0.565707 0.620117 +27 0.639317 0.573069 +22 0.639317 0.615526 +SURF 0x30 +mat 1 +refs 3 +29 0.639317 0.522988 +23 0.565707 0.576665 +24 0.565707 0.525425 +SURF 0x30 +mat 1 +refs 3 +23 0.565707 0.576665 +29 0.639317 0.522988 +27 0.639317 0.573069 +SURF 0x30 +mat 1 +refs 3 +32 0.639317 0.474068 +24 0.565707 0.525425 +26 0.565707 0.47417 +SURF 0x30 +mat 1 +refs 3 +24 0.565707 0.525425 +32 0.639317 0.474068 +29 0.639317 0.522988 +SURF 0x30 +mat 1 +refs 3 +31 0.639317 0.431611 +26 0.565707 0.47417 +25 0.565707 0.430725 +SURF 0x30 +mat 1 +refs 3 +26 0.565707 0.47417 +31 0.639317 0.431611 +32 0.639317 0.474068 +SURF 0x30 +mat 1 +refs 3 +23 0.565707 0.576665 +16 0.4871 0.624113 +17 0.4871 0.579392 +SURF 0x30 +mat 1 +refs 3 +16 0.4871 0.624113 +23 0.565707 0.576665 +21 0.565707 0.620117 +SURF 0x30 +mat 1 +refs 3 +30 0.707226 0.52056 +27 0.639317 0.573069 +29 0.639317 0.522988 +SURF 0x30 +mat 1 +refs 3 +27 0.639317 0.573069 +30 0.707226 0.52056 +28 0.707226 0.568235 +SURF 0x30 +mat 1 +refs 3 +33 0.707226 0.472885 +29 0.639317 0.522988 +32 0.639317 0.474068 +SURF 0x30 +mat 1 +refs 3 +29 0.639317 0.522988 +33 0.707226 0.472885 +30 0.707226 0.52056 +SURF 0x30 +mat 1 +refs 3 +34 0.707226 0.432465 +32 0.639317 0.474068 +31 0.639317 0.431611 +SURF 0x30 +mat 1 +refs 3 +32 0.639317 0.474068 +34 0.707226 0.432465 +33 0.707226 0.472885 +SURF 0x30 +mat 1 +refs 3 +19 0.4871 0.429159 +15 0.404253 0.473269 +14 0.404253 0.428023 +SURF 0x30 +mat 1 +refs 3 +15 0.404253 0.473269 +19 0.4871 0.429159 +20 0.4871 0.47388 +SURF 0x30 +mat 1 +refs 3 +20 0.4871 0.47388 +13 0.404253 0.52664 +15 0.404253 0.473269 +SURF 0x30 +mat 1 +refs 3 +13 0.404253 0.52664 +20 0.4871 0.47388 +18 0.4871 0.52664 +SURF 0x30 +mat 1 +refs 3 +18 0.4871 0.52664 +12 0.404253 0.580003 +13 0.404253 0.52664 +SURF 0x30 +mat 1 +refs 3 +12 0.404253 0.580003 +18 0.4871 0.52664 +17 0.4871 0.579392 +SURF 0x30 +mat 1 +refs 3 +14 0.404253 0.428023 +11 0.317959 0.472987 +10 0.317959 0.427505 +SURF 0x30 +mat 1 +refs 3 +11 0.317959 0.472987 +14 0.404253 0.428023 +15 0.404253 0.473269 +SURF 0x30 +mat 1 +refs 3 +15 0.404253 0.473269 +9 0.317959 0.52664 +11 0.317959 0.472987 +SURF 0x30 +mat 1 +refs 3 +9 0.317959 0.52664 +15 0.404253 0.473269 +13 0.404253 0.52664 +SURF 0x30 +mat 1 +refs 3 +13 0.404253 0.52664 +8 0.317959 0.580285 +9 0.317959 0.52664 +SURF 0x30 +mat 1 +refs 3 +8 0.317959 0.580285 +13 0.404253 0.52664 +12 0.404253 0.580003 +SURF 0x30 +mat 1 +refs 3 +10 0.317959 0.427505 +7 0.229063 0.472195 +6 0.229063 0.426048 +SURF 0x30 +mat 1 +refs 3 +7 0.229063 0.472195 +10 0.317959 0.427505 +11 0.317959 0.472987 +SURF 0x30 +mat 1 +refs 3 +11 0.317959 0.472987 +5 0.229063 0.52664 +7 0.229063 0.472195 +SURF 0x30 +mat 1 +refs 3 +5 0.229063 0.52664 +11 0.317959 0.472987 +9 0.317959 0.52664 +SURF 0x30 +mat 1 +refs 3 +9 0.317959 0.52664 +4 0.229063 0.581076 +5 0.229063 0.52664 +SURF 0x30 +mat 1 +refs 3 +4 0.229063 0.581076 +9 0.317959 0.52664 +8 0.317959 0.580285 +SURF 0x30 +mat 1 +refs 3 +6 0.229063 0.426048 +3 0.138406 0.471945 +2 0.138406 0.425586 +SURF 0x30 +mat 1 +refs 3 +3 0.138406 0.471945 +6 0.229063 0.426048 +7 0.229063 0.472195 +SURF 0x30 +mat 1 +refs 3 +7 0.229063 0.472195 +1 0.138406 0.52664 +3 0.138406 0.471945 +SURF 0x30 +mat 1 +refs 3 +1 0.138406 0.52664 +7 0.229063 0.472195 +5 0.229063 0.52664 +SURF 0x30 +mat 1 +refs 3 +5 0.229063 0.52664 +0 0.138406 0.581327 +1 0.138406 0.52664 +SURF 0x30 +mat 1 +refs 3 +0 0.138406 0.581327 +5 0.229063 0.52664 +4 0.229063 0.581076 +SURF 0x30 +mat 1 +refs 3 +24 0.565707 0.525425 +17 0.4871 0.579392 +18 0.4871 0.52664 +SURF 0x30 +mat 1 +refs 3 +17 0.4871 0.579392 +24 0.565707 0.525425 +23 0.565707 0.576665 +SURF 0x30 +mat 1 +refs 3 +240 0.959666 0.445493 +225 0.948963 0.480667 +224 0.948963 0.484276 +SURF 0x30 +mat 1 +refs 3 +225 0.948963 0.480667 +240 0.959666 0.445493 +241 0.959666 0.443508 +SURF 0x30 +mat 1 +refs 3 +241 0.959666 0.443508 +223 0.948963 0.470404 +225 0.948963 0.480667 +SURF 0x30 +mat 1 +refs 3 +223 0.948963 0.470404 +241 0.959666 0.443508 +239 0.959666 0.437865 +SURF 0x30 +mat 1 +refs 3 +239 0.959666 0.437865 +222 0.948963 0.455049 +223 0.948963 0.470404 +SURF 0x30 +mat 1 +refs 3 +222 0.948963 0.455049 +239 0.959666 0.437865 +238 0.959666 0.429425 +SURF 0x30 +mat 1 +refs 3 +238 0.959666 0.429425 +221 0.948963 0.436926 +222 0.948963 0.455049 +SURF 0x30 +mat 1 +refs 3 +221 0.948963 0.436926 +238 0.959666 0.429425 +237 0.959666 0.419466 +SURF 0x30 +mat 1 +refs 3 +237 0.959666 0.419466 +220 0.948963 0.418809 +221 0.948963 0.436926 +SURF 0x30 +mat 1 +refs 3 +220 0.948963 0.418809 +237 0.959666 0.419466 +236 0.959666 0.409507 +SURF 0x30 +mat 1 +refs 3 +236 0.959666 0.409507 +219 0.948963 0.403447 +220 0.948963 0.418809 +SURF 0x30 +mat 1 +refs 3 +219 0.948963 0.403447 +236 0.959666 0.409507 +235 0.959666 0.401067 +SURF 0x30 +mat 1 +refs 3 +235 0.959666 0.401067 +218 0.948963 0.393184 +219 0.948963 0.403447 +SURF 0x30 +mat 1 +refs 3 +218 0.948963 0.393184 +235 0.959666 0.401067 +234 0.959666 0.39543 +SURF 0x30 +mat 1 +refs 3 +233 0.959666 0.373189 +218 0.948963 0.393184 +234 0.959666 0.39543 +SURF 0x30 +mat 1 +refs 3 +218 0.948963 0.393184 +233 0.959666 0.373189 +217 0.948963 0.367595 +SURF 0x30 +mat 1 +refs 3 +216 0.948963 0.393184 +233 0.959666 0.373189 +232 0.959666 0.39543 +SURF 0x30 +mat 1 +refs 3 +233 0.959666 0.373189 +216 0.948963 0.393184 +217 0.948963 0.367595 +SURF 0x30 +mat 1 +refs 3 +215 0.948963 0.403447 +232 0.959666 0.39543 +231 0.959666 0.401067 +SURF 0x30 +mat 1 +refs 3 +232 0.959666 0.39543 +215 0.948963 0.403447 +216 0.948963 0.393184 +SURF 0x30 +mat 1 +refs 3 +214 0.948963 0.418809 +231 0.959666 0.401067 +230 0.959666 0.409507 +SURF 0x30 +mat 1 +refs 3 +231 0.959666 0.401067 +214 0.948963 0.418809 +215 0.948963 0.403447 +SURF 0x30 +mat 1 +refs 3 +213 0.948963 0.436926 +230 0.959666 0.409507 +229 0.959666 0.419466 +SURF 0x30 +mat 1 +refs 3 +230 0.959666 0.409507 +213 0.948963 0.436926 +214 0.948963 0.418809 +SURF 0x30 +mat 1 +refs 3 +212 0.948963 0.455049 +229 0.959666 0.419466 +228 0.959666 0.429425 +SURF 0x30 +mat 1 +refs 3 +229 0.959666 0.419466 +212 0.948963 0.455049 +213 0.948963 0.436926 +SURF 0x30 +mat 1 +refs 3 +211 0.948963 0.470404 +228 0.959666 0.429425 +227 0.959666 0.437865 +SURF 0x30 +mat 1 +refs 3 +228 0.959666 0.429425 +211 0.948963 0.470404 +212 0.948963 0.455049 +SURF 0x30 +mat 1 +refs 3 +210 0.948963 0.480667 +227 0.959666 0.437865 +226 0.959666 0.443508 +SURF 0x30 +mat 1 +refs 3 +227 0.959666 0.437865 +210 0.948963 0.480667 +211 0.948963 0.470404 +SURF 0x30 +mat 1 +refs 3 +210 0.948963 0.480667 +240 0.959666 0.445493 +224 0.948963 0.484276 +SURF 0x30 +mat 1 +refs 3 +240 0.959666 0.445493 +210 0.948963 0.480667 +226 0.959666 0.443508 +SURF 0x30 +mat 1 +refs 3 +224 0.948963 0.484276 +209 0.926711 0.519676 +208 0.926711 0.524337 +SURF 0x30 +mat 1 +refs 3 +209 0.926711 0.519676 +224 0.948963 0.484276 +225 0.948963 0.480667 +SURF 0x30 +mat 1 +refs 3 +225 0.948963 0.480667 +207 0.926711 0.50639 +209 0.926711 0.519676 +SURF 0x30 +mat 1 +refs 3 +207 0.926711 0.50639 +225 0.948963 0.480667 +223 0.948963 0.470404 +SURF 0x30 +mat 1 +refs 3 +223 0.948963 0.470404 +206 0.926711 0.486515 +207 0.926711 0.50639 +SURF 0x30 +mat 1 +refs 3 +206 0.926711 0.486515 +223 0.948963 0.470404 +222 0.948963 0.455049 +SURF 0x30 +mat 1 +refs 3 +205 0.926711 0.463073 +222 0.948963 0.455049 +221 0.948963 0.436926 +SURF 0x30 +mat 1 +refs 3 +222 0.948963 0.455049 +205 0.926711 0.463073 +206 0.926711 0.486515 +SURF 0x30 +mat 1 +refs 3 +204 0.926711 0.439624 +221 0.948963 0.436926 +220 0.948963 0.418809 +SURF 0x30 +mat 1 +refs 3 +221 0.948963 0.436926 +204 0.926711 0.439624 +205 0.926711 0.463073 +SURF 0x30 +mat 1 +refs 3 +203 0.926711 0.419748 +220 0.948963 0.418809 +219 0.948963 0.403447 +SURF 0x30 +mat 1 +refs 3 +220 0.948963 0.418809 +203 0.926711 0.419748 +204 0.926711 0.439624 +SURF 0x30 +mat 1 +refs 3 +202 0.926711 0.40647 +219 0.948963 0.403447 +218 0.948963 0.393184 +SURF 0x30 +mat 1 +refs 3 +219 0.948963 0.403447 +202 0.926711 0.40647 +203 0.926711 0.419748 +SURF 0x30 +mat 1 +refs 3 +201 0.926711 0.379814 +218 0.948963 0.393184 +217 0.948963 0.367595 +SURF 0x30 +mat 1 +refs 3 +218 0.948963 0.393184 +201 0.926711 0.379814 +202 0.926711 0.40647 +SURF 0x30 +mat 1 +refs 3 +200 0.926711 0.40647 +217 0.948963 0.367595 +216 0.948963 0.393184 +SURF 0x30 +mat 1 +refs 3 +217 0.948963 0.367595 +200 0.926711 0.40647 +201 0.926711 0.379814 +SURF 0x30 +mat 1 +refs 3 +199 0.926711 0.419748 +216 0.948963 0.393184 +215 0.948963 0.403447 +SURF 0x30 +mat 1 +refs 3 +216 0.948963 0.393184 +199 0.926711 0.419748 +200 0.926711 0.40647 +SURF 0x30 +mat 1 +refs 3 +198 0.926711 0.439624 +215 0.948963 0.403447 +214 0.948963 0.418809 +SURF 0x30 +mat 1 +refs 3 +215 0.948963 0.403447 +198 0.926711 0.439624 +199 0.926711 0.419748 +SURF 0x30 +mat 1 +refs 3 +197 0.926711 0.463073 +214 0.948963 0.418809 +213 0.948963 0.436926 +SURF 0x30 +mat 1 +refs 3 +214 0.948963 0.418809 +197 0.926711 0.463073 +198 0.926711 0.439624 +SURF 0x30 +mat 1 +refs 3 +196 0.926711 0.486515 +213 0.948963 0.436926 +212 0.948963 0.455049 +SURF 0x30 +mat 1 +refs 3 +213 0.948963 0.436926 +196 0.926711 0.486515 +197 0.926711 0.463073 +SURF 0x30 +mat 1 +refs 3 +195 0.926711 0.50639 +212 0.948963 0.455049 +211 0.948963 0.470404 +SURF 0x30 +mat 1 +refs 3 +212 0.948963 0.455049 +195 0.926711 0.50639 +196 0.926711 0.486515 +SURF 0x30 +mat 1 +refs 3 +194 0.926711 0.519676 +211 0.948963 0.470404 +210 0.948963 0.480667 +SURF 0x30 +mat 1 +refs 3 +211 0.948963 0.470404 +194 0.926711 0.519676 +195 0.926711 0.50639 +SURF 0x30 +mat 1 +refs 3 +208 0.926711 0.524337 +210 0.948963 0.480667 +224 0.948963 0.484276 +SURF 0x30 +mat 1 +refs 3 +210 0.948963 0.480667 +208 0.926711 0.524337 +194 0.926711 0.519676 +SURF 0x30 +mat 1 +refs 3 +208 0.926711 0.524337 +193 0.895857 0.550817 +192 0.895857 0.556184 +SURF 0x30 +mat 1 +refs 3 +193 0.895857 0.550817 +208 0.926711 0.524337 +209 0.926711 0.519676 +SURF 0x30 +mat 1 +refs 3 +191 0.895857 0.535511 +209 0.926711 0.519676 +207 0.926711 0.50639 +SURF 0x30 +mat 1 +refs 3 +209 0.926711 0.519676 +191 0.895857 0.535511 +193 0.895857 0.550817 +SURF 0x30 +mat 1 +refs 3 +190 0.895857 0.512613 +207 0.926711 0.50639 +206 0.926711 0.486515 +SURF 0x30 +mat 1 +refs 3 +207 0.926711 0.50639 +190 0.895857 0.512613 +191 0.895857 0.535511 +SURF 0x30 +mat 1 +refs 3 +189 0.895857 0.485597 +206 0.926711 0.486515 +205 0.926711 0.463073 +SURF 0x30 +mat 1 +refs 3 +206 0.926711 0.486515 +189 0.895857 0.485597 +190 0.895857 0.512613 +SURF 0x30 +mat 1 +refs 3 +188 0.895857 0.458581 +205 0.926711 0.463073 +204 0.926711 0.439624 +SURF 0x30 +mat 1 +refs 3 +205 0.926711 0.463073 +188 0.895857 0.458581 +189 0.895857 0.485597 +SURF 0x30 +mat 1 +refs 3 +187 0.895857 0.435683 +204 0.926711 0.439624 +203 0.926711 0.419748 +SURF 0x30 +mat 1 +refs 3 +204 0.926711 0.439624 +187 0.895857 0.435683 +188 0.895857 0.458581 +SURF 0x30 +mat 1 +refs 3 +186 0.895857 0.420377 +203 0.926711 0.419748 +202 0.926711 0.40647 +SURF 0x30 +mat 1 +refs 3 +203 0.926711 0.419748 +186 0.895857 0.420377 +187 0.895857 0.435683 +SURF 0x30 +mat 1 +refs 3 +185 0.895857 0.393015 +202 0.926711 0.40647 +201 0.926711 0.379814 +SURF 0x30 +mat 1 +refs 3 +202 0.926711 0.40647 +185 0.895857 0.393015 +186 0.895857 0.420377 +SURF 0x30 +mat 1 +refs 3 +184 0.895857 0.420377 +201 0.926711 0.379814 +200 0.926711 0.40647 +SURF 0x30 +mat 1 +refs 3 +201 0.926711 0.379814 +184 0.895857 0.420377 +185 0.895857 0.393015 +SURF 0x30 +mat 1 +refs 3 +183 0.895857 0.435683 +200 0.926711 0.40647 +199 0.926711 0.419748 +SURF 0x30 +mat 1 +refs 3 +200 0.926711 0.40647 +183 0.895857 0.435683 +184 0.895857 0.420377 +SURF 0x30 +mat 1 +refs 3 +182 0.895857 0.458581 +199 0.926711 0.419748 +198 0.926711 0.439624 +SURF 0x30 +mat 1 +refs 3 +199 0.926711 0.419748 +182 0.895857 0.458581 +183 0.895857 0.435683 +SURF 0x30 +mat 1 +refs 3 +181 0.895857 0.485597 +198 0.926711 0.439624 +197 0.926711 0.463073 +SURF 0x30 +mat 1 +refs 3 +198 0.926711 0.439624 +181 0.895857 0.485597 +182 0.895857 0.458581 +SURF 0x30 +mat 1 +refs 3 +180 0.895857 0.512613 +197 0.926711 0.463073 +196 0.926711 0.486515 +SURF 0x30 +mat 1 +refs 3 +197 0.926711 0.463073 +180 0.895857 0.512613 +181 0.895857 0.485597 +SURF 0x30 +mat 1 +refs 3 +179 0.895857 0.535511 +196 0.926711 0.486515 +195 0.926711 0.50639 +SURF 0x30 +mat 1 +refs 3 +196 0.926711 0.486515 +179 0.895857 0.535511 +180 0.895857 0.512613 +SURF 0x30 +mat 1 +refs 3 +178 0.895857 0.550817 +195 0.926711 0.50639 +194 0.926711 0.519676 +SURF 0x30 +mat 1 +refs 3 +195 0.926711 0.50639 +178 0.895857 0.550817 +179 0.895857 0.535511 +SURF 0x30 +mat 1 +refs 3 +192 0.895857 0.556184 +194 0.926711 0.519676 +208 0.926711 0.524337 +SURF 0x30 +mat 1 +refs 3 +194 0.926711 0.519676 +192 0.895857 0.556184 +178 0.895857 0.550817 +SURF 0x30 +mat 1 +refs 3 +177 0.856707 0.580396 +192 0.895857 0.556184 +193 0.895857 0.550817 +SURF 0x30 +mat 1 +refs 3 +192 0.895857 0.556184 +177 0.856707 0.580396 +176 0.856707 0.586788 +SURF 0x30 +mat 1 +refs 3 +175 0.856707 0.562195 +193 0.895857 0.550817 +191 0.895857 0.535511 +SURF 0x30 +mat 1 +refs 3 +193 0.895857 0.550817 +175 0.856707 0.562195 +177 0.856707 0.580396 +SURF 0x30 +mat 1 +refs 3 +174 0.856707 0.534953 +191 0.895857 0.535511 +190 0.895857 0.512613 +SURF 0x30 +mat 1 +refs 3 +191 0.895857 0.535511 +174 0.856707 0.534953 +175 0.856707 0.562195 +SURF 0x30 +mat 1 +refs 3 +173 0.856707 0.502816 +190 0.895857 0.512613 +189 0.895857 0.485597 +SURF 0x30 +mat 1 +refs 3 +190 0.895857 0.512613 +173 0.856707 0.502816 +174 0.856707 0.534953 +SURF 0x30 +mat 1 +refs 3 +172 0.856707 0.47068 +189 0.895857 0.485597 +188 0.895857 0.458581 +SURF 0x30 +mat 1 +refs 3 +189 0.895857 0.485597 +172 0.856707 0.47068 +173 0.856707 0.502816 +SURF 0x30 +mat 1 +refs 3 +171 0.856707 0.443438 +188 0.895857 0.458581 +187 0.895857 0.435683 +SURF 0x30 +mat 1 +refs 3 +188 0.895857 0.458581 +171 0.856707 0.443438 +172 0.856707 0.47068 +SURF 0x30 +mat 1 +refs 3 +170 0.856707 0.425236 +187 0.895857 0.435683 +186 0.895857 0.420377 +SURF 0x30 +mat 1 +refs 3 +187 0.895857 0.435683 +170 0.856707 0.425236 +171 0.856707 0.443438 +SURF 0x30 +mat 1 +refs 3 +169 0.856707 0.39685 +186 0.895857 0.420377 +185 0.895857 0.393015 +SURF 0x30 +mat 1 +refs 3 +186 0.895857 0.420377 +169 0.856707 0.39685 +170 0.856707 0.425236 +SURF 0x30 +mat 1 +refs 3 +168 0.856707 0.425236 +185 0.895857 0.393015 +184 0.895857 0.420377 +SURF 0x30 +mat 1 +refs 3 +185 0.895857 0.393015 +168 0.856707 0.425236 +169 0.856707 0.39685 +SURF 0x30 +mat 1 +refs 3 +167 0.856707 0.443438 +184 0.895857 0.420377 +183 0.895857 0.435683 +SURF 0x30 +mat 1 +refs 3 +184 0.895857 0.420377 +167 0.856707 0.443438 +168 0.856707 0.425236 +SURF 0x30 +mat 1 +refs 3 +166 0.856707 0.47068 +183 0.895857 0.435683 +182 0.895857 0.458581 +SURF 0x30 +mat 1 +refs 3 +183 0.895857 0.435683 +166 0.856707 0.47068 +167 0.856707 0.443438 +SURF 0x30 +mat 1 +refs 3 +165 0.856707 0.502816 +182 0.895857 0.458581 +181 0.895857 0.485597 +SURF 0x30 +mat 1 +refs 3 +182 0.895857 0.458581 +165 0.856707 0.502816 +166 0.856707 0.47068 +SURF 0x30 +mat 1 +refs 3 +164 0.856707 0.534953 +181 0.895857 0.485597 +180 0.895857 0.512613 +SURF 0x30 +mat 1 +refs 3 +181 0.895857 0.485597 +164 0.856707 0.534953 +165 0.856707 0.502816 +SURF 0x30 +mat 1 +refs 3 +163 0.856707 0.562195 +180 0.895857 0.512613 +179 0.895857 0.535511 +SURF 0x30 +mat 1 +refs 3 +180 0.895857 0.512613 +163 0.856707 0.562195 +164 0.856707 0.534953 +SURF 0x30 +mat 1 +refs 3 +162 0.856707 0.580396 +179 0.895857 0.535511 +178 0.895857 0.550817 +SURF 0x30 +mat 1 +refs 3 +179 0.895857 0.535511 +162 0.856707 0.580396 +163 0.856707 0.562195 +SURF 0x30 +mat 1 +refs 3 +176 0.856707 0.586788 +178 0.895857 0.550817 +192 0.895857 0.556184 +SURF 0x30 +mat 1 +refs 3 +178 0.895857 0.550817 +176 0.856707 0.586788 +162 0.856707 0.580396 +SURF 0x30 +mat 1 +refs 3 +161 0.811575 0.604262 +176 0.856707 0.586788 +177 0.856707 0.580396 +SURF 0x30 +mat 1 +refs 3 +176 0.856707 0.586788 +161 0.811575 0.604262 +160 0.811575 0.611424 +SURF 0x30 +mat 1 +refs 3 +159 0.811575 0.58385 +177 0.856707 0.580396 +175 0.856707 0.562195 +SURF 0x30 +mat 1 +refs 3 +177 0.856707 0.580396 +159 0.811575 0.58385 +161 0.811575 0.604262 +SURF 0x30 +mat 1 +refs 3 +158 0.811575 0.553303 +175 0.856707 0.562195 +174 0.856707 0.534953 +SURF 0x30 +mat 1 +refs 3 +175 0.856707 0.562195 +158 0.811575 0.553303 +159 0.811575 0.58385 +SURF 0x30 +mat 1 +refs 3 +157 0.811575 0.517274 +174 0.856707 0.534953 +173 0.856707 0.502816 +SURF 0x30 +mat 1 +refs 3 +174 0.856707 0.534953 +157 0.811575 0.517274 +158 0.811575 0.553303 +SURF 0x30 +mat 1 +refs 3 +156 0.811575 0.481246 +173 0.856707 0.502816 +172 0.856707 0.47068 +SURF 0x30 +mat 1 +refs 3 +173 0.856707 0.502816 +156 0.811575 0.481246 +157 0.811575 0.517274 +SURF 0x30 +mat 1 +refs 3 +155 0.811575 0.448608 +172 0.856707 0.47068 +171 0.856707 0.443438 +SURF 0x30 +mat 1 +refs 3 +172 0.856707 0.47068 +155 0.811575 0.448608 +156 0.811575 0.481246 +SURF 0x30 +mat 1 +refs 3 +154 0.811575 0.428196 +171 0.856707 0.443438 +170 0.856707 0.425236 +SURF 0x30 +mat 1 +refs 3 +171 0.856707 0.443438 +154 0.811575 0.428196 +155 0.811575 0.448608 +SURF 0x30 +mat 1 +refs 3 +153 0.811575 0.39904 +170 0.856707 0.425236 +169 0.856707 0.39685 +SURF 0x30 +mat 1 +refs 3 +170 0.856707 0.425236 +153 0.811575 0.39904 +154 0.811575 0.428196 +SURF 0x30 +mat 1 +refs 3 +152 0.811575 0.428196 +169 0.856707 0.39685 +168 0.856707 0.425236 +SURF 0x30 +mat 1 +refs 3 +169 0.856707 0.39685 +152 0.811575 0.428196 +153 0.811575 0.39904 +SURF 0x30 +mat 1 +refs 3 +151 0.811575 0.448608 +168 0.856707 0.425236 +167 0.856707 0.443438 +SURF 0x30 +mat 1 +refs 3 +168 0.856707 0.425236 +151 0.811575 0.448608 +152 0.811575 0.428196 +SURF 0x30 +mat 1 +refs 3 +150 0.811575 0.481246 +167 0.856707 0.443438 +166 0.856707 0.47068 +SURF 0x30 +mat 1 +refs 3 +167 0.856707 0.443438 +150 0.811575 0.481246 +151 0.811575 0.448608 +SURF 0x30 +mat 1 +refs 3 +149 0.811575 0.517274 +166 0.856707 0.47068 +165 0.856707 0.502816 +SURF 0x30 +mat 1 +refs 3 +166 0.856707 0.47068 +149 0.811575 0.517274 +150 0.811575 0.481246 +SURF 0x30 +mat 1 +refs 3 +148 0.811575 0.553303 +165 0.856707 0.502816 +164 0.856707 0.534953 +SURF 0x30 +mat 1 +refs 3 +165 0.856707 0.502816 +148 0.811575 0.553303 +149 0.811575 0.517274 +SURF 0x30 +mat 1 +refs 3 +147 0.811575 0.58385 +164 0.856707 0.534953 +163 0.856707 0.562195 +SURF 0x30 +mat 1 +refs 3 +164 0.856707 0.534953 +147 0.811575 0.58385 +148 0.811575 0.553303 +SURF 0x30 +mat 1 +refs 3 +146 0.811575 0.604262 +163 0.856707 0.562195 +162 0.856707 0.580396 +SURF 0x30 +mat 1 +refs 3 +163 0.856707 0.562195 +146 0.811575 0.604262 +147 0.811575 0.58385 +SURF 0x30 +mat 1 +refs 3 +160 0.811575 0.611424 +162 0.856707 0.580396 +176 0.856707 0.586788 +SURF 0x30 +mat 1 +refs 3 +162 0.856707 0.580396 +160 0.811575 0.611424 +146 0.811575 0.604262 +SURF 0x30 +mat 1 +refs 3 +145 0.765216 0.621411 +160 0.811575 0.611424 +161 0.811575 0.604262 +SURF 0x30 +mat 1 +refs 3 +160 0.811575 0.611424 +145 0.765216 0.621411 +144 0.765216 0.629315 +SURF 0x30 +mat 1 +refs 3 +143 0.765216 0.598908 +161 0.811575 0.604262 +159 0.811575 0.58385 +SURF 0x30 +mat 1 +refs 3 +161 0.811575 0.604262 +143 0.765216 0.598908 +145 0.765216 0.621411 +SURF 0x30 +mat 1 +refs 3 +142 0.765216 0.565225 +159 0.811575 0.58385 +158 0.811575 0.553303 +SURF 0x30 +mat 1 +refs 3 +159 0.811575 0.58385 +142 0.765216 0.565225 +143 0.765216 0.598908 +SURF 0x30 +mat 1 +refs 3 +141 0.765216 0.525496 +158 0.811575 0.553303 +157 0.811575 0.517274 +SURF 0x30 +mat 1 +refs 3 +158 0.811575 0.553303 +141 0.765216 0.525496 +142 0.765216 0.565225 +SURF 0x30 +mat 1 +refs 3 +140 0.765216 0.485759 +157 0.811575 0.517274 +156 0.811575 0.481246 +SURF 0x30 +mat 1 +refs 3 +157 0.811575 0.517274 +140 0.765216 0.485759 +141 0.765216 0.525496 +SURF 0x30 +mat 1 +refs 3 +139 0.765216 0.452076 +156 0.811575 0.481246 +155 0.811575 0.448608 +SURF 0x30 +mat 1 +refs 3 +156 0.811575 0.481246 +139 0.765216 0.452076 +140 0.765216 0.485759 +SURF 0x30 +mat 1 +refs 3 +138 0.765216 0.429573 +155 0.811575 0.448608 +154 0.811575 0.428196 +SURF 0x30 +mat 1 +refs 3 +155 0.811575 0.448608 +138 0.765216 0.429573 +139 0.765216 0.452076 +SURF 0x30 +mat 1 +refs 3 +137 0.765216 0.399682 +154 0.811575 0.428196 +153 0.811575 0.39904 +SURF 0x30 +mat 1 +refs 3 +154 0.811575 0.428196 +137 0.765216 0.399682 +138 0.765216 0.429573 +SURF 0x30 +mat 1 +refs 3 +136 0.765216 0.429573 +153 0.811575 0.39904 +152 0.811575 0.428196 +SURF 0x30 +mat 1 +refs 3 +153 0.811575 0.39904 +136 0.765216 0.429573 +137 0.765216 0.399682 +SURF 0x30 +mat 1 +refs 3 +135 0.765216 0.452076 +152 0.811575 0.428196 +151 0.811575 0.448608 +SURF 0x30 +mat 1 +refs 3 +152 0.811575 0.428196 +135 0.765216 0.452076 +136 0.765216 0.429573 +SURF 0x30 +mat 1 +refs 3 +134 0.765216 0.485759 +151 0.811575 0.448608 +150 0.811575 0.481246 +SURF 0x30 +mat 1 +refs 3 +151 0.811575 0.448608 +134 0.765216 0.485759 +135 0.765216 0.452076 +SURF 0x30 +mat 1 +refs 3 +133 0.765216 0.525496 +150 0.811575 0.481246 +149 0.811575 0.517274 +SURF 0x30 +mat 1 +refs 3 +150 0.811575 0.481246 +133 0.765216 0.525496 +134 0.765216 0.485759 +SURF 0x30 +mat 1 +refs 3 +132 0.765216 0.565225 +149 0.811575 0.517274 +148 0.811575 0.553303 +SURF 0x30 +mat 1 +refs 3 +149 0.811575 0.517274 +132 0.765216 0.565225 +133 0.765216 0.525496 +SURF 0x30 +mat 1 +refs 3 +131 0.765216 0.598908 +148 0.811575 0.553303 +147 0.811575 0.58385 +SURF 0x30 +mat 1 +refs 3 +148 0.811575 0.553303 +131 0.765216 0.598908 +132 0.765216 0.565225 +SURF 0x30 +mat 1 +refs 3 +130 0.765216 0.621411 +147 0.811575 0.58385 +146 0.811575 0.604262 +SURF 0x30 +mat 1 +refs 3 +147 0.811575 0.58385 +130 0.765216 0.621411 +131 0.765216 0.598908 +SURF 0x30 +mat 1 +refs 3 +144 0.765216 0.629315 +146 0.811575 0.604262 +160 0.811575 0.611424 +SURF 0x30 +mat 1 +refs 3 +146 0.811575 0.604262 +144 0.765216 0.629315 +130 0.765216 0.621411 +SURF 0x30 +mat 1 +refs 3 +129 0.707225 0.636921 +144 0.765216 0.629315 +145 0.765216 0.621411 +SURF 0x30 +mat 1 +refs 3 +144 0.765216 0.629315 +129 0.707225 0.636921 +128 0.707225 0.645468 +SURF 0x30 +mat 1 +refs 3 +127 0.707225 0.612575 +145 0.765216 0.621411 +143 0.765216 0.598908 +SURF 0x30 +mat 1 +refs 3 +145 0.765216 0.621411 +127 0.707225 0.612575 +129 0.707225 0.636921 +SURF 0x30 +mat 1 +refs 3 +126 0.707225 0.576137 +143 0.765216 0.598908 +142 0.765216 0.565225 +SURF 0x30 +mat 1 +refs 3 +143 0.765216 0.598908 +126 0.707225 0.576137 +127 0.707225 0.612575 +SURF 0x30 +mat 1 +refs 3 +125 0.707225 0.533159 +142 0.765216 0.565225 +141 0.765216 0.525496 +SURF 0x30 +mat 1 +refs 3 +142 0.765216 0.565225 +125 0.707225 0.533159 +126 0.707225 0.576137 +SURF 0x30 +mat 1 +refs 3 +124 0.707225 0.490181 +141 0.765216 0.525496 +140 0.765216 0.485759 +SURF 0x30 +mat 1 +refs 3 +141 0.765216 0.525496 +124 0.707225 0.490181 +125 0.707225 0.533159 +SURF 0x30 +mat 1 +refs 3 +123 0.707225 0.453743 +140 0.765216 0.485759 +139 0.765216 0.452076 +SURF 0x30 +mat 1 +refs 3 +140 0.765216 0.485759 +123 0.707225 0.453743 +124 0.707225 0.490181 +SURF 0x30 +mat 1 +refs 3 +122 0.707225 0.429396 +139 0.765216 0.452076 +138 0.765216 0.429573 +SURF 0x30 +mat 1 +refs 3 +139 0.765216 0.452076 +122 0.707225 0.429396 +123 0.707225 0.453743 +SURF 0x30 +mat 1 +refs 3 +121 0.707225 0.398863 +138 0.765216 0.429573 +137 0.765216 0.399682 +SURF 0x30 +mat 1 +refs 3 +138 0.765216 0.429573 +121 0.707225 0.398863 +122 0.707225 0.429396 +SURF 0x30 +mat 1 +refs 3 +120 0.707225 0.429396 +137 0.765216 0.399682 +136 0.765216 0.429573 +SURF 0x30 +mat 1 +refs 3 +137 0.765216 0.399682 +120 0.707225 0.429396 +121 0.707225 0.398863 +SURF 0x30 +mat 1 +refs 3 +34 0.707225 0.453743 +136 0.765216 0.429573 +135 0.765216 0.452076 +SURF 0x30 +mat 1 +refs 3 +136 0.765216 0.429573 +34 0.707225 0.453743 +120 0.707225 0.429396 +SURF 0x30 +mat 1 +refs 3 +33 0.707225 0.490181 +135 0.765216 0.452076 +134 0.765216 0.485759 +SURF 0x30 +mat 1 +refs 3 +135 0.765216 0.452076 +33 0.707225 0.490181 +34 0.707225 0.453743 +SURF 0x30 +mat 1 +refs 3 +30 0.707225 0.533159 +134 0.765216 0.485759 +133 0.765216 0.525496 +SURF 0x30 +mat 1 +refs 3 +134 0.765216 0.485759 +30 0.707225 0.533159 +33 0.707225 0.490181 +SURF 0x30 +mat 1 +refs 3 +28 0.707225 0.576137 +133 0.765216 0.525496 +132 0.765216 0.565225 +SURF 0x30 +mat 1 +refs 3 +133 0.765216 0.525496 +28 0.707225 0.576137 +30 0.707225 0.533159 +SURF 0x30 +mat 1 +refs 3 +119 0.707225 0.612575 +132 0.765216 0.565225 +131 0.765216 0.598908 +SURF 0x30 +mat 1 +refs 3 +132 0.765216 0.565225 +119 0.707225 0.612575 +28 0.707225 0.576137 +SURF 0x30 +mat 1 +refs 3 +118 0.707225 0.636921 +131 0.765216 0.598908 +130 0.765216 0.621411 +SURF 0x30 +mat 1 +refs 3 +131 0.765216 0.598908 +118 0.707225 0.636921 +119 0.707225 0.612575 +SURF 0x30 +mat 1 +refs 3 +128 0.707225 0.645468 +130 0.765216 0.621411 +144 0.765216 0.629315 +SURF 0x30 +mat 1 +refs 3 +130 0.765216 0.621411 +128 0.707225 0.645468 +118 0.707225 0.636921 +SURF 0x30 +mat 1 +refs 3 +117 0.639317 0.643896 +128 0.707226 0.645142 +129 0.707226 0.635661 +SURF 0x30 +mat 1 +refs 3 +128 0.707226 0.645142 +117 0.639317 0.643896 +116 0.639317 0.653854 +SURF 0x30 +mat 1 +refs 3 +115 0.639317 0.615526 +129 0.707226 0.635661 +127 0.707226 0.608655 +SURF 0x30 +mat 1 +refs 3 +129 0.707226 0.635661 +115 0.639317 0.615526 +117 0.639317 0.643896 +SURF 0x30 +mat 1 +refs 3 +114 0.639317 0.573069 +127 0.707226 0.608655 +126 0.707226 0.568235 +SURF 0x30 +mat 1 +refs 3 +127 0.707226 0.608655 +114 0.639317 0.573069 +115 0.639317 0.615526 +SURF 0x30 +mat 1 +refs 3 +113 0.639317 0.637988 +126 0.707226 0.683235 +125 0.707226 0.63556 +SURF 0x30 +mat 1 +refs 3 +126 0.707226 0.683235 +113 0.639317 0.637988 +114 0.639317 0.688069 +SURF 0x30 +mat 1 +refs 3 +112 0.639317 0.589068 +125 0.707226 0.63556 +124 0.707226 0.587885 +SURF 0x30 +mat 1 +refs 3 +125 0.707226 0.63556 +112 0.639317 0.589068 +113 0.639317 0.637988 +SURF 0x30 +mat 1 +refs 3 +111 0.639317 0.431611 +124 0.707226 0.472885 +123 0.707226 0.432465 +SURF 0x30 +mat 1 +refs 3 +124 0.707226 0.472885 +111 0.639317 0.431611 +112 0.639317 0.474068 +SURF 0x30 +mat 1 +refs 3 +110 0.639317 0.403249 +123 0.707226 0.432465 +122 0.707226 0.405458 +SURF 0x30 +mat 1 +refs 3 +123 0.707226 0.432465 +110 0.639317 0.403249 +111 0.639317 0.431611 +SURF 0x30 +mat 1 +refs 3 +109 0.639317 0.368893 +122 0.707226 0.405458 +121 0.707226 0.371588 +SURF 0x30 +mat 1 +refs 3 +122 0.707226 0.405458 +109 0.639317 0.368893 +110 0.639317 0.403249 +SURF 0x30 +mat 1 +refs 3 +108 0.639317 0.403249 +121 0.707226 0.371588 +120 0.707226 0.405458 +SURF 0x30 +mat 1 +refs 3 +121 0.707226 0.371588 +108 0.639317 0.403249 +109 0.639317 0.368893 +SURF 0x30 +mat 1 +refs 3 +31 0.639317 0.431611 +120 0.707226 0.405458 +34 0.707226 0.432465 +SURF 0x30 +mat 1 +refs 3 +120 0.707226 0.405458 +31 0.639317 0.431611 +108 0.639317 0.403249 +SURF 0x30 +mat 1 +refs 3 +22 0.639317 0.615526 +28 0.707226 0.568235 +119 0.707226 0.608655 +SURF 0x30 +mat 1 +refs 3 +28 0.707226 0.568235 +22 0.639317 0.615526 +27 0.639317 0.573069 +SURF 0x30 +mat 1 +refs 3 +107 0.639317 0.643896 +119 0.707226 0.608655 +118 0.707226 0.635661 +SURF 0x30 +mat 1 +refs 3 +119 0.707226 0.608655 +107 0.639317 0.643896 +22 0.639317 0.615526 +SURF 0x30 +mat 1 +refs 3 +116 0.639317 0.653854 +118 0.707226 0.635661 +128 0.707226 0.645142 +SURF 0x30 +mat 1 +refs 3 +118 0.707226 0.635661 +116 0.639317 0.653854 +107 0.639317 0.643896 +SURF 0x30 +mat 1 +refs 3 +106 0.565707 0.649145 +116 0.639317 0.653854 +117 0.639317 0.643896 +SURF 0x30 +mat 1 +refs 3 +116 0.639317 0.653854 +106 0.565707 0.649145 +105 0.565707 0.659338 +SURF 0x30 +mat 1 +refs 3 +104 0.565707 0.620117 +117 0.639317 0.643896 +115 0.639317 0.615526 +SURF 0x30 +mat 1 +refs 3 +117 0.639317 0.643896 +104 0.565707 0.620117 +106 0.565707 0.649145 +SURF 0x30 +mat 1 +refs 3 +103 0.565707 0.576665 +115 0.639317 0.615526 +114 0.639317 0.573069 +SURF 0x30 +mat 1 +refs 3 +115 0.639317 0.615526 +103 0.565707 0.576665 +104 0.565707 0.620117 +SURF 0x30 +mat 1 +refs 3 +102 0.565707 0.640425 +114 0.639317 0.688069 +113 0.639317 0.637988 +SURF 0x30 +mat 1 +refs 3 +114 0.639317 0.688069 +102 0.565707 0.640425 +103 0.565707 0.691665 +SURF 0x30 +mat 1 +refs 3 +101 0.565707 0.58917 +113 0.639317 0.637988 +112 0.639317 0.589068 +SURF 0x30 +mat 1 +refs 3 +113 0.639317 0.637988 +101 0.565707 0.58917 +102 0.565707 0.640425 +SURF 0x30 +mat 1 +refs 3 +100 0.565707 0.430726 +112 0.639317 0.474068 +111 0.639317 0.431611 +SURF 0x30 +mat 1 +refs 3 +112 0.635567 0.630735 +100 0.561957 0.587392 +101 0.561957 0.630836 +SURF 0x30 +mat 1 +refs 3 +99 0.565707 0.401697 +111 0.639317 0.431611 +110 0.639317 0.403249 +SURF 0x30 +mat 1 +refs 3 +111 0.639317 0.431611 +99 0.565707 0.401697 +100 0.565707 0.430726 +SURF 0x30 +mat 1 +refs 3 +98 0.565707 0.367114 +110 0.639317 0.403249 +109 0.639317 0.368893 +SURF 0x30 +mat 1 +refs 3 +110 0.639317 0.403249 +98 0.565707 0.367114 +99 0.565707 0.401697 +SURF 0x30 +mat 1 +refs 3 +97 0.565707 0.401697 +109 0.639317 0.368893 +108 0.639317 0.403249 +SURF 0x30 +mat 1 +refs 3 +109 0.639317 0.368893 +97 0.565707 0.401697 +98 0.565707 0.367114 +SURF 0x30 +mat 1 +refs 3 +25 0.565707 0.430726 +108 0.639317 0.403249 +31 0.639317 0.431611 +SURF 0x30 +mat 1 +refs 3 +108 0.639317 0.403249 +25 0.565707 0.430726 +97 0.565707 0.401697 +SURF 0x30 +mat 1 +refs 3 +96 0.565707 0.649145 +22 0.639317 0.615526 +107 0.639317 0.643896 +SURF 0x30 +mat 1 +refs 3 +22 0.639317 0.615526 +96 0.565707 0.649145 +21 0.565707 0.620117 +SURF 0x30 +mat 1 +refs 3 +105 0.565707 0.659338 +107 0.639317 0.643896 +116 0.639317 0.653854 +SURF 0x30 +mat 1 +refs 3 +107 0.639317 0.643896 +105 0.565707 0.659338 +96 0.565707 0.649145 +SURF 0x30 +mat 1 +refs 3 +95 0.4871 0.653995 +105 0.565707 0.659338 +106 0.565707 0.649145 +SURF 0x30 +mat 1 +refs 3 +105 0.565707 0.659338 +95 0.4871 0.653995 +94 0.4871 0.664486 +SURF 0x30 +mat 1 +refs 3 +93 0.4871 0.624113 +106 0.565707 0.649145 +104 0.565707 0.620117 +SURF 0x30 +mat 1 +refs 3 +106 0.565707 0.649145 +93 0.4871 0.624113 +95 0.4871 0.653995 +SURF 0x30 +mat 1 +refs 3 +92 0.4871 0.579392 +104 0.565707 0.620117 +103 0.565707 0.576665 +SURF 0x30 +mat 1 +refs 3 +104 0.565707 0.620117 +92 0.4871 0.579392 +93 0.4871 0.624113 +SURF 0x30 +mat 1 +refs 3 +91 0.4871 0.64164 +103 0.565707 0.691665 +102 0.565707 0.640425 +SURF 0x30 +mat 1 +refs 3 +103 0.565707 0.691665 +91 0.4871 0.64164 +92 0.4871 0.694392 +SURF 0x30 +mat 1 +refs 3 +90 0.4871 0.58888 +102 0.565707 0.640425 +101 0.565707 0.58917 +SURF 0x30 +mat 1 +refs 3 +102 0.565707 0.640425 +90 0.4871 0.58888 +91 0.4871 0.64164 +SURF 0x30 +mat 1 +refs 3 +89 0.4871 0.429159 +101 0.565707 0.47417 +100 0.565707 0.430726 +SURF 0x30 +mat 1 +refs 3 +101 0.565707 0.47417 +89 0.4871 0.429159 +90 0.4871 0.47388 +SURF 0x30 +mat 1 +refs 3 +88 0.4871 0.399276 +100 0.565707 0.430726 +99 0.565707 0.401697 +SURF 0x30 +mat 1 +refs 3 +100 0.565707 0.430726 +88 0.4871 0.399276 +89 0.4871 0.429159 +SURF 0x30 +mat 1 +refs 3 +87 0.4871 0.364388 +99 0.565707 0.401697 +98 0.565707 0.367114 +SURF 0x30 +mat 1 +refs 3 +99 0.565707 0.401697 +87 0.4871 0.364388 +88 0.4871 0.399276 +SURF 0x30 +mat 1 +refs 3 +86 0.4871 0.399276 +98 0.565707 0.367114 +97 0.565707 0.401697 +SURF 0x30 +mat 1 +refs 3 +98 0.565707 0.367114 +86 0.4871 0.399276 +87 0.4871 0.364388 +SURF 0x30 +mat 1 +refs 3 +19 0.4871 0.429159 +97 0.565707 0.401697 +25 0.565707 0.430726 +SURF 0x30 +mat 1 +refs 3 +97 0.565707 0.401697 +19 0.4871 0.429159 +86 0.4871 0.399276 +SURF 0x30 +mat 1 +refs 3 +85 0.4871 0.653995 +21 0.565707 0.620117 +96 0.565707 0.649145 +SURF 0x30 +mat 1 +refs 3 +21 0.565707 0.620117 +85 0.4871 0.653995 +16 0.4871 0.624113 +SURF 0x30 +mat 1 +refs 3 +94 0.4871 0.664486 +96 0.565707 0.649145 +105 0.565707 0.659338 +SURF 0x30 +mat 1 +refs 3 +96 0.565707 0.649145 +94 0.4871 0.664486 +85 0.4871 0.653995 +SURF 0x30 +mat 1 +refs 3 +84 0.404253 0.655476 +94 0.4871 0.664486 +95 0.4871 0.653995 +SURF 0x30 +mat 1 +refs 3 +94 0.4871 0.664486 +84 0.404253 0.655476 +83 0.404253 0.666092 +SURF 0x30 +mat 1 +refs 3 +82 0.404253 0.625249 +95 0.4871 0.653995 +93 0.4871 0.624113 +SURF 0x30 +mat 1 +refs 3 +95 0.4871 0.653995 +82 0.404253 0.625249 +84 0.404253 0.655476 +SURF 0x30 +mat 1 +refs 3 +81 0.400503 0.686669 +93 0.48335 0.73078 +92 0.48335 0.686058 +SURF 0x30 +mat 1 +refs 3 +93 0.4871 0.624113 +81 0.404253 0.580003 +82 0.404253 0.625249 +SURF 0x30 +mat 1 +refs 3 +80 0.404253 0.64164 +92 0.4871 0.694392 +91 0.4871 0.64164 +SURF 0x30 +mat 1 +refs 3 +92 0.4871 0.694392 +80 0.404253 0.64164 +81 0.404253 0.695003 +SURF 0x30 +mat 1 +refs 3 +79 0.404253 0.588269 +91 0.4871 0.64164 +90 0.4871 0.58888 +SURF 0x30 +mat 1 +refs 3 +91 0.4871 0.64164 +79 0.404253 0.588269 +80 0.404253 0.64164 +SURF 0x30 +mat 1 +refs 3 +78 0.404253 0.428023 +90 0.4871 0.47388 +89 0.4871 0.429159 +SURF 0x30 +mat 1 +refs 3 +90 0.4871 0.47388 +78 0.404253 0.428023 +79 0.404253 0.473269 +SURF 0x30 +mat 1 +refs 3 +77 0.404253 0.397796 +89 0.4871 0.429159 +88 0.4871 0.399276 +SURF 0x30 +mat 1 +refs 3 +89 0.4871 0.429159 +77 0.404253 0.397796 +78 0.404253 0.428023 +SURF 0x30 +mat 1 +refs 3 +76 0.404253 0.36279 +88 0.4871 0.399276 +87 0.4871 0.364388 +SURF 0x30 +mat 1 +refs 3 +88 0.4871 0.399276 +76 0.404253 0.36279 +77 0.404253 0.397796 +SURF 0x30 +mat 1 +refs 3 +75 0.404253 0.397796 +87 0.4871 0.364388 +86 0.4871 0.399276 +SURF 0x30 +mat 1 +refs 3 +87 0.4871 0.364388 +75 0.404253 0.397796 +76 0.404253 0.36279 +SURF 0x30 +mat 1 +refs 3 +74 0.404253 0.428023 +86 0.4871 0.399276 +19 0.4871 0.429159 +SURF 0x30 +mat 1 +refs 3 +86 0.4871 0.399276 +74 0.404253 0.428023 +75 0.404253 0.397796 +SURF 0x30 +mat 1 +refs 3 +73 0.404253 0.625249 +17 0.4871 0.579392 +16 0.4871 0.624113 +SURF 0x30 +mat 1 +refs 3 +17 0.4871 0.579392 +73 0.404253 0.625249 +12 0.404253 0.580003 +SURF 0x30 +mat 1 +refs 3 +72 0.404253 0.655476 +16 0.4871 0.624113 +85 0.4871 0.653995 +SURF 0x30 +mat 1 +refs 3 +16 0.4871 0.624113 +72 0.404253 0.655476 +73 0.404253 0.625249 +SURF 0x30 +mat 1 +refs 3 +83 0.404253 0.666092 +85 0.4871 0.653995 +94 0.4871 0.664486 +SURF 0x30 +mat 1 +refs 3 +85 0.4871 0.653995 +83 0.404253 0.666092 +72 0.404253 0.655476 +SURF 0x30 +mat 1 +refs 3 +71 0.317959 0.65615 +83 0.404253 0.666092 +84 0.404253 0.655476 +SURF 0x30 +mat 1 +refs 3 +83 0.404253 0.666092 +71 0.317959 0.65615 +70 0.317959 0.666828 +SURF 0x30 +mat 1 +refs 3 +69 0.317959 0.625766 +84 0.404253 0.655476 +82 0.404253 0.625249 +SURF 0x30 +mat 1 +refs 3 +84 0.404253 0.655476 +69 0.317959 0.625766 +71 0.317959 0.65615 +SURF 0x30 +mat 1 +refs 3 +68 0.317959 0.580285 +82 0.404253 0.625249 +81 0.404253 0.580003 +SURF 0x30 +mat 1 +refs 3 +82 0.404253 0.625249 +68 0.317959 0.580285 +69 0.317959 0.625766 +SURF 0x30 +mat 1 +refs 3 +67 0.317959 0.64164 +81 0.404253 0.695003 +80 0.404253 0.64164 +SURF 0x30 +mat 1 +refs 3 +81 0.404253 0.695003 +67 0.317959 0.64164 +68 0.317959 0.695285 +SURF 0x30 +mat 1 +refs 3 +66 0.317959 0.587987 +80 0.404253 0.64164 +79 0.404253 0.588269 +SURF 0x30 +mat 1 +refs 3 +80 0.404253 0.64164 +66 0.317959 0.587987 +67 0.317959 0.64164 +SURF 0x30 +mat 1 +refs 3 +65 0.317959 0.427505 +79 0.404253 0.473269 +78 0.404253 0.428023 +SURF 0x30 +mat 1 +refs 3 +79 0.404253 0.473269 +65 0.317959 0.427505 +66 0.317959 0.472987 +SURF 0x30 +mat 1 +refs 3 +64 0.317959 0.397122 +78 0.404253 0.428023 +77 0.404253 0.397796 +SURF 0x30 +mat 1 +refs 3 +78 0.404253 0.428023 +64 0.317959 0.397122 +65 0.317959 0.427505 +SURF 0x30 +mat 1 +refs 3 +63 0.317959 0.362053 +77 0.404253 0.397796 +76 0.404253 0.36279 +SURF 0x30 +mat 1 +refs 3 +77 0.404253 0.397796 +63 0.317959 0.362053 +64 0.317959 0.397122 +SURF 0x30 +mat 1 +refs 3 +62 0.317959 0.397122 +76 0.404253 0.36279 +75 0.404253 0.397796 +SURF 0x30 +mat 1 +refs 3 +76 0.404253 0.36279 +62 0.317959 0.397122 +63 0.317959 0.362053 +SURF 0x30 +mat 1 +refs 3 +10 0.317959 0.427505 +75 0.404253 0.397796 +74 0.404253 0.428023 +SURF 0x30 +mat 1 +refs 3 +75 0.404253 0.397796 +10 0.317959 0.427505 +62 0.317959 0.397122 +SURF 0x30 +mat 1 +refs 3 +61 0.317959 0.625766 +12 0.404253 0.580003 +73 0.404253 0.625249 +SURF 0x30 +mat 1 +refs 3 +12 0.404253 0.580003 +61 0.317959 0.625766 +60 0.317959 0.580285 +SURF 0x30 +mat 1 +refs 3 +59 0.317959 0.65615 +73 0.404253 0.625249 +72 0.404253 0.655476 +SURF 0x30 +mat 1 +refs 3 +73 0.404253 0.625249 +59 0.317959 0.65615 +61 0.317959 0.625766 +SURF 0x30 +mat 1 +refs 3 +70 0.317959 0.666828 +72 0.404253 0.655476 +83 0.404253 0.666092 +SURF 0x30 +mat 1 +refs 3 +72 0.404253 0.655476 +70 0.317959 0.666828 +59 0.317959 0.65615 +SURF 0x30 +mat 1 +refs 3 +58 0.229063 0.658061 +70 0.317959 0.666828 +71 0.317959 0.65615 +SURF 0x30 +mat 1 +refs 3 +70 0.317959 0.666828 +58 0.229063 0.658061 +57 0.229063 0.668889 +SURF 0x30 +mat 1 +refs 3 +56 0.229063 0.627223 +71 0.317959 0.65615 +69 0.317959 0.625766 +SURF 0x30 +mat 1 +refs 3 +71 0.317959 0.65615 +56 0.229063 0.627223 +58 0.229063 0.658061 +SURF 0x30 +mat 1 +refs 3 +55 0.229063 0.581076 +69 0.317959 0.625766 +68 0.317959 0.580285 +SURF 0x30 +mat 1 +refs 3 +69 0.317959 0.625766 +55 0.229063 0.581076 +56 0.229063 0.627223 +SURF 0x30 +mat 1 +refs 3 +54 0.229063 0.52664 +68 0.317959 0.580285 +67 0.317959 0.52664 +SURF 0x30 +mat 1 +refs 3 +68 0.317959 0.580285 +54 0.229063 0.52664 +55 0.229063 0.581076 +SURF 0x30 +mat 1 +refs 3 +53 0.229063 0.472195 +67 0.317959 0.52664 +66 0.317959 0.472987 +SURF 0x30 +mat 1 +refs 3 +67 0.317959 0.52664 +53 0.229063 0.472195 +54 0.229063 0.52664 +SURF 0x30 +mat 1 +refs 3 +52 0.229063 0.426048 +66 0.317959 0.472987 +65 0.317959 0.427505 +SURF 0x30 +mat 1 +refs 3 +66 0.317959 0.472987 +52 0.229063 0.426048 +53 0.229063 0.472195 +SURF 0x30 +mat 1 +refs 3 +51 0.229063 0.39521 +65 0.317959 0.427505 +64 0.317959 0.397122 +SURF 0x30 +mat 1 +refs 3 +65 0.317959 0.427505 +51 0.229063 0.39521 +52 0.229063 0.426048 +SURF 0x30 +mat 1 +refs 3 +50 0.229063 0.359985 +64 0.317959 0.397122 +63 0.317959 0.362053 +SURF 0x30 +mat 1 +refs 3 +64 0.317959 0.397122 +50 0.229063 0.359985 +51 0.229063 0.39521 +SURF 0x30 +mat 1 +refs 3 +49 0.229063 0.39521 +63 0.317959 0.362053 +62 0.317959 0.397122 +SURF 0x30 +mat 1 +refs 3 +63 0.317959 0.362053 +49 0.229063 0.39521 +50 0.229063 0.359985 +SURF 0x30 +mat 1 +refs 3 +6 0.229063 0.426048 +62 0.317959 0.397122 +10 0.317959 0.427505 +SURF 0x30 +mat 1 +refs 3 +62 0.317959 0.397122 +6 0.229063 0.426048 +49 0.229063 0.39521 +SURF 0x30 +mat 1 +refs 3 +48 0.229063 0.627223 +60 0.317959 0.580285 +61 0.317959 0.625766 +SURF 0x30 +mat 1 +refs 3 +60 0.317959 0.580285 +48 0.229063 0.627223 +4 0.229063 0.581076 +SURF 0x30 +mat 1 +refs 3 +47 0.229063 0.658061 +61 0.317959 0.625766 +59 0.317959 0.65615 +SURF 0x30 +mat 1 +refs 3 +61 0.317959 0.625766 +47 0.229063 0.658061 +48 0.229063 0.627223 +SURF 0x30 +mat 1 +refs 3 +57 0.229063 0.668889 +59 0.317959 0.65615 +70 0.317959 0.666828 +SURF 0x30 +mat 1 +refs 3 +59 0.317959 0.65615 +57 0.229063 0.668889 +47 0.229063 0.658061 +SURF 0x30 +mat 1 +refs 3 +46 0.138406 0.658672 +57 0.229063 0.668889 +58 0.229063 0.658061 +SURF 0x30 +mat 1 +refs 3 +57 0.229063 0.668889 +46 0.138406 0.658672 +45 0.138406 0.669547 +SURF 0x30 +mat 1 +refs 3 +44 0.138406 0.627693 +58 0.229063 0.658061 +56 0.229063 0.627223 +SURF 0x30 +mat 1 +refs 3 +58 0.229063 0.658061 +44 0.138406 0.627693 +46 0.138406 0.658672 +SURF 0x30 +mat 1 +refs 3 +43 0.138406 0.581327 +56 0.229063 0.627223 +55 0.229063 0.581076 +SURF 0x30 +mat 1 +refs 3 +56 0.229063 0.627223 +43 0.138406 0.581327 +44 0.138406 0.627693 +SURF 0x30 +mat 1 +refs 3 +42 0.138406 0.52664 +55 0.229063 0.581076 +54 0.229063 0.52664 +SURF 0x30 +mat 1 +refs 3 +55 0.229063 0.581076 +42 0.138406 0.52664 +43 0.138406 0.581327 +SURF 0x30 +mat 1 +refs 3 +41 0.138406 0.471945 +54 0.229063 0.52664 +53 0.229063 0.472195 +SURF 0x30 +mat 1 +refs 3 +54 0.229063 0.52664 +41 0.138406 0.471945 +42 0.138406 0.52664 +SURF 0x30 +mat 1 +refs 3 +40 0.138406 0.425586 +53 0.229063 0.472195 +52 0.229063 0.426048 +SURF 0x30 +mat 1 +refs 3 +53 0.229063 0.472195 +40 0.138406 0.425586 +41 0.138406 0.471945 +SURF 0x30 +mat 1 +refs 3 +39 0.138406 0.394607 +52 0.229063 0.426048 +51 0.229063 0.39521 +SURF 0x30 +mat 1 +refs 3 +52 0.229063 0.426048 +39 0.138406 0.394607 +40 0.138406 0.425586 +SURF 0x30 +mat 1 +refs 3 +38 0.138406 0.359334 +51 0.229063 0.39521 +50 0.229063 0.359985 +SURF 0x30 +mat 1 +refs 3 +51 0.229063 0.39521 +38 0.138406 0.359334 +39 0.138406 0.394607 +SURF 0x30 +mat 1 +refs 3 +37 0.138406 0.394607 +50 0.229063 0.359985 +49 0.229063 0.39521 +SURF 0x30 +mat 1 +refs 3 +50 0.229063 0.359985 +37 0.138406 0.394607 +38 0.138406 0.359334 +SURF 0x30 +mat 1 +refs 3 +2 0.138406 0.425586 +49 0.229063 0.39521 +6 0.229063 0.426048 +SURF 0x30 +mat 1 +refs 3 +49 0.229063 0.39521 +2 0.138406 0.425586 +37 0.138406 0.394607 +SURF 0x30 +mat 1 +refs 3 +36 0.138406 0.627693 +4 0.229063 0.581076 +48 0.229063 0.627223 +SURF 0x30 +mat 1 +refs 3 +4 0.229063 0.581076 +36 0.138406 0.627693 +0 0.138406 0.581327 +SURF 0x30 +mat 1 +refs 3 +35 0.138406 0.658672 +48 0.229063 0.627223 +47 0.229063 0.658061 +SURF 0x30 +mat 1 +refs 3 +48 0.229063 0.627223 +35 0.138406 0.658672 +36 0.138406 0.627693 +SURF 0x30 +mat 1 +refs 3 +45 0.138406 0.669547 +47 0.229063 0.658061 +57 0.229063 0.668889 +SURF 0x30 +mat 1 +refs 3 +47 0.229063 0.658061 +45 0.138406 0.669547 +35 0.138406 0.658672 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +241 0.959666 0.443508 +240 0.959666 0.445493 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +239 0.959666 0.437865 +241 0.959666 0.443508 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +238 0.959666 0.429425 +239 0.959666 0.437865 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +237 0.959666 0.419466 +238 0.959666 0.429425 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +236 0.959666 0.409507 +237 0.959666 0.419466 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +235 0.959666 0.401067 +236 0.959666 0.409507 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +234 0.959666 0.39543 +235 0.959666 0.401067 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +233 0.959666 0.373189 +234 0.959666 0.39543 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +232 0.959666 0.39543 +233 0.959666 0.373189 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +231 0.959666 0.401067 +232 0.959666 0.39543 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +230 0.959666 0.409507 +231 0.959666 0.401067 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +229 0.959666 0.419466 +230 0.959666 0.409507 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +228 0.959666 0.429425 +229 0.959666 0.419466 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +227 0.959666 0.437865 +228 0.959666 0.429425 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +226 0.959666 0.443508 +227 0.959666 0.437865 +SURF 0x30 +mat 1 +refs 3 +242 0.964162 0.401801 +240 0.959666 0.445493 +226 0.959666 0.443508 +kids 0 +OBJECT poly +name "LWing" +loc 0.10756 0.0411321 0.346359 +texture "wing.jpg" +crease 45.000000 +numvert 242 +-0.100052 -0.0339453 -0.271843 +-0.080068 -0.0290277 -0.271843 +-0.0501585 -0.0257425 -0.271843 +-0.0148816 -0.0245903 -0.271843 +0.0204006 -0.0257425 -0.271843 +0.0503051 -0.0290277 -0.271843 +0.0702887 -0.0339453 -0.271843 +0.0930422 -0.0397421 -0.271843 +0.0702887 -0.0455443 -0.271843 +0.0503051 -0.0504618 -0.271843 +0.0204006 -0.0537469 -0.271843 +-0.0148816 -0.0548992 -0.271843 +-0.0501585 -0.0537469 -0.271843 +-0.080068 -0.0504618 -0.271843 +-0.100052 -0.0455443 -0.271843 +-0.107067 -0.0397421 -0.271843 +-0.0996577 -0.0340312 -0.204731 +-0.0797647 -0.0291844 -0.204731 +-0.0499968 -0.0259447 -0.204731 +-0.0148816 -0.0248076 -0.204731 +0.0202387 -0.0259447 -0.204731 +0.0490668 -0.0285576 -0.138922 +0.0500069 -0.0291844 -0.204731 +0.0698996 -0.0340312 -0.204731 +0.092622 -0.0397421 -0.204731 +0.0698996 -0.0454584 -0.204731 +0.0500069 -0.0503051 -0.204731 +0.0202387 -0.0535447 -0.204731 +-0.0148816 -0.0546818 -0.204731 +-0.0499968 -0.0535447 -0.204731 +-0.0797647 -0.0503051 -0.204731 +-0.0996577 -0.0454584 -0.204731 +-0.106642 -0.0397421 -0.204731 +-0.0984246 -0.0332832 -0.138922 +-0.0788249 -0.0285576 -0.138922 +-0.0494864 -0.0253989 -0.138922 +-0.0148816 -0.0242871 -0.138922 +0.0197283 -0.0253989 -0.138922 +0.0686663 -0.0332832 -0.138922 +0.0912881 -0.0388628 -0.138922 +0.0686663 -0.0444374 -0.138922 +0.0490668 -0.0491629 -0.138922 +0.0197283 -0.0523267 -0.138922 +-0.0148816 -0.0534336 -0.138922 +-0.0494864 -0.0523267 -0.138922 +-0.0788249 -0.0491629 -0.138922 +-0.0984246 -0.0444374 -0.138922 +-0.105313 -0.0388628 -0.138922 +-0.0979899 -0.0313828 -0.0750395 +-0.0784911 -0.0268192 -0.0750395 +-0.0493044 -0.0237665 -0.0750395 +-0.0148816 -0.0226951 -0.0750395 +0.0195464 -0.0237665 -0.0750395 +0.0682317 -0.0313828 -0.0750395 +0.0908128 -0.0367654 -0.0750395 +0.0682317 -0.0421479 -0.0750395 +0.0487333 -0.0467116 -0.0750395 +0.0195464 -0.0497644 -0.0750395 +-0.0148816 -0.0508357 -0.0750395 +-0.0493044 -0.0497644 -0.0750395 +-0.0784911 -0.0467116 -0.0750395 +-0.0979899 -0.0421479 -0.0750395 +-0.104838 -0.0367654 -0.0750395 +-0.0970349 -0.0289771 -0.013709 +-0.0777584 -0.0246155 -0.013709 +-0.0471514 -0.0186013 0.0444829 +-0.0489101 -0.0217045 -0.013709 +-0.0148816 -0.0206835 -0.013709 +0.0191523 -0.0217045 -0.013709 +0.0672765 -0.0289771 -0.013709 +0.0897823 -0.034112 -0.013709 +0.0672765 -0.0392519 -0.013709 +0.0480004 -0.0436085 -0.013709 +0.0191523 -0.0465247 -0.013709 +-0.0148816 -0.0475456 -0.013709 +-0.0489101 -0.0465247 -0.013709 +-0.0777584 -0.0436085 -0.013709 +-0.0970349 -0.0392519 -0.013709 +-0.103802 -0.034112 -0.013709 +-0.0939063 -0.0254545 0.0444829 +-0.075181 -0.0213455 0.0444829 +-0.0140982 -0.0176411 0.0444829 +0.0189652 -0.0186013 0.0444829 +0.0657148 -0.0254545 0.0444829 +0.0880235 -0.0303012 0.0444829 +0.0657148 -0.0351481 0.0444829 +0.0469897 -0.0392571 0.0444829 +0.0189652 -0.0420014 0.0444829 +-0.0140982 -0.0429616 0.0444829 +-0.0471514 -0.0420014 0.0444829 +-0.075181 -0.0392571 0.0444829 +-0.0939063 -0.0351481 0.0444829 +-0.100481 -0.0303012 0.0444829 +-0.0905202 -0.021376 0.0989754 +-0.0722193 -0.0175601 0.0989754 +-0.0109597 -0.0106968 0.149247 +-0.0125263 -0.0141083 0.0989754 +0.0190309 -0.0150079 0.0989754 +0.0647141 -0.021376 0.0989754 +0.086876 -0.0258842 0.0989754 +0.0647141 -0.0303872 0.0989754 +0.0464185 -0.034208 0.0989754 +0.0190309 -0.0367603 0.0989754 +-0.0125263 -0.037655 0.0989754 +-0.0448316 -0.0367603 0.0989754 +-0.0722193 -0.034208 0.0989754 +-0.0905202 -0.0303872 0.0989754 +-0.0969432 -0.0258842 0.0989754 +-0.0852082 -0.0173429 0.149247 +-0.067787 -0.0138506 0.149247 +0.0229579 -0.00607239 0.192212 +0.019794 -0.0115155 0.149247 +0.0458677 -0.0138506 0.149247 +0.0632889 -0.0173429 0.149247 +0.0851371 -0.0214619 0.149247 +0.0632889 -0.025586 0.149247 +0.0458677 -0.0290782 0.149247 +0.019794 -0.0314132 0.149247 +-0.0109597 -0.032232 0.149247 +-0.0417133 -0.0314132 0.149247 +-0.067787 -0.0290782 0.149247 +-0.0852082 -0.025586 0.149247 +-0.0913232 -0.0214619 0.149247 +-0.0741095 -0.0113033 0.192212 +-0.0580075 -0.00816976 0.192212 +0.049542 -0.00260532 0.226559 +0.0470605 -0.00816976 0.192212 +0.0641481 -0.00534971 0.226559 +0.0631626 -0.0113033 0.192212 +0.0845511 -0.0149978 0.192212 +0.0631626 -0.0186974 0.192212 +0.0470605 -0.0218308 0.192212 +0.0229579 -0.0239232 0.192212 +-0.00547607 -0.0246611 0.192212 +-0.0339048 -0.0239232 0.192212 +-0.0580075 -0.0218308 0.192212 +-0.0741095 -0.0186974 0.192212 +-0.0797647 -0.0149978 0.192212 +-0.0618384 -0.00534971 0.226559 +-0.0472323 -0.00260532 0.226559 +0.0850111 -0.00858927 0.226559 +0.0641481 -0.0118239 0.226559 +0.049542 -0.0145681 0.226559 +0.0261873 -0.0164028 0.226559 +0.000406861 -0.0170497 0.226559 +-0.0253737 -0.0164028 0.226559 +-0.0472323 -0.0145681 0.226559 +-0.0618384 -0.0118239 0.226559 +-0.0669632 -0.00858927 0.226559 +-0.0447609 0.00462702 0.259996 +-0.0317366 0.00710848 0.259996 +0.086578 0.00169565 0.259996 +0.0662657 -0.00123563 0.259996 +0.0532415 -0.00372227 0.259996 +0.0337482 -0.00538504 0.259996 +0.0107524 -0.00596629 0.259996 +-0.0122434 -0.00538504 0.259996 +-0.0317366 -0.00372227 0.259996 +-0.0447609 -0.00123563 0.259996 +-0.0493348 0.00169565 0.259996 +-0.0235947 0.0167162 0.289001 +-0.0126426 0.0188288 0.289001 +0.00374246 0.0202388 0.289001 +0.023074 0.020734 0.289001 +0.0893223 0.0142296 0.289001 +0.0697429 0.0117431 0.289001 +0.0587908 0.00963044 0.289001 +0.0424057 0.0082204 0.289001 +0.023074 0.00772504 0.289001 +0.00374246 0.0082204 0.289001 +-0.0126426 0.00963044 0.289001 +-0.0235947 0.0117431 0.289001 +-0.0274357 0.0142296 0.289001 +-0.00131156 0.0304834 0.31186 +0.00819512 0.0322371 0.31186 +0.0224171 0.0334045 0.31186 +0.0391914 0.0338139 0.31186 +0.0559707 0.0334045 0.31186 +0.0701926 0.0322371 0.31186 +0.0796944 0.0304834 0.31186 +0.0987684 0.0284213 0.31186 +0.0796944 0.0263542 0.31186 +0.0701926 0.0246055 0.31186 +0.0559707 0.023433 0.31186 +0.0391914 0.0230235 0.31186 +0.0224171 0.023433 0.31186 +0.00819512 0.0246055 0.31186 +-0.00131156 0.0263542 0.31186 +-0.00464714 0.0284213 0.31186 +0.0266019 0.0436793 0.328347 +0.0339453 0.044963 0.328347 +0.0449327 0.0458172 0.328347 +0.0579013 0.0461153 0.328347 +0.0708648 0.0458172 0.328347 +0.0818572 0.044963 0.328347 +0.0892008 0.0436793 0.328347 +0.107512 0.0421681 0.328347 +0.0892008 0.0406569 0.328347 +0.0818572 0.0393784 0.328347 +0.0708648 0.0385242 0.328347 +0.0579013 0.038221 0.328347 +0.0449327 0.0385242 0.328347 +0.0339453 0.0393784 0.328347 +0.0266019 0.0406569 0.328347 +0.0240192 0.0421681 0.328347 +0.053191 0.0512048 0.336276 +0.0572291 0.0519174 0.336276 +0.0632687 0.0523975 0.336276 +0.0703948 0.0525643 0.336276 +0.0775208 0.0523975 0.336276 +0.0835602 0.0519174 0.336276 +0.0875934 0.0512048 0.336276 +0.103509 0.0503608 0.336276 +0.0875934 0.0495168 0.336276 +0.0835602 0.0488041 0.336276 +0.0775208 0.048324 0.336276 +0.0703948 0.0481572 0.336276 +0.0632687 0.048324 0.336276 +0.0572291 0.0488041 0.336276 +0.0830346 0.0549751 0.339607 +0.053191 0.0495168 0.336276 +0.0517708 0.0503608 0.336276 +-0.0448316 -0.0150079 0.0989754 +-0.0417133 -0.0115155 0.149247 +-0.0339048 -0.00607239 0.192212 +-0.00547607 -0.0053395 0.192212 +-0.0253737 -0.000770777 0.226559 +0.000406861 -0.000128865 0.226559 +0.0261873 -0.000770777 0.226559 +-0.0122434 0.00877126 0.259996 +0.0107524 0.00935251 0.259996 +0.0337482 0.00877126 0.259996 +0.0532415 0.00710848 0.259996 +0.0662657 0.00462693 0.259996 +0.023074 0.0207341 0.289001 +0.0424057 0.0202388 0.289001 +0.0587908 0.0188288 0.289001 +0.0697429 0.0167162 0.289001 +0.0464185 -0.0175601 0.0989754 +0.0469897 -0.0213455 0.0444829 +0.0480004 -0.0246155 -0.013709 +0.0487333 -0.0268192 -0.0750395 +numsurf 464 +SURF 0x30 +mat 1 +refs 3 +203 0.0705152 0.732481 +221 0.0610094 0.698833 +204 0.0705152 0.735934 +SURF 0x30 +mat 1 +refs 3 +221 0.0610094 0.698833 +203 0.0705152 0.732481 +220 0.0610094 0.696935 +SURF 0x30 +mat 1 +refs 3 +202 0.0705152 0.722664 +220 0.0610094 0.696935 +203 0.0705152 0.732481 +SURF 0x30 +mat 1 +refs 3 +220 0.0610094 0.696935 +202 0.0705152 0.722664 +218 0.0610094 0.691536 +SURF 0x30 +mat 1 +refs 3 +201 0.0705152 0.707975 +218 0.0610094 0.691536 +202 0.0705152 0.722664 +SURF 0x30 +mat 1 +refs 3 +218 0.0610094 0.691536 +201 0.0705152 0.707975 +217 0.0610094 0.683462 +SURF 0x30 +mat 1 +refs 3 +200 0.0705152 0.690637 +217 0.0610094 0.683462 +201 0.0705152 0.707975 +SURF 0x30 +mat 1 +refs 3 +217 0.0610094 0.683462 +200 0.0705152 0.690637 +216 0.0610094 0.673935 +SURF 0x30 +mat 1 +refs 3 +199 0.0705152 0.673307 +216 0.0610094 0.673935 +200 0.0705152 0.690637 +SURF 0x30 +mat 1 +refs 3 +216 0.0610094 0.673935 +199 0.0705152 0.673307 +215 0.0610094 0.664408 +SURF 0x30 +mat 1 +refs 3 +198 0.0705152 0.658611 +215 0.0610094 0.664408 +199 0.0705152 0.673307 +SURF 0x30 +mat 1 +refs 3 +215 0.0610094 0.664408 +198 0.0705152 0.658611 +214 0.0610094 0.656334 +SURF 0x30 +mat 1 +refs 3 +197 0.0705152 0.648793 +214 0.0610094 0.656334 +198 0.0705152 0.658611 +SURF 0x30 +mat 1 +refs 3 +214 0.0610094 0.656334 +197 0.0705152 0.648793 +213 0.0610094 0.650942 +SURF 0x30 +mat 1 +refs 3 +197 0.0705152 0.648793 +212 0.0610094 0.629665 +213 0.0610094 0.650942 +SURF 0x30 +mat 1 +refs 3 +212 0.0610094 0.629665 +197 0.0705152 0.648793 +196 0.0705152 0.624314 +SURF 0x30 +mat 1 +refs 3 +211 0.0610094 0.650942 +196 0.0705152 0.624314 +195 0.0705152 0.648793 +SURF 0x30 +mat 1 +refs 3 +196 0.0705152 0.624314 +211 0.0610094 0.650942 +212 0.0610094 0.629665 +SURF 0x30 +mat 1 +refs 3 +210 0.0610094 0.656334 +195 0.0705152 0.648793 +194 0.0705152 0.658611 +SURF 0x30 +mat 1 +refs 3 +195 0.0705152 0.648793 +210 0.0610094 0.656334 +211 0.0610094 0.650942 +SURF 0x30 +mat 1 +refs 3 +209 0.0610094 0.664408 +194 0.0705152 0.658611 +193 0.0705152 0.673307 +SURF 0x30 +mat 1 +refs 3 +194 0.0705152 0.658611 +209 0.0610094 0.664408 +210 0.0610094 0.656334 +SURF 0x30 +mat 1 +refs 3 +208 0.0610094 0.673935 +193 0.0705152 0.673307 +192 0.0705152 0.690637 +SURF 0x30 +mat 1 +refs 3 +193 0.0705152 0.673307 +208 0.0610094 0.673935 +209 0.0610094 0.664408 +SURF 0x30 +mat 1 +refs 3 +207 0.0610094 0.683462 +192 0.0705152 0.690637 +191 0.0705152 0.707975 +SURF 0x30 +mat 1 +refs 3 +192 0.0705152 0.690637 +207 0.0610094 0.683462 +208 0.0610094 0.673935 +SURF 0x30 +mat 1 +refs 3 +206 0.0610094 0.691536 +191 0.0705152 0.707975 +190 0.0705152 0.722664 +SURF 0x30 +mat 1 +refs 3 +191 0.0705152 0.707975 +206 0.0610094 0.691536 +207 0.0610094 0.683462 +SURF 0x30 +mat 1 +refs 3 +205 0.0610094 0.696935 +190 0.0705152 0.722664 +189 0.0705152 0.732481 +SURF 0x30 +mat 1 +refs 3 +190 0.0705152 0.722664 +205 0.0610094 0.696935 +206 0.0610094 0.691536 +SURF 0x30 +mat 1 +refs 3 +221 0.0610094 0.698833 +189 0.0705152 0.732481 +204 0.0705152 0.735934 +SURF 0x30 +mat 1 +refs 3 +189 0.0705152 0.732481 +221 0.0610094 0.698833 +205 0.0610094 0.696935 +SURF 0x30 +mat 1 +refs 3 +187 0.0902785 0.769799 +204 0.0705152 0.735934 +188 0.0902785 0.774258 +SURF 0x30 +mat 1 +refs 3 +204 0.0705152 0.735934 +187 0.0902785 0.769799 +203 0.0705152 0.732481 +SURF 0x30 +mat 1 +refs 3 +186 0.0902785 0.757089 +203 0.0705152 0.732481 +187 0.0902785 0.769799 +SURF 0x30 +mat 1 +refs 3 +203 0.0705152 0.732481 +186 0.0902785 0.757089 +202 0.0705152 0.722664 +SURF 0x30 +mat 1 +refs 3 +185 0.0902785 0.738076 +202 0.0705152 0.722664 +186 0.0902785 0.757089 +SURF 0x30 +mat 1 +refs 3 +202 0.0705152 0.722664 +185 0.0902785 0.738076 +201 0.0705152 0.707975 +SURF 0x30 +mat 1 +refs 3 +200 0.0705152 0.690637 +185 0.0902785 0.738076 +184 0.0902785 0.715651 +SURF 0x30 +mat 1 +refs 3 +185 0.0902785 0.738076 +200 0.0705152 0.690637 +201 0.0705152 0.707975 +SURF 0x30 +mat 1 +refs 3 +199 0.0705152 0.673307 +184 0.0902785 0.715651 +183 0.0902785 0.693218 +SURF 0x30 +mat 1 +refs 3 +184 0.0902785 0.715651 +199 0.0705152 0.673307 +200 0.0705152 0.690637 +SURF 0x30 +mat 1 +refs 3 +198 0.0705152 0.658611 +183 0.0902785 0.693218 +182 0.0902785 0.674205 +SURF 0x30 +mat 1 +refs 3 +183 0.0902785 0.693218 +198 0.0705152 0.658611 +199 0.0705152 0.673307 +SURF 0x30 +mat 1 +refs 3 +197 0.0705152 0.648793 +182 0.0902785 0.674205 +181 0.0902785 0.661503 +SURF 0x30 +mat 1 +refs 3 +182 0.0902785 0.674205 +197 0.0705152 0.648793 +198 0.0705152 0.658611 +SURF 0x30 +mat 1 +refs 3 +196 0.0705152 0.624314 +181 0.0902785 0.661503 +180 0.0902785 0.636003 +SURF 0x30 +mat 1 +refs 3 +181 0.0902785 0.661503 +196 0.0705152 0.624314 +197 0.0705152 0.648793 +SURF 0x30 +mat 1 +refs 3 +195 0.0705152 0.648793 +180 0.0902785 0.636003 +179 0.0902785 0.661503 +SURF 0x30 +mat 1 +refs 3 +180 0.0902785 0.636003 +195 0.0705152 0.648793 +196 0.0705152 0.624314 +SURF 0x30 +mat 1 +refs 3 +194 0.0705152 0.658611 +179 0.0902785 0.661503 +178 0.0902785 0.674205 +SURF 0x30 +mat 1 +refs 3 +179 0.0902785 0.661503 +194 0.0705152 0.658611 +195 0.0705152 0.648793 +SURF 0x30 +mat 1 +refs 3 +193 0.0705152 0.673307 +178 0.0902785 0.674205 +177 0.0902785 0.693218 +SURF 0x30 +mat 1 +refs 3 +178 0.0902785 0.674205 +193 0.0705152 0.673307 +194 0.0705152 0.658611 +SURF 0x30 +mat 1 +refs 3 +192 0.0705152 0.690637 +177 0.0902785 0.693218 +176 0.0902785 0.715651 +SURF 0x30 +mat 1 +refs 3 +177 0.0902785 0.693218 +192 0.0705152 0.690637 +193 0.0705152 0.673307 +SURF 0x30 +mat 1 +refs 3 +191 0.0705152 0.707975 +176 0.0902785 0.715651 +175 0.0902785 0.738076 +SURF 0x30 +mat 1 +refs 3 +176 0.0902785 0.715651 +191 0.0705152 0.707975 +192 0.0705152 0.690637 +SURF 0x30 +mat 1 +refs 3 +190 0.0705152 0.722664 +175 0.0902785 0.738076 +174 0.0902785 0.757089 +SURF 0x30 +mat 1 +refs 3 +175 0.0902785 0.738076 +190 0.0705152 0.722664 +191 0.0705152 0.707975 +SURF 0x30 +mat 1 +refs 3 +189 0.0705152 0.732481 +174 0.0902785 0.757089 +173 0.0902785 0.769799 +SURF 0x30 +mat 1 +refs 3 +174 0.0902785 0.757089 +189 0.0705152 0.732481 +190 0.0705152 0.722664 +SURF 0x30 +mat 1 +refs 3 +204 0.0705152 0.735934 +173 0.0902785 0.769799 +188 0.0902785 0.774258 +SURF 0x30 +mat 1 +refs 3 +173 0.0902785 0.769799 +204 0.0705152 0.735934 +189 0.0705152 0.732481 +SURF 0x30 +mat 1 +refs 3 +171 0.117681 0.799589 +188 0.0902785 0.774258 +172 0.117681 0.804724 +SURF 0x30 +mat 1 +refs 3 +188 0.0902785 0.774258 +171 0.117681 0.799589 +187 0.0902785 0.769799 +SURF 0x30 +mat 1 +refs 3 +186 0.0902785 0.757089 +171 0.117681 0.799589 +170 0.117681 0.784947 +SURF 0x30 +mat 1 +refs 3 +171 0.117681 0.799589 +186 0.0902785 0.757089 +187 0.0902785 0.769799 +SURF 0x30 +mat 1 +refs 3 +185 0.0902785 0.738076 +170 0.117681 0.784947 +169 0.117681 0.763042 +SURF 0x30 +mat 1 +refs 3 +170 0.117681 0.784947 +185 0.0902785 0.738076 +186 0.0902785 0.757089 +SURF 0x30 +mat 1 +refs 3 +184 0.0902785 0.715651 +169 0.117681 0.763042 +168 0.117681 0.737198 +SURF 0x30 +mat 1 +refs 3 +169 0.117681 0.763042 +184 0.0902785 0.715651 +185 0.0902785 0.738076 +SURF 0x30 +mat 1 +refs 3 +183 0.0902785 0.693218 +168 0.117681 0.737198 +167 0.117681 0.711353 +SURF 0x30 +mat 1 +refs 3 +168 0.117681 0.737198 +183 0.0902785 0.693218 +184 0.0902785 0.715651 +SURF 0x30 +mat 1 +refs 3 +182 0.0902785 0.674205 +167 0.117681 0.711353 +166 0.117681 0.689448 +SURF 0x30 +mat 1 +refs 3 +167 0.117681 0.711353 +182 0.0902785 0.674205 +183 0.0902785 0.693218 +SURF 0x30 +mat 1 +refs 3 +181 0.0902785 0.661503 +166 0.117681 0.689448 +165 0.117681 0.674807 +SURF 0x30 +mat 1 +refs 3 +166 0.117681 0.689448 +181 0.0902785 0.661503 +182 0.0902785 0.674205 +SURF 0x30 +mat 1 +refs 3 +180 0.0902785 0.636003 +165 0.117681 0.674807 +164 0.117681 0.648631 +SURF 0x30 +mat 1 +refs 3 +165 0.117681 0.674807 +180 0.0902785 0.636003 +181 0.0902785 0.661503 +SURF 0x30 +mat 1 +refs 3 +175 0.0902785 0.738076 +163 0.117681 0.737198 +162 0.117681 0.763042 +SURF 0x30 +mat 1 +refs 3 +163 0.117681 0.737198 +175 0.0902785 0.738076 +176 0.0902785 0.715651 +SURF 0x30 +mat 1 +refs 3 +174 0.0902785 0.757089 +162 0.117681 0.763042 +161 0.117681 0.784947 +SURF 0x30 +mat 1 +refs 3 +162 0.117681 0.763042 +174 0.0902785 0.757089 +175 0.0902785 0.738076 +SURF 0x30 +mat 1 +refs 3 +173 0.0902785 0.769799 +161 0.117681 0.784947 +160 0.117681 0.799589 +SURF 0x30 +mat 1 +refs 3 +161 0.117681 0.784947 +173 0.0902785 0.769799 +174 0.0902785 0.757089 +SURF 0x30 +mat 1 +refs 3 +188 0.0902785 0.774258 +160 0.117681 0.799589 +172 0.117681 0.804724 +SURF 0x30 +mat 1 +refs 3 +160 0.117681 0.799589 +188 0.0902785 0.774258 +173 0.0902785 0.769799 +SURF 0x30 +mat 1 +refs 3 +171 0.117681 0.799589 +159 0.152452 0.834 +158 0.152452 0.827885 +SURF 0x30 +mat 1 +refs 3 +159 0.152452 0.834 +171 0.117681 0.799589 +172 0.117681 0.804724 +SURF 0x30 +mat 1 +refs 3 +170 0.117681 0.784947 +158 0.152452 0.827885 +157 0.152452 0.810474 +SURF 0x30 +mat 1 +refs 3 +158 0.152452 0.827885 +170 0.117681 0.784947 +171 0.117681 0.799589 +SURF 0x30 +mat 1 +refs 3 +169 0.0343099 0.623193 +157 0.0690803 0.670625 +156 0.0690803 0.644564 +SURF 0x30 +mat 1 +refs 3 +157 0.0690803 0.670625 +169 0.0343099 0.623193 +170 0.0343099 0.645098 +SURF 0x30 +mat 1 +refs 3 +168 0.0343099 0.597349 +156 0.0690803 0.644564 +155 0.0690803 0.613821 +SURF 0x30 +mat 1 +refs 3 +156 0.0690803 0.644564 +168 0.0343099 0.597349 +169 0.0343099 0.623193 +SURF 0x30 +mat 1 +refs 3 +167 0.0343099 0.571505 +155 0.0690803 0.613821 +154 0.0690803 0.583079 +SURF 0x30 +mat 1 +refs 3 +155 0.0690803 0.613821 +167 0.0343099 0.571505 +168 0.0343099 0.597349 +SURF 0x30 +mat 1 +refs 3 +166 0.117681 0.689448 +154 0.152452 0.722928 +153 0.152452 0.696867 +SURF 0x30 +mat 1 +refs 3 +154 0.152452 0.722928 +166 0.117681 0.689448 +167 0.117681 0.711353 +SURF 0x30 +mat 1 +refs 3 +165 0.117681 0.674807 +153 0.152452 0.696867 +152 0.152452 0.679455 +SURF 0x30 +mat 1 +refs 3 +153 0.152452 0.696867 +165 0.117681 0.674807 +166 0.117681 0.689448 +SURF 0x30 +mat 1 +refs 3 +164 0.117681 0.648631 +152 0.152452 0.679455 +151 0.152452 0.6523 +SURF 0x30 +mat 1 +refs 3 +152 0.152452 0.679455 +164 0.117681 0.648631 +165 0.117681 0.674807 +SURF 0x30 +mat 1 +refs 3 +160 0.117681 0.799589 +150 0.152452 0.810474 +149 0.152452 0.827885 +SURF 0x30 +mat 1 +refs 3 +150 0.152452 0.810474 +160 0.117681 0.799589 +161 0.117681 0.784947 +SURF 0x30 +mat 1 +refs 3 +172 0.117681 0.804724 +149 0.152452 0.827885 +159 0.152452 0.834 +SURF 0x30 +mat 1 +refs 3 +149 0.152452 0.827885 +172 0.117681 0.804724 +160 0.117681 0.799589 +SURF 0x30 +mat 1 +refs 3 +158 0.152452 0.827885 +148 0.192535 0.857567 +147 0.192535 0.850716 +SURF 0x30 +mat 1 +refs 3 +148 0.192535 0.857567 +158 0.152452 0.827885 +159 0.152452 0.834 +SURF 0x30 +mat 1 +refs 3 +157 0.152452 0.810474 +147 0.192535 0.850716 +146 0.192535 0.831189 +SURF 0x30 +mat 1 +refs 3 +147 0.192535 0.850716 +157 0.152452 0.810474 +158 0.152452 0.827885 +SURF 0x30 +mat 1 +refs 3 +156 0.0690803 0.644564 +146 0.109164 0.691341 +145 0.109164 0.662118 +SURF 0x30 +mat 1 +refs 3 +146 0.109164 0.691341 +156 0.0690803 0.644564 +157 0.0690803 0.670625 +SURF 0x30 +mat 1 +refs 3 +155 0.0690803 0.613821 +145 0.109164 0.662118 +144 0.109164 0.627652 +SURF 0x30 +mat 1 +refs 3 +145 0.109164 0.662118 +155 0.0690803 0.613821 +156 0.0690803 0.644564 +SURF 0x30 +mat 1 +refs 3 +154 0.0690803 0.583079 +144 0.109164 0.627652 +143 0.109164 0.593187 +SURF 0x30 +mat 1 +refs 3 +144 0.109164 0.627652 +154 0.0690803 0.583079 +155 0.0690803 0.613821 +SURF 0x30 +mat 1 +refs 3 +153 0.152452 0.696867 +143 0.192535 0.733035 +142 0.192535 0.701813 +SURF 0x30 +mat 1 +refs 3 +143 0.192535 0.733035 +153 0.152452 0.696867 +154 0.152452 0.722928 +SURF 0x30 +mat 1 +refs 3 +152 0.152452 0.679455 +142 0.192535 0.701813 +141 0.192535 0.682286 +SURF 0x30 +mat 1 +refs 3 +142 0.192535 0.701813 +152 0.152452 0.679455 +153 0.152452 0.696867 +SURF 0x30 +mat 1 +refs 3 +151 0.152452 0.6523 +141 0.192535 0.682286 +140 0.192535 0.654395 +SURF 0x30 +mat 1 +refs 3 +141 0.192535 0.682286 +151 0.152452 0.6523 +152 0.152452 0.679455 +SURF 0x30 +mat 1 +refs 3 +149 0.152452 0.827885 +139 0.192535 0.831189 +138 0.192535 0.850716 +SURF 0x30 +mat 1 +refs 3 +139 0.192535 0.831189 +149 0.152452 0.827885 +150 0.152452 0.810474 +SURF 0x30 +mat 1 +refs 3 +159 0.152452 0.834 +138 0.192535 0.850716 +148 0.192535 0.857567 +SURF 0x30 +mat 1 +refs 3 +138 0.192535 0.850716 +159 0.152452 0.834 +149 0.152452 0.827885 +SURF 0x30 +mat 1 +refs 3 +147 0.192535 0.850716 +137 0.23371 0.874682 +136 0.23371 0.867121 +SURF 0x30 +mat 1 +refs 3 +137 0.23371 0.874682 +147 0.192535 0.850716 +148 0.192535 0.857567 +SURF 0x30 +mat 1 +refs 3 +146 0.192535 0.831189 +136 0.23371 0.867121 +135 0.23371 0.845595 +SURF 0x30 +mat 1 +refs 3 +136 0.23371 0.867121 +146 0.192535 0.831189 +147 0.192535 0.850716 +SURF 0x30 +mat 1 +refs 3 +145 0.109164 0.662118 +135 0.150338 0.705746 +134 0.150338 0.673523 +SURF 0x30 +mat 1 +refs 3 +135 0.150338 0.705746 +145 0.109164 0.662118 +146 0.109164 0.691341 +SURF 0x30 +mat 1 +refs 3 +144 0.109164 0.627652 +134 0.150338 0.673523 +133 0.150338 0.635517 +SURF 0x30 +mat 1 +refs 3 +134 0.150338 0.673523 +144 0.109164 0.627652 +145 0.109164 0.662118 +SURF 0x30 +mat 1 +refs 3 +143 0.109164 0.593187 +133 0.150338 0.635517 +132 0.150338 0.597504 +SURF 0x30 +mat 1 +refs 3 +133 0.150338 0.635517 +143 0.109164 0.593187 +144 0.109164 0.627652 +SURF 0x30 +mat 1 +refs 3 +142 0.192535 0.701813 +132 0.23371 0.737353 +131 0.23371 0.70513 +SURF 0x30 +mat 1 +refs 3 +132 0.23371 0.737353 +142 0.192535 0.701813 +143 0.192535 0.733035 +SURF 0x30 +mat 1 +refs 3 +141 0.192535 0.682286 +131 0.23371 0.70513 +130 0.23371 0.683604 +SURF 0x30 +mat 1 +refs 3 +131 0.23371 0.70513 +141 0.192535 0.682286 +142 0.192535 0.701813 +SURF 0x30 +mat 1 +refs 3 +140 0.192535 0.654395 +130 0.23371 0.683604 +129 0.23371 0.655009 +SURF 0x30 +mat 1 +refs 3 +130 0.23371 0.683604 +140 0.192535 0.654395 +141 0.192535 0.682286 +SURF 0x30 +mat 1 +refs 3 +127 0.192535 0.682286 +129 0.23371 0.655009 +128 0.23371 0.683604 +SURF 0x30 +mat 1 +refs 3 +129 0.23371 0.655009 +127 0.192535 0.682286 +140 0.192535 0.654395 +SURF 0x30 +mat 1 +refs 3 +125 0.192535 0.701813 +128 0.23371 0.683604 +126 0.23371 0.70513 +SURF 0x30 +mat 1 +refs 3 +128 0.23371 0.683604 +125 0.192535 0.701813 +127 0.192535 0.682286 +SURF 0x30 +mat 1 +refs 3 +138 0.192535 0.850716 +124 0.23371 0.845595 +123 0.23371 0.867121 +SURF 0x30 +mat 1 +refs 3 +124 0.23371 0.845595 +138 0.192535 0.850716 +139 0.192535 0.831189 +SURF 0x30 +mat 1 +refs 3 +148 0.192535 0.857567 +123 0.23371 0.867121 +137 0.23371 0.874682 +SURF 0x30 +mat 1 +refs 3 +123 0.23371 0.867121 +148 0.192535 0.857567 +138 0.192535 0.850716 +SURF 0x30 +mat 1 +refs 3 +136 0.23371 0.867121 +122 0.285214 0.890134 +121 0.285214 0.881959 +SURF 0x30 +mat 1 +refs 3 +122 0.285214 0.890134 +136 0.23371 0.867121 +137 0.23371 0.874682 +SURF 0x30 +mat 1 +refs 3 +135 0.23371 0.845595 +121 0.285214 0.881959 +120 0.285214 0.858669 +SURF 0x30 +mat 1 +refs 3 +121 0.285214 0.881959 +135 0.23371 0.845595 +136 0.23371 0.867121 +SURF 0x30 +mat 1 +refs 3 +134 0.150338 0.673523 +120 0.201842 0.71882 +119 0.201842 0.683962 +SURF 0x30 +mat 1 +refs 3 +120 0.201842 0.71882 +134 0.150338 0.673523 +135 0.150338 0.705746 +SURF 0x30 +mat 1 +refs 3 +133 0.150338 0.635517 +119 0.201842 0.683962 +118 0.201842 0.642848 +SURF 0x30 +mat 1 +refs 3 +119 0.201842 0.683962 +133 0.150338 0.635517 +134 0.150338 0.673523 +SURF 0x30 +mat 1 +refs 3 +132 0.150338 0.597504 +118 0.201842 0.642848 +117 0.201842 0.601734 +SURF 0x30 +mat 1 +refs 3 +118 0.201842 0.642848 +132 0.150338 0.597504 +133 0.150338 0.635517 +SURF 0x30 +mat 1 +refs 3 +131 0.23371 0.70513 +117 0.285214 0.741583 +116 0.285214 0.706725 +SURF 0x30 +mat 1 +refs 3 +117 0.285214 0.741583 +131 0.23371 0.70513 +132 0.23371 0.737353 +SURF 0x30 +mat 1 +refs 3 +130 0.23371 0.683604 +116 0.285214 0.706725 +115 0.285214 0.683435 +SURF 0x30 +mat 1 +refs 3 +116 0.285214 0.706725 +130 0.23371 0.683604 +131 0.23371 0.70513 +SURF 0x30 +mat 1 +refs 3 +129 0.23371 0.655009 +115 0.285214 0.683435 +114 0.285214 0.654226 +SURF 0x30 +mat 1 +refs 3 +115 0.285214 0.683435 +129 0.23371 0.655009 +130 0.23371 0.683604 +SURF 0x30 +mat 1 +refs 3 +128 0.23371 0.683604 +114 0.285214 0.654226 +113 0.285214 0.683435 +SURF 0x30 +mat 1 +refs 3 +114 0.285214 0.654226 +128 0.23371 0.683604 +129 0.23371 0.655009 +SURF 0x30 +mat 1 +refs 3 +126 0.23371 0.70513 +113 0.285214 0.683435 +112 0.285214 0.706725 +SURF 0x30 +mat 1 +refs 3 +113 0.285214 0.683435 +126 0.23371 0.70513 +128 0.23371 0.683604 +SURF 0x30 +mat 1 +refs 3 +110 0.23371 0.737353 +112 0.285214 0.706725 +111 0.285214 0.741583 +SURF 0x30 +mat 1 +refs 3 +112 0.285214 0.706725 +110 0.23371 0.737353 +126 0.23371 0.70513 +SURF 0x30 +mat 1 +refs 3 +123 0.23371 0.867121 +109 0.285214 0.858669 +108 0.285214 0.881959 +SURF 0x30 +mat 1 +refs 3 +109 0.285214 0.858669 +123 0.23371 0.867121 +124 0.23371 0.845595 +SURF 0x30 +mat 1 +refs 3 +137 0.23371 0.874682 +108 0.285214 0.881959 +122 0.285214 0.890134 +SURF 0x30 +mat 1 +refs 3 +108 0.285214 0.881959 +137 0.23371 0.874682 +123 0.23371 0.867121 +SURF 0x30 +mat 1 +refs 3 +121 0.285214 0.881959 +107 0.345479 0.897648 +106 0.345479 0.88906 +SURF 0x30 +mat 1 +refs 3 +107 0.345479 0.897648 +121 0.285214 0.881959 +122 0.285214 0.890134 +SURF 0x30 +mat 1 +refs 3 +120 0.285214 0.858669 +106 0.345479 0.88906 +105 0.345479 0.864594 +SURF 0x30 +mat 1 +refs 3 +106 0.345479 0.88906 +120 0.285214 0.858669 +121 0.285214 0.881959 +SURF 0x30 +mat 1 +refs 3 +119 0.201842 0.683962 +105 0.262107 0.724745 +104 0.262107 0.688131 +SURF 0x30 +mat 1 +refs 3 +105 0.262107 0.724745 +119 0.201842 0.683962 +120 0.201842 0.71882 +SURF 0x30 +mat 1 +refs 3 +118 0.201842 0.642848 +104 0.262107 0.688131 +103 0.262107 0.644942 +SURF 0x30 +mat 1 +refs 3 +104 0.262107 0.688131 +118 0.201842 0.642848 +119 0.201842 0.683962 +SURF 0x30 +mat 1 +refs 3 +117 0.201842 0.601734 +103 0.262107 0.644942 +102 0.262107 0.602754 +SURF 0x30 +mat 1 +refs 3 +103 0.262107 0.644942 +117 0.201842 0.601734 +118 0.201842 0.642848 +SURF 0x30 +mat 1 +refs 3 +116 0.285214 0.706725 +102 0.345479 0.742603 +101 0.345479 0.705989 +SURF 0x30 +mat 1 +refs 3 +102 0.345479 0.742603 +116 0.285214 0.706725 +117 0.285214 0.741583 +SURF 0x30 +mat 1 +refs 3 +115 0.285214 0.683435 +101 0.345479 0.705989 +100 0.345479 0.681529 +SURF 0x30 +mat 1 +refs 3 +101 0.345479 0.705989 +115 0.285214 0.683435 +116 0.285214 0.706725 +SURF 0x30 +mat 1 +refs 3 +114 0.285214 0.654226 +100 0.345479 0.681529 +99 0.345479 0.651901 +SURF 0x30 +mat 1 +refs 3 +100 0.345479 0.681529 +114 0.285214 0.654226 +115 0.285214 0.683435 +SURF 0x30 +mat 1 +refs 3 +113 0.285214 0.683435 +99 0.345479 0.651901 +98 0.345479 0.681529 +SURF 0x30 +mat 1 +refs 3 +99 0.345479 0.651901 +113 0.285214 0.683435 +114 0.285214 0.654226 +SURF 0x30 +mat 1 +refs 3 +95 0.285214 0.782697 +97 0.345479 0.742603 +96 0.345479 0.784791 +SURF 0x30 +mat 1 +refs 3 +97 0.345479 0.742603 +95 0.285214 0.782697 +111 0.285214 0.741583 +SURF 0x30 +mat 1 +refs 3 +108 0.285214 0.881959 +94 0.345479 0.864594 +93 0.345479 0.88906 +SURF 0x30 +mat 1 +refs 3 +94 0.345479 0.864594 +108 0.285214 0.881959 +109 0.285214 0.858669 +SURF 0x30 +mat 1 +refs 3 +122 0.285214 0.890134 +93 0.345479 0.88906 +107 0.345479 0.897648 +SURF 0x30 +mat 1 +refs 3 +93 0.345479 0.88906 +122 0.285214 0.890134 +108 0.285214 0.881959 +SURF 0x30 +mat 1 +refs 3 +106 0.345479 0.88906 +92 0.410802 0.902378 +91 0.410802 0.893587 +SURF 0x30 +mat 1 +refs 3 +92 0.410802 0.902378 +106 0.345479 0.88906 +107 0.345479 0.897648 +SURF 0x30 +mat 1 +refs 3 +105 0.345479 0.864594 +91 0.410802 0.893587 +90 0.410802 0.868554 +SURF 0x30 +mat 1 +refs 3 +91 0.410802 0.893587 +105 0.345479 0.864594 +106 0.345479 0.88906 +SURF 0x30 +mat 1 +refs 3 +104 0.262107 0.688131 +90 0.327431 0.728705 +89 0.327431 0.691232 +SURF 0x30 +mat 1 +refs 3 +90 0.327431 0.728705 +104 0.262107 0.688131 +105 0.262107 0.724745 +SURF 0x30 +mat 1 +refs 3 +103 0.262107 0.644942 +89 0.327431 0.691232 +88 0.327431 0.647044 +SURF 0x30 +mat 1 +refs 3 +89 0.327431 0.691232 +103 0.262107 0.644942 +104 0.262107 0.688131 +SURF 0x30 +mat 1 +refs 3 +102 0.262107 0.602754 +88 0.327431 0.647044 +87 0.327431 0.602842 +SURF 0x30 +mat 1 +refs 3 +88 0.327431 0.647044 +102 0.262107 0.602754 +103 0.262107 0.644942 +SURF 0x30 +mat 1 +refs 3 +101 0.345479 0.705989 +87 0.410802 0.742691 +86 0.410802 0.705225 +SURF 0x30 +mat 1 +refs 3 +87 0.410802 0.742691 +101 0.345479 0.705989 +102 0.345479 0.742603 +SURF 0x30 +mat 1 +refs 3 +100 0.345479 0.681529 +86 0.410802 0.705225 +85 0.410802 0.680192 +SURF 0x30 +mat 1 +refs 3 +86 0.410802 0.705225 +100 0.345479 0.681529 +101 0.345479 0.705989 +SURF 0x30 +mat 1 +refs 3 +99 0.345479 0.651901 +85 0.410802 0.680192 +84 0.410802 0.650368 +SURF 0x30 +mat 1 +refs 3 +85 0.410802 0.680192 +99 0.345479 0.651901 +100 0.345479 0.681529 +SURF 0x30 +mat 1 +refs 3 +98 0.345479 0.681529 +84 0.410802 0.650368 +83 0.410802 0.680192 +SURF 0x30 +mat 1 +refs 3 +84 0.410802 0.650368 +98 0.345479 0.681529 +99 0.345479 0.651901 +SURF 0x30 +mat 1 +refs 3 +96 0.345479 0.784791 +82 0.410802 0.742691 +81 0.410802 0.786893 +SURF 0x30 +mat 1 +refs 3 +82 0.410802 0.742691 +96 0.345479 0.784791 +97 0.345479 0.742603 +SURF 0x30 +mat 1 +refs 3 +93 0.345479 0.88906 +80 0.410802 0.868554 +79 0.410802 0.893587 +SURF 0x30 +mat 1 +refs 3 +80 0.410802 0.868554 +93 0.345479 0.88906 +94 0.345479 0.864594 +SURF 0x30 +mat 1 +refs 3 +107 0.345479 0.897648 +79 0.410802 0.893587 +92 0.410802 0.902378 +SURF 0x30 +mat 1 +refs 3 +79 0.410802 0.893587 +107 0.345479 0.897648 +93 0.345479 0.88906 +SURF 0x30 +mat 1 +refs 3 +91 0.410802 0.893587 +78 0.480561 0.906817 +77 0.480561 0.89777 +SURF 0x30 +mat 1 +refs 3 +78 0.480561 0.906817 +91 0.410802 0.893587 +92 0.410802 0.902378 +SURF 0x30 +mat 1 +refs 3 +90 0.410802 0.868554 +77 0.480561 0.89777 +76 0.480561 0.872 +SURF 0x30 +mat 1 +refs 3 +77 0.480561 0.89777 +90 0.410802 0.868554 +91 0.410802 0.893587 +SURF 0x30 +mat 1 +refs 3 +89 0.410802 0.831081 +76 0.480561 0.872 +75 0.480561 0.833433 +SURF 0x30 +mat 1 +refs 3 +76 0.480561 0.872 +89 0.410802 0.831081 +90 0.410802 0.868554 +SURF 0x30 +mat 1 +refs 3 +88 0.327431 0.647044 +75 0.39719 0.693584 +74 0.39719 0.648091 +SURF 0x30 +mat 1 +refs 3 +75 0.39719 0.693584 +88 0.327431 0.647044 +89 0.327431 0.691232 +SURF 0x30 +mat 1 +refs 3 +87 0.327431 0.602842 +74 0.39719 0.648091 +73 0.39719 0.602592 +SURF 0x30 +mat 1 +refs 3 +74 0.39719 0.648091 +87 0.327431 0.602842 +88 0.327431 0.647044 +SURF 0x30 +mat 1 +refs 3 +86 0.410802 0.705225 +73 0.480561 0.742441 +72 0.480561 0.703874 +SURF 0x30 +mat 1 +refs 3 +73 0.480561 0.742441 +86 0.410802 0.705225 +87 0.410802 0.742691 +SURF 0x30 +mat 1 +refs 3 +85 0.410802 0.680192 +72 0.480561 0.703874 +71 0.480561 0.678104 +SURF 0x30 +mat 1 +refs 3 +72 0.480561 0.703874 +85 0.410802 0.680192 +86 0.410802 0.705225 +SURF 0x30 +mat 1 +refs 3 +84 0.410802 0.650368 +71 0.480561 0.678104 +70 0.480561 0.648016 +SURF 0x30 +mat 1 +refs 3 +71 0.480561 0.678104 +84 0.410802 0.650368 +85 0.410802 0.680192 +SURF 0x30 +mat 1 +refs 3 +83 0.410802 0.680192 +70 0.480561 0.648016 +69 0.480561 0.678104 +SURF 0x30 +mat 1 +refs 3 +70 0.480561 0.648016 +83 0.410802 0.680192 +84 0.410802 0.650368 +SURF 0x30 +mat 1 +refs 3 +81 0.410802 0.786893 +68 0.480561 0.742441 +67 0.480561 0.78794 +SURF 0x30 +mat 1 +refs 3 +68 0.480561 0.742441 +81 0.410802 0.786893 +82 0.410802 0.742691 +SURF 0x30 +mat 1 +refs 3 +65 0.410802 0.831081 +67 0.480561 0.78794 +66 0.480561 0.833433 +SURF 0x30 +mat 1 +refs 3 +67 0.480561 0.78794 +65 0.410802 0.831081 +81 0.410802 0.786893 +SURF 0x30 +mat 1 +refs 3 +80 0.410802 0.868554 +66 0.480561 0.833433 +64 0.480561 0.872 +SURF 0x30 +mat 1 +refs 3 +66 0.480561 0.833433 +80 0.410802 0.868554 +65 0.410802 0.831081 +SURF 0x30 +mat 1 +refs 3 +79 0.410802 0.893587 +64 0.480561 0.872 +63 0.480561 0.89777 +SURF 0x30 +mat 1 +refs 3 +64 0.480561 0.872 +79 0.410802 0.893587 +80 0.410802 0.868554 +SURF 0x30 +mat 1 +refs 3 +92 0.410802 0.902378 +63 0.480561 0.89777 +78 0.480561 0.906817 +SURF 0x30 +mat 1 +refs 3 +63 0.480561 0.89777 +92 0.410802 0.902378 +79 0.410802 0.893587 +SURF 0x30 +mat 1 +refs 3 +77 0.480561 0.89777 +62 0.554082 0.908202 +61 0.554082 0.899047 +SURF 0x30 +mat 1 +refs 3 +62 0.554082 0.908202 +77 0.480561 0.89777 +78 0.480561 0.906817 +SURF 0x30 +mat 1 +refs 3 +76 0.480561 0.872 +61 0.554082 0.899047 +60 0.554082 0.872979 +SURF 0x30 +mat 1 +refs 3 +61 0.554082 0.899047 +76 0.480561 0.872 +77 0.480561 0.89777 +SURF 0x30 +mat 1 +refs 3 +75 0.480561 0.833433 +60 0.554082 0.872979 +59 0.554082 0.83396 +SURF 0x30 +mat 1 +refs 3 +60 0.554082 0.872979 +75 0.480561 0.833433 +76 0.480561 0.872 +SURF 0x30 +mat 1 +refs 3 +74 0.39719 0.648091 +59 0.470711 0.694111 +58 0.470711 0.648091 +SURF 0x30 +mat 1 +refs 3 +59 0.470711 0.694111 +74 0.39719 0.648091 +75 0.39719 0.693584 +SURF 0x30 +mat 1 +refs 3 +73 0.39719 0.602592 +58 0.470711 0.648091 +57 0.470711 0.602065 +SURF 0x30 +mat 1 +refs 3 +58 0.470711 0.648091 +73 0.39719 0.602592 +74 0.39719 0.648091 +SURF 0x30 +mat 1 +refs 3 +72 0.480561 0.703874 +57 0.554082 0.741914 +56 0.554082 0.702894 +SURF 0x30 +mat 1 +refs 3 +57 0.554082 0.741914 +72 0.480561 0.703874 +73 0.480561 0.742441 +SURF 0x30 +mat 1 +refs 3 +71 0.480561 0.678104 +56 0.554082 0.702894 +55 0.554082 0.676827 +SURF 0x30 +mat 1 +refs 3 +56 0.554082 0.702894 +71 0.480561 0.678104 +72 0.480561 0.703874 +SURF 0x30 +mat 1 +refs 3 +70 0.480561 0.648016 +55 0.554082 0.676827 +54 0.554082 0.646638 +SURF 0x30 +mat 1 +refs 3 +55 0.554082 0.676827 +70 0.480561 0.648016 +71 0.480561 0.678104 +SURF 0x30 +mat 1 +refs 3 +69 0.480561 0.678104 +54 0.554082 0.646638 +53 0.554082 0.676827 +SURF 0x30 +mat 1 +refs 3 +54 0.554082 0.646638 +69 0.480561 0.678104 +70 0.480561 0.648016 +SURF 0x30 +mat 1 +refs 3 +67 0.480561 0.78794 +52 0.554082 0.741914 +51 0.554082 0.78794 +SURF 0x30 +mat 1 +refs 3 +52 0.554082 0.741914 +67 0.480561 0.78794 +68 0.480561 0.742441 +SURF 0x30 +mat 1 +refs 3 +66 0.480561 0.833433 +51 0.554082 0.78794 +50 0.554082 0.83396 +SURF 0x30 +mat 1 +refs 3 +51 0.554082 0.78794 +66 0.480561 0.833433 +67 0.480561 0.78794 +SURF 0x30 +mat 1 +refs 3 +64 0.480561 0.872 +50 0.554082 0.83396 +49 0.554082 0.872979 +SURF 0x30 +mat 1 +refs 3 +50 0.554082 0.83396 +64 0.480561 0.872 +66 0.480561 0.833433 +SURF 0x30 +mat 1 +refs 3 +63 0.480561 0.89777 +49 0.554082 0.872979 +48 0.554082 0.899047 +SURF 0x30 +mat 1 +refs 3 +49 0.554082 0.872979 +63 0.480561 0.89777 +64 0.480561 0.872 +SURF 0x30 +mat 1 +refs 3 +78 0.480561 0.906817 +48 0.554082 0.899047 +62 0.554082 0.908202 +SURF 0x30 +mat 1 +refs 3 +48 0.554082 0.899047 +78 0.480561 0.906817 +63 0.480561 0.89777 +SURF 0x30 +mat 1 +refs 3 +61 0.554082 0.899047 +47 0.630663 0.908837 +46 0.630663 0.899628 +SURF 0x30 +mat 1 +refs 3 +47 0.630663 0.908837 +61 0.554082 0.899047 +62 0.554082 0.908202 +SURF 0x30 +mat 1 +refs 3 +60 0.554082 0.872979 +46 0.630663 0.899628 +45 0.630663 0.873425 +SURF 0x30 +mat 1 +refs 3 +46 0.630663 0.899628 +60 0.554082 0.872979 +61 0.554082 0.899047 +SURF 0x30 +mat 1 +refs 3 +59 0.554082 0.83396 +45 0.630663 0.873425 +44 0.630663 0.834203 +SURF 0x30 +mat 1 +refs 3 +45 0.630663 0.873425 +59 0.554082 0.83396 +60 0.554082 0.872979 +SURF 0x30 +mat 1 +refs 3 +58 0.470711 0.648091 +44 0.547291 0.694354 +43 0.547291 0.648091 +SURF 0x30 +mat 1 +refs 3 +44 0.547291 0.694354 +58 0.470711 0.648091 +59 0.470711 0.694111 +SURF 0x30 +mat 1 +refs 3 +57 0.470711 0.602065 +43 0.547291 0.648091 +42 0.547291 0.601822 +SURF 0x30 +mat 1 +refs 3 +43 0.547291 0.648091 +57 0.470711 0.602065 +58 0.470711 0.648091 +SURF 0x30 +mat 1 +refs 3 +56 0.554082 0.702894 +42 0.630663 0.74167 +41 0.630663 0.702448 +SURF 0x30 +mat 1 +refs 3 +42 0.630663 0.74167 +56 0.554082 0.702894 +57 0.554082 0.741914 +SURF 0x30 +mat 1 +refs 3 +55 0.554082 0.676827 +41 0.630663 0.702448 +40 0.630663 0.676246 +SURF 0x30 +mat 1 +refs 3 +41 0.630663 0.702448 +55 0.554082 0.676827 +56 0.554082 0.702894 +SURF 0x30 +mat 1 +refs 3 +54 0.554082 0.646638 +40 0.630663 0.676246 +39 0.630663 0.646003 +SURF 0x30 +mat 1 +refs 3 +40 0.630663 0.676246 +54 0.554082 0.646638 +55 0.554082 0.676827 +SURF 0x30 +mat 1 +refs 3 +53 0.554082 0.676827 +39 0.630663 0.646003 +38 0.630663 0.676246 +SURF 0x30 +mat 1 +refs 3 +39 0.630663 0.646003 +53 0.554082 0.676827 +54 0.554082 0.646638 +SURF 0x30 +mat 1 +refs 3 +51 0.554082 0.78794 +37 0.630663 0.74167 +36 0.630663 0.78794 +SURF 0x30 +mat 1 +refs 3 +37 0.630663 0.74167 +51 0.554082 0.78794 +52 0.554082 0.741914 +SURF 0x30 +mat 1 +refs 3 +50 0.554082 0.83396 +36 0.630663 0.78794 +35 0.630663 0.834203 +SURF 0x30 +mat 1 +refs 3 +36 0.630663 0.78794 +50 0.554082 0.83396 +51 0.554082 0.78794 +SURF 0x30 +mat 1 +refs 3 +49 0.554082 0.872979 +35 0.630663 0.834203 +34 0.630663 0.873425 +SURF 0x30 +mat 1 +refs 3 +35 0.630663 0.834203 +49 0.554082 0.872979 +50 0.554082 0.83396 +SURF 0x30 +mat 1 +refs 3 +48 0.554082 0.899047 +34 0.630663 0.873425 +33 0.630663 0.899628 +SURF 0x30 +mat 1 +refs 3 +34 0.630663 0.873425 +48 0.554082 0.899047 +49 0.554082 0.872979 +SURF 0x30 +mat 1 +refs 3 +62 0.554082 0.908202 +33 0.630663 0.899628 +47 0.630663 0.908837 +SURF 0x30 +mat 1 +refs 3 +33 0.630663 0.899628 +62 0.554082 0.908202 +48 0.554082 0.899047 +SURF 0x30 +mat 1 +refs 3 +46 0.630663 0.899628 +32 0.709552 0.910614 +31 0.709552 0.901276 +SURF 0x30 +mat 1 +refs 3 +32 0.709552 0.910614 +46 0.630663 0.899628 +47 0.630663 0.908837 +SURF 0x30 +mat 1 +refs 3 +45 0.630663 0.873425 +31 0.709552 0.901276 +30 0.709552 0.874682 +SURF 0x30 +mat 1 +refs 3 +31 0.709552 0.901276 +45 0.630663 0.873425 +46 0.630663 0.899628 +SURF 0x30 +mat 1 +refs 3 +44 0.630663 0.834203 +30 0.709552 0.874682 +29 0.709552 0.834885 +SURF 0x30 +mat 1 +refs 3 +30 0.709552 0.874682 +44 0.630663 0.834203 +45 0.630663 0.873425 +SURF 0x30 +mat 1 +refs 3 +43 0.630663 0.78794 +29 0.709552 0.834885 +28 0.709552 0.78794 +SURF 0x30 +mat 1 +refs 3 +29 0.709552 0.834885 +43 0.630663 0.78794 +44 0.630663 0.834203 +SURF 0x30 +mat 1 +refs 3 +42 0.630663 0.74167 +28 0.709552 0.78794 +27 0.709552 0.740988 +SURF 0x30 +mat 1 +refs 3 +28 0.709552 0.78794 +42 0.630663 0.74167 +43 0.630663 0.78794 +SURF 0x30 +mat 1 +refs 3 +41 0.630663 0.702448 +27 0.709552 0.740988 +26 0.709552 0.701191 +SURF 0x30 +mat 1 +refs 3 +27 0.709552 0.740988 +41 0.630663 0.702448 +42 0.630663 0.74167 +SURF 0x30 +mat 1 +refs 3 +40 0.630663 0.676246 +26 0.709552 0.701191 +25 0.709552 0.674597 +SURF 0x30 +mat 1 +refs 3 +26 0.709552 0.701191 +40 0.630663 0.676246 +41 0.630663 0.702448 +SURF 0x30 +mat 1 +refs 3 +39 0.630663 0.646003 +25 0.709552 0.674597 +24 0.709552 0.644219 +SURF 0x30 +mat 1 +refs 3 +25 0.709552 0.674597 +39 0.630663 0.646003 +40 0.630663 0.676246 +SURF 0x30 +mat 1 +refs 3 +38 0.630663 0.676246 +24 0.709552 0.644219 +23 0.709552 0.674597 +SURF 0x30 +mat 1 +refs 3 +24 0.709552 0.644219 +38 0.630663 0.676246 +39 0.630663 0.646003 +SURF 0x30 +mat 1 +refs 3 +21 0.630663 0.702448 +23 0.709552 0.674597 +22 0.709552 0.701191 +SURF 0x30 +mat 1 +refs 3 +23 0.709552 0.674597 +21 0.630663 0.702448 +38 0.630663 0.676246 +SURF 0x30 +mat 1 +refs 3 +37 0.630663 0.74167 +22 0.709552 0.701191 +20 0.709552 0.740988 +SURF 0x30 +mat 1 +refs 3 +22 0.709552 0.701191 +37 0.630663 0.74167 +21 0.630663 0.702448 +SURF 0x30 +mat 1 +refs 3 +36 0.630663 0.78794 +20 0.709552 0.740988 +19 0.709552 0.78794 +SURF 0x30 +mat 1 +refs 3 +20 0.709552 0.740988 +36 0.630663 0.78794 +37 0.630663 0.74167 +SURF 0x30 +mat 1 +refs 3 +35 0.630663 0.834203 +19 0.709552 0.78794 +18 0.709552 0.834885 +SURF 0x30 +mat 1 +refs 3 +19 0.709552 0.78794 +35 0.630663 0.834203 +36 0.630663 0.78794 +SURF 0x30 +mat 1 +refs 3 +34 0.630663 0.873425 +18 0.709552 0.834885 +17 0.709552 0.874682 +SURF 0x30 +mat 1 +refs 3 +18 0.709552 0.834885 +34 0.630663 0.873425 +35 0.630663 0.834203 +SURF 0x30 +mat 1 +refs 3 +33 0.630663 0.899628 +17 0.709552 0.874682 +16 0.709552 0.901276 +SURF 0x30 +mat 1 +refs 3 +17 0.709552 0.874682 +33 0.630663 0.899628 +34 0.630663 0.873425 +SURF 0x30 +mat 1 +refs 3 +47 0.630663 0.908837 +16 0.709552 0.901276 +32 0.709552 0.910614 +SURF 0x30 +mat 1 +refs 3 +16 0.709552 0.901276 +47 0.630663 0.908837 +33 0.630663 0.899628 +SURF 0x30 +mat 1 +refs 3 +31 0.709552 0.901276 +15 0.790004 0.911182 +14 0.790004 0.901803 +SURF 0x30 +mat 1 +refs 3 +15 0.790004 0.911182 +31 0.709552 0.901276 +32 0.709552 0.910614 +SURF 0x30 +mat 1 +refs 3 +30 0.709552 0.874682 +14 0.790004 0.901803 +13 0.790004 0.875087 +SURF 0x30 +mat 1 +refs 3 +14 0.790004 0.901803 +30 0.709552 0.874682 +31 0.709552 0.901276 +SURF 0x30 +mat 1 +refs 3 +29 0.709552 0.834885 +13 0.790004 0.875087 +12 0.790004 0.835101 +SURF 0x30 +mat 1 +refs 3 +13 0.790004 0.875087 +29 0.709552 0.834885 +30 0.709552 0.874682 +SURF 0x30 +mat 1 +refs 3 +28 0.709552 0.78794 +12 0.790004 0.835101 +11 0.790004 0.78794 +SURF 0x30 +mat 1 +refs 3 +12 0.790004 0.835101 +28 0.709552 0.78794 +29 0.709552 0.834885 +SURF 0x30 +mat 1 +refs 3 +27 0.709552 0.740988 +11 0.790004 0.78794 +10 0.790004 0.740772 +SURF 0x30 +mat 1 +refs 3 +11 0.790004 0.78794 +27 0.709552 0.740988 +28 0.709552 0.78794 +SURF 0x30 +mat 1 +refs 3 +26 0.709552 0.701191 +10 0.790004 0.740772 +9 0.790004 0.700793 +SURF 0x30 +mat 1 +refs 3 +10 0.790004 0.740772 +26 0.709552 0.701191 +27 0.709552 0.740988 +SURF 0x30 +mat 1 +refs 3 +25 0.709552 0.674597 +9 0.790004 0.700793 +8 0.790004 0.674077 +SURF 0x30 +mat 1 +refs 3 +9 0.790004 0.700793 +25 0.709552 0.674597 +26 0.709552 0.701191 +SURF 0x30 +mat 1 +refs 3 +24 0.709552 0.644219 +8 0.790004 0.674077 +7 0.790004 0.643658 +SURF 0x30 +mat 1 +refs 3 +8 0.790004 0.674077 +24 0.709552 0.644219 +25 0.709552 0.674597 +SURF 0x30 +mat 1 +refs 3 +23 0.709552 0.674597 +7 0.790004 0.643658 +6 0.790004 0.674077 +SURF 0x30 +mat 1 +refs 3 +7 0.790004 0.643658 +23 0.709552 0.674597 +24 0.709552 0.644219 +SURF 0x30 +mat 1 +refs 3 +22 0.709552 0.701191 +6 0.790004 0.674077 +5 0.790004 0.700793 +SURF 0x30 +mat 1 +refs 3 +6 0.790004 0.674077 +22 0.709552 0.701191 +23 0.709552 0.674597 +SURF 0x30 +mat 1 +refs 3 +20 0.709552 0.740988 +5 0.790004 0.700793 +4 0.790004 0.740772 +SURF 0x30 +mat 1 +refs 3 +5 0.790004 0.700793 +20 0.709552 0.740988 +22 0.709552 0.701191 +SURF 0x30 +mat 1 +refs 3 +19 0.709552 0.78794 +4 0.790004 0.740772 +3 0.790004 0.78794 +SURF 0x30 +mat 1 +refs 3 +4 0.790004 0.740772 +19 0.709552 0.78794 +20 0.709552 0.740988 +SURF 0x30 +mat 1 +refs 3 +18 0.709552 0.834885 +3 0.790004 0.78794 +2 0.790004 0.835101 +SURF 0x30 +mat 1 +refs 3 +3 0.790004 0.78794 +18 0.709552 0.834885 +19 0.709552 0.78794 +SURF 0x30 +mat 1 +refs 3 +17 0.709552 0.874682 +2 0.790004 0.835101 +1 0.790004 0.875087 +SURF 0x30 +mat 1 +refs 3 +2 0.790004 0.835101 +17 0.709552 0.874682 +18 0.709552 0.834885 +SURF 0x30 +mat 1 +refs 3 +16 0.709552 0.901276 +1 0.790004 0.875087 +0 0.790004 0.901803 +SURF 0x30 +mat 1 +refs 3 +1 0.790004 0.875087 +16 0.709552 0.901276 +17 0.709552 0.874682 +SURF 0x30 +mat 1 +refs 3 +32 0.709552 0.910614 +0 0.790004 0.901803 +15 0.790004 0.911182 +SURF 0x30 +mat 1 +refs 3 +0 0.790004 0.901803 +32 0.709552 0.910614 +16 0.709552 0.901276 +SURF 0x30 +mat 1 +refs 3 +221 0.0610094 0.698833 +220 0.0610094 0.696935 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +220 0.0610094 0.696935 +218 0.0610094 0.691536 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +218 0.0610094 0.691536 +217 0.0610094 0.683462 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +217 0.0610094 0.683462 +216 0.0610094 0.673935 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +216 0.0610094 0.673935 +215 0.0610094 0.664408 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +215 0.0610094 0.664408 +214 0.0610094 0.656334 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +214 0.0610094 0.656334 +213 0.0610094 0.650942 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +213 0.0610094 0.650942 +212 0.0610094 0.629665 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +212 0.0610094 0.629665 +211 0.0610094 0.650942 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +211 0.0610094 0.650942 +210 0.0610094 0.656334 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +210 0.0610094 0.656334 +209 0.0610094 0.664408 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +209 0.0610094 0.664408 +208 0.0610094 0.673935 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +208 0.0610094 0.673935 +207 0.0610094 0.683462 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +207 0.0610094 0.683462 +206 0.0610094 0.691536 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +206 0.0610094 0.691536 +205 0.0610094 0.696935 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +205 0.0610094 0.696935 +221 0.0610094 0.698833 +219 0.0570167 0.657036 +SURF 0x30 +mat 1 +refs 3 +109 0.285214 0.858669 +222 0.345479 0.82798 +94 0.345479 0.864594 +SURF 0x30 +mat 1 +refs 3 +222 0.345479 0.82798 +109 0.285214 0.858669 +223 0.285214 0.823811 +SURF 0x30 +mat 1 +refs 3 +222 0.345479 0.82798 +81 0.410802 0.786893 +65 0.410802 0.831081 +SURF 0x30 +mat 1 +refs 3 +81 0.410802 0.786893 +222 0.345479 0.82798 +96 0.345479 0.784791 +SURF 0x30 +mat 1 +refs 3 +94 0.345479 0.864594 +65 0.410802 0.831081 +80 0.410802 0.868554 +SURF 0x30 +mat 1 +refs 3 +65 0.410802 0.831081 +94 0.345479 0.864594 +222 0.345479 0.82798 +SURF 0x30 +mat 1 +refs 3 +223 0.285214 0.823811 +96 0.345479 0.784791 +222 0.345479 0.82798 +SURF 0x30 +mat 1 +refs 3 +96 0.345479 0.784791 +223 0.285214 0.823811 +95 0.285214 0.782697 +SURF 0x30 +mat 1 +refs 3 +124 0.23371 0.845595 +223 0.285214 0.823811 +109 0.285214 0.858669 +SURF 0x30 +mat 1 +refs 3 +223 0.285214 0.823811 +124 0.23371 0.845595 +224 0.23371 0.813372 +SURF 0x30 +mat 1 +refs 3 +224 0.23371 0.813372 +95 0.285214 0.782697 +223 0.285214 0.823811 +SURF 0x30 +mat 1 +refs 3 +95 0.285214 0.782697 +224 0.23371 0.813372 +225 0.23371 0.775366 +SURF 0x30 +mat 1 +refs 3 +225 0.23371 0.775366 +111 0.285214 0.741583 +95 0.285214 0.782697 +SURF 0x30 +mat 1 +refs 3 +111 0.285214 0.741583 +225 0.23371 0.775366 +110 0.23371 0.737353 +SURF 0x30 +mat 1 +refs 3 +139 0.192535 0.831189 +224 0.23371 0.813372 +124 0.23371 0.845595 +SURF 0x30 +mat 1 +refs 3 +224 0.23371 0.813372 +139 0.192535 0.831189 +226 0.192535 0.801967 +SURF 0x30 +mat 1 +refs 3 +226 0.192535 0.801967 +225 0.23371 0.775366 +224 0.23371 0.813372 +SURF 0x30 +mat 1 +refs 3 +225 0.23371 0.775366 +226 0.192535 0.801967 +227 0.192535 0.767501 +SURF 0x30 +mat 1 +refs 3 +227 0.192535 0.767501 +110 0.23371 0.737353 +225 0.23371 0.775366 +SURF 0x30 +mat 1 +refs 3 +110 0.23371 0.737353 +227 0.192535 0.767501 +228 0.192535 0.733035 +SURF 0x30 +mat 1 +refs 3 +228 0.192535 0.733035 +126 0.23371 0.70513 +110 0.23371 0.737353 +SURF 0x30 +mat 1 +refs 3 +126 0.23371 0.70513 +228 0.192535 0.733035 +125 0.192535 0.701813 +SURF 0x30 +mat 1 +refs 3 +150 0.152452 0.810474 +226 0.192535 0.801967 +139 0.192535 0.831189 +SURF 0x30 +mat 1 +refs 3 +226 0.192535 0.801967 +150 0.152452 0.810474 +229 0.152452 0.784413 +SURF 0x30 +mat 1 +refs 3 +229 0.152452 0.784413 +227 0.192535 0.767501 +226 0.192535 0.801967 +SURF 0x30 +mat 1 +refs 3 +227 0.192535 0.767501 +229 0.152452 0.784413 +230 0.152452 0.75367 +SURF 0x30 +mat 1 +refs 3 +230 0.152452 0.75367 +228 0.192535 0.733035 +227 0.192535 0.767501 +SURF 0x30 +mat 1 +refs 3 +228 0.192535 0.733035 +230 0.152452 0.75367 +231 0.152452 0.722928 +SURF 0x30 +mat 1 +refs 3 +231 0.152452 0.722928 +125 0.192535 0.701813 +228 0.192535 0.733035 +SURF 0x30 +mat 1 +refs 3 +125 0.192535 0.701813 +231 0.152452 0.722928 +232 0.152452 0.696867 +SURF 0x30 +mat 1 +refs 3 +232 0.152452 0.696867 +127 0.192535 0.682286 +125 0.192535 0.701813 +SURF 0x30 +mat 1 +refs 3 +127 0.192535 0.682286 +232 0.152452 0.696867 +233 0.152452 0.679455 +SURF 0x30 +mat 1 +refs 3 +233 0.152452 0.679455 +140 0.192535 0.654395 +127 0.192535 0.682286 +SURF 0x30 +mat 1 +refs 3 +140 0.192535 0.654395 +233 0.152452 0.679455 +151 0.152452 0.6523 +SURF 0x30 +mat 1 +refs 3 +161 0.117681 0.784947 +229 0.152452 0.784413 +150 0.152452 0.810474 +SURF 0x30 +mat 1 +refs 3 +229 0.152452 0.784413 +161 0.117681 0.784947 +162 0.117681 0.763042 +SURF 0x30 +mat 1 +refs 3 +162 0.117681 0.763042 +230 0.152452 0.75367 +229 0.152452 0.784413 +SURF 0x30 +mat 1 +refs 3 +230 0.152452 0.75367 +162 0.117681 0.763042 +234 0.117681 0.737198 +SURF 0x30 +mat 1 +refs 3 +234 0.117681 0.737198 +231 0.152452 0.722928 +230 0.152452 0.75367 +SURF 0x30 +mat 1 +refs 3 +231 0.152452 0.722928 +234 0.117681 0.737198 +235 0.117681 0.711353 +SURF 0x30 +mat 1 +refs 3 +235 0.117681 0.711353 +232 0.152452 0.696867 +231 0.152452 0.722928 +SURF 0x30 +mat 1 +refs 3 +232 0.152452 0.696867 +235 0.117681 0.711353 +236 0.117681 0.689448 +SURF 0x30 +mat 1 +refs 3 +236 0.117681 0.689448 +233 0.152452 0.679455 +232 0.152452 0.696867 +SURF 0x30 +mat 1 +refs 3 +233 0.152452 0.679455 +236 0.117681 0.689448 +237 0.117681 0.674807 +SURF 0x30 +mat 1 +refs 3 +237 0.117681 0.674807 +151 0.152452 0.6523 +233 0.152452 0.679455 +SURF 0x30 +mat 1 +refs 3 +151 0.152452 0.6523 +237 0.117681 0.674807 +164 0.117681 0.648631 +SURF 0x30 +mat 1 +refs 3 +179 0.0902785 0.661503 +164 0.117681 0.648631 +237 0.117681 0.674807 +SURF 0x30 +mat 1 +refs 3 +164 0.117681 0.648631 +179 0.0902785 0.661503 +180 0.0902785 0.636003 +SURF 0x30 +mat 1 +refs 3 +178 0.0902785 0.674205 +237 0.117681 0.674807 +236 0.117681 0.689448 +SURF 0x30 +mat 1 +refs 3 +237 0.117681 0.674807 +178 0.0902785 0.674205 +179 0.0902785 0.661503 +SURF 0x30 +mat 1 +refs 3 +177 0.0902785 0.693218 +236 0.117681 0.689448 +235 0.117681 0.711353 +SURF 0x30 +mat 1 +refs 3 +236 0.117681 0.689448 +177 0.0902785 0.693218 +178 0.0902785 0.674205 +SURF 0x30 +mat 1 +refs 3 +176 0.0902785 0.715651 +235 0.117681 0.711353 +234 0.117681 0.737198 +SURF 0x30 +mat 1 +refs 3 +235 0.117681 0.711353 +176 0.0902785 0.715651 +177 0.0902785 0.693218 +SURF 0x30 +mat 1 +refs 3 +240 0.480561 0.703874 +53 0.554082 0.676827 +241 0.554082 0.702894 +SURF 0x30 +mat 1 +refs 3 +53 0.554082 0.676827 +240 0.480561 0.703874 +69 0.480561 0.678104 +SURF 0x30 +mat 1 +refs 3 +68 0.480561 0.742441 +241 0.554082 0.702894 +52 0.554082 0.741914 +SURF 0x30 +mat 1 +refs 3 +241 0.554082 0.702894 +68 0.480561 0.742441 +240 0.480561 0.703874 +SURF 0x30 +mat 1 +refs 3 +241 0.554082 0.702894 +38 0.630663 0.676246 +21 0.630663 0.702448 +SURF 0x30 +mat 1 +refs 3 +38 0.630663 0.676246 +241 0.554082 0.702894 +53 0.554082 0.676827 +SURF 0x30 +mat 1 +refs 3 +52 0.554082 0.741914 +21 0.630663 0.702448 +37 0.630663 0.74167 +SURF 0x30 +mat 1 +refs 3 +21 0.630663 0.702448 +52 0.554082 0.741914 +241 0.554082 0.702894 +SURF 0x30 +mat 1 +refs 3 +112 0.285214 0.706725 +98 0.345479 0.681529 +238 0.345479 0.705989 +SURF 0x30 +mat 1 +refs 3 +98 0.345479 0.681529 +112 0.285214 0.706725 +113 0.285214 0.683435 +SURF 0x30 +mat 1 +refs 3 +111 0.285214 0.741583 +238 0.345479 0.705989 +97 0.345479 0.742603 +SURF 0x30 +mat 1 +refs 3 +238 0.345479 0.705989 +111 0.285214 0.741583 +112 0.285214 0.706725 +SURF 0x30 +mat 1 +refs 3 +238 0.345479 0.705989 +83 0.410802 0.680192 +239 0.410802 0.705225 +SURF 0x30 +mat 1 +refs 3 +83 0.410802 0.680192 +238 0.345479 0.705989 +98 0.345479 0.681529 +SURF 0x30 +mat 1 +refs 3 +97 0.345479 0.742603 +239 0.410802 0.705225 +82 0.410802 0.742691 +SURF 0x30 +mat 1 +refs 3 +239 0.410802 0.705225 +97 0.345479 0.742603 +238 0.345479 0.705989 +SURF 0x30 +mat 1 +refs 3 +239 0.410802 0.705225 +69 0.480561 0.678104 +240 0.480561 0.703874 +SURF 0x30 +mat 1 +refs 3 +69 0.480561 0.678104 +239 0.410802 0.705225 +83 0.410802 0.680192 +SURF 0x30 +mat 1 +refs 3 +82 0.410802 0.742691 +240 0.480561 0.703874 +68 0.480561 0.742441 +SURF 0x30 +mat 1 +refs 3 +240 0.480561 0.703874 +82 0.410802 0.742691 +239 0.410802 0.705225 +kids 0 +OBJECT poly +name "Center" +loc 4.88237e-05 0.00138733 0 +texture "wing.jpg" +crease 45.000000 +numvert 64 +0.00705019 0.00582977 0.00675223 +0.02713 0.0107677 0.00675223 +0.0571809 0.0140679 0.00675223 +0.0926296 0.0152303 0.00675223 +0.128084 0.0140679 0.00675223 +0.158135 0.0107677 0.00675223 +0.178214 0.00582977 0.00675223 +0.201003 2.64309e-06 0.00675223 +0.178214 -0.00582977 0.00675223 +0.158135 -0.0107677 0.00675223 +0.128084 -0.0140678 0.00675223 +0.0926296 -0.0152303 0.00675223 +0.0571809 -0.0140678 0.00675223 +0.02713 -0.0107677 0.00675223 +0.00705019 -0.00582977 0.00675223 +0 2.64309e-06 0.00675223 +0.00745969 0.00579953 0.0745167 +0.0274433 0.0107171 0.0745167 +0.0573527 0.0140023 0.0745167 +0.0926296 0.0151545 0.0745167 +0.127912 0.0140023 0.0745167 +0.157816 0.0107171 0.0745167 +0.1778 0.00579953 0.0745167 +0.200554 2.64309e-06 0.0745167 +0.1778 -0.00579953 0.0745167 +0.157816 -0.010717 0.0745167 +0.127912 -0.0140021 0.0745167 +0.0926296 -0.0151544 0.0745167 +0.0573527 -0.0140021 0.0745167 +0.0274433 -0.010717 0.0745167 +0.00745969 -0.00579953 0.0745167 +0.000444658 2.64309e-06 0.0745167 +0.00705019 -0.00582977 -0.00675223 +0 2.64309e-06 -0.00675223 +0.02713 -0.0107677 -0.00675223 +0.0571809 -0.0140678 -0.00675223 +0.0926296 -0.0152303 -0.00675223 +0.128084 -0.0140678 -0.00675223 +0.158135 -0.0107677 -0.00675223 +0.178214 -0.00582977 -0.00675223 +0.201003 2.64309e-06 -0.00675223 +0.178214 0.00582977 -0.00675223 +0.158135 0.0107677 -0.00675223 +0.127912 0.0140023 -0.0745167 +0.128084 0.0140679 -0.00675223 +0.0926296 0.0151545 -0.0745167 +0.0926296 0.0152303 -0.00675223 +0.0571809 0.0140679 -0.00675223 +0.02713 0.0107677 -0.00675223 +0.00705019 0.00582977 -0.00675223 +0.00745969 0.00579953 -0.0745167 +0.0573527 0.0140023 -0.0745167 +0.0274433 0.0107171 -0.0745167 +0.157816 0.0107171 -0.0745167 +0.1778 0.00579953 -0.0745167 +0.200554 2.64309e-06 -0.0745167 +0.1778 -0.00579953 -0.0745167 +0.157816 -0.010717 -0.0745167 +0.127912 -0.0140021 -0.0745167 +0.0926296 -0.0151544 -0.0745167 +0.0573527 -0.0140021 -0.0745167 +0.0274433 -0.010717 -0.0745167 +0.000444658 2.64309e-06 -0.0745167 +0.00745969 -0.00579953 -0.0745167 +numsurf 64 +SURF 0x30 +mat 1 +refs 3 +30 0.790004 0.901803 +15 0.871238 0.911776 +14 0.871238 0.90235 +SURF 0x30 +mat 1 +refs 3 +15 0.871238 0.911776 +30 0.790004 0.901803 +31 0.790004 0.911182 +SURF 0x30 +mat 1 +refs 3 +29 0.790004 0.875087 +14 0.871238 0.90235 +13 0.871238 0.875506 +SURF 0x30 +mat 1 +refs 3 +14 0.871238 0.90235 +29 0.790004 0.875087 +30 0.790004 0.901803 +SURF 0x30 +mat 1 +refs 3 +28 0.790004 0.835101 +13 0.871238 0.875506 +12 0.871238 0.835331 +SURF 0x30 +mat 1 +refs 3 +13 0.871238 0.875506 +28 0.790004 0.835101 +29 0.790004 0.875087 +SURF 0x30 +mat 1 +refs 3 +27 0.790004 0.78794 +12 0.871238 0.835331 +11 0.871238 0.78794 +SURF 0x30 +mat 1 +refs 3 +12 0.871238 0.835331 +27 0.790004 0.78794 +28 0.790004 0.835101 +SURF 0x30 +mat 1 +refs 3 +26 0.790004 0.740772 +11 0.871238 0.78794 +10 0.871238 0.740542 +SURF 0x30 +mat 1 +refs 3 +11 0.871238 0.78794 +26 0.790004 0.740772 +27 0.790004 0.78794 +SURF 0x30 +mat 1 +refs 3 +25 0.790004 0.700793 +10 0.871238 0.740542 +9 0.871238 0.700367 +SURF 0x30 +mat 1 +refs 3 +10 0.871238 0.740542 +25 0.790004 0.700793 +26 0.790004 0.740772 +SURF 0x30 +mat 1 +refs 3 +24 0.790004 0.674077 +9 0.871238 0.700367 +8 0.871238 0.673523 +SURF 0x30 +mat 1 +refs 3 +9 0.871238 0.700367 +24 0.790004 0.674077 +25 0.790004 0.700793 +SURF 0x30 +mat 1 +refs 3 +23 0.790004 0.643658 +8 0.871238 0.673523 +7 0.871238 0.643057 +SURF 0x30 +mat 1 +refs 3 +8 0.871238 0.673523 +23 0.790004 0.643658 +24 0.790004 0.674077 +SURF 0x30 +mat 1 +refs 3 +22 0.790004 0.674077 +7 0.871238 0.643057 +6 0.871238 0.673523 +SURF 0x30 +mat 1 +refs 3 +7 0.871238 0.643057 +22 0.790004 0.674077 +23 0.790004 0.643658 +SURF 0x30 +mat 1 +refs 3 +21 0.790004 0.700793 +6 0.871238 0.673523 +5 0.871238 0.700367 +SURF 0x30 +mat 1 +refs 3 +6 0.871238 0.673523 +21 0.790004 0.700793 +22 0.790004 0.674077 +SURF 0x30 +mat 1 +refs 3 +20 0.790004 0.740772 +5 0.871238 0.700367 +4 0.871238 0.740542 +SURF 0x30 +mat 1 +refs 3 +5 0.871238 0.700367 +20 0.790004 0.740772 +21 0.790004 0.700793 +SURF 0x30 +mat 1 +refs 3 +19 0.790004 0.78794 +4 0.871238 0.740542 +3 0.871238 0.78794 +SURF 0x30 +mat 1 +refs 3 +4 0.871238 0.740542 +19 0.790004 0.78794 +20 0.790004 0.740772 +SURF 0x30 +mat 1 +refs 3 +18 0.790004 0.835101 +3 0.871238 0.78794 +2 0.871238 0.835331 +SURF 0x30 +mat 1 +refs 3 +3 0.871238 0.78794 +18 0.790004 0.835101 +19 0.790004 0.78794 +SURF 0x30 +mat 1 +refs 3 +17 0.790004 0.875087 +2 0.871238 0.835331 +1 0.871238 0.875506 +SURF 0x30 +mat 1 +refs 3 +2 0.871238 0.835331 +17 0.790004 0.875087 +18 0.790004 0.835101 +SURF 0x30 +mat 1 +refs 3 +16 0.790004 0.901803 +1 0.871238 0.875506 +0 0.871238 0.90235 +SURF 0x30 +mat 1 +refs 3 +1 0.871238 0.875506 +16 0.790004 0.901803 +17 0.790004 0.875087 +SURF 0x30 +mat 1 +refs 3 +31 0.790004 0.911182 +0 0.871238 0.90235 +15 0.871238 0.911776 +SURF 0x30 +mat 1 +refs 3 +0 0.871238 0.90235 +31 0.790004 0.911182 +16 0.790004 0.901803 +SURF 0x30 +mat 1 +refs 3 +33 0.0468687 0.670237 +50 0.138406 0.658672 +62 0.138406 0.669547 +SURF 0x30 +mat 1 +refs 3 +50 0.138406 0.658672 +33 0.0468687 0.670237 +49 0.0468687 0.659307 +SURF 0x30 +mat 1 +refs 3 +49 0.0468687 0.659307 +52 0.138406 0.627693 +50 0.138406 0.658672 +SURF 0x30 +mat 1 +refs 3 +52 0.138406 0.627693 +49 0.0468687 0.659307 +48 0.0468687 0.628179 +SURF 0x30 +mat 1 +refs 3 +48 0.0468687 0.628179 +51 0.138406 0.581327 +52 0.138406 0.627693 +SURF 0x30 +mat 1 +refs 3 +51 0.138406 0.581327 +48 0.0468687 0.628179 +47 0.0468687 0.581593 +SURF 0x30 +mat 1 +refs 3 +47 0.0468687 0.581593 +45 0.138406 0.52664 +51 0.138406 0.581327 +SURF 0x30 +mat 1 +refs 3 +45 0.138406 0.52664 +47 0.0468687 0.581593 +46 0.0468687 0.52664 +SURF 0x30 +mat 1 +refs 3 +46 0.0468687 0.52664 +43 0.138406 0.471945 +45 0.138406 0.52664 +SURF 0x30 +mat 1 +refs 3 +43 0.138406 0.471945 +46 0.0468687 0.52664 +44 0.0468687 0.471678 +SURF 0x30 +mat 1 +refs 3 +44 0.0468687 0.471678 +53 0.138406 0.425586 +43 0.138406 0.471945 +SURF 0x30 +mat 1 +refs 3 +53 0.138406 0.425586 +44 0.0468687 0.471678 +42 0.0468687 0.425092 +SURF 0x30 +mat 1 +refs 3 +42 0.0468687 0.425092 +54 0.138406 0.394607 +53 0.138406 0.425586 +SURF 0x30 +mat 1 +refs 3 +54 0.138406 0.394607 +42 0.0468687 0.425092 +41 0.0468687 0.393964 +SURF 0x30 +mat 1 +refs 3 +41 0.0468687 0.393964 +55 0.138406 0.359334 +54 0.138406 0.394607 +SURF 0x30 +mat 1 +refs 3 +55 0.138406 0.359334 +41 0.0468687 0.393964 +40 0.0468687 0.358637 +SURF 0x30 +mat 1 +refs 3 +40 0.0468687 0.358637 +56 0.138406 0.394607 +55 0.138406 0.359334 +SURF 0x30 +mat 1 +refs 3 +56 0.138406 0.394607 +40 0.0468687 0.358637 +39 0.0468687 0.393964 +SURF 0x30 +mat 1 +refs 3 +39 0.0468687 0.393964 +57 0.138406 0.425586 +56 0.138406 0.394607 +SURF 0x30 +mat 1 +refs 3 +57 0.138406 0.425586 +39 0.0468687 0.393964 +38 0.0468687 0.425092 +SURF 0x30 +mat 1 +refs 3 +38 0.0468687 0.425092 +58 0.138406 0.471945 +57 0.138406 0.425586 +SURF 0x30 +mat 1 +refs 3 +58 0.138406 0.471945 +38 0.0468687 0.425092 +37 0.0468687 0.471678 +SURF 0x30 +mat 1 +refs 3 +37 0.0468687 0.471678 +59 0.138406 0.52664 +58 0.138406 0.471945 +SURF 0x30 +mat 1 +refs 3 +59 0.138406 0.52664 +37 0.0468687 0.471678 +36 0.0468687 0.52664 +SURF 0x30 +mat 1 +refs 3 +36 0.0468687 0.52664 +60 0.138406 0.581327 +59 0.138406 0.52664 +SURF 0x30 +mat 1 +refs 3 +60 0.138406 0.581327 +36 0.0468687 0.52664 +35 0.0468687 0.581593 +SURF 0x30 +mat 1 +refs 3 +35 0.0468687 0.581593 +61 0.138406 0.627693 +60 0.138406 0.581327 +SURF 0x30 +mat 1 +refs 3 +61 0.138406 0.627693 +35 0.0468687 0.581593 +34 0.0468687 0.628179 +SURF 0x30 +mat 1 +refs 3 +34 0.0468687 0.628179 +63 0.138406 0.658672 +61 0.138406 0.627693 +SURF 0x30 +mat 1 +refs 3 +63 0.138406 0.658672 +34 0.0468687 0.628179 +32 0.0468687 0.659307 +SURF 0x30 +mat 1 +refs 3 +32 0.0468687 0.659307 +62 0.138406 0.669547 +63 0.138406 0.658672 +SURF 0x30 +mat 1 +refs 3 +62 0.138406 0.669547 +32 0.0468687 0.659307 +33 0.0468687 0.670237 +kids 0 +OBJECT poly +name "Fuse2" +loc -0.076464 -0.0497772 0 +texture "EasyStarV1Weiss.jpg" +crease 45.000000 +numvert 55 +0.119215 0.0104668 -0.039674 +0.119215 -0.0221367 -0.0382842 +0.0681717 -0.0222225 -0.0405079 +0.0681717 0.013944 -0.0411548 +0.0370159 0.0141765 -0.0419938 +0.0370159 -0.0225763 -0.0420292 +0.00597453 -0.0384711 -0.0223994 +0.0370159 -0.0393 -0.0226824 +0.00597453 -0.0217424 -0.0419988 +0.00597453 0.0133728 -0.0426205 +-0.0244021 0.00962785 -0.0423981 +-0.0244021 -0.0213684 -0.0415238 +-0.119215 0.0235314 -0.0138328 +-0.119215 0.0131303 -0.0294144 +-0.119215 -0.00108663 -0.0351203 +-0.119215 -0.0158191 -0.0322597 +-0.0859424 0.0323102 -0.0182905 +-0.0518373 0.0393 -0.0209943 +-0.0859424 0.0185431 -0.0345239 +-0.0518373 0.024239 -0.0365152 +-0.0859424 -0.000267856 -0.0398711 +-0.0518373 0.00366417 -0.0415996 +-0.0859424 -0.0185028 -0.0373947 +-0.0859424 -0.032275 -0.020676 +-0.0518373 -0.0343269 -0.0227835 +-0.0518373 -0.0207215 -0.0396437 +0.119215 0.0104668 0.039674 +0.119215 -0.0392545 0.0207265 +0.119215 -0.0221367 0.0382842 +0.0681717 0.013944 0.0411548 +0.0370159 0.0141765 0.0419938 +0.0681717 -0.0222225 0.0405079 +0.0681717 -0.0387795 0.0223691 +0.0370159 -0.0393 0.0226824 +0.0370159 -0.0225763 0.0420292 +0.00597453 0.0133728 0.0426205 +-0.0244021 0.00962785 0.0423981 +0.00597453 -0.0217424 0.0419988 +0.00597453 -0.0384711 0.0223994 +-0.0244021 -0.0365203 0.0228846 +-0.0244021 -0.0213684 0.0415238 +-0.119215 0.0131303 0.0294144 +-0.119215 -0.00108663 0.0351203 +-0.119215 -0.0268217 0.0162183 +-0.119215 -0.0158191 0.0322597 +-0.0518373 0.0393 0.0209943 +-0.0859424 0.0323102 0.0182905 +-0.0518373 0.024239 0.0365152 +-0.0859424 0.0185431 0.0345239 +-0.0518373 0.00366417 0.0415996 +-0.0859424 -0.000267856 0.0398711 +-0.0518373 -0.0207215 0.0396437 +-0.0518373 -0.0343269 0.0227835 +-0.0859424 -0.032275 0.020676 +-0.0859424 -0.0185028 0.0373947 +numsurf 60 +SURF 0x30 +mat 1 +refs 3 +19 0.706023 0.897321 +20 0.844342 0.768698 +18 0.844342 0.867418 +SURF 0x30 +mat 1 +refs 3 +20 0.844342 0.768698 +19 0.706023 0.897321 +21 0.706023 0.789334 +SURF 0x30 +mat 1 +refs 3 +21 0.706023 0.789334 +22 0.844342 0.67299 +20 0.844342 0.768698 +SURF 0x30 +mat 1 +refs 3 +22 0.844342 0.67299 +21 0.706023 0.789334 +25 0.706023 0.661354 +SURF 0x30 +mat 1 +refs 3 +24 0.706023 0.589934 +22 0.844342 0.67299 +25 0.706023 0.661354 +SURF 0x30 +mat 1 +refs 3 +22 0.844342 0.67299 +24 0.706023 0.589934 +23 0.844342 0.600719 +SURF 0x30 +mat 1 +refs 3 +7 0.345687 0.563836 +8 0.471579 0.655985 +5 0.345687 0.651619 +SURF 0x30 +mat 1 +refs 3 +8 0.471579 0.655985 +7 0.345687 0.563836 +6 0.471579 0.56819 +SURF 0x30 +mat 1 +refs 3 +4 0.345687 0.844518 +8 0.471579 0.655985 +9 0.471579 0.840304 +SURF 0x30 +mat 1 +refs 3 +8 0.471579 0.655985 +4 0.345687 0.844518 +5 0.345687 0.651619 +SURF 0x30 +mat 1 +refs 3 +3 0.219335 0.843281 +5 0.345687 0.651619 +4 0.345687 0.844518 +SURF 0x30 +mat 1 +refs 3 +5 0.345687 0.651619 +3 0.219335 0.843281 +2 0.219335 0.653475 +SURF 0x30 +mat 1 +refs 3 +0 0.0123514 0.825049 +2 0.219335 0.653475 +3 0.219335 0.843281 +SURF 0x30 +mat 1 +refs 3 +2 0.219335 0.653475 +0 0.0123514 0.825049 +1 0.0123514 0.653919 +SURF 0x30 +mat 1 +refs 3 +20 0.844342 0.768698 +15 0.979262 0.687066 +14 0.979262 0.764415 +SURF 0x30 +mat 1 +refs 3 +15 0.979262 0.687066 +20 0.844342 0.768698 +22 0.844342 0.67299 +SURF 0x30 +mat 1 +refs 3 +18 0.844342 0.867418 +14 0.979262 0.764415 +13 0.979262 0.839009 +SURF 0x30 +mat 1 +refs 3 +14 0.979262 0.764415 +18 0.844342 0.867418 +20 0.844342 0.768698 +SURF 0x30 +mat 1 +refs 3 +13 0.979262 0.839009 +16 0.844342 0.939689 +18 0.844342 0.867418 +SURF 0x30 +mat 1 +refs 3 +16 0.844342 0.939689 +13 0.979262 0.839009 +12 0.979262 0.893621 +SURF 0x30 +mat 1 +refs 3 +10 0.594758 0.820638 +25 0.706023 0.661354 +21 0.706023 0.789334 +SURF 0x30 +mat 1 +refs 3 +25 0.706023 0.661354 +10 0.594758 0.820638 +11 0.594758 0.657934 +SURF 0x30 +mat 1 +refs 3 +9 0.471579 0.840304 +11 0.594758 0.657934 +10 0.594758 0.820638 +SURF 0x30 +mat 1 +refs 3 +11 0.594758 0.657934 +9 0.471579 0.840304 +8 0.471579 0.655985 +SURF 0x30 +mat 1 +refs 3 +18 0.844342 0.867418 +17 0.706023 0.976385 +19 0.706023 0.897321 +SURF 0x30 +mat 1 +refs 3 +17 0.706023 0.976385 +18 0.844342 0.867418 +16 0.844342 0.939689 +SURF 0x30 +mat 1 +refs 3 +28 0.984429 0.667628 +29 0.919986 0.828992 +31 0.919986 0.66725 +SURF 0x30 +mat 1 +refs 3 +29 0.919986 0.828992 +28 0.984429 0.667628 +26 0.984429 0.813447 +SURF 0x30 +mat 1 +refs 3 +28 0.984429 0.667628 +32 0.919986 0.593182 +27 0.984429 0.591053 +SURF 0x30 +mat 1 +refs 3 +32 0.919986 0.593182 +28 0.984429 0.667628 +31 0.919986 0.66725 +SURF 0x30 +mat 1 +refs 3 +31 0.919986 0.66725 +30 0.774814 0.830047 +34 0.774814 0.665669 +SURF 0x30 +mat 1 +refs 3 +30 0.774814 0.830047 +31 0.919986 0.66725 +29 0.919986 0.828992 +SURF 0x30 +mat 1 +refs 3 +34 0.774814 0.665669 +35 0.630179 0.826446 +37 0.630179 0.669388 +SURF 0x30 +mat 1 +refs 3 +35 0.630179 0.826446 +34 0.774814 0.665669 +30 0.774814 0.830047 +SURF 0x30 +mat 1 +refs 3 +31 0.919986 0.66725 +33 0.774814 0.590854 +32 0.919986 0.593182 +SURF 0x30 +mat 1 +refs 3 +33 0.774814 0.590854 +31 0.919986 0.66725 +34 0.774814 0.665669 +SURF 0x30 +mat 1 +refs 3 +33 0.774814 0.590854 +37 0.630179 0.669388 +38 0.630179 0.594574 +SURF 0x30 +mat 1 +refs 3 +37 0.630179 0.669388 +33 0.774814 0.590854 +34 0.774814 0.665669 +SURF 0x30 +mat 1 +refs 3 +37 0.630179 0.669388 +36 0.488674 0.809697 +40 0.488674 0.671049 +SURF 0x30 +mat 1 +refs 3 +36 0.488674 0.809697 +37 0.630179 0.669388 +35 0.630179 0.826446 +SURF 0x30 +mat 1 +refs 3 +40 0.488674 0.671049 +49 0.360835 0.783012 +51 0.360835 0.673954 +SURF 0x30 +mat 1 +refs 3 +49 0.360835 0.783012 +40 0.488674 0.671049 +36 0.488674 0.809697 +SURF 0x30 +mat 1 +refs 3 +37 0.630179 0.669388 +39 0.488674 0.603297 +38 0.630179 0.594574 +SURF 0x30 +mat 1 +refs 3 +39 0.488674 0.603297 +37 0.630179 0.669388 +40 0.488674 0.671049 +SURF 0x30 +mat 1 +refs 3 +39 0.488674 0.603297 +51 0.360835 0.673954 +52 0.360835 0.613104 +SURF 0x30 +mat 1 +refs 3 +51 0.360835 0.673954 +39 0.488674 0.603297 +40 0.488674 0.671049 +SURF 0x30 +mat 1 +refs 3 +50 0.201934 0.765427 +41 0.0469293 0.825352 +42 0.0469293 0.761787 +SURF 0x30 +mat 1 +refs 3 +41 0.0469293 0.825352 +50 0.201934 0.765427 +48 0.201934 0.849561 +SURF 0x30 +mat 1 +refs 3 +54 0.201934 0.68387 +42 0.0469293 0.761787 +44 0.0469293 0.695875 +SURF 0x30 +mat 1 +refs 3 +42 0.0469293 0.761787 +54 0.201934 0.68387 +50 0.201934 0.765427 +SURF 0x30 +mat 1 +refs 3 +53 0.201934 0.622284 +44 0.0469293 0.695875 +43 0.0469293 0.646672 +SURF 0x30 +mat 1 +refs 3 +44 0.0469293 0.695875 +53 0.201934 0.622284 +54 0.201934 0.68387 +SURF 0x30 +mat 1 +refs 3 +48 0.201934 0.849561 +45 0.360835 0.942417 +46 0.201934 0.911147 +SURF 0x30 +mat 1 +refs 3 +45 0.360835 0.942417 +48 0.201934 0.849561 +47 0.360835 0.875043 +SURF 0x30 +mat 1 +refs 3 +49 0.360835 0.783012 +48 0.201934 0.849561 +50 0.201934 0.765427 +SURF 0x30 +mat 1 +refs 3 +48 0.201934 0.849561 +49 0.360835 0.783012 +47 0.360835 0.875043 +SURF 0x30 +mat 1 +refs 3 +51 0.360835 0.673954 +50 0.201934 0.765427 +54 0.201934 0.68387 +SURF 0x30 +mat 1 +refs 3 +50 0.201934 0.765427 +51 0.360835 0.673954 +49 0.360835 0.783012 +SURF 0x30 +mat 1 +refs 3 +52 0.360835 0.613104 +54 0.201934 0.68387 +53 0.201934 0.622284 +SURF 0x30 +mat 1 +refs 3 +54 0.201934 0.68387 +52 0.360835 0.613104 +51 0.360835 0.673954 +kids 0 +OBJECT poly +name "Fuse3" +loc 0.0834261 -0.0344863 0 +texture "EasyStarV2Weiss.jpg" +crease 45.000000 +numvert 18 +-0.000252202 -0.0358911 0.0353882 +0.0304378 -0.034668 0.0342763 +0.0328749 -0.00988822 0.0383751 +0.00221559 -0.00655765 0.0389311 +-0.0406754 -0.00482411 0.039674 +-0.0406754 -0.0374275 0.0382842 +0.0406754 0.0374274 0.0329724 +0.010589 0.0370585 0.0334778 +-0.0406754 0.0366542 0.0340236 +-0.0406754 0.0366542 -0.0340236 +0.0406754 0.0374274 -0.0329724 +0.010589 0.0370585 -0.0334778 +-0.0406754 -0.00482411 -0.039674 +-0.0406754 -0.0374275 -0.0382842 +-0.000252202 -0.0358911 -0.0353882 +0.0304378 -0.034668 -0.0342763 +0.0328749 -0.00988822 -0.0383751 +0.00221559 -0.00655765 -0.0389311 +numsurf 16 +SURF 0x30 +mat 1 +refs 3 +1 0.29305 0.12421 +3 0.46755 0.29801 +0 0.4828 0.11665 +SURF 0x30 +mat 1 +refs 3 +3 0.46755 0.29801 +1 0.29305 0.12421 +2 0.27799 0.27743 +SURF 0x30 +mat 1 +refs 3 +0 0.4828 0.11665 +4 0.73277 0.30875 +5 0.73277 0.10715 +SURF 0x30 +mat 1 +refs 3 +4 0.73277 0.30875 +0 0.4828 0.11665 +3 0.46755 0.29801 +SURF 0x30 +mat 1 +refs 3 +2 0.27799 0.27743 +7 0.41578 0.5677 +3 0.46755 0.29801 +SURF 0x30 +mat 1 +refs 3 +7 0.41578 0.5677 +2 0.27799 0.27743 +6 0.22973 0.56999 +SURF 0x30 +mat 1 +refs 3 +3 0.46755 0.29801 +8 0.73277 0.5652 +4 0.73277 0.30875 +SURF 0x30 +mat 1 +refs 3 +8 0.73277 0.5652 +3 0.46755 0.29801 +7 0.41578 0.5677 +SURF 0x30 +mat 1 +refs 3 +17 0.467432 0.296623 +15 0.292943 0.122823 +14 0.482693 0.115272 +SURF 0x30 +mat 1 +refs 3 +15 0.292943 0.122823 +17 0.467432 0.296623 +16 0.277873 0.276053 +SURF 0x30 +mat 1 +refs 3 +17 0.467432 0.296623 +13 0.732663 0.105773 +12 0.732663 0.307362 +SURF 0x30 +mat 1 +refs 3 +13 0.732663 0.105773 +17 0.467432 0.296623 +14 0.482693 0.115272 +SURF 0x30 +mat 1 +refs 3 +11 0.415663 0.566323 +16 0.277873 0.276053 +17 0.467432 0.296623 +SURF 0x30 +mat 1 +refs 3 +16 0.277873 0.276053 +11 0.415663 0.566323 +10 0.229613 0.568613 +SURF 0x30 +mat 1 +refs 3 +11 0.415663 0.566323 +12 0.732663 0.307362 +9 0.732663 0.563823 +SURF 0x30 +mat 1 +refs 3 +12 0.732663 0.307362 +11 0.415663 0.566323 +17 0.467432 0.296623 +kids 0 +OBJECT poly +name "PropDisk" +loc 0.237849 0.0422532 -0.000783727 +crease 45.000000 +numvert 24 +2.98023e-08 7.45058e-09 -0.000533521 +3.86089e-05 -0.000218756 -0.000533521 +9.31621e-05 -0.00052819 -0.000533521 +0.000224873 -0.00127515 -0.000533521 +-0.000224814 0.00127516 -0.000533521 +-9.31025e-05 0.000528201 -0.000533521 +-3.85493e-05 0.000218764 -0.000533521 +2.98023e-08 7.45058e-09 -0.043733 +-0.00292175 0.0165702 -0.0404039 +-0.00539868 0.0306176 -0.0309241 +-0.00705373 0.0400038 -0.016736 +-0.00763495 0.0432999 0 +-0.00705376 0.0400038 0.0167358 +-0.00539871 0.0306176 0.030924 +-0.00292177 0.0165702 0.0404039 +0 0 0.043733 +0.00292177 -0.0165702 0.0404039 +0.00539874 -0.0306177 0.030924 +0.00705376 -0.0400039 0.0167358 +0.00763494 -0.0432999 0 +0.00705379 -0.0400039 -0.016736 +0.00539877 -0.0306177 -0.0309241 +0.0029218 -0.0165702 -0.0404039 +0 0 0 +numsurf 22 +SURF 0x30 +mat 2 +refs 4 +19 0.0664644 1.11802 +20 0.0664644 1.12912 +3 0.0664644 1.25955 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +18 0.0664644 1.12912 +19 0.0664644 1.11802 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +17 0.0664644 1.16073 +18 0.0664644 1.12912 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +13 0.0664644 1.36695 +14 0.0664644 1.31964 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +12 0.0664644 1.39856 +13 0.0664644 1.36695 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +11 0.0664644 1.40966 +12 0.0664644 1.39856 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 4 +4 0.0664644 1.26813 +10 0.0664644 1.39856 +11 0.0664644 1.40966 +23 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 4 +0 0.0664644 1.26384 +7 0.0664644 1.26384 +8 0.0664644 1.31964 +6 0.0664644 1.26458 +SURF 0x30 +mat 2 +refs 3 +6 0.0664644 1.26458 +23 0.0664644 1.26384 +0 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 4 +6 0.0664644 1.26458 +8 0.0664644 1.31964 +9 0.0664644 1.36695 +5 0.0664644 1.26562 +SURF 0x30 +mat 2 +refs 3 +5 0.0664644 1.26562 +23 0.0664644 1.26384 +6 0.0664644 1.26458 +SURF 0x30 +mat 2 +refs 4 +5 0.0664644 1.26562 +9 0.0664644 1.36695 +10 0.0664644 1.39856 +4 0.0664644 1.26813 +SURF 0x30 +mat 2 +refs 3 +4 0.0664644 1.26813 +23 0.0664644 1.26384 +5 0.0664644 1.26562 +SURF 0x30 +mat 2 +refs 4 +3 0.0664644 1.25955 +20 0.0664644 1.12912 +21 0.0664644 1.16073 +2 0.0664644 1.26206 +SURF 0x30 +mat 2 +refs 3 +2 0.0664644 1.26206 +23 0.0664644 1.26384 +3 0.0664644 1.25955 +SURF 0x30 +mat 2 +refs 4 +2 0.0664644 1.26206 +21 0.0664644 1.16073 +22 0.0664644 1.20804 +1 0.0664644 1.2631 +SURF 0x30 +mat 2 +refs 3 +1 0.0664644 1.2631 +23 0.0664644 1.26384 +2 0.0664644 1.26206 +SURF 0x30 +mat 2 +refs 4 +1 0.0664644 1.2631 +22 0.0664644 1.20804 +7 0.0664644 1.26384 +0 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +0 0.0664644 1.26384 +23 0.0664644 1.26384 +1 0.0664644 1.2631 +SURF 0x30 +mat 2 +refs 3 +23 0.0664644 1.26384 +14 0.0664644 1.31964 +15 0.0664644 1.26384 +SURF 0x30 +mat 2 +refs 3 +23 0.0664644 1.26384 +15 0.0664644 1.26384 +16 0.0664644 1.20804 +SURF 0x30 +mat 2 +refs 3 +16 0.0664644 1.20804 +17 0.0664644 1.16073 +23 0.0664644 1.26384 +kids 0 +OBJECT poly +name "Prop" +loc 0.163105 0.0287364 -0.000743467 +crease 45.000000 +numvert 34 +0.0751083 0.0134165 -4.58024e-05 +0.0728688 0.0130216 -4.58024e-05 +0.0758157 0.00940443 -4.58024e-05 +0.0756085 0.0105795 0.00261669 +0.0751083 0.0134165 0.00371953 +0.074608 0.0162534 0.00261669 +0.0744008 0.0174286 -4.58024e-05 +0.0746081 0.0162534 -0.00270831 +0.0751083 0.0134165 -0.00381116 +0.0756086 0.0105795 -0.00270831 +0.0735762 0.00900955 -4.58024e-05 +0.073369 0.0101846 0.00261669 +0.0728688 0.0130216 0.00371953 +0.0723685 0.0158585 0.00261669 +0.0721613 0.0170337 -4.58024e-05 +0.0723685 0.0158585 -0.00270831 +0.0728688 0.0130216 -0.00381116 +0.073369 0.0101846 -0.00270831 +0.0672399 0.0567143 -4.58024e-05 +0.0694048 0.0480017 -0.00310591 +0.0725582 0.0350054 -0.00321769 +0.0747268 0.0169872 -0.00138582 +0.0735626 0.0167185 0.00105333 +0.0688163 0.0332954 0.00383503 +0.0667247 0.0476651 0.00319389 +0.0665334 0.0564573 0.0018676 +0.082207 -0.0293578 0.0012503 +0.0820156 -0.0205659 0.00257662 +0.079924 -0.00619613 0.00321777 +0.0751778 0.0103807 0.000436056 +0.0740142 0.0101121 -0.0020031 +0.0761821 -0.00790597 -0.00383497 +0.0793356 -0.0209024 -0.0037232 +0.0815005 -0.0296153 -0.000663072 +numsurf 38 +SURF 0x30 +mat 0 +refs 4 +16 0.720536 0.714303 +8 0.702192 0.714303 +9 0.702192 0.705307 +17 0.720536 0.705307 +SURF 0x30 +mat 0 +refs 4 +15 0.720536 0.723299 +7 0.702192 0.723299 +8 0.702192 0.714303 +16 0.720536 0.714303 +SURF 0x30 +mat 0 +refs 4 +14 0.720536 0.727026 +6 0.702192 0.727026 +7 0.702192 0.723299 +15 0.720536 0.723299 +SURF 0x30 +mat 0 +refs 4 +13 0.720536 0.723299 +5 0.702192 0.723299 +6 0.702192 0.727026 +14 0.720536 0.727026 +SURF 0x30 +mat 0 +refs 4 +12 0.720536 0.714303 +4 0.702192 0.714303 +5 0.702192 0.723299 +13 0.720536 0.723299 +SURF 0x30 +mat 0 +refs 4 +11 0.720536 0.705307 +3 0.702192 0.705307 +4 0.702192 0.714303 +12 0.720536 0.714303 +SURF 0x30 +mat 0 +refs 4 +10 0.720536 0.701581 +2 0.702192 0.701581 +3 0.702192 0.705307 +11 0.720536 0.705307 +SURF 0x30 +mat 0 +refs 4 +17 0.720536 0.705307 +9 0.702192 0.705307 +2 0.702192 0.701581 +10 0.720536 0.701581 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +16 0.720536 0.714303 +17 0.720536 0.705307 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +15 0.720536 0.723299 +16 0.720536 0.714303 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +14 0.720536 0.727026 +15 0.720536 0.723299 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +13 0.720536 0.723299 +14 0.720536 0.727026 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +12 0.720536 0.714303 +13 0.720536 0.723299 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +11 0.720536 0.705307 +12 0.720536 0.714303 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +10 0.720536 0.701581 +11 0.720536 0.705307 +SURF 0x30 +mat 0 +refs 3 +1 0.720536 0.714303 +17 0.720536 0.705307 +10 0.720536 0.701581 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +9 0.702192 0.705307 +8 0.702192 0.714303 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +8 0.702192 0.714303 +7 0.702192 0.723299 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +7 0.702192 0.723299 +6 0.702192 0.727026 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +6 0.702192 0.727026 +5 0.702192 0.723299 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +5 0.702192 0.723299 +4 0.702192 0.714303 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +4 0.702192 0.714303 +3 0.702192 0.705307 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +3 0.702192 0.705307 +2 0.702192 0.701581 +SURF 0x30 +mat 0 +refs 3 +0 0.702192 0.714303 +2 0.702192 0.701581 +9 0.702192 0.705307 +SURF 0x30 +mat 0 +refs 3 +22 0.709845 0.725296 +21 0.700223 0.725491 +20 0.692207 0.782079 +SURF 0x30 +mat 0 +refs 3 +23 0.724331 0.778849 +22 0.709845 0.725296 +20 0.692207 0.782079 +SURF 0x30 +mat 0 +refs 3 +24 0.720819 0.824175 +23 0.724331 0.778849 +20 0.692207 0.782079 +SURF 0x30 +mat 0 +refs 3 +24 0.720819 0.824175 +20 0.692207 0.782079 +19 0.699055 0.823758 +SURF 0x30 +mat 0 +refs 3 +25 0.710022 0.851318 +24 0.720819 0.824175 +19 0.699055 0.823758 +SURF 0x30 +mat 0 +refs 3 +19 0.699055 0.823758 +18 0.704048 0.851725 +25 0.710022 0.851318 +SURF 0x31 +mat 0 +refs 8 +18 0.704048 0.851725 +19 0.699055 0.823758 +20 0.692207 0.782079 +21 0.700223 0.725491 +22 0.709845 0.725296 +23 0.724331 0.778849 +24 0.720819 0.824175 +25 0.710022 0.851318 +SURF 0x31 +mat 0 +refs 8 +33 0.71169 0.578501 +32 0.716682 0.606468 +31 0.72353 0.648147 +30 0.715513 0.704734 +29 0.705892 0.70493 +28 0.691406 0.651376 +27 0.694917 0.60605 +26 0.705715 0.578908 +SURF 0x30 +mat 0 +refs 3 +32 0.716682 0.606468 +33 0.71169 0.578501 +26 0.705715 0.578908 +SURF 0x30 +mat 0 +refs 3 +26 0.705715 0.578908 +27 0.694917 0.60605 +32 0.716682 0.606468 +SURF 0x30 +mat 0 +refs 3 +27 0.694917 0.60605 +31 0.72353 0.648147 +32 0.716682 0.606468 +SURF 0x30 +mat 0 +refs 3 +27 0.694917 0.60605 +28 0.691406 0.651376 +31 0.72353 0.648147 +SURF 0x30 +mat 0 +refs 3 +28 0.691406 0.651376 +29 0.705892 0.70493 +31 0.72353 0.648147 +SURF 0x30 +mat 0 +refs 3 +29 0.705892 0.70493 +30 0.715513 0.704734 +31 0.72353 0.648147 +kids 0 +OBJECT poly +name "PropSpinner" +loc 0.119138 0.052988 -0.000571553 +texture "EasyStarV2Weiss.jpg" +crease 45.000000 +numvert 80 +0.133909 -0.00842402 -0.000284553 +0.133077 -0.0113629 -0.000308629 +0.133037 -0.0111325 -0.00147942 +0.133893 -0.0083344 -0.000499513 +0.132919 -0.0104633 -0.00246096 +0.132746 -0.00948482 -0.0031234 +0.133856 -0.0081211 -0.000586994 +0.132542 -0.00832831 -0.00333689 +0.132339 -0.0071752 -0.003103 +0.133818 -0.00790937 -0.000495736 +0.132168 -0.00620853 -0.00242328 +0.132053 -0.00555605 -0.00142995 +0.133803 -0.00782308 -0.000279214 +0.132016 -0.00534583 -0.000255227 +0.132057 -0.00557614 0.000915602 +0.133819 -0.00791298 -6.42389e-05 +0.132175 -0.00624561 0.00189724 +0.132347 -0.0072238 0.00255971 +0.133856 -0.0081263 2.32495e-05 +0.132551 -0.00838076 0.00277311 +0.13304 -0.0111527 0.000866078 +0.132755 -0.00953365 0.00253908 +0.133894 -0.00833801 -6.80201e-05 +0.132925 -0.0105003 0.00185936 +0.118451 -0.0201506 -0.00036218 +0.130126 -0.0144026 -0.000330202 +0.125553 -0.017183 -0.00034729 +0.117975 -0.0174497 -0.00682212 +0.125453 -0.0166189 -0.00321397 +0.129839 -0.012772 -0.00423069 +0.125164 -0.0149798 -0.0056172 +0.116845 -0.0110419 -0.00945083 +0.124742 -0.012585 -0.00723909 +0.129156 -0.00890313 -0.00581803 +0.124243 -0.00975243 -0.00776178 +0.115723 -0.00467987 -0.00670866 +0.123745 -0.00692946 -0.0071891 +0.128479 -0.00506202 -0.00416252 +0.123327 -0.00456257 -0.00552487 +0.115266 -0.00209082 -0.000201695 +0.123046 -0.00296501 -0.00309277 +0.128203 -0.0034987 -0.000233561 +0.122955 -0.00245031 -0.000216506 +0.115743 -0.00479154 0.0062583 +0.123054 -0.00301445 0.00265018 +0.128491 -0.00512936 0.00366704 +0.123343 -0.00465347 0.0050535 +0.116873 -0.0111997 0.00888723 +0.123766 -0.00704856 0.0066755 +0.129173 -0.00899831 0.00525423 +0.124265 -0.00988116 0.0071981 +0.125462 -0.0166683 0.00252902 +0.117994 -0.0175615 0.00614495 +0.124763 -0.0127041 0.00662528 +0.12985 -0.0128396 0.00359857 +0.12518 -0.015071 0.00496107 +0.133905 -0.00840107 -0.000401482 +0.133876 -0.00823652 -0.00056567 +0.133835 -0.00800569 -0.000563622 +0.133807 -0.00784429 -0.00039652 +0.133807 -0.00784603 -0.000162281 +0.133836 -0.00801057 1.93715e-06 +0.133877 -0.0082414 -1.3411e-07 +0.133905 -0.00840318 -0.000167236 +0.118329 -0.019459 -0.00387622 +0.130052 -0.0139852 -0.00245193 +0.117457 -0.0145139 -0.00881014 +0.129526 -0.0109993 -0.00543112 +0.116235 -0.00758141 -0.00874872 +0.128788 -0.00681381 -0.00539423 +0.115378 -0.0027217 -0.00372738 +0.128271 -0.00387971 -0.00236245 +0.115388 -0.00278241 0.00331223 +0.128277 -0.00391629 0.00188825 +0.11626 -0.00772737 0.00824654 +0.128804 -0.006902 0.0048675 +0.11834 -0.0195196 0.00316367 +0.117483 -0.0146601 0.00818504 +0.129542 -0.0110878 0.00483024 +0.130059 -0.0140215 0.0017986 +numsurf 128 +SURF 0x30 +mat 3 +refs 3 +2 0.642951 0.734598 +25 0.64619 0.733901 +65 0.64619 0.733999 +SURF 0x30 +mat 3 +refs 3 +25 0.64619 0.733901 +2 0.642951 0.734598 +1 0.642951 0.73455 +SURF 0x30 +mat 3 +refs 3 +20 0.642951 0.734593 +25 0.64619 0.733901 +1 0.642951 0.73455 +SURF 0x30 +mat 3 +refs 3 +25 0.64619 0.733901 +20 0.642951 0.734593 +79 0.64619 0.73399 +SURF 0x30 +mat 3 +refs 3 +20 0.642951 0.734593 +0 0.641697 0.735096 +63 0.641697 0.735101 +SURF 0x30 +mat 3 +refs 3 +0 0.641697 0.735096 +20 0.642951 0.734593 +1 0.642951 0.73455 +SURF 0x30 +mat 3 +refs 3 +0 0.641697 0.735096 +2 0.642951 0.734598 +56 0.641697 0.735101 +SURF 0x30 +mat 3 +refs 3 +2 0.642951 0.734598 +0 0.641697 0.735096 +1 0.642951 0.73455 +SURF 0x30 +mat 3 +refs 3 +5 0.642951 0.734939 +29 0.64619 0.734282 +67 0.64619 0.734695 +SURF 0x30 +mat 3 +refs 3 +29 0.64619 0.734282 +5 0.642951 0.734939 +4 0.642951 0.734737 +SURF 0x30 +mat 3 +refs 3 +4 0.642951 0.734737 +65 0.64619 0.733999 +29 0.64619 0.734282 +SURF 0x30 +mat 3 +refs 3 +65 0.64619 0.733999 +4 0.642951 0.734737 +2 0.642951 0.734598 +SURF 0x30 +mat 3 +refs 3 +56 0.641697 0.735101 +4 0.642951 0.734737 +3 0.641697 0.735119 +SURF 0x30 +mat 3 +refs 3 +4 0.642951 0.734737 +56 0.641697 0.735101 +2 0.642951 0.734598 +SURF 0x30 +mat 3 +refs 3 +3 0.641697 0.735119 +5 0.642951 0.734939 +57 0.641697 0.735144 +SURF 0x30 +mat 3 +refs 3 +5 0.642951 0.734939 +3 0.641697 0.735119 +4 0.642951 0.734737 +SURF 0x30 +mat 3 +refs 3 +8 0.642951 0.735418 +33 0.64619 0.735185 +69 0.64619 0.735672 +SURF 0x30 +mat 3 +refs 3 +33 0.64619 0.735185 +8 0.642951 0.735418 +7 0.642951 0.735179 +SURF 0x30 +mat 3 +refs 3 +7 0.642951 0.735179 +67 0.64619 0.734695 +33 0.64619 0.735185 +SURF 0x30 +mat 3 +refs 3 +67 0.64619 0.734695 +7 0.642951 0.735179 +5 0.642951 0.734939 +SURF 0x30 +mat 3 +refs 3 +57 0.641697 0.735144 +7 0.642951 0.735179 +6 0.641697 0.735174 +SURF 0x30 +mat 3 +refs 3 +7 0.642951 0.735179 +57 0.641697 0.735144 +5 0.642951 0.734939 +SURF 0x30 +mat 3 +refs 3 +58 0.641697 0.735204 +7 0.642951 0.735179 +8 0.642951 0.735418 +SURF 0x30 +mat 3 +refs 3 +7 0.642951 0.735179 +58 0.641697 0.735204 +6 0.641697 0.735174 +SURF 0x30 +mat 3 +refs 3 +71 0.64619 0.736357 +10 0.642951 0.735618 +37 0.64619 0.736081 +SURF 0x30 +mat 3 +refs 3 +10 0.642951 0.735618 +71 0.64619 0.736357 +11 0.642951 0.735754 +SURF 0x30 +mat 3 +refs 3 +10 0.642951 0.735618 +69 0.64619 0.735672 +37 0.64619 0.736081 +SURF 0x30 +mat 3 +refs 3 +69 0.64619 0.735672 +10 0.642951 0.735618 +8 0.642951 0.735418 +SURF 0x30 +mat 3 +refs 3 +9 0.641697 0.735229 +8 0.642951 0.735418 +10 0.642951 0.735618 +SURF 0x30 +mat 3 +refs 3 +8 0.642951 0.735418 +9 0.641697 0.735229 +58 0.641697 0.735204 +SURF 0x30 +mat 3 +refs 3 +59 0.641697 0.735246 +10 0.642951 0.735618 +11 0.642951 0.735754 +SURF 0x30 +mat 3 +refs 3 +10 0.642951 0.735618 +59 0.641697 0.735246 +9 0.641697 0.735229 +SURF 0x30 +mat 3 +refs 3 +41 0.64619 0.736446 +14 0.642951 0.735749 +13 0.642951 0.735797 +SURF 0x30 +mat 3 +refs 3 +14 0.642951 0.735749 +41 0.64619 0.736446 +73 0.64619 0.736348 +SURF 0x30 +mat 3 +refs 3 +71 0.64619 0.736357 +13 0.642951 0.735797 +11 0.642951 0.735754 +SURF 0x30 +mat 3 +refs 3 +13 0.642951 0.735797 +71 0.64619 0.736357 +41 0.64619 0.736446 +SURF 0x30 +mat 3 +refs 3 +12 0.641697 0.735251 +11 0.642951 0.735754 +13 0.642951 0.735797 +SURF 0x30 +mat 3 +refs 3 +11 0.642951 0.735754 +12 0.641697 0.735251 +59 0.641697 0.735246 +SURF 0x30 +mat 3 +refs 3 +14 0.642951 0.735749 +12 0.641697 0.735251 +13 0.642951 0.735797 +SURF 0x30 +mat 3 +refs 3 +12 0.641697 0.735251 +14 0.642951 0.735749 +60 0.641697 0.735246 +SURF 0x30 +mat 3 +refs 3 +17 0.642951 0.735408 +45 0.64619 0.736065 +75 0.64619 0.735652 +SURF 0x30 +mat 3 +refs 3 +45 0.64619 0.736065 +17 0.642951 0.735408 +16 0.642951 0.735611 +SURF 0x30 +mat 3 +refs 3 +73 0.64619 0.736348 +16 0.642951 0.735611 +14 0.642951 0.735749 +SURF 0x30 +mat 3 +refs 3 +16 0.642951 0.735611 +73 0.64619 0.736348 +45 0.64619 0.736065 +SURF 0x30 +mat 3 +refs 3 +16 0.642951 0.735611 +60 0.641697 0.735246 +14 0.642951 0.735749 +SURF 0x30 +mat 3 +refs 3 +60 0.641697 0.735246 +16 0.642951 0.735611 +15 0.641697 0.735228 +SURF 0x30 +mat 3 +refs 3 +17 0.642951 0.735408 +15 0.641697 0.735228 +16 0.642951 0.735611 +SURF 0x30 +mat 3 +refs 3 +15 0.641697 0.735228 +17 0.642951 0.735408 +61 0.641697 0.735203 +SURF 0x30 +mat 3 +refs 3 +21 0.642951 0.734929 +49 0.64619 0.735162 +78 0.64619 0.734675 +SURF 0x30 +mat 3 +refs 3 +49 0.64619 0.735162 +21 0.642951 0.734929 +19 0.642951 0.735168 +SURF 0x30 +mat 3 +refs 3 +19 0.642951 0.735168 +75 0.64619 0.735652 +49 0.64619 0.735162 +SURF 0x30 +mat 3 +refs 3 +75 0.64619 0.735652 +19 0.642951 0.735168 +17 0.642951 0.735408 +SURF 0x30 +mat 3 +refs 3 +17 0.642951 0.735408 +18 0.641697 0.735173 +61 0.641697 0.735203 +SURF 0x30 +mat 3 +refs 3 +18 0.641697 0.735173 +17 0.642951 0.735408 +19 0.642951 0.735168 +SURF 0x30 +mat 3 +refs 3 +19 0.642951 0.735168 +62 0.641697 0.735143 +18 0.641697 0.735173 +SURF 0x30 +mat 3 +refs 3 +62 0.641697 0.735143 +19 0.642951 0.735168 +21 0.642951 0.734929 +SURF 0x30 +mat 3 +refs 3 +23 0.642951 0.734729 +79 0.64619 0.73399 +20 0.642951 0.734593 +SURF 0x30 +mat 3 +refs 3 +79 0.64619 0.73399 +23 0.642951 0.734729 +54 0.64619 0.734266 +SURF 0x30 +mat 3 +refs 3 +23 0.642951 0.734729 +78 0.64619 0.734675 +54 0.64619 0.734266 +SURF 0x30 +mat 3 +refs 3 +78 0.64619 0.734675 +23 0.642951 0.734729 +21 0.642951 0.734929 +SURF 0x30 +mat 3 +refs 3 +21 0.642951 0.734929 +22 0.641697 0.735118 +62 0.641697 0.735143 +SURF 0x30 +mat 3 +refs 3 +22 0.641697 0.735118 +21 0.642951 0.734929 +23 0.642951 0.734729 +SURF 0x30 +mat 3 +refs 3 +23 0.642951 0.734729 +63 0.641697 0.735101 +22 0.641697 0.735118 +SURF 0x30 +mat 3 +refs 3 +63 0.641697 0.735101 +23 0.642951 0.734729 +20 0.642951 0.734593 +SURF 0x30 +mat 3 +refs 3 +28 0.650894 0.733526 +24 0.658602 0.732704 +64 0.658602 0.732893 +SURF 0x30 +mat 3 +refs 3 +24 0.658602 0.732704 +28 0.650894 0.733526 +26 0.650894 0.73339 +SURF 0x30 +mat 3 +refs 3 +51 0.650894 0.733514 +24 0.658602 0.732704 +26 0.650894 0.73339 +SURF 0x30 +mat 3 +refs 3 +24 0.658602 0.732704 +51 0.650894 0.733514 +76 0.658602 0.732876 +SURF 0x30 +mat 3 +refs 3 +79 0.64619 0.73399 +26 0.650894 0.73339 +25 0.64619 0.733901 +SURF 0x30 +mat 3 +refs 3 +26 0.650894 0.73339 +79 0.64619 0.73399 +51 0.650894 0.733514 +SURF 0x30 +mat 3 +refs 3 +65 0.64619 0.733999 +26 0.650894 0.73339 +28 0.650894 0.733526 +SURF 0x30 +mat 3 +refs 3 +26 0.650894 0.73339 +65 0.64619 0.733999 +25 0.64619 0.733901 +SURF 0x30 +mat 3 +refs 3 +32 0.650894 0.734503 +27 0.658602 0.733442 +66 0.658602 0.734245 +SURF 0x30 +mat 3 +refs 3 +27 0.658602 0.733442 +32 0.650894 0.734503 +30 0.650894 0.733923 +SURF 0x30 +mat 3 +refs 3 +30 0.650894 0.733923 +64 0.658602 0.732893 +27 0.658602 0.733442 +SURF 0x30 +mat 3 +refs 3 +64 0.658602 0.732893 +30 0.650894 0.733923 +28 0.650894 0.733526 +SURF 0x30 +mat 3 +refs 3 +29 0.64619 0.734282 +28 0.650894 0.733526 +30 0.650894 0.733923 +SURF 0x30 +mat 3 +refs 3 +28 0.650894 0.733526 +29 0.64619 0.734282 +65 0.64619 0.733999 +SURF 0x30 +mat 3 +refs 3 +67 0.64619 0.734695 +30 0.650894 0.733923 +32 0.650894 0.734503 +SURF 0x30 +mat 3 +refs 3 +30 0.650894 0.733923 +67 0.64619 0.734695 +29 0.64619 0.734282 +SURF 0x30 +mat 3 +refs 3 +36 0.650894 0.735873 +31 0.658602 0.735195 +68 0.658602 0.736142 +SURF 0x30 +mat 3 +refs 3 +31 0.658602 0.735195 +36 0.650894 0.735873 +34 0.650894 0.735189 +SURF 0x30 +mat 3 +refs 3 +34 0.650894 0.735189 +66 0.658602 0.734245 +31 0.658602 0.735195 +SURF 0x30 +mat 3 +refs 3 +66 0.658602 0.734245 +34 0.650894 0.735189 +32 0.650894 0.734503 +SURF 0x30 +mat 3 +refs 3 +33 0.64619 0.735185 +32 0.650894 0.734503 +34 0.650894 0.735189 +SURF 0x30 +mat 3 +refs 3 +32 0.650894 0.734503 +33 0.64619 0.735185 +67 0.64619 0.734695 +SURF 0x30 +mat 3 +refs 3 +69 0.64619 0.735672 +34 0.650894 0.735189 +36 0.650894 0.735873 +SURF 0x30 +mat 3 +refs 3 +34 0.650894 0.735189 +69 0.64619 0.735672 +33 0.64619 0.735185 +SURF 0x30 +mat 3 +refs 3 +70 0.658602 0.737471 +38 0.650894 0.736446 +35 0.658602 0.736935 +SURF 0x30 +mat 3 +refs 3 +38 0.650894 0.736446 +70 0.658602 0.737471 +40 0.650894 0.736833 +SURF 0x30 +mat 3 +refs 3 +38 0.650894 0.736446 +68 0.658602 0.736142 +35 0.658602 0.736935 +SURF 0x30 +mat 3 +refs 3 +68 0.658602 0.736142 +38 0.650894 0.736446 +36 0.650894 0.735873 +SURF 0x30 +mat 3 +refs 3 +37 0.64619 0.736081 +36 0.650894 0.735873 +38 0.650894 0.736446 +SURF 0x30 +mat 3 +refs 3 +36 0.650894 0.735873 +37 0.64619 0.736081 +69 0.64619 0.735672 +SURF 0x30 +mat 3 +refs 3 +40 0.650894 0.736833 +37 0.64619 0.736081 +38 0.650894 0.736446 +SURF 0x30 +mat 3 +refs 3 +37 0.64619 0.736081 +40 0.650894 0.736833 +71 0.64619 0.736357 +SURF 0x30 +mat 3 +refs 3 +39 0.658602 0.737643 +44 0.650894 0.736821 +42 0.650894 0.736957 +SURF 0x30 +mat 3 +refs 3 +44 0.650894 0.736821 +39 0.658602 0.737643 +72 0.658602 0.737454 +SURF 0x30 +mat 3 +refs 3 +70 0.658602 0.737471 +42 0.650894 0.736957 +40 0.650894 0.736833 +SURF 0x30 +mat 3 +refs 3 +42 0.650894 0.736957 +70 0.658602 0.737471 +39 0.658602 0.737643 +SURF 0x30 +mat 3 +refs 3 +40 0.650894 0.736833 +41 0.64619 0.736446 +71 0.64619 0.736357 +SURF 0x30 +mat 3 +refs 3 +41 0.64619 0.736446 +40 0.650894 0.736833 +42 0.650894 0.736957 +SURF 0x30 +mat 3 +refs 3 +42 0.650894 0.736957 +73 0.64619 0.736348 +41 0.64619 0.736446 +SURF 0x30 +mat 3 +refs 3 +73 0.64619 0.736348 +42 0.650894 0.736957 +44 0.650894 0.736821 +SURF 0x30 +mat 3 +refs 3 +48 0.650894 0.735844 +43 0.658602 0.736905 +74 0.658602 0.736102 +SURF 0x30 +mat 3 +refs 3 +43 0.658602 0.736905 +48 0.650894 0.735844 +46 0.650894 0.736424 +SURF 0x30 +mat 3 +refs 3 +72 0.658602 0.737454 +46 0.650894 0.736424 +44 0.650894 0.736821 +SURF 0x30 +mat 3 +refs 3 +46 0.650894 0.736424 +72 0.658602 0.737454 +43 0.658602 0.736905 +SURF 0x30 +mat 3 +refs 3 +44 0.650894 0.736821 +45 0.64619 0.736065 +73 0.64619 0.736348 +SURF 0x30 +mat 3 +refs 3 +45 0.64619 0.736065 +44 0.650894 0.736821 +46 0.650894 0.736424 +SURF 0x30 +mat 3 +refs 3 +75 0.64619 0.735652 +46 0.650894 0.736424 +48 0.650894 0.735844 +SURF 0x30 +mat 3 +refs 3 +46 0.650894 0.736424 +75 0.64619 0.735652 +45 0.64619 0.736065 +SURF 0x30 +mat 3 +refs 3 +53 0.650894 0.734474 +47 0.658602 0.735152 +77 0.658602 0.734205 +SURF 0x30 +mat 3 +refs 3 +47 0.658602 0.735152 +53 0.650894 0.734474 +50 0.650894 0.735158 +SURF 0x30 +mat 3 +refs 3 +50 0.650894 0.735158 +74 0.658602 0.736102 +47 0.658602 0.735152 +SURF 0x30 +mat 3 +refs 3 +74 0.658602 0.736102 +50 0.650894 0.735158 +48 0.650894 0.735844 +SURF 0x30 +mat 3 +refs 3 +49 0.64619 0.735162 +48 0.650894 0.735844 +50 0.650894 0.735158 +SURF 0x30 +mat 3 +refs 3 +48 0.650894 0.735844 +49 0.64619 0.735162 +75 0.64619 0.735652 +SURF 0x30 +mat 3 +refs 3 +78 0.64619 0.734675 +50 0.650894 0.735158 +53 0.650894 0.734474 +SURF 0x30 +mat 3 +refs 3 +50 0.650894 0.735158 +78 0.64619 0.734675 +49 0.64619 0.735162 +SURF 0x30 +mat 3 +refs 3 +55 0.650894 0.733901 +76 0.658602 0.732876 +51 0.650894 0.733514 +SURF 0x30 +mat 3 +refs 3 +76 0.658602 0.732876 +55 0.650894 0.733901 +52 0.658602 0.733412 +SURF 0x30 +mat 3 +refs 3 +55 0.650894 0.733901 +77 0.658602 0.734205 +52 0.658602 0.733412 +SURF 0x30 +mat 3 +refs 3 +77 0.658602 0.734205 +55 0.650894 0.733901 +53 0.650894 0.734474 +SURF 0x30 +mat 3 +refs 3 +54 0.64619 0.734266 +53 0.650894 0.734474 +55 0.650894 0.733901 +SURF 0x30 +mat 3 +refs 3 +53 0.650894 0.734474 +54 0.64619 0.734266 +78 0.64619 0.734675 +SURF 0x30 +mat 3 +refs 3 +54 0.64619 0.734266 +51 0.650894 0.733514 +79 0.64619 0.73399 +SURF 0x30 +mat 3 +refs 3 +51 0.650894 0.733514 +54 0.64619 0.734266 +55 0.650894 0.733901 +kids 0 diff --git a/resources/flightgear/Aircraft/EasyStar/Models/easystar.xml b/resources/flightgear/Aircraft/EasyStar/Models/easystar.xml new file mode 100644 index 0000000000000000000000000000000000000000..34b60c161edc74f824c4ae9cc4ee5e3fcd6e0693 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/Models/easystar.xml @@ -0,0 +1,7 @@ + + + + + easystar.ac + + diff --git a/resources/flightgear/Aircraft/EasyStar/Models/wing.jpg b/resources/flightgear/Aircraft/EasyStar/Models/wing.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fe7d19bc05c2cb21bd63a5daa803a1e07143564 Binary files /dev/null and b/resources/flightgear/Aircraft/EasyStar/Models/wing.jpg differ diff --git a/resources/flightgear/Aircraft/EasyStar/easystar.xml b/resources/flightgear/Aircraft/EasyStar/easystar.xml new file mode 100644 index 0000000000000000000000000000000000000000..742c6cb6318b5269fb93c35561020a5362a506b3 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/easystar.xml @@ -0,0 +1,643 @@ + + + + + + Ron Jensen Aeromatic v 0.91 + 2010-03-28 + $Revison: $ + Models a EasyStar. + + + + + + 2.570 + 4.500 + 0.000 + 0.571 + 0.384 + 1.752 + 0.257 + 1.752 + + 0.080 + 0.00 + 0.00 + + + -0.1 + 0.00 + 0.00 + + + 0 + 0 + 0 + + + + + 1.636 + 0.649 + 2.125 + 0.9 + + 0.078 + 0.00 + -0.035 + + + + + + + + 0.1 + 0.0 + -0.1 + + 0.800 + 0.500 + 0.500 + 20.0 + 7.0 + 4.0 + 0 + NONE + 0 + + + + -0.26 + 0.00 + -0.06 + + 0.800 + 0.500 + 0.500 + 20.0 + 7.0 + 4.0 + 0 + NONE + 0 + + + + + 0.6 + 0.0 + -0.082 + + 0.80 + 0.50 + 20.0 + 7.0 + 4.0 + + + + + 0.14 + -0.707 + 0.08 + + 0.80 + 0.50 + 20.0 + 7.0 + 4.0 + + + + + 0.14 + 0.707 + -0.08 + + 0.80 + 0.50 + 20.0 + 7.0 + 4.0 + + + + + + + + 0.216 + 0.00 + 0.040 + + + -10.00 + 0.00 + 0.00 + + 0 + + + 0.238 + 0.00 + 0.042 + + + -10.00 + 0.00 + 0.00 + + + + + + 0.078 + 0.00 + -0.04 + + .60 + .60 + + + + + + + + fcs/elevator-cmd-norm + fcs/pitch-trim-cmd-norm + + -1 + 1 + + + + + fcs/pitch-trim-sum + + -0.35 + 0.35 + + fcs/elevator-pos-rad + + + + fcs/elevator-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/elevator-pos-norm + + + + + + + + -fcs/aileron-cmd-norm + fcs/yaw-trim-cmd-norm + + -1.0 + 1.0 + + + + + fcs/rudder-command-sum + + -0.35 + 0.35 + + fcs/rudder-pos-rad + + + + fcs/rudder-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/rudder-pos-norm + + + + + + fcs/throttle-cmd-norm + 0 + + 0.0 + 1.0 + + + -0.1 + 1.0 + + fcs/throttle-pos-norm + + + + + + + + Change in lift due to ground effect factor + + + aero/h_b-mac-ft + + 0.0 1.203 + 0.1 1.127 + 0.15 1.090 + 0.2 1.073 + 0.3 1.046 + 0.4 1.055 + 0.5 1.019 + 0.6 1.013 + 0.7 1.008 + 0.8 1.006 + 0.9 1.003 + 1.0 1.002 + 1.1 1.0 + +
+
+
+ + + Change in drag due to ground effect + + + aero/h_b-mac-ft + + 0.0 0.480 + 0.1 0.515 + 0.15 0.629 + 0.2 0.709 + 0.3 0.815 + 0.4 0.882 + 0.5 0.928 + 0.6 0.962 + 0.7 0.988 + 0.8 1.0 + 0.9 1.0 + 1.0 1.0 + 1.1 1.0 + +
+
+
+ + + + Lift_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + aero/function/ground-effect-factor-lift + + aero/alpha-rad + + -3.1416 0.0 + -2.62 0.86 + -2.36 1.0 + -2.09 0.86 + -1.57 -0.00 + -1.05 -0.86 + -0.79 -1.0 + -0.52 -0.50 + -0.39 -0.38 + -0.20 -0.850 + 0.00 0.250 + 0.21 1.400 + 0.60 0.710 + 0.79 1.0 + 1.05 0.86 + 1.57 0.00 + 2.09 -0.86 + 2.36 -1.0 + 2.62 -0.86 + 3.1416 0.0 + +
+
+
+ + + Lift_due_to_Elevator_Deflection + + aero/function/ground-effect-factor-lift + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-rad + 0.2 + + + +
+ + + + + Drag_at_zero_lift + + aero/qbar-psf + metrics/Sw-sqft + aero/function/ground-effect-factor-drag + + aero/alpha-rad + + -3.1416 0.012 + -1.57 1.500 + -0.21 0.016 + 0.00 0.012 + 0.21 0.016 + 1.57 1.500 + 3.1416 0.012 + +
+
+
+ + + Induced_drag + + aero/qbar-psf + metrics/Sw-sqft + aero/cl-squared + 0.023 + + + + + Drag_due_to_mach + + aero/qbar-psf + metrics/Sw-sqft + + velocities/mach + + 0.00 0.000 + 0.7 0.000 + 1.10 0.023 + 1.80 0.015 + +
+
+
+ + + Drag_due_to_sideslip + + aero/qbar-psf + metrics/Sw-sqft + + aero/beta-rad + + -3.1416 0.0 + -1.57 1.230 + -0.26 0.050 + 0.00 0.000 + 0.26 0.050 + 1.57 1.230 + 3.1416 0.0 + +
+
+
+ + + Drag_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-rad + 0.04 + + + +
+ + + + + Side_force_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + aero/beta-rad + -1 + + + + + + + + + Roll_moment_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + -0.1 + + + + + Roll_moment_due_to_roll_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/p-aero-rad_sec + -0.4 + + + + + Roll_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + 0.15 + + + + + Roll_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + 0.01 + + + + + + + + + Pitch_moment_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + + aero/alpha-rad + + -3.14 0.0 + -2.62 0.2252 + -2.36 0.26 + -2.09 0.2252 + -1.57 0.0 + -1.05 -0.2252 + -0.79 -0.26 + -0.52 -0.2252 + -0.39 -0.1838 + -0.26 -0.2588 + 0.0 0.0 + 0.26 0.2588 + 0.39 0.1838 + 0.52 0.2252 + 0.79 0.26 + 1.05 0.2252 + 1.57 0.0 + 2.09 -0.2252 + 2.36 -0.26 + 2.62 -0.2252 + 3.14 0.0 + +
+ -0.5 +
+
+ + + Pitch_moment_due_to_elevator + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + fcs/elevator-pos-rad + + velocities/mach + + 0.0 -0.800 + 2.0 -0.200 + +
+
+
+ + + Pitch_moment_due_to_pitch_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + velocities/q-aero-rad_sec + -9 + + + + + Pitch_moment_due_to_alpha_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + aero/alphadot-rad_sec + -12 + + + +
+ + + + + Yaw_moment_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + 0.12 + + + + + Yaw_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + -0.15 + + + + + Yaw_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + -0.03 + + + + + +
+ +
diff --git a/resources/flightgear/Aircraft/EasyStar/readme.txt b/resources/flightgear/Aircraft/EasyStar/readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce0b8d625ed5d810ecf5ce772798decf4ff5729e --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/readme.txt @@ -0,0 +1,15 @@ +Origional readme: +************************************************************************ +* MULTIPLEX Modellsport GmbH & Co. KG * +* Neuer Weg 2, D-75223 Niefern, Germany * +************************************************************************ + +Wir haben die Flugeigenschaften so genau wie möglich +dem realen Modell angenähert. In extremen Flugsituationen sind jedoch Ab- +weichungen möglich. + + +This Model was created for FMS and now modified by Ken Northup using AC3D and is freely distributed. Please feel free to modify as you wish using AC3D. If you modify and make a better paint scheme, feel free to contact me via email, as I would love to see different versions created for Clearview RC Simulator. To Install, simply extract the file and put the folder under the models in the Clearview RC Simulator. The next time you run Clearview, it will appear under the Airplane selections. + +Ken Northup +Helos360@bellsouth.net \ No newline at end of file diff --git a/resources/flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt b/resources/flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt new file mode 100644 index 0000000000000000000000000000000000000000..0725d6b379159dd64ba8fba4672afea9278a4c59 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/readme_qgroundcontrol.txt @@ -0,0 +1,5 @@ +The EasyStar model is from http://gitorious.org/ron-s-hanger/easystar-rc (fork at https://gitorious.org/~thomasgubler/ron-s-hanger/thomasgublers-easystar-rc) + +I slightly adapted some files in order to make the model work when it's not located in the default flightgear aircraft folder. + +-Thomas Gubler diff --git a/resources/flightgear/Aircraft/EasyStar/reset00.xml b/resources/flightgear/Aircraft/EasyStar/reset00.xml new file mode 100644 index 0000000000000000000000000000000000000000..7d27b824486f7fafdd6faacca1e53b55d03ff722 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/reset00.xml @@ -0,0 +1,16 @@ + + + + 0.0 + 0.0 + 0.0 + 47.0 + 122.0 + 0.0 + 0.0 + 150.0 + 4.7 + diff --git a/resources/flightgear/Aircraft/EasyStar/reset01.xml b/resources/flightgear/Aircraft/EasyStar/reset01.xml new file mode 100644 index 0000000000000000000000000000000000000000..0ed8db936ba4af5b2393feaab0500a5c70b9fbf2 --- /dev/null +++ b/resources/flightgear/Aircraft/EasyStar/reset01.xml @@ -0,0 +1,15 @@ + + + + 0.0 + 0.0 + 0.0 + 47.0 + 122.0 + 0.0 + 0.0 + 150.0 + 1000.7 + diff --git a/resources/flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 b/resources/flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 new file mode 100644 index 0000000000000000000000000000000000000000..c85509bb879e38ce222f55a9aefbfdff00a8de68 --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/.#Malolo1-set.xml.1.1 @@ -0,0 +1,103 @@ + + + + + + + Malolo1(R/C) + Innis Cunningham, Josh Wilson + 0.0 + + + Aircraft/Malolo1/Malolo1-splash.rgb + + + jsb + Malolo1 + 0.8 + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/Malolo1/Models/Malolo1.xml + + + + true + + 0.0 + 0.26 + 0.34 + -8 + + + + -15.0 + + YardStik 110 (Sig Mfg) + Cruise speed: 60 mph + Never-exceed (Vne): 85 mph + Best Glide (Vglide): 20 mph + Maneuvering (Va): 50 mph + Approach speed: 15-25 mph + Stall speed (Vs): 10 mph + + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + 1.0 + + + + + 700 + + + + + + + 48.0 + 56.0 + 400.0 + 1000.0 + 6000.0 + 0.008 + 0.35 + 0.001 + + + + diff --git a/resources/flightgear/Aircraft/Malolo1/COPYING b/resources/flightgear/Aircraft/Malolo1/COPYING new file mode 100644 index 0000000000000000000000000000000000000000..d60c31a97a544b53039088d14fe9114583c0efc3 --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/resources/flightgear/Aircraft/Malolo1/Engines/18x8.xml b/resources/flightgear/Aircraft/Malolo1/Engines/18x8.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f4aae8cf672c85b47d0f2a469a496641f2b0c5e --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Engines/18x8.xml @@ -0,0 +1,51 @@ + + + + + + 0.00085 + 18.0 + 2 + 30 + 30 + + + + 0.0 0.0776 + 0.1 0.0744 + 0.2 0.0712 + 0.3 0.0655 + 0.4 0.0588 + 0.5 0.0518 + 0.6 0.0419 + 0.7 0.0318 + 0.8 0.0172 + 1.0 -0.0058 + 1.4 -0.0549 + +
+ + + + 0.0 0.0902 + 0.1 0.0893 + 0.2 0.0880 + 0.3 0.0860 + 0.4 0.0810 + 0.5 0.0742 + 0.6 0.0681 + 0.7 0.0572 + 0.8 0.0467 + 1.0 0.0167 + 1.4 -0.0803 + +
+ +
diff --git a/resources/flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml b/resources/flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml new file mode 100644 index 0000000000000000000000000000000000000000..86d43a827e807510a32e0328dc425a9f219ef9fa --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Engines/Zenoah_G-26A.xml @@ -0,0 +1,8 @@ + + + + + + + 2207.27 + diff --git a/resources/flightgear/Aircraft/Malolo1/Malolo1-set.xml b/resources/flightgear/Aircraft/Malolo1/Malolo1-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..67eda11d3170dd79e969057e215214d5e0ed8b63 --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Malolo1-set.xml @@ -0,0 +1,129 @@ + + + + + + + Malolo1(R/C) + Innis Cunningham, Josh Wilson + 0.0 + + + Aircraft/Malolo1/Malolo1-splash.rgb + + + jsb + Malolo1 + 0.8 + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/Malolo1/Models/Malolo1.xml + + + + true + + 0.0 + 0.26 + 0.34 + -8 + + + + -15.0 + + YardStik 110 (Sig Mfg) + Cruise speed: 60 mph + Never-exceed (Vne): 85 mph + Best Glide (Vglide): 20 mph + Maneuvering (Va): 50 mph + Approach speed: 15-25 mph + Stall speed (Vs): 10 mph + + + + + + true + + + + nasal + + + + + + + + + + + + + Aircraft/Malolo1/Nasal/catapult.nas + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + 1.0 + + + + + 700 + + + + + + + 48.0 + 56.0 + 400.0 + 1000.0 + 6000.0 + 0.008 + 0.35 + 0.001 + + + + + + diff --git a/resources/flightgear/Aircraft/Malolo1/Malolo1-splash.rgb b/resources/flightgear/Aircraft/Malolo1/Malolo1-splash.rgb new file mode 100644 index 0000000000000000000000000000000000000000..02f47ac2ed3c920a63e3b9bb69851102b4e13bd4 Binary files /dev/null and b/resources/flightgear/Aircraft/Malolo1/Malolo1-splash.rgb differ diff --git a/resources/flightgear/Aircraft/Malolo1/Malolo1.xml b/resources/flightgear/Aircraft/Malolo1/Malolo1.xml new file mode 100644 index 0000000000000000000000000000000000000000..a38ff1f19ee644b189bcd13f3454a5f9de08557b --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Malolo1.xml @@ -0,0 +1,561 @@ + + + + + + Author Name + Creation Date + Version + Models a Malolo + + + + 10.57 + 9.17 + 1.15 + 1.69 + 3.28 + 1.06 + 0 + + 37.4 + 0 + 0 + + + 20 + 0 + 5 + + + 0 + 0 + 0 + + + + + 1 + 1 + 2 + 0 + 0 + 0 + 12 + + 36.4 + 0 + 4 + + + 1 + + 0 + 0 + 0 + + + + + + + + 40.1 + -9.9 + -10.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + LEFT + 0 + + + + 40.1 + 9.9 + -10.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + RIGHT + 0 + + + + 68.9 + 0 + -4.3 + + 0.8 + 0.5 + 0.02 + 24 + 20 + 360.0 + NONE + 0 + + + + 10 + 0 + -8.3 + + 0.8 + 0.5 + 0.02 + 24 + 20 + 360.0 + NONE + 0 + + + + + + + + 36 + 0 + 0 + + + 0.0 + 0 + 0 + + 0 + + + 1 + 0 + 0 + + + 0.0 + 0.0 + 0.0 + + 1.0 + + + + + 36.36 + 0 + -1.89375 + + 1.5 + 1.5 + + + + + + + + fcs/elevator-cmd-norm + fcs/pitch-trim-cmd-norm + + -1 + 1 + + + + + fcs/pitch-trim-sum + + -0.35 + 0.3 + + fcs/elevator-pos-rad + + + + fcs/elevator-pos-rad + + -0.3 + 0.3 + + + -1 + 1 + + fcs/elevator-pos-norm + + + + fcs/aileron-cmd-norm + fcs/roll-trim-cmd-norm + + -1 + 1 + + + + + fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/left-aileron-pos-rad + + + + -fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/right-aileron-pos-rad + + + + fcs/left-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/left-aileron-pos-norm + + + + fcs/right-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/right-aileron-pos-norm + + + + fcs/rudder-cmd-norm + fcs/yaw-trim-cmd-norm + + -1 + 1 + + + + + fcs/rudder-command-sum + + -0.35 + 0.35 + + fcs/rudder-pos-rad + + + + fcs/rudder-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/rudder-pos-norm + + + + + + + + Drag_at_zero_lift + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -1.5700 1.5000 + -0.2600 0.0560 + 0.0000 0.0280 + 0.2600 0.0560 + 1.5700 1.5000 + +
+
+
+ + Induced_drag + + aero/qbar-psf + metrics/Sw-sqft + aero/cl-squared + 0.0400 + + + + Drag_due_to_sideslip + + aero/qbar-psf + metrics/Sw-sqft + + aero/beta-rad + + -1.5700 1.2300 + -0.2600 0.0500 + 0.0000 0.0000 + 0.2600 0.0500 + 1.5700 1.2300 + +
+
+
+ + Drag_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-norm + 0.0300 + + +
+ + + + Side_force_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + aero/beta-rad + -1.0000 + + + + + + + Lift_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -0.2000 -0.7500 + 0.0000 0.2500 + 0.2300 1.4000 + 0.6000 0.7100 + +
+
+
+ + Lift_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-rad + 0.2000 + + +
+ + + + Roll_moment_due_to_beta + + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + -0.1000 + + + + Roll_moment_due_to_roll_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/p-aero-rad_sec + -0.4000 + + + + Roll_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + 0.1500 + + + + Roll_moment_due_to_aileron + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + + velocities/mach + + 0.0000 0.1300 + 2.0000 0.0570 + +
+
+
+ + Roll_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + 0.0100 + + +
+ + + + Pitch_moment_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/alpha-rad + -0.5000 + + + + Pitch_moment_due_to_elevator + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + fcs/elevator-pos-rad + + velocities/mach + + 0.0000 -0.5000 + 2.0000 -0.2750 + +
+
+
+ + Pitch_moment_due_to_pitch_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + velocities/q-aero-rad_sec + -12.0000 + + + + Pitch_moment_due_to_alpha_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + aero/alphadot-rad_sec + -7.0000 + + +
+ + + + Yaw_moment_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + 0.1200 + + + + Yaw_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + -0.1500 + + + + Yaw_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + -0.0500 + + + + Adverse_yaw + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + -0.0300 + + + + Yaw_moment_due_to_tail_incidence + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + 0.0007 + + + +
+ + + + + 0 + 0 + 0 + + + 1 + 0 + 0 + + + +
diff --git a/resources/flightgear/Aircraft/Malolo1/Models/DSC01758.rgb b/resources/flightgear/Aircraft/Malolo1/Models/DSC01758.rgb new file mode 100644 index 0000000000000000000000000000000000000000..c206b2d85215dcba6b69c8b72796fab3e82237e2 Binary files /dev/null and b/resources/flightgear/Aircraft/Malolo1/Models/DSC01758.rgb differ diff --git a/resources/flightgear/Aircraft/Malolo1/Models/Malolo1.ac b/resources/flightgear/Aircraft/Malolo1/Models/Malolo1.ac new file mode 100644 index 0000000000000000000000000000000000000000..0f20446ac74a312123a42a9f79ceb98f2da43251 --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Models/Malolo1.ac @@ -0,0 +1,4197 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.2 0.2 0.2 shi 16 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.2 0.2 0.2 shi 16 trans 0 +OBJECT world +kids 10 +OBJECT poly +name "elevator.002" +data 8 +Mesh.007 +crease 45.000000 +numvert 16 +0.347071 0.070181 -0.798229 +0.358572 0.068152 -0.798229 +0.35857 0.074784 -0.874594 +0.347071 0.076781 -0.874594 +0.327247 0.077067 -0.874727 +0.378451 0.075071 -0.874602 +0.37852 0.068468 -0.798331 +0.327249 0.07047 -0.798206 +0.36769 0.077071 0.922783 +0.41896 0.075069 0.922658 +0.418891 0.06847 0.846387 +0.367688 0.070467 0.846262 +0.387511 0.070181 0.846395 +0.399011 0.068183 0.846395 +0.399013 0.074752 0.92276 +0.387511 0.076781 0.92276 +numsurf 10 +SURF 0x30 +mat 1 +refs 4 +3 0.0 1.0 +0 0.0 0.0434782989323 +1 1.0 0.0 +2 0.980769991875 1.0 +SURF 0x30 +mat 1 +refs 4 +7 0.0 0.0 +0 0.0 0.0 +3 0.0 0.0 +4 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +0 0.0 0.0 +7 0.0 0.0 +6 0.0 0.0 +1 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +5 0.0 0.0 +2 0.0 0.0 +1 0.0 0.0 +6 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +4 0.0 0.0 +3 0.0 0.0 +2 0.0 0.0 +5 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +11 0.0 0.0 +12 0.0 0.0 +13 0.0 0.0 +10 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +10 0.0 0.0 +13 0.0 0.0 +14 0.0 0.0 +9 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +15 0.0 0.0 +8 0.0 0.0 +9 0.0 0.0 +14 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +8 0.0 0.0 +15 0.0 0.0 +12 0.0 0.0 +11 0.0 0.0 +SURF 0x30 +mat 1 +refs 4 +12 0.0 1.0 +15 0.0 0.0434782989323 +14 1.0 0.0 +13 0.980769991875 1.0 +kids 0 +OBJECT poly +name "strut" +data 8 +Mesh.012 +crease 45.000000 +numvert 76 +0.560943 0.047946 0.86931 +0.560133 0.048086 0.869093 +0.55999 0.048179 0.86835 +0.560659 0.048131 0.867826 +0.561611 0.047897 0.868785 +0.561469 0.047989 0.868042 +0.561581 0.053113 0.869846 +0.560784 0.052492 0.869392 +0.56061 0.052599 0.868659 +0.561237 0.053327 0.86838 +0.562226 0.05384 0.869567 +0.562055 0.053946 0.868833 +0.394243 0.073744 0.912046 +0.394042 0.07305 0.911597 +0.393871 0.073156 0.910864 +0.393898 0.073958 0.910579 +0.394098 0.074652 0.911028 +0.39427 0.074546 0.911762 +0.39997 0.073025 0.910591 +0.399768 0.07233 0.910142 +0.399596 0.072437 0.909408 +0.399623 0.073239 0.909123 +0.399824 0.073933 0.909572 +0.399996 0.073826 0.910306 +0.483779 0.06236 0.89022 +0.48358 0.061666 0.889771 +0.483406 0.061773 0.889037 +0.483435 0.062574 0.888753 +0.483634 0.063269 0.889203 +0.483808 0.063162 0.889935 +0.486658 0.062139 0.889516 +0.486458 0.061444 0.889067 +0.486285 0.061551 0.888334 +0.486313 0.062352 0.88805 +0.486513 0.063047 0.888499 +0.486687 0.06294 0.889231 +0.394071 0.073851 0.911313 +0.560801 0.048038 0.868567 +0.526582 0.048038 -0.806734 +0.36246 0.073851 -0.858598 +0.452748 0.06294 -0.828377 +0.452988 0.063047 -0.82909 +0.453056 0.062352 -0.829577 +0.452882 0.061551 -0.82935 +0.452641 0.061444 -0.828637 +0.452573 0.062139 -0.82815 +0.449932 0.063162 -0.829301 +0.450172 0.063269 -0.830015 +0.45024 0.062574 -0.830502 +0.450066 0.061773 -0.830276 +0.449826 0.061666 -0.829561 +0.449758 0.06236 -0.829074 +0.368022 0.073826 -0.85632 +0.368264 0.073933 -0.857034 +0.36833 0.073239 -0.857521 +0.368157 0.072437 -0.857294 +0.367915 0.07233 -0.85658 +0.367848 0.073025 -0.856093 +0.362392 0.074546 -0.858111 +0.362634 0.074652 -0.858825 +0.3627 0.073958 -0.859312 +0.362527 0.073156 -0.859085 +0.362286 0.073049 -0.858372 +0.362219 0.073744 -0.857885 +0.527506 0.053946 -0.805845 +0.527264 0.05384 -0.805132 +0.527052 0.053327 -0.806662 +0.526371 0.052599 -0.806756 +0.526132 0.052492 -0.806042 +0.526568 0.053113 -0.805236 +0.527427 0.047989 -0.806826 +0.527154 0.047897 -0.806121 +0.526854 0.048131 -0.807438 +0.526009 0.048179 -0.807347 +0.525737 0.048086 -0.806641 +0.526311 0.047946 -0.806028 +numsurf 84 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +0 0.0 0.0 +37 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +37 0.0 0.0 +0 0.0 0.0 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +37 0.0 0.0 +1 0.0 0.0 +2 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +37 0.0 0.0 +2 0.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +37 0.0 0.0 +3 0.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +37 0.0 0.0 +5 0.0 0.0 +4 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 0.0 +4 0.0 0.0 +10 0.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +1 0.0 0.0 +0 0.0 0.0 +6 0.0 0.0 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +7 0.0 0.0 +8 0.0 0.0 +2 0.0 0.0 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +8 0.0 0.0 +9 0.0 0.0 +3 0.0 0.0 +2 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +9 0.0 0.0 +11 0.0 0.0 +5 0.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +11 0.0 0.0 +10 0.0 0.0 +4 0.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +35 0.0 0.0 +30 0.0 0.0 +6 0.0 0.0 +10 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +30 0.0 0.0 +31 0.0 0.0 +7 0.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +31 0.0 0.0 +32 0.0 0.0 +8 0.0 0.0 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +32 0.0 0.0 +33 0.0 0.0 +9 0.0 0.0 +8 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +33 0.0 0.0 +34 0.0 0.0 +11 0.0 0.0 +9 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +34 0.0 0.0 +35 0.0 0.0 +10 0.0 0.0 +11 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +36 0.0 0.0 +12 0.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +36 0.0 0.0 +13 0.0 0.0 +12 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +36 0.0 0.0 +14 0.0 0.0 +13 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +36 0.0 0.0 +15 0.0 0.0 +14 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +36 0.0 0.0 +16 0.0 0.0 +15 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +36 0.0 0.0 +17 0.0 0.0 +16 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +18 0.0 0.0 +23 0.0 0.0 +17 0.0 0.0 +12 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +19 0.0 0.0 +18 0.0 0.0 +12 0.0 0.0 +13 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +20 0.0 0.0 +19 0.0 0.0 +13 0.0 0.0 +14 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +21 0.0 0.0 +20 0.0 0.0 +14 0.0 0.0 +15 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +22 0.0 0.0 +21 0.0 0.0 +15 0.0 0.0 +16 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +23 0.0 0.0 +22 0.0 0.0 +16 0.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +24 0.0 0.0 +29 0.0 0.0 +23 0.0 0.0 +18 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +25 0.0 0.0 +24 0.0 0.0 +18 0.0 0.0 +19 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +26 0.0 0.0 +25 0.0 0.0 +19 0.0 0.0 +20 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +27 0.0 0.0 +26 0.0 0.0 +20 0.0 0.0 +21 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +28 0.0 0.0 +27 0.0 0.0 +21 0.0 0.0 +22 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +29 0.0 0.0 +28 0.0 0.0 +22 0.0 0.0 +23 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +35 -2.98022992951e-008 1.0 +29 -2.98022992951e-008 0.0 +24 0.166666999459 0.0 +30 0.166666999459 1.0 +SURF 0x10 +mat 1 +refs 4 +30 0.166666999459 1.0 +24 0.166666999459 0.0 +25 0.33333298564 0.0 +31 0.33333298564 1.0 +SURF 0x10 +mat 1 +refs 4 +31 0.33333298564 1.0 +25 0.33333298564 0.0 +26 0.5 0.0 +32 0.5 1.0 +SURF 0x10 +mat 1 +refs 4 +32 0.5 1.0 +26 0.5 0.0 +27 0.666666984558 0.0 +33 0.666666984558 1.0 +SURF 0x10 +mat 1 +refs 4 +33 0.666666984558 1.0 +27 0.666666984558 0.0 +28 0.833333015442 0.0 +34 0.833333015442 1.0 +SURF 0x10 +mat 1 +refs 4 +34 0.833333015442 1.0 +28 0.833333015442 0.0 +29 1.0 0.0 +35 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +41 0.833333015442 1.0 +47 0.833333015442 0.0 +46 1.0 0.0 +40 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +42 0.666666984558 1.0 +48 0.666666984558 0.0 +47 0.833333015442 0.0 +41 0.833333015442 1.0 +SURF 0x10 +mat 1 +refs 4 +43 0.5 1.0 +49 0.5 0.0 +48 0.666666984558 0.0 +42 0.666666984558 1.0 +SURF 0x10 +mat 1 +refs 4 +44 0.33333298564 1.0 +50 0.33333298564 0.0 +49 0.5 0.0 +43 0.5 1.0 +SURF 0x10 +mat 1 +refs 4 +45 0.166666999459 1.0 +51 0.166666999459 0.0 +50 0.33333298564 0.0 +44 0.33333298564 1.0 +SURF 0x10 +mat 1 +refs 4 +40 -2.98022992951e-008 1.0 +46 -2.98022992951e-008 0.0 +51 0.166666999459 0.0 +45 0.166666999459 1.0 +SURF 0x10 +mat 1 +refs 4 +46 0.0 0.0 +47 0.0 0.0 +53 0.0 0.0 +52 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +47 0.0 0.0 +48 0.0 0.0 +54 0.0 0.0 +53 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +48 0.0 0.0 +49 0.0 0.0 +55 0.0 0.0 +54 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +49 0.0 0.0 +50 0.0 0.0 +56 0.0 0.0 +55 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +50 0.0 0.0 +51 0.0 0.0 +57 0.0 0.0 +56 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +51 0.0 0.0 +46 0.0 0.0 +52 0.0 0.0 +57 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +52 0.0 0.0 +53 0.0 0.0 +59 0.0 0.0 +58 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +53 0.0 0.0 +54 0.0 0.0 +60 0.0 0.0 +59 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +54 0.0 0.0 +55 0.0 0.0 +61 0.0 0.0 +60 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +55 0.0 0.0 +56 0.0 0.0 +62 0.0 0.0 +61 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +56 0.0 0.0 +57 0.0 0.0 +63 0.0 0.0 +62 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +57 0.0 0.0 +52 0.0 0.0 +58 0.0 0.0 +63 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.0 +58 0.0 0.0 +59 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.0 +59 0.0 0.0 +60 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.0 +60 0.0 0.0 +61 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.0 +61 0.0 0.0 +62 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.0 +62 0.0 0.0 +63 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.0 +63 0.0 0.0 +58 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +41 0.0 0.0 +40 0.0 0.0 +65 0.0 0.0 +64 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +42 0.0 0.0 +41 0.0 0.0 +64 0.0 0.0 +66 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +43 0.0 0.0 +42 0.0 0.0 +66 0.0 0.0 +67 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +44 0.0 0.0 +43 0.0 0.0 +67 0.0 0.0 +68 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +45 0.0 0.0 +44 0.0 0.0 +68 0.0 0.0 +69 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +40 0.0 0.0 +45 0.0 0.0 +69 0.0 0.0 +65 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +64 0.0 0.0 +65 0.0 0.0 +71 0.0 0.0 +70 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +66 0.0 0.0 +64 0.0 0.0 +70 0.0 0.0 +72 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +67 0.0 0.0 +66 0.0 0.0 +72 0.0 0.0 +73 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +68 0.0 0.0 +67 0.0 0.0 +73 0.0 0.0 +74 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +74 0.0 0.0 +75 0.0 0.0 +69 0.0 0.0 +68 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +75 0.0 0.0 +71 0.0 0.0 +65 0.0 0.0 +69 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +38 0.0 0.0 +70 0.0 0.0 +71 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +38 0.0 0.0 +72 0.0 0.0 +70 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +38 0.0 0.0 +73 0.0 0.0 +72 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +38 0.0 0.0 +74 0.0 0.0 +73 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +38 0.0 0.0 +75 0.0 0.0 +74 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +71 0.0 0.0 +75 0.0 0.0 +38 0.0 0.0 +kids 0 +OBJECT poly +name "lhelevon" +data 8 +Mesh.034 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 13 +0.599074 0.014895 -0.531554 +0.888591 0.119852 2.243279 +0.88656 0.113006 2.242792 +0.599074 0.014895 0.530098 +0.59518 0.008608 0.527454 +0.463361 0.035624 0.529998 +0.460279 0.012334 0.527711 +0.59518 0.008608 0.527454 +0.599074 0.014895 0.530098 +0.830417 0.12606 2.243226 +0.828674 0.113886 2.242929 +0.88656 0.113006 2.242792 +0.888591 0.119852 2.243279 +numsurf 3 +SURF 0x30 +mat 2 +refs 4 +3 0.389142990112 0.68247282505 +1 0.389142990112 0.68247282505 +2 0.389142990112 0.68247282505 +4 0.389142990112 0.68247282505 +SURF 0x30 +mat 2 +refs 4 +12 0.632252514362 0.754359185696 +8 0.633194804192 0.815167069435 +5 0.577246665955 0.814726471901 +9 0.581604659557 0.753918588161 +SURF 0x30 +mat 2 +refs 4 +7 0.621307790279 0.314203381538 +11 0.620118558407 0.25295484066 +10 0.567195057869 0.253511667252 +6 0.564221799374 0.314203381538 +kids 0 +OBJECT poly +name "vertfin.001" +data 8 +Mesh.030 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 40 +0.898813 0.127446 2.305112 +0.991374 0.444008 2.310203 +0.898925 0.444261 2.309624 +0.894502 0.444221 2.309629 +0.891408 0.443818 2.309534 +0.887714 0.441718 2.309106 +0.885246 0.439368 2.308627 +0.647729 0.11492 2.308054 +0.647636 0.115487 2.307015 +0.885226 0.439496 2.308345 +0.887694 0.441835 2.308817 +0.891387 0.443935 2.309244 +0.894483 0.444362 2.309331 +0.898906 0.444396 2.309338 +0.991278 0.444693 2.308753 +0.898719 0.128013 2.304073 +0.675529 0.109794 2.307774 +0.88548 0.439591 2.308672 +0.675436 0.110361 2.306736 +0.885461 0.439718 2.308389 +0.885461 0.439718 -2.305973 +0.675436 0.110361 -2.304319 +0.88548 0.439591 -2.306256 +0.675529 0.109794 -2.305357 +0.898719 0.128013 -2.301657 +0.991278 0.444693 -2.306336 +0.898906 0.444396 -2.306921 +0.894483 0.444362 -2.306914 +0.891387 0.443935 -2.306828 +0.887694 0.441835 -2.3064 +0.885226 0.439496 -2.305928 +0.647636 0.115487 -2.304599 +0.647729 0.11492 -2.305637 +0.885246 0.439368 -2.306211 +0.887714 0.441718 -2.306689 +0.891408 0.443818 -2.307117 +0.894502 0.444221 -2.307213 +0.898925 0.444261 -2.307207 +0.991374 0.444008 -2.307786 +0.898813 0.127446 -2.302695 +numsurf 28 +SURF 0x30 +mat 2 +refs 4 +0 0.497161775827 0.756072878838 +1 0.497380167246 0.787407398224 +2 0.485913664103 0.787407398224 +3 0.483402043581 0.78682166338 +SURF 0x30 +mat 2 +refs 4 +0 0.497161775827 0.756072878838 +3 0.483402043581 0.78682166338 +4 0.481654673815 0.786089539528 +5 0.480235010386 0.785211026669 +SURF 0x30 +mat 2 +refs 4 +1 0.464727908373 0.754755079746 +0 0.464727908373 0.754755079746 +15 0.464727908373 0.754755079746 +14 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +2 0.464727908373 0.754755079746 +1 0.464727908373 0.754755079746 +14 0.464727908373 0.754755079746 +13 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +3 0.464727908373 0.754755079746 +2 0.464727908373 0.754755079746 +13 0.464727908373 0.754755079746 +12 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +4 0.464727908373 0.754755079746 +3 0.464727908373 0.754755079746 +12 0.464727908373 0.754755079746 +11 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +5 0.464727908373 0.754755079746 +4 0.464727908373 0.754755079746 +11 0.464727908373 0.754755079746 +10 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +7 0.464727908373 0.754755079746 +6 0.464727908373 0.754755079746 +9 0.464727908373 0.754755079746 +8 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +16 0.480944782495 0.75541394949 +0 0.497161775827 0.756072878838 +5 0.480235010386 0.785211026669 +17 0.479525238276 0.784552156925 +SURF 0x30 +mat 2 +refs 4 +17 0.479525238276 0.784552156925 +6 0.478815346956 0.783893227577 +7 0.464727908373 0.754755079746 +16 0.480944782495 0.75541394949 +SURF 0x30 +mat 2 +refs 4 +0 0.464727908373 0.754755079746 +16 0.464727908373 0.754755079746 +18 0.464727908373 0.754755079746 +15 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +16 0.464727908373 0.754755079746 +7 0.464727908373 0.754755079746 +8 0.464727908373 0.754755079746 +18 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +6 0.464727908373 0.754755079746 +17 0.464727908373 0.754755079746 +19 0.464727908373 0.754755079746 +9 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +17 0.464727908373 0.754755079746 +5 0.464727908373 0.754755079746 +10 0.464727908373 0.754755079746 +19 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +22 0.464727908373 0.754755079746 +20 0.464727908373 0.754755079746 +29 0.464727908373 0.754755079746 +34 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +33 0.464727908373 0.754755079746 +30 0.464727908373 0.754755079746 +20 0.464727908373 0.754755079746 +22 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +23 0.464727908373 0.754755079746 +21 0.464727908373 0.754755079746 +31 0.464727908373 0.754755079746 +32 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +39 0.464727908373 0.754755079746 +24 0.464727908373 0.754755079746 +21 0.464727908373 0.754755079746 +23 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +22 0.479525238276 0.784552156925 +23 0.480944782495 0.75541394949 +32 0.464727908373 0.754755079746 +33 0.478815346956 0.783893227577 +SURF 0x30 +mat 2 +refs 4 +23 0.480944782495 0.75541394949 +22 0.479525238276 0.784552156925 +34 0.480235010386 0.785211026669 +39 0.497161775827 0.756072878838 +SURF 0x30 +mat 2 +refs 4 +32 0.464727908373 0.754755079746 +31 0.464727908373 0.754755079746 +30 0.464727908373 0.754755079746 +33 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +34 0.464727908373 0.754755079746 +29 0.464727908373 0.754755079746 +28 0.464727908373 0.754755079746 +35 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +35 0.464727908373 0.754755079746 +28 0.464727908373 0.754755079746 +27 0.464727908373 0.754755079746 +36 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +36 0.464727908373 0.754755079746 +27 0.464727908373 0.754755079746 +26 0.464727908373 0.754755079746 +37 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +37 0.464727908373 0.754755079746 +26 0.464727908373 0.754755079746 +25 0.464727908373 0.754755079746 +38 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +38 0.464727908373 0.754755079746 +25 0.464727908373 0.754755079746 +24 0.464727908373 0.754755079746 +39 0.464727908373 0.754755079746 +SURF 0x30 +mat 2 +refs 4 +39 0.497161775827 0.756072878838 +34 0.480235010386 0.785211026669 +35 0.481654673815 0.786089539528 +36 0.483402043581 0.78682166338 +SURF 0x30 +mat 2 +refs 4 +39 0.497161775827 0.756072878838 +36 0.483402043581 0.78682166338 +37 0.485913664103 0.787407398224 +38 0.497380167246 0.787407398224 +kids 0 +OBJECT poly +name "rhelevon" +data 8 +Mesh.035 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 12 +0.888591 0.119852 -2.244735 +0.88656 0.113006 -2.244248 +0.828674 0.113886 -2.244385 +0.830417 0.12606 -2.244682 +0.599074 0.014895 -0.531554 +0.59518 0.008608 -0.52891 +0.460279 0.012334 -0.529167 +0.463361 0.035624 -0.531454 +0.59518 0.008608 -0.52891 +0.599074 0.014895 -0.531554 +0.88656 0.113006 -2.244248 +0.888591 0.119852 -2.244735 +numsurf 3 +SURF 0x30 +mat 2 +refs 4 +5 0.621307790279 0.314203381538 +6 0.564221799374 0.314203381538 +2 0.567195057869 0.253511667252 +1 0.620118558407 0.25295484066 +SURF 0x30 +mat 2 +refs 4 +0 0.626432478428 0.748539149761 +3 0.575784623623 0.748098552227 +7 0.57142663002 0.808906435966 +4 0.627374768257 0.809347033501 +SURF 0x30 +mat 2 +refs 4 +9 0.383322954178 0.676652789116 +8 0.383322954178 0.676652789116 +10 0.383322954178 0.676652789116 +11 0.383322954178 0.676652789116 +kids 0 +OBJECT poly +name "prop2" +data 4 +Mesh +crease 45.000000 +numvert 176 +0.447799 0.015737 0.014021 +0.447791 0.026166 0.013519 +0.447803 0.023866 0.012121 +0.447808 0.034227 0.009612 +0.447801 0.029706 0.007026 +0.447784 0.034036 0.012987 +0.447826 0.037484 0.010513 +0.447789 0.040879 0.012291 +0.447813 0.042939 0.011062 +0.447788 0.049869 0.01214 +0.417741 0.015746 -0.013894 +0.417741 0.023797 -0.012044 +0.417759 0.029418 -0.011997 +0.417778 0.029788 -0.006896 +0.417814 0.034121 -0.008562 +0.417826 0.038109 -0.009619 +0.417779 0.037623 -0.011067 +0.417783 0.042948 -0.010342 +0.41785 0.042614 -0.011096 +0.417655 0.049921 -0.011491 +0.425336 0.049942 -0.003771 +0.424017 0.043533 -0.006159 +0.422736 0.038074 -0.007723 +0.420323 0.023848 -0.012073 +0.421212 0.032839 -0.009584 +0.43308 0.04989 0.002823 +0.432446 0.043943 0.000817 +0.431587 0.038313 -0.001342 +0.430094 0.029725 -0.006943 +0.430827 0.03504 -0.003668 +0.440134 0.049923 0.00857 +0.439411 0.043477 0.006413 +0.438831 0.038482 0.004943 +0.43831 0.03193 -0.000214 +0.438492 0.035413 0.002871 +0.436633 0.030372 0.011437 +0.434509 0.023824 0.012175 +0.438416 0.035954 0.010635 +0.439603 0.042038 0.009501 +0.440007 0.04994 0.009108 +0.428927 0.033369 0.006113 +0.426723 0.029736 0.007 +0.430569 0.037726 0.005025 +0.431762 0.043084 0.003688 +0.432435 0.049899 0.003452 +0.422416 0.035259 -0.000989 +0.420715 0.031983 -0.000142 +0.423534 0.038425 -0.001748 +0.424339 0.04294 -0.002563 +0.424656 0.049918 -0.002944 +0.437706 0.17413 0.00581 +0.433209 0.174132 0.002869 +0.428304 0.174135 -0.00055 +0.423286 0.174138 -0.004615 +0.427943 0.174135 -4.1e-005 +0.432878 0.174133 0.003245 +0.437513 0.17413 0.006045 +0.442404 0.174128 0.007403 +0.440149 0.092185 0.009205 +0.433096 0.092189 0.003454 +0.42544 0.092193 -0.003172 +0.417708 0.092197 -0.010907 +0.424742 0.092193 -0.002379 +0.432472 0.092189 0.00403 +0.439782 0.092185 0.009565 +0.447781 0.092181 0.01272 +0.447774 0.049898 0.012115 +0.439767 0.049941 0.009035 +0.417723 0.049925 -0.01154 +0.417672 0.015689 0.014013 +0.440023 -0.018481 -0.00844 +0.432969 -0.018441 -0.002692 +0.425225 -0.018485 0.003901 +0.417612 -0.01846 0.01167 +0.424545 -0.01846 0.003074 +0.432324 -0.018449 -0.003322 +0.439656 -0.018499 -0.008905 +0.447663 -0.018464 -0.011985 +0.447626 -0.060747 -0.012589 +0.439627 -0.060743 -0.009434 +0.432317 -0.060739 -0.003899 +0.424587 -0.060735 0.002509 +0.417552 -0.060732 0.011038 +0.425285 -0.060736 0.003302 +0.432941 -0.06074 -0.003324 +0.439994 -0.060743 -0.009075 +0.442164 -0.142688 -0.007273 +0.437272 -0.142686 -0.005914 +0.432638 -0.142683 -0.003114 +0.427702 -0.142681 0.000172 +0.423045 -0.142678 0.004746 +0.428064 -0.142681 0.000681 +0.432968 -0.142683 -0.002738 +0.437466 -0.142686 -0.00568 +0.417679 -0.011482 0.010472 +0.417544 -0.018455 0.011622 +0.417727 -0.006644 0.009749 +0.417688 0.001677 0.007026 +0.41772 -0.002656 0.008692 +0.424235 -0.011482 0.002693 +0.423436 -0.006966 0.001878 +0.420623 -0.000521 0.000273 +0.422321 -0.003798 0.001119 +0.431658 -0.011634 -0.003557 +0.43047 -0.006275 -0.004895 +0.426633 0.00172 -0.00687 +0.428833 -0.001916 -0.005982 +0.439896 -0.018498 -0.008977 +0.447677 -0.018436 -0.012009 +0.4395 -0.010596 -0.00937 +0.447688 -0.009445 -0.012161 +0.43832 -0.004511 -0.010504 +0.44769 -0.002602 -0.012857 +0.434425 0.007624 -0.012045 +0.436542 0.001074 -0.011307 +0.447705 0.005268 -0.013389 +0.447724 0.015675 -0.0139 +0.447708 0.001688 -0.006901 +0.447714 -0.002793 -0.009482 +0.438396 -0.003969 -0.002741 +0.438218 -0.000486 0.000344 +0.447728 -0.006051 -0.010383 +0.438732 -0.007038 -0.004812 +0.447709 -0.011505 -0.010932 +0.439307 -0.012034 -0.006283 +0.430732 -0.003588 0.003798 +0.430004 0.001727 0.007073 +0.431488 -0.006862 0.001472 +0.432341 -0.012493 -0.000687 +0.421119 -0.001378 0.009714 +0.420239 0.007614 0.012203 +0.422638 -0.006614 0.007853 +0.423913 -0.012074 0.006289 +0.417669 0.002047 0.012127 +0.417681 -0.006158 0.011197 +0.417747 -0.011149 0.011226 +0.417661 0.007642 0.012173 +0.447719 0.007568 -0.011991 +0.478542 0.015674 8.3e-005 +0.386162 0.015687 8.8e-005 +0.479197 0.014909 8.3e-005 +0.479198 0.015012 0.000414 +0.479198 0.015292 0.000657 +0.479197 0.015677 0.000744 +0.479198 0.016059 0.000657 +0.4792 0.016336 0.000414 +0.4792 0.016439 8.3e-005 +0.4792 0.016336 -0.000248 +0.479199 0.016056 -0.00049 +0.479199 0.015674 -0.00058 +0.479198 0.01529 -0.00049 +0.479197 0.015011 -0.000248 +0.386136 -0.000429 8.8e-005 +0.386274 0.001677 0.007026 +0.386189 0.007642 0.012173 +0.386222 0.015689 0.014013 +0.386175 0.023745 0.012173 +0.386183 0.029643 0.007065 +0.386188 0.031802 8.8e-005 +0.386203 0.029722 -0.006899 +0.386175 0.023745 -0.011998 +0.386164 0.015752 -0.013894 +0.386148 0.007628 -0.011998 +0.386139 0.00173 -0.00689 +0.44894 -0.00044 8.8e-005 +0.448988 0.001702 0.007053 +0.448966 0.007622 0.012173 +0.448959 0.015717 0.014018 +0.448962 0.023769 0.012172 +0.448988 0.029633 0.007065 +0.448992 0.031792 8.8e-005 +0.448994 0.029658 -0.006893 +0.44898 0.023734 -0.011998 +0.448967 0.0157 -0.013898 +0.448927 0.001701 -0.006897 +0.448953 0.007587 -0.011993 +numsurf 170 +SURF 0x30 +mat 2 +refs 3 +0 0.00431034015492 1.0 +1 1.0 0.731706976891 +2 0.771552026272 0.0 +SURF 0x30 +mat 2 +refs 4 +2 0.0 0.792452991009 +1 0.213018000126 1.0 +3 1.0 0.405660003424 +4 0.556213021278 0.0 +SURF 0x30 +mat 2 +refs 4 +1 0.0 1.0 +5 0.701086997986 0.857142984867 +6 1.0 0.22222200036 +3 0.717391014099 0.0 +SURF 0x30 +mat 2 +refs 4 +5 0.0 1.0 +7 0.783217012882 0.710525989532 +8 1.0 0.184210002422 +6 0.40559399128 0.0 +SURF 0x30 +mat 2 +refs 3 +7 0.0 1.0 +9 1.0 0.833333015442 +8 0.0565370991826 0.0 +SURF 0x30 +mat 2 +refs 3 +10 0.0 0.0 +11 0.588689029217 0.943396985531 +12 1.0 1.0 +SURF 0x30 +mat 2 +refs 4 +11 0.0 0.0 +13 0.577854990959 1.0 +14 1.0 0.6875 +12 0.543253004551 0.0069443997927 +SURF 0x30 +mat 2 +refs 4 +12 0.0 0.0 +14 0.539534986019 1.0 +15 1.0 0.682353019714 +16 0.937209010124 0.264705985785 +SURF 0x30 +mat 2 +refs 4 +15 0.0722893029451 1.0 +17 1.0 0.576924026012 +18 0.927711009979 0.0 +16 0.0 0.076923198998 +SURF 0x30 +mat 2 +refs 3 +17 0.0166666992009 1.0 +19 1.0 0.0 +18 0.0 0.500001013279 +SURF 0x30 +mat 2 +refs 4 +22 0.0 0.0 +21 0.0 0.0 +18 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +21 0.0 0.0 +20 0.0 0.0 +19 0.0 0.0 +18 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +24 0.0 0.0 +22 0.0 0.0 +16 0.0 0.0 +12 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +23 0.0 0.0 +24 0.0 0.0 +12 0.0 0.0 +10 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +26 0.0 0.0 +25 0.0 0.0 +20 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +27 0.0 0.0 +26 0.0 0.0 +21 0.0 0.0 +22 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +29 0.0 0.0 +27 0.0 0.0 +22 0.0 0.0 +24 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +28 0.0 0.0 +29 0.0 0.0 +24 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +31 0.0 0.0 +30 0.0 0.0 +25 0.0 0.0 +26 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +32 0.0 0.0 +31 0.0 0.0 +26 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +34 0.0 0.0 +32 0.0 0.0 +27 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +33 0.0 0.0 +34 0.0 0.0 +29 0.0 0.0 +28 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +8 0.0 0.0 +9 0.0 0.0 +30 0.0 0.0 +31 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +6 0.0 0.0 +8 0.0 0.0 +31 0.0 0.0 +32 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +3 0.0 0.0 +6 0.0 0.0 +32 0.0 0.0 +34 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +4 0.0 0.0 +3 0.0 0.0 +34 0.0 0.0 +33 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +0 0.0 0.0 +1 0.0 0.0 +35 0.0 0.0 +36 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +1 0.0 0.0 +5 0.0 0.0 +37 0.0 0.0 +35 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +5 0.0 0.0 +7 0.0 0.0 +38 0.0 0.0 +37 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +7 0.0 0.0 +9 0.0 0.0 +39 0.0 0.0 +38 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +36 0.0 0.0 +35 0.0 0.0 +40 0.0 0.0 +41 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +35 0.0 0.0 +37 0.0 0.0 +42 0.0 0.0 +40 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +37 0.0 0.0 +38 0.0 0.0 +43 0.0 0.0 +42 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +38 0.0 0.0 +39 0.0 0.0 +44 0.0 0.0 +43 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +41 0.0 0.0 +40 0.0 0.0 +45 0.0 0.0 +46 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +40 0.0 0.0 +42 0.0 0.0 +47 0.0 0.0 +45 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +42 0.0 0.0 +43 0.0 0.0 +48 0.0 0.0 +47 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +43 0.0 0.0 +44 0.0 0.0 +49 0.0 0.0 +48 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +46 0.0 0.0 +45 0.0 0.0 +14 0.0 0.0 +13 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +45 0.0 0.0 +47 0.0 0.0 +15 0.0 0.0 +14 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +48 0.0 0.0 +49 0.0 0.0 +19 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +47 0.0 0.0 +48 0.0 0.0 +17 0.0 0.0 +15 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +57 0.0 1.0 +56 0.217972993851 0.893750011921 +55 0.414914011955 0.75 +54 0.688337028027 0.449999988079 +SURF 0x30 +mat 2 +refs 4 +57 0.0 1.0 +54 0.688337028027 0.449999988079 +53 1.0 0.0 +52 0.674951970577 0.34375 +SURF 0x30 +mat 2 +refs 4 +57 0.0 1.0 +52 0.674951970577 0.34375 +51 0.401529997587 0.668749988079 +50 0.21032500267 0.84375 +SURF 0x30 +mat 2 +refs 4 +58 0.0 0.0 +65 0.0 0.0 +57 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +59 0.0 0.0 +58 0.0 0.0 +50 0.0 0.0 +51 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +60 0.0 0.0 +59 0.0 0.0 +51 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +61 0.0 0.0 +60 0.0 0.0 +52 0.0 0.0 +53 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +62 0.0 0.0 +61 0.0 0.0 +53 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +63 0.0 0.0 +62 0.0 0.0 +54 0.0 0.0 +55 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +64 0.0 0.0 +63 0.0 0.0 +55 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +65 0.0 0.0 +64 0.0 0.0 +56 0.0 0.0 +57 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +30 0.0 0.0 +66 0.0 0.0 +65 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +25 0.0 0.0 +30 0.0 0.0 +58 0.0 0.0 +59 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +20 0.0 0.0 +25 0.0 0.0 +59 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +68 0.0 0.0 +20 0.0 0.0 +60 0.0 0.0 +61 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +49 0.0 0.0 +68 0.0 0.0 +61 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +44 0.0 0.0 +49 0.0 0.0 +62 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +67 0.0 0.0 +44 0.0 0.0 +63 0.0 0.0 +64 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +66 0.0 0.0 +67 0.0 0.0 +64 0.0 0.0 +65 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +77 0.0 0.0 +76 0.0 0.0 +79 0.0 0.0 +78 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +76 0.0 0.0 +75 0.0 0.0 +80 0.0 0.0 +79 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +75 0.0 0.0 +74 0.0 0.0 +81 0.0 0.0 +80 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +74 0.0 0.0 +73 0.0 0.0 +82 0.0 0.0 +81 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +73 0.0 0.0 +72 0.0 0.0 +83 0.0 0.0 +82 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +72 0.0 0.0 +71 0.0 0.0 +84 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +71 0.0 0.0 +70 0.0 0.0 +85 0.0 0.0 +84 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +70 0.0 0.0 +77 0.0 0.0 +78 0.0 0.0 +85 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +78 0.0 0.0 +79 0.0 0.0 +87 0.0 0.0 +86 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +79 0.0 0.0 +80 0.0 0.0 +88 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +80 0.0 0.0 +81 0.0 0.0 +89 0.0 0.0 +88 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +81 0.0 0.0 +82 0.0 0.0 +90 0.0 0.0 +89 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +82 0.0 0.0 +83 0.0 0.0 +91 0.0 0.0 +90 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +83 0.0 0.0 +84 0.0 0.0 +92 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +84 0.0 0.0 +85 0.0 0.0 +93 0.0 0.0 +92 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +85 0.0 0.0 +78 0.0 0.0 +86 0.0 0.0 +93 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +86 0.0 1.0 +87 0.217972993851 0.893750011921 +88 0.414914011955 0.75 +89 0.688337028027 0.449999988079 +SURF 0x30 +mat 2 +refs 4 +86 0.0 1.0 +89 0.688337028027 0.449999988079 +90 1.0 0.0 +91 0.674951970577 0.34375 +SURF 0x30 +mat 2 +refs 4 +86 0.0 1.0 +91 0.674951970577 0.34375 +92 0.401529997587 0.668749988079 +93 0.21032500267 0.84375 +SURF 0x30 +mat 2 +refs 4 +100 0.0 0.0 +99 0.0 0.0 +94 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +99 0.0 0.0 +74 0.0 0.0 +95 0.0 0.0 +94 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +102 0.0 0.0 +100 0.0 0.0 +96 0.0 0.0 +98 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +101 0.0 0.0 +102 0.0 0.0 +98 0.0 0.0 +97 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +103 0.0 0.0 +75 0.0 0.0 +74 0.0 0.0 +99 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +104 0.0 0.0 +103 0.0 0.0 +99 0.0 0.0 +100 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +106 0.0 0.0 +104 0.0 0.0 +100 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +105 0.0 0.0 +106 0.0 0.0 +102 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +109 0.0 0.0 +107 0.0 0.0 +75 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +111 0.0 0.0 +109 0.0 0.0 +103 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +114 0.0 0.0 +111 0.0 0.0 +104 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +113 0.0 0.0 +114 0.0 0.0 +106 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +110 0.0 0.0 +108 0.0 0.0 +107 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +112 0.0 0.0 +110 0.0 0.0 +109 0.0 0.0 +111 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +115 0.0 0.0 +112 0.0 0.0 +111 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +116 0.0 0.0 +115 0.0 0.0 +114 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +117 0.0 0.0 +118 0.0 0.0 +119 0.0 0.0 +120 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +118 0.0 0.0 +121 0.0 0.0 +122 0.0 0.0 +119 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +121 0.0 0.0 +123 0.0 0.0 +124 0.0 0.0 +122 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +123 0.0 0.0 +108 0.0 0.0 +70 0.0 0.0 +124 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +120 0.0 0.0 +119 0.0 0.0 +125 0.0 0.0 +126 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +119 0.0 0.0 +122 0.0 0.0 +127 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +122 0.0 0.0 +124 0.0 0.0 +128 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +124 0.0 0.0 +70 0.0 0.0 +71 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +126 0.0 0.0 +125 0.0 0.0 +129 0.0 0.0 +130 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +125 0.0 0.0 +127 0.0 0.0 +131 0.0 0.0 +129 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +127 0.0 0.0 +128 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +128 0.0 0.0 +71 0.0 0.0 +72 0.0 0.0 +132 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +130 0.0 0.0 +129 0.0 0.0 +133 0.0 0.0 +69 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +129 0.0 0.0 +131 0.0 0.0 +134 0.0 0.0 +133 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +132 0.0 0.0 +72 0.0 0.0 +95 0.0 0.0 +135 0.0 0.0 +SURF 0x30 +mat 2 +refs 4 +131 0.0 0.0 +132 0.0 0.0 +135 0.0 0.0 +134 0.0 0.0 +SURF 0x30 +mat 2 +refs 3 +94 0.0166666992009 1.0 +95 1.0 0.0 +135 0.0 0.500001013279 +SURF 0x30 +mat 2 +refs 4 +96 0.0722893029451 1.0 +94 1.0 0.576924026012 +135 0.927711009979 0.0 +134 0.0 0.076923198998 +SURF 0x30 +mat 2 +refs 4 +133 0.0 0.0 +98 0.539534986019 1.0 +96 1.0 0.682353019714 +134 0.937209010124 0.264705985785 +SURF 0x30 +mat 2 +refs 4 +136 0.0 0.0 +97 0.577854990959 1.0 +98 1.0 0.6875 +133 0.543253004551 0.0069443997927 +SURF 0x30 +mat 2 +refs 3 +69 0.0 0.0 +136 0.588689029217 0.943396985531 +133 1.0 1.0 +SURF 0x30 +mat 2 +refs 3 +110 0.0 1.0 +108 1.0 0.833333015442 +123 0.0565370991826 0.0 +SURF 0x30 +mat 2 +refs 4 +112 0.0 1.0 +110 0.783217012882 0.710525989532 +123 1.0 0.184210002422 +121 0.40559399128 0.0 +SURF 0x30 +mat 2 +refs 4 +115 0.0 1.0 +112 0.701086997986 0.857142984867 +121 1.0 0.22222200036 +118 0.717391014099 0.0 +SURF 0x30 +mat 2 +refs 4 +137 0.0 0.792452991009 +115 0.213018000126 1.0 +118 1.0 0.405660003424 +117 0.556213021278 0.0 +SURF 0x30 +mat 2 +refs 3 +116 0.00431034015492 1.0 +115 1.0 0.731706976891 +137 0.771552026272 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +140 0.0 0.0 +151 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +141 0.0 0.0 +140 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +142 0.0 0.0 +141 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +143 0.0 0.0 +142 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +144 0.0 0.0 +143 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +145 0.0 0.0 +144 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +146 0.0 0.0 +145 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +147 0.0 0.0 +146 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +148 0.0 0.0 +147 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +149 0.0 0.0 +148 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +150 0.0 0.0 +149 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +138 0.0 0.0 +151 0.0 0.0 +150 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +163 0.0 0.0 +152 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +152 0.0 0.0 +153 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +153 0.0 0.0 +154 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +154 0.0 0.0 +155 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +155 0.0 0.0 +156 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +156 0.0 0.0 +157 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +157 0.0 0.0 +158 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +158 0.0 0.0 +159 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +159 0.0 0.0 +160 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +160 0.0 0.0 +161 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +161 0.0 0.0 +162 0.0 0.0 +SURF 0x10 +mat 2 +refs 3 +139 0.0 0.0 +162 0.0 0.0 +163 0.0 0.0 +SURF 0x10 +mat 2 +refs 4 +163 -2.98022992951e-008 1.0 +174 -2.98022975187e-008 0.499999970198 +164 0.083333298564 0.5 +152 0.083333298564 1.0 +SURF 0x10 +mat 2 +refs 4 +174 -2.98022975187e-008 0.499999970198 +151 -2.98022992951e-008 0.0 +140 0.083333298564 0.0 +164 0.083333298564 0.5 +SURF 0x10 +mat 2 +refs 4 +152 0.083333298564 1.0 +164 0.083333298564 0.5 +165 0.166666999459 0.499999821186 +153 0.166666999459 1.0 +SURF 0x10 +mat 2 +refs 4 +164 0.083333298564 0.5 +140 0.083333298564 0.0 +141 0.166666999459 0.0 +165 0.166666999459 0.499999821186 +SURF 0x10 +mat 2 +refs 4 +153 0.166666999459 1.0 +165 0.16666701436 0.499999821186 +166 0.250000119209 0.5 +154 0.25 1.0 +SURF 0x10 +mat 2 +refs 4 +165 0.16666701436 0.499999821186 +141 0.166666999459 0.0 +142 0.25 0.0 +166 0.250000119209 0.5 +SURF 0x10 +mat 2 +refs 4 +154 0.25 1.0 +166 0.250000059605 0.499999970198 +167 0.333332955837 0.500000178814 +155 0.33333298564 1.0 +SURF 0x10 +mat 2 +refs 4 +166 0.250000059605 0.499999970198 +142 0.25 0.0 +143 0.33333298564 0.0 +167 0.333332955837 0.500000178814 +SURF 0x10 +mat 2 +refs 4 +155 0.33333298564 1.0 +167 0.333332955837 0.500000119209 +168 0.41666701436 0.500000178814 +156 0.41666701436 1.0 +SURF 0x10 +mat 2 +refs 4 +167 0.333332955837 0.500000119209 +143 0.33333298564 0.0 +144 0.41666701436 0.0 +168 0.41666701436 0.500000178814 +SURF 0x10 +mat 2 +refs 4 +156 0.41666701436 1.0 +168 0.416666984558 0.500000178814 +169 0.500000059605 0.500000178814 +157 0.5 1.0 +SURF 0x10 +mat 2 +refs 4 +168 0.416666984558 0.500000178814 +144 0.41666701436 0.0 +145 0.5 0.0 +169 0.500000059605 0.500000178814 +SURF 0x10 +mat 2 +refs 4 +157 0.5 1.0 +169 0.5 0.500000178814 +170 0.583333015442 0.5 +158 0.583333015442 1.0 +SURF 0x10 +mat 2 +refs 4 +169 0.5 0.500000178814 +145 0.5 0.0 +146 0.583333015442 0.0 +170 0.583333015442 0.5 +SURF 0x10 +mat 2 +refs 4 +158 0.583333015442 1.0 +170 0.583333015442 0.5 +171 0.666666984558 0.5 +159 0.666666984558 1.0 +SURF 0x10 +mat 2 +refs 4 +170 0.583333015442 0.5 +146 0.583333015442 0.0 +147 0.666666984558 0.0 +171 0.666666984558 0.5 +SURF 0x10 +mat 2 +refs 4 +159 0.666666984558 1.0 +171 0.666666984558 0.5 +172 0.75 0.5 +160 0.75 1.0 +SURF 0x10 +mat 2 +refs 4 +171 0.666666984558 0.5 +147 0.666666984558 0.0 +148 0.75 0.0 +172 0.75 0.5 +SURF 0x10 +mat 2 +refs 4 +160 0.75 1.0 +172 0.75 0.5 +173 0.833332896233 0.499999850988 +161 0.833333015442 1.0 +SURF 0x10 +mat 2 +refs 4 +172 0.75 0.5 +148 0.75 0.0 +149 0.833333015442 0.0 +173 0.833332896233 0.499999850988 +SURF 0x10 +mat 2 +refs 4 +161 0.833333015442 1.0 +173 0.833332896233 0.499999821186 +175 0.916666984558 0.5 +162 0.916666984558 1.0 +SURF 0x10 +mat 2 +refs 4 +173 0.833332896233 0.499999821186 +149 0.833333015442 0.0 +150 0.916666984558 0.0 +175 0.916666984558 0.5 +SURF 0x10 +mat 2 +refs 4 +162 0.916666984558 1.0 +175 0.916666984558 0.5 +174 1.0 0.5 +163 1.0 1.0 +SURF 0x10 +mat 2 +refs 4 +175 0.916666984558 0.5 +150 0.916666984558 0.0 +151 1.0 0.0 +174 1.0 0.5 +kids 0 +OBJECT poly +name "strut.001" +data 8 +Mesh.008 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 66 +0.122961 0.036168 -0.007847 +0.123795 0.032667 -0.005827 +0.125292 0.033057 -0.00245 +0.125954 0.036951 -0.001105 +0.123627 0.040056 -0.006497 +0.125123 0.040451 -0.003124 +0.06621 0.036665 0.018844 +0.068706 0.033567 0.020659 +0.071725 0.03409 0.022792 +0.072249 0.037713 0.023107 +0.066703 0.040266 0.019166 +0.069722 0.040788 0.021298 +-0.039285 0.052705 0.02356 +-0.041066 0.049268 0.025128 +-0.043836 0.049792 0.02757 +-0.044833 0.053752 0.028448 +-0.043051 0.057188 0.026881 +-0.040277 0.056664 0.024435 +-0.020398 0.057601 0.087325 +-0.021955 0.054164 0.089115 +-0.024381 0.054689 0.091908 +-0.025251 0.058648 0.09291 +-0.023694 0.062084 0.091119 +-0.021267 0.06156 0.088325 +0.014627 0.054014 0.100576 +0.014632 0.050579 0.102951 +0.014584 0.051102 0.106654 +0.014626 0.055062 0.107975 +0.014621 0.058498 0.105599 +0.01467 0.057975 0.101902 +0.043922 0.047399 0.079423 +0.045198 0.043963 0.081425 +0.0472 0.044486 0.084534 +0.047935 0.048446 0.085636 +0.046659 0.051882 0.083634 +0.044682 0.051359 0.080509 +-0.042057 0.053228 0.026003 +0.124458 0.036561 -0.004475 +0.111846 0.036561 0.002391 +0.107074 0.040788 0.0678 +0.103726 0.040266 0.069364 +0.109899 0.037713 0.066503 +0.109365 0.03409 0.066802 +0.106015 0.033567 0.068365 +0.103202 0.036665 0.069633 +0.113348 0.040451 0.002483 +0.109678 0.040056 0.002109 +0.115514 0.036951 0.002764 +0.114018 0.033057 0.007768 +0.110343 0.032667 0.002296 +0.108175 0.036168 0.002018 +-0.024381 0.054689 0.091908 +0.137771 0.129913 -0.152033 +0.016644 0.049462 -0.16521 +0.135023 0.133184 -0.144856 +0.137615 0.130504 -0.144588 +0.138988 0.128869 -0.148177 +0.137771 0.129913 -0.152033 +0.13518 0.132592 -0.1523 +0.133808 0.134227 -0.148711 +0.01453 0.049895 -0.161635 +0.018229 0.049459 -0.161346 +0.020344 0.049024 -0.16492 +0.018757 0.049029 -0.168784 +0.015064 0.049464 -0.169074 +0.01295 0.049897 -0.165498 +numsurf 66 +SURF 0x10 +mat 2 +refs 3 +37 0.235402002931 0.485176384449 +0 0.235402002931 0.485176384449 +4 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +1 0.235402002931 0.485176384449 +0 0.235402002931 0.485176384449 +37 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +37 0.235402002931 0.485176384449 +2 0.235402002931 0.485176384449 +1 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +37 0.235402002931 0.485176384449 +3 0.235402002931 0.485176384449 +2 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +37 0.235402002931 0.485176384449 +5 0.235402002931 0.485176384449 +3 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +37 0.235402002931 0.485176384449 +4 0.235402002931 0.485176384449 +5 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +0 0.235402002931 0.485176384449 +6 0.235402002931 0.485176384449 +10 0.235402002931 0.485176384449 +4 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +6 0.235402002931 0.485176384449 +0 0.235402002931 0.485176384449 +1 0.235402002931 0.485176384449 +7 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +7 0.235402002931 0.485176384449 +1 0.235402002931 0.485176384449 +2 0.235402002931 0.485176384449 +8 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +8 0.235402002931 0.485176384449 +2 0.235402002931 0.485176384449 +3 0.235402002931 0.485176384449 +9 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +9 0.235402002931 0.485176384449 +3 0.235402002931 0.485176384449 +5 0.235402002931 0.485176384449 +11 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +11 0.235402002931 0.485176384449 +5 0.235402002931 0.485176384449 +4 0.235402002931 0.485176384449 +10 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +35 0.235402002931 0.485176384449 +10 0.235402002931 0.485176384449 +6 0.235402002931 0.485176384449 +30 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +30 0.235402002931 0.485176384449 +6 0.235402002931 0.485176384449 +7 0.235402002931 0.485176384449 +31 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +31 0.235402002931 0.485176384449 +7 0.235402002931 0.485176384449 +8 0.235402002931 0.485176384449 +32 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +32 0.235402002931 0.485176384449 +8 0.235402002931 0.485176384449 +9 0.235402002931 0.485176384449 +33 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +33 0.235402002931 0.485176384449 +9 0.235402002931 0.485176384449 +11 0.235402002931 0.485176384449 +34 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +34 0.235402002931 0.485176384449 +11 0.235402002931 0.485176384449 +10 0.235402002931 0.485176384449 +35 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +36 0.235402002931 0.485176384449 +17 0.235402002931 0.485176384449 +12 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +36 0.235402002931 0.485176384449 +12 0.235402002931 0.485176384449 +13 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +36 0.235402002931 0.485176384449 +13 0.235402002931 0.485176384449 +14 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +36 0.235402002931 0.485176384449 +14 0.235402002931 0.485176384449 +15 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +36 0.235402002931 0.485176384449 +15 0.235402002931 0.485176384449 +16 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +36 0.235402002931 0.485176384449 +16 0.235402002931 0.485176384449 +17 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +18 0.235402002931 0.485176384449 +12 0.235402002931 0.485176384449 +17 0.235402002931 0.485176384449 +23 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +19 0.235402002931 0.485176384449 +13 0.235402002931 0.485176384449 +12 0.235402002931 0.485176384449 +18 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +20 0.235402002931 0.485176384449 +14 0.235402002931 0.485176384449 +13 0.235402002931 0.485176384449 +19 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +21 0.235402002931 0.485176384449 +15 0.235402002931 0.485176384449 +14 0.235402002931 0.485176384449 +51 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +22 0.235402002931 0.485176384449 +16 0.235402002931 0.485176384449 +15 0.235402002931 0.485176384449 +21 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +23 0.235402002931 0.485176384449 +17 0.235402002931 0.485176384449 +16 0.235402002931 0.485176384449 +22 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +24 0.235402002931 0.485176384449 +18 0.235402002931 0.485176384449 +23 0.235402002931 0.485176384449 +29 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +25 0.235402002931 0.485176384449 +19 0.235402002931 0.485176384449 +18 0.235402002931 0.485176384449 +24 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +26 0.235402002931 0.485176384449 +20 0.235402002931 0.485176384449 +19 0.235402002931 0.485176384449 +25 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +27 0.235402002931 0.485176384449 +21 0.235402002931 0.485176384449 +51 0.235402002931 0.485176384449 +26 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +28 0.235402002931 0.485176384449 +22 0.235402002931 0.485176384449 +21 0.235402002931 0.485176384449 +27 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +29 0.235402002931 0.485176384449 +23 0.235402002931 0.485176384449 +22 0.235402002931 0.485176384449 +28 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +35 0.235402002931 0.485667705536 +30 0.235483899713 0.485667705536 +24 0.235483899713 0.485176384449 +29 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +30 0.235483899713 0.485667705536 +31 0.235565781593 0.485667705536 +25 0.235565781593 0.485176384449 +24 0.235483899713 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +31 0.235565781593 0.485667705536 +32 0.235647678375 0.485667705536 +26 0.235647678375 0.485176384449 +25 0.235565781593 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +32 0.235647678375 0.485667705536 +33 0.235729545355 0.485667705536 +27 0.235729545355 0.485176384449 +26 0.235647678375 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +33 0.235729545355 0.485667705536 +34 0.235811442137 0.485667705536 +28 0.235811442137 0.485176384449 +27 0.235729545355 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +34 0.235811442137 0.485667705536 +35 0.235893324018 0.485667705536 +29 0.235893324018 0.485176384449 +28 0.235811442137 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +39 0.235402002931 0.485176384449 +45 0.235402002931 0.485176384449 +46 0.235402002931 0.485176384449 +40 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +41 0.235402002931 0.485176384449 +47 0.235402002931 0.485176384449 +45 0.235402002931 0.485176384449 +39 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +42 0.235402002931 0.485176384449 +48 0.235402002931 0.485176384449 +47 0.235402002931 0.485176384449 +41 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +43 0.235402002931 0.485176384449 +49 0.235402002931 0.485176384449 +48 0.235402002931 0.485176384449 +42 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +49 0.235402002931 0.485176384449 +43 0.235402002931 0.485176384449 +44 0.235402002931 0.485176384449 +50 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +50 0.235402002931 0.485176384449 +44 0.235402002931 0.485176384449 +40 0.235402002931 0.485176384449 +46 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +38 0.235402002931 0.485176384449 +46 0.235402002931 0.485176384449 +45 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +38 0.235402002931 0.485176384449 +45 0.235402002931 0.485176384449 +47 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +38 0.235402002931 0.485176384449 +47 0.235402002931 0.485176384449 +48 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +38 0.235402002931 0.485176384449 +48 0.235402002931 0.485176384449 +49 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +38 0.235402002931 0.485176384449 +49 0.235402002931 0.485176384449 +50 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +46 0.235402002931 0.485176384449 +38 0.235402002931 0.485176384449 +50 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +54 0.235402002931 0.485176384449 +60 0.235402002931 0.485176384449 +61 0.235402002931 0.485176384449 +55 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +55 0.235402002931 0.485176384449 +61 0.235402002931 0.485176384449 +62 0.235402002931 0.485176384449 +56 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +56 0.235402002931 0.485176384449 +62 0.235402002931 0.485176384449 +63 0.235402002931 0.485176384449 +52 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +57 0.235402002931 0.485176384449 +63 0.235402002931 0.485176384449 +64 0.235402002931 0.485176384449 +58 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +58 0.235402002931 0.485176384449 +64 0.235402002931 0.485176384449 +65 0.235402002931 0.485176384449 +59 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 4 +59 0.235402002931 0.485176384449 +65 0.235402002931 0.485176384449 +60 0.235402002931 0.485176384449 +54 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +53 0.235402002931 0.485176384449 +61 0.235402002931 0.485176384449 +60 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +53 0.235402002931 0.485176384449 +62 0.235402002931 0.485176384449 +61 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +53 0.235402002931 0.485176384449 +63 0.235402002931 0.485176384449 +62 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +53 0.235402002931 0.485176384449 +64 0.235402002931 0.485176384449 +63 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +53 0.235402002931 0.485176384449 +65 0.235402002931 0.485176384449 +64 0.235402002931 0.485176384449 +SURF 0x10 +mat 2 +refs 3 +53 0.235402002931 0.485176384449 +60 0.235402002931 0.485176384449 +65 0.235402002931 0.485176384449 +kids 0 +OBJECT poly +name "motor" +data 8 +Mesh.014 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 59 +0.115873 0.015857 -4e-006 +0.391286 0.015822 -4e-006 +0.115873 0.006298 0.03494 +0.115866 -0.00085 0.030258 +0.115861 -0.013081 0.017468 +0.11586 -0.017558 -4e-006 +0.115861 -0.013081 -0.017476 +0.115866 -0.00085 -0.030266 +0.115873 0.015857 -0.034948 +0.11588 0.032565 -0.030266 +0.115884 0.044796 -0.017476 +0.115886 0.049272 -4e-006 +0.115884 0.044796 0.017468 +0.11588 0.032565 0.030258 +0.391286 0.015822 0.03494 +0.391279 -0.000886 0.030258 +0.391274 -0.013116 0.017468 +0.391273 -0.017593 -4e-006 +0.391274 -0.013116 -0.017476 +0.391279 -0.000886 -0.030266 +0.391286 0.015822 -0.034948 +0.391292 0.032529 -0.030266 +0.391297 0.04476 -0.017476 +0.391299 0.049237 -4e-006 +0.391297 0.04476 0.017468 +0.391292 0.032529 0.030258 +0.286615 0.035604 0.035833 +0.286616 0.050088 0.020687 +0.286617 0.055389 -4e-006 +0.286616 0.050088 -0.020695 +0.286615 0.035604 -0.035841 +0.286613 0.015818 -0.041385 +0.286612 0.015696 -0.06011 +0.286611 0.001213 -0.060082 +0.28661 -0.023752 -4e-006 +0.286611 0.001213 0.060379 +0.286612 0.015696 0.060115 +0.286613 0.015818 0.041377 +0.220677 0.035646 0.035833 +0.220678 0.05013 0.020687 +0.220679 0.055431 -4e-006 +0.220678 0.05013 -0.020695 +0.220677 0.035646 -0.035841 +0.220676 0.015861 -0.041385 +0.220674 0.015739 -0.06011 +0.220673 0.001254 -0.060082 +0.220673 -0.02371 -4e-006 +0.220673 0.001254 0.060379 +0.220674 0.015739 0.060115 +0.220676 0.015861 0.041377 +0.286613 0.015818 -4e-006 +0.220676 0.015861 -4e-006 +0.220673 0.001254 0.060379 +0.286611 0.001213 0.060379 +0.286611 0.001213 -0.060082 +0.101225 0.031552 0.044786 +0.101226 0.03692 0.12043 +0.14196 0.025509 0.044786 +0.141961 0.029399 0.12043 +numsurf 73 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +2 0.0799582228065 0.539897024632 +13 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +3 0.0799582228065 0.539897024632 +2 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +4 0.0799582228065 0.539897024632 +3 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +5 0.0799582228065 0.539897024632 +4 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +6 0.0799582228065 0.539897024632 +5 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +7 0.0799582228065 0.539897024632 +6 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +8 0.0799582228065 0.539897024632 +7 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +9 0.0799582228065 0.539897024632 +8 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +10 0.0799582228065 0.539897024632 +9 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +11 0.0799582228065 0.539897024632 +10 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +12 0.0799582228065 0.539897024632 +11 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +0 0.0799582228065 0.539897024632 +13 0.0799582228065 0.539897024632 +12 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +25 0.0799582228065 0.539897024632 +14 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +14 0.0799582228065 0.539897024632 +15 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +15 0.0799582228065 0.539897024632 +16 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +16 0.0799582228065 0.539897024632 +17 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +17 0.0799582228065 0.539897024632 +18 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +18 0.0799582228065 0.539897024632 +19 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +19 0.0799582228065 0.539897024632 +20 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +20 0.0799582228065 0.539897024632 +21 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +21 0.0799582228065 0.539897024632 +22 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +22 0.0799582228065 0.539897024632 +23 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +23 0.0799582228065 0.539897024632 +24 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 3 +1 0.0799582228065 0.539897024632 +24 0.0799582228065 0.539897024632 +25 0.0799582228065 0.539897024632 +SURF 0x10 +mat 2 +refs 4 +25 0.0799582228065 0.549106776714 +13 0.0799582228065 0.539897024632 +2 0.0807257071137 0.539897024632 +14 0.0807257071137 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +14 0.0807257071137 0.549106776714 +2 0.0807257071137 0.539897024632 +3 0.0814931765199 0.539897024632 +15 0.0814931765199 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +15 0.0814931765199 0.549106776714 +3 0.0814931765199 0.539897024632 +4 0.082260645926 0.539897024632 +16 0.082260645926 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +16 0.082260645926 0.549106776714 +4 0.082260645926 0.539897024632 +5 0.0830281153321 0.539897024632 +17 0.0830281153321 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +17 0.0830281153321 0.549106776714 +5 0.0830281153321 0.539897024632 +6 0.0837956145406 0.539897024632 +18 0.0837956145406 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +18 0.0837956145406 0.549106776714 +6 0.0837956145406 0.539897024632 +7 0.0845630839467 0.539897024632 +19 0.0845630839467 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +19 0.0845630839467 0.549106776714 +7 0.0845630839467 0.539897024632 +8 0.0853305533528 0.539897024632 +20 0.0853305533528 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +20 0.0853305533528 0.549106776714 +8 0.0853305533528 0.539897024632 +9 0.0860980525613 0.539897024632 +21 0.0860980525613 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +21 0.0860980525613 0.549106776714 +9 0.0860980525613 0.539897024632 +10 0.0868655219674 0.539897024632 +22 0.0868655219674 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +22 0.0868655219674 0.549106776714 +10 0.0868655219674 0.539897024632 +11 0.0876329913735 0.539897024632 +23 0.0876329913735 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +23 0.0876329913735 0.549106776714 +11 0.0876329913735 0.539897024632 +12 0.0884004756808 0.539897024632 +24 0.0884004756808 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +24 0.0884004756808 0.549106776714 +12 0.0884004756808 0.539897024632 +13 0.089167945087 0.539897024632 +25 0.089167945087 0.549106776714 +SURF 0x10 +mat 2 +refs 4 +27 0.183842405677 0.479689747095 +39 0.183842405677 0.478968471289 +38 0.183902516961 0.478968471289 +26 0.183902516961 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +28 0.183782294393 0.479689747095 +40 0.183782294393 0.478968471289 +39 0.183842405677 0.478968471289 +27 0.183842405677 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +29 0.183722183108 0.479689747095 +41 0.183722183108 0.478968471289 +40 0.183782294393 0.478968471289 +28 0.183782294393 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +30 0.183662086725 0.479689747095 +42 0.183662086725 0.478968471289 +41 0.183722183108 0.478968471289 +29 0.183722183108 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +31 0.183601975441 0.479689747095 +43 0.183601975441 0.478968471289 +42 0.183662086725 0.478968471289 +30 0.183662086725 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +32 0.183541864157 0.479689747095 +44 0.183541864157 0.478968471289 +43 0.183601975441 0.478968471289 +31 0.183601975441 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +54 0.183481752872 0.479689747095 +45 0.183481752872 0.478968471289 +44 0.183541864157 0.478968471289 +32 0.183541864157 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +34 0.183421641588 0.479689747095 +46 0.183421641588 0.478968471289 +45 0.183481752872 0.478968471289 +54 0.183481752872 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +35 0.183361545205 0.479689747095 +47 0.183361545205 0.478968471289 +46 0.183421641588 0.478968471289 +34 0.183421641588 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +36 0.183301433921 0.479689747095 +48 0.183301433921 0.478968471289 +52 0.183361545205 0.478968471289 +53 0.183361545205 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +37 0.183241322637 0.479689747095 +49 0.183241322637 0.478968471289 +48 0.183301433921 0.478968471289 +36 0.183301433921 0.479689747095 +SURF 0x10 +mat 2 +refs 4 +26 0.183181211352 0.479689747095 +38 0.183181211352 0.478968471289 +49 0.183241322637 0.478968471289 +37 0.183241322637 0.479689747095 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +27 0.183181211352 0.478968471289 +26 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +28 0.183181211352 0.478968471289 +27 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +29 0.183181211352 0.478968471289 +28 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +30 0.183181211352 0.478968471289 +29 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +31 0.183181211352 0.478968471289 +30 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +32 0.183181211352 0.478968471289 +31 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +33 0.183181211352 0.478968471289 +32 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +34 0.183181211352 0.478968471289 +33 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +35 0.183181211352 0.478968471289 +34 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +36 0.183181211352 0.478968471289 +35 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +37 0.183181211352 0.478968471289 +36 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +50 0.183181211352 0.478968471289 +26 0.183181211352 0.478968471289 +37 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +38 0.183181211352 0.478968471289 +39 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +39 0.183181211352 0.478968471289 +40 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +40 0.183181211352 0.478968471289 +41 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +41 0.183181211352 0.478968471289 +42 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +42 0.183181211352 0.478968471289 +43 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +43 0.183181211352 0.478968471289 +44 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +44 0.183181211352 0.478968471289 +45 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +45 0.183181211352 0.478968471289 +46 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +46 0.183181211352 0.478968471289 +47 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +47 0.183181211352 0.478968471289 +48 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +48 0.183181211352 0.478968471289 +49 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 3 +51 0.183181211352 0.478968471289 +49 0.183181211352 0.478968471289 +38 0.183181211352 0.478968471289 +SURF 0x10 +mat 2 +refs 4 +57 0.202283456922 0.48957207799 +55 0.211194992065 0.48957696557 +56 0.211193606257 0.501945197582 +58 0.202282071114 0.501940310001 +kids 0 +OBJECT poly +name "horzstab.001" +data 8 +Mesh.010 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 111 +0.64451 0.116561 2.306764 +0.899361 0.123524 2.307009 +0.897399 0.11689 2.306601 +0.639688 0.109987 2.307225 +0.718084 0.142869 2.306838 +0.717002 0.119428 2.307038 +0.844071 0.129424 2.306957 +0.842378 0.117664 2.306735 +0.888591 0.119852 2.243279 +0.88656 0.113006 2.242792 +0.620911 0.113907 2.243027 +0.61543 0.106828 2.243436 +0.696769 0.115892 2.243243 +0.697857 0.140206 2.243103 +0.828674 0.113886 2.242929 +0.830417 0.12606 2.243226 +0.599074 0.014895 0.530098 +0.59518 0.008608 0.527454 +-0.010354 0.042571 0.529629 +-0.033546 0.021898 0.52866 +0.152882 0.020824 0.528298 +0.154115 0.068626 0.52977 +0.460279 0.012334 0.527711 +0.463361 0.035624 0.529998 +0.45383 0.031514 0.485704 +0.450833 0.006714 0.483731 +0.13917 0.066308 0.485106 +0.137916 0.017689 0.483609 +-0.050266 0.016705 0.484691 +-0.028168 0.039808 0.484963 +0.587785 0.005264 0.482751 +0.591745 0.010516 0.485441 +0.367942 0.006021 0.310547 +0.365004 -0.006865 0.309817 +-0.088669 0.0295 0.311497 +-0.115907 -6.7e-005 0.310739 +0.074979 0.005783 0.309154 +0.074034 0.056712 0.311605 +0.261662 -0.002896 0.310014 +0.264015 0.021732 0.311779 +0.365004 -0.006865 0.309817 +0.367942 0.006021 0.310547 +0.591745 0.010516 0.485441 +0.587785 0.005264 0.482751 +0.59518 0.008608 0.527454 +0.599074 0.014895 0.530098 +0.88656 0.113006 2.242792 +0.888591 0.119852 2.243279 +0.897399 0.11689 2.306601 +0.899361 0.123524 2.307009 +0.899361 0.123524 -2.308464 +0.897399 0.11689 -2.308057 +0.888591 0.119852 -2.244735 +0.88656 0.113006 -2.244248 +0.599074 0.014895 -0.531554 +0.59518 0.008608 -0.52891 +0.587785 0.005264 -0.484206 +0.591745 0.010516 -0.486897 +0.363957 -0.014836 -0.000747 +0.360042 -0.032265 -0.000744 +0.367942 0.006021 -0.312003 +0.365004 -0.006865 -0.311273 +0.264015 0.021732 -0.313235 +0.261662 -0.002896 -0.31147 +0.074034 0.056712 -0.313061 +0.074979 0.005783 -0.31061 +-0.115907 -6.7e-005 -0.312195 +-0.088669 0.0295 -0.312953 +0.365004 -0.006865 -0.311273 +0.367942 0.006021 -0.312003 +0.22406 -0.027043 -0.000735 +0.227156 0.005364 -0.00072 +-0.031493 -0.015144 -0.000728 +-0.031393 0.051392 -0.000719 +0.360042 -0.032265 -0.000712 +-0.261235 -0.01331 -0.000728 +-0.198642 0.030973 -0.000728 +0.363957 -0.014836 -0.000747 +0.591745 0.010516 -0.486897 +0.587785 0.005264 -0.484206 +-0.028168 0.039808 -0.486419 +-0.050266 0.016705 -0.486147 +0.137916 0.017689 -0.485065 +0.13917 0.066308 -0.486562 +0.450833 0.006714 -0.485187 +0.45383 0.031514 -0.48716 +0.463361 0.035624 -0.531454 +0.460279 0.012334 -0.529167 +0.154115 0.068626 -0.531226 +0.152882 0.020824 -0.529754 +-0.033546 0.021898 -0.530116 +-0.010354 0.042571 -0.531085 +0.59518 0.008608 -0.52891 +0.599074 0.014895 -0.531554 +0.830417 0.12606 -2.244682 +0.828674 0.113886 -2.244385 +0.697857 0.140206 -2.244559 +0.696769 0.115892 -2.244699 +0.61543 0.106828 -2.244892 +0.620911 0.113907 -2.244483 +0.88656 0.113006 -2.244248 +0.888591 0.119852 -2.244735 +0.842378 0.117664 -2.308191 +0.844071 0.129424 -2.308412 +0.717002 0.119428 -2.308494 +0.718084 0.142869 -2.308294 +0.639688 0.109987 -2.308681 +0.897399 0.11689 -2.308057 +0.899361 0.123524 -2.308464 +0.64451 0.116561 -2.30822 +0.61543 0.106828 -2.244892 +numsurf 80 +SURF 0x30 +mat 2 +refs 4 +4 0.399851858616 0.632653355598 +0 0.399851858616 0.632653355598 +3 0.399851858616 0.632653355598 +5 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +1 0.399851858616 0.632653355598 +6 0.399851858616 0.632653355598 +7 0.399851858616 0.632653355598 +2 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +6 0.399851858616 0.632653355598 +4 0.399851858616 0.632653355598 +5 0.399851858616 0.632653355598 +7 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +0 0.399851858616 0.632653355598 +10 0.399851858616 0.632653355598 +11 0.399851858616 0.632653355598 +3 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +12 0.514271497726 0.254068434238 +5 0.528543055058 0.133798599243 +3 0.439346075058 0.137139439583 +11 0.408424496651 0.255182027817 +SURF 0x30 +mat 2 +refs 4 +10 0.479361355305 0.70319634676 +0 0.500608086586 0.639424204826 +4 0.542607367039 0.639886260033 +13 0.532478153706 0.703658461571 +SURF 0x30 +mat 2 +refs 4 +14 0.567195057869 0.253511667252 +7 0.573141515255 0.132128179073 +5 0.528543055058 0.133798599243 +12 0.514271497726 0.254068434238 +SURF 0x30 +mat 2 +refs 4 +9 0.620118558407 0.25295484066 +2 0.617740035057 0.130457758904 +7 0.573141515255 0.132128179073 +14 0.567195057869 0.253511667252 +SURF 0x30 +mat 2 +refs 4 +6 0.563607037067 0.64011734724 +15 0.559036552906 0.703889489174 +13 0.532478153706 0.703658461571 +4 0.542607367039 0.639886260033 +SURF 0x30 +mat 2 +refs 4 +1 0.584606766701 0.640348434448 +8 0.585594952106 0.704120576382 +15 0.559036552906 0.703889489174 +6 0.563607037067 0.64011734724 +SURF 0x30 +mat 2 +refs 4 +10 0.458114653826 0.639424204826 +18 0.458114653826 0.639424204826 +19 0.458114653826 0.639424204826 +11 0.458114653826 0.639424204826 +SURF 0x30 +mat 2 +refs 4 +18 0.458114653826 0.639424204826 +29 0.458114653826 0.639424204826 +28 0.458114653826 0.639424204826 +19 0.458114653826 0.639424204826 +SURF 0x30 +mat 2 +refs 4 +27 0.5 0.374338269234 +20 0.507135748863 0.314203381538 +19 0.392963767052 0.314203321934 +28 0.377502918243 0.373224675655 +SURF 0x30 +mat 2 +refs 4 +20 0.507135748863 0.314203381538 +12 0.514271497726 0.254068434238 +11 0.408424496651 0.255182027817 +19 0.392963767052 0.314203321934 +SURF 0x30 +mat 2 +refs 4 +13 0.532478153706 0.703658461571 +21 0.527413547039 0.73554456234 +18 0.468738019466 0.735082447529 +10 0.479361355305 0.70319634676 +SURF 0x30 +mat 2 +refs 4 +21 0.527413547039 0.73554456234 +26 0.522348940372 0.767430663109 +29 0.458114653826 0.766968548298 +18 0.468738019466 0.735082447529 +SURF 0x30 +mat 2 +refs 4 +25 0.561248540878 0.374895095825 +22 0.564221799374 0.314203381538 +20 0.507135748863 0.314203381538 +27 0.5 0.374338269234 +SURF 0x30 +mat 2 +refs 4 +22 0.564221799374 0.314203381538 +14 0.567195057869 0.253511667252 +12 0.514271497726 0.254068434238 +20 0.507135748863 0.314203381538 +SURF 0x30 +mat 2 +refs 4 +30 0.622497081757 0.375451922417 +17 0.621307790279 0.314203381538 +22 0.564221799374 0.314203381538 +25 0.561248540878 0.374895095825 +SURF 0x30 +mat 2 +refs 4 +15 0.559036552906 0.703889489174 +23 0.556751310825 0.735775589943 +21 0.527413547039 0.73554456234 +13 0.532478153706 0.703658461571 +SURF 0x30 +mat 2 +refs 4 +23 0.556751310825 0.735775589943 +24 0.554466068745 0.767661690712 +26 0.522348940372 0.767430663109 +21 0.527413547039 0.73554456234 +SURF 0x30 +mat 2 +refs 4 +16 0.586089074612 0.736006617546 +31 0.586583197117 0.767892718315 +24 0.554466068745 0.767661690712 +23 0.556751310825 0.735775589943 +SURF 0x30 +mat 2 +refs 4 +31 0.600605428219 0.772481143475 +32 0.537756383419 0.808732867241 +39 0.50633263588 0.808652341366 +24 0.559492111206 0.769924759865 +SURF 0x30 +mat 2 +refs 4 +24 0.559492111206 0.769924759865 +39 0.50633263588 0.808652341366 +37 0.44927740097 0.809792399406 +26 0.46711575985 0.771030068398 +SURF 0x30 +mat 2 +refs 4 +33 0.455821305513 0.525201380253 +30 0.455473095179 0.518463850021 +25 0.438758164644 0.518463850021 +38 0.437887579203 0.525158703327 +SURF 0x30 +mat 2 +refs 4 +38 0.437887579203 0.525158703327 +25 0.438758164644 0.518463850021 +27 0.422043204308 0.518463850021 +36 0.419953852892 0.525116026402 +SURF 0x30 +mat 2 +refs 4 +26 0.46711575985 0.771030068398 +37 0.44927740097 0.809792399406 +34 0.412061452866 0.80841088295 +29 0.405638307333 0.772020041943 +SURF 0x30 +mat 2 +refs 4 +36 0.419953852892 0.525116026402 +27 0.422043204308 0.518463850021 +28 0.388613373041 0.518463850021 +35 0.38408640027 0.525030732155 +SURF 0x30 +mat 2 +refs 4 +29 0.358979851007 0.775249123573 +34 0.358979851007 0.775249123573 +35 0.358979851007 0.775249123573 +28 0.358979851007 0.775249123573 +SURF 0x30 +mat 2 +refs 4 +34 0.359373480082 0.822860062122 +76 0.359373480082 0.822860062122 +75 0.359373480082 0.822860062122 +35 0.359373480082 0.822860062122 +SURF 0x30 +mat 2 +refs 4 +72 0.419953852892 0.525116026402 +36 0.422043204308 0.518463850021 +35 0.388613373041 0.518463850021 +75 0.38408640027 0.525030732155 +SURF 0x30 +mat 2 +refs 4 +37 0.525246620178 0.77130818367 +73 0.500941634178 0.802097022533 +76 0.378444582224 0.8017770648 +34 0.436071872711 0.771053314209 +SURF 0x30 +mat 2 +refs 4 +70 0.437887579203 0.525158703327 +38 0.438758164644 0.518463850021 +36 0.422043204308 0.518463850021 +72 0.419953852892 0.525116026402 +SURF 0x30 +mat 2 +refs 4 +74 0.455821305513 0.525201380253 +33 0.455473095179 0.518463850021 +38 0.438758164644 0.518463850021 +70 0.437887579203 0.525158703327 +SURF 0x30 +mat 2 +refs 4 +39 0.569834053516 0.771435678005 +71 0.562190175056 0.802256941795 +73 0.500941634178 0.802097022533 +37 0.525246620178 0.77130818367 +SURF 0x30 +mat 2 +refs 4 +32 0.61442142725 0.77156317234 +77 0.623438715935 0.802416920662 +71 0.562190175056 0.802256941795 +39 0.569834053516 0.771435678005 +SURF 0x30 +mat 2 +refs 4 +58 0.395501255989 0.808040380478 +41 0.395501255989 0.808040380478 +40 0.395501255989 0.808040380478 +59 0.395501255989 0.808040380478 +SURF 0x30 +mat 2 +refs 4 +41 0.395501255989 0.808040380478 +42 0.395501255989 0.808040380478 +43 0.395501255989 0.808040380478 +40 0.395501255989 0.808040380478 +SURF 0x30 +mat 2 +refs 4 +42 0.399851858616 0.632653355598 +45 0.399851858616 0.632653355598 +44 0.399851858616 0.632653355598 +43 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +47 0.399851858616 0.632653355598 +49 0.399851858616 0.632653355598 +48 0.399851858616 0.632653355598 +46 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +52 0.399851858616 0.632653355598 +53 0.399851858616 0.632653355598 +51 0.399851858616 0.632653355598 +50 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +57 0.399851858616 0.632653355598 +56 0.399851858616 0.632653355598 +55 0.399851858616 0.632653355598 +54 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +60 0.395501255989 0.808040380478 +61 0.395501255989 0.808040380478 +56 0.395501255989 0.808040380478 +57 0.395501255989 0.808040380478 +SURF 0x30 +mat 2 +refs 4 +58 0.395501255989 0.808040380478 +59 0.395501255989 0.808040380478 +61 0.395501255989 0.808040380478 +60 0.395501255989 0.808040380478 +SURF 0x30 +mat 2 +refs 4 +69 0.61442142725 0.77156317234 +62 0.569834053516 0.771435678005 +71 0.562190175056 0.802256941795 +77 0.623438715935 0.802416920662 +SURF 0x30 +mat 2 +refs 4 +62 0.569834053516 0.771435678005 +64 0.525246620178 0.77130818367 +73 0.500941634178 0.802097022533 +71 0.562190175056 0.802256941795 +SURF 0x30 +mat 2 +refs 4 +74 0.455821305513 0.525201380253 +70 0.437887579203 0.525158703327 +63 0.438758164644 0.518463850021 +68 0.455473095179 0.518463850021 +SURF 0x30 +mat 2 +refs 4 +70 0.437887579203 0.525158703327 +72 0.419953852892 0.525116026402 +65 0.422043204308 0.518463850021 +63 0.438758164644 0.518463850021 +SURF 0x30 +mat 2 +refs 4 +64 0.525246620178 0.77130818367 +67 0.436071872711 0.771053314209 +76 0.378444582224 0.8017770648 +73 0.500941634178 0.802097022533 +SURF 0x30 +mat 2 +refs 4 +72 0.419953852892 0.525116026402 +75 0.38408640027 0.525030732155 +66 0.388613373041 0.518463850021 +65 0.422043204308 0.518463850021 +SURF 0x30 +mat 2 +refs 4 +67 0.359373480082 0.822860062122 +66 0.359373480082 0.822860062122 +75 0.359373480082 0.822860062122 +76 0.359373480082 0.822860062122 +SURF 0x30 +mat 2 +refs 4 +80 0.358979851007 0.775249123573 +81 0.358979851007 0.775249123573 +66 0.358979851007 0.775249123573 +67 0.358979851007 0.775249123573 +SURF 0x30 +mat 2 +refs 4 +65 0.419953852892 0.525116026402 +66 0.38408640027 0.525030732155 +81 0.388613373041 0.518463850021 +82 0.422043204308 0.518463850021 +SURF 0x30 +mat 2 +refs 4 +83 0.46711575985 0.771030068398 +80 0.405638307333 0.772020041943 +67 0.412061452866 0.80841088295 +64 0.44927740097 0.809792399406 +SURF 0x30 +mat 2 +refs 4 +63 0.437887579203 0.525158703327 +65 0.419953852892 0.525116026402 +82 0.422043204308 0.518463850021 +84 0.438758164644 0.518463850021 +SURF 0x30 +mat 2 +refs 4 +68 0.455821305513 0.525201380253 +63 0.437887579203 0.525158703327 +84 0.438758164644 0.518463850021 +79 0.455473095179 0.518463850021 +SURF 0x30 +mat 2 +refs 4 +85 0.559492111206 0.769924759865 +83 0.46711575985 0.771030068398 +64 0.44927740097 0.809792399406 +62 0.50633263588 0.808652341366 +SURF 0x30 +mat 2 +refs 4 +78 0.600605428219 0.772481143475 +85 0.559492111206 0.769924759865 +62 0.50633263588 0.808652341366 +69 0.537756383419 0.808732867241 +SURF 0x30 +mat 2 +refs 4 +93 0.586089074612 0.736006617546 +86 0.556751310825 0.735775589943 +85 0.554466068745 0.767661690712 +78 0.586583197117 0.767892718315 +SURF 0x30 +mat 2 +refs 4 +86 0.556751310825 0.735775589943 +88 0.527413547039 0.73554456234 +83 0.522348940372 0.767430663109 +85 0.554466068745 0.767661690712 +SURF 0x30 +mat 2 +refs 4 +94 0.559036552906 0.703889489174 +96 0.532478153706 0.703658461571 +88 0.527413547039 0.73554456234 +86 0.556751310825 0.735775589943 +SURF 0x30 +mat 2 +refs 4 +79 0.622497081757 0.375451922417 +84 0.561248540878 0.374895095825 +87 0.564221799374 0.314203381538 +92 0.621307790279 0.314203381538 +SURF 0x30 +mat 2 +refs 4 +87 0.564221799374 0.314203381538 +89 0.507135748863 0.314203381538 +97 0.514271497726 0.254068434238 +95 0.567195057869 0.253511667252 +SURF 0x30 +mat 2 +refs 4 +84 0.561248540878 0.374895095825 +82 0.5 0.374338269234 +89 0.507135748863 0.314203381538 +87 0.564221799374 0.314203381538 +SURF 0x30 +mat 2 +refs 4 +88 0.527413547039 0.73554456234 +91 0.468738019466 0.735082447529 +80 0.458114653826 0.766968548298 +83 0.522348940372 0.767430663109 +SURF 0x30 +mat 2 +refs 4 +96 0.532478153706 0.703658461571 +99 0.479361355305 0.70319634676 +91 0.468738019466 0.735082447529 +88 0.527413547039 0.73554456234 +SURF 0x30 +mat 2 +refs 4 +89 0.507135748863 0.314203381538 +90 0.392963767052 0.314203321934 +98 0.408424496651 0.255182027817 +97 0.514271497726 0.254068434238 +SURF 0x30 +mat 2 +refs 4 +82 0.5 0.374338269234 +81 0.377502918243 0.373224675655 +90 0.392963767052 0.314203321934 +89 0.507135748863 0.314203381538 +SURF 0x30 +mat 2 +refs 4 +91 0.458114653826 0.639424204826 +90 0.458114653826 0.639424204826 +81 0.458114653826 0.639424204826 +80 0.458114653826 0.639424204826 +SURF 0x30 +mat 2 +refs 4 +99 0.458114653826 0.639424204826 +110 0.458114653826 0.639424204826 +90 0.458114653826 0.639424204826 +91 0.458114653826 0.639424204826 +SURF 0x30 +mat 2 +refs 4 +108 0.584606766701 0.640348434448 +103 0.563607037067 0.64011734724 +94 0.559036552906 0.703889489174 +101 0.585594952106 0.704120576382 +SURF 0x30 +mat 2 +refs 4 +103 0.563607037067 0.64011734724 +105 0.542607367039 0.639886260033 +96 0.532478153706 0.703658461571 +94 0.559036552906 0.703889489174 +SURF 0x30 +mat 2 +refs 4 +100 0.620118558407 0.25295484066 +95 0.567195057869 0.253511667252 +102 0.573141515255 0.132128179073 +107 0.617740035057 0.130457758904 +SURF 0x30 +mat 2 +refs 4 +95 0.567195057869 0.253511667252 +97 0.514271497726 0.254068434238 +104 0.528543055058 0.133798599243 +102 0.573141515255 0.132128179073 +SURF 0x30 +mat 2 +refs 4 +99 0.479361355305 0.70319634676 +96 0.532478153706 0.703658461571 +105 0.542607367039 0.639886260033 +109 0.500608086586 0.639424204826 +SURF 0x30 +mat 2 +refs 4 +97 0.514271497726 0.254068434238 +98 0.408424496651 0.255182027817 +106 0.439346075058 0.137139439583 +104 0.528543055058 0.133798599243 +SURF 0x30 +mat 2 +refs 4 +109 0.399851858616 0.632653355598 +106 0.399851858616 0.632653355598 +110 0.399851858616 0.632653355598 +99 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +103 0.399851858616 0.632653355598 +102 0.399851858616 0.632653355598 +104 0.399851858616 0.632653355598 +105 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +108 0.399851858616 0.632653355598 +107 0.399851858616 0.632653355598 +102 0.399851858616 0.632653355598 +103 0.399851858616 0.632653355598 +SURF 0x30 +mat 2 +refs 4 +105 0.399851858616 0.632653355598 +104 0.399851858616 0.632653355598 +106 0.399851858616 0.632653355598 +109 0.399851858616 0.632653355598 +kids 0 +OBJECT poly +name "horzstab" +data 8 +Mesh.005 +texture "//DSC01758.rgb" +texrep 1 1 +crease 45.000000 +numvert 9 +-0.130157 0.035188 -0.165385 +0.056747 0.048284 -0.165385 +0.056748 0.047968 0.16319 +-0.130232 0.034365 0.16319 +0.056747 0.035473 -0.001098 +-0.130195 0.039586 -0.001098 +0.024135 0.054261 -0.165385 +0.024101 0.054395 0.16319 +-0.031115 0.052716 -0.001098 +numsurf 4 +SURF 0x30 +mat 2 +refs 4 +4 0.528291463852 0.761986076832 +8 0.51858150959 0.76190161705 +7 0.519941926003 0.773422718048 +2 0.52847212553 0.77364385128 +SURF 0x30 +mat 2 +refs 4 +8 0.51858150959 0.76190161705 +5 0.508871614933 0.761817157269 +3 0.51141166687 0.773201584816 +7 0.519941926003 0.773422718048 +SURF 0x30 +mat 2 +refs 4 +6 0.520433187485 0.750243842602 +0 0.512755572796 0.75015938282 +5 0.508871614933 0.761817157269 +8 0.51858150959 0.76190161705 +SURF 0x30 +mat 2 +refs 4 +8 0.51858150959 0.76190161705 +4 0.528291463852 0.761986076832 +1 0.528110802174 0.750328302383 +6 0.520433187485 0.750243842602 +kids 0 diff --git a/resources/flightgear/Aircraft/Malolo1/Models/Malolo1.xml b/resources/flightgear/Aircraft/Malolo1/Models/Malolo1.xml new file mode 100644 index 0000000000000000000000000000000000000000..09144f72eba8d5791ee512f2b56e7050eb71aa92 --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Models/Malolo1.xml @@ -0,0 +1,103 @@ + + + + + Malolo1.ac + + -0.01 + 0.2 + + + + rotate + rhelevon + controls/flight/elevator + 15 + 0 +
+ 0.65 + 1.4 + 0.07 +
+ + 0.215 + 1 + 0.056 + +
+ + + rotate + rhelevon + controls/flight/aileron + -15 + 0 +
+ 0.65 + 1.4 + 0.07 +
+ + 0.215 + 1 + 0.056 + +
+ + + rotate + lhelevon + controls/flight/elevator + 15 + 0 +
+ 0.65 + -1.4 + 0.07 +
+ + -0.215 + 1 + -0.056 + +
+ + + rotate + lhelevon + controls/flight/aileron + 15 + 0 +
+ 0.65 + -1.4 + 0.07 +
+ + -0.215 + 1 + -0.056 + +
+ + + + spin + prop2 + engines/engine/rpm + -0.2 +
+ 0 + 0 + 0.0156 +
+ + 1 + 0 + 0 + +
+ + + +
diff --git a/resources/flightgear/Aircraft/Malolo1/Nasal/catapult.nas b/resources/flightgear/Aircraft/Malolo1/Nasal/catapult.nas new file mode 100644 index 0000000000000000000000000000000000000000..519d72f2ed70767382de2ae65c13624f07b8a051 --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/Nasal/catapult.nas @@ -0,0 +1,40 @@ +var launchCatapult = func { + # time on catapult = 1/10 sec + # speed when leaving catapult = 50 km/h ? + var countdownRunning = 1; + var count = 3; + var countdown = func { + if (countdownRunning) { + if (count != 0) { + setprop("/sim/screen/white",count); + count = count - 1; + settimer(countdown, 1); + } + else { + countdownRunning = 0; + setprop("/sim/screen/yellow","Go!"); + launch(); + } + } + } + countdown(); + + var launchRunning = 1; + var magnitude = 230; # lbs, unrealisticly high, because the FDM is wrong + var launch = func { + if (launchRunning) { + if (magnitude == 0){ + launchRunning = 0; + + # remove launcher contact points + setprop("/fdm/jsbsim/contact/unit[6]/pos-norm",0); + setprop("/fdm/jsbsim/contact/unit[7]/pos-norm",0); + setprop("/fdm/jsbsim/contact/unit[8]/pos-norm",0); + } + setprop("/fdm/jsbsim/external_reactions/catapult/magnitude",magnitude); + print (magnitude); + magnitude = 0; + settimer(launch, 0.1); + } + } +} diff --git a/resources/flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt b/resources/flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1eb2c4ff4a7ec9c891417ad05e9e4655333be5a --- /dev/null +++ b/resources/flightgear/Aircraft/Malolo1/readme_qgroundcontrol.txt @@ -0,0 +1,3 @@ +This is the original Malolo1 model with added catapult functionality. The catapult is from https://gitorious.org/mavlab/x100/ + +-Thomas Gubler diff --git a/resources/flightgear/Aircraft/Malolo1/thumbnail.jpg b/resources/flightgear/Aircraft/Malolo1/thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ebc3d8ac3d0e9421859467680a0383bede02046e Binary files /dev/null and b/resources/flightgear/Aircraft/Malolo1/thumbnail.jpg differ diff --git a/resources/flightgear/Aircraft/Rascal/Dialogs/config.xml b/resources/flightgear/Aircraft/Rascal/Dialogs/config.xml new file mode 100644 index 0000000000000000000000000000000000000000..fde85591a355cd43876b710f19a89effc9df0907 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Dialogs/config.xml @@ -0,0 +1,92 @@ + + + + rascal-config + vbox + 40 + 40 + + + hbox + + true + + + + + + true + + + + + + + + table + + + + 0 0 + left + + /ugear/settings/ap-enable + true + + dialog-apply + + + + + + 1 0 + left + + /ugear/settings/turret-enable + true + + dialog-apply + + + + + + 2 0 + left + + /sim/multiplay/generic/int[0] + true + + dialog-apply + + + + + + 3 0 + left + + /sim/multiplay/generic/int[1] + true + + dialog-apply + + + + + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Engines/18x8.xml b/resources/flightgear/Aircraft/Rascal/Engines/18x8.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f4aae8cf672c85b47d0f2a469a496641f2b0c5e --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Engines/18x8.xml @@ -0,0 +1,51 @@ + + + + + + 0.00085 + 18.0 + 2 + 30 + 30 + + + + 0.0 0.0776 + 0.1 0.0744 + 0.2 0.0712 + 0.3 0.0655 + 0.4 0.0588 + 0.5 0.0518 + 0.6 0.0419 + 0.7 0.0318 + 0.8 0.0172 + 1.0 -0.0058 + 1.4 -0.0549 + +
+ + + + 0.0 0.0902 + 0.1 0.0893 + 0.2 0.0880 + 0.3 0.0860 + 0.4 0.0810 + 0.5 0.0742 + 0.6 0.0681 + 0.7 0.0572 + 0.8 0.0467 + 1.0 0.0167 + 1.4 -0.0803 + +
+ +
diff --git a/resources/flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml b/resources/flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml new file mode 100644 index 0000000000000000000000000000000000000000..86d43a827e807510a32e0328dc425a9f219ef9fa --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Engines/Zenoah_G-26A.xml @@ -0,0 +1,8 @@ + + + + + + + 2207.27 + diff --git a/resources/flightgear/Aircraft/Rascal/Models/Rascal.rgb b/resources/flightgear/Aircraft/Rascal/Models/Rascal.rgb new file mode 100755 index 0000000000000000000000000000000000000000..108c50cae5ed250e8e38950cca59942fc89732f4 Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal/Models/Rascal.rgb differ diff --git a/resources/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac b/resources/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac new file mode 100755 index 0000000000000000000000000000000000000000..fd1fe631ec7c37a1d557f65ac2f19d4ecaa06d9c --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac @@ -0,0 +1,22017 @@ +AC3Db +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0 0 0 emis 0 0 0 spec 0.5 0.5 0.5 shi 10 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat13" rgb 0.533 0.533 0.533 amb 0.533 0.533 0.533 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat14" rgb 0.8 0.8 0.8 amb 0.8 0.8 0.8 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0.937 +MATERIAL "ac3dmat2" rgb 0.7 0.7 0.7 amb 0.7 0.7 0.7 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +OBJECT world +kids 1 +OBJECT poly +name "wavefront obj" +kids 21 +OBJECT poly +name "Fuselage" +texture "Rascal.rgb" +numvert 302 +0.8382 -0.106221 -0.06985 +0.8382 0.102273 -0.06985 +1.7399 0.0371731 -0.00635 +1.7526 -0.0467241 -0.00635 +1.74643 -0.0493484 3.74373e-16 +1.7399 0.0427099 -0.0040566 +1.7399 0.0480533 3.70211e-16 +1.7399 0.0427099 0.0040566 +1.7399 0.0371731 0.00635 +1.7526 -0.0467241 0.00635 +0.8382 0.102273 0.06985 +0.8382 -0.106221 0.06985 +0.8382 -0.127 -0.0490712 +0.8382 -0.127 0.0490712 +0.8382 0.1143 -0.0578231 +0.8382 0.1143 0.0578231 +0.5334 0.102273 0.06985 +0.5334 -0.118921 0.06985 +0.5334 0.1143 -0.0578231 +0.5334 0.1143 0.0578231 +0.5334 -0.118921 -0.06985 +0.5334 0.102273 -0.06985 +0.5334 -0.1397 0.0490712 +0.5334 -0.1397 -0.0490712 +0.4318 0.121323 0.06985 +0.4318 -9.60197e-18 0.06985 +0.4318 -0.118921 0.06985 +0.4318 0.13335 -0.0578231 +0.4318 0.13335 -0.0385487 +0.4318 0.13335 -0.0192744 +0.4318 0.13335 1.57364e-16 +0.4318 0.13335 0.0192744 +0.4318 0.13335 0.0385487 +0.4318 0.13335 0.0578231 +0.4318 -0.118921 -0.06985 +0.4318 2.66307e-18 -0.06985 +0.4318 0.121323 -0.06985 +0.4318 -0.1397 0.0490712 +0.4318 -0.1397 -0.0490712 +0.3302 -9.60197e-18 0.06985 +0.3302 -0.118921 0.06985 +0.3302 -0.1397 0.0490712 +0.3302 -0.1397 -0.0490712 +0.230215 -0.13012 0.0490712 +0.1905 -0.122237 0.0458962 +0.1905 -0.122237 -0.0458962 +0.230215 -0.13012 -0.0490712 +0.3302 -0.118921 -0.06985 +0.230215 -0.109341 -0.06985 +0.2286 2.66307e-18 -0.06985 +0.3302 2.66307e-18 -0.06985 +0.2286 -9.60197e-18 0.06985 +0.230215 -0.109341 0.06985 +0.0844119 -1.03372e-17 0.0578343 +0.0826471 -0.0478251 0.0576873 +0.1143 -0.0728837 0.060325 +0.1143 -1.01847e-17 0.060325 +0.1143 0.0114591 0.0591659 +0.0844127 0.0112162 0.0567231 +0.084415 0.0220013 0.0534322 +0.1143 0.0224779 0.055733 +0.1143 0.0326328 0.0501584 +0.0844184 0.0319411 0.0480879 +0.2286 0.0123882 -0.0685079 +0.1905 2.8562e-18 -0.066675 +0.1905 0.0120785 -0.0653939 +0.3302 0.0123882 -0.0685079 +0.3302 0.0243004 0.064533 +0.3302 0.0352787 0.0580782 +0.2286 0.0352787 0.0580782 +0.2286 0.0243004 0.064533 +0.3302 0.0449013 0.0493914 +0.2286 0.0449013 0.0493914 +0.3302 0.0527983 0.0388066 +0.2286 0.0527983 0.0388066 +0.3302 0.0123882 0.0685079 +0.2286 0.0123882 0.0685079 +0.3302 0.0586664 0.0267304 +0.2286 0.0586664 0.0267304 +0.3302 0.0622799 0.0136271 +0.2286 0.0622799 0.0136271 +0.3302 0.0635 8.60572e-17 +0.2286 0.0635 5.90995e-17 +0.3302 0.0622799 -0.0136271 +0.2286 0.0622799 -0.0136271 +0.3302 0.0586664 -0.0267304 +0.2286 0.0586664 -0.0267304 +0.3302 0.0527983 -0.0388066 +0.2286 0.0527983 -0.0388066 +0.3302 0.0449013 -0.0493914 +0.2286 0.0449013 -0.0493914 +0.3302 0.0352787 -0.0580782 +0.2286 0.0352787 -0.0580782 +0.3302 0.0243004 -0.064533 +0.2286 0.0243004 -0.064533 +0.1905 0.0236929 -0.0615997 +0.1905 0.0343967 -0.0554382 +0.1905 0.0437787 -0.0471463 +0.1905 0.0514784 -0.0370426 +0.1905 0.0571997 -0.0255154 +0.1905 0.0607229 -0.0130076 +0.1905 0.0619125 4.89904e-17 +0.1905 0.0607229 0.0130076 +0.1905 0.0571997 0.0255154 +0.1905 0.0514784 0.0370426 +0.1905 0.0437787 0.0471463 +0.1905 0.0343967 0.0554382 +0.411979 0.0123882 0.0685079 +0.392919 0.0243004 0.064533 +0.375354 0.0352787 0.0580782 +0.359958 0.0449013 0.0493914 +0.347323 0.0527983 0.0388066 +0.337934 0.0586664 0.0267304 +0.332152 0.0622799 0.0136271 +0.332152 0.0622799 -0.0136271 +0.337934 0.0586664 -0.0267304 +0.347323 0.0527983 -0.0388066 +0.359958 0.0449013 -0.0493914 +0.375354 0.0352787 -0.0580782 +0.392919 0.0243004 -0.064533 +0.411979 0.0123882 -0.0685079 +0.1905 -0.101459 -0.066675 +0.8382 0.10781 -0.0675566 +0.8382 0.112007 -0.0633599 +0.8382 0.112007 0.0633599 +0.8382 0.10781 0.0675566 +0.5334 0.112007 0.0633599 +0.5334 0.10781 0.0675566 +0.5334 0.10781 -0.0675566 +0.5334 0.112007 -0.0633599 +0.4318 0.131057 0.0633599 +0.4318 0.12686 0.0675566 +0.4318 0.12686 -0.0675566 +0.4318 0.131057 -0.0633599 +0.8382 -0.123016 -0.0586902 +0.8382 -0.11584 -0.0658657 +0.8382 -0.11584 0.0658657 +0.8382 -0.123016 0.0586902 +0.5334 -0.12854 0.0658657 +0.5334 -0.135716 0.0586902 +0.5334 -0.135716 -0.0586902 +0.5334 -0.12854 -0.0658657 +0.4318 -0.12854 0.0658657 +0.4318 -0.135716 0.0586902 +0.4318 -0.135716 -0.0586902 +0.4318 -0.12854 -0.0658657 +0.3302 -0.12854 0.0658657 +0.3302 -0.135716 0.0586902 +0.3302 -0.135716 -0.0586902 +0.3302 -0.12854 -0.0658657 +0.230215 -0.126135 0.0586902 +0.230215 -0.11896 0.0658657 +0.1905 -0.111078 0.0626907 +0.1905 -0.118253 0.0555152 +0.0826471 -0.0646196 -0.0465274 +0.0826471 -0.0574441 -0.053703 +0.1143 -0.0825027 -0.0563407 +0.1143 -0.0896782 -0.0491652 +0.230215 -0.126135 -0.0586902 +0.230215 -0.11896 -0.0658657 +0.0826471 -0.0686039 -0.0369085 +0.1143 -0.0936625 -0.0395462 +0.0826471 -0.0574441 0.053703 +0.1143 -0.0825027 0.0563407 +0.1905 -0.111078 -0.0626907 +0.1524 -0.111125 0.0427212 +0.1143 -0.0936625 0.0395462 +0.1524 -0.111125 -0.0427212 +0.1524 -0.0903462 0.0635 +0.1905 -0.101459 0.066675 +0.1905 -9.79509e-18 0.066675 +0.1524 -9.98821e-18 0.0635 +0.1905 0.0120785 0.0653939 +0.1524 0.0117688 0.0622799 +0.1524 0.0230854 0.0586664 +0.1905 0.0236929 0.0615997 +0.1524 0.0335148 0.0527983 +0.1524 3.04932e-18 -0.0635 +0.1143 3.24583e-18 -0.060325 +0.1143 0.0114591 -0.0591659 +0.1524 0.0117688 -0.0622799 +0.1143 0.0224779 -0.055733 +0.1524 0.0230854 -0.0586664 +0.1143 0.0326328 -0.0501584 +0.1524 0.0335148 -0.0527983 +0.1143 0.0415337 -0.0426562 +0.1524 0.0426562 -0.0449013 +0.1143 0.0488384 -0.0335148 +0.1524 0.0501584 -0.0352787 +0.1143 0.0542664 -0.0230854 +0.1524 0.055733 -0.0243004 +0.1143 0.0576089 -0.0117688 +0.1524 0.0591659 -0.0123882 +0.1143 0.0587375 2.87721e-17 +0.1524 0.060325 3.88813e-17 +0.1143 0.0576089 0.0117688 +0.1524 0.0591659 0.0123882 +0.1143 0.0542664 0.0230854 +0.1524 0.055733 0.0243004 +0.1143 0.0488384 0.0335148 +0.1524 0.0501584 0.0352787 +0.1143 0.0415337 0.0426562 +0.1524 0.0426562 0.0449013 +0.1524 -0.0903462 -0.0635 +0.1143 -0.0728837 -0.060325 +0.1524 -0.0999652 0.0595157 +0.1143 -0.0896782 0.0491652 +0.1524 -0.107141 0.0523402 +0.1524 -0.0999652 -0.0595157 +0.1905 -0.118253 -0.0555152 +0.1524 -0.107141 -0.0523402 +0.0826471 -0.0686039 0.0369085 +0.0844119 3.3983e-18 -0.0578343 +0.0844127 0.0112162 -0.0567231 +0.084415 0.0220013 -0.0534322 +0.0844184 0.0319411 -0.0480879 +0.0844225 0.0406534 -0.0408957 +0.0844266 0.0478035 -0.0321317 +0.0844301 0.0531165 -0.0221328 +0.0844324 0.0563883 -0.0112832 +0.0844332 0.057493 2.08475e-17 +0.0844324 0.0563883 0.0112832 +0.0844301 0.0531165 0.0221328 +0.0844266 0.0478035 0.0321317 +0.0844225 0.0406534 0.0408957 +0.0826471 -0.0478251 -0.0576873 +0.0826471 -0.0646196 0.0465274 +0.0762 -0.0552597 0.0347321 +0.0762 -0.0525299 0.0413224 +0.0762 -0.0476724 0.0461799 +0.0762 -0.0410821 0.0489097 +0.0762 -0.000404822 0.0489097 +0.0762 0.00953402 0.0479308 +0.0762 0.0187017 0.0451498 +0.0762 0.0271506 0.0406337 +0.0762 0.0345562 0.0345562 +0.0762 0.0406337 0.0271506 +0.0762 0.0451498 0.0187017 +0.0762 0.0479308 0.00953402 +0.0762 0.0488698 1.39736e-17 +0.0762 0.0479308 -0.00953402 +0.0762 0.0451498 -0.0187017 +0.0762 0.0406337 -0.0271506 +0.0762 0.0345562 -0.0345562 +0.0762 0.0271506 -0.0406337 +0.0762 0.0187017 -0.0451498 +0.0762 0.00953402 -0.0479308 +0.0762 -0.000404822 -0.0489097 +0.0762 -0.0410821 -0.0489097 +0.0762 -0.0476724 -0.0461799 +0.0762 -0.0525299 -0.0413224 +0.0762 -0.0552597 -0.0347321 +0.0806418 -7.51648e-05 0.0559901 +0.0777247 -0.00021897 0.0528198 +0.077334 -0.0427163 0.0527067 +0.0797503 -0.0452436 0.0559964 +0.080644 0.0108859 0.0549089 +0.0777231 0.0102877 0.0517819 +0.0806392 0.030996 0.0465426 +0.0777322 0.0293015 0.0439059 +0.0777267 0.0201813 0.0487807 +0.0806421 0.0213523 0.05172 +0.0798932 -0.0613656 -0.0455804 +0.0771911 -0.0562984 -0.0433988 +0.0772438 -0.0505308 -0.049308 +0.0798405 -0.0544665 -0.052338 +0.0799146 -0.0652012 -0.0364342 +0.0771697 -0.0595199 -0.0355076 +0.0772438 -0.0505308 0.049308 +0.0798405 -0.0544665 0.052338 +0.0799146 -0.0652012 0.0364342 +0.0771697 -0.0595199 0.0355076 +0.0806418 -7.51648e-05 -0.0559901 +0.0777247 -0.00021897 -0.0528198 +0.0777231 0.0102877 -0.0517819 +0.080644 0.0108859 -0.0549089 +0.0777267 0.0201813 -0.0487807 +0.0806421 0.0213523 -0.05172 +0.0777322 0.0293015 -0.0439059 +0.0806392 0.030996 -0.0465426 +0.0777386 0.037298 -0.0373433 +0.0806357 0.0394462 -0.0395769 +0.0777452 0.0438628 -0.029344 +0.0806321 0.0463789 -0.031092 +0.0777508 0.0487426 -0.0202146 +0.080629 0.0515288 -0.0214145 +0.0777545 0.0517483 -0.010306 +0.0806269 0.0546993 -0.0109163 +0.0777559 0.0527634 1.65548e-17 +0.0806262 0.0557697 1.89512e-17 +0.0777545 0.0517483 0.010306 +0.0806269 0.0546993 0.0109163 +0.0777508 0.0487426 0.0202146 +0.080629 0.0515288 0.0214145 +0.0777452 0.0438628 0.029344 +0.0806321 0.0463789 0.031092 +0.0777386 0.037298 0.0373433 +0.0806357 0.0394462 0.0395769 +0.0797503 -0.0452436 -0.0559964 +0.077334 -0.0427163 -0.0527067 +0.0771911 -0.0562984 0.0433988 +0.0798932 -0.0613656 0.0455804 +numsurf 291 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +1 0.462387 0.365802 +2 0.897735 0.289211 +3 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 8 +4 0.900887 0.229292 +3 0.903866 0.222712 +2 0.897735 0.289211 +5 0.897735 0.29428 +6 0.897735 0.299173 +7 0.897735 0.29428 +8 0.897735 0.289211 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +9 0.903866 0.222712 +8 0.897735 0.289211 +10 0.462387 0.365802 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +4 0.900887 0.229292 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 3 +14 0.462248 0.371534 +15 0.462248 0.371534 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +10 0.462387 0.365802 +16 0.315228 0.365802 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +15 0.462248 0.371534 +14 0.462248 0.371534 +18 0.315297 0.375551 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +0 0.462387 0.165574 +20 0.315228 0.153932 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +12 0.461845 0.14959 +13 0.461845 0.14959 +22 0.315228 0.142799 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 5 +17 0.315228 0.153932 +16 0.315228 0.365802 +24 0.266174 0.384097 +25 0.266174 0.267584 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 9 +19 0.315297 0.375551 +18 0.315297 0.375551 +27 0.266105 0.391907 +28 0.266105 0.391907 +29 0.266105 0.391907 +30 0.266105 0.391907 +31 0.266105 0.391907 +32 0.266105 0.391907 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 5 +21 0.315228 0.365802 +20 0.315228 0.153932 +34 0.266174 0.153932 +35 0.266174 0.267584 +36 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +22 0.315228 0.142799 +37 0.266174 0.142799 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +25 0.266174 0.267584 +39 0.217121 0.267584 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +37 0.266174 0.142799 +41 0.217121 0.142799 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +44 0.149673 0.158354 +45 0.149673 0.158354 +46 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +48 0.168848 0.168617 +49 0.168068 0.267584 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +43 0.168848 0.152081 +46 0.168848 0.152081 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +35 0.266174 0.267584 +34 0.266174 0.153932 +47 0.217121 0.153932 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +52 0.168848 0.168617 +40 0.217121 0.153932 +39 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +54 0.0980683 0.227431 +55 0.112883 0.19763 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +56 0.112883 0.267584 +57 0.112883 0.278589 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +60 0.112883 0.28917 +61 0.112883 0.298923 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +63 0.168068 0.279481 +49 0.168068 0.267584 +64 0.149673 0.267584 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +66 0.217121 0.279481 +50 0.217121 0.267584 +49 0.168068 0.267584 +63 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +67 0.217121 0.290921 +68 0.217121 0.301464 +69 0.168068 0.301464 +70 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +68 0.217121 0.301464 +71 0.217121 0.310705 +72 0.168068 0.310705 +69 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +71 0.217121 0.310705 +73 0.217121 0.318289 +74 0.168068 0.318289 +72 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +75 0.217121 0.279481 +67 0.217121 0.290921 +70 0.168068 0.290921 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +39 0.217121 0.267584 +75 0.217121 0.279481 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +73 0.217121 0.318289 +77 0.217121 0.323924 +78 0.168068 0.323924 +74 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +77 0.217121 0.323924 +79 0.217121 0.327394 +80 0.168068 0.327394 +78 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +79 0.217121 0.327394 +81 0.217744 0.327458 +82 0.168068 0.327181 +80 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +81 0.217744 0.327458 +83 0.217121 0.327394 +84 0.168068 0.327394 +82 0.168068 0.327181 +SURF 0x10 +mat 1 +refs 4 +83 0.217121 0.327394 +85 0.217121 0.323924 +86 0.168068 0.323924 +84 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +85 0.217121 0.323924 +87 0.217121 0.318289 +88 0.168068 0.318289 +86 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +87 0.217121 0.318289 +89 0.217121 0.310705 +90 0.168068 0.310705 +88 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +89 0.217121 0.310705 +91 0.217121 0.301464 +92 0.168068 0.301464 +90 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +91 0.217121 0.301464 +93 0.217121 0.290921 +94 0.168068 0.290921 +92 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +93 0.217121 0.290921 +66 0.217121 0.279481 +63 0.168068 0.279481 +94 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +94 0.168068 0.290921 +63 0.168068 0.279481 +65 0.149673 0.279183 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +92 0.168068 0.301464 +94 0.168068 0.290921 +95 0.149673 0.290337 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +90 0.168068 0.310705 +92 0.168068 0.301464 +96 0.149673 0.300617 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +88 0.168068 0.318289 +90 0.168068 0.310705 +97 0.149673 0.309627 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +86 0.168068 0.323924 +88 0.168068 0.318289 +98 0.149673 0.317021 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +84 0.168068 0.327394 +86 0.168068 0.323924 +99 0.149673 0.322516 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +82 0.168068 0.327181 +84 0.168068 0.327394 +100 0.149673 0.324171 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +80 0.168068 0.327394 +82 0.168068 0.327181 +101 0.149673 0.325037 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +78 0.168068 0.323924 +80 0.168068 0.327394 +102 0.149673 0.324171 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +74 0.168068 0.318289 +78 0.168068 0.323924 +103 0.149673 0.322516 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +72 0.168068 0.310705 +74 0.168068 0.318289 +104 0.149673 0.317021 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +69 0.168068 0.301464 +72 0.168068 0.310705 +105 0.149673 0.309627 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +58 0.0984158 0.275626 +57 0.112883 0.278589 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +39 0.217121 0.267584 +25 0.266174 0.267584 +107 0.256605 0.279481 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +107 0.256605 0.279481 +108 0.247402 0.290921 +67 0.217121 0.290921 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +108 0.247402 0.290921 +109 0.238922 0.301464 +68 0.217121 0.301464 +67 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +109 0.238922 0.301464 +110 0.231488 0.310705 +71 0.217121 0.310705 +68 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +110 0.231488 0.310705 +111 0.225388 0.318289 +73 0.217121 0.318289 +71 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +111 0.225388 0.318289 +112 0.220855 0.323924 +77 0.217121 0.323924 +73 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +112 0.220855 0.323924 +113 0.218063 0.327394 +79 0.217121 0.327394 +77 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 3 +113 0.218063 0.327394 +81 0.217744 0.327458 +79 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 3 +81 0.217744 0.327458 +114 0.218063 0.327394 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +114 0.218063 0.327394 +115 0.220855 0.323924 +85 0.217121 0.323924 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +115 0.220855 0.323924 +116 0.225388 0.318289 +87 0.217121 0.318289 +85 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 4 +116 0.225388 0.318289 +117 0.231488 0.310705 +89 0.217121 0.310705 +87 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +118 0.238922 0.301464 +91 0.217121 0.301464 +89 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +119 0.247402 0.290921 +93 0.217121 0.290921 +91 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +119 0.247402 0.290921 +120 0.256605 0.279481 +66 0.217121 0.279481 +93 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +120 0.256605 0.279481 +35 0.266174 0.267584 +50 0.217121 0.267584 +66 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +121 0.149673 0.174889 +64 0.149673 0.267584 +49 0.168068 0.267584 +SURF 0x10 +mat 1 +refs 4 +30 0.266105 0.391907 +29 0.266105 0.391907 +114 0.218063 0.327394 +81 0.217744 0.327458 +SURF 0x10 +mat 1 +refs 4 +122 0.462248 0.365301 +123 0.462248 0.369332 +6 0.897735 0.299173 +5 0.897735 0.29428 +SURF 0x10 +mat 1 +refs 4 +7 0.897735 0.29428 +6 0.897735 0.299173 +124 0.462248 0.369332 +125 0.462248 0.365301 +SURF 0x10 +mat 1 +refs 4 +125 0.462248 0.365301 +124 0.462248 0.369332 +126 0.315297 0.373349 +127 0.315228 0.371119 +SURF 0x10 +mat 1 +refs 4 +123 0.462248 0.369332 +122 0.462248 0.365301 +128 0.315228 0.371119 +129 0.315297 0.373349 +SURF 0x10 +mat 1 +refs 4 +127 0.315228 0.371119 +126 0.315297 0.373349 +130 0.266105 0.389705 +131 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +129 0.315297 0.373349 +128 0.315228 0.371119 +132 0.266174 0.389414 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +122 0.462248 0.365301 +5 0.897735 0.29428 +2 0.897735 0.289211 +SURF 0x10 +mat 1 +refs 4 +8 0.897735 0.289211 +7 0.897735 0.29428 +125 0.462248 0.365301 +10 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 3 +15 0.462248 0.371534 +124 0.462248 0.369332 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 3 +6 0.897735 0.299173 +123 0.462248 0.369332 +14 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +10 0.462387 0.365802 +125 0.462248 0.365301 +127 0.315228 0.371119 +16 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +14 0.462248 0.371534 +123 0.462248 0.369332 +129 0.315297 0.373349 +18 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +19 0.315297 0.375551 +126 0.315297 0.373349 +124 0.462248 0.369332 +15 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +21 0.315228 0.365802 +128 0.315228 0.371119 +122 0.462248 0.365301 +1 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 4 +16 0.315228 0.365802 +127 0.315228 0.371119 +131 0.266174 0.389414 +24 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +18 0.315297 0.375551 +129 0.315297 0.373349 +133 0.266105 0.389705 +27 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +33 0.266105 0.391907 +130 0.266105 0.389705 +126 0.315297 0.373349 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +132 0.266174 0.389414 +128 0.315228 0.371119 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +134 0.461845 0.154139 +135 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 3 +136 0.462387 0.156337 +137 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 4 +138 0.315228 0.148778 +139 0.315228 0.144934 +137 0.461845 0.154139 +136 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 4 +135 0.462387 0.156337 +134 0.461845 0.154139 +140 0.315228 0.144934 +141 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +142 0.266174 0.148778 +143 0.266174 0.144934 +139 0.315228 0.144934 +138 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +141 0.315228 0.148778 +140 0.315228 0.144934 +144 0.266174 0.144934 +145 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +146 0.217121 0.148778 +147 0.217121 0.144934 +143 0.266174 0.144934 +142 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +148 0.217121 0.144934 +149 0.217121 0.148778 +145 0.266174 0.148778 +144 0.266174 0.144934 +SURF 0x10 +mat 1 +refs 4 +150 0.168848 0.155252 +151 0.168848 0.160962 +152 0.149673 0.167235 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +155 0.0980683 0.219579 +156 0.112883 0.189975 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +149 0.217121 0.148778 +148 0.217121 0.144934 +158 0.168848 0.155252 +159 0.168848 0.160962 +SURF 0x10 +mat 1 +refs 4 +147 0.217121 0.144934 +146 0.217121 0.148778 +151 0.168848 0.160962 +150 0.168848 0.155252 +SURF 0x10 +mat 1 +refs 4 +3 0.903866 0.222712 +4 0.900887 0.229292 +135 0.462387 0.156337 +0 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +136 0.462387 0.156337 +4 0.900887 0.229292 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +134 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +137 0.461845 0.154139 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +17 0.315228 0.153932 +138 0.315228 0.148778 +136 0.462387 0.156337 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +135 0.462387 0.156337 +141 0.315228 0.148778 +20 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +13 0.461845 0.14959 +137 0.461845 0.154139 +139 0.315228 0.144934 +22 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +140 0.315228 0.144934 +134 0.461845 0.154139 +12 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +142 0.266174 0.148778 +138 0.315228 0.148778 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +20 0.315228 0.153932 +141 0.315228 0.148778 +145 0.266174 0.148778 +34 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +22 0.315228 0.142799 +139 0.315228 0.144934 +143 0.266174 0.144934 +37 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +144 0.266174 0.144934 +140 0.315228 0.144934 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +40 0.217121 0.153932 +146 0.217121 0.148778 +142 0.266174 0.148778 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +37 0.266174 0.142799 +143 0.266174 0.144934 +147 0.217121 0.144934 +41 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +42 0.217121 0.142799 +148 0.217121 0.144934 +144 0.266174 0.144934 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +150 0.168848 0.155252 +153 0.149673 0.161525 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +154 0.0980683 0.213721 +157 0.112883 0.184264 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +149 0.217121 0.148778 +159 0.168848 0.160962 +48 0.168848 0.168617 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +147 0.217121 0.144934 +150 0.168848 0.155252 +43 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +46 0.168848 0.152081 +158 0.168848 0.155252 +148 0.217121 0.144934 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +34 0.266174 0.153932 +145 0.266174 0.148778 +149 0.217121 0.148778 +47 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +52 0.168848 0.168617 +151 0.168848 0.160962 +146 0.217121 0.148778 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +162 0.0980683 0.219579 +163 0.112883 0.189975 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +159 0.168848 0.160962 +164 0.149673 0.167235 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +165 0.131278 0.167197 +166 0.112883 0.181094 +161 0.112883 0.181094 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +168 0.131278 0.183733 +169 0.149673 0.174889 +170 0.149673 0.267584 +171 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +171 0.131278 0.267584 +170 0.149673 0.267584 +172 0.149673 0.279183 +173 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +174 0.131278 0.289754 +175 0.149673 0.290337 +106 0.149673 0.300617 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +177 0.131278 0.267584 +178 0.112883 0.267584 +179 0.112883 0.278589 +180 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +180 0.131278 0.278886 +179 0.112883 0.278589 +181 0.112883 0.28917 +182 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +182 0.131278 0.289754 +181 0.112883 0.28917 +183 0.112883 0.298923 +184 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +184 0.131278 0.29977 +183 0.112883 0.298923 +185 0.112883 0.307471 +186 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +186 0.131278 0.308549 +185 0.112883 0.307471 +187 0.112883 0.314486 +188 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +188 0.131278 0.315753 +187 0.112883 0.314486 +189 0.112883 0.319699 +190 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +190 0.131278 0.321107 +189 0.112883 0.319699 +191 0.112675 0.320002 +192 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +192 0.131278 0.323092 +191 0.112675 0.320002 +193 0.112675 0.320946 +194 0.131278 0.322404 +SURF 0x10 +mat 1 +refs 4 +194 0.131278 0.322404 +193 0.112675 0.320946 +195 0.112675 0.320002 +196 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +196 0.131278 0.323092 +195 0.112675 0.320002 +197 0.112883 0.319699 +198 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +198 0.131278 0.321107 +197 0.112883 0.319699 +199 0.112883 0.314486 +200 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +200 0.131278 0.315753 +199 0.112883 0.314486 +201 0.112883 0.307471 +202 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +202 0.131278 0.308549 +201 0.112883 0.307471 +61 0.112883 0.298923 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +173 0.131278 0.278886 +172 0.149673 0.279183 +175 0.149673 0.290337 +174 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +203 0.131278 0.183733 +204 0.112883 0.19763 +178 0.112883 0.267584 +177 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +163 0.112883 0.189975 +206 0.112883 0.184264 +207 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +164 0.149673 0.167235 +209 0.149673 0.161525 +210 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +207 0.131278 0.170368 +206 0.112883 0.184264 +166 0.112883 0.181094 +165 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +210 0.131278 0.170368 +209 0.149673 0.161525 +45 0.149673 0.158354 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +152 0.149673 0.167235 +169 0.149673 0.174889 +168 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +156 0.112883 0.189975 +204 0.112883 0.19763 +203 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +55 0.112883 0.19763 +168 0.131278 0.183733 +171 0.131278 0.267584 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +56 0.112883 0.267584 +171 0.131278 0.267584 +173 0.131278 0.278886 +57 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +60 0.112883 0.28917 +174 0.131278 0.289754 +176 0.131278 0.29977 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +57 0.112883 0.278589 +173 0.131278 0.278886 +174 0.131278 0.289754 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +208 0.131278 0.176078 +210 0.131278 0.170368 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +157 0.112883 0.184264 +210 0.131278 0.170368 +167 0.131278 0.167197 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +205 0.131278 0.176078 +168 0.131278 0.183733 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +166 0.112883 0.181094 +211 0.0980683 0.210469 +160 0.0980683 0.210469 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +178 0.112883 0.267584 +212 0.0984157 0.266471 +213 0.0984158 0.275626 +179 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +179 0.112883 0.278589 +213 0.0984158 0.275626 +214 0.0984163 0.28443 +181 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +181 0.112883 0.28917 +214 0.0984163 0.28443 +215 0.0984169 0.292544 +183 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +183 0.112883 0.298923 +215 0.0984169 0.292544 +216 0.0984177 0.299656 +185 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +185 0.112883 0.307471 +216 0.0984177 0.299656 +217 0.0984185 0.305493 +187 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +187 0.112883 0.314486 +217 0.0984185 0.305493 +218 0.0984192 0.309829 +189 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +189 0.112883 0.319699 +218 0.0984192 0.309829 +219 0.0984197 0.3125 +191 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +191 0.112675 0.320002 +219 0.0984197 0.3125 +220 0.0984199 0.313402 +193 0.112675 0.320946 +SURF 0x10 +mat 1 +refs 4 +193 0.112675 0.320946 +220 0.0984199 0.313402 +221 0.0984197 0.3125 +195 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +195 0.112675 0.320002 +221 0.0984197 0.3125 +222 0.0984192 0.309829 +197 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +197 0.112883 0.319699 +222 0.0984192 0.309829 +223 0.0984185 0.305493 +199 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +199 0.112883 0.314486 +223 0.0984185 0.305493 +224 0.0984177 0.299656 +201 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +201 0.112883 0.307471 +224 0.0984177 0.299656 +62 0.0984169 0.292544 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +204 0.112883 0.19763 +225 0.0980683 0.227431 +212 0.0984157 0.266471 +178 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +162 0.0980683 0.219579 +226 0.0980683 0.213721 +206 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +206 0.112883 0.184264 +226 0.0980683 0.213721 +211 0.0980683 0.210469 +166 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +155 0.0980683 0.219579 +225 0.0980683 0.227431 +204 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +44 0.149673 0.158354 +165 0.131278 0.167197 +167 0.131278 0.167197 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +64 0.149673 0.267584 +177 0.131278 0.267584 +180 0.131278 0.278886 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +65 0.149673 0.279183 +180 0.131278 0.278886 +182 0.131278 0.289754 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +95 0.149673 0.290337 +182 0.131278 0.289754 +184 0.131278 0.29977 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +96 0.149673 0.300617 +184 0.131278 0.29977 +186 0.131278 0.308549 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +97 0.149673 0.309627 +186 0.131278 0.308549 +188 0.131278 0.315753 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +98 0.149673 0.317021 +188 0.131278 0.315753 +190 0.131278 0.321107 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +99 0.149673 0.322516 +190 0.131278 0.321107 +192 0.131278 0.323092 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +100 0.149673 0.324171 +192 0.131278 0.323092 +194 0.131278 0.322404 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +101 0.149673 0.325037 +194 0.131278 0.322404 +196 0.131278 0.323092 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +102 0.149673 0.324171 +196 0.131278 0.323092 +198 0.131278 0.321107 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +103 0.149673 0.322516 +198 0.131278 0.321107 +200 0.131278 0.315753 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +104 0.149673 0.317021 +200 0.131278 0.315753 +202 0.131278 0.308549 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +105 0.149673 0.309627 +202 0.131278 0.308549 +176 0.131278 0.29977 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +121 0.149673 0.174889 +203 0.131278 0.183733 +177 0.131278 0.267584 +64 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +205 0.131278 0.176078 +207 0.131278 0.170368 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +153 0.149673 0.161525 +207 0.131278 0.170368 +165 0.131278 0.167197 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +208 0.131278 0.176078 +203 0.131278 0.183733 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +169 0.149673 0.174889 +52 0.168848 0.168617 +51 0.168068 0.267584 +170 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +170 0.149673 0.267584 +51 0.168068 0.267584 +76 0.168068 0.279481 +172 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +175 0.149673 0.290337 +70 0.168068 0.290921 +69 0.168068 0.301464 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +172 0.149673 0.279183 +76 0.168068 0.279481 +70 0.168068 0.290921 +175 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +159 0.168848 0.160962 +158 0.168848 0.155252 +209 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +209 0.149673 0.161525 +158 0.168848 0.155252 +46 0.168848 0.152081 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +151 0.168848 0.160962 +52 0.168848 0.168617 +169 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +31 0.266105 0.391907 +30 0.266105 0.391907 +81 0.217744 0.327458 +113 0.218063 0.327394 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +112 0.220855 0.323924 +111 0.225388 0.318289 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +115 0.220855 0.323924 +114 0.218063 0.327394 +29 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +31 0.266105 0.391907 +113 0.218063 0.327394 +112 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +27 0.266105 0.391907 +116 0.225388 0.318289 +115 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 3 +25 0.266174 0.267584 +24 0.266174 0.384097 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +119 0.247402 0.290921 +118 0.238922 0.301464 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +130 0.266105 0.389705 +33 0.266105 0.391907 +111 0.225388 0.318289 +110 0.231488 0.310705 +SURF 0x10 +mat 1 +refs 4 +131 0.266174 0.389414 +130 0.266105 0.389705 +110 0.231488 0.310705 +109 0.238922 0.301464 +SURF 0x10 +mat 1 +refs 4 +24 0.266174 0.384097 +131 0.266174 0.389414 +109 0.238922 0.301464 +108 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +24 0.266174 0.384097 +108 0.247402 0.290921 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +116 0.225388 0.318289 +27 0.266105 0.391907 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +117 0.231488 0.310705 +133 0.266105 0.389705 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +120 0.256605 0.279481 +119 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +35 0.266174 0.267584 +120 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 25 +227 0.0967994 0.221362 +228 0.0967994 0.223591 +229 0.0967994 0.227555 +230 0.0967994 0.232935 +231 0.0967994 0.26614 +232 0.0967994 0.274253 +233 0.0967994 0.281737 +234 0.0967994 0.288634 +235 0.0967994 0.294679 +236 0.0967994 0.29964 +237 0.0967994 0.303326 +238 0.0967994 0.305596 +239 0.0967994 0.306363 +240 0.0967994 0.305596 +241 0.0967994 0.303326 +242 0.0967994 0.29964 +243 0.0967994 0.294679 +244 0.0967994 0.288634 +245 0.0967994 0.281737 +246 0.0967994 0.274253 +247 0.0967994 0.26614 +248 0.0967994 0.232935 +249 0.0967994 0.227555 +250 0.0967994 0.223591 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +252 0.0976736 0.26641 +253 0.0970995 0.266291 +254 0.0970226 0.231601 +255 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +256 0.097674 0.275357 +257 0.0970992 0.274869 +253 0.0970995 0.266291 +252 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +258 0.0976731 0.291773 +259 0.097101 0.290389 +260 0.0970999 0.282945 +261 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +261 0.0976737 0.283901 +260 0.0970999 0.282945 +257 0.0970992 0.274869 +256 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +262 0.0975263 0.216378 +263 0.0969944 0.220514 +264 0.0970048 0.225222 +265 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +266 0.0975305 0.213247 +267 0.0969902 0.217885 +263 0.0969944 0.220514 +262 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +255 0.0974981 0.229538 +254 0.0970226 0.231601 +268 0.0970048 0.225222 +269 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +270 0.0975305 0.213247 +271 0.0969902 0.217885 +267 0.0969902 0.217885 +266 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +272 0.0976736 0.26641 +273 0.0970995 0.266291 +274 0.0970992 0.274869 +275 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +275 0.097674 0.275357 +274 0.0970992 0.274869 +276 0.0970999 0.282945 +277 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +277 0.0976737 0.283901 +276 0.0970999 0.282945 +278 0.097101 0.290389 +279 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +279 0.0976731 0.291773 +278 0.097101 0.290389 +280 0.0971022 0.296917 +281 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +281 0.0976724 0.298671 +280 0.0971022 0.296917 +282 0.0971035 0.302275 +283 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +283 0.0976717 0.30433 +282 0.0971035 0.302275 +284 0.0971046 0.306259 +285 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +285 0.0976711 0.308534 +284 0.0971046 0.306259 +286 0.0971053 0.308712 +287 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +287 0.0976707 0.311121 +286 0.0971053 0.308712 +288 0.0971056 0.309541 +289 0.0976705 0.311995 +SURF 0x10 +mat 1 +refs 4 +289 0.0976705 0.311995 +288 0.0971056 0.309541 +290 0.0971053 0.308712 +291 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +291 0.0976707 0.311121 +290 0.0971053 0.308712 +292 0.0971046 0.306259 +293 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +293 0.0976711 0.308534 +292 0.0971046 0.306259 +294 0.0971035 0.302275 +295 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +295 0.0976717 0.30433 +294 0.0971035 0.302275 +296 0.0971022 0.296917 +297 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +297 0.0976724 0.298671 +296 0.0971022 0.296917 +259 0.097101 0.290389 +258 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +298 0.0974981 0.229538 +299 0.0970226 0.231601 +273 0.0970995 0.266291 +272 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +269 0.0975159 0.22201 +268 0.0970048 0.225222 +300 0.0969944 0.220514 +301 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +301 0.0975263 0.216378 +300 0.0969944 0.220514 +271 0.0969902 0.217885 +270 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +265 0.0975159 0.22201 +264 0.0970048 0.225222 +299 0.0970226 0.231601 +298 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +252 0.0976736 0.26641 +255 0.0974981 0.229538 +54 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +58 0.0984158 0.275626 +256 0.097674 0.275357 +252 0.0976736 0.26641 +53 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +62 0.0984169 0.292544 +258 0.0976731 0.291773 +261 0.0976737 0.283901 +59 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +261 0.0976737 0.283901 +256 0.097674 0.275357 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +262 0.0975263 0.216378 +265 0.0975159 0.22201 +155 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +266 0.0975305 0.213247 +262 0.0975263 0.216378 +154 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +255 0.0974981 0.229538 +269 0.0975159 0.22201 +162 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +211 0.0980683 0.210469 +270 0.0975305 0.213247 +266 0.0975305 0.213247 +160 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +212 0.0984157 0.266471 +272 0.0976736 0.26641 +275 0.097674 0.275357 +213 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +213 0.0984158 0.275626 +275 0.097674 0.275357 +277 0.0976737 0.283901 +214 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +214 0.0984163 0.28443 +277 0.0976737 0.283901 +279 0.0976731 0.291773 +215 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +215 0.0984169 0.292544 +279 0.0976731 0.291773 +281 0.0976724 0.298671 +216 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +216 0.0984177 0.299656 +281 0.0976724 0.298671 +283 0.0976717 0.30433 +217 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +217 0.0984185 0.305493 +283 0.0976717 0.30433 +285 0.0976711 0.308534 +218 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +218 0.0984192 0.309829 +285 0.0976711 0.308534 +287 0.0976707 0.311121 +219 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +219 0.0984197 0.3125 +287 0.0976707 0.311121 +289 0.0976705 0.311995 +220 0.0984199 0.313402 +SURF 0x10 +mat 1 +refs 4 +220 0.0984199 0.313402 +289 0.0976705 0.311995 +291 0.0976707 0.311121 +221 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +221 0.0984197 0.3125 +291 0.0976707 0.311121 +293 0.0976711 0.308534 +222 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +222 0.0984192 0.309829 +293 0.0976711 0.308534 +295 0.0976717 0.30433 +223 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +223 0.0984185 0.305493 +295 0.0976717 0.30433 +297 0.0976724 0.298671 +224 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +224 0.0984177 0.299656 +297 0.0976724 0.298671 +258 0.0976731 0.291773 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +225 0.0980683 0.227431 +298 0.0974981 0.229538 +272 0.0976736 0.26641 +212 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +162 0.0980683 0.219579 +269 0.0975159 0.22201 +301 0.0975263 0.216378 +226 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +226 0.0980683 0.213721 +301 0.0975263 0.216378 +270 0.0975305 0.213247 +211 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +155 0.0980683 0.219579 +265 0.0975159 0.22201 +298 0.0974981 0.229538 +225 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +227 0.0967994 0.221362 +271 0.0969902 0.217885 +300 0.0969944 0.220514 +228 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +228 0.0967994 0.223591 +300 0.0969944 0.220514 +268 0.0970048 0.225222 +229 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +229 0.0967994 0.227555 +268 0.0970048 0.225222 +254 0.0970226 0.231601 +230 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +230 0.0967994 0.232935 +254 0.0970226 0.231601 +253 0.0970995 0.266291 +231 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +231 0.0967994 0.26614 +253 0.0970995 0.266291 +257 0.0970992 0.274869 +232 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +232 0.0967994 0.274253 +257 0.0970992 0.274869 +260 0.0970999 0.282945 +233 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +233 0.0967994 0.281737 +260 0.0970999 0.282945 +259 0.097101 0.290389 +234 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +234 0.0967994 0.288634 +259 0.097101 0.290389 +296 0.0971022 0.296917 +235 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +235 0.0967994 0.294679 +296 0.0971022 0.296917 +294 0.0971035 0.302275 +236 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +236 0.0967994 0.29964 +294 0.0971035 0.302275 +292 0.0971046 0.306259 +237 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +237 0.0967994 0.303326 +292 0.0971046 0.306259 +290 0.0971053 0.308712 +238 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +238 0.0967994 0.305596 +290 0.0971053 0.308712 +288 0.0971056 0.309541 +239 0.0967994 0.306363 +SURF 0x10 +mat 1 +refs 4 +239 0.0967994 0.306363 +288 0.0971056 0.309541 +286 0.0971053 0.308712 +240 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +240 0.0967994 0.305596 +286 0.0971053 0.308712 +284 0.0971046 0.306259 +241 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +241 0.0967994 0.303326 +284 0.0971046 0.306259 +282 0.0971035 0.302275 +242 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +242 0.0967994 0.29964 +282 0.0971035 0.302275 +280 0.0971022 0.296917 +243 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +243 0.0967994 0.294679 +280 0.0971022 0.296917 +278 0.097101 0.290389 +244 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +244 0.0967994 0.288634 +278 0.097101 0.290389 +276 0.0970999 0.282945 +245 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +245 0.0967994 0.281737 +276 0.0970999 0.282945 +274 0.0970992 0.274869 +246 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +246 0.0967994 0.274253 +274 0.0970992 0.274869 +273 0.0970995 0.266291 +247 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +247 0.0967994 0.26614 +273 0.0970995 0.266291 +299 0.0970226 0.231601 +248 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +248 0.0967994 0.232935 +299 0.0970226 0.231601 +264 0.0970048 0.225222 +249 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +249 0.0967994 0.227555 +264 0.0970048 0.225222 +263 0.0969944 0.220514 +250 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +250 0.0967994 0.223591 +263 0.0969944 0.220514 +267 0.0969902 0.217885 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +251 0.0967994 0.221362 +267 0.0969902 0.217885 +271 0.0969902 0.217885 +227 0.0967994 0.221362 +kids 0 +OBJECT poly +name "Spinner" +numvert 161 +0.0762 0.0498239 0.00991059 +0.0762 0.0469331 0.0194403 +0.0762 0.0422387 0.028223 +0.0762 0.035921 0.035921 +0.0762 0.028223 0.0422387 +0.0762 0.0194403 0.0469331 +0.0762 0.00991059 0.0498239 +0.0762 -9.3315e-18 0.0508 +0.0762 -0.00991059 0.0498239 +0.0762 -0.0194403 0.0469331 +0.0762 -0.028223 0.0422387 +0.0762 -0.035921 0.035921 +0.0762 -0.0422387 0.028223 +0.0762 -0.0469331 0.0194403 +0.0762 -0.0498239 0.00991059 +0.0762 -0.0508 1.2442e-17 +0.0762 -0.0498239 -0.00991059 +0.0762 -0.0469331 -0.0194403 +0.0762 -0.0422387 -0.028223 +0.0762 -0.035921 -0.035921 +0.0762 -0.028223 -0.0422387 +0.0762 -0.0194403 -0.0469331 +0.0762 -0.00991059 -0.0498239 +0.0762 3.1105e-18 -0.0508 +0.0762 0.00991059 -0.0498239 +0.0762 0.0194403 -0.0469331 +0.0762 0.028223 -0.0422387 +0.0762 0.035921 -0.035921 +0.0762 0.0422387 -0.028223 +0.0762 0.0469331 -0.0194403 +0.0762 0.0498239 -0.00991059 +0.0762 0.0508 1.8663e-17 +0.0450424 0.0397968 1.31541e-17 +0.0450424 0.0390321 -0.00776398 +0.0259924 0.0288237 -0.0057334 +0.0259924 0.0293884 6.40787e-18 +0.0450424 0.0367675 -0.0152296 +0.0259924 0.0271514 -0.0112465 +0.0450424 0.0330899 -0.0221099 +0.0259924 0.0244356 -0.0163273 +0.0450424 0.0281406 -0.0281406 +0.0259924 0.0207808 -0.0207808 +0.0450424 0.0221099 -0.0330899 +0.0259924 0.0163273 -0.0244356 +0.0450424 0.0152296 -0.0367675 +0.0259924 0.0112465 -0.0271514 +0.0450424 0.00776398 -0.0390321 +0.0259924 0.0057334 -0.0288237 +0.0450424 2.43677e-18 -0.0397968 +0.0259924 1.79946e-18 -0.0293884 +0.0450424 -0.00776398 -0.0390321 +0.0259924 -0.0057334 -0.0288237 +0.0450424 -0.0152296 -0.0367675 +0.0259924 -0.0112465 -0.0271514 +0.0450424 -0.0221099 -0.0330899 +0.0259924 -0.0163273 -0.0244356 +0.0450424 -0.0281406 -0.0281406 +0.0259924 -0.0207808 -0.0207808 +0.0450424 -0.0330899 -0.0221099 +0.0259924 -0.0244356 -0.0163273 +0.0450424 -0.0367675 -0.0152296 +0.0259924 -0.0271514 -0.0112465 +0.0450424 -0.0390321 -0.00776398 +0.0259924 -0.0288237 -0.0057334 +0.0450424 -0.0397968 8.2806e-18 +0.0259924 -0.0293884 2.80895e-18 +0.0450424 -0.0390321 0.00776398 +0.0259924 -0.0288237 0.0057334 +0.0450424 -0.0367675 0.0152296 +0.0259924 -0.0271514 0.0112465 +0.0450424 -0.0330899 0.0221099 +0.0259924 -0.0244356 0.0163273 +0.0450424 -0.0281406 0.0281406 +0.0259924 -0.0207808 0.0207808 +0.0450424 -0.0221099 0.0330899 +0.0259924 -0.0163273 0.0244356 +0.0450424 -0.0152296 0.0367675 +0.0259924 -0.0112465 0.0271514 +0.0450424 -0.00776398 0.0390321 +0.0259924 -0.0057334 0.0288237 +0.0450424 -7.31032e-18 0.0397968 +0.0259924 -5.39839e-18 0.0293884 +0.0450424 0.00776398 0.0390321 +0.0259924 0.0057334 0.0288237 +0.0450424 0.0152296 0.0367675 +0.0259924 0.0112465 0.0271514 +0.0450424 0.0221099 0.0330899 +0.0259924 0.0163273 0.0244356 +0.0450424 0.0281406 0.0281406 +0.0259924 0.0207808 0.0207808 +0.0450424 0.0330899 0.0221099 +0.0259924 0.0244356 0.0163273 +0.0450424 0.0367675 0.0152296 +0.0259924 0.0271514 0.0112465 +0.0450424 0.0390321 0.00776398 +0.0259924 0.0288237 0.0057334 +0.0132924 0.0216178 -0.00430005 +0.0132924 0.0220413 2.68138e-18 +0.0132924 0.0203635 -0.00843485 +0.0132924 0.0183267 -0.0122455 +0.0132924 0.0155856 -0.0155856 +0.0132924 0.0122455 -0.0183267 +0.0132924 0.00843485 -0.0203635 +0.0132924 0.00430005 -0.0216178 +0.0132924 1.3496e-18 -0.0220413 +0.0132924 -0.00430005 -0.0216178 +0.0132924 -0.00843485 -0.0203635 +0.0132924 -0.0122455 -0.0183267 +0.0132924 -0.0155856 -0.0155856 +0.0132924 -0.0183267 -0.0122455 +0.0132924 -0.0203635 -0.00843485 +0.0132924 -0.0216178 -0.00430005 +0.0132924 -0.0220413 -1.78104e-20 +0.0132924 -0.0216178 0.00430005 +0.0132924 -0.0203635 0.00843485 +0.0132924 -0.0183267 0.0122455 +0.0132924 -0.0155856 0.0155856 +0.0132924 -0.0122455 0.0183267 +0.0132924 -0.00843485 0.0203635 +0.0132924 -0.00430005 0.0216178 +0.0132924 -4.04879e-18 0.0220413 +0.0132924 0.00430005 0.0216178 +0.0132924 0.00843485 0.0203635 +0.0132924 0.0122455 0.0183267 +0.0132924 0.0155856 0.0155856 +0.0132924 0.0183267 0.0122455 +0.0132924 0.0203635 0.00843485 +0.0132924 0.0216178 0.00430005 +0.003175 0.0106499 -0.00211839 +0.003175 0.0108585 3.31121e-18 +0.003175 0.010032 -0.00415538 +0.003175 0.00902854 -0.00603268 +0.003175 0.00767814 -0.00767814 +0.003175 0.00603268 -0.00902854 +0.003175 0.00415538 -0.010032 +0.003175 0.00211839 -0.0106499 +0.003175 6.64871e-19 -0.0108585 +0.003175 -0.00211839 -0.0106499 +0.003175 -0.00415538 -0.010032 +0.003175 -0.00603268 -0.00902854 +0.003175 -0.00767814 -0.00767814 +0.003175 -0.00902854 -0.00603268 +0.003175 -0.010032 -0.00415538 +0.003175 -0.0106499 -0.00211839 +0.003175 -0.0108585 1.98147e-18 +0.003175 -0.0106499 0.00211839 +0.003175 -0.010032 0.00415538 +0.003175 -0.00902854 0.00603268 +0.003175 -0.00767814 0.00767814 +0.003175 -0.00603268 0.00902854 +0.003175 -0.00415538 0.010032 +0.003175 -0.00211839 0.0106499 +0.003175 -1.99461e-18 0.0108585 +0.003175 0.00211839 0.0106499 +0.003175 0.00415538 0.010032 +0.003175 0.00603268 0.00902854 +0.003175 0.00767814 0.00767814 +0.003175 0.00902854 0.00603268 +0.003175 0.010032 0.00415538 +0.003175 0.0106499 0.00211839 +0 0 6.16106e-18 +numsurf 161 +SURF 0x10 +mat 4 +refs 32 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +18 0 0 +19 0 0 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +24 0 0 +25 0 0 +26 0 0 +27 0 0 +28 0 0 +29 0 0 +30 0 0 +31 0 0 +SURF 0x10 +mat 4 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x10 +mat 4 +refs 4 +33 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x10 +mat 4 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x10 +mat 4 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x10 +mat 4 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x10 +mat 4 +refs 4 +42 0 0 +44 0 0 +45 0 0 +43 0 0 +SURF 0x10 +mat 4 +refs 4 +44 0 0 +46 0 0 +47 0 0 +45 0 0 +SURF 0x10 +mat 4 +refs 4 +46 0 0 +48 0 0 +49 0 0 +47 0 0 +SURF 0x10 +mat 4 +refs 4 +48 0 0 +50 0 0 +51 0 0 +49 0 0 +SURF 0x10 +mat 4 +refs 4 +50 0 0 +52 0 0 +53 0 0 +51 0 0 +SURF 0x10 +mat 4 +refs 4 +52 0 0 +54 0 0 +55 0 0 +53 0 0 +SURF 0x10 +mat 4 +refs 4 +54 0 0 +56 0 0 +57 0 0 +55 0 0 +SURF 0x10 +mat 4 +refs 4 +56 0 0 +58 0 0 +59 0 0 +57 0 0 +SURF 0x10 +mat 4 +refs 4 +58 0 0 +60 0 0 +61 0 0 +59 0 0 +SURF 0x10 +mat 4 +refs 4 +60 0 0 +62 0 0 +63 0 0 +61 0 0 +SURF 0x10 +mat 4 +refs 4 +62 0 0 +64 0 0 +65 0 0 +63 0 0 +SURF 0x10 +mat 4 +refs 4 +64 0 0 +66 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 4 +refs 4 +66 0 0 +68 0 0 +69 0 0 +67 0 0 +SURF 0x10 +mat 4 +refs 4 +68 0 0 +70 0 0 +71 0 0 +69 0 0 +SURF 0x10 +mat 4 +refs 4 +70 0 0 +72 0 0 +73 0 0 +71 0 0 +SURF 0x10 +mat 4 +refs 4 +72 0 0 +74 0 0 +75 0 0 +73 0 0 +SURF 0x10 +mat 4 +refs 4 +74 0 0 +76 0 0 +77 0 0 +75 0 0 +SURF 0x10 +mat 4 +refs 4 +76 0 0 +78 0 0 +79 0 0 +77 0 0 +SURF 0x10 +mat 4 +refs 4 +78 0 0 +80 0 0 +81 0 0 +79 0 0 +SURF 0x10 +mat 4 +refs 4 +80 0 0 +82 0 0 +83 0 0 +81 0 0 +SURF 0x10 +mat 4 +refs 4 +82 0 0 +84 0 0 +85 0 0 +83 0 0 +SURF 0x10 +mat 4 +refs 4 +84 0 0 +86 0 0 +87 0 0 +85 0 0 +SURF 0x10 +mat 4 +refs 4 +86 0 0 +88 0 0 +89 0 0 +87 0 0 +SURF 0x10 +mat 4 +refs 4 +88 0 0 +90 0 0 +91 0 0 +89 0 0 +SURF 0x10 +mat 4 +refs 4 +90 0 0 +92 0 0 +93 0 0 +91 0 0 +SURF 0x10 +mat 4 +refs 4 +92 0 0 +94 0 0 +95 0 0 +93 0 0 +SURF 0x10 +mat 4 +refs 4 +94 0 0 +32 0 0 +35 0 0 +95 0 0 +SURF 0x10 +mat 4 +refs 4 +35 0 0 +34 0 0 +96 0 0 +97 0 0 +SURF 0x10 +mat 4 +refs 4 +34 0 0 +37 0 0 +98 0 0 +96 0 0 +SURF 0x10 +mat 4 +refs 4 +37 0 0 +39 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 4 +refs 4 +39 0 0 +41 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 4 +refs 4 +41 0 0 +43 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 4 +refs 4 +43 0 0 +45 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 4 +refs 4 +45 0 0 +47 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 4 +refs 4 +47 0 0 +49 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 4 +refs 4 +49 0 0 +51 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 4 +refs 4 +51 0 0 +53 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 4 +refs 4 +53 0 0 +55 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 4 +refs 4 +55 0 0 +57 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 4 +refs 4 +57 0 0 +59 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 4 +refs 4 +59 0 0 +61 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 4 +refs 4 +61 0 0 +63 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 4 +refs 4 +63 0 0 +65 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 4 +refs 4 +65 0 0 +67 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 4 +refs 4 +67 0 0 +69 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 4 +refs 4 +69 0 0 +71 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 4 +refs 4 +71 0 0 +73 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 4 +refs 4 +73 0 0 +75 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 4 +refs 4 +75 0 0 +77 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 4 +refs 4 +77 0 0 +79 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 4 +refs 4 +79 0 0 +81 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 4 +refs 4 +81 0 0 +83 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 4 +refs 4 +83 0 0 +85 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 4 +refs 4 +85 0 0 +87 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 4 +refs 4 +87 0 0 +89 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 4 +refs 4 +89 0 0 +91 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 4 +refs 4 +91 0 0 +93 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 4 +refs 4 +93 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 4 +refs 4 +95 0 0 +35 0 0 +97 0 0 +127 0 0 +SURF 0x10 +mat 4 +refs 4 +97 0 0 +96 0 0 +128 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 4 +96 0 0 +98 0 0 +130 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 4 +98 0 0 +99 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 4 +127 0 0 +97 0 0 +129 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 3 +128 0 0 +160 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 3 +130 0 0 +160 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 3 +131 0 0 +160 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 3 +132 0 0 +160 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 3 +133 0 0 +160 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 3 +134 0 0 +160 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 3 +135 0 0 +160 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 3 +136 0 0 +160 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 3 +137 0 0 +160 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 3 +138 0 0 +160 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 3 +139 0 0 +160 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 3 +140 0 0 +160 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 3 +141 0 0 +160 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 3 +142 0 0 +160 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 3 +143 0 0 +160 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 3 +144 0 0 +160 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 3 +145 0 0 +160 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 3 +146 0 0 +160 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 3 +147 0 0 +160 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 3 +148 0 0 +160 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 3 +149 0 0 +160 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 3 +150 0 0 +160 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 3 +151 0 0 +160 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 3 +152 0 0 +160 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 3 +153 0 0 +160 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 3 +154 0 0 +160 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 3 +155 0 0 +160 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 3 +156 0 0 +160 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 3 +157 0 0 +160 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 3 +158 0 0 +160 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 3 +159 0 0 +160 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 3 +129 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +30 0 0 +33 0 0 +32 0 0 +SURF 0x10 +mat 4 +refs 4 +30 0 0 +29 0 0 +36 0 0 +33 0 0 +SURF 0x10 +mat 4 +refs 4 +29 0 0 +28 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 4 +refs 4 +28 0 0 +27 0 0 +40 0 0 +38 0 0 +SURF 0x10 +mat 4 +refs 4 +27 0 0 +26 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 4 +refs 4 +26 0 0 +25 0 0 +44 0 0 +42 0 0 +SURF 0x10 +mat 4 +refs 4 +25 0 0 +24 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 4 +refs 4 +24 0 0 +23 0 0 +48 0 0 +46 0 0 +SURF 0x10 +mat 4 +refs 4 +23 0 0 +22 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 4 +refs 4 +22 0 0 +21 0 0 +52 0 0 +50 0 0 +SURF 0x10 +mat 4 +refs 4 +21 0 0 +20 0 0 +54 0 0 +52 0 0 +SURF 0x10 +mat 4 +refs 4 +20 0 0 +19 0 0 +56 0 0 +54 0 0 +SURF 0x10 +mat 4 +refs 4 +19 0 0 +18 0 0 +58 0 0 +56 0 0 +SURF 0x10 +mat 4 +refs 4 +18 0 0 +17 0 0 +60 0 0 +58 0 0 +SURF 0x10 +mat 4 +refs 4 +17 0 0 +16 0 0 +62 0 0 +60 0 0 +SURF 0x10 +mat 4 +refs 4 +16 0 0 +15 0 0 +64 0 0 +62 0 0 +SURF 0x10 +mat 4 +refs 4 +15 0 0 +14 0 0 +66 0 0 +64 0 0 +SURF 0x10 +mat 4 +refs 4 +14 0 0 +13 0 0 +68 0 0 +66 0 0 +SURF 0x10 +mat 4 +refs 4 +13 0 0 +12 0 0 +70 0 0 +68 0 0 +SURF 0x10 +mat 4 +refs 4 +12 0 0 +11 0 0 +72 0 0 +70 0 0 +SURF 0x10 +mat 4 +refs 4 +11 0 0 +10 0 0 +74 0 0 +72 0 0 +SURF 0x10 +mat 4 +refs 4 +10 0 0 +9 0 0 +76 0 0 +74 0 0 +SURF 0x10 +mat 4 +refs 4 +9 0 0 +8 0 0 +78 0 0 +76 0 0 +SURF 0x10 +mat 4 +refs 4 +8 0 0 +7 0 0 +80 0 0 +78 0 0 +SURF 0x10 +mat 4 +refs 4 +7 0 0 +6 0 0 +82 0 0 +80 0 0 +SURF 0x10 +mat 4 +refs 4 +6 0 0 +5 0 0 +84 0 0 +82 0 0 +SURF 0x10 +mat 4 +refs 4 +5 0 0 +4 0 0 +86 0 0 +84 0 0 +SURF 0x10 +mat 4 +refs 4 +4 0 0 +3 0 0 +88 0 0 +86 0 0 +SURF 0x10 +mat 4 +refs 4 +3 0 0 +2 0 0 +90 0 0 +88 0 0 +SURF 0x10 +mat 4 +refs 4 +2 0 0 +1 0 0 +92 0 0 +90 0 0 +SURF 0x10 +mat 4 +refs 4 +1 0 0 +0 0 0 +94 0 0 +92 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +32 0 0 +94 0 0 +0 0 0 +kids 0 +OBJECT poly +name "UC_Main_Center" +numvert 28 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 22 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +4 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 3 +7 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +10 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +12 0 0 +13 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +0 0 0 +3 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 3 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +24 0 0 +25 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +26 0 0 +27 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +14 0 0 +17 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +12 0 0 +27 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +8 0 0 +22 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +20 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +1 0 0 +16 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +17 0 0 +16 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +10 0 0 +25 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +7 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +4 0 0 +19 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_Main_Left" +numvert 22 +0.489939 -0.321589 0.261464 +0.48895 -0.322594 0.26061 +0.48895 -0.325422 0.258204 +0.489939 -0.326427 0.25735 +0.526061 -0.326427 0.25735 +0.52705 -0.325422 0.258204 +0.52705 -0.322594 0.26061 +0.526061 -0.321589 0.261464 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +18 0 0 +19 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +10 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +14 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +17 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +21 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +11 0 0 +0 0 0 +7 0 0 +kids 0 +OBJECT poly +name "UC_Main_Right" +numvert 22 +0.526061 -0.321589 -0.261464 +0.52705 -0.322594 -0.26061 +0.52705 -0.325422 -0.258204 +0.526061 -0.326427 -0.25735 +0.489939 -0.326427 -0.25735 +0.48895 -0.325422 -0.258204 +0.48895 -0.322594 -0.26061 +0.489939 -0.321589 -0.261464 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +5 0 0 +12 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +5 0 0 +4 0 0 +14 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +3 0 0 +17 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +2 0 0 +15 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +1 0 0 +18 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +0 0 0 +20 0 0 +18 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +8 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_L_Tyre" +numvert 194 +0.508 -0.33655 0.26035 +0.511763 -0.355466 0.262865 +0.508 -0.355836 0.262865 +0.51538 -0.354368 0.262865 +0.518715 -0.352586 0.262865 +0.521637 -0.350187 0.262865 +0.524036 -0.347265 0.262865 +0.525818 -0.34393 0.262865 +0.526916 -0.340313 0.262865 +0.527286 -0.33655 0.262865 +0.526916 -0.332787 0.262865 +0.525818 -0.32917 0.262865 +0.524036 -0.325835 0.262865 +0.521637 -0.322913 0.262865 +0.518715 -0.320514 0.262865 +0.51538 -0.318732 0.262865 +0.511763 -0.317634 0.262865 +0.508 -0.317264 0.262865 +0.504237 -0.317634 0.262865 +0.50062 -0.318732 0.262865 +0.497285 -0.320514 0.262865 +0.494363 -0.322913 0.262865 +0.491964 -0.325835 0.262865 +0.490182 -0.32917 0.262865 +0.489084 -0.332787 0.262865 +0.488714 -0.33655 0.262865 +0.489084 -0.340313 0.262865 +0.490182 -0.34393 0.262865 +0.491964 -0.347265 0.262865 +0.494363 -0.350187 0.262865 +0.497285 -0.352586 0.262865 +0.50062 -0.354368 0.262865 +0.504237 -0.355466 0.262865 +0.51478 -0.370635 0.263563 +0.508 -0.371302 0.263563 +0.521299 -0.368657 0.263563 +0.527307 -0.365446 0.263563 +0.532574 -0.361124 0.263563 +0.536896 -0.355857 0.263563 +0.540107 -0.349849 0.263563 +0.542085 -0.34333 0.263563 +0.542752 -0.33655 0.263563 +0.542085 -0.32977 0.263563 +0.540107 -0.323251 0.263563 +0.536896 -0.317243 0.263563 +0.532574 -0.311976 0.263563 +0.527307 -0.307654 0.263563 +0.521299 -0.304443 0.263563 +0.51478 -0.302465 0.263563 +0.508 -0.301798 0.263563 +0.50122 -0.302465 0.263563 +0.494701 -0.304443 0.263563 +0.488693 -0.307654 0.263563 +0.483426 -0.311976 0.263563 +0.479104 -0.317243 0.263563 +0.475893 -0.323251 0.263563 +0.473915 -0.32977 0.263563 +0.473248 -0.33655 0.263563 +0.473915 -0.34333 0.263563 +0.475893 -0.349849 0.263563 +0.479104 -0.355857 0.263563 +0.483426 -0.361124 0.263563 +0.488693 -0.365446 0.263563 +0.494701 -0.368657 0.263563 +0.50122 -0.370635 0.263563 +0.516454 -0.379053 0.269509 +0.508 -0.379886 0.269509 +0.524584 -0.376587 0.269509 +0.532076 -0.372582 0.269509 +0.538643 -0.367193 0.269509 +0.544032 -0.360626 0.269509 +0.548037 -0.353134 0.269509 +0.550503 -0.345004 0.269509 +0.551336 -0.33655 0.269509 +0.550503 -0.328096 0.269509 +0.548037 -0.319966 0.269509 +0.544032 -0.312474 0.269509 +0.538643 -0.305907 0.269509 +0.532076 -0.300518 0.269509 +0.524584 -0.296513 0.269509 +0.516454 -0.294047 0.269509 +0.508 -0.293214 0.269509 +0.499546 -0.294047 0.269509 +0.491416 -0.296513 0.269509 +0.483924 -0.300518 0.269509 +0.477357 -0.305907 0.269509 +0.471968 -0.312474 0.269509 +0.467963 -0.319966 0.269509 +0.465497 -0.328096 0.269509 +0.464664 -0.33655 0.269509 +0.465497 -0.345004 0.269509 +0.467963 -0.353134 0.269509 +0.471968 -0.360626 0.269509 +0.477357 -0.367193 0.269509 +0.483924 -0.372582 0.269509 +0.491416 -0.376587 0.269509 +0.499546 -0.379053 0.269509 +0.516454 -0.379053 0.289291 +0.508 -0.379886 0.289291 +0.524584 -0.376587 0.289291 +0.532076 -0.372582 0.289291 +0.538643 -0.367193 0.289291 +0.544032 -0.360626 0.289291 +0.548037 -0.353134 0.289291 +0.550503 -0.345004 0.289291 +0.551336 -0.33655 0.289291 +0.550503 -0.328096 0.289291 +0.548037 -0.319966 0.289291 +0.544032 -0.312474 0.289291 +0.538643 -0.305907 0.289291 +0.532076 -0.300518 0.289291 +0.524584 -0.296513 0.289291 +0.516454 -0.294047 0.289291 +0.508 -0.293214 0.289291 +0.499546 -0.294047 0.289291 +0.491416 -0.296513 0.289291 +0.483924 -0.300518 0.289291 +0.477357 -0.305907 0.289291 +0.471968 -0.312474 0.289291 +0.467963 -0.319966 0.289291 +0.465497 -0.328096 0.289291 +0.464664 -0.33655 0.289291 +0.465497 -0.345004 0.289291 +0.467963 -0.353134 0.289291 +0.471968 -0.360626 0.289291 +0.477357 -0.367193 0.289291 +0.483924 -0.372582 0.289291 +0.491416 -0.376587 0.289291 +0.499546 -0.379053 0.289291 +0.51478 -0.370635 0.295237 +0.508 -0.371302 0.295237 +0.521299 -0.368657 0.295237 +0.527307 -0.365446 0.295237 +0.532574 -0.361124 0.295237 +0.536896 -0.355857 0.295237 +0.540107 -0.349849 0.295237 +0.542085 -0.34333 0.295237 +0.542752 -0.33655 0.295237 +0.542085 -0.32977 0.295237 +0.540107 -0.323251 0.295237 +0.536896 -0.317243 0.295237 +0.532574 -0.311976 0.295237 +0.527307 -0.307654 0.295237 +0.521299 -0.304443 0.295237 +0.51478 -0.302465 0.295237 +0.508 -0.301798 0.295237 +0.50122 -0.302465 0.295237 +0.494701 -0.304443 0.295237 +0.488693 -0.307654 0.295237 +0.483426 -0.311976 0.295237 +0.479104 -0.317243 0.295237 +0.475893 -0.323251 0.295237 +0.473915 -0.32977 0.295237 +0.473248 -0.33655 0.295237 +0.473915 -0.34333 0.295237 +0.475893 -0.349849 0.295237 +0.479104 -0.355857 0.295237 +0.483426 -0.361124 0.295237 +0.488693 -0.365446 0.295237 +0.494701 -0.368657 0.295237 +0.50122 -0.370635 0.295237 +0.511763 -0.355466 0.295935 +0.508 -0.355836 0.295935 +0.51538 -0.354368 0.295935 +0.518715 -0.352586 0.295935 +0.521637 -0.350187 0.295935 +0.524036 -0.347265 0.295935 +0.525818 -0.34393 0.295935 +0.526916 -0.340313 0.295935 +0.527286 -0.33655 0.295935 +0.526916 -0.332787 0.295935 +0.525818 -0.32917 0.295935 +0.524036 -0.325835 0.295935 +0.521637 -0.322913 0.295935 +0.518715 -0.320514 0.295935 +0.51538 -0.318732 0.295935 +0.511763 -0.317634 0.295935 +0.508 -0.317264 0.295935 +0.504237 -0.317634 0.295935 +0.50062 -0.318732 0.295935 +0.497285 -0.320514 0.295935 +0.494363 -0.322913 0.295935 +0.491964 -0.325835 0.295935 +0.490182 -0.32917 0.295935 +0.489084 -0.332787 0.295935 +0.488714 -0.33655 0.295935 +0.489084 -0.340313 0.295935 +0.490182 -0.34393 0.295935 +0.491964 -0.347265 0.295935 +0.494363 -0.350187 0.295935 +0.497285 -0.352586 0.295935 +0.50062 -0.354368 0.295935 +0.504237 -0.355466 0.295935 +0.508 -0.33655 0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "UC_L_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.343362 0.3048 +0.5334 -0.343362 0.3048 +0.5334 -0.319928 0.3048 +0.45085 -0.3175 0.3048 +0.558993 -0.343365 0.303107 +0.59055 -0.340187 0.29845 +0.59055 -0.324379 0.29845 +0.559694 -0.322015 0.303107 +0.437731 -0.334414 0.296121 +0.436824 -0.332298 0.298207 +0.416759 -0.304471 0.290148 +0.413555 -0.304734 0.285426 +0.45085 -0.286766 0.301364 +0.45085 -0.289186 0.303784 +0.5334 -0.294042 0.303784 +0.5334 -0.291621 0.301364 +0.607931 -0.312778 0.29036 +0.606244 -0.314361 0.291901 +0.61595 -0.327165 0.289154 +0.61595 -0.324744 0.288185 +0.45085 -0.345814 0.303784 +0.45085 -0.348234 0.301364 +0.5334 -0.348234 0.301364 +0.5334 -0.345814 0.303784 +0.560554 -0.295796 0.299899 +0.560474 -0.298215 0.302159 +0.59055 -0.30612 0.297688 +0.59055 -0.303699 0.295873 +0.558833 -0.348235 0.299899 +0.558913 -0.345816 0.302159 +0.59055 -0.345059 0.295873 +0.59055 -0.342639 0.297688 +0.44302 -0.339609 0.300683 +0.444012 -0.341594 0.298781 +0.420557 -0.295133 0.290547 +0.419499 -0.292852 0.287691 +0.61595 -0.342519 0.288185 +0.61595 -0.340099 0.289154 +0.43815 -0.335392 0.29372 +0.41275 -0.3048 0.282802 +0.45085 -0.28575 0.298912 +0.5334 -0.290606 0.298912 +0.608585 -0.31202 0.289156 +0.61595 -0.323729 0.287205 +0.5334 -0.296494 0.3048 +0.45085 -0.291638 0.3048 +0.560587 -0.294781 0.297611 +0.59055 -0.302683 0.294034 +0.5588 -0.34925 0.297611 +0.5334 -0.34925 0.298912 +0.59055 -0.308571 0.29845 +0.560394 -0.300666 0.303107 +0.45085 -0.34925 0.298912 +0.4445 -0.342569 0.29641 +0.421555 -0.297286 0.291804 +0.441898 -0.337364 0.301399 +0.4191 -0.291991 0.285178 +0.435842 -0.330006 0.299031 +0.59055 -0.346075 0.294034 +0.604751 -0.316874 0.293248 +0.61595 -0.343535 0.287205 +0.419029 -0.304289 0.292139 +0.615292 -0.337806 0.28956 +0.615596 -0.329572 0.28956 +0.618726 -0.335751 0.286648 +0.615444 -0.333689 0.28956 +0.45085 -0.3175 0.254 +0.5334 -0.319928 0.254 +0.5334 -0.343362 0.254 +0.45085 -0.343362 0.254 +0.559694 -0.322015 0.255693 +0.59055 -0.324379 0.26035 +0.59055 -0.340187 0.26035 +0.558993 -0.343365 0.255693 +0.413555 -0.304734 0.273374 +0.416759 -0.304471 0.268652 +0.436824 -0.332298 0.260593 +0.437731 -0.334414 0.262679 +0.5334 -0.291621 0.257436 +0.5334 -0.294042 0.255016 +0.45085 -0.289186 0.255016 +0.45085 -0.286766 0.257436 +0.61595 -0.324744 0.270615 +0.61595 -0.327165 0.269646 +0.606244 -0.314361 0.266899 +0.607931 -0.312778 0.26844 +0.5334 -0.345814 0.255016 +0.5334 -0.348234 0.257436 +0.45085 -0.348234 0.257436 +0.45085 -0.345814 0.255016 +0.59055 -0.303699 0.262927 +0.59055 -0.30612 0.261112 +0.560474 -0.298215 0.256641 +0.560554 -0.295796 0.258901 +0.558913 -0.345816 0.256641 +0.558833 -0.348235 0.258901 +0.59055 -0.342639 0.261112 +0.59055 -0.345059 0.262927 +0.444012 -0.341594 0.260019 +0.44302 -0.339609 0.258117 +0.419499 -0.292852 0.271109 +0.420557 -0.295133 0.268253 +0.61595 -0.340099 0.269646 +0.61595 -0.342519 0.270615 +0.41275 -0.3048 0.275998 +0.43815 -0.335392 0.26508 +0.5334 -0.290606 0.259888 +0.45085 -0.28575 0.259888 +0.61595 -0.323729 0.271595 +0.608585 -0.31202 0.269644 +0.45085 -0.291638 0.254 +0.5334 -0.296494 0.254 +0.59055 -0.302683 0.264766 +0.560587 -0.294781 0.261189 +0.5334 -0.34925 0.259888 +0.5588 -0.34925 0.261189 +0.560394 -0.300666 0.255693 +0.59055 -0.308571 0.26035 +0.4445 -0.342569 0.26239 +0.45085 -0.34925 0.259888 +0.421555 -0.297286 0.266996 +0.441898 -0.337364 0.257401 +0.4191 -0.291991 0.273622 +0.435842 -0.330006 0.259769 +0.59055 -0.346075 0.264766 +0.604751 -0.316874 0.265552 +0.61595 -0.343535 0.271595 +0.419029 -0.304289 0.266661 +0.615292 -0.337806 0.26924 +0.615596 -0.329572 0.26924 +0.615444 -0.333689 0.26924 +0.618726 -0.335751 0.272152 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +1 0.145182 0.476687 +2 0.145182 0.498546 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +5 0.167399 0.479648 +6 0.167399 0.494394 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +4 0.155131 0.476684 +7 0.155404 0.496599 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +8 0.107991 0.485033 +9 0.107638 0.487007 +10 0.0998379 0.512965 +11 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +12 0.113091 0.52948 +13 0.113091 0.527223 +14 0.145182 0.522693 +15 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +16 0.174156 0.505216 +17 0.1735 0.503739 +18 0.177273 0.491795 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +20 0.113091 0.474399 +21 0.113091 0.472142 +22 0.145182 0.472142 +23 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.155738 0.521057 +25 0.155707 0.5188 +26 0.167399 0.511426 +27 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +28 0.155069 0.472141 +29 0.1551 0.474397 +23 0.145182 0.474399 +22 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +29 0.1551 0.474397 +28 0.155069 0.472141 +30 0.167399 0.475104 +31 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +21 0.113091 0.472142 +20 0.113091 0.474399 +32 0.110047 0.480187 +33 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +33 0.110432 0.478336 +32 0.110047 0.480187 +9 0.107638 0.487007 +8 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +11 0.0985923 0.512719 +10 0.0998379 0.512965 +34 0.101314 0.521675 +35 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +27 0.167399 0.513685 +26 0.167399 0.511426 +17 0.1735 0.503739 +16 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +31 0.167399 0.477361 +30 0.167399 0.475104 +36 0.177273 0.477473 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +15 0.145182 0.524951 +14 0.145182 0.522693 +25 0.155707 0.5188 +24 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +8 0.107991 0.485033 +11 0.0985923 0.512719 +39 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +12 0.113091 0.52948 +15 0.145182 0.524951 +41 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +16 0.174156 0.505216 +19 0.177273 0.494054 +43 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +20 0.113091 0.474399 +23 0.145182 0.474399 +1 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.145182 0.520406 +14 0.145182 0.522693 +13 0.113091 0.527223 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +24 0.155738 0.521057 +27 0.167399 0.513685 +47 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +28 0.155069 0.472141 +22 0.145182 0.472142 +49 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +29 0.1551 0.474397 +31 0.167399 0.477361 +5 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +50 0.167399 0.50914 +26 0.167399 0.511426 +25 0.155707 0.5188 +51 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +21 0.113091 0.472142 +33 0.110432 0.478336 +53 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +45 0.113091 0.524936 +13 0.113091 0.527223 +34 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +32 0.110047 0.480187 +20 0.113091 0.474399 +0 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +35 0.100903 0.523803 +12 0.113091 0.52948 +40 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +33 0.110432 0.478336 +8 0.107991 0.485033 +38 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +9 0.107638 0.487007 +32 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +11 0.0985923 0.512719 +35 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +30 0.167399 0.475104 +28 0.155069 0.472141 +48 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +27 0.167399 0.513685 +16 0.174156 0.505216 +42 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +17 0.1735 0.503739 +26 0.167399 0.511426 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +15 0.145182 0.524951 +24 0.155738 0.521057 +46 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +23 0.145182 0.474399 +29 0.1551 0.474397 +4 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +51 0.155676 0.516514 +25 0.155707 0.5188 +14 0.145182 0.522693 +44 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +22 0.145182 0.472142 +21 0.113091 0.472142 +52 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +36 0.177273 0.477473 +30 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +34 0.101314 0.521675 +10 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +10 0.0998379 0.512965 +9 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +0 0.113091 0.476687 +3 0.113091 0.500811 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +61 0.10072 0.513134 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +57 0.107256 0.489145 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.498546 +44 0.145182 0.520406 +45 0.113091 0.524936 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +7 0.155404 0.496599 +51 0.155676 0.516514 +44 0.145182 0.520406 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +50 0.167399 0.50914 +51 0.155676 0.516514 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +13 0.113091 0.527223 +12 0.113091 0.52948 +35 0.100903 0.523803 +61 0.10072 0.513134 +45 0.113091 0.524936 +54 0.101702 0.519667 +34 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +61 0.10072 0.513134 +3 0.113091 0.500811 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +5 0.167399 0.479648 +31 0.167399 0.477361 +37 0.177273 0.47973 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +6 0.167399 0.494394 +59 0.17292 0.501395 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +18 0.177273 0.491795 +17 0.1735 0.503739 +59 0.17292 0.501395 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +65 0.177077 0.48571 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +18 0.177273 0.491795 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +19 0.177273 0.494054 +18 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +62 0.177017 0.481869 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +37 0.177273 0.47973 +36 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +43 0.177273 0.495 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +36 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +67 0.145182 0.498546 +68 0.145182 0.476687 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +71 0.167399 0.494394 +72 0.167399 0.479648 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +70 0.155404 0.496599 +73 0.155131 0.476684 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +74 0.0985923 0.512719 +75 0.0998379 0.512965 +76 0.107638 0.487007 +77 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +78 0.145182 0.524951 +79 0.145182 0.522693 +80 0.113091 0.527223 +81 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +82 0.177273 0.494054 +83 0.177273 0.491795 +84 0.1735 0.503739 +85 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +86 0.145182 0.474399 +87 0.145182 0.472142 +88 0.113091 0.472142 +89 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.167399 0.513685 +91 0.167399 0.511426 +92 0.155707 0.5188 +93 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +87 0.145182 0.472142 +86 0.145182 0.474399 +94 0.1551 0.474397 +95 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +96 0.167399 0.477361 +97 0.167399 0.475104 +95 0.155069 0.472141 +94 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +98 0.110432 0.478336 +99 0.110047 0.480187 +89 0.113091 0.474399 +88 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +77 0.107991 0.485033 +76 0.107638 0.487007 +99 0.110047 0.480187 +98 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +100 0.100903 0.523803 +101 0.101314 0.521675 +75 0.0998379 0.512965 +74 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +85 0.174156 0.505216 +84 0.1735 0.503739 +91 0.167399 0.511426 +90 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +102 0.177273 0.47973 +103 0.177273 0.477473 +97 0.167399 0.475104 +96 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +93 0.155738 0.521057 +92 0.155707 0.5188 +79 0.145182 0.522693 +78 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +104 0.0982794 0.512658 +74 0.0985923 0.512719 +77 0.107991 0.485033 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.145182 0.525898 +78 0.145182 0.524951 +81 0.113091 0.52948 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.177273 0.495 +82 0.177273 0.494054 +85 0.174156 0.505216 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.476687 +86 0.145182 0.474399 +89 0.113091 0.474399 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.113091 0.524936 +80 0.113091 0.527223 +79 0.145182 0.522693 +111 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +112 0.167399 0.514632 +90 0.167399 0.513685 +93 0.155738 0.521057 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.145182 0.471194 +87 0.145182 0.472142 +95 0.155069 0.472141 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.479648 +96 0.167399 0.477361 +94 0.1551 0.474397 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +116 0.155676 0.516514 +92 0.155707 0.5188 +91 0.167399 0.511426 +117 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +118 0.110622 0.477426 +98 0.110432 0.478336 +88 0.113091 0.472142 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +101 0.101314 0.521675 +80 0.113091 0.527223 +110 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +69 0.113091 0.476687 +89 0.113091 0.474399 +99 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +107 0.113091 0.530428 +81 0.113091 0.52948 +100 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +105 0.108154 0.484121 +77 0.107991 0.485033 +98 0.110432 0.478336 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +99 0.110047 0.480187 +76 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +100 0.100903 0.523803 +74 0.0985923 0.512719 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +115 0.155056 0.471194 +95 0.155069 0.472141 +97 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +109 0.17441 0.505923 +85 0.174156 0.505216 +90 0.167399 0.513685 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +117 0.167399 0.50914 +91 0.167399 0.511426 +84 0.1735 0.503739 +125 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +113 0.155751 0.522004 +93 0.155738 0.521057 +78 0.145182 0.524951 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +73 0.155131 0.476684 +94 0.1551 0.474397 +86 0.145182 0.474399 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +111 0.145182 0.520406 +79 0.145182 0.522693 +92 0.155707 0.5188 +116 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +119 0.113091 0.471194 +88 0.113091 0.472142 +87 0.145182 0.472142 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +97 0.167399 0.475104 +103 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +75 0.0998379 0.512965 +101 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +76 0.107638 0.487007 +75 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +66 0.113091 0.500811 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +123 0.107256 0.489145 +127 0.10072 0.513134 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +123 0.107256 0.489145 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +110 0.113091 0.524936 +111 0.145182 0.520406 +67 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +111 0.145182 0.520406 +116 0.155676 0.516514 +70 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +116 0.155676 0.516514 +117 0.167399 0.50914 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +101 0.101314 0.521675 +120 0.101702 0.519667 +110 0.113091 0.524936 +127 0.10072 0.513134 +100 0.100903 0.523803 +81 0.113091 0.52948 +80 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +110 0.113091 0.524936 +66 0.113091 0.500811 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +128 0.177017 0.481869 +102 0.177273 0.47973 +96 0.167399 0.477361 +72 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +117 0.167399 0.50914 +125 0.17292 0.501395 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +129 0.177136 0.48955 +125 0.17292 0.501395 +84 0.1735 0.503739 +83 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +128 0.177017 0.481869 +130 0.177077 0.48571 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +129 0.177136 0.48955 +83 0.177273 0.491795 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +83 0.177273 0.491795 +82 0.177273 0.494054 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +102 0.177273 0.47973 +128 0.177017 0.481869 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +103 0.177273 0.477473 +102 0.177273 0.47973 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +82 0.177273 0.494054 +108 0.177273 0.495 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +126 0.177273 0.476525 +103 0.177273 0.477473 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +35 0.100903 0.523803 +34 0.101314 0.521675 +101 0.101314 0.521675 +100 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +39 0.0982794 0.512658 +104 0.0982794 0.512658 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +41 0.145182 0.525898 +106 0.145182 0.525898 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +43 0.177273 0.495 +108 0.177273 0.495 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +47 0.167399 0.514632 +112 0.167399 0.514632 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +49 0.145182 0.471194 +114 0.145182 0.471194 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +53 0.110622 0.477426 +118 0.110622 0.477426 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +40 0.113091 0.530428 +107 0.113091 0.530428 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +38 0.108154 0.484121 +105 0.108154 0.484121 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +56 0.100748 0.524606 +122 0.100748 0.524606 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +48 0.155056 0.471194 +115 0.155056 0.471194 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +42 0.17441 0.505923 +109 0.17441 0.505923 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +46 0.155751 0.522004 +113 0.155751 0.522004 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +52 0.113091 0.471194 +119 0.113091 0.471194 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +58 0.167399 0.474156 +124 0.167399 0.474156 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +61 0.10072 0.513134 +127 0.10072 0.513134 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +35 0.100903 0.523803 +100 0.100903 0.523803 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +43 0.177273 0.495 +64 0.178352 0.483786 +131 0.178352 0.483786 +108 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +64 0.178352 0.483786 +60 0.177273 0.476525 +126 0.177273 0.476525 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +5 0.167399 0.479648 +62 0.177017 0.481869 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +63 0.177136 0.48955 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +130 0.177077 0.48571 +129 0.177136 0.48955 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +130 0.177077 0.48571 +128 0.177017 0.481869 +72 0.167399 0.479648 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +65 0.177077 0.48571 +63 0.177136 0.48955 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +129 0.177136 0.48955 +130 0.177077 0.48571 +71 0.167399 0.494394 +kids 0 +OBJECT poly +name "UC_R_Tyre" +numvert 194 +0.508 -0.355836 -0.262865 +0.511763 -0.355466 -0.262865 +0.508 -0.33655 -0.26035 +0.51538 -0.354368 -0.262865 +0.518715 -0.352586 -0.262865 +0.521637 -0.350187 -0.262865 +0.524036 -0.347265 -0.262865 +0.525818 -0.34393 -0.262865 +0.526916 -0.340313 -0.262865 +0.527286 -0.33655 -0.262865 +0.526916 -0.332787 -0.262865 +0.525818 -0.32917 -0.262865 +0.524036 -0.325835 -0.262865 +0.521637 -0.322913 -0.262865 +0.518715 -0.320514 -0.262865 +0.51538 -0.318732 -0.262865 +0.511763 -0.317634 -0.262865 +0.508 -0.317264 -0.262865 +0.504237 -0.317634 -0.262865 +0.50062 -0.318732 -0.262865 +0.497285 -0.320514 -0.262865 +0.494363 -0.322913 -0.262865 +0.491964 -0.325835 -0.262865 +0.490182 -0.32917 -0.262865 +0.489084 -0.332787 -0.262865 +0.488714 -0.33655 -0.262865 +0.489084 -0.340313 -0.262865 +0.490182 -0.34393 -0.262865 +0.491964 -0.347265 -0.262865 +0.494363 -0.350187 -0.262865 +0.497285 -0.352586 -0.262865 +0.50062 -0.354368 -0.262865 +0.504237 -0.355466 -0.262865 +0.508 -0.371302 -0.263563 +0.51478 -0.370635 -0.263563 +0.521299 -0.368657 -0.263563 +0.527307 -0.365446 -0.263563 +0.532574 -0.361124 -0.263563 +0.536896 -0.355857 -0.263563 +0.540107 -0.349849 -0.263563 +0.542085 -0.34333 -0.263563 +0.542752 -0.33655 -0.263563 +0.542085 -0.32977 -0.263563 +0.540107 -0.323251 -0.263563 +0.536896 -0.317243 -0.263563 +0.532574 -0.311976 -0.263563 +0.527307 -0.307654 -0.263563 +0.521299 -0.304443 -0.263563 +0.51478 -0.302465 -0.263563 +0.508 -0.301798 -0.263563 +0.50122 -0.302465 -0.263563 +0.494701 -0.304443 -0.263563 +0.488693 -0.307654 -0.263563 +0.483426 -0.311976 -0.263563 +0.479104 -0.317243 -0.263563 +0.475893 -0.323251 -0.263563 +0.473915 -0.32977 -0.263563 +0.473248 -0.33655 -0.263563 +0.473915 -0.34333 -0.263563 +0.475893 -0.349849 -0.263563 +0.479104 -0.355857 -0.263563 +0.483426 -0.361124 -0.263563 +0.488693 -0.365446 -0.263563 +0.494701 -0.368657 -0.263563 +0.50122 -0.370635 -0.263563 +0.508 -0.379886 -0.269509 +0.516454 -0.379053 -0.269509 +0.524584 -0.376587 -0.269509 +0.532076 -0.372582 -0.269509 +0.538643 -0.367193 -0.269509 +0.544032 -0.360626 -0.269509 +0.548037 -0.353134 -0.269509 +0.550503 -0.345004 -0.269509 +0.551336 -0.33655 -0.269509 +0.550503 -0.328096 -0.269509 +0.548037 -0.319966 -0.269509 +0.544032 -0.312474 -0.269509 +0.538643 -0.305907 -0.269509 +0.532076 -0.300518 -0.269509 +0.524584 -0.296513 -0.269509 +0.516454 -0.294047 -0.269509 +0.508 -0.293214 -0.269509 +0.499546 -0.294047 -0.269509 +0.491416 -0.296513 -0.269509 +0.483924 -0.300518 -0.269509 +0.477357 -0.305907 -0.269509 +0.471968 -0.312474 -0.269509 +0.467963 -0.319966 -0.269509 +0.465497 -0.328096 -0.269509 +0.464664 -0.33655 -0.269509 +0.465497 -0.345004 -0.269509 +0.467963 -0.353134 -0.269509 +0.471968 -0.360626 -0.269509 +0.477357 -0.367193 -0.269509 +0.483924 -0.372582 -0.269509 +0.491416 -0.376587 -0.269509 +0.499546 -0.379053 -0.269509 +0.508 -0.379886 -0.289291 +0.516454 -0.379053 -0.289291 +0.524584 -0.376587 -0.289291 +0.532076 -0.372582 -0.289291 +0.538643 -0.367193 -0.289291 +0.544032 -0.360626 -0.289291 +0.548037 -0.353134 -0.289291 +0.550503 -0.345004 -0.289291 +0.551336 -0.33655 -0.289291 +0.550503 -0.328096 -0.289291 +0.548037 -0.319966 -0.289291 +0.544032 -0.312474 -0.289291 +0.538643 -0.305907 -0.289291 +0.532076 -0.300518 -0.289291 +0.524584 -0.296513 -0.289291 +0.516454 -0.294047 -0.289291 +0.508 -0.293214 -0.289291 +0.499546 -0.294047 -0.289291 +0.491416 -0.296513 -0.289291 +0.483924 -0.300518 -0.289291 +0.477357 -0.305907 -0.289291 +0.471968 -0.312474 -0.289291 +0.467963 -0.319966 -0.289291 +0.465497 -0.328096 -0.289291 +0.464664 -0.33655 -0.289291 +0.465497 -0.345004 -0.289291 +0.467963 -0.353134 -0.289291 +0.471968 -0.360626 -0.289291 +0.477357 -0.367193 -0.289291 +0.483924 -0.372582 -0.289291 +0.491416 -0.376587 -0.289291 +0.499546 -0.379053 -0.289291 +0.508 -0.371302 -0.295237 +0.51478 -0.370635 -0.295237 +0.521299 -0.368657 -0.295237 +0.527307 -0.365446 -0.295237 +0.532574 -0.361124 -0.295237 +0.536896 -0.355857 -0.295237 +0.540107 -0.349849 -0.295237 +0.542085 -0.34333 -0.295237 +0.542752 -0.33655 -0.295237 +0.542085 -0.32977 -0.295237 +0.540107 -0.323251 -0.295237 +0.536896 -0.317243 -0.295237 +0.532574 -0.311976 -0.295237 +0.527307 -0.307654 -0.295237 +0.521299 -0.304443 -0.295237 +0.51478 -0.302465 -0.295237 +0.508 -0.301798 -0.295237 +0.50122 -0.302465 -0.295237 +0.494701 -0.304443 -0.295237 +0.488693 -0.307654 -0.295237 +0.483426 -0.311976 -0.295237 +0.479104 -0.317243 -0.295237 +0.475893 -0.323251 -0.295237 +0.473915 -0.32977 -0.295237 +0.473248 -0.33655 -0.295237 +0.473915 -0.34333 -0.295237 +0.475893 -0.349849 -0.295237 +0.479104 -0.355857 -0.295237 +0.483426 -0.361124 -0.295237 +0.488693 -0.365446 -0.295237 +0.494701 -0.368657 -0.295237 +0.50122 -0.370635 -0.295237 +0.508 -0.355836 -0.295935 +0.511763 -0.355466 -0.295935 +0.51538 -0.354368 -0.295935 +0.518715 -0.352586 -0.295935 +0.521637 -0.350187 -0.295935 +0.524036 -0.347265 -0.295935 +0.525818 -0.34393 -0.295935 +0.526916 -0.340313 -0.295935 +0.527286 -0.33655 -0.295935 +0.526916 -0.332787 -0.295935 +0.525818 -0.32917 -0.295935 +0.524036 -0.325835 -0.295935 +0.521637 -0.322913 -0.295935 +0.518715 -0.320514 -0.295935 +0.51538 -0.318732 -0.295935 +0.511763 -0.317634 -0.295935 +0.508 -0.317264 -0.295935 +0.504237 -0.317634 -0.295935 +0.50062 -0.318732 -0.295935 +0.497285 -0.320514 -0.295935 +0.494363 -0.322913 -0.295935 +0.491964 -0.325835 -0.295935 +0.490182 -0.32917 -0.295935 +0.489084 -0.332787 -0.295935 +0.488714 -0.33655 -0.295935 +0.489084 -0.340313 -0.295935 +0.490182 -0.34393 -0.295935 +0.491964 -0.347265 -0.295935 +0.494363 -0.350187 -0.295935 +0.497285 -0.352586 -0.295935 +0.50062 -0.354368 -0.295935 +0.504237 -0.355466 -0.295935 +0.508 -0.33655 -0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +32 0 0 +0 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +34 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +35 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +33 0 0 +0 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +66 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +67 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +65 0 0 +33 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +98 0 0 +66 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +99 0 0 +67 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +97 0 0 +65 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +130 0 0 +98 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +131 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +129 0 0 +97 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +161 0 0 +162 0 0 +130 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +162 0 0 +163 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +163 0 0 +164 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +164 0 0 +165 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +165 0 0 +166 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +166 0 0 +167 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +167 0 0 +168 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +168 0 0 +169 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +169 0 0 +170 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +170 0 0 +171 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +171 0 0 +172 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +172 0 0 +173 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +173 0 0 +174 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +174 0 0 +175 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +175 0 0 +176 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +176 0 0 +177 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +177 0 0 +178 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +178 0 0 +179 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +179 0 0 +180 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +180 0 0 +181 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +181 0 0 +182 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +182 0 0 +183 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +183 0 0 +184 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +184 0 0 +185 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +185 0 0 +186 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +186 0 0 +187 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +187 0 0 +188 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +188 0 0 +189 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +189 0 0 +190 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +190 0 0 +191 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +191 0 0 +192 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +192 0 0 +161 0 0 +129 0 0 +160 0 0 +SURF 0x10 +mat 2 +refs 3 +192 0 0 +191 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +191 0 0 +190 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +190 0 0 +189 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +189 0 0 +188 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +188 0 0 +187 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +187 0 0 +186 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +186 0 0 +185 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +185 0 0 +184 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +184 0 0 +183 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +183 0 0 +182 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +182 0 0 +181 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +181 0 0 +180 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +180 0 0 +179 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +179 0 0 +178 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +178 0 0 +177 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +177 0 0 +176 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +176 0 0 +175 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +175 0 0 +174 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +174 0 0 +173 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +173 0 0 +172 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +172 0 0 +171 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +171 0 0 +170 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +170 0 0 +169 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +169 0 0 +168 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +168 0 0 +167 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +167 0 0 +166 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +166 0 0 +165 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +165 0 0 +164 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +164 0 0 +163 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +163 0 0 +162 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +162 0 0 +161 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +161 0 0 +192 0 0 +193 0 0 +kids 0 +OBJECT poly +name "UC_R_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.3175 -0.3048 +0.5334 -0.319928 -0.3048 +0.5334 -0.343362 -0.3048 +0.45085 -0.343362 -0.3048 +0.559694 -0.322015 -0.303107 +0.59055 -0.324379 -0.29845 +0.59055 -0.340187 -0.29845 +0.558993 -0.343365 -0.303107 +0.413555 -0.304734 -0.285426 +0.416759 -0.304471 -0.290148 +0.436824 -0.332298 -0.298207 +0.437731 -0.334414 -0.296121 +0.5334 -0.291621 -0.301364 +0.5334 -0.294042 -0.303784 +0.45085 -0.289186 -0.303784 +0.45085 -0.286766 -0.301364 +0.61595 -0.324744 -0.288185 +0.61595 -0.327165 -0.289154 +0.606244 -0.314361 -0.291901 +0.607931 -0.312778 -0.29036 +0.5334 -0.345814 -0.303784 +0.5334 -0.348234 -0.301364 +0.45085 -0.348234 -0.301364 +0.45085 -0.345814 -0.303784 +0.59055 -0.303699 -0.295873 +0.59055 -0.30612 -0.297688 +0.560474 -0.298215 -0.302159 +0.560554 -0.295796 -0.299899 +0.558913 -0.345816 -0.302159 +0.558833 -0.348235 -0.299899 +0.59055 -0.342639 -0.297688 +0.59055 -0.345059 -0.295873 +0.444012 -0.341594 -0.298781 +0.44302 -0.339609 -0.300683 +0.419499 -0.292852 -0.287691 +0.420557 -0.295133 -0.290547 +0.61595 -0.340099 -0.289154 +0.61595 -0.342519 -0.288185 +0.41275 -0.3048 -0.282802 +0.43815 -0.335392 -0.29372 +0.5334 -0.290606 -0.298912 +0.45085 -0.28575 -0.298912 +0.61595 -0.323729 -0.287205 +0.608585 -0.31202 -0.289156 +0.45085 -0.291638 -0.3048 +0.5334 -0.296494 -0.3048 +0.59055 -0.302683 -0.294034 +0.560587 -0.294781 -0.297611 +0.5334 -0.34925 -0.298912 +0.5588 -0.34925 -0.297611 +0.560394 -0.300666 -0.303107 +0.59055 -0.308571 -0.29845 +0.4445 -0.342569 -0.29641 +0.45085 -0.34925 -0.298912 +0.421555 -0.297286 -0.291804 +0.441898 -0.337364 -0.301399 +0.4191 -0.291991 -0.285178 +0.435842 -0.330006 -0.299031 +0.59055 -0.346075 -0.294034 +0.604751 -0.316874 -0.293248 +0.61595 -0.343535 -0.287205 +0.419029 -0.304289 -0.292139 +0.615292 -0.337806 -0.28956 +0.615596 -0.329572 -0.28956 +0.615444 -0.333689 -0.28956 +0.618726 -0.335751 -0.286648 +0.45085 -0.343362 -0.254 +0.5334 -0.343362 -0.254 +0.5334 -0.319928 -0.254 +0.45085 -0.3175 -0.254 +0.558993 -0.343365 -0.255693 +0.59055 -0.340187 -0.26035 +0.59055 -0.324379 -0.26035 +0.559694 -0.322015 -0.255693 +0.437731 -0.334414 -0.262679 +0.436824 -0.332298 -0.260593 +0.416759 -0.304471 -0.268652 +0.413555 -0.304734 -0.273374 +0.45085 -0.286766 -0.257436 +0.45085 -0.289186 -0.255016 +0.5334 -0.294042 -0.255016 +0.5334 -0.291621 -0.257436 +0.607931 -0.312778 -0.26844 +0.606244 -0.314361 -0.266899 +0.61595 -0.327165 -0.269646 +0.61595 -0.324744 -0.270615 +0.45085 -0.345814 -0.255016 +0.45085 -0.348234 -0.257436 +0.5334 -0.348234 -0.257436 +0.5334 -0.345814 -0.255016 +0.560554 -0.295796 -0.258901 +0.560474 -0.298215 -0.256641 +0.59055 -0.30612 -0.261112 +0.59055 -0.303699 -0.262927 +0.558833 -0.348235 -0.258901 +0.558913 -0.345816 -0.256641 +0.59055 -0.345059 -0.262927 +0.59055 -0.342639 -0.261112 +0.44302 -0.339609 -0.258117 +0.444012 -0.341594 -0.260019 +0.420557 -0.295133 -0.268253 +0.419499 -0.292852 -0.271109 +0.61595 -0.342519 -0.270615 +0.61595 -0.340099 -0.269646 +0.43815 -0.335392 -0.26508 +0.41275 -0.3048 -0.275998 +0.45085 -0.28575 -0.259888 +0.5334 -0.290606 -0.259888 +0.608585 -0.31202 -0.269644 +0.61595 -0.323729 -0.271595 +0.5334 -0.296494 -0.254 +0.45085 -0.291638 -0.254 +0.560587 -0.294781 -0.261189 +0.59055 -0.302683 -0.264766 +0.5588 -0.34925 -0.261189 +0.5334 -0.34925 -0.259888 +0.59055 -0.308571 -0.26035 +0.560394 -0.300666 -0.255693 +0.45085 -0.34925 -0.259888 +0.4445 -0.342569 -0.26239 +0.421555 -0.297286 -0.266996 +0.441898 -0.337364 -0.257401 +0.4191 -0.291991 -0.273622 +0.435842 -0.330006 -0.259769 +0.59055 -0.346075 -0.264766 +0.604751 -0.316874 -0.265552 +0.61595 -0.343535 -0.271595 +0.419029 -0.304289 -0.266661 +0.615292 -0.337806 -0.26924 +0.615596 -0.329572 -0.26924 +0.618726 -0.335751 -0.272152 +0.615444 -0.333689 -0.26924 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +1 0.145182 0.498546 +2 0.145182 0.476687 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +5 0.167399 0.494394 +6 0.167399 0.479648 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +4 0.155404 0.496599 +7 0.155131 0.476684 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +8 0.0985923 0.512719 +9 0.0998379 0.512965 +10 0.107638 0.487007 +11 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +12 0.145182 0.524951 +13 0.145182 0.522693 +14 0.113091 0.527223 +15 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +16 0.177273 0.494054 +17 0.177273 0.491795 +18 0.1735 0.503739 +19 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +20 0.145182 0.474399 +21 0.145182 0.472142 +22 0.113091 0.472142 +23 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.167399 0.513685 +25 0.167399 0.511426 +26 0.155707 0.5188 +27 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +21 0.145182 0.472142 +20 0.145182 0.474399 +28 0.1551 0.474397 +29 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +30 0.167399 0.477361 +31 0.167399 0.475104 +29 0.155069 0.472141 +28 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +32 0.110432 0.478336 +33 0.110047 0.480187 +23 0.113091 0.474399 +22 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +11 0.107991 0.485033 +10 0.107638 0.487007 +33 0.110047 0.480187 +32 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +34 0.100903 0.523803 +35 0.101314 0.521675 +9 0.0998379 0.512965 +8 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +19 0.174156 0.505216 +18 0.1735 0.503739 +25 0.167399 0.511426 +24 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +36 0.177273 0.47973 +37 0.177273 0.477473 +31 0.167399 0.475104 +30 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +27 0.155738 0.521057 +26 0.155707 0.5188 +13 0.145182 0.522693 +12 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +38 0.0982794 0.512658 +8 0.0985923 0.512719 +11 0.107991 0.485033 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.145182 0.525898 +12 0.145182 0.524951 +15 0.113091 0.52948 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.177273 0.495 +16 0.177273 0.494054 +19 0.174156 0.505216 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.476687 +20 0.145182 0.474399 +23 0.113091 0.474399 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.113091 0.524936 +14 0.113091 0.527223 +13 0.145182 0.522693 +45 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +46 0.167399 0.514632 +24 0.167399 0.513685 +27 0.155738 0.521057 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.145182 0.471194 +21 0.145182 0.472142 +29 0.155069 0.472141 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.479648 +30 0.167399 0.477361 +28 0.1551 0.474397 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +50 0.155676 0.516514 +26 0.155707 0.5188 +25 0.167399 0.511426 +51 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +52 0.110622 0.477426 +32 0.110432 0.478336 +22 0.113091 0.472142 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +35 0.101314 0.521675 +14 0.113091 0.527223 +44 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +3 0.113091 0.476687 +23 0.113091 0.474399 +33 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +41 0.113091 0.530428 +15 0.113091 0.52948 +34 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +39 0.108154 0.484121 +11 0.107991 0.485033 +32 0.110432 0.478336 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +33 0.110047 0.480187 +10 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +34 0.100903 0.523803 +8 0.0985923 0.512719 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +49 0.155056 0.471194 +29 0.155069 0.472141 +31 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +43 0.17441 0.505923 +19 0.174156 0.505216 +24 0.167399 0.513685 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +51 0.167399 0.50914 +25 0.167399 0.511426 +18 0.1735 0.503739 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +47 0.155751 0.522004 +27 0.155738 0.521057 +12 0.145182 0.524951 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +7 0.155131 0.476684 +28 0.1551 0.474397 +20 0.145182 0.474399 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +45 0.145182 0.520406 +13 0.145182 0.522693 +26 0.155707 0.5188 +50 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +53 0.113091 0.471194 +22 0.113091 0.472142 +21 0.145182 0.472142 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +31 0.167399 0.475104 +37 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +9 0.0998379 0.512965 +35 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +10 0.107638 0.487007 +9 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +0 0.113091 0.500811 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +57 0.107256 0.489145 +61 0.10072 0.513134 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +57 0.107256 0.489145 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +44 0.113091 0.524936 +45 0.145182 0.520406 +1 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +45 0.145182 0.520406 +50 0.155676 0.516514 +4 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +50 0.155676 0.516514 +51 0.167399 0.50914 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +35 0.101314 0.521675 +54 0.101702 0.519667 +44 0.113091 0.524936 +61 0.10072 0.513134 +34 0.100903 0.523803 +15 0.113091 0.52948 +14 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +44 0.113091 0.524936 +0 0.113091 0.500811 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +62 0.177017 0.481869 +36 0.177273 0.47973 +30 0.167399 0.477361 +6 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +51 0.167399 0.50914 +59 0.17292 0.501395 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +63 0.177136 0.48955 +59 0.17292 0.501395 +18 0.1735 0.503739 +17 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +62 0.177017 0.481869 +64 0.177077 0.48571 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +63 0.177136 0.48955 +17 0.177273 0.491795 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +17 0.177273 0.491795 +16 0.177273 0.494054 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +36 0.177273 0.47973 +62 0.177017 0.481869 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +37 0.177273 0.477473 +36 0.177273 0.47973 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +16 0.177273 0.494054 +42 0.177273 0.495 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +60 0.177273 0.476525 +37 0.177273 0.477473 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +67 0.145182 0.476687 +68 0.145182 0.498546 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +71 0.167399 0.479648 +72 0.167399 0.494394 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +70 0.155131 0.476684 +73 0.155404 0.496599 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +74 0.107991 0.485033 +75 0.107638 0.487007 +76 0.0998379 0.512965 +77 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +78 0.113091 0.52948 +79 0.113091 0.527223 +80 0.145182 0.522693 +81 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +82 0.174156 0.505216 +83 0.1735 0.503739 +84 0.177273 0.491795 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +86 0.113091 0.474399 +87 0.113091 0.472142 +88 0.145182 0.472142 +89 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.155738 0.521057 +91 0.155707 0.5188 +92 0.167399 0.511426 +93 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +94 0.155069 0.472141 +95 0.1551 0.474397 +89 0.145182 0.474399 +88 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +95 0.1551 0.474397 +94 0.155069 0.472141 +96 0.167399 0.475104 +97 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +87 0.113091 0.472142 +86 0.113091 0.474399 +98 0.110047 0.480187 +99 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +99 0.110432 0.478336 +98 0.110047 0.480187 +75 0.107638 0.487007 +74 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +77 0.0985923 0.512719 +76 0.0998379 0.512965 +100 0.101314 0.521675 +101 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +93 0.167399 0.513685 +92 0.167399 0.511426 +83 0.1735 0.503739 +82 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +97 0.167399 0.477361 +96 0.167399 0.475104 +102 0.177273 0.477473 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +81 0.145182 0.524951 +80 0.145182 0.522693 +91 0.155707 0.5188 +90 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +74 0.107991 0.485033 +77 0.0985923 0.512719 +105 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +78 0.113091 0.52948 +81 0.145182 0.524951 +107 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +82 0.174156 0.505216 +85 0.177273 0.494054 +109 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +86 0.113091 0.474399 +89 0.145182 0.474399 +67 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.145182 0.520406 +80 0.145182 0.522693 +79 0.113091 0.527223 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +90 0.155738 0.521057 +93 0.167399 0.513685 +113 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +94 0.155069 0.472141 +88 0.145182 0.472142 +115 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +95 0.1551 0.474397 +97 0.167399 0.477361 +71 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +116 0.167399 0.50914 +92 0.167399 0.511426 +91 0.155707 0.5188 +117 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +87 0.113091 0.472142 +99 0.110432 0.478336 +119 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +111 0.113091 0.524936 +79 0.113091 0.527223 +100 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +98 0.110047 0.480187 +86 0.113091 0.474399 +66 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +101 0.100903 0.523803 +78 0.113091 0.52948 +106 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +99 0.110432 0.478336 +74 0.107991 0.485033 +104 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +75 0.107638 0.487007 +98 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +77 0.0985923 0.512719 +101 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +96 0.167399 0.475104 +94 0.155069 0.472141 +114 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +93 0.167399 0.513685 +82 0.174156 0.505216 +108 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +83 0.1735 0.503739 +92 0.167399 0.511426 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +81 0.145182 0.524951 +90 0.155738 0.521057 +112 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +89 0.145182 0.474399 +95 0.1551 0.474397 +70 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +117 0.155676 0.516514 +91 0.155707 0.5188 +80 0.145182 0.522693 +110 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +88 0.145182 0.472142 +87 0.113091 0.472142 +118 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +102 0.177273 0.477473 +96 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +100 0.101314 0.521675 +76 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +76 0.0998379 0.512965 +75 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +66 0.113091 0.476687 +69 0.113091 0.500811 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +127 0.10072 0.513134 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +123 0.107256 0.489145 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.498546 +110 0.145182 0.520406 +111 0.113091 0.524936 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +73 0.155404 0.496599 +117 0.155676 0.516514 +110 0.145182 0.520406 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +116 0.167399 0.50914 +117 0.155676 0.516514 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +79 0.113091 0.527223 +78 0.113091 0.52948 +101 0.100903 0.523803 +127 0.10072 0.513134 +111 0.113091 0.524936 +120 0.101702 0.519667 +100 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +127 0.10072 0.513134 +69 0.113091 0.500811 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +71 0.167399 0.479648 +97 0.167399 0.477361 +103 0.177273 0.47973 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +72 0.167399 0.494394 +125 0.17292 0.501395 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +84 0.177273 0.491795 +83 0.1735 0.503739 +125 0.17292 0.501395 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +131 0.177077 0.48571 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +84 0.177273 0.491795 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +85 0.177273 0.494054 +84 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +128 0.177017 0.481869 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +103 0.177273 0.47973 +102 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +109 0.177273 0.495 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +102 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +101 0.100903 0.523803 +100 0.101314 0.521675 +35 0.101314 0.521675 +34 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +105 0.0982794 0.512658 +38 0.0982794 0.512658 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +107 0.145182 0.525898 +40 0.145182 0.525898 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +109 0.177273 0.495 +42 0.177273 0.495 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +113 0.167399 0.514632 +46 0.167399 0.514632 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +115 0.145182 0.471194 +48 0.145182 0.471194 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +119 0.110622 0.477426 +52 0.110622 0.477426 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +106 0.113091 0.530428 +41 0.113091 0.530428 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +104 0.108154 0.484121 +39 0.108154 0.484121 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +122 0.100748 0.524606 +56 0.100748 0.524606 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +114 0.155056 0.471194 +49 0.155056 0.471194 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +108 0.17441 0.505923 +43 0.17441 0.505923 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +112 0.155751 0.522004 +47 0.155751 0.522004 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +118 0.113091 0.471194 +53 0.113091 0.471194 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +124 0.167399 0.474156 +58 0.167399 0.474156 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +127 0.10072 0.513134 +61 0.10072 0.513134 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +101 0.100903 0.523803 +34 0.100903 0.523803 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +109 0.177273 0.495 +130 0.178352 0.483786 +65 0.178352 0.483786 +42 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +130 0.178352 0.483786 +126 0.177273 0.476525 +60 0.177273 0.476525 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +64 0.177077 0.48571 +62 0.177017 0.481869 +6 0.167399 0.479648 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 3 +64 0.177077 0.48571 +63 0.177136 0.48955 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +129 0.177136 0.48955 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +71 0.167399 0.479648 +128 0.177017 0.481869 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +63 0.177136 0.48955 +64 0.177077 0.48571 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +131 0.177077 0.48571 +129 0.177136 0.48955 +125 0.17292 0.501395 +kids 0 +OBJECT poly +name "UC_tailstrut" +numvert 52 +1.74331 -0.0390927 -0.00635 +1.74331 -0.0390927 0.00635 +1.84348 -0.110835 0.00635 +1.84348 -0.110835 -0.00635 +1.85568 -0.129178 -0.00635 +1.85568 -0.129178 -0.00381 +1.85448 -0.132598 -0.00381 +1.85448 -0.132598 -0.00635 +1.84497 -0.119312 -0.00635 +1.84497 -0.119312 -0.00381 +1.84016 -0.116252 -0.00635 +1.7399 -0.04445 -0.00635 +1.7399 -0.04445 0.00635 +1.84016 -0.116252 0.00635 +1.84838 -0.113955 0.00381 +1.84838 -0.113955 -0.00381 +1.84838 -0.113955 -0.00635 +1.84497 -0.119312 0.00635 +1.84838 -0.113955 0.00635 +1.84497 -0.119312 0.00381 +1.85568 -0.129178 0.00381 +1.85568 -0.129178 0.00635 +1.85448 -0.132598 0.00635 +1.85448 -0.132598 0.00381 +1.85132 -0.119264 -0.00381 +1.85132 -0.119264 -0.00635 +1.85132 -0.119264 0.00635 +1.85132 -0.119264 0.00381 +1.85134 -0.121654 -0.00381 +1.85134 -0.121654 -0.00635 +1.84499 -0.121702 -0.00381 +1.84499 -0.121702 -0.00635 +1.85134 -0.121654 0.00635 +1.85134 -0.121654 0.00381 +1.84499 -0.121702 0.00635 +1.84499 -0.121702 0.00381 +1.85136 -0.123886 -0.00381 +1.85136 -0.123886 -0.00635 +1.84628 -0.127702 -0.00381 +1.84628 -0.127702 -0.00635 +1.85136 -0.123886 0.00635 +1.85136 -0.123886 0.00381 +1.84628 -0.127702 0.00635 +1.84628 -0.127702 0.00381 +1.85372 -0.127028 -0.00381 +1.85372 -0.127028 -0.00635 +1.85159 -0.133012 -0.00381 +1.85159 -0.133012 -0.00635 +1.85372 -0.127028 0.00635 +1.85372 -0.127028 0.00381 +1.85159 -0.133012 0.00635 +1.85159 -0.133012 0.00381 +numsurf 54 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +12 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +14 0 0 +15 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +12 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +16 0 0 +8 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +2 0 0 +18 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +19 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +17 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +14 0 0 +19 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +15 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +9 0 0 +24 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +16 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +18 0 0 +26 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +17 0 0 +26 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +14 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +25 0 0 +24 0 0 +28 0 0 +29 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +9 0 0 +30 0 0 +28 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +8 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +25 0 0 +29 0 0 +31 0 0 +SURF 0x10 +mat 1 +refs 4 +27 0 0 +26 0 0 +32 0 0 +33 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +17 0 0 +34 0 0 +32 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +27 0 0 +33 0 0 +35 0 0 +SURF 0x10 +mat 1 +refs 4 +29 0 0 +28 0 0 +36 0 0 +37 0 0 +SURF 0x10 +mat 1 +refs 4 +28 0 0 +30 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 1 +refs 4 +30 0 0 +31 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 1 +refs 4 +31 0 0 +29 0 0 +37 0 0 +39 0 0 +SURF 0x10 +mat 1 +refs 4 +33 0 0 +32 0 0 +40 0 0 +41 0 0 +SURF 0x10 +mat 1 +refs 4 +32 0 0 +34 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 1 +refs 4 +34 0 0 +35 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 1 +refs 4 +35 0 0 +33 0 0 +41 0 0 +43 0 0 +SURF 0x10 +mat 1 +refs 4 +37 0 0 +36 0 0 +44 0 0 +45 0 0 +SURF 0x10 +mat 1 +refs 4 +36 0 0 +38 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 1 +refs 4 +38 0 0 +39 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 1 +refs 4 +39 0 0 +37 0 0 +45 0 0 +47 0 0 +SURF 0x10 +mat 1 +refs 4 +41 0 0 +40 0 0 +48 0 0 +49 0 0 +SURF 0x10 +mat 1 +refs 4 +40 0 0 +42 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 1 +refs 4 +42 0 0 +43 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 1 +refs 4 +43 0 0 +41 0 0 +49 0 0 +51 0 0 +SURF 0x10 +mat 1 +refs 4 +45 0 0 +44 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +44 0 0 +46 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +46 0 0 +47 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +47 0 0 +45 0 0 +4 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +49 0 0 +48 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 1 +refs 4 +48 0 0 +50 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +50 0 0 +51 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +51 0 0 +49 0 0 +20 0 0 +23 0 0 +kids 0 +OBJECT poly +name "UC_Tailwheel" +numvert 194 +1.8534 -0.130887 -0.00423333 +1.85448 -0.136291 -0.00367436 +1.8534 -0.136397 -0.00367436 +1.85551 -0.135978 -0.00367436 +1.85646 -0.135468 -0.00367436 +1.8573 -0.134783 -0.00367436 +1.85798 -0.133948 -0.00367436 +1.85849 -0.132995 -0.00367436 +1.85881 -0.131962 -0.00367436 +1.85891 -0.130887 -0.00367436 +1.85881 -0.129812 -0.00367436 +1.85849 -0.128778 -0.00367436 +1.85798 -0.127825 -0.00367436 +1.8573 -0.12699 -0.00367436 +1.85646 -0.126305 -0.00367436 +1.85551 -0.125796 -0.00367436 +1.85448 -0.125482 -0.00367436 +1.8534 -0.125376 -0.00367436 +1.85233 -0.125482 -0.00367436 +1.85129 -0.125796 -0.00367436 +1.85034 -0.126305 -0.00367436 +1.8495 -0.12699 -0.00367436 +1.84882 -0.127825 -0.00367436 +1.84831 -0.128778 -0.00367436 +1.848 -0.129812 -0.00367436 +1.84789 -0.130887 -0.00367436 +1.848 -0.131962 -0.00367436 +1.84831 -0.132995 -0.00367436 +1.84882 -0.133948 -0.00367436 +1.8495 -0.134783 -0.00367436 +1.85034 -0.135468 -0.00367436 +1.85129 -0.135978 -0.00367436 +1.85233 -0.136291 -0.00367436 +1.85534 -0.140625 -0.00351925 +1.8534 -0.140816 -0.00351925 +1.8572 -0.14006 -0.00351925 +1.85892 -0.139143 -0.00351925 +1.86042 -0.137908 -0.00351925 +1.86166 -0.136403 -0.00351925 +1.86257 -0.134687 -0.00351925 +1.86314 -0.132824 -0.00351925 +1.86333 -0.130887 -0.00351925 +1.86314 -0.12895 -0.00351925 +1.86257 -0.127087 -0.00351925 +1.86166 -0.12537 -0.00351925 +1.86042 -0.123866 -0.00351925 +1.85892 -0.122631 -0.00351925 +1.8572 -0.121713 -0.00351925 +1.85534 -0.121148 -0.00351925 +1.8534 -0.120958 -0.00351925 +1.85146 -0.121148 -0.00351925 +1.8496 -0.121713 -0.00351925 +1.84788 -0.122631 -0.00351925 +1.84638 -0.123866 -0.00351925 +1.84515 -0.12537 -0.00351925 +1.84423 -0.127087 -0.00351925 +1.84366 -0.12895 -0.00351925 +1.84347 -0.130887 -0.00351925 +1.84366 -0.132824 -0.00351925 +1.84423 -0.134687 -0.00351925 +1.84515 -0.136403 -0.00351925 +1.84638 -0.137908 -0.00351925 +1.84788 -0.139143 -0.00351925 +1.8496 -0.14006 -0.00351925 +1.85146 -0.140625 -0.00351925 +1.85582 -0.14303 -0.00219801 +1.8534 -0.143268 -0.00219801 +1.85814 -0.142326 -0.00219801 +1.86028 -0.141182 -0.00219801 +1.86216 -0.139642 -0.00219801 +1.8637 -0.137766 -0.00219801 +1.86484 -0.135625 -0.00219801 +1.86554 -0.133302 -0.00219801 +1.86578 -0.130887 -0.00219801 +1.86554 -0.128471 -0.00219801 +1.86484 -0.126149 -0.00219801 +1.8637 -0.124008 -0.00219801 +1.86216 -0.122132 -0.00219801 +1.86028 -0.120592 -0.00219801 +1.85814 -0.119448 -0.00219801 +1.85582 -0.118743 -0.00219801 +1.8534 -0.118505 -0.00219801 +1.85099 -0.118743 -0.00219801 +1.84866 -0.119448 -0.00219801 +1.84652 -0.120592 -0.00219801 +1.84465 -0.122132 -0.00219801 +1.84311 -0.124008 -0.00219801 +1.84196 -0.126149 -0.00219801 +1.84126 -0.128471 -0.00219801 +1.84102 -0.130887 -0.00219801 +1.84126 -0.133302 -0.00219801 +1.84196 -0.135625 -0.00219801 +1.84311 -0.137766 -0.00219801 +1.84465 -0.139642 -0.00219801 +1.84652 -0.141182 -0.00219801 +1.84866 -0.142326 -0.00219801 +1.85099 -0.14303 -0.00219801 +1.85582 -0.14303 0.00219801 +1.8534 -0.143268 0.00219801 +1.85814 -0.142326 0.00219801 +1.86028 -0.141182 0.00219801 +1.86216 -0.139642 0.00219801 +1.8637 -0.137766 0.00219801 +1.86484 -0.135625 0.00219801 +1.86554 -0.133302 0.00219801 +1.86578 -0.130887 0.00219801 +1.86554 -0.128471 0.00219801 +1.86484 -0.126149 0.00219801 +1.8637 -0.124008 0.00219801 +1.86216 -0.122132 0.00219801 +1.86028 -0.120592 0.00219801 +1.85814 -0.119448 0.00219801 +1.85582 -0.118743 0.00219801 +1.8534 -0.118505 0.00219801 +1.85099 -0.118743 0.00219801 +1.84866 -0.119448 0.00219801 +1.84652 -0.120592 0.00219801 +1.84465 -0.122132 0.00219801 +1.84311 -0.124008 0.00219801 +1.84196 -0.126149 0.00219801 +1.84126 -0.128471 0.00219801 +1.84102 -0.130887 0.00219801 +1.84126 -0.133302 0.00219801 +1.84196 -0.135625 0.00219801 +1.84311 -0.137766 0.00219801 +1.84465 -0.139642 0.00219801 +1.84652 -0.141182 0.00219801 +1.84866 -0.142326 0.00219801 +1.85099 -0.14303 0.00219801 +1.85534 -0.140625 0.00351925 +1.8534 -0.140816 0.00351925 +1.8572 -0.14006 0.00351925 +1.85892 -0.139143 0.00351925 +1.86042 -0.137908 0.00351925 +1.86166 -0.136403 0.00351925 +1.86257 -0.134687 0.00351925 +1.86314 -0.132824 0.00351925 +1.86333 -0.130887 0.00351925 +1.86314 -0.12895 0.00351925 +1.86257 -0.127087 0.00351925 +1.86166 -0.12537 0.00351925 +1.86042 -0.123866 0.00351925 +1.85892 -0.122631 0.00351925 +1.8572 -0.121713 0.00351925 +1.85534 -0.121148 0.00351925 +1.8534 -0.120958 0.00351925 +1.85146 -0.121148 0.00351925 +1.8496 -0.121713 0.00351925 +1.84788 -0.122631 0.00351925 +1.84638 -0.123866 0.00351925 +1.84515 -0.12537 0.00351925 +1.84423 -0.127087 0.00351925 +1.84366 -0.12895 0.00351925 +1.84347 -0.130887 0.00351925 +1.84366 -0.132824 0.00351925 +1.84423 -0.134687 0.00351925 +1.84515 -0.136403 0.00351925 +1.84638 -0.137908 0.00351925 +1.84788 -0.139143 0.00351925 +1.8496 -0.14006 0.00351925 +1.85146 -0.140625 0.00351925 +1.85448 -0.136291 0.00367436 +1.8534 -0.136397 0.00367436 +1.85551 -0.135978 0.00367436 +1.85646 -0.135468 0.00367436 +1.8573 -0.134783 0.00367436 +1.85798 -0.133948 0.00367436 +1.85849 -0.132995 0.00367436 +1.85881 -0.131962 0.00367436 +1.85891 -0.130887 0.00367436 +1.85881 -0.129812 0.00367436 +1.85849 -0.128778 0.00367436 +1.85798 -0.127825 0.00367436 +1.8573 -0.12699 0.00367436 +1.85646 -0.126305 0.00367436 +1.85551 -0.125796 0.00367436 +1.85448 -0.125482 0.00367436 +1.8534 -0.125376 0.00367436 +1.85233 -0.125482 0.00367436 +1.85129 -0.125796 0.00367436 +1.85034 -0.126305 0.00367436 +1.8495 -0.12699 0.00367436 +1.84882 -0.127825 0.00367436 +1.84831 -0.128778 0.00367436 +1.848 -0.129812 0.00367436 +1.84789 -0.130887 0.00367436 +1.848 -0.131962 0.00367436 +1.84831 -0.132995 0.00367436 +1.84882 -0.133948 0.00367436 +1.8495 -0.134783 0.00367436 +1.85034 -0.135468 0.00367436 +1.85129 -0.135978 0.00367436 +1.85233 -0.136291 0.00367436 +1.8534 -0.130887 0.00423333 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "Wing" +texture "Rascal.rgb" +numvert 246 +0.83185 0.130692 0.451014 +0.735007 0.130692 0.451014 +0.8382 0.1143 1.5397e-16 +0.4572 0.130692 0.451014 +0.43815 0.137038 0.450783 +0.43815 0.12065 8.04842e-17 +0.4572 0.1143 8.39835e-17 +0.4318 0.143384 0.450552 +0.4318 0.127 7.93178e-17 +0.4318 0.14973 0.450321 +0.4318 0.13335 7.93178e-17 +0.43815 0.162421 0.44986 +0.43815 0.14605 8.04842e-17 +0.45085 0.168767 0.449629 +0.45085 0.1524 8.28171e-17 +0.4826 0.175113 0.449398 +0.4826 0.15875 8.86493e-17 +0.53975 0.175113 0.449398 +0.53975 0.15875 9.91472e-17 +0.639188 0.162421 0.44986 +0.64135 0.14605 1.1781e-16 +0.735027 0.146638 0.450434 +0.4572 0.138307 0.660425 +0.43815 0.144653 0.660195 +0.4318 0.150999 0.659964 +0.4318 0.157344 0.659733 +0.43815 0.170036 0.659272 +0.45085 0.176382 0.659041 +0.4826 0.182728 0.65881 +0.53975 0.182728 0.65881 +0.634865 0.170036 0.659272 +0.727548 0.154078 0.659852 +0.458922 0.146614 0.888874 +0.440269 0.15296 0.888644 +0.434051 0.159306 0.888413 +0.434051 0.165652 0.888182 +0.440269 0.178343 0.887721 +0.452704 0.184689 0.88749 +0.483792 0.191035 0.887259 +0.53975 0.191035 0.887259 +0.627466 0.178343 0.887721 +0.719388 0.161182 0.888345 +0.463618 0.152383 1.04752 +0.446049 0.157822 1.04732 +0.440192 0.163262 1.04712 +0.440192 0.168701 1.04693 +0.446049 0.17958 1.04653 +0.457761 0.185019 1.04633 +0.487043 0.190458 1.04613 +0.53975 0.190458 1.04613 +0.617988 0.17958 1.04653 +0.713716 0.162405 1.04716 +0.732317 0.15746 1.18713 +0.712107 0.154008 1.0922 +0.757651 0.154008 1.0922 +0.471768 0.15746 1.18713 +0.456079 0.161993 1.18696 +0.449272 0.159163 1.0922 +0.466226 0.154008 1.0922 +0.45085 0.166525 1.1868 +0.443632 0.164315 1.0922 +0.45085 0.171058 1.18663 +0.443646 0.169465 1.0922 +0.456079 0.180123 1.1863 +0.449326 0.179757 1.0922 +0.466538 0.184656 1.18614 +0.460641 0.1849 1.0922 +0.492685 0.189189 1.18597 +0.488902 0.19004 1.0922 +0.53975 0.189189 1.18597 +0.53975 0.19004 1.0922 +0.605305 0.180123 1.1863 +0.613844 0.179757 1.0922 +0.712107 0.162163 1.0922 +0.688729 0.161152 1.28866 +0.484446 0.161152 1.28866 +0.471684 0.164325 1.28854 +0.467429 0.167498 1.28843 +0.467429 0.170671 1.28831 +0.471684 0.177016 1.28808 +0.480192 0.180189 1.28797 +0.501463 0.183362 1.28785 +0.53975 0.183362 1.28785 +0.590466 0.177016 1.28808 +0.644948 0.16346 1.35212 +0.499194 0.16346 1.35212 +0.489834 0.165575 1.35204 +0.486715 0.16769 1.35196 +0.486715 0.169805 1.35189 +0.489834 0.174036 1.35173 +0.496074 0.176151 1.35166 +0.511672 0.178266 1.35158 +0.53975 0.178266 1.35158 +0.575562 0.174036 1.35173 +0.6096 0.164613 1.38385 +0.513066 0.164613 1.38385 +0.506908 0.1662 1.38379 +0.504855 0.167786 1.38373 +0.504855 0.169373 1.38367 +0.506908 0.172546 1.38356 +0.511013 0.174132 1.3835 +0.521276 0.175718 1.38344 +0.53975 0.175718 1.38344 +0.563529 0.172546 1.38356 +0.5842 0.165075 1.39654 +0.522713 0.165075 1.39654 +0.518782 0.166344 1.39649 +0.517471 0.167613 1.39645 +0.517471 0.168882 1.3964 +0.518782 0.171421 1.39631 +0.521403 0.17269 1.39626 +0.527955 0.173959 1.39622 +0.53975 0.173959 1.39622 +0.554882 0.171421 1.39631 +0.56515 0.166073 1.40288 +0.530746 0.166073 1.40288 +0.528668 0.167021 1.40284 +0.527975 0.167969 1.4028 +0.527975 0.168917 1.40277 +0.528668 0.170813 1.40269 +0.530053 0.171761 1.40265 +0.533516 0.172709 1.40262 +0.53975 0.172709 1.40262 +0.548397 0.170813 1.40269 +0.540564 0.168414 1.40793 +0.713703 0.152383 1.04752 +0.727528 0.138307 0.660425 +0.719369 0.146614 0.888874 +0.735007 0.130692 -0.451014 +0.83185 0.130692 -0.451014 +0.43815 0.137038 -0.450783 +0.4572 0.130692 -0.451014 +0.4318 0.143384 -0.450552 +0.4318 0.14973 -0.450321 +0.43815 0.162421 -0.44986 +0.45085 0.168767 -0.449629 +0.4826 0.175113 -0.449398 +0.53975 0.175113 -0.449398 +0.639188 0.162421 -0.44986 +0.735027 0.146638 -0.450434 +0.43815 0.144653 -0.660195 +0.4572 0.138307 -0.660425 +0.4318 0.150999 -0.659964 +0.4318 0.157344 -0.659733 +0.43815 0.170036 -0.659272 +0.45085 0.176382 -0.659041 +0.4826 0.182728 -0.65881 +0.53975 0.182728 -0.65881 +0.634865 0.170036 -0.659272 +0.727548 0.154078 -0.659852 +0.440269 0.15296 -0.888644 +0.458922 0.146614 -0.888874 +0.434051 0.159306 -0.888413 +0.434051 0.165652 -0.888182 +0.440269 0.178343 -0.887721 +0.452704 0.184689 -0.88749 +0.483792 0.191035 -0.887259 +0.53975 0.191035 -0.887259 +0.627466 0.178343 -0.887721 +0.719388 0.161182 -0.888345 +0.446049 0.157822 -1.04732 +0.463618 0.152383 -1.04752 +0.440192 0.163262 -1.04712 +0.440192 0.168701 -1.04693 +0.446049 0.17958 -1.04653 +0.457761 0.185019 -1.04633 +0.487043 0.190458 -1.04613 +0.53975 0.190458 -1.04613 +0.617988 0.17958 -1.04653 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.712107 0.154008 -1.0922 +0.732317 0.15746 -1.18713 +0.466226 0.154008 -1.0922 +0.449272 0.159163 -1.0922 +0.456079 0.161993 -1.18696 +0.471768 0.15746 -1.18713 +0.443632 0.164315 -1.0922 +0.45085 0.166525 -1.1868 +0.443646 0.169465 -1.0922 +0.45085 0.171058 -1.18663 +0.449326 0.179757 -1.0922 +0.456079 0.180123 -1.1863 +0.460641 0.1849 -1.0922 +0.466538 0.184656 -1.18614 +0.488902 0.19004 -1.0922 +0.492685 0.189189 -1.18597 +0.53975 0.19004 -1.0922 +0.53975 0.189189 -1.18597 +0.613844 0.179757 -1.0922 +0.605305 0.180123 -1.1863 +0.712107 0.162163 -1.0922 +0.484446 0.161152 -1.28866 +0.688729 0.161152 -1.28866 +0.471684 0.164325 -1.28854 +0.467429 0.167498 -1.28843 +0.467429 0.170671 -1.28831 +0.471684 0.177016 -1.28808 +0.480192 0.180189 -1.28797 +0.501463 0.183362 -1.28785 +0.53975 0.183362 -1.28785 +0.590466 0.177016 -1.28808 +0.499194 0.16346 -1.35212 +0.644948 0.16346 -1.35212 +0.489834 0.165575 -1.35204 +0.486715 0.16769 -1.35196 +0.486715 0.169805 -1.35189 +0.489834 0.174036 -1.35173 +0.496074 0.176151 -1.35166 +0.511672 0.178266 -1.35158 +0.53975 0.178266 -1.35158 +0.575562 0.174036 -1.35173 +0.513066 0.164613 -1.38385 +0.6096 0.164613 -1.38385 +0.506908 0.1662 -1.38379 +0.504855 0.167786 -1.38373 +0.504855 0.169373 -1.38367 +0.506908 0.172546 -1.38356 +0.511013 0.174132 -1.3835 +0.521276 0.175718 -1.38344 +0.53975 0.175718 -1.38344 +0.563529 0.172546 -1.38356 +0.522713 0.165075 -1.39654 +0.5842 0.165075 -1.39654 +0.518782 0.166344 -1.39649 +0.517471 0.167613 -1.39645 +0.517471 0.168882 -1.3964 +0.518782 0.171421 -1.39631 +0.521403 0.17269 -1.39626 +0.527955 0.173959 -1.39622 +0.53975 0.173959 -1.39622 +0.554882 0.171421 -1.39631 +0.530746 0.166073 -1.40288 +0.56515 0.166073 -1.40288 +0.528668 0.167021 -1.40284 +0.527975 0.167969 -1.4028 +0.527975 0.168917 -1.40277 +0.528668 0.170813 -1.40269 +0.530053 0.171761 -1.40265 +0.533516 0.172709 -1.40262 +0.53975 0.172709 -1.40262 +0.548397 0.170813 -1.40269 +0.540564 0.168414 -1.40793 +0.713703 0.152383 -1.04752 +0.727528 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +numsurf 268 +SURF 0x10 +mat 1 +refs 3 +0 0.482124 0.574349 +1 0.482124 0.664243 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 4 +3 0.482124 0.922917 +4 0.482124 0.941263 +5 0.699005 0.941263 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 4 +4 0.482124 0.941263 +7 0.482124 0.946767 +8 0.699005 0.946767 +5 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +7 0.482124 0.946767 +9 0.482124 0.946767 +10 0.699005 0.946767 +8 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +9 0.482124 0.946767 +11 0.483423 0.941263 +12 0.699005 0.941263 +10 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +11 0.483423 0.941263 +13 0.483423 0.929338 +14 0.699005 0.929338 +12 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +13 0.483423 0.929338 +15 0.483423 0.899985 +16 0.699005 0.899985 +14 0.699005 0.929338 +SURF 0x10 +mat 1 +refs 4 +15 0.483423 0.899985 +17 0.483423 0.846783 +18 0.699005 0.846783 +16 0.699005 0.899985 +SURF 0x10 +mat 1 +refs 4 +17 0.483423 0.846783 +19 0.483423 0.753219 +20 0.699005 0.751385 +18 0.699005 0.846783 +SURF 0x10 +mat 1 +refs 3 +19 0.483423 0.753219 +21 0.482124 0.664243 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 4 +22 0.382125 0.922917 +23 0.382125 0.941263 +4 0.482124 0.941263 +3 0.482124 0.922917 +SURF 0x10 +mat 1 +refs 4 +23 0.382125 0.941263 +24 0.382125 0.946767 +7 0.482124 0.946767 +4 0.482124 0.941263 +SURF 0x10 +mat 1 +refs 4 +24 0.382125 0.946767 +25 0.382125 0.946767 +9 0.482124 0.946767 +7 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +25 0.382125 0.946767 +26 0.382125 0.941263 +11 0.483423 0.941263 +9 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +26 0.382125 0.941263 +27 0.382125 0.929338 +13 0.483423 0.929338 +11 0.483423 0.941263 +SURF 0x10 +mat 1 +refs 4 +27 0.382125 0.929338 +28 0.382125 0.899985 +15 0.483423 0.899985 +13 0.483423 0.929338 +SURF 0x10 +mat 1 +refs 4 +28 0.382125 0.899985 +29 0.382125 0.846783 +17 0.483423 0.846783 +15 0.483423 0.899985 +SURF 0x10 +mat 1 +refs 4 +29 0.382125 0.846783 +30 0.382125 0.757806 +19 0.483423 0.753219 +17 0.483423 0.846783 +SURF 0x10 +mat 1 +refs 4 +30 0.382125 0.757806 +31 0.382125 0.671581 +21 0.482124 0.664243 +19 0.483423 0.753219 +SURF 0x10 +mat 1 +refs 4 +32 0.271736 0.922 +33 0.271736 0.939428 +23 0.382125 0.941263 +22 0.382125 0.922917 +SURF 0x10 +mat 1 +refs 4 +33 0.271736 0.939428 +34 0.271736 0.944932 +24 0.382125 0.946767 +23 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +34 0.271736 0.944932 +35 0.271736 0.944932 +25 0.382125 0.946767 +24 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +35 0.271736 0.944932 +36 0.273035 0.939428 +26 0.382125 0.941263 +25 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +36 0.273035 0.939428 +37 0.273035 0.927504 +27 0.382125 0.929338 +26 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +37 0.273035 0.927504 +38 0.273035 0.898151 +28 0.382125 0.899985 +27 0.382125 0.929338 +SURF 0x10 +mat 1 +refs 4 +38 0.273035 0.898151 +39 0.273035 0.846783 +29 0.382125 0.846783 +28 0.382125 0.899985 +SURF 0x10 +mat 1 +refs 4 +39 0.273035 0.846783 +40 0.273035 0.764227 +30 0.382125 0.757806 +29 0.382125 0.846783 +SURF 0x10 +mat 1 +refs 4 +40 0.273035 0.764227 +41 0.271736 0.678919 +31 0.382125 0.671581 +30 0.382125 0.757806 +SURF 0x10 +mat 1 +refs 4 +42 0.195114 0.917414 +43 0.195114 0.933925 +33 0.271736 0.939428 +32 0.271736 0.922 +SURF 0x10 +mat 1 +refs 4 +43 0.195114 0.933925 +44 0.196413 0.939428 +34 0.271736 0.944932 +33 0.271736 0.939428 +SURF 0x10 +mat 1 +refs 4 +44 0.196413 0.939428 +45 0.196413 0.939428 +35 0.271736 0.944932 +34 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +45 0.196413 0.939428 +46 0.196413 0.933925 +36 0.273035 0.939428 +35 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +46 0.196413 0.933925 +47 0.196413 0.922917 +37 0.273035 0.927504 +36 0.273035 0.939428 +SURF 0x10 +mat 1 +refs 4 +47 0.196413 0.922917 +48 0.196413 0.895399 +38 0.273035 0.898151 +37 0.273035 0.927504 +SURF 0x10 +mat 1 +refs 4 +48 0.196413 0.895399 +49 0.196413 0.846783 +39 0.273035 0.846783 +38 0.273035 0.898151 +SURF 0x10 +mat 1 +refs 4 +49 0.196413 0.846783 +50 0.196413 0.7734 +40 0.273035 0.764227 +39 0.273035 0.846783 +SURF 0x10 +mat 1 +refs 4 +50 0.196413 0.7734 +51 0.196413 0.684423 +41 0.271736 0.678919 +40 0.273035 0.764227 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +53 0.174335 0.68534 +54 0.174335 0.643145 +SURF 0x10 +mat 1 +refs 4 +55 0.128881 0.910075 +56 0.128881 0.924752 +57 0.174335 0.931173 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +56 0.128881 0.924752 +59 0.128881 0.929338 +60 0.174335 0.935759 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +59 0.128881 0.929338 +61 0.128881 0.929338 +62 0.174335 0.935759 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +61 0.128881 0.929338 +63 0.128881 0.924752 +64 0.174335 0.930256 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +63 0.128881 0.924752 +65 0.128881 0.914662 +66 0.174335 0.920165 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +65 0.128881 0.914662 +67 0.128881 0.889895 +68 0.174335 0.893564 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +67 0.128881 0.889895 +69 0.128881 0.846783 +70 0.174335 0.846783 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +69 0.128881 0.846783 +71 0.128881 0.785324 +72 0.174335 0.777069 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +73 0.174335 0.68534 +72 0.174335 0.777069 +SURF 0x10 +mat 1 +refs 4 +74 0.0795305 0.707355 +75 0.0795305 0.898151 +55 0.128881 0.910075 +52 0.128881 0.666994 +SURF 0x10 +mat 1 +refs 4 +75 0.0795305 0.898151 +76 0.0795305 0.910075 +56 0.128881 0.924752 +55 0.128881 0.910075 +SURF 0x10 +mat 1 +refs 4 +76 0.0795305 0.910075 +77 0.0795305 0.913744 +59 0.128881 0.929338 +56 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +77 0.0795305 0.913744 +78 0.0795305 0.913744 +61 0.128881 0.929338 +59 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +78 0.0795305 0.913744 +79 0.0795305 0.910075 +63 0.128881 0.924752 +61 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +79 0.0795305 0.910075 +80 0.0795305 0.90182 +65 0.128881 0.914662 +63 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +80 0.0795305 0.90182 +81 0.0795305 0.881639 +67 0.128881 0.889895 +65 0.128881 0.914662 +SURF 0x10 +mat 1 +refs 4 +81 0.0795305 0.881639 +82 0.0795305 0.846783 +69 0.128881 0.846783 +67 0.128881 0.889895 +SURF 0x10 +mat 1 +refs 4 +82 0.0795305 0.846783 +83 0.0795305 0.799084 +71 0.128881 0.785324 +69 0.128881 0.846783 +SURF 0x10 +mat 1 +refs 4 +83 0.0795305 0.799084 +74 0.0795305 0.707355 +52 0.128881 0.666994 +71 0.128881 0.785324 +SURF 0x10 +mat 1 +refs 4 +84 0.0509594 0.748633 +85 0.0509594 0.884391 +75 0.0795305 0.898151 +74 0.0795305 0.707355 +SURF 0x10 +mat 1 +refs 4 +85 0.0509594 0.884391 +86 0.0509594 0.892647 +76 0.0795305 0.910075 +75 0.0795305 0.898151 +SURF 0x10 +mat 1 +refs 4 +86 0.0509594 0.892647 +87 0.0509594 0.895399 +77 0.0795305 0.913744 +76 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +87 0.0509594 0.895399 +88 0.0509594 0.895399 +78 0.0795305 0.913744 +77 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +88 0.0509594 0.895399 +89 0.0509594 0.892647 +79 0.0795305 0.910075 +78 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +89 0.0509594 0.892647 +90 0.0509594 0.887143 +80 0.0795305 0.90182 +79 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +90 0.0509594 0.887143 +91 0.0509594 0.872467 +81 0.0795305 0.881639 +80 0.0795305 0.90182 +SURF 0x10 +mat 1 +refs 4 +91 0.0509594 0.872467 +92 0.0509594 0.846783 +82 0.0795305 0.846783 +81 0.0795305 0.881639 +SURF 0x10 +mat 1 +refs 4 +92 0.0509594 0.846783 +93 0.0509594 0.812843 +83 0.0795305 0.799084 +82 0.0795305 0.846783 +SURF 0x10 +mat 1 +refs 4 +93 0.0509594 0.812843 +84 0.0509594 0.748633 +74 0.0795305 0.707355 +83 0.0795305 0.799084 +SURF 0x10 +mat 1 +refs 4 +94 0.0353751 0.781655 +95 0.0353751 0.871549 +85 0.0509594 0.884391 +84 0.0509594 0.748633 +SURF 0x10 +mat 1 +refs 4 +95 0.0353751 0.871549 +96 0.0353751 0.877053 +86 0.0509594 0.892647 +85 0.0509594 0.884391 +SURF 0x10 +mat 1 +refs 4 +96 0.0353751 0.877053 +97 0.0353751 0.878888 +87 0.0509594 0.895399 +86 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +97 0.0353751 0.878888 +98 0.0353751 0.878888 +88 0.0509594 0.895399 +87 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +98 0.0353751 0.878888 +99 0.0353751 0.877053 +89 0.0509594 0.892647 +88 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +99 0.0353751 0.877053 +100 0.0353751 0.873384 +90 0.0509594 0.887143 +89 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +100 0.0353751 0.873384 +101 0.0353751 0.863294 +91 0.0509594 0.872467 +90 0.0509594 0.887143 +SURF 0x10 +mat 1 +refs 4 +101 0.0353751 0.863294 +102 0.0353751 0.846783 +92 0.0509594 0.846783 +91 0.0509594 0.872467 +SURF 0x10 +mat 1 +refs 4 +102 0.0353751 0.846783 +103 0.0353751 0.82385 +93 0.0509594 0.812843 +92 0.0509594 0.846783 +SURF 0x10 +mat 1 +refs 4 +103 0.0353751 0.82385 +94 0.0353751 0.781655 +84 0.0509594 0.748633 +93 0.0509594 0.812843 +SURF 0x10 +mat 1 +refs 4 +104 0.0288817 0.804587 +105 0.0288817 0.862376 +95 0.0353751 0.871549 +94 0.0353751 0.781655 +SURF 0x10 +mat 1 +refs 4 +105 0.0288817 0.862376 +106 0.0288817 0.866046 +96 0.0353751 0.877053 +95 0.0353751 0.871549 +SURF 0x10 +mat 1 +refs 4 +106 0.0288817 0.866046 +107 0.0288817 0.866963 +97 0.0353751 0.878888 +96 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +107 0.0288817 0.866963 +108 0.0288817 0.866963 +98 0.0353751 0.878888 +97 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +108 0.0288817 0.866963 +109 0.0288817 0.866046 +99 0.0353751 0.877053 +98 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +109 0.0288817 0.866046 +110 0.0288817 0.863294 +100 0.0353751 0.873384 +99 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +110 0.0288817 0.863294 +111 0.0288817 0.85779 +101 0.0353751 0.863294 +100 0.0353751 0.873384 +SURF 0x10 +mat 1 +refs 4 +111 0.0288817 0.85779 +112 0.0288817 0.846783 +102 0.0353751 0.846783 +101 0.0353751 0.863294 +SURF 0x10 +mat 1 +refs 4 +112 0.0288817 0.846783 +113 0.0288817 0.832106 +103 0.0353751 0.82385 +102 0.0353751 0.846783 +SURF 0x10 +mat 1 +refs 4 +113 0.0288817 0.832106 +104 0.0288817 0.804587 +94 0.0353751 0.781655 +103 0.0353751 0.82385 +SURF 0x10 +mat 1 +refs 4 +114 0.0262843 0.822933 +115 0.0262843 0.855038 +105 0.0288817 0.862376 +104 0.0288817 0.804587 +SURF 0x10 +mat 1 +refs 4 +115 0.0262843 0.855038 +116 0.0262843 0.856873 +106 0.0288817 0.866046 +105 0.0288817 0.862376 +SURF 0x10 +mat 1 +refs 4 +116 0.0262843 0.856873 +117 0.0262843 0.85779 +107 0.0288817 0.866963 +106 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +117 0.0262843 0.85779 +118 0.0262843 0.85779 +108 0.0288817 0.866963 +107 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +118 0.0262843 0.85779 +119 0.0262843 0.856873 +109 0.0288817 0.866046 +108 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +119 0.0262843 0.856873 +120 0.0262843 0.855038 +110 0.0288817 0.863294 +109 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +120 0.0262843 0.855038 +121 0.0262843 0.852286 +111 0.0288817 0.85779 +110 0.0288817 0.863294 +SURF 0x10 +mat 1 +refs 4 +121 0.0262843 0.852286 +122 0.0262843 0.846783 +112 0.0288817 0.846783 +111 0.0288817 0.85779 +SURF 0x10 +mat 1 +refs 4 +122 0.0262843 0.846783 +123 0.0262843 0.838527 +113 0.0288817 0.832106 +112 0.0288817 0.846783 +SURF 0x10 +mat 1 +refs 4 +123 0.0262843 0.838527 +114 0.0262843 0.822933 +104 0.0288817 0.804587 +113 0.0288817 0.832106 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +115 0.0262843 0.855038 +114 0.0262843 0.822933 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +116 0.0262843 0.856873 +115 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +117 0.0262843 0.85779 +116 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +118 0.0262843 0.85779 +117 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +119 0.0262843 0.856873 +118 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +120 0.0262843 0.855038 +119 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +121 0.0262843 0.852286 +120 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +122 0.0262843 0.846783 +121 0.0262843 0.852286 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +123 0.0262843 0.838527 +122 0.0262843 0.846783 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +114 0.0262843 0.822933 +123 0.0262843 0.838527 +SURF 0x10 +mat 1 +refs 4 +58 0.174335 0.914662 +42 0.195114 0.917414 +125 0.195114 0.684423 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +57 0.174335 0.931173 +43 0.195114 0.933925 +42 0.195114 0.917414 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +60 0.174335 0.935759 +44 0.196413 0.939428 +43 0.195114 0.933925 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +62 0.174335 0.935759 +45 0.196413 0.939428 +44 0.196413 0.939428 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +64 0.174335 0.930256 +46 0.196413 0.933925 +45 0.196413 0.939428 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +66 0.174335 0.920165 +47 0.196413 0.922917 +46 0.196413 0.933925 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +68 0.174335 0.893564 +48 0.196413 0.895399 +47 0.196413 0.922917 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +70 0.174335 0.846783 +49 0.196413 0.846783 +48 0.196413 0.895399 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +72 0.174335 0.777069 +50 0.196413 0.7734 +49 0.196413 0.846783 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 4 +126 0.382125 0.671581 +22 0.382125 0.922917 +3 0.482124 0.922917 +1 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +127 0.271736 0.678919 +32 0.271736 0.922 +22 0.382125 0.922917 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +125 0.195114 0.684423 +42 0.195114 0.917414 +32 0.271736 0.922 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +50 0.196413 0.7734 +72 0.174335 0.777069 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +2 0.699005 0.567928 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +0 0.482124 0.574349 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +6 0.699005 0.922917 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +3 0.482124 0.922917 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +55 0.128881 0.910075 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +55 0.128881 0.910075 +58 0.174335 0.914662 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +54 0.174335 0.643145 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +52 0.128881 0.666994 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +1 0.482124 0.664243 +21 0.482124 0.664243 +31 0.382125 0.671581 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +0 0.482124 0.574349 +21 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +31 0.382125 0.671581 +41 0.271736 0.678919 +127 0.271736 0.678919 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +41 0.271736 0.678919 +51 0.196413 0.684423 +125 0.195114 0.684423 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +73 0.174335 0.68534 +53 0.174335 0.68534 +125 0.195114 0.684423 +SURF 0x10 +mat 1 +refs 3 +73 0.174335 0.68534 +54 0.174335 0.643145 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +128 0.480295 0.664116 +129 0.480295 0.574611 +SURF 0x10 +mat 1 +refs 4 +6 0.695816 0.921673 +5 0.695816 0.939939 +130 0.480295 0.939939 +131 0.480295 0.921673 +SURF 0x10 +mat 1 +refs 4 +5 0.695816 0.939939 +8 0.695816 0.945419 +132 0.480295 0.945419 +130 0.480295 0.939939 +SURF 0x10 +mat 1 +refs 4 +8 0.695816 0.945419 +10 0.695816 0.945419 +133 0.480295 0.945419 +132 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +10 0.695816 0.945419 +12 0.695816 0.939939 +134 0.481585 0.939939 +133 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +12 0.695816 0.939939 +14 0.695816 0.928066 +135 0.481585 0.928066 +134 0.481585 0.939939 +SURF 0x10 +mat 1 +refs 4 +14 0.695816 0.928066 +16 0.695816 0.89884 +136 0.481585 0.89884 +135 0.481585 0.928066 +SURF 0x10 +mat 1 +refs 4 +16 0.695816 0.89884 +18 0.695816 0.845867 +137 0.481585 0.845867 +136 0.481585 0.89884 +SURF 0x10 +mat 1 +refs 4 +18 0.695816 0.845867 +20 0.695816 0.750882 +138 0.481585 0.752708 +137 0.481585 0.845867 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +139 0.480295 0.664116 +138 0.481585 0.752708 +SURF 0x10 +mat 1 +refs 4 +131 0.480295 0.921673 +130 0.480295 0.939939 +140 0.380923 0.939939 +141 0.380923 0.921673 +SURF 0x10 +mat 1 +refs 4 +130 0.480295 0.939939 +132 0.480295 0.945419 +142 0.380923 0.945419 +140 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +132 0.480295 0.945419 +133 0.480295 0.945419 +143 0.380923 0.945419 +142 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +133 0.480295 0.945419 +134 0.481585 0.939939 +144 0.380923 0.939939 +143 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +134 0.481585 0.939939 +135 0.481585 0.928066 +145 0.380923 0.928066 +144 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +135 0.481585 0.928066 +136 0.481585 0.89884 +146 0.380923 0.89884 +145 0.380923 0.928066 +SURF 0x10 +mat 1 +refs 4 +136 0.481585 0.89884 +137 0.481585 0.845867 +147 0.380923 0.845867 +146 0.380923 0.89884 +SURF 0x10 +mat 1 +refs 4 +137 0.481585 0.845867 +138 0.481585 0.752708 +148 0.380923 0.757275 +147 0.380923 0.845867 +SURF 0x10 +mat 1 +refs 4 +138 0.481585 0.752708 +139 0.480295 0.664116 +149 0.380923 0.671422 +148 0.380923 0.757275 +SURF 0x10 +mat 1 +refs 4 +141 0.380923 0.921673 +140 0.380923 0.939939 +150 0.271226 0.938113 +151 0.271226 0.920759 +SURF 0x10 +mat 1 +refs 4 +140 0.380923 0.939939 +142 0.380923 0.945419 +152 0.271226 0.943593 +150 0.271226 0.938113 +SURF 0x10 +mat 1 +refs 4 +142 0.380923 0.945419 +143 0.380923 0.945419 +153 0.271226 0.943593 +152 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +143 0.380923 0.945419 +144 0.380923 0.939939 +154 0.272517 0.938113 +153 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +144 0.380923 0.939939 +145 0.380923 0.928066 +155 0.272517 0.926239 +154 0.272517 0.938113 +SURF 0x10 +mat 1 +refs 4 +145 0.380923 0.928066 +146 0.380923 0.89884 +156 0.272517 0.897013 +155 0.272517 0.926239 +SURF 0x10 +mat 1 +refs 4 +146 0.380923 0.89884 +147 0.380923 0.845867 +157 0.272517 0.845867 +156 0.272517 0.897013 +SURF 0x10 +mat 1 +refs 4 +147 0.380923 0.845867 +148 0.380923 0.757275 +158 0.272517 0.763668 +157 0.272517 0.845867 +SURF 0x10 +mat 1 +refs 4 +148 0.380923 0.757275 +149 0.380923 0.671422 +159 0.271226 0.678729 +158 0.272517 0.763668 +SURF 0x10 +mat 1 +refs 4 +151 0.271226 0.920759 +150 0.271226 0.938113 +160 0.195084 0.932633 +161 0.195084 0.916193 +SURF 0x10 +mat 1 +refs 4 +150 0.271226 0.938113 +152 0.271226 0.943593 +162 0.196375 0.938113 +160 0.195084 0.932633 +SURF 0x10 +mat 1 +refs 4 +152 0.271226 0.943593 +153 0.271226 0.943593 +163 0.196375 0.938113 +162 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +153 0.271226 0.943593 +154 0.272517 0.938113 +164 0.196375 0.932633 +163 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +154 0.272517 0.938113 +155 0.272517 0.926239 +165 0.196375 0.921673 +164 0.196375 0.932633 +SURF 0x10 +mat 1 +refs 4 +155 0.272517 0.926239 +156 0.272517 0.897013 +166 0.196375 0.894273 +165 0.196375 0.921673 +SURF 0x10 +mat 1 +refs 4 +156 0.272517 0.897013 +157 0.272517 0.845867 +167 0.196375 0.845867 +166 0.196375 0.894273 +SURF 0x10 +mat 1 +refs 4 +157 0.272517 0.845867 +158 0.272517 0.763668 +168 0.196375 0.772801 +167 0.196375 0.845867 +SURF 0x10 +mat 1 +refs 4 +158 0.272517 0.763668 +159 0.271226 0.678729 +169 0.196375 0.684209 +168 0.196375 0.772801 +SURF 0x10 +mat 1 +refs 3 +170 0.174435 0.64311 +171 0.174435 0.685122 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +174 0.174435 0.929893 +175 0.129266 0.9235 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +177 0.174435 0.934459 +178 0.129266 0.928066 +175 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +179 0.174435 0.934459 +180 0.129266 0.928066 +178 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +181 0.174435 0.928979 +182 0.129266 0.9235 +180 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +183 0.174435 0.918933 +184 0.129266 0.913453 +182 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +185 0.174435 0.892447 +186 0.129266 0.888793 +184 0.129266 0.913453 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +187 0.174435 0.845867 +188 0.129266 0.845867 +186 0.129266 0.888793 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +189 0.174435 0.776455 +190 0.129266 0.784674 +188 0.129266 0.845867 +SURF 0x10 +mat 1 +refs 3 +189 0.174435 0.776455 +191 0.174435 0.685122 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +172 0.129266 0.666856 +176 0.129266 0.908886 +192 0.0802255 0.897013 +193 0.0802255 0.707042 +SURF 0x10 +mat 1 +refs 4 +176 0.129266 0.908886 +175 0.129266 0.9235 +194 0.0802255 0.908886 +192 0.0802255 0.897013 +SURF 0x10 +mat 1 +refs 4 +175 0.129266 0.9235 +178 0.129266 0.928066 +195 0.0802255 0.91254 +194 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +178 0.129266 0.928066 +180 0.129266 0.928066 +196 0.0802255 0.91254 +195 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +180 0.129266 0.928066 +182 0.129266 0.9235 +197 0.0802255 0.908886 +196 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +182 0.129266 0.9235 +184 0.129266 0.913453 +198 0.0802255 0.900666 +197 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +184 0.129266 0.913453 +186 0.129266 0.888793 +199 0.0802255 0.880573 +198 0.0802255 0.900666 +SURF 0x10 +mat 1 +refs 4 +186 0.129266 0.888793 +188 0.129266 0.845867 +200 0.0802255 0.845867 +199 0.0802255 0.880573 +SURF 0x10 +mat 1 +refs 4 +188 0.129266 0.845867 +190 0.129266 0.784674 +201 0.0802255 0.798374 +200 0.0802255 0.845867 +SURF 0x10 +mat 1 +refs 4 +190 0.129266 0.784674 +172 0.129266 0.666856 +193 0.0802255 0.707042 +201 0.0802255 0.798374 +SURF 0x10 +mat 1 +refs 4 +193 0.0802255 0.707042 +192 0.0802255 0.897013 +202 0.050543 0.883313 +203 0.050543 0.748142 +SURF 0x10 +mat 1 +refs 4 +192 0.0802255 0.897013 +194 0.0802255 0.908886 +204 0.050543 0.891533 +202 0.050543 0.883313 +SURF 0x10 +mat 1 +refs 4 +194 0.0802255 0.908886 +195 0.0802255 0.91254 +205 0.050543 0.894273 +204 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +195 0.0802255 0.91254 +196 0.0802255 0.91254 +206 0.050543 0.894273 +205 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +196 0.0802255 0.91254 +197 0.0802255 0.908886 +207 0.050543 0.891533 +206 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +197 0.0802255 0.908886 +198 0.0802255 0.900666 +208 0.050543 0.886053 +207 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +198 0.0802255 0.900666 +199 0.0802255 0.880573 +209 0.050543 0.87144 +208 0.050543 0.886053 +SURF 0x10 +mat 1 +refs 4 +199 0.0802255 0.880573 +200 0.0802255 0.845867 +210 0.050543 0.845867 +209 0.050543 0.87144 +SURF 0x10 +mat 1 +refs 4 +200 0.0802255 0.845867 +201 0.0802255 0.798374 +211 0.050543 0.812074 +210 0.050543 0.845867 +SURF 0x10 +mat 1 +refs 4 +201 0.0802255 0.798374 +193 0.0802255 0.707042 +203 0.050543 0.748142 +211 0.050543 0.812074 +SURF 0x10 +mat 1 +refs 4 +203 0.050543 0.748142 +202 0.050543 0.883313 +212 0.0350563 0.870527 +213 0.0350563 0.781021 +SURF 0x10 +mat 1 +refs 4 +202 0.050543 0.883313 +204 0.050543 0.891533 +214 0.0350563 0.876007 +212 0.0350563 0.870527 +SURF 0x10 +mat 1 +refs 4 +204 0.050543 0.891533 +205 0.050543 0.894273 +215 0.0350563 0.877833 +214 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +205 0.050543 0.894273 +206 0.050543 0.894273 +216 0.0350563 0.877833 +215 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +206 0.050543 0.894273 +207 0.050543 0.891533 +217 0.0350563 0.876007 +216 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +207 0.050543 0.891533 +208 0.050543 0.886053 +218 0.0350563 0.872353 +217 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +208 0.050543 0.886053 +209 0.050543 0.87144 +219 0.0350563 0.862307 +218 0.0350563 0.872353 +SURF 0x10 +mat 1 +refs 4 +209 0.050543 0.87144 +210 0.050543 0.845867 +220 0.0350563 0.845867 +219 0.0350563 0.862307 +SURF 0x10 +mat 1 +refs 4 +210 0.050543 0.845867 +211 0.050543 0.812074 +221 0.0350563 0.823034 +220 0.0350563 0.845867 +SURF 0x10 +mat 1 +refs 4 +211 0.050543 0.812074 +203 0.050543 0.748142 +213 0.0350563 0.781021 +221 0.0350563 0.823034 +SURF 0x10 +mat 1 +refs 4 +213 0.0350563 0.781021 +212 0.0350563 0.870527 +222 0.0286036 0.861394 +223 0.0286036 0.803854 +SURF 0x10 +mat 1 +refs 4 +212 0.0350563 0.870527 +214 0.0350563 0.876007 +224 0.0286036 0.865047 +222 0.0286036 0.861394 +SURF 0x10 +mat 1 +refs 4 +214 0.0350563 0.876007 +215 0.0350563 0.877833 +225 0.0286036 0.86596 +224 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +215 0.0350563 0.877833 +216 0.0350563 0.877833 +226 0.0286036 0.86596 +225 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +216 0.0350563 0.877833 +217 0.0350563 0.876007 +227 0.0286036 0.865047 +226 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +217 0.0350563 0.876007 +218 0.0350563 0.872353 +228 0.0286036 0.862307 +227 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +218 0.0350563 0.872353 +219 0.0350563 0.862307 +229 0.0286036 0.856827 +228 0.0286036 0.862307 +SURF 0x10 +mat 1 +refs 4 +219 0.0350563 0.862307 +220 0.0350563 0.845867 +230 0.0286036 0.845867 +229 0.0286036 0.856827 +SURF 0x10 +mat 1 +refs 4 +220 0.0350563 0.845867 +221 0.0350563 0.823034 +231 0.0286036 0.831254 +230 0.0286036 0.845867 +SURF 0x10 +mat 1 +refs 4 +221 0.0350563 0.823034 +213 0.0350563 0.781021 +223 0.0286036 0.803854 +231 0.0286036 0.831254 +SURF 0x10 +mat 1 +refs 4 +223 0.0286036 0.803854 +222 0.0286036 0.861394 +232 0.0260225 0.854087 +233 0.0260225 0.822121 +SURF 0x10 +mat 1 +refs 4 +222 0.0286036 0.861394 +224 0.0286036 0.865047 +234 0.0260225 0.855914 +232 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +224 0.0286036 0.865047 +225 0.0286036 0.86596 +235 0.0260225 0.856827 +234 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +225 0.0286036 0.86596 +226 0.0286036 0.86596 +236 0.0260225 0.856827 +235 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +226 0.0286036 0.86596 +227 0.0286036 0.865047 +237 0.0260225 0.855914 +236 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +227 0.0286036 0.865047 +228 0.0286036 0.862307 +238 0.0260225 0.854087 +237 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +228 0.0286036 0.862307 +229 0.0286036 0.856827 +239 0.0260225 0.851347 +238 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +229 0.0286036 0.856827 +230 0.0286036 0.845867 +240 0.0260225 0.845867 +239 0.0260225 0.851347 +SURF 0x10 +mat 1 +refs 4 +230 0.0286036 0.845867 +231 0.0286036 0.831254 +241 0.0260225 0.837647 +240 0.0260225 0.845867 +SURF 0x10 +mat 1 +refs 4 +231 0.0286036 0.831254 +223 0.0286036 0.803854 +233 0.0260225 0.822121 +241 0.0260225 0.837647 +SURF 0x10 +mat 1 +refs 3 +233 0.0260225 0.822121 +232 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +232 0.0260225 0.854087 +234 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +234 0.0260225 0.855914 +235 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +235 0.0260225 0.856827 +236 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +236 0.0260225 0.856827 +237 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +237 0.0260225 0.855914 +238 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +238 0.0260225 0.854087 +239 0.0260225 0.851347 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +239 0.0260225 0.851347 +240 0.0260225 0.845867 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +240 0.0260225 0.845867 +241 0.0260225 0.837647 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +241 0.0260225 0.837647 +233 0.0260225 0.822121 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 4 +171 0.174435 0.685122 +243 0.195084 0.684209 +161 0.195084 0.916193 +173 0.174435 0.913453 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +161 0.195084 0.916193 +160 0.195084 0.932633 +174 0.174435 0.929893 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +160 0.195084 0.932633 +162 0.196375 0.938113 +177 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +162 0.196375 0.938113 +163 0.196375 0.938113 +179 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +163 0.196375 0.938113 +164 0.196375 0.932633 +181 0.174435 0.928979 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +164 0.196375 0.932633 +165 0.196375 0.921673 +183 0.174435 0.918933 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +165 0.196375 0.921673 +166 0.196375 0.894273 +185 0.174435 0.892447 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +166 0.196375 0.894273 +167 0.196375 0.845867 +187 0.174435 0.845867 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +167 0.196375 0.845867 +168 0.196375 0.772801 +189 0.174435 0.776455 +SURF 0x10 +mat 1 +refs 4 +128 0.480295 0.664116 +131 0.480295 0.921673 +141 0.380923 0.921673 +244 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +141 0.380923 0.921673 +151 0.271226 0.920759 +245 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +151 0.271226 0.920759 +161 0.195084 0.916193 +243 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 4 +191 0.174435 0.685122 +189 0.174435 0.776455 +168 0.196375 0.772801 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +2 0.695816 0.568217 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +129 0.480295 0.574611 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +6 0.695816 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +6 0.695816 0.921673 +131 0.480295 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +176 0.129266 0.908886 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +173 0.174435 0.913453 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +170 0.174435 0.64311 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +172 0.129266 0.666856 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +149 0.380923 0.671422 +139 0.480295 0.664116 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +139 0.480295 0.664116 +129 0.480295 0.574611 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +245 0.271226 0.678729 +159 0.271226 0.678729 +149 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +243 0.195084 0.684209 +169 0.196375 0.684209 +159 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +243 0.195084 0.684209 +171 0.174435 0.685122 +191 0.174435 0.685122 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +170 0.174435 0.64311 +191 0.174435 0.685122 +kids 0 +OBJECT poly +name "Wing_Brace_L" +numvert 16 +0.571227 -0.0984255 0.0574664 +0.571227 0.164205 0.661037 +0.616069 0.164205 0.661037 +0.616069 -0.0984255 0.0574664 +0.618555 -0.100705 0.0584581 +0.618555 0.161926 0.662028 +0.618555 0.157547 0.663934 +0.618555 -0.105083 0.0603633 +0.616069 -0.107362 0.061355 +0.616069 0.155268 0.664925 +0.571227 0.155268 0.664925 +0.571227 -0.107362 0.061355 +0.568741 -0.105083 0.0603633 +0.568741 0.157547 0.663934 +0.568741 0.161926 0.662028 +0.568741 -0.100705 0.0584581 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +8 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +14 0 0 +13 0 0 +10 0 0 +9 0 0 +6 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +5 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +9 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +12 0 0 +11 0 0 +kids 0 +OBJECT poly +name "Wing_Brace_R" +numvert 16 +0.616069 -0.0984255 -0.0574664 +0.616069 0.164205 -0.661037 +0.571227 0.164205 -0.661037 +0.571227 -0.0984255 -0.0574664 +0.618555 -0.105083 -0.0603633 +0.618555 0.157547 -0.663934 +0.618555 0.161926 -0.662028 +0.618555 -0.100705 -0.0584581 +0.571227 -0.107362 -0.061355 +0.571227 0.155268 -0.664925 +0.616069 0.155268 -0.664925 +0.616069 -0.107362 -0.061355 +0.568741 -0.100705 -0.0584581 +0.568741 0.161926 -0.662028 +0.568741 0.157547 -0.663934 +0.568741 -0.105083 -0.0603633 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +8 0 0 +11 0 0 +4 0 0 +7 0 0 +0 0 0 +3 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +6 0 0 +5 0 0 +10 0 0 +9 0 0 +14 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +13 0 0 +12 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +6 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +11 0 0 +10 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +15 0 0 +14 0 0 +9 0 0 +kids 0 +OBJECT poly +name "L_Aileron" +texture "Rascal.rgb" +numvert 15 +0.81915 0.138307 0.660425 +0.727528 0.138307 0.660425 +0.735007 0.130692 0.451014 +0.83185 0.130692 0.451014 +0.797416 0.146614 0.888874 +0.719369 0.146614 0.888874 +0.769575 0.152383 1.04752 +0.713703 0.152383 1.04752 +0.757651 0.154008 1.0922 +0.713716 0.162405 1.04716 +0.712107 0.162163 1.0922 +0.727548 0.154078 0.659852 +0.735027 0.146638 0.450434 +0.719388 0.161182 0.888345 +0.712107 0.154008 1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.382125 0.586273 +1 0.382125 0.671581 +2 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +4 0.271736 0.606454 +5 0.271736 0.678919 +1 0.382125 0.671581 +0 0.382125 0.586273 +SURF 0x10 +mat 1 +refs 4 +6 0.195114 0.632138 +7 0.195114 0.684423 +5 0.271736 0.678919 +4 0.271736 0.606454 +SURF 0x10 +mat 1 +refs 4 +8 0.174335 0.643145 +6 0.195114 0.632138 +9 0.196413 0.684423 +10 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +11 0.382125 0.671581 +0 0.382125 0.586273 +3 0.482124 0.574349 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +13 0.271736 0.678919 +4 0.271736 0.606454 +0 0.382125 0.586273 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +9 0.196413 0.684423 +6 0.195114 0.632138 +4 0.271736 0.606454 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +6 0.195114 0.632138 +8 0.174335 0.643145 +14 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.482124 0.664243 +12 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +2 0.482124 0.664243 +1 0.382125 0.671581 +11 0.382125 0.671581 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +1 0.382125 0.671581 +5 0.271736 0.678919 +13 0.271736 0.678919 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +5 0.271736 0.678919 +7 0.195114 0.684423 +9 0.196413 0.684423 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +14 0.174335 0.68534 +10 0.174335 0.68534 +9 0.196413 0.684423 +SURF 0x10 +mat 1 +refs 3 +14 0.174335 0.68534 +8 0.174335 0.643145 +10 0.174335 0.68534 +kids 0 +OBJECT poly +name "R_Aileron" +texture "Rascal.rgb" +numvert 15 +0.83185 0.130692 -0.451014 +0.735007 0.130692 -0.451014 +0.727528 0.138307 -0.660425 +0.81915 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +0.797416 0.146614 -0.888874 +0.713703 0.152383 -1.04752 +0.769575 0.152383 -1.04752 +0.712107 0.162163 -1.0922 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.735027 0.146638 -0.450434 +0.727548 0.154078 -0.659852 +0.719388 0.161182 -0.888345 +0.712107 0.154008 -1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.480295 0.574611 +1 0.480295 0.664116 +2 0.380923 0.671422 +3 0.380923 0.586484 +SURF 0x10 +mat 1 +refs 4 +3 0.380923 0.586484 +2 0.380923 0.671422 +4 0.271226 0.678729 +5 0.271226 0.606577 +SURF 0x10 +mat 1 +refs 4 +5 0.271226 0.606577 +4 0.271226 0.678729 +6 0.195084 0.684209 +7 0.195084 0.63215 +SURF 0x10 +mat 1 +refs 4 +8 0.174435 0.685122 +9 0.196375 0.684209 +7 0.195084 0.63215 +10 0.174435 0.64311 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +0 0.480295 0.574611 +3 0.380923 0.586484 +12 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +3 0.380923 0.586484 +5 0.271226 0.606577 +13 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +5 0.271226 0.606577 +7 0.195084 0.63215 +9 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 4 +14 0.174435 0.685122 +10 0.174435 0.64311 +7 0.195084 0.63215 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +0 0.480295 0.574611 +11 0.480295 0.664116 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +12 0.380923 0.671422 +2 0.380923 0.671422 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +13 0.271226 0.678729 +4 0.271226 0.678729 +2 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +9 0.196375 0.684209 +6 0.195084 0.684209 +4 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +9 0.196375 0.684209 +8 0.174435 0.685122 +14 0.174435 0.685122 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +8 0.174435 0.685122 +10 0.174435 0.64311 +14 0.174435 0.685122 +kids 0 +OBJECT poly +name "HStab" +texture "Rascal.rgb" +numvert 379 +1.59385 0.0579271 -0.01905 +1.59067 0.0570764 -0.01905 +1.59067 0.0570764 2.90536e-16 +1.59385 0.0579271 2.91315e-16 +1.58835 0.0547521 -0.01905 +1.58835 0.0547521 2.89966e-16 +1.5875 0.0515771 -0.01905 +1.5875 0.0515771 2.8976e-16 +1.58835 0.0484021 -0.01905 +1.58835 0.0484021 2.89966e-16 +1.59067 0.0460779 -0.01905 +1.59067 0.0460779 2.90536e-16 +1.59385 0.0452271 -0.01905 +1.59385 0.0452271 2.91315e-16 +1.6915 0.0570764 -0.459231 +1.70116 0.0570764 -0.45927 +1.70251 0.0547521 -0.461157 +1.6901 0.0547521 -0.461082 +1.59385 0.0579271 -0.0254 +1.59067 0.0570764 -0.0254 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 -0.0254 +1.59067 0.0460779 -0.0254 +1.59385 0.0452271 -0.0254 +1.58835 0.0484021 -0.0254 +1.5875 0.0515771 -0.0254 +1.58835 0.0547521 -0.0254 +1.59385 0.0579271 -0.0381 +1.59067 0.0570764 -0.0381 +1.7526 0.0579271 -0.0381 +1.59067 0.0460779 -0.0381 +1.59385 0.0452271 -0.0381 +1.58835 0.0484021 -0.0381 +1.5875 0.0515771 -0.0381 +1.58835 0.0547521 -0.0381 +1.59385 0.0579271 -0.05715 +1.59067 0.0570764 -0.05715 +1.7526 0.0579271 -0.05715 +1.59067 0.0460779 -0.05715 +1.59385 0.0452271 -0.05715 +1.58835 0.0484021 -0.05715 +1.5875 0.0515771 -0.05715 +1.58835 0.0547521 -0.05715 +1.59385 0.0579271 -0.0762 +1.59067 0.0570764 -0.0762 +1.7526 0.0579271 -0.0762 +1.59067 0.0460779 -0.0762 +1.59385 0.0452271 -0.0762 +1.58835 0.0484021 -0.0762 +1.5875 0.0515771 -0.0762 +1.58835 0.0547521 -0.0762 +1.59385 0.0579271 -0.1016 +1.59067 0.0570764 -0.1016 +1.7526 0.0579271 -0.1016 +1.59067 0.0460779 -0.1016 +1.59385 0.0452271 -0.1016 +1.58835 0.0484021 -0.1016 +1.5875 0.0515771 -0.1016 +1.58835 0.0547521 -0.1016 +1.59449 0.0579271 -0.1397 +1.59131 0.0570764 -0.1397 +1.7526 0.0579271 -0.1397 +1.59131 0.0460779 -0.1397 +1.59449 0.0452271 -0.1397 +1.58899 0.0484021 -0.1397 +1.58814 0.0515771 -0.1397 +1.58899 0.0547521 -0.1397 +1.59619 0.0579271 -0.1778 +1.59302 0.0570764 -0.1778 +1.7526 0.0579271 -0.1778 +1.59302 0.0460779 -0.1778 +1.59619 0.0452271 -0.1778 +1.5907 0.0484021 -0.1778 +1.58984 0.0515771 -0.1778 +1.5907 0.0547521 -0.1778 +1.59953 0.0579271 -0.228995 +1.59636 0.0570764 -0.228995 +1.7526 0.0579271 -0.228995 +1.59636 0.0460779 -0.228995 +1.59953 0.0452271 -0.228995 +1.59403 0.0484021 -0.228995 +1.59318 0.0515771 -0.228995 +1.59403 0.0547521 -0.228995 +1.60458 0.0579271 -0.280191 +1.6014 0.0570764 -0.280191 +1.7526 0.0579271 -0.280191 +1.6014 0.0460779 -0.280191 +1.60458 0.0452271 -0.280191 +1.59908 0.0484021 -0.280191 +1.59823 0.0515771 -0.280191 +1.59908 0.0547521 -0.280191 +1.61261 0.0579271 -0.331386 +1.60943 0.0570764 -0.331386 +1.7526 0.0579271 -0.331386 +1.60943 0.0460779 -0.331386 +1.61261 0.0452271 -0.331386 +1.60711 0.0484021 -0.331386 +1.60626 0.0515771 -0.331386 +1.60711 0.0547521 -0.331386 +1.62359 0.0579271 -0.382186 +1.62041 0.0570764 -0.382186 +1.7526 0.0579271 -0.382186 +1.62041 0.0460779 -0.382186 +1.62359 0.0452271 -0.382186 +1.61809 0.0484021 -0.382186 +1.61724 0.0515771 -0.382186 +1.61809 0.0547521 -0.382186 +1.63542 0.0579271 -0.408368 +1.63225 0.0570764 -0.408368 +1.77365 0.0579271 -0.382186 +1.77682 0.0570764 -0.382186 +1.76299 0.0570764 -0.408368 +1.75982 0.0579271 -0.408368 +1.77915 0.0547521 -0.382186 +1.76532 0.0547521 -0.408368 +1.78 0.0515771 -0.382186 +1.76617 0.0515771 -0.408368 +1.77915 0.0484021 -0.382186 +1.76532 0.0484021 -0.408368 +1.77682 0.0460779 -0.382186 +1.76299 0.0460779 -0.408368 +1.77365 0.0452271 -0.382186 +1.75982 0.0452271 -0.408368 +1.7526 0.0452271 -0.382186 +1.63225 0.0460779 -0.408368 +1.63542 0.0452271 -0.408368 +1.62992 0.0484021 -0.408368 +1.62907 0.0515771 -0.408368 +1.62992 0.0547521 -0.408368 +1.65311 0.0579271 -0.433768 +1.64994 0.0570764 -0.433768 +1.74152 0.0579271 -0.433768 +1.7447 0.0570764 -0.433768 +1.74702 0.0547521 -0.433768 +1.74787 0.0515771 -0.433768 +1.74702 0.0484021 -0.433768 +1.7447 0.0460779 -0.433768 +1.74152 0.0452271 -0.433768 +1.65311 0.0452271 -0.433768 +1.64994 0.0460779 -0.433768 +1.64761 0.0484021 -0.433768 +1.64676 0.0515771 -0.433768 +1.64761 0.0547521 -0.433768 +1.66243 0.0579271 -0.442748 +1.65925 0.0570764 -0.442748 +1.73216 0.0579271 -0.442748 +1.73533 0.0570764 -0.442748 +1.73766 0.0547521 -0.442748 +1.73851 0.0515771 -0.442748 +1.73766 0.0484021 -0.442748 +1.73533 0.0460779 -0.442748 +1.73216 0.0452271 -0.442748 +1.66243 0.0452271 -0.442748 +1.65925 0.0460779 -0.442748 +1.65693 0.0484021 -0.442748 +1.65608 0.0515771 -0.442748 +1.65693 0.0547521 -0.442748 +1.68017 0.0579271 -0.455448 +1.67699 0.0570764 -0.455448 +1.71417 0.0579271 -0.455448 +1.71734 0.0570764 -0.455448 +1.71967 0.0547521 -0.455448 +1.72052 0.0515771 -0.455448 +1.71967 0.0484021 -0.455448 +1.71734 0.0460779 -0.455448 +1.71417 0.0452271 -0.455448 +1.68017 0.0452271 -0.455448 +1.67699 0.0460779 -0.455448 +1.67467 0.0484021 -0.455448 +1.67382 0.0515771 -0.455448 +1.67467 0.0547521 -0.455448 +1.69342 0.0579271 -0.456702 +1.6993 0.0579271 -0.456694 +1.70301 0.0515771 -0.461847 +1.70251 0.0484021 -0.461157 +1.70116 0.0460779 -0.45927 +1.6993 0.0452271 -0.456694 +1.69342 0.0452271 -0.456702 +1.6915 0.0460779 -0.459231 +1.6901 0.0484021 -0.461082 +1.68958 0.0515771 -0.461759 +1.59067 0.0570764 0.01905 +1.59385 0.0579271 0.01905 +1.58835 0.0547521 0.01905 +1.5875 0.0515771 0.01905 +1.58835 0.0484021 0.01905 +1.59067 0.0460779 0.01905 +1.59385 0.0452271 0.01905 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 0.01905 +1.6901 0.0547521 0.461082 +1.70251 0.0547521 0.461157 +1.70116 0.0570764 0.45927 +1.6915 0.0570764 0.459231 +1.59067 0.0570764 0.0254 +1.59385 0.0579271 0.0254 +1.7526 0.0579271 0.0254 +1.59385 0.0452271 0.0254 +1.59067 0.0460779 0.0254 +1.58835 0.0484021 0.0254 +1.5875 0.0515771 0.0254 +1.58835 0.0547521 0.0254 +1.59067 0.0570764 0.0381 +1.59385 0.0579271 0.0381 +1.7526 0.0579271 0.0381 +1.59385 0.0452271 0.0381 +1.59067 0.0460779 0.0381 +1.58835 0.0484021 0.0381 +1.5875 0.0515771 0.0381 +1.58835 0.0547521 0.0381 +1.59067 0.0570764 0.05715 +1.59385 0.0579271 0.05715 +1.7526 0.0579271 0.05715 +1.59385 0.0452271 0.05715 +1.59067 0.0460779 0.05715 +1.58835 0.0484021 0.05715 +1.5875 0.0515771 0.05715 +1.58835 0.0547521 0.05715 +1.59067 0.0570764 0.0762 +1.59385 0.0579271 0.0762 +1.7526 0.0579271 0.0762 +1.59385 0.0452271 0.0762 +1.59067 0.0460779 0.0762 +1.58835 0.0484021 0.0762 +1.5875 0.0515771 0.0762 +1.58835 0.0547521 0.0762 +1.59067 0.0570764 0.1016 +1.59385 0.0579271 0.1016 +1.7526 0.0579271 0.1016 +1.59385 0.0452271 0.1016 +1.59067 0.0460779 0.1016 +1.58835 0.0484021 0.1016 +1.5875 0.0515771 0.1016 +1.58835 0.0547521 0.1016 +1.59131 0.0570764 0.1397 +1.59449 0.0579271 0.1397 +1.7526 0.0579271 0.1397 +1.59449 0.0452271 0.1397 +1.59131 0.0460779 0.1397 +1.58899 0.0484021 0.1397 +1.58814 0.0515771 0.1397 +1.58899 0.0547521 0.1397 +1.59302 0.0570764 0.1778 +1.59619 0.0579271 0.1778 +1.7526 0.0579271 0.1778 +1.59619 0.0452271 0.1778 +1.59302 0.0460779 0.1778 +1.5907 0.0484021 0.1778 +1.58984 0.0515771 0.1778 +1.5907 0.0547521 0.1778 +1.59636 0.0570764 0.228995 +1.59953 0.0579271 0.228995 +1.7526 0.0579271 0.228995 +1.59953 0.0452271 0.228995 +1.59636 0.0460779 0.228995 +1.59403 0.0484021 0.228995 +1.59318 0.0515771 0.228995 +1.59403 0.0547521 0.228995 +1.6014 0.0570764 0.280191 +1.60458 0.0579271 0.280191 +1.7526 0.0579271 0.280191 +1.60458 0.0452271 0.280191 +1.6014 0.0460779 0.280191 +1.59908 0.0484021 0.280191 +1.59823 0.0515771 0.280191 +1.59908 0.0547521 0.280191 +1.60943 0.0570764 0.331386 +1.61261 0.0579271 0.331386 +1.7526 0.0579271 0.331386 +1.61261 0.0452271 0.331386 +1.60943 0.0460779 0.331386 +1.60711 0.0484021 0.331386 +1.60626 0.0515771 0.331386 +1.60711 0.0547521 0.331386 +1.62041 0.0570764 0.382186 +1.62359 0.0579271 0.382186 +1.7526 0.0579271 0.382186 +1.62359 0.0452271 0.382186 +1.62041 0.0460779 0.382186 +1.61809 0.0484021 0.382186 +1.61724 0.0515771 0.382186 +1.61809 0.0547521 0.382186 +1.63225 0.0570764 0.408368 +1.63542 0.0579271 0.408368 +1.75982 0.0579271 0.408368 +1.76299 0.0570764 0.408368 +1.77682 0.0570764 0.382186 +1.77365 0.0579271 0.382186 +1.76532 0.0547521 0.408368 +1.77915 0.0547521 0.382186 +1.76617 0.0515771 0.408368 +1.78 0.0515771 0.382186 +1.76532 0.0484021 0.408368 +1.77915 0.0484021 0.382186 +1.76299 0.0460779 0.408368 +1.77682 0.0460779 0.382186 +1.75982 0.0452271 0.408368 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.63542 0.0452271 0.408368 +1.63225 0.0460779 0.408368 +1.62992 0.0484021 0.408368 +1.62907 0.0515771 0.408368 +1.62992 0.0547521 0.408368 +1.64994 0.0570764 0.433768 +1.65311 0.0579271 0.433768 +1.74152 0.0579271 0.433768 +1.7447 0.0570764 0.433768 +1.74702 0.0547521 0.433768 +1.74787 0.0515771 0.433768 +1.74702 0.0484021 0.433768 +1.7447 0.0460779 0.433768 +1.74152 0.0452271 0.433768 +1.65311 0.0452271 0.433768 +1.64994 0.0460779 0.433768 +1.64761 0.0484021 0.433768 +1.64676 0.0515771 0.433768 +1.64761 0.0547521 0.433768 +1.65925 0.0570764 0.442748 +1.66243 0.0579271 0.442748 +1.73216 0.0579271 0.442748 +1.73533 0.0570764 0.442748 +1.73766 0.0547521 0.442748 +1.73851 0.0515771 0.442748 +1.73766 0.0484021 0.442748 +1.73533 0.0460779 0.442748 +1.73216 0.0452271 0.442748 +1.66243 0.0452271 0.442748 +1.65925 0.0460779 0.442748 +1.65693 0.0484021 0.442748 +1.65608 0.0515771 0.442748 +1.65693 0.0547521 0.442748 +1.67699 0.0570764 0.455448 +1.68017 0.0579271 0.455448 +1.71417 0.0579271 0.455448 +1.71734 0.0570764 0.455448 +1.71967 0.0547521 0.455448 +1.72052 0.0515771 0.455448 +1.71967 0.0484021 0.455448 +1.71734 0.0460779 0.455448 +1.71417 0.0452271 0.455448 +1.68017 0.0452271 0.455448 +1.67699 0.0460779 0.455448 +1.67467 0.0484021 0.455448 +1.67382 0.0515771 0.455448 +1.67467 0.0547521 0.455448 +1.69342 0.0579271 0.456702 +1.6993 0.0579271 0.456694 +1.70301 0.0515771 0.461847 +1.70251 0.0484021 0.461157 +1.70116 0.0460779 0.45927 +1.6993 0.0452271 0.456694 +1.69342 0.0452271 0.456702 +1.6915 0.0460779 0.459231 +1.6901 0.0484021 0.461082 +1.68958 0.0515771 0.461759 +1.7526 0.0452271 -0.01905 +1.7526 0.0452271 -0.0254 +1.7526 0.0452271 -0.0381 +1.7526 0.0452271 -0.05715 +1.7526 0.0452271 -0.0762 +1.7526 0.0452271 -0.1016 +1.7526 0.0452271 -0.1397 +1.7526 0.0452271 -0.1778 +1.7526 0.0452271 -0.228995 +1.7526 0.0452271 -0.280191 +1.7526 0.0452271 -0.331386 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.0381 +1.7526 0.0452271 0.05715 +1.7526 0.0452271 0.0762 +1.7526 0.0452271 0.1016 +1.7526 0.0452271 0.1397 +1.7526 0.0452271 0.1778 +1.7526 0.0452271 0.228995 +1.7526 0.0452271 0.280191 +1.7526 0.0452271 0.331386 +numsurf 384 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +1 0.742627 0.922959 +2 0.742627 0.941242 +3 0.744104 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +4 0.74155 0.922959 +5 0.74155 0.941242 +2 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +6 0.741155 0.922959 +7 0.741155 0.941242 +5 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +8 0.74155 0.922959 +9 0.74155 0.941242 +7 0.741155 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +10 0.742627 0.922959 +11 0.742627 0.941242 +9 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +12 0.744104 0.922959 +13 0.744104 0.941242 +11 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +15 0.793943 0.500463 +16 0.79457 0.498652 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +0 0.744104 0.922959 +18 0.744104 0.916865 +19 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +20 0.817833 0.922959 +21 0.817833 0.916865 +18 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +12 0.744104 0.922959 +10 0.742627 0.922959 +22 0.742627 0.916865 +23 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +8 0.74155 0.922959 +24 0.74155 0.916865 +22 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +6 0.741155 0.922959 +25 0.741155 0.916865 +24 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +4 0.74155 0.922959 +26 0.74155 0.916865 +25 0.741155 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +1 0.742627 0.922959 +19 0.742627 0.916865 +26 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.742627 0.916865 +18 0.744104 0.916865 +27 0.744104 0.904676 +28 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.744104 0.916865 +21 0.817833 0.916865 +29 0.817833 0.904676 +27 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.744104 0.916865 +22 0.742627 0.916865 +30 0.742627 0.904676 +31 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.742627 0.916865 +24 0.74155 0.916865 +32 0.74155 0.904676 +30 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.74155 0.916865 +25 0.741155 0.916865 +33 0.741155 0.904676 +32 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +25 0.741155 0.916865 +26 0.74155 0.916865 +34 0.74155 0.904676 +33 0.741155 0.904676 +SURF 0x10 +mat 1 +refs 4 +26 0.74155 0.916865 +19 0.742627 0.916865 +28 0.742627 0.904676 +34 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +28 0.742627 0.904676 +27 0.744104 0.904676 +35 0.744104 0.886393 +36 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +27 0.744104 0.904676 +29 0.817833 0.904676 +37 0.817833 0.886393 +35 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.744104 0.904676 +30 0.742627 0.904676 +38 0.742627 0.886393 +39 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.742627 0.904676 +32 0.74155 0.904676 +40 0.74155 0.886393 +38 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.74155 0.904676 +33 0.741155 0.904676 +41 0.741155 0.886393 +40 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +33 0.741155 0.904676 +34 0.74155 0.904676 +42 0.74155 0.886393 +41 0.741155 0.886393 +SURF 0x10 +mat 1 +refs 4 +34 0.74155 0.904676 +28 0.742627 0.904676 +36 0.742627 0.886393 +42 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +36 0.742627 0.886393 +35 0.744104 0.886393 +43 0.744104 0.86811 +44 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +35 0.744104 0.886393 +37 0.817833 0.886393 +45 0.817833 0.86811 +43 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.744104 0.886393 +38 0.742627 0.886393 +46 0.742627 0.86811 +47 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.742627 0.886393 +40 0.74155 0.886393 +48 0.74155 0.86811 +46 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.74155 0.886393 +41 0.741155 0.886393 +49 0.741155 0.86811 +48 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +41 0.741155 0.886393 +42 0.74155 0.886393 +50 0.74155 0.86811 +49 0.741155 0.86811 +SURF 0x10 +mat 1 +refs 4 +42 0.74155 0.886393 +36 0.742627 0.886393 +44 0.742627 0.86811 +50 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +44 0.742627 0.86811 +43 0.744104 0.86811 +51 0.744104 0.843733 +52 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +43 0.744104 0.86811 +45 0.817833 0.86811 +53 0.817833 0.843733 +51 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.744104 0.86811 +46 0.742627 0.86811 +54 0.742627 0.843733 +55 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.742627 0.86811 +48 0.74155 0.86811 +56 0.74155 0.843733 +54 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.74155 0.86811 +49 0.741155 0.86811 +57 0.741155 0.843733 +56 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +49 0.741155 0.86811 +50 0.74155 0.86811 +58 0.74155 0.843733 +57 0.741155 0.843733 +SURF 0x10 +mat 1 +refs 4 +50 0.74155 0.86811 +44 0.742627 0.86811 +52 0.742627 0.843733 +58 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +52 0.742627 0.843733 +51 0.744104 0.843733 +59 0.744401 0.807167 +60 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +51 0.744104 0.843733 +53 0.817833 0.843733 +61 0.817833 0.807167 +59 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.744104 0.843733 +54 0.742627 0.843733 +62 0.742924 0.807167 +63 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.742627 0.843733 +56 0.74155 0.843733 +64 0.741847 0.807167 +62 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.74155 0.843733 +57 0.741155 0.843733 +65 0.741452 0.807167 +64 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +57 0.741155 0.843733 +58 0.74155 0.843733 +66 0.741847 0.807167 +65 0.741452 0.807167 +SURF 0x10 +mat 1 +refs 4 +58 0.74155 0.843733 +52 0.742627 0.843733 +60 0.742924 0.807167 +66 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +60 0.742924 0.807167 +59 0.744401 0.807167 +67 0.745191 0.7706 +68 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +59 0.744401 0.807167 +61 0.817833 0.807167 +69 0.817833 0.7706 +67 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.744401 0.807167 +62 0.742924 0.807167 +70 0.743718 0.7706 +71 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.742924 0.807167 +64 0.741847 0.807167 +72 0.742641 0.7706 +70 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.741847 0.807167 +65 0.741452 0.807167 +73 0.742242 0.7706 +72 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +65 0.741452 0.807167 +66 0.741847 0.807167 +74 0.742641 0.7706 +73 0.742242 0.7706 +SURF 0x10 +mat 1 +refs 4 +66 0.741847 0.807167 +60 0.742924 0.807167 +68 0.743718 0.7706 +74 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +68 0.743718 0.7706 +67 0.745191 0.7706 +75 0.746742 0.721467 +76 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +67 0.745191 0.7706 +69 0.817833 0.7706 +77 0.817833 0.721467 +75 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.745191 0.7706 +70 0.743718 0.7706 +78 0.74527 0.721467 +79 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.743718 0.7706 +72 0.742641 0.7706 +80 0.744188 0.721467 +78 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.742641 0.7706 +73 0.742242 0.7706 +81 0.743793 0.721467 +80 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +73 0.742242 0.7706 +74 0.742641 0.7706 +82 0.744188 0.721467 +81 0.743793 0.721467 +SURF 0x10 +mat 1 +refs 4 +74 0.742641 0.7706 +68 0.743718 0.7706 +76 0.74527 0.721467 +82 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +76 0.74527 0.721467 +75 0.746742 0.721467 +83 0.749087 0.672332 +84 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +75 0.746742 0.721467 +77 0.817833 0.721467 +85 0.817833 0.672332 +83 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.746742 0.721467 +78 0.74527 0.721467 +86 0.747611 0.672332 +87 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.74527 0.721467 +80 0.744188 0.721467 +88 0.746533 0.672332 +86 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.744188 0.721467 +81 0.743793 0.721467 +89 0.746138 0.672332 +88 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +81 0.743793 0.721467 +82 0.744188 0.721467 +90 0.746533 0.672332 +89 0.746138 0.672332 +SURF 0x10 +mat 1 +refs 4 +82 0.744188 0.721467 +76 0.74527 0.721467 +84 0.747611 0.672332 +90 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +84 0.747611 0.672332 +83 0.749087 0.672332 +91 0.752817 0.623198 +92 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +83 0.749087 0.672332 +85 0.817833 0.672332 +93 0.817833 0.623198 +91 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.749087 0.672332 +86 0.747611 0.672332 +94 0.75134 0.623198 +95 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.747611 0.672332 +88 0.746533 0.672332 +96 0.750262 0.623198 +94 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.746533 0.672332 +89 0.746138 0.672332 +97 0.749868 0.623198 +96 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +89 0.746138 0.672332 +90 0.746533 0.672332 +98 0.750262 0.623198 +97 0.749868 0.623198 +SURF 0x10 +mat 1 +refs 4 +90 0.746533 0.672332 +84 0.747611 0.672332 +92 0.75134 0.623198 +98 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +92 0.75134 0.623198 +91 0.752817 0.623198 +99 0.757916 0.574443 +100 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +91 0.752817 0.623198 +93 0.817833 0.623198 +101 0.817833 0.574443 +99 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.752817 0.623198 +94 0.75134 0.623198 +102 0.756439 0.574443 +103 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.75134 0.623198 +96 0.750262 0.623198 +104 0.755362 0.574443 +102 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.750262 0.623198 +97 0.749868 0.623198 +105 0.754967 0.574443 +104 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +97 0.749868 0.623198 +98 0.750262 0.623198 +106 0.755362 0.574443 +105 0.754967 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.750262 0.623198 +92 0.75134 0.623198 +100 0.756439 0.574443 +106 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +100 0.756439 0.574443 +99 0.757916 0.574443 +107 0.763411 0.549315 +108 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 3 +99 0.757916 0.574443 +101 0.817833 0.574443 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +109 0.82761 0.574443 +110 0.829082 0.574443 +111 0.822659 0.549315 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +110 0.829082 0.574443 +113 0.830164 0.574443 +114 0.823741 0.549315 +111 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 4 +113 0.830164 0.574443 +115 0.830559 0.574443 +116 0.824136 0.549315 +114 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +115 0.830559 0.574443 +117 0.830164 0.574443 +118 0.823741 0.549315 +116 0.824136 0.549315 +SURF 0x10 +mat 1 +refs 4 +117 0.830164 0.574443 +119 0.829082 0.574443 +120 0.822659 0.549315 +118 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +121 0.82761 0.574443 +122 0.821187 0.549315 +120 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 3 +121 0.82761 0.574443 +123 0.817833 0.574443 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +103 0.757916 0.574443 +102 0.756439 0.574443 +124 0.761938 0.549315 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +102 0.756439 0.574443 +104 0.755362 0.574443 +126 0.760856 0.549315 +124 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 4 +104 0.755362 0.574443 +105 0.754967 0.574443 +127 0.760462 0.549315 +126 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +105 0.754967 0.574443 +106 0.755362 0.574443 +128 0.760856 0.549315 +127 0.760462 0.549315 +SURF 0x10 +mat 1 +refs 4 +106 0.755362 0.574443 +100 0.756439 0.574443 +108 0.761938 0.549315 +128 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +108 0.761938 0.549315 +107 0.763411 0.549315 +129 0.771627 0.524938 +130 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +107 0.763411 0.549315 +112 0.821187 0.549315 +131 0.812688 0.524938 +129 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +112 0.821187 0.549315 +111 0.822659 0.549315 +132 0.814164 0.524938 +131 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +111 0.822659 0.549315 +114 0.823741 0.549315 +133 0.815242 0.524938 +132 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +114 0.823741 0.549315 +116 0.824136 0.549315 +134 0.815637 0.524938 +133 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +116 0.824136 0.549315 +118 0.823741 0.549315 +135 0.815242 0.524938 +134 0.815637 0.524938 +SURF 0x10 +mat 1 +refs 4 +118 0.823741 0.549315 +120 0.822659 0.549315 +136 0.814164 0.524938 +135 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +120 0.822659 0.549315 +122 0.821187 0.549315 +137 0.812688 0.524938 +136 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +122 0.821187 0.549315 +125 0.763411 0.549315 +138 0.771627 0.524938 +137 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +125 0.763411 0.549315 +124 0.761938 0.549315 +139 0.770154 0.524938 +138 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +124 0.761938 0.549315 +126 0.760856 0.549315 +140 0.769072 0.524938 +139 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +126 0.760856 0.549315 +127 0.760462 0.549315 +141 0.768677 0.524938 +140 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +127 0.760462 0.549315 +128 0.760856 0.549315 +142 0.769072 0.524938 +141 0.768677 0.524938 +SURF 0x10 +mat 1 +refs 4 +128 0.760856 0.549315 +108 0.761938 0.549315 +130 0.770154 0.524938 +142 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +130 0.770154 0.524938 +129 0.771627 0.524938 +143 0.775955 0.516319 +144 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +129 0.771627 0.524938 +131 0.812688 0.524938 +145 0.80834 0.516319 +143 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +131 0.812688 0.524938 +132 0.814164 0.524938 +146 0.809813 0.516319 +145 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +132 0.814164 0.524938 +133 0.815242 0.524938 +147 0.810895 0.516319 +146 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +133 0.815242 0.524938 +134 0.815637 0.524938 +148 0.81129 0.516319 +147 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +134 0.815637 0.524938 +135 0.815242 0.524938 +149 0.810895 0.516319 +148 0.81129 0.516319 +SURF 0x10 +mat 1 +refs 4 +135 0.815242 0.524938 +136 0.814164 0.524938 +150 0.809813 0.516319 +149 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +136 0.814164 0.524938 +137 0.812688 0.524938 +151 0.80834 0.516319 +150 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +137 0.812688 0.524938 +138 0.771627 0.524938 +152 0.775955 0.516319 +151 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +138 0.771627 0.524938 +139 0.770154 0.524938 +153 0.774478 0.516319 +152 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +139 0.770154 0.524938 +140 0.769072 0.524938 +154 0.773401 0.516319 +153 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +140 0.769072 0.524938 +141 0.768677 0.524938 +155 0.773006 0.516319 +154 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +141 0.768677 0.524938 +142 0.769072 0.524938 +156 0.773401 0.516319 +155 0.773006 0.516319 +SURF 0x10 +mat 1 +refs 4 +142 0.769072 0.524938 +130 0.770154 0.524938 +144 0.774478 0.516319 +156 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +144 0.774478 0.516319 +143 0.775955 0.516319 +157 0.784194 0.504131 +158 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +143 0.775955 0.516319 +145 0.80834 0.516319 +159 0.799985 0.504131 +157 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +145 0.80834 0.516319 +146 0.809813 0.516319 +160 0.801457 0.504131 +159 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +146 0.809813 0.516319 +147 0.810895 0.516319 +161 0.80254 0.504131 +160 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +147 0.810895 0.516319 +148 0.81129 0.516319 +162 0.802934 0.504131 +161 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +148 0.81129 0.516319 +149 0.810895 0.516319 +163 0.80254 0.504131 +162 0.802934 0.504131 +SURF 0x10 +mat 1 +refs 4 +149 0.810895 0.516319 +150 0.809813 0.516319 +164 0.801457 0.504131 +163 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +150 0.809813 0.516319 +151 0.80834 0.516319 +165 0.799985 0.504131 +164 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +151 0.80834 0.516319 +152 0.775955 0.516319 +166 0.784194 0.504131 +165 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +152 0.775955 0.516319 +153 0.774478 0.516319 +167 0.782717 0.504131 +166 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +153 0.774478 0.516319 +154 0.773401 0.516319 +168 0.78164 0.504131 +167 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +154 0.773401 0.516319 +155 0.773006 0.516319 +169 0.781245 0.504131 +168 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +155 0.773006 0.516319 +156 0.773401 0.516319 +170 0.78164 0.504131 +169 0.781245 0.504131 +SURF 0x10 +mat 1 +refs 4 +156 0.773401 0.516319 +144 0.774478 0.516319 +158 0.782717 0.504131 +170 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +158 0.782717 0.504131 +157 0.784194 0.504131 +171 0.790348 0.502927 +14 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +157 0.784194 0.504131 +159 0.799985 0.504131 +172 0.793079 0.502935 +171 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +159 0.799985 0.504131 +160 0.801457 0.504131 +15 0.793943 0.500463 +172 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +160 0.801457 0.504131 +161 0.80254 0.504131 +16 0.79457 0.498652 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +161 0.80254 0.504131 +162 0.802934 0.504131 +173 0.794802 0.497989 +16 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +162 0.802934 0.504131 +163 0.80254 0.504131 +174 0.79457 0.498652 +173 0.794802 0.497989 +SURF 0x10 +mat 1 +refs 4 +163 0.80254 0.504131 +164 0.801457 0.504131 +175 0.793943 0.500463 +174 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +164 0.801457 0.504131 +165 0.799985 0.504131 +176 0.793079 0.502935 +175 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +165 0.799985 0.504131 +166 0.784194 0.504131 +177 0.790348 0.502927 +176 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +166 0.784194 0.504131 +167 0.782717 0.504131 +178 0.789456 0.5005 +177 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +167 0.782717 0.504131 +168 0.78164 0.504131 +179 0.788806 0.498723 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +168 0.78164 0.504131 +169 0.781245 0.504131 +180 0.788565 0.498074 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +169 0.781245 0.504131 +170 0.78164 0.504131 +17 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +170 0.78164 0.504131 +158 0.782717 0.504131 +14 0.789456 0.5005 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +171 0.790348 0.502927 +172 0.793079 0.502935 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +16 0.79457 0.498652 +173 0.794802 0.497989 +180 0.788565 0.498074 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +173 0.794802 0.497989 +174 0.79457 0.498652 +179 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +174 0.79457 0.498652 +175 0.793943 0.500463 +178 0.789456 0.5005 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +175 0.793943 0.500463 +176 0.793079 0.502935 +177 0.790348 0.502927 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +2 0.742628 0.94124 +181 0.742628 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.742628 0.94124 +5 0.741551 0.94124 +183 0.741551 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.741551 0.94124 +7 0.741156 0.94124 +184 0.741156 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.741156 0.94124 +9 0.741551 0.94124 +185 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.741551 0.94124 +11 0.742628 0.94124 +186 0.742628 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.742628 0.94124 +13 0.744105 0.94124 +187 0.744105 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +182 0.744105 0.922957 +188 0.817834 0.922957 +189 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +187 0.744105 0.922957 +13 0.744105 0.94124 +190 0.817834 0.94124 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +193 0.794571 0.49865 +194 0.793944 0.500461 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +196 0.742628 0.916863 +197 0.744105 0.916863 +182 0.744105 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +197 0.744105 0.916863 +198 0.817834 0.916863 +188 0.817834 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +199 0.744105 0.916863 +200 0.742628 0.916863 +186 0.742628 0.922957 +187 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +200 0.742628 0.916863 +201 0.741551 0.916863 +185 0.741551 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +201 0.741551 0.916863 +202 0.741156 0.916863 +184 0.741156 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +202 0.741156 0.916863 +203 0.741551 0.916863 +183 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +203 0.741551 0.916863 +196 0.742628 0.916863 +181 0.742628 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +204 0.742628 0.904674 +205 0.744105 0.904674 +197 0.744105 0.916863 +196 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +205 0.744105 0.904674 +206 0.817834 0.904674 +198 0.817834 0.916863 +197 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +207 0.744105 0.904674 +208 0.742628 0.904674 +200 0.742628 0.916863 +199 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +208 0.742628 0.904674 +209 0.741551 0.904674 +201 0.741551 0.916863 +200 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +209 0.741551 0.904674 +210 0.741156 0.904674 +202 0.741156 0.916863 +201 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +210 0.741156 0.904674 +211 0.741551 0.904674 +203 0.741551 0.916863 +202 0.741156 0.916863 +SURF 0x10 +mat 1 +refs 4 +211 0.741551 0.904674 +204 0.742628 0.904674 +196 0.742628 0.916863 +203 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +212 0.742628 0.886391 +213 0.744105 0.886391 +205 0.744105 0.904674 +204 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +213 0.744105 0.886391 +214 0.817834 0.886391 +206 0.817834 0.904674 +205 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +215 0.744105 0.886391 +216 0.742628 0.886391 +208 0.742628 0.904674 +207 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +216 0.742628 0.886391 +217 0.741551 0.886391 +209 0.741551 0.904674 +208 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.741551 0.886391 +218 0.741156 0.886391 +210 0.741156 0.904674 +209 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +218 0.741156 0.886391 +219 0.741551 0.886391 +211 0.741551 0.904674 +210 0.741156 0.904674 +SURF 0x10 +mat 1 +refs 4 +219 0.741551 0.886391 +212 0.742628 0.886391 +204 0.742628 0.904674 +211 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +220 0.742628 0.868108 +221 0.744105 0.868108 +213 0.744105 0.886391 +212 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +221 0.744105 0.868108 +222 0.817834 0.868108 +214 0.817834 0.886391 +213 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +223 0.744105 0.868108 +224 0.742628 0.868108 +216 0.742628 0.886391 +215 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +224 0.742628 0.868108 +225 0.741551 0.868108 +217 0.741551 0.886391 +216 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +225 0.741551 0.868108 +226 0.741156 0.868108 +218 0.741156 0.886391 +217 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +226 0.741156 0.868108 +227 0.741551 0.868108 +219 0.741551 0.886391 +218 0.741156 0.886391 +SURF 0x10 +mat 1 +refs 4 +227 0.741551 0.868108 +220 0.742628 0.868108 +212 0.742628 0.886391 +219 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +228 0.742628 0.843731 +229 0.744105 0.843731 +221 0.744105 0.868108 +220 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +229 0.744105 0.843731 +230 0.817834 0.843731 +222 0.817834 0.868108 +221 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +231 0.744105 0.843731 +232 0.742628 0.843731 +224 0.742628 0.868108 +223 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +232 0.742628 0.843731 +233 0.741551 0.843731 +225 0.741551 0.868108 +224 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +233 0.741551 0.843731 +234 0.741156 0.843731 +226 0.741156 0.868108 +225 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +234 0.741156 0.843731 +235 0.741551 0.843731 +227 0.741551 0.868108 +226 0.741156 0.868108 +SURF 0x10 +mat 1 +refs 4 +235 0.741551 0.843731 +228 0.742628 0.843731 +220 0.742628 0.868108 +227 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +236 0.742925 0.807165 +237 0.744402 0.807165 +229 0.744105 0.843731 +228 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +237 0.744402 0.807165 +238 0.817834 0.807165 +230 0.817834 0.843731 +229 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +239 0.744402 0.807165 +240 0.742925 0.807165 +232 0.742628 0.843731 +231 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +240 0.742925 0.807165 +241 0.741848 0.807165 +233 0.741551 0.843731 +232 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +241 0.741848 0.807165 +242 0.741453 0.807165 +234 0.741156 0.843731 +233 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +242 0.741453 0.807165 +243 0.741848 0.807165 +235 0.741551 0.843731 +234 0.741156 0.843731 +SURF 0x10 +mat 1 +refs 4 +243 0.741848 0.807165 +236 0.742925 0.807165 +228 0.742628 0.843731 +235 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +244 0.74372 0.770599 +245 0.745192 0.770599 +237 0.744402 0.807165 +236 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +245 0.745192 0.770599 +246 0.817834 0.770599 +238 0.817834 0.807165 +237 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +247 0.745192 0.770599 +248 0.74372 0.770599 +240 0.742925 0.807165 +239 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +248 0.74372 0.770599 +249 0.742642 0.770599 +241 0.741848 0.807165 +240 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +249 0.742642 0.770599 +250 0.742243 0.770599 +242 0.741453 0.807165 +241 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +250 0.742243 0.770599 +251 0.742642 0.770599 +243 0.741848 0.807165 +242 0.741453 0.807165 +SURF 0x10 +mat 1 +refs 4 +251 0.742642 0.770599 +244 0.74372 0.770599 +236 0.742925 0.807165 +243 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +252 0.745271 0.721465 +253 0.746743 0.721465 +245 0.745192 0.770599 +244 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +253 0.746743 0.721465 +254 0.817834 0.721465 +246 0.817834 0.770599 +245 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +255 0.746743 0.721465 +256 0.745271 0.721465 +248 0.74372 0.770599 +247 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +256 0.745271 0.721465 +257 0.744189 0.721465 +249 0.742642 0.770599 +248 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +257 0.744189 0.721465 +258 0.743794 0.721465 +250 0.742243 0.770599 +249 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +258 0.743794 0.721465 +259 0.744189 0.721465 +251 0.742642 0.770599 +250 0.742243 0.770599 +SURF 0x10 +mat 1 +refs 4 +259 0.744189 0.721465 +252 0.745271 0.721465 +244 0.74372 0.770599 +251 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +260 0.747612 0.67233 +261 0.749088 0.67233 +253 0.746743 0.721465 +252 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +261 0.749088 0.67233 +262 0.817834 0.67233 +254 0.817834 0.721465 +253 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +263 0.749088 0.67233 +264 0.747612 0.67233 +256 0.745271 0.721465 +255 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +264 0.747612 0.67233 +265 0.746534 0.67233 +257 0.744189 0.721465 +256 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +265 0.746534 0.67233 +266 0.746139 0.67233 +258 0.743794 0.721465 +257 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +266 0.746139 0.67233 +267 0.746534 0.67233 +259 0.744189 0.721465 +258 0.743794 0.721465 +SURF 0x10 +mat 1 +refs 4 +267 0.746534 0.67233 +260 0.747612 0.67233 +252 0.745271 0.721465 +259 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +268 0.751341 0.623196 +269 0.752818 0.623196 +261 0.749088 0.67233 +260 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +269 0.752818 0.623196 +270 0.817834 0.623196 +262 0.817834 0.67233 +261 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +271 0.752818 0.623196 +272 0.751341 0.623196 +264 0.747612 0.67233 +263 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +272 0.751341 0.623196 +273 0.750264 0.623196 +265 0.746534 0.67233 +264 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +273 0.750264 0.623196 +274 0.749869 0.623196 +266 0.746139 0.67233 +265 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +274 0.749869 0.623196 +275 0.750264 0.623196 +267 0.746534 0.67233 +266 0.746139 0.67233 +SURF 0x10 +mat 1 +refs 4 +275 0.750264 0.623196 +268 0.751341 0.623196 +260 0.747612 0.67233 +267 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +276 0.756441 0.574441 +277 0.757917 0.574441 +269 0.752818 0.623196 +268 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +277 0.757917 0.574441 +278 0.817834 0.574441 +270 0.817834 0.623196 +269 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +279 0.757917 0.574441 +280 0.756441 0.574441 +272 0.751341 0.623196 +271 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +280 0.756441 0.574441 +281 0.755363 0.574441 +273 0.750264 0.623196 +272 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +281 0.755363 0.574441 +282 0.754968 0.574441 +274 0.749869 0.623196 +273 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +282 0.754968 0.574441 +283 0.755363 0.574441 +275 0.750264 0.623196 +274 0.749869 0.623196 +SURF 0x10 +mat 1 +refs 4 +283 0.755363 0.574441 +276 0.756441 0.574441 +268 0.751341 0.623196 +275 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +284 0.761939 0.549313 +285 0.763412 0.549313 +277 0.757917 0.574441 +276 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +278 0.817834 0.574441 +277 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +286 0.821188 0.549313 +287 0.82266 0.549313 +288 0.829083 0.574441 +289 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +287 0.82266 0.549313 +290 0.823742 0.549313 +291 0.830165 0.574441 +288 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +290 0.823742 0.549313 +292 0.824137 0.549313 +293 0.83056 0.574441 +291 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +292 0.824137 0.549313 +294 0.823742 0.549313 +295 0.830165 0.574441 +293 0.83056 0.574441 +SURF 0x10 +mat 1 +refs 4 +294 0.823742 0.549313 +296 0.82266 0.549313 +297 0.829083 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +296 0.82266 0.549313 +298 0.821188 0.549313 +299 0.827611 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +300 0.817834 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +301 0.763412 0.549313 +302 0.761939 0.549313 +280 0.756441 0.574441 +279 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +302 0.761939 0.549313 +303 0.760857 0.549313 +281 0.755363 0.574441 +280 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 4 +303 0.760857 0.549313 +304 0.760463 0.549313 +282 0.754968 0.574441 +281 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +304 0.760463 0.549313 +305 0.760857 0.549313 +283 0.755363 0.574441 +282 0.754968 0.574441 +SURF 0x10 +mat 1 +refs 4 +305 0.760857 0.549313 +284 0.761939 0.549313 +276 0.756441 0.574441 +283 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +306 0.770155 0.524936 +307 0.771628 0.524936 +285 0.763412 0.549313 +284 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +307 0.771628 0.524936 +308 0.812689 0.524936 +286 0.821188 0.549313 +285 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +308 0.812689 0.524936 +309 0.814166 0.524936 +287 0.82266 0.549313 +286 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +309 0.814166 0.524936 +310 0.815243 0.524936 +290 0.823742 0.549313 +287 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +310 0.815243 0.524936 +311 0.815638 0.524936 +292 0.824137 0.549313 +290 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +311 0.815638 0.524936 +312 0.815243 0.524936 +294 0.823742 0.549313 +292 0.824137 0.549313 +SURF 0x10 +mat 1 +refs 4 +312 0.815243 0.524936 +313 0.814166 0.524936 +296 0.82266 0.549313 +294 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +313 0.814166 0.524936 +314 0.812689 0.524936 +298 0.821188 0.549313 +296 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +314 0.812689 0.524936 +315 0.771628 0.524936 +301 0.763412 0.549313 +298 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +315 0.771628 0.524936 +316 0.770155 0.524936 +302 0.761939 0.549313 +301 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +316 0.770155 0.524936 +317 0.769073 0.524936 +303 0.760857 0.549313 +302 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +317 0.769073 0.524936 +318 0.768679 0.524936 +304 0.760463 0.549313 +303 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +318 0.768679 0.524936 +319 0.769073 0.524936 +305 0.760857 0.549313 +304 0.760463 0.549313 +SURF 0x10 +mat 1 +refs 4 +319 0.769073 0.524936 +306 0.770155 0.524936 +284 0.761939 0.549313 +305 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +320 0.774479 0.516317 +321 0.775956 0.516317 +307 0.771628 0.524936 +306 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +321 0.775956 0.516317 +322 0.808342 0.516317 +308 0.812689 0.524936 +307 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +322 0.808342 0.516317 +323 0.809814 0.516317 +309 0.814166 0.524936 +308 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +323 0.809814 0.516317 +324 0.810896 0.516317 +310 0.815243 0.524936 +309 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +324 0.810896 0.516317 +325 0.811291 0.516317 +311 0.815638 0.524936 +310 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +325 0.811291 0.516317 +326 0.810896 0.516317 +312 0.815243 0.524936 +311 0.815638 0.524936 +SURF 0x10 +mat 1 +refs 4 +326 0.810896 0.516317 +327 0.809814 0.516317 +313 0.814166 0.524936 +312 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +327 0.809814 0.516317 +328 0.808342 0.516317 +314 0.812689 0.524936 +313 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +328 0.808342 0.516317 +329 0.775956 0.516317 +315 0.771628 0.524936 +314 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +329 0.775956 0.516317 +330 0.774479 0.516317 +316 0.770155 0.524936 +315 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +330 0.774479 0.516317 +331 0.773402 0.516317 +317 0.769073 0.524936 +316 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +331 0.773402 0.516317 +332 0.773007 0.516317 +318 0.768679 0.524936 +317 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +332 0.773007 0.516317 +333 0.773402 0.516317 +319 0.769073 0.524936 +318 0.768679 0.524936 +SURF 0x10 +mat 1 +refs 4 +333 0.773402 0.516317 +320 0.774479 0.516317 +306 0.770155 0.524936 +319 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +334 0.782718 0.504129 +335 0.784195 0.504129 +321 0.775956 0.516317 +320 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +335 0.784195 0.504129 +336 0.799986 0.504129 +322 0.808342 0.516317 +321 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +336 0.799986 0.504129 +337 0.801459 0.504129 +323 0.809814 0.516317 +322 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +337 0.801459 0.504129 +338 0.802541 0.504129 +324 0.810896 0.516317 +323 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +338 0.802541 0.504129 +339 0.802935 0.504129 +325 0.811291 0.516317 +324 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +339 0.802935 0.504129 +340 0.802541 0.504129 +326 0.810896 0.516317 +325 0.811291 0.516317 +SURF 0x10 +mat 1 +refs 4 +340 0.802541 0.504129 +341 0.801459 0.504129 +327 0.809814 0.516317 +326 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +341 0.801459 0.504129 +342 0.799986 0.504129 +328 0.808342 0.516317 +327 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +342 0.799986 0.504129 +343 0.784195 0.504129 +329 0.775956 0.516317 +328 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +343 0.784195 0.504129 +344 0.782718 0.504129 +330 0.774479 0.516317 +329 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +344 0.782718 0.504129 +345 0.781641 0.504129 +331 0.773402 0.516317 +330 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +345 0.781641 0.504129 +346 0.781246 0.504129 +332 0.773007 0.516317 +331 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +346 0.781246 0.504129 +347 0.781641 0.504129 +333 0.773402 0.516317 +332 0.773007 0.516317 +SURF 0x10 +mat 1 +refs 4 +347 0.781641 0.504129 +334 0.782718 0.504129 +320 0.774479 0.516317 +333 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +195 0.789457 0.500498 +348 0.790349 0.502925 +335 0.784195 0.504129 +334 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +348 0.790349 0.502925 +349 0.79308 0.502933 +336 0.799986 0.504129 +335 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +349 0.79308 0.502933 +194 0.793944 0.500461 +337 0.801459 0.504129 +336 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +193 0.794571 0.49865 +338 0.802541 0.504129 +337 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +193 0.794571 0.49865 +350 0.794803 0.497988 +339 0.802935 0.504129 +338 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +350 0.794803 0.497988 +351 0.794571 0.49865 +340 0.802541 0.504129 +339 0.802935 0.504129 +SURF 0x10 +mat 1 +refs 4 +351 0.794571 0.49865 +352 0.793944 0.500461 +341 0.801459 0.504129 +340 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +352 0.793944 0.500461 +353 0.79308 0.502933 +342 0.799986 0.504129 +341 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +353 0.79308 0.502933 +354 0.790349 0.502925 +343 0.784195 0.504129 +342 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +354 0.790349 0.502925 +355 0.789457 0.500498 +344 0.782718 0.504129 +343 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +356 0.788807 0.498722 +345 0.781641 0.504129 +344 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +357 0.788566 0.498072 +346 0.781246 0.504129 +345 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +192 0.788807 0.498722 +347 0.781641 0.504129 +346 0.781246 0.504129 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +195 0.789457 0.500498 +334 0.782718 0.504129 +347 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +349 0.79308 0.502933 +348 0.790349 0.502925 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +357 0.788566 0.498072 +350 0.794803 0.497988 +193 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +356 0.788807 0.498722 +351 0.794571 0.49865 +350 0.794803 0.497988 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +355 0.789457 0.500498 +352 0.793944 0.500461 +351 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +354 0.790349 0.502925 +353 0.79308 0.502933 +352 0.793944 0.500461 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +0 0.744104 0.922959 +3 0.744104 0.941242 +189 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +190 0.817833 0.941242 +13 0.744104 0.941242 +12 0.744104 0.922959 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +358 0.817833 0.922959 +12 0.744104 0.922959 +23 0.744104 0.916865 +359 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +23 0.744104 0.916865 +31 0.744104 0.904676 +360 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +31 0.744104 0.904676 +39 0.744104 0.886393 +361 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +39 0.744104 0.886393 +47 0.744104 0.86811 +362 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +47 0.744104 0.86811 +55 0.744104 0.843733 +363 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +55 0.744104 0.843733 +63 0.744401 0.807167 +364 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +63 0.744401 0.807167 +71 0.745191 0.7706 +365 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +71 0.745191 0.7706 +79 0.746742 0.721467 +366 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +79 0.746742 0.721467 +87 0.749087 0.672332 +367 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +87 0.749087 0.672332 +95 0.752817 0.623198 +368 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +95 0.752817 0.623198 +103 0.757916 0.574443 +123 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +369 0.817834 0.916863 +199 0.744105 0.916863 +187 0.744105 0.922957 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +370 0.817834 0.904674 +207 0.744105 0.904674 +199 0.744105 0.916863 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +371 0.817834 0.886391 +215 0.744105 0.886391 +207 0.744105 0.904674 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +372 0.817834 0.868108 +223 0.744105 0.868108 +215 0.744105 0.886391 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +373 0.817834 0.843731 +231 0.744105 0.843731 +223 0.744105 0.868108 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +374 0.817834 0.807165 +239 0.744402 0.807165 +231 0.744105 0.843731 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +375 0.817834 0.770599 +247 0.745192 0.770599 +239 0.744402 0.807165 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +376 0.817834 0.721465 +255 0.746743 0.721465 +247 0.745192 0.770599 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +377 0.817834 0.67233 +263 0.749088 0.67233 +255 0.746743 0.721465 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +378 0.817834 0.623196 +271 0.752818 0.623196 +263 0.749088 0.67233 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +300 0.817834 0.574441 +279 0.757917 0.574441 +271 0.752818 0.623196 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 3 +286 0.821188 0.549313 +289 0.827611 0.574441 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +286 0.821188 0.549313 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +301 0.763412 0.549313 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +301 0.763412 0.549313 +279 0.757917 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +109 0.82761 0.574443 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +112 0.821187 0.549315 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +125 0.763411 0.549315 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +103 0.757916 0.574443 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +358 0.817833 0.922959 +359 0.817833 0.916865 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 3 +117 0.830164 0.574443 +115 0.830559 0.574443 +113 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +117 0.830164 0.574443 +113 0.830164 0.574443 +110 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +121 0.82761 0.574443 +119 0.829082 0.574443 +110 0.829082 0.574443 +109 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +123 0.817833 0.574443 +121 0.82761 0.574443 +109 0.82761 0.574443 +101 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +123 0.817833 0.574443 +101 0.817833 0.574443 +93 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 3 +291 0.830165 0.574441 +293 0.83056 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +288 0.829083 0.574441 +291 0.830165 0.574441 +295 0.830165 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +289 0.827611 0.574441 +288 0.829083 0.574441 +297 0.829083 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +278 0.817834 0.574441 +289 0.827611 0.574441 +299 0.827611 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +270 0.817834 0.623196 +278 0.817834 0.574441 +300 0.817834 0.574441 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +262 0.817834 0.67233 +270 0.817834 0.623196 +378 0.817834 0.623196 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +254 0.817834 0.721465 +262 0.817834 0.67233 +377 0.817834 0.67233 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +246 0.817834 0.770599 +254 0.817834 0.721465 +376 0.817834 0.721465 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +238 0.817834 0.807165 +246 0.817834 0.770599 +375 0.817834 0.770599 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +230 0.817834 0.843731 +238 0.817834 0.807165 +374 0.817834 0.807165 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.868108 +230 0.817834 0.843731 +373 0.817834 0.843731 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.886391 +222 0.817834 0.868108 +372 0.817834 0.868108 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +206 0.817834 0.904674 +214 0.817834 0.886391 +371 0.817834 0.886391 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +198 0.817834 0.916863 +206 0.817834 0.904674 +370 0.817834 0.904674 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +188 0.817834 0.922957 +198 0.817834 0.916863 +369 0.817834 0.916863 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +189 0.817834 0.94124 +188 0.817834 0.922957 +191 0.817834 0.922957 +190 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +189 0.817833 0.941242 +190 0.817833 0.941242 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +360 0.817833 0.904676 +29 0.817833 0.904676 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +361 0.817833 0.886393 +37 0.817833 0.886393 +29 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +362 0.817833 0.86811 +45 0.817833 0.86811 +37 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +363 0.817833 0.843733 +53 0.817833 0.843733 +45 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +364 0.817833 0.807167 +61 0.817833 0.807167 +53 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +365 0.817833 0.7706 +69 0.817833 0.7706 +61 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +366 0.817833 0.721467 +77 0.817833 0.721467 +69 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +367 0.817833 0.672332 +85 0.817833 0.672332 +77 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +368 0.817833 0.623198 +93 0.817833 0.623198 +85 0.817833 0.672332 +kids 0 +OBJECT poly +name "Elevator" +texture "Rascal.rgb" +numvert 225 +1.75895 0.0452271 -0.01905 +1.76212 0.0460779 -0.01905 +1.76212 0.0460779 3.1865e-16 +1.75895 0.0452271 3.17871e-16 +1.76445 0.0484021 -0.01905 +1.76445 0.0484021 3.1922e-16 +1.7653 0.0515771 -0.01905 +1.7653 0.0515771 3.1943e-16 +1.76445 0.0547521 -0.01905 +1.76445 0.0547521 3.1922e-16 +1.76212 0.0570764 -0.01905 +1.76212 0.0570764 3.1865e-16 +1.75895 0.0579271 -0.01905 +1.75895 0.0579271 3.17871e-16 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 -0.01905 +1.77482 0.0570764 -0.0254 +1.77165 0.0579271 -0.0254 +1.77715 0.0547521 -0.0254 +1.778 0.0515771 -0.0254 +1.77715 0.0484021 -0.0254 +1.77482 0.0460779 -0.0254 +1.77165 0.0452271 -0.0254 +1.7526 0.0452271 -0.0254 +1.80022 0.0570764 -0.0381 +1.79705 0.0579271 -0.0381 +1.80255 0.0547521 -0.0381 +1.8034 0.0515771 -0.0381 +1.80255 0.0484021 -0.0381 +1.80022 0.0460779 -0.0381 +1.79705 0.0452271 -0.0381 +1.7526 0.0452271 -0.0381 +1.81292 0.0570764 -0.05715 +1.80975 0.0579271 -0.05715 +1.81525 0.0547521 -0.05715 +1.8161 0.0515771 -0.05715 +1.81525 0.0484021 -0.05715 +1.81292 0.0460779 -0.05715 +1.80975 0.0452271 -0.05715 +1.7526 0.0452271 -0.05715 +1.81927 0.0570764 -0.0762 +1.8161 0.0579271 -0.0762 +1.8216 0.0547521 -0.0762 +1.82245 0.0515771 -0.0762 +1.8216 0.0484021 -0.0762 +1.81927 0.0460779 -0.0762 +1.8161 0.0452271 -0.0762 +1.7526 0.0452271 -0.0762 +1.82562 0.0570764 -0.1016 +1.82245 0.0579271 -0.1016 +1.82795 0.0547521 -0.1016 +1.8288 0.0515771 -0.1016 +1.82795 0.0484021 -0.1016 +1.82562 0.0460779 -0.1016 +1.82245 0.0452271 -0.1016 +1.7526 0.0452271 -0.1016 +1.82906 0.0570764 -0.1397 +1.82588 0.0579271 -0.1397 +1.83138 0.0547521 -0.1397 +1.83223 0.0515771 -0.1397 +1.83138 0.0484021 -0.1397 +1.82906 0.0460779 -0.1397 +1.82588 0.0452271 -0.1397 +1.7526 0.0452271 -0.1397 +1.82628 0.0570764 -0.1778 +1.8231 0.0579271 -0.1778 +1.8286 0.0547521 -0.1778 +1.82945 0.0515771 -0.1778 +1.8286 0.0484021 -0.1778 +1.82628 0.0460779 -0.1778 +1.8231 0.0452271 -0.1778 +1.7526 0.0452271 -0.1778 +1.81929 0.0570764 -0.228995 +1.81611 0.0579271 -0.228995 +1.82161 0.0547521 -0.228995 +1.82246 0.0515771 -0.228995 +1.82161 0.0484021 -0.228995 +1.81929 0.0460779 -0.228995 +1.81611 0.0452271 -0.228995 +1.7526 0.0452271 -0.228995 +1.80911 0.0570764 -0.280191 +1.80594 0.0579271 -0.280191 +1.81144 0.0547521 -0.280191 +1.81229 0.0515771 -0.280191 +1.81144 0.0484021 -0.280191 +1.80911 0.0460779 -0.280191 +1.80594 0.0452271 -0.280191 +1.7526 0.0452271 -0.280191 +1.79534 0.0570764 -0.331386 +1.79217 0.0579271 -0.331386 +1.79767 0.0547521 -0.331386 +1.79852 0.0515771 -0.331386 +1.79767 0.0484021 -0.331386 +1.79534 0.0460779 -0.331386 +1.79217 0.0452271 -0.331386 +1.7526 0.0452271 -0.331386 +1.77682 0.0570764 -0.382186 +1.77365 0.0579271 -0.382186 +1.77915 0.0547521 -0.382186 +1.78 0.0515771 -0.382186 +1.77915 0.0484021 -0.382186 +1.77682 0.0460779 -0.382186 +1.77365 0.0452271 -0.382186 +1.7526 0.0452271 -0.382186 +1.76212 0.0460779 0.01905 +1.75895 0.0452271 0.01905 +1.76445 0.0484021 0.01905 +1.7653 0.0515771 0.01905 +1.76445 0.0547521 0.01905 +1.76212 0.0570764 0.01905 +1.75895 0.0579271 0.01905 +1.77165 0.0579271 0.0254 +1.77482 0.0570764 0.0254 +1.77715 0.0547521 0.0254 +1.778 0.0515771 0.0254 +1.77715 0.0484021 0.0254 +1.77482 0.0460779 0.0254 +1.77165 0.0452271 0.0254 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.01905 +1.79705 0.0579271 0.0381 +1.80022 0.0570764 0.0381 +1.80255 0.0547521 0.0381 +1.8034 0.0515771 0.0381 +1.80255 0.0484021 0.0381 +1.80022 0.0460779 0.0381 +1.79705 0.0452271 0.0381 +1.7526 0.0452271 0.0381 +1.80975 0.0579271 0.05715 +1.81292 0.0570764 0.05715 +1.81525 0.0547521 0.05715 +1.8161 0.0515771 0.05715 +1.81525 0.0484021 0.05715 +1.81292 0.0460779 0.05715 +1.80975 0.0452271 0.05715 +1.7526 0.0452271 0.05715 +1.8161 0.0579271 0.0762 +1.81927 0.0570764 0.0762 +1.8216 0.0547521 0.0762 +1.82245 0.0515771 0.0762 +1.8216 0.0484021 0.0762 +1.81927 0.0460779 0.0762 +1.8161 0.0452271 0.0762 +1.7526 0.0452271 0.0762 +1.82245 0.0579271 0.1016 +1.82562 0.0570764 0.1016 +1.82795 0.0547521 0.1016 +1.8288 0.0515771 0.1016 +1.82795 0.0484021 0.1016 +1.82562 0.0460779 0.1016 +1.82245 0.0452271 0.1016 +1.7526 0.0452271 0.1016 +1.82588 0.0579271 0.1397 +1.82906 0.0570764 0.1397 +1.83138 0.0547521 0.1397 +1.83223 0.0515771 0.1397 +1.83138 0.0484021 0.1397 +1.82906 0.0460779 0.1397 +1.82588 0.0452271 0.1397 +1.7526 0.0452271 0.1397 +1.8231 0.0579271 0.1778 +1.82628 0.0570764 0.1778 +1.8286 0.0547521 0.1778 +1.82945 0.0515771 0.1778 +1.8286 0.0484021 0.1778 +1.82628 0.0460779 0.1778 +1.8231 0.0452271 0.1778 +1.7526 0.0452271 0.1778 +1.81611 0.0579271 0.228995 +1.81929 0.0570764 0.228995 +1.82161 0.0547521 0.228995 +1.82246 0.0515771 0.228995 +1.82161 0.0484021 0.228995 +1.81929 0.0460779 0.228995 +1.81611 0.0452271 0.228995 +1.7526 0.0452271 0.228995 +1.80594 0.0579271 0.280191 +1.80911 0.0570764 0.280191 +1.81144 0.0547521 0.280191 +1.81229 0.0515771 0.280191 +1.81144 0.0484021 0.280191 +1.80911 0.0460779 0.280191 +1.80594 0.0452271 0.280191 +1.7526 0.0452271 0.280191 +1.79217 0.0579271 0.331386 +1.79534 0.0570764 0.331386 +1.79767 0.0547521 0.331386 +1.79852 0.0515771 0.331386 +1.79767 0.0484021 0.331386 +1.79534 0.0460779 0.331386 +1.79217 0.0452271 0.331386 +1.7526 0.0452271 0.331386 +1.77365 0.0579271 0.382186 +1.77682 0.0570764 0.382186 +1.77915 0.0547521 0.382186 +1.78 0.0515771 0.382186 +1.77915 0.0484021 0.382186 +1.77682 0.0460779 0.382186 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.7526 0.0579271 -0.0254 +1.7526 0.0579271 -0.0381 +1.7526 0.0579271 -0.05715 +1.7526 0.0579271 -0.0762 +1.7526 0.0579271 -0.1016 +1.7526 0.0579271 -0.1397 +1.7526 0.0579271 -0.1778 +1.7526 0.0579271 -0.228995 +1.7526 0.0579271 -0.280191 +1.7526 0.0579271 -0.331386 +1.7526 0.0579271 -0.382186 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 0.0254 +1.7526 0.0579271 0.0381 +1.7526 0.0579271 0.05715 +1.7526 0.0579271 0.0762 +1.7526 0.0579271 0.1016 +1.7526 0.0579271 0.1397 +1.7526 0.0579271 0.1778 +1.7526 0.0579271 0.228995 +1.7526 0.0579271 0.280191 +1.7526 0.0579271 0.331386 +1.7526 0.0579271 0.382186 +numsurf 224 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +1 0.822255 0.922959 +2 0.822255 0.941242 +3 0.820783 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +4 0.823337 0.922959 +5 0.823337 0.941242 +2 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +6 0.823732 0.922959 +7 0.823732 0.941242 +5 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +8 0.823337 0.922959 +9 0.823337 0.941242 +7 0.823732 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +10 0.822255 0.922959 +11 0.822255 0.941242 +9 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +12 0.820783 0.922959 +13 0.820783 0.941242 +11 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +13 0.820783 0.941242 +12 0.820783 0.922959 +14 0.817833 0.922959 +15 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +3 0.820783 0.941242 +16 0.817833 0.941242 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +12 0.820783 0.922959 +10 0.822255 0.922959 +18 0.828153 0.916865 +19 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +8 0.823337 0.922959 +20 0.829235 0.916865 +18 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +6 0.823732 0.922959 +21 0.82963 0.916865 +20 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +4 0.823337 0.922959 +22 0.829235 0.916865 +21 0.82963 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +1 0.822255 0.922959 +23 0.828153 0.916865 +22 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +0 0.820783 0.922959 +24 0.826681 0.916865 +23 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +17 0.817833 0.922959 +25 0.817833 0.916865 +24 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.826681 0.916865 +18 0.828153 0.916865 +26 0.83995 0.904676 +27 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.828153 0.916865 +20 0.829235 0.916865 +28 0.841032 0.904676 +26 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +20 0.829235 0.916865 +21 0.82963 0.916865 +29 0.841427 0.904676 +28 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +21 0.82963 0.916865 +22 0.829235 0.916865 +30 0.841032 0.904676 +29 0.841427 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.829235 0.916865 +23 0.828153 0.916865 +31 0.83995 0.904676 +30 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.828153 0.916865 +24 0.826681 0.916865 +32 0.838478 0.904676 +31 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.826681 0.916865 +25 0.817833 0.916865 +33 0.817833 0.904676 +32 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +27 0.838478 0.904676 +26 0.83995 0.904676 +34 0.845849 0.886393 +35 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +26 0.83995 0.904676 +28 0.841032 0.904676 +36 0.846931 0.886393 +34 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +28 0.841032 0.904676 +29 0.841427 0.904676 +37 0.847325 0.886393 +36 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +29 0.841427 0.904676 +30 0.841032 0.904676 +38 0.846931 0.886393 +37 0.847325 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.841032 0.904676 +31 0.83995 0.904676 +39 0.845849 0.886393 +38 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.83995 0.904676 +32 0.838478 0.904676 +40 0.844376 0.886393 +39 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.838478 0.904676 +33 0.817833 0.904676 +41 0.817833 0.886393 +40 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +35 0.844376 0.886393 +34 0.845849 0.886393 +42 0.848798 0.86811 +43 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +34 0.845849 0.886393 +36 0.846931 0.886393 +44 0.84988 0.86811 +42 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +36 0.846931 0.886393 +37 0.847325 0.886393 +45 0.850275 0.86811 +44 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +37 0.847325 0.886393 +38 0.846931 0.886393 +46 0.84988 0.86811 +45 0.850275 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.846931 0.886393 +39 0.845849 0.886393 +47 0.848798 0.86811 +46 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.845849 0.886393 +40 0.844376 0.886393 +48 0.847325 0.86811 +47 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.844376 0.886393 +41 0.817833 0.886393 +49 0.817833 0.86811 +48 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +43 0.847325 0.86811 +42 0.848798 0.86811 +50 0.851747 0.843733 +51 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +42 0.848798 0.86811 +44 0.84988 0.86811 +52 0.852829 0.843733 +50 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +44 0.84988 0.86811 +45 0.850275 0.86811 +53 0.853224 0.843733 +52 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +45 0.850275 0.86811 +46 0.84988 0.86811 +54 0.852829 0.843733 +53 0.853224 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.84988 0.86811 +47 0.848798 0.86811 +55 0.851747 0.843733 +54 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.848798 0.86811 +48 0.847325 0.86811 +56 0.850275 0.843733 +55 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.847325 0.86811 +49 0.817833 0.86811 +57 0.817833 0.843733 +56 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +51 0.850275 0.843733 +50 0.851747 0.843733 +58 0.853344 0.807167 +59 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +50 0.851747 0.843733 +52 0.852829 0.843733 +60 0.854422 0.807167 +58 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +52 0.852829 0.843733 +53 0.853224 0.843733 +61 0.854817 0.807167 +60 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +53 0.853224 0.843733 +54 0.852829 0.843733 +62 0.854422 0.807167 +61 0.854817 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.852829 0.843733 +55 0.851747 0.843733 +63 0.853344 0.807167 +62 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.851747 0.843733 +56 0.850275 0.843733 +64 0.851868 0.807167 +63 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.850275 0.843733 +57 0.817833 0.843733 +65 0.817833 0.807167 +64 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +59 0.851868 0.807167 +58 0.853344 0.807167 +66 0.852053 0.7706 +67 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +58 0.853344 0.807167 +60 0.854422 0.807167 +68 0.853131 0.7706 +66 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +60 0.854422 0.807167 +61 0.854817 0.807167 +69 0.853526 0.7706 +68 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +61 0.854817 0.807167 +62 0.854422 0.807167 +70 0.853131 0.7706 +69 0.853526 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.854422 0.807167 +63 0.853344 0.807167 +71 0.852053 0.7706 +70 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.853344 0.807167 +64 0.851868 0.807167 +72 0.850576 0.7706 +71 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.851868 0.807167 +65 0.817833 0.807167 +73 0.817833 0.7706 +72 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +67 0.850576 0.7706 +66 0.852053 0.7706 +74 0.848807 0.721467 +75 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +66 0.852053 0.7706 +68 0.853131 0.7706 +76 0.849884 0.721467 +74 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +68 0.853131 0.7706 +69 0.853526 0.7706 +77 0.850279 0.721467 +76 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +69 0.853526 0.7706 +70 0.853131 0.7706 +78 0.849884 0.721467 +77 0.850279 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.853131 0.7706 +71 0.852053 0.7706 +79 0.848807 0.721467 +78 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.852053 0.7706 +72 0.850576 0.7706 +80 0.84733 0.721467 +79 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.850576 0.7706 +73 0.817833 0.7706 +81 0.817833 0.721467 +80 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +75 0.84733 0.721467 +74 0.848807 0.721467 +82 0.844079 0.672332 +83 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +74 0.848807 0.721467 +76 0.849884 0.721467 +84 0.845161 0.672332 +82 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +76 0.849884 0.721467 +77 0.850279 0.721467 +85 0.845556 0.672332 +84 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +77 0.850279 0.721467 +78 0.849884 0.721467 +86 0.845161 0.672332 +85 0.845556 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.849884 0.721467 +79 0.848807 0.721467 +87 0.844079 0.672332 +86 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.848807 0.721467 +80 0.84733 0.721467 +88 0.842607 0.672332 +87 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.84733 0.721467 +81 0.817833 0.721467 +89 0.817833 0.672332 +88 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +83 0.842607 0.672332 +82 0.844079 0.672332 +90 0.837684 0.623198 +91 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +82 0.844079 0.672332 +84 0.845161 0.672332 +92 0.838766 0.623198 +90 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +84 0.845161 0.672332 +85 0.845556 0.672332 +93 0.839161 0.623198 +92 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +85 0.845556 0.672332 +86 0.845161 0.672332 +94 0.838766 0.623198 +93 0.839161 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.845161 0.672332 +87 0.844079 0.672332 +95 0.837684 0.623198 +94 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.844079 0.672332 +88 0.842607 0.672332 +96 0.836211 0.623198 +95 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.842607 0.672332 +89 0.817833 0.672332 +97 0.817833 0.623198 +96 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +91 0.836211 0.623198 +90 0.837684 0.623198 +98 0.829082 0.574443 +99 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +90 0.837684 0.623198 +92 0.838766 0.623198 +100 0.830164 0.574443 +98 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +92 0.838766 0.623198 +93 0.839161 0.623198 +101 0.830559 0.574443 +100 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +93 0.839161 0.623198 +94 0.838766 0.623198 +102 0.830164 0.574443 +101 0.830559 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.838766 0.623198 +95 0.837684 0.623198 +103 0.829082 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.837684 0.623198 +96 0.836211 0.623198 +104 0.82761 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.836211 0.623198 +97 0.817833 0.623198 +105 0.817833 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +3 0.820784 0.94124 +2 0.822256 0.94124 +106 0.822256 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.822256 0.94124 +5 0.823338 0.94124 +108 0.823338 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.823338 0.94124 +7 0.823733 0.94124 +109 0.823733 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.823733 0.94124 +9 0.823338 0.94124 +110 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.823338 0.94124 +11 0.822256 0.94124 +111 0.822256 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.822256 0.94124 +13 0.820784 0.94124 +112 0.820784 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +113 0.826682 0.916863 +114 0.828154 0.916863 +111 0.822256 0.922957 +112 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +114 0.828154 0.916863 +115 0.829237 0.916863 +110 0.823338 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +115 0.829237 0.916863 +116 0.829631 0.916863 +109 0.823733 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +116 0.829631 0.916863 +117 0.829237 0.916863 +108 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +117 0.829237 0.916863 +118 0.828154 0.916863 +106 0.822256 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +118 0.828154 0.916863 +119 0.826682 0.916863 +107 0.820784 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +119 0.826682 0.916863 +120 0.817834 0.916863 +121 0.817834 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +122 0.838479 0.904674 +123 0.839951 0.904674 +114 0.828154 0.916863 +113 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +123 0.839951 0.904674 +124 0.841033 0.904674 +115 0.829237 0.916863 +114 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +124 0.841033 0.904674 +125 0.841428 0.904674 +116 0.829631 0.916863 +115 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +125 0.841428 0.904674 +126 0.841033 0.904674 +117 0.829237 0.916863 +116 0.829631 0.916863 +SURF 0x10 +mat 1 +refs 4 +126 0.841033 0.904674 +127 0.839951 0.904674 +118 0.828154 0.916863 +117 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +127 0.839951 0.904674 +128 0.838479 0.904674 +119 0.826682 0.916863 +118 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +128 0.838479 0.904674 +129 0.817834 0.904674 +120 0.817834 0.916863 +119 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +130 0.844377 0.886391 +131 0.845849 0.886391 +123 0.839951 0.904674 +122 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +131 0.845849 0.886391 +132 0.846932 0.886391 +124 0.841033 0.904674 +123 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +132 0.846932 0.886391 +133 0.847326 0.886391 +125 0.841428 0.904674 +124 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +133 0.847326 0.886391 +134 0.846932 0.886391 +126 0.841033 0.904674 +125 0.841428 0.904674 +SURF 0x10 +mat 1 +refs 4 +134 0.846932 0.886391 +135 0.845849 0.886391 +127 0.839951 0.904674 +126 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +135 0.845849 0.886391 +136 0.844377 0.886391 +128 0.838479 0.904674 +127 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +136 0.844377 0.886391 +137 0.817834 0.886391 +129 0.817834 0.904674 +128 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +138 0.847326 0.868108 +139 0.848799 0.868108 +131 0.845849 0.886391 +130 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +139 0.848799 0.868108 +140 0.849881 0.868108 +132 0.846932 0.886391 +131 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +140 0.849881 0.868108 +141 0.850276 0.868108 +133 0.847326 0.886391 +132 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +141 0.850276 0.868108 +142 0.849881 0.868108 +134 0.846932 0.886391 +133 0.847326 0.886391 +SURF 0x10 +mat 1 +refs 4 +142 0.849881 0.868108 +143 0.848799 0.868108 +135 0.845849 0.886391 +134 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +143 0.848799 0.868108 +144 0.847326 0.868108 +136 0.844377 0.886391 +135 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +144 0.847326 0.868108 +145 0.817834 0.868108 +137 0.817834 0.886391 +136 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +146 0.850276 0.843731 +147 0.851748 0.843731 +139 0.848799 0.868108 +138 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +147 0.851748 0.843731 +148 0.85283 0.843731 +140 0.849881 0.868108 +139 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +148 0.85283 0.843731 +149 0.853225 0.843731 +141 0.850276 0.868108 +140 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +149 0.853225 0.843731 +150 0.85283 0.843731 +142 0.849881 0.868108 +141 0.850276 0.868108 +SURF 0x10 +mat 1 +refs 4 +150 0.85283 0.843731 +151 0.851748 0.843731 +143 0.848799 0.868108 +142 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +151 0.851748 0.843731 +152 0.850276 0.843731 +144 0.847326 0.868108 +143 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +152 0.850276 0.843731 +153 0.817834 0.843731 +145 0.817834 0.868108 +144 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +154 0.851869 0.807165 +155 0.853345 0.807165 +147 0.851748 0.843731 +146 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +155 0.853345 0.807165 +156 0.854423 0.807165 +148 0.85283 0.843731 +147 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +156 0.854423 0.807165 +157 0.854818 0.807165 +149 0.853225 0.843731 +148 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +157 0.854818 0.807165 +158 0.854423 0.807165 +150 0.85283 0.843731 +149 0.853225 0.843731 +SURF 0x10 +mat 1 +refs 4 +158 0.854423 0.807165 +159 0.853345 0.807165 +151 0.851748 0.843731 +150 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +159 0.853345 0.807165 +160 0.851869 0.807165 +152 0.850276 0.843731 +151 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +160 0.851869 0.807165 +161 0.817834 0.807165 +153 0.817834 0.843731 +152 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +162 0.850577 0.770599 +163 0.852054 0.770599 +155 0.853345 0.807165 +154 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +163 0.852054 0.770599 +164 0.853132 0.770599 +156 0.854423 0.807165 +155 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +164 0.853132 0.770599 +165 0.853527 0.770599 +157 0.854818 0.807165 +156 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +165 0.853527 0.770599 +166 0.853132 0.770599 +158 0.854423 0.807165 +157 0.854818 0.807165 +SURF 0x10 +mat 1 +refs 4 +166 0.853132 0.770599 +167 0.852054 0.770599 +159 0.853345 0.807165 +158 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +167 0.852054 0.770599 +168 0.850577 0.770599 +160 0.851869 0.807165 +159 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +168 0.850577 0.770599 +169 0.817834 0.770599 +161 0.817834 0.807165 +160 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +170 0.847331 0.721465 +171 0.848808 0.721465 +163 0.852054 0.770599 +162 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +171 0.848808 0.721465 +172 0.849885 0.721465 +164 0.853132 0.770599 +163 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +172 0.849885 0.721465 +173 0.85028 0.721465 +165 0.853527 0.770599 +164 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +173 0.85028 0.721465 +174 0.849885 0.721465 +166 0.853132 0.770599 +165 0.853527 0.770599 +SURF 0x10 +mat 1 +refs 4 +174 0.849885 0.721465 +175 0.848808 0.721465 +167 0.852054 0.770599 +166 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +175 0.848808 0.721465 +176 0.847331 0.721465 +168 0.850577 0.770599 +167 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +176 0.847331 0.721465 +177 0.817834 0.721465 +169 0.817834 0.770599 +168 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +178 0.842608 0.67233 +179 0.84408 0.67233 +171 0.848808 0.721465 +170 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +179 0.84408 0.67233 +180 0.845162 0.67233 +172 0.849885 0.721465 +171 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +180 0.845162 0.67233 +181 0.845557 0.67233 +173 0.85028 0.721465 +172 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +181 0.845557 0.67233 +182 0.845162 0.67233 +174 0.849885 0.721465 +173 0.85028 0.721465 +SURF 0x10 +mat 1 +refs 4 +182 0.845162 0.67233 +183 0.84408 0.67233 +175 0.848808 0.721465 +174 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +183 0.84408 0.67233 +184 0.842608 0.67233 +176 0.847331 0.721465 +175 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +184 0.842608 0.67233 +185 0.817834 0.67233 +177 0.817834 0.721465 +176 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +186 0.836212 0.623196 +187 0.837685 0.623196 +179 0.84408 0.67233 +178 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +187 0.837685 0.623196 +188 0.838767 0.623196 +180 0.845162 0.67233 +179 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +188 0.838767 0.623196 +189 0.839162 0.623196 +181 0.845557 0.67233 +180 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +189 0.839162 0.623196 +190 0.838767 0.623196 +182 0.845162 0.67233 +181 0.845557 0.67233 +SURF 0x10 +mat 1 +refs 4 +190 0.838767 0.623196 +191 0.837685 0.623196 +183 0.84408 0.67233 +182 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +191 0.837685 0.623196 +192 0.836212 0.623196 +184 0.842608 0.67233 +183 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +192 0.836212 0.623196 +193 0.817834 0.623196 +185 0.817834 0.67233 +184 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +194 0.827611 0.574441 +195 0.829083 0.574441 +187 0.837685 0.623196 +186 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +195 0.829083 0.574441 +196 0.830165 0.574441 +188 0.838767 0.623196 +187 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +196 0.830165 0.574441 +197 0.83056 0.574441 +189 0.839162 0.623196 +188 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +197 0.83056 0.574441 +198 0.830165 0.574441 +190 0.838767 0.623196 +189 0.839162 0.623196 +SURF 0x10 +mat 1 +refs 4 +198 0.830165 0.574441 +199 0.829083 0.574441 +191 0.837685 0.623196 +190 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +200 0.827611 0.574441 +192 0.836212 0.623196 +191 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +201 0.817834 0.574441 +193 0.817834 0.623196 +192 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +12 0.820783 0.922959 +19 0.826681 0.916865 +202 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +19 0.826681 0.916865 +27 0.838478 0.904676 +203 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +27 0.838478 0.904676 +35 0.844376 0.886393 +204 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +35 0.844376 0.886393 +43 0.847325 0.86811 +205 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +43 0.847325 0.86811 +51 0.850275 0.843733 +206 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +51 0.850275 0.843733 +59 0.851868 0.807167 +207 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +59 0.851868 0.807167 +67 0.850576 0.7706 +208 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +67 0.850576 0.7706 +75 0.84733 0.721467 +209 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +75 0.84733 0.721467 +83 0.842607 0.672332 +210 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +83 0.842607 0.672332 +91 0.836211 0.623198 +211 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +91 0.836211 0.623198 +99 0.82761 0.574443 +212 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +213 0.817834 0.922957 +112 0.820784 0.922957 +13 0.820784 0.94124 +15 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +16 0.817834 0.94124 +3 0.820784 0.94124 +107 0.820784 0.922957 +121 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.916863 +113 0.826682 0.916863 +112 0.820784 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +215 0.817834 0.904674 +122 0.838479 0.904674 +113 0.826682 0.916863 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +216 0.817834 0.886391 +130 0.844377 0.886391 +122 0.838479 0.904674 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.817834 0.868108 +138 0.847326 0.868108 +130 0.844377 0.886391 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +218 0.817834 0.843731 +146 0.850276 0.843731 +138 0.847326 0.868108 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +219 0.817834 0.807165 +154 0.851869 0.807165 +146 0.850276 0.843731 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +220 0.817834 0.770599 +162 0.850577 0.770599 +154 0.851869 0.807165 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +221 0.817834 0.721465 +170 0.847331 0.721465 +162 0.850577 0.770599 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.67233 +178 0.842608 0.67233 +170 0.847331 0.721465 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +223 0.817834 0.623196 +186 0.836212 0.623196 +178 0.842608 0.67233 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +224 0.817834 0.574441 +194 0.827611 0.574441 +186 0.836212 0.623196 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +15 0.817834 0.94124 +16 0.817834 0.94124 +121 0.817834 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +212 0.817833 0.574443 +99 0.82761 0.574443 +104 0.82761 0.574443 +105 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 3 +100 0.830164 0.574443 +101 0.830559 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.829082 0.574443 +100 0.830164 0.574443 +102 0.830164 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +99 0.82761 0.574443 +98 0.829082 0.574443 +103 0.829082 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +212 0.817833 0.574443 +105 0.817833 0.574443 +97 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +211 0.817833 0.623198 +97 0.817833 0.623198 +89 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +210 0.817833 0.672332 +89 0.817833 0.672332 +81 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +209 0.817833 0.721467 +81 0.817833 0.721467 +73 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +208 0.817833 0.7706 +73 0.817833 0.7706 +65 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +207 0.817833 0.807167 +65 0.817833 0.807167 +57 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +206 0.817833 0.843733 +57 0.817833 0.843733 +49 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +205 0.817833 0.86811 +49 0.817833 0.86811 +41 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +204 0.817833 0.886393 +41 0.817833 0.886393 +33 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +203 0.817833 0.904676 +33 0.817833 0.904676 +25 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +202 0.817833 0.916865 +25 0.817833 0.916865 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +15 0.817833 0.941242 +14 0.817833 0.922959 +17 0.817833 0.922959 +16 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +121 0.817834 0.922957 +120 0.817834 0.916863 +214 0.817834 0.916863 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +120 0.817834 0.916863 +129 0.817834 0.904674 +215 0.817834 0.904674 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +129 0.817834 0.904674 +137 0.817834 0.886391 +216 0.817834 0.886391 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +137 0.817834 0.886391 +145 0.817834 0.868108 +217 0.817834 0.868108 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +145 0.817834 0.868108 +153 0.817834 0.843731 +218 0.817834 0.843731 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +153 0.817834 0.843731 +161 0.817834 0.807165 +219 0.817834 0.807165 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +161 0.817834 0.807165 +169 0.817834 0.770599 +220 0.817834 0.770599 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +169 0.817834 0.770599 +177 0.817834 0.721465 +221 0.817834 0.721465 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +177 0.817834 0.721465 +185 0.817834 0.67233 +222 0.817834 0.67233 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +185 0.817834 0.67233 +193 0.817834 0.623196 +223 0.817834 0.623196 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +193 0.817834 0.623196 +201 0.817834 0.574441 +224 0.817834 0.574441 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +201 0.817834 0.574441 +200 0.827611 0.574441 +194 0.827611 0.574441 +224 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +199 0.829083 0.574441 +195 0.829083 0.574441 +194 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +198 0.830165 0.574441 +196 0.830165 0.574441 +195 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +198 0.830165 0.574441 +197 0.83056 0.574441 +196 0.830165 0.574441 +kids 0 +OBJECT poly +name "Fin" +texture "Rascal.rgb" +numvert 204 +1.73613 0.33416 0.00549926 +1.74579 0.334193 0.00549926 +1.74714 0.335765 0.003175 +1.73473 0.335703 0.003175 +1.5718 -0.0493484 0.00549926 +1.57498 -0.0493484 0.00635 +1.57498 -0.0429984 0.00635 +1.5718 -0.0429984 0.00549926 +1.74008 -0.0493484 0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.74325 -0.0493484 0.00549926 +1.7526 -0.0473896 0.00549926 +1.74558 -0.0493484 0.003175 +1.7526 -0.0478767 0.003175 +1.74643 -0.0493484 9.27603e-17 +1.7526 -0.048055 9.42714e-17 +1.74558 -0.0493484 -0.003175 +1.7526 -0.0478767 -0.003175 +1.74325 -0.0493484 -0.00549926 +1.7526 -0.0473896 -0.00549926 +1.74008 -0.0493484 -0.00635 +1.7526 -0.0467241 -0.00635 +1.57498 -0.0493484 -0.00635 +1.57498 -0.0429984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.5718 -0.0493484 -0.00549926 +1.5718 -0.0429984 -0.00549926 +1.56948 -0.0493484 -0.003175 +1.56948 -0.0429984 -0.003175 +1.56863 -0.0493484 7.69716e-17 +1.56863 -0.0429984 9.08494e-17 +1.56948 -0.0493484 0.003175 +1.56948 -0.0429984 0.003175 +1.57498 -0.0302984 0.00635 +1.5718 -0.0302984 0.00549926 +1.7526 -0.0302984 0.00635 +1.5718 -0.0302984 -0.00549926 +1.57498 -0.0302984 -0.00635 +1.56948 -0.0302984 -0.003175 +1.56863 -0.0302984 1.04727e-16 +1.56948 -0.0302984 0.003175 +1.57498 -0.0112484 0.00635 +1.5718 -0.0112484 0.00549926 +1.7526 -0.0112484 0.00635 +1.5718 -0.0112484 -0.00549926 +1.57498 -0.0112484 -0.00635 +1.56948 -0.0112484 -0.003175 +1.56863 -0.0112484 1.18605e-16 +1.56948 -0.0112484 0.003175 +1.57498 0.00780156 0.00635 +1.5718 0.00780156 0.00549926 +1.7526 0.00780156 0.00635 +1.5718 0.00780156 -0.00549926 +1.57498 0.00780156 -0.00635 +1.56948 0.00780156 -0.003175 +1.56863 0.00780156 1.46361e-16 +1.56948 0.00780156 0.003175 +1.57498 0.0332016 0.00635 +1.5718 0.0332016 0.00549926 +1.7526 0.0332016 0.00635 +1.5718 0.0332016 -0.00549926 +1.57498 0.0332016 -0.00635 +1.56948 0.0332016 -0.003175 +1.56863 0.0332016 2.01872e-16 +1.56948 0.0332016 0.003175 +1.47999 0.0670341 0.00635 +1.47681 0.0670341 0.00549926 +1.7526 0.0676649 0.00635 +1.47681 0.0670341 -0.00549926 +1.47999 0.0670341 -0.00635 +1.47449 0.0670341 -0.003175 +1.47364 0.0670341 2.61872e-16 +1.47449 0.0670341 0.003175 +1.56201 0.08255 0.00635 +1.55884 0.08255 0.00549926 +1.7526 0.0996346 0.00635 +1.58561 0.0996346 0.00635 +1.55884 0.08255 -0.00549926 +1.56201 0.08255 -0.00635 +1.55651 0.08255 -0.003175 +1.55566 0.08255 3.16655e-16 +1.55651 0.08255 0.003175 +1.58244 0.0996346 0.00549926 +1.60643 0.142297 0.00635 +1.60326 0.142297 0.00549926 +1.7526 0.142297 0.00635 +1.58561 0.0996346 -0.00635 +1.58244 0.0996346 -0.00549926 +1.60326 0.142297 -0.00549926 +1.60643 0.142297 -0.00635 +1.58011 0.0996346 -0.003175 +1.60093 0.142297 -0.003175 +1.57926 0.0996346 3.71007e-16 +1.60008 0.142297 4.87129e-16 +1.58011 0.0996346 0.003175 +1.60093 0.142297 0.003175 +1.62752 0.18496 0.00635 +1.62434 0.18496 0.00549926 +1.7526 0.18496 0.00635 +1.62434 0.18496 -0.00549926 +1.62752 0.18496 -0.00635 +1.62202 0.18496 -0.003175 +1.62117 0.18496 6.03314e-16 +1.62202 0.18496 0.003175 +1.64695 0.227623 0.00635 +1.64377 0.227623 0.00549926 +1.7526 0.227623 0.00635 +1.64377 0.227623 -0.00549926 +1.64695 0.227623 -0.00635 +1.64145 0.227623 -0.003175 +1.6406 0.227623 7.32975e-16 +1.64145 0.227623 0.003175 +1.66962 0.269956 0.00635 +1.66644 0.269956 0.00549926 +1.7526 0.269956 0.00635 +1.66644 0.269956 -0.00549926 +1.66962 0.269956 -0.00635 +1.66412 0.269956 -0.003175 +1.66327 0.269956 8.4955e-16 +1.66412 0.269956 0.003175 +1.68421 0.291774 0.00635 +1.68104 0.291774 0.00549926 +1.80011 0.269956 0.00635 +1.80328 0.269956 0.00549926 +1.79409 0.291774 0.00549926 +1.79092 0.291774 0.00635 +1.8056 0.269956 0.003175 +1.79642 0.291774 0.003175 +1.80646 0.269956 8.42988e-16 +1.79727 0.291774 8.96246e-16 +1.8056 0.269956 -0.003175 +1.79642 0.291774 -0.003175 +1.80328 0.269956 -0.00549926 +1.79409 0.291774 -0.00549926 +1.80011 0.269956 -0.00635 +1.79092 0.291774 -0.00635 +1.7526 0.269956 -0.00635 +1.68104 0.291774 -0.00549926 +1.68421 0.291774 -0.00635 +1.67872 0.291774 -0.003175 +1.67786 0.291774 8.87819e-16 +1.67872 0.291774 0.003175 +1.70051 0.312941 0.00635 +1.69733 0.312941 0.00549926 +1.77784 0.312941 0.00635 +1.78102 0.312941 0.00549926 +1.78334 0.312941 0.003175 +1.78419 0.312941 9.48555e-16 +1.78334 0.312941 -0.003175 +1.78102 0.312941 -0.00549926 +1.77784 0.312941 -0.00635 +1.70051 0.312941 -0.00635 +1.69733 0.312941 -0.00549926 +1.69501 0.312941 -0.003175 +1.69416 0.312941 9.54261e-16 +1.69501 0.312941 0.003175 +1.70982 0.320425 0.00635 +1.70664 0.320425 0.00549926 +1.77103 0.320425 0.00635 +1.77421 0.320425 0.00549926 +1.77653 0.320425 0.003175 +1.77738 0.320425 9.60766e-16 +1.77653 0.320425 -0.003175 +1.77421 0.320425 -0.00549926 +1.77103 0.320425 -0.00635 +1.70982 0.320425 -0.00635 +1.70664 0.320425 -0.00549926 +1.70432 0.320425 -0.003175 +1.70347 0.320425 9.70419e-16 +1.70432 0.320425 0.003175 +1.7248 0.331008 0.00635 +1.72162 0.331008 0.00549926 +1.7588 0.331008 0.00635 +1.76197 0.331008 0.00549926 +1.7643 0.331008 0.003175 +1.76515 0.331008 9.85526e-16 +1.7643 0.331008 -0.003175 +1.76197 0.331008 -0.00549926 +1.7588 0.331008 -0.00635 +1.7248 0.331008 -0.00635 +1.72162 0.331008 -0.00549926 +1.7193 0.331008 -0.003175 +1.71845 0.331008 1.00184e-15 +1.7193 0.331008 0.003175 +1.73805 0.332053 0.00635 +1.74393 0.332046 0.00635 +1.74764 0.336341 9.95115e-16 +1.74714 0.335765 -0.003175 +1.74579 0.334193 -0.00549926 +1.74393 0.332046 -0.00635 +1.73805 0.332053 -0.00635 +1.73613 0.33416 -0.00549926 +1.73473 0.335703 -0.003175 +1.73421 0.336267 1.0057e-15 +1.7526 -0.0302984 -0.00635 +1.7526 -0.0112484 -0.00635 +1.7526 0.00780156 -0.00635 +1.7526 0.0332016 -0.00635 +1.7526 0.0676649 -0.00635 +1.7526 0.0996346 -0.00635 +1.7526 0.142297 -0.00635 +1.7526 0.18496 -0.00635 +1.7526 0.227623 -0.00635 +numsurf 202 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +1 0.900578 0.588527 +2 0.90123 0.590037 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +4 0.816575 0.220192 +5 0.81811 0.220192 +6 0.81811 0.22629 +7 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 5 +5 0.81811 0.220192 +8 0.897821 0.229292 +9 0.903866 0.222712 +10 0.903866 0.22629 +6 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +8 0.897821 0.229292 +11 0.899352 0.229292 +12 0.903866 0.222073 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +11 0.899352 0.229292 +13 0.900477 0.229292 +14 0.903866 0.221605 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +13 0.900477 0.229292 +15 0.900887 0.229292 +16 0.903866 0.221434 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +15 0.900887 0.229292 +17 0.900477 0.229292 +18 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +17 0.900477 0.229292 +19 0.899352 0.229292 +20 0.903866 0.222073 +18 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +19 0.899352 0.229292 +21 0.897821 0.229292 +22 0.903866 0.222712 +20 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 5 +21 0.897821 0.229292 +23 0.81811 0.220192 +24 0.81811 0.22629 +25 0.903866 0.22629 +22 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +23 0.81811 0.220192 +26 0.816575 0.220192 +27 0.816575 0.22629 +24 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +26 0.816575 0.220192 +28 0.815455 0.220192 +29 0.815455 0.22629 +27 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 4 +28 0.815455 0.220192 +30 0.815044 0.220192 +31 0.815044 0.22629 +29 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +30 0.815044 0.220192 +32 0.815455 0.220192 +33 0.815455 0.22629 +31 0.815044 0.22629 +SURF 0x10 +mat 1 +refs 4 +32 0.815455 0.220192 +4 0.816575 0.220192 +7 0.816575 0.22629 +33 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +7 0.816575 0.22629 +6 0.81811 0.22629 +34 0.81811 0.238487 +35 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.81811 0.22629 +10 0.903866 0.22629 +36 0.903866 0.238487 +34 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +24 0.81811 0.22629 +27 0.816575 0.22629 +37 0.816575 0.238487 +38 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +27 0.816575 0.22629 +29 0.815455 0.22629 +39 0.815455 0.238487 +37 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +29 0.815455 0.22629 +31 0.815044 0.22629 +40 0.815044 0.238487 +39 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +31 0.815044 0.22629 +33 0.815455 0.22629 +41 0.815455 0.238487 +40 0.815044 0.238487 +SURF 0x10 +mat 1 +refs 4 +33 0.815455 0.22629 +7 0.816575 0.22629 +35 0.816575 0.238487 +41 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +35 0.816575 0.238487 +34 0.81811 0.238487 +42 0.81811 0.256781 +43 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +34 0.81811 0.238487 +36 0.903866 0.238487 +44 0.903866 0.256781 +42 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +38 0.81811 0.238487 +37 0.816575 0.238487 +45 0.816575 0.256781 +46 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +37 0.816575 0.238487 +39 0.815455 0.238487 +47 0.815455 0.256781 +45 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +39 0.815455 0.238487 +40 0.815044 0.238487 +48 0.815044 0.256781 +47 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +40 0.815044 0.238487 +41 0.815455 0.238487 +49 0.815455 0.256781 +48 0.815044 0.256781 +SURF 0x10 +mat 1 +refs 4 +41 0.815455 0.238487 +35 0.816575 0.238487 +43 0.816575 0.256781 +49 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +43 0.816575 0.256781 +42 0.81811 0.256781 +50 0.81811 0.275076 +51 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +42 0.81811 0.256781 +44 0.903866 0.256781 +52 0.903866 0.275076 +50 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +46 0.81811 0.256781 +45 0.816575 0.256781 +53 0.816575 0.275076 +54 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +45 0.816575 0.256781 +47 0.815455 0.256781 +55 0.815455 0.275076 +53 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +47 0.815455 0.256781 +48 0.815044 0.256781 +56 0.815044 0.275076 +55 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +48 0.815044 0.256781 +49 0.815455 0.256781 +57 0.815455 0.275076 +56 0.815044 0.275076 +SURF 0x10 +mat 1 +refs 4 +49 0.815455 0.256781 +43 0.816575 0.256781 +51 0.816575 0.275076 +57 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +51 0.816575 0.275076 +50 0.81811 0.275076 +58 0.81811 0.299469 +59 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +50 0.81811 0.275076 +52 0.903866 0.275076 +60 0.903866 0.299469 +58 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +54 0.81811 0.275076 +53 0.816575 0.275076 +61 0.816575 0.299469 +62 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +53 0.816575 0.275076 +55 0.815455 0.275076 +63 0.815455 0.299469 +61 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +55 0.815455 0.275076 +56 0.815044 0.275076 +64 0.815044 0.299469 +63 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +56 0.815044 0.275076 +57 0.815455 0.275076 +65 0.815455 0.299469 +64 0.815044 0.299469 +SURF 0x10 +mat 1 +refs 4 +57 0.815455 0.275076 +51 0.816575 0.275076 +59 0.816575 0.299469 +65 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +59 0.816575 0.299469 +58 0.81811 0.299469 +66 0.772318 0.328378 +67 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +58 0.81811 0.299469 +60 0.903866 0.299469 +68 0.903866 0.332566 +66 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +62 0.81811 0.299469 +61 0.816575 0.299469 +69 0.770783 0.328378 +70 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +61 0.816575 0.299469 +63 0.815455 0.299469 +71 0.769663 0.328378 +69 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +63 0.815455 0.299469 +64 0.815044 0.299469 +72 0.769252 0.328378 +71 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +64 0.815044 0.299469 +65 0.815455 0.299469 +73 0.769663 0.328378 +72 0.769252 0.328378 +SURF 0x10 +mat 1 +refs 4 +65 0.815455 0.299469 +59 0.816575 0.299469 +67 0.770783 0.328378 +73 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +67 0.770783 0.328378 +66 0.772318 0.328378 +74 0.812184 0.346439 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 5 +66 0.772318 0.328378 +68 0.903866 0.332566 +76 0.903866 0.363268 +77 0.823228 0.363268 +74 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +70 0.772318 0.328378 +69 0.770783 0.328378 +78 0.811462 0.346439 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +69 0.770783 0.328378 +71 0.769663 0.328378 +80 0.810931 0.346439 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +71 0.769663 0.328378 +72 0.769252 0.328378 +81 0.810737 0.346439 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +72 0.769252 0.328378 +73 0.769663 0.328378 +82 0.810931 0.346439 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +73 0.769663 0.328378 +67 0.770783 0.328378 +75 0.811462 0.346439 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +83 0.822787 0.363268 +77 0.823228 0.363268 +84 0.833294 0.404239 +85 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +77 0.823228 0.363268 +76 0.903866 0.363268 +86 0.903866 0.404239 +84 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +87 0.823228 0.363268 +88 0.822787 0.363268 +89 0.831757 0.404239 +90 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +88 0.822787 0.363268 +91 0.822462 0.363268 +92 0.831716 0.404239 +89 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +91 0.822462 0.363268 +93 0.822344 0.363268 +94 0.8317 0.404239 +92 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +93 0.822344 0.363268 +95 0.822462 0.363268 +96 0.831716 0.404239 +94 0.8317 0.404239 +SURF 0x10 +mat 1 +refs 4 +95 0.822462 0.363268 +83 0.822787 0.363268 +85 0.831757 0.404239 +96 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +85 0.831757 0.404239 +84 0.833294 0.404239 +97 0.843477 0.44521 +98 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +84 0.833294 0.404239 +86 0.903866 0.404239 +99 0.903866 0.44521 +97 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +90 0.833294 0.404239 +89 0.831757 0.404239 +100 0.842013 0.44521 +101 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +89 0.831757 0.404239 +92 0.831716 0.404239 +102 0.842013 0.44521 +100 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +92 0.831716 0.404239 +94 0.8317 0.404239 +103 0.842013 0.44521 +102 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +94 0.8317 0.404239 +96 0.831716 0.404239 +104 0.842013 0.44521 +103 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +96 0.831716 0.404239 +85 0.831757 0.404239 +98 0.842013 0.44521 +104 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +98 0.842013 0.44521 +97 0.843477 0.44521 +105 0.852858 0.486182 +106 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +97 0.843477 0.44521 +99 0.903866 0.44521 +107 0.903866 0.486182 +105 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +101 0.843477 0.44521 +100 0.842013 0.44521 +108 0.851321 0.486182 +109 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +100 0.842013 0.44521 +102 0.842013 0.44521 +110 0.851129 0.486182 +108 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +102 0.842013 0.44521 +103 0.842013 0.44521 +111 0.851058 0.486182 +110 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.842013 0.44521 +104 0.842013 0.44521 +112 0.851129 0.486182 +111 0.851058 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.842013 0.44521 +98 0.842013 0.44521 +106 0.851321 0.486182 +112 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +106 0.851321 0.486182 +105 0.852858 0.486182 +113 0.863803 0.526837 +114 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +105 0.852858 0.486182 +107 0.903866 0.486182 +115 0.903866 0.526837 +113 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +109 0.852858 0.486182 +108 0.851321 0.486182 +116 0.863087 0.524444 +117 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +108 0.851321 0.486182 +110 0.851129 0.486182 +118 0.862791 0.524444 +116 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +110 0.851129 0.486182 +111 0.851058 0.486182 +119 0.862682 0.524444 +118 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +111 0.851058 0.486182 +112 0.851129 0.486182 +120 0.862791 0.524444 +119 0.862682 0.524444 +SURF 0x10 +mat 1 +refs 4 +112 0.851129 0.486182 +106 0.851321 0.486182 +114 0.863087 0.524444 +120 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +114 0.863087 0.524444 +113 0.863803 0.526837 +121 0.870847 0.54779 +122 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 3 +113 0.863803 0.526837 +115 0.903866 0.526837 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +123 0.926804 0.526837 +124 0.928335 0.526837 +125 0.923898 0.54779 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +124 0.928335 0.526837 +127 0.929455 0.526837 +128 0.925023 0.54779 +125 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 4 +127 0.929455 0.526837 +129 0.92987 0.526837 +130 0.925433 0.54779 +128 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +129 0.92987 0.526837 +131 0.929455 0.526837 +132 0.925023 0.54779 +130 0.925433 0.54779 +SURF 0x10 +mat 1 +refs 4 +131 0.929455 0.526837 +133 0.928335 0.526837 +134 0.923898 0.54779 +132 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +135 0.926804 0.526837 +136 0.922367 0.54779 +134 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 3 +135 0.926804 0.526837 +137 0.903866 0.526837 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +117 0.863803 0.526837 +116 0.863087 0.524444 +138 0.869317 0.54779 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +116 0.863087 0.524444 +118 0.862791 0.524444 +140 0.868548 0.543567 +138 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 4 +118 0.862791 0.524444 +119 0.862682 0.524444 +141 0.868133 0.543567 +140 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +119 0.862682 0.524444 +120 0.862791 0.524444 +142 0.868548 0.543567 +141 0.868133 0.543567 +SURF 0x10 +mat 1 +refs 4 +120 0.862791 0.524444 +114 0.863087 0.524444 +122 0.869317 0.54779 +142 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +122 0.869317 0.54779 +121 0.870847 0.54779 +143 0.878717 0.568117 +144 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +121 0.870847 0.54779 +126 0.922367 0.54779 +145 0.916052 0.568117 +143 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +126 0.922367 0.54779 +125 0.923898 0.54779 +146 0.917588 0.568117 +145 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +125 0.923898 0.54779 +128 0.925023 0.54779 +147 0.918708 0.568117 +146 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +128 0.925023 0.54779 +130 0.925433 0.54779 +148 0.919118 0.568117 +147 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +130 0.925433 0.54779 +132 0.925023 0.54779 +149 0.918708 0.568117 +148 0.919118 0.568117 +SURF 0x10 +mat 1 +refs 4 +132 0.925023 0.54779 +134 0.923898 0.54779 +150 0.917588 0.568117 +149 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +134 0.923898 0.54779 +136 0.922367 0.54779 +151 0.916052 0.568117 +150 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +136 0.922367 0.54779 +139 0.870847 0.54779 +152 0.878717 0.568117 +151 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +139 0.870847 0.54779 +138 0.869317 0.54779 +153 0.879199 0.565583 +152 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +138 0.869317 0.54779 +140 0.868548 0.543567 +154 0.878929 0.565583 +153 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +140 0.868548 0.543567 +141 0.868133 0.543567 +155 0.87883 0.565583 +154 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +141 0.868133 0.543567 +142 0.868548 0.543567 +156 0.878929 0.565583 +155 0.87883 0.565583 +SURF 0x10 +mat 1 +refs 4 +142 0.868548 0.543567 +122 0.869317 0.54779 +144 0.879199 0.565583 +156 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +144 0.879199 0.565583 +143 0.878717 0.568117 +157 0.883212 0.575305 +158 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +143 0.878717 0.568117 +145 0.916052 0.568117 +159 0.912764 0.575305 +157 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +145 0.916052 0.568117 +146 0.917588 0.568117 +160 0.9143 0.575305 +159 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +146 0.917588 0.568117 +147 0.918708 0.568117 +161 0.91542 0.575305 +160 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +147 0.918708 0.568117 +148 0.919118 0.568117 +162 0.91583 0.575305 +161 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +148 0.919118 0.568117 +149 0.918708 0.568117 +163 0.91542 0.575305 +162 0.91583 0.575305 +SURF 0x10 +mat 1 +refs 4 +149 0.918708 0.568117 +150 0.917588 0.568117 +164 0.9143 0.575305 +163 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +150 0.917588 0.568117 +151 0.916052 0.568117 +165 0.912764 0.575305 +164 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +151 0.916052 0.568117 +152 0.878717 0.568117 +166 0.883212 0.575305 +165 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +152 0.878717 0.568117 +153 0.879199 0.565583 +167 0.884056 0.574883 +166 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +153 0.879199 0.565583 +154 0.878929 0.565583 +168 0.882858 0.574883 +167 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +154 0.878929 0.565583 +155 0.87883 0.565583 +169 0.88242 0.574883 +168 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +155 0.87883 0.565583 +156 0.878929 0.565583 +170 0.882858 0.574883 +169 0.88242 0.574883 +SURF 0x10 +mat 1 +refs 4 +156 0.878929 0.565583 +144 0.879199 0.565583 +158 0.884056 0.574883 +170 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +158 0.884056 0.574883 +157 0.883212 0.575305 +171 0.890444 0.585468 +172 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +157 0.883212 0.575305 +159 0.912764 0.575305 +173 0.90686 0.585468 +171 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +159 0.912764 0.575305 +160 0.9143 0.575305 +174 0.90839 0.585468 +173 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +160 0.9143 0.575305 +161 0.91542 0.575305 +175 0.909515 0.585468 +174 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +161 0.91542 0.575305 +162 0.91583 0.575305 +176 0.909925 0.585468 +175 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +162 0.91583 0.575305 +163 0.91542 0.575305 +177 0.909515 0.585468 +176 0.909925 0.585468 +SURF 0x10 +mat 1 +refs 4 +163 0.91542 0.575305 +164 0.9143 0.575305 +178 0.90839 0.585468 +177 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +164 0.9143 0.575305 +165 0.912764 0.575305 +179 0.90686 0.585468 +178 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +165 0.912764 0.575305 +166 0.883212 0.575305 +180 0.890444 0.585468 +179 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +166 0.883212 0.575305 +167 0.884056 0.574883 +181 0.888909 0.585468 +180 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +167 0.884056 0.574883 +168 0.882858 0.574883 +182 0.887789 0.585468 +181 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +168 0.882858 0.574883 +169 0.88242 0.574883 +183 0.887378 0.585468 +182 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +169 0.88242 0.574883 +170 0.882858 0.574883 +184 0.887789 0.585468 +183 0.887378 0.585468 +SURF 0x10 +mat 1 +refs 4 +170 0.882858 0.574883 +158 0.884056 0.574883 +172 0.888909 0.585468 +184 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +172 0.888909 0.585468 +171 0.890444 0.585468 +185 0.896841 0.586472 +0 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +171 0.890444 0.585468 +173 0.90686 0.585468 +186 0.89968 0.586465 +185 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +173 0.90686 0.585468 +174 0.90839 0.585468 +1 0.900578 0.588527 +186 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +174 0.90839 0.585468 +175 0.909515 0.585468 +2 0.90123 0.590037 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +175 0.909515 0.585468 +176 0.909925 0.585468 +187 0.901471 0.59059 +2 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +176 0.909925 0.585468 +177 0.909515 0.585468 +188 0.90123 0.590037 +187 0.901471 0.59059 +SURF 0x10 +mat 1 +refs 4 +177 0.909515 0.585468 +178 0.90839 0.585468 +189 0.900578 0.588527 +188 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +178 0.90839 0.585468 +179 0.90686 0.585468 +190 0.89968 0.586465 +189 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +179 0.90686 0.585468 +180 0.890444 0.585468 +191 0.896841 0.586472 +190 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +180 0.890444 0.585468 +181 0.888909 0.585468 +192 0.895914 0.588495 +191 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +181 0.888909 0.585468 +182 0.887789 0.585468 +193 0.895238 0.589977 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +182 0.887789 0.585468 +183 0.887378 0.585468 +194 0.894987 0.590519 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +183 0.887378 0.585468 +184 0.887789 0.585468 +3 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +184 0.887789 0.585468 +172 0.888909 0.585468 +0 0.895914 0.588495 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +185 0.896841 0.586472 +186 0.89968 0.586465 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +2 0.90123 0.590037 +187 0.901471 0.59059 +194 0.894987 0.590519 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +187 0.901471 0.59059 +188 0.90123 0.590037 +193 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +188 0.90123 0.590037 +189 0.900578 0.588527 +192 0.895914 0.588495 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +189 0.900578 0.588527 +190 0.89968 0.586465 +191 0.896841 0.586472 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 14 +5 0.81811 0.220192 +4 0.816575 0.220192 +32 0.815455 0.220192 +30 0.815044 0.220192 +28 0.815455 0.220192 +26 0.816575 0.220192 +23 0.81811 0.220192 +21 0.897821 0.229292 +19 0.899352 0.229292 +17 0.900477 0.229292 +15 0.900887 0.229292 +13 0.900477 0.229292 +11 0.899352 0.229292 +8 0.897821 0.229292 +SURF 0x10 +mat 1 +refs 4 +74 0.812184 0.346439 +77 0.823228 0.363268 +83 0.822787 0.363268 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +78 0.811462 0.346439 +88 0.822787 0.363268 +87 0.823228 0.363268 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +80 0.810931 0.346439 +91 0.822462 0.363268 +88 0.822787 0.363268 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +81 0.810737 0.346439 +93 0.822344 0.363268 +91 0.822462 0.363268 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +82 0.810931 0.346439 +95 0.822462 0.363268 +93 0.822344 0.363268 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +75 0.811462 0.346439 +83 0.822787 0.363268 +95 0.822462 0.363268 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +25 0.903866 0.22629 +24 0.81811 0.22629 +38 0.81811 0.238487 +195 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +38 0.81811 0.238487 +46 0.81811 0.256781 +196 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +46 0.81811 0.256781 +54 0.81811 0.275076 +197 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +54 0.81811 0.275076 +62 0.81811 0.299469 +198 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +62 0.81811 0.299469 +70 0.772318 0.328378 +199 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 5 +199 0.903866 0.332566 +70 0.772318 0.328378 +79 0.812184 0.346439 +87 0.823228 0.363268 +200 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +87 0.823228 0.363268 +90 0.833294 0.404239 +201 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +90 0.833294 0.404239 +101 0.843477 0.44521 +202 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +101 0.843477 0.44521 +109 0.852858 0.486182 +203 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +109 0.852858 0.486182 +117 0.863803 0.526837 +137 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +123 0.926804 0.526837 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +126 0.922367 0.54779 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +117 0.863803 0.526837 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +139 0.870847 0.54779 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +10 0.903866 0.22629 +25 0.903866 0.22629 +195 0.903866 0.238487 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +16 0.903866 0.221434 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +9 0.903866 0.222712 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +20 0.903866 0.222073 +22 0.903866 0.222712 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +18 0.903866 0.221605 +20 0.903866 0.222073 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +12 0.903866 0.222073 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +16 0.903866 0.221434 +18 0.903866 0.221605 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +14 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +196 0.903866 0.256781 +44 0.903866 0.256781 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +197 0.903866 0.275076 +52 0.903866 0.275076 +44 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +198 0.903866 0.299469 +60 0.903866 0.299469 +52 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +199 0.903866 0.332566 +68 0.903866 0.332566 +60 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +199 0.903866 0.332566 +200 0.903866 0.363268 +76 0.903866 0.363268 +68 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +201 0.903866 0.404239 +86 0.903866 0.404239 +76 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +202 0.903866 0.44521 +99 0.903866 0.44521 +86 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +203 0.903866 0.486182 +107 0.903866 0.486182 +99 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +137 0.903866 0.526837 +115 0.903866 0.526837 +107 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +137 0.903866 0.526837 +135 0.926804 0.526837 +123 0.926804 0.526837 +115 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +135 0.926804 0.526837 +133 0.928335 0.526837 +124 0.928335 0.526837 +123 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +131 0.929455 0.526837 +127 0.929455 0.526837 +124 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 3 +131 0.929455 0.526837 +129 0.92987 0.526837 +127 0.929455 0.526837 +kids 0 +OBJECT poly +name "Rudder" +texture "Rascal.rgb" +numvert 106 +1.77038 -0.0429984 0.00635 +1.77355 -0.0429984 0.00549926 +1.79954 -0.0302984 0.00549926 +1.79636 -0.0302984 0.00635 +1.77588 -0.0429984 0.003175 +1.80186 -0.0302984 0.003175 +1.77673 -0.0429984 1.0018e-16 +1.80271 -0.0302984 1.06547e-16 +1.77588 -0.0429984 -0.003175 +1.80186 -0.0302984 -0.003175 +1.77355 -0.0429984 -0.00549926 +1.79954 -0.0302984 -0.00549926 +1.77038 -0.0429984 -0.00635 +1.79636 -0.0302984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.7526 -0.0302984 -0.00635 +1.82221 -0.0112484 0.00549926 +1.81903 -0.0112484 0.00635 +1.82453 -0.0112484 0.003175 +1.82538 -0.0112484 1.39855e-16 +1.82453 -0.0112484 -0.003175 +1.82221 -0.0112484 -0.00549926 +1.81903 -0.0112484 -0.00635 +1.7526 -0.0112484 -0.00635 +1.83589 0.00780156 0.00549926 +1.83272 0.00780156 0.00635 +1.83822 0.00780156 0.003175 +1.83907 0.00780156 1.57084e-16 +1.83822 0.00780156 -0.003175 +1.83589 0.00780156 -0.00549926 +1.83272 0.00780156 -0.00635 +1.7526 0.00780156 -0.00635 +1.84664 0.0332016 0.00549926 +1.84347 0.0332016 0.00635 +1.84896 0.0332016 0.003175 +1.84982 0.0332016 2.15228e-16 +1.84896 0.0332016 -0.003175 +1.84664 0.0332016 -0.00549926 +1.84347 0.0332016 -0.00635 +1.7526 0.0332016 -0.00635 +1.85072 0.0678846 0.00549926 +1.84755 0.0678846 0.00635 +1.85305 0.0678846 0.003175 +1.8539 0.0678846 2.99494e-16 +1.85305 0.0678846 -0.003175 +1.85072 0.0678846 -0.00549926 +1.84755 0.0678846 -0.00635 +1.7526 0.0676649 -0.00635 +1.84935 0.0996346 0.00549926 +1.84617 0.0996346 0.00635 +1.85167 0.0996346 0.003175 +1.85252 0.0996346 3.82425e-16 +1.85167 0.0996346 -0.003175 +1.84935 0.0996346 -0.00549926 +1.84617 0.0996346 -0.00635 +1.7526 0.0996346 -0.00635 +1.84284 0.142297 0.00549926 +1.83967 0.142297 0.00635 +1.84517 0.142297 0.003175 +1.84602 0.142297 4.91852e-16 +1.84517 0.142297 -0.003175 +1.84284 0.142297 -0.00549926 +1.83967 0.142297 -0.00635 +1.7526 0.142297 -0.00635 +1.83267 0.18496 0.00549926 +1.82949 0.18496 0.00635 +1.83499 0.18496 0.003175 +1.83584 0.18496 6.00384e-16 +1.83499 0.18496 -0.003175 +1.83267 0.18496 -0.00549926 +1.82949 0.18496 -0.00635 +1.7526 0.18496 -0.00635 +1.8189 0.227623 0.00549926 +1.81572 0.227623 0.00635 +1.82122 0.227623 0.003175 +1.82207 0.227623 7.21909e-16 +1.82122 0.227623 -0.003175 +1.8189 0.227623 -0.00549926 +1.81572 0.227623 -0.00635 +1.7526 0.227623 -0.00635 +1.80328 0.269956 0.00549926 +1.80011 0.269956 0.00635 +1.8056 0.269956 0.003175 +1.80646 0.269956 8.42988e-16 +1.8056 0.269956 -0.003175 +1.80328 0.269956 -0.00549926 +1.80011 0.269956 -0.00635 +1.7526 0.269956 -0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.7526 -0.0473896 0.00549926 +1.7526 -0.0478767 0.003175 +1.7526 -0.048055 9.42714e-17 +1.7526 -0.0478767 -0.003175 +1.7526 -0.0473896 -0.00549926 +1.7526 -0.0467241 -0.00635 +1.7526 -0.0302984 0.00635 +1.7526 -0.0112484 0.00635 +1.7526 0.00780156 0.00635 +1.7526 0.0332016 0.00635 +1.7526 0.0676649 0.00635 +1.7526 0.0996346 0.00635 +1.7526 0.142297 0.00635 +1.7526 0.18496 0.00635 +1.7526 0.227623 0.00635 +1.7526 0.269956 0.00635 +numsurf 109 +SURF 0x10 +mat 1 +refs 4 +0 0.912451 0.22629 +1 0.913981 0.22629 +2 0.926529 0.238487 +3 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +1 0.913981 0.22629 +4 0.915106 0.22629 +5 0.927649 0.238487 +2 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +4 0.915106 0.22629 +6 0.915516 0.22629 +7 0.92806 0.238487 +5 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.915516 0.22629 +8 0.915106 0.22629 +9 0.927649 0.238487 +7 0.92806 0.238487 +SURF 0x10 +mat 1 +refs 4 +8 0.915106 0.22629 +10 0.913981 0.22629 +11 0.926529 0.238487 +9 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +10 0.913981 0.22629 +12 0.912451 0.22629 +13 0.924994 0.238487 +11 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +12 0.912451 0.22629 +14 0.903866 0.22629 +15 0.903866 0.238487 +13 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +3 0.924994 0.238487 +2 0.926529 0.238487 +16 0.937474 0.256781 +17 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +2 0.926529 0.238487 +5 0.927649 0.238487 +18 0.938595 0.256781 +16 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +5 0.927649 0.238487 +7 0.92806 0.238487 +19 0.939005 0.256781 +18 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +7 0.92806 0.238487 +9 0.927649 0.238487 +20 0.938595 0.256781 +19 0.939005 0.256781 +SURF 0x10 +mat 1 +refs 4 +9 0.927649 0.238487 +11 0.926529 0.238487 +21 0.937474 0.256781 +20 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +11 0.926529 0.238487 +13 0.924994 0.238487 +22 0.935939 0.256781 +21 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +13 0.924994 0.238487 +15 0.903866 0.238487 +23 0.903866 0.256781 +22 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +17 0.935939 0.256781 +16 0.937474 0.256781 +24 0.944079 0.275076 +25 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +16 0.937474 0.256781 +18 0.938595 0.256781 +26 0.945204 0.275076 +24 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +18 0.938595 0.256781 +19 0.939005 0.256781 +27 0.945615 0.275076 +26 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +19 0.939005 0.256781 +20 0.938595 0.256781 +28 0.945204 0.275076 +27 0.945615 0.275076 +SURF 0x10 +mat 1 +refs 4 +20 0.938595 0.256781 +21 0.937474 0.256781 +29 0.944079 0.275076 +28 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +21 0.937474 0.256781 +22 0.935939 0.256781 +30 0.942549 0.275076 +29 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +22 0.935939 0.256781 +23 0.903866 0.256781 +31 0.903866 0.275076 +30 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +25 0.942549 0.275076 +24 0.944079 0.275076 +32 0.949269 0.299469 +33 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +24 0.944079 0.275076 +26 0.945204 0.275076 +34 0.95039 0.299469 +32 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +26 0.945204 0.275076 +27 0.945615 0.275076 +35 0.950805 0.299469 +34 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +27 0.945615 0.275076 +28 0.945204 0.275076 +36 0.95039 0.299469 +35 0.950805 0.299469 +SURF 0x10 +mat 1 +refs 4 +28 0.945204 0.275076 +29 0.944079 0.275076 +37 0.949269 0.299469 +36 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +29 0.944079 0.275076 +30 0.942549 0.275076 +38 0.947739 0.299469 +37 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +30 0.942549 0.275076 +31 0.903866 0.275076 +39 0.903866 0.299469 +38 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +33 0.947739 0.299469 +32 0.949269 0.299469 +40 0.951239 0.332777 +41 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +32 0.949269 0.299469 +34 0.95039 0.299469 +42 0.952364 0.332777 +40 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +34 0.95039 0.299469 +35 0.950805 0.299469 +43 0.952775 0.332777 +42 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +35 0.950805 0.299469 +36 0.95039 0.299469 +44 0.952364 0.332777 +43 0.952775 0.332777 +SURF 0x10 +mat 1 +refs 4 +36 0.95039 0.299469 +37 0.949269 0.299469 +45 0.951239 0.332777 +44 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +37 0.949269 0.299469 +38 0.947739 0.299469 +46 0.949709 0.332777 +45 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +38 0.947739 0.299469 +39 0.903866 0.299469 +47 0.903866 0.332566 +46 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +41 0.949709 0.332777 +40 0.951239 0.332777 +48 0.950578 0.363268 +49 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +40 0.951239 0.332777 +42 0.952364 0.332777 +50 0.951698 0.363268 +48 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +42 0.952364 0.332777 +43 0.952775 0.332777 +51 0.952108 0.363268 +50 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +43 0.952775 0.332777 +44 0.952364 0.332777 +52 0.951698 0.363268 +51 0.952108 0.363268 +SURF 0x10 +mat 1 +refs 4 +44 0.952364 0.332777 +45 0.951239 0.332777 +53 0.950578 0.363268 +52 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +45 0.951239 0.332777 +46 0.949709 0.332777 +54 0.949042 0.363268 +53 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +46 0.949709 0.332777 +47 0.903866 0.332566 +55 0.903866 0.363268 +54 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +49 0.949042 0.363268 +48 0.950578 0.363268 +56 0.947435 0.404239 +57 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +48 0.950578 0.363268 +50 0.951698 0.363268 +58 0.94856 0.404239 +56 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +50 0.951698 0.363268 +51 0.952108 0.363268 +59 0.94897 0.404239 +58 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +51 0.952108 0.363268 +52 0.951698 0.363268 +60 0.94856 0.404239 +59 0.94897 0.404239 +SURF 0x10 +mat 1 +refs 4 +52 0.951698 0.363268 +53 0.950578 0.363268 +61 0.947435 0.404239 +60 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +53 0.950578 0.363268 +54 0.949042 0.363268 +62 0.945904 0.404239 +61 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +54 0.949042 0.363268 +55 0.903866 0.363268 +63 0.903866 0.404239 +62 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +57 0.945904 0.404239 +56 0.947435 0.404239 +64 0.942525 0.44521 +65 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +56 0.947435 0.404239 +58 0.94856 0.404239 +66 0.943645 0.44521 +64 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +58 0.94856 0.404239 +59 0.94897 0.404239 +67 0.944055 0.44521 +66 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +59 0.94897 0.404239 +60 0.94856 0.404239 +68 0.943645 0.44521 +67 0.944055 0.44521 +SURF 0x10 +mat 1 +refs 4 +60 0.94856 0.404239 +61 0.947435 0.404239 +69 0.942525 0.44521 +68 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +61 0.947435 0.404239 +62 0.945904 0.404239 +70 0.940989 0.44521 +69 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +62 0.945904 0.404239 +63 0.903866 0.404239 +71 0.903866 0.44521 +70 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +65 0.940989 0.44521 +64 0.942525 0.44521 +72 0.935876 0.486182 +73 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +64 0.942525 0.44521 +66 0.943645 0.44521 +74 0.936997 0.486182 +72 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +66 0.943645 0.44521 +67 0.944055 0.44521 +75 0.937407 0.486182 +74 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +67 0.944055 0.44521 +68 0.943645 0.44521 +76 0.936997 0.486182 +75 0.937407 0.486182 +SURF 0x10 +mat 1 +refs 4 +68 0.943645 0.44521 +69 0.942525 0.44521 +77 0.935876 0.486182 +76 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +69 0.942525 0.44521 +70 0.940989 0.44521 +78 0.934341 0.486182 +77 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +70 0.940989 0.44521 +71 0.903866 0.44521 +79 0.903866 0.486182 +78 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +73 0.934341 0.486182 +72 0.935876 0.486182 +80 0.928335 0.526837 +81 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +72 0.935876 0.486182 +74 0.936997 0.486182 +82 0.929455 0.526837 +80 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +74 0.936997 0.486182 +75 0.937407 0.486182 +83 0.92987 0.526837 +82 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +75 0.937407 0.486182 +76 0.936997 0.486182 +84 0.929455 0.526837 +83 0.92987 0.526837 +SURF 0x10 +mat 1 +refs 4 +76 0.936997 0.486182 +77 0.935876 0.486182 +85 0.928335 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +77 0.935876 0.486182 +78 0.934341 0.486182 +86 0.926804 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +78 0.934341 0.486182 +79 0.903866 0.486182 +87 0.903866 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 3 +88 0.903866 0.222712 +0 0.912451 0.22629 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 4 +90 0.903866 0.222073 +1 0.913981 0.22629 +0 0.912451 0.22629 +88 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +91 0.903866 0.221605 +4 0.915106 0.22629 +1 0.913981 0.22629 +90 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +92 0.903866 0.221434 +6 0.915516 0.22629 +4 0.915106 0.22629 +91 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +93 0.903866 0.221605 +8 0.915106 0.22629 +6 0.915516 0.22629 +92 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +94 0.903866 0.222073 +10 0.913981 0.22629 +8 0.915106 0.22629 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +95 0.903866 0.222712 +12 0.912451 0.22629 +10 0.913981 0.22629 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +12 0.912451 0.22629 +95 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +89 0.903866 0.22629 +0 0.912451 0.22629 +3 0.924994 0.238487 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +96 0.903866 0.238487 +3 0.924994 0.238487 +17 0.935939 0.256781 +97 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +17 0.935939 0.256781 +25 0.942549 0.275076 +98 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +25 0.942549 0.275076 +33 0.947739 0.299469 +99 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +33 0.947739 0.299469 +41 0.949709 0.332777 +100 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +41 0.949709 0.332777 +49 0.949042 0.363268 +101 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +49 0.949042 0.363268 +57 0.945904 0.404239 +102 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +57 0.945904 0.404239 +65 0.940989 0.44521 +103 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +65 0.940989 0.44521 +73 0.934341 0.486182 +104 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +73 0.934341 0.486182 +81 0.926804 0.526837 +105 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +96 0.903866 0.238487 +97 0.903866 0.256781 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 3 +82 0.929455 0.526837 +83 0.92987 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +80 0.928335 0.526837 +82 0.929455 0.526837 +84 0.929455 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +81 0.926804 0.526837 +80 0.928335 0.526837 +85 0.928335 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +105 0.903866 0.526837 +81 0.926804 0.526837 +86 0.926804 0.526837 +87 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +105 0.903866 0.526837 +87 0.903866 0.526837 +79 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +104 0.903866 0.486182 +79 0.903866 0.486182 +71 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +103 0.903866 0.44521 +71 0.903866 0.44521 +63 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +102 0.903866 0.404239 +63 0.903866 0.404239 +55 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +101 0.903866 0.363268 +55 0.903866 0.363268 +47 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +100 0.903866 0.332566 +47 0.903866 0.332566 +39 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +99 0.903866 0.299469 +39 0.903866 0.299469 +31 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +98 0.903866 0.275076 +31 0.903866 0.275076 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +14 0.903866 0.22629 +89 0.903866 0.22629 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +92 0.903866 0.221434 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +90 0.903866 0.222073 +88 0.903866 0.222712 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +95 0.903866 0.222712 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +94 0.903866 0.222073 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +91 0.903866 0.221605 +90 0.903866 0.222073 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +92 0.903866 0.221434 +91 0.903866 0.221605 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +93 0.903866 0.221605 +92 0.903866 0.221434 +kids 0 +OBJECT poly +name "Prop_Disk" +numvert 33 +0.0508 -0.254 1.2442e-17 +0.0508 -0.249119 0.0495529 +0.0508 1.38778e-17 1.67788e-17 +0.0508 -0.234665 0.0972016 +0.0508 -0.211193 0.141115 +0.0508 -0.179605 0.179605 +0.0508 -0.141115 0.211193 +0.0508 -0.0972016 0.234665 +0.0508 -0.0495529 0.249119 +0.0508 -1.55525e-17 0.254 +0.0508 0.0495529 0.249119 +0.0508 0.0972016 0.234665 +0.0508 0.141115 0.211193 +0.0508 0.179605 0.179605 +0.0508 0.211193 0.141115 +0.0508 0.234665 0.0972016 +0.0508 0.249119 0.0495529 +0.0508 0.254 4.3547e-17 +0.0508 0.249119 -0.0495529 +0.0508 0.234665 -0.0972016 +0.0508 0.211193 -0.141115 +0.0508 0.179605 -0.179605 +0.0508 0.141115 -0.211193 +0.0508 0.0972016 -0.234665 +0.0508 0.0495529 -0.249119 +0.0508 4.66575e-17 -0.254 +0.0508 -0.0495529 -0.249119 +0.0508 -0.0972016 -0.234665 +0.0508 -0.141115 -0.211193 +0.0508 -0.179605 -0.179605 +0.0508 -0.211193 -0.141115 +0.0508 -0.234665 -0.0972016 +0.0508 -0.249119 -0.0495529 +numsurf 32 +SURF 0x30 +mat 3 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +32 0 0 +0 0 0 +2 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change b/resources/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change new file mode 100755 index 0000000000000000000000000000000000000000..99db0d45d013689830283ae09ee064b7965d30eb --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/Rascal110-000-013.ac.before-color-change @@ -0,0 +1,22017 @@ +AC3Db +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.5 0.5 0.5 shi 10 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat13" rgb 0.533 0.533 0.533 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat14" rgb 0.8 0.8 0.8 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0.937 +MATERIAL "ac3dmat2" rgb 0.7 0.7 0.7 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +OBJECT world +kids 1 +OBJECT poly +name "wavefront obj" +kids 21 +OBJECT poly +name "Fuselage" +texture "Rascal.rgb" +numvert 302 +0.8382 -0.106221 -0.06985 +0.8382 0.102273 -0.06985 +1.7399 0.0371731 -0.00635 +1.7526 -0.0467241 -0.00635 +1.74643 -0.0493484 3.74373e-16 +1.7399 0.0427099 -0.0040566 +1.7399 0.0480533 3.70211e-16 +1.7399 0.0427099 0.0040566 +1.7399 0.0371731 0.00635 +1.7526 -0.0467241 0.00635 +0.8382 0.102273 0.06985 +0.8382 -0.106221 0.06985 +0.8382 -0.127 -0.0490712 +0.8382 -0.127 0.0490712 +0.8382 0.1143 -0.0578231 +0.8382 0.1143 0.0578231 +0.5334 0.102273 0.06985 +0.5334 -0.118921 0.06985 +0.5334 0.1143 -0.0578231 +0.5334 0.1143 0.0578231 +0.5334 -0.118921 -0.06985 +0.5334 0.102273 -0.06985 +0.5334 -0.1397 0.0490712 +0.5334 -0.1397 -0.0490712 +0.4318 0.121323 0.06985 +0.4318 -9.60197e-18 0.06985 +0.4318 -0.118921 0.06985 +0.4318 0.13335 -0.0578231 +0.4318 0.13335 -0.0385487 +0.4318 0.13335 -0.0192744 +0.4318 0.13335 1.57364e-16 +0.4318 0.13335 0.0192744 +0.4318 0.13335 0.0385487 +0.4318 0.13335 0.0578231 +0.4318 -0.118921 -0.06985 +0.4318 2.66307e-18 -0.06985 +0.4318 0.121323 -0.06985 +0.4318 -0.1397 0.0490712 +0.4318 -0.1397 -0.0490712 +0.3302 -9.60197e-18 0.06985 +0.3302 -0.118921 0.06985 +0.3302 -0.1397 0.0490712 +0.3302 -0.1397 -0.0490712 +0.230215 -0.13012 0.0490712 +0.1905 -0.122237 0.0458962 +0.1905 -0.122237 -0.0458962 +0.230215 -0.13012 -0.0490712 +0.3302 -0.118921 -0.06985 +0.230215 -0.109341 -0.06985 +0.2286 2.66307e-18 -0.06985 +0.3302 2.66307e-18 -0.06985 +0.2286 -9.60197e-18 0.06985 +0.230215 -0.109341 0.06985 +0.0844119 -1.03372e-17 0.0578343 +0.0826471 -0.0478251 0.0576873 +0.1143 -0.0728837 0.060325 +0.1143 -1.01847e-17 0.060325 +0.1143 0.0114591 0.0591659 +0.0844127 0.0112162 0.0567231 +0.084415 0.0220013 0.0534322 +0.1143 0.0224779 0.055733 +0.1143 0.0326328 0.0501584 +0.0844184 0.0319411 0.0480879 +0.2286 0.0123882 -0.0685079 +0.1905 2.8562e-18 -0.066675 +0.1905 0.0120785 -0.0653939 +0.3302 0.0123882 -0.0685079 +0.3302 0.0243004 0.064533 +0.3302 0.0352787 0.0580782 +0.2286 0.0352787 0.0580782 +0.2286 0.0243004 0.064533 +0.3302 0.0449013 0.0493914 +0.2286 0.0449013 0.0493914 +0.3302 0.0527983 0.0388066 +0.2286 0.0527983 0.0388066 +0.3302 0.0123882 0.0685079 +0.2286 0.0123882 0.0685079 +0.3302 0.0586664 0.0267304 +0.2286 0.0586664 0.0267304 +0.3302 0.0622799 0.0136271 +0.2286 0.0622799 0.0136271 +0.3302 0.0635 8.60572e-17 +0.2286 0.0635 5.90995e-17 +0.3302 0.0622799 -0.0136271 +0.2286 0.0622799 -0.0136271 +0.3302 0.0586664 -0.0267304 +0.2286 0.0586664 -0.0267304 +0.3302 0.0527983 -0.0388066 +0.2286 0.0527983 -0.0388066 +0.3302 0.0449013 -0.0493914 +0.2286 0.0449013 -0.0493914 +0.3302 0.0352787 -0.0580782 +0.2286 0.0352787 -0.0580782 +0.3302 0.0243004 -0.064533 +0.2286 0.0243004 -0.064533 +0.1905 0.0236929 -0.0615997 +0.1905 0.0343967 -0.0554382 +0.1905 0.0437787 -0.0471463 +0.1905 0.0514784 -0.0370426 +0.1905 0.0571997 -0.0255154 +0.1905 0.0607229 -0.0130076 +0.1905 0.0619125 4.89904e-17 +0.1905 0.0607229 0.0130076 +0.1905 0.0571997 0.0255154 +0.1905 0.0514784 0.0370426 +0.1905 0.0437787 0.0471463 +0.1905 0.0343967 0.0554382 +0.411979 0.0123882 0.0685079 +0.392919 0.0243004 0.064533 +0.375354 0.0352787 0.0580782 +0.359958 0.0449013 0.0493914 +0.347323 0.0527983 0.0388066 +0.337934 0.0586664 0.0267304 +0.332152 0.0622799 0.0136271 +0.332152 0.0622799 -0.0136271 +0.337934 0.0586664 -0.0267304 +0.347323 0.0527983 -0.0388066 +0.359958 0.0449013 -0.0493914 +0.375354 0.0352787 -0.0580782 +0.392919 0.0243004 -0.064533 +0.411979 0.0123882 -0.0685079 +0.1905 -0.101459 -0.066675 +0.8382 0.10781 -0.0675566 +0.8382 0.112007 -0.0633599 +0.8382 0.112007 0.0633599 +0.8382 0.10781 0.0675566 +0.5334 0.112007 0.0633599 +0.5334 0.10781 0.0675566 +0.5334 0.10781 -0.0675566 +0.5334 0.112007 -0.0633599 +0.4318 0.131057 0.0633599 +0.4318 0.12686 0.0675566 +0.4318 0.12686 -0.0675566 +0.4318 0.131057 -0.0633599 +0.8382 -0.123016 -0.0586902 +0.8382 -0.11584 -0.0658657 +0.8382 -0.11584 0.0658657 +0.8382 -0.123016 0.0586902 +0.5334 -0.12854 0.0658657 +0.5334 -0.135716 0.0586902 +0.5334 -0.135716 -0.0586902 +0.5334 -0.12854 -0.0658657 +0.4318 -0.12854 0.0658657 +0.4318 -0.135716 0.0586902 +0.4318 -0.135716 -0.0586902 +0.4318 -0.12854 -0.0658657 +0.3302 -0.12854 0.0658657 +0.3302 -0.135716 0.0586902 +0.3302 -0.135716 -0.0586902 +0.3302 -0.12854 -0.0658657 +0.230215 -0.126135 0.0586902 +0.230215 -0.11896 0.0658657 +0.1905 -0.111078 0.0626907 +0.1905 -0.118253 0.0555152 +0.0826471 -0.0646196 -0.0465274 +0.0826471 -0.0574441 -0.053703 +0.1143 -0.0825027 -0.0563407 +0.1143 -0.0896782 -0.0491652 +0.230215 -0.126135 -0.0586902 +0.230215 -0.11896 -0.0658657 +0.0826471 -0.0686039 -0.0369085 +0.1143 -0.0936625 -0.0395462 +0.0826471 -0.0574441 0.053703 +0.1143 -0.0825027 0.0563407 +0.1905 -0.111078 -0.0626907 +0.1524 -0.111125 0.0427212 +0.1143 -0.0936625 0.0395462 +0.1524 -0.111125 -0.0427212 +0.1524 -0.0903462 0.0635 +0.1905 -0.101459 0.066675 +0.1905 -9.79509e-18 0.066675 +0.1524 -9.98821e-18 0.0635 +0.1905 0.0120785 0.0653939 +0.1524 0.0117688 0.0622799 +0.1524 0.0230854 0.0586664 +0.1905 0.0236929 0.0615997 +0.1524 0.0335148 0.0527983 +0.1524 3.04932e-18 -0.0635 +0.1143 3.24583e-18 -0.060325 +0.1143 0.0114591 -0.0591659 +0.1524 0.0117688 -0.0622799 +0.1143 0.0224779 -0.055733 +0.1524 0.0230854 -0.0586664 +0.1143 0.0326328 -0.0501584 +0.1524 0.0335148 -0.0527983 +0.1143 0.0415337 -0.0426562 +0.1524 0.0426562 -0.0449013 +0.1143 0.0488384 -0.0335148 +0.1524 0.0501584 -0.0352787 +0.1143 0.0542664 -0.0230854 +0.1524 0.055733 -0.0243004 +0.1143 0.0576089 -0.0117688 +0.1524 0.0591659 -0.0123882 +0.1143 0.0587375 2.87721e-17 +0.1524 0.060325 3.88813e-17 +0.1143 0.0576089 0.0117688 +0.1524 0.0591659 0.0123882 +0.1143 0.0542664 0.0230854 +0.1524 0.055733 0.0243004 +0.1143 0.0488384 0.0335148 +0.1524 0.0501584 0.0352787 +0.1143 0.0415337 0.0426562 +0.1524 0.0426562 0.0449013 +0.1524 -0.0903462 -0.0635 +0.1143 -0.0728837 -0.060325 +0.1524 -0.0999652 0.0595157 +0.1143 -0.0896782 0.0491652 +0.1524 -0.107141 0.0523402 +0.1524 -0.0999652 -0.0595157 +0.1905 -0.118253 -0.0555152 +0.1524 -0.107141 -0.0523402 +0.0826471 -0.0686039 0.0369085 +0.0844119 3.3983e-18 -0.0578343 +0.0844127 0.0112162 -0.0567231 +0.084415 0.0220013 -0.0534322 +0.0844184 0.0319411 -0.0480879 +0.0844225 0.0406534 -0.0408957 +0.0844266 0.0478035 -0.0321317 +0.0844301 0.0531165 -0.0221328 +0.0844324 0.0563883 -0.0112832 +0.0844332 0.057493 2.08475e-17 +0.0844324 0.0563883 0.0112832 +0.0844301 0.0531165 0.0221328 +0.0844266 0.0478035 0.0321317 +0.0844225 0.0406534 0.0408957 +0.0826471 -0.0478251 -0.0576873 +0.0826471 -0.0646196 0.0465274 +0.0762 -0.0552597 0.0347321 +0.0762 -0.0525299 0.0413224 +0.0762 -0.0476724 0.0461799 +0.0762 -0.0410821 0.0489097 +0.0762 -0.000404822 0.0489097 +0.0762 0.00953402 0.0479308 +0.0762 0.0187017 0.0451498 +0.0762 0.0271506 0.0406337 +0.0762 0.0345562 0.0345562 +0.0762 0.0406337 0.0271506 +0.0762 0.0451498 0.0187017 +0.0762 0.0479308 0.00953402 +0.0762 0.0488698 1.39736e-17 +0.0762 0.0479308 -0.00953402 +0.0762 0.0451498 -0.0187017 +0.0762 0.0406337 -0.0271506 +0.0762 0.0345562 -0.0345562 +0.0762 0.0271506 -0.0406337 +0.0762 0.0187017 -0.0451498 +0.0762 0.00953402 -0.0479308 +0.0762 -0.000404822 -0.0489097 +0.0762 -0.0410821 -0.0489097 +0.0762 -0.0476724 -0.0461799 +0.0762 -0.0525299 -0.0413224 +0.0762 -0.0552597 -0.0347321 +0.0806418 -7.51648e-05 0.0559901 +0.0777247 -0.00021897 0.0528198 +0.077334 -0.0427163 0.0527067 +0.0797503 -0.0452436 0.0559964 +0.080644 0.0108859 0.0549089 +0.0777231 0.0102877 0.0517819 +0.0806392 0.030996 0.0465426 +0.0777322 0.0293015 0.0439059 +0.0777267 0.0201813 0.0487807 +0.0806421 0.0213523 0.05172 +0.0798932 -0.0613656 -0.0455804 +0.0771911 -0.0562984 -0.0433988 +0.0772438 -0.0505308 -0.049308 +0.0798405 -0.0544665 -0.052338 +0.0799146 -0.0652012 -0.0364342 +0.0771697 -0.0595199 -0.0355076 +0.0772438 -0.0505308 0.049308 +0.0798405 -0.0544665 0.052338 +0.0799146 -0.0652012 0.0364342 +0.0771697 -0.0595199 0.0355076 +0.0806418 -7.51648e-05 -0.0559901 +0.0777247 -0.00021897 -0.0528198 +0.0777231 0.0102877 -0.0517819 +0.080644 0.0108859 -0.0549089 +0.0777267 0.0201813 -0.0487807 +0.0806421 0.0213523 -0.05172 +0.0777322 0.0293015 -0.0439059 +0.0806392 0.030996 -0.0465426 +0.0777386 0.037298 -0.0373433 +0.0806357 0.0394462 -0.0395769 +0.0777452 0.0438628 -0.029344 +0.0806321 0.0463789 -0.031092 +0.0777508 0.0487426 -0.0202146 +0.080629 0.0515288 -0.0214145 +0.0777545 0.0517483 -0.010306 +0.0806269 0.0546993 -0.0109163 +0.0777559 0.0527634 1.65548e-17 +0.0806262 0.0557697 1.89512e-17 +0.0777545 0.0517483 0.010306 +0.0806269 0.0546993 0.0109163 +0.0777508 0.0487426 0.0202146 +0.080629 0.0515288 0.0214145 +0.0777452 0.0438628 0.029344 +0.0806321 0.0463789 0.031092 +0.0777386 0.037298 0.0373433 +0.0806357 0.0394462 0.0395769 +0.0797503 -0.0452436 -0.0559964 +0.077334 -0.0427163 -0.0527067 +0.0771911 -0.0562984 0.0433988 +0.0798932 -0.0613656 0.0455804 +numsurf 291 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +1 0.462387 0.365802 +2 0.897735 0.289211 +3 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 8 +4 0.900887 0.229292 +3 0.903866 0.222712 +2 0.897735 0.289211 +5 0.897735 0.29428 +6 0.897735 0.299173 +7 0.897735 0.29428 +8 0.897735 0.289211 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +9 0.903866 0.222712 +8 0.897735 0.289211 +10 0.462387 0.365802 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +4 0.900887 0.229292 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 3 +14 0.462248 0.371534 +15 0.462248 0.371534 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +10 0.462387 0.365802 +16 0.315228 0.365802 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +15 0.462248 0.371534 +14 0.462248 0.371534 +18 0.315297 0.375551 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +0 0.462387 0.165574 +20 0.315228 0.153932 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +12 0.461845 0.14959 +13 0.461845 0.14959 +22 0.315228 0.142799 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 5 +17 0.315228 0.153932 +16 0.315228 0.365802 +24 0.266174 0.384097 +25 0.266174 0.267584 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 9 +19 0.315297 0.375551 +18 0.315297 0.375551 +27 0.266105 0.391907 +28 0.266105 0.391907 +29 0.266105 0.391907 +30 0.266105 0.391907 +31 0.266105 0.391907 +32 0.266105 0.391907 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 5 +21 0.315228 0.365802 +20 0.315228 0.153932 +34 0.266174 0.153932 +35 0.266174 0.267584 +36 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +22 0.315228 0.142799 +37 0.266174 0.142799 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +25 0.266174 0.267584 +39 0.217121 0.267584 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +37 0.266174 0.142799 +41 0.217121 0.142799 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +44 0.149673 0.158354 +45 0.149673 0.158354 +46 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +48 0.168848 0.168617 +49 0.168068 0.267584 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +43 0.168848 0.152081 +46 0.168848 0.152081 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +35 0.266174 0.267584 +34 0.266174 0.153932 +47 0.217121 0.153932 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +52 0.168848 0.168617 +40 0.217121 0.153932 +39 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +54 0.0980683 0.227431 +55 0.112883 0.19763 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +56 0.112883 0.267584 +57 0.112883 0.278589 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +60 0.112883 0.28917 +61 0.112883 0.298923 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +63 0.168068 0.279481 +49 0.168068 0.267584 +64 0.149673 0.267584 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +66 0.217121 0.279481 +50 0.217121 0.267584 +49 0.168068 0.267584 +63 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +67 0.217121 0.290921 +68 0.217121 0.301464 +69 0.168068 0.301464 +70 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +68 0.217121 0.301464 +71 0.217121 0.310705 +72 0.168068 0.310705 +69 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +71 0.217121 0.310705 +73 0.217121 0.318289 +74 0.168068 0.318289 +72 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +75 0.217121 0.279481 +67 0.217121 0.290921 +70 0.168068 0.290921 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +39 0.217121 0.267584 +75 0.217121 0.279481 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +73 0.217121 0.318289 +77 0.217121 0.323924 +78 0.168068 0.323924 +74 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +77 0.217121 0.323924 +79 0.217121 0.327394 +80 0.168068 0.327394 +78 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +79 0.217121 0.327394 +81 0.217744 0.327458 +82 0.168068 0.327181 +80 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +81 0.217744 0.327458 +83 0.217121 0.327394 +84 0.168068 0.327394 +82 0.168068 0.327181 +SURF 0x10 +mat 1 +refs 4 +83 0.217121 0.327394 +85 0.217121 0.323924 +86 0.168068 0.323924 +84 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +85 0.217121 0.323924 +87 0.217121 0.318289 +88 0.168068 0.318289 +86 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +87 0.217121 0.318289 +89 0.217121 0.310705 +90 0.168068 0.310705 +88 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +89 0.217121 0.310705 +91 0.217121 0.301464 +92 0.168068 0.301464 +90 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +91 0.217121 0.301464 +93 0.217121 0.290921 +94 0.168068 0.290921 +92 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +93 0.217121 0.290921 +66 0.217121 0.279481 +63 0.168068 0.279481 +94 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +94 0.168068 0.290921 +63 0.168068 0.279481 +65 0.149673 0.279183 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +92 0.168068 0.301464 +94 0.168068 0.290921 +95 0.149673 0.290337 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +90 0.168068 0.310705 +92 0.168068 0.301464 +96 0.149673 0.300617 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +88 0.168068 0.318289 +90 0.168068 0.310705 +97 0.149673 0.309627 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +86 0.168068 0.323924 +88 0.168068 0.318289 +98 0.149673 0.317021 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +84 0.168068 0.327394 +86 0.168068 0.323924 +99 0.149673 0.322516 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +82 0.168068 0.327181 +84 0.168068 0.327394 +100 0.149673 0.324171 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +80 0.168068 0.327394 +82 0.168068 0.327181 +101 0.149673 0.325037 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +78 0.168068 0.323924 +80 0.168068 0.327394 +102 0.149673 0.324171 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +74 0.168068 0.318289 +78 0.168068 0.323924 +103 0.149673 0.322516 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +72 0.168068 0.310705 +74 0.168068 0.318289 +104 0.149673 0.317021 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +69 0.168068 0.301464 +72 0.168068 0.310705 +105 0.149673 0.309627 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +58 0.0984158 0.275626 +57 0.112883 0.278589 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +39 0.217121 0.267584 +25 0.266174 0.267584 +107 0.256605 0.279481 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +107 0.256605 0.279481 +108 0.247402 0.290921 +67 0.217121 0.290921 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +108 0.247402 0.290921 +109 0.238922 0.301464 +68 0.217121 0.301464 +67 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +109 0.238922 0.301464 +110 0.231488 0.310705 +71 0.217121 0.310705 +68 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +110 0.231488 0.310705 +111 0.225388 0.318289 +73 0.217121 0.318289 +71 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +111 0.225388 0.318289 +112 0.220855 0.323924 +77 0.217121 0.323924 +73 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +112 0.220855 0.323924 +113 0.218063 0.327394 +79 0.217121 0.327394 +77 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 3 +113 0.218063 0.327394 +81 0.217744 0.327458 +79 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 3 +81 0.217744 0.327458 +114 0.218063 0.327394 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +114 0.218063 0.327394 +115 0.220855 0.323924 +85 0.217121 0.323924 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +115 0.220855 0.323924 +116 0.225388 0.318289 +87 0.217121 0.318289 +85 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 4 +116 0.225388 0.318289 +117 0.231488 0.310705 +89 0.217121 0.310705 +87 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +118 0.238922 0.301464 +91 0.217121 0.301464 +89 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +119 0.247402 0.290921 +93 0.217121 0.290921 +91 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +119 0.247402 0.290921 +120 0.256605 0.279481 +66 0.217121 0.279481 +93 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +120 0.256605 0.279481 +35 0.266174 0.267584 +50 0.217121 0.267584 +66 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +121 0.149673 0.174889 +64 0.149673 0.267584 +49 0.168068 0.267584 +SURF 0x10 +mat 1 +refs 4 +30 0.266105 0.391907 +29 0.266105 0.391907 +114 0.218063 0.327394 +81 0.217744 0.327458 +SURF 0x10 +mat 1 +refs 4 +122 0.462248 0.365301 +123 0.462248 0.369332 +6 0.897735 0.299173 +5 0.897735 0.29428 +SURF 0x10 +mat 1 +refs 4 +7 0.897735 0.29428 +6 0.897735 0.299173 +124 0.462248 0.369332 +125 0.462248 0.365301 +SURF 0x10 +mat 1 +refs 4 +125 0.462248 0.365301 +124 0.462248 0.369332 +126 0.315297 0.373349 +127 0.315228 0.371119 +SURF 0x10 +mat 1 +refs 4 +123 0.462248 0.369332 +122 0.462248 0.365301 +128 0.315228 0.371119 +129 0.315297 0.373349 +SURF 0x10 +mat 1 +refs 4 +127 0.315228 0.371119 +126 0.315297 0.373349 +130 0.266105 0.389705 +131 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +129 0.315297 0.373349 +128 0.315228 0.371119 +132 0.266174 0.389414 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +122 0.462248 0.365301 +5 0.897735 0.29428 +2 0.897735 0.289211 +SURF 0x10 +mat 1 +refs 4 +8 0.897735 0.289211 +7 0.897735 0.29428 +125 0.462248 0.365301 +10 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 3 +15 0.462248 0.371534 +124 0.462248 0.369332 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 3 +6 0.897735 0.299173 +123 0.462248 0.369332 +14 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +10 0.462387 0.365802 +125 0.462248 0.365301 +127 0.315228 0.371119 +16 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +14 0.462248 0.371534 +123 0.462248 0.369332 +129 0.315297 0.373349 +18 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +19 0.315297 0.375551 +126 0.315297 0.373349 +124 0.462248 0.369332 +15 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +21 0.315228 0.365802 +128 0.315228 0.371119 +122 0.462248 0.365301 +1 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 4 +16 0.315228 0.365802 +127 0.315228 0.371119 +131 0.266174 0.389414 +24 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +18 0.315297 0.375551 +129 0.315297 0.373349 +133 0.266105 0.389705 +27 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +33 0.266105 0.391907 +130 0.266105 0.389705 +126 0.315297 0.373349 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +132 0.266174 0.389414 +128 0.315228 0.371119 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +134 0.461845 0.154139 +135 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 3 +136 0.462387 0.156337 +137 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 4 +138 0.315228 0.148778 +139 0.315228 0.144934 +137 0.461845 0.154139 +136 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 4 +135 0.462387 0.156337 +134 0.461845 0.154139 +140 0.315228 0.144934 +141 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +142 0.266174 0.148778 +143 0.266174 0.144934 +139 0.315228 0.144934 +138 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +141 0.315228 0.148778 +140 0.315228 0.144934 +144 0.266174 0.144934 +145 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +146 0.217121 0.148778 +147 0.217121 0.144934 +143 0.266174 0.144934 +142 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +148 0.217121 0.144934 +149 0.217121 0.148778 +145 0.266174 0.148778 +144 0.266174 0.144934 +SURF 0x10 +mat 1 +refs 4 +150 0.168848 0.155252 +151 0.168848 0.160962 +152 0.149673 0.167235 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +155 0.0980683 0.219579 +156 0.112883 0.189975 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +149 0.217121 0.148778 +148 0.217121 0.144934 +158 0.168848 0.155252 +159 0.168848 0.160962 +SURF 0x10 +mat 1 +refs 4 +147 0.217121 0.144934 +146 0.217121 0.148778 +151 0.168848 0.160962 +150 0.168848 0.155252 +SURF 0x10 +mat 1 +refs 4 +3 0.903866 0.222712 +4 0.900887 0.229292 +135 0.462387 0.156337 +0 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +136 0.462387 0.156337 +4 0.900887 0.229292 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +134 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +137 0.461845 0.154139 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +17 0.315228 0.153932 +138 0.315228 0.148778 +136 0.462387 0.156337 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +135 0.462387 0.156337 +141 0.315228 0.148778 +20 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +13 0.461845 0.14959 +137 0.461845 0.154139 +139 0.315228 0.144934 +22 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +140 0.315228 0.144934 +134 0.461845 0.154139 +12 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +142 0.266174 0.148778 +138 0.315228 0.148778 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +20 0.315228 0.153932 +141 0.315228 0.148778 +145 0.266174 0.148778 +34 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +22 0.315228 0.142799 +139 0.315228 0.144934 +143 0.266174 0.144934 +37 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +144 0.266174 0.144934 +140 0.315228 0.144934 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +40 0.217121 0.153932 +146 0.217121 0.148778 +142 0.266174 0.148778 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +37 0.266174 0.142799 +143 0.266174 0.144934 +147 0.217121 0.144934 +41 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +42 0.217121 0.142799 +148 0.217121 0.144934 +144 0.266174 0.144934 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +150 0.168848 0.155252 +153 0.149673 0.161525 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +154 0.0980683 0.213721 +157 0.112883 0.184264 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +149 0.217121 0.148778 +159 0.168848 0.160962 +48 0.168848 0.168617 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +147 0.217121 0.144934 +150 0.168848 0.155252 +43 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +46 0.168848 0.152081 +158 0.168848 0.155252 +148 0.217121 0.144934 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +34 0.266174 0.153932 +145 0.266174 0.148778 +149 0.217121 0.148778 +47 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +52 0.168848 0.168617 +151 0.168848 0.160962 +146 0.217121 0.148778 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +162 0.0980683 0.219579 +163 0.112883 0.189975 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +159 0.168848 0.160962 +164 0.149673 0.167235 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +165 0.131278 0.167197 +166 0.112883 0.181094 +161 0.112883 0.181094 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +168 0.131278 0.183733 +169 0.149673 0.174889 +170 0.149673 0.267584 +171 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +171 0.131278 0.267584 +170 0.149673 0.267584 +172 0.149673 0.279183 +173 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +174 0.131278 0.289754 +175 0.149673 0.290337 +106 0.149673 0.300617 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +177 0.131278 0.267584 +178 0.112883 0.267584 +179 0.112883 0.278589 +180 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +180 0.131278 0.278886 +179 0.112883 0.278589 +181 0.112883 0.28917 +182 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +182 0.131278 0.289754 +181 0.112883 0.28917 +183 0.112883 0.298923 +184 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +184 0.131278 0.29977 +183 0.112883 0.298923 +185 0.112883 0.307471 +186 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +186 0.131278 0.308549 +185 0.112883 0.307471 +187 0.112883 0.314486 +188 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +188 0.131278 0.315753 +187 0.112883 0.314486 +189 0.112883 0.319699 +190 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +190 0.131278 0.321107 +189 0.112883 0.319699 +191 0.112675 0.320002 +192 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +192 0.131278 0.323092 +191 0.112675 0.320002 +193 0.112675 0.320946 +194 0.131278 0.322404 +SURF 0x10 +mat 1 +refs 4 +194 0.131278 0.322404 +193 0.112675 0.320946 +195 0.112675 0.320002 +196 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +196 0.131278 0.323092 +195 0.112675 0.320002 +197 0.112883 0.319699 +198 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +198 0.131278 0.321107 +197 0.112883 0.319699 +199 0.112883 0.314486 +200 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +200 0.131278 0.315753 +199 0.112883 0.314486 +201 0.112883 0.307471 +202 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +202 0.131278 0.308549 +201 0.112883 0.307471 +61 0.112883 0.298923 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +173 0.131278 0.278886 +172 0.149673 0.279183 +175 0.149673 0.290337 +174 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +203 0.131278 0.183733 +204 0.112883 0.19763 +178 0.112883 0.267584 +177 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +163 0.112883 0.189975 +206 0.112883 0.184264 +207 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +164 0.149673 0.167235 +209 0.149673 0.161525 +210 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +207 0.131278 0.170368 +206 0.112883 0.184264 +166 0.112883 0.181094 +165 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +210 0.131278 0.170368 +209 0.149673 0.161525 +45 0.149673 0.158354 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +152 0.149673 0.167235 +169 0.149673 0.174889 +168 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +156 0.112883 0.189975 +204 0.112883 0.19763 +203 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +55 0.112883 0.19763 +168 0.131278 0.183733 +171 0.131278 0.267584 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +56 0.112883 0.267584 +171 0.131278 0.267584 +173 0.131278 0.278886 +57 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +60 0.112883 0.28917 +174 0.131278 0.289754 +176 0.131278 0.29977 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +57 0.112883 0.278589 +173 0.131278 0.278886 +174 0.131278 0.289754 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +208 0.131278 0.176078 +210 0.131278 0.170368 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +157 0.112883 0.184264 +210 0.131278 0.170368 +167 0.131278 0.167197 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +205 0.131278 0.176078 +168 0.131278 0.183733 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +166 0.112883 0.181094 +211 0.0980683 0.210469 +160 0.0980683 0.210469 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +178 0.112883 0.267584 +212 0.0984157 0.266471 +213 0.0984158 0.275626 +179 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +179 0.112883 0.278589 +213 0.0984158 0.275626 +214 0.0984163 0.28443 +181 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +181 0.112883 0.28917 +214 0.0984163 0.28443 +215 0.0984169 0.292544 +183 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +183 0.112883 0.298923 +215 0.0984169 0.292544 +216 0.0984177 0.299656 +185 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +185 0.112883 0.307471 +216 0.0984177 0.299656 +217 0.0984185 0.305493 +187 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +187 0.112883 0.314486 +217 0.0984185 0.305493 +218 0.0984192 0.309829 +189 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +189 0.112883 0.319699 +218 0.0984192 0.309829 +219 0.0984197 0.3125 +191 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +191 0.112675 0.320002 +219 0.0984197 0.3125 +220 0.0984199 0.313402 +193 0.112675 0.320946 +SURF 0x10 +mat 1 +refs 4 +193 0.112675 0.320946 +220 0.0984199 0.313402 +221 0.0984197 0.3125 +195 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +195 0.112675 0.320002 +221 0.0984197 0.3125 +222 0.0984192 0.309829 +197 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +197 0.112883 0.319699 +222 0.0984192 0.309829 +223 0.0984185 0.305493 +199 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +199 0.112883 0.314486 +223 0.0984185 0.305493 +224 0.0984177 0.299656 +201 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +201 0.112883 0.307471 +224 0.0984177 0.299656 +62 0.0984169 0.292544 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +204 0.112883 0.19763 +225 0.0980683 0.227431 +212 0.0984157 0.266471 +178 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +162 0.0980683 0.219579 +226 0.0980683 0.213721 +206 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +206 0.112883 0.184264 +226 0.0980683 0.213721 +211 0.0980683 0.210469 +166 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +155 0.0980683 0.219579 +225 0.0980683 0.227431 +204 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +44 0.149673 0.158354 +165 0.131278 0.167197 +167 0.131278 0.167197 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +64 0.149673 0.267584 +177 0.131278 0.267584 +180 0.131278 0.278886 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +65 0.149673 0.279183 +180 0.131278 0.278886 +182 0.131278 0.289754 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +95 0.149673 0.290337 +182 0.131278 0.289754 +184 0.131278 0.29977 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +96 0.149673 0.300617 +184 0.131278 0.29977 +186 0.131278 0.308549 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +97 0.149673 0.309627 +186 0.131278 0.308549 +188 0.131278 0.315753 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +98 0.149673 0.317021 +188 0.131278 0.315753 +190 0.131278 0.321107 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +99 0.149673 0.322516 +190 0.131278 0.321107 +192 0.131278 0.323092 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +100 0.149673 0.324171 +192 0.131278 0.323092 +194 0.131278 0.322404 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +101 0.149673 0.325037 +194 0.131278 0.322404 +196 0.131278 0.323092 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +102 0.149673 0.324171 +196 0.131278 0.323092 +198 0.131278 0.321107 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +103 0.149673 0.322516 +198 0.131278 0.321107 +200 0.131278 0.315753 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +104 0.149673 0.317021 +200 0.131278 0.315753 +202 0.131278 0.308549 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +105 0.149673 0.309627 +202 0.131278 0.308549 +176 0.131278 0.29977 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +121 0.149673 0.174889 +203 0.131278 0.183733 +177 0.131278 0.267584 +64 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +205 0.131278 0.176078 +207 0.131278 0.170368 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +153 0.149673 0.161525 +207 0.131278 0.170368 +165 0.131278 0.167197 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +208 0.131278 0.176078 +203 0.131278 0.183733 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +169 0.149673 0.174889 +52 0.168848 0.168617 +51 0.168068 0.267584 +170 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +170 0.149673 0.267584 +51 0.168068 0.267584 +76 0.168068 0.279481 +172 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +175 0.149673 0.290337 +70 0.168068 0.290921 +69 0.168068 0.301464 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +172 0.149673 0.279183 +76 0.168068 0.279481 +70 0.168068 0.290921 +175 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +159 0.168848 0.160962 +158 0.168848 0.155252 +209 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +209 0.149673 0.161525 +158 0.168848 0.155252 +46 0.168848 0.152081 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +151 0.168848 0.160962 +52 0.168848 0.168617 +169 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +31 0.266105 0.391907 +30 0.266105 0.391907 +81 0.217744 0.327458 +113 0.218063 0.327394 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +112 0.220855 0.323924 +111 0.225388 0.318289 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +115 0.220855 0.323924 +114 0.218063 0.327394 +29 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +31 0.266105 0.391907 +113 0.218063 0.327394 +112 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +27 0.266105 0.391907 +116 0.225388 0.318289 +115 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 3 +25 0.266174 0.267584 +24 0.266174 0.384097 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +119 0.247402 0.290921 +118 0.238922 0.301464 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +130 0.266105 0.389705 +33 0.266105 0.391907 +111 0.225388 0.318289 +110 0.231488 0.310705 +SURF 0x10 +mat 1 +refs 4 +131 0.266174 0.389414 +130 0.266105 0.389705 +110 0.231488 0.310705 +109 0.238922 0.301464 +SURF 0x10 +mat 1 +refs 4 +24 0.266174 0.384097 +131 0.266174 0.389414 +109 0.238922 0.301464 +108 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +24 0.266174 0.384097 +108 0.247402 0.290921 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +116 0.225388 0.318289 +27 0.266105 0.391907 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +117 0.231488 0.310705 +133 0.266105 0.389705 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +120 0.256605 0.279481 +119 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +35 0.266174 0.267584 +120 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 25 +227 0.0967994 0.221362 +228 0.0967994 0.223591 +229 0.0967994 0.227555 +230 0.0967994 0.232935 +231 0.0967994 0.26614 +232 0.0967994 0.274253 +233 0.0967994 0.281737 +234 0.0967994 0.288634 +235 0.0967994 0.294679 +236 0.0967994 0.29964 +237 0.0967994 0.303326 +238 0.0967994 0.305596 +239 0.0967994 0.306363 +240 0.0967994 0.305596 +241 0.0967994 0.303326 +242 0.0967994 0.29964 +243 0.0967994 0.294679 +244 0.0967994 0.288634 +245 0.0967994 0.281737 +246 0.0967994 0.274253 +247 0.0967994 0.26614 +248 0.0967994 0.232935 +249 0.0967994 0.227555 +250 0.0967994 0.223591 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +252 0.0976736 0.26641 +253 0.0970995 0.266291 +254 0.0970226 0.231601 +255 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +256 0.097674 0.275357 +257 0.0970992 0.274869 +253 0.0970995 0.266291 +252 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +258 0.0976731 0.291773 +259 0.097101 0.290389 +260 0.0970999 0.282945 +261 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +261 0.0976737 0.283901 +260 0.0970999 0.282945 +257 0.0970992 0.274869 +256 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +262 0.0975263 0.216378 +263 0.0969944 0.220514 +264 0.0970048 0.225222 +265 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +266 0.0975305 0.213247 +267 0.0969902 0.217885 +263 0.0969944 0.220514 +262 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +255 0.0974981 0.229538 +254 0.0970226 0.231601 +268 0.0970048 0.225222 +269 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +270 0.0975305 0.213247 +271 0.0969902 0.217885 +267 0.0969902 0.217885 +266 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +272 0.0976736 0.26641 +273 0.0970995 0.266291 +274 0.0970992 0.274869 +275 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +275 0.097674 0.275357 +274 0.0970992 0.274869 +276 0.0970999 0.282945 +277 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +277 0.0976737 0.283901 +276 0.0970999 0.282945 +278 0.097101 0.290389 +279 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +279 0.0976731 0.291773 +278 0.097101 0.290389 +280 0.0971022 0.296917 +281 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +281 0.0976724 0.298671 +280 0.0971022 0.296917 +282 0.0971035 0.302275 +283 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +283 0.0976717 0.30433 +282 0.0971035 0.302275 +284 0.0971046 0.306259 +285 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +285 0.0976711 0.308534 +284 0.0971046 0.306259 +286 0.0971053 0.308712 +287 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +287 0.0976707 0.311121 +286 0.0971053 0.308712 +288 0.0971056 0.309541 +289 0.0976705 0.311995 +SURF 0x10 +mat 1 +refs 4 +289 0.0976705 0.311995 +288 0.0971056 0.309541 +290 0.0971053 0.308712 +291 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +291 0.0976707 0.311121 +290 0.0971053 0.308712 +292 0.0971046 0.306259 +293 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +293 0.0976711 0.308534 +292 0.0971046 0.306259 +294 0.0971035 0.302275 +295 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +295 0.0976717 0.30433 +294 0.0971035 0.302275 +296 0.0971022 0.296917 +297 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +297 0.0976724 0.298671 +296 0.0971022 0.296917 +259 0.097101 0.290389 +258 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +298 0.0974981 0.229538 +299 0.0970226 0.231601 +273 0.0970995 0.266291 +272 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +269 0.0975159 0.22201 +268 0.0970048 0.225222 +300 0.0969944 0.220514 +301 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +301 0.0975263 0.216378 +300 0.0969944 0.220514 +271 0.0969902 0.217885 +270 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +265 0.0975159 0.22201 +264 0.0970048 0.225222 +299 0.0970226 0.231601 +298 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +252 0.0976736 0.26641 +255 0.0974981 0.229538 +54 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +58 0.0984158 0.275626 +256 0.097674 0.275357 +252 0.0976736 0.26641 +53 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +62 0.0984169 0.292544 +258 0.0976731 0.291773 +261 0.0976737 0.283901 +59 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +261 0.0976737 0.283901 +256 0.097674 0.275357 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +262 0.0975263 0.216378 +265 0.0975159 0.22201 +155 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +266 0.0975305 0.213247 +262 0.0975263 0.216378 +154 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +255 0.0974981 0.229538 +269 0.0975159 0.22201 +162 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +211 0.0980683 0.210469 +270 0.0975305 0.213247 +266 0.0975305 0.213247 +160 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +212 0.0984157 0.266471 +272 0.0976736 0.26641 +275 0.097674 0.275357 +213 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +213 0.0984158 0.275626 +275 0.097674 0.275357 +277 0.0976737 0.283901 +214 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +214 0.0984163 0.28443 +277 0.0976737 0.283901 +279 0.0976731 0.291773 +215 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +215 0.0984169 0.292544 +279 0.0976731 0.291773 +281 0.0976724 0.298671 +216 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +216 0.0984177 0.299656 +281 0.0976724 0.298671 +283 0.0976717 0.30433 +217 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +217 0.0984185 0.305493 +283 0.0976717 0.30433 +285 0.0976711 0.308534 +218 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +218 0.0984192 0.309829 +285 0.0976711 0.308534 +287 0.0976707 0.311121 +219 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +219 0.0984197 0.3125 +287 0.0976707 0.311121 +289 0.0976705 0.311995 +220 0.0984199 0.313402 +SURF 0x10 +mat 1 +refs 4 +220 0.0984199 0.313402 +289 0.0976705 0.311995 +291 0.0976707 0.311121 +221 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +221 0.0984197 0.3125 +291 0.0976707 0.311121 +293 0.0976711 0.308534 +222 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +222 0.0984192 0.309829 +293 0.0976711 0.308534 +295 0.0976717 0.30433 +223 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +223 0.0984185 0.305493 +295 0.0976717 0.30433 +297 0.0976724 0.298671 +224 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +224 0.0984177 0.299656 +297 0.0976724 0.298671 +258 0.0976731 0.291773 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +225 0.0980683 0.227431 +298 0.0974981 0.229538 +272 0.0976736 0.26641 +212 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +162 0.0980683 0.219579 +269 0.0975159 0.22201 +301 0.0975263 0.216378 +226 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +226 0.0980683 0.213721 +301 0.0975263 0.216378 +270 0.0975305 0.213247 +211 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +155 0.0980683 0.219579 +265 0.0975159 0.22201 +298 0.0974981 0.229538 +225 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +227 0.0967994 0.221362 +271 0.0969902 0.217885 +300 0.0969944 0.220514 +228 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +228 0.0967994 0.223591 +300 0.0969944 0.220514 +268 0.0970048 0.225222 +229 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +229 0.0967994 0.227555 +268 0.0970048 0.225222 +254 0.0970226 0.231601 +230 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +230 0.0967994 0.232935 +254 0.0970226 0.231601 +253 0.0970995 0.266291 +231 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +231 0.0967994 0.26614 +253 0.0970995 0.266291 +257 0.0970992 0.274869 +232 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +232 0.0967994 0.274253 +257 0.0970992 0.274869 +260 0.0970999 0.282945 +233 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +233 0.0967994 0.281737 +260 0.0970999 0.282945 +259 0.097101 0.290389 +234 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +234 0.0967994 0.288634 +259 0.097101 0.290389 +296 0.0971022 0.296917 +235 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +235 0.0967994 0.294679 +296 0.0971022 0.296917 +294 0.0971035 0.302275 +236 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +236 0.0967994 0.29964 +294 0.0971035 0.302275 +292 0.0971046 0.306259 +237 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +237 0.0967994 0.303326 +292 0.0971046 0.306259 +290 0.0971053 0.308712 +238 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +238 0.0967994 0.305596 +290 0.0971053 0.308712 +288 0.0971056 0.309541 +239 0.0967994 0.306363 +SURF 0x10 +mat 1 +refs 4 +239 0.0967994 0.306363 +288 0.0971056 0.309541 +286 0.0971053 0.308712 +240 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +240 0.0967994 0.305596 +286 0.0971053 0.308712 +284 0.0971046 0.306259 +241 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +241 0.0967994 0.303326 +284 0.0971046 0.306259 +282 0.0971035 0.302275 +242 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +242 0.0967994 0.29964 +282 0.0971035 0.302275 +280 0.0971022 0.296917 +243 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +243 0.0967994 0.294679 +280 0.0971022 0.296917 +278 0.097101 0.290389 +244 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +244 0.0967994 0.288634 +278 0.097101 0.290389 +276 0.0970999 0.282945 +245 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +245 0.0967994 0.281737 +276 0.0970999 0.282945 +274 0.0970992 0.274869 +246 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +246 0.0967994 0.274253 +274 0.0970992 0.274869 +273 0.0970995 0.266291 +247 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +247 0.0967994 0.26614 +273 0.0970995 0.266291 +299 0.0970226 0.231601 +248 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +248 0.0967994 0.232935 +299 0.0970226 0.231601 +264 0.0970048 0.225222 +249 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +249 0.0967994 0.227555 +264 0.0970048 0.225222 +263 0.0969944 0.220514 +250 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +250 0.0967994 0.223591 +263 0.0969944 0.220514 +267 0.0969902 0.217885 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +251 0.0967994 0.221362 +267 0.0969902 0.217885 +271 0.0969902 0.217885 +227 0.0967994 0.221362 +kids 0 +OBJECT poly +name "Spinner" +numvert 161 +0.0762 0.0498239 0.00991059 +0.0762 0.0469331 0.0194403 +0.0762 0.0422387 0.028223 +0.0762 0.035921 0.035921 +0.0762 0.028223 0.0422387 +0.0762 0.0194403 0.0469331 +0.0762 0.00991059 0.0498239 +0.0762 -9.3315e-18 0.0508 +0.0762 -0.00991059 0.0498239 +0.0762 -0.0194403 0.0469331 +0.0762 -0.028223 0.0422387 +0.0762 -0.035921 0.035921 +0.0762 -0.0422387 0.028223 +0.0762 -0.0469331 0.0194403 +0.0762 -0.0498239 0.00991059 +0.0762 -0.0508 1.2442e-17 +0.0762 -0.0498239 -0.00991059 +0.0762 -0.0469331 -0.0194403 +0.0762 -0.0422387 -0.028223 +0.0762 -0.035921 -0.035921 +0.0762 -0.028223 -0.0422387 +0.0762 -0.0194403 -0.0469331 +0.0762 -0.00991059 -0.0498239 +0.0762 3.1105e-18 -0.0508 +0.0762 0.00991059 -0.0498239 +0.0762 0.0194403 -0.0469331 +0.0762 0.028223 -0.0422387 +0.0762 0.035921 -0.035921 +0.0762 0.0422387 -0.028223 +0.0762 0.0469331 -0.0194403 +0.0762 0.0498239 -0.00991059 +0.0762 0.0508 1.8663e-17 +0.0450424 0.0397968 1.31541e-17 +0.0450424 0.0390321 -0.00776398 +0.0259924 0.0288237 -0.0057334 +0.0259924 0.0293884 6.40787e-18 +0.0450424 0.0367675 -0.0152296 +0.0259924 0.0271514 -0.0112465 +0.0450424 0.0330899 -0.0221099 +0.0259924 0.0244356 -0.0163273 +0.0450424 0.0281406 -0.0281406 +0.0259924 0.0207808 -0.0207808 +0.0450424 0.0221099 -0.0330899 +0.0259924 0.0163273 -0.0244356 +0.0450424 0.0152296 -0.0367675 +0.0259924 0.0112465 -0.0271514 +0.0450424 0.00776398 -0.0390321 +0.0259924 0.0057334 -0.0288237 +0.0450424 2.43677e-18 -0.0397968 +0.0259924 1.79946e-18 -0.0293884 +0.0450424 -0.00776398 -0.0390321 +0.0259924 -0.0057334 -0.0288237 +0.0450424 -0.0152296 -0.0367675 +0.0259924 -0.0112465 -0.0271514 +0.0450424 -0.0221099 -0.0330899 +0.0259924 -0.0163273 -0.0244356 +0.0450424 -0.0281406 -0.0281406 +0.0259924 -0.0207808 -0.0207808 +0.0450424 -0.0330899 -0.0221099 +0.0259924 -0.0244356 -0.0163273 +0.0450424 -0.0367675 -0.0152296 +0.0259924 -0.0271514 -0.0112465 +0.0450424 -0.0390321 -0.00776398 +0.0259924 -0.0288237 -0.0057334 +0.0450424 -0.0397968 8.2806e-18 +0.0259924 -0.0293884 2.80895e-18 +0.0450424 -0.0390321 0.00776398 +0.0259924 -0.0288237 0.0057334 +0.0450424 -0.0367675 0.0152296 +0.0259924 -0.0271514 0.0112465 +0.0450424 -0.0330899 0.0221099 +0.0259924 -0.0244356 0.0163273 +0.0450424 -0.0281406 0.0281406 +0.0259924 -0.0207808 0.0207808 +0.0450424 -0.0221099 0.0330899 +0.0259924 -0.0163273 0.0244356 +0.0450424 -0.0152296 0.0367675 +0.0259924 -0.0112465 0.0271514 +0.0450424 -0.00776398 0.0390321 +0.0259924 -0.0057334 0.0288237 +0.0450424 -7.31032e-18 0.0397968 +0.0259924 -5.39839e-18 0.0293884 +0.0450424 0.00776398 0.0390321 +0.0259924 0.0057334 0.0288237 +0.0450424 0.0152296 0.0367675 +0.0259924 0.0112465 0.0271514 +0.0450424 0.0221099 0.0330899 +0.0259924 0.0163273 0.0244356 +0.0450424 0.0281406 0.0281406 +0.0259924 0.0207808 0.0207808 +0.0450424 0.0330899 0.0221099 +0.0259924 0.0244356 0.0163273 +0.0450424 0.0367675 0.0152296 +0.0259924 0.0271514 0.0112465 +0.0450424 0.0390321 0.00776398 +0.0259924 0.0288237 0.0057334 +0.0132924 0.0216178 -0.00430005 +0.0132924 0.0220413 2.68138e-18 +0.0132924 0.0203635 -0.00843485 +0.0132924 0.0183267 -0.0122455 +0.0132924 0.0155856 -0.0155856 +0.0132924 0.0122455 -0.0183267 +0.0132924 0.00843485 -0.0203635 +0.0132924 0.00430005 -0.0216178 +0.0132924 1.3496e-18 -0.0220413 +0.0132924 -0.00430005 -0.0216178 +0.0132924 -0.00843485 -0.0203635 +0.0132924 -0.0122455 -0.0183267 +0.0132924 -0.0155856 -0.0155856 +0.0132924 -0.0183267 -0.0122455 +0.0132924 -0.0203635 -0.00843485 +0.0132924 -0.0216178 -0.00430005 +0.0132924 -0.0220413 -1.78104e-20 +0.0132924 -0.0216178 0.00430005 +0.0132924 -0.0203635 0.00843485 +0.0132924 -0.0183267 0.0122455 +0.0132924 -0.0155856 0.0155856 +0.0132924 -0.0122455 0.0183267 +0.0132924 -0.00843485 0.0203635 +0.0132924 -0.00430005 0.0216178 +0.0132924 -4.04879e-18 0.0220413 +0.0132924 0.00430005 0.0216178 +0.0132924 0.00843485 0.0203635 +0.0132924 0.0122455 0.0183267 +0.0132924 0.0155856 0.0155856 +0.0132924 0.0183267 0.0122455 +0.0132924 0.0203635 0.00843485 +0.0132924 0.0216178 0.00430005 +0.003175 0.0106499 -0.00211839 +0.003175 0.0108585 3.31121e-18 +0.003175 0.010032 -0.00415538 +0.003175 0.00902854 -0.00603268 +0.003175 0.00767814 -0.00767814 +0.003175 0.00603268 -0.00902854 +0.003175 0.00415538 -0.010032 +0.003175 0.00211839 -0.0106499 +0.003175 6.64871e-19 -0.0108585 +0.003175 -0.00211839 -0.0106499 +0.003175 -0.00415538 -0.010032 +0.003175 -0.00603268 -0.00902854 +0.003175 -0.00767814 -0.00767814 +0.003175 -0.00902854 -0.00603268 +0.003175 -0.010032 -0.00415538 +0.003175 -0.0106499 -0.00211839 +0.003175 -0.0108585 1.98147e-18 +0.003175 -0.0106499 0.00211839 +0.003175 -0.010032 0.00415538 +0.003175 -0.00902854 0.00603268 +0.003175 -0.00767814 0.00767814 +0.003175 -0.00603268 0.00902854 +0.003175 -0.00415538 0.010032 +0.003175 -0.00211839 0.0106499 +0.003175 -1.99461e-18 0.0108585 +0.003175 0.00211839 0.0106499 +0.003175 0.00415538 0.010032 +0.003175 0.00603268 0.00902854 +0.003175 0.00767814 0.00767814 +0.003175 0.00902854 0.00603268 +0.003175 0.010032 0.00415538 +0.003175 0.0106499 0.00211839 +0 0 6.16106e-18 +numsurf 161 +SURF 0x10 +mat 4 +refs 32 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +18 0 0 +19 0 0 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +24 0 0 +25 0 0 +26 0 0 +27 0 0 +28 0 0 +29 0 0 +30 0 0 +31 0 0 +SURF 0x10 +mat 4 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x10 +mat 4 +refs 4 +33 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x10 +mat 4 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x10 +mat 4 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x10 +mat 4 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x10 +mat 4 +refs 4 +42 0 0 +44 0 0 +45 0 0 +43 0 0 +SURF 0x10 +mat 4 +refs 4 +44 0 0 +46 0 0 +47 0 0 +45 0 0 +SURF 0x10 +mat 4 +refs 4 +46 0 0 +48 0 0 +49 0 0 +47 0 0 +SURF 0x10 +mat 4 +refs 4 +48 0 0 +50 0 0 +51 0 0 +49 0 0 +SURF 0x10 +mat 4 +refs 4 +50 0 0 +52 0 0 +53 0 0 +51 0 0 +SURF 0x10 +mat 4 +refs 4 +52 0 0 +54 0 0 +55 0 0 +53 0 0 +SURF 0x10 +mat 4 +refs 4 +54 0 0 +56 0 0 +57 0 0 +55 0 0 +SURF 0x10 +mat 4 +refs 4 +56 0 0 +58 0 0 +59 0 0 +57 0 0 +SURF 0x10 +mat 4 +refs 4 +58 0 0 +60 0 0 +61 0 0 +59 0 0 +SURF 0x10 +mat 4 +refs 4 +60 0 0 +62 0 0 +63 0 0 +61 0 0 +SURF 0x10 +mat 4 +refs 4 +62 0 0 +64 0 0 +65 0 0 +63 0 0 +SURF 0x10 +mat 4 +refs 4 +64 0 0 +66 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 4 +refs 4 +66 0 0 +68 0 0 +69 0 0 +67 0 0 +SURF 0x10 +mat 4 +refs 4 +68 0 0 +70 0 0 +71 0 0 +69 0 0 +SURF 0x10 +mat 4 +refs 4 +70 0 0 +72 0 0 +73 0 0 +71 0 0 +SURF 0x10 +mat 4 +refs 4 +72 0 0 +74 0 0 +75 0 0 +73 0 0 +SURF 0x10 +mat 4 +refs 4 +74 0 0 +76 0 0 +77 0 0 +75 0 0 +SURF 0x10 +mat 4 +refs 4 +76 0 0 +78 0 0 +79 0 0 +77 0 0 +SURF 0x10 +mat 4 +refs 4 +78 0 0 +80 0 0 +81 0 0 +79 0 0 +SURF 0x10 +mat 4 +refs 4 +80 0 0 +82 0 0 +83 0 0 +81 0 0 +SURF 0x10 +mat 4 +refs 4 +82 0 0 +84 0 0 +85 0 0 +83 0 0 +SURF 0x10 +mat 4 +refs 4 +84 0 0 +86 0 0 +87 0 0 +85 0 0 +SURF 0x10 +mat 4 +refs 4 +86 0 0 +88 0 0 +89 0 0 +87 0 0 +SURF 0x10 +mat 4 +refs 4 +88 0 0 +90 0 0 +91 0 0 +89 0 0 +SURF 0x10 +mat 4 +refs 4 +90 0 0 +92 0 0 +93 0 0 +91 0 0 +SURF 0x10 +mat 4 +refs 4 +92 0 0 +94 0 0 +95 0 0 +93 0 0 +SURF 0x10 +mat 4 +refs 4 +94 0 0 +32 0 0 +35 0 0 +95 0 0 +SURF 0x10 +mat 4 +refs 4 +35 0 0 +34 0 0 +96 0 0 +97 0 0 +SURF 0x10 +mat 4 +refs 4 +34 0 0 +37 0 0 +98 0 0 +96 0 0 +SURF 0x10 +mat 4 +refs 4 +37 0 0 +39 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 4 +refs 4 +39 0 0 +41 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 4 +refs 4 +41 0 0 +43 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 4 +refs 4 +43 0 0 +45 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 4 +refs 4 +45 0 0 +47 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 4 +refs 4 +47 0 0 +49 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 4 +refs 4 +49 0 0 +51 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 4 +refs 4 +51 0 0 +53 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 4 +refs 4 +53 0 0 +55 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 4 +refs 4 +55 0 0 +57 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 4 +refs 4 +57 0 0 +59 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 4 +refs 4 +59 0 0 +61 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 4 +refs 4 +61 0 0 +63 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 4 +refs 4 +63 0 0 +65 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 4 +refs 4 +65 0 0 +67 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 4 +refs 4 +67 0 0 +69 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 4 +refs 4 +69 0 0 +71 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 4 +refs 4 +71 0 0 +73 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 4 +refs 4 +73 0 0 +75 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 4 +refs 4 +75 0 0 +77 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 4 +refs 4 +77 0 0 +79 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 4 +refs 4 +79 0 0 +81 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 4 +refs 4 +81 0 0 +83 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 4 +refs 4 +83 0 0 +85 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 4 +refs 4 +85 0 0 +87 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 4 +refs 4 +87 0 0 +89 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 4 +refs 4 +89 0 0 +91 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 4 +refs 4 +91 0 0 +93 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 4 +refs 4 +93 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 4 +refs 4 +95 0 0 +35 0 0 +97 0 0 +127 0 0 +SURF 0x10 +mat 4 +refs 4 +97 0 0 +96 0 0 +128 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 4 +96 0 0 +98 0 0 +130 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 4 +98 0 0 +99 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 4 +127 0 0 +97 0 0 +129 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 3 +128 0 0 +160 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 3 +130 0 0 +160 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 3 +131 0 0 +160 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 3 +132 0 0 +160 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 3 +133 0 0 +160 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 3 +134 0 0 +160 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 3 +135 0 0 +160 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 3 +136 0 0 +160 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 3 +137 0 0 +160 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 3 +138 0 0 +160 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 3 +139 0 0 +160 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 3 +140 0 0 +160 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 3 +141 0 0 +160 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 3 +142 0 0 +160 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 3 +143 0 0 +160 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 3 +144 0 0 +160 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 3 +145 0 0 +160 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 3 +146 0 0 +160 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 3 +147 0 0 +160 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 3 +148 0 0 +160 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 3 +149 0 0 +160 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 3 +150 0 0 +160 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 3 +151 0 0 +160 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 3 +152 0 0 +160 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 3 +153 0 0 +160 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 3 +154 0 0 +160 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 3 +155 0 0 +160 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 3 +156 0 0 +160 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 3 +157 0 0 +160 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 3 +158 0 0 +160 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 3 +159 0 0 +160 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 3 +129 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +30 0 0 +33 0 0 +32 0 0 +SURF 0x10 +mat 4 +refs 4 +30 0 0 +29 0 0 +36 0 0 +33 0 0 +SURF 0x10 +mat 4 +refs 4 +29 0 0 +28 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 4 +refs 4 +28 0 0 +27 0 0 +40 0 0 +38 0 0 +SURF 0x10 +mat 4 +refs 4 +27 0 0 +26 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 4 +refs 4 +26 0 0 +25 0 0 +44 0 0 +42 0 0 +SURF 0x10 +mat 4 +refs 4 +25 0 0 +24 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 4 +refs 4 +24 0 0 +23 0 0 +48 0 0 +46 0 0 +SURF 0x10 +mat 4 +refs 4 +23 0 0 +22 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 4 +refs 4 +22 0 0 +21 0 0 +52 0 0 +50 0 0 +SURF 0x10 +mat 4 +refs 4 +21 0 0 +20 0 0 +54 0 0 +52 0 0 +SURF 0x10 +mat 4 +refs 4 +20 0 0 +19 0 0 +56 0 0 +54 0 0 +SURF 0x10 +mat 4 +refs 4 +19 0 0 +18 0 0 +58 0 0 +56 0 0 +SURF 0x10 +mat 4 +refs 4 +18 0 0 +17 0 0 +60 0 0 +58 0 0 +SURF 0x10 +mat 4 +refs 4 +17 0 0 +16 0 0 +62 0 0 +60 0 0 +SURF 0x10 +mat 4 +refs 4 +16 0 0 +15 0 0 +64 0 0 +62 0 0 +SURF 0x10 +mat 4 +refs 4 +15 0 0 +14 0 0 +66 0 0 +64 0 0 +SURF 0x10 +mat 4 +refs 4 +14 0 0 +13 0 0 +68 0 0 +66 0 0 +SURF 0x10 +mat 4 +refs 4 +13 0 0 +12 0 0 +70 0 0 +68 0 0 +SURF 0x10 +mat 4 +refs 4 +12 0 0 +11 0 0 +72 0 0 +70 0 0 +SURF 0x10 +mat 4 +refs 4 +11 0 0 +10 0 0 +74 0 0 +72 0 0 +SURF 0x10 +mat 4 +refs 4 +10 0 0 +9 0 0 +76 0 0 +74 0 0 +SURF 0x10 +mat 4 +refs 4 +9 0 0 +8 0 0 +78 0 0 +76 0 0 +SURF 0x10 +mat 4 +refs 4 +8 0 0 +7 0 0 +80 0 0 +78 0 0 +SURF 0x10 +mat 4 +refs 4 +7 0 0 +6 0 0 +82 0 0 +80 0 0 +SURF 0x10 +mat 4 +refs 4 +6 0 0 +5 0 0 +84 0 0 +82 0 0 +SURF 0x10 +mat 4 +refs 4 +5 0 0 +4 0 0 +86 0 0 +84 0 0 +SURF 0x10 +mat 4 +refs 4 +4 0 0 +3 0 0 +88 0 0 +86 0 0 +SURF 0x10 +mat 4 +refs 4 +3 0 0 +2 0 0 +90 0 0 +88 0 0 +SURF 0x10 +mat 4 +refs 4 +2 0 0 +1 0 0 +92 0 0 +90 0 0 +SURF 0x10 +mat 4 +refs 4 +1 0 0 +0 0 0 +94 0 0 +92 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +32 0 0 +94 0 0 +0 0 0 +kids 0 +OBJECT poly +name "UC_Main_Center" +numvert 28 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 22 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +4 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 3 +7 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +10 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +12 0 0 +13 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +0 0 0 +3 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 3 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +24 0 0 +25 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +26 0 0 +27 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +14 0 0 +17 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +12 0 0 +27 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +8 0 0 +22 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +20 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +1 0 0 +16 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +17 0 0 +16 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +10 0 0 +25 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +7 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +4 0 0 +19 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_Main_Left" +numvert 22 +0.489939 -0.321589 0.261464 +0.48895 -0.322594 0.26061 +0.48895 -0.325422 0.258204 +0.489939 -0.326427 0.25735 +0.526061 -0.326427 0.25735 +0.52705 -0.325422 0.258204 +0.52705 -0.322594 0.26061 +0.526061 -0.321589 0.261464 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +18 0 0 +19 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +10 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +14 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +17 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +21 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +11 0 0 +0 0 0 +7 0 0 +kids 0 +OBJECT poly +name "UC_Main_Right" +numvert 22 +0.526061 -0.321589 -0.261464 +0.52705 -0.322594 -0.26061 +0.52705 -0.325422 -0.258204 +0.526061 -0.326427 -0.25735 +0.489939 -0.326427 -0.25735 +0.48895 -0.325422 -0.258204 +0.48895 -0.322594 -0.26061 +0.489939 -0.321589 -0.261464 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +5 0 0 +12 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +5 0 0 +4 0 0 +14 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +3 0 0 +17 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +2 0 0 +15 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +1 0 0 +18 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +0 0 0 +20 0 0 +18 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +8 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_L_Tyre" +numvert 194 +0.508 -0.33655 0.26035 +0.511763 -0.355466 0.262865 +0.508 -0.355836 0.262865 +0.51538 -0.354368 0.262865 +0.518715 -0.352586 0.262865 +0.521637 -0.350187 0.262865 +0.524036 -0.347265 0.262865 +0.525818 -0.34393 0.262865 +0.526916 -0.340313 0.262865 +0.527286 -0.33655 0.262865 +0.526916 -0.332787 0.262865 +0.525818 -0.32917 0.262865 +0.524036 -0.325835 0.262865 +0.521637 -0.322913 0.262865 +0.518715 -0.320514 0.262865 +0.51538 -0.318732 0.262865 +0.511763 -0.317634 0.262865 +0.508 -0.317264 0.262865 +0.504237 -0.317634 0.262865 +0.50062 -0.318732 0.262865 +0.497285 -0.320514 0.262865 +0.494363 -0.322913 0.262865 +0.491964 -0.325835 0.262865 +0.490182 -0.32917 0.262865 +0.489084 -0.332787 0.262865 +0.488714 -0.33655 0.262865 +0.489084 -0.340313 0.262865 +0.490182 -0.34393 0.262865 +0.491964 -0.347265 0.262865 +0.494363 -0.350187 0.262865 +0.497285 -0.352586 0.262865 +0.50062 -0.354368 0.262865 +0.504237 -0.355466 0.262865 +0.51478 -0.370635 0.263563 +0.508 -0.371302 0.263563 +0.521299 -0.368657 0.263563 +0.527307 -0.365446 0.263563 +0.532574 -0.361124 0.263563 +0.536896 -0.355857 0.263563 +0.540107 -0.349849 0.263563 +0.542085 -0.34333 0.263563 +0.542752 -0.33655 0.263563 +0.542085 -0.32977 0.263563 +0.540107 -0.323251 0.263563 +0.536896 -0.317243 0.263563 +0.532574 -0.311976 0.263563 +0.527307 -0.307654 0.263563 +0.521299 -0.304443 0.263563 +0.51478 -0.302465 0.263563 +0.508 -0.301798 0.263563 +0.50122 -0.302465 0.263563 +0.494701 -0.304443 0.263563 +0.488693 -0.307654 0.263563 +0.483426 -0.311976 0.263563 +0.479104 -0.317243 0.263563 +0.475893 -0.323251 0.263563 +0.473915 -0.32977 0.263563 +0.473248 -0.33655 0.263563 +0.473915 -0.34333 0.263563 +0.475893 -0.349849 0.263563 +0.479104 -0.355857 0.263563 +0.483426 -0.361124 0.263563 +0.488693 -0.365446 0.263563 +0.494701 -0.368657 0.263563 +0.50122 -0.370635 0.263563 +0.516454 -0.379053 0.269509 +0.508 -0.379886 0.269509 +0.524584 -0.376587 0.269509 +0.532076 -0.372582 0.269509 +0.538643 -0.367193 0.269509 +0.544032 -0.360626 0.269509 +0.548037 -0.353134 0.269509 +0.550503 -0.345004 0.269509 +0.551336 -0.33655 0.269509 +0.550503 -0.328096 0.269509 +0.548037 -0.319966 0.269509 +0.544032 -0.312474 0.269509 +0.538643 -0.305907 0.269509 +0.532076 -0.300518 0.269509 +0.524584 -0.296513 0.269509 +0.516454 -0.294047 0.269509 +0.508 -0.293214 0.269509 +0.499546 -0.294047 0.269509 +0.491416 -0.296513 0.269509 +0.483924 -0.300518 0.269509 +0.477357 -0.305907 0.269509 +0.471968 -0.312474 0.269509 +0.467963 -0.319966 0.269509 +0.465497 -0.328096 0.269509 +0.464664 -0.33655 0.269509 +0.465497 -0.345004 0.269509 +0.467963 -0.353134 0.269509 +0.471968 -0.360626 0.269509 +0.477357 -0.367193 0.269509 +0.483924 -0.372582 0.269509 +0.491416 -0.376587 0.269509 +0.499546 -0.379053 0.269509 +0.516454 -0.379053 0.289291 +0.508 -0.379886 0.289291 +0.524584 -0.376587 0.289291 +0.532076 -0.372582 0.289291 +0.538643 -0.367193 0.289291 +0.544032 -0.360626 0.289291 +0.548037 -0.353134 0.289291 +0.550503 -0.345004 0.289291 +0.551336 -0.33655 0.289291 +0.550503 -0.328096 0.289291 +0.548037 -0.319966 0.289291 +0.544032 -0.312474 0.289291 +0.538643 -0.305907 0.289291 +0.532076 -0.300518 0.289291 +0.524584 -0.296513 0.289291 +0.516454 -0.294047 0.289291 +0.508 -0.293214 0.289291 +0.499546 -0.294047 0.289291 +0.491416 -0.296513 0.289291 +0.483924 -0.300518 0.289291 +0.477357 -0.305907 0.289291 +0.471968 -0.312474 0.289291 +0.467963 -0.319966 0.289291 +0.465497 -0.328096 0.289291 +0.464664 -0.33655 0.289291 +0.465497 -0.345004 0.289291 +0.467963 -0.353134 0.289291 +0.471968 -0.360626 0.289291 +0.477357 -0.367193 0.289291 +0.483924 -0.372582 0.289291 +0.491416 -0.376587 0.289291 +0.499546 -0.379053 0.289291 +0.51478 -0.370635 0.295237 +0.508 -0.371302 0.295237 +0.521299 -0.368657 0.295237 +0.527307 -0.365446 0.295237 +0.532574 -0.361124 0.295237 +0.536896 -0.355857 0.295237 +0.540107 -0.349849 0.295237 +0.542085 -0.34333 0.295237 +0.542752 -0.33655 0.295237 +0.542085 -0.32977 0.295237 +0.540107 -0.323251 0.295237 +0.536896 -0.317243 0.295237 +0.532574 -0.311976 0.295237 +0.527307 -0.307654 0.295237 +0.521299 -0.304443 0.295237 +0.51478 -0.302465 0.295237 +0.508 -0.301798 0.295237 +0.50122 -0.302465 0.295237 +0.494701 -0.304443 0.295237 +0.488693 -0.307654 0.295237 +0.483426 -0.311976 0.295237 +0.479104 -0.317243 0.295237 +0.475893 -0.323251 0.295237 +0.473915 -0.32977 0.295237 +0.473248 -0.33655 0.295237 +0.473915 -0.34333 0.295237 +0.475893 -0.349849 0.295237 +0.479104 -0.355857 0.295237 +0.483426 -0.361124 0.295237 +0.488693 -0.365446 0.295237 +0.494701 -0.368657 0.295237 +0.50122 -0.370635 0.295237 +0.511763 -0.355466 0.295935 +0.508 -0.355836 0.295935 +0.51538 -0.354368 0.295935 +0.518715 -0.352586 0.295935 +0.521637 -0.350187 0.295935 +0.524036 -0.347265 0.295935 +0.525818 -0.34393 0.295935 +0.526916 -0.340313 0.295935 +0.527286 -0.33655 0.295935 +0.526916 -0.332787 0.295935 +0.525818 -0.32917 0.295935 +0.524036 -0.325835 0.295935 +0.521637 -0.322913 0.295935 +0.518715 -0.320514 0.295935 +0.51538 -0.318732 0.295935 +0.511763 -0.317634 0.295935 +0.508 -0.317264 0.295935 +0.504237 -0.317634 0.295935 +0.50062 -0.318732 0.295935 +0.497285 -0.320514 0.295935 +0.494363 -0.322913 0.295935 +0.491964 -0.325835 0.295935 +0.490182 -0.32917 0.295935 +0.489084 -0.332787 0.295935 +0.488714 -0.33655 0.295935 +0.489084 -0.340313 0.295935 +0.490182 -0.34393 0.295935 +0.491964 -0.347265 0.295935 +0.494363 -0.350187 0.295935 +0.497285 -0.352586 0.295935 +0.50062 -0.354368 0.295935 +0.504237 -0.355466 0.295935 +0.508 -0.33655 0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "UC_L_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.343362 0.3048 +0.5334 -0.343362 0.3048 +0.5334 -0.319928 0.3048 +0.45085 -0.3175 0.3048 +0.558993 -0.343365 0.303107 +0.59055 -0.340187 0.29845 +0.59055 -0.324379 0.29845 +0.559694 -0.322015 0.303107 +0.437731 -0.334414 0.296121 +0.436824 -0.332298 0.298207 +0.416759 -0.304471 0.290148 +0.413555 -0.304734 0.285426 +0.45085 -0.286766 0.301364 +0.45085 -0.289186 0.303784 +0.5334 -0.294042 0.303784 +0.5334 -0.291621 0.301364 +0.607931 -0.312778 0.29036 +0.606244 -0.314361 0.291901 +0.61595 -0.327165 0.289154 +0.61595 -0.324744 0.288185 +0.45085 -0.345814 0.303784 +0.45085 -0.348234 0.301364 +0.5334 -0.348234 0.301364 +0.5334 -0.345814 0.303784 +0.560554 -0.295796 0.299899 +0.560474 -0.298215 0.302159 +0.59055 -0.30612 0.297688 +0.59055 -0.303699 0.295873 +0.558833 -0.348235 0.299899 +0.558913 -0.345816 0.302159 +0.59055 -0.345059 0.295873 +0.59055 -0.342639 0.297688 +0.44302 -0.339609 0.300683 +0.444012 -0.341594 0.298781 +0.420557 -0.295133 0.290547 +0.419499 -0.292852 0.287691 +0.61595 -0.342519 0.288185 +0.61595 -0.340099 0.289154 +0.43815 -0.335392 0.29372 +0.41275 -0.3048 0.282802 +0.45085 -0.28575 0.298912 +0.5334 -0.290606 0.298912 +0.608585 -0.31202 0.289156 +0.61595 -0.323729 0.287205 +0.5334 -0.296494 0.3048 +0.45085 -0.291638 0.3048 +0.560587 -0.294781 0.297611 +0.59055 -0.302683 0.294034 +0.5588 -0.34925 0.297611 +0.5334 -0.34925 0.298912 +0.59055 -0.308571 0.29845 +0.560394 -0.300666 0.303107 +0.45085 -0.34925 0.298912 +0.4445 -0.342569 0.29641 +0.421555 -0.297286 0.291804 +0.441898 -0.337364 0.301399 +0.4191 -0.291991 0.285178 +0.435842 -0.330006 0.299031 +0.59055 -0.346075 0.294034 +0.604751 -0.316874 0.293248 +0.61595 -0.343535 0.287205 +0.419029 -0.304289 0.292139 +0.615292 -0.337806 0.28956 +0.615596 -0.329572 0.28956 +0.618726 -0.335751 0.286648 +0.615444 -0.333689 0.28956 +0.45085 -0.3175 0.254 +0.5334 -0.319928 0.254 +0.5334 -0.343362 0.254 +0.45085 -0.343362 0.254 +0.559694 -0.322015 0.255693 +0.59055 -0.324379 0.26035 +0.59055 -0.340187 0.26035 +0.558993 -0.343365 0.255693 +0.413555 -0.304734 0.273374 +0.416759 -0.304471 0.268652 +0.436824 -0.332298 0.260593 +0.437731 -0.334414 0.262679 +0.5334 -0.291621 0.257436 +0.5334 -0.294042 0.255016 +0.45085 -0.289186 0.255016 +0.45085 -0.286766 0.257436 +0.61595 -0.324744 0.270615 +0.61595 -0.327165 0.269646 +0.606244 -0.314361 0.266899 +0.607931 -0.312778 0.26844 +0.5334 -0.345814 0.255016 +0.5334 -0.348234 0.257436 +0.45085 -0.348234 0.257436 +0.45085 -0.345814 0.255016 +0.59055 -0.303699 0.262927 +0.59055 -0.30612 0.261112 +0.560474 -0.298215 0.256641 +0.560554 -0.295796 0.258901 +0.558913 -0.345816 0.256641 +0.558833 -0.348235 0.258901 +0.59055 -0.342639 0.261112 +0.59055 -0.345059 0.262927 +0.444012 -0.341594 0.260019 +0.44302 -0.339609 0.258117 +0.419499 -0.292852 0.271109 +0.420557 -0.295133 0.268253 +0.61595 -0.340099 0.269646 +0.61595 -0.342519 0.270615 +0.41275 -0.3048 0.275998 +0.43815 -0.335392 0.26508 +0.5334 -0.290606 0.259888 +0.45085 -0.28575 0.259888 +0.61595 -0.323729 0.271595 +0.608585 -0.31202 0.269644 +0.45085 -0.291638 0.254 +0.5334 -0.296494 0.254 +0.59055 -0.302683 0.264766 +0.560587 -0.294781 0.261189 +0.5334 -0.34925 0.259888 +0.5588 -0.34925 0.261189 +0.560394 -0.300666 0.255693 +0.59055 -0.308571 0.26035 +0.4445 -0.342569 0.26239 +0.45085 -0.34925 0.259888 +0.421555 -0.297286 0.266996 +0.441898 -0.337364 0.257401 +0.4191 -0.291991 0.273622 +0.435842 -0.330006 0.259769 +0.59055 -0.346075 0.264766 +0.604751 -0.316874 0.265552 +0.61595 -0.343535 0.271595 +0.419029 -0.304289 0.266661 +0.615292 -0.337806 0.26924 +0.615596 -0.329572 0.26924 +0.615444 -0.333689 0.26924 +0.618726 -0.335751 0.272152 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +1 0.145182 0.476687 +2 0.145182 0.498546 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +5 0.167399 0.479648 +6 0.167399 0.494394 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +4 0.155131 0.476684 +7 0.155404 0.496599 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +8 0.107991 0.485033 +9 0.107638 0.487007 +10 0.0998379 0.512965 +11 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +12 0.113091 0.52948 +13 0.113091 0.527223 +14 0.145182 0.522693 +15 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +16 0.174156 0.505216 +17 0.1735 0.503739 +18 0.177273 0.491795 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +20 0.113091 0.474399 +21 0.113091 0.472142 +22 0.145182 0.472142 +23 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.155738 0.521057 +25 0.155707 0.5188 +26 0.167399 0.511426 +27 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +28 0.155069 0.472141 +29 0.1551 0.474397 +23 0.145182 0.474399 +22 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +29 0.1551 0.474397 +28 0.155069 0.472141 +30 0.167399 0.475104 +31 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +21 0.113091 0.472142 +20 0.113091 0.474399 +32 0.110047 0.480187 +33 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +33 0.110432 0.478336 +32 0.110047 0.480187 +9 0.107638 0.487007 +8 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +11 0.0985923 0.512719 +10 0.0998379 0.512965 +34 0.101314 0.521675 +35 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +27 0.167399 0.513685 +26 0.167399 0.511426 +17 0.1735 0.503739 +16 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +31 0.167399 0.477361 +30 0.167399 0.475104 +36 0.177273 0.477473 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +15 0.145182 0.524951 +14 0.145182 0.522693 +25 0.155707 0.5188 +24 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +8 0.107991 0.485033 +11 0.0985923 0.512719 +39 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +12 0.113091 0.52948 +15 0.145182 0.524951 +41 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +16 0.174156 0.505216 +19 0.177273 0.494054 +43 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +20 0.113091 0.474399 +23 0.145182 0.474399 +1 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.145182 0.520406 +14 0.145182 0.522693 +13 0.113091 0.527223 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +24 0.155738 0.521057 +27 0.167399 0.513685 +47 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +28 0.155069 0.472141 +22 0.145182 0.472142 +49 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +29 0.1551 0.474397 +31 0.167399 0.477361 +5 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +50 0.167399 0.50914 +26 0.167399 0.511426 +25 0.155707 0.5188 +51 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +21 0.113091 0.472142 +33 0.110432 0.478336 +53 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +45 0.113091 0.524936 +13 0.113091 0.527223 +34 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +32 0.110047 0.480187 +20 0.113091 0.474399 +0 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +35 0.100903 0.523803 +12 0.113091 0.52948 +40 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +33 0.110432 0.478336 +8 0.107991 0.485033 +38 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +9 0.107638 0.487007 +32 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +11 0.0985923 0.512719 +35 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +30 0.167399 0.475104 +28 0.155069 0.472141 +48 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +27 0.167399 0.513685 +16 0.174156 0.505216 +42 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +17 0.1735 0.503739 +26 0.167399 0.511426 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +15 0.145182 0.524951 +24 0.155738 0.521057 +46 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +23 0.145182 0.474399 +29 0.1551 0.474397 +4 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +51 0.155676 0.516514 +25 0.155707 0.5188 +14 0.145182 0.522693 +44 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +22 0.145182 0.472142 +21 0.113091 0.472142 +52 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +36 0.177273 0.477473 +30 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +34 0.101314 0.521675 +10 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +10 0.0998379 0.512965 +9 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +0 0.113091 0.476687 +3 0.113091 0.500811 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +61 0.10072 0.513134 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +57 0.107256 0.489145 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.498546 +44 0.145182 0.520406 +45 0.113091 0.524936 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +7 0.155404 0.496599 +51 0.155676 0.516514 +44 0.145182 0.520406 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +50 0.167399 0.50914 +51 0.155676 0.516514 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +13 0.113091 0.527223 +12 0.113091 0.52948 +35 0.100903 0.523803 +61 0.10072 0.513134 +45 0.113091 0.524936 +54 0.101702 0.519667 +34 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +61 0.10072 0.513134 +3 0.113091 0.500811 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +5 0.167399 0.479648 +31 0.167399 0.477361 +37 0.177273 0.47973 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +6 0.167399 0.494394 +59 0.17292 0.501395 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +18 0.177273 0.491795 +17 0.1735 0.503739 +59 0.17292 0.501395 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +65 0.177077 0.48571 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +18 0.177273 0.491795 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +19 0.177273 0.494054 +18 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +62 0.177017 0.481869 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +37 0.177273 0.47973 +36 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +43 0.177273 0.495 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +36 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +67 0.145182 0.498546 +68 0.145182 0.476687 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +71 0.167399 0.494394 +72 0.167399 0.479648 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +70 0.155404 0.496599 +73 0.155131 0.476684 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +74 0.0985923 0.512719 +75 0.0998379 0.512965 +76 0.107638 0.487007 +77 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +78 0.145182 0.524951 +79 0.145182 0.522693 +80 0.113091 0.527223 +81 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +82 0.177273 0.494054 +83 0.177273 0.491795 +84 0.1735 0.503739 +85 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +86 0.145182 0.474399 +87 0.145182 0.472142 +88 0.113091 0.472142 +89 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.167399 0.513685 +91 0.167399 0.511426 +92 0.155707 0.5188 +93 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +87 0.145182 0.472142 +86 0.145182 0.474399 +94 0.1551 0.474397 +95 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +96 0.167399 0.477361 +97 0.167399 0.475104 +95 0.155069 0.472141 +94 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +98 0.110432 0.478336 +99 0.110047 0.480187 +89 0.113091 0.474399 +88 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +77 0.107991 0.485033 +76 0.107638 0.487007 +99 0.110047 0.480187 +98 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +100 0.100903 0.523803 +101 0.101314 0.521675 +75 0.0998379 0.512965 +74 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +85 0.174156 0.505216 +84 0.1735 0.503739 +91 0.167399 0.511426 +90 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +102 0.177273 0.47973 +103 0.177273 0.477473 +97 0.167399 0.475104 +96 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +93 0.155738 0.521057 +92 0.155707 0.5188 +79 0.145182 0.522693 +78 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +104 0.0982794 0.512658 +74 0.0985923 0.512719 +77 0.107991 0.485033 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.145182 0.525898 +78 0.145182 0.524951 +81 0.113091 0.52948 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.177273 0.495 +82 0.177273 0.494054 +85 0.174156 0.505216 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.476687 +86 0.145182 0.474399 +89 0.113091 0.474399 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.113091 0.524936 +80 0.113091 0.527223 +79 0.145182 0.522693 +111 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +112 0.167399 0.514632 +90 0.167399 0.513685 +93 0.155738 0.521057 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.145182 0.471194 +87 0.145182 0.472142 +95 0.155069 0.472141 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.479648 +96 0.167399 0.477361 +94 0.1551 0.474397 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +116 0.155676 0.516514 +92 0.155707 0.5188 +91 0.167399 0.511426 +117 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +118 0.110622 0.477426 +98 0.110432 0.478336 +88 0.113091 0.472142 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +101 0.101314 0.521675 +80 0.113091 0.527223 +110 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +69 0.113091 0.476687 +89 0.113091 0.474399 +99 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +107 0.113091 0.530428 +81 0.113091 0.52948 +100 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +105 0.108154 0.484121 +77 0.107991 0.485033 +98 0.110432 0.478336 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +99 0.110047 0.480187 +76 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +100 0.100903 0.523803 +74 0.0985923 0.512719 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +115 0.155056 0.471194 +95 0.155069 0.472141 +97 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +109 0.17441 0.505923 +85 0.174156 0.505216 +90 0.167399 0.513685 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +117 0.167399 0.50914 +91 0.167399 0.511426 +84 0.1735 0.503739 +125 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +113 0.155751 0.522004 +93 0.155738 0.521057 +78 0.145182 0.524951 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +73 0.155131 0.476684 +94 0.1551 0.474397 +86 0.145182 0.474399 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +111 0.145182 0.520406 +79 0.145182 0.522693 +92 0.155707 0.5188 +116 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +119 0.113091 0.471194 +88 0.113091 0.472142 +87 0.145182 0.472142 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +97 0.167399 0.475104 +103 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +75 0.0998379 0.512965 +101 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +76 0.107638 0.487007 +75 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +66 0.113091 0.500811 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +123 0.107256 0.489145 +127 0.10072 0.513134 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +123 0.107256 0.489145 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +110 0.113091 0.524936 +111 0.145182 0.520406 +67 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +111 0.145182 0.520406 +116 0.155676 0.516514 +70 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +116 0.155676 0.516514 +117 0.167399 0.50914 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +101 0.101314 0.521675 +120 0.101702 0.519667 +110 0.113091 0.524936 +127 0.10072 0.513134 +100 0.100903 0.523803 +81 0.113091 0.52948 +80 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +110 0.113091 0.524936 +66 0.113091 0.500811 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +128 0.177017 0.481869 +102 0.177273 0.47973 +96 0.167399 0.477361 +72 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +117 0.167399 0.50914 +125 0.17292 0.501395 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +129 0.177136 0.48955 +125 0.17292 0.501395 +84 0.1735 0.503739 +83 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +128 0.177017 0.481869 +130 0.177077 0.48571 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +129 0.177136 0.48955 +83 0.177273 0.491795 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +83 0.177273 0.491795 +82 0.177273 0.494054 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +102 0.177273 0.47973 +128 0.177017 0.481869 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +103 0.177273 0.477473 +102 0.177273 0.47973 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +82 0.177273 0.494054 +108 0.177273 0.495 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +126 0.177273 0.476525 +103 0.177273 0.477473 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +35 0.100903 0.523803 +34 0.101314 0.521675 +101 0.101314 0.521675 +100 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +39 0.0982794 0.512658 +104 0.0982794 0.512658 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +41 0.145182 0.525898 +106 0.145182 0.525898 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +43 0.177273 0.495 +108 0.177273 0.495 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +47 0.167399 0.514632 +112 0.167399 0.514632 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +49 0.145182 0.471194 +114 0.145182 0.471194 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +53 0.110622 0.477426 +118 0.110622 0.477426 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +40 0.113091 0.530428 +107 0.113091 0.530428 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +38 0.108154 0.484121 +105 0.108154 0.484121 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +56 0.100748 0.524606 +122 0.100748 0.524606 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +48 0.155056 0.471194 +115 0.155056 0.471194 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +42 0.17441 0.505923 +109 0.17441 0.505923 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +46 0.155751 0.522004 +113 0.155751 0.522004 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +52 0.113091 0.471194 +119 0.113091 0.471194 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +58 0.167399 0.474156 +124 0.167399 0.474156 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +61 0.10072 0.513134 +127 0.10072 0.513134 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +35 0.100903 0.523803 +100 0.100903 0.523803 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +43 0.177273 0.495 +64 0.178352 0.483786 +131 0.178352 0.483786 +108 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +64 0.178352 0.483786 +60 0.177273 0.476525 +126 0.177273 0.476525 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +5 0.167399 0.479648 +62 0.177017 0.481869 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +63 0.177136 0.48955 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +130 0.177077 0.48571 +129 0.177136 0.48955 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +130 0.177077 0.48571 +128 0.177017 0.481869 +72 0.167399 0.479648 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +65 0.177077 0.48571 +63 0.177136 0.48955 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +129 0.177136 0.48955 +130 0.177077 0.48571 +71 0.167399 0.494394 +kids 0 +OBJECT poly +name "UC_R_Tyre" +numvert 194 +0.508 -0.355836 -0.262865 +0.511763 -0.355466 -0.262865 +0.508 -0.33655 -0.26035 +0.51538 -0.354368 -0.262865 +0.518715 -0.352586 -0.262865 +0.521637 -0.350187 -0.262865 +0.524036 -0.347265 -0.262865 +0.525818 -0.34393 -0.262865 +0.526916 -0.340313 -0.262865 +0.527286 -0.33655 -0.262865 +0.526916 -0.332787 -0.262865 +0.525818 -0.32917 -0.262865 +0.524036 -0.325835 -0.262865 +0.521637 -0.322913 -0.262865 +0.518715 -0.320514 -0.262865 +0.51538 -0.318732 -0.262865 +0.511763 -0.317634 -0.262865 +0.508 -0.317264 -0.262865 +0.504237 -0.317634 -0.262865 +0.50062 -0.318732 -0.262865 +0.497285 -0.320514 -0.262865 +0.494363 -0.322913 -0.262865 +0.491964 -0.325835 -0.262865 +0.490182 -0.32917 -0.262865 +0.489084 -0.332787 -0.262865 +0.488714 -0.33655 -0.262865 +0.489084 -0.340313 -0.262865 +0.490182 -0.34393 -0.262865 +0.491964 -0.347265 -0.262865 +0.494363 -0.350187 -0.262865 +0.497285 -0.352586 -0.262865 +0.50062 -0.354368 -0.262865 +0.504237 -0.355466 -0.262865 +0.508 -0.371302 -0.263563 +0.51478 -0.370635 -0.263563 +0.521299 -0.368657 -0.263563 +0.527307 -0.365446 -0.263563 +0.532574 -0.361124 -0.263563 +0.536896 -0.355857 -0.263563 +0.540107 -0.349849 -0.263563 +0.542085 -0.34333 -0.263563 +0.542752 -0.33655 -0.263563 +0.542085 -0.32977 -0.263563 +0.540107 -0.323251 -0.263563 +0.536896 -0.317243 -0.263563 +0.532574 -0.311976 -0.263563 +0.527307 -0.307654 -0.263563 +0.521299 -0.304443 -0.263563 +0.51478 -0.302465 -0.263563 +0.508 -0.301798 -0.263563 +0.50122 -0.302465 -0.263563 +0.494701 -0.304443 -0.263563 +0.488693 -0.307654 -0.263563 +0.483426 -0.311976 -0.263563 +0.479104 -0.317243 -0.263563 +0.475893 -0.323251 -0.263563 +0.473915 -0.32977 -0.263563 +0.473248 -0.33655 -0.263563 +0.473915 -0.34333 -0.263563 +0.475893 -0.349849 -0.263563 +0.479104 -0.355857 -0.263563 +0.483426 -0.361124 -0.263563 +0.488693 -0.365446 -0.263563 +0.494701 -0.368657 -0.263563 +0.50122 -0.370635 -0.263563 +0.508 -0.379886 -0.269509 +0.516454 -0.379053 -0.269509 +0.524584 -0.376587 -0.269509 +0.532076 -0.372582 -0.269509 +0.538643 -0.367193 -0.269509 +0.544032 -0.360626 -0.269509 +0.548037 -0.353134 -0.269509 +0.550503 -0.345004 -0.269509 +0.551336 -0.33655 -0.269509 +0.550503 -0.328096 -0.269509 +0.548037 -0.319966 -0.269509 +0.544032 -0.312474 -0.269509 +0.538643 -0.305907 -0.269509 +0.532076 -0.300518 -0.269509 +0.524584 -0.296513 -0.269509 +0.516454 -0.294047 -0.269509 +0.508 -0.293214 -0.269509 +0.499546 -0.294047 -0.269509 +0.491416 -0.296513 -0.269509 +0.483924 -0.300518 -0.269509 +0.477357 -0.305907 -0.269509 +0.471968 -0.312474 -0.269509 +0.467963 -0.319966 -0.269509 +0.465497 -0.328096 -0.269509 +0.464664 -0.33655 -0.269509 +0.465497 -0.345004 -0.269509 +0.467963 -0.353134 -0.269509 +0.471968 -0.360626 -0.269509 +0.477357 -0.367193 -0.269509 +0.483924 -0.372582 -0.269509 +0.491416 -0.376587 -0.269509 +0.499546 -0.379053 -0.269509 +0.508 -0.379886 -0.289291 +0.516454 -0.379053 -0.289291 +0.524584 -0.376587 -0.289291 +0.532076 -0.372582 -0.289291 +0.538643 -0.367193 -0.289291 +0.544032 -0.360626 -0.289291 +0.548037 -0.353134 -0.289291 +0.550503 -0.345004 -0.289291 +0.551336 -0.33655 -0.289291 +0.550503 -0.328096 -0.289291 +0.548037 -0.319966 -0.289291 +0.544032 -0.312474 -0.289291 +0.538643 -0.305907 -0.289291 +0.532076 -0.300518 -0.289291 +0.524584 -0.296513 -0.289291 +0.516454 -0.294047 -0.289291 +0.508 -0.293214 -0.289291 +0.499546 -0.294047 -0.289291 +0.491416 -0.296513 -0.289291 +0.483924 -0.300518 -0.289291 +0.477357 -0.305907 -0.289291 +0.471968 -0.312474 -0.289291 +0.467963 -0.319966 -0.289291 +0.465497 -0.328096 -0.289291 +0.464664 -0.33655 -0.289291 +0.465497 -0.345004 -0.289291 +0.467963 -0.353134 -0.289291 +0.471968 -0.360626 -0.289291 +0.477357 -0.367193 -0.289291 +0.483924 -0.372582 -0.289291 +0.491416 -0.376587 -0.289291 +0.499546 -0.379053 -0.289291 +0.508 -0.371302 -0.295237 +0.51478 -0.370635 -0.295237 +0.521299 -0.368657 -0.295237 +0.527307 -0.365446 -0.295237 +0.532574 -0.361124 -0.295237 +0.536896 -0.355857 -0.295237 +0.540107 -0.349849 -0.295237 +0.542085 -0.34333 -0.295237 +0.542752 -0.33655 -0.295237 +0.542085 -0.32977 -0.295237 +0.540107 -0.323251 -0.295237 +0.536896 -0.317243 -0.295237 +0.532574 -0.311976 -0.295237 +0.527307 -0.307654 -0.295237 +0.521299 -0.304443 -0.295237 +0.51478 -0.302465 -0.295237 +0.508 -0.301798 -0.295237 +0.50122 -0.302465 -0.295237 +0.494701 -0.304443 -0.295237 +0.488693 -0.307654 -0.295237 +0.483426 -0.311976 -0.295237 +0.479104 -0.317243 -0.295237 +0.475893 -0.323251 -0.295237 +0.473915 -0.32977 -0.295237 +0.473248 -0.33655 -0.295237 +0.473915 -0.34333 -0.295237 +0.475893 -0.349849 -0.295237 +0.479104 -0.355857 -0.295237 +0.483426 -0.361124 -0.295237 +0.488693 -0.365446 -0.295237 +0.494701 -0.368657 -0.295237 +0.50122 -0.370635 -0.295237 +0.508 -0.355836 -0.295935 +0.511763 -0.355466 -0.295935 +0.51538 -0.354368 -0.295935 +0.518715 -0.352586 -0.295935 +0.521637 -0.350187 -0.295935 +0.524036 -0.347265 -0.295935 +0.525818 -0.34393 -0.295935 +0.526916 -0.340313 -0.295935 +0.527286 -0.33655 -0.295935 +0.526916 -0.332787 -0.295935 +0.525818 -0.32917 -0.295935 +0.524036 -0.325835 -0.295935 +0.521637 -0.322913 -0.295935 +0.518715 -0.320514 -0.295935 +0.51538 -0.318732 -0.295935 +0.511763 -0.317634 -0.295935 +0.508 -0.317264 -0.295935 +0.504237 -0.317634 -0.295935 +0.50062 -0.318732 -0.295935 +0.497285 -0.320514 -0.295935 +0.494363 -0.322913 -0.295935 +0.491964 -0.325835 -0.295935 +0.490182 -0.32917 -0.295935 +0.489084 -0.332787 -0.295935 +0.488714 -0.33655 -0.295935 +0.489084 -0.340313 -0.295935 +0.490182 -0.34393 -0.295935 +0.491964 -0.347265 -0.295935 +0.494363 -0.350187 -0.295935 +0.497285 -0.352586 -0.295935 +0.50062 -0.354368 -0.295935 +0.504237 -0.355466 -0.295935 +0.508 -0.33655 -0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +32 0 0 +0 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +34 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +35 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +33 0 0 +0 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +66 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +67 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +65 0 0 +33 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +98 0 0 +66 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +99 0 0 +67 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +97 0 0 +65 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +130 0 0 +98 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +131 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +129 0 0 +97 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +161 0 0 +162 0 0 +130 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +162 0 0 +163 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +163 0 0 +164 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +164 0 0 +165 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +165 0 0 +166 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +166 0 0 +167 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +167 0 0 +168 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +168 0 0 +169 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +169 0 0 +170 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +170 0 0 +171 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +171 0 0 +172 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +172 0 0 +173 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +173 0 0 +174 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +174 0 0 +175 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +175 0 0 +176 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +176 0 0 +177 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +177 0 0 +178 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +178 0 0 +179 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +179 0 0 +180 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +180 0 0 +181 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +181 0 0 +182 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +182 0 0 +183 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +183 0 0 +184 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +184 0 0 +185 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +185 0 0 +186 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +186 0 0 +187 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +187 0 0 +188 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +188 0 0 +189 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +189 0 0 +190 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +190 0 0 +191 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +191 0 0 +192 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +192 0 0 +161 0 0 +129 0 0 +160 0 0 +SURF 0x10 +mat 2 +refs 3 +192 0 0 +191 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +191 0 0 +190 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +190 0 0 +189 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +189 0 0 +188 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +188 0 0 +187 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +187 0 0 +186 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +186 0 0 +185 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +185 0 0 +184 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +184 0 0 +183 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +183 0 0 +182 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +182 0 0 +181 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +181 0 0 +180 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +180 0 0 +179 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +179 0 0 +178 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +178 0 0 +177 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +177 0 0 +176 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +176 0 0 +175 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +175 0 0 +174 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +174 0 0 +173 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +173 0 0 +172 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +172 0 0 +171 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +171 0 0 +170 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +170 0 0 +169 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +169 0 0 +168 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +168 0 0 +167 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +167 0 0 +166 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +166 0 0 +165 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +165 0 0 +164 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +164 0 0 +163 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +163 0 0 +162 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +162 0 0 +161 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +161 0 0 +192 0 0 +193 0 0 +kids 0 +OBJECT poly +name "UC_R_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.3175 -0.3048 +0.5334 -0.319928 -0.3048 +0.5334 -0.343362 -0.3048 +0.45085 -0.343362 -0.3048 +0.559694 -0.322015 -0.303107 +0.59055 -0.324379 -0.29845 +0.59055 -0.340187 -0.29845 +0.558993 -0.343365 -0.303107 +0.413555 -0.304734 -0.285426 +0.416759 -0.304471 -0.290148 +0.436824 -0.332298 -0.298207 +0.437731 -0.334414 -0.296121 +0.5334 -0.291621 -0.301364 +0.5334 -0.294042 -0.303784 +0.45085 -0.289186 -0.303784 +0.45085 -0.286766 -0.301364 +0.61595 -0.324744 -0.288185 +0.61595 -0.327165 -0.289154 +0.606244 -0.314361 -0.291901 +0.607931 -0.312778 -0.29036 +0.5334 -0.345814 -0.303784 +0.5334 -0.348234 -0.301364 +0.45085 -0.348234 -0.301364 +0.45085 -0.345814 -0.303784 +0.59055 -0.303699 -0.295873 +0.59055 -0.30612 -0.297688 +0.560474 -0.298215 -0.302159 +0.560554 -0.295796 -0.299899 +0.558913 -0.345816 -0.302159 +0.558833 -0.348235 -0.299899 +0.59055 -0.342639 -0.297688 +0.59055 -0.345059 -0.295873 +0.444012 -0.341594 -0.298781 +0.44302 -0.339609 -0.300683 +0.419499 -0.292852 -0.287691 +0.420557 -0.295133 -0.290547 +0.61595 -0.340099 -0.289154 +0.61595 -0.342519 -0.288185 +0.41275 -0.3048 -0.282802 +0.43815 -0.335392 -0.29372 +0.5334 -0.290606 -0.298912 +0.45085 -0.28575 -0.298912 +0.61595 -0.323729 -0.287205 +0.608585 -0.31202 -0.289156 +0.45085 -0.291638 -0.3048 +0.5334 -0.296494 -0.3048 +0.59055 -0.302683 -0.294034 +0.560587 -0.294781 -0.297611 +0.5334 -0.34925 -0.298912 +0.5588 -0.34925 -0.297611 +0.560394 -0.300666 -0.303107 +0.59055 -0.308571 -0.29845 +0.4445 -0.342569 -0.29641 +0.45085 -0.34925 -0.298912 +0.421555 -0.297286 -0.291804 +0.441898 -0.337364 -0.301399 +0.4191 -0.291991 -0.285178 +0.435842 -0.330006 -0.299031 +0.59055 -0.346075 -0.294034 +0.604751 -0.316874 -0.293248 +0.61595 -0.343535 -0.287205 +0.419029 -0.304289 -0.292139 +0.615292 -0.337806 -0.28956 +0.615596 -0.329572 -0.28956 +0.615444 -0.333689 -0.28956 +0.618726 -0.335751 -0.286648 +0.45085 -0.343362 -0.254 +0.5334 -0.343362 -0.254 +0.5334 -0.319928 -0.254 +0.45085 -0.3175 -0.254 +0.558993 -0.343365 -0.255693 +0.59055 -0.340187 -0.26035 +0.59055 -0.324379 -0.26035 +0.559694 -0.322015 -0.255693 +0.437731 -0.334414 -0.262679 +0.436824 -0.332298 -0.260593 +0.416759 -0.304471 -0.268652 +0.413555 -0.304734 -0.273374 +0.45085 -0.286766 -0.257436 +0.45085 -0.289186 -0.255016 +0.5334 -0.294042 -0.255016 +0.5334 -0.291621 -0.257436 +0.607931 -0.312778 -0.26844 +0.606244 -0.314361 -0.266899 +0.61595 -0.327165 -0.269646 +0.61595 -0.324744 -0.270615 +0.45085 -0.345814 -0.255016 +0.45085 -0.348234 -0.257436 +0.5334 -0.348234 -0.257436 +0.5334 -0.345814 -0.255016 +0.560554 -0.295796 -0.258901 +0.560474 -0.298215 -0.256641 +0.59055 -0.30612 -0.261112 +0.59055 -0.303699 -0.262927 +0.558833 -0.348235 -0.258901 +0.558913 -0.345816 -0.256641 +0.59055 -0.345059 -0.262927 +0.59055 -0.342639 -0.261112 +0.44302 -0.339609 -0.258117 +0.444012 -0.341594 -0.260019 +0.420557 -0.295133 -0.268253 +0.419499 -0.292852 -0.271109 +0.61595 -0.342519 -0.270615 +0.61595 -0.340099 -0.269646 +0.43815 -0.335392 -0.26508 +0.41275 -0.3048 -0.275998 +0.45085 -0.28575 -0.259888 +0.5334 -0.290606 -0.259888 +0.608585 -0.31202 -0.269644 +0.61595 -0.323729 -0.271595 +0.5334 -0.296494 -0.254 +0.45085 -0.291638 -0.254 +0.560587 -0.294781 -0.261189 +0.59055 -0.302683 -0.264766 +0.5588 -0.34925 -0.261189 +0.5334 -0.34925 -0.259888 +0.59055 -0.308571 -0.26035 +0.560394 -0.300666 -0.255693 +0.45085 -0.34925 -0.259888 +0.4445 -0.342569 -0.26239 +0.421555 -0.297286 -0.266996 +0.441898 -0.337364 -0.257401 +0.4191 -0.291991 -0.273622 +0.435842 -0.330006 -0.259769 +0.59055 -0.346075 -0.264766 +0.604751 -0.316874 -0.265552 +0.61595 -0.343535 -0.271595 +0.419029 -0.304289 -0.266661 +0.615292 -0.337806 -0.26924 +0.615596 -0.329572 -0.26924 +0.618726 -0.335751 -0.272152 +0.615444 -0.333689 -0.26924 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +1 0.145182 0.498546 +2 0.145182 0.476687 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +5 0.167399 0.494394 +6 0.167399 0.479648 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +4 0.155404 0.496599 +7 0.155131 0.476684 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +8 0.0985923 0.512719 +9 0.0998379 0.512965 +10 0.107638 0.487007 +11 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +12 0.145182 0.524951 +13 0.145182 0.522693 +14 0.113091 0.527223 +15 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +16 0.177273 0.494054 +17 0.177273 0.491795 +18 0.1735 0.503739 +19 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +20 0.145182 0.474399 +21 0.145182 0.472142 +22 0.113091 0.472142 +23 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.167399 0.513685 +25 0.167399 0.511426 +26 0.155707 0.5188 +27 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +21 0.145182 0.472142 +20 0.145182 0.474399 +28 0.1551 0.474397 +29 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +30 0.167399 0.477361 +31 0.167399 0.475104 +29 0.155069 0.472141 +28 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +32 0.110432 0.478336 +33 0.110047 0.480187 +23 0.113091 0.474399 +22 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +11 0.107991 0.485033 +10 0.107638 0.487007 +33 0.110047 0.480187 +32 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +34 0.100903 0.523803 +35 0.101314 0.521675 +9 0.0998379 0.512965 +8 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +19 0.174156 0.505216 +18 0.1735 0.503739 +25 0.167399 0.511426 +24 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +36 0.177273 0.47973 +37 0.177273 0.477473 +31 0.167399 0.475104 +30 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +27 0.155738 0.521057 +26 0.155707 0.5188 +13 0.145182 0.522693 +12 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +38 0.0982794 0.512658 +8 0.0985923 0.512719 +11 0.107991 0.485033 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.145182 0.525898 +12 0.145182 0.524951 +15 0.113091 0.52948 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.177273 0.495 +16 0.177273 0.494054 +19 0.174156 0.505216 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.476687 +20 0.145182 0.474399 +23 0.113091 0.474399 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.113091 0.524936 +14 0.113091 0.527223 +13 0.145182 0.522693 +45 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +46 0.167399 0.514632 +24 0.167399 0.513685 +27 0.155738 0.521057 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.145182 0.471194 +21 0.145182 0.472142 +29 0.155069 0.472141 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.479648 +30 0.167399 0.477361 +28 0.1551 0.474397 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +50 0.155676 0.516514 +26 0.155707 0.5188 +25 0.167399 0.511426 +51 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +52 0.110622 0.477426 +32 0.110432 0.478336 +22 0.113091 0.472142 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +35 0.101314 0.521675 +14 0.113091 0.527223 +44 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +3 0.113091 0.476687 +23 0.113091 0.474399 +33 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +41 0.113091 0.530428 +15 0.113091 0.52948 +34 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +39 0.108154 0.484121 +11 0.107991 0.485033 +32 0.110432 0.478336 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +33 0.110047 0.480187 +10 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +34 0.100903 0.523803 +8 0.0985923 0.512719 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +49 0.155056 0.471194 +29 0.155069 0.472141 +31 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +43 0.17441 0.505923 +19 0.174156 0.505216 +24 0.167399 0.513685 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +51 0.167399 0.50914 +25 0.167399 0.511426 +18 0.1735 0.503739 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +47 0.155751 0.522004 +27 0.155738 0.521057 +12 0.145182 0.524951 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +7 0.155131 0.476684 +28 0.1551 0.474397 +20 0.145182 0.474399 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +45 0.145182 0.520406 +13 0.145182 0.522693 +26 0.155707 0.5188 +50 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +53 0.113091 0.471194 +22 0.113091 0.472142 +21 0.145182 0.472142 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +31 0.167399 0.475104 +37 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +9 0.0998379 0.512965 +35 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +10 0.107638 0.487007 +9 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +0 0.113091 0.500811 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +57 0.107256 0.489145 +61 0.10072 0.513134 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +57 0.107256 0.489145 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +44 0.113091 0.524936 +45 0.145182 0.520406 +1 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +45 0.145182 0.520406 +50 0.155676 0.516514 +4 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +50 0.155676 0.516514 +51 0.167399 0.50914 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +35 0.101314 0.521675 +54 0.101702 0.519667 +44 0.113091 0.524936 +61 0.10072 0.513134 +34 0.100903 0.523803 +15 0.113091 0.52948 +14 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +44 0.113091 0.524936 +0 0.113091 0.500811 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +62 0.177017 0.481869 +36 0.177273 0.47973 +30 0.167399 0.477361 +6 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +51 0.167399 0.50914 +59 0.17292 0.501395 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +63 0.177136 0.48955 +59 0.17292 0.501395 +18 0.1735 0.503739 +17 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +62 0.177017 0.481869 +64 0.177077 0.48571 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +63 0.177136 0.48955 +17 0.177273 0.491795 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +17 0.177273 0.491795 +16 0.177273 0.494054 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +36 0.177273 0.47973 +62 0.177017 0.481869 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +37 0.177273 0.477473 +36 0.177273 0.47973 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +16 0.177273 0.494054 +42 0.177273 0.495 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +60 0.177273 0.476525 +37 0.177273 0.477473 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +67 0.145182 0.476687 +68 0.145182 0.498546 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +71 0.167399 0.479648 +72 0.167399 0.494394 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +70 0.155131 0.476684 +73 0.155404 0.496599 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +74 0.107991 0.485033 +75 0.107638 0.487007 +76 0.0998379 0.512965 +77 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +78 0.113091 0.52948 +79 0.113091 0.527223 +80 0.145182 0.522693 +81 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +82 0.174156 0.505216 +83 0.1735 0.503739 +84 0.177273 0.491795 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +86 0.113091 0.474399 +87 0.113091 0.472142 +88 0.145182 0.472142 +89 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.155738 0.521057 +91 0.155707 0.5188 +92 0.167399 0.511426 +93 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +94 0.155069 0.472141 +95 0.1551 0.474397 +89 0.145182 0.474399 +88 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +95 0.1551 0.474397 +94 0.155069 0.472141 +96 0.167399 0.475104 +97 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +87 0.113091 0.472142 +86 0.113091 0.474399 +98 0.110047 0.480187 +99 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +99 0.110432 0.478336 +98 0.110047 0.480187 +75 0.107638 0.487007 +74 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +77 0.0985923 0.512719 +76 0.0998379 0.512965 +100 0.101314 0.521675 +101 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +93 0.167399 0.513685 +92 0.167399 0.511426 +83 0.1735 0.503739 +82 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +97 0.167399 0.477361 +96 0.167399 0.475104 +102 0.177273 0.477473 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +81 0.145182 0.524951 +80 0.145182 0.522693 +91 0.155707 0.5188 +90 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +74 0.107991 0.485033 +77 0.0985923 0.512719 +105 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +78 0.113091 0.52948 +81 0.145182 0.524951 +107 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +82 0.174156 0.505216 +85 0.177273 0.494054 +109 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +86 0.113091 0.474399 +89 0.145182 0.474399 +67 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.145182 0.520406 +80 0.145182 0.522693 +79 0.113091 0.527223 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +90 0.155738 0.521057 +93 0.167399 0.513685 +113 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +94 0.155069 0.472141 +88 0.145182 0.472142 +115 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +95 0.1551 0.474397 +97 0.167399 0.477361 +71 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +116 0.167399 0.50914 +92 0.167399 0.511426 +91 0.155707 0.5188 +117 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +87 0.113091 0.472142 +99 0.110432 0.478336 +119 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +111 0.113091 0.524936 +79 0.113091 0.527223 +100 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +98 0.110047 0.480187 +86 0.113091 0.474399 +66 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +101 0.100903 0.523803 +78 0.113091 0.52948 +106 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +99 0.110432 0.478336 +74 0.107991 0.485033 +104 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +75 0.107638 0.487007 +98 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +77 0.0985923 0.512719 +101 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +96 0.167399 0.475104 +94 0.155069 0.472141 +114 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +93 0.167399 0.513685 +82 0.174156 0.505216 +108 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +83 0.1735 0.503739 +92 0.167399 0.511426 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +81 0.145182 0.524951 +90 0.155738 0.521057 +112 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +89 0.145182 0.474399 +95 0.1551 0.474397 +70 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +117 0.155676 0.516514 +91 0.155707 0.5188 +80 0.145182 0.522693 +110 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +88 0.145182 0.472142 +87 0.113091 0.472142 +118 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +102 0.177273 0.477473 +96 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +100 0.101314 0.521675 +76 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +76 0.0998379 0.512965 +75 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +66 0.113091 0.476687 +69 0.113091 0.500811 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +127 0.10072 0.513134 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +123 0.107256 0.489145 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.498546 +110 0.145182 0.520406 +111 0.113091 0.524936 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +73 0.155404 0.496599 +117 0.155676 0.516514 +110 0.145182 0.520406 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +116 0.167399 0.50914 +117 0.155676 0.516514 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +79 0.113091 0.527223 +78 0.113091 0.52948 +101 0.100903 0.523803 +127 0.10072 0.513134 +111 0.113091 0.524936 +120 0.101702 0.519667 +100 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +127 0.10072 0.513134 +69 0.113091 0.500811 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +71 0.167399 0.479648 +97 0.167399 0.477361 +103 0.177273 0.47973 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +72 0.167399 0.494394 +125 0.17292 0.501395 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +84 0.177273 0.491795 +83 0.1735 0.503739 +125 0.17292 0.501395 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +131 0.177077 0.48571 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +84 0.177273 0.491795 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +85 0.177273 0.494054 +84 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +128 0.177017 0.481869 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +103 0.177273 0.47973 +102 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +109 0.177273 0.495 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +102 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +101 0.100903 0.523803 +100 0.101314 0.521675 +35 0.101314 0.521675 +34 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +105 0.0982794 0.512658 +38 0.0982794 0.512658 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +107 0.145182 0.525898 +40 0.145182 0.525898 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +109 0.177273 0.495 +42 0.177273 0.495 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +113 0.167399 0.514632 +46 0.167399 0.514632 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +115 0.145182 0.471194 +48 0.145182 0.471194 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +119 0.110622 0.477426 +52 0.110622 0.477426 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +106 0.113091 0.530428 +41 0.113091 0.530428 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +104 0.108154 0.484121 +39 0.108154 0.484121 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +122 0.100748 0.524606 +56 0.100748 0.524606 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +114 0.155056 0.471194 +49 0.155056 0.471194 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +108 0.17441 0.505923 +43 0.17441 0.505923 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +112 0.155751 0.522004 +47 0.155751 0.522004 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +118 0.113091 0.471194 +53 0.113091 0.471194 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +124 0.167399 0.474156 +58 0.167399 0.474156 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +127 0.10072 0.513134 +61 0.10072 0.513134 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +101 0.100903 0.523803 +34 0.100903 0.523803 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +109 0.177273 0.495 +130 0.178352 0.483786 +65 0.178352 0.483786 +42 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +130 0.178352 0.483786 +126 0.177273 0.476525 +60 0.177273 0.476525 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +64 0.177077 0.48571 +62 0.177017 0.481869 +6 0.167399 0.479648 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 3 +64 0.177077 0.48571 +63 0.177136 0.48955 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +129 0.177136 0.48955 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +71 0.167399 0.479648 +128 0.177017 0.481869 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +63 0.177136 0.48955 +64 0.177077 0.48571 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +131 0.177077 0.48571 +129 0.177136 0.48955 +125 0.17292 0.501395 +kids 0 +OBJECT poly +name "UC_tailstrut" +numvert 52 +1.74331 -0.0390927 -0.00635 +1.74331 -0.0390927 0.00635 +1.84348 -0.110835 0.00635 +1.84348 -0.110835 -0.00635 +1.85568 -0.129178 -0.00635 +1.85568 -0.129178 -0.00381 +1.85448 -0.132598 -0.00381 +1.85448 -0.132598 -0.00635 +1.84497 -0.119312 -0.00635 +1.84497 -0.119312 -0.00381 +1.84016 -0.116252 -0.00635 +1.7399 -0.04445 -0.00635 +1.7399 -0.04445 0.00635 +1.84016 -0.116252 0.00635 +1.84838 -0.113955 0.00381 +1.84838 -0.113955 -0.00381 +1.84838 -0.113955 -0.00635 +1.84497 -0.119312 0.00635 +1.84838 -0.113955 0.00635 +1.84497 -0.119312 0.00381 +1.85568 -0.129178 0.00381 +1.85568 -0.129178 0.00635 +1.85448 -0.132598 0.00635 +1.85448 -0.132598 0.00381 +1.85132 -0.119264 -0.00381 +1.85132 -0.119264 -0.00635 +1.85132 -0.119264 0.00635 +1.85132 -0.119264 0.00381 +1.85134 -0.121654 -0.00381 +1.85134 -0.121654 -0.00635 +1.84499 -0.121702 -0.00381 +1.84499 -0.121702 -0.00635 +1.85134 -0.121654 0.00635 +1.85134 -0.121654 0.00381 +1.84499 -0.121702 0.00635 +1.84499 -0.121702 0.00381 +1.85136 -0.123886 -0.00381 +1.85136 -0.123886 -0.00635 +1.84628 -0.127702 -0.00381 +1.84628 -0.127702 -0.00635 +1.85136 -0.123886 0.00635 +1.85136 -0.123886 0.00381 +1.84628 -0.127702 0.00635 +1.84628 -0.127702 0.00381 +1.85372 -0.127028 -0.00381 +1.85372 -0.127028 -0.00635 +1.85159 -0.133012 -0.00381 +1.85159 -0.133012 -0.00635 +1.85372 -0.127028 0.00635 +1.85372 -0.127028 0.00381 +1.85159 -0.133012 0.00635 +1.85159 -0.133012 0.00381 +numsurf 54 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +12 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +14 0 0 +15 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +12 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +16 0 0 +8 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +2 0 0 +18 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +19 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +17 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +14 0 0 +19 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +15 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +9 0 0 +24 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +16 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +18 0 0 +26 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +17 0 0 +26 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +14 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +25 0 0 +24 0 0 +28 0 0 +29 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +9 0 0 +30 0 0 +28 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +8 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +25 0 0 +29 0 0 +31 0 0 +SURF 0x10 +mat 1 +refs 4 +27 0 0 +26 0 0 +32 0 0 +33 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +17 0 0 +34 0 0 +32 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +27 0 0 +33 0 0 +35 0 0 +SURF 0x10 +mat 1 +refs 4 +29 0 0 +28 0 0 +36 0 0 +37 0 0 +SURF 0x10 +mat 1 +refs 4 +28 0 0 +30 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 1 +refs 4 +30 0 0 +31 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 1 +refs 4 +31 0 0 +29 0 0 +37 0 0 +39 0 0 +SURF 0x10 +mat 1 +refs 4 +33 0 0 +32 0 0 +40 0 0 +41 0 0 +SURF 0x10 +mat 1 +refs 4 +32 0 0 +34 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 1 +refs 4 +34 0 0 +35 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 1 +refs 4 +35 0 0 +33 0 0 +41 0 0 +43 0 0 +SURF 0x10 +mat 1 +refs 4 +37 0 0 +36 0 0 +44 0 0 +45 0 0 +SURF 0x10 +mat 1 +refs 4 +36 0 0 +38 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 1 +refs 4 +38 0 0 +39 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 1 +refs 4 +39 0 0 +37 0 0 +45 0 0 +47 0 0 +SURF 0x10 +mat 1 +refs 4 +41 0 0 +40 0 0 +48 0 0 +49 0 0 +SURF 0x10 +mat 1 +refs 4 +40 0 0 +42 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 1 +refs 4 +42 0 0 +43 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 1 +refs 4 +43 0 0 +41 0 0 +49 0 0 +51 0 0 +SURF 0x10 +mat 1 +refs 4 +45 0 0 +44 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +44 0 0 +46 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +46 0 0 +47 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +47 0 0 +45 0 0 +4 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +49 0 0 +48 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 1 +refs 4 +48 0 0 +50 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +50 0 0 +51 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +51 0 0 +49 0 0 +20 0 0 +23 0 0 +kids 0 +OBJECT poly +name "UC_Tailwheel" +numvert 194 +1.8534 -0.130887 -0.00423333 +1.85448 -0.136291 -0.00367436 +1.8534 -0.136397 -0.00367436 +1.85551 -0.135978 -0.00367436 +1.85646 -0.135468 -0.00367436 +1.8573 -0.134783 -0.00367436 +1.85798 -0.133948 -0.00367436 +1.85849 -0.132995 -0.00367436 +1.85881 -0.131962 -0.00367436 +1.85891 -0.130887 -0.00367436 +1.85881 -0.129812 -0.00367436 +1.85849 -0.128778 -0.00367436 +1.85798 -0.127825 -0.00367436 +1.8573 -0.12699 -0.00367436 +1.85646 -0.126305 -0.00367436 +1.85551 -0.125796 -0.00367436 +1.85448 -0.125482 -0.00367436 +1.8534 -0.125376 -0.00367436 +1.85233 -0.125482 -0.00367436 +1.85129 -0.125796 -0.00367436 +1.85034 -0.126305 -0.00367436 +1.8495 -0.12699 -0.00367436 +1.84882 -0.127825 -0.00367436 +1.84831 -0.128778 -0.00367436 +1.848 -0.129812 -0.00367436 +1.84789 -0.130887 -0.00367436 +1.848 -0.131962 -0.00367436 +1.84831 -0.132995 -0.00367436 +1.84882 -0.133948 -0.00367436 +1.8495 -0.134783 -0.00367436 +1.85034 -0.135468 -0.00367436 +1.85129 -0.135978 -0.00367436 +1.85233 -0.136291 -0.00367436 +1.85534 -0.140625 -0.00351925 +1.8534 -0.140816 -0.00351925 +1.8572 -0.14006 -0.00351925 +1.85892 -0.139143 -0.00351925 +1.86042 -0.137908 -0.00351925 +1.86166 -0.136403 -0.00351925 +1.86257 -0.134687 -0.00351925 +1.86314 -0.132824 -0.00351925 +1.86333 -0.130887 -0.00351925 +1.86314 -0.12895 -0.00351925 +1.86257 -0.127087 -0.00351925 +1.86166 -0.12537 -0.00351925 +1.86042 -0.123866 -0.00351925 +1.85892 -0.122631 -0.00351925 +1.8572 -0.121713 -0.00351925 +1.85534 -0.121148 -0.00351925 +1.8534 -0.120958 -0.00351925 +1.85146 -0.121148 -0.00351925 +1.8496 -0.121713 -0.00351925 +1.84788 -0.122631 -0.00351925 +1.84638 -0.123866 -0.00351925 +1.84515 -0.12537 -0.00351925 +1.84423 -0.127087 -0.00351925 +1.84366 -0.12895 -0.00351925 +1.84347 -0.130887 -0.00351925 +1.84366 -0.132824 -0.00351925 +1.84423 -0.134687 -0.00351925 +1.84515 -0.136403 -0.00351925 +1.84638 -0.137908 -0.00351925 +1.84788 -0.139143 -0.00351925 +1.8496 -0.14006 -0.00351925 +1.85146 -0.140625 -0.00351925 +1.85582 -0.14303 -0.00219801 +1.8534 -0.143268 -0.00219801 +1.85814 -0.142326 -0.00219801 +1.86028 -0.141182 -0.00219801 +1.86216 -0.139642 -0.00219801 +1.8637 -0.137766 -0.00219801 +1.86484 -0.135625 -0.00219801 +1.86554 -0.133302 -0.00219801 +1.86578 -0.130887 -0.00219801 +1.86554 -0.128471 -0.00219801 +1.86484 -0.126149 -0.00219801 +1.8637 -0.124008 -0.00219801 +1.86216 -0.122132 -0.00219801 +1.86028 -0.120592 -0.00219801 +1.85814 -0.119448 -0.00219801 +1.85582 -0.118743 -0.00219801 +1.8534 -0.118505 -0.00219801 +1.85099 -0.118743 -0.00219801 +1.84866 -0.119448 -0.00219801 +1.84652 -0.120592 -0.00219801 +1.84465 -0.122132 -0.00219801 +1.84311 -0.124008 -0.00219801 +1.84196 -0.126149 -0.00219801 +1.84126 -0.128471 -0.00219801 +1.84102 -0.130887 -0.00219801 +1.84126 -0.133302 -0.00219801 +1.84196 -0.135625 -0.00219801 +1.84311 -0.137766 -0.00219801 +1.84465 -0.139642 -0.00219801 +1.84652 -0.141182 -0.00219801 +1.84866 -0.142326 -0.00219801 +1.85099 -0.14303 -0.00219801 +1.85582 -0.14303 0.00219801 +1.8534 -0.143268 0.00219801 +1.85814 -0.142326 0.00219801 +1.86028 -0.141182 0.00219801 +1.86216 -0.139642 0.00219801 +1.8637 -0.137766 0.00219801 +1.86484 -0.135625 0.00219801 +1.86554 -0.133302 0.00219801 +1.86578 -0.130887 0.00219801 +1.86554 -0.128471 0.00219801 +1.86484 -0.126149 0.00219801 +1.8637 -0.124008 0.00219801 +1.86216 -0.122132 0.00219801 +1.86028 -0.120592 0.00219801 +1.85814 -0.119448 0.00219801 +1.85582 -0.118743 0.00219801 +1.8534 -0.118505 0.00219801 +1.85099 -0.118743 0.00219801 +1.84866 -0.119448 0.00219801 +1.84652 -0.120592 0.00219801 +1.84465 -0.122132 0.00219801 +1.84311 -0.124008 0.00219801 +1.84196 -0.126149 0.00219801 +1.84126 -0.128471 0.00219801 +1.84102 -0.130887 0.00219801 +1.84126 -0.133302 0.00219801 +1.84196 -0.135625 0.00219801 +1.84311 -0.137766 0.00219801 +1.84465 -0.139642 0.00219801 +1.84652 -0.141182 0.00219801 +1.84866 -0.142326 0.00219801 +1.85099 -0.14303 0.00219801 +1.85534 -0.140625 0.00351925 +1.8534 -0.140816 0.00351925 +1.8572 -0.14006 0.00351925 +1.85892 -0.139143 0.00351925 +1.86042 -0.137908 0.00351925 +1.86166 -0.136403 0.00351925 +1.86257 -0.134687 0.00351925 +1.86314 -0.132824 0.00351925 +1.86333 -0.130887 0.00351925 +1.86314 -0.12895 0.00351925 +1.86257 -0.127087 0.00351925 +1.86166 -0.12537 0.00351925 +1.86042 -0.123866 0.00351925 +1.85892 -0.122631 0.00351925 +1.8572 -0.121713 0.00351925 +1.85534 -0.121148 0.00351925 +1.8534 -0.120958 0.00351925 +1.85146 -0.121148 0.00351925 +1.8496 -0.121713 0.00351925 +1.84788 -0.122631 0.00351925 +1.84638 -0.123866 0.00351925 +1.84515 -0.12537 0.00351925 +1.84423 -0.127087 0.00351925 +1.84366 -0.12895 0.00351925 +1.84347 -0.130887 0.00351925 +1.84366 -0.132824 0.00351925 +1.84423 -0.134687 0.00351925 +1.84515 -0.136403 0.00351925 +1.84638 -0.137908 0.00351925 +1.84788 -0.139143 0.00351925 +1.8496 -0.14006 0.00351925 +1.85146 -0.140625 0.00351925 +1.85448 -0.136291 0.00367436 +1.8534 -0.136397 0.00367436 +1.85551 -0.135978 0.00367436 +1.85646 -0.135468 0.00367436 +1.8573 -0.134783 0.00367436 +1.85798 -0.133948 0.00367436 +1.85849 -0.132995 0.00367436 +1.85881 -0.131962 0.00367436 +1.85891 -0.130887 0.00367436 +1.85881 -0.129812 0.00367436 +1.85849 -0.128778 0.00367436 +1.85798 -0.127825 0.00367436 +1.8573 -0.12699 0.00367436 +1.85646 -0.126305 0.00367436 +1.85551 -0.125796 0.00367436 +1.85448 -0.125482 0.00367436 +1.8534 -0.125376 0.00367436 +1.85233 -0.125482 0.00367436 +1.85129 -0.125796 0.00367436 +1.85034 -0.126305 0.00367436 +1.8495 -0.12699 0.00367436 +1.84882 -0.127825 0.00367436 +1.84831 -0.128778 0.00367436 +1.848 -0.129812 0.00367436 +1.84789 -0.130887 0.00367436 +1.848 -0.131962 0.00367436 +1.84831 -0.132995 0.00367436 +1.84882 -0.133948 0.00367436 +1.8495 -0.134783 0.00367436 +1.85034 -0.135468 0.00367436 +1.85129 -0.135978 0.00367436 +1.85233 -0.136291 0.00367436 +1.8534 -0.130887 0.00423333 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "Wing" +texture "Rascal.rgb" +numvert 246 +0.83185 0.130692 0.451014 +0.735007 0.130692 0.451014 +0.8382 0.1143 1.5397e-16 +0.4572 0.130692 0.451014 +0.43815 0.137038 0.450783 +0.43815 0.12065 8.04842e-17 +0.4572 0.1143 8.39835e-17 +0.4318 0.143384 0.450552 +0.4318 0.127 7.93178e-17 +0.4318 0.14973 0.450321 +0.4318 0.13335 7.93178e-17 +0.43815 0.162421 0.44986 +0.43815 0.14605 8.04842e-17 +0.45085 0.168767 0.449629 +0.45085 0.1524 8.28171e-17 +0.4826 0.175113 0.449398 +0.4826 0.15875 8.86493e-17 +0.53975 0.175113 0.449398 +0.53975 0.15875 9.91472e-17 +0.639188 0.162421 0.44986 +0.64135 0.14605 1.1781e-16 +0.735027 0.146638 0.450434 +0.4572 0.138307 0.660425 +0.43815 0.144653 0.660195 +0.4318 0.150999 0.659964 +0.4318 0.157344 0.659733 +0.43815 0.170036 0.659272 +0.45085 0.176382 0.659041 +0.4826 0.182728 0.65881 +0.53975 0.182728 0.65881 +0.634865 0.170036 0.659272 +0.727548 0.154078 0.659852 +0.458922 0.146614 0.888874 +0.440269 0.15296 0.888644 +0.434051 0.159306 0.888413 +0.434051 0.165652 0.888182 +0.440269 0.178343 0.887721 +0.452704 0.184689 0.88749 +0.483792 0.191035 0.887259 +0.53975 0.191035 0.887259 +0.627466 0.178343 0.887721 +0.719388 0.161182 0.888345 +0.463618 0.152383 1.04752 +0.446049 0.157822 1.04732 +0.440192 0.163262 1.04712 +0.440192 0.168701 1.04693 +0.446049 0.17958 1.04653 +0.457761 0.185019 1.04633 +0.487043 0.190458 1.04613 +0.53975 0.190458 1.04613 +0.617988 0.17958 1.04653 +0.713716 0.162405 1.04716 +0.732317 0.15746 1.18713 +0.712107 0.154008 1.0922 +0.757651 0.154008 1.0922 +0.471768 0.15746 1.18713 +0.456079 0.161993 1.18696 +0.449272 0.159163 1.0922 +0.466226 0.154008 1.0922 +0.45085 0.166525 1.1868 +0.443632 0.164315 1.0922 +0.45085 0.171058 1.18663 +0.443646 0.169465 1.0922 +0.456079 0.180123 1.1863 +0.449326 0.179757 1.0922 +0.466538 0.184656 1.18614 +0.460641 0.1849 1.0922 +0.492685 0.189189 1.18597 +0.488902 0.19004 1.0922 +0.53975 0.189189 1.18597 +0.53975 0.19004 1.0922 +0.605305 0.180123 1.1863 +0.613844 0.179757 1.0922 +0.712107 0.162163 1.0922 +0.688729 0.161152 1.28866 +0.484446 0.161152 1.28866 +0.471684 0.164325 1.28854 +0.467429 0.167498 1.28843 +0.467429 0.170671 1.28831 +0.471684 0.177016 1.28808 +0.480192 0.180189 1.28797 +0.501463 0.183362 1.28785 +0.53975 0.183362 1.28785 +0.590466 0.177016 1.28808 +0.644948 0.16346 1.35212 +0.499194 0.16346 1.35212 +0.489834 0.165575 1.35204 +0.486715 0.16769 1.35196 +0.486715 0.169805 1.35189 +0.489834 0.174036 1.35173 +0.496074 0.176151 1.35166 +0.511672 0.178266 1.35158 +0.53975 0.178266 1.35158 +0.575562 0.174036 1.35173 +0.6096 0.164613 1.38385 +0.513066 0.164613 1.38385 +0.506908 0.1662 1.38379 +0.504855 0.167786 1.38373 +0.504855 0.169373 1.38367 +0.506908 0.172546 1.38356 +0.511013 0.174132 1.3835 +0.521276 0.175718 1.38344 +0.53975 0.175718 1.38344 +0.563529 0.172546 1.38356 +0.5842 0.165075 1.39654 +0.522713 0.165075 1.39654 +0.518782 0.166344 1.39649 +0.517471 0.167613 1.39645 +0.517471 0.168882 1.3964 +0.518782 0.171421 1.39631 +0.521403 0.17269 1.39626 +0.527955 0.173959 1.39622 +0.53975 0.173959 1.39622 +0.554882 0.171421 1.39631 +0.56515 0.166073 1.40288 +0.530746 0.166073 1.40288 +0.528668 0.167021 1.40284 +0.527975 0.167969 1.4028 +0.527975 0.168917 1.40277 +0.528668 0.170813 1.40269 +0.530053 0.171761 1.40265 +0.533516 0.172709 1.40262 +0.53975 0.172709 1.40262 +0.548397 0.170813 1.40269 +0.540564 0.168414 1.40793 +0.713703 0.152383 1.04752 +0.727528 0.138307 0.660425 +0.719369 0.146614 0.888874 +0.735007 0.130692 -0.451014 +0.83185 0.130692 -0.451014 +0.43815 0.137038 -0.450783 +0.4572 0.130692 -0.451014 +0.4318 0.143384 -0.450552 +0.4318 0.14973 -0.450321 +0.43815 0.162421 -0.44986 +0.45085 0.168767 -0.449629 +0.4826 0.175113 -0.449398 +0.53975 0.175113 -0.449398 +0.639188 0.162421 -0.44986 +0.735027 0.146638 -0.450434 +0.43815 0.144653 -0.660195 +0.4572 0.138307 -0.660425 +0.4318 0.150999 -0.659964 +0.4318 0.157344 -0.659733 +0.43815 0.170036 -0.659272 +0.45085 0.176382 -0.659041 +0.4826 0.182728 -0.65881 +0.53975 0.182728 -0.65881 +0.634865 0.170036 -0.659272 +0.727548 0.154078 -0.659852 +0.440269 0.15296 -0.888644 +0.458922 0.146614 -0.888874 +0.434051 0.159306 -0.888413 +0.434051 0.165652 -0.888182 +0.440269 0.178343 -0.887721 +0.452704 0.184689 -0.88749 +0.483792 0.191035 -0.887259 +0.53975 0.191035 -0.887259 +0.627466 0.178343 -0.887721 +0.719388 0.161182 -0.888345 +0.446049 0.157822 -1.04732 +0.463618 0.152383 -1.04752 +0.440192 0.163262 -1.04712 +0.440192 0.168701 -1.04693 +0.446049 0.17958 -1.04653 +0.457761 0.185019 -1.04633 +0.487043 0.190458 -1.04613 +0.53975 0.190458 -1.04613 +0.617988 0.17958 -1.04653 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.712107 0.154008 -1.0922 +0.732317 0.15746 -1.18713 +0.466226 0.154008 -1.0922 +0.449272 0.159163 -1.0922 +0.456079 0.161993 -1.18696 +0.471768 0.15746 -1.18713 +0.443632 0.164315 -1.0922 +0.45085 0.166525 -1.1868 +0.443646 0.169465 -1.0922 +0.45085 0.171058 -1.18663 +0.449326 0.179757 -1.0922 +0.456079 0.180123 -1.1863 +0.460641 0.1849 -1.0922 +0.466538 0.184656 -1.18614 +0.488902 0.19004 -1.0922 +0.492685 0.189189 -1.18597 +0.53975 0.19004 -1.0922 +0.53975 0.189189 -1.18597 +0.613844 0.179757 -1.0922 +0.605305 0.180123 -1.1863 +0.712107 0.162163 -1.0922 +0.484446 0.161152 -1.28866 +0.688729 0.161152 -1.28866 +0.471684 0.164325 -1.28854 +0.467429 0.167498 -1.28843 +0.467429 0.170671 -1.28831 +0.471684 0.177016 -1.28808 +0.480192 0.180189 -1.28797 +0.501463 0.183362 -1.28785 +0.53975 0.183362 -1.28785 +0.590466 0.177016 -1.28808 +0.499194 0.16346 -1.35212 +0.644948 0.16346 -1.35212 +0.489834 0.165575 -1.35204 +0.486715 0.16769 -1.35196 +0.486715 0.169805 -1.35189 +0.489834 0.174036 -1.35173 +0.496074 0.176151 -1.35166 +0.511672 0.178266 -1.35158 +0.53975 0.178266 -1.35158 +0.575562 0.174036 -1.35173 +0.513066 0.164613 -1.38385 +0.6096 0.164613 -1.38385 +0.506908 0.1662 -1.38379 +0.504855 0.167786 -1.38373 +0.504855 0.169373 -1.38367 +0.506908 0.172546 -1.38356 +0.511013 0.174132 -1.3835 +0.521276 0.175718 -1.38344 +0.53975 0.175718 -1.38344 +0.563529 0.172546 -1.38356 +0.522713 0.165075 -1.39654 +0.5842 0.165075 -1.39654 +0.518782 0.166344 -1.39649 +0.517471 0.167613 -1.39645 +0.517471 0.168882 -1.3964 +0.518782 0.171421 -1.39631 +0.521403 0.17269 -1.39626 +0.527955 0.173959 -1.39622 +0.53975 0.173959 -1.39622 +0.554882 0.171421 -1.39631 +0.530746 0.166073 -1.40288 +0.56515 0.166073 -1.40288 +0.528668 0.167021 -1.40284 +0.527975 0.167969 -1.4028 +0.527975 0.168917 -1.40277 +0.528668 0.170813 -1.40269 +0.530053 0.171761 -1.40265 +0.533516 0.172709 -1.40262 +0.53975 0.172709 -1.40262 +0.548397 0.170813 -1.40269 +0.540564 0.168414 -1.40793 +0.713703 0.152383 -1.04752 +0.727528 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +numsurf 268 +SURF 0x10 +mat 1 +refs 3 +0 0.482124 0.574349 +1 0.482124 0.664243 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 4 +3 0.482124 0.922917 +4 0.482124 0.941263 +5 0.699005 0.941263 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 4 +4 0.482124 0.941263 +7 0.482124 0.946767 +8 0.699005 0.946767 +5 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +7 0.482124 0.946767 +9 0.482124 0.946767 +10 0.699005 0.946767 +8 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +9 0.482124 0.946767 +11 0.483423 0.941263 +12 0.699005 0.941263 +10 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +11 0.483423 0.941263 +13 0.483423 0.929338 +14 0.699005 0.929338 +12 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +13 0.483423 0.929338 +15 0.483423 0.899985 +16 0.699005 0.899985 +14 0.699005 0.929338 +SURF 0x10 +mat 1 +refs 4 +15 0.483423 0.899985 +17 0.483423 0.846783 +18 0.699005 0.846783 +16 0.699005 0.899985 +SURF 0x10 +mat 1 +refs 4 +17 0.483423 0.846783 +19 0.483423 0.753219 +20 0.699005 0.751385 +18 0.699005 0.846783 +SURF 0x10 +mat 1 +refs 3 +19 0.483423 0.753219 +21 0.482124 0.664243 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 4 +22 0.382125 0.922917 +23 0.382125 0.941263 +4 0.482124 0.941263 +3 0.482124 0.922917 +SURF 0x10 +mat 1 +refs 4 +23 0.382125 0.941263 +24 0.382125 0.946767 +7 0.482124 0.946767 +4 0.482124 0.941263 +SURF 0x10 +mat 1 +refs 4 +24 0.382125 0.946767 +25 0.382125 0.946767 +9 0.482124 0.946767 +7 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +25 0.382125 0.946767 +26 0.382125 0.941263 +11 0.483423 0.941263 +9 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +26 0.382125 0.941263 +27 0.382125 0.929338 +13 0.483423 0.929338 +11 0.483423 0.941263 +SURF 0x10 +mat 1 +refs 4 +27 0.382125 0.929338 +28 0.382125 0.899985 +15 0.483423 0.899985 +13 0.483423 0.929338 +SURF 0x10 +mat 1 +refs 4 +28 0.382125 0.899985 +29 0.382125 0.846783 +17 0.483423 0.846783 +15 0.483423 0.899985 +SURF 0x10 +mat 1 +refs 4 +29 0.382125 0.846783 +30 0.382125 0.757806 +19 0.483423 0.753219 +17 0.483423 0.846783 +SURF 0x10 +mat 1 +refs 4 +30 0.382125 0.757806 +31 0.382125 0.671581 +21 0.482124 0.664243 +19 0.483423 0.753219 +SURF 0x10 +mat 1 +refs 4 +32 0.271736 0.922 +33 0.271736 0.939428 +23 0.382125 0.941263 +22 0.382125 0.922917 +SURF 0x10 +mat 1 +refs 4 +33 0.271736 0.939428 +34 0.271736 0.944932 +24 0.382125 0.946767 +23 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +34 0.271736 0.944932 +35 0.271736 0.944932 +25 0.382125 0.946767 +24 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +35 0.271736 0.944932 +36 0.273035 0.939428 +26 0.382125 0.941263 +25 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +36 0.273035 0.939428 +37 0.273035 0.927504 +27 0.382125 0.929338 +26 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +37 0.273035 0.927504 +38 0.273035 0.898151 +28 0.382125 0.899985 +27 0.382125 0.929338 +SURF 0x10 +mat 1 +refs 4 +38 0.273035 0.898151 +39 0.273035 0.846783 +29 0.382125 0.846783 +28 0.382125 0.899985 +SURF 0x10 +mat 1 +refs 4 +39 0.273035 0.846783 +40 0.273035 0.764227 +30 0.382125 0.757806 +29 0.382125 0.846783 +SURF 0x10 +mat 1 +refs 4 +40 0.273035 0.764227 +41 0.271736 0.678919 +31 0.382125 0.671581 +30 0.382125 0.757806 +SURF 0x10 +mat 1 +refs 4 +42 0.195114 0.917414 +43 0.195114 0.933925 +33 0.271736 0.939428 +32 0.271736 0.922 +SURF 0x10 +mat 1 +refs 4 +43 0.195114 0.933925 +44 0.196413 0.939428 +34 0.271736 0.944932 +33 0.271736 0.939428 +SURF 0x10 +mat 1 +refs 4 +44 0.196413 0.939428 +45 0.196413 0.939428 +35 0.271736 0.944932 +34 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +45 0.196413 0.939428 +46 0.196413 0.933925 +36 0.273035 0.939428 +35 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +46 0.196413 0.933925 +47 0.196413 0.922917 +37 0.273035 0.927504 +36 0.273035 0.939428 +SURF 0x10 +mat 1 +refs 4 +47 0.196413 0.922917 +48 0.196413 0.895399 +38 0.273035 0.898151 +37 0.273035 0.927504 +SURF 0x10 +mat 1 +refs 4 +48 0.196413 0.895399 +49 0.196413 0.846783 +39 0.273035 0.846783 +38 0.273035 0.898151 +SURF 0x10 +mat 1 +refs 4 +49 0.196413 0.846783 +50 0.196413 0.7734 +40 0.273035 0.764227 +39 0.273035 0.846783 +SURF 0x10 +mat 1 +refs 4 +50 0.196413 0.7734 +51 0.196413 0.684423 +41 0.271736 0.678919 +40 0.273035 0.764227 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +53 0.174335 0.68534 +54 0.174335 0.643145 +SURF 0x10 +mat 1 +refs 4 +55 0.128881 0.910075 +56 0.128881 0.924752 +57 0.174335 0.931173 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +56 0.128881 0.924752 +59 0.128881 0.929338 +60 0.174335 0.935759 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +59 0.128881 0.929338 +61 0.128881 0.929338 +62 0.174335 0.935759 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +61 0.128881 0.929338 +63 0.128881 0.924752 +64 0.174335 0.930256 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +63 0.128881 0.924752 +65 0.128881 0.914662 +66 0.174335 0.920165 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +65 0.128881 0.914662 +67 0.128881 0.889895 +68 0.174335 0.893564 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +67 0.128881 0.889895 +69 0.128881 0.846783 +70 0.174335 0.846783 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +69 0.128881 0.846783 +71 0.128881 0.785324 +72 0.174335 0.777069 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +73 0.174335 0.68534 +72 0.174335 0.777069 +SURF 0x10 +mat 1 +refs 4 +74 0.0795305 0.707355 +75 0.0795305 0.898151 +55 0.128881 0.910075 +52 0.128881 0.666994 +SURF 0x10 +mat 1 +refs 4 +75 0.0795305 0.898151 +76 0.0795305 0.910075 +56 0.128881 0.924752 +55 0.128881 0.910075 +SURF 0x10 +mat 1 +refs 4 +76 0.0795305 0.910075 +77 0.0795305 0.913744 +59 0.128881 0.929338 +56 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +77 0.0795305 0.913744 +78 0.0795305 0.913744 +61 0.128881 0.929338 +59 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +78 0.0795305 0.913744 +79 0.0795305 0.910075 +63 0.128881 0.924752 +61 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +79 0.0795305 0.910075 +80 0.0795305 0.90182 +65 0.128881 0.914662 +63 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +80 0.0795305 0.90182 +81 0.0795305 0.881639 +67 0.128881 0.889895 +65 0.128881 0.914662 +SURF 0x10 +mat 1 +refs 4 +81 0.0795305 0.881639 +82 0.0795305 0.846783 +69 0.128881 0.846783 +67 0.128881 0.889895 +SURF 0x10 +mat 1 +refs 4 +82 0.0795305 0.846783 +83 0.0795305 0.799084 +71 0.128881 0.785324 +69 0.128881 0.846783 +SURF 0x10 +mat 1 +refs 4 +83 0.0795305 0.799084 +74 0.0795305 0.707355 +52 0.128881 0.666994 +71 0.128881 0.785324 +SURF 0x10 +mat 1 +refs 4 +84 0.0509594 0.748633 +85 0.0509594 0.884391 +75 0.0795305 0.898151 +74 0.0795305 0.707355 +SURF 0x10 +mat 1 +refs 4 +85 0.0509594 0.884391 +86 0.0509594 0.892647 +76 0.0795305 0.910075 +75 0.0795305 0.898151 +SURF 0x10 +mat 1 +refs 4 +86 0.0509594 0.892647 +87 0.0509594 0.895399 +77 0.0795305 0.913744 +76 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +87 0.0509594 0.895399 +88 0.0509594 0.895399 +78 0.0795305 0.913744 +77 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +88 0.0509594 0.895399 +89 0.0509594 0.892647 +79 0.0795305 0.910075 +78 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +89 0.0509594 0.892647 +90 0.0509594 0.887143 +80 0.0795305 0.90182 +79 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +90 0.0509594 0.887143 +91 0.0509594 0.872467 +81 0.0795305 0.881639 +80 0.0795305 0.90182 +SURF 0x10 +mat 1 +refs 4 +91 0.0509594 0.872467 +92 0.0509594 0.846783 +82 0.0795305 0.846783 +81 0.0795305 0.881639 +SURF 0x10 +mat 1 +refs 4 +92 0.0509594 0.846783 +93 0.0509594 0.812843 +83 0.0795305 0.799084 +82 0.0795305 0.846783 +SURF 0x10 +mat 1 +refs 4 +93 0.0509594 0.812843 +84 0.0509594 0.748633 +74 0.0795305 0.707355 +83 0.0795305 0.799084 +SURF 0x10 +mat 1 +refs 4 +94 0.0353751 0.781655 +95 0.0353751 0.871549 +85 0.0509594 0.884391 +84 0.0509594 0.748633 +SURF 0x10 +mat 1 +refs 4 +95 0.0353751 0.871549 +96 0.0353751 0.877053 +86 0.0509594 0.892647 +85 0.0509594 0.884391 +SURF 0x10 +mat 1 +refs 4 +96 0.0353751 0.877053 +97 0.0353751 0.878888 +87 0.0509594 0.895399 +86 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +97 0.0353751 0.878888 +98 0.0353751 0.878888 +88 0.0509594 0.895399 +87 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +98 0.0353751 0.878888 +99 0.0353751 0.877053 +89 0.0509594 0.892647 +88 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +99 0.0353751 0.877053 +100 0.0353751 0.873384 +90 0.0509594 0.887143 +89 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +100 0.0353751 0.873384 +101 0.0353751 0.863294 +91 0.0509594 0.872467 +90 0.0509594 0.887143 +SURF 0x10 +mat 1 +refs 4 +101 0.0353751 0.863294 +102 0.0353751 0.846783 +92 0.0509594 0.846783 +91 0.0509594 0.872467 +SURF 0x10 +mat 1 +refs 4 +102 0.0353751 0.846783 +103 0.0353751 0.82385 +93 0.0509594 0.812843 +92 0.0509594 0.846783 +SURF 0x10 +mat 1 +refs 4 +103 0.0353751 0.82385 +94 0.0353751 0.781655 +84 0.0509594 0.748633 +93 0.0509594 0.812843 +SURF 0x10 +mat 1 +refs 4 +104 0.0288817 0.804587 +105 0.0288817 0.862376 +95 0.0353751 0.871549 +94 0.0353751 0.781655 +SURF 0x10 +mat 1 +refs 4 +105 0.0288817 0.862376 +106 0.0288817 0.866046 +96 0.0353751 0.877053 +95 0.0353751 0.871549 +SURF 0x10 +mat 1 +refs 4 +106 0.0288817 0.866046 +107 0.0288817 0.866963 +97 0.0353751 0.878888 +96 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +107 0.0288817 0.866963 +108 0.0288817 0.866963 +98 0.0353751 0.878888 +97 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +108 0.0288817 0.866963 +109 0.0288817 0.866046 +99 0.0353751 0.877053 +98 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +109 0.0288817 0.866046 +110 0.0288817 0.863294 +100 0.0353751 0.873384 +99 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +110 0.0288817 0.863294 +111 0.0288817 0.85779 +101 0.0353751 0.863294 +100 0.0353751 0.873384 +SURF 0x10 +mat 1 +refs 4 +111 0.0288817 0.85779 +112 0.0288817 0.846783 +102 0.0353751 0.846783 +101 0.0353751 0.863294 +SURF 0x10 +mat 1 +refs 4 +112 0.0288817 0.846783 +113 0.0288817 0.832106 +103 0.0353751 0.82385 +102 0.0353751 0.846783 +SURF 0x10 +mat 1 +refs 4 +113 0.0288817 0.832106 +104 0.0288817 0.804587 +94 0.0353751 0.781655 +103 0.0353751 0.82385 +SURF 0x10 +mat 1 +refs 4 +114 0.0262843 0.822933 +115 0.0262843 0.855038 +105 0.0288817 0.862376 +104 0.0288817 0.804587 +SURF 0x10 +mat 1 +refs 4 +115 0.0262843 0.855038 +116 0.0262843 0.856873 +106 0.0288817 0.866046 +105 0.0288817 0.862376 +SURF 0x10 +mat 1 +refs 4 +116 0.0262843 0.856873 +117 0.0262843 0.85779 +107 0.0288817 0.866963 +106 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +117 0.0262843 0.85779 +118 0.0262843 0.85779 +108 0.0288817 0.866963 +107 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +118 0.0262843 0.85779 +119 0.0262843 0.856873 +109 0.0288817 0.866046 +108 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +119 0.0262843 0.856873 +120 0.0262843 0.855038 +110 0.0288817 0.863294 +109 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +120 0.0262843 0.855038 +121 0.0262843 0.852286 +111 0.0288817 0.85779 +110 0.0288817 0.863294 +SURF 0x10 +mat 1 +refs 4 +121 0.0262843 0.852286 +122 0.0262843 0.846783 +112 0.0288817 0.846783 +111 0.0288817 0.85779 +SURF 0x10 +mat 1 +refs 4 +122 0.0262843 0.846783 +123 0.0262843 0.838527 +113 0.0288817 0.832106 +112 0.0288817 0.846783 +SURF 0x10 +mat 1 +refs 4 +123 0.0262843 0.838527 +114 0.0262843 0.822933 +104 0.0288817 0.804587 +113 0.0288817 0.832106 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +115 0.0262843 0.855038 +114 0.0262843 0.822933 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +116 0.0262843 0.856873 +115 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +117 0.0262843 0.85779 +116 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +118 0.0262843 0.85779 +117 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +119 0.0262843 0.856873 +118 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +120 0.0262843 0.855038 +119 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +121 0.0262843 0.852286 +120 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +122 0.0262843 0.846783 +121 0.0262843 0.852286 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +123 0.0262843 0.838527 +122 0.0262843 0.846783 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +114 0.0262843 0.822933 +123 0.0262843 0.838527 +SURF 0x10 +mat 1 +refs 4 +58 0.174335 0.914662 +42 0.195114 0.917414 +125 0.195114 0.684423 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +57 0.174335 0.931173 +43 0.195114 0.933925 +42 0.195114 0.917414 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +60 0.174335 0.935759 +44 0.196413 0.939428 +43 0.195114 0.933925 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +62 0.174335 0.935759 +45 0.196413 0.939428 +44 0.196413 0.939428 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +64 0.174335 0.930256 +46 0.196413 0.933925 +45 0.196413 0.939428 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +66 0.174335 0.920165 +47 0.196413 0.922917 +46 0.196413 0.933925 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +68 0.174335 0.893564 +48 0.196413 0.895399 +47 0.196413 0.922917 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +70 0.174335 0.846783 +49 0.196413 0.846783 +48 0.196413 0.895399 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +72 0.174335 0.777069 +50 0.196413 0.7734 +49 0.196413 0.846783 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 4 +126 0.382125 0.671581 +22 0.382125 0.922917 +3 0.482124 0.922917 +1 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +127 0.271736 0.678919 +32 0.271736 0.922 +22 0.382125 0.922917 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +125 0.195114 0.684423 +42 0.195114 0.917414 +32 0.271736 0.922 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +50 0.196413 0.7734 +72 0.174335 0.777069 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +2 0.699005 0.567928 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +0 0.482124 0.574349 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +6 0.699005 0.922917 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +3 0.482124 0.922917 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +55 0.128881 0.910075 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +55 0.128881 0.910075 +58 0.174335 0.914662 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +54 0.174335 0.643145 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +52 0.128881 0.666994 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +1 0.482124 0.664243 +21 0.482124 0.664243 +31 0.382125 0.671581 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +0 0.482124 0.574349 +21 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +31 0.382125 0.671581 +41 0.271736 0.678919 +127 0.271736 0.678919 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +41 0.271736 0.678919 +51 0.196413 0.684423 +125 0.195114 0.684423 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +73 0.174335 0.68534 +53 0.174335 0.68534 +125 0.195114 0.684423 +SURF 0x10 +mat 1 +refs 3 +73 0.174335 0.68534 +54 0.174335 0.643145 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +128 0.480295 0.664116 +129 0.480295 0.574611 +SURF 0x10 +mat 1 +refs 4 +6 0.695816 0.921673 +5 0.695816 0.939939 +130 0.480295 0.939939 +131 0.480295 0.921673 +SURF 0x10 +mat 1 +refs 4 +5 0.695816 0.939939 +8 0.695816 0.945419 +132 0.480295 0.945419 +130 0.480295 0.939939 +SURF 0x10 +mat 1 +refs 4 +8 0.695816 0.945419 +10 0.695816 0.945419 +133 0.480295 0.945419 +132 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +10 0.695816 0.945419 +12 0.695816 0.939939 +134 0.481585 0.939939 +133 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +12 0.695816 0.939939 +14 0.695816 0.928066 +135 0.481585 0.928066 +134 0.481585 0.939939 +SURF 0x10 +mat 1 +refs 4 +14 0.695816 0.928066 +16 0.695816 0.89884 +136 0.481585 0.89884 +135 0.481585 0.928066 +SURF 0x10 +mat 1 +refs 4 +16 0.695816 0.89884 +18 0.695816 0.845867 +137 0.481585 0.845867 +136 0.481585 0.89884 +SURF 0x10 +mat 1 +refs 4 +18 0.695816 0.845867 +20 0.695816 0.750882 +138 0.481585 0.752708 +137 0.481585 0.845867 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +139 0.480295 0.664116 +138 0.481585 0.752708 +SURF 0x10 +mat 1 +refs 4 +131 0.480295 0.921673 +130 0.480295 0.939939 +140 0.380923 0.939939 +141 0.380923 0.921673 +SURF 0x10 +mat 1 +refs 4 +130 0.480295 0.939939 +132 0.480295 0.945419 +142 0.380923 0.945419 +140 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +132 0.480295 0.945419 +133 0.480295 0.945419 +143 0.380923 0.945419 +142 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +133 0.480295 0.945419 +134 0.481585 0.939939 +144 0.380923 0.939939 +143 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +134 0.481585 0.939939 +135 0.481585 0.928066 +145 0.380923 0.928066 +144 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +135 0.481585 0.928066 +136 0.481585 0.89884 +146 0.380923 0.89884 +145 0.380923 0.928066 +SURF 0x10 +mat 1 +refs 4 +136 0.481585 0.89884 +137 0.481585 0.845867 +147 0.380923 0.845867 +146 0.380923 0.89884 +SURF 0x10 +mat 1 +refs 4 +137 0.481585 0.845867 +138 0.481585 0.752708 +148 0.380923 0.757275 +147 0.380923 0.845867 +SURF 0x10 +mat 1 +refs 4 +138 0.481585 0.752708 +139 0.480295 0.664116 +149 0.380923 0.671422 +148 0.380923 0.757275 +SURF 0x10 +mat 1 +refs 4 +141 0.380923 0.921673 +140 0.380923 0.939939 +150 0.271226 0.938113 +151 0.271226 0.920759 +SURF 0x10 +mat 1 +refs 4 +140 0.380923 0.939939 +142 0.380923 0.945419 +152 0.271226 0.943593 +150 0.271226 0.938113 +SURF 0x10 +mat 1 +refs 4 +142 0.380923 0.945419 +143 0.380923 0.945419 +153 0.271226 0.943593 +152 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +143 0.380923 0.945419 +144 0.380923 0.939939 +154 0.272517 0.938113 +153 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +144 0.380923 0.939939 +145 0.380923 0.928066 +155 0.272517 0.926239 +154 0.272517 0.938113 +SURF 0x10 +mat 1 +refs 4 +145 0.380923 0.928066 +146 0.380923 0.89884 +156 0.272517 0.897013 +155 0.272517 0.926239 +SURF 0x10 +mat 1 +refs 4 +146 0.380923 0.89884 +147 0.380923 0.845867 +157 0.272517 0.845867 +156 0.272517 0.897013 +SURF 0x10 +mat 1 +refs 4 +147 0.380923 0.845867 +148 0.380923 0.757275 +158 0.272517 0.763668 +157 0.272517 0.845867 +SURF 0x10 +mat 1 +refs 4 +148 0.380923 0.757275 +149 0.380923 0.671422 +159 0.271226 0.678729 +158 0.272517 0.763668 +SURF 0x10 +mat 1 +refs 4 +151 0.271226 0.920759 +150 0.271226 0.938113 +160 0.195084 0.932633 +161 0.195084 0.916193 +SURF 0x10 +mat 1 +refs 4 +150 0.271226 0.938113 +152 0.271226 0.943593 +162 0.196375 0.938113 +160 0.195084 0.932633 +SURF 0x10 +mat 1 +refs 4 +152 0.271226 0.943593 +153 0.271226 0.943593 +163 0.196375 0.938113 +162 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +153 0.271226 0.943593 +154 0.272517 0.938113 +164 0.196375 0.932633 +163 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +154 0.272517 0.938113 +155 0.272517 0.926239 +165 0.196375 0.921673 +164 0.196375 0.932633 +SURF 0x10 +mat 1 +refs 4 +155 0.272517 0.926239 +156 0.272517 0.897013 +166 0.196375 0.894273 +165 0.196375 0.921673 +SURF 0x10 +mat 1 +refs 4 +156 0.272517 0.897013 +157 0.272517 0.845867 +167 0.196375 0.845867 +166 0.196375 0.894273 +SURF 0x10 +mat 1 +refs 4 +157 0.272517 0.845867 +158 0.272517 0.763668 +168 0.196375 0.772801 +167 0.196375 0.845867 +SURF 0x10 +mat 1 +refs 4 +158 0.272517 0.763668 +159 0.271226 0.678729 +169 0.196375 0.684209 +168 0.196375 0.772801 +SURF 0x10 +mat 1 +refs 3 +170 0.174435 0.64311 +171 0.174435 0.685122 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +174 0.174435 0.929893 +175 0.129266 0.9235 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +177 0.174435 0.934459 +178 0.129266 0.928066 +175 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +179 0.174435 0.934459 +180 0.129266 0.928066 +178 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +181 0.174435 0.928979 +182 0.129266 0.9235 +180 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +183 0.174435 0.918933 +184 0.129266 0.913453 +182 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +185 0.174435 0.892447 +186 0.129266 0.888793 +184 0.129266 0.913453 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +187 0.174435 0.845867 +188 0.129266 0.845867 +186 0.129266 0.888793 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +189 0.174435 0.776455 +190 0.129266 0.784674 +188 0.129266 0.845867 +SURF 0x10 +mat 1 +refs 3 +189 0.174435 0.776455 +191 0.174435 0.685122 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +172 0.129266 0.666856 +176 0.129266 0.908886 +192 0.0802255 0.897013 +193 0.0802255 0.707042 +SURF 0x10 +mat 1 +refs 4 +176 0.129266 0.908886 +175 0.129266 0.9235 +194 0.0802255 0.908886 +192 0.0802255 0.897013 +SURF 0x10 +mat 1 +refs 4 +175 0.129266 0.9235 +178 0.129266 0.928066 +195 0.0802255 0.91254 +194 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +178 0.129266 0.928066 +180 0.129266 0.928066 +196 0.0802255 0.91254 +195 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +180 0.129266 0.928066 +182 0.129266 0.9235 +197 0.0802255 0.908886 +196 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +182 0.129266 0.9235 +184 0.129266 0.913453 +198 0.0802255 0.900666 +197 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +184 0.129266 0.913453 +186 0.129266 0.888793 +199 0.0802255 0.880573 +198 0.0802255 0.900666 +SURF 0x10 +mat 1 +refs 4 +186 0.129266 0.888793 +188 0.129266 0.845867 +200 0.0802255 0.845867 +199 0.0802255 0.880573 +SURF 0x10 +mat 1 +refs 4 +188 0.129266 0.845867 +190 0.129266 0.784674 +201 0.0802255 0.798374 +200 0.0802255 0.845867 +SURF 0x10 +mat 1 +refs 4 +190 0.129266 0.784674 +172 0.129266 0.666856 +193 0.0802255 0.707042 +201 0.0802255 0.798374 +SURF 0x10 +mat 1 +refs 4 +193 0.0802255 0.707042 +192 0.0802255 0.897013 +202 0.050543 0.883313 +203 0.050543 0.748142 +SURF 0x10 +mat 1 +refs 4 +192 0.0802255 0.897013 +194 0.0802255 0.908886 +204 0.050543 0.891533 +202 0.050543 0.883313 +SURF 0x10 +mat 1 +refs 4 +194 0.0802255 0.908886 +195 0.0802255 0.91254 +205 0.050543 0.894273 +204 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +195 0.0802255 0.91254 +196 0.0802255 0.91254 +206 0.050543 0.894273 +205 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +196 0.0802255 0.91254 +197 0.0802255 0.908886 +207 0.050543 0.891533 +206 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +197 0.0802255 0.908886 +198 0.0802255 0.900666 +208 0.050543 0.886053 +207 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +198 0.0802255 0.900666 +199 0.0802255 0.880573 +209 0.050543 0.87144 +208 0.050543 0.886053 +SURF 0x10 +mat 1 +refs 4 +199 0.0802255 0.880573 +200 0.0802255 0.845867 +210 0.050543 0.845867 +209 0.050543 0.87144 +SURF 0x10 +mat 1 +refs 4 +200 0.0802255 0.845867 +201 0.0802255 0.798374 +211 0.050543 0.812074 +210 0.050543 0.845867 +SURF 0x10 +mat 1 +refs 4 +201 0.0802255 0.798374 +193 0.0802255 0.707042 +203 0.050543 0.748142 +211 0.050543 0.812074 +SURF 0x10 +mat 1 +refs 4 +203 0.050543 0.748142 +202 0.050543 0.883313 +212 0.0350563 0.870527 +213 0.0350563 0.781021 +SURF 0x10 +mat 1 +refs 4 +202 0.050543 0.883313 +204 0.050543 0.891533 +214 0.0350563 0.876007 +212 0.0350563 0.870527 +SURF 0x10 +mat 1 +refs 4 +204 0.050543 0.891533 +205 0.050543 0.894273 +215 0.0350563 0.877833 +214 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +205 0.050543 0.894273 +206 0.050543 0.894273 +216 0.0350563 0.877833 +215 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +206 0.050543 0.894273 +207 0.050543 0.891533 +217 0.0350563 0.876007 +216 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +207 0.050543 0.891533 +208 0.050543 0.886053 +218 0.0350563 0.872353 +217 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +208 0.050543 0.886053 +209 0.050543 0.87144 +219 0.0350563 0.862307 +218 0.0350563 0.872353 +SURF 0x10 +mat 1 +refs 4 +209 0.050543 0.87144 +210 0.050543 0.845867 +220 0.0350563 0.845867 +219 0.0350563 0.862307 +SURF 0x10 +mat 1 +refs 4 +210 0.050543 0.845867 +211 0.050543 0.812074 +221 0.0350563 0.823034 +220 0.0350563 0.845867 +SURF 0x10 +mat 1 +refs 4 +211 0.050543 0.812074 +203 0.050543 0.748142 +213 0.0350563 0.781021 +221 0.0350563 0.823034 +SURF 0x10 +mat 1 +refs 4 +213 0.0350563 0.781021 +212 0.0350563 0.870527 +222 0.0286036 0.861394 +223 0.0286036 0.803854 +SURF 0x10 +mat 1 +refs 4 +212 0.0350563 0.870527 +214 0.0350563 0.876007 +224 0.0286036 0.865047 +222 0.0286036 0.861394 +SURF 0x10 +mat 1 +refs 4 +214 0.0350563 0.876007 +215 0.0350563 0.877833 +225 0.0286036 0.86596 +224 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +215 0.0350563 0.877833 +216 0.0350563 0.877833 +226 0.0286036 0.86596 +225 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +216 0.0350563 0.877833 +217 0.0350563 0.876007 +227 0.0286036 0.865047 +226 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +217 0.0350563 0.876007 +218 0.0350563 0.872353 +228 0.0286036 0.862307 +227 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +218 0.0350563 0.872353 +219 0.0350563 0.862307 +229 0.0286036 0.856827 +228 0.0286036 0.862307 +SURF 0x10 +mat 1 +refs 4 +219 0.0350563 0.862307 +220 0.0350563 0.845867 +230 0.0286036 0.845867 +229 0.0286036 0.856827 +SURF 0x10 +mat 1 +refs 4 +220 0.0350563 0.845867 +221 0.0350563 0.823034 +231 0.0286036 0.831254 +230 0.0286036 0.845867 +SURF 0x10 +mat 1 +refs 4 +221 0.0350563 0.823034 +213 0.0350563 0.781021 +223 0.0286036 0.803854 +231 0.0286036 0.831254 +SURF 0x10 +mat 1 +refs 4 +223 0.0286036 0.803854 +222 0.0286036 0.861394 +232 0.0260225 0.854087 +233 0.0260225 0.822121 +SURF 0x10 +mat 1 +refs 4 +222 0.0286036 0.861394 +224 0.0286036 0.865047 +234 0.0260225 0.855914 +232 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +224 0.0286036 0.865047 +225 0.0286036 0.86596 +235 0.0260225 0.856827 +234 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +225 0.0286036 0.86596 +226 0.0286036 0.86596 +236 0.0260225 0.856827 +235 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +226 0.0286036 0.86596 +227 0.0286036 0.865047 +237 0.0260225 0.855914 +236 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +227 0.0286036 0.865047 +228 0.0286036 0.862307 +238 0.0260225 0.854087 +237 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +228 0.0286036 0.862307 +229 0.0286036 0.856827 +239 0.0260225 0.851347 +238 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +229 0.0286036 0.856827 +230 0.0286036 0.845867 +240 0.0260225 0.845867 +239 0.0260225 0.851347 +SURF 0x10 +mat 1 +refs 4 +230 0.0286036 0.845867 +231 0.0286036 0.831254 +241 0.0260225 0.837647 +240 0.0260225 0.845867 +SURF 0x10 +mat 1 +refs 4 +231 0.0286036 0.831254 +223 0.0286036 0.803854 +233 0.0260225 0.822121 +241 0.0260225 0.837647 +SURF 0x10 +mat 1 +refs 3 +233 0.0260225 0.822121 +232 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +232 0.0260225 0.854087 +234 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +234 0.0260225 0.855914 +235 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +235 0.0260225 0.856827 +236 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +236 0.0260225 0.856827 +237 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +237 0.0260225 0.855914 +238 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +238 0.0260225 0.854087 +239 0.0260225 0.851347 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +239 0.0260225 0.851347 +240 0.0260225 0.845867 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +240 0.0260225 0.845867 +241 0.0260225 0.837647 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +241 0.0260225 0.837647 +233 0.0260225 0.822121 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 4 +171 0.174435 0.685122 +243 0.195084 0.684209 +161 0.195084 0.916193 +173 0.174435 0.913453 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +161 0.195084 0.916193 +160 0.195084 0.932633 +174 0.174435 0.929893 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +160 0.195084 0.932633 +162 0.196375 0.938113 +177 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +162 0.196375 0.938113 +163 0.196375 0.938113 +179 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +163 0.196375 0.938113 +164 0.196375 0.932633 +181 0.174435 0.928979 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +164 0.196375 0.932633 +165 0.196375 0.921673 +183 0.174435 0.918933 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +165 0.196375 0.921673 +166 0.196375 0.894273 +185 0.174435 0.892447 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +166 0.196375 0.894273 +167 0.196375 0.845867 +187 0.174435 0.845867 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +167 0.196375 0.845867 +168 0.196375 0.772801 +189 0.174435 0.776455 +SURF 0x10 +mat 1 +refs 4 +128 0.480295 0.664116 +131 0.480295 0.921673 +141 0.380923 0.921673 +244 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +141 0.380923 0.921673 +151 0.271226 0.920759 +245 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +151 0.271226 0.920759 +161 0.195084 0.916193 +243 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 4 +191 0.174435 0.685122 +189 0.174435 0.776455 +168 0.196375 0.772801 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +2 0.695816 0.568217 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +129 0.480295 0.574611 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +6 0.695816 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +6 0.695816 0.921673 +131 0.480295 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +176 0.129266 0.908886 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +173 0.174435 0.913453 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +170 0.174435 0.64311 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +172 0.129266 0.666856 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +149 0.380923 0.671422 +139 0.480295 0.664116 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +139 0.480295 0.664116 +129 0.480295 0.574611 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +245 0.271226 0.678729 +159 0.271226 0.678729 +149 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +243 0.195084 0.684209 +169 0.196375 0.684209 +159 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +243 0.195084 0.684209 +171 0.174435 0.685122 +191 0.174435 0.685122 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +170 0.174435 0.64311 +191 0.174435 0.685122 +kids 0 +OBJECT poly +name "Wing_Brace_L" +numvert 16 +0.571227 -0.0984255 0.0574664 +0.571227 0.164205 0.661037 +0.616069 0.164205 0.661037 +0.616069 -0.0984255 0.0574664 +0.618555 -0.100705 0.0584581 +0.618555 0.161926 0.662028 +0.618555 0.157547 0.663934 +0.618555 -0.105083 0.0603633 +0.616069 -0.107362 0.061355 +0.616069 0.155268 0.664925 +0.571227 0.155268 0.664925 +0.571227 -0.107362 0.061355 +0.568741 -0.105083 0.0603633 +0.568741 0.157547 0.663934 +0.568741 0.161926 0.662028 +0.568741 -0.100705 0.0584581 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +8 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +14 0 0 +13 0 0 +10 0 0 +9 0 0 +6 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +5 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +9 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +12 0 0 +11 0 0 +kids 0 +OBJECT poly +name "Wing_Brace_R" +numvert 16 +0.616069 -0.0984255 -0.0574664 +0.616069 0.164205 -0.661037 +0.571227 0.164205 -0.661037 +0.571227 -0.0984255 -0.0574664 +0.618555 -0.105083 -0.0603633 +0.618555 0.157547 -0.663934 +0.618555 0.161926 -0.662028 +0.618555 -0.100705 -0.0584581 +0.571227 -0.107362 -0.061355 +0.571227 0.155268 -0.664925 +0.616069 0.155268 -0.664925 +0.616069 -0.107362 -0.061355 +0.568741 -0.100705 -0.0584581 +0.568741 0.161926 -0.662028 +0.568741 0.157547 -0.663934 +0.568741 -0.105083 -0.0603633 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +8 0 0 +11 0 0 +4 0 0 +7 0 0 +0 0 0 +3 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +6 0 0 +5 0 0 +10 0 0 +9 0 0 +14 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +13 0 0 +12 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +6 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +11 0 0 +10 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +15 0 0 +14 0 0 +9 0 0 +kids 0 +OBJECT poly +name "L_Aileron" +texture "Rascal.rgb" +numvert 15 +0.81915 0.138307 0.660425 +0.727528 0.138307 0.660425 +0.735007 0.130692 0.451014 +0.83185 0.130692 0.451014 +0.797416 0.146614 0.888874 +0.719369 0.146614 0.888874 +0.769575 0.152383 1.04752 +0.713703 0.152383 1.04752 +0.757651 0.154008 1.0922 +0.713716 0.162405 1.04716 +0.712107 0.162163 1.0922 +0.727548 0.154078 0.659852 +0.735027 0.146638 0.450434 +0.719388 0.161182 0.888345 +0.712107 0.154008 1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.382125 0.586273 +1 0.382125 0.671581 +2 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +4 0.271736 0.606454 +5 0.271736 0.678919 +1 0.382125 0.671581 +0 0.382125 0.586273 +SURF 0x10 +mat 1 +refs 4 +6 0.195114 0.632138 +7 0.195114 0.684423 +5 0.271736 0.678919 +4 0.271736 0.606454 +SURF 0x10 +mat 1 +refs 4 +8 0.174335 0.643145 +6 0.195114 0.632138 +9 0.196413 0.684423 +10 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +11 0.382125 0.671581 +0 0.382125 0.586273 +3 0.482124 0.574349 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +13 0.271736 0.678919 +4 0.271736 0.606454 +0 0.382125 0.586273 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +9 0.196413 0.684423 +6 0.195114 0.632138 +4 0.271736 0.606454 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +6 0.195114 0.632138 +8 0.174335 0.643145 +14 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.482124 0.664243 +12 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +2 0.482124 0.664243 +1 0.382125 0.671581 +11 0.382125 0.671581 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +1 0.382125 0.671581 +5 0.271736 0.678919 +13 0.271736 0.678919 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +5 0.271736 0.678919 +7 0.195114 0.684423 +9 0.196413 0.684423 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +14 0.174335 0.68534 +10 0.174335 0.68534 +9 0.196413 0.684423 +SURF 0x10 +mat 1 +refs 3 +14 0.174335 0.68534 +8 0.174335 0.643145 +10 0.174335 0.68534 +kids 0 +OBJECT poly +name "R_Aileron" +texture "Rascal.rgb" +numvert 15 +0.83185 0.130692 -0.451014 +0.735007 0.130692 -0.451014 +0.727528 0.138307 -0.660425 +0.81915 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +0.797416 0.146614 -0.888874 +0.713703 0.152383 -1.04752 +0.769575 0.152383 -1.04752 +0.712107 0.162163 -1.0922 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.735027 0.146638 -0.450434 +0.727548 0.154078 -0.659852 +0.719388 0.161182 -0.888345 +0.712107 0.154008 -1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.480295 0.574611 +1 0.480295 0.664116 +2 0.380923 0.671422 +3 0.380923 0.586484 +SURF 0x10 +mat 1 +refs 4 +3 0.380923 0.586484 +2 0.380923 0.671422 +4 0.271226 0.678729 +5 0.271226 0.606577 +SURF 0x10 +mat 1 +refs 4 +5 0.271226 0.606577 +4 0.271226 0.678729 +6 0.195084 0.684209 +7 0.195084 0.63215 +SURF 0x10 +mat 1 +refs 4 +8 0.174435 0.685122 +9 0.196375 0.684209 +7 0.195084 0.63215 +10 0.174435 0.64311 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +0 0.480295 0.574611 +3 0.380923 0.586484 +12 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +3 0.380923 0.586484 +5 0.271226 0.606577 +13 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +5 0.271226 0.606577 +7 0.195084 0.63215 +9 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 4 +14 0.174435 0.685122 +10 0.174435 0.64311 +7 0.195084 0.63215 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +0 0.480295 0.574611 +11 0.480295 0.664116 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +12 0.380923 0.671422 +2 0.380923 0.671422 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +13 0.271226 0.678729 +4 0.271226 0.678729 +2 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +9 0.196375 0.684209 +6 0.195084 0.684209 +4 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +9 0.196375 0.684209 +8 0.174435 0.685122 +14 0.174435 0.685122 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +8 0.174435 0.685122 +10 0.174435 0.64311 +14 0.174435 0.685122 +kids 0 +OBJECT poly +name "HStab" +texture "Rascal.rgb" +numvert 379 +1.59385 0.0579271 -0.01905 +1.59067 0.0570764 -0.01905 +1.59067 0.0570764 2.90536e-16 +1.59385 0.0579271 2.91315e-16 +1.58835 0.0547521 -0.01905 +1.58835 0.0547521 2.89966e-16 +1.5875 0.0515771 -0.01905 +1.5875 0.0515771 2.8976e-16 +1.58835 0.0484021 -0.01905 +1.58835 0.0484021 2.89966e-16 +1.59067 0.0460779 -0.01905 +1.59067 0.0460779 2.90536e-16 +1.59385 0.0452271 -0.01905 +1.59385 0.0452271 2.91315e-16 +1.6915 0.0570764 -0.459231 +1.70116 0.0570764 -0.45927 +1.70251 0.0547521 -0.461157 +1.6901 0.0547521 -0.461082 +1.59385 0.0579271 -0.0254 +1.59067 0.0570764 -0.0254 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 -0.0254 +1.59067 0.0460779 -0.0254 +1.59385 0.0452271 -0.0254 +1.58835 0.0484021 -0.0254 +1.5875 0.0515771 -0.0254 +1.58835 0.0547521 -0.0254 +1.59385 0.0579271 -0.0381 +1.59067 0.0570764 -0.0381 +1.7526 0.0579271 -0.0381 +1.59067 0.0460779 -0.0381 +1.59385 0.0452271 -0.0381 +1.58835 0.0484021 -0.0381 +1.5875 0.0515771 -0.0381 +1.58835 0.0547521 -0.0381 +1.59385 0.0579271 -0.05715 +1.59067 0.0570764 -0.05715 +1.7526 0.0579271 -0.05715 +1.59067 0.0460779 -0.05715 +1.59385 0.0452271 -0.05715 +1.58835 0.0484021 -0.05715 +1.5875 0.0515771 -0.05715 +1.58835 0.0547521 -0.05715 +1.59385 0.0579271 -0.0762 +1.59067 0.0570764 -0.0762 +1.7526 0.0579271 -0.0762 +1.59067 0.0460779 -0.0762 +1.59385 0.0452271 -0.0762 +1.58835 0.0484021 -0.0762 +1.5875 0.0515771 -0.0762 +1.58835 0.0547521 -0.0762 +1.59385 0.0579271 -0.1016 +1.59067 0.0570764 -0.1016 +1.7526 0.0579271 -0.1016 +1.59067 0.0460779 -0.1016 +1.59385 0.0452271 -0.1016 +1.58835 0.0484021 -0.1016 +1.5875 0.0515771 -0.1016 +1.58835 0.0547521 -0.1016 +1.59449 0.0579271 -0.1397 +1.59131 0.0570764 -0.1397 +1.7526 0.0579271 -0.1397 +1.59131 0.0460779 -0.1397 +1.59449 0.0452271 -0.1397 +1.58899 0.0484021 -0.1397 +1.58814 0.0515771 -0.1397 +1.58899 0.0547521 -0.1397 +1.59619 0.0579271 -0.1778 +1.59302 0.0570764 -0.1778 +1.7526 0.0579271 -0.1778 +1.59302 0.0460779 -0.1778 +1.59619 0.0452271 -0.1778 +1.5907 0.0484021 -0.1778 +1.58984 0.0515771 -0.1778 +1.5907 0.0547521 -0.1778 +1.59953 0.0579271 -0.228995 +1.59636 0.0570764 -0.228995 +1.7526 0.0579271 -0.228995 +1.59636 0.0460779 -0.228995 +1.59953 0.0452271 -0.228995 +1.59403 0.0484021 -0.228995 +1.59318 0.0515771 -0.228995 +1.59403 0.0547521 -0.228995 +1.60458 0.0579271 -0.280191 +1.6014 0.0570764 -0.280191 +1.7526 0.0579271 -0.280191 +1.6014 0.0460779 -0.280191 +1.60458 0.0452271 -0.280191 +1.59908 0.0484021 -0.280191 +1.59823 0.0515771 -0.280191 +1.59908 0.0547521 -0.280191 +1.61261 0.0579271 -0.331386 +1.60943 0.0570764 -0.331386 +1.7526 0.0579271 -0.331386 +1.60943 0.0460779 -0.331386 +1.61261 0.0452271 -0.331386 +1.60711 0.0484021 -0.331386 +1.60626 0.0515771 -0.331386 +1.60711 0.0547521 -0.331386 +1.62359 0.0579271 -0.382186 +1.62041 0.0570764 -0.382186 +1.7526 0.0579271 -0.382186 +1.62041 0.0460779 -0.382186 +1.62359 0.0452271 -0.382186 +1.61809 0.0484021 -0.382186 +1.61724 0.0515771 -0.382186 +1.61809 0.0547521 -0.382186 +1.63542 0.0579271 -0.408368 +1.63225 0.0570764 -0.408368 +1.77365 0.0579271 -0.382186 +1.77682 0.0570764 -0.382186 +1.76299 0.0570764 -0.408368 +1.75982 0.0579271 -0.408368 +1.77915 0.0547521 -0.382186 +1.76532 0.0547521 -0.408368 +1.78 0.0515771 -0.382186 +1.76617 0.0515771 -0.408368 +1.77915 0.0484021 -0.382186 +1.76532 0.0484021 -0.408368 +1.77682 0.0460779 -0.382186 +1.76299 0.0460779 -0.408368 +1.77365 0.0452271 -0.382186 +1.75982 0.0452271 -0.408368 +1.7526 0.0452271 -0.382186 +1.63225 0.0460779 -0.408368 +1.63542 0.0452271 -0.408368 +1.62992 0.0484021 -0.408368 +1.62907 0.0515771 -0.408368 +1.62992 0.0547521 -0.408368 +1.65311 0.0579271 -0.433768 +1.64994 0.0570764 -0.433768 +1.74152 0.0579271 -0.433768 +1.7447 0.0570764 -0.433768 +1.74702 0.0547521 -0.433768 +1.74787 0.0515771 -0.433768 +1.74702 0.0484021 -0.433768 +1.7447 0.0460779 -0.433768 +1.74152 0.0452271 -0.433768 +1.65311 0.0452271 -0.433768 +1.64994 0.0460779 -0.433768 +1.64761 0.0484021 -0.433768 +1.64676 0.0515771 -0.433768 +1.64761 0.0547521 -0.433768 +1.66243 0.0579271 -0.442748 +1.65925 0.0570764 -0.442748 +1.73216 0.0579271 -0.442748 +1.73533 0.0570764 -0.442748 +1.73766 0.0547521 -0.442748 +1.73851 0.0515771 -0.442748 +1.73766 0.0484021 -0.442748 +1.73533 0.0460779 -0.442748 +1.73216 0.0452271 -0.442748 +1.66243 0.0452271 -0.442748 +1.65925 0.0460779 -0.442748 +1.65693 0.0484021 -0.442748 +1.65608 0.0515771 -0.442748 +1.65693 0.0547521 -0.442748 +1.68017 0.0579271 -0.455448 +1.67699 0.0570764 -0.455448 +1.71417 0.0579271 -0.455448 +1.71734 0.0570764 -0.455448 +1.71967 0.0547521 -0.455448 +1.72052 0.0515771 -0.455448 +1.71967 0.0484021 -0.455448 +1.71734 0.0460779 -0.455448 +1.71417 0.0452271 -0.455448 +1.68017 0.0452271 -0.455448 +1.67699 0.0460779 -0.455448 +1.67467 0.0484021 -0.455448 +1.67382 0.0515771 -0.455448 +1.67467 0.0547521 -0.455448 +1.69342 0.0579271 -0.456702 +1.6993 0.0579271 -0.456694 +1.70301 0.0515771 -0.461847 +1.70251 0.0484021 -0.461157 +1.70116 0.0460779 -0.45927 +1.6993 0.0452271 -0.456694 +1.69342 0.0452271 -0.456702 +1.6915 0.0460779 -0.459231 +1.6901 0.0484021 -0.461082 +1.68958 0.0515771 -0.461759 +1.59067 0.0570764 0.01905 +1.59385 0.0579271 0.01905 +1.58835 0.0547521 0.01905 +1.5875 0.0515771 0.01905 +1.58835 0.0484021 0.01905 +1.59067 0.0460779 0.01905 +1.59385 0.0452271 0.01905 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 0.01905 +1.6901 0.0547521 0.461082 +1.70251 0.0547521 0.461157 +1.70116 0.0570764 0.45927 +1.6915 0.0570764 0.459231 +1.59067 0.0570764 0.0254 +1.59385 0.0579271 0.0254 +1.7526 0.0579271 0.0254 +1.59385 0.0452271 0.0254 +1.59067 0.0460779 0.0254 +1.58835 0.0484021 0.0254 +1.5875 0.0515771 0.0254 +1.58835 0.0547521 0.0254 +1.59067 0.0570764 0.0381 +1.59385 0.0579271 0.0381 +1.7526 0.0579271 0.0381 +1.59385 0.0452271 0.0381 +1.59067 0.0460779 0.0381 +1.58835 0.0484021 0.0381 +1.5875 0.0515771 0.0381 +1.58835 0.0547521 0.0381 +1.59067 0.0570764 0.05715 +1.59385 0.0579271 0.05715 +1.7526 0.0579271 0.05715 +1.59385 0.0452271 0.05715 +1.59067 0.0460779 0.05715 +1.58835 0.0484021 0.05715 +1.5875 0.0515771 0.05715 +1.58835 0.0547521 0.05715 +1.59067 0.0570764 0.0762 +1.59385 0.0579271 0.0762 +1.7526 0.0579271 0.0762 +1.59385 0.0452271 0.0762 +1.59067 0.0460779 0.0762 +1.58835 0.0484021 0.0762 +1.5875 0.0515771 0.0762 +1.58835 0.0547521 0.0762 +1.59067 0.0570764 0.1016 +1.59385 0.0579271 0.1016 +1.7526 0.0579271 0.1016 +1.59385 0.0452271 0.1016 +1.59067 0.0460779 0.1016 +1.58835 0.0484021 0.1016 +1.5875 0.0515771 0.1016 +1.58835 0.0547521 0.1016 +1.59131 0.0570764 0.1397 +1.59449 0.0579271 0.1397 +1.7526 0.0579271 0.1397 +1.59449 0.0452271 0.1397 +1.59131 0.0460779 0.1397 +1.58899 0.0484021 0.1397 +1.58814 0.0515771 0.1397 +1.58899 0.0547521 0.1397 +1.59302 0.0570764 0.1778 +1.59619 0.0579271 0.1778 +1.7526 0.0579271 0.1778 +1.59619 0.0452271 0.1778 +1.59302 0.0460779 0.1778 +1.5907 0.0484021 0.1778 +1.58984 0.0515771 0.1778 +1.5907 0.0547521 0.1778 +1.59636 0.0570764 0.228995 +1.59953 0.0579271 0.228995 +1.7526 0.0579271 0.228995 +1.59953 0.0452271 0.228995 +1.59636 0.0460779 0.228995 +1.59403 0.0484021 0.228995 +1.59318 0.0515771 0.228995 +1.59403 0.0547521 0.228995 +1.6014 0.0570764 0.280191 +1.60458 0.0579271 0.280191 +1.7526 0.0579271 0.280191 +1.60458 0.0452271 0.280191 +1.6014 0.0460779 0.280191 +1.59908 0.0484021 0.280191 +1.59823 0.0515771 0.280191 +1.59908 0.0547521 0.280191 +1.60943 0.0570764 0.331386 +1.61261 0.0579271 0.331386 +1.7526 0.0579271 0.331386 +1.61261 0.0452271 0.331386 +1.60943 0.0460779 0.331386 +1.60711 0.0484021 0.331386 +1.60626 0.0515771 0.331386 +1.60711 0.0547521 0.331386 +1.62041 0.0570764 0.382186 +1.62359 0.0579271 0.382186 +1.7526 0.0579271 0.382186 +1.62359 0.0452271 0.382186 +1.62041 0.0460779 0.382186 +1.61809 0.0484021 0.382186 +1.61724 0.0515771 0.382186 +1.61809 0.0547521 0.382186 +1.63225 0.0570764 0.408368 +1.63542 0.0579271 0.408368 +1.75982 0.0579271 0.408368 +1.76299 0.0570764 0.408368 +1.77682 0.0570764 0.382186 +1.77365 0.0579271 0.382186 +1.76532 0.0547521 0.408368 +1.77915 0.0547521 0.382186 +1.76617 0.0515771 0.408368 +1.78 0.0515771 0.382186 +1.76532 0.0484021 0.408368 +1.77915 0.0484021 0.382186 +1.76299 0.0460779 0.408368 +1.77682 0.0460779 0.382186 +1.75982 0.0452271 0.408368 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.63542 0.0452271 0.408368 +1.63225 0.0460779 0.408368 +1.62992 0.0484021 0.408368 +1.62907 0.0515771 0.408368 +1.62992 0.0547521 0.408368 +1.64994 0.0570764 0.433768 +1.65311 0.0579271 0.433768 +1.74152 0.0579271 0.433768 +1.7447 0.0570764 0.433768 +1.74702 0.0547521 0.433768 +1.74787 0.0515771 0.433768 +1.74702 0.0484021 0.433768 +1.7447 0.0460779 0.433768 +1.74152 0.0452271 0.433768 +1.65311 0.0452271 0.433768 +1.64994 0.0460779 0.433768 +1.64761 0.0484021 0.433768 +1.64676 0.0515771 0.433768 +1.64761 0.0547521 0.433768 +1.65925 0.0570764 0.442748 +1.66243 0.0579271 0.442748 +1.73216 0.0579271 0.442748 +1.73533 0.0570764 0.442748 +1.73766 0.0547521 0.442748 +1.73851 0.0515771 0.442748 +1.73766 0.0484021 0.442748 +1.73533 0.0460779 0.442748 +1.73216 0.0452271 0.442748 +1.66243 0.0452271 0.442748 +1.65925 0.0460779 0.442748 +1.65693 0.0484021 0.442748 +1.65608 0.0515771 0.442748 +1.65693 0.0547521 0.442748 +1.67699 0.0570764 0.455448 +1.68017 0.0579271 0.455448 +1.71417 0.0579271 0.455448 +1.71734 0.0570764 0.455448 +1.71967 0.0547521 0.455448 +1.72052 0.0515771 0.455448 +1.71967 0.0484021 0.455448 +1.71734 0.0460779 0.455448 +1.71417 0.0452271 0.455448 +1.68017 0.0452271 0.455448 +1.67699 0.0460779 0.455448 +1.67467 0.0484021 0.455448 +1.67382 0.0515771 0.455448 +1.67467 0.0547521 0.455448 +1.69342 0.0579271 0.456702 +1.6993 0.0579271 0.456694 +1.70301 0.0515771 0.461847 +1.70251 0.0484021 0.461157 +1.70116 0.0460779 0.45927 +1.6993 0.0452271 0.456694 +1.69342 0.0452271 0.456702 +1.6915 0.0460779 0.459231 +1.6901 0.0484021 0.461082 +1.68958 0.0515771 0.461759 +1.7526 0.0452271 -0.01905 +1.7526 0.0452271 -0.0254 +1.7526 0.0452271 -0.0381 +1.7526 0.0452271 -0.05715 +1.7526 0.0452271 -0.0762 +1.7526 0.0452271 -0.1016 +1.7526 0.0452271 -0.1397 +1.7526 0.0452271 -0.1778 +1.7526 0.0452271 -0.228995 +1.7526 0.0452271 -0.280191 +1.7526 0.0452271 -0.331386 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.0381 +1.7526 0.0452271 0.05715 +1.7526 0.0452271 0.0762 +1.7526 0.0452271 0.1016 +1.7526 0.0452271 0.1397 +1.7526 0.0452271 0.1778 +1.7526 0.0452271 0.228995 +1.7526 0.0452271 0.280191 +1.7526 0.0452271 0.331386 +numsurf 384 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +1 0.742627 0.922959 +2 0.742627 0.941242 +3 0.744104 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +4 0.74155 0.922959 +5 0.74155 0.941242 +2 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +6 0.741155 0.922959 +7 0.741155 0.941242 +5 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +8 0.74155 0.922959 +9 0.74155 0.941242 +7 0.741155 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +10 0.742627 0.922959 +11 0.742627 0.941242 +9 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +12 0.744104 0.922959 +13 0.744104 0.941242 +11 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +15 0.793943 0.500463 +16 0.79457 0.498652 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +0 0.744104 0.922959 +18 0.744104 0.916865 +19 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +20 0.817833 0.922959 +21 0.817833 0.916865 +18 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +12 0.744104 0.922959 +10 0.742627 0.922959 +22 0.742627 0.916865 +23 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +8 0.74155 0.922959 +24 0.74155 0.916865 +22 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +6 0.741155 0.922959 +25 0.741155 0.916865 +24 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +4 0.74155 0.922959 +26 0.74155 0.916865 +25 0.741155 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +1 0.742627 0.922959 +19 0.742627 0.916865 +26 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.742627 0.916865 +18 0.744104 0.916865 +27 0.744104 0.904676 +28 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.744104 0.916865 +21 0.817833 0.916865 +29 0.817833 0.904676 +27 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.744104 0.916865 +22 0.742627 0.916865 +30 0.742627 0.904676 +31 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.742627 0.916865 +24 0.74155 0.916865 +32 0.74155 0.904676 +30 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.74155 0.916865 +25 0.741155 0.916865 +33 0.741155 0.904676 +32 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +25 0.741155 0.916865 +26 0.74155 0.916865 +34 0.74155 0.904676 +33 0.741155 0.904676 +SURF 0x10 +mat 1 +refs 4 +26 0.74155 0.916865 +19 0.742627 0.916865 +28 0.742627 0.904676 +34 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +28 0.742627 0.904676 +27 0.744104 0.904676 +35 0.744104 0.886393 +36 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +27 0.744104 0.904676 +29 0.817833 0.904676 +37 0.817833 0.886393 +35 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.744104 0.904676 +30 0.742627 0.904676 +38 0.742627 0.886393 +39 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.742627 0.904676 +32 0.74155 0.904676 +40 0.74155 0.886393 +38 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.74155 0.904676 +33 0.741155 0.904676 +41 0.741155 0.886393 +40 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +33 0.741155 0.904676 +34 0.74155 0.904676 +42 0.74155 0.886393 +41 0.741155 0.886393 +SURF 0x10 +mat 1 +refs 4 +34 0.74155 0.904676 +28 0.742627 0.904676 +36 0.742627 0.886393 +42 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +36 0.742627 0.886393 +35 0.744104 0.886393 +43 0.744104 0.86811 +44 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +35 0.744104 0.886393 +37 0.817833 0.886393 +45 0.817833 0.86811 +43 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.744104 0.886393 +38 0.742627 0.886393 +46 0.742627 0.86811 +47 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.742627 0.886393 +40 0.74155 0.886393 +48 0.74155 0.86811 +46 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.74155 0.886393 +41 0.741155 0.886393 +49 0.741155 0.86811 +48 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +41 0.741155 0.886393 +42 0.74155 0.886393 +50 0.74155 0.86811 +49 0.741155 0.86811 +SURF 0x10 +mat 1 +refs 4 +42 0.74155 0.886393 +36 0.742627 0.886393 +44 0.742627 0.86811 +50 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +44 0.742627 0.86811 +43 0.744104 0.86811 +51 0.744104 0.843733 +52 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +43 0.744104 0.86811 +45 0.817833 0.86811 +53 0.817833 0.843733 +51 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.744104 0.86811 +46 0.742627 0.86811 +54 0.742627 0.843733 +55 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.742627 0.86811 +48 0.74155 0.86811 +56 0.74155 0.843733 +54 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.74155 0.86811 +49 0.741155 0.86811 +57 0.741155 0.843733 +56 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +49 0.741155 0.86811 +50 0.74155 0.86811 +58 0.74155 0.843733 +57 0.741155 0.843733 +SURF 0x10 +mat 1 +refs 4 +50 0.74155 0.86811 +44 0.742627 0.86811 +52 0.742627 0.843733 +58 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +52 0.742627 0.843733 +51 0.744104 0.843733 +59 0.744401 0.807167 +60 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +51 0.744104 0.843733 +53 0.817833 0.843733 +61 0.817833 0.807167 +59 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.744104 0.843733 +54 0.742627 0.843733 +62 0.742924 0.807167 +63 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.742627 0.843733 +56 0.74155 0.843733 +64 0.741847 0.807167 +62 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.74155 0.843733 +57 0.741155 0.843733 +65 0.741452 0.807167 +64 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +57 0.741155 0.843733 +58 0.74155 0.843733 +66 0.741847 0.807167 +65 0.741452 0.807167 +SURF 0x10 +mat 1 +refs 4 +58 0.74155 0.843733 +52 0.742627 0.843733 +60 0.742924 0.807167 +66 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +60 0.742924 0.807167 +59 0.744401 0.807167 +67 0.745191 0.7706 +68 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +59 0.744401 0.807167 +61 0.817833 0.807167 +69 0.817833 0.7706 +67 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.744401 0.807167 +62 0.742924 0.807167 +70 0.743718 0.7706 +71 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.742924 0.807167 +64 0.741847 0.807167 +72 0.742641 0.7706 +70 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.741847 0.807167 +65 0.741452 0.807167 +73 0.742242 0.7706 +72 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +65 0.741452 0.807167 +66 0.741847 0.807167 +74 0.742641 0.7706 +73 0.742242 0.7706 +SURF 0x10 +mat 1 +refs 4 +66 0.741847 0.807167 +60 0.742924 0.807167 +68 0.743718 0.7706 +74 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +68 0.743718 0.7706 +67 0.745191 0.7706 +75 0.746742 0.721467 +76 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +67 0.745191 0.7706 +69 0.817833 0.7706 +77 0.817833 0.721467 +75 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.745191 0.7706 +70 0.743718 0.7706 +78 0.74527 0.721467 +79 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.743718 0.7706 +72 0.742641 0.7706 +80 0.744188 0.721467 +78 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.742641 0.7706 +73 0.742242 0.7706 +81 0.743793 0.721467 +80 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +73 0.742242 0.7706 +74 0.742641 0.7706 +82 0.744188 0.721467 +81 0.743793 0.721467 +SURF 0x10 +mat 1 +refs 4 +74 0.742641 0.7706 +68 0.743718 0.7706 +76 0.74527 0.721467 +82 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +76 0.74527 0.721467 +75 0.746742 0.721467 +83 0.749087 0.672332 +84 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +75 0.746742 0.721467 +77 0.817833 0.721467 +85 0.817833 0.672332 +83 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.746742 0.721467 +78 0.74527 0.721467 +86 0.747611 0.672332 +87 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.74527 0.721467 +80 0.744188 0.721467 +88 0.746533 0.672332 +86 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.744188 0.721467 +81 0.743793 0.721467 +89 0.746138 0.672332 +88 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +81 0.743793 0.721467 +82 0.744188 0.721467 +90 0.746533 0.672332 +89 0.746138 0.672332 +SURF 0x10 +mat 1 +refs 4 +82 0.744188 0.721467 +76 0.74527 0.721467 +84 0.747611 0.672332 +90 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +84 0.747611 0.672332 +83 0.749087 0.672332 +91 0.752817 0.623198 +92 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +83 0.749087 0.672332 +85 0.817833 0.672332 +93 0.817833 0.623198 +91 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.749087 0.672332 +86 0.747611 0.672332 +94 0.75134 0.623198 +95 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.747611 0.672332 +88 0.746533 0.672332 +96 0.750262 0.623198 +94 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.746533 0.672332 +89 0.746138 0.672332 +97 0.749868 0.623198 +96 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +89 0.746138 0.672332 +90 0.746533 0.672332 +98 0.750262 0.623198 +97 0.749868 0.623198 +SURF 0x10 +mat 1 +refs 4 +90 0.746533 0.672332 +84 0.747611 0.672332 +92 0.75134 0.623198 +98 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +92 0.75134 0.623198 +91 0.752817 0.623198 +99 0.757916 0.574443 +100 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +91 0.752817 0.623198 +93 0.817833 0.623198 +101 0.817833 0.574443 +99 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.752817 0.623198 +94 0.75134 0.623198 +102 0.756439 0.574443 +103 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.75134 0.623198 +96 0.750262 0.623198 +104 0.755362 0.574443 +102 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.750262 0.623198 +97 0.749868 0.623198 +105 0.754967 0.574443 +104 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +97 0.749868 0.623198 +98 0.750262 0.623198 +106 0.755362 0.574443 +105 0.754967 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.750262 0.623198 +92 0.75134 0.623198 +100 0.756439 0.574443 +106 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +100 0.756439 0.574443 +99 0.757916 0.574443 +107 0.763411 0.549315 +108 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 3 +99 0.757916 0.574443 +101 0.817833 0.574443 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +109 0.82761 0.574443 +110 0.829082 0.574443 +111 0.822659 0.549315 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +110 0.829082 0.574443 +113 0.830164 0.574443 +114 0.823741 0.549315 +111 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 4 +113 0.830164 0.574443 +115 0.830559 0.574443 +116 0.824136 0.549315 +114 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +115 0.830559 0.574443 +117 0.830164 0.574443 +118 0.823741 0.549315 +116 0.824136 0.549315 +SURF 0x10 +mat 1 +refs 4 +117 0.830164 0.574443 +119 0.829082 0.574443 +120 0.822659 0.549315 +118 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +121 0.82761 0.574443 +122 0.821187 0.549315 +120 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 3 +121 0.82761 0.574443 +123 0.817833 0.574443 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +103 0.757916 0.574443 +102 0.756439 0.574443 +124 0.761938 0.549315 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +102 0.756439 0.574443 +104 0.755362 0.574443 +126 0.760856 0.549315 +124 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 4 +104 0.755362 0.574443 +105 0.754967 0.574443 +127 0.760462 0.549315 +126 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +105 0.754967 0.574443 +106 0.755362 0.574443 +128 0.760856 0.549315 +127 0.760462 0.549315 +SURF 0x10 +mat 1 +refs 4 +106 0.755362 0.574443 +100 0.756439 0.574443 +108 0.761938 0.549315 +128 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +108 0.761938 0.549315 +107 0.763411 0.549315 +129 0.771627 0.524938 +130 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +107 0.763411 0.549315 +112 0.821187 0.549315 +131 0.812688 0.524938 +129 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +112 0.821187 0.549315 +111 0.822659 0.549315 +132 0.814164 0.524938 +131 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +111 0.822659 0.549315 +114 0.823741 0.549315 +133 0.815242 0.524938 +132 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +114 0.823741 0.549315 +116 0.824136 0.549315 +134 0.815637 0.524938 +133 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +116 0.824136 0.549315 +118 0.823741 0.549315 +135 0.815242 0.524938 +134 0.815637 0.524938 +SURF 0x10 +mat 1 +refs 4 +118 0.823741 0.549315 +120 0.822659 0.549315 +136 0.814164 0.524938 +135 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +120 0.822659 0.549315 +122 0.821187 0.549315 +137 0.812688 0.524938 +136 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +122 0.821187 0.549315 +125 0.763411 0.549315 +138 0.771627 0.524938 +137 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +125 0.763411 0.549315 +124 0.761938 0.549315 +139 0.770154 0.524938 +138 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +124 0.761938 0.549315 +126 0.760856 0.549315 +140 0.769072 0.524938 +139 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +126 0.760856 0.549315 +127 0.760462 0.549315 +141 0.768677 0.524938 +140 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +127 0.760462 0.549315 +128 0.760856 0.549315 +142 0.769072 0.524938 +141 0.768677 0.524938 +SURF 0x10 +mat 1 +refs 4 +128 0.760856 0.549315 +108 0.761938 0.549315 +130 0.770154 0.524938 +142 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +130 0.770154 0.524938 +129 0.771627 0.524938 +143 0.775955 0.516319 +144 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +129 0.771627 0.524938 +131 0.812688 0.524938 +145 0.80834 0.516319 +143 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +131 0.812688 0.524938 +132 0.814164 0.524938 +146 0.809813 0.516319 +145 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +132 0.814164 0.524938 +133 0.815242 0.524938 +147 0.810895 0.516319 +146 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +133 0.815242 0.524938 +134 0.815637 0.524938 +148 0.81129 0.516319 +147 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +134 0.815637 0.524938 +135 0.815242 0.524938 +149 0.810895 0.516319 +148 0.81129 0.516319 +SURF 0x10 +mat 1 +refs 4 +135 0.815242 0.524938 +136 0.814164 0.524938 +150 0.809813 0.516319 +149 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +136 0.814164 0.524938 +137 0.812688 0.524938 +151 0.80834 0.516319 +150 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +137 0.812688 0.524938 +138 0.771627 0.524938 +152 0.775955 0.516319 +151 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +138 0.771627 0.524938 +139 0.770154 0.524938 +153 0.774478 0.516319 +152 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +139 0.770154 0.524938 +140 0.769072 0.524938 +154 0.773401 0.516319 +153 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +140 0.769072 0.524938 +141 0.768677 0.524938 +155 0.773006 0.516319 +154 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +141 0.768677 0.524938 +142 0.769072 0.524938 +156 0.773401 0.516319 +155 0.773006 0.516319 +SURF 0x10 +mat 1 +refs 4 +142 0.769072 0.524938 +130 0.770154 0.524938 +144 0.774478 0.516319 +156 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +144 0.774478 0.516319 +143 0.775955 0.516319 +157 0.784194 0.504131 +158 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +143 0.775955 0.516319 +145 0.80834 0.516319 +159 0.799985 0.504131 +157 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +145 0.80834 0.516319 +146 0.809813 0.516319 +160 0.801457 0.504131 +159 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +146 0.809813 0.516319 +147 0.810895 0.516319 +161 0.80254 0.504131 +160 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +147 0.810895 0.516319 +148 0.81129 0.516319 +162 0.802934 0.504131 +161 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +148 0.81129 0.516319 +149 0.810895 0.516319 +163 0.80254 0.504131 +162 0.802934 0.504131 +SURF 0x10 +mat 1 +refs 4 +149 0.810895 0.516319 +150 0.809813 0.516319 +164 0.801457 0.504131 +163 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +150 0.809813 0.516319 +151 0.80834 0.516319 +165 0.799985 0.504131 +164 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +151 0.80834 0.516319 +152 0.775955 0.516319 +166 0.784194 0.504131 +165 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +152 0.775955 0.516319 +153 0.774478 0.516319 +167 0.782717 0.504131 +166 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +153 0.774478 0.516319 +154 0.773401 0.516319 +168 0.78164 0.504131 +167 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +154 0.773401 0.516319 +155 0.773006 0.516319 +169 0.781245 0.504131 +168 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +155 0.773006 0.516319 +156 0.773401 0.516319 +170 0.78164 0.504131 +169 0.781245 0.504131 +SURF 0x10 +mat 1 +refs 4 +156 0.773401 0.516319 +144 0.774478 0.516319 +158 0.782717 0.504131 +170 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +158 0.782717 0.504131 +157 0.784194 0.504131 +171 0.790348 0.502927 +14 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +157 0.784194 0.504131 +159 0.799985 0.504131 +172 0.793079 0.502935 +171 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +159 0.799985 0.504131 +160 0.801457 0.504131 +15 0.793943 0.500463 +172 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +160 0.801457 0.504131 +161 0.80254 0.504131 +16 0.79457 0.498652 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +161 0.80254 0.504131 +162 0.802934 0.504131 +173 0.794802 0.497989 +16 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +162 0.802934 0.504131 +163 0.80254 0.504131 +174 0.79457 0.498652 +173 0.794802 0.497989 +SURF 0x10 +mat 1 +refs 4 +163 0.80254 0.504131 +164 0.801457 0.504131 +175 0.793943 0.500463 +174 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +164 0.801457 0.504131 +165 0.799985 0.504131 +176 0.793079 0.502935 +175 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +165 0.799985 0.504131 +166 0.784194 0.504131 +177 0.790348 0.502927 +176 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +166 0.784194 0.504131 +167 0.782717 0.504131 +178 0.789456 0.5005 +177 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +167 0.782717 0.504131 +168 0.78164 0.504131 +179 0.788806 0.498723 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +168 0.78164 0.504131 +169 0.781245 0.504131 +180 0.788565 0.498074 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +169 0.781245 0.504131 +170 0.78164 0.504131 +17 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +170 0.78164 0.504131 +158 0.782717 0.504131 +14 0.789456 0.5005 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +171 0.790348 0.502927 +172 0.793079 0.502935 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +16 0.79457 0.498652 +173 0.794802 0.497989 +180 0.788565 0.498074 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +173 0.794802 0.497989 +174 0.79457 0.498652 +179 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +174 0.79457 0.498652 +175 0.793943 0.500463 +178 0.789456 0.5005 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +175 0.793943 0.500463 +176 0.793079 0.502935 +177 0.790348 0.502927 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +2 0.742628 0.94124 +181 0.742628 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.742628 0.94124 +5 0.741551 0.94124 +183 0.741551 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.741551 0.94124 +7 0.741156 0.94124 +184 0.741156 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.741156 0.94124 +9 0.741551 0.94124 +185 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.741551 0.94124 +11 0.742628 0.94124 +186 0.742628 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.742628 0.94124 +13 0.744105 0.94124 +187 0.744105 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +182 0.744105 0.922957 +188 0.817834 0.922957 +189 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +187 0.744105 0.922957 +13 0.744105 0.94124 +190 0.817834 0.94124 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +193 0.794571 0.49865 +194 0.793944 0.500461 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +196 0.742628 0.916863 +197 0.744105 0.916863 +182 0.744105 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +197 0.744105 0.916863 +198 0.817834 0.916863 +188 0.817834 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +199 0.744105 0.916863 +200 0.742628 0.916863 +186 0.742628 0.922957 +187 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +200 0.742628 0.916863 +201 0.741551 0.916863 +185 0.741551 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +201 0.741551 0.916863 +202 0.741156 0.916863 +184 0.741156 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +202 0.741156 0.916863 +203 0.741551 0.916863 +183 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +203 0.741551 0.916863 +196 0.742628 0.916863 +181 0.742628 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +204 0.742628 0.904674 +205 0.744105 0.904674 +197 0.744105 0.916863 +196 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +205 0.744105 0.904674 +206 0.817834 0.904674 +198 0.817834 0.916863 +197 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +207 0.744105 0.904674 +208 0.742628 0.904674 +200 0.742628 0.916863 +199 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +208 0.742628 0.904674 +209 0.741551 0.904674 +201 0.741551 0.916863 +200 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +209 0.741551 0.904674 +210 0.741156 0.904674 +202 0.741156 0.916863 +201 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +210 0.741156 0.904674 +211 0.741551 0.904674 +203 0.741551 0.916863 +202 0.741156 0.916863 +SURF 0x10 +mat 1 +refs 4 +211 0.741551 0.904674 +204 0.742628 0.904674 +196 0.742628 0.916863 +203 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +212 0.742628 0.886391 +213 0.744105 0.886391 +205 0.744105 0.904674 +204 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +213 0.744105 0.886391 +214 0.817834 0.886391 +206 0.817834 0.904674 +205 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +215 0.744105 0.886391 +216 0.742628 0.886391 +208 0.742628 0.904674 +207 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +216 0.742628 0.886391 +217 0.741551 0.886391 +209 0.741551 0.904674 +208 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.741551 0.886391 +218 0.741156 0.886391 +210 0.741156 0.904674 +209 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +218 0.741156 0.886391 +219 0.741551 0.886391 +211 0.741551 0.904674 +210 0.741156 0.904674 +SURF 0x10 +mat 1 +refs 4 +219 0.741551 0.886391 +212 0.742628 0.886391 +204 0.742628 0.904674 +211 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +220 0.742628 0.868108 +221 0.744105 0.868108 +213 0.744105 0.886391 +212 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +221 0.744105 0.868108 +222 0.817834 0.868108 +214 0.817834 0.886391 +213 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +223 0.744105 0.868108 +224 0.742628 0.868108 +216 0.742628 0.886391 +215 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +224 0.742628 0.868108 +225 0.741551 0.868108 +217 0.741551 0.886391 +216 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +225 0.741551 0.868108 +226 0.741156 0.868108 +218 0.741156 0.886391 +217 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +226 0.741156 0.868108 +227 0.741551 0.868108 +219 0.741551 0.886391 +218 0.741156 0.886391 +SURF 0x10 +mat 1 +refs 4 +227 0.741551 0.868108 +220 0.742628 0.868108 +212 0.742628 0.886391 +219 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +228 0.742628 0.843731 +229 0.744105 0.843731 +221 0.744105 0.868108 +220 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +229 0.744105 0.843731 +230 0.817834 0.843731 +222 0.817834 0.868108 +221 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +231 0.744105 0.843731 +232 0.742628 0.843731 +224 0.742628 0.868108 +223 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +232 0.742628 0.843731 +233 0.741551 0.843731 +225 0.741551 0.868108 +224 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +233 0.741551 0.843731 +234 0.741156 0.843731 +226 0.741156 0.868108 +225 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +234 0.741156 0.843731 +235 0.741551 0.843731 +227 0.741551 0.868108 +226 0.741156 0.868108 +SURF 0x10 +mat 1 +refs 4 +235 0.741551 0.843731 +228 0.742628 0.843731 +220 0.742628 0.868108 +227 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +236 0.742925 0.807165 +237 0.744402 0.807165 +229 0.744105 0.843731 +228 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +237 0.744402 0.807165 +238 0.817834 0.807165 +230 0.817834 0.843731 +229 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +239 0.744402 0.807165 +240 0.742925 0.807165 +232 0.742628 0.843731 +231 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +240 0.742925 0.807165 +241 0.741848 0.807165 +233 0.741551 0.843731 +232 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +241 0.741848 0.807165 +242 0.741453 0.807165 +234 0.741156 0.843731 +233 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +242 0.741453 0.807165 +243 0.741848 0.807165 +235 0.741551 0.843731 +234 0.741156 0.843731 +SURF 0x10 +mat 1 +refs 4 +243 0.741848 0.807165 +236 0.742925 0.807165 +228 0.742628 0.843731 +235 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +244 0.74372 0.770599 +245 0.745192 0.770599 +237 0.744402 0.807165 +236 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +245 0.745192 0.770599 +246 0.817834 0.770599 +238 0.817834 0.807165 +237 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +247 0.745192 0.770599 +248 0.74372 0.770599 +240 0.742925 0.807165 +239 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +248 0.74372 0.770599 +249 0.742642 0.770599 +241 0.741848 0.807165 +240 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +249 0.742642 0.770599 +250 0.742243 0.770599 +242 0.741453 0.807165 +241 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +250 0.742243 0.770599 +251 0.742642 0.770599 +243 0.741848 0.807165 +242 0.741453 0.807165 +SURF 0x10 +mat 1 +refs 4 +251 0.742642 0.770599 +244 0.74372 0.770599 +236 0.742925 0.807165 +243 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +252 0.745271 0.721465 +253 0.746743 0.721465 +245 0.745192 0.770599 +244 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +253 0.746743 0.721465 +254 0.817834 0.721465 +246 0.817834 0.770599 +245 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +255 0.746743 0.721465 +256 0.745271 0.721465 +248 0.74372 0.770599 +247 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +256 0.745271 0.721465 +257 0.744189 0.721465 +249 0.742642 0.770599 +248 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +257 0.744189 0.721465 +258 0.743794 0.721465 +250 0.742243 0.770599 +249 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +258 0.743794 0.721465 +259 0.744189 0.721465 +251 0.742642 0.770599 +250 0.742243 0.770599 +SURF 0x10 +mat 1 +refs 4 +259 0.744189 0.721465 +252 0.745271 0.721465 +244 0.74372 0.770599 +251 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +260 0.747612 0.67233 +261 0.749088 0.67233 +253 0.746743 0.721465 +252 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +261 0.749088 0.67233 +262 0.817834 0.67233 +254 0.817834 0.721465 +253 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +263 0.749088 0.67233 +264 0.747612 0.67233 +256 0.745271 0.721465 +255 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +264 0.747612 0.67233 +265 0.746534 0.67233 +257 0.744189 0.721465 +256 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +265 0.746534 0.67233 +266 0.746139 0.67233 +258 0.743794 0.721465 +257 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +266 0.746139 0.67233 +267 0.746534 0.67233 +259 0.744189 0.721465 +258 0.743794 0.721465 +SURF 0x10 +mat 1 +refs 4 +267 0.746534 0.67233 +260 0.747612 0.67233 +252 0.745271 0.721465 +259 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +268 0.751341 0.623196 +269 0.752818 0.623196 +261 0.749088 0.67233 +260 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +269 0.752818 0.623196 +270 0.817834 0.623196 +262 0.817834 0.67233 +261 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +271 0.752818 0.623196 +272 0.751341 0.623196 +264 0.747612 0.67233 +263 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +272 0.751341 0.623196 +273 0.750264 0.623196 +265 0.746534 0.67233 +264 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +273 0.750264 0.623196 +274 0.749869 0.623196 +266 0.746139 0.67233 +265 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +274 0.749869 0.623196 +275 0.750264 0.623196 +267 0.746534 0.67233 +266 0.746139 0.67233 +SURF 0x10 +mat 1 +refs 4 +275 0.750264 0.623196 +268 0.751341 0.623196 +260 0.747612 0.67233 +267 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +276 0.756441 0.574441 +277 0.757917 0.574441 +269 0.752818 0.623196 +268 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +277 0.757917 0.574441 +278 0.817834 0.574441 +270 0.817834 0.623196 +269 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +279 0.757917 0.574441 +280 0.756441 0.574441 +272 0.751341 0.623196 +271 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +280 0.756441 0.574441 +281 0.755363 0.574441 +273 0.750264 0.623196 +272 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +281 0.755363 0.574441 +282 0.754968 0.574441 +274 0.749869 0.623196 +273 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +282 0.754968 0.574441 +283 0.755363 0.574441 +275 0.750264 0.623196 +274 0.749869 0.623196 +SURF 0x10 +mat 1 +refs 4 +283 0.755363 0.574441 +276 0.756441 0.574441 +268 0.751341 0.623196 +275 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +284 0.761939 0.549313 +285 0.763412 0.549313 +277 0.757917 0.574441 +276 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +278 0.817834 0.574441 +277 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +286 0.821188 0.549313 +287 0.82266 0.549313 +288 0.829083 0.574441 +289 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +287 0.82266 0.549313 +290 0.823742 0.549313 +291 0.830165 0.574441 +288 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +290 0.823742 0.549313 +292 0.824137 0.549313 +293 0.83056 0.574441 +291 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +292 0.824137 0.549313 +294 0.823742 0.549313 +295 0.830165 0.574441 +293 0.83056 0.574441 +SURF 0x10 +mat 1 +refs 4 +294 0.823742 0.549313 +296 0.82266 0.549313 +297 0.829083 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +296 0.82266 0.549313 +298 0.821188 0.549313 +299 0.827611 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +300 0.817834 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +301 0.763412 0.549313 +302 0.761939 0.549313 +280 0.756441 0.574441 +279 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +302 0.761939 0.549313 +303 0.760857 0.549313 +281 0.755363 0.574441 +280 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 4 +303 0.760857 0.549313 +304 0.760463 0.549313 +282 0.754968 0.574441 +281 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +304 0.760463 0.549313 +305 0.760857 0.549313 +283 0.755363 0.574441 +282 0.754968 0.574441 +SURF 0x10 +mat 1 +refs 4 +305 0.760857 0.549313 +284 0.761939 0.549313 +276 0.756441 0.574441 +283 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +306 0.770155 0.524936 +307 0.771628 0.524936 +285 0.763412 0.549313 +284 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +307 0.771628 0.524936 +308 0.812689 0.524936 +286 0.821188 0.549313 +285 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +308 0.812689 0.524936 +309 0.814166 0.524936 +287 0.82266 0.549313 +286 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +309 0.814166 0.524936 +310 0.815243 0.524936 +290 0.823742 0.549313 +287 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +310 0.815243 0.524936 +311 0.815638 0.524936 +292 0.824137 0.549313 +290 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +311 0.815638 0.524936 +312 0.815243 0.524936 +294 0.823742 0.549313 +292 0.824137 0.549313 +SURF 0x10 +mat 1 +refs 4 +312 0.815243 0.524936 +313 0.814166 0.524936 +296 0.82266 0.549313 +294 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +313 0.814166 0.524936 +314 0.812689 0.524936 +298 0.821188 0.549313 +296 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +314 0.812689 0.524936 +315 0.771628 0.524936 +301 0.763412 0.549313 +298 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +315 0.771628 0.524936 +316 0.770155 0.524936 +302 0.761939 0.549313 +301 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +316 0.770155 0.524936 +317 0.769073 0.524936 +303 0.760857 0.549313 +302 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +317 0.769073 0.524936 +318 0.768679 0.524936 +304 0.760463 0.549313 +303 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +318 0.768679 0.524936 +319 0.769073 0.524936 +305 0.760857 0.549313 +304 0.760463 0.549313 +SURF 0x10 +mat 1 +refs 4 +319 0.769073 0.524936 +306 0.770155 0.524936 +284 0.761939 0.549313 +305 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +320 0.774479 0.516317 +321 0.775956 0.516317 +307 0.771628 0.524936 +306 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +321 0.775956 0.516317 +322 0.808342 0.516317 +308 0.812689 0.524936 +307 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +322 0.808342 0.516317 +323 0.809814 0.516317 +309 0.814166 0.524936 +308 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +323 0.809814 0.516317 +324 0.810896 0.516317 +310 0.815243 0.524936 +309 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +324 0.810896 0.516317 +325 0.811291 0.516317 +311 0.815638 0.524936 +310 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +325 0.811291 0.516317 +326 0.810896 0.516317 +312 0.815243 0.524936 +311 0.815638 0.524936 +SURF 0x10 +mat 1 +refs 4 +326 0.810896 0.516317 +327 0.809814 0.516317 +313 0.814166 0.524936 +312 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +327 0.809814 0.516317 +328 0.808342 0.516317 +314 0.812689 0.524936 +313 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +328 0.808342 0.516317 +329 0.775956 0.516317 +315 0.771628 0.524936 +314 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +329 0.775956 0.516317 +330 0.774479 0.516317 +316 0.770155 0.524936 +315 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +330 0.774479 0.516317 +331 0.773402 0.516317 +317 0.769073 0.524936 +316 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +331 0.773402 0.516317 +332 0.773007 0.516317 +318 0.768679 0.524936 +317 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +332 0.773007 0.516317 +333 0.773402 0.516317 +319 0.769073 0.524936 +318 0.768679 0.524936 +SURF 0x10 +mat 1 +refs 4 +333 0.773402 0.516317 +320 0.774479 0.516317 +306 0.770155 0.524936 +319 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +334 0.782718 0.504129 +335 0.784195 0.504129 +321 0.775956 0.516317 +320 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +335 0.784195 0.504129 +336 0.799986 0.504129 +322 0.808342 0.516317 +321 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +336 0.799986 0.504129 +337 0.801459 0.504129 +323 0.809814 0.516317 +322 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +337 0.801459 0.504129 +338 0.802541 0.504129 +324 0.810896 0.516317 +323 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +338 0.802541 0.504129 +339 0.802935 0.504129 +325 0.811291 0.516317 +324 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +339 0.802935 0.504129 +340 0.802541 0.504129 +326 0.810896 0.516317 +325 0.811291 0.516317 +SURF 0x10 +mat 1 +refs 4 +340 0.802541 0.504129 +341 0.801459 0.504129 +327 0.809814 0.516317 +326 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +341 0.801459 0.504129 +342 0.799986 0.504129 +328 0.808342 0.516317 +327 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +342 0.799986 0.504129 +343 0.784195 0.504129 +329 0.775956 0.516317 +328 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +343 0.784195 0.504129 +344 0.782718 0.504129 +330 0.774479 0.516317 +329 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +344 0.782718 0.504129 +345 0.781641 0.504129 +331 0.773402 0.516317 +330 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +345 0.781641 0.504129 +346 0.781246 0.504129 +332 0.773007 0.516317 +331 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +346 0.781246 0.504129 +347 0.781641 0.504129 +333 0.773402 0.516317 +332 0.773007 0.516317 +SURF 0x10 +mat 1 +refs 4 +347 0.781641 0.504129 +334 0.782718 0.504129 +320 0.774479 0.516317 +333 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +195 0.789457 0.500498 +348 0.790349 0.502925 +335 0.784195 0.504129 +334 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +348 0.790349 0.502925 +349 0.79308 0.502933 +336 0.799986 0.504129 +335 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +349 0.79308 0.502933 +194 0.793944 0.500461 +337 0.801459 0.504129 +336 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +193 0.794571 0.49865 +338 0.802541 0.504129 +337 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +193 0.794571 0.49865 +350 0.794803 0.497988 +339 0.802935 0.504129 +338 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +350 0.794803 0.497988 +351 0.794571 0.49865 +340 0.802541 0.504129 +339 0.802935 0.504129 +SURF 0x10 +mat 1 +refs 4 +351 0.794571 0.49865 +352 0.793944 0.500461 +341 0.801459 0.504129 +340 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +352 0.793944 0.500461 +353 0.79308 0.502933 +342 0.799986 0.504129 +341 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +353 0.79308 0.502933 +354 0.790349 0.502925 +343 0.784195 0.504129 +342 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +354 0.790349 0.502925 +355 0.789457 0.500498 +344 0.782718 0.504129 +343 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +356 0.788807 0.498722 +345 0.781641 0.504129 +344 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +357 0.788566 0.498072 +346 0.781246 0.504129 +345 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +192 0.788807 0.498722 +347 0.781641 0.504129 +346 0.781246 0.504129 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +195 0.789457 0.500498 +334 0.782718 0.504129 +347 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +349 0.79308 0.502933 +348 0.790349 0.502925 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +357 0.788566 0.498072 +350 0.794803 0.497988 +193 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +356 0.788807 0.498722 +351 0.794571 0.49865 +350 0.794803 0.497988 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +355 0.789457 0.500498 +352 0.793944 0.500461 +351 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +354 0.790349 0.502925 +353 0.79308 0.502933 +352 0.793944 0.500461 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +0 0.744104 0.922959 +3 0.744104 0.941242 +189 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +190 0.817833 0.941242 +13 0.744104 0.941242 +12 0.744104 0.922959 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +358 0.817833 0.922959 +12 0.744104 0.922959 +23 0.744104 0.916865 +359 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +23 0.744104 0.916865 +31 0.744104 0.904676 +360 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +31 0.744104 0.904676 +39 0.744104 0.886393 +361 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +39 0.744104 0.886393 +47 0.744104 0.86811 +362 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +47 0.744104 0.86811 +55 0.744104 0.843733 +363 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +55 0.744104 0.843733 +63 0.744401 0.807167 +364 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +63 0.744401 0.807167 +71 0.745191 0.7706 +365 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +71 0.745191 0.7706 +79 0.746742 0.721467 +366 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +79 0.746742 0.721467 +87 0.749087 0.672332 +367 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +87 0.749087 0.672332 +95 0.752817 0.623198 +368 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +95 0.752817 0.623198 +103 0.757916 0.574443 +123 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +369 0.817834 0.916863 +199 0.744105 0.916863 +187 0.744105 0.922957 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +370 0.817834 0.904674 +207 0.744105 0.904674 +199 0.744105 0.916863 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +371 0.817834 0.886391 +215 0.744105 0.886391 +207 0.744105 0.904674 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +372 0.817834 0.868108 +223 0.744105 0.868108 +215 0.744105 0.886391 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +373 0.817834 0.843731 +231 0.744105 0.843731 +223 0.744105 0.868108 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +374 0.817834 0.807165 +239 0.744402 0.807165 +231 0.744105 0.843731 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +375 0.817834 0.770599 +247 0.745192 0.770599 +239 0.744402 0.807165 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +376 0.817834 0.721465 +255 0.746743 0.721465 +247 0.745192 0.770599 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +377 0.817834 0.67233 +263 0.749088 0.67233 +255 0.746743 0.721465 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +378 0.817834 0.623196 +271 0.752818 0.623196 +263 0.749088 0.67233 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +300 0.817834 0.574441 +279 0.757917 0.574441 +271 0.752818 0.623196 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 3 +286 0.821188 0.549313 +289 0.827611 0.574441 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +286 0.821188 0.549313 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +301 0.763412 0.549313 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +301 0.763412 0.549313 +279 0.757917 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +109 0.82761 0.574443 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +112 0.821187 0.549315 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +125 0.763411 0.549315 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +103 0.757916 0.574443 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +358 0.817833 0.922959 +359 0.817833 0.916865 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 3 +117 0.830164 0.574443 +115 0.830559 0.574443 +113 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +117 0.830164 0.574443 +113 0.830164 0.574443 +110 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +121 0.82761 0.574443 +119 0.829082 0.574443 +110 0.829082 0.574443 +109 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +123 0.817833 0.574443 +121 0.82761 0.574443 +109 0.82761 0.574443 +101 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +123 0.817833 0.574443 +101 0.817833 0.574443 +93 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 3 +291 0.830165 0.574441 +293 0.83056 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +288 0.829083 0.574441 +291 0.830165 0.574441 +295 0.830165 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +289 0.827611 0.574441 +288 0.829083 0.574441 +297 0.829083 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +278 0.817834 0.574441 +289 0.827611 0.574441 +299 0.827611 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +270 0.817834 0.623196 +278 0.817834 0.574441 +300 0.817834 0.574441 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +262 0.817834 0.67233 +270 0.817834 0.623196 +378 0.817834 0.623196 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +254 0.817834 0.721465 +262 0.817834 0.67233 +377 0.817834 0.67233 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +246 0.817834 0.770599 +254 0.817834 0.721465 +376 0.817834 0.721465 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +238 0.817834 0.807165 +246 0.817834 0.770599 +375 0.817834 0.770599 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +230 0.817834 0.843731 +238 0.817834 0.807165 +374 0.817834 0.807165 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.868108 +230 0.817834 0.843731 +373 0.817834 0.843731 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.886391 +222 0.817834 0.868108 +372 0.817834 0.868108 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +206 0.817834 0.904674 +214 0.817834 0.886391 +371 0.817834 0.886391 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +198 0.817834 0.916863 +206 0.817834 0.904674 +370 0.817834 0.904674 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +188 0.817834 0.922957 +198 0.817834 0.916863 +369 0.817834 0.916863 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +189 0.817834 0.94124 +188 0.817834 0.922957 +191 0.817834 0.922957 +190 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +189 0.817833 0.941242 +190 0.817833 0.941242 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +360 0.817833 0.904676 +29 0.817833 0.904676 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +361 0.817833 0.886393 +37 0.817833 0.886393 +29 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +362 0.817833 0.86811 +45 0.817833 0.86811 +37 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +363 0.817833 0.843733 +53 0.817833 0.843733 +45 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +364 0.817833 0.807167 +61 0.817833 0.807167 +53 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +365 0.817833 0.7706 +69 0.817833 0.7706 +61 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +366 0.817833 0.721467 +77 0.817833 0.721467 +69 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +367 0.817833 0.672332 +85 0.817833 0.672332 +77 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +368 0.817833 0.623198 +93 0.817833 0.623198 +85 0.817833 0.672332 +kids 0 +OBJECT poly +name "Elevator" +texture "Rascal.rgb" +numvert 225 +1.75895 0.0452271 -0.01905 +1.76212 0.0460779 -0.01905 +1.76212 0.0460779 3.1865e-16 +1.75895 0.0452271 3.17871e-16 +1.76445 0.0484021 -0.01905 +1.76445 0.0484021 3.1922e-16 +1.7653 0.0515771 -0.01905 +1.7653 0.0515771 3.1943e-16 +1.76445 0.0547521 -0.01905 +1.76445 0.0547521 3.1922e-16 +1.76212 0.0570764 -0.01905 +1.76212 0.0570764 3.1865e-16 +1.75895 0.0579271 -0.01905 +1.75895 0.0579271 3.17871e-16 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 -0.01905 +1.77482 0.0570764 -0.0254 +1.77165 0.0579271 -0.0254 +1.77715 0.0547521 -0.0254 +1.778 0.0515771 -0.0254 +1.77715 0.0484021 -0.0254 +1.77482 0.0460779 -0.0254 +1.77165 0.0452271 -0.0254 +1.7526 0.0452271 -0.0254 +1.80022 0.0570764 -0.0381 +1.79705 0.0579271 -0.0381 +1.80255 0.0547521 -0.0381 +1.8034 0.0515771 -0.0381 +1.80255 0.0484021 -0.0381 +1.80022 0.0460779 -0.0381 +1.79705 0.0452271 -0.0381 +1.7526 0.0452271 -0.0381 +1.81292 0.0570764 -0.05715 +1.80975 0.0579271 -0.05715 +1.81525 0.0547521 -0.05715 +1.8161 0.0515771 -0.05715 +1.81525 0.0484021 -0.05715 +1.81292 0.0460779 -0.05715 +1.80975 0.0452271 -0.05715 +1.7526 0.0452271 -0.05715 +1.81927 0.0570764 -0.0762 +1.8161 0.0579271 -0.0762 +1.8216 0.0547521 -0.0762 +1.82245 0.0515771 -0.0762 +1.8216 0.0484021 -0.0762 +1.81927 0.0460779 -0.0762 +1.8161 0.0452271 -0.0762 +1.7526 0.0452271 -0.0762 +1.82562 0.0570764 -0.1016 +1.82245 0.0579271 -0.1016 +1.82795 0.0547521 -0.1016 +1.8288 0.0515771 -0.1016 +1.82795 0.0484021 -0.1016 +1.82562 0.0460779 -0.1016 +1.82245 0.0452271 -0.1016 +1.7526 0.0452271 -0.1016 +1.82906 0.0570764 -0.1397 +1.82588 0.0579271 -0.1397 +1.83138 0.0547521 -0.1397 +1.83223 0.0515771 -0.1397 +1.83138 0.0484021 -0.1397 +1.82906 0.0460779 -0.1397 +1.82588 0.0452271 -0.1397 +1.7526 0.0452271 -0.1397 +1.82628 0.0570764 -0.1778 +1.8231 0.0579271 -0.1778 +1.8286 0.0547521 -0.1778 +1.82945 0.0515771 -0.1778 +1.8286 0.0484021 -0.1778 +1.82628 0.0460779 -0.1778 +1.8231 0.0452271 -0.1778 +1.7526 0.0452271 -0.1778 +1.81929 0.0570764 -0.228995 +1.81611 0.0579271 -0.228995 +1.82161 0.0547521 -0.228995 +1.82246 0.0515771 -0.228995 +1.82161 0.0484021 -0.228995 +1.81929 0.0460779 -0.228995 +1.81611 0.0452271 -0.228995 +1.7526 0.0452271 -0.228995 +1.80911 0.0570764 -0.280191 +1.80594 0.0579271 -0.280191 +1.81144 0.0547521 -0.280191 +1.81229 0.0515771 -0.280191 +1.81144 0.0484021 -0.280191 +1.80911 0.0460779 -0.280191 +1.80594 0.0452271 -0.280191 +1.7526 0.0452271 -0.280191 +1.79534 0.0570764 -0.331386 +1.79217 0.0579271 -0.331386 +1.79767 0.0547521 -0.331386 +1.79852 0.0515771 -0.331386 +1.79767 0.0484021 -0.331386 +1.79534 0.0460779 -0.331386 +1.79217 0.0452271 -0.331386 +1.7526 0.0452271 -0.331386 +1.77682 0.0570764 -0.382186 +1.77365 0.0579271 -0.382186 +1.77915 0.0547521 -0.382186 +1.78 0.0515771 -0.382186 +1.77915 0.0484021 -0.382186 +1.77682 0.0460779 -0.382186 +1.77365 0.0452271 -0.382186 +1.7526 0.0452271 -0.382186 +1.76212 0.0460779 0.01905 +1.75895 0.0452271 0.01905 +1.76445 0.0484021 0.01905 +1.7653 0.0515771 0.01905 +1.76445 0.0547521 0.01905 +1.76212 0.0570764 0.01905 +1.75895 0.0579271 0.01905 +1.77165 0.0579271 0.0254 +1.77482 0.0570764 0.0254 +1.77715 0.0547521 0.0254 +1.778 0.0515771 0.0254 +1.77715 0.0484021 0.0254 +1.77482 0.0460779 0.0254 +1.77165 0.0452271 0.0254 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.01905 +1.79705 0.0579271 0.0381 +1.80022 0.0570764 0.0381 +1.80255 0.0547521 0.0381 +1.8034 0.0515771 0.0381 +1.80255 0.0484021 0.0381 +1.80022 0.0460779 0.0381 +1.79705 0.0452271 0.0381 +1.7526 0.0452271 0.0381 +1.80975 0.0579271 0.05715 +1.81292 0.0570764 0.05715 +1.81525 0.0547521 0.05715 +1.8161 0.0515771 0.05715 +1.81525 0.0484021 0.05715 +1.81292 0.0460779 0.05715 +1.80975 0.0452271 0.05715 +1.7526 0.0452271 0.05715 +1.8161 0.0579271 0.0762 +1.81927 0.0570764 0.0762 +1.8216 0.0547521 0.0762 +1.82245 0.0515771 0.0762 +1.8216 0.0484021 0.0762 +1.81927 0.0460779 0.0762 +1.8161 0.0452271 0.0762 +1.7526 0.0452271 0.0762 +1.82245 0.0579271 0.1016 +1.82562 0.0570764 0.1016 +1.82795 0.0547521 0.1016 +1.8288 0.0515771 0.1016 +1.82795 0.0484021 0.1016 +1.82562 0.0460779 0.1016 +1.82245 0.0452271 0.1016 +1.7526 0.0452271 0.1016 +1.82588 0.0579271 0.1397 +1.82906 0.0570764 0.1397 +1.83138 0.0547521 0.1397 +1.83223 0.0515771 0.1397 +1.83138 0.0484021 0.1397 +1.82906 0.0460779 0.1397 +1.82588 0.0452271 0.1397 +1.7526 0.0452271 0.1397 +1.8231 0.0579271 0.1778 +1.82628 0.0570764 0.1778 +1.8286 0.0547521 0.1778 +1.82945 0.0515771 0.1778 +1.8286 0.0484021 0.1778 +1.82628 0.0460779 0.1778 +1.8231 0.0452271 0.1778 +1.7526 0.0452271 0.1778 +1.81611 0.0579271 0.228995 +1.81929 0.0570764 0.228995 +1.82161 0.0547521 0.228995 +1.82246 0.0515771 0.228995 +1.82161 0.0484021 0.228995 +1.81929 0.0460779 0.228995 +1.81611 0.0452271 0.228995 +1.7526 0.0452271 0.228995 +1.80594 0.0579271 0.280191 +1.80911 0.0570764 0.280191 +1.81144 0.0547521 0.280191 +1.81229 0.0515771 0.280191 +1.81144 0.0484021 0.280191 +1.80911 0.0460779 0.280191 +1.80594 0.0452271 0.280191 +1.7526 0.0452271 0.280191 +1.79217 0.0579271 0.331386 +1.79534 0.0570764 0.331386 +1.79767 0.0547521 0.331386 +1.79852 0.0515771 0.331386 +1.79767 0.0484021 0.331386 +1.79534 0.0460779 0.331386 +1.79217 0.0452271 0.331386 +1.7526 0.0452271 0.331386 +1.77365 0.0579271 0.382186 +1.77682 0.0570764 0.382186 +1.77915 0.0547521 0.382186 +1.78 0.0515771 0.382186 +1.77915 0.0484021 0.382186 +1.77682 0.0460779 0.382186 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.7526 0.0579271 -0.0254 +1.7526 0.0579271 -0.0381 +1.7526 0.0579271 -0.05715 +1.7526 0.0579271 -0.0762 +1.7526 0.0579271 -0.1016 +1.7526 0.0579271 -0.1397 +1.7526 0.0579271 -0.1778 +1.7526 0.0579271 -0.228995 +1.7526 0.0579271 -0.280191 +1.7526 0.0579271 -0.331386 +1.7526 0.0579271 -0.382186 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 0.0254 +1.7526 0.0579271 0.0381 +1.7526 0.0579271 0.05715 +1.7526 0.0579271 0.0762 +1.7526 0.0579271 0.1016 +1.7526 0.0579271 0.1397 +1.7526 0.0579271 0.1778 +1.7526 0.0579271 0.228995 +1.7526 0.0579271 0.280191 +1.7526 0.0579271 0.331386 +1.7526 0.0579271 0.382186 +numsurf 224 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +1 0.822255 0.922959 +2 0.822255 0.941242 +3 0.820783 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +4 0.823337 0.922959 +5 0.823337 0.941242 +2 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +6 0.823732 0.922959 +7 0.823732 0.941242 +5 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +8 0.823337 0.922959 +9 0.823337 0.941242 +7 0.823732 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +10 0.822255 0.922959 +11 0.822255 0.941242 +9 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +12 0.820783 0.922959 +13 0.820783 0.941242 +11 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +13 0.820783 0.941242 +12 0.820783 0.922959 +14 0.817833 0.922959 +15 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +3 0.820783 0.941242 +16 0.817833 0.941242 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +12 0.820783 0.922959 +10 0.822255 0.922959 +18 0.828153 0.916865 +19 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +8 0.823337 0.922959 +20 0.829235 0.916865 +18 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +6 0.823732 0.922959 +21 0.82963 0.916865 +20 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +4 0.823337 0.922959 +22 0.829235 0.916865 +21 0.82963 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +1 0.822255 0.922959 +23 0.828153 0.916865 +22 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +0 0.820783 0.922959 +24 0.826681 0.916865 +23 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +17 0.817833 0.922959 +25 0.817833 0.916865 +24 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.826681 0.916865 +18 0.828153 0.916865 +26 0.83995 0.904676 +27 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.828153 0.916865 +20 0.829235 0.916865 +28 0.841032 0.904676 +26 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +20 0.829235 0.916865 +21 0.82963 0.916865 +29 0.841427 0.904676 +28 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +21 0.82963 0.916865 +22 0.829235 0.916865 +30 0.841032 0.904676 +29 0.841427 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.829235 0.916865 +23 0.828153 0.916865 +31 0.83995 0.904676 +30 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.828153 0.916865 +24 0.826681 0.916865 +32 0.838478 0.904676 +31 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.826681 0.916865 +25 0.817833 0.916865 +33 0.817833 0.904676 +32 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +27 0.838478 0.904676 +26 0.83995 0.904676 +34 0.845849 0.886393 +35 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +26 0.83995 0.904676 +28 0.841032 0.904676 +36 0.846931 0.886393 +34 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +28 0.841032 0.904676 +29 0.841427 0.904676 +37 0.847325 0.886393 +36 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +29 0.841427 0.904676 +30 0.841032 0.904676 +38 0.846931 0.886393 +37 0.847325 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.841032 0.904676 +31 0.83995 0.904676 +39 0.845849 0.886393 +38 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.83995 0.904676 +32 0.838478 0.904676 +40 0.844376 0.886393 +39 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.838478 0.904676 +33 0.817833 0.904676 +41 0.817833 0.886393 +40 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +35 0.844376 0.886393 +34 0.845849 0.886393 +42 0.848798 0.86811 +43 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +34 0.845849 0.886393 +36 0.846931 0.886393 +44 0.84988 0.86811 +42 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +36 0.846931 0.886393 +37 0.847325 0.886393 +45 0.850275 0.86811 +44 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +37 0.847325 0.886393 +38 0.846931 0.886393 +46 0.84988 0.86811 +45 0.850275 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.846931 0.886393 +39 0.845849 0.886393 +47 0.848798 0.86811 +46 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.845849 0.886393 +40 0.844376 0.886393 +48 0.847325 0.86811 +47 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.844376 0.886393 +41 0.817833 0.886393 +49 0.817833 0.86811 +48 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +43 0.847325 0.86811 +42 0.848798 0.86811 +50 0.851747 0.843733 +51 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +42 0.848798 0.86811 +44 0.84988 0.86811 +52 0.852829 0.843733 +50 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +44 0.84988 0.86811 +45 0.850275 0.86811 +53 0.853224 0.843733 +52 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +45 0.850275 0.86811 +46 0.84988 0.86811 +54 0.852829 0.843733 +53 0.853224 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.84988 0.86811 +47 0.848798 0.86811 +55 0.851747 0.843733 +54 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.848798 0.86811 +48 0.847325 0.86811 +56 0.850275 0.843733 +55 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.847325 0.86811 +49 0.817833 0.86811 +57 0.817833 0.843733 +56 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +51 0.850275 0.843733 +50 0.851747 0.843733 +58 0.853344 0.807167 +59 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +50 0.851747 0.843733 +52 0.852829 0.843733 +60 0.854422 0.807167 +58 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +52 0.852829 0.843733 +53 0.853224 0.843733 +61 0.854817 0.807167 +60 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +53 0.853224 0.843733 +54 0.852829 0.843733 +62 0.854422 0.807167 +61 0.854817 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.852829 0.843733 +55 0.851747 0.843733 +63 0.853344 0.807167 +62 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.851747 0.843733 +56 0.850275 0.843733 +64 0.851868 0.807167 +63 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.850275 0.843733 +57 0.817833 0.843733 +65 0.817833 0.807167 +64 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +59 0.851868 0.807167 +58 0.853344 0.807167 +66 0.852053 0.7706 +67 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +58 0.853344 0.807167 +60 0.854422 0.807167 +68 0.853131 0.7706 +66 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +60 0.854422 0.807167 +61 0.854817 0.807167 +69 0.853526 0.7706 +68 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +61 0.854817 0.807167 +62 0.854422 0.807167 +70 0.853131 0.7706 +69 0.853526 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.854422 0.807167 +63 0.853344 0.807167 +71 0.852053 0.7706 +70 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.853344 0.807167 +64 0.851868 0.807167 +72 0.850576 0.7706 +71 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.851868 0.807167 +65 0.817833 0.807167 +73 0.817833 0.7706 +72 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +67 0.850576 0.7706 +66 0.852053 0.7706 +74 0.848807 0.721467 +75 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +66 0.852053 0.7706 +68 0.853131 0.7706 +76 0.849884 0.721467 +74 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +68 0.853131 0.7706 +69 0.853526 0.7706 +77 0.850279 0.721467 +76 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +69 0.853526 0.7706 +70 0.853131 0.7706 +78 0.849884 0.721467 +77 0.850279 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.853131 0.7706 +71 0.852053 0.7706 +79 0.848807 0.721467 +78 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.852053 0.7706 +72 0.850576 0.7706 +80 0.84733 0.721467 +79 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.850576 0.7706 +73 0.817833 0.7706 +81 0.817833 0.721467 +80 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +75 0.84733 0.721467 +74 0.848807 0.721467 +82 0.844079 0.672332 +83 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +74 0.848807 0.721467 +76 0.849884 0.721467 +84 0.845161 0.672332 +82 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +76 0.849884 0.721467 +77 0.850279 0.721467 +85 0.845556 0.672332 +84 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +77 0.850279 0.721467 +78 0.849884 0.721467 +86 0.845161 0.672332 +85 0.845556 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.849884 0.721467 +79 0.848807 0.721467 +87 0.844079 0.672332 +86 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.848807 0.721467 +80 0.84733 0.721467 +88 0.842607 0.672332 +87 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.84733 0.721467 +81 0.817833 0.721467 +89 0.817833 0.672332 +88 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +83 0.842607 0.672332 +82 0.844079 0.672332 +90 0.837684 0.623198 +91 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +82 0.844079 0.672332 +84 0.845161 0.672332 +92 0.838766 0.623198 +90 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +84 0.845161 0.672332 +85 0.845556 0.672332 +93 0.839161 0.623198 +92 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +85 0.845556 0.672332 +86 0.845161 0.672332 +94 0.838766 0.623198 +93 0.839161 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.845161 0.672332 +87 0.844079 0.672332 +95 0.837684 0.623198 +94 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.844079 0.672332 +88 0.842607 0.672332 +96 0.836211 0.623198 +95 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.842607 0.672332 +89 0.817833 0.672332 +97 0.817833 0.623198 +96 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +91 0.836211 0.623198 +90 0.837684 0.623198 +98 0.829082 0.574443 +99 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +90 0.837684 0.623198 +92 0.838766 0.623198 +100 0.830164 0.574443 +98 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +92 0.838766 0.623198 +93 0.839161 0.623198 +101 0.830559 0.574443 +100 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +93 0.839161 0.623198 +94 0.838766 0.623198 +102 0.830164 0.574443 +101 0.830559 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.838766 0.623198 +95 0.837684 0.623198 +103 0.829082 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.837684 0.623198 +96 0.836211 0.623198 +104 0.82761 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.836211 0.623198 +97 0.817833 0.623198 +105 0.817833 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +3 0.820784 0.94124 +2 0.822256 0.94124 +106 0.822256 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.822256 0.94124 +5 0.823338 0.94124 +108 0.823338 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.823338 0.94124 +7 0.823733 0.94124 +109 0.823733 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.823733 0.94124 +9 0.823338 0.94124 +110 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.823338 0.94124 +11 0.822256 0.94124 +111 0.822256 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.822256 0.94124 +13 0.820784 0.94124 +112 0.820784 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +113 0.826682 0.916863 +114 0.828154 0.916863 +111 0.822256 0.922957 +112 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +114 0.828154 0.916863 +115 0.829237 0.916863 +110 0.823338 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +115 0.829237 0.916863 +116 0.829631 0.916863 +109 0.823733 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +116 0.829631 0.916863 +117 0.829237 0.916863 +108 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +117 0.829237 0.916863 +118 0.828154 0.916863 +106 0.822256 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +118 0.828154 0.916863 +119 0.826682 0.916863 +107 0.820784 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +119 0.826682 0.916863 +120 0.817834 0.916863 +121 0.817834 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +122 0.838479 0.904674 +123 0.839951 0.904674 +114 0.828154 0.916863 +113 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +123 0.839951 0.904674 +124 0.841033 0.904674 +115 0.829237 0.916863 +114 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +124 0.841033 0.904674 +125 0.841428 0.904674 +116 0.829631 0.916863 +115 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +125 0.841428 0.904674 +126 0.841033 0.904674 +117 0.829237 0.916863 +116 0.829631 0.916863 +SURF 0x10 +mat 1 +refs 4 +126 0.841033 0.904674 +127 0.839951 0.904674 +118 0.828154 0.916863 +117 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +127 0.839951 0.904674 +128 0.838479 0.904674 +119 0.826682 0.916863 +118 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +128 0.838479 0.904674 +129 0.817834 0.904674 +120 0.817834 0.916863 +119 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +130 0.844377 0.886391 +131 0.845849 0.886391 +123 0.839951 0.904674 +122 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +131 0.845849 0.886391 +132 0.846932 0.886391 +124 0.841033 0.904674 +123 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +132 0.846932 0.886391 +133 0.847326 0.886391 +125 0.841428 0.904674 +124 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +133 0.847326 0.886391 +134 0.846932 0.886391 +126 0.841033 0.904674 +125 0.841428 0.904674 +SURF 0x10 +mat 1 +refs 4 +134 0.846932 0.886391 +135 0.845849 0.886391 +127 0.839951 0.904674 +126 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +135 0.845849 0.886391 +136 0.844377 0.886391 +128 0.838479 0.904674 +127 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +136 0.844377 0.886391 +137 0.817834 0.886391 +129 0.817834 0.904674 +128 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +138 0.847326 0.868108 +139 0.848799 0.868108 +131 0.845849 0.886391 +130 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +139 0.848799 0.868108 +140 0.849881 0.868108 +132 0.846932 0.886391 +131 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +140 0.849881 0.868108 +141 0.850276 0.868108 +133 0.847326 0.886391 +132 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +141 0.850276 0.868108 +142 0.849881 0.868108 +134 0.846932 0.886391 +133 0.847326 0.886391 +SURF 0x10 +mat 1 +refs 4 +142 0.849881 0.868108 +143 0.848799 0.868108 +135 0.845849 0.886391 +134 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +143 0.848799 0.868108 +144 0.847326 0.868108 +136 0.844377 0.886391 +135 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +144 0.847326 0.868108 +145 0.817834 0.868108 +137 0.817834 0.886391 +136 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +146 0.850276 0.843731 +147 0.851748 0.843731 +139 0.848799 0.868108 +138 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +147 0.851748 0.843731 +148 0.85283 0.843731 +140 0.849881 0.868108 +139 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +148 0.85283 0.843731 +149 0.853225 0.843731 +141 0.850276 0.868108 +140 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +149 0.853225 0.843731 +150 0.85283 0.843731 +142 0.849881 0.868108 +141 0.850276 0.868108 +SURF 0x10 +mat 1 +refs 4 +150 0.85283 0.843731 +151 0.851748 0.843731 +143 0.848799 0.868108 +142 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +151 0.851748 0.843731 +152 0.850276 0.843731 +144 0.847326 0.868108 +143 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +152 0.850276 0.843731 +153 0.817834 0.843731 +145 0.817834 0.868108 +144 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +154 0.851869 0.807165 +155 0.853345 0.807165 +147 0.851748 0.843731 +146 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +155 0.853345 0.807165 +156 0.854423 0.807165 +148 0.85283 0.843731 +147 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +156 0.854423 0.807165 +157 0.854818 0.807165 +149 0.853225 0.843731 +148 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +157 0.854818 0.807165 +158 0.854423 0.807165 +150 0.85283 0.843731 +149 0.853225 0.843731 +SURF 0x10 +mat 1 +refs 4 +158 0.854423 0.807165 +159 0.853345 0.807165 +151 0.851748 0.843731 +150 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +159 0.853345 0.807165 +160 0.851869 0.807165 +152 0.850276 0.843731 +151 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +160 0.851869 0.807165 +161 0.817834 0.807165 +153 0.817834 0.843731 +152 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +162 0.850577 0.770599 +163 0.852054 0.770599 +155 0.853345 0.807165 +154 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +163 0.852054 0.770599 +164 0.853132 0.770599 +156 0.854423 0.807165 +155 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +164 0.853132 0.770599 +165 0.853527 0.770599 +157 0.854818 0.807165 +156 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +165 0.853527 0.770599 +166 0.853132 0.770599 +158 0.854423 0.807165 +157 0.854818 0.807165 +SURF 0x10 +mat 1 +refs 4 +166 0.853132 0.770599 +167 0.852054 0.770599 +159 0.853345 0.807165 +158 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +167 0.852054 0.770599 +168 0.850577 0.770599 +160 0.851869 0.807165 +159 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +168 0.850577 0.770599 +169 0.817834 0.770599 +161 0.817834 0.807165 +160 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +170 0.847331 0.721465 +171 0.848808 0.721465 +163 0.852054 0.770599 +162 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +171 0.848808 0.721465 +172 0.849885 0.721465 +164 0.853132 0.770599 +163 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +172 0.849885 0.721465 +173 0.85028 0.721465 +165 0.853527 0.770599 +164 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +173 0.85028 0.721465 +174 0.849885 0.721465 +166 0.853132 0.770599 +165 0.853527 0.770599 +SURF 0x10 +mat 1 +refs 4 +174 0.849885 0.721465 +175 0.848808 0.721465 +167 0.852054 0.770599 +166 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +175 0.848808 0.721465 +176 0.847331 0.721465 +168 0.850577 0.770599 +167 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +176 0.847331 0.721465 +177 0.817834 0.721465 +169 0.817834 0.770599 +168 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +178 0.842608 0.67233 +179 0.84408 0.67233 +171 0.848808 0.721465 +170 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +179 0.84408 0.67233 +180 0.845162 0.67233 +172 0.849885 0.721465 +171 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +180 0.845162 0.67233 +181 0.845557 0.67233 +173 0.85028 0.721465 +172 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +181 0.845557 0.67233 +182 0.845162 0.67233 +174 0.849885 0.721465 +173 0.85028 0.721465 +SURF 0x10 +mat 1 +refs 4 +182 0.845162 0.67233 +183 0.84408 0.67233 +175 0.848808 0.721465 +174 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +183 0.84408 0.67233 +184 0.842608 0.67233 +176 0.847331 0.721465 +175 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +184 0.842608 0.67233 +185 0.817834 0.67233 +177 0.817834 0.721465 +176 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +186 0.836212 0.623196 +187 0.837685 0.623196 +179 0.84408 0.67233 +178 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +187 0.837685 0.623196 +188 0.838767 0.623196 +180 0.845162 0.67233 +179 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +188 0.838767 0.623196 +189 0.839162 0.623196 +181 0.845557 0.67233 +180 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +189 0.839162 0.623196 +190 0.838767 0.623196 +182 0.845162 0.67233 +181 0.845557 0.67233 +SURF 0x10 +mat 1 +refs 4 +190 0.838767 0.623196 +191 0.837685 0.623196 +183 0.84408 0.67233 +182 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +191 0.837685 0.623196 +192 0.836212 0.623196 +184 0.842608 0.67233 +183 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +192 0.836212 0.623196 +193 0.817834 0.623196 +185 0.817834 0.67233 +184 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +194 0.827611 0.574441 +195 0.829083 0.574441 +187 0.837685 0.623196 +186 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +195 0.829083 0.574441 +196 0.830165 0.574441 +188 0.838767 0.623196 +187 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +196 0.830165 0.574441 +197 0.83056 0.574441 +189 0.839162 0.623196 +188 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +197 0.83056 0.574441 +198 0.830165 0.574441 +190 0.838767 0.623196 +189 0.839162 0.623196 +SURF 0x10 +mat 1 +refs 4 +198 0.830165 0.574441 +199 0.829083 0.574441 +191 0.837685 0.623196 +190 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +200 0.827611 0.574441 +192 0.836212 0.623196 +191 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +201 0.817834 0.574441 +193 0.817834 0.623196 +192 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +12 0.820783 0.922959 +19 0.826681 0.916865 +202 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +19 0.826681 0.916865 +27 0.838478 0.904676 +203 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +27 0.838478 0.904676 +35 0.844376 0.886393 +204 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +35 0.844376 0.886393 +43 0.847325 0.86811 +205 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +43 0.847325 0.86811 +51 0.850275 0.843733 +206 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +51 0.850275 0.843733 +59 0.851868 0.807167 +207 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +59 0.851868 0.807167 +67 0.850576 0.7706 +208 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +67 0.850576 0.7706 +75 0.84733 0.721467 +209 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +75 0.84733 0.721467 +83 0.842607 0.672332 +210 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +83 0.842607 0.672332 +91 0.836211 0.623198 +211 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +91 0.836211 0.623198 +99 0.82761 0.574443 +212 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +213 0.817834 0.922957 +112 0.820784 0.922957 +13 0.820784 0.94124 +15 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +16 0.817834 0.94124 +3 0.820784 0.94124 +107 0.820784 0.922957 +121 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.916863 +113 0.826682 0.916863 +112 0.820784 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +215 0.817834 0.904674 +122 0.838479 0.904674 +113 0.826682 0.916863 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +216 0.817834 0.886391 +130 0.844377 0.886391 +122 0.838479 0.904674 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.817834 0.868108 +138 0.847326 0.868108 +130 0.844377 0.886391 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +218 0.817834 0.843731 +146 0.850276 0.843731 +138 0.847326 0.868108 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +219 0.817834 0.807165 +154 0.851869 0.807165 +146 0.850276 0.843731 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +220 0.817834 0.770599 +162 0.850577 0.770599 +154 0.851869 0.807165 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +221 0.817834 0.721465 +170 0.847331 0.721465 +162 0.850577 0.770599 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.67233 +178 0.842608 0.67233 +170 0.847331 0.721465 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +223 0.817834 0.623196 +186 0.836212 0.623196 +178 0.842608 0.67233 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +224 0.817834 0.574441 +194 0.827611 0.574441 +186 0.836212 0.623196 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +15 0.817834 0.94124 +16 0.817834 0.94124 +121 0.817834 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +212 0.817833 0.574443 +99 0.82761 0.574443 +104 0.82761 0.574443 +105 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 3 +100 0.830164 0.574443 +101 0.830559 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.829082 0.574443 +100 0.830164 0.574443 +102 0.830164 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +99 0.82761 0.574443 +98 0.829082 0.574443 +103 0.829082 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +212 0.817833 0.574443 +105 0.817833 0.574443 +97 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +211 0.817833 0.623198 +97 0.817833 0.623198 +89 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +210 0.817833 0.672332 +89 0.817833 0.672332 +81 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +209 0.817833 0.721467 +81 0.817833 0.721467 +73 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +208 0.817833 0.7706 +73 0.817833 0.7706 +65 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +207 0.817833 0.807167 +65 0.817833 0.807167 +57 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +206 0.817833 0.843733 +57 0.817833 0.843733 +49 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +205 0.817833 0.86811 +49 0.817833 0.86811 +41 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +204 0.817833 0.886393 +41 0.817833 0.886393 +33 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +203 0.817833 0.904676 +33 0.817833 0.904676 +25 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +202 0.817833 0.916865 +25 0.817833 0.916865 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +15 0.817833 0.941242 +14 0.817833 0.922959 +17 0.817833 0.922959 +16 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +121 0.817834 0.922957 +120 0.817834 0.916863 +214 0.817834 0.916863 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +120 0.817834 0.916863 +129 0.817834 0.904674 +215 0.817834 0.904674 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +129 0.817834 0.904674 +137 0.817834 0.886391 +216 0.817834 0.886391 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +137 0.817834 0.886391 +145 0.817834 0.868108 +217 0.817834 0.868108 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +145 0.817834 0.868108 +153 0.817834 0.843731 +218 0.817834 0.843731 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +153 0.817834 0.843731 +161 0.817834 0.807165 +219 0.817834 0.807165 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +161 0.817834 0.807165 +169 0.817834 0.770599 +220 0.817834 0.770599 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +169 0.817834 0.770599 +177 0.817834 0.721465 +221 0.817834 0.721465 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +177 0.817834 0.721465 +185 0.817834 0.67233 +222 0.817834 0.67233 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +185 0.817834 0.67233 +193 0.817834 0.623196 +223 0.817834 0.623196 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +193 0.817834 0.623196 +201 0.817834 0.574441 +224 0.817834 0.574441 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +201 0.817834 0.574441 +200 0.827611 0.574441 +194 0.827611 0.574441 +224 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +199 0.829083 0.574441 +195 0.829083 0.574441 +194 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +198 0.830165 0.574441 +196 0.830165 0.574441 +195 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +198 0.830165 0.574441 +197 0.83056 0.574441 +196 0.830165 0.574441 +kids 0 +OBJECT poly +name "Fin" +texture "Rascal.rgb" +numvert 204 +1.73613 0.33416 0.00549926 +1.74579 0.334193 0.00549926 +1.74714 0.335765 0.003175 +1.73473 0.335703 0.003175 +1.5718 -0.0493484 0.00549926 +1.57498 -0.0493484 0.00635 +1.57498 -0.0429984 0.00635 +1.5718 -0.0429984 0.00549926 +1.74008 -0.0493484 0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.74325 -0.0493484 0.00549926 +1.7526 -0.0473896 0.00549926 +1.74558 -0.0493484 0.003175 +1.7526 -0.0478767 0.003175 +1.74643 -0.0493484 9.27603e-17 +1.7526 -0.048055 9.42714e-17 +1.74558 -0.0493484 -0.003175 +1.7526 -0.0478767 -0.003175 +1.74325 -0.0493484 -0.00549926 +1.7526 -0.0473896 -0.00549926 +1.74008 -0.0493484 -0.00635 +1.7526 -0.0467241 -0.00635 +1.57498 -0.0493484 -0.00635 +1.57498 -0.0429984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.5718 -0.0493484 -0.00549926 +1.5718 -0.0429984 -0.00549926 +1.56948 -0.0493484 -0.003175 +1.56948 -0.0429984 -0.003175 +1.56863 -0.0493484 7.69716e-17 +1.56863 -0.0429984 9.08494e-17 +1.56948 -0.0493484 0.003175 +1.56948 -0.0429984 0.003175 +1.57498 -0.0302984 0.00635 +1.5718 -0.0302984 0.00549926 +1.7526 -0.0302984 0.00635 +1.5718 -0.0302984 -0.00549926 +1.57498 -0.0302984 -0.00635 +1.56948 -0.0302984 -0.003175 +1.56863 -0.0302984 1.04727e-16 +1.56948 -0.0302984 0.003175 +1.57498 -0.0112484 0.00635 +1.5718 -0.0112484 0.00549926 +1.7526 -0.0112484 0.00635 +1.5718 -0.0112484 -0.00549926 +1.57498 -0.0112484 -0.00635 +1.56948 -0.0112484 -0.003175 +1.56863 -0.0112484 1.18605e-16 +1.56948 -0.0112484 0.003175 +1.57498 0.00780156 0.00635 +1.5718 0.00780156 0.00549926 +1.7526 0.00780156 0.00635 +1.5718 0.00780156 -0.00549926 +1.57498 0.00780156 -0.00635 +1.56948 0.00780156 -0.003175 +1.56863 0.00780156 1.46361e-16 +1.56948 0.00780156 0.003175 +1.57498 0.0332016 0.00635 +1.5718 0.0332016 0.00549926 +1.7526 0.0332016 0.00635 +1.5718 0.0332016 -0.00549926 +1.57498 0.0332016 -0.00635 +1.56948 0.0332016 -0.003175 +1.56863 0.0332016 2.01872e-16 +1.56948 0.0332016 0.003175 +1.47999 0.0670341 0.00635 +1.47681 0.0670341 0.00549926 +1.7526 0.0676649 0.00635 +1.47681 0.0670341 -0.00549926 +1.47999 0.0670341 -0.00635 +1.47449 0.0670341 -0.003175 +1.47364 0.0670341 2.61872e-16 +1.47449 0.0670341 0.003175 +1.56201 0.08255 0.00635 +1.55884 0.08255 0.00549926 +1.7526 0.0996346 0.00635 +1.58561 0.0996346 0.00635 +1.55884 0.08255 -0.00549926 +1.56201 0.08255 -0.00635 +1.55651 0.08255 -0.003175 +1.55566 0.08255 3.16655e-16 +1.55651 0.08255 0.003175 +1.58244 0.0996346 0.00549926 +1.60643 0.142297 0.00635 +1.60326 0.142297 0.00549926 +1.7526 0.142297 0.00635 +1.58561 0.0996346 -0.00635 +1.58244 0.0996346 -0.00549926 +1.60326 0.142297 -0.00549926 +1.60643 0.142297 -0.00635 +1.58011 0.0996346 -0.003175 +1.60093 0.142297 -0.003175 +1.57926 0.0996346 3.71007e-16 +1.60008 0.142297 4.87129e-16 +1.58011 0.0996346 0.003175 +1.60093 0.142297 0.003175 +1.62752 0.18496 0.00635 +1.62434 0.18496 0.00549926 +1.7526 0.18496 0.00635 +1.62434 0.18496 -0.00549926 +1.62752 0.18496 -0.00635 +1.62202 0.18496 -0.003175 +1.62117 0.18496 6.03314e-16 +1.62202 0.18496 0.003175 +1.64695 0.227623 0.00635 +1.64377 0.227623 0.00549926 +1.7526 0.227623 0.00635 +1.64377 0.227623 -0.00549926 +1.64695 0.227623 -0.00635 +1.64145 0.227623 -0.003175 +1.6406 0.227623 7.32975e-16 +1.64145 0.227623 0.003175 +1.66962 0.269956 0.00635 +1.66644 0.269956 0.00549926 +1.7526 0.269956 0.00635 +1.66644 0.269956 -0.00549926 +1.66962 0.269956 -0.00635 +1.66412 0.269956 -0.003175 +1.66327 0.269956 8.4955e-16 +1.66412 0.269956 0.003175 +1.68421 0.291774 0.00635 +1.68104 0.291774 0.00549926 +1.80011 0.269956 0.00635 +1.80328 0.269956 0.00549926 +1.79409 0.291774 0.00549926 +1.79092 0.291774 0.00635 +1.8056 0.269956 0.003175 +1.79642 0.291774 0.003175 +1.80646 0.269956 8.42988e-16 +1.79727 0.291774 8.96246e-16 +1.8056 0.269956 -0.003175 +1.79642 0.291774 -0.003175 +1.80328 0.269956 -0.00549926 +1.79409 0.291774 -0.00549926 +1.80011 0.269956 -0.00635 +1.79092 0.291774 -0.00635 +1.7526 0.269956 -0.00635 +1.68104 0.291774 -0.00549926 +1.68421 0.291774 -0.00635 +1.67872 0.291774 -0.003175 +1.67786 0.291774 8.87819e-16 +1.67872 0.291774 0.003175 +1.70051 0.312941 0.00635 +1.69733 0.312941 0.00549926 +1.77784 0.312941 0.00635 +1.78102 0.312941 0.00549926 +1.78334 0.312941 0.003175 +1.78419 0.312941 9.48555e-16 +1.78334 0.312941 -0.003175 +1.78102 0.312941 -0.00549926 +1.77784 0.312941 -0.00635 +1.70051 0.312941 -0.00635 +1.69733 0.312941 -0.00549926 +1.69501 0.312941 -0.003175 +1.69416 0.312941 9.54261e-16 +1.69501 0.312941 0.003175 +1.70982 0.320425 0.00635 +1.70664 0.320425 0.00549926 +1.77103 0.320425 0.00635 +1.77421 0.320425 0.00549926 +1.77653 0.320425 0.003175 +1.77738 0.320425 9.60766e-16 +1.77653 0.320425 -0.003175 +1.77421 0.320425 -0.00549926 +1.77103 0.320425 -0.00635 +1.70982 0.320425 -0.00635 +1.70664 0.320425 -0.00549926 +1.70432 0.320425 -0.003175 +1.70347 0.320425 9.70419e-16 +1.70432 0.320425 0.003175 +1.7248 0.331008 0.00635 +1.72162 0.331008 0.00549926 +1.7588 0.331008 0.00635 +1.76197 0.331008 0.00549926 +1.7643 0.331008 0.003175 +1.76515 0.331008 9.85526e-16 +1.7643 0.331008 -0.003175 +1.76197 0.331008 -0.00549926 +1.7588 0.331008 -0.00635 +1.7248 0.331008 -0.00635 +1.72162 0.331008 -0.00549926 +1.7193 0.331008 -0.003175 +1.71845 0.331008 1.00184e-15 +1.7193 0.331008 0.003175 +1.73805 0.332053 0.00635 +1.74393 0.332046 0.00635 +1.74764 0.336341 9.95115e-16 +1.74714 0.335765 -0.003175 +1.74579 0.334193 -0.00549926 +1.74393 0.332046 -0.00635 +1.73805 0.332053 -0.00635 +1.73613 0.33416 -0.00549926 +1.73473 0.335703 -0.003175 +1.73421 0.336267 1.0057e-15 +1.7526 -0.0302984 -0.00635 +1.7526 -0.0112484 -0.00635 +1.7526 0.00780156 -0.00635 +1.7526 0.0332016 -0.00635 +1.7526 0.0676649 -0.00635 +1.7526 0.0996346 -0.00635 +1.7526 0.142297 -0.00635 +1.7526 0.18496 -0.00635 +1.7526 0.227623 -0.00635 +numsurf 202 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +1 0.900578 0.588527 +2 0.90123 0.590037 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +4 0.816575 0.220192 +5 0.81811 0.220192 +6 0.81811 0.22629 +7 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 5 +5 0.81811 0.220192 +8 0.897821 0.229292 +9 0.903866 0.222712 +10 0.903866 0.22629 +6 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +8 0.897821 0.229292 +11 0.899352 0.229292 +12 0.903866 0.222073 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +11 0.899352 0.229292 +13 0.900477 0.229292 +14 0.903866 0.221605 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +13 0.900477 0.229292 +15 0.900887 0.229292 +16 0.903866 0.221434 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +15 0.900887 0.229292 +17 0.900477 0.229292 +18 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +17 0.900477 0.229292 +19 0.899352 0.229292 +20 0.903866 0.222073 +18 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +19 0.899352 0.229292 +21 0.897821 0.229292 +22 0.903866 0.222712 +20 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 5 +21 0.897821 0.229292 +23 0.81811 0.220192 +24 0.81811 0.22629 +25 0.903866 0.22629 +22 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +23 0.81811 0.220192 +26 0.816575 0.220192 +27 0.816575 0.22629 +24 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +26 0.816575 0.220192 +28 0.815455 0.220192 +29 0.815455 0.22629 +27 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 4 +28 0.815455 0.220192 +30 0.815044 0.220192 +31 0.815044 0.22629 +29 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +30 0.815044 0.220192 +32 0.815455 0.220192 +33 0.815455 0.22629 +31 0.815044 0.22629 +SURF 0x10 +mat 1 +refs 4 +32 0.815455 0.220192 +4 0.816575 0.220192 +7 0.816575 0.22629 +33 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +7 0.816575 0.22629 +6 0.81811 0.22629 +34 0.81811 0.238487 +35 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.81811 0.22629 +10 0.903866 0.22629 +36 0.903866 0.238487 +34 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +24 0.81811 0.22629 +27 0.816575 0.22629 +37 0.816575 0.238487 +38 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +27 0.816575 0.22629 +29 0.815455 0.22629 +39 0.815455 0.238487 +37 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +29 0.815455 0.22629 +31 0.815044 0.22629 +40 0.815044 0.238487 +39 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +31 0.815044 0.22629 +33 0.815455 0.22629 +41 0.815455 0.238487 +40 0.815044 0.238487 +SURF 0x10 +mat 1 +refs 4 +33 0.815455 0.22629 +7 0.816575 0.22629 +35 0.816575 0.238487 +41 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +35 0.816575 0.238487 +34 0.81811 0.238487 +42 0.81811 0.256781 +43 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +34 0.81811 0.238487 +36 0.903866 0.238487 +44 0.903866 0.256781 +42 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +38 0.81811 0.238487 +37 0.816575 0.238487 +45 0.816575 0.256781 +46 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +37 0.816575 0.238487 +39 0.815455 0.238487 +47 0.815455 0.256781 +45 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +39 0.815455 0.238487 +40 0.815044 0.238487 +48 0.815044 0.256781 +47 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +40 0.815044 0.238487 +41 0.815455 0.238487 +49 0.815455 0.256781 +48 0.815044 0.256781 +SURF 0x10 +mat 1 +refs 4 +41 0.815455 0.238487 +35 0.816575 0.238487 +43 0.816575 0.256781 +49 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +43 0.816575 0.256781 +42 0.81811 0.256781 +50 0.81811 0.275076 +51 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +42 0.81811 0.256781 +44 0.903866 0.256781 +52 0.903866 0.275076 +50 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +46 0.81811 0.256781 +45 0.816575 0.256781 +53 0.816575 0.275076 +54 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +45 0.816575 0.256781 +47 0.815455 0.256781 +55 0.815455 0.275076 +53 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +47 0.815455 0.256781 +48 0.815044 0.256781 +56 0.815044 0.275076 +55 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +48 0.815044 0.256781 +49 0.815455 0.256781 +57 0.815455 0.275076 +56 0.815044 0.275076 +SURF 0x10 +mat 1 +refs 4 +49 0.815455 0.256781 +43 0.816575 0.256781 +51 0.816575 0.275076 +57 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +51 0.816575 0.275076 +50 0.81811 0.275076 +58 0.81811 0.299469 +59 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +50 0.81811 0.275076 +52 0.903866 0.275076 +60 0.903866 0.299469 +58 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +54 0.81811 0.275076 +53 0.816575 0.275076 +61 0.816575 0.299469 +62 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +53 0.816575 0.275076 +55 0.815455 0.275076 +63 0.815455 0.299469 +61 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +55 0.815455 0.275076 +56 0.815044 0.275076 +64 0.815044 0.299469 +63 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +56 0.815044 0.275076 +57 0.815455 0.275076 +65 0.815455 0.299469 +64 0.815044 0.299469 +SURF 0x10 +mat 1 +refs 4 +57 0.815455 0.275076 +51 0.816575 0.275076 +59 0.816575 0.299469 +65 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +59 0.816575 0.299469 +58 0.81811 0.299469 +66 0.772318 0.328378 +67 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +58 0.81811 0.299469 +60 0.903866 0.299469 +68 0.903866 0.332566 +66 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +62 0.81811 0.299469 +61 0.816575 0.299469 +69 0.770783 0.328378 +70 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +61 0.816575 0.299469 +63 0.815455 0.299469 +71 0.769663 0.328378 +69 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +63 0.815455 0.299469 +64 0.815044 0.299469 +72 0.769252 0.328378 +71 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +64 0.815044 0.299469 +65 0.815455 0.299469 +73 0.769663 0.328378 +72 0.769252 0.328378 +SURF 0x10 +mat 1 +refs 4 +65 0.815455 0.299469 +59 0.816575 0.299469 +67 0.770783 0.328378 +73 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +67 0.770783 0.328378 +66 0.772318 0.328378 +74 0.812184 0.346439 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 5 +66 0.772318 0.328378 +68 0.903866 0.332566 +76 0.903866 0.363268 +77 0.823228 0.363268 +74 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +70 0.772318 0.328378 +69 0.770783 0.328378 +78 0.811462 0.346439 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +69 0.770783 0.328378 +71 0.769663 0.328378 +80 0.810931 0.346439 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +71 0.769663 0.328378 +72 0.769252 0.328378 +81 0.810737 0.346439 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +72 0.769252 0.328378 +73 0.769663 0.328378 +82 0.810931 0.346439 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +73 0.769663 0.328378 +67 0.770783 0.328378 +75 0.811462 0.346439 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +83 0.822787 0.363268 +77 0.823228 0.363268 +84 0.833294 0.404239 +85 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +77 0.823228 0.363268 +76 0.903866 0.363268 +86 0.903866 0.404239 +84 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +87 0.823228 0.363268 +88 0.822787 0.363268 +89 0.831757 0.404239 +90 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +88 0.822787 0.363268 +91 0.822462 0.363268 +92 0.831716 0.404239 +89 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +91 0.822462 0.363268 +93 0.822344 0.363268 +94 0.8317 0.404239 +92 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +93 0.822344 0.363268 +95 0.822462 0.363268 +96 0.831716 0.404239 +94 0.8317 0.404239 +SURF 0x10 +mat 1 +refs 4 +95 0.822462 0.363268 +83 0.822787 0.363268 +85 0.831757 0.404239 +96 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +85 0.831757 0.404239 +84 0.833294 0.404239 +97 0.843477 0.44521 +98 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +84 0.833294 0.404239 +86 0.903866 0.404239 +99 0.903866 0.44521 +97 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +90 0.833294 0.404239 +89 0.831757 0.404239 +100 0.842013 0.44521 +101 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +89 0.831757 0.404239 +92 0.831716 0.404239 +102 0.842013 0.44521 +100 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +92 0.831716 0.404239 +94 0.8317 0.404239 +103 0.842013 0.44521 +102 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +94 0.8317 0.404239 +96 0.831716 0.404239 +104 0.842013 0.44521 +103 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +96 0.831716 0.404239 +85 0.831757 0.404239 +98 0.842013 0.44521 +104 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +98 0.842013 0.44521 +97 0.843477 0.44521 +105 0.852858 0.486182 +106 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +97 0.843477 0.44521 +99 0.903866 0.44521 +107 0.903866 0.486182 +105 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +101 0.843477 0.44521 +100 0.842013 0.44521 +108 0.851321 0.486182 +109 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +100 0.842013 0.44521 +102 0.842013 0.44521 +110 0.851129 0.486182 +108 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +102 0.842013 0.44521 +103 0.842013 0.44521 +111 0.851058 0.486182 +110 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.842013 0.44521 +104 0.842013 0.44521 +112 0.851129 0.486182 +111 0.851058 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.842013 0.44521 +98 0.842013 0.44521 +106 0.851321 0.486182 +112 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +106 0.851321 0.486182 +105 0.852858 0.486182 +113 0.863803 0.526837 +114 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +105 0.852858 0.486182 +107 0.903866 0.486182 +115 0.903866 0.526837 +113 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +109 0.852858 0.486182 +108 0.851321 0.486182 +116 0.863087 0.524444 +117 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +108 0.851321 0.486182 +110 0.851129 0.486182 +118 0.862791 0.524444 +116 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +110 0.851129 0.486182 +111 0.851058 0.486182 +119 0.862682 0.524444 +118 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +111 0.851058 0.486182 +112 0.851129 0.486182 +120 0.862791 0.524444 +119 0.862682 0.524444 +SURF 0x10 +mat 1 +refs 4 +112 0.851129 0.486182 +106 0.851321 0.486182 +114 0.863087 0.524444 +120 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +114 0.863087 0.524444 +113 0.863803 0.526837 +121 0.870847 0.54779 +122 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 3 +113 0.863803 0.526837 +115 0.903866 0.526837 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +123 0.926804 0.526837 +124 0.928335 0.526837 +125 0.923898 0.54779 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +124 0.928335 0.526837 +127 0.929455 0.526837 +128 0.925023 0.54779 +125 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 4 +127 0.929455 0.526837 +129 0.92987 0.526837 +130 0.925433 0.54779 +128 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +129 0.92987 0.526837 +131 0.929455 0.526837 +132 0.925023 0.54779 +130 0.925433 0.54779 +SURF 0x10 +mat 1 +refs 4 +131 0.929455 0.526837 +133 0.928335 0.526837 +134 0.923898 0.54779 +132 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +135 0.926804 0.526837 +136 0.922367 0.54779 +134 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 3 +135 0.926804 0.526837 +137 0.903866 0.526837 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +117 0.863803 0.526837 +116 0.863087 0.524444 +138 0.869317 0.54779 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +116 0.863087 0.524444 +118 0.862791 0.524444 +140 0.868548 0.543567 +138 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 4 +118 0.862791 0.524444 +119 0.862682 0.524444 +141 0.868133 0.543567 +140 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +119 0.862682 0.524444 +120 0.862791 0.524444 +142 0.868548 0.543567 +141 0.868133 0.543567 +SURF 0x10 +mat 1 +refs 4 +120 0.862791 0.524444 +114 0.863087 0.524444 +122 0.869317 0.54779 +142 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +122 0.869317 0.54779 +121 0.870847 0.54779 +143 0.878717 0.568117 +144 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +121 0.870847 0.54779 +126 0.922367 0.54779 +145 0.916052 0.568117 +143 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +126 0.922367 0.54779 +125 0.923898 0.54779 +146 0.917588 0.568117 +145 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +125 0.923898 0.54779 +128 0.925023 0.54779 +147 0.918708 0.568117 +146 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +128 0.925023 0.54779 +130 0.925433 0.54779 +148 0.919118 0.568117 +147 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +130 0.925433 0.54779 +132 0.925023 0.54779 +149 0.918708 0.568117 +148 0.919118 0.568117 +SURF 0x10 +mat 1 +refs 4 +132 0.925023 0.54779 +134 0.923898 0.54779 +150 0.917588 0.568117 +149 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +134 0.923898 0.54779 +136 0.922367 0.54779 +151 0.916052 0.568117 +150 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +136 0.922367 0.54779 +139 0.870847 0.54779 +152 0.878717 0.568117 +151 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +139 0.870847 0.54779 +138 0.869317 0.54779 +153 0.879199 0.565583 +152 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +138 0.869317 0.54779 +140 0.868548 0.543567 +154 0.878929 0.565583 +153 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +140 0.868548 0.543567 +141 0.868133 0.543567 +155 0.87883 0.565583 +154 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +141 0.868133 0.543567 +142 0.868548 0.543567 +156 0.878929 0.565583 +155 0.87883 0.565583 +SURF 0x10 +mat 1 +refs 4 +142 0.868548 0.543567 +122 0.869317 0.54779 +144 0.879199 0.565583 +156 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +144 0.879199 0.565583 +143 0.878717 0.568117 +157 0.883212 0.575305 +158 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +143 0.878717 0.568117 +145 0.916052 0.568117 +159 0.912764 0.575305 +157 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +145 0.916052 0.568117 +146 0.917588 0.568117 +160 0.9143 0.575305 +159 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +146 0.917588 0.568117 +147 0.918708 0.568117 +161 0.91542 0.575305 +160 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +147 0.918708 0.568117 +148 0.919118 0.568117 +162 0.91583 0.575305 +161 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +148 0.919118 0.568117 +149 0.918708 0.568117 +163 0.91542 0.575305 +162 0.91583 0.575305 +SURF 0x10 +mat 1 +refs 4 +149 0.918708 0.568117 +150 0.917588 0.568117 +164 0.9143 0.575305 +163 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +150 0.917588 0.568117 +151 0.916052 0.568117 +165 0.912764 0.575305 +164 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +151 0.916052 0.568117 +152 0.878717 0.568117 +166 0.883212 0.575305 +165 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +152 0.878717 0.568117 +153 0.879199 0.565583 +167 0.884056 0.574883 +166 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +153 0.879199 0.565583 +154 0.878929 0.565583 +168 0.882858 0.574883 +167 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +154 0.878929 0.565583 +155 0.87883 0.565583 +169 0.88242 0.574883 +168 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +155 0.87883 0.565583 +156 0.878929 0.565583 +170 0.882858 0.574883 +169 0.88242 0.574883 +SURF 0x10 +mat 1 +refs 4 +156 0.878929 0.565583 +144 0.879199 0.565583 +158 0.884056 0.574883 +170 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +158 0.884056 0.574883 +157 0.883212 0.575305 +171 0.890444 0.585468 +172 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +157 0.883212 0.575305 +159 0.912764 0.575305 +173 0.90686 0.585468 +171 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +159 0.912764 0.575305 +160 0.9143 0.575305 +174 0.90839 0.585468 +173 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +160 0.9143 0.575305 +161 0.91542 0.575305 +175 0.909515 0.585468 +174 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +161 0.91542 0.575305 +162 0.91583 0.575305 +176 0.909925 0.585468 +175 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +162 0.91583 0.575305 +163 0.91542 0.575305 +177 0.909515 0.585468 +176 0.909925 0.585468 +SURF 0x10 +mat 1 +refs 4 +163 0.91542 0.575305 +164 0.9143 0.575305 +178 0.90839 0.585468 +177 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +164 0.9143 0.575305 +165 0.912764 0.575305 +179 0.90686 0.585468 +178 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +165 0.912764 0.575305 +166 0.883212 0.575305 +180 0.890444 0.585468 +179 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +166 0.883212 0.575305 +167 0.884056 0.574883 +181 0.888909 0.585468 +180 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +167 0.884056 0.574883 +168 0.882858 0.574883 +182 0.887789 0.585468 +181 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +168 0.882858 0.574883 +169 0.88242 0.574883 +183 0.887378 0.585468 +182 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +169 0.88242 0.574883 +170 0.882858 0.574883 +184 0.887789 0.585468 +183 0.887378 0.585468 +SURF 0x10 +mat 1 +refs 4 +170 0.882858 0.574883 +158 0.884056 0.574883 +172 0.888909 0.585468 +184 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +172 0.888909 0.585468 +171 0.890444 0.585468 +185 0.896841 0.586472 +0 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +171 0.890444 0.585468 +173 0.90686 0.585468 +186 0.89968 0.586465 +185 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +173 0.90686 0.585468 +174 0.90839 0.585468 +1 0.900578 0.588527 +186 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +174 0.90839 0.585468 +175 0.909515 0.585468 +2 0.90123 0.590037 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +175 0.909515 0.585468 +176 0.909925 0.585468 +187 0.901471 0.59059 +2 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +176 0.909925 0.585468 +177 0.909515 0.585468 +188 0.90123 0.590037 +187 0.901471 0.59059 +SURF 0x10 +mat 1 +refs 4 +177 0.909515 0.585468 +178 0.90839 0.585468 +189 0.900578 0.588527 +188 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +178 0.90839 0.585468 +179 0.90686 0.585468 +190 0.89968 0.586465 +189 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +179 0.90686 0.585468 +180 0.890444 0.585468 +191 0.896841 0.586472 +190 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +180 0.890444 0.585468 +181 0.888909 0.585468 +192 0.895914 0.588495 +191 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +181 0.888909 0.585468 +182 0.887789 0.585468 +193 0.895238 0.589977 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +182 0.887789 0.585468 +183 0.887378 0.585468 +194 0.894987 0.590519 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +183 0.887378 0.585468 +184 0.887789 0.585468 +3 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +184 0.887789 0.585468 +172 0.888909 0.585468 +0 0.895914 0.588495 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +185 0.896841 0.586472 +186 0.89968 0.586465 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +2 0.90123 0.590037 +187 0.901471 0.59059 +194 0.894987 0.590519 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +187 0.901471 0.59059 +188 0.90123 0.590037 +193 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +188 0.90123 0.590037 +189 0.900578 0.588527 +192 0.895914 0.588495 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +189 0.900578 0.588527 +190 0.89968 0.586465 +191 0.896841 0.586472 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 14 +5 0.81811 0.220192 +4 0.816575 0.220192 +32 0.815455 0.220192 +30 0.815044 0.220192 +28 0.815455 0.220192 +26 0.816575 0.220192 +23 0.81811 0.220192 +21 0.897821 0.229292 +19 0.899352 0.229292 +17 0.900477 0.229292 +15 0.900887 0.229292 +13 0.900477 0.229292 +11 0.899352 0.229292 +8 0.897821 0.229292 +SURF 0x10 +mat 1 +refs 4 +74 0.812184 0.346439 +77 0.823228 0.363268 +83 0.822787 0.363268 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +78 0.811462 0.346439 +88 0.822787 0.363268 +87 0.823228 0.363268 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +80 0.810931 0.346439 +91 0.822462 0.363268 +88 0.822787 0.363268 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +81 0.810737 0.346439 +93 0.822344 0.363268 +91 0.822462 0.363268 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +82 0.810931 0.346439 +95 0.822462 0.363268 +93 0.822344 0.363268 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +75 0.811462 0.346439 +83 0.822787 0.363268 +95 0.822462 0.363268 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +25 0.903866 0.22629 +24 0.81811 0.22629 +38 0.81811 0.238487 +195 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +38 0.81811 0.238487 +46 0.81811 0.256781 +196 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +46 0.81811 0.256781 +54 0.81811 0.275076 +197 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +54 0.81811 0.275076 +62 0.81811 0.299469 +198 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +62 0.81811 0.299469 +70 0.772318 0.328378 +199 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 5 +199 0.903866 0.332566 +70 0.772318 0.328378 +79 0.812184 0.346439 +87 0.823228 0.363268 +200 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +87 0.823228 0.363268 +90 0.833294 0.404239 +201 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +90 0.833294 0.404239 +101 0.843477 0.44521 +202 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +101 0.843477 0.44521 +109 0.852858 0.486182 +203 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +109 0.852858 0.486182 +117 0.863803 0.526837 +137 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +123 0.926804 0.526837 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +126 0.922367 0.54779 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +117 0.863803 0.526837 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +139 0.870847 0.54779 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +10 0.903866 0.22629 +25 0.903866 0.22629 +195 0.903866 0.238487 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +16 0.903866 0.221434 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +9 0.903866 0.222712 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +20 0.903866 0.222073 +22 0.903866 0.222712 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +18 0.903866 0.221605 +20 0.903866 0.222073 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +12 0.903866 0.222073 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +16 0.903866 0.221434 +18 0.903866 0.221605 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +14 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +196 0.903866 0.256781 +44 0.903866 0.256781 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +197 0.903866 0.275076 +52 0.903866 0.275076 +44 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +198 0.903866 0.299469 +60 0.903866 0.299469 +52 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +199 0.903866 0.332566 +68 0.903866 0.332566 +60 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +199 0.903866 0.332566 +200 0.903866 0.363268 +76 0.903866 0.363268 +68 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +201 0.903866 0.404239 +86 0.903866 0.404239 +76 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +202 0.903866 0.44521 +99 0.903866 0.44521 +86 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +203 0.903866 0.486182 +107 0.903866 0.486182 +99 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +137 0.903866 0.526837 +115 0.903866 0.526837 +107 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +137 0.903866 0.526837 +135 0.926804 0.526837 +123 0.926804 0.526837 +115 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +135 0.926804 0.526837 +133 0.928335 0.526837 +124 0.928335 0.526837 +123 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +131 0.929455 0.526837 +127 0.929455 0.526837 +124 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 3 +131 0.929455 0.526837 +129 0.92987 0.526837 +127 0.929455 0.526837 +kids 0 +OBJECT poly +name "Rudder" +texture "Rascal.rgb" +numvert 106 +1.77038 -0.0429984 0.00635 +1.77355 -0.0429984 0.00549926 +1.79954 -0.0302984 0.00549926 +1.79636 -0.0302984 0.00635 +1.77588 -0.0429984 0.003175 +1.80186 -0.0302984 0.003175 +1.77673 -0.0429984 1.0018e-16 +1.80271 -0.0302984 1.06547e-16 +1.77588 -0.0429984 -0.003175 +1.80186 -0.0302984 -0.003175 +1.77355 -0.0429984 -0.00549926 +1.79954 -0.0302984 -0.00549926 +1.77038 -0.0429984 -0.00635 +1.79636 -0.0302984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.7526 -0.0302984 -0.00635 +1.82221 -0.0112484 0.00549926 +1.81903 -0.0112484 0.00635 +1.82453 -0.0112484 0.003175 +1.82538 -0.0112484 1.39855e-16 +1.82453 -0.0112484 -0.003175 +1.82221 -0.0112484 -0.00549926 +1.81903 -0.0112484 -0.00635 +1.7526 -0.0112484 -0.00635 +1.83589 0.00780156 0.00549926 +1.83272 0.00780156 0.00635 +1.83822 0.00780156 0.003175 +1.83907 0.00780156 1.57084e-16 +1.83822 0.00780156 -0.003175 +1.83589 0.00780156 -0.00549926 +1.83272 0.00780156 -0.00635 +1.7526 0.00780156 -0.00635 +1.84664 0.0332016 0.00549926 +1.84347 0.0332016 0.00635 +1.84896 0.0332016 0.003175 +1.84982 0.0332016 2.15228e-16 +1.84896 0.0332016 -0.003175 +1.84664 0.0332016 -0.00549926 +1.84347 0.0332016 -0.00635 +1.7526 0.0332016 -0.00635 +1.85072 0.0678846 0.00549926 +1.84755 0.0678846 0.00635 +1.85305 0.0678846 0.003175 +1.8539 0.0678846 2.99494e-16 +1.85305 0.0678846 -0.003175 +1.85072 0.0678846 -0.00549926 +1.84755 0.0678846 -0.00635 +1.7526 0.0676649 -0.00635 +1.84935 0.0996346 0.00549926 +1.84617 0.0996346 0.00635 +1.85167 0.0996346 0.003175 +1.85252 0.0996346 3.82425e-16 +1.85167 0.0996346 -0.003175 +1.84935 0.0996346 -0.00549926 +1.84617 0.0996346 -0.00635 +1.7526 0.0996346 -0.00635 +1.84284 0.142297 0.00549926 +1.83967 0.142297 0.00635 +1.84517 0.142297 0.003175 +1.84602 0.142297 4.91852e-16 +1.84517 0.142297 -0.003175 +1.84284 0.142297 -0.00549926 +1.83967 0.142297 -0.00635 +1.7526 0.142297 -0.00635 +1.83267 0.18496 0.00549926 +1.82949 0.18496 0.00635 +1.83499 0.18496 0.003175 +1.83584 0.18496 6.00384e-16 +1.83499 0.18496 -0.003175 +1.83267 0.18496 -0.00549926 +1.82949 0.18496 -0.00635 +1.7526 0.18496 -0.00635 +1.8189 0.227623 0.00549926 +1.81572 0.227623 0.00635 +1.82122 0.227623 0.003175 +1.82207 0.227623 7.21909e-16 +1.82122 0.227623 -0.003175 +1.8189 0.227623 -0.00549926 +1.81572 0.227623 -0.00635 +1.7526 0.227623 -0.00635 +1.80328 0.269956 0.00549926 +1.80011 0.269956 0.00635 +1.8056 0.269956 0.003175 +1.80646 0.269956 8.42988e-16 +1.8056 0.269956 -0.003175 +1.80328 0.269956 -0.00549926 +1.80011 0.269956 -0.00635 +1.7526 0.269956 -0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.7526 -0.0473896 0.00549926 +1.7526 -0.0478767 0.003175 +1.7526 -0.048055 9.42714e-17 +1.7526 -0.0478767 -0.003175 +1.7526 -0.0473896 -0.00549926 +1.7526 -0.0467241 -0.00635 +1.7526 -0.0302984 0.00635 +1.7526 -0.0112484 0.00635 +1.7526 0.00780156 0.00635 +1.7526 0.0332016 0.00635 +1.7526 0.0676649 0.00635 +1.7526 0.0996346 0.00635 +1.7526 0.142297 0.00635 +1.7526 0.18496 0.00635 +1.7526 0.227623 0.00635 +1.7526 0.269956 0.00635 +numsurf 109 +SURF 0x10 +mat 1 +refs 4 +0 0.912451 0.22629 +1 0.913981 0.22629 +2 0.926529 0.238487 +3 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +1 0.913981 0.22629 +4 0.915106 0.22629 +5 0.927649 0.238487 +2 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +4 0.915106 0.22629 +6 0.915516 0.22629 +7 0.92806 0.238487 +5 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.915516 0.22629 +8 0.915106 0.22629 +9 0.927649 0.238487 +7 0.92806 0.238487 +SURF 0x10 +mat 1 +refs 4 +8 0.915106 0.22629 +10 0.913981 0.22629 +11 0.926529 0.238487 +9 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +10 0.913981 0.22629 +12 0.912451 0.22629 +13 0.924994 0.238487 +11 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +12 0.912451 0.22629 +14 0.903866 0.22629 +15 0.903866 0.238487 +13 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +3 0.924994 0.238487 +2 0.926529 0.238487 +16 0.937474 0.256781 +17 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +2 0.926529 0.238487 +5 0.927649 0.238487 +18 0.938595 0.256781 +16 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +5 0.927649 0.238487 +7 0.92806 0.238487 +19 0.939005 0.256781 +18 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +7 0.92806 0.238487 +9 0.927649 0.238487 +20 0.938595 0.256781 +19 0.939005 0.256781 +SURF 0x10 +mat 1 +refs 4 +9 0.927649 0.238487 +11 0.926529 0.238487 +21 0.937474 0.256781 +20 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +11 0.926529 0.238487 +13 0.924994 0.238487 +22 0.935939 0.256781 +21 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +13 0.924994 0.238487 +15 0.903866 0.238487 +23 0.903866 0.256781 +22 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +17 0.935939 0.256781 +16 0.937474 0.256781 +24 0.944079 0.275076 +25 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +16 0.937474 0.256781 +18 0.938595 0.256781 +26 0.945204 0.275076 +24 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +18 0.938595 0.256781 +19 0.939005 0.256781 +27 0.945615 0.275076 +26 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +19 0.939005 0.256781 +20 0.938595 0.256781 +28 0.945204 0.275076 +27 0.945615 0.275076 +SURF 0x10 +mat 1 +refs 4 +20 0.938595 0.256781 +21 0.937474 0.256781 +29 0.944079 0.275076 +28 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +21 0.937474 0.256781 +22 0.935939 0.256781 +30 0.942549 0.275076 +29 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +22 0.935939 0.256781 +23 0.903866 0.256781 +31 0.903866 0.275076 +30 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +25 0.942549 0.275076 +24 0.944079 0.275076 +32 0.949269 0.299469 +33 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +24 0.944079 0.275076 +26 0.945204 0.275076 +34 0.95039 0.299469 +32 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +26 0.945204 0.275076 +27 0.945615 0.275076 +35 0.950805 0.299469 +34 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +27 0.945615 0.275076 +28 0.945204 0.275076 +36 0.95039 0.299469 +35 0.950805 0.299469 +SURF 0x10 +mat 1 +refs 4 +28 0.945204 0.275076 +29 0.944079 0.275076 +37 0.949269 0.299469 +36 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +29 0.944079 0.275076 +30 0.942549 0.275076 +38 0.947739 0.299469 +37 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +30 0.942549 0.275076 +31 0.903866 0.275076 +39 0.903866 0.299469 +38 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +33 0.947739 0.299469 +32 0.949269 0.299469 +40 0.951239 0.332777 +41 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +32 0.949269 0.299469 +34 0.95039 0.299469 +42 0.952364 0.332777 +40 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +34 0.95039 0.299469 +35 0.950805 0.299469 +43 0.952775 0.332777 +42 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +35 0.950805 0.299469 +36 0.95039 0.299469 +44 0.952364 0.332777 +43 0.952775 0.332777 +SURF 0x10 +mat 1 +refs 4 +36 0.95039 0.299469 +37 0.949269 0.299469 +45 0.951239 0.332777 +44 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +37 0.949269 0.299469 +38 0.947739 0.299469 +46 0.949709 0.332777 +45 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +38 0.947739 0.299469 +39 0.903866 0.299469 +47 0.903866 0.332566 +46 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +41 0.949709 0.332777 +40 0.951239 0.332777 +48 0.950578 0.363268 +49 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +40 0.951239 0.332777 +42 0.952364 0.332777 +50 0.951698 0.363268 +48 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +42 0.952364 0.332777 +43 0.952775 0.332777 +51 0.952108 0.363268 +50 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +43 0.952775 0.332777 +44 0.952364 0.332777 +52 0.951698 0.363268 +51 0.952108 0.363268 +SURF 0x10 +mat 1 +refs 4 +44 0.952364 0.332777 +45 0.951239 0.332777 +53 0.950578 0.363268 +52 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +45 0.951239 0.332777 +46 0.949709 0.332777 +54 0.949042 0.363268 +53 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +46 0.949709 0.332777 +47 0.903866 0.332566 +55 0.903866 0.363268 +54 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +49 0.949042 0.363268 +48 0.950578 0.363268 +56 0.947435 0.404239 +57 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +48 0.950578 0.363268 +50 0.951698 0.363268 +58 0.94856 0.404239 +56 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +50 0.951698 0.363268 +51 0.952108 0.363268 +59 0.94897 0.404239 +58 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +51 0.952108 0.363268 +52 0.951698 0.363268 +60 0.94856 0.404239 +59 0.94897 0.404239 +SURF 0x10 +mat 1 +refs 4 +52 0.951698 0.363268 +53 0.950578 0.363268 +61 0.947435 0.404239 +60 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +53 0.950578 0.363268 +54 0.949042 0.363268 +62 0.945904 0.404239 +61 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +54 0.949042 0.363268 +55 0.903866 0.363268 +63 0.903866 0.404239 +62 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +57 0.945904 0.404239 +56 0.947435 0.404239 +64 0.942525 0.44521 +65 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +56 0.947435 0.404239 +58 0.94856 0.404239 +66 0.943645 0.44521 +64 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +58 0.94856 0.404239 +59 0.94897 0.404239 +67 0.944055 0.44521 +66 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +59 0.94897 0.404239 +60 0.94856 0.404239 +68 0.943645 0.44521 +67 0.944055 0.44521 +SURF 0x10 +mat 1 +refs 4 +60 0.94856 0.404239 +61 0.947435 0.404239 +69 0.942525 0.44521 +68 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +61 0.947435 0.404239 +62 0.945904 0.404239 +70 0.940989 0.44521 +69 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +62 0.945904 0.404239 +63 0.903866 0.404239 +71 0.903866 0.44521 +70 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +65 0.940989 0.44521 +64 0.942525 0.44521 +72 0.935876 0.486182 +73 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +64 0.942525 0.44521 +66 0.943645 0.44521 +74 0.936997 0.486182 +72 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +66 0.943645 0.44521 +67 0.944055 0.44521 +75 0.937407 0.486182 +74 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +67 0.944055 0.44521 +68 0.943645 0.44521 +76 0.936997 0.486182 +75 0.937407 0.486182 +SURF 0x10 +mat 1 +refs 4 +68 0.943645 0.44521 +69 0.942525 0.44521 +77 0.935876 0.486182 +76 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +69 0.942525 0.44521 +70 0.940989 0.44521 +78 0.934341 0.486182 +77 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +70 0.940989 0.44521 +71 0.903866 0.44521 +79 0.903866 0.486182 +78 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +73 0.934341 0.486182 +72 0.935876 0.486182 +80 0.928335 0.526837 +81 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +72 0.935876 0.486182 +74 0.936997 0.486182 +82 0.929455 0.526837 +80 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +74 0.936997 0.486182 +75 0.937407 0.486182 +83 0.92987 0.526837 +82 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +75 0.937407 0.486182 +76 0.936997 0.486182 +84 0.929455 0.526837 +83 0.92987 0.526837 +SURF 0x10 +mat 1 +refs 4 +76 0.936997 0.486182 +77 0.935876 0.486182 +85 0.928335 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +77 0.935876 0.486182 +78 0.934341 0.486182 +86 0.926804 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +78 0.934341 0.486182 +79 0.903866 0.486182 +87 0.903866 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 3 +88 0.903866 0.222712 +0 0.912451 0.22629 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 4 +90 0.903866 0.222073 +1 0.913981 0.22629 +0 0.912451 0.22629 +88 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +91 0.903866 0.221605 +4 0.915106 0.22629 +1 0.913981 0.22629 +90 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +92 0.903866 0.221434 +6 0.915516 0.22629 +4 0.915106 0.22629 +91 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +93 0.903866 0.221605 +8 0.915106 0.22629 +6 0.915516 0.22629 +92 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +94 0.903866 0.222073 +10 0.913981 0.22629 +8 0.915106 0.22629 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +95 0.903866 0.222712 +12 0.912451 0.22629 +10 0.913981 0.22629 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +12 0.912451 0.22629 +95 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +89 0.903866 0.22629 +0 0.912451 0.22629 +3 0.924994 0.238487 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +96 0.903866 0.238487 +3 0.924994 0.238487 +17 0.935939 0.256781 +97 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +17 0.935939 0.256781 +25 0.942549 0.275076 +98 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +25 0.942549 0.275076 +33 0.947739 0.299469 +99 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +33 0.947739 0.299469 +41 0.949709 0.332777 +100 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +41 0.949709 0.332777 +49 0.949042 0.363268 +101 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +49 0.949042 0.363268 +57 0.945904 0.404239 +102 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +57 0.945904 0.404239 +65 0.940989 0.44521 +103 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +65 0.940989 0.44521 +73 0.934341 0.486182 +104 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +73 0.934341 0.486182 +81 0.926804 0.526837 +105 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +96 0.903866 0.238487 +97 0.903866 0.256781 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 3 +82 0.929455 0.526837 +83 0.92987 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +80 0.928335 0.526837 +82 0.929455 0.526837 +84 0.929455 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +81 0.926804 0.526837 +80 0.928335 0.526837 +85 0.928335 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +105 0.903866 0.526837 +81 0.926804 0.526837 +86 0.926804 0.526837 +87 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +105 0.903866 0.526837 +87 0.903866 0.526837 +79 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +104 0.903866 0.486182 +79 0.903866 0.486182 +71 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +103 0.903866 0.44521 +71 0.903866 0.44521 +63 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +102 0.903866 0.404239 +63 0.903866 0.404239 +55 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +101 0.903866 0.363268 +55 0.903866 0.363268 +47 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +100 0.903866 0.332566 +47 0.903866 0.332566 +39 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +99 0.903866 0.299469 +39 0.903866 0.299469 +31 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +98 0.903866 0.275076 +31 0.903866 0.275076 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +14 0.903866 0.22629 +89 0.903866 0.22629 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +92 0.903866 0.221434 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +90 0.903866 0.222073 +88 0.903866 0.222712 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +95 0.903866 0.222712 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +94 0.903866 0.222073 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +91 0.903866 0.221605 +90 0.903866 0.222073 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +92 0.903866 0.221434 +91 0.903866 0.221605 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +93 0.903866 0.221605 +92 0.903866 0.221434 +kids 0 +OBJECT poly +name "Prop_Disk" +numvert 33 +0.0508 -0.254 1.2442e-17 +0.0508 -0.249119 0.0495529 +0.0508 1.38778e-17 1.67788e-17 +0.0508 -0.234665 0.0972016 +0.0508 -0.211193 0.141115 +0.0508 -0.179605 0.179605 +0.0508 -0.141115 0.211193 +0.0508 -0.0972016 0.234665 +0.0508 -0.0495529 0.249119 +0.0508 -1.55525e-17 0.254 +0.0508 0.0495529 0.249119 +0.0508 0.0972016 0.234665 +0.0508 0.141115 0.211193 +0.0508 0.179605 0.179605 +0.0508 0.211193 0.141115 +0.0508 0.234665 0.0972016 +0.0508 0.249119 0.0495529 +0.0508 0.254 4.3547e-17 +0.0508 0.249119 -0.0495529 +0.0508 0.234665 -0.0972016 +0.0508 0.211193 -0.141115 +0.0508 0.179605 -0.179605 +0.0508 0.141115 -0.211193 +0.0508 0.0972016 -0.234665 +0.0508 0.0495529 -0.249119 +0.0508 4.66575e-17 -0.254 +0.0508 -0.0495529 -0.249119 +0.0508 -0.0972016 -0.234665 +0.0508 -0.141115 -0.211193 +0.0508 -0.179605 -0.179605 +0.0508 -0.211193 -0.141115 +0.0508 -0.234665 -0.0972016 +0.0508 -0.249119 -0.0495529 +numsurf 32 +SURF 0x30 +mat 3 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +32 0 0 +0 0 0 +2 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/Rascal/Models/Rascal110.xml b/resources/flightgear/Aircraft/Rascal/Models/Rascal110.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4170ff362e7d9dfc23424735f5be8b9a3c10427 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/Rascal110.xml @@ -0,0 +1,87 @@ + + + + + Rascal110-000-013.ac + + + Aircraft/Rascal/Models/smokeW.xml + + 2.0 + 0.0 + 0.0 + 0 + 0 + 0 + + + + + rotate + L_Aileron + /surface-positions/left-aileron-pos-norm + 20.0 +
+ 0.735 + -0.450 + 0.139 +
+ + 0.037 + 1.0 + -0.029 + +
+ + + rotate + R_Aileron + /surface-positions/right-aileron-pos-norm + 20.0 +
+ 0.735 + 0.450 + 0.139 +
+ + -0.037 + 1.0 + 0.029 + +
+ + + rotate + Elevator + /surface-positions/elevator-pos-norm + 35.0 +
+ 1.752 + 0.0 + 0.051 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + rotate + Rudder + /surface-positions/rudder-pos-norm + 35.0 +
+ 1.752 + 0.0 + 0.0 +
+ + 0.0 + 0.0 + 1.0 + +
+ +
diff --git a/resources/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac b/resources/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac new file mode 100644 index 0000000000000000000000000000000000000000..4daabfce065f9b6f285485a28fd08776a6e09320 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.ac @@ -0,0 +1,30 @@ +AC3Db +MATERIAL "ac3dmat9" rgb 0 0 1 amb 0 0 1 emis 0 0 1 spec 0 0 1 shi 0 trans 0 +MATERIAL "ac3dmat3" rgb 1 0 0 amb 1 0 0 emis 1 0 0 spec 1 0 0 shi 0 trans 0 +OBJECT world +kids 2 +OBJECT poly +name "line" +loc 0 0.5 0 +numvert 2 +0 0.5 0 +0 -0.5 0 +numsurf 1 +SURF 0x22 +mat 0 +refs 2 +0 0 1 +1 0 0 +kids 0 +OBJECT poly +name "line" +numvert 2 +0 0 -3 +0 0 3 +numsurf 1 +SURF 0x22 +mat 1 +refs 2 +0 0 1 +1 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml b/resources/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml new file mode 100644 index 0000000000000000000000000000000000000000..f0897f2c6f274741524f56d946f3c14459dcd9f8 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/Trajectory-Marker.xml @@ -0,0 +1,9 @@ + + + + + + + Trajectory-Marker.ac + + diff --git a/resources/flightgear/Aircraft/Rascal/Models/fix.sh b/resources/flightgear/Aircraft/Rascal/Models/fix.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb14cb636ddff14eb6213dc57c4eaf88e455e739 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/fix.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +for f in "$@" ; do + sed -i.before-color-change 's,\(MATERIAL.*\)rgb\(.*\)amb\(.*\)emis\(.*\)spec\(.*\)shi\(.*\)trans\(.*\)$,\1rgb\2amb\2emis\4spec\5shi\6trans\7,1' "$f" + if ! cmp "${f}" "${f}.before-color-change" > /dev/null 2>&1 ; then + echo "$f has changed colors!" + fi +done diff --git a/resources/flightgear/Aircraft/Rascal/Models/smoke.png b/resources/flightgear/Aircraft/Rascal/Models/smoke.png new file mode 100644 index 0000000000000000000000000000000000000000..7bad8c685f636179ff1ce401869188bae2d2225a Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal/Models/smoke.png differ diff --git a/resources/flightgear/Aircraft/Rascal/Models/smokeW.xml b/resources/flightgear/Aircraft/Rascal/Models/smokeW.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d7f06730e22e410a602869d069138a752c42fcf --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Models/smokeW.xml @@ -0,0 +1,102 @@ + + + + + + + + + smoke + + + 0.000 + 0.000 + -0.000 + 0.000 + 0.000 + 0.000 + + + smoke.png + + + sim/multiplay/generic/int[0] + + + false + false + billboard + world + + + point + + + + 10 + 86 + -1.5 + 8 + + 10 + 2.5 + + + 5 + 5 + 5 + 60 + 60 + 60 + + + + + + 100 + 1 + + + + + + + 0.9 + 0.9 + 0.9 + 0.3 + + + 0.3 + + + + + + 0.900 + 0.900 + 0.900 + 0.001 + + + 10.0 + + + + + 60 + + + 0.001 + 1.0 + + + + air + false + true + + + + + diff --git a/resources/flightgear/Aircraft/Rascal/README.Rascal b/resources/flightgear/Aircraft/Rascal/README.Rascal new file mode 100644 index 0000000000000000000000000000000000000000..53559bf73c3fabde9ebf0dd8079b8674bf9d37ac --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/README.Rascal @@ -0,0 +1,236 @@ +This information has not been updated for the Rascal, please ignore, we +are still at pre-pre-pre-alpha with this model! + +PIPER J3 CUB PERFORMANCE DATA +============================= + +[This information is copied from the 1946 J3C-65 owner's handbook.] + + FLYING HINTS + +The Piper Cub Special represents more than 15 years of diligent +aircraft engineering and manufacturing experience. Its simplicity of +design and construction, its low operating and maintenance costs, its +inherent stability, ruggedness, and its outstanding safety and ease of +flying, have made it the most popular airplane in aviation history. +The Piper Cub Special is the time-tested product of millions of hours +of flying under all conceivable conditions both in the military and in +peace time. + +There are hints on starting, flying, stopping, and other related +topics that are important to the owner who wants to conserve his +airplane -- keep it in maximum airworthy condition -- and enjoy a full +measure of flying satisfaction. + + +First, each pilot should become familiar enough with his Piper Cub +Special that he can accomplish a satisfactory pre-flight inspection. +This check is simple and requires only a few minutes. See Section IX +for check list. Daily check of airplane prior to flight should be the +first in a number of safe flying habits the pilot should acquire. + + +A. BEFORE STARTING ENGINE + +(1) Make routine check of gasoline supply. Visible fuel gauge is +integral part of gas tank cap; it will not show number of gallons but +will show proportion of fuel in tank by length of rod which extends +upward from cap. A full tank of 12 U.S. gallons will be indicated by +11 inches of rod extending beyond cap. Keep gas gauge rod clean and +smooth with crocus cloth for accuracy and freedom of movement. + +(2) Check oil level in engine sump by removing oil cap and gauge. Oil +stick should indicate oil level up to index mark of 4 quarts. + +(3) Check freedom of movement of flight and engine controls. + + +B. STARTING ENGINE + +(1) Chock wheels, or have occupant who is familiar with controls set +brakes in cabin. + +(2) Ignition switch OFF. Verify. + +(3) Set throttle approximately 1/10 open. + +(4) Push fuel shut-off ON. + +(5) Turn propeller through several times. + +(6) Turn ignition switch ON. + +(7) Start engine by pulling propeller through with a snap. + +CAUTION -- Always handle propeller as if switch were "ON." Stand as +far in front of propeller as possible. Use both hands and grasp one +blad approximately midway from tip. Do not overgrasp blade. Do not +wear long, loose clothing. Make sure footing is sure to preclude +possibility of feet slipping. + +(8) If engine does not start, turn switch OFF. Turn primer knob to +unlock, pull out, pump three or four times, then reseat primer and +lock by turning in opposite direction. In extremely cold weather a +few strokes of the primer as the engine starts will enable it to keep +running. NOTE -- Avoid excessive priming as it causes raw gasoline to +wash lubricating oil from engine cylinder walls. Do not prime warm +engine. + +(9) Repeat starting procedures 6, 7. + +(10) If engine loads up and refuses to start, turn ignition switch +"OFF,", open throttle wide and turn propeller through backwards +several times to unload excessive gas mixture in cylinders. Then +close throttle and repeat starting procedure. + + +C. ENGINE WARM-UP + +(1) As soon as engine starts, advance throttle slightly to idle at 700 +R.P.M. Check engine instruments. If oil pressure gauge does not +indicate pressure within 30 seconds, stop engine immediately, check +and correct trouble before any further operation. Oil temperature +during operating should not rise above 200° F. and oil pressure should +not fall below 30 pounds. With engine warm, idling speed should be +550-600 R.P.M. + +(2) Rev engine up to 2100 R.P.M. on both magnetos. Switch to LEFT and +RIGHT magnetos. R.P.M. drop should not be over 75 R.P.M. CAUTION +--Do not operate engine on either single magneto for more than 30 +seconds at a time, as this tends to foul the non-operating spark plugs +in the ignition circuit of the magneto that is switched off. + + +D. STOPPING ENGINE + +(1) Never cut switch immediately after landing as this causes engine +to cool too rapidly. + +(2) Idle engine, especially in high temperature operating conditions, +for several minutes. It is advisable to switch to each magneto for 30 +second intervals to allow gradual cooling of engine. This helps to +prevent overheating of spark plug insulators and will lessen tendency +for "after-firing." + +(3) Check for carburetor heat OFF during idling. + + +E. TAXIING + +(1) Open throttle to start airplane in motion; then close throttle to +a setting sufficient to keep airplane rolling. Do not keep throttle +advanced so that it is necessary to control taxi speed of airplane +with brakes. This causes unnecessary wear and tear on brakes and +tires. + +(2) Taxi slowly (speed of a fast walk) controlling direction with +rudder which is connected to a steerable tail wheel. Use brakes only +for positive, precision ground control when necessary. + +(3) Taxi upwind with stick back; downwind with stick foreward. When +ground winds are in excess of 15 M.P.H., turn into wind using ailerons +in direction of turn; apply ailerons away from the turn when turning +downwind. This procedure helps to prevent the wind "picking up" a +wing during windy, gusty conditions. Always make ground turns slowly. + + +F. GENERAL FLYING + +(1) For takeoff use full throttle, heading into wind. Airplane loaded +will become airborne at approximately 39 M.P.H. Best climb speed is +an indicated 55 M.P.H. + +(2) Indicated R.P.M. for cruising speed of 73 M.P.H. is 2150. +Take-off R.P.M. is 2300. Do not fly at full throttle over 3 minutes. + +(3) Use CARBURETOR AIR HEAT when engine runs "rough" and tachometer +shows drop in R.P.M. which may be due to ice forming in carburetor. +Tachometer should recover to within 50 R.P.M. below normal when using +carburetor heat. Push heater to "OFF" position, and if icing +condition has been cleared, R.P.M. should return to normal. Continued +use of carburetor heat will only cause increased fuel consumption and +loss of power. + +(4) Maximum permissible diving speed is 122 M.P.H. + + +G. APPROACH AND LANDING + +(1) Push carburetor heat ON prior to throttling back for glide, or for +any other flight maneuver. + +(2) Glide between 50-60 M.P.H. depending upon loading of airplane and +gust conditions. + +NOTE -- "Clear" engine by opening throttle gently, every 200-250 feet +of descent during a long glide so that engine temperature will be +maintained. + +Throttle action on the part of the pilot should be smooth and gentle +at all times. + + +H. PARKING AND MOORING + +(1) After termination of flight, enter flying time in aircraft and +engine log books. + +(2) Turn ignition and fuel OFF. + +(3) Chcok the wheels of airplane. + +(4) If airplane is not to be flown for some time, it should be +hangared or tied down. Use good quality 1/2" - 5/8" diameter rope. +Secure to lift assist handle at aft end of fuselage; also at upper end +of both front wing lift struts where they attach to wing. Make sure +that rope passes between aileron cable and lift strut. Mooring ropes, +when airplane is tied down, should have no slack. + +(5) Lock aileron and elevator controls by wrapping front seat belt +completely around rear control stick, tighten and buckle. + +(6) Under excessively wind conditions, airplane should be tailed into +wind for mooring. + + + + +[Here is my older information.] + +These are the only numbers I could find. They are for a J3 Cub with +an 85HP engine rather than 65 hp, so some adjustments may be +necessary. The source is + + http://www.evergreenfs.com/planedata.htm + + +Speeds +------ + Best rate of climb (Vy): 65 mph (57 kt) + Best angle of climb (Vx): 55 mph (48 kt) + Cruise: 70 mph (61 kt) + Never-exceed (Vne): 122 mph (106 kt) + Best Glide (Vglide): 60 mph (52 kt) + Stall (Vs): 38 mph (33 kt) + Maneuvering (Va): 70 mph (61 kt) + Approach: 50-60 mph (44-52 kt) + +Power +----- + Take off: full + Climb: 50 rpm below full + Cruise: 2300 rpm + Approach: 1200 rpm + Practice stalls: 1200 rpm + +Distances +--------- + Take-off: 450-800 ft + Landing: 200-800 ft + +Fuel +---- + Total fuel: 12 gal US + Usable fuel: 12 gal US + Grade: 80/87 + GPH: 5 gal US/hr diff --git a/resources/flightgear/Aircraft/Rascal/Rascal-keyboard.xml b/resources/flightgear/Aircraft/Rascal/Rascal-keyboard.xml new file mode 100644 index 0000000000000000000000000000000000000000..504ecca2ce180a41060d2598a7ac0e3e7ed831c0 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Rascal-keyboard.xml @@ -0,0 +1,24 @@ + + + + + + Ctrl-I + Show configuration dialog + + nasal + + + + + + S + Toggle smoke + + property-toggle + sim/multiplay/generic/int[0] + + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Rascal-submodels.xml b/resources/flightgear/Aircraft/Rascal/Rascal-submodels.xml new file mode 100644 index 0000000000000000000000000000000000000000..2ebff47f5354afc2c55bdbe7252a2e9465831ccd --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Rascal-submodels.xml @@ -0,0 +1,25 @@ + + + + + + trajectory marker + Aircraft/Rascal/Models/Trajectory-Marker.xml + /sim/multiplay/generic/int[1] + 0 + true + 0.75 + -1 + -0.5 + 0.0 + -0.08 + 0.0 + 0.0 + 1000000000.00 + 600 + 32 + false + false + + + diff --git a/resources/flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml b/resources/flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..e3ebc4c0ae49ea7b7cedb3717e60823979487480 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Rascal110-JSBSim-set.xml @@ -0,0 +1,213 @@ + + + + + + + Rascal 110 (R/C) + Lee Elliot (3D) Dave Culp (JSBsim dynamics) and Curt Olson + 0.1 + + + Aircraft/Rascal/Rascal110-splash.rgb + + + jsb + Rascal110-JSBSim + 0.8 + + + + Aircraft/Rascal/Systems/110-autopilot.xml + + + Aircraft/Rascal/Systems/electrical.xml + + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/Rascal/Models/Rascal110.xml + + + + Huds/NTPS.xml + true + + true + true + 0.85 + 0.85 + + + + 0.38 + 1.0 + 0.22 + + + 1.0 + 0.0 + 0.0 + + + + + + true + + 0.0 + -0.15 + 0.9 + -8 + + + + + 1 + Aircraft/Rascal/Rascal-submodels.xml + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + News Camera + lookat + true + + /position/latitude-deg + /position/longitude-deg + /position/altitude-ft + /orientation/heading-deg + /orientation/pitch-deg + /orientation/roll-deg + 0.0 + -0.35 + -0.4 + + /sim/input/click/latitude-deg + /sim/input/click/longitude-deg + /sim/input/click/elevation-ft + + + + + Camera View + true + lookfrom + false + + true + 0 + 0.5f + 55.0 + + + + + 1 + + 0 + 0 + + + + + Rascal 110 (Sig Mfg) + Cruise speed: 60 kts + Never-exceed (Vne): 85 kts + Best Glide (Vglide): 20 kts + Maneuvering (Va): 50 kts + Approach speed: 20-25 kts + Stall speed (Vs): 15 kts + + + + + + + Aircraft/Rascal/Systems/main.nas + Aircraft/Rascal/Systems/airdata.nas + Aircraft/Rascal/Systems/ugear.nas + + + + + + 2 + + + + + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + + + + + + + 700 + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml b/resources/flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml new file mode 100644 index 0000000000000000000000000000000000000000..e09dd7b15b2105e6c0da1a349592f38a3abc7d2a --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Rascal110-JSBSim.xml @@ -0,0 +1,522 @@ + + + + + + Author Name + Creation Date + Version + Models a rascal + + + + 10.57 + 9.17 + 1.15 + 1.69 + 3.28 + 1.06 + 0 + + 37.4 + 0 + 0 + + + 20 + 0 + 5 + + + 0 + 0 + 0 + + + + + 1.95 + 1.55 + 1.91 + 0 + 0 + 0 + 13 + + 36.4 + 0 + 4 + + + + + + + 33.1 + -9.9 + -13.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + LEFT + 0 + + + + 33.1 + 9.9 + -13.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + RIGHT + 0 + + + + 68.9 + 0 + -6.6 + + 0.8 + 0.5 + 0.02 + 24 + 20 + 360.0 + NONE + 0 + + + + + + + 36 + 0 + 0 + + + 0.0 + 0 + 0 + + 0 + + + 1 + 0 + 0 + + + 0.0 + 0.0 + 0.0 + + 1.0 + + + + + 36.36 + 0 + -1.89375 + + 1.5 + 1.5 + + + + + + + + fcs/elevator-cmd-norm + fcs/pitch-trim-cmd-norm + + -1 + 1 + + + + + fcs/pitch-trim-sum + + -0.35 + 0.3 + + fcs/elevator-pos-rad + + + + fcs/elevator-pos-rad + + -0.3 + 0.3 + + + -1 + 1 + + fcs/elevator-pos-norm + + + + fcs/aileron-cmd-norm + fcs/roll-trim-cmd-norm + + -1 + 1 + + + + + fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/left-aileron-pos-rad + + + + -fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/right-aileron-pos-rad + + + + fcs/left-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/left-aileron-pos-norm + + + + fcs/right-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/right-aileron-pos-norm + + + + fcs/rudder-cmd-norm + fcs/yaw-trim-cmd-norm + + -1 + 1 + + + + + fcs/rudder-command-sum + + -0.35 + 0.35 + + fcs/rudder-pos-rad + + + + fcs/rudder-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/rudder-pos-norm + + + + + + + + Drag_at_zero_lift + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -1.5700 1.5000 + -0.2600 0.0560 + 0.0000 0.0280 + 0.2600 0.0560 + 1.5700 1.5000 + +
+
+
+ + Induced_drag + + aero/qbar-psf + metrics/Sw-sqft + aero/cl-squared + 0.0400 + + + + Drag_due_to_sideslip + + aero/qbar-psf + metrics/Sw-sqft + + aero/beta-rad + + -1.5700 1.2300 + -0.2600 0.0500 + 0.0000 0.0000 + 0.2600 0.0500 + 1.5700 1.2300 + +
+
+
+ + Drag_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-norm + 0.0300 + + +
+ + + + Side_force_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + aero/beta-rad + -1.0000 + + + + + + + Lift_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -0.2000 -0.7500 + 0.0000 0.2500 + 0.2300 1.4000 + 0.6000 0.7100 + +
+
+
+ + Lift_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-rad + 0.2000 + + +
+ + + + Roll_moment_due_to_beta + + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + -0.1000 + + + + Roll_moment_due_to_roll_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/p-aero-rad_sec + -0.4000 + + + + Roll_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + 0.1500 + + + + Roll_moment_due_to_aileron + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + + velocities/mach + + 0.0000 0.1300 + 2.0000 0.0570 + +
+
+
+ + Roll_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + 0.0100 + + +
+ + + + Pitch_moment_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/alpha-rad + -0.5000 + + + + Pitch_moment_due_to_elevator + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + fcs/elevator-pos-rad + + velocities/mach + + 0.0000 -0.5000 + 2.0000 -0.2750 + +
+
+
+ + Pitch_moment_due_to_pitch_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + velocities/q-aero-rad_sec + -12.0000 + + + + Pitch_moment_due_to_alpha_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + aero/alphadot-rad_sec + -7.0000 + + +
+ + + + Yaw_moment_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + 0.1200 + + + + Yaw_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + -0.1500 + + + + Yaw_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + -0.0500 + + + + Adverse_yaw + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + -0.0300 + + + + Yaw_moment_due_to_tail_incidence + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + 0.0007 + + + +
+
diff --git a/resources/flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml b/resources/flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b92a5950a5682bce0a5cab7bd54976aa22323f1 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Rascal110-YASim-set.xml @@ -0,0 +1,108 @@ + + + + + + + Rascal 110 (R/C) + Lee Elliot (3D) Dave Culp (JSBsim dynamics) and Curt Olson + 0.1 + + + Aircraft/Rascal/Rascal110-splash.rgb + + + yasim + Rascal110-YASim + 0.8 + + + + Aircraft/Rascal/Systems/110-autopilot.xml + + + Aircraft/Rascal/Systems/electrical.xml + + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/Rascal/Models/Rascal110.xml + + + + true + + 0.0 + -0.3 + 0.9 + -8 + + + + + Rascal 110 (Sig Mfg) + Cruise speed: 60 mph + Never-exceed (Vne): 85 mph + Best Glide (Vglide): 20 mph + Maneuvering (Va): 50 mph + Approach speed: 15-25 mph + Stall speed (Vs): 10 mph + + + + + + + 2 + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + 1.0 + + + + + 700 + + + + + + + 48.0 + 56.0 + 400.0 + 1000.0 + 6000.0 + 0.008 + 0.35 + 0.001 + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Rascal110-YASim.xml b/resources/flightgear/Aircraft/Rascal/Rascal110-YASim.xml new file mode 100644 index 0000000000000000000000000000000000000000..50b36d8320c95520bd2e3bebfd8e3962ac34ebf9 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Rascal110-YASim.xml @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Rascal110-splash.rgb b/resources/flightgear/Aircraft/Rascal/Rascal110-splash.rgb new file mode 100644 index 0000000000000000000000000000000000000000..0b0daff89d40685b7c99d7ceb32625a63e5d3de4 Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal/Rascal110-splash.rgb differ diff --git a/resources/flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 b/resources/flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 new file mode 100644 index 0000000000000000000000000000000000000000..6ffff8d76eb5e8c45cb8c1010f5b5a981c7df228 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/.#110-autopilot.xml.1.2 @@ -0,0 +1,711 @@ + + + + + + + + + + + + + + + + + + Wing Leveler (Turn Coordinator based) + false + + /autopilot/locks/heading + wing-leveler + + + /orientation/roll-deg + + + 0.0 + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + Bank Hold + false + + /autopilot/locks/heading + bank-hold + + + /orientation/roll-deg + + + /autopilot/settings/target-bank-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Heading Bug Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + dg-heading-hold + + + /autopilot/internal/fdm-heading-bug-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -0.1 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Heading Bug Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + dg-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + True Heading Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + true-heading-hold + + + /autopilot/internal/true-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + True Heading Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + true-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Nav1 Hold Stage 1 + false + + /autopilot/locks/heading + nav1-hold + + + /autopilot/internal/nav1-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Nav1 Hold Stage 2 + false + + /autopilot/locks/heading + nav1-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + pitch-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Pitch hold w/ yoke + false + + /autopilot/locks/altitude + pitch-hold-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + AOA hold + false + + /autopilot/locks/altitude + aoa-hold + + + /orientation/alpha-deg + + + /autopilot/settings/target-aoa-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + Altitude Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + altitude-hold + + + /position/altitude-ft + + + /autopilot/settings/target-altitude-ft + + + /autopilot/internal/target-climb-rate-fps + + + 0.3 + + 0.0 + -8.33 + + 8.33 + + + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + altitude-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /autopilot/settings/target-pitch-deg + + + 0.5 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.0001 + -5.0 + 5.0 + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + altitude-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + AGL Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + agl-hold + + + /position/altitude-agl-ft + + + /autopilot/settings/target-agl-ft + + + /autopilot/internal/target-climb-rate-fps + + + 1.0 + 1.0 + 0.1 + 0.0 + + 25.0 + 0.000000001 + -16.67 + 8.33 + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + agl-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Glideslop Hold + false + + /autopilot/locks/altitude + gs1-hold + + + /velocities/vertical-speed-fps + + + /instrumentation/nav[0]/gs-rate-of-climb + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + + Auto Throttle (5 sec lookahead) + false + + /autopilot/locks/speed + speed-with-throttle + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /controls/engines/engine[0]/throttle + /controls/engines/engine[1]/throttle + /controls/engines/engine[2]/throttle + /controls/engines/engine[3]/throttle + /controls/engines/engine[4]/throttle + /controls/engines/engine[5]/throttle + /controls/engines/engine[6]/throttle + /controls/engines/engine[7]/throttle + + + 0.1 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.001 + 0.0 + 1.0 + + + + + + Speed hold (vary pitch trim) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch trim) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Speed hold (vary pitch via yoke) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch via yoke) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml b/resources/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ab47ed98f0845b6f37d088aeb24f63d15d3423e --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + Wing Leveler (Turn Coordinator based) + false + + /autopilot/locks/heading + wing-leveler + + + /orientation/roll-deg + + + 0.0 + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + Bank Hold + false + + /autopilot/locks/heading + bank-hold + + + /orientation/roll-deg + + + /autopilot/settings/target-bank-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Heading Bug Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + dg-heading-hold + + + /autopilot/internal/fdm-heading-bug-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -0.1 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Heading Bug Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + dg-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + True Heading Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + true-heading-hold + + + /autopilot/internal/true-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + True Heading Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + true-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Nav1 Hold Stage 1 + false + + /autopilot/locks/heading + nav1-hold + + + /autopilot/internal/nav1-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Nav1 Hold Stage 2 + false + + /autopilot/locks/heading + nav1-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + pitch-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Pitch hold w/ yoke + false + + /autopilot/locks/altitude + pitch-hold-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + AOA hold + false + + /autopilot/locks/altitude + aoa-hold + + + /orientation/alpha-deg + + + /autopilot/settings/target-aoa-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + Altitude Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + altitude-hold + + + /position/altitude-ft + + + /autopilot/settings/target-altitude-ft + + + /autopilot/internal/target-climb-rate-fps + + + 0.3 + 0.0 + -8.33 + 8.33 + + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + altitude-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /autopilot/settings/target-pitch-deg + + + 0.5 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.00001 + -5.0 + 5.0 + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + altitude-hold + true + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + AGL Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + agl-hold + + + /position/altitude-agl-ft + + + /autopilot/settings/target-agl-ft + + + /autopilot/internal/target-climb-rate-fps + + + 1.0 + 1.0 + 0.1 + 0.0 + + 25.0 + 0.000000001 + -16.67 + 8.33 + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + agl-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Glideslop Hold + false + + /autopilot/locks/altitude + gs1-hold + + + /velocities/vertical-speed-fps + + + /instrumentation/nav[0]/gs-rate-of-climb + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + + Auto Throttle (5 sec lookahead) + false + + /autopilot/locks/speed + speed-with-throttle + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /controls/engines/engine[0]/throttle + /controls/engines/engine[1]/throttle + /controls/engines/engine[2]/throttle + /controls/engines/engine[3]/throttle + /controls/engines/engine[4]/throttle + /controls/engines/engine[5]/throttle + /controls/engines/engine[6]/throttle + /controls/engines/engine[7]/throttle + + + 0.1 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.001 + 0.0 + 1.0 + + + + + + Speed hold (vary pitch trim) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch trim) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-accel-ktps + + + 0.2 + 0.0 + -1.0 + 1.0 + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /accelerations/airspeed-ktps + + + //autopilot/settings/target-accel-ktps + + + /controls/flight/elevator + + + 0.02 + 1.0 + 0.1 + 0.0 + + 8.0 + 0.001 + -0.25 + 0.25 + + + + + + Speed hold (vary pitch via yoke) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-yoke-pitch + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch via yoke) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-yoke-pitch + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a b/resources/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a new file mode 100644 index 0000000000000000000000000000000000000000..05f17e152937819d2212f3ff5240c7be1855ddbc --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/110-autopilot.xml-a @@ -0,0 +1,707 @@ + + + + + + + + + + + + + + + + + + Wing Leveler (Turn Coordinator based) + false + + /autopilot/locks/heading + wing-leveler + + + /orientation/roll-deg + + + 0.0 + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + Bank Hold + false + + /autopilot/locks/heading + bank-hold + + + /orientation/roll-deg + + + /autopilot/settings/target-bank-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Heading Bug Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + dg-heading-hold + + + /autopilot/internal/fdm-heading-bug-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -0.1 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Heading Bug Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + dg-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + True Heading Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + true-heading-hold + + + /autopilot/internal/true-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + True Heading Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + true-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Nav1 Hold Stage 1 + false + + /autopilot/locks/heading + nav1-hold + + + /autopilot/internal/nav1-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Nav1 Hold Stage 2 + false + + /autopilot/locks/heading + nav1-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + pitch-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Pitch hold w/ yoke + false + + /autopilot/locks/altitude + pitch-hold-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + AOA hold + false + + /autopilot/locks/altitude + aoa-hold + + + /orientation/alpha-deg + + + /autopilot/settings/target-aoa-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + Altitude Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + altitude-hold + + + /position/altitude-ft + + + /autopilot/settings/target-altitude-ft + + + /autopilot/internal/target-climb-rate-fps + + + 0.3 + 0.0 + -8.33 + 8.33 + + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + altitude-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /autopilot/settings/target-pitch-deg + + + 0.5 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.00001 + -5.0 + 5.0 + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + altitude-hold + true + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + AGL Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + agl-hold + + + /position/altitude-agl-ft + + + /autopilot/settings/target-agl-ft + + + /autopilot/internal/target-climb-rate-fps + + + 1.0 + 1.0 + 0.1 + 0.0 + + 25.0 + 0.000000001 + -16.67 + 8.33 + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + agl-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Glideslop Hold + false + + /autopilot/locks/altitude + gs1-hold + + + /velocities/vertical-speed-fps + + + /instrumentation/nav[0]/gs-rate-of-climb + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + + Auto Throttle (5 sec lookahead) + false + + /autopilot/locks/speed + speed-with-throttle + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /controls/engines/engine[0]/throttle + /controls/engines/engine[1]/throttle + /controls/engines/engine[2]/throttle + /controls/engines/engine[3]/throttle + /controls/engines/engine[4]/throttle + /controls/engines/engine[5]/throttle + /controls/engines/engine[6]/throttle + /controls/engines/engine[7]/throttle + + + 0.1 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.001 + 0.0 + 1.0 + + + + + + Speed hold (vary pitch trim) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch trim) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-accel-ktps + + + 0.2 + 0.0 + -1.0 + 1.0 + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /accelerations/airspeed-ktps + + + //autopilot/settings/target-accel-ktps + + + /controls/flight/elevator + + + 0.02 + 1.0 + 0.1 + 0.0 + + 8.0 + 0.001 + -0.25 + 0.25 + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Systems/airdata.nas b/resources/flightgear/Aircraft/Rascal/Systems/airdata.nas new file mode 100644 index 0000000000000000000000000000000000000000..8322cbb1699cc19f77458d80609519ac7932e3bf --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/airdata.nas @@ -0,0 +1,40 @@ +var last_time = 0.0; +var last_speed = 0.0; +var speed_sensed = 0.0; +var sensor_step = 1.0; +var speed_filt = 0.0; +var accel_filt = 0.0; + +var compute_airspeed_accel = func( speed_filt, dt ) { + # print ( "computing forward acceleration ", dt ); + + var delta_speed = speed_filt - last_speed; + last_speed = speed_filt; + + var accel = delta_speed / dt; + + return accel; +} + + +var update_airdata = func( dt ) { + # crude model of a noisy electronic pitot tube + sensed_speed = getprop("/velocities/airspeed-kt"); + var r = rand(); + if ( r < 0.3333 ) { + sensed_speed = sensed_speed - sensor_step; + } elsif ( r > 0.6666 ) { + sensed_speed = sensed_speed + sensor_step; + } + + speed_filt = 0.97 * speed_filt + 0.03 * sensed_speed; + + var sensed_accel = 0.0; + if ( dt > 0 ) { + sensed_accel = compute_airspeed_accel( speed_filt, dt ); + } + + accel_filt = 0.97 * accel_filt + 0.03 * sensed_accel; + + setprop("/accelerations/airspeed-ktps", accel_filt); +} diff --git a/resources/flightgear/Aircraft/Rascal/Systems/electrical.xml b/resources/flightgear/Aircraft/Rascal/Systems/electrical.xml new file mode 100644 index 0000000000000000000000000000000000000000..88bd52e62cc92cd5f38104b7ba4aa7beed8bf424 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/electrical.xml @@ -0,0 +1,140 @@ + + + + + + + + + + + + Battery 1 + /systems/electrical/suppliers/battery[0] + battery + 28 + 60 + + + + Alternator 1 + /systems/electrical/suppliers/alternator[0] + alternator + /engines/engine[0]/rpm + 28 + 60 + + + + + + Master Bus + /systems/electrical/outputs/bus[0] + /systems/electrical/outputs/transponder + + + + + + Starter 1 Power + /systems/electrical/outputs/starter[0] + + + + Landing Light Power + /systems/electrical/outputs/landing-light + + + + Beacon Power + /systems/electrical/outputs/beacon + + + + Strobe Lights Power + /systems/electrical/outputs/strobe-lights + + + + Taxi Lights Power + /systems/electrical/outputs/taxi-lights + + + + Pitot Heat Power + /systems/electrical/outputs/pitot-heat + + + + + + + Alternator 1 + Master Bus + + /controls/engines/engine[0]/master-alt + + + + + Battery 1 + Master Bus + + /controls/engines/engine[0]/master-bat + + + + + + + Master Bus + Starter 1 Power + + /controls/engines/engine[0]/starter + off + + + + + + + Master Bus + Landing Light Power + + /controls/switches/landing-light + + + + + Master Bus + Beacon Power + + /controls/switches/flashing-beacon + + + + + Master Bus + Strobe Lights Power + + /controls/switches/strobe-lights + + + + + Master Bus + Taxi Lights Power + + /controls/switches/taxi-lights + + + + + Master Bus + Pitot Heat Power + + /controls/switches/pitot-heat + + + + diff --git a/resources/flightgear/Aircraft/Rascal/Systems/main.nas b/resources/flightgear/Aircraft/Rascal/Systems/main.nas new file mode 100644 index 0000000000000000000000000000000000000000..7aec75186ffeb8a0ff801a8513f74cc3738fef2e --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/main.nas @@ -0,0 +1,22 @@ +var dialog = gui.Dialog.new("/sim/gui/dialogs/rascal/config/dialog", + "Aircraft/Rascal/Dialogs/config.xml"); + +var last_time = 0.0; + + +var main_loop = func { + var time = getprop("/sim/time/elapsed-sec"); + var dt = time - last_time; + last_time = time; + + update_airdata( dt ); + update_ugear( dt ); + + settimer(main_loop, 0); +} + + +setlistener("/sim/signals/fdm-initialized", + func { + main_loop(); + }); diff --git a/resources/flightgear/Aircraft/Rascal/Systems/ugear.nas b/resources/flightgear/Aircraft/Rascal/Systems/ugear.nas new file mode 100644 index 0000000000000000000000000000000000000000..3a33c6cb2258896b960dd856db46175e99aa5335 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/Systems/ugear.nas @@ -0,0 +1,54 @@ +var update_ugear = func( dt ) { + var max_zoom_rate = 10*dt; + var max_pan_rate = 30*dt; + var max_tilt_rate = 45*dt; + + var ap_enable = props.globals.getNode("/ugear/settings/ap-enable"); + if ( ap_enable == nil ) { + props.globals.initNode("/ugear/settings/ap-enable", 0, "BOOL", 1); + ap_enable = props.globals.getNode("/ugear/settings/ap-enable"); + } + if ( ap_enable.getBoolValue() ) { + setprop( "/controls/flight/aileron", getprop("/ugear/act/aileron") ); + setprop( "/controls/flight/elevator", getprop("/ugear/act/elevator") ); + } + + var turret_enable = props.globals.getNode("/ugear/settings/turret-enable"); + if ( turret_enable == nil ) { + props.globals.initNode("/ugear/settings/turret-enable", 0, "BOOL", 1); + turret_enable = props.globals.getNode("/ugear/settings/turret-enable"); + } + + if ( (getprop("/sim/current-view/name") == "Camera View") + and turret_enable.getBoolValue() ) + { + var target_zoom = getprop("/ugear/act/channel6"); + var target_pan = -getprop("/ugear/act/channel7"); + if ( target_pan < -180.0 ) { target_pan += 360.0; } + if ( target_pan > 180.0 ) { target_pan -= 360.0; } + var target_tilt = -getprop("/ugear/act/channel8"); + var cur_zoom = getprop("/sim/current-view/field-of-view"); + var cur_pan = getprop("/sim/current-view/heading-offset-deg"); + var cur_tilt = getprop("/sim/current-view/pitch-offset-deg"); + var diff = 0.0; + + diff = target_zoom - cur_zoom; + if ( diff > max_zoom_rate ) { diff = max_zoom_rate; } + if ( diff < -max_zoom_rate ) { diff = -max_zoom_rate; } + setprop("/sim/current-view/field-of-view", cur_zoom + diff); + + diff = target_pan - cur_pan; + if ( diff > 180 ) { diff -= 360; } + if ( diff < -180 ) { diff += 360; } + if ( diff > max_pan_rate ) { diff = max_pan_rate; } + if ( diff < -max_pan_rate ) { diff = -max_pan_rate; } + setprop("/sim/current-view/heading-offset-deg", cur_pan + diff); + + diff = target_tilt - cur_tilt; + if ( diff > 90 ) { diff = 90; } + if ( diff < -90 ) { diff = -90; } + if ( diff > max_tilt_rate ) { diff = max_tilt_rate; } + if ( diff < -max_tilt_rate ) { diff = -max_tilt_rate; } + setprop("/sim/current-view/pitch-offset-deg", cur_tilt + diff); + } +} diff --git a/resources/flightgear/Aircraft/Rascal/initfile.xml b/resources/flightgear/Aircraft/Rascal/initfile.xml new file mode 100644 index 0000000000000000000000000000000000000000..621b522cf1ad13a82178e710a5df2421f0afca18 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal/initfile.xml @@ -0,0 +1,12 @@ + + + 110.783 + 5.03584 + -0.226825 + -2.16197 + -1.06069 + 2.95853 + 0 + 0 + -0.401227 + diff --git a/resources/flightgear/Aircraft/Rascal/thumbnail.jpg b/resources/flightgear/Aircraft/Rascal/thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdc375c3e59e4b14dc25efd65e1b2922ca1f1d4d Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal/thumbnail.jpg differ diff --git a/resources/flightgear/Aircraft/Rascal110/Dialogs/config.xml b/resources/flightgear/Aircraft/Rascal110/Dialogs/config.xml new file mode 100644 index 0000000000000000000000000000000000000000..fde85591a355cd43876b710f19a89effc9df0907 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Dialogs/config.xml @@ -0,0 +1,92 @@ + + + + rascal-config + vbox + 40 + 40 + + + hbox + + true + + + + + + true + + + + + + + + table + + + + 0 0 + left + + /ugear/settings/ap-enable + true + + dialog-apply + + + + + + 1 0 + left + + /ugear/settings/turret-enable + true + + dialog-apply + + + + + + 2 0 + left + + /sim/multiplay/generic/int[0] + true + + dialog-apply + + + + + + 3 0 + left + + /sim/multiplay/generic/int[1] + true + + dialog-apply + + + + + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Engines/18x8.xml b/resources/flightgear/Aircraft/Rascal110/Engines/18x8.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f4aae8cf672c85b47d0f2a469a496641f2b0c5e --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Engines/18x8.xml @@ -0,0 +1,51 @@ + + + + + + 0.00085 + 18.0 + 2 + 30 + 30 + + + + 0.0 0.0776 + 0.1 0.0744 + 0.2 0.0712 + 0.3 0.0655 + 0.4 0.0588 + 0.5 0.0518 + 0.6 0.0419 + 0.7 0.0318 + 0.8 0.0172 + 1.0 -0.0058 + 1.4 -0.0549 + +
+ + + + 0.0 0.0902 + 0.1 0.0893 + 0.2 0.0880 + 0.3 0.0860 + 0.4 0.0810 + 0.5 0.0742 + 0.6 0.0681 + 0.7 0.0572 + 0.8 0.0467 + 1.0 0.0167 + 1.4 -0.0803 + +
+ +
diff --git a/resources/flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml b/resources/flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml new file mode 100644 index 0000000000000000000000000000000000000000..86d43a827e807510a32e0328dc425a9f219ef9fa --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Engines/Zenoah_G-26A.xml @@ -0,0 +1,8 @@ + + + + + + + 2207.27 + diff --git a/resources/flightgear/Aircraft/Rascal110/Models/Rascal.rgb b/resources/flightgear/Aircraft/Rascal110/Models/Rascal.rgb new file mode 100755 index 0000000000000000000000000000000000000000..108c50cae5ed250e8e38950cca59942fc89732f4 Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal110/Models/Rascal.rgb differ diff --git a/resources/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac b/resources/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac new file mode 100755 index 0000000000000000000000000000000000000000..fd1fe631ec7c37a1d557f65ac2f19d4ecaa06d9c --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac @@ -0,0 +1,22017 @@ +AC3Db +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0 0 0 emis 0 0 0 spec 0.5 0.5 0.5 shi 10 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat13" rgb 0.533 0.533 0.533 amb 0.533 0.533 0.533 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat14" rgb 0.8 0.8 0.8 amb 0.8 0.8 0.8 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0.937 +MATERIAL "ac3dmat2" rgb 0.7 0.7 0.7 amb 0.7 0.7 0.7 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +OBJECT world +kids 1 +OBJECT poly +name "wavefront obj" +kids 21 +OBJECT poly +name "Fuselage" +texture "Rascal.rgb" +numvert 302 +0.8382 -0.106221 -0.06985 +0.8382 0.102273 -0.06985 +1.7399 0.0371731 -0.00635 +1.7526 -0.0467241 -0.00635 +1.74643 -0.0493484 3.74373e-16 +1.7399 0.0427099 -0.0040566 +1.7399 0.0480533 3.70211e-16 +1.7399 0.0427099 0.0040566 +1.7399 0.0371731 0.00635 +1.7526 -0.0467241 0.00635 +0.8382 0.102273 0.06985 +0.8382 -0.106221 0.06985 +0.8382 -0.127 -0.0490712 +0.8382 -0.127 0.0490712 +0.8382 0.1143 -0.0578231 +0.8382 0.1143 0.0578231 +0.5334 0.102273 0.06985 +0.5334 -0.118921 0.06985 +0.5334 0.1143 -0.0578231 +0.5334 0.1143 0.0578231 +0.5334 -0.118921 -0.06985 +0.5334 0.102273 -0.06985 +0.5334 -0.1397 0.0490712 +0.5334 -0.1397 -0.0490712 +0.4318 0.121323 0.06985 +0.4318 -9.60197e-18 0.06985 +0.4318 -0.118921 0.06985 +0.4318 0.13335 -0.0578231 +0.4318 0.13335 -0.0385487 +0.4318 0.13335 -0.0192744 +0.4318 0.13335 1.57364e-16 +0.4318 0.13335 0.0192744 +0.4318 0.13335 0.0385487 +0.4318 0.13335 0.0578231 +0.4318 -0.118921 -0.06985 +0.4318 2.66307e-18 -0.06985 +0.4318 0.121323 -0.06985 +0.4318 -0.1397 0.0490712 +0.4318 -0.1397 -0.0490712 +0.3302 -9.60197e-18 0.06985 +0.3302 -0.118921 0.06985 +0.3302 -0.1397 0.0490712 +0.3302 -0.1397 -0.0490712 +0.230215 -0.13012 0.0490712 +0.1905 -0.122237 0.0458962 +0.1905 -0.122237 -0.0458962 +0.230215 -0.13012 -0.0490712 +0.3302 -0.118921 -0.06985 +0.230215 -0.109341 -0.06985 +0.2286 2.66307e-18 -0.06985 +0.3302 2.66307e-18 -0.06985 +0.2286 -9.60197e-18 0.06985 +0.230215 -0.109341 0.06985 +0.0844119 -1.03372e-17 0.0578343 +0.0826471 -0.0478251 0.0576873 +0.1143 -0.0728837 0.060325 +0.1143 -1.01847e-17 0.060325 +0.1143 0.0114591 0.0591659 +0.0844127 0.0112162 0.0567231 +0.084415 0.0220013 0.0534322 +0.1143 0.0224779 0.055733 +0.1143 0.0326328 0.0501584 +0.0844184 0.0319411 0.0480879 +0.2286 0.0123882 -0.0685079 +0.1905 2.8562e-18 -0.066675 +0.1905 0.0120785 -0.0653939 +0.3302 0.0123882 -0.0685079 +0.3302 0.0243004 0.064533 +0.3302 0.0352787 0.0580782 +0.2286 0.0352787 0.0580782 +0.2286 0.0243004 0.064533 +0.3302 0.0449013 0.0493914 +0.2286 0.0449013 0.0493914 +0.3302 0.0527983 0.0388066 +0.2286 0.0527983 0.0388066 +0.3302 0.0123882 0.0685079 +0.2286 0.0123882 0.0685079 +0.3302 0.0586664 0.0267304 +0.2286 0.0586664 0.0267304 +0.3302 0.0622799 0.0136271 +0.2286 0.0622799 0.0136271 +0.3302 0.0635 8.60572e-17 +0.2286 0.0635 5.90995e-17 +0.3302 0.0622799 -0.0136271 +0.2286 0.0622799 -0.0136271 +0.3302 0.0586664 -0.0267304 +0.2286 0.0586664 -0.0267304 +0.3302 0.0527983 -0.0388066 +0.2286 0.0527983 -0.0388066 +0.3302 0.0449013 -0.0493914 +0.2286 0.0449013 -0.0493914 +0.3302 0.0352787 -0.0580782 +0.2286 0.0352787 -0.0580782 +0.3302 0.0243004 -0.064533 +0.2286 0.0243004 -0.064533 +0.1905 0.0236929 -0.0615997 +0.1905 0.0343967 -0.0554382 +0.1905 0.0437787 -0.0471463 +0.1905 0.0514784 -0.0370426 +0.1905 0.0571997 -0.0255154 +0.1905 0.0607229 -0.0130076 +0.1905 0.0619125 4.89904e-17 +0.1905 0.0607229 0.0130076 +0.1905 0.0571997 0.0255154 +0.1905 0.0514784 0.0370426 +0.1905 0.0437787 0.0471463 +0.1905 0.0343967 0.0554382 +0.411979 0.0123882 0.0685079 +0.392919 0.0243004 0.064533 +0.375354 0.0352787 0.0580782 +0.359958 0.0449013 0.0493914 +0.347323 0.0527983 0.0388066 +0.337934 0.0586664 0.0267304 +0.332152 0.0622799 0.0136271 +0.332152 0.0622799 -0.0136271 +0.337934 0.0586664 -0.0267304 +0.347323 0.0527983 -0.0388066 +0.359958 0.0449013 -0.0493914 +0.375354 0.0352787 -0.0580782 +0.392919 0.0243004 -0.064533 +0.411979 0.0123882 -0.0685079 +0.1905 -0.101459 -0.066675 +0.8382 0.10781 -0.0675566 +0.8382 0.112007 -0.0633599 +0.8382 0.112007 0.0633599 +0.8382 0.10781 0.0675566 +0.5334 0.112007 0.0633599 +0.5334 0.10781 0.0675566 +0.5334 0.10781 -0.0675566 +0.5334 0.112007 -0.0633599 +0.4318 0.131057 0.0633599 +0.4318 0.12686 0.0675566 +0.4318 0.12686 -0.0675566 +0.4318 0.131057 -0.0633599 +0.8382 -0.123016 -0.0586902 +0.8382 -0.11584 -0.0658657 +0.8382 -0.11584 0.0658657 +0.8382 -0.123016 0.0586902 +0.5334 -0.12854 0.0658657 +0.5334 -0.135716 0.0586902 +0.5334 -0.135716 -0.0586902 +0.5334 -0.12854 -0.0658657 +0.4318 -0.12854 0.0658657 +0.4318 -0.135716 0.0586902 +0.4318 -0.135716 -0.0586902 +0.4318 -0.12854 -0.0658657 +0.3302 -0.12854 0.0658657 +0.3302 -0.135716 0.0586902 +0.3302 -0.135716 -0.0586902 +0.3302 -0.12854 -0.0658657 +0.230215 -0.126135 0.0586902 +0.230215 -0.11896 0.0658657 +0.1905 -0.111078 0.0626907 +0.1905 -0.118253 0.0555152 +0.0826471 -0.0646196 -0.0465274 +0.0826471 -0.0574441 -0.053703 +0.1143 -0.0825027 -0.0563407 +0.1143 -0.0896782 -0.0491652 +0.230215 -0.126135 -0.0586902 +0.230215 -0.11896 -0.0658657 +0.0826471 -0.0686039 -0.0369085 +0.1143 -0.0936625 -0.0395462 +0.0826471 -0.0574441 0.053703 +0.1143 -0.0825027 0.0563407 +0.1905 -0.111078 -0.0626907 +0.1524 -0.111125 0.0427212 +0.1143 -0.0936625 0.0395462 +0.1524 -0.111125 -0.0427212 +0.1524 -0.0903462 0.0635 +0.1905 -0.101459 0.066675 +0.1905 -9.79509e-18 0.066675 +0.1524 -9.98821e-18 0.0635 +0.1905 0.0120785 0.0653939 +0.1524 0.0117688 0.0622799 +0.1524 0.0230854 0.0586664 +0.1905 0.0236929 0.0615997 +0.1524 0.0335148 0.0527983 +0.1524 3.04932e-18 -0.0635 +0.1143 3.24583e-18 -0.060325 +0.1143 0.0114591 -0.0591659 +0.1524 0.0117688 -0.0622799 +0.1143 0.0224779 -0.055733 +0.1524 0.0230854 -0.0586664 +0.1143 0.0326328 -0.0501584 +0.1524 0.0335148 -0.0527983 +0.1143 0.0415337 -0.0426562 +0.1524 0.0426562 -0.0449013 +0.1143 0.0488384 -0.0335148 +0.1524 0.0501584 -0.0352787 +0.1143 0.0542664 -0.0230854 +0.1524 0.055733 -0.0243004 +0.1143 0.0576089 -0.0117688 +0.1524 0.0591659 -0.0123882 +0.1143 0.0587375 2.87721e-17 +0.1524 0.060325 3.88813e-17 +0.1143 0.0576089 0.0117688 +0.1524 0.0591659 0.0123882 +0.1143 0.0542664 0.0230854 +0.1524 0.055733 0.0243004 +0.1143 0.0488384 0.0335148 +0.1524 0.0501584 0.0352787 +0.1143 0.0415337 0.0426562 +0.1524 0.0426562 0.0449013 +0.1524 -0.0903462 -0.0635 +0.1143 -0.0728837 -0.060325 +0.1524 -0.0999652 0.0595157 +0.1143 -0.0896782 0.0491652 +0.1524 -0.107141 0.0523402 +0.1524 -0.0999652 -0.0595157 +0.1905 -0.118253 -0.0555152 +0.1524 -0.107141 -0.0523402 +0.0826471 -0.0686039 0.0369085 +0.0844119 3.3983e-18 -0.0578343 +0.0844127 0.0112162 -0.0567231 +0.084415 0.0220013 -0.0534322 +0.0844184 0.0319411 -0.0480879 +0.0844225 0.0406534 -0.0408957 +0.0844266 0.0478035 -0.0321317 +0.0844301 0.0531165 -0.0221328 +0.0844324 0.0563883 -0.0112832 +0.0844332 0.057493 2.08475e-17 +0.0844324 0.0563883 0.0112832 +0.0844301 0.0531165 0.0221328 +0.0844266 0.0478035 0.0321317 +0.0844225 0.0406534 0.0408957 +0.0826471 -0.0478251 -0.0576873 +0.0826471 -0.0646196 0.0465274 +0.0762 -0.0552597 0.0347321 +0.0762 -0.0525299 0.0413224 +0.0762 -0.0476724 0.0461799 +0.0762 -0.0410821 0.0489097 +0.0762 -0.000404822 0.0489097 +0.0762 0.00953402 0.0479308 +0.0762 0.0187017 0.0451498 +0.0762 0.0271506 0.0406337 +0.0762 0.0345562 0.0345562 +0.0762 0.0406337 0.0271506 +0.0762 0.0451498 0.0187017 +0.0762 0.0479308 0.00953402 +0.0762 0.0488698 1.39736e-17 +0.0762 0.0479308 -0.00953402 +0.0762 0.0451498 -0.0187017 +0.0762 0.0406337 -0.0271506 +0.0762 0.0345562 -0.0345562 +0.0762 0.0271506 -0.0406337 +0.0762 0.0187017 -0.0451498 +0.0762 0.00953402 -0.0479308 +0.0762 -0.000404822 -0.0489097 +0.0762 -0.0410821 -0.0489097 +0.0762 -0.0476724 -0.0461799 +0.0762 -0.0525299 -0.0413224 +0.0762 -0.0552597 -0.0347321 +0.0806418 -7.51648e-05 0.0559901 +0.0777247 -0.00021897 0.0528198 +0.077334 -0.0427163 0.0527067 +0.0797503 -0.0452436 0.0559964 +0.080644 0.0108859 0.0549089 +0.0777231 0.0102877 0.0517819 +0.0806392 0.030996 0.0465426 +0.0777322 0.0293015 0.0439059 +0.0777267 0.0201813 0.0487807 +0.0806421 0.0213523 0.05172 +0.0798932 -0.0613656 -0.0455804 +0.0771911 -0.0562984 -0.0433988 +0.0772438 -0.0505308 -0.049308 +0.0798405 -0.0544665 -0.052338 +0.0799146 -0.0652012 -0.0364342 +0.0771697 -0.0595199 -0.0355076 +0.0772438 -0.0505308 0.049308 +0.0798405 -0.0544665 0.052338 +0.0799146 -0.0652012 0.0364342 +0.0771697 -0.0595199 0.0355076 +0.0806418 -7.51648e-05 -0.0559901 +0.0777247 -0.00021897 -0.0528198 +0.0777231 0.0102877 -0.0517819 +0.080644 0.0108859 -0.0549089 +0.0777267 0.0201813 -0.0487807 +0.0806421 0.0213523 -0.05172 +0.0777322 0.0293015 -0.0439059 +0.0806392 0.030996 -0.0465426 +0.0777386 0.037298 -0.0373433 +0.0806357 0.0394462 -0.0395769 +0.0777452 0.0438628 -0.029344 +0.0806321 0.0463789 -0.031092 +0.0777508 0.0487426 -0.0202146 +0.080629 0.0515288 -0.0214145 +0.0777545 0.0517483 -0.010306 +0.0806269 0.0546993 -0.0109163 +0.0777559 0.0527634 1.65548e-17 +0.0806262 0.0557697 1.89512e-17 +0.0777545 0.0517483 0.010306 +0.0806269 0.0546993 0.0109163 +0.0777508 0.0487426 0.0202146 +0.080629 0.0515288 0.0214145 +0.0777452 0.0438628 0.029344 +0.0806321 0.0463789 0.031092 +0.0777386 0.037298 0.0373433 +0.0806357 0.0394462 0.0395769 +0.0797503 -0.0452436 -0.0559964 +0.077334 -0.0427163 -0.0527067 +0.0771911 -0.0562984 0.0433988 +0.0798932 -0.0613656 0.0455804 +numsurf 291 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +1 0.462387 0.365802 +2 0.897735 0.289211 +3 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 8 +4 0.900887 0.229292 +3 0.903866 0.222712 +2 0.897735 0.289211 +5 0.897735 0.29428 +6 0.897735 0.299173 +7 0.897735 0.29428 +8 0.897735 0.289211 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +9 0.903866 0.222712 +8 0.897735 0.289211 +10 0.462387 0.365802 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +4 0.900887 0.229292 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 3 +14 0.462248 0.371534 +15 0.462248 0.371534 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +10 0.462387 0.365802 +16 0.315228 0.365802 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +15 0.462248 0.371534 +14 0.462248 0.371534 +18 0.315297 0.375551 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +0 0.462387 0.165574 +20 0.315228 0.153932 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +12 0.461845 0.14959 +13 0.461845 0.14959 +22 0.315228 0.142799 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 5 +17 0.315228 0.153932 +16 0.315228 0.365802 +24 0.266174 0.384097 +25 0.266174 0.267584 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 9 +19 0.315297 0.375551 +18 0.315297 0.375551 +27 0.266105 0.391907 +28 0.266105 0.391907 +29 0.266105 0.391907 +30 0.266105 0.391907 +31 0.266105 0.391907 +32 0.266105 0.391907 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 5 +21 0.315228 0.365802 +20 0.315228 0.153932 +34 0.266174 0.153932 +35 0.266174 0.267584 +36 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +22 0.315228 0.142799 +37 0.266174 0.142799 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +25 0.266174 0.267584 +39 0.217121 0.267584 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +37 0.266174 0.142799 +41 0.217121 0.142799 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +44 0.149673 0.158354 +45 0.149673 0.158354 +46 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +48 0.168848 0.168617 +49 0.168068 0.267584 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +43 0.168848 0.152081 +46 0.168848 0.152081 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +35 0.266174 0.267584 +34 0.266174 0.153932 +47 0.217121 0.153932 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +52 0.168848 0.168617 +40 0.217121 0.153932 +39 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +54 0.0980683 0.227431 +55 0.112883 0.19763 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +56 0.112883 0.267584 +57 0.112883 0.278589 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +60 0.112883 0.28917 +61 0.112883 0.298923 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +63 0.168068 0.279481 +49 0.168068 0.267584 +64 0.149673 0.267584 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +66 0.217121 0.279481 +50 0.217121 0.267584 +49 0.168068 0.267584 +63 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +67 0.217121 0.290921 +68 0.217121 0.301464 +69 0.168068 0.301464 +70 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +68 0.217121 0.301464 +71 0.217121 0.310705 +72 0.168068 0.310705 +69 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +71 0.217121 0.310705 +73 0.217121 0.318289 +74 0.168068 0.318289 +72 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +75 0.217121 0.279481 +67 0.217121 0.290921 +70 0.168068 0.290921 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +39 0.217121 0.267584 +75 0.217121 0.279481 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +73 0.217121 0.318289 +77 0.217121 0.323924 +78 0.168068 0.323924 +74 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +77 0.217121 0.323924 +79 0.217121 0.327394 +80 0.168068 0.327394 +78 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +79 0.217121 0.327394 +81 0.217744 0.327458 +82 0.168068 0.327181 +80 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +81 0.217744 0.327458 +83 0.217121 0.327394 +84 0.168068 0.327394 +82 0.168068 0.327181 +SURF 0x10 +mat 1 +refs 4 +83 0.217121 0.327394 +85 0.217121 0.323924 +86 0.168068 0.323924 +84 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +85 0.217121 0.323924 +87 0.217121 0.318289 +88 0.168068 0.318289 +86 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +87 0.217121 0.318289 +89 0.217121 0.310705 +90 0.168068 0.310705 +88 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +89 0.217121 0.310705 +91 0.217121 0.301464 +92 0.168068 0.301464 +90 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +91 0.217121 0.301464 +93 0.217121 0.290921 +94 0.168068 0.290921 +92 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +93 0.217121 0.290921 +66 0.217121 0.279481 +63 0.168068 0.279481 +94 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +94 0.168068 0.290921 +63 0.168068 0.279481 +65 0.149673 0.279183 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +92 0.168068 0.301464 +94 0.168068 0.290921 +95 0.149673 0.290337 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +90 0.168068 0.310705 +92 0.168068 0.301464 +96 0.149673 0.300617 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +88 0.168068 0.318289 +90 0.168068 0.310705 +97 0.149673 0.309627 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +86 0.168068 0.323924 +88 0.168068 0.318289 +98 0.149673 0.317021 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +84 0.168068 0.327394 +86 0.168068 0.323924 +99 0.149673 0.322516 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +82 0.168068 0.327181 +84 0.168068 0.327394 +100 0.149673 0.324171 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +80 0.168068 0.327394 +82 0.168068 0.327181 +101 0.149673 0.325037 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +78 0.168068 0.323924 +80 0.168068 0.327394 +102 0.149673 0.324171 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +74 0.168068 0.318289 +78 0.168068 0.323924 +103 0.149673 0.322516 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +72 0.168068 0.310705 +74 0.168068 0.318289 +104 0.149673 0.317021 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +69 0.168068 0.301464 +72 0.168068 0.310705 +105 0.149673 0.309627 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +58 0.0984158 0.275626 +57 0.112883 0.278589 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +39 0.217121 0.267584 +25 0.266174 0.267584 +107 0.256605 0.279481 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +107 0.256605 0.279481 +108 0.247402 0.290921 +67 0.217121 0.290921 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +108 0.247402 0.290921 +109 0.238922 0.301464 +68 0.217121 0.301464 +67 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +109 0.238922 0.301464 +110 0.231488 0.310705 +71 0.217121 0.310705 +68 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +110 0.231488 0.310705 +111 0.225388 0.318289 +73 0.217121 0.318289 +71 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +111 0.225388 0.318289 +112 0.220855 0.323924 +77 0.217121 0.323924 +73 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +112 0.220855 0.323924 +113 0.218063 0.327394 +79 0.217121 0.327394 +77 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 3 +113 0.218063 0.327394 +81 0.217744 0.327458 +79 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 3 +81 0.217744 0.327458 +114 0.218063 0.327394 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +114 0.218063 0.327394 +115 0.220855 0.323924 +85 0.217121 0.323924 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +115 0.220855 0.323924 +116 0.225388 0.318289 +87 0.217121 0.318289 +85 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 4 +116 0.225388 0.318289 +117 0.231488 0.310705 +89 0.217121 0.310705 +87 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +118 0.238922 0.301464 +91 0.217121 0.301464 +89 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +119 0.247402 0.290921 +93 0.217121 0.290921 +91 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +119 0.247402 0.290921 +120 0.256605 0.279481 +66 0.217121 0.279481 +93 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +120 0.256605 0.279481 +35 0.266174 0.267584 +50 0.217121 0.267584 +66 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +121 0.149673 0.174889 +64 0.149673 0.267584 +49 0.168068 0.267584 +SURF 0x10 +mat 1 +refs 4 +30 0.266105 0.391907 +29 0.266105 0.391907 +114 0.218063 0.327394 +81 0.217744 0.327458 +SURF 0x10 +mat 1 +refs 4 +122 0.462248 0.365301 +123 0.462248 0.369332 +6 0.897735 0.299173 +5 0.897735 0.29428 +SURF 0x10 +mat 1 +refs 4 +7 0.897735 0.29428 +6 0.897735 0.299173 +124 0.462248 0.369332 +125 0.462248 0.365301 +SURF 0x10 +mat 1 +refs 4 +125 0.462248 0.365301 +124 0.462248 0.369332 +126 0.315297 0.373349 +127 0.315228 0.371119 +SURF 0x10 +mat 1 +refs 4 +123 0.462248 0.369332 +122 0.462248 0.365301 +128 0.315228 0.371119 +129 0.315297 0.373349 +SURF 0x10 +mat 1 +refs 4 +127 0.315228 0.371119 +126 0.315297 0.373349 +130 0.266105 0.389705 +131 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +129 0.315297 0.373349 +128 0.315228 0.371119 +132 0.266174 0.389414 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +122 0.462248 0.365301 +5 0.897735 0.29428 +2 0.897735 0.289211 +SURF 0x10 +mat 1 +refs 4 +8 0.897735 0.289211 +7 0.897735 0.29428 +125 0.462248 0.365301 +10 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 3 +15 0.462248 0.371534 +124 0.462248 0.369332 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 3 +6 0.897735 0.299173 +123 0.462248 0.369332 +14 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +10 0.462387 0.365802 +125 0.462248 0.365301 +127 0.315228 0.371119 +16 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +14 0.462248 0.371534 +123 0.462248 0.369332 +129 0.315297 0.373349 +18 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +19 0.315297 0.375551 +126 0.315297 0.373349 +124 0.462248 0.369332 +15 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +21 0.315228 0.365802 +128 0.315228 0.371119 +122 0.462248 0.365301 +1 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 4 +16 0.315228 0.365802 +127 0.315228 0.371119 +131 0.266174 0.389414 +24 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +18 0.315297 0.375551 +129 0.315297 0.373349 +133 0.266105 0.389705 +27 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +33 0.266105 0.391907 +130 0.266105 0.389705 +126 0.315297 0.373349 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +132 0.266174 0.389414 +128 0.315228 0.371119 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +134 0.461845 0.154139 +135 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 3 +136 0.462387 0.156337 +137 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 4 +138 0.315228 0.148778 +139 0.315228 0.144934 +137 0.461845 0.154139 +136 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 4 +135 0.462387 0.156337 +134 0.461845 0.154139 +140 0.315228 0.144934 +141 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +142 0.266174 0.148778 +143 0.266174 0.144934 +139 0.315228 0.144934 +138 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +141 0.315228 0.148778 +140 0.315228 0.144934 +144 0.266174 0.144934 +145 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +146 0.217121 0.148778 +147 0.217121 0.144934 +143 0.266174 0.144934 +142 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +148 0.217121 0.144934 +149 0.217121 0.148778 +145 0.266174 0.148778 +144 0.266174 0.144934 +SURF 0x10 +mat 1 +refs 4 +150 0.168848 0.155252 +151 0.168848 0.160962 +152 0.149673 0.167235 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +155 0.0980683 0.219579 +156 0.112883 0.189975 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +149 0.217121 0.148778 +148 0.217121 0.144934 +158 0.168848 0.155252 +159 0.168848 0.160962 +SURF 0x10 +mat 1 +refs 4 +147 0.217121 0.144934 +146 0.217121 0.148778 +151 0.168848 0.160962 +150 0.168848 0.155252 +SURF 0x10 +mat 1 +refs 4 +3 0.903866 0.222712 +4 0.900887 0.229292 +135 0.462387 0.156337 +0 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +136 0.462387 0.156337 +4 0.900887 0.229292 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +134 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +137 0.461845 0.154139 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +17 0.315228 0.153932 +138 0.315228 0.148778 +136 0.462387 0.156337 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +135 0.462387 0.156337 +141 0.315228 0.148778 +20 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +13 0.461845 0.14959 +137 0.461845 0.154139 +139 0.315228 0.144934 +22 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +140 0.315228 0.144934 +134 0.461845 0.154139 +12 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +142 0.266174 0.148778 +138 0.315228 0.148778 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +20 0.315228 0.153932 +141 0.315228 0.148778 +145 0.266174 0.148778 +34 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +22 0.315228 0.142799 +139 0.315228 0.144934 +143 0.266174 0.144934 +37 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +144 0.266174 0.144934 +140 0.315228 0.144934 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +40 0.217121 0.153932 +146 0.217121 0.148778 +142 0.266174 0.148778 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +37 0.266174 0.142799 +143 0.266174 0.144934 +147 0.217121 0.144934 +41 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +42 0.217121 0.142799 +148 0.217121 0.144934 +144 0.266174 0.144934 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +150 0.168848 0.155252 +153 0.149673 0.161525 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +154 0.0980683 0.213721 +157 0.112883 0.184264 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +149 0.217121 0.148778 +159 0.168848 0.160962 +48 0.168848 0.168617 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +147 0.217121 0.144934 +150 0.168848 0.155252 +43 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +46 0.168848 0.152081 +158 0.168848 0.155252 +148 0.217121 0.144934 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +34 0.266174 0.153932 +145 0.266174 0.148778 +149 0.217121 0.148778 +47 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +52 0.168848 0.168617 +151 0.168848 0.160962 +146 0.217121 0.148778 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +162 0.0980683 0.219579 +163 0.112883 0.189975 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +159 0.168848 0.160962 +164 0.149673 0.167235 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +165 0.131278 0.167197 +166 0.112883 0.181094 +161 0.112883 0.181094 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +168 0.131278 0.183733 +169 0.149673 0.174889 +170 0.149673 0.267584 +171 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +171 0.131278 0.267584 +170 0.149673 0.267584 +172 0.149673 0.279183 +173 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +174 0.131278 0.289754 +175 0.149673 0.290337 +106 0.149673 0.300617 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +177 0.131278 0.267584 +178 0.112883 0.267584 +179 0.112883 0.278589 +180 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +180 0.131278 0.278886 +179 0.112883 0.278589 +181 0.112883 0.28917 +182 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +182 0.131278 0.289754 +181 0.112883 0.28917 +183 0.112883 0.298923 +184 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +184 0.131278 0.29977 +183 0.112883 0.298923 +185 0.112883 0.307471 +186 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +186 0.131278 0.308549 +185 0.112883 0.307471 +187 0.112883 0.314486 +188 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +188 0.131278 0.315753 +187 0.112883 0.314486 +189 0.112883 0.319699 +190 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +190 0.131278 0.321107 +189 0.112883 0.319699 +191 0.112675 0.320002 +192 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +192 0.131278 0.323092 +191 0.112675 0.320002 +193 0.112675 0.320946 +194 0.131278 0.322404 +SURF 0x10 +mat 1 +refs 4 +194 0.131278 0.322404 +193 0.112675 0.320946 +195 0.112675 0.320002 +196 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +196 0.131278 0.323092 +195 0.112675 0.320002 +197 0.112883 0.319699 +198 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +198 0.131278 0.321107 +197 0.112883 0.319699 +199 0.112883 0.314486 +200 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +200 0.131278 0.315753 +199 0.112883 0.314486 +201 0.112883 0.307471 +202 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +202 0.131278 0.308549 +201 0.112883 0.307471 +61 0.112883 0.298923 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +173 0.131278 0.278886 +172 0.149673 0.279183 +175 0.149673 0.290337 +174 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +203 0.131278 0.183733 +204 0.112883 0.19763 +178 0.112883 0.267584 +177 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +163 0.112883 0.189975 +206 0.112883 0.184264 +207 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +164 0.149673 0.167235 +209 0.149673 0.161525 +210 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +207 0.131278 0.170368 +206 0.112883 0.184264 +166 0.112883 0.181094 +165 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +210 0.131278 0.170368 +209 0.149673 0.161525 +45 0.149673 0.158354 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +152 0.149673 0.167235 +169 0.149673 0.174889 +168 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +156 0.112883 0.189975 +204 0.112883 0.19763 +203 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +55 0.112883 0.19763 +168 0.131278 0.183733 +171 0.131278 0.267584 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +56 0.112883 0.267584 +171 0.131278 0.267584 +173 0.131278 0.278886 +57 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +60 0.112883 0.28917 +174 0.131278 0.289754 +176 0.131278 0.29977 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +57 0.112883 0.278589 +173 0.131278 0.278886 +174 0.131278 0.289754 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +208 0.131278 0.176078 +210 0.131278 0.170368 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +157 0.112883 0.184264 +210 0.131278 0.170368 +167 0.131278 0.167197 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +205 0.131278 0.176078 +168 0.131278 0.183733 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +166 0.112883 0.181094 +211 0.0980683 0.210469 +160 0.0980683 0.210469 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +178 0.112883 0.267584 +212 0.0984157 0.266471 +213 0.0984158 0.275626 +179 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +179 0.112883 0.278589 +213 0.0984158 0.275626 +214 0.0984163 0.28443 +181 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +181 0.112883 0.28917 +214 0.0984163 0.28443 +215 0.0984169 0.292544 +183 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +183 0.112883 0.298923 +215 0.0984169 0.292544 +216 0.0984177 0.299656 +185 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +185 0.112883 0.307471 +216 0.0984177 0.299656 +217 0.0984185 0.305493 +187 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +187 0.112883 0.314486 +217 0.0984185 0.305493 +218 0.0984192 0.309829 +189 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +189 0.112883 0.319699 +218 0.0984192 0.309829 +219 0.0984197 0.3125 +191 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +191 0.112675 0.320002 +219 0.0984197 0.3125 +220 0.0984199 0.313402 +193 0.112675 0.320946 +SURF 0x10 +mat 1 +refs 4 +193 0.112675 0.320946 +220 0.0984199 0.313402 +221 0.0984197 0.3125 +195 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +195 0.112675 0.320002 +221 0.0984197 0.3125 +222 0.0984192 0.309829 +197 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +197 0.112883 0.319699 +222 0.0984192 0.309829 +223 0.0984185 0.305493 +199 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +199 0.112883 0.314486 +223 0.0984185 0.305493 +224 0.0984177 0.299656 +201 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +201 0.112883 0.307471 +224 0.0984177 0.299656 +62 0.0984169 0.292544 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +204 0.112883 0.19763 +225 0.0980683 0.227431 +212 0.0984157 0.266471 +178 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +162 0.0980683 0.219579 +226 0.0980683 0.213721 +206 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +206 0.112883 0.184264 +226 0.0980683 0.213721 +211 0.0980683 0.210469 +166 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +155 0.0980683 0.219579 +225 0.0980683 0.227431 +204 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +44 0.149673 0.158354 +165 0.131278 0.167197 +167 0.131278 0.167197 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +64 0.149673 0.267584 +177 0.131278 0.267584 +180 0.131278 0.278886 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +65 0.149673 0.279183 +180 0.131278 0.278886 +182 0.131278 0.289754 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +95 0.149673 0.290337 +182 0.131278 0.289754 +184 0.131278 0.29977 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +96 0.149673 0.300617 +184 0.131278 0.29977 +186 0.131278 0.308549 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +97 0.149673 0.309627 +186 0.131278 0.308549 +188 0.131278 0.315753 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +98 0.149673 0.317021 +188 0.131278 0.315753 +190 0.131278 0.321107 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +99 0.149673 0.322516 +190 0.131278 0.321107 +192 0.131278 0.323092 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +100 0.149673 0.324171 +192 0.131278 0.323092 +194 0.131278 0.322404 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +101 0.149673 0.325037 +194 0.131278 0.322404 +196 0.131278 0.323092 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +102 0.149673 0.324171 +196 0.131278 0.323092 +198 0.131278 0.321107 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +103 0.149673 0.322516 +198 0.131278 0.321107 +200 0.131278 0.315753 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +104 0.149673 0.317021 +200 0.131278 0.315753 +202 0.131278 0.308549 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +105 0.149673 0.309627 +202 0.131278 0.308549 +176 0.131278 0.29977 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +121 0.149673 0.174889 +203 0.131278 0.183733 +177 0.131278 0.267584 +64 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +205 0.131278 0.176078 +207 0.131278 0.170368 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +153 0.149673 0.161525 +207 0.131278 0.170368 +165 0.131278 0.167197 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +208 0.131278 0.176078 +203 0.131278 0.183733 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +169 0.149673 0.174889 +52 0.168848 0.168617 +51 0.168068 0.267584 +170 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +170 0.149673 0.267584 +51 0.168068 0.267584 +76 0.168068 0.279481 +172 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +175 0.149673 0.290337 +70 0.168068 0.290921 +69 0.168068 0.301464 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +172 0.149673 0.279183 +76 0.168068 0.279481 +70 0.168068 0.290921 +175 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +159 0.168848 0.160962 +158 0.168848 0.155252 +209 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +209 0.149673 0.161525 +158 0.168848 0.155252 +46 0.168848 0.152081 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +151 0.168848 0.160962 +52 0.168848 0.168617 +169 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +31 0.266105 0.391907 +30 0.266105 0.391907 +81 0.217744 0.327458 +113 0.218063 0.327394 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +112 0.220855 0.323924 +111 0.225388 0.318289 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +115 0.220855 0.323924 +114 0.218063 0.327394 +29 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +31 0.266105 0.391907 +113 0.218063 0.327394 +112 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +27 0.266105 0.391907 +116 0.225388 0.318289 +115 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 3 +25 0.266174 0.267584 +24 0.266174 0.384097 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +119 0.247402 0.290921 +118 0.238922 0.301464 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +130 0.266105 0.389705 +33 0.266105 0.391907 +111 0.225388 0.318289 +110 0.231488 0.310705 +SURF 0x10 +mat 1 +refs 4 +131 0.266174 0.389414 +130 0.266105 0.389705 +110 0.231488 0.310705 +109 0.238922 0.301464 +SURF 0x10 +mat 1 +refs 4 +24 0.266174 0.384097 +131 0.266174 0.389414 +109 0.238922 0.301464 +108 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +24 0.266174 0.384097 +108 0.247402 0.290921 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +116 0.225388 0.318289 +27 0.266105 0.391907 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +117 0.231488 0.310705 +133 0.266105 0.389705 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +120 0.256605 0.279481 +119 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +35 0.266174 0.267584 +120 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 25 +227 0.0967994 0.221362 +228 0.0967994 0.223591 +229 0.0967994 0.227555 +230 0.0967994 0.232935 +231 0.0967994 0.26614 +232 0.0967994 0.274253 +233 0.0967994 0.281737 +234 0.0967994 0.288634 +235 0.0967994 0.294679 +236 0.0967994 0.29964 +237 0.0967994 0.303326 +238 0.0967994 0.305596 +239 0.0967994 0.306363 +240 0.0967994 0.305596 +241 0.0967994 0.303326 +242 0.0967994 0.29964 +243 0.0967994 0.294679 +244 0.0967994 0.288634 +245 0.0967994 0.281737 +246 0.0967994 0.274253 +247 0.0967994 0.26614 +248 0.0967994 0.232935 +249 0.0967994 0.227555 +250 0.0967994 0.223591 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +252 0.0976736 0.26641 +253 0.0970995 0.266291 +254 0.0970226 0.231601 +255 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +256 0.097674 0.275357 +257 0.0970992 0.274869 +253 0.0970995 0.266291 +252 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +258 0.0976731 0.291773 +259 0.097101 0.290389 +260 0.0970999 0.282945 +261 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +261 0.0976737 0.283901 +260 0.0970999 0.282945 +257 0.0970992 0.274869 +256 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +262 0.0975263 0.216378 +263 0.0969944 0.220514 +264 0.0970048 0.225222 +265 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +266 0.0975305 0.213247 +267 0.0969902 0.217885 +263 0.0969944 0.220514 +262 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +255 0.0974981 0.229538 +254 0.0970226 0.231601 +268 0.0970048 0.225222 +269 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +270 0.0975305 0.213247 +271 0.0969902 0.217885 +267 0.0969902 0.217885 +266 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +272 0.0976736 0.26641 +273 0.0970995 0.266291 +274 0.0970992 0.274869 +275 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +275 0.097674 0.275357 +274 0.0970992 0.274869 +276 0.0970999 0.282945 +277 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +277 0.0976737 0.283901 +276 0.0970999 0.282945 +278 0.097101 0.290389 +279 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +279 0.0976731 0.291773 +278 0.097101 0.290389 +280 0.0971022 0.296917 +281 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +281 0.0976724 0.298671 +280 0.0971022 0.296917 +282 0.0971035 0.302275 +283 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +283 0.0976717 0.30433 +282 0.0971035 0.302275 +284 0.0971046 0.306259 +285 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +285 0.0976711 0.308534 +284 0.0971046 0.306259 +286 0.0971053 0.308712 +287 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +287 0.0976707 0.311121 +286 0.0971053 0.308712 +288 0.0971056 0.309541 +289 0.0976705 0.311995 +SURF 0x10 +mat 1 +refs 4 +289 0.0976705 0.311995 +288 0.0971056 0.309541 +290 0.0971053 0.308712 +291 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +291 0.0976707 0.311121 +290 0.0971053 0.308712 +292 0.0971046 0.306259 +293 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +293 0.0976711 0.308534 +292 0.0971046 0.306259 +294 0.0971035 0.302275 +295 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +295 0.0976717 0.30433 +294 0.0971035 0.302275 +296 0.0971022 0.296917 +297 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +297 0.0976724 0.298671 +296 0.0971022 0.296917 +259 0.097101 0.290389 +258 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +298 0.0974981 0.229538 +299 0.0970226 0.231601 +273 0.0970995 0.266291 +272 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +269 0.0975159 0.22201 +268 0.0970048 0.225222 +300 0.0969944 0.220514 +301 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +301 0.0975263 0.216378 +300 0.0969944 0.220514 +271 0.0969902 0.217885 +270 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +265 0.0975159 0.22201 +264 0.0970048 0.225222 +299 0.0970226 0.231601 +298 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +252 0.0976736 0.26641 +255 0.0974981 0.229538 +54 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +58 0.0984158 0.275626 +256 0.097674 0.275357 +252 0.0976736 0.26641 +53 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +62 0.0984169 0.292544 +258 0.0976731 0.291773 +261 0.0976737 0.283901 +59 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +261 0.0976737 0.283901 +256 0.097674 0.275357 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +262 0.0975263 0.216378 +265 0.0975159 0.22201 +155 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +266 0.0975305 0.213247 +262 0.0975263 0.216378 +154 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +255 0.0974981 0.229538 +269 0.0975159 0.22201 +162 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +211 0.0980683 0.210469 +270 0.0975305 0.213247 +266 0.0975305 0.213247 +160 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +212 0.0984157 0.266471 +272 0.0976736 0.26641 +275 0.097674 0.275357 +213 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +213 0.0984158 0.275626 +275 0.097674 0.275357 +277 0.0976737 0.283901 +214 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +214 0.0984163 0.28443 +277 0.0976737 0.283901 +279 0.0976731 0.291773 +215 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +215 0.0984169 0.292544 +279 0.0976731 0.291773 +281 0.0976724 0.298671 +216 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +216 0.0984177 0.299656 +281 0.0976724 0.298671 +283 0.0976717 0.30433 +217 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +217 0.0984185 0.305493 +283 0.0976717 0.30433 +285 0.0976711 0.308534 +218 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +218 0.0984192 0.309829 +285 0.0976711 0.308534 +287 0.0976707 0.311121 +219 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +219 0.0984197 0.3125 +287 0.0976707 0.311121 +289 0.0976705 0.311995 +220 0.0984199 0.313402 +SURF 0x10 +mat 1 +refs 4 +220 0.0984199 0.313402 +289 0.0976705 0.311995 +291 0.0976707 0.311121 +221 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +221 0.0984197 0.3125 +291 0.0976707 0.311121 +293 0.0976711 0.308534 +222 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +222 0.0984192 0.309829 +293 0.0976711 0.308534 +295 0.0976717 0.30433 +223 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +223 0.0984185 0.305493 +295 0.0976717 0.30433 +297 0.0976724 0.298671 +224 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +224 0.0984177 0.299656 +297 0.0976724 0.298671 +258 0.0976731 0.291773 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +225 0.0980683 0.227431 +298 0.0974981 0.229538 +272 0.0976736 0.26641 +212 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +162 0.0980683 0.219579 +269 0.0975159 0.22201 +301 0.0975263 0.216378 +226 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +226 0.0980683 0.213721 +301 0.0975263 0.216378 +270 0.0975305 0.213247 +211 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +155 0.0980683 0.219579 +265 0.0975159 0.22201 +298 0.0974981 0.229538 +225 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +227 0.0967994 0.221362 +271 0.0969902 0.217885 +300 0.0969944 0.220514 +228 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +228 0.0967994 0.223591 +300 0.0969944 0.220514 +268 0.0970048 0.225222 +229 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +229 0.0967994 0.227555 +268 0.0970048 0.225222 +254 0.0970226 0.231601 +230 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +230 0.0967994 0.232935 +254 0.0970226 0.231601 +253 0.0970995 0.266291 +231 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +231 0.0967994 0.26614 +253 0.0970995 0.266291 +257 0.0970992 0.274869 +232 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +232 0.0967994 0.274253 +257 0.0970992 0.274869 +260 0.0970999 0.282945 +233 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +233 0.0967994 0.281737 +260 0.0970999 0.282945 +259 0.097101 0.290389 +234 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +234 0.0967994 0.288634 +259 0.097101 0.290389 +296 0.0971022 0.296917 +235 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +235 0.0967994 0.294679 +296 0.0971022 0.296917 +294 0.0971035 0.302275 +236 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +236 0.0967994 0.29964 +294 0.0971035 0.302275 +292 0.0971046 0.306259 +237 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +237 0.0967994 0.303326 +292 0.0971046 0.306259 +290 0.0971053 0.308712 +238 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +238 0.0967994 0.305596 +290 0.0971053 0.308712 +288 0.0971056 0.309541 +239 0.0967994 0.306363 +SURF 0x10 +mat 1 +refs 4 +239 0.0967994 0.306363 +288 0.0971056 0.309541 +286 0.0971053 0.308712 +240 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +240 0.0967994 0.305596 +286 0.0971053 0.308712 +284 0.0971046 0.306259 +241 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +241 0.0967994 0.303326 +284 0.0971046 0.306259 +282 0.0971035 0.302275 +242 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +242 0.0967994 0.29964 +282 0.0971035 0.302275 +280 0.0971022 0.296917 +243 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +243 0.0967994 0.294679 +280 0.0971022 0.296917 +278 0.097101 0.290389 +244 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +244 0.0967994 0.288634 +278 0.097101 0.290389 +276 0.0970999 0.282945 +245 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +245 0.0967994 0.281737 +276 0.0970999 0.282945 +274 0.0970992 0.274869 +246 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +246 0.0967994 0.274253 +274 0.0970992 0.274869 +273 0.0970995 0.266291 +247 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +247 0.0967994 0.26614 +273 0.0970995 0.266291 +299 0.0970226 0.231601 +248 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +248 0.0967994 0.232935 +299 0.0970226 0.231601 +264 0.0970048 0.225222 +249 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +249 0.0967994 0.227555 +264 0.0970048 0.225222 +263 0.0969944 0.220514 +250 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +250 0.0967994 0.223591 +263 0.0969944 0.220514 +267 0.0969902 0.217885 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +251 0.0967994 0.221362 +267 0.0969902 0.217885 +271 0.0969902 0.217885 +227 0.0967994 0.221362 +kids 0 +OBJECT poly +name "Spinner" +numvert 161 +0.0762 0.0498239 0.00991059 +0.0762 0.0469331 0.0194403 +0.0762 0.0422387 0.028223 +0.0762 0.035921 0.035921 +0.0762 0.028223 0.0422387 +0.0762 0.0194403 0.0469331 +0.0762 0.00991059 0.0498239 +0.0762 -9.3315e-18 0.0508 +0.0762 -0.00991059 0.0498239 +0.0762 -0.0194403 0.0469331 +0.0762 -0.028223 0.0422387 +0.0762 -0.035921 0.035921 +0.0762 -0.0422387 0.028223 +0.0762 -0.0469331 0.0194403 +0.0762 -0.0498239 0.00991059 +0.0762 -0.0508 1.2442e-17 +0.0762 -0.0498239 -0.00991059 +0.0762 -0.0469331 -0.0194403 +0.0762 -0.0422387 -0.028223 +0.0762 -0.035921 -0.035921 +0.0762 -0.028223 -0.0422387 +0.0762 -0.0194403 -0.0469331 +0.0762 -0.00991059 -0.0498239 +0.0762 3.1105e-18 -0.0508 +0.0762 0.00991059 -0.0498239 +0.0762 0.0194403 -0.0469331 +0.0762 0.028223 -0.0422387 +0.0762 0.035921 -0.035921 +0.0762 0.0422387 -0.028223 +0.0762 0.0469331 -0.0194403 +0.0762 0.0498239 -0.00991059 +0.0762 0.0508 1.8663e-17 +0.0450424 0.0397968 1.31541e-17 +0.0450424 0.0390321 -0.00776398 +0.0259924 0.0288237 -0.0057334 +0.0259924 0.0293884 6.40787e-18 +0.0450424 0.0367675 -0.0152296 +0.0259924 0.0271514 -0.0112465 +0.0450424 0.0330899 -0.0221099 +0.0259924 0.0244356 -0.0163273 +0.0450424 0.0281406 -0.0281406 +0.0259924 0.0207808 -0.0207808 +0.0450424 0.0221099 -0.0330899 +0.0259924 0.0163273 -0.0244356 +0.0450424 0.0152296 -0.0367675 +0.0259924 0.0112465 -0.0271514 +0.0450424 0.00776398 -0.0390321 +0.0259924 0.0057334 -0.0288237 +0.0450424 2.43677e-18 -0.0397968 +0.0259924 1.79946e-18 -0.0293884 +0.0450424 -0.00776398 -0.0390321 +0.0259924 -0.0057334 -0.0288237 +0.0450424 -0.0152296 -0.0367675 +0.0259924 -0.0112465 -0.0271514 +0.0450424 -0.0221099 -0.0330899 +0.0259924 -0.0163273 -0.0244356 +0.0450424 -0.0281406 -0.0281406 +0.0259924 -0.0207808 -0.0207808 +0.0450424 -0.0330899 -0.0221099 +0.0259924 -0.0244356 -0.0163273 +0.0450424 -0.0367675 -0.0152296 +0.0259924 -0.0271514 -0.0112465 +0.0450424 -0.0390321 -0.00776398 +0.0259924 -0.0288237 -0.0057334 +0.0450424 -0.0397968 8.2806e-18 +0.0259924 -0.0293884 2.80895e-18 +0.0450424 -0.0390321 0.00776398 +0.0259924 -0.0288237 0.0057334 +0.0450424 -0.0367675 0.0152296 +0.0259924 -0.0271514 0.0112465 +0.0450424 -0.0330899 0.0221099 +0.0259924 -0.0244356 0.0163273 +0.0450424 -0.0281406 0.0281406 +0.0259924 -0.0207808 0.0207808 +0.0450424 -0.0221099 0.0330899 +0.0259924 -0.0163273 0.0244356 +0.0450424 -0.0152296 0.0367675 +0.0259924 -0.0112465 0.0271514 +0.0450424 -0.00776398 0.0390321 +0.0259924 -0.0057334 0.0288237 +0.0450424 -7.31032e-18 0.0397968 +0.0259924 -5.39839e-18 0.0293884 +0.0450424 0.00776398 0.0390321 +0.0259924 0.0057334 0.0288237 +0.0450424 0.0152296 0.0367675 +0.0259924 0.0112465 0.0271514 +0.0450424 0.0221099 0.0330899 +0.0259924 0.0163273 0.0244356 +0.0450424 0.0281406 0.0281406 +0.0259924 0.0207808 0.0207808 +0.0450424 0.0330899 0.0221099 +0.0259924 0.0244356 0.0163273 +0.0450424 0.0367675 0.0152296 +0.0259924 0.0271514 0.0112465 +0.0450424 0.0390321 0.00776398 +0.0259924 0.0288237 0.0057334 +0.0132924 0.0216178 -0.00430005 +0.0132924 0.0220413 2.68138e-18 +0.0132924 0.0203635 -0.00843485 +0.0132924 0.0183267 -0.0122455 +0.0132924 0.0155856 -0.0155856 +0.0132924 0.0122455 -0.0183267 +0.0132924 0.00843485 -0.0203635 +0.0132924 0.00430005 -0.0216178 +0.0132924 1.3496e-18 -0.0220413 +0.0132924 -0.00430005 -0.0216178 +0.0132924 -0.00843485 -0.0203635 +0.0132924 -0.0122455 -0.0183267 +0.0132924 -0.0155856 -0.0155856 +0.0132924 -0.0183267 -0.0122455 +0.0132924 -0.0203635 -0.00843485 +0.0132924 -0.0216178 -0.00430005 +0.0132924 -0.0220413 -1.78104e-20 +0.0132924 -0.0216178 0.00430005 +0.0132924 -0.0203635 0.00843485 +0.0132924 -0.0183267 0.0122455 +0.0132924 -0.0155856 0.0155856 +0.0132924 -0.0122455 0.0183267 +0.0132924 -0.00843485 0.0203635 +0.0132924 -0.00430005 0.0216178 +0.0132924 -4.04879e-18 0.0220413 +0.0132924 0.00430005 0.0216178 +0.0132924 0.00843485 0.0203635 +0.0132924 0.0122455 0.0183267 +0.0132924 0.0155856 0.0155856 +0.0132924 0.0183267 0.0122455 +0.0132924 0.0203635 0.00843485 +0.0132924 0.0216178 0.00430005 +0.003175 0.0106499 -0.00211839 +0.003175 0.0108585 3.31121e-18 +0.003175 0.010032 -0.00415538 +0.003175 0.00902854 -0.00603268 +0.003175 0.00767814 -0.00767814 +0.003175 0.00603268 -0.00902854 +0.003175 0.00415538 -0.010032 +0.003175 0.00211839 -0.0106499 +0.003175 6.64871e-19 -0.0108585 +0.003175 -0.00211839 -0.0106499 +0.003175 -0.00415538 -0.010032 +0.003175 -0.00603268 -0.00902854 +0.003175 -0.00767814 -0.00767814 +0.003175 -0.00902854 -0.00603268 +0.003175 -0.010032 -0.00415538 +0.003175 -0.0106499 -0.00211839 +0.003175 -0.0108585 1.98147e-18 +0.003175 -0.0106499 0.00211839 +0.003175 -0.010032 0.00415538 +0.003175 -0.00902854 0.00603268 +0.003175 -0.00767814 0.00767814 +0.003175 -0.00603268 0.00902854 +0.003175 -0.00415538 0.010032 +0.003175 -0.00211839 0.0106499 +0.003175 -1.99461e-18 0.0108585 +0.003175 0.00211839 0.0106499 +0.003175 0.00415538 0.010032 +0.003175 0.00603268 0.00902854 +0.003175 0.00767814 0.00767814 +0.003175 0.00902854 0.00603268 +0.003175 0.010032 0.00415538 +0.003175 0.0106499 0.00211839 +0 0 6.16106e-18 +numsurf 161 +SURF 0x10 +mat 4 +refs 32 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +18 0 0 +19 0 0 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +24 0 0 +25 0 0 +26 0 0 +27 0 0 +28 0 0 +29 0 0 +30 0 0 +31 0 0 +SURF 0x10 +mat 4 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x10 +mat 4 +refs 4 +33 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x10 +mat 4 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x10 +mat 4 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x10 +mat 4 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x10 +mat 4 +refs 4 +42 0 0 +44 0 0 +45 0 0 +43 0 0 +SURF 0x10 +mat 4 +refs 4 +44 0 0 +46 0 0 +47 0 0 +45 0 0 +SURF 0x10 +mat 4 +refs 4 +46 0 0 +48 0 0 +49 0 0 +47 0 0 +SURF 0x10 +mat 4 +refs 4 +48 0 0 +50 0 0 +51 0 0 +49 0 0 +SURF 0x10 +mat 4 +refs 4 +50 0 0 +52 0 0 +53 0 0 +51 0 0 +SURF 0x10 +mat 4 +refs 4 +52 0 0 +54 0 0 +55 0 0 +53 0 0 +SURF 0x10 +mat 4 +refs 4 +54 0 0 +56 0 0 +57 0 0 +55 0 0 +SURF 0x10 +mat 4 +refs 4 +56 0 0 +58 0 0 +59 0 0 +57 0 0 +SURF 0x10 +mat 4 +refs 4 +58 0 0 +60 0 0 +61 0 0 +59 0 0 +SURF 0x10 +mat 4 +refs 4 +60 0 0 +62 0 0 +63 0 0 +61 0 0 +SURF 0x10 +mat 4 +refs 4 +62 0 0 +64 0 0 +65 0 0 +63 0 0 +SURF 0x10 +mat 4 +refs 4 +64 0 0 +66 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 4 +refs 4 +66 0 0 +68 0 0 +69 0 0 +67 0 0 +SURF 0x10 +mat 4 +refs 4 +68 0 0 +70 0 0 +71 0 0 +69 0 0 +SURF 0x10 +mat 4 +refs 4 +70 0 0 +72 0 0 +73 0 0 +71 0 0 +SURF 0x10 +mat 4 +refs 4 +72 0 0 +74 0 0 +75 0 0 +73 0 0 +SURF 0x10 +mat 4 +refs 4 +74 0 0 +76 0 0 +77 0 0 +75 0 0 +SURF 0x10 +mat 4 +refs 4 +76 0 0 +78 0 0 +79 0 0 +77 0 0 +SURF 0x10 +mat 4 +refs 4 +78 0 0 +80 0 0 +81 0 0 +79 0 0 +SURF 0x10 +mat 4 +refs 4 +80 0 0 +82 0 0 +83 0 0 +81 0 0 +SURF 0x10 +mat 4 +refs 4 +82 0 0 +84 0 0 +85 0 0 +83 0 0 +SURF 0x10 +mat 4 +refs 4 +84 0 0 +86 0 0 +87 0 0 +85 0 0 +SURF 0x10 +mat 4 +refs 4 +86 0 0 +88 0 0 +89 0 0 +87 0 0 +SURF 0x10 +mat 4 +refs 4 +88 0 0 +90 0 0 +91 0 0 +89 0 0 +SURF 0x10 +mat 4 +refs 4 +90 0 0 +92 0 0 +93 0 0 +91 0 0 +SURF 0x10 +mat 4 +refs 4 +92 0 0 +94 0 0 +95 0 0 +93 0 0 +SURF 0x10 +mat 4 +refs 4 +94 0 0 +32 0 0 +35 0 0 +95 0 0 +SURF 0x10 +mat 4 +refs 4 +35 0 0 +34 0 0 +96 0 0 +97 0 0 +SURF 0x10 +mat 4 +refs 4 +34 0 0 +37 0 0 +98 0 0 +96 0 0 +SURF 0x10 +mat 4 +refs 4 +37 0 0 +39 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 4 +refs 4 +39 0 0 +41 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 4 +refs 4 +41 0 0 +43 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 4 +refs 4 +43 0 0 +45 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 4 +refs 4 +45 0 0 +47 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 4 +refs 4 +47 0 0 +49 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 4 +refs 4 +49 0 0 +51 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 4 +refs 4 +51 0 0 +53 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 4 +refs 4 +53 0 0 +55 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 4 +refs 4 +55 0 0 +57 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 4 +refs 4 +57 0 0 +59 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 4 +refs 4 +59 0 0 +61 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 4 +refs 4 +61 0 0 +63 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 4 +refs 4 +63 0 0 +65 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 4 +refs 4 +65 0 0 +67 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 4 +refs 4 +67 0 0 +69 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 4 +refs 4 +69 0 0 +71 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 4 +refs 4 +71 0 0 +73 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 4 +refs 4 +73 0 0 +75 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 4 +refs 4 +75 0 0 +77 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 4 +refs 4 +77 0 0 +79 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 4 +refs 4 +79 0 0 +81 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 4 +refs 4 +81 0 0 +83 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 4 +refs 4 +83 0 0 +85 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 4 +refs 4 +85 0 0 +87 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 4 +refs 4 +87 0 0 +89 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 4 +refs 4 +89 0 0 +91 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 4 +refs 4 +91 0 0 +93 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 4 +refs 4 +93 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 4 +refs 4 +95 0 0 +35 0 0 +97 0 0 +127 0 0 +SURF 0x10 +mat 4 +refs 4 +97 0 0 +96 0 0 +128 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 4 +96 0 0 +98 0 0 +130 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 4 +98 0 0 +99 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 4 +127 0 0 +97 0 0 +129 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 3 +128 0 0 +160 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 3 +130 0 0 +160 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 3 +131 0 0 +160 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 3 +132 0 0 +160 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 3 +133 0 0 +160 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 3 +134 0 0 +160 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 3 +135 0 0 +160 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 3 +136 0 0 +160 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 3 +137 0 0 +160 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 3 +138 0 0 +160 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 3 +139 0 0 +160 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 3 +140 0 0 +160 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 3 +141 0 0 +160 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 3 +142 0 0 +160 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 3 +143 0 0 +160 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 3 +144 0 0 +160 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 3 +145 0 0 +160 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 3 +146 0 0 +160 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 3 +147 0 0 +160 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 3 +148 0 0 +160 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 3 +149 0 0 +160 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 3 +150 0 0 +160 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 3 +151 0 0 +160 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 3 +152 0 0 +160 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 3 +153 0 0 +160 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 3 +154 0 0 +160 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 3 +155 0 0 +160 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 3 +156 0 0 +160 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 3 +157 0 0 +160 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 3 +158 0 0 +160 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 3 +159 0 0 +160 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 3 +129 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +30 0 0 +33 0 0 +32 0 0 +SURF 0x10 +mat 4 +refs 4 +30 0 0 +29 0 0 +36 0 0 +33 0 0 +SURF 0x10 +mat 4 +refs 4 +29 0 0 +28 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 4 +refs 4 +28 0 0 +27 0 0 +40 0 0 +38 0 0 +SURF 0x10 +mat 4 +refs 4 +27 0 0 +26 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 4 +refs 4 +26 0 0 +25 0 0 +44 0 0 +42 0 0 +SURF 0x10 +mat 4 +refs 4 +25 0 0 +24 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 4 +refs 4 +24 0 0 +23 0 0 +48 0 0 +46 0 0 +SURF 0x10 +mat 4 +refs 4 +23 0 0 +22 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 4 +refs 4 +22 0 0 +21 0 0 +52 0 0 +50 0 0 +SURF 0x10 +mat 4 +refs 4 +21 0 0 +20 0 0 +54 0 0 +52 0 0 +SURF 0x10 +mat 4 +refs 4 +20 0 0 +19 0 0 +56 0 0 +54 0 0 +SURF 0x10 +mat 4 +refs 4 +19 0 0 +18 0 0 +58 0 0 +56 0 0 +SURF 0x10 +mat 4 +refs 4 +18 0 0 +17 0 0 +60 0 0 +58 0 0 +SURF 0x10 +mat 4 +refs 4 +17 0 0 +16 0 0 +62 0 0 +60 0 0 +SURF 0x10 +mat 4 +refs 4 +16 0 0 +15 0 0 +64 0 0 +62 0 0 +SURF 0x10 +mat 4 +refs 4 +15 0 0 +14 0 0 +66 0 0 +64 0 0 +SURF 0x10 +mat 4 +refs 4 +14 0 0 +13 0 0 +68 0 0 +66 0 0 +SURF 0x10 +mat 4 +refs 4 +13 0 0 +12 0 0 +70 0 0 +68 0 0 +SURF 0x10 +mat 4 +refs 4 +12 0 0 +11 0 0 +72 0 0 +70 0 0 +SURF 0x10 +mat 4 +refs 4 +11 0 0 +10 0 0 +74 0 0 +72 0 0 +SURF 0x10 +mat 4 +refs 4 +10 0 0 +9 0 0 +76 0 0 +74 0 0 +SURF 0x10 +mat 4 +refs 4 +9 0 0 +8 0 0 +78 0 0 +76 0 0 +SURF 0x10 +mat 4 +refs 4 +8 0 0 +7 0 0 +80 0 0 +78 0 0 +SURF 0x10 +mat 4 +refs 4 +7 0 0 +6 0 0 +82 0 0 +80 0 0 +SURF 0x10 +mat 4 +refs 4 +6 0 0 +5 0 0 +84 0 0 +82 0 0 +SURF 0x10 +mat 4 +refs 4 +5 0 0 +4 0 0 +86 0 0 +84 0 0 +SURF 0x10 +mat 4 +refs 4 +4 0 0 +3 0 0 +88 0 0 +86 0 0 +SURF 0x10 +mat 4 +refs 4 +3 0 0 +2 0 0 +90 0 0 +88 0 0 +SURF 0x10 +mat 4 +refs 4 +2 0 0 +1 0 0 +92 0 0 +90 0 0 +SURF 0x10 +mat 4 +refs 4 +1 0 0 +0 0 0 +94 0 0 +92 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +32 0 0 +94 0 0 +0 0 0 +kids 0 +OBJECT poly +name "UC_Main_Center" +numvert 28 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 22 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +4 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 3 +7 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +10 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +12 0 0 +13 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +0 0 0 +3 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 3 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +24 0 0 +25 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +26 0 0 +27 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +14 0 0 +17 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +12 0 0 +27 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +8 0 0 +22 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +20 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +1 0 0 +16 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +17 0 0 +16 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +10 0 0 +25 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +7 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +4 0 0 +19 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_Main_Left" +numvert 22 +0.489939 -0.321589 0.261464 +0.48895 -0.322594 0.26061 +0.48895 -0.325422 0.258204 +0.489939 -0.326427 0.25735 +0.526061 -0.326427 0.25735 +0.52705 -0.325422 0.258204 +0.52705 -0.322594 0.26061 +0.526061 -0.321589 0.261464 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +18 0 0 +19 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +10 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +14 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +17 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +21 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +11 0 0 +0 0 0 +7 0 0 +kids 0 +OBJECT poly +name "UC_Main_Right" +numvert 22 +0.526061 -0.321589 -0.261464 +0.52705 -0.322594 -0.26061 +0.52705 -0.325422 -0.258204 +0.526061 -0.326427 -0.25735 +0.489939 -0.326427 -0.25735 +0.48895 -0.325422 -0.258204 +0.48895 -0.322594 -0.26061 +0.489939 -0.321589 -0.261464 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +5 0 0 +12 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +5 0 0 +4 0 0 +14 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +3 0 0 +17 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +2 0 0 +15 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +1 0 0 +18 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +0 0 0 +20 0 0 +18 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +8 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_L_Tyre" +numvert 194 +0.508 -0.33655 0.26035 +0.511763 -0.355466 0.262865 +0.508 -0.355836 0.262865 +0.51538 -0.354368 0.262865 +0.518715 -0.352586 0.262865 +0.521637 -0.350187 0.262865 +0.524036 -0.347265 0.262865 +0.525818 -0.34393 0.262865 +0.526916 -0.340313 0.262865 +0.527286 -0.33655 0.262865 +0.526916 -0.332787 0.262865 +0.525818 -0.32917 0.262865 +0.524036 -0.325835 0.262865 +0.521637 -0.322913 0.262865 +0.518715 -0.320514 0.262865 +0.51538 -0.318732 0.262865 +0.511763 -0.317634 0.262865 +0.508 -0.317264 0.262865 +0.504237 -0.317634 0.262865 +0.50062 -0.318732 0.262865 +0.497285 -0.320514 0.262865 +0.494363 -0.322913 0.262865 +0.491964 -0.325835 0.262865 +0.490182 -0.32917 0.262865 +0.489084 -0.332787 0.262865 +0.488714 -0.33655 0.262865 +0.489084 -0.340313 0.262865 +0.490182 -0.34393 0.262865 +0.491964 -0.347265 0.262865 +0.494363 -0.350187 0.262865 +0.497285 -0.352586 0.262865 +0.50062 -0.354368 0.262865 +0.504237 -0.355466 0.262865 +0.51478 -0.370635 0.263563 +0.508 -0.371302 0.263563 +0.521299 -0.368657 0.263563 +0.527307 -0.365446 0.263563 +0.532574 -0.361124 0.263563 +0.536896 -0.355857 0.263563 +0.540107 -0.349849 0.263563 +0.542085 -0.34333 0.263563 +0.542752 -0.33655 0.263563 +0.542085 -0.32977 0.263563 +0.540107 -0.323251 0.263563 +0.536896 -0.317243 0.263563 +0.532574 -0.311976 0.263563 +0.527307 -0.307654 0.263563 +0.521299 -0.304443 0.263563 +0.51478 -0.302465 0.263563 +0.508 -0.301798 0.263563 +0.50122 -0.302465 0.263563 +0.494701 -0.304443 0.263563 +0.488693 -0.307654 0.263563 +0.483426 -0.311976 0.263563 +0.479104 -0.317243 0.263563 +0.475893 -0.323251 0.263563 +0.473915 -0.32977 0.263563 +0.473248 -0.33655 0.263563 +0.473915 -0.34333 0.263563 +0.475893 -0.349849 0.263563 +0.479104 -0.355857 0.263563 +0.483426 -0.361124 0.263563 +0.488693 -0.365446 0.263563 +0.494701 -0.368657 0.263563 +0.50122 -0.370635 0.263563 +0.516454 -0.379053 0.269509 +0.508 -0.379886 0.269509 +0.524584 -0.376587 0.269509 +0.532076 -0.372582 0.269509 +0.538643 -0.367193 0.269509 +0.544032 -0.360626 0.269509 +0.548037 -0.353134 0.269509 +0.550503 -0.345004 0.269509 +0.551336 -0.33655 0.269509 +0.550503 -0.328096 0.269509 +0.548037 -0.319966 0.269509 +0.544032 -0.312474 0.269509 +0.538643 -0.305907 0.269509 +0.532076 -0.300518 0.269509 +0.524584 -0.296513 0.269509 +0.516454 -0.294047 0.269509 +0.508 -0.293214 0.269509 +0.499546 -0.294047 0.269509 +0.491416 -0.296513 0.269509 +0.483924 -0.300518 0.269509 +0.477357 -0.305907 0.269509 +0.471968 -0.312474 0.269509 +0.467963 -0.319966 0.269509 +0.465497 -0.328096 0.269509 +0.464664 -0.33655 0.269509 +0.465497 -0.345004 0.269509 +0.467963 -0.353134 0.269509 +0.471968 -0.360626 0.269509 +0.477357 -0.367193 0.269509 +0.483924 -0.372582 0.269509 +0.491416 -0.376587 0.269509 +0.499546 -0.379053 0.269509 +0.516454 -0.379053 0.289291 +0.508 -0.379886 0.289291 +0.524584 -0.376587 0.289291 +0.532076 -0.372582 0.289291 +0.538643 -0.367193 0.289291 +0.544032 -0.360626 0.289291 +0.548037 -0.353134 0.289291 +0.550503 -0.345004 0.289291 +0.551336 -0.33655 0.289291 +0.550503 -0.328096 0.289291 +0.548037 -0.319966 0.289291 +0.544032 -0.312474 0.289291 +0.538643 -0.305907 0.289291 +0.532076 -0.300518 0.289291 +0.524584 -0.296513 0.289291 +0.516454 -0.294047 0.289291 +0.508 -0.293214 0.289291 +0.499546 -0.294047 0.289291 +0.491416 -0.296513 0.289291 +0.483924 -0.300518 0.289291 +0.477357 -0.305907 0.289291 +0.471968 -0.312474 0.289291 +0.467963 -0.319966 0.289291 +0.465497 -0.328096 0.289291 +0.464664 -0.33655 0.289291 +0.465497 -0.345004 0.289291 +0.467963 -0.353134 0.289291 +0.471968 -0.360626 0.289291 +0.477357 -0.367193 0.289291 +0.483924 -0.372582 0.289291 +0.491416 -0.376587 0.289291 +0.499546 -0.379053 0.289291 +0.51478 -0.370635 0.295237 +0.508 -0.371302 0.295237 +0.521299 -0.368657 0.295237 +0.527307 -0.365446 0.295237 +0.532574 -0.361124 0.295237 +0.536896 -0.355857 0.295237 +0.540107 -0.349849 0.295237 +0.542085 -0.34333 0.295237 +0.542752 -0.33655 0.295237 +0.542085 -0.32977 0.295237 +0.540107 -0.323251 0.295237 +0.536896 -0.317243 0.295237 +0.532574 -0.311976 0.295237 +0.527307 -0.307654 0.295237 +0.521299 -0.304443 0.295237 +0.51478 -0.302465 0.295237 +0.508 -0.301798 0.295237 +0.50122 -0.302465 0.295237 +0.494701 -0.304443 0.295237 +0.488693 -0.307654 0.295237 +0.483426 -0.311976 0.295237 +0.479104 -0.317243 0.295237 +0.475893 -0.323251 0.295237 +0.473915 -0.32977 0.295237 +0.473248 -0.33655 0.295237 +0.473915 -0.34333 0.295237 +0.475893 -0.349849 0.295237 +0.479104 -0.355857 0.295237 +0.483426 -0.361124 0.295237 +0.488693 -0.365446 0.295237 +0.494701 -0.368657 0.295237 +0.50122 -0.370635 0.295237 +0.511763 -0.355466 0.295935 +0.508 -0.355836 0.295935 +0.51538 -0.354368 0.295935 +0.518715 -0.352586 0.295935 +0.521637 -0.350187 0.295935 +0.524036 -0.347265 0.295935 +0.525818 -0.34393 0.295935 +0.526916 -0.340313 0.295935 +0.527286 -0.33655 0.295935 +0.526916 -0.332787 0.295935 +0.525818 -0.32917 0.295935 +0.524036 -0.325835 0.295935 +0.521637 -0.322913 0.295935 +0.518715 -0.320514 0.295935 +0.51538 -0.318732 0.295935 +0.511763 -0.317634 0.295935 +0.508 -0.317264 0.295935 +0.504237 -0.317634 0.295935 +0.50062 -0.318732 0.295935 +0.497285 -0.320514 0.295935 +0.494363 -0.322913 0.295935 +0.491964 -0.325835 0.295935 +0.490182 -0.32917 0.295935 +0.489084 -0.332787 0.295935 +0.488714 -0.33655 0.295935 +0.489084 -0.340313 0.295935 +0.490182 -0.34393 0.295935 +0.491964 -0.347265 0.295935 +0.494363 -0.350187 0.295935 +0.497285 -0.352586 0.295935 +0.50062 -0.354368 0.295935 +0.504237 -0.355466 0.295935 +0.508 -0.33655 0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "UC_L_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.343362 0.3048 +0.5334 -0.343362 0.3048 +0.5334 -0.319928 0.3048 +0.45085 -0.3175 0.3048 +0.558993 -0.343365 0.303107 +0.59055 -0.340187 0.29845 +0.59055 -0.324379 0.29845 +0.559694 -0.322015 0.303107 +0.437731 -0.334414 0.296121 +0.436824 -0.332298 0.298207 +0.416759 -0.304471 0.290148 +0.413555 -0.304734 0.285426 +0.45085 -0.286766 0.301364 +0.45085 -0.289186 0.303784 +0.5334 -0.294042 0.303784 +0.5334 -0.291621 0.301364 +0.607931 -0.312778 0.29036 +0.606244 -0.314361 0.291901 +0.61595 -0.327165 0.289154 +0.61595 -0.324744 0.288185 +0.45085 -0.345814 0.303784 +0.45085 -0.348234 0.301364 +0.5334 -0.348234 0.301364 +0.5334 -0.345814 0.303784 +0.560554 -0.295796 0.299899 +0.560474 -0.298215 0.302159 +0.59055 -0.30612 0.297688 +0.59055 -0.303699 0.295873 +0.558833 -0.348235 0.299899 +0.558913 -0.345816 0.302159 +0.59055 -0.345059 0.295873 +0.59055 -0.342639 0.297688 +0.44302 -0.339609 0.300683 +0.444012 -0.341594 0.298781 +0.420557 -0.295133 0.290547 +0.419499 -0.292852 0.287691 +0.61595 -0.342519 0.288185 +0.61595 -0.340099 0.289154 +0.43815 -0.335392 0.29372 +0.41275 -0.3048 0.282802 +0.45085 -0.28575 0.298912 +0.5334 -0.290606 0.298912 +0.608585 -0.31202 0.289156 +0.61595 -0.323729 0.287205 +0.5334 -0.296494 0.3048 +0.45085 -0.291638 0.3048 +0.560587 -0.294781 0.297611 +0.59055 -0.302683 0.294034 +0.5588 -0.34925 0.297611 +0.5334 -0.34925 0.298912 +0.59055 -0.308571 0.29845 +0.560394 -0.300666 0.303107 +0.45085 -0.34925 0.298912 +0.4445 -0.342569 0.29641 +0.421555 -0.297286 0.291804 +0.441898 -0.337364 0.301399 +0.4191 -0.291991 0.285178 +0.435842 -0.330006 0.299031 +0.59055 -0.346075 0.294034 +0.604751 -0.316874 0.293248 +0.61595 -0.343535 0.287205 +0.419029 -0.304289 0.292139 +0.615292 -0.337806 0.28956 +0.615596 -0.329572 0.28956 +0.618726 -0.335751 0.286648 +0.615444 -0.333689 0.28956 +0.45085 -0.3175 0.254 +0.5334 -0.319928 0.254 +0.5334 -0.343362 0.254 +0.45085 -0.343362 0.254 +0.559694 -0.322015 0.255693 +0.59055 -0.324379 0.26035 +0.59055 -0.340187 0.26035 +0.558993 -0.343365 0.255693 +0.413555 -0.304734 0.273374 +0.416759 -0.304471 0.268652 +0.436824 -0.332298 0.260593 +0.437731 -0.334414 0.262679 +0.5334 -0.291621 0.257436 +0.5334 -0.294042 0.255016 +0.45085 -0.289186 0.255016 +0.45085 -0.286766 0.257436 +0.61595 -0.324744 0.270615 +0.61595 -0.327165 0.269646 +0.606244 -0.314361 0.266899 +0.607931 -0.312778 0.26844 +0.5334 -0.345814 0.255016 +0.5334 -0.348234 0.257436 +0.45085 -0.348234 0.257436 +0.45085 -0.345814 0.255016 +0.59055 -0.303699 0.262927 +0.59055 -0.30612 0.261112 +0.560474 -0.298215 0.256641 +0.560554 -0.295796 0.258901 +0.558913 -0.345816 0.256641 +0.558833 -0.348235 0.258901 +0.59055 -0.342639 0.261112 +0.59055 -0.345059 0.262927 +0.444012 -0.341594 0.260019 +0.44302 -0.339609 0.258117 +0.419499 -0.292852 0.271109 +0.420557 -0.295133 0.268253 +0.61595 -0.340099 0.269646 +0.61595 -0.342519 0.270615 +0.41275 -0.3048 0.275998 +0.43815 -0.335392 0.26508 +0.5334 -0.290606 0.259888 +0.45085 -0.28575 0.259888 +0.61595 -0.323729 0.271595 +0.608585 -0.31202 0.269644 +0.45085 -0.291638 0.254 +0.5334 -0.296494 0.254 +0.59055 -0.302683 0.264766 +0.560587 -0.294781 0.261189 +0.5334 -0.34925 0.259888 +0.5588 -0.34925 0.261189 +0.560394 -0.300666 0.255693 +0.59055 -0.308571 0.26035 +0.4445 -0.342569 0.26239 +0.45085 -0.34925 0.259888 +0.421555 -0.297286 0.266996 +0.441898 -0.337364 0.257401 +0.4191 -0.291991 0.273622 +0.435842 -0.330006 0.259769 +0.59055 -0.346075 0.264766 +0.604751 -0.316874 0.265552 +0.61595 -0.343535 0.271595 +0.419029 -0.304289 0.266661 +0.615292 -0.337806 0.26924 +0.615596 -0.329572 0.26924 +0.615444 -0.333689 0.26924 +0.618726 -0.335751 0.272152 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +1 0.145182 0.476687 +2 0.145182 0.498546 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +5 0.167399 0.479648 +6 0.167399 0.494394 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +4 0.155131 0.476684 +7 0.155404 0.496599 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +8 0.107991 0.485033 +9 0.107638 0.487007 +10 0.0998379 0.512965 +11 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +12 0.113091 0.52948 +13 0.113091 0.527223 +14 0.145182 0.522693 +15 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +16 0.174156 0.505216 +17 0.1735 0.503739 +18 0.177273 0.491795 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +20 0.113091 0.474399 +21 0.113091 0.472142 +22 0.145182 0.472142 +23 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.155738 0.521057 +25 0.155707 0.5188 +26 0.167399 0.511426 +27 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +28 0.155069 0.472141 +29 0.1551 0.474397 +23 0.145182 0.474399 +22 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +29 0.1551 0.474397 +28 0.155069 0.472141 +30 0.167399 0.475104 +31 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +21 0.113091 0.472142 +20 0.113091 0.474399 +32 0.110047 0.480187 +33 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +33 0.110432 0.478336 +32 0.110047 0.480187 +9 0.107638 0.487007 +8 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +11 0.0985923 0.512719 +10 0.0998379 0.512965 +34 0.101314 0.521675 +35 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +27 0.167399 0.513685 +26 0.167399 0.511426 +17 0.1735 0.503739 +16 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +31 0.167399 0.477361 +30 0.167399 0.475104 +36 0.177273 0.477473 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +15 0.145182 0.524951 +14 0.145182 0.522693 +25 0.155707 0.5188 +24 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +8 0.107991 0.485033 +11 0.0985923 0.512719 +39 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +12 0.113091 0.52948 +15 0.145182 0.524951 +41 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +16 0.174156 0.505216 +19 0.177273 0.494054 +43 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +20 0.113091 0.474399 +23 0.145182 0.474399 +1 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.145182 0.520406 +14 0.145182 0.522693 +13 0.113091 0.527223 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +24 0.155738 0.521057 +27 0.167399 0.513685 +47 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +28 0.155069 0.472141 +22 0.145182 0.472142 +49 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +29 0.1551 0.474397 +31 0.167399 0.477361 +5 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +50 0.167399 0.50914 +26 0.167399 0.511426 +25 0.155707 0.5188 +51 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +21 0.113091 0.472142 +33 0.110432 0.478336 +53 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +45 0.113091 0.524936 +13 0.113091 0.527223 +34 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +32 0.110047 0.480187 +20 0.113091 0.474399 +0 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +35 0.100903 0.523803 +12 0.113091 0.52948 +40 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +33 0.110432 0.478336 +8 0.107991 0.485033 +38 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +9 0.107638 0.487007 +32 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +11 0.0985923 0.512719 +35 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +30 0.167399 0.475104 +28 0.155069 0.472141 +48 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +27 0.167399 0.513685 +16 0.174156 0.505216 +42 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +17 0.1735 0.503739 +26 0.167399 0.511426 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +15 0.145182 0.524951 +24 0.155738 0.521057 +46 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +23 0.145182 0.474399 +29 0.1551 0.474397 +4 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +51 0.155676 0.516514 +25 0.155707 0.5188 +14 0.145182 0.522693 +44 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +22 0.145182 0.472142 +21 0.113091 0.472142 +52 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +36 0.177273 0.477473 +30 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +34 0.101314 0.521675 +10 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +10 0.0998379 0.512965 +9 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +0 0.113091 0.476687 +3 0.113091 0.500811 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +61 0.10072 0.513134 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +57 0.107256 0.489145 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.498546 +44 0.145182 0.520406 +45 0.113091 0.524936 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +7 0.155404 0.496599 +51 0.155676 0.516514 +44 0.145182 0.520406 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +50 0.167399 0.50914 +51 0.155676 0.516514 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +13 0.113091 0.527223 +12 0.113091 0.52948 +35 0.100903 0.523803 +61 0.10072 0.513134 +45 0.113091 0.524936 +54 0.101702 0.519667 +34 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +61 0.10072 0.513134 +3 0.113091 0.500811 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +5 0.167399 0.479648 +31 0.167399 0.477361 +37 0.177273 0.47973 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +6 0.167399 0.494394 +59 0.17292 0.501395 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +18 0.177273 0.491795 +17 0.1735 0.503739 +59 0.17292 0.501395 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +65 0.177077 0.48571 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +18 0.177273 0.491795 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +19 0.177273 0.494054 +18 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +62 0.177017 0.481869 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +37 0.177273 0.47973 +36 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +43 0.177273 0.495 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +36 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +67 0.145182 0.498546 +68 0.145182 0.476687 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +71 0.167399 0.494394 +72 0.167399 0.479648 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +70 0.155404 0.496599 +73 0.155131 0.476684 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +74 0.0985923 0.512719 +75 0.0998379 0.512965 +76 0.107638 0.487007 +77 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +78 0.145182 0.524951 +79 0.145182 0.522693 +80 0.113091 0.527223 +81 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +82 0.177273 0.494054 +83 0.177273 0.491795 +84 0.1735 0.503739 +85 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +86 0.145182 0.474399 +87 0.145182 0.472142 +88 0.113091 0.472142 +89 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.167399 0.513685 +91 0.167399 0.511426 +92 0.155707 0.5188 +93 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +87 0.145182 0.472142 +86 0.145182 0.474399 +94 0.1551 0.474397 +95 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +96 0.167399 0.477361 +97 0.167399 0.475104 +95 0.155069 0.472141 +94 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +98 0.110432 0.478336 +99 0.110047 0.480187 +89 0.113091 0.474399 +88 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +77 0.107991 0.485033 +76 0.107638 0.487007 +99 0.110047 0.480187 +98 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +100 0.100903 0.523803 +101 0.101314 0.521675 +75 0.0998379 0.512965 +74 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +85 0.174156 0.505216 +84 0.1735 0.503739 +91 0.167399 0.511426 +90 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +102 0.177273 0.47973 +103 0.177273 0.477473 +97 0.167399 0.475104 +96 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +93 0.155738 0.521057 +92 0.155707 0.5188 +79 0.145182 0.522693 +78 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +104 0.0982794 0.512658 +74 0.0985923 0.512719 +77 0.107991 0.485033 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.145182 0.525898 +78 0.145182 0.524951 +81 0.113091 0.52948 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.177273 0.495 +82 0.177273 0.494054 +85 0.174156 0.505216 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.476687 +86 0.145182 0.474399 +89 0.113091 0.474399 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.113091 0.524936 +80 0.113091 0.527223 +79 0.145182 0.522693 +111 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +112 0.167399 0.514632 +90 0.167399 0.513685 +93 0.155738 0.521057 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.145182 0.471194 +87 0.145182 0.472142 +95 0.155069 0.472141 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.479648 +96 0.167399 0.477361 +94 0.1551 0.474397 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +116 0.155676 0.516514 +92 0.155707 0.5188 +91 0.167399 0.511426 +117 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +118 0.110622 0.477426 +98 0.110432 0.478336 +88 0.113091 0.472142 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +101 0.101314 0.521675 +80 0.113091 0.527223 +110 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +69 0.113091 0.476687 +89 0.113091 0.474399 +99 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +107 0.113091 0.530428 +81 0.113091 0.52948 +100 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +105 0.108154 0.484121 +77 0.107991 0.485033 +98 0.110432 0.478336 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +99 0.110047 0.480187 +76 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +100 0.100903 0.523803 +74 0.0985923 0.512719 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +115 0.155056 0.471194 +95 0.155069 0.472141 +97 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +109 0.17441 0.505923 +85 0.174156 0.505216 +90 0.167399 0.513685 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +117 0.167399 0.50914 +91 0.167399 0.511426 +84 0.1735 0.503739 +125 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +113 0.155751 0.522004 +93 0.155738 0.521057 +78 0.145182 0.524951 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +73 0.155131 0.476684 +94 0.1551 0.474397 +86 0.145182 0.474399 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +111 0.145182 0.520406 +79 0.145182 0.522693 +92 0.155707 0.5188 +116 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +119 0.113091 0.471194 +88 0.113091 0.472142 +87 0.145182 0.472142 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +97 0.167399 0.475104 +103 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +75 0.0998379 0.512965 +101 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +76 0.107638 0.487007 +75 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +66 0.113091 0.500811 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +123 0.107256 0.489145 +127 0.10072 0.513134 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +123 0.107256 0.489145 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +110 0.113091 0.524936 +111 0.145182 0.520406 +67 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +111 0.145182 0.520406 +116 0.155676 0.516514 +70 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +116 0.155676 0.516514 +117 0.167399 0.50914 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +101 0.101314 0.521675 +120 0.101702 0.519667 +110 0.113091 0.524936 +127 0.10072 0.513134 +100 0.100903 0.523803 +81 0.113091 0.52948 +80 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +110 0.113091 0.524936 +66 0.113091 0.500811 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +128 0.177017 0.481869 +102 0.177273 0.47973 +96 0.167399 0.477361 +72 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +117 0.167399 0.50914 +125 0.17292 0.501395 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +129 0.177136 0.48955 +125 0.17292 0.501395 +84 0.1735 0.503739 +83 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +128 0.177017 0.481869 +130 0.177077 0.48571 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +129 0.177136 0.48955 +83 0.177273 0.491795 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +83 0.177273 0.491795 +82 0.177273 0.494054 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +102 0.177273 0.47973 +128 0.177017 0.481869 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +103 0.177273 0.477473 +102 0.177273 0.47973 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +82 0.177273 0.494054 +108 0.177273 0.495 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +126 0.177273 0.476525 +103 0.177273 0.477473 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +35 0.100903 0.523803 +34 0.101314 0.521675 +101 0.101314 0.521675 +100 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +39 0.0982794 0.512658 +104 0.0982794 0.512658 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +41 0.145182 0.525898 +106 0.145182 0.525898 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +43 0.177273 0.495 +108 0.177273 0.495 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +47 0.167399 0.514632 +112 0.167399 0.514632 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +49 0.145182 0.471194 +114 0.145182 0.471194 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +53 0.110622 0.477426 +118 0.110622 0.477426 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +40 0.113091 0.530428 +107 0.113091 0.530428 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +38 0.108154 0.484121 +105 0.108154 0.484121 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +56 0.100748 0.524606 +122 0.100748 0.524606 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +48 0.155056 0.471194 +115 0.155056 0.471194 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +42 0.17441 0.505923 +109 0.17441 0.505923 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +46 0.155751 0.522004 +113 0.155751 0.522004 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +52 0.113091 0.471194 +119 0.113091 0.471194 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +58 0.167399 0.474156 +124 0.167399 0.474156 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +61 0.10072 0.513134 +127 0.10072 0.513134 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +35 0.100903 0.523803 +100 0.100903 0.523803 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +43 0.177273 0.495 +64 0.178352 0.483786 +131 0.178352 0.483786 +108 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +64 0.178352 0.483786 +60 0.177273 0.476525 +126 0.177273 0.476525 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +5 0.167399 0.479648 +62 0.177017 0.481869 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +63 0.177136 0.48955 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +130 0.177077 0.48571 +129 0.177136 0.48955 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +130 0.177077 0.48571 +128 0.177017 0.481869 +72 0.167399 0.479648 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +65 0.177077 0.48571 +63 0.177136 0.48955 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +129 0.177136 0.48955 +130 0.177077 0.48571 +71 0.167399 0.494394 +kids 0 +OBJECT poly +name "UC_R_Tyre" +numvert 194 +0.508 -0.355836 -0.262865 +0.511763 -0.355466 -0.262865 +0.508 -0.33655 -0.26035 +0.51538 -0.354368 -0.262865 +0.518715 -0.352586 -0.262865 +0.521637 -0.350187 -0.262865 +0.524036 -0.347265 -0.262865 +0.525818 -0.34393 -0.262865 +0.526916 -0.340313 -0.262865 +0.527286 -0.33655 -0.262865 +0.526916 -0.332787 -0.262865 +0.525818 -0.32917 -0.262865 +0.524036 -0.325835 -0.262865 +0.521637 -0.322913 -0.262865 +0.518715 -0.320514 -0.262865 +0.51538 -0.318732 -0.262865 +0.511763 -0.317634 -0.262865 +0.508 -0.317264 -0.262865 +0.504237 -0.317634 -0.262865 +0.50062 -0.318732 -0.262865 +0.497285 -0.320514 -0.262865 +0.494363 -0.322913 -0.262865 +0.491964 -0.325835 -0.262865 +0.490182 -0.32917 -0.262865 +0.489084 -0.332787 -0.262865 +0.488714 -0.33655 -0.262865 +0.489084 -0.340313 -0.262865 +0.490182 -0.34393 -0.262865 +0.491964 -0.347265 -0.262865 +0.494363 -0.350187 -0.262865 +0.497285 -0.352586 -0.262865 +0.50062 -0.354368 -0.262865 +0.504237 -0.355466 -0.262865 +0.508 -0.371302 -0.263563 +0.51478 -0.370635 -0.263563 +0.521299 -0.368657 -0.263563 +0.527307 -0.365446 -0.263563 +0.532574 -0.361124 -0.263563 +0.536896 -0.355857 -0.263563 +0.540107 -0.349849 -0.263563 +0.542085 -0.34333 -0.263563 +0.542752 -0.33655 -0.263563 +0.542085 -0.32977 -0.263563 +0.540107 -0.323251 -0.263563 +0.536896 -0.317243 -0.263563 +0.532574 -0.311976 -0.263563 +0.527307 -0.307654 -0.263563 +0.521299 -0.304443 -0.263563 +0.51478 -0.302465 -0.263563 +0.508 -0.301798 -0.263563 +0.50122 -0.302465 -0.263563 +0.494701 -0.304443 -0.263563 +0.488693 -0.307654 -0.263563 +0.483426 -0.311976 -0.263563 +0.479104 -0.317243 -0.263563 +0.475893 -0.323251 -0.263563 +0.473915 -0.32977 -0.263563 +0.473248 -0.33655 -0.263563 +0.473915 -0.34333 -0.263563 +0.475893 -0.349849 -0.263563 +0.479104 -0.355857 -0.263563 +0.483426 -0.361124 -0.263563 +0.488693 -0.365446 -0.263563 +0.494701 -0.368657 -0.263563 +0.50122 -0.370635 -0.263563 +0.508 -0.379886 -0.269509 +0.516454 -0.379053 -0.269509 +0.524584 -0.376587 -0.269509 +0.532076 -0.372582 -0.269509 +0.538643 -0.367193 -0.269509 +0.544032 -0.360626 -0.269509 +0.548037 -0.353134 -0.269509 +0.550503 -0.345004 -0.269509 +0.551336 -0.33655 -0.269509 +0.550503 -0.328096 -0.269509 +0.548037 -0.319966 -0.269509 +0.544032 -0.312474 -0.269509 +0.538643 -0.305907 -0.269509 +0.532076 -0.300518 -0.269509 +0.524584 -0.296513 -0.269509 +0.516454 -0.294047 -0.269509 +0.508 -0.293214 -0.269509 +0.499546 -0.294047 -0.269509 +0.491416 -0.296513 -0.269509 +0.483924 -0.300518 -0.269509 +0.477357 -0.305907 -0.269509 +0.471968 -0.312474 -0.269509 +0.467963 -0.319966 -0.269509 +0.465497 -0.328096 -0.269509 +0.464664 -0.33655 -0.269509 +0.465497 -0.345004 -0.269509 +0.467963 -0.353134 -0.269509 +0.471968 -0.360626 -0.269509 +0.477357 -0.367193 -0.269509 +0.483924 -0.372582 -0.269509 +0.491416 -0.376587 -0.269509 +0.499546 -0.379053 -0.269509 +0.508 -0.379886 -0.289291 +0.516454 -0.379053 -0.289291 +0.524584 -0.376587 -0.289291 +0.532076 -0.372582 -0.289291 +0.538643 -0.367193 -0.289291 +0.544032 -0.360626 -0.289291 +0.548037 -0.353134 -0.289291 +0.550503 -0.345004 -0.289291 +0.551336 -0.33655 -0.289291 +0.550503 -0.328096 -0.289291 +0.548037 -0.319966 -0.289291 +0.544032 -0.312474 -0.289291 +0.538643 -0.305907 -0.289291 +0.532076 -0.300518 -0.289291 +0.524584 -0.296513 -0.289291 +0.516454 -0.294047 -0.289291 +0.508 -0.293214 -0.289291 +0.499546 -0.294047 -0.289291 +0.491416 -0.296513 -0.289291 +0.483924 -0.300518 -0.289291 +0.477357 -0.305907 -0.289291 +0.471968 -0.312474 -0.289291 +0.467963 -0.319966 -0.289291 +0.465497 -0.328096 -0.289291 +0.464664 -0.33655 -0.289291 +0.465497 -0.345004 -0.289291 +0.467963 -0.353134 -0.289291 +0.471968 -0.360626 -0.289291 +0.477357 -0.367193 -0.289291 +0.483924 -0.372582 -0.289291 +0.491416 -0.376587 -0.289291 +0.499546 -0.379053 -0.289291 +0.508 -0.371302 -0.295237 +0.51478 -0.370635 -0.295237 +0.521299 -0.368657 -0.295237 +0.527307 -0.365446 -0.295237 +0.532574 -0.361124 -0.295237 +0.536896 -0.355857 -0.295237 +0.540107 -0.349849 -0.295237 +0.542085 -0.34333 -0.295237 +0.542752 -0.33655 -0.295237 +0.542085 -0.32977 -0.295237 +0.540107 -0.323251 -0.295237 +0.536896 -0.317243 -0.295237 +0.532574 -0.311976 -0.295237 +0.527307 -0.307654 -0.295237 +0.521299 -0.304443 -0.295237 +0.51478 -0.302465 -0.295237 +0.508 -0.301798 -0.295237 +0.50122 -0.302465 -0.295237 +0.494701 -0.304443 -0.295237 +0.488693 -0.307654 -0.295237 +0.483426 -0.311976 -0.295237 +0.479104 -0.317243 -0.295237 +0.475893 -0.323251 -0.295237 +0.473915 -0.32977 -0.295237 +0.473248 -0.33655 -0.295237 +0.473915 -0.34333 -0.295237 +0.475893 -0.349849 -0.295237 +0.479104 -0.355857 -0.295237 +0.483426 -0.361124 -0.295237 +0.488693 -0.365446 -0.295237 +0.494701 -0.368657 -0.295237 +0.50122 -0.370635 -0.295237 +0.508 -0.355836 -0.295935 +0.511763 -0.355466 -0.295935 +0.51538 -0.354368 -0.295935 +0.518715 -0.352586 -0.295935 +0.521637 -0.350187 -0.295935 +0.524036 -0.347265 -0.295935 +0.525818 -0.34393 -0.295935 +0.526916 -0.340313 -0.295935 +0.527286 -0.33655 -0.295935 +0.526916 -0.332787 -0.295935 +0.525818 -0.32917 -0.295935 +0.524036 -0.325835 -0.295935 +0.521637 -0.322913 -0.295935 +0.518715 -0.320514 -0.295935 +0.51538 -0.318732 -0.295935 +0.511763 -0.317634 -0.295935 +0.508 -0.317264 -0.295935 +0.504237 -0.317634 -0.295935 +0.50062 -0.318732 -0.295935 +0.497285 -0.320514 -0.295935 +0.494363 -0.322913 -0.295935 +0.491964 -0.325835 -0.295935 +0.490182 -0.32917 -0.295935 +0.489084 -0.332787 -0.295935 +0.488714 -0.33655 -0.295935 +0.489084 -0.340313 -0.295935 +0.490182 -0.34393 -0.295935 +0.491964 -0.347265 -0.295935 +0.494363 -0.350187 -0.295935 +0.497285 -0.352586 -0.295935 +0.50062 -0.354368 -0.295935 +0.504237 -0.355466 -0.295935 +0.508 -0.33655 -0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +32 0 0 +0 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +34 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +35 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +33 0 0 +0 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +66 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +67 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +65 0 0 +33 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +98 0 0 +66 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +99 0 0 +67 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +97 0 0 +65 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +130 0 0 +98 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +131 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +129 0 0 +97 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +161 0 0 +162 0 0 +130 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +162 0 0 +163 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +163 0 0 +164 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +164 0 0 +165 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +165 0 0 +166 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +166 0 0 +167 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +167 0 0 +168 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +168 0 0 +169 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +169 0 0 +170 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +170 0 0 +171 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +171 0 0 +172 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +172 0 0 +173 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +173 0 0 +174 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +174 0 0 +175 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +175 0 0 +176 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +176 0 0 +177 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +177 0 0 +178 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +178 0 0 +179 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +179 0 0 +180 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +180 0 0 +181 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +181 0 0 +182 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +182 0 0 +183 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +183 0 0 +184 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +184 0 0 +185 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +185 0 0 +186 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +186 0 0 +187 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +187 0 0 +188 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +188 0 0 +189 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +189 0 0 +190 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +190 0 0 +191 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +191 0 0 +192 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +192 0 0 +161 0 0 +129 0 0 +160 0 0 +SURF 0x10 +mat 2 +refs 3 +192 0 0 +191 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +191 0 0 +190 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +190 0 0 +189 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +189 0 0 +188 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +188 0 0 +187 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +187 0 0 +186 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +186 0 0 +185 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +185 0 0 +184 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +184 0 0 +183 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +183 0 0 +182 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +182 0 0 +181 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +181 0 0 +180 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +180 0 0 +179 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +179 0 0 +178 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +178 0 0 +177 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +177 0 0 +176 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +176 0 0 +175 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +175 0 0 +174 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +174 0 0 +173 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +173 0 0 +172 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +172 0 0 +171 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +171 0 0 +170 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +170 0 0 +169 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +169 0 0 +168 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +168 0 0 +167 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +167 0 0 +166 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +166 0 0 +165 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +165 0 0 +164 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +164 0 0 +163 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +163 0 0 +162 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +162 0 0 +161 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +161 0 0 +192 0 0 +193 0 0 +kids 0 +OBJECT poly +name "UC_R_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.3175 -0.3048 +0.5334 -0.319928 -0.3048 +0.5334 -0.343362 -0.3048 +0.45085 -0.343362 -0.3048 +0.559694 -0.322015 -0.303107 +0.59055 -0.324379 -0.29845 +0.59055 -0.340187 -0.29845 +0.558993 -0.343365 -0.303107 +0.413555 -0.304734 -0.285426 +0.416759 -0.304471 -0.290148 +0.436824 -0.332298 -0.298207 +0.437731 -0.334414 -0.296121 +0.5334 -0.291621 -0.301364 +0.5334 -0.294042 -0.303784 +0.45085 -0.289186 -0.303784 +0.45085 -0.286766 -0.301364 +0.61595 -0.324744 -0.288185 +0.61595 -0.327165 -0.289154 +0.606244 -0.314361 -0.291901 +0.607931 -0.312778 -0.29036 +0.5334 -0.345814 -0.303784 +0.5334 -0.348234 -0.301364 +0.45085 -0.348234 -0.301364 +0.45085 -0.345814 -0.303784 +0.59055 -0.303699 -0.295873 +0.59055 -0.30612 -0.297688 +0.560474 -0.298215 -0.302159 +0.560554 -0.295796 -0.299899 +0.558913 -0.345816 -0.302159 +0.558833 -0.348235 -0.299899 +0.59055 -0.342639 -0.297688 +0.59055 -0.345059 -0.295873 +0.444012 -0.341594 -0.298781 +0.44302 -0.339609 -0.300683 +0.419499 -0.292852 -0.287691 +0.420557 -0.295133 -0.290547 +0.61595 -0.340099 -0.289154 +0.61595 -0.342519 -0.288185 +0.41275 -0.3048 -0.282802 +0.43815 -0.335392 -0.29372 +0.5334 -0.290606 -0.298912 +0.45085 -0.28575 -0.298912 +0.61595 -0.323729 -0.287205 +0.608585 -0.31202 -0.289156 +0.45085 -0.291638 -0.3048 +0.5334 -0.296494 -0.3048 +0.59055 -0.302683 -0.294034 +0.560587 -0.294781 -0.297611 +0.5334 -0.34925 -0.298912 +0.5588 -0.34925 -0.297611 +0.560394 -0.300666 -0.303107 +0.59055 -0.308571 -0.29845 +0.4445 -0.342569 -0.29641 +0.45085 -0.34925 -0.298912 +0.421555 -0.297286 -0.291804 +0.441898 -0.337364 -0.301399 +0.4191 -0.291991 -0.285178 +0.435842 -0.330006 -0.299031 +0.59055 -0.346075 -0.294034 +0.604751 -0.316874 -0.293248 +0.61595 -0.343535 -0.287205 +0.419029 -0.304289 -0.292139 +0.615292 -0.337806 -0.28956 +0.615596 -0.329572 -0.28956 +0.615444 -0.333689 -0.28956 +0.618726 -0.335751 -0.286648 +0.45085 -0.343362 -0.254 +0.5334 -0.343362 -0.254 +0.5334 -0.319928 -0.254 +0.45085 -0.3175 -0.254 +0.558993 -0.343365 -0.255693 +0.59055 -0.340187 -0.26035 +0.59055 -0.324379 -0.26035 +0.559694 -0.322015 -0.255693 +0.437731 -0.334414 -0.262679 +0.436824 -0.332298 -0.260593 +0.416759 -0.304471 -0.268652 +0.413555 -0.304734 -0.273374 +0.45085 -0.286766 -0.257436 +0.45085 -0.289186 -0.255016 +0.5334 -0.294042 -0.255016 +0.5334 -0.291621 -0.257436 +0.607931 -0.312778 -0.26844 +0.606244 -0.314361 -0.266899 +0.61595 -0.327165 -0.269646 +0.61595 -0.324744 -0.270615 +0.45085 -0.345814 -0.255016 +0.45085 -0.348234 -0.257436 +0.5334 -0.348234 -0.257436 +0.5334 -0.345814 -0.255016 +0.560554 -0.295796 -0.258901 +0.560474 -0.298215 -0.256641 +0.59055 -0.30612 -0.261112 +0.59055 -0.303699 -0.262927 +0.558833 -0.348235 -0.258901 +0.558913 -0.345816 -0.256641 +0.59055 -0.345059 -0.262927 +0.59055 -0.342639 -0.261112 +0.44302 -0.339609 -0.258117 +0.444012 -0.341594 -0.260019 +0.420557 -0.295133 -0.268253 +0.419499 -0.292852 -0.271109 +0.61595 -0.342519 -0.270615 +0.61595 -0.340099 -0.269646 +0.43815 -0.335392 -0.26508 +0.41275 -0.3048 -0.275998 +0.45085 -0.28575 -0.259888 +0.5334 -0.290606 -0.259888 +0.608585 -0.31202 -0.269644 +0.61595 -0.323729 -0.271595 +0.5334 -0.296494 -0.254 +0.45085 -0.291638 -0.254 +0.560587 -0.294781 -0.261189 +0.59055 -0.302683 -0.264766 +0.5588 -0.34925 -0.261189 +0.5334 -0.34925 -0.259888 +0.59055 -0.308571 -0.26035 +0.560394 -0.300666 -0.255693 +0.45085 -0.34925 -0.259888 +0.4445 -0.342569 -0.26239 +0.421555 -0.297286 -0.266996 +0.441898 -0.337364 -0.257401 +0.4191 -0.291991 -0.273622 +0.435842 -0.330006 -0.259769 +0.59055 -0.346075 -0.264766 +0.604751 -0.316874 -0.265552 +0.61595 -0.343535 -0.271595 +0.419029 -0.304289 -0.266661 +0.615292 -0.337806 -0.26924 +0.615596 -0.329572 -0.26924 +0.618726 -0.335751 -0.272152 +0.615444 -0.333689 -0.26924 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +1 0.145182 0.498546 +2 0.145182 0.476687 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +5 0.167399 0.494394 +6 0.167399 0.479648 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +4 0.155404 0.496599 +7 0.155131 0.476684 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +8 0.0985923 0.512719 +9 0.0998379 0.512965 +10 0.107638 0.487007 +11 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +12 0.145182 0.524951 +13 0.145182 0.522693 +14 0.113091 0.527223 +15 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +16 0.177273 0.494054 +17 0.177273 0.491795 +18 0.1735 0.503739 +19 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +20 0.145182 0.474399 +21 0.145182 0.472142 +22 0.113091 0.472142 +23 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.167399 0.513685 +25 0.167399 0.511426 +26 0.155707 0.5188 +27 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +21 0.145182 0.472142 +20 0.145182 0.474399 +28 0.1551 0.474397 +29 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +30 0.167399 0.477361 +31 0.167399 0.475104 +29 0.155069 0.472141 +28 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +32 0.110432 0.478336 +33 0.110047 0.480187 +23 0.113091 0.474399 +22 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +11 0.107991 0.485033 +10 0.107638 0.487007 +33 0.110047 0.480187 +32 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +34 0.100903 0.523803 +35 0.101314 0.521675 +9 0.0998379 0.512965 +8 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +19 0.174156 0.505216 +18 0.1735 0.503739 +25 0.167399 0.511426 +24 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +36 0.177273 0.47973 +37 0.177273 0.477473 +31 0.167399 0.475104 +30 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +27 0.155738 0.521057 +26 0.155707 0.5188 +13 0.145182 0.522693 +12 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +38 0.0982794 0.512658 +8 0.0985923 0.512719 +11 0.107991 0.485033 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.145182 0.525898 +12 0.145182 0.524951 +15 0.113091 0.52948 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.177273 0.495 +16 0.177273 0.494054 +19 0.174156 0.505216 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.476687 +20 0.145182 0.474399 +23 0.113091 0.474399 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.113091 0.524936 +14 0.113091 0.527223 +13 0.145182 0.522693 +45 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +46 0.167399 0.514632 +24 0.167399 0.513685 +27 0.155738 0.521057 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.145182 0.471194 +21 0.145182 0.472142 +29 0.155069 0.472141 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.479648 +30 0.167399 0.477361 +28 0.1551 0.474397 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +50 0.155676 0.516514 +26 0.155707 0.5188 +25 0.167399 0.511426 +51 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +52 0.110622 0.477426 +32 0.110432 0.478336 +22 0.113091 0.472142 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +35 0.101314 0.521675 +14 0.113091 0.527223 +44 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +3 0.113091 0.476687 +23 0.113091 0.474399 +33 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +41 0.113091 0.530428 +15 0.113091 0.52948 +34 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +39 0.108154 0.484121 +11 0.107991 0.485033 +32 0.110432 0.478336 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +33 0.110047 0.480187 +10 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +34 0.100903 0.523803 +8 0.0985923 0.512719 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +49 0.155056 0.471194 +29 0.155069 0.472141 +31 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +43 0.17441 0.505923 +19 0.174156 0.505216 +24 0.167399 0.513685 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +51 0.167399 0.50914 +25 0.167399 0.511426 +18 0.1735 0.503739 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +47 0.155751 0.522004 +27 0.155738 0.521057 +12 0.145182 0.524951 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +7 0.155131 0.476684 +28 0.1551 0.474397 +20 0.145182 0.474399 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +45 0.145182 0.520406 +13 0.145182 0.522693 +26 0.155707 0.5188 +50 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +53 0.113091 0.471194 +22 0.113091 0.472142 +21 0.145182 0.472142 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +31 0.167399 0.475104 +37 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +9 0.0998379 0.512965 +35 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +10 0.107638 0.487007 +9 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +0 0.113091 0.500811 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +57 0.107256 0.489145 +61 0.10072 0.513134 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +57 0.107256 0.489145 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +44 0.113091 0.524936 +45 0.145182 0.520406 +1 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +45 0.145182 0.520406 +50 0.155676 0.516514 +4 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +50 0.155676 0.516514 +51 0.167399 0.50914 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +35 0.101314 0.521675 +54 0.101702 0.519667 +44 0.113091 0.524936 +61 0.10072 0.513134 +34 0.100903 0.523803 +15 0.113091 0.52948 +14 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +44 0.113091 0.524936 +0 0.113091 0.500811 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +62 0.177017 0.481869 +36 0.177273 0.47973 +30 0.167399 0.477361 +6 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +51 0.167399 0.50914 +59 0.17292 0.501395 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +63 0.177136 0.48955 +59 0.17292 0.501395 +18 0.1735 0.503739 +17 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +62 0.177017 0.481869 +64 0.177077 0.48571 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +63 0.177136 0.48955 +17 0.177273 0.491795 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +17 0.177273 0.491795 +16 0.177273 0.494054 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +36 0.177273 0.47973 +62 0.177017 0.481869 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +37 0.177273 0.477473 +36 0.177273 0.47973 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +16 0.177273 0.494054 +42 0.177273 0.495 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +60 0.177273 0.476525 +37 0.177273 0.477473 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +67 0.145182 0.476687 +68 0.145182 0.498546 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +71 0.167399 0.479648 +72 0.167399 0.494394 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +70 0.155131 0.476684 +73 0.155404 0.496599 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +74 0.107991 0.485033 +75 0.107638 0.487007 +76 0.0998379 0.512965 +77 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +78 0.113091 0.52948 +79 0.113091 0.527223 +80 0.145182 0.522693 +81 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +82 0.174156 0.505216 +83 0.1735 0.503739 +84 0.177273 0.491795 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +86 0.113091 0.474399 +87 0.113091 0.472142 +88 0.145182 0.472142 +89 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.155738 0.521057 +91 0.155707 0.5188 +92 0.167399 0.511426 +93 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +94 0.155069 0.472141 +95 0.1551 0.474397 +89 0.145182 0.474399 +88 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +95 0.1551 0.474397 +94 0.155069 0.472141 +96 0.167399 0.475104 +97 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +87 0.113091 0.472142 +86 0.113091 0.474399 +98 0.110047 0.480187 +99 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +99 0.110432 0.478336 +98 0.110047 0.480187 +75 0.107638 0.487007 +74 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +77 0.0985923 0.512719 +76 0.0998379 0.512965 +100 0.101314 0.521675 +101 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +93 0.167399 0.513685 +92 0.167399 0.511426 +83 0.1735 0.503739 +82 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +97 0.167399 0.477361 +96 0.167399 0.475104 +102 0.177273 0.477473 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +81 0.145182 0.524951 +80 0.145182 0.522693 +91 0.155707 0.5188 +90 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +74 0.107991 0.485033 +77 0.0985923 0.512719 +105 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +78 0.113091 0.52948 +81 0.145182 0.524951 +107 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +82 0.174156 0.505216 +85 0.177273 0.494054 +109 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +86 0.113091 0.474399 +89 0.145182 0.474399 +67 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.145182 0.520406 +80 0.145182 0.522693 +79 0.113091 0.527223 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +90 0.155738 0.521057 +93 0.167399 0.513685 +113 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +94 0.155069 0.472141 +88 0.145182 0.472142 +115 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +95 0.1551 0.474397 +97 0.167399 0.477361 +71 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +116 0.167399 0.50914 +92 0.167399 0.511426 +91 0.155707 0.5188 +117 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +87 0.113091 0.472142 +99 0.110432 0.478336 +119 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +111 0.113091 0.524936 +79 0.113091 0.527223 +100 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +98 0.110047 0.480187 +86 0.113091 0.474399 +66 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +101 0.100903 0.523803 +78 0.113091 0.52948 +106 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +99 0.110432 0.478336 +74 0.107991 0.485033 +104 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +75 0.107638 0.487007 +98 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +77 0.0985923 0.512719 +101 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +96 0.167399 0.475104 +94 0.155069 0.472141 +114 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +93 0.167399 0.513685 +82 0.174156 0.505216 +108 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +83 0.1735 0.503739 +92 0.167399 0.511426 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +81 0.145182 0.524951 +90 0.155738 0.521057 +112 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +89 0.145182 0.474399 +95 0.1551 0.474397 +70 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +117 0.155676 0.516514 +91 0.155707 0.5188 +80 0.145182 0.522693 +110 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +88 0.145182 0.472142 +87 0.113091 0.472142 +118 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +102 0.177273 0.477473 +96 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +100 0.101314 0.521675 +76 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +76 0.0998379 0.512965 +75 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +66 0.113091 0.476687 +69 0.113091 0.500811 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +127 0.10072 0.513134 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +123 0.107256 0.489145 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.498546 +110 0.145182 0.520406 +111 0.113091 0.524936 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +73 0.155404 0.496599 +117 0.155676 0.516514 +110 0.145182 0.520406 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +116 0.167399 0.50914 +117 0.155676 0.516514 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +79 0.113091 0.527223 +78 0.113091 0.52948 +101 0.100903 0.523803 +127 0.10072 0.513134 +111 0.113091 0.524936 +120 0.101702 0.519667 +100 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +127 0.10072 0.513134 +69 0.113091 0.500811 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +71 0.167399 0.479648 +97 0.167399 0.477361 +103 0.177273 0.47973 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +72 0.167399 0.494394 +125 0.17292 0.501395 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +84 0.177273 0.491795 +83 0.1735 0.503739 +125 0.17292 0.501395 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +131 0.177077 0.48571 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +84 0.177273 0.491795 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +85 0.177273 0.494054 +84 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +128 0.177017 0.481869 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +103 0.177273 0.47973 +102 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +109 0.177273 0.495 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +102 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +101 0.100903 0.523803 +100 0.101314 0.521675 +35 0.101314 0.521675 +34 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +105 0.0982794 0.512658 +38 0.0982794 0.512658 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +107 0.145182 0.525898 +40 0.145182 0.525898 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +109 0.177273 0.495 +42 0.177273 0.495 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +113 0.167399 0.514632 +46 0.167399 0.514632 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +115 0.145182 0.471194 +48 0.145182 0.471194 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +119 0.110622 0.477426 +52 0.110622 0.477426 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +106 0.113091 0.530428 +41 0.113091 0.530428 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +104 0.108154 0.484121 +39 0.108154 0.484121 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +122 0.100748 0.524606 +56 0.100748 0.524606 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +114 0.155056 0.471194 +49 0.155056 0.471194 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +108 0.17441 0.505923 +43 0.17441 0.505923 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +112 0.155751 0.522004 +47 0.155751 0.522004 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +118 0.113091 0.471194 +53 0.113091 0.471194 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +124 0.167399 0.474156 +58 0.167399 0.474156 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +127 0.10072 0.513134 +61 0.10072 0.513134 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +101 0.100903 0.523803 +34 0.100903 0.523803 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +109 0.177273 0.495 +130 0.178352 0.483786 +65 0.178352 0.483786 +42 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +130 0.178352 0.483786 +126 0.177273 0.476525 +60 0.177273 0.476525 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +64 0.177077 0.48571 +62 0.177017 0.481869 +6 0.167399 0.479648 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 3 +64 0.177077 0.48571 +63 0.177136 0.48955 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +129 0.177136 0.48955 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +71 0.167399 0.479648 +128 0.177017 0.481869 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +63 0.177136 0.48955 +64 0.177077 0.48571 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +131 0.177077 0.48571 +129 0.177136 0.48955 +125 0.17292 0.501395 +kids 0 +OBJECT poly +name "UC_tailstrut" +numvert 52 +1.74331 -0.0390927 -0.00635 +1.74331 -0.0390927 0.00635 +1.84348 -0.110835 0.00635 +1.84348 -0.110835 -0.00635 +1.85568 -0.129178 -0.00635 +1.85568 -0.129178 -0.00381 +1.85448 -0.132598 -0.00381 +1.85448 -0.132598 -0.00635 +1.84497 -0.119312 -0.00635 +1.84497 -0.119312 -0.00381 +1.84016 -0.116252 -0.00635 +1.7399 -0.04445 -0.00635 +1.7399 -0.04445 0.00635 +1.84016 -0.116252 0.00635 +1.84838 -0.113955 0.00381 +1.84838 -0.113955 -0.00381 +1.84838 -0.113955 -0.00635 +1.84497 -0.119312 0.00635 +1.84838 -0.113955 0.00635 +1.84497 -0.119312 0.00381 +1.85568 -0.129178 0.00381 +1.85568 -0.129178 0.00635 +1.85448 -0.132598 0.00635 +1.85448 -0.132598 0.00381 +1.85132 -0.119264 -0.00381 +1.85132 -0.119264 -0.00635 +1.85132 -0.119264 0.00635 +1.85132 -0.119264 0.00381 +1.85134 -0.121654 -0.00381 +1.85134 -0.121654 -0.00635 +1.84499 -0.121702 -0.00381 +1.84499 -0.121702 -0.00635 +1.85134 -0.121654 0.00635 +1.85134 -0.121654 0.00381 +1.84499 -0.121702 0.00635 +1.84499 -0.121702 0.00381 +1.85136 -0.123886 -0.00381 +1.85136 -0.123886 -0.00635 +1.84628 -0.127702 -0.00381 +1.84628 -0.127702 -0.00635 +1.85136 -0.123886 0.00635 +1.85136 -0.123886 0.00381 +1.84628 -0.127702 0.00635 +1.84628 -0.127702 0.00381 +1.85372 -0.127028 -0.00381 +1.85372 -0.127028 -0.00635 +1.85159 -0.133012 -0.00381 +1.85159 -0.133012 -0.00635 +1.85372 -0.127028 0.00635 +1.85372 -0.127028 0.00381 +1.85159 -0.133012 0.00635 +1.85159 -0.133012 0.00381 +numsurf 54 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +12 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +14 0 0 +15 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +12 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +16 0 0 +8 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +2 0 0 +18 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +19 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +17 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +14 0 0 +19 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +15 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +9 0 0 +24 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +16 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +18 0 0 +26 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +17 0 0 +26 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +14 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +25 0 0 +24 0 0 +28 0 0 +29 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +9 0 0 +30 0 0 +28 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +8 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +25 0 0 +29 0 0 +31 0 0 +SURF 0x10 +mat 1 +refs 4 +27 0 0 +26 0 0 +32 0 0 +33 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +17 0 0 +34 0 0 +32 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +27 0 0 +33 0 0 +35 0 0 +SURF 0x10 +mat 1 +refs 4 +29 0 0 +28 0 0 +36 0 0 +37 0 0 +SURF 0x10 +mat 1 +refs 4 +28 0 0 +30 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 1 +refs 4 +30 0 0 +31 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 1 +refs 4 +31 0 0 +29 0 0 +37 0 0 +39 0 0 +SURF 0x10 +mat 1 +refs 4 +33 0 0 +32 0 0 +40 0 0 +41 0 0 +SURF 0x10 +mat 1 +refs 4 +32 0 0 +34 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 1 +refs 4 +34 0 0 +35 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 1 +refs 4 +35 0 0 +33 0 0 +41 0 0 +43 0 0 +SURF 0x10 +mat 1 +refs 4 +37 0 0 +36 0 0 +44 0 0 +45 0 0 +SURF 0x10 +mat 1 +refs 4 +36 0 0 +38 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 1 +refs 4 +38 0 0 +39 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 1 +refs 4 +39 0 0 +37 0 0 +45 0 0 +47 0 0 +SURF 0x10 +mat 1 +refs 4 +41 0 0 +40 0 0 +48 0 0 +49 0 0 +SURF 0x10 +mat 1 +refs 4 +40 0 0 +42 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 1 +refs 4 +42 0 0 +43 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 1 +refs 4 +43 0 0 +41 0 0 +49 0 0 +51 0 0 +SURF 0x10 +mat 1 +refs 4 +45 0 0 +44 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +44 0 0 +46 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +46 0 0 +47 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +47 0 0 +45 0 0 +4 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +49 0 0 +48 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 1 +refs 4 +48 0 0 +50 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +50 0 0 +51 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +51 0 0 +49 0 0 +20 0 0 +23 0 0 +kids 0 +OBJECT poly +name "UC_Tailwheel" +numvert 194 +1.8534 -0.130887 -0.00423333 +1.85448 -0.136291 -0.00367436 +1.8534 -0.136397 -0.00367436 +1.85551 -0.135978 -0.00367436 +1.85646 -0.135468 -0.00367436 +1.8573 -0.134783 -0.00367436 +1.85798 -0.133948 -0.00367436 +1.85849 -0.132995 -0.00367436 +1.85881 -0.131962 -0.00367436 +1.85891 -0.130887 -0.00367436 +1.85881 -0.129812 -0.00367436 +1.85849 -0.128778 -0.00367436 +1.85798 -0.127825 -0.00367436 +1.8573 -0.12699 -0.00367436 +1.85646 -0.126305 -0.00367436 +1.85551 -0.125796 -0.00367436 +1.85448 -0.125482 -0.00367436 +1.8534 -0.125376 -0.00367436 +1.85233 -0.125482 -0.00367436 +1.85129 -0.125796 -0.00367436 +1.85034 -0.126305 -0.00367436 +1.8495 -0.12699 -0.00367436 +1.84882 -0.127825 -0.00367436 +1.84831 -0.128778 -0.00367436 +1.848 -0.129812 -0.00367436 +1.84789 -0.130887 -0.00367436 +1.848 -0.131962 -0.00367436 +1.84831 -0.132995 -0.00367436 +1.84882 -0.133948 -0.00367436 +1.8495 -0.134783 -0.00367436 +1.85034 -0.135468 -0.00367436 +1.85129 -0.135978 -0.00367436 +1.85233 -0.136291 -0.00367436 +1.85534 -0.140625 -0.00351925 +1.8534 -0.140816 -0.00351925 +1.8572 -0.14006 -0.00351925 +1.85892 -0.139143 -0.00351925 +1.86042 -0.137908 -0.00351925 +1.86166 -0.136403 -0.00351925 +1.86257 -0.134687 -0.00351925 +1.86314 -0.132824 -0.00351925 +1.86333 -0.130887 -0.00351925 +1.86314 -0.12895 -0.00351925 +1.86257 -0.127087 -0.00351925 +1.86166 -0.12537 -0.00351925 +1.86042 -0.123866 -0.00351925 +1.85892 -0.122631 -0.00351925 +1.8572 -0.121713 -0.00351925 +1.85534 -0.121148 -0.00351925 +1.8534 -0.120958 -0.00351925 +1.85146 -0.121148 -0.00351925 +1.8496 -0.121713 -0.00351925 +1.84788 -0.122631 -0.00351925 +1.84638 -0.123866 -0.00351925 +1.84515 -0.12537 -0.00351925 +1.84423 -0.127087 -0.00351925 +1.84366 -0.12895 -0.00351925 +1.84347 -0.130887 -0.00351925 +1.84366 -0.132824 -0.00351925 +1.84423 -0.134687 -0.00351925 +1.84515 -0.136403 -0.00351925 +1.84638 -0.137908 -0.00351925 +1.84788 -0.139143 -0.00351925 +1.8496 -0.14006 -0.00351925 +1.85146 -0.140625 -0.00351925 +1.85582 -0.14303 -0.00219801 +1.8534 -0.143268 -0.00219801 +1.85814 -0.142326 -0.00219801 +1.86028 -0.141182 -0.00219801 +1.86216 -0.139642 -0.00219801 +1.8637 -0.137766 -0.00219801 +1.86484 -0.135625 -0.00219801 +1.86554 -0.133302 -0.00219801 +1.86578 -0.130887 -0.00219801 +1.86554 -0.128471 -0.00219801 +1.86484 -0.126149 -0.00219801 +1.8637 -0.124008 -0.00219801 +1.86216 -0.122132 -0.00219801 +1.86028 -0.120592 -0.00219801 +1.85814 -0.119448 -0.00219801 +1.85582 -0.118743 -0.00219801 +1.8534 -0.118505 -0.00219801 +1.85099 -0.118743 -0.00219801 +1.84866 -0.119448 -0.00219801 +1.84652 -0.120592 -0.00219801 +1.84465 -0.122132 -0.00219801 +1.84311 -0.124008 -0.00219801 +1.84196 -0.126149 -0.00219801 +1.84126 -0.128471 -0.00219801 +1.84102 -0.130887 -0.00219801 +1.84126 -0.133302 -0.00219801 +1.84196 -0.135625 -0.00219801 +1.84311 -0.137766 -0.00219801 +1.84465 -0.139642 -0.00219801 +1.84652 -0.141182 -0.00219801 +1.84866 -0.142326 -0.00219801 +1.85099 -0.14303 -0.00219801 +1.85582 -0.14303 0.00219801 +1.8534 -0.143268 0.00219801 +1.85814 -0.142326 0.00219801 +1.86028 -0.141182 0.00219801 +1.86216 -0.139642 0.00219801 +1.8637 -0.137766 0.00219801 +1.86484 -0.135625 0.00219801 +1.86554 -0.133302 0.00219801 +1.86578 -0.130887 0.00219801 +1.86554 -0.128471 0.00219801 +1.86484 -0.126149 0.00219801 +1.8637 -0.124008 0.00219801 +1.86216 -0.122132 0.00219801 +1.86028 -0.120592 0.00219801 +1.85814 -0.119448 0.00219801 +1.85582 -0.118743 0.00219801 +1.8534 -0.118505 0.00219801 +1.85099 -0.118743 0.00219801 +1.84866 -0.119448 0.00219801 +1.84652 -0.120592 0.00219801 +1.84465 -0.122132 0.00219801 +1.84311 -0.124008 0.00219801 +1.84196 -0.126149 0.00219801 +1.84126 -0.128471 0.00219801 +1.84102 -0.130887 0.00219801 +1.84126 -0.133302 0.00219801 +1.84196 -0.135625 0.00219801 +1.84311 -0.137766 0.00219801 +1.84465 -0.139642 0.00219801 +1.84652 -0.141182 0.00219801 +1.84866 -0.142326 0.00219801 +1.85099 -0.14303 0.00219801 +1.85534 -0.140625 0.00351925 +1.8534 -0.140816 0.00351925 +1.8572 -0.14006 0.00351925 +1.85892 -0.139143 0.00351925 +1.86042 -0.137908 0.00351925 +1.86166 -0.136403 0.00351925 +1.86257 -0.134687 0.00351925 +1.86314 -0.132824 0.00351925 +1.86333 -0.130887 0.00351925 +1.86314 -0.12895 0.00351925 +1.86257 -0.127087 0.00351925 +1.86166 -0.12537 0.00351925 +1.86042 -0.123866 0.00351925 +1.85892 -0.122631 0.00351925 +1.8572 -0.121713 0.00351925 +1.85534 -0.121148 0.00351925 +1.8534 -0.120958 0.00351925 +1.85146 -0.121148 0.00351925 +1.8496 -0.121713 0.00351925 +1.84788 -0.122631 0.00351925 +1.84638 -0.123866 0.00351925 +1.84515 -0.12537 0.00351925 +1.84423 -0.127087 0.00351925 +1.84366 -0.12895 0.00351925 +1.84347 -0.130887 0.00351925 +1.84366 -0.132824 0.00351925 +1.84423 -0.134687 0.00351925 +1.84515 -0.136403 0.00351925 +1.84638 -0.137908 0.00351925 +1.84788 -0.139143 0.00351925 +1.8496 -0.14006 0.00351925 +1.85146 -0.140625 0.00351925 +1.85448 -0.136291 0.00367436 +1.8534 -0.136397 0.00367436 +1.85551 -0.135978 0.00367436 +1.85646 -0.135468 0.00367436 +1.8573 -0.134783 0.00367436 +1.85798 -0.133948 0.00367436 +1.85849 -0.132995 0.00367436 +1.85881 -0.131962 0.00367436 +1.85891 -0.130887 0.00367436 +1.85881 -0.129812 0.00367436 +1.85849 -0.128778 0.00367436 +1.85798 -0.127825 0.00367436 +1.8573 -0.12699 0.00367436 +1.85646 -0.126305 0.00367436 +1.85551 -0.125796 0.00367436 +1.85448 -0.125482 0.00367436 +1.8534 -0.125376 0.00367436 +1.85233 -0.125482 0.00367436 +1.85129 -0.125796 0.00367436 +1.85034 -0.126305 0.00367436 +1.8495 -0.12699 0.00367436 +1.84882 -0.127825 0.00367436 +1.84831 -0.128778 0.00367436 +1.848 -0.129812 0.00367436 +1.84789 -0.130887 0.00367436 +1.848 -0.131962 0.00367436 +1.84831 -0.132995 0.00367436 +1.84882 -0.133948 0.00367436 +1.8495 -0.134783 0.00367436 +1.85034 -0.135468 0.00367436 +1.85129 -0.135978 0.00367436 +1.85233 -0.136291 0.00367436 +1.8534 -0.130887 0.00423333 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "Wing" +texture "Rascal.rgb" +numvert 246 +0.83185 0.130692 0.451014 +0.735007 0.130692 0.451014 +0.8382 0.1143 1.5397e-16 +0.4572 0.130692 0.451014 +0.43815 0.137038 0.450783 +0.43815 0.12065 8.04842e-17 +0.4572 0.1143 8.39835e-17 +0.4318 0.143384 0.450552 +0.4318 0.127 7.93178e-17 +0.4318 0.14973 0.450321 +0.4318 0.13335 7.93178e-17 +0.43815 0.162421 0.44986 +0.43815 0.14605 8.04842e-17 +0.45085 0.168767 0.449629 +0.45085 0.1524 8.28171e-17 +0.4826 0.175113 0.449398 +0.4826 0.15875 8.86493e-17 +0.53975 0.175113 0.449398 +0.53975 0.15875 9.91472e-17 +0.639188 0.162421 0.44986 +0.64135 0.14605 1.1781e-16 +0.735027 0.146638 0.450434 +0.4572 0.138307 0.660425 +0.43815 0.144653 0.660195 +0.4318 0.150999 0.659964 +0.4318 0.157344 0.659733 +0.43815 0.170036 0.659272 +0.45085 0.176382 0.659041 +0.4826 0.182728 0.65881 +0.53975 0.182728 0.65881 +0.634865 0.170036 0.659272 +0.727548 0.154078 0.659852 +0.458922 0.146614 0.888874 +0.440269 0.15296 0.888644 +0.434051 0.159306 0.888413 +0.434051 0.165652 0.888182 +0.440269 0.178343 0.887721 +0.452704 0.184689 0.88749 +0.483792 0.191035 0.887259 +0.53975 0.191035 0.887259 +0.627466 0.178343 0.887721 +0.719388 0.161182 0.888345 +0.463618 0.152383 1.04752 +0.446049 0.157822 1.04732 +0.440192 0.163262 1.04712 +0.440192 0.168701 1.04693 +0.446049 0.17958 1.04653 +0.457761 0.185019 1.04633 +0.487043 0.190458 1.04613 +0.53975 0.190458 1.04613 +0.617988 0.17958 1.04653 +0.713716 0.162405 1.04716 +0.732317 0.15746 1.18713 +0.712107 0.154008 1.0922 +0.757651 0.154008 1.0922 +0.471768 0.15746 1.18713 +0.456079 0.161993 1.18696 +0.449272 0.159163 1.0922 +0.466226 0.154008 1.0922 +0.45085 0.166525 1.1868 +0.443632 0.164315 1.0922 +0.45085 0.171058 1.18663 +0.443646 0.169465 1.0922 +0.456079 0.180123 1.1863 +0.449326 0.179757 1.0922 +0.466538 0.184656 1.18614 +0.460641 0.1849 1.0922 +0.492685 0.189189 1.18597 +0.488902 0.19004 1.0922 +0.53975 0.189189 1.18597 +0.53975 0.19004 1.0922 +0.605305 0.180123 1.1863 +0.613844 0.179757 1.0922 +0.712107 0.162163 1.0922 +0.688729 0.161152 1.28866 +0.484446 0.161152 1.28866 +0.471684 0.164325 1.28854 +0.467429 0.167498 1.28843 +0.467429 0.170671 1.28831 +0.471684 0.177016 1.28808 +0.480192 0.180189 1.28797 +0.501463 0.183362 1.28785 +0.53975 0.183362 1.28785 +0.590466 0.177016 1.28808 +0.644948 0.16346 1.35212 +0.499194 0.16346 1.35212 +0.489834 0.165575 1.35204 +0.486715 0.16769 1.35196 +0.486715 0.169805 1.35189 +0.489834 0.174036 1.35173 +0.496074 0.176151 1.35166 +0.511672 0.178266 1.35158 +0.53975 0.178266 1.35158 +0.575562 0.174036 1.35173 +0.6096 0.164613 1.38385 +0.513066 0.164613 1.38385 +0.506908 0.1662 1.38379 +0.504855 0.167786 1.38373 +0.504855 0.169373 1.38367 +0.506908 0.172546 1.38356 +0.511013 0.174132 1.3835 +0.521276 0.175718 1.38344 +0.53975 0.175718 1.38344 +0.563529 0.172546 1.38356 +0.5842 0.165075 1.39654 +0.522713 0.165075 1.39654 +0.518782 0.166344 1.39649 +0.517471 0.167613 1.39645 +0.517471 0.168882 1.3964 +0.518782 0.171421 1.39631 +0.521403 0.17269 1.39626 +0.527955 0.173959 1.39622 +0.53975 0.173959 1.39622 +0.554882 0.171421 1.39631 +0.56515 0.166073 1.40288 +0.530746 0.166073 1.40288 +0.528668 0.167021 1.40284 +0.527975 0.167969 1.4028 +0.527975 0.168917 1.40277 +0.528668 0.170813 1.40269 +0.530053 0.171761 1.40265 +0.533516 0.172709 1.40262 +0.53975 0.172709 1.40262 +0.548397 0.170813 1.40269 +0.540564 0.168414 1.40793 +0.713703 0.152383 1.04752 +0.727528 0.138307 0.660425 +0.719369 0.146614 0.888874 +0.735007 0.130692 -0.451014 +0.83185 0.130692 -0.451014 +0.43815 0.137038 -0.450783 +0.4572 0.130692 -0.451014 +0.4318 0.143384 -0.450552 +0.4318 0.14973 -0.450321 +0.43815 0.162421 -0.44986 +0.45085 0.168767 -0.449629 +0.4826 0.175113 -0.449398 +0.53975 0.175113 -0.449398 +0.639188 0.162421 -0.44986 +0.735027 0.146638 -0.450434 +0.43815 0.144653 -0.660195 +0.4572 0.138307 -0.660425 +0.4318 0.150999 -0.659964 +0.4318 0.157344 -0.659733 +0.43815 0.170036 -0.659272 +0.45085 0.176382 -0.659041 +0.4826 0.182728 -0.65881 +0.53975 0.182728 -0.65881 +0.634865 0.170036 -0.659272 +0.727548 0.154078 -0.659852 +0.440269 0.15296 -0.888644 +0.458922 0.146614 -0.888874 +0.434051 0.159306 -0.888413 +0.434051 0.165652 -0.888182 +0.440269 0.178343 -0.887721 +0.452704 0.184689 -0.88749 +0.483792 0.191035 -0.887259 +0.53975 0.191035 -0.887259 +0.627466 0.178343 -0.887721 +0.719388 0.161182 -0.888345 +0.446049 0.157822 -1.04732 +0.463618 0.152383 -1.04752 +0.440192 0.163262 -1.04712 +0.440192 0.168701 -1.04693 +0.446049 0.17958 -1.04653 +0.457761 0.185019 -1.04633 +0.487043 0.190458 -1.04613 +0.53975 0.190458 -1.04613 +0.617988 0.17958 -1.04653 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.712107 0.154008 -1.0922 +0.732317 0.15746 -1.18713 +0.466226 0.154008 -1.0922 +0.449272 0.159163 -1.0922 +0.456079 0.161993 -1.18696 +0.471768 0.15746 -1.18713 +0.443632 0.164315 -1.0922 +0.45085 0.166525 -1.1868 +0.443646 0.169465 -1.0922 +0.45085 0.171058 -1.18663 +0.449326 0.179757 -1.0922 +0.456079 0.180123 -1.1863 +0.460641 0.1849 -1.0922 +0.466538 0.184656 -1.18614 +0.488902 0.19004 -1.0922 +0.492685 0.189189 -1.18597 +0.53975 0.19004 -1.0922 +0.53975 0.189189 -1.18597 +0.613844 0.179757 -1.0922 +0.605305 0.180123 -1.1863 +0.712107 0.162163 -1.0922 +0.484446 0.161152 -1.28866 +0.688729 0.161152 -1.28866 +0.471684 0.164325 -1.28854 +0.467429 0.167498 -1.28843 +0.467429 0.170671 -1.28831 +0.471684 0.177016 -1.28808 +0.480192 0.180189 -1.28797 +0.501463 0.183362 -1.28785 +0.53975 0.183362 -1.28785 +0.590466 0.177016 -1.28808 +0.499194 0.16346 -1.35212 +0.644948 0.16346 -1.35212 +0.489834 0.165575 -1.35204 +0.486715 0.16769 -1.35196 +0.486715 0.169805 -1.35189 +0.489834 0.174036 -1.35173 +0.496074 0.176151 -1.35166 +0.511672 0.178266 -1.35158 +0.53975 0.178266 -1.35158 +0.575562 0.174036 -1.35173 +0.513066 0.164613 -1.38385 +0.6096 0.164613 -1.38385 +0.506908 0.1662 -1.38379 +0.504855 0.167786 -1.38373 +0.504855 0.169373 -1.38367 +0.506908 0.172546 -1.38356 +0.511013 0.174132 -1.3835 +0.521276 0.175718 -1.38344 +0.53975 0.175718 -1.38344 +0.563529 0.172546 -1.38356 +0.522713 0.165075 -1.39654 +0.5842 0.165075 -1.39654 +0.518782 0.166344 -1.39649 +0.517471 0.167613 -1.39645 +0.517471 0.168882 -1.3964 +0.518782 0.171421 -1.39631 +0.521403 0.17269 -1.39626 +0.527955 0.173959 -1.39622 +0.53975 0.173959 -1.39622 +0.554882 0.171421 -1.39631 +0.530746 0.166073 -1.40288 +0.56515 0.166073 -1.40288 +0.528668 0.167021 -1.40284 +0.527975 0.167969 -1.4028 +0.527975 0.168917 -1.40277 +0.528668 0.170813 -1.40269 +0.530053 0.171761 -1.40265 +0.533516 0.172709 -1.40262 +0.53975 0.172709 -1.40262 +0.548397 0.170813 -1.40269 +0.540564 0.168414 -1.40793 +0.713703 0.152383 -1.04752 +0.727528 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +numsurf 268 +SURF 0x10 +mat 1 +refs 3 +0 0.482124 0.574349 +1 0.482124 0.664243 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 4 +3 0.482124 0.922917 +4 0.482124 0.941263 +5 0.699005 0.941263 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 4 +4 0.482124 0.941263 +7 0.482124 0.946767 +8 0.699005 0.946767 +5 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +7 0.482124 0.946767 +9 0.482124 0.946767 +10 0.699005 0.946767 +8 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +9 0.482124 0.946767 +11 0.483423 0.941263 +12 0.699005 0.941263 +10 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +11 0.483423 0.941263 +13 0.483423 0.929338 +14 0.699005 0.929338 +12 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +13 0.483423 0.929338 +15 0.483423 0.899985 +16 0.699005 0.899985 +14 0.699005 0.929338 +SURF 0x10 +mat 1 +refs 4 +15 0.483423 0.899985 +17 0.483423 0.846783 +18 0.699005 0.846783 +16 0.699005 0.899985 +SURF 0x10 +mat 1 +refs 4 +17 0.483423 0.846783 +19 0.483423 0.753219 +20 0.699005 0.751385 +18 0.699005 0.846783 +SURF 0x10 +mat 1 +refs 3 +19 0.483423 0.753219 +21 0.482124 0.664243 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 4 +22 0.382125 0.922917 +23 0.382125 0.941263 +4 0.482124 0.941263 +3 0.482124 0.922917 +SURF 0x10 +mat 1 +refs 4 +23 0.382125 0.941263 +24 0.382125 0.946767 +7 0.482124 0.946767 +4 0.482124 0.941263 +SURF 0x10 +mat 1 +refs 4 +24 0.382125 0.946767 +25 0.382125 0.946767 +9 0.482124 0.946767 +7 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +25 0.382125 0.946767 +26 0.382125 0.941263 +11 0.483423 0.941263 +9 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +26 0.382125 0.941263 +27 0.382125 0.929338 +13 0.483423 0.929338 +11 0.483423 0.941263 +SURF 0x10 +mat 1 +refs 4 +27 0.382125 0.929338 +28 0.382125 0.899985 +15 0.483423 0.899985 +13 0.483423 0.929338 +SURF 0x10 +mat 1 +refs 4 +28 0.382125 0.899985 +29 0.382125 0.846783 +17 0.483423 0.846783 +15 0.483423 0.899985 +SURF 0x10 +mat 1 +refs 4 +29 0.382125 0.846783 +30 0.382125 0.757806 +19 0.483423 0.753219 +17 0.483423 0.846783 +SURF 0x10 +mat 1 +refs 4 +30 0.382125 0.757806 +31 0.382125 0.671581 +21 0.482124 0.664243 +19 0.483423 0.753219 +SURF 0x10 +mat 1 +refs 4 +32 0.271736 0.922 +33 0.271736 0.939428 +23 0.382125 0.941263 +22 0.382125 0.922917 +SURF 0x10 +mat 1 +refs 4 +33 0.271736 0.939428 +34 0.271736 0.944932 +24 0.382125 0.946767 +23 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +34 0.271736 0.944932 +35 0.271736 0.944932 +25 0.382125 0.946767 +24 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +35 0.271736 0.944932 +36 0.273035 0.939428 +26 0.382125 0.941263 +25 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +36 0.273035 0.939428 +37 0.273035 0.927504 +27 0.382125 0.929338 +26 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +37 0.273035 0.927504 +38 0.273035 0.898151 +28 0.382125 0.899985 +27 0.382125 0.929338 +SURF 0x10 +mat 1 +refs 4 +38 0.273035 0.898151 +39 0.273035 0.846783 +29 0.382125 0.846783 +28 0.382125 0.899985 +SURF 0x10 +mat 1 +refs 4 +39 0.273035 0.846783 +40 0.273035 0.764227 +30 0.382125 0.757806 +29 0.382125 0.846783 +SURF 0x10 +mat 1 +refs 4 +40 0.273035 0.764227 +41 0.271736 0.678919 +31 0.382125 0.671581 +30 0.382125 0.757806 +SURF 0x10 +mat 1 +refs 4 +42 0.195114 0.917414 +43 0.195114 0.933925 +33 0.271736 0.939428 +32 0.271736 0.922 +SURF 0x10 +mat 1 +refs 4 +43 0.195114 0.933925 +44 0.196413 0.939428 +34 0.271736 0.944932 +33 0.271736 0.939428 +SURF 0x10 +mat 1 +refs 4 +44 0.196413 0.939428 +45 0.196413 0.939428 +35 0.271736 0.944932 +34 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +45 0.196413 0.939428 +46 0.196413 0.933925 +36 0.273035 0.939428 +35 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +46 0.196413 0.933925 +47 0.196413 0.922917 +37 0.273035 0.927504 +36 0.273035 0.939428 +SURF 0x10 +mat 1 +refs 4 +47 0.196413 0.922917 +48 0.196413 0.895399 +38 0.273035 0.898151 +37 0.273035 0.927504 +SURF 0x10 +mat 1 +refs 4 +48 0.196413 0.895399 +49 0.196413 0.846783 +39 0.273035 0.846783 +38 0.273035 0.898151 +SURF 0x10 +mat 1 +refs 4 +49 0.196413 0.846783 +50 0.196413 0.7734 +40 0.273035 0.764227 +39 0.273035 0.846783 +SURF 0x10 +mat 1 +refs 4 +50 0.196413 0.7734 +51 0.196413 0.684423 +41 0.271736 0.678919 +40 0.273035 0.764227 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +53 0.174335 0.68534 +54 0.174335 0.643145 +SURF 0x10 +mat 1 +refs 4 +55 0.128881 0.910075 +56 0.128881 0.924752 +57 0.174335 0.931173 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +56 0.128881 0.924752 +59 0.128881 0.929338 +60 0.174335 0.935759 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +59 0.128881 0.929338 +61 0.128881 0.929338 +62 0.174335 0.935759 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +61 0.128881 0.929338 +63 0.128881 0.924752 +64 0.174335 0.930256 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +63 0.128881 0.924752 +65 0.128881 0.914662 +66 0.174335 0.920165 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +65 0.128881 0.914662 +67 0.128881 0.889895 +68 0.174335 0.893564 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +67 0.128881 0.889895 +69 0.128881 0.846783 +70 0.174335 0.846783 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +69 0.128881 0.846783 +71 0.128881 0.785324 +72 0.174335 0.777069 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +73 0.174335 0.68534 +72 0.174335 0.777069 +SURF 0x10 +mat 1 +refs 4 +74 0.0795305 0.707355 +75 0.0795305 0.898151 +55 0.128881 0.910075 +52 0.128881 0.666994 +SURF 0x10 +mat 1 +refs 4 +75 0.0795305 0.898151 +76 0.0795305 0.910075 +56 0.128881 0.924752 +55 0.128881 0.910075 +SURF 0x10 +mat 1 +refs 4 +76 0.0795305 0.910075 +77 0.0795305 0.913744 +59 0.128881 0.929338 +56 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +77 0.0795305 0.913744 +78 0.0795305 0.913744 +61 0.128881 0.929338 +59 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +78 0.0795305 0.913744 +79 0.0795305 0.910075 +63 0.128881 0.924752 +61 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +79 0.0795305 0.910075 +80 0.0795305 0.90182 +65 0.128881 0.914662 +63 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +80 0.0795305 0.90182 +81 0.0795305 0.881639 +67 0.128881 0.889895 +65 0.128881 0.914662 +SURF 0x10 +mat 1 +refs 4 +81 0.0795305 0.881639 +82 0.0795305 0.846783 +69 0.128881 0.846783 +67 0.128881 0.889895 +SURF 0x10 +mat 1 +refs 4 +82 0.0795305 0.846783 +83 0.0795305 0.799084 +71 0.128881 0.785324 +69 0.128881 0.846783 +SURF 0x10 +mat 1 +refs 4 +83 0.0795305 0.799084 +74 0.0795305 0.707355 +52 0.128881 0.666994 +71 0.128881 0.785324 +SURF 0x10 +mat 1 +refs 4 +84 0.0509594 0.748633 +85 0.0509594 0.884391 +75 0.0795305 0.898151 +74 0.0795305 0.707355 +SURF 0x10 +mat 1 +refs 4 +85 0.0509594 0.884391 +86 0.0509594 0.892647 +76 0.0795305 0.910075 +75 0.0795305 0.898151 +SURF 0x10 +mat 1 +refs 4 +86 0.0509594 0.892647 +87 0.0509594 0.895399 +77 0.0795305 0.913744 +76 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +87 0.0509594 0.895399 +88 0.0509594 0.895399 +78 0.0795305 0.913744 +77 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +88 0.0509594 0.895399 +89 0.0509594 0.892647 +79 0.0795305 0.910075 +78 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +89 0.0509594 0.892647 +90 0.0509594 0.887143 +80 0.0795305 0.90182 +79 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +90 0.0509594 0.887143 +91 0.0509594 0.872467 +81 0.0795305 0.881639 +80 0.0795305 0.90182 +SURF 0x10 +mat 1 +refs 4 +91 0.0509594 0.872467 +92 0.0509594 0.846783 +82 0.0795305 0.846783 +81 0.0795305 0.881639 +SURF 0x10 +mat 1 +refs 4 +92 0.0509594 0.846783 +93 0.0509594 0.812843 +83 0.0795305 0.799084 +82 0.0795305 0.846783 +SURF 0x10 +mat 1 +refs 4 +93 0.0509594 0.812843 +84 0.0509594 0.748633 +74 0.0795305 0.707355 +83 0.0795305 0.799084 +SURF 0x10 +mat 1 +refs 4 +94 0.0353751 0.781655 +95 0.0353751 0.871549 +85 0.0509594 0.884391 +84 0.0509594 0.748633 +SURF 0x10 +mat 1 +refs 4 +95 0.0353751 0.871549 +96 0.0353751 0.877053 +86 0.0509594 0.892647 +85 0.0509594 0.884391 +SURF 0x10 +mat 1 +refs 4 +96 0.0353751 0.877053 +97 0.0353751 0.878888 +87 0.0509594 0.895399 +86 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +97 0.0353751 0.878888 +98 0.0353751 0.878888 +88 0.0509594 0.895399 +87 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +98 0.0353751 0.878888 +99 0.0353751 0.877053 +89 0.0509594 0.892647 +88 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +99 0.0353751 0.877053 +100 0.0353751 0.873384 +90 0.0509594 0.887143 +89 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +100 0.0353751 0.873384 +101 0.0353751 0.863294 +91 0.0509594 0.872467 +90 0.0509594 0.887143 +SURF 0x10 +mat 1 +refs 4 +101 0.0353751 0.863294 +102 0.0353751 0.846783 +92 0.0509594 0.846783 +91 0.0509594 0.872467 +SURF 0x10 +mat 1 +refs 4 +102 0.0353751 0.846783 +103 0.0353751 0.82385 +93 0.0509594 0.812843 +92 0.0509594 0.846783 +SURF 0x10 +mat 1 +refs 4 +103 0.0353751 0.82385 +94 0.0353751 0.781655 +84 0.0509594 0.748633 +93 0.0509594 0.812843 +SURF 0x10 +mat 1 +refs 4 +104 0.0288817 0.804587 +105 0.0288817 0.862376 +95 0.0353751 0.871549 +94 0.0353751 0.781655 +SURF 0x10 +mat 1 +refs 4 +105 0.0288817 0.862376 +106 0.0288817 0.866046 +96 0.0353751 0.877053 +95 0.0353751 0.871549 +SURF 0x10 +mat 1 +refs 4 +106 0.0288817 0.866046 +107 0.0288817 0.866963 +97 0.0353751 0.878888 +96 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +107 0.0288817 0.866963 +108 0.0288817 0.866963 +98 0.0353751 0.878888 +97 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +108 0.0288817 0.866963 +109 0.0288817 0.866046 +99 0.0353751 0.877053 +98 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +109 0.0288817 0.866046 +110 0.0288817 0.863294 +100 0.0353751 0.873384 +99 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +110 0.0288817 0.863294 +111 0.0288817 0.85779 +101 0.0353751 0.863294 +100 0.0353751 0.873384 +SURF 0x10 +mat 1 +refs 4 +111 0.0288817 0.85779 +112 0.0288817 0.846783 +102 0.0353751 0.846783 +101 0.0353751 0.863294 +SURF 0x10 +mat 1 +refs 4 +112 0.0288817 0.846783 +113 0.0288817 0.832106 +103 0.0353751 0.82385 +102 0.0353751 0.846783 +SURF 0x10 +mat 1 +refs 4 +113 0.0288817 0.832106 +104 0.0288817 0.804587 +94 0.0353751 0.781655 +103 0.0353751 0.82385 +SURF 0x10 +mat 1 +refs 4 +114 0.0262843 0.822933 +115 0.0262843 0.855038 +105 0.0288817 0.862376 +104 0.0288817 0.804587 +SURF 0x10 +mat 1 +refs 4 +115 0.0262843 0.855038 +116 0.0262843 0.856873 +106 0.0288817 0.866046 +105 0.0288817 0.862376 +SURF 0x10 +mat 1 +refs 4 +116 0.0262843 0.856873 +117 0.0262843 0.85779 +107 0.0288817 0.866963 +106 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +117 0.0262843 0.85779 +118 0.0262843 0.85779 +108 0.0288817 0.866963 +107 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +118 0.0262843 0.85779 +119 0.0262843 0.856873 +109 0.0288817 0.866046 +108 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +119 0.0262843 0.856873 +120 0.0262843 0.855038 +110 0.0288817 0.863294 +109 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +120 0.0262843 0.855038 +121 0.0262843 0.852286 +111 0.0288817 0.85779 +110 0.0288817 0.863294 +SURF 0x10 +mat 1 +refs 4 +121 0.0262843 0.852286 +122 0.0262843 0.846783 +112 0.0288817 0.846783 +111 0.0288817 0.85779 +SURF 0x10 +mat 1 +refs 4 +122 0.0262843 0.846783 +123 0.0262843 0.838527 +113 0.0288817 0.832106 +112 0.0288817 0.846783 +SURF 0x10 +mat 1 +refs 4 +123 0.0262843 0.838527 +114 0.0262843 0.822933 +104 0.0288817 0.804587 +113 0.0288817 0.832106 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +115 0.0262843 0.855038 +114 0.0262843 0.822933 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +116 0.0262843 0.856873 +115 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +117 0.0262843 0.85779 +116 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +118 0.0262843 0.85779 +117 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +119 0.0262843 0.856873 +118 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +120 0.0262843 0.855038 +119 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +121 0.0262843 0.852286 +120 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +122 0.0262843 0.846783 +121 0.0262843 0.852286 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +123 0.0262843 0.838527 +122 0.0262843 0.846783 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +114 0.0262843 0.822933 +123 0.0262843 0.838527 +SURF 0x10 +mat 1 +refs 4 +58 0.174335 0.914662 +42 0.195114 0.917414 +125 0.195114 0.684423 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +57 0.174335 0.931173 +43 0.195114 0.933925 +42 0.195114 0.917414 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +60 0.174335 0.935759 +44 0.196413 0.939428 +43 0.195114 0.933925 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +62 0.174335 0.935759 +45 0.196413 0.939428 +44 0.196413 0.939428 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +64 0.174335 0.930256 +46 0.196413 0.933925 +45 0.196413 0.939428 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +66 0.174335 0.920165 +47 0.196413 0.922917 +46 0.196413 0.933925 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +68 0.174335 0.893564 +48 0.196413 0.895399 +47 0.196413 0.922917 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +70 0.174335 0.846783 +49 0.196413 0.846783 +48 0.196413 0.895399 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +72 0.174335 0.777069 +50 0.196413 0.7734 +49 0.196413 0.846783 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 4 +126 0.382125 0.671581 +22 0.382125 0.922917 +3 0.482124 0.922917 +1 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +127 0.271736 0.678919 +32 0.271736 0.922 +22 0.382125 0.922917 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +125 0.195114 0.684423 +42 0.195114 0.917414 +32 0.271736 0.922 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +50 0.196413 0.7734 +72 0.174335 0.777069 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +2 0.699005 0.567928 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +0 0.482124 0.574349 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +6 0.699005 0.922917 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +3 0.482124 0.922917 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +55 0.128881 0.910075 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +55 0.128881 0.910075 +58 0.174335 0.914662 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +54 0.174335 0.643145 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +52 0.128881 0.666994 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +1 0.482124 0.664243 +21 0.482124 0.664243 +31 0.382125 0.671581 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +0 0.482124 0.574349 +21 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +31 0.382125 0.671581 +41 0.271736 0.678919 +127 0.271736 0.678919 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +41 0.271736 0.678919 +51 0.196413 0.684423 +125 0.195114 0.684423 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +73 0.174335 0.68534 +53 0.174335 0.68534 +125 0.195114 0.684423 +SURF 0x10 +mat 1 +refs 3 +73 0.174335 0.68534 +54 0.174335 0.643145 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +128 0.480295 0.664116 +129 0.480295 0.574611 +SURF 0x10 +mat 1 +refs 4 +6 0.695816 0.921673 +5 0.695816 0.939939 +130 0.480295 0.939939 +131 0.480295 0.921673 +SURF 0x10 +mat 1 +refs 4 +5 0.695816 0.939939 +8 0.695816 0.945419 +132 0.480295 0.945419 +130 0.480295 0.939939 +SURF 0x10 +mat 1 +refs 4 +8 0.695816 0.945419 +10 0.695816 0.945419 +133 0.480295 0.945419 +132 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +10 0.695816 0.945419 +12 0.695816 0.939939 +134 0.481585 0.939939 +133 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +12 0.695816 0.939939 +14 0.695816 0.928066 +135 0.481585 0.928066 +134 0.481585 0.939939 +SURF 0x10 +mat 1 +refs 4 +14 0.695816 0.928066 +16 0.695816 0.89884 +136 0.481585 0.89884 +135 0.481585 0.928066 +SURF 0x10 +mat 1 +refs 4 +16 0.695816 0.89884 +18 0.695816 0.845867 +137 0.481585 0.845867 +136 0.481585 0.89884 +SURF 0x10 +mat 1 +refs 4 +18 0.695816 0.845867 +20 0.695816 0.750882 +138 0.481585 0.752708 +137 0.481585 0.845867 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +139 0.480295 0.664116 +138 0.481585 0.752708 +SURF 0x10 +mat 1 +refs 4 +131 0.480295 0.921673 +130 0.480295 0.939939 +140 0.380923 0.939939 +141 0.380923 0.921673 +SURF 0x10 +mat 1 +refs 4 +130 0.480295 0.939939 +132 0.480295 0.945419 +142 0.380923 0.945419 +140 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +132 0.480295 0.945419 +133 0.480295 0.945419 +143 0.380923 0.945419 +142 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +133 0.480295 0.945419 +134 0.481585 0.939939 +144 0.380923 0.939939 +143 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +134 0.481585 0.939939 +135 0.481585 0.928066 +145 0.380923 0.928066 +144 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +135 0.481585 0.928066 +136 0.481585 0.89884 +146 0.380923 0.89884 +145 0.380923 0.928066 +SURF 0x10 +mat 1 +refs 4 +136 0.481585 0.89884 +137 0.481585 0.845867 +147 0.380923 0.845867 +146 0.380923 0.89884 +SURF 0x10 +mat 1 +refs 4 +137 0.481585 0.845867 +138 0.481585 0.752708 +148 0.380923 0.757275 +147 0.380923 0.845867 +SURF 0x10 +mat 1 +refs 4 +138 0.481585 0.752708 +139 0.480295 0.664116 +149 0.380923 0.671422 +148 0.380923 0.757275 +SURF 0x10 +mat 1 +refs 4 +141 0.380923 0.921673 +140 0.380923 0.939939 +150 0.271226 0.938113 +151 0.271226 0.920759 +SURF 0x10 +mat 1 +refs 4 +140 0.380923 0.939939 +142 0.380923 0.945419 +152 0.271226 0.943593 +150 0.271226 0.938113 +SURF 0x10 +mat 1 +refs 4 +142 0.380923 0.945419 +143 0.380923 0.945419 +153 0.271226 0.943593 +152 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +143 0.380923 0.945419 +144 0.380923 0.939939 +154 0.272517 0.938113 +153 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +144 0.380923 0.939939 +145 0.380923 0.928066 +155 0.272517 0.926239 +154 0.272517 0.938113 +SURF 0x10 +mat 1 +refs 4 +145 0.380923 0.928066 +146 0.380923 0.89884 +156 0.272517 0.897013 +155 0.272517 0.926239 +SURF 0x10 +mat 1 +refs 4 +146 0.380923 0.89884 +147 0.380923 0.845867 +157 0.272517 0.845867 +156 0.272517 0.897013 +SURF 0x10 +mat 1 +refs 4 +147 0.380923 0.845867 +148 0.380923 0.757275 +158 0.272517 0.763668 +157 0.272517 0.845867 +SURF 0x10 +mat 1 +refs 4 +148 0.380923 0.757275 +149 0.380923 0.671422 +159 0.271226 0.678729 +158 0.272517 0.763668 +SURF 0x10 +mat 1 +refs 4 +151 0.271226 0.920759 +150 0.271226 0.938113 +160 0.195084 0.932633 +161 0.195084 0.916193 +SURF 0x10 +mat 1 +refs 4 +150 0.271226 0.938113 +152 0.271226 0.943593 +162 0.196375 0.938113 +160 0.195084 0.932633 +SURF 0x10 +mat 1 +refs 4 +152 0.271226 0.943593 +153 0.271226 0.943593 +163 0.196375 0.938113 +162 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +153 0.271226 0.943593 +154 0.272517 0.938113 +164 0.196375 0.932633 +163 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +154 0.272517 0.938113 +155 0.272517 0.926239 +165 0.196375 0.921673 +164 0.196375 0.932633 +SURF 0x10 +mat 1 +refs 4 +155 0.272517 0.926239 +156 0.272517 0.897013 +166 0.196375 0.894273 +165 0.196375 0.921673 +SURF 0x10 +mat 1 +refs 4 +156 0.272517 0.897013 +157 0.272517 0.845867 +167 0.196375 0.845867 +166 0.196375 0.894273 +SURF 0x10 +mat 1 +refs 4 +157 0.272517 0.845867 +158 0.272517 0.763668 +168 0.196375 0.772801 +167 0.196375 0.845867 +SURF 0x10 +mat 1 +refs 4 +158 0.272517 0.763668 +159 0.271226 0.678729 +169 0.196375 0.684209 +168 0.196375 0.772801 +SURF 0x10 +mat 1 +refs 3 +170 0.174435 0.64311 +171 0.174435 0.685122 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +174 0.174435 0.929893 +175 0.129266 0.9235 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +177 0.174435 0.934459 +178 0.129266 0.928066 +175 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +179 0.174435 0.934459 +180 0.129266 0.928066 +178 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +181 0.174435 0.928979 +182 0.129266 0.9235 +180 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +183 0.174435 0.918933 +184 0.129266 0.913453 +182 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +185 0.174435 0.892447 +186 0.129266 0.888793 +184 0.129266 0.913453 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +187 0.174435 0.845867 +188 0.129266 0.845867 +186 0.129266 0.888793 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +189 0.174435 0.776455 +190 0.129266 0.784674 +188 0.129266 0.845867 +SURF 0x10 +mat 1 +refs 3 +189 0.174435 0.776455 +191 0.174435 0.685122 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +172 0.129266 0.666856 +176 0.129266 0.908886 +192 0.0802255 0.897013 +193 0.0802255 0.707042 +SURF 0x10 +mat 1 +refs 4 +176 0.129266 0.908886 +175 0.129266 0.9235 +194 0.0802255 0.908886 +192 0.0802255 0.897013 +SURF 0x10 +mat 1 +refs 4 +175 0.129266 0.9235 +178 0.129266 0.928066 +195 0.0802255 0.91254 +194 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +178 0.129266 0.928066 +180 0.129266 0.928066 +196 0.0802255 0.91254 +195 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +180 0.129266 0.928066 +182 0.129266 0.9235 +197 0.0802255 0.908886 +196 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +182 0.129266 0.9235 +184 0.129266 0.913453 +198 0.0802255 0.900666 +197 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +184 0.129266 0.913453 +186 0.129266 0.888793 +199 0.0802255 0.880573 +198 0.0802255 0.900666 +SURF 0x10 +mat 1 +refs 4 +186 0.129266 0.888793 +188 0.129266 0.845867 +200 0.0802255 0.845867 +199 0.0802255 0.880573 +SURF 0x10 +mat 1 +refs 4 +188 0.129266 0.845867 +190 0.129266 0.784674 +201 0.0802255 0.798374 +200 0.0802255 0.845867 +SURF 0x10 +mat 1 +refs 4 +190 0.129266 0.784674 +172 0.129266 0.666856 +193 0.0802255 0.707042 +201 0.0802255 0.798374 +SURF 0x10 +mat 1 +refs 4 +193 0.0802255 0.707042 +192 0.0802255 0.897013 +202 0.050543 0.883313 +203 0.050543 0.748142 +SURF 0x10 +mat 1 +refs 4 +192 0.0802255 0.897013 +194 0.0802255 0.908886 +204 0.050543 0.891533 +202 0.050543 0.883313 +SURF 0x10 +mat 1 +refs 4 +194 0.0802255 0.908886 +195 0.0802255 0.91254 +205 0.050543 0.894273 +204 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +195 0.0802255 0.91254 +196 0.0802255 0.91254 +206 0.050543 0.894273 +205 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +196 0.0802255 0.91254 +197 0.0802255 0.908886 +207 0.050543 0.891533 +206 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +197 0.0802255 0.908886 +198 0.0802255 0.900666 +208 0.050543 0.886053 +207 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +198 0.0802255 0.900666 +199 0.0802255 0.880573 +209 0.050543 0.87144 +208 0.050543 0.886053 +SURF 0x10 +mat 1 +refs 4 +199 0.0802255 0.880573 +200 0.0802255 0.845867 +210 0.050543 0.845867 +209 0.050543 0.87144 +SURF 0x10 +mat 1 +refs 4 +200 0.0802255 0.845867 +201 0.0802255 0.798374 +211 0.050543 0.812074 +210 0.050543 0.845867 +SURF 0x10 +mat 1 +refs 4 +201 0.0802255 0.798374 +193 0.0802255 0.707042 +203 0.050543 0.748142 +211 0.050543 0.812074 +SURF 0x10 +mat 1 +refs 4 +203 0.050543 0.748142 +202 0.050543 0.883313 +212 0.0350563 0.870527 +213 0.0350563 0.781021 +SURF 0x10 +mat 1 +refs 4 +202 0.050543 0.883313 +204 0.050543 0.891533 +214 0.0350563 0.876007 +212 0.0350563 0.870527 +SURF 0x10 +mat 1 +refs 4 +204 0.050543 0.891533 +205 0.050543 0.894273 +215 0.0350563 0.877833 +214 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +205 0.050543 0.894273 +206 0.050543 0.894273 +216 0.0350563 0.877833 +215 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +206 0.050543 0.894273 +207 0.050543 0.891533 +217 0.0350563 0.876007 +216 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +207 0.050543 0.891533 +208 0.050543 0.886053 +218 0.0350563 0.872353 +217 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +208 0.050543 0.886053 +209 0.050543 0.87144 +219 0.0350563 0.862307 +218 0.0350563 0.872353 +SURF 0x10 +mat 1 +refs 4 +209 0.050543 0.87144 +210 0.050543 0.845867 +220 0.0350563 0.845867 +219 0.0350563 0.862307 +SURF 0x10 +mat 1 +refs 4 +210 0.050543 0.845867 +211 0.050543 0.812074 +221 0.0350563 0.823034 +220 0.0350563 0.845867 +SURF 0x10 +mat 1 +refs 4 +211 0.050543 0.812074 +203 0.050543 0.748142 +213 0.0350563 0.781021 +221 0.0350563 0.823034 +SURF 0x10 +mat 1 +refs 4 +213 0.0350563 0.781021 +212 0.0350563 0.870527 +222 0.0286036 0.861394 +223 0.0286036 0.803854 +SURF 0x10 +mat 1 +refs 4 +212 0.0350563 0.870527 +214 0.0350563 0.876007 +224 0.0286036 0.865047 +222 0.0286036 0.861394 +SURF 0x10 +mat 1 +refs 4 +214 0.0350563 0.876007 +215 0.0350563 0.877833 +225 0.0286036 0.86596 +224 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +215 0.0350563 0.877833 +216 0.0350563 0.877833 +226 0.0286036 0.86596 +225 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +216 0.0350563 0.877833 +217 0.0350563 0.876007 +227 0.0286036 0.865047 +226 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +217 0.0350563 0.876007 +218 0.0350563 0.872353 +228 0.0286036 0.862307 +227 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +218 0.0350563 0.872353 +219 0.0350563 0.862307 +229 0.0286036 0.856827 +228 0.0286036 0.862307 +SURF 0x10 +mat 1 +refs 4 +219 0.0350563 0.862307 +220 0.0350563 0.845867 +230 0.0286036 0.845867 +229 0.0286036 0.856827 +SURF 0x10 +mat 1 +refs 4 +220 0.0350563 0.845867 +221 0.0350563 0.823034 +231 0.0286036 0.831254 +230 0.0286036 0.845867 +SURF 0x10 +mat 1 +refs 4 +221 0.0350563 0.823034 +213 0.0350563 0.781021 +223 0.0286036 0.803854 +231 0.0286036 0.831254 +SURF 0x10 +mat 1 +refs 4 +223 0.0286036 0.803854 +222 0.0286036 0.861394 +232 0.0260225 0.854087 +233 0.0260225 0.822121 +SURF 0x10 +mat 1 +refs 4 +222 0.0286036 0.861394 +224 0.0286036 0.865047 +234 0.0260225 0.855914 +232 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +224 0.0286036 0.865047 +225 0.0286036 0.86596 +235 0.0260225 0.856827 +234 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +225 0.0286036 0.86596 +226 0.0286036 0.86596 +236 0.0260225 0.856827 +235 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +226 0.0286036 0.86596 +227 0.0286036 0.865047 +237 0.0260225 0.855914 +236 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +227 0.0286036 0.865047 +228 0.0286036 0.862307 +238 0.0260225 0.854087 +237 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +228 0.0286036 0.862307 +229 0.0286036 0.856827 +239 0.0260225 0.851347 +238 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +229 0.0286036 0.856827 +230 0.0286036 0.845867 +240 0.0260225 0.845867 +239 0.0260225 0.851347 +SURF 0x10 +mat 1 +refs 4 +230 0.0286036 0.845867 +231 0.0286036 0.831254 +241 0.0260225 0.837647 +240 0.0260225 0.845867 +SURF 0x10 +mat 1 +refs 4 +231 0.0286036 0.831254 +223 0.0286036 0.803854 +233 0.0260225 0.822121 +241 0.0260225 0.837647 +SURF 0x10 +mat 1 +refs 3 +233 0.0260225 0.822121 +232 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +232 0.0260225 0.854087 +234 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +234 0.0260225 0.855914 +235 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +235 0.0260225 0.856827 +236 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +236 0.0260225 0.856827 +237 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +237 0.0260225 0.855914 +238 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +238 0.0260225 0.854087 +239 0.0260225 0.851347 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +239 0.0260225 0.851347 +240 0.0260225 0.845867 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +240 0.0260225 0.845867 +241 0.0260225 0.837647 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +241 0.0260225 0.837647 +233 0.0260225 0.822121 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 4 +171 0.174435 0.685122 +243 0.195084 0.684209 +161 0.195084 0.916193 +173 0.174435 0.913453 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +161 0.195084 0.916193 +160 0.195084 0.932633 +174 0.174435 0.929893 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +160 0.195084 0.932633 +162 0.196375 0.938113 +177 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +162 0.196375 0.938113 +163 0.196375 0.938113 +179 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +163 0.196375 0.938113 +164 0.196375 0.932633 +181 0.174435 0.928979 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +164 0.196375 0.932633 +165 0.196375 0.921673 +183 0.174435 0.918933 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +165 0.196375 0.921673 +166 0.196375 0.894273 +185 0.174435 0.892447 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +166 0.196375 0.894273 +167 0.196375 0.845867 +187 0.174435 0.845867 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +167 0.196375 0.845867 +168 0.196375 0.772801 +189 0.174435 0.776455 +SURF 0x10 +mat 1 +refs 4 +128 0.480295 0.664116 +131 0.480295 0.921673 +141 0.380923 0.921673 +244 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +141 0.380923 0.921673 +151 0.271226 0.920759 +245 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +151 0.271226 0.920759 +161 0.195084 0.916193 +243 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 4 +191 0.174435 0.685122 +189 0.174435 0.776455 +168 0.196375 0.772801 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +2 0.695816 0.568217 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +129 0.480295 0.574611 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +6 0.695816 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +6 0.695816 0.921673 +131 0.480295 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +176 0.129266 0.908886 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +173 0.174435 0.913453 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +170 0.174435 0.64311 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +172 0.129266 0.666856 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +149 0.380923 0.671422 +139 0.480295 0.664116 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +139 0.480295 0.664116 +129 0.480295 0.574611 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +245 0.271226 0.678729 +159 0.271226 0.678729 +149 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +243 0.195084 0.684209 +169 0.196375 0.684209 +159 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +243 0.195084 0.684209 +171 0.174435 0.685122 +191 0.174435 0.685122 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +170 0.174435 0.64311 +191 0.174435 0.685122 +kids 0 +OBJECT poly +name "Wing_Brace_L" +numvert 16 +0.571227 -0.0984255 0.0574664 +0.571227 0.164205 0.661037 +0.616069 0.164205 0.661037 +0.616069 -0.0984255 0.0574664 +0.618555 -0.100705 0.0584581 +0.618555 0.161926 0.662028 +0.618555 0.157547 0.663934 +0.618555 -0.105083 0.0603633 +0.616069 -0.107362 0.061355 +0.616069 0.155268 0.664925 +0.571227 0.155268 0.664925 +0.571227 -0.107362 0.061355 +0.568741 -0.105083 0.0603633 +0.568741 0.157547 0.663934 +0.568741 0.161926 0.662028 +0.568741 -0.100705 0.0584581 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +8 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +14 0 0 +13 0 0 +10 0 0 +9 0 0 +6 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +5 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +9 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +12 0 0 +11 0 0 +kids 0 +OBJECT poly +name "Wing_Brace_R" +numvert 16 +0.616069 -0.0984255 -0.0574664 +0.616069 0.164205 -0.661037 +0.571227 0.164205 -0.661037 +0.571227 -0.0984255 -0.0574664 +0.618555 -0.105083 -0.0603633 +0.618555 0.157547 -0.663934 +0.618555 0.161926 -0.662028 +0.618555 -0.100705 -0.0584581 +0.571227 -0.107362 -0.061355 +0.571227 0.155268 -0.664925 +0.616069 0.155268 -0.664925 +0.616069 -0.107362 -0.061355 +0.568741 -0.100705 -0.0584581 +0.568741 0.161926 -0.662028 +0.568741 0.157547 -0.663934 +0.568741 -0.105083 -0.0603633 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +8 0 0 +11 0 0 +4 0 0 +7 0 0 +0 0 0 +3 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +6 0 0 +5 0 0 +10 0 0 +9 0 0 +14 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +13 0 0 +12 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +6 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +11 0 0 +10 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +15 0 0 +14 0 0 +9 0 0 +kids 0 +OBJECT poly +name "L_Aileron" +texture "Rascal.rgb" +numvert 15 +0.81915 0.138307 0.660425 +0.727528 0.138307 0.660425 +0.735007 0.130692 0.451014 +0.83185 0.130692 0.451014 +0.797416 0.146614 0.888874 +0.719369 0.146614 0.888874 +0.769575 0.152383 1.04752 +0.713703 0.152383 1.04752 +0.757651 0.154008 1.0922 +0.713716 0.162405 1.04716 +0.712107 0.162163 1.0922 +0.727548 0.154078 0.659852 +0.735027 0.146638 0.450434 +0.719388 0.161182 0.888345 +0.712107 0.154008 1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.382125 0.586273 +1 0.382125 0.671581 +2 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +4 0.271736 0.606454 +5 0.271736 0.678919 +1 0.382125 0.671581 +0 0.382125 0.586273 +SURF 0x10 +mat 1 +refs 4 +6 0.195114 0.632138 +7 0.195114 0.684423 +5 0.271736 0.678919 +4 0.271736 0.606454 +SURF 0x10 +mat 1 +refs 4 +8 0.174335 0.643145 +6 0.195114 0.632138 +9 0.196413 0.684423 +10 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +11 0.382125 0.671581 +0 0.382125 0.586273 +3 0.482124 0.574349 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +13 0.271736 0.678919 +4 0.271736 0.606454 +0 0.382125 0.586273 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +9 0.196413 0.684423 +6 0.195114 0.632138 +4 0.271736 0.606454 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +6 0.195114 0.632138 +8 0.174335 0.643145 +14 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.482124 0.664243 +12 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +2 0.482124 0.664243 +1 0.382125 0.671581 +11 0.382125 0.671581 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +1 0.382125 0.671581 +5 0.271736 0.678919 +13 0.271736 0.678919 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +5 0.271736 0.678919 +7 0.195114 0.684423 +9 0.196413 0.684423 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +14 0.174335 0.68534 +10 0.174335 0.68534 +9 0.196413 0.684423 +SURF 0x10 +mat 1 +refs 3 +14 0.174335 0.68534 +8 0.174335 0.643145 +10 0.174335 0.68534 +kids 0 +OBJECT poly +name "R_Aileron" +texture "Rascal.rgb" +numvert 15 +0.83185 0.130692 -0.451014 +0.735007 0.130692 -0.451014 +0.727528 0.138307 -0.660425 +0.81915 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +0.797416 0.146614 -0.888874 +0.713703 0.152383 -1.04752 +0.769575 0.152383 -1.04752 +0.712107 0.162163 -1.0922 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.735027 0.146638 -0.450434 +0.727548 0.154078 -0.659852 +0.719388 0.161182 -0.888345 +0.712107 0.154008 -1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.480295 0.574611 +1 0.480295 0.664116 +2 0.380923 0.671422 +3 0.380923 0.586484 +SURF 0x10 +mat 1 +refs 4 +3 0.380923 0.586484 +2 0.380923 0.671422 +4 0.271226 0.678729 +5 0.271226 0.606577 +SURF 0x10 +mat 1 +refs 4 +5 0.271226 0.606577 +4 0.271226 0.678729 +6 0.195084 0.684209 +7 0.195084 0.63215 +SURF 0x10 +mat 1 +refs 4 +8 0.174435 0.685122 +9 0.196375 0.684209 +7 0.195084 0.63215 +10 0.174435 0.64311 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +0 0.480295 0.574611 +3 0.380923 0.586484 +12 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +3 0.380923 0.586484 +5 0.271226 0.606577 +13 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +5 0.271226 0.606577 +7 0.195084 0.63215 +9 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 4 +14 0.174435 0.685122 +10 0.174435 0.64311 +7 0.195084 0.63215 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +0 0.480295 0.574611 +11 0.480295 0.664116 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +12 0.380923 0.671422 +2 0.380923 0.671422 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +13 0.271226 0.678729 +4 0.271226 0.678729 +2 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +9 0.196375 0.684209 +6 0.195084 0.684209 +4 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +9 0.196375 0.684209 +8 0.174435 0.685122 +14 0.174435 0.685122 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +8 0.174435 0.685122 +10 0.174435 0.64311 +14 0.174435 0.685122 +kids 0 +OBJECT poly +name "HStab" +texture "Rascal.rgb" +numvert 379 +1.59385 0.0579271 -0.01905 +1.59067 0.0570764 -0.01905 +1.59067 0.0570764 2.90536e-16 +1.59385 0.0579271 2.91315e-16 +1.58835 0.0547521 -0.01905 +1.58835 0.0547521 2.89966e-16 +1.5875 0.0515771 -0.01905 +1.5875 0.0515771 2.8976e-16 +1.58835 0.0484021 -0.01905 +1.58835 0.0484021 2.89966e-16 +1.59067 0.0460779 -0.01905 +1.59067 0.0460779 2.90536e-16 +1.59385 0.0452271 -0.01905 +1.59385 0.0452271 2.91315e-16 +1.6915 0.0570764 -0.459231 +1.70116 0.0570764 -0.45927 +1.70251 0.0547521 -0.461157 +1.6901 0.0547521 -0.461082 +1.59385 0.0579271 -0.0254 +1.59067 0.0570764 -0.0254 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 -0.0254 +1.59067 0.0460779 -0.0254 +1.59385 0.0452271 -0.0254 +1.58835 0.0484021 -0.0254 +1.5875 0.0515771 -0.0254 +1.58835 0.0547521 -0.0254 +1.59385 0.0579271 -0.0381 +1.59067 0.0570764 -0.0381 +1.7526 0.0579271 -0.0381 +1.59067 0.0460779 -0.0381 +1.59385 0.0452271 -0.0381 +1.58835 0.0484021 -0.0381 +1.5875 0.0515771 -0.0381 +1.58835 0.0547521 -0.0381 +1.59385 0.0579271 -0.05715 +1.59067 0.0570764 -0.05715 +1.7526 0.0579271 -0.05715 +1.59067 0.0460779 -0.05715 +1.59385 0.0452271 -0.05715 +1.58835 0.0484021 -0.05715 +1.5875 0.0515771 -0.05715 +1.58835 0.0547521 -0.05715 +1.59385 0.0579271 -0.0762 +1.59067 0.0570764 -0.0762 +1.7526 0.0579271 -0.0762 +1.59067 0.0460779 -0.0762 +1.59385 0.0452271 -0.0762 +1.58835 0.0484021 -0.0762 +1.5875 0.0515771 -0.0762 +1.58835 0.0547521 -0.0762 +1.59385 0.0579271 -0.1016 +1.59067 0.0570764 -0.1016 +1.7526 0.0579271 -0.1016 +1.59067 0.0460779 -0.1016 +1.59385 0.0452271 -0.1016 +1.58835 0.0484021 -0.1016 +1.5875 0.0515771 -0.1016 +1.58835 0.0547521 -0.1016 +1.59449 0.0579271 -0.1397 +1.59131 0.0570764 -0.1397 +1.7526 0.0579271 -0.1397 +1.59131 0.0460779 -0.1397 +1.59449 0.0452271 -0.1397 +1.58899 0.0484021 -0.1397 +1.58814 0.0515771 -0.1397 +1.58899 0.0547521 -0.1397 +1.59619 0.0579271 -0.1778 +1.59302 0.0570764 -0.1778 +1.7526 0.0579271 -0.1778 +1.59302 0.0460779 -0.1778 +1.59619 0.0452271 -0.1778 +1.5907 0.0484021 -0.1778 +1.58984 0.0515771 -0.1778 +1.5907 0.0547521 -0.1778 +1.59953 0.0579271 -0.228995 +1.59636 0.0570764 -0.228995 +1.7526 0.0579271 -0.228995 +1.59636 0.0460779 -0.228995 +1.59953 0.0452271 -0.228995 +1.59403 0.0484021 -0.228995 +1.59318 0.0515771 -0.228995 +1.59403 0.0547521 -0.228995 +1.60458 0.0579271 -0.280191 +1.6014 0.0570764 -0.280191 +1.7526 0.0579271 -0.280191 +1.6014 0.0460779 -0.280191 +1.60458 0.0452271 -0.280191 +1.59908 0.0484021 -0.280191 +1.59823 0.0515771 -0.280191 +1.59908 0.0547521 -0.280191 +1.61261 0.0579271 -0.331386 +1.60943 0.0570764 -0.331386 +1.7526 0.0579271 -0.331386 +1.60943 0.0460779 -0.331386 +1.61261 0.0452271 -0.331386 +1.60711 0.0484021 -0.331386 +1.60626 0.0515771 -0.331386 +1.60711 0.0547521 -0.331386 +1.62359 0.0579271 -0.382186 +1.62041 0.0570764 -0.382186 +1.7526 0.0579271 -0.382186 +1.62041 0.0460779 -0.382186 +1.62359 0.0452271 -0.382186 +1.61809 0.0484021 -0.382186 +1.61724 0.0515771 -0.382186 +1.61809 0.0547521 -0.382186 +1.63542 0.0579271 -0.408368 +1.63225 0.0570764 -0.408368 +1.77365 0.0579271 -0.382186 +1.77682 0.0570764 -0.382186 +1.76299 0.0570764 -0.408368 +1.75982 0.0579271 -0.408368 +1.77915 0.0547521 -0.382186 +1.76532 0.0547521 -0.408368 +1.78 0.0515771 -0.382186 +1.76617 0.0515771 -0.408368 +1.77915 0.0484021 -0.382186 +1.76532 0.0484021 -0.408368 +1.77682 0.0460779 -0.382186 +1.76299 0.0460779 -0.408368 +1.77365 0.0452271 -0.382186 +1.75982 0.0452271 -0.408368 +1.7526 0.0452271 -0.382186 +1.63225 0.0460779 -0.408368 +1.63542 0.0452271 -0.408368 +1.62992 0.0484021 -0.408368 +1.62907 0.0515771 -0.408368 +1.62992 0.0547521 -0.408368 +1.65311 0.0579271 -0.433768 +1.64994 0.0570764 -0.433768 +1.74152 0.0579271 -0.433768 +1.7447 0.0570764 -0.433768 +1.74702 0.0547521 -0.433768 +1.74787 0.0515771 -0.433768 +1.74702 0.0484021 -0.433768 +1.7447 0.0460779 -0.433768 +1.74152 0.0452271 -0.433768 +1.65311 0.0452271 -0.433768 +1.64994 0.0460779 -0.433768 +1.64761 0.0484021 -0.433768 +1.64676 0.0515771 -0.433768 +1.64761 0.0547521 -0.433768 +1.66243 0.0579271 -0.442748 +1.65925 0.0570764 -0.442748 +1.73216 0.0579271 -0.442748 +1.73533 0.0570764 -0.442748 +1.73766 0.0547521 -0.442748 +1.73851 0.0515771 -0.442748 +1.73766 0.0484021 -0.442748 +1.73533 0.0460779 -0.442748 +1.73216 0.0452271 -0.442748 +1.66243 0.0452271 -0.442748 +1.65925 0.0460779 -0.442748 +1.65693 0.0484021 -0.442748 +1.65608 0.0515771 -0.442748 +1.65693 0.0547521 -0.442748 +1.68017 0.0579271 -0.455448 +1.67699 0.0570764 -0.455448 +1.71417 0.0579271 -0.455448 +1.71734 0.0570764 -0.455448 +1.71967 0.0547521 -0.455448 +1.72052 0.0515771 -0.455448 +1.71967 0.0484021 -0.455448 +1.71734 0.0460779 -0.455448 +1.71417 0.0452271 -0.455448 +1.68017 0.0452271 -0.455448 +1.67699 0.0460779 -0.455448 +1.67467 0.0484021 -0.455448 +1.67382 0.0515771 -0.455448 +1.67467 0.0547521 -0.455448 +1.69342 0.0579271 -0.456702 +1.6993 0.0579271 -0.456694 +1.70301 0.0515771 -0.461847 +1.70251 0.0484021 -0.461157 +1.70116 0.0460779 -0.45927 +1.6993 0.0452271 -0.456694 +1.69342 0.0452271 -0.456702 +1.6915 0.0460779 -0.459231 +1.6901 0.0484021 -0.461082 +1.68958 0.0515771 -0.461759 +1.59067 0.0570764 0.01905 +1.59385 0.0579271 0.01905 +1.58835 0.0547521 0.01905 +1.5875 0.0515771 0.01905 +1.58835 0.0484021 0.01905 +1.59067 0.0460779 0.01905 +1.59385 0.0452271 0.01905 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 0.01905 +1.6901 0.0547521 0.461082 +1.70251 0.0547521 0.461157 +1.70116 0.0570764 0.45927 +1.6915 0.0570764 0.459231 +1.59067 0.0570764 0.0254 +1.59385 0.0579271 0.0254 +1.7526 0.0579271 0.0254 +1.59385 0.0452271 0.0254 +1.59067 0.0460779 0.0254 +1.58835 0.0484021 0.0254 +1.5875 0.0515771 0.0254 +1.58835 0.0547521 0.0254 +1.59067 0.0570764 0.0381 +1.59385 0.0579271 0.0381 +1.7526 0.0579271 0.0381 +1.59385 0.0452271 0.0381 +1.59067 0.0460779 0.0381 +1.58835 0.0484021 0.0381 +1.5875 0.0515771 0.0381 +1.58835 0.0547521 0.0381 +1.59067 0.0570764 0.05715 +1.59385 0.0579271 0.05715 +1.7526 0.0579271 0.05715 +1.59385 0.0452271 0.05715 +1.59067 0.0460779 0.05715 +1.58835 0.0484021 0.05715 +1.5875 0.0515771 0.05715 +1.58835 0.0547521 0.05715 +1.59067 0.0570764 0.0762 +1.59385 0.0579271 0.0762 +1.7526 0.0579271 0.0762 +1.59385 0.0452271 0.0762 +1.59067 0.0460779 0.0762 +1.58835 0.0484021 0.0762 +1.5875 0.0515771 0.0762 +1.58835 0.0547521 0.0762 +1.59067 0.0570764 0.1016 +1.59385 0.0579271 0.1016 +1.7526 0.0579271 0.1016 +1.59385 0.0452271 0.1016 +1.59067 0.0460779 0.1016 +1.58835 0.0484021 0.1016 +1.5875 0.0515771 0.1016 +1.58835 0.0547521 0.1016 +1.59131 0.0570764 0.1397 +1.59449 0.0579271 0.1397 +1.7526 0.0579271 0.1397 +1.59449 0.0452271 0.1397 +1.59131 0.0460779 0.1397 +1.58899 0.0484021 0.1397 +1.58814 0.0515771 0.1397 +1.58899 0.0547521 0.1397 +1.59302 0.0570764 0.1778 +1.59619 0.0579271 0.1778 +1.7526 0.0579271 0.1778 +1.59619 0.0452271 0.1778 +1.59302 0.0460779 0.1778 +1.5907 0.0484021 0.1778 +1.58984 0.0515771 0.1778 +1.5907 0.0547521 0.1778 +1.59636 0.0570764 0.228995 +1.59953 0.0579271 0.228995 +1.7526 0.0579271 0.228995 +1.59953 0.0452271 0.228995 +1.59636 0.0460779 0.228995 +1.59403 0.0484021 0.228995 +1.59318 0.0515771 0.228995 +1.59403 0.0547521 0.228995 +1.6014 0.0570764 0.280191 +1.60458 0.0579271 0.280191 +1.7526 0.0579271 0.280191 +1.60458 0.0452271 0.280191 +1.6014 0.0460779 0.280191 +1.59908 0.0484021 0.280191 +1.59823 0.0515771 0.280191 +1.59908 0.0547521 0.280191 +1.60943 0.0570764 0.331386 +1.61261 0.0579271 0.331386 +1.7526 0.0579271 0.331386 +1.61261 0.0452271 0.331386 +1.60943 0.0460779 0.331386 +1.60711 0.0484021 0.331386 +1.60626 0.0515771 0.331386 +1.60711 0.0547521 0.331386 +1.62041 0.0570764 0.382186 +1.62359 0.0579271 0.382186 +1.7526 0.0579271 0.382186 +1.62359 0.0452271 0.382186 +1.62041 0.0460779 0.382186 +1.61809 0.0484021 0.382186 +1.61724 0.0515771 0.382186 +1.61809 0.0547521 0.382186 +1.63225 0.0570764 0.408368 +1.63542 0.0579271 0.408368 +1.75982 0.0579271 0.408368 +1.76299 0.0570764 0.408368 +1.77682 0.0570764 0.382186 +1.77365 0.0579271 0.382186 +1.76532 0.0547521 0.408368 +1.77915 0.0547521 0.382186 +1.76617 0.0515771 0.408368 +1.78 0.0515771 0.382186 +1.76532 0.0484021 0.408368 +1.77915 0.0484021 0.382186 +1.76299 0.0460779 0.408368 +1.77682 0.0460779 0.382186 +1.75982 0.0452271 0.408368 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.63542 0.0452271 0.408368 +1.63225 0.0460779 0.408368 +1.62992 0.0484021 0.408368 +1.62907 0.0515771 0.408368 +1.62992 0.0547521 0.408368 +1.64994 0.0570764 0.433768 +1.65311 0.0579271 0.433768 +1.74152 0.0579271 0.433768 +1.7447 0.0570764 0.433768 +1.74702 0.0547521 0.433768 +1.74787 0.0515771 0.433768 +1.74702 0.0484021 0.433768 +1.7447 0.0460779 0.433768 +1.74152 0.0452271 0.433768 +1.65311 0.0452271 0.433768 +1.64994 0.0460779 0.433768 +1.64761 0.0484021 0.433768 +1.64676 0.0515771 0.433768 +1.64761 0.0547521 0.433768 +1.65925 0.0570764 0.442748 +1.66243 0.0579271 0.442748 +1.73216 0.0579271 0.442748 +1.73533 0.0570764 0.442748 +1.73766 0.0547521 0.442748 +1.73851 0.0515771 0.442748 +1.73766 0.0484021 0.442748 +1.73533 0.0460779 0.442748 +1.73216 0.0452271 0.442748 +1.66243 0.0452271 0.442748 +1.65925 0.0460779 0.442748 +1.65693 0.0484021 0.442748 +1.65608 0.0515771 0.442748 +1.65693 0.0547521 0.442748 +1.67699 0.0570764 0.455448 +1.68017 0.0579271 0.455448 +1.71417 0.0579271 0.455448 +1.71734 0.0570764 0.455448 +1.71967 0.0547521 0.455448 +1.72052 0.0515771 0.455448 +1.71967 0.0484021 0.455448 +1.71734 0.0460779 0.455448 +1.71417 0.0452271 0.455448 +1.68017 0.0452271 0.455448 +1.67699 0.0460779 0.455448 +1.67467 0.0484021 0.455448 +1.67382 0.0515771 0.455448 +1.67467 0.0547521 0.455448 +1.69342 0.0579271 0.456702 +1.6993 0.0579271 0.456694 +1.70301 0.0515771 0.461847 +1.70251 0.0484021 0.461157 +1.70116 0.0460779 0.45927 +1.6993 0.0452271 0.456694 +1.69342 0.0452271 0.456702 +1.6915 0.0460779 0.459231 +1.6901 0.0484021 0.461082 +1.68958 0.0515771 0.461759 +1.7526 0.0452271 -0.01905 +1.7526 0.0452271 -0.0254 +1.7526 0.0452271 -0.0381 +1.7526 0.0452271 -0.05715 +1.7526 0.0452271 -0.0762 +1.7526 0.0452271 -0.1016 +1.7526 0.0452271 -0.1397 +1.7526 0.0452271 -0.1778 +1.7526 0.0452271 -0.228995 +1.7526 0.0452271 -0.280191 +1.7526 0.0452271 -0.331386 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.0381 +1.7526 0.0452271 0.05715 +1.7526 0.0452271 0.0762 +1.7526 0.0452271 0.1016 +1.7526 0.0452271 0.1397 +1.7526 0.0452271 0.1778 +1.7526 0.0452271 0.228995 +1.7526 0.0452271 0.280191 +1.7526 0.0452271 0.331386 +numsurf 384 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +1 0.742627 0.922959 +2 0.742627 0.941242 +3 0.744104 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +4 0.74155 0.922959 +5 0.74155 0.941242 +2 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +6 0.741155 0.922959 +7 0.741155 0.941242 +5 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +8 0.74155 0.922959 +9 0.74155 0.941242 +7 0.741155 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +10 0.742627 0.922959 +11 0.742627 0.941242 +9 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +12 0.744104 0.922959 +13 0.744104 0.941242 +11 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +15 0.793943 0.500463 +16 0.79457 0.498652 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +0 0.744104 0.922959 +18 0.744104 0.916865 +19 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +20 0.817833 0.922959 +21 0.817833 0.916865 +18 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +12 0.744104 0.922959 +10 0.742627 0.922959 +22 0.742627 0.916865 +23 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +8 0.74155 0.922959 +24 0.74155 0.916865 +22 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +6 0.741155 0.922959 +25 0.741155 0.916865 +24 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +4 0.74155 0.922959 +26 0.74155 0.916865 +25 0.741155 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +1 0.742627 0.922959 +19 0.742627 0.916865 +26 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.742627 0.916865 +18 0.744104 0.916865 +27 0.744104 0.904676 +28 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.744104 0.916865 +21 0.817833 0.916865 +29 0.817833 0.904676 +27 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.744104 0.916865 +22 0.742627 0.916865 +30 0.742627 0.904676 +31 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.742627 0.916865 +24 0.74155 0.916865 +32 0.74155 0.904676 +30 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.74155 0.916865 +25 0.741155 0.916865 +33 0.741155 0.904676 +32 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +25 0.741155 0.916865 +26 0.74155 0.916865 +34 0.74155 0.904676 +33 0.741155 0.904676 +SURF 0x10 +mat 1 +refs 4 +26 0.74155 0.916865 +19 0.742627 0.916865 +28 0.742627 0.904676 +34 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +28 0.742627 0.904676 +27 0.744104 0.904676 +35 0.744104 0.886393 +36 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +27 0.744104 0.904676 +29 0.817833 0.904676 +37 0.817833 0.886393 +35 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.744104 0.904676 +30 0.742627 0.904676 +38 0.742627 0.886393 +39 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.742627 0.904676 +32 0.74155 0.904676 +40 0.74155 0.886393 +38 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.74155 0.904676 +33 0.741155 0.904676 +41 0.741155 0.886393 +40 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +33 0.741155 0.904676 +34 0.74155 0.904676 +42 0.74155 0.886393 +41 0.741155 0.886393 +SURF 0x10 +mat 1 +refs 4 +34 0.74155 0.904676 +28 0.742627 0.904676 +36 0.742627 0.886393 +42 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +36 0.742627 0.886393 +35 0.744104 0.886393 +43 0.744104 0.86811 +44 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +35 0.744104 0.886393 +37 0.817833 0.886393 +45 0.817833 0.86811 +43 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.744104 0.886393 +38 0.742627 0.886393 +46 0.742627 0.86811 +47 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.742627 0.886393 +40 0.74155 0.886393 +48 0.74155 0.86811 +46 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.74155 0.886393 +41 0.741155 0.886393 +49 0.741155 0.86811 +48 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +41 0.741155 0.886393 +42 0.74155 0.886393 +50 0.74155 0.86811 +49 0.741155 0.86811 +SURF 0x10 +mat 1 +refs 4 +42 0.74155 0.886393 +36 0.742627 0.886393 +44 0.742627 0.86811 +50 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +44 0.742627 0.86811 +43 0.744104 0.86811 +51 0.744104 0.843733 +52 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +43 0.744104 0.86811 +45 0.817833 0.86811 +53 0.817833 0.843733 +51 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.744104 0.86811 +46 0.742627 0.86811 +54 0.742627 0.843733 +55 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.742627 0.86811 +48 0.74155 0.86811 +56 0.74155 0.843733 +54 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.74155 0.86811 +49 0.741155 0.86811 +57 0.741155 0.843733 +56 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +49 0.741155 0.86811 +50 0.74155 0.86811 +58 0.74155 0.843733 +57 0.741155 0.843733 +SURF 0x10 +mat 1 +refs 4 +50 0.74155 0.86811 +44 0.742627 0.86811 +52 0.742627 0.843733 +58 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +52 0.742627 0.843733 +51 0.744104 0.843733 +59 0.744401 0.807167 +60 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +51 0.744104 0.843733 +53 0.817833 0.843733 +61 0.817833 0.807167 +59 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.744104 0.843733 +54 0.742627 0.843733 +62 0.742924 0.807167 +63 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.742627 0.843733 +56 0.74155 0.843733 +64 0.741847 0.807167 +62 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.74155 0.843733 +57 0.741155 0.843733 +65 0.741452 0.807167 +64 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +57 0.741155 0.843733 +58 0.74155 0.843733 +66 0.741847 0.807167 +65 0.741452 0.807167 +SURF 0x10 +mat 1 +refs 4 +58 0.74155 0.843733 +52 0.742627 0.843733 +60 0.742924 0.807167 +66 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +60 0.742924 0.807167 +59 0.744401 0.807167 +67 0.745191 0.7706 +68 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +59 0.744401 0.807167 +61 0.817833 0.807167 +69 0.817833 0.7706 +67 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.744401 0.807167 +62 0.742924 0.807167 +70 0.743718 0.7706 +71 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.742924 0.807167 +64 0.741847 0.807167 +72 0.742641 0.7706 +70 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.741847 0.807167 +65 0.741452 0.807167 +73 0.742242 0.7706 +72 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +65 0.741452 0.807167 +66 0.741847 0.807167 +74 0.742641 0.7706 +73 0.742242 0.7706 +SURF 0x10 +mat 1 +refs 4 +66 0.741847 0.807167 +60 0.742924 0.807167 +68 0.743718 0.7706 +74 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +68 0.743718 0.7706 +67 0.745191 0.7706 +75 0.746742 0.721467 +76 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +67 0.745191 0.7706 +69 0.817833 0.7706 +77 0.817833 0.721467 +75 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.745191 0.7706 +70 0.743718 0.7706 +78 0.74527 0.721467 +79 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.743718 0.7706 +72 0.742641 0.7706 +80 0.744188 0.721467 +78 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.742641 0.7706 +73 0.742242 0.7706 +81 0.743793 0.721467 +80 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +73 0.742242 0.7706 +74 0.742641 0.7706 +82 0.744188 0.721467 +81 0.743793 0.721467 +SURF 0x10 +mat 1 +refs 4 +74 0.742641 0.7706 +68 0.743718 0.7706 +76 0.74527 0.721467 +82 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +76 0.74527 0.721467 +75 0.746742 0.721467 +83 0.749087 0.672332 +84 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +75 0.746742 0.721467 +77 0.817833 0.721467 +85 0.817833 0.672332 +83 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.746742 0.721467 +78 0.74527 0.721467 +86 0.747611 0.672332 +87 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.74527 0.721467 +80 0.744188 0.721467 +88 0.746533 0.672332 +86 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.744188 0.721467 +81 0.743793 0.721467 +89 0.746138 0.672332 +88 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +81 0.743793 0.721467 +82 0.744188 0.721467 +90 0.746533 0.672332 +89 0.746138 0.672332 +SURF 0x10 +mat 1 +refs 4 +82 0.744188 0.721467 +76 0.74527 0.721467 +84 0.747611 0.672332 +90 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +84 0.747611 0.672332 +83 0.749087 0.672332 +91 0.752817 0.623198 +92 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +83 0.749087 0.672332 +85 0.817833 0.672332 +93 0.817833 0.623198 +91 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.749087 0.672332 +86 0.747611 0.672332 +94 0.75134 0.623198 +95 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.747611 0.672332 +88 0.746533 0.672332 +96 0.750262 0.623198 +94 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.746533 0.672332 +89 0.746138 0.672332 +97 0.749868 0.623198 +96 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +89 0.746138 0.672332 +90 0.746533 0.672332 +98 0.750262 0.623198 +97 0.749868 0.623198 +SURF 0x10 +mat 1 +refs 4 +90 0.746533 0.672332 +84 0.747611 0.672332 +92 0.75134 0.623198 +98 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +92 0.75134 0.623198 +91 0.752817 0.623198 +99 0.757916 0.574443 +100 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +91 0.752817 0.623198 +93 0.817833 0.623198 +101 0.817833 0.574443 +99 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.752817 0.623198 +94 0.75134 0.623198 +102 0.756439 0.574443 +103 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.75134 0.623198 +96 0.750262 0.623198 +104 0.755362 0.574443 +102 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.750262 0.623198 +97 0.749868 0.623198 +105 0.754967 0.574443 +104 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +97 0.749868 0.623198 +98 0.750262 0.623198 +106 0.755362 0.574443 +105 0.754967 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.750262 0.623198 +92 0.75134 0.623198 +100 0.756439 0.574443 +106 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +100 0.756439 0.574443 +99 0.757916 0.574443 +107 0.763411 0.549315 +108 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 3 +99 0.757916 0.574443 +101 0.817833 0.574443 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +109 0.82761 0.574443 +110 0.829082 0.574443 +111 0.822659 0.549315 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +110 0.829082 0.574443 +113 0.830164 0.574443 +114 0.823741 0.549315 +111 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 4 +113 0.830164 0.574443 +115 0.830559 0.574443 +116 0.824136 0.549315 +114 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +115 0.830559 0.574443 +117 0.830164 0.574443 +118 0.823741 0.549315 +116 0.824136 0.549315 +SURF 0x10 +mat 1 +refs 4 +117 0.830164 0.574443 +119 0.829082 0.574443 +120 0.822659 0.549315 +118 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +121 0.82761 0.574443 +122 0.821187 0.549315 +120 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 3 +121 0.82761 0.574443 +123 0.817833 0.574443 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +103 0.757916 0.574443 +102 0.756439 0.574443 +124 0.761938 0.549315 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +102 0.756439 0.574443 +104 0.755362 0.574443 +126 0.760856 0.549315 +124 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 4 +104 0.755362 0.574443 +105 0.754967 0.574443 +127 0.760462 0.549315 +126 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +105 0.754967 0.574443 +106 0.755362 0.574443 +128 0.760856 0.549315 +127 0.760462 0.549315 +SURF 0x10 +mat 1 +refs 4 +106 0.755362 0.574443 +100 0.756439 0.574443 +108 0.761938 0.549315 +128 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +108 0.761938 0.549315 +107 0.763411 0.549315 +129 0.771627 0.524938 +130 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +107 0.763411 0.549315 +112 0.821187 0.549315 +131 0.812688 0.524938 +129 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +112 0.821187 0.549315 +111 0.822659 0.549315 +132 0.814164 0.524938 +131 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +111 0.822659 0.549315 +114 0.823741 0.549315 +133 0.815242 0.524938 +132 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +114 0.823741 0.549315 +116 0.824136 0.549315 +134 0.815637 0.524938 +133 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +116 0.824136 0.549315 +118 0.823741 0.549315 +135 0.815242 0.524938 +134 0.815637 0.524938 +SURF 0x10 +mat 1 +refs 4 +118 0.823741 0.549315 +120 0.822659 0.549315 +136 0.814164 0.524938 +135 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +120 0.822659 0.549315 +122 0.821187 0.549315 +137 0.812688 0.524938 +136 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +122 0.821187 0.549315 +125 0.763411 0.549315 +138 0.771627 0.524938 +137 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +125 0.763411 0.549315 +124 0.761938 0.549315 +139 0.770154 0.524938 +138 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +124 0.761938 0.549315 +126 0.760856 0.549315 +140 0.769072 0.524938 +139 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +126 0.760856 0.549315 +127 0.760462 0.549315 +141 0.768677 0.524938 +140 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +127 0.760462 0.549315 +128 0.760856 0.549315 +142 0.769072 0.524938 +141 0.768677 0.524938 +SURF 0x10 +mat 1 +refs 4 +128 0.760856 0.549315 +108 0.761938 0.549315 +130 0.770154 0.524938 +142 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +130 0.770154 0.524938 +129 0.771627 0.524938 +143 0.775955 0.516319 +144 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +129 0.771627 0.524938 +131 0.812688 0.524938 +145 0.80834 0.516319 +143 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +131 0.812688 0.524938 +132 0.814164 0.524938 +146 0.809813 0.516319 +145 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +132 0.814164 0.524938 +133 0.815242 0.524938 +147 0.810895 0.516319 +146 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +133 0.815242 0.524938 +134 0.815637 0.524938 +148 0.81129 0.516319 +147 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +134 0.815637 0.524938 +135 0.815242 0.524938 +149 0.810895 0.516319 +148 0.81129 0.516319 +SURF 0x10 +mat 1 +refs 4 +135 0.815242 0.524938 +136 0.814164 0.524938 +150 0.809813 0.516319 +149 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +136 0.814164 0.524938 +137 0.812688 0.524938 +151 0.80834 0.516319 +150 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +137 0.812688 0.524938 +138 0.771627 0.524938 +152 0.775955 0.516319 +151 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +138 0.771627 0.524938 +139 0.770154 0.524938 +153 0.774478 0.516319 +152 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +139 0.770154 0.524938 +140 0.769072 0.524938 +154 0.773401 0.516319 +153 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +140 0.769072 0.524938 +141 0.768677 0.524938 +155 0.773006 0.516319 +154 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +141 0.768677 0.524938 +142 0.769072 0.524938 +156 0.773401 0.516319 +155 0.773006 0.516319 +SURF 0x10 +mat 1 +refs 4 +142 0.769072 0.524938 +130 0.770154 0.524938 +144 0.774478 0.516319 +156 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +144 0.774478 0.516319 +143 0.775955 0.516319 +157 0.784194 0.504131 +158 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +143 0.775955 0.516319 +145 0.80834 0.516319 +159 0.799985 0.504131 +157 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +145 0.80834 0.516319 +146 0.809813 0.516319 +160 0.801457 0.504131 +159 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +146 0.809813 0.516319 +147 0.810895 0.516319 +161 0.80254 0.504131 +160 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +147 0.810895 0.516319 +148 0.81129 0.516319 +162 0.802934 0.504131 +161 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +148 0.81129 0.516319 +149 0.810895 0.516319 +163 0.80254 0.504131 +162 0.802934 0.504131 +SURF 0x10 +mat 1 +refs 4 +149 0.810895 0.516319 +150 0.809813 0.516319 +164 0.801457 0.504131 +163 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +150 0.809813 0.516319 +151 0.80834 0.516319 +165 0.799985 0.504131 +164 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +151 0.80834 0.516319 +152 0.775955 0.516319 +166 0.784194 0.504131 +165 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +152 0.775955 0.516319 +153 0.774478 0.516319 +167 0.782717 0.504131 +166 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +153 0.774478 0.516319 +154 0.773401 0.516319 +168 0.78164 0.504131 +167 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +154 0.773401 0.516319 +155 0.773006 0.516319 +169 0.781245 0.504131 +168 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +155 0.773006 0.516319 +156 0.773401 0.516319 +170 0.78164 0.504131 +169 0.781245 0.504131 +SURF 0x10 +mat 1 +refs 4 +156 0.773401 0.516319 +144 0.774478 0.516319 +158 0.782717 0.504131 +170 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +158 0.782717 0.504131 +157 0.784194 0.504131 +171 0.790348 0.502927 +14 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +157 0.784194 0.504131 +159 0.799985 0.504131 +172 0.793079 0.502935 +171 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +159 0.799985 0.504131 +160 0.801457 0.504131 +15 0.793943 0.500463 +172 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +160 0.801457 0.504131 +161 0.80254 0.504131 +16 0.79457 0.498652 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +161 0.80254 0.504131 +162 0.802934 0.504131 +173 0.794802 0.497989 +16 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +162 0.802934 0.504131 +163 0.80254 0.504131 +174 0.79457 0.498652 +173 0.794802 0.497989 +SURF 0x10 +mat 1 +refs 4 +163 0.80254 0.504131 +164 0.801457 0.504131 +175 0.793943 0.500463 +174 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +164 0.801457 0.504131 +165 0.799985 0.504131 +176 0.793079 0.502935 +175 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +165 0.799985 0.504131 +166 0.784194 0.504131 +177 0.790348 0.502927 +176 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +166 0.784194 0.504131 +167 0.782717 0.504131 +178 0.789456 0.5005 +177 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +167 0.782717 0.504131 +168 0.78164 0.504131 +179 0.788806 0.498723 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +168 0.78164 0.504131 +169 0.781245 0.504131 +180 0.788565 0.498074 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +169 0.781245 0.504131 +170 0.78164 0.504131 +17 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +170 0.78164 0.504131 +158 0.782717 0.504131 +14 0.789456 0.5005 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +171 0.790348 0.502927 +172 0.793079 0.502935 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +16 0.79457 0.498652 +173 0.794802 0.497989 +180 0.788565 0.498074 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +173 0.794802 0.497989 +174 0.79457 0.498652 +179 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +174 0.79457 0.498652 +175 0.793943 0.500463 +178 0.789456 0.5005 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +175 0.793943 0.500463 +176 0.793079 0.502935 +177 0.790348 0.502927 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +2 0.742628 0.94124 +181 0.742628 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.742628 0.94124 +5 0.741551 0.94124 +183 0.741551 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.741551 0.94124 +7 0.741156 0.94124 +184 0.741156 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.741156 0.94124 +9 0.741551 0.94124 +185 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.741551 0.94124 +11 0.742628 0.94124 +186 0.742628 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.742628 0.94124 +13 0.744105 0.94124 +187 0.744105 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +182 0.744105 0.922957 +188 0.817834 0.922957 +189 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +187 0.744105 0.922957 +13 0.744105 0.94124 +190 0.817834 0.94124 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +193 0.794571 0.49865 +194 0.793944 0.500461 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +196 0.742628 0.916863 +197 0.744105 0.916863 +182 0.744105 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +197 0.744105 0.916863 +198 0.817834 0.916863 +188 0.817834 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +199 0.744105 0.916863 +200 0.742628 0.916863 +186 0.742628 0.922957 +187 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +200 0.742628 0.916863 +201 0.741551 0.916863 +185 0.741551 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +201 0.741551 0.916863 +202 0.741156 0.916863 +184 0.741156 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +202 0.741156 0.916863 +203 0.741551 0.916863 +183 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +203 0.741551 0.916863 +196 0.742628 0.916863 +181 0.742628 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +204 0.742628 0.904674 +205 0.744105 0.904674 +197 0.744105 0.916863 +196 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +205 0.744105 0.904674 +206 0.817834 0.904674 +198 0.817834 0.916863 +197 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +207 0.744105 0.904674 +208 0.742628 0.904674 +200 0.742628 0.916863 +199 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +208 0.742628 0.904674 +209 0.741551 0.904674 +201 0.741551 0.916863 +200 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +209 0.741551 0.904674 +210 0.741156 0.904674 +202 0.741156 0.916863 +201 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +210 0.741156 0.904674 +211 0.741551 0.904674 +203 0.741551 0.916863 +202 0.741156 0.916863 +SURF 0x10 +mat 1 +refs 4 +211 0.741551 0.904674 +204 0.742628 0.904674 +196 0.742628 0.916863 +203 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +212 0.742628 0.886391 +213 0.744105 0.886391 +205 0.744105 0.904674 +204 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +213 0.744105 0.886391 +214 0.817834 0.886391 +206 0.817834 0.904674 +205 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +215 0.744105 0.886391 +216 0.742628 0.886391 +208 0.742628 0.904674 +207 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +216 0.742628 0.886391 +217 0.741551 0.886391 +209 0.741551 0.904674 +208 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.741551 0.886391 +218 0.741156 0.886391 +210 0.741156 0.904674 +209 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +218 0.741156 0.886391 +219 0.741551 0.886391 +211 0.741551 0.904674 +210 0.741156 0.904674 +SURF 0x10 +mat 1 +refs 4 +219 0.741551 0.886391 +212 0.742628 0.886391 +204 0.742628 0.904674 +211 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +220 0.742628 0.868108 +221 0.744105 0.868108 +213 0.744105 0.886391 +212 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +221 0.744105 0.868108 +222 0.817834 0.868108 +214 0.817834 0.886391 +213 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +223 0.744105 0.868108 +224 0.742628 0.868108 +216 0.742628 0.886391 +215 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +224 0.742628 0.868108 +225 0.741551 0.868108 +217 0.741551 0.886391 +216 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +225 0.741551 0.868108 +226 0.741156 0.868108 +218 0.741156 0.886391 +217 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +226 0.741156 0.868108 +227 0.741551 0.868108 +219 0.741551 0.886391 +218 0.741156 0.886391 +SURF 0x10 +mat 1 +refs 4 +227 0.741551 0.868108 +220 0.742628 0.868108 +212 0.742628 0.886391 +219 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +228 0.742628 0.843731 +229 0.744105 0.843731 +221 0.744105 0.868108 +220 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +229 0.744105 0.843731 +230 0.817834 0.843731 +222 0.817834 0.868108 +221 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +231 0.744105 0.843731 +232 0.742628 0.843731 +224 0.742628 0.868108 +223 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +232 0.742628 0.843731 +233 0.741551 0.843731 +225 0.741551 0.868108 +224 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +233 0.741551 0.843731 +234 0.741156 0.843731 +226 0.741156 0.868108 +225 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +234 0.741156 0.843731 +235 0.741551 0.843731 +227 0.741551 0.868108 +226 0.741156 0.868108 +SURF 0x10 +mat 1 +refs 4 +235 0.741551 0.843731 +228 0.742628 0.843731 +220 0.742628 0.868108 +227 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +236 0.742925 0.807165 +237 0.744402 0.807165 +229 0.744105 0.843731 +228 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +237 0.744402 0.807165 +238 0.817834 0.807165 +230 0.817834 0.843731 +229 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +239 0.744402 0.807165 +240 0.742925 0.807165 +232 0.742628 0.843731 +231 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +240 0.742925 0.807165 +241 0.741848 0.807165 +233 0.741551 0.843731 +232 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +241 0.741848 0.807165 +242 0.741453 0.807165 +234 0.741156 0.843731 +233 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +242 0.741453 0.807165 +243 0.741848 0.807165 +235 0.741551 0.843731 +234 0.741156 0.843731 +SURF 0x10 +mat 1 +refs 4 +243 0.741848 0.807165 +236 0.742925 0.807165 +228 0.742628 0.843731 +235 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +244 0.74372 0.770599 +245 0.745192 0.770599 +237 0.744402 0.807165 +236 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +245 0.745192 0.770599 +246 0.817834 0.770599 +238 0.817834 0.807165 +237 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +247 0.745192 0.770599 +248 0.74372 0.770599 +240 0.742925 0.807165 +239 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +248 0.74372 0.770599 +249 0.742642 0.770599 +241 0.741848 0.807165 +240 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +249 0.742642 0.770599 +250 0.742243 0.770599 +242 0.741453 0.807165 +241 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +250 0.742243 0.770599 +251 0.742642 0.770599 +243 0.741848 0.807165 +242 0.741453 0.807165 +SURF 0x10 +mat 1 +refs 4 +251 0.742642 0.770599 +244 0.74372 0.770599 +236 0.742925 0.807165 +243 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +252 0.745271 0.721465 +253 0.746743 0.721465 +245 0.745192 0.770599 +244 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +253 0.746743 0.721465 +254 0.817834 0.721465 +246 0.817834 0.770599 +245 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +255 0.746743 0.721465 +256 0.745271 0.721465 +248 0.74372 0.770599 +247 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +256 0.745271 0.721465 +257 0.744189 0.721465 +249 0.742642 0.770599 +248 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +257 0.744189 0.721465 +258 0.743794 0.721465 +250 0.742243 0.770599 +249 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +258 0.743794 0.721465 +259 0.744189 0.721465 +251 0.742642 0.770599 +250 0.742243 0.770599 +SURF 0x10 +mat 1 +refs 4 +259 0.744189 0.721465 +252 0.745271 0.721465 +244 0.74372 0.770599 +251 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +260 0.747612 0.67233 +261 0.749088 0.67233 +253 0.746743 0.721465 +252 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +261 0.749088 0.67233 +262 0.817834 0.67233 +254 0.817834 0.721465 +253 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +263 0.749088 0.67233 +264 0.747612 0.67233 +256 0.745271 0.721465 +255 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +264 0.747612 0.67233 +265 0.746534 0.67233 +257 0.744189 0.721465 +256 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +265 0.746534 0.67233 +266 0.746139 0.67233 +258 0.743794 0.721465 +257 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +266 0.746139 0.67233 +267 0.746534 0.67233 +259 0.744189 0.721465 +258 0.743794 0.721465 +SURF 0x10 +mat 1 +refs 4 +267 0.746534 0.67233 +260 0.747612 0.67233 +252 0.745271 0.721465 +259 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +268 0.751341 0.623196 +269 0.752818 0.623196 +261 0.749088 0.67233 +260 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +269 0.752818 0.623196 +270 0.817834 0.623196 +262 0.817834 0.67233 +261 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +271 0.752818 0.623196 +272 0.751341 0.623196 +264 0.747612 0.67233 +263 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +272 0.751341 0.623196 +273 0.750264 0.623196 +265 0.746534 0.67233 +264 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +273 0.750264 0.623196 +274 0.749869 0.623196 +266 0.746139 0.67233 +265 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +274 0.749869 0.623196 +275 0.750264 0.623196 +267 0.746534 0.67233 +266 0.746139 0.67233 +SURF 0x10 +mat 1 +refs 4 +275 0.750264 0.623196 +268 0.751341 0.623196 +260 0.747612 0.67233 +267 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +276 0.756441 0.574441 +277 0.757917 0.574441 +269 0.752818 0.623196 +268 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +277 0.757917 0.574441 +278 0.817834 0.574441 +270 0.817834 0.623196 +269 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +279 0.757917 0.574441 +280 0.756441 0.574441 +272 0.751341 0.623196 +271 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +280 0.756441 0.574441 +281 0.755363 0.574441 +273 0.750264 0.623196 +272 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +281 0.755363 0.574441 +282 0.754968 0.574441 +274 0.749869 0.623196 +273 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +282 0.754968 0.574441 +283 0.755363 0.574441 +275 0.750264 0.623196 +274 0.749869 0.623196 +SURF 0x10 +mat 1 +refs 4 +283 0.755363 0.574441 +276 0.756441 0.574441 +268 0.751341 0.623196 +275 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +284 0.761939 0.549313 +285 0.763412 0.549313 +277 0.757917 0.574441 +276 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +278 0.817834 0.574441 +277 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +286 0.821188 0.549313 +287 0.82266 0.549313 +288 0.829083 0.574441 +289 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +287 0.82266 0.549313 +290 0.823742 0.549313 +291 0.830165 0.574441 +288 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +290 0.823742 0.549313 +292 0.824137 0.549313 +293 0.83056 0.574441 +291 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +292 0.824137 0.549313 +294 0.823742 0.549313 +295 0.830165 0.574441 +293 0.83056 0.574441 +SURF 0x10 +mat 1 +refs 4 +294 0.823742 0.549313 +296 0.82266 0.549313 +297 0.829083 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +296 0.82266 0.549313 +298 0.821188 0.549313 +299 0.827611 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +300 0.817834 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +301 0.763412 0.549313 +302 0.761939 0.549313 +280 0.756441 0.574441 +279 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +302 0.761939 0.549313 +303 0.760857 0.549313 +281 0.755363 0.574441 +280 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 4 +303 0.760857 0.549313 +304 0.760463 0.549313 +282 0.754968 0.574441 +281 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +304 0.760463 0.549313 +305 0.760857 0.549313 +283 0.755363 0.574441 +282 0.754968 0.574441 +SURF 0x10 +mat 1 +refs 4 +305 0.760857 0.549313 +284 0.761939 0.549313 +276 0.756441 0.574441 +283 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +306 0.770155 0.524936 +307 0.771628 0.524936 +285 0.763412 0.549313 +284 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +307 0.771628 0.524936 +308 0.812689 0.524936 +286 0.821188 0.549313 +285 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +308 0.812689 0.524936 +309 0.814166 0.524936 +287 0.82266 0.549313 +286 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +309 0.814166 0.524936 +310 0.815243 0.524936 +290 0.823742 0.549313 +287 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +310 0.815243 0.524936 +311 0.815638 0.524936 +292 0.824137 0.549313 +290 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +311 0.815638 0.524936 +312 0.815243 0.524936 +294 0.823742 0.549313 +292 0.824137 0.549313 +SURF 0x10 +mat 1 +refs 4 +312 0.815243 0.524936 +313 0.814166 0.524936 +296 0.82266 0.549313 +294 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +313 0.814166 0.524936 +314 0.812689 0.524936 +298 0.821188 0.549313 +296 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +314 0.812689 0.524936 +315 0.771628 0.524936 +301 0.763412 0.549313 +298 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +315 0.771628 0.524936 +316 0.770155 0.524936 +302 0.761939 0.549313 +301 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +316 0.770155 0.524936 +317 0.769073 0.524936 +303 0.760857 0.549313 +302 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +317 0.769073 0.524936 +318 0.768679 0.524936 +304 0.760463 0.549313 +303 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +318 0.768679 0.524936 +319 0.769073 0.524936 +305 0.760857 0.549313 +304 0.760463 0.549313 +SURF 0x10 +mat 1 +refs 4 +319 0.769073 0.524936 +306 0.770155 0.524936 +284 0.761939 0.549313 +305 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +320 0.774479 0.516317 +321 0.775956 0.516317 +307 0.771628 0.524936 +306 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +321 0.775956 0.516317 +322 0.808342 0.516317 +308 0.812689 0.524936 +307 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +322 0.808342 0.516317 +323 0.809814 0.516317 +309 0.814166 0.524936 +308 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +323 0.809814 0.516317 +324 0.810896 0.516317 +310 0.815243 0.524936 +309 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +324 0.810896 0.516317 +325 0.811291 0.516317 +311 0.815638 0.524936 +310 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +325 0.811291 0.516317 +326 0.810896 0.516317 +312 0.815243 0.524936 +311 0.815638 0.524936 +SURF 0x10 +mat 1 +refs 4 +326 0.810896 0.516317 +327 0.809814 0.516317 +313 0.814166 0.524936 +312 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +327 0.809814 0.516317 +328 0.808342 0.516317 +314 0.812689 0.524936 +313 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +328 0.808342 0.516317 +329 0.775956 0.516317 +315 0.771628 0.524936 +314 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +329 0.775956 0.516317 +330 0.774479 0.516317 +316 0.770155 0.524936 +315 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +330 0.774479 0.516317 +331 0.773402 0.516317 +317 0.769073 0.524936 +316 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +331 0.773402 0.516317 +332 0.773007 0.516317 +318 0.768679 0.524936 +317 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +332 0.773007 0.516317 +333 0.773402 0.516317 +319 0.769073 0.524936 +318 0.768679 0.524936 +SURF 0x10 +mat 1 +refs 4 +333 0.773402 0.516317 +320 0.774479 0.516317 +306 0.770155 0.524936 +319 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +334 0.782718 0.504129 +335 0.784195 0.504129 +321 0.775956 0.516317 +320 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +335 0.784195 0.504129 +336 0.799986 0.504129 +322 0.808342 0.516317 +321 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +336 0.799986 0.504129 +337 0.801459 0.504129 +323 0.809814 0.516317 +322 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +337 0.801459 0.504129 +338 0.802541 0.504129 +324 0.810896 0.516317 +323 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +338 0.802541 0.504129 +339 0.802935 0.504129 +325 0.811291 0.516317 +324 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +339 0.802935 0.504129 +340 0.802541 0.504129 +326 0.810896 0.516317 +325 0.811291 0.516317 +SURF 0x10 +mat 1 +refs 4 +340 0.802541 0.504129 +341 0.801459 0.504129 +327 0.809814 0.516317 +326 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +341 0.801459 0.504129 +342 0.799986 0.504129 +328 0.808342 0.516317 +327 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +342 0.799986 0.504129 +343 0.784195 0.504129 +329 0.775956 0.516317 +328 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +343 0.784195 0.504129 +344 0.782718 0.504129 +330 0.774479 0.516317 +329 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +344 0.782718 0.504129 +345 0.781641 0.504129 +331 0.773402 0.516317 +330 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +345 0.781641 0.504129 +346 0.781246 0.504129 +332 0.773007 0.516317 +331 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +346 0.781246 0.504129 +347 0.781641 0.504129 +333 0.773402 0.516317 +332 0.773007 0.516317 +SURF 0x10 +mat 1 +refs 4 +347 0.781641 0.504129 +334 0.782718 0.504129 +320 0.774479 0.516317 +333 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +195 0.789457 0.500498 +348 0.790349 0.502925 +335 0.784195 0.504129 +334 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +348 0.790349 0.502925 +349 0.79308 0.502933 +336 0.799986 0.504129 +335 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +349 0.79308 0.502933 +194 0.793944 0.500461 +337 0.801459 0.504129 +336 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +193 0.794571 0.49865 +338 0.802541 0.504129 +337 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +193 0.794571 0.49865 +350 0.794803 0.497988 +339 0.802935 0.504129 +338 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +350 0.794803 0.497988 +351 0.794571 0.49865 +340 0.802541 0.504129 +339 0.802935 0.504129 +SURF 0x10 +mat 1 +refs 4 +351 0.794571 0.49865 +352 0.793944 0.500461 +341 0.801459 0.504129 +340 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +352 0.793944 0.500461 +353 0.79308 0.502933 +342 0.799986 0.504129 +341 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +353 0.79308 0.502933 +354 0.790349 0.502925 +343 0.784195 0.504129 +342 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +354 0.790349 0.502925 +355 0.789457 0.500498 +344 0.782718 0.504129 +343 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +356 0.788807 0.498722 +345 0.781641 0.504129 +344 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +357 0.788566 0.498072 +346 0.781246 0.504129 +345 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +192 0.788807 0.498722 +347 0.781641 0.504129 +346 0.781246 0.504129 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +195 0.789457 0.500498 +334 0.782718 0.504129 +347 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +349 0.79308 0.502933 +348 0.790349 0.502925 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +357 0.788566 0.498072 +350 0.794803 0.497988 +193 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +356 0.788807 0.498722 +351 0.794571 0.49865 +350 0.794803 0.497988 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +355 0.789457 0.500498 +352 0.793944 0.500461 +351 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +354 0.790349 0.502925 +353 0.79308 0.502933 +352 0.793944 0.500461 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +0 0.744104 0.922959 +3 0.744104 0.941242 +189 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +190 0.817833 0.941242 +13 0.744104 0.941242 +12 0.744104 0.922959 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +358 0.817833 0.922959 +12 0.744104 0.922959 +23 0.744104 0.916865 +359 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +23 0.744104 0.916865 +31 0.744104 0.904676 +360 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +31 0.744104 0.904676 +39 0.744104 0.886393 +361 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +39 0.744104 0.886393 +47 0.744104 0.86811 +362 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +47 0.744104 0.86811 +55 0.744104 0.843733 +363 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +55 0.744104 0.843733 +63 0.744401 0.807167 +364 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +63 0.744401 0.807167 +71 0.745191 0.7706 +365 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +71 0.745191 0.7706 +79 0.746742 0.721467 +366 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +79 0.746742 0.721467 +87 0.749087 0.672332 +367 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +87 0.749087 0.672332 +95 0.752817 0.623198 +368 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +95 0.752817 0.623198 +103 0.757916 0.574443 +123 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +369 0.817834 0.916863 +199 0.744105 0.916863 +187 0.744105 0.922957 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +370 0.817834 0.904674 +207 0.744105 0.904674 +199 0.744105 0.916863 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +371 0.817834 0.886391 +215 0.744105 0.886391 +207 0.744105 0.904674 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +372 0.817834 0.868108 +223 0.744105 0.868108 +215 0.744105 0.886391 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +373 0.817834 0.843731 +231 0.744105 0.843731 +223 0.744105 0.868108 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +374 0.817834 0.807165 +239 0.744402 0.807165 +231 0.744105 0.843731 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +375 0.817834 0.770599 +247 0.745192 0.770599 +239 0.744402 0.807165 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +376 0.817834 0.721465 +255 0.746743 0.721465 +247 0.745192 0.770599 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +377 0.817834 0.67233 +263 0.749088 0.67233 +255 0.746743 0.721465 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +378 0.817834 0.623196 +271 0.752818 0.623196 +263 0.749088 0.67233 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +300 0.817834 0.574441 +279 0.757917 0.574441 +271 0.752818 0.623196 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 3 +286 0.821188 0.549313 +289 0.827611 0.574441 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +286 0.821188 0.549313 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +301 0.763412 0.549313 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +301 0.763412 0.549313 +279 0.757917 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +109 0.82761 0.574443 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +112 0.821187 0.549315 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +125 0.763411 0.549315 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +103 0.757916 0.574443 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +358 0.817833 0.922959 +359 0.817833 0.916865 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 3 +117 0.830164 0.574443 +115 0.830559 0.574443 +113 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +117 0.830164 0.574443 +113 0.830164 0.574443 +110 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +121 0.82761 0.574443 +119 0.829082 0.574443 +110 0.829082 0.574443 +109 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +123 0.817833 0.574443 +121 0.82761 0.574443 +109 0.82761 0.574443 +101 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +123 0.817833 0.574443 +101 0.817833 0.574443 +93 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 3 +291 0.830165 0.574441 +293 0.83056 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +288 0.829083 0.574441 +291 0.830165 0.574441 +295 0.830165 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +289 0.827611 0.574441 +288 0.829083 0.574441 +297 0.829083 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +278 0.817834 0.574441 +289 0.827611 0.574441 +299 0.827611 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +270 0.817834 0.623196 +278 0.817834 0.574441 +300 0.817834 0.574441 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +262 0.817834 0.67233 +270 0.817834 0.623196 +378 0.817834 0.623196 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +254 0.817834 0.721465 +262 0.817834 0.67233 +377 0.817834 0.67233 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +246 0.817834 0.770599 +254 0.817834 0.721465 +376 0.817834 0.721465 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +238 0.817834 0.807165 +246 0.817834 0.770599 +375 0.817834 0.770599 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +230 0.817834 0.843731 +238 0.817834 0.807165 +374 0.817834 0.807165 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.868108 +230 0.817834 0.843731 +373 0.817834 0.843731 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.886391 +222 0.817834 0.868108 +372 0.817834 0.868108 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +206 0.817834 0.904674 +214 0.817834 0.886391 +371 0.817834 0.886391 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +198 0.817834 0.916863 +206 0.817834 0.904674 +370 0.817834 0.904674 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +188 0.817834 0.922957 +198 0.817834 0.916863 +369 0.817834 0.916863 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +189 0.817834 0.94124 +188 0.817834 0.922957 +191 0.817834 0.922957 +190 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +189 0.817833 0.941242 +190 0.817833 0.941242 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +360 0.817833 0.904676 +29 0.817833 0.904676 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +361 0.817833 0.886393 +37 0.817833 0.886393 +29 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +362 0.817833 0.86811 +45 0.817833 0.86811 +37 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +363 0.817833 0.843733 +53 0.817833 0.843733 +45 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +364 0.817833 0.807167 +61 0.817833 0.807167 +53 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +365 0.817833 0.7706 +69 0.817833 0.7706 +61 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +366 0.817833 0.721467 +77 0.817833 0.721467 +69 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +367 0.817833 0.672332 +85 0.817833 0.672332 +77 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +368 0.817833 0.623198 +93 0.817833 0.623198 +85 0.817833 0.672332 +kids 0 +OBJECT poly +name "Elevator" +texture "Rascal.rgb" +numvert 225 +1.75895 0.0452271 -0.01905 +1.76212 0.0460779 -0.01905 +1.76212 0.0460779 3.1865e-16 +1.75895 0.0452271 3.17871e-16 +1.76445 0.0484021 -0.01905 +1.76445 0.0484021 3.1922e-16 +1.7653 0.0515771 -0.01905 +1.7653 0.0515771 3.1943e-16 +1.76445 0.0547521 -0.01905 +1.76445 0.0547521 3.1922e-16 +1.76212 0.0570764 -0.01905 +1.76212 0.0570764 3.1865e-16 +1.75895 0.0579271 -0.01905 +1.75895 0.0579271 3.17871e-16 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 -0.01905 +1.77482 0.0570764 -0.0254 +1.77165 0.0579271 -0.0254 +1.77715 0.0547521 -0.0254 +1.778 0.0515771 -0.0254 +1.77715 0.0484021 -0.0254 +1.77482 0.0460779 -0.0254 +1.77165 0.0452271 -0.0254 +1.7526 0.0452271 -0.0254 +1.80022 0.0570764 -0.0381 +1.79705 0.0579271 -0.0381 +1.80255 0.0547521 -0.0381 +1.8034 0.0515771 -0.0381 +1.80255 0.0484021 -0.0381 +1.80022 0.0460779 -0.0381 +1.79705 0.0452271 -0.0381 +1.7526 0.0452271 -0.0381 +1.81292 0.0570764 -0.05715 +1.80975 0.0579271 -0.05715 +1.81525 0.0547521 -0.05715 +1.8161 0.0515771 -0.05715 +1.81525 0.0484021 -0.05715 +1.81292 0.0460779 -0.05715 +1.80975 0.0452271 -0.05715 +1.7526 0.0452271 -0.05715 +1.81927 0.0570764 -0.0762 +1.8161 0.0579271 -0.0762 +1.8216 0.0547521 -0.0762 +1.82245 0.0515771 -0.0762 +1.8216 0.0484021 -0.0762 +1.81927 0.0460779 -0.0762 +1.8161 0.0452271 -0.0762 +1.7526 0.0452271 -0.0762 +1.82562 0.0570764 -0.1016 +1.82245 0.0579271 -0.1016 +1.82795 0.0547521 -0.1016 +1.8288 0.0515771 -0.1016 +1.82795 0.0484021 -0.1016 +1.82562 0.0460779 -0.1016 +1.82245 0.0452271 -0.1016 +1.7526 0.0452271 -0.1016 +1.82906 0.0570764 -0.1397 +1.82588 0.0579271 -0.1397 +1.83138 0.0547521 -0.1397 +1.83223 0.0515771 -0.1397 +1.83138 0.0484021 -0.1397 +1.82906 0.0460779 -0.1397 +1.82588 0.0452271 -0.1397 +1.7526 0.0452271 -0.1397 +1.82628 0.0570764 -0.1778 +1.8231 0.0579271 -0.1778 +1.8286 0.0547521 -0.1778 +1.82945 0.0515771 -0.1778 +1.8286 0.0484021 -0.1778 +1.82628 0.0460779 -0.1778 +1.8231 0.0452271 -0.1778 +1.7526 0.0452271 -0.1778 +1.81929 0.0570764 -0.228995 +1.81611 0.0579271 -0.228995 +1.82161 0.0547521 -0.228995 +1.82246 0.0515771 -0.228995 +1.82161 0.0484021 -0.228995 +1.81929 0.0460779 -0.228995 +1.81611 0.0452271 -0.228995 +1.7526 0.0452271 -0.228995 +1.80911 0.0570764 -0.280191 +1.80594 0.0579271 -0.280191 +1.81144 0.0547521 -0.280191 +1.81229 0.0515771 -0.280191 +1.81144 0.0484021 -0.280191 +1.80911 0.0460779 -0.280191 +1.80594 0.0452271 -0.280191 +1.7526 0.0452271 -0.280191 +1.79534 0.0570764 -0.331386 +1.79217 0.0579271 -0.331386 +1.79767 0.0547521 -0.331386 +1.79852 0.0515771 -0.331386 +1.79767 0.0484021 -0.331386 +1.79534 0.0460779 -0.331386 +1.79217 0.0452271 -0.331386 +1.7526 0.0452271 -0.331386 +1.77682 0.0570764 -0.382186 +1.77365 0.0579271 -0.382186 +1.77915 0.0547521 -0.382186 +1.78 0.0515771 -0.382186 +1.77915 0.0484021 -0.382186 +1.77682 0.0460779 -0.382186 +1.77365 0.0452271 -0.382186 +1.7526 0.0452271 -0.382186 +1.76212 0.0460779 0.01905 +1.75895 0.0452271 0.01905 +1.76445 0.0484021 0.01905 +1.7653 0.0515771 0.01905 +1.76445 0.0547521 0.01905 +1.76212 0.0570764 0.01905 +1.75895 0.0579271 0.01905 +1.77165 0.0579271 0.0254 +1.77482 0.0570764 0.0254 +1.77715 0.0547521 0.0254 +1.778 0.0515771 0.0254 +1.77715 0.0484021 0.0254 +1.77482 0.0460779 0.0254 +1.77165 0.0452271 0.0254 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.01905 +1.79705 0.0579271 0.0381 +1.80022 0.0570764 0.0381 +1.80255 0.0547521 0.0381 +1.8034 0.0515771 0.0381 +1.80255 0.0484021 0.0381 +1.80022 0.0460779 0.0381 +1.79705 0.0452271 0.0381 +1.7526 0.0452271 0.0381 +1.80975 0.0579271 0.05715 +1.81292 0.0570764 0.05715 +1.81525 0.0547521 0.05715 +1.8161 0.0515771 0.05715 +1.81525 0.0484021 0.05715 +1.81292 0.0460779 0.05715 +1.80975 0.0452271 0.05715 +1.7526 0.0452271 0.05715 +1.8161 0.0579271 0.0762 +1.81927 0.0570764 0.0762 +1.8216 0.0547521 0.0762 +1.82245 0.0515771 0.0762 +1.8216 0.0484021 0.0762 +1.81927 0.0460779 0.0762 +1.8161 0.0452271 0.0762 +1.7526 0.0452271 0.0762 +1.82245 0.0579271 0.1016 +1.82562 0.0570764 0.1016 +1.82795 0.0547521 0.1016 +1.8288 0.0515771 0.1016 +1.82795 0.0484021 0.1016 +1.82562 0.0460779 0.1016 +1.82245 0.0452271 0.1016 +1.7526 0.0452271 0.1016 +1.82588 0.0579271 0.1397 +1.82906 0.0570764 0.1397 +1.83138 0.0547521 0.1397 +1.83223 0.0515771 0.1397 +1.83138 0.0484021 0.1397 +1.82906 0.0460779 0.1397 +1.82588 0.0452271 0.1397 +1.7526 0.0452271 0.1397 +1.8231 0.0579271 0.1778 +1.82628 0.0570764 0.1778 +1.8286 0.0547521 0.1778 +1.82945 0.0515771 0.1778 +1.8286 0.0484021 0.1778 +1.82628 0.0460779 0.1778 +1.8231 0.0452271 0.1778 +1.7526 0.0452271 0.1778 +1.81611 0.0579271 0.228995 +1.81929 0.0570764 0.228995 +1.82161 0.0547521 0.228995 +1.82246 0.0515771 0.228995 +1.82161 0.0484021 0.228995 +1.81929 0.0460779 0.228995 +1.81611 0.0452271 0.228995 +1.7526 0.0452271 0.228995 +1.80594 0.0579271 0.280191 +1.80911 0.0570764 0.280191 +1.81144 0.0547521 0.280191 +1.81229 0.0515771 0.280191 +1.81144 0.0484021 0.280191 +1.80911 0.0460779 0.280191 +1.80594 0.0452271 0.280191 +1.7526 0.0452271 0.280191 +1.79217 0.0579271 0.331386 +1.79534 0.0570764 0.331386 +1.79767 0.0547521 0.331386 +1.79852 0.0515771 0.331386 +1.79767 0.0484021 0.331386 +1.79534 0.0460779 0.331386 +1.79217 0.0452271 0.331386 +1.7526 0.0452271 0.331386 +1.77365 0.0579271 0.382186 +1.77682 0.0570764 0.382186 +1.77915 0.0547521 0.382186 +1.78 0.0515771 0.382186 +1.77915 0.0484021 0.382186 +1.77682 0.0460779 0.382186 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.7526 0.0579271 -0.0254 +1.7526 0.0579271 -0.0381 +1.7526 0.0579271 -0.05715 +1.7526 0.0579271 -0.0762 +1.7526 0.0579271 -0.1016 +1.7526 0.0579271 -0.1397 +1.7526 0.0579271 -0.1778 +1.7526 0.0579271 -0.228995 +1.7526 0.0579271 -0.280191 +1.7526 0.0579271 -0.331386 +1.7526 0.0579271 -0.382186 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 0.0254 +1.7526 0.0579271 0.0381 +1.7526 0.0579271 0.05715 +1.7526 0.0579271 0.0762 +1.7526 0.0579271 0.1016 +1.7526 0.0579271 0.1397 +1.7526 0.0579271 0.1778 +1.7526 0.0579271 0.228995 +1.7526 0.0579271 0.280191 +1.7526 0.0579271 0.331386 +1.7526 0.0579271 0.382186 +numsurf 224 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +1 0.822255 0.922959 +2 0.822255 0.941242 +3 0.820783 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +4 0.823337 0.922959 +5 0.823337 0.941242 +2 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +6 0.823732 0.922959 +7 0.823732 0.941242 +5 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +8 0.823337 0.922959 +9 0.823337 0.941242 +7 0.823732 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +10 0.822255 0.922959 +11 0.822255 0.941242 +9 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +12 0.820783 0.922959 +13 0.820783 0.941242 +11 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +13 0.820783 0.941242 +12 0.820783 0.922959 +14 0.817833 0.922959 +15 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +3 0.820783 0.941242 +16 0.817833 0.941242 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +12 0.820783 0.922959 +10 0.822255 0.922959 +18 0.828153 0.916865 +19 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +8 0.823337 0.922959 +20 0.829235 0.916865 +18 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +6 0.823732 0.922959 +21 0.82963 0.916865 +20 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +4 0.823337 0.922959 +22 0.829235 0.916865 +21 0.82963 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +1 0.822255 0.922959 +23 0.828153 0.916865 +22 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +0 0.820783 0.922959 +24 0.826681 0.916865 +23 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +17 0.817833 0.922959 +25 0.817833 0.916865 +24 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.826681 0.916865 +18 0.828153 0.916865 +26 0.83995 0.904676 +27 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.828153 0.916865 +20 0.829235 0.916865 +28 0.841032 0.904676 +26 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +20 0.829235 0.916865 +21 0.82963 0.916865 +29 0.841427 0.904676 +28 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +21 0.82963 0.916865 +22 0.829235 0.916865 +30 0.841032 0.904676 +29 0.841427 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.829235 0.916865 +23 0.828153 0.916865 +31 0.83995 0.904676 +30 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.828153 0.916865 +24 0.826681 0.916865 +32 0.838478 0.904676 +31 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.826681 0.916865 +25 0.817833 0.916865 +33 0.817833 0.904676 +32 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +27 0.838478 0.904676 +26 0.83995 0.904676 +34 0.845849 0.886393 +35 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +26 0.83995 0.904676 +28 0.841032 0.904676 +36 0.846931 0.886393 +34 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +28 0.841032 0.904676 +29 0.841427 0.904676 +37 0.847325 0.886393 +36 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +29 0.841427 0.904676 +30 0.841032 0.904676 +38 0.846931 0.886393 +37 0.847325 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.841032 0.904676 +31 0.83995 0.904676 +39 0.845849 0.886393 +38 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.83995 0.904676 +32 0.838478 0.904676 +40 0.844376 0.886393 +39 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.838478 0.904676 +33 0.817833 0.904676 +41 0.817833 0.886393 +40 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +35 0.844376 0.886393 +34 0.845849 0.886393 +42 0.848798 0.86811 +43 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +34 0.845849 0.886393 +36 0.846931 0.886393 +44 0.84988 0.86811 +42 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +36 0.846931 0.886393 +37 0.847325 0.886393 +45 0.850275 0.86811 +44 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +37 0.847325 0.886393 +38 0.846931 0.886393 +46 0.84988 0.86811 +45 0.850275 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.846931 0.886393 +39 0.845849 0.886393 +47 0.848798 0.86811 +46 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.845849 0.886393 +40 0.844376 0.886393 +48 0.847325 0.86811 +47 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.844376 0.886393 +41 0.817833 0.886393 +49 0.817833 0.86811 +48 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +43 0.847325 0.86811 +42 0.848798 0.86811 +50 0.851747 0.843733 +51 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +42 0.848798 0.86811 +44 0.84988 0.86811 +52 0.852829 0.843733 +50 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +44 0.84988 0.86811 +45 0.850275 0.86811 +53 0.853224 0.843733 +52 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +45 0.850275 0.86811 +46 0.84988 0.86811 +54 0.852829 0.843733 +53 0.853224 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.84988 0.86811 +47 0.848798 0.86811 +55 0.851747 0.843733 +54 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.848798 0.86811 +48 0.847325 0.86811 +56 0.850275 0.843733 +55 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.847325 0.86811 +49 0.817833 0.86811 +57 0.817833 0.843733 +56 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +51 0.850275 0.843733 +50 0.851747 0.843733 +58 0.853344 0.807167 +59 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +50 0.851747 0.843733 +52 0.852829 0.843733 +60 0.854422 0.807167 +58 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +52 0.852829 0.843733 +53 0.853224 0.843733 +61 0.854817 0.807167 +60 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +53 0.853224 0.843733 +54 0.852829 0.843733 +62 0.854422 0.807167 +61 0.854817 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.852829 0.843733 +55 0.851747 0.843733 +63 0.853344 0.807167 +62 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.851747 0.843733 +56 0.850275 0.843733 +64 0.851868 0.807167 +63 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.850275 0.843733 +57 0.817833 0.843733 +65 0.817833 0.807167 +64 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +59 0.851868 0.807167 +58 0.853344 0.807167 +66 0.852053 0.7706 +67 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +58 0.853344 0.807167 +60 0.854422 0.807167 +68 0.853131 0.7706 +66 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +60 0.854422 0.807167 +61 0.854817 0.807167 +69 0.853526 0.7706 +68 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +61 0.854817 0.807167 +62 0.854422 0.807167 +70 0.853131 0.7706 +69 0.853526 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.854422 0.807167 +63 0.853344 0.807167 +71 0.852053 0.7706 +70 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.853344 0.807167 +64 0.851868 0.807167 +72 0.850576 0.7706 +71 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.851868 0.807167 +65 0.817833 0.807167 +73 0.817833 0.7706 +72 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +67 0.850576 0.7706 +66 0.852053 0.7706 +74 0.848807 0.721467 +75 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +66 0.852053 0.7706 +68 0.853131 0.7706 +76 0.849884 0.721467 +74 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +68 0.853131 0.7706 +69 0.853526 0.7706 +77 0.850279 0.721467 +76 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +69 0.853526 0.7706 +70 0.853131 0.7706 +78 0.849884 0.721467 +77 0.850279 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.853131 0.7706 +71 0.852053 0.7706 +79 0.848807 0.721467 +78 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.852053 0.7706 +72 0.850576 0.7706 +80 0.84733 0.721467 +79 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.850576 0.7706 +73 0.817833 0.7706 +81 0.817833 0.721467 +80 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +75 0.84733 0.721467 +74 0.848807 0.721467 +82 0.844079 0.672332 +83 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +74 0.848807 0.721467 +76 0.849884 0.721467 +84 0.845161 0.672332 +82 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +76 0.849884 0.721467 +77 0.850279 0.721467 +85 0.845556 0.672332 +84 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +77 0.850279 0.721467 +78 0.849884 0.721467 +86 0.845161 0.672332 +85 0.845556 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.849884 0.721467 +79 0.848807 0.721467 +87 0.844079 0.672332 +86 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.848807 0.721467 +80 0.84733 0.721467 +88 0.842607 0.672332 +87 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.84733 0.721467 +81 0.817833 0.721467 +89 0.817833 0.672332 +88 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +83 0.842607 0.672332 +82 0.844079 0.672332 +90 0.837684 0.623198 +91 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +82 0.844079 0.672332 +84 0.845161 0.672332 +92 0.838766 0.623198 +90 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +84 0.845161 0.672332 +85 0.845556 0.672332 +93 0.839161 0.623198 +92 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +85 0.845556 0.672332 +86 0.845161 0.672332 +94 0.838766 0.623198 +93 0.839161 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.845161 0.672332 +87 0.844079 0.672332 +95 0.837684 0.623198 +94 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.844079 0.672332 +88 0.842607 0.672332 +96 0.836211 0.623198 +95 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.842607 0.672332 +89 0.817833 0.672332 +97 0.817833 0.623198 +96 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +91 0.836211 0.623198 +90 0.837684 0.623198 +98 0.829082 0.574443 +99 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +90 0.837684 0.623198 +92 0.838766 0.623198 +100 0.830164 0.574443 +98 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +92 0.838766 0.623198 +93 0.839161 0.623198 +101 0.830559 0.574443 +100 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +93 0.839161 0.623198 +94 0.838766 0.623198 +102 0.830164 0.574443 +101 0.830559 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.838766 0.623198 +95 0.837684 0.623198 +103 0.829082 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.837684 0.623198 +96 0.836211 0.623198 +104 0.82761 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.836211 0.623198 +97 0.817833 0.623198 +105 0.817833 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +3 0.820784 0.94124 +2 0.822256 0.94124 +106 0.822256 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.822256 0.94124 +5 0.823338 0.94124 +108 0.823338 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.823338 0.94124 +7 0.823733 0.94124 +109 0.823733 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.823733 0.94124 +9 0.823338 0.94124 +110 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.823338 0.94124 +11 0.822256 0.94124 +111 0.822256 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.822256 0.94124 +13 0.820784 0.94124 +112 0.820784 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +113 0.826682 0.916863 +114 0.828154 0.916863 +111 0.822256 0.922957 +112 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +114 0.828154 0.916863 +115 0.829237 0.916863 +110 0.823338 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +115 0.829237 0.916863 +116 0.829631 0.916863 +109 0.823733 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +116 0.829631 0.916863 +117 0.829237 0.916863 +108 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +117 0.829237 0.916863 +118 0.828154 0.916863 +106 0.822256 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +118 0.828154 0.916863 +119 0.826682 0.916863 +107 0.820784 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +119 0.826682 0.916863 +120 0.817834 0.916863 +121 0.817834 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +122 0.838479 0.904674 +123 0.839951 0.904674 +114 0.828154 0.916863 +113 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +123 0.839951 0.904674 +124 0.841033 0.904674 +115 0.829237 0.916863 +114 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +124 0.841033 0.904674 +125 0.841428 0.904674 +116 0.829631 0.916863 +115 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +125 0.841428 0.904674 +126 0.841033 0.904674 +117 0.829237 0.916863 +116 0.829631 0.916863 +SURF 0x10 +mat 1 +refs 4 +126 0.841033 0.904674 +127 0.839951 0.904674 +118 0.828154 0.916863 +117 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +127 0.839951 0.904674 +128 0.838479 0.904674 +119 0.826682 0.916863 +118 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +128 0.838479 0.904674 +129 0.817834 0.904674 +120 0.817834 0.916863 +119 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +130 0.844377 0.886391 +131 0.845849 0.886391 +123 0.839951 0.904674 +122 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +131 0.845849 0.886391 +132 0.846932 0.886391 +124 0.841033 0.904674 +123 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +132 0.846932 0.886391 +133 0.847326 0.886391 +125 0.841428 0.904674 +124 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +133 0.847326 0.886391 +134 0.846932 0.886391 +126 0.841033 0.904674 +125 0.841428 0.904674 +SURF 0x10 +mat 1 +refs 4 +134 0.846932 0.886391 +135 0.845849 0.886391 +127 0.839951 0.904674 +126 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +135 0.845849 0.886391 +136 0.844377 0.886391 +128 0.838479 0.904674 +127 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +136 0.844377 0.886391 +137 0.817834 0.886391 +129 0.817834 0.904674 +128 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +138 0.847326 0.868108 +139 0.848799 0.868108 +131 0.845849 0.886391 +130 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +139 0.848799 0.868108 +140 0.849881 0.868108 +132 0.846932 0.886391 +131 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +140 0.849881 0.868108 +141 0.850276 0.868108 +133 0.847326 0.886391 +132 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +141 0.850276 0.868108 +142 0.849881 0.868108 +134 0.846932 0.886391 +133 0.847326 0.886391 +SURF 0x10 +mat 1 +refs 4 +142 0.849881 0.868108 +143 0.848799 0.868108 +135 0.845849 0.886391 +134 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +143 0.848799 0.868108 +144 0.847326 0.868108 +136 0.844377 0.886391 +135 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +144 0.847326 0.868108 +145 0.817834 0.868108 +137 0.817834 0.886391 +136 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +146 0.850276 0.843731 +147 0.851748 0.843731 +139 0.848799 0.868108 +138 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +147 0.851748 0.843731 +148 0.85283 0.843731 +140 0.849881 0.868108 +139 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +148 0.85283 0.843731 +149 0.853225 0.843731 +141 0.850276 0.868108 +140 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +149 0.853225 0.843731 +150 0.85283 0.843731 +142 0.849881 0.868108 +141 0.850276 0.868108 +SURF 0x10 +mat 1 +refs 4 +150 0.85283 0.843731 +151 0.851748 0.843731 +143 0.848799 0.868108 +142 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +151 0.851748 0.843731 +152 0.850276 0.843731 +144 0.847326 0.868108 +143 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +152 0.850276 0.843731 +153 0.817834 0.843731 +145 0.817834 0.868108 +144 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +154 0.851869 0.807165 +155 0.853345 0.807165 +147 0.851748 0.843731 +146 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +155 0.853345 0.807165 +156 0.854423 0.807165 +148 0.85283 0.843731 +147 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +156 0.854423 0.807165 +157 0.854818 0.807165 +149 0.853225 0.843731 +148 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +157 0.854818 0.807165 +158 0.854423 0.807165 +150 0.85283 0.843731 +149 0.853225 0.843731 +SURF 0x10 +mat 1 +refs 4 +158 0.854423 0.807165 +159 0.853345 0.807165 +151 0.851748 0.843731 +150 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +159 0.853345 0.807165 +160 0.851869 0.807165 +152 0.850276 0.843731 +151 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +160 0.851869 0.807165 +161 0.817834 0.807165 +153 0.817834 0.843731 +152 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +162 0.850577 0.770599 +163 0.852054 0.770599 +155 0.853345 0.807165 +154 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +163 0.852054 0.770599 +164 0.853132 0.770599 +156 0.854423 0.807165 +155 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +164 0.853132 0.770599 +165 0.853527 0.770599 +157 0.854818 0.807165 +156 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +165 0.853527 0.770599 +166 0.853132 0.770599 +158 0.854423 0.807165 +157 0.854818 0.807165 +SURF 0x10 +mat 1 +refs 4 +166 0.853132 0.770599 +167 0.852054 0.770599 +159 0.853345 0.807165 +158 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +167 0.852054 0.770599 +168 0.850577 0.770599 +160 0.851869 0.807165 +159 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +168 0.850577 0.770599 +169 0.817834 0.770599 +161 0.817834 0.807165 +160 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +170 0.847331 0.721465 +171 0.848808 0.721465 +163 0.852054 0.770599 +162 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +171 0.848808 0.721465 +172 0.849885 0.721465 +164 0.853132 0.770599 +163 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +172 0.849885 0.721465 +173 0.85028 0.721465 +165 0.853527 0.770599 +164 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +173 0.85028 0.721465 +174 0.849885 0.721465 +166 0.853132 0.770599 +165 0.853527 0.770599 +SURF 0x10 +mat 1 +refs 4 +174 0.849885 0.721465 +175 0.848808 0.721465 +167 0.852054 0.770599 +166 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +175 0.848808 0.721465 +176 0.847331 0.721465 +168 0.850577 0.770599 +167 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +176 0.847331 0.721465 +177 0.817834 0.721465 +169 0.817834 0.770599 +168 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +178 0.842608 0.67233 +179 0.84408 0.67233 +171 0.848808 0.721465 +170 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +179 0.84408 0.67233 +180 0.845162 0.67233 +172 0.849885 0.721465 +171 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +180 0.845162 0.67233 +181 0.845557 0.67233 +173 0.85028 0.721465 +172 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +181 0.845557 0.67233 +182 0.845162 0.67233 +174 0.849885 0.721465 +173 0.85028 0.721465 +SURF 0x10 +mat 1 +refs 4 +182 0.845162 0.67233 +183 0.84408 0.67233 +175 0.848808 0.721465 +174 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +183 0.84408 0.67233 +184 0.842608 0.67233 +176 0.847331 0.721465 +175 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +184 0.842608 0.67233 +185 0.817834 0.67233 +177 0.817834 0.721465 +176 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +186 0.836212 0.623196 +187 0.837685 0.623196 +179 0.84408 0.67233 +178 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +187 0.837685 0.623196 +188 0.838767 0.623196 +180 0.845162 0.67233 +179 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +188 0.838767 0.623196 +189 0.839162 0.623196 +181 0.845557 0.67233 +180 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +189 0.839162 0.623196 +190 0.838767 0.623196 +182 0.845162 0.67233 +181 0.845557 0.67233 +SURF 0x10 +mat 1 +refs 4 +190 0.838767 0.623196 +191 0.837685 0.623196 +183 0.84408 0.67233 +182 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +191 0.837685 0.623196 +192 0.836212 0.623196 +184 0.842608 0.67233 +183 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +192 0.836212 0.623196 +193 0.817834 0.623196 +185 0.817834 0.67233 +184 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +194 0.827611 0.574441 +195 0.829083 0.574441 +187 0.837685 0.623196 +186 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +195 0.829083 0.574441 +196 0.830165 0.574441 +188 0.838767 0.623196 +187 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +196 0.830165 0.574441 +197 0.83056 0.574441 +189 0.839162 0.623196 +188 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +197 0.83056 0.574441 +198 0.830165 0.574441 +190 0.838767 0.623196 +189 0.839162 0.623196 +SURF 0x10 +mat 1 +refs 4 +198 0.830165 0.574441 +199 0.829083 0.574441 +191 0.837685 0.623196 +190 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +200 0.827611 0.574441 +192 0.836212 0.623196 +191 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +201 0.817834 0.574441 +193 0.817834 0.623196 +192 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +12 0.820783 0.922959 +19 0.826681 0.916865 +202 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +19 0.826681 0.916865 +27 0.838478 0.904676 +203 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +27 0.838478 0.904676 +35 0.844376 0.886393 +204 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +35 0.844376 0.886393 +43 0.847325 0.86811 +205 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +43 0.847325 0.86811 +51 0.850275 0.843733 +206 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +51 0.850275 0.843733 +59 0.851868 0.807167 +207 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +59 0.851868 0.807167 +67 0.850576 0.7706 +208 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +67 0.850576 0.7706 +75 0.84733 0.721467 +209 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +75 0.84733 0.721467 +83 0.842607 0.672332 +210 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +83 0.842607 0.672332 +91 0.836211 0.623198 +211 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +91 0.836211 0.623198 +99 0.82761 0.574443 +212 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +213 0.817834 0.922957 +112 0.820784 0.922957 +13 0.820784 0.94124 +15 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +16 0.817834 0.94124 +3 0.820784 0.94124 +107 0.820784 0.922957 +121 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.916863 +113 0.826682 0.916863 +112 0.820784 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +215 0.817834 0.904674 +122 0.838479 0.904674 +113 0.826682 0.916863 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +216 0.817834 0.886391 +130 0.844377 0.886391 +122 0.838479 0.904674 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.817834 0.868108 +138 0.847326 0.868108 +130 0.844377 0.886391 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +218 0.817834 0.843731 +146 0.850276 0.843731 +138 0.847326 0.868108 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +219 0.817834 0.807165 +154 0.851869 0.807165 +146 0.850276 0.843731 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +220 0.817834 0.770599 +162 0.850577 0.770599 +154 0.851869 0.807165 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +221 0.817834 0.721465 +170 0.847331 0.721465 +162 0.850577 0.770599 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.67233 +178 0.842608 0.67233 +170 0.847331 0.721465 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +223 0.817834 0.623196 +186 0.836212 0.623196 +178 0.842608 0.67233 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +224 0.817834 0.574441 +194 0.827611 0.574441 +186 0.836212 0.623196 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +15 0.817834 0.94124 +16 0.817834 0.94124 +121 0.817834 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +212 0.817833 0.574443 +99 0.82761 0.574443 +104 0.82761 0.574443 +105 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 3 +100 0.830164 0.574443 +101 0.830559 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.829082 0.574443 +100 0.830164 0.574443 +102 0.830164 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +99 0.82761 0.574443 +98 0.829082 0.574443 +103 0.829082 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +212 0.817833 0.574443 +105 0.817833 0.574443 +97 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +211 0.817833 0.623198 +97 0.817833 0.623198 +89 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +210 0.817833 0.672332 +89 0.817833 0.672332 +81 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +209 0.817833 0.721467 +81 0.817833 0.721467 +73 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +208 0.817833 0.7706 +73 0.817833 0.7706 +65 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +207 0.817833 0.807167 +65 0.817833 0.807167 +57 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +206 0.817833 0.843733 +57 0.817833 0.843733 +49 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +205 0.817833 0.86811 +49 0.817833 0.86811 +41 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +204 0.817833 0.886393 +41 0.817833 0.886393 +33 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +203 0.817833 0.904676 +33 0.817833 0.904676 +25 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +202 0.817833 0.916865 +25 0.817833 0.916865 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +15 0.817833 0.941242 +14 0.817833 0.922959 +17 0.817833 0.922959 +16 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +121 0.817834 0.922957 +120 0.817834 0.916863 +214 0.817834 0.916863 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +120 0.817834 0.916863 +129 0.817834 0.904674 +215 0.817834 0.904674 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +129 0.817834 0.904674 +137 0.817834 0.886391 +216 0.817834 0.886391 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +137 0.817834 0.886391 +145 0.817834 0.868108 +217 0.817834 0.868108 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +145 0.817834 0.868108 +153 0.817834 0.843731 +218 0.817834 0.843731 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +153 0.817834 0.843731 +161 0.817834 0.807165 +219 0.817834 0.807165 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +161 0.817834 0.807165 +169 0.817834 0.770599 +220 0.817834 0.770599 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +169 0.817834 0.770599 +177 0.817834 0.721465 +221 0.817834 0.721465 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +177 0.817834 0.721465 +185 0.817834 0.67233 +222 0.817834 0.67233 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +185 0.817834 0.67233 +193 0.817834 0.623196 +223 0.817834 0.623196 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +193 0.817834 0.623196 +201 0.817834 0.574441 +224 0.817834 0.574441 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +201 0.817834 0.574441 +200 0.827611 0.574441 +194 0.827611 0.574441 +224 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +199 0.829083 0.574441 +195 0.829083 0.574441 +194 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +198 0.830165 0.574441 +196 0.830165 0.574441 +195 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +198 0.830165 0.574441 +197 0.83056 0.574441 +196 0.830165 0.574441 +kids 0 +OBJECT poly +name "Fin" +texture "Rascal.rgb" +numvert 204 +1.73613 0.33416 0.00549926 +1.74579 0.334193 0.00549926 +1.74714 0.335765 0.003175 +1.73473 0.335703 0.003175 +1.5718 -0.0493484 0.00549926 +1.57498 -0.0493484 0.00635 +1.57498 -0.0429984 0.00635 +1.5718 -0.0429984 0.00549926 +1.74008 -0.0493484 0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.74325 -0.0493484 0.00549926 +1.7526 -0.0473896 0.00549926 +1.74558 -0.0493484 0.003175 +1.7526 -0.0478767 0.003175 +1.74643 -0.0493484 9.27603e-17 +1.7526 -0.048055 9.42714e-17 +1.74558 -0.0493484 -0.003175 +1.7526 -0.0478767 -0.003175 +1.74325 -0.0493484 -0.00549926 +1.7526 -0.0473896 -0.00549926 +1.74008 -0.0493484 -0.00635 +1.7526 -0.0467241 -0.00635 +1.57498 -0.0493484 -0.00635 +1.57498 -0.0429984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.5718 -0.0493484 -0.00549926 +1.5718 -0.0429984 -0.00549926 +1.56948 -0.0493484 -0.003175 +1.56948 -0.0429984 -0.003175 +1.56863 -0.0493484 7.69716e-17 +1.56863 -0.0429984 9.08494e-17 +1.56948 -0.0493484 0.003175 +1.56948 -0.0429984 0.003175 +1.57498 -0.0302984 0.00635 +1.5718 -0.0302984 0.00549926 +1.7526 -0.0302984 0.00635 +1.5718 -0.0302984 -0.00549926 +1.57498 -0.0302984 -0.00635 +1.56948 -0.0302984 -0.003175 +1.56863 -0.0302984 1.04727e-16 +1.56948 -0.0302984 0.003175 +1.57498 -0.0112484 0.00635 +1.5718 -0.0112484 0.00549926 +1.7526 -0.0112484 0.00635 +1.5718 -0.0112484 -0.00549926 +1.57498 -0.0112484 -0.00635 +1.56948 -0.0112484 -0.003175 +1.56863 -0.0112484 1.18605e-16 +1.56948 -0.0112484 0.003175 +1.57498 0.00780156 0.00635 +1.5718 0.00780156 0.00549926 +1.7526 0.00780156 0.00635 +1.5718 0.00780156 -0.00549926 +1.57498 0.00780156 -0.00635 +1.56948 0.00780156 -0.003175 +1.56863 0.00780156 1.46361e-16 +1.56948 0.00780156 0.003175 +1.57498 0.0332016 0.00635 +1.5718 0.0332016 0.00549926 +1.7526 0.0332016 0.00635 +1.5718 0.0332016 -0.00549926 +1.57498 0.0332016 -0.00635 +1.56948 0.0332016 -0.003175 +1.56863 0.0332016 2.01872e-16 +1.56948 0.0332016 0.003175 +1.47999 0.0670341 0.00635 +1.47681 0.0670341 0.00549926 +1.7526 0.0676649 0.00635 +1.47681 0.0670341 -0.00549926 +1.47999 0.0670341 -0.00635 +1.47449 0.0670341 -0.003175 +1.47364 0.0670341 2.61872e-16 +1.47449 0.0670341 0.003175 +1.56201 0.08255 0.00635 +1.55884 0.08255 0.00549926 +1.7526 0.0996346 0.00635 +1.58561 0.0996346 0.00635 +1.55884 0.08255 -0.00549926 +1.56201 0.08255 -0.00635 +1.55651 0.08255 -0.003175 +1.55566 0.08255 3.16655e-16 +1.55651 0.08255 0.003175 +1.58244 0.0996346 0.00549926 +1.60643 0.142297 0.00635 +1.60326 0.142297 0.00549926 +1.7526 0.142297 0.00635 +1.58561 0.0996346 -0.00635 +1.58244 0.0996346 -0.00549926 +1.60326 0.142297 -0.00549926 +1.60643 0.142297 -0.00635 +1.58011 0.0996346 -0.003175 +1.60093 0.142297 -0.003175 +1.57926 0.0996346 3.71007e-16 +1.60008 0.142297 4.87129e-16 +1.58011 0.0996346 0.003175 +1.60093 0.142297 0.003175 +1.62752 0.18496 0.00635 +1.62434 0.18496 0.00549926 +1.7526 0.18496 0.00635 +1.62434 0.18496 -0.00549926 +1.62752 0.18496 -0.00635 +1.62202 0.18496 -0.003175 +1.62117 0.18496 6.03314e-16 +1.62202 0.18496 0.003175 +1.64695 0.227623 0.00635 +1.64377 0.227623 0.00549926 +1.7526 0.227623 0.00635 +1.64377 0.227623 -0.00549926 +1.64695 0.227623 -0.00635 +1.64145 0.227623 -0.003175 +1.6406 0.227623 7.32975e-16 +1.64145 0.227623 0.003175 +1.66962 0.269956 0.00635 +1.66644 0.269956 0.00549926 +1.7526 0.269956 0.00635 +1.66644 0.269956 -0.00549926 +1.66962 0.269956 -0.00635 +1.66412 0.269956 -0.003175 +1.66327 0.269956 8.4955e-16 +1.66412 0.269956 0.003175 +1.68421 0.291774 0.00635 +1.68104 0.291774 0.00549926 +1.80011 0.269956 0.00635 +1.80328 0.269956 0.00549926 +1.79409 0.291774 0.00549926 +1.79092 0.291774 0.00635 +1.8056 0.269956 0.003175 +1.79642 0.291774 0.003175 +1.80646 0.269956 8.42988e-16 +1.79727 0.291774 8.96246e-16 +1.8056 0.269956 -0.003175 +1.79642 0.291774 -0.003175 +1.80328 0.269956 -0.00549926 +1.79409 0.291774 -0.00549926 +1.80011 0.269956 -0.00635 +1.79092 0.291774 -0.00635 +1.7526 0.269956 -0.00635 +1.68104 0.291774 -0.00549926 +1.68421 0.291774 -0.00635 +1.67872 0.291774 -0.003175 +1.67786 0.291774 8.87819e-16 +1.67872 0.291774 0.003175 +1.70051 0.312941 0.00635 +1.69733 0.312941 0.00549926 +1.77784 0.312941 0.00635 +1.78102 0.312941 0.00549926 +1.78334 0.312941 0.003175 +1.78419 0.312941 9.48555e-16 +1.78334 0.312941 -0.003175 +1.78102 0.312941 -0.00549926 +1.77784 0.312941 -0.00635 +1.70051 0.312941 -0.00635 +1.69733 0.312941 -0.00549926 +1.69501 0.312941 -0.003175 +1.69416 0.312941 9.54261e-16 +1.69501 0.312941 0.003175 +1.70982 0.320425 0.00635 +1.70664 0.320425 0.00549926 +1.77103 0.320425 0.00635 +1.77421 0.320425 0.00549926 +1.77653 0.320425 0.003175 +1.77738 0.320425 9.60766e-16 +1.77653 0.320425 -0.003175 +1.77421 0.320425 -0.00549926 +1.77103 0.320425 -0.00635 +1.70982 0.320425 -0.00635 +1.70664 0.320425 -0.00549926 +1.70432 0.320425 -0.003175 +1.70347 0.320425 9.70419e-16 +1.70432 0.320425 0.003175 +1.7248 0.331008 0.00635 +1.72162 0.331008 0.00549926 +1.7588 0.331008 0.00635 +1.76197 0.331008 0.00549926 +1.7643 0.331008 0.003175 +1.76515 0.331008 9.85526e-16 +1.7643 0.331008 -0.003175 +1.76197 0.331008 -0.00549926 +1.7588 0.331008 -0.00635 +1.7248 0.331008 -0.00635 +1.72162 0.331008 -0.00549926 +1.7193 0.331008 -0.003175 +1.71845 0.331008 1.00184e-15 +1.7193 0.331008 0.003175 +1.73805 0.332053 0.00635 +1.74393 0.332046 0.00635 +1.74764 0.336341 9.95115e-16 +1.74714 0.335765 -0.003175 +1.74579 0.334193 -0.00549926 +1.74393 0.332046 -0.00635 +1.73805 0.332053 -0.00635 +1.73613 0.33416 -0.00549926 +1.73473 0.335703 -0.003175 +1.73421 0.336267 1.0057e-15 +1.7526 -0.0302984 -0.00635 +1.7526 -0.0112484 -0.00635 +1.7526 0.00780156 -0.00635 +1.7526 0.0332016 -0.00635 +1.7526 0.0676649 -0.00635 +1.7526 0.0996346 -0.00635 +1.7526 0.142297 -0.00635 +1.7526 0.18496 -0.00635 +1.7526 0.227623 -0.00635 +numsurf 202 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +1 0.900578 0.588527 +2 0.90123 0.590037 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +4 0.816575 0.220192 +5 0.81811 0.220192 +6 0.81811 0.22629 +7 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 5 +5 0.81811 0.220192 +8 0.897821 0.229292 +9 0.903866 0.222712 +10 0.903866 0.22629 +6 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +8 0.897821 0.229292 +11 0.899352 0.229292 +12 0.903866 0.222073 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +11 0.899352 0.229292 +13 0.900477 0.229292 +14 0.903866 0.221605 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +13 0.900477 0.229292 +15 0.900887 0.229292 +16 0.903866 0.221434 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +15 0.900887 0.229292 +17 0.900477 0.229292 +18 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +17 0.900477 0.229292 +19 0.899352 0.229292 +20 0.903866 0.222073 +18 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +19 0.899352 0.229292 +21 0.897821 0.229292 +22 0.903866 0.222712 +20 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 5 +21 0.897821 0.229292 +23 0.81811 0.220192 +24 0.81811 0.22629 +25 0.903866 0.22629 +22 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +23 0.81811 0.220192 +26 0.816575 0.220192 +27 0.816575 0.22629 +24 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +26 0.816575 0.220192 +28 0.815455 0.220192 +29 0.815455 0.22629 +27 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 4 +28 0.815455 0.220192 +30 0.815044 0.220192 +31 0.815044 0.22629 +29 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +30 0.815044 0.220192 +32 0.815455 0.220192 +33 0.815455 0.22629 +31 0.815044 0.22629 +SURF 0x10 +mat 1 +refs 4 +32 0.815455 0.220192 +4 0.816575 0.220192 +7 0.816575 0.22629 +33 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +7 0.816575 0.22629 +6 0.81811 0.22629 +34 0.81811 0.238487 +35 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.81811 0.22629 +10 0.903866 0.22629 +36 0.903866 0.238487 +34 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +24 0.81811 0.22629 +27 0.816575 0.22629 +37 0.816575 0.238487 +38 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +27 0.816575 0.22629 +29 0.815455 0.22629 +39 0.815455 0.238487 +37 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +29 0.815455 0.22629 +31 0.815044 0.22629 +40 0.815044 0.238487 +39 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +31 0.815044 0.22629 +33 0.815455 0.22629 +41 0.815455 0.238487 +40 0.815044 0.238487 +SURF 0x10 +mat 1 +refs 4 +33 0.815455 0.22629 +7 0.816575 0.22629 +35 0.816575 0.238487 +41 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +35 0.816575 0.238487 +34 0.81811 0.238487 +42 0.81811 0.256781 +43 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +34 0.81811 0.238487 +36 0.903866 0.238487 +44 0.903866 0.256781 +42 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +38 0.81811 0.238487 +37 0.816575 0.238487 +45 0.816575 0.256781 +46 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +37 0.816575 0.238487 +39 0.815455 0.238487 +47 0.815455 0.256781 +45 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +39 0.815455 0.238487 +40 0.815044 0.238487 +48 0.815044 0.256781 +47 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +40 0.815044 0.238487 +41 0.815455 0.238487 +49 0.815455 0.256781 +48 0.815044 0.256781 +SURF 0x10 +mat 1 +refs 4 +41 0.815455 0.238487 +35 0.816575 0.238487 +43 0.816575 0.256781 +49 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +43 0.816575 0.256781 +42 0.81811 0.256781 +50 0.81811 0.275076 +51 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +42 0.81811 0.256781 +44 0.903866 0.256781 +52 0.903866 0.275076 +50 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +46 0.81811 0.256781 +45 0.816575 0.256781 +53 0.816575 0.275076 +54 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +45 0.816575 0.256781 +47 0.815455 0.256781 +55 0.815455 0.275076 +53 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +47 0.815455 0.256781 +48 0.815044 0.256781 +56 0.815044 0.275076 +55 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +48 0.815044 0.256781 +49 0.815455 0.256781 +57 0.815455 0.275076 +56 0.815044 0.275076 +SURF 0x10 +mat 1 +refs 4 +49 0.815455 0.256781 +43 0.816575 0.256781 +51 0.816575 0.275076 +57 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +51 0.816575 0.275076 +50 0.81811 0.275076 +58 0.81811 0.299469 +59 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +50 0.81811 0.275076 +52 0.903866 0.275076 +60 0.903866 0.299469 +58 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +54 0.81811 0.275076 +53 0.816575 0.275076 +61 0.816575 0.299469 +62 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +53 0.816575 0.275076 +55 0.815455 0.275076 +63 0.815455 0.299469 +61 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +55 0.815455 0.275076 +56 0.815044 0.275076 +64 0.815044 0.299469 +63 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +56 0.815044 0.275076 +57 0.815455 0.275076 +65 0.815455 0.299469 +64 0.815044 0.299469 +SURF 0x10 +mat 1 +refs 4 +57 0.815455 0.275076 +51 0.816575 0.275076 +59 0.816575 0.299469 +65 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +59 0.816575 0.299469 +58 0.81811 0.299469 +66 0.772318 0.328378 +67 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +58 0.81811 0.299469 +60 0.903866 0.299469 +68 0.903866 0.332566 +66 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +62 0.81811 0.299469 +61 0.816575 0.299469 +69 0.770783 0.328378 +70 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +61 0.816575 0.299469 +63 0.815455 0.299469 +71 0.769663 0.328378 +69 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +63 0.815455 0.299469 +64 0.815044 0.299469 +72 0.769252 0.328378 +71 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +64 0.815044 0.299469 +65 0.815455 0.299469 +73 0.769663 0.328378 +72 0.769252 0.328378 +SURF 0x10 +mat 1 +refs 4 +65 0.815455 0.299469 +59 0.816575 0.299469 +67 0.770783 0.328378 +73 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +67 0.770783 0.328378 +66 0.772318 0.328378 +74 0.812184 0.346439 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 5 +66 0.772318 0.328378 +68 0.903866 0.332566 +76 0.903866 0.363268 +77 0.823228 0.363268 +74 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +70 0.772318 0.328378 +69 0.770783 0.328378 +78 0.811462 0.346439 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +69 0.770783 0.328378 +71 0.769663 0.328378 +80 0.810931 0.346439 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +71 0.769663 0.328378 +72 0.769252 0.328378 +81 0.810737 0.346439 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +72 0.769252 0.328378 +73 0.769663 0.328378 +82 0.810931 0.346439 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +73 0.769663 0.328378 +67 0.770783 0.328378 +75 0.811462 0.346439 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +83 0.822787 0.363268 +77 0.823228 0.363268 +84 0.833294 0.404239 +85 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +77 0.823228 0.363268 +76 0.903866 0.363268 +86 0.903866 0.404239 +84 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +87 0.823228 0.363268 +88 0.822787 0.363268 +89 0.831757 0.404239 +90 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +88 0.822787 0.363268 +91 0.822462 0.363268 +92 0.831716 0.404239 +89 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +91 0.822462 0.363268 +93 0.822344 0.363268 +94 0.8317 0.404239 +92 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +93 0.822344 0.363268 +95 0.822462 0.363268 +96 0.831716 0.404239 +94 0.8317 0.404239 +SURF 0x10 +mat 1 +refs 4 +95 0.822462 0.363268 +83 0.822787 0.363268 +85 0.831757 0.404239 +96 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +85 0.831757 0.404239 +84 0.833294 0.404239 +97 0.843477 0.44521 +98 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +84 0.833294 0.404239 +86 0.903866 0.404239 +99 0.903866 0.44521 +97 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +90 0.833294 0.404239 +89 0.831757 0.404239 +100 0.842013 0.44521 +101 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +89 0.831757 0.404239 +92 0.831716 0.404239 +102 0.842013 0.44521 +100 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +92 0.831716 0.404239 +94 0.8317 0.404239 +103 0.842013 0.44521 +102 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +94 0.8317 0.404239 +96 0.831716 0.404239 +104 0.842013 0.44521 +103 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +96 0.831716 0.404239 +85 0.831757 0.404239 +98 0.842013 0.44521 +104 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +98 0.842013 0.44521 +97 0.843477 0.44521 +105 0.852858 0.486182 +106 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +97 0.843477 0.44521 +99 0.903866 0.44521 +107 0.903866 0.486182 +105 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +101 0.843477 0.44521 +100 0.842013 0.44521 +108 0.851321 0.486182 +109 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +100 0.842013 0.44521 +102 0.842013 0.44521 +110 0.851129 0.486182 +108 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +102 0.842013 0.44521 +103 0.842013 0.44521 +111 0.851058 0.486182 +110 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.842013 0.44521 +104 0.842013 0.44521 +112 0.851129 0.486182 +111 0.851058 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.842013 0.44521 +98 0.842013 0.44521 +106 0.851321 0.486182 +112 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +106 0.851321 0.486182 +105 0.852858 0.486182 +113 0.863803 0.526837 +114 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +105 0.852858 0.486182 +107 0.903866 0.486182 +115 0.903866 0.526837 +113 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +109 0.852858 0.486182 +108 0.851321 0.486182 +116 0.863087 0.524444 +117 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +108 0.851321 0.486182 +110 0.851129 0.486182 +118 0.862791 0.524444 +116 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +110 0.851129 0.486182 +111 0.851058 0.486182 +119 0.862682 0.524444 +118 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +111 0.851058 0.486182 +112 0.851129 0.486182 +120 0.862791 0.524444 +119 0.862682 0.524444 +SURF 0x10 +mat 1 +refs 4 +112 0.851129 0.486182 +106 0.851321 0.486182 +114 0.863087 0.524444 +120 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +114 0.863087 0.524444 +113 0.863803 0.526837 +121 0.870847 0.54779 +122 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 3 +113 0.863803 0.526837 +115 0.903866 0.526837 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +123 0.926804 0.526837 +124 0.928335 0.526837 +125 0.923898 0.54779 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +124 0.928335 0.526837 +127 0.929455 0.526837 +128 0.925023 0.54779 +125 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 4 +127 0.929455 0.526837 +129 0.92987 0.526837 +130 0.925433 0.54779 +128 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +129 0.92987 0.526837 +131 0.929455 0.526837 +132 0.925023 0.54779 +130 0.925433 0.54779 +SURF 0x10 +mat 1 +refs 4 +131 0.929455 0.526837 +133 0.928335 0.526837 +134 0.923898 0.54779 +132 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +135 0.926804 0.526837 +136 0.922367 0.54779 +134 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 3 +135 0.926804 0.526837 +137 0.903866 0.526837 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +117 0.863803 0.526837 +116 0.863087 0.524444 +138 0.869317 0.54779 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +116 0.863087 0.524444 +118 0.862791 0.524444 +140 0.868548 0.543567 +138 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 4 +118 0.862791 0.524444 +119 0.862682 0.524444 +141 0.868133 0.543567 +140 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +119 0.862682 0.524444 +120 0.862791 0.524444 +142 0.868548 0.543567 +141 0.868133 0.543567 +SURF 0x10 +mat 1 +refs 4 +120 0.862791 0.524444 +114 0.863087 0.524444 +122 0.869317 0.54779 +142 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +122 0.869317 0.54779 +121 0.870847 0.54779 +143 0.878717 0.568117 +144 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +121 0.870847 0.54779 +126 0.922367 0.54779 +145 0.916052 0.568117 +143 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +126 0.922367 0.54779 +125 0.923898 0.54779 +146 0.917588 0.568117 +145 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +125 0.923898 0.54779 +128 0.925023 0.54779 +147 0.918708 0.568117 +146 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +128 0.925023 0.54779 +130 0.925433 0.54779 +148 0.919118 0.568117 +147 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +130 0.925433 0.54779 +132 0.925023 0.54779 +149 0.918708 0.568117 +148 0.919118 0.568117 +SURF 0x10 +mat 1 +refs 4 +132 0.925023 0.54779 +134 0.923898 0.54779 +150 0.917588 0.568117 +149 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +134 0.923898 0.54779 +136 0.922367 0.54779 +151 0.916052 0.568117 +150 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +136 0.922367 0.54779 +139 0.870847 0.54779 +152 0.878717 0.568117 +151 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +139 0.870847 0.54779 +138 0.869317 0.54779 +153 0.879199 0.565583 +152 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +138 0.869317 0.54779 +140 0.868548 0.543567 +154 0.878929 0.565583 +153 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +140 0.868548 0.543567 +141 0.868133 0.543567 +155 0.87883 0.565583 +154 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +141 0.868133 0.543567 +142 0.868548 0.543567 +156 0.878929 0.565583 +155 0.87883 0.565583 +SURF 0x10 +mat 1 +refs 4 +142 0.868548 0.543567 +122 0.869317 0.54779 +144 0.879199 0.565583 +156 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +144 0.879199 0.565583 +143 0.878717 0.568117 +157 0.883212 0.575305 +158 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +143 0.878717 0.568117 +145 0.916052 0.568117 +159 0.912764 0.575305 +157 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +145 0.916052 0.568117 +146 0.917588 0.568117 +160 0.9143 0.575305 +159 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +146 0.917588 0.568117 +147 0.918708 0.568117 +161 0.91542 0.575305 +160 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +147 0.918708 0.568117 +148 0.919118 0.568117 +162 0.91583 0.575305 +161 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +148 0.919118 0.568117 +149 0.918708 0.568117 +163 0.91542 0.575305 +162 0.91583 0.575305 +SURF 0x10 +mat 1 +refs 4 +149 0.918708 0.568117 +150 0.917588 0.568117 +164 0.9143 0.575305 +163 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +150 0.917588 0.568117 +151 0.916052 0.568117 +165 0.912764 0.575305 +164 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +151 0.916052 0.568117 +152 0.878717 0.568117 +166 0.883212 0.575305 +165 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +152 0.878717 0.568117 +153 0.879199 0.565583 +167 0.884056 0.574883 +166 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +153 0.879199 0.565583 +154 0.878929 0.565583 +168 0.882858 0.574883 +167 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +154 0.878929 0.565583 +155 0.87883 0.565583 +169 0.88242 0.574883 +168 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +155 0.87883 0.565583 +156 0.878929 0.565583 +170 0.882858 0.574883 +169 0.88242 0.574883 +SURF 0x10 +mat 1 +refs 4 +156 0.878929 0.565583 +144 0.879199 0.565583 +158 0.884056 0.574883 +170 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +158 0.884056 0.574883 +157 0.883212 0.575305 +171 0.890444 0.585468 +172 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +157 0.883212 0.575305 +159 0.912764 0.575305 +173 0.90686 0.585468 +171 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +159 0.912764 0.575305 +160 0.9143 0.575305 +174 0.90839 0.585468 +173 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +160 0.9143 0.575305 +161 0.91542 0.575305 +175 0.909515 0.585468 +174 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +161 0.91542 0.575305 +162 0.91583 0.575305 +176 0.909925 0.585468 +175 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +162 0.91583 0.575305 +163 0.91542 0.575305 +177 0.909515 0.585468 +176 0.909925 0.585468 +SURF 0x10 +mat 1 +refs 4 +163 0.91542 0.575305 +164 0.9143 0.575305 +178 0.90839 0.585468 +177 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +164 0.9143 0.575305 +165 0.912764 0.575305 +179 0.90686 0.585468 +178 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +165 0.912764 0.575305 +166 0.883212 0.575305 +180 0.890444 0.585468 +179 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +166 0.883212 0.575305 +167 0.884056 0.574883 +181 0.888909 0.585468 +180 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +167 0.884056 0.574883 +168 0.882858 0.574883 +182 0.887789 0.585468 +181 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +168 0.882858 0.574883 +169 0.88242 0.574883 +183 0.887378 0.585468 +182 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +169 0.88242 0.574883 +170 0.882858 0.574883 +184 0.887789 0.585468 +183 0.887378 0.585468 +SURF 0x10 +mat 1 +refs 4 +170 0.882858 0.574883 +158 0.884056 0.574883 +172 0.888909 0.585468 +184 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +172 0.888909 0.585468 +171 0.890444 0.585468 +185 0.896841 0.586472 +0 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +171 0.890444 0.585468 +173 0.90686 0.585468 +186 0.89968 0.586465 +185 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +173 0.90686 0.585468 +174 0.90839 0.585468 +1 0.900578 0.588527 +186 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +174 0.90839 0.585468 +175 0.909515 0.585468 +2 0.90123 0.590037 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +175 0.909515 0.585468 +176 0.909925 0.585468 +187 0.901471 0.59059 +2 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +176 0.909925 0.585468 +177 0.909515 0.585468 +188 0.90123 0.590037 +187 0.901471 0.59059 +SURF 0x10 +mat 1 +refs 4 +177 0.909515 0.585468 +178 0.90839 0.585468 +189 0.900578 0.588527 +188 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +178 0.90839 0.585468 +179 0.90686 0.585468 +190 0.89968 0.586465 +189 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +179 0.90686 0.585468 +180 0.890444 0.585468 +191 0.896841 0.586472 +190 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +180 0.890444 0.585468 +181 0.888909 0.585468 +192 0.895914 0.588495 +191 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +181 0.888909 0.585468 +182 0.887789 0.585468 +193 0.895238 0.589977 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +182 0.887789 0.585468 +183 0.887378 0.585468 +194 0.894987 0.590519 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +183 0.887378 0.585468 +184 0.887789 0.585468 +3 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +184 0.887789 0.585468 +172 0.888909 0.585468 +0 0.895914 0.588495 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +185 0.896841 0.586472 +186 0.89968 0.586465 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +2 0.90123 0.590037 +187 0.901471 0.59059 +194 0.894987 0.590519 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +187 0.901471 0.59059 +188 0.90123 0.590037 +193 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +188 0.90123 0.590037 +189 0.900578 0.588527 +192 0.895914 0.588495 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +189 0.900578 0.588527 +190 0.89968 0.586465 +191 0.896841 0.586472 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 14 +5 0.81811 0.220192 +4 0.816575 0.220192 +32 0.815455 0.220192 +30 0.815044 0.220192 +28 0.815455 0.220192 +26 0.816575 0.220192 +23 0.81811 0.220192 +21 0.897821 0.229292 +19 0.899352 0.229292 +17 0.900477 0.229292 +15 0.900887 0.229292 +13 0.900477 0.229292 +11 0.899352 0.229292 +8 0.897821 0.229292 +SURF 0x10 +mat 1 +refs 4 +74 0.812184 0.346439 +77 0.823228 0.363268 +83 0.822787 0.363268 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +78 0.811462 0.346439 +88 0.822787 0.363268 +87 0.823228 0.363268 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +80 0.810931 0.346439 +91 0.822462 0.363268 +88 0.822787 0.363268 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +81 0.810737 0.346439 +93 0.822344 0.363268 +91 0.822462 0.363268 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +82 0.810931 0.346439 +95 0.822462 0.363268 +93 0.822344 0.363268 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +75 0.811462 0.346439 +83 0.822787 0.363268 +95 0.822462 0.363268 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +25 0.903866 0.22629 +24 0.81811 0.22629 +38 0.81811 0.238487 +195 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +38 0.81811 0.238487 +46 0.81811 0.256781 +196 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +46 0.81811 0.256781 +54 0.81811 0.275076 +197 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +54 0.81811 0.275076 +62 0.81811 0.299469 +198 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +62 0.81811 0.299469 +70 0.772318 0.328378 +199 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 5 +199 0.903866 0.332566 +70 0.772318 0.328378 +79 0.812184 0.346439 +87 0.823228 0.363268 +200 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +87 0.823228 0.363268 +90 0.833294 0.404239 +201 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +90 0.833294 0.404239 +101 0.843477 0.44521 +202 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +101 0.843477 0.44521 +109 0.852858 0.486182 +203 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +109 0.852858 0.486182 +117 0.863803 0.526837 +137 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +123 0.926804 0.526837 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +126 0.922367 0.54779 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +117 0.863803 0.526837 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +139 0.870847 0.54779 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +10 0.903866 0.22629 +25 0.903866 0.22629 +195 0.903866 0.238487 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +16 0.903866 0.221434 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +9 0.903866 0.222712 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +20 0.903866 0.222073 +22 0.903866 0.222712 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +18 0.903866 0.221605 +20 0.903866 0.222073 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +12 0.903866 0.222073 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +16 0.903866 0.221434 +18 0.903866 0.221605 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +14 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +196 0.903866 0.256781 +44 0.903866 0.256781 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +197 0.903866 0.275076 +52 0.903866 0.275076 +44 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +198 0.903866 0.299469 +60 0.903866 0.299469 +52 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +199 0.903866 0.332566 +68 0.903866 0.332566 +60 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +199 0.903866 0.332566 +200 0.903866 0.363268 +76 0.903866 0.363268 +68 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +201 0.903866 0.404239 +86 0.903866 0.404239 +76 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +202 0.903866 0.44521 +99 0.903866 0.44521 +86 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +203 0.903866 0.486182 +107 0.903866 0.486182 +99 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +137 0.903866 0.526837 +115 0.903866 0.526837 +107 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +137 0.903866 0.526837 +135 0.926804 0.526837 +123 0.926804 0.526837 +115 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +135 0.926804 0.526837 +133 0.928335 0.526837 +124 0.928335 0.526837 +123 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +131 0.929455 0.526837 +127 0.929455 0.526837 +124 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 3 +131 0.929455 0.526837 +129 0.92987 0.526837 +127 0.929455 0.526837 +kids 0 +OBJECT poly +name "Rudder" +texture "Rascal.rgb" +numvert 106 +1.77038 -0.0429984 0.00635 +1.77355 -0.0429984 0.00549926 +1.79954 -0.0302984 0.00549926 +1.79636 -0.0302984 0.00635 +1.77588 -0.0429984 0.003175 +1.80186 -0.0302984 0.003175 +1.77673 -0.0429984 1.0018e-16 +1.80271 -0.0302984 1.06547e-16 +1.77588 -0.0429984 -0.003175 +1.80186 -0.0302984 -0.003175 +1.77355 -0.0429984 -0.00549926 +1.79954 -0.0302984 -0.00549926 +1.77038 -0.0429984 -0.00635 +1.79636 -0.0302984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.7526 -0.0302984 -0.00635 +1.82221 -0.0112484 0.00549926 +1.81903 -0.0112484 0.00635 +1.82453 -0.0112484 0.003175 +1.82538 -0.0112484 1.39855e-16 +1.82453 -0.0112484 -0.003175 +1.82221 -0.0112484 -0.00549926 +1.81903 -0.0112484 -0.00635 +1.7526 -0.0112484 -0.00635 +1.83589 0.00780156 0.00549926 +1.83272 0.00780156 0.00635 +1.83822 0.00780156 0.003175 +1.83907 0.00780156 1.57084e-16 +1.83822 0.00780156 -0.003175 +1.83589 0.00780156 -0.00549926 +1.83272 0.00780156 -0.00635 +1.7526 0.00780156 -0.00635 +1.84664 0.0332016 0.00549926 +1.84347 0.0332016 0.00635 +1.84896 0.0332016 0.003175 +1.84982 0.0332016 2.15228e-16 +1.84896 0.0332016 -0.003175 +1.84664 0.0332016 -0.00549926 +1.84347 0.0332016 -0.00635 +1.7526 0.0332016 -0.00635 +1.85072 0.0678846 0.00549926 +1.84755 0.0678846 0.00635 +1.85305 0.0678846 0.003175 +1.8539 0.0678846 2.99494e-16 +1.85305 0.0678846 -0.003175 +1.85072 0.0678846 -0.00549926 +1.84755 0.0678846 -0.00635 +1.7526 0.0676649 -0.00635 +1.84935 0.0996346 0.00549926 +1.84617 0.0996346 0.00635 +1.85167 0.0996346 0.003175 +1.85252 0.0996346 3.82425e-16 +1.85167 0.0996346 -0.003175 +1.84935 0.0996346 -0.00549926 +1.84617 0.0996346 -0.00635 +1.7526 0.0996346 -0.00635 +1.84284 0.142297 0.00549926 +1.83967 0.142297 0.00635 +1.84517 0.142297 0.003175 +1.84602 0.142297 4.91852e-16 +1.84517 0.142297 -0.003175 +1.84284 0.142297 -0.00549926 +1.83967 0.142297 -0.00635 +1.7526 0.142297 -0.00635 +1.83267 0.18496 0.00549926 +1.82949 0.18496 0.00635 +1.83499 0.18496 0.003175 +1.83584 0.18496 6.00384e-16 +1.83499 0.18496 -0.003175 +1.83267 0.18496 -0.00549926 +1.82949 0.18496 -0.00635 +1.7526 0.18496 -0.00635 +1.8189 0.227623 0.00549926 +1.81572 0.227623 0.00635 +1.82122 0.227623 0.003175 +1.82207 0.227623 7.21909e-16 +1.82122 0.227623 -0.003175 +1.8189 0.227623 -0.00549926 +1.81572 0.227623 -0.00635 +1.7526 0.227623 -0.00635 +1.80328 0.269956 0.00549926 +1.80011 0.269956 0.00635 +1.8056 0.269956 0.003175 +1.80646 0.269956 8.42988e-16 +1.8056 0.269956 -0.003175 +1.80328 0.269956 -0.00549926 +1.80011 0.269956 -0.00635 +1.7526 0.269956 -0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.7526 -0.0473896 0.00549926 +1.7526 -0.0478767 0.003175 +1.7526 -0.048055 9.42714e-17 +1.7526 -0.0478767 -0.003175 +1.7526 -0.0473896 -0.00549926 +1.7526 -0.0467241 -0.00635 +1.7526 -0.0302984 0.00635 +1.7526 -0.0112484 0.00635 +1.7526 0.00780156 0.00635 +1.7526 0.0332016 0.00635 +1.7526 0.0676649 0.00635 +1.7526 0.0996346 0.00635 +1.7526 0.142297 0.00635 +1.7526 0.18496 0.00635 +1.7526 0.227623 0.00635 +1.7526 0.269956 0.00635 +numsurf 109 +SURF 0x10 +mat 1 +refs 4 +0 0.912451 0.22629 +1 0.913981 0.22629 +2 0.926529 0.238487 +3 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +1 0.913981 0.22629 +4 0.915106 0.22629 +5 0.927649 0.238487 +2 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +4 0.915106 0.22629 +6 0.915516 0.22629 +7 0.92806 0.238487 +5 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.915516 0.22629 +8 0.915106 0.22629 +9 0.927649 0.238487 +7 0.92806 0.238487 +SURF 0x10 +mat 1 +refs 4 +8 0.915106 0.22629 +10 0.913981 0.22629 +11 0.926529 0.238487 +9 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +10 0.913981 0.22629 +12 0.912451 0.22629 +13 0.924994 0.238487 +11 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +12 0.912451 0.22629 +14 0.903866 0.22629 +15 0.903866 0.238487 +13 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +3 0.924994 0.238487 +2 0.926529 0.238487 +16 0.937474 0.256781 +17 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +2 0.926529 0.238487 +5 0.927649 0.238487 +18 0.938595 0.256781 +16 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +5 0.927649 0.238487 +7 0.92806 0.238487 +19 0.939005 0.256781 +18 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +7 0.92806 0.238487 +9 0.927649 0.238487 +20 0.938595 0.256781 +19 0.939005 0.256781 +SURF 0x10 +mat 1 +refs 4 +9 0.927649 0.238487 +11 0.926529 0.238487 +21 0.937474 0.256781 +20 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +11 0.926529 0.238487 +13 0.924994 0.238487 +22 0.935939 0.256781 +21 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +13 0.924994 0.238487 +15 0.903866 0.238487 +23 0.903866 0.256781 +22 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +17 0.935939 0.256781 +16 0.937474 0.256781 +24 0.944079 0.275076 +25 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +16 0.937474 0.256781 +18 0.938595 0.256781 +26 0.945204 0.275076 +24 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +18 0.938595 0.256781 +19 0.939005 0.256781 +27 0.945615 0.275076 +26 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +19 0.939005 0.256781 +20 0.938595 0.256781 +28 0.945204 0.275076 +27 0.945615 0.275076 +SURF 0x10 +mat 1 +refs 4 +20 0.938595 0.256781 +21 0.937474 0.256781 +29 0.944079 0.275076 +28 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +21 0.937474 0.256781 +22 0.935939 0.256781 +30 0.942549 0.275076 +29 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +22 0.935939 0.256781 +23 0.903866 0.256781 +31 0.903866 0.275076 +30 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +25 0.942549 0.275076 +24 0.944079 0.275076 +32 0.949269 0.299469 +33 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +24 0.944079 0.275076 +26 0.945204 0.275076 +34 0.95039 0.299469 +32 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +26 0.945204 0.275076 +27 0.945615 0.275076 +35 0.950805 0.299469 +34 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +27 0.945615 0.275076 +28 0.945204 0.275076 +36 0.95039 0.299469 +35 0.950805 0.299469 +SURF 0x10 +mat 1 +refs 4 +28 0.945204 0.275076 +29 0.944079 0.275076 +37 0.949269 0.299469 +36 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +29 0.944079 0.275076 +30 0.942549 0.275076 +38 0.947739 0.299469 +37 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +30 0.942549 0.275076 +31 0.903866 0.275076 +39 0.903866 0.299469 +38 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +33 0.947739 0.299469 +32 0.949269 0.299469 +40 0.951239 0.332777 +41 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +32 0.949269 0.299469 +34 0.95039 0.299469 +42 0.952364 0.332777 +40 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +34 0.95039 0.299469 +35 0.950805 0.299469 +43 0.952775 0.332777 +42 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +35 0.950805 0.299469 +36 0.95039 0.299469 +44 0.952364 0.332777 +43 0.952775 0.332777 +SURF 0x10 +mat 1 +refs 4 +36 0.95039 0.299469 +37 0.949269 0.299469 +45 0.951239 0.332777 +44 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +37 0.949269 0.299469 +38 0.947739 0.299469 +46 0.949709 0.332777 +45 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +38 0.947739 0.299469 +39 0.903866 0.299469 +47 0.903866 0.332566 +46 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +41 0.949709 0.332777 +40 0.951239 0.332777 +48 0.950578 0.363268 +49 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +40 0.951239 0.332777 +42 0.952364 0.332777 +50 0.951698 0.363268 +48 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +42 0.952364 0.332777 +43 0.952775 0.332777 +51 0.952108 0.363268 +50 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +43 0.952775 0.332777 +44 0.952364 0.332777 +52 0.951698 0.363268 +51 0.952108 0.363268 +SURF 0x10 +mat 1 +refs 4 +44 0.952364 0.332777 +45 0.951239 0.332777 +53 0.950578 0.363268 +52 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +45 0.951239 0.332777 +46 0.949709 0.332777 +54 0.949042 0.363268 +53 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +46 0.949709 0.332777 +47 0.903866 0.332566 +55 0.903866 0.363268 +54 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +49 0.949042 0.363268 +48 0.950578 0.363268 +56 0.947435 0.404239 +57 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +48 0.950578 0.363268 +50 0.951698 0.363268 +58 0.94856 0.404239 +56 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +50 0.951698 0.363268 +51 0.952108 0.363268 +59 0.94897 0.404239 +58 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +51 0.952108 0.363268 +52 0.951698 0.363268 +60 0.94856 0.404239 +59 0.94897 0.404239 +SURF 0x10 +mat 1 +refs 4 +52 0.951698 0.363268 +53 0.950578 0.363268 +61 0.947435 0.404239 +60 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +53 0.950578 0.363268 +54 0.949042 0.363268 +62 0.945904 0.404239 +61 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +54 0.949042 0.363268 +55 0.903866 0.363268 +63 0.903866 0.404239 +62 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +57 0.945904 0.404239 +56 0.947435 0.404239 +64 0.942525 0.44521 +65 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +56 0.947435 0.404239 +58 0.94856 0.404239 +66 0.943645 0.44521 +64 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +58 0.94856 0.404239 +59 0.94897 0.404239 +67 0.944055 0.44521 +66 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +59 0.94897 0.404239 +60 0.94856 0.404239 +68 0.943645 0.44521 +67 0.944055 0.44521 +SURF 0x10 +mat 1 +refs 4 +60 0.94856 0.404239 +61 0.947435 0.404239 +69 0.942525 0.44521 +68 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +61 0.947435 0.404239 +62 0.945904 0.404239 +70 0.940989 0.44521 +69 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +62 0.945904 0.404239 +63 0.903866 0.404239 +71 0.903866 0.44521 +70 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +65 0.940989 0.44521 +64 0.942525 0.44521 +72 0.935876 0.486182 +73 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +64 0.942525 0.44521 +66 0.943645 0.44521 +74 0.936997 0.486182 +72 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +66 0.943645 0.44521 +67 0.944055 0.44521 +75 0.937407 0.486182 +74 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +67 0.944055 0.44521 +68 0.943645 0.44521 +76 0.936997 0.486182 +75 0.937407 0.486182 +SURF 0x10 +mat 1 +refs 4 +68 0.943645 0.44521 +69 0.942525 0.44521 +77 0.935876 0.486182 +76 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +69 0.942525 0.44521 +70 0.940989 0.44521 +78 0.934341 0.486182 +77 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +70 0.940989 0.44521 +71 0.903866 0.44521 +79 0.903866 0.486182 +78 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +73 0.934341 0.486182 +72 0.935876 0.486182 +80 0.928335 0.526837 +81 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +72 0.935876 0.486182 +74 0.936997 0.486182 +82 0.929455 0.526837 +80 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +74 0.936997 0.486182 +75 0.937407 0.486182 +83 0.92987 0.526837 +82 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +75 0.937407 0.486182 +76 0.936997 0.486182 +84 0.929455 0.526837 +83 0.92987 0.526837 +SURF 0x10 +mat 1 +refs 4 +76 0.936997 0.486182 +77 0.935876 0.486182 +85 0.928335 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +77 0.935876 0.486182 +78 0.934341 0.486182 +86 0.926804 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +78 0.934341 0.486182 +79 0.903866 0.486182 +87 0.903866 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 3 +88 0.903866 0.222712 +0 0.912451 0.22629 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 4 +90 0.903866 0.222073 +1 0.913981 0.22629 +0 0.912451 0.22629 +88 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +91 0.903866 0.221605 +4 0.915106 0.22629 +1 0.913981 0.22629 +90 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +92 0.903866 0.221434 +6 0.915516 0.22629 +4 0.915106 0.22629 +91 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +93 0.903866 0.221605 +8 0.915106 0.22629 +6 0.915516 0.22629 +92 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +94 0.903866 0.222073 +10 0.913981 0.22629 +8 0.915106 0.22629 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +95 0.903866 0.222712 +12 0.912451 0.22629 +10 0.913981 0.22629 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +12 0.912451 0.22629 +95 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +89 0.903866 0.22629 +0 0.912451 0.22629 +3 0.924994 0.238487 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +96 0.903866 0.238487 +3 0.924994 0.238487 +17 0.935939 0.256781 +97 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +17 0.935939 0.256781 +25 0.942549 0.275076 +98 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +25 0.942549 0.275076 +33 0.947739 0.299469 +99 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +33 0.947739 0.299469 +41 0.949709 0.332777 +100 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +41 0.949709 0.332777 +49 0.949042 0.363268 +101 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +49 0.949042 0.363268 +57 0.945904 0.404239 +102 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +57 0.945904 0.404239 +65 0.940989 0.44521 +103 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +65 0.940989 0.44521 +73 0.934341 0.486182 +104 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +73 0.934341 0.486182 +81 0.926804 0.526837 +105 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +96 0.903866 0.238487 +97 0.903866 0.256781 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 3 +82 0.929455 0.526837 +83 0.92987 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +80 0.928335 0.526837 +82 0.929455 0.526837 +84 0.929455 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +81 0.926804 0.526837 +80 0.928335 0.526837 +85 0.928335 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +105 0.903866 0.526837 +81 0.926804 0.526837 +86 0.926804 0.526837 +87 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +105 0.903866 0.526837 +87 0.903866 0.526837 +79 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +104 0.903866 0.486182 +79 0.903866 0.486182 +71 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +103 0.903866 0.44521 +71 0.903866 0.44521 +63 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +102 0.903866 0.404239 +63 0.903866 0.404239 +55 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +101 0.903866 0.363268 +55 0.903866 0.363268 +47 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +100 0.903866 0.332566 +47 0.903866 0.332566 +39 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +99 0.903866 0.299469 +39 0.903866 0.299469 +31 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +98 0.903866 0.275076 +31 0.903866 0.275076 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +14 0.903866 0.22629 +89 0.903866 0.22629 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +92 0.903866 0.221434 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +90 0.903866 0.222073 +88 0.903866 0.222712 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +95 0.903866 0.222712 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +94 0.903866 0.222073 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +91 0.903866 0.221605 +90 0.903866 0.222073 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +92 0.903866 0.221434 +91 0.903866 0.221605 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +93 0.903866 0.221605 +92 0.903866 0.221434 +kids 0 +OBJECT poly +name "Prop_Disk" +numvert 33 +0.0508 -0.254 1.2442e-17 +0.0508 -0.249119 0.0495529 +0.0508 1.38778e-17 1.67788e-17 +0.0508 -0.234665 0.0972016 +0.0508 -0.211193 0.141115 +0.0508 -0.179605 0.179605 +0.0508 -0.141115 0.211193 +0.0508 -0.0972016 0.234665 +0.0508 -0.0495529 0.249119 +0.0508 -1.55525e-17 0.254 +0.0508 0.0495529 0.249119 +0.0508 0.0972016 0.234665 +0.0508 0.141115 0.211193 +0.0508 0.179605 0.179605 +0.0508 0.211193 0.141115 +0.0508 0.234665 0.0972016 +0.0508 0.249119 0.0495529 +0.0508 0.254 4.3547e-17 +0.0508 0.249119 -0.0495529 +0.0508 0.234665 -0.0972016 +0.0508 0.211193 -0.141115 +0.0508 0.179605 -0.179605 +0.0508 0.141115 -0.211193 +0.0508 0.0972016 -0.234665 +0.0508 0.0495529 -0.249119 +0.0508 4.66575e-17 -0.254 +0.0508 -0.0495529 -0.249119 +0.0508 -0.0972016 -0.234665 +0.0508 -0.141115 -0.211193 +0.0508 -0.179605 -0.179605 +0.0508 -0.211193 -0.141115 +0.0508 -0.234665 -0.0972016 +0.0508 -0.249119 -0.0495529 +numsurf 32 +SURF 0x30 +mat 3 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +32 0 0 +0 0 0 +2 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change b/resources/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change new file mode 100755 index 0000000000000000000000000000000000000000..99db0d45d013689830283ae09ee064b7965d30eb --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/Rascal110-000-013.ac.before-color-change @@ -0,0 +1,22017 @@ +AC3Db +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.5 0.5 0.5 shi 10 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat13" rgb 0.533 0.533 0.533 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +MATERIAL "ac3dmat14" rgb 0.8 0.8 0.8 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0.937 +MATERIAL "ac3dmat2" rgb 0.7 0.7 0.7 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.502 0.502 0.502 shi 128 trans 0 +OBJECT world +kids 1 +OBJECT poly +name "wavefront obj" +kids 21 +OBJECT poly +name "Fuselage" +texture "Rascal.rgb" +numvert 302 +0.8382 -0.106221 -0.06985 +0.8382 0.102273 -0.06985 +1.7399 0.0371731 -0.00635 +1.7526 -0.0467241 -0.00635 +1.74643 -0.0493484 3.74373e-16 +1.7399 0.0427099 -0.0040566 +1.7399 0.0480533 3.70211e-16 +1.7399 0.0427099 0.0040566 +1.7399 0.0371731 0.00635 +1.7526 -0.0467241 0.00635 +0.8382 0.102273 0.06985 +0.8382 -0.106221 0.06985 +0.8382 -0.127 -0.0490712 +0.8382 -0.127 0.0490712 +0.8382 0.1143 -0.0578231 +0.8382 0.1143 0.0578231 +0.5334 0.102273 0.06985 +0.5334 -0.118921 0.06985 +0.5334 0.1143 -0.0578231 +0.5334 0.1143 0.0578231 +0.5334 -0.118921 -0.06985 +0.5334 0.102273 -0.06985 +0.5334 -0.1397 0.0490712 +0.5334 -0.1397 -0.0490712 +0.4318 0.121323 0.06985 +0.4318 -9.60197e-18 0.06985 +0.4318 -0.118921 0.06985 +0.4318 0.13335 -0.0578231 +0.4318 0.13335 -0.0385487 +0.4318 0.13335 -0.0192744 +0.4318 0.13335 1.57364e-16 +0.4318 0.13335 0.0192744 +0.4318 0.13335 0.0385487 +0.4318 0.13335 0.0578231 +0.4318 -0.118921 -0.06985 +0.4318 2.66307e-18 -0.06985 +0.4318 0.121323 -0.06985 +0.4318 -0.1397 0.0490712 +0.4318 -0.1397 -0.0490712 +0.3302 -9.60197e-18 0.06985 +0.3302 -0.118921 0.06985 +0.3302 -0.1397 0.0490712 +0.3302 -0.1397 -0.0490712 +0.230215 -0.13012 0.0490712 +0.1905 -0.122237 0.0458962 +0.1905 -0.122237 -0.0458962 +0.230215 -0.13012 -0.0490712 +0.3302 -0.118921 -0.06985 +0.230215 -0.109341 -0.06985 +0.2286 2.66307e-18 -0.06985 +0.3302 2.66307e-18 -0.06985 +0.2286 -9.60197e-18 0.06985 +0.230215 -0.109341 0.06985 +0.0844119 -1.03372e-17 0.0578343 +0.0826471 -0.0478251 0.0576873 +0.1143 -0.0728837 0.060325 +0.1143 -1.01847e-17 0.060325 +0.1143 0.0114591 0.0591659 +0.0844127 0.0112162 0.0567231 +0.084415 0.0220013 0.0534322 +0.1143 0.0224779 0.055733 +0.1143 0.0326328 0.0501584 +0.0844184 0.0319411 0.0480879 +0.2286 0.0123882 -0.0685079 +0.1905 2.8562e-18 -0.066675 +0.1905 0.0120785 -0.0653939 +0.3302 0.0123882 -0.0685079 +0.3302 0.0243004 0.064533 +0.3302 0.0352787 0.0580782 +0.2286 0.0352787 0.0580782 +0.2286 0.0243004 0.064533 +0.3302 0.0449013 0.0493914 +0.2286 0.0449013 0.0493914 +0.3302 0.0527983 0.0388066 +0.2286 0.0527983 0.0388066 +0.3302 0.0123882 0.0685079 +0.2286 0.0123882 0.0685079 +0.3302 0.0586664 0.0267304 +0.2286 0.0586664 0.0267304 +0.3302 0.0622799 0.0136271 +0.2286 0.0622799 0.0136271 +0.3302 0.0635 8.60572e-17 +0.2286 0.0635 5.90995e-17 +0.3302 0.0622799 -0.0136271 +0.2286 0.0622799 -0.0136271 +0.3302 0.0586664 -0.0267304 +0.2286 0.0586664 -0.0267304 +0.3302 0.0527983 -0.0388066 +0.2286 0.0527983 -0.0388066 +0.3302 0.0449013 -0.0493914 +0.2286 0.0449013 -0.0493914 +0.3302 0.0352787 -0.0580782 +0.2286 0.0352787 -0.0580782 +0.3302 0.0243004 -0.064533 +0.2286 0.0243004 -0.064533 +0.1905 0.0236929 -0.0615997 +0.1905 0.0343967 -0.0554382 +0.1905 0.0437787 -0.0471463 +0.1905 0.0514784 -0.0370426 +0.1905 0.0571997 -0.0255154 +0.1905 0.0607229 -0.0130076 +0.1905 0.0619125 4.89904e-17 +0.1905 0.0607229 0.0130076 +0.1905 0.0571997 0.0255154 +0.1905 0.0514784 0.0370426 +0.1905 0.0437787 0.0471463 +0.1905 0.0343967 0.0554382 +0.411979 0.0123882 0.0685079 +0.392919 0.0243004 0.064533 +0.375354 0.0352787 0.0580782 +0.359958 0.0449013 0.0493914 +0.347323 0.0527983 0.0388066 +0.337934 0.0586664 0.0267304 +0.332152 0.0622799 0.0136271 +0.332152 0.0622799 -0.0136271 +0.337934 0.0586664 -0.0267304 +0.347323 0.0527983 -0.0388066 +0.359958 0.0449013 -0.0493914 +0.375354 0.0352787 -0.0580782 +0.392919 0.0243004 -0.064533 +0.411979 0.0123882 -0.0685079 +0.1905 -0.101459 -0.066675 +0.8382 0.10781 -0.0675566 +0.8382 0.112007 -0.0633599 +0.8382 0.112007 0.0633599 +0.8382 0.10781 0.0675566 +0.5334 0.112007 0.0633599 +0.5334 0.10781 0.0675566 +0.5334 0.10781 -0.0675566 +0.5334 0.112007 -0.0633599 +0.4318 0.131057 0.0633599 +0.4318 0.12686 0.0675566 +0.4318 0.12686 -0.0675566 +0.4318 0.131057 -0.0633599 +0.8382 -0.123016 -0.0586902 +0.8382 -0.11584 -0.0658657 +0.8382 -0.11584 0.0658657 +0.8382 -0.123016 0.0586902 +0.5334 -0.12854 0.0658657 +0.5334 -0.135716 0.0586902 +0.5334 -0.135716 -0.0586902 +0.5334 -0.12854 -0.0658657 +0.4318 -0.12854 0.0658657 +0.4318 -0.135716 0.0586902 +0.4318 -0.135716 -0.0586902 +0.4318 -0.12854 -0.0658657 +0.3302 -0.12854 0.0658657 +0.3302 -0.135716 0.0586902 +0.3302 -0.135716 -0.0586902 +0.3302 -0.12854 -0.0658657 +0.230215 -0.126135 0.0586902 +0.230215 -0.11896 0.0658657 +0.1905 -0.111078 0.0626907 +0.1905 -0.118253 0.0555152 +0.0826471 -0.0646196 -0.0465274 +0.0826471 -0.0574441 -0.053703 +0.1143 -0.0825027 -0.0563407 +0.1143 -0.0896782 -0.0491652 +0.230215 -0.126135 -0.0586902 +0.230215 -0.11896 -0.0658657 +0.0826471 -0.0686039 -0.0369085 +0.1143 -0.0936625 -0.0395462 +0.0826471 -0.0574441 0.053703 +0.1143 -0.0825027 0.0563407 +0.1905 -0.111078 -0.0626907 +0.1524 -0.111125 0.0427212 +0.1143 -0.0936625 0.0395462 +0.1524 -0.111125 -0.0427212 +0.1524 -0.0903462 0.0635 +0.1905 -0.101459 0.066675 +0.1905 -9.79509e-18 0.066675 +0.1524 -9.98821e-18 0.0635 +0.1905 0.0120785 0.0653939 +0.1524 0.0117688 0.0622799 +0.1524 0.0230854 0.0586664 +0.1905 0.0236929 0.0615997 +0.1524 0.0335148 0.0527983 +0.1524 3.04932e-18 -0.0635 +0.1143 3.24583e-18 -0.060325 +0.1143 0.0114591 -0.0591659 +0.1524 0.0117688 -0.0622799 +0.1143 0.0224779 -0.055733 +0.1524 0.0230854 -0.0586664 +0.1143 0.0326328 -0.0501584 +0.1524 0.0335148 -0.0527983 +0.1143 0.0415337 -0.0426562 +0.1524 0.0426562 -0.0449013 +0.1143 0.0488384 -0.0335148 +0.1524 0.0501584 -0.0352787 +0.1143 0.0542664 -0.0230854 +0.1524 0.055733 -0.0243004 +0.1143 0.0576089 -0.0117688 +0.1524 0.0591659 -0.0123882 +0.1143 0.0587375 2.87721e-17 +0.1524 0.060325 3.88813e-17 +0.1143 0.0576089 0.0117688 +0.1524 0.0591659 0.0123882 +0.1143 0.0542664 0.0230854 +0.1524 0.055733 0.0243004 +0.1143 0.0488384 0.0335148 +0.1524 0.0501584 0.0352787 +0.1143 0.0415337 0.0426562 +0.1524 0.0426562 0.0449013 +0.1524 -0.0903462 -0.0635 +0.1143 -0.0728837 -0.060325 +0.1524 -0.0999652 0.0595157 +0.1143 -0.0896782 0.0491652 +0.1524 -0.107141 0.0523402 +0.1524 -0.0999652 -0.0595157 +0.1905 -0.118253 -0.0555152 +0.1524 -0.107141 -0.0523402 +0.0826471 -0.0686039 0.0369085 +0.0844119 3.3983e-18 -0.0578343 +0.0844127 0.0112162 -0.0567231 +0.084415 0.0220013 -0.0534322 +0.0844184 0.0319411 -0.0480879 +0.0844225 0.0406534 -0.0408957 +0.0844266 0.0478035 -0.0321317 +0.0844301 0.0531165 -0.0221328 +0.0844324 0.0563883 -0.0112832 +0.0844332 0.057493 2.08475e-17 +0.0844324 0.0563883 0.0112832 +0.0844301 0.0531165 0.0221328 +0.0844266 0.0478035 0.0321317 +0.0844225 0.0406534 0.0408957 +0.0826471 -0.0478251 -0.0576873 +0.0826471 -0.0646196 0.0465274 +0.0762 -0.0552597 0.0347321 +0.0762 -0.0525299 0.0413224 +0.0762 -0.0476724 0.0461799 +0.0762 -0.0410821 0.0489097 +0.0762 -0.000404822 0.0489097 +0.0762 0.00953402 0.0479308 +0.0762 0.0187017 0.0451498 +0.0762 0.0271506 0.0406337 +0.0762 0.0345562 0.0345562 +0.0762 0.0406337 0.0271506 +0.0762 0.0451498 0.0187017 +0.0762 0.0479308 0.00953402 +0.0762 0.0488698 1.39736e-17 +0.0762 0.0479308 -0.00953402 +0.0762 0.0451498 -0.0187017 +0.0762 0.0406337 -0.0271506 +0.0762 0.0345562 -0.0345562 +0.0762 0.0271506 -0.0406337 +0.0762 0.0187017 -0.0451498 +0.0762 0.00953402 -0.0479308 +0.0762 -0.000404822 -0.0489097 +0.0762 -0.0410821 -0.0489097 +0.0762 -0.0476724 -0.0461799 +0.0762 -0.0525299 -0.0413224 +0.0762 -0.0552597 -0.0347321 +0.0806418 -7.51648e-05 0.0559901 +0.0777247 -0.00021897 0.0528198 +0.077334 -0.0427163 0.0527067 +0.0797503 -0.0452436 0.0559964 +0.080644 0.0108859 0.0549089 +0.0777231 0.0102877 0.0517819 +0.0806392 0.030996 0.0465426 +0.0777322 0.0293015 0.0439059 +0.0777267 0.0201813 0.0487807 +0.0806421 0.0213523 0.05172 +0.0798932 -0.0613656 -0.0455804 +0.0771911 -0.0562984 -0.0433988 +0.0772438 -0.0505308 -0.049308 +0.0798405 -0.0544665 -0.052338 +0.0799146 -0.0652012 -0.0364342 +0.0771697 -0.0595199 -0.0355076 +0.0772438 -0.0505308 0.049308 +0.0798405 -0.0544665 0.052338 +0.0799146 -0.0652012 0.0364342 +0.0771697 -0.0595199 0.0355076 +0.0806418 -7.51648e-05 -0.0559901 +0.0777247 -0.00021897 -0.0528198 +0.0777231 0.0102877 -0.0517819 +0.080644 0.0108859 -0.0549089 +0.0777267 0.0201813 -0.0487807 +0.0806421 0.0213523 -0.05172 +0.0777322 0.0293015 -0.0439059 +0.0806392 0.030996 -0.0465426 +0.0777386 0.037298 -0.0373433 +0.0806357 0.0394462 -0.0395769 +0.0777452 0.0438628 -0.029344 +0.0806321 0.0463789 -0.031092 +0.0777508 0.0487426 -0.0202146 +0.080629 0.0515288 -0.0214145 +0.0777545 0.0517483 -0.010306 +0.0806269 0.0546993 -0.0109163 +0.0777559 0.0527634 1.65548e-17 +0.0806262 0.0557697 1.89512e-17 +0.0777545 0.0517483 0.010306 +0.0806269 0.0546993 0.0109163 +0.0777508 0.0487426 0.0202146 +0.080629 0.0515288 0.0214145 +0.0777452 0.0438628 0.029344 +0.0806321 0.0463789 0.031092 +0.0777386 0.037298 0.0373433 +0.0806357 0.0394462 0.0395769 +0.0797503 -0.0452436 -0.0559964 +0.077334 -0.0427163 -0.0527067 +0.0771911 -0.0562984 0.0433988 +0.0798932 -0.0613656 0.0455804 +numsurf 291 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +1 0.462387 0.365802 +2 0.897735 0.289211 +3 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 8 +4 0.900887 0.229292 +3 0.903866 0.222712 +2 0.897735 0.289211 +5 0.897735 0.29428 +6 0.897735 0.299173 +7 0.897735 0.29428 +8 0.897735 0.289211 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +9 0.903866 0.222712 +8 0.897735 0.289211 +10 0.462387 0.365802 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +4 0.900887 0.229292 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 3 +14 0.462248 0.371534 +15 0.462248 0.371534 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +10 0.462387 0.365802 +16 0.315228 0.365802 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +15 0.462248 0.371534 +14 0.462248 0.371534 +18 0.315297 0.375551 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +0 0.462387 0.165574 +20 0.315228 0.153932 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +12 0.461845 0.14959 +13 0.461845 0.14959 +22 0.315228 0.142799 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 5 +17 0.315228 0.153932 +16 0.315228 0.365802 +24 0.266174 0.384097 +25 0.266174 0.267584 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 9 +19 0.315297 0.375551 +18 0.315297 0.375551 +27 0.266105 0.391907 +28 0.266105 0.391907 +29 0.266105 0.391907 +30 0.266105 0.391907 +31 0.266105 0.391907 +32 0.266105 0.391907 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 5 +21 0.315228 0.365802 +20 0.315228 0.153932 +34 0.266174 0.153932 +35 0.266174 0.267584 +36 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +22 0.315228 0.142799 +37 0.266174 0.142799 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +25 0.266174 0.267584 +39 0.217121 0.267584 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +37 0.266174 0.142799 +41 0.217121 0.142799 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +44 0.149673 0.158354 +45 0.149673 0.158354 +46 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +48 0.168848 0.168617 +49 0.168068 0.267584 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +43 0.168848 0.152081 +46 0.168848 0.152081 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +35 0.266174 0.267584 +34 0.266174 0.153932 +47 0.217121 0.153932 +50 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +52 0.168848 0.168617 +40 0.217121 0.153932 +39 0.217121 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +54 0.0980683 0.227431 +55 0.112883 0.19763 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +56 0.112883 0.267584 +57 0.112883 0.278589 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +60 0.112883 0.28917 +61 0.112883 0.298923 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +63 0.168068 0.279481 +49 0.168068 0.267584 +64 0.149673 0.267584 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +66 0.217121 0.279481 +50 0.217121 0.267584 +49 0.168068 0.267584 +63 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +67 0.217121 0.290921 +68 0.217121 0.301464 +69 0.168068 0.301464 +70 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +68 0.217121 0.301464 +71 0.217121 0.310705 +72 0.168068 0.310705 +69 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +71 0.217121 0.310705 +73 0.217121 0.318289 +74 0.168068 0.318289 +72 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +75 0.217121 0.279481 +67 0.217121 0.290921 +70 0.168068 0.290921 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +51 0.168068 0.267584 +39 0.217121 0.267584 +75 0.217121 0.279481 +76 0.168068 0.279481 +SURF 0x10 +mat 1 +refs 4 +73 0.217121 0.318289 +77 0.217121 0.323924 +78 0.168068 0.323924 +74 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +77 0.217121 0.323924 +79 0.217121 0.327394 +80 0.168068 0.327394 +78 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +79 0.217121 0.327394 +81 0.217744 0.327458 +82 0.168068 0.327181 +80 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +81 0.217744 0.327458 +83 0.217121 0.327394 +84 0.168068 0.327394 +82 0.168068 0.327181 +SURF 0x10 +mat 1 +refs 4 +83 0.217121 0.327394 +85 0.217121 0.323924 +86 0.168068 0.323924 +84 0.168068 0.327394 +SURF 0x10 +mat 1 +refs 4 +85 0.217121 0.323924 +87 0.217121 0.318289 +88 0.168068 0.318289 +86 0.168068 0.323924 +SURF 0x10 +mat 1 +refs 4 +87 0.217121 0.318289 +89 0.217121 0.310705 +90 0.168068 0.310705 +88 0.168068 0.318289 +SURF 0x10 +mat 1 +refs 4 +89 0.217121 0.310705 +91 0.217121 0.301464 +92 0.168068 0.301464 +90 0.168068 0.310705 +SURF 0x10 +mat 1 +refs 4 +91 0.217121 0.301464 +93 0.217121 0.290921 +94 0.168068 0.290921 +92 0.168068 0.301464 +SURF 0x10 +mat 1 +refs 4 +93 0.217121 0.290921 +66 0.217121 0.279481 +63 0.168068 0.279481 +94 0.168068 0.290921 +SURF 0x10 +mat 1 +refs 4 +94 0.168068 0.290921 +63 0.168068 0.279481 +65 0.149673 0.279183 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +92 0.168068 0.301464 +94 0.168068 0.290921 +95 0.149673 0.290337 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +90 0.168068 0.310705 +92 0.168068 0.301464 +96 0.149673 0.300617 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +88 0.168068 0.318289 +90 0.168068 0.310705 +97 0.149673 0.309627 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +86 0.168068 0.323924 +88 0.168068 0.318289 +98 0.149673 0.317021 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +84 0.168068 0.327394 +86 0.168068 0.323924 +99 0.149673 0.322516 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +82 0.168068 0.327181 +84 0.168068 0.327394 +100 0.149673 0.324171 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +80 0.168068 0.327394 +82 0.168068 0.327181 +101 0.149673 0.325037 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +78 0.168068 0.323924 +80 0.168068 0.327394 +102 0.149673 0.324171 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +74 0.168068 0.318289 +78 0.168068 0.323924 +103 0.149673 0.322516 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +72 0.168068 0.310705 +74 0.168068 0.318289 +104 0.149673 0.317021 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +69 0.168068 0.301464 +72 0.168068 0.310705 +105 0.149673 0.309627 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +58 0.0984158 0.275626 +57 0.112883 0.278589 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +39 0.217121 0.267584 +25 0.266174 0.267584 +107 0.256605 0.279481 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +107 0.256605 0.279481 +108 0.247402 0.290921 +67 0.217121 0.290921 +75 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +108 0.247402 0.290921 +109 0.238922 0.301464 +68 0.217121 0.301464 +67 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +109 0.238922 0.301464 +110 0.231488 0.310705 +71 0.217121 0.310705 +68 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +110 0.231488 0.310705 +111 0.225388 0.318289 +73 0.217121 0.318289 +71 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +111 0.225388 0.318289 +112 0.220855 0.323924 +77 0.217121 0.323924 +73 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +112 0.220855 0.323924 +113 0.218063 0.327394 +79 0.217121 0.327394 +77 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 3 +113 0.218063 0.327394 +81 0.217744 0.327458 +79 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 3 +81 0.217744 0.327458 +114 0.218063 0.327394 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +114 0.218063 0.327394 +115 0.220855 0.323924 +85 0.217121 0.323924 +83 0.217121 0.327394 +SURF 0x10 +mat 1 +refs 4 +115 0.220855 0.323924 +116 0.225388 0.318289 +87 0.217121 0.318289 +85 0.217121 0.323924 +SURF 0x10 +mat 1 +refs 4 +116 0.225388 0.318289 +117 0.231488 0.310705 +89 0.217121 0.310705 +87 0.217121 0.318289 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +118 0.238922 0.301464 +91 0.217121 0.301464 +89 0.217121 0.310705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +119 0.247402 0.290921 +93 0.217121 0.290921 +91 0.217121 0.301464 +SURF 0x10 +mat 1 +refs 4 +119 0.247402 0.290921 +120 0.256605 0.279481 +66 0.217121 0.279481 +93 0.217121 0.290921 +SURF 0x10 +mat 1 +refs 4 +120 0.256605 0.279481 +35 0.266174 0.267584 +50 0.217121 0.267584 +66 0.217121 0.279481 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +121 0.149673 0.174889 +64 0.149673 0.267584 +49 0.168068 0.267584 +SURF 0x10 +mat 1 +refs 4 +30 0.266105 0.391907 +29 0.266105 0.391907 +114 0.218063 0.327394 +81 0.217744 0.327458 +SURF 0x10 +mat 1 +refs 4 +122 0.462248 0.365301 +123 0.462248 0.369332 +6 0.897735 0.299173 +5 0.897735 0.29428 +SURF 0x10 +mat 1 +refs 4 +7 0.897735 0.29428 +6 0.897735 0.299173 +124 0.462248 0.369332 +125 0.462248 0.365301 +SURF 0x10 +mat 1 +refs 4 +125 0.462248 0.365301 +124 0.462248 0.369332 +126 0.315297 0.373349 +127 0.315228 0.371119 +SURF 0x10 +mat 1 +refs 4 +123 0.462248 0.369332 +122 0.462248 0.365301 +128 0.315228 0.371119 +129 0.315297 0.373349 +SURF 0x10 +mat 1 +refs 4 +127 0.315228 0.371119 +126 0.315297 0.373349 +130 0.266105 0.389705 +131 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +129 0.315297 0.373349 +128 0.315228 0.371119 +132 0.266174 0.389414 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +1 0.462387 0.365802 +122 0.462248 0.365301 +5 0.897735 0.29428 +2 0.897735 0.289211 +SURF 0x10 +mat 1 +refs 4 +8 0.897735 0.289211 +7 0.897735 0.29428 +125 0.462248 0.365301 +10 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 3 +15 0.462248 0.371534 +124 0.462248 0.369332 +6 0.897735 0.299173 +SURF 0x10 +mat 1 +refs 3 +6 0.897735 0.299173 +123 0.462248 0.369332 +14 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +10 0.462387 0.365802 +125 0.462248 0.365301 +127 0.315228 0.371119 +16 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 4 +14 0.462248 0.371534 +123 0.462248 0.369332 +129 0.315297 0.373349 +18 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +19 0.315297 0.375551 +126 0.315297 0.373349 +124 0.462248 0.369332 +15 0.462248 0.371534 +SURF 0x10 +mat 1 +refs 4 +21 0.315228 0.365802 +128 0.315228 0.371119 +122 0.462248 0.365301 +1 0.462387 0.365802 +SURF 0x10 +mat 1 +refs 4 +16 0.315228 0.365802 +127 0.315228 0.371119 +131 0.266174 0.389414 +24 0.266174 0.384097 +SURF 0x10 +mat 1 +refs 4 +18 0.315297 0.375551 +129 0.315297 0.373349 +133 0.266105 0.389705 +27 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +33 0.266105 0.391907 +130 0.266105 0.389705 +126 0.315297 0.373349 +19 0.315297 0.375551 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +132 0.266174 0.389414 +128 0.315228 0.371119 +21 0.315228 0.365802 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +134 0.461845 0.154139 +135 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 3 +136 0.462387 0.156337 +137 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 4 +138 0.315228 0.148778 +139 0.315228 0.144934 +137 0.461845 0.154139 +136 0.462387 0.156337 +SURF 0x10 +mat 1 +refs 4 +135 0.462387 0.156337 +134 0.461845 0.154139 +140 0.315228 0.144934 +141 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +142 0.266174 0.148778 +143 0.266174 0.144934 +139 0.315228 0.144934 +138 0.315228 0.148778 +SURF 0x10 +mat 1 +refs 4 +141 0.315228 0.148778 +140 0.315228 0.144934 +144 0.266174 0.144934 +145 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +146 0.217121 0.148778 +147 0.217121 0.144934 +143 0.266174 0.144934 +142 0.266174 0.148778 +SURF 0x10 +mat 1 +refs 4 +148 0.217121 0.144934 +149 0.217121 0.148778 +145 0.266174 0.148778 +144 0.266174 0.144934 +SURF 0x10 +mat 1 +refs 4 +150 0.168848 0.155252 +151 0.168848 0.160962 +152 0.149673 0.167235 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +155 0.0980683 0.219579 +156 0.112883 0.189975 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +149 0.217121 0.148778 +148 0.217121 0.144934 +158 0.168848 0.155252 +159 0.168848 0.160962 +SURF 0x10 +mat 1 +refs 4 +147 0.217121 0.144934 +146 0.217121 0.148778 +151 0.168848 0.160962 +150 0.168848 0.155252 +SURF 0x10 +mat 1 +refs 4 +3 0.903866 0.222712 +4 0.900887 0.229292 +135 0.462387 0.156337 +0 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +11 0.462387 0.165574 +136 0.462387 0.156337 +4 0.900887 0.229292 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 3 +12 0.461845 0.14959 +134 0.461845 0.154139 +4 0.900887 0.229292 +SURF 0x10 +mat 1 +refs 3 +4 0.900887 0.229292 +137 0.461845 0.154139 +13 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +17 0.315228 0.153932 +138 0.315228 0.148778 +136 0.462387 0.156337 +11 0.462387 0.165574 +SURF 0x10 +mat 1 +refs 4 +0 0.462387 0.165574 +135 0.462387 0.156337 +141 0.315228 0.148778 +20 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +13 0.461845 0.14959 +137 0.461845 0.154139 +139 0.315228 0.144934 +22 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +23 0.315228 0.142799 +140 0.315228 0.144934 +134 0.461845 0.154139 +12 0.461845 0.14959 +SURF 0x10 +mat 1 +refs 4 +26 0.266174 0.153932 +142 0.266174 0.148778 +138 0.315228 0.148778 +17 0.315228 0.153932 +SURF 0x10 +mat 1 +refs 4 +20 0.315228 0.153932 +141 0.315228 0.148778 +145 0.266174 0.148778 +34 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +22 0.315228 0.142799 +139 0.315228 0.144934 +143 0.266174 0.144934 +37 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +38 0.266174 0.142799 +144 0.266174 0.144934 +140 0.315228 0.144934 +23 0.315228 0.142799 +SURF 0x10 +mat 1 +refs 4 +40 0.217121 0.153932 +146 0.217121 0.148778 +142 0.266174 0.148778 +26 0.266174 0.153932 +SURF 0x10 +mat 1 +refs 4 +37 0.266174 0.142799 +143 0.266174 0.144934 +147 0.217121 0.144934 +41 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +42 0.217121 0.142799 +148 0.217121 0.144934 +144 0.266174 0.144934 +38 0.266174 0.142799 +SURF 0x10 +mat 1 +refs 4 +43 0.168848 0.152081 +150 0.168848 0.155252 +153 0.149673 0.161525 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +154 0.0980683 0.213721 +157 0.112883 0.184264 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +47 0.217121 0.153932 +149 0.217121 0.148778 +159 0.168848 0.160962 +48 0.168848 0.168617 +SURF 0x10 +mat 1 +refs 4 +41 0.217121 0.142799 +147 0.217121 0.144934 +150 0.168848 0.155252 +43 0.168848 0.152081 +SURF 0x10 +mat 1 +refs 4 +46 0.168848 0.152081 +158 0.168848 0.155252 +148 0.217121 0.144934 +42 0.217121 0.142799 +SURF 0x10 +mat 1 +refs 4 +34 0.266174 0.153932 +145 0.266174 0.148778 +149 0.217121 0.148778 +47 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +52 0.168848 0.168617 +151 0.168848 0.160962 +146 0.217121 0.148778 +40 0.217121 0.153932 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +162 0.0980683 0.219579 +163 0.112883 0.189975 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +48 0.168848 0.168617 +159 0.168848 0.160962 +164 0.149673 0.167235 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +165 0.131278 0.167197 +166 0.112883 0.181094 +161 0.112883 0.181094 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +168 0.131278 0.183733 +169 0.149673 0.174889 +170 0.149673 0.267584 +171 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +171 0.131278 0.267584 +170 0.149673 0.267584 +172 0.149673 0.279183 +173 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +174 0.131278 0.289754 +175 0.149673 0.290337 +106 0.149673 0.300617 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +177 0.131278 0.267584 +178 0.112883 0.267584 +179 0.112883 0.278589 +180 0.131278 0.278886 +SURF 0x10 +mat 1 +refs 4 +180 0.131278 0.278886 +179 0.112883 0.278589 +181 0.112883 0.28917 +182 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +182 0.131278 0.289754 +181 0.112883 0.28917 +183 0.112883 0.298923 +184 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +184 0.131278 0.29977 +183 0.112883 0.298923 +185 0.112883 0.307471 +186 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +186 0.131278 0.308549 +185 0.112883 0.307471 +187 0.112883 0.314486 +188 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +188 0.131278 0.315753 +187 0.112883 0.314486 +189 0.112883 0.319699 +190 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +190 0.131278 0.321107 +189 0.112883 0.319699 +191 0.112675 0.320002 +192 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +192 0.131278 0.323092 +191 0.112675 0.320002 +193 0.112675 0.320946 +194 0.131278 0.322404 +SURF 0x10 +mat 1 +refs 4 +194 0.131278 0.322404 +193 0.112675 0.320946 +195 0.112675 0.320002 +196 0.131278 0.323092 +SURF 0x10 +mat 1 +refs 4 +196 0.131278 0.323092 +195 0.112675 0.320002 +197 0.112883 0.319699 +198 0.131278 0.321107 +SURF 0x10 +mat 1 +refs 4 +198 0.131278 0.321107 +197 0.112883 0.319699 +199 0.112883 0.314486 +200 0.131278 0.315753 +SURF 0x10 +mat 1 +refs 4 +200 0.131278 0.315753 +199 0.112883 0.314486 +201 0.112883 0.307471 +202 0.131278 0.308549 +SURF 0x10 +mat 1 +refs 4 +202 0.131278 0.308549 +201 0.112883 0.307471 +61 0.112883 0.298923 +176 0.131278 0.29977 +SURF 0x10 +mat 1 +refs 4 +173 0.131278 0.278886 +172 0.149673 0.279183 +175 0.149673 0.290337 +174 0.131278 0.289754 +SURF 0x10 +mat 1 +refs 4 +203 0.131278 0.183733 +204 0.112883 0.19763 +178 0.112883 0.267584 +177 0.131278 0.267584 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +163 0.112883 0.189975 +206 0.112883 0.184264 +207 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +164 0.149673 0.167235 +209 0.149673 0.161525 +210 0.131278 0.170368 +SURF 0x10 +mat 1 +refs 4 +207 0.131278 0.170368 +206 0.112883 0.184264 +166 0.112883 0.181094 +165 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +210 0.131278 0.170368 +209 0.149673 0.161525 +45 0.149673 0.158354 +167 0.131278 0.167197 +SURF 0x10 +mat 1 +refs 4 +205 0.131278 0.176078 +152 0.149673 0.167235 +169 0.149673 0.174889 +168 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +208 0.131278 0.176078 +156 0.112883 0.189975 +204 0.112883 0.19763 +203 0.131278 0.183733 +SURF 0x10 +mat 1 +refs 4 +55 0.112883 0.19763 +168 0.131278 0.183733 +171 0.131278 0.267584 +56 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +56 0.112883 0.267584 +171 0.131278 0.267584 +173 0.131278 0.278886 +57 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +60 0.112883 0.28917 +174 0.131278 0.289754 +176 0.131278 0.29977 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +57 0.112883 0.278589 +173 0.131278 0.278886 +174 0.131278 0.289754 +60 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +208 0.131278 0.176078 +210 0.131278 0.170368 +157 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +157 0.112883 0.184264 +210 0.131278 0.170368 +167 0.131278 0.167197 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +205 0.131278 0.176078 +168 0.131278 0.183733 +55 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +166 0.112883 0.181094 +211 0.0980683 0.210469 +160 0.0980683 0.210469 +161 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +178 0.112883 0.267584 +212 0.0984157 0.266471 +213 0.0984158 0.275626 +179 0.112883 0.278589 +SURF 0x10 +mat 1 +refs 4 +179 0.112883 0.278589 +213 0.0984158 0.275626 +214 0.0984163 0.28443 +181 0.112883 0.28917 +SURF 0x10 +mat 1 +refs 4 +181 0.112883 0.28917 +214 0.0984163 0.28443 +215 0.0984169 0.292544 +183 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +183 0.112883 0.298923 +215 0.0984169 0.292544 +216 0.0984177 0.299656 +185 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +185 0.112883 0.307471 +216 0.0984177 0.299656 +217 0.0984185 0.305493 +187 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +187 0.112883 0.314486 +217 0.0984185 0.305493 +218 0.0984192 0.309829 +189 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +189 0.112883 0.319699 +218 0.0984192 0.309829 +219 0.0984197 0.3125 +191 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +191 0.112675 0.320002 +219 0.0984197 0.3125 +220 0.0984199 0.313402 +193 0.112675 0.320946 +SURF 0x10 +mat 1 +refs 4 +193 0.112675 0.320946 +220 0.0984199 0.313402 +221 0.0984197 0.3125 +195 0.112675 0.320002 +SURF 0x10 +mat 1 +refs 4 +195 0.112675 0.320002 +221 0.0984197 0.3125 +222 0.0984192 0.309829 +197 0.112883 0.319699 +SURF 0x10 +mat 1 +refs 4 +197 0.112883 0.319699 +222 0.0984192 0.309829 +223 0.0984185 0.305493 +199 0.112883 0.314486 +SURF 0x10 +mat 1 +refs 4 +199 0.112883 0.314486 +223 0.0984185 0.305493 +224 0.0984177 0.299656 +201 0.112883 0.307471 +SURF 0x10 +mat 1 +refs 4 +201 0.112883 0.307471 +224 0.0984177 0.299656 +62 0.0984169 0.292544 +61 0.112883 0.298923 +SURF 0x10 +mat 1 +refs 4 +204 0.112883 0.19763 +225 0.0980683 0.227431 +212 0.0984157 0.266471 +178 0.112883 0.267584 +SURF 0x10 +mat 1 +refs 4 +163 0.112883 0.189975 +162 0.0980683 0.219579 +226 0.0980683 0.213721 +206 0.112883 0.184264 +SURF 0x10 +mat 1 +refs 4 +206 0.112883 0.184264 +226 0.0980683 0.213721 +211 0.0980683 0.210469 +166 0.112883 0.181094 +SURF 0x10 +mat 1 +refs 4 +156 0.112883 0.189975 +155 0.0980683 0.219579 +225 0.0980683 0.227431 +204 0.112883 0.19763 +SURF 0x10 +mat 1 +refs 4 +44 0.149673 0.158354 +165 0.131278 0.167197 +167 0.131278 0.167197 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +64 0.149673 0.267584 +177 0.131278 0.267584 +180 0.131278 0.278886 +65 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +65 0.149673 0.279183 +180 0.131278 0.278886 +182 0.131278 0.289754 +95 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +95 0.149673 0.290337 +182 0.131278 0.289754 +184 0.131278 0.29977 +96 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +96 0.149673 0.300617 +184 0.131278 0.29977 +186 0.131278 0.308549 +97 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +97 0.149673 0.309627 +186 0.131278 0.308549 +188 0.131278 0.315753 +98 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +98 0.149673 0.317021 +188 0.131278 0.315753 +190 0.131278 0.321107 +99 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +99 0.149673 0.322516 +190 0.131278 0.321107 +192 0.131278 0.323092 +100 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +100 0.149673 0.324171 +192 0.131278 0.323092 +194 0.131278 0.322404 +101 0.149673 0.325037 +SURF 0x10 +mat 1 +refs 4 +101 0.149673 0.325037 +194 0.131278 0.322404 +196 0.131278 0.323092 +102 0.149673 0.324171 +SURF 0x10 +mat 1 +refs 4 +102 0.149673 0.324171 +196 0.131278 0.323092 +198 0.131278 0.321107 +103 0.149673 0.322516 +SURF 0x10 +mat 1 +refs 4 +103 0.149673 0.322516 +198 0.131278 0.321107 +200 0.131278 0.315753 +104 0.149673 0.317021 +SURF 0x10 +mat 1 +refs 4 +104 0.149673 0.317021 +200 0.131278 0.315753 +202 0.131278 0.308549 +105 0.149673 0.309627 +SURF 0x10 +mat 1 +refs 4 +105 0.149673 0.309627 +202 0.131278 0.308549 +176 0.131278 0.29977 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +121 0.149673 0.174889 +203 0.131278 0.183733 +177 0.131278 0.267584 +64 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +205 0.131278 0.176078 +207 0.131278 0.170368 +153 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +153 0.149673 0.161525 +207 0.131278 0.170368 +165 0.131278 0.167197 +44 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +208 0.131278 0.176078 +203 0.131278 0.183733 +121 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +169 0.149673 0.174889 +52 0.168848 0.168617 +51 0.168068 0.267584 +170 0.149673 0.267584 +SURF 0x10 +mat 1 +refs 4 +170 0.149673 0.267584 +51 0.168068 0.267584 +76 0.168068 0.279481 +172 0.149673 0.279183 +SURF 0x10 +mat 1 +refs 4 +175 0.149673 0.290337 +70 0.168068 0.290921 +69 0.168068 0.301464 +106 0.149673 0.300617 +SURF 0x10 +mat 1 +refs 4 +172 0.149673 0.279183 +76 0.168068 0.279481 +70 0.168068 0.290921 +175 0.149673 0.290337 +SURF 0x10 +mat 1 +refs 4 +164 0.149673 0.167235 +159 0.168848 0.160962 +158 0.168848 0.155252 +209 0.149673 0.161525 +SURF 0x10 +mat 1 +refs 4 +209 0.149673 0.161525 +158 0.168848 0.155252 +46 0.168848 0.152081 +45 0.149673 0.158354 +SURF 0x10 +mat 1 +refs 4 +152 0.149673 0.167235 +151 0.168848 0.160962 +52 0.168848 0.168617 +169 0.149673 0.174889 +SURF 0x10 +mat 1 +refs 4 +31 0.266105 0.391907 +30 0.266105 0.391907 +81 0.217744 0.327458 +113 0.218063 0.327394 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +112 0.220855 0.323924 +111 0.225388 0.318289 +33 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +115 0.220855 0.323924 +114 0.218063 0.327394 +29 0.266105 0.391907 +SURF 0x10 +mat 1 +refs 4 +32 0.266105 0.391907 +31 0.266105 0.391907 +113 0.218063 0.327394 +112 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 4 +28 0.266105 0.391907 +27 0.266105 0.391907 +116 0.225388 0.318289 +115 0.220855 0.323924 +SURF 0x10 +mat 1 +refs 3 +25 0.266174 0.267584 +24 0.266174 0.384097 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +36 0.266174 0.384097 +119 0.247402 0.290921 +118 0.238922 0.301464 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 4 +130 0.266105 0.389705 +33 0.266105 0.391907 +111 0.225388 0.318289 +110 0.231488 0.310705 +SURF 0x10 +mat 1 +refs 4 +131 0.266174 0.389414 +130 0.266105 0.389705 +110 0.231488 0.310705 +109 0.238922 0.301464 +SURF 0x10 +mat 1 +refs 4 +24 0.266174 0.384097 +131 0.266174 0.389414 +109 0.238922 0.301464 +108 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +24 0.266174 0.384097 +108 0.247402 0.290921 +107 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 4 +117 0.231488 0.310705 +116 0.225388 0.318289 +27 0.266105 0.391907 +133 0.266105 0.389705 +SURF 0x10 +mat 1 +refs 4 +118 0.238922 0.301464 +117 0.231488 0.310705 +133 0.266105 0.389705 +132 0.266174 0.389414 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +120 0.256605 0.279481 +119 0.247402 0.290921 +SURF 0x10 +mat 1 +refs 3 +36 0.266174 0.384097 +35 0.266174 0.267584 +120 0.256605 0.279481 +SURF 0x10 +mat 1 +refs 25 +227 0.0967994 0.221362 +228 0.0967994 0.223591 +229 0.0967994 0.227555 +230 0.0967994 0.232935 +231 0.0967994 0.26614 +232 0.0967994 0.274253 +233 0.0967994 0.281737 +234 0.0967994 0.288634 +235 0.0967994 0.294679 +236 0.0967994 0.29964 +237 0.0967994 0.303326 +238 0.0967994 0.305596 +239 0.0967994 0.306363 +240 0.0967994 0.305596 +241 0.0967994 0.303326 +242 0.0967994 0.29964 +243 0.0967994 0.294679 +244 0.0967994 0.288634 +245 0.0967994 0.281737 +246 0.0967994 0.274253 +247 0.0967994 0.26614 +248 0.0967994 0.232935 +249 0.0967994 0.227555 +250 0.0967994 0.223591 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +252 0.0976736 0.26641 +253 0.0970995 0.266291 +254 0.0970226 0.231601 +255 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +256 0.097674 0.275357 +257 0.0970992 0.274869 +253 0.0970995 0.266291 +252 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +258 0.0976731 0.291773 +259 0.097101 0.290389 +260 0.0970999 0.282945 +261 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +261 0.0976737 0.283901 +260 0.0970999 0.282945 +257 0.0970992 0.274869 +256 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +262 0.0975263 0.216378 +263 0.0969944 0.220514 +264 0.0970048 0.225222 +265 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +266 0.0975305 0.213247 +267 0.0969902 0.217885 +263 0.0969944 0.220514 +262 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +255 0.0974981 0.229538 +254 0.0970226 0.231601 +268 0.0970048 0.225222 +269 0.0975159 0.22201 +SURF 0x10 +mat 1 +refs 4 +270 0.0975305 0.213247 +271 0.0969902 0.217885 +267 0.0969902 0.217885 +266 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +272 0.0976736 0.26641 +273 0.0970995 0.266291 +274 0.0970992 0.274869 +275 0.097674 0.275357 +SURF 0x10 +mat 1 +refs 4 +275 0.097674 0.275357 +274 0.0970992 0.274869 +276 0.0970999 0.282945 +277 0.0976737 0.283901 +SURF 0x10 +mat 1 +refs 4 +277 0.0976737 0.283901 +276 0.0970999 0.282945 +278 0.097101 0.290389 +279 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +279 0.0976731 0.291773 +278 0.097101 0.290389 +280 0.0971022 0.296917 +281 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +281 0.0976724 0.298671 +280 0.0971022 0.296917 +282 0.0971035 0.302275 +283 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +283 0.0976717 0.30433 +282 0.0971035 0.302275 +284 0.0971046 0.306259 +285 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +285 0.0976711 0.308534 +284 0.0971046 0.306259 +286 0.0971053 0.308712 +287 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +287 0.0976707 0.311121 +286 0.0971053 0.308712 +288 0.0971056 0.309541 +289 0.0976705 0.311995 +SURF 0x10 +mat 1 +refs 4 +289 0.0976705 0.311995 +288 0.0971056 0.309541 +290 0.0971053 0.308712 +291 0.0976707 0.311121 +SURF 0x10 +mat 1 +refs 4 +291 0.0976707 0.311121 +290 0.0971053 0.308712 +292 0.0971046 0.306259 +293 0.0976711 0.308534 +SURF 0x10 +mat 1 +refs 4 +293 0.0976711 0.308534 +292 0.0971046 0.306259 +294 0.0971035 0.302275 +295 0.0976717 0.30433 +SURF 0x10 +mat 1 +refs 4 +295 0.0976717 0.30433 +294 0.0971035 0.302275 +296 0.0971022 0.296917 +297 0.0976724 0.298671 +SURF 0x10 +mat 1 +refs 4 +297 0.0976724 0.298671 +296 0.0971022 0.296917 +259 0.097101 0.290389 +258 0.0976731 0.291773 +SURF 0x10 +mat 1 +refs 4 +298 0.0974981 0.229538 +299 0.0970226 0.231601 +273 0.0970995 0.266291 +272 0.0976736 0.26641 +SURF 0x10 +mat 1 +refs 4 +269 0.0975159 0.22201 +268 0.0970048 0.225222 +300 0.0969944 0.220514 +301 0.0975263 0.216378 +SURF 0x10 +mat 1 +refs 4 +301 0.0975263 0.216378 +300 0.0969944 0.220514 +271 0.0969902 0.217885 +270 0.0975305 0.213247 +SURF 0x10 +mat 1 +refs 4 +265 0.0975159 0.22201 +264 0.0970048 0.225222 +299 0.0970226 0.231601 +298 0.0974981 0.229538 +SURF 0x10 +mat 1 +refs 4 +53 0.0984157 0.266471 +252 0.0976736 0.26641 +255 0.0974981 0.229538 +54 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +58 0.0984158 0.275626 +256 0.097674 0.275357 +252 0.0976736 0.26641 +53 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +62 0.0984169 0.292544 +258 0.0976731 0.291773 +261 0.0976737 0.283901 +59 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +59 0.0984163 0.28443 +261 0.0976737 0.283901 +256 0.097674 0.275357 +58 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +154 0.0980683 0.213721 +262 0.0975263 0.216378 +265 0.0975159 0.22201 +155 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +160 0.0980683 0.210469 +266 0.0975305 0.213247 +262 0.0975263 0.216378 +154 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +54 0.0980683 0.227431 +255 0.0974981 0.229538 +269 0.0975159 0.22201 +162 0.0980683 0.219579 +SURF 0x10 +mat 1 +refs 4 +211 0.0980683 0.210469 +270 0.0975305 0.213247 +266 0.0975305 0.213247 +160 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +212 0.0984157 0.266471 +272 0.0976736 0.26641 +275 0.097674 0.275357 +213 0.0984158 0.275626 +SURF 0x10 +mat 1 +refs 4 +213 0.0984158 0.275626 +275 0.097674 0.275357 +277 0.0976737 0.283901 +214 0.0984163 0.28443 +SURF 0x10 +mat 1 +refs 4 +214 0.0984163 0.28443 +277 0.0976737 0.283901 +279 0.0976731 0.291773 +215 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +215 0.0984169 0.292544 +279 0.0976731 0.291773 +281 0.0976724 0.298671 +216 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +216 0.0984177 0.299656 +281 0.0976724 0.298671 +283 0.0976717 0.30433 +217 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +217 0.0984185 0.305493 +283 0.0976717 0.30433 +285 0.0976711 0.308534 +218 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +218 0.0984192 0.309829 +285 0.0976711 0.308534 +287 0.0976707 0.311121 +219 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +219 0.0984197 0.3125 +287 0.0976707 0.311121 +289 0.0976705 0.311995 +220 0.0984199 0.313402 +SURF 0x10 +mat 1 +refs 4 +220 0.0984199 0.313402 +289 0.0976705 0.311995 +291 0.0976707 0.311121 +221 0.0984197 0.3125 +SURF 0x10 +mat 1 +refs 4 +221 0.0984197 0.3125 +291 0.0976707 0.311121 +293 0.0976711 0.308534 +222 0.0984192 0.309829 +SURF 0x10 +mat 1 +refs 4 +222 0.0984192 0.309829 +293 0.0976711 0.308534 +295 0.0976717 0.30433 +223 0.0984185 0.305493 +SURF 0x10 +mat 1 +refs 4 +223 0.0984185 0.305493 +295 0.0976717 0.30433 +297 0.0976724 0.298671 +224 0.0984177 0.299656 +SURF 0x10 +mat 1 +refs 4 +224 0.0984177 0.299656 +297 0.0976724 0.298671 +258 0.0976731 0.291773 +62 0.0984169 0.292544 +SURF 0x10 +mat 1 +refs 4 +225 0.0980683 0.227431 +298 0.0974981 0.229538 +272 0.0976736 0.26641 +212 0.0984157 0.266471 +SURF 0x10 +mat 1 +refs 4 +162 0.0980683 0.219579 +269 0.0975159 0.22201 +301 0.0975263 0.216378 +226 0.0980683 0.213721 +SURF 0x10 +mat 1 +refs 4 +226 0.0980683 0.213721 +301 0.0975263 0.216378 +270 0.0975305 0.213247 +211 0.0980683 0.210469 +SURF 0x10 +mat 1 +refs 4 +155 0.0980683 0.219579 +265 0.0975159 0.22201 +298 0.0974981 0.229538 +225 0.0980683 0.227431 +SURF 0x10 +mat 1 +refs 4 +227 0.0967994 0.221362 +271 0.0969902 0.217885 +300 0.0969944 0.220514 +228 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +228 0.0967994 0.223591 +300 0.0969944 0.220514 +268 0.0970048 0.225222 +229 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +229 0.0967994 0.227555 +268 0.0970048 0.225222 +254 0.0970226 0.231601 +230 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +230 0.0967994 0.232935 +254 0.0970226 0.231601 +253 0.0970995 0.266291 +231 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +231 0.0967994 0.26614 +253 0.0970995 0.266291 +257 0.0970992 0.274869 +232 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +232 0.0967994 0.274253 +257 0.0970992 0.274869 +260 0.0970999 0.282945 +233 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +233 0.0967994 0.281737 +260 0.0970999 0.282945 +259 0.097101 0.290389 +234 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +234 0.0967994 0.288634 +259 0.097101 0.290389 +296 0.0971022 0.296917 +235 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +235 0.0967994 0.294679 +296 0.0971022 0.296917 +294 0.0971035 0.302275 +236 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +236 0.0967994 0.29964 +294 0.0971035 0.302275 +292 0.0971046 0.306259 +237 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +237 0.0967994 0.303326 +292 0.0971046 0.306259 +290 0.0971053 0.308712 +238 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +238 0.0967994 0.305596 +290 0.0971053 0.308712 +288 0.0971056 0.309541 +239 0.0967994 0.306363 +SURF 0x10 +mat 1 +refs 4 +239 0.0967994 0.306363 +288 0.0971056 0.309541 +286 0.0971053 0.308712 +240 0.0967994 0.305596 +SURF 0x10 +mat 1 +refs 4 +240 0.0967994 0.305596 +286 0.0971053 0.308712 +284 0.0971046 0.306259 +241 0.0967994 0.303326 +SURF 0x10 +mat 1 +refs 4 +241 0.0967994 0.303326 +284 0.0971046 0.306259 +282 0.0971035 0.302275 +242 0.0967994 0.29964 +SURF 0x10 +mat 1 +refs 4 +242 0.0967994 0.29964 +282 0.0971035 0.302275 +280 0.0971022 0.296917 +243 0.0967994 0.294679 +SURF 0x10 +mat 1 +refs 4 +243 0.0967994 0.294679 +280 0.0971022 0.296917 +278 0.097101 0.290389 +244 0.0967994 0.288634 +SURF 0x10 +mat 1 +refs 4 +244 0.0967994 0.288634 +278 0.097101 0.290389 +276 0.0970999 0.282945 +245 0.0967994 0.281737 +SURF 0x10 +mat 1 +refs 4 +245 0.0967994 0.281737 +276 0.0970999 0.282945 +274 0.0970992 0.274869 +246 0.0967994 0.274253 +SURF 0x10 +mat 1 +refs 4 +246 0.0967994 0.274253 +274 0.0970992 0.274869 +273 0.0970995 0.266291 +247 0.0967994 0.26614 +SURF 0x10 +mat 1 +refs 4 +247 0.0967994 0.26614 +273 0.0970995 0.266291 +299 0.0970226 0.231601 +248 0.0967994 0.232935 +SURF 0x10 +mat 1 +refs 4 +248 0.0967994 0.232935 +299 0.0970226 0.231601 +264 0.0970048 0.225222 +249 0.0967994 0.227555 +SURF 0x10 +mat 1 +refs 4 +249 0.0967994 0.227555 +264 0.0970048 0.225222 +263 0.0969944 0.220514 +250 0.0967994 0.223591 +SURF 0x10 +mat 1 +refs 4 +250 0.0967994 0.223591 +263 0.0969944 0.220514 +267 0.0969902 0.217885 +251 0.0967994 0.221362 +SURF 0x10 +mat 1 +refs 4 +251 0.0967994 0.221362 +267 0.0969902 0.217885 +271 0.0969902 0.217885 +227 0.0967994 0.221362 +kids 0 +OBJECT poly +name "Spinner" +numvert 161 +0.0762 0.0498239 0.00991059 +0.0762 0.0469331 0.0194403 +0.0762 0.0422387 0.028223 +0.0762 0.035921 0.035921 +0.0762 0.028223 0.0422387 +0.0762 0.0194403 0.0469331 +0.0762 0.00991059 0.0498239 +0.0762 -9.3315e-18 0.0508 +0.0762 -0.00991059 0.0498239 +0.0762 -0.0194403 0.0469331 +0.0762 -0.028223 0.0422387 +0.0762 -0.035921 0.035921 +0.0762 -0.0422387 0.028223 +0.0762 -0.0469331 0.0194403 +0.0762 -0.0498239 0.00991059 +0.0762 -0.0508 1.2442e-17 +0.0762 -0.0498239 -0.00991059 +0.0762 -0.0469331 -0.0194403 +0.0762 -0.0422387 -0.028223 +0.0762 -0.035921 -0.035921 +0.0762 -0.028223 -0.0422387 +0.0762 -0.0194403 -0.0469331 +0.0762 -0.00991059 -0.0498239 +0.0762 3.1105e-18 -0.0508 +0.0762 0.00991059 -0.0498239 +0.0762 0.0194403 -0.0469331 +0.0762 0.028223 -0.0422387 +0.0762 0.035921 -0.035921 +0.0762 0.0422387 -0.028223 +0.0762 0.0469331 -0.0194403 +0.0762 0.0498239 -0.00991059 +0.0762 0.0508 1.8663e-17 +0.0450424 0.0397968 1.31541e-17 +0.0450424 0.0390321 -0.00776398 +0.0259924 0.0288237 -0.0057334 +0.0259924 0.0293884 6.40787e-18 +0.0450424 0.0367675 -0.0152296 +0.0259924 0.0271514 -0.0112465 +0.0450424 0.0330899 -0.0221099 +0.0259924 0.0244356 -0.0163273 +0.0450424 0.0281406 -0.0281406 +0.0259924 0.0207808 -0.0207808 +0.0450424 0.0221099 -0.0330899 +0.0259924 0.0163273 -0.0244356 +0.0450424 0.0152296 -0.0367675 +0.0259924 0.0112465 -0.0271514 +0.0450424 0.00776398 -0.0390321 +0.0259924 0.0057334 -0.0288237 +0.0450424 2.43677e-18 -0.0397968 +0.0259924 1.79946e-18 -0.0293884 +0.0450424 -0.00776398 -0.0390321 +0.0259924 -0.0057334 -0.0288237 +0.0450424 -0.0152296 -0.0367675 +0.0259924 -0.0112465 -0.0271514 +0.0450424 -0.0221099 -0.0330899 +0.0259924 -0.0163273 -0.0244356 +0.0450424 -0.0281406 -0.0281406 +0.0259924 -0.0207808 -0.0207808 +0.0450424 -0.0330899 -0.0221099 +0.0259924 -0.0244356 -0.0163273 +0.0450424 -0.0367675 -0.0152296 +0.0259924 -0.0271514 -0.0112465 +0.0450424 -0.0390321 -0.00776398 +0.0259924 -0.0288237 -0.0057334 +0.0450424 -0.0397968 8.2806e-18 +0.0259924 -0.0293884 2.80895e-18 +0.0450424 -0.0390321 0.00776398 +0.0259924 -0.0288237 0.0057334 +0.0450424 -0.0367675 0.0152296 +0.0259924 -0.0271514 0.0112465 +0.0450424 -0.0330899 0.0221099 +0.0259924 -0.0244356 0.0163273 +0.0450424 -0.0281406 0.0281406 +0.0259924 -0.0207808 0.0207808 +0.0450424 -0.0221099 0.0330899 +0.0259924 -0.0163273 0.0244356 +0.0450424 -0.0152296 0.0367675 +0.0259924 -0.0112465 0.0271514 +0.0450424 -0.00776398 0.0390321 +0.0259924 -0.0057334 0.0288237 +0.0450424 -7.31032e-18 0.0397968 +0.0259924 -5.39839e-18 0.0293884 +0.0450424 0.00776398 0.0390321 +0.0259924 0.0057334 0.0288237 +0.0450424 0.0152296 0.0367675 +0.0259924 0.0112465 0.0271514 +0.0450424 0.0221099 0.0330899 +0.0259924 0.0163273 0.0244356 +0.0450424 0.0281406 0.0281406 +0.0259924 0.0207808 0.0207808 +0.0450424 0.0330899 0.0221099 +0.0259924 0.0244356 0.0163273 +0.0450424 0.0367675 0.0152296 +0.0259924 0.0271514 0.0112465 +0.0450424 0.0390321 0.00776398 +0.0259924 0.0288237 0.0057334 +0.0132924 0.0216178 -0.00430005 +0.0132924 0.0220413 2.68138e-18 +0.0132924 0.0203635 -0.00843485 +0.0132924 0.0183267 -0.0122455 +0.0132924 0.0155856 -0.0155856 +0.0132924 0.0122455 -0.0183267 +0.0132924 0.00843485 -0.0203635 +0.0132924 0.00430005 -0.0216178 +0.0132924 1.3496e-18 -0.0220413 +0.0132924 -0.00430005 -0.0216178 +0.0132924 -0.00843485 -0.0203635 +0.0132924 -0.0122455 -0.0183267 +0.0132924 -0.0155856 -0.0155856 +0.0132924 -0.0183267 -0.0122455 +0.0132924 -0.0203635 -0.00843485 +0.0132924 -0.0216178 -0.00430005 +0.0132924 -0.0220413 -1.78104e-20 +0.0132924 -0.0216178 0.00430005 +0.0132924 -0.0203635 0.00843485 +0.0132924 -0.0183267 0.0122455 +0.0132924 -0.0155856 0.0155856 +0.0132924 -0.0122455 0.0183267 +0.0132924 -0.00843485 0.0203635 +0.0132924 -0.00430005 0.0216178 +0.0132924 -4.04879e-18 0.0220413 +0.0132924 0.00430005 0.0216178 +0.0132924 0.00843485 0.0203635 +0.0132924 0.0122455 0.0183267 +0.0132924 0.0155856 0.0155856 +0.0132924 0.0183267 0.0122455 +0.0132924 0.0203635 0.00843485 +0.0132924 0.0216178 0.00430005 +0.003175 0.0106499 -0.00211839 +0.003175 0.0108585 3.31121e-18 +0.003175 0.010032 -0.00415538 +0.003175 0.00902854 -0.00603268 +0.003175 0.00767814 -0.00767814 +0.003175 0.00603268 -0.00902854 +0.003175 0.00415538 -0.010032 +0.003175 0.00211839 -0.0106499 +0.003175 6.64871e-19 -0.0108585 +0.003175 -0.00211839 -0.0106499 +0.003175 -0.00415538 -0.010032 +0.003175 -0.00603268 -0.00902854 +0.003175 -0.00767814 -0.00767814 +0.003175 -0.00902854 -0.00603268 +0.003175 -0.010032 -0.00415538 +0.003175 -0.0106499 -0.00211839 +0.003175 -0.0108585 1.98147e-18 +0.003175 -0.0106499 0.00211839 +0.003175 -0.010032 0.00415538 +0.003175 -0.00902854 0.00603268 +0.003175 -0.00767814 0.00767814 +0.003175 -0.00603268 0.00902854 +0.003175 -0.00415538 0.010032 +0.003175 -0.00211839 0.0106499 +0.003175 -1.99461e-18 0.0108585 +0.003175 0.00211839 0.0106499 +0.003175 0.00415538 0.010032 +0.003175 0.00603268 0.00902854 +0.003175 0.00767814 0.00767814 +0.003175 0.00902854 0.00603268 +0.003175 0.010032 0.00415538 +0.003175 0.0106499 0.00211839 +0 0 6.16106e-18 +numsurf 161 +SURF 0x10 +mat 4 +refs 32 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +18 0 0 +19 0 0 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +24 0 0 +25 0 0 +26 0 0 +27 0 0 +28 0 0 +29 0 0 +30 0 0 +31 0 0 +SURF 0x10 +mat 4 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x10 +mat 4 +refs 4 +33 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x10 +mat 4 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x10 +mat 4 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x10 +mat 4 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x10 +mat 4 +refs 4 +42 0 0 +44 0 0 +45 0 0 +43 0 0 +SURF 0x10 +mat 4 +refs 4 +44 0 0 +46 0 0 +47 0 0 +45 0 0 +SURF 0x10 +mat 4 +refs 4 +46 0 0 +48 0 0 +49 0 0 +47 0 0 +SURF 0x10 +mat 4 +refs 4 +48 0 0 +50 0 0 +51 0 0 +49 0 0 +SURF 0x10 +mat 4 +refs 4 +50 0 0 +52 0 0 +53 0 0 +51 0 0 +SURF 0x10 +mat 4 +refs 4 +52 0 0 +54 0 0 +55 0 0 +53 0 0 +SURF 0x10 +mat 4 +refs 4 +54 0 0 +56 0 0 +57 0 0 +55 0 0 +SURF 0x10 +mat 4 +refs 4 +56 0 0 +58 0 0 +59 0 0 +57 0 0 +SURF 0x10 +mat 4 +refs 4 +58 0 0 +60 0 0 +61 0 0 +59 0 0 +SURF 0x10 +mat 4 +refs 4 +60 0 0 +62 0 0 +63 0 0 +61 0 0 +SURF 0x10 +mat 4 +refs 4 +62 0 0 +64 0 0 +65 0 0 +63 0 0 +SURF 0x10 +mat 4 +refs 4 +64 0 0 +66 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 4 +refs 4 +66 0 0 +68 0 0 +69 0 0 +67 0 0 +SURF 0x10 +mat 4 +refs 4 +68 0 0 +70 0 0 +71 0 0 +69 0 0 +SURF 0x10 +mat 4 +refs 4 +70 0 0 +72 0 0 +73 0 0 +71 0 0 +SURF 0x10 +mat 4 +refs 4 +72 0 0 +74 0 0 +75 0 0 +73 0 0 +SURF 0x10 +mat 4 +refs 4 +74 0 0 +76 0 0 +77 0 0 +75 0 0 +SURF 0x10 +mat 4 +refs 4 +76 0 0 +78 0 0 +79 0 0 +77 0 0 +SURF 0x10 +mat 4 +refs 4 +78 0 0 +80 0 0 +81 0 0 +79 0 0 +SURF 0x10 +mat 4 +refs 4 +80 0 0 +82 0 0 +83 0 0 +81 0 0 +SURF 0x10 +mat 4 +refs 4 +82 0 0 +84 0 0 +85 0 0 +83 0 0 +SURF 0x10 +mat 4 +refs 4 +84 0 0 +86 0 0 +87 0 0 +85 0 0 +SURF 0x10 +mat 4 +refs 4 +86 0 0 +88 0 0 +89 0 0 +87 0 0 +SURF 0x10 +mat 4 +refs 4 +88 0 0 +90 0 0 +91 0 0 +89 0 0 +SURF 0x10 +mat 4 +refs 4 +90 0 0 +92 0 0 +93 0 0 +91 0 0 +SURF 0x10 +mat 4 +refs 4 +92 0 0 +94 0 0 +95 0 0 +93 0 0 +SURF 0x10 +mat 4 +refs 4 +94 0 0 +32 0 0 +35 0 0 +95 0 0 +SURF 0x10 +mat 4 +refs 4 +35 0 0 +34 0 0 +96 0 0 +97 0 0 +SURF 0x10 +mat 4 +refs 4 +34 0 0 +37 0 0 +98 0 0 +96 0 0 +SURF 0x10 +mat 4 +refs 4 +37 0 0 +39 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 4 +refs 4 +39 0 0 +41 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 4 +refs 4 +41 0 0 +43 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 4 +refs 4 +43 0 0 +45 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 4 +refs 4 +45 0 0 +47 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 4 +refs 4 +47 0 0 +49 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 4 +refs 4 +49 0 0 +51 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 4 +refs 4 +51 0 0 +53 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 4 +refs 4 +53 0 0 +55 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 4 +refs 4 +55 0 0 +57 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 4 +refs 4 +57 0 0 +59 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 4 +refs 4 +59 0 0 +61 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 4 +refs 4 +61 0 0 +63 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 4 +refs 4 +63 0 0 +65 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 4 +refs 4 +65 0 0 +67 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 4 +refs 4 +67 0 0 +69 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 4 +refs 4 +69 0 0 +71 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 4 +refs 4 +71 0 0 +73 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 4 +refs 4 +73 0 0 +75 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 4 +refs 4 +75 0 0 +77 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 4 +refs 4 +77 0 0 +79 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 4 +refs 4 +79 0 0 +81 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 4 +refs 4 +81 0 0 +83 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 4 +refs 4 +83 0 0 +85 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 4 +refs 4 +85 0 0 +87 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 4 +refs 4 +87 0 0 +89 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 4 +refs 4 +89 0 0 +91 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 4 +refs 4 +91 0 0 +93 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 4 +refs 4 +93 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 4 +refs 4 +95 0 0 +35 0 0 +97 0 0 +127 0 0 +SURF 0x10 +mat 4 +refs 4 +97 0 0 +96 0 0 +128 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 4 +96 0 0 +98 0 0 +130 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 4 +98 0 0 +99 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 4 +127 0 0 +97 0 0 +129 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 3 +128 0 0 +160 0 0 +129 0 0 +SURF 0x10 +mat 4 +refs 3 +130 0 0 +160 0 0 +128 0 0 +SURF 0x10 +mat 4 +refs 3 +131 0 0 +160 0 0 +130 0 0 +SURF 0x10 +mat 4 +refs 3 +132 0 0 +160 0 0 +131 0 0 +SURF 0x10 +mat 4 +refs 3 +133 0 0 +160 0 0 +132 0 0 +SURF 0x10 +mat 4 +refs 3 +134 0 0 +160 0 0 +133 0 0 +SURF 0x10 +mat 4 +refs 3 +135 0 0 +160 0 0 +134 0 0 +SURF 0x10 +mat 4 +refs 3 +136 0 0 +160 0 0 +135 0 0 +SURF 0x10 +mat 4 +refs 3 +137 0 0 +160 0 0 +136 0 0 +SURF 0x10 +mat 4 +refs 3 +138 0 0 +160 0 0 +137 0 0 +SURF 0x10 +mat 4 +refs 3 +139 0 0 +160 0 0 +138 0 0 +SURF 0x10 +mat 4 +refs 3 +140 0 0 +160 0 0 +139 0 0 +SURF 0x10 +mat 4 +refs 3 +141 0 0 +160 0 0 +140 0 0 +SURF 0x10 +mat 4 +refs 3 +142 0 0 +160 0 0 +141 0 0 +SURF 0x10 +mat 4 +refs 3 +143 0 0 +160 0 0 +142 0 0 +SURF 0x10 +mat 4 +refs 3 +144 0 0 +160 0 0 +143 0 0 +SURF 0x10 +mat 4 +refs 3 +145 0 0 +160 0 0 +144 0 0 +SURF 0x10 +mat 4 +refs 3 +146 0 0 +160 0 0 +145 0 0 +SURF 0x10 +mat 4 +refs 3 +147 0 0 +160 0 0 +146 0 0 +SURF 0x10 +mat 4 +refs 3 +148 0 0 +160 0 0 +147 0 0 +SURF 0x10 +mat 4 +refs 3 +149 0 0 +160 0 0 +148 0 0 +SURF 0x10 +mat 4 +refs 3 +150 0 0 +160 0 0 +149 0 0 +SURF 0x10 +mat 4 +refs 3 +151 0 0 +160 0 0 +150 0 0 +SURF 0x10 +mat 4 +refs 3 +152 0 0 +160 0 0 +151 0 0 +SURF 0x10 +mat 4 +refs 3 +153 0 0 +160 0 0 +152 0 0 +SURF 0x10 +mat 4 +refs 3 +154 0 0 +160 0 0 +153 0 0 +SURF 0x10 +mat 4 +refs 3 +155 0 0 +160 0 0 +154 0 0 +SURF 0x10 +mat 4 +refs 3 +156 0 0 +160 0 0 +155 0 0 +SURF 0x10 +mat 4 +refs 3 +157 0 0 +160 0 0 +156 0 0 +SURF 0x10 +mat 4 +refs 3 +158 0 0 +160 0 0 +157 0 0 +SURF 0x10 +mat 4 +refs 3 +159 0 0 +160 0 0 +158 0 0 +SURF 0x10 +mat 4 +refs 3 +129 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +30 0 0 +33 0 0 +32 0 0 +SURF 0x10 +mat 4 +refs 4 +30 0 0 +29 0 0 +36 0 0 +33 0 0 +SURF 0x10 +mat 4 +refs 4 +29 0 0 +28 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 4 +refs 4 +28 0 0 +27 0 0 +40 0 0 +38 0 0 +SURF 0x10 +mat 4 +refs 4 +27 0 0 +26 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 4 +refs 4 +26 0 0 +25 0 0 +44 0 0 +42 0 0 +SURF 0x10 +mat 4 +refs 4 +25 0 0 +24 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 4 +refs 4 +24 0 0 +23 0 0 +48 0 0 +46 0 0 +SURF 0x10 +mat 4 +refs 4 +23 0 0 +22 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 4 +refs 4 +22 0 0 +21 0 0 +52 0 0 +50 0 0 +SURF 0x10 +mat 4 +refs 4 +21 0 0 +20 0 0 +54 0 0 +52 0 0 +SURF 0x10 +mat 4 +refs 4 +20 0 0 +19 0 0 +56 0 0 +54 0 0 +SURF 0x10 +mat 4 +refs 4 +19 0 0 +18 0 0 +58 0 0 +56 0 0 +SURF 0x10 +mat 4 +refs 4 +18 0 0 +17 0 0 +60 0 0 +58 0 0 +SURF 0x10 +mat 4 +refs 4 +17 0 0 +16 0 0 +62 0 0 +60 0 0 +SURF 0x10 +mat 4 +refs 4 +16 0 0 +15 0 0 +64 0 0 +62 0 0 +SURF 0x10 +mat 4 +refs 4 +15 0 0 +14 0 0 +66 0 0 +64 0 0 +SURF 0x10 +mat 4 +refs 4 +14 0 0 +13 0 0 +68 0 0 +66 0 0 +SURF 0x10 +mat 4 +refs 4 +13 0 0 +12 0 0 +70 0 0 +68 0 0 +SURF 0x10 +mat 4 +refs 4 +12 0 0 +11 0 0 +72 0 0 +70 0 0 +SURF 0x10 +mat 4 +refs 4 +11 0 0 +10 0 0 +74 0 0 +72 0 0 +SURF 0x10 +mat 4 +refs 4 +10 0 0 +9 0 0 +76 0 0 +74 0 0 +SURF 0x10 +mat 4 +refs 4 +9 0 0 +8 0 0 +78 0 0 +76 0 0 +SURF 0x10 +mat 4 +refs 4 +8 0 0 +7 0 0 +80 0 0 +78 0 0 +SURF 0x10 +mat 4 +refs 4 +7 0 0 +6 0 0 +82 0 0 +80 0 0 +SURF 0x10 +mat 4 +refs 4 +6 0 0 +5 0 0 +84 0 0 +82 0 0 +SURF 0x10 +mat 4 +refs 4 +5 0 0 +4 0 0 +86 0 0 +84 0 0 +SURF 0x10 +mat 4 +refs 4 +4 0 0 +3 0 0 +88 0 0 +86 0 0 +SURF 0x10 +mat 4 +refs 4 +3 0 0 +2 0 0 +90 0 0 +88 0 0 +SURF 0x10 +mat 4 +refs 4 +2 0 0 +1 0 0 +92 0 0 +90 0 0 +SURF 0x10 +mat 4 +refs 4 +1 0 0 +0 0 0 +94 0 0 +92 0 0 +SURF 0x10 +mat 4 +refs 4 +31 0 0 +32 0 0 +94 0 0 +0 0 0 +kids 0 +OBJECT poly +name "UC_Main_Center" +numvert 28 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 22 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +4 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 3 +7 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +10 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +12 0 0 +13 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +0 0 0 +3 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 3 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +24 0 0 +25 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +26 0 0 +27 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +14 0 0 +17 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +12 0 0 +27 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +8 0 0 +22 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +20 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +1 0 0 +16 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +17 0 0 +16 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +10 0 0 +25 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +7 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +4 0 0 +19 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_Main_Left" +numvert 22 +0.489939 -0.321589 0.261464 +0.48895 -0.322594 0.26061 +0.48895 -0.325422 0.258204 +0.489939 -0.326427 0.25735 +0.526061 -0.326427 0.25735 +0.52705 -0.325422 0.258204 +0.52705 -0.322594 0.26061 +0.526061 -0.321589 0.261464 +0.471877 -0.1397 0.0494553 +0.4699 -0.141018 0.0494553 +0.4699 -0.142441 0.0529619 +0.471877 -0.141496 0.0538806 +0.4699 -0.144732 0.0494553 +0.4699 -0.145105 0.0503741 +0.471877 -0.14605 0.0494553 +0.544123 -0.14605 0.0494553 +0.5461 -0.144732 0.0494553 +0.5461 -0.145105 0.0503741 +0.5461 -0.141018 0.0494553 +0.5461 -0.142441 0.0529619 +0.544123 -0.1397 0.0494553 +0.544123 -0.141496 0.0538806 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +18 0 0 +19 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +10 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +14 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +15 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +17 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +21 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +21 0 0 +11 0 0 +0 0 0 +7 0 0 +kids 0 +OBJECT poly +name "UC_Main_Right" +numvert 22 +0.526061 -0.321589 -0.261464 +0.52705 -0.322594 -0.26061 +0.52705 -0.325422 -0.258204 +0.526061 -0.326427 -0.25735 +0.489939 -0.326427 -0.25735 +0.48895 -0.325422 -0.258204 +0.48895 -0.322594 -0.26061 +0.489939 -0.321589 -0.261464 +0.471877 -0.141496 -0.0538806 +0.4699 -0.142441 -0.0529619 +0.4699 -0.141018 -0.0494553 +0.471877 -0.1397 -0.0494553 +0.4699 -0.145105 -0.0503741 +0.4699 -0.144732 -0.0494553 +0.471877 -0.14605 -0.0494553 +0.5461 -0.145105 -0.0503741 +0.5461 -0.144732 -0.0494553 +0.544123 -0.14605 -0.0494553 +0.5461 -0.142441 -0.0529619 +0.5461 -0.141018 -0.0494553 +0.544123 -0.141496 -0.0538806 +0.544123 -0.1397 -0.0494553 +numsurf 16 +SURF 0x10 +mat 1 +refs 8 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +12 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +8 0 0 +11 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +7 0 0 +6 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +5 0 0 +12 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +5 0 0 +4 0 0 +14 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +3 0 0 +17 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +2 0 0 +15 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +1 0 0 +18 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +0 0 0 +20 0 0 +18 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +8 0 0 +20 0 0 +kids 0 +OBJECT poly +name "UC_L_Tyre" +numvert 194 +0.508 -0.33655 0.26035 +0.511763 -0.355466 0.262865 +0.508 -0.355836 0.262865 +0.51538 -0.354368 0.262865 +0.518715 -0.352586 0.262865 +0.521637 -0.350187 0.262865 +0.524036 -0.347265 0.262865 +0.525818 -0.34393 0.262865 +0.526916 -0.340313 0.262865 +0.527286 -0.33655 0.262865 +0.526916 -0.332787 0.262865 +0.525818 -0.32917 0.262865 +0.524036 -0.325835 0.262865 +0.521637 -0.322913 0.262865 +0.518715 -0.320514 0.262865 +0.51538 -0.318732 0.262865 +0.511763 -0.317634 0.262865 +0.508 -0.317264 0.262865 +0.504237 -0.317634 0.262865 +0.50062 -0.318732 0.262865 +0.497285 -0.320514 0.262865 +0.494363 -0.322913 0.262865 +0.491964 -0.325835 0.262865 +0.490182 -0.32917 0.262865 +0.489084 -0.332787 0.262865 +0.488714 -0.33655 0.262865 +0.489084 -0.340313 0.262865 +0.490182 -0.34393 0.262865 +0.491964 -0.347265 0.262865 +0.494363 -0.350187 0.262865 +0.497285 -0.352586 0.262865 +0.50062 -0.354368 0.262865 +0.504237 -0.355466 0.262865 +0.51478 -0.370635 0.263563 +0.508 -0.371302 0.263563 +0.521299 -0.368657 0.263563 +0.527307 -0.365446 0.263563 +0.532574 -0.361124 0.263563 +0.536896 -0.355857 0.263563 +0.540107 -0.349849 0.263563 +0.542085 -0.34333 0.263563 +0.542752 -0.33655 0.263563 +0.542085 -0.32977 0.263563 +0.540107 -0.323251 0.263563 +0.536896 -0.317243 0.263563 +0.532574 -0.311976 0.263563 +0.527307 -0.307654 0.263563 +0.521299 -0.304443 0.263563 +0.51478 -0.302465 0.263563 +0.508 -0.301798 0.263563 +0.50122 -0.302465 0.263563 +0.494701 -0.304443 0.263563 +0.488693 -0.307654 0.263563 +0.483426 -0.311976 0.263563 +0.479104 -0.317243 0.263563 +0.475893 -0.323251 0.263563 +0.473915 -0.32977 0.263563 +0.473248 -0.33655 0.263563 +0.473915 -0.34333 0.263563 +0.475893 -0.349849 0.263563 +0.479104 -0.355857 0.263563 +0.483426 -0.361124 0.263563 +0.488693 -0.365446 0.263563 +0.494701 -0.368657 0.263563 +0.50122 -0.370635 0.263563 +0.516454 -0.379053 0.269509 +0.508 -0.379886 0.269509 +0.524584 -0.376587 0.269509 +0.532076 -0.372582 0.269509 +0.538643 -0.367193 0.269509 +0.544032 -0.360626 0.269509 +0.548037 -0.353134 0.269509 +0.550503 -0.345004 0.269509 +0.551336 -0.33655 0.269509 +0.550503 -0.328096 0.269509 +0.548037 -0.319966 0.269509 +0.544032 -0.312474 0.269509 +0.538643 -0.305907 0.269509 +0.532076 -0.300518 0.269509 +0.524584 -0.296513 0.269509 +0.516454 -0.294047 0.269509 +0.508 -0.293214 0.269509 +0.499546 -0.294047 0.269509 +0.491416 -0.296513 0.269509 +0.483924 -0.300518 0.269509 +0.477357 -0.305907 0.269509 +0.471968 -0.312474 0.269509 +0.467963 -0.319966 0.269509 +0.465497 -0.328096 0.269509 +0.464664 -0.33655 0.269509 +0.465497 -0.345004 0.269509 +0.467963 -0.353134 0.269509 +0.471968 -0.360626 0.269509 +0.477357 -0.367193 0.269509 +0.483924 -0.372582 0.269509 +0.491416 -0.376587 0.269509 +0.499546 -0.379053 0.269509 +0.516454 -0.379053 0.289291 +0.508 -0.379886 0.289291 +0.524584 -0.376587 0.289291 +0.532076 -0.372582 0.289291 +0.538643 -0.367193 0.289291 +0.544032 -0.360626 0.289291 +0.548037 -0.353134 0.289291 +0.550503 -0.345004 0.289291 +0.551336 -0.33655 0.289291 +0.550503 -0.328096 0.289291 +0.548037 -0.319966 0.289291 +0.544032 -0.312474 0.289291 +0.538643 -0.305907 0.289291 +0.532076 -0.300518 0.289291 +0.524584 -0.296513 0.289291 +0.516454 -0.294047 0.289291 +0.508 -0.293214 0.289291 +0.499546 -0.294047 0.289291 +0.491416 -0.296513 0.289291 +0.483924 -0.300518 0.289291 +0.477357 -0.305907 0.289291 +0.471968 -0.312474 0.289291 +0.467963 -0.319966 0.289291 +0.465497 -0.328096 0.289291 +0.464664 -0.33655 0.289291 +0.465497 -0.345004 0.289291 +0.467963 -0.353134 0.289291 +0.471968 -0.360626 0.289291 +0.477357 -0.367193 0.289291 +0.483924 -0.372582 0.289291 +0.491416 -0.376587 0.289291 +0.499546 -0.379053 0.289291 +0.51478 -0.370635 0.295237 +0.508 -0.371302 0.295237 +0.521299 -0.368657 0.295237 +0.527307 -0.365446 0.295237 +0.532574 -0.361124 0.295237 +0.536896 -0.355857 0.295237 +0.540107 -0.349849 0.295237 +0.542085 -0.34333 0.295237 +0.542752 -0.33655 0.295237 +0.542085 -0.32977 0.295237 +0.540107 -0.323251 0.295237 +0.536896 -0.317243 0.295237 +0.532574 -0.311976 0.295237 +0.527307 -0.307654 0.295237 +0.521299 -0.304443 0.295237 +0.51478 -0.302465 0.295237 +0.508 -0.301798 0.295237 +0.50122 -0.302465 0.295237 +0.494701 -0.304443 0.295237 +0.488693 -0.307654 0.295237 +0.483426 -0.311976 0.295237 +0.479104 -0.317243 0.295237 +0.475893 -0.323251 0.295237 +0.473915 -0.32977 0.295237 +0.473248 -0.33655 0.295237 +0.473915 -0.34333 0.295237 +0.475893 -0.349849 0.295237 +0.479104 -0.355857 0.295237 +0.483426 -0.361124 0.295237 +0.488693 -0.365446 0.295237 +0.494701 -0.368657 0.295237 +0.50122 -0.370635 0.295237 +0.511763 -0.355466 0.295935 +0.508 -0.355836 0.295935 +0.51538 -0.354368 0.295935 +0.518715 -0.352586 0.295935 +0.521637 -0.350187 0.295935 +0.524036 -0.347265 0.295935 +0.525818 -0.34393 0.295935 +0.526916 -0.340313 0.295935 +0.527286 -0.33655 0.295935 +0.526916 -0.332787 0.295935 +0.525818 -0.32917 0.295935 +0.524036 -0.325835 0.295935 +0.521637 -0.322913 0.295935 +0.518715 -0.320514 0.295935 +0.51538 -0.318732 0.295935 +0.511763 -0.317634 0.295935 +0.508 -0.317264 0.295935 +0.504237 -0.317634 0.295935 +0.50062 -0.318732 0.295935 +0.497285 -0.320514 0.295935 +0.494363 -0.322913 0.295935 +0.491964 -0.325835 0.295935 +0.490182 -0.32917 0.295935 +0.489084 -0.332787 0.295935 +0.488714 -0.33655 0.295935 +0.489084 -0.340313 0.295935 +0.490182 -0.34393 0.295935 +0.491964 -0.347265 0.295935 +0.494363 -0.350187 0.295935 +0.497285 -0.352586 0.295935 +0.50062 -0.354368 0.295935 +0.504237 -0.355466 0.295935 +0.508 -0.33655 0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "UC_L_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.343362 0.3048 +0.5334 -0.343362 0.3048 +0.5334 -0.319928 0.3048 +0.45085 -0.3175 0.3048 +0.558993 -0.343365 0.303107 +0.59055 -0.340187 0.29845 +0.59055 -0.324379 0.29845 +0.559694 -0.322015 0.303107 +0.437731 -0.334414 0.296121 +0.436824 -0.332298 0.298207 +0.416759 -0.304471 0.290148 +0.413555 -0.304734 0.285426 +0.45085 -0.286766 0.301364 +0.45085 -0.289186 0.303784 +0.5334 -0.294042 0.303784 +0.5334 -0.291621 0.301364 +0.607931 -0.312778 0.29036 +0.606244 -0.314361 0.291901 +0.61595 -0.327165 0.289154 +0.61595 -0.324744 0.288185 +0.45085 -0.345814 0.303784 +0.45085 -0.348234 0.301364 +0.5334 -0.348234 0.301364 +0.5334 -0.345814 0.303784 +0.560554 -0.295796 0.299899 +0.560474 -0.298215 0.302159 +0.59055 -0.30612 0.297688 +0.59055 -0.303699 0.295873 +0.558833 -0.348235 0.299899 +0.558913 -0.345816 0.302159 +0.59055 -0.345059 0.295873 +0.59055 -0.342639 0.297688 +0.44302 -0.339609 0.300683 +0.444012 -0.341594 0.298781 +0.420557 -0.295133 0.290547 +0.419499 -0.292852 0.287691 +0.61595 -0.342519 0.288185 +0.61595 -0.340099 0.289154 +0.43815 -0.335392 0.29372 +0.41275 -0.3048 0.282802 +0.45085 -0.28575 0.298912 +0.5334 -0.290606 0.298912 +0.608585 -0.31202 0.289156 +0.61595 -0.323729 0.287205 +0.5334 -0.296494 0.3048 +0.45085 -0.291638 0.3048 +0.560587 -0.294781 0.297611 +0.59055 -0.302683 0.294034 +0.5588 -0.34925 0.297611 +0.5334 -0.34925 0.298912 +0.59055 -0.308571 0.29845 +0.560394 -0.300666 0.303107 +0.45085 -0.34925 0.298912 +0.4445 -0.342569 0.29641 +0.421555 -0.297286 0.291804 +0.441898 -0.337364 0.301399 +0.4191 -0.291991 0.285178 +0.435842 -0.330006 0.299031 +0.59055 -0.346075 0.294034 +0.604751 -0.316874 0.293248 +0.61595 -0.343535 0.287205 +0.419029 -0.304289 0.292139 +0.615292 -0.337806 0.28956 +0.615596 -0.329572 0.28956 +0.618726 -0.335751 0.286648 +0.615444 -0.333689 0.28956 +0.45085 -0.3175 0.254 +0.5334 -0.319928 0.254 +0.5334 -0.343362 0.254 +0.45085 -0.343362 0.254 +0.559694 -0.322015 0.255693 +0.59055 -0.324379 0.26035 +0.59055 -0.340187 0.26035 +0.558993 -0.343365 0.255693 +0.413555 -0.304734 0.273374 +0.416759 -0.304471 0.268652 +0.436824 -0.332298 0.260593 +0.437731 -0.334414 0.262679 +0.5334 -0.291621 0.257436 +0.5334 -0.294042 0.255016 +0.45085 -0.289186 0.255016 +0.45085 -0.286766 0.257436 +0.61595 -0.324744 0.270615 +0.61595 -0.327165 0.269646 +0.606244 -0.314361 0.266899 +0.607931 -0.312778 0.26844 +0.5334 -0.345814 0.255016 +0.5334 -0.348234 0.257436 +0.45085 -0.348234 0.257436 +0.45085 -0.345814 0.255016 +0.59055 -0.303699 0.262927 +0.59055 -0.30612 0.261112 +0.560474 -0.298215 0.256641 +0.560554 -0.295796 0.258901 +0.558913 -0.345816 0.256641 +0.558833 -0.348235 0.258901 +0.59055 -0.342639 0.261112 +0.59055 -0.345059 0.262927 +0.444012 -0.341594 0.260019 +0.44302 -0.339609 0.258117 +0.419499 -0.292852 0.271109 +0.420557 -0.295133 0.268253 +0.61595 -0.340099 0.269646 +0.61595 -0.342519 0.270615 +0.41275 -0.3048 0.275998 +0.43815 -0.335392 0.26508 +0.5334 -0.290606 0.259888 +0.45085 -0.28575 0.259888 +0.61595 -0.323729 0.271595 +0.608585 -0.31202 0.269644 +0.45085 -0.291638 0.254 +0.5334 -0.296494 0.254 +0.59055 -0.302683 0.264766 +0.560587 -0.294781 0.261189 +0.5334 -0.34925 0.259888 +0.5588 -0.34925 0.261189 +0.560394 -0.300666 0.255693 +0.59055 -0.308571 0.26035 +0.4445 -0.342569 0.26239 +0.45085 -0.34925 0.259888 +0.421555 -0.297286 0.266996 +0.441898 -0.337364 0.257401 +0.4191 -0.291991 0.273622 +0.435842 -0.330006 0.259769 +0.59055 -0.346075 0.264766 +0.604751 -0.316874 0.265552 +0.61595 -0.343535 0.271595 +0.419029 -0.304289 0.266661 +0.615292 -0.337806 0.26924 +0.615596 -0.329572 0.26924 +0.615444 -0.333689 0.26924 +0.618726 -0.335751 0.272152 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +1 0.145182 0.476687 +2 0.145182 0.498546 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +5 0.167399 0.479648 +6 0.167399 0.494394 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +4 0.155131 0.476684 +7 0.155404 0.496599 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +8 0.107991 0.485033 +9 0.107638 0.487007 +10 0.0998379 0.512965 +11 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +12 0.113091 0.52948 +13 0.113091 0.527223 +14 0.145182 0.522693 +15 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +16 0.174156 0.505216 +17 0.1735 0.503739 +18 0.177273 0.491795 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +20 0.113091 0.474399 +21 0.113091 0.472142 +22 0.145182 0.472142 +23 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.155738 0.521057 +25 0.155707 0.5188 +26 0.167399 0.511426 +27 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +28 0.155069 0.472141 +29 0.1551 0.474397 +23 0.145182 0.474399 +22 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +29 0.1551 0.474397 +28 0.155069 0.472141 +30 0.167399 0.475104 +31 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +21 0.113091 0.472142 +20 0.113091 0.474399 +32 0.110047 0.480187 +33 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +33 0.110432 0.478336 +32 0.110047 0.480187 +9 0.107638 0.487007 +8 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +11 0.0985923 0.512719 +10 0.0998379 0.512965 +34 0.101314 0.521675 +35 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +27 0.167399 0.513685 +26 0.167399 0.511426 +17 0.1735 0.503739 +16 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +31 0.167399 0.477361 +30 0.167399 0.475104 +36 0.177273 0.477473 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +15 0.145182 0.524951 +14 0.145182 0.522693 +25 0.155707 0.5188 +24 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +8 0.107991 0.485033 +11 0.0985923 0.512719 +39 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +12 0.113091 0.52948 +15 0.145182 0.524951 +41 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +16 0.174156 0.505216 +19 0.177273 0.494054 +43 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.476687 +20 0.113091 0.474399 +23 0.145182 0.474399 +1 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.145182 0.520406 +14 0.145182 0.522693 +13 0.113091 0.527223 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +24 0.155738 0.521057 +27 0.167399 0.513685 +47 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +28 0.155069 0.472141 +22 0.145182 0.472142 +49 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +4 0.155131 0.476684 +29 0.1551 0.474397 +31 0.167399 0.477361 +5 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +50 0.167399 0.50914 +26 0.167399 0.511426 +25 0.155707 0.5188 +51 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +21 0.113091 0.472142 +33 0.110432 0.478336 +53 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +45 0.113091 0.524936 +13 0.113091 0.527223 +34 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +32 0.110047 0.480187 +20 0.113091 0.474399 +0 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +35 0.100903 0.523803 +12 0.113091 0.52948 +40 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +33 0.110432 0.478336 +8 0.107991 0.485033 +38 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +9 0.107638 0.487007 +32 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +11 0.0985923 0.512719 +35 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +30 0.167399 0.475104 +28 0.155069 0.472141 +48 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +27 0.167399 0.513685 +16 0.174156 0.505216 +42 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +17 0.1735 0.503739 +26 0.167399 0.511426 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +15 0.145182 0.524951 +24 0.155738 0.521057 +46 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.476687 +23 0.145182 0.474399 +29 0.1551 0.474397 +4 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +51 0.155676 0.516514 +25 0.155707 0.5188 +14 0.145182 0.522693 +44 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +22 0.145182 0.472142 +21 0.113091 0.472142 +52 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +36 0.177273 0.477473 +30 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +34 0.101314 0.521675 +10 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +10 0.0998379 0.512965 +9 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +0 0.113091 0.476687 +3 0.113091 0.500811 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +61 0.10072 0.513134 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +3 0.113091 0.500811 +57 0.107256 0.489145 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.498546 +44 0.145182 0.520406 +45 0.113091 0.524936 +3 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +7 0.155404 0.496599 +51 0.155676 0.516514 +44 0.145182 0.520406 +2 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +50 0.167399 0.50914 +51 0.155676 0.516514 +7 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +13 0.113091 0.527223 +12 0.113091 0.52948 +35 0.100903 0.523803 +61 0.10072 0.513134 +45 0.113091 0.524936 +54 0.101702 0.519667 +34 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +61 0.10072 0.513134 +3 0.113091 0.500811 +45 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +5 0.167399 0.479648 +31 0.167399 0.477361 +37 0.177273 0.47973 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +6 0.167399 0.494394 +59 0.17292 0.501395 +50 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +18 0.177273 0.491795 +17 0.1735 0.503739 +59 0.17292 0.501395 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +65 0.177077 0.48571 +62 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +18 0.177273 0.491795 +63 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +19 0.177273 0.494054 +18 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +62 0.177017 0.481869 +37 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +37 0.177273 0.47973 +36 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +43 0.177273 0.495 +19 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +36 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +67 0.145182 0.498546 +68 0.145182 0.476687 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +71 0.167399 0.494394 +72 0.167399 0.479648 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +70 0.155404 0.496599 +73 0.155131 0.476684 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +74 0.0985923 0.512719 +75 0.0998379 0.512965 +76 0.107638 0.487007 +77 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +78 0.145182 0.524951 +79 0.145182 0.522693 +80 0.113091 0.527223 +81 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +82 0.177273 0.494054 +83 0.177273 0.491795 +84 0.1735 0.503739 +85 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +86 0.145182 0.474399 +87 0.145182 0.472142 +88 0.113091 0.472142 +89 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.167399 0.513685 +91 0.167399 0.511426 +92 0.155707 0.5188 +93 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +87 0.145182 0.472142 +86 0.145182 0.474399 +94 0.1551 0.474397 +95 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +96 0.167399 0.477361 +97 0.167399 0.475104 +95 0.155069 0.472141 +94 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +98 0.110432 0.478336 +99 0.110047 0.480187 +89 0.113091 0.474399 +88 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +77 0.107991 0.485033 +76 0.107638 0.487007 +99 0.110047 0.480187 +98 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +100 0.100903 0.523803 +101 0.101314 0.521675 +75 0.0998379 0.512965 +74 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +85 0.174156 0.505216 +84 0.1735 0.503739 +91 0.167399 0.511426 +90 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +102 0.177273 0.47973 +103 0.177273 0.477473 +97 0.167399 0.475104 +96 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +93 0.155738 0.521057 +92 0.155707 0.5188 +79 0.145182 0.522693 +78 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +104 0.0982794 0.512658 +74 0.0985923 0.512719 +77 0.107991 0.485033 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.145182 0.525898 +78 0.145182 0.524951 +81 0.113091 0.52948 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.177273 0.495 +82 0.177273 0.494054 +85 0.174156 0.505216 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.476687 +86 0.145182 0.474399 +89 0.113091 0.474399 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.113091 0.524936 +80 0.113091 0.527223 +79 0.145182 0.522693 +111 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +112 0.167399 0.514632 +90 0.167399 0.513685 +93 0.155738 0.521057 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.145182 0.471194 +87 0.145182 0.472142 +95 0.155069 0.472141 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.479648 +96 0.167399 0.477361 +94 0.1551 0.474397 +73 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +116 0.155676 0.516514 +92 0.155707 0.5188 +91 0.167399 0.511426 +117 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +118 0.110622 0.477426 +98 0.110432 0.478336 +88 0.113091 0.472142 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +101 0.101314 0.521675 +80 0.113091 0.527223 +110 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +69 0.113091 0.476687 +89 0.113091 0.474399 +99 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +107 0.113091 0.530428 +81 0.113091 0.52948 +100 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +105 0.108154 0.484121 +77 0.107991 0.485033 +98 0.110432 0.478336 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +99 0.110047 0.480187 +76 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +100 0.100903 0.523803 +74 0.0985923 0.512719 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +115 0.155056 0.471194 +95 0.155069 0.472141 +97 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +109 0.17441 0.505923 +85 0.174156 0.505216 +90 0.167399 0.513685 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +117 0.167399 0.50914 +91 0.167399 0.511426 +84 0.1735 0.503739 +125 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +113 0.155751 0.522004 +93 0.155738 0.521057 +78 0.145182 0.524951 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +73 0.155131 0.476684 +94 0.1551 0.474397 +86 0.145182 0.474399 +68 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +111 0.145182 0.520406 +79 0.145182 0.522693 +92 0.155707 0.5188 +116 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +119 0.113091 0.471194 +88 0.113091 0.472142 +87 0.145182 0.472142 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +97 0.167399 0.475104 +103 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +75 0.0998379 0.512965 +101 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +76 0.107638 0.487007 +75 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +66 0.113091 0.500811 +69 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +123 0.107256 0.489145 +127 0.10072 0.513134 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +121 0.109611 0.482282 +123 0.107256 0.489145 +66 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.500811 +110 0.113091 0.524936 +111 0.145182 0.520406 +67 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.498546 +111 0.145182 0.520406 +116 0.155676 0.516514 +70 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +70 0.155404 0.496599 +116 0.155676 0.516514 +117 0.167399 0.50914 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +101 0.101314 0.521675 +120 0.101702 0.519667 +110 0.113091 0.524936 +127 0.10072 0.513134 +100 0.100903 0.523803 +81 0.113091 0.52948 +80 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +110 0.113091 0.524936 +66 0.113091 0.500811 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +128 0.177017 0.481869 +102 0.177273 0.47973 +96 0.167399 0.477361 +72 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +117 0.167399 0.50914 +125 0.17292 0.501395 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +129 0.177136 0.48955 +125 0.17292 0.501395 +84 0.1735 0.503739 +83 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +128 0.177017 0.481869 +130 0.177077 0.48571 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +129 0.177136 0.48955 +83 0.177273 0.491795 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +83 0.177273 0.491795 +82 0.177273 0.494054 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +102 0.177273 0.47973 +128 0.177017 0.481869 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +103 0.177273 0.477473 +102 0.177273 0.47973 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +82 0.177273 0.494054 +108 0.177273 0.495 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +126 0.177273 0.476525 +103 0.177273 0.477473 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +35 0.100903 0.523803 +34 0.101314 0.521675 +101 0.101314 0.521675 +100 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +38 0.108154 0.484121 +39 0.0982794 0.512658 +104 0.0982794 0.512658 +105 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.113091 0.530428 +41 0.145182 0.525898 +106 0.145182 0.525898 +107 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.17441 0.505923 +43 0.177273 0.495 +108 0.177273 0.495 +109 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +46 0.155751 0.522004 +47 0.167399 0.514632 +112 0.167399 0.514632 +113 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.155056 0.471194 +49 0.145182 0.471194 +114 0.145182 0.471194 +115 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +52 0.113091 0.471194 +53 0.110622 0.477426 +118 0.110622 0.477426 +119 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +40 0.113091 0.530428 +107 0.113091 0.530428 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +53 0.110622 0.477426 +38 0.108154 0.484121 +105 0.108154 0.484121 +118 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +39 0.0982794 0.512658 +56 0.100748 0.524606 +122 0.100748 0.524606 +104 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +48 0.155056 0.471194 +115 0.155056 0.471194 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +47 0.167399 0.514632 +42 0.17441 0.505923 +109 0.17441 0.505923 +112 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +41 0.145182 0.525898 +46 0.155751 0.522004 +113 0.155751 0.522004 +106 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +49 0.145182 0.471194 +52 0.113091 0.471194 +119 0.113091 0.471194 +114 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +60 0.177273 0.476525 +58 0.167399 0.474156 +124 0.167399 0.474156 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +61 0.10072 0.513134 +127 0.10072 0.513134 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +35 0.100903 0.523803 +100 0.100903 0.523803 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +43 0.177273 0.495 +64 0.178352 0.483786 +131 0.178352 0.483786 +108 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +64 0.178352 0.483786 +60 0.177273 0.476525 +126 0.177273 0.476525 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +5 0.167399 0.479648 +62 0.177017 0.481869 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +64 0.178352 0.483786 +63 0.177136 0.48955 +65 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 3 +130 0.177077 0.48571 +129 0.177136 0.48955 +131 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +130 0.177077 0.48571 +128 0.177017 0.481869 +72 0.167399 0.479648 +71 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.494394 +65 0.177077 0.48571 +63 0.177136 0.48955 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +129 0.177136 0.48955 +130 0.177077 0.48571 +71 0.167399 0.494394 +kids 0 +OBJECT poly +name "UC_R_Tyre" +numvert 194 +0.508 -0.355836 -0.262865 +0.511763 -0.355466 -0.262865 +0.508 -0.33655 -0.26035 +0.51538 -0.354368 -0.262865 +0.518715 -0.352586 -0.262865 +0.521637 -0.350187 -0.262865 +0.524036 -0.347265 -0.262865 +0.525818 -0.34393 -0.262865 +0.526916 -0.340313 -0.262865 +0.527286 -0.33655 -0.262865 +0.526916 -0.332787 -0.262865 +0.525818 -0.32917 -0.262865 +0.524036 -0.325835 -0.262865 +0.521637 -0.322913 -0.262865 +0.518715 -0.320514 -0.262865 +0.51538 -0.318732 -0.262865 +0.511763 -0.317634 -0.262865 +0.508 -0.317264 -0.262865 +0.504237 -0.317634 -0.262865 +0.50062 -0.318732 -0.262865 +0.497285 -0.320514 -0.262865 +0.494363 -0.322913 -0.262865 +0.491964 -0.325835 -0.262865 +0.490182 -0.32917 -0.262865 +0.489084 -0.332787 -0.262865 +0.488714 -0.33655 -0.262865 +0.489084 -0.340313 -0.262865 +0.490182 -0.34393 -0.262865 +0.491964 -0.347265 -0.262865 +0.494363 -0.350187 -0.262865 +0.497285 -0.352586 -0.262865 +0.50062 -0.354368 -0.262865 +0.504237 -0.355466 -0.262865 +0.508 -0.371302 -0.263563 +0.51478 -0.370635 -0.263563 +0.521299 -0.368657 -0.263563 +0.527307 -0.365446 -0.263563 +0.532574 -0.361124 -0.263563 +0.536896 -0.355857 -0.263563 +0.540107 -0.349849 -0.263563 +0.542085 -0.34333 -0.263563 +0.542752 -0.33655 -0.263563 +0.542085 -0.32977 -0.263563 +0.540107 -0.323251 -0.263563 +0.536896 -0.317243 -0.263563 +0.532574 -0.311976 -0.263563 +0.527307 -0.307654 -0.263563 +0.521299 -0.304443 -0.263563 +0.51478 -0.302465 -0.263563 +0.508 -0.301798 -0.263563 +0.50122 -0.302465 -0.263563 +0.494701 -0.304443 -0.263563 +0.488693 -0.307654 -0.263563 +0.483426 -0.311976 -0.263563 +0.479104 -0.317243 -0.263563 +0.475893 -0.323251 -0.263563 +0.473915 -0.32977 -0.263563 +0.473248 -0.33655 -0.263563 +0.473915 -0.34333 -0.263563 +0.475893 -0.349849 -0.263563 +0.479104 -0.355857 -0.263563 +0.483426 -0.361124 -0.263563 +0.488693 -0.365446 -0.263563 +0.494701 -0.368657 -0.263563 +0.50122 -0.370635 -0.263563 +0.508 -0.379886 -0.269509 +0.516454 -0.379053 -0.269509 +0.524584 -0.376587 -0.269509 +0.532076 -0.372582 -0.269509 +0.538643 -0.367193 -0.269509 +0.544032 -0.360626 -0.269509 +0.548037 -0.353134 -0.269509 +0.550503 -0.345004 -0.269509 +0.551336 -0.33655 -0.269509 +0.550503 -0.328096 -0.269509 +0.548037 -0.319966 -0.269509 +0.544032 -0.312474 -0.269509 +0.538643 -0.305907 -0.269509 +0.532076 -0.300518 -0.269509 +0.524584 -0.296513 -0.269509 +0.516454 -0.294047 -0.269509 +0.508 -0.293214 -0.269509 +0.499546 -0.294047 -0.269509 +0.491416 -0.296513 -0.269509 +0.483924 -0.300518 -0.269509 +0.477357 -0.305907 -0.269509 +0.471968 -0.312474 -0.269509 +0.467963 -0.319966 -0.269509 +0.465497 -0.328096 -0.269509 +0.464664 -0.33655 -0.269509 +0.465497 -0.345004 -0.269509 +0.467963 -0.353134 -0.269509 +0.471968 -0.360626 -0.269509 +0.477357 -0.367193 -0.269509 +0.483924 -0.372582 -0.269509 +0.491416 -0.376587 -0.269509 +0.499546 -0.379053 -0.269509 +0.508 -0.379886 -0.289291 +0.516454 -0.379053 -0.289291 +0.524584 -0.376587 -0.289291 +0.532076 -0.372582 -0.289291 +0.538643 -0.367193 -0.289291 +0.544032 -0.360626 -0.289291 +0.548037 -0.353134 -0.289291 +0.550503 -0.345004 -0.289291 +0.551336 -0.33655 -0.289291 +0.550503 -0.328096 -0.289291 +0.548037 -0.319966 -0.289291 +0.544032 -0.312474 -0.289291 +0.538643 -0.305907 -0.289291 +0.532076 -0.300518 -0.289291 +0.524584 -0.296513 -0.289291 +0.516454 -0.294047 -0.289291 +0.508 -0.293214 -0.289291 +0.499546 -0.294047 -0.289291 +0.491416 -0.296513 -0.289291 +0.483924 -0.300518 -0.289291 +0.477357 -0.305907 -0.289291 +0.471968 -0.312474 -0.289291 +0.467963 -0.319966 -0.289291 +0.465497 -0.328096 -0.289291 +0.464664 -0.33655 -0.289291 +0.465497 -0.345004 -0.289291 +0.467963 -0.353134 -0.289291 +0.471968 -0.360626 -0.289291 +0.477357 -0.367193 -0.289291 +0.483924 -0.372582 -0.289291 +0.491416 -0.376587 -0.289291 +0.499546 -0.379053 -0.289291 +0.508 -0.371302 -0.295237 +0.51478 -0.370635 -0.295237 +0.521299 -0.368657 -0.295237 +0.527307 -0.365446 -0.295237 +0.532574 -0.361124 -0.295237 +0.536896 -0.355857 -0.295237 +0.540107 -0.349849 -0.295237 +0.542085 -0.34333 -0.295237 +0.542752 -0.33655 -0.295237 +0.542085 -0.32977 -0.295237 +0.540107 -0.323251 -0.295237 +0.536896 -0.317243 -0.295237 +0.532574 -0.311976 -0.295237 +0.527307 -0.307654 -0.295237 +0.521299 -0.304443 -0.295237 +0.51478 -0.302465 -0.295237 +0.508 -0.301798 -0.295237 +0.50122 -0.302465 -0.295237 +0.494701 -0.304443 -0.295237 +0.488693 -0.307654 -0.295237 +0.483426 -0.311976 -0.295237 +0.479104 -0.317243 -0.295237 +0.475893 -0.323251 -0.295237 +0.473915 -0.32977 -0.295237 +0.473248 -0.33655 -0.295237 +0.473915 -0.34333 -0.295237 +0.475893 -0.349849 -0.295237 +0.479104 -0.355857 -0.295237 +0.483426 -0.361124 -0.295237 +0.488693 -0.365446 -0.295237 +0.494701 -0.368657 -0.295237 +0.50122 -0.370635 -0.295237 +0.508 -0.355836 -0.295935 +0.511763 -0.355466 -0.295935 +0.51538 -0.354368 -0.295935 +0.518715 -0.352586 -0.295935 +0.521637 -0.350187 -0.295935 +0.524036 -0.347265 -0.295935 +0.525818 -0.34393 -0.295935 +0.526916 -0.340313 -0.295935 +0.527286 -0.33655 -0.295935 +0.526916 -0.332787 -0.295935 +0.525818 -0.32917 -0.295935 +0.524036 -0.325835 -0.295935 +0.521637 -0.322913 -0.295935 +0.518715 -0.320514 -0.295935 +0.51538 -0.318732 -0.295935 +0.511763 -0.317634 -0.295935 +0.508 -0.317264 -0.295935 +0.504237 -0.317634 -0.295935 +0.50062 -0.318732 -0.295935 +0.497285 -0.320514 -0.295935 +0.494363 -0.322913 -0.295935 +0.491964 -0.325835 -0.295935 +0.490182 -0.32917 -0.295935 +0.489084 -0.332787 -0.295935 +0.488714 -0.33655 -0.295935 +0.489084 -0.340313 -0.295935 +0.490182 -0.34393 -0.295935 +0.491964 -0.347265 -0.295935 +0.494363 -0.350187 -0.295935 +0.497285 -0.352586 -0.295935 +0.50062 -0.354368 -0.295935 +0.504237 -0.355466 -0.295935 +0.508 -0.33655 -0.29845 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +32 0 0 +0 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +34 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +35 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +33 0 0 +0 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +66 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +67 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +65 0 0 +33 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +98 0 0 +66 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +99 0 0 +67 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +97 0 0 +65 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +130 0 0 +98 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +131 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +129 0 0 +97 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +161 0 0 +162 0 0 +130 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +162 0 0 +163 0 0 +131 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +163 0 0 +164 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +164 0 0 +165 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +165 0 0 +166 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +166 0 0 +167 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +167 0 0 +168 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +168 0 0 +169 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +169 0 0 +170 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +170 0 0 +171 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +171 0 0 +172 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +172 0 0 +173 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +173 0 0 +174 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +174 0 0 +175 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +175 0 0 +176 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +176 0 0 +177 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +177 0 0 +178 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +178 0 0 +179 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +179 0 0 +180 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +180 0 0 +181 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +181 0 0 +182 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +182 0 0 +183 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +183 0 0 +184 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +184 0 0 +185 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +185 0 0 +186 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +186 0 0 +187 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +187 0 0 +188 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +188 0 0 +189 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +189 0 0 +190 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +190 0 0 +191 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +191 0 0 +192 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +192 0 0 +161 0 0 +129 0 0 +160 0 0 +SURF 0x10 +mat 2 +refs 3 +192 0 0 +191 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +191 0 0 +190 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +190 0 0 +189 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +189 0 0 +188 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +188 0 0 +187 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +187 0 0 +186 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +186 0 0 +185 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +185 0 0 +184 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +184 0 0 +183 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +183 0 0 +182 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +182 0 0 +181 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +181 0 0 +180 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +180 0 0 +179 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +179 0 0 +178 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +178 0 0 +177 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +177 0 0 +176 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +176 0 0 +175 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +175 0 0 +174 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +174 0 0 +173 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +173 0 0 +172 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +172 0 0 +171 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +171 0 0 +170 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +170 0 0 +169 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +169 0 0 +168 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +168 0 0 +167 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +167 0 0 +166 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +166 0 0 +165 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +165 0 0 +164 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +164 0 0 +163 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +163 0 0 +162 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +162 0 0 +161 0 0 +193 0 0 +SURF 0x10 +mat 2 +refs 3 +161 0 0 +192 0 0 +193 0 0 +kids 0 +OBJECT poly +name "UC_R_Spat" +texture "Rascal.rgb" +numvert 132 +0.45085 -0.3175 -0.3048 +0.5334 -0.319928 -0.3048 +0.5334 -0.343362 -0.3048 +0.45085 -0.343362 -0.3048 +0.559694 -0.322015 -0.303107 +0.59055 -0.324379 -0.29845 +0.59055 -0.340187 -0.29845 +0.558993 -0.343365 -0.303107 +0.413555 -0.304734 -0.285426 +0.416759 -0.304471 -0.290148 +0.436824 -0.332298 -0.298207 +0.437731 -0.334414 -0.296121 +0.5334 -0.291621 -0.301364 +0.5334 -0.294042 -0.303784 +0.45085 -0.289186 -0.303784 +0.45085 -0.286766 -0.301364 +0.61595 -0.324744 -0.288185 +0.61595 -0.327165 -0.289154 +0.606244 -0.314361 -0.291901 +0.607931 -0.312778 -0.29036 +0.5334 -0.345814 -0.303784 +0.5334 -0.348234 -0.301364 +0.45085 -0.348234 -0.301364 +0.45085 -0.345814 -0.303784 +0.59055 -0.303699 -0.295873 +0.59055 -0.30612 -0.297688 +0.560474 -0.298215 -0.302159 +0.560554 -0.295796 -0.299899 +0.558913 -0.345816 -0.302159 +0.558833 -0.348235 -0.299899 +0.59055 -0.342639 -0.297688 +0.59055 -0.345059 -0.295873 +0.444012 -0.341594 -0.298781 +0.44302 -0.339609 -0.300683 +0.419499 -0.292852 -0.287691 +0.420557 -0.295133 -0.290547 +0.61595 -0.340099 -0.289154 +0.61595 -0.342519 -0.288185 +0.41275 -0.3048 -0.282802 +0.43815 -0.335392 -0.29372 +0.5334 -0.290606 -0.298912 +0.45085 -0.28575 -0.298912 +0.61595 -0.323729 -0.287205 +0.608585 -0.31202 -0.289156 +0.45085 -0.291638 -0.3048 +0.5334 -0.296494 -0.3048 +0.59055 -0.302683 -0.294034 +0.560587 -0.294781 -0.297611 +0.5334 -0.34925 -0.298912 +0.5588 -0.34925 -0.297611 +0.560394 -0.300666 -0.303107 +0.59055 -0.308571 -0.29845 +0.4445 -0.342569 -0.29641 +0.45085 -0.34925 -0.298912 +0.421555 -0.297286 -0.291804 +0.441898 -0.337364 -0.301399 +0.4191 -0.291991 -0.285178 +0.435842 -0.330006 -0.299031 +0.59055 -0.346075 -0.294034 +0.604751 -0.316874 -0.293248 +0.61595 -0.343535 -0.287205 +0.419029 -0.304289 -0.292139 +0.615292 -0.337806 -0.28956 +0.615596 -0.329572 -0.28956 +0.615444 -0.333689 -0.28956 +0.618726 -0.335751 -0.286648 +0.45085 -0.343362 -0.254 +0.5334 -0.343362 -0.254 +0.5334 -0.319928 -0.254 +0.45085 -0.3175 -0.254 +0.558993 -0.343365 -0.255693 +0.59055 -0.340187 -0.26035 +0.59055 -0.324379 -0.26035 +0.559694 -0.322015 -0.255693 +0.437731 -0.334414 -0.262679 +0.436824 -0.332298 -0.260593 +0.416759 -0.304471 -0.268652 +0.413555 -0.304734 -0.273374 +0.45085 -0.286766 -0.257436 +0.45085 -0.289186 -0.255016 +0.5334 -0.294042 -0.255016 +0.5334 -0.291621 -0.257436 +0.607931 -0.312778 -0.26844 +0.606244 -0.314361 -0.266899 +0.61595 -0.327165 -0.269646 +0.61595 -0.324744 -0.270615 +0.45085 -0.345814 -0.255016 +0.45085 -0.348234 -0.257436 +0.5334 -0.348234 -0.257436 +0.5334 -0.345814 -0.255016 +0.560554 -0.295796 -0.258901 +0.560474 -0.298215 -0.256641 +0.59055 -0.30612 -0.261112 +0.59055 -0.303699 -0.262927 +0.558833 -0.348235 -0.258901 +0.558913 -0.345816 -0.256641 +0.59055 -0.345059 -0.262927 +0.59055 -0.342639 -0.261112 +0.44302 -0.339609 -0.258117 +0.444012 -0.341594 -0.260019 +0.420557 -0.295133 -0.268253 +0.419499 -0.292852 -0.271109 +0.61595 -0.342519 -0.270615 +0.61595 -0.340099 -0.269646 +0.43815 -0.335392 -0.26508 +0.41275 -0.3048 -0.275998 +0.45085 -0.28575 -0.259888 +0.5334 -0.290606 -0.259888 +0.608585 -0.31202 -0.269644 +0.61595 -0.323729 -0.271595 +0.5334 -0.296494 -0.254 +0.45085 -0.291638 -0.254 +0.560587 -0.294781 -0.261189 +0.59055 -0.302683 -0.264766 +0.5588 -0.34925 -0.261189 +0.5334 -0.34925 -0.259888 +0.59055 -0.308571 -0.26035 +0.560394 -0.300666 -0.255693 +0.45085 -0.34925 -0.259888 +0.4445 -0.342569 -0.26239 +0.421555 -0.297286 -0.266996 +0.441898 -0.337364 -0.257401 +0.4191 -0.291991 -0.273622 +0.435842 -0.330006 -0.259769 +0.59055 -0.346075 -0.264766 +0.604751 -0.316874 -0.265552 +0.61595 -0.343535 -0.271595 +0.419029 -0.304289 -0.266661 +0.615292 -0.337806 -0.26924 +0.615596 -0.329572 -0.26924 +0.618726 -0.335751 -0.272152 +0.615444 -0.333689 -0.26924 +numsurf 145 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +1 0.145182 0.498546 +2 0.145182 0.476687 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +5 0.167399 0.494394 +6 0.167399 0.479648 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +4 0.155404 0.496599 +7 0.155131 0.476684 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +8 0.0985923 0.512719 +9 0.0998379 0.512965 +10 0.107638 0.487007 +11 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +12 0.145182 0.524951 +13 0.145182 0.522693 +14 0.113091 0.527223 +15 0.113091 0.52948 +SURF 0x10 +mat 1 +refs 4 +16 0.177273 0.494054 +17 0.177273 0.491795 +18 0.1735 0.503739 +19 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +20 0.145182 0.474399 +21 0.145182 0.472142 +22 0.113091 0.472142 +23 0.113091 0.474399 +SURF 0x10 +mat 1 +refs 4 +24 0.167399 0.513685 +25 0.167399 0.511426 +26 0.155707 0.5188 +27 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +21 0.145182 0.472142 +20 0.145182 0.474399 +28 0.1551 0.474397 +29 0.155069 0.472141 +SURF 0x10 +mat 1 +refs 4 +30 0.167399 0.477361 +31 0.167399 0.475104 +29 0.155069 0.472141 +28 0.1551 0.474397 +SURF 0x10 +mat 1 +refs 4 +32 0.110432 0.478336 +33 0.110047 0.480187 +23 0.113091 0.474399 +22 0.113091 0.472142 +SURF 0x10 +mat 1 +refs 4 +11 0.107991 0.485033 +10 0.107638 0.487007 +33 0.110047 0.480187 +32 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +34 0.100903 0.523803 +35 0.101314 0.521675 +9 0.0998379 0.512965 +8 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +19 0.174156 0.505216 +18 0.1735 0.503739 +25 0.167399 0.511426 +24 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +36 0.177273 0.47973 +37 0.177273 0.477473 +31 0.167399 0.475104 +30 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +27 0.155738 0.521057 +26 0.155707 0.5188 +13 0.145182 0.522693 +12 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +38 0.0982794 0.512658 +8 0.0985923 0.512719 +11 0.107991 0.485033 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +40 0.145182 0.525898 +12 0.145182 0.524951 +15 0.113091 0.52948 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +42 0.177273 0.495 +16 0.177273 0.494054 +19 0.174156 0.505216 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +2 0.145182 0.476687 +20 0.145182 0.474399 +23 0.113091 0.474399 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +44 0.113091 0.524936 +14 0.113091 0.527223 +13 0.145182 0.522693 +45 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +46 0.167399 0.514632 +24 0.167399 0.513685 +27 0.155738 0.521057 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +48 0.145182 0.471194 +21 0.145182 0.472142 +29 0.155069 0.472141 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +6 0.167399 0.479648 +30 0.167399 0.477361 +28 0.1551 0.474397 +7 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +50 0.155676 0.516514 +26 0.155707 0.5188 +25 0.167399 0.511426 +51 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +52 0.110622 0.477426 +32 0.110432 0.478336 +22 0.113091 0.472142 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +54 0.101702 0.519667 +35 0.101314 0.521675 +14 0.113091 0.527223 +44 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +3 0.113091 0.476687 +23 0.113091 0.474399 +33 0.110047 0.480187 +55 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +41 0.113091 0.530428 +15 0.113091 0.52948 +34 0.100903 0.523803 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +39 0.108154 0.484121 +11 0.107991 0.485033 +32 0.110432 0.478336 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +55 0.109611 0.482282 +33 0.110047 0.480187 +10 0.107638 0.487007 +57 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 4 +56 0.100748 0.524606 +34 0.100903 0.523803 +8 0.0985923 0.512719 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +49 0.155056 0.471194 +29 0.155069 0.472141 +31 0.167399 0.475104 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +43 0.17441 0.505923 +19 0.174156 0.505216 +24 0.167399 0.513685 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +51 0.167399 0.50914 +25 0.167399 0.511426 +18 0.1735 0.503739 +59 0.17292 0.501395 +SURF 0x10 +mat 1 +refs 4 +47 0.155751 0.522004 +27 0.155738 0.521057 +12 0.145182 0.524951 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +7 0.155131 0.476684 +28 0.1551 0.474397 +20 0.145182 0.474399 +2 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +45 0.145182 0.520406 +13 0.145182 0.522693 +26 0.155707 0.5188 +50 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +53 0.113091 0.471194 +22 0.113091 0.472142 +21 0.145182 0.472142 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +58 0.167399 0.474156 +31 0.167399 0.475104 +37 0.177273 0.477473 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +61 0.10072 0.513134 +9 0.0998379 0.512965 +35 0.101314 0.521675 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +57 0.107256 0.489145 +10 0.107638 0.487007 +9 0.0998379 0.512965 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +0 0.113091 0.500811 +3 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 3 +57 0.107256 0.489145 +61 0.10072 0.513134 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 3 +55 0.109611 0.482282 +57 0.107256 0.489145 +0 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +0 0.113091 0.500811 +44 0.113091 0.524936 +45 0.145182 0.520406 +1 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +1 0.145182 0.498546 +45 0.145182 0.520406 +50 0.155676 0.516514 +4 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +4 0.155404 0.496599 +50 0.155676 0.516514 +51 0.167399 0.50914 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 7 +35 0.101314 0.521675 +54 0.101702 0.519667 +44 0.113091 0.524936 +61 0.10072 0.513134 +34 0.100903 0.523803 +15 0.113091 0.52948 +14 0.113091 0.527223 +SURF 0x10 +mat 1 +refs 3 +44 0.113091 0.524936 +0 0.113091 0.500811 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +62 0.177017 0.481869 +36 0.177273 0.47973 +30 0.167399 0.477361 +6 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 3 +51 0.167399 0.50914 +59 0.17292 0.501395 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +63 0.177136 0.48955 +59 0.17292 0.501395 +18 0.1735 0.503739 +17 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +62 0.177017 0.481869 +64 0.177077 0.48571 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +63 0.177136 0.48955 +17 0.177273 0.491795 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +17 0.177273 0.491795 +16 0.177273 0.494054 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +36 0.177273 0.47973 +62 0.177017 0.481869 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +37 0.177273 0.477473 +36 0.177273 0.47973 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +16 0.177273 0.494054 +42 0.177273 0.495 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +60 0.177273 0.476525 +37 0.177273 0.477473 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +67 0.145182 0.476687 +68 0.145182 0.498546 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +71 0.167399 0.479648 +72 0.167399 0.494394 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +70 0.155131 0.476684 +73 0.155404 0.496599 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +74 0.107991 0.485033 +75 0.107638 0.487007 +76 0.0998379 0.512965 +77 0.0985923 0.512719 +SURF 0x10 +mat 1 +refs 4 +78 0.113091 0.52948 +79 0.113091 0.527223 +80 0.145182 0.522693 +81 0.145182 0.524951 +SURF 0x10 +mat 1 +refs 4 +82 0.174156 0.505216 +83 0.1735 0.503739 +84 0.177273 0.491795 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 4 +86 0.113091 0.474399 +87 0.113091 0.472142 +88 0.145182 0.472142 +89 0.145182 0.474399 +SURF 0x10 +mat 1 +refs 4 +90 0.155738 0.521057 +91 0.155707 0.5188 +92 0.167399 0.511426 +93 0.167399 0.513685 +SURF 0x10 +mat 1 +refs 4 +94 0.155069 0.472141 +95 0.1551 0.474397 +89 0.145182 0.474399 +88 0.145182 0.472142 +SURF 0x10 +mat 1 +refs 4 +95 0.1551 0.474397 +94 0.155069 0.472141 +96 0.167399 0.475104 +97 0.167399 0.477361 +SURF 0x10 +mat 1 +refs 4 +87 0.113091 0.472142 +86 0.113091 0.474399 +98 0.110047 0.480187 +99 0.110432 0.478336 +SURF 0x10 +mat 1 +refs 4 +99 0.110432 0.478336 +98 0.110047 0.480187 +75 0.107638 0.487007 +74 0.107991 0.485033 +SURF 0x10 +mat 1 +refs 4 +77 0.0985923 0.512719 +76 0.0998379 0.512965 +100 0.101314 0.521675 +101 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +93 0.167399 0.513685 +92 0.167399 0.511426 +83 0.1735 0.503739 +82 0.174156 0.505216 +SURF 0x10 +mat 1 +refs 4 +97 0.167399 0.477361 +96 0.167399 0.475104 +102 0.177273 0.477473 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 4 +81 0.145182 0.524951 +80 0.145182 0.522693 +91 0.155707 0.5188 +90 0.155738 0.521057 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +74 0.107991 0.485033 +77 0.0985923 0.512719 +105 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +78 0.113091 0.52948 +81 0.145182 0.524951 +107 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +82 0.174156 0.505216 +85 0.177273 0.494054 +109 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +66 0.113091 0.476687 +86 0.113091 0.474399 +89 0.145182 0.474399 +67 0.145182 0.476687 +SURF 0x10 +mat 1 +refs 4 +110 0.145182 0.520406 +80 0.145182 0.522693 +79 0.113091 0.527223 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +90 0.155738 0.521057 +93 0.167399 0.513685 +113 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +94 0.155069 0.472141 +88 0.145182 0.472142 +115 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +70 0.155131 0.476684 +95 0.1551 0.474397 +97 0.167399 0.477361 +71 0.167399 0.479648 +SURF 0x10 +mat 1 +refs 4 +116 0.167399 0.50914 +92 0.167399 0.511426 +91 0.155707 0.5188 +117 0.155676 0.516514 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +87 0.113091 0.472142 +99 0.110432 0.478336 +119 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +111 0.113091 0.524936 +79 0.113091 0.527223 +100 0.101314 0.521675 +120 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +121 0.109611 0.482282 +98 0.110047 0.480187 +86 0.113091 0.474399 +66 0.113091 0.476687 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +101 0.100903 0.523803 +78 0.113091 0.52948 +106 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +99 0.110432 0.478336 +74 0.107991 0.485033 +104 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +123 0.107256 0.489145 +75 0.107638 0.487007 +98 0.110047 0.480187 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +77 0.0985923 0.512719 +101 0.100903 0.523803 +122 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +96 0.167399 0.475104 +94 0.155069 0.472141 +114 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +93 0.167399 0.513685 +82 0.174156 0.505216 +108 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +125 0.17292 0.501395 +83 0.1735 0.503739 +92 0.167399 0.511426 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +81 0.145182 0.524951 +90 0.155738 0.521057 +112 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +67 0.145182 0.476687 +89 0.145182 0.474399 +95 0.1551 0.474397 +70 0.155131 0.476684 +SURF 0x10 +mat 1 +refs 4 +117 0.155676 0.516514 +91 0.155707 0.5188 +80 0.145182 0.522693 +110 0.145182 0.520406 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +88 0.145182 0.472142 +87 0.113091 0.472142 +118 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +102 0.177273 0.477473 +96 0.167399 0.475104 +124 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +100 0.101314 0.521675 +76 0.0998379 0.512965 +127 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +76 0.0998379 0.512965 +75 0.107638 0.487007 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +66 0.113091 0.476687 +69 0.113091 0.500811 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +127 0.10072 0.513134 +123 0.107256 0.489145 +SURF 0x10 +mat 1 +refs 3 +69 0.113091 0.500811 +123 0.107256 0.489145 +121 0.109611 0.482282 +SURF 0x10 +mat 1 +refs 4 +68 0.145182 0.498546 +110 0.145182 0.520406 +111 0.113091 0.524936 +69 0.113091 0.500811 +SURF 0x10 +mat 1 +refs 4 +73 0.155404 0.496599 +117 0.155676 0.516514 +110 0.145182 0.520406 +68 0.145182 0.498546 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +116 0.167399 0.50914 +117 0.155676 0.516514 +73 0.155404 0.496599 +SURF 0x10 +mat 1 +refs 7 +79 0.113091 0.527223 +78 0.113091 0.52948 +101 0.100903 0.523803 +127 0.10072 0.513134 +111 0.113091 0.524936 +120 0.101702 0.519667 +100 0.101314 0.521675 +SURF 0x10 +mat 1 +refs 3 +127 0.10072 0.513134 +69 0.113091 0.500811 +111 0.113091 0.524936 +SURF 0x10 +mat 1 +refs 4 +71 0.167399 0.479648 +97 0.167399 0.477361 +103 0.177273 0.47973 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +72 0.167399 0.494394 +125 0.17292 0.501395 +116 0.167399 0.50914 +SURF 0x10 +mat 1 +refs 4 +84 0.177273 0.491795 +83 0.1735 0.503739 +125 0.17292 0.501395 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +131 0.177077 0.48571 +128 0.177017 0.481869 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +84 0.177273 0.491795 +129 0.177136 0.48955 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +85 0.177273 0.494054 +84 0.177273 0.491795 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +128 0.177017 0.481869 +103 0.177273 0.47973 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +103 0.177273 0.47973 +102 0.177273 0.477473 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +109 0.177273 0.495 +85 0.177273 0.494054 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +102 0.177273 0.477473 +126 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +101 0.100903 0.523803 +100 0.101314 0.521675 +35 0.101314 0.521675 +34 0.100903 0.523803 +SURF 0x10 +mat 1 +refs 4 +104 0.108154 0.484121 +105 0.0982794 0.512658 +38 0.0982794 0.512658 +39 0.108154 0.484121 +SURF 0x10 +mat 1 +refs 4 +106 0.113091 0.530428 +107 0.145182 0.525898 +40 0.145182 0.525898 +41 0.113091 0.530428 +SURF 0x10 +mat 1 +refs 4 +108 0.17441 0.505923 +109 0.177273 0.495 +42 0.177273 0.495 +43 0.17441 0.505923 +SURF 0x10 +mat 1 +refs 4 +112 0.155751 0.522004 +113 0.167399 0.514632 +46 0.167399 0.514632 +47 0.155751 0.522004 +SURF 0x10 +mat 1 +refs 4 +114 0.155056 0.471194 +115 0.145182 0.471194 +48 0.145182 0.471194 +49 0.155056 0.471194 +SURF 0x10 +mat 1 +refs 4 +118 0.113091 0.471194 +119 0.110622 0.477426 +52 0.110622 0.477426 +53 0.113091 0.471194 +SURF 0x10 +mat 1 +refs 4 +122 0.100748 0.524606 +106 0.113091 0.530428 +41 0.113091 0.530428 +56 0.100748 0.524606 +SURF 0x10 +mat 1 +refs 4 +119 0.110622 0.477426 +104 0.108154 0.484121 +39 0.108154 0.484121 +52 0.110622 0.477426 +SURF 0x10 +mat 1 +refs 4 +105 0.0982794 0.512658 +122 0.100748 0.524606 +56 0.100748 0.524606 +38 0.0982794 0.512658 +SURF 0x10 +mat 1 +refs 4 +124 0.167399 0.474156 +114 0.155056 0.471194 +49 0.155056 0.471194 +58 0.167399 0.474156 +SURF 0x10 +mat 1 +refs 4 +113 0.167399 0.514632 +108 0.17441 0.505923 +43 0.17441 0.505923 +46 0.167399 0.514632 +SURF 0x10 +mat 1 +refs 4 +107 0.145182 0.525898 +112 0.155751 0.522004 +47 0.155751 0.522004 +40 0.145182 0.525898 +SURF 0x10 +mat 1 +refs 4 +115 0.145182 0.471194 +118 0.113091 0.471194 +53 0.113091 0.471194 +48 0.145182 0.471194 +SURF 0x10 +mat 1 +refs 4 +126 0.177273 0.476525 +124 0.167399 0.474156 +58 0.167399 0.474156 +60 0.177273 0.476525 +SURF 0x10 +mat 1 +refs 4 +120 0.101702 0.519667 +127 0.10072 0.513134 +61 0.10072 0.513134 +54 0.101702 0.519667 +SURF 0x10 +mat 1 +refs 4 +127 0.10072 0.513134 +101 0.100903 0.523803 +34 0.100903 0.523803 +61 0.10072 0.513134 +SURF 0x10 +mat 1 +refs 4 +109 0.177273 0.495 +130 0.178352 0.483786 +65 0.178352 0.483786 +42 0.177273 0.495 +SURF 0x10 +mat 1 +refs 4 +130 0.178352 0.483786 +126 0.177273 0.476525 +60 0.177273 0.476525 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 4 +64 0.177077 0.48571 +62 0.177017 0.481869 +6 0.167399 0.479648 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 3 +64 0.177077 0.48571 +63 0.177136 0.48955 +65 0.178352 0.483786 +SURF 0x10 +mat 1 +refs 3 +130 0.178352 0.483786 +129 0.177136 0.48955 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +71 0.167399 0.479648 +128 0.177017 0.481869 +131 0.177077 0.48571 +SURF 0x10 +mat 1 +refs 4 +59 0.17292 0.501395 +63 0.177136 0.48955 +64 0.177077 0.48571 +5 0.167399 0.494394 +SURF 0x10 +mat 1 +refs 4 +72 0.167399 0.494394 +131 0.177077 0.48571 +129 0.177136 0.48955 +125 0.17292 0.501395 +kids 0 +OBJECT poly +name "UC_tailstrut" +numvert 52 +1.74331 -0.0390927 -0.00635 +1.74331 -0.0390927 0.00635 +1.84348 -0.110835 0.00635 +1.84348 -0.110835 -0.00635 +1.85568 -0.129178 -0.00635 +1.85568 -0.129178 -0.00381 +1.85448 -0.132598 -0.00381 +1.85448 -0.132598 -0.00635 +1.84497 -0.119312 -0.00635 +1.84497 -0.119312 -0.00381 +1.84016 -0.116252 -0.00635 +1.7399 -0.04445 -0.00635 +1.7399 -0.04445 0.00635 +1.84016 -0.116252 0.00635 +1.84838 -0.113955 0.00381 +1.84838 -0.113955 -0.00381 +1.84838 -0.113955 -0.00635 +1.84497 -0.119312 0.00635 +1.84838 -0.113955 0.00635 +1.84497 -0.119312 0.00381 +1.85568 -0.129178 0.00381 +1.85568 -0.129178 0.00635 +1.85448 -0.132598 0.00635 +1.85448 -0.132598 0.00381 +1.85132 -0.119264 -0.00381 +1.85132 -0.119264 -0.00635 +1.85132 -0.119264 0.00635 +1.85132 -0.119264 0.00381 +1.85134 -0.121654 -0.00381 +1.85134 -0.121654 -0.00635 +1.84499 -0.121702 -0.00381 +1.84499 -0.121702 -0.00635 +1.85134 -0.121654 0.00635 +1.85134 -0.121654 0.00381 +1.84499 -0.121702 0.00635 +1.84499 -0.121702 0.00381 +1.85136 -0.123886 -0.00381 +1.85136 -0.123886 -0.00635 +1.84628 -0.127702 -0.00381 +1.84628 -0.127702 -0.00635 +1.85136 -0.123886 0.00635 +1.85136 -0.123886 0.00381 +1.84628 -0.127702 0.00635 +1.84628 -0.127702 0.00381 +1.85372 -0.127028 -0.00381 +1.85372 -0.127028 -0.00635 +1.85159 -0.133012 -0.00381 +1.85159 -0.133012 -0.00635 +1.85372 -0.127028 0.00635 +1.85372 -0.127028 0.00381 +1.85159 -0.133012 0.00635 +1.85159 -0.133012 0.00381 +numsurf 54 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +11 0 0 +12 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +1 0 0 +12 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +14 0 0 +15 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +12 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +3 0 0 +16 0 0 +8 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 4 +13 0 0 +17 0 0 +18 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +2 0 0 +18 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +16 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +19 0 0 +13 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +17 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +20 0 0 +21 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 4 +15 0 0 +14 0 0 +19 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 4 +16 0 0 +15 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 3 +15 0 0 +9 0 0 +24 0 0 +SURF 0x10 +mat 1 +refs 3 +8 0 0 +16 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +14 0 0 +18 0 0 +26 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 3 +18 0 0 +17 0 0 +26 0 0 +SURF 0x10 +mat 1 +refs 3 +19 0 0 +14 0 0 +27 0 0 +SURF 0x10 +mat 1 +refs 4 +25 0 0 +24 0 0 +28 0 0 +29 0 0 +SURF 0x10 +mat 1 +refs 4 +24 0 0 +9 0 0 +30 0 0 +28 0 0 +SURF 0x10 +mat 1 +refs 4 +9 0 0 +8 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +25 0 0 +29 0 0 +31 0 0 +SURF 0x10 +mat 1 +refs 4 +27 0 0 +26 0 0 +32 0 0 +33 0 0 +SURF 0x10 +mat 1 +refs 4 +26 0 0 +17 0 0 +34 0 0 +32 0 0 +SURF 0x10 +mat 1 +refs 4 +17 0 0 +19 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 1 +refs 4 +19 0 0 +27 0 0 +33 0 0 +35 0 0 +SURF 0x10 +mat 1 +refs 4 +29 0 0 +28 0 0 +36 0 0 +37 0 0 +SURF 0x10 +mat 1 +refs 4 +28 0 0 +30 0 0 +38 0 0 +36 0 0 +SURF 0x10 +mat 1 +refs 4 +30 0 0 +31 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 1 +refs 4 +31 0 0 +29 0 0 +37 0 0 +39 0 0 +SURF 0x10 +mat 1 +refs 4 +33 0 0 +32 0 0 +40 0 0 +41 0 0 +SURF 0x10 +mat 1 +refs 4 +32 0 0 +34 0 0 +42 0 0 +40 0 0 +SURF 0x10 +mat 1 +refs 4 +34 0 0 +35 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 1 +refs 4 +35 0 0 +33 0 0 +41 0 0 +43 0 0 +SURF 0x10 +mat 1 +refs 4 +37 0 0 +36 0 0 +44 0 0 +45 0 0 +SURF 0x10 +mat 1 +refs 4 +36 0 0 +38 0 0 +46 0 0 +44 0 0 +SURF 0x10 +mat 1 +refs 4 +38 0 0 +39 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 1 +refs 4 +39 0 0 +37 0 0 +45 0 0 +47 0 0 +SURF 0x10 +mat 1 +refs 4 +41 0 0 +40 0 0 +48 0 0 +49 0 0 +SURF 0x10 +mat 1 +refs 4 +40 0 0 +42 0 0 +50 0 0 +48 0 0 +SURF 0x10 +mat 1 +refs 4 +42 0 0 +43 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 1 +refs 4 +43 0 0 +41 0 0 +49 0 0 +51 0 0 +SURF 0x10 +mat 1 +refs 4 +45 0 0 +44 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 4 +44 0 0 +46 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +46 0 0 +47 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 4 +47 0 0 +45 0 0 +4 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +49 0 0 +48 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 1 +refs 4 +48 0 0 +50 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 4 +50 0 0 +51 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 4 +51 0 0 +49 0 0 +20 0 0 +23 0 0 +kids 0 +OBJECT poly +name "UC_Tailwheel" +numvert 194 +1.8534 -0.130887 -0.00423333 +1.85448 -0.136291 -0.00367436 +1.8534 -0.136397 -0.00367436 +1.85551 -0.135978 -0.00367436 +1.85646 -0.135468 -0.00367436 +1.8573 -0.134783 -0.00367436 +1.85798 -0.133948 -0.00367436 +1.85849 -0.132995 -0.00367436 +1.85881 -0.131962 -0.00367436 +1.85891 -0.130887 -0.00367436 +1.85881 -0.129812 -0.00367436 +1.85849 -0.128778 -0.00367436 +1.85798 -0.127825 -0.00367436 +1.8573 -0.12699 -0.00367436 +1.85646 -0.126305 -0.00367436 +1.85551 -0.125796 -0.00367436 +1.85448 -0.125482 -0.00367436 +1.8534 -0.125376 -0.00367436 +1.85233 -0.125482 -0.00367436 +1.85129 -0.125796 -0.00367436 +1.85034 -0.126305 -0.00367436 +1.8495 -0.12699 -0.00367436 +1.84882 -0.127825 -0.00367436 +1.84831 -0.128778 -0.00367436 +1.848 -0.129812 -0.00367436 +1.84789 -0.130887 -0.00367436 +1.848 -0.131962 -0.00367436 +1.84831 -0.132995 -0.00367436 +1.84882 -0.133948 -0.00367436 +1.8495 -0.134783 -0.00367436 +1.85034 -0.135468 -0.00367436 +1.85129 -0.135978 -0.00367436 +1.85233 -0.136291 -0.00367436 +1.85534 -0.140625 -0.00351925 +1.8534 -0.140816 -0.00351925 +1.8572 -0.14006 -0.00351925 +1.85892 -0.139143 -0.00351925 +1.86042 -0.137908 -0.00351925 +1.86166 -0.136403 -0.00351925 +1.86257 -0.134687 -0.00351925 +1.86314 -0.132824 -0.00351925 +1.86333 -0.130887 -0.00351925 +1.86314 -0.12895 -0.00351925 +1.86257 -0.127087 -0.00351925 +1.86166 -0.12537 -0.00351925 +1.86042 -0.123866 -0.00351925 +1.85892 -0.122631 -0.00351925 +1.8572 -0.121713 -0.00351925 +1.85534 -0.121148 -0.00351925 +1.8534 -0.120958 -0.00351925 +1.85146 -0.121148 -0.00351925 +1.8496 -0.121713 -0.00351925 +1.84788 -0.122631 -0.00351925 +1.84638 -0.123866 -0.00351925 +1.84515 -0.12537 -0.00351925 +1.84423 -0.127087 -0.00351925 +1.84366 -0.12895 -0.00351925 +1.84347 -0.130887 -0.00351925 +1.84366 -0.132824 -0.00351925 +1.84423 -0.134687 -0.00351925 +1.84515 -0.136403 -0.00351925 +1.84638 -0.137908 -0.00351925 +1.84788 -0.139143 -0.00351925 +1.8496 -0.14006 -0.00351925 +1.85146 -0.140625 -0.00351925 +1.85582 -0.14303 -0.00219801 +1.8534 -0.143268 -0.00219801 +1.85814 -0.142326 -0.00219801 +1.86028 -0.141182 -0.00219801 +1.86216 -0.139642 -0.00219801 +1.8637 -0.137766 -0.00219801 +1.86484 -0.135625 -0.00219801 +1.86554 -0.133302 -0.00219801 +1.86578 -0.130887 -0.00219801 +1.86554 -0.128471 -0.00219801 +1.86484 -0.126149 -0.00219801 +1.8637 -0.124008 -0.00219801 +1.86216 -0.122132 -0.00219801 +1.86028 -0.120592 -0.00219801 +1.85814 -0.119448 -0.00219801 +1.85582 -0.118743 -0.00219801 +1.8534 -0.118505 -0.00219801 +1.85099 -0.118743 -0.00219801 +1.84866 -0.119448 -0.00219801 +1.84652 -0.120592 -0.00219801 +1.84465 -0.122132 -0.00219801 +1.84311 -0.124008 -0.00219801 +1.84196 -0.126149 -0.00219801 +1.84126 -0.128471 -0.00219801 +1.84102 -0.130887 -0.00219801 +1.84126 -0.133302 -0.00219801 +1.84196 -0.135625 -0.00219801 +1.84311 -0.137766 -0.00219801 +1.84465 -0.139642 -0.00219801 +1.84652 -0.141182 -0.00219801 +1.84866 -0.142326 -0.00219801 +1.85099 -0.14303 -0.00219801 +1.85582 -0.14303 0.00219801 +1.8534 -0.143268 0.00219801 +1.85814 -0.142326 0.00219801 +1.86028 -0.141182 0.00219801 +1.86216 -0.139642 0.00219801 +1.8637 -0.137766 0.00219801 +1.86484 -0.135625 0.00219801 +1.86554 -0.133302 0.00219801 +1.86578 -0.130887 0.00219801 +1.86554 -0.128471 0.00219801 +1.86484 -0.126149 0.00219801 +1.8637 -0.124008 0.00219801 +1.86216 -0.122132 0.00219801 +1.86028 -0.120592 0.00219801 +1.85814 -0.119448 0.00219801 +1.85582 -0.118743 0.00219801 +1.8534 -0.118505 0.00219801 +1.85099 -0.118743 0.00219801 +1.84866 -0.119448 0.00219801 +1.84652 -0.120592 0.00219801 +1.84465 -0.122132 0.00219801 +1.84311 -0.124008 0.00219801 +1.84196 -0.126149 0.00219801 +1.84126 -0.128471 0.00219801 +1.84102 -0.130887 0.00219801 +1.84126 -0.133302 0.00219801 +1.84196 -0.135625 0.00219801 +1.84311 -0.137766 0.00219801 +1.84465 -0.139642 0.00219801 +1.84652 -0.141182 0.00219801 +1.84866 -0.142326 0.00219801 +1.85099 -0.14303 0.00219801 +1.85534 -0.140625 0.00351925 +1.8534 -0.140816 0.00351925 +1.8572 -0.14006 0.00351925 +1.85892 -0.139143 0.00351925 +1.86042 -0.137908 0.00351925 +1.86166 -0.136403 0.00351925 +1.86257 -0.134687 0.00351925 +1.86314 -0.132824 0.00351925 +1.86333 -0.130887 0.00351925 +1.86314 -0.12895 0.00351925 +1.86257 -0.127087 0.00351925 +1.86166 -0.12537 0.00351925 +1.86042 -0.123866 0.00351925 +1.85892 -0.122631 0.00351925 +1.8572 -0.121713 0.00351925 +1.85534 -0.121148 0.00351925 +1.8534 -0.120958 0.00351925 +1.85146 -0.121148 0.00351925 +1.8496 -0.121713 0.00351925 +1.84788 -0.122631 0.00351925 +1.84638 -0.123866 0.00351925 +1.84515 -0.12537 0.00351925 +1.84423 -0.127087 0.00351925 +1.84366 -0.12895 0.00351925 +1.84347 -0.130887 0.00351925 +1.84366 -0.132824 0.00351925 +1.84423 -0.134687 0.00351925 +1.84515 -0.136403 0.00351925 +1.84638 -0.137908 0.00351925 +1.84788 -0.139143 0.00351925 +1.8496 -0.14006 0.00351925 +1.85146 -0.140625 0.00351925 +1.85448 -0.136291 0.00367436 +1.8534 -0.136397 0.00367436 +1.85551 -0.135978 0.00367436 +1.85646 -0.135468 0.00367436 +1.8573 -0.134783 0.00367436 +1.85798 -0.133948 0.00367436 +1.85849 -0.132995 0.00367436 +1.85881 -0.131962 0.00367436 +1.85891 -0.130887 0.00367436 +1.85881 -0.129812 0.00367436 +1.85849 -0.128778 0.00367436 +1.85798 -0.127825 0.00367436 +1.8573 -0.12699 0.00367436 +1.85646 -0.126305 0.00367436 +1.85551 -0.125796 0.00367436 +1.85448 -0.125482 0.00367436 +1.8534 -0.125376 0.00367436 +1.85233 -0.125482 0.00367436 +1.85129 -0.125796 0.00367436 +1.85034 -0.126305 0.00367436 +1.8495 -0.12699 0.00367436 +1.84882 -0.127825 0.00367436 +1.84831 -0.128778 0.00367436 +1.848 -0.129812 0.00367436 +1.84789 -0.130887 0.00367436 +1.848 -0.131962 0.00367436 +1.84831 -0.132995 0.00367436 +1.84882 -0.133948 0.00367436 +1.8495 -0.134783 0.00367436 +1.85034 -0.135468 0.00367436 +1.85129 -0.135978 0.00367436 +1.85233 -0.136291 0.00367436 +1.8534 -0.130887 0.00423333 +numsurf 224 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +3 0 0 +1 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +18 0 0 +17 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 2 +refs 3 +0 0 0 +2 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +33 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +3 0 0 +35 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +4 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +5 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +6 0 0 +38 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +39 0 0 +38 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +40 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +41 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +10 0 0 +42 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +11 0 0 +43 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +12 0 0 +44 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +45 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +46 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +47 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +16 0 0 +48 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +17 0 0 +49 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +18 0 0 +50 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +51 0 0 +50 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +52 0 0 +51 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +22 0 0 +54 0 0 +53 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +23 0 0 +55 0 0 +54 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +24 0 0 +56 0 0 +55 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +57 0 0 +56 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +58 0 0 +57 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +59 0 0 +58 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +60 0 0 +59 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +61 0 0 +60 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +62 0 0 +61 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +64 0 0 +63 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +2 0 0 +34 0 0 +64 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +33 0 0 +65 0 0 +66 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +35 0 0 +67 0 0 +65 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +36 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 0 +refs 4 +36 0 0 +37 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +43 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 0 +refs 4 +43 0 0 +44 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 0 +refs 4 +44 0 0 +45 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 0 +refs 4 +45 0 0 +46 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 0 +refs 4 +46 0 0 +47 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 4 +47 0 0 +48 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 4 +48 0 0 +49 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 4 +49 0 0 +50 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 4 +50 0 0 +51 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 0 +refs 4 +51 0 0 +52 0 0 +84 0 0 +83 0 0 +SURF 0x10 +mat 0 +refs 4 +52 0 0 +53 0 0 +85 0 0 +84 0 0 +SURF 0x10 +mat 0 +refs 4 +53 0 0 +54 0 0 +86 0 0 +85 0 0 +SURF 0x10 +mat 0 +refs 4 +54 0 0 +55 0 0 +87 0 0 +86 0 0 +SURF 0x10 +mat 0 +refs 4 +55 0 0 +56 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 0 +refs 4 +56 0 0 +57 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 0 +refs 4 +57 0 0 +58 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 0 +refs 4 +58 0 0 +59 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 0 +refs 4 +59 0 0 +60 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 0 +refs 4 +60 0 0 +61 0 0 +93 0 0 +92 0 0 +SURF 0x10 +mat 0 +refs 4 +61 0 0 +62 0 0 +94 0 0 +93 0 0 +SURF 0x10 +mat 0 +refs 4 +62 0 0 +63 0 0 +95 0 0 +94 0 0 +SURF 0x10 +mat 0 +refs 4 +63 0 0 +64 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 0 +refs 4 +64 0 0 +34 0 0 +66 0 0 +96 0 0 +SURF 0x10 +mat 0 +refs 4 +66 0 0 +65 0 0 +97 0 0 +98 0 0 +SURF 0x10 +mat 0 +refs 4 +65 0 0 +67 0 0 +99 0 0 +97 0 0 +SURF 0x10 +mat 0 +refs 4 +67 0 0 +68 0 0 +100 0 0 +99 0 0 +SURF 0x10 +mat 0 +refs 4 +68 0 0 +69 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 0 +refs 4 +69 0 0 +70 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 0 +refs 4 +70 0 0 +71 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 0 +refs 4 +71 0 0 +72 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 0 +refs 4 +72 0 0 +73 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 0 +refs 4 +73 0 0 +74 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 0 +refs 4 +74 0 0 +75 0 0 +107 0 0 +106 0 0 +SURF 0x10 +mat 0 +refs 4 +75 0 0 +76 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 0 +refs 4 +76 0 0 +77 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 0 +refs 4 +77 0 0 +78 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 0 +refs 4 +78 0 0 +79 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 0 +refs 4 +79 0 0 +80 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 0 +refs 4 +80 0 0 +81 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 0 +refs 4 +81 0 0 +82 0 0 +114 0 0 +113 0 0 +SURF 0x10 +mat 0 +refs 4 +82 0 0 +83 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 0 +refs 4 +83 0 0 +84 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 0 +refs 4 +84 0 0 +85 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 0 +refs 4 +85 0 0 +86 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 0 +refs 4 +86 0 0 +87 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 0 +refs 4 +87 0 0 +88 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 0 +refs 4 +88 0 0 +89 0 0 +121 0 0 +120 0 0 +SURF 0x10 +mat 0 +refs 4 +89 0 0 +90 0 0 +122 0 0 +121 0 0 +SURF 0x10 +mat 0 +refs 4 +90 0 0 +91 0 0 +123 0 0 +122 0 0 +SURF 0x10 +mat 0 +refs 4 +91 0 0 +92 0 0 +124 0 0 +123 0 0 +SURF 0x10 +mat 0 +refs 4 +92 0 0 +93 0 0 +125 0 0 +124 0 0 +SURF 0x10 +mat 0 +refs 4 +93 0 0 +94 0 0 +126 0 0 +125 0 0 +SURF 0x10 +mat 0 +refs 4 +94 0 0 +95 0 0 +127 0 0 +126 0 0 +SURF 0x10 +mat 0 +refs 4 +95 0 0 +96 0 0 +128 0 0 +127 0 0 +SURF 0x10 +mat 0 +refs 4 +96 0 0 +66 0 0 +98 0 0 +128 0 0 +SURF 0x10 +mat 0 +refs 4 +98 0 0 +97 0 0 +129 0 0 +130 0 0 +SURF 0x10 +mat 0 +refs 4 +97 0 0 +99 0 0 +131 0 0 +129 0 0 +SURF 0x10 +mat 0 +refs 4 +99 0 0 +100 0 0 +132 0 0 +131 0 0 +SURF 0x10 +mat 0 +refs 4 +100 0 0 +101 0 0 +133 0 0 +132 0 0 +SURF 0x10 +mat 0 +refs 4 +101 0 0 +102 0 0 +134 0 0 +133 0 0 +SURF 0x10 +mat 0 +refs 4 +102 0 0 +103 0 0 +135 0 0 +134 0 0 +SURF 0x10 +mat 0 +refs 4 +103 0 0 +104 0 0 +136 0 0 +135 0 0 +SURF 0x10 +mat 0 +refs 4 +104 0 0 +105 0 0 +137 0 0 +136 0 0 +SURF 0x10 +mat 0 +refs 4 +105 0 0 +106 0 0 +138 0 0 +137 0 0 +SURF 0x10 +mat 0 +refs 4 +106 0 0 +107 0 0 +139 0 0 +138 0 0 +SURF 0x10 +mat 0 +refs 4 +107 0 0 +108 0 0 +140 0 0 +139 0 0 +SURF 0x10 +mat 0 +refs 4 +108 0 0 +109 0 0 +141 0 0 +140 0 0 +SURF 0x10 +mat 0 +refs 4 +109 0 0 +110 0 0 +142 0 0 +141 0 0 +SURF 0x10 +mat 0 +refs 4 +110 0 0 +111 0 0 +143 0 0 +142 0 0 +SURF 0x10 +mat 0 +refs 4 +111 0 0 +112 0 0 +144 0 0 +143 0 0 +SURF 0x10 +mat 0 +refs 4 +112 0 0 +113 0 0 +145 0 0 +144 0 0 +SURF 0x10 +mat 0 +refs 4 +113 0 0 +114 0 0 +146 0 0 +145 0 0 +SURF 0x10 +mat 0 +refs 4 +114 0 0 +115 0 0 +147 0 0 +146 0 0 +SURF 0x10 +mat 0 +refs 4 +115 0 0 +116 0 0 +148 0 0 +147 0 0 +SURF 0x10 +mat 0 +refs 4 +116 0 0 +117 0 0 +149 0 0 +148 0 0 +SURF 0x10 +mat 0 +refs 4 +117 0 0 +118 0 0 +150 0 0 +149 0 0 +SURF 0x10 +mat 0 +refs 4 +118 0 0 +119 0 0 +151 0 0 +150 0 0 +SURF 0x10 +mat 0 +refs 4 +119 0 0 +120 0 0 +152 0 0 +151 0 0 +SURF 0x10 +mat 0 +refs 4 +120 0 0 +121 0 0 +153 0 0 +152 0 0 +SURF 0x10 +mat 0 +refs 4 +121 0 0 +122 0 0 +154 0 0 +153 0 0 +SURF 0x10 +mat 0 +refs 4 +122 0 0 +123 0 0 +155 0 0 +154 0 0 +SURF 0x10 +mat 0 +refs 4 +123 0 0 +124 0 0 +156 0 0 +155 0 0 +SURF 0x10 +mat 0 +refs 4 +124 0 0 +125 0 0 +157 0 0 +156 0 0 +SURF 0x10 +mat 0 +refs 4 +125 0 0 +126 0 0 +158 0 0 +157 0 0 +SURF 0x10 +mat 0 +refs 4 +126 0 0 +127 0 0 +159 0 0 +158 0 0 +SURF 0x10 +mat 0 +refs 4 +127 0 0 +128 0 0 +160 0 0 +159 0 0 +SURF 0x10 +mat 0 +refs 4 +128 0 0 +98 0 0 +130 0 0 +160 0 0 +SURF 0x10 +mat 0 +refs 4 +130 0 0 +129 0 0 +161 0 0 +162 0 0 +SURF 0x10 +mat 0 +refs 4 +129 0 0 +131 0 0 +163 0 0 +161 0 0 +SURF 0x10 +mat 0 +refs 4 +131 0 0 +132 0 0 +164 0 0 +163 0 0 +SURF 0x10 +mat 0 +refs 4 +132 0 0 +133 0 0 +165 0 0 +164 0 0 +SURF 0x10 +mat 0 +refs 4 +133 0 0 +134 0 0 +166 0 0 +165 0 0 +SURF 0x10 +mat 0 +refs 4 +134 0 0 +135 0 0 +167 0 0 +166 0 0 +SURF 0x10 +mat 0 +refs 4 +135 0 0 +136 0 0 +168 0 0 +167 0 0 +SURF 0x10 +mat 0 +refs 4 +136 0 0 +137 0 0 +169 0 0 +168 0 0 +SURF 0x10 +mat 0 +refs 4 +137 0 0 +138 0 0 +170 0 0 +169 0 0 +SURF 0x10 +mat 0 +refs 4 +138 0 0 +139 0 0 +171 0 0 +170 0 0 +SURF 0x10 +mat 0 +refs 4 +139 0 0 +140 0 0 +172 0 0 +171 0 0 +SURF 0x10 +mat 0 +refs 4 +140 0 0 +141 0 0 +173 0 0 +172 0 0 +SURF 0x10 +mat 0 +refs 4 +141 0 0 +142 0 0 +174 0 0 +173 0 0 +SURF 0x10 +mat 0 +refs 4 +142 0 0 +143 0 0 +175 0 0 +174 0 0 +SURF 0x10 +mat 0 +refs 4 +143 0 0 +144 0 0 +176 0 0 +175 0 0 +SURF 0x10 +mat 0 +refs 4 +144 0 0 +145 0 0 +177 0 0 +176 0 0 +SURF 0x10 +mat 0 +refs 4 +145 0 0 +146 0 0 +178 0 0 +177 0 0 +SURF 0x10 +mat 0 +refs 4 +146 0 0 +147 0 0 +179 0 0 +178 0 0 +SURF 0x10 +mat 0 +refs 4 +147 0 0 +148 0 0 +180 0 0 +179 0 0 +SURF 0x10 +mat 0 +refs 4 +148 0 0 +149 0 0 +181 0 0 +180 0 0 +SURF 0x10 +mat 0 +refs 4 +149 0 0 +150 0 0 +182 0 0 +181 0 0 +SURF 0x10 +mat 0 +refs 4 +150 0 0 +151 0 0 +183 0 0 +182 0 0 +SURF 0x10 +mat 0 +refs 4 +151 0 0 +152 0 0 +184 0 0 +183 0 0 +SURF 0x10 +mat 0 +refs 4 +152 0 0 +153 0 0 +185 0 0 +184 0 0 +SURF 0x10 +mat 0 +refs 4 +153 0 0 +154 0 0 +186 0 0 +185 0 0 +SURF 0x10 +mat 0 +refs 4 +154 0 0 +155 0 0 +187 0 0 +186 0 0 +SURF 0x10 +mat 0 +refs 4 +155 0 0 +156 0 0 +188 0 0 +187 0 0 +SURF 0x10 +mat 0 +refs 4 +156 0 0 +157 0 0 +189 0 0 +188 0 0 +SURF 0x10 +mat 0 +refs 4 +157 0 0 +158 0 0 +190 0 0 +189 0 0 +SURF 0x10 +mat 0 +refs 4 +158 0 0 +159 0 0 +191 0 0 +190 0 0 +SURF 0x10 +mat 0 +refs 4 +159 0 0 +160 0 0 +192 0 0 +191 0 0 +SURF 0x10 +mat 0 +refs 4 +160 0 0 +130 0 0 +162 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +191 0 0 +192 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +190 0 0 +191 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +189 0 0 +190 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +188 0 0 +189 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +187 0 0 +188 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +186 0 0 +187 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +185 0 0 +186 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +184 0 0 +185 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +183 0 0 +184 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +182 0 0 +183 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +181 0 0 +182 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +180 0 0 +181 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +179 0 0 +180 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +178 0 0 +179 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +177 0 0 +178 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +176 0 0 +177 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +175 0 0 +176 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +174 0 0 +175 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +173 0 0 +174 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +172 0 0 +173 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +171 0 0 +172 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +170 0 0 +171 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +169 0 0 +170 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +168 0 0 +169 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +167 0 0 +168 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +166 0 0 +167 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +165 0 0 +166 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +164 0 0 +165 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +163 0 0 +164 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +161 0 0 +163 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +162 0 0 +161 0 0 +SURF 0x10 +mat 2 +refs 3 +193 0 0 +192 0 0 +162 0 0 +kids 0 +OBJECT poly +name "Wing" +texture "Rascal.rgb" +numvert 246 +0.83185 0.130692 0.451014 +0.735007 0.130692 0.451014 +0.8382 0.1143 1.5397e-16 +0.4572 0.130692 0.451014 +0.43815 0.137038 0.450783 +0.43815 0.12065 8.04842e-17 +0.4572 0.1143 8.39835e-17 +0.4318 0.143384 0.450552 +0.4318 0.127 7.93178e-17 +0.4318 0.14973 0.450321 +0.4318 0.13335 7.93178e-17 +0.43815 0.162421 0.44986 +0.43815 0.14605 8.04842e-17 +0.45085 0.168767 0.449629 +0.45085 0.1524 8.28171e-17 +0.4826 0.175113 0.449398 +0.4826 0.15875 8.86493e-17 +0.53975 0.175113 0.449398 +0.53975 0.15875 9.91472e-17 +0.639188 0.162421 0.44986 +0.64135 0.14605 1.1781e-16 +0.735027 0.146638 0.450434 +0.4572 0.138307 0.660425 +0.43815 0.144653 0.660195 +0.4318 0.150999 0.659964 +0.4318 0.157344 0.659733 +0.43815 0.170036 0.659272 +0.45085 0.176382 0.659041 +0.4826 0.182728 0.65881 +0.53975 0.182728 0.65881 +0.634865 0.170036 0.659272 +0.727548 0.154078 0.659852 +0.458922 0.146614 0.888874 +0.440269 0.15296 0.888644 +0.434051 0.159306 0.888413 +0.434051 0.165652 0.888182 +0.440269 0.178343 0.887721 +0.452704 0.184689 0.88749 +0.483792 0.191035 0.887259 +0.53975 0.191035 0.887259 +0.627466 0.178343 0.887721 +0.719388 0.161182 0.888345 +0.463618 0.152383 1.04752 +0.446049 0.157822 1.04732 +0.440192 0.163262 1.04712 +0.440192 0.168701 1.04693 +0.446049 0.17958 1.04653 +0.457761 0.185019 1.04633 +0.487043 0.190458 1.04613 +0.53975 0.190458 1.04613 +0.617988 0.17958 1.04653 +0.713716 0.162405 1.04716 +0.732317 0.15746 1.18713 +0.712107 0.154008 1.0922 +0.757651 0.154008 1.0922 +0.471768 0.15746 1.18713 +0.456079 0.161993 1.18696 +0.449272 0.159163 1.0922 +0.466226 0.154008 1.0922 +0.45085 0.166525 1.1868 +0.443632 0.164315 1.0922 +0.45085 0.171058 1.18663 +0.443646 0.169465 1.0922 +0.456079 0.180123 1.1863 +0.449326 0.179757 1.0922 +0.466538 0.184656 1.18614 +0.460641 0.1849 1.0922 +0.492685 0.189189 1.18597 +0.488902 0.19004 1.0922 +0.53975 0.189189 1.18597 +0.53975 0.19004 1.0922 +0.605305 0.180123 1.1863 +0.613844 0.179757 1.0922 +0.712107 0.162163 1.0922 +0.688729 0.161152 1.28866 +0.484446 0.161152 1.28866 +0.471684 0.164325 1.28854 +0.467429 0.167498 1.28843 +0.467429 0.170671 1.28831 +0.471684 0.177016 1.28808 +0.480192 0.180189 1.28797 +0.501463 0.183362 1.28785 +0.53975 0.183362 1.28785 +0.590466 0.177016 1.28808 +0.644948 0.16346 1.35212 +0.499194 0.16346 1.35212 +0.489834 0.165575 1.35204 +0.486715 0.16769 1.35196 +0.486715 0.169805 1.35189 +0.489834 0.174036 1.35173 +0.496074 0.176151 1.35166 +0.511672 0.178266 1.35158 +0.53975 0.178266 1.35158 +0.575562 0.174036 1.35173 +0.6096 0.164613 1.38385 +0.513066 0.164613 1.38385 +0.506908 0.1662 1.38379 +0.504855 0.167786 1.38373 +0.504855 0.169373 1.38367 +0.506908 0.172546 1.38356 +0.511013 0.174132 1.3835 +0.521276 0.175718 1.38344 +0.53975 0.175718 1.38344 +0.563529 0.172546 1.38356 +0.5842 0.165075 1.39654 +0.522713 0.165075 1.39654 +0.518782 0.166344 1.39649 +0.517471 0.167613 1.39645 +0.517471 0.168882 1.3964 +0.518782 0.171421 1.39631 +0.521403 0.17269 1.39626 +0.527955 0.173959 1.39622 +0.53975 0.173959 1.39622 +0.554882 0.171421 1.39631 +0.56515 0.166073 1.40288 +0.530746 0.166073 1.40288 +0.528668 0.167021 1.40284 +0.527975 0.167969 1.4028 +0.527975 0.168917 1.40277 +0.528668 0.170813 1.40269 +0.530053 0.171761 1.40265 +0.533516 0.172709 1.40262 +0.53975 0.172709 1.40262 +0.548397 0.170813 1.40269 +0.540564 0.168414 1.40793 +0.713703 0.152383 1.04752 +0.727528 0.138307 0.660425 +0.719369 0.146614 0.888874 +0.735007 0.130692 -0.451014 +0.83185 0.130692 -0.451014 +0.43815 0.137038 -0.450783 +0.4572 0.130692 -0.451014 +0.4318 0.143384 -0.450552 +0.4318 0.14973 -0.450321 +0.43815 0.162421 -0.44986 +0.45085 0.168767 -0.449629 +0.4826 0.175113 -0.449398 +0.53975 0.175113 -0.449398 +0.639188 0.162421 -0.44986 +0.735027 0.146638 -0.450434 +0.43815 0.144653 -0.660195 +0.4572 0.138307 -0.660425 +0.4318 0.150999 -0.659964 +0.4318 0.157344 -0.659733 +0.43815 0.170036 -0.659272 +0.45085 0.176382 -0.659041 +0.4826 0.182728 -0.65881 +0.53975 0.182728 -0.65881 +0.634865 0.170036 -0.659272 +0.727548 0.154078 -0.659852 +0.440269 0.15296 -0.888644 +0.458922 0.146614 -0.888874 +0.434051 0.159306 -0.888413 +0.434051 0.165652 -0.888182 +0.440269 0.178343 -0.887721 +0.452704 0.184689 -0.88749 +0.483792 0.191035 -0.887259 +0.53975 0.191035 -0.887259 +0.627466 0.178343 -0.887721 +0.719388 0.161182 -0.888345 +0.446049 0.157822 -1.04732 +0.463618 0.152383 -1.04752 +0.440192 0.163262 -1.04712 +0.440192 0.168701 -1.04693 +0.446049 0.17958 -1.04653 +0.457761 0.185019 -1.04633 +0.487043 0.190458 -1.04613 +0.53975 0.190458 -1.04613 +0.617988 0.17958 -1.04653 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.712107 0.154008 -1.0922 +0.732317 0.15746 -1.18713 +0.466226 0.154008 -1.0922 +0.449272 0.159163 -1.0922 +0.456079 0.161993 -1.18696 +0.471768 0.15746 -1.18713 +0.443632 0.164315 -1.0922 +0.45085 0.166525 -1.1868 +0.443646 0.169465 -1.0922 +0.45085 0.171058 -1.18663 +0.449326 0.179757 -1.0922 +0.456079 0.180123 -1.1863 +0.460641 0.1849 -1.0922 +0.466538 0.184656 -1.18614 +0.488902 0.19004 -1.0922 +0.492685 0.189189 -1.18597 +0.53975 0.19004 -1.0922 +0.53975 0.189189 -1.18597 +0.613844 0.179757 -1.0922 +0.605305 0.180123 -1.1863 +0.712107 0.162163 -1.0922 +0.484446 0.161152 -1.28866 +0.688729 0.161152 -1.28866 +0.471684 0.164325 -1.28854 +0.467429 0.167498 -1.28843 +0.467429 0.170671 -1.28831 +0.471684 0.177016 -1.28808 +0.480192 0.180189 -1.28797 +0.501463 0.183362 -1.28785 +0.53975 0.183362 -1.28785 +0.590466 0.177016 -1.28808 +0.499194 0.16346 -1.35212 +0.644948 0.16346 -1.35212 +0.489834 0.165575 -1.35204 +0.486715 0.16769 -1.35196 +0.486715 0.169805 -1.35189 +0.489834 0.174036 -1.35173 +0.496074 0.176151 -1.35166 +0.511672 0.178266 -1.35158 +0.53975 0.178266 -1.35158 +0.575562 0.174036 -1.35173 +0.513066 0.164613 -1.38385 +0.6096 0.164613 -1.38385 +0.506908 0.1662 -1.38379 +0.504855 0.167786 -1.38373 +0.504855 0.169373 -1.38367 +0.506908 0.172546 -1.38356 +0.511013 0.174132 -1.3835 +0.521276 0.175718 -1.38344 +0.53975 0.175718 -1.38344 +0.563529 0.172546 -1.38356 +0.522713 0.165075 -1.39654 +0.5842 0.165075 -1.39654 +0.518782 0.166344 -1.39649 +0.517471 0.167613 -1.39645 +0.517471 0.168882 -1.3964 +0.518782 0.171421 -1.39631 +0.521403 0.17269 -1.39626 +0.527955 0.173959 -1.39622 +0.53975 0.173959 -1.39622 +0.554882 0.171421 -1.39631 +0.530746 0.166073 -1.40288 +0.56515 0.166073 -1.40288 +0.528668 0.167021 -1.40284 +0.527975 0.167969 -1.4028 +0.527975 0.168917 -1.40277 +0.528668 0.170813 -1.40269 +0.530053 0.171761 -1.40265 +0.533516 0.172709 -1.40262 +0.53975 0.172709 -1.40262 +0.548397 0.170813 -1.40269 +0.540564 0.168414 -1.40793 +0.713703 0.152383 -1.04752 +0.727528 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +numsurf 268 +SURF 0x10 +mat 1 +refs 3 +0 0.482124 0.574349 +1 0.482124 0.664243 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 4 +3 0.482124 0.922917 +4 0.482124 0.941263 +5 0.699005 0.941263 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 4 +4 0.482124 0.941263 +7 0.482124 0.946767 +8 0.699005 0.946767 +5 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +7 0.482124 0.946767 +9 0.482124 0.946767 +10 0.699005 0.946767 +8 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +9 0.482124 0.946767 +11 0.483423 0.941263 +12 0.699005 0.941263 +10 0.699005 0.946767 +SURF 0x10 +mat 1 +refs 4 +11 0.483423 0.941263 +13 0.483423 0.929338 +14 0.699005 0.929338 +12 0.699005 0.941263 +SURF 0x10 +mat 1 +refs 4 +13 0.483423 0.929338 +15 0.483423 0.899985 +16 0.699005 0.899985 +14 0.699005 0.929338 +SURF 0x10 +mat 1 +refs 4 +15 0.483423 0.899985 +17 0.483423 0.846783 +18 0.699005 0.846783 +16 0.699005 0.899985 +SURF 0x10 +mat 1 +refs 4 +17 0.483423 0.846783 +19 0.483423 0.753219 +20 0.699005 0.751385 +18 0.699005 0.846783 +SURF 0x10 +mat 1 +refs 3 +19 0.483423 0.753219 +21 0.482124 0.664243 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 4 +22 0.382125 0.922917 +23 0.382125 0.941263 +4 0.482124 0.941263 +3 0.482124 0.922917 +SURF 0x10 +mat 1 +refs 4 +23 0.382125 0.941263 +24 0.382125 0.946767 +7 0.482124 0.946767 +4 0.482124 0.941263 +SURF 0x10 +mat 1 +refs 4 +24 0.382125 0.946767 +25 0.382125 0.946767 +9 0.482124 0.946767 +7 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +25 0.382125 0.946767 +26 0.382125 0.941263 +11 0.483423 0.941263 +9 0.482124 0.946767 +SURF 0x10 +mat 1 +refs 4 +26 0.382125 0.941263 +27 0.382125 0.929338 +13 0.483423 0.929338 +11 0.483423 0.941263 +SURF 0x10 +mat 1 +refs 4 +27 0.382125 0.929338 +28 0.382125 0.899985 +15 0.483423 0.899985 +13 0.483423 0.929338 +SURF 0x10 +mat 1 +refs 4 +28 0.382125 0.899985 +29 0.382125 0.846783 +17 0.483423 0.846783 +15 0.483423 0.899985 +SURF 0x10 +mat 1 +refs 4 +29 0.382125 0.846783 +30 0.382125 0.757806 +19 0.483423 0.753219 +17 0.483423 0.846783 +SURF 0x10 +mat 1 +refs 4 +30 0.382125 0.757806 +31 0.382125 0.671581 +21 0.482124 0.664243 +19 0.483423 0.753219 +SURF 0x10 +mat 1 +refs 4 +32 0.271736 0.922 +33 0.271736 0.939428 +23 0.382125 0.941263 +22 0.382125 0.922917 +SURF 0x10 +mat 1 +refs 4 +33 0.271736 0.939428 +34 0.271736 0.944932 +24 0.382125 0.946767 +23 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +34 0.271736 0.944932 +35 0.271736 0.944932 +25 0.382125 0.946767 +24 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +35 0.271736 0.944932 +36 0.273035 0.939428 +26 0.382125 0.941263 +25 0.382125 0.946767 +SURF 0x10 +mat 1 +refs 4 +36 0.273035 0.939428 +37 0.273035 0.927504 +27 0.382125 0.929338 +26 0.382125 0.941263 +SURF 0x10 +mat 1 +refs 4 +37 0.273035 0.927504 +38 0.273035 0.898151 +28 0.382125 0.899985 +27 0.382125 0.929338 +SURF 0x10 +mat 1 +refs 4 +38 0.273035 0.898151 +39 0.273035 0.846783 +29 0.382125 0.846783 +28 0.382125 0.899985 +SURF 0x10 +mat 1 +refs 4 +39 0.273035 0.846783 +40 0.273035 0.764227 +30 0.382125 0.757806 +29 0.382125 0.846783 +SURF 0x10 +mat 1 +refs 4 +40 0.273035 0.764227 +41 0.271736 0.678919 +31 0.382125 0.671581 +30 0.382125 0.757806 +SURF 0x10 +mat 1 +refs 4 +42 0.195114 0.917414 +43 0.195114 0.933925 +33 0.271736 0.939428 +32 0.271736 0.922 +SURF 0x10 +mat 1 +refs 4 +43 0.195114 0.933925 +44 0.196413 0.939428 +34 0.271736 0.944932 +33 0.271736 0.939428 +SURF 0x10 +mat 1 +refs 4 +44 0.196413 0.939428 +45 0.196413 0.939428 +35 0.271736 0.944932 +34 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +45 0.196413 0.939428 +46 0.196413 0.933925 +36 0.273035 0.939428 +35 0.271736 0.944932 +SURF 0x10 +mat 1 +refs 4 +46 0.196413 0.933925 +47 0.196413 0.922917 +37 0.273035 0.927504 +36 0.273035 0.939428 +SURF 0x10 +mat 1 +refs 4 +47 0.196413 0.922917 +48 0.196413 0.895399 +38 0.273035 0.898151 +37 0.273035 0.927504 +SURF 0x10 +mat 1 +refs 4 +48 0.196413 0.895399 +49 0.196413 0.846783 +39 0.273035 0.846783 +38 0.273035 0.898151 +SURF 0x10 +mat 1 +refs 4 +49 0.196413 0.846783 +50 0.196413 0.7734 +40 0.273035 0.764227 +39 0.273035 0.846783 +SURF 0x10 +mat 1 +refs 4 +50 0.196413 0.7734 +51 0.196413 0.684423 +41 0.271736 0.678919 +40 0.273035 0.764227 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +53 0.174335 0.68534 +54 0.174335 0.643145 +SURF 0x10 +mat 1 +refs 4 +55 0.128881 0.910075 +56 0.128881 0.924752 +57 0.174335 0.931173 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +56 0.128881 0.924752 +59 0.128881 0.929338 +60 0.174335 0.935759 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +59 0.128881 0.929338 +61 0.128881 0.929338 +62 0.174335 0.935759 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +61 0.128881 0.929338 +63 0.128881 0.924752 +64 0.174335 0.930256 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +63 0.128881 0.924752 +65 0.128881 0.914662 +66 0.174335 0.920165 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +65 0.128881 0.914662 +67 0.128881 0.889895 +68 0.174335 0.893564 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +67 0.128881 0.889895 +69 0.128881 0.846783 +70 0.174335 0.846783 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +69 0.128881 0.846783 +71 0.128881 0.785324 +72 0.174335 0.777069 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +73 0.174335 0.68534 +72 0.174335 0.777069 +SURF 0x10 +mat 1 +refs 4 +74 0.0795305 0.707355 +75 0.0795305 0.898151 +55 0.128881 0.910075 +52 0.128881 0.666994 +SURF 0x10 +mat 1 +refs 4 +75 0.0795305 0.898151 +76 0.0795305 0.910075 +56 0.128881 0.924752 +55 0.128881 0.910075 +SURF 0x10 +mat 1 +refs 4 +76 0.0795305 0.910075 +77 0.0795305 0.913744 +59 0.128881 0.929338 +56 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +77 0.0795305 0.913744 +78 0.0795305 0.913744 +61 0.128881 0.929338 +59 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +78 0.0795305 0.913744 +79 0.0795305 0.910075 +63 0.128881 0.924752 +61 0.128881 0.929338 +SURF 0x10 +mat 1 +refs 4 +79 0.0795305 0.910075 +80 0.0795305 0.90182 +65 0.128881 0.914662 +63 0.128881 0.924752 +SURF 0x10 +mat 1 +refs 4 +80 0.0795305 0.90182 +81 0.0795305 0.881639 +67 0.128881 0.889895 +65 0.128881 0.914662 +SURF 0x10 +mat 1 +refs 4 +81 0.0795305 0.881639 +82 0.0795305 0.846783 +69 0.128881 0.846783 +67 0.128881 0.889895 +SURF 0x10 +mat 1 +refs 4 +82 0.0795305 0.846783 +83 0.0795305 0.799084 +71 0.128881 0.785324 +69 0.128881 0.846783 +SURF 0x10 +mat 1 +refs 4 +83 0.0795305 0.799084 +74 0.0795305 0.707355 +52 0.128881 0.666994 +71 0.128881 0.785324 +SURF 0x10 +mat 1 +refs 4 +84 0.0509594 0.748633 +85 0.0509594 0.884391 +75 0.0795305 0.898151 +74 0.0795305 0.707355 +SURF 0x10 +mat 1 +refs 4 +85 0.0509594 0.884391 +86 0.0509594 0.892647 +76 0.0795305 0.910075 +75 0.0795305 0.898151 +SURF 0x10 +mat 1 +refs 4 +86 0.0509594 0.892647 +87 0.0509594 0.895399 +77 0.0795305 0.913744 +76 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +87 0.0509594 0.895399 +88 0.0509594 0.895399 +78 0.0795305 0.913744 +77 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +88 0.0509594 0.895399 +89 0.0509594 0.892647 +79 0.0795305 0.910075 +78 0.0795305 0.913744 +SURF 0x10 +mat 1 +refs 4 +89 0.0509594 0.892647 +90 0.0509594 0.887143 +80 0.0795305 0.90182 +79 0.0795305 0.910075 +SURF 0x10 +mat 1 +refs 4 +90 0.0509594 0.887143 +91 0.0509594 0.872467 +81 0.0795305 0.881639 +80 0.0795305 0.90182 +SURF 0x10 +mat 1 +refs 4 +91 0.0509594 0.872467 +92 0.0509594 0.846783 +82 0.0795305 0.846783 +81 0.0795305 0.881639 +SURF 0x10 +mat 1 +refs 4 +92 0.0509594 0.846783 +93 0.0509594 0.812843 +83 0.0795305 0.799084 +82 0.0795305 0.846783 +SURF 0x10 +mat 1 +refs 4 +93 0.0509594 0.812843 +84 0.0509594 0.748633 +74 0.0795305 0.707355 +83 0.0795305 0.799084 +SURF 0x10 +mat 1 +refs 4 +94 0.0353751 0.781655 +95 0.0353751 0.871549 +85 0.0509594 0.884391 +84 0.0509594 0.748633 +SURF 0x10 +mat 1 +refs 4 +95 0.0353751 0.871549 +96 0.0353751 0.877053 +86 0.0509594 0.892647 +85 0.0509594 0.884391 +SURF 0x10 +mat 1 +refs 4 +96 0.0353751 0.877053 +97 0.0353751 0.878888 +87 0.0509594 0.895399 +86 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +97 0.0353751 0.878888 +98 0.0353751 0.878888 +88 0.0509594 0.895399 +87 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +98 0.0353751 0.878888 +99 0.0353751 0.877053 +89 0.0509594 0.892647 +88 0.0509594 0.895399 +SURF 0x10 +mat 1 +refs 4 +99 0.0353751 0.877053 +100 0.0353751 0.873384 +90 0.0509594 0.887143 +89 0.0509594 0.892647 +SURF 0x10 +mat 1 +refs 4 +100 0.0353751 0.873384 +101 0.0353751 0.863294 +91 0.0509594 0.872467 +90 0.0509594 0.887143 +SURF 0x10 +mat 1 +refs 4 +101 0.0353751 0.863294 +102 0.0353751 0.846783 +92 0.0509594 0.846783 +91 0.0509594 0.872467 +SURF 0x10 +mat 1 +refs 4 +102 0.0353751 0.846783 +103 0.0353751 0.82385 +93 0.0509594 0.812843 +92 0.0509594 0.846783 +SURF 0x10 +mat 1 +refs 4 +103 0.0353751 0.82385 +94 0.0353751 0.781655 +84 0.0509594 0.748633 +93 0.0509594 0.812843 +SURF 0x10 +mat 1 +refs 4 +104 0.0288817 0.804587 +105 0.0288817 0.862376 +95 0.0353751 0.871549 +94 0.0353751 0.781655 +SURF 0x10 +mat 1 +refs 4 +105 0.0288817 0.862376 +106 0.0288817 0.866046 +96 0.0353751 0.877053 +95 0.0353751 0.871549 +SURF 0x10 +mat 1 +refs 4 +106 0.0288817 0.866046 +107 0.0288817 0.866963 +97 0.0353751 0.878888 +96 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +107 0.0288817 0.866963 +108 0.0288817 0.866963 +98 0.0353751 0.878888 +97 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +108 0.0288817 0.866963 +109 0.0288817 0.866046 +99 0.0353751 0.877053 +98 0.0353751 0.878888 +SURF 0x10 +mat 1 +refs 4 +109 0.0288817 0.866046 +110 0.0288817 0.863294 +100 0.0353751 0.873384 +99 0.0353751 0.877053 +SURF 0x10 +mat 1 +refs 4 +110 0.0288817 0.863294 +111 0.0288817 0.85779 +101 0.0353751 0.863294 +100 0.0353751 0.873384 +SURF 0x10 +mat 1 +refs 4 +111 0.0288817 0.85779 +112 0.0288817 0.846783 +102 0.0353751 0.846783 +101 0.0353751 0.863294 +SURF 0x10 +mat 1 +refs 4 +112 0.0288817 0.846783 +113 0.0288817 0.832106 +103 0.0353751 0.82385 +102 0.0353751 0.846783 +SURF 0x10 +mat 1 +refs 4 +113 0.0288817 0.832106 +104 0.0288817 0.804587 +94 0.0353751 0.781655 +103 0.0353751 0.82385 +SURF 0x10 +mat 1 +refs 4 +114 0.0262843 0.822933 +115 0.0262843 0.855038 +105 0.0288817 0.862376 +104 0.0288817 0.804587 +SURF 0x10 +mat 1 +refs 4 +115 0.0262843 0.855038 +116 0.0262843 0.856873 +106 0.0288817 0.866046 +105 0.0288817 0.862376 +SURF 0x10 +mat 1 +refs 4 +116 0.0262843 0.856873 +117 0.0262843 0.85779 +107 0.0288817 0.866963 +106 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +117 0.0262843 0.85779 +118 0.0262843 0.85779 +108 0.0288817 0.866963 +107 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +118 0.0262843 0.85779 +119 0.0262843 0.856873 +109 0.0288817 0.866046 +108 0.0288817 0.866963 +SURF 0x10 +mat 1 +refs 4 +119 0.0262843 0.856873 +120 0.0262843 0.855038 +110 0.0288817 0.863294 +109 0.0288817 0.866046 +SURF 0x10 +mat 1 +refs 4 +120 0.0262843 0.855038 +121 0.0262843 0.852286 +111 0.0288817 0.85779 +110 0.0288817 0.863294 +SURF 0x10 +mat 1 +refs 4 +121 0.0262843 0.852286 +122 0.0262843 0.846783 +112 0.0288817 0.846783 +111 0.0288817 0.85779 +SURF 0x10 +mat 1 +refs 4 +122 0.0262843 0.846783 +123 0.0262843 0.838527 +113 0.0288817 0.832106 +112 0.0288817 0.846783 +SURF 0x10 +mat 1 +refs 4 +123 0.0262843 0.838527 +114 0.0262843 0.822933 +104 0.0288817 0.804587 +113 0.0288817 0.832106 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +115 0.0262843 0.855038 +114 0.0262843 0.822933 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +116 0.0262843 0.856873 +115 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +117 0.0262843 0.85779 +116 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +118 0.0262843 0.85779 +117 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +119 0.0262843 0.856873 +118 0.0262843 0.85779 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +120 0.0262843 0.855038 +119 0.0262843 0.856873 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +121 0.0262843 0.852286 +120 0.0262843 0.855038 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +122 0.0262843 0.846783 +121 0.0262843 0.852286 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +123 0.0262843 0.838527 +122 0.0262843 0.846783 +SURF 0x10 +mat 1 +refs 3 +124 0.0236869 0.845865 +114 0.0262843 0.822933 +123 0.0262843 0.838527 +SURF 0x10 +mat 1 +refs 4 +58 0.174335 0.914662 +42 0.195114 0.917414 +125 0.195114 0.684423 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +57 0.174335 0.931173 +43 0.195114 0.933925 +42 0.195114 0.917414 +58 0.174335 0.914662 +SURF 0x10 +mat 1 +refs 4 +60 0.174335 0.935759 +44 0.196413 0.939428 +43 0.195114 0.933925 +57 0.174335 0.931173 +SURF 0x10 +mat 1 +refs 4 +62 0.174335 0.935759 +45 0.196413 0.939428 +44 0.196413 0.939428 +60 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +64 0.174335 0.930256 +46 0.196413 0.933925 +45 0.196413 0.939428 +62 0.174335 0.935759 +SURF 0x10 +mat 1 +refs 4 +66 0.174335 0.920165 +47 0.196413 0.922917 +46 0.196413 0.933925 +64 0.174335 0.930256 +SURF 0x10 +mat 1 +refs 4 +68 0.174335 0.893564 +48 0.196413 0.895399 +47 0.196413 0.922917 +66 0.174335 0.920165 +SURF 0x10 +mat 1 +refs 4 +70 0.174335 0.846783 +49 0.196413 0.846783 +48 0.196413 0.895399 +68 0.174335 0.893564 +SURF 0x10 +mat 1 +refs 4 +72 0.174335 0.777069 +50 0.196413 0.7734 +49 0.196413 0.846783 +70 0.174335 0.846783 +SURF 0x10 +mat 1 +refs 4 +126 0.382125 0.671581 +22 0.382125 0.922917 +3 0.482124 0.922917 +1 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +127 0.271736 0.678919 +32 0.271736 0.922 +22 0.382125 0.922917 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +125 0.195114 0.684423 +42 0.195114 0.917414 +32 0.271736 0.922 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +50 0.196413 0.7734 +72 0.174335 0.777069 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +2 0.699005 0.567928 +20 0.699005 0.751385 +SURF 0x10 +mat 1 +refs 3 +21 0.482124 0.664243 +0 0.482124 0.574349 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +6 0.699005 0.922917 +2 0.699005 0.567928 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +3 0.482124 0.922917 +6 0.699005 0.922917 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +55 0.128881 0.910075 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +55 0.128881 0.910075 +58 0.174335 0.914662 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +52 0.128881 0.666994 +54 0.174335 0.643145 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +71 0.128881 0.785324 +52 0.128881 0.666994 +73 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +1 0.482124 0.664243 +21 0.482124 0.664243 +31 0.382125 0.671581 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 3 +1 0.482124 0.664243 +0 0.482124 0.574349 +21 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +31 0.382125 0.671581 +41 0.271736 0.678919 +127 0.271736 0.678919 +126 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +41 0.271736 0.678919 +51 0.196413 0.684423 +125 0.195114 0.684423 +127 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +51 0.196413 0.684423 +73 0.174335 0.68534 +53 0.174335 0.68534 +125 0.195114 0.684423 +SURF 0x10 +mat 1 +refs 3 +73 0.174335 0.68534 +54 0.174335 0.643145 +53 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +128 0.480295 0.664116 +129 0.480295 0.574611 +SURF 0x10 +mat 1 +refs 4 +6 0.695816 0.921673 +5 0.695816 0.939939 +130 0.480295 0.939939 +131 0.480295 0.921673 +SURF 0x10 +mat 1 +refs 4 +5 0.695816 0.939939 +8 0.695816 0.945419 +132 0.480295 0.945419 +130 0.480295 0.939939 +SURF 0x10 +mat 1 +refs 4 +8 0.695816 0.945419 +10 0.695816 0.945419 +133 0.480295 0.945419 +132 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +10 0.695816 0.945419 +12 0.695816 0.939939 +134 0.481585 0.939939 +133 0.480295 0.945419 +SURF 0x10 +mat 1 +refs 4 +12 0.695816 0.939939 +14 0.695816 0.928066 +135 0.481585 0.928066 +134 0.481585 0.939939 +SURF 0x10 +mat 1 +refs 4 +14 0.695816 0.928066 +16 0.695816 0.89884 +136 0.481585 0.89884 +135 0.481585 0.928066 +SURF 0x10 +mat 1 +refs 4 +16 0.695816 0.89884 +18 0.695816 0.845867 +137 0.481585 0.845867 +136 0.481585 0.89884 +SURF 0x10 +mat 1 +refs 4 +18 0.695816 0.845867 +20 0.695816 0.750882 +138 0.481585 0.752708 +137 0.481585 0.845867 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +139 0.480295 0.664116 +138 0.481585 0.752708 +SURF 0x10 +mat 1 +refs 4 +131 0.480295 0.921673 +130 0.480295 0.939939 +140 0.380923 0.939939 +141 0.380923 0.921673 +SURF 0x10 +mat 1 +refs 4 +130 0.480295 0.939939 +132 0.480295 0.945419 +142 0.380923 0.945419 +140 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +132 0.480295 0.945419 +133 0.480295 0.945419 +143 0.380923 0.945419 +142 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +133 0.480295 0.945419 +134 0.481585 0.939939 +144 0.380923 0.939939 +143 0.380923 0.945419 +SURF 0x10 +mat 1 +refs 4 +134 0.481585 0.939939 +135 0.481585 0.928066 +145 0.380923 0.928066 +144 0.380923 0.939939 +SURF 0x10 +mat 1 +refs 4 +135 0.481585 0.928066 +136 0.481585 0.89884 +146 0.380923 0.89884 +145 0.380923 0.928066 +SURF 0x10 +mat 1 +refs 4 +136 0.481585 0.89884 +137 0.481585 0.845867 +147 0.380923 0.845867 +146 0.380923 0.89884 +SURF 0x10 +mat 1 +refs 4 +137 0.481585 0.845867 +138 0.481585 0.752708 +148 0.380923 0.757275 +147 0.380923 0.845867 +SURF 0x10 +mat 1 +refs 4 +138 0.481585 0.752708 +139 0.480295 0.664116 +149 0.380923 0.671422 +148 0.380923 0.757275 +SURF 0x10 +mat 1 +refs 4 +141 0.380923 0.921673 +140 0.380923 0.939939 +150 0.271226 0.938113 +151 0.271226 0.920759 +SURF 0x10 +mat 1 +refs 4 +140 0.380923 0.939939 +142 0.380923 0.945419 +152 0.271226 0.943593 +150 0.271226 0.938113 +SURF 0x10 +mat 1 +refs 4 +142 0.380923 0.945419 +143 0.380923 0.945419 +153 0.271226 0.943593 +152 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +143 0.380923 0.945419 +144 0.380923 0.939939 +154 0.272517 0.938113 +153 0.271226 0.943593 +SURF 0x10 +mat 1 +refs 4 +144 0.380923 0.939939 +145 0.380923 0.928066 +155 0.272517 0.926239 +154 0.272517 0.938113 +SURF 0x10 +mat 1 +refs 4 +145 0.380923 0.928066 +146 0.380923 0.89884 +156 0.272517 0.897013 +155 0.272517 0.926239 +SURF 0x10 +mat 1 +refs 4 +146 0.380923 0.89884 +147 0.380923 0.845867 +157 0.272517 0.845867 +156 0.272517 0.897013 +SURF 0x10 +mat 1 +refs 4 +147 0.380923 0.845867 +148 0.380923 0.757275 +158 0.272517 0.763668 +157 0.272517 0.845867 +SURF 0x10 +mat 1 +refs 4 +148 0.380923 0.757275 +149 0.380923 0.671422 +159 0.271226 0.678729 +158 0.272517 0.763668 +SURF 0x10 +mat 1 +refs 4 +151 0.271226 0.920759 +150 0.271226 0.938113 +160 0.195084 0.932633 +161 0.195084 0.916193 +SURF 0x10 +mat 1 +refs 4 +150 0.271226 0.938113 +152 0.271226 0.943593 +162 0.196375 0.938113 +160 0.195084 0.932633 +SURF 0x10 +mat 1 +refs 4 +152 0.271226 0.943593 +153 0.271226 0.943593 +163 0.196375 0.938113 +162 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +153 0.271226 0.943593 +154 0.272517 0.938113 +164 0.196375 0.932633 +163 0.196375 0.938113 +SURF 0x10 +mat 1 +refs 4 +154 0.272517 0.938113 +155 0.272517 0.926239 +165 0.196375 0.921673 +164 0.196375 0.932633 +SURF 0x10 +mat 1 +refs 4 +155 0.272517 0.926239 +156 0.272517 0.897013 +166 0.196375 0.894273 +165 0.196375 0.921673 +SURF 0x10 +mat 1 +refs 4 +156 0.272517 0.897013 +157 0.272517 0.845867 +167 0.196375 0.845867 +166 0.196375 0.894273 +SURF 0x10 +mat 1 +refs 4 +157 0.272517 0.845867 +158 0.272517 0.763668 +168 0.196375 0.772801 +167 0.196375 0.845867 +SURF 0x10 +mat 1 +refs 4 +158 0.272517 0.763668 +159 0.271226 0.678729 +169 0.196375 0.684209 +168 0.196375 0.772801 +SURF 0x10 +mat 1 +refs 3 +170 0.174435 0.64311 +171 0.174435 0.685122 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +174 0.174435 0.929893 +175 0.129266 0.9235 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +177 0.174435 0.934459 +178 0.129266 0.928066 +175 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +179 0.174435 0.934459 +180 0.129266 0.928066 +178 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +181 0.174435 0.928979 +182 0.129266 0.9235 +180 0.129266 0.928066 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +183 0.174435 0.918933 +184 0.129266 0.913453 +182 0.129266 0.9235 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +185 0.174435 0.892447 +186 0.129266 0.888793 +184 0.129266 0.913453 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +187 0.174435 0.845867 +188 0.129266 0.845867 +186 0.129266 0.888793 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +189 0.174435 0.776455 +190 0.129266 0.784674 +188 0.129266 0.845867 +SURF 0x10 +mat 1 +refs 3 +189 0.174435 0.776455 +191 0.174435 0.685122 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +172 0.129266 0.666856 +176 0.129266 0.908886 +192 0.0802255 0.897013 +193 0.0802255 0.707042 +SURF 0x10 +mat 1 +refs 4 +176 0.129266 0.908886 +175 0.129266 0.9235 +194 0.0802255 0.908886 +192 0.0802255 0.897013 +SURF 0x10 +mat 1 +refs 4 +175 0.129266 0.9235 +178 0.129266 0.928066 +195 0.0802255 0.91254 +194 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +178 0.129266 0.928066 +180 0.129266 0.928066 +196 0.0802255 0.91254 +195 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +180 0.129266 0.928066 +182 0.129266 0.9235 +197 0.0802255 0.908886 +196 0.0802255 0.91254 +SURF 0x10 +mat 1 +refs 4 +182 0.129266 0.9235 +184 0.129266 0.913453 +198 0.0802255 0.900666 +197 0.0802255 0.908886 +SURF 0x10 +mat 1 +refs 4 +184 0.129266 0.913453 +186 0.129266 0.888793 +199 0.0802255 0.880573 +198 0.0802255 0.900666 +SURF 0x10 +mat 1 +refs 4 +186 0.129266 0.888793 +188 0.129266 0.845867 +200 0.0802255 0.845867 +199 0.0802255 0.880573 +SURF 0x10 +mat 1 +refs 4 +188 0.129266 0.845867 +190 0.129266 0.784674 +201 0.0802255 0.798374 +200 0.0802255 0.845867 +SURF 0x10 +mat 1 +refs 4 +190 0.129266 0.784674 +172 0.129266 0.666856 +193 0.0802255 0.707042 +201 0.0802255 0.798374 +SURF 0x10 +mat 1 +refs 4 +193 0.0802255 0.707042 +192 0.0802255 0.897013 +202 0.050543 0.883313 +203 0.050543 0.748142 +SURF 0x10 +mat 1 +refs 4 +192 0.0802255 0.897013 +194 0.0802255 0.908886 +204 0.050543 0.891533 +202 0.050543 0.883313 +SURF 0x10 +mat 1 +refs 4 +194 0.0802255 0.908886 +195 0.0802255 0.91254 +205 0.050543 0.894273 +204 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +195 0.0802255 0.91254 +196 0.0802255 0.91254 +206 0.050543 0.894273 +205 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +196 0.0802255 0.91254 +197 0.0802255 0.908886 +207 0.050543 0.891533 +206 0.050543 0.894273 +SURF 0x10 +mat 1 +refs 4 +197 0.0802255 0.908886 +198 0.0802255 0.900666 +208 0.050543 0.886053 +207 0.050543 0.891533 +SURF 0x10 +mat 1 +refs 4 +198 0.0802255 0.900666 +199 0.0802255 0.880573 +209 0.050543 0.87144 +208 0.050543 0.886053 +SURF 0x10 +mat 1 +refs 4 +199 0.0802255 0.880573 +200 0.0802255 0.845867 +210 0.050543 0.845867 +209 0.050543 0.87144 +SURF 0x10 +mat 1 +refs 4 +200 0.0802255 0.845867 +201 0.0802255 0.798374 +211 0.050543 0.812074 +210 0.050543 0.845867 +SURF 0x10 +mat 1 +refs 4 +201 0.0802255 0.798374 +193 0.0802255 0.707042 +203 0.050543 0.748142 +211 0.050543 0.812074 +SURF 0x10 +mat 1 +refs 4 +203 0.050543 0.748142 +202 0.050543 0.883313 +212 0.0350563 0.870527 +213 0.0350563 0.781021 +SURF 0x10 +mat 1 +refs 4 +202 0.050543 0.883313 +204 0.050543 0.891533 +214 0.0350563 0.876007 +212 0.0350563 0.870527 +SURF 0x10 +mat 1 +refs 4 +204 0.050543 0.891533 +205 0.050543 0.894273 +215 0.0350563 0.877833 +214 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +205 0.050543 0.894273 +206 0.050543 0.894273 +216 0.0350563 0.877833 +215 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +206 0.050543 0.894273 +207 0.050543 0.891533 +217 0.0350563 0.876007 +216 0.0350563 0.877833 +SURF 0x10 +mat 1 +refs 4 +207 0.050543 0.891533 +208 0.050543 0.886053 +218 0.0350563 0.872353 +217 0.0350563 0.876007 +SURF 0x10 +mat 1 +refs 4 +208 0.050543 0.886053 +209 0.050543 0.87144 +219 0.0350563 0.862307 +218 0.0350563 0.872353 +SURF 0x10 +mat 1 +refs 4 +209 0.050543 0.87144 +210 0.050543 0.845867 +220 0.0350563 0.845867 +219 0.0350563 0.862307 +SURF 0x10 +mat 1 +refs 4 +210 0.050543 0.845867 +211 0.050543 0.812074 +221 0.0350563 0.823034 +220 0.0350563 0.845867 +SURF 0x10 +mat 1 +refs 4 +211 0.050543 0.812074 +203 0.050543 0.748142 +213 0.0350563 0.781021 +221 0.0350563 0.823034 +SURF 0x10 +mat 1 +refs 4 +213 0.0350563 0.781021 +212 0.0350563 0.870527 +222 0.0286036 0.861394 +223 0.0286036 0.803854 +SURF 0x10 +mat 1 +refs 4 +212 0.0350563 0.870527 +214 0.0350563 0.876007 +224 0.0286036 0.865047 +222 0.0286036 0.861394 +SURF 0x10 +mat 1 +refs 4 +214 0.0350563 0.876007 +215 0.0350563 0.877833 +225 0.0286036 0.86596 +224 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +215 0.0350563 0.877833 +216 0.0350563 0.877833 +226 0.0286036 0.86596 +225 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +216 0.0350563 0.877833 +217 0.0350563 0.876007 +227 0.0286036 0.865047 +226 0.0286036 0.86596 +SURF 0x10 +mat 1 +refs 4 +217 0.0350563 0.876007 +218 0.0350563 0.872353 +228 0.0286036 0.862307 +227 0.0286036 0.865047 +SURF 0x10 +mat 1 +refs 4 +218 0.0350563 0.872353 +219 0.0350563 0.862307 +229 0.0286036 0.856827 +228 0.0286036 0.862307 +SURF 0x10 +mat 1 +refs 4 +219 0.0350563 0.862307 +220 0.0350563 0.845867 +230 0.0286036 0.845867 +229 0.0286036 0.856827 +SURF 0x10 +mat 1 +refs 4 +220 0.0350563 0.845867 +221 0.0350563 0.823034 +231 0.0286036 0.831254 +230 0.0286036 0.845867 +SURF 0x10 +mat 1 +refs 4 +221 0.0350563 0.823034 +213 0.0350563 0.781021 +223 0.0286036 0.803854 +231 0.0286036 0.831254 +SURF 0x10 +mat 1 +refs 4 +223 0.0286036 0.803854 +222 0.0286036 0.861394 +232 0.0260225 0.854087 +233 0.0260225 0.822121 +SURF 0x10 +mat 1 +refs 4 +222 0.0286036 0.861394 +224 0.0286036 0.865047 +234 0.0260225 0.855914 +232 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +224 0.0286036 0.865047 +225 0.0286036 0.86596 +235 0.0260225 0.856827 +234 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +225 0.0286036 0.86596 +226 0.0286036 0.86596 +236 0.0260225 0.856827 +235 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +226 0.0286036 0.86596 +227 0.0286036 0.865047 +237 0.0260225 0.855914 +236 0.0260225 0.856827 +SURF 0x10 +mat 1 +refs 4 +227 0.0286036 0.865047 +228 0.0286036 0.862307 +238 0.0260225 0.854087 +237 0.0260225 0.855914 +SURF 0x10 +mat 1 +refs 4 +228 0.0286036 0.862307 +229 0.0286036 0.856827 +239 0.0260225 0.851347 +238 0.0260225 0.854087 +SURF 0x10 +mat 1 +refs 4 +229 0.0286036 0.856827 +230 0.0286036 0.845867 +240 0.0260225 0.845867 +239 0.0260225 0.851347 +SURF 0x10 +mat 1 +refs 4 +230 0.0286036 0.845867 +231 0.0286036 0.831254 +241 0.0260225 0.837647 +240 0.0260225 0.845867 +SURF 0x10 +mat 1 +refs 4 +231 0.0286036 0.831254 +223 0.0286036 0.803854 +233 0.0260225 0.822121 +241 0.0260225 0.837647 +SURF 0x10 +mat 1 +refs 3 +233 0.0260225 0.822121 +232 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +232 0.0260225 0.854087 +234 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +234 0.0260225 0.855914 +235 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +235 0.0260225 0.856827 +236 0.0260225 0.856827 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +236 0.0260225 0.856827 +237 0.0260225 0.855914 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +237 0.0260225 0.855914 +238 0.0260225 0.854087 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +238 0.0260225 0.854087 +239 0.0260225 0.851347 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +239 0.0260225 0.851347 +240 0.0260225 0.845867 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +240 0.0260225 0.845867 +241 0.0260225 0.837647 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 3 +241 0.0260225 0.837647 +233 0.0260225 0.822121 +242 0.0234414 0.844954 +SURF 0x10 +mat 1 +refs 4 +171 0.174435 0.685122 +243 0.195084 0.684209 +161 0.195084 0.916193 +173 0.174435 0.913453 +SURF 0x10 +mat 1 +refs 4 +173 0.174435 0.913453 +161 0.195084 0.916193 +160 0.195084 0.932633 +174 0.174435 0.929893 +SURF 0x10 +mat 1 +refs 4 +174 0.174435 0.929893 +160 0.195084 0.932633 +162 0.196375 0.938113 +177 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +177 0.174435 0.934459 +162 0.196375 0.938113 +163 0.196375 0.938113 +179 0.174435 0.934459 +SURF 0x10 +mat 1 +refs 4 +179 0.174435 0.934459 +163 0.196375 0.938113 +164 0.196375 0.932633 +181 0.174435 0.928979 +SURF 0x10 +mat 1 +refs 4 +181 0.174435 0.928979 +164 0.196375 0.932633 +165 0.196375 0.921673 +183 0.174435 0.918933 +SURF 0x10 +mat 1 +refs 4 +183 0.174435 0.918933 +165 0.196375 0.921673 +166 0.196375 0.894273 +185 0.174435 0.892447 +SURF 0x10 +mat 1 +refs 4 +185 0.174435 0.892447 +166 0.196375 0.894273 +167 0.196375 0.845867 +187 0.174435 0.845867 +SURF 0x10 +mat 1 +refs 4 +187 0.174435 0.845867 +167 0.196375 0.845867 +168 0.196375 0.772801 +189 0.174435 0.776455 +SURF 0x10 +mat 1 +refs 4 +128 0.480295 0.664116 +131 0.480295 0.921673 +141 0.380923 0.921673 +244 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +141 0.380923 0.921673 +151 0.271226 0.920759 +245 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +151 0.271226 0.920759 +161 0.195084 0.916193 +243 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 4 +191 0.174435 0.685122 +189 0.174435 0.776455 +168 0.196375 0.772801 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +20 0.695816 0.750882 +2 0.695816 0.568217 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +129 0.480295 0.574611 +139 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +2 0.695816 0.568217 +6 0.695816 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +6 0.695816 0.921673 +131 0.480295 0.921673 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +176 0.129266 0.908886 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +173 0.174435 0.913453 +176 0.129266 0.908886 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +170 0.174435 0.64311 +172 0.129266 0.666856 +SURF 0x10 +mat 1 +refs 3 +191 0.174435 0.685122 +172 0.129266 0.666856 +190 0.129266 0.784674 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +149 0.380923 0.671422 +139 0.480295 0.664116 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 3 +139 0.480295 0.664116 +129 0.480295 0.574611 +128 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +244 0.380923 0.671422 +245 0.271226 0.678729 +159 0.271226 0.678729 +149 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +245 0.271226 0.678729 +243 0.195084 0.684209 +169 0.196375 0.684209 +159 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +243 0.195084 0.684209 +171 0.174435 0.685122 +191 0.174435 0.685122 +169 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 3 +171 0.174435 0.685122 +170 0.174435 0.64311 +191 0.174435 0.685122 +kids 0 +OBJECT poly +name "Wing_Brace_L" +numvert 16 +0.571227 -0.0984255 0.0574664 +0.571227 0.164205 0.661037 +0.616069 0.164205 0.661037 +0.616069 -0.0984255 0.0574664 +0.618555 -0.100705 0.0584581 +0.618555 0.161926 0.662028 +0.618555 0.157547 0.663934 +0.618555 -0.105083 0.0603633 +0.616069 -0.107362 0.061355 +0.616069 0.155268 0.664925 +0.571227 0.155268 0.664925 +0.571227 -0.107362 0.061355 +0.568741 -0.105083 0.0603633 +0.568741 0.157547 0.663934 +0.568741 0.161926 0.662028 +0.568741 -0.100705 0.0584581 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +8 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +14 0 0 +13 0 0 +10 0 0 +9 0 0 +6 0 0 +5 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +5 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +6 0 0 +9 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +10 0 0 +13 0 0 +12 0 0 +11 0 0 +kids 0 +OBJECT poly +name "Wing_Brace_R" +numvert 16 +0.616069 -0.0984255 -0.0574664 +0.616069 0.164205 -0.661037 +0.571227 0.164205 -0.661037 +0.571227 -0.0984255 -0.0574664 +0.618555 -0.105083 -0.0603633 +0.618555 0.157547 -0.663934 +0.618555 0.161926 -0.662028 +0.618555 -0.100705 -0.0584581 +0.571227 -0.107362 -0.061355 +0.571227 0.155268 -0.664925 +0.616069 0.155268 -0.664925 +0.616069 -0.107362 -0.061355 +0.568741 -0.100705 -0.0584581 +0.568741 0.161926 -0.662028 +0.568741 0.157547 -0.663934 +0.568741 -0.105083 -0.0603633 +numsurf 10 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 8 +15 0 0 +8 0 0 +11 0 0 +4 0 0 +7 0 0 +0 0 0 +3 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 8 +1 0 0 +6 0 0 +5 0 0 +10 0 0 +9 0 0 +14 0 0 +13 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 4 +2 0 0 +13 0 0 +12 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 4 +0 0 0 +7 0 0 +6 0 0 +1 0 0 +SURF 0x10 +mat 1 +refs 4 +4 0 0 +11 0 0 +10 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 4 +8 0 0 +15 0 0 +14 0 0 +9 0 0 +kids 0 +OBJECT poly +name "L_Aileron" +texture "Rascal.rgb" +numvert 15 +0.81915 0.138307 0.660425 +0.727528 0.138307 0.660425 +0.735007 0.130692 0.451014 +0.83185 0.130692 0.451014 +0.797416 0.146614 0.888874 +0.719369 0.146614 0.888874 +0.769575 0.152383 1.04752 +0.713703 0.152383 1.04752 +0.757651 0.154008 1.0922 +0.713716 0.162405 1.04716 +0.712107 0.162163 1.0922 +0.727548 0.154078 0.659852 +0.735027 0.146638 0.450434 +0.719388 0.161182 0.888345 +0.712107 0.154008 1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.382125 0.586273 +1 0.382125 0.671581 +2 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +4 0.271736 0.606454 +5 0.271736 0.678919 +1 0.382125 0.671581 +0 0.382125 0.586273 +SURF 0x10 +mat 1 +refs 4 +6 0.195114 0.632138 +7 0.195114 0.684423 +5 0.271736 0.678919 +4 0.271736 0.606454 +SURF 0x10 +mat 1 +refs 4 +8 0.174335 0.643145 +6 0.195114 0.632138 +9 0.196413 0.684423 +10 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 4 +11 0.382125 0.671581 +0 0.382125 0.586273 +3 0.482124 0.574349 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +13 0.271736 0.678919 +4 0.271736 0.606454 +0 0.382125 0.586273 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +9 0.196413 0.684423 +6 0.195114 0.632138 +4 0.271736 0.606454 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +6 0.195114 0.632138 +8 0.174335 0.643145 +14 0.174335 0.68534 +SURF 0x10 +mat 1 +refs 3 +2 0.482124 0.664243 +12 0.482124 0.664243 +3 0.482124 0.574349 +SURF 0x10 +mat 1 +refs 4 +2 0.482124 0.664243 +1 0.382125 0.671581 +11 0.382125 0.671581 +12 0.482124 0.664243 +SURF 0x10 +mat 1 +refs 4 +1 0.382125 0.671581 +5 0.271736 0.678919 +13 0.271736 0.678919 +11 0.382125 0.671581 +SURF 0x10 +mat 1 +refs 4 +5 0.271736 0.678919 +7 0.195114 0.684423 +9 0.196413 0.684423 +13 0.271736 0.678919 +SURF 0x10 +mat 1 +refs 4 +7 0.195114 0.684423 +14 0.174335 0.68534 +10 0.174335 0.68534 +9 0.196413 0.684423 +SURF 0x10 +mat 1 +refs 3 +14 0.174335 0.68534 +8 0.174335 0.643145 +10 0.174335 0.68534 +kids 0 +OBJECT poly +name "R_Aileron" +texture "Rascal.rgb" +numvert 15 +0.83185 0.130692 -0.451014 +0.735007 0.130692 -0.451014 +0.727528 0.138307 -0.660425 +0.81915 0.138307 -0.660425 +0.719369 0.146614 -0.888874 +0.797416 0.146614 -0.888874 +0.713703 0.152383 -1.04752 +0.769575 0.152383 -1.04752 +0.712107 0.162163 -1.0922 +0.713716 0.162405 -1.04716 +0.757651 0.154008 -1.0922 +0.735027 0.146638 -0.450434 +0.727548 0.154078 -0.659852 +0.719388 0.161182 -0.888345 +0.712107 0.154008 -1.0922 +numsurf 14 +SURF 0x10 +mat 1 +refs 4 +0 0.480295 0.574611 +1 0.480295 0.664116 +2 0.380923 0.671422 +3 0.380923 0.586484 +SURF 0x10 +mat 1 +refs 4 +3 0.380923 0.586484 +2 0.380923 0.671422 +4 0.271226 0.678729 +5 0.271226 0.606577 +SURF 0x10 +mat 1 +refs 4 +5 0.271226 0.606577 +4 0.271226 0.678729 +6 0.195084 0.684209 +7 0.195084 0.63215 +SURF 0x10 +mat 1 +refs 4 +8 0.174435 0.685122 +9 0.196375 0.684209 +7 0.195084 0.63215 +10 0.174435 0.64311 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +0 0.480295 0.574611 +3 0.380923 0.586484 +12 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +3 0.380923 0.586484 +5 0.271226 0.606577 +13 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +5 0.271226 0.606577 +7 0.195084 0.63215 +9 0.196375 0.684209 +SURF 0x10 +mat 1 +refs 4 +14 0.174435 0.685122 +10 0.174435 0.64311 +7 0.195084 0.63215 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +0 0.480295 0.574611 +11 0.480295 0.664116 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +11 0.480295 0.664116 +12 0.380923 0.671422 +2 0.380923 0.671422 +1 0.480295 0.664116 +SURF 0x10 +mat 1 +refs 4 +12 0.380923 0.671422 +13 0.271226 0.678729 +4 0.271226 0.678729 +2 0.380923 0.671422 +SURF 0x10 +mat 1 +refs 4 +13 0.271226 0.678729 +9 0.196375 0.684209 +6 0.195084 0.684209 +4 0.271226 0.678729 +SURF 0x10 +mat 1 +refs 4 +9 0.196375 0.684209 +8 0.174435 0.685122 +14 0.174435 0.685122 +6 0.195084 0.684209 +SURF 0x10 +mat 1 +refs 3 +8 0.174435 0.685122 +10 0.174435 0.64311 +14 0.174435 0.685122 +kids 0 +OBJECT poly +name "HStab" +texture "Rascal.rgb" +numvert 379 +1.59385 0.0579271 -0.01905 +1.59067 0.0570764 -0.01905 +1.59067 0.0570764 2.90536e-16 +1.59385 0.0579271 2.91315e-16 +1.58835 0.0547521 -0.01905 +1.58835 0.0547521 2.89966e-16 +1.5875 0.0515771 -0.01905 +1.5875 0.0515771 2.8976e-16 +1.58835 0.0484021 -0.01905 +1.58835 0.0484021 2.89966e-16 +1.59067 0.0460779 -0.01905 +1.59067 0.0460779 2.90536e-16 +1.59385 0.0452271 -0.01905 +1.59385 0.0452271 2.91315e-16 +1.6915 0.0570764 -0.459231 +1.70116 0.0570764 -0.45927 +1.70251 0.0547521 -0.461157 +1.6901 0.0547521 -0.461082 +1.59385 0.0579271 -0.0254 +1.59067 0.0570764 -0.0254 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 -0.0254 +1.59067 0.0460779 -0.0254 +1.59385 0.0452271 -0.0254 +1.58835 0.0484021 -0.0254 +1.5875 0.0515771 -0.0254 +1.58835 0.0547521 -0.0254 +1.59385 0.0579271 -0.0381 +1.59067 0.0570764 -0.0381 +1.7526 0.0579271 -0.0381 +1.59067 0.0460779 -0.0381 +1.59385 0.0452271 -0.0381 +1.58835 0.0484021 -0.0381 +1.5875 0.0515771 -0.0381 +1.58835 0.0547521 -0.0381 +1.59385 0.0579271 -0.05715 +1.59067 0.0570764 -0.05715 +1.7526 0.0579271 -0.05715 +1.59067 0.0460779 -0.05715 +1.59385 0.0452271 -0.05715 +1.58835 0.0484021 -0.05715 +1.5875 0.0515771 -0.05715 +1.58835 0.0547521 -0.05715 +1.59385 0.0579271 -0.0762 +1.59067 0.0570764 -0.0762 +1.7526 0.0579271 -0.0762 +1.59067 0.0460779 -0.0762 +1.59385 0.0452271 -0.0762 +1.58835 0.0484021 -0.0762 +1.5875 0.0515771 -0.0762 +1.58835 0.0547521 -0.0762 +1.59385 0.0579271 -0.1016 +1.59067 0.0570764 -0.1016 +1.7526 0.0579271 -0.1016 +1.59067 0.0460779 -0.1016 +1.59385 0.0452271 -0.1016 +1.58835 0.0484021 -0.1016 +1.5875 0.0515771 -0.1016 +1.58835 0.0547521 -0.1016 +1.59449 0.0579271 -0.1397 +1.59131 0.0570764 -0.1397 +1.7526 0.0579271 -0.1397 +1.59131 0.0460779 -0.1397 +1.59449 0.0452271 -0.1397 +1.58899 0.0484021 -0.1397 +1.58814 0.0515771 -0.1397 +1.58899 0.0547521 -0.1397 +1.59619 0.0579271 -0.1778 +1.59302 0.0570764 -0.1778 +1.7526 0.0579271 -0.1778 +1.59302 0.0460779 -0.1778 +1.59619 0.0452271 -0.1778 +1.5907 0.0484021 -0.1778 +1.58984 0.0515771 -0.1778 +1.5907 0.0547521 -0.1778 +1.59953 0.0579271 -0.228995 +1.59636 0.0570764 -0.228995 +1.7526 0.0579271 -0.228995 +1.59636 0.0460779 -0.228995 +1.59953 0.0452271 -0.228995 +1.59403 0.0484021 -0.228995 +1.59318 0.0515771 -0.228995 +1.59403 0.0547521 -0.228995 +1.60458 0.0579271 -0.280191 +1.6014 0.0570764 -0.280191 +1.7526 0.0579271 -0.280191 +1.6014 0.0460779 -0.280191 +1.60458 0.0452271 -0.280191 +1.59908 0.0484021 -0.280191 +1.59823 0.0515771 -0.280191 +1.59908 0.0547521 -0.280191 +1.61261 0.0579271 -0.331386 +1.60943 0.0570764 -0.331386 +1.7526 0.0579271 -0.331386 +1.60943 0.0460779 -0.331386 +1.61261 0.0452271 -0.331386 +1.60711 0.0484021 -0.331386 +1.60626 0.0515771 -0.331386 +1.60711 0.0547521 -0.331386 +1.62359 0.0579271 -0.382186 +1.62041 0.0570764 -0.382186 +1.7526 0.0579271 -0.382186 +1.62041 0.0460779 -0.382186 +1.62359 0.0452271 -0.382186 +1.61809 0.0484021 -0.382186 +1.61724 0.0515771 -0.382186 +1.61809 0.0547521 -0.382186 +1.63542 0.0579271 -0.408368 +1.63225 0.0570764 -0.408368 +1.77365 0.0579271 -0.382186 +1.77682 0.0570764 -0.382186 +1.76299 0.0570764 -0.408368 +1.75982 0.0579271 -0.408368 +1.77915 0.0547521 -0.382186 +1.76532 0.0547521 -0.408368 +1.78 0.0515771 -0.382186 +1.76617 0.0515771 -0.408368 +1.77915 0.0484021 -0.382186 +1.76532 0.0484021 -0.408368 +1.77682 0.0460779 -0.382186 +1.76299 0.0460779 -0.408368 +1.77365 0.0452271 -0.382186 +1.75982 0.0452271 -0.408368 +1.7526 0.0452271 -0.382186 +1.63225 0.0460779 -0.408368 +1.63542 0.0452271 -0.408368 +1.62992 0.0484021 -0.408368 +1.62907 0.0515771 -0.408368 +1.62992 0.0547521 -0.408368 +1.65311 0.0579271 -0.433768 +1.64994 0.0570764 -0.433768 +1.74152 0.0579271 -0.433768 +1.7447 0.0570764 -0.433768 +1.74702 0.0547521 -0.433768 +1.74787 0.0515771 -0.433768 +1.74702 0.0484021 -0.433768 +1.7447 0.0460779 -0.433768 +1.74152 0.0452271 -0.433768 +1.65311 0.0452271 -0.433768 +1.64994 0.0460779 -0.433768 +1.64761 0.0484021 -0.433768 +1.64676 0.0515771 -0.433768 +1.64761 0.0547521 -0.433768 +1.66243 0.0579271 -0.442748 +1.65925 0.0570764 -0.442748 +1.73216 0.0579271 -0.442748 +1.73533 0.0570764 -0.442748 +1.73766 0.0547521 -0.442748 +1.73851 0.0515771 -0.442748 +1.73766 0.0484021 -0.442748 +1.73533 0.0460779 -0.442748 +1.73216 0.0452271 -0.442748 +1.66243 0.0452271 -0.442748 +1.65925 0.0460779 -0.442748 +1.65693 0.0484021 -0.442748 +1.65608 0.0515771 -0.442748 +1.65693 0.0547521 -0.442748 +1.68017 0.0579271 -0.455448 +1.67699 0.0570764 -0.455448 +1.71417 0.0579271 -0.455448 +1.71734 0.0570764 -0.455448 +1.71967 0.0547521 -0.455448 +1.72052 0.0515771 -0.455448 +1.71967 0.0484021 -0.455448 +1.71734 0.0460779 -0.455448 +1.71417 0.0452271 -0.455448 +1.68017 0.0452271 -0.455448 +1.67699 0.0460779 -0.455448 +1.67467 0.0484021 -0.455448 +1.67382 0.0515771 -0.455448 +1.67467 0.0547521 -0.455448 +1.69342 0.0579271 -0.456702 +1.6993 0.0579271 -0.456694 +1.70301 0.0515771 -0.461847 +1.70251 0.0484021 -0.461157 +1.70116 0.0460779 -0.45927 +1.6993 0.0452271 -0.456694 +1.69342 0.0452271 -0.456702 +1.6915 0.0460779 -0.459231 +1.6901 0.0484021 -0.461082 +1.68958 0.0515771 -0.461759 +1.59067 0.0570764 0.01905 +1.59385 0.0579271 0.01905 +1.58835 0.0547521 0.01905 +1.5875 0.0515771 0.01905 +1.58835 0.0484021 0.01905 +1.59067 0.0460779 0.01905 +1.59385 0.0452271 0.01905 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 0.01905 +1.6901 0.0547521 0.461082 +1.70251 0.0547521 0.461157 +1.70116 0.0570764 0.45927 +1.6915 0.0570764 0.459231 +1.59067 0.0570764 0.0254 +1.59385 0.0579271 0.0254 +1.7526 0.0579271 0.0254 +1.59385 0.0452271 0.0254 +1.59067 0.0460779 0.0254 +1.58835 0.0484021 0.0254 +1.5875 0.0515771 0.0254 +1.58835 0.0547521 0.0254 +1.59067 0.0570764 0.0381 +1.59385 0.0579271 0.0381 +1.7526 0.0579271 0.0381 +1.59385 0.0452271 0.0381 +1.59067 0.0460779 0.0381 +1.58835 0.0484021 0.0381 +1.5875 0.0515771 0.0381 +1.58835 0.0547521 0.0381 +1.59067 0.0570764 0.05715 +1.59385 0.0579271 0.05715 +1.7526 0.0579271 0.05715 +1.59385 0.0452271 0.05715 +1.59067 0.0460779 0.05715 +1.58835 0.0484021 0.05715 +1.5875 0.0515771 0.05715 +1.58835 0.0547521 0.05715 +1.59067 0.0570764 0.0762 +1.59385 0.0579271 0.0762 +1.7526 0.0579271 0.0762 +1.59385 0.0452271 0.0762 +1.59067 0.0460779 0.0762 +1.58835 0.0484021 0.0762 +1.5875 0.0515771 0.0762 +1.58835 0.0547521 0.0762 +1.59067 0.0570764 0.1016 +1.59385 0.0579271 0.1016 +1.7526 0.0579271 0.1016 +1.59385 0.0452271 0.1016 +1.59067 0.0460779 0.1016 +1.58835 0.0484021 0.1016 +1.5875 0.0515771 0.1016 +1.58835 0.0547521 0.1016 +1.59131 0.0570764 0.1397 +1.59449 0.0579271 0.1397 +1.7526 0.0579271 0.1397 +1.59449 0.0452271 0.1397 +1.59131 0.0460779 0.1397 +1.58899 0.0484021 0.1397 +1.58814 0.0515771 0.1397 +1.58899 0.0547521 0.1397 +1.59302 0.0570764 0.1778 +1.59619 0.0579271 0.1778 +1.7526 0.0579271 0.1778 +1.59619 0.0452271 0.1778 +1.59302 0.0460779 0.1778 +1.5907 0.0484021 0.1778 +1.58984 0.0515771 0.1778 +1.5907 0.0547521 0.1778 +1.59636 0.0570764 0.228995 +1.59953 0.0579271 0.228995 +1.7526 0.0579271 0.228995 +1.59953 0.0452271 0.228995 +1.59636 0.0460779 0.228995 +1.59403 0.0484021 0.228995 +1.59318 0.0515771 0.228995 +1.59403 0.0547521 0.228995 +1.6014 0.0570764 0.280191 +1.60458 0.0579271 0.280191 +1.7526 0.0579271 0.280191 +1.60458 0.0452271 0.280191 +1.6014 0.0460779 0.280191 +1.59908 0.0484021 0.280191 +1.59823 0.0515771 0.280191 +1.59908 0.0547521 0.280191 +1.60943 0.0570764 0.331386 +1.61261 0.0579271 0.331386 +1.7526 0.0579271 0.331386 +1.61261 0.0452271 0.331386 +1.60943 0.0460779 0.331386 +1.60711 0.0484021 0.331386 +1.60626 0.0515771 0.331386 +1.60711 0.0547521 0.331386 +1.62041 0.0570764 0.382186 +1.62359 0.0579271 0.382186 +1.7526 0.0579271 0.382186 +1.62359 0.0452271 0.382186 +1.62041 0.0460779 0.382186 +1.61809 0.0484021 0.382186 +1.61724 0.0515771 0.382186 +1.61809 0.0547521 0.382186 +1.63225 0.0570764 0.408368 +1.63542 0.0579271 0.408368 +1.75982 0.0579271 0.408368 +1.76299 0.0570764 0.408368 +1.77682 0.0570764 0.382186 +1.77365 0.0579271 0.382186 +1.76532 0.0547521 0.408368 +1.77915 0.0547521 0.382186 +1.76617 0.0515771 0.408368 +1.78 0.0515771 0.382186 +1.76532 0.0484021 0.408368 +1.77915 0.0484021 0.382186 +1.76299 0.0460779 0.408368 +1.77682 0.0460779 0.382186 +1.75982 0.0452271 0.408368 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.63542 0.0452271 0.408368 +1.63225 0.0460779 0.408368 +1.62992 0.0484021 0.408368 +1.62907 0.0515771 0.408368 +1.62992 0.0547521 0.408368 +1.64994 0.0570764 0.433768 +1.65311 0.0579271 0.433768 +1.74152 0.0579271 0.433768 +1.7447 0.0570764 0.433768 +1.74702 0.0547521 0.433768 +1.74787 0.0515771 0.433768 +1.74702 0.0484021 0.433768 +1.7447 0.0460779 0.433768 +1.74152 0.0452271 0.433768 +1.65311 0.0452271 0.433768 +1.64994 0.0460779 0.433768 +1.64761 0.0484021 0.433768 +1.64676 0.0515771 0.433768 +1.64761 0.0547521 0.433768 +1.65925 0.0570764 0.442748 +1.66243 0.0579271 0.442748 +1.73216 0.0579271 0.442748 +1.73533 0.0570764 0.442748 +1.73766 0.0547521 0.442748 +1.73851 0.0515771 0.442748 +1.73766 0.0484021 0.442748 +1.73533 0.0460779 0.442748 +1.73216 0.0452271 0.442748 +1.66243 0.0452271 0.442748 +1.65925 0.0460779 0.442748 +1.65693 0.0484021 0.442748 +1.65608 0.0515771 0.442748 +1.65693 0.0547521 0.442748 +1.67699 0.0570764 0.455448 +1.68017 0.0579271 0.455448 +1.71417 0.0579271 0.455448 +1.71734 0.0570764 0.455448 +1.71967 0.0547521 0.455448 +1.72052 0.0515771 0.455448 +1.71967 0.0484021 0.455448 +1.71734 0.0460779 0.455448 +1.71417 0.0452271 0.455448 +1.68017 0.0452271 0.455448 +1.67699 0.0460779 0.455448 +1.67467 0.0484021 0.455448 +1.67382 0.0515771 0.455448 +1.67467 0.0547521 0.455448 +1.69342 0.0579271 0.456702 +1.6993 0.0579271 0.456694 +1.70301 0.0515771 0.461847 +1.70251 0.0484021 0.461157 +1.70116 0.0460779 0.45927 +1.6993 0.0452271 0.456694 +1.69342 0.0452271 0.456702 +1.6915 0.0460779 0.459231 +1.6901 0.0484021 0.461082 +1.68958 0.0515771 0.461759 +1.7526 0.0452271 -0.01905 +1.7526 0.0452271 -0.0254 +1.7526 0.0452271 -0.0381 +1.7526 0.0452271 -0.05715 +1.7526 0.0452271 -0.0762 +1.7526 0.0452271 -0.1016 +1.7526 0.0452271 -0.1397 +1.7526 0.0452271 -0.1778 +1.7526 0.0452271 -0.228995 +1.7526 0.0452271 -0.280191 +1.7526 0.0452271 -0.331386 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.0381 +1.7526 0.0452271 0.05715 +1.7526 0.0452271 0.0762 +1.7526 0.0452271 0.1016 +1.7526 0.0452271 0.1397 +1.7526 0.0452271 0.1778 +1.7526 0.0452271 0.228995 +1.7526 0.0452271 0.280191 +1.7526 0.0452271 0.331386 +numsurf 384 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +1 0.742627 0.922959 +2 0.742627 0.941242 +3 0.744104 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +4 0.74155 0.922959 +5 0.74155 0.941242 +2 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +6 0.741155 0.922959 +7 0.741155 0.941242 +5 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +8 0.74155 0.922959 +9 0.74155 0.941242 +7 0.741155 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +10 0.742627 0.922959 +11 0.742627 0.941242 +9 0.74155 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +12 0.744104 0.922959 +13 0.744104 0.941242 +11 0.742627 0.941242 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +15 0.793943 0.500463 +16 0.79457 0.498652 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +1 0.742627 0.922959 +0 0.744104 0.922959 +18 0.744104 0.916865 +19 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.744104 0.922959 +20 0.817833 0.922959 +21 0.817833 0.916865 +18 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +12 0.744104 0.922959 +10 0.742627 0.922959 +22 0.742627 0.916865 +23 0.744104 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.742627 0.922959 +8 0.74155 0.922959 +24 0.74155 0.916865 +22 0.742627 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.74155 0.922959 +6 0.741155 0.922959 +25 0.741155 0.916865 +24 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.741155 0.922959 +4 0.74155 0.922959 +26 0.74155 0.916865 +25 0.741155 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.74155 0.922959 +1 0.742627 0.922959 +19 0.742627 0.916865 +26 0.74155 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.742627 0.916865 +18 0.744104 0.916865 +27 0.744104 0.904676 +28 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.744104 0.916865 +21 0.817833 0.916865 +29 0.817833 0.904676 +27 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.744104 0.916865 +22 0.742627 0.916865 +30 0.742627 0.904676 +31 0.744104 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.742627 0.916865 +24 0.74155 0.916865 +32 0.74155 0.904676 +30 0.742627 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.74155 0.916865 +25 0.741155 0.916865 +33 0.741155 0.904676 +32 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +25 0.741155 0.916865 +26 0.74155 0.916865 +34 0.74155 0.904676 +33 0.741155 0.904676 +SURF 0x10 +mat 1 +refs 4 +26 0.74155 0.916865 +19 0.742627 0.916865 +28 0.742627 0.904676 +34 0.74155 0.904676 +SURF 0x10 +mat 1 +refs 4 +28 0.742627 0.904676 +27 0.744104 0.904676 +35 0.744104 0.886393 +36 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +27 0.744104 0.904676 +29 0.817833 0.904676 +37 0.817833 0.886393 +35 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.744104 0.904676 +30 0.742627 0.904676 +38 0.742627 0.886393 +39 0.744104 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.742627 0.904676 +32 0.74155 0.904676 +40 0.74155 0.886393 +38 0.742627 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.74155 0.904676 +33 0.741155 0.904676 +41 0.741155 0.886393 +40 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +33 0.741155 0.904676 +34 0.74155 0.904676 +42 0.74155 0.886393 +41 0.741155 0.886393 +SURF 0x10 +mat 1 +refs 4 +34 0.74155 0.904676 +28 0.742627 0.904676 +36 0.742627 0.886393 +42 0.74155 0.886393 +SURF 0x10 +mat 1 +refs 4 +36 0.742627 0.886393 +35 0.744104 0.886393 +43 0.744104 0.86811 +44 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +35 0.744104 0.886393 +37 0.817833 0.886393 +45 0.817833 0.86811 +43 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.744104 0.886393 +38 0.742627 0.886393 +46 0.742627 0.86811 +47 0.744104 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.742627 0.886393 +40 0.74155 0.886393 +48 0.74155 0.86811 +46 0.742627 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.74155 0.886393 +41 0.741155 0.886393 +49 0.741155 0.86811 +48 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +41 0.741155 0.886393 +42 0.74155 0.886393 +50 0.74155 0.86811 +49 0.741155 0.86811 +SURF 0x10 +mat 1 +refs 4 +42 0.74155 0.886393 +36 0.742627 0.886393 +44 0.742627 0.86811 +50 0.74155 0.86811 +SURF 0x10 +mat 1 +refs 4 +44 0.742627 0.86811 +43 0.744104 0.86811 +51 0.744104 0.843733 +52 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +43 0.744104 0.86811 +45 0.817833 0.86811 +53 0.817833 0.843733 +51 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.744104 0.86811 +46 0.742627 0.86811 +54 0.742627 0.843733 +55 0.744104 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.742627 0.86811 +48 0.74155 0.86811 +56 0.74155 0.843733 +54 0.742627 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.74155 0.86811 +49 0.741155 0.86811 +57 0.741155 0.843733 +56 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +49 0.741155 0.86811 +50 0.74155 0.86811 +58 0.74155 0.843733 +57 0.741155 0.843733 +SURF 0x10 +mat 1 +refs 4 +50 0.74155 0.86811 +44 0.742627 0.86811 +52 0.742627 0.843733 +58 0.74155 0.843733 +SURF 0x10 +mat 1 +refs 4 +52 0.742627 0.843733 +51 0.744104 0.843733 +59 0.744401 0.807167 +60 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +51 0.744104 0.843733 +53 0.817833 0.843733 +61 0.817833 0.807167 +59 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.744104 0.843733 +54 0.742627 0.843733 +62 0.742924 0.807167 +63 0.744401 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.742627 0.843733 +56 0.74155 0.843733 +64 0.741847 0.807167 +62 0.742924 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.74155 0.843733 +57 0.741155 0.843733 +65 0.741452 0.807167 +64 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +57 0.741155 0.843733 +58 0.74155 0.843733 +66 0.741847 0.807167 +65 0.741452 0.807167 +SURF 0x10 +mat 1 +refs 4 +58 0.74155 0.843733 +52 0.742627 0.843733 +60 0.742924 0.807167 +66 0.741847 0.807167 +SURF 0x10 +mat 1 +refs 4 +60 0.742924 0.807167 +59 0.744401 0.807167 +67 0.745191 0.7706 +68 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +59 0.744401 0.807167 +61 0.817833 0.807167 +69 0.817833 0.7706 +67 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.744401 0.807167 +62 0.742924 0.807167 +70 0.743718 0.7706 +71 0.745191 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.742924 0.807167 +64 0.741847 0.807167 +72 0.742641 0.7706 +70 0.743718 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.741847 0.807167 +65 0.741452 0.807167 +73 0.742242 0.7706 +72 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +65 0.741452 0.807167 +66 0.741847 0.807167 +74 0.742641 0.7706 +73 0.742242 0.7706 +SURF 0x10 +mat 1 +refs 4 +66 0.741847 0.807167 +60 0.742924 0.807167 +68 0.743718 0.7706 +74 0.742641 0.7706 +SURF 0x10 +mat 1 +refs 4 +68 0.743718 0.7706 +67 0.745191 0.7706 +75 0.746742 0.721467 +76 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +67 0.745191 0.7706 +69 0.817833 0.7706 +77 0.817833 0.721467 +75 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.745191 0.7706 +70 0.743718 0.7706 +78 0.74527 0.721467 +79 0.746742 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.743718 0.7706 +72 0.742641 0.7706 +80 0.744188 0.721467 +78 0.74527 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.742641 0.7706 +73 0.742242 0.7706 +81 0.743793 0.721467 +80 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +73 0.742242 0.7706 +74 0.742641 0.7706 +82 0.744188 0.721467 +81 0.743793 0.721467 +SURF 0x10 +mat 1 +refs 4 +74 0.742641 0.7706 +68 0.743718 0.7706 +76 0.74527 0.721467 +82 0.744188 0.721467 +SURF 0x10 +mat 1 +refs 4 +76 0.74527 0.721467 +75 0.746742 0.721467 +83 0.749087 0.672332 +84 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +75 0.746742 0.721467 +77 0.817833 0.721467 +85 0.817833 0.672332 +83 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.746742 0.721467 +78 0.74527 0.721467 +86 0.747611 0.672332 +87 0.749087 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.74527 0.721467 +80 0.744188 0.721467 +88 0.746533 0.672332 +86 0.747611 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.744188 0.721467 +81 0.743793 0.721467 +89 0.746138 0.672332 +88 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +81 0.743793 0.721467 +82 0.744188 0.721467 +90 0.746533 0.672332 +89 0.746138 0.672332 +SURF 0x10 +mat 1 +refs 4 +82 0.744188 0.721467 +76 0.74527 0.721467 +84 0.747611 0.672332 +90 0.746533 0.672332 +SURF 0x10 +mat 1 +refs 4 +84 0.747611 0.672332 +83 0.749087 0.672332 +91 0.752817 0.623198 +92 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +83 0.749087 0.672332 +85 0.817833 0.672332 +93 0.817833 0.623198 +91 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.749087 0.672332 +86 0.747611 0.672332 +94 0.75134 0.623198 +95 0.752817 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.747611 0.672332 +88 0.746533 0.672332 +96 0.750262 0.623198 +94 0.75134 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.746533 0.672332 +89 0.746138 0.672332 +97 0.749868 0.623198 +96 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +89 0.746138 0.672332 +90 0.746533 0.672332 +98 0.750262 0.623198 +97 0.749868 0.623198 +SURF 0x10 +mat 1 +refs 4 +90 0.746533 0.672332 +84 0.747611 0.672332 +92 0.75134 0.623198 +98 0.750262 0.623198 +SURF 0x10 +mat 1 +refs 4 +92 0.75134 0.623198 +91 0.752817 0.623198 +99 0.757916 0.574443 +100 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +91 0.752817 0.623198 +93 0.817833 0.623198 +101 0.817833 0.574443 +99 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.752817 0.623198 +94 0.75134 0.623198 +102 0.756439 0.574443 +103 0.757916 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.75134 0.623198 +96 0.750262 0.623198 +104 0.755362 0.574443 +102 0.756439 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.750262 0.623198 +97 0.749868 0.623198 +105 0.754967 0.574443 +104 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +97 0.749868 0.623198 +98 0.750262 0.623198 +106 0.755362 0.574443 +105 0.754967 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.750262 0.623198 +92 0.75134 0.623198 +100 0.756439 0.574443 +106 0.755362 0.574443 +SURF 0x10 +mat 1 +refs 4 +100 0.756439 0.574443 +99 0.757916 0.574443 +107 0.763411 0.549315 +108 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 3 +99 0.757916 0.574443 +101 0.817833 0.574443 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +109 0.82761 0.574443 +110 0.829082 0.574443 +111 0.822659 0.549315 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +110 0.829082 0.574443 +113 0.830164 0.574443 +114 0.823741 0.549315 +111 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 4 +113 0.830164 0.574443 +115 0.830559 0.574443 +116 0.824136 0.549315 +114 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +115 0.830559 0.574443 +117 0.830164 0.574443 +118 0.823741 0.549315 +116 0.824136 0.549315 +SURF 0x10 +mat 1 +refs 4 +117 0.830164 0.574443 +119 0.829082 0.574443 +120 0.822659 0.549315 +118 0.823741 0.549315 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +121 0.82761 0.574443 +122 0.821187 0.549315 +120 0.822659 0.549315 +SURF 0x10 +mat 1 +refs 3 +121 0.82761 0.574443 +123 0.817833 0.574443 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 4 +103 0.757916 0.574443 +102 0.756439 0.574443 +124 0.761938 0.549315 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +102 0.756439 0.574443 +104 0.755362 0.574443 +126 0.760856 0.549315 +124 0.761938 0.549315 +SURF 0x10 +mat 1 +refs 4 +104 0.755362 0.574443 +105 0.754967 0.574443 +127 0.760462 0.549315 +126 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +105 0.754967 0.574443 +106 0.755362 0.574443 +128 0.760856 0.549315 +127 0.760462 0.549315 +SURF 0x10 +mat 1 +refs 4 +106 0.755362 0.574443 +100 0.756439 0.574443 +108 0.761938 0.549315 +128 0.760856 0.549315 +SURF 0x10 +mat 1 +refs 4 +108 0.761938 0.549315 +107 0.763411 0.549315 +129 0.771627 0.524938 +130 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +107 0.763411 0.549315 +112 0.821187 0.549315 +131 0.812688 0.524938 +129 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +112 0.821187 0.549315 +111 0.822659 0.549315 +132 0.814164 0.524938 +131 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +111 0.822659 0.549315 +114 0.823741 0.549315 +133 0.815242 0.524938 +132 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +114 0.823741 0.549315 +116 0.824136 0.549315 +134 0.815637 0.524938 +133 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +116 0.824136 0.549315 +118 0.823741 0.549315 +135 0.815242 0.524938 +134 0.815637 0.524938 +SURF 0x10 +mat 1 +refs 4 +118 0.823741 0.549315 +120 0.822659 0.549315 +136 0.814164 0.524938 +135 0.815242 0.524938 +SURF 0x10 +mat 1 +refs 4 +120 0.822659 0.549315 +122 0.821187 0.549315 +137 0.812688 0.524938 +136 0.814164 0.524938 +SURF 0x10 +mat 1 +refs 4 +122 0.821187 0.549315 +125 0.763411 0.549315 +138 0.771627 0.524938 +137 0.812688 0.524938 +SURF 0x10 +mat 1 +refs 4 +125 0.763411 0.549315 +124 0.761938 0.549315 +139 0.770154 0.524938 +138 0.771627 0.524938 +SURF 0x10 +mat 1 +refs 4 +124 0.761938 0.549315 +126 0.760856 0.549315 +140 0.769072 0.524938 +139 0.770154 0.524938 +SURF 0x10 +mat 1 +refs 4 +126 0.760856 0.549315 +127 0.760462 0.549315 +141 0.768677 0.524938 +140 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +127 0.760462 0.549315 +128 0.760856 0.549315 +142 0.769072 0.524938 +141 0.768677 0.524938 +SURF 0x10 +mat 1 +refs 4 +128 0.760856 0.549315 +108 0.761938 0.549315 +130 0.770154 0.524938 +142 0.769072 0.524938 +SURF 0x10 +mat 1 +refs 4 +130 0.770154 0.524938 +129 0.771627 0.524938 +143 0.775955 0.516319 +144 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +129 0.771627 0.524938 +131 0.812688 0.524938 +145 0.80834 0.516319 +143 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +131 0.812688 0.524938 +132 0.814164 0.524938 +146 0.809813 0.516319 +145 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +132 0.814164 0.524938 +133 0.815242 0.524938 +147 0.810895 0.516319 +146 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +133 0.815242 0.524938 +134 0.815637 0.524938 +148 0.81129 0.516319 +147 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +134 0.815637 0.524938 +135 0.815242 0.524938 +149 0.810895 0.516319 +148 0.81129 0.516319 +SURF 0x10 +mat 1 +refs 4 +135 0.815242 0.524938 +136 0.814164 0.524938 +150 0.809813 0.516319 +149 0.810895 0.516319 +SURF 0x10 +mat 1 +refs 4 +136 0.814164 0.524938 +137 0.812688 0.524938 +151 0.80834 0.516319 +150 0.809813 0.516319 +SURF 0x10 +mat 1 +refs 4 +137 0.812688 0.524938 +138 0.771627 0.524938 +152 0.775955 0.516319 +151 0.80834 0.516319 +SURF 0x10 +mat 1 +refs 4 +138 0.771627 0.524938 +139 0.770154 0.524938 +153 0.774478 0.516319 +152 0.775955 0.516319 +SURF 0x10 +mat 1 +refs 4 +139 0.770154 0.524938 +140 0.769072 0.524938 +154 0.773401 0.516319 +153 0.774478 0.516319 +SURF 0x10 +mat 1 +refs 4 +140 0.769072 0.524938 +141 0.768677 0.524938 +155 0.773006 0.516319 +154 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +141 0.768677 0.524938 +142 0.769072 0.524938 +156 0.773401 0.516319 +155 0.773006 0.516319 +SURF 0x10 +mat 1 +refs 4 +142 0.769072 0.524938 +130 0.770154 0.524938 +144 0.774478 0.516319 +156 0.773401 0.516319 +SURF 0x10 +mat 1 +refs 4 +144 0.774478 0.516319 +143 0.775955 0.516319 +157 0.784194 0.504131 +158 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +143 0.775955 0.516319 +145 0.80834 0.516319 +159 0.799985 0.504131 +157 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +145 0.80834 0.516319 +146 0.809813 0.516319 +160 0.801457 0.504131 +159 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +146 0.809813 0.516319 +147 0.810895 0.516319 +161 0.80254 0.504131 +160 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +147 0.810895 0.516319 +148 0.81129 0.516319 +162 0.802934 0.504131 +161 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +148 0.81129 0.516319 +149 0.810895 0.516319 +163 0.80254 0.504131 +162 0.802934 0.504131 +SURF 0x10 +mat 1 +refs 4 +149 0.810895 0.516319 +150 0.809813 0.516319 +164 0.801457 0.504131 +163 0.80254 0.504131 +SURF 0x10 +mat 1 +refs 4 +150 0.809813 0.516319 +151 0.80834 0.516319 +165 0.799985 0.504131 +164 0.801457 0.504131 +SURF 0x10 +mat 1 +refs 4 +151 0.80834 0.516319 +152 0.775955 0.516319 +166 0.784194 0.504131 +165 0.799985 0.504131 +SURF 0x10 +mat 1 +refs 4 +152 0.775955 0.516319 +153 0.774478 0.516319 +167 0.782717 0.504131 +166 0.784194 0.504131 +SURF 0x10 +mat 1 +refs 4 +153 0.774478 0.516319 +154 0.773401 0.516319 +168 0.78164 0.504131 +167 0.782717 0.504131 +SURF 0x10 +mat 1 +refs 4 +154 0.773401 0.516319 +155 0.773006 0.516319 +169 0.781245 0.504131 +168 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +155 0.773006 0.516319 +156 0.773401 0.516319 +170 0.78164 0.504131 +169 0.781245 0.504131 +SURF 0x10 +mat 1 +refs 4 +156 0.773401 0.516319 +144 0.774478 0.516319 +158 0.782717 0.504131 +170 0.78164 0.504131 +SURF 0x10 +mat 1 +refs 4 +158 0.782717 0.504131 +157 0.784194 0.504131 +171 0.790348 0.502927 +14 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +157 0.784194 0.504131 +159 0.799985 0.504131 +172 0.793079 0.502935 +171 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +159 0.799985 0.504131 +160 0.801457 0.504131 +15 0.793943 0.500463 +172 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +160 0.801457 0.504131 +161 0.80254 0.504131 +16 0.79457 0.498652 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +161 0.80254 0.504131 +162 0.802934 0.504131 +173 0.794802 0.497989 +16 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +162 0.802934 0.504131 +163 0.80254 0.504131 +174 0.79457 0.498652 +173 0.794802 0.497989 +SURF 0x10 +mat 1 +refs 4 +163 0.80254 0.504131 +164 0.801457 0.504131 +175 0.793943 0.500463 +174 0.79457 0.498652 +SURF 0x10 +mat 1 +refs 4 +164 0.801457 0.504131 +165 0.799985 0.504131 +176 0.793079 0.502935 +175 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +165 0.799985 0.504131 +166 0.784194 0.504131 +177 0.790348 0.502927 +176 0.793079 0.502935 +SURF 0x10 +mat 1 +refs 4 +166 0.784194 0.504131 +167 0.782717 0.504131 +178 0.789456 0.5005 +177 0.790348 0.502927 +SURF 0x10 +mat 1 +refs 4 +167 0.782717 0.504131 +168 0.78164 0.504131 +179 0.788806 0.498723 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +168 0.78164 0.504131 +169 0.781245 0.504131 +180 0.788565 0.498074 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +169 0.781245 0.504131 +170 0.78164 0.504131 +17 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +170 0.78164 0.504131 +158 0.782717 0.504131 +14 0.789456 0.5005 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +14 0.789456 0.5005 +171 0.790348 0.502927 +172 0.793079 0.502935 +15 0.793943 0.500463 +SURF 0x10 +mat 1 +refs 4 +16 0.79457 0.498652 +173 0.794802 0.497989 +180 0.788565 0.498074 +17 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +173 0.794802 0.497989 +174 0.79457 0.498652 +179 0.788806 0.498723 +180 0.788565 0.498074 +SURF 0x10 +mat 1 +refs 4 +174 0.79457 0.498652 +175 0.793943 0.500463 +178 0.789456 0.5005 +179 0.788806 0.498723 +SURF 0x10 +mat 1 +refs 4 +175 0.793943 0.500463 +176 0.793079 0.502935 +177 0.790348 0.502927 +178 0.789456 0.5005 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +2 0.742628 0.94124 +181 0.742628 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.742628 0.94124 +5 0.741551 0.94124 +183 0.741551 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.741551 0.94124 +7 0.741156 0.94124 +184 0.741156 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.741156 0.94124 +9 0.741551 0.94124 +185 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.741551 0.94124 +11 0.742628 0.94124 +186 0.742628 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.742628 0.94124 +13 0.744105 0.94124 +187 0.744105 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +3 0.744105 0.94124 +182 0.744105 0.922957 +188 0.817834 0.922957 +189 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +187 0.744105 0.922957 +13 0.744105 0.94124 +190 0.817834 0.94124 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +193 0.794571 0.49865 +194 0.793944 0.500461 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +196 0.742628 0.916863 +197 0.744105 0.916863 +182 0.744105 0.922957 +181 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +197 0.744105 0.916863 +198 0.817834 0.916863 +188 0.817834 0.922957 +182 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +199 0.744105 0.916863 +200 0.742628 0.916863 +186 0.742628 0.922957 +187 0.744105 0.922957 +SURF 0x10 +mat 1 +refs 4 +200 0.742628 0.916863 +201 0.741551 0.916863 +185 0.741551 0.922957 +186 0.742628 0.922957 +SURF 0x10 +mat 1 +refs 4 +201 0.741551 0.916863 +202 0.741156 0.916863 +184 0.741156 0.922957 +185 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +202 0.741156 0.916863 +203 0.741551 0.916863 +183 0.741551 0.922957 +184 0.741156 0.922957 +SURF 0x10 +mat 1 +refs 4 +203 0.741551 0.916863 +196 0.742628 0.916863 +181 0.742628 0.922957 +183 0.741551 0.922957 +SURF 0x10 +mat 1 +refs 4 +204 0.742628 0.904674 +205 0.744105 0.904674 +197 0.744105 0.916863 +196 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +205 0.744105 0.904674 +206 0.817834 0.904674 +198 0.817834 0.916863 +197 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +207 0.744105 0.904674 +208 0.742628 0.904674 +200 0.742628 0.916863 +199 0.744105 0.916863 +SURF 0x10 +mat 1 +refs 4 +208 0.742628 0.904674 +209 0.741551 0.904674 +201 0.741551 0.916863 +200 0.742628 0.916863 +SURF 0x10 +mat 1 +refs 4 +209 0.741551 0.904674 +210 0.741156 0.904674 +202 0.741156 0.916863 +201 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +210 0.741156 0.904674 +211 0.741551 0.904674 +203 0.741551 0.916863 +202 0.741156 0.916863 +SURF 0x10 +mat 1 +refs 4 +211 0.741551 0.904674 +204 0.742628 0.904674 +196 0.742628 0.916863 +203 0.741551 0.916863 +SURF 0x10 +mat 1 +refs 4 +212 0.742628 0.886391 +213 0.744105 0.886391 +205 0.744105 0.904674 +204 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +213 0.744105 0.886391 +214 0.817834 0.886391 +206 0.817834 0.904674 +205 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +215 0.744105 0.886391 +216 0.742628 0.886391 +208 0.742628 0.904674 +207 0.744105 0.904674 +SURF 0x10 +mat 1 +refs 4 +216 0.742628 0.886391 +217 0.741551 0.886391 +209 0.741551 0.904674 +208 0.742628 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.741551 0.886391 +218 0.741156 0.886391 +210 0.741156 0.904674 +209 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +218 0.741156 0.886391 +219 0.741551 0.886391 +211 0.741551 0.904674 +210 0.741156 0.904674 +SURF 0x10 +mat 1 +refs 4 +219 0.741551 0.886391 +212 0.742628 0.886391 +204 0.742628 0.904674 +211 0.741551 0.904674 +SURF 0x10 +mat 1 +refs 4 +220 0.742628 0.868108 +221 0.744105 0.868108 +213 0.744105 0.886391 +212 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +221 0.744105 0.868108 +222 0.817834 0.868108 +214 0.817834 0.886391 +213 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +223 0.744105 0.868108 +224 0.742628 0.868108 +216 0.742628 0.886391 +215 0.744105 0.886391 +SURF 0x10 +mat 1 +refs 4 +224 0.742628 0.868108 +225 0.741551 0.868108 +217 0.741551 0.886391 +216 0.742628 0.886391 +SURF 0x10 +mat 1 +refs 4 +225 0.741551 0.868108 +226 0.741156 0.868108 +218 0.741156 0.886391 +217 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +226 0.741156 0.868108 +227 0.741551 0.868108 +219 0.741551 0.886391 +218 0.741156 0.886391 +SURF 0x10 +mat 1 +refs 4 +227 0.741551 0.868108 +220 0.742628 0.868108 +212 0.742628 0.886391 +219 0.741551 0.886391 +SURF 0x10 +mat 1 +refs 4 +228 0.742628 0.843731 +229 0.744105 0.843731 +221 0.744105 0.868108 +220 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +229 0.744105 0.843731 +230 0.817834 0.843731 +222 0.817834 0.868108 +221 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +231 0.744105 0.843731 +232 0.742628 0.843731 +224 0.742628 0.868108 +223 0.744105 0.868108 +SURF 0x10 +mat 1 +refs 4 +232 0.742628 0.843731 +233 0.741551 0.843731 +225 0.741551 0.868108 +224 0.742628 0.868108 +SURF 0x10 +mat 1 +refs 4 +233 0.741551 0.843731 +234 0.741156 0.843731 +226 0.741156 0.868108 +225 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +234 0.741156 0.843731 +235 0.741551 0.843731 +227 0.741551 0.868108 +226 0.741156 0.868108 +SURF 0x10 +mat 1 +refs 4 +235 0.741551 0.843731 +228 0.742628 0.843731 +220 0.742628 0.868108 +227 0.741551 0.868108 +SURF 0x10 +mat 1 +refs 4 +236 0.742925 0.807165 +237 0.744402 0.807165 +229 0.744105 0.843731 +228 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +237 0.744402 0.807165 +238 0.817834 0.807165 +230 0.817834 0.843731 +229 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +239 0.744402 0.807165 +240 0.742925 0.807165 +232 0.742628 0.843731 +231 0.744105 0.843731 +SURF 0x10 +mat 1 +refs 4 +240 0.742925 0.807165 +241 0.741848 0.807165 +233 0.741551 0.843731 +232 0.742628 0.843731 +SURF 0x10 +mat 1 +refs 4 +241 0.741848 0.807165 +242 0.741453 0.807165 +234 0.741156 0.843731 +233 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +242 0.741453 0.807165 +243 0.741848 0.807165 +235 0.741551 0.843731 +234 0.741156 0.843731 +SURF 0x10 +mat 1 +refs 4 +243 0.741848 0.807165 +236 0.742925 0.807165 +228 0.742628 0.843731 +235 0.741551 0.843731 +SURF 0x10 +mat 1 +refs 4 +244 0.74372 0.770599 +245 0.745192 0.770599 +237 0.744402 0.807165 +236 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +245 0.745192 0.770599 +246 0.817834 0.770599 +238 0.817834 0.807165 +237 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +247 0.745192 0.770599 +248 0.74372 0.770599 +240 0.742925 0.807165 +239 0.744402 0.807165 +SURF 0x10 +mat 1 +refs 4 +248 0.74372 0.770599 +249 0.742642 0.770599 +241 0.741848 0.807165 +240 0.742925 0.807165 +SURF 0x10 +mat 1 +refs 4 +249 0.742642 0.770599 +250 0.742243 0.770599 +242 0.741453 0.807165 +241 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +250 0.742243 0.770599 +251 0.742642 0.770599 +243 0.741848 0.807165 +242 0.741453 0.807165 +SURF 0x10 +mat 1 +refs 4 +251 0.742642 0.770599 +244 0.74372 0.770599 +236 0.742925 0.807165 +243 0.741848 0.807165 +SURF 0x10 +mat 1 +refs 4 +252 0.745271 0.721465 +253 0.746743 0.721465 +245 0.745192 0.770599 +244 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +253 0.746743 0.721465 +254 0.817834 0.721465 +246 0.817834 0.770599 +245 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +255 0.746743 0.721465 +256 0.745271 0.721465 +248 0.74372 0.770599 +247 0.745192 0.770599 +SURF 0x10 +mat 1 +refs 4 +256 0.745271 0.721465 +257 0.744189 0.721465 +249 0.742642 0.770599 +248 0.74372 0.770599 +SURF 0x10 +mat 1 +refs 4 +257 0.744189 0.721465 +258 0.743794 0.721465 +250 0.742243 0.770599 +249 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +258 0.743794 0.721465 +259 0.744189 0.721465 +251 0.742642 0.770599 +250 0.742243 0.770599 +SURF 0x10 +mat 1 +refs 4 +259 0.744189 0.721465 +252 0.745271 0.721465 +244 0.74372 0.770599 +251 0.742642 0.770599 +SURF 0x10 +mat 1 +refs 4 +260 0.747612 0.67233 +261 0.749088 0.67233 +253 0.746743 0.721465 +252 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +261 0.749088 0.67233 +262 0.817834 0.67233 +254 0.817834 0.721465 +253 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +263 0.749088 0.67233 +264 0.747612 0.67233 +256 0.745271 0.721465 +255 0.746743 0.721465 +SURF 0x10 +mat 1 +refs 4 +264 0.747612 0.67233 +265 0.746534 0.67233 +257 0.744189 0.721465 +256 0.745271 0.721465 +SURF 0x10 +mat 1 +refs 4 +265 0.746534 0.67233 +266 0.746139 0.67233 +258 0.743794 0.721465 +257 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +266 0.746139 0.67233 +267 0.746534 0.67233 +259 0.744189 0.721465 +258 0.743794 0.721465 +SURF 0x10 +mat 1 +refs 4 +267 0.746534 0.67233 +260 0.747612 0.67233 +252 0.745271 0.721465 +259 0.744189 0.721465 +SURF 0x10 +mat 1 +refs 4 +268 0.751341 0.623196 +269 0.752818 0.623196 +261 0.749088 0.67233 +260 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +269 0.752818 0.623196 +270 0.817834 0.623196 +262 0.817834 0.67233 +261 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +271 0.752818 0.623196 +272 0.751341 0.623196 +264 0.747612 0.67233 +263 0.749088 0.67233 +SURF 0x10 +mat 1 +refs 4 +272 0.751341 0.623196 +273 0.750264 0.623196 +265 0.746534 0.67233 +264 0.747612 0.67233 +SURF 0x10 +mat 1 +refs 4 +273 0.750264 0.623196 +274 0.749869 0.623196 +266 0.746139 0.67233 +265 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +274 0.749869 0.623196 +275 0.750264 0.623196 +267 0.746534 0.67233 +266 0.746139 0.67233 +SURF 0x10 +mat 1 +refs 4 +275 0.750264 0.623196 +268 0.751341 0.623196 +260 0.747612 0.67233 +267 0.746534 0.67233 +SURF 0x10 +mat 1 +refs 4 +276 0.756441 0.574441 +277 0.757917 0.574441 +269 0.752818 0.623196 +268 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +277 0.757917 0.574441 +278 0.817834 0.574441 +270 0.817834 0.623196 +269 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +279 0.757917 0.574441 +280 0.756441 0.574441 +272 0.751341 0.623196 +271 0.752818 0.623196 +SURF 0x10 +mat 1 +refs 4 +280 0.756441 0.574441 +281 0.755363 0.574441 +273 0.750264 0.623196 +272 0.751341 0.623196 +SURF 0x10 +mat 1 +refs 4 +281 0.755363 0.574441 +282 0.754968 0.574441 +274 0.749869 0.623196 +273 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +282 0.754968 0.574441 +283 0.755363 0.574441 +275 0.750264 0.623196 +274 0.749869 0.623196 +SURF 0x10 +mat 1 +refs 4 +283 0.755363 0.574441 +276 0.756441 0.574441 +268 0.751341 0.623196 +275 0.750264 0.623196 +SURF 0x10 +mat 1 +refs 4 +284 0.761939 0.549313 +285 0.763412 0.549313 +277 0.757917 0.574441 +276 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +278 0.817834 0.574441 +277 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +286 0.821188 0.549313 +287 0.82266 0.549313 +288 0.829083 0.574441 +289 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +287 0.82266 0.549313 +290 0.823742 0.549313 +291 0.830165 0.574441 +288 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +290 0.823742 0.549313 +292 0.824137 0.549313 +293 0.83056 0.574441 +291 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +292 0.824137 0.549313 +294 0.823742 0.549313 +295 0.830165 0.574441 +293 0.83056 0.574441 +SURF 0x10 +mat 1 +refs 4 +294 0.823742 0.549313 +296 0.82266 0.549313 +297 0.829083 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +296 0.82266 0.549313 +298 0.821188 0.549313 +299 0.827611 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +300 0.817834 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +301 0.763412 0.549313 +302 0.761939 0.549313 +280 0.756441 0.574441 +279 0.757917 0.574441 +SURF 0x10 +mat 1 +refs 4 +302 0.761939 0.549313 +303 0.760857 0.549313 +281 0.755363 0.574441 +280 0.756441 0.574441 +SURF 0x10 +mat 1 +refs 4 +303 0.760857 0.549313 +304 0.760463 0.549313 +282 0.754968 0.574441 +281 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +304 0.760463 0.549313 +305 0.760857 0.549313 +283 0.755363 0.574441 +282 0.754968 0.574441 +SURF 0x10 +mat 1 +refs 4 +305 0.760857 0.549313 +284 0.761939 0.549313 +276 0.756441 0.574441 +283 0.755363 0.574441 +SURF 0x10 +mat 1 +refs 4 +306 0.770155 0.524936 +307 0.771628 0.524936 +285 0.763412 0.549313 +284 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +307 0.771628 0.524936 +308 0.812689 0.524936 +286 0.821188 0.549313 +285 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +308 0.812689 0.524936 +309 0.814166 0.524936 +287 0.82266 0.549313 +286 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +309 0.814166 0.524936 +310 0.815243 0.524936 +290 0.823742 0.549313 +287 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +310 0.815243 0.524936 +311 0.815638 0.524936 +292 0.824137 0.549313 +290 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +311 0.815638 0.524936 +312 0.815243 0.524936 +294 0.823742 0.549313 +292 0.824137 0.549313 +SURF 0x10 +mat 1 +refs 4 +312 0.815243 0.524936 +313 0.814166 0.524936 +296 0.82266 0.549313 +294 0.823742 0.549313 +SURF 0x10 +mat 1 +refs 4 +313 0.814166 0.524936 +314 0.812689 0.524936 +298 0.821188 0.549313 +296 0.82266 0.549313 +SURF 0x10 +mat 1 +refs 4 +314 0.812689 0.524936 +315 0.771628 0.524936 +301 0.763412 0.549313 +298 0.821188 0.549313 +SURF 0x10 +mat 1 +refs 4 +315 0.771628 0.524936 +316 0.770155 0.524936 +302 0.761939 0.549313 +301 0.763412 0.549313 +SURF 0x10 +mat 1 +refs 4 +316 0.770155 0.524936 +317 0.769073 0.524936 +303 0.760857 0.549313 +302 0.761939 0.549313 +SURF 0x10 +mat 1 +refs 4 +317 0.769073 0.524936 +318 0.768679 0.524936 +304 0.760463 0.549313 +303 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +318 0.768679 0.524936 +319 0.769073 0.524936 +305 0.760857 0.549313 +304 0.760463 0.549313 +SURF 0x10 +mat 1 +refs 4 +319 0.769073 0.524936 +306 0.770155 0.524936 +284 0.761939 0.549313 +305 0.760857 0.549313 +SURF 0x10 +mat 1 +refs 4 +320 0.774479 0.516317 +321 0.775956 0.516317 +307 0.771628 0.524936 +306 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +321 0.775956 0.516317 +322 0.808342 0.516317 +308 0.812689 0.524936 +307 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +322 0.808342 0.516317 +323 0.809814 0.516317 +309 0.814166 0.524936 +308 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +323 0.809814 0.516317 +324 0.810896 0.516317 +310 0.815243 0.524936 +309 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +324 0.810896 0.516317 +325 0.811291 0.516317 +311 0.815638 0.524936 +310 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +325 0.811291 0.516317 +326 0.810896 0.516317 +312 0.815243 0.524936 +311 0.815638 0.524936 +SURF 0x10 +mat 1 +refs 4 +326 0.810896 0.516317 +327 0.809814 0.516317 +313 0.814166 0.524936 +312 0.815243 0.524936 +SURF 0x10 +mat 1 +refs 4 +327 0.809814 0.516317 +328 0.808342 0.516317 +314 0.812689 0.524936 +313 0.814166 0.524936 +SURF 0x10 +mat 1 +refs 4 +328 0.808342 0.516317 +329 0.775956 0.516317 +315 0.771628 0.524936 +314 0.812689 0.524936 +SURF 0x10 +mat 1 +refs 4 +329 0.775956 0.516317 +330 0.774479 0.516317 +316 0.770155 0.524936 +315 0.771628 0.524936 +SURF 0x10 +mat 1 +refs 4 +330 0.774479 0.516317 +331 0.773402 0.516317 +317 0.769073 0.524936 +316 0.770155 0.524936 +SURF 0x10 +mat 1 +refs 4 +331 0.773402 0.516317 +332 0.773007 0.516317 +318 0.768679 0.524936 +317 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +332 0.773007 0.516317 +333 0.773402 0.516317 +319 0.769073 0.524936 +318 0.768679 0.524936 +SURF 0x10 +mat 1 +refs 4 +333 0.773402 0.516317 +320 0.774479 0.516317 +306 0.770155 0.524936 +319 0.769073 0.524936 +SURF 0x10 +mat 1 +refs 4 +334 0.782718 0.504129 +335 0.784195 0.504129 +321 0.775956 0.516317 +320 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +335 0.784195 0.504129 +336 0.799986 0.504129 +322 0.808342 0.516317 +321 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +336 0.799986 0.504129 +337 0.801459 0.504129 +323 0.809814 0.516317 +322 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +337 0.801459 0.504129 +338 0.802541 0.504129 +324 0.810896 0.516317 +323 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +338 0.802541 0.504129 +339 0.802935 0.504129 +325 0.811291 0.516317 +324 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +339 0.802935 0.504129 +340 0.802541 0.504129 +326 0.810896 0.516317 +325 0.811291 0.516317 +SURF 0x10 +mat 1 +refs 4 +340 0.802541 0.504129 +341 0.801459 0.504129 +327 0.809814 0.516317 +326 0.810896 0.516317 +SURF 0x10 +mat 1 +refs 4 +341 0.801459 0.504129 +342 0.799986 0.504129 +328 0.808342 0.516317 +327 0.809814 0.516317 +SURF 0x10 +mat 1 +refs 4 +342 0.799986 0.504129 +343 0.784195 0.504129 +329 0.775956 0.516317 +328 0.808342 0.516317 +SURF 0x10 +mat 1 +refs 4 +343 0.784195 0.504129 +344 0.782718 0.504129 +330 0.774479 0.516317 +329 0.775956 0.516317 +SURF 0x10 +mat 1 +refs 4 +344 0.782718 0.504129 +345 0.781641 0.504129 +331 0.773402 0.516317 +330 0.774479 0.516317 +SURF 0x10 +mat 1 +refs 4 +345 0.781641 0.504129 +346 0.781246 0.504129 +332 0.773007 0.516317 +331 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +346 0.781246 0.504129 +347 0.781641 0.504129 +333 0.773402 0.516317 +332 0.773007 0.516317 +SURF 0x10 +mat 1 +refs 4 +347 0.781641 0.504129 +334 0.782718 0.504129 +320 0.774479 0.516317 +333 0.773402 0.516317 +SURF 0x10 +mat 1 +refs 4 +195 0.789457 0.500498 +348 0.790349 0.502925 +335 0.784195 0.504129 +334 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +348 0.790349 0.502925 +349 0.79308 0.502933 +336 0.799986 0.504129 +335 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +349 0.79308 0.502933 +194 0.793944 0.500461 +337 0.801459 0.504129 +336 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +193 0.794571 0.49865 +338 0.802541 0.504129 +337 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +193 0.794571 0.49865 +350 0.794803 0.497988 +339 0.802935 0.504129 +338 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +350 0.794803 0.497988 +351 0.794571 0.49865 +340 0.802541 0.504129 +339 0.802935 0.504129 +SURF 0x10 +mat 1 +refs 4 +351 0.794571 0.49865 +352 0.793944 0.500461 +341 0.801459 0.504129 +340 0.802541 0.504129 +SURF 0x10 +mat 1 +refs 4 +352 0.793944 0.500461 +353 0.79308 0.502933 +342 0.799986 0.504129 +341 0.801459 0.504129 +SURF 0x10 +mat 1 +refs 4 +353 0.79308 0.502933 +354 0.790349 0.502925 +343 0.784195 0.504129 +342 0.799986 0.504129 +SURF 0x10 +mat 1 +refs 4 +354 0.790349 0.502925 +355 0.789457 0.500498 +344 0.782718 0.504129 +343 0.784195 0.504129 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +356 0.788807 0.498722 +345 0.781641 0.504129 +344 0.782718 0.504129 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +357 0.788566 0.498072 +346 0.781246 0.504129 +345 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +192 0.788807 0.498722 +347 0.781641 0.504129 +346 0.781246 0.504129 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +195 0.789457 0.500498 +334 0.782718 0.504129 +347 0.781641 0.504129 +SURF 0x10 +mat 1 +refs 4 +194 0.793944 0.500461 +349 0.79308 0.502933 +348 0.790349 0.502925 +195 0.789457 0.500498 +SURF 0x10 +mat 1 +refs 4 +192 0.788807 0.498722 +357 0.788566 0.498072 +350 0.794803 0.497988 +193 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +357 0.788566 0.498072 +356 0.788807 0.498722 +351 0.794571 0.49865 +350 0.794803 0.497988 +SURF 0x10 +mat 1 +refs 4 +356 0.788807 0.498722 +355 0.789457 0.500498 +352 0.793944 0.500461 +351 0.794571 0.49865 +SURF 0x10 +mat 1 +refs 4 +355 0.789457 0.500498 +354 0.790349 0.502925 +353 0.79308 0.502933 +352 0.793944 0.500461 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +0 0.744104 0.922959 +3 0.744104 0.941242 +189 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +190 0.817833 0.941242 +13 0.744104 0.941242 +12 0.744104 0.922959 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +358 0.817833 0.922959 +12 0.744104 0.922959 +23 0.744104 0.916865 +359 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +23 0.744104 0.916865 +31 0.744104 0.904676 +360 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +31 0.744104 0.904676 +39 0.744104 0.886393 +361 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +39 0.744104 0.886393 +47 0.744104 0.86811 +362 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +47 0.744104 0.86811 +55 0.744104 0.843733 +363 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +55 0.744104 0.843733 +63 0.744401 0.807167 +364 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +63 0.744401 0.807167 +71 0.745191 0.7706 +365 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +71 0.745191 0.7706 +79 0.746742 0.721467 +366 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +79 0.746742 0.721467 +87 0.749087 0.672332 +367 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +87 0.749087 0.672332 +95 0.752817 0.623198 +368 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +95 0.752817 0.623198 +103 0.757916 0.574443 +123 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +369 0.817834 0.916863 +199 0.744105 0.916863 +187 0.744105 0.922957 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +370 0.817834 0.904674 +207 0.744105 0.904674 +199 0.744105 0.916863 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +371 0.817834 0.886391 +215 0.744105 0.886391 +207 0.744105 0.904674 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +372 0.817834 0.868108 +223 0.744105 0.868108 +215 0.744105 0.886391 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +373 0.817834 0.843731 +231 0.744105 0.843731 +223 0.744105 0.868108 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +374 0.817834 0.807165 +239 0.744402 0.807165 +231 0.744105 0.843731 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +375 0.817834 0.770599 +247 0.745192 0.770599 +239 0.744402 0.807165 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +376 0.817834 0.721465 +255 0.746743 0.721465 +247 0.745192 0.770599 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +377 0.817834 0.67233 +263 0.749088 0.67233 +255 0.746743 0.721465 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +378 0.817834 0.623196 +271 0.752818 0.623196 +263 0.749088 0.67233 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +300 0.817834 0.574441 +279 0.757917 0.574441 +271 0.752818 0.623196 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 3 +286 0.821188 0.549313 +289 0.827611 0.574441 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +285 0.763412 0.549313 +286 0.821188 0.549313 +278 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +298 0.821188 0.549313 +301 0.763412 0.549313 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +301 0.763412 0.549313 +279 0.757917 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +109 0.82761 0.574443 +112 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +101 0.817833 0.574443 +112 0.821187 0.549315 +107 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +125 0.763411 0.549315 +122 0.821187 0.549315 +SURF 0x10 +mat 1 +refs 3 +123 0.817833 0.574443 +103 0.757916 0.574443 +125 0.763411 0.549315 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +358 0.817833 0.922959 +359 0.817833 0.916865 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 3 +117 0.830164 0.574443 +115 0.830559 0.574443 +113 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +119 0.829082 0.574443 +117 0.830164 0.574443 +113 0.830164 0.574443 +110 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +121 0.82761 0.574443 +119 0.829082 0.574443 +110 0.829082 0.574443 +109 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +123 0.817833 0.574443 +121 0.82761 0.574443 +109 0.82761 0.574443 +101 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +368 0.817833 0.623198 +123 0.817833 0.574443 +101 0.817833 0.574443 +93 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 3 +291 0.830165 0.574441 +293 0.83056 0.574441 +295 0.830165 0.574441 +SURF 0x10 +mat 1 +refs 4 +288 0.829083 0.574441 +291 0.830165 0.574441 +295 0.830165 0.574441 +297 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 4 +289 0.827611 0.574441 +288 0.829083 0.574441 +297 0.829083 0.574441 +299 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +278 0.817834 0.574441 +289 0.827611 0.574441 +299 0.827611 0.574441 +300 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +270 0.817834 0.623196 +278 0.817834 0.574441 +300 0.817834 0.574441 +378 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +262 0.817834 0.67233 +270 0.817834 0.623196 +378 0.817834 0.623196 +377 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +254 0.817834 0.721465 +262 0.817834 0.67233 +377 0.817834 0.67233 +376 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +246 0.817834 0.770599 +254 0.817834 0.721465 +376 0.817834 0.721465 +375 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +238 0.817834 0.807165 +246 0.817834 0.770599 +375 0.817834 0.770599 +374 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +230 0.817834 0.843731 +238 0.817834 0.807165 +374 0.817834 0.807165 +373 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.868108 +230 0.817834 0.843731 +373 0.817834 0.843731 +372 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.886391 +222 0.817834 0.868108 +372 0.817834 0.868108 +371 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +206 0.817834 0.904674 +214 0.817834 0.886391 +371 0.817834 0.886391 +370 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +198 0.817834 0.916863 +206 0.817834 0.904674 +370 0.817834 0.904674 +369 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +188 0.817834 0.922957 +198 0.817834 0.916863 +369 0.817834 0.916863 +191 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +189 0.817834 0.94124 +188 0.817834 0.922957 +191 0.817834 0.922957 +190 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +20 0.817833 0.922959 +189 0.817833 0.941242 +190 0.817833 0.941242 +358 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +359 0.817833 0.916865 +360 0.817833 0.904676 +29 0.817833 0.904676 +21 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +360 0.817833 0.904676 +361 0.817833 0.886393 +37 0.817833 0.886393 +29 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +361 0.817833 0.886393 +362 0.817833 0.86811 +45 0.817833 0.86811 +37 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +362 0.817833 0.86811 +363 0.817833 0.843733 +53 0.817833 0.843733 +45 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +363 0.817833 0.843733 +364 0.817833 0.807167 +61 0.817833 0.807167 +53 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +364 0.817833 0.807167 +365 0.817833 0.7706 +69 0.817833 0.7706 +61 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +365 0.817833 0.7706 +366 0.817833 0.721467 +77 0.817833 0.721467 +69 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +366 0.817833 0.721467 +367 0.817833 0.672332 +85 0.817833 0.672332 +77 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +367 0.817833 0.672332 +368 0.817833 0.623198 +93 0.817833 0.623198 +85 0.817833 0.672332 +kids 0 +OBJECT poly +name "Elevator" +texture "Rascal.rgb" +numvert 225 +1.75895 0.0452271 -0.01905 +1.76212 0.0460779 -0.01905 +1.76212 0.0460779 3.1865e-16 +1.75895 0.0452271 3.17871e-16 +1.76445 0.0484021 -0.01905 +1.76445 0.0484021 3.1922e-16 +1.7653 0.0515771 -0.01905 +1.7653 0.0515771 3.1943e-16 +1.76445 0.0547521 -0.01905 +1.76445 0.0547521 3.1922e-16 +1.76212 0.0570764 -0.01905 +1.76212 0.0570764 3.1865e-16 +1.75895 0.0579271 -0.01905 +1.75895 0.0579271 3.17871e-16 +1.7526 0.0579271 -0.01905 +1.7526 0.0579271 3.16316e-16 +1.7526 0.0452271 3.16316e-16 +1.7526 0.0452271 -0.01905 +1.77482 0.0570764 -0.0254 +1.77165 0.0579271 -0.0254 +1.77715 0.0547521 -0.0254 +1.778 0.0515771 -0.0254 +1.77715 0.0484021 -0.0254 +1.77482 0.0460779 -0.0254 +1.77165 0.0452271 -0.0254 +1.7526 0.0452271 -0.0254 +1.80022 0.0570764 -0.0381 +1.79705 0.0579271 -0.0381 +1.80255 0.0547521 -0.0381 +1.8034 0.0515771 -0.0381 +1.80255 0.0484021 -0.0381 +1.80022 0.0460779 -0.0381 +1.79705 0.0452271 -0.0381 +1.7526 0.0452271 -0.0381 +1.81292 0.0570764 -0.05715 +1.80975 0.0579271 -0.05715 +1.81525 0.0547521 -0.05715 +1.8161 0.0515771 -0.05715 +1.81525 0.0484021 -0.05715 +1.81292 0.0460779 -0.05715 +1.80975 0.0452271 -0.05715 +1.7526 0.0452271 -0.05715 +1.81927 0.0570764 -0.0762 +1.8161 0.0579271 -0.0762 +1.8216 0.0547521 -0.0762 +1.82245 0.0515771 -0.0762 +1.8216 0.0484021 -0.0762 +1.81927 0.0460779 -0.0762 +1.8161 0.0452271 -0.0762 +1.7526 0.0452271 -0.0762 +1.82562 0.0570764 -0.1016 +1.82245 0.0579271 -0.1016 +1.82795 0.0547521 -0.1016 +1.8288 0.0515771 -0.1016 +1.82795 0.0484021 -0.1016 +1.82562 0.0460779 -0.1016 +1.82245 0.0452271 -0.1016 +1.7526 0.0452271 -0.1016 +1.82906 0.0570764 -0.1397 +1.82588 0.0579271 -0.1397 +1.83138 0.0547521 -0.1397 +1.83223 0.0515771 -0.1397 +1.83138 0.0484021 -0.1397 +1.82906 0.0460779 -0.1397 +1.82588 0.0452271 -0.1397 +1.7526 0.0452271 -0.1397 +1.82628 0.0570764 -0.1778 +1.8231 0.0579271 -0.1778 +1.8286 0.0547521 -0.1778 +1.82945 0.0515771 -0.1778 +1.8286 0.0484021 -0.1778 +1.82628 0.0460779 -0.1778 +1.8231 0.0452271 -0.1778 +1.7526 0.0452271 -0.1778 +1.81929 0.0570764 -0.228995 +1.81611 0.0579271 -0.228995 +1.82161 0.0547521 -0.228995 +1.82246 0.0515771 -0.228995 +1.82161 0.0484021 -0.228995 +1.81929 0.0460779 -0.228995 +1.81611 0.0452271 -0.228995 +1.7526 0.0452271 -0.228995 +1.80911 0.0570764 -0.280191 +1.80594 0.0579271 -0.280191 +1.81144 0.0547521 -0.280191 +1.81229 0.0515771 -0.280191 +1.81144 0.0484021 -0.280191 +1.80911 0.0460779 -0.280191 +1.80594 0.0452271 -0.280191 +1.7526 0.0452271 -0.280191 +1.79534 0.0570764 -0.331386 +1.79217 0.0579271 -0.331386 +1.79767 0.0547521 -0.331386 +1.79852 0.0515771 -0.331386 +1.79767 0.0484021 -0.331386 +1.79534 0.0460779 -0.331386 +1.79217 0.0452271 -0.331386 +1.7526 0.0452271 -0.331386 +1.77682 0.0570764 -0.382186 +1.77365 0.0579271 -0.382186 +1.77915 0.0547521 -0.382186 +1.78 0.0515771 -0.382186 +1.77915 0.0484021 -0.382186 +1.77682 0.0460779 -0.382186 +1.77365 0.0452271 -0.382186 +1.7526 0.0452271 -0.382186 +1.76212 0.0460779 0.01905 +1.75895 0.0452271 0.01905 +1.76445 0.0484021 0.01905 +1.7653 0.0515771 0.01905 +1.76445 0.0547521 0.01905 +1.76212 0.0570764 0.01905 +1.75895 0.0579271 0.01905 +1.77165 0.0579271 0.0254 +1.77482 0.0570764 0.0254 +1.77715 0.0547521 0.0254 +1.778 0.0515771 0.0254 +1.77715 0.0484021 0.0254 +1.77482 0.0460779 0.0254 +1.77165 0.0452271 0.0254 +1.7526 0.0452271 0.0254 +1.7526 0.0452271 0.01905 +1.79705 0.0579271 0.0381 +1.80022 0.0570764 0.0381 +1.80255 0.0547521 0.0381 +1.8034 0.0515771 0.0381 +1.80255 0.0484021 0.0381 +1.80022 0.0460779 0.0381 +1.79705 0.0452271 0.0381 +1.7526 0.0452271 0.0381 +1.80975 0.0579271 0.05715 +1.81292 0.0570764 0.05715 +1.81525 0.0547521 0.05715 +1.8161 0.0515771 0.05715 +1.81525 0.0484021 0.05715 +1.81292 0.0460779 0.05715 +1.80975 0.0452271 0.05715 +1.7526 0.0452271 0.05715 +1.8161 0.0579271 0.0762 +1.81927 0.0570764 0.0762 +1.8216 0.0547521 0.0762 +1.82245 0.0515771 0.0762 +1.8216 0.0484021 0.0762 +1.81927 0.0460779 0.0762 +1.8161 0.0452271 0.0762 +1.7526 0.0452271 0.0762 +1.82245 0.0579271 0.1016 +1.82562 0.0570764 0.1016 +1.82795 0.0547521 0.1016 +1.8288 0.0515771 0.1016 +1.82795 0.0484021 0.1016 +1.82562 0.0460779 0.1016 +1.82245 0.0452271 0.1016 +1.7526 0.0452271 0.1016 +1.82588 0.0579271 0.1397 +1.82906 0.0570764 0.1397 +1.83138 0.0547521 0.1397 +1.83223 0.0515771 0.1397 +1.83138 0.0484021 0.1397 +1.82906 0.0460779 0.1397 +1.82588 0.0452271 0.1397 +1.7526 0.0452271 0.1397 +1.8231 0.0579271 0.1778 +1.82628 0.0570764 0.1778 +1.8286 0.0547521 0.1778 +1.82945 0.0515771 0.1778 +1.8286 0.0484021 0.1778 +1.82628 0.0460779 0.1778 +1.8231 0.0452271 0.1778 +1.7526 0.0452271 0.1778 +1.81611 0.0579271 0.228995 +1.81929 0.0570764 0.228995 +1.82161 0.0547521 0.228995 +1.82246 0.0515771 0.228995 +1.82161 0.0484021 0.228995 +1.81929 0.0460779 0.228995 +1.81611 0.0452271 0.228995 +1.7526 0.0452271 0.228995 +1.80594 0.0579271 0.280191 +1.80911 0.0570764 0.280191 +1.81144 0.0547521 0.280191 +1.81229 0.0515771 0.280191 +1.81144 0.0484021 0.280191 +1.80911 0.0460779 0.280191 +1.80594 0.0452271 0.280191 +1.7526 0.0452271 0.280191 +1.79217 0.0579271 0.331386 +1.79534 0.0570764 0.331386 +1.79767 0.0547521 0.331386 +1.79852 0.0515771 0.331386 +1.79767 0.0484021 0.331386 +1.79534 0.0460779 0.331386 +1.79217 0.0452271 0.331386 +1.7526 0.0452271 0.331386 +1.77365 0.0579271 0.382186 +1.77682 0.0570764 0.382186 +1.77915 0.0547521 0.382186 +1.78 0.0515771 0.382186 +1.77915 0.0484021 0.382186 +1.77682 0.0460779 0.382186 +1.77365 0.0452271 0.382186 +1.7526 0.0452271 0.382186 +1.7526 0.0579271 -0.0254 +1.7526 0.0579271 -0.0381 +1.7526 0.0579271 -0.05715 +1.7526 0.0579271 -0.0762 +1.7526 0.0579271 -0.1016 +1.7526 0.0579271 -0.1397 +1.7526 0.0579271 -0.1778 +1.7526 0.0579271 -0.228995 +1.7526 0.0579271 -0.280191 +1.7526 0.0579271 -0.331386 +1.7526 0.0579271 -0.382186 +1.7526 0.0579271 0.01905 +1.7526 0.0579271 0.0254 +1.7526 0.0579271 0.0381 +1.7526 0.0579271 0.05715 +1.7526 0.0579271 0.0762 +1.7526 0.0579271 0.1016 +1.7526 0.0579271 0.1397 +1.7526 0.0579271 0.1778 +1.7526 0.0579271 0.228995 +1.7526 0.0579271 0.280191 +1.7526 0.0579271 0.331386 +1.7526 0.0579271 0.382186 +numsurf 224 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +1 0.822255 0.922959 +2 0.822255 0.941242 +3 0.820783 0.941242 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +4 0.823337 0.922959 +5 0.823337 0.941242 +2 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +6 0.823732 0.922959 +7 0.823732 0.941242 +5 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +8 0.823337 0.922959 +9 0.823337 0.941242 +7 0.823732 0.941242 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +10 0.822255 0.922959 +11 0.822255 0.941242 +9 0.823337 0.941242 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +12 0.820783 0.922959 +13 0.820783 0.941242 +11 0.822255 0.941242 +SURF 0x10 +mat 1 +refs 4 +13 0.820783 0.941242 +12 0.820783 0.922959 +14 0.817833 0.922959 +15 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +3 0.820783 0.941242 +16 0.817833 0.941242 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +12 0.820783 0.922959 +10 0.822255 0.922959 +18 0.828153 0.916865 +19 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +10 0.822255 0.922959 +8 0.823337 0.922959 +20 0.829235 0.916865 +18 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +8 0.823337 0.922959 +6 0.823732 0.922959 +21 0.82963 0.916865 +20 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +6 0.823732 0.922959 +4 0.823337 0.922959 +22 0.829235 0.916865 +21 0.82963 0.916865 +SURF 0x10 +mat 1 +refs 4 +4 0.823337 0.922959 +1 0.822255 0.922959 +23 0.828153 0.916865 +22 0.829235 0.916865 +SURF 0x10 +mat 1 +refs 4 +1 0.822255 0.922959 +0 0.820783 0.922959 +24 0.826681 0.916865 +23 0.828153 0.916865 +SURF 0x10 +mat 1 +refs 4 +0 0.820783 0.922959 +17 0.817833 0.922959 +25 0.817833 0.916865 +24 0.826681 0.916865 +SURF 0x10 +mat 1 +refs 4 +19 0.826681 0.916865 +18 0.828153 0.916865 +26 0.83995 0.904676 +27 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +18 0.828153 0.916865 +20 0.829235 0.916865 +28 0.841032 0.904676 +26 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +20 0.829235 0.916865 +21 0.82963 0.916865 +29 0.841427 0.904676 +28 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +21 0.82963 0.916865 +22 0.829235 0.916865 +30 0.841032 0.904676 +29 0.841427 0.904676 +SURF 0x10 +mat 1 +refs 4 +22 0.829235 0.916865 +23 0.828153 0.916865 +31 0.83995 0.904676 +30 0.841032 0.904676 +SURF 0x10 +mat 1 +refs 4 +23 0.828153 0.916865 +24 0.826681 0.916865 +32 0.838478 0.904676 +31 0.83995 0.904676 +SURF 0x10 +mat 1 +refs 4 +24 0.826681 0.916865 +25 0.817833 0.916865 +33 0.817833 0.904676 +32 0.838478 0.904676 +SURF 0x10 +mat 1 +refs 4 +27 0.838478 0.904676 +26 0.83995 0.904676 +34 0.845849 0.886393 +35 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +26 0.83995 0.904676 +28 0.841032 0.904676 +36 0.846931 0.886393 +34 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +28 0.841032 0.904676 +29 0.841427 0.904676 +37 0.847325 0.886393 +36 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +29 0.841427 0.904676 +30 0.841032 0.904676 +38 0.846931 0.886393 +37 0.847325 0.886393 +SURF 0x10 +mat 1 +refs 4 +30 0.841032 0.904676 +31 0.83995 0.904676 +39 0.845849 0.886393 +38 0.846931 0.886393 +SURF 0x10 +mat 1 +refs 4 +31 0.83995 0.904676 +32 0.838478 0.904676 +40 0.844376 0.886393 +39 0.845849 0.886393 +SURF 0x10 +mat 1 +refs 4 +32 0.838478 0.904676 +33 0.817833 0.904676 +41 0.817833 0.886393 +40 0.844376 0.886393 +SURF 0x10 +mat 1 +refs 4 +35 0.844376 0.886393 +34 0.845849 0.886393 +42 0.848798 0.86811 +43 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +34 0.845849 0.886393 +36 0.846931 0.886393 +44 0.84988 0.86811 +42 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +36 0.846931 0.886393 +37 0.847325 0.886393 +45 0.850275 0.86811 +44 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +37 0.847325 0.886393 +38 0.846931 0.886393 +46 0.84988 0.86811 +45 0.850275 0.86811 +SURF 0x10 +mat 1 +refs 4 +38 0.846931 0.886393 +39 0.845849 0.886393 +47 0.848798 0.86811 +46 0.84988 0.86811 +SURF 0x10 +mat 1 +refs 4 +39 0.845849 0.886393 +40 0.844376 0.886393 +48 0.847325 0.86811 +47 0.848798 0.86811 +SURF 0x10 +mat 1 +refs 4 +40 0.844376 0.886393 +41 0.817833 0.886393 +49 0.817833 0.86811 +48 0.847325 0.86811 +SURF 0x10 +mat 1 +refs 4 +43 0.847325 0.86811 +42 0.848798 0.86811 +50 0.851747 0.843733 +51 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +42 0.848798 0.86811 +44 0.84988 0.86811 +52 0.852829 0.843733 +50 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +44 0.84988 0.86811 +45 0.850275 0.86811 +53 0.853224 0.843733 +52 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +45 0.850275 0.86811 +46 0.84988 0.86811 +54 0.852829 0.843733 +53 0.853224 0.843733 +SURF 0x10 +mat 1 +refs 4 +46 0.84988 0.86811 +47 0.848798 0.86811 +55 0.851747 0.843733 +54 0.852829 0.843733 +SURF 0x10 +mat 1 +refs 4 +47 0.848798 0.86811 +48 0.847325 0.86811 +56 0.850275 0.843733 +55 0.851747 0.843733 +SURF 0x10 +mat 1 +refs 4 +48 0.847325 0.86811 +49 0.817833 0.86811 +57 0.817833 0.843733 +56 0.850275 0.843733 +SURF 0x10 +mat 1 +refs 4 +51 0.850275 0.843733 +50 0.851747 0.843733 +58 0.853344 0.807167 +59 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +50 0.851747 0.843733 +52 0.852829 0.843733 +60 0.854422 0.807167 +58 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +52 0.852829 0.843733 +53 0.853224 0.843733 +61 0.854817 0.807167 +60 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +53 0.853224 0.843733 +54 0.852829 0.843733 +62 0.854422 0.807167 +61 0.854817 0.807167 +SURF 0x10 +mat 1 +refs 4 +54 0.852829 0.843733 +55 0.851747 0.843733 +63 0.853344 0.807167 +62 0.854422 0.807167 +SURF 0x10 +mat 1 +refs 4 +55 0.851747 0.843733 +56 0.850275 0.843733 +64 0.851868 0.807167 +63 0.853344 0.807167 +SURF 0x10 +mat 1 +refs 4 +56 0.850275 0.843733 +57 0.817833 0.843733 +65 0.817833 0.807167 +64 0.851868 0.807167 +SURF 0x10 +mat 1 +refs 4 +59 0.851868 0.807167 +58 0.853344 0.807167 +66 0.852053 0.7706 +67 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +58 0.853344 0.807167 +60 0.854422 0.807167 +68 0.853131 0.7706 +66 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +60 0.854422 0.807167 +61 0.854817 0.807167 +69 0.853526 0.7706 +68 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +61 0.854817 0.807167 +62 0.854422 0.807167 +70 0.853131 0.7706 +69 0.853526 0.7706 +SURF 0x10 +mat 1 +refs 4 +62 0.854422 0.807167 +63 0.853344 0.807167 +71 0.852053 0.7706 +70 0.853131 0.7706 +SURF 0x10 +mat 1 +refs 4 +63 0.853344 0.807167 +64 0.851868 0.807167 +72 0.850576 0.7706 +71 0.852053 0.7706 +SURF 0x10 +mat 1 +refs 4 +64 0.851868 0.807167 +65 0.817833 0.807167 +73 0.817833 0.7706 +72 0.850576 0.7706 +SURF 0x10 +mat 1 +refs 4 +67 0.850576 0.7706 +66 0.852053 0.7706 +74 0.848807 0.721467 +75 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +66 0.852053 0.7706 +68 0.853131 0.7706 +76 0.849884 0.721467 +74 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +68 0.853131 0.7706 +69 0.853526 0.7706 +77 0.850279 0.721467 +76 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +69 0.853526 0.7706 +70 0.853131 0.7706 +78 0.849884 0.721467 +77 0.850279 0.721467 +SURF 0x10 +mat 1 +refs 4 +70 0.853131 0.7706 +71 0.852053 0.7706 +79 0.848807 0.721467 +78 0.849884 0.721467 +SURF 0x10 +mat 1 +refs 4 +71 0.852053 0.7706 +72 0.850576 0.7706 +80 0.84733 0.721467 +79 0.848807 0.721467 +SURF 0x10 +mat 1 +refs 4 +72 0.850576 0.7706 +73 0.817833 0.7706 +81 0.817833 0.721467 +80 0.84733 0.721467 +SURF 0x10 +mat 1 +refs 4 +75 0.84733 0.721467 +74 0.848807 0.721467 +82 0.844079 0.672332 +83 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +74 0.848807 0.721467 +76 0.849884 0.721467 +84 0.845161 0.672332 +82 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +76 0.849884 0.721467 +77 0.850279 0.721467 +85 0.845556 0.672332 +84 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +77 0.850279 0.721467 +78 0.849884 0.721467 +86 0.845161 0.672332 +85 0.845556 0.672332 +SURF 0x10 +mat 1 +refs 4 +78 0.849884 0.721467 +79 0.848807 0.721467 +87 0.844079 0.672332 +86 0.845161 0.672332 +SURF 0x10 +mat 1 +refs 4 +79 0.848807 0.721467 +80 0.84733 0.721467 +88 0.842607 0.672332 +87 0.844079 0.672332 +SURF 0x10 +mat 1 +refs 4 +80 0.84733 0.721467 +81 0.817833 0.721467 +89 0.817833 0.672332 +88 0.842607 0.672332 +SURF 0x10 +mat 1 +refs 4 +83 0.842607 0.672332 +82 0.844079 0.672332 +90 0.837684 0.623198 +91 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +82 0.844079 0.672332 +84 0.845161 0.672332 +92 0.838766 0.623198 +90 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +84 0.845161 0.672332 +85 0.845556 0.672332 +93 0.839161 0.623198 +92 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +85 0.845556 0.672332 +86 0.845161 0.672332 +94 0.838766 0.623198 +93 0.839161 0.623198 +SURF 0x10 +mat 1 +refs 4 +86 0.845161 0.672332 +87 0.844079 0.672332 +95 0.837684 0.623198 +94 0.838766 0.623198 +SURF 0x10 +mat 1 +refs 4 +87 0.844079 0.672332 +88 0.842607 0.672332 +96 0.836211 0.623198 +95 0.837684 0.623198 +SURF 0x10 +mat 1 +refs 4 +88 0.842607 0.672332 +89 0.817833 0.672332 +97 0.817833 0.623198 +96 0.836211 0.623198 +SURF 0x10 +mat 1 +refs 4 +91 0.836211 0.623198 +90 0.837684 0.623198 +98 0.829082 0.574443 +99 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +90 0.837684 0.623198 +92 0.838766 0.623198 +100 0.830164 0.574443 +98 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +92 0.838766 0.623198 +93 0.839161 0.623198 +101 0.830559 0.574443 +100 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +93 0.839161 0.623198 +94 0.838766 0.623198 +102 0.830164 0.574443 +101 0.830559 0.574443 +SURF 0x10 +mat 1 +refs 4 +94 0.838766 0.623198 +95 0.837684 0.623198 +103 0.829082 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +95 0.837684 0.623198 +96 0.836211 0.623198 +104 0.82761 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +96 0.836211 0.623198 +97 0.817833 0.623198 +105 0.817833 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +3 0.820784 0.94124 +2 0.822256 0.94124 +106 0.822256 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +2 0.822256 0.94124 +5 0.823338 0.94124 +108 0.823338 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +5 0.823338 0.94124 +7 0.823733 0.94124 +109 0.823733 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +7 0.823733 0.94124 +9 0.823338 0.94124 +110 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +9 0.823338 0.94124 +11 0.822256 0.94124 +111 0.822256 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +11 0.822256 0.94124 +13 0.820784 0.94124 +112 0.820784 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +113 0.826682 0.916863 +114 0.828154 0.916863 +111 0.822256 0.922957 +112 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +114 0.828154 0.916863 +115 0.829237 0.916863 +110 0.823338 0.922957 +111 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +115 0.829237 0.916863 +116 0.829631 0.916863 +109 0.823733 0.922957 +110 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +116 0.829631 0.916863 +117 0.829237 0.916863 +108 0.823338 0.922957 +109 0.823733 0.922957 +SURF 0x10 +mat 1 +refs 4 +117 0.829237 0.916863 +118 0.828154 0.916863 +106 0.822256 0.922957 +108 0.823338 0.922957 +SURF 0x10 +mat 1 +refs 4 +118 0.828154 0.916863 +119 0.826682 0.916863 +107 0.820784 0.922957 +106 0.822256 0.922957 +SURF 0x10 +mat 1 +refs 4 +119 0.826682 0.916863 +120 0.817834 0.916863 +121 0.817834 0.922957 +107 0.820784 0.922957 +SURF 0x10 +mat 1 +refs 4 +122 0.838479 0.904674 +123 0.839951 0.904674 +114 0.828154 0.916863 +113 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +123 0.839951 0.904674 +124 0.841033 0.904674 +115 0.829237 0.916863 +114 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +124 0.841033 0.904674 +125 0.841428 0.904674 +116 0.829631 0.916863 +115 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +125 0.841428 0.904674 +126 0.841033 0.904674 +117 0.829237 0.916863 +116 0.829631 0.916863 +SURF 0x10 +mat 1 +refs 4 +126 0.841033 0.904674 +127 0.839951 0.904674 +118 0.828154 0.916863 +117 0.829237 0.916863 +SURF 0x10 +mat 1 +refs 4 +127 0.839951 0.904674 +128 0.838479 0.904674 +119 0.826682 0.916863 +118 0.828154 0.916863 +SURF 0x10 +mat 1 +refs 4 +128 0.838479 0.904674 +129 0.817834 0.904674 +120 0.817834 0.916863 +119 0.826682 0.916863 +SURF 0x10 +mat 1 +refs 4 +130 0.844377 0.886391 +131 0.845849 0.886391 +123 0.839951 0.904674 +122 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +131 0.845849 0.886391 +132 0.846932 0.886391 +124 0.841033 0.904674 +123 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +132 0.846932 0.886391 +133 0.847326 0.886391 +125 0.841428 0.904674 +124 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +133 0.847326 0.886391 +134 0.846932 0.886391 +126 0.841033 0.904674 +125 0.841428 0.904674 +SURF 0x10 +mat 1 +refs 4 +134 0.846932 0.886391 +135 0.845849 0.886391 +127 0.839951 0.904674 +126 0.841033 0.904674 +SURF 0x10 +mat 1 +refs 4 +135 0.845849 0.886391 +136 0.844377 0.886391 +128 0.838479 0.904674 +127 0.839951 0.904674 +SURF 0x10 +mat 1 +refs 4 +136 0.844377 0.886391 +137 0.817834 0.886391 +129 0.817834 0.904674 +128 0.838479 0.904674 +SURF 0x10 +mat 1 +refs 4 +138 0.847326 0.868108 +139 0.848799 0.868108 +131 0.845849 0.886391 +130 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +139 0.848799 0.868108 +140 0.849881 0.868108 +132 0.846932 0.886391 +131 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +140 0.849881 0.868108 +141 0.850276 0.868108 +133 0.847326 0.886391 +132 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +141 0.850276 0.868108 +142 0.849881 0.868108 +134 0.846932 0.886391 +133 0.847326 0.886391 +SURF 0x10 +mat 1 +refs 4 +142 0.849881 0.868108 +143 0.848799 0.868108 +135 0.845849 0.886391 +134 0.846932 0.886391 +SURF 0x10 +mat 1 +refs 4 +143 0.848799 0.868108 +144 0.847326 0.868108 +136 0.844377 0.886391 +135 0.845849 0.886391 +SURF 0x10 +mat 1 +refs 4 +144 0.847326 0.868108 +145 0.817834 0.868108 +137 0.817834 0.886391 +136 0.844377 0.886391 +SURF 0x10 +mat 1 +refs 4 +146 0.850276 0.843731 +147 0.851748 0.843731 +139 0.848799 0.868108 +138 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +147 0.851748 0.843731 +148 0.85283 0.843731 +140 0.849881 0.868108 +139 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +148 0.85283 0.843731 +149 0.853225 0.843731 +141 0.850276 0.868108 +140 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +149 0.853225 0.843731 +150 0.85283 0.843731 +142 0.849881 0.868108 +141 0.850276 0.868108 +SURF 0x10 +mat 1 +refs 4 +150 0.85283 0.843731 +151 0.851748 0.843731 +143 0.848799 0.868108 +142 0.849881 0.868108 +SURF 0x10 +mat 1 +refs 4 +151 0.851748 0.843731 +152 0.850276 0.843731 +144 0.847326 0.868108 +143 0.848799 0.868108 +SURF 0x10 +mat 1 +refs 4 +152 0.850276 0.843731 +153 0.817834 0.843731 +145 0.817834 0.868108 +144 0.847326 0.868108 +SURF 0x10 +mat 1 +refs 4 +154 0.851869 0.807165 +155 0.853345 0.807165 +147 0.851748 0.843731 +146 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +155 0.853345 0.807165 +156 0.854423 0.807165 +148 0.85283 0.843731 +147 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +156 0.854423 0.807165 +157 0.854818 0.807165 +149 0.853225 0.843731 +148 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +157 0.854818 0.807165 +158 0.854423 0.807165 +150 0.85283 0.843731 +149 0.853225 0.843731 +SURF 0x10 +mat 1 +refs 4 +158 0.854423 0.807165 +159 0.853345 0.807165 +151 0.851748 0.843731 +150 0.85283 0.843731 +SURF 0x10 +mat 1 +refs 4 +159 0.853345 0.807165 +160 0.851869 0.807165 +152 0.850276 0.843731 +151 0.851748 0.843731 +SURF 0x10 +mat 1 +refs 4 +160 0.851869 0.807165 +161 0.817834 0.807165 +153 0.817834 0.843731 +152 0.850276 0.843731 +SURF 0x10 +mat 1 +refs 4 +162 0.850577 0.770599 +163 0.852054 0.770599 +155 0.853345 0.807165 +154 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +163 0.852054 0.770599 +164 0.853132 0.770599 +156 0.854423 0.807165 +155 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +164 0.853132 0.770599 +165 0.853527 0.770599 +157 0.854818 0.807165 +156 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +165 0.853527 0.770599 +166 0.853132 0.770599 +158 0.854423 0.807165 +157 0.854818 0.807165 +SURF 0x10 +mat 1 +refs 4 +166 0.853132 0.770599 +167 0.852054 0.770599 +159 0.853345 0.807165 +158 0.854423 0.807165 +SURF 0x10 +mat 1 +refs 4 +167 0.852054 0.770599 +168 0.850577 0.770599 +160 0.851869 0.807165 +159 0.853345 0.807165 +SURF 0x10 +mat 1 +refs 4 +168 0.850577 0.770599 +169 0.817834 0.770599 +161 0.817834 0.807165 +160 0.851869 0.807165 +SURF 0x10 +mat 1 +refs 4 +170 0.847331 0.721465 +171 0.848808 0.721465 +163 0.852054 0.770599 +162 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +171 0.848808 0.721465 +172 0.849885 0.721465 +164 0.853132 0.770599 +163 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +172 0.849885 0.721465 +173 0.85028 0.721465 +165 0.853527 0.770599 +164 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +173 0.85028 0.721465 +174 0.849885 0.721465 +166 0.853132 0.770599 +165 0.853527 0.770599 +SURF 0x10 +mat 1 +refs 4 +174 0.849885 0.721465 +175 0.848808 0.721465 +167 0.852054 0.770599 +166 0.853132 0.770599 +SURF 0x10 +mat 1 +refs 4 +175 0.848808 0.721465 +176 0.847331 0.721465 +168 0.850577 0.770599 +167 0.852054 0.770599 +SURF 0x10 +mat 1 +refs 4 +176 0.847331 0.721465 +177 0.817834 0.721465 +169 0.817834 0.770599 +168 0.850577 0.770599 +SURF 0x10 +mat 1 +refs 4 +178 0.842608 0.67233 +179 0.84408 0.67233 +171 0.848808 0.721465 +170 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +179 0.84408 0.67233 +180 0.845162 0.67233 +172 0.849885 0.721465 +171 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +180 0.845162 0.67233 +181 0.845557 0.67233 +173 0.85028 0.721465 +172 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +181 0.845557 0.67233 +182 0.845162 0.67233 +174 0.849885 0.721465 +173 0.85028 0.721465 +SURF 0x10 +mat 1 +refs 4 +182 0.845162 0.67233 +183 0.84408 0.67233 +175 0.848808 0.721465 +174 0.849885 0.721465 +SURF 0x10 +mat 1 +refs 4 +183 0.84408 0.67233 +184 0.842608 0.67233 +176 0.847331 0.721465 +175 0.848808 0.721465 +SURF 0x10 +mat 1 +refs 4 +184 0.842608 0.67233 +185 0.817834 0.67233 +177 0.817834 0.721465 +176 0.847331 0.721465 +SURF 0x10 +mat 1 +refs 4 +186 0.836212 0.623196 +187 0.837685 0.623196 +179 0.84408 0.67233 +178 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +187 0.837685 0.623196 +188 0.838767 0.623196 +180 0.845162 0.67233 +179 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +188 0.838767 0.623196 +189 0.839162 0.623196 +181 0.845557 0.67233 +180 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +189 0.839162 0.623196 +190 0.838767 0.623196 +182 0.845162 0.67233 +181 0.845557 0.67233 +SURF 0x10 +mat 1 +refs 4 +190 0.838767 0.623196 +191 0.837685 0.623196 +183 0.84408 0.67233 +182 0.845162 0.67233 +SURF 0x10 +mat 1 +refs 4 +191 0.837685 0.623196 +192 0.836212 0.623196 +184 0.842608 0.67233 +183 0.84408 0.67233 +SURF 0x10 +mat 1 +refs 4 +192 0.836212 0.623196 +193 0.817834 0.623196 +185 0.817834 0.67233 +184 0.842608 0.67233 +SURF 0x10 +mat 1 +refs 4 +194 0.827611 0.574441 +195 0.829083 0.574441 +187 0.837685 0.623196 +186 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +195 0.829083 0.574441 +196 0.830165 0.574441 +188 0.838767 0.623196 +187 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +196 0.830165 0.574441 +197 0.83056 0.574441 +189 0.839162 0.623196 +188 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +197 0.83056 0.574441 +198 0.830165 0.574441 +190 0.838767 0.623196 +189 0.839162 0.623196 +SURF 0x10 +mat 1 +refs 4 +198 0.830165 0.574441 +199 0.829083 0.574441 +191 0.837685 0.623196 +190 0.838767 0.623196 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +200 0.827611 0.574441 +192 0.836212 0.623196 +191 0.837685 0.623196 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +201 0.817834 0.574441 +193 0.817834 0.623196 +192 0.836212 0.623196 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +12 0.820783 0.922959 +19 0.826681 0.916865 +202 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +19 0.826681 0.916865 +27 0.838478 0.904676 +203 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +27 0.838478 0.904676 +35 0.844376 0.886393 +204 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +35 0.844376 0.886393 +43 0.847325 0.86811 +205 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +43 0.847325 0.86811 +51 0.850275 0.843733 +206 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +51 0.850275 0.843733 +59 0.851868 0.807167 +207 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +59 0.851868 0.807167 +67 0.850576 0.7706 +208 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +67 0.850576 0.7706 +75 0.84733 0.721467 +209 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +75 0.84733 0.721467 +83 0.842607 0.672332 +210 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +83 0.842607 0.672332 +91 0.836211 0.623198 +211 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +91 0.836211 0.623198 +99 0.82761 0.574443 +212 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 4 +213 0.817834 0.922957 +112 0.820784 0.922957 +13 0.820784 0.94124 +15 0.817834 0.94124 +SURF 0x10 +mat 1 +refs 4 +16 0.817834 0.94124 +3 0.820784 0.94124 +107 0.820784 0.922957 +121 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +214 0.817834 0.916863 +113 0.826682 0.916863 +112 0.820784 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +215 0.817834 0.904674 +122 0.838479 0.904674 +113 0.826682 0.916863 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +216 0.817834 0.886391 +130 0.844377 0.886391 +122 0.838479 0.904674 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +217 0.817834 0.868108 +138 0.847326 0.868108 +130 0.844377 0.886391 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +218 0.817834 0.843731 +146 0.850276 0.843731 +138 0.847326 0.868108 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +219 0.817834 0.807165 +154 0.851869 0.807165 +146 0.850276 0.843731 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +220 0.817834 0.770599 +162 0.850577 0.770599 +154 0.851869 0.807165 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +221 0.817834 0.721465 +170 0.847331 0.721465 +162 0.850577 0.770599 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +222 0.817834 0.67233 +178 0.842608 0.67233 +170 0.847331 0.721465 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +223 0.817834 0.623196 +186 0.836212 0.623196 +178 0.842608 0.67233 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +224 0.817834 0.574441 +194 0.827611 0.574441 +186 0.836212 0.623196 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +15 0.817834 0.94124 +16 0.817834 0.94124 +121 0.817834 0.922957 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +212 0.817833 0.574443 +99 0.82761 0.574443 +104 0.82761 0.574443 +105 0.817833 0.574443 +SURF 0x10 +mat 1 +refs 3 +100 0.830164 0.574443 +101 0.830559 0.574443 +102 0.830164 0.574443 +SURF 0x10 +mat 1 +refs 4 +98 0.829082 0.574443 +100 0.830164 0.574443 +102 0.830164 0.574443 +103 0.829082 0.574443 +SURF 0x10 +mat 1 +refs 4 +99 0.82761 0.574443 +98 0.829082 0.574443 +103 0.829082 0.574443 +104 0.82761 0.574443 +SURF 0x10 +mat 1 +refs 4 +211 0.817833 0.623198 +212 0.817833 0.574443 +105 0.817833 0.574443 +97 0.817833 0.623198 +SURF 0x10 +mat 1 +refs 4 +210 0.817833 0.672332 +211 0.817833 0.623198 +97 0.817833 0.623198 +89 0.817833 0.672332 +SURF 0x10 +mat 1 +refs 4 +209 0.817833 0.721467 +210 0.817833 0.672332 +89 0.817833 0.672332 +81 0.817833 0.721467 +SURF 0x10 +mat 1 +refs 4 +208 0.817833 0.7706 +209 0.817833 0.721467 +81 0.817833 0.721467 +73 0.817833 0.7706 +SURF 0x10 +mat 1 +refs 4 +207 0.817833 0.807167 +208 0.817833 0.7706 +73 0.817833 0.7706 +65 0.817833 0.807167 +SURF 0x10 +mat 1 +refs 4 +206 0.817833 0.843733 +207 0.817833 0.807167 +65 0.817833 0.807167 +57 0.817833 0.843733 +SURF 0x10 +mat 1 +refs 4 +205 0.817833 0.86811 +206 0.817833 0.843733 +57 0.817833 0.843733 +49 0.817833 0.86811 +SURF 0x10 +mat 1 +refs 4 +204 0.817833 0.886393 +205 0.817833 0.86811 +49 0.817833 0.86811 +41 0.817833 0.886393 +SURF 0x10 +mat 1 +refs 4 +203 0.817833 0.904676 +204 0.817833 0.886393 +41 0.817833 0.886393 +33 0.817833 0.904676 +SURF 0x10 +mat 1 +refs 4 +202 0.817833 0.916865 +203 0.817833 0.904676 +33 0.817833 0.904676 +25 0.817833 0.916865 +SURF 0x10 +mat 1 +refs 4 +14 0.817833 0.922959 +202 0.817833 0.916865 +25 0.817833 0.916865 +17 0.817833 0.922959 +SURF 0x10 +mat 1 +refs 4 +15 0.817833 0.941242 +14 0.817833 0.922959 +17 0.817833 0.922959 +16 0.817833 0.941242 +SURF 0x10 +mat 1 +refs 4 +121 0.817834 0.922957 +120 0.817834 0.916863 +214 0.817834 0.916863 +213 0.817834 0.922957 +SURF 0x10 +mat 1 +refs 4 +120 0.817834 0.916863 +129 0.817834 0.904674 +215 0.817834 0.904674 +214 0.817834 0.916863 +SURF 0x10 +mat 1 +refs 4 +129 0.817834 0.904674 +137 0.817834 0.886391 +216 0.817834 0.886391 +215 0.817834 0.904674 +SURF 0x10 +mat 1 +refs 4 +137 0.817834 0.886391 +145 0.817834 0.868108 +217 0.817834 0.868108 +216 0.817834 0.886391 +SURF 0x10 +mat 1 +refs 4 +145 0.817834 0.868108 +153 0.817834 0.843731 +218 0.817834 0.843731 +217 0.817834 0.868108 +SURF 0x10 +mat 1 +refs 4 +153 0.817834 0.843731 +161 0.817834 0.807165 +219 0.817834 0.807165 +218 0.817834 0.843731 +SURF 0x10 +mat 1 +refs 4 +161 0.817834 0.807165 +169 0.817834 0.770599 +220 0.817834 0.770599 +219 0.817834 0.807165 +SURF 0x10 +mat 1 +refs 4 +169 0.817834 0.770599 +177 0.817834 0.721465 +221 0.817834 0.721465 +220 0.817834 0.770599 +SURF 0x10 +mat 1 +refs 4 +177 0.817834 0.721465 +185 0.817834 0.67233 +222 0.817834 0.67233 +221 0.817834 0.721465 +SURF 0x10 +mat 1 +refs 4 +185 0.817834 0.67233 +193 0.817834 0.623196 +223 0.817834 0.623196 +222 0.817834 0.67233 +SURF 0x10 +mat 1 +refs 4 +193 0.817834 0.623196 +201 0.817834 0.574441 +224 0.817834 0.574441 +223 0.817834 0.623196 +SURF 0x10 +mat 1 +refs 4 +201 0.817834 0.574441 +200 0.827611 0.574441 +194 0.827611 0.574441 +224 0.817834 0.574441 +SURF 0x10 +mat 1 +refs 4 +200 0.827611 0.574441 +199 0.829083 0.574441 +195 0.829083 0.574441 +194 0.827611 0.574441 +SURF 0x10 +mat 1 +refs 4 +199 0.829083 0.574441 +198 0.830165 0.574441 +196 0.830165 0.574441 +195 0.829083 0.574441 +SURF 0x10 +mat 1 +refs 3 +198 0.830165 0.574441 +197 0.83056 0.574441 +196 0.830165 0.574441 +kids 0 +OBJECT poly +name "Fin" +texture "Rascal.rgb" +numvert 204 +1.73613 0.33416 0.00549926 +1.74579 0.334193 0.00549926 +1.74714 0.335765 0.003175 +1.73473 0.335703 0.003175 +1.5718 -0.0493484 0.00549926 +1.57498 -0.0493484 0.00635 +1.57498 -0.0429984 0.00635 +1.5718 -0.0429984 0.00549926 +1.74008 -0.0493484 0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.74325 -0.0493484 0.00549926 +1.7526 -0.0473896 0.00549926 +1.74558 -0.0493484 0.003175 +1.7526 -0.0478767 0.003175 +1.74643 -0.0493484 9.27603e-17 +1.7526 -0.048055 9.42714e-17 +1.74558 -0.0493484 -0.003175 +1.7526 -0.0478767 -0.003175 +1.74325 -0.0493484 -0.00549926 +1.7526 -0.0473896 -0.00549926 +1.74008 -0.0493484 -0.00635 +1.7526 -0.0467241 -0.00635 +1.57498 -0.0493484 -0.00635 +1.57498 -0.0429984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.5718 -0.0493484 -0.00549926 +1.5718 -0.0429984 -0.00549926 +1.56948 -0.0493484 -0.003175 +1.56948 -0.0429984 -0.003175 +1.56863 -0.0493484 7.69716e-17 +1.56863 -0.0429984 9.08494e-17 +1.56948 -0.0493484 0.003175 +1.56948 -0.0429984 0.003175 +1.57498 -0.0302984 0.00635 +1.5718 -0.0302984 0.00549926 +1.7526 -0.0302984 0.00635 +1.5718 -0.0302984 -0.00549926 +1.57498 -0.0302984 -0.00635 +1.56948 -0.0302984 -0.003175 +1.56863 -0.0302984 1.04727e-16 +1.56948 -0.0302984 0.003175 +1.57498 -0.0112484 0.00635 +1.5718 -0.0112484 0.00549926 +1.7526 -0.0112484 0.00635 +1.5718 -0.0112484 -0.00549926 +1.57498 -0.0112484 -0.00635 +1.56948 -0.0112484 -0.003175 +1.56863 -0.0112484 1.18605e-16 +1.56948 -0.0112484 0.003175 +1.57498 0.00780156 0.00635 +1.5718 0.00780156 0.00549926 +1.7526 0.00780156 0.00635 +1.5718 0.00780156 -0.00549926 +1.57498 0.00780156 -0.00635 +1.56948 0.00780156 -0.003175 +1.56863 0.00780156 1.46361e-16 +1.56948 0.00780156 0.003175 +1.57498 0.0332016 0.00635 +1.5718 0.0332016 0.00549926 +1.7526 0.0332016 0.00635 +1.5718 0.0332016 -0.00549926 +1.57498 0.0332016 -0.00635 +1.56948 0.0332016 -0.003175 +1.56863 0.0332016 2.01872e-16 +1.56948 0.0332016 0.003175 +1.47999 0.0670341 0.00635 +1.47681 0.0670341 0.00549926 +1.7526 0.0676649 0.00635 +1.47681 0.0670341 -0.00549926 +1.47999 0.0670341 -0.00635 +1.47449 0.0670341 -0.003175 +1.47364 0.0670341 2.61872e-16 +1.47449 0.0670341 0.003175 +1.56201 0.08255 0.00635 +1.55884 0.08255 0.00549926 +1.7526 0.0996346 0.00635 +1.58561 0.0996346 0.00635 +1.55884 0.08255 -0.00549926 +1.56201 0.08255 -0.00635 +1.55651 0.08255 -0.003175 +1.55566 0.08255 3.16655e-16 +1.55651 0.08255 0.003175 +1.58244 0.0996346 0.00549926 +1.60643 0.142297 0.00635 +1.60326 0.142297 0.00549926 +1.7526 0.142297 0.00635 +1.58561 0.0996346 -0.00635 +1.58244 0.0996346 -0.00549926 +1.60326 0.142297 -0.00549926 +1.60643 0.142297 -0.00635 +1.58011 0.0996346 -0.003175 +1.60093 0.142297 -0.003175 +1.57926 0.0996346 3.71007e-16 +1.60008 0.142297 4.87129e-16 +1.58011 0.0996346 0.003175 +1.60093 0.142297 0.003175 +1.62752 0.18496 0.00635 +1.62434 0.18496 0.00549926 +1.7526 0.18496 0.00635 +1.62434 0.18496 -0.00549926 +1.62752 0.18496 -0.00635 +1.62202 0.18496 -0.003175 +1.62117 0.18496 6.03314e-16 +1.62202 0.18496 0.003175 +1.64695 0.227623 0.00635 +1.64377 0.227623 0.00549926 +1.7526 0.227623 0.00635 +1.64377 0.227623 -0.00549926 +1.64695 0.227623 -0.00635 +1.64145 0.227623 -0.003175 +1.6406 0.227623 7.32975e-16 +1.64145 0.227623 0.003175 +1.66962 0.269956 0.00635 +1.66644 0.269956 0.00549926 +1.7526 0.269956 0.00635 +1.66644 0.269956 -0.00549926 +1.66962 0.269956 -0.00635 +1.66412 0.269956 -0.003175 +1.66327 0.269956 8.4955e-16 +1.66412 0.269956 0.003175 +1.68421 0.291774 0.00635 +1.68104 0.291774 0.00549926 +1.80011 0.269956 0.00635 +1.80328 0.269956 0.00549926 +1.79409 0.291774 0.00549926 +1.79092 0.291774 0.00635 +1.8056 0.269956 0.003175 +1.79642 0.291774 0.003175 +1.80646 0.269956 8.42988e-16 +1.79727 0.291774 8.96246e-16 +1.8056 0.269956 -0.003175 +1.79642 0.291774 -0.003175 +1.80328 0.269956 -0.00549926 +1.79409 0.291774 -0.00549926 +1.80011 0.269956 -0.00635 +1.79092 0.291774 -0.00635 +1.7526 0.269956 -0.00635 +1.68104 0.291774 -0.00549926 +1.68421 0.291774 -0.00635 +1.67872 0.291774 -0.003175 +1.67786 0.291774 8.87819e-16 +1.67872 0.291774 0.003175 +1.70051 0.312941 0.00635 +1.69733 0.312941 0.00549926 +1.77784 0.312941 0.00635 +1.78102 0.312941 0.00549926 +1.78334 0.312941 0.003175 +1.78419 0.312941 9.48555e-16 +1.78334 0.312941 -0.003175 +1.78102 0.312941 -0.00549926 +1.77784 0.312941 -0.00635 +1.70051 0.312941 -0.00635 +1.69733 0.312941 -0.00549926 +1.69501 0.312941 -0.003175 +1.69416 0.312941 9.54261e-16 +1.69501 0.312941 0.003175 +1.70982 0.320425 0.00635 +1.70664 0.320425 0.00549926 +1.77103 0.320425 0.00635 +1.77421 0.320425 0.00549926 +1.77653 0.320425 0.003175 +1.77738 0.320425 9.60766e-16 +1.77653 0.320425 -0.003175 +1.77421 0.320425 -0.00549926 +1.77103 0.320425 -0.00635 +1.70982 0.320425 -0.00635 +1.70664 0.320425 -0.00549926 +1.70432 0.320425 -0.003175 +1.70347 0.320425 9.70419e-16 +1.70432 0.320425 0.003175 +1.7248 0.331008 0.00635 +1.72162 0.331008 0.00549926 +1.7588 0.331008 0.00635 +1.76197 0.331008 0.00549926 +1.7643 0.331008 0.003175 +1.76515 0.331008 9.85526e-16 +1.7643 0.331008 -0.003175 +1.76197 0.331008 -0.00549926 +1.7588 0.331008 -0.00635 +1.7248 0.331008 -0.00635 +1.72162 0.331008 -0.00549926 +1.7193 0.331008 -0.003175 +1.71845 0.331008 1.00184e-15 +1.7193 0.331008 0.003175 +1.73805 0.332053 0.00635 +1.74393 0.332046 0.00635 +1.74764 0.336341 9.95115e-16 +1.74714 0.335765 -0.003175 +1.74579 0.334193 -0.00549926 +1.74393 0.332046 -0.00635 +1.73805 0.332053 -0.00635 +1.73613 0.33416 -0.00549926 +1.73473 0.335703 -0.003175 +1.73421 0.336267 1.0057e-15 +1.7526 -0.0302984 -0.00635 +1.7526 -0.0112484 -0.00635 +1.7526 0.00780156 -0.00635 +1.7526 0.0332016 -0.00635 +1.7526 0.0676649 -0.00635 +1.7526 0.0996346 -0.00635 +1.7526 0.142297 -0.00635 +1.7526 0.18496 -0.00635 +1.7526 0.227623 -0.00635 +numsurf 202 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +1 0.900578 0.588527 +2 0.90123 0.590037 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +4 0.816575 0.220192 +5 0.81811 0.220192 +6 0.81811 0.22629 +7 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 5 +5 0.81811 0.220192 +8 0.897821 0.229292 +9 0.903866 0.222712 +10 0.903866 0.22629 +6 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +8 0.897821 0.229292 +11 0.899352 0.229292 +12 0.903866 0.222073 +9 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +11 0.899352 0.229292 +13 0.900477 0.229292 +14 0.903866 0.221605 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +13 0.900477 0.229292 +15 0.900887 0.229292 +16 0.903866 0.221434 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +15 0.900887 0.229292 +17 0.900477 0.229292 +18 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +17 0.900477 0.229292 +19 0.899352 0.229292 +20 0.903866 0.222073 +18 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +19 0.899352 0.229292 +21 0.897821 0.229292 +22 0.903866 0.222712 +20 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 5 +21 0.897821 0.229292 +23 0.81811 0.220192 +24 0.81811 0.22629 +25 0.903866 0.22629 +22 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +23 0.81811 0.220192 +26 0.816575 0.220192 +27 0.816575 0.22629 +24 0.81811 0.22629 +SURF 0x10 +mat 1 +refs 4 +26 0.816575 0.220192 +28 0.815455 0.220192 +29 0.815455 0.22629 +27 0.816575 0.22629 +SURF 0x10 +mat 1 +refs 4 +28 0.815455 0.220192 +30 0.815044 0.220192 +31 0.815044 0.22629 +29 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +30 0.815044 0.220192 +32 0.815455 0.220192 +33 0.815455 0.22629 +31 0.815044 0.22629 +SURF 0x10 +mat 1 +refs 4 +32 0.815455 0.220192 +4 0.816575 0.220192 +7 0.816575 0.22629 +33 0.815455 0.22629 +SURF 0x10 +mat 1 +refs 4 +7 0.816575 0.22629 +6 0.81811 0.22629 +34 0.81811 0.238487 +35 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.81811 0.22629 +10 0.903866 0.22629 +36 0.903866 0.238487 +34 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +24 0.81811 0.22629 +27 0.816575 0.22629 +37 0.816575 0.238487 +38 0.81811 0.238487 +SURF 0x10 +mat 1 +refs 4 +27 0.816575 0.22629 +29 0.815455 0.22629 +39 0.815455 0.238487 +37 0.816575 0.238487 +SURF 0x10 +mat 1 +refs 4 +29 0.815455 0.22629 +31 0.815044 0.22629 +40 0.815044 0.238487 +39 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +31 0.815044 0.22629 +33 0.815455 0.22629 +41 0.815455 0.238487 +40 0.815044 0.238487 +SURF 0x10 +mat 1 +refs 4 +33 0.815455 0.22629 +7 0.816575 0.22629 +35 0.816575 0.238487 +41 0.815455 0.238487 +SURF 0x10 +mat 1 +refs 4 +35 0.816575 0.238487 +34 0.81811 0.238487 +42 0.81811 0.256781 +43 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +34 0.81811 0.238487 +36 0.903866 0.238487 +44 0.903866 0.256781 +42 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +38 0.81811 0.238487 +37 0.816575 0.238487 +45 0.816575 0.256781 +46 0.81811 0.256781 +SURF 0x10 +mat 1 +refs 4 +37 0.816575 0.238487 +39 0.815455 0.238487 +47 0.815455 0.256781 +45 0.816575 0.256781 +SURF 0x10 +mat 1 +refs 4 +39 0.815455 0.238487 +40 0.815044 0.238487 +48 0.815044 0.256781 +47 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +40 0.815044 0.238487 +41 0.815455 0.238487 +49 0.815455 0.256781 +48 0.815044 0.256781 +SURF 0x10 +mat 1 +refs 4 +41 0.815455 0.238487 +35 0.816575 0.238487 +43 0.816575 0.256781 +49 0.815455 0.256781 +SURF 0x10 +mat 1 +refs 4 +43 0.816575 0.256781 +42 0.81811 0.256781 +50 0.81811 0.275076 +51 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +42 0.81811 0.256781 +44 0.903866 0.256781 +52 0.903866 0.275076 +50 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +46 0.81811 0.256781 +45 0.816575 0.256781 +53 0.816575 0.275076 +54 0.81811 0.275076 +SURF 0x10 +mat 1 +refs 4 +45 0.816575 0.256781 +47 0.815455 0.256781 +55 0.815455 0.275076 +53 0.816575 0.275076 +SURF 0x10 +mat 1 +refs 4 +47 0.815455 0.256781 +48 0.815044 0.256781 +56 0.815044 0.275076 +55 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +48 0.815044 0.256781 +49 0.815455 0.256781 +57 0.815455 0.275076 +56 0.815044 0.275076 +SURF 0x10 +mat 1 +refs 4 +49 0.815455 0.256781 +43 0.816575 0.256781 +51 0.816575 0.275076 +57 0.815455 0.275076 +SURF 0x10 +mat 1 +refs 4 +51 0.816575 0.275076 +50 0.81811 0.275076 +58 0.81811 0.299469 +59 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +50 0.81811 0.275076 +52 0.903866 0.275076 +60 0.903866 0.299469 +58 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +54 0.81811 0.275076 +53 0.816575 0.275076 +61 0.816575 0.299469 +62 0.81811 0.299469 +SURF 0x10 +mat 1 +refs 4 +53 0.816575 0.275076 +55 0.815455 0.275076 +63 0.815455 0.299469 +61 0.816575 0.299469 +SURF 0x10 +mat 1 +refs 4 +55 0.815455 0.275076 +56 0.815044 0.275076 +64 0.815044 0.299469 +63 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +56 0.815044 0.275076 +57 0.815455 0.275076 +65 0.815455 0.299469 +64 0.815044 0.299469 +SURF 0x10 +mat 1 +refs 4 +57 0.815455 0.275076 +51 0.816575 0.275076 +59 0.816575 0.299469 +65 0.815455 0.299469 +SURF 0x10 +mat 1 +refs 4 +59 0.816575 0.299469 +58 0.81811 0.299469 +66 0.772318 0.328378 +67 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +58 0.81811 0.299469 +60 0.903866 0.299469 +68 0.903866 0.332566 +66 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +62 0.81811 0.299469 +61 0.816575 0.299469 +69 0.770783 0.328378 +70 0.772318 0.328378 +SURF 0x10 +mat 1 +refs 4 +61 0.816575 0.299469 +63 0.815455 0.299469 +71 0.769663 0.328378 +69 0.770783 0.328378 +SURF 0x10 +mat 1 +refs 4 +63 0.815455 0.299469 +64 0.815044 0.299469 +72 0.769252 0.328378 +71 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +64 0.815044 0.299469 +65 0.815455 0.299469 +73 0.769663 0.328378 +72 0.769252 0.328378 +SURF 0x10 +mat 1 +refs 4 +65 0.815455 0.299469 +59 0.816575 0.299469 +67 0.770783 0.328378 +73 0.769663 0.328378 +SURF 0x10 +mat 1 +refs 4 +67 0.770783 0.328378 +66 0.772318 0.328378 +74 0.812184 0.346439 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 5 +66 0.772318 0.328378 +68 0.903866 0.332566 +76 0.903866 0.363268 +77 0.823228 0.363268 +74 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +70 0.772318 0.328378 +69 0.770783 0.328378 +78 0.811462 0.346439 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +69 0.770783 0.328378 +71 0.769663 0.328378 +80 0.810931 0.346439 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +71 0.769663 0.328378 +72 0.769252 0.328378 +81 0.810737 0.346439 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +72 0.769252 0.328378 +73 0.769663 0.328378 +82 0.810931 0.346439 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +73 0.769663 0.328378 +67 0.770783 0.328378 +75 0.811462 0.346439 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +83 0.822787 0.363268 +77 0.823228 0.363268 +84 0.833294 0.404239 +85 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +77 0.823228 0.363268 +76 0.903866 0.363268 +86 0.903866 0.404239 +84 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +87 0.823228 0.363268 +88 0.822787 0.363268 +89 0.831757 0.404239 +90 0.833294 0.404239 +SURF 0x10 +mat 1 +refs 4 +88 0.822787 0.363268 +91 0.822462 0.363268 +92 0.831716 0.404239 +89 0.831757 0.404239 +SURF 0x10 +mat 1 +refs 4 +91 0.822462 0.363268 +93 0.822344 0.363268 +94 0.8317 0.404239 +92 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +93 0.822344 0.363268 +95 0.822462 0.363268 +96 0.831716 0.404239 +94 0.8317 0.404239 +SURF 0x10 +mat 1 +refs 4 +95 0.822462 0.363268 +83 0.822787 0.363268 +85 0.831757 0.404239 +96 0.831716 0.404239 +SURF 0x10 +mat 1 +refs 4 +85 0.831757 0.404239 +84 0.833294 0.404239 +97 0.843477 0.44521 +98 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +84 0.833294 0.404239 +86 0.903866 0.404239 +99 0.903866 0.44521 +97 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +90 0.833294 0.404239 +89 0.831757 0.404239 +100 0.842013 0.44521 +101 0.843477 0.44521 +SURF 0x10 +mat 1 +refs 4 +89 0.831757 0.404239 +92 0.831716 0.404239 +102 0.842013 0.44521 +100 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +92 0.831716 0.404239 +94 0.8317 0.404239 +103 0.842013 0.44521 +102 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +94 0.8317 0.404239 +96 0.831716 0.404239 +104 0.842013 0.44521 +103 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +96 0.831716 0.404239 +85 0.831757 0.404239 +98 0.842013 0.44521 +104 0.842013 0.44521 +SURF 0x10 +mat 1 +refs 4 +98 0.842013 0.44521 +97 0.843477 0.44521 +105 0.852858 0.486182 +106 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +97 0.843477 0.44521 +99 0.903866 0.44521 +107 0.903866 0.486182 +105 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +101 0.843477 0.44521 +100 0.842013 0.44521 +108 0.851321 0.486182 +109 0.852858 0.486182 +SURF 0x10 +mat 1 +refs 4 +100 0.842013 0.44521 +102 0.842013 0.44521 +110 0.851129 0.486182 +108 0.851321 0.486182 +SURF 0x10 +mat 1 +refs 4 +102 0.842013 0.44521 +103 0.842013 0.44521 +111 0.851058 0.486182 +110 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.842013 0.44521 +104 0.842013 0.44521 +112 0.851129 0.486182 +111 0.851058 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.842013 0.44521 +98 0.842013 0.44521 +106 0.851321 0.486182 +112 0.851129 0.486182 +SURF 0x10 +mat 1 +refs 4 +106 0.851321 0.486182 +105 0.852858 0.486182 +113 0.863803 0.526837 +114 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +105 0.852858 0.486182 +107 0.903866 0.486182 +115 0.903866 0.526837 +113 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +109 0.852858 0.486182 +108 0.851321 0.486182 +116 0.863087 0.524444 +117 0.863803 0.526837 +SURF 0x10 +mat 1 +refs 4 +108 0.851321 0.486182 +110 0.851129 0.486182 +118 0.862791 0.524444 +116 0.863087 0.524444 +SURF 0x10 +mat 1 +refs 4 +110 0.851129 0.486182 +111 0.851058 0.486182 +119 0.862682 0.524444 +118 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +111 0.851058 0.486182 +112 0.851129 0.486182 +120 0.862791 0.524444 +119 0.862682 0.524444 +SURF 0x10 +mat 1 +refs 4 +112 0.851129 0.486182 +106 0.851321 0.486182 +114 0.863087 0.524444 +120 0.862791 0.524444 +SURF 0x10 +mat 1 +refs 4 +114 0.863087 0.524444 +113 0.863803 0.526837 +121 0.870847 0.54779 +122 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 3 +113 0.863803 0.526837 +115 0.903866 0.526837 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +123 0.926804 0.526837 +124 0.928335 0.526837 +125 0.923898 0.54779 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +124 0.928335 0.526837 +127 0.929455 0.526837 +128 0.925023 0.54779 +125 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 4 +127 0.929455 0.526837 +129 0.92987 0.526837 +130 0.925433 0.54779 +128 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +129 0.92987 0.526837 +131 0.929455 0.526837 +132 0.925023 0.54779 +130 0.925433 0.54779 +SURF 0x10 +mat 1 +refs 4 +131 0.929455 0.526837 +133 0.928335 0.526837 +134 0.923898 0.54779 +132 0.925023 0.54779 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +135 0.926804 0.526837 +136 0.922367 0.54779 +134 0.923898 0.54779 +SURF 0x10 +mat 1 +refs 3 +135 0.926804 0.526837 +137 0.903866 0.526837 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +117 0.863803 0.526837 +116 0.863087 0.524444 +138 0.869317 0.54779 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 4 +116 0.863087 0.524444 +118 0.862791 0.524444 +140 0.868548 0.543567 +138 0.869317 0.54779 +SURF 0x10 +mat 1 +refs 4 +118 0.862791 0.524444 +119 0.862682 0.524444 +141 0.868133 0.543567 +140 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +119 0.862682 0.524444 +120 0.862791 0.524444 +142 0.868548 0.543567 +141 0.868133 0.543567 +SURF 0x10 +mat 1 +refs 4 +120 0.862791 0.524444 +114 0.863087 0.524444 +122 0.869317 0.54779 +142 0.868548 0.543567 +SURF 0x10 +mat 1 +refs 4 +122 0.869317 0.54779 +121 0.870847 0.54779 +143 0.878717 0.568117 +144 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +121 0.870847 0.54779 +126 0.922367 0.54779 +145 0.916052 0.568117 +143 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +126 0.922367 0.54779 +125 0.923898 0.54779 +146 0.917588 0.568117 +145 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +125 0.923898 0.54779 +128 0.925023 0.54779 +147 0.918708 0.568117 +146 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +128 0.925023 0.54779 +130 0.925433 0.54779 +148 0.919118 0.568117 +147 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +130 0.925433 0.54779 +132 0.925023 0.54779 +149 0.918708 0.568117 +148 0.919118 0.568117 +SURF 0x10 +mat 1 +refs 4 +132 0.925023 0.54779 +134 0.923898 0.54779 +150 0.917588 0.568117 +149 0.918708 0.568117 +SURF 0x10 +mat 1 +refs 4 +134 0.923898 0.54779 +136 0.922367 0.54779 +151 0.916052 0.568117 +150 0.917588 0.568117 +SURF 0x10 +mat 1 +refs 4 +136 0.922367 0.54779 +139 0.870847 0.54779 +152 0.878717 0.568117 +151 0.916052 0.568117 +SURF 0x10 +mat 1 +refs 4 +139 0.870847 0.54779 +138 0.869317 0.54779 +153 0.879199 0.565583 +152 0.878717 0.568117 +SURF 0x10 +mat 1 +refs 4 +138 0.869317 0.54779 +140 0.868548 0.543567 +154 0.878929 0.565583 +153 0.879199 0.565583 +SURF 0x10 +mat 1 +refs 4 +140 0.868548 0.543567 +141 0.868133 0.543567 +155 0.87883 0.565583 +154 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +141 0.868133 0.543567 +142 0.868548 0.543567 +156 0.878929 0.565583 +155 0.87883 0.565583 +SURF 0x10 +mat 1 +refs 4 +142 0.868548 0.543567 +122 0.869317 0.54779 +144 0.879199 0.565583 +156 0.878929 0.565583 +SURF 0x10 +mat 1 +refs 4 +144 0.879199 0.565583 +143 0.878717 0.568117 +157 0.883212 0.575305 +158 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +143 0.878717 0.568117 +145 0.916052 0.568117 +159 0.912764 0.575305 +157 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +145 0.916052 0.568117 +146 0.917588 0.568117 +160 0.9143 0.575305 +159 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +146 0.917588 0.568117 +147 0.918708 0.568117 +161 0.91542 0.575305 +160 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +147 0.918708 0.568117 +148 0.919118 0.568117 +162 0.91583 0.575305 +161 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +148 0.919118 0.568117 +149 0.918708 0.568117 +163 0.91542 0.575305 +162 0.91583 0.575305 +SURF 0x10 +mat 1 +refs 4 +149 0.918708 0.568117 +150 0.917588 0.568117 +164 0.9143 0.575305 +163 0.91542 0.575305 +SURF 0x10 +mat 1 +refs 4 +150 0.917588 0.568117 +151 0.916052 0.568117 +165 0.912764 0.575305 +164 0.9143 0.575305 +SURF 0x10 +mat 1 +refs 4 +151 0.916052 0.568117 +152 0.878717 0.568117 +166 0.883212 0.575305 +165 0.912764 0.575305 +SURF 0x10 +mat 1 +refs 4 +152 0.878717 0.568117 +153 0.879199 0.565583 +167 0.884056 0.574883 +166 0.883212 0.575305 +SURF 0x10 +mat 1 +refs 4 +153 0.879199 0.565583 +154 0.878929 0.565583 +168 0.882858 0.574883 +167 0.884056 0.574883 +SURF 0x10 +mat 1 +refs 4 +154 0.878929 0.565583 +155 0.87883 0.565583 +169 0.88242 0.574883 +168 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +155 0.87883 0.565583 +156 0.878929 0.565583 +170 0.882858 0.574883 +169 0.88242 0.574883 +SURF 0x10 +mat 1 +refs 4 +156 0.878929 0.565583 +144 0.879199 0.565583 +158 0.884056 0.574883 +170 0.882858 0.574883 +SURF 0x10 +mat 1 +refs 4 +158 0.884056 0.574883 +157 0.883212 0.575305 +171 0.890444 0.585468 +172 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +157 0.883212 0.575305 +159 0.912764 0.575305 +173 0.90686 0.585468 +171 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +159 0.912764 0.575305 +160 0.9143 0.575305 +174 0.90839 0.585468 +173 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +160 0.9143 0.575305 +161 0.91542 0.575305 +175 0.909515 0.585468 +174 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +161 0.91542 0.575305 +162 0.91583 0.575305 +176 0.909925 0.585468 +175 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +162 0.91583 0.575305 +163 0.91542 0.575305 +177 0.909515 0.585468 +176 0.909925 0.585468 +SURF 0x10 +mat 1 +refs 4 +163 0.91542 0.575305 +164 0.9143 0.575305 +178 0.90839 0.585468 +177 0.909515 0.585468 +SURF 0x10 +mat 1 +refs 4 +164 0.9143 0.575305 +165 0.912764 0.575305 +179 0.90686 0.585468 +178 0.90839 0.585468 +SURF 0x10 +mat 1 +refs 4 +165 0.912764 0.575305 +166 0.883212 0.575305 +180 0.890444 0.585468 +179 0.90686 0.585468 +SURF 0x10 +mat 1 +refs 4 +166 0.883212 0.575305 +167 0.884056 0.574883 +181 0.888909 0.585468 +180 0.890444 0.585468 +SURF 0x10 +mat 1 +refs 4 +167 0.884056 0.574883 +168 0.882858 0.574883 +182 0.887789 0.585468 +181 0.888909 0.585468 +SURF 0x10 +mat 1 +refs 4 +168 0.882858 0.574883 +169 0.88242 0.574883 +183 0.887378 0.585468 +182 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +169 0.88242 0.574883 +170 0.882858 0.574883 +184 0.887789 0.585468 +183 0.887378 0.585468 +SURF 0x10 +mat 1 +refs 4 +170 0.882858 0.574883 +158 0.884056 0.574883 +172 0.888909 0.585468 +184 0.887789 0.585468 +SURF 0x10 +mat 1 +refs 4 +172 0.888909 0.585468 +171 0.890444 0.585468 +185 0.896841 0.586472 +0 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +171 0.890444 0.585468 +173 0.90686 0.585468 +186 0.89968 0.586465 +185 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +173 0.90686 0.585468 +174 0.90839 0.585468 +1 0.900578 0.588527 +186 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +174 0.90839 0.585468 +175 0.909515 0.585468 +2 0.90123 0.590037 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +175 0.909515 0.585468 +176 0.909925 0.585468 +187 0.901471 0.59059 +2 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +176 0.909925 0.585468 +177 0.909515 0.585468 +188 0.90123 0.590037 +187 0.901471 0.59059 +SURF 0x10 +mat 1 +refs 4 +177 0.909515 0.585468 +178 0.90839 0.585468 +189 0.900578 0.588527 +188 0.90123 0.590037 +SURF 0x10 +mat 1 +refs 4 +178 0.90839 0.585468 +179 0.90686 0.585468 +190 0.89968 0.586465 +189 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +179 0.90686 0.585468 +180 0.890444 0.585468 +191 0.896841 0.586472 +190 0.89968 0.586465 +SURF 0x10 +mat 1 +refs 4 +180 0.890444 0.585468 +181 0.888909 0.585468 +192 0.895914 0.588495 +191 0.896841 0.586472 +SURF 0x10 +mat 1 +refs 4 +181 0.888909 0.585468 +182 0.887789 0.585468 +193 0.895238 0.589977 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 4 +182 0.887789 0.585468 +183 0.887378 0.585468 +194 0.894987 0.590519 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +183 0.887378 0.585468 +184 0.887789 0.585468 +3 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +184 0.887789 0.585468 +172 0.888909 0.585468 +0 0.895914 0.588495 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +0 0.895914 0.588495 +185 0.896841 0.586472 +186 0.89968 0.586465 +1 0.900578 0.588527 +SURF 0x10 +mat 1 +refs 4 +2 0.90123 0.590037 +187 0.901471 0.59059 +194 0.894987 0.590519 +3 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +187 0.901471 0.59059 +188 0.90123 0.590037 +193 0.895238 0.589977 +194 0.894987 0.590519 +SURF 0x10 +mat 1 +refs 4 +188 0.90123 0.590037 +189 0.900578 0.588527 +192 0.895914 0.588495 +193 0.895238 0.589977 +SURF 0x10 +mat 1 +refs 4 +189 0.900578 0.588527 +190 0.89968 0.586465 +191 0.896841 0.586472 +192 0.895914 0.588495 +SURF 0x10 +mat 1 +refs 14 +5 0.81811 0.220192 +4 0.816575 0.220192 +32 0.815455 0.220192 +30 0.815044 0.220192 +28 0.815455 0.220192 +26 0.816575 0.220192 +23 0.81811 0.220192 +21 0.897821 0.229292 +19 0.899352 0.229292 +17 0.900477 0.229292 +15 0.900887 0.229292 +13 0.900477 0.229292 +11 0.899352 0.229292 +8 0.897821 0.229292 +SURF 0x10 +mat 1 +refs 4 +74 0.812184 0.346439 +77 0.823228 0.363268 +83 0.822787 0.363268 +75 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +78 0.811462 0.346439 +88 0.822787 0.363268 +87 0.823228 0.363268 +79 0.812184 0.346439 +SURF 0x10 +mat 1 +refs 4 +80 0.810931 0.346439 +91 0.822462 0.363268 +88 0.822787 0.363268 +78 0.811462 0.346439 +SURF 0x10 +mat 1 +refs 4 +81 0.810737 0.346439 +93 0.822344 0.363268 +91 0.822462 0.363268 +80 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +82 0.810931 0.346439 +95 0.822462 0.363268 +93 0.822344 0.363268 +81 0.810737 0.346439 +SURF 0x10 +mat 1 +refs 4 +75 0.811462 0.346439 +83 0.822787 0.363268 +95 0.822462 0.363268 +82 0.810931 0.346439 +SURF 0x10 +mat 1 +refs 4 +25 0.903866 0.22629 +24 0.81811 0.22629 +38 0.81811 0.238487 +195 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +38 0.81811 0.238487 +46 0.81811 0.256781 +196 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +46 0.81811 0.256781 +54 0.81811 0.275076 +197 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +54 0.81811 0.275076 +62 0.81811 0.299469 +198 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +62 0.81811 0.299469 +70 0.772318 0.328378 +199 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 5 +199 0.903866 0.332566 +70 0.772318 0.328378 +79 0.812184 0.346439 +87 0.823228 0.363268 +200 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +87 0.823228 0.363268 +90 0.833294 0.404239 +201 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +90 0.833294 0.404239 +101 0.843477 0.44521 +202 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +101 0.843477 0.44521 +109 0.852858 0.486182 +203 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +109 0.852858 0.486182 +117 0.863803 0.526837 +137 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +123 0.926804 0.526837 +126 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 3 +115 0.903866 0.526837 +126 0.922367 0.54779 +121 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +117 0.863803 0.526837 +139 0.870847 0.54779 +SURF 0x10 +mat 1 +refs 3 +137 0.903866 0.526837 +139 0.870847 0.54779 +136 0.922367 0.54779 +SURF 0x10 +mat 1 +refs 4 +10 0.903866 0.22629 +25 0.903866 0.22629 +195 0.903866 0.238487 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +16 0.903866 0.221434 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +9 0.903866 0.222712 +12 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +20 0.903866 0.222073 +22 0.903866 0.222712 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +18 0.903866 0.221605 +20 0.903866 0.222073 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +12 0.903866 0.222073 +14 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +16 0.903866 0.221434 +18 0.903866 0.221605 +25 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +10 0.903866 0.22629 +14 0.903866 0.221605 +16 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +195 0.903866 0.238487 +196 0.903866 0.256781 +44 0.903866 0.256781 +36 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +196 0.903866 0.256781 +197 0.903866 0.275076 +52 0.903866 0.275076 +44 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +197 0.903866 0.275076 +198 0.903866 0.299469 +60 0.903866 0.299469 +52 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +198 0.903866 0.299469 +199 0.903866 0.332566 +68 0.903866 0.332566 +60 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +199 0.903866 0.332566 +200 0.903866 0.363268 +76 0.903866 0.363268 +68 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +200 0.903866 0.363268 +201 0.903866 0.404239 +86 0.903866 0.404239 +76 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +201 0.903866 0.404239 +202 0.903866 0.44521 +99 0.903866 0.44521 +86 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +202 0.903866 0.44521 +203 0.903866 0.486182 +107 0.903866 0.486182 +99 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +203 0.903866 0.486182 +137 0.903866 0.526837 +115 0.903866 0.526837 +107 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +137 0.903866 0.526837 +135 0.926804 0.526837 +123 0.926804 0.526837 +115 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +135 0.926804 0.526837 +133 0.928335 0.526837 +124 0.928335 0.526837 +123 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +133 0.928335 0.526837 +131 0.929455 0.526837 +127 0.929455 0.526837 +124 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 3 +131 0.929455 0.526837 +129 0.92987 0.526837 +127 0.929455 0.526837 +kids 0 +OBJECT poly +name "Rudder" +texture "Rascal.rgb" +numvert 106 +1.77038 -0.0429984 0.00635 +1.77355 -0.0429984 0.00549926 +1.79954 -0.0302984 0.00549926 +1.79636 -0.0302984 0.00635 +1.77588 -0.0429984 0.003175 +1.80186 -0.0302984 0.003175 +1.77673 -0.0429984 1.0018e-16 +1.80271 -0.0302984 1.06547e-16 +1.77588 -0.0429984 -0.003175 +1.80186 -0.0302984 -0.003175 +1.77355 -0.0429984 -0.00549926 +1.79954 -0.0302984 -0.00549926 +1.77038 -0.0429984 -0.00635 +1.79636 -0.0302984 -0.00635 +1.7526 -0.0429984 -0.00635 +1.7526 -0.0302984 -0.00635 +1.82221 -0.0112484 0.00549926 +1.81903 -0.0112484 0.00635 +1.82453 -0.0112484 0.003175 +1.82538 -0.0112484 1.39855e-16 +1.82453 -0.0112484 -0.003175 +1.82221 -0.0112484 -0.00549926 +1.81903 -0.0112484 -0.00635 +1.7526 -0.0112484 -0.00635 +1.83589 0.00780156 0.00549926 +1.83272 0.00780156 0.00635 +1.83822 0.00780156 0.003175 +1.83907 0.00780156 1.57084e-16 +1.83822 0.00780156 -0.003175 +1.83589 0.00780156 -0.00549926 +1.83272 0.00780156 -0.00635 +1.7526 0.00780156 -0.00635 +1.84664 0.0332016 0.00549926 +1.84347 0.0332016 0.00635 +1.84896 0.0332016 0.003175 +1.84982 0.0332016 2.15228e-16 +1.84896 0.0332016 -0.003175 +1.84664 0.0332016 -0.00549926 +1.84347 0.0332016 -0.00635 +1.7526 0.0332016 -0.00635 +1.85072 0.0678846 0.00549926 +1.84755 0.0678846 0.00635 +1.85305 0.0678846 0.003175 +1.8539 0.0678846 2.99494e-16 +1.85305 0.0678846 -0.003175 +1.85072 0.0678846 -0.00549926 +1.84755 0.0678846 -0.00635 +1.7526 0.0676649 -0.00635 +1.84935 0.0996346 0.00549926 +1.84617 0.0996346 0.00635 +1.85167 0.0996346 0.003175 +1.85252 0.0996346 3.82425e-16 +1.85167 0.0996346 -0.003175 +1.84935 0.0996346 -0.00549926 +1.84617 0.0996346 -0.00635 +1.7526 0.0996346 -0.00635 +1.84284 0.142297 0.00549926 +1.83967 0.142297 0.00635 +1.84517 0.142297 0.003175 +1.84602 0.142297 4.91852e-16 +1.84517 0.142297 -0.003175 +1.84284 0.142297 -0.00549926 +1.83967 0.142297 -0.00635 +1.7526 0.142297 -0.00635 +1.83267 0.18496 0.00549926 +1.82949 0.18496 0.00635 +1.83499 0.18496 0.003175 +1.83584 0.18496 6.00384e-16 +1.83499 0.18496 -0.003175 +1.83267 0.18496 -0.00549926 +1.82949 0.18496 -0.00635 +1.7526 0.18496 -0.00635 +1.8189 0.227623 0.00549926 +1.81572 0.227623 0.00635 +1.82122 0.227623 0.003175 +1.82207 0.227623 7.21909e-16 +1.82122 0.227623 -0.003175 +1.8189 0.227623 -0.00549926 +1.81572 0.227623 -0.00635 +1.7526 0.227623 -0.00635 +1.80328 0.269956 0.00549926 +1.80011 0.269956 0.00635 +1.8056 0.269956 0.003175 +1.80646 0.269956 8.42988e-16 +1.8056 0.269956 -0.003175 +1.80328 0.269956 -0.00549926 +1.80011 0.269956 -0.00635 +1.7526 0.269956 -0.00635 +1.7526 -0.0467241 0.00635 +1.7526 -0.0429984 0.00635 +1.7526 -0.0473896 0.00549926 +1.7526 -0.0478767 0.003175 +1.7526 -0.048055 9.42714e-17 +1.7526 -0.0478767 -0.003175 +1.7526 -0.0473896 -0.00549926 +1.7526 -0.0467241 -0.00635 +1.7526 -0.0302984 0.00635 +1.7526 -0.0112484 0.00635 +1.7526 0.00780156 0.00635 +1.7526 0.0332016 0.00635 +1.7526 0.0676649 0.00635 +1.7526 0.0996346 0.00635 +1.7526 0.142297 0.00635 +1.7526 0.18496 0.00635 +1.7526 0.227623 0.00635 +1.7526 0.269956 0.00635 +numsurf 109 +SURF 0x10 +mat 1 +refs 4 +0 0.912451 0.22629 +1 0.913981 0.22629 +2 0.926529 0.238487 +3 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +1 0.913981 0.22629 +4 0.915106 0.22629 +5 0.927649 0.238487 +2 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +4 0.915106 0.22629 +6 0.915516 0.22629 +7 0.92806 0.238487 +5 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +6 0.915516 0.22629 +8 0.915106 0.22629 +9 0.927649 0.238487 +7 0.92806 0.238487 +SURF 0x10 +mat 1 +refs 4 +8 0.915106 0.22629 +10 0.913981 0.22629 +11 0.926529 0.238487 +9 0.927649 0.238487 +SURF 0x10 +mat 1 +refs 4 +10 0.913981 0.22629 +12 0.912451 0.22629 +13 0.924994 0.238487 +11 0.926529 0.238487 +SURF 0x10 +mat 1 +refs 4 +12 0.912451 0.22629 +14 0.903866 0.22629 +15 0.903866 0.238487 +13 0.924994 0.238487 +SURF 0x10 +mat 1 +refs 4 +3 0.924994 0.238487 +2 0.926529 0.238487 +16 0.937474 0.256781 +17 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +2 0.926529 0.238487 +5 0.927649 0.238487 +18 0.938595 0.256781 +16 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +5 0.927649 0.238487 +7 0.92806 0.238487 +19 0.939005 0.256781 +18 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +7 0.92806 0.238487 +9 0.927649 0.238487 +20 0.938595 0.256781 +19 0.939005 0.256781 +SURF 0x10 +mat 1 +refs 4 +9 0.927649 0.238487 +11 0.926529 0.238487 +21 0.937474 0.256781 +20 0.938595 0.256781 +SURF 0x10 +mat 1 +refs 4 +11 0.926529 0.238487 +13 0.924994 0.238487 +22 0.935939 0.256781 +21 0.937474 0.256781 +SURF 0x10 +mat 1 +refs 4 +13 0.924994 0.238487 +15 0.903866 0.238487 +23 0.903866 0.256781 +22 0.935939 0.256781 +SURF 0x10 +mat 1 +refs 4 +17 0.935939 0.256781 +16 0.937474 0.256781 +24 0.944079 0.275076 +25 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +16 0.937474 0.256781 +18 0.938595 0.256781 +26 0.945204 0.275076 +24 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +18 0.938595 0.256781 +19 0.939005 0.256781 +27 0.945615 0.275076 +26 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +19 0.939005 0.256781 +20 0.938595 0.256781 +28 0.945204 0.275076 +27 0.945615 0.275076 +SURF 0x10 +mat 1 +refs 4 +20 0.938595 0.256781 +21 0.937474 0.256781 +29 0.944079 0.275076 +28 0.945204 0.275076 +SURF 0x10 +mat 1 +refs 4 +21 0.937474 0.256781 +22 0.935939 0.256781 +30 0.942549 0.275076 +29 0.944079 0.275076 +SURF 0x10 +mat 1 +refs 4 +22 0.935939 0.256781 +23 0.903866 0.256781 +31 0.903866 0.275076 +30 0.942549 0.275076 +SURF 0x10 +mat 1 +refs 4 +25 0.942549 0.275076 +24 0.944079 0.275076 +32 0.949269 0.299469 +33 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +24 0.944079 0.275076 +26 0.945204 0.275076 +34 0.95039 0.299469 +32 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +26 0.945204 0.275076 +27 0.945615 0.275076 +35 0.950805 0.299469 +34 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +27 0.945615 0.275076 +28 0.945204 0.275076 +36 0.95039 0.299469 +35 0.950805 0.299469 +SURF 0x10 +mat 1 +refs 4 +28 0.945204 0.275076 +29 0.944079 0.275076 +37 0.949269 0.299469 +36 0.95039 0.299469 +SURF 0x10 +mat 1 +refs 4 +29 0.944079 0.275076 +30 0.942549 0.275076 +38 0.947739 0.299469 +37 0.949269 0.299469 +SURF 0x10 +mat 1 +refs 4 +30 0.942549 0.275076 +31 0.903866 0.275076 +39 0.903866 0.299469 +38 0.947739 0.299469 +SURF 0x10 +mat 1 +refs 4 +33 0.947739 0.299469 +32 0.949269 0.299469 +40 0.951239 0.332777 +41 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +32 0.949269 0.299469 +34 0.95039 0.299469 +42 0.952364 0.332777 +40 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +34 0.95039 0.299469 +35 0.950805 0.299469 +43 0.952775 0.332777 +42 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +35 0.950805 0.299469 +36 0.95039 0.299469 +44 0.952364 0.332777 +43 0.952775 0.332777 +SURF 0x10 +mat 1 +refs 4 +36 0.95039 0.299469 +37 0.949269 0.299469 +45 0.951239 0.332777 +44 0.952364 0.332777 +SURF 0x10 +mat 1 +refs 4 +37 0.949269 0.299469 +38 0.947739 0.299469 +46 0.949709 0.332777 +45 0.951239 0.332777 +SURF 0x10 +mat 1 +refs 4 +38 0.947739 0.299469 +39 0.903866 0.299469 +47 0.903866 0.332566 +46 0.949709 0.332777 +SURF 0x10 +mat 1 +refs 4 +41 0.949709 0.332777 +40 0.951239 0.332777 +48 0.950578 0.363268 +49 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +40 0.951239 0.332777 +42 0.952364 0.332777 +50 0.951698 0.363268 +48 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +42 0.952364 0.332777 +43 0.952775 0.332777 +51 0.952108 0.363268 +50 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +43 0.952775 0.332777 +44 0.952364 0.332777 +52 0.951698 0.363268 +51 0.952108 0.363268 +SURF 0x10 +mat 1 +refs 4 +44 0.952364 0.332777 +45 0.951239 0.332777 +53 0.950578 0.363268 +52 0.951698 0.363268 +SURF 0x10 +mat 1 +refs 4 +45 0.951239 0.332777 +46 0.949709 0.332777 +54 0.949042 0.363268 +53 0.950578 0.363268 +SURF 0x10 +mat 1 +refs 4 +46 0.949709 0.332777 +47 0.903866 0.332566 +55 0.903866 0.363268 +54 0.949042 0.363268 +SURF 0x10 +mat 1 +refs 4 +49 0.949042 0.363268 +48 0.950578 0.363268 +56 0.947435 0.404239 +57 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +48 0.950578 0.363268 +50 0.951698 0.363268 +58 0.94856 0.404239 +56 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +50 0.951698 0.363268 +51 0.952108 0.363268 +59 0.94897 0.404239 +58 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +51 0.952108 0.363268 +52 0.951698 0.363268 +60 0.94856 0.404239 +59 0.94897 0.404239 +SURF 0x10 +mat 1 +refs 4 +52 0.951698 0.363268 +53 0.950578 0.363268 +61 0.947435 0.404239 +60 0.94856 0.404239 +SURF 0x10 +mat 1 +refs 4 +53 0.950578 0.363268 +54 0.949042 0.363268 +62 0.945904 0.404239 +61 0.947435 0.404239 +SURF 0x10 +mat 1 +refs 4 +54 0.949042 0.363268 +55 0.903866 0.363268 +63 0.903866 0.404239 +62 0.945904 0.404239 +SURF 0x10 +mat 1 +refs 4 +57 0.945904 0.404239 +56 0.947435 0.404239 +64 0.942525 0.44521 +65 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +56 0.947435 0.404239 +58 0.94856 0.404239 +66 0.943645 0.44521 +64 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +58 0.94856 0.404239 +59 0.94897 0.404239 +67 0.944055 0.44521 +66 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +59 0.94897 0.404239 +60 0.94856 0.404239 +68 0.943645 0.44521 +67 0.944055 0.44521 +SURF 0x10 +mat 1 +refs 4 +60 0.94856 0.404239 +61 0.947435 0.404239 +69 0.942525 0.44521 +68 0.943645 0.44521 +SURF 0x10 +mat 1 +refs 4 +61 0.947435 0.404239 +62 0.945904 0.404239 +70 0.940989 0.44521 +69 0.942525 0.44521 +SURF 0x10 +mat 1 +refs 4 +62 0.945904 0.404239 +63 0.903866 0.404239 +71 0.903866 0.44521 +70 0.940989 0.44521 +SURF 0x10 +mat 1 +refs 4 +65 0.940989 0.44521 +64 0.942525 0.44521 +72 0.935876 0.486182 +73 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +64 0.942525 0.44521 +66 0.943645 0.44521 +74 0.936997 0.486182 +72 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +66 0.943645 0.44521 +67 0.944055 0.44521 +75 0.937407 0.486182 +74 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +67 0.944055 0.44521 +68 0.943645 0.44521 +76 0.936997 0.486182 +75 0.937407 0.486182 +SURF 0x10 +mat 1 +refs 4 +68 0.943645 0.44521 +69 0.942525 0.44521 +77 0.935876 0.486182 +76 0.936997 0.486182 +SURF 0x10 +mat 1 +refs 4 +69 0.942525 0.44521 +70 0.940989 0.44521 +78 0.934341 0.486182 +77 0.935876 0.486182 +SURF 0x10 +mat 1 +refs 4 +70 0.940989 0.44521 +71 0.903866 0.44521 +79 0.903866 0.486182 +78 0.934341 0.486182 +SURF 0x10 +mat 1 +refs 4 +73 0.934341 0.486182 +72 0.935876 0.486182 +80 0.928335 0.526837 +81 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +72 0.935876 0.486182 +74 0.936997 0.486182 +82 0.929455 0.526837 +80 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +74 0.936997 0.486182 +75 0.937407 0.486182 +83 0.92987 0.526837 +82 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +75 0.937407 0.486182 +76 0.936997 0.486182 +84 0.929455 0.526837 +83 0.92987 0.526837 +SURF 0x10 +mat 1 +refs 4 +76 0.936997 0.486182 +77 0.935876 0.486182 +85 0.928335 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +77 0.935876 0.486182 +78 0.934341 0.486182 +86 0.926804 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +78 0.934341 0.486182 +79 0.903866 0.486182 +87 0.903866 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 3 +88 0.903866 0.222712 +0 0.912451 0.22629 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 4 +90 0.903866 0.222073 +1 0.913981 0.22629 +0 0.912451 0.22629 +88 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +91 0.903866 0.221605 +4 0.915106 0.22629 +1 0.913981 0.22629 +90 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 4 +92 0.903866 0.221434 +6 0.915516 0.22629 +4 0.915106 0.22629 +91 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +93 0.903866 0.221605 +8 0.915106 0.22629 +6 0.915516 0.22629 +92 0.903866 0.221434 +SURF 0x10 +mat 1 +refs 4 +94 0.903866 0.222073 +10 0.913981 0.22629 +8 0.915106 0.22629 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 4 +95 0.903866 0.222712 +12 0.912451 0.22629 +10 0.913981 0.22629 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +12 0.912451 0.22629 +95 0.903866 0.222712 +SURF 0x10 +mat 1 +refs 4 +89 0.903866 0.22629 +0 0.912451 0.22629 +3 0.924994 0.238487 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 4 +96 0.903866 0.238487 +3 0.924994 0.238487 +17 0.935939 0.256781 +97 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +17 0.935939 0.256781 +25 0.942549 0.275076 +98 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +25 0.942549 0.275076 +33 0.947739 0.299469 +99 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +33 0.947739 0.299469 +41 0.949709 0.332777 +100 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +41 0.949709 0.332777 +49 0.949042 0.363268 +101 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +49 0.949042 0.363268 +57 0.945904 0.404239 +102 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +57 0.945904 0.404239 +65 0.940989 0.44521 +103 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +65 0.940989 0.44521 +73 0.934341 0.486182 +104 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +73 0.934341 0.486182 +81 0.926804 0.526837 +105 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +96 0.903866 0.238487 +97 0.903866 0.256781 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 3 +82 0.929455 0.526837 +83 0.92987 0.526837 +84 0.929455 0.526837 +SURF 0x10 +mat 1 +refs 4 +80 0.928335 0.526837 +82 0.929455 0.526837 +84 0.929455 0.526837 +85 0.928335 0.526837 +SURF 0x10 +mat 1 +refs 4 +81 0.926804 0.526837 +80 0.928335 0.526837 +85 0.928335 0.526837 +86 0.926804 0.526837 +SURF 0x10 +mat 1 +refs 4 +105 0.903866 0.526837 +81 0.926804 0.526837 +86 0.926804 0.526837 +87 0.903866 0.526837 +SURF 0x10 +mat 1 +refs 4 +104 0.903866 0.486182 +105 0.903866 0.526837 +87 0.903866 0.526837 +79 0.903866 0.486182 +SURF 0x10 +mat 1 +refs 4 +103 0.903866 0.44521 +104 0.903866 0.486182 +79 0.903866 0.486182 +71 0.903866 0.44521 +SURF 0x10 +mat 1 +refs 4 +102 0.903866 0.404239 +103 0.903866 0.44521 +71 0.903866 0.44521 +63 0.903866 0.404239 +SURF 0x10 +mat 1 +refs 4 +101 0.903866 0.363268 +102 0.903866 0.404239 +63 0.903866 0.404239 +55 0.903866 0.363268 +SURF 0x10 +mat 1 +refs 4 +100 0.903866 0.332566 +101 0.903866 0.363268 +55 0.903866 0.363268 +47 0.903866 0.332566 +SURF 0x10 +mat 1 +refs 4 +99 0.903866 0.299469 +100 0.903866 0.332566 +47 0.903866 0.332566 +39 0.903866 0.299469 +SURF 0x10 +mat 1 +refs 4 +98 0.903866 0.275076 +99 0.903866 0.299469 +39 0.903866 0.299469 +31 0.903866 0.275076 +SURF 0x10 +mat 1 +refs 4 +97 0.903866 0.256781 +98 0.903866 0.275076 +31 0.903866 0.275076 +23 0.903866 0.256781 +SURF 0x10 +mat 1 +refs 4 +15 0.903866 0.238487 +14 0.903866 0.22629 +89 0.903866 0.22629 +96 0.903866 0.238487 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +92 0.903866 0.221434 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +90 0.903866 0.222073 +88 0.903866 0.222712 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +95 0.903866 0.222712 +94 0.903866 0.222073 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +94 0.903866 0.222073 +93 0.903866 0.221605 +SURF 0x10 +mat 1 +refs 3 +91 0.903866 0.221605 +90 0.903866 0.222073 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +92 0.903866 0.221434 +91 0.903866 0.221605 +89 0.903866 0.22629 +SURF 0x10 +mat 1 +refs 3 +14 0.903866 0.22629 +93 0.903866 0.221605 +92 0.903866 0.221434 +kids 0 +OBJECT poly +name "Prop_Disk" +numvert 33 +0.0508 -0.254 1.2442e-17 +0.0508 -0.249119 0.0495529 +0.0508 1.38778e-17 1.67788e-17 +0.0508 -0.234665 0.0972016 +0.0508 -0.211193 0.141115 +0.0508 -0.179605 0.179605 +0.0508 -0.141115 0.211193 +0.0508 -0.0972016 0.234665 +0.0508 -0.0495529 0.249119 +0.0508 -1.55525e-17 0.254 +0.0508 0.0495529 0.249119 +0.0508 0.0972016 0.234665 +0.0508 0.141115 0.211193 +0.0508 0.179605 0.179605 +0.0508 0.211193 0.141115 +0.0508 0.234665 0.0972016 +0.0508 0.249119 0.0495529 +0.0508 0.254 4.3547e-17 +0.0508 0.249119 -0.0495529 +0.0508 0.234665 -0.0972016 +0.0508 0.211193 -0.141115 +0.0508 0.179605 -0.179605 +0.0508 0.141115 -0.211193 +0.0508 0.0972016 -0.234665 +0.0508 0.0495529 -0.249119 +0.0508 4.66575e-17 -0.254 +0.0508 -0.0495529 -0.249119 +0.0508 -0.0972016 -0.234665 +0.0508 -0.141115 -0.211193 +0.0508 -0.179605 -0.179605 +0.0508 -0.211193 -0.141115 +0.0508 -0.234665 -0.0972016 +0.0508 -0.249119 -0.0495529 +numsurf 32 +SURF 0x30 +mat 3 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +1 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +3 0 0 +4 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +4 0 0 +5 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +5 0 0 +6 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +6 0 0 +7 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +7 0 0 +8 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +8 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +9 0 0 +10 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +10 0 0 +11 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +11 0 0 +12 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +12 0 0 +13 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +13 0 0 +14 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +14 0 0 +15 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +15 0 0 +16 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +16 0 0 +17 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +17 0 0 +18 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +18 0 0 +19 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +19 0 0 +20 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +20 0 0 +21 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +21 0 0 +22 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +22 0 0 +23 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +23 0 0 +24 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +24 0 0 +25 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +25 0 0 +26 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +26 0 0 +27 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +27 0 0 +28 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +28 0 0 +29 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +29 0 0 +30 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +30 0 0 +31 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +31 0 0 +32 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 3 +32 0 0 +0 0 0 +2 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/Rascal110/Models/Rascal110.xml b/resources/flightgear/Aircraft/Rascal110/Models/Rascal110.xml new file mode 100644 index 0000000000000000000000000000000000000000..f4170ff362e7d9dfc23424735f5be8b9a3c10427 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/Rascal110.xml @@ -0,0 +1,87 @@ + + + + + Rascal110-000-013.ac + + + Aircraft/Rascal/Models/smokeW.xml + + 2.0 + 0.0 + 0.0 + 0 + 0 + 0 + + + + + rotate + L_Aileron + /surface-positions/left-aileron-pos-norm + 20.0 +
+ 0.735 + -0.450 + 0.139 +
+ + 0.037 + 1.0 + -0.029 + +
+ + + rotate + R_Aileron + /surface-positions/right-aileron-pos-norm + 20.0 +
+ 0.735 + 0.450 + 0.139 +
+ + -0.037 + 1.0 + 0.029 + +
+ + + rotate + Elevator + /surface-positions/elevator-pos-norm + 35.0 +
+ 1.752 + 0.0 + 0.051 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + rotate + Rudder + /surface-positions/rudder-pos-norm + 35.0 +
+ 1.752 + 0.0 + 0.0 +
+ + 0.0 + 0.0 + 1.0 + +
+ +
diff --git a/resources/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac b/resources/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac new file mode 100644 index 0000000000000000000000000000000000000000..4daabfce065f9b6f285485a28fd08776a6e09320 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.ac @@ -0,0 +1,30 @@ +AC3Db +MATERIAL "ac3dmat9" rgb 0 0 1 amb 0 0 1 emis 0 0 1 spec 0 0 1 shi 0 trans 0 +MATERIAL "ac3dmat3" rgb 1 0 0 amb 1 0 0 emis 1 0 0 spec 1 0 0 shi 0 trans 0 +OBJECT world +kids 2 +OBJECT poly +name "line" +loc 0 0.5 0 +numvert 2 +0 0.5 0 +0 -0.5 0 +numsurf 1 +SURF 0x22 +mat 0 +refs 2 +0 0 1 +1 0 0 +kids 0 +OBJECT poly +name "line" +numvert 2 +0 0 -3 +0 0 3 +numsurf 1 +SURF 0x22 +mat 1 +refs 2 +0 0 1 +1 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml b/resources/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml new file mode 100644 index 0000000000000000000000000000000000000000..f0897f2c6f274741524f56d946f3c14459dcd9f8 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/Trajectory-Marker.xml @@ -0,0 +1,9 @@ + + + + + + + Trajectory-Marker.ac + + diff --git a/resources/flightgear/Aircraft/Rascal110/Models/fix.sh b/resources/flightgear/Aircraft/Rascal110/Models/fix.sh new file mode 100755 index 0000000000000000000000000000000000000000..eb14cb636ddff14eb6213dc57c4eaf88e455e739 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/fix.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +for f in "$@" ; do + sed -i.before-color-change 's,\(MATERIAL.*\)rgb\(.*\)amb\(.*\)emis\(.*\)spec\(.*\)shi\(.*\)trans\(.*\)$,\1rgb\2amb\2emis\4spec\5shi\6trans\7,1' "$f" + if ! cmp "${f}" "${f}.before-color-change" > /dev/null 2>&1 ; then + echo "$f has changed colors!" + fi +done diff --git a/resources/flightgear/Aircraft/Rascal110/Models/smoke.png b/resources/flightgear/Aircraft/Rascal110/Models/smoke.png new file mode 100644 index 0000000000000000000000000000000000000000..7bad8c685f636179ff1ce401869188bae2d2225a Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal110/Models/smoke.png differ diff --git a/resources/flightgear/Aircraft/Rascal110/Models/smokeW.xml b/resources/flightgear/Aircraft/Rascal110/Models/smokeW.xml new file mode 100644 index 0000000000000000000000000000000000000000..6d7f06730e22e410a602869d069138a752c42fcf --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Models/smokeW.xml @@ -0,0 +1,102 @@ + + + + + + + + + smoke + + + 0.000 + 0.000 + -0.000 + 0.000 + 0.000 + 0.000 + + + smoke.png + + + sim/multiplay/generic/int[0] + + + false + false + billboard + world + + + point + + + + 10 + 86 + -1.5 + 8 + + 10 + 2.5 + + + 5 + 5 + 5 + 60 + 60 + 60 + + + + + + 100 + 1 + + + + + + + 0.9 + 0.9 + 0.9 + 0.3 + + + 0.3 + + + + + + 0.900 + 0.900 + 0.900 + 0.001 + + + 10.0 + + + + + 60 + + + 0.001 + 1.0 + + + + air + false + true + + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/README.Rascal b/resources/flightgear/Aircraft/Rascal110/README.Rascal new file mode 100644 index 0000000000000000000000000000000000000000..53559bf73c3fabde9ebf0dd8079b8674bf9d37ac --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/README.Rascal @@ -0,0 +1,236 @@ +This information has not been updated for the Rascal, please ignore, we +are still at pre-pre-pre-alpha with this model! + +PIPER J3 CUB PERFORMANCE DATA +============================= + +[This information is copied from the 1946 J3C-65 owner's handbook.] + + FLYING HINTS + +The Piper Cub Special represents more than 15 years of diligent +aircraft engineering and manufacturing experience. Its simplicity of +design and construction, its low operating and maintenance costs, its +inherent stability, ruggedness, and its outstanding safety and ease of +flying, have made it the most popular airplane in aviation history. +The Piper Cub Special is the time-tested product of millions of hours +of flying under all conceivable conditions both in the military and in +peace time. + +There are hints on starting, flying, stopping, and other related +topics that are important to the owner who wants to conserve his +airplane -- keep it in maximum airworthy condition -- and enjoy a full +measure of flying satisfaction. + + +First, each pilot should become familiar enough with his Piper Cub +Special that he can accomplish a satisfactory pre-flight inspection. +This check is simple and requires only a few minutes. See Section IX +for check list. Daily check of airplane prior to flight should be the +first in a number of safe flying habits the pilot should acquire. + + +A. BEFORE STARTING ENGINE + +(1) Make routine check of gasoline supply. Visible fuel gauge is +integral part of gas tank cap; it will not show number of gallons but +will show proportion of fuel in tank by length of rod which extends +upward from cap. A full tank of 12 U.S. gallons will be indicated by +11 inches of rod extending beyond cap. Keep gas gauge rod clean and +smooth with crocus cloth for accuracy and freedom of movement. + +(2) Check oil level in engine sump by removing oil cap and gauge. Oil +stick should indicate oil level up to index mark of 4 quarts. + +(3) Check freedom of movement of flight and engine controls. + + +B. STARTING ENGINE + +(1) Chock wheels, or have occupant who is familiar with controls set +brakes in cabin. + +(2) Ignition switch OFF. Verify. + +(3) Set throttle approximately 1/10 open. + +(4) Push fuel shut-off ON. + +(5) Turn propeller through several times. + +(6) Turn ignition switch ON. + +(7) Start engine by pulling propeller through with a snap. + +CAUTION -- Always handle propeller as if switch were "ON." Stand as +far in front of propeller as possible. Use both hands and grasp one +blad approximately midway from tip. Do not overgrasp blade. Do not +wear long, loose clothing. Make sure footing is sure to preclude +possibility of feet slipping. + +(8) If engine does not start, turn switch OFF. Turn primer knob to +unlock, pull out, pump three or four times, then reseat primer and +lock by turning in opposite direction. In extremely cold weather a +few strokes of the primer as the engine starts will enable it to keep +running. NOTE -- Avoid excessive priming as it causes raw gasoline to +wash lubricating oil from engine cylinder walls. Do not prime warm +engine. + +(9) Repeat starting procedures 6, 7. + +(10) If engine loads up and refuses to start, turn ignition switch +"OFF,", open throttle wide and turn propeller through backwards +several times to unload excessive gas mixture in cylinders. Then +close throttle and repeat starting procedure. + + +C. ENGINE WARM-UP + +(1) As soon as engine starts, advance throttle slightly to idle at 700 +R.P.M. Check engine instruments. If oil pressure gauge does not +indicate pressure within 30 seconds, stop engine immediately, check +and correct trouble before any further operation. Oil temperature +during operating should not rise above 200° F. and oil pressure should +not fall below 30 pounds. With engine warm, idling speed should be +550-600 R.P.M. + +(2) Rev engine up to 2100 R.P.M. on both magnetos. Switch to LEFT and +RIGHT magnetos. R.P.M. drop should not be over 75 R.P.M. CAUTION +--Do not operate engine on either single magneto for more than 30 +seconds at a time, as this tends to foul the non-operating spark plugs +in the ignition circuit of the magneto that is switched off. + + +D. STOPPING ENGINE + +(1) Never cut switch immediately after landing as this causes engine +to cool too rapidly. + +(2) Idle engine, especially in high temperature operating conditions, +for several minutes. It is advisable to switch to each magneto for 30 +second intervals to allow gradual cooling of engine. This helps to +prevent overheating of spark plug insulators and will lessen tendency +for "after-firing." + +(3) Check for carburetor heat OFF during idling. + + +E. TAXIING + +(1) Open throttle to start airplane in motion; then close throttle to +a setting sufficient to keep airplane rolling. Do not keep throttle +advanced so that it is necessary to control taxi speed of airplane +with brakes. This causes unnecessary wear and tear on brakes and +tires. + +(2) Taxi slowly (speed of a fast walk) controlling direction with +rudder which is connected to a steerable tail wheel. Use brakes only +for positive, precision ground control when necessary. + +(3) Taxi upwind with stick back; downwind with stick foreward. When +ground winds are in excess of 15 M.P.H., turn into wind using ailerons +in direction of turn; apply ailerons away from the turn when turning +downwind. This procedure helps to prevent the wind "picking up" a +wing during windy, gusty conditions. Always make ground turns slowly. + + +F. GENERAL FLYING + +(1) For takeoff use full throttle, heading into wind. Airplane loaded +will become airborne at approximately 39 M.P.H. Best climb speed is +an indicated 55 M.P.H. + +(2) Indicated R.P.M. for cruising speed of 73 M.P.H. is 2150. +Take-off R.P.M. is 2300. Do not fly at full throttle over 3 minutes. + +(3) Use CARBURETOR AIR HEAT when engine runs "rough" and tachometer +shows drop in R.P.M. which may be due to ice forming in carburetor. +Tachometer should recover to within 50 R.P.M. below normal when using +carburetor heat. Push heater to "OFF" position, and if icing +condition has been cleared, R.P.M. should return to normal. Continued +use of carburetor heat will only cause increased fuel consumption and +loss of power. + +(4) Maximum permissible diving speed is 122 M.P.H. + + +G. APPROACH AND LANDING + +(1) Push carburetor heat ON prior to throttling back for glide, or for +any other flight maneuver. + +(2) Glide between 50-60 M.P.H. depending upon loading of airplane and +gust conditions. + +NOTE -- "Clear" engine by opening throttle gently, every 200-250 feet +of descent during a long glide so that engine temperature will be +maintained. + +Throttle action on the part of the pilot should be smooth and gentle +at all times. + + +H. PARKING AND MOORING + +(1) After termination of flight, enter flying time in aircraft and +engine log books. + +(2) Turn ignition and fuel OFF. + +(3) Chcok the wheels of airplane. + +(4) If airplane is not to be flown for some time, it should be +hangared or tied down. Use good quality 1/2" - 5/8" diameter rope. +Secure to lift assist handle at aft end of fuselage; also at upper end +of both front wing lift struts where they attach to wing. Make sure +that rope passes between aileron cable and lift strut. Mooring ropes, +when airplane is tied down, should have no slack. + +(5) Lock aileron and elevator controls by wrapping front seat belt +completely around rear control stick, tighten and buckle. + +(6) Under excessively wind conditions, airplane should be tailed into +wind for mooring. + + + + +[Here is my older information.] + +These are the only numbers I could find. They are for a J3 Cub with +an 85HP engine rather than 65 hp, so some adjustments may be +necessary. The source is + + http://www.evergreenfs.com/planedata.htm + + +Speeds +------ + Best rate of climb (Vy): 65 mph (57 kt) + Best angle of climb (Vx): 55 mph (48 kt) + Cruise: 70 mph (61 kt) + Never-exceed (Vne): 122 mph (106 kt) + Best Glide (Vglide): 60 mph (52 kt) + Stall (Vs): 38 mph (33 kt) + Maneuvering (Va): 70 mph (61 kt) + Approach: 50-60 mph (44-52 kt) + +Power +----- + Take off: full + Climb: 50 rpm below full + Cruise: 2300 rpm + Approach: 1200 rpm + Practice stalls: 1200 rpm + +Distances +--------- + Take-off: 450-800 ft + Landing: 200-800 ft + +Fuel +---- + Total fuel: 12 gal US + Usable fuel: 12 gal US + Grade: 80/87 + GPH: 5 gal US/hr diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal-keyboard.xml b/resources/flightgear/Aircraft/Rascal110/Rascal-keyboard.xml new file mode 100644 index 0000000000000000000000000000000000000000..504ecca2ce180a41060d2598a7ac0e3e7ed831c0 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Rascal-keyboard.xml @@ -0,0 +1,24 @@ + + + + + + Ctrl-I + Show configuration dialog + + nasal + + + + + + S + Toggle smoke + + property-toggle + sim/multiplay/generic/int[0] + + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal-submodels.xml b/resources/flightgear/Aircraft/Rascal110/Rascal-submodels.xml new file mode 100644 index 0000000000000000000000000000000000000000..2ebff47f5354afc2c55bdbe7252a2e9465831ccd --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Rascal-submodels.xml @@ -0,0 +1,25 @@ + + + + + + trajectory marker + Aircraft/Rascal/Models/Trajectory-Marker.xml + /sim/multiplay/generic/int[1] + 0 + true + 0.75 + -1 + -0.5 + 0.0 + -0.08 + 0.0 + 0.0 + 1000000000.00 + 600 + 32 + false + false + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml b/resources/flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..e3ebc4c0ae49ea7b7cedb3717e60823979487480 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Rascal110-JSBSim-set.xml @@ -0,0 +1,213 @@ + + + + + + + Rascal 110 (R/C) + Lee Elliot (3D) Dave Culp (JSBsim dynamics) and Curt Olson + 0.1 + + + Aircraft/Rascal/Rascal110-splash.rgb + + + jsb + Rascal110-JSBSim + 0.8 + + + + Aircraft/Rascal/Systems/110-autopilot.xml + + + Aircraft/Rascal/Systems/electrical.xml + + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/Rascal/Models/Rascal110.xml + + + + Huds/NTPS.xml + true + + true + true + 0.85 + 0.85 + + + + 0.38 + 1.0 + 0.22 + + + 1.0 + 0.0 + 0.0 + + + + + + true + + 0.0 + -0.15 + 0.9 + -8 + + + + + 1 + Aircraft/Rascal/Rascal-submodels.xml + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + + 0.5 + + + + + News Camera + lookat + true + + /position/latitude-deg + /position/longitude-deg + /position/altitude-ft + /orientation/heading-deg + /orientation/pitch-deg + /orientation/roll-deg + 0.0 + -0.35 + -0.4 + + /sim/input/click/latitude-deg + /sim/input/click/longitude-deg + /sim/input/click/elevation-ft + + + + + Camera View + true + lookfrom + false + + true + 0 + 0.5f + 55.0 + + + + + 1 + + 0 + 0 + + + + + Rascal 110 (Sig Mfg) + Cruise speed: 60 kts + Never-exceed (Vne): 85 kts + Best Glide (Vglide): 20 kts + Maneuvering (Va): 50 kts + Approach speed: 20-25 kts + Stall speed (Vs): 15 kts + + + + + + + Aircraft/Rascal/Systems/main.nas + Aircraft/Rascal/Systems/airdata.nas + Aircraft/Rascal/Systems/ugear.nas + + + + + + 2 + + + + + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + + + + + + + 700 + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml b/resources/flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml new file mode 100644 index 0000000000000000000000000000000000000000..e09dd7b15b2105e6c0da1a349592f38a3abc7d2a --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Rascal110-JSBSim.xml @@ -0,0 +1,522 @@ + + + + + + Author Name + Creation Date + Version + Models a rascal + + + + 10.57 + 9.17 + 1.15 + 1.69 + 3.28 + 1.06 + 0 + + 37.4 + 0 + 0 + + + 20 + 0 + 5 + + + 0 + 0 + 0 + + + + + 1.95 + 1.55 + 1.91 + 0 + 0 + 0 + 13 + + 36.4 + 0 + 4 + + + + + + + 33.1 + -9.9 + -13.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + LEFT + 0 + + + + 33.1 + 9.9 + -13.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + RIGHT + 0 + + + + 68.9 + 0 + -6.6 + + 0.8 + 0.5 + 0.02 + 24 + 20 + 360.0 + NONE + 0 + + + + + + + 36 + 0 + 0 + + + 0.0 + 0 + 0 + + 0 + + + 1 + 0 + 0 + + + 0.0 + 0.0 + 0.0 + + 1.0 + + + + + 36.36 + 0 + -1.89375 + + 1.5 + 1.5 + + + + + + + + fcs/elevator-cmd-norm + fcs/pitch-trim-cmd-norm + + -1 + 1 + + + + + fcs/pitch-trim-sum + + -0.35 + 0.3 + + fcs/elevator-pos-rad + + + + fcs/elevator-pos-rad + + -0.3 + 0.3 + + + -1 + 1 + + fcs/elevator-pos-norm + + + + fcs/aileron-cmd-norm + fcs/roll-trim-cmd-norm + + -1 + 1 + + + + + fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/left-aileron-pos-rad + + + + -fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/right-aileron-pos-rad + + + + fcs/left-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/left-aileron-pos-norm + + + + fcs/right-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/right-aileron-pos-norm + + + + fcs/rudder-cmd-norm + fcs/yaw-trim-cmd-norm + + -1 + 1 + + + + + fcs/rudder-command-sum + + -0.35 + 0.35 + + fcs/rudder-pos-rad + + + + fcs/rudder-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/rudder-pos-norm + + + + + + + + Drag_at_zero_lift + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -1.5700 1.5000 + -0.2600 0.0560 + 0.0000 0.0280 + 0.2600 0.0560 + 1.5700 1.5000 + +
+
+
+ + Induced_drag + + aero/qbar-psf + metrics/Sw-sqft + aero/cl-squared + 0.0400 + + + + Drag_due_to_sideslip + + aero/qbar-psf + metrics/Sw-sqft + + aero/beta-rad + + -1.5700 1.2300 + -0.2600 0.0500 + 0.0000 0.0000 + 0.2600 0.0500 + 1.5700 1.2300 + +
+
+
+ + Drag_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-norm + 0.0300 + + +
+ + + + Side_force_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + aero/beta-rad + -1.0000 + + + + + + + Lift_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -0.2000 -0.7500 + 0.0000 0.2500 + 0.2300 1.4000 + 0.6000 0.7100 + +
+
+
+ + Lift_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-rad + 0.2000 + + +
+ + + + Roll_moment_due_to_beta + + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + -0.1000 + + + + Roll_moment_due_to_roll_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/p-aero-rad_sec + -0.4000 + + + + Roll_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + 0.1500 + + + + Roll_moment_due_to_aileron + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + + velocities/mach + + 0.0000 0.1300 + 2.0000 0.0570 + +
+
+
+ + Roll_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + 0.0100 + + +
+ + + + Pitch_moment_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/alpha-rad + -0.5000 + + + + Pitch_moment_due_to_elevator + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + fcs/elevator-pos-rad + + velocities/mach + + 0.0000 -0.5000 + 2.0000 -0.2750 + +
+
+
+ + Pitch_moment_due_to_pitch_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + velocities/q-aero-rad_sec + -12.0000 + + + + Pitch_moment_due_to_alpha_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + aero/alphadot-rad_sec + -7.0000 + + +
+ + + + Yaw_moment_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + 0.1200 + + + + Yaw_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + -0.1500 + + + + Yaw_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + -0.0500 + + + + Adverse_yaw + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + -0.0300 + + + + Yaw_moment_due_to_tail_incidence + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + 0.0007 + + + +
+
diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml b/resources/flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..3b92a5950a5682bce0a5cab7bd54976aa22323f1 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Rascal110-YASim-set.xml @@ -0,0 +1,108 @@ + + + + + + + Rascal 110 (R/C) + Lee Elliot (3D) Dave Culp (JSBsim dynamics) and Curt Olson + 0.1 + + + Aircraft/Rascal/Rascal110-splash.rgb + + + yasim + Rascal110-YASim + 0.8 + + + + Aircraft/Rascal/Systems/110-autopilot.xml + + + Aircraft/Rascal/Systems/electrical.xml + + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/Rascal/Models/Rascal110.xml + + + + true + + 0.0 + -0.3 + 0.9 + -8 + + + + + Rascal 110 (Sig Mfg) + Cruise speed: 60 mph + Never-exceed (Vne): 85 mph + Best Glide (Vglide): 20 mph + Maneuvering (Va): 50 mph + Approach speed: 15-25 mph + Stall speed (Vs): 10 mph + + + + + + + 2 + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + 1.0 + + + + + 700 + + + + + + + 48.0 + 56.0 + 400.0 + 1000.0 + 6000.0 + 0.008 + 0.35 + 0.001 + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal110-YASim.xml b/resources/flightgear/Aircraft/Rascal110/Rascal110-YASim.xml new file mode 100644 index 0000000000000000000000000000000000000000..50b36d8320c95520bd2e3bebfd8e3962ac34ebf9 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Rascal110-YASim.xml @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Rascal110-splash.rgb b/resources/flightgear/Aircraft/Rascal110/Rascal110-splash.rgb new file mode 100644 index 0000000000000000000000000000000000000000..0b0daff89d40685b7c99d7ceb32625a63e5d3de4 Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal110/Rascal110-splash.rgb differ diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 b/resources/flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 new file mode 100644 index 0000000000000000000000000000000000000000..6ffff8d76eb5e8c45cb8c1010f5b5a981c7df228 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/.#110-autopilot.xml.1.2 @@ -0,0 +1,711 @@ + + + + + + + + + + + + + + + + + + Wing Leveler (Turn Coordinator based) + false + + /autopilot/locks/heading + wing-leveler + + + /orientation/roll-deg + + + 0.0 + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + Bank Hold + false + + /autopilot/locks/heading + bank-hold + + + /orientation/roll-deg + + + /autopilot/settings/target-bank-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Heading Bug Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + dg-heading-hold + + + /autopilot/internal/fdm-heading-bug-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -0.1 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Heading Bug Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + dg-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + True Heading Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + true-heading-hold + + + /autopilot/internal/true-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + True Heading Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + true-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Nav1 Hold Stage 1 + false + + /autopilot/locks/heading + nav1-hold + + + /autopilot/internal/nav1-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Nav1 Hold Stage 2 + false + + /autopilot/locks/heading + nav1-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + pitch-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Pitch hold w/ yoke + false + + /autopilot/locks/altitude + pitch-hold-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + AOA hold + false + + /autopilot/locks/altitude + aoa-hold + + + /orientation/alpha-deg + + + /autopilot/settings/target-aoa-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + Altitude Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + altitude-hold + + + /position/altitude-ft + + + /autopilot/settings/target-altitude-ft + + + /autopilot/internal/target-climb-rate-fps + + + 0.3 + + 0.0 + -8.33 + + 8.33 + + + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + altitude-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /autopilot/settings/target-pitch-deg + + + 0.5 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.0001 + -5.0 + 5.0 + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + altitude-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + AGL Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + agl-hold + + + /position/altitude-agl-ft + + + /autopilot/settings/target-agl-ft + + + /autopilot/internal/target-climb-rate-fps + + + 1.0 + 1.0 + 0.1 + 0.0 + + 25.0 + 0.000000001 + -16.67 + 8.33 + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + agl-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Glideslop Hold + false + + /autopilot/locks/altitude + gs1-hold + + + /velocities/vertical-speed-fps + + + /instrumentation/nav[0]/gs-rate-of-climb + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + + Auto Throttle (5 sec lookahead) + false + + /autopilot/locks/speed + speed-with-throttle + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /controls/engines/engine[0]/throttle + /controls/engines/engine[1]/throttle + /controls/engines/engine[2]/throttle + /controls/engines/engine[3]/throttle + /controls/engines/engine[4]/throttle + /controls/engines/engine[5]/throttle + /controls/engines/engine[6]/throttle + /controls/engines/engine[7]/throttle + + + 0.1 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.001 + 0.0 + 1.0 + + + + + + Speed hold (vary pitch trim) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch trim) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Speed hold (vary pitch via yoke) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch via yoke) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml b/resources/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ab47ed98f0845b6f37d088aeb24f63d15d3423e --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + Wing Leveler (Turn Coordinator based) + false + + /autopilot/locks/heading + wing-leveler + + + /orientation/roll-deg + + + 0.0 + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + Bank Hold + false + + /autopilot/locks/heading + bank-hold + + + /orientation/roll-deg + + + /autopilot/settings/target-bank-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Heading Bug Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + dg-heading-hold + + + /autopilot/internal/fdm-heading-bug-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -0.1 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Heading Bug Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + dg-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + True Heading Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + true-heading-hold + + + /autopilot/internal/true-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + True Heading Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + true-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Nav1 Hold Stage 1 + false + + /autopilot/locks/heading + nav1-hold + + + /autopilot/internal/nav1-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Nav1 Hold Stage 2 + false + + /autopilot/locks/heading + nav1-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + pitch-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Pitch hold w/ yoke + false + + /autopilot/locks/altitude + pitch-hold-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + AOA hold + false + + /autopilot/locks/altitude + aoa-hold + + + /orientation/alpha-deg + + + /autopilot/settings/target-aoa-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + Altitude Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + altitude-hold + + + /position/altitude-ft + + + /autopilot/settings/target-altitude-ft + + + /autopilot/internal/target-climb-rate-fps + + + 0.3 + 0.0 + -8.33 + 8.33 + + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + altitude-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /autopilot/settings/target-pitch-deg + + + 0.5 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.00001 + -5.0 + 5.0 + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + altitude-hold + true + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + AGL Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + agl-hold + + + /position/altitude-agl-ft + + + /autopilot/settings/target-agl-ft + + + /autopilot/internal/target-climb-rate-fps + + + 1.0 + 1.0 + 0.1 + 0.0 + + 25.0 + 0.000000001 + -16.67 + 8.33 + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + agl-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Glideslop Hold + false + + /autopilot/locks/altitude + gs1-hold + + + /velocities/vertical-speed-fps + + + /instrumentation/nav[0]/gs-rate-of-climb + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + + Auto Throttle (5 sec lookahead) + false + + /autopilot/locks/speed + speed-with-throttle + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /controls/engines/engine[0]/throttle + /controls/engines/engine[1]/throttle + /controls/engines/engine[2]/throttle + /controls/engines/engine[3]/throttle + /controls/engines/engine[4]/throttle + /controls/engines/engine[5]/throttle + /controls/engines/engine[6]/throttle + /controls/engines/engine[7]/throttle + + + 0.1 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.001 + 0.0 + 1.0 + + + + + + Speed hold (vary pitch trim) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch trim) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-accel-ktps + + + 0.2 + 0.0 + -1.0 + 1.0 + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /accelerations/airspeed-ktps + + + //autopilot/settings/target-accel-ktps + + + /controls/flight/elevator + + + 0.02 + 1.0 + 0.1 + 0.0 + + 8.0 + 0.001 + -0.25 + 0.25 + + + + + + Speed hold (vary pitch via yoke) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-yoke-pitch + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch via yoke) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-yoke-pitch + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a b/resources/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a new file mode 100644 index 0000000000000000000000000000000000000000..05f17e152937819d2212f3ff5240c7be1855ddbc --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/110-autopilot.xml-a @@ -0,0 +1,707 @@ + + + + + + + + + + + + + + + + + + Wing Leveler (Turn Coordinator based) + false + + /autopilot/locks/heading + wing-leveler + + + /orientation/roll-deg + + + 0.0 + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + Bank Hold + false + + /autopilot/locks/heading + bank-hold + + + /orientation/roll-deg + + + /autopilot/settings/target-bank-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Heading Bug Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + dg-heading-hold + + + /autopilot/internal/fdm-heading-bug-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -0.1 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Heading Bug Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + dg-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + True Heading Hold (DG based) Stage 1 + false + + /autopilot/locks/heading + true-heading-hold + + + /autopilot/internal/true-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + True Heading Hold (DG based) Stage 2 + false + + /autopilot/locks/heading + true-heading-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + Nav1 Hold Stage 1 + false + + /autopilot/locks/heading + nav1-hold + + + /autopilot/internal/nav1-heading-error-deg + + + 0.0 + + + /autopilot/internal/target-roll-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 10.0 + 0.00001 + -20.0 + 20.0 + + + + + + Nav1 Hold Stage 2 + false + + /autopilot/locks/heading + nav1-hold + + + /orientation/roll-deg + + + /autopilot/internal/target-roll-deg + + + /controls/flight/aileron + + + 0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.01 + -1.0 + 1.0 + + + + + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + pitch-hold + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + Pitch hold w/ yoke + false + + /autopilot/locks/altitude + pitch-hold-yoke + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + AOA hold + false + + /autopilot/locks/altitude + aoa-hold + + + /orientation/alpha-deg + + + /autopilot/settings/target-aoa-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + Altitude Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + altitude-hold + + + /position/altitude-ft + + + /autopilot/settings/target-altitude-ft + + + /autopilot/internal/target-climb-rate-fps + + + 0.3 + 0.0 + -8.33 + 8.33 + + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + altitude-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /autopilot/settings/target-pitch-deg + + + 0.5 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.00001 + -5.0 + 5.0 + + + + + + + Pitch hold + false + + /autopilot/locks/altitude + altitude-hold + true + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + AGL Hold (Altimeter based) Stage 1 + false + + /autopilot/locks/altitude + agl-hold + + + /position/altitude-agl-ft + + + /autopilot/settings/target-agl-ft + + + /autopilot/internal/target-climb-rate-fps + + + 1.0 + 1.0 + 0.1 + 0.0 + + 25.0 + 0.000000001 + -16.67 + 8.33 + + + + + + Altitude Hold (Altimeter based) Stage 2 + false + + /autopilot/locks/altitude + agl-hold + + + /velocities/vertical-speed-fps + + + /autopilot/internal/target-climb-rate-fps + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Glideslop Hold + false + + /autopilot/locks/altitude + gs1-hold + + + /velocities/vertical-speed-fps + + + /instrumentation/nav[0]/gs-rate-of-climb + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + + + + Auto Throttle (5 sec lookahead) + false + + /autopilot/locks/speed + speed-with-throttle + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /controls/engines/engine[0]/throttle + /controls/engines/engine[1]/throttle + /controls/engines/engine[2]/throttle + /controls/engines/engine[3]/throttle + /controls/engines/engine[4]/throttle + /controls/engines/engine[5]/throttle + /controls/engines/engine[6]/throttle + /controls/engines/engine[7]/throttle + + + 0.1 + 1.0 + 0.1 + 0.0 + + 1.0 + 0.001 + 0.0 + 1.0 + + + + + + Speed hold (vary pitch trim) Stage #1 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-pitch-deg + + + -1.0 + 1.0 + 0.1 + 0.0 + + 2.0 + 0.00001 + -15.0 + 15.0 + + + + + Speed hold (vary pitch trim) Stage #2 + false + + /autopilot/locks/speed + speed-with-pitch-trim + + + /orientation/pitch-deg + + + /autopilot/settings/target-pitch-deg + + + /controls/flight/elevator-trim + + + -0.05 + 1.0 + 0.1 + 0.0 + + 0.5 + 0.001 + -1.0 + 1.0 + + + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /velocities/airspeed-kt + + + /autopilot/settings/target-speed-kt + + + /autopilot/settings/target-accel-ktps + + + 0.2 + 0.0 + -1.0 + 1.0 + + + + + + Speed hold (vary elevator) + false + + /autopilot/locks/speed + speed-with-pitch-yoke + + + /accelerations/airspeed-ktps + + + //autopilot/settings/target-accel-ktps + + + /controls/flight/elevator + + + 0.02 + 1.0 + 0.1 + 0.0 + + 8.0 + 0.001 + -0.25 + 0.25 + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/airdata.nas b/resources/flightgear/Aircraft/Rascal110/Systems/airdata.nas new file mode 100644 index 0000000000000000000000000000000000000000..8322cbb1699cc19f77458d80609519ac7932e3bf --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/airdata.nas @@ -0,0 +1,40 @@ +var last_time = 0.0; +var last_speed = 0.0; +var speed_sensed = 0.0; +var sensor_step = 1.0; +var speed_filt = 0.0; +var accel_filt = 0.0; + +var compute_airspeed_accel = func( speed_filt, dt ) { + # print ( "computing forward acceleration ", dt ); + + var delta_speed = speed_filt - last_speed; + last_speed = speed_filt; + + var accel = delta_speed / dt; + + return accel; +} + + +var update_airdata = func( dt ) { + # crude model of a noisy electronic pitot tube + sensed_speed = getprop("/velocities/airspeed-kt"); + var r = rand(); + if ( r < 0.3333 ) { + sensed_speed = sensed_speed - sensor_step; + } elsif ( r > 0.6666 ) { + sensed_speed = sensed_speed + sensor_step; + } + + speed_filt = 0.97 * speed_filt + 0.03 * sensed_speed; + + var sensed_accel = 0.0; + if ( dt > 0 ) { + sensed_accel = compute_airspeed_accel( speed_filt, dt ); + } + + accel_filt = 0.97 * accel_filt + 0.03 * sensed_accel; + + setprop("/accelerations/airspeed-ktps", accel_filt); +} diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/electrical.xml b/resources/flightgear/Aircraft/Rascal110/Systems/electrical.xml new file mode 100644 index 0000000000000000000000000000000000000000..88bd52e62cc92cd5f38104b7ba4aa7beed8bf424 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/electrical.xml @@ -0,0 +1,140 @@ + + + + + + + + + + + + Battery 1 + /systems/electrical/suppliers/battery[0] + battery + 28 + 60 + + + + Alternator 1 + /systems/electrical/suppliers/alternator[0] + alternator + /engines/engine[0]/rpm + 28 + 60 + + + + + + Master Bus + /systems/electrical/outputs/bus[0] + /systems/electrical/outputs/transponder + + + + + + Starter 1 Power + /systems/electrical/outputs/starter[0] + + + + Landing Light Power + /systems/electrical/outputs/landing-light + + + + Beacon Power + /systems/electrical/outputs/beacon + + + + Strobe Lights Power + /systems/electrical/outputs/strobe-lights + + + + Taxi Lights Power + /systems/electrical/outputs/taxi-lights + + + + Pitot Heat Power + /systems/electrical/outputs/pitot-heat + + + + + + + Alternator 1 + Master Bus + + /controls/engines/engine[0]/master-alt + + + + + Battery 1 + Master Bus + + /controls/engines/engine[0]/master-bat + + + + + + + Master Bus + Starter 1 Power + + /controls/engines/engine[0]/starter + off + + + + + + + Master Bus + Landing Light Power + + /controls/switches/landing-light + + + + + Master Bus + Beacon Power + + /controls/switches/flashing-beacon + + + + + Master Bus + Strobe Lights Power + + /controls/switches/strobe-lights + + + + + Master Bus + Taxi Lights Power + + /controls/switches/taxi-lights + + + + + Master Bus + Pitot Heat Power + + /controls/switches/pitot-heat + + + + diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/main.nas b/resources/flightgear/Aircraft/Rascal110/Systems/main.nas new file mode 100644 index 0000000000000000000000000000000000000000..7aec75186ffeb8a0ff801a8513f74cc3738fef2e --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/main.nas @@ -0,0 +1,22 @@ +var dialog = gui.Dialog.new("/sim/gui/dialogs/rascal/config/dialog", + "Aircraft/Rascal/Dialogs/config.xml"); + +var last_time = 0.0; + + +var main_loop = func { + var time = getprop("/sim/time/elapsed-sec"); + var dt = time - last_time; + last_time = time; + + update_airdata( dt ); + update_ugear( dt ); + + settimer(main_loop, 0); +} + + +setlistener("/sim/signals/fdm-initialized", + func { + main_loop(); + }); diff --git a/resources/flightgear/Aircraft/Rascal110/Systems/ugear.nas b/resources/flightgear/Aircraft/Rascal110/Systems/ugear.nas new file mode 100644 index 0000000000000000000000000000000000000000..3a33c6cb2258896b960dd856db46175e99aa5335 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/Systems/ugear.nas @@ -0,0 +1,54 @@ +var update_ugear = func( dt ) { + var max_zoom_rate = 10*dt; + var max_pan_rate = 30*dt; + var max_tilt_rate = 45*dt; + + var ap_enable = props.globals.getNode("/ugear/settings/ap-enable"); + if ( ap_enable == nil ) { + props.globals.initNode("/ugear/settings/ap-enable", 0, "BOOL", 1); + ap_enable = props.globals.getNode("/ugear/settings/ap-enable"); + } + if ( ap_enable.getBoolValue() ) { + setprop( "/controls/flight/aileron", getprop("/ugear/act/aileron") ); + setprop( "/controls/flight/elevator", getprop("/ugear/act/elevator") ); + } + + var turret_enable = props.globals.getNode("/ugear/settings/turret-enable"); + if ( turret_enable == nil ) { + props.globals.initNode("/ugear/settings/turret-enable", 0, "BOOL", 1); + turret_enable = props.globals.getNode("/ugear/settings/turret-enable"); + } + + if ( (getprop("/sim/current-view/name") == "Camera View") + and turret_enable.getBoolValue() ) + { + var target_zoom = getprop("/ugear/act/channel6"); + var target_pan = -getprop("/ugear/act/channel7"); + if ( target_pan < -180.0 ) { target_pan += 360.0; } + if ( target_pan > 180.0 ) { target_pan -= 360.0; } + var target_tilt = -getprop("/ugear/act/channel8"); + var cur_zoom = getprop("/sim/current-view/field-of-view"); + var cur_pan = getprop("/sim/current-view/heading-offset-deg"); + var cur_tilt = getprop("/sim/current-view/pitch-offset-deg"); + var diff = 0.0; + + diff = target_zoom - cur_zoom; + if ( diff > max_zoom_rate ) { diff = max_zoom_rate; } + if ( diff < -max_zoom_rate ) { diff = -max_zoom_rate; } + setprop("/sim/current-view/field-of-view", cur_zoom + diff); + + diff = target_pan - cur_pan; + if ( diff > 180 ) { diff -= 360; } + if ( diff < -180 ) { diff += 360; } + if ( diff > max_pan_rate ) { diff = max_pan_rate; } + if ( diff < -max_pan_rate ) { diff = -max_pan_rate; } + setprop("/sim/current-view/heading-offset-deg", cur_pan + diff); + + diff = target_tilt - cur_tilt; + if ( diff > 90 ) { diff = 90; } + if ( diff < -90 ) { diff = -90; } + if ( diff > max_tilt_rate ) { diff = max_tilt_rate; } + if ( diff < -max_tilt_rate ) { diff = -max_tilt_rate; } + setprop("/sim/current-view/pitch-offset-deg", cur_tilt + diff); + } +} diff --git a/resources/flightgear/Aircraft/Rascal110/initfile.xml b/resources/flightgear/Aircraft/Rascal110/initfile.xml new file mode 100644 index 0000000000000000000000000000000000000000..621b522cf1ad13a82178e710a5df2421f0afca18 --- /dev/null +++ b/resources/flightgear/Aircraft/Rascal110/initfile.xml @@ -0,0 +1,12 @@ + + + 110.783 + 5.03584 + -0.226825 + -2.16197 + -1.06069 + 2.95853 + 0 + 0 + -0.401227 + diff --git a/resources/flightgear/Aircraft/Rascal110/thumbnail.jpg b/resources/flightgear/Aircraft/Rascal110/thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdc375c3e59e4b14dc25efd65e1b2922ca1f1d4d Binary files /dev/null and b/resources/flightgear/Aircraft/Rascal110/thumbnail.jpg differ diff --git a/resources/flightgear/Aircraft/YardStick/Engines/18x8.xml b/resources/flightgear/Aircraft/YardStick/Engines/18x8.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f4aae8cf672c85b47d0f2a469a496641f2b0c5e --- /dev/null +++ b/resources/flightgear/Aircraft/YardStick/Engines/18x8.xml @@ -0,0 +1,51 @@ + + + + + + 0.00085 + 18.0 + 2 + 30 + 30 + + + + 0.0 0.0776 + 0.1 0.0744 + 0.2 0.0712 + 0.3 0.0655 + 0.4 0.0588 + 0.5 0.0518 + 0.6 0.0419 + 0.7 0.0318 + 0.8 0.0172 + 1.0 -0.0058 + 1.4 -0.0549 + +
+ + + + 0.0 0.0902 + 0.1 0.0893 + 0.2 0.0880 + 0.3 0.0860 + 0.4 0.0810 + 0.5 0.0742 + 0.6 0.0681 + 0.7 0.0572 + 0.8 0.0467 + 1.0 0.0167 + 1.4 -0.0803 + +
+ +
diff --git a/resources/flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml b/resources/flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml new file mode 100644 index 0000000000000000000000000000000000000000..86d43a827e807510a32e0328dc425a9f219ef9fa --- /dev/null +++ b/resources/flightgear/Aircraft/YardStick/Engines/Zenoah_G-26A.xml @@ -0,0 +1,8 @@ + + + + + + + 2207.27 + diff --git a/resources/flightgear/Aircraft/YardStick/Models/yardstik.ac b/resources/flightgear/Aircraft/YardStick/Models/yardstik.ac new file mode 100644 index 0000000000000000000000000000000000000000..ba5bd60c258cad52f52a06929552980d8ebe0d4a --- /dev/null +++ b/resources/flightgear/Aircraft/YardStick/Models/yardstik.ac @@ -0,0 +1,11844 @@ +AC3Db +MATERIAL "ac3dmat0" rgb 0 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.2 0.2 0.2 shi 16 trans 0 +MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.2 0.2 0.2 shi 16 trans 0 +MATERIAL "ac3dmat3" rgb 1 0 0 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.2 0.2 0.2 shi 16 trans 0 +MATERIAL "ac3dmat13" rgb 0.533333 0.533333 0.533333 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.2 0.2 0.2 shi 16 trans 0 +OBJECT world +kids 30 +OBJECT poly +name "prop2" +loc 0.0159183 0.187247 1.7908e-005 +crease 45.000000 +numvert 163 +0.00684154 -0.000831008 0.00636728 +0.00741518 0.00389095 0.00613847 +0.00729322 0.00284927 0.00550082 +0.00786912 0.00753957 0.00435643 +0.00761569 0.00549349 0.00317704 +0.00784785 0.00745445 0.00589576 +0.00805753 0.00901334 0.00476734 +0.0082286 0.0105523 0.00557846 +0.00835347 0.0114834 0.00501782 +0.0087257 0.0146225 0.00550928 +-0.00676614 0.000836954 -0.00636467 +-0.00632048 0.00448173 -0.00552104 +-0.00600106 0.00702579 -0.00549951 +-0.00597209 0.00719225 -0.00317296 +-0.00571579 0.0091517 -0.0039326 +-0.00548995 0.0109566 -0.00441475 +-0.00553799 0.0107392 -0.00507526 +-0.00524163 0.0131496 -0.00474453 +-0.00522965 0.0129951 -0.00508852 +-0.00491345 0.0163136 -0.00526888 +-0.00143486 0.0158982 -0.0017477 +-0.00238675 0.0130695 -0.00283683 +-0.00326878 0.0106691 -0.00355013 +-0.00514877 0.00436221 -0.00553414 +-0.0042485 0.00838351 -0.00439894 +0.0020681 0.0154459 0.00125979 +0.00145179 0.0127886 0.000345149 +0.000751436 0.0102873 -0.000639681 +-0.000399828 0.00648201 -0.00319422 +0.000226259 0.00884759 -0.00170058 +0.00526345 0.0150705 0.00388107 +0.00457954 0.012192 0.00289736 +0.00404036 0.00996274 0.00222663 +0.00344181 0.00702527 -0.000125183 +0.00371712 0.00859216 0.00128176 +0.00259626 0.0064128 0.00518885 +0.00127238 0.00356603 0.00552534 +0.00371283 0.00884148 0.00482277 +0.0045867 0.0115301 0.00430559 +0.00520712 0.015085 0.00412635 +-0.000726581 0.00819653 0.00276035 +-0.00192541 0.00667347 0.0031651 +0.000257969 0.0100781 0.00226413 +0.00109464 0.0124377 0.00165432 +0.00177675 0.0154857 0.00154691 +-0.00356942 0.0094122 -0.000478611 +-0.00452101 0.00802343 -9.25603e-005 +-0.00288808 0.0107837 -0.000824759 +-0.00227398 0.0127835 -0.0011967 +-0.00174403 0.0159248 -0.00137035 +0.0110391 0.0714373 0.00262251 +0.00900316 0.0716872 0.00128071 +0.00678295 0.0719598 -0.000278471 +0.004511 0.0722388 -0.00213277 +0.00661933 0.0719799 -4.64419e-005 +0.0088535 0.0717056 0.0014524 +0.0109515 0.071448 0.00272925 +0.0131658 0.0711761 0.00334904 +0.00760961 0.034203 0.00417077 +0.00441653 0.034595 0.00154774 +0.000950933 0.0350205 -0.00147427 +-0.00254965 0.0354504 -0.00500252 +0.00063467 0.0350594 -0.00111262 +0.00413412 0.0346297 0.00181024 +0.00744343 0.0342234 0.00433493 +0.0110644 0.0337787 0.00577372 +0.00872087 0.0146362 0.00549813 +0.00509846 0.015099 0.00409314 +-0.00488257 0.0163118 -0.00529107 +-0.00758535 -0.00550334 -0.00317009 +-0.00725764 -0.00283292 -0.00549982 +-0.00680566 0.000844628 -0.00636466 +-0.0063616 0.00446284 -0.00549985 +-0.00602669 0.00716856 -0.00317443 +-0.00591379 0.00811066 1.23701e-005 +-0.0060339 0.00713325 0.00319487 +-0.00636166 0.00446284 0.00552461 +-0.00680059 0.000815168 0.00636368 +-0.00725073 -0.00282735 0.00552464 +-0.00756854 -0.0055297 0.00317701 +-0.00770539 -0.00648078 1.24225e-005 +0.00602293 -0.00718625 -0.00317515 +0.00635326 -0.00452489 -0.0054968 +0.00680399 -0.000854582 -0.00636727 +0.00725168 0.0027913 -0.00549985 +0.00757939 0.00546169 -0.00317011 +0.00769955 0.00643918 1.236e-005 +0.00757939 0.00546169 0.00319487 +0.00725085 0.00281531 0.00552365 +0.00680131 -0.000828952 0.00636728 +0.00635576 -0.0045044 0.00552462 +0.00602794 -0.00717482 0.00319487 +0.00590783 -0.00815228 1.24208e-005 +-0.00680947 0.000814945 1.23775e-005 +0.00680375 -0.000856549 1.23828e-005 +0.00142711 -0.015892 -0.00387696 +-0.00176418 -0.0154834 -0.0012557 +-0.00527245 -0.0150747 0.0017518 +-0.00871772 -0.014642 0.00529518 +-0.00557882 -0.0150256 0.00137445 +-0.00205654 -0.0154514 -0.0015428 +0.00126004 -0.0158798 -0.00408904 +0.00488687 -0.016307 -0.00549404 +0.0025298 -0.035448 -0.00576957 +-0.00109106 -0.0350033 -0.00433075 +-0.00440049 -0.034597 -0.00180606 +-0.00789982 -0.0341673 0.00111678 +-0.0110844 -0.0337763 0.00500667 +-0.00758368 -0.0342062 0.00147843 +-0.00411797 -0.0346317 -0.00154358 +-0.000924945 -0.0350238 -0.00416658 +-0.00447834 -0.0722428 -0.00334472 +-0.00669271 -0.0719709 -0.00272495 +-0.00879079 -0.0717133 -0.00144811 +-0.011025 -0.071439 5.07206e-005 +-0.0131332 -0.0711801 0.00213705 +-0.0108613 -0.0714591 0.00028277 +-0.00864106 -0.0717317 -0.00127641 +-0.00660515 -0.0719817 -0.00261824 +-0.00830108 -0.0114867 0.00474862 +-0.00874829 -0.0146362 0.00527297 +-0.00801158 -0.00929874 0.00441883 +-0.00756854 -0.0055297 0.00317702 +-0.00779396 -0.00749287 0.00393666 +-0.00533301 -0.0118495 0.00120074 +-0.00544506 -0.00976059 0.000828847 +-0.00636172 -0.00668716 9.66406e-005 +-0.00577426 -0.00826494 0.000482703 +-0.00198102 -0.0123289 -0.00165023 +-0.00222188 -0.00983702 -0.00226008 +-0.00351667 -0.00600533 -0.00316103 +-0.00272197 -0.00777313 -0.00275628 +0.00136888 -0.0158924 -0.00412224 +0.00489503 -0.016295 -0.00550518 +0.00162709 -0.0122931 -0.00430151 +0.00539732 -0.0122253 -0.00557438 +0.0014295 -0.00947289 -0.00481871 +0.00577736 -0.00912745 -0.0058917 +0.000337839 -0.00376377 -0.0055213 +0.000933647 -0.00684628 -0.0051848 +0.00621963 -0.00556511 -0.00613441 +0.00680399 -0.000854582 -0.00636727 +0.00602293 -0.00718625 -0.00317515 +0.0057773 -0.00921519 -0.00435237 +0.00149393 -0.00923198 -0.00127765 +0.00160611 -0.00764512 0.000129257 +0.00560361 -0.0106908 -0.00476328 +0.00147617 -0.0106401 -0.00222252 +0.00529313 -0.013159 -0.00501373 +0.00145996 -0.0129335 -0.00289329 +-0.00195491 -0.00863536 0.00170467 +-0.00199014 -0.00618857 0.00319829 +-0.00179356 -0.0101593 0.000643765 +-0.00171924 -0.0127558 -0.000341034 +-0.00618458 -0.00710247 0.00440304 +-0.00608516 -0.00298285 0.0055382 +-0.00578678 -0.00955725 0.00355422 +-0.0055117 -0.0120997 0.00284093 +-0.0075568 -0.00536112 0.00550359 +-0.00800562 -0.00907627 0.00507935 +-0.00825208 -0.0113397 0.0050926 +-0.00725073 -0.00282735 0.00552464 +0.00635326 -0.00452489 -0.0054968 +numsurf 154 +SURF 0x30 +mat 1 +refs 3 +0 0.00431034 1 +1 1 0.731707 +2 0.771552 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0.792453 +1 0.213018 1 +3 1 0.40566 +4 0.556213 0 +SURF 0x30 +mat 1 +refs 4 +1 0 1 +5 0.701087 0.857143 +6 1 0.222222 +3 0.717391 0 +SURF 0x30 +mat 1 +refs 4 +5 0 1 +7 0.783217 0.710526 +8 1 0.18421 +6 0.405594 0 +SURF 0x30 +mat 1 +refs 3 +7 0 1 +9 1 0.833333 +8 0.0565371 0 +SURF 0x30 +mat 1 +refs 3 +10 0 0 +11 0.588689 0.943397 +12 1 1 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +13 0.577855 1 +14 1 0.6875 +12 0.543253 0.0069444 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +14 0.539535 1 +15 1 0.682353 +16 0.937209 0.264706 +SURF 0x30 +mat 1 +refs 4 +15 0.0722893 1 +17 1 0.576924 +18 0.927711 0 +16 0 0.0769232 +SURF 0x30 +mat 1 +refs 3 +17 0.0166667 1 +19 1 0 +18 0 0.500001 +SURF 0x30 +mat 1 +refs 4 +22 0 0 +21 0 0 +18 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +20 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +22 0 0 +16 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +24 0 0 +12 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +25 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +27 0 0 +26 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +27 0 0 +22 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +28 0 0 +29 0 0 +24 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +31 0 0 +30 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +32 0 0 +31 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +34 0 0 +32 0 0 +27 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +33 0 0 +34 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +8 0 0 +9 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +6 0 0 +8 0 0 +31 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +6 0 0 +32 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +3 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +1 0 0 +35 0 0 +36 0 0 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +5 0 0 +37 0 0 +35 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +7 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +9 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +35 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +37 0 0 +42 0 0 +40 0 0 +SURF 0x30 +mat 1 +refs 4 +37 0 0 +38 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 1 +refs 4 +38 0 0 +39 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 1 +refs 4 +41 0 0 +40 0 0 +45 0 0 +46 0 0 +SURF 0x30 +mat 1 +refs 4 +40 0 0 +42 0 0 +47 0 0 +45 0 0 +SURF 0x30 +mat 1 +refs 4 +42 0 0 +43 0 0 +48 0 0 +47 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +44 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +45 0 0 +14 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +47 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +49 0 0 +19 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +48 0 0 +17 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 8 +57 0 1 +56 0.217973 0.89375 +55 0.414914 0.75 +54 0.688337 0.45 +53 1 0 +52 0.674952 0.34375 +51 0.40153 0.66875 +50 0.210325 0.84375 +SURF 0x30 +mat 1 +refs 4 +58 0 0 +65 0 0 +57 0 0 +50 0 0 +SURF 0x30 +mat 1 +refs 4 +59 0 0 +58 0 0 +50 0 0 +51 0 0 +SURF 0x30 +mat 1 +refs 4 +60 0 0 +59 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 1 +refs 4 +61 0 0 +60 0 0 +52 0 0 +53 0 0 +SURF 0x30 +mat 1 +refs 4 +62 0 0 +61 0 0 +53 0 0 +54 0 0 +SURF 0x30 +mat 1 +refs 4 +63 0 0 +62 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 1 +refs 4 +64 0 0 +63 0 0 +55 0 0 +56 0 0 +SURF 0x30 +mat 1 +refs 4 +65 0 0 +64 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 1 +refs 4 +30 0 0 +66 0 0 +65 0 0 +58 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +30 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +25 0 0 +59 0 0 +60 0 0 +SURF 0x30 +mat 1 +refs 4 +68 0 0 +20 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 1 +refs 4 +49 0 0 +68 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 1 +refs 4 +44 0 0 +49 0 0 +62 0 0 +63 0 0 +SURF 0x30 +mat 1 +refs 4 +67 0 0 +44 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 1 +refs 4 +66 0 0 +67 0 0 +64 0 0 +65 0 0 +SURF 0x10 +mat 1 +refs 4 +70 0.916667 1 +82 0.916667 0 +81 1 0 +69 1 1 +SURF 0x10 +mat 1 +refs 4 +71 0.833333 1 +83 0.833333 0 +82 0.916667 0 +70 0.916667 1 +SURF 0x10 +mat 1 +refs 4 +72 0.75 1 +84 0.75 0 +83 0.833333 0 +71 0.833333 1 +SURF 0x10 +mat 1 +refs 4 +73 0.666667 1 +85 0.666667 0 +84 0.75 0 +72 0.75 1 +SURF 0x10 +mat 1 +refs 4 +74 0.583333 1 +86 0.583333 0 +85 0.666667 0 +73 0.666667 1 +SURF 0x10 +mat 1 +refs 4 +75 0.5 1 +87 0.5 0 +86 0.583333 0 +74 0.583333 1 +SURF 0x10 +mat 1 +refs 4 +76 0.416667 1 +88 0.416667 0 +87 0.5 0 +75 0.5 1 +SURF 0x10 +mat 1 +refs 4 +77 0.333333 1 +89 0.333333 0 +88 0.416667 0 +76 0.416667 1 +SURF 0x10 +mat 1 +refs 4 +78 0.25 1 +90 0.25 0 +89 0.333333 0 +77 0.333333 1 +SURF 0x10 +mat 1 +refs 4 +79 0.166667 1 +91 0.166667 0 +90 0.25 0 +78 0.25 1 +SURF 0x10 +mat 1 +refs 4 +80 0.0833333 1 +92 0.0833333 0 +91 0.166667 0 +79 0.166667 1 +SURF 0x10 +mat 1 +refs 4 +69 -2.98023e-008 1 +81 -2.98023e-008 0 +92 0.0833333 0 +80 0.0833333 1 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +72 0 0 +71 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +77 0 0 +76 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +78 0 0 +77 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +79 0 0 +78 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 1 +refs 3 +93 0 0 +69 0 0 +80 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +81 0 0 +82 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +82 0 0 +83 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +83 0 0 +84 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +84 0 0 +85 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +85 0 0 +86 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +86 0 0 +87 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +87 0 0 +88 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +88 0 0 +89 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +89 0 0 +90 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +90 0 0 +91 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +91 0 0 +92 0 0 +SURF 0x10 +mat 1 +refs 3 +94 0 0 +92 0 0 +81 0 0 +SURF 0x30 +mat 1 +refs 4 +102 0 0 +101 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 1 +refs 4 +101 0 0 +100 0 0 +105 0 0 +104 0 0 +SURF 0x30 +mat 1 +refs 4 +100 0 0 +99 0 0 +106 0 0 +105 0 0 +SURF 0x30 +mat 1 +refs 4 +99 0 0 +98 0 0 +107 0 0 +106 0 0 +SURF 0x30 +mat 1 +refs 4 +98 0 0 +97 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 1 +refs 4 +97 0 0 +96 0 0 +109 0 0 +108 0 0 +SURF 0x30 +mat 1 +refs 4 +96 0 0 +95 0 0 +110 0 0 +109 0 0 +SURF 0x30 +mat 1 +refs 4 +95 0 0 +102 0 0 +103 0 0 +110 0 0 +SURF 0x30 +mat 1 +refs 4 +103 0 0 +104 0 0 +112 0 0 +111 0 0 +SURF 0x30 +mat 1 +refs 4 +104 0 0 +105 0 0 +113 0 0 +112 0 0 +SURF 0x30 +mat 1 +refs 4 +105 0 0 +106 0 0 +114 0 0 +113 0 0 +SURF 0x30 +mat 1 +refs 4 +106 0 0 +107 0 0 +115 0 0 +114 0 0 +SURF 0x30 +mat 1 +refs 4 +107 0 0 +108 0 0 +116 0 0 +115 0 0 +SURF 0x30 +mat 1 +refs 4 +108 0 0 +109 0 0 +117 0 0 +116 0 0 +SURF 0x30 +mat 1 +refs 4 +109 0 0 +110 0 0 +118 0 0 +117 0 0 +SURF 0x30 +mat 1 +refs 4 +110 0 0 +103 0 0 +111 0 0 +118 0 0 +SURF 0x30 +mat 1 +refs 8 +111 0 1 +112 0.217973 0.89375 +113 0.414914 0.75 +114 0.688337 0.45 +115 1 0 +116 0.674952 0.34375 +117 0.40153 0.66875 +118 0.210325 0.84375 +SURF 0x30 +mat 1 +refs 4 +125 0 0 +124 0 0 +119 0 0 +121 0 0 +SURF 0x30 +mat 1 +refs 4 +124 0 0 +99 0 0 +120 0 0 +119 0 0 +SURF 0x30 +mat 1 +refs 4 +127 0 0 +125 0 0 +121 0 0 +123 0 0 +SURF 0x30 +mat 1 +refs 4 +126 0 0 +127 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 1 +refs 4 +128 0 0 +100 0 0 +99 0 0 +124 0 0 +SURF 0x30 +mat 1 +refs 4 +129 0 0 +128 0 0 +124 0 0 +125 0 0 +SURF 0x30 +mat 1 +refs 4 +131 0 0 +129 0 0 +125 0 0 +127 0 0 +SURF 0x30 +mat 1 +refs 4 +130 0 0 +131 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 1 +refs 4 +134 0 0 +132 0 0 +100 0 0 +128 0 0 +SURF 0x30 +mat 1 +refs 4 +136 0 0 +134 0 0 +128 0 0 +129 0 0 +SURF 0x30 +mat 1 +refs 4 +139 0 0 +136 0 0 +129 0 0 +131 0 0 +SURF 0x30 +mat 1 +refs 4 +138 0 0 +139 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 4 +135 0 0 +133 0 0 +132 0 0 +134 0 0 +SURF 0x30 +mat 1 +refs 4 +137 0 0 +135 0 0 +134 0 0 +136 0 0 +SURF 0x30 +mat 1 +refs 4 +140 0 0 +137 0 0 +136 0 0 +139 0 0 +SURF 0x30 +mat 1 +refs 4 +141 0 0 +140 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 1 +refs 4 +142 0 0 +143 0 0 +144 0 0 +145 0 0 +SURF 0x30 +mat 1 +refs 4 +143 0 0 +146 0 0 +147 0 0 +144 0 0 +SURF 0x30 +mat 1 +refs 4 +146 0 0 +148 0 0 +149 0 0 +147 0 0 +SURF 0x30 +mat 1 +refs 4 +148 0 0 +133 0 0 +95 0 0 +149 0 0 +SURF 0x30 +mat 1 +refs 4 +145 0 0 +144 0 0 +150 0 0 +151 0 0 +SURF 0x30 +mat 1 +refs 4 +144 0 0 +147 0 0 +152 0 0 +150 0 0 +SURF 0x30 +mat 1 +refs 4 +147 0 0 +149 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 1 +refs 4 +149 0 0 +95 0 0 +96 0 0 +153 0 0 +SURF 0x30 +mat 1 +refs 4 +151 0 0 +150 0 0 +154 0 0 +155 0 0 +SURF 0x30 +mat 1 +refs 4 +150 0 0 +152 0 0 +156 0 0 +154 0 0 +SURF 0x30 +mat 1 +refs 4 +152 0 0 +153 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 1 +refs 4 +153 0 0 +96 0 0 +97 0 0 +157 0 0 +SURF 0x30 +mat 1 +refs 4 +155 0 0 +154 0 0 +158 0 0 +77 0 0 +SURF 0x30 +mat 1 +refs 4 +154 0 0 +156 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 1 +refs 4 +157 0 0 +97 0 0 +120 0 0 +160 0 0 +SURF 0x30 +mat 1 +refs 4 +156 0 0 +157 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 1 +refs 3 +119 0.0166667 1 +120 1 0 +160 0 0.500001 +SURF 0x30 +mat 1 +refs 4 +121 0.0722893 1 +119 1 0.576924 +160 0.927711 0 +159 0 0.0769232 +SURF 0x30 +mat 1 +refs 4 +158 0 0 +123 0.539535 1 +121 1 0.682353 +159 0.937209 0.264706 +SURF 0x30 +mat 1 +refs 4 +161 0 0 +122 0.577855 1 +123 1 0.6875 +158 0.543253 0.0069444 +SURF 0x30 +mat 1 +refs 3 +77 0 0 +161 0.588689 0.943397 +158 1 1 +SURF 0x30 +mat 1 +refs 3 +135 0 1 +133 1 0.833333 +148 0.0565371 0 +SURF 0x30 +mat 1 +refs 4 +137 0 1 +135 0.783217 0.710526 +148 1 0.18421 +146 0.405594 0 +SURF 0x30 +mat 1 +refs 4 +140 0 1 +137 0.701087 0.857143 +146 1 0.222222 +143 0.717391 0 +SURF 0x30 +mat 1 +refs 4 +162 0 0.792453 +140 0.213018 1 +143 1 0.40566 +142 0.556213 0 +SURF 0x30 +mat 1 +refs 3 +141 0.00431034 1 +140 1 0.731707 +162 0.771552 0 +kids 0 +OBJECT poly +name "elevatorrod" +loc 0.367714 0.107344 -0.0140936 +crease 45.000000 +numvert 32 +0.656482 -0.0514903 0.000170305 +0.200107 -0.00337509 0.000237723 +0.200107 -0.00337509 -0.000237726 +0.199573 -0.00377601 -0.000475446 +0.199118 -0.00417932 -0.000237717 +0.199118 -0.00417933 0.000237721 +0.199573 -0.00377601 0.000475443 +-0.0636801 0.0208241 0.000237716 +-0.0636802 0.0208241 -0.000237719 +-0.0637393 0.0203423 -0.000475446 +-0.0637985 0.0198606 -0.000237717 +-0.0637984 0.0198606 0.000237719 +-0.0637393 0.0203423 0.000475441 +-0.0637393 0.0203423 -1.86265e-009 +0.201376 -0.00675351 -0.000137722 +0.201376 -0.00675351 0.000337718 +0.201263 -0.00753295 -0.000375438 +0.201164 -0.00819577 -0.000137722 +0.201164 -0.00819577 0.000337718 +0.201263 -0.00753295 0.000575441 +0.203259 -0.00384673 -3.77223e-005 +0.203259 -0.00384673 0.000437716 +0.203663 -0.00426708 -0.000275445 +0.203985 -0.00481249 -3.77195e-005 +0.203985 -0.00481249 0.00043772 +0.203663 -0.00426708 0.000675444 +0.656541 -0.0510085 -6.74119e-005 +0.656541 -0.0510085 0.000408015 +0.656482 -0.0514904 -0.000305143 +0.656423 -0.051972 -6.74194e-005 +0.656423 -0.051972 0.000408028 +0.656482 -0.0514903 0.000645756 +numsurf 36 +SURF 0x10 +mat 0 +refs 4 +2 0.833333 1 +8 0.833333 0 +7 1 0 +1 1 1 +SURF 0x10 +mat 0 +refs 4 +3 0.666667 1 +9 0.666667 0 +8 0.833333 0 +2 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +4 0.5 1 +10 0.5 0 +9 0.666667 0 +3 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +5 0.333333 1 +11 0.333333 0 +10 0.5 0 +4 0.5 1 +SURF 0x10 +mat 0 +refs 4 +6 0.166667 1 +12 0.166667 0 +11 0.333333 0 +5 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +1 -2.98023e-008 1 +7 -2.98023e-008 0 +12 0.166667 0 +6 0.166667 1 +SURF 0x10 +mat 0 +refs 3 +13 0 0 +7 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 3 +13 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 3 +13 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 3 +13 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 3 +13 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 3 +13 0 0 +12 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +2 0 0 +1 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +3 0 0 +2 0 0 +14 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +4 0 0 +3 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +5 0 0 +4 0 0 +17 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +5 0 0 +18 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +1 0 0 +6 0 0 +19 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +14 0 0 +20 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +16 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +17 0 0 +23 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +18 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +19 0 0 +25 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +20 0 0 +26 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +22 0 0 +28 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +23 0 0 +29 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +24 0 0 +30 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +25 0 0 +31 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +26 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +28 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +27 0 0 +31 0 0 +kids 0 +OBJECT poly +name "elevatorservo" +loc 0.298164 0.112343 -0.0131076 +crease 45.000000 +numvert 32 +0.00102928 0.00867793 -3.72529e-009 +-0.00386971 0.00454953 0 +-0.0148969 0.00593486 -4.65661e-009 +-0.0156461 -0.000348426 -2.79397e-009 +-0.00462002 -0.00178263 -2.79397e-009 +-0.000776887 -0.00665566 0 +-0.00208813 -0.0170062 -1.86265e-009 +0.00424972 -0.0177843 9.31323e-010 +0.00555882 -0.00745168 0 +0.0106198 -0.00347345 -3.72529e-009 +0.0214308 -0.00455467 -4.65661e-009 +0.0221947 0.00174031 -1.86265e-009 +0.0112902 0.00279257 -1.86265e-009 +0.00734639 0.00780465 -9.31323e-010 +0.00873667 0.0187986 0 +0.00237 0.0193422 9.31323e-010 +0.00241965 0.0193096 0.00417939 +0.0087862 0.0187662 0.00417939 +0.00739595 0.00777213 0.00417939 +0.0113398 0.00276007 0.00417939 +0.0222442 0.00170782 0.00417939 +0.0214803 -0.00458714 0.00417939 +0.0106693 -0.00350595 0.00417939 +0.00560835 -0.00748417 0.00417939 +0.00429928 -0.017817 0.00417939 +-0.0020386 -0.0170387 0.00417939 +-0.000727236 -0.00668813 0.00417939 +-0.00457042 -0.00181515 0.00417939 +-0.0155965 -0.000380903 0.00417939 +-0.0148475 0.00590239 0.00417939 +-0.00382015 0.00451706 0.00417939 +0.00107881 0.00864545 0.00417939 +numsurf 17 +SURF 0x30 +mat 1 +refs 4 +15 0 0 +14 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +13 0 0 +18 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +12 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +11 0 0 +20 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +10 0 0 +21 0 0 +20 0 0 +SURF 0x30 +mat 1 +refs 4 +10 0 0 +9 0 0 +22 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +9 0 0 +8 0 0 +23 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +8 0 0 +7 0 0 +24 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +6 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +6 0 0 +5 0 0 +26 0 0 +25 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +4 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +3 0 0 +28 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +2 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +1 0 0 +30 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +0 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +15 0 0 +16 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 16 +16 0.536145 0.99187 +17 0.698795 1 +18 0.692771 0.699187 +19 0.753012 0.634146 +20 1 0.634146 +21 0.993976 0.463415 +22 0.753012 0.471545 +23 0.668675 0.382114 +24 0.662651 0 +25 0.5 0 +26 0.506024 0.365854 +27 0.36747 0.544715 +28 0.0180724 0.528455 +29 0 0.788618 +30 0.385542 0.772358 +31 0.524096 0.878049 +kids 0 +OBJECT poly +name "aftbatmount" +loc 0.333663 0.131641 1.1542e-005 +crease 45.000000 +numvert 32 +0.00011456 0.00280085 0.000611983 +-2.85208e-005 0.00171396 0.00113973 +-3.29614e-005 0.00172168 0.00101426 +8.67844e-005 0.00269778 0.000507966 +0.000448644 0.0016626 0.00101387 +0.000568539 0.00263864 0.000507968 +0.000442564 0.00165614 0.00113854 +0.00056994 0.00274493 0.000611978 +-0.000161439 0.000632077 0.00054914 +-0.000154078 0.000736281 0.000503609 +0.000327736 0.000677124 0.000503605 +0.000309587 0.000574231 0.000549145 +-0.000161946 0.000627086 -0.000551121 +-0.000154942 0.000729144 -0.000503235 +0.000326753 0.000669986 -0.000503229 +0.00030899 0.000569269 -0.000551119 +-2.98321e-005 0.00171319 -0.00110597 +-3.31998e-005 0.00171471 -0.000999772 +0.000446141 0.00165527 -0.000999458 +0.000441968 0.00165713 -0.00110619 +0.000118852 0.00279647 -0.000563177 +8.6844e-005 0.00269842 -0.000495732 +0.000568628 0.00263929 -0.000495732 +0.000566185 0.00274158 -0.000563177 +-0.00651875 -0.0511285 -0.00132374 +-0.00649965 -0.0509728 -0.00117277 +-0.00603515 -0.0510429 -0.00118263 +-0.00605455 -0.0512009 -0.00131903 +-0.00650254 -0.0509955 0.000776077 +-0.00651711 -0.0511146 0.000916021 +-0.0060423 -0.0511893 0.000927478 +-0.00602764 -0.0510688 0.000790051 +numsurf 37 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +2 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +4 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +6 0 0 +1 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +8 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +10 0 0 +11 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +11 0 0 +8 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +12 0 0 +13 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +13 0 0 +14 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +14 0 0 +15 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +15 0 0 +12 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +16 0 0 +17 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +17 0 0 +18 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +18 0 0 +19 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +19 0 0 +16 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +20 0 0 +21 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +21 0 0 +22 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +22 0 0 +23 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0 0 +23 0 0 +20 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +0 0 0 +3 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +3 0 0 +5 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +5 0 0 +7 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +7 0 0 +0 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +17 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +25 0 0 +26 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +24 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +16 0 0 +19 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0.0555563 0.995671 +18 1 1 +26 0.944445 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +1 0 0 +6 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +29 0 0 +30 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +28 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +2 0 0 +4 0 0 +31 0 0 +SURF 0x31 +mat 0 +refs 4 +4 0.0740738 1 +6 0.925926 0.995717 +30 1 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +28 0 0 +31 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +24 0 0 +27 0 0 +30 0 0 +SURF 0x31 +mat 0 +refs 4 +26 0.00647252 1 +31 1 0.885715 +30 0.993527 0 +27 0 0.114285 +kids 0 +OBJECT poly +name "aftbatmount" +loc 0.116346 0.158299 1.15478e-005 +crease 45.000000 +numvert 32 +-0.00602773 -0.0510689 0.000790049 +-0.00604251 -0.0511893 0.000927479 +-0.00651708 -0.0511146 0.000916013 +-0.00650251 -0.0509955 0.000776074 +-0.00605461 -0.0512009 -0.00131903 +-0.00603533 -0.0510429 -0.00118263 +-0.00649971 -0.0509728 -0.00117278 +-0.00651881 -0.0511285 -0.00132374 +0.000566185 0.00274153 -0.000563182 +0.000568599 0.00263931 -0.000495739 +8.67546e-005 0.00269842 -0.000495736 +0.000118762 0.00279647 -0.000563184 +0.000441939 0.00165717 -0.00110621 +0.000446051 0.00165527 -0.000999472 +-3.33488e-005 0.00171472 -0.00099978 +-2.98619e-005 0.00171319 -0.00110597 +0.000308961 0.000569254 -0.00055112 +0.000326782 0.000669986 -0.000503236 +-0.000154972 0.000729129 -0.000503236 +-0.000162065 0.000627071 -0.000551125 +0.000309587 0.000574246 0.000549135 +0.000327647 0.000677124 0.000503602 +-0.000154227 0.000736296 0.000503605 +-0.000161499 0.000632077 0.000549133 +0.000569731 0.00274497 0.000611968 +0.000442475 0.00165617 0.00113854 +0.000568449 0.00263865 0.000507956 +0.000448525 0.00166261 0.00101387 +8.67546e-005 0.0026978 0.000507961 +-3.29912e-005 0.0017217 0.00101426 +-2.8491e-005 0.00171399 0.00113972 +0.000114411 0.00280085 0.000611968 +numsurf 37 +SURF 0x31 +mat 0 +refs 4 +5 0.00647252 1 +0 1 0.885715 +1 0.993527 0 +4 0 0.114285 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +7 0 0 +4 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +3 0 0 +0 0 0 +5 0 0 +SURF 0x31 +mat 0 +refs 4 +27 0.0740738 1 +25 0.925926 0.995717 +1 1 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +29 0 0 +27 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +3 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +2 0 0 +1 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +30 0 0 +25 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0.0555563 0.995671 +13 1 1 +5 0.944445 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +15 0 0 +12 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +6 0 0 +5 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +14 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +24 0 0 +31 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +26 0 0 +24 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +28 0 0 +26 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +31 0 0 +28 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +8 0 0 +11 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +9 0 0 +8 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +10 0 0 +9 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +11 0 0 +10 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +12 0 0 +15 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +13 0 0 +12 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +14 0 0 +13 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0 0 +15 0 0 +14 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +16 0 0 +19 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +17 0 0 +16 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +18 0 0 +17 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +19 0 0 +18 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +20 0 0 +23 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +21 0 0 +20 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +22 0 0 +21 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +23 0 0 +22 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +25 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +27 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +29 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +30 0 0 +29 0 0 +28 0 0 +kids 0 +OBJECT poly +name "horzstab" +loc 0.919799 0.0553512 -0.131178 +crease 45.000000 +numvert 8 +-0.00496542 0.00567222 -0.132439 +0.0871465 -0.00565875 -0.132263 +0.0877318 -0.00565824 0.130228 +-0.0854945 0.0155599 0.130053 +-0.0854833 0.0174457 0.129909 +0.0882964 -0.00384053 0.129841 +0.0878474 -0.00378537 -0.132378 +-0.00471258 0.00752825 -0.132309 +numsurf 6 +SURF 0x30 +mat 2 +refs 4 +4 0 0.992806 +5 1 1 +6 0.984615 0.00719434 +7 0.330769 0 +SURF 0x30 +mat 2 +refs 4 +0 0.252427 0.0272727 +1 0.980583 0 +2 1 1 +3 0 0.990909 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +SURF 0x30 +mat 2 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 2 +refs 4 +2 0 0 +1 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 2 +refs 4 +3 0 0 +2 0 0 +5 0 0 +4 0 0 +kids 0 +OBJECT poly +name "rhwheel" +loc 0.103922 0.0722135 -0.0314372 +crease 45.000000 +numvert 216 +-0.00742622 -0.0429243 -0.0230915 +-0.0074418 -0.0429493 -0.0297405 +-0.0112275 -0.0386703 -0.0230303 +-0.0112427 -0.0386429 -0.02963 +-0.0132964 -0.0343095 -0.0230303 +-0.0133349 -0.0342929 -0.02963 +-0.0126965 -0.0295792 -0.0230303 +-0.0126873 -0.0295684 -0.02963 +-0.00949018 -0.0260589 -0.0230303 +-0.00951739 -0.0260401 -0.02963 +-0.00325362 -0.0174933 -0.0230303 +-0.00408064 -0.023567 -0.0230303 +-0.00405817 -0.0235543 -0.02963 +-0.00327329 -0.0174753 -0.02963 +-0.0117509 -0.0391452 -0.0231303 +-0.0139968 -0.0344368 -0.0231303 +-0.0134154 -0.029282 -0.0231303 +-0.0100386 -0.0253112 -0.0231303 +-0.00519116 -0.0234254 -0.0231303 +-0.00442569 -0.017343 -0.0231303 +-0.00444318 -0.0173071 -0.02973 +-0.00520174 -0.0234086 -0.02973 +-0.0100492 -0.0252943 -0.02973 +-0.0134168 -0.029277 -0.02973 +-0.0140382 -0.0344441 -0.02973 +-0.0117368 -0.0391373 -0.02973 +-0.0102749 -0.0688688 -0.0297758 +-0.0102675 -0.0688094 -0.0231762 +-0.0103916 -0.06982 -0.0231463 +-0.0103916 -0.06982 -0.0297459 +-0.00215869 -0.0685854 -0.0297758 +-0.00217004 -0.0685267 -0.0231762 +-0.00197579 -0.069526 -0.0231463 +-0.00197579 -0.069526 -0.0297459 +0.00547276 -0.0658078 -0.0297758 +0.00544374 -0.0657555 -0.0231762 +0.00593735 -0.066646 -0.0231463 +0.00593726 -0.066646 -0.0297459 +0.0118723 -0.0608079 -0.0297758 +0.0118284 -0.0607672 -0.0231762 +0.0125731 -0.0614615 -0.0231463 +0.0125732 -0.0614615 -0.0297459 +0.0164136 -0.0540752 -0.0297758 +0.0163592 -0.0540499 -0.0231762 +0.0172821 -0.0544802 -0.0231463 +0.0172821 -0.0544802 -0.0297459 +0.0186521 -0.0462687 -0.0297758 +0.0185927 -0.0462614 -0.0231762 +0.0196032 -0.0463855 -0.0231463 +0.0196031 -0.0463855 -0.0297459 +0.0183686 -0.0381525 -0.0297758 +0.0183098 -0.0381639 -0.0231762 +0.0193092 -0.0379696 -0.0231463 +0.0193091 -0.0379696 -0.0297459 +0.0155911 -0.0305212 -0.0297758 +0.0155386 -0.03055 -0.0231762 +0.0164291 -0.0300565 -0.0231463 +0.0164293 -0.0300565 -0.0297459 +0.010591 -0.0241215 -0.0297758 +0.0105503 -0.0241654 -0.0231762 +0.0112447 -0.0234207 -0.0231463 +0.0112448 -0.0234207 -0.0297459 +0.00385849 -0.0195802 -0.0297758 +0.00383313 -0.0196346 -0.0231762 +0.00426342 -0.0187118 -0.0231463 +0.00426342 -0.0187118 -0.0297459 +-0.00394811 -0.0173418 -0.0297758 +-0.00395547 -0.0174012 -0.0231762 +-0.00383131 -0.0163906 -0.0231463 +-0.00383134 -0.0163906 -0.0297459 +-0.0120642 -0.0176252 -0.0297758 +-0.0120528 -0.017684 -0.0231762 +-0.0122471 -0.0166846 -0.0231463 +-0.0122471 -0.0166846 -0.0297459 +-0.0196958 -0.0204028 -0.0297758 +-0.0196666 -0.0204551 -0.0231762 +-0.0201603 -0.0195647 -0.0231463 +-0.0201603 -0.0195647 -0.0297459 +-0.0260953 -0.0254027 -0.0297758 +-0.0260515 -0.0254435 -0.0231762 +-0.0267961 -0.0247491 -0.0231463 +-0.0267961 -0.0247491 -0.0297459 +-0.0306365 -0.0321354 -0.0297758 +-0.0305823 -0.0321607 -0.0231762 +-0.031505 -0.0317305 -0.0231463 +-0.031505 -0.0317305 -0.0297459 +-0.032875 -0.0399419 -0.0297758 +-0.0328155 -0.0399492 -0.0231762 +-0.0338261 -0.0398252 -0.0231463 +-0.0338261 -0.0398252 -0.0297459 +-0.0325916 -0.0480581 -0.0297758 +-0.0325328 -0.0480467 -0.0231762 +-0.0335321 -0.048241 -0.0231463 +-0.0335322 -0.048241 -0.0297459 +-0.0298141 -0.0556896 -0.0297758 +-0.0297617 -0.0556605 -0.0231762 +-0.0306521 -0.0561541 -0.0231463 +-0.0306521 -0.0561541 -0.0297459 +-0.024814 -0.0620891 -0.0297758 +-0.0247732 -0.0620453 -0.0231762 +-0.0254677 -0.0627899 -0.0231463 +-0.0254676 -0.0627899 -0.0297459 +-0.0180815 -0.0666304 -0.0297758 +-0.0180561 -0.066576 -0.0231762 +-0.0184862 -0.0674988 -0.0231463 +-0.0184862 -0.0674988 -0.0297459 +-0.0102749 -0.0688688 -0.0297758 +-0.0102675 -0.0688094 -0.0231762 +-0.0103916 -0.06982 -0.0231463 +-0.0103916 -0.06982 -0.0297459 +-0.0126687 -0.0463199 -0.02973 +-0.0178433 -0.0470584 -0.02973 +-0.0225654 -0.0448708 -0.02973 +-0.0253126 -0.0404372 -0.02973 +-0.0256082 -0.0352442 -0.02973 +-0.0311766 -0.0326373 -0.02973 +-0.0311458 -0.0326535 -0.0231303 +-0.0255977 -0.035261 -0.0231303 +-0.0253022 -0.040454 -0.0231303 +-0.0225693 -0.0448926 -0.0231303 +-0.0178463 -0.0470384 -0.0231302 +-0.0126742 -0.0463574 -0.0231303 +-0.030655 -0.0315767 -0.02963 +-0.0251162 -0.0342016 -0.0296301 +-0.0251198 -0.0342486 -0.0230303 +-0.0306408 -0.0315851 -0.0230303 +-0.0244389 -0.0401618 -0.02963 +-0.0244215 -0.0401635 -0.0230303 +-0.0220629 -0.0442669 -0.02963 +-0.0220644 -0.0443007 -0.0230302 +-0.0177697 -0.0463428 -0.02963 +-0.0177508 -0.0463329 -0.0230303 +-0.0129861 -0.0456972 -0.02963 +-0.0129643 -0.0457129 -0.0230303 +-0.0081297 -0.0418809 -0.0297002 +-0.0081185 -0.0418843 -0.023084 +-0.00861232 -0.0432055 -0.023084 +-0.00862469 -0.0432015 -0.0297002 +-0.0063547 -0.0490728 -0.0230303 +-0.00636761 -0.0490671 -0.02963 +-0.00724421 -0.0538168 -0.0230303 +-0.00723185 -0.053816 -0.02963 +-0.01051 -0.0572911 -0.0230303 +-0.0105327 -0.0572575 -0.0296301 +-0.015173 -0.0582544 -0.0230303 +-0.0151711 -0.0582488 -0.02963 +-0.0252534 -0.0615185 -0.0230303 +-0.0210143 -0.0570907 -0.0230303 +-0.0210489 -0.057051 -0.02963 +-0.0252569 -0.0615078 -0.02963 +-0.00565226 -0.0489962 -0.0231303 +-0.00660278 -0.0541256 -0.0231302 +-0.010103 -0.0579543 -0.0231303 +-0.0151689 -0.0591818 -0.0231303 +-0.020199 -0.057858 -0.0231303 +-0.0243934 -0.062329 -0.0231303 +-0.0244093 -0.0623314 -0.02973 +-0.0202094 -0.0578412 -0.02973 +-0.0151792 -0.0591648 -0.02973 +-0.0101136 -0.0579222 -0.02973 +-0.00657384 -0.0541072 -0.02973 +-0.0056773 -0.0489576 -0.02973 +-0.00131457 -0.0436307 -0.02973 +0.00330587 -0.0460748 -0.02973 +0.00584038 -0.0506203 -0.02973 +0.00545673 -0.0558218 -0.02973 +0.00264351 -0.0601968 -0.02973 +0.00561608 -0.0655787 -0.02973 +0.00560983 -0.0655845 -0.0231303 +0.00265397 -0.0602138 -0.0231303 +0.00546722 -0.0558389 -0.0231303 +0.00586526 -0.0506417 -0.0231303 +0.00330536 -0.0461295 -0.0231303 +-0.00127898 -0.0436405 -0.0231303 +0.00457086 -0.0661303 -0.0296301 +0.00163268 -0.060751 -0.02963 +0.00167231 -0.060752 -0.0230303 +0.00457339 -0.0661519 -0.0230303 +0.00458817 -0.0555311 -0.02963 +0.00458406 -0.0555563 -0.0230303 +0.0050789 -0.0508134 -0.02963 +0.00510888 -0.0508237 -0.0230303 +0.00282581 -0.0466105 -0.02963 +0.00281368 -0.0466443 -0.0230303 +-0.00142376 -0.0443211 -0.02963 +-0.00142314 -0.0443324 -0.0230303 +-0.0074953 -0.0441366 -0.0297002 +-0.00748216 -0.0441398 -0.023084 +-0.00626393 -0.0434013 -0.023084 +-0.00627677 -0.0433992 -0.0297002 +-0.00463732 -0.0374322 -0.0230303 +-0.00463943 -0.0374076 -0.02963 +-0.00112934 -0.0341171 -0.0230303 +-0.00114881 -0.0340736 -0.02963 +0.00355484 -0.0332258 -0.0230303 +0.00354455 -0.0332295 -0.02963 +0.00789352 -0.0351874 -0.0230303 +0.00787975 -0.0351541 -0.02963 +0.0179672 -0.0384718 -0.0230303 +0.0119351 -0.0395623 -0.0230303 +0.011931 -0.0395779 -0.02963 +0.0179547 -0.0384458 -0.02963 +-0.00662993 -0.0419903 -0.023084 +-0.00525077 -0.0370813 -0.0231303 +-0.00146689 -0.0334902 -0.0231303 +0.00361533 -0.0324503 -0.0231303 +0.0084352 -0.0344347 -0.0231303 +0.0117268 -0.0384623 -0.0231303 +0.017748 -0.0373107 -0.0231303 +0.0177534 -0.0372812 -0.02973 +0.0117162 -0.0384452 -0.02973 +0.00842465 -0.0344177 -0.02973 +0.00359617 -0.0324456 -0.02973 +-0.00150989 -0.0334513 -0.02973 +-0.00526218 -0.0370905 -0.02973 +-0.00664134 -0.0419881 -0.0297002 +numsurf 190 +SURF 0x10 +mat 0 +refs 3 +202 0 0 +188 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +188 0 0 +187 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +187 0 0 +136 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +136 0 0 +135 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +135 0 0 +202 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +189 0 0 +215 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +186 0 0 +189 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +137 0 0 +186 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +134 0 0 +137 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +215 0 0 +134 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +202 0 0 +215 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +2 0 0 +3 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +4 0 0 +5 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +6 0 0 +7 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +8 0 0 +9 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +202 0 0 +2 0 0 +14 0 0 +135 0 0 +SURF 0x30 +mat 0 +refs 4 +215 0 0 +202 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +215 0 0 +134 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +4 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +3 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +6 0 0 +16 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +5 0 0 +24 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +8 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +7 0 0 +23 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +11 0 0 +18 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +9 0 0 +22 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +13 0 0 +20 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +10 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +12 0 0 +21 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +102 0 0 +26 0 0 +27 0 0 +103 0 0 +SURF 0x30 +mat 0 +refs 4 +103 0 0 +27 0 0 +28 0 0 +104 0 0 +SURF 0x30 +mat 0 +refs 4 +104 0 0 +28 0 0 +29 0 0 +105 0 0 +SURF 0x30 +mat 0 +refs 4 +105 0 0 +29 0 0 +26 0 0 +102 0 0 +SURF 0x30 +mat 0 +refs 4 +98 0 0 +102 0 0 +103 0 0 +99 0 0 +SURF 0x30 +mat 0 +refs 4 +99 0 0 +103 0 0 +104 0 0 +100 0 0 +SURF 0x30 +mat 0 +refs 4 +100 0 0 +104 0 0 +105 0 0 +101 0 0 +SURF 0x30 +mat 0 +refs 4 +101 0 0 +105 0 0 +102 0 0 +98 0 0 +SURF 0x30 +mat 0 +refs 4 +94 0 0 +98 0 0 +99 0 0 +95 0 0 +SURF 0x30 +mat 0 +refs 4 +95 0 0 +99 0 0 +100 0 0 +96 0 0 +SURF 0x30 +mat 0 +refs 4 +96 0 0 +100 0 0 +101 0 0 +97 0 0 +SURF 0x30 +mat 0 +refs 4 +97 0 0 +101 0 0 +98 0 0 +94 0 0 +SURF 0x30 +mat 0 +refs 4 +90 0 0 +94 0 0 +95 0 0 +91 0 0 +SURF 0x30 +mat 0 +refs 4 +91 0 0 +95 0 0 +96 0 0 +92 0 0 +SURF 0x30 +mat 0 +refs 4 +92 0 0 +96 0 0 +97 0 0 +93 0 0 +SURF 0x30 +mat 0 +refs 4 +93 0 0 +97 0 0 +94 0 0 +90 0 0 +SURF 0x30 +mat 0 +refs 4 +86 0 0 +90 0 0 +91 0 0 +87 0 0 +SURF 0x30 +mat 0 +refs 4 +87 0 0 +91 0 0 +92 0 0 +88 0 0 +SURF 0x30 +mat 0 +refs 4 +88 0 0 +92 0 0 +93 0 0 +89 0 0 +SURF 0x30 +mat 0 +refs 4 +89 0 0 +93 0 0 +90 0 0 +86 0 0 +SURF 0x30 +mat 0 +refs 4 +82 0 0 +86 0 0 +87 0 0 +83 0 0 +SURF 0x30 +mat 0 +refs 4 +83 0 0 +87 0 0 +88 0 0 +84 0 0 +SURF 0x30 +mat 0 +refs 4 +84 0 0 +88 0 0 +89 0 0 +85 0 0 +SURF 0x30 +mat 0 +refs 4 +85 0 0 +89 0 0 +86 0 0 +82 0 0 +SURF 0x30 +mat 0 +refs 4 +78 0 0 +82 0 0 +83 0 0 +79 0 0 +SURF 0x30 +mat 0 +refs 4 +79 0 0 +83 0 0 +84 0 0 +80 0 0 +SURF 0x30 +mat 0 +refs 4 +80 0 0 +84 0 0 +85 0 0 +81 0 0 +SURF 0x30 +mat 0 +refs 4 +81 0 0 +85 0 0 +82 0 0 +78 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 0 +78 0 0 +79 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +75 0 0 +79 0 0 +80 0 0 +76 0 0 +SURF 0x30 +mat 0 +refs 4 +76 0 0 +80 0 0 +81 0 0 +77 0 0 +SURF 0x30 +mat 0 +refs 4 +77 0 0 +81 0 0 +78 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +74 0 0 +75 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +71 0 0 +75 0 0 +76 0 0 +72 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +76 0 0 +77 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +73 0 0 +77 0 0 +74 0 0 +70 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +70 0 0 +71 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +71 0 0 +72 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0 0 +72 0 0 +73 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +69 0 0 +73 0 0 +70 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +66 0 0 +67 0 0 +63 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +67 0 0 +68 0 0 +64 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +68 0 0 +69 0 0 +65 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +69 0 0 +66 0 0 +62 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +62 0 0 +63 0 0 +59 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +63 0 0 +64 0 0 +60 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +64 0 0 +65 0 0 +61 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +65 0 0 +62 0 0 +58 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +58 0 0 +59 0 0 +55 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +59 0 0 +60 0 0 +56 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +60 0 0 +61 0 0 +57 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +61 0 0 +58 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +54 0 0 +55 0 0 +51 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +55 0 0 +56 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +56 0 0 +57 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +57 0 0 +54 0 0 +50 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +50 0 0 +51 0 0 +47 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +51 0 0 +52 0 0 +48 0 0 +SURF 0x30 +mat 0 +refs 4 +48 0 0 +52 0 0 +53 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +53 0 0 +50 0 0 +46 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +46 0 0 +47 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +47 0 0 +48 0 0 +44 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +48 0 0 +49 0 0 +45 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +49 0 0 +46 0 0 +42 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +42 0 0 +43 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +39 0 0 +43 0 0 +44 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +44 0 0 +45 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +41 0 0 +45 0 0 +42 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +34 0 0 +38 0 0 +39 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +35 0 0 +39 0 0 +40 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +40 0 0 +41 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +41 0 0 +38 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +34 0 0 +35 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +35 0 0 +36 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +36 0 0 +37 0 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +37 0 0 +34 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +30 0 0 +31 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +31 0 0 +32 0 0 +28 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +32 0 0 +33 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +33 0 0 +30 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +122 0 0 +123 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 0 +refs 4 +124 0 0 +125 0 0 +116 0 0 +117 0 0 +SURF 0x30 +mat 0 +refs 4 +125 0 0 +122 0 0 +115 0 0 +116 0 0 +SURF 0x30 +mat 0 +refs 4 +123 0 0 +126 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 0 +refs 4 +127 0 0 +124 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 0 +refs 4 +126 0 0 +128 0 0 +112 0 0 +113 0 0 +SURF 0x30 +mat 0 +refs 4 +129 0 0 +127 0 0 +118 0 0 +119 0 0 +SURF 0x30 +mat 0 +refs 4 +128 0 0 +130 0 0 +111 0 0 +112 0 0 +SURF 0x30 +mat 0 +refs 4 +131 0 0 +129 0 0 +119 0 0 +120 0 0 +SURF 0x30 +mat 0 +refs 4 +130 0 0 +132 0 0 +110 0 0 +111 0 0 +SURF 0x30 +mat 0 +refs 4 +133 0 0 +131 0 0 +120 0 0 +121 0 0 +SURF 0x30 +mat 0 +refs 4 +132 0 0 +134 0 0 +137 0 0 +110 0 0 +SURF 0x30 +mat 0 +refs 4 +134 0 0 +135 0 0 +136 0 0 +137 0 0 +SURF 0x30 +mat 0 +refs 4 +135 0 0 +133 0 0 +121 0 0 +136 0 0 +SURF 0x30 +mat 0 +refs 4 +125 0 0 +124 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 0 +refs 4 +124 0 0 +127 0 0 +126 0 0 +123 0 0 +SURF 0x30 +mat 0 +refs 4 +127 0 0 +129 0 0 +128 0 0 +126 0 0 +SURF 0x30 +mat 0 +refs 4 +129 0 0 +131 0 0 +130 0 0 +128 0 0 +SURF 0x30 +mat 0 +refs 4 +131 0 0 +133 0 0 +132 0 0 +130 0 0 +SURF 0x30 +mat 0 +refs 4 +133 0 0 +135 0 0 +134 0 0 +132 0 0 +SURF 0x30 +mat 0 +refs 4 +138 0 0 +136 0 0 +137 0 0 +139 0 0 +SURF 0x30 +mat 0 +refs 4 +140 0 0 +138 0 0 +139 0 0 +141 0 0 +SURF 0x30 +mat 0 +refs 4 +142 0 0 +140 0 0 +141 0 0 +143 0 0 +SURF 0x30 +mat 0 +refs 4 +144 0 0 +142 0 0 +143 0 0 +145 0 0 +SURF 0x30 +mat 0 +refs 4 +147 0 0 +144 0 0 +145 0 0 +148 0 0 +SURF 0x30 +mat 0 +refs 4 +146 0 0 +147 0 0 +148 0 0 +149 0 0 +SURF 0x30 +mat 0 +refs 4 +136 0 0 +138 0 0 +150 0 0 +187 0 0 +SURF 0x30 +mat 0 +refs 4 +137 0 0 +136 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 0 +refs 4 +139 0 0 +137 0 0 +186 0 0 +161 0 0 +SURF 0x30 +mat 0 +refs 4 +138 0 0 +140 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 0 +refs 4 +141 0 0 +139 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 0 +refs 4 +140 0 0 +142 0 0 +152 0 0 +151 0 0 +SURF 0x30 +mat 0 +refs 4 +143 0 0 +141 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 0 +refs 4 +142 0 0 +144 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 0 +refs 4 +145 0 0 +143 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 0 +refs 4 +144 0 0 +147 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 0 +refs 4 +148 0 0 +145 0 0 +158 0 0 +157 0 0 +SURF 0x30 +mat 0 +refs 4 +146 0 0 +149 0 0 +156 0 0 +155 0 0 +SURF 0x30 +mat 0 +refs 4 +147 0 0 +146 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 0 +refs 4 +149 0 0 +148 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 0 +refs 4 +174 0 0 +175 0 0 +166 0 0 +167 0 0 +SURF 0x30 +mat 0 +refs 4 +176 0 0 +177 0 0 +168 0 0 +169 0 0 +SURF 0x30 +mat 0 +refs 4 +177 0 0 +174 0 0 +167 0 0 +168 0 0 +SURF 0x30 +mat 0 +refs 4 +175 0 0 +178 0 0 +165 0 0 +166 0 0 +SURF 0x30 +mat 0 +refs 4 +179 0 0 +176 0 0 +169 0 0 +170 0 0 +SURF 0x30 +mat 0 +refs 4 +178 0 0 +180 0 0 +164 0 0 +165 0 0 +SURF 0x30 +mat 0 +refs 4 +181 0 0 +179 0 0 +170 0 0 +171 0 0 +SURF 0x30 +mat 0 +refs 4 +180 0 0 +182 0 0 +163 0 0 +164 0 0 +SURF 0x30 +mat 0 +refs 4 +183 0 0 +181 0 0 +171 0 0 +172 0 0 +SURF 0x30 +mat 0 +refs 4 +182 0 0 +184 0 0 +162 0 0 +163 0 0 +SURF 0x30 +mat 0 +refs 4 +185 0 0 +183 0 0 +172 0 0 +173 0 0 +SURF 0x30 +mat 0 +refs 4 +184 0 0 +186 0 0 +189 0 0 +162 0 0 +SURF 0x30 +mat 0 +refs 4 +186 0 0 +187 0 0 +188 0 0 +189 0 0 +SURF 0x30 +mat 0 +refs 4 +187 0 0 +185 0 0 +173 0 0 +188 0 0 +SURF 0x30 +mat 0 +refs 4 +177 0 0 +176 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 0 +refs 4 +176 0 0 +179 0 0 +178 0 0 +175 0 0 +SURF 0x30 +mat 0 +refs 4 +179 0 0 +181 0 0 +180 0 0 +178 0 0 +SURF 0x30 +mat 0 +refs 4 +181 0 0 +183 0 0 +182 0 0 +180 0 0 +SURF 0x30 +mat 0 +refs 4 +183 0 0 +185 0 0 +184 0 0 +182 0 0 +SURF 0x30 +mat 0 +refs 4 +185 0 0 +187 0 0 +186 0 0 +184 0 0 +SURF 0x30 +mat 0 +refs 4 +190 0 0 +188 0 0 +189 0 0 +191 0 0 +SURF 0x30 +mat 0 +refs 4 +192 0 0 +190 0 0 +191 0 0 +193 0 0 +SURF 0x30 +mat 0 +refs 4 +194 0 0 +192 0 0 +193 0 0 +195 0 0 +SURF 0x30 +mat 0 +refs 4 +196 0 0 +194 0 0 +195 0 0 +197 0 0 +SURF 0x30 +mat 0 +refs 4 +199 0 0 +196 0 0 +197 0 0 +200 0 0 +SURF 0x30 +mat 0 +refs 4 +198 0 0 +199 0 0 +200 0 0 +201 0 0 +SURF 0x30 +mat 0 +refs 4 +188 0 0 +190 0 0 +203 0 0 +202 0 0 +SURF 0x30 +mat 0 +refs 4 +189 0 0 +188 0 0 +202 0 0 +215 0 0 +SURF 0x30 +mat 0 +refs 4 +191 0 0 +189 0 0 +215 0 0 +214 0 0 +SURF 0x30 +mat 0 +refs 4 +190 0 0 +192 0 0 +204 0 0 +203 0 0 +SURF 0x30 +mat 0 +refs 4 +193 0 0 +191 0 0 +214 0 0 +213 0 0 +SURF 0x30 +mat 0 +refs 4 +192 0 0 +194 0 0 +205 0 0 +204 0 0 +SURF 0x30 +mat 0 +refs 4 +195 0 0 +193 0 0 +213 0 0 +212 0 0 +SURF 0x30 +mat 0 +refs 4 +194 0 0 +196 0 0 +206 0 0 +205 0 0 +SURF 0x30 +mat 0 +refs 4 +197 0 0 +195 0 0 +212 0 0 +211 0 0 +SURF 0x30 +mat 0 +refs 4 +196 0 0 +199 0 0 +207 0 0 +206 0 0 +SURF 0x30 +mat 0 +refs 4 +200 0 0 +197 0 0 +211 0 0 +210 0 0 +SURF 0x30 +mat 0 +refs 4 +198 0 0 +201 0 0 +209 0 0 +208 0 0 +SURF 0x30 +mat 0 +refs 4 +199 0 0 +198 0 0 +208 0 0 +207 0 0 +SURF 0x30 +mat 0 +refs 4 +201 0 0 +200 0 0 +210 0 0 +209 0 0 +kids 0 +OBJECT poly +name "cylinder" +loc 0.0250723 0.171223 1.99069e-005 +crease 45.000000 +numvert 14 +-0.000983238 0.000120774 3.59432e-009 +0.982517 -0.120626 5.31145e-009 +-0.000983298 0.000120774 0.000995678 +-0.00110334 -0.000857607 0.00049784 +-0.0011034 -0.000857621 -0.000497821 +-0.000983298 0.000120774 -0.000995662 +-0.000863135 0.00109911 -0.000497834 +-0.000863194 0.00109914 0.000497837 +0.982517 -0.120626 0.000995666 +0.982397 -0.121604 0.000497838 +0.982396 -0.121604 -0.000497823 +0.982517 -0.120626 -0.000995675 +0.982637 -0.119647 -0.000497843 +0.982637 -0.119647 0.000497837 +numsurf 18 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +2 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +13 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +12 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +13 -2.98023e-008 1 +7 -2.98023e-008 0 +2 0.166667 0 +8 0.166667 1 +SURF 0x10 +mat 0 +refs 4 +8 0.166667 1 +2 0.166667 0 +3 0.333333 0 +9 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +9 0.333333 1 +3 0.333333 0 +4 0.5 0 +10 0.5 1 +SURF 0x10 +mat 0 +refs 4 +10 0.5 1 +4 0.5 0 +5 0.666667 0 +11 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +11 0.666667 1 +5 0.666667 0 +6 0.833333 0 +12 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +12 0.833333 1 +6 0.833333 0 +7 1 0 +13 1 1 +kids 0 +OBJECT poly +name "vertfin" +loc 1.17702 0.103786 1.1627e-008 +crease 45.000000 +numvert 16 +-0.169192 -0.0522414 0.000644418 +-0.153414 0.0762641 0.000862584 +-0.190891 0.0808656 0.00086257 +-0.21373 0.0807436 0.000928959 +-0.229714 0.0792616 0.000862571 +-0.24879 0.0716547 0.000862579 +-0.261541 0.0631375 0.000862572 +-0.341582 -0.0310746 0.000644433 +-0.341675 -0.0310118 -0.000459753 +-0.261642 0.0631405 -0.000660993 +-0.248896 0.0716081 -0.000685515 +-0.22982 0.079215 -0.000685507 +-0.213829 0.0807629 -0.000685507 +-0.190989 0.0808849 -0.000685516 +-0.153512 0.0762833 -0.000685508 +-0.169286 -0.0521786 -0.000459751 +numsurf 9 +SURF 0x30 +mat 2 +refs 8 +0 0.993311 0.0403587 +1 1 1 +2 0.648829 1 +3 0.571907 0.982063 +4 0.518395 0.959641 +5 0.474917 0.932735 +6 0.431438 0.892377 +7 0 0 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +7 0 0 +8 0 0 +15 0 0 +SURF 0x30 +mat 2 +refs 4 +1 0 0 +0 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 2 +refs 4 +2 0 0 +1 0 0 +14 0 0 +13 0 0 +SURF 0x30 +mat 2 +refs 4 +3 0 0 +2 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 2 +refs 4 +4 0 0 +3 0 0 +12 0 0 +11 0 0 +SURF 0x30 +mat 2 +refs 4 +5 0 0 +4 0 0 +11 0 0 +10 0 0 +SURF 0x30 +mat 2 +refs 4 +6 0 0 +5 0 0 +10 0 0 +9 0 0 +SURF 0x30 +mat 2 +refs 4 +7 0 0 +6 0 0 +9 0 0 +8 0 0 +kids 0 +OBJECT poly +name "rudder" +loc 1.07071 0.107433 8.19273e-009 +crease 45.000000 +numvert 8 +-0.0632229 -0.0558039 0.000657761 +0.0542669 -0.0187779 0.000657773 +0.0625854 0.0591881 0.000846136 +-0.0468307 0.072587 0.000846142 +-0.0475492 0.0726653 -0.000689498 +0.0624821 0.059171 -0.000668579 +0.0541718 -0.0187326 -0.000459271 +-0.0633175 -0.0557586 -0.000459286 +numsurf 5 +SURF 0x30 +mat 2 +refs 4 +3 0.00555577 1 +2 0.988888 1 +1 1 0.383178 +0 0 0 +SURF 0x30 +mat 2 +refs 4 +7 0 0 +4 0 0 +3 0 0 +0 0 0 +SURF 0x30 +mat 2 +refs 4 +6 0 0 +7 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 2 +refs 4 +5 0 0 +6 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 2 +refs 4 +4 0 0 +5 0 0 +2 0 0 +3 0 0 +kids 0 +OBJECT poly +name "horzstab" +loc 0.919827 0.0553477 0.131204 +crease 45.000000 +numvert 8 +-0.00471282 0.00752826 0.132309 +0.0878473 -0.00378542 0.132378 +0.0882967 -0.00384054 -0.129841 +-0.0854834 0.0174457 -0.129909 +-0.0854945 0.0155599 -0.130053 +0.0877317 -0.00565824 -0.130228 +0.0871463 -0.00565877 0.132263 +-0.00496525 0.00567219 0.132439 +numsurf 6 +SURF 0x30 +mat 2 +refs 4 +3 0 0 +2 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 2 +refs 4 +2 0 0 +1 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 2 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +SURF 0x30 +mat 2 +refs 4 +4 0 0.990909 +5 1 1 +6 0.980583 0 +7 0.252427 0.0272727 +SURF 0x30 +mat 2 +refs 4 +0 0.330769 0 +1 0.984615 0.00719434 +2 1 1 +3 0 0.992806 +kids 0 +OBJECT poly +name "lhwheel" +loc 0.103904 0.0721993 0.0317906 +crease 45.000000 +numvert 216 +-0.00678746 -0.0421452 0.0291989 +-0.00540809 -0.0372476 0.0291691 +-0.00165589 -0.0336084 0.0291691 +0.00345026 -0.0326027 0.0291691 +0.00827868 -0.0345748 0.0291691 +0.0115703 -0.0386023 0.0291691 +0.0176074 -0.0374383 0.0291691 +0.017602 -0.0374678 0.0357689 +0.0115808 -0.0386194 0.0357689 +0.00828935 -0.0345918 0.0357689 +0.00346942 -0.0326074 0.0357688 +-0.00161277 -0.0336474 0.0357689 +-0.00539683 -0.0372384 0.0357689 +-0.00677587 -0.0421474 0.0358151 +0.017809 -0.0386029 0.0292691 +0.011785 -0.039735 0.0292691 +0.0117892 -0.0397194 0.0358688 +0.0178214 -0.0386289 0.0358689 +0.00773387 -0.0353112 0.0292691 +0.00774764 -0.0353445 0.0358688 +0.00339858 -0.0333867 0.0292691 +0.00340889 -0.033383 0.0358689 +-0.00129478 -0.0342307 0.0292691 +-0.00127523 -0.0342742 0.0358688 +-0.00478528 -0.0375647 0.0292691 +-0.00478335 -0.0375893 0.0358689 +-0.00642271 -0.0435563 0.0291989 +-0.00640996 -0.0435583 0.0358151 +-0.00762804 -0.0442969 0.0358151 +-0.00764127 -0.0442937 0.0291989 +-0.00156917 -0.0444895 0.0358688 +-0.0015697 -0.0444782 0.0292691 +0.0026678 -0.0468014 0.0358689 +0.00267978 -0.0467676 0.0292691 +0.00496285 -0.0509809 0.0358689 +0.00493284 -0.0509705 0.0292691 +0.004438 -0.0557133 0.0358688 +0.00444223 -0.0556882 0.0292691 +0.00442745 -0.066309 0.0358688 +0.00152634 -0.0609091 0.0358688 +0.00148667 -0.0609081 0.0292691 +0.00442491 -0.0662873 0.0292691 +-0.00142498 -0.0437976 0.0357688 +0.00315951 -0.0462867 0.0357689 +0.00571926 -0.0507987 0.0357689 +0.00532128 -0.055996 0.0357689 +0.002508 -0.0603709 0.0357688 +0.00546385 -0.0657416 0.0357689 +0.00547029 -0.0657359 0.0291691 +0.0024976 -0.0603539 0.0291691 +0.00531076 -0.0559789 0.0291691 +0.00569431 -0.0507774 0.0291691 +0.00315996 -0.0462319 0.0291691 +-0.00146054 -0.0437878 0.0291691 +-0.00582324 -0.0491147 0.0291691 +-0.00671987 -0.0542643 0.0291691 +-0.0102596 -0.0580793 0.0291691 +-0.0153252 -0.0593219 0.0291691 +-0.0203553 -0.0579983 0.0291691 +-0.0245553 -0.0624885 0.0291691 +-0.0245395 -0.0624861 0.0357688 +-0.020345 -0.0580152 0.0357689 +-0.0153148 -0.0593389 0.0357689 +-0.010249 -0.0581113 0.0357689 +-0.00674875 -0.0542827 0.0357689 +-0.00579815 -0.0491533 0.0357689 +-0.0254029 -0.0616648 0.0292691 +-0.0211949 -0.0572082 0.0292691 +-0.0211602 -0.0572478 0.0358688 +-0.0253994 -0.0616757 0.0358689 +-0.0153172 -0.0584058 0.0292691 +-0.0153189 -0.0584115 0.0358689 +-0.0106786 -0.0574146 0.0292691 +-0.010656 -0.0574482 0.0358689 +-0.00737776 -0.0539732 0.0292691 +-0.00739019 -0.0539739 0.0358688 +-0.00651361 -0.0492242 0.0292691 +-0.00650077 -0.04923 0.0358688 +-0.0087706 -0.0433586 0.0291989 +-0.00875835 -0.0433626 0.0358151 +-0.00826444 -0.0420414 0.0358151 +-0.00827576 -0.042038 0.0291989 +-0.0131102 -0.04587 0.0358688 +-0.0131321 -0.0458543 0.0292691 +-0.0178969 -0.0464901 0.0358688 +-0.0179156 -0.0464999 0.0292691 +-0.0222103 -0.0444578 0.0358689 +-0.0222088 -0.044424 0.0292691 +-0.0245674 -0.0403206 0.0358688 +-0.0245848 -0.0403189 0.0292691 +-0.0307868 -0.0317423 0.0358688 +-0.0252657 -0.0344057 0.0358689 +-0.0252621 -0.0343587 0.0292691 +-0.030801 -0.0317338 0.0292691 +-0.0128202 -0.0465145 0.0357689 +-0.0179922 -0.0471955 0.0357689 +-0.0227152 -0.0450497 0.0357689 +-0.0254481 -0.0406111 0.0357688 +-0.0257436 -0.0354181 0.0357688 +-0.0312918 -0.0328106 0.0357688 +-0.0313225 -0.0327944 0.0291691 +-0.025754 -0.0354013 0.0291691 +-0.0254584 -0.0405943 0.0291691 +-0.0227114 -0.0450279 0.0291691 +-0.0179893 -0.0472156 0.0291691 +-0.0128146 -0.046477 0.0291691 +-0.0105376 -0.0699771 0.0291532 +-0.0105376 -0.0699771 0.0357528 +-0.0104135 -0.0689665 0.0357229 +-0.0104208 -0.069026 0.0291233 +-0.0186323 -0.0676559 0.0291532 +-0.0186323 -0.0676559 0.0357528 +-0.0182021 -0.0667331 0.0357229 +-0.0182274 -0.0667875 0.0291233 +-0.0256136 -0.062947 0.0291532 +-0.0256136 -0.0629469 0.0357528 +-0.0249191 -0.0622023 0.0357229 +-0.0249601 -0.0622463 0.0291233 +-0.0307981 -0.0563112 0.0291532 +-0.0307982 -0.0563112 0.0357528 +-0.0299075 -0.0558177 0.0357229 +-0.02996 -0.0558467 0.0291233 +-0.0336781 -0.0483981 0.0291532 +-0.0336781 -0.0483981 0.0357528 +-0.0326787 -0.0482038 0.0357229 +-0.0327375 -0.0482152 0.0291233 +-0.0339722 -0.0399823 0.0291532 +-0.033972 -0.0399823 0.0357528 +-0.0329615 -0.0401063 0.0357229 +-0.033021 -0.0400991 0.0291233 +-0.0316509 -0.0318875 0.0291532 +-0.031651 -0.0318875 0.0357528 +-0.0307282 -0.0323178 0.0357229 +-0.0307824 -0.0322925 0.0291233 +-0.026942 -0.0249062 0.0291532 +-0.0269421 -0.0249062 0.0357528 +-0.0261974 -0.0256005 0.0357229 +-0.0262412 -0.0255598 0.0291233 +-0.0203062 -0.0197218 0.0291532 +-0.0203062 -0.0197218 0.0357528 +-0.0198127 -0.0206123 0.0357229 +-0.0198416 -0.0205599 0.0291233 +-0.0123931 -0.0168417 0.0291532 +-0.0123931 -0.0168417 0.0357528 +-0.0121988 -0.0178412 0.0357229 +-0.0122103 -0.0177823 0.0291233 +-0.00397731 -0.0165477 0.0291532 +-0.00397728 -0.0165477 0.0357528 +-0.00410141 -0.0175584 0.0357229 +-0.00409414 -0.0174989 0.0291233 +0.00411744 -0.0188689 0.0291532 +0.00411744 -0.0188689 0.0357528 +0.00368707 -0.0197917 0.0357229 +0.00371252 -0.0197374 0.0291233 +0.0110988 -0.0235778 0.0291532 +0.0110988 -0.0235778 0.0357528 +0.0104044 -0.0243224 0.0357229 +0.0104451 -0.0242786 0.0291233 +0.0162832 -0.0302136 0.0291532 +0.0162832 -0.0302136 0.0357528 +0.0153927 -0.0307072 0.0357229 +0.015445 -0.0306782 0.0291233 +0.0191632 -0.0381268 0.0291532 +0.0191632 -0.0381268 0.0357528 +0.0181639 -0.038321 0.0357229 +0.0182227 -0.0383096 0.0291233 +0.0194572 -0.0465426 0.0291532 +0.0194572 -0.0465426 0.0357528 +0.0184467 -0.0464185 0.0357229 +0.018506 -0.0464258 0.0291233 +0.0171361 -0.0546372 0.0291532 +0.017136 -0.0546372 0.0357528 +0.0162133 -0.054207 0.0357229 +0.0162676 -0.0542323 0.0291233 +0.0124271 -0.0616185 0.0291532 +0.0124271 -0.0616185 0.0357528 +0.0116826 -0.0609243 0.0357229 +0.0117263 -0.060965 0.0291233 +0.00579144 -0.066803 0.0291532 +0.00579132 -0.066803 0.0357528 +0.00529779 -0.0659126 0.0357229 +0.00532676 -0.065965 0.0291233 +-0.00212176 -0.0696831 0.0291532 +-0.00212173 -0.0696831 0.0357528 +-0.00231601 -0.0686837 0.0357229 +-0.0023046 -0.0687426 0.0291233 +-0.0105377 -0.0699771 0.0291532 +-0.0105377 -0.0699771 0.0357528 +-0.0104135 -0.0689665 0.0357229 +-0.0104208 -0.069026 0.0291233 +-0.0118828 -0.0392943 0.0291691 +-0.0141842 -0.0346012 0.0291691 +-0.0135629 -0.0294341 0.0291691 +-0.0101952 -0.0254514 0.0291691 +-0.0053478 -0.0235657 0.0291691 +-0.00458924 -0.0174642 0.0291691 +-0.00457172 -0.0175001 0.0357689 +-0.0053371 -0.0235824 0.0357689 +-0.0101846 -0.0254684 0.0357689 +-0.0135613 -0.0294391 0.0357688 +-0.0141428 -0.0345939 0.0357689 +-0.0118969 -0.0393023 0.0357689 +-0.00341932 -0.0176324 0.0292691 +-0.00420405 -0.0237113 0.0292691 +-0.00422649 -0.0237242 0.0358689 +-0.00339963 -0.0176503 0.0358688 +-0.00966333 -0.0261972 0.0292691 +-0.00963612 -0.0262161 0.0358688 +-0.0128332 -0.0297256 0.0292691 +-0.0128425 -0.0297362 0.0358689 +-0.0134809 -0.03445 0.0292691 +-0.0134423 -0.0344667 0.0358689 +-0.0113887 -0.0388 0.0292691 +-0.0113735 -0.0388274 0.0358689 +-0.00758775 -0.0431064 0.0291586 +-0.00757216 -0.0430815 0.0358076 +numsurf 190 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +5 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +7 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +6 0 0 +14 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +4 0 0 +18 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +8 0 0 +16 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +3 0 0 +20 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +9 0 0 +19 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +2 0 0 +22 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +10 0 0 +21 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +1 0 0 +24 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +11 0 0 +23 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +0 0 0 +26 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +13 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +12 0 0 +25 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +18 0 0 +19 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +22 0 0 +23 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +24 0 0 +25 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +26 0 0 +27 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +29 0 0 +28 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +31 0 0 +30 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +35 0 0 +33 0 0 +32 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +35 0 0 +34 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +37 0 0 +36 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +41 0 0 +40 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +42 0 0 +30 0 0 +28 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +27 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +26 0 0 +29 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +43 0 0 +32 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +53 0 0 +31 0 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +44 0 0 +34 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +52 0 0 +33 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +45 0 0 +36 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +51 0 0 +35 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +46 0 0 +39 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +50 0 0 +37 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +48 0 0 +41 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +47 0 0 +38 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +48 0 0 +49 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +58 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +60 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +59 0 0 +66 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +57 0 0 +70 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +61 0 0 +68 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +56 0 0 +72 0 0 +70 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +62 0 0 +71 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +55 0 0 +74 0 0 +72 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +63 0 0 +73 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +54 0 0 +76 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +64 0 0 +75 0 0 +77 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +29 0 0 +78 0 0 +76 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +28 0 0 +79 0 0 +78 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +65 0 0 +77 0 0 +79 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +67 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +70 0 0 +71 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +72 0 0 +73 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +74 0 0 +75 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 0 +76 0 0 +77 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +76 0 0 +78 0 0 +79 0 0 +77 0 0 +SURF 0x30 +mat 0 +refs 4 +83 0 0 +81 0 0 +80 0 0 +82 0 0 +SURF 0x30 +mat 0 +refs 4 +85 0 0 +83 0 0 +82 0 0 +84 0 0 +SURF 0x30 +mat 0 +refs 4 +87 0 0 +85 0 0 +84 0 0 +86 0 0 +SURF 0x30 +mat 0 +refs 4 +89 0 0 +87 0 0 +86 0 0 +88 0 0 +SURF 0x30 +mat 0 +refs 4 +92 0 0 +89 0 0 +88 0 0 +91 0 0 +SURF 0x30 +mat 0 +refs 4 +93 0 0 +92 0 0 +91 0 0 +90 0 0 +SURF 0x30 +mat 0 +refs 4 +79 0 0 +94 0 0 +82 0 0 +80 0 0 +SURF 0x30 +mat 0 +refs 4 +78 0 0 +79 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 0 +refs 4 +105 0 0 +78 0 0 +81 0 0 +83 0 0 +SURF 0x30 +mat 0 +refs 4 +94 0 0 +95 0 0 +84 0 0 +82 0 0 +SURF 0x30 +mat 0 +refs 4 +104 0 0 +105 0 0 +83 0 0 +85 0 0 +SURF 0x30 +mat 0 +refs 4 +95 0 0 +96 0 0 +86 0 0 +84 0 0 +SURF 0x30 +mat 0 +refs 4 +103 0 0 +104 0 0 +85 0 0 +87 0 0 +SURF 0x30 +mat 0 +refs 4 +96 0 0 +97 0 0 +88 0 0 +86 0 0 +SURF 0x30 +mat 0 +refs 4 +102 0 0 +103 0 0 +87 0 0 +89 0 0 +SURF 0x30 +mat 0 +refs 4 +97 0 0 +98 0 0 +91 0 0 +88 0 0 +SURF 0x30 +mat 0 +refs 4 +101 0 0 +102 0 0 +89 0 0 +92 0 0 +SURF 0x30 +mat 0 +refs 4 +99 0 0 +100 0 0 +93 0 0 +90 0 0 +SURF 0x30 +mat 0 +refs 4 +98 0 0 +99 0 0 +90 0 0 +91 0 0 +SURF 0x30 +mat 0 +refs 4 +100 0 0 +101 0 0 +92 0 0 +93 0 0 +SURF 0x30 +mat 0 +refs 4 +189 0 0 +185 0 0 +182 0 0 +186 0 0 +SURF 0x30 +mat 0 +refs 4 +186 0 0 +182 0 0 +183 0 0 +187 0 0 +SURF 0x30 +mat 0 +refs 4 +187 0 0 +183 0 0 +184 0 0 +188 0 0 +SURF 0x30 +mat 0 +refs 4 +188 0 0 +184 0 0 +185 0 0 +189 0 0 +SURF 0x30 +mat 0 +refs 4 +185 0 0 +181 0 0 +178 0 0 +182 0 0 +SURF 0x30 +mat 0 +refs 4 +182 0 0 +178 0 0 +179 0 0 +183 0 0 +SURF 0x30 +mat 0 +refs 4 +183 0 0 +179 0 0 +180 0 0 +184 0 0 +SURF 0x30 +mat 0 +refs 4 +184 0 0 +180 0 0 +181 0 0 +185 0 0 +SURF 0x30 +mat 0 +refs 4 +181 0 0 +177 0 0 +174 0 0 +178 0 0 +SURF 0x30 +mat 0 +refs 4 +178 0 0 +174 0 0 +175 0 0 +179 0 0 +SURF 0x30 +mat 0 +refs 4 +179 0 0 +175 0 0 +176 0 0 +180 0 0 +SURF 0x30 +mat 0 +refs 4 +180 0 0 +176 0 0 +177 0 0 +181 0 0 +SURF 0x30 +mat 0 +refs 4 +177 0 0 +173 0 0 +170 0 0 +174 0 0 +SURF 0x30 +mat 0 +refs 4 +174 0 0 +170 0 0 +171 0 0 +175 0 0 +SURF 0x30 +mat 0 +refs 4 +175 0 0 +171 0 0 +172 0 0 +176 0 0 +SURF 0x30 +mat 0 +refs 4 +176 0 0 +172 0 0 +173 0 0 +177 0 0 +SURF 0x30 +mat 0 +refs 4 +173 0 0 +169 0 0 +166 0 0 +170 0 0 +SURF 0x30 +mat 0 +refs 4 +170 0 0 +166 0 0 +167 0 0 +171 0 0 +SURF 0x30 +mat 0 +refs 4 +171 0 0 +167 0 0 +168 0 0 +172 0 0 +SURF 0x30 +mat 0 +refs 4 +172 0 0 +168 0 0 +169 0 0 +173 0 0 +SURF 0x30 +mat 0 +refs 4 +169 0 0 +165 0 0 +162 0 0 +166 0 0 +SURF 0x30 +mat 0 +refs 4 +166 0 0 +162 0 0 +163 0 0 +167 0 0 +SURF 0x30 +mat 0 +refs 4 +167 0 0 +163 0 0 +164 0 0 +168 0 0 +SURF 0x30 +mat 0 +refs 4 +168 0 0 +164 0 0 +165 0 0 +169 0 0 +SURF 0x30 +mat 0 +refs 4 +165 0 0 +161 0 0 +158 0 0 +162 0 0 +SURF 0x30 +mat 0 +refs 4 +162 0 0 +158 0 0 +159 0 0 +163 0 0 +SURF 0x30 +mat 0 +refs 4 +163 0 0 +159 0 0 +160 0 0 +164 0 0 +SURF 0x30 +mat 0 +refs 4 +164 0 0 +160 0 0 +161 0 0 +165 0 0 +SURF 0x30 +mat 0 +refs 4 +161 0 0 +157 0 0 +154 0 0 +158 0 0 +SURF 0x30 +mat 0 +refs 4 +158 0 0 +154 0 0 +155 0 0 +159 0 0 +SURF 0x30 +mat 0 +refs 4 +159 0 0 +155 0 0 +156 0 0 +160 0 0 +SURF 0x30 +mat 0 +refs 4 +160 0 0 +156 0 0 +157 0 0 +161 0 0 +SURF 0x30 +mat 0 +refs 4 +157 0 0 +153 0 0 +150 0 0 +154 0 0 +SURF 0x30 +mat 0 +refs 4 +154 0 0 +150 0 0 +151 0 0 +155 0 0 +SURF 0x30 +mat 0 +refs 4 +155 0 0 +151 0 0 +152 0 0 +156 0 0 +SURF 0x30 +mat 0 +refs 4 +156 0 0 +152 0 0 +153 0 0 +157 0 0 +SURF 0x30 +mat 0 +refs 4 +153 0 0 +149 0 0 +146 0 0 +150 0 0 +SURF 0x30 +mat 0 +refs 4 +150 0 0 +146 0 0 +147 0 0 +151 0 0 +SURF 0x30 +mat 0 +refs 4 +151 0 0 +147 0 0 +148 0 0 +152 0 0 +SURF 0x30 +mat 0 +refs 4 +152 0 0 +148 0 0 +149 0 0 +153 0 0 +SURF 0x30 +mat 0 +refs 4 +149 0 0 +145 0 0 +142 0 0 +146 0 0 +SURF 0x30 +mat 0 +refs 4 +146 0 0 +142 0 0 +143 0 0 +147 0 0 +SURF 0x30 +mat 0 +refs 4 +147 0 0 +143 0 0 +144 0 0 +148 0 0 +SURF 0x30 +mat 0 +refs 4 +148 0 0 +144 0 0 +145 0 0 +149 0 0 +SURF 0x30 +mat 0 +refs 4 +145 0 0 +141 0 0 +138 0 0 +142 0 0 +SURF 0x30 +mat 0 +refs 4 +142 0 0 +138 0 0 +139 0 0 +143 0 0 +SURF 0x30 +mat 0 +refs 4 +143 0 0 +139 0 0 +140 0 0 +144 0 0 +SURF 0x30 +mat 0 +refs 4 +144 0 0 +140 0 0 +141 0 0 +145 0 0 +SURF 0x30 +mat 0 +refs 4 +141 0 0 +137 0 0 +134 0 0 +138 0 0 +SURF 0x30 +mat 0 +refs 4 +138 0 0 +134 0 0 +135 0 0 +139 0 0 +SURF 0x30 +mat 0 +refs 4 +139 0 0 +135 0 0 +136 0 0 +140 0 0 +SURF 0x30 +mat 0 +refs 4 +140 0 0 +136 0 0 +137 0 0 +141 0 0 +SURF 0x30 +mat 0 +refs 4 +137 0 0 +133 0 0 +130 0 0 +134 0 0 +SURF 0x30 +mat 0 +refs 4 +134 0 0 +130 0 0 +131 0 0 +135 0 0 +SURF 0x30 +mat 0 +refs 4 +135 0 0 +131 0 0 +132 0 0 +136 0 0 +SURF 0x30 +mat 0 +refs 4 +136 0 0 +132 0 0 +133 0 0 +137 0 0 +SURF 0x30 +mat 0 +refs 4 +133 0 0 +129 0 0 +126 0 0 +130 0 0 +SURF 0x30 +mat 0 +refs 4 +130 0 0 +126 0 0 +127 0 0 +131 0 0 +SURF 0x30 +mat 0 +refs 4 +131 0 0 +127 0 0 +128 0 0 +132 0 0 +SURF 0x30 +mat 0 +refs 4 +132 0 0 +128 0 0 +129 0 0 +133 0 0 +SURF 0x30 +mat 0 +refs 4 +129 0 0 +125 0 0 +122 0 0 +126 0 0 +SURF 0x30 +mat 0 +refs 4 +126 0 0 +122 0 0 +123 0 0 +127 0 0 +SURF 0x30 +mat 0 +refs 4 +127 0 0 +123 0 0 +124 0 0 +128 0 0 +SURF 0x30 +mat 0 +refs 4 +128 0 0 +124 0 0 +125 0 0 +129 0 0 +SURF 0x30 +mat 0 +refs 4 +125 0 0 +121 0 0 +118 0 0 +122 0 0 +SURF 0x30 +mat 0 +refs 4 +122 0 0 +118 0 0 +119 0 0 +123 0 0 +SURF 0x30 +mat 0 +refs 4 +123 0 0 +119 0 0 +120 0 0 +124 0 0 +SURF 0x30 +mat 0 +refs 4 +124 0 0 +120 0 0 +121 0 0 +125 0 0 +SURF 0x30 +mat 0 +refs 4 +121 0 0 +117 0 0 +114 0 0 +118 0 0 +SURF 0x30 +mat 0 +refs 4 +118 0 0 +114 0 0 +115 0 0 +119 0 0 +SURF 0x30 +mat 0 +refs 4 +119 0 0 +115 0 0 +116 0 0 +120 0 0 +SURF 0x30 +mat 0 +refs 4 +120 0 0 +116 0 0 +117 0 0 +121 0 0 +SURF 0x30 +mat 0 +refs 4 +117 0 0 +113 0 0 +110 0 0 +114 0 0 +SURF 0x30 +mat 0 +refs 4 +114 0 0 +110 0 0 +111 0 0 +115 0 0 +SURF 0x30 +mat 0 +refs 4 +115 0 0 +111 0 0 +112 0 0 +116 0 0 +SURF 0x30 +mat 0 +refs 4 +116 0 0 +112 0 0 +113 0 0 +117 0 0 +SURF 0x30 +mat 0 +refs 4 +113 0 0 +189 0 0 +186 0 0 +110 0 0 +SURF 0x30 +mat 0 +refs 4 +110 0 0 +186 0 0 +187 0 0 +111 0 0 +SURF 0x30 +mat 0 +refs 4 +111 0 0 +187 0 0 +188 0 0 +112 0 0 +SURF 0x30 +mat 0 +refs 4 +112 0 0 +188 0 0 +189 0 0 +113 0 0 +SURF 0x30 +mat 0 +refs 4 +195 0 0 +194 0 0 +203 0 0 +202 0 0 +SURF 0x30 +mat 0 +refs 4 +197 0 0 +196 0 0 +205 0 0 +204 0 0 +SURF 0x30 +mat 0 +refs 4 +196 0 0 +195 0 0 +202 0 0 +205 0 0 +SURF 0x30 +mat 0 +refs 4 +194 0 0 +193 0 0 +206 0 0 +203 0 0 +SURF 0x30 +mat 0 +refs 4 +198 0 0 +197 0 0 +204 0 0 +207 0 0 +SURF 0x30 +mat 0 +refs 4 +193 0 0 +192 0 0 +208 0 0 +206 0 0 +SURF 0x30 +mat 0 +refs 4 +199 0 0 +198 0 0 +207 0 0 +209 0 0 +SURF 0x30 +mat 0 +refs 4 +192 0 0 +191 0 0 +210 0 0 +208 0 0 +SURF 0x30 +mat 0 +refs 4 +200 0 0 +199 0 0 +209 0 0 +211 0 0 +SURF 0x30 +mat 0 +refs 4 +191 0 0 +190 0 0 +212 0 0 +210 0 0 +SURF 0x30 +mat 0 +refs 4 +201 0 0 +200 0 0 +211 0 0 +213 0 0 +SURF 0x30 +mat 0 +refs 4 +190 0 0 +81 0 0 +0 0 0 +212 0 0 +SURF 0x30 +mat 0 +refs 4 +81 0 0 +80 0 0 +13 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +80 0 0 +201 0 0 +213 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +202 0 0 +203 0 0 +204 0 0 +205 0 0 +SURF 0x30 +mat 0 +refs 4 +203 0 0 +206 0 0 +207 0 0 +204 0 0 +SURF 0x30 +mat 0 +refs 4 +206 0 0 +208 0 0 +209 0 0 +207 0 0 +SURF 0x30 +mat 0 +refs 4 +208 0 0 +210 0 0 +211 0 0 +209 0 0 +SURF 0x30 +mat 0 +refs 4 +210 0 0 +212 0 0 +213 0 0 +211 0 0 +SURF 0x30 +mat 0 +refs 4 +212 0 0 +0 0 0 +13 0 0 +213 0 0 +SURF 0x10 +mat 0 +refs 3 +214 0 0 +81 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +214 0 0 +78 0 0 +81 0 0 +SURF 0x10 +mat 0 +refs 3 +214 0 0 +29 0 0 +78 0 0 +SURF 0x10 +mat 0 +refs 3 +214 0 0 +26 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 3 +214 0 0 +0 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 3 +215 0 0 +13 0 0 +80 0 0 +SURF 0x10 +mat 0 +refs 3 +215 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 0 +refs 3 +215 0 0 +79 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 3 +215 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 3 +215 0 0 +27 0 0 +13 0 0 +kids 0 +OBJECT poly +name "strut" +loc 0.10867 0.107095 0.000503164 +crease 45.000000 +numvert 38 +-0.011679 -0.077889 -0.0589568 +-0.0120009 -0.078374 -0.0589568 +-0.0125176 -0.0783105 -0.0589568 +-0.0127125 -0.0777622 -0.0589568 +-0.011874 -0.0773407 -0.0589568 +-0.0123907 -0.0772772 -0.0589568 +-0.0116774 -0.0778958 -0.0548519 +-0.0119992 -0.0783807 -0.0548519 +-0.0125159 -0.0783173 -0.0548519 +-0.0127108 -0.0777688 -0.0548519 +-0.0118723 -0.0773472 -0.0548519 +-0.012389 -0.0772839 -0.0548519 +-0.011821 -0.0780509 0.0640349 +-0.0121427 -0.078536 0.0640349 +-0.0126595 -0.0784725 0.0640349 +-0.0128545 -0.0779241 0.0640349 +-0.0125325 -0.0774391 0.0640349 +-0.0120158 -0.0775025 0.0640349 +-0.0118237 -0.0780545 0.0599639 +-0.0121454 -0.0785396 0.0599639 +-0.0126621 -0.0784761 0.0599639 +-0.0128571 -0.0779277 0.0599639 +-0.0125353 -0.0774427 0.0599639 +-0.0120185 -0.0775062 0.0599639 +0.000516564 -6.34566e-005 0.000520597 +0.000194877 -0.000548437 0.00052059 +-0.000321835 -0.000484996 0.000520597 +-0.000516772 6.34342e-005 0.000520592 +-0.000194967 0.000548422 0.00052059 +0.000321716 0.000484973 0.000520592 +-0.000307798 2.95565e-005 -0.00151009 +-0.000629574 -0.000455417 -0.00151009 +-0.00114629 -0.00039196 -0.0015101 +-0.00134122 0.00015647 -0.0015101 +-0.00101939 0.000641435 -0.0015101 +-0.000502765 0.000577994 -0.00151009 +-0.0123376 -0.0779876 0.0640349 +-0.0121958 -0.0778257 -0.0589568 +numsurf 42 +SURF 0x10 +mat 0 +refs 3 +37 0 0 +4 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +37 0 0 +0 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +37 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 3 +37 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 3 +37 0 0 +3 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 3 +37 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +6 0 0 +0 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +11 0 0 +5 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +10 0 0 +4 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +35 0 0 +30 0 0 +6 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +31 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +31 0 0 +32 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +32 0 0 +33 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +33 0 0 +34 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +34 0 0 +35 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 3 +36 0 0 +12 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 3 +36 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 3 +36 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 3 +36 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 3 +36 0 0 +16 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 3 +36 0 0 +17 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +23 0 0 +17 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +18 0 0 +12 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +19 0 0 +13 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +20 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +21 0 0 +15 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +22 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +29 0 0 +23 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +24 0 0 +18 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +25 0 0 +19 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +26 0 0 +20 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +27 0 0 +21 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +28 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +35 -2.98023e-008 1 +29 -2.98023e-008 0 +24 0.166667 0 +30 0.166667 1 +SURF 0x10 +mat 0 +refs 4 +30 0.166667 1 +24 0.166667 0 +25 0.333333 0 +31 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +31 0.333333 1 +25 0.333333 0 +26 0.5 0 +32 0.5 1 +SURF 0x10 +mat 0 +refs 4 +32 0.5 1 +26 0.5 0 +27 0.666667 0 +33 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +33 0.666667 1 +27 0.666667 0 +28 0.833333 0 +34 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +34 0.833333 1 +28 0.833333 0 +29 1 0 +35 1 1 +kids 0 +OBJECT poly +name "elevator" +loc 1.06416 0.0399862 0.1311 +crease 45.000000 +numvert 8 +-0.0560367 0.0115373 0.13178 +0.0566106 -0.00223108 0.130921 +0.0564642 -0.00221311 -0.39342 +-0.05604 0.0115115 -0.394279 +-0.0563958 0.00954503 -0.393365 +0.0559928 -0.00418821 -0.393365 +0.0560143 -0.00440507 0.131625 +-0.0563958 0.00954503 0.131625 +numsurf 6 +SURF 0x30 +mat 2 +refs 4 +3 0 0 +2 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 2 +refs 4 +2 0 0 +1 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 2 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +SURF 0x30 +mat 2 +refs 4 +4 0 1 +5 0.98077 1 +6 1 0 +7 0 0.0434783 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +1 1 0.00649345 +2 0.972603 0.993506 +3 0.0136979 1 +kids 0 +OBJECT poly +name "motor" +loc 0.0558506 0.189529 -3.93247e-006 +crease 45.000000 +numvert 26 +-0.0121179 0.000455365 3.88536e-009 +0.0126631 -0.00258738 5.57338e-009 +-0.0121179 0.000455379 0.0127628 +-0.0128616 -0.00560135 0.0110529 +-0.0134062 -0.0100353 0.00638141 +-0.0136053 -0.0116581 -5.48607e-009 +-0.0134061 -0.0100353 -0.0063814 +-0.0128616 -0.00560135 -0.0110529 +-0.0121179 0.000455379 -0.0127628 +-0.0113743 0.00651211 -0.0110529 +-0.01083 0.0109459 -0.00638139 +-0.0106306 0.0125688 -3.34694e-009 +-0.01083 0.0109459 0.0063814 +-0.0113743 0.00651211 0.0110529 +0.0126632 -0.00258741 0.0127628 +0.0119195 -0.0086441 0.0110529 +0.011375 -0.0130779 0.00638141 +0.0111758 -0.0147008 4.94765e-010 +0.011375 -0.0130779 -0.0063814 +0.0119193 -0.00864413 -0.0110529 +0.0126631 -0.00258738 -0.0127628 +0.0134068 0.00346938 -0.0110529 +0.0139512 0.00790319 -0.0063814 +0.0141505 0.00952607 7.61065e-009 +0.0139512 0.00790319 0.00638141 +0.0134068 0.00346938 0.0110529 +numsurf 36 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +2 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +25 0 0 +14 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +15 0 0 +16 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +17 0 0 +18 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +18 0 0 +19 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +19 0 0 +20 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +20 0 0 +21 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +21 0 0 +22 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +23 0 0 +24 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 1 +refs 4 +25 -2.98023e-008 1 +13 -2.98023e-008 0 +2 0.0833333 0 +14 0.0833333 1 +SURF 0x10 +mat 1 +refs 4 +14 0.0833333 1 +2 0.0833333 0 +3 0.166667 0 +15 0.166667 1 +SURF 0x10 +mat 1 +refs 4 +15 0.166667 1 +3 0.166667 0 +4 0.25 0 +16 0.25 1 +SURF 0x10 +mat 1 +refs 4 +16 0.25 1 +4 0.25 0 +5 0.333333 0 +17 0.333333 1 +SURF 0x10 +mat 1 +refs 4 +17 0.333333 1 +5 0.333333 0 +6 0.416667 0 +18 0.416667 1 +SURF 0x10 +mat 1 +refs 4 +18 0.416667 1 +6 0.416667 0 +7 0.5 0 +19 0.5 1 +SURF 0x10 +mat 1 +refs 4 +19 0.5 1 +7 0.5 0 +8 0.583333 0 +20 0.583333 1 +SURF 0x10 +mat 1 +refs 4 +20 0.583333 1 +8 0.583333 0 +9 0.666667 0 +21 0.666667 1 +SURF 0x10 +mat 1 +refs 4 +21 0.666667 1 +9 0.666667 0 +10 0.75 0 +22 0.75 1 +SURF 0x10 +mat 1 +refs 4 +22 0.75 1 +10 0.75 0 +11 0.833333 0 +23 0.833333 1 +SURF 0x10 +mat 1 +refs 4 +23 0.833333 1 +11 0.833333 0 +12 0.916667 0 +24 0.916667 1 +SURF 0x10 +mat 1 +refs 4 +24 0.916667 1 +12 0.916667 0 +13 1 0 +25 1 1 +kids 0 +OBJECT poly +name "aftwingmount" +loc 0.379145 0.126675 -0.000162644 +crease 45.000000 +numvert 56 +-0.000768244 -0.00207186 0.000121241 +-0.000656903 -0.00135072 -0.00605477 +-0.000714362 -0.00144877 -0.00604936 +0.000276685 -0.0022063 0.000121242 +0.000341564 -0.00148058 -0.00605476 +0.000376761 -0.00158779 -0.00604936 +0.000532836 -0.000136301 0.000121238 +-0.000547826 -2.04146e-006 0.000121242 +0.000575483 0.000489697 -0.00605476 +-0.000420123 0.00061129 -0.00605476 +0.000655293 0.000581875 -0.00603994 +-0.000510454 0.000728846 -0.00604307 +0.000926048 -0.00123456 0.000121238 +0.000954866 -0.000555933 -0.00605309 +0.00106129 -0.00056763 -0.00604877 +-0.00118816 -0.000971004 0.000121242 +-0.00116712 -0.000294939 -0.00604942 +-0.00104222 -0.00030309 -0.00605471 +-0.00104234 -0.00030376 0.0060547 +-0.00116718 -0.000295594 0.00604942 +0.00106114 -0.000568286 0.00604877 +0.000954777 -0.000556588 0.00605309 +-0.000510514 0.00072819 0.00604307 +0.000655204 0.000581205 0.00603994 +-0.000420153 0.00061062 0.00605476 +0.000575423 0.000489041 0.00605476 +0.000376821 -0.00158846 0.00604936 +0.000341535 -0.00148122 0.00605476 +-0.000714421 -0.00144942 0.00604936 +-0.000657022 -0.00135139 0.00605476 +3.60608e-005 0.0021679 0.000791542 +-0.000106514 0.00108097 0.0013193 +-0.00011161 0.00108877 0.00119383 +8.22544e-006 0.00206487 0.00068753 +0.00037086 0.00102957 0.00119344 +0.000490636 0.00200562 0.00068753 +0.000363857 0.00102322 0.00131811 +0.000491619 0.00211196 0.000791545 +-0.000239432 -9.68575e-007 0.000728711 +-0.000232577 0.00010334 0.000683172 +0.000249773 4.41074e-005 0.000683176 +0.000231028 -5.87106e-005 0.000728705 +-0.000240028 -5.91576e-006 -0.000371548 +-0.000233501 9.6187e-005 -0.000323664 +0.000248969 3.69698e-005 -0.000323668 +0.000230432 -6.36876e-005 -0.000371549 +-0.000107586 0.00108014 -0.000926403 +-0.00011155 0.00108175 -0.000820195 +0.000367701 0.00102231 -0.000819902 +0.000364006 0.00102413 -0.00092664 +4.04716e-005 0.00216351 -0.000383604 +8.34465e-006 0.00206551 -0.000316162 +0.000490606 0.00200626 -0.000316165 +0.000488043 0.00210857 -0.000383605 +-0.000239432 -9.68575e-007 0.000728711 +0.000231028 -5.87106e-005 0.000728708 +numsurf 66 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +17 0 0 +15 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +16 0 0 +17 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +15 0 0 +16 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +1 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +2 0 0 +1 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +0 0 0 +2 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +4 0 0 +3 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +5 0 0 +4 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +3 0 0 +5 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +13 0 0 +12 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +14 0 0 +13 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +12 0 0 +14 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +8 0 0 +6 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +10 0 0 +8 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +6 0 0 +10 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +9 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +11 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +11 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 3 +14 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 3 +17 0 0 +16 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 3 +15 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 3 +12 0 0 +21 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +22 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +24 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +23 0 0 +6 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +25 0 0 +23 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +6 0 0 +25 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +20 0 0 +12 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +12 0 0 +21 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +26 0 0 +3 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +27 0 0 +26 0 0 +28 0 0 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +3 0 0 +27 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0 0 +28 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +29 0 0 +28 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +0 0 0 +29 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +19 0 0 +15 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +18 0 0 +19 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +15 0 0 +18 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +31 0 0 +32 0 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +32 0 0 +34 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +35 0 0 +34 0 0 +36 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +36 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +38 0 0 +39 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +39 0 0 +40 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +34 0 0 +40 0 0 +41 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +41 0 0 +38 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +42 0 0 +43 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +39 0 0 +43 0 0 +44 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +44 0 0 +45 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +46 0 0 +47 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +47 0 0 +48 0 0 +44 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +48 0 0 +49 0 0 +45 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +49 0 0 +46 0 0 +42 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +50 0 0 +51 0 0 +47 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +51 0 0 +52 0 0 +48 0 0 +SURF 0x30 +mat 0 +refs 4 +48 0 0 +52 0 0 +53 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +53 0 0 +50 0 0 +46 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +30 0 0 +33 0 0 +51 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +33 0 0 +35 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +35 0 0 +37 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +37 0 0 +30 0 0 +50 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +47 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +31 0 0 +36 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +45 0 0 +42 0 0 +54 0 0 +kids 0 +OBJECT poly +name "fwdwingmount" +loc 0.164714 0.157711 -2.61616e-005 +crease 45.000000 +numvert 86 +5.44488e-005 -0.00444786 -0.00065611 +2.04146e-005 -0.00472462 -0.000514418 +0.000896901 0.00241409 -0.0061204 +0.000895619 0.0024035 -0.00591015 +-0.000204623 0.00253502 -0.00590922 +-0.000203311 0.00254562 -0.00611948 +-0.0010798 -0.0045931 -0.000513485 +-0.00104582 -0.00431634 -0.000655177 +-0.000551343 0.00369671 -0.0061176 +-0.000676036 0.00370482 -0.00611233 +-0.000706047 0.00295439 1.36901e-006 +0.00155219 0.00343215 -0.00611167 +0.00144601 0.00344379 -0.006116 +0.00140741 0.0026909 1.3692e-006 +0.00101489 0.00378908 1.37285e-006 +-6.62804e-005 0.00392339 1.37639e-006 +-1.97291e-005 0.00472863 -0.00610598 +0.00114617 0.00458166 -0.00610285 +7.06315e-005 0.00461107 -0.00611766 +0.00106695 0.00448942 -0.00611766 +0.000758469 0.00171915 1.3706e-006 +0.000867665 0.00241201 -0.00611227 +0.000832587 0.00251921 -0.00611766 +-0.00028646 0.00185359 1.37163e-006 +-0.000223875 0.00255105 -0.00611227 +-0.00016588 0.00264904 -0.00611766 +2.11298e-005 -0.00473508 0.000592224 +2.05636e-005 -0.00474004 -0.000508037 +-0.00104555 -0.00459179 -0.000508031 +-0.00104502 -0.00458685 0.000592222 +0.000160158 -0.00364672 0.00105695 +0.000154048 -0.00365315 0.00118163 +-0.000911891 -0.00350498 0.00118282 +-0.000916481 -0.00349721 0.00105734 +0.000153542 -0.00365216 -0.00106312 +0.000157595 -0.00365402 -0.00095638 +-0.00091666 -0.00350425 -0.000956687 +-0.000913262 -0.00350577 -0.00106288 +-0.000764728 -0.00242239 -0.000520097 +-0.000769019 -0.00241804 0.000655059 +0.000281364 -0.00256433 0.000655059 +0.000277877 -0.00256775 -0.000520089 +0.000280082 -0.00267065 0.000551041 +0.000280201 -0.00267002 -0.000452648 +-0.000796676 -0.00252113 0.000551047 +-0.000796676 -0.0025205 -0.000452645 +3.83854e-005 -0.00463931 -0.00046015 +-0.00103846 -0.00448975 -0.000460151 +2.11298e-005 -0.00473508 0.000592224 +3.93391e-005 -0.00463219 0.000546687 +-0.00103757 -0.00448263 0.000546686 +-0.00104502 -0.00458685 0.000592222 +-0.00028646 0.00185359 1.36475e-006 +-0.000164479 0.00266019 0.0061204 +-0.000222504 0.0025622 0.00611501 +0.000758469 0.00171915 1.3706e-006 +0.000833899 0.00253034 0.0061204 +0.000868946 0.00242314 0.00611501 +0.00101489 0.00378905 1.37268e-006 +-6.62804e-005 0.00392339 1.36905e-006 +0.00106832 0.00450054 0.0061204 +7.20322e-005 0.00462222 0.0061204 +0.00114757 0.00459278 0.00610559 +-1.83284e-005 0.00473976 0.00610872 +0.00140741 0.0026909 1.3692e-006 +0.00144747 0.00345494 0.00611874 +0.00155351 0.00344326 0.00611441 +-0.000706047 0.00295439 1.36901e-006 +-0.000674546 0.00371593 0.00611507 +-0.000550032 0.00370781 0.00612035 +-0.000793666 -0.00237599 -0.000255048 +-0.000796169 -0.00239566 0.000359037 +-0.000274986 0.00184825 0.000339233 +-0.000275016 0.00184825 -0.000235234 +0.000721812 0.00171721 -0.000254091 +0.000721842 0.00171722 0.000320377 +0.000200689 -0.0025267 0.000340185 +0.000203133 -0.00250705 -0.000273899 +-0.00104681 -0.0043239 0.000750622 +-0.00108081 -0.00460064 0.000608935 +-0.000205278 0.0025305 0.00611584 +-0.000206411 0.00251991 0.00590559 +0.000893772 0.00238837 0.00590652 +0.000895083 0.00239898 0.00611677 +1.94907e-005 -0.00473218 0.000609861 +5.3525e-005 -0.00445543 0.000751553 +numsurf 81 +SURF 0x30 +mat 0 +refs 4 +0 0.0395683 0.0632411 +1 0 0 +2 1 0.996048 +3 0.942446 1 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +3 0 0 +4 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +1 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +2 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 3 +8 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 3 +11 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +15 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +16 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0 0 +18 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +14 0 0 +17 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +17 0 0 +19 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +19 0 0 +14 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +13 0 0 +11 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +11 0 0 +12 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +12 0 0 +13 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +20 0 0 +21 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +21 0 0 +22 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +22 0 0 +20 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +23 0 0 +24 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +24 0 0 +25 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +25 0 0 +23 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +10 0 0 +9 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +9 0 0 +8 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +8 0 0 +10 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +27 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +32 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +36 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +41 0 0 +40 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +42 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +44 0 0 +42 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +39 0 0 +44 0 0 +45 0 0 +SURF 0x30 +mat 0 +refs 4 +34 0 0 +41 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +35 0 0 +43 0 0 +41 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +45 0 0 +43 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +38 0 0 +45 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +34 0 0 +37 0 0 +28 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +35 0 0 +34 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +36 0 0 +35 0 0 +46 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +37 0 0 +36 0 0 +47 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +46 0 0 +27 0 0 +48 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +47 0 0 +46 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +28 0 0 +47 0 0 +50 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +48 0 0 +51 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +49 0 0 +48 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +50 0 0 +49 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +51 0 0 +50 0 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +31 0 0 +32 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +30 0 0 +31 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +33 0 0 +30 0 0 +42 0 0 +SURF 0x30 +mat 0 +refs 4 +39 0 0 +32 0 0 +33 0 0 +44 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +67 0 0 +69 0 0 +61 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +69 0 0 +68 0 0 +63 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +68 0 0 +67 0 0 +59 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +52 0 0 +53 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +69 0 0 +53 0 0 +54 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0 0 +54 0 0 +52 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +55 0 0 +56 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +56 0 0 +57 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +57 0 0 +55 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +64 0 0 +65 0 0 +56 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +65 0 0 +66 0 0 +57 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +66 0 0 +64 0 0 +55 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +58 0 0 +60 0 0 +65 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +60 0 0 +62 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +62 0 0 +58 0 0 +64 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +59 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +61 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +63 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 0 +refs 3 +64 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 3 +67 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +73 0 0 +72 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +71 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +71 0 0 +70 0 0 +77 0 0 +76 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +73 0 0 +74 0 0 +77 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 1 +75 0.935484 1 +76 1 0 +77 0 0.013158 +SURF 0x30 +mat 0 +refs 4 +81 0 0 +80 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 0 +refs 4 +80 0 0 +79 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 0 +refs 4 +79 0 0 +78 0 0 +85 0 0 +84 0 0 +SURF 0x30 +mat 0 +refs 4 +78 0 0 +81 0 0 +82 0 0 +85 0 0 +SURF 0x30 +mat 0 +refs 4 +82 0.942446 1 +83 1 0.996048 +84 0 0 +85 0.0395683 0.0632411 +kids 0 +OBJECT poly +name "propshaft" +loc 0.0253595 0.186076 6.62082e-005 +crease 45.000000 +numvert 14 +-0.00568986 0.000698596 6.02449e-009 +0.000516415 -6.34044e-005 -3.62343e-009 +-0.0056898 0.000698596 0.000520329 +-0.00575304 0.000182182 0.000260167 +-0.00575304 0.000182182 -0.000260161 +-0.0056898 0.000698596 -0.000520318 +-0.00562638 0.00121504 -0.000260166 +-0.00562638 0.00121504 0.000260163 +0.000516534 -6.34491e-005 0.000520329 +0.000452876 -0.000579849 0.000260167 +0.000452936 -0.000579834 -0.000260155 +0.000516415 -6.34044e-005 -0.000520317 +0.000579774 0.000453025 -0.000260159 +0.000579715 0.000453025 0.000260166 +numsurf 18 +SURF 0x10 +mat 3 +refs 3 +0 0 0 +2 0 0 +7 0 0 +SURF 0x10 +mat 3 +refs 3 +0 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 3 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 3 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 3 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 3 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +13 0 0 +8 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +8 0 0 +9 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +9 0 0 +10 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +11 0 0 +12 0 0 +SURF 0x10 +mat 1 +refs 3 +1 0 0 +12 0 0 +13 0 0 +SURF 0x10 +mat 1 +refs 4 +13 -2.98023e-008 1 +7 -2.98023e-008 0 +2 0.166667 0 +8 0.166667 1 +SURF 0x10 +mat 1 +refs 4 +8 0.166667 1 +2 0.166667 0 +3 0.333333 0 +9 0.333333 1 +SURF 0x10 +mat 1 +refs 4 +9 0.333333 1 +3 0.333333 0 +4 0.5 0 +10 0.5 1 +SURF 0x10 +mat 1 +refs 4 +10 0.5 1 +4 0.5 0 +5 0.666667 0 +11 0.666667 1 +SURF 0x10 +mat 1 +refs 4 +11 0.666667 1 +5 0.666667 0 +6 0.833333 0 +12 0.833333 1 +SURF 0x10 +mat 1 +refs 4 +12 0.833333 1 +6 0.833333 0 +7 1 0 +13 1 1 +kids 0 +OBJECT poly +name "battryholder" +loc 0.116224 0.132986 -5.66499e-006 +crease 45.000000 +numvert 8 +0.209249 -0.049361 -0.0088213 +0.209233 -0.0494913 0.0090213 +0.215324 0.000121638 0.00823412 +0.215341 0.000251845 -0.00816532 +0.00305384 0.0248715 -0.00826532 +0.0030379 0.0247415 0.00813412 +-0.00305384 -0.0248715 0.0089213 +-0.00303787 -0.0247413 -0.0089213 +numsurf 5 +SURF 0x30 +mat 0 +refs 4 +3 0.0367647 1 +2 0.955882 0.997382 +1 1 0 +0 0 0.00261776 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +4 0 0 +3 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +6 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +5 0 0 +2 0 0 +3 0 0 +kids 0 +OBJECT poly +name "rudderservo" +loc 0.296283 0.0970293 0.00963206 +crease 45.000000 +numvert 32 +0.00107881 0.00864546 0.00417939 +-0.00382009 0.00451706 0.00417939 +-0.0148474 0.00590239 0.00417939 +-0.0155966 -0.000380889 0.00417939 +-0.00457042 -0.00181513 0.00417939 +-0.000727177 -0.00668812 0.00417939 +-0.00203854 -0.0170387 0.00417939 +0.00429931 -0.017817 0.00417939 +0.00560841 -0.00748414 0.00417939 +0.0106693 -0.00350593 0.00417939 +0.0214802 -0.00458714 0.00417939 +0.0222442 0.00170782 0.00417939 +0.0113397 0.00276008 0.00417939 +0.00739598 0.00777215 0.00417939 +0.00878632 0.0187662 0.00417939 +0.00241956 0.0193096 0.00417939 +0.00237006 0.0193422 -9.31323e-010 +0.00873673 0.0187986 1.86265e-009 +0.00734642 0.00780464 -1.86265e-009 +0.0112902 0.00279258 -9.31323e-010 +0.0221945 0.00174032 1.86265e-009 +0.0214307 -0.00455465 -9.31323e-010 +0.0106198 -0.00347347 -2.79397e-009 +0.00555879 -0.00745165 9.31323e-010 +0.00424966 -0.0177843 1.86265e-009 +-0.00208807 -0.0170062 9.31323e-010 +-0.000776827 -0.00665562 0 +-0.00462005 -0.00178263 0 +-0.0156462 -0.000348419 -1.86265e-009 +-0.014897 0.00593488 0 +-0.00386965 0.00454956 -9.31323e-010 +0.00102919 0.00867794 0 +numsurf 17 +SURF 0x30 +mat 1 +refs 16 +15 0.536145 0.99187 +14 0.698795 1 +13 0.692771 0.699187 +12 0.753012 0.634146 +11 1 0.634146 +10 0.993976 0.463415 +9 0.753012 0.471545 +8 0.668675 0.382114 +7 0.662651 0 +6 0.5 0 +5 0.506024 0.365854 +4 0.36747 0.544715 +3 0.0180724 0.528455 +2 0 0.788618 +1 0.385542 0.772358 +0 0.524096 0.878049 +SURF 0x30 +mat 1 +refs 4 +31 0 0 +16 0 0 +15 0 0 +0 0 0 +SURF 0x30 +mat 1 +refs 4 +30 0 0 +31 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +30 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 1 +refs 4 +28 0 0 +29 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 1 +refs 4 +27 0 0 +28 0 0 +3 0 0 +4 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +27 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +26 0 0 +5 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +25 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +24 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +22 0 0 +23 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +22 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +21 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +20 0 0 +11 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +18 0 0 +19 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +17 0 0 +18 0 0 +13 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +17 0 0 +14 0 0 +15 0 0 +kids 0 +OBJECT poly +name "elevatorrod" +loc 0.367636 0.106706 0.0147168 +crease 45.000000 +numvert 32 +0.653897 -0.0316612 0.000775432 +0.653839 -0.032143 0.000537707 +0.653839 -0.032143 6.22785e-005 +0.653897 -0.0316612 -0.000175444 +0.653956 -0.0311795 0.000537714 +0.653956 -0.0311795 6.22859e-005 +0.201436 -0.0236115 0.000675436 +0.201758 -0.0241569 0.000437723 +0.201758 -0.0241569 -3.77279e-005 +0.201436 -0.0236115 -0.000275443 +0.201031 -0.0231911 0.00043772 +0.201031 -0.0231911 -3.77204e-005 +0.199036 -0.0268774 0.000575441 +0.198938 -0.0275402 0.000337716 +0.198938 -0.0275402 -0.000137721 +0.199036 -0.0268773 -0.000375438 +0.199148 -0.0260978 0.000337723 +0.199148 -0.0260978 -0.000137726 +-0.0695493 -0.0243165 -1.86265e-009 +-0.0695493 -0.0243165 0.000475436 +-0.0696084 -0.0247982 0.000237718 +-0.0696084 -0.0247982 -0.000237725 +-0.0695493 -0.0243165 -0.00047544 +-0.0694902 -0.0238349 -0.000237718 +-0.0694902 -0.0238349 0.00023772 +0.197345 -0.0231204 0.000475436 +0.196892 -0.0235238 0.000237719 +0.196892 -0.0235238 -0.000237718 +0.197345 -0.0231204 -0.000475442 +0.19788 -0.0227195 -0.000237724 +0.19788 -0.0227195 0.000237716 +0.653897 -0.0316612 0.000299982 +numsurf 36 +SURF 0x10 +mat 0 +refs 3 +31 0 0 +4 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +31 0 0 +0 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +31 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 3 +31 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 3 +31 0 0 +3 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 3 +31 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +6 0 0 +0 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +11 0 0 +5 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +10 0 0 +4 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +12 0 0 +6 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +17 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +16 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 4 +30 0 0 +25 0 0 +12 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +28 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +29 0 0 +17 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +30 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 3 +18 0 0 +19 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 3 +18 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 3 +18 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 3 +18 0 0 +22 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 3 +18 0 0 +23 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 3 +18 0 0 +24 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +30 -2.98023e-008 1 +24 -2.98023e-008 0 +19 0.166667 0 +25 0.166667 1 +SURF 0x10 +mat 0 +refs 4 +25 0.166667 1 +19 0.166667 0 +20 0.333333 0 +26 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +26 0.333333 1 +20 0.333333 0 +21 0.5 0 +27 0.5 1 +SURF 0x10 +mat 0 +refs 4 +27 0.5 1 +21 0.5 0 +22 0.666667 0 +28 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +28 0.666667 1 +22 0.666667 0 +23 0.833333 0 +29 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +29 0.833333 1 +23 0.833333 0 +24 1 0 +30 1 1 +kids 0 +OBJECT poly +name "elevatorattach" +loc 1.02477 0.0532841 -0.0119021 +crease 45.000000 +numvert 8 +-0.00312328 -0.00320326 -0.000229219 +0.00211 -0.00384586 -0.000229225 +0.000926256 0.00350894 -0.000229221 +-0.00224233 0.00389798 -0.000229232 +-0.00224042 0.00387982 -0.00107796 +0.00092268 0.00349142 -0.00107794 +0.00211382 -0.00383722 -0.00107795 +-0.00311852 -0.00319476 -0.00107795 +numsurf 5 +SURF 0x30 +mat 0 +refs 4 +3 0 1 +2 0.620686 1 +1 1 0 +0 0.0344692 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +4 0 0 +3 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +6 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +5 0 0 +2 0 0 +3 0 0 +kids 0 +OBJECT poly +name "rodsmount" +loc 0.799038 0.076267 0.000318563 +crease 45.000000 +numvert 88 +0.00112331 -0.00130831 0.000235766 +0.00143957 0.00238902 0.0143782 +0.00147957 0.00251363 0.0142997 +0.0011822 -0.00107279 0.000385048 +-0.00114942 -0.00080175 0.000388271 +-0.0011937 -0.00103953 0.000264066 +-0.000834048 0.00278609 0.0143066 +-0.000873208 0.00266685 0.0143672 +0.00147784 0.00249035 -0.0138664 +0.00113451 -0.00132199 -0.000856119 +0.00121713 -0.000985093 -0.00104838 +0.00147086 0.00262164 -0.0137785 +-0.000847697 0.00288381 -0.0137823 +-0.000854611 0.00276948 -0.0138595 +-0.00120378 -0.00074055 -0.00100751 +-0.00124651 -0.00103687 -0.000854977 +0.00153089 0.00367174 -0.0138551 +0.00120908 0.000907131 -0.000867168 +0.00115377 0.000549085 -0.00105763 +0.00155425 0.00351433 -0.0137506 +-0.000740409 0.00379144 -0.0137227 +-0.000799894 0.00395107 -0.0138398 +-0.00102085 0.000842892 -0.00102398 +-0.00114018 0.00118262 -0.000861116 +0.00121331 0.000917591 0.00026952 +0.00147021 0.00357274 0.0143629 +0.00147581 0.00342168 0.0142571 +0.0011729 0.000648364 0.00041733 +-0.00122452 0.000926264 0.000418334 +-0.00114167 0.0011941 0.000282541 +-0.000846684 0.00370146 0.0142853 +-0.00082314 0.00385056 0.0143696 +0.00138485 0.000756912 0.000192964 +-0.00099808 0.00103596 0.000204671 +-0.00111336 5.22286e-005 0.000836505 +-0.00111783 5.99921e-005 0.000710909 +0.00126499 -0.00021904 0.000699204 +0.00125879 -0.000225514 0.000824787 +-0.00123894 -0.000925548 0.000200321 +0.00114393 -0.00120459 0.000188604 +-0.00123972 -0.000932671 -0.000806523 +0.00114298 -0.0012117 -0.000818231 +-0.00111336 5.18113e-005 -0.00140828 +-0.00111872 5.28842e-005 -0.00130275 +0.0012641 -0.000226162 -0.00131448 +0.00125873 -0.000225902 -0.00142001 +-0.000997901 0.0010366 -0.00079902 +0.00138497 0.000757568 -0.000810728 +0.00152647 0.00366531 -0.0144628 +-0.000799954 0.0039453 -0.0144427 +0.00162089 0.00358602 -0.0144322 +0.00162077 0.00358567 -0.0138988 +-0.000724018 0.00386824 -0.0144121 +-0.000723898 0.00386789 -0.0138787 +0.00155377 0.00306336 -0.014756 +-0.000785172 0.00334488 -0.0147359 +0.00155663 0.00306321 -0.0146999 +-0.000788033 0.00334547 -0.0146798 +0.0014829 0.00248591 -0.0144616 +-0.000856102 0.00276745 -0.0144415 +0.0014925 0.00253943 -0.0144362 +-0.000852346 0.00282169 -0.0144161 +0.00149274 0.00254323 -0.0139011 +-0.000851929 0.00282548 -0.013881 +0.00155389 0.00306357 -0.013563 +-0.000785172 0.00334509 -0.0135429 +0.00155723 0.00306698 -0.0136297 +-0.000787556 0.00334924 -0.0136096 +-0.000824332 0.00385209 0.0149705 +0.00147408 0.00357877 0.0149694 +0.00156456 0.00349285 0.0149298 +-0.000748038 0.0037679 0.0149308 +-0.000809312 0.00324509 0.0152666 +-0.000811815 0.00324922 0.0151999 +0.00150084 0.00297419 0.0151988 +0.00149757 0.00297074 0.0152655 +-0.000879884 0.00267008 0.0149527 +-0.00087589 0.00272546 0.0149285 +0.00143653 0.00245044 0.0149274 +0.00142705 0.00239576 0.0149516 +-0.000876665 0.00272167 0.0143935 +0.00143611 0.00244665 0.0143924 +-0.000809193 0.00324486 0.0140736 +-0.000812113 0.00324544 0.0141297 +0.00150043 0.00297039 0.0141286 +0.00149757 0.00297054 0.0140726 +-0.000747979 0.00376824 0.0143974 +0.00156456 0.00349318 0.0143964 +numsurf 95 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +1 1 0.8 +2 0.989664 1 +3 0.0103359 0.233333 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +5 0 0 +0 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +4 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +6 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +7 0 0 +1 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0.916667 +9 1 0 +10 0.977716 0.277778 +11 0.00835654 1 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +13 0 0 +8 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +12 0 0 +11 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +14 0 0 +10 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 1 +17 1 0.6 +18 0.980282 0 +19 0.0056338 0.733333 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +21 0 0 +16 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +20 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +22 0 0 +18 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +23 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 1 +25 1 0.666666 +26 0.984536 0 +27 0.0128866 0.555555 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +29 0 0 +24 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +28 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +30 0 0 +26 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +31 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0.0084035 1 +24 0.991597 1 +32 1 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +34 0 0 +35 0 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +35 0 0 +36 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +36 0 0 +37 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +37 0 0 +34 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +34 0 0 +5 0 0 +38 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +35 0 0 +38 0 0 +39 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +39 0 0 +0 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +0 0 0 +5 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +15 0 0 +40 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +39 0 0 +41 0 0 +9 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +9 0 0 +15 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +42 0 0 +43 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +43 0 0 +44 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +41 0 0 +44 0 0 +45 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +45 0 0 +42 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +23 0 0 +46 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +46 0 0 +47 0 0 +44 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +47 0 0 +17 0 0 +45 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +17 0 0 +23 0 0 +42 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +29 0 0 +33 0 0 +46 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +33 0 0 +32 0 0 +47 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +32 0 0 +24 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +24 0 0 +29 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +48 0 0 +16 0 0 +21 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +51 0 0 +16 0 0 +48 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +53 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +21 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +51 0 0 +16 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +48 0 0 +49 0 0 +55 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +50 0 0 +48 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +52 0 0 +50 0 0 +56 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +49 0 0 +52 0 0 +57 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +54 0 0 +55 0 0 +59 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +56 0 0 +54 0 0 +58 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +57 0 0 +56 0 0 +60 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +55 0 0 +57 0 0 +61 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +58 0 0 +59 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +60 0 0 +58 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +61 0 0 +60 0 0 +62 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +59 0 0 +61 0 0 +63 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +8 0 0 +13 0 0 +65 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +62 0 0 +8 0 0 +64 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +63 0 0 +62 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +13 0 0 +63 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +64 0 0 +65 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +66 0 0 +64 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +67 0 0 +66 0 0 +51 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +65 0 0 +67 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0.0084035 1 +69 0.991597 1 +70 1 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0 0 +72 0 0 +73 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +71 0 0 +73 0 0 +74 0 0 +70 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +74 0 0 +75 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +69 0 0 +75 0 0 +72 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +76 0 0 +77 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +73 0 0 +77 0 0 +78 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 0 +78 0 0 +79 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +75 0 0 +79 0 0 +76 0 0 +72 0 0 +SURF 0x30 +mat 0 +refs 4 +76 0 0 +7 0 0 +80 0 0 +77 0 0 +SURF 0x30 +mat 0 +refs 4 +77 0 0 +80 0 0 +81 0 0 +78 0 0 +SURF 0x30 +mat 0 +refs 4 +78 0 0 +81 0 0 +1 0 0 +79 0 0 +SURF 0x30 +mat 0 +refs 4 +79 0 0 +1 0 0 +7 0 0 +76 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +82 0 0 +83 0 0 +80 0 0 +SURF 0x30 +mat 0 +refs 4 +80 0 0 +83 0 0 +84 0 0 +81 0 0 +SURF 0x30 +mat 0 +refs 4 +81 0 0 +84 0 0 +85 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +85 0 0 +82 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +82 0 0 +31 0 0 +86 0 0 +83 0 0 +SURF 0x30 +mat 0 +refs 4 +83 0 0 +86 0 0 +87 0 0 +84 0 0 +SURF 0x30 +mat 0 +refs 4 +84 0 0 +87 0 0 +25 0 0 +85 0 0 +SURF 0x30 +mat 0 +refs 4 +85 0 0 +25 0 0 +31 0 0 +82 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +68 0 0 +71 0 0 +86 0 0 +SURF 0x30 +mat 0 +refs 4 +86 0 0 +71 0 0 +70 0 0 +87 0 0 +SURF 0x30 +mat 0 +refs 4 +87 0 0 +70 0 0 +69 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +69 0 0 +68 0 0 +31 0 0 +kids 0 +OBJECT poly +name "rudderattach" +loc 1.02286 0.0718108 0.00859686 +crease 45.000000 +numvert 8 +0.00540423 0.00143141 -0.00623808 +0.0022366 0.00182035 0.00854447 +-0.0044837 0.00264546 0.00854449 +-0.0044539 0.00264181 -0.00624192 +-0.00469732 0.000576705 -0.00623261 +-0.00472665 0.000580356 0.00854275 +0.00199342 -0.000244744 0.00854275 +0.00512457 -0.000629224 -0.0062398 +numsurf 5 +SURF 0x30 +mat 0 +refs 4 +3 0.0588131 0.954545 +2 0 0 +1 0.705879 0 +0 1 1 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +4 0 0 +3 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +6 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +5 0 0 +2 0 0 +3 0 0 +kids 0 +OBJECT poly +name "tailskid" +loc 0.804985 0.0710177 0.000555617 +crease 45.000000 +numvert 44 +0.178031 -0.0297174 0.000986358 +0.177732 -0.0292172 0.00074318 +0.177732 -0.0292171 0.000256814 +0.178031 -0.0297174 1.36199e-005 +0.178237 -0.0302513 0.000743183 +0.178237 -0.0302513 0.000256811 +0.196103 -0.0298413 0.000886361 +0.196438 -0.0294352 0.000643184 +0.196438 -0.0294352 0.000156807 +0.196103 -0.0298413 -8.63757e-005 +0.195592 -0.030308 0.000643179 +0.195592 -0.030308 0.000156804 +0.204716 -0.0498237 0.000786359 +0.204993 -0.0499049 0.000543181 +0.204993 -0.0499049 5.68061e-005 +0.204716 -0.0498237 -0.000186378 +0.204427 -0.0498386 0.000543191 +0.204427 -0.0498386 5.68146e-005 +0.19492 -0.0675552 0.000686366 +0.19507 -0.067852 0.00044318 +0.19507 -0.067852 -4.31926e-005 +0.19492 -0.0675552 -0.000286372 +0.194751 -0.0672328 0.000443186 +0.194751 -0.0672328 -4.31979e-005 +0.176664 -0.0673146 0.000586363 +0.176361 -0.0676951 0.00034317 +0.176362 -0.0676952 -0.000143192 +0.176664 -0.0673146 -0.000386374 +0.176997 -0.0668681 0.000343187 +0.176997 -0.0668681 -0.000143197 +-0.00708878 0.00345882 -0.000518796 +-0.00708878 0.00345884 -3.24344e-005 +-0.00714427 0.00300827 -0.000275613 +-0.00714427 0.00300827 -0.00076198 +-0.00708878 0.00345884 -0.00100517 +-0.00703347 0.00390939 -0.000761984 +-0.00703347 0.00390939 -0.000275616 +-0.00484771 0.0031485 0.000486367 +-0.00490105 0.00271414 0.000243187 +-0.00490105 0.00271414 -0.000243196 +-0.00484771 0.00314853 -0.000486371 +-0.00479436 0.00358289 -0.00024319 +-0.00479436 0.00358289 0.000243182 +0.178031 -0.0297174 0.000499992 +numsurf 48 +SURF 0x10 +mat 0 +refs 3 +43 0 0 +4 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 3 +43 0 0 +0 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 3 +43 0 0 +1 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 3 +43 0 0 +2 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 3 +43 0 0 +3 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 3 +43 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +10 0 0 +6 0 0 +0 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 4 +6 0 0 +7 0 0 +1 0 0 +0 0 0 +SURF 0x10 +mat 0 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 0 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 4 +9 0 0 +11 0 0 +5 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 4 +11 0 0 +10 0 0 +4 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 4 +16 0 0 +12 0 0 +6 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 4 +12 0 0 +13 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 4 +13 0 0 +14 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 4 +14 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 4 +15 0 0 +17 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 4 +17 0 0 +16 0 0 +10 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 4 +22 0 0 +18 0 0 +12 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 4 +18 0 0 +19 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 4 +19 0 0 +20 0 0 +14 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 4 +20 0 0 +21 0 0 +15 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 4 +21 0 0 +23 0 0 +17 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 4 +23 0 0 +22 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 4 +28 0 0 +24 0 0 +18 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 4 +24 0 0 +25 0 0 +19 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 4 +25 0 0 +26 0 0 +20 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 4 +26 0 0 +27 0 0 +21 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 4 +27 0 0 +29 0 0 +23 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 4 +29 0 0 +28 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 4 +42 0 0 +37 0 0 +24 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 4 +37 0 0 +38 0 0 +25 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 4 +38 0 0 +39 0 0 +26 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +39 0 0 +40 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 4 +40 0 0 +41 0 0 +29 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 4 +41 0 0 +42 0 0 +28 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 3 +30 0 0 +31 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 3 +30 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 3 +30 0 0 +33 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 3 +30 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 3 +30 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 3 +30 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 4 +42 -2.98023e-008 1 +36 -2.98023e-008 0 +31 0.166667 0 +37 0.166667 1 +SURF 0x10 +mat 0 +refs 4 +37 0.166667 1 +31 0.166667 0 +32 0.333333 0 +38 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +38 0.333333 1 +32 0.333333 0 +33 0.5 0 +39 0.5 1 +SURF 0x10 +mat 0 +refs 4 +39 0.5 1 +33 0.5 0 +34 0.666667 0 +40 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +40 0.666667 1 +34 0.666667 0 +35 0.833333 0 +41 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +41 0.833333 1 +35 0.833333 0 +36 1 0 +42 1 1 +kids 0 +OBJECT poly +name "fwdengmount" +loc 0.0524472 0.184315 -1.53899e-005 +crease 45.000000 +numvert 76 +0.000497758 0.0157136 -0.00672566 +0.000710785 0.0174474 7.56414e-005 +0.000649214 0.0169462 7.56432e-005 +0.000444353 0.0152797 -0.00647319 +0.00308973 0.0153954 -0.00672567 +0.00330257 0.0171292 7.56468e-005 +0.00303638 0.0149615 -0.0064732 +0.003241 0.0166279 7.56413e-005 +0.003241 0.0166279 7.56486e-005 +0.00330257 0.0171292 7.56533e-005 +0.000710726 0.0174474 7.56514e-005 +0.000649214 0.0169462 7.56505e-005 +-6.28829e-005 0.0111472 -0.0115533 +-9.35793e-005 0.0108967 -0.011116 +0.00252908 0.0108289 -0.0115533 +0.00249827 0.0105785 -0.011116 +-0.000854909 0.00469695 -0.0134135 +-0.000854909 0.00469692 -0.0129086 +0.001737 0.00437872 -0.0134135 +0.001737 0.00437872 -0.0129086 +-0.00163764 -0.00167824 -0.0115911 +-0.00160694 -0.00142772 -0.0111538 +0.00095439 -0.00199649 -0.0115911 +0.000985026 -0.00174594 -0.0111538 +-0.00220656 -0.00626516 -0.00667995 +-0.00214493 -0.0058106 -0.00639754 +0.000529885 -0.00660118 -0.00667996 +0.000446856 -0.00612888 -0.00639755 +-0.00241131 -0.00797842 6.30098e-009 +-0.00234967 -0.00747721 2.16824e-009 +0.000180781 -0.00829668 6.27188e-009 +0.000242233 -0.00779547 2.13913e-009 +-0.00222212 -0.00628608 0.00656393 +-0.00214493 -0.0058106 0.00632196 +0.000562549 -0.00662799 0.00656392 +0.000446856 -0.00612885 0.00632196 +-0.00163305 -0.00164074 0.0115533 +-0.00160235 -0.00139019 0.011116 +0.0009588 -0.00195897 0.0115533 +0.000989616 -0.0017084 0.011116 +-0.000845611 0.00477204 0.0134135 +-0.000845611 0.00477205 0.0129086 +0.0017463 0.00445378 0.0134135 +0.00174618 0.00445381 0.0129086 +-6.75321e-005 0.0111096 0.0116289 +-9.82285e-005 0.0108592 0.0111916 +0.0025245 0.0107914 0.0116289 +0.00249362 0.0105409 0.0111916 +0.000493169 0.0156761 0.00665002 +0.000439823 0.0152421 0.00639756 +0.00308514 0.0153578 0.00665001 +0.00303185 0.0149238 0.00639755 +0.00011003 -0.00799675 -0.00106204 +0.000115335 -0.00800116 0.00110345 +-0.00231296 -0.00770295 0.00110344 +-0.00231034 -0.00769956 -0.00106204 +-0.000599563 -0.0153722 -0.000465071 +-0.000599742 -0.0153728 0.000538623 +-0.00305426 -0.0150708 -0.000465073 +-0.00305438 -0.0150715 0.00053862 +-0.000725806 -0.0163556 -0.00107434 +-0.00316983 -0.0160556 -0.00107433 +-0.000720382 -0.0163559 -0.000968805 +-0.0031752 -0.0160546 -0.000968807 +-0.000859201 -0.0174422 -0.000520461 +-0.00330311 -0.0171422 -0.000520458 +-0.000841379 -0.0173415 -0.000472571 +-0.00329602 -0.01704 -0.00047257 +-0.000858665 -0.0174372 0.00057981 +-0.00330269 -0.0171371 0.000579806 +-0.000840604 -0.0173343 0.000534269 +-0.0032953 -0.017033 0.000534273 +-0.000725925 -0.0163552 0.00117046 +-0.00316983 -0.0160551 0.00117046 +-0.000719547 -0.0163487 0.00104486 +-0.00317425 -0.0160474 0.00104486 +numsurf 75 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +5 0 0 +1 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +2 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +0 0 0 +3 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +4 0 0 +0 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +6 0 0 +4 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +3 0 0 +6 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +12 0 0 +13 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +14 0 0 +12 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0 0 +15 0 0 +14 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +13 0 0 +15 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +16 0 0 +17 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +18 0 0 +16 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +19 0 0 +18 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +17 0 0 +19 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +20 0 0 +21 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +22 0 0 +20 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +23 0 0 +22 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +21 0 0 +23 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +24 0 0 +25 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +26 0 0 +24 0 0 +28 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +27 0 0 +26 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +25 0 0 +27 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +28 0 0 +29 0 0 +33 0 0 +SURF 0x30 +mat 0 +refs 4 +34 0 0 +30 0 0 +28 0 0 +32 0 0 +SURF 0x30 +mat 0 +refs 4 +35 0 0 +31 0 0 +30 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +29 0 0 +31 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +32 0 0 +33 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +34 0 0 +32 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +39 0 0 +35 0 0 +34 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +33 0 0 +35 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +36 0 0 +37 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +38 0 0 +36 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +39 0 0 +38 0 0 +42 0 0 +SURF 0x30 +mat 0 +refs 4 +41 0 0 +37 0 0 +39 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +40 0 0 +41 0 0 +45 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +42 0 0 +40 0 0 +44 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +43 0 0 +42 0 0 +46 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +41 0 0 +43 0 0 +47 0 0 +SURF 0x30 +mat 0 +refs 4 +48 0 0 +44 0 0 +45 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +46 0 0 +44 0 0 +48 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +47 0 0 +46 0 0 +50 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +45 0 0 +47 0 0 +51 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +48 0 0 +49 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +50 0 0 +48 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +51 0 0 +50 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +49 0 0 +51 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +1 0 1 +5 1 1 +7 1 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +53 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +57 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +59 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +54 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +57 0 0 +53 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +52 0 0 +55 0 0 +61 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +56 0 0 +52 0 0 +60 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +58 0 0 +56 0 0 +62 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +55 0 0 +58 0 0 +63 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +60 0 0 +61 0 0 +65 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +62 0 0 +60 0 0 +64 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +63 0 0 +62 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +61 0 0 +63 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0 0 +64 0 0 +65 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +66 0 0 +64 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +71 0 0 +67 0 0 +66 0 0 +70 0 0 +SURF 0x30 +mat 0 +refs 4 +69 0 0 +65 0 0 +67 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +68 0 0 +69 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 0 +70 0 0 +68 0 0 +72 0 0 +SURF 0x30 +mat 0 +refs 4 +75 0 0 +71 0 0 +70 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +73 0 0 +69 0 0 +71 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +72 0 0 +73 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +74 0 0 +72 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +75 0 0 +74 0 0 +57 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +73 0 0 +75 0 0 +59 0 0 +kids 0 +OBJECT poly +name "aftengmount" +loc 0.0650347 0.18277 -1.53793e-005 +crease 45.000000 +numvert 76 +0.00011003 -0.00799678 -0.00106204 +0.000115514 -0.00800115 0.00110343 +-0.00231278 -0.00770299 0.00110344 +-0.00231028 -0.00769956 -0.00106204 +-0.000599325 -0.0153722 -0.000465075 +-0.000599384 -0.0153728 0.000538615 +-0.00305408 -0.0150708 -0.000465075 +-0.0030542 -0.0150715 0.000538616 +-0.000725746 -0.0163556 -0.00107435 +-0.00316966 -0.0160556 -0.00107434 +-0.000720382 -0.0163559 -0.00096882 +-0.0031749 -0.0160546 -0.000968819 +-0.000858903 -0.0174422 -0.000520466 +-0.00330311 -0.0171421 -0.000520467 +-0.00084132 -0.0173415 -0.00047258 +-0.00329608 -0.01704 -0.000472579 +-0.000858486 -0.0174372 0.000579796 +-0.00330245 -0.0171372 0.0005798 +-0.000840425 -0.0173343 0.000534262 +-0.00329512 -0.017033 0.000534257 +-0.000725687 -0.0163553 0.00117045 +-0.0031696 -0.0160552 0.00117045 +-0.000719488 -0.0163488 0.00104485 +-0.00317395 -0.0160474 0.00104485 +0.000497878 0.0157136 -0.00672567 +0.000710845 0.0174474 7.5634e-005 +0.000649273 0.0169462 7.56378e-005 +0.00044471 0.0152797 -0.00647321 +0.00308979 0.0153953 -0.00672567 +0.00330275 0.0171291 7.56358e-005 +0.00303659 0.0149615 -0.0064732 +0.00324124 0.0166279 7.56341e-005 +0.00324124 0.0166279 7.56341e-005 +0.00330275 0.0171291 7.56432e-005 +0.000710845 0.0174474 7.5634e-005 +0.000649273 0.0169462 7.56378e-005 +-6.27637e-005 0.0111473 -0.0115533 +-9.35197e-005 0.0108966 -0.011116 +0.00252914 0.0108289 -0.0115533 +0.00249869 0.0105783 -0.011116 +-0.00085479 0.00469695 -0.0134135 +-0.00085485 0.00469695 -0.0129086 +0.00173712 0.00437872 -0.0134135 +0.00173724 0.00437869 -0.0129086 +-0.00163752 -0.00167826 -0.0115911 +-0.00160682 -0.00142764 -0.0111538 +0.000954449 -0.00199649 -0.0115911 +0.000985384 -0.00174595 -0.0111538 +-0.00220633 -0.00626524 -0.00667997 +-0.00214487 -0.00581062 -0.00639755 +0.000530243 -0.0066012 -0.00667996 +0.000447094 -0.00612886 -0.00639756 +-0.00241101 -0.00797845 -8.07631e-009 +-0.0023495 -0.00747721 -6.0827e-009 +0.00018096 -0.00829671 -4.43833e-009 +0.000242472 -0.00779548 -5.19503e-009 +-0.00222182 -0.00628607 0.00656392 +-0.00214481 -0.0058106 0.00632194 +0.000562668 -0.00662799 0.00656392 +0.000447094 -0.00612886 0.00632195 +-0.00163281 -0.00164069 0.0115533 +-0.00160187 -0.00139019 0.011116 +0.000959039 -0.00195898 0.0115533 +0.000989854 -0.0017084 0.011116 +-0.000845551 0.00477202 0.0134135 +-0.000845492 0.00477199 0.0129086 +0.00174648 0.00445376 0.0134135 +0.00174648 0.00445376 0.0129086 +-6.74129e-005 0.0111096 0.0116289 +-9.80496e-005 0.0108591 0.0111916 +0.00252467 0.0107913 0.0116289 +0.00249398 0.0105409 0.0111916 +0.000493228 0.0156761 0.00665 +0.000440001 0.015242 0.00639754 +0.00308526 0.0153578 0.00665 +0.00303218 0.0149238 0.00639754 +numsurf 75 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +5 0 0 +1 0 0 +0 0 0 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +2 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +5 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +0 0 0 +3 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +4 0 0 +0 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +6 0 0 +4 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +3 0 0 +6 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +12 0 0 +8 0 0 +9 0 0 +13 0 0 +SURF 0x30 +mat 0 +refs 4 +14 0 0 +10 0 0 +8 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +15 0 0 +11 0 0 +10 0 0 +14 0 0 +SURF 0x30 +mat 0 +refs 4 +13 0 0 +9 0 0 +11 0 0 +15 0 0 +SURF 0x30 +mat 0 +refs 4 +16 0 0 +12 0 0 +13 0 0 +17 0 0 +SURF 0x30 +mat 0 +refs 4 +18 0 0 +14 0 0 +12 0 0 +16 0 0 +SURF 0x30 +mat 0 +refs 4 +19 0 0 +15 0 0 +14 0 0 +18 0 0 +SURF 0x30 +mat 0 +refs 4 +17 0 0 +13 0 0 +15 0 0 +19 0 0 +SURF 0x30 +mat 0 +refs 4 +20 0 0 +16 0 0 +17 0 0 +21 0 0 +SURF 0x30 +mat 0 +refs 4 +22 0 0 +18 0 0 +16 0 0 +20 0 0 +SURF 0x30 +mat 0 +refs 4 +23 0 0 +19 0 0 +18 0 0 +22 0 0 +SURF 0x30 +mat 0 +refs 4 +21 0 0 +17 0 0 +19 0 0 +23 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +20 0 0 +21 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +22 0 0 +20 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +23 0 0 +22 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +21 0 0 +23 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +24 0 0 +25 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 0 +refs 4 +28 0 0 +29 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 0 +refs 4 +30 0 0 +31 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 0 +refs 4 +27 0 0 +26 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +24 0 0 +27 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +28 0 0 +24 0 0 +36 0 0 +SURF 0x30 +mat 0 +refs 4 +39 0 0 +30 0 0 +28 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +37 0 0 +27 0 0 +30 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +36 0 0 +37 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +38 0 0 +36 0 0 +40 0 0 +SURF 0x30 +mat 0 +refs 4 +43 0 0 +39 0 0 +38 0 0 +42 0 0 +SURF 0x30 +mat 0 +refs 4 +41 0 0 +37 0 0 +39 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 4 +44 0 0 +40 0 0 +41 0 0 +45 0 0 +SURF 0x30 +mat 0 +refs 4 +46 0 0 +42 0 0 +40 0 0 +44 0 0 +SURF 0x30 +mat 0 +refs 4 +47 0 0 +43 0 0 +42 0 0 +46 0 0 +SURF 0x30 +mat 0 +refs 4 +45 0 0 +41 0 0 +43 0 0 +47 0 0 +SURF 0x30 +mat 0 +refs 4 +48 0 0 +44 0 0 +45 0 0 +49 0 0 +SURF 0x30 +mat 0 +refs 4 +50 0 0 +46 0 0 +44 0 0 +48 0 0 +SURF 0x30 +mat 0 +refs 4 +51 0 0 +47 0 0 +46 0 0 +50 0 0 +SURF 0x30 +mat 0 +refs 4 +49 0 0 +45 0 0 +47 0 0 +51 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +48 0 0 +49 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +50 0 0 +48 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +51 0 0 +50 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +49 0 0 +51 0 0 +55 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +52 0 0 +53 0 0 +57 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +54 0 0 +52 0 0 +56 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +55 0 0 +54 0 0 +58 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +53 0 0 +55 0 0 +59 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +56 0 0 +57 0 0 +61 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +58 0 0 +56 0 0 +60 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +59 0 0 +58 0 0 +62 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +57 0 0 +59 0 0 +63 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +60 0 0 +61 0 0 +65 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +62 0 0 +60 0 0 +64 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +63 0 0 +62 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +61 0 0 +63 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0 0 +64 0 0 +65 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +66 0 0 +64 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +71 0 0 +67 0 0 +66 0 0 +70 0 0 +SURF 0x30 +mat 0 +refs 4 +69 0 0 +65 0 0 +67 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +68 0 0 +69 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 0 +70 0 0 +68 0 0 +72 0 0 +SURF 0x30 +mat 0 +refs 4 +75 0 0 +71 0 0 +70 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +73 0 0 +69 0 0 +71 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +25 0 0 +72 0 0 +73 0 0 +26 0 0 +SURF 0x30 +mat 0 +refs 4 +29 0 0 +74 0 0 +72 0 0 +25 0 0 +SURF 0x30 +mat 0 +refs 4 +31 0 0 +75 0 0 +74 0 0 +29 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +73 0 0 +75 0 0 +31 0 0 +SURF 0x30 +mat 0 +refs 4 +26 0 0 +25 0 1 +29 1 1 +31 1 0 +kids 0 +OBJECT poly +name "gearbox" +loc 0.0348243 0.186427 6.02692e-006 +crease 45.000000 +numvert 76 +-0.00892818 -0.000422746 5.97653e-005 +-8.79765e-005 -0.00150818 5.97696e-005 +-0.00892824 -0.000422761 0.0134788 +-0.00970399 -0.00674109 0.011681 +-0.010258 -0.0113566 0.00665868 +-0.0104798 -0.0130594 5.97691e-005 +-0.01024 -0.0113941 -0.0066172 +-0.00970399 -0.00674109 -0.0115614 +-0.00892812 -0.000422731 -0.0133592 +-0.00815231 0.0058956 -0.0115614 +-0.00758433 0.0105209 -0.00664971 +-0.00737649 0.012214 5.97706e-005 +-0.00758433 0.0105209 0.00676924 +-0.00815225 0.00589561 0.011681 +-8.79765e-005 -0.00150818 0.0134788 +-0.000863731 -0.00782654 0.011681 +-0.00157726 -0.0124867 0.00665868 +-0.00163949 -0.0141449 5.97681e-005 +-0.00158703 -0.0125167 -0.0066172 +-0.000863731 -0.00782651 -0.0115614 +-8.79765e-005 -0.00150818 -0.0133592 +0.000687838 0.00481012 -0.0115614 +0.00125587 0.00943547 -0.00664971 +0.00146371 0.0111285 5.97698e-005 +0.00125587 0.00943545 0.00676925 +0.000687897 0.00481014 0.011681 +0.0100895 0.00983271 0.0115614 +0.0106573 0.0144581 0.00664971 +0.0108651 0.0161512 -5.97681e-005 +0.0106573 0.0144581 -0.00676926 +0.0100895 0.00983271 -0.011681 +0.00931352 0.00351441 -0.0134788 +0.00853789 -0.00280394 -0.011681 +0.00796998 -0.00742932 -0.00676926 +0.00776184 -0.00912224 -5.97796e-005 +0.00796998 -0.00742932 0.00664971 +0.00853789 -0.00280394 0.0115614 +0.00931346 0.00351444 0.0133592 +0.00124913 0.0109182 0.0115614 +0.00181723 0.0155436 0.0066497 +0.00202507 0.0172365 -5.97785e-005 +0.00181723 0.0155436 -0.00676926 +0.00124925 0.0109182 -0.011681 +0.000473261 0.00459987 -0.0134788 +-0.000302255 -0.00171848 -0.011681 +-0.000870347 -0.00634389 -0.00676927 +-0.00107819 -0.00803682 -5.97857e-005 +-0.000870347 -0.00634389 0.00664971 +-0.000302315 -0.00171848 0.0115614 +0.00047332 0.00459984 0.0133592 +0.00931346 0.00351444 -5.97734e-005 +0.00047332 0.00459984 -5.97814e-005 +-0.00162488 -0.0138066 -0.00108768 +-0.00162309 -0.0138017 0.00108303 +-0.0104348 -0.0127282 0.00108874 +-0.0104318 -0.0127344 -0.00108197 +-0.00178283 -0.0151659 -0.00049055 +-0.00178295 -0.0151666 0.000513154 +-0.0106164 -0.014088 -0.000484836 +-0.0106163 -0.0140886 0.00051885 +-0.00190914 -0.0161494 -0.00109982 +-0.0107321 -0.0150728 -0.00109411 +-0.00190383 -0.0161496 -0.000994282 +-0.0107374 -0.0150717 -0.000988577 +-0.00204247 -0.0172359 -0.000545936 +-0.0108653 -0.0161594 -0.000540223 +-0.00202471 -0.0171352 -0.000498051 +-0.0108582 -0.0160573 -0.00049234 +-0.00204176 -0.017231 0.000554323 +-0.0108647 -0.0161544 0.000560042 +-0.00202394 -0.0171281 0.000508789 +-0.0108575 -0.0160502 0.000514508 +-0.00190908 -0.016149 0.00114497 +-0.0107321 -0.0150724 0.00115067 +-0.00190288 -0.0161425 0.00101939 +-0.0107363 -0.0150646 0.00102509 +numsurf 97 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +2 0 0 +13 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +6 0 0 +5 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +10 0 0 +9 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +11 0 0 +10 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +12 0 0 +11 0 0 +SURF 0x10 +mat 0 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +25 0 0 +14 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +14 0 0 +15 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +15 0 0 +16 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +16 0 0 +17 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +17 0 0 +18 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +18 0 0 +19 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +19 0 0 +20 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +20 0 0 +21 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +21 0 0 +22 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +22 0 0 +23 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +23 0 0 +24 0 0 +SURF 0x10 +mat 0 +refs 3 +1 0 0 +24 0 0 +25 0 0 +SURF 0x10 +mat 0 +refs 4 +25 -2.98023e-008 1 +13 -2.98023e-008 0 +2 0.0833333 0 +14 0.0833333 1 +SURF 0x10 +mat 0 +refs 4 +14 0.0833333 1 +2 0.0833333 0 +3 0.166667 0 +15 0.166667 1 +SURF 0x10 +mat 0 +refs 4 +15 0.166667 1 +3 0.166667 0 +4 0.25 0 +16 0.25 1 +SURF 0x10 +mat 0 +refs 4 +16 0.25 1 +4 0.25 0 +5 0.333333 0 +17 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +17 0.333333 1 +5 0.333333 0 +6 0.416667 0 +18 0.416667 1 +SURF 0x10 +mat 0 +refs 4 +18 0.416667 1 +6 0.416667 0 +7 0.5 0 +19 0.5 1 +SURF 0x10 +mat 0 +refs 4 +19 0.5 1 +7 0.5 0 +8 0.583333 0 +20 0.583333 1 +SURF 0x10 +mat 0 +refs 4 +20 0.583333 1 +8 0.583333 0 +9 0.666667 0 +21 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +21 0.666667 1 +9 0.666667 0 +10 0.75 0 +22 0.75 1 +SURF 0x10 +mat 0 +refs 4 +22 0.75 1 +10 0.75 0 +11 0.833333 0 +23 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +23 0.833333 1 +11 0.833333 0 +12 0.916667 0 +24 0.916667 1 +SURF 0x10 +mat 0 +refs 4 +24 0.916667 1 +12 0.916667 0 +13 1 0 +25 1 1 +SURF 0x10 +mat 0 +refs 4 +27 0.916667 1 +39 0.916667 0 +38 1 0 +26 1 1 +SURF 0x10 +mat 0 +refs 4 +28 0.833333 1 +40 0.833333 0 +39 0.916667 0 +27 0.916667 1 +SURF 0x10 +mat 0 +refs 4 +29 0.75 1 +41 0.75 0 +40 0.833333 0 +28 0.833333 1 +SURF 0x10 +mat 0 +refs 4 +30 0.666667 1 +42 0.666667 0 +41 0.75 0 +29 0.75 1 +SURF 0x10 +mat 0 +refs 4 +31 0.583333 1 +43 0.583333 0 +42 0.666667 0 +30 0.666667 1 +SURF 0x10 +mat 0 +refs 4 +32 0.5 1 +44 0.5 0 +43 0.583333 0 +31 0.583333 1 +SURF 0x10 +mat 0 +refs 4 +33 0.416667 1 +45 0.416667 0 +44 0.5 0 +32 0.5 1 +SURF 0x10 +mat 0 +refs 4 +34 0.333333 1 +46 0.333333 0 +45 0.416667 0 +33 0.416667 1 +SURF 0x10 +mat 0 +refs 4 +35 0.25 1 +47 0.25 0 +46 0.333333 0 +34 0.333333 1 +SURF 0x10 +mat 0 +refs 4 +36 0.166667 1 +48 0.166667 0 +47 0.25 0 +35 0.25 1 +SURF 0x10 +mat 0 +refs 4 +37 0.0833333 1 +49 0.0833333 0 +48 0.166667 0 +36 0.166667 1 +SURF 0x10 +mat 0 +refs 4 +26 -2.98023e-008 1 +38 -2.98023e-008 0 +49 0.0833333 0 +37 0.0833333 1 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +27 0 0 +26 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +28 0 0 +27 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +29 0 0 +28 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +30 0 0 +29 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +31 0 0 +30 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +32 0 0 +31 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +33 0 0 +32 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +35 0 0 +34 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +36 0 0 +35 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +37 0 0 +36 0 0 +SURF 0x10 +mat 0 +refs 3 +50 0 0 +26 0 0 +37 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +38 0 0 +39 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +39 0 0 +40 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +40 0 0 +41 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +41 0 0 +42 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +42 0 0 +43 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +43 0 0 +44 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +44 0 0 +45 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +45 0 0 +46 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +46 0 0 +47 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +47 0 0 +48 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +48 0 0 +49 0 0 +SURF 0x10 +mat 0 +refs 3 +51 0 0 +49 0 0 +38 0 0 +SURF 0x30 +mat 0 +refs 4 +52 0 0 +53 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 0 +refs 4 +56 0 0 +57 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 0 +refs 4 +58 0 0 +59 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 0 +refs 4 +55 0 0 +54 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +57 0 0 +53 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +60 0 0 +52 0 0 +55 0 0 +61 0 0 +SURF 0x30 +mat 0 +refs 4 +62 0 0 +56 0 0 +52 0 0 +60 0 0 +SURF 0x30 +mat 0 +refs 4 +63 0 0 +58 0 0 +56 0 0 +62 0 0 +SURF 0x30 +mat 0 +refs 4 +61 0 0 +55 0 0 +58 0 0 +63 0 0 +SURF 0x30 +mat 0 +refs 4 +64 0 0 +60 0 0 +61 0 0 +65 0 0 +SURF 0x30 +mat 0 +refs 4 +66 0 0 +62 0 0 +60 0 0 +64 0 0 +SURF 0x30 +mat 0 +refs 4 +67 0 0 +63 0 0 +62 0 0 +66 0 0 +SURF 0x30 +mat 0 +refs 4 +65 0 0 +61 0 0 +63 0 0 +67 0 0 +SURF 0x30 +mat 0 +refs 4 +68 0 0 +64 0 0 +65 0 0 +69 0 0 +SURF 0x30 +mat 0 +refs 4 +70 0 0 +66 0 0 +64 0 0 +68 0 0 +SURF 0x30 +mat 0 +refs 4 +71 0 0 +67 0 0 +66 0 0 +70 0 0 +SURF 0x30 +mat 0 +refs 4 +69 0 0 +65 0 0 +67 0 0 +71 0 0 +SURF 0x30 +mat 0 +refs 4 +72 0 0 +68 0 0 +69 0 0 +73 0 0 +SURF 0x30 +mat 0 +refs 4 +74 0 0 +70 0 0 +68 0 0 +72 0 0 +SURF 0x30 +mat 0 +refs 4 +75 0 0 +71 0 0 +70 0 0 +74 0 0 +SURF 0x30 +mat 0 +refs 4 +73 0 0 +69 0 0 +71 0 0 +75 0 0 +SURF 0x30 +mat 0 +refs 4 +53 0 0 +72 0 0 +73 0 0 +54 0 0 +SURF 0x30 +mat 0 +refs 4 +57 0 0 +74 0 0 +72 0 0 +53 0 0 +SURF 0x30 +mat 0 +refs 4 +59 0 0 +75 0 0 +74 0 0 +57 0 0 +SURF 0x30 +mat 0 +refs 4 +54 0 0 +73 0 0 +75 0 0 +59 0 0 +kids 0 +OBJECT poly +name "lhwing" +loc 0.318681 0.171557 0.259366 +crease 45.000000 +numvert 44 +-0.146878 0.0473264 0.252473 +-0.14588 0.0472137 0.252473 +-0.145473 0.0461324 0.252473 +-0.146077 0.0452048 0.252473 +-0.147111 0.0453514 0.252473 +-0.147501 0.0464109 0.252473 +-0.15453 -0.0100131 -0.253308 +-0.153906 -0.00909759 -0.253308 +-0.154139 -0.0110727 -0.253308 +-0.153106 -0.0112192 -0.253308 +-0.152501 -0.0102917 -0.253308 +-0.152909 -0.00921026 -0.253308 +0.0579157 0.0283473 0.252408 +-0.0390618 0.0489583 0.252125 +-0.0994192 0.0542516 0.252574 +-0.13844 0.0520714 0.253225 +-0.155152 0.0458472 0.253491 +-0.139504 0.0436858 0.253491 +-0.101402 0.0384279 0.253491 +-0.0444721 0.0306564 0.253385 +0.056155 0.0153178 0.253279 +0.161365 -0.00346583 0.253066 +0.154791 -0.0561852 -0.218748 +0.0508075 -0.0287241 -0.219405 +0.0491863 -0.040616 -0.218396 +-0.0510399 -0.0247784 -0.218428 +-0.107374 -0.0149151 -0.218322 +-0.14538 -0.00954032 -0.218322 +-0.161726 -0.00687209 -0.218322 +-0.144773 -0.00263795 -0.21873 +-0.106413 -0.00188901 -0.219239 +-0.0455808 -0.00726615 -0.219689 +0.0600163 -0.0442684 -0.253491 +0.061014 -0.0443811 -0.253491 +0.0688207 0.0183781 0.25212 +0.067823 0.0184909 0.25212 +0.0614223 -0.0454626 -0.253491 +0.0692289 0.0172967 0.25212 +0.0608167 -0.0463901 -0.253491 +0.0686234 0.0163693 0.25212 +0.059784 -0.0462436 -0.253491 +0.0675906 0.0165157 0.25212 +0.0593931 -0.0451839 -0.253491 +0.0671998 0.0175753 0.25212 +numsurf 25 +SURF 0x30 +mat 0 +refs 6 +0 0.24762 0.995169 +1 0.7381 1 +2 1 0.492754 +3 0.761908 0 +4 0.25238 0.00966183 +5 0 0.507246 +SURF 0x30 +mat 0 +refs 4 +6 0 0 +7 0 0 +0 0 0 +5 0 0 +SURF 0x30 +mat 0 +refs 4 +8 0 0 +6 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 0 +refs 4 +9 0 0 +8 0 0 +4 0 0 +3 0 0 +SURF 0x30 +mat 0 +refs 4 +10 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 0 +refs 4 +11 0 0 +10 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 0 +refs 4 +7 0 0 +11 0 0 +1 0 0 +0 0 0 +SURF 0x30 +mat 2 +refs 10 +12 0.393442 1 +13 0.229508 0.913043 +14 0.125683 0.695652 +15 0.0273223 0.217391 +16 0 0 +17 0.0491803 0 +18 0.153005 0 +19 0.327869 0.0434782 +20 0.655738 0.0869564 +21 1 0.173913 +SURF 0x30 +mat 2 +refs 4 +22 0 0 +23 0 0 +12 0 0 +21 0 0 +SURF 0x30 +mat 2 +refs 4 +24 0 0 +22 0 0 +21 0 0 +20 0 0 +SURF 0x30 +mat 2 +refs 4 +25 0 0 +24 0 0 +20 0 0 +19 0 0 +SURF 0x30 +mat 2 +refs 4 +26 0 0 +25 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 2 +refs 4 +27 0 0 +26 0 0 +18 0 0 +17 0 0 +SURF 0x30 +mat 2 +refs 4 +28 0 0 +27 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 2 +refs 4 +29 0 0 +28 0 0 +16 0 0 +15 0 0 +SURF 0x30 +mat 2 +refs 4 +30 0 0 +29 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 2 +refs 4 +31 0 0 +30 0 0 +14 0 0 +13 0 0 +SURF 0x30 +mat 2 +refs 4 +23 0 0 +31 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +32 0 0 +35 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 6 +35 0.24762 0.995169 +34 0.7381 1 +37 1 0.492754 +39 0.761908 0 +41 0.25238 0.00966183 +43 0 0.507246 +kids 0 +OBJECT poly +name "rhwing" +loc 0.318681 0.171557 -0.259645 +crease 45.000000 +numvert 44 +0.0671998 0.0175753 -0.252135 +0.0675906 0.0165157 -0.252135 +0.0686235 0.0163693 -0.252135 +0.0692289 0.0172967 -0.252135 +0.0688206 0.0183781 -0.252135 +0.0678231 0.0184909 -0.252135 +0.0600199 -0.04424 0.253505 +0.0593967 -0.0451555 0.253505 +0.0597875 -0.0462152 0.253505 +0.0608202 -0.0463617 0.253505 +0.0614258 -0.0454341 0.253505 +0.0610176 -0.0443527 0.253505 +0.0579157 0.0283473 -0.252422 +-0.0390618 0.0489585 -0.252139 +-0.0455808 -0.00726612 0.219674 +0.0508075 -0.0287241 0.219391 +-0.0994192 0.0542516 -0.252588 +-0.106413 -0.00188898 0.219225 +-0.13844 0.0520715 -0.253239 +-0.144773 -0.00263792 0.218716 +-0.155152 0.0458472 -0.253505 +-0.161726 -0.00687206 0.218307 +-0.139504 0.0436858 -0.253505 +-0.14538 -0.0095403 0.218307 +-0.101402 0.0384279 -0.253505 +-0.107374 -0.014915 0.218307 +-0.0444721 0.0306565 -0.253399 +-0.05104 -0.0247784 0.218414 +0.056155 0.0153178 -0.253293 +0.0491864 -0.0406161 0.218382 +0.161365 -0.0034658 -0.25308 +0.154791 -0.0561851 0.218733 +-0.146878 0.0473264 -0.252487 +-0.14588 0.0472137 -0.252487 +-0.152909 -0.00921023 0.253294 +-0.153906 -0.00909756 0.253294 +-0.145473 0.0461324 -0.252487 +-0.152501 -0.0102916 0.253294 +-0.146077 0.0452048 -0.252487 +-0.153106 -0.0112192 0.253294 +-0.147111 0.0453514 -0.252487 +-0.154139 -0.0110727 0.253294 +-0.147501 0.0464109 -0.252487 +-0.15453 -0.010013 0.253294 +numsurf 25 +SURF 0x30 +mat 0 +refs 6 +0 0 0.507246 +1 0.25238 0.00966183 +2 0.761908 0 +3 1 0.492754 +4 0.7381 1 +5 0.24762 0.995169 +SURF 0x30 +mat 0 +refs 4 +0 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 0 +refs 4 +1 0 0 +0 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 0 +refs 4 +2 0 0 +1 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 0 +refs 4 +3 0 0 +2 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 0 +refs 4 +4 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 0 +refs 4 +5 0 0 +4 0 0 +11 0 0 +6 0 0 +SURF 0x30 +mat 2 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 2 +refs 4 +13 0 0 +16 0 0 +17 0 0 +14 0 0 +SURF 0x30 +mat 2 +refs 4 +16 0 0 +18 0 0 +19 0 0 +17 0 0 +SURF 0x30 +mat 2 +refs 4 +18 0 0 +20 0 0 +21 0 0 +19 0 0 +SURF 0x30 +mat 2 +refs 4 +20 0 0 +22 0 0 +23 0 0 +21 0 0 +SURF 0x30 +mat 2 +refs 4 +22 0 0 +24 0 0 +25 0 0 +23 0 0 +SURF 0x30 +mat 2 +refs 4 +24 0 0 +26 0 0 +27 0 0 +25 0 0 +SURF 0x30 +mat 2 +refs 4 +26 0 0 +28 0 0 +29 0 0 +27 0 0 +SURF 0x30 +mat 2 +refs 4 +28 0 0 +30 0 0 +31 0 0 +29 0 0 +SURF 0x30 +mat 2 +refs 4 +30 0 0 +12 0 0 +15 0 0 +31 0 0 +SURF 0x30 +mat 2 +refs 10 +30 1 0.173913 +28 0.655738 0.0869564 +26 0.327869 0.0434782 +24 0.153005 0 +22 0.0491803 0 +20 0 0 +18 0.0273223 0.217391 +16 0.125683 0.695652 +13 0.229508 0.913043 +12 0.393442 1 +SURF 0x30 +mat 0 +refs 4 +32 0 0 +33 0 0 +34 0 0 +35 0 0 +SURF 0x30 +mat 0 +refs 4 +33 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x30 +mat 0 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x30 +mat 0 +refs 4 +38 0 0 +40 0 0 +41 0 0 +39 0 0 +SURF 0x30 +mat 0 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x30 +mat 0 +refs 4 +42 0 0 +32 0 0 +35 0 0 +43 0 0 +SURF 0x30 +mat 0 +refs 6 +42 0 0.507246 +40 0.25238 0.00966183 +38 0.761908 0 +36 1 0.492754 +33 0.7381 1 +32 0.24762 0.995169 +kids 0 diff --git a/resources/flightgear/Aircraft/YardStick/Models/yardstik.xml b/resources/flightgear/Aircraft/YardStick/Models/yardstik.xml new file mode 100644 index 0000000000000000000000000000000000000000..dffe5f5c93324f6f3e5366318deb26a725e98fbb --- /dev/null +++ b/resources/flightgear/Aircraft/YardStick/Models/yardstik.xml @@ -0,0 +1,106 @@ + + + + + yardstik.ac + + 0.0 + 0.2 + + + + rotate + elevator + elevatorattach + controls/flight/elevator + 15 + 0 +
+ 1.0 + 0.0 + 0.04 +
+ + 0.0 + 1 + 0.0 + +
+ + + rotate + elevatorservo + controls/flight/elevator + 15 + 0 +
+ 0.3 + 0.01 + 0.11 +
+ + 0.0 + 1 + 0.0 + +
+ + + + rotate + rudder + rudderattach + controls/flight/rudder + 15 + 0 +
+ 1.01 + 0.0 + 0.17 +
+ + 0.0 + 0.0 + 1.0 + +
+ + + rotate + rudderservo + controls/flight/rudder + -15 + 0 +
+ 0.3 + -0.1 + 0.10 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + + spin + prop2 + engines/engine/n1 + -30 +
+ 0.002 + -0.001 + 0.19 +
+ + 1 + 0 + 0 + +
+ + + +
diff --git a/resources/flightgear/Aircraft/YardStick/YardStik-set.xml b/resources/flightgear/Aircraft/YardStick/YardStik-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..a4b222f35f2ecefb82a6d3918881e74f5e018448 --- /dev/null +++ b/resources/flightgear/Aircraft/YardStick/YardStik-set.xml @@ -0,0 +1,102 @@ + + + + + + + Yard Stik (R/C) + Innis Cunningham + 0.0 + + + Aircraft/YardStik/YardStik-splash.rgb + + + jsb + YardStik + 0.8 + + + + Aircraft/YardStik/Systems/110-autopilot.xml + + + Aircraft/YardStik/Systems/electrical.xml + + + + + Aircraft/Generic/generic-sound.xml + + + + false + + + + Aircraft/YardStik/Models/yardstik.xml + + + + true + + 0.0 + -0.3 + 0.9 + -8 + + + + + YardStik 110 (Sig Mfg) + Cruise speed: 60 mph + Never-exceed (Vne): 85 mph + Best Glide (Vglide): 20 mph + Maneuvering (Va): 50 mph + Approach speed: 15-25 mph + Stall speed (Vs): 10 mph + + + + + + + -0.01 + 0.00 + 0.00 + + + + 3 + + + 1.0 + + + + + 700 + + + + + + + 48.0 + 56.0 + 400.0 + 1000.0 + 6000.0 + 0.008 + 0.35 + 0.001 + + + + diff --git a/resources/flightgear/Aircraft/YardStick/YardStik-splash.rgb b/resources/flightgear/Aircraft/YardStick/YardStik-splash.rgb new file mode 100644 index 0000000000000000000000000000000000000000..5b9459fe2e57bd6393cb31e0312a6450b3556fc1 Binary files /dev/null and b/resources/flightgear/Aircraft/YardStick/YardStik-splash.rgb differ diff --git a/resources/flightgear/Aircraft/YardStick/YardStik.xml b/resources/flightgear/Aircraft/YardStick/YardStik.xml new file mode 100644 index 0000000000000000000000000000000000000000..e6a5b46d7c28fda7331f0759548d4acc1e4e1209 --- /dev/null +++ b/resources/flightgear/Aircraft/YardStick/YardStik.xml @@ -0,0 +1,522 @@ + + + + + + Author Name + Creation Date + Version + Models a rascal + + + + 10.57 + 9.17 + 1.15 + 1.69 + 3.28 + 1.06 + 0 + + 37.4 + 0 + 0 + + + 20 + 0 + 5 + + + 0 + 0 + 0 + + + + + 1 + 1 + 2 + 0 + 0 + 0 + 12 + + 36.4 + 0 + 4 + + + + + + + 33.1 + -9.9 + -13.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + LEFT + 0 + + + + 33.1 + 9.9 + -13.1 + + 0.8 + 0.5 + 0.02 + 120 + 20 + 0.0 + RIGHT + 0 + + + + 68.9 + 0 + -6.6 + + 0.8 + 0.5 + 0.02 + 24 + 20 + 360.0 + NONE + 0 + + + + + + + 36 + 0 + 0 + + + 0.0 + 0 + 0 + + 0 + + + 1 + 0 + 0 + + + 0.0 + 0.0 + 0.0 + + 1.0 + + + + + 36.36 + 0 + -1.89375 + + 1.5 + 1.5 + + + + + + + + fcs/elevator-cmd-norm + fcs/pitch-trim-cmd-norm + + -1 + 1 + + + + + fcs/pitch-trim-sum + + -0.35 + 0.3 + + fcs/elevator-pos-rad + + + + fcs/elevator-pos-rad + + -0.3 + 0.3 + + + -1 + 1 + + fcs/elevator-pos-norm + + + + fcs/aileron-cmd-norm + fcs/roll-trim-cmd-norm + + -1 + 1 + + + + + fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/left-aileron-pos-rad + + + + -fcs/roll-trim-sum + + -0.35 + 0.35 + + fcs/right-aileron-pos-rad + + + + fcs/left-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/left-aileron-pos-norm + + + + fcs/right-aileron-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/right-aileron-pos-norm + + + + fcs/rudder-cmd-norm + fcs/yaw-trim-cmd-norm + + -1 + 1 + + + + + fcs/rudder-command-sum + + -0.35 + 0.35 + + fcs/rudder-pos-rad + + + + fcs/rudder-pos-rad + + -0.35 + 0.35 + + + -1 + 1 + + fcs/rudder-pos-norm + + + + + + + + Drag_at_zero_lift + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -1.5700 1.5000 + -0.2600 0.0560 + 0.0000 0.0280 + 0.2600 0.0560 + 1.5700 1.5000 + +
+
+
+ + Induced_drag + + aero/qbar-psf + metrics/Sw-sqft + aero/cl-squared + 0.0400 + + + + Drag_due_to_sideslip + + aero/qbar-psf + metrics/Sw-sqft + + aero/beta-rad + + -1.5700 1.2300 + -0.2600 0.0500 + 0.0000 0.0000 + 0.2600 0.0500 + 1.5700 1.2300 + +
+
+
+ + Drag_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-norm + 0.0300 + + +
+ + + + Side_force_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + aero/beta-rad + -1.0000 + + + + + + + Lift_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + + aero/alpha-rad + + -0.2000 -0.7500 + 0.0000 0.2500 + 0.2300 1.4000 + 0.6000 0.7100 + +
+
+
+ + Lift_due_to_Elevator_Deflection + + aero/qbar-psf + metrics/Sw-sqft + fcs/elevator-pos-rad + 0.2000 + + +
+ + + + Roll_moment_due_to_beta + + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + -0.1000 + + + + Roll_moment_due_to_roll_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/p-aero-rad_sec + -0.4000 + + + + Roll_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + 0.1500 + + + + Roll_moment_due_to_aileron + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + + velocities/mach + + 0.0000 0.1300 + 2.0000 0.0570 + +
+
+
+ + Roll_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + 0.0100 + + +
+ + + + Pitch_moment_due_to_alpha + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/alpha-rad + -0.5000 + + + + Pitch_moment_due_to_elevator + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + fcs/elevator-pos-rad + + velocities/mach + + 0.0000 -0.5000 + 2.0000 -0.2750 + +
+
+
+ + Pitch_moment_due_to_pitch_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + velocities/q-aero-rad_sec + -12.0000 + + + + Pitch_moment_due_to_alpha_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/cbarw-ft + aero/ci2vel + aero/alphadot-rad_sec + -7.0000 + + +
+ + + + Yaw_moment_due_to_beta + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/beta-rad + 0.1200 + + + + Yaw_moment_due_to_yaw_rate + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + aero/bi2vel + velocities/r-aero-rad_sec + -0.1500 + + + + Yaw_moment_due_to_rudder + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/rudder-pos-rad + -0.0500 + + + + Adverse_yaw + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + fcs/left-aileron-pos-rad + -0.0300 + + + + Yaw_moment_due_to_tail_incidence + + aero/qbar-psf + metrics/Sw-sqft + metrics/bw-ft + 0.0007 + + + +
+
diff --git a/resources/flightgear/Aircraft/YardStick/thumbnail.jpg b/resources/flightgear/Aircraft/YardStick/thumbnail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cdc375c3e59e4b14dc25efd65e1b2922ca1f1d4d Binary files /dev/null and b/resources/flightgear/Aircraft/YardStick/thumbnail.jpg differ diff --git a/resources/flightgear/Aircraft/arducopter/Engines/a2830-12.xml b/resources/flightgear/Aircraft/arducopter/Engines/a2830-12.xml new file mode 100755 index 0000000000000000000000000000000000000000..2c81e177ddf66c18c98c4d305d49429b3b77e256 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/Engines/a2830-12.xml @@ -0,0 +1,4 @@ + + + 187 + diff --git a/resources/flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml b/resources/flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml new file mode 100755 index 0000000000000000000000000000000000000000..d45e85903f60b4299703c5ca37f75d66b6da3f79 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/Engines/prop10x4.5.xml @@ -0,0 +1,76 @@ + + + + + 0.000041666666 + + 10.0 + 2 + 1.0 + 0.79 + + + 0.0 0.0054513 + 1.4 0.0054513 + + + + + + + + + + + + + + +
+ + + 0.0 0.0028 + 0.1 0.0028 + 0.2 0.0027 + 0.3 0.0027 + 0.4 0.0025 + 0.5 0.0023 + 0.6 0.0021 + 0.7 0.0018 + 0.8 0.0015 + 1.0 0.0005 + 1.2 -0.0008 + 1.4 -0.0025 + 1.6 -0.0042 + +
+ + + + 0.85 1.0 + 1.05 0.8 + +
+ + + + 0.85 1.0 + 1.05 1.8 + 2.00 1.4 + +
+
diff --git a/resources/flightgear/Aircraft/arducopter/Models/arducopter.ac b/resources/flightgear/Aircraft/arducopter/Models/arducopter.ac new file mode 100755 index 0000000000000000000000000000000000000000..a81d6ff727d91591d2570e33f2bafeab9cb857ea --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/Models/arducopter.ac @@ -0,0 +1,15492 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "Plastic1" rgb 0.478431 0.917647 0.741177 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0.474719 +MATERIAL "BrushedAlum" rgb 0.698039 0.698039 0.698039 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "Plastic2" rgb 0.8 0.8 0.8 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0.697051 +MATERIAL "Chrome" rgb 0.698039 0.698039 0.698039 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "RedBrushed" rgb 0.764706 0.439216 0.439216 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "DarkPlastic" rgb 0.278431 0.278431 0.278431 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 84 trans 0 +MATERIAL "Material.006" rgb 0.28 0.28 0.28 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 101 trans 0 +OBJECT world +kids 1 +OBJECT group +name "Cube.002" +kids 14 +OBJECT poly +name "Cube.002" +data 8 +Cube.003 +crease 30.000000 +numvert 112 +0 -0.001023 -0.065 +0.065 -0.001023 0 +0 -0.001023 0.065 +-0.065 -0.001023 0 +0 0.001023 -0.065 +0.065 0.001023 0 +0 0.001023 0.065 +-0.065 0.001023 0 +-0.027527 -0.000578 0.028064 +-0.027788 -0.000578 0.027553 +-0.027698 -0.000578 0.026986 +-0.027293 -0.000578 0.026581 +-0.026726 -0.000578 0.026491 +-0.026215 -0.000578 0.026751 +-0.025955 -0.000578 0.027262 +-0.026045 -0.000578 0.027829 +-0.02645 -0.000578 0.028234 +-0.027017 -0.000578 0.028324 +-0.027527 0.040522 0.028064 +-0.027788 0.040522 0.027553 +-0.027698 0.040522 0.026986 +-0.027293 0.040522 0.026581 +-0.026726 0.040522 0.026491 +-0.026215 0.040522 0.026751 +-0.025955 0.040522 0.027262 +-0.026045 0.040522 0.027829 +-0.02645 0.040522 0.028234 +-0.027017 0.040522 0.028324 +-0.026871 -0.000578 0.027407 +-0.026871 0.040522 0.027407 +0.02595 -0.000578 0.028344 +0.02569 -0.000578 0.027833 +0.02578 -0.000578 0.027266 +0.026185 -0.000578 0.026861 +0.026752 -0.000578 0.026771 +0.027263 -0.000578 0.027031 +0.027523 -0.000578 0.027542 +0.027433 -0.000578 0.028109 +0.027028 -0.000578 0.028514 +0.026461 -0.000578 0.028604 +0.02595 0.040522 0.028344 +0.02569 0.040522 0.027833 +0.02578 0.040522 0.027266 +0.026185 0.040522 0.026861 +0.026752 0.040522 0.026771 +0.027263 0.040522 0.027031 +0.027523 0.040522 0.027542 +0.027433 0.040522 0.028109 +0.027028 0.040522 0.028514 +0.026461 0.040522 0.028604 +0.026606 -0.000578 0.027687 +0.026606 0.040522 0.027687 +-0.027248 -0.000578 -0.025974 +-0.027508 -0.000578 -0.026485 +-0.027418 -0.000578 -0.027052 +-0.027013 -0.000578 -0.027457 +-0.026446 -0.000578 -0.027547 +-0.025935 -0.000578 -0.027286 +-0.025675 -0.000578 -0.026775 +-0.025765 -0.000578 -0.026209 +-0.02617 -0.000578 -0.025803 +-0.026737 -0.000578 -0.025714 +-0.027248 0.040522 -0.025974 +-0.027508 0.040522 -0.026485 +-0.027418 0.040522 -0.027052 +-0.027013 0.040522 -0.027457 +-0.026446 0.040522 -0.027547 +-0.025935 0.040522 -0.027286 +-0.025675 0.040522 -0.026775 +-0.025765 0.040522 -0.026209 +-0.02617 0.040522 -0.025803 +-0.026737 0.040522 -0.025714 +-0.026591 -0.000578 -0.02663 +-0.026591 0.040522 -0.02663 +-0.031255 0.037189 -0.031255 +0.031255 0.037189 -0.031255 +0.031255 0.037189 0.031255 +-0.031255 0.037189 0.031255 +-0.031255 0.039124 -0.031255 +0.031255 0.039124 -0.031255 +0.031255 0.039124 0.031255 +-0.031255 0.039124 0.031255 +0.02567 -0.000578 -0.025974 +0.02541 -0.000578 -0.026485 +0.0255 -0.000578 -0.027052 +0.025905 -0.000578 -0.027457 +0.026472 -0.000578 -0.027547 +0.026983 -0.000578 -0.027286 +0.027243 -0.000578 -0.026775 +0.027153 -0.000578 -0.026209 +0.026748 -0.000578 -0.025803 +0.026181 -0.000578 -0.025714 +0.02567 0.040522 -0.025974 +0.02541 0.040522 -0.026485 +0.0255 0.040522 -0.027052 +0.025905 0.040522 -0.027457 +0.026472 0.040522 -0.027547 +0.026983 0.040522 -0.027286 +0.027243 0.040522 -0.026775 +0.027153 0.040522 -0.026209 +0.026748 0.040522 -0.025803 +0.026181 0.040522 -0.025714 +0.026326 -0.000578 -0.02663 +0.026326 0.040522 -0.02663 +-0.031255 0.018877 -0.031255 +0.031255 0.018877 -0.031255 +0.031255 0.018877 0.031255 +-0.031255 0.018877 0.031255 +-0.031255 0.020813 -0.031255 +0.031255 0.020813 -0.031255 +0.031255 0.020813 0.031255 +-0.031255 0.020813 0.031255 +numsurf 138 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 1 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 1 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +11 0 0 +12 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +22 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +13 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +14 0 0 +15 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +15 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +26 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 3 +17 0 0 +8 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +18 0 0 +27 0 0 +SURF 0x20 +mat 1 +refs 4 +8 0 0 +18 0 0 +19 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 4 +9 0 0 +19 0 0 +20 0 0 +10 0 0 +SURF 0x20 +mat 1 +refs 4 +10 0 0 +20 0 0 +21 0 0 +11 0 0 +SURF 0x20 +mat 1 +refs 4 +11 0 0 +21 0 0 +22 0 0 +12 0 0 +SURF 0x20 +mat 1 +refs 4 +12 0 0 +22 0 0 +23 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 4 +13 0 0 +23 0 0 +24 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 4 +14 0 0 +24 0 0 +25 0 0 +15 0 0 +SURF 0x20 +mat 1 +refs 4 +15 0 0 +25 0 0 +26 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +26 0 0 +27 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 4 +18 0 0 +8 0 0 +17 0 0 +27 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +41 0 0 +40 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +31 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +42 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +43 0 0 +42 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +33 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +44 0 0 +43 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +34 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +45 0 0 +44 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +35 0 0 +36 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +46 0 0 +45 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +37 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +48 0 0 +47 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +38 0 0 +39 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +49 0 0 +48 0 0 +SURF 0x20 +mat 1 +refs 3 +39 0 0 +30 0 0 +50 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +40 0 0 +49 0 0 +SURF 0x20 +mat 1 +refs 4 +30 0 0 +40 0 0 +41 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +31 0 0 +41 0 0 +42 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 4 +32 0 0 +42 0 0 +43 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 4 +33 0 0 +43 0 0 +44 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 4 +34 0 0 +44 0 0 +45 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 4 +35 0 0 +45 0 0 +46 0 0 +36 0 0 +SURF 0x20 +mat 1 +refs 4 +36 0 0 +46 0 0 +47 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 4 +37 0 0 +47 0 0 +48 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 4 +38 0 0 +48 0 0 +49 0 0 +39 0 0 +SURF 0x20 +mat 1 +refs 4 +40 0 0 +30 0 0 +39 0 0 +49 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +52 0 0 +53 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +53 0 0 +54 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +64 0 0 +63 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +65 0 0 +64 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +55 0 0 +56 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +67 0 0 +66 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +57 0 0 +58 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +68 0 0 +67 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +69 0 0 +68 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +59 0 0 +60 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +70 0 0 +69 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +71 0 0 +70 0 0 +SURF 0x20 +mat 1 +refs 3 +61 0 0 +52 0 0 +72 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +62 0 0 +71 0 0 +SURF 0x20 +mat 1 +refs 4 +52 0 0 +62 0 0 +63 0 0 +53 0 0 +SURF 0x20 +mat 1 +refs 4 +53 0 0 +63 0 0 +64 0 0 +54 0 0 +SURF 0x20 +mat 1 +refs 4 +54 0 0 +64 0 0 +65 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 4 +55 0 0 +65 0 0 +66 0 0 +56 0 0 +SURF 0x20 +mat 1 +refs 4 +56 0 0 +66 0 0 +67 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 4 +57 0 0 +67 0 0 +68 0 0 +58 0 0 +SURF 0x20 +mat 1 +refs 4 +58 0 0 +68 0 0 +69 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 4 +59 0 0 +69 0 0 +70 0 0 +60 0 0 +SURF 0x20 +mat 1 +refs 4 +60 0 0 +70 0 0 +71 0 0 +61 0 0 +SURF 0x20 +mat 1 +refs 4 +62 0 0 +52 0 0 +61 0 0 +71 0 0 +SURF 0x20 +mat 1 +refs 4 +74 0 0 +75 0 0 +76 0 0 +77 0 0 +SURF 0x20 +mat 1 +refs 4 +78 0 0 +81 0 0 +80 0 0 +79 0 0 +SURF 0x20 +mat 1 +refs 4 +74 0 0 +78 0 0 +79 0 0 +75 0 0 +SURF 0x20 +mat 1 +refs 4 +75 0 0 +79 0 0 +80 0 0 +76 0 0 +SURF 0x20 +mat 1 +refs 4 +76 0 0 +80 0 0 +81 0 0 +77 0 0 +SURF 0x20 +mat 1 +refs 4 +78 0 0 +74 0 0 +77 0 0 +81 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +82 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +93 0 0 +92 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +83 0 0 +84 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +94 0 0 +93 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +84 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +95 0 0 +94 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +85 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +96 0 0 +95 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +86 0 0 +87 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +97 0 0 +96 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +87 0 0 +88 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +98 0 0 +97 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +88 0 0 +89 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +99 0 0 +98 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +89 0 0 +90 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +100 0 0 +99 0 0 +SURF 0x20 +mat 1 +refs 3 +102 0 0 +90 0 0 +91 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +101 0 0 +100 0 0 +SURF 0x20 +mat 1 +refs 3 +91 0 0 +82 0 0 +102 0 0 +SURF 0x20 +mat 1 +refs 3 +103 0 0 +92 0 0 +101 0 0 +SURF 0x20 +mat 1 +refs 4 +82 0 0 +92 0 0 +93 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 4 +83 0 0 +93 0 0 +94 0 0 +84 0 0 +SURF 0x20 +mat 1 +refs 4 +84 0 0 +94 0 0 +95 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 4 +85 0 0 +95 0 0 +96 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 4 +86 0 0 +96 0 0 +97 0 0 +87 0 0 +SURF 0x20 +mat 1 +refs 4 +87 0 0 +97 0 0 +98 0 0 +88 0 0 +SURF 0x20 +mat 1 +refs 4 +88 0 0 +98 0 0 +99 0 0 +89 0 0 +SURF 0x20 +mat 1 +refs 4 +89 0 0 +99 0 0 +100 0 0 +90 0 0 +SURF 0x20 +mat 1 +refs 4 +90 0 0 +100 0 0 +101 0 0 +91 0 0 +SURF 0x20 +mat 1 +refs 4 +92 0 0 +82 0 0 +91 0 0 +101 0 0 +SURF 0x20 +mat 1 +refs 4 +104 0 0 +105 0 0 +106 0 0 +107 0 0 +SURF 0x20 +mat 1 +refs 4 +108 0 0 +111 0 0 +110 0 0 +109 0 0 +SURF 0x20 +mat 1 +refs 4 +104 0 0 +108 0 0 +109 0 0 +105 0 0 +SURF 0x20 +mat 1 +refs 4 +105 0 0 +109 0 0 +110 0 0 +106 0 0 +SURF 0x20 +mat 1 +refs 4 +106 0 0 +110 0 0 +111 0 0 +107 0 0 +SURF 0x20 +mat 1 +refs 4 +108 0 0 +104 0 0 +107 0 0 +111 0 0 +kids 0 +OBJECT group +name "Cube.009" +kids 3 +OBJECT poly +name "Cube.009" +data 8 +Cube.009 +crease 30.000000 +numvert 8 +0.006992 -0.015748 -0.29506 +-0.006992 -0.015748 -0.29506 +-0.006992 -0.015748 -0.006984 +0.006992 -0.015748 -0.006984 +0.006992 -0.001763 -0.29506 +-0.006992 -0.001763 -0.29506 +-0.006992 -0.001763 -0.006984 +0.006992 -0.001763 -0.006984 +numsurf 6 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +3 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 2 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +3 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Cube.004" +data 8 +Cube.004 +crease 30.000000 +numvert 12 +-0.011401 -0.018688 -0.077689 +-0.007901 -0.018688 -0.077689 +-0.007901 -0.018688 -0.064792 +-0.011401 -0.018688 -0.064792 +-0.011401 -0.002102 -0.077689 +-0.007901 -0.002102 -0.077689 +-0.007901 -0.002102 -0.064792 +-0.011401 -0.002102 -0.064792 +-0.011401 -0.055088 -0.064792 +-0.007901 -0.055088 -0.064792 +-0.007901 -0.055088 -0.074959 +-0.011401 -0.055088 -0.074959 +numsurf 10 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +2 0 0 +3 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +0 0 0 +11 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +1 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +2 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +10 0 0 +9 0 0 +8 0 0 +kids 0 +OBJECT poly +name "Cylinder.004" +data 12 +Cylinder.019 +crease 30.000000 +numvert 66 +0.008857 -0.001268 -0.295875 +0.010415 -0.001268 -0.293977 +0.011572 -0.001268 -0.291811 +0.012285 -0.001268 -0.289462 +0.012526 -0.001268 -0.287018 +0.012285 -0.001268 -0.284575 +0.011572 -0.001268 -0.282225 +0.010415 -0.001268 -0.280059 +0.008857 -0.001268 -0.278161 +0.006959 -0.001268 -0.276604 +0.004793 -0.001268 -0.275446 +0.002444 -0.001268 -0.274733 +0 -0.001268 -0.274493 +-0.002444 -0.001268 -0.274733 +-0.004793 -0.001268 -0.275446 +-0.006959 -0.001268 -0.276604 +-0.008857 -0.001268 -0.278161 +-0.010415 -0.001268 -0.280059 +-0.011572 -0.001268 -0.282225 +-0.012285 -0.001268 -0.284575 +-0.012526 -0.001268 -0.287018 +-0.012285 -0.001268 -0.289462 +-0.011572 -0.001268 -0.291812 +-0.010415 -0.001268 -0.293977 +-0.008857 -0.001268 -0.295875 +-0.006959 -0.001268 -0.297433 +-0.004793 -0.001268 -0.29859 +-0.002444 -0.001268 -0.299303 +0 -0.001268 -0.299544 +0.002444 -0.001268 -0.299303 +0.004793 -0.001268 -0.29859 +0.006959 -0.001268 -0.297433 +0.008857 0.015212 -0.295875 +0.010415 0.015212 -0.293977 +0.011572 0.015212 -0.291811 +0.012285 0.015212 -0.289462 +0.012526 0.015212 -0.287018 +0.012285 0.015212 -0.284575 +0.011572 0.015212 -0.282225 +0.010415 0.015212 -0.280059 +0.008857 0.015212 -0.278161 +0.006959 0.015212 -0.276604 +0.004793 0.015212 -0.275446 +0.002444 0.015212 -0.274733 +0 0.015212 -0.274493 +-0.002444 0.015212 -0.274733 +-0.004793 0.015212 -0.275446 +-0.006959 0.015212 -0.276604 +-0.008857 0.015212 -0.278161 +-0.010415 0.015212 -0.280059 +-0.011572 0.015212 -0.282225 +-0.012285 0.015212 -0.284575 +-0.012526 0.015212 -0.287018 +-0.012285 0.015212 -0.289462 +-0.011572 0.015212 -0.291811 +-0.010415 0.015212 -0.293977 +-0.008857 0.015212 -0.295875 +-0.006959 0.015212 -0.297433 +-0.004793 0.015212 -0.29859 +-0.002444 0.015212 -0.299303 +0 0.015212 -0.299544 +0.002444 0.015212 -0.299303 +0.004793 0.015212 -0.29859 +0.006959 0.015212 -0.297433 +0 -0.001268 -0.287018 +0 0.015212 -0.287018 +numsurf 96 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +3 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +5 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +11 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +13 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +48 0 0 +47 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +17 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +29 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +62 0 0 +61 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 4 +refs 3 +31 0 0 +0 0 0 +64 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +32 0 0 +63 0 0 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +32 0 0 +33 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 4 +1 0 0 +33 0 0 +34 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 4 +2 0 0 +34 0 0 +35 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +35 0 0 +36 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +36 0 0 +37 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 4 +5 0 0 +37 0 0 +38 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 4 +6 0 0 +38 0 0 +39 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +7 0 0 +39 0 0 +40 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 4 +8 0 0 +40 0 0 +41 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 4 +9 0 0 +41 0 0 +42 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 4 +10 0 0 +42 0 0 +43 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 4 +11 0 0 +43 0 0 +44 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +44 0 0 +45 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +45 0 0 +46 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +46 0 0 +47 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +47 0 0 +48 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +48 0 0 +49 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 4 +17 0 0 +49 0 0 +50 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 4 +18 0 0 +50 0 0 +51 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 4 +19 0 0 +51 0 0 +52 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 4 +20 0 0 +52 0 0 +53 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 4 +21 0 0 +53 0 0 +54 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +54 0 0 +55 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 4 +23 0 0 +55 0 0 +56 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 4 +24 0 0 +56 0 0 +57 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 4 +25 0 0 +57 0 0 +58 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 4 +26 0 0 +58 0 0 +59 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 4 +27 0 0 +59 0 0 +60 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 4 +28 0 0 +60 0 0 +61 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 4 +29 0 0 +61 0 0 +62 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 4 +30 0 0 +62 0 0 +63 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 4 +32 0 0 +0 0 0 +31 0 0 +63 0 0 +kids 0 +OBJECT group +name "Cube.010" +kids 3 +OBJECT poly +name "Cube.010" +data 8 +Cube.010 +crease 30.000000 +numvert 8 +-0.29506 -0.015748 -0.006992 +-0.29506 -0.015748 0.006992 +-0.006984 -0.015748 0.006992 +-0.006984 -0.015748 -0.006992 +-0.29506 -0.001763 -0.006992 +-0.29506 -0.001763 0.006992 +-0.006984 -0.001763 0.006992 +-0.006984 -0.001763 -0.006992 +numsurf 6 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +3 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 2 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +3 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Cube.003" +data 8 +Cube.002 +crease 30.000000 +numvert 12 +-0.068767 -0.055088 0.007752 +-0.068767 -0.055088 0.011252 +-0.078934 -0.055088 0.011252 +-0.078934 -0.055088 0.007752 +-0.078934 -0.002102 0.007752 +-0.078934 -0.002102 0.011252 +-0.066037 -0.002102 0.011252 +-0.066037 -0.002102 0.007752 +-0.078934 -0.018688 0.007752 +-0.078934 -0.018688 0.011252 +-0.066037 -0.018688 0.011252 +-0.066037 -0.018688 0.007752 +numsurf 10 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +9 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +3 0 0 +8 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +8 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +11 0 0 +8 0 0 +4 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +5 0 0 +4 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +6 0 0 +5 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +7 0 0 +6 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +4 0 0 +5 0 0 +6 0 0 +kids 0 +OBJECT poly +name "Cylinder.001" +data 12 +Cylinder.016 +crease 30.000000 +numvert 66 +-0.277404 -0.001268 -0.008857 +-0.275847 -0.001268 -0.006959 +-0.274689 -0.001268 -0.004793 +-0.273976 -0.001268 -0.002444 +-0.273736 -0.001268 0 +-0.273976 -0.001268 0.002444 +-0.274689 -0.001268 0.004793 +-0.275847 -0.001268 0.006959 +-0.277404 -0.001268 0.008857 +-0.279303 -0.001268 0.010415 +-0.281468 -0.001268 0.011572 +-0.283818 -0.001268 0.012285 +-0.286261 -0.001268 0.012526 +-0.288705 -0.001268 0.012285 +-0.291055 -0.001268 0.011572 +-0.29322 -0.001268 0.010415 +-0.295118 -0.001268 0.008857 +-0.296676 -0.001268 0.006959 +-0.297833 -0.001268 0.004793 +-0.298546 -0.001268 0.002444 +-0.298787 -0.001268 0 +-0.298546 -0.001268 -0.002444 +-0.297833 -0.001268 -0.004793 +-0.296676 -0.001268 -0.006959 +-0.295118 -0.001268 -0.008857 +-0.29322 -0.001268 -0.010415 +-0.291055 -0.001268 -0.011572 +-0.288705 -0.001268 -0.012285 +-0.286261 -0.001268 -0.012526 +-0.283818 -0.001268 -0.012285 +-0.281468 -0.001268 -0.011572 +-0.279302 -0.001268 -0.010415 +-0.277404 0.015212 -0.008857 +-0.275847 0.015212 -0.006959 +-0.274689 0.015212 -0.004793 +-0.273976 0.015212 -0.002444 +-0.273736 0.015212 0 +-0.273976 0.015212 0.002444 +-0.274689 0.015212 0.004793 +-0.275847 0.015212 0.006959 +-0.277404 0.015212 0.008857 +-0.279303 0.015212 0.010415 +-0.281468 0.015212 0.011572 +-0.283818 0.015212 0.012285 +-0.286261 0.015212 0.012526 +-0.288705 0.015212 0.012285 +-0.291055 0.015212 0.011572 +-0.29322 0.015212 0.010415 +-0.295118 0.015212 0.008857 +-0.296676 0.015212 0.006959 +-0.297833 0.015212 0.004793 +-0.298546 0.015212 0.002444 +-0.298787 0.015212 0 +-0.298546 0.015212 -0.002444 +-0.297833 0.015212 -0.004793 +-0.296676 0.015212 -0.006959 +-0.295118 0.015212 -0.008857 +-0.29322 0.015212 -0.010415 +-0.291055 0.015212 -0.011572 +-0.288705 0.015212 -0.012285 +-0.286261 0.015212 -0.012526 +-0.283818 0.015212 -0.012285 +-0.281468 0.015212 -0.011572 +-0.279303 0.015212 -0.010415 +-0.286261 -0.001268 0 +-0.286261 0.015212 0 +numsurf 96 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +3 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +5 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +11 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +13 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +48 0 0 +47 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +17 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +29 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +62 0 0 +61 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 4 +refs 3 +31 0 0 +0 0 0 +64 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +32 0 0 +63 0 0 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +32 0 0 +33 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 4 +1 0 0 +33 0 0 +34 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 4 +2 0 0 +34 0 0 +35 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +35 0 0 +36 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +36 0 0 +37 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 4 +5 0 0 +37 0 0 +38 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 4 +6 0 0 +38 0 0 +39 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +7 0 0 +39 0 0 +40 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 4 +8 0 0 +40 0 0 +41 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 4 +9 0 0 +41 0 0 +42 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 4 +10 0 0 +42 0 0 +43 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 4 +11 0 0 +43 0 0 +44 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +44 0 0 +45 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +45 0 0 +46 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +46 0 0 +47 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +47 0 0 +48 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +48 0 0 +49 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 4 +17 0 0 +49 0 0 +50 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 4 +18 0 0 +50 0 0 +51 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 4 +19 0 0 +51 0 0 +52 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 4 +20 0 0 +52 0 0 +53 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 4 +21 0 0 +53 0 0 +54 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +54 0 0 +55 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 4 +23 0 0 +55 0 0 +56 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 4 +24 0 0 +56 0 0 +57 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 4 +25 0 0 +57 0 0 +58 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 4 +26 0 0 +58 0 0 +59 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 4 +27 0 0 +59 0 0 +60 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 4 +28 0 0 +60 0 0 +61 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 4 +29 0 0 +61 0 0 +62 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 4 +30 0 0 +62 0 0 +63 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 4 +32 0 0 +0 0 0 +31 0 0 +63 0 0 +kids 0 +OBJECT group +name "Cube.011" +kids 3 +OBJECT poly +name "Cube.011" +data 8 +Cube.011 +crease 30.000000 +numvert 8 +-0.006992 -0.015748 0.29506 +0.006992 -0.015748 0.29506 +0.006992 -0.015748 0.006984 +-0.006992 -0.015748 0.006984 +-0.006992 -0.001763 0.29506 +0.006992 -0.001763 0.29506 +0.006992 -0.001763 0.006984 +-0.006992 -0.001763 0.006984 +numsurf 6 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +3 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 2 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +3 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Cube.006" +data 8 +Cube.006 +crease 30.000000 +numvert 12 +0.011158 -0.018688 0.078146 +0.007658 -0.018688 0.078146 +0.007658 -0.018688 0.065249 +0.011158 -0.018688 0.065249 +0.011158 -0.002102 0.078146 +0.007658 -0.002102 0.078146 +0.007658 -0.002102 0.065249 +0.011158 -0.002102 0.065249 +0.011158 -0.055088 0.065249 +0.007658 -0.055088 0.065249 +0.007658 -0.055088 0.075416 +0.011158 -0.055088 0.075416 +numsurf 10 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +2 0 0 +3 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +0 0 0 +11 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +1 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +2 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +10 0 0 +9 0 0 +8 0 0 +kids 0 +OBJECT poly +name "Cylinder.003" +data 12 +Cylinder.018 +crease 30.000000 +numvert 66 +0.008857 -0.001274 0.279066 +0.010415 -0.001274 0.280964 +0.011572 -0.001274 0.283129 +0.012285 -0.001274 0.285479 +0.012526 -0.001274 0.287923 +0.012285 -0.001274 0.290366 +0.011572 -0.001274 0.292716 +0.010415 -0.001274 0.294882 +0.008857 -0.001274 0.29678 +0.006959 -0.001274 0.298337 +0.004793 -0.001274 0.299495 +0.002444 -0.001274 0.300208 +0 -0.001274 0.300448 +-0.002444 -0.001274 0.300208 +-0.004793 -0.001274 0.299495 +-0.006959 -0.001274 0.298337 +-0.008857 -0.001274 0.29678 +-0.010415 -0.001274 0.294882 +-0.011572 -0.001274 0.292716 +-0.012285 -0.001274 0.290366 +-0.012526 -0.001274 0.287923 +-0.012285 -0.001274 0.285479 +-0.011572 -0.001274 0.283129 +-0.010415 -0.001274 0.280964 +-0.008857 -0.001274 0.279066 +-0.006959 -0.001274 0.277508 +-0.004793 -0.001274 0.276351 +-0.002444 -0.001274 0.275638 +0 -0.001274 0.275397 +0.002444 -0.001274 0.275638 +0.004793 -0.001274 0.276351 +0.006959 -0.001274 0.277508 +0.008857 0.015206 0.279066 +0.010415 0.015206 0.280964 +0.011572 0.015206 0.28313 +0.012285 0.015206 0.285479 +0.012526 0.015206 0.287923 +0.012285 0.015206 0.290366 +0.011572 0.015206 0.292716 +0.010415 0.015206 0.294882 +0.008857 0.015206 0.29678 +0.006959 0.015206 0.298337 +0.004793 0.015206 0.299495 +0.002444 0.015206 0.300208 +0 0.015206 0.300448 +-0.002444 0.015206 0.300208 +-0.004793 0.015206 0.299495 +-0.006959 0.015206 0.298337 +-0.008857 0.015206 0.29678 +-0.010415 0.015206 0.294882 +-0.011572 0.015206 0.292716 +-0.012285 0.015206 0.290366 +-0.012526 0.015206 0.287923 +-0.012285 0.015206 0.285479 +-0.011572 0.015206 0.28313 +-0.010415 0.015206 0.280964 +-0.008857 0.015206 0.279066 +-0.006959 0.015206 0.277508 +-0.004793 0.015206 0.276351 +-0.002444 0.015206 0.275638 +0 0.015206 0.275397 +0.002444 0.015206 0.275638 +0.004793 0.015206 0.276351 +0.006959 0.015206 0.277508 +0 -0.001274 0.287923 +0 0.015206 0.287923 +numsurf 96 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +3 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +5 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +11 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +13 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +48 0 0 +47 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +17 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +29 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +62 0 0 +61 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 4 +refs 3 +31 0 0 +0 0 0 +64 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +32 0 0 +63 0 0 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +32 0 0 +33 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 4 +1 0 0 +33 0 0 +34 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 4 +2 0 0 +34 0 0 +35 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +35 0 0 +36 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +36 0 0 +37 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 4 +5 0 0 +37 0 0 +38 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 4 +6 0 0 +38 0 0 +39 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +7 0 0 +39 0 0 +40 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 4 +8 0 0 +40 0 0 +41 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 4 +9 0 0 +41 0 0 +42 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 4 +10 0 0 +42 0 0 +43 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 4 +11 0 0 +43 0 0 +44 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +44 0 0 +45 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +45 0 0 +46 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +46 0 0 +47 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +47 0 0 +48 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +48 0 0 +49 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 4 +17 0 0 +49 0 0 +50 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 4 +18 0 0 +50 0 0 +51 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 4 +19 0 0 +51 0 0 +52 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 4 +20 0 0 +52 0 0 +53 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 4 +21 0 0 +53 0 0 +54 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +54 0 0 +55 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 4 +23 0 0 +55 0 0 +56 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 4 +24 0 0 +56 0 0 +57 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 4 +25 0 0 +57 0 0 +58 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 4 +26 0 0 +58 0 0 +59 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 4 +27 0 0 +59 0 0 +60 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 4 +28 0 0 +60 0 0 +61 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 4 +29 0 0 +61 0 0 +62 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 4 +30 0 0 +62 0 0 +63 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 4 +32 0 0 +0 0 0 +31 0 0 +63 0 0 +kids 0 +OBJECT group +name "Cube.012" +kids 3 +OBJECT poly +name "Cube.012" +data 8 +Cube.012 +crease 30.000000 +numvert 8 +0.29506 -0.015748 0.006992 +0.29506 -0.015748 -0.006992 +0.006984 -0.015748 -0.006992 +0.006984 -0.015748 0.006992 +0.29506 -0.001763 0.006992 +0.29506 -0.001763 -0.006992 +0.006984 -0.001763 -0.006992 +0.006984 -0.001763 0.006992 +numsurf 6 +SURF 0x20 +mat 5 +refs 4 +0 0 0 +3 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 5 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 5 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 5 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 5 +refs 4 +2 0 0 +3 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 5 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Cube.005" +data 8 +Cube.005 +crease 30.000000 +numvert 12 +0.067746 -0.054026 -0.007403 +0.067746 -0.054026 -0.010903 +0.077913 -0.054026 -0.010903 +0.077913 -0.054026 -0.007403 +0.077913 -0.00104 -0.007403 +0.077913 -0.00104 -0.010903 +0.065016 -0.00104 -0.010903 +0.065016 -0.00104 -0.007403 +0.077913 -0.017626 -0.007403 +0.077913 -0.017626 -0.010903 +0.065016 -0.017626 -0.010903 +0.065016 -0.017626 -0.007403 +numsurf 10 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +9 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +3 0 0 +8 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +8 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +11 0 0 +8 0 0 +4 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +5 0 0 +4 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +6 0 0 +5 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +7 0 0 +6 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +4 0 0 +5 0 0 +6 0 0 +kids 0 +OBJECT poly +name "Cylinder.002" +data 12 +Cylinder.017 +crease 30.000000 +numvert 66 +0.29678 -0.001268 -0.008857 +0.298337 -0.001268 -0.006959 +0.299495 -0.001268 -0.004793 +0.300208 -0.001268 -0.002444 +0.300448 -0.001268 0 +0.300208 -0.001268 0.002444 +0.299495 -0.001268 0.004793 +0.298337 -0.001268 0.006959 +0.29678 -0.001268 0.008857 +0.294882 -0.001268 0.010415 +0.292716 -0.001268 0.011572 +0.290366 -0.001268 0.012285 +0.287923 -0.001268 0.012526 +0.285479 -0.001268 0.012285 +0.283129 -0.001268 0.011572 +0.280964 -0.001268 0.010415 +0.279066 -0.001268 0.008857 +0.277508 -0.001268 0.006959 +0.276351 -0.001268 0.004793 +0.275638 -0.001268 0.002444 +0.275397 -0.001268 0 +0.275638 -0.001268 -0.002444 +0.276351 -0.001268 -0.004793 +0.277508 -0.001268 -0.006959 +0.279066 -0.001268 -0.008857 +0.280964 -0.001268 -0.010415 +0.283129 -0.001268 -0.011572 +0.285479 -0.001268 -0.012285 +0.287923 -0.001268 -0.012526 +0.290366 -0.001268 -0.012285 +0.292716 -0.001268 -0.011572 +0.294882 -0.001268 -0.010415 +0.29678 0.015212 -0.008857 +0.298337 0.015212 -0.006959 +0.299495 0.015212 -0.004793 +0.300208 0.015212 -0.002444 +0.300448 0.015212 0 +0.300208 0.015212 0.002444 +0.299495 0.015212 0.004793 +0.298337 0.015212 0.006959 +0.29678 0.015212 0.008857 +0.294882 0.015212 0.010415 +0.292716 0.015212 0.011572 +0.290366 0.015212 0.012285 +0.287923 0.015212 0.012526 +0.285479 0.015212 0.012285 +0.283129 0.015212 0.011572 +0.280964 0.015212 0.010415 +0.279066 0.015212 0.008857 +0.277508 0.015212 0.006959 +0.276351 0.015212 0.004793 +0.275638 0.015212 0.002444 +0.275397 0.015212 0 +0.275638 0.015212 -0.002444 +0.276351 0.015212 -0.004793 +0.277508 0.015212 -0.006959 +0.279066 0.015212 -0.008857 +0.280964 0.015212 -0.010415 +0.283129 0.015212 -0.011572 +0.285479 0.015212 -0.012285 +0.287923 0.015212 -0.012526 +0.290366 0.015212 -0.012285 +0.292716 0.015212 -0.011572 +0.294882 0.015212 -0.010415 +0.287923 -0.001268 0 +0.287923 0.015212 0 +numsurf 96 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +3 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +5 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +11 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +13 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +48 0 0 +47 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +17 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +29 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +62 0 0 +61 0 0 +SURF 0x30 +mat 4 +refs 3 +64 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 4 +refs 3 +31 0 0 +0 0 0 +64 0 0 +SURF 0x30 +mat 4 +refs 3 +65 0 0 +32 0 0 +63 0 0 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +32 0 0 +33 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 4 +1 0 0 +33 0 0 +34 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 4 +2 0 0 +34 0 0 +35 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +35 0 0 +36 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +36 0 0 +37 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 4 +5 0 0 +37 0 0 +38 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 4 +6 0 0 +38 0 0 +39 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +7 0 0 +39 0 0 +40 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 4 +8 0 0 +40 0 0 +41 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 4 +9 0 0 +41 0 0 +42 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 4 +10 0 0 +42 0 0 +43 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 4 +11 0 0 +43 0 0 +44 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +44 0 0 +45 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +45 0 0 +46 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +46 0 0 +47 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +47 0 0 +48 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +48 0 0 +49 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 4 +17 0 0 +49 0 0 +50 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 4 +18 0 0 +50 0 0 +51 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 4 +19 0 0 +51 0 0 +52 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 4 +20 0 0 +52 0 0 +53 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 4 +21 0 0 +53 0 0 +54 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +54 0 0 +55 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 4 +23 0 0 +55 0 0 +56 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 4 +24 0 0 +56 0 0 +57 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 4 +25 0 0 +57 0 0 +58 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 4 +26 0 0 +58 0 0 +59 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 4 +27 0 0 +59 0 0 +60 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 4 +28 0 0 +60 0 0 +61 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 4 +29 0 0 +61 0 0 +62 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 4 +30 0 0 +62 0 0 +63 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 4 +32 0 0 +0 0 0 +31 0 0 +63 0 0 +kids 0 +OBJECT poly +name "Cylinder" +data 8 +Cylinder +crease 30.000000 +numvert 40 +-0.010751 -0.014644 0.057146 +-0.01098 -0.014886 0.065197 +-0.007407 -0.014886 0.065197 +-0.007635 -0.014644 0.057146 +-0.007405 0.00376 0.065012 +-0.007405 0.0164 0.063768 +-0.007405 0.028554 0.060081 +-0.007405 0.039755 0.054093 +-0.007405 0.049573 0.046036 +-0.007405 0.05763 0.036218 +-0.007405 0.063617 0.025017 +-0.007405 0.067304 0.012863 +-0.007405 0.068549 0.000223 +-0.010978 0.00376 0.065012 +-0.010978 0.0164 0.063767 +-0.010978 0.028554 0.060081 +-0.010978 0.039755 0.054093 +-0.010978 0.049573 0.046036 +-0.010978 0.05763 0.036218 +-0.010978 0.063617 0.025017 +-0.010978 0.067304 0.012863 +-0.010978 0.068549 0.000223 +-0.010749 0.060498 0.000465 +-0.010749 0.059412 0.011487 +-0.010749 0.056197 0.022085 +-0.010749 0.050976 0.031852 +-0.010749 0.04395 0.040413 +-0.010749 0.035389 0.047439 +-0.010749 0.025622 0.05266 +-0.010749 0.015024 0.055875 +-0.010749 0.004002 0.056961 +-0.007634 0.060498 0.000465 +-0.007634 0.059412 0.011487 +-0.007634 0.056197 0.022085 +-0.007634 0.050976 0.031852 +-0.007634 0.04395 0.040413 +-0.007634 0.035389 0.047439 +-0.007634 0.025622 0.05266 +-0.007634 0.015023 0.055875 +-0.007634 0.004002 0.056961 +numsurf 30 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +0 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +3 0 0 +39 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +30 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +13 0 0 +4 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +39 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +20 0 0 +21 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +19 0 0 +20 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +18 0 0 +19 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +17 0 0 +18 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +16 0 0 +17 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +6 0 0 +15 0 0 +16 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +5 0 0 +14 0 0 +15 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +13 0 0 +14 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +38 0 0 +39 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +30 0 0 +29 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +37 0 0 +38 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +29 0 0 +28 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 3 +refs 4 +36 0 0 +37 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +28 0 0 +27 0 0 +16 0 0 +15 0 0 +SURF 0x20 +mat 3 +refs 4 +35 0 0 +36 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +27 0 0 +26 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 3 +refs 4 +34 0 0 +35 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +26 0 0 +25 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 3 +refs 4 +33 0 0 +34 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +25 0 0 +24 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 3 +refs 4 +32 0 0 +33 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +24 0 0 +23 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 4 +31 0 0 +32 0 0 +11 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +23 0 0 +22 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 3 +refs 4 +22 0 0 +31 0 0 +12 0 0 +21 0 0 +kids 0 +OBJECT poly +name "Cylinder.005" +data 12 +Cylinder.001 +crease 30.000000 +numvert 40 +0.05716 -0.014644 0.011202 +0.065212 -0.014886 0.01143 +0.065212 -0.014886 0.007857 +0.05716 -0.014644 0.008086 +0.065027 0.00376 0.007856 +0.063782 0.0164 0.007856 +0.060095 0.028554 0.007856 +0.054108 0.039755 0.007856 +0.046051 0.049573 0.007856 +0.036233 0.05763 0.007856 +0.025031 0.063617 0.007856 +0.012877 0.067304 0.007856 +0.000237 0.068549 0.007856 +0.065027 0.00376 0.011429 +0.063782 0.0164 0.011429 +0.060095 0.028554 0.011429 +0.054108 0.039755 0.011429 +0.046051 0.049573 0.011429 +0.036233 0.05763 0.011429 +0.025031 0.063618 0.011429 +0.012877 0.067304 0.011429 +0.000238 0.068549 0.011429 +0.000479 0.060498 0.0112 +0.011501 0.059412 0.0112 +0.022099 0.056197 0.0112 +0.031867 0.050976 0.0112 +0.040428 0.04395 0.0112 +0.047454 0.035389 0.0112 +0.052675 0.025622 0.0112 +0.05589 0.015024 0.0112 +0.056975 0.004002 0.0112 +0.000479 0.060498 0.008084 +0.011501 0.059412 0.008084 +0.022099 0.056197 0.008084 +0.031867 0.050976 0.008084 +0.040428 0.04395 0.008084 +0.047454 0.035389 0.008084 +0.052675 0.025622 0.008084 +0.05589 0.015023 0.008084 +0.056975 0.004002 0.008084 +numsurf 30 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +0 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +3 0 0 +39 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +30 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +13 0 0 +4 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +39 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +20 0 0 +21 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +19 0 0 +20 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +18 0 0 +19 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +17 0 0 +18 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +16 0 0 +17 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +6 0 0 +15 0 0 +16 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +5 0 0 +14 0 0 +15 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +13 0 0 +14 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +38 0 0 +39 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +30 0 0 +29 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +37 0 0 +38 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +29 0 0 +28 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 3 +refs 4 +36 0 0 +37 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +28 0 0 +27 0 0 +16 0 0 +15 0 0 +SURF 0x20 +mat 3 +refs 4 +35 0 0 +36 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +27 0 0 +26 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 3 +refs 4 +34 0 0 +35 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +26 0 0 +25 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 3 +refs 4 +33 0 0 +34 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +25 0 0 +24 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 3 +refs 4 +32 0 0 +33 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +24 0 0 +23 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 4 +31 0 0 +32 0 0 +11 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +23 0 0 +22 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 3 +refs 4 +22 0 0 +31 0 0 +12 0 0 +21 0 0 +kids 0 +OBJECT poly +name "Cylinder.006" +data 12 +Cylinder.010 +crease 30.000000 +numvert 44 +0.007481 0.05998 -0.008319 +0.010937 0.05998 -0.001538 +0.009746 0.05998 0.00598 +0.004364 0.05998 0.011362 +-0.003153 0.05998 0.012552 +-0.009935 0.05998 0.009097 +-0.01339 0.05998 0.002315 +-0.0122 0.05998 -0.005202 +-0.006818 0.05998 -0.010584 +0.0007 0.05998 -0.011775 +0.007481 0.062293 -0.008319 +0.010937 0.062293 -0.001538 +0.009746 0.062293 0.00598 +0.004364 0.062293 0.011362 +-0.003153 0.062293 0.012552 +-0.009935 0.062293 0.009097 +-0.01339 0.062293 0.002315 +-0.0122 0.062293 -0.005202 +-0.006818 0.062293 -0.010584 +0.0007 0.062293 -0.011775 +-0.001227 0.05998 0.000389 +-0.001227 0.062293 0.000389 +0.007481 0.066428 -0.008319 +0.010937 0.066428 -0.001538 +0.009746 0.066428 0.00598 +0.004364 0.066428 0.011362 +-0.003153 0.066428 0.012552 +-0.009935 0.066428 0.009097 +-0.01339 0.066428 0.002315 +-0.0122 0.066428 -0.005202 +-0.006818 0.066428 -0.010584 +0.0007 0.066428 -0.011775 +0.007481 0.068741 -0.008319 +0.010937 0.068741 -0.001538 +0.009746 0.068741 0.00598 +0.004364 0.068741 0.011362 +-0.003153 0.068741 0.012552 +-0.009935 0.068741 0.009097 +-0.01339 0.068741 0.002315 +-0.0122 0.068741 -0.005202 +-0.006818 0.068741 -0.010584 +0.0007 0.068741 -0.011775 +-0.001227 0.066428 0.000389 +-0.001227 0.068741 0.000389 +numsurf 60 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +0 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +12 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +13 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +3 0 0 +4 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +16 0 0 +15 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 3 +refs 3 +20 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 3 +refs 3 +9 0 0 +0 0 0 +20 0 0 +SURF 0x20 +mat 3 +refs 3 +21 0 0 +10 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +10 0 0 +11 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +11 0 0 +12 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +2 0 0 +12 0 0 +13 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +13 0 0 +14 0 0 +4 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +14 0 0 +15 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +5 0 0 +15 0 0 +16 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +6 0 0 +16 0 0 +17 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +17 0 0 +18 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +18 0 0 +19 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +0 0 0 +9 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +22 0 0 +23 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +33 0 0 +32 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +23 0 0 +24 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +34 0 0 +33 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +24 0 0 +25 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +25 0 0 +26 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +26 0 0 +27 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +27 0 0 +28 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +28 0 0 +29 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +29 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +40 0 0 +39 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +41 0 0 +40 0 0 +SURF 0x20 +mat 3 +refs 3 +31 0 0 +22 0 0 +42 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +32 0 0 +41 0 0 +SURF 0x20 +mat 3 +refs 4 +22 0 0 +32 0 0 +33 0 0 +23 0 0 +SURF 0x20 +mat 3 +refs 4 +23 0 0 +33 0 0 +34 0 0 +24 0 0 +SURF 0x20 +mat 3 +refs 4 +24 0 0 +34 0 0 +35 0 0 +25 0 0 +SURF 0x20 +mat 3 +refs 4 +25 0 0 +35 0 0 +36 0 0 +26 0 0 +SURF 0x20 +mat 3 +refs 4 +26 0 0 +36 0 0 +37 0 0 +27 0 0 +SURF 0x20 +mat 3 +refs 4 +27 0 0 +37 0 0 +38 0 0 +28 0 0 +SURF 0x20 +mat 3 +refs 4 +28 0 0 +38 0 0 +39 0 0 +29 0 0 +SURF 0x20 +mat 3 +refs 4 +29 0 0 +39 0 0 +40 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 4 +30 0 0 +40 0 0 +41 0 0 +31 0 0 +SURF 0x20 +mat 3 +refs 4 +32 0 0 +22 0 0 +31 0 0 +41 0 0 +kids 0 +OBJECT poly +name "Cylinder.007" +data 12 +Cylinder.002 +crease 30.000000 +numvert 40 +0.010715 -0.014644 -0.057343 +0.010944 -0.014886 -0.065394 +0.007371 -0.014886 -0.065394 +0.007599 -0.014644 -0.057343 +0.007369 0.00376 -0.065209 +0.007369 0.0164 -0.063965 +0.007369 0.028554 -0.060278 +0.007369 0.039755 -0.05429 +0.007369 0.049573 -0.046233 +0.007369 0.05763 -0.036415 +0.007369 0.063617 -0.025214 +0.007369 0.067304 -0.01306 +0.007369 0.068549 -0.00042 +0.010942 0.00376 -0.065209 +0.010942 0.0164 -0.063965 +0.010942 0.028554 -0.060278 +0.010942 0.039755 -0.05429 +0.010942 0.049573 -0.046233 +0.010942 0.05763 -0.036415 +0.010942 0.063618 -0.025214 +0.010942 0.067304 -0.01306 +0.010942 0.068549 -0.00042 +0.010714 0.060498 -0.000662 +0.010714 0.059412 -0.011684 +0.010714 0.056197 -0.022282 +0.010714 0.050976 -0.032049 +0.010714 0.04395 -0.04061 +0.010714 0.035389 -0.047636 +0.010714 0.025622 -0.052857 +0.010714 0.015024 -0.056072 +0.010714 0.004002 -0.057158 +0.007598 0.060498 -0.000662 +0.007598 0.059412 -0.011684 +0.007598 0.056197 -0.022282 +0.007598 0.050976 -0.032049 +0.007598 0.04395 -0.04061 +0.007598 0.035389 -0.047636 +0.007598 0.025622 -0.052857 +0.007598 0.015023 -0.056072 +0.007598 0.004002 -0.057158 +numsurf 30 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +0 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +3 0 0 +39 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +30 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +13 0 0 +4 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +39 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +20 0 0 +21 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +19 0 0 +20 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +18 0 0 +19 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +17 0 0 +18 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +16 0 0 +17 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +6 0 0 +15 0 0 +16 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +5 0 0 +14 0 0 +15 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +13 0 0 +14 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +38 0 0 +39 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +30 0 0 +29 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +37 0 0 +38 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +29 0 0 +28 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 3 +refs 4 +36 0 0 +37 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +28 0 0 +27 0 0 +16 0 0 +15 0 0 +SURF 0x20 +mat 3 +refs 4 +35 0 0 +36 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +27 0 0 +26 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 3 +refs 4 +34 0 0 +35 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +26 0 0 +25 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 3 +refs 4 +33 0 0 +34 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +25 0 0 +24 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 3 +refs 4 +32 0 0 +33 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +24 0 0 +23 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 4 +31 0 0 +32 0 0 +11 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +23 0 0 +22 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 3 +refs 4 +22 0 0 +31 0 0 +12 0 0 +21 0 0 +kids 0 +OBJECT poly +name "Cylinder.008" +data 12 +Cylinder.003 +crease 30.000000 +numvert 40 +-0.05703 -0.014644 -0.010791 +-0.065081 -0.014886 -0.011019 +-0.065081 -0.014886 -0.007446 +-0.05703 -0.014644 -0.007675 +-0.064896 0.00376 -0.007445 +-0.063652 0.0164 -0.007445 +-0.059965 0.028554 -0.007445 +-0.053977 0.039755 -0.007445 +-0.04592 0.049573 -0.007445 +-0.036102 0.05763 -0.007445 +-0.024901 0.063617 -0.007445 +-0.012747 0.067304 -0.007445 +-0.000107 0.068549 -0.007445 +-0.064896 0.00376 -0.011018 +-0.063652 0.0164 -0.011018 +-0.059965 0.028554 -0.011018 +-0.053977 0.039755 -0.011018 +-0.04592 0.049573 -0.011018 +-0.036102 0.05763 -0.011018 +-0.024901 0.063618 -0.011018 +-0.012747 0.067304 -0.011018 +-0.000107 0.068549 -0.011018 +-0.000349 0.060498 -0.010789 +-0.011371 0.059412 -0.010789 +-0.021969 0.056197 -0.010789 +-0.031736 0.050976 -0.010789 +-0.040297 0.04395 -0.010789 +-0.047323 0.035389 -0.010789 +-0.052544 0.025622 -0.010789 +-0.055759 0.015024 -0.010789 +-0.056845 0.004002 -0.010789 +-0.000349 0.060498 -0.007674 +-0.011371 0.059412 -0.007674 +-0.021969 0.056197 -0.007674 +-0.031736 0.050976 -0.007674 +-0.040297 0.04395 -0.007674 +-0.047323 0.035389 -0.007674 +-0.052544 0.025622 -0.007674 +-0.055759 0.015023 -0.007674 +-0.056845 0.004002 -0.007674 +numsurf 30 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +0 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +3 0 0 +39 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +30 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +13 0 0 +4 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +39 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +20 0 0 +21 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +19 0 0 +20 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +18 0 0 +19 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +17 0 0 +18 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +7 0 0 +16 0 0 +17 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +6 0 0 +15 0 0 +16 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +5 0 0 +14 0 0 +15 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +13 0 0 +14 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +38 0 0 +39 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +30 0 0 +29 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +37 0 0 +38 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 3 +refs 4 +29 0 0 +28 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 3 +refs 4 +36 0 0 +37 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +28 0 0 +27 0 0 +16 0 0 +15 0 0 +SURF 0x20 +mat 3 +refs 4 +35 0 0 +36 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +27 0 0 +26 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 3 +refs 4 +34 0 0 +35 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +26 0 0 +25 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 3 +refs 4 +33 0 0 +34 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +25 0 0 +24 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 3 +refs 4 +32 0 0 +33 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +24 0 0 +23 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 4 +31 0 0 +32 0 0 +11 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +23 0 0 +22 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 3 +refs 4 +22 0 0 +31 0 0 +12 0 0 +21 0 0 +kids 0 +OBJECT poly +name "propeller3" +data 8 +Tube.006 +crease 30.000000 +numvert 281 +-0.286422 0.012212 0.001364 +-0.285907 0.012224 0.000786 +-0.287117 0.012207 0.001705 +-0.285655 0.01224 5.7e-05 +-0.287887 0.012209 0.001752 +-0.2857 0.012256 -0.000713 +-0.288617 0.012217 0.001502 +-0.286037 0.012273 -0.001407 +-0.289196 0.01223 0.000991 +-0.286615 0.012285 -0.00192 +-0.289535 0.012245 0.000297 +-0.287344 0.012292 -0.002172 +-0.289582 0.012262 -0.000473 +-0.288114 0.012293 -0.002126 +-0.289331 0.012276 -0.001202 +-0.288815 0.012286 -0.001786 +-0.286426 0.020094 0.0015 +-0.285916 0.020106 0.000924 +-0.287118 0.02009 0.001836 +-0.285664 0.020121 0.000195 +-0.287889 0.020091 0.001884 +-0.285709 0.020139 -0.000578 +-0.28862 0.020099 0.001633 +-0.286047 0.020155 -0.001273 +-0.2892 0.020112 0.001121 +-0.286625 0.020167 -0.001787 +-0.28954 0.020128 0.000426 +-0.287356 0.020174 -0.002039 +-0.289587 0.020144 -0.000345 +-0.288128 0.020174 -0.001993 +-0.289336 0.020158 -0.001076 +-0.288823 0.020169 -0.001656 +-0.284976 0.020291 0.003413 +-0.283853 0.020318 0.002145 +-0.2865 0.020282 0.004155 +-0.283295 0.020352 0.000537 +-0.288199 0.020286 0.004261 +-0.283396 0.02039 -0.001162 +-0.289809 0.020303 0.003707 +-0.284139 0.020426 -0.002692 +-0.291084 0.020331 0.00258 +-0.285412 0.020453 -0.003823 +-0.291831 0.020366 0.00105 +-0.28702 0.020469 -0.00438 +-0.291936 0.020402 -0.000648 +-0.28872 0.02047 -0.004279 +-0.291383 0.020434 -0.002258 +-0.290253 0.020455 -0.003535 +-0.284898 0.031885 0.003723 +-0.28377 0.031901 0.00245 +-0.286427 0.031865 0.004468 +-0.283215 0.031916 0.000841 +-0.288127 0.03185 0.00457 +-0.283317 0.031927 -0.000858 +-0.289736 0.03184 0.004016 +-0.284062 0.031931 -0.002389 +-0.291011 0.031837 0.002886 +-0.285335 0.03193 -0.003518 +-0.291756 0.031843 0.001357 +-0.286945 0.031922 -0.004074 +-0.291859 0.031855 -0.000343 +-0.288644 0.031909 -0.003971 +-0.291304 0.031873 -0.001952 +-0.290175 0.031894 -0.003226 +-0.284117 0.032499 0.004763 +-0.282631 0.03252 0.003086 +-0.286132 0.032473 0.005744 +-0.281899 0.032539 0.000967 +-0.28837 0.032451 0.00588 +-0.282034 0.032553 -0.001271 +-0.290489 0.032438 0.005149 +-0.283015 0.03256 -0.003287 +-0.292168 0.032436 0.003662 +-0.284692 0.032558 -0.004775 +-0.29315 0.032443 0.001646 +-0.286812 0.032548 -0.005507 +-0.293286 0.03246 -0.000592 +-0.28905 0.03253 -0.005372 +-0.292555 0.032483 -0.00271 +-0.291067 0.032509 -0.00439 +-0.286414 0.045274 0.001966 +-0.285768 0.045297 0.001237 +-0.287291 0.045277 0.002394 +-0.285449 0.045344 0.000317 +-0.288263 0.045305 0.002453 +-0.285507 0.045405 -0.000654 +-0.289184 0.045355 0.002138 +-0.285933 0.045472 -0.001529 +-0.289913 0.045418 0.001493 +-0.286662 0.045536 -0.002173 +-0.290339 0.045486 0.000618 +-0.287583 0.045586 -0.002489 +-0.290397 0.045547 -0.000353 +-0.288556 0.045613 -0.002429 +-0.290079 0.045593 -0.001273 +-0.289432 0.045616 -0.002003 +-0.287923 0.046439 0 +-0.286919 0.023518 -0.004706 +-0.282179 0.023351 0.001534 +-0.28912 0.023518 -0.004573 +-0.282899 0.023297 0.003617 +-0.291101 0.023501 -0.003607 +-0.284361 0.023263 0.005266 +-0.292562 0.023471 -0.001957 +-0.286343 0.023251 0.00623 +-0.29328 0.023431 0.000127 +-0.288543 0.023264 0.006363 +-0.293147 0.023389 0.002326 +-0.290627 0.023299 0.005644 +-0.292229 0.023347 0.004245 +-0.283231 0.02347 -0.002587 +-0.284836 0.023502 -0.003987 +-0.282312 0.023413 -0.000665 +-0.286913 0.029906 -0.004583 +-0.282131 0.029737 0.001713 +-0.289113 0.029906 -0.004449 +-0.282851 0.029685 0.003795 +-0.291094 0.029889 -0.003484 +-0.284313 0.029649 0.005444 +-0.292555 0.029859 -0.001834 +-0.286295 0.029637 0.006408 +-0.293274 0.02982 0.000249 +-0.288495 0.029651 0.006541 +-0.29314 0.029777 0.002449 +-0.290578 0.029686 0.005822 +-0.292202 0.029738 0.004396 +-0.283203 0.029861 -0.002436 +-0.284829 0.02989 -0.003864 +-0.282264 0.0298 -0.000487 +-0.286098 0.029784 -0.000239 +-0.285965 0.029791 -0.00034 +-0.28944 0.029744 0.002298 +-0.289307 0.029741 0.002198 +-0.289839 0.029774 0.000718 +-0.288024 0.029711 0.003106 +-0.289561 0.02979 -8.7e-05 +-0.287175 0.029706 0.003055 +-0.288997 0.029802 -0.000724 +-0.286409 0.02971 0.002682 +-0.288231 0.029808 -0.001096 +-0.285845 0.029724 0.002045 +-0.287382 0.029808 -0.001149 +-0.285567 0.029744 0.001241 +-0.286125 0.023463 -0.000388 +-0.285993 0.023464 -0.000489 +-0.289467 0.023417 0.002149 +-0.289335 0.023419 0.002049 +-0.289844 0.023451 0.000596 +-0.288072 0.023389 0.00293 +-0.289567 0.023467 -0.000208 +-0.287223 0.023384 0.002879 +-0.289003 0.023478 -0.000845 +-0.286457 0.023388 0.002506 +-0.288238 0.023485 -0.001218 +-0.285893 0.023402 0.001869 +-0.287388 0.023485 -0.00127 +-0.285615 0.023422 0.001065 +-0.208611 0.02286 0.105669 +-0.214208 0.023193 0.104663 +-0.216201 0.023462 0.103762 +-0.214233 0.023492 0.104013 +-0.207417 0.022804 0.102801 +-0.248932 0.023615 0.060045 +-0.251894 0.022325 0.059905 +-0.248946 0.022667 0.058309 +-0.233981 0.027009 0.054931 +-0.277537 0.029358 0.01442 +-0.274923 0.020699 0.024978 +-0.260753 0.032474 0.024576 +-0.27159 0.022134 0.023679 +-0.289328 0.026641 0.004609 +-0.282503 0.028025 0.000692 +-0.288976 0.025556 0.004438 +-0.290079 0.025603 0.005385 +-0.207626 0.022764 0.105032 +-0.211538 0.023182 0.105895 +-0.210747 0.023012 0.105879 +-0.210762 0.023184 0.105566 +-0.210451 0.022962 0.104025 +-0.230544 0.023366 0.084017 +-0.215261 0.023343 0.104198 +-0.234334 0.022945 0.081668 +-0.214657 0.023484 0.104629 +-0.231319 0.023107 0.081699 +-0.210464 0.023123 0.103688 +-0.220235 0.024806 0.079314 +-0.241603 0.025667 0.056416 +-0.250732 0.022782 0.060124 +-0.263122 0.021349 0.042847 +-0.250725 0.022405 0.059167 +-0.260755 0.022274 0.040638 +-0.241154 0.0249 0.056505 +-0.247247 0.029756 0.039984 +-0.269408 0.031133 0.018699 +-0.28614 0.027693 0.006046 +-0.276311 0.025048 0.019821 +-0.284435 0.023269 0.016341 +-0.273441 0.021085 0.024303 +-0.266414 0.027462 0.023119 +-0.269583 0.030517 0.011796 +-0.289831 0.026138 0.004902 +-0.289598 0.02552 0.005036 +-0.285859 0.02672 0.002348 +-0.28937 0.026149 0.00439 +-0.27449 0.025413 0.011685 +-0.283276 0.023097 0.015658 +-0.28241 0.028755 0.004065 +-0.262272 0.022043 0.042359 +-0.254683 0.028258 0.041813 +-0.232345 0.023411 0.08291 +-0.26588 0.026648 0.030608 +-0.278994 0.023971 0.013515 +-0.286084 0.027365 0.003986 +-0.284254 0.025626 0.014138 +-0.253921 0.026174 0.039777 +-0.262502 0.02163 0.041323 +-0.225556 0.023984 0.080429 +-0.2326 0.022984 0.0823 +-0.225589 0.024115 0.081033 +-0.367105 0.025362 -0.104368 +-0.361507 0.025653 -0.103341 +-0.359512 0.025894 -0.102422 +-0.36148 0.025936 -0.10267 +-0.3683 0.025243 -0.101507 +-0.326784 0.024926 -0.058734 +-0.323825 0.023624 -0.058682 +-0.326773 0.023938 -0.057062 +-0.341722 0.028248 -0.05339 +-0.298159 0.029514 -0.012756 +-0.300804 0.021115 -0.023895 +-0.314933 0.032917 -0.022692 +-0.304131 0.022528 -0.0225 +-0.286511 0.026623 -0.003341 +-0.293332 0.027874 0.000629 +-0.286867 0.025533 -0.003213 +-0.285764 0.025614 -0.004157 +-0.36809 0.025253 -0.103738 +-0.364177 0.025679 -0.104573 +-0.364969 0.025512 -0.104568 +-0.364954 0.025676 -0.104244 +-0.365265 0.025418 -0.102719 +-0.345171 0.025293 -0.082702 +-0.360454 0.025787 -0.102865 +-0.341382 0.024805 -0.080383 +-0.361057 0.025941 -0.103288 +-0.344397 0.024977 -0.080403 +-0.365251 0.025573 -0.10237 +-0.355476 0.026658 -0.077903 +-0.334105 0.026917 -0.054966 +-0.324985 0.024088 -0.058869 +-0.312601 0.022216 -0.041705 +-0.324994 0.023691 -0.057939 +-0.314965 0.023098 -0.039435 +-0.334556 0.026154 -0.055107 +-0.328448 0.030603 -0.038272 +-0.306283 0.031412 -0.016912 +-0.291308 0.028106 -0.00969 +-0.299402 0.025335 -0.018446 +-0.291284 0.023451 -0.015091 +-0.302285 0.021489 -0.023194 +-0.309288 0.027857 -0.021577 +-0.306111 0.030637 -0.010056 +-0.28601 0.02613 -0.003653 +-0.286245 0.02552 -0.003812 +-0.289981 0.026625 -0.001079 +-0.28647 0.026123 -0.003141 +-0.301222 0.025518 -0.010291 +-0.292443 0.023266 -0.014421 +-0.298548 0.029239 -0.00576 +-0.313449 0.022901 -0.04117 +-0.321015 0.029124 -0.040201 +-0.343371 0.025306 -0.081593 +-0.309826 0.027219 -0.029115 +-0.296723 0.024105 -0.01222 +-0.289752 0.027333 -0.00269 +-0.291457 0.025754 -0.01273 +-0.321785 0.026997 -0.038308 +-0.313221 0.022464 -0.040163 +-0.350157 0.025843 -0.079074 +-0.343117 0.024865 -0.081012 +-0.350124 0.025989 -0.079669 +numsurf 318 +SURF 0x30 +mat 6 +refs 4 +77 0.0 0.0 +79 0.0 0.0 +95 0.0 0.0 +93 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +78 0.0 0.0 +94 0.0 0.0 +95 0.0 0.0 +79 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +75 0.0 0.0 +77 0.0 0.0 +93 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +76 0.0 0.0 +92 0.0 0.0 +94 0.0 0.0 +78 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +73 0.0 0.0 +75 0.0 0.0 +91 0.0 0.0 +89 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +74 0.0 0.0 +90 0.0 0.0 +92 0.0 0.0 +76 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +71 0.0 0.0 +73 0.0 0.0 +89 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +72 0.0 0.0 +88 0.0 0.0 +90 0.0 0.0 +74 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +69 0.0 0.0 +71 0.0 0.0 +87 0.0 0.0 +85 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +70 0.0 0.0 +86 0.0 0.0 +88 0.0 0.0 +72 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +67 0.0 0.0 +69 0.0 0.0 +85 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +68 0.0 0.0 +84 0.0 0.0 +86 0.0 0.0 +70 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +65 0.0 0.0 +67 0.0 0.0 +83 0.0 0.0 +81 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +66 0.0 0.0 +82 0.0 0.0 +84 0.0 0.0 +68 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +65 0.0 0.0 +81 0.0 0.0 +80 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +80 0.0 0.0 +82 0.0 0.0 +66 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +61 0.0 0.0 +63 0.0 0.0 +79 0.0 0.0 +77 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +62 0.0 0.0 +78 0.0 0.0 +79 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +59 0.0 0.0 +61 0.0 0.0 +77 0.0 0.0 +75 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +60 0.0 0.0 +76 0.0 0.0 +78 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +57 0.0 0.0 +59 0.0 0.0 +75 0.0 0.0 +73 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +58 0.0 0.0 +74 0.0 0.0 +76 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +55 0.0 0.0 +57 0.0 0.0 +73 0.0 0.0 +71 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +56 0.0 0.0 +72 0.0 0.0 +74 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +53 0.0 0.0 +55 0.0 0.0 +71 0.0 0.0 +69 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +54 0.0 0.0 +70 0.0 0.0 +72 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +51 0.0 0.0 +53 0.0 0.0 +69 0.0 0.0 +67 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +52 0.0 0.0 +68 0.0 0.0 +70 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +49 0.0 0.0 +51 0.0 0.0 +67 0.0 0.0 +65 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +50 0.0 0.0 +66 0.0 0.0 +68 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +49 0.0 0.0 +65 0.0 0.0 +64 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +64 0.0 0.0 +66 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +63 0.0 0.0 +61 0.0 0.0 +45 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +46 0.0 0.0 +62 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +45 0.0 0.0 +61 0.0 0.0 +59 0.0 0.0 +43 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +46 0.0 0.0 +44 0.0 0.0 +60 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +43 0.0 0.0 +59 0.0 0.0 +57 0.0 0.0 +41 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +44 0.0 0.0 +42 0.0 0.0 +58 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +41 0.0 0.0 +57 0.0 0.0 +55 0.0 0.0 +39 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +42 0.0 0.0 +40 0.0 0.0 +56 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +39 0.0 0.0 +55 0.0 0.0 +53 0.0 0.0 +37 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +40 0.0 0.0 +38 0.0 0.0 +54 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +37 0.0 0.0 +53 0.0 0.0 +51 0.0 0.0 +35 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +38 0.0 0.0 +36 0.0 0.0 +52 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +35 0.0 0.0 +51 0.0 0.0 +49 0.0 0.0 +33 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +36 0.0 0.0 +34 0.0 0.0 +50 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +33 0.0 0.0 +49 0.0 0.0 +48 0.0 0.0 +32 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +34 0.0 0.0 +32 0.0 0.0 +48 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +47 0.0 0.0 +45 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +30 0.0 0.0 +46 0.0 0.0 +47 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +29 0.0 0.0 +45 0.0 0.0 +43 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +30 0.0 0.0 +28 0.0 0.0 +44 0.0 0.0 +46 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +27 0.0 0.0 +43 0.0 0.0 +41 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +28 0.0 0.0 +26 0.0 0.0 +42 0.0 0.0 +44 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +25 0.0 0.0 +41 0.0 0.0 +39 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +26 0.0 0.0 +24 0.0 0.0 +40 0.0 0.0 +42 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +23 0.0 0.0 +39 0.0 0.0 +37 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +24 0.0 0.0 +22 0.0 0.0 +38 0.0 0.0 +40 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +21 0.0 0.0 +37 0.0 0.0 +35 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +22 0.0 0.0 +20 0.0 0.0 +36 0.0 0.0 +38 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +19 0.0 0.0 +35 0.0 0.0 +33 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +20 0.0 0.0 +18 0.0 0.0 +34 0.0 0.0 +36 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +17 0.0 0.0 +33 0.0 0.0 +32 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +18 0.0 0.0 +16 0.0 0.0 +32 0.0 0.0 +34 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +13 0.0 0.0 +15 0.0 0.0 +31 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +14 0.0 0.0 +30 0.0 0.0 +31 0.0 0.0 +15 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +11 0.0 0.0 +13 0.0 0.0 +29 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +12 0.0 0.0 +28 0.0 0.0 +30 0.0 0.0 +14 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +9 0.0 0.0 +11 0.0 0.0 +27 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +10 0.0 0.0 +26 0.0 0.0 +28 0.0 0.0 +12 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +7 0.0 0.0 +9 0.0 0.0 +25 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +8 0.0 0.0 +24 0.0 0.0 +26 0.0 0.0 +10 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +5 0.0 0.0 +7 0.0 0.0 +23 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +6 0.0 0.0 +22 0.0 0.0 +24 0.0 0.0 +8 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +3 0.0 0.0 +5 0.0 0.0 +21 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +4 0.0 0.0 +20 0.0 0.0 +22 0.0 0.0 +6 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +1 0.0 0.0 +3 0.0 0.0 +19 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +2 0.0 0.0 +18 0.0 0.0 +20 0.0 0.0 +4 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +1 0.0 0.0 +17 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +16 0.0 0.0 +18 0.0 0.0 +2 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +96 0.0 0.0 +93 0.0 0.0 +95 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +93 0.0 0.0 +96 0.0 0.0 +89 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +92 0.0 0.0 +90 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +89 0.0 0.0 +96 0.0 0.0 +85 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +90 0.0 0.0 +88 0.0 0.0 +86 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +85 0.0 0.0 +96 0.0 0.0 +81 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +86 0.0 0.0 +84 0.0 0.0 +82 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +82 0.0 0.0 +80 0.0 0.0 +81 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +111 0.0 0.0 +97 0.0 0.0 +113 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +98 0.0 0.0 +112 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +127 0.0 0.0 +126 0.0 0.0 +110 0.0 0.0 +111 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +110 0.0 0.0 +126 0.0 0.0 +128 0.0 0.0 +112 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +125 0.0 0.0 +123 0.0 0.0 +107 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +124 0.0 0.0 +125 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +123 0.0 0.0 +121 0.0 0.0 +105 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +122 0.0 0.0 +124 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +121 0.0 0.0 +119 0.0 0.0 +103 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +120 0.0 0.0 +122 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +119 0.0 0.0 +117 0.0 0.0 +101 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +118 0.0 0.0 +120 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +117 0.0 0.0 +115 0.0 0.0 +99 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +100 0.0 0.0 +116 0.0 0.0 +118 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +99 0.0 0.0 +115 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +100 0.0 0.0 +98 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +99 0.0 0.0 +97 0.0 0.0 +155 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +156 0.0 0.0 +98 0.0 0.0 +100 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +139 0.0 0.0 +141 0.0 0.0 +113 0.0 0.0 +115 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +142 0.0 0.0 +140 0.0 0.0 +116 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +151 0.0 0.0 +101 0.0 0.0 +99 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +152 0.0 0.0 +154 0.0 0.0 +100 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +137 0.0 0.0 +139 0.0 0.0 +115 0.0 0.0 +117 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +140 0.0 0.0 +138 0.0 0.0 +118 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +149 0.0 0.0 +103 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +150 0.0 0.0 +152 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +135 0.0 0.0 +137 0.0 0.0 +117 0.0 0.0 +119 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +118 0.0 0.0 +138 0.0 0.0 +136 0.0 0.0 +120 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +147 0.0 0.0 +105 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +148 0.0 0.0 +150 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +133 0.0 0.0 +135 0.0 0.0 +119 0.0 0.0 +121 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +120 0.0 0.0 +136 0.0 0.0 +134 0.0 0.0 +122 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +146 0.0 0.0 +107 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +146 0.0 0.0 +148 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +133 0.0 0.0 +121 0.0 0.0 +123 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +122 0.0 0.0 +134 0.0 0.0 +132 0.0 0.0 +124 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +145 0.0 0.0 +109 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +109 0.0 0.0 +145 0.0 0.0 +146 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +131 0.0 0.0 +132 0.0 0.0 +123 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +124 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +143 0.0 0.0 +111 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +112 0.0 0.0 +143 0.0 0.0 +144 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +129 0.0 0.0 +130 0.0 0.0 +126 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +126 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +111 0.0 0.0 +143 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +112 0.0 0.0 +98 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +141 0.0 0.0 +129 0.0 0.0 +127 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +128 0.0 0.0 +129 0.0 0.0 +142 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +129 0.0 0.0 +141 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +142 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +145 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +133 0.0 0.0 +132 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +134 0.0 0.0 +148 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +135 0.0 0.0 +133 0.0 0.0 +147 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +134 0.0 0.0 +136 0.0 0.0 +150 0.0 0.0 +148 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +137 0.0 0.0 +135 0.0 0.0 +149 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +136 0.0 0.0 +138 0.0 0.0 +152 0.0 0.0 +150 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +139 0.0 0.0 +137 0.0 0.0 +151 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +138 0.0 0.0 +140 0.0 0.0 +154 0.0 0.0 +152 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +155 0.0 0.0 +141 0.0 0.0 +139 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +140 0.0 0.0 +142 0.0 0.0 +156 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +178 0.0 0.0 +158 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +174 0.0 0.0 +178 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +161 0.0 0.0 +178 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +157 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +159 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +176 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +180 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +157 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +182 0.0 0.0 +160 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +175 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +182 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +157 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +184 0.0 0.0 +161 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +177 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +160 0.0 0.0 +184 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +157 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +173 0.0 0.0 +200 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +200 0.0 0.0 +203 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +172 0.0 0.0 +201 0.0 0.0 +203 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +203 0.0 0.0 +200 0.0 0.0 +170 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +204 0.0 0.0 +171 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +198 0.0 0.0 +204 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +169 0.0 0.0 +204 0.0 0.0 +198 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +198 0.0 0.0 +199 0.0 0.0 +168 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +196 0.0 0.0 +173 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +205 0.0 0.0 +196 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +167 0.0 0.0 +196 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +205 0.0 0.0 +201 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +171 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +206 0.0 0.0 +193 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +168 0.0 0.0 +199 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +193 0.0 0.0 +206 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +207 0.0 0.0 +167 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +188 0.0 0.0 +187 0.0 0.0 +207 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +162 0.0 0.0 +207 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +188 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +192 0.0 0.0 +168 0.0 0.0 +208 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +208 0.0 0.0 +186 0.0 0.0 +192 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +165 0.0 0.0 +192 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +186 0.0 0.0 +208 0.0 0.0 +162 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +162 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +181 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +209 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +181 0.0 0.0 +187 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +179 0.0 0.0 +162 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +180 0.0 0.0 +179 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +179 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +209 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +207 0.0 0.0 +162 0.0 0.0 +208 0.0 0.0 +210 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +207 0.0 0.0 +210 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +210 0.0 0.0 +208 0.0 0.0 +168 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +195 0.0 0.0 +210 0.0 0.0 +193 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +204 0.0 0.0 +169 0.0 0.0 +197 0.0 0.0 +211 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +171 0.0 0.0 +204 0.0 0.0 +211 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +211 0.0 0.0 +197 0.0 0.0 +167 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +211 0.0 0.0 +205 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +203 0.0 0.0 +170 0.0 0.0 +194 0.0 0.0 +212 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +172 0.0 0.0 +203 0.0 0.0 +212 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +212 0.0 0.0 +194 0.0 0.0 +166 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +212 0.0 0.0 +206 0.0 0.0 +171 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +200 0.0 0.0 +173 0.0 0.0 +196 0.0 0.0 +213 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +170 0.0 0.0 +200 0.0 0.0 +213 0.0 0.0 +194 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +213 0.0 0.0 +196 0.0 0.0 +167 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +194 0.0 0.0 +213 0.0 0.0 +195 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +198 0.0 0.0 +168 0.0 0.0 +192 0.0 0.0 +214 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +169 0.0 0.0 +198 0.0 0.0 +214 0.0 0.0 +190 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +214 0.0 0.0 +192 0.0 0.0 +165 0.0 0.0 +191 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +190 0.0 0.0 +214 0.0 0.0 +191 0.0 0.0 +164 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +197 0.0 0.0 +169 0.0 0.0 +190 0.0 0.0 +215 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +197 0.0 0.0 +215 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +215 0.0 0.0 +190 0.0 0.0 +164 0.0 0.0 +189 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +188 0.0 0.0 +215 0.0 0.0 +189 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +191 0.0 0.0 +165 0.0 0.0 +185 0.0 0.0 +216 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +164 0.0 0.0 +191 0.0 0.0 +216 0.0 0.0 +183 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +216 0.0 0.0 +185 0.0 0.0 +161 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +183 0.0 0.0 +216 0.0 0.0 +184 0.0 0.0 +160 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +189 0.0 0.0 +164 0.0 0.0 +183 0.0 0.0 +217 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +163 0.0 0.0 +189 0.0 0.0 +217 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +217 0.0 0.0 +183 0.0 0.0 +160 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +181 0.0 0.0 +217 0.0 0.0 +182 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +179 0.0 0.0 +158 0.0 0.0 +178 0.0 0.0 +218 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +162 0.0 0.0 +179 0.0 0.0 +218 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +218 0.0 0.0 +178 0.0 0.0 +161 0.0 0.0 +185 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +186 0.0 0.0 +218 0.0 0.0 +185 0.0 0.0 +165 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +240 0.0 0.0 +220 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +236 0.0 0.0 +240 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +223 0.0 0.0 +240 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +219 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +221 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +238 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +242 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +219 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +244 0.0 0.0 +222 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +237 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +244 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +219 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +246 0.0 0.0 +223 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +239 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +222 0.0 0.0 +246 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +219 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +235 0.0 0.0 +262 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +262 0.0 0.0 +265 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +234 0.0 0.0 +263 0.0 0.0 +265 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +265 0.0 0.0 +262 0.0 0.0 +232 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +266 0.0 0.0 +233 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +260 0.0 0.0 +266 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +231 0.0 0.0 +266 0.0 0.0 +260 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +260 0.0 0.0 +261 0.0 0.0 +230 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +258 0.0 0.0 +235 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +267 0.0 0.0 +258 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +229 0.0 0.0 +258 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +267 0.0 0.0 +263 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +233 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +268 0.0 0.0 +255 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +230 0.0 0.0 +261 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +255 0.0 0.0 +268 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +269 0.0 0.0 +229 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +250 0.0 0.0 +249 0.0 0.0 +269 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +224 0.0 0.0 +269 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +250 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +254 0.0 0.0 +230 0.0 0.0 +270 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +270 0.0 0.0 +248 0.0 0.0 +254 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +227 0.0 0.0 +254 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +248 0.0 0.0 +270 0.0 0.0 +224 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +224 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +243 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +271 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +243 0.0 0.0 +249 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +241 0.0 0.0 +224 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +242 0.0 0.0 +241 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +241 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +271 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +269 0.0 0.0 +224 0.0 0.0 +270 0.0 0.0 +272 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +269 0.0 0.0 +272 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +272 0.0 0.0 +270 0.0 0.0 +230 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +257 0.0 0.0 +272 0.0 0.0 +255 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +266 0.0 0.0 +231 0.0 0.0 +259 0.0 0.0 +273 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +233 0.0 0.0 +266 0.0 0.0 +273 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +273 0.0 0.0 +259 0.0 0.0 +229 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +273 0.0 0.0 +267 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +265 0.0 0.0 +232 0.0 0.0 +256 0.0 0.0 +274 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +234 0.0 0.0 +265 0.0 0.0 +274 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +274 0.0 0.0 +256 0.0 0.0 +228 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +274 0.0 0.0 +268 0.0 0.0 +233 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +262 0.0 0.0 +235 0.0 0.0 +258 0.0 0.0 +275 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +232 0.0 0.0 +262 0.0 0.0 +275 0.0 0.0 +256 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +275 0.0 0.0 +258 0.0 0.0 +229 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +256 0.0 0.0 +275 0.0 0.0 +257 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +260 0.0 0.0 +230 0.0 0.0 +254 0.0 0.0 +276 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +231 0.0 0.0 +260 0.0 0.0 +276 0.0 0.0 +252 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +276 0.0 0.0 +254 0.0 0.0 +227 0.0 0.0 +253 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +252 0.0 0.0 +276 0.0 0.0 +253 0.0 0.0 +226 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +259 0.0 0.0 +231 0.0 0.0 +252 0.0 0.0 +277 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +259 0.0 0.0 +277 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +277 0.0 0.0 +252 0.0 0.0 +226 0.0 0.0 +251 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +250 0.0 0.0 +277 0.0 0.0 +251 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +253 0.0 0.0 +227 0.0 0.0 +247 0.0 0.0 +278 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +226 0.0 0.0 +253 0.0 0.0 +278 0.0 0.0 +245 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +278 0.0 0.0 +247 0.0 0.0 +223 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +245 0.0 0.0 +278 0.0 0.0 +246 0.0 0.0 +222 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +251 0.0 0.0 +226 0.0 0.0 +245 0.0 0.0 +279 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +225 0.0 0.0 +251 0.0 0.0 +279 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +279 0.0 0.0 +245 0.0 0.0 +222 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +243 0.0 0.0 +279 0.0 0.0 +244 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +241 0.0 0.0 +220 0.0 0.0 +240 0.0 0.0 +280 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +224 0.0 0.0 +241 0.0 0.0 +280 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +280 0.0 0.0 +240 0.0 0.0 +223 0.0 0.0 +247 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +248 0.0 0.0 +280 0.0 0.0 +247 0.0 0.0 +227 0.0 0.0 +kids 0 +OBJECT poly +name "propeller2" +data 8 +Tube.008 +crease 30.000000 +numvert 281 +0.289423 0.012212 0.001364 +0.289938 0.012224 0.000786 +0.288728 0.012207 0.001705 +0.290191 0.01224 5.7e-05 +0.287958 0.012209 0.001752 +0.290145 0.012256 -0.000713 +0.287228 0.012217 0.001502 +0.289808 0.012273 -0.001407 +0.28665 0.01223 0.000991 +0.289231 0.012285 -0.00192 +0.286311 0.012245 0.000297 +0.288502 0.012292 -0.002172 +0.286263 0.012262 -0.000473 +0.287731 0.012293 -0.002126 +0.286514 0.012276 -0.001202 +0.287031 0.012286 -0.001786 +0.289419 0.020094 0.0015 +0.289929 0.020106 0.000924 +0.288728 0.02009 0.001836 +0.290182 0.020121 0.000195 +0.287956 0.020091 0.001884 +0.290137 0.020139 -0.000578 +0.287225 0.020099 0.001633 +0.289799 0.020155 -0.001273 +0.286645 0.020112 0.001121 +0.28922 0.020167 -0.001787 +0.286306 0.020128 0.000426 +0.28849 0.020174 -0.002039 +0.286258 0.020144 -0.000345 +0.287718 0.020174 -0.001993 +0.28651 0.020158 -0.001076 +0.287022 0.020169 -0.001656 +0.290869 0.020291 0.003413 +0.291993 0.020318 0.002145 +0.289345 0.020282 0.004155 +0.292551 0.020352 0.000537 +0.287647 0.020286 0.004261 +0.29245 0.02039 -0.001162 +0.286037 0.020303 0.003707 +0.291706 0.020426 -0.002692 +0.284761 0.020331 0.00258 +0.290433 0.020453 -0.003823 +0.284014 0.020366 0.00105 +0.288825 0.020469 -0.00438 +0.283909 0.020402 -0.000648 +0.287126 0.02047 -0.004279 +0.284463 0.020434 -0.002258 +0.285592 0.020455 -0.003535 +0.290947 0.031885 0.003723 +0.292075 0.031901 0.00245 +0.289418 0.031865 0.004468 +0.29263 0.031916 0.000841 +0.287719 0.03185 0.00457 +0.292529 0.031927 -0.000858 +0.28611 0.03184 0.004016 +0.291784 0.031931 -0.002389 +0.284835 0.031837 0.002886 +0.29051 0.03193 -0.003518 +0.28409 0.031843 0.001357 +0.288901 0.031922 -0.004074 +0.283986 0.031855 -0.000343 +0.287202 0.031909 -0.003971 +0.284542 0.031873 -0.001952 +0.285671 0.031894 -0.003226 +0.291728 0.032499 0.004763 +0.293214 0.03252 0.003086 +0.289713 0.032473 0.005744 +0.293947 0.032539 0.000967 +0.287476 0.032451 0.00588 +0.293812 0.032553 -0.001271 +0.285356 0.032438 0.005149 +0.292831 0.03256 -0.003287 +0.283678 0.032436 0.003662 +0.291153 0.032558 -0.004775 +0.282696 0.032443 0.001646 +0.289034 0.032548 -0.005507 +0.28256 0.03246 -0.000592 +0.286796 0.03253 -0.005372 +0.283291 0.032483 -0.00271 +0.284779 0.032509 -0.00439 +0.289431 0.045274 0.001966 +0.290078 0.045297 0.001237 +0.288555 0.045277 0.002394 +0.290396 0.045344 0.000317 +0.287582 0.045305 0.002453 +0.290338 0.045405 -0.000654 +0.286661 0.045355 0.002138 +0.289912 0.045472 -0.001529 +0.285933 0.045418 0.001493 +0.289183 0.045536 -0.002173 +0.285506 0.045486 0.000618 +0.288263 0.045586 -0.002489 +0.285449 0.045547 -0.000353 +0.287289 0.045613 -0.002429 +0.285766 0.045593 -0.001273 +0.286413 0.045616 -0.002003 +0.287923 0.046439 0 +0.288927 0.023518 -0.004706 +0.293666 0.023351 0.001534 +0.286726 0.023518 -0.004573 +0.292947 0.023297 0.003617 +0.284744 0.023501 -0.003607 +0.291484 0.023263 0.005266 +0.283284 0.023471 -0.001957 +0.289503 0.023251 0.00623 +0.282565 0.023431 0.000127 +0.287302 0.023264 0.006363 +0.282699 0.023389 0.002326 +0.285219 0.023299 0.005644 +0.283616 0.023347 0.004245 +0.292615 0.02347 -0.002587 +0.29101 0.023502 -0.003987 +0.293533 0.023413 -0.000665 +0.288933 0.029906 -0.004583 +0.293714 0.029737 0.001713 +0.286733 0.029906 -0.004449 +0.292995 0.029685 0.003795 +0.284751 0.029889 -0.003484 +0.291532 0.029649 0.005444 +0.28329 0.029859 -0.001834 +0.289551 0.029637 0.006408 +0.282572 0.02982 0.000249 +0.287351 0.029651 0.006541 +0.282705 0.029777 0.002449 +0.285268 0.029686 0.005822 +0.283644 0.029738 0.004396 +0.292642 0.029861 -0.002436 +0.291016 0.02989 -0.003864 +0.293582 0.0298 -0.000487 +0.289748 0.029784 -0.000239 +0.28988 0.029791 -0.00034 +0.286406 0.029744 0.002298 +0.286538 0.029741 0.002198 +0.286007 0.029774 0.000718 +0.287821 0.029711 0.003106 +0.286284 0.02979 -8.7e-05 +0.288671 0.029706 0.003055 +0.286849 0.029802 -0.000724 +0.289436 0.02971 0.002682 +0.287614 0.029808 -0.001096 +0.290001 0.029724 0.002045 +0.288463 0.029808 -0.001149 +0.290278 0.029744 0.001241 +0.289721 0.023463 -0.000388 +0.289853 0.023464 -0.000489 +0.286379 0.023417 0.002149 +0.286511 0.023419 0.002049 +0.286001 0.023451 0.000596 +0.287774 0.023389 0.00293 +0.286278 0.023467 -0.000208 +0.288623 0.023384 0.002879 +0.286842 0.023478 -0.000845 +0.289388 0.023388 0.002506 +0.287608 0.023485 -0.001218 +0.289953 0.023402 0.001869 +0.288457 0.023485 -0.00127 +0.290231 0.023422 0.001065 +0.367234 0.02286 0.105669 +0.361638 0.023193 0.104663 +0.359644 0.023462 0.103762 +0.361612 0.023492 0.104013 +0.368428 0.022804 0.102801 +0.326914 0.023615 0.060045 +0.323951 0.022325 0.059905 +0.326899 0.022667 0.058309 +0.341864 0.027009 0.054931 +0.298309 0.029358 0.01442 +0.300923 0.020699 0.024978 +0.315093 0.032474 0.024576 +0.304255 0.022134 0.023679 +0.286517 0.026641 0.004609 +0.293343 0.028025 0.000692 +0.28687 0.025556 0.004438 +0.285767 0.025603 0.005385 +0.368219 0.022764 0.105032 +0.364307 0.023182 0.105895 +0.365099 0.023012 0.105879 +0.365084 0.023184 0.105566 +0.365395 0.022962 0.104025 +0.345301 0.023366 0.084017 +0.360585 0.023342 0.104198 +0.341511 0.022945 0.081668 +0.361188 0.023484 0.104629 +0.344526 0.023107 0.081699 +0.365382 0.023123 0.103688 +0.355611 0.024806 0.079314 +0.334243 0.025667 0.056416 +0.325113 0.022782 0.060124 +0.312724 0.021349 0.042847 +0.325121 0.022405 0.059167 +0.31509 0.022274 0.040638 +0.334692 0.0249 0.056505 +0.328598 0.029756 0.039984 +0.306437 0.031133 0.018699 +0.289706 0.027693 0.006046 +0.299535 0.025048 0.019821 +0.291411 0.023269 0.016341 +0.302404 0.021085 0.024303 +0.309432 0.027462 0.023119 +0.306263 0.030517 0.011796 +0.286014 0.026138 0.004902 +0.286248 0.02552 0.005036 +0.289987 0.02672 0.002348 +0.286475 0.026149 0.00439 +0.301356 0.025413 0.011685 +0.292569 0.023097 0.015658 +0.293435 0.028755 0.004065 +0.313574 0.022043 0.042359 +0.321162 0.028258 0.041813 +0.343501 0.023411 0.08291 +0.309965 0.026648 0.030608 +0.296852 0.023971 0.013515 +0.289762 0.027365 0.003986 +0.291591 0.025626 0.014138 +0.321924 0.026174 0.039777 +0.313344 0.02163 0.041323 +0.35029 0.023984 0.080429 +0.343246 0.022984 0.0823 +0.350256 0.024115 0.081033 +0.208741 0.025362 -0.104368 +0.214339 0.025653 -0.103341 +0.216333 0.025894 -0.102422 +0.214365 0.025936 -0.10267 +0.207546 0.025243 -0.101507 +0.249062 0.024926 -0.058734 +0.25202 0.023624 -0.058682 +0.249072 0.023938 -0.057062 +0.234123 0.028248 -0.05339 +0.277686 0.029514 -0.012756 +0.275041 0.021115 -0.023895 +0.260913 0.032917 -0.022692 +0.271714 0.022528 -0.0225 +0.289335 0.026623 -0.003341 +0.282513 0.027874 0.000629 +0.288979 0.025533 -0.003213 +0.290081 0.025614 -0.004157 +0.207755 0.025253 -0.103738 +0.211669 0.025679 -0.104573 +0.210876 0.025512 -0.104568 +0.210892 0.025676 -0.104244 +0.21058 0.025418 -0.102719 +0.230674 0.025293 -0.082702 +0.215392 0.025787 -0.102866 +0.234463 0.024805 -0.080383 +0.214789 0.025941 -0.103288 +0.231448 0.024977 -0.080403 +0.210594 0.025573 -0.10237 +0.220369 0.026658 -0.077903 +0.241741 0.026917 -0.054966 +0.250861 0.024088 -0.058869 +0.263244 0.022216 -0.041705 +0.250851 0.023691 -0.057939 +0.26088 0.023098 -0.039435 +0.24129 0.026154 -0.055107 +0.247398 0.030603 -0.038272 +0.269562 0.031412 -0.016912 +0.284538 0.028106 -0.00969 +0.276444 0.025335 -0.018446 +0.284562 0.023451 -0.015091 +0.273561 0.021489 -0.023194 +0.266558 0.027857 -0.021577 +0.269735 0.030637 -0.010056 +0.289835 0.02613 -0.003653 +0.2896 0.02552 -0.003812 +0.285865 0.026625 -0.001079 +0.289375 0.026123 -0.003141 +0.274624 0.025518 -0.010291 +0.283403 0.023266 -0.014421 +0.277298 0.029239 -0.00576 +0.262396 0.022901 -0.04117 +0.254831 0.029124 -0.040201 +0.232474 0.025306 -0.081593 +0.26602 0.027219 -0.029115 +0.279123 0.024105 -0.01222 +0.286093 0.027333 -0.00269 +0.284388 0.025754 -0.01273 +0.25406 0.026997 -0.038308 +0.262625 0.022464 -0.040163 +0.225689 0.025843 -0.079074 +0.232729 0.024865 -0.081012 +0.225721 0.025989 -0.079669 +numsurf 318 +SURF 0x30 +mat 6 +refs 4 +77 0.0 0.0 +79 0.0 0.0 +95 0.0 0.0 +93 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +78 0.0 0.0 +94 0.0 0.0 +95 0.0 0.0 +79 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +75 0.0 0.0 +77 0.0 0.0 +93 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +76 0.0 0.0 +92 0.0 0.0 +94 0.0 0.0 +78 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +73 0.0 0.0 +75 0.0 0.0 +91 0.0 0.0 +89 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +74 0.0 0.0 +90 0.0 0.0 +92 0.0 0.0 +76 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +71 0.0 0.0 +73 0.0 0.0 +89 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +72 0.0 0.0 +88 0.0 0.0 +90 0.0 0.0 +74 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +69 0.0 0.0 +71 0.0 0.0 +87 0.0 0.0 +85 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +70 0.0 0.0 +86 0.0 0.0 +88 0.0 0.0 +72 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +67 0.0 0.0 +69 0.0 0.0 +85 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +68 0.0 0.0 +84 0.0 0.0 +86 0.0 0.0 +70 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +65 0.0 0.0 +67 0.0 0.0 +83 0.0 0.0 +81 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +66 0.0 0.0 +82 0.0 0.0 +84 0.0 0.0 +68 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +65 0.0 0.0 +81 0.0 0.0 +80 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +80 0.0 0.0 +82 0.0 0.0 +66 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +61 0.0 0.0 +63 0.0 0.0 +79 0.0 0.0 +77 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +62 0.0 0.0 +78 0.0 0.0 +79 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +59 0.0 0.0 +61 0.0 0.0 +77 0.0 0.0 +75 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +60 0.0 0.0 +76 0.0 0.0 +78 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +57 0.0 0.0 +59 0.0 0.0 +75 0.0 0.0 +73 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +58 0.0 0.0 +74 0.0 0.0 +76 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +55 0.0 0.0 +57 0.0 0.0 +73 0.0 0.0 +71 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +56 0.0 0.0 +72 0.0 0.0 +74 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +53 0.0 0.0 +55 0.0 0.0 +71 0.0 0.0 +69 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +54 0.0 0.0 +70 0.0 0.0 +72 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +51 0.0 0.0 +53 0.0 0.0 +69 0.0 0.0 +67 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +52 0.0 0.0 +68 0.0 0.0 +70 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +49 0.0 0.0 +51 0.0 0.0 +67 0.0 0.0 +65 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +50 0.0 0.0 +66 0.0 0.0 +68 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +49 0.0 0.0 +65 0.0 0.0 +64 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +64 0.0 0.0 +66 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +63 0.0 0.0 +61 0.0 0.0 +45 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +46 0.0 0.0 +62 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +45 0.0 0.0 +61 0.0 0.0 +59 0.0 0.0 +43 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +46 0.0 0.0 +44 0.0 0.0 +60 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +43 0.0 0.0 +59 0.0 0.0 +57 0.0 0.0 +41 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +44 0.0 0.0 +42 0.0 0.0 +58 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +41 0.0 0.0 +57 0.0 0.0 +55 0.0 0.0 +39 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +42 0.0 0.0 +40 0.0 0.0 +56 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +39 0.0 0.0 +55 0.0 0.0 +53 0.0 0.0 +37 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +40 0.0 0.0 +38 0.0 0.0 +54 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +37 0.0 0.0 +53 0.0 0.0 +51 0.0 0.0 +35 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +38 0.0 0.0 +36 0.0 0.0 +52 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +35 0.0 0.0 +51 0.0 0.0 +49 0.0 0.0 +33 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +36 0.0 0.0 +34 0.0 0.0 +50 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +33 0.0 0.0 +49 0.0 0.0 +48 0.0 0.0 +32 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +34 0.0 0.0 +32 0.0 0.0 +48 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +47 0.0 0.0 +45 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +30 0.0 0.0 +46 0.0 0.0 +47 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +29 0.0 0.0 +45 0.0 0.0 +43 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +30 0.0 0.0 +28 0.0 0.0 +44 0.0 0.0 +46 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +27 0.0 0.0 +43 0.0 0.0 +41 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +28 0.0 0.0 +26 0.0 0.0 +42 0.0 0.0 +44 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +25 0.0 0.0 +41 0.0 0.0 +39 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +26 0.0 0.0 +24 0.0 0.0 +40 0.0 0.0 +42 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +23 0.0 0.0 +39 0.0 0.0 +37 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +24 0.0 0.0 +22 0.0 0.0 +38 0.0 0.0 +40 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +21 0.0 0.0 +37 0.0 0.0 +35 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +22 0.0 0.0 +20 0.0 0.0 +36 0.0 0.0 +38 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +19 0.0 0.0 +35 0.0 0.0 +33 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +20 0.0 0.0 +18 0.0 0.0 +34 0.0 0.0 +36 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +17 0.0 0.0 +33 0.0 0.0 +32 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +18 0.0 0.0 +16 0.0 0.0 +32 0.0 0.0 +34 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +13 0.0 0.0 +15 0.0 0.0 +31 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +14 0.0 0.0 +30 0.0 0.0 +31 0.0 0.0 +15 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +11 0.0 0.0 +13 0.0 0.0 +29 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +12 0.0 0.0 +28 0.0 0.0 +30 0.0 0.0 +14 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +9 0.0 0.0 +11 0.0 0.0 +27 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +10 0.0 0.0 +26 0.0 0.0 +28 0.0 0.0 +12 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +7 0.0 0.0 +9 0.0 0.0 +25 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +8 0.0 0.0 +24 0.0 0.0 +26 0.0 0.0 +10 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +5 0.0 0.0 +7 0.0 0.0 +23 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +6 0.0 0.0 +22 0.0 0.0 +24 0.0 0.0 +8 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +3 0.0 0.0 +5 0.0 0.0 +21 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +4 0.0 0.0 +20 0.0 0.0 +22 0.0 0.0 +6 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +1 0.0 0.0 +3 0.0 0.0 +19 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +2 0.0 0.0 +18 0.0 0.0 +20 0.0 0.0 +4 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +1 0.0 0.0 +17 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +16 0.0 0.0 +18 0.0 0.0 +2 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +96 0.0 0.0 +93 0.0 0.0 +95 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +93 0.0 0.0 +96 0.0 0.0 +89 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +92 0.0 0.0 +90 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +89 0.0 0.0 +96 0.0 0.0 +85 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +90 0.0 0.0 +88 0.0 0.0 +86 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +85 0.0 0.0 +96 0.0 0.0 +81 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +86 0.0 0.0 +84 0.0 0.0 +82 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +82 0.0 0.0 +80 0.0 0.0 +81 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +111 0.0 0.0 +97 0.0 0.0 +113 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +98 0.0 0.0 +112 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +127 0.0 0.0 +126 0.0 0.0 +110 0.0 0.0 +111 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +110 0.0 0.0 +126 0.0 0.0 +128 0.0 0.0 +112 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +125 0.0 0.0 +123 0.0 0.0 +107 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +124 0.0 0.0 +125 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +123 0.0 0.0 +121 0.0 0.0 +105 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +122 0.0 0.0 +124 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +121 0.0 0.0 +119 0.0 0.0 +103 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +120 0.0 0.0 +122 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +119 0.0 0.0 +117 0.0 0.0 +101 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +118 0.0 0.0 +120 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +117 0.0 0.0 +115 0.0 0.0 +99 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +100 0.0 0.0 +116 0.0 0.0 +118 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +99 0.0 0.0 +115 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +100 0.0 0.0 +98 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +99 0.0 0.0 +97 0.0 0.0 +155 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +156 0.0 0.0 +98 0.0 0.0 +100 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +139 0.0 0.0 +141 0.0 0.0 +113 0.0 0.0 +115 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +142 0.0 0.0 +140 0.0 0.0 +116 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +151 0.0 0.0 +101 0.0 0.0 +99 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +152 0.0 0.0 +154 0.0 0.0 +100 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +137 0.0 0.0 +139 0.0 0.0 +115 0.0 0.0 +117 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +140 0.0 0.0 +138 0.0 0.0 +118 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +149 0.0 0.0 +103 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +150 0.0 0.0 +152 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +135 0.0 0.0 +137 0.0 0.0 +117 0.0 0.0 +119 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +118 0.0 0.0 +138 0.0 0.0 +136 0.0 0.0 +120 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +147 0.0 0.0 +105 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +148 0.0 0.0 +150 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +133 0.0 0.0 +135 0.0 0.0 +119 0.0 0.0 +121 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +120 0.0 0.0 +136 0.0 0.0 +134 0.0 0.0 +122 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +146 0.0 0.0 +107 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +146 0.0 0.0 +148 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +133 0.0 0.0 +121 0.0 0.0 +123 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +122 0.0 0.0 +134 0.0 0.0 +132 0.0 0.0 +124 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +145 0.0 0.0 +109 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +109 0.0 0.0 +145 0.0 0.0 +146 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +131 0.0 0.0 +132 0.0 0.0 +123 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +124 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +143 0.0 0.0 +111 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +112 0.0 0.0 +143 0.0 0.0 +144 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +129 0.0 0.0 +130 0.0 0.0 +126 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +126 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +111 0.0 0.0 +143 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +112 0.0 0.0 +98 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +141 0.0 0.0 +129 0.0 0.0 +127 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +128 0.0 0.0 +129 0.0 0.0 +142 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +129 0.0 0.0 +141 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +142 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +145 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +133 0.0 0.0 +132 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +134 0.0 0.0 +148 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +135 0.0 0.0 +133 0.0 0.0 +147 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +134 0.0 0.0 +136 0.0 0.0 +150 0.0 0.0 +148 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +137 0.0 0.0 +135 0.0 0.0 +149 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +136 0.0 0.0 +138 0.0 0.0 +152 0.0 0.0 +150 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +139 0.0 0.0 +137 0.0 0.0 +151 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +138 0.0 0.0 +140 0.0 0.0 +154 0.0 0.0 +152 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +155 0.0 0.0 +141 0.0 0.0 +139 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +140 0.0 0.0 +142 0.0 0.0 +156 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +178 0.0 0.0 +158 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +174 0.0 0.0 +178 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +161 0.0 0.0 +178 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +157 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +159 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +176 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +180 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +157 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +182 0.0 0.0 +160 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +175 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +182 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +157 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +184 0.0 0.0 +161 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +177 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +160 0.0 0.0 +184 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +157 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +173 0.0 0.0 +200 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +200 0.0 0.0 +203 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +172 0.0 0.0 +201 0.0 0.0 +203 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +203 0.0 0.0 +200 0.0 0.0 +170 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +204 0.0 0.0 +171 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +198 0.0 0.0 +204 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +169 0.0 0.0 +204 0.0 0.0 +198 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +198 0.0 0.0 +199 0.0 0.0 +168 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +196 0.0 0.0 +173 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +205 0.0 0.0 +196 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +167 0.0 0.0 +196 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +205 0.0 0.0 +201 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +171 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +206 0.0 0.0 +193 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +168 0.0 0.0 +199 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +193 0.0 0.0 +206 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +207 0.0 0.0 +167 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +188 0.0 0.0 +187 0.0 0.0 +207 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +162 0.0 0.0 +207 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +188 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +192 0.0 0.0 +168 0.0 0.0 +208 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +208 0.0 0.0 +186 0.0 0.0 +192 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +165 0.0 0.0 +192 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +186 0.0 0.0 +208 0.0 0.0 +162 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +162 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +181 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +209 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +181 0.0 0.0 +187 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +179 0.0 0.0 +162 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +180 0.0 0.0 +179 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +179 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +209 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +207 0.0 0.0 +162 0.0 0.0 +208 0.0 0.0 +210 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +207 0.0 0.0 +210 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +210 0.0 0.0 +208 0.0 0.0 +168 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +195 0.0 0.0 +210 0.0 0.0 +193 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +204 0.0 0.0 +169 0.0 0.0 +197 0.0 0.0 +211 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +171 0.0 0.0 +204 0.0 0.0 +211 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +211 0.0 0.0 +197 0.0 0.0 +167 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +211 0.0 0.0 +205 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +203 0.0 0.0 +170 0.0 0.0 +194 0.0 0.0 +212 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +172 0.0 0.0 +203 0.0 0.0 +212 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +212 0.0 0.0 +194 0.0 0.0 +166 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +212 0.0 0.0 +206 0.0 0.0 +171 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +200 0.0 0.0 +173 0.0 0.0 +196 0.0 0.0 +213 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +170 0.0 0.0 +200 0.0 0.0 +213 0.0 0.0 +194 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +213 0.0 0.0 +196 0.0 0.0 +167 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +194 0.0 0.0 +213 0.0 0.0 +195 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +198 0.0 0.0 +168 0.0 0.0 +192 0.0 0.0 +214 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +169 0.0 0.0 +198 0.0 0.0 +214 0.0 0.0 +190 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +214 0.0 0.0 +192 0.0 0.0 +165 0.0 0.0 +191 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +190 0.0 0.0 +214 0.0 0.0 +191 0.0 0.0 +164 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +197 0.0 0.0 +169 0.0 0.0 +190 0.0 0.0 +215 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +197 0.0 0.0 +215 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +215 0.0 0.0 +190 0.0 0.0 +164 0.0 0.0 +189 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +188 0.0 0.0 +215 0.0 0.0 +189 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +191 0.0 0.0 +165 0.0 0.0 +185 0.0 0.0 +216 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +164 0.0 0.0 +191 0.0 0.0 +216 0.0 0.0 +183 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +216 0.0 0.0 +185 0.0 0.0 +161 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +183 0.0 0.0 +216 0.0 0.0 +184 0.0 0.0 +160 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +189 0.0 0.0 +164 0.0 0.0 +183 0.0 0.0 +217 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +163 0.0 0.0 +189 0.0 0.0 +217 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +217 0.0 0.0 +183 0.0 0.0 +160 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +181 0.0 0.0 +217 0.0 0.0 +182 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +179 0.0 0.0 +158 0.0 0.0 +178 0.0 0.0 +218 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +162 0.0 0.0 +179 0.0 0.0 +218 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +218 0.0 0.0 +178 0.0 0.0 +161 0.0 0.0 +185 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +186 0.0 0.0 +218 0.0 0.0 +185 0.0 0.0 +165 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +240 0.0 0.0 +220 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +236 0.0 0.0 +240 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +223 0.0 0.0 +240 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +219 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +221 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +238 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +242 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +219 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +244 0.0 0.0 +222 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +237 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +244 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +219 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +246 0.0 0.0 +223 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +239 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +222 0.0 0.0 +246 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +219 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +235 0.0 0.0 +262 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +262 0.0 0.0 +265 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +234 0.0 0.0 +263 0.0 0.0 +265 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +265 0.0 0.0 +262 0.0 0.0 +232 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +266 0.0 0.0 +233 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +260 0.0 0.0 +266 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +231 0.0 0.0 +266 0.0 0.0 +260 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +260 0.0 0.0 +261 0.0 0.0 +230 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +258 0.0 0.0 +235 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +267 0.0 0.0 +258 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +229 0.0 0.0 +258 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +267 0.0 0.0 +263 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +233 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +268 0.0 0.0 +255 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +230 0.0 0.0 +261 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +255 0.0 0.0 +268 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +269 0.0 0.0 +229 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +250 0.0 0.0 +249 0.0 0.0 +269 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +224 0.0 0.0 +269 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +250 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +254 0.0 0.0 +230 0.0 0.0 +270 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +270 0.0 0.0 +248 0.0 0.0 +254 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +227 0.0 0.0 +254 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +248 0.0 0.0 +270 0.0 0.0 +224 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +224 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +243 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +271 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +243 0.0 0.0 +249 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +241 0.0 0.0 +224 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +242 0.0 0.0 +241 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +241 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +271 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +269 0.0 0.0 +224 0.0 0.0 +270 0.0 0.0 +272 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +269 0.0 0.0 +272 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +272 0.0 0.0 +270 0.0 0.0 +230 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +257 0.0 0.0 +272 0.0 0.0 +255 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +266 0.0 0.0 +231 0.0 0.0 +259 0.0 0.0 +273 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +233 0.0 0.0 +266 0.0 0.0 +273 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +273 0.0 0.0 +259 0.0 0.0 +229 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +273 0.0 0.0 +267 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +265 0.0 0.0 +232 0.0 0.0 +256 0.0 0.0 +274 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +234 0.0 0.0 +265 0.0 0.0 +274 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +274 0.0 0.0 +256 0.0 0.0 +228 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +274 0.0 0.0 +268 0.0 0.0 +233 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +262 0.0 0.0 +235 0.0 0.0 +258 0.0 0.0 +275 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +232 0.0 0.0 +262 0.0 0.0 +275 0.0 0.0 +256 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +275 0.0 0.0 +258 0.0 0.0 +229 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +256 0.0 0.0 +275 0.0 0.0 +257 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +260 0.0 0.0 +230 0.0 0.0 +254 0.0 0.0 +276 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +231 0.0 0.0 +260 0.0 0.0 +276 0.0 0.0 +252 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +276 0.0 0.0 +254 0.0 0.0 +227 0.0 0.0 +253 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +252 0.0 0.0 +276 0.0 0.0 +253 0.0 0.0 +226 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +259 0.0 0.0 +231 0.0 0.0 +252 0.0 0.0 +277 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +259 0.0 0.0 +277 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +277 0.0 0.0 +252 0.0 0.0 +226 0.0 0.0 +251 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +250 0.0 0.0 +277 0.0 0.0 +251 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +253 0.0 0.0 +227 0.0 0.0 +247 0.0 0.0 +278 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +226 0.0 0.0 +253 0.0 0.0 +278 0.0 0.0 +245 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +278 0.0 0.0 +247 0.0 0.0 +223 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +245 0.0 0.0 +278 0.0 0.0 +246 0.0 0.0 +222 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +251 0.0 0.0 +226 0.0 0.0 +245 0.0 0.0 +279 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +225 0.0 0.0 +251 0.0 0.0 +279 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +279 0.0 0.0 +245 0.0 0.0 +222 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +243 0.0 0.0 +279 0.0 0.0 +244 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +241 0.0 0.0 +220 0.0 0.0 +240 0.0 0.0 +280 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +224 0.0 0.0 +241 0.0 0.0 +280 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +280 0.0 0.0 +240 0.0 0.0 +223 0.0 0.0 +247 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +248 0.0 0.0 +280 0.0 0.0 +247 0.0 0.0 +227 0.0 0.0 +kids 0 +OBJECT poly +name "propeller1" +data 8 +Tube.010 +crease 30.000000 +numvert 281 +0.001501 0.012212 -0.286558 +0.002016 0.012224 -0.287137 +0.000805 0.012207 -0.286218 +0.002268 0.01224 -0.287866 +3.5e-05 0.012209 -0.286171 +0.002223 0.012256 -0.288636 +-0.000695 0.012217 -0.286421 +0.001885 0.012273 -0.28933 +-0.001273 0.01223 -0.286932 +0.001308 0.012285 -0.289843 +-0.001612 0.012245 -0.287626 +0.000579 0.012292 -0.290095 +-0.001659 0.012262 -0.288396 +-0.000192 0.012293 -0.290049 +-0.001409 0.012276 -0.289125 +-0.000892 0.012286 -0.289709 +0.001497 0.020094 -0.286423 +0.002006 0.020106 -0.286999 +0.000805 0.02009 -0.286087 +0.002259 0.020121 -0.287728 +3.4e-05 0.020091 -0.286038 +0.002214 0.020139 -0.2885 +-0.000698 0.020099 -0.28629 +0.001876 0.020155 -0.289196 +-0.001277 0.020112 -0.286801 +0.001298 0.020167 -0.28971 +-0.001617 0.020128 -0.287497 +0.000567 0.020174 -0.289962 +-0.001665 0.020144 -0.288268 +-0.000205 0.020174 -0.289916 +-0.001413 0.020158 -0.288999 +-0.000901 0.020169 -0.289579 +0.002946 0.020291 -0.28451 +0.00407 0.020318 -0.285778 +0.001422 0.020282 -0.283768 +0.004628 0.020352 -0.287386 +-0.000276 0.020286 -0.283662 +0.004527 0.02039 -0.289085 +-0.001886 0.020303 -0.284216 +0.003783 0.020426 -0.290615 +-0.003162 0.020331 -0.285342 +0.002511 0.020453 -0.291746 +-0.003909 0.020366 -0.286872 +0.000902 0.020469 -0.292303 +-0.004013 0.020402 -0.288571 +-0.000797 0.02047 -0.292202 +-0.00346 0.020434 -0.29018 +-0.002331 0.020455 -0.291457 +0.003024 0.031885 -0.2842 +0.004152 0.031901 -0.285472 +0.001496 0.031865 -0.283455 +0.004708 0.031916 -0.287082 +-0.000204 0.03185 -0.283353 +0.004606 0.031927 -0.288781 +-0.001813 0.03184 -0.283907 +0.003861 0.031931 -0.290312 +-0.003088 0.031837 -0.285036 +0.002588 0.03193 -0.291441 +-0.003833 0.031843 -0.286566 +0.000978 0.031922 -0.291997 +-0.003936 0.031855 -0.288265 +-0.000721 0.031909 -0.291894 +-0.003381 0.031873 -0.289874 +-0.002252 0.031894 -0.291149 +0.003806 0.032499 -0.28316 +0.005291 0.03252 -0.284837 +0.001791 0.032473 -0.282179 +0.006024 0.032539 -0.286956 +-0.000447 0.032451 -0.282043 +0.005889 0.032553 -0.289193 +-0.002567 0.032438 -0.282774 +0.004908 0.03256 -0.29121 +-0.004245 0.032436 -0.284261 +0.003231 0.032558 -0.292698 +-0.005227 0.032443 -0.286276 +0.001111 0.032548 -0.29343 +-0.005363 0.03246 -0.288515 +-0.001127 0.03253 -0.293295 +-0.004632 0.032483 -0.290633 +-0.003144 0.032509 -0.292313 +0.001509 0.045274 -0.285956 +0.002155 0.045297 -0.286685 +0.000632 0.045277 -0.285529 +0.002473 0.045344 -0.287606 +-0.00034 0.045305 -0.28547 +0.002415 0.045405 -0.288577 +-0.001262 0.045355 -0.285785 +0.001989 0.045472 -0.289452 +-0.00199 0.045418 -0.28643 +0.00126 0.045536 -0.290096 +-0.002417 0.045486 -0.287304 +0.00034 0.045586 -0.290412 +-0.002474 0.045547 -0.288276 +-0.000633 0.045613 -0.290352 +-0.002156 0.045593 -0.289196 +-0.001509 0.045616 -0.289925 +0 0.046439 -0.287923 +0.001004 0.023518 -0.292629 +0.005744 0.023351 -0.286389 +-0.001197 0.023518 -0.292495 +0.005024 0.023297 -0.284306 +-0.003179 0.023501 -0.29153 +0.003562 0.023263 -0.282657 +-0.004639 0.023471 -0.28988 +0.00158 0.023251 -0.281692 +-0.005358 0.023431 -0.287796 +-0.00062 0.023264 -0.28156 +-0.005224 0.023389 -0.285596 +-0.002704 0.023299 -0.282279 +-0.004307 0.023347 -0.283678 +0.004692 0.02347 -0.29051 +0.003087 0.023502 -0.29191 +0.005611 0.023413 -0.288588 +0.00101 0.029906 -0.292505 +0.005792 0.029737 -0.28621 +-0.00119 0.029906 -0.292372 +0.005072 0.029685 -0.284128 +-0.003172 0.029889 -0.291406 +0.00361 0.029649 -0.282479 +-0.004632 0.029859 -0.289757 +0.001628 0.029637 -0.281515 +-0.005351 0.02982 -0.287673 +-0.000572 0.029651 -0.281382 +-0.005217 0.029777 -0.285474 +-0.002655 0.029686 -0.2821 +-0.004279 0.029738 -0.283527 +0.004719 0.029861 -0.290359 +0.003094 0.02989 -0.291787 +0.005659 0.0298 -0.28841 +0.001825 0.029784 -0.288162 +0.001957 0.029791 -0.288262 +-0.001517 0.029744 -0.285625 +-0.001384 0.029741 -0.285725 +-0.001916 0.029774 -0.287205 +-0.000102 0.029711 -0.284816 +-0.001638 0.02979 -0.288009 +0.000748 0.029706 -0.284868 +-0.001074 0.029802 -0.288647 +0.001513 0.02971 -0.28524 +-0.000308 0.029808 -0.289019 +0.002078 0.029724 -0.285878 +0.000541 0.029808 -0.289071 +0.002356 0.029744 -0.286682 +0.001798 0.023463 -0.288311 +0.00193 0.023464 -0.288412 +-0.001544 0.023417 -0.285774 +-0.001412 0.023419 -0.285874 +-0.001922 0.023451 -0.287327 +-0.000149 0.023389 -0.284993 +-0.001645 0.023467 -0.288131 +0.0007 0.023384 -0.285044 +-0.00108 0.023478 -0.288768 +0.001465 0.023388 -0.285417 +-0.000315 0.023485 -0.289141 +0.00203 0.023402 -0.286054 +0.000534 0.023485 -0.289193 +0.002308 0.023422 -0.286858 +0.079312 0.02286 -0.182254 +0.073715 0.023193 -0.183259 +0.071721 0.023462 -0.18416 +0.07369 0.023492 -0.18391 +0.080505 0.022804 -0.185122 +0.038991 0.023615 -0.227878 +0.036028 0.022325 -0.228018 +0.038977 0.022667 -0.229613 +0.053942 0.027009 -0.232992 +0.010386 0.029358 -0.273503 +0.013 0.020699 -0.262945 +0.02717 0.032474 -0.263347 +0.016332 0.022134 -0.264244 +-0.001406 0.026641 -0.283314 +0.00542 0.028025 -0.287231 +-0.001053 0.025556 -0.283485 +-0.002156 0.025603 -0.282538 +0.080297 0.022764 -0.182891 +0.076385 0.023182 -0.182027 +0.077176 0.023012 -0.182044 +0.077161 0.023184 -0.182357 +0.077472 0.022962 -0.183897 +0.057379 0.023366 -0.203905 +0.072662 0.023343 -0.183725 +0.053588 0.022945 -0.206254 +0.073265 0.023484 -0.183293 +0.056604 0.023107 -0.206224 +0.077459 0.023123 -0.184235 +0.067688 0.024806 -0.208608 +0.04632 0.025667 -0.231507 +0.03719 0.022782 -0.227798 +0.024801 0.021349 -0.245076 +0.037198 0.022405 -0.228755 +0.027168 0.022274 -0.247284 +0.046769 0.0249 -0.231418 +0.040675 0.029756 -0.247939 +0.018515 0.031133 -0.269223 +0.001783 0.027693 -0.281877 +0.011612 0.025048 -0.268102 +0.003488 0.02327 -0.271582 +0.014481 0.021085 -0.26362 +0.021509 0.027462 -0.264803 +0.01834 0.030517 -0.276126 +-0.001909 0.026138 -0.283021 +-0.001675 0.02552 -0.282887 +0.002064 0.02672 -0.285575 +-0.001448 0.026149 -0.283533 +0.013433 0.025413 -0.276237 +0.004646 0.023097 -0.272265 +0.005512 0.028755 -0.283858 +0.025651 0.022043 -0.245564 +0.03324 0.028258 -0.246109 +0.055578 0.023411 -0.205013 +0.022043 0.026648 -0.257315 +0.008929 0.023971 -0.274408 +0.001839 0.027365 -0.283937 +0.003669 0.025626 -0.273785 +0.034001 0.026174 -0.248146 +0.025421 0.02163 -0.2466 +0.062367 0.023984 -0.207494 +0.055323 0.022984 -0.205622 +0.062333 0.024115 -0.20689 +-0.079182 0.025362 -0.392291 +-0.073584 0.025653 -0.391263 +-0.07159 0.025894 -0.390345 +-0.073558 0.025936 -0.390593 +-0.080377 0.025243 -0.38943 +-0.038861 0.024926 -0.346657 +-0.035903 0.023624 -0.346605 +-0.038851 0.023938 -0.344985 +-0.053799 0.028248 -0.341313 +-0.010237 0.029514 -0.300679 +-0.012882 0.021115 -0.311817 +-0.02701 0.032917 -0.310615 +-0.016209 0.022528 -0.310423 +0.001412 0.026623 -0.291263 +-0.00541 0.027874 -0.287294 +0.001056 0.025533 -0.291136 +0.002158 0.025614 -0.29208 +-0.080167 0.025253 -0.391661 +-0.076254 0.025679 -0.392496 +-0.077046 0.025512 -0.392491 +-0.077031 0.025676 -0.392167 +-0.077342 0.025418 -0.390642 +-0.057248 0.025293 -0.370624 +-0.072531 0.025787 -0.390788 +-0.053459 0.024805 -0.368306 +-0.073134 0.025941 -0.39121 +-0.056474 0.024977 -0.368325 +-0.077328 0.025573 -0.390293 +-0.067554 0.026658 -0.365826 +-0.046182 0.026917 -0.342889 +-0.037062 0.024088 -0.346792 +-0.024679 0.022216 -0.329628 +-0.037072 0.023691 -0.345861 +-0.027043 0.023098 -0.327358 +-0.046633 0.026154 -0.34303 +-0.040525 0.030603 -0.326194 +-0.01836 0.031412 -0.304835 +-0.003385 0.028106 -0.297613 +-0.011479 0.025335 -0.306369 +-0.003361 0.023451 -0.303014 +-0.014362 0.021489 -0.311116 +-0.021365 0.027857 -0.3095 +-0.018188 0.030637 -0.297979 +0.001913 0.02613 -0.291576 +0.001677 0.02552 -0.291735 +-0.002058 0.026625 -0.289002 +0.001453 0.026123 -0.291063 +-0.013299 0.025518 -0.298214 +-0.00452 0.023266 -0.302344 +-0.010625 0.029239 -0.293683 +-0.025526 0.022901 -0.329092 +-0.033092 0.029124 -0.328124 +-0.055449 0.025306 -0.369516 +-0.021903 0.027219 -0.317038 +-0.0088 0.024105 -0.300142 +-0.00183 0.027333 -0.290612 +-0.003534 0.025754 -0.300652 +-0.033862 0.026997 -0.32623 +-0.025298 0.022464 -0.328086 +-0.062234 0.025843 -0.366997 +-0.055194 0.024865 -0.368935 +-0.062201 0.02599 -0.367592 +numsurf 318 +SURF 0x30 +mat 6 +refs 4 +77 0.0 0.0 +79 0.0 0.0 +95 0.0 0.0 +93 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +78 0.0 0.0 +94 0.0 0.0 +95 0.0 0.0 +79 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +75 0.0 0.0 +77 0.0 0.0 +93 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +76 0.0 0.0 +92 0.0 0.0 +94 0.0 0.0 +78 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +73 0.0 0.0 +75 0.0 0.0 +91 0.0 0.0 +89 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +74 0.0 0.0 +90 0.0 0.0 +92 0.0 0.0 +76 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +71 0.0 0.0 +73 0.0 0.0 +89 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +72 0.0 0.0 +88 0.0 0.0 +90 0.0 0.0 +74 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +69 0.0 0.0 +71 0.0 0.0 +87 0.0 0.0 +85 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +70 0.0 0.0 +86 0.0 0.0 +88 0.0 0.0 +72 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +67 0.0 0.0 +69 0.0 0.0 +85 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +68 0.0 0.0 +84 0.0 0.0 +86 0.0 0.0 +70 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +65 0.0 0.0 +67 0.0 0.0 +83 0.0 0.0 +81 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +66 0.0 0.0 +82 0.0 0.0 +84 0.0 0.0 +68 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +65 0.0 0.0 +81 0.0 0.0 +80 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +80 0.0 0.0 +82 0.0 0.0 +66 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +61 0.0 0.0 +63 0.0 0.0 +79 0.0 0.0 +77 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +62 0.0 0.0 +78 0.0 0.0 +79 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +59 0.0 0.0 +61 0.0 0.0 +77 0.0 0.0 +75 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +60 0.0 0.0 +76 0.0 0.0 +78 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +57 0.0 0.0 +59 0.0 0.0 +75 0.0 0.0 +73 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +58 0.0 0.0 +74 0.0 0.0 +76 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +55 0.0 0.0 +57 0.0 0.0 +73 0.0 0.0 +71 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +56 0.0 0.0 +72 0.0 0.0 +74 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +53 0.0 0.0 +55 0.0 0.0 +71 0.0 0.0 +69 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +54 0.0 0.0 +70 0.0 0.0 +72 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +51 0.0 0.0 +53 0.0 0.0 +69 0.0 0.0 +67 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +52 0.0 0.0 +68 0.0 0.0 +70 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +49 0.0 0.0 +51 0.0 0.0 +67 0.0 0.0 +65 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +50 0.0 0.0 +66 0.0 0.0 +68 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +49 0.0 0.0 +65 0.0 0.0 +64 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +64 0.0 0.0 +66 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +63 0.0 0.0 +61 0.0 0.0 +45 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +46 0.0 0.0 +62 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +45 0.0 0.0 +61 0.0 0.0 +59 0.0 0.0 +43 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +46 0.0 0.0 +44 0.0 0.0 +60 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +43 0.0 0.0 +59 0.0 0.0 +57 0.0 0.0 +41 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +44 0.0 0.0 +42 0.0 0.0 +58 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +41 0.0 0.0 +57 0.0 0.0 +55 0.0 0.0 +39 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +42 0.0 0.0 +40 0.0 0.0 +56 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +39 0.0 0.0 +55 0.0 0.0 +53 0.0 0.0 +37 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +40 0.0 0.0 +38 0.0 0.0 +54 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +37 0.0 0.0 +53 0.0 0.0 +51 0.0 0.0 +35 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +38 0.0 0.0 +36 0.0 0.0 +52 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +35 0.0 0.0 +51 0.0 0.0 +49 0.0 0.0 +33 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +36 0.0 0.0 +34 0.0 0.0 +50 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +33 0.0 0.0 +49 0.0 0.0 +48 0.0 0.0 +32 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +34 0.0 0.0 +32 0.0 0.0 +48 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +47 0.0 0.0 +45 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +30 0.0 0.0 +46 0.0 0.0 +47 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +29 0.0 0.0 +45 0.0 0.0 +43 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +30 0.0 0.0 +28 0.0 0.0 +44 0.0 0.0 +46 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +27 0.0 0.0 +43 0.0 0.0 +41 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +28 0.0 0.0 +26 0.0 0.0 +42 0.0 0.0 +44 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +25 0.0 0.0 +41 0.0 0.0 +39 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +26 0.0 0.0 +24 0.0 0.0 +40 0.0 0.0 +42 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +23 0.0 0.0 +39 0.0 0.0 +37 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +24 0.0 0.0 +22 0.0 0.0 +38 0.0 0.0 +40 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +21 0.0 0.0 +37 0.0 0.0 +35 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +22 0.0 0.0 +20 0.0 0.0 +36 0.0 0.0 +38 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +19 0.0 0.0 +35 0.0 0.0 +33 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +20 0.0 0.0 +18 0.0 0.0 +34 0.0 0.0 +36 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +17 0.0 0.0 +33 0.0 0.0 +32 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +18 0.0 0.0 +16 0.0 0.0 +32 0.0 0.0 +34 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +13 0.0 0.0 +15 0.0 0.0 +31 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +14 0.0 0.0 +30 0.0 0.0 +31 0.0 0.0 +15 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +11 0.0 0.0 +13 0.0 0.0 +29 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +12 0.0 0.0 +28 0.0 0.0 +30 0.0 0.0 +14 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +9 0.0 0.0 +11 0.0 0.0 +27 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +10 0.0 0.0 +26 0.0 0.0 +28 0.0 0.0 +12 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +7 0.0 0.0 +9 0.0 0.0 +25 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +8 0.0 0.0 +24 0.0 0.0 +26 0.0 0.0 +10 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +5 0.0 0.0 +7 0.0 0.0 +23 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +6 0.0 0.0 +22 0.0 0.0 +24 0.0 0.0 +8 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +3 0.0 0.0 +5 0.0 0.0 +21 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +4 0.0 0.0 +20 0.0 0.0 +22 0.0 0.0 +6 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +1 0.0 0.0 +3 0.0 0.0 +19 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +2 0.0 0.0 +18 0.0 0.0 +20 0.0 0.0 +4 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +1 0.0 0.0 +17 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +16 0.0 0.0 +18 0.0 0.0 +2 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +96 0.0 0.0 +93 0.0 0.0 +95 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +93 0.0 0.0 +96 0.0 0.0 +89 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +92 0.0 0.0 +90 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +89 0.0 0.0 +96 0.0 0.0 +85 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +90 0.0 0.0 +88 0.0 0.0 +86 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +85 0.0 0.0 +96 0.0 0.0 +81 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +86 0.0 0.0 +84 0.0 0.0 +82 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +82 0.0 0.0 +80 0.0 0.0 +81 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +111 0.0 0.0 +97 0.0 0.0 +113 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +98 0.0 0.0 +112 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +127 0.0 0.0 +126 0.0 0.0 +110 0.0 0.0 +111 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +110 0.0 0.0 +126 0.0 0.0 +128 0.0 0.0 +112 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +125 0.0 0.0 +123 0.0 0.0 +107 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +124 0.0 0.0 +125 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +123 0.0 0.0 +121 0.0 0.0 +105 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +122 0.0 0.0 +124 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +121 0.0 0.0 +119 0.0 0.0 +103 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +120 0.0 0.0 +122 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +119 0.0 0.0 +117 0.0 0.0 +101 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +118 0.0 0.0 +120 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +117 0.0 0.0 +115 0.0 0.0 +99 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +100 0.0 0.0 +116 0.0 0.0 +118 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +99 0.0 0.0 +115 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +100 0.0 0.0 +98 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +99 0.0 0.0 +97 0.0 0.0 +155 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +156 0.0 0.0 +98 0.0 0.0 +100 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +139 0.0 0.0 +141 0.0 0.0 +113 0.0 0.0 +115 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +142 0.0 0.0 +140 0.0 0.0 +116 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +151 0.0 0.0 +101 0.0 0.0 +99 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +152 0.0 0.0 +154 0.0 0.0 +100 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +137 0.0 0.0 +139 0.0 0.0 +115 0.0 0.0 +117 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +140 0.0 0.0 +138 0.0 0.0 +118 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +149 0.0 0.0 +103 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +150 0.0 0.0 +152 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +135 0.0 0.0 +137 0.0 0.0 +117 0.0 0.0 +119 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +118 0.0 0.0 +138 0.0 0.0 +136 0.0 0.0 +120 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +147 0.0 0.0 +105 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +148 0.0 0.0 +150 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +133 0.0 0.0 +135 0.0 0.0 +119 0.0 0.0 +121 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +120 0.0 0.0 +136 0.0 0.0 +134 0.0 0.0 +122 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +146 0.0 0.0 +107 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +146 0.0 0.0 +148 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +133 0.0 0.0 +121 0.0 0.0 +123 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +122 0.0 0.0 +134 0.0 0.0 +132 0.0 0.0 +124 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +145 0.0 0.0 +109 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +109 0.0 0.0 +145 0.0 0.0 +146 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +131 0.0 0.0 +132 0.0 0.0 +123 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +124 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +143 0.0 0.0 +111 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +112 0.0 0.0 +143 0.0 0.0 +144 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +129 0.0 0.0 +130 0.0 0.0 +126 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +126 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +111 0.0 0.0 +143 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +112 0.0 0.0 +98 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +141 0.0 0.0 +129 0.0 0.0 +127 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +128 0.0 0.0 +129 0.0 0.0 +142 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +129 0.0 0.0 +141 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +142 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +145 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +133 0.0 0.0 +132 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +134 0.0 0.0 +148 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +135 0.0 0.0 +133 0.0 0.0 +147 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +134 0.0 0.0 +136 0.0 0.0 +150 0.0 0.0 +148 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +137 0.0 0.0 +135 0.0 0.0 +149 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +136 0.0 0.0 +138 0.0 0.0 +152 0.0 0.0 +150 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +139 0.0 0.0 +137 0.0 0.0 +151 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +138 0.0 0.0 +140 0.0 0.0 +154 0.0 0.0 +152 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +155 0.0 0.0 +141 0.0 0.0 +139 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +140 0.0 0.0 +142 0.0 0.0 +156 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +178 0.0 0.0 +158 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +174 0.0 0.0 +178 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +161 0.0 0.0 +178 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +157 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +159 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +176 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +180 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +157 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +182 0.0 0.0 +160 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +175 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +182 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +157 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +184 0.0 0.0 +161 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +177 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +160 0.0 0.0 +184 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +157 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +173 0.0 0.0 +200 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +200 0.0 0.0 +203 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +172 0.0 0.0 +201 0.0 0.0 +203 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +203 0.0 0.0 +200 0.0 0.0 +170 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +204 0.0 0.0 +171 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +198 0.0 0.0 +204 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +169 0.0 0.0 +204 0.0 0.0 +198 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +198 0.0 0.0 +199 0.0 0.0 +168 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +196 0.0 0.0 +173 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +205 0.0 0.0 +196 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +167 0.0 0.0 +196 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +205 0.0 0.0 +201 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +171 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +206 0.0 0.0 +193 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +168 0.0 0.0 +199 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +193 0.0 0.0 +206 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +207 0.0 0.0 +167 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +188 0.0 0.0 +187 0.0 0.0 +207 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +162 0.0 0.0 +207 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +188 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +192 0.0 0.0 +168 0.0 0.0 +208 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +208 0.0 0.0 +186 0.0 0.0 +192 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +165 0.0 0.0 +192 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +186 0.0 0.0 +208 0.0 0.0 +162 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +162 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +181 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +209 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +181 0.0 0.0 +187 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +179 0.0 0.0 +162 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +180 0.0 0.0 +179 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +179 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +209 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +207 0.0 0.0 +162 0.0 0.0 +208 0.0 0.0 +210 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +207 0.0 0.0 +210 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +210 0.0 0.0 +208 0.0 0.0 +168 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +195 0.0 0.0 +210 0.0 0.0 +193 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +204 0.0 0.0 +169 0.0 0.0 +197 0.0 0.0 +211 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +171 0.0 0.0 +204 0.0 0.0 +211 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +211 0.0 0.0 +197 0.0 0.0 +167 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +211 0.0 0.0 +205 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +203 0.0 0.0 +170 0.0 0.0 +194 0.0 0.0 +212 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +172 0.0 0.0 +203 0.0 0.0 +212 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +212 0.0 0.0 +194 0.0 0.0 +166 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +212 0.0 0.0 +206 0.0 0.0 +171 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +200 0.0 0.0 +173 0.0 0.0 +196 0.0 0.0 +213 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +170 0.0 0.0 +200 0.0 0.0 +213 0.0 0.0 +194 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +213 0.0 0.0 +196 0.0 0.0 +167 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +194 0.0 0.0 +213 0.0 0.0 +195 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +198 0.0 0.0 +168 0.0 0.0 +192 0.0 0.0 +214 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +169 0.0 0.0 +198 0.0 0.0 +214 0.0 0.0 +190 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +214 0.0 0.0 +192 0.0 0.0 +165 0.0 0.0 +191 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +190 0.0 0.0 +214 0.0 0.0 +191 0.0 0.0 +164 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +197 0.0 0.0 +169 0.0 0.0 +190 0.0 0.0 +215 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +197 0.0 0.0 +215 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +215 0.0 0.0 +190 0.0 0.0 +164 0.0 0.0 +189 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +188 0.0 0.0 +215 0.0 0.0 +189 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +191 0.0 0.0 +165 0.0 0.0 +185 0.0 0.0 +216 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +164 0.0 0.0 +191 0.0 0.0 +216 0.0 0.0 +183 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +216 0.0 0.0 +185 0.0 0.0 +161 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +183 0.0 0.0 +216 0.0 0.0 +184 0.0 0.0 +160 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +189 0.0 0.0 +164 0.0 0.0 +183 0.0 0.0 +217 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +163 0.0 0.0 +189 0.0 0.0 +217 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +217 0.0 0.0 +183 0.0 0.0 +160 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +181 0.0 0.0 +217 0.0 0.0 +182 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +179 0.0 0.0 +158 0.0 0.0 +178 0.0 0.0 +218 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +162 0.0 0.0 +179 0.0 0.0 +218 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +218 0.0 0.0 +178 0.0 0.0 +161 0.0 0.0 +185 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +186 0.0 0.0 +218 0.0 0.0 +185 0.0 0.0 +165 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +240 0.0 0.0 +220 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +236 0.0 0.0 +240 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +223 0.0 0.0 +240 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +219 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +221 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +238 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +242 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +219 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +244 0.0 0.0 +222 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +237 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +244 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +219 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +246 0.0 0.0 +223 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +239 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +222 0.0 0.0 +246 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +219 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +235 0.0 0.0 +262 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +262 0.0 0.0 +265 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +234 0.0 0.0 +263 0.0 0.0 +265 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +265 0.0 0.0 +262 0.0 0.0 +232 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +266 0.0 0.0 +233 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +260 0.0 0.0 +266 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +231 0.0 0.0 +266 0.0 0.0 +260 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +260 0.0 0.0 +261 0.0 0.0 +230 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +258 0.0 0.0 +235 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +267 0.0 0.0 +258 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +229 0.0 0.0 +258 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +267 0.0 0.0 +263 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +233 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +268 0.0 0.0 +255 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +230 0.0 0.0 +261 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +255 0.0 0.0 +268 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +269 0.0 0.0 +229 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +250 0.0 0.0 +249 0.0 0.0 +269 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +224 0.0 0.0 +269 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +250 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +254 0.0 0.0 +230 0.0 0.0 +270 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +270 0.0 0.0 +248 0.0 0.0 +254 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +227 0.0 0.0 +254 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +248 0.0 0.0 +270 0.0 0.0 +224 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +224 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +243 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +271 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +243 0.0 0.0 +249 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +241 0.0 0.0 +224 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +242 0.0 0.0 +241 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +241 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +271 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +269 0.0 0.0 +224 0.0 0.0 +270 0.0 0.0 +272 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +269 0.0 0.0 +272 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +272 0.0 0.0 +270 0.0 0.0 +230 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +257 0.0 0.0 +272 0.0 0.0 +255 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +266 0.0 0.0 +231 0.0 0.0 +259 0.0 0.0 +273 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +233 0.0 0.0 +266 0.0 0.0 +273 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +273 0.0 0.0 +259 0.0 0.0 +229 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +273 0.0 0.0 +267 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +265 0.0 0.0 +232 0.0 0.0 +256 0.0 0.0 +274 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +234 0.0 0.0 +265 0.0 0.0 +274 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +274 0.0 0.0 +256 0.0 0.0 +228 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +274 0.0 0.0 +268 0.0 0.0 +233 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +262 0.0 0.0 +235 0.0 0.0 +258 0.0 0.0 +275 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +232 0.0 0.0 +262 0.0 0.0 +275 0.0 0.0 +256 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +275 0.0 0.0 +258 0.0 0.0 +229 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +256 0.0 0.0 +275 0.0 0.0 +257 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +260 0.0 0.0 +230 0.0 0.0 +254 0.0 0.0 +276 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +231 0.0 0.0 +260 0.0 0.0 +276 0.0 0.0 +252 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +276 0.0 0.0 +254 0.0 0.0 +227 0.0 0.0 +253 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +252 0.0 0.0 +276 0.0 0.0 +253 0.0 0.0 +226 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +259 0.0 0.0 +231 0.0 0.0 +252 0.0 0.0 +277 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +259 0.0 0.0 +277 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +277 0.0 0.0 +252 0.0 0.0 +226 0.0 0.0 +251 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +250 0.0 0.0 +277 0.0 0.0 +251 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +253 0.0 0.0 +227 0.0 0.0 +247 0.0 0.0 +278 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +226 0.0 0.0 +253 0.0 0.0 +278 0.0 0.0 +245 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +278 0.0 0.0 +247 0.0 0.0 +223 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +245 0.0 0.0 +278 0.0 0.0 +246 0.0 0.0 +222 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +251 0.0 0.0 +226 0.0 0.0 +245 0.0 0.0 +279 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +225 0.0 0.0 +251 0.0 0.0 +279 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +279 0.0 0.0 +245 0.0 0.0 +222 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +243 0.0 0.0 +279 0.0 0.0 +244 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +241 0.0 0.0 +220 0.0 0.0 +240 0.0 0.0 +280 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +224 0.0 0.0 +241 0.0 0.0 +280 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +280 0.0 0.0 +240 0.0 0.0 +223 0.0 0.0 +247 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +248 0.0 0.0 +280 0.0 0.0 +247 0.0 0.0 +227 0.0 0.0 +kids 0 +OBJECT poly +name "propeller0" +data 8 +Tube.009 +crease 30.000000 +numvert 281 +0.001501 0.012212 0.289287 +0.002016 0.012224 0.288709 +0.000805 0.012207 0.289628 +0.002268 0.01224 0.28798 +3.5e-05 0.012209 0.289675 +0.002223 0.012256 0.28721 +-0.000695 0.012217 0.289425 +0.001885 0.012273 0.286515 +-0.001273 0.01223 0.288913 +0.001308 0.012285 0.286003 +-0.001612 0.012245 0.28822 +0.000579 0.012292 0.28575 +-0.001659 0.012262 0.28745 +-0.000192 0.012293 0.285797 +-0.001409 0.012276 0.286721 +-0.000892 0.012286 0.286137 +0.001497 0.020094 0.289422 +0.002006 0.020106 0.288847 +0.000805 0.02009 0.289759 +0.002259 0.020121 0.288117 +3.4e-05 0.020091 0.289807 +0.002214 0.020139 0.287345 +-0.000698 0.020099 0.289556 +0.001876 0.020155 0.28665 +-0.001277 0.020112 0.289044 +0.001298 0.020167 0.286136 +-0.001617 0.020128 0.288349 +0.000567 0.020174 0.285883 +-0.001665 0.020144 0.287578 +-0.000205 0.020174 0.285929 +-0.001413 0.020158 0.286847 +-0.000901 0.020169 0.286266 +0.002946 0.020291 0.291336 +0.00407 0.020318 0.290068 +0.001422 0.020282 0.292078 +0.004628 0.020352 0.28846 +-0.000276 0.020286 0.292183 +0.004527 0.02039 0.28676 +-0.001886 0.020303 0.29163 +0.003783 0.020426 0.28523 +-0.003162 0.020331 0.290503 +0.002511 0.020453 0.2841 +-0.003909 0.020366 0.288973 +0.000902 0.020469 0.283543 +-0.004013 0.020402 0.287275 +-0.000797 0.02047 0.283643 +-0.00346 0.020434 0.285665 +-0.002331 0.020455 0.284388 +0.003024 0.031885 0.291646 +0.004152 0.031901 0.290373 +0.001496 0.031865 0.29239 +0.004708 0.031916 0.288764 +-0.000204 0.03185 0.292493 +0.004606 0.031927 0.287065 +-0.001813 0.03184 0.291938 +0.003861 0.031931 0.285534 +-0.003088 0.031837 0.290809 +0.002588 0.03193 0.284405 +-0.003833 0.031843 0.28928 +0.000978 0.031922 0.283849 +-0.003936 0.031855 0.28758 +-0.000721 0.031909 0.283952 +-0.003381 0.031873 0.285971 +-0.002252 0.031894 0.284696 +0.003806 0.032499 0.292686 +0.005291 0.03252 0.291009 +0.001791 0.032473 0.293667 +0.006024 0.032539 0.288889 +-0.000447 0.032451 0.293802 +0.005889 0.032553 0.286652 +-0.002567 0.032438 0.293072 +0.004908 0.03256 0.284635 +-0.004245 0.032436 0.291585 +0.003231 0.032558 0.283148 +-0.005227 0.032443 0.289569 +0.001111 0.032548 0.282416 +-0.005363 0.03246 0.287331 +-0.001127 0.03253 0.282551 +-0.004632 0.032483 0.285212 +-0.003144 0.032509 0.283533 +0.001509 0.045274 0.289889 +0.002155 0.045297 0.28916 +0.000632 0.045277 0.290316 +0.002473 0.045344 0.288239 +-0.00034 0.045305 0.290376 +0.002415 0.045405 0.287269 +-0.001262 0.045355 0.29006 +0.001989 0.045472 0.286394 +-0.00199 0.045418 0.289415 +0.00126 0.045536 0.28575 +-0.002417 0.045486 0.288541 +0.00034 0.045586 0.285434 +-0.002474 0.045547 0.28757 +-0.000633 0.045613 0.285493 +-0.002156 0.045593 0.28665 +-0.001509 0.045616 0.28592 +0 0.046439 0.287923 +0.001004 0.023518 0.283217 +0.005744 0.023351 0.289456 +-0.001197 0.023518 0.28335 +0.005024 0.023297 0.291539 +-0.003179 0.023501 0.284316 +0.003562 0.023263 0.293189 +-0.004639 0.02347 0.285966 +0.00158 0.023251 0.294153 +-0.005358 0.023431 0.288049 +-0.00062 0.023264 0.294286 +-0.005224 0.023389 0.290249 +-0.002704 0.023299 0.293567 +-0.004307 0.023347 0.292168 +0.004692 0.02347 0.285336 +0.003087 0.023502 0.283936 +0.005611 0.023413 0.287258 +0.00101 0.029906 0.28334 +0.005792 0.029737 0.289635 +-0.00119 0.029906 0.283474 +0.005072 0.029685 0.291717 +-0.003172 0.029889 0.284439 +0.00361 0.029649 0.293366 +-0.004632 0.029859 0.286089 +0.001628 0.029637 0.294331 +-0.005351 0.02982 0.288172 +-0.000572 0.029651 0.294464 +-0.005217 0.029777 0.290372 +-0.002655 0.029686 0.293745 +-0.004279 0.029738 0.292318 +0.004719 0.029861 0.285487 +0.003094 0.02989 0.284058 +0.005659 0.0298 0.287436 +0.001825 0.029784 0.287684 +0.001957 0.029791 0.287583 +-0.001517 0.029744 0.290221 +-0.001384 0.029741 0.29012 +-0.001916 0.029774 0.288641 +-0.000102 0.029711 0.291029 +-0.001638 0.02979 0.287836 +0.000748 0.029706 0.290978 +-0.001074 0.029802 0.287199 +0.001513 0.02971 0.290605 +-0.000308 0.029808 0.286826 +0.002078 0.029724 0.289968 +0.000541 0.029808 0.286774 +0.002356 0.029744 0.289164 +0.001798 0.023463 0.287535 +0.00193 0.023464 0.287434 +-0.001544 0.023417 0.290072 +-0.001412 0.023419 0.289971 +-0.001921 0.023451 0.288519 +-0.000149 0.023389 0.290852 +-0.001645 0.023467 0.287715 +0.0007 0.023384 0.290801 +-0.00108 0.023478 0.287077 +0.001465 0.023388 0.290429 +-0.000315 0.023485 0.286704 +0.00203 0.023402 0.289792 +0.000534 0.023485 0.286653 +0.002308 0.023422 0.288988 +0.079312 0.02286 0.393591 +0.073715 0.023193 0.392586 +0.071721 0.023462 0.391685 +0.07369 0.023492 0.391935 +0.080505 0.022804 0.390724 +0.038991 0.023615 0.347968 +0.036028 0.022325 0.347828 +0.038977 0.022667 0.346232 +0.053942 0.027009 0.342853 +0.010386 0.029358 0.302342 +0.013 0.020699 0.312901 +0.02717 0.032473 0.312499 +0.016332 0.022134 0.311602 +-0.001406 0.026641 0.292532 +0.00542 0.028025 0.288615 +-0.001053 0.025556 0.292361 +-0.002156 0.025603 0.293308 +0.080297 0.022763 0.392955 +0.076385 0.023182 0.393818 +0.077176 0.023012 0.393802 +0.077161 0.023184 0.393489 +0.077472 0.022962 0.391948 +0.057379 0.023366 0.37194 +0.072662 0.023342 0.39212 +0.053588 0.022945 0.369591 +0.073265 0.023484 0.392552 +0.056604 0.023107 0.369622 +0.077459 0.023123 0.391611 +0.067688 0.024806 0.367237 +0.04632 0.025667 0.344338 +0.03719 0.022781 0.348047 +0.024801 0.021349 0.33077 +0.037198 0.022405 0.34709 +0.027168 0.022274 0.328561 +0.046769 0.0249 0.344427 +0.040675 0.029756 0.327907 +0.018515 0.031133 0.306622 +0.001783 0.027693 0.293969 +0.011612 0.025048 0.307744 +0.003488 0.023269 0.304264 +0.014481 0.021085 0.312225 +0.021509 0.027462 0.311042 +0.01834 0.030517 0.299719 +-0.001909 0.026138 0.292825 +-0.001675 0.02552 0.292959 +0.002064 0.02672 0.290271 +-0.001448 0.026149 0.292312 +0.013433 0.025413 0.299608 +0.004646 0.023097 0.303581 +0.005512 0.028755 0.291987 +0.025651 0.022043 0.330281 +0.03324 0.028258 0.329736 +0.055578 0.023411 0.370833 +0.022043 0.026648 0.318531 +0.008929 0.023971 0.301438 +0.001839 0.027365 0.291909 +0.003669 0.025626 0.302061 +0.034001 0.026174 0.3277 +0.025421 0.02163 0.329246 +0.062367 0.023984 0.368352 +0.055323 0.022984 0.370223 +0.062333 0.024115 0.368956 +-0.079182 0.025362 0.183555 +-0.073584 0.025653 0.184582 +-0.07159 0.025894 0.185501 +-0.073558 0.025936 0.185253 +-0.080377 0.025243 0.186416 +-0.038861 0.024926 0.229189 +-0.035903 0.023624 0.229241 +-0.038851 0.023938 0.230861 +-0.053799 0.028247 0.234533 +-0.010237 0.029514 0.275167 +-0.012882 0.021115 0.264028 +-0.02701 0.032917 0.265231 +-0.016209 0.022528 0.265423 +0.001412 0.026623 0.284582 +-0.00541 0.027874 0.288552 +0.001056 0.025533 0.28471 +0.002158 0.025614 0.283766 +-0.080167 0.025253 0.184185 +-0.076254 0.025679 0.18335 +-0.077046 0.025512 0.183355 +-0.077031 0.025676 0.183679 +-0.077342 0.025418 0.185204 +-0.057248 0.025293 0.205221 +-0.072531 0.025787 0.185057 +-0.053459 0.024805 0.20754 +-0.073134 0.025941 0.184635 +-0.056474 0.024977 0.20752 +-0.077328 0.025573 0.185552 +-0.067554 0.026658 0.21002 +-0.046182 0.026917 0.232956 +-0.037062 0.024088 0.229054 +-0.024679 0.022216 0.246218 +-0.037072 0.023691 0.229984 +-0.027043 0.023098 0.248488 +-0.046633 0.026154 0.232815 +-0.040525 0.030603 0.249651 +-0.01836 0.031412 0.271011 +-0.003385 0.028106 0.278233 +-0.011479 0.025335 0.269477 +-0.003361 0.023451 0.272831 +-0.014362 0.021489 0.264729 +-0.021365 0.027857 0.266345 +-0.018188 0.030637 0.277867 +0.001913 0.02613 0.28427 +0.001677 0.02552 0.28411 +-0.002058 0.026625 0.286844 +0.001453 0.026123 0.284782 +-0.013299 0.025518 0.277632 +-0.00452 0.023266 0.273502 +-0.010625 0.029239 0.282162 +-0.025526 0.022901 0.246753 +-0.033092 0.029124 0.247722 +-0.055449 0.025306 0.20633 +-0.021903 0.027219 0.258807 +-0.0088 0.024105 0.275703 +-0.00183 0.027333 0.285233 +-0.003534 0.025754 0.275193 +-0.033862 0.026997 0.249615 +-0.025298 0.022464 0.24776 +-0.062234 0.025843 0.208848 +-0.055194 0.024865 0.206911 +-0.062201 0.025989 0.208254 +numsurf 318 +SURF 0x30 +mat 6 +refs 4 +77 0.0 0.0 +79 0.0 0.0 +95 0.0 0.0 +93 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +78 0.0 0.0 +94 0.0 0.0 +95 0.0 0.0 +79 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +75 0.0 0.0 +77 0.0 0.0 +93 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +76 0.0 0.0 +92 0.0 0.0 +94 0.0 0.0 +78 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +73 0.0 0.0 +75 0.0 0.0 +91 0.0 0.0 +89 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +74 0.0 0.0 +90 0.0 0.0 +92 0.0 0.0 +76 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +71 0.0 0.0 +73 0.0 0.0 +89 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +72 0.0 0.0 +88 0.0 0.0 +90 0.0 0.0 +74 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +69 0.0 0.0 +71 0.0 0.0 +87 0.0 0.0 +85 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +70 0.0 0.0 +86 0.0 0.0 +88 0.0 0.0 +72 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +67 0.0 0.0 +69 0.0 0.0 +85 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +68 0.0 0.0 +84 0.0 0.0 +86 0.0 0.0 +70 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +65 0.0 0.0 +67 0.0 0.0 +83 0.0 0.0 +81 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +66 0.0 0.0 +82 0.0 0.0 +84 0.0 0.0 +68 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +65 0.0 0.0 +81 0.0 0.0 +80 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +64 0.0 0.0 +80 0.0 0.0 +82 0.0 0.0 +66 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +61 0.0 0.0 +63 0.0 0.0 +79 0.0 0.0 +77 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +62 0.0 0.0 +78 0.0 0.0 +79 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +59 0.0 0.0 +61 0.0 0.0 +77 0.0 0.0 +75 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +60 0.0 0.0 +76 0.0 0.0 +78 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +57 0.0 0.0 +59 0.0 0.0 +75 0.0 0.0 +73 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +58 0.0 0.0 +74 0.0 0.0 +76 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +55 0.0 0.0 +57 0.0 0.0 +73 0.0 0.0 +71 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +56 0.0 0.0 +72 0.0 0.0 +74 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +53 0.0 0.0 +55 0.0 0.0 +71 0.0 0.0 +69 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +54 0.0 0.0 +70 0.0 0.0 +72 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +51 0.0 0.0 +53 0.0 0.0 +69 0.0 0.0 +67 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +52 0.0 0.0 +68 0.0 0.0 +70 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +49 0.0 0.0 +51 0.0 0.0 +67 0.0 0.0 +65 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +50 0.0 0.0 +66 0.0 0.0 +68 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +49 0.0 0.0 +65 0.0 0.0 +64 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +48 0.0 0.0 +64 0.0 0.0 +66 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +63 0.0 0.0 +61 0.0 0.0 +45 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +47 0.0 0.0 +46 0.0 0.0 +62 0.0 0.0 +63 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +45 0.0 0.0 +61 0.0 0.0 +59 0.0 0.0 +43 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +46 0.0 0.0 +44 0.0 0.0 +60 0.0 0.0 +62 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +43 0.0 0.0 +59 0.0 0.0 +57 0.0 0.0 +41 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +44 0.0 0.0 +42 0.0 0.0 +58 0.0 0.0 +60 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +41 0.0 0.0 +57 0.0 0.0 +55 0.0 0.0 +39 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +42 0.0 0.0 +40 0.0 0.0 +56 0.0 0.0 +58 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +39 0.0 0.0 +55 0.0 0.0 +53 0.0 0.0 +37 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +40 0.0 0.0 +38 0.0 0.0 +54 0.0 0.0 +56 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +37 0.0 0.0 +53 0.0 0.0 +51 0.0 0.0 +35 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +38 0.0 0.0 +36 0.0 0.0 +52 0.0 0.0 +54 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +35 0.0 0.0 +51 0.0 0.0 +49 0.0 0.0 +33 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +36 0.0 0.0 +34 0.0 0.0 +50 0.0 0.0 +52 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +33 0.0 0.0 +49 0.0 0.0 +48 0.0 0.0 +32 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +34 0.0 0.0 +32 0.0 0.0 +48 0.0 0.0 +50 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +47 0.0 0.0 +45 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +31 0.0 0.0 +30 0.0 0.0 +46 0.0 0.0 +47 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +29 0.0 0.0 +45 0.0 0.0 +43 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +30 0.0 0.0 +28 0.0 0.0 +44 0.0 0.0 +46 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +27 0.0 0.0 +43 0.0 0.0 +41 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +28 0.0 0.0 +26 0.0 0.0 +42 0.0 0.0 +44 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +25 0.0 0.0 +41 0.0 0.0 +39 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +26 0.0 0.0 +24 0.0 0.0 +40 0.0 0.0 +42 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +23 0.0 0.0 +39 0.0 0.0 +37 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +24 0.0 0.0 +22 0.0 0.0 +38 0.0 0.0 +40 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +21 0.0 0.0 +37 0.0 0.0 +35 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +22 0.0 0.0 +20 0.0 0.0 +36 0.0 0.0 +38 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +19 0.0 0.0 +35 0.0 0.0 +33 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +20 0.0 0.0 +18 0.0 0.0 +34 0.0 0.0 +36 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +17 0.0 0.0 +33 0.0 0.0 +32 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +18 0.0 0.0 +16 0.0 0.0 +32 0.0 0.0 +34 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +13 0.0 0.0 +15 0.0 0.0 +31 0.0 0.0 +29 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +14 0.0 0.0 +30 0.0 0.0 +31 0.0 0.0 +15 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +11 0.0 0.0 +13 0.0 0.0 +29 0.0 0.0 +27 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +12 0.0 0.0 +28 0.0 0.0 +30 0.0 0.0 +14 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +9 0.0 0.0 +11 0.0 0.0 +27 0.0 0.0 +25 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +10 0.0 0.0 +26 0.0 0.0 +28 0.0 0.0 +12 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +7 0.0 0.0 +9 0.0 0.0 +25 0.0 0.0 +23 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +8 0.0 0.0 +24 0.0 0.0 +26 0.0 0.0 +10 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +5 0.0 0.0 +7 0.0 0.0 +23 0.0 0.0 +21 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +6 0.0 0.0 +22 0.0 0.0 +24 0.0 0.0 +8 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +3 0.0 0.0 +5 0.0 0.0 +21 0.0 0.0 +19 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +4 0.0 0.0 +20 0.0 0.0 +22 0.0 0.0 +6 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +1 0.0 0.0 +3 0.0 0.0 +19 0.0 0.0 +17 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +2 0.0 0.0 +18 0.0 0.0 +20 0.0 0.0 +4 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +1 0.0 0.0 +17 0.0 0.0 +16 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +0 0.0 0.0 +16 0.0 0.0 +18 0.0 0.0 +2 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +96 0.0 0.0 +93 0.0 0.0 +95 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +93 0.0 0.0 +96 0.0 0.0 +89 0.0 0.0 +91 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +94 0.0 0.0 +92 0.0 0.0 +90 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +89 0.0 0.0 +96 0.0 0.0 +85 0.0 0.0 +87 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +90 0.0 0.0 +88 0.0 0.0 +86 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +85 0.0 0.0 +96 0.0 0.0 +81 0.0 0.0 +83 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +86 0.0 0.0 +84 0.0 0.0 +82 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 6 +refs 4 +82 0.0 0.0 +80 0.0 0.0 +81 0.0 0.0 +96 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +111 0.0 0.0 +97 0.0 0.0 +113 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +98 0.0 0.0 +112 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +127 0.0 0.0 +126 0.0 0.0 +110 0.0 0.0 +111 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +110 0.0 0.0 +126 0.0 0.0 +128 0.0 0.0 +112 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +125 0.0 0.0 +123 0.0 0.0 +107 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +124 0.0 0.0 +125 0.0 0.0 +109 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +123 0.0 0.0 +121 0.0 0.0 +105 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +122 0.0 0.0 +124 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +121 0.0 0.0 +119 0.0 0.0 +103 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +120 0.0 0.0 +122 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +119 0.0 0.0 +117 0.0 0.0 +101 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +118 0.0 0.0 +120 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +117 0.0 0.0 +115 0.0 0.0 +99 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +100 0.0 0.0 +116 0.0 0.0 +118 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +99 0.0 0.0 +115 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +100 0.0 0.0 +98 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +99 0.0 0.0 +97 0.0 0.0 +155 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +156 0.0 0.0 +98 0.0 0.0 +100 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +139 0.0 0.0 +141 0.0 0.0 +113 0.0 0.0 +115 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +114 0.0 0.0 +142 0.0 0.0 +140 0.0 0.0 +116 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +151 0.0 0.0 +101 0.0 0.0 +99 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +102 0.0 0.0 +152 0.0 0.0 +154 0.0 0.0 +100 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +137 0.0 0.0 +139 0.0 0.0 +115 0.0 0.0 +117 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +116 0.0 0.0 +140 0.0 0.0 +138 0.0 0.0 +118 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +149 0.0 0.0 +103 0.0 0.0 +101 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +104 0.0 0.0 +150 0.0 0.0 +152 0.0 0.0 +102 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +135 0.0 0.0 +137 0.0 0.0 +117 0.0 0.0 +119 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +118 0.0 0.0 +138 0.0 0.0 +136 0.0 0.0 +120 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +147 0.0 0.0 +105 0.0 0.0 +103 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +106 0.0 0.0 +148 0.0 0.0 +150 0.0 0.0 +104 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +133 0.0 0.0 +135 0.0 0.0 +119 0.0 0.0 +121 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +120 0.0 0.0 +136 0.0 0.0 +134 0.0 0.0 +122 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +146 0.0 0.0 +107 0.0 0.0 +105 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +108 0.0 0.0 +146 0.0 0.0 +148 0.0 0.0 +106 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +133 0.0 0.0 +121 0.0 0.0 +123 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +122 0.0 0.0 +134 0.0 0.0 +132 0.0 0.0 +124 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +145 0.0 0.0 +109 0.0 0.0 +107 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +109 0.0 0.0 +145 0.0 0.0 +146 0.0 0.0 +108 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +131 0.0 0.0 +132 0.0 0.0 +123 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +124 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +125 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +143 0.0 0.0 +111 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +112 0.0 0.0 +143 0.0 0.0 +144 0.0 0.0 +110 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +129 0.0 0.0 +130 0.0 0.0 +126 0.0 0.0 +127 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +126 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +128 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +97 0.0 0.0 +111 0.0 0.0 +143 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +112 0.0 0.0 +98 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +141 0.0 0.0 +129 0.0 0.0 +127 0.0 0.0 +113 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +128 0.0 0.0 +129 0.0 0.0 +142 0.0 0.0 +114 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +143 0.0 0.0 +129 0.0 0.0 +141 0.0 0.0 +155 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +142 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +156 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +144 0.0 0.0 +130 0.0 0.0 +129 0.0 0.0 +143 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +146 0.0 0.0 +132 0.0 0.0 +131 0.0 0.0 +145 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +147 0.0 0.0 +133 0.0 0.0 +132 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +132 0.0 0.0 +134 0.0 0.0 +148 0.0 0.0 +146 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +149 0.0 0.0 +135 0.0 0.0 +133 0.0 0.0 +147 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +134 0.0 0.0 +136 0.0 0.0 +150 0.0 0.0 +148 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +151 0.0 0.0 +137 0.0 0.0 +135 0.0 0.0 +149 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +136 0.0 0.0 +138 0.0 0.0 +152 0.0 0.0 +150 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +153 0.0 0.0 +139 0.0 0.0 +137 0.0 0.0 +151 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +138 0.0 0.0 +140 0.0 0.0 +154 0.0 0.0 +152 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +155 0.0 0.0 +141 0.0 0.0 +139 0.0 0.0 +153 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +140 0.0 0.0 +142 0.0 0.0 +156 0.0 0.0 +154 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +178 0.0 0.0 +158 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +174 0.0 0.0 +178 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +161 0.0 0.0 +178 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +176 0.0 0.0 +157 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +159 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +176 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +180 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +175 0.0 0.0 +157 0.0 0.0 +176 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +182 0.0 0.0 +160 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +175 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +182 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +177 0.0 0.0 +157 0.0 0.0 +175 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +184 0.0 0.0 +161 0.0 0.0 +174 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +177 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +160 0.0 0.0 +184 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +174 0.0 0.0 +157 0.0 0.0 +177 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +173 0.0 0.0 +200 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +200 0.0 0.0 +203 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +172 0.0 0.0 +201 0.0 0.0 +203 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +203 0.0 0.0 +200 0.0 0.0 +170 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +204 0.0 0.0 +171 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +198 0.0 0.0 +204 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +169 0.0 0.0 +204 0.0 0.0 +198 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +198 0.0 0.0 +199 0.0 0.0 +168 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +196 0.0 0.0 +173 0.0 0.0 +201 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +201 0.0 0.0 +205 0.0 0.0 +196 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +167 0.0 0.0 +196 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +205 0.0 0.0 +201 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +199 0.0 0.0 +171 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +206 0.0 0.0 +193 0.0 0.0 +199 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +168 0.0 0.0 +199 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +193 0.0 0.0 +206 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +207 0.0 0.0 +167 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +188 0.0 0.0 +187 0.0 0.0 +207 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +162 0.0 0.0 +207 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +188 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +192 0.0 0.0 +168 0.0 0.0 +208 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +208 0.0 0.0 +186 0.0 0.0 +192 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +165 0.0 0.0 +192 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +186 0.0 0.0 +208 0.0 0.0 +162 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +162 0.0 0.0 +187 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +187 0.0 0.0 +181 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +159 0.0 0.0 +209 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +181 0.0 0.0 +187 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +179 0.0 0.0 +162 0.0 0.0 +209 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +209 0.0 0.0 +180 0.0 0.0 +179 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +158 0.0 0.0 +179 0.0 0.0 +180 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +180 0.0 0.0 +209 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +207 0.0 0.0 +162 0.0 0.0 +208 0.0 0.0 +210 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +207 0.0 0.0 +210 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +210 0.0 0.0 +208 0.0 0.0 +168 0.0 0.0 +193 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +195 0.0 0.0 +210 0.0 0.0 +193 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +204 0.0 0.0 +169 0.0 0.0 +197 0.0 0.0 +211 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +171 0.0 0.0 +204 0.0 0.0 +211 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +211 0.0 0.0 +197 0.0 0.0 +167 0.0 0.0 +205 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +211 0.0 0.0 +205 0.0 0.0 +172 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +203 0.0 0.0 +170 0.0 0.0 +194 0.0 0.0 +212 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +172 0.0 0.0 +203 0.0 0.0 +212 0.0 0.0 +202 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +212 0.0 0.0 +194 0.0 0.0 +166 0.0 0.0 +206 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +202 0.0 0.0 +212 0.0 0.0 +206 0.0 0.0 +171 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +200 0.0 0.0 +173 0.0 0.0 +196 0.0 0.0 +213 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +170 0.0 0.0 +200 0.0 0.0 +213 0.0 0.0 +194 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +213 0.0 0.0 +196 0.0 0.0 +167 0.0 0.0 +195 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +194 0.0 0.0 +213 0.0 0.0 +195 0.0 0.0 +166 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +198 0.0 0.0 +168 0.0 0.0 +192 0.0 0.0 +214 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +169 0.0 0.0 +198 0.0 0.0 +214 0.0 0.0 +190 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +214 0.0 0.0 +192 0.0 0.0 +165 0.0 0.0 +191 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +190 0.0 0.0 +214 0.0 0.0 +191 0.0 0.0 +164 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +197 0.0 0.0 +169 0.0 0.0 +190 0.0 0.0 +215 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +167 0.0 0.0 +197 0.0 0.0 +215 0.0 0.0 +188 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +215 0.0 0.0 +190 0.0 0.0 +164 0.0 0.0 +189 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +188 0.0 0.0 +215 0.0 0.0 +189 0.0 0.0 +163 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +191 0.0 0.0 +165 0.0 0.0 +185 0.0 0.0 +216 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +164 0.0 0.0 +191 0.0 0.0 +216 0.0 0.0 +183 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +216 0.0 0.0 +185 0.0 0.0 +161 0.0 0.0 +184 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +183 0.0 0.0 +216 0.0 0.0 +184 0.0 0.0 +160 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +189 0.0 0.0 +164 0.0 0.0 +183 0.0 0.0 +217 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +163 0.0 0.0 +189 0.0 0.0 +217 0.0 0.0 +181 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +217 0.0 0.0 +183 0.0 0.0 +160 0.0 0.0 +182 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +181 0.0 0.0 +217 0.0 0.0 +182 0.0 0.0 +159 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +179 0.0 0.0 +158 0.0 0.0 +178 0.0 0.0 +218 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +162 0.0 0.0 +179 0.0 0.0 +218 0.0 0.0 +186 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +218 0.0 0.0 +178 0.0 0.0 +161 0.0 0.0 +185 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +186 0.0 0.0 +218 0.0 0.0 +185 0.0 0.0 +165 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +240 0.0 0.0 +220 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +236 0.0 0.0 +240 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +223 0.0 0.0 +240 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +238 0.0 0.0 +219 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +221 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +238 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +242 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +237 0.0 0.0 +219 0.0 0.0 +238 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +244 0.0 0.0 +222 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +237 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +244 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +239 0.0 0.0 +219 0.0 0.0 +237 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +246 0.0 0.0 +223 0.0 0.0 +236 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +239 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +222 0.0 0.0 +246 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +236 0.0 0.0 +219 0.0 0.0 +239 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +235 0.0 0.0 +262 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +262 0.0 0.0 +265 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +234 0.0 0.0 +263 0.0 0.0 +265 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +265 0.0 0.0 +262 0.0 0.0 +232 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +266 0.0 0.0 +233 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +260 0.0 0.0 +266 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +231 0.0 0.0 +266 0.0 0.0 +260 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +260 0.0 0.0 +261 0.0 0.0 +230 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +258 0.0 0.0 +235 0.0 0.0 +263 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +263 0.0 0.0 +267 0.0 0.0 +258 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +229 0.0 0.0 +258 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +267 0.0 0.0 +263 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +261 0.0 0.0 +233 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +268 0.0 0.0 +255 0.0 0.0 +261 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +230 0.0 0.0 +261 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +255 0.0 0.0 +268 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +269 0.0 0.0 +229 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +250 0.0 0.0 +249 0.0 0.0 +269 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +224 0.0 0.0 +269 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +250 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +254 0.0 0.0 +230 0.0 0.0 +270 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +270 0.0 0.0 +248 0.0 0.0 +254 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +227 0.0 0.0 +254 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +248 0.0 0.0 +270 0.0 0.0 +224 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +224 0.0 0.0 +249 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +249 0.0 0.0 +243 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +221 0.0 0.0 +271 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +243 0.0 0.0 +249 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +241 0.0 0.0 +224 0.0 0.0 +271 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +271 0.0 0.0 +242 0.0 0.0 +241 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +220 0.0 0.0 +241 0.0 0.0 +242 0.0 0.0 +SURF 0x30 +mat 7 +refs 3 +242 0.0 0.0 +271 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +269 0.0 0.0 +224 0.0 0.0 +270 0.0 0.0 +272 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +269 0.0 0.0 +272 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +272 0.0 0.0 +270 0.0 0.0 +230 0.0 0.0 +255 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +257 0.0 0.0 +272 0.0 0.0 +255 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +266 0.0 0.0 +231 0.0 0.0 +259 0.0 0.0 +273 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +233 0.0 0.0 +266 0.0 0.0 +273 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +273 0.0 0.0 +259 0.0 0.0 +229 0.0 0.0 +267 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +273 0.0 0.0 +267 0.0 0.0 +234 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +265 0.0 0.0 +232 0.0 0.0 +256 0.0 0.0 +274 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +234 0.0 0.0 +265 0.0 0.0 +274 0.0 0.0 +264 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +274 0.0 0.0 +256 0.0 0.0 +228 0.0 0.0 +268 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +264 0.0 0.0 +274 0.0 0.0 +268 0.0 0.0 +233 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +262 0.0 0.0 +235 0.0 0.0 +258 0.0 0.0 +275 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +232 0.0 0.0 +262 0.0 0.0 +275 0.0 0.0 +256 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +275 0.0 0.0 +258 0.0 0.0 +229 0.0 0.0 +257 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +256 0.0 0.0 +275 0.0 0.0 +257 0.0 0.0 +228 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +260 0.0 0.0 +230 0.0 0.0 +254 0.0 0.0 +276 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +231 0.0 0.0 +260 0.0 0.0 +276 0.0 0.0 +252 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +276 0.0 0.0 +254 0.0 0.0 +227 0.0 0.0 +253 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +252 0.0 0.0 +276 0.0 0.0 +253 0.0 0.0 +226 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +259 0.0 0.0 +231 0.0 0.0 +252 0.0 0.0 +277 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +229 0.0 0.0 +259 0.0 0.0 +277 0.0 0.0 +250 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +277 0.0 0.0 +252 0.0 0.0 +226 0.0 0.0 +251 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +250 0.0 0.0 +277 0.0 0.0 +251 0.0 0.0 +225 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +253 0.0 0.0 +227 0.0 0.0 +247 0.0 0.0 +278 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +226 0.0 0.0 +253 0.0 0.0 +278 0.0 0.0 +245 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +278 0.0 0.0 +247 0.0 0.0 +223 0.0 0.0 +246 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +245 0.0 0.0 +278 0.0 0.0 +246 0.0 0.0 +222 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +251 0.0 0.0 +226 0.0 0.0 +245 0.0 0.0 +279 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +225 0.0 0.0 +251 0.0 0.0 +279 0.0 0.0 +243 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +279 0.0 0.0 +245 0.0 0.0 +222 0.0 0.0 +244 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +243 0.0 0.0 +279 0.0 0.0 +244 0.0 0.0 +221 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +241 0.0 0.0 +220 0.0 0.0 +240 0.0 0.0 +280 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +224 0.0 0.0 +241 0.0 0.0 +280 0.0 0.0 +248 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +280 0.0 0.0 +240 0.0 0.0 +223 0.0 0.0 +247 0.0 0.0 +SURF 0x30 +mat 7 +refs 4 +248 0.0 0.0 +280 0.0 0.0 +247 0.0 0.0 +227 0.0 0.0 +kids 0 diff --git a/resources/flightgear/Aircraft/arducopter/Models/arducopter.xml b/resources/flightgear/Aircraft/arducopter/Models/arducopter.xml new file mode 100755 index 0000000000000000000000000000000000000000..3cf8fb37ddbd53a36b9b4462deb7624133c86a42 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/Models/arducopter.xml @@ -0,0 +1,88 @@ + + + + arducopter.ac + + 0.0 + 0 + 0.0 + 0 + 180 + + + + noshadow + propeller0 + + + spin + propeller0 + /controls/engines/engine[0]/throttle + 12000 + + 0.000 + -0.288 + 0.046 + 0.000 + -0.288 + 0.012 + + + + + noshadow + propeller1 + + + spin + propeller1 + /controls/engines/engine[1]/throttle + 12000 + + 0.000 + 0.288 + 0.046 + 0.000 + 0.288 + 0.012 + + + + + noshadow + propeller2 + + + spin + propeller2 + /controls/engines/engine[2]/throttle + 12000 + + 0.288 + 0.000 + 0.046 + 0.288 + 0.000 + 0.012 + + + + + noshadow + propeller3 + + + spin + propeller3 + /controls/engines/engine[3]/throttle + 12000 + + -0.288 + 0.000 + 0.046 + -0.288 + 0.000 + 0.012 + + + diff --git a/resources/flightgear/Aircraft/arducopter/Models/quad.3ds b/resources/flightgear/Aircraft/arducopter/Models/quad.3ds new file mode 100755 index 0000000000000000000000000000000000000000..2f1e6be165c7589770283c6cda60f1649075dcdb Binary files /dev/null and b/resources/flightgear/Aircraft/arducopter/Models/quad.3ds differ diff --git a/resources/flightgear/Aircraft/arducopter/Models/quad.skp b/resources/flightgear/Aircraft/arducopter/Models/quad.skp new file mode 100755 index 0000000000000000000000000000000000000000..c8643d32392e8723b68e02066ba8ac47484472eb Binary files /dev/null and b/resources/flightgear/Aircraft/arducopter/Models/quad.skp differ diff --git a/resources/flightgear/Aircraft/arducopter/arducopter-set.xml b/resources/flightgear/Aircraft/arducopter/arducopter-set.xml new file mode 100755 index 0000000000000000000000000000000000000000..984e5a5cc0d06e5f643bb24e2fedd39648bffc98 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/arducopter-set.xml @@ -0,0 +1,93 @@ + + + + + Arducopter UAV (R/C) + James Goppert + 0.0 + experimental + jsb + arducopter + 50 + + Aircraft/Generic/generic-sound.xml + + + false + + + Aircraft/arducopter/Models/arducopter.xml + + + true + + 0.0 + 0.15 + 0.90 + 0 + + + -5.5 + + arducopter UAV + Cruise speed: ? mph + Never-exceed (Vne): ? mph + Best Glide (Vglide): ? mph + Maneuvering (Va): ? mph + Approach speed: ? mph + Stall speed (Vs): ? mph + + + Arducopter UAV DIY Drones/ OPENMAV + Aircraft/arducopter/arducopter.jpg + + + + + 0.00 + + 0.00 + + + + + + + 0 + + + + + + Payload + + 0.0 + 1.0 + + + + + + + + + diff --git a/resources/flightgear/Aircraft/arducopter/arducopter.jpg b/resources/flightgear/Aircraft/arducopter/arducopter.jpg new file mode 100755 index 0000000000000000000000000000000000000000..c28e2fdac5287a048e795c96497d265b1e9d113b Binary files /dev/null and b/resources/flightgear/Aircraft/arducopter/arducopter.jpg differ diff --git a/resources/flightgear/Aircraft/arducopter/arducopter.xml b/resources/flightgear/Aircraft/arducopter/arducopter.xml new file mode 100755 index 0000000000000000000000000000000000000000..f2965c300e41edcd1e2dee5187e52dafce9f3e37 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/arducopter.xml @@ -0,0 +1,253 @@ + + + + + James Goppert + 2010-03-11 + 0.0 + Arducopter DIY Drones UAV. + + + 0.017 + 0.13 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + 0.00 + 0.00 + 0.00 + + + 0.0 + 0.0 + 0.0 + + + 0 + 0 + 0 + + + + + 0.036 + 0.036 + 0.036 + 1.0 + + 0.0 + 0.0 + 0.0 + + + 0.0 + + 0.0 + 0.0 + 0.0 + + + + + + + -0.283 + 0.00 + -0.033 + + 0.80 + 0.50 + 800 + 7 + 300 + + + + 0.283 + 0.00 + -0.033 + + 0.80 + 0.50 + 800 + 7 + 300 + + + + 0.00 + 0.283 + -0.033 + + 0.80 + 0.50 + 800 + 7 + 300 + + + + 0.00 + -0.283 + -0.033 + + 0.80 + 0.50 + 800 + 7 + 300 + + + + + + + 0.000 + 0.283 + 0.000 + + + 90.00 + 0.00 + 0.00 + + 0 + + + 0.000 + 0.283 + 0.125 + + + 90.00 + 0.00 + 0.00 + + 1 + 10 + + + + + + 0.00 + -0.283 + 0.00 + + + 90.00 + 0.00 + 0.00 + + 0 + + + 0.00 + -0.283 + 0.125 + + + 90.00 + 0.00 + 0.00 + + 1 + 10 + + + + + + -0.283 + 0.00 + 0.00 + + + 90.00 + 0.00 + 0.00 + + 0 + + + -0.283 + 0.00 + 0.125 + + + 90.00 + 0.00 + 0.00 + + -1 + 10 + + + + + + 0.283 + 0.000 + 0.000 + + + 90.00 + 0.00 + 0.00 + + 0 + + + 0.283 + 0.000 + 0.125 + + + 90.00 + 0.00 + 0.00 + + -1 + 10 + + + + + + 0.00 + 0.00 + -0.07 + + + 0.00000000001 + 0.0 + + + + + + + + + Overall Drag + + aero/qbar-psf + metrics/Sw-sqft + 1 + + + + + + + + + + + + + + diff --git a/resources/flightgear/Aircraft/arducopter/data/arducopter_half_step.txt b/resources/flightgear/Aircraft/arducopter/data/arducopter_half_step.txt new file mode 100755 index 0000000000000000000000000000000000000000..26360d230182594269d05110a6c7b013099bdfde --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/data/arducopter_half_step.txt @@ -0,0 +1,9239 @@ +Force, Ch A, Run #5 +Time ( s ) Force ( N ) +0.0000 0.2 +0.0050 0.2 +0.0100 0.2 +0.0150 0.2 +0.0200 0.2 +0.0250 0.2 +0.0300 0.2 +0.0350 0.2 +0.0400 0.2 +0.0450 0.2 +0.0500 0.2 +0.0550 0.2 +0.0600 0.2 +0.0650 0.2 +0.0700 0.2 +0.0750 0.2 +0.0800 0.2 +0.0850 0.2 +0.0900 0.2 +0.0950 0.2 +0.1000 0.2 +0.1050 0.2 +0.1100 0.2 +0.1150 0.2 +0.1200 0.2 +0.1250 0.2 +0.1300 0.2 +0.1350 0.2 +0.1400 0.2 +0.1450 0.2 +0.1500 0.2 +0.1550 0.2 +0.1600 0.2 +0.1650 0.2 +0.1700 0.2 +0.1750 0.2 +0.1800 0.2 +0.1850 0.2 +0.1900 0.2 +0.1950 0.2 +0.2000 0.2 +0.2050 0.2 +0.2100 0.2 +0.2150 0.2 +0.2200 0.2 +0.2250 0.2 +0.2300 0.2 +0.2350 0.2 +0.2400 0.2 +0.2450 0.2 +0.2500 0.2 +0.2550 0.2 +0.2600 0.2 +0.2650 0.2 +0.2700 0.2 +0.2750 0.2 +0.2800 0.2 +0.2850 0.2 +0.2900 0.2 +0.2950 0.2 +0.3000 0.2 +0.3050 0.2 +0.3100 0.2 +0.3150 0.2 +0.3200 0.2 +0.3250 0.2 +0.3300 0.2 +0.3350 0.2 +0.3400 0.2 +0.3450 0.2 +0.3500 0.2 +0.3550 0.2 +0.3600 0.2 +0.3650 0.2 +0.3700 0.2 +0.3750 0.2 +0.3800 0.2 +0.3850 0.2 +0.3900 0.2 +0.3950 0.2 +0.4000 0.2 +0.4050 0.2 +0.4100 0.2 +0.4150 0.2 +0.4200 0.2 +0.4250 0.2 +0.4300 0.2 +0.4350 0.2 +0.4400 0.2 +0.4450 0.2 +0.4500 0.2 +0.4550 0.2 +0.4600 0.2 +0.4650 0.2 +0.4700 0.2 +0.4750 0.2 +0.4800 0.2 +0.4850 0.2 +0.4900 0.2 +0.4950 0.2 +0.5000 0.2 +0.5050 0.2 +0.5100 0.2 +0.5150 0.2 +0.5200 0.2 +0.5250 0.2 +0.5300 0.2 +0.5350 0.2 +0.5400 0.2 +0.5450 0.2 +0.5500 0.2 +0.5550 0.2 +0.5600 0.2 +0.5650 0.2 +0.5700 0.2 +0.5750 0.2 +0.5800 0.2 +0.5850 0.2 +0.5900 0.2 +0.5950 0.2 +0.6000 0.2 +0.6050 0.2 +0.6100 0.2 +0.6150 0.2 +0.6200 0.2 +0.6250 0.2 +0.6300 0.2 +0.6350 0.2 +0.6400 0.2 +0.6450 0.2 +0.6500 0.2 +0.6550 0.2 +0.6600 0.2 +0.6650 0.2 +0.6700 0.2 +0.6750 0.2 +0.6800 0.2 +0.6850 0.2 +0.6900 0.2 +0.6950 0.2 +0.7000 0.2 +0.7050 0.2 +0.7100 0.2 +0.7150 0.2 +0.7200 0.2 +0.7250 0.2 +0.7300 0.2 +0.7350 0.2 +0.7400 0.2 +0.7450 0.2 +0.7500 0.2 +0.7550 0.2 +0.7600 0.2 +0.7650 0.2 +0.7700 0.2 +0.7750 0.2 +0.7800 0.2 +0.7850 0.2 +0.7900 0.2 +0.7950 0.2 +0.8000 0.2 +0.8050 0.2 +0.8100 0.2 +0.8150 0.2 +0.8200 0.2 +0.8250 0.2 +0.8300 0.2 +0.8350 0.2 +0.8400 0.2 +0.8450 0.2 +0.8500 0.2 +0.8550 0.2 +0.8600 0.2 +0.8650 0.2 +0.8700 0.2 +0.8750 0.2 +0.8800 0.2 +0.8850 0.2 +0.8900 0.2 +0.8950 0.2 +0.9000 0.2 +0.9050 0.2 +0.9100 0.2 +0.9150 0.2 +0.9200 0.2 +0.9250 0.2 +0.9300 0.2 +0.9350 0.2 +0.9400 0.2 +0.9450 0.2 +0.9500 0.2 +0.9550 0.2 +0.9600 0.2 +0.9650 0.2 +0.9700 0.2 +0.9750 0.2 +0.9800 0.2 +0.9850 0.2 +0.9900 0.2 +0.9950 0.2 +1.0000 0.2 +1.0050 0.2 +1.0100 0.2 +1.0150 0.2 +1.0200 0.2 +1.0250 0.2 +1.0300 0.2 +1.0350 0.2 +1.0400 0.2 +1.0450 0.2 +1.0500 0.2 +1.0550 0.2 +1.0600 0.2 +1.0650 0.2 +1.0700 0.2 +1.0750 0.2 +1.0800 0.2 +1.0850 0.2 +1.0900 0.2 +1.0950 0.2 +1.1000 0.2 +1.1050 0.2 +1.1100 0.2 +1.1150 0.2 +1.1200 0.2 +1.1250 0.2 +1.1300 0.2 +1.1350 0.2 +1.1400 0.2 +1.1450 0.2 +1.1500 0.2 +1.1550 0.2 +1.1600 0.2 +1.1650 0.2 +1.1700 0.2 +1.1750 0.2 +1.1800 0.2 +1.1850 0.2 +1.1900 0.2 +1.1950 0.2 +1.2000 0.2 +1.2050 0.2 +1.2100 0.2 +1.2150 0.2 +1.2200 0.2 +1.2250 0.2 +1.2300 0.2 +1.2350 0.2 +1.2400 0.2 +1.2450 0.2 +1.2500 0.2 +1.2550 0.2 +1.2600 0.2 +1.2650 0.2 +1.2700 0.2 +1.2750 0.2 +1.2800 0.2 +1.2850 0.2 +1.2900 0.2 +1.2950 0.2 +1.3000 0.2 +1.3050 0.2 +1.3100 0.2 +1.3150 0.2 +1.3200 0.2 +1.3250 0.2 +1.3300 0.2 +1.3350 0.2 +1.3400 0.2 +1.3450 0.2 +1.3500 0.2 +1.3550 0.2 +1.3600 0.2 +1.3650 0.2 +1.3700 0.2 +1.3750 0.2 +1.3800 0.2 +1.3850 0.2 +1.3900 0.2 +1.3950 0.2 +1.4000 0.2 +1.4050 0.2 +1.4100 0.2 +1.4150 0.2 +1.4200 0.2 +1.4250 0.2 +1.4300 0.2 +1.4350 0.2 +1.4400 0.2 +1.4450 0.2 +1.4500 0.2 +1.4550 0.2 +1.4600 0.2 +1.4650 0.2 +1.4700 0.2 +1.4750 0.2 +1.4800 0.2 +1.4850 0.2 +1.4900 0.2 +1.4950 0.2 +1.5000 0.2 +1.5050 0.2 +1.5100 0.2 +1.5150 0.2 +1.5200 0.2 +1.5250 0.2 +1.5300 0.2 +1.5350 0.2 +1.5400 0.2 +1.5450 0.2 +1.5500 0.2 +1.5550 0.2 +1.5600 0.2 +1.5650 0.2 +1.5700 0.2 +1.5750 0.2 +1.5800 0.2 +1.5850 0.2 +1.5900 0.2 +1.5950 0.2 +1.6000 0.2 +1.6050 0.2 +1.6100 0.2 +1.6150 0.2 +1.6200 0.2 +1.6250 0.2 +1.6300 0.2 +1.6350 0.2 +1.6400 0.2 +1.6450 0.2 +1.6500 0.2 +1.6550 0.2 +1.6600 0.2 +1.6650 0.2 +1.6700 0.2 +1.6750 0.2 +1.6800 0.2 +1.6850 0.2 +1.6900 0.2 +1.6950 0.2 +1.7000 0.2 +1.7050 0.2 +1.7100 0.2 +1.7150 0.2 +1.7200 0.2 +1.7250 0.2 +1.7300 0.2 +1.7350 0.2 +1.7400 0.2 +1.7450 0.2 +1.7500 0.2 +1.7550 0.2 +1.7600 0.2 +1.7650 0.2 +1.7700 0.2 +1.7750 0.2 +1.7800 0.2 +1.7850 0.2 +1.7900 0.2 +1.7950 0.2 +1.8000 0.2 +1.8050 0.2 +1.8100 0.2 +1.8150 0.2 +1.8200 0.2 +1.8250 0.2 +1.8300 0.2 +1.8350 0.2 +1.8400 0.2 +1.8450 0.2 +1.8500 0.2 +1.8550 0.2 +1.8600 0.2 +1.8650 0.2 +1.8700 0.2 +1.8750 0.2 +1.8800 0.2 +1.8850 0.2 +1.8900 0.2 +1.8950 0.2 +1.9000 0.2 +1.9050 0.2 +1.9100 0.2 +1.9150 0.2 +1.9200 0.2 +1.9250 0.2 +1.9300 0.2 +1.9350 0.2 +1.9400 0.2 +1.9450 0.2 +1.9500 0.2 +1.9550 0.2 +1.9600 0.2 +1.9650 0.2 +1.9700 0.2 +1.9750 0.2 +1.9800 0.2 +1.9850 0.2 +1.9900 0.2 +1.9950 0.2 +2.0000 0.2 +2.0050 0.2 +2.0100 0.2 +2.0150 0.2 +2.0200 0.2 +2.0250 0.2 +2.0300 0.2 +2.0350 0.2 +2.0400 0.2 +2.0450 0.2 +2.0500 0.2 +2.0550 0.2 +2.0600 0.2 +2.0650 0.2 +2.0700 0.2 +2.0750 0.2 +2.0800 0.2 +2.0850 0.2 +2.0900 0.2 +2.0950 0.2 +2.1000 0.2 +2.1050 0.2 +2.1100 0.2 +2.1150 0.2 +2.1200 0.2 +2.1250 0.2 +2.1300 0.2 +2.1350 0.2 +2.1400 0.2 +2.1450 0.2 +2.1500 0.2 +2.1550 0.2 +2.1600 0.2 +2.1650 0.2 +2.1700 0.2 +2.1750 0.2 +2.1800 0.2 +2.1850 0.2 +2.1900 0.2 +2.1950 0.2 +2.2000 0.2 +2.2050 0.2 +2.2100 0.2 +2.2150 0.2 +2.2200 0.2 +2.2250 0.2 +2.2300 0.2 +2.2350 0.2 +2.2400 0.2 +2.2450 0.2 +2.2500 0.2 +2.2550 0.2 +2.2600 0.2 +2.2650 0.2 +2.2700 0.2 +2.2750 0.2 +2.2800 0.2 +2.2850 0.2 +2.2900 0.2 +2.2950 0.2 +2.3000 0.2 +2.3050 0.2 +2.3100 0.2 +2.3150 0.2 +2.3200 0.2 +2.3250 0.2 +2.3300 0.2 +2.3350 0.2 +2.3400 0.2 +2.3450 0.2 +2.3500 0.2 +2.3550 0.2 +2.3600 0.2 +2.3650 0.2 +2.3700 0.2 +2.3750 0.2 +2.3800 0.2 +2.3850 0.2 +2.3900 0.2 +2.3950 0.2 +2.4000 0.2 +2.4050 0.2 +2.4100 0.2 +2.4150 0.2 +2.4200 0.2 +2.4250 0.2 +2.4300 0.2 +2.4350 0.2 +2.4400 0.2 +2.4450 0.2 +2.4500 0.2 +2.4550 0.2 +2.4600 0.2 +2.4650 0.2 +2.4700 0.2 +2.4750 0.2 +2.4800 0.2 +2.4850 0.2 +2.4900 0.2 +2.4950 0.2 +2.5000 0.2 +2.5050 0.2 +2.5100 0.2 +2.5150 0.2 +2.5200 0.2 +2.5250 0.2 +2.5300 0.2 +2.5350 0.2 +2.5400 0.2 +2.5450 0.2 +2.5500 0.2 +2.5550 0.2 +2.5600 0.2 +2.5650 0.2 +2.5700 0.2 +2.5750 0.2 +2.5800 0.2 +2.5850 0.2 +2.5900 0.2 +2.5950 0.2 +2.6000 0.2 +2.6050 0.2 +2.6100 0.2 +2.6150 0.2 +2.6200 0.2 +2.6250 0.2 +2.6300 0.2 +2.6350 0.2 +2.6400 0.2 +2.6450 0.2 +2.6500 0.2 +2.6550 0.2 +2.6600 0.2 +2.6650 0.2 +2.6700 0.2 +2.6750 0.2 +2.6800 0.2 +2.6850 0.2 +2.6900 0.2 +2.6950 0.2 +2.7000 0.2 +2.7050 0.2 +2.7100 0.2 +2.7150 0.2 +2.7200 0.2 +2.7250 0.2 +2.7300 0.2 +2.7350 0.2 +2.7400 0.2 +2.7450 0.2 +2.7500 0.2 +2.7550 0.2 +2.7600 0.2 +2.7650 0.2 +2.7700 0.2 +2.7750 0.2 +2.7800 0.2 +2.7850 0.2 +2.7900 0.2 +2.7950 0.2 +2.8000 0.2 +2.8050 0.2 +2.8100 0.2 +2.8150 0.2 +2.8200 0.2 +2.8250 0.2 +2.8300 0.2 +2.8350 0.2 +2.8400 0.2 +2.8450 0.2 +2.8500 0.2 +2.8550 0.2 +2.8600 0.2 +2.8650 0.2 +2.8700 0.2 +2.8750 0.2 +2.8800 0.2 +2.8850 0.2 +2.8900 0.2 +2.8950 0.2 +2.9000 0.2 +2.9050 0.2 +2.9100 0.2 +2.9150 0.2 +2.9200 0.2 +2.9250 0.2 +2.9300 0.2 +2.9350 0.2 +2.9400 0.2 +2.9450 0.2 +2.9500 0.2 +2.9550 0.2 +2.9600 0.2 +2.9650 0.2 +2.9700 0.2 +2.9750 0.2 +2.9800 0.2 +2.9850 0.2 +2.9900 0.2 +2.9950 0.2 +3.0000 0.2 +3.0050 0.2 +3.0100 0.2 +3.0150 0.2 +3.0200 0.2 +3.0250 0.2 +3.0300 0.2 +3.0350 0.2 +3.0400 0.2 +3.0450 0.2 +3.0500 0.2 +3.0550 0.2 +3.0600 0.2 +3.0650 0.2 +3.0700 0.2 +3.0750 0.2 +3.0800 0.2 +3.0850 0.2 +3.0900 0.2 +3.0950 0.2 +3.1000 0.2 +3.1050 0.2 +3.1100 0.2 +3.1150 0.2 +3.1200 0.2 +3.1250 0.2 +3.1300 0.2 +3.1350 0.2 +3.1400 0.2 +3.1450 0.2 +3.1500 0.2 +3.1550 0.2 +3.1600 0.2 +3.1650 0.2 +3.1700 0.2 +3.1750 0.2 +3.1800 0.2 +3.1850 0.2 +3.1900 0.2 +3.1950 0.2 +3.2000 0.2 +3.2050 0.2 +3.2100 0.2 +3.2150 0.2 +3.2200 0.2 +3.2250 0.2 +3.2300 0.2 +3.2350 0.2 +3.2400 0.2 +3.2450 0.2 +3.2500 0.2 +3.2550 0.2 +3.2600 0.2 +3.2650 0.2 +3.2700 0.2 +3.2750 0.2 +3.2800 0.2 +3.2850 0.2 +3.2900 0.2 +3.2950 0.2 +3.3000 0.2 +3.3050 0.2 +3.3100 0.2 +3.3150 0.2 +3.3200 0.2 +3.3250 0.2 +3.3300 0.2 +3.3350 0.2 +3.3400 0.2 +3.3450 0.2 +3.3500 0.2 +3.3550 0.2 +3.3600 0.2 +3.3650 0.2 +3.3700 0.2 +3.3750 0.2 +3.3800 0.2 +3.3850 0.2 +3.3900 0.2 +3.3950 0.2 +3.4000 0.2 +3.4050 0.2 +3.4100 0.2 +3.4150 0.2 +3.4200 0.2 +3.4250 0.2 +3.4300 0.2 +3.4350 0.2 +3.4400 0.2 +3.4450 0.2 +3.4500 0.2 +3.4550 0.2 +3.4600 0.2 +3.4650 0.2 +3.4700 0.2 +3.4750 0.2 +3.4800 0.2 +3.4850 0.2 +3.4900 0.2 +3.4950 0.2 +3.5000 0.2 +3.5050 0.2 +3.5100 0.2 +3.5150 0.2 +3.5200 0.2 +3.5250 0.2 +3.5300 0.2 +3.5350 0.2 +3.5400 0.2 +3.5450 0.2 +3.5500 0.2 +3.5550 0.2 +3.5600 0.2 +3.5650 0.2 +3.5700 0.2 +3.5750 0.2 +3.5800 0.2 +3.5850 0.2 +3.5900 0.2 +3.5950 0.2 +3.6000 0.2 +3.6050 0.2 +3.6100 0.2 +3.6150 0.2 +3.6200 0.2 +3.6250 0.2 +3.6300 0.2 +3.6350 0.2 +3.6400 0.2 +3.6450 0.2 +3.6500 0.2 +3.6550 0.2 +3.6600 0.2 +3.6650 0.2 +3.6700 0.2 +3.6750 0.2 +3.6800 0.2 +3.6850 0.2 +3.6900 0.2 +3.6950 0.2 +3.7000 0.2 +3.7050 0.2 +3.7100 0.2 +3.7150 0.2 +3.7200 0.2 +3.7250 0.2 +3.7300 0.2 +3.7350 0.2 +3.7400 0.2 +3.7450 0.2 +3.7500 0.2 +3.7550 0.2 +3.7600 0.2 +3.7650 0.2 +3.7700 0.2 +3.7750 0.2 +3.7800 0.2 +3.7850 0.2 +3.7900 0.2 +3.7950 0.2 +3.8000 0.2 +3.8050 0.2 +3.8100 0.2 +3.8150 0.2 +3.8200 0.2 +3.8250 0.2 +3.8300 0.2 +3.8350 0.2 +3.8400 0.2 +3.8450 0.2 +3.8500 0.2 +3.8550 0.2 +3.8600 0.2 +3.8650 0.2 +3.8700 0.2 +3.8750 0.2 +3.8800 0.2 +3.8850 0.2 +3.8900 0.2 +3.8950 0.2 +3.9000 0.2 +3.9050 0.2 +3.9100 0.2 +3.9150 0.2 +3.9200 0.2 +3.9250 0.2 +3.9300 0.2 +3.9350 0.2 +3.9400 0.2 +3.9450 0.2 +3.9500 0.2 +3.9550 0.2 +3.9600 0.2 +3.9650 0.2 +3.9700 0.2 +3.9750 0.2 +3.9800 0.2 +3.9850 0.2 +3.9900 0.2 +3.9950 0.2 +4.0000 0.2 +4.0050 0.2 +4.0100 0.2 +4.0150 0.2 +4.0200 0.2 +4.0250 0.2 +4.0300 0.2 +4.0350 0.2 +4.0400 0.2 +4.0450 0.2 +4.0500 0.2 +4.0550 0.2 +4.0600 0.2 +4.0650 0.2 +4.0700 0.2 +4.0750 0.2 +4.0800 0.2 +4.0850 0.2 +4.0900 0.2 +4.0950 0.2 +4.1000 0.2 +4.1050 0.2 +4.1100 0.2 +4.1150 0.2 +4.1200 0.2 +4.1250 0.2 +4.1300 0.2 +4.1350 0.2 +4.1400 0.2 +4.1450 0.2 +4.1500 0.2 +4.1550 0.2 +4.1600 0.2 +4.1650 0.2 +4.1700 0.2 +4.1750 0.2 +4.1800 0.2 +4.1850 0.2 +4.1900 0.2 +4.1950 0.2 +4.2000 0.2 +4.2050 0.2 +4.2100 0.2 +4.2150 0.2 +4.2200 0.2 +4.2250 0.2 +4.2300 0.2 +4.2350 0.2 +4.2400 0.2 +4.2450 0.2 +4.2500 0.5 +4.2550 0.8 +4.2600 0.9 +4.2650 0.9 +4.2700 0.8 +4.2750 0.7 +4.2800 0.6 +4.2850 0.6 +4.2900 0.6 +4.2950 0.6 +4.3000 0.6 +4.3050 0.6 +4.3100 0.5 +4.3150 0.6 +4.3200 0.7 +4.3250 0.9 +4.3300 1.3 +4.3350 1.5 +4.3400 1.5 +4.3450 1.5 +4.3500 1.6 +4.3550 1.5 +4.3600 1.3 +4.3650 1.2 +4.3700 1.4 +4.3750 1.4 +4.3800 1.2 +4.3850 1.2 +4.3900 1.4 +4.3950 1.3 +4.4000 1.3 +4.4050 1.5 +4.4100 1.7 +4.4150 1.7 +4.4200 1.8 +4.4250 1.9 +4.4300 1.9 +4.4350 1.9 +4.4400 1.8 +4.4450 1.6 +4.4500 1.6 +4.4550 1.8 +4.4600 1.6 +4.4650 1.5 +4.4700 1.7 +4.4750 1.8 +4.4800 1.7 +4.4850 1.8 +4.4900 1.9 +4.4950 2.0 +4.5000 2.1 +4.5050 2.0 +4.5100 2.1 +4.5150 2.1 +4.5200 1.9 +4.5250 1.8 +4.5300 2.0 +4.5350 1.9 +4.5400 1.7 +4.5450 1.9 +4.5500 1.9 +4.5550 1.8 +4.5600 2.0 +4.5650 2.0 +4.5700 2.0 +4.5750 2.2 +4.5800 2.1 +4.5850 2.1 +4.5900 2.2 +4.5950 2.1 +4.6000 2.0 +4.6050 2.1 +4.6100 2.0 +4.6150 1.8 +4.6200 2.0 +4.6250 2.0 +4.6300 1.9 +4.6350 2.1 +4.6400 2.1 +4.6450 2.0 +4.6500 2.2 +4.6550 2.2 +4.6600 2.1 +4.6650 2.2 +4.6700 2.2 +4.6750 2.0 +4.6800 2.1 +4.6850 2.0 +4.6900 1.9 +4.6950 2.1 +4.7000 2.0 +4.7050 2.0 +4.7100 2.1 +4.7150 2.1 +4.7200 2.1 +4.7250 2.2 +4.7300 2.2 +4.7350 2.1 +4.7400 2.2 +4.7450 2.1 +4.7500 2.1 +4.7550 2.1 +4.7600 2.1 +4.7650 2.0 +4.7700 2.1 +4.7750 2.0 +4.7800 2.0 +4.7850 2.1 +4.7900 2.1 +4.7950 2.1 +4.8000 2.1 +4.8050 2.1 +4.8100 2.2 +4.8150 2.2 +4.8200 2.1 +4.8250 2.2 +4.8300 2.1 +4.8350 2.1 +4.8400 2.1 +4.8450 2.0 +4.8500 2.0 +4.8550 2.1 +4.8600 2.0 +4.8650 2.1 +4.8700 2.2 +4.8750 2.1 +4.8800 2.1 +4.8850 2.2 +4.8900 2.1 +4.8950 2.2 +4.9000 2.2 +4.9050 2.1 +4.9100 2.1 +4.9150 2.1 +4.9200 2.0 +4.9250 2.1 +4.9300 2.1 +4.9350 2.0 +4.9400 2.1 +4.9450 2.1 +4.9500 2.1 +4.9550 2.2 +4.9600 2.2 +4.9650 2.1 +4.9700 2.2 +4.9750 2.1 +4.9800 2.1 +4.9850 2.1 +4.9900 2.1 +4.9950 2.1 +5.0000 2.1 +5.0050 2.1 +5.0100 2.1 +5.0150 2.1 +5.0200 2.1 +5.0250 2.1 +5.0300 2.2 +5.0350 2.1 +5.0400 2.2 +5.0450 2.2 +5.0500 2.1 +5.0550 2.1 +5.0600 2.1 +5.0650 2.1 +5.0700 2.1 +5.0750 2.1 +5.0800 2.0 +5.0850 2.1 +5.0900 2.1 +5.0950 2.1 +5.1000 2.2 +5.1050 2.1 +5.1100 2.1 +5.1150 2.2 +5.1200 2.1 +5.1250 2.1 +5.1300 2.2 +5.1350 2.1 +5.1400 2.1 +5.1450 2.1 +5.1500 2.1 +5.1550 2.1 +5.1600 2.1 +5.1650 2.1 +5.1700 2.1 +5.1750 2.2 +5.1800 2.1 +5.1850 2.1 +5.1900 2.2 +5.1950 2.1 +5.2000 2.1 +5.2050 2.1 +5.2100 2.1 +5.2150 2.1 +5.2200 2.1 +5.2250 2.1 +5.2300 2.1 +5.2350 2.1 +5.2400 2.1 +5.2450 2.1 +5.2500 2.1 +5.2550 2.1 +5.2600 2.2 +5.2650 2.1 +5.2700 2.1 +5.2750 2.2 +5.2800 2.1 +5.2850 2.1 +5.2900 2.1 +5.2950 2.1 +5.3000 2.1 +5.3050 2.1 +5.3100 2.1 +5.3150 2.1 +5.3200 2.1 +5.3250 2.1 +5.3300 2.1 +5.3350 2.1 +5.3400 2.1 +5.3450 2.2 +5.3500 2.2 +5.3550 2.1 +5.3600 2.1 +5.3650 2.1 +5.3700 2.1 +5.3750 2.1 +5.3800 2.1 +5.3850 2.1 +5.3900 2.1 +5.3950 2.1 +5.4000 2.1 +5.4050 2.1 +5.4100 2.1 +5.4150 2.1 +5.4200 2.2 +5.4250 2.1 +5.4300 2.1 +5.4350 2.2 +5.4400 2.1 +5.4450 2.1 +5.4500 2.1 +5.4550 2.0 +5.4600 2.1 +5.4650 2.1 +5.4700 2.1 +5.4750 2.1 +5.4800 2.1 +5.4850 2.1 +5.4900 2.2 +5.4950 2.1 +5.5000 2.1 +5.5050 2.2 +5.5100 2.1 +5.5150 2.1 +5.5200 2.1 +5.5250 2.1 +5.5300 2.1 +5.5350 2.1 +5.5400 2.1 +5.5450 2.1 +5.5500 2.1 +5.5550 2.1 +5.5600 2.1 +5.5650 2.2 +5.5700 2.1 +5.5750 2.1 +5.5800 2.2 +5.5850 2.1 +5.5900 2.1 +5.5950 2.1 +5.6000 2.1 +5.6050 2.1 +5.6100 2.1 +5.6150 2.0 +5.6200 2.1 +5.6250 2.1 +5.6300 2.1 +5.6350 2.2 +5.6400 2.1 +5.6450 2.1 +5.6500 2.2 +5.6550 2.1 +5.6600 2.1 +5.6650 2.1 +5.6700 2.1 +5.6750 2.1 +5.6800 2.1 +5.6850 2.1 +5.6900 2.1 +5.6950 2.1 +5.7000 2.1 +5.7050 2.1 +5.7100 2.2 +5.7150 2.1 +5.7200 2.1 +5.7250 2.2 +5.7300 2.1 +5.7350 2.1 +5.7400 2.1 +5.7450 2.1 +5.7500 2.1 +5.7550 2.1 +5.7600 2.0 +5.7650 2.1 +5.7700 2.1 +5.7750 2.1 +5.7800 2.1 +5.7850 2.1 +5.7900 2.1 +5.7950 2.2 +5.8000 2.1 +5.8050 2.1 +5.8100 2.1 +5.8150 2.1 +5.8200 2.1 +5.8250 2.1 +5.8300 2.1 +5.8350 2.1 +5.8400 2.1 +5.8450 2.1 +5.8500 2.1 +5.8550 2.2 +5.8600 2.1 +5.8650 2.1 +5.8700 2.1 +5.8750 2.1 +5.8800 2.1 +5.8850 2.1 +5.8900 2.1 +5.8950 2.1 +5.9000 2.1 +5.9050 2.1 +5.9100 2.1 +5.9150 2.1 +5.9200 2.1 +5.9250 2.1 +5.9300 2.1 +5.9350 2.1 +5.9400 2.1 +5.9450 2.1 +5.9500 2.1 +5.9550 2.2 +5.9600 2.1 +5.9650 2.1 +5.9700 2.2 +5.9750 2.1 +5.9800 2.1 +5.9850 2.1 +5.9900 2.1 +5.9950 2.1 +6.0000 2.1 +6.0050 2.1 +6.0100 2.1 +6.0150 2.1 +6.0200 2.1 +6.0250 2.1 +6.0300 2.1 +6.0350 2.1 +6.0400 2.1 +6.0450 2.1 +6.0500 2.1 +6.0550 2.1 +6.0600 2.1 +6.0650 2.1 +6.0700 2.1 +6.0750 2.1 +6.0800 2.1 +6.0850 2.2 +6.0900 2.1 +6.0950 2.1 +6.1000 2.2 +6.1050 2.1 +6.1100 2.1 +6.1150 2.2 +6.1200 2.1 +6.1250 2.1 +6.1300 2.1 +6.1350 2.0 +6.1400 2.1 +6.1450 2.1 +6.1500 2.1 +6.1550 2.1 +6.1600 2.1 +6.1650 2.1 +6.1700 2.1 +6.1750 2.1 +6.1800 2.1 +6.1850 2.1 +6.1900 2.1 +6.1950 2.1 +6.2000 2.1 +6.2050 2.1 +6.2100 2.1 +6.2150 2.2 +6.2200 2.1 +6.2250 2.1 +6.2300 2.2 +6.2350 2.1 +6.2400 2.1 +6.2450 2.1 +6.2500 2.1 +6.2550 2.1 +6.2600 2.1 +6.2650 2.1 +6.2700 2.1 +6.2750 2.1 +6.2800 2.1 +6.2850 2.1 +6.2900 2.1 +6.2950 2.1 +6.3000 2.1 +6.3050 2.1 +6.3100 2.1 +6.3150 2.1 +6.3200 2.1 +6.3250 2.1 +6.3300 2.1 +6.3350 2.1 +6.3400 2.1 +6.3450 2.2 +6.3500 2.1 +6.3550 2.1 +6.3600 2.2 +6.3650 2.1 +6.3700 2.1 +6.3750 2.1 +6.3800 2.1 +6.3850 2.1 +6.3900 2.2 +6.3950 2.1 +6.4000 2.1 +6.4050 2.1 +6.4100 2.1 +6.4150 2.1 +6.4200 2.1 +6.4250 2.1 +6.4300 2.1 +6.4350 2.1 +6.4400 2.0 +6.4450 2.1 +6.4500 2.1 +6.4550 2.1 +6.4600 2.1 +6.4650 2.1 +6.4700 2.1 +6.4750 2.2 +6.4800 2.1 +6.4850 2.1 +6.4900 2.1 +6.4950 2.1 +6.5000 2.1 +6.5050 2.2 +6.5100 2.1 +6.5150 2.1 +6.5200 2.1 +6.5250 2.1 +6.5300 2.1 +6.5350 2.1 +6.5400 2.1 +6.5450 2.1 +6.5500 2.1 +6.5550 2.1 +6.5600 2.1 +6.5650 2.1 +6.5700 2.1 +6.5750 2.1 +6.5800 2.1 +6.5850 2.1 +6.5900 2.1 +6.5950 2.1 +6.6000 2.1 +6.6050 2.2 +6.6100 2.1 +6.6150 2.1 +6.6200 2.1 +6.6250 2.1 +6.6300 2.1 +6.6350 2.2 +6.6400 2.1 +6.6450 2.1 +6.6500 2.1 +6.6550 2.1 +6.6600 2.1 +6.6650 2.1 +6.6700 2.1 +6.6750 2.1 +6.6800 2.1 +6.6850 2.1 +6.6900 2.1 +6.6950 2.1 +6.7000 2.1 +6.7050 2.1 +6.7100 2.1 +6.7150 2.1 +6.7200 2.1 +6.7250 2.1 +6.7300 2.1 +6.7350 2.1 +6.7400 2.1 +6.7450 2.1 +6.7500 2.1 +6.7550 2.1 +6.7600 2.1 +6.7650 2.1 +6.7700 2.1 +6.7750 2.1 +6.7800 2.1 +6.7850 2.1 +6.7900 2.1 +6.7950 2.1 +6.8000 2.1 +6.8050 2.1 +6.8100 2.1 +6.8150 2.1 +6.8200 2.1 +6.8250 2.1 +6.8300 2.1 +6.8350 2.1 +6.8400 2.1 +6.8450 2.1 +6.8500 2.1 +6.8550 2.1 +6.8600 2.1 +6.8650 2.1 +6.8700 2.1 +6.8750 2.1 +6.8800 2.1 +6.8850 2.1 +6.8900 2.1 +6.8950 2.1 +6.9000 2.1 +6.9050 2.1 +6.9100 2.1 +6.9150 2.1 +6.9200 2.1 +6.9250 2.1 +6.9300 2.1 +6.9350 2.1 +6.9400 2.1 +6.9450 2.1 +6.9500 2.1 +6.9550 2.1 +6.9600 2.1 +6.9650 2.1 +6.9700 2.1 +6.9750 2.0 +6.9800 2.1 +6.9850 2.1 +6.9900 2.1 +6.9950 2.1 +7.0000 2.1 +7.0050 2.1 +7.0100 2.1 +7.0150 2.1 +7.0200 2.1 +7.0250 2.1 +7.0300 2.1 +7.0350 2.1 +7.0400 2.1 +7.0450 2.1 +7.0500 2.1 +7.0550 2.1 +7.0600 2.1 +7.0650 2.1 +7.0700 2.1 +7.0750 2.1 +7.0800 2.1 +7.0850 2.1 +7.0900 2.1 +7.0950 2.1 +7.1000 2.1 +7.1050 2.0 +7.1100 2.1 +7.1150 2.1 +7.1200 2.1 +7.1250 2.1 +7.1300 2.1 +7.1350 2.1 +7.1400 2.1 +7.1450 2.1 +7.1500 2.1 +7.1550 2.1 +7.1600 2.1 +7.1650 2.1 +7.1700 2.1 +7.1750 2.1 +7.1800 2.1 +7.1850 2.1 +7.1900 2.1 +7.1950 2.1 +7.2000 2.1 +7.2050 2.0 +7.2100 2.1 +7.2150 2.1 +7.2200 2.0 +7.2250 2.1 +7.2300 2.1 +7.2350 2.0 +7.2400 2.1 +7.2450 2.1 +7.2500 2.1 +7.2550 2.1 +7.2600 2.1 +7.2650 2.0 +7.2700 2.1 +7.2750 2.1 +7.2800 2.1 +7.2850 2.1 +7.2900 2.1 +7.2950 2.1 +7.3000 2.1 +7.3050 2.1 +7.3100 2.1 +7.3150 2.1 +7.3200 2.1 +7.3250 2.1 +7.3300 2.1 +7.3350 2.0 +7.3400 2.1 +7.3450 2.1 +7.3500 2.0 +7.3550 2.1 +7.3600 2.1 +7.3650 2.0 +7.3700 2.1 +7.3750 2.1 +7.3800 2.1 +7.3850 2.1 +7.3900 2.1 +7.3950 2.1 +7.4000 2.1 +7.4050 2.1 +7.4100 2.1 +7.4150 2.1 +7.4200 2.1 +7.4250 2.1 +7.4300 2.1 +7.4350 2.1 +7.4400 2.1 +7.4450 2.1 +7.4500 2.1 +7.4550 2.1 +7.4600 2.1 +7.4650 2.0 +7.4700 2.1 +7.4750 2.1 +7.4800 2.0 +7.4850 2.1 +7.4900 2.1 +7.4950 2.1 +7.5000 2.1 +7.5050 2.1 +7.5100 2.1 +7.5150 2.1 +7.5200 2.1 +7.5250 2.1 +7.5300 2.1 +7.5350 2.1 +7.5400 2.1 +7.5450 2.1 +7.5500 2.1 +7.5550 2.1 +7.5600 2.1 +7.5650 2.1 +7.5700 2.1 +7.5750 2.1 +7.5800 2.1 +7.5850 2.1 +7.5900 2.1 +7.5950 2.1 +7.6000 2.1 +7.6050 2.1 +7.6100 2.1 +7.6150 2.1 +7.6200 2.1 +7.6250 2.1 +7.6300 2.1 +7.6350 2.1 +7.6400 2.0 +7.6450 2.1 +7.6500 2.1 +7.6550 2.1 +7.6600 2.1 +7.6650 2.1 +7.6700 2.1 +7.6750 2.1 +7.6800 2.1 +7.6850 2.1 +7.6900 2.1 +7.6950 2.1 +7.7000 2.1 +7.7050 2.1 +7.7100 2.1 +7.7150 2.1 +7.7200 2.1 +7.7250 2.1 +7.7300 2.1 +7.7350 2.1 +7.7400 2.1 +7.7450 2.1 +7.7500 2.1 +7.7550 2.1 +7.7600 2.1 +7.7650 2.1 +7.7700 2.0 +7.7750 2.1 +7.7800 2.1 +7.7850 2.1 +7.7900 2.1 +7.7950 2.1 +7.8000 2.1 +7.8050 2.1 +7.8100 2.1 +7.8150 2.1 +7.8200 2.1 +7.8250 2.1 +7.8300 2.1 +7.8350 2.1 +7.8400 2.1 +7.8450 2.1 +7.8500 2.1 +7.8550 2.1 +7.8600 2.1 +7.8650 2.1 +7.8700 2.0 +7.8750 2.1 +7.8800 2.1 +7.8850 2.1 +7.8900 2.1 +7.8950 2.1 +7.9000 2.1 +7.9050 2.1 +7.9100 2.1 +7.9150 2.1 +7.9200 2.1 +7.9250 2.1 +7.9300 2.1 +7.9350 2.2 +7.9400 2.1 +7.9450 2.1 +7.9500 2.1 +7.9550 2.1 +7.9600 2.1 +7.9650 2.1 +7.9700 2.1 +7.9750 2.1 +7.9800 2.1 +7.9850 2.1 +7.9900 2.1 +7.9950 2.1 +8.0000 2.1 +8.0050 2.1 +8.0100 2.1 +8.0150 2.1 +8.0200 2.1 +8.0250 2.1 +8.0300 2.1 +8.0350 2.1 +8.0400 2.1 +8.0450 2.1 +8.0500 2.2 +8.0550 2.1 +8.0600 2.1 +8.0650 2.1 +8.0700 2.1 +8.0750 2.1 +8.0800 2.1 +8.0850 2.1 +8.0900 2.1 +8.0950 2.1 +8.1000 2.1 +8.1050 2.1 +8.1100 2.1 +8.1150 2.1 +8.1200 2.1 +8.1250 2.1 +8.1300 2.1 +8.1350 2.1 +8.1400 2.1 +8.1450 2.0 +8.1500 2.1 +8.1550 2.1 +8.1600 2.0 +8.1650 2.1 +8.1700 2.1 +8.1750 2.1 +8.1800 2.1 +8.1850 2.1 +8.1900 2.1 +8.1950 2.1 +8.2000 2.1 +8.2050 2.1 +8.2100 2.2 +8.2150 2.1 +8.2200 2.1 +8.2250 2.1 +8.2300 2.1 +8.2350 2.1 +8.2400 2.1 +8.2450 2.1 +8.2500 2.1 +8.2550 2.1 +8.2600 2.0 +8.2650 2.1 +8.2700 2.1 +8.2750 2.1 +8.2800 2.1 +8.2850 2.1 +8.2900 2.1 +8.2950 2.1 +8.3000 2.1 +8.3050 2.1 +8.3100 2.1 +8.3150 2.1 +8.3200 2.1 +8.3250 2.2 +8.3300 2.1 +8.3350 2.1 +8.3400 2.1 +8.3450 2.1 +8.3500 2.1 +8.3550 2.1 +8.3600 2.1 +8.3650 2.1 +8.3700 2.1 +8.3750 2.1 +8.3800 2.1 +8.3850 2.1 +8.3900 2.1 +8.3950 2.1 +8.4000 2.1 +8.4050 2.1 +8.4100 2.1 +8.4150 2.1 +8.4200 2.1 +8.4250 2.2 +8.4300 2.1 +8.4350 2.1 +8.4400 2.1 +8.4450 2.1 +8.4500 2.1 +8.4550 2.1 +8.4600 2.1 +8.4650 2.1 +8.4700 2.1 +8.4750 2.1 +8.4800 2.1 +8.4850 2.1 +8.4900 2.1 +8.4950 2.1 +8.5000 2.1 +8.5050 2.1 +8.5100 2.1 +8.5150 2.1 +8.5200 2.1 +8.5250 2.1 +8.5300 2.1 +8.5350 2.1 +8.5400 2.1 +8.5450 2.1 +8.5500 2.1 +8.5550 2.1 +8.5600 2.1 +8.5650 2.1 +8.5700 2.1 +8.5750 2.1 +8.5800 2.1 +8.5850 2.1 +8.5900 2.1 +8.5950 2.1 +8.6000 2.1 +8.6050 2.0 +8.6100 2.1 +8.6150 2.1 +8.6200 2.1 +8.6250 2.1 +8.6300 2.1 +8.6350 2.1 +8.6400 2.1 +8.6450 2.1 +8.6500 2.1 +8.6550 2.1 +8.6600 2.1 +8.6650 2.1 +8.6700 2.1 +8.6750 2.1 +8.6800 2.1 +8.6850 2.1 +8.6900 2.1 +8.6950 2.1 +8.7000 2.1 +8.7050 2.1 +8.7100 2.1 +8.7150 2.1 +8.7200 2.1 +8.7250 2.1 +8.7300 2.1 +8.7350 2.1 +8.7400 2.1 +8.7450 2.1 +8.7500 2.1 +8.7550 2.1 +8.7600 2.1 +8.7650 2.1 +8.7700 2.1 +8.7750 2.1 +8.7800 2.1 +8.7850 2.1 +8.7900 2.1 +8.7950 2.1 +8.8000 2.1 +8.8050 2.1 +8.8100 2.1 +8.8150 2.1 +8.8200 2.1 +8.8250 2.1 +8.8300 2.1 +8.8350 2.1 +8.8400 2.1 +8.8450 2.1 +8.8500 2.1 +8.8550 2.1 +8.8600 2.1 +8.8650 2.1 +8.8700 2.1 +8.8750 2.1 +8.8800 2.1 +8.8850 2.1 +8.8900 2.1 +8.8950 2.0 +8.9000 2.1 +8.9050 2.1 +8.9100 2.1 +8.9150 2.1 +8.9200 2.1 +8.9250 2.1 +8.9300 2.1 +8.9350 2.1 +8.9400 2.0 +8.9450 2.1 +8.9500 2.1 +8.9550 2.1 +8.9600 2.1 +8.9650 2.1 +8.9700 2.1 +8.9750 2.1 +8.9800 2.1 +8.9850 2.1 +8.9900 2.1 +8.9950 2.0 +9.0000 2.1 +9.0050 2.1 +9.0100 2.1 +9.0150 2.1 +9.0200 2.1 +9.0250 2.0 +9.0300 2.1 +9.0350 2.1 +9.0400 2.1 +9.0450 2.1 +9.0500 2.1 +9.0550 2.0 +9.0600 2.1 +9.0650 2.1 +9.0700 2.0 +9.0750 2.1 +9.0800 2.1 +9.0850 2.1 +9.0900 2.1 +9.0950 2.1 +9.1000 2.1 +9.1050 2.1 +9.1100 2.1 +9.1150 2.1 +9.1200 2.1 +9.1250 2.0 +9.1300 2.1 +9.1350 2.1 +9.1400 2.0 +9.1450 2.1 +9.1500 2.1 +9.1550 2.0 +9.1600 2.1 +9.1650 2.1 +9.1700 2.1 +9.1750 2.1 +9.1800 2.1 +9.1850 2.1 +9.1900 2.1 +9.1950 2.1 +9.2000 2.0 +9.2050 2.0 +9.2100 1.9 +9.2150 1.8 +9.2200 1.8 +9.2250 1.6 +9.2300 1.5 +9.2350 1.5 +9.2400 1.4 +9.2450 1.3 +9.2500 1.5 +9.2550 1.4 +9.2600 1.3 +9.2650 1.4 +9.2700 1.5 +9.2750 1.3 +9.2800 1.3 +9.2850 1.4 +9.2900 1.3 +9.2950 1.2 +9.3000 1.1 +9.3050 1.1 +9.3100 1.1 +9.3150 0.9 +9.3200 1.0 +9.3250 1.1 +9.3300 1.0 +9.3350 0.9 +9.3400 1.0 +9.3450 1.1 +9.3500 0.9 +9.3550 0.9 +9.3600 1.0 +9.3650 1.0 +9.3700 0.9 +9.3750 0.8 +9.3800 0.8 +9.3850 0.9 +9.3900 0.9 +9.3950 0.7 +9.4000 0.6 +9.4050 0.8 +9.4100 0.8 +9.4150 0.7 +9.4200 0.6 +9.4250 0.8 +9.4300 0.9 +9.4350 0.8 +9.4400 0.6 +9.4450 0.7 +9.4500 0.8 +9.4550 0.7 +9.4600 0.6 +9.4650 0.6 +9.4700 0.6 +9.4750 0.5 +9.4800 0.6 +9.4850 0.6 +9.4900 0.6 +9.4950 0.5 +9.5000 0.6 +9.5050 0.6 +9.5100 0.7 +9.5150 0.6 +9.5200 0.5 +9.5250 0.6 +9.5300 0.6 +9.5350 0.5 +9.5400 0.5 +9.5450 0.5 +9.5500 0.4 +9.5550 0.5 +9.5600 0.5 +9.5650 0.4 +9.5700 0.5 +9.5750 0.5 +9.5800 0.4 +9.5850 0.5 +9.5900 0.5 +9.5950 0.4 +9.6000 0.4 +9.6050 0.4 +9.6100 0.5 +9.6150 0.4 +9.6200 0.4 +9.6250 0.4 +9.6300 0.4 +9.6350 0.4 +9.6400 0.4 +9.6450 0.4 +9.6500 0.4 +9.6550 0.4 +9.6600 0.3 +9.6650 0.4 +9.6700 0.4 +9.6750 0.4 +9.6800 0.4 +9.6850 0.4 +9.6900 0.4 +9.6950 0.4 +9.7000 0.3 +9.7050 0.3 +9.7100 0.4 +9.7150 0.3 +9.7200 0.3 +9.7250 0.3 +9.7300 0.3 +9.7350 0.3 +9.7400 0.3 +9.7450 0.3 +9.7500 0.3 +9.7550 0.4 +9.7600 0.3 +9.7650 0.3 +9.7700 0.3 +9.7750 0.3 +9.7800 0.3 +9.7850 0.3 +9.7900 0.3 +9.7950 0.3 +9.8000 0.3 +9.8050 0.3 +9.8100 0.3 +9.8150 0.3 +9.8200 0.3 +9.8250 0.3 +9.8300 0.3 +9.8350 0.3 +9.8400 0.3 +9.8450 0.3 +9.8500 0.3 +9.8550 0.3 +9.8600 0.3 +9.8650 0.2 +9.8700 0.2 +9.8750 0.2 +9.8800 0.3 +9.8850 0.3 +9.8900 0.3 +9.8950 0.3 +9.9000 0.2 +9.9050 0.2 +9.9100 0.3 +9.9150 0.3 +9.9200 0.2 +9.9250 0.2 +9.9300 0.3 +9.9350 0.2 +9.9400 0.2 +9.9450 0.2 +9.9500 0.2 +9.9550 0.2 +9.9600 0.2 +9.9650 0.2 +9.9700 0.2 +9.9750 0.2 +9.9800 0.2 +9.9850 0.2 +9.9900 0.2 +9.9950 0.2 +10.0000 0.2 +10.0050 0.2 +10.0100 0.2 +10.0150 0.2 +10.0200 0.2 +10.0250 0.2 +10.0300 0.2 +10.0350 0.2 +10.0400 0.2 +10.0450 0.2 +10.0500 0.2 +10.0550 0.2 +10.0600 0.2 +10.0650 0.2 +10.0700 0.2 +10.0750 0.2 +10.0800 0.2 +10.0850 0.2 +10.0900 0.2 +10.0950 0.2 +10.1000 0.2 +10.1050 0.2 +10.1100 0.2 +10.1150 0.2 +10.1200 0.2 +10.1250 0.2 +10.1300 0.2 +10.1350 0.2 +10.1400 0.2 +10.1450 0.2 +10.1500 0.2 +10.1550 0.2 +10.1600 0.2 +10.1650 0.2 +10.1700 0.2 +10.1750 0.2 +10.1800 0.2 +10.1850 0.2 +10.1900 0.2 +10.1950 0.2 +10.2000 0.2 +10.2050 0.2 +10.2100 0.2 +10.2150 0.2 +10.2200 0.2 +10.2250 0.2 +10.2300 0.2 +10.2350 0.2 +10.2400 0.2 +10.2450 0.2 +10.2500 0.2 +10.2550 0.2 +10.2600 0.2 +10.2650 0.2 +10.2700 0.2 +10.2750 0.2 +10.2800 0.2 +10.2850 0.2 +10.2900 0.2 +10.2950 0.2 +10.3000 0.2 +10.3050 0.2 +10.3100 0.2 +10.3150 0.2 +10.3200 0.2 +10.3250 0.2 +10.3300 0.2 +10.3350 0.2 +10.3400 0.2 +10.3450 0.2 +10.3500 0.2 +10.3550 0.2 +10.3600 0.2 +10.3650 0.2 +10.3700 0.2 +10.3750 0.2 +10.3800 0.2 +10.3850 0.2 +10.3900 0.2 +10.3950 0.2 +10.4000 0.2 +10.4050 0.2 +10.4100 0.2 +10.4150 0.2 +10.4200 0.2 +10.4250 0.2 +10.4300 0.2 +10.4350 0.2 +10.4400 0.2 +10.4450 0.2 +10.4500 0.2 +10.4550 0.2 +10.4600 0.2 +10.4650 0.2 +10.4700 0.2 +10.4750 0.2 +10.4800 0.2 +10.4850 0.2 +10.4900 0.2 +10.4950 0.2 +10.5000 0.2 +10.5050 0.2 +10.5100 0.2 +10.5150 0.2 +10.5200 0.2 +10.5250 0.2 +10.5300 0.2 +10.5350 0.2 +10.5400 0.2 +10.5450 0.2 +10.5500 0.2 +10.5550 0.2 +10.5600 0.2 +10.5650 0.2 +10.5700 0.2 +10.5750 0.2 +10.5800 0.2 +10.5850 0.2 +10.5900 0.2 +10.5950 0.2 +10.6000 0.2 +10.6050 0.2 +10.6100 0.2 +10.6150 0.2 +10.6200 0.2 +10.6250 0.2 +10.6300 0.2 +10.6350 0.2 +10.6400 0.2 +10.6450 0.2 +10.6500 0.2 +10.6550 0.2 +10.6600 0.2 +10.6650 0.2 +10.6700 0.2 +10.6750 0.2 +10.6800 0.2 +10.6850 0.2 +10.6900 0.2 +10.6950 0.2 +10.7000 0.2 +10.7050 0.2 +10.7100 0.2 +10.7150 0.2 +10.7200 0.2 +10.7250 0.2 +10.7300 0.2 +10.7350 0.2 +10.7400 0.2 +10.7450 0.2 +10.7500 0.2 +10.7550 0.2 +10.7600 0.2 +10.7650 0.2 +10.7700 0.2 +10.7750 0.2 +10.7800 0.2 +10.7850 0.2 +10.7900 0.2 +10.7950 0.2 +10.8000 0.2 +10.8050 0.2 +10.8100 0.2 +10.8150 0.2 +10.8200 0.2 +10.8250 0.2 +10.8300 0.2 +10.8350 0.2 +10.8400 0.2 +10.8450 0.2 +10.8500 0.2 +10.8550 0.2 +10.8600 0.2 +10.8650 0.2 +10.8700 0.2 +10.8750 0.2 +10.8800 0.2 +10.8850 0.2 +10.8900 0.2 +10.8950 0.2 +10.9000 0.2 +10.9050 0.2 +10.9100 0.2 +10.9150 0.2 +10.9200 0.2 +10.9250 0.2 +10.9300 0.2 +10.9350 0.2 +10.9400 0.2 +10.9450 0.2 +10.9500 0.2 +10.9550 0.2 +10.9600 0.2 +10.9650 0.2 +10.9700 0.2 +10.9750 0.2 +10.9800 0.2 +10.9850 0.2 +10.9900 0.2 +10.9950 0.2 +11.0000 0.2 +11.0050 0.2 +11.0100 0.2 +11.0150 0.2 +11.0200 0.2 +11.0250 0.2 +11.0300 0.2 +11.0350 0.2 +11.0400 0.2 +11.0450 0.2 +11.0500 0.2 +11.0550 0.2 +11.0600 0.2 +11.0650 0.2 +11.0700 0.2 +11.0750 0.2 +11.0800 0.2 +11.0850 0.2 +11.0900 0.2 +11.0950 0.2 +11.1000 0.2 +11.1050 0.2 +11.1100 0.2 +11.1150 0.2 +11.1200 0.2 +11.1250 0.2 +11.1300 0.2 +11.1350 0.2 +11.1400 0.2 +11.1450 0.2 +11.1500 0.2 +11.1550 0.2 +11.1600 0.2 +11.1650 0.2 +11.1700 0.2 +11.1750 0.2 +11.1800 0.2 +11.1850 0.2 +11.1900 0.2 +11.1950 0.2 +11.2000 0.2 +11.2050 0.2 +11.2100 0.2 +11.2150 0.2 +11.2200 0.2 +11.2250 0.2 +11.2300 0.2 +11.2350 0.2 +11.2400 0.2 +11.2450 0.2 +11.2500 0.2 +11.2550 0.2 +11.2600 0.2 +11.2650 0.2 +11.2700 0.2 +11.2750 0.2 +11.2800 0.2 +11.2850 0.2 +11.2900 0.2 +11.2950 0.2 +11.3000 0.2 +11.3050 0.2 +11.3100 0.2 +11.3150 0.2 +11.3200 0.2 +11.3250 0.2 +11.3300 0.2 +11.3350 0.2 +11.3400 0.2 +11.3450 0.2 +11.3500 0.2 +11.3550 0.2 +11.3600 0.2 +11.3650 0.2 +11.3700 0.2 +11.3750 0.2 +11.3800 0.2 +11.3850 0.2 +11.3900 0.2 +11.3950 0.2 +11.4000 0.2 +11.4050 0.2 +11.4100 0.2 +11.4150 0.2 +11.4200 0.2 +11.4250 0.2 +11.4300 0.2 +11.4350 0.2 +11.4400 0.2 +11.4450 0.2 +11.4500 0.2 +11.4550 0.2 +11.4600 0.2 +11.4650 0.2 +11.4700 0.2 +11.4750 0.2 +11.4800 0.2 +11.4850 0.2 +11.4900 0.2 +11.4950 0.2 +11.5000 0.2 +11.5050 0.2 +11.5100 0.2 +11.5150 0.2 +11.5200 0.2 +11.5250 0.2 +11.5300 0.2 +11.5350 0.2 +11.5400 0.2 +11.5450 0.2 +11.5500 0.2 +11.5550 0.2 +11.5600 0.2 +11.5650 0.2 +11.5700 0.2 +11.5750 0.2 +11.5800 0.2 +11.5850 0.2 +11.5900 0.2 +11.5950 0.2 +11.6000 0.2 +11.6050 0.2 +11.6100 0.2 +11.6150 0.2 +11.6200 0.2 +11.6250 0.2 +11.6300 0.2 +11.6350 0.2 +11.6400 0.2 +11.6450 0.2 +11.6500 0.2 +11.6550 0.2 +11.6600 0.2 +11.6650 0.2 +11.6700 0.2 +11.6750 0.2 +11.6800 0.2 +11.6850 0.2 +11.6900 0.2 +11.6950 0.2 +11.7000 0.2 +11.7050 0.2 +11.7100 0.2 +11.7150 0.2 +11.7200 0.2 +11.7250 0.2 +11.7300 0.2 +11.7350 0.2 +11.7400 0.2 +11.7450 0.2 +11.7500 0.2 +11.7550 0.2 +11.7600 0.2 +11.7650 0.2 +11.7700 0.2 +11.7750 0.2 +11.7800 0.2 +11.7850 0.2 +11.7900 0.2 +11.7950 0.2 +11.8000 0.2 +11.8050 0.2 +11.8100 0.2 +11.8150 0.2 +11.8200 0.2 +11.8250 0.2 +11.8300 0.2 +11.8350 0.2 +11.8400 0.2 +11.8450 0.2 +11.8500 0.2 +11.8550 0.2 +11.8600 0.2 +11.8650 0.2 +11.8700 0.2 +11.8750 0.2 +11.8800 0.2 +11.8850 0.2 +11.8900 0.2 +11.8950 0.2 +11.9000 0.2 +11.9050 0.2 +11.9100 0.2 +11.9150 0.2 +11.9200 0.2 +11.9250 0.2 +11.9300 0.2 +11.9350 0.2 +11.9400 0.2 +11.9450 0.2 +11.9500 0.2 +11.9550 0.2 +11.9600 0.2 +11.9650 0.2 +11.9700 0.2 +11.9750 0.2 +11.9800 0.2 +11.9850 0.2 +11.9900 0.2 +11.9950 0.2 +12.0000 0.2 +12.0050 0.2 +12.0100 0.2 +12.0150 0.2 +12.0200 0.2 +12.0250 0.2 +12.0300 0.2 +12.0350 0.2 +12.0400 0.2 +12.0450 0.2 +12.0500 0.2 +12.0550 0.2 +12.0600 0.2 +12.0650 0.2 +12.0700 0.2 +12.0750 0.2 +12.0800 0.2 +12.0850 0.2 +12.0900 0.2 +12.0950 0.2 +12.1000 0.2 +12.1050 0.2 +12.1100 0.2 +12.1150 0.2 +12.1200 0.2 +12.1250 0.2 +12.1300 0.2 +12.1350 0.2 +12.1400 0.2 +12.1450 0.2 +12.1500 0.2 +12.1550 0.2 +12.1600 0.2 +12.1650 0.2 +12.1700 0.2 +12.1750 0.2 +12.1800 0.2 +12.1850 0.2 +12.1900 0.2 +12.1950 0.2 +12.2000 0.2 +12.2050 0.2 +12.2100 0.2 +12.2150 0.2 +12.2200 0.2 +12.2250 0.2 +12.2300 0.2 +12.2350 0.2 +12.2400 0.2 +12.2450 0.2 +12.2500 0.2 +12.2550 0.2 +12.2600 0.2 +12.2650 0.2 +12.2700 0.2 +12.2750 0.2 +12.2800 0.2 +12.2850 0.2 +12.2900 0.2 +12.2950 0.2 +12.3000 0.2 +12.3050 0.2 +12.3100 0.2 +12.3150 0.2 +12.3200 0.2 +12.3250 0.2 +12.3300 0.2 +12.3350 0.2 +12.3400 0.2 +12.3450 0.2 +12.3500 0.2 +12.3550 0.2 +12.3600 0.2 +12.3650 0.2 +12.3700 0.2 +12.3750 0.2 +12.3800 0.2 +12.3850 0.2 +12.3900 0.2 +12.3950 0.2 +12.4000 0.2 +12.4050 0.2 +12.4100 0.2 +12.4150 0.2 +12.4200 0.2 +12.4250 0.2 +12.4300 0.2 +12.4350 0.2 +12.4400 0.2 +12.4450 0.2 +12.4500 0.2 +12.4550 0.2 +12.4600 0.2 +12.4650 0.2 +12.4700 0.2 +12.4750 0.2 +12.4800 0.2 +12.4850 0.2 +12.4900 0.2 +12.4950 0.2 +12.5000 0.2 +12.5050 0.2 +12.5100 0.2 +12.5150 0.2 +12.5200 0.2 +12.5250 0.2 +12.5300 0.2 +12.5350 0.2 +12.5400 0.2 +12.5450 0.2 +12.5500 0.2 +12.5550 0.2 +12.5600 0.2 +12.5650 0.2 +12.5700 0.2 +12.5750 0.2 +12.5800 0.2 +12.5850 0.2 +12.5900 0.2 +12.5950 0.2 +12.6000 0.2 +12.6050 0.2 +12.6100 0.2 +12.6150 0.2 +12.6200 0.2 +12.6250 0.2 +12.6300 0.2 +12.6350 0.2 +12.6400 0.2 +12.6450 0.2 +12.6500 0.2 +12.6550 0.2 +12.6600 0.2 +12.6650 0.2 +12.6700 0.2 +12.6750 0.2 +12.6800 0.2 +12.6850 0.2 +12.6900 0.2 +12.6950 0.2 +12.7000 0.2 +12.7050 0.2 +12.7100 0.2 +12.7150 0.2 +12.7200 0.2 +12.7250 0.2 +12.7300 0.2 +12.7350 0.2 +12.7400 0.2 +12.7450 0.2 +12.7500 0.2 +12.7550 0.2 +12.7600 0.2 +12.7650 0.2 +12.7700 0.2 +12.7750 0.2 +12.7800 0.2 +12.7850 0.2 +12.7900 0.2 +12.7950 0.2 +12.8000 0.2 +12.8050 0.2 +12.8100 0.2 +12.8150 0.2 +12.8200 0.2 +12.8250 0.2 +12.8300 0.2 +12.8350 0.2 +12.8400 0.2 +12.8450 0.2 +12.8500 0.2 +12.8550 0.2 +12.8600 0.2 +12.8650 0.2 +12.8700 0.2 +12.8750 0.2 +12.8800 0.2 +12.8850 0.2 +12.8900 0.2 +12.8950 0.2 +12.9000 0.2 +12.9050 0.2 +12.9100 0.2 +12.9150 0.2 +12.9200 0.2 +12.9250 0.2 +12.9300 0.2 +12.9350 0.2 +12.9400 0.2 +12.9450 0.2 +12.9500 0.2 +12.9550 0.2 +12.9600 0.2 +12.9650 0.2 +12.9700 0.2 +12.9750 0.2 +12.9800 0.2 +12.9850 0.2 +12.9900 0.2 +12.9950 0.2 +13.0000 0.2 +13.0050 0.2 +13.0100 0.2 +13.0150 0.2 +13.0200 0.2 +13.0250 0.2 +13.0300 0.2 +13.0350 0.2 +13.0400 0.2 +13.0450 0.2 +13.0500 0.2 +13.0550 0.2 +13.0600 0.2 +13.0650 0.2 +13.0700 0.2 +13.0750 0.2 +13.0800 0.2 +13.0850 0.2 +13.0900 0.2 +13.0950 0.2 +13.1000 0.2 +13.1050 0.2 +13.1100 0.2 +13.1150 0.2 +13.1200 0.2 +13.1250 0.2 +13.1300 0.2 +13.1350 0.2 +13.1400 0.2 +13.1450 0.2 +13.1500 0.2 +13.1550 0.2 +13.1600 0.2 +13.1650 0.2 +13.1700 0.2 +13.1750 0.2 +13.1800 0.2 +13.1850 0.2 +13.1900 0.2 +13.1950 0.2 +13.2000 0.2 +13.2050 0.2 +13.2100 0.2 +13.2150 0.2 +13.2200 0.2 +13.2250 0.2 +13.2300 0.2 +13.2350 0.2 +13.2400 0.2 +13.2450 0.2 +13.2500 0.2 +13.2550 0.2 +13.2600 0.2 +13.2650 0.2 +13.2700 0.2 +13.2750 0.2 +13.2800 0.2 +13.2850 0.2 +13.2900 0.2 +13.2950 0.2 +13.3000 0.2 +13.3050 0.2 +13.3100 0.2 +13.3150 0.2 +13.3200 0.2 +13.3250 0.2 +13.3300 0.2 +13.3350 0.2 +13.3400 0.2 +13.3450 0.2 +13.3500 0.2 +13.3550 0.2 +13.3600 0.2 +13.3650 0.2 +13.3700 0.2 +13.3750 0.2 +13.3800 0.2 +13.3850 0.2 +13.3900 0.2 +13.3950 0.2 +13.4000 0.2 +13.4050 0.2 +13.4100 0.2 +13.4150 0.2 +13.4200 0.2 +13.4250 0.2 +13.4300 0.2 +13.4350 0.2 +13.4400 0.2 +13.4450 0.2 +13.4500 0.2 +13.4550 0.2 +13.4600 0.2 +13.4650 0.2 +13.4700 0.2 +13.4750 0.2 +13.4800 0.2 +13.4850 0.2 +13.4900 0.2 +13.4950 0.2 +13.5000 0.2 +13.5050 0.2 +13.5100 0.2 +13.5150 0.2 +13.5200 0.2 +13.5250 0.2 +13.5300 0.2 +13.5350 0.2 +13.5400 0.2 +13.5450 0.2 +13.5500 0.2 +13.5550 0.2 +13.5600 0.2 +13.5650 0.2 +13.5700 0.2 +13.5750 0.2 +13.5800 0.2 +13.5850 0.2 +13.5900 0.2 +13.5950 0.2 +13.6000 0.2 +13.6050 0.2 +13.6100 0.2 +13.6150 0.2 +13.6200 0.2 +13.6250 0.2 +13.6300 0.2 +13.6350 0.2 +13.6400 0.2 +13.6450 0.2 +13.6500 0.2 +13.6550 0.2 +13.6600 0.2 +13.6650 0.2 +13.6700 0.2 +13.6750 0.2 +13.6800 0.2 +13.6850 0.2 +13.6900 0.2 +13.6950 0.2 +13.7000 0.2 +13.7050 0.2 +13.7100 0.2 +13.7150 0.2 +13.7200 0.2 +13.7250 0.2 +13.7300 0.2 +13.7350 0.2 +13.7400 0.2 +13.7450 0.2 +13.7500 0.2 +13.7550 0.2 +13.7600 0.2 +13.7650 0.2 +13.7700 0.2 +13.7750 0.2 +13.7800 0.2 +13.7850 0.2 +13.7900 0.2 +13.7950 0.2 +13.8000 0.2 +13.8050 0.2 +13.8100 0.2 +13.8150 0.2 +13.8200 0.2 +13.8250 0.2 +13.8300 0.2 +13.8350 0.2 +13.8400 0.2 +13.8450 0.2 +13.8500 0.2 +13.8550 0.2 +13.8600 0.2 +13.8650 0.2 +13.8700 0.2 +13.8750 0.2 +13.8800 0.2 +13.8850 0.2 +13.8900 0.2 +13.8950 0.2 +13.9000 0.2 +13.9050 0.2 +13.9100 0.2 +13.9150 0.2 +13.9200 0.2 +13.9250 0.2 +13.9300 0.2 +13.9350 0.2 +13.9400 0.2 +13.9450 0.2 +13.9500 0.2 +13.9550 0.2 +13.9600 0.2 +13.9650 0.2 +13.9700 0.2 +13.9750 0.2 +13.9800 0.2 +13.9850 0.2 +13.9900 0.2 +13.9950 0.2 +14.0000 0.2 +14.0050 0.2 +14.0100 0.2 +14.0150 0.2 +14.0200 0.2 +14.0250 0.2 +14.0300 0.2 +14.0350 0.2 +14.0400 0.2 +14.0450 0.2 +14.0500 0.2 +14.0550 0.2 +14.0600 0.2 +14.0650 0.2 +14.0700 0.2 +14.0750 0.2 +14.0800 0.2 +14.0850 0.2 +14.0900 0.2 +14.0950 0.2 +14.1000 0.2 +14.1050 0.2 +14.1100 0.2 +14.1150 0.2 +14.1200 0.2 +14.1250 0.2 +14.1300 0.2 +14.1350 0.2 +14.1400 0.2 +14.1450 0.2 +14.1500 0.2 +14.1550 0.2 +14.1600 0.2 +14.1650 0.2 +14.1700 0.2 +14.1750 0.2 +14.1800 0.2 +14.1850 0.2 +14.1900 0.2 +14.1950 0.2 +14.2000 0.2 +14.2050 0.2 +14.2100 0.2 +14.2150 0.2 +14.2200 0.2 +14.2250 0.2 +14.2300 0.2 +14.2350 0.2 +14.2400 0.2 +14.2450 0.2 +14.2500 0.2 +14.2550 0.2 +14.2600 0.2 +14.2650 0.2 +14.2700 0.2 +14.2750 0.2 +14.2800 0.2 +14.2850 0.2 +14.2900 0.2 +14.2950 0.2 +14.3000 0.2 +14.3050 0.2 +14.3100 0.2 +14.3150 0.2 +14.3200 0.2 +14.3250 0.2 +14.3300 0.2 +14.3350 0.2 +14.3400 0.2 +14.3450 0.2 +14.3500 0.2 +14.3550 0.2 +14.3600 0.2 +14.3650 0.2 +14.3700 0.2 +14.3750 0.2 +14.3800 0.2 +14.3850 0.2 +14.3900 0.2 +14.3950 0.2 +14.4000 0.2 +14.4050 0.2 +14.4100 0.2 +14.4150 0.2 +14.4200 0.2 +14.4250 0.2 +14.4300 0.2 +14.4350 0.2 +14.4400 0.2 +14.4450 0.2 +14.4500 0.2 +14.4550 0.2 +14.4600 0.2 +14.4650 0.2 +14.4700 0.2 +14.4750 0.2 +14.4800 0.2 +14.4850 0.2 +14.4900 0.2 +14.4950 0.2 +14.5000 0.2 +14.5050 0.2 +14.5100 0.2 +14.5150 0.2 +14.5200 0.2 +14.5250 0.2 +14.5300 0.2 +14.5350 0.2 +14.5400 0.2 +14.5450 0.2 +14.5500 0.2 +14.5550 0.2 +14.5600 0.2 +14.5650 0.2 +14.5700 0.2 +14.5750 0.2 +14.5800 0.2 +14.5850 0.2 +14.5900 0.2 +14.5950 0.2 +14.6000 0.2 +14.6050 0.2 +14.6100 0.2 +14.6150 0.2 +14.6200 0.2 +14.6250 0.2 +14.6300 0.2 +14.6350 0.2 +14.6400 0.2 +14.6450 0.2 +14.6500 0.2 +14.6550 0.2 +14.6600 0.2 +14.6650 0.2 +14.6700 0.2 +14.6750 0.2 +14.6800 0.2 +14.6850 0.2 +14.6900 0.2 +14.6950 0.2 +14.7000 0.2 +14.7050 0.2 +14.7100 0.2 +14.7150 0.2 +14.7200 0.2 +14.7250 0.2 +14.7300 0.2 +14.7350 0.2 +14.7400 0.2 +14.7450 0.2 +14.7500 0.2 +14.7550 0.2 +14.7600 0.2 +14.7650 0.2 +14.7700 0.2 +14.7750 0.2 +14.7800 0.2 +14.7850 0.2 +14.7900 0.2 +14.7950 0.2 +14.8000 0.2 +14.8050 0.2 +14.8100 0.2 +14.8150 0.2 +14.8200 0.2 +14.8250 0.2 +14.8300 0.2 +14.8350 0.2 +14.8400 0.2 +14.8450 0.2 +14.8500 0.2 +14.8550 0.2 +14.8600 0.2 +14.8650 0.2 +14.8700 0.2 +14.8750 0.2 +14.8800 0.2 +14.8850 0.2 +14.8900 0.2 +14.8950 0.2 +14.9000 0.2 +14.9050 0.2 +14.9100 0.2 +14.9150 0.2 +14.9200 0.2 +14.9250 0.2 +14.9300 0.2 +14.9350 0.2 +14.9400 0.2 +14.9450 0.2 +14.9500 0.2 +14.9550 0.2 +14.9600 0.2 +14.9650 0.2 +14.9700 0.2 +14.9750 0.2 +14.9800 0.2 +14.9850 0.2 +14.9900 0.2 +14.9950 0.2 +15.0000 0.2 +15.0050 0.2 +15.0100 0.2 +15.0150 0.2 +15.0200 0.2 +15.0250 0.2 +15.0300 0.2 +15.0350 0.2 +15.0400 0.2 +15.0450 0.2 +15.0500 0.2 +15.0550 0.2 +15.0600 0.2 +15.0650 0.2 +15.0700 0.2 +15.0750 0.2 +15.0800 0.2 +15.0850 0.2 +15.0900 0.2 +15.0950 0.2 +15.1000 0.2 +15.1050 0.2 +15.1100 0.2 +15.1150 0.2 +15.1200 0.2 +15.1250 0.2 +15.1300 0.2 +15.1350 0.2 +15.1400 0.2 +15.1450 0.2 +15.1500 0.2 +15.1550 0.2 +15.1600 0.2 +15.1650 0.2 +15.1700 0.2 +15.1750 0.2 +15.1800 0.2 +15.1850 0.2 +15.1900 0.2 +15.1950 0.2 +15.2000 0.2 +15.2050 0.2 +15.2100 0.2 +15.2150 0.2 +15.2200 0.2 +15.2250 0.2 +15.2300 0.2 +15.2350 0.2 +15.2400 0.2 +15.2450 0.2 +15.2500 0.2 +15.2550 0.2 +15.2600 0.2 +15.2650 0.2 +15.2700 0.2 +15.2750 0.2 +15.2800 0.2 +15.2850 0.2 +15.2900 0.2 +15.2950 0.2 +15.3000 0.2 +15.3050 0.2 +15.3100 0.2 +15.3150 0.2 +15.3200 0.2 +15.3250 0.2 +15.3300 0.2 +15.3350 0.2 +15.3400 0.2 +15.3450 0.2 +15.3500 0.2 +15.3550 0.2 +15.3600 0.2 +15.3650 0.2 +15.3700 0.2 +15.3750 0.2 +15.3800 0.2 +15.3850 0.2 +15.3900 0.2 +15.3950 0.2 +15.4000 0.2 +15.4050 0.2 +15.4100 0.2 +15.4150 0.2 +15.4200 0.2 +15.4250 0.2 +15.4300 0.2 +15.4350 0.2 +15.4400 0.2 +15.4450 0.2 +15.4500 0.2 +15.4550 0.2 +15.4600 0.2 +15.4650 0.2 +15.4700 0.2 +15.4750 0.2 +15.4800 0.2 +15.4850 0.2 +15.4900 0.2 +15.4950 0.2 +15.5000 0.2 +15.5050 0.2 +15.5100 0.2 +15.5150 0.2 +15.5200 0.2 +15.5250 0.2 +15.5300 0.2 +15.5350 0.2 +15.5400 0.2 +15.5450 0.2 +15.5500 0.2 +15.5550 0.2 +15.5600 0.2 +15.5650 0.2 +15.5700 0.2 +15.5750 0.2 +15.5800 0.2 +15.5850 0.2 +15.5900 0.2 +15.5950 0.2 +15.6000 0.2 +15.6050 0.2 +15.6100 0.2 +15.6150 0.2 +15.6200 0.2 +15.6250 0.2 +15.6300 0.2 +15.6350 0.2 +15.6400 0.2 +15.6450 0.2 +15.6500 0.2 +15.6550 0.2 +15.6600 0.2 +15.6650 0.2 +15.6700 0.2 +15.6750 0.2 +15.6800 0.2 +15.6850 0.2 +15.6900 0.2 +15.6950 0.2 +15.7000 0.2 +15.7050 0.2 +15.7100 0.2 +15.7150 0.2 +15.7200 0.2 +15.7250 0.2 +15.7300 0.2 +15.7350 0.2 +15.7400 0.2 +15.7450 0.2 +15.7500 0.2 +15.7550 0.2 +15.7600 0.2 +15.7650 0.2 +15.7700 0.2 +15.7750 0.4 +15.7800 0.6 +15.7850 0.8 +15.7900 0.8 +15.7950 0.7 +15.8000 0.6 +15.8050 0.6 +15.8100 0.5 +15.8150 0.6 +15.8200 0.6 +15.8250 0.5 +15.8300 0.5 +15.8350 0.5 +15.8400 0.5 +15.8450 0.6 +15.8500 0.8 +15.8550 1.0 +15.8600 1.3 +15.8650 1.4 +15.8700 1.4 +15.8750 1.3 +15.8800 1.4 +15.8850 1.4 +15.8900 1.3 +15.8950 1.2 +15.9000 1.3 +15.9050 1.3 +15.9100 1.2 +15.9150 1.1 +15.9200 1.3 +15.9250 1.4 +15.9300 1.4 +15.9350 1.5 +15.9400 1.7 +15.9450 1.8 +15.9500 1.7 +15.9550 1.8 +15.9600 1.8 +15.9650 1.7 +15.9700 1.8 +15.9750 1.7 +15.9800 1.6 +15.9850 1.7 +15.9900 1.8 +15.9950 1.6 +16.0000 1.6 +16.0050 1.8 +16.0100 1.8 +16.0150 1.8 +16.0200 1.9 +16.0250 2.0 +16.0300 2.0 +16.0350 2.0 +16.0400 1.9 +16.0450 2.0 +16.0500 2.0 +16.0550 1.8 +16.0600 1.8 +16.0650 2.0 +16.0700 1.8 +16.0750 1.7 +16.0800 2.0 +16.0850 1.9 +16.0900 1.9 +16.0950 2.1 +16.1000 2.0 +16.1050 2.0 +16.1100 2.1 +16.1150 2.1 +16.1200 2.0 +16.1250 2.1 +16.1300 2.0 +16.1350 1.9 +16.1400 2.0 +16.1450 1.9 +16.1500 1.9 +16.1550 2.1 +16.1600 2.0 +16.1650 2.0 +16.1700 2.2 +16.1750 2.1 +16.1800 2.0 +16.1850 2.3 +16.1900 2.1 +16.1950 2.0 +16.2000 2.1 +16.2050 2.1 +16.2100 2.0 +16.2150 2.1 +16.2200 2.0 +16.2250 2.0 +16.2300 2.1 +16.2350 2.0 +16.2400 2.0 +16.2450 2.2 +16.2500 2.1 +16.2550 2.1 +16.2600 2.2 +16.2650 2.1 +16.2700 2.1 +16.2750 2.1 +16.2800 2.1 +16.2850 2.0 +16.2900 2.0 +16.2950 2.0 +16.3000 2.0 +16.3050 2.0 +16.3100 2.0 +16.3150 2.1 +16.3200 2.1 +16.3250 2.1 +16.3300 2.1 +16.3350 2.1 +16.3400 2.1 +16.3450 2.2 +16.3500 2.1 +16.3550 2.1 +16.3600 2.1 +16.3650 2.0 +16.3700 2.1 +16.3750 2.1 +16.3800 2.0 +16.3850 2.1 +16.3900 2.1 +16.3950 2.0 +16.4000 2.1 +16.4050 2.1 +16.4100 2.1 +16.4150 2.1 +16.4200 2.1 +16.4250 2.1 +16.4300 2.1 +16.4350 2.1 +16.4400 2.0 +16.4450 2.1 +16.4500 2.1 +16.4550 2.0 +16.4600 2.1 +16.4650 2.1 +16.4700 2.1 +16.4750 2.1 +16.4800 2.1 +16.4850 2.1 +16.4900 2.2 +16.4950 2.1 +16.5000 2.1 +16.5050 2.1 +16.5100 2.1 +16.5150 2.1 +16.5200 2.1 +16.5250 2.0 +16.5300 2.1 +16.5350 2.1 +16.5400 2.0 +16.5450 2.1 +16.5500 2.1 +16.5550 2.1 +16.5600 2.1 +16.5650 2.1 +16.5700 2.1 +16.5750 2.2 +16.5800 2.1 +16.5850 2.1 +16.5900 2.1 +16.5950 2.1 +16.6000 2.1 +16.6050 2.1 +16.6100 2.0 +16.6150 2.1 +16.6200 2.1 +16.6250 2.1 +16.6300 2.1 +16.6350 2.1 +16.6400 2.1 +16.6450 2.1 +16.6500 2.1 +16.6550 2.1 +16.6600 2.1 +16.6650 2.1 +16.6700 2.0 +16.6750 2.1 +16.6800 2.1 +16.6850 2.0 +16.6900 2.1 +16.6950 2.1 +16.7000 2.1 +16.7050 2.1 +16.7100 2.1 +16.7150 2.1 +16.7200 2.1 +16.7250 2.1 +16.7300 2.1 +16.7350 2.1 +16.7400 2.1 +16.7450 2.1 +16.7500 2.1 +16.7550 2.0 +16.7600 2.1 +16.7650 2.1 +16.7700 2.0 +16.7750 2.1 +16.7800 2.1 +16.7850 2.0 +16.7900 2.1 +16.7950 2.1 +16.8000 2.1 +16.8050 2.1 +16.8100 2.1 +16.8150 2.1 +16.8200 2.1 +16.8250 2.1 +16.8300 2.0 +16.8350 2.1 +16.8400 2.1 +16.8450 2.1 +16.8500 2.1 +16.8550 2.1 +16.8600 2.1 +16.8650 2.1 +16.8700 2.1 +16.8750 2.1 +16.8800 2.1 +16.8850 2.1 +16.8900 2.1 +16.8950 2.1 +16.9000 2.0 +16.9050 2.1 +16.9100 2.1 +16.9150 2.0 +16.9200 2.1 +16.9250 2.1 +16.9300 2.0 +16.9350 2.1 +16.9400 2.1 +16.9450 2.1 +16.9500 2.1 +16.9550 2.1 +16.9600 2.1 +16.9650 2.1 +16.9700 2.1 +16.9750 2.1 +16.9800 2.1 +16.9850 2.0 +16.9900 2.1 +16.9950 2.1 +17.0000 2.0 +17.0050 2.1 +17.0100 2.1 +17.0150 2.0 +17.0200 2.1 +17.0250 2.1 +17.0300 2.1 +17.0350 2.1 +17.0400 2.1 +17.0450 2.0 +17.0500 2.1 +17.0550 2.1 +17.0600 2.1 +17.0650 2.1 +17.0700 2.1 +17.0750 2.1 +17.0800 2.1 +17.0850 2.1 +17.0900 2.1 +17.0950 2.1 +17.1000 2.1 +17.1050 2.1 +17.1100 2.1 +17.1150 2.0 +17.1200 2.1 +17.1250 2.1 +17.1300 2.0 +17.1350 2.1 +17.1400 2.1 +17.1450 2.0 +17.1500 2.1 +17.1550 2.1 +17.1600 2.1 +17.1650 2.1 +17.1700 2.1 +17.1750 2.1 +17.1800 2.1 +17.1850 2.1 +17.1900 2.1 +17.1950 2.1 +17.2000 2.0 +17.2050 2.1 +17.2100 2.1 +17.2150 2.1 +17.2200 2.1 +17.2250 2.1 +17.2300 2.1 +17.2350 2.1 +17.2400 2.1 +17.2450 2.1 +17.2500 2.1 +17.2550 2.1 +17.2600 2.0 +17.2650 2.1 +17.2700 2.1 +17.2750 2.0 +17.2800 2.1 +17.2850 2.1 +17.2900 2.0 +17.2950 2.1 +17.3000 2.1 +17.3050 2.1 +17.3100 2.1 +17.3150 2.1 +17.3200 2.1 +17.3250 2.1 +17.3300 2.1 +17.3350 2.1 +17.3400 2.1 +17.3450 2.0 +17.3500 2.1 +17.3550 2.1 +17.3600 2.0 +17.3650 2.1 +17.3700 2.1 +17.3750 2.0 +17.3800 2.1 +17.3850 2.1 +17.3900 2.0 +17.3950 2.1 +17.4000 2.1 +17.4050 2.0 +17.4100 2.1 +17.4150 2.1 +17.4200 2.1 +17.4250 2.1 +17.4300 2.1 +17.4350 2.1 +17.4400 2.1 +17.4450 2.0 +17.4500 2.1 +17.4550 2.1 +17.4600 2.0 +17.4650 2.1 +17.4700 2.1 +17.4750 2.0 +17.4800 2.1 +17.4850 2.1 +17.4900 2.0 +17.4950 2.1 +17.5000 2.1 +17.5050 2.0 +17.5100 2.1 +17.5150 2.1 +17.5200 2.0 +17.5250 2.1 +17.5300 2.1 +17.5350 2.1 +17.5400 2.1 +17.5450 2.1 +17.5500 2.1 +17.5550 2.1 +17.5600 2.0 +17.5650 2.1 +17.5700 2.1 +17.5750 2.0 +17.5800 2.1 +17.5850 2.1 +17.5900 2.0 +17.5950 2.1 +17.6000 2.1 +17.6050 2.0 +17.6100 2.1 +17.6150 2.1 +17.6200 2.0 +17.6250 2.1 +17.6300 2.1 +17.6350 2.0 +17.6400 2.1 +17.6450 2.1 +17.6500 2.0 +17.6550 2.1 +17.6600 2.1 +17.6650 2.1 +17.6700 2.1 +17.6750 2.1 +17.6800 2.1 +17.6850 2.1 +17.6900 2.0 +17.6950 2.1 +17.7000 2.1 +17.7050 2.0 +17.7100 2.1 +17.7150 2.1 +17.7200 2.0 +17.7250 2.1 +17.7300 2.1 +17.7350 2.0 +17.7400 2.1 +17.7450 2.1 +17.7500 2.1 +17.7550 2.1 +17.7600 2.0 +17.7650 2.1 +17.7700 2.1 +17.7750 2.1 +17.7800 2.1 +17.7850 2.1 +17.7900 2.1 +17.7950 2.1 +17.8000 2.1 +17.8050 2.0 +17.8100 2.1 +17.8150 2.1 +17.8200 2.0 +17.8250 2.1 +17.8300 2.1 +17.8350 2.0 +17.8400 2.1 +17.8450 2.1 +17.8500 2.0 +17.8550 2.1 +17.8600 2.1 +17.8650 2.1 +17.8700 2.1 +17.8750 2.1 +17.8800 2.1 +17.8850 2.1 +17.8900 2.1 +17.8950 2.1 +17.9000 2.1 +17.9050 2.1 +17.9100 2.1 +17.9150 2.1 +17.9200 2.1 +17.9250 2.1 +17.9300 2.1 +17.9350 2.1 +17.9400 2.1 +17.9450 2.1 +17.9500 2.0 +17.9550 2.1 +17.9600 2.1 +17.9650 2.0 +17.9700 2.1 +17.9750 2.1 +17.9800 2.0 +17.9850 2.1 +17.9900 2.1 +17.9950 2.1 +18.0000 2.1 +18.0050 2.1 +18.0100 2.1 +18.0150 2.1 +18.0200 2.0 +18.0250 2.1 +18.0300 2.1 +18.0350 2.0 +18.0400 2.1 +18.0450 2.1 +18.0500 2.1 +18.0550 2.1 +18.0600 2.1 +18.0650 2.0 +18.0700 2.1 +18.0750 2.1 +18.0800 2.0 +18.0850 2.1 +18.0900 2.1 +18.0950 2.1 +18.1000 2.1 +18.1050 2.1 +18.1100 2.1 +18.1150 2.1 +18.1200 2.1 +18.1250 2.1 +18.1300 2.1 +18.1350 2.1 +18.1400 2.1 +18.1450 2.1 +18.1500 2.0 +18.1550 2.1 +18.1600 2.1 +18.1650 2.0 +18.1700 2.1 +18.1750 2.1 +18.1800 2.0 +18.1850 2.1 +18.1900 2.1 +18.1950 2.1 +18.2000 2.1 +18.2050 2.1 +18.2100 2.1 +18.2150 2.1 +18.2200 2.1 +18.2250 2.1 +18.2300 2.1 +18.2350 2.1 +18.2400 2.1 +18.2450 2.1 +18.2500 2.1 +18.2550 2.1 +18.2600 2.1 +18.2650 2.0 +18.2700 2.1 +18.2750 2.1 +18.2800 2.1 +18.2850 2.1 +18.2900 2.1 +18.2950 2.1 +18.3000 2.1 +18.3050 2.1 +18.3100 2.0 +18.3150 2.1 +18.3200 2.1 +18.3250 2.0 +18.3300 2.1 +18.3350 2.1 +18.3400 2.1 +18.3450 2.1 +18.3500 2.1 +18.3550 2.1 +18.3600 2.1 +18.3650 2.1 +18.3700 2.1 +18.3750 2.1 +18.3800 2.1 +18.3850 2.1 +18.3900 2.1 +18.3950 2.0 +18.4000 2.1 +18.4050 2.1 +18.4100 2.0 +18.4150 2.1 +18.4200 2.1 +18.4250 2.1 +18.4300 2.1 +18.4350 2.1 +18.4400 2.1 +18.4450 2.1 +18.4500 2.1 +18.4550 2.1 +18.4600 2.1 +18.4650 2.1 +18.4700 2.1 +18.4750 2.1 +18.4800 2.0 +18.4850 2.1 +18.4900 2.1 +18.4950 2.0 +18.5000 2.1 +18.5050 2.1 +18.5100 2.0 +18.5150 2.1 +18.5200 2.1 +18.5250 2.1 +18.5300 2.1 +18.5350 2.1 +18.5400 2.0 +18.5450 2.1 +18.5500 2.1 +18.5550 2.0 +18.5600 2.1 +18.5650 2.1 +18.5700 2.1 +18.5750 2.1 +18.5800 2.1 +18.5850 2.1 +18.5900 2.1 +18.5950 2.0 +18.6000 2.1 +18.6050 2.1 +18.6100 2.1 +18.6150 2.1 +18.6200 2.1 +18.6250 2.1 +18.6300 2.1 +18.6350 2.1 +18.6400 2.0 +18.6450 2.1 +18.6500 2.1 +18.6550 2.0 +18.6600 2.1 +18.6650 2.1 +18.6700 2.0 +18.6750 2.1 +18.6800 2.1 +18.6850 2.0 +18.6900 2.1 +18.6950 2.1 +18.7000 2.1 +18.7050 2.1 +18.7100 2.0 +18.7150 2.1 +18.7200 2.1 +18.7250 2.1 +18.7300 2.1 +18.7350 2.1 +18.7400 2.1 +18.7450 2.1 +18.7500 2.1 +18.7550 2.0 +18.7600 2.1 +18.7650 2.1 +18.7700 2.0 +18.7750 2.1 +18.7800 2.1 +18.7850 2.0 +18.7900 2.1 +18.7950 2.1 +18.8000 2.1 +18.8050 2.1 +18.8100 2.1 +18.8150 2.1 +18.8200 2.1 +18.8250 2.1 +18.8300 2.1 +18.8350 2.1 +18.8400 2.1 +18.8450 2.1 +18.8500 2.1 +18.8550 2.0 +18.8600 2.1 +18.8650 2.1 +18.8700 2.0 +18.8750 2.1 +18.8800 2.1 +18.8850 2.0 +18.8900 2.1 +18.8950 2.1 +18.9000 2.0 +18.9050 2.1 +18.9100 2.1 +18.9150 2.1 +18.9200 2.1 +18.9250 2.1 +18.9300 2.1 +18.9350 2.1 +18.9400 2.1 +18.9450 2.1 +18.9500 2.1 +18.9550 2.0 +18.9600 2.1 +18.9650 2.1 +18.9700 2.0 +18.9750 2.1 +18.9800 2.1 +18.9850 2.0 +18.9900 2.1 +18.9950 2.1 +19.0000 2.1 +19.0050 2.1 +19.0100 2.1 +19.0150 2.1 +19.0200 2.1 +19.0250 2.1 +19.0300 2.1 +19.0350 2.1 +19.0400 2.1 +19.0450 2.1 +19.0500 2.1 +19.0550 2.1 +19.0600 2.1 +19.0650 2.1 +19.0700 2.1 +19.0750 2.1 +19.0800 2.1 +19.0850 2.0 +19.0900 2.1 +19.0950 2.1 +19.1000 2.1 +19.1050 2.1 +19.1100 2.1 +19.1150 2.0 +19.1200 2.1 +19.1250 2.1 +19.1300 2.0 +19.1350 2.1 +19.1400 2.1 +19.1450 2.0 +19.1500 2.1 +19.1550 2.1 +19.1600 2.1 +19.1650 2.1 +19.1700 2.1 +19.1750 2.1 +19.1800 2.1 +19.1850 2.1 +19.1900 2.1 +19.1950 2.1 +19.2000 2.0 +19.2050 2.1 +19.2100 2.1 +19.2150 2.0 +19.2200 2.1 +19.2250 2.1 +19.2300 2.0 +19.2350 2.1 +19.2400 2.1 +19.2450 2.1 +19.2500 2.1 +19.2550 2.1 +19.2600 2.1 +19.2650 2.1 +19.2700 2.1 +19.2750 2.1 +19.2800 2.1 +19.2850 2.1 +19.2900 2.1 +19.2950 2.1 +19.3000 2.0 +19.3050 2.1 +19.3100 2.1 +19.3150 2.0 +19.3200 2.1 +19.3250 2.1 +19.3300 2.0 +19.3350 2.1 +19.3400 2.1 +19.3450 2.0 +19.3500 2.1 +19.3550 2.1 +19.3600 2.0 +19.3650 2.1 +19.3700 2.1 +19.3750 2.0 +19.3800 2.1 +19.3850 2.1 +19.3900 2.1 +19.3950 2.1 +19.4000 2.1 +19.4050 2.1 +19.4100 2.1 +19.4150 2.1 +19.4200 2.1 +19.4250 2.1 +19.4300 2.1 +19.4350 2.1 +19.4400 2.1 +19.4450 2.0 +19.4500 2.1 +19.4550 2.1 +19.4600 2.0 +19.4650 2.1 +19.4700 2.1 +19.4750 2.0 +19.4800 2.1 +19.4850 2.1 +19.4900 2.0 +19.4950 2.1 +19.5000 2.1 +19.5050 2.1 +19.5100 2.1 +19.5150 2.1 +19.5200 2.1 +19.5250 2.1 +19.5300 2.1 +19.5350 2.1 +19.5400 2.1 +19.5450 2.1 +19.5500 2.1 +19.5550 2.1 +19.5600 2.0 +19.5650 2.1 +19.5700 2.1 +19.5750 2.0 +19.5800 2.1 +19.5850 2.1 +19.5900 2.1 +19.5950 2.1 +19.6000 2.1 +19.6050 2.0 +19.6100 2.1 +19.6150 2.1 +19.6200 2.1 +19.6250 2.1 +19.6300 2.1 +19.6350 2.1 +19.6400 2.1 +19.6450 2.1 +19.6500 2.1 +19.6550 2.1 +19.6600 2.1 +19.6650 2.1 +19.6700 2.1 +19.6750 2.1 +19.6800 2.1 +19.6850 2.1 +19.6900 2.1 +19.6950 2.1 +19.7000 2.1 +19.7050 2.1 +19.7100 2.1 +19.7150 2.1 +19.7200 2.1 +19.7250 2.1 +19.7300 2.1 +19.7350 2.1 +19.7400 2.1 +19.7450 2.1 +19.7500 2.1 +19.7550 2.1 +19.7600 2.1 +19.7650 2.1 +19.7700 2.1 +19.7750 2.1 +19.7800 2.1 +19.7850 2.1 +19.7900 2.0 +19.7950 2.1 +19.8000 2.1 +19.8050 2.1 +19.8100 2.1 +19.8150 2.1 +19.8200 2.1 +19.8250 2.1 +19.8300 2.1 +19.8350 2.0 +19.8400 2.1 +19.8450 2.1 +19.8500 2.0 +19.8550 2.1 +19.8600 2.1 +19.8650 2.1 +19.8700 2.1 +19.8750 2.1 +19.8800 2.1 +19.8850 2.1 +19.8900 2.1 +19.8950 2.1 +19.9000 2.1 +19.9050 2.0 +19.9100 2.1 +19.9150 2.1 +19.9200 2.0 +19.9250 2.1 +19.9300 2.1 +19.9350 2.1 +19.9400 2.1 +19.9450 2.1 +19.9500 2.1 +19.9550 2.1 +19.9600 2.1 +19.9650 2.1 +19.9700 2.1 +19.9750 2.1 +19.9800 2.1 +19.9850 2.2 +19.9900 2.1 +19.9950 2.1 +20.0000 2.1 +20.0050 2.1 +20.0100 2.1 +20.0150 2.1 +20.0200 2.0 +20.0250 2.1 +20.0300 2.1 +20.0350 2.0 +20.0400 2.1 +20.0450 2.1 +20.0500 2.1 +20.0550 2.1 +20.0600 2.1 +20.0650 2.1 +20.0700 2.1 +20.0750 2.1 +20.0800 2.1 +20.0850 2.1 +20.0900 2.1 +20.0950 2.1 +20.1000 2.1 +20.1050 2.1 +20.1100 2.1 +20.1150 2.1 +20.1200 2.1 +20.1250 2.1 +20.1300 2.2 +20.1350 2.1 +20.1400 2.1 +20.1450 2.1 +20.1500 2.0 +20.1550 2.1 +20.1600 2.1 +20.1650 2.0 +20.1700 2.1 +20.1750 2.1 +20.1800 2.0 +20.1850 2.1 +20.1900 2.1 +20.1950 2.1 +20.2000 2.1 +20.2050 2.1 +20.2100 2.1 +20.2150 2.1 +20.2200 2.1 +20.2250 2.1 +20.2300 2.1 +20.2350 2.1 +20.2400 2.1 +20.2450 2.1 +20.2500 2.1 +20.2550 2.1 +20.2600 2.1 +20.2650 2.1 +20.2700 2.1 +20.2750 2.1 +20.2800 2.1 +20.2850 2.1 +20.2900 2.1 +20.2950 2.1 +20.3000 2.1 +20.3050 2.1 +20.3100 2.1 +20.3150 2.1 +20.3200 2.1 +20.3250 2.1 +20.3300 2.1 +20.3350 2.1 +20.3400 2.1 +20.3450 2.1 +20.3500 2.1 +20.3550 2.1 +20.3600 2.1 +20.3650 2.1 +20.3700 2.1 +20.3750 2.1 +20.3800 2.1 +20.3850 2.1 +20.3900 2.1 +20.3950 2.1 +20.4000 2.1 +20.4050 2.1 +20.4100 2.1 +20.4150 2.1 +20.4200 2.1 +20.4250 2.1 +20.4300 2.1 +20.4350 2.1 +20.4400 2.1 +20.4450 2.1 +20.4500 2.1 +20.4550 2.1 +20.4600 2.1 +20.4650 2.1 +20.4700 2.1 +20.4750 2.1 +20.4800 2.1 +20.4850 2.1 +20.4900 2.1 +20.4950 2.1 +20.5000 2.1 +20.5050 2.2 +20.5100 2.1 +20.5150 2.1 +20.5200 2.1 +20.5250 2.1 +20.5300 2.1 +20.5350 2.1 +20.5400 2.1 +20.5450 2.1 +20.5500 2.1 +20.5550 2.1 +20.5600 2.1 +20.5650 2.1 +20.5700 2.1 +20.5750 2.1 +20.5800 2.1 +20.5850 2.1 +20.5900 2.1 +20.5950 2.1 +20.6000 2.1 +20.6050 2.1 +20.6100 2.1 +20.6150 2.1 +20.6200 2.1 +20.6250 2.1 +20.6300 2.1 +20.6350 2.1 +20.6400 2.1 +20.6450 2.1 +20.6500 2.1 +20.6550 2.1 +20.6600 2.1 +20.6650 2.1 +20.6700 2.1 +20.6750 2.1 +20.6800 2.1 +20.6850 2.1 +20.6900 2.1 +20.6950 2.1 +20.7000 2.1 +20.7050 2.1 +20.7100 2.1 +20.7150 2.1 +20.7200 2.1 +20.7250 2.1 +20.7300 2.1 +20.7350 2.1 +20.7400 2.1 +20.7450 2.1 +20.7500 2.1 +20.7550 2.1 +20.7600 2.1 +20.7650 2.1 +20.7700 2.1 +20.7750 2.1 +20.7800 2.1 +20.7850 2.0 +20.7900 2.1 +20.7950 2.1 +20.8000 2.0 +20.8050 2.1 +20.8100 2.1 +20.8150 2.1 +20.8200 2.2 +20.8250 2.1 +20.8300 2.1 +20.8350 2.1 +20.8400 2.1 +20.8450 2.1 +20.8500 2.1 +20.8550 2.1 +20.8600 2.1 +20.8650 2.1 +20.8700 2.1 +20.8750 2.1 +20.8800 2.1 +20.8850 2.1 +20.8900 2.1 +20.8950 2.1 +20.9000 2.1 +20.9050 2.1 +20.9100 2.1 +20.9150 2.1 +20.9200 2.1 +20.9250 2.0 +20.9300 1.9 +20.9350 1.9 +20.9400 1.7 +20.9450 1.6 +20.9500 1.6 +20.9550 1.5 +20.9600 1.4 +20.9650 1.4 +20.9700 1.5 +20.9750 1.3 +20.9800 1.4 +20.9850 1.5 +20.9900 1.4 +20.9950 1.4 +21.0000 1.4 +21.0050 1.3 +21.0100 1.2 +21.0150 1.2 +21.0200 1.2 +21.0250 1.1 +21.0300 1.0 +21.0350 1.0 +21.0400 1.1 +21.0450 1.0 +21.0500 0.9 +21.0550 1.0 +21.0600 1.1 +21.0650 1.0 +21.0700 0.9 +21.0750 1.0 +21.0800 1.1 +21.0850 0.9 +21.0900 0.9 +21.0950 0.9 +21.1000 0.9 +21.1050 0.9 +21.1100 0.7 +21.1150 0.7 +21.1200 0.8 +21.1250 0.8 +21.1300 0.7 +21.1350 0.6 +21.1400 0.8 +21.1450 0.9 +21.1500 0.8 +21.1550 0.7 +21.1600 0.7 +21.1650 0.8 +21.1700 0.8 +21.1750 0.6 +21.1800 0.6 +21.1850 0.7 +21.1900 0.6 +21.1950 0.6 +21.2000 0.6 +21.2050 0.6 +21.2100 0.5 +21.2150 0.5 +21.2200 0.7 +21.2250 0.6 +21.2300 0.6 +21.2350 0.5 +21.2400 0.6 +21.2450 0.6 +21.2500 0.5 +21.2550 0.5 +21.2600 0.5 +21.2650 0.5 +21.2700 0.5 +21.2750 0.5 +21.2800 0.4 +21.2850 0.4 +21.2900 0.5 +21.2950 0.4 +21.3000 0.5 +21.3050 0.5 +21.3100 0.5 +21.3150 0.4 +21.3200 0.5 +21.3250 0.5 +21.3300 0.5 +21.3350 0.4 +21.3400 0.4 +21.3450 0.4 +21.3500 0.4 +21.3550 0.4 +21.3600 0.4 +21.3650 0.4 +21.3700 0.4 +21.3750 0.3 +21.3800 0.4 +21.3850 0.4 +21.3900 0.4 +21.3950 0.4 +21.4000 0.4 +21.4050 0.4 +21.4100 0.4 +21.4150 0.3 +21.4200 0.3 +21.4250 0.4 +21.4300 0.3 +21.4350 0.3 +21.4400 0.3 +21.4450 0.3 +21.4500 0.3 +21.4550 0.3 +21.4600 0.3 +21.4650 0.4 +21.4700 0.4 +21.4750 0.3 +21.4800 0.3 +21.4850 0.3 +21.4900 0.3 +21.4950 0.3 +21.5000 0.3 +21.5050 0.3 +21.5100 0.3 +21.5150 0.3 +21.5200 0.3 +21.5250 0.3 +21.5300 0.2 +21.5350 0.3 +21.5400 0.3 +21.5450 0.3 +21.5500 0.3 +21.5550 0.3 +21.5600 0.3 +21.5650 0.3 +21.5700 0.3 +21.5750 0.3 +21.5800 0.3 +21.5850 0.3 +21.5900 0.3 +21.5950 0.3 +21.6000 0.3 +21.6050 0.3 +21.6100 0.2 +21.6150 0.2 +21.6200 0.2 +21.6250 0.3 +21.6300 0.3 +21.6350 0.3 +21.6400 0.3 +21.6450 0.3 +21.6500 0.3 +21.6550 0.2 +21.6600 0.2 +21.6650 0.2 +21.6700 0.2 +21.6750 0.2 +21.6800 0.2 +21.6850 0.2 +21.6900 0.2 +21.6950 0.2 +21.7000 0.2 +21.7050 0.2 +21.7100 0.2 +21.7150 0.2 +21.7200 0.2 +21.7250 0.2 +21.7300 0.2 +21.7350 0.2 +21.7400 0.2 +21.7450 0.2 +21.7500 0.2 +21.7550 0.2 +21.7600 0.2 +21.7650 0.2 +21.7700 0.2 +21.7750 0.2 +21.7800 0.2 +21.7850 0.2 +21.7900 0.2 +21.7950 0.2 +21.8000 0.2 +21.8050 0.2 +21.8100 0.2 +21.8150 0.2 +21.8200 0.2 +21.8250 0.2 +21.8300 0.2 +21.8350 0.2 +21.8400 0.2 +21.8450 0.2 +21.8500 0.2 +21.8550 0.2 +21.8600 0.2 +21.8650 0.2 +21.8700 0.2 +21.8750 0.2 +21.8800 0.2 +21.8850 0.2 +21.8900 0.2 +21.8950 0.2 +21.9000 0.2 +21.9050 0.2 +21.9100 0.2 +21.9150 0.2 +21.9200 0.2 +21.9250 0.2 +21.9300 0.2 +21.9350 0.2 +21.9400 0.2 +21.9450 0.2 +21.9500 0.2 +21.9550 0.2 +21.9600 0.2 +21.9650 0.2 +21.9700 0.2 +21.9750 0.2 +21.9800 0.2 +21.9850 0.2 +21.9900 0.2 +21.9950 0.2 +22.0000 0.2 +22.0050 0.2 +22.0100 0.2 +22.0150 0.2 +22.0200 0.2 +22.0250 0.2 +22.0300 0.2 +22.0350 0.2 +22.0400 0.2 +22.0450 0.2 +22.0500 0.2 +22.0550 0.2 +22.0600 0.2 +22.0650 0.2 +22.0700 0.2 +22.0750 0.2 +22.0800 0.2 +22.0850 0.2 +22.0900 0.2 +22.0950 0.2 +22.1000 0.2 +22.1050 0.2 +22.1100 0.2 +22.1150 0.2 +22.1200 0.2 +22.1250 0.2 +22.1300 0.2 +22.1350 0.2 +22.1400 0.2 +22.1450 0.2 +22.1500 0.2 +22.1550 0.2 +22.1600 0.2 +22.1650 0.2 +22.1700 0.2 +22.1750 0.2 +22.1800 0.2 +22.1850 0.2 +22.1900 0.2 +22.1950 0.2 +22.2000 0.2 +22.2050 0.2 +22.2100 0.2 +22.2150 0.2 +22.2200 0.2 +22.2250 0.2 +22.2300 0.2 +22.2350 0.2 +22.2400 0.2 +22.2450 0.2 +22.2500 0.2 +22.2550 0.2 +22.2600 0.2 +22.2650 0.2 +22.2700 0.2 +22.2750 0.2 +22.2800 0.2 +22.2850 0.2 +22.2900 0.2 +22.2950 0.2 +22.3000 0.2 +22.3050 0.2 +22.3100 0.2 +22.3150 0.2 +22.3200 0.2 +22.3250 0.2 +22.3300 0.2 +22.3350 0.2 +22.3400 0.2 +22.3450 0.2 +22.3500 0.2 +22.3550 0.2 +22.3600 0.2 +22.3650 0.2 +22.3700 0.2 +22.3750 0.2 +22.3800 0.2 +22.3850 0.2 +22.3900 0.2 +22.3950 0.2 +22.4000 0.2 +22.4050 0.2 +22.4100 0.2 +22.4150 0.2 +22.4200 0.2 +22.4250 0.2 +22.4300 0.2 +22.4350 0.2 +22.4400 0.2 +22.4450 0.2 +22.4500 0.2 +22.4550 0.2 +22.4600 0.2 +22.4650 0.2 +22.4700 0.2 +22.4750 0.2 +22.4800 0.2 +22.4850 0.2 +22.4900 0.2 +22.4950 0.2 +22.5000 0.2 +22.5050 0.2 +22.5100 0.2 +22.5150 0.2 +22.5200 0.2 +22.5250 0.2 +22.5300 0.2 +22.5350 0.2 +22.5400 0.2 +22.5450 0.2 +22.5500 0.2 +22.5550 0.2 +22.5600 0.2 +22.5650 0.2 +22.5700 0.2 +22.5750 0.2 +22.5800 0.2 +22.5850 0.2 +22.5900 0.2 +22.5950 0.2 +22.6000 0.2 +22.6050 0.2 +22.6100 0.2 +22.6150 0.2 +22.6200 0.2 +22.6250 0.2 +22.6300 0.2 +22.6350 0.2 +22.6400 0.2 +22.6450 0.2 +22.6500 0.2 +22.6550 0.2 +22.6600 0.2 +22.6650 0.2 +22.6700 0.2 +22.6750 0.2 +22.6800 0.2 +22.6850 0.2 +22.6900 0.2 +22.6950 0.2 +22.7000 0.2 +22.7050 0.2 +22.7100 0.2 +22.7150 0.2 +22.7200 0.2 +22.7250 0.2 +22.7300 0.2 +22.7350 0.2 +22.7400 0.2 +22.7450 0.2 +22.7500 0.2 +22.7550 0.2 +22.7600 0.2 +22.7650 0.2 +22.7700 0.2 +22.7750 0.2 +22.7800 0.2 +22.7850 0.2 +22.7900 0.2 +22.7950 0.2 +22.8000 0.2 +22.8050 0.2 +22.8100 0.2 +22.8150 0.2 +22.8200 0.2 +22.8250 0.2 +22.8300 0.2 +22.8350 0.2 +22.8400 0.2 +22.8450 0.2 +22.8500 0.2 +22.8550 0.2 +22.8600 0.2 +22.8650 0.2 +22.8700 0.2 +22.8750 0.2 +22.8800 0.2 +22.8850 0.2 +22.8900 0.2 +22.8950 0.2 +22.9000 0.2 +22.9050 0.2 +22.9100 0.2 +22.9150 0.2 +22.9200 0.2 +22.9250 0.2 +22.9300 0.2 +22.9350 0.2 +22.9400 0.2 +22.9450 0.2 +22.9500 0.2 +22.9550 0.2 +22.9600 0.2 +22.9650 0.2 +22.9700 0.2 +22.9750 0.2 +22.9800 0.2 +22.9850 0.2 +22.9900 0.2 +22.9950 0.2 +23.0000 0.2 +23.0050 0.2 +23.0100 0.2 +23.0150 0.2 +23.0200 0.2 +23.0250 0.2 +23.0300 0.2 +23.0350 0.2 +23.0400 0.2 +23.0450 0.2 +23.0500 0.2 +23.0550 0.2 +23.0600 0.2 +23.0650 0.2 +23.0700 0.2 +23.0750 0.2 +23.0800 0.2 +23.0850 0.2 +23.0900 0.2 +23.0950 0.2 +23.1000 0.2 +23.1050 0.2 +23.1100 0.2 +23.1150 0.2 +23.1200 0.2 +23.1250 0.2 +23.1300 0.2 +23.1350 0.2 +23.1400 0.2 +23.1450 0.2 +23.1500 0.2 +23.1550 0.2 +23.1600 0.2 +23.1650 0.2 +23.1700 0.2 +23.1750 0.2 +23.1800 0.2 +23.1850 0.2 +23.1900 0.2 +23.1950 0.2 +23.2000 0.2 +23.2050 0.2 +23.2100 0.2 +23.2150 0.2 +23.2200 0.2 +23.2250 0.2 +23.2300 0.2 +23.2350 0.2 +23.2400 0.2 +23.2450 0.2 +23.2500 0.2 +23.2550 0.2 +23.2600 0.2 +23.2650 0.2 +23.2700 0.2 +23.2750 0.2 +23.2800 0.2 +23.2850 0.2 +23.2900 0.2 +23.2950 0.2 +23.3000 0.2 +23.3050 0.2 +23.3100 0.2 +23.3150 0.2 +23.3200 0.2 +23.3250 0.2 +23.3300 0.2 +23.3350 0.2 +23.3400 0.2 +23.3450 0.2 +23.3500 0.2 +23.3550 0.2 +23.3600 0.2 +23.3650 0.2 +23.3700 0.2 +23.3750 0.2 +23.3800 0.2 +23.3850 0.2 +23.3900 0.2 +23.3950 0.2 +23.4000 0.2 +23.4050 0.2 +23.4100 0.2 +23.4150 0.2 +23.4200 0.2 +23.4250 0.2 +23.4300 0.2 +23.4350 0.2 +23.4400 0.2 +23.4450 0.2 +23.4500 0.2 +23.4550 0.2 +23.4600 0.2 +23.4650 0.2 +23.4700 0.2 +23.4750 0.2 +23.4800 0.2 +23.4850 0.2 +23.4900 0.2 +23.4950 0.2 +23.5000 0.2 +23.5050 0.2 +23.5100 0.2 +23.5150 0.2 +23.5200 0.2 +23.5250 0.2 +23.5300 0.2 +23.5350 0.2 +23.5400 0.2 +23.5450 0.2 +23.5500 0.2 +23.5550 0.2 +23.5600 0.2 +23.5650 0.2 +23.5700 0.2 +23.5750 0.2 +23.5800 0.2 +23.5850 0.2 +23.5900 0.2 +23.5950 0.2 +23.6000 0.2 +23.6050 0.2 +23.6100 0.2 +23.6150 0.2 +23.6200 0.2 +23.6250 0.2 +23.6300 0.2 +23.6350 0.2 +23.6400 0.2 +23.6450 0.2 +23.6500 0.2 +23.6550 0.2 +23.6600 0.2 +23.6650 0.2 +23.6700 0.2 +23.6750 0.2 +23.6800 0.2 +23.6850 0.2 +23.6900 0.2 +23.6950 0.2 +23.7000 0.2 +23.7050 0.2 +23.7100 0.2 +23.7150 0.2 +23.7200 0.2 +23.7250 0.2 +23.7300 0.2 +23.7350 0.2 +23.7400 0.2 +23.7450 0.2 +23.7500 0.2 +23.7550 0.2 +23.7600 0.2 +23.7650 0.2 +23.7700 0.2 +23.7750 0.2 +23.7800 0.2 +23.7850 0.2 +23.7900 0.2 +23.7950 0.2 +23.8000 0.2 +23.8050 0.2 +23.8100 0.2 +23.8150 0.2 +23.8200 0.2 +23.8250 0.2 +23.8300 0.2 +23.8350 0.2 +23.8400 0.2 +23.8450 0.2 +23.8500 0.2 +23.8550 0.2 +23.8600 0.2 +23.8650 0.2 +23.8700 0.2 +23.8750 0.2 +23.8800 0.2 +23.8850 0.2 +23.8900 0.2 +23.8950 0.2 +23.9000 0.2 +23.9050 0.2 +23.9100 0.2 +23.9150 0.2 +23.9200 0.2 +23.9250 0.2 +23.9300 0.2 +23.9350 0.2 +23.9400 0.2 +23.9450 0.2 +23.9500 0.2 +23.9550 0.2 +23.9600 0.2 +23.9650 0.2 +23.9700 0.2 +23.9750 0.2 +23.9800 0.2 +23.9850 0.2 +23.9900 0.2 +23.9950 0.2 +24.0000 0.2 +24.0050 0.2 +24.0100 0.2 +24.0150 0.2 +24.0200 0.2 +24.0250 0.2 +24.0300 0.2 +24.0350 0.2 +24.0400 0.2 +24.0450 0.2 +24.0500 0.2 +24.0550 0.2 +24.0600 0.2 +24.0650 0.2 +24.0700 0.2 +24.0750 0.2 +24.0800 0.2 +24.0850 0.2 +24.0900 0.2 +24.0950 0.2 +24.1000 0.2 +24.1050 0.2 +24.1100 0.2 +24.1150 0.2 +24.1200 0.2 +24.1250 0.2 +24.1300 0.2 +24.1350 0.2 +24.1400 0.2 +24.1450 0.2 +24.1500 0.2 +24.1550 0.2 +24.1600 0.2 +24.1650 0.2 +24.1700 0.2 +24.1750 0.2 +24.1800 0.2 +24.1850 0.2 +24.1900 0.2 +24.1950 0.2 +24.2000 0.2 +24.2050 0.2 +24.2100 0.2 +24.2150 0.2 +24.2200 0.2 +24.2250 0.2 +24.2300 0.2 +24.2350 0.2 +24.2400 0.2 +24.2450 0.2 +24.2500 0.2 +24.2550 0.2 +24.2600 0.2 +24.2650 0.2 +24.2700 0.2 +24.2750 0.2 +24.2800 0.2 +24.2850 0.2 +24.2900 0.2 +24.2950 0.2 +24.3000 0.2 +24.3050 0.2 +24.3100 0.2 +24.3150 0.2 +24.3200 0.2 +24.3250 0.2 +24.3300 0.2 +24.3350 0.2 +24.3400 0.2 +24.3450 0.2 +24.3500 0.2 +24.3550 0.2 +24.3600 0.2 +24.3650 0.2 +24.3700 0.2 +24.3750 0.2 +24.3800 0.2 +24.3850 0.2 +24.3900 0.2 +24.3950 0.2 +24.4000 0.2 +24.4050 0.2 +24.4100 0.2 +24.4150 0.2 +24.4200 0.2 +24.4250 0.2 +24.4300 0.2 +24.4350 0.2 +24.4400 0.2 +24.4450 0.2 +24.4500 0.2 +24.4550 0.2 +24.4600 0.2 +24.4650 0.2 +24.4700 0.2 +24.4750 0.2 +24.4800 0.2 +24.4850 0.2 +24.4900 0.2 +24.4950 0.2 +24.5000 0.2 +24.5050 0.2 +24.5100 0.2 +24.5150 0.2 +24.5200 0.2 +24.5250 0.2 +24.5300 0.2 +24.5350 0.2 +24.5400 0.2 +24.5450 0.2 +24.5500 0.2 +24.5550 0.2 +24.5600 0.2 +24.5650 0.2 +24.5700 0.2 +24.5750 0.2 +24.5800 0.2 +24.5850 0.2 +24.5900 0.2 +24.5950 0.2 +24.6000 0.2 +24.6050 0.2 +24.6100 0.2 +24.6150 0.2 +24.6200 0.2 +24.6250 0.2 +24.6300 0.2 +24.6350 0.2 +24.6400 0.2 +24.6450 0.2 +24.6500 0.2 +24.6550 0.2 +24.6600 0.2 +24.6650 0.2 +24.6700 0.2 +24.6750 0.2 +24.6800 0.2 +24.6850 0.2 +24.6900 0.2 +24.6950 0.2 +24.7000 0.2 +24.7050 0.2 +24.7100 0.2 +24.7150 0.2 +24.7200 0.2 +24.7250 0.2 +24.7300 0.2 +24.7350 0.2 +24.7400 0.2 +24.7450 0.2 +24.7500 0.2 +24.7550 0.2 +24.7600 0.2 +24.7650 0.2 +24.7700 0.2 +24.7750 0.2 +24.7800 0.2 +24.7850 0.2 +24.7900 0.2 +24.7950 0.2 +24.8000 0.2 +24.8050 0.2 +24.8100 0.2 +24.8150 0.2 +24.8200 0.2 +24.8250 0.2 +24.8300 0.2 +24.8350 0.2 +24.8400 0.2 +24.8450 0.2 +24.8500 0.2 +24.8550 0.2 +24.8600 0.2 +24.8650 0.2 +24.8700 0.2 +24.8750 0.2 +24.8800 0.2 +24.8850 0.2 +24.8900 0.2 +24.8950 0.2 +24.9000 0.2 +24.9050 0.2 +24.9100 0.2 +24.9150 0.2 +24.9200 0.2 +24.9250 0.2 +24.9300 0.2 +24.9350 0.2 +24.9400 0.2 +24.9450 0.2 +24.9500 0.2 +24.9550 0.2 +24.9600 0.2 +24.9650 0.2 +24.9700 0.2 +24.9750 0.2 +24.9800 0.2 +24.9850 0.2 +24.9900 0.2 +24.9950 0.2 +25.0000 0.2 +25.0050 0.2 +25.0100 0.2 +25.0150 0.2 +25.0200 0.2 +25.0250 0.2 +25.0300 0.2 +25.0350 0.2 +25.0400 0.2 +25.0450 0.2 +25.0500 0.2 +25.0550 0.2 +25.0600 0.2 +25.0650 0.2 +25.0700 0.2 +25.0750 0.2 +25.0800 0.2 +25.0850 0.2 +25.0900 0.2 +25.0950 0.2 +25.1000 0.2 +25.1050 0.2 +25.1100 0.2 +25.1150 0.2 +25.1200 0.2 +25.1250 0.2 +25.1300 0.2 +25.1350 0.2 +25.1400 0.2 +25.1450 0.2 +25.1500 0.2 +25.1550 0.2 +25.1600 0.2 +25.1650 0.2 +25.1700 0.2 +25.1750 0.2 +25.1800 0.2 +25.1850 0.2 +25.1900 0.2 +25.1950 0.2 +25.2000 0.2 +25.2050 0.2 +25.2100 0.2 +25.2150 0.2 +25.2200 0.2 +25.2250 0.2 +25.2300 0.2 +25.2350 0.2 +25.2400 0.2 +25.2450 0.2 +25.2500 0.2 +25.2550 0.2 +25.2600 0.2 +25.2650 0.2 +25.2700 0.2 +25.2750 0.2 +25.2800 0.2 +25.2850 0.2 +25.2900 0.2 +25.2950 0.2 +25.3000 0.2 +25.3050 0.2 +25.3100 0.2 +25.3150 0.2 +25.3200 0.2 +25.3250 0.2 +25.3300 0.2 +25.3350 0.2 +25.3400 0.2 +25.3450 0.2 +25.3500 0.2 +25.3550 0.2 +25.3600 0.2 +25.3650 0.2 +25.3700 0.2 +25.3750 0.2 +25.3800 0.2 +25.3850 0.2 +25.3900 0.2 +25.3950 0.2 +25.4000 0.2 +25.4050 0.2 +25.4100 0.2 +25.4150 0.2 +25.4200 0.2 +25.4250 0.2 +25.4300 0.2 +25.4350 0.2 +25.4400 0.2 +25.4450 0.2 +25.4500 0.2 +25.4550 0.2 +25.4600 0.2 +25.4650 0.2 +25.4700 0.2 +25.4750 0.2 +25.4800 0.2 +25.4850 0.2 +25.4900 0.2 +25.4950 0.2 +25.5000 0.2 +25.5050 0.2 +25.5100 0.2 +25.5150 0.2 +25.5200 0.2 +25.5250 0.2 +25.5300 0.2 +25.5350 0.2 +25.5400 0.2 +25.5450 0.2 +25.5500 0.2 +25.5550 0.2 +25.5600 0.2 +25.5650 0.2 +25.5700 0.2 +25.5750 0.2 +25.5800 0.2 +25.5850 0.2 +25.5900 0.2 +25.5950 0.2 +25.6000 0.2 +25.6050 0.2 +25.6100 0.2 +25.6150 0.2 +25.6200 0.2 +25.6250 0.2 +25.6300 0.2 +25.6350 0.2 +25.6400 0.2 +25.6450 0.2 +25.6500 0.2 +25.6550 0.2 +25.6600 0.2 +25.6650 0.2 +25.6700 0.2 +25.6750 0.2 +25.6800 0.2 +25.6850 0.2 +25.6900 0.2 +25.6950 0.2 +25.7000 0.2 +25.7050 0.2 +25.7100 0.2 +25.7150 0.2 +25.7200 0.2 +25.7250 0.2 +25.7300 0.2 +25.7350 0.2 +25.7400 0.2 +25.7450 0.2 +25.7500 0.2 +25.7550 0.2 +25.7600 0.2 +25.7650 0.2 +25.7700 0.2 +25.7750 0.2 +25.7800 0.2 +25.7850 0.2 +25.7900 0.2 +25.7950 0.2 +25.8000 0.2 +25.8050 0.2 +25.8100 0.2 +25.8150 0.2 +25.8200 0.2 +25.8250 0.2 +25.8300 0.2 +25.8350 0.2 +25.8400 0.2 +25.8450 0.2 +25.8500 0.2 +25.8550 0.2 +25.8600 0.2 +25.8650 0.2 +25.8700 0.2 +25.8750 0.2 +25.8800 0.2 +25.8850 0.2 +25.8900 0.2 +25.8950 0.2 +25.9000 0.2 +25.9050 0.2 +25.9100 0.2 +25.9150 0.2 +25.9200 0.2 +25.9250 0.2 +25.9300 0.2 +25.9350 0.2 +25.9400 0.2 +25.9450 0.2 +25.9500 0.2 +25.9550 0.2 +25.9600 0.2 +25.9650 0.2 +25.9700 0.2 +25.9750 0.2 +25.9800 0.2 +25.9850 0.2 +25.9900 0.2 +25.9950 0.2 +26.0000 0.2 +26.0050 0.2 +26.0100 0.2 +26.0150 0.2 +26.0200 0.2 +26.0250 0.2 +26.0300 0.2 +26.0350 0.2 +26.0400 0.2 +26.0450 0.2 +26.0500 0.2 +26.0550 0.2 +26.0600 0.2 +26.0650 0.2 +26.0700 0.2 +26.0750 0.2 +26.0800 0.2 +26.0850 0.2 +26.0900 0.2 +26.0950 0.2 +26.1000 0.2 +26.1050 0.2 +26.1100 0.2 +26.1150 0.2 +26.1200 0.2 +26.1250 0.2 +26.1300 0.2 +26.1350 0.2 +26.1400 0.2 +26.1450 0.2 +26.1500 0.2 +26.1550 0.2 +26.1600 0.2 +26.1650 0.2 +26.1700 0.2 +26.1750 0.2 +26.1800 0.2 +26.1850 0.2 +26.1900 0.2 +26.1950 0.2 +26.2000 0.2 +26.2050 0.2 +26.2100 0.2 +26.2150 0.2 +26.2200 0.2 +26.2250 0.2 +26.2300 0.2 +26.2350 0.2 +26.2400 0.2 +26.2450 0.2 +26.2500 0.2 +26.2550 0.2 +26.2600 0.2 +26.2650 0.2 +26.2700 0.2 +26.2750 0.2 +26.2800 0.2 +26.2850 0.2 +26.2900 0.2 +26.2950 0.2 +26.3000 0.2 +26.3050 0.2 +26.3100 0.2 +26.3150 0.2 +26.3200 0.2 +26.3250 0.2 +26.3300 0.2 +26.3350 0.2 +26.3400 0.2 +26.3450 0.2 +26.3500 0.2 +26.3550 0.2 +26.3600 0.2 +26.3650 0.2 +26.3700 0.2 +26.3750 0.2 +26.3800 0.2 +26.3850 0.2 +26.3900 0.2 +26.3950 0.2 +26.4000 0.2 +26.4050 0.2 +26.4100 0.2 +26.4150 0.2 +26.4200 0.2 +26.4250 0.2 +26.4300 0.2 +26.4350 0.2 +26.4400 0.2 +26.4450 0.2 +26.4500 0.2 +26.4550 0.2 +26.4600 0.2 +26.4650 0.2 +26.4700 0.2 +26.4750 0.2 +26.4800 0.2 +26.4850 0.2 +26.4900 0.2 +26.4950 0.2 +26.5000 0.2 +26.5050 0.2 +26.5100 0.2 +26.5150 0.2 +26.5200 0.2 +26.5250 0.2 +26.5300 0.2 +26.5350 0.2 +26.5400 0.2 +26.5450 0.2 +26.5500 0.2 +26.5550 0.2 +26.5600 0.2 +26.5650 0.2 +26.5700 0.2 +26.5750 0.2 +26.5800 0.2 +26.5850 0.2 +26.5900 0.2 +26.5950 0.2 +26.6000 0.2 +26.6050 0.2 +26.6100 0.2 +26.6150 0.2 +26.6200 0.2 +26.6250 0.2 +26.6300 0.2 +26.6350 0.2 +26.6400 0.2 +26.6450 0.2 +26.6500 0.2 +26.6550 0.2 +26.6600 0.2 +26.6650 0.2 +26.6700 0.2 +26.6750 0.2 +26.6800 0.2 +26.6850 0.2 +26.6900 0.2 +26.6950 0.2 +26.7000 0.2 +26.7050 0.2 +26.7100 0.2 +26.7150 0.2 +26.7200 0.2 +26.7250 0.2 +26.7300 0.2 +26.7350 0.2 +26.7400 0.2 +26.7450 0.2 +26.7500 0.2 +26.7550 0.2 +26.7600 0.2 +26.7650 0.2 +26.7700 0.2 +26.7750 0.2 +26.7800 0.2 +26.7850 0.2 +26.7900 0.2 +26.7950 0.2 +26.8000 0.2 +26.8050 0.2 +26.8100 0.2 +26.8150 0.2 +26.8200 0.2 +26.8250 0.2 +26.8300 0.2 +26.8350 0.2 +26.8400 0.2 +26.8450 0.2 +26.8500 0.2 +26.8550 0.2 +26.8600 0.2 +26.8650 0.2 +26.8700 0.2 +26.8750 0.4 +26.8800 0.6 +26.8850 0.7 +26.8900 0.7 +26.8950 0.7 +26.9000 0.6 +26.9050 0.6 +26.9100 0.6 +26.9150 0.5 +26.9200 0.5 +26.9250 0.5 +26.9300 0.5 +26.9350 0.5 +26.9400 0.5 +26.9450 0.6 +26.9500 0.8 +26.9550 1.0 +26.9600 1.1 +26.9650 1.3 +26.9700 1.4 +26.9750 1.5 +26.9800 1.4 +26.9850 1.3 +26.9900 1.3 +26.9950 1.4 +27.0000 1.3 +27.0050 1.1 +27.0100 1.2 +27.0150 1.3 +27.0200 1.3 +27.0250 1.2 +27.0300 1.4 +27.0350 1.5 +27.0400 1.6 +27.0450 1.7 +27.0500 1.8 +27.0550 1.8 +27.0600 1.8 +27.0650 1.8 +27.0700 1.7 +27.0750 1.6 +27.0800 1.7 +27.0850 1.6 +27.0900 1.5 +27.0950 1.6 +27.1000 1.7 +27.1050 1.6 +27.1100 1.7 +27.1150 1.9 +27.1200 1.9 +27.1250 1.9 +27.1300 2.0 +27.1350 2.0 +27.1400 2.1 +27.1450 1.9 +27.1500 1.8 +27.1550 2.0 +27.1600 1.9 +27.1650 1.7 +27.1700 1.8 +27.1750 1.9 +27.1800 1.8 +27.1850 1.9 +27.1900 2.0 +27.1950 2.0 +27.2000 2.0 +27.2050 2.1 +27.2100 2.0 +27.2150 2.1 +27.2200 2.1 +27.2250 2.0 +27.2300 2.0 +27.2350 2.1 +27.2400 1.9 +27.2450 1.9 +27.2500 2.0 +27.2550 1.9 +27.2600 2.0 +27.2650 2.1 +27.2700 2.0 +27.2750 2.1 +27.2800 2.2 +27.2850 2.1 +27.2900 2.1 +27.2950 2.2 +27.3000 2.0 +27.3050 2.0 +27.3100 2.1 +27.3150 2.0 +27.3200 2.0 +27.3250 2.0 +27.3300 1.9 +27.3350 2.0 +27.3400 2.1 +27.3450 2.0 +27.3500 2.1 +27.3550 2.2 +27.3600 2.1 +27.3650 2.1 +27.3700 2.1 +27.3750 2.1 +27.3800 2.1 +27.3850 2.0 +27.3900 2.0 +27.3950 2.0 +27.4000 2.0 +27.4050 2.0 +27.4100 2.0 +27.4150 2.0 +27.4200 2.1 +27.4250 2.1 +27.4300 2.1 +27.4350 2.1 +27.4400 2.1 +27.4450 2.1 +27.4500 2.1 +27.4550 2.1 +27.4600 2.0 +27.4650 2.1 +27.4700 2.1 +27.4750 2.0 +27.4800 2.1 +27.4850 2.0 +27.4900 2.0 +27.4950 2.1 +27.5000 2.1 +27.5050 2.0 +27.5100 2.1 +27.5150 2.1 +27.5200 2.1 +27.5250 2.2 +27.5300 2.1 +27.5350 2.1 +27.5400 2.1 +27.5450 2.0 +27.5500 2.0 +27.5550 2.1 +27.5600 2.0 +27.5650 2.0 +27.5700 2.1 +27.5750 2.0 +27.5800 2.1 +27.5850 2.1 +27.5900 2.1 +27.5950 2.1 +27.6000 2.1 +27.6050 2.1 +27.6100 2.1 +27.6150 2.1 +27.6200 2.0 +27.6250 2.1 +27.6300 2.1 +27.6350 2.0 +27.6400 2.1 +27.6450 2.1 +27.6500 2.1 +27.6550 2.1 +27.6600 2.1 +27.6650 2.1 +27.6700 2.1 +27.6750 2.1 +27.6800 2.1 +27.6850 2.1 +27.6900 2.0 +27.6950 2.1 +27.7000 2.1 +27.7050 2.0 +27.7100 2.1 +27.7150 2.1 +27.7200 2.0 +27.7250 2.1 +27.7300 2.1 +27.7350 2.1 +27.7400 2.1 +27.7450 2.1 +27.7500 2.1 +27.7550 2.1 +27.7600 2.1 +27.7650 2.0 +27.7700 2.1 +27.7750 2.0 +27.7800 2.0 +27.7850 2.1 +27.7900 2.0 +27.7950 2.1 +27.8000 2.1 +27.8050 2.1 +27.8100 2.1 +27.8150 2.1 +27.8200 2.1 +27.8250 2.1 +27.8300 2.1 +27.8350 2.0 +27.8400 2.1 +27.8450 2.1 +27.8500 2.0 +27.8550 2.1 +27.8600 2.1 +27.8650 2.0 +27.8700 2.1 +27.8750 2.1 +27.8800 2.1 +27.8850 2.1 +27.8900 2.1 +27.8950 2.1 +27.9000 2.1 +27.9050 2.1 +27.9100 2.1 +27.9150 2.1 +27.9200 2.1 +27.9250 2.1 +27.9300 2.1 +27.9350 2.0 +27.9400 2.1 +27.9450 2.1 +27.9500 2.0 +27.9550 2.1 +27.9600 2.1 +27.9650 2.0 +27.9700 2.1 +27.9750 2.1 +27.9800 2.0 +27.9850 2.1 +27.9900 2.1 +27.9950 2.0 +28.0000 2.1 +28.0050 2.1 +28.0100 2.0 +28.0150 2.1 +28.0200 2.0 +28.0250 2.1 +28.0300 2.1 +28.0350 2.0 +28.0400 2.1 +28.0450 2.1 +28.0500 2.1 +28.0550 2.1 +28.0600 2.1 +28.0650 2.0 +28.0700 2.1 +28.0750 2.1 +28.0800 2.0 +28.0850 2.1 +28.0900 2.1 +28.0950 2.0 +28.1000 2.1 +28.1050 2.0 +28.1100 2.1 +28.1150 2.1 +28.1200 2.1 +28.1250 2.1 +28.1300 2.1 +28.1350 2.1 +28.1400 2.1 +28.1450 2.1 +28.1500 2.1 +28.1550 2.1 +28.1600 2.1 +28.1650 2.0 +28.1700 2.1 +28.1750 2.1 +28.1800 2.0 +28.1850 2.1 +28.1900 2.1 +28.1950 2.0 +28.2000 2.1 +28.2050 2.1 +28.2100 2.0 +28.2150 2.1 +28.2200 2.1 +28.2250 2.1 +28.2300 2.1 +28.2350 2.1 +28.2400 2.1 +28.2450 2.1 +28.2500 2.1 +28.2550 2.1 +28.2600 2.1 +28.2650 2.1 +28.2700 2.1 +28.2750 2.1 +28.2800 2.0 +28.2850 2.1 +28.2900 2.1 +28.2950 2.0 +28.3000 2.1 +28.3050 2.1 +28.3100 2.1 +28.3150 2.1 +28.3200 2.1 +28.3250 2.1 +28.3300 2.1 +28.3350 2.1 +28.3400 2.1 +28.3450 2.1 +28.3500 2.1 +28.3550 2.1 +28.3600 2.1 +28.3650 2.0 +28.3700 2.1 +28.3750 2.1 +28.3800 2.0 +28.3850 2.1 +28.3900 2.1 +28.3950 2.0 +28.4000 2.1 +28.4050 2.1 +28.4100 2.0 +28.4150 2.1 +28.4200 2.1 +28.4250 2.0 +28.4300 2.1 +28.4350 2.1 +28.4400 2.0 +28.4450 2.1 +28.4500 2.1 +28.4550 2.1 +28.4600 2.1 +28.4650 2.1 +28.4700 2.1 +28.4750 2.1 +28.4800 2.0 +28.4850 2.1 +28.4900 2.1 +28.4950 2.0 +28.5000 2.1 +28.5050 2.1 +28.5100 2.0 +28.5150 2.1 +28.5200 2.1 +28.5250 2.0 +28.5300 2.1 +28.5350 2.1 +28.5400 2.0 +28.5450 2.1 +28.5500 2.1 +28.5550 2.0 +28.5600 2.1 +28.5650 2.1 +28.5700 2.1 +28.5750 2.1 +28.5800 2.1 +28.5850 2.0 +28.5900 2.1 +28.5950 2.1 +28.6000 2.1 +28.6050 2.1 +28.6100 2.1 +28.6150 2.1 +28.6200 2.1 +28.6250 2.0 +28.6300 2.1 +28.6350 2.1 +28.6400 2.0 +28.6450 2.1 +28.6500 2.1 +28.6550 2.1 +28.6600 2.1 +28.6650 2.1 +28.6700 2.0 +28.6750 2.1 +28.6800 2.1 +28.6850 2.1 +28.6900 2.1 +28.6950 2.1 +28.7000 2.1 +28.7050 2.1 +28.7100 2.1 +28.7150 2.1 +28.7200 2.1 +28.7250 2.1 +28.7300 2.1 +28.7350 2.1 +28.7400 2.0 +28.7450 2.1 +28.7500 2.1 +28.7550 2.0 +28.7600 2.1 +28.7650 2.1 +28.7700 2.0 +28.7750 2.1 +28.7800 2.1 +28.7850 2.1 +28.7900 2.1 +28.7950 2.1 +28.8000 2.1 +28.8050 2.1 +28.8100 2.1 +28.8150 2.1 +28.8200 2.1 +28.8250 2.1 +28.8300 2.1 +28.8350 2.1 +28.8400 2.1 +28.8450 2.1 +28.8500 2.1 +28.8550 2.0 +28.8600 2.1 +28.8650 2.1 +28.8700 2.1 +28.8750 2.1 +28.8800 2.1 +28.8850 2.0 +28.8900 2.1 +28.8950 2.1 +28.9000 2.0 +28.9050 2.1 +28.9100 2.1 +28.9150 2.0 +28.9200 2.1 +28.9250 2.1 +28.9300 2.1 +28.9350 2.1 +28.9400 2.1 +28.9450 2.1 +28.9500 2.1 +28.9550 2.1 +28.9600 2.1 +28.9650 2.1 +28.9700 2.1 +28.9750 2.1 +28.9800 2.1 +28.9850 2.1 +28.9900 2.1 +28.9950 2.1 +29.0000 2.0 +29.0050 2.1 +29.0100 2.1 +29.0150 2.1 +29.0200 2.1 +29.0250 2.1 +29.0300 2.0 +29.0350 2.1 +29.0400 2.1 +29.0450 2.1 +29.0500 2.1 +29.0550 2.1 +29.0600 2.1 +29.0650 2.1 +29.0700 2.1 +29.0750 2.1 +29.0800 2.1 +29.0850 2.1 +29.0900 2.1 +29.0950 2.1 +29.1000 2.0 +29.1050 2.1 +29.1100 2.1 +29.1150 2.0 +29.1200 2.1 +29.1250 2.1 +29.1300 2.0 +29.1350 2.1 +29.1400 2.1 +29.1450 2.0 +29.1500 2.1 +29.1550 2.1 +29.1600 2.0 +29.1650 2.1 +29.1700 2.1 +29.1750 2.0 +29.1800 2.1 +29.1850 2.1 +29.1900 2.1 +29.1950 2.1 +29.2000 2.1 +29.2050 2.1 +29.2100 2.1 +29.2150 2.0 +29.2200 2.1 +29.2250 2.1 +29.2300 2.0 +29.2350 2.1 +29.2400 2.1 +29.2450 2.0 +29.2500 2.1 +29.2550 2.1 +29.2600 2.0 +29.2650 2.1 +29.2700 2.1 +29.2750 2.0 +29.2800 2.1 +29.2850 2.1 +29.2900 2.1 +29.2950 2.1 +29.3000 2.1 +29.3050 2.1 +29.3100 2.1 +29.3150 2.1 +29.3200 2.1 +29.3250 2.1 +29.3300 2.0 +29.3350 2.1 +29.3400 2.1 +29.3450 2.0 +29.3500 2.1 +29.3550 2.1 +29.3600 2.0 +29.3650 2.1 +29.3700 2.1 +29.3750 2.0 +29.3800 2.1 +29.3850 2.1 +29.3900 2.0 +29.3950 2.1 +29.4000 2.1 +29.4050 2.1 +29.4100 2.1 +29.4150 2.1 +29.4200 2.0 +29.4250 2.1 +29.4300 2.1 +29.4350 2.1 +29.4400 2.1 +29.4450 2.1 +29.4500 2.1 +29.4550 2.1 +29.4600 2.0 +29.4650 2.1 +29.4700 2.1 +29.4750 2.0 +29.4800 2.1 +29.4850 2.1 +29.4900 2.0 +29.4950 2.1 +29.5000 2.1 +29.5050 2.1 +29.5100 2.1 +29.5150 2.1 +29.5200 2.1 +29.5250 2.1 +29.5300 2.1 +29.5350 2.1 +29.5400 2.1 +29.5450 2.1 +29.5500 2.1 +29.5550 2.1 +29.5600 2.1 +29.5650 2.1 +29.5700 2.1 +29.5750 2.0 +29.5800 2.1 +29.5850 2.1 +29.5900 2.0 +29.5950 2.1 +29.6000 2.1 +29.6050 2.1 +29.6100 2.1 +29.6150 2.1 +29.6200 2.1 +29.6250 2.1 +29.6300 2.1 +29.6350 2.1 +29.6400 2.1 +29.6450 2.1 +29.6500 2.1 +29.6550 2.1 +29.6600 2.1 +29.6650 2.1 +29.6700 2.1 +29.6750 2.1 +29.6800 2.1 +29.6850 2.1 +29.6900 2.1 +29.6950 2.1 +29.7000 2.1 +29.7050 2.0 +29.7100 2.1 +29.7150 2.1 +29.7200 2.1 +29.7250 2.1 +29.7300 2.1 +29.7350 2.0 +29.7400 2.1 +29.7450 2.1 +29.7500 2.1 +29.7550 2.1 +29.7600 2.1 +29.7650 2.1 +29.7700 2.1 +29.7750 2.1 +29.7800 2.1 +29.7850 2.1 +29.7900 2.1 +29.7950 2.1 +29.8000 2.1 +29.8050 2.1 +29.8100 2.1 +29.8150 2.1 +29.8200 2.1 +29.8250 2.1 +29.8300 2.1 +29.8350 2.0 +29.8400 2.1 +29.8450 2.1 +29.8500 2.0 +29.8550 2.1 +29.8600 2.1 +29.8650 2.1 +29.8700 2.1 +29.8750 2.1 +29.8800 2.1 +29.8850 2.1 +29.8900 2.1 +29.8950 2.1 +29.9000 2.1 +29.9050 2.1 +29.9100 2.1 +29.9150 2.1 +29.9200 2.1 +29.9250 2.1 +29.9300 2.1 +29.9350 2.1 +29.9400 2.1 +29.9450 2.1 +29.9500 2.0 +29.9550 2.1 +29.9600 2.1 +29.9650 2.1 +29.9700 2.1 +29.9750 2.1 +29.9800 2.0 +29.9850 2.1 +29.9900 2.1 +29.9950 2.1 +30.0000 2.1 +30.0050 2.1 +30.0100 2.1 +30.0150 2.1 +30.0200 2.1 +30.0250 2.1 +30.0300 2.1 +30.0350 2.1 +30.0400 2.1 +30.0450 2.1 +30.0500 2.1 +30.0550 2.1 +30.0600 2.1 +30.0650 2.1 +30.0700 2.1 +30.0750 2.1 +30.0800 2.1 +30.0850 2.1 +30.0900 2.1 +30.0950 2.0 +30.1000 2.1 +30.1050 2.1 +30.1100 2.1 +30.1150 2.1 +30.1200 2.1 +30.1250 2.1 +30.1300 2.1 +30.1350 2.1 +30.1400 2.1 +30.1450 2.1 +30.1500 2.1 +30.1550 2.1 +30.1600 2.1 +30.1650 2.1 +30.1700 2.1 +30.1750 2.1 +30.1800 2.1 +30.1850 2.1 +30.1900 2.1 +30.1950 2.1 +30.2000 2.1 +30.2050 2.1 +30.2100 2.1 +30.2150 2.1 +30.2200 2.1 +30.2250 2.0 +30.2300 2.1 +30.2350 2.1 +30.2400 2.1 +30.2450 2.1 +30.2500 2.1 +30.2550 2.1 +30.2600 2.1 +30.2650 2.1 +30.2700 2.1 +30.2750 2.1 +30.2800 2.1 +30.2850 2.1 +30.2900 2.1 +30.2950 2.1 +30.3000 2.1 +30.3050 2.1 +30.3100 2.1 +30.3150 2.1 +30.3200 2.1 +30.3250 2.1 +30.3300 2.1 +30.3350 2.1 +30.3400 2.1 +30.3450 2.1 +30.3500 2.1 +30.3550 2.1 +30.3600 2.1 +30.3650 2.1 +30.3700 2.1 +30.3750 2.1 +30.3800 2.1 +30.3850 2.1 +30.3900 2.1 +30.3950 2.1 +30.4000 2.1 +30.4050 2.1 +30.4100 2.1 +30.4150 2.1 +30.4200 2.1 +30.4250 2.1 +30.4300 2.1 +30.4350 2.1 +30.4400 2.1 +30.4450 2.1 +30.4500 2.2 +30.4550 2.1 +30.4600 2.1 +30.4650 2.1 +30.4700 2.1 +30.4750 2.1 +30.4800 2.1 +30.4850 2.1 +30.4900 2.1 +30.4950 2.1 +30.5000 2.1 +30.5050 2.1 +30.5100 2.1 +30.5150 2.1 +30.5200 2.1 +30.5250 2.1 +30.5300 2.1 +30.5350 2.1 +30.5400 2.1 +30.5450 2.1 +30.5500 2.1 +30.5550 2.1 +30.5600 2.1 +30.5650 2.1 +30.5700 2.1 +30.5750 2.1 +30.5800 2.2 +30.5850 2.1 +30.5900 2.1 +30.5950 2.1 +30.6000 2.1 +30.6050 2.1 +30.6100 2.1 +30.6150 2.1 +30.6200 2.1 +30.6250 2.1 +30.6300 2.1 +30.6350 2.1 +30.6400 2.1 +30.6450 2.1 +30.6500 2.2 +30.6550 2.1 +30.6600 2.1 +30.6650 2.1 +30.6700 2.1 +30.6750 2.1 +30.6800 2.2 +30.6850 2.1 +30.6900 2.1 +30.6950 2.1 +30.7000 2.1 +30.7050 2.1 +30.7100 2.1 +30.7150 2.1 +30.7200 2.1 +30.7250 2.1 +30.7300 2.1 +30.7350 2.1 +30.7400 2.1 +30.7450 2.1 +30.7500 2.1 +30.7550 2.1 +30.7600 2.1 +30.7650 2.1 +30.7700 2.1 +30.7750 2.1 +30.7800 2.1 +30.7850 2.1 +30.7900 2.1 +30.7950 2.1 +30.8000 2.1 +30.8050 2.1 +30.8100 2.2 +30.8150 2.1 +30.8200 2.1 +30.8250 2.2 +30.8300 2.1 +30.8350 2.1 +30.8400 2.1 +30.8450 2.1 +30.8500 2.1 +30.8550 2.1 +30.8600 2.1 +30.8650 2.1 +30.8700 2.1 +30.8750 2.1 +30.8800 2.1 +30.8850 2.1 +30.8900 2.1 +30.8950 2.2 +30.9000 2.1 +30.9050 2.1 +30.9100 2.1 +30.9150 2.1 +30.9200 2.1 +30.9250 2.1 +30.9300 2.1 +30.9350 2.1 +30.9400 2.2 +30.9450 2.1 +30.9500 2.1 +30.9550 2.2 +30.9600 2.1 +30.9650 2.1 +30.9700 2.2 +30.9750 2.1 +30.9800 2.1 +30.9850 2.2 +30.9900 2.1 +30.9950 2.1 +31.0000 2.1 +31.0050 2.1 +31.0100 2.1 +31.0150 2.1 +31.0200 2.1 +31.0250 2.1 +31.0300 2.1 +31.0350 2.1 +31.0400 2.1 +31.0450 2.1 +31.0500 2.1 +31.0550 2.2 +31.0600 2.1 +31.0650 2.1 +31.0700 2.2 +31.0750 2.1 +31.0800 2.1 +31.0850 2.2 +31.0900 2.1 +31.0950 2.1 +31.1000 2.2 +31.1050 2.1 +31.1100 2.1 +31.1150 2.2 +31.1200 2.1 +31.1250 2.1 +31.1300 2.2 +31.1350 2.1 +31.1400 2.1 +31.1450 2.1 +31.1500 2.1 +31.1550 2.1 +31.1600 2.1 +31.1650 2.1 +31.1700 2.1 +31.1750 2.1 +31.1800 2.1 +31.1850 2.1 +31.1900 2.1 +31.1950 2.1 +31.2000 2.2 +31.2050 2.1 +31.2100 2.1 +31.2150 2.2 +31.2200 2.1 +31.2250 2.1 +31.2300 2.1 +31.2350 2.1 +31.2400 2.1 +31.2450 2.1 +31.2500 2.1 +31.2550 2.1 +31.2600 2.1 +31.2650 2.1 +31.2700 2.1 +31.2750 2.1 +31.2800 2.1 +31.2850 2.1 +31.2900 2.1 +31.2950 2.1 +31.3000 2.1 +31.3050 2.1 +31.3100 2.1 +31.3150 2.1 +31.3200 2.1 +31.3250 2.1 +31.3300 2.1 +31.3350 2.1 +31.3400 2.1 +31.3450 2.2 +31.3500 2.1 +31.3550 2.1 +31.3600 2.2 +31.3650 2.1 +31.3700 2.1 +31.3750 2.2 +31.3800 2.1 +31.3850 2.1 +31.3900 2.1 +31.3950 2.1 +31.4000 2.1 +31.4050 2.1 +31.4100 2.1 +31.4150 2.1 +31.4200 2.1 +31.4250 2.1 +31.4300 2.1 +31.4350 2.1 +31.4400 2.1 +31.4450 2.2 +31.4500 2.1 +31.4550 2.1 +31.4600 2.1 +31.4650 2.1 +31.4700 2.1 +31.4750 2.2 +31.4800 2.1 +31.4850 2.1 +31.4900 2.1 +31.4950 2.1 +31.5000 2.1 +31.5050 2.2 +31.5100 2.1 +31.5150 2.1 +31.5200 2.2 +31.5250 2.1 +31.5300 2.1 +31.5350 2.1 +31.5400 2.1 +31.5450 2.1 +31.5500 2.1 +31.5550 2.1 +31.5600 2.1 +31.5650 2.1 +31.5700 2.1 +31.5750 2.1 +31.5800 2.1 +31.5850 2.1 +31.5900 2.2 +31.5950 2.1 +31.6000 2.1 +31.6050 2.1 +31.6100 2.1 +31.6150 2.1 +31.6200 2.1 +31.6250 2.1 +31.6300 2.1 +31.6350 2.2 +31.6400 2.1 +31.6450 2.1 +31.6500 2.2 +31.6550 2.1 +31.6600 2.1 +31.6650 2.2 +31.6700 2.1 +31.6750 2.1 +31.6800 2.1 +31.6850 2.1 +31.6900 2.1 +31.6950 2.1 +31.7000 2.1 +31.7050 2.1 +31.7100 2.1 +31.7150 2.1 +31.7200 2.1 +31.7250 2.1 +31.7300 2.1 +31.7350 2.2 +31.7400 2.1 +31.7450 2.1 +31.7500 2.2 +31.7550 2.1 +31.7600 2.1 +31.7650 2.2 +31.7700 2.1 +31.7750 2.1 +31.7800 2.2 +31.7850 2.1 +31.7900 2.1 +31.7950 2.2 +31.8000 2.1 +31.8050 2.1 +31.8100 2.1 +31.8150 2.1 +31.8200 2.1 +31.8250 2.1 +31.8300 2.1 +31.8350 2.1 +31.8400 2.1 +31.8450 2.1 +31.8500 2.1 +31.8550 2.1 +31.8600 2.1 +31.8650 2.1 +31.8700 2.1 +31.8750 2.1 +31.8800 2.2 +31.8850 2.1 +31.8900 2.1 +31.8950 2.2 +31.9000 2.1 +31.9050 2.1 +31.9100 2.2 +31.9150 2.1 +31.9200 2.1 +31.9250 2.2 +31.9300 2.1 +31.9350 2.1 +31.9400 2.1 +31.9450 2.1 +31.9500 2.1 +31.9550 2.1 +31.9600 2.1 +31.9650 2.1 +31.9700 2.1 +31.9750 2.1 +31.9800 2.2 +31.9850 2.1 +31.9900 2.1 +31.9950 2.2 +32.0000 2.1 +32.0050 2.1 +32.0100 2.2 +32.0150 2.1 +32.0200 2.1 +32.0250 2.2 +32.0300 2.1 +32.0350 2.1 +32.0400 2.2 +32.0450 2.1 +32.0500 2.1 +32.0550 2.2 +32.0600 2.1 +32.0650 2.1 +32.0700 2.2 +32.0750 2.1 +32.0800 2.1 +32.0850 2.1 +32.0900 2.1 +32.0950 2.1 +32.1000 2.1 +32.1050 2.1 +32.1100 2.1 +32.1150 2.1 +32.1200 2.1 +32.1250 2.1 +32.1300 2.1 +32.1350 2.1 +32.1400 2.2 +32.1450 2.1 +32.1500 2.1 +32.1550 2.2 +32.1600 2.1 +32.1650 2.1 +32.1700 2.1 +32.1750 2.1 +32.1800 2.1 +32.1850 2.2 +32.1900 2.1 +32.1950 2.1 +32.2000 2.2 +32.2050 2.1 +32.2100 2.1 +32.2150 2.2 +32.2200 2.1 +32.2250 2.1 +32.2300 2.1 +32.2350 2.1 +32.2400 2.1 +32.2450 2.1 +32.2500 2.1 +32.2550 2.1 +32.2600 2.1 +32.2650 2.1 +32.2700 2.2 +32.2750 2.1 +32.2800 2.1 +32.2850 2.2 +32.2900 2.1 +32.2950 2.1 +32.3000 2.2 +32.3050 2.1 +32.3100 2.1 +32.3150 2.2 +32.3200 2.1 +32.3250 2.1 +32.3300 2.2 +32.3350 2.1 +32.3400 2.1 +32.3450 2.1 +32.3500 2.1 +32.3550 2.1 +32.3600 2.1 +32.3650 2.1 +32.3700 2.1 +32.3750 2.1 +32.3800 2.1 +32.3850 2.1 +32.3900 2.1 +32.3950 2.1 +32.4000 2.2 +32.4050 2.1 +32.4100 2.1 +32.4150 2.2 +32.4200 2.1 +32.4250 2.1 +32.4300 2.2 +32.4350 2.1 +32.4400 2.1 +32.4450 2.2 +32.4500 2.1 +32.4550 2.1 +32.4600 2.1 +32.4650 2.1 +32.4700 2.1 +32.4750 2.2 +32.4800 2.1 +32.4850 2.1 +32.4900 2.1 +32.4950 2.1 +32.5000 2.1 +32.5050 2.1 +32.5100 2.1 +32.5150 2.1 +32.5200 2.1 +32.5250 2.1 +32.5300 2.1 +32.5350 2.1 +32.5400 2.1 +32.5450 2.1 +32.5500 2.1 +32.5550 2.1 +32.5600 2.2 +32.5650 2.1 +32.5700 2.1 +32.5750 2.2 +32.5800 2.1 +32.5850 2.1 +32.5900 2.2 +32.5950 2.1 +32.6000 2.1 +32.6050 2.2 +32.6100 2.1 +32.6150 2.1 +32.6200 2.1 +32.6250 2.1 +32.6300 2.1 +32.6350 2.1 +32.6400 2.1 +32.6450 2.1 +32.6500 2.1 +32.6550 2.0 +32.6600 2.0 +32.6650 1.9 +32.6700 1.7 +32.6750 1.7 +32.6800 1.6 +32.6850 1.4 +32.6900 1.5 +32.6950 1.5 +32.7000 1.3 +32.7050 1.4 +32.7100 1.5 +32.7150 1.4 +32.7200 1.4 +32.7250 1.5 +32.7300 1.4 +32.7350 1.3 +32.7400 1.3 +32.7450 1.3 +32.7500 1.2 +32.7550 1.1 +32.7600 1.1 +32.7650 1.1 +32.7700 1.0 +32.7750 0.9 +32.7800 1.0 +32.7850 1.1 +32.7900 0.9 +32.7950 0.9 +32.8000 1.1 +32.8050 1.1 +32.8100 0.9 +32.8150 0.9 +32.8200 0.9 +32.8250 0.9 +32.8300 0.9 +32.8350 0.7 +32.8400 0.7 +32.8450 0.8 +32.8500 0.8 +32.8550 0.7 +32.8600 0.6 +32.8650 0.8 +32.8700 0.8 +32.8750 0.8 +32.8800 0.7 +32.8850 0.7 +32.8900 0.9 +32.8950 0.8 +32.9000 0.6 +32.9050 0.7 +32.9100 0.7 +32.9150 0.6 +32.9200 0.6 +32.9250 0.6 +32.9300 0.6 +32.9350 0.5 +32.9400 0.6 +32.9450 0.6 +32.9500 0.6 +32.9550 0.6 +32.9600 0.5 +32.9650 0.6 +32.9700 0.7 +32.9750 0.6 +32.9800 0.5 +32.9850 0.5 +32.9900 0.5 +32.9950 0.5 +33.0000 0.5 +33.0050 0.4 +33.0100 0.4 +33.0150 0.4 +33.0200 0.4 +33.0250 0.5 +33.0300 0.5 +33.0350 0.5 +33.0400 0.4 +33.0450 0.5 +33.0500 0.5 +33.0550 0.5 +33.0600 0.4 +33.0650 0.4 +33.0700 0.4 +33.0750 0.4 +33.0800 0.4 +33.0850 0.4 +33.0900 0.4 +33.0950 0.4 +33.1000 0.3 +33.1050 0.4 +33.1100 0.4 +33.1150 0.4 +33.1200 0.4 +33.1250 0.4 +33.1300 0.4 +33.1350 0.4 +33.1400 0.3 +33.1450 0.3 +33.1500 0.4 +33.1550 0.3 +33.1600 0.3 +33.1650 0.3 +33.1700 0.3 +33.1750 0.3 +33.1800 0.3 +33.1850 0.4 +33.1900 0.4 +33.1950 0.4 +33.2000 0.3 +33.2050 0.3 +33.2100 0.3 +33.2150 0.3 +33.2200 0.3 +33.2250 0.3 +33.2300 0.3 +33.2350 0.3 +33.2400 0.3 +33.2450 0.3 +33.2500 0.3 +33.2550 0.3 +33.2600 0.3 +33.2650 0.3 +33.2700 0.3 +33.2750 0.3 +33.2800 0.3 +33.2850 0.3 +33.2900 0.3 +33.2950 0.3 +33.3000 0.3 +33.3050 0.3 +33.3100 0.3 +33.3150 0.3 +33.3200 0.3 +33.3250 0.3 +33.3300 0.3 +33.3350 0.2 +33.3400 0.2 +33.3450 0.2 +33.3500 0.3 +33.3550 0.3 +33.3600 0.3 +33.3650 0.3 +33.3700 0.3 +33.3750 0.3 +33.3800 0.3 +33.3850 0.2 +33.3900 0.2 +33.3950 0.2 +33.4000 0.2 +33.4050 0.2 +33.4100 0.2 +33.4150 0.2 +33.4200 0.2 +33.4250 0.2 +33.4300 0.2 +33.4350 0.2 +33.4400 0.3 +33.4450 0.2 +33.4500 0.2 +33.4550 0.2 +33.4600 0.2 +33.4650 0.2 +33.4700 0.2 +33.4750 0.2 +33.4800 0.2 +33.4850 0.2 +33.4900 0.2 +33.4950 0.2 +33.5000 0.2 +33.5050 0.2 +33.5100 0.2 +33.5150 0.2 +33.5200 0.2 +33.5250 0.2 +33.5300 0.2 +33.5350 0.2 +33.5400 0.2 +33.5450 0.2 +33.5500 0.2 +33.5550 0.2 +33.5600 0.2 +33.5650 0.2 +33.5700 0.2 +33.5750 0.2 +33.5800 0.2 +33.5850 0.2 +33.5900 0.2 +33.5950 0.2 +33.6000 0.2 +33.6050 0.2 +33.6100 0.2 +33.6150 0.2 +33.6200 0.2 +33.6250 0.2 +33.6300 0.2 +33.6350 0.2 +33.6400 0.2 +33.6450 0.2 +33.6500 0.2 +33.6550 0.2 +33.6600 0.2 +33.6650 0.2 +33.6700 0.2 +33.6750 0.2 +33.6800 0.2 +33.6850 0.2 +33.6900 0.2 +33.6950 0.2 +33.7000 0.2 +33.7050 0.2 +33.7100 0.2 +33.7150 0.2 +33.7200 0.2 +33.7250 0.2 +33.7300 0.2 +33.7350 0.2 +33.7400 0.2 +33.7450 0.2 +33.7500 0.2 +33.7550 0.2 +33.7600 0.2 +33.7650 0.2 +33.7700 0.2 +33.7750 0.2 +33.7800 0.2 +33.7850 0.2 +33.7900 0.2 +33.7950 0.2 +33.8000 0.2 +33.8050 0.2 +33.8100 0.2 +33.8150 0.2 +33.8200 0.2 +33.8250 0.2 +33.8300 0.2 +33.8350 0.2 +33.8400 0.2 +33.8450 0.2 +33.8500 0.2 +33.8550 0.2 +33.8600 0.2 +33.8650 0.2 +33.8700 0.2 +33.8750 0.2 +33.8800 0.2 +33.8850 0.2 +33.8900 0.2 +33.8950 0.2 +33.9000 0.2 +33.9050 0.2 +33.9100 0.2 +33.9150 0.2 +33.9200 0.2 +33.9250 0.2 +33.9300 0.2 +33.9350 0.2 +33.9400 0.2 +33.9450 0.2 +33.9500 0.2 +33.9550 0.2 +33.9600 0.2 +33.9650 0.2 +33.9700 0.2 +33.9750 0.2 +33.9800 0.2 +33.9850 0.2 +33.9900 0.2 +33.9950 0.2 +34.0000 0.2 +34.0050 0.2 +34.0100 0.2 +34.0150 0.2 +34.0200 0.2 +34.0250 0.2 +34.0300 0.2 +34.0350 0.2 +34.0400 0.2 +34.0450 0.2 +34.0500 0.2 +34.0550 0.2 +34.0600 0.2 +34.0650 0.2 +34.0700 0.2 +34.0750 0.2 +34.0800 0.2 +34.0850 0.2 +34.0900 0.2 +34.0950 0.2 +34.1000 0.2 +34.1050 0.2 +34.1100 0.2 +34.1150 0.2 +34.1200 0.2 +34.1250 0.2 +34.1300 0.2 +34.1350 0.2 +34.1400 0.2 +34.1450 0.2 +34.1500 0.2 +34.1550 0.2 +34.1600 0.2 +34.1650 0.2 +34.1700 0.2 +34.1750 0.2 +34.1800 0.2 +34.1850 0.2 +34.1900 0.2 +34.1950 0.2 +34.2000 0.2 +34.2050 0.2 +34.2100 0.2 +34.2150 0.2 +34.2200 0.2 +34.2250 0.2 +34.2300 0.2 +34.2350 0.2 +34.2400 0.2 +34.2450 0.2 +34.2500 0.2 +34.2550 0.2 +34.2600 0.2 +34.2650 0.2 +34.2700 0.2 +34.2750 0.2 +34.2800 0.2 +34.2850 0.2 +34.2900 0.2 +34.2950 0.2 +34.3000 0.2 +34.3050 0.2 +34.3100 0.2 +34.3150 0.2 +34.3200 0.2 +34.3250 0.2 +34.3300 0.2 +34.3350 0.2 +34.3400 0.2 +34.3450 0.2 +34.3500 0.2 +34.3550 0.2 +34.3600 0.2 +34.3650 0.2 +34.3700 0.2 +34.3750 0.2 +34.3800 0.2 +34.3850 0.2 +34.3900 0.2 +34.3950 0.2 +34.4000 0.2 +34.4050 0.2 +34.4100 0.2 +34.4150 0.2 +34.4200 0.2 +34.4250 0.2 +34.4300 0.2 +34.4350 0.2 +34.4400 0.2 +34.4450 0.2 +34.4500 0.2 +34.4550 0.2 +34.4600 0.2 +34.4650 0.2 +34.4700 0.2 +34.4750 0.2 +34.4800 0.2 +34.4850 0.2 +34.4900 0.2 +34.4950 0.2 +34.5000 0.2 +34.5050 0.2 +34.5100 0.2 +34.5150 0.2 +34.5200 0.2 +34.5250 0.2 +34.5300 0.2 +34.5350 0.2 +34.5400 0.2 +34.5450 0.2 +34.5500 0.2 +34.5550 0.2 +34.5600 0.2 +34.5650 0.2 +34.5700 0.2 +34.5750 0.2 +34.5800 0.2 +34.5850 0.2 +34.5900 0.2 +34.5950 0.2 +34.6000 0.2 +34.6050 0.2 +34.6100 0.2 +34.6150 0.2 +34.6200 0.2 +34.6250 0.2 +34.6300 0.2 +34.6350 0.2 +34.6400 0.2 +34.6450 0.2 +34.6500 0.2 +34.6550 0.2 +34.6600 0.2 +34.6650 0.2 +34.6700 0.2 +34.6750 0.2 +34.6800 0.2 +34.6850 0.2 +34.6900 0.2 +34.6950 0.2 +34.7000 0.2 +34.7050 0.2 +34.7100 0.2 +34.7150 0.2 +34.7200 0.2 +34.7250 0.2 +34.7300 0.2 +34.7350 0.2 +34.7400 0.2 +34.7450 0.2 +34.7500 0.2 +34.7550 0.2 +34.7600 0.2 +34.7650 0.2 +34.7700 0.2 +34.7750 0.2 +34.7800 0.2 +34.7850 0.2 +34.7900 0.2 +34.7950 0.2 +34.8000 0.2 +34.8050 0.2 +34.8100 0.2 +34.8150 0.2 +34.8200 0.2 +34.8250 0.2 +34.8300 0.2 +34.8350 0.2 +34.8400 0.2 +34.8450 0.2 +34.8500 0.2 +34.8550 0.2 +34.8600 0.2 +34.8650 0.2 +34.8700 0.2 +34.8750 0.2 +34.8800 0.2 +34.8850 0.2 +34.8900 0.2 +34.8950 0.2 +34.9000 0.2 +34.9050 0.2 +34.9100 0.2 +34.9150 0.2 +34.9200 0.2 +34.9250 0.2 +34.9300 0.2 +34.9350 0.2 +34.9400 0.2 +34.9450 0.2 +34.9500 0.2 +34.9550 0.2 +34.9600 0.2 +34.9650 0.2 +34.9700 0.2 +34.9750 0.2 +34.9800 0.2 +34.9850 0.2 +34.9900 0.2 +34.9950 0.2 +35.0000 0.2 +35.0050 0.2 +35.0100 0.2 +35.0150 0.2 +35.0200 0.2 +35.0250 0.2 +35.0300 0.2 +35.0350 0.2 +35.0400 0.2 +35.0450 0.2 +35.0500 0.2 +35.0550 0.2 +35.0600 0.2 +35.0650 0.2 +35.0700 0.2 +35.0750 0.2 +35.0800 0.2 +35.0850 0.2 +35.0900 0.2 +35.0950 0.2 +35.1000 0.2 +35.1050 0.2 +35.1100 0.2 +35.1150 0.2 +35.1200 0.2 +35.1250 0.2 +35.1300 0.2 +35.1350 0.2 +35.1400 0.2 +35.1450 0.2 +35.1500 0.2 +35.1550 0.2 +35.1600 0.2 +35.1650 0.2 +35.1700 0.2 +35.1750 0.2 +35.1800 0.2 +35.1850 0.2 +35.1900 0.2 +35.1950 0.2 +35.2000 0.2 +35.2050 0.2 +35.2100 0.2 +35.2150 0.2 +35.2200 0.2 +35.2250 0.2 +35.2300 0.2 +35.2350 0.2 +35.2400 0.2 +35.2450 0.2 +35.2500 0.2 +35.2550 0.2 +35.2600 0.2 +35.2650 0.2 +35.2700 0.2 +35.2750 0.2 +35.2800 0.2 +35.2850 0.2 +35.2900 0.2 +35.2950 0.2 +35.3000 0.2 +35.3050 0.2 +35.3100 0.2 +35.3150 0.2 +35.3200 0.2 +35.3250 0.2 +35.3300 0.2 +35.3350 0.2 +35.3400 0.2 +35.3450 0.2 +35.3500 0.2 +35.3550 0.2 +35.3600 0.2 +35.3650 0.2 +35.3700 0.2 +35.3750 0.2 +35.3800 0.2 +35.3850 0.2 +35.3900 0.2 +35.3950 0.2 +35.4000 0.2 +35.4050 0.2 +35.4100 0.2 +35.4150 0.2 +35.4200 0.2 +35.4250 0.2 +35.4300 0.2 +35.4350 0.2 +35.4400 0.2 +35.4450 0.2 +35.4500 0.2 +35.4550 0.2 +35.4600 0.2 +35.4650 0.2 +35.4700 0.2 +35.4750 0.2 +35.4800 0.2 +35.4850 0.2 +35.4900 0.2 +35.4950 0.2 +35.5000 0.2 +35.5050 0.2 +35.5100 0.2 +35.5150 0.2 +35.5200 0.2 +35.5250 0.2 +35.5300 0.2 +35.5350 0.2 +35.5400 0.2 +35.5450 0.2 +35.5500 0.2 +35.5550 0.2 +35.5600 0.2 +35.5650 0.2 +35.5700 0.2 +35.5750 0.2 +35.5800 0.2 +35.5850 0.2 +35.5900 0.2 +35.5950 0.2 +35.6000 0.2 +35.6050 0.2 +35.6100 0.2 +35.6150 0.2 +35.6200 0.2 +35.6250 0.2 +35.6300 0.2 +35.6350 0.2 +35.6400 0.2 +35.6450 0.2 +35.6500 0.2 +35.6550 0.2 +35.6600 0.2 +35.6650 0.2 +35.6700 0.2 +35.6750 0.2 +35.6800 0.2 +35.6850 0.2 +35.6900 0.2 +35.6950 0.2 +35.7000 0.2 +35.7050 0.2 +35.7100 0.2 +35.7150 0.2 +35.7200 0.2 +35.7250 0.2 +35.7300 0.2 +35.7350 0.2 +35.7400 0.2 +35.7450 0.2 +35.7500 0.2 +35.7550 0.2 +35.7600 0.2 +35.7650 0.2 +35.7700 0.2 +35.7750 0.2 +35.7800 0.2 +35.7850 0.2 +35.7900 0.2 +35.7950 0.2 +35.8000 0.2 +35.8050 0.2 +35.8100 0.2 +35.8150 0.2 +35.8200 0.2 +35.8250 0.2 +35.8300 0.2 +35.8350 0.2 +35.8400 0.2 +35.8450 0.2 +35.8500 0.2 +35.8550 0.2 +35.8600 0.2 +35.8650 0.2 +35.8700 0.2 +35.8750 0.2 +35.8800 0.2 +35.8850 0.2 +35.8900 0.2 +35.8950 0.2 +35.9000 0.2 +35.9050 0.2 +35.9100 0.2 +35.9150 0.2 +35.9200 0.2 +35.9250 0.2 +35.9300 0.2 +35.9350 0.2 +35.9400 0.2 +35.9450 0.2 +35.9500 0.2 +35.9550 0.2 +35.9600 0.2 +35.9650 0.2 +35.9700 0.2 +35.9750 0.2 +35.9800 0.2 +35.9850 0.2 +35.9900 0.2 +35.9950 0.2 +36.0000 0.2 +36.0050 0.2 +36.0100 0.2 +36.0150 0.2 +36.0200 0.2 +36.0250 0.2 +36.0300 0.2 +36.0350 0.2 +36.0400 0.2 +36.0450 0.2 +36.0500 0.2 +36.0550 0.2 +36.0600 0.2 +36.0650 0.2 +36.0700 0.2 +36.0750 0.2 +36.0800 0.2 +36.0850 0.2 +36.0900 0.2 +36.0950 0.2 +36.1000 0.2 +36.1050 0.2 +36.1100 0.2 +36.1150 0.2 +36.1200 0.2 +36.1250 0.2 +36.1300 0.2 +36.1350 0.2 +36.1400 0.2 +36.1450 0.2 +36.1500 0.2 +36.1550 0.2 +36.1600 0.2 +36.1650 0.2 +36.1700 0.2 +36.1750 0.2 +36.1800 0.2 +36.1850 0.2 +36.1900 0.2 +36.1950 0.2 +36.2000 0.2 +36.2050 0.2 +36.2100 0.2 +36.2150 0.2 +36.2200 0.2 +36.2250 0.2 +36.2300 0.2 +36.2350 0.2 +36.2400 0.2 +36.2450 0.2 +36.2500 0.2 +36.2550 0.2 +36.2600 0.2 +36.2650 0.2 +36.2700 0.2 +36.2750 0.2 +36.2800 0.2 +36.2850 0.2 +36.2900 0.2 +36.2950 0.2 +36.3000 0.2 +36.3050 0.2 +36.3100 0.2 +36.3150 0.2 +36.3200 0.2 +36.3250 0.2 +36.3300 0.2 +36.3350 0.2 +36.3400 0.2 +36.3450 0.2 +36.3500 0.2 +36.3550 0.2 +36.3600 0.2 +36.3650 0.2 +36.3700 0.2 +36.3750 0.2 +36.3800 0.2 +36.3850 0.2 +36.3900 0.2 +36.3950 0.2 +36.4000 0.2 +36.4050 0.2 +36.4100 0.2 +36.4150 0.2 +36.4200 0.2 +36.4250 0.2 +36.4300 0.2 +36.4350 0.2 +36.4400 0.2 +36.4450 0.2 +36.4500 0.2 +36.4550 0.2 +36.4600 0.2 +36.4650 0.2 +36.4700 0.2 +36.4750 0.2 +36.4800 0.2 +36.4850 0.2 +36.4900 0.2 +36.4950 0.2 +36.5000 0.2 +36.5050 0.2 +36.5100 0.2 +36.5150 0.2 +36.5200 0.2 +36.5250 0.2 +36.5300 0.2 +36.5350 0.2 +36.5400 0.2 +36.5450 0.2 +36.5500 0.2 +36.5550 0.2 +36.5600 0.2 +36.5650 0.2 +36.5700 0.2 +36.5750 0.2 +36.5800 0.2 +36.5850 0.2 +36.5900 0.2 +36.5950 0.2 +36.6000 0.2 +36.6050 0.2 +36.6100 0.2 +36.6150 0.2 +36.6200 0.2 +36.6250 0.2 +36.6300 0.2 +36.6350 0.2 +36.6400 0.2 +36.6450 0.2 +36.6500 0.2 +36.6550 0.2 +36.6600 0.2 +36.6650 0.2 +36.6700 0.2 +36.6750 0.2 +36.6800 0.2 +36.6850 0.2 +36.6900 0.2 +36.6950 0.2 +36.7000 0.2 +36.7050 0.2 +36.7100 0.2 +36.7150 0.2 +36.7200 0.2 +36.7250 0.2 +36.7300 0.2 +36.7350 0.2 +36.7400 0.2 +36.7450 0.2 +36.7500 0.2 +36.7550 0.2 +36.7600 0.2 +36.7650 0.2 +36.7700 0.2 +36.7750 0.2 +36.7800 0.2 +36.7850 0.2 +36.7900 0.2 +36.7950 0.2 +36.8000 0.2 +36.8050 0.2 +36.8100 0.2 +36.8150 0.2 +36.8200 0.2 +36.8250 0.2 +36.8300 0.2 +36.8350 0.2 +36.8400 0.2 +36.8450 0.2 +36.8500 0.2 +36.8550 0.2 +36.8600 0.2 +36.8650 0.2 +36.8700 0.2 +36.8750 0.2 +36.8800 0.2 +36.8850 0.2 +36.8900 0.2 +36.8950 0.2 +36.9000 0.2 +36.9050 0.2 +36.9100 0.2 +36.9150 0.2 +36.9200 0.2 +36.9250 0.2 +36.9300 0.2 +36.9350 0.2 +36.9400 0.2 +36.9450 0.2 +36.9500 0.2 +36.9550 0.2 +36.9600 0.2 +36.9650 0.2 +36.9700 0.2 +36.9750 0.2 +36.9800 0.2 +36.9850 0.2 +36.9900 0.2 +36.9950 0.2 +37.0000 0.2 +37.0050 0.2 +37.0100 0.2 +37.0150 0.2 +37.0200 0.2 +37.0250 0.2 +37.0300 0.2 +37.0350 0.2 +37.0400 0.2 +37.0450 0.2 +37.0500 0.2 +37.0550 0.2 +37.0600 0.2 +37.0650 0.2 +37.0700 0.2 +37.0750 0.2 +37.0800 0.2 +37.0850 0.2 +37.0900 0.2 +37.0950 0.2 +37.1000 0.2 +37.1050 0.2 +37.1100 0.2 +37.1150 0.2 +37.1200 0.2 +37.1250 0.2 +37.1300 0.2 +37.1350 0.2 +37.1400 0.2 +37.1450 0.2 +37.1500 0.2 +37.1550 0.2 +37.1600 0.2 +37.1650 0.2 +37.1700 0.2 +37.1750 0.2 +37.1800 0.2 +37.1850 0.2 +37.1900 0.2 +37.1950 0.2 +37.2000 0.2 +37.2050 0.2 +37.2100 0.2 +37.2150 0.2 +37.2200 0.2 +37.2250 0.2 +37.2300 0.2 +37.2350 0.2 +37.2400 0.2 +37.2450 0.2 +37.2500 0.2 +37.2550 0.2 +37.2600 0.2 +37.2650 0.2 +37.2700 0.2 +37.2750 0.2 +37.2800 0.2 +37.2850 0.2 +37.2900 0.2 +37.2950 0.2 +37.3000 0.2 +37.3050 0.2 +37.3100 0.2 +37.3150 0.2 +37.3200 0.2 +37.3250 0.2 +37.3300 0.2 +37.3350 0.2 +37.3400 0.2 +37.3450 0.2 +37.3500 0.2 +37.3550 0.2 +37.3600 0.2 +37.3650 0.2 +37.3700 0.2 +37.3750 0.2 +37.3800 0.2 +37.3850 0.2 +37.3900 0.2 +37.3950 0.2 +37.4000 0.2 +37.4050 0.2 +37.4100 0.2 +37.4150 0.2 +37.4200 0.2 +37.4250 0.2 +37.4300 0.2 +37.4350 0.2 +37.4400 0.2 +37.4450 0.2 +37.4500 0.2 +37.4550 0.2 +37.4600 0.2 +37.4650 0.2 +37.4700 0.2 +37.4750 0.2 +37.4800 0.2 +37.4850 0.2 +37.4900 0.2 +37.4950 0.2 +37.5000 0.2 +37.5050 0.2 +37.5100 0.2 +37.5150 0.2 +37.5200 0.2 +37.5250 0.2 +37.5300 0.2 +37.5350 0.2 +37.5400 0.2 +37.5450 0.2 +37.5500 0.2 +37.5550 0.2 +37.5600 0.2 +37.5650 0.2 +37.5700 0.2 +37.5750 0.2 +37.5800 0.2 +37.5850 0.2 +37.5900 0.2 +37.5950 0.2 +37.6000 0.2 +37.6050 0.2 +37.6100 0.2 +37.6150 0.2 +37.6200 0.2 +37.6250 0.2 +37.6300 0.2 +37.6350 0.2 +37.6400 0.2 +37.6450 0.2 +37.6500 0.2 +37.6550 0.2 +37.6600 0.2 +37.6650 0.2 +37.6700 0.2 +37.6750 0.2 +37.6800 0.2 +37.6850 0.2 +37.6900 0.2 +37.6950 0.2 +37.7000 0.2 +37.7050 0.2 +37.7100 0.2 +37.7150 0.2 +37.7200 0.2 +37.7250 0.2 +37.7300 0.2 +37.7350 0.2 +37.7400 0.2 +37.7450 0.2 +37.7500 0.2 +37.7550 0.2 +37.7600 0.2 +37.7650 0.2 +37.7700 0.2 +37.7750 0.2 +37.7800 0.2 +37.7850 0.2 +37.7900 0.2 +37.7950 0.2 +37.8000 0.2 +37.8050 0.2 +37.8100 0.2 +37.8150 0.2 +37.8200 0.2 +37.8250 0.2 +37.8300 0.2 +37.8350 0.2 +37.8400 0.2 +37.8450 0.2 +37.8500 0.2 +37.8550 0.2 +37.8600 0.2 +37.8650 0.2 +37.8700 0.2 +37.8750 0.2 +37.8800 0.2 +37.8850 0.2 +37.8900 0.2 +37.8950 0.2 +37.9000 0.2 +37.9050 0.2 +37.9100 0.2 +37.9150 0.2 +37.9200 0.2 +37.9250 0.2 +37.9300 0.2 +37.9350 0.2 +37.9400 0.2 +37.9450 0.2 +37.9500 0.2 +37.9550 0.2 +37.9600 0.2 +37.9650 0.2 +37.9700 0.2 +37.9750 0.2 +37.9800 0.2 +37.9850 0.2 +37.9900 0.2 +37.9950 0.2 +38.0000 0.2 +38.0050 0.2 +38.0100 0.2 +38.0150 0.2 +38.0200 0.2 +38.0250 0.2 +38.0300 0.2 +38.0350 0.2 +38.0400 0.2 +38.0450 0.2 +38.0500 0.2 +38.0550 0.2 +38.0600 0.2 +38.0650 0.2 +38.0700 0.2 +38.0750 0.2 +38.0800 0.2 +38.0850 0.2 +38.0900 0.2 +38.0950 0.2 +38.1000 0.2 +38.1050 0.2 +38.1100 0.2 +38.1150 0.2 +38.1200 0.2 +38.1250 0.2 +38.1300 0.2 +38.1350 0.2 +38.1400 0.2 +38.1450 0.2 +38.1500 0.2 +38.1550 0.2 +38.1600 0.2 +38.1650 0.2 +38.1700 0.2 +38.1750 0.2 +38.1800 0.2 +38.1850 0.2 +38.1900 0.2 +38.1950 0.2 +38.2000 0.2 +38.2050 0.2 +38.2100 0.2 +38.2150 0.2 +38.2200 0.2 +38.2250 0.2 +38.2300 0.2 +38.2350 0.2 +38.2400 0.2 +38.2450 0.2 +38.2500 0.2 +38.2550 0.2 +38.2600 0.2 +38.2650 0.2 +38.2700 0.2 +38.2750 0.2 +38.2800 0.2 +38.2850 0.2 +38.2900 0.2 +38.2950 0.2 +38.3000 0.2 +38.3050 0.2 +38.3100 0.2 +38.3150 0.2 +38.3200 0.2 +38.3250 0.2 +38.3300 0.2 +38.3350 0.2 +38.3400 0.2 +38.3450 0.2 +38.3500 0.2 +38.3550 0.2 +38.3600 0.2 +38.3650 0.2 +38.3700 0.2 +38.3750 0.2 +38.3800 0.2 +38.3850 0.2 +38.3900 0.2 +38.3950 0.2 +38.4000 0.2 +38.4050 0.2 +38.4100 0.2 +38.4150 0.2 +38.4200 0.2 +38.4250 0.2 +38.4300 0.2 +38.4350 0.2 +38.4400 0.2 +38.4450 0.2 +38.4500 0.2 +38.4550 0.2 +38.4600 0.2 +38.4650 0.2 +38.4700 0.2 +38.4750 0.2 +38.4800 0.2 +38.4850 0.2 +38.4900 0.2 +38.4950 0.2 +38.5000 0.2 +38.5050 0.2 +38.5100 0.2 +38.5150 0.2 +38.5200 0.2 +38.5250 0.2 +38.5300 0.2 +38.5350 0.2 +38.5400 0.2 +38.5450 0.2 +38.5500 0.2 +38.5550 0.2 +38.5600 0.2 +38.5650 0.2 +38.5700 0.2 +38.5750 0.2 +38.5800 0.2 +38.5850 0.2 +38.5900 0.2 +38.5950 0.2 +38.6000 0.2 +38.6050 0.2 +38.6100 0.2 +38.6150 0.2 +38.6200 0.2 +38.6250 0.2 +38.6300 0.2 +38.6350 0.2 +38.6400 0.2 +38.6450 0.2 +38.6500 0.2 +38.6550 0.2 +38.6600 0.2 +38.6650 0.2 +38.6700 0.2 +38.6750 0.2 +38.6800 0.2 +38.6850 0.2 +38.6900 0.2 +38.6950 0.2 +38.7000 0.2 +38.7050 0.2 +38.7100 0.2 +38.7150 0.2 +38.7200 0.2 +38.7250 0.2 +38.7300 0.2 +38.7350 0.2 +38.7400 0.2 +38.7450 0.2 +38.7500 0.2 +38.7550 0.2 +38.7600 0.2 +38.7650 0.2 +38.7700 0.2 +38.7750 0.2 +38.7800 0.2 +38.7850 0.2 +38.7900 0.2 +38.7950 0.2 +38.8000 0.2 +38.8050 0.2 +38.8100 0.2 +38.8150 0.2 +38.8200 0.2 +38.8250 0.2 +38.8300 0.2 +38.8350 0.2 +38.8400 0.2 +38.8450 0.2 +38.8500 0.2 +38.8550 0.2 +38.8600 0.2 +38.8650 0.2 +38.8700 0.2 +38.8750 0.2 +38.8800 0.2 +38.8850 0.2 +38.8900 0.2 +38.8950 0.2 +38.9000 0.2 +38.9050 0.2 +38.9100 0.2 +38.9150 0.2 +38.9200 0.2 +38.9250 0.2 +38.9300 0.2 +38.9350 0.2 +38.9400 0.2 +38.9450 0.2 +38.9500 0.2 +38.9550 0.2 +38.9600 0.2 +38.9650 0.2 +38.9700 0.2 +38.9750 0.2 +38.9800 0.2 +38.9850 0.2 +38.9900 0.2 +38.9950 0.2 +39.0000 0.2 +39.0050 0.2 +39.0100 0.2 +39.0150 0.2 +39.0200 0.2 +39.0250 0.2 +39.0300 0.2 +39.0350 0.2 +39.0400 0.2 +39.0450 0.2 +39.0500 0.2 +39.0550 0.2 +39.0600 0.2 +39.0650 0.2 +39.0700 0.2 +39.0750 0.2 +39.0800 0.2 +39.0850 0.2 +39.0900 0.2 +39.0950 0.2 +39.1000 0.2 +39.1050 0.2 +39.1100 0.2 +39.1150 0.2 +39.1200 0.2 +39.1250 0.2 +39.1300 0.2 +39.1350 0.2 +39.1400 0.2 +39.1450 0.2 +39.1500 0.2 +39.1550 0.2 +39.1600 0.2 +39.1650 0.2 +39.1700 0.2 +39.1750 0.2 +39.1800 0.2 +39.1850 0.2 +39.1900 0.2 +39.1950 0.2 +39.2000 0.2 +39.2050 0.2 +39.2100 0.2 +39.2150 0.2 +39.2200 0.2 +39.2250 0.2 +39.2300 0.2 +39.2350 0.2 +39.2400 0.2 +39.2450 0.2 +39.2500 0.2 +39.2550 0.2 +39.2600 0.2 +39.2650 0.2 +39.2700 0.2 +39.2750 0.2 +39.2800 0.2 +39.2850 0.2 +39.2900 0.2 +39.2950 0.2 +39.3000 0.2 +39.3050 0.2 +39.3100 0.2 +39.3150 0.2 +39.3200 0.2 +39.3250 0.2 +39.3300 0.2 +39.3350 0.2 +39.3400 0.2 +39.3450 0.2 +39.3500 0.2 +39.3550 0.2 +39.3600 0.2 +39.3650 0.2 +39.3700 0.2 +39.3750 0.2 +39.3800 0.2 +39.3850 0.2 +39.3900 0.2 +39.3950 0.2 +39.4000 0.2 +39.4050 0.2 +39.4100 0.2 +39.4150 0.2 +39.4200 0.2 +39.4250 0.2 +39.4300 0.2 +39.4350 0.2 +39.4400 0.2 +39.4450 0.2 +39.4500 0.2 +39.4550 0.2 +39.4600 0.2 +39.4650 0.2 +39.4700 0.2 +39.4750 0.2 +39.4800 0.2 +39.4850 0.2 +39.4900 0.2 +39.4950 0.2 +39.5000 0.2 +39.5050 0.2 +39.5100 0.2 +39.5150 0.2 +39.5200 0.2 +39.5250 0.2 +39.5300 0.2 +39.5350 0.2 +39.5400 0.2 +39.5450 0.2 +39.5500 0.2 +39.5550 0.2 +39.5600 0.2 +39.5650 0.2 +39.5700 0.2 +39.5750 0.2 +39.5800 0.2 +39.5850 0.2 +39.5900 0.2 +39.5950 0.2 +39.6000 0.2 +39.6050 0.2 +39.6100 0.2 +39.6150 0.2 +39.6200 0.2 +39.6250 0.2 +39.6300 0.2 +39.6350 0.2 +39.6400 0.2 +39.6450 0.2 +39.6500 0.2 +39.6550 0.2 +39.6600 0.2 +39.6650 0.2 +39.6700 0.2 +39.6750 0.2 +39.6800 0.2 +39.6850 0.2 +39.6900 0.2 +39.6950 0.2 +39.7000 0.2 +39.7050 0.2 +39.7100 0.2 +39.7150 0.2 +39.7200 0.2 +39.7250 0.2 +39.7300 0.2 +39.7350 0.2 +39.7400 0.2 +39.7450 0.2 +39.7500 0.2 +39.7550 0.2 +39.7600 0.2 +39.7650 0.2 +39.7700 0.2 +39.7750 0.2 +39.7800 0.2 +39.7850 0.2 +39.7900 0.2 +39.7950 0.2 +39.8000 0.2 +39.8050 0.2 +39.8100 0.2 +39.8150 0.2 +39.8200 0.2 +39.8250 0.2 +39.8300 0.2 +39.8350 0.2 +39.8400 0.2 +39.8450 0.2 +39.8500 0.2 +39.8550 0.2 +39.8600 0.2 +39.8650 0.2 +39.8700 0.2 +39.8750 0.2 +39.8800 0.2 +39.8850 0.2 +39.8900 0.2 +39.8950 0.2 +39.9000 0.2 +39.9050 0.2 +39.9100 0.2 +39.9150 0.2 +39.9200 0.2 +39.9250 0.2 +39.9300 0.2 +39.9350 0.2 +39.9400 0.2 +39.9450 0.2 +39.9500 0.2 +39.9550 0.2 +39.9600 0.2 +39.9650 0.2 +39.9700 0.2 +39.9750 0.2 +39.9800 0.2 +39.9850 0.2 +39.9900 0.2 +39.9950 0.2 +40.0000 0.2 +40.0050 0.2 +40.0100 0.2 +40.0150 0.2 +40.0200 0.2 +40.0250 0.2 +40.0300 0.2 +40.0350 0.2 +40.0400 0.2 +40.0450 0.2 +40.0500 0.2 +40.0550 0.2 +40.0600 0.2 +40.0650 0.2 +40.0700 0.2 +40.0750 0.2 +40.0800 0.2 +40.0850 0.2 +40.0900 0.2 +40.0950 0.2 +40.1000 0.2 +40.1050 0.2 +40.1100 0.2 +40.1150 0.2 +40.1200 0.2 +40.1250 0.2 +40.1300 0.2 +40.1350 0.2 +40.1400 0.2 +40.1450 0.2 +40.1500 0.2 +40.1550 0.2 +40.1600 0.2 +40.1650 0.2 +40.1700 0.2 +40.1750 0.2 +40.1800 0.2 +40.1850 0.2 +40.1900 0.2 +40.1950 0.2 +40.2000 0.2 +40.2050 0.2 +40.2100 0.2 +40.2150 0.2 +40.2200 0.2 +40.2250 0.2 +40.2300 0.2 +40.2350 0.2 +40.2400 0.2 +40.2450 0.2 +40.2500 0.2 +40.2550 0.2 +40.2600 0.2 +40.2650 0.2 +40.2700 0.2 +40.2750 0.2 +40.2800 0.2 +40.2850 0.2 +40.2900 0.2 +40.2950 0.2 +40.3000 0.2 +40.3050 0.2 +40.3100 0.2 +40.3150 0.2 +40.3200 0.2 +40.3250 0.2 +40.3300 0.2 +40.3350 0.2 +40.3400 0.2 +40.3450 0.2 +40.3500 0.2 +40.3550 0.2 +40.3600 0.2 +40.3650 0.2 +40.3700 0.2 +40.3750 0.2 +40.3800 0.2 +40.3850 0.2 +40.3900 0.2 +40.3950 0.2 +40.4000 0.2 +40.4050 0.2 +40.4100 0.2 +40.4150 0.2 +40.4200 0.2 +40.4250 0.2 +40.4300 0.2 +40.4350 0.2 +40.4400 0.2 +40.4450 0.2 +40.4500 0.2 +40.4550 0.2 +40.4600 0.2 +40.4650 0.2 +40.4700 0.2 +40.4750 0.2 +40.4800 0.2 +40.4850 0.2 +40.4900 0.2 +40.4950 0.2 +40.5000 0.2 +40.5050 0.2 +40.5100 0.2 +40.5150 0.2 +40.5200 0.2 +40.5250 0.2 +40.5300 0.2 +40.5350 0.2 +40.5400 0.2 +40.5450 0.2 +40.5500 0.2 +40.5550 0.2 +40.5600 0.2 +40.5650 0.2 +40.5700 0.2 +40.5750 0.2 +40.5800 0.2 +40.5850 0.2 +40.5900 0.2 +40.5950 0.2 +40.6000 0.2 +40.6050 0.2 +40.6100 0.2 +40.6150 0.2 +40.6200 0.2 +40.6250 0.2 +40.6300 0.2 +40.6350 0.2 +40.6400 0.2 +40.6450 0.2 +40.6500 0.2 +40.6550 0.2 +40.6600 0.2 +40.6650 0.2 +40.6700 0.2 +40.6750 0.2 +40.6800 0.2 +40.6850 0.2 +40.6900 0.2 +40.6950 0.2 +40.7000 0.2 +40.7050 0.2 +40.7100 0.2 +40.7150 0.2 +40.7200 0.2 +40.7250 0.2 +40.7300 0.2 +40.7350 0.2 +40.7400 0.2 +40.7450 0.2 +40.7500 0.2 +40.7550 0.2 +40.7600 0.2 +40.7650 0.2 +40.7700 0.2 +40.7750 0.2 +40.7800 0.2 +40.7850 0.2 +40.7900 0.2 +40.7950 0.2 +40.8000 0.2 +40.8050 0.2 +40.8100 0.2 +40.8150 0.2 +40.8200 0.2 +40.8250 0.2 +40.8300 0.2 +40.8350 0.2 +40.8400 0.2 +40.8450 0.2 +40.8500 0.2 +40.8550 0.2 +40.8600 0.2 +40.8650 0.2 +40.8700 0.2 +40.8750 0.2 +40.8800 0.2 +40.8850 0.2 +40.8900 0.2 +40.8950 0.2 +40.9000 0.2 +40.9050 0.2 +40.9100 0.2 +40.9150 0.2 +40.9200 0.2 +40.9250 0.2 +40.9300 0.2 +40.9350 0.2 +40.9400 0.2 +40.9450 0.2 +40.9500 0.2 +40.9550 0.2 +40.9600 0.2 +40.9650 0.2 +40.9700 0.2 +40.9750 0.2 +40.9800 0.2 +40.9850 0.2 +40.9900 0.2 +40.9950 0.2 +41.0000 0.2 +41.0050 0.2 +41.0100 0.2 +41.0150 0.2 +41.0200 0.2 +41.0250 0.2 +41.0300 0.2 +41.0350 0.2 +41.0400 0.2 +41.0450 0.2 +41.0500 0.2 +41.0550 0.2 +41.0600 0.2 +41.0650 0.2 +41.0700 0.2 +41.0750 0.2 +41.0800 0.2 +41.0850 0.2 +41.0900 0.2 +41.0950 0.2 +41.1000 0.2 +41.1050 0.2 +41.1100 0.2 +41.1150 0.2 +41.1200 0.2 +41.1250 0.2 +41.1300 0.2 +41.1350 0.2 +41.1400 0.2 +41.1450 0.2 +41.1500 0.2 +41.1550 0.2 +41.1600 0.2 +41.1650 0.2 +41.1700 0.2 +41.1750 0.2 +41.1800 0.2 +41.1850 0.2 +41.1900 0.2 +41.1950 0.2 +41.2000 0.2 +41.2050 0.2 +41.2100 0.2 +41.2150 0.2 +41.2200 0.2 +41.2250 0.2 +41.2300 0.2 +41.2350 0.2 +41.2400 0.2 +41.2450 0.2 +41.2500 0.2 +41.2550 0.2 +41.2600 0.2 +41.2650 0.2 +41.2700 0.2 +41.2750 0.2 +41.2800 0.2 +41.2850 0.2 +41.2900 0.2 +41.2950 0.2 +41.3000 0.2 +41.3050 0.2 +41.3100 0.2 +41.3150 0.2 +41.3200 0.2 +41.3250 0.2 +41.3300 0.2 +41.3350 0.2 +41.3400 0.2 +41.3450 0.2 +41.3500 0.2 +41.3550 0.2 +41.3600 0.2 +41.3650 0.2 +41.3700 0.2 +41.3750 0.2 +41.3800 0.2 +41.3850 0.2 +41.3900 0.2 +41.3950 0.2 +41.4000 0.2 +41.4050 0.2 +41.4100 0.2 +41.4150 0.2 +41.4200 0.2 +41.4250 0.2 +41.4300 0.2 +41.4350 0.2 +41.4400 0.2 +41.4450 0.2 +41.4500 0.2 +41.4550 0.2 +41.4600 0.2 +41.4650 0.2 +41.4700 0.2 +41.4750 0.2 +41.4800 0.2 +41.4850 0.2 +41.4900 0.2 +41.4950 0.2 +41.5000 0.2 +41.5050 0.2 +41.5100 0.2 +41.5150 0.2 +41.5200 0.2 +41.5250 0.2 +41.5300 0.2 +41.5350 0.2 +41.5400 0.2 +41.5450 0.2 +41.5500 0.2 +41.5550 0.2 +41.5600 0.2 +41.5650 0.2 +41.5700 0.2 +41.5750 0.2 +41.5800 0.2 +41.5850 0.2 +41.5900 0.2 +41.5950 0.2 +41.6000 0.2 +41.6050 0.2 +41.6100 0.2 +41.6150 0.2 +41.6200 0.2 +41.6250 0.2 +41.6300 0.2 +41.6350 0.2 +41.6400 0.2 +41.6450 0.2 +41.6500 0.2 +41.6550 0.2 +41.6600 0.2 +41.6650 0.2 +41.6700 0.2 +41.6750 0.2 +41.6800 0.2 +41.6850 0.2 +41.6900 0.2 +41.6950 0.2 +41.7000 0.2 +41.7050 0.2 +41.7100 0.2 +41.7150 0.2 +41.7200 0.2 +41.7250 0.2 +41.7300 0.2 +41.7350 0.2 +41.7400 0.2 +41.7450 0.2 +41.7500 0.2 +41.7550 0.2 +41.7600 0.2 +41.7650 0.2 +41.7700 0.2 +41.7750 0.2 +41.7800 0.2 +41.7850 0.2 +41.7900 0.2 +41.7950 0.2 +41.8000 0.2 +41.8050 0.2 +41.8100 0.2 +41.8150 0.2 +41.8200 0.2 +41.8250 0.2 +41.8300 0.2 +41.8350 0.2 +41.8400 0.2 +41.8450 0.2 +41.8500 0.2 +41.8550 0.2 +41.8600 0.2 +41.8650 0.2 +41.8700 0.2 +41.8750 0.2 +41.8800 0.2 +41.8850 0.2 +41.8900 0.2 +41.8950 0.2 +41.9000 0.2 +41.9050 0.2 +41.9100 0.2 +41.9150 0.2 +41.9200 0.2 +41.9250 0.2 +41.9300 0.2 +41.9350 0.2 +41.9400 0.2 +41.9450 0.2 +41.9500 0.2 +41.9550 0.2 +41.9600 0.2 +41.9650 0.2 +41.9700 0.2 +41.9750 0.2 +41.9800 0.2 +41.9850 0.2 +41.9900 0.2 +41.9950 0.2 +42.0000 0.2 +42.0050 0.2 +42.0100 0.2 +42.0150 0.2 +42.0200 0.2 +42.0250 0.2 +42.0300 0.2 +42.0350 0.2 +42.0400 0.2 +42.0450 0.2 +42.0500 0.2 +42.0550 0.2 +42.0600 0.2 +42.0650 0.2 +42.0700 0.2 +42.0750 0.2 +42.0800 0.2 +42.0850 0.2 +42.0900 0.2 +42.0950 0.2 +42.1000 0.2 +42.1050 0.2 +42.1100 0.2 +42.1150 0.2 +42.1200 0.2 +42.1250 0.2 +42.1300 0.2 +42.1350 0.2 +42.1400 0.2 +42.1450 0.2 +42.1500 0.2 +42.1550 0.2 +42.1600 0.2 +42.1650 0.2 +42.1700 0.2 +42.1750 0.2 +42.1800 0.2 +42.1850 0.2 +42.1900 0.2 +42.1950 0.2 +42.2000 0.2 +42.2050 0.2 +42.2100 0.2 +42.2150 0.2 +42.2200 0.2 +42.2250 0.2 +42.2300 0.2 +42.2350 0.2 +42.2400 0.2 +42.2450 0.2 +42.2500 0.2 +42.2550 0.2 +42.2600 0.2 +42.2650 0.2 +42.2700 0.2 +42.2750 0.2 +42.2800 0.2 +42.2850 0.2 +42.2900 0.2 +42.2950 0.2 +42.3000 0.2 +42.3050 0.2 +42.3100 0.2 +42.3150 0.2 +42.3200 0.2 +42.3250 0.2 +42.3300 0.2 +42.3350 0.2 +42.3400 0.2 +42.3450 0.2 +42.3500 0.2 +42.3550 0.2 +42.3600 0.2 +42.3650 0.2 +42.3700 0.2 +42.3750 0.2 +42.3800 0.2 +42.3850 0.2 +42.3900 0.2 +42.3950 0.2 +42.4000 0.2 +42.4050 0.2 +42.4100 0.2 +42.4150 0.2 +42.4200 0.2 +42.4250 0.2 +42.4300 0.2 +42.4350 0.2 +42.4400 0.2 +42.4450 0.2 +42.4500 0.2 +42.4550 0.2 +42.4600 0.2 +42.4650 0.2 +42.4700 0.2 +42.4750 0.2 +42.4800 0.2 +42.4850 0.2 +42.4900 0.2 +42.4950 0.2 +42.5000 0.2 +42.5050 0.2 +42.5100 0.2 +42.5150 0.2 +42.5200 0.2 +42.5250 0.2 +42.5300 0.2 +42.5350 0.2 +42.5400 0.2 +42.5450 0.2 +42.5500 0.2 +42.5550 0.2 +42.5600 0.2 +42.5650 0.2 +42.5700 0.2 +42.5750 0.2 +42.5800 0.2 +42.5850 0.2 +42.5900 0.2 +42.5950 0.2 +42.6000 0.2 +42.6050 0.2 +42.6100 0.2 +42.6150 0.2 +42.6200 0.2 +42.6250 0.2 +42.6300 0.2 +42.6350 0.2 +42.6400 0.2 +42.6450 0.2 +42.6500 0.2 +42.6550 0.2 +42.6600 0.2 +42.6650 0.2 +42.6700 0.2 +42.6750 0.2 +42.6800 0.2 +42.6850 0.2 +42.6900 0.2 +42.6950 0.2 +42.7000 0.2 +42.7050 0.2 +42.7100 0.2 +42.7150 0.2 +42.7200 0.2 +42.7250 0.2 +42.7300 0.2 +42.7350 0.2 +42.7400 0.2 +42.7450 0.2 +42.7500 0.2 +42.7550 0.2 +42.7600 0.2 +42.7650 0.2 +42.7700 0.2 +42.7750 0.2 +42.7800 0.2 +42.7850 0.2 +42.7900 0.2 +42.7950 0.2 +42.8000 0.2 +42.8050 0.2 +42.8100 0.2 +42.8150 0.2 +42.8200 0.2 +42.8250 0.2 +42.8300 0.2 +42.8350 0.2 +42.8400 0.2 +42.8450 0.2 +42.8500 0.2 +42.8550 0.2 +42.8600 0.2 +42.8650 0.2 +42.8700 0.2 +42.8750 0.2 +42.8800 0.2 +42.8850 0.2 +42.8900 0.2 +42.8950 0.2 +42.9000 0.2 +42.9050 0.2 +42.9100 0.2 +42.9150 0.2 +42.9200 0.2 +42.9250 0.2 +42.9300 0.2 +42.9350 0.2 +42.9400 0.2 +42.9450 0.2 +42.9500 0.2 +42.9550 0.2 +42.9600 0.2 +42.9650 0.2 +42.9700 0.2 +42.9750 0.2 +42.9800 0.2 +42.9850 0.2 +42.9900 0.2 +42.9950 0.2 +43.0000 0.2 +43.0050 0.2 +43.0100 0.2 +43.0150 0.2 +43.0200 0.2 +43.0250 0.2 +43.0300 0.2 +43.0350 0.2 +43.0400 0.2 +43.0450 0.2 +43.0500 0.2 +43.0550 0.2 +43.0600 0.2 +43.0650 0.2 +43.0700 0.2 +43.0750 0.2 +43.0800 0.2 +43.0850 0.2 +43.0900 0.2 +43.0950 0.2 +43.1000 0.2 +43.1050 0.2 +43.1100 0.2 +43.1150 0.2 +43.1200 0.2 +43.1250 0.2 +43.1300 0.2 +43.1350 0.2 +43.1400 0.2 +43.1450 0.2 +43.1500 0.2 +43.1550 0.2 +43.1600 0.2 +43.1650 0.2 +43.1700 0.2 +43.1750 0.2 +43.1800 0.2 +43.1850 0.2 +43.1900 0.2 +43.1950 0.2 +43.2000 0.2 +43.2050 0.2 +43.2100 0.2 +43.2150 0.2 +43.2200 0.2 +43.2250 0.2 +43.2300 0.2 +43.2350 0.2 +43.2400 0.2 +43.2450 0.2 +43.2500 0.2 +43.2550 0.2 +43.2600 0.2 +43.2650 0.2 +43.2700 0.2 +43.2750 0.2 +43.2800 0.2 +43.2850 0.2 +43.2900 0.2 +43.2950 0.2 +43.3000 0.2 +43.3050 0.2 +43.3100 0.2 +43.3150 0.2 +43.3200 0.2 +43.3250 0.2 +43.3300 0.2 +43.3350 0.2 +43.3400 0.2 +43.3450 0.2 +43.3500 0.2 +43.3550 0.2 +43.3600 0.2 +43.3650 0.2 +43.3700 0.2 +43.3750 0.2 +43.3800 0.2 +43.3850 0.2 +43.3900 0.2 +43.3950 0.2 +43.4000 0.2 +43.4050 0.2 +43.4100 0.2 +43.4150 0.2 +43.4200 0.2 +43.4250 0.2 +43.4300 0.2 +43.4350 0.2 +43.4400 0.2 +43.4450 0.2 +43.4500 0.2 +43.4550 0.2 +43.4600 0.2 +43.4650 0.2 +43.4700 0.2 +43.4750 0.2 +43.4800 0.2 +43.4850 0.2 +43.4900 0.2 +43.4950 0.2 +43.5000 0.2 +43.5050 0.2 +43.5100 0.2 +43.5150 0.2 +43.5200 0.2 +43.5250 0.2 +43.5300 0.2 +43.5350 0.2 +43.5400 0.2 +43.5450 0.2 +43.5500 0.2 +43.5550 0.2 +43.5600 0.2 +43.5650 0.2 +43.5700 0.2 +43.5750 0.2 +43.5800 0.2 +43.5850 0.2 +43.5900 0.2 +43.5950 0.2 +43.6000 0.2 +43.6050 0.2 +43.6100 0.2 +43.6150 0.2 +43.6200 0.2 +43.6250 0.2 +43.6300 0.2 +43.6350 0.2 +43.6400 0.2 +43.6450 0.2 +43.6500 0.2 +43.6550 0.2 +43.6600 0.2 +43.6650 0.2 +43.6700 0.2 +43.6750 0.2 +43.6800 0.2 +43.6850 0.2 +43.6900 0.2 +43.6950 0.2 +43.7000 0.2 +43.7050 0.2 +43.7100 0.2 +43.7150 0.2 +43.7200 0.2 +43.7250 0.2 +43.7300 0.2 +43.7350 0.2 +43.7400 0.2 +43.7450 0.2 +43.7500 0.2 +43.7550 0.2 +43.7600 0.2 +43.7650 0.2 +43.7700 0.2 +43.7750 0.2 +43.7800 0.2 +43.7850 0.2 +43.7900 0.2 +43.7950 0.2 +43.8000 0.2 +43.8050 0.2 +43.8100 0.2 +43.8150 0.2 +43.8200 0.2 +43.8250 0.2 +43.8300 0.2 +43.8350 0.2 +43.8400 0.2 +43.8450 0.2 +43.8500 0.2 +43.8550 0.2 +43.8600 0.2 +43.8650 0.2 +43.8700 0.2 +43.8750 0.2 +43.8800 0.2 +43.8850 0.2 +43.8900 0.2 +43.8950 0.2 +43.9000 0.2 +43.9050 0.2 +43.9100 0.2 +43.9150 0.2 +43.9200 0.2 +43.9250 0.2 +43.9300 0.2 +43.9350 0.2 +43.9400 0.2 +43.9450 0.2 +43.9500 0.2 +43.9550 0.2 +43.9600 0.2 +43.9650 0.2 +43.9700 0.2 +43.9750 0.2 +43.9800 0.2 +43.9850 0.2 +43.9900 0.2 +43.9950 0.2 +44.0000 0.2 +44.0050 0.2 +44.0100 0.2 +44.0150 0.2 +44.0200 0.2 +44.0250 0.2 +44.0300 0.2 +44.0350 0.2 +44.0400 0.2 +44.0450 0.2 +44.0500 0.2 +44.0550 0.2 +44.0600 0.2 +44.0650 0.2 +44.0700 0.2 +44.0750 0.2 +44.0800 0.2 +44.0850 0.2 +44.0900 0.2 +44.0950 0.2 +44.1000 0.2 +44.1050 0.2 +44.1100 0.2 +44.1150 0.2 +44.1200 0.2 +44.1250 0.2 +44.1300 0.2 +44.1350 0.2 +44.1400 0.2 +44.1450 0.2 +44.1500 0.2 +44.1550 0.2 +44.1600 0.2 +44.1650 0.2 +44.1700 0.2 +44.1750 0.2 +44.1800 0.2 +44.1850 0.2 +44.1900 0.2 +44.1950 0.2 +44.2000 0.2 +44.2050 0.2 +44.2100 0.2 +44.2150 0.2 +44.2200 0.2 +44.2250 0.2 +44.2300 0.2 +44.2350 0.2 +44.2400 0.2 +44.2450 0.2 +44.2500 0.2 +44.2550 0.2 +44.2600 0.2 +44.2650 0.2 +44.2700 0.2 +44.2750 0.2 +44.2800 0.2 +44.2850 0.2 +44.2900 0.2 +44.2950 0.2 +44.3000 0.2 +44.3050 0.2 +44.3100 0.2 +44.3150 0.2 +44.3200 0.2 +44.3250 0.2 +44.3300 0.2 +44.3350 0.2 +44.3400 0.2 +44.3450 0.2 +44.3500 0.2 +44.3550 0.2 +44.3600 0.2 +44.3650 0.2 +44.3700 0.2 +44.3750 0.2 +44.3800 0.2 +44.3850 0.2 +44.3900 0.2 +44.3950 0.2 +44.4000 0.2 +44.4050 0.2 +44.4100 0.2 +44.4150 0.2 +44.4200 0.2 +44.4250 0.2 +44.4300 0.2 +44.4350 0.2 +44.4400 0.2 +44.4450 0.2 +44.4500 0.2 +44.4550 0.2 +44.4600 0.2 +44.4650 0.2 +44.4700 0.2 +44.4750 0.2 +44.4800 0.2 +44.4850 0.2 +44.4900 0.2 +44.4950 0.2 +44.5000 0.2 +44.5050 0.2 +44.5100 0.2 +44.5150 0.2 +44.5200 0.2 +44.5250 0.2 +44.5300 0.2 +44.5350 0.2 +44.5400 0.2 +44.5450 0.2 +44.5500 0.2 +44.5550 0.2 +44.5600 0.2 +44.5650 0.2 +44.5700 0.2 +44.5750 0.2 +44.5800 0.2 +44.5850 0.2 +44.5900 0.2 +44.5950 0.2 +44.6000 0.2 +44.6050 0.2 +44.6100 0.2 +44.6150 0.2 +44.6200 0.2 +44.6250 0.2 +44.6300 0.2 +44.6350 0.2 +44.6400 0.2 +44.6450 0.2 +44.6500 0.2 +44.6550 0.2 +44.6600 0.2 +44.6650 0.2 +44.6700 0.2 +44.6750 0.2 +44.6800 0.2 +44.6850 0.2 +44.6900 0.2 +44.6950 0.2 +44.7000 0.2 +44.7050 0.2 +44.7100 0.2 +44.7150 0.2 +44.7200 0.2 +44.7250 0.2 +44.7300 0.2 +44.7350 0.2 +44.7400 0.2 +44.7450 0.2 +44.7500 0.2 +44.7550 0.2 +44.7600 0.2 +44.7650 0.2 +44.7700 0.2 +44.7750 0.2 +44.7800 0.2 +44.7850 0.2 +44.7900 0.2 +44.7950 0.2 +44.8000 0.2 +44.8050 0.2 +44.8100 0.2 +44.8150 0.2 +44.8200 0.2 +44.8250 0.2 +44.8300 0.2 +44.8350 0.2 +44.8400 0.2 +44.8450 0.2 +44.8500 0.2 +44.8550 0.2 +44.8600 0.2 +44.8650 0.2 +44.8700 0.2 +44.8750 0.2 +44.8800 0.2 +44.8850 0.2 +44.8900 0.2 +44.8950 0.2 +44.9000 0.2 +44.9050 0.2 +44.9100 0.2 +44.9150 0.2 +44.9200 0.2 +44.9250 0.2 +44.9300 0.2 +44.9350 0.2 +44.9400 0.2 +44.9450 0.2 +44.9500 0.2 +44.9550 0.2 +44.9600 0.2 +44.9650 0.2 +44.9700 0.2 +44.9750 0.2 +44.9800 0.2 +44.9850 0.2 +44.9900 0.2 +44.9950 0.2 +45.0000 0.2 +45.0050 0.2 +45.0100 0.2 +45.0150 0.2 +45.0200 0.2 +45.0250 0.2 +45.0300 0.2 +45.0350 0.2 +45.0400 0.2 +45.0450 0.2 +45.0500 0.2 +45.0550 0.2 +45.0600 0.2 +45.0650 0.2 +45.0700 0.2 +45.0750 0.2 +45.0800 0.2 +45.0850 0.2 +45.0900 0.2 +45.0950 0.2 +45.1000 0.2 +45.1050 0.2 +45.1100 0.2 +45.1150 0.2 +45.1200 0.2 +45.1250 0.2 +45.1300 0.2 +45.1350 0.2 +45.1400 0.2 +45.1450 0.2 +45.1500 0.2 +45.1550 0.2 +45.1600 0.2 +45.1650 0.2 +45.1700 0.2 +45.1750 0.2 +45.1800 0.2 +45.1850 0.2 +45.1900 0.2 +45.1950 0.2 +45.2000 0.2 +45.2050 0.2 +45.2100 0.2 +45.2150 0.2 +45.2200 0.2 +45.2250 0.2 +45.2300 0.2 +45.2350 0.2 +45.2400 0.2 +45.2450 0.2 +45.2500 0.2 +45.2550 0.2 +45.2600 0.2 +45.2650 0.2 +45.2700 0.2 +45.2750 0.2 +45.2800 0.2 +45.2850 0.2 +45.2900 0.2 +45.2950 0.2 +45.3000 0.2 +45.3050 0.2 +45.3100 0.2 +45.3150 0.2 +45.3200 0.2 +45.3250 0.2 +45.3300 0.2 +45.3350 0.2 +45.3400 0.2 +45.3450 0.2 +45.3500 0.2 +45.3550 0.2 +45.3600 0.2 +45.3650 0.2 +45.3700 0.2 +45.3750 0.2 +45.3800 0.2 +45.3850 0.2 +45.3900 0.2 +45.3950 0.2 +45.4000 0.2 +45.4050 0.2 +45.4100 0.2 +45.4150 0.2 +45.4200 0.2 +45.4250 0.2 +45.4300 0.2 +45.4350 0.2 +45.4400 0.2 +45.4450 0.2 +45.4500 0.2 +45.4550 0.2 +45.4600 0.2 +45.4650 0.2 +45.4700 0.2 +45.4750 0.2 +45.4800 0.2 +45.4850 0.2 +45.4900 0.2 +45.4950 0.2 +45.5000 0.2 +45.5050 0.2 +45.5100 0.2 +45.5150 0.2 +45.5200 0.2 +45.5250 0.2 +45.5300 0.2 +45.5350 0.2 +45.5400 0.2 +45.5450 0.2 +45.5500 0.2 +45.5550 0.2 +45.5600 0.2 +45.5650 0.2 +45.5700 0.2 +45.5750 0.2 +45.5800 0.2 +45.5850 0.2 +45.5900 0.2 +45.5950 0.2 +45.6000 0.2 +45.6050 0.2 +45.6100 0.2 +45.6150 0.2 +45.6200 0.2 +45.6250 0.2 +45.6300 0.2 +45.6350 0.2 +45.6400 0.2 +45.6450 0.2 +45.6500 0.2 +45.6550 0.2 +45.6600 0.2 +45.6650 0.2 +45.6700 0.2 +45.6750 0.2 +45.6800 0.2 +45.6850 0.2 +45.6900 0.2 +45.6950 0.2 +45.7000 0.2 +45.7050 0.2 +45.7100 0.2 +45.7150 0.2 +45.7200 0.2 +45.7250 0.2 +45.7300 0.2 +45.7350 0.2 +45.7400 0.2 +45.7450 0.2 +45.7500 0.2 +45.7550 0.2 +45.7600 0.2 +45.7650 0.2 +45.7700 0.2 +45.7750 0.2 +45.7800 0.2 +45.7850 0.2 +45.7900 0.2 +45.7950 0.2 +45.8000 0.2 +45.8050 0.2 +45.8100 0.2 +45.8150 0.2 +45.8200 0.2 +45.8250 0.2 +45.8300 0.2 +45.8350 0.2 +45.8400 0.2 +45.8450 0.2 +45.8500 0.2 +45.8550 0.2 +45.8600 0.2 +45.8650 0.2 +45.8700 0.2 +45.8750 0.2 +45.8800 0.2 +45.8850 0.2 +45.8900 0.2 +45.8950 0.2 +45.9000 0.2 +45.9050 0.2 +45.9100 0.2 +45.9150 0.2 +45.9200 0.2 +45.9250 0.2 +45.9300 0.2 +45.9350 0.2 +45.9400 0.2 +45.9450 0.2 +45.9500 0.2 +45.9550 0.2 +45.9600 0.2 +45.9650 0.2 +45.9700 0.2 +45.9750 0.2 +45.9800 0.2 +45.9850 0.2 +45.9900 0.2 +45.9950 0.2 +46.0000 0.2 +46.0050 0.2 +46.0100 0.2 +46.0150 0.2 +46.0200 0.2 +46.0250 0.2 +46.0300 0.2 +46.0350 0.2 +46.0400 0.2 +46.0450 0.2 +46.0500 0.2 +46.0550 0.2 +46.0600 0.2 +46.0650 0.2 +46.0700 0.2 +46.0750 0.2 +46.0800 0.2 +46.0850 0.2 +46.0900 0.2 +46.0950 0.2 +46.1000 0.2 +46.1050 0.2 +46.1100 0.2 +46.1150 0.2 +46.1200 0.2 +46.1250 0.2 +46.1300 0.2 +46.1350 0.2 +46.1400 0.2 +46.1450 0.2 +46.1500 0.2 +46.1550 0.2 +46.1600 0.2 +46.1650 0.2 +46.1700 0.2 +46.1750 0.2 +46.1800 0.2 diff --git a/resources/flightgear/Aircraft/arducopter/data/arducopter_step.txt b/resources/flightgear/Aircraft/arducopter/data/arducopter_step.txt new file mode 100755 index 0000000000000000000000000000000000000000..534fba26ae342d5a2b4ef555a189e5d3fa51df73 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/data/arducopter_step.txt @@ -0,0 +1,11813 @@ +0.0000 0.2 +0.0050 0.2 +0.0100 0.2 +0.0150 0.2 +0.0200 0.2 +0.0250 0.2 +0.0300 0.2 +0.0350 0.2 +0.0400 0.2 +0.0450 0.2 +0.0500 0.2 +0.0550 0.2 +0.0600 0.2 +0.0650 0.2 +0.0700 0.2 +0.0750 0.2 +0.0800 0.2 +0.0850 0.2 +0.0900 0.2 +0.0950 0.2 +0.1000 0.2 +0.1050 0.2 +0.1100 0.2 +0.1150 0.2 +0.1200 0.2 +0.1250 0.2 +0.1300 0.2 +0.1350 0.2 +0.1400 0.2 +0.1450 0.2 +0.1500 0.2 +0.1550 0.2 +0.1600 0.2 +0.1650 0.2 +0.1700 0.2 +0.1750 0.2 +0.1800 0.2 +0.1850 0.2 +0.1900 0.2 +0.1950 0.2 +0.2000 0.2 +0.2050 0.2 +0.2100 0.2 +0.2150 0.2 +0.2200 0.2 +0.2250 0.2 +0.2300 0.2 +0.2350 0.2 +0.2400 0.2 +0.2450 0.2 +0.2500 0.2 +0.2550 0.2 +0.2600 0.2 +0.2650 0.2 +0.2700 0.2 +0.2750 0.2 +0.2800 0.2 +0.2850 0.2 +0.2900 0.2 +0.2950 0.2 +0.3000 0.2 +0.3050 0.2 +0.3100 0.2 +0.3150 0.2 +0.3200 0.2 +0.3250 0.2 +0.3300 0.2 +0.3350 0.2 +0.3400 0.2 +0.3450 0.2 +0.3500 0.2 +0.3550 0.2 +0.3600 0.2 +0.3650 0.2 +0.3700 0.2 +0.3750 0.2 +0.3800 0.2 +0.3850 0.2 +0.3900 0.2 +0.3950 0.2 +0.4000 0.2 +0.4050 0.2 +0.4100 0.2 +0.4150 0.2 +0.4200 0.2 +0.4250 0.2 +0.4300 0.2 +0.4350 0.2 +0.4400 0.2 +0.4450 0.2 +0.4500 0.2 +0.4550 0.2 +0.4600 0.2 +0.4650 0.2 +0.4700 0.2 +0.4750 0.2 +0.4800 0.2 +0.4850 0.2 +0.4900 0.2 +0.4950 0.2 +0.5000 0.2 +0.5050 0.2 +0.5100 0.2 +0.5150 0.2 +0.5200 0.2 +0.5250 0.2 +0.5300 0.2 +0.5350 0.2 +0.5400 0.2 +0.5450 0.2 +0.5500 0.2 +0.5550 0.2 +0.5600 0.2 +0.5650 0.2 +0.5700 0.2 +0.5750 0.2 +0.5800 0.2 +0.5850 0.2 +0.5900 0.2 +0.5950 0.2 +0.6000 0.2 +0.6050 0.2 +0.6100 0.2 +0.6150 0.2 +0.6200 0.2 +0.6250 0.2 +0.6300 0.2 +0.6350 0.2 +0.6400 0.2 +0.6450 0.2 +0.6500 0.2 +0.6550 0.2 +0.6600 0.2 +0.6650 0.2 +0.6700 0.2 +0.6750 0.2 +0.6800 0.2 +0.6850 0.2 +0.6900 0.2 +0.6950 0.2 +0.7000 0.2 +0.7050 0.2 +0.7100 0.2 +0.7150 0.2 +0.7200 0.2 +0.7250 0.2 +0.7300 0.2 +0.7350 0.2 +0.7400 0.2 +0.7450 0.2 +0.7500 0.2 +0.7550 0.2 +0.7600 0.2 +0.7650 0.2 +0.7700 0.2 +0.7750 0.2 +0.7800 0.2 +0.7850 0.2 +0.7900 0.2 +0.7950 0.2 +0.8000 0.2 +0.8050 0.2 +0.8100 0.2 +0.8150 0.2 +0.8200 0.2 +0.8250 0.2 +0.8300 0.2 +0.8350 0.2 +0.8400 0.2 +0.8450 0.2 +0.8500 0.2 +0.8550 0.2 +0.8600 0.2 +0.8650 0.2 +0.8700 0.2 +0.8750 0.2 +0.8800 0.2 +0.8850 0.2 +0.8900 0.2 +0.8950 0.2 +0.9000 0.2 +0.9050 0.2 +0.9100 0.2 +0.9150 0.2 +0.9200 0.2 +0.9250 0.2 +0.9300 0.2 +0.9350 0.2 +0.9400 0.2 +0.9450 0.2 +0.9500 0.2 +0.9550 0.2 +0.9600 0.2 +0.9650 0.2 +0.9700 0.2 +0.9750 0.2 +0.9800 0.2 +0.9850 0.2 +0.9900 0.2 +0.9950 0.2 +1.0000 0.2 +1.0050 0.2 +1.0100 0.2 +1.0150 0.2 +1.0200 0.2 +1.0250 0.2 +1.0300 0.2 +1.0350 0.2 +1.0400 0.2 +1.0450 0.2 +1.0500 0.2 +1.0550 0.2 +1.0600 0.2 +1.0650 0.2 +1.0700 0.2 +1.0750 0.2 +1.0800 0.2 +1.0850 0.2 +1.0900 0.2 +1.0950 0.2 +1.1000 0.2 +1.1050 0.2 +1.1100 0.2 +1.1150 0.2 +1.1200 0.2 +1.1250 0.2 +1.1300 0.2 +1.1350 0.2 +1.1400 0.2 +1.1450 0.2 +1.1500 0.2 +1.1550 0.2 +1.1600 0.2 +1.1650 0.2 +1.1700 0.2 +1.1750 0.2 +1.1800 0.2 +1.1850 0.2 +1.1900 0.2 +1.1950 0.2 +1.2000 0.2 +1.2050 0.2 +1.2100 0.2 +1.2150 0.2 +1.2200 0.2 +1.2250 0.2 +1.2300 0.2 +1.2350 0.2 +1.2400 0.2 +1.2450 0.2 +1.2500 0.2 +1.2550 0.2 +1.2600 0.2 +1.2650 0.2 +1.2700 0.2 +1.2750 0.2 +1.2800 0.2 +1.2850 0.2 +1.2900 0.2 +1.2950 0.2 +1.3000 0.2 +1.3050 0.2 +1.3100 0.2 +1.3150 0.2 +1.3200 0.2 +1.3250 0.2 +1.3300 0.2 +1.3350 0.2 +1.3400 0.2 +1.3450 0.2 +1.3500 0.2 +1.3550 0.2 +1.3600 0.2 +1.3650 0.2 +1.3700 0.2 +1.3750 0.2 +1.3800 0.2 +1.3850 0.2 +1.3900 0.2 +1.3950 0.2 +1.4000 0.2 +1.4050 0.2 +1.4100 0.2 +1.4150 0.2 +1.4200 0.2 +1.4250 0.2 +1.4300 0.2 +1.4350 0.2 +1.4400 0.2 +1.4450 0.2 +1.4500 0.2 +1.4550 0.2 +1.4600 0.2 +1.4650 0.2 +1.4700 0.2 +1.4750 0.2 +1.4800 0.2 +1.4850 0.2 +1.4900 0.2 +1.4950 0.2 +1.5000 0.2 +1.5050 0.2 +1.5100 0.2 +1.5150 0.2 +1.5200 0.2 +1.5250 0.2 +1.5300 0.2 +1.5350 0.2 +1.5400 0.2 +1.5450 0.2 +1.5500 0.2 +1.5550 0.2 +1.5600 0.2 +1.5650 0.2 +1.5700 0.2 +1.5750 0.2 +1.5800 0.2 +1.5850 0.2 +1.5900 0.2 +1.5950 0.2 +1.6000 0.2 +1.6050 0.2 +1.6100 0.2 +1.6150 0.2 +1.6200 0.2 +1.6250 0.2 +1.6300 0.2 +1.6350 0.2 +1.6400 0.2 +1.6450 0.2 +1.6500 0.2 +1.6550 0.2 +1.6600 0.2 +1.6650 0.2 +1.6700 0.2 +1.6750 0.2 +1.6800 0.2 +1.6850 0.2 +1.6900 0.2 +1.6950 0.2 +1.7000 0.2 +1.7050 0.2 +1.7100 0.2 +1.7150 0.2 +1.7200 0.2 +1.7250 0.2 +1.7300 0.2 +1.7350 0.2 +1.7400 0.2 +1.7450 0.2 +1.7500 0.2 +1.7550 0.2 +1.7600 0.2 +1.7650 0.2 +1.7700 0.2 +1.7750 0.2 +1.7800 0.2 +1.7850 0.2 +1.7900 0.2 +1.7950 0.2 +1.8000 0.2 +1.8050 0.2 +1.8100 0.2 +1.8150 0.2 +1.8200 0.2 +1.8250 0.2 +1.8300 0.2 +1.8350 0.2 +1.8400 0.2 +1.8450 0.2 +1.8500 0.2 +1.8550 0.2 +1.8600 0.2 +1.8650 0.2 +1.8700 0.2 +1.8750 0.2 +1.8800 0.2 +1.8850 0.2 +1.8900 0.2 +1.8950 0.2 +1.9000 0.2 +1.9050 0.2 +1.9100 0.2 +1.9150 0.2 +1.9200 0.2 +1.9250 0.2 +1.9300 0.2 +1.9350 0.2 +1.9400 0.2 +1.9450 0.2 +1.9500 0.2 +1.9550 0.2 +1.9600 0.2 +1.9650 0.2 +1.9700 0.2 +1.9750 0.2 +1.9800 0.2 +1.9850 0.2 +1.9900 0.2 +1.9950 0.2 +2.0000 0.2 +2.0050 0.2 +2.0100 0.2 +2.0150 0.2 +2.0200 0.2 +2.0250 0.2 +2.0300 0.2 +2.0350 0.2 +2.0400 0.2 +2.0450 0.2 +2.0500 0.2 +2.0550 0.2 +2.0600 0.2 +2.0650 0.2 +2.0700 0.2 +2.0750 0.2 +2.0800 0.2 +2.0850 0.2 +2.0900 0.2 +2.0950 0.2 +2.1000 0.2 +2.1050 0.2 +2.1100 0.2 +2.1150 0.2 +2.1200 0.2 +2.1250 0.2 +2.1300 0.2 +2.1350 0.2 +2.1400 0.2 +2.1450 0.2 +2.1500 0.2 +2.1550 0.2 +2.1600 0.2 +2.1650 0.2 +2.1700 0.2 +2.1750 0.2 +2.1800 0.2 +2.1850 0.2 +2.1900 0.2 +2.1950 0.2 +2.2000 0.2 +2.2050 0.2 +2.2100 0.2 +2.2150 0.2 +2.2200 0.2 +2.2250 0.2 +2.2300 0.2 +2.2350 0.2 +2.2400 0.2 +2.2450 0.2 +2.2500 0.2 +2.2550 0.2 +2.2600 0.2 +2.2650 0.2 +2.2700 0.2 +2.2750 0.2 +2.2800 0.2 +2.2850 0.2 +2.2900 0.2 +2.2950 0.2 +2.3000 0.2 +2.3050 0.2 +2.3100 0.2 +2.3150 0.2 +2.3200 0.2 +2.3250 0.2 +2.3300 0.2 +2.3350 0.2 +2.3400 0.2 +2.3450 0.2 +2.3500 0.2 +2.3550 0.2 +2.3600 0.2 +2.3650 0.2 +2.3700 0.2 +2.3750 0.2 +2.3800 0.2 +2.3850 0.2 +2.3900 0.2 +2.3950 0.2 +2.4000 0.2 +2.4050 0.2 +2.4100 0.2 +2.4150 0.2 +2.4200 0.2 +2.4250 0.2 +2.4300 0.2 +2.4350 0.2 +2.4400 0.2 +2.4450 0.2 +2.4500 0.2 +2.4550 0.2 +2.4600 0.2 +2.4650 0.2 +2.4700 0.2 +2.4750 0.2 +2.4800 0.2 +2.4850 0.2 +2.4900 0.2 +2.4950 0.2 +2.5000 0.2 +2.5050 0.2 +2.5100 0.2 +2.5150 0.2 +2.5200 0.2 +2.5250 0.2 +2.5300 0.2 +2.5350 0.2 +2.5400 0.2 +2.5450 0.2 +2.5500 0.2 +2.5550 0.2 +2.5600 0.2 +2.5650 0.2 +2.5700 0.2 +2.5750 0.2 +2.5800 0.2 +2.5850 0.2 +2.5900 0.2 +2.5950 0.2 +2.6000 0.2 +2.6050 0.2 +2.6100 0.2 +2.6150 0.2 +2.6200 0.2 +2.6250 0.2 +2.6300 0.2 +2.6350 0.2 +2.6400 0.2 +2.6450 0.2 +2.6500 0.2 +2.6550 0.2 +2.6600 0.2 +2.6650 0.2 +2.6700 0.2 +2.6750 0.2 +2.6800 0.2 +2.6850 0.2 +2.6900 0.2 +2.6950 0.2 +2.7000 0.2 +2.7050 0.2 +2.7100 0.2 +2.7150 0.2 +2.7200 0.2 +2.7250 0.2 +2.7300 0.2 +2.7350 0.2 +2.7400 0.2 +2.7450 0.2 +2.7500 0.2 +2.7550 0.2 +2.7600 0.2 +2.7650 0.2 +2.7700 0.2 +2.7750 0.2 +2.7800 0.2 +2.7850 0.2 +2.7900 0.2 +2.7950 0.2 +2.8000 0.2 +2.8050 0.2 +2.8100 0.2 +2.8150 0.2 +2.8200 0.2 +2.8250 0.2 +2.8300 0.2 +2.8350 0.2 +2.8400 0.2 +2.8450 0.2 +2.8500 0.2 +2.8550 0.2 +2.8600 0.2 +2.8650 0.2 +2.8700 0.2 +2.8750 0.2 +2.8800 0.2 +2.8850 0.2 +2.8900 0.2 +2.8950 0.2 +2.9000 0.2 +2.9050 0.2 +2.9100 0.2 +2.9150 0.2 +2.9200 0.2 +2.9250 0.2 +2.9300 0.2 +2.9350 0.2 +2.9400 0.2 +2.9450 0.2 +2.9500 0.2 +2.9550 0.2 +2.9600 0.2 +2.9650 0.2 +2.9700 0.2 +2.9750 0.3 +2.9800 0.7 +2.9850 0.9 +2.9900 1.1 +2.9950 1.1 +3.0000 0.9 +3.0050 0.8 +3.0100 0.7 +3.0150 0.7 +3.0200 0.7 +3.0250 0.7 +3.0300 0.6 +3.0350 0.6 +3.0400 0.6 +3.0450 0.7 +3.0500 0.8 +3.0550 1.0 +3.0600 1.4 +3.0650 1.7 +3.0700 1.8 +3.0750 1.8 +3.0800 1.9 +3.0850 1.9 +3.0900 1.7 +3.0950 1.7 +3.1000 1.9 +3.1050 1.9 +3.1100 1.9 +3.1150 2.1 +3.1200 2.1 +3.1250 2.1 +3.1300 2.3 +3.1350 2.4 +3.1400 2.7 +3.1450 2.9 +3.1500 3.1 +3.1550 3.3 +3.1600 3.3 +3.1650 3.4 +3.1700 3.5 +3.1750 3.5 +3.1800 3.5 +3.1850 3.6 +3.1900 3.7 +3.1950 3.7 +3.2000 3.9 +3.2050 4.1 +3.2100 4.2 +3.2150 4.3 +3.2200 4.5 +3.2250 4.7 +3.2300 4.7 +3.2350 4.9 +3.2400 4.9 +3.2450 4.9 +3.2500 4.8 +3.2550 4.8 +3.2600 4.7 +3.2650 4.8 +3.2700 4.7 +3.2750 4.7 +3.2800 4.8 +3.2850 4.9 +3.2900 4.8 +3.2950 5.0 +3.3000 5.0 +3.3050 5.1 +3.3100 5.1 +3.3150 5.2 +3.3200 5.1 +3.3250 5.2 +3.3300 5.1 +3.3350 5.1 +3.3400 5.0 +3.3450 5.0 +3.3500 5.0 +3.3550 4.9 +3.3600 5.0 +3.3650 5.0 +3.3700 5.1 +3.3750 5.1 +3.3800 5.2 +3.3850 5.1 +3.3900 5.2 +3.3950 5.1 +3.4000 5.2 +3.4050 5.1 +3.4100 5.1 +3.4150 5.0 +3.4200 5.1 +3.4250 5.0 +3.4300 5.0 +3.4350 5.0 +3.4400 5.1 +3.4450 5.1 +3.4500 5.1 +3.4550 5.1 +3.4600 5.2 +3.4650 5.1 +3.4700 5.2 +3.4750 5.1 +3.4800 5.1 +3.4850 5.1 +3.4900 5.1 +3.4950 5.1 +3.5000 5.0 +3.5050 5.0 +3.5100 5.0 +3.5150 5.0 +3.5200 5.1 +3.5250 5.1 +3.5300 5.1 +3.5350 5.2 +3.5400 5.1 +3.5450 5.2 +3.5500 5.1 +3.5550 5.1 +3.5600 5.1 +3.5650 5.1 +3.5700 5.1 +3.5750 5.1 +3.5800 5.0 +3.5850 5.1 +3.5900 5.0 +3.5950 5.1 +3.6000 5.1 +3.6050 5.1 +3.6100 5.1 +3.6150 5.2 +3.6200 5.1 +3.6250 5.2 +3.6300 5.1 +3.6350 5.1 +3.6400 5.1 +3.6450 5.1 +3.6500 5.0 +3.6550 5.0 +3.6600 5.0 +3.6650 5.0 +3.6700 5.0 +3.6750 5.0 +3.6800 5.1 +3.6850 5.1 +3.6900 5.1 +3.6950 5.1 +3.7000 5.1 +3.7050 5.1 +3.7100 5.1 +3.7150 5.0 +3.7200 5.1 +3.7250 5.0 +3.7300 5.1 +3.7350 5.0 +3.7400 5.0 +3.7450 5.0 +3.7500 5.1 +3.7550 5.0 +3.7600 5.1 +3.7650 5.1 +3.7700 5.1 +3.7750 5.1 +3.7800 5.1 +3.7850 5.1 +3.7900 5.1 +3.7950 5.1 +3.8000 5.1 +3.8050 5.1 +3.8100 5.1 +3.8150 5.1 +3.8200 5.1 +3.8250 5.1 +3.8300 5.1 +3.8350 5.1 +3.8400 5.1 +3.8450 5.1 +3.8500 5.1 +3.8550 5.1 +3.8600 5.0 +3.8650 5.1 +3.8700 5.0 +3.8750 5.1 +3.8800 5.0 +3.8850 5.1 +3.8900 5.0 +3.8950 5.1 +3.9000 5.0 +3.9050 5.1 +3.9100 5.0 +3.9150 5.1 +3.9200 5.1 +3.9250 5.1 +3.9300 5.1 +3.9350 5.1 +3.9400 5.0 +3.9450 5.1 +3.9500 5.0 +3.9550 5.0 +3.9600 5.0 +3.9650 5.0 +3.9700 5.0 +3.9750 5.0 +3.9800 5.1 +3.9850 5.1 +3.9900 5.1 +3.9950 5.1 +4.0000 5.1 +4.0050 5.1 +4.0100 5.1 +4.0150 5.1 +4.0200 5.1 +4.0250 5.0 +4.0300 5.1 +4.0350 5.0 +4.0400 5.1 +4.0450 5.0 +4.0500 5.1 +4.0550 5.0 +4.0600 5.1 +4.0650 5.0 +4.0700 5.1 +4.0750 5.1 +4.0800 5.1 +4.0850 5.1 +4.0900 5.1 +4.0950 5.0 +4.1000 5.1 +4.1050 5.0 +4.1100 5.0 +4.1150 5.0 +4.1200 5.0 +4.1250 5.0 +4.1300 5.0 +4.1350 5.0 +4.1400 5.0 +4.1450 5.1 +4.1500 5.1 +4.1550 5.1 +4.1600 5.1 +4.1650 5.1 +4.1700 5.1 +4.1750 5.1 +4.1800 5.0 +4.1850 5.1 +4.1900 5.0 +4.1950 5.1 +4.2000 5.0 +4.2050 5.1 +4.2100 5.0 +4.2150 5.1 +4.2200 5.0 +4.2250 5.1 +4.2300 5.1 +4.2350 5.1 +4.2400 5.0 +4.2450 5.1 +4.2500 5.0 +4.2550 5.1 +4.2600 5.0 +4.2650 5.0 +4.2700 5.0 +4.2750 5.0 +4.2800 5.0 +4.2850 5.0 +4.2900 5.1 +4.2950 5.0 +4.3000 5.1 +4.3050 5.0 +4.3100 5.1 +4.3150 5.1 +4.3200 5.1 +4.3250 5.0 +4.3300 5.1 +4.3350 5.0 +4.3400 5.0 +4.3450 5.0 +4.3500 5.1 +4.3550 5.0 +4.3600 5.1 +4.3650 5.0 +4.3700 5.1 +4.3750 5.0 +4.3800 5.1 +4.3850 5.1 +4.3900 5.1 +4.3950 5.0 +4.4000 5.1 +4.4050 5.0 +4.4100 5.1 +4.4150 5.0 +4.4200 5.0 +4.4250 5.0 +4.4300 5.0 +4.4350 5.0 +4.4400 5.0 +4.4450 5.1 +4.4500 5.0 +4.4550 5.0 +4.4600 5.0 +4.4650 5.1 +4.4700 5.0 +4.4750 5.1 +4.4800 5.0 +4.4850 5.1 +4.4900 5.0 +4.4950 5.1 +4.5000 5.0 +4.5050 5.1 +4.5100 5.0 +4.5150 5.1 +4.5200 5.0 +4.5250 5.1 +4.5300 5.0 +4.5350 5.1 +4.5400 5.0 +4.5450 5.1 +4.5500 5.0 +4.5550 5.1 +4.5600 5.0 +4.5650 5.0 +4.5700 5.0 +4.5750 5.0 +4.5800 5.0 +4.5850 5.0 +4.5900 5.0 +4.5950 5.0 +4.6000 5.0 +4.6050 5.0 +4.6100 5.1 +4.6150 5.0 +4.6200 5.1 +4.6250 5.0 +4.6300 5.1 +4.6350 5.0 +4.6400 5.0 +4.6450 5.0 +4.6500 5.0 +4.6550 4.9 +4.6600 5.0 +4.6650 4.9 +4.6700 5.0 +4.6750 5.0 +4.6800 5.1 +4.6850 5.0 +4.6900 5.1 +4.6950 5.0 +4.7000 5.1 +4.7050 5.0 +4.7100 5.1 +4.7150 5.0 +4.7200 5.0 +4.7250 5.0 +4.7300 5.0 +4.7350 5.0 +4.7400 5.0 +4.7450 5.0 +4.7500 5.0 +4.7550 5.0 +4.7600 5.0 +4.7650 5.1 +4.7700 5.0 +4.7750 5.1 +4.7800 5.0 +4.7850 5.1 +4.7900 5.0 +4.7950 5.0 +4.8000 5.0 +4.8050 5.1 +4.8100 5.0 +4.8150 5.1 +4.8200 5.0 +4.8250 5.1 +4.8300 5.0 +4.8350 5.1 +4.8400 5.0 +4.8450 5.1 +4.8500 5.0 +4.8550 5.1 +4.8600 5.0 +4.8650 5.0 +4.8700 5.0 +4.8750 5.0 +4.8800 5.0 +4.8850 5.0 +4.8900 5.0 +4.8950 5.0 +4.9000 5.0 +4.9050 5.0 +4.9100 5.1 +4.9150 5.0 +4.9200 5.1 +4.9250 5.0 +4.9300 5.0 +4.9350 5.0 +4.9400 5.0 +4.9450 5.0 +4.9500 5.0 +4.9550 5.0 +4.9600 5.1 +4.9650 5.0 +4.9700 5.1 +4.9750 5.0 +4.9800 5.1 +4.9850 5.0 +4.9900 5.1 +4.9950 5.0 +5.0000 5.1 +5.0050 5.0 +5.0100 5.1 +5.0150 5.0 +5.0200 5.0 +5.0250 5.0 +5.0300 5.0 +5.0350 5.0 +5.0400 5.0 +5.0450 5.0 +5.0500 5.0 +5.0550 5.0 +5.0600 5.0 +5.0650 5.0 +5.0700 5.0 +5.0750 5.0 +5.0800 5.0 +5.0850 5.1 +5.0900 5.0 +5.0950 5.1 +5.1000 5.0 +5.1050 5.0 +5.1100 5.0 +5.1150 5.0 +5.1200 5.0 +5.1250 5.1 +5.1300 5.0 +5.1350 5.1 +5.1400 5.0 +5.1450 5.1 +5.1500 5.0 +5.1550 5.0 +5.1600 5.0 +5.1650 5.1 +5.1700 5.0 +5.1750 5.0 +5.1800 5.0 +5.1850 5.0 +5.1900 5.0 +5.1950 5.0 +5.2000 5.0 +5.2050 5.0 +5.2100 5.0 +5.2150 5.0 +5.2200 5.0 +5.2250 5.0 +5.2300 5.0 +5.2350 5.0 +5.2400 5.0 +5.2450 5.0 +5.2500 5.0 +5.2550 5.0 +5.2600 5.0 +5.2650 4.9 +5.2700 5.0 +5.2750 5.0 +5.2800 5.0 +5.2850 5.0 +5.2900 5.0 +5.2950 5.0 +5.3000 5.0 +5.3050 5.0 +5.3100 5.1 +5.3150 5.0 +5.3200 5.1 +5.3250 5.0 +5.3300 5.1 +5.3350 5.0 +5.3400 5.0 +5.3450 5.0 +5.3500 5.0 +5.3550 5.0 +5.3600 5.0 +5.3650 5.0 +5.3700 5.0 +5.3750 5.0 +5.3800 5.0 +5.3850 5.0 +5.3900 5.0 +5.3950 5.0 +5.4000 5.0 +5.4050 5.0 +5.4100 5.0 +5.4150 5.0 +5.4200 4.9 +5.4250 5.0 +5.4300 5.0 +5.4350 5.0 +5.4400 4.9 +5.4450 5.0 +5.4500 5.0 +5.4550 5.1 +5.4600 5.0 +5.4650 5.1 +5.4700 5.0 +5.4750 5.1 +5.4800 5.0 +5.4850 5.0 +5.4900 4.9 +5.4950 5.0 +5.5000 5.0 +5.5050 5.0 +5.5100 5.0 +5.5150 5.0 +5.5200 5.0 +5.5250 5.0 +5.5300 5.0 +5.5350 5.0 +5.5400 5.0 +5.5450 5.0 +5.5500 5.0 +5.5550 5.0 +5.5600 5.0 +5.5650 5.0 +5.5700 5.0 +5.5750 5.0 +5.5800 5.0 +5.5850 5.0 +5.5900 5.0 +5.5950 5.0 +5.6000 5.0 +5.6050 4.9 +5.6100 5.1 +5.6150 5.0 +5.6200 5.1 +5.6250 5.0 +5.6300 5.0 +5.6350 5.0 +5.6400 5.1 +5.6450 5.0 +5.6500 5.0 +5.6550 5.0 +5.6600 5.0 +5.6650 5.0 +5.6700 5.0 +5.6750 5.0 +5.6800 5.0 +5.6850 5.0 +5.6900 5.0 +5.6950 5.0 +5.7000 5.0 +5.7050 5.0 +5.7100 5.0 +5.7150 5.0 +5.7200 5.0 +5.7250 5.0 +5.7300 5.0 +5.7350 5.0 +5.7400 5.0 +5.7450 5.0 +5.7500 5.0 +5.7550 5.0 +5.7600 5.0 +5.7650 5.0 +5.7700 4.9 +5.7750 5.0 +5.7800 5.0 +5.7850 5.0 +5.7900 4.9 +5.7950 5.0 +5.8000 4.9 +5.8050 5.0 +5.8100 4.9 +5.8150 5.0 +5.8200 4.9 +5.8250 5.0 +5.8300 5.0 +5.8350 5.0 +5.8400 5.0 +5.8450 5.1 +5.8500 5.0 +5.8550 5.0 +5.8600 5.0 +5.8650 5.0 +5.8700 5.0 +5.8750 5.0 +5.8800 5.0 +5.8850 5.0 +5.8900 5.0 +5.8950 4.9 +5.9000 5.0 +5.9050 5.0 +5.9100 5.0 +5.9150 5.0 +5.9200 5.0 +5.9250 5.0 +5.9300 5.0 +5.9350 4.9 +5.9400 5.0 +5.9450 4.9 +5.9500 5.0 +5.9550 4.9 +5.9600 5.0 +5.9650 4.9 +5.9700 5.0 +5.9750 4.9 +5.9800 5.0 +5.9850 4.9 +5.9900 5.0 +5.9950 5.0 +6.0000 5.1 +6.0050 5.0 +6.0100 5.0 +6.0150 5.0 +6.0200 5.0 +6.0250 5.0 +6.0300 5.0 +6.0350 5.0 +6.0400 5.0 +6.0450 5.0 +6.0500 5.0 +6.0550 5.0 +6.0600 5.0 +6.0650 5.0 +6.0700 5.0 +6.0750 5.0 +6.0800 5.0 +6.0850 5.1 +6.0900 5.0 +6.0950 5.0 +6.1000 4.9 +6.1050 5.0 +6.1100 4.9 +6.1150 5.0 +6.1200 4.9 +6.1250 5.0 +6.1300 4.9 +6.1350 5.0 +6.1400 4.9 +6.1450 5.0 +6.1500 5.0 +6.1550 5.1 +6.1600 5.0 +6.1650 5.1 +6.1700 5.0 +6.1750 5.1 +6.1800 5.0 +6.1850 5.0 +6.1900 4.9 +6.1950 5.0 +6.2000 4.9 +6.2050 4.9 +6.2100 4.9 +6.2150 4.9 +6.2200 4.9 +6.2250 4.9 +6.2300 5.0 +6.2350 5.0 +6.2400 5.0 +6.2450 5.0 +6.2500 5.0 +6.2550 5.0 +6.2600 5.0 +6.2650 4.9 +6.2700 5.0 +6.2750 4.9 +6.2800 4.9 +6.2850 4.9 +6.2900 5.0 +6.2950 4.9 +6.3000 5.0 +6.3050 5.0 +6.3100 5.1 +6.3150 5.0 +6.3200 5.1 +6.3250 5.0 +6.3300 5.0 +6.3350 5.0 +6.3400 5.0 +6.3450 4.9 +6.3500 5.0 +6.3550 4.9 +6.3600 5.0 +6.3650 4.9 +6.3700 5.0 +6.3750 4.9 +6.3800 5.0 +6.3850 5.0 +6.3900 5.0 +6.3950 5.0 +6.4000 5.0 +6.4050 5.0 +6.4100 5.0 +6.4150 5.0 +6.4200 5.0 +6.4250 5.0 +6.4300 4.9 +6.4350 5.0 +6.4400 4.9 +6.4450 5.0 +6.4500 4.9 +6.4550 5.0 +6.4600 4.9 +6.4650 5.0 +6.4700 5.0 +6.4750 5.0 +6.4800 5.0 +6.4850 5.0 +6.4900 4.9 +6.4950 5.0 +6.5000 4.9 +6.5050 5.0 +6.5100 4.9 +6.5150 5.0 +6.5200 4.9 +6.5250 5.0 +6.5300 4.9 +6.5350 5.0 +6.5400 5.0 +6.5450 5.0 +6.5500 4.9 +6.5550 5.0 +6.5600 5.0 +6.5650 5.0 +6.5700 5.0 +6.5750 5.0 +6.5800 4.9 +6.5850 5.0 +6.5900 4.9 +6.5950 4.9 +6.6000 5.0 +6.6050 5.0 +6.6100 5.0 +6.6150 5.0 +6.6200 5.0 +6.6250 5.0 +6.6300 5.0 +6.6350 5.0 +6.6400 5.0 +6.6450 5.0 +6.6500 5.0 +6.6550 4.9 +6.6600 5.0 +6.6650 4.9 +6.6700 5.0 +6.6750 4.9 +6.6800 5.0 +6.6850 5.0 +6.6900 5.0 +6.6950 5.0 +6.7000 5.0 +6.7050 4.9 +6.7100 5.0 +6.7150 4.9 +6.7200 5.0 +6.7250 4.9 +6.7300 5.0 +6.7350 4.9 +6.7400 5.0 +6.7450 4.9 +6.7500 5.0 +6.7550 4.9 +6.7600 5.0 +6.7650 5.0 +6.7700 5.0 +6.7750 5.0 +6.7800 5.0 +6.7850 5.0 +6.7900 5.0 +6.7950 5.0 +6.8000 5.0 +6.8050 5.0 +6.8100 5.0 +6.8150 5.0 +6.8200 4.9 +6.8250 5.0 +6.8300 4.9 +6.8350 5.0 +6.8400 5.0 +6.8450 5.0 +6.8500 4.9 +6.8550 5.0 +6.8600 4.9 +6.8650 5.0 +6.8700 4.9 +6.8750 5.0 +6.8800 4.9 +6.8850 5.0 +6.8900 4.9 +6.8950 5.0 +6.9000 4.9 +6.9050 5.0 +6.9100 4.9 +6.9150 5.0 +6.9200 5.0 +6.9250 5.0 +6.9300 5.0 +6.9350 5.0 +6.9400 5.0 +6.9450 5.0 +6.9500 5.0 +6.9550 5.0 +6.9600 4.9 +6.9650 5.0 +6.9700 4.9 +6.9750 4.9 +6.9800 4.9 +6.9850 5.0 +6.9900 5.0 +6.9950 5.0 +7.0000 5.0 +7.0050 5.0 +7.0100 5.0 +7.0150 5.0 +7.0200 5.0 +7.0250 5.0 +7.0300 5.0 +7.0350 5.0 +7.0400 5.0 +7.0450 4.9 +7.0500 5.0 +7.0550 4.9 +7.0600 5.0 +7.0650 4.9 +7.0700 5.0 +7.0750 4.9 +7.0800 5.0 +7.0850 4.9 +7.0900 5.0 +7.0950 4.9 +7.1000 5.0 +7.1050 4.9 +7.1100 5.0 +7.1150 4.9 +7.1200 5.0 +7.1250 4.9 +7.1300 5.0 +7.1350 4.9 +7.1400 5.0 +7.1450 4.9 +7.1500 5.0 +7.1550 5.0 +7.1600 5.0 +7.1650 4.9 +7.1700 5.0 +7.1750 5.0 +7.1800 5.0 +7.1850 5.0 +7.1900 5.0 +7.1950 5.0 +7.2000 5.0 +7.2050 5.0 +7.2100 4.9 +7.2150 5.0 +7.2200 5.0 +7.2250 5.0 +7.2300 4.9 +7.2350 5.0 +7.2400 4.9 +7.2450 5.0 +7.2500 4.9 +7.2550 5.0 +7.2600 4.9 +7.2650 5.0 +7.2700 4.9 +7.2750 5.0 +7.2800 4.9 +7.2850 5.0 +7.2900 4.9 +7.2950 5.0 +7.3000 4.9 +7.3050 5.0 +7.3100 4.9 +7.3150 5.0 +7.3200 4.9 +7.3250 5.0 +7.3300 4.9 +7.3350 5.0 +7.3400 4.9 +7.3450 5.0 +7.3500 4.9 +7.3550 5.0 +7.3600 4.9 +7.3650 5.0 +7.3700 5.0 +7.3750 5.0 +7.3800 5.0 +7.3850 5.0 +7.3900 5.0 +7.3950 5.0 +7.4000 5.0 +7.4050 4.9 +7.4100 4.9 +7.4150 4.9 +7.4200 5.0 +7.4250 4.9 +7.4300 4.9 +7.4350 4.9 +7.4400 5.0 +7.4450 4.9 +7.4500 5.0 +7.4550 5.0 +7.4600 5.0 +7.4650 5.0 +7.4700 5.0 +7.4750 4.9 +7.4800 5.0 +7.4850 4.9 +7.4900 4.9 +7.4950 4.9 +7.5000 4.9 +7.5050 4.9 +7.5100 5.0 +7.5150 4.9 +7.5200 5.0 +7.5250 4.9 +7.5300 5.0 +7.5350 5.0 +7.5400 5.0 +7.5450 4.9 +7.5500 5.0 +7.5550 4.9 +7.5600 5.0 +7.5650 4.9 +7.5700 4.9 +7.5750 4.9 +7.5800 4.9 +7.5850 4.9 +7.5900 4.9 +7.5950 4.9 +7.6000 5.0 +7.6050 5.0 +7.6100 5.0 +7.6150 5.0 +7.6200 5.0 +7.6250 5.0 +7.6300 4.9 +7.6350 5.0 +7.6400 4.9 +7.6450 4.9 +7.6500 4.9 +7.6550 4.9 +7.6600 4.9 +7.6650 5.0 +7.6700 4.9 +7.6750 4.9 +7.6800 4.9 +7.6850 5.0 +7.6900 4.9 +7.6950 5.0 +7.7000 4.9 +7.7050 5.0 +7.7100 4.9 +7.7150 4.9 +7.7200 4.9 +7.7250 4.9 +7.7300 4.9 +7.7350 4.9 +7.7400 4.9 +7.7450 4.9 +7.7500 4.9 +7.7550 5.0 +7.7600 4.9 +7.7650 5.0 +7.7700 4.9 +7.7750 5.0 +7.7800 4.9 +7.7850 4.9 +7.7900 4.9 +7.7950 4.9 +7.8000 4.9 +7.8050 4.9 +7.8100 4.9 +7.8150 4.9 +7.8200 4.9 +7.8250 4.9 +7.8300 4.9 +7.8350 4.9 +7.8400 5.0 +7.8450 4.9 +7.8500 5.0 +7.8550 4.9 +7.8600 5.0 +7.8650 4.9 +7.8700 5.0 +7.8750 4.9 +7.8800 5.0 +7.8850 4.9 +7.8900 4.9 +7.8950 4.9 +7.9000 4.9 +7.9050 4.9 +7.9100 5.0 +7.9150 4.9 +7.9200 5.0 +7.9250 4.9 +7.9300 5.0 +7.9350 4.9 +7.9400 5.0 +7.9450 4.9 +7.9500 4.9 +7.9550 4.9 +7.9600 4.9 +7.9650 4.9 +7.9700 4.9 +7.9750 4.9 +7.9800 4.9 +7.9850 4.9 +7.9900 4.9 +7.9950 4.9 +8.0000 4.9 +8.0050 4.9 +8.0100 4.9 +8.0150 4.9 +8.0200 4.9 +8.0250 4.9 +8.0300 4.9 +8.0350 4.9 +8.0400 4.9 +8.0450 4.9 +8.0500 4.9 +8.0550 4.9 +8.0600 4.9 +8.0650 5.0 +8.0700 4.9 +8.0750 5.0 +8.0800 4.9 +8.0850 4.9 +8.0900 4.9 +8.0950 4.9 +8.1000 4.9 +8.1050 4.9 +8.1100 4.8 +8.1150 4.9 +8.1200 4.9 +8.1250 4.9 +8.1300 4.9 +8.1350 4.9 +8.1400 4.9 +8.1450 4.9 +8.1500 4.9 +8.1550 5.0 +8.1600 4.9 +8.1650 4.9 +8.1700 4.9 +8.1750 4.9 +8.1800 4.9 +8.1850 4.9 +8.1900 4.9 +8.1950 4.9 +8.2000 4.9 +8.2050 4.9 +8.2100 4.9 +8.2150 4.9 +8.2200 4.9 +8.2250 4.9 +8.2300 5.0 +8.2350 4.9 +8.2400 4.9 +8.2450 4.9 +8.2500 4.9 +8.2550 4.9 +8.2600 4.9 +8.2650 4.9 +8.2700 4.9 +8.2750 4.9 +8.2800 4.9 +8.2850 4.9 +8.2900 4.9 +8.2950 4.9 +8.3000 5.0 +8.3050 4.9 +8.3100 5.0 +8.3150 4.9 +8.3200 5.0 +8.3250 4.9 +8.3300 4.9 +8.3350 4.9 +8.3400 4.9 +8.3450 4.9 +8.3500 4.9 +8.3550 4.9 +8.3600 4.9 +8.3650 4.7 +8.3700 4.5 +8.3750 4.1 +8.3800 3.9 +8.3850 3.5 +8.3900 3.3 +8.3950 3.0 +8.4000 2.9 +8.4050 2.7 +8.4100 2.7 +8.4150 2.7 +8.4200 2.7 +8.4250 2.8 +8.4300 2.8 +8.4350 2.8 +8.4400 2.8 +8.4450 2.7 +8.4500 2.6 +8.4550 2.4 +8.4600 2.2 +8.4650 2.1 +8.4700 2.0 +8.4750 1.9 +8.4800 1.8 +8.4850 1.7 +8.4900 1.7 +8.4950 1.7 +8.5000 1.7 +8.5050 1.7 +8.5100 1.8 +8.5150 1.8 +8.5200 1.7 +8.5250 1.8 +8.5300 1.7 +8.5350 1.6 +8.5400 1.5 +8.5450 1.5 +8.5500 1.3 +8.5550 1.3 +8.5600 1.3 +8.5650 1.2 +8.5700 1.1 +8.5750 1.1 +8.5800 1.2 +8.5850 1.2 +8.5900 1.2 +8.5950 1.2 +8.6000 1.4 +8.6050 1.3 +8.6100 1.1 +8.6150 1.2 +8.6200 1.2 +8.6250 1.0 +8.6300 0.9 +8.6350 0.9 +8.6400 0.9 +8.6450 0.9 +8.6500 0.8 +8.6550 0.8 +8.6600 0.9 +8.6650 1.0 +8.6700 0.9 +8.6750 0.9 +8.6800 1.0 +8.6850 1.0 +8.6900 0.9 +8.6950 0.8 +8.7000 0.8 +8.7050 0.9 +8.7100 0.8 +8.7150 0.6 +8.7200 0.6 +8.7250 0.8 +8.7300 0.7 +8.7350 0.6 +8.7400 0.7 +8.7450 0.8 +8.7500 0.8 +8.7550 0.7 +8.7600 0.8 +8.7650 0.8 +8.7700 0.7 +8.7750 0.6 +8.7800 0.7 +8.7850 0.7 +8.7900 0.6 +8.7950 0.5 +8.8000 0.6 +8.8050 0.6 +8.8100 0.6 +8.8150 0.6 +8.8200 0.6 +8.8250 0.6 +8.8300 0.6 +8.8350 0.6 +8.8400 0.6 +8.8450 0.6 +8.8500 0.6 +8.8550 0.5 +8.8600 0.5 +8.8650 0.6 +8.8700 0.5 +8.8750 0.4 +8.8800 0.4 +8.8850 0.5 +8.8900 0.5 +8.8950 0.4 +8.9000 0.4 +8.9050 0.5 +8.9100 0.5 +8.9150 0.5 +8.9200 0.5 +8.9250 0.5 +8.9300 0.5 +8.9350 0.4 +8.9400 0.5 +8.9450 0.5 +8.9500 0.4 +8.9550 0.4 +8.9600 0.4 +8.9650 0.4 +8.9700 0.4 +8.9750 0.4 +8.9800 0.4 +8.9850 0.4 +8.9900 0.4 +8.9950 0.4 +9.0000 0.4 +9.0050 0.4 +9.0100 0.3 +9.0150 0.3 +9.0200 0.3 +9.0250 0.3 +9.0300 0.4 +9.0350 0.3 +9.0400 0.3 +9.0450 0.3 +9.0500 0.3 +9.0550 0.3 +9.0600 0.3 +9.0650 0.3 +9.0700 0.4 +9.0750 0.4 +9.0800 0.3 +9.0850 0.3 +9.0900 0.3 +9.0950 0.3 +9.1000 0.3 +9.1050 0.3 +9.1100 0.3 +9.1150 0.3 +9.1200 0.3 +9.1250 0.3 +9.1300 0.3 +9.1350 0.3 +9.1400 0.3 +9.1450 0.3 +9.1500 0.3 +9.1550 0.3 +9.1600 0.3 +9.1650 0.3 +9.1700 0.3 +9.1750 0.3 +9.1800 0.3 +9.1850 0.3 +9.1900 0.3 +9.1950 0.3 +9.2000 0.3 +9.2050 0.3 +9.2100 0.3 +9.2150 0.3 +9.2200 0.3 +9.2250 0.3 +9.2300 0.3 +9.2350 0.3 +9.2400 0.3 +9.2450 0.3 +9.2500 0.3 +9.2550 0.2 +9.2600 0.2 +9.2650 0.3 +9.2700 0.3 +9.2750 0.2 +9.2800 0.3 +9.2850 0.3 +9.2900 0.3 +9.2950 0.2 +9.3000 0.2 +9.3050 0.2 +9.3100 0.2 +9.3150 0.2 +9.3200 0.2 +9.3250 0.2 +9.3300 0.2 +9.3350 0.2 +9.3400 0.2 +9.3450 0.2 +9.3500 0.2 +9.3550 0.2 +9.3600 0.2 +9.3650 0.2 +9.3700 0.2 +9.3750 0.2 +9.3800 0.2 +9.3850 0.2 +9.3900 0.2 +9.3950 0.2 +9.4000 0.2 +9.4050 0.2 +9.4100 0.2 +9.4150 0.2 +9.4200 0.2 +9.4250 0.2 +9.4300 0.2 +9.4350 0.2 +9.4400 0.2 +9.4450 0.2 +9.4500 0.2 +9.4550 0.2 +9.4600 0.2 +9.4650 0.2 +9.4700 0.2 +9.4750 0.2 +9.4800 0.2 +9.4850 0.2 +9.4900 0.2 +9.4950 0.2 +9.5000 0.2 +9.5050 0.2 +9.5100 0.2 +9.5150 0.2 +9.5200 0.2 +9.5250 0.2 +9.5300 0.2 +9.5350 0.2 +9.5400 0.2 +9.5450 0.2 +9.5500 0.2 +9.5550 0.2 +9.5600 0.2 +9.5650 0.2 +9.5700 0.2 +9.5750 0.2 +9.5800 0.2 +9.5850 0.2 +9.5900 0.2 +9.5950 0.2 +9.6000 0.2 +9.6050 0.2 +9.6100 0.2 +9.6150 0.2 +9.6200 0.2 +9.6250 0.2 +9.6300 0.2 +9.6350 0.2 +9.6400 0.2 +9.6450 0.2 +9.6500 0.2 +9.6550 0.2 +9.6600 0.2 +9.6650 0.2 +9.6700 0.2 +9.6750 0.2 +9.6800 0.2 +9.6850 0.2 +9.6900 0.2 +9.6950 0.2 +9.7000 0.2 +9.7050 0.2 +9.7100 0.2 +9.7150 0.2 +9.7200 0.2 +9.7250 0.2 +9.7300 0.2 +9.7350 0.2 +9.7400 0.2 +9.7450 0.2 +9.7500 0.2 +9.7550 0.2 +9.7600 0.2 +9.7650 0.2 +9.7700 0.2 +9.7750 0.2 +9.7800 0.2 +9.7850 0.2 +9.7900 0.2 +9.7950 0.2 +9.8000 0.2 +9.8050 0.2 +9.8100 0.2 +9.8150 0.2 +9.8200 0.2 +9.8250 0.2 +9.8300 0.2 +9.8350 0.2 +9.8400 0.2 +9.8450 0.2 +9.8500 0.2 +9.8550 0.2 +9.8600 0.2 +9.8650 0.2 +9.8700 0.2 +9.8750 0.2 +9.8800 0.2 +9.8850 0.2 +9.8900 0.2 +9.8950 0.2 +9.9000 0.2 +9.9050 0.2 +9.9100 0.2 +9.9150 0.2 +9.9200 0.2 +9.9250 0.2 +9.9300 0.2 +9.9350 0.2 +9.9400 0.2 +9.9450 0.2 +9.9500 0.2 +9.9550 0.2 +9.9600 0.2 +9.9650 0.2 +9.9700 0.2 +9.9750 0.2 +9.9800 0.2 +9.9850 0.2 +9.9900 0.2 +9.9950 0.2 +10.0000 0.2 +10.0050 0.2 +10.0100 0.2 +10.0150 0.2 +10.0200 0.2 +10.0250 0.2 +10.0300 0.2 +10.0350 0.2 +10.0400 0.2 +10.0450 0.2 +10.0500 0.2 +10.0550 0.2 +10.0600 0.2 +10.0650 0.2 +10.0700 0.2 +10.0750 0.2 +10.0800 0.2 +10.0850 0.2 +10.0900 0.2 +10.0950 0.2 +10.1000 0.2 +10.1050 0.2 +10.1100 0.2 +10.1150 0.2 +10.1200 0.2 +10.1250 0.2 +10.1300 0.2 +10.1350 0.2 +10.1400 0.2 +10.1450 0.2 +10.1500 0.2 +10.1550 0.2 +10.1600 0.2 +10.1650 0.2 +10.1700 0.2 +10.1750 0.2 +10.1800 0.2 +10.1850 0.2 +10.1900 0.2 +10.1950 0.2 +10.2000 0.2 +10.2050 0.2 +10.2100 0.2 +10.2150 0.2 +10.2200 0.2 +10.2250 0.2 +10.2300 0.2 +10.2350 0.2 +10.2400 0.2 +10.2450 0.2 +10.2500 0.2 +10.2550 0.2 +10.2600 0.2 +10.2650 0.2 +10.2700 0.2 +10.2750 0.2 +10.2800 0.2 +10.2850 0.2 +10.2900 0.2 +10.2950 0.2 +10.3000 0.2 +10.3050 0.2 +10.3100 0.2 +10.3150 0.2 +10.3200 0.2 +10.3250 0.2 +10.3300 0.2 +10.3350 0.2 +10.3400 0.2 +10.3450 0.2 +10.3500 0.2 +10.3550 0.2 +10.3600 0.2 +10.3650 0.2 +10.3700 0.2 +10.3750 0.2 +10.3800 0.2 +10.3850 0.2 +10.3900 0.2 +10.3950 0.2 +10.4000 0.2 +10.4050 0.2 +10.4100 0.2 +10.4150 0.2 +10.4200 0.2 +10.4250 0.2 +10.4300 0.2 +10.4350 0.2 +10.4400 0.2 +10.4450 0.2 +10.4500 0.2 +10.4550 0.2 +10.4600 0.2 +10.4650 0.2 +10.4700 0.2 +10.4750 0.2 +10.4800 0.2 +10.4850 0.2 +10.4900 0.2 +10.4950 0.2 +10.5000 0.2 +10.5050 0.2 +10.5100 0.2 +10.5150 0.2 +10.5200 0.2 +10.5250 0.2 +10.5300 0.2 +10.5350 0.2 +10.5400 0.2 +10.5450 0.2 +10.5500 0.2 +10.5550 0.2 +10.5600 0.2 +10.5650 0.2 +10.5700 0.2 +10.5750 0.2 +10.5800 0.2 +10.5850 0.2 +10.5900 0.2 +10.5950 0.2 +10.6000 0.2 +10.6050 0.2 +10.6100 0.2 +10.6150 0.2 +10.6200 0.2 +10.6250 0.2 +10.6300 0.2 +10.6350 0.2 +10.6400 0.2 +10.6450 0.2 +10.6500 0.2 +10.6550 0.2 +10.6600 0.2 +10.6650 0.2 +10.6700 0.2 +10.6750 0.2 +10.6800 0.2 +10.6850 0.2 +10.6900 0.2 +10.6950 0.2 +10.7000 0.2 +10.7050 0.2 +10.7100 0.2 +10.7150 0.2 +10.7200 0.2 +10.7250 0.2 +10.7300 0.2 +10.7350 0.2 +10.7400 0.2 +10.7450 0.2 +10.7500 0.2 +10.7550 0.2 +10.7600 0.2 +10.7650 0.2 +10.7700 0.2 +10.7750 0.2 +10.7800 0.2 +10.7850 0.2 +10.7900 0.2 +10.7950 0.2 +10.8000 0.2 +10.8050 0.2 +10.8100 0.2 +10.8150 0.2 +10.8200 0.2 +10.8250 0.2 +10.8300 0.2 +10.8350 0.2 +10.8400 0.2 +10.8450 0.2 +10.8500 0.2 +10.8550 0.2 +10.8600 0.2 +10.8650 0.2 +10.8700 0.2 +10.8750 0.2 +10.8800 0.2 +10.8850 0.2 +10.8900 0.2 +10.8950 0.2 +10.9000 0.2 +10.9050 0.2 +10.9100 0.2 +10.9150 0.2 +10.9200 0.2 +10.9250 0.2 +10.9300 0.2 +10.9350 0.2 +10.9400 0.2 +10.9450 0.2 +10.9500 0.2 +10.9550 0.2 +10.9600 0.2 +10.9650 0.2 +10.9700 0.2 +10.9750 0.2 +10.9800 0.2 +10.9850 0.2 +10.9900 0.2 +10.9950 0.2 +11.0000 0.2 +11.0050 0.2 +11.0100 0.2 +11.0150 0.2 +11.0200 0.2 +11.0250 0.2 +11.0300 0.2 +11.0350 0.2 +11.0400 0.2 +11.0450 0.2 +11.0500 0.2 +11.0550 0.2 +11.0600 0.2 +11.0650 0.2 +11.0700 0.2 +11.0750 0.2 +11.0800 0.2 +11.0850 0.2 +11.0900 0.2 +11.0950 0.2 +11.1000 0.2 +11.1050 0.2 +11.1100 0.2 +11.1150 0.2 +11.1200 0.2 +11.1250 0.2 +11.1300 0.2 +11.1350 0.2 +11.1400 0.2 +11.1450 0.2 +11.1500 0.2 +11.1550 0.2 +11.1600 0.2 +11.1650 0.2 +11.1700 0.2 +11.1750 0.2 +11.1800 0.2 +11.1850 0.2 +11.1900 0.2 +11.1950 0.2 +11.2000 0.2 +11.2050 0.2 +11.2100 0.2 +11.2150 0.2 +11.2200 0.2 +11.2250 0.2 +11.2300 0.2 +11.2350 0.2 +11.2400 0.2 +11.2450 0.2 +11.2500 0.2 +11.2550 0.2 +11.2600 0.2 +11.2650 0.2 +11.2700 0.2 +11.2750 0.2 +11.2800 0.2 +11.2850 0.2 +11.2900 0.2 +11.2950 0.2 +11.3000 0.2 +11.3050 0.2 +11.3100 0.2 +11.3150 0.2 +11.3200 0.2 +11.3250 0.2 +11.3300 0.2 +11.3350 0.2 +11.3400 0.2 +11.3450 0.2 +11.3500 0.2 +11.3550 0.2 +11.3600 0.2 +11.3650 0.2 +11.3700 0.2 +11.3750 0.2 +11.3800 0.2 +11.3850 0.2 +11.3900 0.2 +11.3950 0.2 +11.4000 0.2 +11.4050 0.2 +11.4100 0.2 +11.4150 0.2 +11.4200 0.2 +11.4250 0.2 +11.4300 0.2 +11.4350 0.2 +11.4400 0.2 +11.4450 0.2 +11.4500 0.2 +11.4550 0.2 +11.4600 0.2 +11.4650 0.2 +11.4700 0.2 +11.4750 0.2 +11.4800 0.2 +11.4850 0.2 +11.4900 0.2 +11.4950 0.2 +11.5000 0.2 +11.5050 0.2 +11.5100 0.2 +11.5150 0.2 +11.5200 0.2 +11.5250 0.2 +11.5300 0.2 +11.5350 0.2 +11.5400 0.2 +11.5450 0.2 +11.5500 0.2 +11.5550 0.2 +11.5600 0.2 +11.5650 0.2 +11.5700 0.2 +11.5750 0.2 +11.5800 0.2 +11.5850 0.2 +11.5900 0.2 +11.5950 0.2 +11.6000 0.2 +11.6050 0.2 +11.6100 0.2 +11.6150 0.2 +11.6200 0.2 +11.6250 0.2 +11.6300 0.2 +11.6350 0.2 +11.6400 0.2 +11.6450 0.2 +11.6500 0.2 +11.6550 0.2 +11.6600 0.2 +11.6650 0.2 +11.6700 0.2 +11.6750 0.2 +11.6800 0.2 +11.6850 0.2 +11.6900 0.2 +11.6950 0.2 +11.7000 0.2 +11.7050 0.2 +11.7100 0.2 +11.7150 0.2 +11.7200 0.2 +11.7250 0.2 +11.7300 0.2 +11.7350 0.2 +11.7400 0.2 +11.7450 0.2 +11.7500 0.2 +11.7550 0.2 +11.7600 0.2 +11.7650 0.2 +11.7700 0.2 +11.7750 0.2 +11.7800 0.2 +11.7850 0.2 +11.7900 0.2 +11.7950 0.2 +11.8000 0.2 +11.8050 0.2 +11.8100 0.2 +11.8150 0.2 +11.8200 0.2 +11.8250 0.2 +11.8300 0.2 +11.8350 0.2 +11.8400 0.2 +11.8450 0.2 +11.8500 0.2 +11.8550 0.2 +11.8600 0.2 +11.8650 0.2 +11.8700 0.2 +11.8750 0.2 +11.8800 0.2 +11.8850 0.2 +11.8900 0.2 +11.8950 0.2 +11.9000 0.2 +11.9050 0.2 +11.9100 0.2 +11.9150 0.2 +11.9200 0.2 +11.9250 0.2 +11.9300 0.2 +11.9350 0.2 +11.9400 0.2 +11.9450 0.2 +11.9500 0.2 +11.9550 0.2 +11.9600 0.2 +11.9650 0.2 +11.9700 0.2 +11.9750 0.2 +11.9800 0.2 +11.9850 0.2 +11.9900 0.2 +11.9950 0.2 +12.0000 0.2 +12.0050 0.2 +12.0100 0.2 +12.0150 0.2 +12.0200 0.2 +12.0250 0.2 +12.0300 0.2 +12.0350 0.2 +12.0400 0.2 +12.0450 0.2 +12.0500 0.2 +12.0550 0.2 +12.0600 0.2 +12.0650 0.2 +12.0700 0.2 +12.0750 0.2 +12.0800 0.2 +12.0850 0.2 +12.0900 0.2 +12.0950 0.2 +12.1000 0.2 +12.1050 0.2 +12.1100 0.2 +12.1150 0.2 +12.1200 0.2 +12.1250 0.2 +12.1300 0.2 +12.1350 0.2 +12.1400 0.2 +12.1450 0.2 +12.1500 0.2 +12.1550 0.2 +12.1600 0.2 +12.1650 0.2 +12.1700 0.2 +12.1750 0.2 +12.1800 0.2 +12.1850 0.2 +12.1900 0.2 +12.1950 0.2 +12.2000 0.2 +12.2050 0.2 +12.2100 0.2 +12.2150 0.2 +12.2200 0.2 +12.2250 0.2 +12.2300 0.2 +12.2350 0.2 +12.2400 0.2 +12.2450 0.2 +12.2500 0.2 +12.2550 0.2 +12.2600 0.2 +12.2650 0.2 +12.2700 0.2 +12.2750 0.2 +12.2800 0.2 +12.2850 0.2 +12.2900 0.2 +12.2950 0.2 +12.3000 0.2 +12.3050 0.2 +12.3100 0.2 +12.3150 0.2 +12.3200 0.2 +12.3250 0.2 +12.3300 0.2 +12.3350 0.2 +12.3400 0.2 +12.3450 0.2 +12.3500 0.2 +12.3550 0.2 +12.3600 0.2 +12.3650 0.2 +12.3700 0.2 +12.3750 0.2 +12.3800 0.2 +12.3850 0.2 +12.3900 0.2 +12.3950 0.2 +12.4000 0.2 +12.4050 0.2 +12.4100 0.2 +12.4150 0.2 +12.4200 0.2 +12.4250 0.2 +12.4300 0.2 +12.4350 0.2 +12.4400 0.2 +12.4450 0.2 +12.4500 0.2 +12.4550 0.2 +12.4600 0.2 +12.4650 0.2 +12.4700 0.2 +12.4750 0.2 +12.4800 0.2 +12.4850 0.2 +12.4900 0.2 +12.4950 0.2 +12.5000 0.2 +12.5050 0.2 +12.5100 0.2 +12.5150 0.2 +12.5200 0.2 +12.5250 0.2 +12.5300 0.2 +12.5350 0.2 +12.5400 0.2 +12.5450 0.2 +12.5500 0.2 +12.5550 0.2 +12.5600 0.2 +12.5650 0.2 +12.5700 0.2 +12.5750 0.2 +12.5800 0.2 +12.5850 0.2 +12.5900 0.2 +12.5950 0.2 +12.6000 0.2 +12.6050 0.2 +12.6100 0.2 +12.6150 0.2 +12.6200 0.2 +12.6250 0.2 +12.6300 0.2 +12.6350 0.2 +12.6400 0.2 +12.6450 0.2 +12.6500 0.2 +12.6550 0.2 +12.6600 0.2 +12.6650 0.2 +12.6700 0.2 +12.6750 0.2 +12.6800 0.2 +12.6850 0.2 +12.6900 0.2 +12.6950 0.2 +12.7000 0.2 +12.7050 0.2 +12.7100 0.2 +12.7150 0.2 +12.7200 0.2 +12.7250 0.2 +12.7300 0.2 +12.7350 0.2 +12.7400 0.2 +12.7450 0.2 +12.7500 0.2 +12.7550 0.2 +12.7600 0.2 +12.7650 0.2 +12.7700 0.2 +12.7750 0.2 +12.7800 0.2 +12.7850 0.2 +12.7900 0.2 +12.7950 0.2 +12.8000 0.2 +12.8050 0.2 +12.8100 0.2 +12.8150 0.2 +12.8200 0.2 +12.8250 0.2 +12.8300 0.2 +12.8350 0.2 +12.8400 0.2 +12.8450 0.2 +12.8500 0.2 +12.8550 0.2 +12.8600 0.2 +12.8650 0.2 +12.8700 0.2 +12.8750 0.2 +12.8800 0.2 +12.8850 0.2 +12.8900 0.2 +12.8950 0.2 +12.9000 0.2 +12.9050 0.2 +12.9100 0.2 +12.9150 0.2 +12.9200 0.2 +12.9250 0.2 +12.9300 0.2 +12.9350 0.2 +12.9400 0.2 +12.9450 0.2 +12.9500 0.2 +12.9550 0.2 +12.9600 0.2 +12.9650 0.2 +12.9700 0.2 +12.9750 0.2 +12.9800 0.2 +12.9850 0.2 +12.9900 0.2 +12.9950 0.2 +13.0000 0.2 +13.0050 0.2 +13.0100 0.2 +13.0150 0.2 +13.0200 0.2 +13.0250 0.2 +13.0300 0.2 +13.0350 0.2 +13.0400 0.2 +13.0450 0.2 +13.0500 0.2 +13.0550 0.2 +13.0600 0.2 +13.0650 0.2 +13.0700 0.2 +13.0750 0.2 +13.0800 0.2 +13.0850 0.2 +13.0900 0.2 +13.0950 0.2 +13.1000 0.2 +13.1050 0.2 +13.1100 0.2 +13.1150 0.2 +13.1200 0.2 +13.1250 0.2 +13.1300 0.2 +13.1350 0.2 +13.1400 0.2 +13.1450 0.2 +13.1500 0.2 +13.1550 0.2 +13.1600 0.2 +13.1650 0.2 +13.1700 0.2 +13.1750 0.2 +13.1800 0.2 +13.1850 0.2 +13.1900 0.2 +13.1950 0.2 +13.2000 0.2 +13.2050 0.2 +13.2100 0.2 +13.2150 0.2 +13.2200 0.2 +13.2250 0.2 +13.2300 0.2 +13.2350 0.2 +13.2400 0.2 +13.2450 0.2 +13.2500 0.2 +13.2550 0.2 +13.2600 0.2 +13.2650 0.2 +13.2700 0.2 +13.2750 0.2 +13.2800 0.2 +13.2850 0.2 +13.2900 0.2 +13.2950 0.2 +13.3000 0.2 +13.3050 0.2 +13.3100 0.2 +13.3150 0.2 +13.3200 0.2 +13.3250 0.2 +13.3300 0.2 +13.3350 0.2 +13.3400 0.2 +13.3450 0.2 +13.3500 0.2 +13.3550 0.2 +13.3600 0.2 +13.3650 0.2 +13.3700 0.2 +13.3750 0.2 +13.3800 0.2 +13.3850 0.2 +13.3900 0.2 +13.3950 0.2 +13.4000 0.2 +13.4050 0.2 +13.4100 0.2 +13.4150 0.2 +13.4200 0.2 +13.4250 0.2 +13.4300 0.2 +13.4350 0.2 +13.4400 0.2 +13.4450 0.2 +13.4500 0.2 +13.4550 0.2 +13.4600 0.2 +13.4650 0.2 +13.4700 0.2 +13.4750 0.2 +13.4800 0.2 +13.4850 0.2 +13.4900 0.2 +13.4950 0.2 +13.5000 0.2 +13.5050 0.2 +13.5100 0.2 +13.5150 0.2 +13.5200 0.2 +13.5250 0.2 +13.5300 0.2 +13.5350 0.2 +13.5400 0.2 +13.5450 0.2 +13.5500 0.2 +13.5550 0.2 +13.5600 0.2 +13.5650 0.2 +13.5700 0.2 +13.5750 0.2 +13.5800 0.2 +13.5850 0.2 +13.5900 0.2 +13.5950 0.2 +13.6000 0.2 +13.6050 0.2 +13.6100 0.2 +13.6150 0.2 +13.6200 0.2 +13.6250 0.2 +13.6300 0.2 +13.6350 0.2 +13.6400 0.2 +13.6450 0.2 +13.6500 0.2 +13.6550 0.2 +13.6600 0.2 +13.6650 0.2 +13.6700 0.2 +13.6750 0.2 +13.6800 0.2 +13.6850 0.2 +13.6900 0.2 +13.6950 0.2 +13.7000 0.2 +13.7050 0.2 +13.7100 0.2 +13.7150 0.2 +13.7200 0.2 +13.7250 0.2 +13.7300 0.2 +13.7350 0.2 +13.7400 0.2 +13.7450 0.2 +13.7500 0.2 +13.7550 0.2 +13.7600 0.2 +13.7650 0.2 +13.7700 0.2 +13.7750 0.2 +13.7800 0.2 +13.7850 0.2 +13.7900 0.2 +13.7950 0.2 +13.8000 0.2 +13.8050 0.2 +13.8100 0.2 +13.8150 0.2 +13.8200 0.2 +13.8250 0.2 +13.8300 0.2 +13.8350 0.2 +13.8400 0.2 +13.8450 0.2 +13.8500 0.2 +13.8550 0.2 +13.8600 0.2 +13.8650 0.2 +13.8700 0.2 +13.8750 0.2 +13.8800 0.2 +13.8850 0.2 +13.8900 0.2 +13.8950 0.2 +13.9000 0.2 +13.9050 0.2 +13.9100 0.2 +13.9150 0.2 +13.9200 0.2 +13.9250 0.2 +13.9300 0.2 +13.9350 0.2 +13.9400 0.2 +13.9450 0.2 +13.9500 0.2 +13.9550 0.2 +13.9600 0.2 +13.9650 0.2 +13.9700 0.2 +13.9750 0.2 +13.9800 0.2 +13.9850 0.2 +13.9900 0.2 +13.9950 0.2 +14.0000 0.2 +14.0050 0.2 +14.0100 0.2 +14.0150 0.2 +14.0200 0.2 +14.0250 0.2 +14.0300 0.2 +14.0350 0.2 +14.0400 0.2 +14.0450 0.2 +14.0500 0.2 +14.0550 0.2 +14.0600 0.2 +14.0650 0.2 +14.0700 0.2 +14.0750 0.2 +14.0800 0.2 +14.0850 0.2 +14.0900 0.2 +14.0950 0.2 +14.1000 0.2 +14.1050 0.2 +14.1100 0.2 +14.1150 0.2 +14.1200 0.2 +14.1250 0.2 +14.1300 0.2 +14.1350 0.2 +14.1400 0.2 +14.1450 0.2 +14.1500 0.2 +14.1550 0.2 +14.1600 0.2 +14.1650 0.2 +14.1700 0.2 +14.1750 0.2 +14.1800 0.2 +14.1850 0.2 +14.1900 0.2 +14.1950 0.2 +14.2000 0.2 +14.2050 0.2 +14.2100 0.2 +14.2150 0.2 +14.2200 0.2 +14.2250 0.2 +14.2300 0.2 +14.2350 0.2 +14.2400 0.2 +14.2450 0.2 +14.2500 0.2 +14.2550 0.2 +14.2600 0.2 +14.2650 0.2 +14.2700 0.2 +14.2750 0.2 +14.2800 0.2 +14.2850 0.2 +14.2900 0.2 +14.2950 0.2 +14.3000 0.2 +14.3050 0.2 +14.3100 0.2 +14.3150 0.2 +14.3200 0.2 +14.3250 0.2 +14.3300 0.2 +14.3350 0.2 +14.3400 0.2 +14.3450 0.2 +14.3500 0.2 +14.3550 0.2 +14.3600 0.2 +14.3650 0.2 +14.3700 0.2 +14.3750 0.2 +14.3800 0.2 +14.3850 0.2 +14.3900 0.2 +14.3950 0.2 +14.4000 0.2 +14.4050 0.2 +14.4100 0.2 +14.4150 0.2 +14.4200 0.2 +14.4250 0.2 +14.4300 0.2 +14.4350 0.2 +14.4400 0.2 +14.4450 0.2 +14.4500 0.2 +14.4550 0.2 +14.4600 0.2 +14.4650 0.2 +14.4700 0.2 +14.4750 0.2 +14.4800 0.2 +14.4850 0.2 +14.4900 0.2 +14.4950 0.2 +14.5000 0.2 +14.5050 0.2 +14.5100 0.2 +14.5150 0.2 +14.5200 0.2 +14.5250 0.2 +14.5300 0.2 +14.5350 0.2 +14.5400 0.2 +14.5450 0.2 +14.5500 0.2 +14.5550 0.2 +14.5600 0.2 +14.5650 0.2 +14.5700 0.2 +14.5750 0.2 +14.5800 0.2 +14.5850 0.2 +14.5900 0.2 +14.5950 0.2 +14.6000 0.2 +14.6050 0.2 +14.6100 0.2 +14.6150 0.2 +14.6200 0.2 +14.6250 0.2 +14.6300 0.2 +14.6350 0.2 +14.6400 0.2 +14.6450 0.2 +14.6500 0.2 +14.6550 0.2 +14.6600 0.2 +14.6650 0.2 +14.6700 0.2 +14.6750 0.2 +14.6800 0.2 +14.6850 0.2 +14.6900 0.2 +14.6950 0.2 +14.7000 0.2 +14.7050 0.2 +14.7100 0.2 +14.7150 0.2 +14.7200 0.2 +14.7250 0.2 +14.7300 0.2 +14.7350 0.2 +14.7400 0.2 +14.7450 0.2 +14.7500 0.2 +14.7550 0.2 +14.7600 0.2 +14.7650 0.2 +14.7700 0.2 +14.7750 0.2 +14.7800 0.2 +14.7850 0.2 +14.7900 0.2 +14.7950 0.2 +14.8000 0.2 +14.8050 0.2 +14.8100 0.2 +14.8150 0.2 +14.8200 0.2 +14.8250 0.2 +14.8300 0.2 +14.8350 0.2 +14.8400 0.2 +14.8450 0.2 +14.8500 0.2 +14.8550 0.2 +14.8600 0.2 +14.8650 0.2 +14.8700 0.2 +14.8750 0.2 +14.8800 0.2 +14.8850 0.2 +14.8900 0.2 +14.8950 0.2 +14.9000 0.2 +14.9050 0.2 +14.9100 0.2 +14.9150 0.2 +14.9200 0.2 +14.9250 0.2 +14.9300 0.2 +14.9350 0.2 +14.9400 0.2 +14.9450 0.2 +14.9500 0.2 +14.9550 0.2 +14.9600 0.2 +14.9650 0.2 +14.9700 0.2 +14.9750 0.2 +14.9800 0.2 +14.9850 0.2 +14.9900 0.2 +14.9950 0.2 +15.0000 0.2 +15.0050 0.2 +15.0100 0.2 +15.0150 0.2 +15.0200 0.2 +15.0250 0.2 +15.0300 0.2 +15.0350 0.2 +15.0400 0.2 +15.0450 0.2 +15.0500 0.2 +15.0550 0.2 +15.0600 0.2 +15.0650 0.2 +15.0700 0.2 +15.0750 0.2 +15.0800 0.2 +15.0850 0.2 +15.0900 0.2 +15.0950 0.2 +15.1000 0.2 +15.1050 0.2 +15.1100 0.2 +15.1150 0.2 +15.1200 0.2 +15.1250 0.2 +15.1300 0.2 +15.1350 0.2 +15.1400 0.2 +15.1450 0.2 +15.1500 0.2 +15.1550 0.2 +15.1600 0.2 +15.1650 0.2 +15.1700 0.2 +15.1750 0.2 +15.1800 0.2 +15.1850 0.2 +15.1900 0.2 +15.1950 0.2 +15.2000 0.2 +15.2050 0.2 +15.2100 0.2 +15.2150 0.2 +15.2200 0.2 +15.2250 0.2 +15.2300 0.2 +15.2350 0.2 +15.2400 0.2 +15.2450 0.2 +15.2500 0.2 +15.2550 0.2 +15.2600 0.2 +15.2650 0.2 +15.2700 0.2 +15.2750 0.2 +15.2800 0.2 +15.2850 0.2 +15.2900 0.2 +15.2950 0.2 +15.3000 0.2 +15.3050 0.2 +15.3100 0.2 +15.3150 0.2 +15.3200 0.2 +15.3250 0.2 +15.3300 0.2 +15.3350 0.2 +15.3400 0.2 +15.3450 0.2 +15.3500 0.2 +15.3550 0.2 +15.3600 0.2 +15.3650 0.2 +15.3700 0.2 +15.3750 0.2 +15.3800 0.2 +15.3850 0.2 +15.3900 0.2 +15.3950 0.2 +15.4000 0.2 +15.4050 0.2 +15.4100 0.2 +15.4150 0.2 +15.4200 0.2 +15.4250 0.2 +15.4300 0.2 +15.4350 0.2 +15.4400 0.2 +15.4450 0.2 +15.4500 0.2 +15.4550 0.2 +15.4600 0.2 +15.4650 0.2 +15.4700 0.2 +15.4750 0.2 +15.4800 0.2 +15.4850 0.2 +15.4900 0.2 +15.4950 0.2 +15.5000 0.2 +15.5050 0.2 +15.5100 0.2 +15.5150 0.2 +15.5200 0.2 +15.5250 0.2 +15.5300 0.2 +15.5350 0.2 +15.5400 0.2 +15.5450 0.2 +15.5500 0.2 +15.5550 0.2 +15.5600 0.2 +15.5650 0.2 +15.5700 0.2 +15.5750 0.2 +15.5800 0.2 +15.5850 0.2 +15.5900 0.2 +15.5950 0.2 +15.6000 0.2 +15.6050 0.2 +15.6100 0.2 +15.6150 0.2 +15.6200 0.2 +15.6250 0.2 +15.6300 0.2 +15.6350 0.2 +15.6400 0.2 +15.6450 0.2 +15.6500 0.2 +15.6550 0.2 +15.6600 0.2 +15.6650 0.2 +15.6700 0.2 +15.6750 0.2 +15.6800 0.2 +15.6850 0.2 +15.6900 0.2 +15.6950 0.2 +15.7000 0.2 +15.7050 0.2 +15.7100 0.2 +15.7150 0.2 +15.7200 0.2 +15.7250 0.2 +15.7300 0.2 +15.7350 0.2 +15.7400 0.2 +15.7450 0.2 +15.7500 0.2 +15.7550 0.2 +15.7600 0.2 +15.7650 0.2 +15.7700 0.2 +15.7750 0.2 +15.7800 0.2 +15.7850 0.2 +15.7900 0.2 +15.7950 0.2 +15.8000 0.2 +15.8050 0.2 +15.8100 0.2 +15.8150 0.2 +15.8200 0.2 +15.8250 0.2 +15.8300 0.2 +15.8350 0.2 +15.8400 0.2 +15.8450 0.2 +15.8500 0.2 +15.8550 0.2 +15.8600 0.2 +15.8650 0.2 +15.8700 0.2 +15.8750 0.2 +15.8800 0.2 +15.8850 0.2 +15.8900 0.2 +15.8950 0.2 +15.9000 0.2 +15.9050 0.2 +15.9100 0.2 +15.9150 0.2 +15.9200 0.2 +15.9250 0.2 +15.9300 0.2 +15.9350 0.2 +15.9400 0.2 +15.9450 0.2 +15.9500 0.2 +15.9550 0.2 +15.9600 0.2 +15.9650 0.2 +15.9700 0.2 +15.9750 0.2 +15.9800 0.2 +15.9850 0.2 +15.9900 0.2 +15.9950 0.2 +16.0000 0.2 +16.0050 0.2 +16.0100 0.2 +16.0150 0.2 +16.0200 0.2 +16.0250 0.2 +16.0300 0.2 +16.0350 0.2 +16.0400 0.2 +16.0450 0.2 +16.0500 0.2 +16.0550 0.2 +16.0600 0.2 +16.0650 0.2 +16.0700 0.2 +16.0750 0.2 +16.0800 0.2 +16.0850 0.2 +16.0900 0.2 +16.0950 0.2 +16.1000 0.2 +16.1050 0.2 +16.1100 0.2 +16.1150 0.2 +16.1200 0.2 +16.1250 0.2 +16.1300 0.2 +16.1350 0.2 +16.1400 0.2 +16.1450 0.2 +16.1500 0.2 +16.1550 0.2 +16.1600 0.2 +16.1650 0.2 +16.1700 0.2 +16.1750 0.2 +16.1800 0.2 +16.1850 0.2 +16.1900 0.2 +16.1950 0.2 +16.2000 0.2 +16.2050 0.2 +16.2100 0.2 +16.2150 0.2 +16.2200 0.2 +16.2250 0.2 +16.2300 0.2 +16.2350 0.2 +16.2400 0.2 +16.2450 0.2 +16.2500 0.2 +16.2550 0.2 +16.2600 0.2 +16.2650 0.2 +16.2700 0.2 +16.2750 0.2 +16.2800 0.2 +16.2850 0.2 +16.2900 0.2 +16.2950 0.2 +16.3000 0.2 +16.3050 0.2 +16.3100 0.2 +16.3150 0.2 +16.3200 0.2 +16.3250 0.2 +16.3300 0.2 +16.3350 0.2 +16.3400 0.2 +16.3450 0.2 +16.3500 0.2 +16.3550 0.2 +16.3600 0.2 +16.3650 0.2 +16.3700 0.2 +16.3750 0.2 +16.3800 0.2 +16.3850 0.2 +16.3900 0.2 +16.3950 0.2 +16.4000 0.2 +16.4050 0.2 +16.4100 0.2 +16.4150 0.2 +16.4200 0.2 +16.4250 0.2 +16.4300 0.2 +16.4350 0.2 +16.4400 0.2 +16.4450 0.2 +16.4500 0.5 +16.4550 0.6 +16.4600 0.8 +16.4650 0.8 +16.4700 0.7 +16.4750 0.6 +16.4800 0.6 +16.4850 0.5 +16.4900 0.5 +16.4950 0.5 +16.5000 0.5 +16.5050 0.4 +16.5100 0.5 +16.5150 0.5 +16.5200 0.6 +16.5250 0.8 +16.5300 1.0 +16.5350 1.2 +16.5400 1.5 +16.5450 1.5 +16.5500 1.4 +16.5550 1.4 +16.5600 1.5 +16.5650 1.5 +16.5700 1.5 +16.5750 1.4 +16.5800 1.6 +16.5850 1.7 +16.5900 1.7 +16.5950 1.7 +16.6000 1.9 +16.6050 2.0 +16.6100 2.2 +16.6150 2.4 +16.6200 2.5 +16.6250 2.7 +16.6300 2.8 +16.6350 2.8 +16.6400 2.9 +16.6450 2.9 +16.6500 3.0 +16.6550 3.0 +16.6600 3.0 +16.6650 3.3 +16.6700 3.4 +16.6750 3.4 +16.6800 3.5 +16.6850 3.7 +16.6900 3.9 +16.6950 4.0 +16.7000 4.2 +16.7050 4.4 +16.7100 4.5 +16.7150 4.5 +16.7200 4.6 +16.7250 4.6 +16.7300 4.6 +16.7350 4.5 +16.7400 4.5 +16.7450 4.5 +16.7500 4.6 +16.7550 4.5 +16.7600 4.7 +16.7650 4.7 +16.7700 4.7 +16.7750 4.8 +16.7800 4.9 +16.7850 4.9 +16.7900 4.9 +16.7950 4.9 +16.8000 5.0 +16.8050 4.9 +16.8100 4.9 +16.8150 4.8 +16.8200 4.8 +16.8250 4.8 +16.8300 4.8 +16.8350 4.8 +16.8400 4.9 +16.8450 4.8 +16.8500 4.9 +16.8550 4.9 +16.8600 5.0 +16.8650 4.9 +16.8700 5.0 +16.8750 4.9 +16.8800 5.0 +16.8850 4.9 +16.8900 4.9 +16.8950 4.8 +16.9000 4.9 +16.9050 4.8 +16.9100 4.9 +16.9150 4.9 +16.9200 4.9 +16.9250 4.9 +16.9300 5.0 +16.9350 4.9 +16.9400 5.0 +16.9450 4.9 +16.9500 4.9 +16.9550 4.9 +16.9600 4.9 +16.9650 4.9 +16.9700 4.9 +16.9750 4.9 +16.9800 4.9 +16.9850 4.9 +16.9900 4.9 +16.9950 4.9 +17.0000 4.9 +17.0050 4.9 +17.0100 4.9 +17.0150 4.9 +17.0200 4.9 +17.0250 5.0 +17.0300 4.9 +17.0350 5.0 +17.0400 4.9 +17.0450 4.9 +17.0500 4.9 +17.0550 4.9 +17.0600 4.9 +17.0650 4.9 +17.0700 4.9 +17.0750 5.0 +17.0800 4.9 +17.0850 5.0 +17.0900 4.9 +17.0950 5.0 +17.1000 4.9 +17.1050 4.9 +17.1100 4.9 +17.1150 4.9 +17.1200 4.9 +17.1250 4.9 +17.1300 4.9 +17.1350 4.9 +17.1400 4.9 +17.1450 4.9 +17.1500 4.9 +17.1550 4.9 +17.1600 4.9 +17.1650 4.9 +17.1700 4.9 +17.1750 4.9 +17.1800 4.9 +17.1850 4.9 +17.1900 4.9 +17.1950 4.9 +17.2000 4.9 +17.2050 4.9 +17.2100 4.9 +17.2150 4.9 +17.2200 5.0 +17.2250 4.9 +17.2300 5.0 +17.2350 4.9 +17.2400 4.9 +17.2450 4.9 +17.2500 4.9 +17.2550 4.9 +17.2600 4.9 +17.2650 4.9 +17.2700 4.9 +17.2750 4.9 +17.2800 4.9 +17.2850 4.9 +17.2900 4.9 +17.2950 4.9 +17.3000 4.9 +17.3050 4.9 +17.3100 5.0 +17.3150 4.9 +17.3200 4.9 +17.3250 4.9 +17.3300 4.9 +17.3350 4.9 +17.3400 4.9 +17.3450 4.9 +17.3500 4.9 +17.3550 4.9 +17.3600 4.9 +17.3650 4.9 +17.3700 4.9 +17.3750 4.9 +17.3800 4.9 +17.3850 4.9 +17.3900 4.9 +17.3950 4.9 +17.4000 4.9 +17.4050 4.9 +17.4100 4.8 +17.4150 4.9 +17.4200 4.8 +17.4250 4.9 +17.4300 4.9 +17.4350 4.9 +17.4400 4.9 +17.4450 4.9 +17.4500 4.9 +17.4550 4.9 +17.4600 4.9 +17.4650 4.9 +17.4700 4.9 +17.4750 4.9 +17.4800 4.9 +17.4850 4.9 +17.4900 4.8 +17.4950 4.9 +17.5000 4.9 +17.5050 4.9 +17.5100 4.9 +17.5150 4.9 +17.5200 4.9 +17.5250 4.9 +17.5300 4.9 +17.5350 4.9 +17.5400 4.9 +17.5450 4.9 +17.5500 4.9 +17.5550 4.9 +17.5600 4.9 +17.5650 4.9 +17.5700 4.9 +17.5750 4.9 +17.5800 4.9 +17.5850 4.9 +17.5900 4.9 +17.5950 4.9 +17.6000 4.9 +17.6050 4.9 +17.6100 4.9 +17.6150 4.9 +17.6200 4.9 +17.6250 4.9 +17.6300 4.9 +17.6350 4.8 +17.6400 4.9 +17.6450 4.8 +17.6500 4.9 +17.6550 4.9 +17.6600 4.9 +17.6650 4.9 +17.6700 4.9 +17.6750 4.9 +17.6800 4.9 +17.6850 4.9 +17.6900 4.9 +17.6950 4.9 +17.7000 4.9 +17.7050 4.9 +17.7100 4.9 +17.7150 4.9 +17.7200 4.9 +17.7250 4.9 +17.7300 4.9 +17.7350 4.9 +17.7400 4.9 +17.7450 4.9 +17.7500 4.9 +17.7550 4.9 +17.7600 4.9 +17.7650 4.9 +17.7700 4.9 +17.7750 4.9 +17.7800 4.9 +17.7850 4.9 +17.7900 4.8 +17.7950 4.9 +17.8000 4.9 +17.8050 4.9 +17.8100 4.8 +17.8150 4.9 +17.8200 4.9 +17.8250 4.9 +17.8300 4.9 +17.8350 4.9 +17.8400 4.9 +17.8450 4.9 +17.8500 4.9 +17.8550 4.9 +17.8600 4.9 +17.8650 4.9 +17.8700 4.9 +17.8750 4.9 +17.8800 4.9 +17.8850 4.9 +17.8900 4.9 +17.8950 4.9 +17.9000 4.9 +17.9050 4.9 +17.9100 4.9 +17.9150 4.9 +17.9200 4.9 +17.9250 4.9 +17.9300 4.9 +17.9350 4.9 +17.9400 4.9 +17.9450 4.9 +17.9500 4.9 +17.9550 4.9 +17.9600 4.9 +17.9650 4.9 +17.9700 4.9 +17.9750 4.9 +17.9800 4.9 +17.9850 4.9 +17.9900 4.9 +17.9950 4.9 +18.0000 4.9 +18.0050 4.9 +18.0100 4.9 +18.0150 4.8 +18.0200 4.9 +18.0250 4.9 +18.0300 4.9 +18.0350 4.9 +18.0400 4.9 +18.0450 4.9 +18.0500 4.9 +18.0550 4.9 +18.0600 4.9 +18.0650 4.9 +18.0700 4.9 +18.0750 4.9 +18.0800 4.9 +18.0850 4.9 +18.0900 4.9 +18.0950 4.9 +18.1000 4.9 +18.1050 4.9 +18.1100 4.9 +18.1150 4.9 +18.1200 4.9 +18.1250 4.9 +18.1300 4.9 +18.1350 4.9 +18.1400 4.9 +18.1450 4.9 +18.1500 4.9 +18.1550 4.9 +18.1600 4.9 +18.1650 4.9 +18.1700 4.9 +18.1750 4.9 +18.1800 4.9 +18.1850 4.9 +18.1900 4.9 +18.1950 4.9 +18.2000 4.9 +18.2050 4.9 +18.2100 4.9 +18.2150 4.9 +18.2200 4.9 +18.2250 4.9 +18.2300 4.9 +18.2350 4.9 +18.2400 4.9 +18.2450 4.9 +18.2500 4.9 +18.2550 4.9 +18.2600 4.9 +18.2650 4.9 +18.2700 4.9 +18.2750 4.9 +18.2800 4.9 +18.2850 4.9 +18.2900 4.9 +18.2950 4.9 +18.3000 4.9 +18.3050 4.9 +18.3100 4.9 +18.3150 4.9 +18.3200 4.9 +18.3250 4.9 +18.3300 4.9 +18.3350 4.9 +18.3400 4.9 +18.3450 4.9 +18.3500 5.0 +18.3550 4.9 +18.3600 4.9 +18.3650 4.9 +18.3700 4.9 +18.3750 4.9 +18.3800 4.9 +18.3850 4.9 +18.3900 4.9 +18.3950 4.9 +18.4000 4.9 +18.4050 4.9 +18.4100 4.9 +18.4150 4.9 +18.4200 4.9 +18.4250 4.8 +18.4300 4.9 +18.4350 4.9 +18.4400 4.9 +18.4450 4.9 +18.4500 4.9 +18.4550 4.9 +18.4600 4.9 +18.4650 4.9 +18.4700 5.0 +18.4750 4.9 +18.4800 5.0 +18.4850 4.9 +18.4900 4.9 +18.4950 4.9 +18.5000 4.9 +18.5050 4.9 +18.5100 4.9 +18.5150 4.9 +18.5200 4.9 +18.5250 4.9 +18.5300 4.9 +18.5350 4.9 +18.5400 4.9 +18.5450 4.9 +18.5500 4.9 +18.5550 4.9 +18.5600 4.9 +18.5650 4.9 +18.5700 4.9 +18.5750 4.9 +18.5800 4.9 +18.5850 4.9 +18.5900 4.9 +18.5950 4.9 +18.6000 4.9 +18.6050 4.9 +18.6100 4.9 +18.6150 5.0 +18.6200 4.9 +18.6250 4.9 +18.6300 4.9 +18.6350 4.9 +18.6400 4.9 +18.6450 4.9 +18.6500 4.9 +18.6550 4.9 +18.6600 4.9 +18.6650 4.9 +18.6700 4.9 +18.6750 5.0 +18.6800 4.9 +18.6850 5.0 +18.6900 4.9 +18.6950 4.9 +18.7000 4.9 +18.7050 5.0 +18.7100 4.9 +18.7150 5.0 +18.7200 4.9 +18.7250 4.9 +18.7300 4.9 +18.7350 4.9 +18.7400 4.9 +18.7450 5.0 +18.7500 4.9 +18.7550 4.9 +18.7600 4.9 +18.7650 4.9 +18.7700 4.9 +18.7750 4.9 +18.7800 4.9 +18.7850 4.9 +18.7900 4.9 +18.7950 4.9 +18.8000 4.9 +18.8050 4.9 +18.8100 5.0 +18.8150 4.9 +18.8200 4.9 +18.8250 4.9 +18.8300 4.9 +18.8350 4.9 +18.8400 4.9 +18.8450 4.9 +18.8500 4.9 +18.8550 4.9 +18.8600 5.0 +18.8650 4.9 +18.8700 4.9 +18.8750 4.9 +18.8800 4.9 +18.8850 4.9 +18.8900 5.0 +18.8950 4.9 +18.9000 5.0 +18.9050 4.9 +18.9100 5.0 +18.9150 4.9 +18.9200 5.0 +18.9250 4.9 +18.9300 5.0 +18.9350 4.9 +18.9400 5.0 +18.9450 4.9 +18.9500 5.0 +18.9550 4.9 +18.9600 4.9 +18.9650 4.9 +18.9700 4.9 +18.9750 4.9 +18.9800 4.9 +18.9850 4.9 +18.9900 4.9 +18.9950 4.9 +19.0000 4.9 +19.0050 4.9 +19.0100 4.9 +19.0150 4.9 +19.0200 4.9 +19.0250 5.0 +19.0300 4.9 +19.0350 4.9 +19.0400 4.9 +19.0450 5.0 +19.0500 4.9 +19.0550 5.0 +19.0600 4.9 +19.0650 4.9 +19.0700 4.9 +19.0750 4.9 +19.0800 4.9 +19.0850 4.9 +19.0900 4.9 +19.0950 5.0 +19.1000 4.9 +19.1050 5.0 +19.1100 4.9 +19.1150 5.0 +19.1200 4.9 +19.1250 5.0 +19.1300 4.9 +19.1350 5.0 +19.1400 4.9 +19.1450 4.9 +19.1500 4.9 +19.1550 4.9 +19.1600 4.9 +19.1650 5.0 +19.1700 4.9 +19.1750 5.0 +19.1800 4.9 +19.1850 5.0 +19.1900 4.9 +19.1950 4.9 +19.2000 4.9 +19.2050 5.0 +19.2100 4.9 +19.2150 4.9 +19.2200 5.0 +19.2250 4.9 +19.2300 4.9 +19.2350 4.9 +19.2400 4.9 +19.2450 4.9 +19.2500 5.0 +19.2550 4.9 +19.2600 5.0 +19.2650 4.9 +19.2700 5.0 +19.2750 4.9 +19.2800 4.9 +19.2850 4.9 +19.2900 4.9 +19.2950 4.9 +19.3000 4.9 +19.3050 4.9 +19.3100 4.9 +19.3150 4.9 +19.3200 5.0 +19.3250 4.9 +19.3300 5.0 +19.3350 4.9 +19.3400 5.0 +19.3450 4.9 +19.3500 5.0 +19.3550 4.9 +19.3600 5.0 +19.3650 4.9 +19.3700 5.0 +19.3750 4.9 +19.3800 4.9 +19.3850 4.9 +19.3900 5.0 +19.3950 4.9 +19.4000 5.0 +19.4050 4.9 +19.4100 5.0 +19.4150 4.9 +19.4200 5.0 +19.4250 4.9 +19.4300 5.0 +19.4350 4.9 +19.4400 4.9 +19.4450 4.9 +19.4500 4.9 +19.4550 4.9 +19.4600 4.9 +19.4650 4.9 +19.4700 4.9 +19.4750 5.0 +19.4800 4.9 +19.4850 4.9 +19.4900 4.9 +19.4950 5.0 +19.5000 4.9 +19.5050 5.0 +19.5100 4.9 +19.5150 4.9 +19.5200 4.9 +19.5250 5.0 +19.5300 4.9 +19.5350 5.0 +19.5400 4.9 +19.5450 5.0 +19.5500 4.9 +19.5550 4.9 +19.5600 4.9 +19.5650 5.0 +19.5700 4.9 +19.5750 4.9 +19.5800 4.9 +19.5850 5.0 +19.5900 4.9 +19.5950 5.0 +19.6000 4.9 +19.6050 5.0 +19.6100 4.9 +19.6150 5.0 +19.6200 4.9 +19.6250 5.0 +19.6300 4.9 +19.6350 5.0 +19.6400 4.9 +19.6450 5.0 +19.6500 4.9 +19.6550 5.0 +19.6600 4.9 +19.6650 5.0 +19.6700 4.9 +19.6750 4.9 +19.6800 4.9 +19.6850 4.9 +19.6900 4.9 +19.6950 4.9 +19.7000 4.9 +19.7050 4.9 +19.7100 5.0 +19.7150 4.9 +19.7200 5.0 +19.7250 4.9 +19.7300 4.9 +19.7350 4.9 +19.7400 4.9 +19.7450 4.9 +19.7500 4.9 +19.7550 4.9 +19.7600 4.9 +19.7650 4.9 +19.7700 5.0 +19.7750 4.9 +19.7800 5.0 +19.7850 4.9 +19.7900 4.9 +19.7950 4.9 +19.8000 4.9 +19.8050 4.9 +19.8100 4.9 +19.8150 4.9 +19.8200 4.9 +19.8250 4.9 +19.8300 4.9 +19.8350 4.9 +19.8400 4.9 +19.8450 4.9 +19.8500 5.0 +19.8550 4.9 +19.8600 5.0 +19.8650 4.9 +19.8700 5.0 +19.8750 4.9 +19.8800 5.0 +19.8850 4.9 +19.8900 5.0 +19.8950 4.9 +19.9000 4.9 +19.9050 4.9 +19.9100 4.9 +19.9150 4.9 +19.9200 5.0 +19.9250 4.9 +19.9300 5.0 +19.9350 4.9 +19.9400 4.9 +19.9450 4.9 +19.9500 4.9 +19.9550 4.9 +19.9600 4.9 +19.9650 5.0 +19.9700 4.9 +19.9750 4.9 +19.9800 4.9 +19.9850 4.9 +19.9900 4.9 +19.9950 4.9 +20.0000 4.9 +20.0050 5.0 +20.0100 4.9 +20.0150 4.9 +20.0200 4.9 +20.0250 4.9 +20.0300 4.9 +20.0350 4.9 +20.0400 4.9 +20.0450 5.0 +20.0500 4.9 +20.0550 5.0 +20.0600 4.9 +20.0650 4.9 +20.0700 4.9 +20.0750 4.9 +20.0800 4.9 +20.0850 5.0 +20.0900 4.9 +20.0950 5.0 +20.1000 4.9 +20.1050 5.0 +20.1100 4.9 +20.1150 5.0 +20.1200 4.9 +20.1250 5.0 +20.1300 4.9 +20.1350 4.9 +20.1400 4.9 +20.1450 4.9 +20.1500 4.9 +20.1550 4.9 +20.1600 4.9 +20.1650 5.0 +20.1700 4.9 +20.1750 5.0 +20.1800 4.9 +20.1850 4.9 +20.1900 4.9 +20.1950 4.9 +20.2000 4.9 +20.2050 4.9 +20.2100 4.9 +20.2150 4.9 +20.2200 4.9 +20.2250 4.9 +20.2300 4.9 +20.2350 4.9 +20.2400 4.9 +20.2450 4.9 +20.2500 4.9 +20.2550 4.9 +20.2600 5.0 +20.2650 4.9 +20.2700 4.9 +20.2750 4.9 +20.2800 5.0 +20.2850 4.9 +20.2900 5.0 +20.2950 4.9 +20.3000 5.0 +20.3050 4.9 +20.3100 5.0 +20.3150 4.9 +20.3200 4.9 +20.3250 4.9 +20.3300 5.0 +20.3350 4.9 +20.3400 5.0 +20.3450 4.9 +20.3500 5.0 +20.3550 4.9 +20.3600 5.0 +20.3650 4.9 +20.3700 5.0 +20.3750 4.9 +20.3800 5.0 +20.3850 4.9 +20.3900 5.0 +20.3950 4.9 +20.4000 4.9 +20.4050 4.9 +20.4100 4.9 +20.4150 4.9 +20.4200 5.0 +20.4250 4.9 +20.4300 4.9 +20.4350 4.9 +20.4400 4.9 +20.4450 4.9 +20.4500 4.9 +20.4550 5.0 +20.4600 4.9 +20.4650 4.9 +20.4700 4.9 +20.4750 4.9 +20.4800 4.9 +20.4850 4.9 +20.4900 4.9 +20.4950 4.9 +20.5000 4.9 +20.5050 5.0 +20.5100 4.9 +20.5150 4.9 +20.5200 4.9 +20.5250 4.9 +20.5300 4.9 +20.5350 5.0 +20.5400 4.9 +20.5450 5.0 +20.5500 4.9 +20.5550 4.9 +20.5600 4.9 +20.5650 4.9 +20.5700 4.8 +20.5750 4.9 +20.5800 4.9 +20.5850 4.9 +20.5900 4.9 +20.5950 4.9 +20.6000 4.9 +20.6050 4.9 +20.6100 4.9 +20.6150 5.0 +20.6200 4.9 +20.6250 5.0 +20.6300 4.9 +20.6350 5.0 +20.6400 4.9 +20.6450 4.9 +20.6500 4.9 +20.6550 4.9 +20.6600 4.9 +20.6650 4.9 +20.6700 4.9 +20.6750 4.9 +20.6800 4.9 +20.6850 4.9 +20.6900 5.0 +20.6950 4.9 +20.7000 4.9 +20.7050 4.9 +20.7100 4.9 +20.7150 4.9 +20.7200 4.9 +20.7250 4.9 +20.7300 4.9 +20.7350 4.9 +20.7400 4.9 +20.7450 4.9 +20.7500 4.9 +20.7550 4.9 +20.7600 4.9 +20.7650 4.9 +20.7700 4.9 +20.7750 4.9 +20.7800 4.9 +20.7850 4.9 +20.7900 4.9 +20.7950 4.9 +20.8000 4.9 +20.8050 4.8 +20.8100 4.9 +20.8150 4.8 +20.8200 4.9 +20.8250 4.9 +20.8300 4.9 +20.8350 4.9 +20.8400 4.9 +20.8450 4.9 +20.8500 5.0 +20.8550 4.9 +20.8600 5.0 +20.8650 4.9 +20.8700 4.9 +20.8750 4.9 +20.8800 4.9 +20.8850 4.9 +20.8900 4.9 +20.8950 4.9 +20.9000 4.9 +20.9050 4.9 +20.9100 4.9 +20.9150 4.9 +20.9200 4.9 +20.9250 4.9 +20.9300 4.9 +20.9350 4.9 +20.9400 4.9 +20.9450 4.9 +20.9500 4.9 +20.9550 4.9 +20.9600 4.9 +20.9650 4.9 +20.9700 4.9 +20.9750 4.9 +20.9800 4.9 +20.9850 4.9 +20.9900 4.9 +20.9950 4.9 +21.0000 4.9 +21.0050 5.0 +21.0100 4.9 +21.0150 4.9 +21.0200 4.9 +21.0250 4.9 +21.0300 4.9 +21.0350 4.9 +21.0400 4.8 +21.0450 4.9 +21.0500 4.8 +21.0550 4.9 +21.0600 4.9 +21.0650 4.9 +21.0700 4.9 +21.0750 5.0 +21.0800 4.9 +21.0850 4.9 +21.0900 4.9 +21.0950 4.9 +21.1000 4.9 +21.1050 4.9 +21.1100 4.9 +21.1150 4.9 +21.1200 4.8 +21.1250 4.9 +21.1300 4.9 +21.1350 4.9 +21.1400 4.9 +21.1450 4.9 +21.1500 4.9 +21.1550 4.9 +21.1600 4.9 +21.1650 4.9 +21.1700 4.9 +21.1750 4.9 +21.1800 4.9 +21.1850 4.9 +21.1900 4.9 +21.1950 4.9 +21.2000 4.9 +21.2050 4.9 +21.2100 4.9 +21.2150 4.9 +21.2200 4.9 +21.2250 4.9 +21.2300 4.9 +21.2350 4.9 +21.2400 4.9 +21.2450 4.9 +21.2500 4.9 +21.2550 4.9 +21.2600 4.9 +21.2650 4.9 +21.2700 4.9 +21.2750 4.8 +21.2800 4.9 +21.2850 4.9 +21.2900 4.9 +21.2950 4.9 +21.3000 5.0 +21.3050 4.9 +21.3100 4.9 +21.3150 4.9 +21.3200 4.9 +21.3250 4.9 +21.3300 4.9 +21.3350 4.9 +21.3400 4.9 +21.3450 4.9 +21.3500 4.9 +21.3550 4.9 +21.3600 4.9 +21.3650 4.9 +21.3700 4.9 +21.3750 4.9 +21.3800 5.0 +21.3850 4.9 +21.3900 5.0 +21.3950 4.9 +21.4000 4.9 +21.4050 4.9 +21.4100 4.9 +21.4150 4.9 +21.4200 4.9 +21.4250 4.9 +21.4300 4.9 +21.4350 4.9 +21.4400 4.9 +21.4450 4.9 +21.4500 4.9 +21.4550 4.9 +21.4600 4.9 +21.4650 4.9 +21.4700 4.9 +21.4750 4.9 +21.4800 4.9 +21.4850 4.9 +21.4900 4.8 +21.4950 4.9 +21.5000 4.9 +21.5050 4.9 +21.5100 4.9 +21.5150 4.9 +21.5200 4.9 +21.5250 4.9 +21.5300 4.9 +21.5350 4.9 +21.5400 4.9 +21.5450 4.9 +21.5500 4.9 +21.5550 4.9 +21.5600 4.9 +21.5650 4.9 +21.5700 4.9 +21.5750 5.0 +21.5800 4.9 +21.5850 5.0 +21.5900 4.9 +21.5950 4.9 +21.6000 4.9 +21.6050 4.9 +21.6100 4.9 +21.6150 5.0 +21.6200 4.9 +21.6250 5.0 +21.6300 4.9 +21.6350 4.9 +21.6400 4.9 +21.6450 4.9 +21.6500 4.9 +21.6550 4.9 +21.6600 4.9 +21.6650 5.0 +21.6700 4.9 +21.6750 4.9 +21.6800 4.9 +21.6850 4.9 +21.6900 4.9 +21.6950 4.9 +21.7000 4.9 +21.7050 4.9 +21.7100 4.9 +21.7150 4.9 +21.7200 4.9 +21.7250 4.9 +21.7300 4.9 +21.7350 4.9 +21.7400 4.9 +21.7450 4.9 +21.7500 4.9 +21.7550 4.9 +21.7600 4.9 +21.7650 4.9 +21.7700 4.9 +21.7750 4.9 +21.7800 4.9 +21.7850 4.8 +21.7900 4.9 +21.7950 4.9 +21.8000 4.9 +21.8050 4.9 +21.8100 5.0 +21.8150 4.9 +21.8200 4.9 +21.8250 4.9 +21.8300 5.0 +21.8350 4.9 +21.8400 4.9 +21.8450 4.9 +21.8500 4.9 +21.8550 4.9 +21.8600 4.9 +21.8650 4.9 +21.8700 4.9 +21.8750 4.9 +21.8800 4.9 +21.8850 4.9 +21.8900 5.0 +21.8950 4.9 +21.9000 4.9 +21.9050 4.9 +21.9100 4.9 +21.9150 4.9 +21.9200 4.9 +21.9250 4.9 +21.9300 4.9 +21.9350 4.9 +21.9400 4.9 +21.9450 4.9 +21.9500 4.9 +21.9550 4.9 +21.9600 4.9 +21.9650 4.9 +21.9700 4.9 +21.9750 4.9 +21.9800 4.9 +21.9850 4.9 +21.9900 4.9 +21.9950 4.9 +22.0000 4.9 +22.0050 4.9 +22.0100 4.9 +22.0150 4.9 +22.0200 4.9 +22.0250 4.9 +22.0300 4.9 +22.0350 4.9 +22.0400 4.9 +22.0450 5.0 +22.0500 4.9 +22.0550 4.9 +22.0600 4.9 +22.0650 4.9 +22.0700 4.9 +22.0750 4.9 +22.0800 4.9 +22.0850 4.9 +22.0900 4.9 +22.0950 4.9 +22.1000 4.9 +22.1050 4.9 +22.1100 4.9 +22.1150 4.9 +22.1200 4.9 +22.1250 5.0 +22.1300 4.9 +22.1350 5.0 +22.1400 4.9 +22.1450 4.9 +22.1500 4.9 +22.1550 5.0 +22.1600 4.9 +22.1650 4.9 +22.1700 4.9 +22.1750 5.0 +22.1800 4.9 +22.1850 4.9 +22.1900 4.9 +22.1950 5.0 +22.2000 4.9 +22.2050 4.9 +22.2100 4.9 +22.2150 4.9 +22.2200 4.9 +22.2250 4.9 +22.2300 4.9 +22.2350 4.9 +22.2400 4.9 +22.2450 4.9 +22.2500 4.9 +22.2550 4.9 +22.2600 4.9 +22.2650 4.9 +22.2700 4.9 +22.2750 4.9 +22.2800 4.9 +22.2850 4.9 +22.2900 4.9 +22.2950 4.9 +22.3000 4.9 +22.3050 4.9 +22.3100 4.9 +22.3150 4.9 +22.3200 4.9 +22.3250 4.9 +22.3300 4.9 +22.3350 4.9 +22.3400 4.9 +22.3450 4.9 +22.3500 4.9 +22.3550 4.9 +22.3600 5.0 +22.3650 4.9 +22.3700 5.0 +22.3750 4.9 +22.3800 5.0 +22.3850 4.9 +22.3900 5.0 +22.3950 4.9 +22.4000 5.0 +22.4050 4.9 +22.4100 5.0 +22.4150 4.9 +22.4200 5.0 +22.4250 4.9 +22.4300 5.0 +22.4350 4.9 +22.4400 5.0 +22.4450 4.9 +22.4500 4.9 +22.4550 4.9 +22.4600 5.0 +22.4650 4.9 +22.4700 4.9 +22.4750 4.9 +22.4800 4.9 +22.4850 4.9 +22.4900 4.9 +22.4950 4.9 +22.5000 5.0 +22.5050 4.9 +22.5100 4.9 +22.5150 4.9 +22.5200 4.9 +22.5250 4.9 +22.5300 4.9 +22.5350 4.9 +22.5400 4.9 +22.5450 4.9 +22.5500 4.9 +22.5550 4.9 +22.5600 4.9 +22.5650 5.0 +22.5700 4.9 +22.5750 4.9 +22.5800 4.9 +22.5850 5.0 +22.5900 4.9 +22.5950 5.0 +22.6000 4.9 +22.6050 5.0 +22.6100 4.9 +22.6150 4.9 +22.6200 4.9 +22.6250 4.9 +22.6300 4.9 +22.6350 4.9 +22.6400 4.9 +22.6450 5.0 +22.6500 4.9 +22.6550 5.0 +22.6600 4.9 +22.6650 5.0 +22.6700 4.9 +22.6750 4.9 +22.6800 4.9 +22.6850 5.0 +22.6900 4.9 +22.6950 5.0 +22.7000 4.9 +22.7050 5.0 +22.7100 4.9 +22.7150 4.9 +22.7200 4.9 +22.7250 5.0 +22.7300 4.9 +22.7350 5.0 +22.7400 4.9 +22.7450 5.0 +22.7500 4.9 +22.7550 4.9 +22.7600 4.9 +22.7650 5.0 +22.7700 4.9 +22.7750 4.9 +22.7800 4.9 +22.7850 4.9 +22.7900 4.9 +22.7950 4.9 +22.8000 4.9 +22.8050 4.9 +22.8100 4.9 +22.8150 4.9 +22.8200 4.9 +22.8250 4.9 +22.8300 4.9 +22.8350 4.9 +22.8400 4.9 +22.8450 4.9 +22.8500 4.9 +22.8550 4.9 +22.8600 4.9 +22.8650 4.9 +22.8700 4.9 +22.8750 4.9 +22.8800 5.0 +22.8850 4.9 +22.8900 5.0 +22.8950 4.9 +22.9000 4.9 +22.9050 4.9 +22.9100 4.9 +22.9150 4.9 +22.9200 4.9 +22.9250 4.9 +22.9300 5.0 +22.9350 4.9 +22.9400 5.0 +22.9450 4.9 +22.9500 4.9 +22.9550 4.9 +22.9600 5.0 +22.9650 4.9 +22.9700 5.0 +22.9750 4.9 +22.9800 5.0 +22.9850 4.9 +22.9900 4.9 +22.9950 4.9 +23.0000 5.0 +23.0050 4.9 +23.0100 4.9 +23.0150 4.7 +23.0200 4.5 +23.0250 4.2 +23.0300 3.9 +23.0350 3.5 +23.0400 3.3 +23.0450 3.0 +23.0500 2.9 +23.0550 2.7 +23.0600 2.7 +23.0650 2.7 +23.0700 2.7 +23.0750 2.8 +23.0800 2.8 +23.0850 2.9 +23.0900 2.8 +23.0950 2.7 +23.1000 2.6 +23.1050 2.4 +23.1100 2.3 +23.1150 2.1 +23.1200 2.0 +23.1250 1.8 +23.1300 1.8 +23.1350 1.7 +23.1400 1.7 +23.1450 1.7 +23.1500 1.7 +23.1550 1.7 +23.1600 1.8 +23.1650 1.8 +23.1700 1.7 +23.1750 1.8 +23.1800 1.8 +23.1850 1.6 +23.1900 1.5 +23.1950 1.5 +23.2000 1.3 +23.2050 1.2 +23.2100 1.2 +23.2150 1.2 +23.2200 1.1 +23.2250 1.1 +23.2300 1.2 +23.2350 1.3 +23.2400 1.2 +23.2450 1.2 +23.2500 1.3 +23.2550 1.3 +23.2600 1.1 +23.2650 1.1 +23.2700 1.2 +23.2750 1.1 +23.2800 0.9 +23.2850 0.9 +23.2900 0.9 +23.2950 0.9 +23.3000 0.9 +23.3050 0.8 +23.3100 0.9 +23.3150 1.0 +23.3200 1.0 +23.3250 0.9 +23.3300 0.9 +23.3350 1.0 +23.3400 1.0 +23.3450 0.8 +23.3500 0.7 +23.3550 0.8 +23.3600 0.9 +23.3650 0.7 +23.3700 0.6 +23.3750 0.7 +23.3800 0.8 +23.3850 0.7 +23.3900 0.7 +23.3950 0.8 +23.4000 0.8 +23.4050 0.7 +23.4100 0.8 +23.4150 0.8 +23.4200 0.7 +23.4250 0.6 +23.4300 0.6 +23.4350 0.7 +23.4400 0.6 +23.4450 0.5 +23.4500 0.5 +23.4550 0.6 +23.4600 0.6 +23.4650 0.6 +23.4700 0.6 +23.4750 0.6 +23.4800 0.6 +23.4850 0.6 +23.4900 0.6 +23.4950 0.6 +23.5000 0.6 +23.5050 0.5 +23.5100 0.5 +23.5150 0.6 +23.5200 0.6 +23.5250 0.5 +23.5300 0.4 +23.5350 0.4 +23.5400 0.5 +23.5450 0.5 +23.5500 0.5 +23.5550 0.5 +23.5600 0.5 +23.5650 0.5 +23.5700 0.5 +23.5750 0.6 +23.5800 0.5 +23.5850 0.5 +23.5900 0.4 +23.5950 0.4 +23.6000 0.4 +23.6050 0.4 +23.6100 0.4 +23.6150 0.4 +23.6200 0.4 +23.6250 0.4 +23.6300 0.4 +23.6350 0.4 +23.6400 0.4 +23.6450 0.4 +23.6500 0.5 +23.6550 0.5 +23.6600 0.4 +23.6650 0.4 +23.6700 0.4 +23.6750 0.3 +23.6800 0.4 +23.6850 0.4 +23.6900 0.4 +23.6950 0.4 +23.7000 0.4 +23.7050 0.4 +23.7100 0.3 +23.7150 0.4 +23.7200 0.4 +23.7250 0.4 +23.7300 0.4 +23.7350 0.4 +23.7400 0.4 +23.7450 0.4 +23.7500 0.3 +23.7550 0.3 +23.7600 0.3 +23.7650 0.3 +23.7700 0.3 +23.7750 0.3 +23.7800 0.4 +23.7850 0.3 +23.7900 0.3 +23.7950 0.3 +23.8000 0.3 +23.8050 0.3 +23.8100 0.3 +23.8150 0.3 +23.8200 0.3 +23.8250 0.3 +23.8300 0.3 +23.8350 0.3 +23.8400 0.3 +23.8450 0.3 +23.8500 0.3 +23.8550 0.3 +23.8600 0.3 +23.8650 0.3 +23.8700 0.3 +23.8750 0.3 +23.8800 0.3 +23.8850 0.3 +23.8900 0.3 +23.8950 0.3 +23.9000 0.3 +23.9050 0.3 +23.9100 0.3 +23.9150 0.3 +23.9200 0.3 +23.9250 0.2 +23.9300 0.2 +23.9350 0.3 +23.9400 0.3 +23.9450 0.3 +23.9500 0.3 +23.9550 0.3 +23.9600 0.3 +23.9650 0.3 +23.9700 0.3 +23.9750 0.2 +23.9800 0.2 +23.9850 0.2 +23.9900 0.2 +23.9950 0.2 +24.0000 0.2 +24.0050 0.2 +24.0100 0.2 +24.0150 0.2 +24.0200 0.2 +24.0250 0.2 +24.0300 0.2 +24.0350 0.2 +24.0400 0.2 +24.0450 0.2 +24.0500 0.2 +24.0550 0.2 +24.0600 0.2 +24.0650 0.2 +24.0700 0.2 +24.0750 0.2 +24.0800 0.2 +24.0850 0.2 +24.0900 0.2 +24.0950 0.2 +24.1000 0.2 +24.1050 0.2 +24.1100 0.2 +24.1150 0.2 +24.1200 0.2 +24.1250 0.2 +24.1300 0.2 +24.1350 0.2 +24.1400 0.2 +24.1450 0.2 +24.1500 0.2 +24.1550 0.2 +24.1600 0.2 +24.1650 0.2 +24.1700 0.2 +24.1750 0.2 +24.1800 0.2 +24.1850 0.2 +24.1900 0.2 +24.1950 0.2 +24.2000 0.2 +24.2050 0.2 +24.2100 0.2 +24.2150 0.2 +24.2200 0.2 +24.2250 0.2 +24.2300 0.2 +24.2350 0.2 +24.2400 0.2 +24.2450 0.2 +24.2500 0.2 +24.2550 0.2 +24.2600 0.2 +24.2650 0.2 +24.2700 0.2 +24.2750 0.2 +24.2800 0.2 +24.2850 0.2 +24.2900 0.2 +24.2950 0.2 +24.3000 0.2 +24.3050 0.2 +24.3100 0.2 +24.3150 0.2 +24.3200 0.2 +24.3250 0.2 +24.3300 0.2 +24.3350 0.2 +24.3400 0.2 +24.3450 0.2 +24.3500 0.2 +24.3550 0.2 +24.3600 0.2 +24.3650 0.2 +24.3700 0.2 +24.3750 0.2 +24.3800 0.2 +24.3850 0.2 +24.3900 0.2 +24.3950 0.2 +24.4000 0.2 +24.4050 0.2 +24.4100 0.2 +24.4150 0.2 +24.4200 0.2 +24.4250 0.2 +24.4300 0.2 +24.4350 0.2 +24.4400 0.2 +24.4450 0.2 +24.4500 0.2 +24.4550 0.2 +24.4600 0.2 +24.4650 0.2 +24.4700 0.2 +24.4750 0.2 +24.4800 0.2 +24.4850 0.2 +24.4900 0.2 +24.4950 0.2 +24.5000 0.2 +24.5050 0.2 +24.5100 0.2 +24.5150 0.2 +24.5200 0.2 +24.5250 0.2 +24.5300 0.2 +24.5350 0.2 +24.5400 0.2 +24.5450 0.2 +24.5500 0.2 +24.5550 0.2 +24.5600 0.2 +24.5650 0.2 +24.5700 0.2 +24.5750 0.2 +24.5800 0.2 +24.5850 0.2 +24.5900 0.2 +24.5950 0.2 +24.6000 0.2 +24.6050 0.2 +24.6100 0.2 +24.6150 0.2 +24.6200 0.2 +24.6250 0.2 +24.6300 0.2 +24.6350 0.2 +24.6400 0.2 +24.6450 0.2 +24.6500 0.2 +24.6550 0.2 +24.6600 0.2 +24.6650 0.2 +24.6700 0.2 +24.6750 0.2 +24.6800 0.2 +24.6850 0.2 +24.6900 0.2 +24.6950 0.2 +24.7000 0.2 +24.7050 0.2 +24.7100 0.2 +24.7150 0.2 +24.7200 0.2 +24.7250 0.2 +24.7300 0.2 +24.7350 0.2 +24.7400 0.2 +24.7450 0.2 +24.7500 0.2 +24.7550 0.2 +24.7600 0.2 +24.7650 0.2 +24.7700 0.2 +24.7750 0.2 +24.7800 0.2 +24.7850 0.2 +24.7900 0.2 +24.7950 0.2 +24.8000 0.2 +24.8050 0.2 +24.8100 0.2 +24.8150 0.2 +24.8200 0.2 +24.8250 0.2 +24.8300 0.2 +24.8350 0.2 +24.8400 0.2 +24.8450 0.2 +24.8500 0.2 +24.8550 0.2 +24.8600 0.2 +24.8650 0.2 +24.8700 0.2 +24.8750 0.2 +24.8800 0.2 +24.8850 0.2 +24.8900 0.2 +24.8950 0.2 +24.9000 0.2 +24.9050 0.2 +24.9100 0.2 +24.9150 0.2 +24.9200 0.2 +24.9250 0.2 +24.9300 0.2 +24.9350 0.2 +24.9400 0.2 +24.9450 0.2 +24.9500 0.2 +24.9550 0.2 +24.9600 0.2 +24.9650 0.2 +24.9700 0.2 +24.9750 0.2 +24.9800 0.2 +24.9850 0.2 +24.9900 0.2 +24.9950 0.2 +25.0000 0.2 +25.0050 0.2 +25.0100 0.2 +25.0150 0.2 +25.0200 0.2 +25.0250 0.2 +25.0300 0.2 +25.0350 0.2 +25.0400 0.2 +25.0450 0.2 +25.0500 0.2 +25.0550 0.2 +25.0600 0.2 +25.0650 0.2 +25.0700 0.2 +25.0750 0.2 +25.0800 0.2 +25.0850 0.2 +25.0900 0.2 +25.0950 0.2 +25.1000 0.2 +25.1050 0.2 +25.1100 0.2 +25.1150 0.2 +25.1200 0.2 +25.1250 0.2 +25.1300 0.2 +25.1350 0.2 +25.1400 0.2 +25.1450 0.2 +25.1500 0.2 +25.1550 0.2 +25.1600 0.2 +25.1650 0.2 +25.1700 0.2 +25.1750 0.2 +25.1800 0.2 +25.1850 0.2 +25.1900 0.2 +25.1950 0.2 +25.2000 0.2 +25.2050 0.2 +25.2100 0.2 +25.2150 0.2 +25.2200 0.2 +25.2250 0.2 +25.2300 0.2 +25.2350 0.2 +25.2400 0.2 +25.2450 0.2 +25.2500 0.2 +25.2550 0.2 +25.2600 0.2 +25.2650 0.2 +25.2700 0.2 +25.2750 0.2 +25.2800 0.2 +25.2850 0.2 +25.2900 0.2 +25.2950 0.2 +25.3000 0.2 +25.3050 0.2 +25.3100 0.2 +25.3150 0.2 +25.3200 0.2 +25.3250 0.2 +25.3300 0.2 +25.3350 0.2 +25.3400 0.2 +25.3450 0.2 +25.3500 0.2 +25.3550 0.2 +25.3600 0.2 +25.3650 0.2 +25.3700 0.2 +25.3750 0.2 +25.3800 0.2 +25.3850 0.2 +25.3900 0.2 +25.3950 0.2 +25.4000 0.2 +25.4050 0.2 +25.4100 0.2 +25.4150 0.2 +25.4200 0.2 +25.4250 0.2 +25.4300 0.2 +25.4350 0.2 +25.4400 0.2 +25.4450 0.2 +25.4500 0.2 +25.4550 0.2 +25.4600 0.2 +25.4650 0.2 +25.4700 0.2 +25.4750 0.2 +25.4800 0.2 +25.4850 0.2 +25.4900 0.2 +25.4950 0.2 +25.5000 0.2 +25.5050 0.2 +25.5100 0.2 +25.5150 0.2 +25.5200 0.2 +25.5250 0.2 +25.5300 0.2 +25.5350 0.2 +25.5400 0.2 +25.5450 0.2 +25.5500 0.2 +25.5550 0.2 +25.5600 0.2 +25.5650 0.2 +25.5700 0.2 +25.5750 0.2 +25.5800 0.2 +25.5850 0.2 +25.5900 0.2 +25.5950 0.2 +25.6000 0.2 +25.6050 0.2 +25.6100 0.2 +25.6150 0.2 +25.6200 0.2 +25.6250 0.2 +25.6300 0.2 +25.6350 0.2 +25.6400 0.2 +25.6450 0.2 +25.6500 0.2 +25.6550 0.2 +25.6600 0.2 +25.6650 0.2 +25.6700 0.2 +25.6750 0.2 +25.6800 0.2 +25.6850 0.2 +25.6900 0.2 +25.6950 0.2 +25.7000 0.2 +25.7050 0.2 +25.7100 0.2 +25.7150 0.2 +25.7200 0.2 +25.7250 0.2 +25.7300 0.2 +25.7350 0.2 +25.7400 0.2 +25.7450 0.2 +25.7500 0.2 +25.7550 0.2 +25.7600 0.2 +25.7650 0.2 +25.7700 0.2 +25.7750 0.2 +25.7800 0.2 +25.7850 0.2 +25.7900 0.2 +25.7950 0.2 +25.8000 0.2 +25.8050 0.2 +25.8100 0.2 +25.8150 0.2 +25.8200 0.2 +25.8250 0.2 +25.8300 0.2 +25.8350 0.2 +25.8400 0.2 +25.8450 0.2 +25.8500 0.2 +25.8550 0.2 +25.8600 0.2 +25.8650 0.2 +25.8700 0.2 +25.8750 0.2 +25.8800 0.2 +25.8850 0.2 +25.8900 0.2 +25.8950 0.2 +25.9000 0.2 +25.9050 0.2 +25.9100 0.2 +25.9150 0.2 +25.9200 0.2 +25.9250 0.2 +25.9300 0.2 +25.9350 0.2 +25.9400 0.2 +25.9450 0.2 +25.9500 0.2 +25.9550 0.2 +25.9600 0.2 +25.9650 0.2 +25.9700 0.2 +25.9750 0.2 +25.9800 0.2 +25.9850 0.2 +25.9900 0.2 +25.9950 0.2 +26.0000 0.2 +26.0050 0.2 +26.0100 0.2 +26.0150 0.2 +26.0200 0.2 +26.0250 0.2 +26.0300 0.2 +26.0350 0.2 +26.0400 0.2 +26.0450 0.2 +26.0500 0.2 +26.0550 0.2 +26.0600 0.2 +26.0650 0.2 +26.0700 0.2 +26.0750 0.2 +26.0800 0.2 +26.0850 0.2 +26.0900 0.2 +26.0950 0.2 +26.1000 0.2 +26.1050 0.2 +26.1100 0.2 +26.1150 0.2 +26.1200 0.2 +26.1250 0.2 +26.1300 0.2 +26.1350 0.2 +26.1400 0.2 +26.1450 0.2 +26.1500 0.2 +26.1550 0.2 +26.1600 0.2 +26.1650 0.2 +26.1700 0.2 +26.1750 0.2 +26.1800 0.2 +26.1850 0.2 +26.1900 0.2 +26.1950 0.2 +26.2000 0.2 +26.2050 0.2 +26.2100 0.2 +26.2150 0.2 +26.2200 0.2 +26.2250 0.2 +26.2300 0.2 +26.2350 0.2 +26.2400 0.2 +26.2450 0.2 +26.2500 0.2 +26.2550 0.2 +26.2600 0.2 +26.2650 0.2 +26.2700 0.2 +26.2750 0.2 +26.2800 0.2 +26.2850 0.2 +26.2900 0.2 +26.2950 0.2 +26.3000 0.2 +26.3050 0.2 +26.3100 0.2 +26.3150 0.2 +26.3200 0.2 +26.3250 0.2 +26.3300 0.2 +26.3350 0.2 +26.3400 0.2 +26.3450 0.2 +26.3500 0.2 +26.3550 0.2 +26.3600 0.2 +26.3650 0.2 +26.3700 0.2 +26.3750 0.2 +26.3800 0.2 +26.3850 0.2 +26.3900 0.2 +26.3950 0.2 +26.4000 0.2 +26.4050 0.2 +26.4100 0.2 +26.4150 0.2 +26.4200 0.2 +26.4250 0.2 +26.4300 0.2 +26.4350 0.2 +26.4400 0.2 +26.4450 0.2 +26.4500 0.2 +26.4550 0.2 +26.4600 0.2 +26.4650 0.2 +26.4700 0.2 +26.4750 0.2 +26.4800 0.2 +26.4850 0.2 +26.4900 0.2 +26.4950 0.2 +26.5000 0.2 +26.5050 0.2 +26.5100 0.2 +26.5150 0.2 +26.5200 0.2 +26.5250 0.2 +26.5300 0.2 +26.5350 0.2 +26.5400 0.2 +26.5450 0.2 +26.5500 0.2 +26.5550 0.2 +26.5600 0.2 +26.5650 0.2 +26.5700 0.2 +26.5750 0.2 +26.5800 0.2 +26.5850 0.2 +26.5900 0.2 +26.5950 0.2 +26.6000 0.2 +26.6050 0.2 +26.6100 0.2 +26.6150 0.2 +26.6200 0.2 +26.6250 0.2 +26.6300 0.2 +26.6350 0.2 +26.6400 0.2 +26.6450 0.2 +26.6500 0.2 +26.6550 0.2 +26.6600 0.2 +26.6650 0.2 +26.6700 0.2 +26.6750 0.2 +26.6800 0.2 +26.6850 0.2 +26.6900 0.2 +26.6950 0.2 +26.7000 0.2 +26.7050 0.2 +26.7100 0.2 +26.7150 0.2 +26.7200 0.2 +26.7250 0.2 +26.7300 0.2 +26.7350 0.2 +26.7400 0.2 +26.7450 0.2 +26.7500 0.2 +26.7550 0.2 +26.7600 0.2 +26.7650 0.2 +26.7700 0.2 +26.7750 0.2 +26.7800 0.2 +26.7850 0.2 +26.7900 0.2 +26.7950 0.2 +26.8000 0.2 +26.8050 0.2 +26.8100 0.2 +26.8150 0.2 +26.8200 0.2 +26.8250 0.2 +26.8300 0.2 +26.8350 0.2 +26.8400 0.2 +26.8450 0.2 +26.8500 0.2 +26.8550 0.2 +26.8600 0.2 +26.8650 0.2 +26.8700 0.2 +26.8750 0.2 +26.8800 0.2 +26.8850 0.2 +26.8900 0.2 +26.8950 0.2 +26.9000 0.2 +26.9050 0.2 +26.9100 0.2 +26.9150 0.2 +26.9200 0.2 +26.9250 0.2 +26.9300 0.2 +26.9350 0.2 +26.9400 0.2 +26.9450 0.2 +26.9500 0.2 +26.9550 0.2 +26.9600 0.2 +26.9650 0.2 +26.9700 0.2 +26.9750 0.2 +26.9800 0.2 +26.9850 0.2 +26.9900 0.2 +26.9950 0.2 +27.0000 0.2 +27.0050 0.2 +27.0100 0.2 +27.0150 0.2 +27.0200 0.2 +27.0250 0.2 +27.0300 0.2 +27.0350 0.2 +27.0400 0.2 +27.0450 0.2 +27.0500 0.2 +27.0550 0.2 +27.0600 0.2 +27.0650 0.2 +27.0700 0.2 +27.0750 0.2 +27.0800 0.2 +27.0850 0.2 +27.0900 0.2 +27.0950 0.2 +27.1000 0.2 +27.1050 0.2 +27.1100 0.2 +27.1150 0.2 +27.1200 0.2 +27.1250 0.2 +27.1300 0.2 +27.1350 0.2 +27.1400 0.2 +27.1450 0.2 +27.1500 0.2 +27.1550 0.2 +27.1600 0.2 +27.1650 0.2 +27.1700 0.2 +27.1750 0.2 +27.1800 0.2 +27.1850 0.2 +27.1900 0.2 +27.1950 0.2 +27.2000 0.2 +27.2050 0.2 +27.2100 0.2 +27.2150 0.2 +27.2200 0.2 +27.2250 0.2 +27.2300 0.2 +27.2350 0.2 +27.2400 0.2 +27.2450 0.2 +27.2500 0.2 +27.2550 0.2 +27.2600 0.2 +27.2650 0.2 +27.2700 0.2 +27.2750 0.2 +27.2800 0.2 +27.2850 0.2 +27.2900 0.2 +27.2950 0.2 +27.3000 0.2 +27.3050 0.2 +27.3100 0.2 +27.3150 0.2 +27.3200 0.2 +27.3250 0.2 +27.3300 0.2 +27.3350 0.2 +27.3400 0.2 +27.3450 0.2 +27.3500 0.2 +27.3550 0.2 +27.3600 0.2 +27.3650 0.2 +27.3700 0.2 +27.3750 0.2 +27.3800 0.2 +27.3850 0.2 +27.3900 0.2 +27.3950 0.2 +27.4000 0.2 +27.4050 0.2 +27.4100 0.2 +27.4150 0.2 +27.4200 0.2 +27.4250 0.2 +27.4300 0.2 +27.4350 0.2 +27.4400 0.2 +27.4450 0.2 +27.4500 0.2 +27.4550 0.2 +27.4600 0.2 +27.4650 0.2 +27.4700 0.2 +27.4750 0.2 +27.4800 0.2 +27.4850 0.2 +27.4900 0.2 +27.4950 0.2 +27.5000 0.2 +27.5050 0.2 +27.5100 0.2 +27.5150 0.2 +27.5200 0.2 +27.5250 0.2 +27.5300 0.2 +27.5350 0.2 +27.5400 0.2 +27.5450 0.2 +27.5500 0.2 +27.5550 0.2 +27.5600 0.2 +27.5650 0.2 +27.5700 0.2 +27.5750 0.2 +27.5800 0.2 +27.5850 0.2 +27.5900 0.2 +27.5950 0.2 +27.6000 0.2 +27.6050 0.2 +27.6100 0.2 +27.6150 0.2 +27.6200 0.2 +27.6250 0.2 +27.6300 0.2 +27.6350 0.2 +27.6400 0.2 +27.6450 0.2 +27.6500 0.2 +27.6550 0.2 +27.6600 0.2 +27.6650 0.2 +27.6700 0.2 +27.6750 0.2 +27.6800 0.2 +27.6850 0.2 +27.6900 0.2 +27.6950 0.2 +27.7000 0.2 +27.7050 0.2 +27.7100 0.2 +27.7150 0.2 +27.7200 0.2 +27.7250 0.2 +27.7300 0.2 +27.7350 0.2 +27.7400 0.2 +27.7450 0.2 +27.7500 0.2 +27.7550 0.2 +27.7600 0.2 +27.7650 0.2 +27.7700 0.2 +27.7750 0.2 +27.7800 0.2 +27.7850 0.2 +27.7900 0.2 +27.7950 0.2 +27.8000 0.2 +27.8050 0.2 +27.8100 0.2 +27.8150 0.2 +27.8200 0.2 +27.8250 0.2 +27.8300 0.2 +27.8350 0.2 +27.8400 0.2 +27.8450 0.2 +27.8500 0.2 +27.8550 0.2 +27.8600 0.2 +27.8650 0.2 +27.8700 0.2 +27.8750 0.2 +27.8800 0.2 +27.8850 0.2 +27.8900 0.2 +27.8950 0.2 +27.9000 0.2 +27.9050 0.2 +27.9100 0.2 +27.9150 0.2 +27.9200 0.2 +27.9250 0.2 +27.9300 0.2 +27.9350 0.2 +27.9400 0.2 +27.9450 0.2 +27.9500 0.2 +27.9550 0.2 +27.9600 0.2 +27.9650 0.2 +27.9700 0.2 +27.9750 0.2 +27.9800 0.2 +27.9850 0.2 +27.9900 0.2 +27.9950 0.2 +28.0000 0.2 +28.0050 0.2 +28.0100 0.2 +28.0150 0.2 +28.0200 0.2 +28.0250 0.2 +28.0300 0.2 +28.0350 0.2 +28.0400 0.2 +28.0450 0.2 +28.0500 0.2 +28.0550 0.2 +28.0600 0.2 +28.0650 0.2 +28.0700 0.2 +28.0750 0.2 +28.0800 0.2 +28.0850 0.2 +28.0900 0.2 +28.0950 0.2 +28.1000 0.2 +28.1050 0.2 +28.1100 0.2 +28.1150 0.2 +28.1200 0.2 +28.1250 0.2 +28.1300 0.2 +28.1350 0.2 +28.1400 0.2 +28.1450 0.2 +28.1500 0.2 +28.1550 0.2 +28.1600 0.2 +28.1650 0.2 +28.1700 0.2 +28.1750 0.2 +28.1800 0.2 +28.1850 0.2 +28.1900 0.2 +28.1950 0.2 +28.2000 0.2 +28.2050 0.2 +28.2100 0.2 +28.2150 0.2 +28.2200 0.2 +28.2250 0.2 +28.2300 0.2 +28.2350 0.2 +28.2400 0.2 +28.2450 0.2 +28.2500 0.2 +28.2550 0.2 +28.2600 0.2 +28.2650 0.2 +28.2700 0.2 +28.2750 0.2 +28.2800 0.2 +28.2850 0.2 +28.2900 0.2 +28.2950 0.2 +28.3000 0.2 +28.3050 0.2 +28.3100 0.2 +28.3150 0.2 +28.3200 0.2 +28.3250 0.2 +28.3300 0.2 +28.3350 0.2 +28.3400 0.2 +28.3450 0.2 +28.3500 0.2 +28.3550 0.2 +28.3600 0.2 +28.3650 0.2 +28.3700 0.2 +28.3750 0.2 +28.3800 0.2 +28.3850 0.2 +28.3900 0.2 +28.3950 0.2 +28.4000 0.2 +28.4050 0.2 +28.4100 0.2 +28.4150 0.2 +28.4200 0.2 +28.4250 0.2 +28.4300 0.2 +28.4350 0.2 +28.4400 0.2 +28.4450 0.2 +28.4500 0.2 +28.4550 0.2 +28.4600 0.2 +28.4650 0.2 +28.4700 0.2 +28.4750 0.2 +28.4800 0.2 +28.4850 0.2 +28.4900 0.2 +28.4950 0.2 +28.5000 0.2 +28.5050 0.2 +28.5100 0.2 +28.5150 0.2 +28.5200 0.2 +28.5250 0.2 +28.5300 0.2 +28.5350 0.2 +28.5400 0.2 +28.5450 0.2 +28.5500 0.2 +28.5550 0.2 +28.5600 0.2 +28.5650 0.2 +28.5700 0.2 +28.5750 0.2 +28.5800 0.2 +28.5850 0.2 +28.5900 0.2 +28.5950 0.2 +28.6000 0.2 +28.6050 0.2 +28.6100 0.2 +28.6150 0.2 +28.6200 0.2 +28.6250 0.2 +28.6300 0.2 +28.6350 0.2 +28.6400 0.2 +28.6450 0.2 +28.6500 0.2 +28.6550 0.2 +28.6600 0.2 +28.6650 0.2 +28.6700 0.2 +28.6750 0.2 +28.6800 0.2 +28.6850 0.2 +28.6900 0.2 +28.6950 0.2 +28.7000 0.2 +28.7050 0.2 +28.7100 0.2 +28.7150 0.2 +28.7200 0.2 +28.7250 0.2 +28.7300 0.2 +28.7350 0.2 +28.7400 0.2 +28.7450 0.2 +28.7500 0.2 +28.7550 0.2 +28.7600 0.2 +28.7650 0.2 +28.7700 0.2 +28.7750 0.2 +28.7800 0.2 +28.7850 0.2 +28.7900 0.2 +28.7950 0.2 +28.8000 0.2 +28.8050 0.2 +28.8100 0.2 +28.8150 0.2 +28.8200 0.2 +28.8250 0.2 +28.8300 0.2 +28.8350 0.2 +28.8400 0.2 +28.8450 0.2 +28.8500 0.2 +28.8550 0.2 +28.8600 0.2 +28.8650 0.2 +28.8700 0.2 +28.8750 0.2 +28.8800 0.2 +28.8850 0.2 +28.8900 0.2 +28.8950 0.2 +28.9000 0.2 +28.9050 0.2 +28.9100 0.2 +28.9150 0.2 +28.9200 0.2 +28.9250 0.2 +28.9300 0.2 +28.9350 0.2 +28.9400 0.2 +28.9450 0.2 +28.9500 0.2 +28.9550 0.2 +28.9600 0.2 +28.9650 0.2 +28.9700 0.2 +28.9750 0.2 +28.9800 0.2 +28.9850 0.2 +28.9900 0.2 +28.9950 0.2 +29.0000 0.2 +29.0050 0.2 +29.0100 0.2 +29.0150 0.2 +29.0200 0.2 +29.0250 0.2 +29.0300 0.2 +29.0350 0.2 +29.0400 0.2 +29.0450 0.2 +29.0500 0.2 +29.0550 0.2 +29.0600 0.2 +29.0650 0.2 +29.0700 0.2 +29.0750 0.2 +29.0800 0.2 +29.0850 0.2 +29.0900 0.2 +29.0950 0.2 +29.1000 0.2 +29.1050 0.2 +29.1100 0.2 +29.1150 0.2 +29.1200 0.2 +29.1250 0.2 +29.1300 0.2 +29.1350 0.2 +29.1400 0.2 +29.1450 0.2 +29.1500 0.2 +29.1550 0.2 +29.1600 0.2 +29.1650 0.2 +29.1700 0.2 +29.1750 0.2 +29.1800 0.2 +29.1850 0.2 +29.1900 0.2 +29.1950 0.2 +29.2000 0.2 +29.2050 0.2 +29.2100 0.2 +29.2150 0.2 +29.2200 0.2 +29.2250 0.2 +29.2300 0.2 +29.2350 0.2 +29.2400 0.2 +29.2450 0.2 +29.2500 0.2 +29.2550 0.2 +29.2600 0.2 +29.2650 0.2 +29.2700 0.2 +29.2750 0.2 +29.2800 0.2 +29.2850 0.2 +29.2900 0.2 +29.2950 0.2 +29.3000 0.2 +29.3050 0.2 +29.3100 0.2 +29.3150 0.2 +29.3200 0.2 +29.3250 0.2 +29.3300 0.2 +29.3350 0.2 +29.3400 0.2 +29.3450 0.2 +29.3500 0.2 +29.3550 0.2 +29.3600 0.2 +29.3650 0.2 +29.3700 0.2 +29.3750 0.2 +29.3800 0.2 +29.3850 0.2 +29.3900 0.2 +29.3950 0.2 +29.4000 0.2 +29.4050 0.2 +29.4100 0.2 +29.4150 0.2 +29.4200 0.2 +29.4250 0.2 +29.4300 0.2 +29.4350 0.2 +29.4400 0.2 +29.4450 0.2 +29.4500 0.2 +29.4550 0.2 +29.4600 0.2 +29.4650 0.2 +29.4700 0.2 +29.4750 0.2 +29.4800 0.2 +29.4850 0.2 +29.4900 0.2 +29.4950 0.2 +29.5000 0.2 +29.5050 0.2 +29.5100 0.2 +29.5150 0.2 +29.5200 0.2 +29.5250 0.2 +29.5300 0.2 +29.5350 0.2 +29.5400 0.2 +29.5450 0.2 +29.5500 0.2 +29.5550 0.2 +29.5600 0.2 +29.5650 0.2 +29.5700 0.2 +29.5750 0.2 +29.5800 0.2 +29.5850 0.2 +29.5900 0.2 +29.5950 0.2 +29.6000 0.2 +29.6050 0.2 +29.6100 0.2 +29.6150 0.2 +29.6200 0.2 +29.6250 0.2 +29.6300 0.2 +29.6350 0.2 +29.6400 0.2 +29.6450 0.2 +29.6500 0.2 +29.6550 0.2 +29.6600 0.2 +29.6650 0.2 +29.6700 0.2 +29.6750 0.2 +29.6800 0.2 +29.6850 0.2 +29.6900 0.2 +29.6950 0.2 +29.7000 0.2 +29.7050 0.2 +29.7100 0.2 +29.7150 0.2 +29.7200 0.2 +29.7250 0.2 +29.7300 0.2 +29.7350 0.2 +29.7400 0.2 +29.7450 0.2 +29.7500 0.2 +29.7550 0.2 +29.7600 0.2 +29.7650 0.2 +29.7700 0.2 +29.7750 0.2 +29.7800 0.2 +29.7850 0.2 +29.7900 0.2 +29.7950 0.2 +29.8000 0.2 +29.8050 0.2 +29.8100 0.2 +29.8150 0.2 +29.8200 0.2 +29.8250 0.2 +29.8300 0.2 +29.8350 0.2 +29.8400 0.2 +29.8450 0.2 +29.8500 0.2 +29.8550 0.2 +29.8600 0.2 +29.8650 0.2 +29.8700 0.2 +29.8750 0.2 +29.8800 0.2 +29.8850 0.2 +29.8900 0.2 +29.8950 0.2 +29.9000 0.2 +29.9050 0.2 +29.9100 0.2 +29.9150 0.2 +29.9200 0.2 +29.9250 0.2 +29.9300 0.2 +29.9350 0.2 +29.9400 0.2 +29.9450 0.2 +29.9500 0.2 +29.9550 0.2 +29.9600 0.2 +29.9650 0.2 +29.9700 0.2 +29.9750 0.2 +29.9800 0.2 +29.9850 0.2 +29.9900 0.2 +29.9950 0.2 +30.0000 0.2 +30.0050 0.2 +30.0100 0.2 +30.0150 0.2 +30.0200 0.2 +30.0250 0.2 +30.0300 0.2 +30.0350 0.2 +30.0400 0.2 +30.0450 0.2 +30.0500 0.2 +30.0550 0.2 +30.0600 0.2 +30.0650 0.2 +30.0700 0.2 +30.0750 0.2 +30.0800 0.2 +30.0850 0.2 +30.0900 0.2 +30.0950 0.2 +30.1000 0.2 +30.1050 0.2 +30.1100 0.2 +30.1150 0.2 +30.1200 0.2 +30.1250 0.2 +30.1300 0.2 +30.1350 0.2 +30.1400 0.2 +30.1450 0.2 +30.1500 0.2 +30.1550 0.2 +30.1600 0.2 +30.1650 0.2 +30.1700 0.2 +30.1750 0.2 +30.1800 0.2 +30.1850 0.2 +30.1900 0.2 +30.1950 0.2 +30.2000 0.2 +30.2050 0.2 +30.2100 0.2 +30.2150 0.2 +30.2200 0.2 +30.2250 0.2 +30.2300 0.2 +30.2350 0.2 +30.2400 0.2 +30.2450 0.2 +30.2500 0.2 +30.2550 0.2 +30.2600 0.2 +30.2650 0.2 +30.2700 0.2 +30.2750 0.2 +30.2800 0.2 +30.2850 0.2 +30.2900 0.2 +30.2950 0.2 +30.3000 0.2 +30.3050 0.2 +30.3100 0.2 +30.3150 0.2 +30.3200 0.2 +30.3250 0.2 +30.3300 0.2 +30.3350 0.2 +30.3400 0.2 +30.3450 0.2 +30.3500 0.2 +30.3550 0.2 +30.3600 0.2 +30.3650 0.2 +30.3700 0.2 +30.3750 0.2 +30.3800 0.2 +30.3850 0.2 +30.3900 0.2 +30.3950 0.2 +30.4000 0.2 +30.4050 0.2 +30.4100 0.2 +30.4150 0.2 +30.4200 0.2 +30.4250 0.2 +30.4300 0.2 +30.4350 0.2 +30.4400 0.2 +30.4450 0.2 +30.4500 0.2 +30.4550 0.2 +30.4600 0.2 +30.4650 0.2 +30.4700 0.2 +30.4750 0.2 +30.4800 0.2 +30.4850 0.2 +30.4900 0.2 +30.4950 0.2 +30.5000 0.2 +30.5050 0.2 +30.5100 0.2 +30.5150 0.2 +30.5200 0.2 +30.5250 0.2 +30.5300 0.2 +30.5350 0.2 +30.5400 0.2 +30.5450 0.2 +30.5500 0.2 +30.5550 0.2 +30.5600 0.2 +30.5650 0.2 +30.5700 0.2 +30.5750 0.2 +30.5800 0.2 +30.5850 0.2 +30.5900 0.2 +30.5950 0.2 +30.6000 0.2 +30.6050 0.2 +30.6100 0.2 +30.6150 0.2 +30.6200 0.2 +30.6250 0.2 +30.6300 0.2 +30.6350 0.2 +30.6400 0.2 +30.6450 0.2 +30.6500 0.2 +30.6550 0.2 +30.6600 0.2 +30.6650 0.2 +30.6700 0.2 +30.6750 0.2 +30.6800 0.2 +30.6850 0.2 +30.6900 0.2 +30.6950 0.2 +30.7000 0.2 +30.7050 0.2 +30.7100 0.2 +30.7150 0.2 +30.7200 0.2 +30.7250 0.2 +30.7300 0.2 +30.7350 0.2 +30.7400 0.2 +30.7450 0.2 +30.7500 0.2 +30.7550 0.2 +30.7600 0.2 +30.7650 0.2 +30.7700 0.2 +30.7750 0.2 +30.7800 0.2 +30.7850 0.2 +30.7900 0.2 +30.7950 0.2 +30.8000 0.2 +30.8050 0.2 +30.8100 0.2 +30.8150 0.2 +30.8200 0.2 +30.8250 0.2 +30.8300 0.2 +30.8350 0.2 +30.8400 0.2 +30.8450 0.2 +30.8500 0.2 +30.8550 0.2 +30.8600 0.2 +30.8650 0.2 +30.8700 0.2 +30.8750 0.2 +30.8800 0.2 +30.8850 0.2 +30.8900 0.2 +30.8950 0.2 +30.9000 0.2 +30.9050 0.2 +30.9100 0.2 +30.9150 0.2 +30.9200 0.2 +30.9250 0.2 +30.9300 0.2 +30.9350 0.2 +30.9400 0.2 +30.9450 0.2 +30.9500 0.2 +30.9550 0.2 +30.9600 0.2 +30.9650 0.2 +30.9700 0.2 +30.9750 0.2 +30.9800 0.2 +30.9850 0.2 +30.9900 0.2 +30.9950 0.2 +31.0000 0.2 +31.0050 0.2 +31.0100 0.2 +31.0150 0.2 +31.0200 0.2 +31.0250 0.2 +31.0300 0.2 +31.0350 0.2 +31.0400 0.2 +31.0450 0.2 +31.0500 0.2 +31.0550 0.2 +31.0600 0.2 +31.0650 0.2 +31.0700 0.2 +31.0750 0.2 +31.0800 0.2 +31.0850 0.2 +31.0900 0.2 +31.0950 0.2 +31.1000 0.2 +31.1050 0.2 +31.1100 0.2 +31.1150 0.2 +31.1200 0.2 +31.1250 0.2 +31.1300 0.2 +31.1350 0.2 +31.1400 0.2 +31.1450 0.2 +31.1500 0.2 +31.1550 0.2 +31.1600 0.2 +31.1650 0.2 +31.1700 0.2 +31.1750 0.2 +31.1800 0.2 +31.1850 0.2 +31.1900 0.2 +31.1950 0.2 +31.2000 0.2 +31.2050 0.2 +31.2100 0.2 +31.2150 0.2 +31.2200 0.2 +31.2250 0.2 +31.2300 0.2 +31.2350 0.2 +31.2400 0.2 +31.2450 0.2 +31.2500 0.2 +31.2550 0.2 +31.2600 0.2 +31.2650 0.2 +31.2700 0.2 +31.2750 0.2 +31.2800 0.2 +31.2850 0.2 +31.2900 0.2 +31.2950 0.2 +31.3000 0.2 +31.3050 0.2 +31.3100 0.2 +31.3150 0.2 +31.3200 0.2 +31.3250 0.5 +31.3300 0.6 +31.3350 0.7 +31.3400 0.7 +31.3450 0.6 +31.3500 0.5 +31.3550 0.5 +31.3600 0.5 +31.3650 0.5 +31.3700 0.5 +31.3750 0.5 +31.3800 0.4 +31.3850 0.5 +31.3900 0.6 +31.3950 0.6 +31.4000 0.8 +31.4050 1.0 +31.4100 1.2 +31.4150 1.4 +31.4200 1.3 +31.4250 1.3 +31.4300 1.4 +31.4350 1.5 +31.4400 1.4 +31.4450 1.3 +31.4500 1.5 +31.4550 1.6 +31.4600 1.6 +31.4650 1.6 +31.4700 1.8 +31.4750 1.9 +31.4800 2.0 +31.4850 2.2 +31.4900 2.4 +31.4950 2.5 +31.5000 2.7 +31.5050 2.7 +31.5100 2.7 +31.5150 2.8 +31.5200 2.8 +31.5250 2.9 +31.5300 2.9 +31.5350 3.1 +31.5400 3.3 +31.5450 3.3 +31.5500 3.4 +31.5550 3.5 +31.5600 3.8 +31.5650 3.8 +31.5700 4.0 +31.5750 4.3 +31.5800 4.3 +31.5850 4.4 +31.5900 4.5 +31.5950 4.6 +31.6000 4.5 +31.6050 4.5 +31.6100 4.5 +31.6150 4.6 +31.6200 4.5 +31.6250 4.6 +31.6300 4.6 +31.6350 4.7 +31.6400 4.6 +31.6450 4.7 +31.6500 4.8 +31.6550 4.9 +31.6600 4.8 +31.6650 5.0 +31.6700 4.9 +31.6750 4.9 +31.6800 4.9 +31.6850 4.9 +31.6900 4.8 +31.6950 4.9 +31.7000 4.8 +31.7050 4.9 +31.7100 4.8 +31.7150 4.9 +31.7200 4.9 +31.7250 5.0 +31.7300 4.9 +31.7350 5.0 +31.7400 5.0 +31.7450 5.0 +31.7500 4.9 +31.7550 5.0 +31.7600 4.9 +31.7650 4.9 +31.7700 4.9 +31.7750 4.9 +31.7800 4.9 +31.7850 4.9 +31.7900 4.9 +31.7950 5.0 +31.8000 4.9 +31.8050 5.0 +31.8100 5.0 +31.8150 5.0 +31.8200 5.0 +31.8250 5.0 +31.8300 5.0 +31.8350 5.0 +31.8400 4.9 +31.8450 4.9 +31.8500 4.9 +31.8550 4.9 +31.8600 4.9 +31.8650 4.9 +31.8700 5.0 +31.8750 4.9 +31.8800 5.0 +31.8850 4.9 +31.8900 5.0 +31.8950 4.9 +31.9000 5.0 +31.9050 4.9 +31.9100 5.0 +31.9150 4.9 +31.9200 5.0 +31.9250 4.9 +31.9300 4.9 +31.9350 4.9 +31.9400 5.0 +31.9450 4.9 +31.9500 5.0 +31.9550 4.9 +31.9600 5.0 +31.9650 4.9 +31.9700 5.0 +31.9750 4.9 +31.9800 5.0 +31.9850 4.9 +31.9900 5.0 +31.9950 4.9 +32.0000 4.9 +32.0050 4.9 +32.0100 4.9 +32.0150 4.9 +32.0200 4.9 +32.0250 4.9 +32.0300 5.0 +32.0350 5.0 +32.0400 5.0 +32.0450 5.0 +32.0500 5.0 +32.0550 5.0 +32.0600 4.9 +32.0650 5.0 +32.0700 4.9 +32.0750 4.9 +32.0800 4.9 +32.0850 4.9 +32.0900 4.9 +32.0950 5.0 +32.1000 4.9 +32.1050 5.0 +32.1100 4.9 +32.1150 5.0 +32.1200 4.9 +32.1250 5.0 +32.1300 4.9 +32.1350 5.0 +32.1400 4.9 +32.1450 4.9 +32.1500 4.9 +32.1550 5.0 +32.1600 4.9 +32.1650 4.9 +32.1700 4.9 +32.1750 5.0 +32.1800 4.9 +32.1850 5.0 +32.1900 4.9 +32.1950 5.0 +32.2000 4.9 +32.2050 5.0 +32.2100 4.9 +32.2150 5.0 +32.2200 4.9 +32.2250 4.9 +32.2300 4.9 +32.2350 4.9 +32.2400 4.9 +32.2450 4.9 +32.2500 4.9 +32.2550 4.9 +32.2600 4.9 +32.2650 4.9 +32.2700 4.9 +32.2750 4.9 +32.2800 4.9 +32.2850 4.9 +32.2900 5.0 +32.2950 4.9 +32.3000 4.9 +32.3050 4.9 +32.3100 4.9 +32.3150 4.9 +32.3200 4.9 +32.3250 4.9 +32.3300 4.9 +32.3350 4.9 +32.3400 4.9 +32.3450 4.9 +32.3500 4.9 +32.3550 4.9 +32.3600 5.0 +32.3650 4.9 +32.3700 5.0 +32.3750 4.9 +32.3800 4.9 +32.3850 4.9 +32.3900 4.9 +32.3950 4.9 +32.4000 4.9 +32.4050 4.9 +32.4100 4.9 +32.4150 4.9 +32.4200 4.9 +32.4250 4.9 +32.4300 4.9 +32.4350 4.9 +32.4400 5.0 +32.4450 4.9 +32.4500 4.9 +32.4550 4.9 +32.4600 4.9 +32.4650 4.9 +32.4700 4.9 +32.4750 4.9 +32.4800 4.9 +32.4850 4.9 +32.4900 4.9 +32.4950 4.9 +32.5000 4.9 +32.5050 4.9 +32.5100 4.9 +32.5150 4.9 +32.5200 4.9 +32.5250 4.9 +32.5300 4.9 +32.5350 4.9 +32.5400 4.9 +32.5450 4.9 +32.5500 4.9 +32.5550 4.9 +32.5600 4.9 +32.5650 4.9 +32.5700 4.9 +32.5750 4.9 +32.5800 4.9 +32.5850 5.0 +32.5900 4.9 +32.5950 4.9 +32.6000 4.9 +32.6050 5.0 +32.6100 4.9 +32.6150 4.9 +32.6200 4.9 +32.6250 5.0 +32.6300 4.9 +32.6350 4.9 +32.6400 4.9 +32.6450 4.9 +32.6500 4.9 +32.6550 5.0 +32.6600 4.9 +32.6650 5.0 +32.6700 4.9 +32.6750 5.0 +32.6800 4.9 +32.6850 4.9 +32.6900 4.9 +32.6950 4.9 +32.7000 4.9 +32.7050 4.9 +32.7100 4.9 +32.7150 4.9 +32.7200 4.9 +32.7250 4.9 +32.7300 4.9 +32.7350 4.9 +32.7400 4.9 +32.7450 4.9 +32.7500 4.9 +32.7550 4.9 +32.7600 4.9 +32.7650 4.9 +32.7700 4.9 +32.7750 4.9 +32.7800 4.9 +32.7850 4.9 +32.7900 5.0 +32.7950 4.9 +32.8000 4.9 +32.8050 4.9 +32.8100 4.9 +32.8150 4.9 +32.8200 5.0 +32.8250 4.9 +32.8300 5.0 +32.8350 4.9 +32.8400 5.0 +32.8450 4.9 +32.8500 5.0 +32.8550 4.9 +32.8600 5.0 +32.8650 4.9 +32.8700 5.0 +32.8750 4.9 +32.8800 5.0 +32.8850 4.9 +32.8900 5.0 +32.8950 4.9 +32.9000 5.0 +32.9050 4.9 +32.9100 5.0 +32.9150 4.9 +32.9200 4.9 +32.9250 4.9 +32.9300 4.9 +32.9350 4.9 +32.9400 4.9 +32.9450 4.9 +32.9500 4.9 +32.9550 4.9 +32.9600 4.9 +32.9650 4.9 +32.9700 4.9 +32.9750 5.0 +32.9800 4.9 +32.9850 4.9 +32.9900 4.9 +32.9950 5.0 +33.0000 4.9 +33.0050 4.9 +33.0100 4.9 +33.0150 4.9 +33.0200 4.9 +33.0250 4.9 +33.0300 4.9 +33.0350 4.9 +33.0400 4.9 +33.0450 4.9 +33.0500 4.9 +33.0550 5.0 +33.0600 4.9 +33.0650 5.0 +33.0700 4.9 +33.0750 5.0 +33.0800 4.9 +33.0850 5.0 +33.0900 4.9 +33.0950 4.9 +33.1000 4.9 +33.1050 4.9 +33.1100 4.9 +33.1150 5.0 +33.1200 4.9 +33.1250 5.0 +33.1300 4.9 +33.1350 5.0 +33.1400 4.9 +33.1450 5.0 +33.1500 4.9 +33.1550 4.9 +33.1600 4.9 +33.1650 4.9 +33.1700 4.9 +33.1750 4.9 +33.1800 4.9 +33.1850 4.9 +33.1900 4.9 +33.1950 4.9 +33.2000 4.9 +33.2050 4.9 +33.2100 4.9 +33.2150 4.9 +33.2200 4.9 +33.2250 4.9 +33.2300 4.9 +33.2350 4.9 +33.2400 4.9 +33.2450 4.9 +33.2500 4.9 +33.2550 4.9 +33.2600 4.9 +33.2650 4.9 +33.2700 4.9 +33.2750 4.9 +33.2800 5.0 +33.2850 4.9 +33.2900 5.0 +33.2950 4.9 +33.3000 5.0 +33.3050 4.9 +33.3100 4.9 +33.3150 4.9 +33.3200 4.9 +33.3250 4.9 +33.3300 5.0 +33.3350 4.9 +33.3400 5.0 +33.3450 4.9 +33.3500 5.0 +33.3550 4.9 +33.3600 5.0 +33.3650 4.9 +33.3700 5.0 +33.3750 4.9 +33.3800 4.9 +33.3850 4.9 +33.3900 4.9 +33.3950 4.9 +33.4000 4.9 +33.4050 4.9 +33.4100 4.9 +33.4150 4.9 +33.4200 4.9 +33.4250 4.9 +33.4300 4.9 +33.4350 4.9 +33.4400 4.9 +33.4450 4.9 +33.4500 4.9 +33.4550 4.9 +33.4600 4.9 +33.4650 4.9 +33.4700 4.9 +33.4750 4.9 +33.4800 4.9 +33.4850 4.9 +33.4900 4.9 +33.4950 4.9 +33.5000 4.9 +33.5050 4.9 +33.5100 4.9 +33.5150 4.9 +33.5200 4.9 +33.5250 5.0 +33.5300 4.9 +33.5350 5.0 +33.5400 4.9 +33.5450 4.9 +33.5500 4.9 +33.5550 4.9 +33.5600 4.9 +33.5650 4.9 +33.5700 4.9 +33.5750 5.0 +33.5800 4.9 +33.5850 4.9 +33.5900 4.9 +33.5950 4.9 +33.6000 4.9 +33.6050 4.9 +33.6100 4.9 +33.6150 5.0 +33.6200 4.9 +33.6250 4.9 +33.6300 4.9 +33.6350 4.9 +33.6400 4.9 +33.6450 4.9 +33.6500 4.9 +33.6550 4.9 +33.6600 4.9 +33.6650 4.9 +33.6700 4.9 +33.6750 4.9 +33.6800 4.9 +33.6850 4.9 +33.6900 4.9 +33.6950 4.9 +33.7000 4.9 +33.7050 4.9 +33.7100 4.9 +33.7150 4.9 +33.7200 4.9 +33.7250 4.9 +33.7300 4.9 +33.7350 4.9 +33.7400 4.9 +33.7450 4.9 +33.7500 4.9 +33.7550 4.9 +33.7600 4.9 +33.7650 4.9 +33.7700 4.9 +33.7750 4.9 +33.7800 5.0 +33.7850 4.9 +33.7900 4.9 +33.7950 4.9 +33.8000 5.0 +33.8050 4.9 +33.8100 4.9 +33.8150 4.9 +33.8200 5.0 +33.8250 4.9 +33.8300 4.9 +33.8350 4.9 +33.8400 4.9 +33.8450 4.9 +33.8500 4.9 +33.8550 4.9 +33.8600 4.9 +33.8650 4.9 +33.8700 5.0 +33.8750 4.9 +33.8800 4.9 +33.8850 4.9 +33.8900 5.0 +33.8950 4.9 +33.9000 4.9 +33.9050 4.9 +33.9100 4.9 +33.9150 4.9 +33.9200 4.9 +33.9250 4.9 +33.9300 4.9 +33.9350 4.9 +33.9400 4.9 +33.9450 4.9 +33.9500 4.9 +33.9550 4.9 +33.9600 4.9 +33.9650 4.9 +33.9700 4.9 +33.9750 4.9 +33.9800 4.9 +33.9850 4.9 +33.9900 4.9 +33.9950 4.9 +34.0000 4.9 +34.0050 4.9 +34.0100 4.9 +34.0150 4.9 +34.0200 4.9 +34.0250 4.9 +34.0300 4.9 +34.0350 4.9 +34.0400 4.9 +34.0450 4.9 +34.0500 4.9 +34.0550 4.9 +34.0600 4.9 +34.0650 4.9 +34.0700 4.9 +34.0750 4.9 +34.0800 4.9 +34.0850 4.9 +34.0900 4.9 +34.0950 5.0 +34.1000 4.9 +34.1050 5.0 +34.1100 4.9 +34.1150 5.0 +34.1200 4.9 +34.1250 4.9 +34.1300 4.9 +34.1350 4.9 +34.1400 4.9 +34.1450 5.0 +34.1500 4.9 +34.1550 4.9 +34.1600 4.9 +34.1650 4.9 +34.1700 4.9 +34.1750 4.9 +34.1800 4.9 +34.1850 4.9 +34.1900 4.9 +34.1950 4.9 +34.2000 4.9 +34.2050 4.9 +34.2100 4.9 +34.2150 4.9 +34.2200 4.9 +34.2250 4.9 +34.2300 4.9 +34.2350 4.9 +34.2400 4.9 +34.2450 4.9 +34.2500 5.0 +34.2550 4.9 +34.2600 4.9 +34.2650 4.9 +34.2700 4.9 +34.2750 4.9 +34.2800 4.9 +34.2850 4.8 +34.2900 4.9 +34.2950 4.9 +34.3000 5.0 +34.3050 4.9 +34.3100 5.0 +34.3150 4.9 +34.3200 5.0 +34.3250 4.9 +34.3300 5.0 +34.3350 4.9 +34.3400 5.0 +34.3450 4.9 +34.3500 4.9 +34.3550 4.9 +34.3600 4.9 +34.3650 4.9 +34.3700 5.0 +34.3750 4.9 +34.3800 5.0 +34.3850 4.9 +34.3900 5.0 +34.3950 4.9 +34.4000 5.0 +34.4050 4.9 +34.4100 5.0 +34.4150 4.9 +34.4200 5.0 +34.4250 4.9 +34.4300 4.9 +34.4350 4.9 +34.4400 4.9 +34.4450 4.9 +34.4500 4.9 +34.4550 4.9 +34.4600 5.0 +34.4650 4.9 +34.4700 4.9 +34.4750 4.9 +34.4800 4.9 +34.4850 4.9 +34.4900 4.9 +34.4950 4.9 +34.5000 4.9 +34.5050 4.9 +34.5100 4.9 +34.5150 4.9 +34.5200 4.9 +34.5250 4.9 +34.5300 4.9 +34.5350 5.0 +34.5400 4.9 +34.5450 4.9 +34.5500 4.9 +34.5550 4.9 +34.5600 4.9 +34.5650 5.0 +34.5700 4.9 +34.5750 5.0 +34.5800 4.9 +34.5850 4.9 +34.5900 4.9 +34.5950 4.9 +34.6000 4.9 +34.6050 4.9 +34.6100 4.9 +34.6150 5.0 +34.6200 4.9 +34.6250 5.0 +34.6300 4.9 +34.6350 5.0 +34.6400 4.9 +34.6450 5.0 +34.6500 4.9 +34.6550 5.0 +34.6600 4.9 +34.6650 4.9 +34.6700 4.9 +34.6750 4.9 +34.6800 4.9 +34.6850 4.9 +34.6900 4.9 +34.6950 4.9 +34.7000 4.9 +34.7050 4.9 +34.7100 4.9 +34.7150 4.9 +34.7200 4.9 +34.7250 4.9 +34.7300 4.9 +34.7350 4.9 +34.7400 4.9 +34.7450 4.9 +34.7500 4.9 +34.7550 4.9 +34.7600 4.9 +34.7650 4.9 +34.7700 4.9 +34.7750 4.9 +34.7800 4.9 +34.7850 4.9 +34.7900 4.9 +34.7950 4.9 +34.8000 4.9 +34.8050 4.9 +34.8100 4.9 +34.8150 4.9 +34.8200 4.9 +34.8250 4.9 +34.8300 4.9 +34.8350 4.9 +34.8400 5.0 +34.8450 4.9 +34.8500 5.0 +34.8550 4.9 +34.8600 5.0 +34.8650 4.9 +34.8700 5.0 +34.8750 4.9 +34.8800 5.0 +34.8850 4.9 +34.8900 5.0 +34.8950 4.9 +34.9000 4.9 +34.9050 4.9 +34.9100 5.0 +34.9150 4.9 +34.9200 5.0 +34.9250 4.9 +34.9300 5.0 +34.9350 4.9 +34.9400 5.0 +34.9450 4.9 +34.9500 5.0 +34.9550 4.9 +34.9600 5.0 +34.9650 4.9 +34.9700 4.9 +34.9750 4.9 +34.9800 4.9 +34.9850 4.9 +34.9900 4.9 +34.9950 4.9 +35.0000 4.9 +35.0050 4.9 +35.0100 5.0 +35.0150 4.9 +35.0200 4.9 +35.0250 4.9 +35.0300 4.9 +35.0350 4.9 +35.0400 4.9 +35.0450 4.9 +35.0500 4.9 +35.0550 4.9 +35.0600 4.9 +35.0650 4.9 +35.0700 4.9 +35.0750 4.9 +35.0800 4.9 +35.0850 5.0 +35.0900 4.9 +35.0950 5.0 +35.1000 4.9 +35.1050 5.0 +35.1100 4.9 +35.1150 5.0 +35.1200 4.9 +35.1250 4.9 +35.1300 4.9 +35.1350 4.9 +35.1400 4.9 +35.1450 5.0 +35.1500 4.9 +35.1550 5.0 +35.1600 4.9 +35.1650 5.0 +35.1700 4.9 +35.1750 5.0 +35.1800 4.9 +35.1850 5.0 +35.1900 4.9 +35.1950 5.0 +35.2000 4.9 +35.2050 4.9 +35.2100 4.9 +35.2150 4.9 +35.2200 4.9 +35.2250 5.0 +35.2300 4.9 +35.2350 5.0 +35.2400 4.9 +35.2450 5.0 +35.2500 4.9 +35.2550 5.0 +35.2600 4.9 +35.2650 4.9 +35.2700 4.9 +35.2750 4.9 +35.2800 4.9 +35.2850 4.9 +35.2900 4.9 +35.2950 4.9 +35.3000 4.9 +35.3050 4.9 +35.3100 4.9 +35.3150 4.9 +35.3200 4.9 +35.3250 4.9 +35.3300 5.0 +35.3350 4.9 +35.3400 4.9 +35.3450 4.9 +35.3500 4.9 +35.3550 4.9 +35.3600 4.9 +35.3650 4.9 +35.3700 5.0 +35.3750 4.9 +35.3800 4.9 +35.3850 4.9 +35.3900 4.9 +35.3950 4.9 +35.4000 5.0 +35.4050 4.9 +35.4100 5.0 +35.4150 4.9 +35.4200 5.0 +35.4250 4.9 +35.4300 5.0 +35.4350 4.9 +35.4400 4.9 +35.4450 4.9 +35.4500 4.9 +35.4550 4.9 +35.4600 4.9 +35.4650 4.9 +35.4700 5.0 +35.4750 4.9 +35.4800 5.0 +35.4850 4.9 +35.4900 5.0 +35.4950 4.9 +35.5000 5.0 +35.5050 4.9 +35.5100 5.0 +35.5150 4.9 +35.5200 5.0 +35.5250 4.9 +35.5300 4.9 +35.5350 4.9 +35.5400 4.9 +35.5450 4.9 +35.5500 4.9 +35.5550 4.9 +35.5600 5.0 +35.5650 4.9 +35.5700 4.9 +35.5750 4.9 +35.5800 4.9 +35.5850 4.9 +35.5900 4.9 +35.5950 4.9 +35.6000 4.9 +35.6050 4.9 +35.6100 4.9 +35.6150 4.9 +35.6200 4.9 +35.6250 4.9 +35.6300 4.9 +35.6350 4.9 +35.6400 4.9 +35.6450 4.9 +35.6500 4.9 +35.6550 4.9 +35.6600 4.9 +35.6650 4.9 +35.6700 4.9 +35.6750 4.9 +35.6800 4.9 +35.6850 4.9 +35.6900 4.9 +35.6950 5.0 +35.7000 4.9 +35.7050 5.0 +35.7100 4.9 +35.7150 4.9 +35.7200 4.9 +35.7250 4.9 +35.7300 4.9 +35.7350 4.9 +35.7400 4.9 +35.7450 5.0 +35.7500 4.9 +35.7550 5.0 +35.7600 4.9 +35.7650 4.9 +35.7700 4.9 +35.7750 4.9 +35.7800 4.9 +35.7850 5.0 +35.7900 4.9 +35.7950 5.0 +35.8000 4.9 +35.8050 4.9 +35.8100 4.9 +35.8150 4.9 +35.8200 4.9 +35.8250 5.0 +35.8300 4.9 +35.8350 5.0 +35.8400 4.9 +35.8450 4.9 +35.8500 4.9 +35.8550 4.9 +35.8600 4.9 +35.8650 4.9 +35.8700 4.9 +35.8750 4.9 +35.8800 4.9 +35.8850 4.9 +35.8900 4.9 +35.8950 4.9 +35.9000 4.9 +35.9050 4.9 +35.9100 4.9 +35.9150 4.9 +35.9200 4.9 +35.9250 4.9 +35.9300 4.9 +35.9350 4.9 +35.9400 4.9 +35.9450 4.9 +35.9500 4.9 +35.9550 4.9 +35.9600 4.9 +35.9650 4.9 +35.9700 4.9 +35.9750 4.8 +35.9800 4.9 +35.9850 4.9 +35.9900 4.9 +35.9950 4.9 +36.0000 4.9 +36.0050 4.9 +36.0100 4.9 +36.0150 4.9 +36.0200 4.9 +36.0250 4.9 +36.0300 4.9 +36.0350 4.9 +36.0400 4.9 +36.0450 4.9 +36.0500 4.9 +36.0550 4.9 +36.0600 4.9 +36.0650 4.9 +36.0700 5.0 +36.0750 4.9 +36.0800 5.0 +36.0850 4.9 +36.0900 4.9 +36.0950 4.9 +36.1000 4.9 +36.1050 4.9 +36.1100 4.9 +36.1150 4.9 +36.1200 4.9 +36.1250 4.9 +36.1300 4.9 +36.1350 4.9 +36.1400 4.9 +36.1450 4.9 +36.1500 4.9 +36.1550 4.9 +36.1600 4.9 +36.1650 4.9 +36.1700 4.9 +36.1750 4.9 +36.1800 4.9 +36.1850 4.9 +36.1900 4.9 +36.1950 4.9 +36.2000 4.9 +36.2050 4.9 +36.2100 4.9 +36.2150 4.9 +36.2200 4.9 +36.2250 4.9 +36.2300 4.9 +36.2350 4.9 +36.2400 4.9 +36.2450 4.9 +36.2500 4.9 +36.2550 4.9 +36.2600 4.9 +36.2650 4.9 +36.2700 4.9 +36.2750 4.9 +36.2800 4.8 +36.2850 4.9 +36.2900 4.9 +36.2950 4.9 +36.3000 4.9 +36.3050 4.9 +36.3100 4.9 +36.3150 4.9 +36.3200 4.9 +36.3250 4.9 +36.3300 4.9 +36.3350 4.9 +36.3400 4.9 +36.3450 4.9 +36.3500 4.9 +36.3550 4.9 +36.3600 4.9 +36.3650 4.9 +36.3700 4.9 +36.3750 4.9 +36.3800 4.9 +36.3850 4.9 +36.3900 4.9 +36.3950 4.9 +36.4000 4.9 +36.4050 4.9 +36.4100 4.9 +36.4150 4.9 +36.4200 4.9 +36.4250 4.9 +36.4300 4.9 +36.4350 4.9 +36.4400 4.9 +36.4450 4.9 +36.4500 4.9 +36.4550 4.9 +36.4600 4.9 +36.4650 4.9 +36.4700 4.9 +36.4750 4.9 +36.4800 4.9 +36.4850 4.9 +36.4900 4.9 +36.4950 4.9 +36.5000 4.9 +36.5050 4.9 +36.5100 4.9 +36.5150 4.9 +36.5200 4.9 +36.5250 4.9 +36.5300 4.9 +36.5350 4.9 +36.5400 4.9 +36.5450 4.9 +36.5500 4.9 +36.5550 4.9 +36.5600 4.9 +36.5650 4.9 +36.5700 4.9 +36.5750 4.9 +36.5800 4.9 +36.5850 4.9 +36.5900 4.9 +36.5950 4.9 +36.6000 4.9 +36.6050 4.9 +36.6100 4.9 +36.6150 4.9 +36.6200 4.9 +36.6250 4.9 +36.6300 4.9 +36.6350 4.9 +36.6400 4.9 +36.6450 4.9 +36.6500 4.9 +36.6550 4.9 +36.6600 4.9 +36.6650 4.9 +36.6700 4.9 +36.6750 4.9 +36.6800 4.9 +36.6850 4.9 +36.6900 4.9 +36.6950 4.9 +36.7000 4.9 +36.7050 4.9 +36.7100 4.9 +36.7150 4.9 +36.7200 4.9 +36.7250 4.9 +36.7300 4.9 +36.7350 4.9 +36.7400 4.9 +36.7450 4.9 +36.7500 4.9 +36.7550 4.9 +36.7600 4.9 +36.7650 4.9 +36.7700 4.9 +36.7750 4.9 +36.7800 4.9 +36.7850 4.9 +36.7900 4.8 +36.7950 4.9 +36.8000 4.8 +36.8050 4.9 +36.8100 4.9 +36.8150 4.9 +36.8200 4.9 +36.8250 4.9 +36.8300 4.9 +36.8350 4.9 +36.8400 4.8 +36.8450 4.9 +36.8500 4.8 +36.8550 4.9 +36.8600 4.9 +36.8650 4.9 +36.8700 4.9 +36.8750 4.9 +36.8800 4.9 +36.8850 4.9 +36.8900 4.9 +36.8950 4.9 +36.9000 4.9 +36.9050 4.9 +36.9100 4.9 +36.9150 4.9 +36.9200 4.9 +36.9250 4.9 +36.9300 4.9 +36.9350 4.9 +36.9400 4.9 +36.9450 4.9 +36.9500 4.9 +36.9550 4.9 +36.9600 4.9 +36.9650 5.0 +36.9700 4.9 +36.9750 4.9 +36.9800 4.9 +36.9850 4.9 +36.9900 4.9 +36.9950 4.9 +37.0000 4.9 +37.0050 4.9 +37.0100 4.9 +37.0150 4.9 +37.0200 4.9 +37.0250 4.9 +37.0300 4.9 +37.0350 4.9 +37.0400 4.9 +37.0450 4.9 +37.0500 4.9 +37.0550 4.9 +37.0600 4.9 +37.0650 4.9 +37.0700 4.9 +37.0750 4.9 +37.0800 4.9 +37.0850 4.9 +37.0900 4.9 +37.0950 4.9 +37.1000 4.9 +37.1050 4.9 +37.1100 4.9 +37.1150 4.9 +37.1200 4.9 +37.1250 4.9 +37.1300 4.9 +37.1350 4.9 +37.1400 4.9 +37.1450 4.9 +37.1500 4.9 +37.1550 4.9 +37.1600 4.9 +37.1650 4.9 +37.1700 4.9 +37.1750 4.9 +37.1800 4.9 +37.1850 4.9 +37.1900 4.9 +37.1950 4.9 +37.2000 5.0 +37.2050 4.9 +37.2100 4.9 +37.2150 4.9 +37.2200 4.9 +37.2250 4.9 +37.2300 4.9 +37.2350 4.9 +37.2400 4.9 +37.2450 4.9 +37.2500 4.9 +37.2550 4.9 +37.2600 4.9 +37.2650 4.9 +37.2700 4.9 +37.2750 4.9 +37.2800 4.9 +37.2850 4.9 +37.2900 4.9 +37.2950 4.9 +37.3000 4.9 +37.3050 4.9 +37.3100 4.9 +37.3150 4.9 +37.3200 4.9 +37.3250 4.9 +37.3300 4.9 +37.3350 4.9 +37.3400 4.9 +37.3450 4.9 +37.3500 4.9 +37.3550 4.9 +37.3600 4.9 +37.3650 4.9 +37.3700 4.9 +37.3750 4.9 +37.3800 4.9 +37.3850 4.9 +37.3900 4.9 +37.3950 4.9 +37.4000 4.9 +37.4050 4.9 +37.4100 4.9 +37.4150 4.9 +37.4200 4.9 +37.4250 4.9 +37.4300 4.9 +37.4350 4.9 +37.4400 4.8 +37.4450 4.9 +37.4500 4.9 +37.4550 4.9 +37.4600 4.9 +37.4650 4.9 +37.4700 4.9 +37.4750 4.9 +37.4800 4.9 +37.4850 4.9 +37.4900 4.9 +37.4950 4.9 +37.5000 4.9 +37.5050 4.9 +37.5100 4.9 +37.5150 4.9 +37.5200 4.9 +37.5250 4.9 +37.5300 4.9 +37.5350 4.9 +37.5400 4.9 +37.5450 4.9 +37.5500 4.9 +37.5550 4.9 +37.5600 4.9 +37.5650 4.9 +37.5700 4.9 +37.5750 4.9 +37.5800 4.9 +37.5850 4.9 +37.5900 4.9 +37.5950 4.9 +37.6000 4.9 +37.6050 4.9 +37.6100 4.9 +37.6150 4.9 +37.6200 4.9 +37.6250 4.9 +37.6300 4.9 +37.6350 4.9 +37.6400 4.9 +37.6450 4.9 +37.6500 4.9 +37.6550 4.9 +37.6600 4.9 +37.6650 4.9 +37.6700 4.9 +37.6750 4.9 +37.6800 4.9 +37.6850 4.9 +37.6900 4.9 +37.6950 4.9 +37.7000 4.9 +37.7050 4.9 +37.7100 4.9 +37.7150 4.9 +37.7200 4.9 +37.7250 4.9 +37.7300 4.9 +37.7350 4.9 +37.7400 4.9 +37.7450 4.9 +37.7500 4.9 +37.7550 4.9 +37.7600 4.9 +37.7650 4.9 +37.7700 4.9 +37.7750 4.9 +37.7800 4.9 +37.7850 4.9 +37.7900 4.9 +37.7950 4.9 +37.8000 4.9 +37.8050 4.9 +37.8100 4.9 +37.8150 4.9 +37.8200 4.9 +37.8250 4.8 +37.8300 4.9 +37.8350 4.9 +37.8400 4.9 +37.8450 4.9 +37.8500 4.9 +37.8550 4.9 +37.8600 4.9 +37.8650 4.9 +37.8700 4.9 +37.8750 4.9 +37.8800 4.9 +37.8850 4.7 +37.8900 4.5 +37.8950 4.1 +37.9000 3.9 +37.9050 3.5 +37.9100 3.3 +37.9150 3.0 +37.9200 2.9 +37.9250 2.8 +37.9300 2.7 +37.9350 2.7 +37.9400 2.7 +37.9450 2.8 +37.9500 2.8 +37.9550 2.8 +37.9600 2.8 +37.9650 2.7 +37.9700 2.6 +37.9750 2.4 +37.9800 2.3 +37.9850 2.1 +37.9900 2.0 +37.9950 1.8 +38.0000 1.8 +38.0050 1.8 +38.0100 1.7 +38.0150 1.7 +38.0200 1.8 +38.0250 1.7 +38.0300 1.8 +38.0350 1.8 +38.0400 1.7 +38.0450 1.8 +38.0500 1.7 +38.0550 1.6 +38.0600 1.5 +38.0650 1.5 +38.0700 1.3 +38.0750 1.2 +38.0800 1.2 +38.0850 1.2 +38.0900 1.1 +38.0950 1.1 +38.1000 1.2 +38.1050 1.3 +38.1100 1.2 +38.1150 1.2 +38.1200 1.3 +38.1250 1.3 +38.1300 1.1 +38.1350 1.1 +38.1400 1.2 +38.1450 1.1 +38.1500 0.9 +38.1550 0.9 +38.1600 0.9 +38.1650 0.9 +38.1700 0.9 +38.1750 0.8 +38.1800 0.9 +38.1850 1.0 +38.1900 1.0 +38.1950 0.9 +38.2000 0.9 +38.2050 1.0 +38.2100 1.0 +38.2150 0.8 +38.2200 0.7 +38.2250 0.8 +38.2300 0.8 +38.2350 0.7 +38.2400 0.6 +38.2450 0.7 +38.2500 0.8 +38.2550 0.7 +38.2600 0.7 +38.2650 0.8 +38.2700 0.8 +38.2750 0.8 +38.2800 0.8 +38.2850 0.8 +38.2900 0.7 +38.2950 0.6 +38.3000 0.6 +38.3050 0.7 +38.3100 0.6 +38.3150 0.5 +38.3200 0.5 +38.3250 0.6 +38.3300 0.6 +38.3350 0.6 +38.3400 0.6 +38.3450 0.6 +38.3500 0.6 +38.3550 0.6 +38.3600 0.6 +38.3650 0.6 +38.3700 0.6 +38.3750 0.5 +38.3800 0.5 +38.3850 0.6 +38.3900 0.5 +38.3950 0.5 +38.4000 0.4 +38.4050 0.5 +38.4100 0.5 +38.4150 0.5 +38.4200 0.5 +38.4250 0.5 +38.4300 0.5 +38.4350 0.5 +38.4400 0.5 +38.4450 0.6 +38.4500 0.5 +38.4550 0.5 +38.4600 0.4 +38.4650 0.4 +38.4700 0.4 +38.4750 0.4 +38.4800 0.4 +38.4850 0.4 +38.4900 0.4 +38.4950 0.4 +38.5000 0.4 +38.5050 0.4 +38.5100 0.4 +38.5150 0.4 +38.5200 0.5 +38.5250 0.5 +38.5300 0.5 +38.5350 0.4 +38.5400 0.4 +38.5450 0.3 +38.5500 0.4 +38.5550 0.4 +38.5600 0.4 +38.5650 0.4 +38.5700 0.4 +38.5750 0.4 +38.5800 0.3 +38.5850 0.3 +38.5900 0.4 +38.5950 0.4 +38.6000 0.4 +38.6050 0.4 +38.6100 0.4 +38.6150 0.4 +38.6200 0.3 +38.6250 0.3 +38.6300 0.3 +38.6350 0.3 +38.6400 0.3 +38.6450 0.3 +38.6500 0.4 +38.6550 0.4 +38.6600 0.3 +38.6650 0.3 +38.6700 0.3 +38.6750 0.3 +38.6800 0.3 +38.6850 0.3 +38.6900 0.4 +38.6950 0.4 +38.7000 0.3 +38.7050 0.3 +38.7100 0.3 +38.7150 0.3 +38.7200 0.3 +38.7250 0.3 +38.7300 0.3 +38.7350 0.3 +38.7400 0.3 +38.7450 0.3 +38.7500 0.3 +38.7550 0.3 +38.7600 0.3 +38.7650 0.3 +38.7700 0.3 +38.7750 0.3 +38.7800 0.3 +38.7850 0.3 +38.7900 0.3 +38.7950 0.3 +38.8000 0.3 +38.8050 0.3 +38.8100 0.3 +38.8150 0.3 +38.8200 0.3 +38.8250 0.3 +38.8300 0.3 +38.8350 0.3 +38.8400 0.3 +38.8450 0.3 +38.8500 0.3 +38.8550 0.3 +38.8600 0.3 +38.8650 0.3 +38.8700 0.3 +38.8750 0.3 +38.8800 0.2 +38.8850 0.2 +38.8900 0.2 +38.8950 0.2 +38.9000 0.2 +38.9050 0.2 +38.9100 0.2 +38.9150 0.2 +38.9200 0.2 +38.9250 0.2 +38.9300 0.2 +38.9350 0.2 +38.9400 0.2 +38.9450 0.2 +38.9500 0.3 +38.9550 0.2 +38.9600 0.2 +38.9650 0.2 +38.9700 0.2 +38.9750 0.2 +38.9800 0.2 +38.9850 0.2 +38.9900 0.2 +38.9950 0.2 +39.0000 0.2 +39.0050 0.2 +39.0100 0.2 +39.0150 0.2 +39.0200 0.2 +39.0250 0.2 +39.0300 0.2 +39.0350 0.2 +39.0400 0.2 +39.0450 0.2 +39.0500 0.2 +39.0550 0.2 +39.0600 0.2 +39.0650 0.2 +39.0700 0.2 +39.0750 0.2 +39.0800 0.2 +39.0850 0.2 +39.0900 0.2 +39.0950 0.2 +39.1000 0.2 +39.1050 0.2 +39.1100 0.2 +39.1150 0.2 +39.1200 0.2 +39.1250 0.2 +39.1300 0.2 +39.1350 0.2 +39.1400 0.2 +39.1450 0.2 +39.1500 0.2 +39.1550 0.2 +39.1600 0.2 +39.1650 0.2 +39.1700 0.2 +39.1750 0.2 +39.1800 0.2 +39.1850 0.2 +39.1900 0.2 +39.1950 0.2 +39.2000 0.2 +39.2050 0.2 +39.2100 0.2 +39.2150 0.2 +39.2200 0.2 +39.2250 0.2 +39.2300 0.2 +39.2350 0.2 +39.2400 0.2 +39.2450 0.2 +39.2500 0.2 +39.2550 0.2 +39.2600 0.2 +39.2650 0.2 +39.2700 0.2 +39.2750 0.2 +39.2800 0.2 +39.2850 0.2 +39.2900 0.2 +39.2950 0.2 +39.3000 0.2 +39.3050 0.2 +39.3100 0.2 +39.3150 0.2 +39.3200 0.2 +39.3250 0.2 +39.3300 0.2 +39.3350 0.2 +39.3400 0.2 +39.3450 0.2 +39.3500 0.2 +39.3550 0.2 +39.3600 0.2 +39.3650 0.2 +39.3700 0.2 +39.3750 0.2 +39.3800 0.2 +39.3850 0.2 +39.3900 0.2 +39.3950 0.2 +39.4000 0.2 +39.4050 0.2 +39.4100 0.2 +39.4150 0.2 +39.4200 0.2 +39.4250 0.2 +39.4300 0.2 +39.4350 0.2 +39.4400 0.2 +39.4450 0.2 +39.4500 0.2 +39.4550 0.2 +39.4600 0.2 +39.4650 0.2 +39.4700 0.2 +39.4750 0.2 +39.4800 0.2 +39.4850 0.2 +39.4900 0.2 +39.4950 0.2 +39.5000 0.2 +39.5050 0.2 +39.5100 0.2 +39.5150 0.2 +39.5200 0.2 +39.5250 0.2 +39.5300 0.2 +39.5350 0.2 +39.5400 0.2 +39.5450 0.2 +39.5500 0.2 +39.5550 0.2 +39.5600 0.2 +39.5650 0.2 +39.5700 0.2 +39.5750 0.2 +39.5800 0.2 +39.5850 0.2 +39.5900 0.2 +39.5950 0.2 +39.6000 0.2 +39.6050 0.2 +39.6100 0.2 +39.6150 0.2 +39.6200 0.2 +39.6250 0.2 +39.6300 0.2 +39.6350 0.2 +39.6400 0.2 +39.6450 0.2 +39.6500 0.2 +39.6550 0.2 +39.6600 0.2 +39.6650 0.2 +39.6700 0.2 +39.6750 0.2 +39.6800 0.2 +39.6850 0.2 +39.6900 0.2 +39.6950 0.2 +39.7000 0.2 +39.7050 0.2 +39.7100 0.2 +39.7150 0.2 +39.7200 0.2 +39.7250 0.2 +39.7300 0.2 +39.7350 0.2 +39.7400 0.2 +39.7450 0.2 +39.7500 0.2 +39.7550 0.2 +39.7600 0.2 +39.7650 0.2 +39.7700 0.2 +39.7750 0.2 +39.7800 0.2 +39.7850 0.2 +39.7900 0.2 +39.7950 0.2 +39.8000 0.2 +39.8050 0.2 +39.8100 0.2 +39.8150 0.2 +39.8200 0.2 +39.8250 0.2 +39.8300 0.2 +39.8350 0.2 +39.8400 0.2 +39.8450 0.2 +39.8500 0.2 +39.8550 0.2 +39.8600 0.2 +39.8650 0.2 +39.8700 0.2 +39.8750 0.2 +39.8800 0.2 +39.8850 0.2 +39.8900 0.2 +39.8950 0.2 +39.9000 0.2 +39.9050 0.2 +39.9100 0.2 +39.9150 0.2 +39.9200 0.2 +39.9250 0.2 +39.9300 0.2 +39.9350 0.2 +39.9400 0.2 +39.9450 0.2 +39.9500 0.2 +39.9550 0.2 +39.9600 0.2 +39.9650 0.2 +39.9700 0.2 +39.9750 0.2 +39.9800 0.2 +39.9850 0.2 +39.9900 0.2 +39.9950 0.2 +40.0000 0.2 +40.0050 0.2 +40.0100 0.2 +40.0150 0.2 +40.0200 0.2 +40.0250 0.2 +40.0300 0.2 +40.0350 0.2 +40.0400 0.2 +40.0450 0.2 +40.0500 0.2 +40.0550 0.2 +40.0600 0.2 +40.0650 0.2 +40.0700 0.2 +40.0750 0.2 +40.0800 0.2 +40.0850 0.2 +40.0900 0.2 +40.0950 0.2 +40.1000 0.2 +40.1050 0.2 +40.1100 0.2 +40.1150 0.2 +40.1200 0.2 +40.1250 0.2 +40.1300 0.2 +40.1350 0.2 +40.1400 0.2 +40.1450 0.2 +40.1500 0.2 +40.1550 0.2 +40.1600 0.2 +40.1650 0.2 +40.1700 0.2 +40.1750 0.2 +40.1800 0.2 +40.1850 0.2 +40.1900 0.2 +40.1950 0.2 +40.2000 0.2 +40.2050 0.2 +40.2100 0.2 +40.2150 0.2 +40.2200 0.2 +40.2250 0.2 +40.2300 0.2 +40.2350 0.2 +40.2400 0.2 +40.2450 0.2 +40.2500 0.2 +40.2550 0.2 +40.2600 0.2 +40.2650 0.2 +40.2700 0.2 +40.2750 0.2 +40.2800 0.2 +40.2850 0.2 +40.2900 0.2 +40.2950 0.2 +40.3000 0.2 +40.3050 0.2 +40.3100 0.2 +40.3150 0.2 +40.3200 0.2 +40.3250 0.2 +40.3300 0.2 +40.3350 0.2 +40.3400 0.2 +40.3450 0.2 +40.3500 0.2 +40.3550 0.2 +40.3600 0.2 +40.3650 0.2 +40.3700 0.2 +40.3750 0.2 +40.3800 0.2 +40.3850 0.2 +40.3900 0.2 +40.3950 0.2 +40.4000 0.2 +40.4050 0.2 +40.4100 0.2 +40.4150 0.2 +40.4200 0.2 +40.4250 0.2 +40.4300 0.2 +40.4350 0.2 +40.4400 0.2 +40.4450 0.2 +40.4500 0.2 +40.4550 0.2 +40.4600 0.2 +40.4650 0.2 +40.4700 0.2 +40.4750 0.2 +40.4800 0.2 +40.4850 0.2 +40.4900 0.2 +40.4950 0.2 +40.5000 0.2 +40.5050 0.2 +40.5100 0.2 +40.5150 0.2 +40.5200 0.2 +40.5250 0.2 +40.5300 0.2 +40.5350 0.2 +40.5400 0.2 +40.5450 0.2 +40.5500 0.2 +40.5550 0.2 +40.5600 0.2 +40.5650 0.2 +40.5700 0.2 +40.5750 0.2 +40.5800 0.2 +40.5850 0.2 +40.5900 0.2 +40.5950 0.2 +40.6000 0.2 +40.6050 0.2 +40.6100 0.2 +40.6150 0.2 +40.6200 0.2 +40.6250 0.2 +40.6300 0.2 +40.6350 0.2 +40.6400 0.2 +40.6450 0.2 +40.6500 0.2 +40.6550 0.2 +40.6600 0.2 +40.6650 0.2 +40.6700 0.2 +40.6750 0.2 +40.6800 0.2 +40.6850 0.2 +40.6900 0.2 +40.6950 0.2 +40.7000 0.2 +40.7050 0.2 +40.7100 0.2 +40.7150 0.2 +40.7200 0.2 +40.7250 0.2 +40.7300 0.2 +40.7350 0.2 +40.7400 0.2 +40.7450 0.2 +40.7500 0.2 +40.7550 0.2 +40.7600 0.2 +40.7650 0.2 +40.7700 0.2 +40.7750 0.2 +40.7800 0.2 +40.7850 0.2 +40.7900 0.2 +40.7950 0.2 +40.8000 0.2 +40.8050 0.2 +40.8100 0.2 +40.8150 0.2 +40.8200 0.2 +40.8250 0.2 +40.8300 0.2 +40.8350 0.2 +40.8400 0.2 +40.8450 0.2 +40.8500 0.2 +40.8550 0.2 +40.8600 0.2 +40.8650 0.2 +40.8700 0.2 +40.8750 0.2 +40.8800 0.2 +40.8850 0.2 +40.8900 0.2 +40.8950 0.2 +40.9000 0.2 +40.9050 0.2 +40.9100 0.2 +40.9150 0.2 +40.9200 0.2 +40.9250 0.2 +40.9300 0.2 +40.9350 0.2 +40.9400 0.2 +40.9450 0.2 +40.9500 0.2 +40.9550 0.2 +40.9600 0.2 +40.9650 0.2 +40.9700 0.2 +40.9750 0.2 +40.9800 0.2 +40.9850 0.2 +40.9900 0.2 +40.9950 0.2 +41.0000 0.2 +41.0050 0.2 +41.0100 0.2 +41.0150 0.2 +41.0200 0.2 +41.0250 0.2 +41.0300 0.2 +41.0350 0.2 +41.0400 0.2 +41.0450 0.2 +41.0500 0.2 +41.0550 0.2 +41.0600 0.2 +41.0650 0.2 +41.0700 0.2 +41.0750 0.2 +41.0800 0.2 +41.0850 0.2 +41.0900 0.2 +41.0950 0.2 +41.1000 0.2 +41.1050 0.2 +41.1100 0.2 +41.1150 0.2 +41.1200 0.2 +41.1250 0.2 +41.1300 0.2 +41.1350 0.2 +41.1400 0.2 +41.1450 0.2 +41.1500 0.2 +41.1550 0.2 +41.1600 0.2 +41.1650 0.2 +41.1700 0.2 +41.1750 0.2 +41.1800 0.2 +41.1850 0.2 +41.1900 0.2 +41.1950 0.2 +41.2000 0.2 +41.2050 0.2 +41.2100 0.2 +41.2150 0.2 +41.2200 0.2 +41.2250 0.2 +41.2300 0.2 +41.2350 0.2 +41.2400 0.2 +41.2450 0.2 +41.2500 0.2 +41.2550 0.2 +41.2600 0.2 +41.2650 0.2 +41.2700 0.2 +41.2750 0.2 +41.2800 0.2 +41.2850 0.2 +41.2900 0.2 +41.2950 0.2 +41.3000 0.2 +41.3050 0.2 +41.3100 0.2 +41.3150 0.2 +41.3200 0.2 +41.3250 0.2 +41.3300 0.2 +41.3350 0.2 +41.3400 0.2 +41.3450 0.2 +41.3500 0.2 +41.3550 0.2 +41.3600 0.2 +41.3650 0.2 +41.3700 0.2 +41.3750 0.2 +41.3800 0.2 +41.3850 0.2 +41.3900 0.2 +41.3950 0.2 +41.4000 0.2 +41.4050 0.2 +41.4100 0.2 +41.4150 0.2 +41.4200 0.2 +41.4250 0.2 +41.4300 0.2 +41.4350 0.2 +41.4400 0.2 +41.4450 0.2 +41.4500 0.2 +41.4550 0.2 +41.4600 0.2 +41.4650 0.2 +41.4700 0.2 +41.4750 0.2 +41.4800 0.2 +41.4850 0.2 +41.4900 0.2 +41.4950 0.2 +41.5000 0.2 +41.5050 0.2 +41.5100 0.2 +41.5150 0.2 +41.5200 0.2 +41.5250 0.2 +41.5300 0.2 +41.5350 0.2 +41.5400 0.2 +41.5450 0.2 +41.5500 0.2 +41.5550 0.2 +41.5600 0.2 +41.5650 0.2 +41.5700 0.2 +41.5750 0.2 +41.5800 0.2 +41.5850 0.2 +41.5900 0.2 +41.5950 0.2 +41.6000 0.2 +41.6050 0.2 +41.6100 0.2 +41.6150 0.2 +41.6200 0.2 +41.6250 0.2 +41.6300 0.2 +41.6350 0.2 +41.6400 0.2 +41.6450 0.2 +41.6500 0.2 +41.6550 0.2 +41.6600 0.2 +41.6650 0.2 +41.6700 0.2 +41.6750 0.2 +41.6800 0.2 +41.6850 0.2 +41.6900 0.2 +41.6950 0.2 +41.7000 0.2 +41.7050 0.2 +41.7100 0.2 +41.7150 0.2 +41.7200 0.2 +41.7250 0.2 +41.7300 0.2 +41.7350 0.2 +41.7400 0.2 +41.7450 0.2 +41.7500 0.2 +41.7550 0.2 +41.7600 0.2 +41.7650 0.2 +41.7700 0.2 +41.7750 0.2 +41.7800 0.2 +41.7850 0.2 +41.7900 0.2 +41.7950 0.2 +41.8000 0.2 +41.8050 0.2 +41.8100 0.2 +41.8150 0.2 +41.8200 0.2 +41.8250 0.2 +41.8300 0.2 +41.8350 0.2 +41.8400 0.2 +41.8450 0.2 +41.8500 0.2 +41.8550 0.2 +41.8600 0.2 +41.8650 0.2 +41.8700 0.2 +41.8750 0.2 +41.8800 0.2 +41.8850 0.2 +41.8900 0.2 +41.8950 0.2 +41.9000 0.2 +41.9050 0.2 +41.9100 0.2 +41.9150 0.2 +41.9200 0.2 +41.9250 0.2 +41.9300 0.2 +41.9350 0.2 +41.9400 0.2 +41.9450 0.2 +41.9500 0.2 +41.9550 0.2 +41.9600 0.2 +41.9650 0.2 +41.9700 0.2 +41.9750 0.2 +41.9800 0.2 +41.9850 0.2 +41.9900 0.2 +41.9950 0.2 +42.0000 0.2 +42.0050 0.2 +42.0100 0.2 +42.0150 0.2 +42.0200 0.2 +42.0250 0.2 +42.0300 0.2 +42.0350 0.2 +42.0400 0.2 +42.0450 0.2 +42.0500 0.2 +42.0550 0.2 +42.0600 0.2 +42.0650 0.2 +42.0700 0.2 +42.0750 0.2 +42.0800 0.2 +42.0850 0.2 +42.0900 0.2 +42.0950 0.2 +42.1000 0.2 +42.1050 0.2 +42.1100 0.2 +42.1150 0.2 +42.1200 0.2 +42.1250 0.2 +42.1300 0.2 +42.1350 0.2 +42.1400 0.2 +42.1450 0.2 +42.1500 0.2 +42.1550 0.2 +42.1600 0.2 +42.1650 0.2 +42.1700 0.2 +42.1750 0.2 +42.1800 0.2 +42.1850 0.2 +42.1900 0.2 +42.1950 0.2 +42.2000 0.2 +42.2050 0.2 +42.2100 0.2 +42.2150 0.2 +42.2200 0.2 +42.2250 0.2 +42.2300 0.2 +42.2350 0.2 +42.2400 0.2 +42.2450 0.2 +42.2500 0.2 +42.2550 0.2 +42.2600 0.2 +42.2650 0.2 +42.2700 0.2 +42.2750 0.2 +42.2800 0.2 +42.2850 0.2 +42.2900 0.2 +42.2950 0.2 +42.3000 0.2 +42.3050 0.2 +42.3100 0.2 +42.3150 0.2 +42.3200 0.2 +42.3250 0.2 +42.3300 0.2 +42.3350 0.2 +42.3400 0.2 +42.3450 0.2 +42.3500 0.2 +42.3550 0.2 +42.3600 0.2 +42.3650 0.2 +42.3700 0.2 +42.3750 0.2 +42.3800 0.2 +42.3850 0.2 +42.3900 0.2 +42.3950 0.2 +42.4000 0.2 +42.4050 0.2 +42.4100 0.2 +42.4150 0.2 +42.4200 0.2 +42.4250 0.2 +42.4300 0.2 +42.4350 0.2 +42.4400 0.2 +42.4450 0.2 +42.4500 0.2 +42.4550 0.2 +42.4600 0.2 +42.4650 0.2 +42.4700 0.2 +42.4750 0.2 +42.4800 0.2 +42.4850 0.2 +42.4900 0.2 +42.4950 0.2 +42.5000 0.2 +42.5050 0.2 +42.5100 0.2 +42.5150 0.2 +42.5200 0.2 +42.5250 0.2 +42.5300 0.2 +42.5350 0.2 +42.5400 0.2 +42.5450 0.2 +42.5500 0.2 +42.5550 0.2 +42.5600 0.2 +42.5650 0.2 +42.5700 0.2 +42.5750 0.2 +42.5800 0.2 +42.5850 0.2 +42.5900 0.2 +42.5950 0.2 +42.6000 0.2 +42.6050 0.2 +42.6100 0.2 +42.6150 0.2 +42.6200 0.2 +42.6250 0.2 +42.6300 0.2 +42.6350 0.2 +42.6400 0.2 +42.6450 0.2 +42.6500 0.2 +42.6550 0.2 +42.6600 0.2 +42.6650 0.2 +42.6700 0.2 +42.6750 0.2 +42.6800 0.2 +42.6850 0.2 +42.6900 0.2 +42.6950 0.2 +42.7000 0.2 +42.7050 0.2 +42.7100 0.2 +42.7150 0.2 +42.7200 0.2 +42.7250 0.2 +42.7300 0.2 +42.7350 0.2 +42.7400 0.2 +42.7450 0.2 +42.7500 0.2 +42.7550 0.2 +42.7600 0.2 +42.7650 0.2 +42.7700 0.2 +42.7750 0.2 +42.7800 0.2 +42.7850 0.2 +42.7900 0.2 +42.7950 0.2 +42.8000 0.2 +42.8050 0.2 +42.8100 0.2 +42.8150 0.2 +42.8200 0.2 +42.8250 0.2 +42.8300 0.2 +42.8350 0.2 +42.8400 0.2 +42.8450 0.2 +42.8500 0.2 +42.8550 0.2 +42.8600 0.2 +42.8650 0.2 +42.8700 0.2 +42.8750 0.2 +42.8800 0.2 +42.8850 0.2 +42.8900 0.2 +42.8950 0.2 +42.9000 0.2 +42.9050 0.2 +42.9100 0.2 +42.9150 0.2 +42.9200 0.2 +42.9250 0.2 +42.9300 0.2 +42.9350 0.2 +42.9400 0.2 +42.9450 0.2 +42.9500 0.2 +42.9550 0.2 +42.9600 0.2 +42.9650 0.2 +42.9700 0.2 +42.9750 0.2 +42.9800 0.2 +42.9850 0.2 +42.9900 0.2 +42.9950 0.2 +43.0000 0.2 +43.0050 0.2 +43.0100 0.2 +43.0150 0.2 +43.0200 0.2 +43.0250 0.2 +43.0300 0.2 +43.0350 0.2 +43.0400 0.2 +43.0450 0.2 +43.0500 0.2 +43.0550 0.2 +43.0600 0.2 +43.0650 0.2 +43.0700 0.2 +43.0750 0.2 +43.0800 0.2 +43.0850 0.2 +43.0900 0.2 +43.0950 0.2 +43.1000 0.2 +43.1050 0.2 +43.1100 0.2 +43.1150 0.2 +43.1200 0.2 +43.1250 0.2 +43.1300 0.2 +43.1350 0.2 +43.1400 0.2 +43.1450 0.2 +43.1500 0.2 +43.1550 0.2 +43.1600 0.2 +43.1650 0.2 +43.1700 0.2 +43.1750 0.2 +43.1800 0.2 +43.1850 0.2 +43.1900 0.2 +43.1950 0.2 +43.2000 0.2 +43.2050 0.2 +43.2100 0.2 +43.2150 0.2 +43.2200 0.2 +43.2250 0.2 +43.2300 0.2 +43.2350 0.2 +43.2400 0.2 +43.2450 0.2 +43.2500 0.2 +43.2550 0.2 +43.2600 0.2 +43.2650 0.2 +43.2700 0.2 +43.2750 0.2 +43.2800 0.2 +43.2850 0.2 +43.2900 0.2 +43.2950 0.2 +43.3000 0.2 +43.3050 0.2 +43.3100 0.2 +43.3150 0.2 +43.3200 0.2 +43.3250 0.2 +43.3300 0.2 +43.3350 0.2 +43.3400 0.2 +43.3450 0.2 +43.3500 0.2 +43.3550 0.2 +43.3600 0.2 +43.3650 0.2 +43.3700 0.2 +43.3750 0.2 +43.3800 0.2 +43.3850 0.2 +43.3900 0.2 +43.3950 0.2 +43.4000 0.2 +43.4050 0.2 +43.4100 0.2 +43.4150 0.2 +43.4200 0.2 +43.4250 0.2 +43.4300 0.2 +43.4350 0.2 +43.4400 0.2 +43.4450 0.2 +43.4500 0.2 +43.4550 0.2 +43.4600 0.2 +43.4650 0.2 +43.4700 0.2 +43.4750 0.2 +43.4800 0.2 +43.4850 0.2 +43.4900 0.2 +43.4950 0.2 +43.5000 0.2 +43.5050 0.2 +43.5100 0.2 +43.5150 0.2 +43.5200 0.2 +43.5250 0.2 +43.5300 0.2 +43.5350 0.2 +43.5400 0.2 +43.5450 0.2 +43.5500 0.2 +43.5550 0.2 +43.5600 0.2 +43.5650 0.2 +43.5700 0.2 +43.5750 0.2 +43.5800 0.2 +43.5850 0.2 +43.5900 0.2 +43.5950 0.2 +43.6000 0.2 +43.6050 0.2 +43.6100 0.2 +43.6150 0.2 +43.6200 0.2 +43.6250 0.2 +43.6300 0.2 +43.6350 0.2 +43.6400 0.2 +43.6450 0.2 +43.6500 0.2 +43.6550 0.2 +43.6600 0.2 +43.6650 0.2 +43.6700 0.2 +43.6750 0.2 +43.6800 0.2 +43.6850 0.2 +43.6900 0.2 +43.6950 0.2 +43.7000 0.2 +43.7050 0.2 +43.7100 0.2 +43.7150 0.2 +43.7200 0.2 +43.7250 0.2 +43.7300 0.2 +43.7350 0.2 +43.7400 0.2 +43.7450 0.2 +43.7500 0.2 +43.7550 0.2 +43.7600 0.2 +43.7650 0.2 +43.7700 0.2 +43.7750 0.2 +43.7800 0.2 +43.7850 0.2 +43.7900 0.2 +43.7950 0.2 +43.8000 0.2 +43.8050 0.2 +43.8100 0.2 +43.8150 0.2 +43.8200 0.2 +43.8250 0.2 +43.8300 0.2 +43.8350 0.2 +43.8400 0.2 +43.8450 0.2 +43.8500 0.2 +43.8550 0.2 +43.8600 0.2 +43.8650 0.2 +43.8700 0.2 +43.8750 0.2 +43.8800 0.2 +43.8850 0.2 +43.8900 0.2 +43.8950 0.2 +43.9000 0.2 +43.9050 0.2 +43.9100 0.2 +43.9150 0.2 +43.9200 0.2 +43.9250 0.2 +43.9300 0.2 +43.9350 0.2 +43.9400 0.2 +43.9450 0.2 +43.9500 0.2 +43.9550 0.2 +43.9600 0.2 +43.9650 0.2 +43.9700 0.2 +43.9750 0.2 +43.9800 0.2 +43.9850 0.2 +43.9900 0.2 +43.9950 0.2 +44.0000 0.2 +44.0050 0.2 +44.0100 0.2 +44.0150 0.2 +44.0200 0.2 +44.0250 0.2 +44.0300 0.2 +44.0350 0.4 +44.0400 0.6 +44.0450 0.7 +44.0500 0.7 +44.0550 0.6 +44.0600 0.6 +44.0650 0.5 +44.0700 0.5 +44.0750 0.5 +44.0800 0.5 +44.0850 0.5 +44.0900 0.4 +44.0950 0.5 +44.1000 0.5 +44.1050 0.6 +44.1100 0.8 +44.1150 1.0 +44.1200 1.2 +44.1250 1.3 +44.1300 1.3 +44.1350 1.3 +44.1400 1.4 +44.1450 1.5 +44.1500 1.4 +44.1550 1.3 +44.1600 1.5 +44.1650 1.6 +44.1700 1.6 +44.1750 1.6 +44.1800 1.8 +44.1850 1.9 +44.1900 2.0 +44.1950 2.1 +44.2000 2.3 +44.2050 2.5 +44.2100 2.6 +44.2150 2.6 +44.2200 2.7 +44.2250 2.8 +44.2300 2.8 +44.2350 2.8 +44.2400 2.9 +44.2450 3.0 +44.2500 3.2 +44.2550 3.2 +44.2600 3.3 +44.2650 3.5 +44.2700 3.7 +44.2750 3.8 +44.2800 3.9 +44.2850 4.2 +44.2900 4.3 +44.2950 4.4 +44.3000 4.4 +44.3050 4.6 +44.3100 4.5 +44.3150 4.5 +44.3200 4.5 +44.3250 4.5 +44.3300 4.5 +44.3350 4.5 +44.3400 4.5 +44.3450 4.7 +44.3500 4.6 +44.3550 4.7 +44.3600 4.8 +44.3650 4.9 +44.3700 4.9 +44.3750 4.9 +44.3800 4.9 +44.3850 4.9 +44.3900 4.9 +44.3950 4.9 +44.4000 4.8 +44.4050 4.8 +44.4100 4.8 +44.4150 4.8 +44.4200 4.8 +44.4250 4.9 +44.4300 4.9 +44.4350 5.0 +44.4400 4.9 +44.4450 5.0 +44.4500 4.9 +44.4550 5.0 +44.4600 4.9 +44.4650 5.0 +44.4700 4.9 +44.4750 4.9 +44.4800 4.9 +44.4850 4.9 +44.4900 4.8 +44.4950 4.9 +44.5000 4.9 +44.5050 5.0 +44.5100 4.9 +44.5150 5.0 +44.5200 4.9 +44.5250 5.0 +44.5300 4.9 +44.5350 5.0 +44.5400 4.9 +44.5450 5.0 +44.5500 4.9 +44.5550 4.9 +44.5600 4.9 +44.5650 4.9 +44.5700 4.9 +44.5750 4.9 +44.5800 4.9 +44.5850 5.0 +44.5900 4.9 +44.5950 5.0 +44.6000 5.0 +44.6050 5.0 +44.6100 5.0 +44.6150 5.0 +44.6200 5.0 +44.6250 4.9 +44.6300 4.9 +44.6350 4.9 +44.6400 4.9 +44.6450 4.9 +44.6500 4.9 +44.6550 4.9 +44.6600 4.9 +44.6650 4.9 +44.6700 5.0 +44.6750 4.9 +44.6800 5.0 +44.6850 5.0 +44.6900 5.0 +44.6950 4.9 +44.7000 5.0 +44.7050 4.9 +44.7100 4.9 +44.7150 4.9 +44.7200 5.0 +44.7250 4.9 +44.7300 4.9 +44.7350 4.9 +44.7400 5.0 +44.7450 4.9 +44.7500 5.0 +44.7550 4.9 +44.7600 5.0 +44.7650 4.9 +44.7700 5.0 +44.7750 4.9 +44.7800 5.0 +44.7850 4.9 +44.7900 5.0 +44.7950 4.9 +44.8000 4.9 +44.8050 4.9 +44.8100 4.9 +44.8150 4.9 +44.8200 5.0 +44.8250 4.9 +44.8300 5.0 +44.8350 5.0 +44.8400 5.0 +44.8450 5.0 +44.8500 5.0 +44.8550 4.9 +44.8600 5.0 +44.8650 4.9 +44.8700 4.9 +44.8750 4.9 +44.8800 4.9 +44.8850 4.9 +44.8900 4.9 +44.8950 4.9 +44.9000 4.9 +44.9050 5.0 +44.9100 4.9 +44.9150 5.0 +44.9200 5.0 +44.9250 5.0 +44.9300 4.9 +44.9350 5.0 +44.9400 5.0 +44.9450 5.0 +44.9500 4.9 +44.9550 5.0 +44.9600 4.9 +44.9650 4.9 +44.9700 4.9 +44.9750 5.0 +44.9800 4.9 +44.9850 5.0 +44.9900 4.9 +44.9950 5.0 +45.0000 4.9 +45.0050 5.0 +45.0100 4.9 +45.0150 5.0 +45.0200 4.9 +45.0250 5.0 +45.0300 4.9 +45.0350 5.0 +45.0400 4.9 +45.0450 5.0 +45.0500 4.9 +45.0550 5.0 +45.0600 4.9 +45.0650 5.0 +45.0700 5.0 +45.0750 5.0 +45.0800 4.9 +45.0850 5.0 +45.0900 4.9 +45.0950 5.0 +45.1000 5.0 +45.1050 5.0 +45.1100 4.9 +45.1150 4.9 +45.1200 4.9 +45.1250 5.0 +45.1300 4.9 +45.1350 5.0 +45.1400 5.0 +45.1450 5.0 +45.1500 5.0 +45.1550 5.0 +45.1600 5.0 +45.1650 5.0 +45.1700 5.0 +45.1750 5.0 +45.1800 5.0 +45.1850 4.9 +45.1900 4.9 +45.1950 4.9 +45.2000 4.9 +45.2050 4.9 +45.2100 5.0 +45.2150 4.9 +45.2200 5.0 +45.2250 4.9 +45.2300 5.0 +45.2350 4.9 +45.2400 5.0 +45.2450 4.9 +45.2500 5.0 +45.2550 4.9 +45.2600 5.0 +45.2650 4.9 +45.2700 5.0 +45.2750 4.9 +45.2800 5.0 +45.2850 4.9 +45.2900 5.0 +45.2950 4.9 +45.3000 5.0 +45.3050 5.0 +45.3100 5.0 +45.3150 4.9 +45.3200 5.0 +45.3250 4.9 +45.3300 5.0 +45.3350 4.9 +45.3400 5.0 +45.3450 4.9 +45.3500 5.0 +45.3550 4.9 +45.3600 5.0 +45.3650 4.9 +45.3700 5.0 +45.3750 4.9 +45.3800 5.0 +45.3850 4.9 +45.3900 5.0 +45.3950 4.9 +45.4000 5.0 +45.4050 4.9 +45.4100 5.0 +45.4150 4.9 +45.4200 5.0 +45.4250 4.9 +45.4300 4.9 +45.4350 4.9 +45.4400 5.0 +45.4450 4.9 +45.4500 5.0 +45.4550 4.9 +45.4600 4.9 +45.4650 5.0 +45.4700 4.9 +45.4750 5.0 +45.4800 4.9 +45.4850 5.0 +45.4900 5.0 +45.4950 5.0 +45.5000 4.9 +45.5050 5.0 +45.5100 4.9 +45.5150 5.0 +45.5200 4.9 +45.5250 4.9 +45.5300 4.9 +45.5350 5.0 +45.5400 4.9 +45.5450 5.0 +45.5500 4.9 +45.5550 5.0 +45.5600 4.9 +45.5650 5.0 +45.5700 4.9 +45.5750 5.0 +45.5800 4.9 +45.5850 5.0 +45.5900 4.9 +45.5950 5.0 +45.6000 4.9 +45.6050 5.0 +45.6100 4.9 +45.6150 5.0 +45.6200 4.9 +45.6250 5.0 +45.6300 4.9 +45.6350 5.0 +45.6400 4.9 +45.6450 5.0 +45.6500 4.9 +45.6550 5.0 +45.6600 4.9 +45.6650 5.0 +45.6700 4.9 +45.6750 5.0 +45.6800 4.9 +45.6850 5.0 +45.6900 4.9 +45.6950 5.0 +45.7000 4.9 +45.7050 4.9 +45.7100 4.9 +45.7150 5.0 +45.7200 4.9 +45.7250 5.0 +45.7300 4.9 +45.7350 5.0 +45.7400 4.9 +45.7450 4.9 +45.7500 4.9 +45.7550 4.9 +45.7600 4.9 +45.7650 4.9 +45.7700 4.9 +45.7750 4.9 +45.7800 4.9 +45.7850 4.9 +45.7900 5.0 +45.7950 4.9 +45.8000 4.9 +45.8050 4.9 +45.8100 4.9 +45.8150 4.9 +45.8200 5.0 +45.8250 4.9 +45.8300 5.0 +45.8350 4.9 +45.8400 5.0 +45.8450 4.9 +45.8500 4.9 +45.8550 4.9 +45.8600 4.9 +45.8650 4.9 +45.8700 5.0 +45.8750 4.9 +45.8800 5.0 +45.8850 4.9 +45.8900 4.9 +45.8950 4.9 +45.9000 5.0 +45.9050 4.9 +45.9100 5.0 +45.9150 4.9 +45.9200 5.0 +45.9250 4.9 +45.9300 5.0 +45.9350 4.9 +45.9400 5.0 +45.9450 4.9 +45.9500 5.0 +45.9550 4.9 +45.9600 5.0 +45.9650 4.9 +45.9700 5.0 +45.9750 4.9 +45.9800 5.0 +45.9850 4.9 +45.9900 5.0 +45.9950 4.9 +46.0000 5.0 +46.0050 4.9 +46.0100 4.9 +46.0150 4.9 +46.0200 5.0 +46.0250 4.9 +46.0300 4.9 +46.0350 4.9 +46.0400 4.9 +46.0450 4.9 +46.0500 4.9 +46.0550 5.0 +46.0600 4.9 +46.0650 4.9 +46.0700 4.9 +46.0750 5.0 +46.0800 4.9 +46.0850 4.9 +46.0900 4.9 +46.0950 5.0 +46.1000 4.9 +46.1050 5.0 +46.1100 4.9 +46.1150 5.0 +46.1200 4.9 +46.1250 5.0 +46.1300 4.9 +46.1350 4.9 +46.1400 4.9 +46.1450 5.0 +46.1500 4.9 +46.1550 4.9 +46.1600 4.9 +46.1650 5.0 +46.1700 4.9 +46.1750 5.0 +46.1800 4.9 +46.1850 5.0 +46.1900 4.9 +46.1950 5.0 +46.2000 4.9 +46.2050 5.0 +46.2100 4.9 +46.2150 5.0 +46.2200 4.9 +46.2250 4.9 +46.2300 4.9 +46.2350 5.0 +46.2400 4.9 +46.2450 5.0 +46.2500 4.9 +46.2550 5.0 +46.2600 4.9 +46.2650 5.0 +46.2700 4.9 +46.2750 5.0 +46.2800 4.9 +46.2850 5.0 +46.2900 4.9 +46.2950 5.0 +46.3000 4.9 +46.3050 5.0 +46.3100 5.0 +46.3150 5.0 +46.3200 4.9 +46.3250 5.0 +46.3300 5.0 +46.3350 5.0 +46.3400 4.9 +46.3450 5.0 +46.3500 5.0 +46.3550 5.0 +46.3600 4.9 +46.3650 4.9 +46.3700 5.0 +46.3750 4.9 +46.3800 5.0 +46.3850 4.9 +46.3900 5.0 +46.3950 4.9 +46.4000 4.9 +46.4050 4.9 +46.4100 5.0 +46.4150 4.9 +46.4200 4.9 +46.4250 4.9 +46.4300 4.9 +46.4350 4.9 +46.4400 5.0 +46.4450 4.9 +46.4500 5.0 +46.4550 4.9 +46.4600 5.0 +46.4650 4.9 +46.4700 5.0 +46.4750 4.9 +46.4800 5.0 +46.4850 4.9 +46.4900 5.0 +46.4950 4.9 +46.5000 5.0 +46.5050 4.9 +46.5100 5.0 +46.5150 4.9 +46.5200 5.0 +46.5250 4.9 +46.5300 5.0 +46.5350 4.9 +46.5400 5.0 +46.5450 4.9 +46.5500 5.0 +46.5550 4.9 +46.5600 5.0 +46.5650 4.9 +46.5700 5.0 +46.5750 4.9 +46.5800 5.0 +46.5850 4.9 +46.5900 5.0 +46.5950 4.9 +46.6000 5.0 +46.6050 4.9 +46.6100 5.0 +46.6150 4.9 +46.6200 4.9 +46.6250 4.9 +46.6300 5.0 +46.6350 4.9 +46.6400 5.0 +46.6450 5.0 +46.6500 5.0 +46.6550 4.9 +46.6600 4.9 +46.6650 4.9 +46.6700 4.9 +46.6750 4.9 +46.6800 4.9 +46.6850 5.0 +46.6900 4.9 +46.6950 5.0 +46.7000 4.9 +46.7050 5.0 +46.7100 4.9 +46.7150 5.0 +46.7200 4.9 +46.7250 4.9 +46.7300 4.9 +46.7350 4.9 +46.7400 4.9 +46.7450 5.0 +46.7500 4.9 +46.7550 4.9 +46.7600 4.9 +46.7650 5.0 +46.7700 4.9 +46.7750 5.0 +46.7800 4.9 +46.7850 5.0 +46.7900 4.9 +46.7950 5.0 +46.8000 4.9 +46.8050 5.0 +46.8100 4.9 +46.8150 5.0 +46.8200 4.9 +46.8250 5.0 +46.8300 4.9 +46.8350 5.0 +46.8400 4.9 +46.8450 5.0 +46.8500 4.9 +46.8550 5.0 +46.8600 4.9 +46.8650 5.0 +46.8700 4.9 +46.8750 5.0 +46.8800 4.9 +46.8850 5.0 +46.8900 4.9 +46.8950 5.0 +46.9000 4.9 +46.9050 5.0 +46.9100 4.9 +46.9150 5.0 +46.9200 4.9 +46.9250 5.0 +46.9300 4.9 +46.9350 5.0 +46.9400 5.0 +46.9450 5.0 +46.9500 5.0 +46.9550 5.0 +46.9600 4.9 +46.9650 5.0 +46.9700 5.0 +46.9750 5.0 +46.9800 4.9 +46.9850 5.0 +46.9900 5.0 +46.9950 4.9 +47.0000 4.9 +47.0050 5.0 +47.0100 5.0 +47.0150 5.0 +47.0200 5.0 +47.0250 5.0 +47.0300 5.0 +47.0350 4.9 +47.0400 4.9 +47.0450 4.9 +47.0500 4.9 +47.0550 4.9 +47.0600 5.0 +47.0650 4.9 +47.0700 5.0 +47.0750 4.9 +47.0800 5.0 +47.0850 4.9 +47.0900 5.0 +47.0950 4.9 +47.1000 5.0 +47.1050 4.9 +47.1100 4.9 +47.1150 4.9 +47.1200 4.9 +47.1250 4.9 +47.1300 4.9 +47.1350 4.9 +47.1400 5.0 +47.1450 4.9 +47.1500 5.0 +47.1550 4.9 +47.1600 5.0 +47.1650 4.9 +47.1700 5.0 +47.1750 4.9 +47.1800 5.0 +47.1850 4.9 +47.1900 5.0 +47.1950 4.9 +47.2000 5.0 +47.2050 4.9 +47.2100 5.0 +47.2150 4.9 +47.2200 5.0 +47.2250 4.9 +47.2300 5.0 +47.2350 4.9 +47.2400 5.0 +47.2450 4.9 +47.2500 5.0 +47.2550 4.9 +47.2600 5.0 +47.2650 4.9 +47.2700 4.9 +47.2750 4.9 +47.2800 4.9 +47.2850 4.9 +47.2900 5.0 +47.2950 4.9 +47.3000 5.0 +47.3050 5.0 +47.3100 5.0 +47.3150 4.9 +47.3200 4.9 +47.3250 4.9 +47.3300 5.0 +47.3350 4.9 +47.3400 4.9 +47.3450 4.9 +47.3500 4.9 +47.3550 4.9 +47.3600 4.9 +47.3650 4.9 +47.3700 4.9 +47.3750 4.9 +47.3800 4.9 +47.3850 5.0 +47.3900 4.9 +47.3950 4.9 +47.4000 4.9 +47.4050 5.0 +47.4100 4.9 +47.4150 4.9 +47.4200 4.9 +47.4250 4.9 +47.4300 4.9 +47.4350 4.9 +47.4400 4.9 +47.4450 4.9 +47.4500 4.9 +47.4550 4.9 +47.4600 4.9 +47.4650 5.0 +47.4700 4.9 +47.4750 5.0 +47.4800 4.9 +47.4850 4.9 +47.4900 4.9 +47.4950 5.0 +47.5000 4.9 +47.5050 5.0 +47.5100 4.9 +47.5150 4.9 +47.5200 4.9 +47.5250 5.0 +47.5300 4.9 +47.5350 5.0 +47.5400 4.9 +47.5450 5.0 +47.5500 4.9 +47.5550 5.0 +47.5600 4.9 +47.5650 5.0 +47.5700 4.9 +47.5750 5.0 +47.5800 4.9 +47.5850 5.0 +47.5900 4.9 +47.5950 5.0 +47.6000 4.9 +47.6050 5.0 +47.6100 4.9 +47.6150 4.9 +47.6200 4.9 +47.6250 4.9 +47.6300 4.9 +47.6350 4.9 +47.6400 4.9 +47.6450 4.9 +47.6500 4.9 +47.6550 4.9 +47.6600 5.0 +47.6650 4.9 +47.6700 4.9 +47.6750 4.9 +47.6800 4.9 +47.6850 4.9 +47.6900 5.0 +47.6950 4.9 +47.7000 4.9 +47.7050 4.9 +47.7100 5.0 +47.7150 4.9 +47.7200 4.9 +47.7250 4.9 +47.7300 5.0 +47.7350 4.9 +47.7400 5.0 +47.7450 4.9 +47.7500 4.9 +47.7550 4.9 +47.7600 4.9 +47.7650 4.9 +47.7700 5.0 +47.7750 4.9 +47.7800 5.0 +47.7850 4.9 +47.7900 5.0 +47.7950 4.9 +47.8000 5.0 +47.8050 4.9 +47.8100 5.0 +47.8150 4.9 +47.8200 5.0 +47.8250 4.9 +47.8300 5.0 +47.8350 4.9 +47.8400 4.9 +47.8450 4.9 +47.8500 5.0 +47.8550 4.9 +47.8600 5.0 +47.8650 4.9 +47.8700 5.0 +47.8750 4.9 +47.8800 5.0 +47.8850 4.9 +47.8900 5.0 +47.8950 4.9 +47.9000 5.0 +47.9050 4.9 +47.9100 5.0 +47.9150 4.9 +47.9200 5.0 +47.9250 4.9 +47.9300 5.0 +47.9350 5.0 +47.9400 5.0 +47.9450 4.9 +47.9500 5.0 +47.9550 4.9 +47.9600 5.0 +47.9650 4.9 +47.9700 4.9 +47.9750 4.9 +47.9800 4.9 +47.9850 4.9 +47.9900 4.9 +47.9950 4.9 +48.0000 4.9 +48.0050 4.9 +48.0100 5.0 +48.0150 5.0 +48.0200 4.9 +48.0250 5.0 +48.0300 4.9 +48.0350 5.0 +48.0400 4.9 +48.0450 4.9 +48.0500 4.9 +48.0550 4.9 +48.0600 4.9 +48.0650 4.9 +48.0700 4.9 +48.0750 4.9 +48.0800 4.9 +48.0850 4.9 +48.0900 4.9 +48.0950 5.0 +48.1000 4.9 +48.1050 5.0 +48.1100 4.9 +48.1150 4.9 +48.1200 4.9 +48.1250 4.9 +48.1300 4.9 +48.1350 4.9 +48.1400 4.9 +48.1450 5.0 +48.1500 4.9 +48.1550 5.0 +48.1600 4.9 +48.1650 5.0 +48.1700 4.9 +48.1750 5.0 +48.1800 4.9 +48.1850 4.9 +48.1900 4.9 +48.1950 4.9 +48.2000 4.9 +48.2050 5.0 +48.2100 4.9 +48.2150 4.9 +48.2200 4.9 +48.2250 4.9 +48.2300 4.9 +48.2350 5.0 +48.2400 4.9 +48.2450 5.0 +48.2500 4.9 +48.2550 5.0 +48.2600 4.9 +48.2650 4.9 +48.2700 4.9 +48.2750 4.9 +48.2800 4.9 +48.2850 4.9 +48.2900 4.9 +48.2950 4.9 +48.3000 4.9 +48.3050 4.9 +48.3100 4.9 +48.3150 4.9 +48.3200 4.9 +48.3250 4.9 +48.3300 4.9 +48.3350 4.9 +48.3400 4.9 +48.3450 4.9 +48.3500 4.9 +48.3550 4.9 +48.3600 4.9 +48.3650 4.9 +48.3700 4.9 +48.3750 4.9 +48.3800 4.9 +48.3850 4.9 +48.3900 4.9 +48.3950 4.9 +48.4000 4.9 +48.4050 4.9 +48.4100 4.9 +48.4150 4.9 +48.4200 4.9 +48.4250 4.9 +48.4300 4.9 +48.4350 4.9 +48.4400 4.9 +48.4450 4.9 +48.4500 4.9 +48.4550 4.9 +48.4600 4.9 +48.4650 4.9 +48.4700 4.9 +48.4750 4.9 +48.4800 4.9 +48.4850 4.9 +48.4900 4.9 +48.4950 4.9 +48.5000 4.9 +48.5050 4.9 +48.5100 4.9 +48.5150 4.8 +48.5200 4.9 +48.5250 4.9 +48.5300 4.9 +48.5350 4.9 +48.5400 4.9 +48.5450 4.9 +48.5500 4.9 +48.5550 4.9 +48.5600 5.0 +48.5650 4.9 +48.5700 4.9 +48.5750 4.9 +48.5800 4.9 +48.5850 4.9 +48.5900 4.9 +48.5950 4.9 +48.6000 4.9 +48.6050 4.9 +48.6100 4.9 +48.6150 4.9 +48.6200 4.9 +48.6250 4.9 +48.6300 4.9 +48.6350 4.9 +48.6400 4.9 +48.6450 4.9 +48.6500 4.9 +48.6550 4.9 +48.6600 4.9 +48.6650 4.9 +48.6700 4.9 +48.6750 4.9 +48.6800 4.9 +48.6850 4.9 +48.6900 4.9 +48.6950 4.9 +48.7000 4.9 +48.7050 4.9 +48.7100 4.9 +48.7150 4.9 +48.7200 4.9 +48.7250 4.9 +48.7300 4.9 +48.7350 4.9 +48.7400 4.9 +48.7450 4.9 +48.7500 4.9 +48.7550 4.9 +48.7600 4.9 +48.7650 4.9 +48.7700 4.8 +48.7750 4.9 +48.7800 4.9 +48.7850 4.9 +48.7900 4.9 +48.7950 4.9 +48.8000 4.9 +48.8050 4.9 +48.8100 4.8 +48.8150 4.9 +48.8200 4.9 +48.8250 4.9 +48.8300 4.9 +48.8350 4.9 +48.8400 4.9 +48.8450 4.9 +48.8500 4.9 +48.8550 4.9 +48.8600 4.9 +48.8650 4.9 +48.8700 4.9 +48.8750 4.9 +48.8800 4.9 +48.8850 4.9 +48.8900 4.9 +48.8950 4.9 +48.9000 4.9 +48.9050 4.9 +48.9100 4.9 +48.9150 4.9 +48.9200 4.9 +48.9250 4.9 +48.9300 4.9 +48.9350 4.9 +48.9400 4.9 +48.9450 4.9 +48.9500 4.9 +48.9550 4.9 +48.9600 4.8 +48.9650 4.9 +48.9700 4.9 +48.9750 4.9 +48.9800 4.9 +48.9850 4.9 +48.9900 4.9 +48.9950 4.9 +49.0000 4.9 +49.0050 4.8 +49.0100 4.9 +49.0150 4.9 +49.0200 4.9 +49.0250 4.9 +49.0300 4.9 +49.0350 4.8 +49.0400 4.9 +49.0450 4.8 +49.0500 4.9 +49.0550 4.9 +49.0600 4.9 +49.0650 4.8 +49.0700 4.9 +49.0750 4.8 +49.0800 4.9 +49.0850 4.8 +49.0900 4.9 +49.0950 4.8 +49.1000 4.9 +49.1050 4.8 +49.1100 4.9 +49.1150 4.8 +49.1200 4.9 +49.1250 4.8 +49.1300 4.9 +49.1350 4.9 +49.1400 4.9 +49.1450 4.8 +49.1500 4.9 +49.1550 4.8 +49.1600 4.9 +49.1650 4.8 +49.1700 4.9 +49.1750 4.8 +49.1800 4.9 +49.1850 4.8 +49.1900 4.9 +49.1950 4.8 +49.2000 4.9 +49.2050 4.8 +49.2100 4.9 +49.2150 4.8 +49.2200 4.9 +49.2250 4.9 +49.2300 4.9 +49.2350 4.8 +49.2400 4.9 +49.2450 4.8 +49.2500 4.9 +49.2550 4.9 +49.2600 4.9 +49.2650 4.9 +49.2700 4.9 +49.2750 4.9 +49.2800 4.9 +49.2850 4.9 +49.2900 4.9 +49.2950 4.9 +49.3000 4.9 +49.3050 4.9 +49.3100 4.8 +49.3150 4.9 +49.3200 4.8 +49.3250 4.9 +49.3300 4.8 +49.3350 4.9 +49.3400 4.8 +49.3450 4.9 +49.3500 4.8 +49.3550 4.9 +49.3600 4.8 +49.3650 4.9 +49.3700 4.8 +49.3750 4.9 +49.3800 4.8 +49.3850 4.9 +49.3900 4.8 +49.3950 4.9 +49.4000 4.8 +49.4050 4.9 +49.4100 4.8 +49.4150 4.9 +49.4200 4.9 +49.4250 4.9 +49.4300 4.9 +49.4350 4.9 +49.4400 4.8 +49.4450 4.9 +49.4500 4.8 +49.4550 4.9 +49.4600 4.8 +49.4650 4.9 +49.4700 4.8 +49.4750 4.9 +49.4800 4.8 +49.4850 4.9 +49.4900 4.9 +49.4950 4.9 +49.5000 4.9 +49.5050 4.9 +49.5100 4.9 +49.5150 4.9 +49.5200 4.9 +49.5250 4.9 +49.5300 4.9 +49.5350 4.9 +49.5400 4.9 +49.5450 4.9 +49.5500 4.9 +49.5550 4.9 +49.5600 4.9 +49.5650 4.9 +49.5700 4.9 +49.5750 4.9 +49.5800 4.9 +49.5850 4.9 +49.5900 4.9 +49.5950 4.9 +49.6000 4.9 +49.6050 4.9 +49.6100 4.9 +49.6150 4.9 +49.6200 4.9 +49.6250 4.9 +49.6300 4.9 +49.6350 4.9 +49.6400 4.9 +49.6450 4.9 +49.6500 4.9 +49.6550 4.9 +49.6600 4.9 +49.6650 4.9 +49.6700 4.9 +49.6750 4.9 +49.6800 4.9 +49.6850 4.8 +49.6900 4.9 +49.6950 4.9 +49.7000 4.9 +49.7050 4.9 +49.7100 4.9 +49.7150 4.9 +49.7200 4.9 +49.7250 4.9 +49.7300 4.9 +49.7350 4.9 +49.7400 4.9 +49.7450 4.9 +49.7500 4.9 +49.7550 4.9 +49.7600 4.9 +49.7650 4.8 +49.7700 4.9 +49.7750 4.9 +49.7800 4.9 +49.7850 4.9 +49.7900 5.0 +49.7950 4.9 +49.8000 4.9 +49.8050 4.9 +49.8100 4.9 +49.8150 4.9 +49.8200 4.9 +49.8250 4.9 +49.8300 4.9 +49.8350 4.9 +49.8400 4.9 +49.8450 4.8 +49.8500 4.9 +49.8550 4.9 +49.8600 4.9 +49.8650 4.9 +49.8700 4.9 +49.8750 4.9 +49.8800 4.9 +49.8850 4.9 +49.8900 4.9 +49.8950 4.9 +49.9000 4.9 +49.9050 4.9 +49.9100 4.9 +49.9150 4.9 +49.9200 4.8 +49.9250 4.9 +49.9300 4.9 +49.9350 4.9 +49.9400 4.9 +49.9450 4.9 +49.9500 4.9 +49.9550 4.9 +49.9600 4.9 +49.9650 4.9 +49.9700 4.9 +49.9750 4.9 +49.9800 4.9 +49.9850 4.9 +49.9900 4.8 +49.9950 4.9 +50.0000 4.8 +50.0050 4.9 +50.0100 4.8 +50.0150 4.9 +50.0200 4.9 +50.0250 4.9 +50.0300 4.9 +50.0350 4.9 +50.0400 4.9 +50.0450 4.9 +50.0500 4.8 +50.0550 4.9 +50.0600 4.8 +50.0650 4.9 +50.0700 4.9 +50.0750 4.9 +50.0800 4.9 +50.0850 4.9 +50.0900 4.8 +50.0950 4.9 +50.1000 4.9 +50.1050 4.9 +50.1100 4.8 +50.1150 4.9 +50.1200 4.9 +50.1250 4.9 +50.1300 4.8 +50.1350 4.9 +50.1400 4.8 +50.1450 4.9 +50.1500 4.9 +50.1550 4.9 +50.1600 4.9 +50.1650 4.9 +50.1700 4.9 +50.1750 4.9 +50.1800 4.9 +50.1850 4.9 +50.1900 4.9 +50.1950 4.9 +50.2000 4.9 +50.2050 4.9 +50.2100 4.8 +50.2150 4.9 +50.2200 4.9 +50.2250 4.9 +50.2300 4.9 +50.2350 4.9 +50.2400 4.9 +50.2450 4.9 +50.2500 4.9 +50.2550 4.9 +50.2600 4.9 +50.2650 4.9 +50.2700 4.9 +50.2750 4.9 +50.2800 4.9 +50.2850 4.8 +50.2900 4.9 +50.2950 4.8 +50.3000 4.9 +50.3050 4.9 +50.3100 4.9 +50.3150 4.9 +50.3200 4.9 +50.3250 4.8 +50.3300 4.9 +50.3350 4.9 +50.3400 4.9 +50.3450 4.8 +50.3500 4.9 +50.3550 4.9 +50.3600 4.9 +50.3650 4.8 +50.3700 4.9 +50.3750 4.8 +50.3800 4.9 +50.3850 4.8 +50.3900 4.9 +50.3950 4.8 +50.4000 4.9 +50.4050 4.8 +50.4100 4.9 +50.4150 4.8 +50.4200 4.9 +50.4250 4.8 +50.4300 4.9 +50.4350 4.8 +50.4400 4.9 +50.4450 4.8 +50.4500 4.9 +50.4550 4.8 +50.4600 4.9 +50.4650 4.9 +50.4700 4.9 +50.4750 4.9 +50.4800 4.9 +50.4850 4.9 +50.4900 4.9 +50.4950 4.8 +50.5000 4.9 +50.5050 4.9 +50.5100 4.9 +50.5150 4.8 +50.5200 4.9 +50.5250 4.9 +50.5300 4.9 +50.5350 4.9 +50.5400 4.9 +50.5450 4.9 +50.5500 4.9 +50.5550 4.9 +50.5600 4.9 +50.5650 4.9 +50.5700 4.9 +50.5750 4.9 +50.5800 4.8 +50.5850 4.8 +50.5900 4.9 +50.5950 4.9 +50.6000 4.9 +50.6050 4.9 +50.6100 4.8 +50.6150 4.9 +50.6200 4.8 +50.6250 4.9 +50.6300 4.9 +50.6350 4.9 +50.6400 4.8 +50.6450 4.9 +50.6500 4.8 +50.6550 4.9 +50.6600 4.8 +50.6650 4.9 +50.6700 4.8 +50.6750 4.9 +50.6800 4.8 +50.6850 4.9 +50.6900 4.8 +50.6950 4.9 +50.7000 4.8 +50.7050 4.9 +50.7100 4.8 +50.7150 4.9 +50.7200 4.8 +50.7250 4.9 +50.7300 4.8 +50.7350 4.9 +50.7400 4.8 +50.7450 4.9 +50.7500 4.8 +50.7550 4.9 +50.7600 4.8 +50.7650 4.9 +50.7700 4.9 +50.7750 4.9 +50.7800 4.9 +50.7850 4.9 +50.7900 4.9 +50.7950 4.9 +50.8000 4.9 +50.8050 4.9 +50.8100 4.9 +50.8150 4.9 +50.8200 4.8 +50.8250 4.9 +50.8300 4.9 +50.8350 4.9 +50.8400 4.9 +50.8450 4.9 +50.8500 4.9 +50.8550 4.9 +50.8600 4.9 +50.8650 4.9 +50.8700 4.9 +50.8750 4.9 +50.8800 4.9 +50.8850 4.9 +50.8900 4.9 +50.8950 4.8 +50.9000 4.9 +50.9050 4.9 +50.9100 4.9 +50.9150 4.9 +50.9200 4.9 +50.9250 4.9 +50.9300 4.9 +50.9350 4.8 +50.9400 4.9 +50.9450 4.8 +50.9500 4.9 +50.9550 4.8 +50.9600 4.9 +50.9650 4.8 +50.9700 4.9 +50.9750 4.8 +50.9800 4.9 +50.9850 4.8 +50.9900 4.9 +50.9950 4.8 +51.0000 4.9 +51.0050 4.8 +51.0100 4.9 +51.0150 4.8 +51.0200 4.9 +51.0250 4.8 +51.0300 4.9 +51.0350 4.8 +51.0400 4.9 +51.0450 4.8 +51.0500 4.9 +51.0550 4.8 +51.0600 4.9 +51.0650 4.8 +51.0700 4.9 +51.0750 4.8 +51.0800 4.9 +51.0850 4.8 +51.0900 4.9 +51.0950 4.8 +51.1000 4.9 +51.1050 4.8 +51.1100 4.9 +51.1150 4.8 +51.1200 4.9 +51.1250 4.9 +51.1300 4.9 +51.1350 4.8 +51.1400 4.9 +51.1450 4.9 +51.1500 4.9 +51.1550 4.9 +51.1600 4.9 +51.1650 4.9 +51.1700 4.9 +51.1750 4.8 +51.1800 4.9 +51.1850 4.9 +51.1900 4.9 +51.1950 4.9 +51.2000 4.9 +51.2050 4.8 +51.2100 4.9 +51.2150 4.9 +51.2200 4.8 +51.2250 4.9 +51.2300 4.9 +51.2350 4.9 +51.2400 4.9 +51.2450 4.9 +51.2500 4.8 +51.2550 4.8 +51.2600 4.8 +51.2650 4.9 +51.2700 4.8 +51.2750 4.9 +51.2800 4.8 +51.2850 4.9 +51.2900 4.8 +51.2950 4.9 +51.3000 4.8 +51.3050 4.9 +51.3100 4.8 +51.3150 4.9 +51.3200 4.8 +51.3250 4.9 +51.3300 4.8 +51.3350 4.9 +51.3400 4.8 +51.3450 4.9 +51.3500 4.8 +51.3550 4.9 +51.3600 4.8 +51.3650 4.9 +51.3700 4.8 +51.3750 4.9 +51.3800 4.9 +51.3850 4.9 +51.3900 4.8 +51.3950 4.9 +51.4000 4.8 +51.4050 4.9 +51.4100 4.9 +51.4150 4.9 +51.4200 4.8 +51.4250 4.9 +51.4300 4.8 +51.4350 4.9 +51.4400 4.9 +51.4450 4.9 +51.4500 4.9 +51.4550 4.9 +51.4600 4.8 +51.4650 4.9 +51.4700 4.9 +51.4750 4.9 +51.4800 4.9 +51.4850 4.9 +51.4900 4.9 +51.4950 4.9 +51.5000 4.9 +51.5050 4.9 +51.5100 4.9 +51.5150 4.9 +51.5200 4.9 +51.5250 4.9 +51.5300 4.9 +51.5350 4.9 +51.5400 4.9 +51.5450 4.8 +51.5500 4.9 +51.5550 4.9 +51.5600 4.9 +51.5650 4.9 +51.5700 4.9 +51.5750 4.9 +51.5800 4.9 +51.5850 4.8 +51.5900 4.9 +51.5950 4.8 +51.6000 4.9 +51.6050 4.8 +51.6100 4.9 +51.6150 4.8 +51.6200 4.9 +51.6250 4.8 +51.6300 4.9 +51.6350 4.8 +51.6400 4.9 +51.6450 4.8 +51.6500 4.9 +51.6550 4.8 +51.6600 4.9 +51.6650 4.8 +51.6700 4.9 +51.6750 4.8 +51.6800 4.9 +51.6850 4.8 +51.6900 4.9 +51.6950 4.8 +51.7000 4.9 +51.7050 4.8 +51.7100 4.9 +51.7150 4.8 +51.7200 4.9 +51.7250 4.7 +51.7300 4.5 +51.7350 4.1 +51.7400 3.9 +51.7450 3.5 +51.7500 3.3 +51.7550 3.0 +51.7600 2.9 +51.7650 2.7 +51.7700 2.7 +51.7750 2.7 +51.7800 2.7 +51.7850 2.8 +51.7900 2.8 +51.7950 2.8 +51.8000 2.8 +51.8050 2.7 +51.8100 2.6 +51.8150 2.5 +51.8200 2.2 +51.8250 2.1 +51.8300 2.0 +51.8350 1.8 +51.8400 1.8 +51.8450 1.8 +51.8500 1.7 +51.8550 1.7 +51.8600 1.8 +51.8650 1.7 +51.8700 1.8 +51.8750 1.9 +51.8800 1.8 +51.8850 1.8 +51.8900 1.8 +51.8950 1.6 +51.9000 1.5 +51.9050 1.5 +51.9100 1.4 +51.9150 1.2 +51.9200 1.2 +51.9250 1.2 +51.9300 1.2 +51.9350 1.1 +51.9400 1.2 +51.9450 1.3 +51.9500 1.3 +51.9550 1.2 +51.9600 1.3 +51.9650 1.4 +51.9700 1.2 +51.9750 1.1 +51.9800 1.2 +51.9850 1.1 +51.9900 0.9 +51.9950 0.9 +52.0000 0.9 +52.0050 0.9 +52.0100 0.9 +52.0150 0.8 +52.0200 0.8 +52.0250 1.0 +52.0300 1.1 +52.0350 0.9 +52.0400 0.9 +52.0450 1.0 +52.0500 1.1 +52.0550 0.9 +52.0600 0.7 +52.0650 0.8 +52.0700 0.8 +52.0750 0.8 +52.0800 0.6 +52.0850 0.6 +52.0900 0.8 +52.0950 0.7 +52.1000 0.7 +52.1050 0.8 +52.1100 0.8 +52.1150 0.8 +52.1200 0.8 +52.1250 0.8 +52.1300 0.8 +52.1350 0.6 +52.1400 0.6 +52.1450 0.6 +52.1500 0.7 +52.1550 0.6 +52.1600 0.5 +52.1650 0.6 +52.1700 0.6 +52.1750 0.6 +52.1800 0.6 +52.1850 0.6 +52.1900 0.6 +52.1950 0.6 +52.2000 0.6 +52.2050 0.6 +52.2100 0.6 +52.2150 0.6 +52.2200 0.5 +52.2250 0.6 +52.2300 0.6 +52.2350 0.5 +52.2400 0.4 +52.2450 0.4 +52.2500 0.5 +52.2550 0.5 +52.2600 0.5 +52.2650 0.5 +52.2700 0.5 +52.2750 0.5 +52.2800 0.5 +52.2850 0.5 +52.2900 0.5 +52.2950 0.5 +52.3000 0.5 +52.3050 0.5 +52.3100 0.4 +52.3150 0.4 +52.3200 0.4 +52.3250 0.4 +52.3300 0.4 +52.3350 0.4 +52.3400 0.4 +52.3450 0.4 +52.3500 0.4 +52.3550 0.4 +52.3600 0.4 +52.3650 0.5 +52.3700 0.5 +52.3750 0.5 +52.3800 0.4 +52.3850 0.4 +52.3900 0.4 +52.3950 0.4 +52.4000 0.3 +52.4050 0.4 +52.4100 0.4 +52.4150 0.4 +52.4200 0.4 +52.4250 0.4 +52.4300 0.4 +52.4350 0.4 +52.4400 0.4 +52.4450 0.4 +52.4500 0.4 +52.4550 0.4 +52.4600 0.4 +52.4650 0.3 +52.4700 0.3 +52.4750 0.3 +52.4800 0.3 +52.4850 0.3 +52.4900 0.3 +52.4950 0.4 +52.5000 0.4 +52.5050 0.3 +52.5100 0.3 +52.5150 0.3 +52.5200 0.3 +52.5250 0.3 +52.5300 0.3 +52.5350 0.4 +52.5400 0.3 +52.5450 0.3 +52.5500 0.3 +52.5550 0.3 +52.5600 0.3 +52.5650 0.3 +52.5700 0.3 +52.5750 0.3 +52.5800 0.3 +52.5850 0.3 +52.5900 0.3 +52.5950 0.3 +52.6000 0.3 +52.6050 0.3 +52.6100 0.3 +52.6150 0.3 +52.6200 0.3 +52.6250 0.3 +52.6300 0.3 +52.6350 0.3 +52.6400 0.3 +52.6450 0.3 +52.6500 0.3 +52.6550 0.3 +52.6600 0.3 +52.6650 0.3 +52.6700 0.3 +52.6750 0.3 +52.6800 0.3 +52.6850 0.3 +52.6900 0.3 +52.6950 0.3 +52.7000 0.3 +52.7050 0.3 +52.7100 0.3 +52.7150 0.3 +52.7200 0.3 +52.7250 0.3 +52.7300 0.3 +52.7350 0.3 +52.7400 0.3 +52.7450 0.3 +52.7500 0.3 +52.7550 0.3 +52.7600 0.3 +52.7650 0.3 +52.7700 0.3 +52.7750 0.3 +52.7800 0.3 +52.7850 0.3 +52.7900 0.3 +52.7950 0.3 +52.8000 0.3 +52.8050 0.3 +52.8100 0.3 +52.8150 0.3 +52.8200 0.3 +52.8250 0.2 +52.8300 0.2 +52.8350 0.2 +52.8400 0.2 +52.8450 0.2 +52.8500 0.2 +52.8550 0.2 +52.8600 0.3 +52.8650 0.3 +52.8700 0.3 +52.8750 0.3 +52.8800 0.3 +52.8850 0.3 +52.8900 0.2 +52.8950 0.2 +52.9000 0.2 +52.9050 0.2 +52.9100 0.2 +52.9150 0.2 +52.9200 0.2 +52.9250 0.2 +52.9300 0.2 +52.9350 0.2 +52.9400 0.3 +52.9450 0.2 +52.9500 0.3 +52.9550 0.3 +52.9600 0.2 +52.9650 0.2 +52.9700 0.2 +52.9750 0.2 +52.9800 0.2 +52.9850 0.2 +52.9900 0.2 +52.9950 0.2 +53.0000 0.2 +53.0050 0.2 +53.0100 0.2 +53.0150 0.2 +53.0200 0.2 +53.0250 0.2 +53.0300 0.2 +53.0350 0.2 +53.0400 0.2 +53.0450 0.3 +53.0500 0.2 +53.0550 0.2 +53.0600 0.2 +53.0650 0.2 +53.0700 0.2 +53.0750 0.2 +53.0800 0.2 +53.0850 0.2 +53.0900 0.2 +53.0950 0.2 +53.1000 0.2 +53.1050 0.2 +53.1100 0.2 +53.1150 0.2 +53.1200 0.2 +53.1250 0.2 +53.1300 0.2 +53.1350 0.2 +53.1400 0.2 +53.1450 0.2 +53.1500 0.2 +53.1550 0.2 +53.1600 0.2 +53.1650 0.2 +53.1700 0.2 +53.1750 0.2 +53.1800 0.2 +53.1850 0.2 +53.1900 0.2 +53.1950 0.2 +53.2000 0.2 +53.2050 0.2 +53.2100 0.2 +53.2150 0.2 +53.2200 0.2 +53.2250 0.2 +53.2300 0.2 +53.2350 0.2 +53.2400 0.2 +53.2450 0.2 +53.2500 0.2 +53.2550 0.2 +53.2600 0.2 +53.2650 0.2 +53.2700 0.2 +53.2750 0.2 +53.2800 0.2 +53.2850 0.2 +53.2900 0.2 +53.2950 0.2 +53.3000 0.2 +53.3050 0.2 +53.3100 0.2 +53.3150 0.2 +53.3200 0.2 +53.3250 0.2 +53.3300 0.2 +53.3350 0.2 +53.3400 0.2 +53.3450 0.2 +53.3500 0.2 +53.3550 0.2 +53.3600 0.2 +53.3650 0.2 +53.3700 0.2 +53.3750 0.2 +53.3800 0.2 +53.3850 0.2 +53.3900 0.2 +53.3950 0.2 +53.4000 0.2 +53.4050 0.2 +53.4100 0.2 +53.4150 0.2 +53.4200 0.2 +53.4250 0.2 +53.4300 0.2 +53.4350 0.2 +53.4400 0.2 +53.4450 0.2 +53.4500 0.2 +53.4550 0.2 +53.4600 0.2 +53.4650 0.2 +53.4700 0.2 +53.4750 0.2 +53.4800 0.2 +53.4850 0.2 +53.4900 0.2 +53.4950 0.2 +53.5000 0.2 +53.5050 0.2 +53.5100 0.2 +53.5150 0.2 +53.5200 0.2 +53.5250 0.2 +53.5300 0.2 +53.5350 0.2 +53.5400 0.2 +53.5450 0.2 +53.5500 0.2 +53.5550 0.2 +53.5600 0.2 +53.5650 0.2 +53.5700 0.2 +53.5750 0.2 +53.5800 0.2 +53.5850 0.2 +53.5900 0.2 +53.5950 0.2 +53.6000 0.2 +53.6050 0.2 +53.6100 0.2 +53.6150 0.2 +53.6200 0.2 +53.6250 0.2 +53.6300 0.2 +53.6350 0.2 +53.6400 0.2 +53.6450 0.2 +53.6500 0.2 +53.6550 0.2 +53.6600 0.2 +53.6650 0.2 +53.6700 0.2 +53.6750 0.2 +53.6800 0.2 +53.6850 0.2 +53.6900 0.2 +53.6950 0.2 +53.7000 0.2 +53.7050 0.2 +53.7100 0.2 +53.7150 0.2 +53.7200 0.2 +53.7250 0.2 +53.7300 0.2 +53.7350 0.2 +53.7400 0.2 +53.7450 0.2 +53.7500 0.2 +53.7550 0.2 +53.7600 0.2 +53.7650 0.2 +53.7700 0.2 +53.7750 0.2 +53.7800 0.2 +53.7850 0.2 +53.7900 0.2 +53.7950 0.2 +53.8000 0.2 +53.8050 0.2 +53.8100 0.2 +53.8150 0.2 +53.8200 0.2 +53.8250 0.2 +53.8300 0.2 +53.8350 0.2 +53.8400 0.2 +53.8450 0.2 +53.8500 0.2 +53.8550 0.2 +53.8600 0.2 +53.8650 0.2 +53.8700 0.2 +53.8750 0.2 +53.8800 0.2 +53.8850 0.2 +53.8900 0.2 +53.8950 0.2 +53.9000 0.2 +53.9050 0.2 +53.9100 0.2 +53.9150 0.2 +53.9200 0.2 +53.9250 0.2 +53.9300 0.2 +53.9350 0.2 +53.9400 0.2 +53.9450 0.2 +53.9500 0.2 +53.9550 0.2 +53.9600 0.2 +53.9650 0.2 +53.9700 0.2 +53.9750 0.2 +53.9800 0.2 +53.9850 0.2 +53.9900 0.2 +53.9950 0.2 +54.0000 0.2 +54.0050 0.2 +54.0100 0.2 +54.0150 0.2 +54.0200 0.2 +54.0250 0.2 +54.0300 0.2 +54.0350 0.2 +54.0400 0.2 +54.0450 0.2 +54.0500 0.2 +54.0550 0.2 +54.0600 0.2 +54.0650 0.2 +54.0700 0.2 +54.0750 0.2 +54.0800 0.2 +54.0850 0.2 +54.0900 0.2 +54.0950 0.2 +54.1000 0.2 +54.1050 0.2 +54.1100 0.2 +54.1150 0.2 +54.1200 0.2 +54.1250 0.2 +54.1300 0.2 +54.1350 0.2 +54.1400 0.2 +54.1450 0.2 +54.1500 0.2 +54.1550 0.2 +54.1600 0.2 +54.1650 0.2 +54.1700 0.2 +54.1750 0.2 +54.1800 0.2 +54.1850 0.2 +54.1900 0.2 +54.1950 0.2 +54.2000 0.2 +54.2050 0.2 +54.2100 0.2 +54.2150 0.2 +54.2200 0.2 +54.2250 0.2 +54.2300 0.2 +54.2350 0.2 +54.2400 0.2 +54.2450 0.2 +54.2500 0.2 +54.2550 0.2 +54.2600 0.2 +54.2650 0.2 +54.2700 0.2 +54.2750 0.2 +54.2800 0.2 +54.2850 0.2 +54.2900 0.2 +54.2950 0.2 +54.3000 0.2 +54.3050 0.2 +54.3100 0.2 +54.3150 0.2 +54.3200 0.2 +54.3250 0.2 +54.3300 0.2 +54.3350 0.2 +54.3400 0.2 +54.3450 0.2 +54.3500 0.2 +54.3550 0.2 +54.3600 0.2 +54.3650 0.2 +54.3700 0.2 +54.3750 0.2 +54.3800 0.2 +54.3850 0.2 +54.3900 0.2 +54.3950 0.2 +54.4000 0.2 +54.4050 0.2 +54.4100 0.2 +54.4150 0.2 +54.4200 0.2 +54.4250 0.2 +54.4300 0.2 +54.4350 0.2 +54.4400 0.2 +54.4450 0.2 +54.4500 0.2 +54.4550 0.2 +54.4600 0.2 +54.4650 0.2 +54.4700 0.2 +54.4750 0.2 +54.4800 0.2 +54.4850 0.2 +54.4900 0.2 +54.4950 0.2 +54.5000 0.2 +54.5050 0.2 +54.5100 0.2 +54.5150 0.2 +54.5200 0.2 +54.5250 0.2 +54.5300 0.2 +54.5350 0.2 +54.5400 0.2 +54.5450 0.2 +54.5500 0.2 +54.5550 0.2 +54.5600 0.2 +54.5650 0.2 +54.5700 0.2 +54.5750 0.2 +54.5800 0.2 +54.5850 0.2 +54.5900 0.2 +54.5950 0.2 +54.6000 0.2 +54.6050 0.2 +54.6100 0.2 +54.6150 0.2 +54.6200 0.2 +54.6250 0.2 +54.6300 0.2 +54.6350 0.2 +54.6400 0.2 +54.6450 0.2 +54.6500 0.2 +54.6550 0.2 +54.6600 0.2 +54.6650 0.2 +54.6700 0.2 +54.6750 0.2 +54.6800 0.2 +54.6850 0.2 +54.6900 0.2 +54.6950 0.2 +54.7000 0.2 +54.7050 0.2 +54.7100 0.2 +54.7150 0.2 +54.7200 0.2 +54.7250 0.2 +54.7300 0.2 +54.7350 0.2 +54.7400 0.2 +54.7450 0.2 +54.7500 0.2 +54.7550 0.2 +54.7600 0.2 +54.7650 0.2 +54.7700 0.2 +54.7750 0.2 +54.7800 0.2 +54.7850 0.2 +54.7900 0.2 +54.7950 0.2 +54.8000 0.2 +54.8050 0.2 +54.8100 0.2 +54.8150 0.2 +54.8200 0.2 +54.8250 0.2 +54.8300 0.2 +54.8350 0.2 +54.8400 0.2 +54.8450 0.2 +54.8500 0.2 +54.8550 0.2 +54.8600 0.2 +54.8650 0.2 +54.8700 0.2 +54.8750 0.2 +54.8800 0.2 +54.8850 0.2 +54.8900 0.2 +54.8950 0.2 +54.9000 0.2 +54.9050 0.2 +54.9100 0.2 +54.9150 0.2 +54.9200 0.2 +54.9250 0.2 +54.9300 0.2 +54.9350 0.2 +54.9400 0.2 +54.9450 0.2 +54.9500 0.2 +54.9550 0.2 +54.9600 0.2 +54.9650 0.2 +54.9700 0.2 +54.9750 0.2 +54.9800 0.2 +54.9850 0.2 +54.9900 0.2 +54.9950 0.2 +55.0000 0.2 +55.0050 0.2 +55.0100 0.2 +55.0150 0.2 +55.0200 0.2 +55.0250 0.2 +55.0300 0.2 +55.0350 0.2 +55.0400 0.2 +55.0450 0.2 +55.0500 0.2 +55.0550 0.2 +55.0600 0.2 +55.0650 0.2 +55.0700 0.2 +55.0750 0.2 +55.0800 0.2 +55.0850 0.2 +55.0900 0.2 +55.0950 0.2 +55.1000 0.2 +55.1050 0.2 +55.1100 0.2 +55.1150 0.2 +55.1200 0.2 +55.1250 0.2 +55.1300 0.2 +55.1350 0.2 +55.1400 0.2 +55.1450 0.2 +55.1500 0.2 +55.1550 0.2 +55.1600 0.2 +55.1650 0.2 +55.1700 0.2 +55.1750 0.2 +55.1800 0.2 +55.1850 0.2 +55.1900 0.2 +55.1950 0.2 +55.2000 0.2 +55.2050 0.2 +55.2100 0.2 +55.2150 0.2 +55.2200 0.2 +55.2250 0.2 +55.2300 0.2 +55.2350 0.2 +55.2400 0.2 +55.2450 0.2 +55.2500 0.2 +55.2550 0.2 +55.2600 0.2 +55.2650 0.2 +55.2700 0.2 +55.2750 0.2 +55.2800 0.2 +55.2850 0.2 +55.2900 0.2 +55.2950 0.2 +55.3000 0.2 +55.3050 0.2 +55.3100 0.2 +55.3150 0.2 +55.3200 0.2 +55.3250 0.2 +55.3300 0.2 +55.3350 0.2 +55.3400 0.2 +55.3450 0.2 +55.3500 0.2 +55.3550 0.2 +55.3600 0.2 +55.3650 0.2 +55.3700 0.2 +55.3750 0.2 +55.3800 0.2 +55.3850 0.2 +55.3900 0.2 +55.3950 0.2 +55.4000 0.2 +55.4050 0.2 +55.4100 0.2 +55.4150 0.2 +55.4200 0.2 +55.4250 0.2 +55.4300 0.2 +55.4350 0.2 +55.4400 0.2 +55.4450 0.2 +55.4500 0.2 +55.4550 0.2 +55.4600 0.2 +55.4650 0.2 +55.4700 0.2 +55.4750 0.2 +55.4800 0.2 +55.4850 0.2 +55.4900 0.2 +55.4950 0.2 +55.5000 0.2 +55.5050 0.2 +55.5100 0.2 +55.5150 0.2 +55.5200 0.2 +55.5250 0.2 +55.5300 0.2 +55.5350 0.2 +55.5400 0.2 +55.5450 0.2 +55.5500 0.2 +55.5550 0.2 +55.5600 0.2 +55.5650 0.2 +55.5700 0.2 +55.5750 0.2 +55.5800 0.2 +55.5850 0.2 +55.5900 0.2 +55.5950 0.2 +55.6000 0.2 +55.6050 0.2 +55.6100 0.2 +55.6150 0.2 +55.6200 0.2 +55.6250 0.2 +55.6300 0.2 +55.6350 0.2 +55.6400 0.2 +55.6450 0.2 +55.6500 0.2 +55.6550 0.2 +55.6600 0.2 +55.6650 0.2 +55.6700 0.2 +55.6750 0.2 +55.6800 0.2 +55.6850 0.2 +55.6900 0.2 +55.6950 0.2 +55.7000 0.2 +55.7050 0.2 +55.7100 0.2 +55.7150 0.2 +55.7200 0.2 +55.7250 0.2 +55.7300 0.2 +55.7350 0.2 +55.7400 0.2 +55.7450 0.2 +55.7500 0.2 +55.7550 0.2 +55.7600 0.2 +55.7650 0.2 +55.7700 0.2 +55.7750 0.2 +55.7800 0.2 +55.7850 0.2 +55.7900 0.2 +55.7950 0.2 +55.8000 0.2 +55.8050 0.2 +55.8100 0.2 +55.8150 0.2 +55.8200 0.2 +55.8250 0.2 +55.8300 0.2 +55.8350 0.2 +55.8400 0.2 +55.8450 0.2 +55.8500 0.2 +55.8550 0.2 +55.8600 0.2 +55.8650 0.2 +55.8700 0.2 +55.8750 0.2 +55.8800 0.2 +55.8850 0.2 +55.8900 0.2 +55.8950 0.2 +55.9000 0.2 +55.9050 0.2 +55.9100 0.2 +55.9150 0.2 +55.9200 0.2 +55.9250 0.2 +55.9300 0.2 +55.9350 0.2 +55.9400 0.2 +55.9450 0.2 +55.9500 0.2 +55.9550 0.2 +55.9600 0.2 +55.9650 0.2 +55.9700 0.2 +55.9750 0.2 +55.9800 0.2 +55.9850 0.2 +55.9900 0.2 +55.9950 0.2 +56.0000 0.2 +56.0050 0.2 +56.0100 0.2 +56.0150 0.2 +56.0200 0.2 +56.0250 0.2 +56.0300 0.2 +56.0350 0.2 +56.0400 0.2 +56.0450 0.2 +56.0500 0.2 +56.0550 0.2 +56.0600 0.2 +56.0650 0.2 +56.0700 0.2 +56.0750 0.2 +56.0800 0.2 +56.0850 0.2 +56.0900 0.2 +56.0950 0.2 +56.1000 0.2 +56.1050 0.2 +56.1100 0.2 +56.1150 0.2 +56.1200 0.2 +56.1250 0.2 +56.1300 0.2 +56.1350 0.2 +56.1400 0.2 +56.1450 0.2 +56.1500 0.2 +56.1550 0.2 +56.1600 0.2 +56.1650 0.2 +56.1700 0.2 +56.1750 0.2 +56.1800 0.2 +56.1850 0.2 +56.1900 0.2 +56.1950 0.2 +56.2000 0.2 +56.2050 0.2 +56.2100 0.2 +56.2150 0.2 +56.2200 0.2 +56.2250 0.2 +56.2300 0.2 +56.2350 0.2 +56.2400 0.2 +56.2450 0.2 +56.2500 0.2 +56.2550 0.2 +56.2600 0.2 +56.2650 0.2 +56.2700 0.2 +56.2750 0.2 +56.2800 0.2 +56.2850 0.2 +56.2900 0.2 +56.2950 0.2 +56.3000 0.2 +56.3050 0.2 +56.3100 0.2 +56.3150 0.2 +56.3200 0.2 +56.3250 0.2 +56.3300 0.2 +56.3350 0.2 +56.3400 0.2 +56.3450 0.2 +56.3500 0.2 +56.3550 0.2 +56.3600 0.2 +56.3650 0.2 +56.3700 0.2 +56.3750 0.2 +56.3800 0.2 +56.3850 0.2 +56.3900 0.2 +56.3950 0.2 +56.4000 0.2 +56.4050 0.2 +56.4100 0.2 +56.4150 0.2 +56.4200 0.2 +56.4250 0.2 +56.4300 0.2 +56.4350 0.2 +56.4400 0.2 +56.4450 0.2 +56.4500 0.2 +56.4550 0.2 +56.4600 0.2 +56.4650 0.2 +56.4700 0.2 +56.4750 0.2 +56.4800 0.2 +56.4850 0.2 +56.4900 0.2 +56.4950 0.2 +56.5000 0.2 +56.5050 0.2 +56.5100 0.2 +56.5150 0.2 +56.5200 0.2 +56.5250 0.2 +56.5300 0.2 +56.5350 0.2 +56.5400 0.2 +56.5450 0.2 +56.5500 0.2 +56.5550 0.2 +56.5600 0.2 +56.5650 0.2 +56.5700 0.2 +56.5750 0.2 +56.5800 0.2 +56.5850 0.2 +56.5900 0.2 +56.5950 0.2 +56.6000 0.2 +56.6050 0.2 +56.6100 0.2 +56.6150 0.2 +56.6200 0.2 +56.6250 0.2 +56.6300 0.2 +56.6350 0.2 +56.6400 0.2 +56.6450 0.2 +56.6500 0.2 +56.6550 0.2 +56.6600 0.2 +56.6650 0.2 +56.6700 0.2 +56.6750 0.2 +56.6800 0.2 +56.6850 0.2 +56.6900 0.2 +56.6950 0.2 +56.7000 0.2 +56.7050 0.2 +56.7100 0.2 +56.7150 0.2 +56.7200 0.2 +56.7250 0.2 +56.7300 0.2 +56.7350 0.2 +56.7400 0.2 +56.7450 0.2 +56.7500 0.2 +56.7550 0.2 +56.7600 0.2 +56.7650 0.2 +56.7700 0.2 +56.7750 0.2 +56.7800 0.2 +56.7850 0.2 +56.7900 0.2 +56.7950 0.2 +56.8000 0.2 +56.8050 0.2 +56.8100 0.2 +56.8150 0.2 +56.8200 0.2 +56.8250 0.2 +56.8300 0.2 +56.8350 0.2 +56.8400 0.2 +56.8450 0.2 +56.8500 0.2 +56.8550 0.2 +56.8600 0.2 +56.8650 0.2 +56.8700 0.2 +56.8750 0.2 +56.8800 0.2 +56.8850 0.2 +56.8900 0.2 +56.8950 0.2 +56.9000 0.2 +56.9050 0.2 +56.9100 0.2 +56.9150 0.2 +56.9200 0.2 +56.9250 0.2 +56.9300 0.2 +56.9350 0.2 +56.9400 0.2 +56.9450 0.2 +56.9500 0.2 +56.9550 0.2 +56.9600 0.2 +56.9650 0.2 +56.9700 0.2 +56.9750 0.2 +56.9800 0.2 +56.9850 0.2 +56.9900 0.2 +56.9950 0.2 +57.0000 0.2 +57.0050 0.2 +57.0100 0.2 +57.0150 0.2 +57.0200 0.2 +57.0250 0.2 +57.0300 0.2 +57.0350 0.2 +57.0400 0.2 +57.0450 0.2 +57.0500 0.2 +57.0550 0.2 +57.0600 0.2 +57.0650 0.2 +57.0700 0.2 +57.0750 0.2 +57.0800 0.2 +57.0850 0.2 +57.0900 0.2 +57.0950 0.2 +57.1000 0.2 +57.1050 0.2 +57.1100 0.2 +57.1150 0.2 +57.1200 0.2 +57.1250 0.2 +57.1300 0.2 +57.1350 0.2 +57.1400 0.2 +57.1450 0.2 +57.1500 0.2 +57.1550 0.2 +57.1600 0.2 +57.1650 0.2 +57.1700 0.2 +57.1750 0.2 +57.1800 0.2 +57.1850 0.2 +57.1900 0.2 +57.1950 0.2 +57.2000 0.2 +57.2050 0.2 +57.2100 0.2 +57.2150 0.2 +57.2200 0.2 +57.2250 0.2 +57.2300 0.2 +57.2350 0.2 +57.2400 0.2 +57.2450 0.2 +57.2500 0.2 +57.2550 0.2 +57.2600 0.2 +57.2650 0.2 +57.2700 0.2 +57.2750 0.2 +57.2800 0.2 +57.2850 0.2 +57.2900 0.2 +57.2950 0.2 +57.3000 0.2 +57.3050 0.2 +57.3100 0.2 +57.3150 0.2 +57.3200 0.2 +57.3250 0.2 +57.3300 0.2 +57.3350 0.2 +57.3400 0.2 +57.3450 0.2 +57.3500 0.2 +57.3550 0.2 +57.3600 0.2 +57.3650 0.2 +57.3700 0.2 +57.3750 0.2 +57.3800 0.2 +57.3850 0.2 +57.3900 0.2 +57.3950 0.2 +57.4000 0.2 +57.4050 0.2 +57.4100 0.2 +57.4150 0.2 +57.4200 0.2 +57.4250 0.2 +57.4300 0.2 +57.4350 0.2 +57.4400 0.2 +57.4450 0.2 +57.4500 0.2 +57.4550 0.2 +57.4600 0.2 +57.4650 0.2 +57.4700 0.2 +57.4750 0.2 +57.4800 0.2 +57.4850 0.2 +57.4900 0.2 +57.4950 0.2 +57.5000 0.2 +57.5050 0.2 +57.5100 0.2 +57.5150 0.2 +57.5200 0.2 +57.5250 0.2 +57.5300 0.2 +57.5350 0.2 +57.5400 0.2 +57.5450 0.2 +57.5500 0.2 +57.5550 0.2 +57.5600 0.2 +57.5650 0.2 +57.5700 0.2 +57.5750 0.2 +57.5800 0.2 +57.5850 0.2 +57.5900 0.2 +57.5950 0.2 +57.6000 0.2 +57.6050 0.2 +57.6100 0.2 +57.6150 0.2 +57.6200 0.2 +57.6250 0.2 +57.6300 0.2 +57.6350 0.2 +57.6400 0.2 +57.6450 0.2 +57.6500 0.2 +57.6550 0.2 +57.6600 0.2 +57.6650 0.2 +57.6700 0.2 +57.6750 0.2 +57.6800 0.2 +57.6850 0.2 +57.6900 0.2 +57.6950 0.2 +57.7000 0.2 +57.7050 0.2 +57.7100 0.2 +57.7150 0.2 +57.7200 0.2 +57.7250 0.2 +57.7300 0.2 +57.7350 0.2 +57.7400 0.2 +57.7450 0.2 +57.7500 0.2 +57.7550 0.2 +57.7600 0.2 +57.7650 0.2 +57.7700 0.2 +57.7750 0.2 +57.7800 0.2 +57.7850 0.2 +57.7900 0.2 +57.7950 0.2 +57.8000 0.2 +57.8050 0.2 +57.8100 0.2 +57.8150 0.2 +57.8200 0.2 +57.8250 0.2 +57.8300 0.2 +57.8350 0.2 +57.8400 0.2 +57.8450 0.2 +57.8500 0.2 +57.8550 0.2 +57.8600 0.2 +57.8650 0.2 +57.8700 0.2 +57.8750 0.2 +57.8800 0.2 +57.8850 0.2 +57.8900 0.2 +57.8950 0.2 +57.9000 0.2 +57.9050 0.2 +57.9100 0.2 +57.9150 0.2 +57.9200 0.2 +57.9250 0.2 +57.9300 0.2 +57.9350 0.2 +57.9400 0.2 +57.9450 0.2 +57.9500 0.2 +57.9550 0.2 +57.9600 0.2 +57.9650 0.2 +57.9700 0.2 +57.9750 0.2 +57.9800 0.2 +57.9850 0.2 +57.9900 0.2 +57.9950 0.2 +58.0000 0.2 +58.0050 0.2 +58.0100 0.2 +58.0150 0.2 +58.0200 0.2 +58.0250 0.2 +58.0300 0.2 +58.0350 0.2 +58.0400 0.2 +58.0450 0.2 +58.0500 0.2 +58.0550 0.2 +58.0600 0.2 +58.0650 0.2 +58.0700 0.2 +58.0750 0.2 +58.0800 0.2 +58.0850 0.2 +58.0900 0.2 +58.0950 0.2 +58.1000 0.2 +58.1050 0.2 +58.1100 0.2 +58.1150 0.2 +58.1200 0.2 +58.1250 0.2 +58.1300 0.2 +58.1350 0.2 +58.1400 0.2 +58.1450 0.2 +58.1500 0.2 +58.1550 0.2 +58.1600 0.2 +58.1650 0.2 +58.1700 0.2 +58.1750 0.2 +58.1800 0.2 +58.1850 0.2 +58.1900 0.2 +58.1950 0.2 +58.2000 0.2 +58.2050 0.2 +58.2100 0.2 +58.2150 0.2 +58.2200 0.2 +58.2250 0.2 +58.2300 0.2 +58.2350 0.2 +58.2400 0.2 +58.2450 0.2 +58.2500 0.2 +58.2550 0.2 +58.2600 0.2 +58.2650 0.2 +58.2700 0.2 +58.2750 0.2 +58.2800 0.2 +58.2850 0.2 +58.2900 0.2 +58.2950 0.2 +58.3000 0.2 +58.3050 0.2 +58.3100 0.2 +58.3150 0.2 +58.3200 0.2 +58.3250 0.2 +58.3300 0.2 +58.3350 0.2 +58.3400 0.2 +58.3450 0.2 +58.3500 0.2 +58.3550 0.2 +58.3600 0.2 +58.3650 0.2 +58.3700 0.2 +58.3750 0.2 +58.3800 0.2 +58.3850 0.2 +58.3900 0.2 +58.3950 0.2 +58.4000 0.2 +58.4050 0.2 +58.4100 0.2 +58.4150 0.2 +58.4200 0.2 +58.4250 0.2 +58.4300 0.2 +58.4350 0.2 +58.4400 0.2 +58.4450 0.2 +58.4500 0.2 +58.4550 0.2 +58.4600 0.2 +58.4650 0.2 +58.4700 0.2 +58.4750 0.2 +58.4800 0.2 +58.4850 0.2 +58.4900 0.2 +58.4950 0.2 +58.5000 0.2 +58.5050 0.2 +58.5100 0.2 +58.5150 0.2 +58.5200 0.2 +58.5250 0.2 +58.5300 0.2 +58.5350 0.2 +58.5400 0.2 +58.5450 0.2 +58.5500 0.2 +58.5550 0.2 +58.5600 0.2 +58.5650 0.2 +58.5700 0.2 +58.5750 0.2 +58.5800 0.2 +58.5850 0.2 +58.5900 0.2 +58.5950 0.2 +58.6000 0.2 +58.6050 0.2 +58.6100 0.2 +58.6150 0.2 +58.6200 0.2 +58.6250 0.2 +58.6300 0.2 +58.6350 0.2 +58.6400 0.2 +58.6450 0.2 +58.6500 0.2 +58.6550 0.2 +58.6600 0.2 +58.6650 0.2 +58.6700 0.2 +58.6750 0.2 +58.6800 0.2 +58.6850 0.2 +58.6900 0.2 +58.6950 0.2 +58.7000 0.2 +58.7050 0.2 +58.7100 0.2 +58.7150 0.2 +58.7200 0.2 +58.7250 0.2 +58.7300 0.2 +58.7350 0.2 +58.7400 0.2 +58.7450 0.2 +58.7500 0.2 +58.7550 0.2 +58.7600 0.2 +58.7650 0.2 +58.7700 0.2 +58.7750 0.2 +58.7800 0.2 +58.7850 0.2 +58.7900 0.2 +58.7950 0.2 +58.8000 0.2 +58.8050 0.2 +58.8100 0.2 +58.8150 0.2 +58.8200 0.2 +58.8250 0.2 +58.8300 0.2 +58.8350 0.2 +58.8400 0.2 +58.8450 0.2 +58.8500 0.2 +58.8550 0.2 +58.8600 0.2 +58.8650 0.2 +58.8700 0.2 +58.8750 0.2 +58.8800 0.2 +58.8850 0.2 +58.8900 0.2 +58.8950 0.2 +58.9000 0.2 +58.9050 0.2 +58.9100 0.2 +58.9150 0.2 +58.9200 0.2 +58.9250 0.2 +58.9300 0.2 +58.9350 0.2 +58.9400 0.2 +58.9450 0.2 +58.9500 0.2 +58.9550 0.2 +58.9600 0.2 +58.9650 0.2 +58.9700 0.2 +58.9750 0.2 +58.9800 0.2 +58.9850 0.2 +58.9900 0.2 +58.9950 0.2 +59.0000 0.2 +59.0050 0.2 +59.0100 0.2 +59.0150 0.2 +59.0200 0.2 +59.0250 0.2 +59.0300 0.2 +59.0350 0.2 +59.0400 0.2 +59.0450 0.2 +59.0500 0.2 +59.0550 0.2 +59.0600 0.2 diff --git a/resources/flightgear/Aircraft/arducopter/formatXml.sh b/resources/flightgear/Aircraft/arducopter/formatXml.sh new file mode 100755 index 0000000000000000000000000000000000000000..b803f4b7b1418bf2a54eabd3719615da7be25169 --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/formatXml.sh @@ -0,0 +1,2 @@ +#!/bin/bash +find . -name "*.xml" -exec xmllint -format {} -o {} \; diff --git a/resources/flightgear/Aircraft/arducopter/initfile.xml b/resources/flightgear/Aircraft/arducopter/initfile.xml new file mode 100755 index 0000000000000000000000000000000000000000..363cee94f786a5b79a1c7e36abbb6d9c2af0e0cb --- /dev/null +++ b/resources/flightgear/Aircraft/arducopter/initfile.xml @@ -0,0 +1,12 @@ + + + nan + nan + nan + nan + -nan + nan + nan + nan + nan + diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml new file mode 100755 index 0000000000000000000000000000000000000000..61940e773fb671ff2f72dde38e5ae967039ed2cc --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/airborn.xml @@ -0,0 +1,14 @@ + + + + + + + Brit. Airborn Jeep + + AI-Liveries/jeep-1d.png + AI-Liveries/softroof-a.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml new file mode 100755 index 0000000000000000000000000000000000000000..5ad0a0e91539b8e8c78d5e065eb2e465a8ba162d --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/army-g.xml @@ -0,0 +1,14 @@ + + + + + + + US Army green + + AI-Liveries/jeep-1.png + AI-Liveries/softroof.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml new file mode 100755 index 0000000000000000000000000000000000000000..b6b3ebe0393d454d7d0cce7f1b5020af922cf472 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/hippie.xml @@ -0,0 +1,14 @@ + + + + + + + Hippie pink + + AI-Liveries/jeep-1c.png + AI-Liveries/softroof.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png new file mode 100755 index 0000000000000000000000000000000000000000..cae0cb42bcd51a0c0db8df4124c71510d1a46b69 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png new file mode 100755 index 0000000000000000000000000000000000000000..de16e087ed5d2c9050ee93a62f1a45ca1f9d233c Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1a.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png new file mode 100755 index 0000000000000000000000000000000000000000..e2d78d6deedb923bb477464a7fd1f72231c5cd7d Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1b.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png new file mode 100755 index 0000000000000000000000000000000000000000..434e493de18f18bcfd4f9d00ecb9dc6d3d00fdc1 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1c.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png new file mode 100755 index 0000000000000000000000000000000000000000..6440c1b02bf86b2f3f38a6cdff5fed6af99cdbce Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/jeep-1d.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml new file mode 100755 index 0000000000000000000000000000000000000000..7fc8f6890191afdfc2cb75bbf4fb9a21d0bb4b0b --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/navy.xml @@ -0,0 +1,14 @@ + + + + + + + US Navy blue + + Liveries/jeep-1a.png + Liveries/softroof-a.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml new file mode 100755 index 0000000000000000000000000000000000000000..023d37559f45a7a7022b7dd882e8585cbf5648e0 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/raf.xml @@ -0,0 +1,14 @@ + + + + + + + RAF + + Liveries/jeep-1b.png + Liveries/softroof-a.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png new file mode 100755 index 0000000000000000000000000000000000000000..e17e0f7869b93f67375554e85cb0b9fa013e34ac Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof-a.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png new file mode 100755 index 0000000000000000000000000000000000000000..f860522898ec3973aa5df8e891b7ba8baae618b8 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/AI-Liveries/softroof.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/GPA.xml b/resources/flightgear/Aircraft/jeep/Models/GPA.xml new file mode 100644 index 0000000000000000000000000000000000000000..120af376109371f8b18fb3020142b230b15f1637 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/GPA.xml @@ -0,0 +1,320 @@ + + gpa.ac + + -0.15 + + + + Aircraft/jeep/Models/fuelgauge.xml + + 1.3 + 0.01 + 1.18 + -22 + + + + Aircraft/jeep/Models/speedometer.xml + + 1.33 + 0.1 + 1.123 + -22 + + + + Aircraft/jeep/Models/current.xml + + 1.3 + 0.19 + 1.18 + -22 + + + + + + translate + fwheel.L + fwheel2.L + fscrews.L + gear/gear[0]/compression-norm + + + 0.0 + 0 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + translate + fwheel.R + fwheel2.R + fscrews.R + gear/gear[1]/compression-norm + + + 0.0 + 0 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + translate + rwheel.L + rwheel2.L + rscrews.L + gear/gear[2]/compression-norm + + + 0.0 + 0 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + translate + rwheel.R + rwheel2.R + rscrews.R + gear/gear[3]/compression-norm + + + 0.0 + 0 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + rotate + fwheel.L + fwheel2.L + fscrews.L + controls/flight/aileron + -25 +
+ 0.554 + -0.439 + 0.408 +
+ + 0.0 + 0.0 + 1.0 + +
+ + rotate + fwheel.R + fwheel2.R + fscrews.R + controls/flight/aileron + -25 +
+ 0.554 + 0.439 + 0.408 +
+ + 0.0 + 0.0 + 1.0 + +
+ + + spin + fwheel.L + fwheel2.L + fscrews.L + gear/gear[1]/rollspeed-ms + -15 +
+ 0.554 + -0.439 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + spin + fwheel.R + fwheel2.R + fscrews.R + gear/gear[1]/rollspeed-ms + -15 +
+ 0.554 + 0.439 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + spin + rwheel.L + rwheel2.L + rscrews.L + gear/gear[2]/rollspeed-ms + -15 +
+ 2.696 + -0.746 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + spin + rwheel.R + rwheel2.R + rscrews.R + gear/gear[3]/rollspeed-ms + -15 +
+ 2.696 + -0.746 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + rotate + steerwheel + controls/flight/aileron + -100 +
+ 1.467 + -0.331 + 1.008 +
+ + 1.185 + -0.331 + 0.713 + 1.750 + -0.331 + 1.303 + +
+ + + rotate + screen + wiper.L + wiper.R + controls/gear/screen + -100 +
+ 1.014 + 0.0 + 1.175 +
+ + 0.0 + 1.0 + 0.0 + +
+ + rotate + + shield + controls/gear/shield + -165^ +
+ -0.169 + 0.0 + 1.187 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + Aircraft/jeep/Models/pilot.xml + pilot + + + 2.1 + -0.32 + 0.9 + 14 + + + + select + pilot + + + sim/current-view/view-number + 0.0 + + + + + + Aircraft/jeep/Models/gpatrans.xml + + 0.0 + 0.0 + 0.0 + + +
+ diff --git a/resources/flightgear/Aircraft/jeep/Models/Jeep.xml b/resources/flightgear/Aircraft/jeep/Models/Jeep.xml new file mode 100755 index 0000000000000000000000000000000000000000..836b9d0e61bd5ceba024d4cee66d31f0719f6caa --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/Jeep.xml @@ -0,0 +1,540 @@ + + jeep.ac + + + -0.03 + + + + + var update = aircraft.overlay_update.new(); + update.add("Aircraft/jeep/Models/AI-Liveries", "sim/model/livery/file"); + + + + print ("bye"); + loopid += 1; + + + + + + + Aircraft/jeep/Models/fuelgauge.xml + + 1.442 + 0.01 + 1.08 + + + + Aircraft/jeep/Models/speedometer.xml + + 1.442 + 0.1 + 1.023 + + + + Aircraft/jeep/Models/current.xml + + 1.442 + 0.19 + 1.08 + + + + + + translate + fwheel.L + fwheel2.L + fscrews.L + fwheel.R + fwheel2.R + fscrews.R + frontaxle + gear/gear[0]/compression-norm + + + gear/gear[1]/compression-norm + gear/gear[0]/compression-norm + + + + + 0.0 + -0.05 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + translate + fwheel.L + fwheel2.L + fscrews.L + fwheel.R + fwheel2.R + fscrews.R + frontaxle + gear/gear[1]/compression-norm + + + gear/gear[0]/compression-norm + gear/gear[1]/compression-norm + + + + + 0.0 + -0.05 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + + rotate + fwheel.L + fwheel2.L + fscrews.L + fwheel.R + fwheel2.R + fscrews.R + frontaxle + gear/gear[0]/compression-norm + 11.5 +
+ 0.554 + 0.0 + 0.408 +
+ + -1.0 + 0.0 + 0.0 + +
+ + + rotate + fwheel.L + fwheel2.L + fscrews.L + fwheel.R + fwheel2.R + fscrews.R + frontaxle + gear/gear[1]/compression-norm + 11.5 +
+ 0.554 + 0.0 + 0.408 +
+ + 1.0 + 0.0 + 0.0 + +
+ + rotate + fwheel.L + fwheel2.L + fscrews.L + controls/flight/aileron + -25 +
+ 0.554 + -0.439 + 0.408 +
+ + 0.0 + 0.0 + 1.0 + +
+ + rotate + fwheel.R + fwheel2.R + fscrews.R + controls/flight/aileron + -25 +
+ 0.554 + 0.439 + 0.408 +
+ + 0.0 + 0.0 + 1.0 + +
+ + spin + fwheel.L + fwheel2.L + fscrews.L + gear/gear[1]/rollspeed-ms + -15 +
+ 0.554 + -0.439 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + spin + fwheel.R + fwheel2.R + fscrews.R + gear/gear[1]/rollspeed-ms + -15 +
+ 0.554 + 0.439 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + + translate + rwheel.L + rwheel2.L + rscrews.L + rwheel.R + rwheel2.R + rscrews.R + rearaxle + gear/gear[2]/compression-norm + + + gear/gear[3]/compression-norm + gear/gear[2]/compression-norm + + + + + 0.0 + -0.05 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + translate + rwheel.L + rwheel2.L + rscrews.L + rwheel.R + rwheel2.R + rscrews.R + rearaxle + gear/gear[3]/compression-norm + + + gear/gear[2]/compression-norm + gear/gear[3]/compression-norm + + + + + 0.0 + -0.05 + + + 1.00 + 0.2 + + + + 0 + 0 + 1 + + + + + rotate + rwheel.L + rwheel2.L + rscrews.L + rwheel.R + rwheel2.R + rscrews.R + rearaxle + gear/gear[2]/compression-norm + 11.5 +
+ 2.696 + 0.0 + 0.408 +
+ + -1.0 + 0.0 + 0.0 + +
+ + + rotate + rwheel.L + rwheel2.L + rscrews.L + rwheel.R + rwheel2.R + rscrews.R + rearaxle + gear/gear[3]/compression-norm + 11.5 +
+ 2.696 + 0.0 + 0.408 +
+ + 1.0 + 0.0 + 0.0 + +
+ + + spin + rwheel.L + rwheel2.L + rscrews.L + gear/gear[2]/rollspeed-ms + -15 +
+ 2.696 + -0.746 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + spin + rwheel.R + rwheel2.R + rscrews.R + gear/gear[3]/rollspeed-ms + -15 +
+ 2.696 + -0.746 + 0.408 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + + + + rotate + steerwheel + controls/flight/aileron + -100 +
+ 1.467 + -0.331 + 1.008 +
+ + 1.185 + -0.331 + 0.713 + 1.750 + -0.331 + 1.303 + +
+ + + rotate + screen + screenglass + wiper.L + wiper.R + controls/gear/screen + -108 +
+ 1.167 + 0.0 + 0.992 +
+ + 0.0 + 1.0 + 0.0 + +
+ + + Aircraft/jeep/Models/pilot.xml + pilot + + + 2.1 + -0.32 + 0.9 + 14 + + + + select + pilot + + + sim/current-view/view-number + 0.0 + + + + + select + roof1 + roof2 + + + controls/gear/roof + 0 + + + + + Aircraft/jeep/Models/roof.ac + softroof + + + 0.0 + 0.0 + 0.0 + + + + select + softroof + + + controls/gear/roof + 1 + + + + + + + material + chassis + chassis.001 + Cylinder.001 + canister.RL + fwheel.L + fwheel.R + rwheel.L + rwheel.R + sparewheel + steerwheel + Circle.007 + Circle.008 + frontbumper + screen + sim/model/livery + texture + jeep-1.png + + + material + roof + sim/model/livery + texture-roof + softroof.png + + + + + select + canister.HL + canister.HR + sparewheel.F + canister.M + canister.L + canister.R + + + sim/model/livery/name + Brit. Airborn Jeep + + + + + select + screen + screenglass + wiper.L + wiper.R + canister.RL + sparewheel + sparewheel2 + rscrews.L.001 + + + sim/model/livery/name + Brit. Airborn Jeep + + + + +
+ diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/airborn.xml b/resources/flightgear/Aircraft/jeep/Models/Liveries/airborn.xml new file mode 100755 index 0000000000000000000000000000000000000000..ca7edfd6cea4b1b545111ba060a3baea51a4c509 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/Liveries/airborn.xml @@ -0,0 +1,14 @@ + + + + + + + Brit. Airborn Jeep + + Liveries/jeep-1d.png + Liveries/softroof-a.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/army-g.xml b/resources/flightgear/Aircraft/jeep/Models/Liveries/army-g.xml new file mode 100755 index 0000000000000000000000000000000000000000..55f67b6d64d9f2c7006095c5240d125fba086ba3 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/Liveries/army-g.xml @@ -0,0 +1,14 @@ + + + + + + + US Army green + + jeep-1.png + softroof.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/hippie.xml b/resources/flightgear/Aircraft/jeep/Models/Liveries/hippie.xml new file mode 100755 index 0000000000000000000000000000000000000000..cd3e24d879a14d8e4c4704f6a97b135def58e7bd --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/Liveries/hippie.xml @@ -0,0 +1,14 @@ + + + + + + + Hippie pink + + Liveries/jeep-1c.png + softroof.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png new file mode 100755 index 0000000000000000000000000000000000000000..6c541c76dd8b2905d5d32fb145cd210c91f926f9 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1a.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png new file mode 100755 index 0000000000000000000000000000000000000000..78c6f51a91003719cfb1a117062b83233f41981d Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1b.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png new file mode 100755 index 0000000000000000000000000000000000000000..eaa74833349624266c9e4e9d2a3493032d0a8ae2 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1c.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png new file mode 100755 index 0000000000000000000000000000000000000000..bb3b4c77e8f6940bcd4ebe629ab7b175ab3d5c22 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/Liveries/jeep-1d.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/navy.xml b/resources/flightgear/Aircraft/jeep/Models/Liveries/navy.xml new file mode 100755 index 0000000000000000000000000000000000000000..7fc8f6890191afdfc2cb75bbf4fb9a21d0bb4b0b --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/Liveries/navy.xml @@ -0,0 +1,14 @@ + + + + + + + US Navy blue + + Liveries/jeep-1a.png + Liveries/softroof-a.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/raf.xml b/resources/flightgear/Aircraft/jeep/Models/Liveries/raf.xml new file mode 100755 index 0000000000000000000000000000000000000000..023d37559f45a7a7022b7dd882e8585cbf5648e0 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/Liveries/raf.xml @@ -0,0 +1,14 @@ + + + + + + + RAF + + Liveries/jeep-1b.png + Liveries/softroof-a.png + + + + diff --git a/resources/flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png b/resources/flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png new file mode 100755 index 0000000000000000000000000000000000000000..0d85ec39ddb976be9c0b41ea05d7e7615708b9be Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/Liveries/softroof-a.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/cabin.png b/resources/flightgear/Aircraft/jeep/Models/cabin.png new file mode 100755 index 0000000000000000000000000000000000000000..d3ad949e11577c4bb18dcf64ca5e49bd8172a4e7 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/cabin.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/current.ac b/resources/flightgear/Aircraft/jeep/Models/current.ac new file mode 100755 index 0000000000000000000000000000000000000000..8d93f5780d9d24142a6ff590e3a949bfb49c24ff --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/current.ac @@ -0,0 +1,1221 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "Material" rgb 0.15 0.15 0.15 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +OBJECT world +kids 3 +OBJECT poly +name "case" +data 4 +Cube +crease 30.000000 +numvert 144 +1e-06 0.025909 0.025909 +1e-06 0.01832 0.031732 +1e-06 0.009483 0.035392 +1e-06 0 0.036641 +1e-06 -0.009483 0.035392 +1e-06 -0.01832 0.031732 +1e-06 -0.025909 0.025909 +1e-06 -0.031732 0.01832 +1e-06 -0.035392 0.009483 +1e-06 -0.036641 0 +1e-06 -0.035392 -0.009483 +1e-06 -0.031732 -0.01832 +1e-06 -0.025909 -0.025909 +1e-06 -0.01832 -0.031732 +1e-06 -0.009483 -0.035392 +1e-06 0 -0.036641 +1e-06 0.009483 -0.035392 +1e-06 0.01832 -0.031732 +1e-06 0.025909 -0.025909 +1e-06 0.031732 -0.01832 +1e-06 0.035392 -0.009483 +1e-06 0.036641 0 +1e-06 0.035392 0.009483 +1e-06 0.031732 0.01832 +0.001188 0.017718 0.030689 +0.001188 0.025058 0.025058 +0.001188 0.009172 0.034229 +0.001188 0 0.035437 +0.001188 -0.009172 0.034229 +0.001188 -0.017718 0.030689 +0.001188 -0.025058 0.025058 +0.001188 -0.030689 0.017718 +0.001188 -0.034229 0.009172 +0.001188 -0.035437 0 +0.001188 -0.034229 -0.009172 +0.001188 -0.030689 -0.017718 +0.001188 -0.025058 -0.025057 +0.001188 -0.017718 -0.030689 +0.001188 -0.009172 -0.034229 +0.001188 0 -0.035437 +0.001188 0.009172 -0.034229 +0.001188 0.017718 -0.030689 +0.001188 0.025057 -0.025058 +0.001188 0.030689 -0.017718 +0.001188 0.034229 -0.009172 +0.001188 0.035437 0 +0.001188 0.034229 0.009172 +0.001188 0.030689 0.017718 +0.001781 0.016956 0.029368 +0.001781 0.023979 0.023979 +0.001781 0.008777 0.032756 +0.001781 0 0.033912 +0.001781 -0.008777 0.032756 +0.001781 -0.016956 0.029368 +0.001781 -0.023979 0.023979 +0.001781 -0.029368 0.016956 +0.001781 -0.032756 0.008777 +0.001781 -0.033912 0 +0.001781 -0.032756 -0.008777 +0.001781 -0.029369 -0.016956 +0.001781 -0.023979 -0.023979 +0.001781 -0.016956 -0.029368 +0.001781 -0.008777 -0.032756 +0.001781 0 -0.033912 +0.001781 0.008777 -0.032756 +0.001781 0.016956 -0.029369 +0.001781 0.023979 -0.023979 +0.001781 0.029368 -0.016956 +0.001781 0.032756 -0.008777 +0.001781 0.033912 0 +0.001781 0.032756 0.008777 +0.001781 0.029369 0.016956 +0.00623 0.023979 0.023979 +0.00623 0.016956 0.029368 +0.00623 0.008777 0.032756 +0.00623 0 0.033912 +0.00623 -0.008777 0.032756 +0.00623 -0.016956 0.029368 +0.00623 -0.023979 0.023979 +0.00623 -0.029368 0.016956 +0.00623 -0.032756 0.008777 +0.00623 -0.033912 0 +0.00623 -0.032756 -0.008777 +0.00623 -0.029369 -0.016956 +0.00623 -0.023979 -0.023979 +0.00623 -0.016956 -0.029368 +0.00623 -0.008777 -0.032756 +0.00623 0 -0.033912 +0.00623 0.008777 -0.032756 +0.00623 0.016956 -0.029369 +0.00623 0.023979 -0.023979 +0.00623 0.029368 -0.016956 +0.00623 0.032756 -0.008777 +0.00623 0.033912 0 +0.00623 0.032756 0.008777 +0.00623 0.029369 0.016956 +0.00623 0.021063 0.021063 +0.00623 0.014894 0.025797 +0.00623 0.00771 0.028773 +0.00623 0 0.029788 +0.00623 -0.00771 0.028773 +0.00623 -0.014894 0.025797 +0.00623 -0.021063 0.021063 +0.00623 -0.025797 0.014894 +0.00623 -0.028773 0.00771 +0.00623 -0.029788 0 +0.00623 -0.028773 -0.00771 +0.00623 -0.025797 -0.014894 +0.00623 -0.021063 -0.021063 +0.00623 -0.014894 -0.025797 +0.00623 -0.00771 -0.028773 +0.00623 0 -0.029788 +0.00623 0.00771 -0.028773 +0.00623 0.014894 -0.025797 +0.00623 0.021063 -0.021063 +0.00623 0.025797 -0.014894 +0.00623 0.028773 -0.00771 +0.00623 0.029788 0 +0.00623 0.028773 0.00771 +0.00623 0.025797 0.014894 +0.003264 0.014894 0.025797 +0.003264 0.021063 0.021063 +0.003264 0.00771 0.028773 +0.003264 0 0.029788 +0.003264 -0.00771 0.028773 +0.003264 -0.014894 0.025797 +0.003264 -0.021063 0.021063 +0.003264 -0.025797 0.014894 +0.003264 -0.028773 0.00771 +0.003264 -0.029788 0 +0.003264 -0.028773 -0.00771 +0.003264 -0.025797 -0.014894 +0.003264 -0.021063 -0.021063 +0.003264 -0.014894 -0.025797 +0.003264 -0.00771 -0.028773 +0.003264 0 -0.029788 +0.003264 0.00771 -0.028773 +0.003264 0.014894 -0.025797 +0.003264 0.021063 -0.021063 +0.003264 0.025797 -0.014894 +0.003264 0.028773 -0.00771 +0.003264 0.029788 0 +0.003264 0.028773 0.00771 +0.003264 0.025797 0.014894 +numsurf 120 +SURF 0x10 +mat 1 +refs 4 +25 1.0 0.0 +0 0.0 0.0 +1 0.0 1.0 +24 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +2 0.0 1.0 +26 1.0 1.0 +24 1.0 0.0 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +3 0.0 1.0 +27 1.0 1.0 +26 1.0 0.0 +2 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +4 0.0 1.0 +28 1.0 1.0 +27 1.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +5 0.0 1.0 +29 1.0 1.0 +28 1.0 0.0 +4 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +6 0.0 1.0 +30 1.0 1.0 +29 1.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +7 0.0 1.0 +31 1.0 1.0 +30 1.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +8 0.0 1.0 +32 1.0 1.0 +31 1.0 0.0 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +9 0.0 1.0 +33 1.0 1.0 +32 1.0 0.0 +8 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +10 0.0 1.0 +34 1.0 1.0 +33 1.0 0.0 +9 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +11 0.0 1.0 +35 1.0 1.0 +34 1.0 0.0 +10 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +12 0.0 1.0 +36 1.0 1.0 +35 1.0 0.0 +11 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +13 0.0 1.0 +37 1.0 1.0 +36 1.0 0.0 +12 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +14 0.0 1.0 +38 1.0 1.0 +37 1.0 0.0 +13 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +15 0.0 1.0 +39 1.0 1.0 +38 1.0 0.0 +14 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +16 0.0 1.0 +40 1.0 1.0 +39 1.0 0.0 +15 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +17 0.0 1.0 +41 1.0 1.0 +40 1.0 0.0 +16 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +18 0.0 1.0 +42 1.0 1.0 +41 1.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +19 0.0 1.0 +43 1.0 1.0 +42 1.0 0.0 +18 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +20 0.0 1.0 +44 1.0 1.0 +43 1.0 0.0 +19 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +21 0.0 1.0 +45 1.0 1.0 +44 1.0 0.0 +20 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +22 0.0 1.0 +46 1.0 1.0 +45 1.0 0.0 +21 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +23 0.0 1.0 +47 1.0 1.0 +46 1.0 0.0 +22 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +25 1.0 1.0 +47 1.0 0.0 +23 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +24 0.0 1.0 +48 1.0 1.0 +49 1.0 0.0 +25 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +26 0.0 1.0 +50 1.0 1.0 +48 1.0 0.0 +24 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +27 0.0 1.0 +51 1.0 1.0 +50 1.0 0.0 +26 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +28 0.0 1.0 +52 1.0 1.0 +51 1.0 0.0 +27 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +29 0.0 1.0 +53 1.0 1.0 +52 1.0 0.0 +28 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +30 0.0 1.0 +54 1.0 1.0 +53 1.0 0.0 +29 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +31 0.0 1.0 +55 1.0 1.0 +54 1.0 0.0 +30 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +32 0.0 1.0 +56 1.0 1.0 +55 1.0 0.0 +31 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +33 0.0 1.0 +57 1.0 1.0 +56 1.0 0.0 +32 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +34 0.0 1.0 +58 1.0 1.0 +57 1.0 0.0 +33 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +35 0.0 1.0 +59 1.0 1.0 +58 1.0 0.0 +34 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +36 0.0 1.0 +60 1.0 1.0 +59 1.0 0.0 +35 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +37 0.0 1.0 +61 1.0 1.0 +60 1.0 0.0 +36 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +38 0.0 1.0 +62 1.0 1.0 +61 1.0 0.0 +37 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +39 0.0 1.0 +63 1.0 1.0 +62 1.0 0.0 +38 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +40 0.0 1.0 +64 1.0 1.0 +63 1.0 0.0 +39 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +41 0.0 1.0 +65 1.0 1.0 +64 1.0 0.0 +40 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +42 0.0 1.0 +66 1.0 1.0 +65 1.0 0.0 +41 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +43 0.0 1.0 +67 1.0 1.0 +66 1.0 0.0 +42 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +44 0.0 1.0 +68 1.0 1.0 +67 1.0 0.0 +43 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +45 0.0 1.0 +69 1.0 1.0 +68 1.0 0.0 +44 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +46 0.0 1.0 +70 1.0 1.0 +69 1.0 0.0 +45 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +47 0.0 1.0 +71 1.0 1.0 +70 1.0 0.0 +46 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +25 0.0 1.0 +49 1.0 1.0 +71 1.0 0.0 +47 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +48 0.0 1.0 +73 1.0 1.0 +72 1.0 0.0 +49 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +50 0.0 1.0 +74 1.0 1.0 +73 1.0 0.0 +48 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +51 0.0 1.0 +75 1.0 1.0 +74 1.0 0.0 +50 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +52 0.0 1.0 +76 1.0 1.0 +75 1.0 0.0 +51 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +53 0.0 1.0 +77 1.0 1.0 +76 1.0 0.0 +52 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +54 0.0 1.0 +78 1.0 1.0 +77 1.0 0.0 +53 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +55 0.0 1.0 +79 1.0 1.0 +78 1.0 0.0 +54 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +56 0.0 1.0 +80 1.0 1.0 +79 1.0 0.0 +55 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +57 0.0 1.0 +81 1.0 1.0 +80 1.0 0.0 +56 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +58 0.0 1.0 +82 1.0 1.0 +81 1.0 0.0 +57 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +59 0.0 1.0 +83 1.0 1.0 +82 1.0 0.0 +58 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +60 0.0 1.0 +84 1.0 1.0 +83 1.0 0.0 +59 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +61 0.0 1.0 +85 1.0 1.0 +84 1.0 0.0 +60 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +62 0.0 1.0 +86 1.0 1.0 +85 1.0 0.0 +61 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +63 0.0 1.0 +87 1.0 1.0 +86 1.0 0.0 +62 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +64 0.0 1.0 +88 1.0 1.0 +87 1.0 0.0 +63 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +65 0.0 1.0 +89 1.0 1.0 +88 1.0 0.0 +64 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +66 0.0 1.0 +90 1.0 1.0 +89 1.0 0.0 +65 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +67 0.0 1.0 +91 1.0 1.0 +90 1.0 0.0 +66 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +68 0.0 1.0 +92 1.0 1.0 +91 1.0 0.0 +67 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +69 0.0 1.0 +93 1.0 1.0 +92 1.0 0.0 +68 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +70 0.0 1.0 +94 1.0 1.0 +93 1.0 0.0 +69 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +71 0.0 1.0 +95 1.0 1.0 +94 1.0 0.0 +70 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +49 0.0 1.0 +72 1.0 1.0 +95 1.0 0.0 +71 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +73 0.0 1.0 +97 1.0 1.0 +96 1.0 0.0 +72 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +74 0.0 1.0 +98 1.0 1.0 +97 1.0 0.0 +73 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +75 0.0 1.0 +99 1.0 1.0 +98 1.0 0.0 +74 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +76 0.0 1.0 +100 1.0 1.0 +99 1.0 0.0 +75 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +77 0.0 1.0 +101 1.0 1.0 +100 1.0 0.0 +76 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +78 0.0 1.0 +102 1.0 1.0 +101 1.0 0.0 +77 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +79 0.0 1.0 +103 1.0 1.0 +102 1.0 0.0 +78 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +80 0.0 1.0 +104 1.0 1.0 +103 1.0 0.0 +79 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +81 0.0 1.0 +105 1.0 1.0 +104 1.0 0.0 +80 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +82 0.0 1.0 +106 1.0 1.0 +105 1.0 0.0 +81 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +83 0.0 1.0 +107 1.0 1.0 +106 1.0 0.0 +82 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +84 0.0 1.0 +108 1.0 1.0 +107 1.0 0.0 +83 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +85 0.0 1.0 +109 1.0 1.0 +108 1.0 0.0 +84 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +86 0.0 1.0 +110 1.0 1.0 +109 1.0 0.0 +85 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +87 0.0 1.0 +111 1.0 1.0 +110 1.0 0.0 +86 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +88 0.0 1.0 +112 1.0 1.0 +111 1.0 0.0 +87 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +89 0.0 1.0 +113 1.0 1.0 +112 1.0 0.0 +88 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +90 0.0 1.0 +114 1.0 1.0 +113 1.0 0.0 +89 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +91 0.0 1.0 +115 1.0 1.0 +114 1.0 0.0 +90 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +92 0.0 1.0 +116 1.0 1.0 +115 1.0 0.0 +91 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +93 0.0 1.0 +117 1.0 1.0 +116 1.0 0.0 +92 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +94 0.0 1.0 +118 1.0 1.0 +117 1.0 0.0 +93 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +95 0.0 1.0 +119 1.0 1.0 +118 1.0 0.0 +94 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +72 0.0 1.0 +96 1.0 1.0 +119 1.0 0.0 +95 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +97 0.0 1.0 +120 1.0 1.0 +121 1.0 0.0 +96 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +98 0.0 1.0 +122 1.0 1.0 +120 1.0 0.0 +97 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +99 0.0 1.0 +123 1.0 1.0 +122 1.0 0.0 +98 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +100 0.0 1.0 +124 1.0 1.0 +123 1.0 0.0 +99 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +101 0.0 1.0 +125 1.0 1.0 +124 1.0 0.0 +100 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +102 0.0 1.0 +126 1.0 1.0 +125 1.0 0.0 +101 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +103 0.0 1.0 +127 1.0 1.0 +126 1.0 0.0 +102 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +104 0.0 1.0 +128 1.0 1.0 +127 1.0 0.0 +103 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +105 0.0 1.0 +129 1.0 1.0 +128 1.0 0.0 +104 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +106 0.0 1.0 +130 1.0 1.0 +129 1.0 0.0 +105 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +107 0.0 1.0 +131 1.0 1.0 +130 1.0 0.0 +106 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +108 0.0 1.0 +132 1.0 1.0 +131 1.0 0.0 +107 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +109 0.0 1.0 +133 1.0 1.0 +132 1.0 0.0 +108 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +110 0.0 1.0 +134 1.0 1.0 +133 1.0 0.0 +109 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +111 0.0 1.0 +135 1.0 1.0 +134 1.0 0.0 +110 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +112 0.0 1.0 +136 1.0 1.0 +135 1.0 0.0 +111 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +113 0.0 1.0 +137 1.0 1.0 +136 1.0 0.0 +112 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +114 0.0 1.0 +138 1.0 1.0 +137 1.0 0.0 +113 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +115 0.0 1.0 +139 1.0 1.0 +138 1.0 0.0 +114 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +116 0.0 1.0 +140 1.0 1.0 +139 1.0 0.0 +115 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +117 0.0 1.0 +141 1.0 1.0 +140 1.0 0.0 +116 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +118 0.0 1.0 +142 1.0 1.0 +141 1.0 0.0 +117 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +119 0.0 1.0 +143 1.0 1.0 +142 1.0 0.0 +118 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +96 0.0 1.0 +121 1.0 1.0 +143 1.0 0.0 +119 0.0 0.0 +kids 0 +OBJECT poly +name "face" +data 6 +Circle +texture "current.rgb" +texrep 1 1 +crease 30.000000 +numvert 14 +0.002061 0.02313 -0.02313 +0.002061 0.008466 -0.031596 +0.002061 -0.008466 -0.031596 +0.002061 -0.02313 -0.02313 +0.002061 -0.031596 -0.008466 +0.002061 -0.031596 0.008466 +0.002061 -0.02313 0.02313 +0.002061 -0.008466 0.031596 +0.002061 0.008466 0.031596 +0.002061 0.02313 0.02313 +0.002061 0.031596 0.008466 +0.002061 0.031596 -0.008466 +0.002061 0 0 +0.002061 -0.031596 0 +numsurf 13 +SURF 0x00 +mat 2 +refs 3 +1 1.01774740219 0.565117835999 +0 0.880060434341 0.803604424 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +2 1.01774740219 0.289732187986 +1 1.01774740219 0.565117835999 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +8 -0.00998525321484 0.565117835999 +7 -0.00998525321484 0.289732128382 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +9 0.127701744437 0.803604424 +8 -0.00998525321484 0.565117835999 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +10 0.366188436747 0.941291332245 +9 0.127701744437 0.803604424 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +11 0.641574025154 0.941297233105 +10 0.366188436747 0.941291332245 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +0 0.880060434341 0.803604424 +11 0.641574025154 0.941297233105 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +6 0.127701744437 0.0512456037104 +12 0.50388109684 0.427424937487 +7 -0.00998525321484 0.289732128382 +SURF 0x00 +mat 2 +refs 3 +5 0.366188436747 -0.086441449821 +12 0.50388109684 0.427424937487 +6 0.127701744437 0.0512456037104 +SURF 0x00 +mat 2 +refs 3 +5 0.366188436747 -0.086441449821 +13 0.50388109684 -0.086441449821 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +4 0.641574144363 -0.086441449821 +12 0.50388109684 0.427424937487 +13 0.50388109684 -0.086441449821 +SURF 0x00 +mat 2 +refs 3 +3 0.880060434341 0.0512456037104 +12 0.50388109684 0.427424937487 +4 0.641574144363 -0.086441449821 +SURF 0x00 +mat 2 +refs 3 +2 1.01774740219 0.289732187986 +12 0.50388109684 0.427424937487 +3 0.880060434341 0.0512456037104 +kids 0 +OBJECT poly +name "needle" +data 8 +Cylinder +texture "current.rgb" +texrep 1 1 +crease 30.000000 +numvert 14 +0 -0.003831 -4.1e-05 +0.002697 -0.003232 -0.00115 +0.002697 -0.003221 0.001337 +0.003702 -0.003232 -0.00115 +0.003702 -0.003221 0.001337 +0.003702 0.003645 0.001195 +0.003702 0.003634 -0.001293 +0.002697 0.003645 0.001195 +0.002697 0.003634 -0.001293 +0.002697 0.017302 -0.000387 +0.002697 0.017306 0.000397 +0.003702 0.017302 -0.000387 +0.003702 0.017306 0.000397 +0 -0.01459 -2e-06 +numsurf 15 +SURF 0x00 +mat 2 +refs 3 +0 0.803360044956 0.919802546501 +2 0.806681632996 0.954387247562 +1 0.806681632996 0.923133969307 +SURF 0x00 +mat 2 +refs 3 +0 0.803360044956 0.919802546501 +1 0.806681632996 0.923133969307 +3 0.806681632996 0.923133969307 +SURF 0x00 +mat 2 +refs 3 +0 0.803360044956 0.957718610764 +4 0.806681632996 0.954387247562 +2 0.806681632996 0.954387247562 +SURF 0x00 +mat 2 +refs 3 +0 0.803360044956 0.957718849182 +3 0.806681632996 0.923133969307 +4 0.806681632996 0.954387247562 +SURF 0x00 +mat 2 +refs 4 +4 0.806681632996 0.954387247562 +3 0.806681632996 0.923133969307 +6 0.897341430187 0.923133969307 +5 0.897341430187 0.954387247562 +SURF 0x00 +mat 2 +refs 4 +2 0.806681632996 0.954387247562 +4 0.806681632996 0.954387247562 +5 0.897341430187 0.954387247562 +7 0.897341430187 0.954387247562 +SURF 0x00 +mat 2 +refs 4 +3 0.806681632996 0.923133969307 +1 0.806681632996 0.923133969307 +8 0.897341430187 0.923133969307 +6 0.897341430187 0.923133969307 +SURF 0x00 +mat 2 +refs 4 +1 0.806681632996 0.923133969307 +2 0.806681632996 0.954387247562 +7 0.897341430187 0.954387247562 +8 0.897341430187 0.923133969307 +SURF 0x00 +mat 2 +refs 4 +8 0.897341430187 0.923133969307 +7 0.897341430187 0.954387247562 +10 0.960686266422 0.94368237257 +9 0.960686266422 0.933838903904 +SURF 0x00 +mat 2 +refs 4 +6 0.897341430187 0.923133969307 +8 0.897341430187 0.923133969307 +9 0.960686266422 0.933838903904 +11 0.960686266422 0.933838903904 +SURF 0x00 +mat 2 +refs 4 +7 0.897341430187 0.954387247562 +5 0.897341430187 0.954387247562 +12 0.960686266422 0.94368237257 +10 0.960686266422 0.94368237257 +SURF 0x00 +mat 2 +refs 4 +5 0.897341430187 0.954387247562 +6 0.897341430187 0.923133969307 +11 0.960686266422 0.933838903904 +12 0.960686266422 0.94368237257 +SURF 0x00 +mat 2 +refs 3 +10 0.960686266422 0.94368237257 +12 0.960686266422 0.94368237257 +11 0.960686266422 0.933838903904 +SURF 0x00 +mat 2 +refs 3 +11 0.960686266422 0.933838903904 +9 0.960686266422 0.933838903904 +10 0.960686266422 0.94368237257 +SURF 0x02 +mat 2 +refs 2 +0 0 0 +13 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/current.rgb b/resources/flightgear/Aircraft/jeep/Models/current.rgb new file mode 100755 index 0000000000000000000000000000000000000000..385521f8a6fb1488fb2b86f2f8e5aa77d6426dc3 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/current.rgb differ diff --git a/resources/flightgear/Aircraft/jeep/Models/current.xml b/resources/flightgear/Aircraft/jeep/Models/current.xml new file mode 100755 index 0000000000000000000000000000000000000000..d274c198aa5d0c9e6e05b2a6b2ea055c2f6705cb --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/current.xml @@ -0,0 +1,29 @@ + + + + + + + + + + current.ac + + rotate + needle + systems/electrical/amps + -1 +
+ 0.0 + 0.0 + -0.015 +
+ + 1.0 + 0.0 + 0.0 + +
+ + +
diff --git a/resources/flightgear/Aircraft/jeep/Models/fuel.ac b/resources/flightgear/Aircraft/jeep/Models/fuel.ac new file mode 100755 index 0000000000000000000000000000000000000000..3ba654bd96371ef84e06103d74d4af2250a531cc --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/fuel.ac @@ -0,0 +1,1215 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "Material" rgb 0.15 0.15 0.15 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +OBJECT world +kids 3 +OBJECT poly +name "case" +data 4 +Cube +crease 30.000000 +numvert 144 +1e-06 0.025909 0.025909 +1e-06 0.01832 0.031732 +1e-06 0.009483 0.035392 +1e-06 0 0.036641 +1e-06 -0.009483 0.035392 +1e-06 -0.01832 0.031732 +1e-06 -0.025909 0.025909 +1e-06 -0.031732 0.01832 +1e-06 -0.035392 0.009483 +1e-06 -0.036641 0 +1e-06 -0.035392 -0.009483 +1e-06 -0.031732 -0.01832 +1e-06 -0.025909 -0.025909 +1e-06 -0.01832 -0.031732 +1e-06 -0.009483 -0.035392 +1e-06 0 -0.036641 +1e-06 0.009483 -0.035392 +1e-06 0.01832 -0.031732 +1e-06 0.025909 -0.025909 +1e-06 0.031732 -0.01832 +1e-06 0.035392 -0.009483 +1e-06 0.036641 0 +1e-06 0.035392 0.009483 +1e-06 0.031732 0.01832 +0.001188 0.017718 0.030689 +0.001188 0.025058 0.025058 +0.001188 0.009172 0.034229 +0.001188 0 0.035437 +0.001188 -0.009172 0.034229 +0.001188 -0.017718 0.030689 +0.001188 -0.025058 0.025058 +0.001188 -0.030689 0.017718 +0.001188 -0.034229 0.009172 +0.001188 -0.035437 0 +0.001188 -0.034229 -0.009172 +0.001188 -0.030689 -0.017718 +0.001188 -0.025058 -0.025057 +0.001188 -0.017718 -0.030689 +0.001188 -0.009172 -0.034229 +0.001188 0 -0.035437 +0.001188 0.009172 -0.034229 +0.001188 0.017718 -0.030689 +0.001188 0.025057 -0.025058 +0.001188 0.030689 -0.017718 +0.001188 0.034229 -0.009172 +0.001188 0.035437 0 +0.001188 0.034229 0.009172 +0.001188 0.030689 0.017718 +0.001781 0.016956 0.029368 +0.001781 0.023979 0.023979 +0.001781 0.008777 0.032756 +0.001781 0 0.033912 +0.001781 -0.008777 0.032756 +0.001781 -0.016956 0.029368 +0.001781 -0.023979 0.023979 +0.001781 -0.029368 0.016956 +0.001781 -0.032756 0.008777 +0.001781 -0.033912 0 +0.001781 -0.032756 -0.008777 +0.001781 -0.029369 -0.016956 +0.001781 -0.023979 -0.023979 +0.001781 -0.016956 -0.029368 +0.001781 -0.008777 -0.032756 +0.001781 0 -0.033912 +0.001781 0.008777 -0.032756 +0.001781 0.016956 -0.029369 +0.001781 0.023979 -0.023979 +0.001781 0.029368 -0.016956 +0.001781 0.032756 -0.008777 +0.001781 0.033912 0 +0.001781 0.032756 0.008777 +0.001781 0.029369 0.016956 +0.00623 0.023979 0.023979 +0.00623 0.016956 0.029368 +0.00623 0.008777 0.032756 +0.00623 0 0.033912 +0.00623 -0.008777 0.032756 +0.00623 -0.016956 0.029368 +0.00623 -0.023979 0.023979 +0.00623 -0.029368 0.016956 +0.00623 -0.032756 0.008777 +0.00623 -0.033912 0 +0.00623 -0.032756 -0.008777 +0.00623 -0.029369 -0.016956 +0.00623 -0.023979 -0.023979 +0.00623 -0.016956 -0.029368 +0.00623 -0.008777 -0.032756 +0.00623 0 -0.033912 +0.00623 0.008777 -0.032756 +0.00623 0.016956 -0.029369 +0.00623 0.023979 -0.023979 +0.00623 0.029368 -0.016956 +0.00623 0.032756 -0.008777 +0.00623 0.033912 0 +0.00623 0.032756 0.008777 +0.00623 0.029369 0.016956 +0.00623 0.021063 0.021063 +0.00623 0.014894 0.025797 +0.00623 0.00771 0.028773 +0.00623 0 0.029788 +0.00623 -0.00771 0.028773 +0.00623 -0.014894 0.025797 +0.00623 -0.021063 0.021063 +0.00623 -0.025797 0.014894 +0.00623 -0.028773 0.00771 +0.00623 -0.029788 0 +0.00623 -0.028773 -0.00771 +0.00623 -0.025797 -0.014894 +0.00623 -0.021063 -0.021063 +0.00623 -0.014894 -0.025797 +0.00623 -0.00771 -0.028773 +0.00623 0 -0.029788 +0.00623 0.00771 -0.028773 +0.00623 0.014894 -0.025797 +0.00623 0.021063 -0.021063 +0.00623 0.025797 -0.014894 +0.00623 0.028773 -0.00771 +0.00623 0.029788 0 +0.00623 0.028773 0.00771 +0.00623 0.025797 0.014894 +0.003264 0.014894 0.025797 +0.003264 0.021063 0.021063 +0.003264 0.00771 0.028773 +0.003264 0 0.029788 +0.003264 -0.00771 0.028773 +0.003264 -0.014894 0.025797 +0.003264 -0.021063 0.021063 +0.003264 -0.025797 0.014894 +0.003264 -0.028773 0.00771 +0.003264 -0.029788 0 +0.003264 -0.028773 -0.00771 +0.003264 -0.025797 -0.014894 +0.003264 -0.021063 -0.021063 +0.003264 -0.014894 -0.025797 +0.003264 -0.00771 -0.028773 +0.003264 0 -0.029788 +0.003264 0.00771 -0.028773 +0.003264 0.014894 -0.025797 +0.003264 0.021063 -0.021063 +0.003264 0.025797 -0.014894 +0.003264 0.028773 -0.00771 +0.003264 0.029788 0 +0.003264 0.028773 0.00771 +0.003264 0.025797 0.014894 +numsurf 120 +SURF 0x10 +mat 1 +refs 4 +25 1.0 0.0 +0 0.0 0.0 +1 0.0 1.0 +24 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +2 0.0 1.0 +26 1.0 1.0 +24 1.0 0.0 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +3 0.0 1.0 +27 1.0 1.0 +26 1.0 0.0 +2 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +4 0.0 1.0 +28 1.0 1.0 +27 1.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +5 0.0 1.0 +29 1.0 1.0 +28 1.0 0.0 +4 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +6 0.0 1.0 +30 1.0 1.0 +29 1.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +7 0.0 1.0 +31 1.0 1.0 +30 1.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +8 0.0 1.0 +32 1.0 1.0 +31 1.0 0.0 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +9 0.0 1.0 +33 1.0 1.0 +32 1.0 0.0 +8 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +10 0.0 1.0 +34 1.0 1.0 +33 1.0 0.0 +9 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +11 0.0 1.0 +35 1.0 1.0 +34 1.0 0.0 +10 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +12 0.0 1.0 +36 1.0 1.0 +35 1.0 0.0 +11 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +13 0.0 1.0 +37 1.0 1.0 +36 1.0 0.0 +12 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +14 0.0 1.0 +38 1.0 1.0 +37 1.0 0.0 +13 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +15 0.0 1.0 +39 1.0 1.0 +38 1.0 0.0 +14 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +16 0.0 1.0 +40 1.0 1.0 +39 1.0 0.0 +15 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +17 0.0 1.0 +41 1.0 1.0 +40 1.0 0.0 +16 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +18 0.0 1.0 +42 1.0 1.0 +41 1.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +19 0.0 1.0 +43 1.0 1.0 +42 1.0 0.0 +18 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +20 0.0 1.0 +44 1.0 1.0 +43 1.0 0.0 +19 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +21 0.0 1.0 +45 1.0 1.0 +44 1.0 0.0 +20 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +22 0.0 1.0 +46 1.0 1.0 +45 1.0 0.0 +21 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +23 0.0 1.0 +47 1.0 1.0 +46 1.0 0.0 +22 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +25 1.0 1.0 +47 1.0 0.0 +23 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +24 0.0 1.0 +48 1.0 1.0 +49 1.0 0.0 +25 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +26 0.0 1.0 +50 1.0 1.0 +48 1.0 0.0 +24 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +27 0.0 1.0 +51 1.0 1.0 +50 1.0 0.0 +26 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +28 0.0 1.0 +52 1.0 1.0 +51 1.0 0.0 +27 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +29 0.0 1.0 +53 1.0 1.0 +52 1.0 0.0 +28 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +30 0.0 1.0 +54 1.0 1.0 +53 1.0 0.0 +29 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +31 0.0 1.0 +55 1.0 1.0 +54 1.0 0.0 +30 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +32 0.0 1.0 +56 1.0 1.0 +55 1.0 0.0 +31 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +33 0.0 1.0 +57 1.0 1.0 +56 1.0 0.0 +32 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +34 0.0 1.0 +58 1.0 1.0 +57 1.0 0.0 +33 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +35 0.0 1.0 +59 1.0 1.0 +58 1.0 0.0 +34 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +36 0.0 1.0 +60 1.0 1.0 +59 1.0 0.0 +35 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +37 0.0 1.0 +61 1.0 1.0 +60 1.0 0.0 +36 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +38 0.0 1.0 +62 1.0 1.0 +61 1.0 0.0 +37 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +39 0.0 1.0 +63 1.0 1.0 +62 1.0 0.0 +38 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +40 0.0 1.0 +64 1.0 1.0 +63 1.0 0.0 +39 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +41 0.0 1.0 +65 1.0 1.0 +64 1.0 0.0 +40 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +42 0.0 1.0 +66 1.0 1.0 +65 1.0 0.0 +41 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +43 0.0 1.0 +67 1.0 1.0 +66 1.0 0.0 +42 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +44 0.0 1.0 +68 1.0 1.0 +67 1.0 0.0 +43 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +45 0.0 1.0 +69 1.0 1.0 +68 1.0 0.0 +44 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +46 0.0 1.0 +70 1.0 1.0 +69 1.0 0.0 +45 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +47 0.0 1.0 +71 1.0 1.0 +70 1.0 0.0 +46 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +25 0.0 1.0 +49 1.0 1.0 +71 1.0 0.0 +47 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +48 0.0 1.0 +73 1.0 1.0 +72 1.0 0.0 +49 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +50 0.0 1.0 +74 1.0 1.0 +73 1.0 0.0 +48 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +51 0.0 1.0 +75 1.0 1.0 +74 1.0 0.0 +50 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +52 0.0 1.0 +76 1.0 1.0 +75 1.0 0.0 +51 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +53 0.0 1.0 +77 1.0 1.0 +76 1.0 0.0 +52 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +54 0.0 1.0 +78 1.0 1.0 +77 1.0 0.0 +53 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +55 0.0 1.0 +79 1.0 1.0 +78 1.0 0.0 +54 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +56 0.0 1.0 +80 1.0 1.0 +79 1.0 0.0 +55 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +57 0.0 1.0 +81 1.0 1.0 +80 1.0 0.0 +56 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +58 0.0 1.0 +82 1.0 1.0 +81 1.0 0.0 +57 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +59 0.0 1.0 +83 1.0 1.0 +82 1.0 0.0 +58 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +60 0.0 1.0 +84 1.0 1.0 +83 1.0 0.0 +59 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +61 0.0 1.0 +85 1.0 1.0 +84 1.0 0.0 +60 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +62 0.0 1.0 +86 1.0 1.0 +85 1.0 0.0 +61 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +63 0.0 1.0 +87 1.0 1.0 +86 1.0 0.0 +62 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +64 0.0 1.0 +88 1.0 1.0 +87 1.0 0.0 +63 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +65 0.0 1.0 +89 1.0 1.0 +88 1.0 0.0 +64 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +66 0.0 1.0 +90 1.0 1.0 +89 1.0 0.0 +65 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +67 0.0 1.0 +91 1.0 1.0 +90 1.0 0.0 +66 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +68 0.0 1.0 +92 1.0 1.0 +91 1.0 0.0 +67 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +69 0.0 1.0 +93 1.0 1.0 +92 1.0 0.0 +68 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +70 0.0 1.0 +94 1.0 1.0 +93 1.0 0.0 +69 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +71 0.0 1.0 +95 1.0 1.0 +94 1.0 0.0 +70 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +49 0.0 1.0 +72 1.0 1.0 +95 1.0 0.0 +71 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +73 0.0 1.0 +97 1.0 1.0 +96 1.0 0.0 +72 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +74 0.0 1.0 +98 1.0 1.0 +97 1.0 0.0 +73 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +75 0.0 1.0 +99 1.0 1.0 +98 1.0 0.0 +74 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +76 0.0 1.0 +100 1.0 1.0 +99 1.0 0.0 +75 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +77 0.0 1.0 +101 1.0 1.0 +100 1.0 0.0 +76 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +78 0.0 1.0 +102 1.0 1.0 +101 1.0 0.0 +77 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +79 0.0 1.0 +103 1.0 1.0 +102 1.0 0.0 +78 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +80 0.0 1.0 +104 1.0 1.0 +103 1.0 0.0 +79 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +81 0.0 1.0 +105 1.0 1.0 +104 1.0 0.0 +80 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +82 0.0 1.0 +106 1.0 1.0 +105 1.0 0.0 +81 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +83 0.0 1.0 +107 1.0 1.0 +106 1.0 0.0 +82 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +84 0.0 1.0 +108 1.0 1.0 +107 1.0 0.0 +83 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +85 0.0 1.0 +109 1.0 1.0 +108 1.0 0.0 +84 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +86 0.0 1.0 +110 1.0 1.0 +109 1.0 0.0 +85 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +87 0.0 1.0 +111 1.0 1.0 +110 1.0 0.0 +86 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +88 0.0 1.0 +112 1.0 1.0 +111 1.0 0.0 +87 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +89 0.0 1.0 +113 1.0 1.0 +112 1.0 0.0 +88 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +90 0.0 1.0 +114 1.0 1.0 +113 1.0 0.0 +89 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +91 0.0 1.0 +115 1.0 1.0 +114 1.0 0.0 +90 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +92 0.0 1.0 +116 1.0 1.0 +115 1.0 0.0 +91 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +93 0.0 1.0 +117 1.0 1.0 +116 1.0 0.0 +92 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +94 0.0 1.0 +118 1.0 1.0 +117 1.0 0.0 +93 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +95 0.0 1.0 +119 1.0 1.0 +118 1.0 0.0 +94 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +72 0.0 1.0 +96 1.0 1.0 +119 1.0 0.0 +95 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +97 0.0 1.0 +120 1.0 1.0 +121 1.0 0.0 +96 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +98 0.0 1.0 +122 1.0 1.0 +120 1.0 0.0 +97 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +99 0.0 1.0 +123 1.0 1.0 +122 1.0 0.0 +98 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +100 0.0 1.0 +124 1.0 1.0 +123 1.0 0.0 +99 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +101 0.0 1.0 +125 1.0 1.0 +124 1.0 0.0 +100 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +102 0.0 1.0 +126 1.0 1.0 +125 1.0 0.0 +101 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +103 0.0 1.0 +127 1.0 1.0 +126 1.0 0.0 +102 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +104 0.0 1.0 +128 1.0 1.0 +127 1.0 0.0 +103 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +105 0.0 1.0 +129 1.0 1.0 +128 1.0 0.0 +104 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +106 0.0 1.0 +130 1.0 1.0 +129 1.0 0.0 +105 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +107 0.0 1.0 +131 1.0 1.0 +130 1.0 0.0 +106 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +108 0.0 1.0 +132 1.0 1.0 +131 1.0 0.0 +107 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +109 0.0 1.0 +133 1.0 1.0 +132 1.0 0.0 +108 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +110 0.0 1.0 +134 1.0 1.0 +133 1.0 0.0 +109 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +111 0.0 1.0 +135 1.0 1.0 +134 1.0 0.0 +110 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +112 0.0 1.0 +136 1.0 1.0 +135 1.0 0.0 +111 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +113 0.0 1.0 +137 1.0 1.0 +136 1.0 0.0 +112 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +114 0.0 1.0 +138 1.0 1.0 +137 1.0 0.0 +113 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +115 0.0 1.0 +139 1.0 1.0 +138 1.0 0.0 +114 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +116 0.0 1.0 +140 1.0 1.0 +139 1.0 0.0 +115 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +117 0.0 1.0 +141 1.0 1.0 +140 1.0 0.0 +116 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +118 0.0 1.0 +142 1.0 1.0 +141 1.0 0.0 +117 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +119 0.0 1.0 +143 1.0 1.0 +142 1.0 0.0 +118 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +96 0.0 1.0 +121 1.0 1.0 +143 1.0 0.0 +119 0.0 0.0 +kids 0 +OBJECT poly +name "face" +data 6 +Circle +texture "fuel.rgb" +texrep 1 1 +crease 30.000000 +numvert 14 +0.002061 0.02313 -0.02313 +0.002061 0.008466 -0.031596 +0.002061 -0.008466 -0.031596 +0.002061 -0.02313 -0.02313 +0.002061 -0.031596 -0.008466 +0.002061 -0.031596 0.008466 +0.002061 -0.02313 0.02313 +0.002061 -0.008466 0.031596 +0.002061 0.008466 0.031596 +0.002061 0.02313 0.02313 +0.002061 0.031596 0.008466 +0.002061 0.031596 -0.008466 +0.002061 0 0 +0.002061 -0.031596 0 +numsurf 13 +SURF 0x00 +mat 2 +refs 3 +1 1.01774740219 0.565117835999 +0 0.880060434341 0.803604424 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +2 1.01774740219 0.289732187986 +1 1.01774740219 0.565117835999 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +8 -0.00998525321484 0.565117835999 +7 -0.00998525321484 0.289732128382 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +9 0.127701744437 0.803604424 +8 -0.00998525321484 0.565117835999 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +10 0.366188436747 0.941291332245 +9 0.127701744437 0.803604424 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +11 0.641574025154 0.941297233105 +10 0.366188436747 0.941291332245 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +0 0.880060434341 0.803604424 +11 0.641574025154 0.941297233105 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +6 0.127701744437 0.0512456037104 +12 0.50388109684 0.427424937487 +7 -0.00998525321484 0.289732128382 +SURF 0x00 +mat 2 +refs 3 +5 0.366188436747 -0.086441449821 +12 0.50388109684 0.427424937487 +6 0.127701744437 0.0512456037104 +SURF 0x00 +mat 2 +refs 3 +5 0.366188436747 -0.086441449821 +13 0.50388109684 -0.086441449821 +12 0.50388109684 0.427424937487 +SURF 0x00 +mat 2 +refs 3 +4 0.641574144363 -0.086441449821 +12 0.50388109684 0.427424937487 +13 0.50388109684 -0.086441449821 +SURF 0x00 +mat 2 +refs 3 +3 0.880060434341 0.0512456037104 +12 0.50388109684 0.427424937487 +4 0.641574144363 -0.086441449821 +SURF 0x00 +mat 2 +refs 3 +2 1.01774740219 0.289732187986 +12 0.50388109684 0.427424937487 +3 0.880060434341 0.0512456037104 +kids 0 +OBJECT poly +name "needle" +data 8 +Cylinder +texture "fuel.rgb" +texrep 1 1 +crease 30.000000 +numvert 13 +0 -0.007057 0.00768 +0.002697 -0.005843 0.007336 +0.002697 -0.007618 0.009079 +0.003702 -0.005843 0.007336 +0.003702 -0.007618 0.009079 +0.003702 -0.002727 0.013898 +0.003702 -0.000952 0.012155 +0.002697 -0.002727 0.013898 +0.002697 -0.000952 0.012155 +0.002697 0.007934 0.022581 +0.002697 0.007375 0.023131 +0.003702 0.007934 0.022581 +0.003702 0.007375 0.023131 +numsurf 14 +SURF 0x00 +mat 2 +refs 3 +0 0.823360025883 0.933135926723 +2 0.826681613922 0.96772056818 +1 0.826681613922 0.936467289925 +SURF 0x00 +mat 2 +refs 3 +0 0.823360025883 0.933135926723 +1 0.826681613922 0.936467289925 +3 0.826681613922 0.936467289925 +SURF 0x00 +mat 2 +refs 3 +0 0.823360025883 0.971051990986 +4 0.826681613922 0.96772056818 +2 0.826681613922 0.96772056818 +SURF 0x00 +mat 2 +refs 3 +0 0.823360025883 0.9710521698 +3 0.826681613922 0.936467289925 +4 0.826681613922 0.96772056818 +SURF 0x00 +mat 2 +refs 4 +4 0.826681613922 0.96772056818 +3 0.826681613922 0.936467289925 +6 0.917341411114 0.936467289925 +5 0.917341411114 0.96772056818 +SURF 0x00 +mat 2 +refs 4 +2 0.826681613922 0.96772056818 +4 0.826681613922 0.96772056818 +5 0.917341411114 0.96772056818 +7 0.917341411114 0.96772056818 +SURF 0x00 +mat 2 +refs 4 +3 0.826681613922 0.936467289925 +1 0.826681613922 0.936467289925 +8 0.917341411114 0.936467289925 +6 0.917341411114 0.936467289925 +SURF 0x00 +mat 2 +refs 4 +1 0.826681613922 0.936467289925 +2 0.826681613922 0.96772056818 +7 0.917341411114 0.96772056818 +8 0.917341411114 0.936467289925 +SURF 0x00 +mat 2 +refs 4 +8 0.917341411114 0.936467289925 +7 0.917341411114 0.96772056818 +10 0.980686187744 0.957015693188 +9 0.980686187744 0.947172284126 +SURF 0x00 +mat 2 +refs 4 +6 0.917341411114 0.936467289925 +8 0.917341411114 0.936467289925 +9 0.980686187744 0.947172284126 +11 0.980686187744 0.947172284126 +SURF 0x00 +mat 2 +refs 4 +7 0.917341411114 0.96772056818 +5 0.917341411114 0.96772056818 +12 0.980686187744 0.957015693188 +10 0.980686187744 0.957015693188 +SURF 0x00 +mat 2 +refs 4 +5 0.917341411114 0.96772056818 +6 0.917341411114 0.936467289925 +11 0.980686187744 0.947172284126 +12 0.980686187744 0.957015693188 +SURF 0x00 +mat 2 +refs 3 +10 0.980686187744 0.957015693188 +12 0.980686187744 0.957015693188 +11 0.980686187744 0.947172284126 +SURF 0x00 +mat 2 +refs 3 +11 0.980686187744 0.947172284126 +9 0.980686187744 0.947172284126 +10 0.980686187744 0.957015693188 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/fuel.rgb b/resources/flightgear/Aircraft/jeep/Models/fuel.rgb new file mode 100755 index 0000000000000000000000000000000000000000..b90bc159849603eab6412e6778f33d0a50ba75a6 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/fuel.rgb differ diff --git a/resources/flightgear/Aircraft/jeep/Models/fuelgauge.xml b/resources/flightgear/Aircraft/jeep/Models/fuelgauge.xml new file mode 100755 index 0000000000000000000000000000000000000000..a1c5c24eb6712ace8bf60c28d24326b142a96db2 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/fuelgauge.xml @@ -0,0 +1,29 @@ + + + + + + + + + + fuel.ac + + rotate + needle + consumables/fuel/total-fuel-norm + -90 +
+ 0.0 + 0.0 + -0.015 +
+ + 1.0 + 0.0 + 0.0 + +
+ + +
diff --git a/resources/flightgear/Aircraft/jeep/Models/gpa.ac b/resources/flightgear/Aircraft/jeep/Models/gpa.ac new file mode 100644 index 0000000000000000000000000000000000000000..4bddd583af75682efcba6f569781d577924aa161 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/gpa.ac @@ -0,0 +1,51710 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "chassis" rgb 0.249013 0.411805 0.311625 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "black" rgb 0.1 0.1 0.1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "white" rgb 0.9 0.9 0.9 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "seat" rgb 0.5 0.5 0.5 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "yellow-light" rgb 0.8 0.8 0.160972 amb 0.5 0.5 0.5 emis 0.575148 0.575148 0.575148 spec 1 1 1 shi 32 trans 0.13783 +MATERIAL "black.001" rgb 0.1 0.1 0.1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "black.002" rgb 0.1 0.1 0.1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "tyre.001" rgb 0.2 0.2 0.2 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "chassis.001" rgb 0.249013 0.411805 0.311625 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "chassis.002" rgb 0.249013 0.411805 0.311625 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "brown" rgb 0.474417 0.361715 0.249013 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "lights" rgb 0.812522 0.8 0.8 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "red-light" rgb 0.561931 0.073262 0.060732 amb 0.5 0.5 0.5 emis 0.575148 0.575148 0.575148 spec 1 1 1 shi 32 trans 0.13783 +MATERIAL "black.003" rgb 0.1 0.1 0.1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "black.004" rgb 0.1 0.1 0.1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "tyre.003" rgb 0.2 0.2 0.2 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "chassis.003" rgb 0.249013 0.411805 0.311625 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "chassis.004" rgb 0.249013 0.411805 0.311625 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +OBJECT world +kids 52 +OBJECT poly +name "Circle" +data 8 +Mesh.004 +crease 30.000000 +numvert 24 +0.313078 1.180154 -3e-06 +0.313077 1.180154 0.517027 +-0.041056 1.165353 0.530473 +-0.041056 1.165353 -3e-06 +-0.041055 1.165353 -0.530479 +0.313078 1.180154 -0.517033 +0.282743 1.202258 -3e-06 +0.282743 1.202258 0.427624 +-0.010155 1.190016 0.438745 +-0.010154 1.190016 -3e-06 +-0.010154 1.190016 -0.438751 +0.282744 1.202258 -0.42763 +0.298123 1.179529 -3e-06 +0.298123 1.179529 0.473361 +-0.026102 1.165978 0.485671 +-0.026102 1.165978 -3e-06 +-0.026101 1.165978 -0.485677 +0.298124 1.179529 -0.473366 +0.264545 1.189676 -3e-06 +0.264545 1.189676 0.375313 +0.007477 1.178931 -3e-06 +0.007477 1.178931 0.385074 +0.007477 1.178931 -0.38508 +0.264545 1.189676 -0.375319 +numsurf 44 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +0 0 0 +6 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +2 0 0 +8 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +1 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +3 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +11 0 0 +5 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +5 0 0 +11 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +11 0 0 +6 0 0 +SURF 0x20 +mat 1 +refs 3 +7 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 1 +refs 3 +6 0 0 +9 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +9 0 0 +6 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +10 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +1 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +13 0 0 +12 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +3 0 0 +15 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +2 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +4 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +16 0 0 +15 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +5 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x20 +mat 1 +refs 3 +5 0 0 +12 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 3 +12 0 0 +13 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 3 +12 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 3 +14 0 0 +15 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 3 +13 0 0 +14 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 3 +13 0 0 +21 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 3 +15 0 0 +16 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 3 +15 0 0 +22 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +16 0 0 +17 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 3 +16 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 3 +17 0 0 +12 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 3 +17 0 0 +18 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 3 +19 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +18 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +23 0 0 +18 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +23 0 0 +20 0 0 +22 0 0 +kids 0 +OBJECT poly +name "Circle.001" +data 8 +Mesh.003 +crease 30.000000 +numvert 394 +3.008085 1.311397 -0.753878 +3.008085 1.311397 0.753876 +1.147689 1.311397 0.753875 +1.147689 1.311397 -0.753878 +1.796047 1.311397 0.753876 +1.796047 1.311397 -0.753878 +-0.734776 0.990575 -0.205946 +-0.734776 0.975988 -3e-06 +-0.734776 1.020682 -0.411888 +-0.734776 0.990575 0.205939 +-0.734776 1.020682 0.411882 +-0.556272 0.813129 -3e-06 +-0.556272 0.813129 -0.424907 +-0.556272 0.813129 0.424901 +1.305621 0.271347 -0.09917 +0.923815 0.271347 -0.094926 +0.904851 0.271347 -0.050929 +0.904851 0.271347 -3e-06 +0.904851 0.271347 0.050923 +0.917609 0.271347 0.088049 +1.305621 0.271347 0.099164 +-0.674747 0.988188 -0.49528 +-0.630764 0.94061 -0.557095 +-0.554691 0.865017 -0.615358 +-0.494663 0.813129 -0.643799 +-0.673167 1.020682 -0.569139 +-0.674748 0.988188 0.495274 +-0.630764 0.94061 0.557088 +-0.554691 0.865017 0.615352 +-0.494663 0.813129 0.643793 +-0.673167 1.020682 0.569133 +-0.387057 1.150096 -0.75643 +-0.527424 1.150096 -0.701676 +-0.647504 1.150096 -0.560763 +-0.708206 1.150096 -0.405826 +-0.708206 1.150096 -3e-06 +-0.708207 1.150096 0.40582 +-0.647504 1.150096 0.560757 +-0.527425 1.150096 0.70167 +-0.387058 1.150096 0.756424 +1.798328 1.150096 -0.79025 +-0.211097 1.136818 -0.819336 +3.803524 1.136818 -0.819337 +1.798328 1.150096 0.790244 +-0.211098 1.136818 0.819331 +3.803525 1.136818 0.819331 +-0.181375 1.150096 -3e-06 +-0.181374 1.150096 -0.79025 +3.694873 1.150096 -3e-06 +3.807053 1.150096 -0.788796 +3.807053 1.150096 0.788791 +3.694874 1.150096 0.790244 +3.694873 1.150096 -0.79025 +3.01389 1.150096 -0.79025 +1.072049 1.150096 -0.763248 +3.01389 1.150096 0.790244 +1.072048 1.150096 0.763242 +1.023038 1.182105 0.558915 +1.023039 1.182105 -0.558921 +0.39618 1.182105 -0.588804 +0.396179 1.182105 -3e-06 +0.396179 1.182105 0.588798 +2.674955 0.954267 0.475245 +2.574792 0.94108 0.475245 +2.775118 0.94108 0.475245 +2.868455 0.902418 0.475245 +2.481455 0.902418 0.475245 +2.948606 0.840917 0.475245 +2.397464 0.840917 0.475245 +3.010108 0.760766 0.475245 +2.320599 0.760766 0.475245 +3.048769 0.667429 0.475245 +2.270416 0.667429 0.475245 +3.083293 0.567266 0.475245 +2.234185 0.567266 0.475245 +3.102112 0.467103 0.475245 +2.193601 0.467103 0.475245 +2.140086 0.373766 0.475245 +2.140086 0.373766 -0.47525 +2.193601 0.467103 -0.47525 +3.102112 0.467103 -0.47525 +2.234185 0.567266 -0.47525 +3.083293 0.567266 -0.47525 +2.270416 0.667429 -0.47525 +3.048769 0.667429 -0.47525 +2.320599 0.760766 -0.47525 +3.010108 0.760766 -0.47525 +2.397464 0.840917 -0.47525 +2.948606 0.840917 -0.47525 +2.481455 0.902418 -0.47525 +2.868455 0.902418 -0.47525 +2.574792 0.94108 -0.47525 +2.775118 0.94108 -0.47525 +2.674955 0.954266 -0.47525 +0.472068 0.936801 -0.47525 +0.572231 0.949988 -0.47525 +0.672394 0.936801 -0.47525 +0.765731 0.89814 -0.47525 +0.365895 0.89814 -0.47525 +0.862996 0.836638 -0.47525 +0.277626 0.836638 -0.47525 +0.928777 0.756488 -0.47525 +0.196482 0.756487 -0.47525 +0.980274 0.663151 -0.47525 +0.133463 0.66315 -0.47525 +1.027633 0.562988 -0.47525 +0.080118 0.562987 -0.47525 +1.055009 0.462824 -0.47525 +0.048092 0.462824 -0.47525 +1.100696 0.369487 -0.47525 +1.055009 0.462824 0.475245 +0.048092 0.462824 0.475245 +1.100696 0.369487 0.475245 +0.080118 0.562987 0.475245 +1.027633 0.562988 0.475245 +0.133463 0.66315 0.475245 +0.980274 0.663151 0.475245 +0.196482 0.756487 0.475245 +0.928777 0.756488 0.475245 +0.277626 0.836638 0.475245 +0.862996 0.836638 0.475245 +0.365895 0.89814 0.475245 +0.765731 0.89814 0.475245 +0.472068 0.936801 0.475245 +0.672394 0.936801 0.475245 +0.572231 0.949988 0.475245 +0.765731 0.89814 -0.817022 +0.821417 0.862929 -0.821323 +3.102112 0.467103 -0.804521 +0.046042 0.444998 -0.721608 +0.049375 0.466836 -0.774268 +0.054779 0.483737 -0.805468 +-0.056825 0.483737 -0.720866 +0.043975 0.427018 -0.638638 +0.037362 0.369487 -0.47525 +0.04181 0.408184 -0.598942 +-0.056825 0.483737 0.72086 +0.043975 0.427018 0.638631 +0.045353 0.439003 0.703329 +0.037362 0.369487 0.475245 +0.04181 0.408184 0.598936 +0.040742 0.398892 0.475245 +2.385552 0.298261 0.475245 +2.284953 0.298261 0.475245 +3.126249 0.344645 0.475245 +3.012813 0.333993 0.475245 +0.463588 0.314887 -0.47525 +0.506774 0.308393 -0.47525 +0.612777 0.282122 -0.399168 +0.568937 0.299965 -0.47525 +0.463587 0.314887 0.475245 +0.506773 0.308394 0.475245 +0.612777 0.282122 0.399162 +0.568937 0.299965 0.475245 +0.15611 0.356363 -0.47525 +0.220496 0.342455 -0.47525 +0.220496 0.342455 0.475245 +0.15611 0.356363 0.475245 +2.392601 0.835846 -0.824631 +2.370815 0.813129 -0.827406 +0.365895 0.89814 -0.817022 +-0.098065 0.813129 -0.827405 +0.277626 0.836638 -0.824534 +0.300129 0.852317 -0.822619 +2.270416 0.667429 -0.82053 +0.007317 0.483737 -0.777117 +0.007316 0.483737 0.777111 +0.048092 0.462824 0.76457 +-0.144414 0.483737 -0.690407 +0.040852 0.399851 -0.491284 +-0.144415 0.483737 0.690401 +2.133425 0.356363 -0.755645 +1.106779 0.356363 -0.755644 +1.122358 0.34236 -0.634373 +3.190716 0.356363 0.755639 +3.12459 0.356363 0.755639 +2.10941 0.313221 0.475245 +2.115231 0.328429 0.584101 +2.10941 0.313221 0.529224 +0.636442 0.282122 0.417009 +0.533032 0.282122 -0.214155 +0.26632 0.332556 -0.47525 +0.533032 0.282122 0.214149 +0.266319 0.332556 0.475245 +3.73407 1.020682 -0.802054 +-0.200074 1.020682 -0.802054 +0.572231 0.949988 -0.810689 +2.255871 0.627219 -0.818633 +1.091824 0.387613 -0.769437 +3.388171 0.483737 -0.811862 +2.193601 0.467103 -0.804521 +2.133425 0.356363 0.755639 +2.140086 0.373766 0.763319 +2.10941 0.313221 -0.475251 +2.146555 0.298261 -0.475251 +2.10941 0.313221 -0.52923 +2.60574 0.295769 -0.47525 +2.426078 0.298504 -0.47525 +3.12459 0.356363 -0.755645 +3.190715 0.356363 -0.755645 +2.169038 0.424261 -0.785612 +1.106779 0.356363 0.755639 +2.146555 0.298261 0.475245 +2.760139 0.943052 -0.811536 +-0.200076 1.020682 0.802048 +0.572231 0.949988 0.810683 +3.734071 1.020682 0.802048 +1.031989 0.547049 -0.81485 +2.217556 0.526224 -0.813867 +2.234185 0.567266 -0.815804 +0.928777 0.756488 -0.824733 +2.117601 0.334623 -0.606457 +1.141675 0.300685 -0.483996 +0.196482 0.756487 -0.824733 +0.246242 0.805638 -0.827052 +2.674955 0.954267 -0.810166 +1.056381 0.460022 -0.801395 +0.766631 0.298261 0.475245 +0.080118 0.562987 -0.815602 +0.277626 0.836638 0.824528 +0.365895 0.89814 0.817016 +3.73407 0.813129 -0.827406 +2.969929 0.813129 -0.827406 +3.010108 0.760766 -0.824935 +2.426077 0.298504 0.475245 +3.126249 0.344645 0.712044 +2.969929 0.813129 0.8274 +3.734071 0.813129 0.8274 +2.775118 0.94108 0.811771 +2.868455 0.902418 0.816493 +1.01423 0.591334 -0.81694 +0.980274 0.663151 -0.820328 +-0.098066 0.813129 0.8274 +0.080118 0.562987 0.815596 +0.136898 0.356363 -0.388055 +0.136898 0.356363 0.388049 +2.385551 0.298261 -0.47525 +0.893885 0.298261 -0.47525 +0.472068 0.936801 0.812293 +2.674955 0.954267 0.81016 +3.083293 0.567266 0.815798 +3.388172 0.483737 0.811857 +3.010108 0.760766 0.824929 +3.048769 0.667429 0.820525 +3.126249 0.344645 -0.47525 +0.64018 0.298261 -0.47525 +0.64018 0.298261 0.475245 +1.142799 0.298261 0.475245 +0.672394 0.936801 0.812293 +2.574792 0.94108 0.811771 +0.821417 0.862929 0.821317 +0.196482 0.756487 0.824727 +0.253825 0.813129 0.8274 +0.133463 0.66315 0.820323 +0.882291 0.813129 -0.827406 +0.765731 0.89814 0.817016 +3.847925 1.020682 -0.800578 +3.73407 1.096986 -0.802054 +3.847925 1.096986 -0.800578 +3.734071 1.096986 0.802048 +-0.200076 1.096986 0.802048 +3.847925 1.020682 0.800573 +3.847925 1.096986 0.800573 +-0.40883 1.020682 -0.767728 +-0.551294 1.020682 -0.712156 +-0.40883 1.020682 0.767722 +-0.551294 1.020682 0.712151 +-0.551294 1.096986 0.712151 +-0.40883 1.096986 0.767722 +3.847925 0.813129 -0.825883 +3.847925 0.813129 0.825878 +-0.230326 0.813129 -0.791995 +-0.37279 0.813129 -0.734667 +-0.230327 0.813129 0.791989 +-0.37279 0.813129 0.734661 +3.469999 0.483737 -0.810369 +3.469999 0.483737 0.810363 +-0.188693 0.483737 -3e-06 +-0.188693 0.483737 -0.416925 +-0.188693 0.483737 0.416919 +3.25104 0.356363 -0.754254 +3.25104 0.356363 0.754249 +0.136898 0.356363 -3e-06 +0.533032 0.282122 -3e-06 +2.218326 0.282122 -0.417015 +2.251617 0.282122 -0.416248 +2.218326 0.282122 0.417009 +2.251617 0.282122 0.416242 +0.586681 0.282122 0.370268 +0.551046 0.282122 -0.295915 +0.551046 0.282122 0.295909 +3.797334 1.110263 -0.818345 +-0.216722 1.110263 -0.818345 +3.797335 1.110263 0.818339 +3.857627 1.110263 0.816834 +-0.762285 1.110263 -0.420254 +-0.762285 1.110263 -3e-06 +-0.762285 1.110263 0.420248 +-0.575076 1.110263 -0.726622 +-0.429718 1.110263 -0.783322 +-0.699425 1.110263 -0.580699 +-0.699425 1.110263 0.580693 +3.861809 1.136818 -0.817829 +3.861809 1.136818 0.817824 +-0.75732 1.136818 -0.420763 +-0.75732 1.136818 -3e-06 +-0.75732 1.136818 0.420757 +-0.569884 1.136818 -0.727502 +-0.42435 1.136818 -0.784271 +-0.569885 1.136818 0.727496 +-0.424351 1.136818 0.784265 +-0.694384 1.136818 -0.581403 +-0.694384 1.136818 0.581397 +0.054779 0.483737 0.805462 +3.11283 0.417121 0.782455 +2.174203 0.433269 0.789582 +2.193601 0.467103 0.804515 +2.200341 0.483737 0.811857 +1.056381 0.460022 0.80139 +2.320599 0.760766 0.824929 +0.928628 0.756668 0.824735 +0.980274 0.663151 0.820323 +3.101228 0.471808 0.806592 +1.039045 0.521235 0.813626 +2.234185 0.567266 0.815798 +3.048769 0.667429 -0.82053 +3.126249 0.344645 -0.71205 +0.472068 0.936801 -0.812299 +0.672394 0.936801 -0.812299 +2.481455 0.902418 -0.816499 +2.464866 0.890271 0.817977 +3.083293 0.567266 -0.815804 +2.320599 0.760766 -0.824935 +2.270416 0.667429 0.820525 +1.027221 0.563859 0.815637 +2.574792 0.94108 -0.811777 +2.868455 0.902418 -0.816499 +2.397464 0.840917 0.824005 +0.133463 0.66315 -0.820328 +0.882291 0.813129 0.8274 +2.370815 0.813129 0.8274 +0.313078 1.180154 -3e-06 +0.313077 1.180154 0.517027 +-0.041056 1.165353 0.530473 +-0.041056 1.165353 -3e-06 +-0.041055 1.165353 -0.530479 +0.313078 1.180154 -0.517033 +0.269387 1.146394 0.426845 +0.269387 1.146394 -3e-06 +0.002635 1.135244 -3e-06 +0.002635 1.135244 0.437946 +0.002635 1.135244 -0.437951 +0.269388 1.146394 -0.42685 +1.03445 1.232933 -0.624088 +1.03445 1.232933 0.624082 +1.089626 1.200616 0.763242 +1.089626 1.200616 -0.763248 +1.109737 1.246857 -0.758519 +1.109737 1.246856 0.758513 +1.072746 1.278795 0.642102 +1.072746 1.278795 -0.642107 +1.115773 1.307307 -0.630659 +1.115773 1.307307 0.630653 +1.129102 1.288017 0.761399 +1.129102 1.288017 -0.761405 +1.288895 1.150096 -0.776749 +1.072048 1.150096 -3e-06 +1.288894 1.150096 0.776743 +1.304294 1.207843 -0.776749 +1.304294 1.207843 0.776743 +1.327393 1.250191 -0.776749 +1.327393 1.250191 0.776743 +1.365891 1.296389 -0.776749 +1.365891 1.296389 0.776743 +1.415939 1.311789 -0.776749 +1.415939 1.311788 0.776743 +1.471868 1.311397 -0.753878 +1.471868 1.311397 0.753875 +1.413405 1.308179 0.739153 +1.413405 1.308179 -0.739156 +1.360344 1.30855 0.73691 +1.360344 1.308551 -0.736915 +1.312863 1.293941 0.761574 +1.312863 1.293941 -0.76158 +1.276339 1.250112 0.761574 +1.276339 1.250112 -0.76158 +1.254424 1.209936 0.761574 +1.254425 1.209936 -0.76158 +1.239815 1.15515 0.761574 +1.239815 1.15515 -0.76158 +1.765943 1.15515 0.785622 +1.765943 1.15515 -0.785628 +1.763779 1.308179 -0.749468 +1.763779 1.308179 0.749466 +numsurf 561 +SURF 0x10 +mat 1 +refs 3 +6 0.0 1.0 +296 0.0 0.0 +295 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +296 0.0 1.0 +6 0.0 0.0 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +6 0.0 1.0 +295 0.0 0.0 +8 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +9 0.0 1.0 +297 0.0 0.0 +296 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +10 0.0 1.0 +297 0.0 0.0 +9 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +9 0.0 1.0 +296 0.0 0.0 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +6 0.0 1.0 +12 0.0 0.0 +11 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +12 0.0 1.0 +6 0.0 0.0 +8 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +6 0.0 1.0 +11 0.0 0.0 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +9 0.0 1.0 +11 0.0 0.0 +13 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +7 0.0 1.0 +11 0.0 0.0 +9 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +9 0.0 1.0 +13 0.0 0.0 +10 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 1.0 +15 0.0 0.0 +14 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 1.0 +16 0.0 0.0 +15 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 1.0 +17 0.0 0.0 +16 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 1.0 +18 0.0 0.0 +17 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 1.0 +19 0.0 0.0 +18 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +21 0.0 1.0 +12 0.0 0.0 +8 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +22 0.0 1.0 +12 0.0 0.0 +21 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +23 0.0 1.0 +12 0.0 0.0 +22 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +24 0.0 1.0 +12 0.0 0.0 +23 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +25 0.0 1.0 +21 0.0 0.0 +8 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +22 0.0 1.0 +21 0.0 0.0 +25 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +23 0.0 1.0 +22 0.0 0.0 +25 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +24 0.0 1.0 +23 0.0 0.0 +25 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +26 0.0 0.0 +10 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +27 0.0 0.0 +26 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +28 0.0 0.0 +27 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +29 0.0 0.0 +28 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 1.0 +29 0.0 0.0 +30 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +27 0.0 1.0 +28 0.0 0.0 +30 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +26 0.0 1.0 +27 0.0 0.0 +30 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +10 0.0 1.0 +26 0.0 0.0 +30 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +31 0.0 0.0 +32 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +32 0.0 0.0 +33 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +33 0.0 0.0 +34 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +34 0.0 0.0 +35 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +35 0.0 0.0 +36 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +36 0.0 0.0 +37 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +37 0.0 0.0 +38 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +38 0.0 0.0 +39 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +40 0.0 1.0 +42 0.0 0.0 +41 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +43 0.0 1.0 +44 0.0 0.0 +45 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +46 0.0 0.0 +31 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +46 0.0 1.0 +47 0.0 0.0 +31 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +48 0.0 1.0 +50 0.0 0.0 +49 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +51 0.0 1.0 +50 0.0 0.0 +48 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +48 0.0 1.0 +49 0.0 0.0 +52 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +52 0.0 1.0 +42 0.0 0.0 +53 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +53 0.0 1.0 +42 0.0 0.0 +40 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +54 0.0 1.0 +41 0.0 0.0 +47 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +51 0.0 1.0 +55 0.0 0.0 +45 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +55 0.0 1.0 +43 0.0 0.0 +45 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +57 0.0 1.0 +58 0.0 0.0 +59 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +57 0.0 1.0 +59 0.0 0.0 +60 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +57 0.0 1.0 +60 0.0 0.0 +61 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +48 0.0 1.0 +52 0.0 0.0 +53 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +48 0.0 1.0 +53 0.0 0.0 +55 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +51 0.0 1.0 +48 0.0 0.0 +55 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +62 0.0 1.0 +63 0.0 0.0 +64 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +64 0.0 1.0 +63 0.0 0.0 +65 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +63 0.0 1.0 +66 0.0 0.0 +65 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +65 0.0 1.0 +66 0.0 0.0 +67 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +66 0.0 1.0 +68 0.0 0.0 +67 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +69 0.0 1.0 +67 0.0 0.0 +68 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +68 0.0 1.0 +70 0.0 0.0 +69 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +69 0.0 1.0 +70 0.0 0.0 +71 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +70 0.0 1.0 +72 0.0 0.0 +71 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +71 0.0 1.0 +72 0.0 0.0 +73 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +72 0.0 1.0 +74 0.0 0.0 +73 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +73 0.0 1.0 +74 0.0 0.0 +75 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +74 0.0 1.0 +76 0.0 0.0 +75 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +75 0.0 1.0 +76 0.0 0.0 +144 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +76 0.0 1.0 +77 0.0 0.0 +144 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +78 0.0 1.0 +79 0.0 0.0 +244 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +79 0.0 1.0 +80 0.0 0.0 +244 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +79 0.0 1.0 +81 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +81 0.0 1.0 +82 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +81 0.0 1.0 +83 0.0 0.0 +82 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +83 0.0 1.0 +84 0.0 0.0 +82 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +83 0.0 1.0 +85 0.0 0.0 +84 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +85 0.0 1.0 +86 0.0 0.0 +84 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +85 0.0 1.0 +87 0.0 0.0 +86 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +88 0.0 1.0 +86 0.0 0.0 +87 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +87 0.0 1.0 +89 0.0 0.0 +88 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +89 0.0 1.0 +90 0.0 0.0 +88 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +89 0.0 1.0 +91 0.0 0.0 +90 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +91 0.0 1.0 +92 0.0 0.0 +90 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +91 0.0 1.0 +93 0.0 0.0 +92 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +94 0.0 1.0 +95 0.0 0.0 +96 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +94 0.0 1.0 +96 0.0 0.0 +97 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +98 0.0 1.0 +94 0.0 0.0 +97 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +98 0.0 1.0 +97 0.0 0.0 +99 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +100 0.0 1.0 +98 0.0 0.0 +99 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +99 0.0 1.0 +101 0.0 0.0 +100 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +102 0.0 1.0 +100 0.0 0.0 +101 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +102 0.0 1.0 +101 0.0 0.0 +103 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +104 0.0 1.0 +102 0.0 0.0 +103 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +104 0.0 1.0 +103 0.0 0.0 +105 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +106 0.0 1.0 +104 0.0 0.0 +105 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +106 0.0 1.0 +105 0.0 0.0 +107 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +106 0.0 0.0 +107 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +107 0.0 0.0 +109 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +110 0.0 1.0 +111 0.0 0.0 +112 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +113 0.0 1.0 +111 0.0 0.0 +110 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +114 0.0 1.0 +113 0.0 0.0 +110 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +115 0.0 1.0 +113 0.0 0.0 +114 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +116 0.0 1.0 +115 0.0 0.0 +114 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +117 0.0 1.0 +115 0.0 0.0 +116 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +117 0.0 0.0 +116 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +119 0.0 1.0 +117 0.0 0.0 +118 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +120 0.0 0.0 +119 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +121 0.0 1.0 +119 0.0 0.0 +120 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +122 0.0 1.0 +121 0.0 0.0 +120 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +123 0.0 1.0 +121 0.0 0.0 +122 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +124 0.0 1.0 +123 0.0 0.0 +122 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +125 0.0 1.0 +123 0.0 0.0 +124 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +97 0.0 1.0 +126 0.0 0.0 +127 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +132 0.0 1.0 +129 0.0 0.0 +133 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +134 0.0 1.0 +129 0.0 0.0 +135 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +129 0.0 1.0 +133 0.0 0.0 +135 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +136 0.0 1.0 +137 0.0 0.0 +138 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +138 0.0 1.0 +139 0.0 0.0 +140 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +134 0.0 1.0 +154 0.0 0.0 +155 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +139 0.0 1.0 +156 0.0 0.0 +157 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +160 0.0 1.0 +98 0.0 0.0 +100 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +161 0.0 1.0 +163 0.0 0.0 +162 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +100 0.0 1.0 +162 0.0 0.0 +163 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +129 0.0 1.0 +165 0.0 0.0 +130 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +130 0.0 1.0 +108 0.0 0.0 +129 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +138 0.0 1.0 +167 0.0 0.0 +166 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +138 0.0 1.0 +111 0.0 0.0 +167 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +168 0.0 1.0 +135 0.0 0.0 +169 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +134 0.0 1.0 +135 0.0 0.0 +169 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +170 0.0 1.0 +141 0.0 0.0 +140 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +140 0.0 1.0 +139 0.0 0.0 +141 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +171 0.0 1.0 +173 0.0 0.0 +172 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +109 0.0 1.0 +172 0.0 0.0 +173 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +176 0.0 1.0 +177 0.0 0.0 +178 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +134 0.0 1.0 +155 0.0 0.0 +181 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +139 0.0 1.0 +183 0.0 0.0 +156 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +184 0.0 1.0 +186 0.0 0.0 +185 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +81 0.0 1.0 +209 0.0 0.0 +187 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +190 0.0 1.0 +79 0.0 0.0 +200 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +191 0.0 1.0 +77 0.0 0.0 +192 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +193 0.0 1.0 +194 0.0 0.0 +195 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +78 0.0 1.0 +196 0.0 0.0 +197 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +244 0.0 1.0 +80 0.0 0.0 +198 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +172 0.0 1.0 +200 0.0 0.0 +171 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +78 0.0 1.0 +171 0.0 0.0 +200 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +179 0.0 1.0 +143 0.0 0.0 +202 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +178 0.0 1.0 +179 0.0 0.0 +202 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +176 0.0 1.0 +202 0.0 0.0 +143 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +202 0.0 1.0 +176 0.0 0.0 +178 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +158 0.0 1.0 +254 0.0 0.0 +127 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +204 0.0 1.0 +205 0.0 0.0 +206 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +210 0.0 1.0 +101 0.0 0.0 +99 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +211 0.0 1.0 +193 0.0 0.0 +195 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +161 0.0 1.0 +214 0.0 0.0 +213 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +102 0.0 1.0 +213 0.0 0.0 +214 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +217 0.0 1.0 +246 0.0 0.0 +179 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +217 0.0 1.0 +156 0.0 0.0 +246 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +218 0.0 1.0 +106 0.0 0.0 +108 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +204 0.0 1.0 +219 0.0 0.0 +220 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +221 0.0 1.0 +223 0.0 0.0 +222 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +175 0.0 1.0 +225 0.0 0.0 +174 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +77 0.0 1.0 +142 0.0 0.0 +224 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +163 0.0 1.0 +161 0.0 0.0 +160 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +228 0.0 1.0 +229 0.0 0.0 +206 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +230 0.0 1.0 +207 0.0 0.0 +103 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +159 0.0 1.0 +230 0.0 0.0 +231 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +103 0.0 1.0 +231 0.0 0.0 +230 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +232 0.0 1.0 +313 0.0 0.0 +233 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +154 0.0 1.0 +234 0.0 0.0 +169 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +134 0.0 1.0 +109 0.0 0.0 +154 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +169 0.0 1.0 +109 0.0 0.0 +134 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +157 0.0 1.0 +141 0.0 0.0 +235 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +112 0.0 1.0 +139 0.0 0.0 +157 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +141 0.0 1.0 +139 0.0 0.0 +112 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +199 0.0 1.0 +198 0.0 0.0 +128 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +237 0.0 1.0 +148 0.0 0.0 +245 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +237 0.0 1.0 +245 0.0 0.0 +155 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +214 0.0 1.0 +161 0.0 0.0 +162 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +204 0.0 1.0 +220 0.0 0.0 +238 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +239 0.0 1.0 +228 0.0 0.0 +206 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +240 0.0 1.0 +322 0.0 0.0 +241 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +227 0.0 1.0 +242 0.0 0.0 +243 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +200 0.0 1.0 +188 0.0 0.0 +216 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +145 0.0 1.0 +196 0.0 0.0 +244 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +245 0.0 1.0 +148 0.0 0.0 +149 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +212 0.0 1.0 +148 0.0 0.0 +237 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +212 0.0 1.0 +237 0.0 0.0 +109 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +246 0.0 1.0 +153 0.0 0.0 +179 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +247 0.0 1.0 +217 0.0 0.0 +179 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +112 0.0 1.0 +217 0.0 0.0 +247 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +238 0.0 1.0 +205 0.0 0.0 +204 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +206 0.0 1.0 +205 0.0 0.0 +248 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +249 0.0 1.0 +239 0.0 0.0 +250 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +250 0.0 1.0 +330 0.0 0.0 +249 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +251 0.0 1.0 +252 0.0 0.0 +232 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +232 0.0 1.0 +233 0.0 0.0 +253 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +254 0.0 1.0 +159 0.0 0.0 +210 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +184 0.0 1.0 +203 0.0 0.0 +215 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +248 0.0 1.0 +255 0.0 0.0 +206 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +253 0.0 1.0 +251 0.0 0.0 +232 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +226 0.0 1.0 +242 0.0 0.0 +227 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +131 0.0 1.0 +161 0.0 0.0 +218 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +256 0.0 1.0 +184 0.0 0.0 +257 1.0 0.0 +258 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +185 0.0 1.0 +292 0.0 0.0 +257 1.0 0.0 +184 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +204 0.0 1.0 +206 0.0 0.0 +259 1.0 0.0 +260 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +261 0.0 1.0 +262 0.0 0.0 +259 1.0 0.0 +206 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +256 0.0 1.0 +258 0.0 0.0 +262 1.0 0.0 +261 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +263 0.0 1.0 +264 0.0 0.0 +298 1.0 0.0 +299 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +185 0.0 1.0 +263 0.0 0.0 +299 1.0 0.0 +292 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +265 0.0 1.0 +268 0.0 0.0 +267 1.0 0.0 +266 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +204 0.0 1.0 +260 0.0 0.0 +268 1.0 0.0 +265 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +25 0.0 1.0 +300 0.0 0.0 +298 1.0 0.0 +264 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +8 0.0 1.0 +295 0.0 0.0 +300 1.0 0.0 +25 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +30 0.0 1.0 +266 0.0 0.0 +267 1.0 0.0 +301 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +10 0.0 1.0 +30 0.0 0.0 +301 1.0 0.0 +297 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +184 0.0 1.0 +256 0.0 0.0 +269 1.0 0.0 +221 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +206 0.0 1.0 +227 0.0 0.0 +270 1.0 0.0 +261 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +261 0.0 1.0 +270 0.0 0.0 +269 1.0 0.0 +256 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +264 0.0 1.0 +263 0.0 0.0 +271 1.0 0.0 +272 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +263 0.0 1.0 +185 0.0 0.0 +161 1.0 0.0 +271 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +266 0.0 1.0 +274 0.0 0.0 +273 1.0 0.0 +265 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +265 0.0 1.0 +273 0.0 0.0 +232 1.0 0.0 +204 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +264 0.0 1.0 +272 0.0 0.0 +24 1.0 0.0 +25 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +266 0.0 1.0 +30 0.0 0.0 +29 1.0 0.0 +274 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +221 0.0 1.0 +269 0.0 0.0 +275 1.0 0.0 +189 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +227 0.0 1.0 +241 0.0 0.0 +276 1.0 0.0 +270 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +270 0.0 1.0 +276 0.0 0.0 +275 1.0 0.0 +269 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +12 0.0 1.0 +278 0.0 0.0 +277 1.0 0.0 +11 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +11 0.0 1.0 +277 0.0 0.0 +279 1.0 0.0 +13 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +272 0.0 1.0 +271 0.0 0.0 +165 1.0 0.0 +132 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +274 0.0 1.0 +136 0.0 0.0 +166 1.0 0.0 +273 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +272 0.0 1.0 +132 0.0 0.0 +168 1.0 0.0 +24 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +24 0.0 1.0 +168 0.0 0.0 +278 1.0 0.0 +12 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +274 0.0 1.0 +29 0.0 0.0 +170 1.0 0.0 +136 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +29 0.0 1.0 +13 0.0 0.0 +279 1.0 0.0 +170 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +189 0.0 1.0 +275 0.0 0.0 +280 1.0 0.0 +199 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +241 0.0 1.0 +174 0.0 0.0 +281 1.0 0.0 +276 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +276 0.0 1.0 +281 0.0 0.0 +280 1.0 0.0 +275 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +278 0.0 1.0 +234 0.0 0.0 +282 1.0 0.0 +277 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +277 0.0 1.0 +282 0.0 0.0 +235 1.0 0.0 +279 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +234 0.0 1.0 +180 0.0 0.0 +283 1.0 0.0 +282 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +282 0.0 1.0 +283 0.0 0.0 +182 1.0 0.0 +235 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +284 0.0 1.0 +285 0.0 0.0 +14 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +284 0.0 1.0 +14 0.0 0.0 +15 1.0 0.0 +148 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +286 0.0 1.0 +179 0.0 0.0 +19 1.0 0.0 +20 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +286 0.0 1.0 +20 1.0 0.0 +287 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +287 0.0 1.0 +20 0.0 0.0 +14 1.0 0.0 +285 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +180 0.0 1.0 +16 0.0 0.0 +17 1.0 0.0 +283 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +283 0.0 1.0 +17 0.0 0.0 +18 1.0 0.0 +182 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +288 0.0 1.0 +19 1.0 0.0 +152 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +152 0.0 1.0 +19 1.0 0.0 +179 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +148 0.0 1.0 +15 1.0 0.0 +289 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +289 0.0 1.0 +15 0.0 0.0 +16 1.0 0.0 +180 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +288 0.0 1.0 +290 0.0 0.0 +18 1.0 0.0 +19 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +290 0.0 1.0 +182 0.0 0.0 +18 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +258 0.0 1.0 +257 0.0 0.0 +291 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +292 0.0 1.0 +291 1.0 0.0 +257 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +260 0.0 1.0 +259 0.0 0.0 +293 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +262 0.0 1.0 +294 0.0 0.0 +293 1.0 0.0 +259 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +258 0.0 1.0 +294 1.0 0.0 +262 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +258 0.0 1.0 +291 0.0 0.0 +42 1.0 0.0 +302 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +292 0.0 1.0 +41 0.0 0.0 +42 1.0 0.0 +291 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +260 0.0 1.0 +293 0.0 0.0 +45 1.0 0.0 +44 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +294 0.0 1.0 +303 0.0 0.0 +45 1.0 0.0 +293 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +258 0.0 1.0 +302 0.0 0.0 +303 1.0 0.0 +294 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +296 0.0 1.0 +305 0.0 0.0 +304 1.0 0.0 +295 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +297 0.0 1.0 +306 0.0 0.0 +305 1.0 0.0 +296 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +299 0.0 1.0 +298 0.0 0.0 +307 1.0 0.0 +308 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +292 0.0 1.0 +299 0.0 0.0 +308 1.0 0.0 +41 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +268 0.0 1.0 +310 0.0 0.0 +309 1.0 0.0 +267 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +260 0.0 1.0 +44 0.0 0.0 +310 1.0 0.0 +268 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +300 0.0 1.0 +311 0.0 0.0 +307 1.0 0.0 +298 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +295 0.0 1.0 +304 0.0 0.0 +311 1.0 0.0 +300 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +301 0.0 1.0 +267 0.0 0.0 +309 1.0 0.0 +312 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +297 0.0 1.0 +301 0.0 0.0 +312 1.0 0.0 +306 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +302 0.0 1.0 +42 0.0 0.0 +52 1.0 0.0 +49 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +303 0.0 1.0 +50 0.0 0.0 +51 1.0 0.0 +45 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +302 0.0 1.0 +49 0.0 0.0 +50 1.0 0.0 +303 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +305 0.0 1.0 +35 0.0 0.0 +34 1.0 0.0 +304 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +306 0.0 1.0 +36 0.0 0.0 +35 1.0 0.0 +305 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +308 0.0 1.0 +307 0.0 0.0 +32 1.0 0.0 +31 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +41 0.0 1.0 +308 0.0 0.0 +31 1.0 0.0 +47 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +310 0.0 1.0 +39 0.0 0.0 +38 1.0 0.0 +309 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +39 1.0 0.0 +310 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +311 0.0 1.0 +33 0.0 0.0 +32 1.0 0.0 +307 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +304 0.0 1.0 +34 0.0 0.0 +33 1.0 0.0 +311 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +312 0.0 1.0 +309 0.0 0.0 +38 1.0 0.0 +37 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +306 0.0 1.0 +312 0.0 0.0 +37 1.0 0.0 +36 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +47 0.0 1.0 +59 0.0 0.0 +58 1.0 0.0 +54 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +44 0.0 1.0 +56 0.0 0.0 +57 1.0 0.0 +61 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +184 0.0 1.0 +221 0.0 0.0 +222 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +184 0.0 1.0 +215 0.0 0.0 +127 1.0 0.0 +126 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +165 0.0 1.0 +271 0.0 0.0 +131 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +161 0.0 1.0 +131 1.0 0.0 +271 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +130 0.0 0.0 +131 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +166 0.0 1.0 +313 1.0 0.0 +273 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +232 0.0 1.0 +273 0.0 0.0 +313 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +189 0.0 1.0 +199 0.0 0.0 +128 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +82 0.0 1.0 +128 1.0 0.0 +80 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +132 0.0 1.0 +165 0.0 0.0 +129 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +133 0.0 0.0 +129 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +165 0.0 1.0 +131 0.0 0.0 +130 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +136 0.0 1.0 +138 1.0 0.0 +166 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +111 0.0 1.0 +138 1.0 0.0 +137 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +166 0.0 1.0 +167 1.0 0.0 +313 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +132 0.0 1.0 +133 0.0 0.0 +135 1.0 0.0 +168 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +234 0.0 1.0 +278 0.0 0.0 +169 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +168 0.0 1.0 +169 1.0 0.0 +278 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +109 0.0 0.0 +169 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +136 0.0 1.0 +170 0.0 0.0 +140 1.0 0.0 +137 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +111 0.0 1.0 +137 0.0 0.0 +140 1.0 0.0 +141 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +235 0.0 1.0 +141 1.0 0.0 +279 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +170 0.0 1.0 +279 0.0 0.0 +141 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +111 0.0 1.0 +141 1.0 0.0 +112 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +286 0.0 1.0 +142 0.0 0.0 +143 1.0 0.0 +179 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +287 0.0 1.0 +224 0.0 0.0 +142 1.0 0.0 +286 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +77 0.0 1.0 +176 0.0 0.0 +143 1.0 0.0 +142 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +174 0.0 1.0 +225 1.0 0.0 +281 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +144 0.0 1.0 +225 1.0 0.0 +175 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +280 0.0 1.0 +144 0.0 0.0 +145 1.0 0.0 +244 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +281 0.0 1.0 +225 0.0 0.0 +144 1.0 0.0 +280 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +144 0.0 1.0 +77 0.0 0.0 +145 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +148 0.0 1.0 +146 0.0 0.0 +147 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +289 0.0 1.0 +181 0.0 0.0 +146 1.0 0.0 +148 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +148 0.0 1.0 +147 0.0 0.0 +149 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +288 0.0 1.0 +152 0.0 0.0 +151 1.0 0.0 +150 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +290 0.0 1.0 +288 0.0 0.0 +150 1.0 0.0 +183 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +152 0.0 1.0 +179 0.0 0.0 +153 1.0 0.0 +151 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +180 0.0 1.0 +155 0.0 0.0 +181 1.0 0.0 +289 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +234 0.0 1.0 +154 0.0 0.0 +155 1.0 0.0 +180 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +109 0.0 1.0 +237 0.0 0.0 +155 1.0 0.0 +154 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +182 0.0 1.0 +290 0.0 0.0 +183 1.0 0.0 +156 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +235 0.0 1.0 +182 0.0 0.0 +156 1.0 0.0 +157 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +112 0.0 1.0 +157 0.0 0.0 +156 1.0 0.0 +217 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +162 0.0 1.0 +100 0.0 0.0 +102 1.0 0.0 +214 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +83 0.0 1.0 +81 0.0 0.0 +187 1.0 0.0 +164 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +227 0.0 1.0 +243 0.0 0.0 +240 1.0 0.0 +241 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +79 0.0 1.0 +78 0.0 0.0 +200 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +79 0.0 1.0 +190 1.0 0.0 +208 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +174 0.0 1.0 +241 0.0 0.0 +314 1.0 0.0 +175 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +75 0.0 1.0 +144 0.0 0.0 +175 1.0 0.0 +314 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +315 0.0 1.0 +316 0.0 0.0 +317 1.0 0.0 +318 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +285 0.0 1.0 +284 0.0 0.0 +236 1.0 0.0 +197 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +148 0.0 1.0 +194 0.0 0.0 +236 1.0 0.0 +284 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +78 0.0 1.0 +197 0.0 0.0 +236 1.0 0.0 +193 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +179 0.0 1.0 +178 0.0 0.0 +177 1.0 0.0 +247 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +285 0.0 1.0 +145 0.0 0.0 +224 1.0 0.0 +287 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +147 0.0 1.0 +245 0.0 0.0 +149 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +151 0.0 1.0 +153 1.0 0.0 +246 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +164 0.0 1.0 +187 0.0 0.0 +207 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +105 0.0 1.0 +103 0.0 0.0 +207 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +107 0.0 1.0 +188 1.0 0.0 +109 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +209 0.0 1.0 +208 0.0 0.0 +190 1.0 0.0 +216 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +200 0.0 1.0 +216 0.0 0.0 +190 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +105 0.0 1.0 +216 1.0 0.0 +107 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +191 0.0 1.0 +192 0.0 0.0 +201 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +148 0.0 1.0 +212 0.0 0.0 +195 1.0 0.0 +194 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +78 0.0 1.0 +244 1.0 0.0 +196 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +285 0.0 1.0 +197 0.0 0.0 +196 1.0 0.0 +145 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +172 0.0 1.0 +188 0.0 0.0 +200 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +99 0.0 1.0 +97 0.0 0.0 +127 1.0 0.0 +254 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +92 0.0 1.0 +93 0.0 0.0 +203 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +206 0.0 1.0 +255 0.0 0.0 +250 1.0 0.0 +239 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +209 0.0 1.0 +216 0.0 0.0 +207 1.0 0.0 +187 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +81 0.0 1.0 +79 0.0 0.0 +208 1.0 0.0 +209 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +181 0.0 1.0 +155 0.0 0.0 +245 1.0 0.0 +147 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +183 0.0 1.0 +151 0.0 0.0 +246 1.0 0.0 +156 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +195 0.0 1.0 +212 1.0 0.0 +211 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +134 0.0 1.0 +181 0.0 0.0 +147 1.0 0.0 +146 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +151 0.0 1.0 +183 0.0 0.0 +139 1.0 0.0 +150 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +333 0.0 1.0 +319 0.0 0.0 +320 1.0 0.0 +321 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +241 0.0 1.0 +322 1.0 0.0 +314 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +323 0.0 1.0 +318 0.0 0.0 +317 1.0 0.0 +324 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +206 0.0 1.0 +229 0.0 0.0 +226 1.0 0.0 +227 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +204 0.0 1.0 +232 0.0 0.0 +252 1.0 0.0 +219 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +189 0.0 1.0 +325 0.0 0.0 +223 1.0 0.0 +221 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +76 0.0 1.0 +315 0.0 0.0 +192 1.0 0.0 +77 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +199 0.0 1.0 +280 0.0 0.0 +326 1.0 0.0 +198 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +78 0.0 1.0 +193 0.0 0.0 +211 1.0 0.0 +171 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +161 0.0 1.0 +185 0.0 0.0 +327 1.0 0.0 +160 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +98 0.0 1.0 +160 0.0 0.0 +327 1.0 0.0 +94 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +328 0.0 1.0 +184 0.0 0.0 +126 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +97 0.0 1.0 +96 0.0 0.0 +328 1.0 0.0 +126 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +127 0.0 1.0 +329 0.0 0.0 +158 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +339 0.0 1.0 +330 1.0 0.0 +250 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +325 0.0 1.0 +189 0.0 0.0 +331 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +230 0.0 1.0 +332 0.0 0.0 +164 1.0 0.0 +207 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +323 0.0 1.0 +324 0.0 0.0 +333 1.0 0.0 +334 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +333 0.0 1.0 +321 1.0 0.0 +334 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +112 0.0 1.0 +201 0.0 0.0 +318 1.0 0.0 +110 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +192 0.0 1.0 +315 0.0 0.0 +318 1.0 0.0 +201 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +159 0.0 1.0 +254 1.0 0.0 +158 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +186 0.0 1.0 +184 0.0 0.0 +328 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +96 0.0 1.0 +95 0.0 0.0 +186 1.0 0.0 +328 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +327 0.0 1.0 +185 0.0 0.0 +186 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +95 0.0 1.0 +94 0.0 0.0 +327 1.0 0.0 +186 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +329 0.0 1.0 +127 0.0 0.0 +335 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +89 0.0 1.0 +329 0.0 0.0 +335 1.0 0.0 +91 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +203 0.0 1.0 +184 0.0 0.0 +336 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +337 0.0 1.0 +330 0.0 0.0 +339 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +280 0.0 1.0 +244 0.0 0.0 +326 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +198 0.0 1.0 +326 0.0 0.0 +244 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +109 0.0 1.0 +173 0.0 0.0 +212 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +211 0.0 1.0 +212 0.0 0.0 +173 1.0 0.0 +171 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +191 0.0 1.0 +201 0.0 0.0 +247 1.0 0.0 +177 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +201 0.0 1.0 +112 0.0 0.0 +247 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +77 0.0 1.0 +191 0.0 0.0 +177 1.0 0.0 +176 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +335 0.0 1.0 +127 0.0 0.0 +215 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +91 0.0 1.0 +335 0.0 0.0 +215 1.0 0.0 +93 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +336 0.0 1.0 +184 0.0 0.0 +222 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +230 0.0 1.0 +159 0.0 0.0 +332 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +210 0.0 1.0 +159 0.0 0.0 +231 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +101 0.0 1.0 +210 0.0 0.0 +231 1.0 0.0 +103 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +331 0.0 1.0 +189 0.0 0.0 +128 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +338 0.0 1.0 +161 0.0 0.0 +213 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +102 0.0 1.0 +104 0.0 0.0 +338 1.0 0.0 +213 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +337 0.0 1.0 +339 1.0 0.0 +340 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +340 0.0 1.0 +339 0.0 0.0 +320 1.0 0.0 +319 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +218 0.0 1.0 +161 0.0 0.0 +338 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +104 0.0 1.0 +106 0.0 0.0 +218 1.0 0.0 +338 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +321 0.0 0.0 +320 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +334 0.0 0.0 +321 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +323 0.0 0.0 +334 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +318 0.0 0.0 +323 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +110 0.0 0.0 +318 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +114 0.0 0.0 +110 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +116 0.0 0.0 +114 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +320 0.0 0.0 +339 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +118 0.0 1.0 +339 0.0 0.0 +120 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +120 0.0 1.0 +339 0.0 0.0 +250 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +120 0.0 1.0 +250 0.0 0.0 +255 1.0 0.0 +122 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +122 0.0 1.0 +255 0.0 0.0 +248 1.0 0.0 +124 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +124 0.0 1.0 +248 0.0 0.0 +205 1.0 0.0 +125 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +205 0.0 1.0 +238 0.0 0.0 +123 1.0 0.0 +125 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +121 0.0 1.0 +123 0.0 0.0 +238 1.0 0.0 +220 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +119 0.0 1.0 +121 0.0 0.0 +220 1.0 0.0 +219 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +119 0.0 1.0 +219 0.0 0.0 +252 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +117 0.0 1.0 +119 0.0 0.0 +252 1.0 0.0 +251 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +115 0.0 1.0 +117 0.0 0.0 +251 1.0 0.0 +253 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +113 0.0 1.0 +115 0.0 0.0 +253 1.0 0.0 +233 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +111 0.0 1.0 +113 0.0 0.0 +233 1.0 0.0 +313 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +111 0.0 1.0 +313 0.0 0.0 +167 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +99 0.0 1.0 +254 0.0 0.0 +210 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +105 0.0 1.0 +207 0.0 0.0 +216 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +107 0.0 1.0 +216 0.0 0.0 +188 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +109 0.0 1.0 +188 0.0 0.0 +172 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +100 0.0 1.0 +163 0.0 0.0 +160 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +131 0.0 0.0 +218 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +135 0.0 0.0 +133 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +108 0.0 1.0 +169 0.0 0.0 +135 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +61 0.0 1.0 +60 0.0 0.0 +341 1.0 0.0 +342 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +46 0.0 1.0 +44 0.0 0.0 +343 1.0 0.0 +344 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +44 0.0 1.0 +61 0.0 0.0 +342 1.0 0.0 +343 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +47 0.0 1.0 +46 0.0 0.0 +344 1.0 0.0 +345 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +59 0.0 1.0 +47 0.0 0.0 +345 1.0 0.0 +346 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +60 0.0 1.0 +59 0.0 0.0 +346 1.0 0.0 +341 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +342 0.0 1.0 +341 0.0 0.0 +348 1.0 0.0 +347 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +344 0.0 1.0 +343 0.0 0.0 +350 1.0 0.0 +349 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +343 0.0 1.0 +342 0.0 0.0 +347 1.0 0.0 +350 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +345 0.0 1.0 +344 0.0 0.0 +349 1.0 0.0 +351 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +346 0.0 1.0 +345 0.0 0.0 +351 1.0 0.0 +352 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +341 0.0 1.0 +346 0.0 0.0 +352 1.0 0.0 +348 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +347 0.0 1.0 +349 1.0 0.0 +350 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +348 0.0 1.0 +349 1.0 0.0 +347 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +352 0.0 1.0 +349 1.0 0.0 +348 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +352 0.0 1.0 +351 1.0 0.0 +349 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +54 0.0 1.0 +58 0.0 0.0 +353 1.0 0.0 +356 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +57 0.0 1.0 +56 0.0 0.0 +355 1.0 0.0 +354 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +58 0.0 1.0 +57 0.0 0.0 +354 1.0 0.0 +353 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +353 0.0 1.0 +354 0.0 0.0 +359 1.0 0.0 +360 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +355 0.0 1.0 +356 0.0 0.0 +357 1.0 0.0 +358 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +354 0.0 1.0 +355 0.0 0.0 +358 1.0 0.0 +359 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +356 0.0 1.0 +353 0.0 0.0 +360 1.0 0.0 +357 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +357 0.0 1.0 +360 0.0 0.0 +361 1.0 0.0 +364 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +359 0.0 1.0 +358 0.0 0.0 +363 1.0 0.0 +362 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +358 0.0 1.0 +357 0.0 0.0 +364 1.0 0.0 +363 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +360 0.0 1.0 +359 0.0 0.0 +362 1.0 0.0 +361 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +363 0.0 1.0 +364 0.0 0.0 +361 1.0 0.0 +362 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +2 0.0 1.0 +3 0.0 0.0 +361 1.0 0.0 +362 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +1 1.0 1.0 +55 1.0 0.0 +53 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +1 0.0 1.0 +4 0.0 0.0 +43 1.0 0.0 +55 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +53 1.0 1.0 +40 1.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +54 1.0 0.0 +365 0.500000834465 0.499999493361 +41 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +365 0.500000834465 0.499999493361 +40 0.0 1.0 +41 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +43 0.0 1.0 +367 0.0 0.5 +44 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +367 0.0 0.5 +56 0.0 0.0 +44 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +366 0.0 0.499999970198 +356 1.0 0.0 +355 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +56 0.0 1.0 +366 0.0 0.499999970198 +355 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +366 0.0 0.499999970198 +54 0.0 0.0 +356 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +363 0.4999987185 0.500001311302 +2 0.0 1.0 +362 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +377 0.0 1.0 +2 0.0 0.0 +363 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +373 0.0 1.0 +377 0.0 0.0 +363 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +371 0.0 1.0 +373 0.0 0.0 +363 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +371 0.0 1.0 +363 0.0 0.0 +358 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +369 0.0 1.0 +371 0.0 0.0 +358 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +369 0.0 1.0 +358 0.0 0.0 +355 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +367 0.0 1.0 +369 0.0 0.0 +355 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +367 0.0 1.0 +355 0.0 0.0 +56 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +376 0.0 1.0 +364 1.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +372 0.0 1.0 +364 1.0 0.0 +376 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +370 0.0 1.0 +364 1.0 0.0 +372 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +370 0.0 1.0 +357 1.0 0.0 +364 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +368 0.0 1.0 +357 1.0 0.0 +370 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +368 0.0 1.0 +356 1.0 0.0 +357 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +365 0.0 1.0 +356 1.0 0.0 +368 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +365 0.0 1.0 +54 1.0 0.0 +356 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +372 0.0 1.0 +376 0.0 0.0 +379 1.0 0.0 +383 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +376 0.0 1.0 +374 0.0 0.0 +381 1.0 0.0 +379 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +373 0.0 1.0 +377 0.0 0.0 +378 1.0 0.0 +382 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +377 0.0 1.0 +375 0.0 0.0 +380 1.0 0.0 +378 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +375 0.0 1.0 +373 0.0 0.0 +382 1.0 0.0 +380 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +374 0.0 1.0 +372 0.0 0.0 +383 1.0 0.0 +381 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +371 0.0 1.0 +373 0.0 0.0 +382 1.0 0.0 +384 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +372 0.0 1.0 +370 0.0 0.0 +385 1.0 0.0 +383 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +371 0.0 1.0 +384 1.0 1.0 +386 1.0 0.0 +369 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +370 0.0 1.0 +368 0.0 0.0 +387 1.0 0.0 +385 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +367 0.0 1.0 +369 0.0 0.0 +386 1.0 0.0 +388 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +365 0.0 1.0 +389 1.0 1.0 +387 1.0 0.0 +368 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +367 0.0 1.0 +43 0.0 0.5 +390 1.0 0.0 +388 8.7550437558e-38 3.38802131173e-38 +SURF 0x10 +mat 1 +refs 4 +365 0.500000834465 0.499999493361 +389 5.43019522092e-38 2.99559496354e-38 +391 0.0 0.0 +40 0.0 1.0 +SURF 0x10 +mat 1 +refs 4 +5 0.0 1.0 +40 1.0 1.0 +391 1.0 0.0 +392 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +4 0.0 1.0 +393 1.0 1.0 +390 1.0 0.0 +43 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +378 0.0 1.0 +380 0.0 0.0 +382 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +379 0.0 1.0 +381 0.0 0.0 +383 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +3 0.0 1.0 +364 1.0 0.0 +361 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +83 0.0 1.0 +164 0.0 0.0 +332 1.0 0.0 +85 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +85 0.0 1.0 +332 1.0 1.0 +159 1.0 0.0 +87 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +87 0.0 1.0 +159 1.0 0.0 +158 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +89 0.0 1.0 +87 1.0 1.0 +158 1.0 0.0 +329 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +93 0.0 1.0 +215 1.0 0.0 +203 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +90 0.0 1.0 +92 0.0 0.0 +203 1.0 0.0 +336 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +88 0.0 1.0 +90 1.0 1.0 +336 1.0 0.0 +222 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +86 0.0 1.0 +88 0.0 0.0 +222 1.0 0.0 +223 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +84 0.0 1.0 +86 0.0 0.0 +223 1.0 0.0 +325 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +82 0.0 1.0 +84 0.0 0.0 +325 1.0 0.0 +331 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +82 0.0 1.0 +331 1.0 0.0 +128 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +80 0.0 1.0 +128 0.0 0.0 +198 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +77 0.0 1.0 +224 1.0 0.0 +145 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +74 0.0 1.0 +316 1.0 1.0 +315 1.0 0.0 +76 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +74 0.0 1.0 +317 1.0 0.0 +316 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +72 0.0 1.0 +324 1.0 1.0 +317 1.0 0.0 +74 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +70 0.0 1.0 +333 1.0 1.0 +324 1.0 0.0 +72 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +68 0.0 1.0 +319 1.0 1.0 +333 1.0 0.0 +70 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +68 0.0 1.0 +340 1.0 0.0 +319 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +68 0.0 1.0 +337 0.0 0.0 +340 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +66 0.0 1.0 +330 0.0 0.0 +337 1.0 0.0 +68 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +63 0.0 1.0 +249 0.0 0.0 +330 1.0 0.0 +66 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +62 0.0 1.0 +239 0.0 0.0 +249 1.0 0.0 +63 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +62 0.0 1.0 +64 0.0 0.0 +228 1.0 0.0 +239 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +64 0.0 1.0 +65 1.0 1.0 +229 1.0 0.0 +228 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +65 0.0 1.0 +67 0.0 0.0 +226 1.0 0.0 +229 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +67 0.0 1.0 +69 1.0 1.0 +242 1.0 0.0 +226 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +69 0.0 1.0 +71 1.0 1.0 +243 1.0 0.0 +242 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +71 0.0 1.0 +73 0.0 0.0 +240 1.0 0.0 +243 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +73 0.0 1.0 +75 1.0 1.0 +322 1.0 0.0 +240 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +75 0.0 1.0 +314 0.0 0.0 +322 1.0 0.0 +kids 0 +OBJECT poly +name "Circle.002" +data 8 +Mesh.007 +crease 30.000000 +numvert 14 +1.413405 1.308179 0.739153 +1.413405 1.308179 -0.739156 +1.312863 1.293941 0.761574 +1.312863 1.293941 -0.76158 +1.276339 1.250112 0.761574 +1.276339 1.250112 -0.76158 +1.254424 1.209936 0.761574 +1.254425 1.209936 -0.76158 +1.239815 1.15515 0.761574 +1.239815 1.15515 -0.76158 +1.765943 1.15515 0.785622 +1.765943 1.15515 -0.785628 +1.763779 1.308179 -0.749468 +1.763779 1.308179 0.749466 +numsurf 10 +SURF 0x20 +mat 2 +refs 3 +6 0 0 +8 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +4 0 0 +6 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +2 0 0 +4 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +13 0 0 +2 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +13 0 0 +0 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 3 +12 0 0 +3 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 3 +11 0 0 +3 0 0 +12 0 0 +SURF 0x20 +mat 2 +refs 3 +7 0 0 +11 0 0 +9 0 0 +SURF 0x20 +mat 2 +refs 3 +5 0 0 +11 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 3 +3 0 0 +11 0 0 +5 0 0 +kids 0 +OBJECT poly +name "Circle.006" +data 10 +Circle.016 +crease 30.000000 +numvert 74 +1.629156 0.928269 -0.038815 +1.639207 0.922417 -0.038815 +1.64665 0.913481 -0.038815 +1.650588 0.902538 -0.038815 +1.650546 0.890909 -0.038815 +1.646529 0.879995 -0.038815 +1.639021 0.871113 -0.038815 +1.628928 0.865334 -0.038815 +1.626249 0.865344 -0.031453 +1.633985 0.871131 -0.024979 +1.639744 0.880019 -0.020174 +1.642831 0.890937 -0.017617 +1.642873 0.902566 -0.017617 +1.639865 0.913506 -0.020174 +1.634171 0.922436 -0.024979 +1.626477 0.928278 -0.031453 +1.619692 0.928303 -0.027536 +1.62142 0.922482 -0.017617 +1.622686 0.913568 -0.010255 +1.623337 0.902637 -0.006338 +1.623295 0.891007 -0.006338 +1.622564 0.880082 -0.010255 +1.621234 0.871177 -0.017617 +1.619464 0.865369 -0.027536 +1.611748 0.865397 -0.028896 +1.606734 0.87123 -0.020174 +1.603028 0.880152 -0.0137 +1.601079 0.891088 -0.010255 +1.601121 0.902718 -0.010255 +1.60315 0.913639 -0.0137 +1.60692 0.922534 -0.020174 +1.611977 0.928331 -0.028896 +1.606941 0.928349 -0.034898 +1.597455 0.922569 -0.031453 +1.590398 0.913685 -0.028896 +1.586621 0.90277 -0.027536 +1.586579 0.891141 -0.027536 +1.590277 0.880199 -0.028896 +1.597269 0.871264 -0.031453 +1.606713 0.865415 -0.034898 +1.617468 0.863356 -0.038815 +1.606713 0.865415 -0.042732 +1.597269 0.871264 -0.046177 +1.590277 0.880199 -0.048734 +1.586579 0.891141 -0.050094 +1.586621 0.90277 -0.050094 +1.590398 0.913685 -0.048734 +1.597455 0.922569 -0.046177 +1.606941 0.928349 -0.042732 +1.611977 0.928331 -0.048734 +1.60692 0.922534 -0.057456 +1.60315 0.913639 -0.06393 +1.601121 0.902718 -0.067375 +1.601079 0.891088 -0.067375 +1.603028 0.880152 -0.06393 +1.606734 0.87123 -0.057456 +1.611748 0.865397 -0.048734 +1.619464 0.865369 -0.050094 +1.621234 0.871177 -0.060013 +1.622564 0.880081 -0.067375 +1.623295 0.891007 -0.071292 +1.623337 0.902637 -0.071292 +1.622686 0.913568 -0.067375 +1.62142 0.922482 -0.060013 +1.619692 0.928303 -0.050094 +1.626477 0.928278 -0.046177 +1.634171 0.922436 -0.052651 +1.639865 0.913506 -0.057456 +1.642873 0.902566 -0.060013 +1.642831 0.890937 -0.060013 +1.639744 0.880019 -0.057456 +1.633985 0.871131 -0.052651 +1.626249 0.865344 -0.046177 +1.61771 0.93033 -0.038815 +numsurf 81 +SURF 0x30 +mat 2 +refs 3 +15 0 0 +0 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x30 +mat 2 +refs 4 +13 0 0 +2 0 0 +1 0 0 +14 0 0 +SURF 0x30 +mat 2 +refs 4 +12 0 0 +3 0 0 +2 0 0 +13 0 0 +SURF 0x30 +mat 2 +refs 4 +11 0 0 +4 0 0 +3 0 0 +12 0 0 +SURF 0x30 +mat 2 +refs 4 +10 0 0 +5 0 0 +4 0 0 +11 0 0 +SURF 0x30 +mat 2 +refs 4 +9 0 0 +6 0 0 +5 0 0 +10 0 0 +SURF 0x30 +mat 2 +refs 4 +8 0 0 +7 0 0 +6 0 0 +9 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +8 0 0 +23 0 0 +SURF 0x30 +mat 2 +refs 4 +23 0 0 +8 0 0 +9 0 0 +22 0 0 +SURF 0x30 +mat 2 +refs 4 +22 0 0 +9 0 0 +10 0 0 +21 0 0 +SURF 0x30 +mat 2 +refs 4 +21 0 0 +10 0 0 +11 0 0 +20 0 0 +SURF 0x30 +mat 2 +refs 4 +20 0 0 +11 0 0 +12 0 0 +19 0 0 +SURF 0x30 +mat 2 +refs 4 +19 0 0 +12 0 0 +13 0 0 +18 0 0 +SURF 0x30 +mat 2 +refs 4 +18 0 0 +13 0 0 +14 0 0 +17 0 0 +SURF 0x30 +mat 2 +refs 4 +17 0 0 +14 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 2 +refs 3 +16 0 0 +15 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +31 0 0 +16 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +30 0 0 +17 0 0 +16 0 0 +31 0 0 +SURF 0x30 +mat 2 +refs 4 +29 0 0 +18 0 0 +17 0 0 +30 0 0 +SURF 0x30 +mat 2 +refs 4 +28 0 0 +19 0 0 +18 0 0 +29 0 0 +SURF 0x30 +mat 2 +refs 4 +27 0 0 +20 0 0 +19 0 0 +28 0 0 +SURF 0x30 +mat 2 +refs 4 +26 0 0 +21 0 0 +20 0 0 +27 0 0 +SURF 0x30 +mat 2 +refs 4 +25 0 0 +22 0 0 +21 0 0 +26 0 0 +SURF 0x30 +mat 2 +refs 4 +24 0 0 +23 0 0 +22 0 0 +25 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +24 0 0 +39 0 0 +SURF 0x30 +mat 2 +refs 4 +39 0 0 +24 0 0 +25 0 0 +38 0 0 +SURF 0x30 +mat 2 +refs 4 +38 0 0 +25 0 0 +26 0 0 +37 0 0 +SURF 0x30 +mat 2 +refs 4 +37 0 0 +26 0 0 +27 0 0 +36 0 0 +SURF 0x30 +mat 2 +refs 4 +36 0 0 +27 0 0 +28 0 0 +35 0 0 +SURF 0x30 +mat 2 +refs 4 +35 0 0 +28 0 0 +29 0 0 +34 0 0 +SURF 0x30 +mat 2 +refs 4 +34 0 0 +29 0 0 +30 0 0 +33 0 0 +SURF 0x30 +mat 2 +refs 4 +33 0 0 +30 0 0 +31 0 0 +32 0 0 +SURF 0x30 +mat 2 +refs 3 +32 0 0 +31 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +48 0 0 +32 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +47 0 0 +33 0 0 +32 0 0 +48 0 0 +SURF 0x30 +mat 2 +refs 4 +46 0 0 +34 0 0 +33 0 0 +47 0 0 +SURF 0x30 +mat 2 +refs 4 +45 0 0 +35 0 0 +34 0 0 +46 0 0 +SURF 0x30 +mat 2 +refs 4 +44 0 0 +36 0 0 +35 0 0 +45 0 0 +SURF 0x30 +mat 2 +refs 4 +43 0 0 +37 0 0 +36 0 0 +44 0 0 +SURF 0x30 +mat 2 +refs 4 +42 0 0 +38 0 0 +37 0 0 +43 0 0 +SURF 0x30 +mat 2 +refs 4 +41 0 0 +39 0 0 +38 0 0 +42 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +39 0 0 +41 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +41 0 0 +56 0 0 +SURF 0x30 +mat 2 +refs 4 +56 0 0 +41 0 0 +42 0 0 +55 0 0 +SURF 0x30 +mat 2 +refs 4 +55 0 0 +42 0 0 +43 0 0 +54 0 0 +SURF 0x30 +mat 2 +refs 4 +54 0 0 +43 0 0 +44 0 0 +53 0 0 +SURF 0x30 +mat 2 +refs 4 +53 0 0 +44 0 0 +45 0 0 +52 0 0 +SURF 0x30 +mat 2 +refs 4 +52 0 0 +45 0 0 +46 0 0 +51 0 0 +SURF 0x30 +mat 2 +refs 4 +51 0 0 +46 0 0 +47 0 0 +50 0 0 +SURF 0x30 +mat 2 +refs 4 +50 0 0 +47 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 2 +refs 3 +49 0 0 +48 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +64 0 0 +49 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +63 0 0 +50 0 0 +49 0 0 +64 0 0 +SURF 0x30 +mat 2 +refs 4 +62 0 0 +51 0 0 +50 0 0 +63 0 0 +SURF 0x30 +mat 2 +refs 4 +61 0 0 +52 0 0 +51 0 0 +62 0 0 +SURF 0x30 +mat 2 +refs 4 +60 0 0 +53 0 0 +52 0 0 +61 0 0 +SURF 0x30 +mat 2 +refs 4 +59 0 0 +54 0 0 +53 0 0 +60 0 0 +SURF 0x30 +mat 2 +refs 4 +58 0 0 +55 0 0 +54 0 0 +59 0 0 +SURF 0x30 +mat 2 +refs 4 +57 0 0 +56 0 0 +55 0 0 +58 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +57 0 0 +72 0 0 +SURF 0x30 +mat 2 +refs 4 +72 0 0 +57 0 0 +58 0 0 +71 0 0 +SURF 0x30 +mat 2 +refs 4 +71 0 0 +58 0 0 +59 0 0 +70 0 0 +SURF 0x30 +mat 2 +refs 4 +70 0 0 +59 0 0 +60 0 0 +69 0 0 +SURF 0x30 +mat 2 +refs 4 +69 0 0 +60 0 0 +61 0 0 +68 0 0 +SURF 0x30 +mat 2 +refs 4 +68 0 0 +61 0 0 +62 0 0 +67 0 0 +SURF 0x30 +mat 2 +refs 4 +67 0 0 +62 0 0 +63 0 0 +66 0 0 +SURF 0x30 +mat 2 +refs 4 +66 0 0 +63 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 2 +refs 3 +65 0 0 +64 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +0 0 0 +65 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +65 0 0 +0 0 0 +1 0 0 +66 0 0 +SURF 0x30 +mat 2 +refs 4 +2 0 0 +67 0 0 +66 0 0 +1 0 0 +SURF 0x30 +mat 2 +refs 4 +3 0 0 +68 0 0 +67 0 0 +2 0 0 +SURF 0x30 +mat 2 +refs 4 +4 0 0 +69 0 0 +68 0 0 +3 0 0 +SURF 0x30 +mat 2 +refs 4 +5 0 0 +70 0 0 +69 0 0 +4 0 0 +SURF 0x30 +mat 2 +refs 4 +6 0 0 +71 0 0 +70 0 0 +5 0 0 +SURF 0x30 +mat 2 +refs 4 +7 0 0 +72 0 0 +71 0 0 +6 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +72 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Circle.007" +data 10 +Circle.012 +crease 30.000000 +numvert 12 +1.620119 0.623441 -0.04673 +1.624634 0.623441 -0.03786 +1.619209 0.623441 -0.029515 +1.60927 0.623441 -0.03004 +1.604755 0.623441 -0.03891 +1.610179 0.623441 -0.047255 +1.62722 0.87332 -0.03786 +1.622773 0.874097 -0.04673 +1.621877 0.874253 -0.029515 +1.612085 0.875963 -0.03004 +1.607638 0.87674 -0.03891 +1.612981 0.875807 -0.047255 +numsurf 6 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +1 0 0 +6 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +2 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +3 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +4 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +5 0 0 +11 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Circle.008" +data 10 +Circle.013 +crease 30.000000 +numvert 12 +1.620119 0.623441 -0.15217 +1.624634 0.623441 -0.143299 +1.619209 0.623441 -0.134954 +1.60927 0.623441 -0.135479 +1.604755 0.623441 -0.144349 +1.610179 0.623441 -0.152695 +1.62722 0.87332 -0.143299 +1.622773 0.874097 -0.15217 +1.621877 0.874253 -0.134954 +1.612085 0.875963 -0.135479 +1.607638 0.87674 -0.144349 +1.612981 0.875807 -0.152695 +numsurf 6 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +1 0 0 +6 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +2 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +3 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +4 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +5 0 0 +11 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Circle.009" +data 10 +Circle.017 +crease 30.000000 +numvert 18 +1.610179 0.623441 -0.047255 +1.604755 0.623441 -0.03891 +1.60927 0.623441 -0.03004 +1.619209 0.623441 -0.029515 +1.624634 0.623441 -0.03786 +1.620119 0.623441 -0.04673 +1.599622 0.602551 -0.067998 +1.581512 0.602551 -0.040138 +1.596585 0.602551 -0.010525 +1.629767 0.602551 -0.008772 +1.632804 0.602551 -0.066245 +1.647877 0.602551 -0.036632 +1.590281 0.526942 -0.086349 +1.56095 0.526942 -0.041225 +1.585363 0.526942 0.006739 +1.639107 0.526942 0.009579 +1.668439 0.526942 -0.035545 +1.644026 0.526942 -0.083509 +numsurf 12 +SURF 0x30 +mat 3 +refs 4 +0 0 0 +5 0 0 +10 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +1 0 0 +0 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 3 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 3 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 4 +9 0 0 +11 0 0 +4 0 0 +3 0 0 +SURF 0x30 +mat 3 +refs 4 +11 0 0 +10 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 3 +refs 4 +17 0 0 +12 0 0 +6 0 0 +10 0 0 +SURF 0x30 +mat 3 +refs 4 +12 0 0 +13 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +13 0 0 +14 0 0 +8 0 0 +7 0 0 +SURF 0x30 +mat 3 +refs 4 +14 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 3 +refs 4 +15 0 0 +16 0 0 +11 0 0 +9 0 0 +SURF 0x30 +mat 3 +refs 4 +16 0 0 +17 0 0 +10 0 0 +11 0 0 +kids 0 +OBJECT poly +name "Circle.010" +data 10 +Circle.018 +crease 30.000000 +numvert 74 +1.629156 0.928269 -0.144254 +1.639207 0.922417 -0.144254 +1.64665 0.913481 -0.144254 +1.650588 0.902538 -0.144254 +1.650546 0.890909 -0.144254 +1.646529 0.879995 -0.144254 +1.639021 0.871113 -0.144254 +1.628928 0.865334 -0.144254 +1.626249 0.865344 -0.136892 +1.633985 0.871131 -0.130418 +1.639744 0.880019 -0.125613 +1.642831 0.890937 -0.123056 +1.642873 0.902566 -0.123056 +1.639865 0.913506 -0.125613 +1.634171 0.922436 -0.130418 +1.626477 0.928278 -0.136892 +1.619692 0.928303 -0.132975 +1.62142 0.922482 -0.123056 +1.622686 0.913568 -0.115694 +1.623337 0.902637 -0.111777 +1.623295 0.891007 -0.111777 +1.622564 0.880082 -0.115694 +1.621234 0.871177 -0.123056 +1.619464 0.865369 -0.132975 +1.611748 0.865397 -0.134335 +1.606734 0.87123 -0.125613 +1.603028 0.880152 -0.119139 +1.601079 0.891088 -0.115694 +1.601121 0.902718 -0.115694 +1.60315 0.913639 -0.119139 +1.60692 0.922534 -0.125613 +1.611977 0.928331 -0.134335 +1.606941 0.928349 -0.140337 +1.597455 0.922569 -0.136892 +1.590398 0.913685 -0.134335 +1.586621 0.90277 -0.132975 +1.586579 0.891141 -0.132975 +1.590277 0.880199 -0.134335 +1.597269 0.871264 -0.136892 +1.606713 0.865415 -0.140337 +1.617468 0.863356 -0.144254 +1.606713 0.865415 -0.148171 +1.597269 0.871264 -0.151616 +1.590277 0.880199 -0.154173 +1.586579 0.891141 -0.155533 +1.586621 0.90277 -0.155533 +1.590398 0.913685 -0.154173 +1.597455 0.922569 -0.151616 +1.606941 0.928349 -0.148171 +1.611977 0.928331 -0.154173 +1.60692 0.922534 -0.162895 +1.60315 0.913639 -0.169369 +1.601121 0.902718 -0.172814 +1.601079 0.891088 -0.172814 +1.603028 0.880152 -0.169369 +1.606734 0.87123 -0.162895 +1.611748 0.865397 -0.154173 +1.619464 0.865369 -0.155533 +1.621234 0.871177 -0.165452 +1.622564 0.880081 -0.172814 +1.623295 0.891007 -0.176731 +1.623337 0.902637 -0.176731 +1.622686 0.913568 -0.172814 +1.62142 0.922482 -0.165452 +1.619692 0.928303 -0.155533 +1.626477 0.928278 -0.151616 +1.634171 0.922436 -0.15809 +1.639865 0.913506 -0.162895 +1.642873 0.902566 -0.165452 +1.642831 0.890937 -0.165452 +1.639744 0.880019 -0.162895 +1.633985 0.871131 -0.15809 +1.626249 0.865344 -0.151616 +1.61771 0.93033 -0.144254 +numsurf 81 +SURF 0x30 +mat 2 +refs 3 +15 0 0 +0 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x30 +mat 2 +refs 4 +13 0 0 +2 0 0 +1 0 0 +14 0 0 +SURF 0x30 +mat 2 +refs 4 +12 0 0 +3 0 0 +2 0 0 +13 0 0 +SURF 0x30 +mat 2 +refs 4 +11 0 0 +4 0 0 +3 0 0 +12 0 0 +SURF 0x30 +mat 2 +refs 4 +10 0 0 +5 0 0 +4 0 0 +11 0 0 +SURF 0x30 +mat 2 +refs 4 +9 0 0 +6 0 0 +5 0 0 +10 0 0 +SURF 0x30 +mat 2 +refs 4 +8 0 0 +7 0 0 +6 0 0 +9 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +8 0 0 +23 0 0 +SURF 0x30 +mat 2 +refs 4 +23 0 0 +8 0 0 +9 0 0 +22 0 0 +SURF 0x30 +mat 2 +refs 4 +22 0 0 +9 0 0 +10 0 0 +21 0 0 +SURF 0x30 +mat 2 +refs 4 +21 0 0 +10 0 0 +11 0 0 +20 0 0 +SURF 0x30 +mat 2 +refs 4 +20 0 0 +11 0 0 +12 0 0 +19 0 0 +SURF 0x30 +mat 2 +refs 4 +19 0 0 +12 0 0 +13 0 0 +18 0 0 +SURF 0x30 +mat 2 +refs 4 +18 0 0 +13 0 0 +14 0 0 +17 0 0 +SURF 0x30 +mat 2 +refs 4 +17 0 0 +14 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 2 +refs 3 +16 0 0 +15 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +31 0 0 +16 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +30 0 0 +17 0 0 +16 0 0 +31 0 0 +SURF 0x30 +mat 2 +refs 4 +29 0 0 +18 0 0 +17 0 0 +30 0 0 +SURF 0x30 +mat 2 +refs 4 +28 0 0 +19 0 0 +18 0 0 +29 0 0 +SURF 0x30 +mat 2 +refs 4 +27 0 0 +20 0 0 +19 0 0 +28 0 0 +SURF 0x30 +mat 2 +refs 4 +26 0 0 +21 0 0 +20 0 0 +27 0 0 +SURF 0x30 +mat 2 +refs 4 +25 0 0 +22 0 0 +21 0 0 +26 0 0 +SURF 0x30 +mat 2 +refs 4 +24 0 0 +23 0 0 +22 0 0 +25 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +24 0 0 +39 0 0 +SURF 0x30 +mat 2 +refs 4 +39 0 0 +24 0 0 +25 0 0 +38 0 0 +SURF 0x30 +mat 2 +refs 4 +38 0 0 +25 0 0 +26 0 0 +37 0 0 +SURF 0x30 +mat 2 +refs 4 +37 0 0 +26 0 0 +27 0 0 +36 0 0 +SURF 0x30 +mat 2 +refs 4 +36 0 0 +27 0 0 +28 0 0 +35 0 0 +SURF 0x30 +mat 2 +refs 4 +35 0 0 +28 0 0 +29 0 0 +34 0 0 +SURF 0x30 +mat 2 +refs 4 +34 0 0 +29 0 0 +30 0 0 +33 0 0 +SURF 0x30 +mat 2 +refs 4 +33 0 0 +30 0 0 +31 0 0 +32 0 0 +SURF 0x30 +mat 2 +refs 3 +32 0 0 +31 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +48 0 0 +32 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +47 0 0 +33 0 0 +32 0 0 +48 0 0 +SURF 0x30 +mat 2 +refs 4 +46 0 0 +34 0 0 +33 0 0 +47 0 0 +SURF 0x30 +mat 2 +refs 4 +45 0 0 +35 0 0 +34 0 0 +46 0 0 +SURF 0x30 +mat 2 +refs 4 +44 0 0 +36 0 0 +35 0 0 +45 0 0 +SURF 0x30 +mat 2 +refs 4 +43 0 0 +37 0 0 +36 0 0 +44 0 0 +SURF 0x30 +mat 2 +refs 4 +42 0 0 +38 0 0 +37 0 0 +43 0 0 +SURF 0x30 +mat 2 +refs 4 +41 0 0 +39 0 0 +38 0 0 +42 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +39 0 0 +41 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +41 0 0 +56 0 0 +SURF 0x30 +mat 2 +refs 4 +56 0 0 +41 0 0 +42 0 0 +55 0 0 +SURF 0x30 +mat 2 +refs 4 +55 0 0 +42 0 0 +43 0 0 +54 0 0 +SURF 0x30 +mat 2 +refs 4 +54 0 0 +43 0 0 +44 0 0 +53 0 0 +SURF 0x30 +mat 2 +refs 4 +53 0 0 +44 0 0 +45 0 0 +52 0 0 +SURF 0x30 +mat 2 +refs 4 +52 0 0 +45 0 0 +46 0 0 +51 0 0 +SURF 0x30 +mat 2 +refs 4 +51 0 0 +46 0 0 +47 0 0 +50 0 0 +SURF 0x30 +mat 2 +refs 4 +50 0 0 +47 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 2 +refs 3 +49 0 0 +48 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +64 0 0 +49 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +63 0 0 +50 0 0 +49 0 0 +64 0 0 +SURF 0x30 +mat 2 +refs 4 +62 0 0 +51 0 0 +50 0 0 +63 0 0 +SURF 0x30 +mat 2 +refs 4 +61 0 0 +52 0 0 +51 0 0 +62 0 0 +SURF 0x30 +mat 2 +refs 4 +60 0 0 +53 0 0 +52 0 0 +61 0 0 +SURF 0x30 +mat 2 +refs 4 +59 0 0 +54 0 0 +53 0 0 +60 0 0 +SURF 0x30 +mat 2 +refs 4 +58 0 0 +55 0 0 +54 0 0 +59 0 0 +SURF 0x30 +mat 2 +refs 4 +57 0 0 +56 0 0 +55 0 0 +58 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +57 0 0 +72 0 0 +SURF 0x30 +mat 2 +refs 4 +72 0 0 +57 0 0 +58 0 0 +71 0 0 +SURF 0x30 +mat 2 +refs 4 +71 0 0 +58 0 0 +59 0 0 +70 0 0 +SURF 0x30 +mat 2 +refs 4 +70 0 0 +59 0 0 +60 0 0 +69 0 0 +SURF 0x30 +mat 2 +refs 4 +69 0 0 +60 0 0 +61 0 0 +68 0 0 +SURF 0x30 +mat 2 +refs 4 +68 0 0 +61 0 0 +62 0 0 +67 0 0 +SURF 0x30 +mat 2 +refs 4 +67 0 0 +62 0 0 +63 0 0 +66 0 0 +SURF 0x30 +mat 2 +refs 4 +66 0 0 +63 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 2 +refs 3 +65 0 0 +64 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 3 +0 0 0 +65 0 0 +73 0 0 +SURF 0x30 +mat 2 +refs 4 +65 0 0 +0 0 0 +1 0 0 +66 0 0 +SURF 0x30 +mat 2 +refs 4 +2 0 0 +67 0 0 +66 0 0 +1 0 0 +SURF 0x30 +mat 2 +refs 4 +3 0 0 +68 0 0 +67 0 0 +2 0 0 +SURF 0x30 +mat 2 +refs 4 +4 0 0 +69 0 0 +68 0 0 +3 0 0 +SURF 0x30 +mat 2 +refs 4 +5 0 0 +70 0 0 +69 0 0 +4 0 0 +SURF 0x30 +mat 2 +refs 4 +6 0 0 +71 0 0 +70 0 0 +5 0 0 +SURF 0x30 +mat 2 +refs 4 +7 0 0 +72 0 0 +71 0 0 +6 0 0 +SURF 0x30 +mat 2 +refs 3 +40 0 0 +72 0 0 +7 0 0 +kids 0 +OBJECT poly +name "Circle.011" +data 10 +Circle.019 +crease 30.000000 +numvert 18 +1.610179 0.623441 -0.152695 +1.604755 0.623441 -0.144349 +1.60927 0.623441 -0.135479 +1.619209 0.623441 -0.134954 +1.624634 0.623441 -0.143299 +1.620119 0.623441 -0.15217 +1.599622 0.602551 -0.173438 +1.581512 0.602551 -0.145578 +1.596585 0.602551 -0.115964 +1.629767 0.602551 -0.114211 +1.632804 0.602551 -0.171684 +1.647877 0.602551 -0.142071 +1.590281 0.526942 -0.191788 +1.56095 0.526942 -0.146664 +1.585363 0.526942 -0.0987 +1.639107 0.526942 -0.09586 +1.668439 0.526942 -0.140985 +1.644026 0.526942 -0.188949 +numsurf 12 +SURF 0x30 +mat 3 +refs 4 +0 0 0 +5 0 0 +10 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +1 0 0 +0 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 3 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 3 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 4 +9 0 0 +11 0 0 +4 0 0 +3 0 0 +SURF 0x30 +mat 3 +refs 4 +11 0 0 +10 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 3 +refs 4 +17 0 0 +12 0 0 +6 0 0 +10 0 0 +SURF 0x30 +mat 3 +refs 4 +12 0 0 +13 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +13 0 0 +14 0 0 +8 0 0 +7 0 0 +SURF 0x30 +mat 3 +refs 4 +14 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 3 +refs 4 +15 0 0 +16 0 0 +11 0 0 +9 0 0 +SURF 0x30 +mat 3 +refs 4 +16 0 0 +17 0 0 +10 0 0 +11 0 0 +kids 0 +OBJECT poly +name "Cube.002" +data 4 +Mesh +crease 30.000000 +numvert 131 +3.043061 1.338406 0.525154 +3.043061 1.338406 0.487997 +3.041234 1.334636 0.487997 +3.043061 1.338406 0.175392 +3.043061 1.338406 0.275976 +3.055221 1.338406 0.275976 +3.043061 1.154156 0.175392 +3.043061 1.154156 0.275976 +3.041253 1.157888 0.275976 +3.041752 1.335705 0.275976 +3.041253 1.334674 0.275976 +3.040525 1.333172 0.487997 +3.112611 1.154156 0.175392 +3.557696 1.154156 0.175392 +3.557696 1.154156 0.620478 +3.11261 1.154156 0.620478 +3.112611 1.338406 0.175392 +3.112611 1.338406 0.620478 +3.557696 1.338406 0.620478 +3.557696 1.338406 0.175392 +3.043061 1.154156 0.525154 +3.022196 1.197233 0.208709 +3.022196 1.295329 0.208708 +3.022196 1.295329 0.491837 +3.022196 1.197233 0.491837 +3.043061 1.154156 0.487997 +3.050449 1.154156 0.487997 +3.040525 1.15939 0.487997 +3.032205 1.176568 0.291958 +3.032205 1.176568 0.46722 +3.073512 1.338406 0.46722 +3.065192 1.338406 0.487997 +3.065192 1.154156 0.487997 +3.073512 1.154156 0.46722 +3.032205 1.315995 0.46722 +3.032205 1.315994 0.291958 +3.064464 1.154156 0.275976 +3.064464 1.338406 0.275976 +3.073512 1.154156 0.291958 +3.073512 1.338406 0.291958 +3.054164 1.285672 0.532217 +3.063334 1.296433 0.544549 +3.074147 1.301288 0.559092 +3.085299 1.299653 0.57409 +3.095444 1.291725 0.587734 +3.10336 1.278458 0.59838 +3.108091 1.261455 0.604743 +3.109067 1.242765 0.606055 +3.106169 1.224644 0.602158 +3.099749 1.209275 0.593523 +3.090579 1.198514 0.58119 +3.079766 1.193659 0.566648 +3.068614 1.195294 0.55165 +3.058468 1.203223 0.538005 +3.050552 1.216489 0.52736 +3.045821 1.233492 0.520997 +3.044846 1.252182 0.519685 +3.047743 1.270304 0.523581 +3.05826 1.276308 0.560016 +3.052859 1.26997 0.552753 +3.064628 1.279168 0.568581 +3.071196 1.278205 0.577414 +3.077171 1.273535 0.58545 +3.081833 1.265722 0.59172 +3.08462 1.255708 0.595467 +3.085194 1.244701 0.59624 +3.083488 1.234028 0.593945 +3.079706 1.224977 0.588859 +3.074306 1.218639 0.581596 +3.067937 1.215779 0.573031 +3.061369 1.216743 0.564198 +3.055394 1.221412 0.556162 +3.050732 1.229225 0.549893 +3.047946 1.239239 0.546145 +3.047371 1.250246 0.545372 +3.049078 1.260919 0.547667 +3.042968 1.276326 0.552188 +3.049894 1.284454 0.561503 +3.058062 1.288122 0.572487 +3.066485 1.286887 0.583816 +3.074148 1.280898 0.594122 +3.080127 1.270877 0.602163 +3.083701 1.258034 0.606969 +3.084438 1.243917 0.60796 +3.082249 1.230229 0.605017 +3.077399 1.218621 0.598495 +3.070473 1.210493 0.589179 +3.062305 1.206825 0.578195 +3.053882 1.208061 0.566867 +3.046219 1.214049 0.55656 +3.04024 1.22407 0.548519 +3.036666 1.236913 0.543713 +3.035929 1.25103 0.542722 +3.038118 1.264718 0.545665 +3.024698 1.273724 0.569015 +3.031 1.281119 0.57749 +3.038431 1.284456 0.587484 +3.046094 1.283332 0.597791 +3.053066 1.277883 0.607167 +3.058506 1.268767 0.614483 +3.061757 1.257082 0.618856 +3.062428 1.244238 0.619757 +3.060437 1.231785 0.61708 +3.056024 1.221223 0.611145 +3.049723 1.213828 0.60267 +3.042292 1.210492 0.592677 +3.034628 1.211615 0.58237 +3.027656 1.217064 0.572993 +3.022216 1.22618 0.565677 +3.018965 1.237865 0.561305 +3.018295 1.250709 0.560403 +3.020286 1.263163 0.563081 +3.030055 1.254525 0.588957 +3.031748 1.256511 0.591234 +3.033744 1.257407 0.593918 +3.035802 1.257105 0.596686 +3.037675 1.255642 0.599205 +3.039136 1.253193 0.60117 +3.040009 1.250054 0.602345 +3.04019 1.246605 0.602587 +3.039654 1.243259 0.601868 +3.038469 1.240423 0.600274 +3.036777 1.238436 0.597997 +3.034781 1.23754 0.595313 +3.032722 1.237842 0.592544 +3.030849 1.239305 0.590026 +3.029388 1.241754 0.58806 +3.028515 1.244893 0.586886 +3.028335 1.248343 0.586644 +3.02887 1.251688 0.587363 +3.034262 1.247474 0.594615 +numsurf 136 +SURF 0x30 +mat 1 +refs 3 +0 0 0 +1 0 0 +2 0 0 +SURF 0x30 +mat 1 +refs 3 +3 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 1 +refs 3 +6 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 3 +4 0 0 +3 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 3 +9 0 0 +3 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 3 +11 0 0 +0 0 0 +2 0 0 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +17 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +16 0 0 +19 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +19 0 0 +18 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +18 0 0 +17 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +20 0 0 +15 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +12 0 0 +6 0 0 +3 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +6 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +0 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +23 0 0 +22 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +25 0 0 +26 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +20 0 0 +24 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +25 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +25 0 0 +27 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +5 0 0 +4 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +8 0 0 +7 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +28 0 0 +29 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 3 +17 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +32 0 0 +31 0 0 +30 0 0 +33 0 0 +SURF 0x30 +mat 1 +refs 3 +32 0 0 +33 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +6 0 0 +8 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 3 +24 0 0 +29 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +27 0 0 +29 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +0 0 0 +11 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +34 0 0 +35 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +28 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 3 +15 0 0 +26 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +0 0 0 +17 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +32 0 0 +26 0 0 +1 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 3 +6 0 0 +36 0 0 +7 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +7 0 0 +36 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 3 +5 0 0 +37 0 0 +3 0 0 +SURF 0x30 +mat 1 +refs 4 +22 0 0 +35 0 0 +10 0 0 +3 0 0 +SURF 0x30 +mat 1 +refs 4 +8 0 0 +10 0 0 +35 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +15 0 0 +33 0 0 +38 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +39 0 0 +38 0 0 +33 0 0 +30 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +39 0 0 +30 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +6 0 0 +12 0 0 +38 0 0 +36 0 0 +SURF 0x30 +mat 1 +refs 4 +37 0 0 +36 0 0 +38 0 0 +39 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +37 0 0 +39 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +41 0 0 +40 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 1 +refs 4 +42 0 0 +41 0 0 +58 0 0 +60 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +42 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 1 +refs 4 +44 0 0 +43 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +44 0 0 +62 0 0 +63 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +45 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +46 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +47 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 1 +refs 4 +49 0 0 +48 0 0 +66 0 0 +67 0 0 +SURF 0x30 +mat 1 +refs 4 +50 0 0 +49 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 1 +refs 4 +51 0 0 +50 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 1 +refs 4 +52 0 0 +51 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 1 +refs 4 +53 0 0 +52 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 1 +refs 4 +54 0 0 +53 0 0 +71 0 0 +72 0 0 +SURF 0x30 +mat 1 +refs 4 +55 0 0 +54 0 0 +72 0 0 +73 0 0 +SURF 0x30 +mat 1 +refs 4 +56 0 0 +55 0 0 +73 0 0 +74 0 0 +SURF 0x30 +mat 1 +refs 4 +57 0 0 +56 0 0 +74 0 0 +75 0 0 +SURF 0x30 +mat 1 +refs 4 +40 0 0 +57 0 0 +75 0 0 +59 0 0 +SURF 0x30 +mat 1 +refs 4 +58 0 0 +59 0 0 +76 0 0 +77 0 0 +SURF 0x30 +mat 1 +refs 4 +60 0 0 +58 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 1 +refs 4 +61 0 0 +60 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 1 +refs 4 +62 0 0 +61 0 0 +79 0 0 +80 0 0 +SURF 0x30 +mat 1 +refs 4 +63 0 0 +62 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 1 +refs 4 +64 0 0 +63 0 0 +81 0 0 +82 0 0 +SURF 0x30 +mat 1 +refs 4 +65 0 0 +64 0 0 +82 0 0 +83 0 0 +SURF 0x30 +mat 1 +refs 4 +66 0 0 +65 0 0 +83 0 0 +84 0 0 +SURF 0x30 +mat 1 +refs 4 +67 0 0 +66 0 0 +84 0 0 +85 0 0 +SURF 0x30 +mat 1 +refs 4 +68 0 0 +67 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 1 +refs 4 +69 0 0 +68 0 0 +86 0 0 +87 0 0 +SURF 0x30 +mat 1 +refs 4 +70 0 0 +69 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 1 +refs 4 +71 0 0 +70 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 1 +refs 4 +72 0 0 +71 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 1 +refs 4 +73 0 0 +72 0 0 +90 0 0 +91 0 0 +SURF 0x30 +mat 1 +refs 4 +74 0 0 +73 0 0 +91 0 0 +92 0 0 +SURF 0x30 +mat 1 +refs 4 +75 0 0 +74 0 0 +92 0 0 +93 0 0 +SURF 0x30 +mat 1 +refs 4 +59 0 0 +75 0 0 +93 0 0 +76 0 0 +SURF 0x30 +mat 1 +refs 4 +77 0 0 +76 0 0 +94 0 0 +95 0 0 +SURF 0x30 +mat 1 +refs 4 +78 0 0 +77 0 0 +95 0 0 +96 0 0 +SURF 0x30 +mat 1 +refs 4 +79 0 0 +78 0 0 +96 0 0 +97 0 0 +SURF 0x30 +mat 1 +refs 4 +80 0 0 +79 0 0 +97 0 0 +98 0 0 +SURF 0x30 +mat 1 +refs 4 +81 0 0 +80 0 0 +98 0 0 +99 0 0 +SURF 0x30 +mat 1 +refs 4 +82 0 0 +81 0 0 +99 0 0 +100 0 0 +SURF 0x30 +mat 1 +refs 4 +83 0 0 +82 0 0 +100 0 0 +101 0 0 +SURF 0x30 +mat 1 +refs 4 +84 0 0 +83 0 0 +101 0 0 +102 0 0 +SURF 0x30 +mat 1 +refs 4 +85 0 0 +84 0 0 +102 0 0 +103 0 0 +SURF 0x30 +mat 1 +refs 4 +86 0 0 +85 0 0 +103 0 0 +104 0 0 +SURF 0x30 +mat 1 +refs 4 +87 0 0 +86 0 0 +104 0 0 +105 0 0 +SURF 0x30 +mat 1 +refs 4 +88 0 0 +87 0 0 +105 0 0 +106 0 0 +SURF 0x30 +mat 1 +refs 4 +89 0 0 +88 0 0 +106 0 0 +107 0 0 +SURF 0x30 +mat 1 +refs 4 +90 0 0 +89 0 0 +107 0 0 +108 0 0 +SURF 0x30 +mat 1 +refs 4 +91 0 0 +90 0 0 +108 0 0 +109 0 0 +SURF 0x30 +mat 1 +refs 4 +92 0 0 +91 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 1 +refs 4 +93 0 0 +92 0 0 +110 0 0 +111 0 0 +SURF 0x30 +mat 1 +refs 4 +76 0 0 +93 0 0 +111 0 0 +94 0 0 +SURF 0x30 +mat 1 +refs 4 +95 0 0 +94 0 0 +112 0 0 +113 0 0 +SURF 0x30 +mat 1 +refs 4 +96 0 0 +95 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 1 +refs 4 +97 0 0 +96 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 1 +refs 4 +98 0 0 +97 0 0 +115 0 0 +116 0 0 +SURF 0x30 +mat 1 +refs 4 +99 0 0 +98 0 0 +116 0 0 +117 0 0 +SURF 0x30 +mat 1 +refs 4 +100 0 0 +99 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 1 +refs 4 +101 0 0 +100 0 0 +118 0 0 +119 0 0 +SURF 0x30 +mat 1 +refs 4 +102 0 0 +101 0 0 +119 0 0 +120 0 0 +SURF 0x30 +mat 1 +refs 4 +103 0 0 +102 0 0 +120 0 0 +121 0 0 +SURF 0x30 +mat 1 +refs 4 +104 0 0 +103 0 0 +121 0 0 +122 0 0 +SURF 0x30 +mat 1 +refs 4 +105 0 0 +104 0 0 +122 0 0 +123 0 0 +SURF 0x30 +mat 1 +refs 4 +106 0 0 +105 0 0 +123 0 0 +124 0 0 +SURF 0x30 +mat 1 +refs 4 +107 0 0 +106 0 0 +124 0 0 +125 0 0 +SURF 0x30 +mat 1 +refs 4 +108 0 0 +107 0 0 +125 0 0 +126 0 0 +SURF 0x30 +mat 1 +refs 4 +109 0 0 +108 0 0 +126 0 0 +127 0 0 +SURF 0x30 +mat 1 +refs 4 +110 0 0 +109 0 0 +127 0 0 +128 0 0 +SURF 0x30 +mat 1 +refs 4 +111 0 0 +110 0 0 +128 0 0 +129 0 0 +SURF 0x30 +mat 1 +refs 4 +94 0 0 +111 0 0 +129 0 0 +112 0 0 +SURF 0x30 +mat 1 +refs 3 +113 0 0 +112 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +114 0 0 +113 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +115 0 0 +114 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +116 0 0 +115 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +117 0 0 +116 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +118 0 0 +117 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +119 0 0 +118 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +120 0 0 +119 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +121 0 0 +120 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +122 0 0 +121 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +123 0 0 +122 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +124 0 0 +123 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +125 0 0 +124 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +126 0 0 +125 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +127 0 0 +126 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +128 0 0 +127 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +129 0 0 +128 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 3 +112 0 0 +129 0 0 +130 0 0 +kids 0 +OBJECT poly +name "Cube.004" +data 8 +Cube.001 +crease 30.000000 +numvert 64 +-0.022868 0.480688 5e-06 +-0.022868 0.601548 5e-06 +0.036428 0.601548 -0.522612 +0.036428 0.480688 -0.522612 +-0.022868 0.480688 -0.522612 +-0.022868 0.601548 -0.522612 +0.006734 0.480688 -0.570314 +0.006734 0.601548 -0.570314 +0.070089 0.481297 -0.280268 +0.070089 0.481297 -0.440282 +0.036748 0.481297 -0.440282 +0.036748 0.481297 -0.280268 +0.070089 0.573596 -0.280268 +0.070089 0.573597 -0.440282 +0.036748 0.595471 -0.440282 +0.036748 0.595471 -0.280268 +0.135259 0.573597 -0.397402 +0.135259 0.573596 -0.323149 +0.135259 0.481297 -0.397402 +0.135259 0.481297 -0.323149 +0.200414 0.481297 -0.323149 +0.200414 0.481297 -0.397402 +0.200414 0.573596 -0.323149 +0.200414 0.573597 -0.397402 +0.200414 0.56574 -0.391082 +0.200414 0.56574 -0.329469 +0.200414 0.489153 -0.391082 +0.200414 0.489153 -0.329469 +0.284749 0.489153 -0.329469 +0.284749 0.489153 -0.391082 +0.284749 0.56574 -0.329469 +0.284749 0.56574 -0.391082 +0.28475 0.56574 0.391086 +0.28475 0.56574 0.329473 +0.28475 0.489153 0.391086 +0.28475 0.489153 0.329473 +0.200421 0.489153 0.329473 +0.200421 0.489153 0.391086 +0.200421 0.56574 0.329473 +0.200421 0.56574 0.391086 +0.200421 0.573597 0.397406 +0.200421 0.573597 0.323153 +0.200421 0.481297 0.397406 +0.200421 0.481297 0.323153 +0.135257 0.481297 0.323153 +0.135257 0.481297 0.397406 +0.135257 0.573597 0.323153 +0.135257 0.573597 0.397406 +0.036746 0.595471 0.280272 +0.036746 0.595471 0.440287 +0.070093 0.573597 0.440287 +0.070093 0.573597 0.280272 +0.036746 0.481297 0.280272 +0.036746 0.481297 0.440287 +0.070093 0.481297 0.440287 +0.070093 0.481297 0.280272 +0.006729 0.601548 0.570318 +0.006729 0.480688 0.570318 +-0.02286 0.601548 0.522616 +-0.02286 0.480688 0.522616 +0.036432 0.480688 0.522616 +0.036432 0.601548 0.522616 +0.036432 0.480688 -1e-06 +0.036432 0.601548 -1e-06 +numsurf 60 +SURF 0x20 +mat 4 +refs 4 +63 0 0 +62 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 4 +refs 4 +62 0 0 +0 0 0 +4 0 0 +3 0 0 +SURF 0x20 +mat 4 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 4 +refs 4 +2 0 0 +5 0 0 +1 0 0 +63 0 0 +SURF 0x20 +mat 4 +refs 3 +2 0 0 +7 0 0 +5 0 0 +SURF 0x20 +mat 4 +refs 4 +5 0 0 +7 0 0 +6 0 0 +4 0 0 +SURF 0x20 +mat 4 +refs 3 +4 0 0 +6 0 0 +3 0 0 +SURF 0x20 +mat 4 +refs 4 +3 0 0 +6 0 0 +7 0 0 +2 0 0 +SURF 0x20 +mat 4 +refs 4 +10 0 0 +9 0 0 +8 0 0 +11 0 0 +SURF 0x20 +mat 4 +refs 4 +12 0 0 +13 0 0 +14 0 0 +15 0 0 +SURF 0x20 +mat 4 +refs 4 +9 0 0 +10 0 0 +14 0 0 +13 0 0 +SURF 0x20 +mat 4 +refs 4 +10 0 0 +11 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 4 +refs 4 +11 0 0 +8 0 0 +12 0 0 +15 0 0 +SURF 0x20 +mat 4 +refs 4 +8 0 0 +19 0 0 +17 0 0 +12 0 0 +SURF 0x20 +mat 4 +refs 4 +13 0 0 +16 0 0 +18 0 0 +9 0 0 +SURF 0x20 +mat 4 +refs 4 +12 0 0 +17 0 0 +16 0 0 +13 0 0 +SURF 0x20 +mat 4 +refs 4 +9 0 0 +18 0 0 +19 0 0 +8 0 0 +SURF 0x20 +mat 4 +refs 4 +18 0 0 +21 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 4 +refs 4 +17 0 0 +22 0 0 +23 0 0 +16 0 0 +SURF 0x20 +mat 4 +refs 4 +16 0 0 +23 0 0 +21 0 0 +18 0 0 +SURF 0x20 +mat 4 +refs 4 +19 0 0 +20 0 0 +22 0 0 +17 0 0 +SURF 0x20 +mat 4 +refs 4 +20 0 0 +27 0 0 +25 0 0 +22 0 0 +SURF 0x20 +mat 4 +refs 4 +23 0 0 +24 0 0 +26 0 0 +21 0 0 +SURF 0x20 +mat 4 +refs 4 +22 0 0 +25 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 4 +refs 4 +21 0 0 +26 0 0 +27 0 0 +20 0 0 +SURF 0x20 +mat 4 +refs 4 +26 0 0 +29 0 0 +28 0 0 +27 0 0 +SURF 0x20 +mat 4 +refs 4 +25 0 0 +30 0 0 +31 0 0 +24 0 0 +SURF 0x20 +mat 4 +refs 4 +24 0 0 +31 0 0 +29 0 0 +26 0 0 +SURF 0x20 +mat 4 +refs 4 +27 0 0 +28 0 0 +30 0 0 +25 0 0 +SURF 0x20 +mat 4 +refs 4 +28 0 0 +29 0 0 +31 0 0 +30 0 0 +SURF 0x20 +mat 4 +refs 4 +35 0 0 +33 0 0 +32 0 0 +34 0 0 +SURF 0x20 +mat 4 +refs 4 +36 0 0 +38 0 0 +33 0 0 +35 0 0 +SURF 0x20 +mat 4 +refs 4 +39 0 0 +37 0 0 +34 0 0 +32 0 0 +SURF 0x20 +mat 4 +refs 4 +38 0 0 +39 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 4 +refs 4 +37 0 0 +36 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 4 +refs 4 +42 0 0 +43 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 4 +refs 4 +41 0 0 +40 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 4 +refs 4 +40 0 0 +42 0 0 +37 0 0 +39 0 0 +SURF 0x20 +mat 4 +refs 4 +43 0 0 +41 0 0 +38 0 0 +36 0 0 +SURF 0x20 +mat 4 +refs 4 +44 0 0 +46 0 0 +41 0 0 +43 0 0 +SURF 0x20 +mat 4 +refs 4 +47 0 0 +45 0 0 +42 0 0 +40 0 0 +SURF 0x20 +mat 4 +refs 4 +46 0 0 +47 0 0 +40 0 0 +41 0 0 +SURF 0x20 +mat 4 +refs 4 +45 0 0 +44 0 0 +43 0 0 +42 0 0 +SURF 0x20 +mat 4 +refs 4 +54 0 0 +55 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 4 +refs 4 +51 0 0 +50 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 4 +refs 4 +50 0 0 +54 0 0 +45 0 0 +47 0 0 +SURF 0x20 +mat 4 +refs 4 +55 0 0 +51 0 0 +46 0 0 +44 0 0 +SURF 0x20 +mat 4 +refs 4 +52 0 0 +48 0 0 +51 0 0 +55 0 0 +SURF 0x20 +mat 4 +refs 4 +53 0 0 +49 0 0 +48 0 0 +52 0 0 +SURF 0x20 +mat 4 +refs 4 +54 0 0 +50 0 0 +49 0 0 +53 0 0 +SURF 0x20 +mat 4 +refs 4 +51 0 0 +48 0 0 +49 0 0 +50 0 0 +SURF 0x20 +mat 4 +refs 4 +53 0 0 +52 0 0 +55 0 0 +54 0 0 +SURF 0x20 +mat 4 +refs 4 +60 0 0 +61 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 4 +refs 3 +59 0 0 +60 0 0 +57 0 0 +SURF 0x20 +mat 4 +refs 4 +58 0 0 +59 0 0 +57 0 0 +56 0 0 +SURF 0x20 +mat 4 +refs 3 +61 0 0 +58 0 0 +56 0 0 +SURF 0x20 +mat 4 +refs 4 +61 0 0 +63 0 0 +1 0 0 +58 0 0 +SURF 0x20 +mat 4 +refs 4 +0 0 0 +59 0 0 +58 0 0 +1 0 0 +SURF 0x20 +mat 4 +refs 4 +59 0 0 +0 0 0 +62 0 0 +60 0 0 +SURF 0x20 +mat 4 +refs 4 +63 0 0 +61 0 0 +60 0 0 +62 0 0 +kids 0 +OBJECT poly +name "accelerator" +data 8 +Cube.007 +crease 30.000000 +numvert 20 +1.379936 0.659936 0.191825 +1.460429 0.517657 0.191825 +1.460429 0.517657 0.234839 +1.379936 0.659936 0.234839 +1.391744 0.66827 0.191825 +1.472237 0.525991 0.191825 +1.472237 0.525991 0.234839 +1.391744 0.66827 0.234839 +1.386548 0.67563 0.22843 +1.386548 0.67563 0.198233 +1.374741 0.667296 0.22843 +1.374741 0.667296 0.198233 +1.392602 0.640276 0.203938 +1.401703 0.627382 0.203938 +1.302064 0.557055 0.206547 +1.292963 0.56995 0.203938 +1.392602 0.640276 0.222725 +1.401703 0.627382 0.222725 +1.302064 0.557055 0.220117 +1.292963 0.56995 0.222725 +numsurf 15 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +3 0 0 +7 0 0 +8 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +11 0 0 +9 0 0 +SURF 0x20 +mat 2 +refs 4 +7 0 0 +4 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 4 +10 0 0 +8 0 0 +9 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 4 +14 0 0 +15 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 4 +16 0 0 +19 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 2 +refs 4 +12 0 0 +16 0 0 +17 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 4 +13 0 0 +17 0 0 +18 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +14 0 0 +18 0 0 +19 0 0 +15 0 0 +SURF 0x20 +mat 2 +refs 4 +15 0 0 +19 0 0 +16 0 0 +12 0 0 +kids 0 +OBJECT poly +name "brake" +data 8 +Cube.005 +crease 30.000000 +numvert 24 +1.381518 0.678926 0.302236 +1.415857 0.630274 0.302236 +1.415857 0.630274 0.361785 +1.381518 0.678926 0.361785 +1.393326 0.687259 0.302236 +1.427665 0.638608 0.302236 +1.427665 0.638608 0.361785 +1.393326 0.687259 0.361785 +1.388131 0.69462 0.352913 +1.388131 0.69462 0.311108 +1.376323 0.686286 0.352913 +1.376323 0.686286 0.311108 +1.431035 0.633833 0.352913 +1.431035 0.633833 0.311108 +1.419227 0.625499 0.352913 +1.419227 0.625499 0.311108 +1.394184 0.659266 0.322617 +1.403285 0.646371 0.322617 +1.303646 0.576045 0.322617 +1.294545 0.58894 0.322617 +1.394184 0.659266 0.341404 +1.403285 0.646371 0.341404 +1.303646 0.576045 0.341404 +1.294545 0.58894 0.341404 +numsurf 20 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +3 0 0 +7 0 0 +8 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +11 0 0 +9 0 0 +SURF 0x20 +mat 2 +refs 4 +7 0 0 +4 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 4 +10 0 0 +8 0 0 +9 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 4 +6 0 0 +2 0 0 +14 0 0 +12 0 0 +SURF 0x20 +mat 2 +refs 4 +1 0 0 +5 0 0 +13 0 0 +15 0 0 +SURF 0x20 +mat 2 +refs 4 +5 0 0 +6 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +1 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +15 0 0 +13 0 0 +12 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +18 0 0 +19 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 2 +refs 4 +20 0 0 +23 0 0 +22 0 0 +21 0 0 +SURF 0x20 +mat 2 +refs 4 +16 0 0 +20 0 0 +21 0 0 +17 0 0 +SURF 0x20 +mat 2 +refs 4 +17 0 0 +21 0 0 +22 0 0 +18 0 0 +SURF 0x20 +mat 2 +refs 4 +18 0 0 +22 0 0 +23 0 0 +19 0 0 +SURF 0x20 +mat 2 +refs 4 +19 0 0 +23 0 0 +20 0 0 +16 0 0 +kids 0 +OBJECT poly +name "chassis" +data 5 +Plane +crease 30.000000 +numvert 89 +1.242833 1.315938 -0.50941 +1.242833 1.315938 0.509259 +1.242833 1.315938 0.145319 +1.242833 1.315938 -0.145545 +1.518134 0.891516 -0.647427 +1.656589 1.316115 0.722568 +1.896855 1.316115 0.722568 +1.656589 1.316115 -0.722712 +1.896855 1.316115 -0.722712 +1.534289 1.316115 0.715692 +1.548011 1.316115 0.716182 +1.534284 1.316115 -0.714961 +1.548011 1.316115 -0.71633 +2.173521 1.316115 0.728086 +2.173521 1.316115 -0.72823 +1.951923 1.316115 0.722568 +1.951923 1.316115 -0.722712 +2.712724 1.316115 0.728086 +2.941999 1.316115 0.728086 +2.941999 1.316115 -0.72823 +2.712724 1.316115 -0.72823 +2.971142 1.316115 0.716074 +2.971142 1.316115 -0.716218 +2.982603 1.316115 0.657892 +2.982603 1.316115 -0.658038 +1.397634 0.954946 -0.593877 +1.397634 0.945197 -0.429886 +1.397634 0.967618 -0.638363 +1.51813 0.891499 0.64976 +1.397634 0.967617 0.638214 +1.397634 0.954946 0.600789 +1.397634 0.945197 0.429732 +1.397634 0.945421 0.13399 +1.397634 0.945421 -0.134212 +1.441943 0.532806 -0.647957 +1.441943 0.532806 0.647804 +1.776722 0.532506 0.722568 +1.776722 0.532506 -0.722712 +1.463898 0.532671 0.670597 +1.498218 0.532565 0.693389 +1.548011 0.532512 0.716182 +1.463898 0.532671 -0.670748 +1.498218 0.532565 -0.693539 +1.548011 0.532512 -0.71633 +2.136375 0.919757 0.728086 +2.083995 0.867142 0.728086 +2.136375 0.919757 -0.72823 +2.083995 0.867142 -0.72823 +2.050542 0.532615 -0.722712 +2.2796 0.97658 0.728086 +2.194128 0.957639 0.728086 +2.194128 0.957639 -0.72823 +2.2796 0.97658 -0.72823 +2.66099 0.97658 0.728086 +2.941999 0.97658 0.728086 +2.941999 0.97658 -0.72823 +2.66099 0.97658 -0.72823 +2.971142 0.97658 0.716074 +2.971142 0.97658 -0.716218 +2.982603 0.97658 0.657892 +2.982603 0.97658 -0.658038 +2.2796 0.97658 0.43762 +2.66099 0.97658 0.43762 +2.941999 0.97658 0.43762 +2.941999 0.97658 -0.437764 +2.66099 0.97658 -0.437764 +2.2796 0.97658 -0.437764 +2.050542 0.532615 0.43762 +2.050542 0.532615 0.728086 +2.050542 0.532615 -0.437764 +2.165071 0.754597 0.43762 +2.165071 0.754598 -0.437764 +2.941999 0.956496 0.43762 +2.66099 0.956496 0.43762 +2.941999 0.956496 -0.437764 +2.66099 0.956496 -0.437764 +2.578908 0.620588 0.43762 +2.578908 0.620588 -0.437764 +1.185767 0.762674 -0.536874 +1.185767 0.762674 0.536721 +1.320322 0.910819 0.001089 +1.320322 0.929915 -0.638363 +1.320322 0.929915 0.638214 +3.008085 1.311397 -0.753878 +3.008085 1.311397 0.753876 +1.147689 1.311397 0.753875 +1.147689 1.311397 -0.753878 +1.828386 1.311397 0.753875 +1.828386 1.311397 -0.753878 +numsurf 123 +SURF 0x10 +mat 1 +refs 4 +2 0.0 1.0 +1 0.0 0.0 +31 1.0 0.0 +32 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +3 0.0 1.0 +2 0.0 0.0 +32 1.0 0.0 +33 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +3 0.0 0.0 +33 1.0 0.0 +26 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +6 0.0 0.0 +36 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +8 0.0 1.0 +7 0.0 0.0 +37 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +28 0.0 1.0 +9 0.0 0.0 +38 1.0 0.0 +35 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +9 0.0 1.0 +39 0.0 0.0 +38 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +10 0.0 1.0 +5 0.0 0.0 +36 1.0 0.0 +40 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +9 0.0 1.0 +10 0.0 0.0 +40 1.0 0.0 +39 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +11 0.0 1.0 +4 0.0 0.0 +34 1.0 0.0 +41 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +11 0.0 1.0 +41 0.0 0.0 +42 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +12 0.0 1.0 +11 0.0 0.0 +42 1.0 0.0 +43 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +7 0.0 1.0 +12 0.0 0.0 +43 1.0 0.0 +37 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +44 0.0 0.0 +45 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.0 1.0 +47 0.0 0.0 +46 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +6 0.0 1.0 +15 0.0 0.0 +68 1.0 0.0 +36 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +15 0.0 1.0 +13 0.0 0.0 +45 1.0 0.0 +68 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +14 0.0 1.0 +16 0.0 0.0 +48 1.0 0.0 +47 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +16 0.0 1.0 +8 0.0 0.0 +37 1.0 0.0 +48 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +49 0.0 0.0 +50 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +50 0.0 0.0 +44 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.0 1.0 +46 0.0 0.0 +51 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.0 1.0 +51 0.0 0.0 +52 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +13 0.0 1.0 +17 0.0 0.0 +53 1.0 0.0 +49 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +17 0.0 1.0 +18 0.0 0.0 +54 1.0 0.0 +53 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +19 0.0 1.0 +20 0.0 0.0 +56 1.0 0.0 +55 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +20 0.0 1.0 +14 0.0 0.0 +52 1.0 0.0 +56 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +18 0.0 1.0 +21 0.0 0.0 +57 1.0 0.0 +54 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +22 0.0 1.0 +19 0.0 0.0 +55 1.0 0.0 +58 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +21 0.0 1.0 +23 0.0 0.0 +59 1.0 0.0 +57 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +24 0.0 1.0 +22 0.0 0.0 +58 1.0 0.0 +60 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +23 0.0 1.0 +24 0.0 0.0 +60 1.0 0.0 +59 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +49 0.0 1.0 +53 0.0 0.0 +62 1.0 0.0 +61 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +53 0.0 1.0 +54 0.0 0.0 +63 1.0 0.0 +62 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +55 0.0 1.0 +56 0.0 0.0 +65 1.0 0.0 +64 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +56 0.0 1.0 +52 0.0 0.0 +66 1.0 0.0 +65 1.0 1.0 +SURF 0x00 +mat 1 +refs 3 +55 0.0 1.0 +64 0.0 0.0 +58 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +58 0.0 1.0 +64 0.0 0.0 +60 1.0 0.0 +SURF 0x00 +mat 1 +refs 4 +59 0.0 1.0 +60 0.0 0.0 +64 1.0 0.0 +63 1.0 1.0 +SURF 0x00 +mat 1 +refs 3 +57 0.0 1.0 +59 0.0 0.0 +63 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +54 0.0 1.0 +57 0.0 0.0 +63 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +70 0.0 1.0 +68 0.0 0.0 +49 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +61 0.0 1.0 +70 0.0 0.0 +49 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +70 0.0 1.0 +67 0.0 0.0 +68 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +71 0.0 1.0 +52 0.0 0.0 +48 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +69 0.0 1.0 +71 0.0 0.0 +48 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +71 0.0 1.0 +66 0.0 0.0 +52 1.0 0.0 +SURF 0x00 +mat 1 +refs 4 +62 0.0 1.0 +63 0.0 0.0 +72 1.0 0.0 +73 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +64 0.0 1.0 +65 0.0 0.0 +75 1.0 0.0 +74 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +63 0.0 1.0 +64 0.0 0.0 +74 1.0 0.0 +72 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +72 0.0 1.0 +74 0.0 0.0 +75 1.0 0.0 +73 1.0 1.0 +SURF 0x00 +mat 1 +refs 3 +61 0.0 1.0 +76 0.0 0.0 +67 1.0 0.0 +SURF 0x00 +mat 1 +refs 4 +61 0.0 1.0 +62 0.0 0.0 +73 1.0 0.0 +76 1.0 1.0 +SURF 0x00 +mat 1 +refs 3 +66 0.0 1.0 +69 0.0 0.0 +77 1.0 0.0 +SURF 0x00 +mat 1 +refs 4 +65 0.0 1.0 +66 0.0 0.0 +77 1.0 0.0 +75 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +36 0.0 1.0 +37 0.0 0.0 +43 1.0 0.0 +40 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +39 0.0 1.0 +40 0.0 0.0 +43 1.0 0.0 +42 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +38 0.0 1.0 +39 0.0 0.0 +42 1.0 0.0 +41 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +34 0.0 1.0 +35 0.0 0.0 +38 1.0 0.0 +41 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +35 0.0 1.0 +34 0.0 0.0 +78 1.0 0.0 +79 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 1.0 +35 0.0 0.0 +79 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +78 0.0 0.0 +34 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +25 0.0 1.0 +26 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +27 0.0 1.0 +25 0.0 0.0 +80 1.0 0.0 +81 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +30 0.0 1.0 +29 0.0 0.0 +82 1.0 0.0 +80 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +31 0.0 1.0 +30 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +32 0.0 1.0 +31 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +33 0.0 1.0 +32 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +26 0.0 1.0 +33 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +78 0.0 1.0 +81 0.0 0.0 +80 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +78 0.0 1.0 +80 0.0 0.0 +79 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +79 0.0 1.0 +80 0.0 0.0 +82 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 1.0 +79 0.0 0.0 +82 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 1.0 +82 0.0 0.0 +29 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +81 0.0 0.0 +78 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +27 0.0 0.0 +81 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +49 0.0 1.0 +68 0.0 0.0 +50 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +50 0.0 0.0 +68 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 0.0 1.0 +68 0.0 0.0 +45 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +46 0.0 1.0 +47 0.0 0.0 +48 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +46 0.0 1.0 +48 0.0 0.0 +51 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +48 0.0 1.0 +52 0.0 0.0 +51 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +25 0.0 0.0 +27 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +26 0.0 0.0 +25 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +26 0.0 0.0 +4 1.0 0.0 +11 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 1.0 +29 0.0 0.0 +30 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 1.0 +30 0.0 0.0 +31 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +1 0.0 1.0 +9 0.0 0.0 +28 1.0 0.0 +31 1.0 1.0 +SURF 0x00 +mat 1 +refs 3 +1 0.0 1.0 +2 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +9 0.0 1.0 +1 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +2 0.0 1.0 +86 0.0 0.0 +85 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +2 0.0 1.0 +3 0.0 0.0 +86 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +0 0.0 1.0 +86 0.0 0.0 +3 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +0 0.0 1.0 +11 0.0 0.0 +86 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +12 0.0 1.0 +86 0.0 0.0 +11 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +7 0.0 1.0 +86 0.0 0.0 +12 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +14 0.0 1.0 +83 0.0 0.0 +7 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +19 0.0 1.0 +83 0.0 0.0 +14 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +16 0.0 1.0 +14 0.0 0.0 +7 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +19 0.0 1.0 +14 0.0 0.0 +20 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +16 0.0 1.0 +7 0.0 0.0 +8 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +22 0.0 1.0 +24 0.0 0.0 +83 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +19 0.0 1.0 +22 0.0 0.0 +83 1.0 0.0 +SURF 0x10 +mat 1 +refs 4 +23 0.0 1.0 +84 0.0 0.0 +83 1.0 0.0 +24 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +21 0.0 1.0 +84 0.0 0.0 +23 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +18 0.0 1.0 +84 0.0 0.0 +21 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +10 0.0 1.0 +9 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +5 0.0 1.0 +10 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +6 0.0 1.0 +5 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +15 0.0 1.0 +6 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +13 0.0 1.0 +15 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +17 0.0 1.0 +13 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +18 0.0 1.0 +17 0.0 0.0 +85 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +85 0.0 1.0 +87 0.0 0.0 +18 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +87 0.0 1.0 +84 0.0 0.0 +18 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +83 0.0 1.0 +88 0.0 0.0 +7 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +88 0.0 1.0 +86 0.0 0.0 +7 1.0 0.0 +SURF 0x00 +mat 1 +refs 4 +73 0.0 1.0 +75 0.0 0.0 +77 1.0 0.0 +76 1.0 1.0 +SURF 0x00 +mat 1 +refs 3 +48 0.0 1.0 +37 0.0 0.0 +36 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +69 0.0 1.0 +48 0.0 0.0 +36 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +67 0.0 1.0 +69 0.0 0.0 +36 1.0 0.0 +SURF 0x00 +mat 1 +refs 3 +68 0.0 1.0 +67 0.0 0.0 +36 1.0 0.0 +SURF 0x00 +mat 1 +refs 4 +67 0.0 1.0 +76 0.0 0.0 +77 1.0 0.0 +69 1.0 1.0 +kids 0 +OBJECT poly +name "chassis.001" +data 9 +Plane.011 +crease 30.000000 +numvert 145 +-0.417792 1.157151 -0.043253 +-0.429838 1.157151 -0.048243 +-0.442766 1.157151 -0.049945 +-0.455694 1.157151 -0.048243 +-0.46774 1.157151 -0.043253 +-0.478085 1.157151 -0.035315 +-0.486023 1.157151 -0.024971 +-0.491013 1.157151 -0.012924 +-0.492715 1.157151 4e-06 +-0.491013 1.157151 0.012931 +-0.486023 1.157151 0.024978 +-0.478085 1.157151 0.035323 +-0.46774 1.157151 0.043261 +-0.455694 1.157151 0.048251 +-0.442766 1.157151 0.049952 +-0.429838 1.157151 0.048251 +-0.417792 1.157151 0.043261 +-0.407447 1.157151 0.035323 +-0.399509 1.157151 0.024978 +-0.394519 1.157151 0.012931 +-0.392817 1.157151 4e-06 +-0.394519 1.157151 -0.012924 +-0.399509 1.157151 -0.024971 +-0.407447 1.157151 -0.035315 +-0.420765 1.258254 -0.038104 +-0.411651 1.258254 -0.031111 +-0.431377 1.258254 -0.0425 +-0.442766 1.258254 -0.043999 +-0.454155 1.258254 -0.0425 +-0.464767 1.258254 -0.038104 +-0.473881 1.258254 -0.031111 +-0.480874 1.258254 -0.021998 +-0.485269 1.258254 -0.011385 +-0.486769 1.258254 4e-06 +-0.485269 1.258254 0.011393 +-0.480874 1.258254 0.022005 +-0.473881 1.258254 0.031118 +-0.464767 1.258254 0.038111 +-0.454155 1.258254 0.042507 +-0.442766 1.258254 0.044007 +-0.431377 1.258254 0.042507 +-0.420765 1.258254 0.038111 +-0.411651 1.258254 0.031118 +-0.404658 1.258254 0.022005 +-0.400262 1.258254 0.011393 +-0.398763 1.258254 4e-06 +-0.400262 1.258254 -0.011385 +-0.404658 1.258254 -0.021998 +-0.409348 1.263506 -0.057878 +-0.395506 1.263506 -0.047256 +-0.425468 1.263506 -0.064555 +-0.442766 1.263506 -0.066832 +-0.460064 1.263506 -0.064555 +-0.476184 1.263506 -0.057878 +-0.490026 1.263506 -0.047256 +-0.500648 1.263506 -0.033414 +-0.507325 1.263506 -0.017295 +-0.509602 1.263506 4e-06 +-0.507325 1.263506 0.017302 +-0.500648 1.263506 0.033422 +-0.490026 1.263506 0.047264 +-0.476184 1.263506 0.057885 +-0.460064 1.263506 0.064562 +-0.442766 1.263506 0.06684 +-0.425467 1.263506 0.064562 +-0.409348 1.263506 0.057885 +-0.395506 1.263506 0.047264 +-0.384884 1.263506 0.033422 +-0.378207 1.263506 0.017302 +-0.37593 1.263506 4e-06 +-0.378207 1.263506 -0.017295 +-0.384884 1.263506 -0.033414 +-0.409348 1.27401 -0.057878 +-0.395506 1.27401 -0.047256 +-0.425468 1.27401 -0.064555 +-0.442766 1.27401 -0.066832 +-0.460064 1.27401 -0.064555 +-0.476184 1.27401 -0.057878 +-0.490026 1.27401 -0.047256 +-0.500648 1.27401 -0.033414 +-0.507325 1.27401 -0.017295 +-0.509602 1.27401 4e-06 +-0.507325 1.27401 0.017302 +-0.500648 1.27401 0.033422 +-0.490026 1.27401 0.047264 +-0.476184 1.27401 0.057885 +-0.460064 1.27401 0.064562 +-0.442766 1.27401 0.06684 +-0.425467 1.27401 0.064562 +-0.409348 1.27401 0.057885 +-0.395506 1.27401 0.047264 +-0.384884 1.27401 0.033422 +-0.378207 1.27401 0.017302 +-0.37593 1.27401 4e-06 +-0.378207 1.27401 -0.017295 +-0.384884 1.27401 -0.033414 +-0.432265 1.27401 -0.010498 +-0.43534 1.27401 -0.012858 +-0.438922 1.27401 -0.014341 +-0.442766 1.27401 -0.014847 +-0.44661 1.27401 -0.014341 +-0.450192 1.27401 -0.012858 +-0.453267 1.27401 -0.010498 +-0.455627 1.27401 -0.007422 +-0.457111 1.27401 -0.00384 +-0.457617 1.27401 4e-06 +-0.457111 1.27401 0.003848 +-0.455627 1.27401 0.007429 +-0.453267 1.27401 0.010505 +-0.450192 1.27401 0.012865 +-0.44661 1.27401 0.014349 +-0.442766 1.27401 0.014855 +-0.438922 1.27401 0.014349 +-0.43534 1.27401 0.012865 +-0.432265 1.27401 0.010505 +-0.429904 1.27401 0.007429 +-0.428421 1.27401 0.003848 +-0.427915 1.27401 4e-06 +-0.428421 1.27401 -0.00384 +-0.429904 1.27401 -0.007422 +-0.432265 1.280575 -0.010498 +-0.43534 1.280575 -0.012858 +-0.438922 1.280575 -0.014341 +-0.442766 1.280575 -0.014847 +-0.44661 1.280575 -0.014341 +-0.450192 1.280575 -0.012858 +-0.453267 1.280575 -0.010498 +-0.455627 1.280575 -0.007422 +-0.457111 1.280575 -0.00384 +-0.457617 1.280575 4e-06 +-0.457111 1.280575 0.003848 +-0.455627 1.280575 0.007429 +-0.453267 1.280575 0.010505 +-0.450192 1.280575 0.012865 +-0.44661 1.280575 0.014349 +-0.442766 1.280575 0.014855 +-0.438922 1.280575 0.014349 +-0.43534 1.280575 0.012865 +-0.432265 1.280575 0.010505 +-0.429904 1.280575 0.007429 +-0.428421 1.280575 0.003848 +-0.427915 1.280575 4e-06 +-0.428421 1.280575 -0.00384 +-0.429904 1.280575 -0.007422 +-0.442766 1.280575 4e-06 +numsurf 144 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +23 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +1 0 0 +26 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 4 +1 0 0 +2 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 4 +3 0 0 +2 0 0 +27 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 4 +3 0 0 +4 0 0 +29 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +5 0 0 +30 0 0 +29 0 0 +SURF 0x20 +mat 1 +refs 4 +6 0 0 +5 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +7 0 0 +6 0 0 +31 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 4 +8 0 0 +7 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 4 +9 0 0 +8 0 0 +33 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 4 +10 0 0 +9 0 0 +34 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 4 +10 0 0 +11 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 4 +12 0 0 +11 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 4 +13 0 0 +12 0 0 +37 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 4 +14 0 0 +13 0 0 +38 0 0 +39 0 0 +SURF 0x20 +mat 1 +refs 4 +15 0 0 +14 0 0 +39 0 0 +40 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +15 0 0 +40 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +17 0 0 +42 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 4 +18 0 0 +17 0 0 +42 0 0 +43 0 0 +SURF 0x20 +mat 1 +refs 4 +19 0 0 +18 0 0 +43 0 0 +44 0 0 +SURF 0x20 +mat 1 +refs 4 +20 0 0 +19 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 1 +refs 4 +21 0 0 +20 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 1 +refs 4 +22 0 0 +21 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 1 +refs 4 +23 0 0 +22 0 0 +47 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 4 +24 0 0 +25 0 0 +49 0 0 +48 0 0 +SURF 0x20 +mat 1 +refs 4 +24 0 0 +26 0 0 +50 0 0 +48 0 0 +SURF 0x20 +mat 1 +refs 4 +26 0 0 +27 0 0 +51 0 0 +50 0 0 +SURF 0x20 +mat 1 +refs 4 +28 0 0 +27 0 0 +51 0 0 +52 0 0 +SURF 0x20 +mat 1 +refs 4 +28 0 0 +29 0 0 +53 0 0 +52 0 0 +SURF 0x20 +mat 1 +refs 4 +29 0 0 +30 0 0 +54 0 0 +53 0 0 +SURF 0x20 +mat 1 +refs 4 +31 0 0 +30 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 4 +32 0 0 +31 0 0 +55 0 0 +56 0 0 +SURF 0x20 +mat 1 +refs 4 +33 0 0 +32 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 4 +34 0 0 +33 0 0 +57 0 0 +58 0 0 +SURF 0x20 +mat 1 +refs 4 +35 0 0 +34 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 4 +35 0 0 +36 0 0 +60 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 4 +37 0 0 +36 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 1 +refs 4 +38 0 0 +37 0 0 +61 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 4 +39 0 0 +38 0 0 +62 0 0 +63 0 0 +SURF 0x20 +mat 1 +refs 4 +40 0 0 +39 0 0 +63 0 0 +64 0 0 +SURF 0x20 +mat 1 +refs 4 +41 0 0 +40 0 0 +64 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 4 +41 0 0 +42 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 4 +43 0 0 +42 0 0 +66 0 0 +67 0 0 +SURF 0x20 +mat 1 +refs 4 +44 0 0 +43 0 0 +67 0 0 +68 0 0 +SURF 0x20 +mat 1 +refs 4 +45 0 0 +44 0 0 +68 0 0 +69 0 0 +SURF 0x20 +mat 1 +refs 4 +46 0 0 +45 0 0 +69 0 0 +70 0 0 +SURF 0x20 +mat 1 +refs 4 +47 0 0 +46 0 0 +70 0 0 +71 0 0 +SURF 0x20 +mat 1 +refs 4 +25 0 0 +47 0 0 +71 0 0 +49 0 0 +SURF 0x20 +mat 1 +refs 4 +48 0 0 +49 0 0 +73 0 0 +72 0 0 +SURF 0x20 +mat 1 +refs 4 +48 0 0 +50 0 0 +74 0 0 +72 0 0 +SURF 0x20 +mat 1 +refs 4 +50 0 0 +51 0 0 +75 0 0 +74 0 0 +SURF 0x20 +mat 1 +refs 4 +52 0 0 +51 0 0 +75 0 0 +76 0 0 +SURF 0x20 +mat 1 +refs 4 +52 0 0 +53 0 0 +77 0 0 +76 0 0 +SURF 0x20 +mat 1 +refs 4 +53 0 0 +54 0 0 +78 0 0 +77 0 0 +SURF 0x20 +mat 1 +refs 4 +55 0 0 +54 0 0 +78 0 0 +79 0 0 +SURF 0x20 +mat 1 +refs 4 +56 0 0 +55 0 0 +79 0 0 +80 0 0 +SURF 0x20 +mat 1 +refs 4 +57 0 0 +56 0 0 +80 0 0 +81 0 0 +SURF 0x20 +mat 1 +refs 4 +58 0 0 +57 0 0 +81 0 0 +82 0 0 +SURF 0x20 +mat 1 +refs 4 +59 0 0 +58 0 0 +82 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 4 +59 0 0 +60 0 0 +84 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 4 +61 0 0 +60 0 0 +84 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 4 +62 0 0 +61 0 0 +85 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 4 +63 0 0 +62 0 0 +86 0 0 +87 0 0 +SURF 0x20 +mat 1 +refs 4 +64 0 0 +63 0 0 +87 0 0 +88 0 0 +SURF 0x20 +mat 1 +refs 4 +65 0 0 +64 0 0 +88 0 0 +89 0 0 +SURF 0x20 +mat 1 +refs 4 +65 0 0 +66 0 0 +90 0 0 +89 0 0 +SURF 0x20 +mat 1 +refs 4 +67 0 0 +66 0 0 +90 0 0 +91 0 0 +SURF 0x20 +mat 1 +refs 4 +68 0 0 +67 0 0 +91 0 0 +92 0 0 +SURF 0x20 +mat 1 +refs 4 +69 0 0 +68 0 0 +92 0 0 +93 0 0 +SURF 0x20 +mat 1 +refs 4 +70 0 0 +69 0 0 +93 0 0 +94 0 0 +SURF 0x20 +mat 1 +refs 4 +71 0 0 +70 0 0 +94 0 0 +95 0 0 +SURF 0x20 +mat 1 +refs 4 +49 0 0 +71 0 0 +95 0 0 +73 0 0 +SURF 0x20 +mat 1 +refs 4 +72 0 0 +73 0 0 +96 0 0 +97 0 0 +SURF 0x20 +mat 1 +refs 4 +72 0 0 +74 0 0 +98 0 0 +97 0 0 +SURF 0x20 +mat 1 +refs 4 +74 0 0 +75 0 0 +99 0 0 +98 0 0 +SURF 0x20 +mat 1 +refs 4 +76 0 0 +75 0 0 +99 0 0 +100 0 0 +SURF 0x20 +mat 1 +refs 4 +76 0 0 +77 0 0 +101 0 0 +100 0 0 +SURF 0x20 +mat 1 +refs 4 +77 0 0 +78 0 0 +102 0 0 +101 0 0 +SURF 0x20 +mat 1 +refs 4 +79 0 0 +78 0 0 +102 0 0 +103 0 0 +SURF 0x20 +mat 1 +refs 4 +80 0 0 +79 0 0 +103 0 0 +104 0 0 +SURF 0x20 +mat 1 +refs 4 +81 0 0 +80 0 0 +104 0 0 +105 0 0 +SURF 0x20 +mat 1 +refs 4 +82 0 0 +81 0 0 +105 0 0 +106 0 0 +SURF 0x20 +mat 1 +refs 4 +83 0 0 +82 0 0 +106 0 0 +107 0 0 +SURF 0x20 +mat 1 +refs 4 +83 0 0 +84 0 0 +108 0 0 +107 0 0 +SURF 0x20 +mat 1 +refs 4 +85 0 0 +84 0 0 +108 0 0 +109 0 0 +SURF 0x20 +mat 1 +refs 4 +86 0 0 +85 0 0 +109 0 0 +110 0 0 +SURF 0x20 +mat 1 +refs 4 +87 0 0 +86 0 0 +110 0 0 +111 0 0 +SURF 0x20 +mat 1 +refs 4 +88 0 0 +87 0 0 +111 0 0 +112 0 0 +SURF 0x20 +mat 1 +refs 4 +89 0 0 +88 0 0 +112 0 0 +113 0 0 +SURF 0x20 +mat 1 +refs 4 +89 0 0 +90 0 0 +114 0 0 +113 0 0 +SURF 0x20 +mat 1 +refs 4 +91 0 0 +90 0 0 +114 0 0 +115 0 0 +SURF 0x20 +mat 1 +refs 4 +92 0 0 +91 0 0 +115 0 0 +116 0 0 +SURF 0x20 +mat 1 +refs 4 +93 0 0 +92 0 0 +116 0 0 +117 0 0 +SURF 0x20 +mat 1 +refs 4 +94 0 0 +93 0 0 +117 0 0 +118 0 0 +SURF 0x20 +mat 1 +refs 4 +95 0 0 +94 0 0 +118 0 0 +119 0 0 +SURF 0x20 +mat 1 +refs 4 +73 0 0 +95 0 0 +119 0 0 +96 0 0 +SURF 0x20 +mat 1 +refs 4 +97 0 0 +96 0 0 +120 0 0 +121 0 0 +SURF 0x20 +mat 1 +refs 4 +97 0 0 +98 0 0 +122 0 0 +121 0 0 +SURF 0x20 +mat 1 +refs 4 +98 0 0 +99 0 0 +123 0 0 +122 0 0 +SURF 0x20 +mat 1 +refs 4 +100 0 0 +99 0 0 +123 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 4 +100 0 0 +101 0 0 +125 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 4 +101 0 0 +102 0 0 +126 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 4 +103 0 0 +102 0 0 +126 0 0 +127 0 0 +SURF 0x20 +mat 1 +refs 4 +104 0 0 +103 0 0 +127 0 0 +128 0 0 +SURF 0x20 +mat 1 +refs 4 +105 0 0 +104 0 0 +128 0 0 +129 0 0 +SURF 0x20 +mat 1 +refs 4 +106 0 0 +105 0 0 +129 0 0 +130 0 0 +SURF 0x20 +mat 1 +refs 4 +107 0 0 +106 0 0 +130 0 0 +131 0 0 +SURF 0x20 +mat 1 +refs 4 +107 0 0 +108 0 0 +132 0 0 +131 0 0 +SURF 0x20 +mat 1 +refs 4 +109 0 0 +108 0 0 +132 0 0 +133 0 0 +SURF 0x20 +mat 1 +refs 4 +110 0 0 +109 0 0 +133 0 0 +134 0 0 +SURF 0x20 +mat 1 +refs 4 +111 0 0 +110 0 0 +134 0 0 +135 0 0 +SURF 0x20 +mat 1 +refs 4 +112 0 0 +111 0 0 +135 0 0 +136 0 0 +SURF 0x20 +mat 1 +refs 4 +113 0 0 +112 0 0 +136 0 0 +137 0 0 +SURF 0x20 +mat 1 +refs 4 +113 0 0 +114 0 0 +138 0 0 +137 0 0 +SURF 0x20 +mat 1 +refs 4 +115 0 0 +114 0 0 +138 0 0 +139 0 0 +SURF 0x20 +mat 1 +refs 4 +116 0 0 +115 0 0 +139 0 0 +140 0 0 +SURF 0x20 +mat 1 +refs 4 +117 0 0 +116 0 0 +140 0 0 +141 0 0 +SURF 0x20 +mat 1 +refs 4 +118 0 0 +117 0 0 +141 0 0 +142 0 0 +SURF 0x20 +mat 1 +refs 4 +119 0 0 +118 0 0 +142 0 0 +143 0 0 +SURF 0x20 +mat 1 +refs 4 +96 0 0 +119 0 0 +143 0 0 +120 0 0 +SURF 0x20 +mat 1 +refs 3 +121 0 0 +120 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +121 0 0 +122 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +122 0 0 +123 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +124 0 0 +123 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +124 0 0 +125 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +125 0 0 +126 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +127 0 0 +126 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +128 0 0 +127 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +129 0 0 +128 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +130 0 0 +129 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +131 0 0 +130 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +131 0 0 +132 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +133 0 0 +132 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +134 0 0 +133 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +135 0 0 +134 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +136 0 0 +135 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +137 0 0 +136 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +137 0 0 +138 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +139 0 0 +138 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +140 0 0 +139 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +141 0 0 +140 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +142 0 0 +141 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +143 0 0 +142 0 0 +144 0 0 +SURF 0x20 +mat 1 +refs 3 +120 0 0 +143 0 0 +144 0 0 +kids 0 +OBJECT poly +name "chassis.002" +data 9 +Plane.004 +crease 30.000000 +numvert 4 +2.283465 1.167867 0.715797 +2.34581 1.167867 0.715797 +2.283465 1.027411 0.715797 +2.34581 1.027411 0.715797 +numsurf 1 +SURF 0x20 +mat 1 +refs 4 +2 0 0 +0 0 0 +1 0 0 +3 0 0 +kids 0 +OBJECT poly +name "clutch" +data 8 +Cube.006 +crease 30.000000 +numvert 24 +1.381518 0.678926 0.44103 +1.415857 0.630274 0.44103 +1.415857 0.630274 0.500579 +1.381518 0.678926 0.500579 +1.393326 0.687259 0.44103 +1.427665 0.638608 0.44103 +1.427665 0.638608 0.500579 +1.393326 0.687259 0.500579 +1.388131 0.69462 0.491707 +1.388131 0.69462 0.449903 +1.376323 0.686286 0.491707 +1.376323 0.686286 0.449903 +1.431035 0.633833 0.491707 +1.431035 0.633833 0.449903 +1.419227 0.625499 0.491707 +1.419227 0.625499 0.449903 +1.394184 0.659266 0.461412 +1.403285 0.646371 0.461412 +1.303646 0.576045 0.461412 +1.294545 0.58894 0.461412 +1.394184 0.659266 0.480198 +1.403285 0.646371 0.480198 +1.303646 0.576045 0.480198 +1.294545 0.58894 0.480198 +numsurf 20 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +3 0 0 +7 0 0 +8 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +11 0 0 +9 0 0 +SURF 0x20 +mat 2 +refs 4 +7 0 0 +4 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 4 +10 0 0 +8 0 0 +9 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 4 +6 0 0 +2 0 0 +14 0 0 +12 0 0 +SURF 0x20 +mat 2 +refs 4 +1 0 0 +5 0 0 +13 0 0 +15 0 0 +SURF 0x20 +mat 2 +refs 4 +5 0 0 +6 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +1 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +15 0 0 +13 0 0 +12 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +18 0 0 +19 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 2 +refs 4 +20 0 0 +23 0 0 +22 0 0 +21 0 0 +SURF 0x20 +mat 2 +refs 4 +16 0 0 +20 0 0 +21 0 0 +17 0 0 +SURF 0x20 +mat 2 +refs 4 +17 0 0 +21 0 0 +22 0 0 +18 0 0 +SURF 0x20 +mat 2 +refs 4 +18 0 0 +22 0 0 +23 0 0 +19 0 0 +SURF 0x20 +mat 2 +refs 4 +19 0 0 +23 0 0 +20 0 0 +16 0 0 +kids 0 +OBJECT poly +name "findicator.L" +data 6 +Sphere +crease 30.000000 +numvert 91 +0.256972 0.827492 0.361613 +0.257676 0.827492 0.369655 +0.273515 0.839625 0.39495 +0.267807 0.837673 0.389586 +0.263176 0.835411 0.383372 +0.259765 0.832909 0.376497 +0.257676 0.830242 0.36917 +0.257676 0.832661 0.367774 +0.259765 0.837673 0.373747 +0.263176 0.842376 0.379351 +0.267807 0.846626 0.384417 +0.273515 0.850295 0.388789 +0.273515 0.858215 0.379351 +0.267807 0.853272 0.376497 +0.263176 0.847545 0.373191 +0.259765 0.841209 0.369533 +0.257676 0.834456 0.365634 +0.257676 0.835411 0.36301 +0.259765 0.84309 0.364364 +0.263176 0.850295 0.365634 +0.267807 0.856807 0.366782 +0.273515 0.862429 0.367774 +0.273515 0.862429 0.355453 +0.267807 0.856807 0.356444 +0.263176 0.850295 0.357592 +0.259765 0.84309 0.358863 +0.257676 0.835411 0.360217 +0.257676 0.834456 0.357592 +0.259765 0.841209 0.353694 +0.263176 0.847545 0.350036 +0.267807 0.853272 0.346729 +0.273515 0.858215 0.343875 +0.273515 0.850295 0.334437 +0.267807 0.846626 0.33881 +0.263176 0.842376 0.343875 +0.259765 0.837673 0.34948 +0.257676 0.832661 0.355453 +0.257676 0.830242 0.354056 +0.259765 0.832909 0.346729 +0.263176 0.835411 0.339854 +0.267807 0.837673 0.33364 +0.273515 0.839625 0.328277 +0.273515 0.827492 0.326137 +0.267807 0.827492 0.331845 +0.263176 0.827492 0.338458 +0.259765 0.827492 0.345774 +0.257676 0.827492 0.353571 +0.257676 0.824741 0.354056 +0.259765 0.822074 0.346729 +0.263176 0.819572 0.339854 +0.267807 0.817311 0.33364 +0.273515 0.815358 0.328277 +0.273515 0.804688 0.334437 +0.267807 0.808357 0.33881 +0.263176 0.812608 0.343875 +0.259765 0.817311 0.34948 +0.257676 0.822323 0.355453 +0.257676 0.820527 0.357592 +0.259765 0.813775 0.353694 +0.263176 0.807439 0.350036 +0.267807 0.801712 0.346729 +0.273515 0.796769 0.343875 +0.273515 0.792555 0.355453 +0.267807 0.798176 0.356444 +0.263176 0.804688 0.357592 +0.259765 0.811893 0.358863 +0.257676 0.819572 0.360217 +0.257676 0.819572 0.36301 +0.259765 0.811893 0.364364 +0.263176 0.804688 0.365634 +0.267807 0.798176 0.366782 +0.273515 0.792555 0.367774 +0.273515 0.796769 0.379351 +0.267807 0.801712 0.376497 +0.263176 0.807439 0.373191 +0.259765 0.813775 0.369533 +0.257676 0.820527 0.365634 +0.257676 0.822323 0.367774 +0.259765 0.817311 0.373747 +0.263176 0.812608 0.379351 +0.267807 0.808357 0.384417 +0.273515 0.804688 0.388789 +0.273515 0.815358 0.39495 +0.267807 0.817311 0.389586 +0.263176 0.819572 0.383372 +0.259765 0.822074 0.376497 +0.257676 0.824741 0.36917 +0.259765 0.827492 0.377452 +0.263176 0.827492 0.384769 +0.267807 0.827492 0.391381 +0.273515 0.827492 0.397089 +numsurf 90 +SURF 0x30 +mat 5 +refs 4 +90 0 0 +2 0 0 +3 0 0 +89 0 0 +SURF 0x30 +mat 5 +refs 4 +89 0 0 +3 0 0 +4 0 0 +88 0 0 +SURF 0x30 +mat 5 +refs 4 +88 0 0 +4 0 0 +5 0 0 +87 0 0 +SURF 0x30 +mat 5 +refs 4 +87 0 0 +5 0 0 +6 0 0 +1 0 0 +SURF 0x30 +mat 5 +refs 3 +6 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 5 +refs 3 +7 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 5 +refs 4 +5 0 0 +8 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 5 +refs 4 +4 0 0 +9 0 0 +8 0 0 +5 0 0 +SURF 0x30 +mat 5 +refs 4 +3 0 0 +10 0 0 +9 0 0 +4 0 0 +SURF 0x30 +mat 5 +refs 4 +2 0 0 +11 0 0 +10 0 0 +3 0 0 +SURF 0x30 +mat 5 +refs 4 +11 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x30 +mat 5 +refs 4 +10 0 0 +13 0 0 +14 0 0 +9 0 0 +SURF 0x30 +mat 5 +refs 4 +9 0 0 +14 0 0 +15 0 0 +8 0 0 +SURF 0x30 +mat 5 +refs 4 +8 0 0 +15 0 0 +16 0 0 +7 0 0 +SURF 0x30 +mat 5 +refs 3 +16 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 5 +refs 3 +17 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 5 +refs 4 +15 0 0 +18 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 5 +refs 4 +14 0 0 +19 0 0 +18 0 0 +15 0 0 +SURF 0x30 +mat 5 +refs 4 +13 0 0 +20 0 0 +19 0 0 +14 0 0 +SURF 0x30 +mat 5 +refs 4 +12 0 0 +21 0 0 +20 0 0 +13 0 0 +SURF 0x30 +mat 5 +refs 4 +21 0 0 +22 0 0 +23 0 0 +20 0 0 +SURF 0x30 +mat 5 +refs 4 +20 0 0 +23 0 0 +24 0 0 +19 0 0 +SURF 0x30 +mat 5 +refs 4 +19 0 0 +24 0 0 +25 0 0 +18 0 0 +SURF 0x30 +mat 5 +refs 4 +18 0 0 +25 0 0 +26 0 0 +17 0 0 +SURF 0x30 +mat 5 +refs 3 +26 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 5 +refs 3 +27 0 0 +0 0 0 +26 0 0 +SURF 0x30 +mat 5 +refs 4 +25 0 0 +28 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 5 +refs 4 +24 0 0 +29 0 0 +28 0 0 +25 0 0 +SURF 0x30 +mat 5 +refs 4 +23 0 0 +30 0 0 +29 0 0 +24 0 0 +SURF 0x30 +mat 5 +refs 4 +22 0 0 +31 0 0 +30 0 0 +23 0 0 +SURF 0x30 +mat 5 +refs 4 +31 0 0 +32 0 0 +33 0 0 +30 0 0 +SURF 0x30 +mat 5 +refs 4 +30 0 0 +33 0 0 +34 0 0 +29 0 0 +SURF 0x30 +mat 5 +refs 4 +29 0 0 +34 0 0 +35 0 0 +28 0 0 +SURF 0x30 +mat 5 +refs 4 +28 0 0 +35 0 0 +36 0 0 +27 0 0 +SURF 0x30 +mat 5 +refs 3 +36 0 0 +0 0 0 +27 0 0 +SURF 0x30 +mat 5 +refs 3 +37 0 0 +0 0 0 +36 0 0 +SURF 0x30 +mat 5 +refs 4 +35 0 0 +38 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 5 +refs 4 +34 0 0 +39 0 0 +38 0 0 +35 0 0 +SURF 0x30 +mat 5 +refs 4 +33 0 0 +40 0 0 +39 0 0 +34 0 0 +SURF 0x30 +mat 5 +refs 4 +32 0 0 +41 0 0 +40 0 0 +33 0 0 +SURF 0x30 +mat 5 +refs 4 +41 0 0 +42 0 0 +43 0 0 +40 0 0 +SURF 0x30 +mat 5 +refs 4 +40 0 0 +43 0 0 +44 0 0 +39 0 0 +SURF 0x30 +mat 5 +refs 4 +39 0 0 +44 0 0 +45 0 0 +38 0 0 +SURF 0x30 +mat 5 +refs 4 +38 0 0 +45 0 0 +46 0 0 +37 0 0 +SURF 0x30 +mat 5 +refs 3 +46 0 0 +0 0 0 +37 0 0 +SURF 0x30 +mat 5 +refs 3 +47 0 0 +0 0 0 +46 0 0 +SURF 0x30 +mat 5 +refs 4 +45 0 0 +48 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 5 +refs 4 +44 0 0 +49 0 0 +48 0 0 +45 0 0 +SURF 0x30 +mat 5 +refs 4 +43 0 0 +50 0 0 +49 0 0 +44 0 0 +SURF 0x30 +mat 5 +refs 4 +42 0 0 +51 0 0 +50 0 0 +43 0 0 +SURF 0x30 +mat 5 +refs 4 +51 0 0 +52 0 0 +53 0 0 +50 0 0 +SURF 0x30 +mat 5 +refs 4 +50 0 0 +53 0 0 +54 0 0 +49 0 0 +SURF 0x30 +mat 5 +refs 4 +49 0 0 +54 0 0 +55 0 0 +48 0 0 +SURF 0x30 +mat 5 +refs 4 +48 0 0 +55 0 0 +56 0 0 +47 0 0 +SURF 0x30 +mat 5 +refs 3 +56 0 0 +0 0 0 +47 0 0 +SURF 0x30 +mat 5 +refs 3 +57 0 0 +0 0 0 +56 0 0 +SURF 0x30 +mat 5 +refs 4 +55 0 0 +58 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 5 +refs 4 +54 0 0 +59 0 0 +58 0 0 +55 0 0 +SURF 0x30 +mat 5 +refs 4 +53 0 0 +60 0 0 +59 0 0 +54 0 0 +SURF 0x30 +mat 5 +refs 4 +52 0 0 +61 0 0 +60 0 0 +53 0 0 +SURF 0x30 +mat 5 +refs 4 +61 0 0 +62 0 0 +63 0 0 +60 0 0 +SURF 0x30 +mat 5 +refs 4 +60 0 0 +63 0 0 +64 0 0 +59 0 0 +SURF 0x30 +mat 5 +refs 4 +59 0 0 +64 0 0 +65 0 0 +58 0 0 +SURF 0x30 +mat 5 +refs 4 +58 0 0 +65 0 0 +66 0 0 +57 0 0 +SURF 0x30 +mat 5 +refs 3 +66 0 0 +0 0 0 +57 0 0 +SURF 0x30 +mat 5 +refs 3 +67 0 0 +0 0 0 +66 0 0 +SURF 0x30 +mat 5 +refs 4 +65 0 0 +68 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 5 +refs 4 +64 0 0 +69 0 0 +68 0 0 +65 0 0 +SURF 0x30 +mat 5 +refs 4 +63 0 0 +70 0 0 +69 0 0 +64 0 0 +SURF 0x30 +mat 5 +refs 4 +62 0 0 +71 0 0 +70 0 0 +63 0 0 +SURF 0x30 +mat 5 +refs 4 +71 0 0 +72 0 0 +73 0 0 +70 0 0 +SURF 0x30 +mat 5 +refs 4 +70 0 0 +73 0 0 +74 0 0 +69 0 0 +SURF 0x30 +mat 5 +refs 4 +69 0 0 +74 0 0 +75 0 0 +68 0 0 +SURF 0x30 +mat 5 +refs 4 +68 0 0 +75 0 0 +76 0 0 +67 0 0 +SURF 0x30 +mat 5 +refs 3 +76 0 0 +0 0 0 +67 0 0 +SURF 0x30 +mat 5 +refs 3 +77 0 0 +0 0 0 +76 0 0 +SURF 0x30 +mat 5 +refs 4 +75 0 0 +78 0 0 +77 0 0 +76 0 0 +SURF 0x30 +mat 5 +refs 4 +74 0 0 +79 0 0 +78 0 0 +75 0 0 +SURF 0x30 +mat 5 +refs 4 +73 0 0 +80 0 0 +79 0 0 +74 0 0 +SURF 0x30 +mat 5 +refs 4 +72 0 0 +81 0 0 +80 0 0 +73 0 0 +SURF 0x30 +mat 5 +refs 4 +81 0 0 +82 0 0 +83 0 0 +80 0 0 +SURF 0x30 +mat 5 +refs 4 +80 0 0 +83 0 0 +84 0 0 +79 0 0 +SURF 0x30 +mat 5 +refs 4 +79 0 0 +84 0 0 +85 0 0 +78 0 0 +SURF 0x30 +mat 5 +refs 4 +78 0 0 +85 0 0 +86 0 0 +77 0 0 +SURF 0x30 +mat 5 +refs 3 +86 0 0 +0 0 0 +77 0 0 +SURF 0x30 +mat 5 +refs 3 +1 0 0 +0 0 0 +86 0 0 +SURF 0x30 +mat 5 +refs 4 +85 0 0 +87 0 0 +1 0 0 +86 0 0 +SURF 0x30 +mat 5 +refs 4 +84 0 0 +88 0 0 +87 0 0 +85 0 0 +SURF 0x30 +mat 5 +refs 4 +83 0 0 +89 0 0 +88 0 0 +84 0 0 +SURF 0x30 +mat 5 +refs 4 +82 0 0 +90 0 0 +89 0 0 +83 0 0 +kids 0 +OBJECT poly +name "findicator.R" +data 10 +Sphere.001 +crease 30.000000 +numvert 91 +0.256972 0.827492 -0.361576 +0.257676 0.827492 -0.369618 +0.273515 0.839625 -0.394913 +0.267807 0.837673 -0.389549 +0.263176 0.835411 -0.383335 +0.259765 0.832909 -0.37646 +0.257676 0.830242 -0.369133 +0.257676 0.832661 -0.367736 +0.259765 0.837673 -0.37371 +0.263176 0.842376 -0.379314 +0.267807 0.846626 -0.38438 +0.273515 0.850295 -0.388752 +0.273515 0.858215 -0.379314 +0.267807 0.853272 -0.37646 +0.263176 0.847545 -0.373154 +0.259765 0.841209 -0.369496 +0.257676 0.834456 -0.365597 +0.257676 0.835411 -0.362972 +0.259765 0.84309 -0.364327 +0.263176 0.850295 -0.365597 +0.267807 0.856807 -0.366745 +0.273515 0.862429 -0.367736 +0.273515 0.862429 -0.355416 +0.267807 0.856807 -0.356407 +0.263176 0.850295 -0.357555 +0.259765 0.84309 -0.358826 +0.257676 0.835411 -0.36018 +0.257676 0.834456 -0.357555 +0.259765 0.841209 -0.353656 +0.263176 0.847545 -0.349998 +0.267807 0.853272 -0.346692 +0.273515 0.858215 -0.343838 +0.273515 0.850295 -0.3344 +0.267807 0.846626 -0.338773 +0.263176 0.842376 -0.343838 +0.259765 0.837673 -0.349443 +0.257676 0.832661 -0.355416 +0.257676 0.830242 -0.354019 +0.259765 0.832909 -0.346692 +0.263176 0.835411 -0.339817 +0.267807 0.837673 -0.333603 +0.273515 0.839625 -0.328239 +0.273515 0.827492 -0.3261 +0.267807 0.827492 -0.331808 +0.263176 0.827492 -0.338421 +0.259765 0.827492 -0.345737 +0.257676 0.827492 -0.353534 +0.257676 0.824741 -0.354019 +0.259765 0.822074 -0.346692 +0.263176 0.819572 -0.339817 +0.267807 0.817311 -0.333603 +0.273515 0.815358 -0.328239 +0.273515 0.804688 -0.3344 +0.267807 0.808357 -0.338772 +0.263176 0.812608 -0.343838 +0.259765 0.817311 -0.349443 +0.257676 0.822323 -0.355416 +0.257676 0.820527 -0.357555 +0.259765 0.813775 -0.353656 +0.263176 0.807439 -0.349998 +0.267807 0.801712 -0.346692 +0.273515 0.796769 -0.343838 +0.273515 0.792555 -0.355416 +0.267807 0.798176 -0.356407 +0.263176 0.804688 -0.357555 +0.259765 0.811893 -0.358826 +0.257676 0.819572 -0.36018 +0.257676 0.819572 -0.362972 +0.259765 0.811893 -0.364327 +0.263176 0.804688 -0.365597 +0.267807 0.798176 -0.366745 +0.273515 0.792555 -0.367736 +0.273515 0.796769 -0.379314 +0.267807 0.801712 -0.37646 +0.263176 0.807439 -0.373154 +0.259765 0.813775 -0.369496 +0.257676 0.820527 -0.365597 +0.257676 0.822323 -0.367736 +0.259765 0.817311 -0.37371 +0.263176 0.812608 -0.379314 +0.267807 0.808357 -0.38438 +0.273515 0.804688 -0.388752 +0.273515 0.815358 -0.394913 +0.267807 0.817311 -0.389549 +0.263176 0.819572 -0.383335 +0.259765 0.822074 -0.37646 +0.257676 0.824741 -0.369133 +0.259765 0.827492 -0.377415 +0.263176 0.827492 -0.384731 +0.267807 0.827492 -0.391344 +0.273515 0.827492 -0.397052 +numsurf 90 +SURF 0x30 +mat 5 +refs 4 +90 0 0 +89 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 5 +refs 4 +89 0 0 +88 0 0 +4 0 0 +3 0 0 +SURF 0x30 +mat 5 +refs 4 +88 0 0 +87 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 5 +refs 4 +87 0 0 +1 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 5 +refs 3 +1 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 5 +refs 3 +6 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 5 +refs 4 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 5 +refs 4 +4 0 0 +5 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 5 +refs 4 +3 0 0 +4 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 5 +refs 4 +2 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 5 +refs 4 +11 0 0 +10 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 5 +refs 4 +10 0 0 +9 0 0 +14 0 0 +13 0 0 +SURF 0x30 +mat 5 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 5 +refs 4 +8 0 0 +7 0 0 +16 0 0 +15 0 0 +SURF 0x30 +mat 5 +refs 3 +7 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 5 +refs 3 +16 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 5 +refs 4 +15 0 0 +16 0 0 +17 0 0 +18 0 0 +SURF 0x30 +mat 5 +refs 4 +14 0 0 +15 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 5 +refs 4 +13 0 0 +14 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 5 +refs 4 +12 0 0 +13 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 5 +refs 4 +21 0 0 +20 0 0 +23 0 0 +22 0 0 +SURF 0x30 +mat 5 +refs 4 +20 0 0 +19 0 0 +24 0 0 +23 0 0 +SURF 0x30 +mat 5 +refs 4 +19 0 0 +18 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 5 +refs 4 +18 0 0 +17 0 0 +26 0 0 +25 0 0 +SURF 0x30 +mat 5 +refs 3 +17 0 0 +0 0 0 +26 0 0 +SURF 0x30 +mat 5 +refs 3 +26 0 0 +0 0 0 +27 0 0 +SURF 0x30 +mat 5 +refs 4 +25 0 0 +26 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 5 +refs 4 +24 0 0 +25 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 5 +refs 4 +23 0 0 +24 0 0 +29 0 0 +30 0 0 +SURF 0x30 +mat 5 +refs 4 +22 0 0 +23 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 5 +refs 4 +31 0 0 +30 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 5 +refs 4 +30 0 0 +29 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 5 +refs 4 +29 0 0 +28 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 5 +refs 4 +28 0 0 +27 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 5 +refs 3 +27 0 0 +0 0 0 +36 0 0 +SURF 0x30 +mat 5 +refs 3 +36 0 0 +0 0 0 +37 0 0 +SURF 0x30 +mat 5 +refs 4 +35 0 0 +36 0 0 +37 0 0 +38 0 0 +SURF 0x30 +mat 5 +refs 4 +34 0 0 +35 0 0 +38 0 0 +39 0 0 +SURF 0x30 +mat 5 +refs 4 +33 0 0 +34 0 0 +39 0 0 +40 0 0 +SURF 0x30 +mat 5 +refs 4 +32 0 0 +33 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 5 +refs 4 +41 0 0 +40 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 5 +refs 4 +40 0 0 +39 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 5 +refs 4 +39 0 0 +38 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 5 +refs 4 +38 0 0 +37 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 5 +refs 3 +37 0 0 +0 0 0 +46 0 0 +SURF 0x30 +mat 5 +refs 3 +46 0 0 +0 0 0 +47 0 0 +SURF 0x30 +mat 5 +refs 4 +45 0 0 +46 0 0 +47 0 0 +48 0 0 +SURF 0x30 +mat 5 +refs 4 +44 0 0 +45 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 5 +refs 4 +43 0 0 +44 0 0 +49 0 0 +50 0 0 +SURF 0x30 +mat 5 +refs 4 +42 0 0 +43 0 0 +50 0 0 +51 0 0 +SURF 0x30 +mat 5 +refs 4 +51 0 0 +50 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 5 +refs 4 +50 0 0 +49 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 5 +refs 4 +49 0 0 +48 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 5 +refs 4 +48 0 0 +47 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 5 +refs 3 +47 0 0 +0 0 0 +56 0 0 +SURF 0x30 +mat 5 +refs 3 +56 0 0 +0 0 0 +57 0 0 +SURF 0x30 +mat 5 +refs 4 +55 0 0 +56 0 0 +57 0 0 +58 0 0 +SURF 0x30 +mat 5 +refs 4 +54 0 0 +55 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 5 +refs 4 +53 0 0 +54 0 0 +59 0 0 +60 0 0 +SURF 0x30 +mat 5 +refs 4 +52 0 0 +53 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 5 +refs 4 +61 0 0 +60 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 5 +refs 4 +60 0 0 +59 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 5 +refs 4 +59 0 0 +58 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 5 +refs 4 +58 0 0 +57 0 0 +66 0 0 +65 0 0 +SURF 0x30 +mat 5 +refs 3 +57 0 0 +0 0 0 +66 0 0 +SURF 0x30 +mat 5 +refs 3 +66 0 0 +0 0 0 +67 0 0 +SURF 0x30 +mat 5 +refs 4 +65 0 0 +66 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 5 +refs 4 +64 0 0 +65 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 5 +refs 4 +63 0 0 +64 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 5 +refs 4 +62 0 0 +63 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 5 +refs 4 +71 0 0 +70 0 0 +73 0 0 +72 0 0 +SURF 0x30 +mat 5 +refs 4 +70 0 0 +69 0 0 +74 0 0 +73 0 0 +SURF 0x30 +mat 5 +refs 4 +69 0 0 +68 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 5 +refs 4 +68 0 0 +67 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 5 +refs 3 +67 0 0 +0 0 0 +76 0 0 +SURF 0x30 +mat 5 +refs 3 +76 0 0 +0 0 0 +77 0 0 +SURF 0x30 +mat 5 +refs 4 +75 0 0 +76 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 5 +refs 4 +74 0 0 +75 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 5 +refs 4 +73 0 0 +74 0 0 +79 0 0 +80 0 0 +SURF 0x30 +mat 5 +refs 4 +72 0 0 +73 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 5 +refs 4 +81 0 0 +80 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 5 +refs 4 +80 0 0 +79 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 5 +refs 4 +79 0 0 +78 0 0 +85 0 0 +84 0 0 +SURF 0x30 +mat 5 +refs 4 +78 0 0 +77 0 0 +86 0 0 +85 0 0 +SURF 0x30 +mat 5 +refs 3 +77 0 0 +0 0 0 +86 0 0 +SURF 0x30 +mat 5 +refs 3 +86 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 5 +refs 4 +85 0 0 +86 0 0 +1 0 0 +87 0 0 +SURF 0x30 +mat 5 +refs 4 +84 0 0 +85 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 5 +refs 4 +83 0 0 +84 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 5 +refs 4 +82 0 0 +83 0 0 +89 0 0 +90 0 0 +kids 0 +OBJECT poly +name "fscrews.L" +data 12 +Cylinder.009 +crease 30.000000 +numvert 70 +0.454788 0.397752 0.703386 +0.45114 0.411367 0.703386 +0.461107 0.421334 0.703386 +0.474723 0.417686 0.703386 +0.478371 0.404071 0.703386 +0.468404 0.394104 0.703386 +0.454788 0.397752 0.675194 +0.45114 0.411367 0.675194 +0.461107 0.421334 0.675194 +0.474723 0.417686 0.675194 +0.478371 0.404071 0.675194 +0.468404 0.394104 0.675194 +0.464756 0.407719 0.703386 +0.464756 0.407719 0.675194 +0.526378 0.492535 0.675194 +0.526378 0.492535 0.703386 +0.514556 0.484858 0.675194 +0.527115 0.478458 0.675194 +0.538937 0.486135 0.675194 +0.538199 0.500212 0.675194 +0.52564 0.506611 0.675194 +0.513818 0.498934 0.675194 +0.514556 0.484858 0.703386 +0.527115 0.478458 0.703386 +0.538937 0.486135 0.703386 +0.538199 0.500212 0.703386 +0.52564 0.506611 0.703386 +0.513818 0.498934 0.703386 +0.628289 0.47406 0.703386 +0.639244 0.465189 0.703386 +0.637039 0.451267 0.703386 +0.623879 0.446216 0.703386 +0.612925 0.455087 0.703386 +0.61513 0.469009 0.703386 +0.628289 0.47406 0.675194 +0.639244 0.465189 0.675194 +0.637039 0.451267 0.675194 +0.623879 0.446216 0.675194 +0.612925 0.455087 0.675194 +0.61513 0.469009 0.675194 +0.626084 0.460138 0.703386 +0.626084 0.460138 0.675194 +0.626084 0.3553 0.675194 +0.626084 0.3553 0.703386 +0.631136 0.368459 0.675194 +0.617214 0.366254 0.675194 +0.612162 0.353095 0.675194 +0.621033 0.342141 0.675194 +0.634955 0.344346 0.675194 +0.640006 0.357505 0.675194 +0.631136 0.368459 0.703386 +0.617214 0.366254 0.703386 +0.612162 0.353095 0.703386 +0.621033 0.342141 0.703386 +0.634955 0.344346 0.703386 +0.640006 0.357505 0.703386 +0.532777 0.310344 0.703386 +0.518701 0.311082 0.703386 +0.512301 0.323641 0.703386 +0.519978 0.335463 0.703386 +0.534055 0.334725 0.703386 +0.540454 0.322166 0.703386 +0.532777 0.310344 0.675194 +0.518701 0.311082 0.675194 +0.512301 0.323641 0.675194 +0.519978 0.335463 0.675194 +0.534055 0.334725 0.675194 +0.540454 0.322166 0.675194 +0.526378 0.322903 0.703386 +0.526378 0.322903 0.675194 +numsurf 90 +SURF 0x20 +mat 6 +refs 3 +12 0 0 +0 0 0 +1 0 0 +SURF 0x20 +mat 6 +refs 3 +13 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 6 +refs 3 +12 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 6 +refs 3 +13 0 0 +8 0 0 +7 0 0 +SURF 0x20 +mat 6 +refs 3 +12 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 6 +refs 3 +13 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 6 +refs 3 +12 0 0 +3 0 0 +4 0 0 +SURF 0x20 +mat 6 +refs 3 +13 0 0 +10 0 0 +9 0 0 +SURF 0x20 +mat 6 +refs 3 +12 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 6 +refs 3 +13 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 6 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x20 +mat 6 +refs 3 +13 0 0 +6 0 0 +11 0 0 +SURF 0x20 +mat 6 +refs 4 +0 0 0 +6 0 0 +7 0 0 +1 0 0 +SURF 0x20 +mat 6 +refs 4 +1 0 0 +7 0 0 +8 0 0 +2 0 0 +SURF 0x20 +mat 6 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x20 +mat 6 +refs 4 +3 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x20 +mat 6 +refs 4 +4 0 0 +10 0 0 +11 0 0 +5 0 0 +SURF 0x20 +mat 6 +refs 4 +6 0 0 +0 0 0 +5 0 0 +11 0 0 +SURF 0x20 +mat 6 +refs 4 +22 0 0 +16 0 0 +21 0 0 +27 0 0 +SURF 0x20 +mat 6 +refs 4 +23 0 0 +17 0 0 +16 0 0 +22 0 0 +SURF 0x20 +mat 6 +refs 4 +24 0 0 +18 0 0 +17 0 0 +23 0 0 +SURF 0x20 +mat 6 +refs 4 +25 0 0 +19 0 0 +18 0 0 +24 0 0 +SURF 0x20 +mat 6 +refs 4 +26 0 0 +20 0 0 +19 0 0 +25 0 0 +SURF 0x20 +mat 6 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x20 +mat 6 +refs 3 +14 0 0 +21 0 0 +16 0 0 +SURF 0x20 +mat 6 +refs 3 +15 0 0 +22 0 0 +27 0 0 +SURF 0x20 +mat 6 +refs 3 +14 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 6 +refs 3 +15 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 6 +refs 3 +14 0 0 +17 0 0 +18 0 0 +SURF 0x20 +mat 6 +refs 3 +15 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 6 +refs 3 +14 0 0 +18 0 0 +19 0 0 +SURF 0x20 +mat 6 +refs 3 +15 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 6 +refs 3 +14 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 6 +refs 3 +15 0 0 +26 0 0 +25 0 0 +SURF 0x20 +mat 6 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 6 +refs 3 +15 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 6 +refs 3 +40 0 0 +28 0 0 +29 0 0 +SURF 0x20 +mat 6 +refs 3 +41 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 6 +refs 3 +40 0 0 +29 0 0 +30 0 0 +SURF 0x20 +mat 6 +refs 3 +41 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 6 +refs 3 +40 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 6 +refs 3 +41 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 6 +refs 3 +40 0 0 +31 0 0 +32 0 0 +SURF 0x20 +mat 6 +refs 3 +41 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 6 +refs 3 +40 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 6 +refs 3 +41 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 6 +refs 3 +40 0 0 +33 0 0 +28 0 0 +SURF 0x20 +mat 6 +refs 3 +41 0 0 +34 0 0 +39 0 0 +SURF 0x20 +mat 6 +refs 4 +28 0 0 +34 0 0 +35 0 0 +29 0 0 +SURF 0x20 +mat 6 +refs 4 +29 0 0 +35 0 0 +36 0 0 +30 0 0 +SURF 0x20 +mat 6 +refs 4 +30 0 0 +36 0 0 +37 0 0 +31 0 0 +SURF 0x20 +mat 6 +refs 4 +31 0 0 +37 0 0 +38 0 0 +32 0 0 +SURF 0x20 +mat 6 +refs 4 +32 0 0 +38 0 0 +39 0 0 +33 0 0 +SURF 0x20 +mat 6 +refs 4 +33 0 0 +39 0 0 +34 0 0 +28 0 0 +SURF 0x20 +mat 6 +refs 4 +50 0 0 +44 0 0 +49 0 0 +55 0 0 +SURF 0x20 +mat 6 +refs 4 +51 0 0 +45 0 0 +44 0 0 +50 0 0 +SURF 0x20 +mat 6 +refs 4 +52 0 0 +46 0 0 +45 0 0 +51 0 0 +SURF 0x20 +mat 6 +refs 4 +53 0 0 +47 0 0 +46 0 0 +52 0 0 +SURF 0x20 +mat 6 +refs 4 +54 0 0 +48 0 0 +47 0 0 +53 0 0 +SURF 0x20 +mat 6 +refs 4 +55 0 0 +49 0 0 +48 0 0 +54 0 0 +SURF 0x20 +mat 6 +refs 3 +42 0 0 +49 0 0 +44 0 0 +SURF 0x20 +mat 6 +refs 3 +43 0 0 +50 0 0 +55 0 0 +SURF 0x20 +mat 6 +refs 3 +42 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 6 +refs 3 +43 0 0 +51 0 0 +50 0 0 +SURF 0x20 +mat 6 +refs 3 +42 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 6 +refs 3 +43 0 0 +52 0 0 +51 0 0 +SURF 0x20 +mat 6 +refs 3 +42 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 6 +refs 3 +43 0 0 +53 0 0 +52 0 0 +SURF 0x20 +mat 6 +refs 3 +42 0 0 +47 0 0 +48 0 0 +SURF 0x20 +mat 6 +refs 3 +43 0 0 +54 0 0 +53 0 0 +SURF 0x20 +mat 6 +refs 3 +42 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 6 +refs 3 +43 0 0 +55 0 0 +54 0 0 +SURF 0x20 +mat 6 +refs 3 +68 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 6 +refs 3 +69 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 6 +refs 3 +68 0 0 +57 0 0 +58 0 0 +SURF 0x20 +mat 6 +refs 3 +69 0 0 +64 0 0 +63 0 0 +SURF 0x20 +mat 6 +refs 3 +68 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 6 +refs 3 +69 0 0 +65 0 0 +64 0 0 +SURF 0x20 +mat 6 +refs 3 +68 0 0 +59 0 0 +60 0 0 +SURF 0x20 +mat 6 +refs 3 +69 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 6 +refs 3 +68 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 6 +refs 3 +69 0 0 +67 0 0 +66 0 0 +SURF 0x20 +mat 6 +refs 3 +68 0 0 +61 0 0 +56 0 0 +SURF 0x20 +mat 6 +refs 3 +69 0 0 +62 0 0 +67 0 0 +SURF 0x20 +mat 6 +refs 4 +56 0 0 +62 0 0 +63 0 0 +57 0 0 +SURF 0x20 +mat 6 +refs 4 +57 0 0 +63 0 0 +64 0 0 +58 0 0 +SURF 0x20 +mat 6 +refs 4 +58 0 0 +64 0 0 +65 0 0 +59 0 0 +SURF 0x20 +mat 6 +refs 4 +59 0 0 +65 0 0 +66 0 0 +60 0 0 +SURF 0x20 +mat 6 +refs 4 +60 0 0 +66 0 0 +67 0 0 +61 0 0 +SURF 0x20 +mat 6 +refs 4 +61 0 0 +67 0 0 +62 0 0 +56 0 0 +kids 0 +OBJECT poly +name "fscrews.R" +data 12 +Cylinder.008 +crease 30.000000 +numvert 70 +0.454788 0.397752 -0.703393 +0.45114 0.411367 -0.703393 +0.461107 0.421334 -0.703393 +0.474723 0.417686 -0.703393 +0.478371 0.404071 -0.703393 +0.468404 0.394104 -0.703393 +0.454788 0.397752 -0.675202 +0.45114 0.411367 -0.675202 +0.461107 0.421334 -0.675202 +0.474723 0.417686 -0.675202 +0.478371 0.404071 -0.675202 +0.468404 0.394104 -0.675202 +0.464756 0.407719 -0.703393 +0.464756 0.407719 -0.675202 +0.526378 0.492535 -0.675202 +0.526378 0.492535 -0.703393 +0.514556 0.484858 -0.675202 +0.527115 0.478458 -0.675202 +0.538937 0.486135 -0.675202 +0.538199 0.500212 -0.675202 +0.52564 0.506611 -0.675202 +0.513818 0.498934 -0.675202 +0.514556 0.484858 -0.703393 +0.527115 0.478458 -0.703393 +0.538937 0.486135 -0.703393 +0.538199 0.500212 -0.703393 +0.52564 0.506611 -0.703393 +0.513818 0.498934 -0.703393 +0.628289 0.47406 -0.703393 +0.639244 0.465189 -0.703393 +0.637039 0.451267 -0.703393 +0.623879 0.446216 -0.703393 +0.612925 0.455087 -0.703393 +0.61513 0.469009 -0.703393 +0.628289 0.47406 -0.675202 +0.639244 0.465189 -0.675202 +0.637039 0.451267 -0.675202 +0.623879 0.446216 -0.675202 +0.612925 0.455087 -0.675202 +0.61513 0.469009 -0.675202 +0.626084 0.460138 -0.703393 +0.626084 0.460138 -0.675202 +0.626084 0.3553 -0.675202 +0.626084 0.3553 -0.703393 +0.631136 0.368459 -0.675202 +0.617214 0.366254 -0.675202 +0.612162 0.353095 -0.675202 +0.621033 0.342141 -0.675202 +0.634955 0.344346 -0.675202 +0.640006 0.357505 -0.675202 +0.631136 0.368459 -0.703393 +0.617214 0.366254 -0.703393 +0.612162 0.353095 -0.703393 +0.621033 0.342141 -0.703393 +0.634955 0.344346 -0.703393 +0.640006 0.357505 -0.703393 +0.532777 0.310344 -0.703393 +0.518701 0.311082 -0.703393 +0.512301 0.323641 -0.703393 +0.519978 0.335463 -0.703393 +0.534055 0.334725 -0.703393 +0.540454 0.322166 -0.703393 +0.532777 0.310344 -0.675202 +0.518701 0.311082 -0.675202 +0.512301 0.323641 -0.675202 +0.519978 0.335463 -0.675202 +0.534055 0.334725 -0.675202 +0.540454 0.322166 -0.675202 +0.526378 0.322903 -0.703393 +0.526378 0.322903 -0.675202 +numsurf 90 +SURF 0x20 +mat 7 +refs 3 +1 0 0 +0 0 0 +12 0 0 +SURF 0x20 +mat 7 +refs 3 +13 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 7 +refs 3 +12 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 7 +refs 3 +13 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 7 +refs 3 +12 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 7 +refs 3 +13 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 7 +refs 3 +12 0 0 +4 0 0 +3 0 0 +SURF 0x20 +mat 7 +refs 3 +13 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 7 +refs 3 +12 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 7 +refs 3 +13 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 7 +refs 3 +12 0 0 +0 0 0 +5 0 0 +SURF 0x20 +mat 7 +refs 3 +13 0 0 +11 0 0 +6 0 0 +SURF 0x20 +mat 7 +refs 4 +0 0 0 +1 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 7 +refs 4 +1 0 0 +2 0 0 +8 0 0 +7 0 0 +SURF 0x20 +mat 7 +refs 4 +2 0 0 +3 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 7 +refs 4 +3 0 0 +4 0 0 +10 0 0 +9 0 0 +SURF 0x20 +mat 7 +refs 4 +4 0 0 +5 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 7 +refs 4 +5 0 0 +0 0 0 +6 0 0 +11 0 0 +SURF 0x20 +mat 7 +refs 4 +22 0 0 +27 0 0 +21 0 0 +16 0 0 +SURF 0x20 +mat 7 +refs 4 +23 0 0 +22 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 7 +refs 4 +24 0 0 +23 0 0 +17 0 0 +18 0 0 +SURF 0x20 +mat 7 +refs 4 +25 0 0 +24 0 0 +18 0 0 +19 0 0 +SURF 0x20 +mat 7 +refs 4 +26 0 0 +25 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 7 +refs 4 +27 0 0 +26 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 7 +refs 3 +14 0 0 +16 0 0 +21 0 0 +SURF 0x20 +mat 7 +refs 3 +15 0 0 +27 0 0 +22 0 0 +SURF 0x20 +mat 7 +refs 3 +14 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 7 +refs 3 +15 0 0 +22 0 0 +23 0 0 +SURF 0x20 +mat 7 +refs 3 +14 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 7 +refs 3 +15 0 0 +23 0 0 +24 0 0 +SURF 0x20 +mat 7 +refs 3 +14 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 7 +refs 3 +15 0 0 +24 0 0 +25 0 0 +SURF 0x20 +mat 7 +refs 3 +14 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 7 +refs 3 +15 0 0 +25 0 0 +26 0 0 +SURF 0x20 +mat 7 +refs 3 +14 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 7 +refs 3 +15 0 0 +26 0 0 +27 0 0 +SURF 0x20 +mat 7 +refs 3 +40 0 0 +29 0 0 +28 0 0 +SURF 0x20 +mat 7 +refs 3 +41 0 0 +34 0 0 +35 0 0 +SURF 0x20 +mat 7 +refs 3 +40 0 0 +30 0 0 +29 0 0 +SURF 0x20 +mat 7 +refs 3 +41 0 0 +35 0 0 +36 0 0 +SURF 0x20 +mat 7 +refs 3 +40 0 0 +31 0 0 +30 0 0 +SURF 0x20 +mat 7 +refs 3 +41 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 7 +refs 3 +40 0 0 +32 0 0 +31 0 0 +SURF 0x20 +mat 7 +refs 3 +41 0 0 +37 0 0 +38 0 0 +SURF 0x20 +mat 7 +refs 3 +40 0 0 +33 0 0 +32 0 0 +SURF 0x20 +mat 7 +refs 3 +41 0 0 +38 0 0 +39 0 0 +SURF 0x20 +mat 7 +refs 3 +40 0 0 +28 0 0 +33 0 0 +SURF 0x20 +mat 7 +refs 3 +41 0 0 +39 0 0 +34 0 0 +SURF 0x20 +mat 7 +refs 4 +28 0 0 +29 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 7 +refs 4 +29 0 0 +30 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 7 +refs 4 +30 0 0 +31 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 7 +refs 4 +31 0 0 +32 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 7 +refs 4 +32 0 0 +33 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 7 +refs 4 +33 0 0 +28 0 0 +34 0 0 +39 0 0 +SURF 0x20 +mat 7 +refs 4 +50 0 0 +55 0 0 +49 0 0 +44 0 0 +SURF 0x20 +mat 7 +refs 4 +51 0 0 +50 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 7 +refs 4 +52 0 0 +51 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 7 +refs 4 +53 0 0 +52 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 7 +refs 4 +54 0 0 +53 0 0 +47 0 0 +48 0 0 +SURF 0x20 +mat 7 +refs 4 +55 0 0 +54 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 7 +refs 3 +42 0 0 +44 0 0 +49 0 0 +SURF 0x20 +mat 7 +refs 3 +43 0 0 +55 0 0 +50 0 0 +SURF 0x20 +mat 7 +refs 3 +42 0 0 +45 0 0 +44 0 0 +SURF 0x20 +mat 7 +refs 3 +43 0 0 +50 0 0 +51 0 0 +SURF 0x20 +mat 7 +refs 3 +42 0 0 +46 0 0 +45 0 0 +SURF 0x20 +mat 7 +refs 3 +43 0 0 +51 0 0 +52 0 0 +SURF 0x20 +mat 7 +refs 3 +42 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 7 +refs 3 +43 0 0 +52 0 0 +53 0 0 +SURF 0x20 +mat 7 +refs 3 +42 0 0 +48 0 0 +47 0 0 +SURF 0x20 +mat 7 +refs 3 +43 0 0 +53 0 0 +54 0 0 +SURF 0x20 +mat 7 +refs 3 +42 0 0 +49 0 0 +48 0 0 +SURF 0x20 +mat 7 +refs 3 +43 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 7 +refs 3 +68 0 0 +57 0 0 +56 0 0 +SURF 0x20 +mat 7 +refs 3 +69 0 0 +62 0 0 +63 0 0 +SURF 0x20 +mat 7 +refs 3 +68 0 0 +58 0 0 +57 0 0 +SURF 0x20 +mat 7 +refs 3 +69 0 0 +63 0 0 +64 0 0 +SURF 0x20 +mat 7 +refs 3 +68 0 0 +59 0 0 +58 0 0 +SURF 0x20 +mat 7 +refs 3 +69 0 0 +64 0 0 +65 0 0 +SURF 0x20 +mat 7 +refs 3 +68 0 0 +60 0 0 +59 0 0 +SURF 0x20 +mat 7 +refs 3 +69 0 0 +65 0 0 +66 0 0 +SURF 0x20 +mat 7 +refs 3 +68 0 0 +61 0 0 +60 0 0 +SURF 0x20 +mat 7 +refs 3 +69 0 0 +66 0 0 +67 0 0 +SURF 0x20 +mat 7 +refs 3 +68 0 0 +56 0 0 +61 0 0 +SURF 0x20 +mat 7 +refs 3 +69 0 0 +67 0 0 +62 0 0 +SURF 0x20 +mat 7 +refs 4 +56 0 0 +57 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 7 +refs 4 +57 0 0 +58 0 0 +64 0 0 +63 0 0 +SURF 0x20 +mat 7 +refs 4 +58 0 0 +59 0 0 +65 0 0 +64 0 0 +SURF 0x20 +mat 7 +refs 4 +59 0 0 +60 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 7 +refs 4 +60 0 0 +61 0 0 +67 0 0 +66 0 0 +SURF 0x20 +mat 7 +refs 4 +61 0 0 +56 0 0 +62 0 0 +67 0 0 +kids 0 +OBJECT poly +name "fwheel.L" +data 10 +Circle.024 +crease 30.000000 +numvert 288 +0.812473 0.666259 0.588882 +0.870577 0.590537 0.588882 +0.907103 0.502356 0.588882 +0.919561 0.407726 0.588882 +0.907103 0.313097 0.588882 +0.870577 0.224916 0.588882 +0.812473 0.149194 0.588882 +0.736751 0.09109 0.588882 +0.64857 0.054564 0.588882 +0.55394 0.042106 0.588882 +0.459311 0.054564 0.588882 +0.37113 0.09109 0.588882 +0.295408 0.149194 0.588882 +0.237304 0.224916 0.588882 +0.200778 0.313097 0.588882 +0.18832 0.407726 0.588882 +0.200778 0.502356 0.588882 +0.237304 0.590537 0.588882 +0.295407 0.666259 0.588882 +0.37113 0.724363 0.588882 +0.459311 0.760889 0.588882 +0.55394 0.773347 0.588882 +0.64857 0.760889 0.588882 +0.73675 0.724363 0.588882 +0.812473 0.666259 0.691035 +0.870577 0.590537 0.691035 +0.907103 0.502356 0.691035 +0.919561 0.407727 0.691035 +0.907103 0.313097 0.691035 +0.870577 0.224916 0.691035 +0.812473 0.149194 0.691035 +0.736751 0.09109 0.691035 +0.64857 0.054564 0.691035 +0.55394 0.042106 0.691035 +0.459311 0.054564 0.691035 +0.37113 0.09109 0.691035 +0.295408 0.149194 0.691035 +0.237304 0.224916 0.691035 +0.200778 0.313097 0.691035 +0.18832 0.407726 0.691035 +0.200778 0.502356 0.691035 +0.237304 0.590537 0.691035 +0.295407 0.666259 0.691035 +0.37113 0.724363 0.691035 +0.459311 0.760889 0.691035 +0.55394 0.773347 0.691035 +0.64857 0.760889 0.691035 +0.73675 0.724363 0.691035 +0.789703 0.64349 0.711899 +0.84269 0.574436 0.711899 +0.875999 0.494022 0.711899 +0.88736 0.407727 0.711899 +0.875999 0.321431 0.711899 +0.84269 0.241017 0.711899 +0.789704 0.171963 0.711899 +0.72065 0.118977 0.711899 +0.640236 0.085668 0.711899 +0.55394 0.074307 0.711899 +0.467645 0.085668 0.711899 +0.387231 0.118977 0.711899 +0.318177 0.171963 0.711899 +0.26519 0.241017 0.711899 +0.231882 0.321431 0.711899 +0.220521 0.407726 0.711899 +0.231882 0.494022 0.711899 +0.26519 0.574436 0.711899 +0.318177 0.64349 0.711899 +0.38723 0.696476 0.711899 +0.467645 0.729785 0.711899 +0.55394 0.741146 0.711899 +0.640235 0.729785 0.711899 +0.72065 0.696477 0.711899 +0.798925 0.549169 0.732764 +0.75397 0.607756 0.732764 +0.827186 0.480942 0.732763 +0.836825 0.407727 0.732763 +0.827186 0.334511 0.732764 +0.798925 0.266284 0.732764 +0.75397 0.207697 0.732764 +0.695382 0.162741 0.732764 +0.627156 0.134481 0.732764 +0.55394 0.124842 0.732764 +0.480725 0.134481 0.732764 +0.412498 0.162741 0.732764 +0.353911 0.207697 0.732764 +0.308955 0.266284 0.732764 +0.280695 0.334511 0.732764 +0.271056 0.407726 0.732763 +0.280695 0.480942 0.732763 +0.308955 0.549169 0.732764 +0.353911 0.607756 0.732764 +0.412498 0.652712 0.732764 +0.480724 0.680972 0.732764 +0.55394 0.690611 0.732764 +0.627156 0.680972 0.732764 +0.695382 0.652712 0.732764 +0.785375 0.541346 0.720245 +0.742906 0.596693 0.720245 +0.812073 0.476893 0.720245 +0.821179 0.407727 0.720245 +0.812073 0.33856 0.720245 +0.785375 0.274107 0.720245 +0.742906 0.218761 0.720245 +0.687559 0.176291 0.720245 +0.623107 0.149594 0.720245 +0.55394 0.140488 0.720245 +0.484774 0.149594 0.720245 +0.420321 0.176291 0.720245 +0.364974 0.21876 0.720245 +0.322505 0.274107 0.720245 +0.295808 0.33856 0.720245 +0.286702 0.407726 0.720245 +0.295808 0.476893 0.720245 +0.322505 0.541346 0.720245 +0.364974 0.596692 0.720245 +0.420321 0.639162 0.720245 +0.484774 0.665859 0.720245 +0.55394 0.674965 0.720245 +0.623106 0.665859 0.720245 +0.687559 0.639162 0.720245 +0.789784 0.64357 0.563845 +0.842789 0.574493 0.563845 +0.876109 0.494051 0.563845 +0.887473 0.407727 0.563845 +0.876109 0.321402 0.563845 +0.842789 0.24096 0.563845 +0.789784 0.171883 0.563845 +0.720707 0.118878 0.563845 +0.640265 0.085558 0.563845 +0.55394 0.074193 0.563845 +0.467616 0.085558 0.563845 +0.387174 0.118878 0.563845 +0.318097 0.171883 0.563845 +0.265092 0.24096 0.563845 +0.231772 0.321402 0.563845 +0.220407 0.407726 0.563845 +0.231772 0.494051 0.563845 +0.265092 0.574493 0.563845 +0.318097 0.64357 0.563845 +0.387173 0.696575 0.563845 +0.467615 0.729895 0.563845 +0.55394 0.74126 0.563845 +0.640265 0.729895 0.563845 +0.720707 0.696575 0.563845 +0.792728 0.54559 0.538809 +0.748909 0.602695 0.538809 +0.820273 0.47909 0.538809 +0.829668 0.407727 0.538809 +0.820273 0.336363 0.538809 +0.792728 0.269863 0.538809 +0.748909 0.212758 0.538809 +0.691804 0.168939 0.538809 +0.625304 0.141394 0.538809 +0.55394 0.131999 0.538809 +0.482577 0.141394 0.538809 +0.416077 0.168939 0.538809 +0.358971 0.212758 0.538809 +0.315153 0.269863 0.538809 +0.287608 0.336363 0.538809 +0.278213 0.407726 0.538809 +0.287608 0.47909 0.538809 +0.315153 0.54559 0.538809 +0.358971 0.602695 0.538809 +0.416076 0.646514 0.538809 +0.482576 0.674059 0.538809 +0.55394 0.683454 0.538809 +0.625304 0.674059 0.538809 +0.691804 0.646514 0.538809 +0.786683 0.542101 0.538809 +0.743974 0.59776 0.538809 +0.813531 0.477284 0.538809 +0.822688 0.407727 0.538809 +0.813531 0.33817 0.538809 +0.786683 0.273353 0.538809 +0.743974 0.217693 0.538809 +0.688314 0.174984 0.538809 +0.623497 0.148136 0.538809 +0.55394 0.138979 0.538809 +0.484383 0.148136 0.538809 +0.419566 0.174984 0.538809 +0.363907 0.217693 0.538809 +0.321198 0.273353 0.538809 +0.29435 0.338169 0.538809 +0.285192 0.407726 0.538809 +0.29435 0.477284 0.538809 +0.321198 0.5421 0.538809 +0.363907 0.59776 0.538809 +0.419566 0.640469 0.538809 +0.484383 0.667317 0.538809 +0.55394 0.676475 0.538809 +0.623497 0.667317 0.538809 +0.688314 0.640469 0.538809 +0.841525 0.628398 0.571432 +0.88884 0.546447 0.571432 +0.913332 0.455041 0.571432 +0.913332 0.360412 0.571432 +0.88884 0.269007 0.571432 +0.841525 0.187055 0.571432 +0.774612 0.120142 0.571432 +0.69266 0.072827 0.571432 +0.601255 0.048335 0.571432 +0.506626 0.048335 0.571432 +0.415221 0.072827 0.571432 +0.333269 0.120142 0.571432 +0.266356 0.187055 0.571432 +0.219041 0.269007 0.571432 +0.194549 0.360412 0.571432 +0.194549 0.455041 0.571432 +0.219041 0.546446 0.571432 +0.266355 0.628398 0.571432 +0.333269 0.695311 0.571432 +0.41522 0.742626 0.571432 +0.506625 0.767118 0.571432 +0.601255 0.767118 0.571432 +0.69266 0.742626 0.571432 +0.774612 0.695311 0.571432 +0.870577 0.590537 0.639958 +0.841525 0.628398 0.708485 +0.812473 0.666259 0.639958 +0.907103 0.502356 0.639958 +0.88884 0.546446 0.708485 +0.913332 0.455041 0.708485 +0.919561 0.407727 0.639958 +0.907103 0.313097 0.639958 +0.913332 0.360412 0.708485 +0.88884 0.269007 0.708485 +0.870577 0.224916 0.639958 +0.841525 0.187055 0.708485 +0.812473 0.149194 0.639958 +0.774612 0.120142 0.708485 +0.736751 0.09109 0.639958 +0.64857 0.054564 0.639958 +0.69266 0.072827 0.708485 +0.601255 0.048335 0.708485 +0.55394 0.042106 0.639958 +0.506626 0.048335 0.708485 +0.459311 0.054564 0.639958 +0.415221 0.072827 0.708485 +0.37113 0.09109 0.639958 +0.295408 0.149194 0.639958 +0.333269 0.120142 0.708485 +0.266356 0.187055 0.708485 +0.237304 0.224916 0.639958 +0.219041 0.269007 0.708485 +0.200778 0.313097 0.639958 +0.194549 0.360412 0.708485 +0.18832 0.407726 0.639958 +0.194549 0.455041 0.708485 +0.200778 0.502356 0.639958 +0.219041 0.546446 0.708485 +0.237304 0.590537 0.639958 +0.266355 0.628398 0.708485 +0.295407 0.666259 0.639958 +0.333269 0.695311 0.708485 +0.37113 0.724363 0.639958 +0.41522 0.742626 0.708485 +0.459311 0.760889 0.639958 +0.506625 0.767118 0.708485 +0.55394 0.773347 0.639958 +0.601255 0.767118 0.708485 +0.64857 0.760889 0.639958 +0.69266 0.742626 0.708485 +0.73675 0.724363 0.639958 +0.774612 0.695311 0.708485 +0.841525 0.628398 0.639958 +0.88884 0.546446 0.639958 +0.913332 0.455041 0.639958 +0.913332 0.360412 0.639958 +0.88884 0.269007 0.639958 +0.841525 0.187055 0.639958 +0.774612 0.120142 0.639958 +0.69266 0.072827 0.639958 +0.601255 0.048335 0.639958 +0.506626 0.048335 0.639958 +0.415221 0.072827 0.639958 +0.333269 0.120142 0.639958 +0.266356 0.187055 0.639958 +0.219041 0.269007 0.639958 +0.194549 0.360412 0.639958 +0.194549 0.455041 0.639958 +0.219041 0.546446 0.639958 +0.266355 0.628398 0.639958 +0.333269 0.695311 0.639958 +0.41522 0.742626 0.639958 +0.506625 0.767118 0.639958 +0.601255 0.767118 0.639958 +0.69266 0.742626 0.639958 +0.774612 0.695311 0.639958 +numsurf 336 +SURF 0x30 +mat 8 +refs 4 +48 0 0 +73 0 0 +72 0 0 +49 0 0 +SURF 0x30 +mat 8 +refs 4 +49 0 0 +72 0 0 +74 0 0 +50 0 0 +SURF 0x30 +mat 8 +refs 4 +51 0 0 +50 0 0 +74 0 0 +75 0 0 +SURF 0x30 +mat 8 +refs 4 +51 0 0 +75 0 0 +76 0 0 +52 0 0 +SURF 0x30 +mat 8 +refs 4 +53 0 0 +52 0 0 +76 0 0 +77 0 0 +SURF 0x30 +mat 8 +refs 4 +54 0 0 +53 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 8 +refs 4 +55 0 0 +54 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 8 +refs 4 +55 0 0 +79 0 0 +80 0 0 +56 0 0 +SURF 0x30 +mat 8 +refs 4 +57 0 0 +56 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 8 +refs 4 +58 0 0 +57 0 0 +81 0 0 +82 0 0 +SURF 0x30 +mat 8 +refs 4 +59 0 0 +58 0 0 +82 0 0 +83 0 0 +SURF 0x30 +mat 8 +refs 4 +59 0 0 +83 0 0 +84 0 0 +60 0 0 +SURF 0x30 +mat 8 +refs 4 +61 0 0 +60 0 0 +84 0 0 +85 0 0 +SURF 0x30 +mat 8 +refs 4 +62 0 0 +61 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 8 +refs 4 +63 0 0 +62 0 0 +86 0 0 +87 0 0 +SURF 0x30 +mat 8 +refs 4 +64 0 0 +63 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 8 +refs 4 +65 0 0 +64 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 8 +refs 4 +66 0 0 +65 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 8 +refs 4 +67 0 0 +66 0 0 +90 0 0 +91 0 0 +SURF 0x30 +mat 8 +refs 4 +68 0 0 +67 0 0 +91 0 0 +92 0 0 +SURF 0x30 +mat 8 +refs 4 +69 0 0 +68 0 0 +92 0 0 +93 0 0 +SURF 0x30 +mat 8 +refs 4 +70 0 0 +69 0 0 +93 0 0 +94 0 0 +SURF 0x30 +mat 8 +refs 4 +71 0 0 +70 0 0 +94 0 0 +95 0 0 +SURF 0x30 +mat 8 +refs 4 +71 0 0 +95 0 0 +73 0 0 +48 0 0 +SURF 0x30 +mat 8 +refs 4 +73 0 0 +97 0 0 +96 0 0 +72 0 0 +SURF 0x30 +mat 8 +refs 4 +72 0 0 +96 0 0 +98 0 0 +74 0 0 +SURF 0x30 +mat 8 +refs 4 +75 0 0 +74 0 0 +98 0 0 +99 0 0 +SURF 0x30 +mat 8 +refs 4 +75 0 0 +99 0 0 +100 0 0 +76 0 0 +SURF 0x30 +mat 8 +refs 4 +77 0 0 +76 0 0 +100 0 0 +101 0 0 +SURF 0x30 +mat 8 +refs 4 +78 0 0 +77 0 0 +101 0 0 +102 0 0 +SURF 0x30 +mat 8 +refs 4 +79 0 0 +78 0 0 +102 0 0 +103 0 0 +SURF 0x30 +mat 8 +refs 4 +79 0 0 +103 0 0 +104 0 0 +80 0 0 +SURF 0x30 +mat 8 +refs 4 +81 0 0 +80 0 0 +104 0 0 +105 0 0 +SURF 0x30 +mat 8 +refs 4 +82 0 0 +81 0 0 +105 0 0 +106 0 0 +SURF 0x30 +mat 8 +refs 4 +83 0 0 +82 0 0 +106 0 0 +107 0 0 +SURF 0x30 +mat 8 +refs 4 +83 0 0 +107 0 0 +108 0 0 +84 0 0 +SURF 0x30 +mat 8 +refs 4 +85 0 0 +84 0 0 +108 0 0 +109 0 0 +SURF 0x30 +mat 8 +refs 4 +86 0 0 +85 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 8 +refs 4 +87 0 0 +86 0 0 +110 0 0 +111 0 0 +SURF 0x30 +mat 8 +refs 4 +88 0 0 +87 0 0 +111 0 0 +112 0 0 +SURF 0x30 +mat 8 +refs 4 +89 0 0 +88 0 0 +112 0 0 +113 0 0 +SURF 0x30 +mat 8 +refs 4 +90 0 0 +89 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 8 +refs 4 +91 0 0 +90 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 8 +refs 4 +92 0 0 +91 0 0 +115 0 0 +116 0 0 +SURF 0x30 +mat 8 +refs 4 +93 0 0 +92 0 0 +116 0 0 +117 0 0 +SURF 0x30 +mat 8 +refs 4 +94 0 0 +93 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 8 +refs 4 +95 0 0 +94 0 0 +118 0 0 +119 0 0 +SURF 0x30 +mat 8 +refs 4 +95 0 0 +119 0 0 +97 0 0 +73 0 0 +SURF 0x30 +mat 8 +refs 4 +121 0 0 +144 0 0 +145 0 0 +120 0 0 +SURF 0x30 +mat 8 +refs 4 +122 0 0 +146 0 0 +144 0 0 +121 0 0 +SURF 0x30 +mat 8 +refs 4 +122 0 0 +123 0 0 +147 0 0 +146 0 0 +SURF 0x30 +mat 8 +refs 4 +124 0 0 +148 0 0 +147 0 0 +123 0 0 +SURF 0x30 +mat 8 +refs 4 +124 0 0 +125 0 0 +149 0 0 +148 0 0 +SURF 0x30 +mat 8 +refs 4 +125 0 0 +126 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 8 +refs 4 +126 0 0 +127 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 8 +refs 4 +128 0 0 +152 0 0 +151 0 0 +127 0 0 +SURF 0x30 +mat 8 +refs 4 +128 0 0 +129 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 8 +refs 4 +129 0 0 +130 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 8 +refs 4 +130 0 0 +131 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 8 +refs 4 +132 0 0 +156 0 0 +155 0 0 +131 0 0 +SURF 0x30 +mat 8 +refs 4 +132 0 0 +133 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 8 +refs 4 +133 0 0 +134 0 0 +158 0 0 +157 0 0 +SURF 0x30 +mat 8 +refs 4 +134 0 0 +135 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 8 +refs 4 +135 0 0 +136 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 8 +refs 4 +136 0 0 +137 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 8 +refs 4 +137 0 0 +138 0 0 +162 0 0 +161 0 0 +SURF 0x30 +mat 8 +refs 4 +138 0 0 +139 0 0 +163 0 0 +162 0 0 +SURF 0x30 +mat 8 +refs 4 +139 0 0 +140 0 0 +164 0 0 +163 0 0 +SURF 0x30 +mat 8 +refs 4 +140 0 0 +141 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 8 +refs 4 +141 0 0 +142 0 0 +166 0 0 +165 0 0 +SURF 0x30 +mat 8 +refs 4 +142 0 0 +143 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 8 +refs 4 +120 0 0 +145 0 0 +167 0 0 +143 0 0 +SURF 0x30 +mat 8 +refs 4 +144 0 0 +168 0 0 +169 0 0 +145 0 0 +SURF 0x30 +mat 8 +refs 4 +146 0 0 +170 0 0 +168 0 0 +144 0 0 +SURF 0x30 +mat 8 +refs 4 +146 0 0 +147 0 0 +171 0 0 +170 0 0 +SURF 0x30 +mat 8 +refs 4 +148 0 0 +172 0 0 +171 0 0 +147 0 0 +SURF 0x30 +mat 8 +refs 4 +148 0 0 +149 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 8 +refs 4 +149 0 0 +150 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 8 +refs 4 +150 0 0 +151 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 8 +refs 4 +152 0 0 +176 0 0 +175 0 0 +151 0 0 +SURF 0x30 +mat 8 +refs 4 +152 0 0 +153 0 0 +177 0 0 +176 0 0 +SURF 0x30 +mat 8 +refs 4 +153 0 0 +154 0 0 +178 0 0 +177 0 0 +SURF 0x30 +mat 8 +refs 4 +154 0 0 +155 0 0 +179 0 0 +178 0 0 +SURF 0x30 +mat 8 +refs 4 +156 0 0 +180 0 0 +179 0 0 +155 0 0 +SURF 0x30 +mat 8 +refs 4 +156 0 0 +157 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 8 +refs 4 +157 0 0 +158 0 0 +182 0 0 +181 0 0 +SURF 0x30 +mat 8 +refs 4 +158 0 0 +159 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 8 +refs 4 +159 0 0 +160 0 0 +184 0 0 +183 0 0 +SURF 0x30 +mat 8 +refs 4 +160 0 0 +161 0 0 +185 0 0 +184 0 0 +SURF 0x30 +mat 8 +refs 4 +161 0 0 +162 0 0 +186 0 0 +185 0 0 +SURF 0x30 +mat 8 +refs 4 +162 0 0 +163 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 8 +refs 4 +163 0 0 +164 0 0 +188 0 0 +187 0 0 +SURF 0x30 +mat 8 +refs 4 +164 0 0 +165 0 0 +189 0 0 +188 0 0 +SURF 0x30 +mat 8 +refs 4 +165 0 0 +166 0 0 +190 0 0 +189 0 0 +SURF 0x30 +mat 8 +refs 4 +166 0 0 +167 0 0 +191 0 0 +190 0 0 +SURF 0x30 +mat 8 +refs 4 +145 0 0 +169 0 0 +191 0 0 +167 0 0 +SURF 0x30 +mat 8 +refs 4 +218 0 0 +24 0 0 +217 0 0 +264 0 0 +SURF 0x30 +mat 8 +refs 4 +0 0 0 +218 0 0 +264 0 0 +192 0 0 +SURF 0x30 +mat 8 +refs 4 +264 0 0 +217 0 0 +25 0 0 +216 0 0 +SURF 0x30 +mat 8 +refs 4 +192 0 0 +264 0 0 +216 0 0 +1 0 0 +SURF 0x30 +mat 8 +refs 4 +216 0 0 +25 0 0 +220 0 0 +265 0 0 +SURF 0x30 +mat 8 +refs 4 +1 0 0 +216 0 0 +265 0 0 +193 0 0 +SURF 0x30 +mat 8 +refs 4 +265 0 0 +220 0 0 +26 0 0 +219 0 0 +SURF 0x30 +mat 8 +refs 4 +193 0 0 +265 0 0 +219 0 0 +2 0 0 +SURF 0x30 +mat 8 +refs 4 +194 0 0 +2 0 0 +219 0 0 +266 0 0 +SURF 0x30 +mat 8 +refs 4 +3 0 0 +194 0 0 +266 0 0 +222 0 0 +SURF 0x30 +mat 8 +refs 4 +266 0 0 +219 0 0 +26 0 0 +221 0 0 +SURF 0x30 +mat 8 +refs 4 +222 0 0 +266 0 0 +221 0 0 +27 0 0 +SURF 0x30 +mat 8 +refs 4 +222 0 0 +27 0 0 +224 0 0 +267 0 0 +SURF 0x30 +mat 8 +refs 4 +3 0 0 +222 0 0 +267 0 0 +195 0 0 +SURF 0x30 +mat 8 +refs 4 +267 0 0 +224 0 0 +28 0 0 +223 0 0 +SURF 0x30 +mat 8 +refs 4 +195 0 0 +267 0 0 +223 0 0 +4 0 0 +SURF 0x30 +mat 8 +refs 4 +196 0 0 +4 0 0 +223 0 0 +268 0 0 +SURF 0x30 +mat 8 +refs 4 +5 0 0 +196 0 0 +268 0 0 +226 0 0 +SURF 0x30 +mat 8 +refs 4 +268 0 0 +223 0 0 +28 0 0 +225 0 0 +SURF 0x30 +mat 8 +refs 4 +226 0 0 +268 0 0 +225 0 0 +29 0 0 +SURF 0x30 +mat 8 +refs 4 +197 0 0 +5 0 0 +226 0 0 +269 0 0 +SURF 0x30 +mat 8 +refs 4 +6 0 0 +197 0 0 +269 0 0 +228 0 0 +SURF 0x30 +mat 8 +refs 4 +269 0 0 +226 0 0 +29 0 0 +227 0 0 +SURF 0x30 +mat 8 +refs 4 +228 0 0 +269 0 0 +227 0 0 +30 0 0 +SURF 0x30 +mat 8 +refs 4 +198 0 0 +6 0 0 +228 0 0 +270 0 0 +SURF 0x30 +mat 8 +refs 4 +7 0 0 +198 0 0 +270 0 0 +230 0 0 +SURF 0x30 +mat 8 +refs 4 +270 0 0 +228 0 0 +30 0 0 +229 0 0 +SURF 0x30 +mat 8 +refs 4 +230 0 0 +270 0 0 +229 0 0 +31 0 0 +SURF 0x30 +mat 8 +refs 4 +230 0 0 +31 0 0 +232 0 0 +271 0 0 +SURF 0x30 +mat 8 +refs 4 +7 0 0 +230 0 0 +271 0 0 +199 0 0 +SURF 0x30 +mat 8 +refs 4 +271 0 0 +232 0 0 +32 0 0 +231 0 0 +SURF 0x30 +mat 8 +refs 4 +199 0 0 +271 0 0 +231 0 0 +8 0 0 +SURF 0x30 +mat 8 +refs 4 +200 0 0 +8 0 0 +231 0 0 +272 0 0 +SURF 0x30 +mat 8 +refs 4 +9 0 0 +200 0 0 +272 0 0 +234 0 0 +SURF 0x30 +mat 8 +refs 4 +272 0 0 +231 0 0 +32 0 0 +233 0 0 +SURF 0x30 +mat 8 +refs 4 +234 0 0 +272 0 0 +233 0 0 +33 0 0 +SURF 0x30 +mat 8 +refs 4 +201 0 0 +9 0 0 +234 0 0 +273 0 0 +SURF 0x30 +mat 8 +refs 4 +10 0 0 +201 0 0 +273 0 0 +236 0 0 +SURF 0x30 +mat 8 +refs 4 +273 0 0 +234 0 0 +33 0 0 +235 0 0 +SURF 0x30 +mat 8 +refs 4 +236 0 0 +273 0 0 +235 0 0 +34 0 0 +SURF 0x30 +mat 8 +refs 4 +202 0 0 +10 0 0 +236 0 0 +274 0 0 +SURF 0x30 +mat 8 +refs 4 +11 0 0 +202 0 0 +274 0 0 +238 0 0 +SURF 0x30 +mat 8 +refs 4 +274 0 0 +236 0 0 +34 0 0 +237 0 0 +SURF 0x30 +mat 8 +refs 4 +238 0 0 +274 0 0 +237 0 0 +35 0 0 +SURF 0x30 +mat 8 +refs 4 +238 0 0 +35 0 0 +240 0 0 +275 0 0 +SURF 0x30 +mat 8 +refs 4 +11 0 0 +238 0 0 +275 0 0 +203 0 0 +SURF 0x30 +mat 8 +refs 4 +275 0 0 +240 0 0 +36 0 0 +239 0 0 +SURF 0x30 +mat 8 +refs 4 +203 0 0 +275 0 0 +239 0 0 +12 0 0 +SURF 0x30 +mat 8 +refs 4 +204 0 0 +12 0 0 +239 0 0 +276 0 0 +SURF 0x30 +mat 8 +refs 4 +13 0 0 +204 0 0 +276 0 0 +242 0 0 +SURF 0x30 +mat 8 +refs 4 +276 0 0 +239 0 0 +36 0 0 +241 0 0 +SURF 0x30 +mat 8 +refs 4 +242 0 0 +276 0 0 +241 0 0 +37 0 0 +SURF 0x30 +mat 8 +refs 4 +205 0 0 +13 0 0 +242 0 0 +277 0 0 +SURF 0x30 +mat 8 +refs 4 +14 0 0 +205 0 0 +277 0 0 +244 0 0 +SURF 0x30 +mat 8 +refs 4 +277 0 0 +242 0 0 +37 0 0 +243 0 0 +SURF 0x30 +mat 8 +refs 4 +244 0 0 +277 0 0 +243 0 0 +38 0 0 +SURF 0x30 +mat 8 +refs 4 +206 0 0 +14 0 0 +244 0 0 +278 0 0 +SURF 0x30 +mat 8 +refs 4 +15 0 0 +206 0 0 +278 0 0 +246 0 0 +SURF 0x30 +mat 8 +refs 4 +278 0 0 +244 0 0 +38 0 0 +245 0 0 +SURF 0x30 +mat 8 +refs 4 +246 0 0 +278 0 0 +245 0 0 +39 0 0 +SURF 0x30 +mat 8 +refs 4 +207 0 0 +15 0 0 +246 0 0 +279 0 0 +SURF 0x30 +mat 8 +refs 4 +16 0 0 +207 0 0 +279 0 0 +248 0 0 +SURF 0x30 +mat 8 +refs 4 +279 0 0 +246 0 0 +39 0 0 +247 0 0 +SURF 0x30 +mat 8 +refs 4 +248 0 0 +279 0 0 +247 0 0 +40 0 0 +SURF 0x30 +mat 8 +refs 4 +208 0 0 +16 0 0 +248 0 0 +280 0 0 +SURF 0x30 +mat 8 +refs 4 +17 0 0 +208 0 0 +280 0 0 +250 0 0 +SURF 0x30 +mat 8 +refs 4 +280 0 0 +248 0 0 +40 0 0 +249 0 0 +SURF 0x30 +mat 8 +refs 4 +250 0 0 +280 0 0 +249 0 0 +41 0 0 +SURF 0x30 +mat 8 +refs 4 +209 0 0 +17 0 0 +250 0 0 +281 0 0 +SURF 0x30 +mat 8 +refs 4 +18 0 0 +209 0 0 +281 0 0 +252 0 0 +SURF 0x30 +mat 8 +refs 4 +281 0 0 +250 0 0 +41 0 0 +251 0 0 +SURF 0x30 +mat 8 +refs 4 +252 0 0 +281 0 0 +251 0 0 +42 0 0 +SURF 0x30 +mat 8 +refs 4 +210 0 0 +18 0 0 +252 0 0 +282 0 0 +SURF 0x30 +mat 8 +refs 4 +19 0 0 +210 0 0 +282 0 0 +254 0 0 +SURF 0x30 +mat 8 +refs 4 +282 0 0 +252 0 0 +42 0 0 +253 0 0 +SURF 0x30 +mat 8 +refs 4 +254 0 0 +282 0 0 +253 0 0 +43 0 0 +SURF 0x30 +mat 8 +refs 4 +211 0 0 +19 0 0 +254 0 0 +283 0 0 +SURF 0x30 +mat 8 +refs 4 +20 0 0 +211 0 0 +283 0 0 +256 0 0 +SURF 0x30 +mat 8 +refs 4 +283 0 0 +254 0 0 +43 0 0 +255 0 0 +SURF 0x30 +mat 8 +refs 4 +256 0 0 +283 0 0 +255 0 0 +44 0 0 +SURF 0x30 +mat 8 +refs 4 +212 0 0 +20 0 0 +256 0 0 +284 0 0 +SURF 0x30 +mat 8 +refs 4 +21 0 0 +212 0 0 +284 0 0 +258 0 0 +SURF 0x30 +mat 8 +refs 4 +284 0 0 +256 0 0 +44 0 0 +257 0 0 +SURF 0x30 +mat 8 +refs 4 +258 0 0 +284 0 0 +257 0 0 +45 0 0 +SURF 0x30 +mat 8 +refs 4 +213 0 0 +21 0 0 +258 0 0 +285 0 0 +SURF 0x30 +mat 8 +refs 4 +22 0 0 +213 0 0 +285 0 0 +260 0 0 +SURF 0x30 +mat 8 +refs 4 +285 0 0 +258 0 0 +45 0 0 +259 0 0 +SURF 0x30 +mat 8 +refs 4 +260 0 0 +285 0 0 +259 0 0 +46 0 0 +SURF 0x30 +mat 8 +refs 4 +214 0 0 +22 0 0 +260 0 0 +286 0 0 +SURF 0x30 +mat 8 +refs 4 +23 0 0 +214 0 0 +286 0 0 +262 0 0 +SURF 0x30 +mat 8 +refs 4 +286 0 0 +260 0 0 +46 0 0 +261 0 0 +SURF 0x30 +mat 8 +refs 4 +262 0 0 +286 0 0 +261 0 0 +47 0 0 +SURF 0x30 +mat 8 +refs 4 +218 0 0 +0 0 0 +215 0 0 +287 0 0 +SURF 0x30 +mat 8 +refs 4 +24 0 0 +218 0 0 +287 0 0 +263 0 0 +SURF 0x30 +mat 8 +refs 4 +287 0 0 +215 0 0 +23 0 0 +262 0 0 +SURF 0x30 +mat 8 +refs 4 +263 0 0 +287 0 0 +262 0 0 +47 0 0 +SURF 0x30 +mat 8 +refs 3 +217 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 8 +refs 3 +25 0 0 +217 0 0 +49 0 0 +SURF 0x30 +mat 8 +refs 3 +217 0 0 +24 0 0 +48 0 0 +SURF 0x30 +mat 8 +refs 3 +220 0 0 +49 0 0 +50 0 0 +SURF 0x30 +mat 8 +refs 3 +26 0 0 +220 0 0 +50 0 0 +SURF 0x30 +mat 8 +refs 3 +220 0 0 +25 0 0 +49 0 0 +SURF 0x30 +mat 8 +refs 3 +221 0 0 +50 0 0 +51 0 0 +SURF 0x30 +mat 8 +refs 3 +27 0 0 +221 0 0 +51 0 0 +SURF 0x30 +mat 8 +refs 3 +221 0 0 +26 0 0 +50 0 0 +SURF 0x30 +mat 8 +refs 3 +224 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 8 +refs 3 +28 0 0 +224 0 0 +52 0 0 +SURF 0x30 +mat 8 +refs 3 +224 0 0 +27 0 0 +51 0 0 +SURF 0x30 +mat 8 +refs 3 +225 0 0 +52 0 0 +53 0 0 +SURF 0x30 +mat 8 +refs 3 +29 0 0 +225 0 0 +53 0 0 +SURF 0x30 +mat 8 +refs 3 +225 0 0 +28 0 0 +52 0 0 +SURF 0x30 +mat 8 +refs 3 +227 0 0 +53 0 0 +54 0 0 +SURF 0x30 +mat 8 +refs 3 +30 0 0 +227 0 0 +54 0 0 +SURF 0x30 +mat 8 +refs 3 +227 0 0 +29 0 0 +53 0 0 +SURF 0x30 +mat 8 +refs 3 +229 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 8 +refs 3 +31 0 0 +229 0 0 +55 0 0 +SURF 0x30 +mat 8 +refs 3 +229 0 0 +30 0 0 +54 0 0 +SURF 0x30 +mat 8 +refs 3 +232 0 0 +55 0 0 +56 0 0 +SURF 0x30 +mat 8 +refs 3 +32 0 0 +232 0 0 +56 0 0 +SURF 0x30 +mat 8 +refs 3 +232 0 0 +31 0 0 +55 0 0 +SURF 0x30 +mat 8 +refs 3 +233 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 8 +refs 3 +33 0 0 +233 0 0 +57 0 0 +SURF 0x30 +mat 8 +refs 3 +233 0 0 +32 0 0 +56 0 0 +SURF 0x30 +mat 8 +refs 3 +235 0 0 +57 0 0 +58 0 0 +SURF 0x30 +mat 8 +refs 3 +34 0 0 +235 0 0 +58 0 0 +SURF 0x30 +mat 8 +refs 3 +235 0 0 +33 0 0 +57 0 0 +SURF 0x30 +mat 8 +refs 3 +237 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 8 +refs 3 +35 0 0 +237 0 0 +59 0 0 +SURF 0x30 +mat 8 +refs 3 +237 0 0 +34 0 0 +58 0 0 +SURF 0x30 +mat 8 +refs 3 +240 0 0 +59 0 0 +60 0 0 +SURF 0x30 +mat 8 +refs 3 +36 0 0 +240 0 0 +60 0 0 +SURF 0x30 +mat 8 +refs 3 +240 0 0 +35 0 0 +59 0 0 +SURF 0x30 +mat 8 +refs 3 +241 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 8 +refs 3 +37 0 0 +241 0 0 +61 0 0 +SURF 0x30 +mat 8 +refs 3 +241 0 0 +36 0 0 +60 0 0 +SURF 0x30 +mat 8 +refs 3 +243 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 8 +refs 3 +38 0 0 +243 0 0 +62 0 0 +SURF 0x30 +mat 8 +refs 3 +243 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 8 +refs 3 +245 0 0 +62 0 0 +63 0 0 +SURF 0x30 +mat 8 +refs 3 +39 0 0 +245 0 0 +63 0 0 +SURF 0x30 +mat 8 +refs 3 +245 0 0 +38 0 0 +62 0 0 +SURF 0x30 +mat 8 +refs 3 +247 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 8 +refs 3 +40 0 0 +247 0 0 +64 0 0 +SURF 0x30 +mat 8 +refs 3 +247 0 0 +39 0 0 +63 0 0 +SURF 0x30 +mat 8 +refs 3 +249 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 8 +refs 3 +41 0 0 +249 0 0 +65 0 0 +SURF 0x30 +mat 8 +refs 3 +249 0 0 +40 0 0 +64 0 0 +SURF 0x30 +mat 8 +refs 3 +251 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 8 +refs 3 +42 0 0 +251 0 0 +66 0 0 +SURF 0x30 +mat 8 +refs 3 +251 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 8 +refs 3 +253 0 0 +66 0 0 +67 0 0 +SURF 0x30 +mat 8 +refs 3 +43 0 0 +253 0 0 +67 0 0 +SURF 0x30 +mat 8 +refs 3 +253 0 0 +42 0 0 +66 0 0 +SURF 0x30 +mat 8 +refs 3 +255 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 8 +refs 3 +44 0 0 +255 0 0 +68 0 0 +SURF 0x30 +mat 8 +refs 3 +255 0 0 +43 0 0 +67 0 0 +SURF 0x30 +mat 8 +refs 3 +257 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 8 +refs 3 +45 0 0 +257 0 0 +69 0 0 +SURF 0x30 +mat 8 +refs 3 +257 0 0 +44 0 0 +68 0 0 +SURF 0x30 +mat 8 +refs 3 +259 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 8 +refs 3 +46 0 0 +259 0 0 +70 0 0 +SURF 0x30 +mat 8 +refs 3 +259 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 8 +refs 3 +261 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 8 +refs 3 +47 0 0 +261 0 0 +71 0 0 +SURF 0x30 +mat 8 +refs 3 +261 0 0 +46 0 0 +70 0 0 +SURF 0x30 +mat 8 +refs 3 +263 0 0 +71 0 0 +48 0 0 +SURF 0x30 +mat 8 +refs 3 +24 0 0 +263 0 0 +48 0 0 +SURF 0x30 +mat 8 +refs 3 +263 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 8 +refs 3 +192 0 0 +121 0 0 +120 0 0 +SURF 0x30 +mat 8 +refs 3 +0 0 0 +192 0 0 +120 0 0 +SURF 0x30 +mat 8 +refs 3 +192 0 0 +1 0 0 +121 0 0 +SURF 0x30 +mat 8 +refs 3 +193 0 0 +122 0 0 +121 0 0 +SURF 0x30 +mat 8 +refs 3 +1 0 0 +193 0 0 +121 0 0 +SURF 0x30 +mat 8 +refs 3 +193 0 0 +2 0 0 +122 0 0 +SURF 0x30 +mat 8 +refs 3 +194 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 8 +refs 3 +2 0 0 +194 0 0 +122 0 0 +SURF 0x30 +mat 8 +refs 3 +194 0 0 +3 0 0 +123 0 0 +SURF 0x30 +mat 8 +refs 3 +195 0 0 +124 0 0 +123 0 0 +SURF 0x30 +mat 8 +refs 3 +3 0 0 +195 0 0 +123 0 0 +SURF 0x30 +mat 8 +refs 3 +195 0 0 +4 0 0 +124 0 0 +SURF 0x30 +mat 8 +refs 3 +196 0 0 +125 0 0 +124 0 0 +SURF 0x30 +mat 8 +refs 3 +4 0 0 +196 0 0 +124 0 0 +SURF 0x30 +mat 8 +refs 3 +196 0 0 +5 0 0 +125 0 0 +SURF 0x30 +mat 8 +refs 3 +197 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 8 +refs 3 +5 0 0 +197 0 0 +125 0 0 +SURF 0x30 +mat 8 +refs 3 +197 0 0 +6 0 0 +126 0 0 +SURF 0x30 +mat 8 +refs 3 +198 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 8 +refs 3 +6 0 0 +198 0 0 +126 0 0 +SURF 0x30 +mat 8 +refs 3 +198 0 0 +7 0 0 +127 0 0 +SURF 0x30 +mat 8 +refs 3 +199 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 8 +refs 3 +7 0 0 +199 0 0 +127 0 0 +SURF 0x30 +mat 8 +refs 3 +199 0 0 +8 0 0 +128 0 0 +SURF 0x30 +mat 8 +refs 3 +200 0 0 +129 0 0 +128 0 0 +SURF 0x30 +mat 8 +refs 3 +8 0 0 +200 0 0 +128 0 0 +SURF 0x30 +mat 8 +refs 3 +200 0 0 +9 0 0 +129 0 0 +SURF 0x30 +mat 8 +refs 3 +201 0 0 +130 0 0 +129 0 0 +SURF 0x30 +mat 8 +refs 3 +9 0 0 +201 0 0 +129 0 0 +SURF 0x30 +mat 8 +refs 3 +201 0 0 +10 0 0 +130 0 0 +SURF 0x30 +mat 8 +refs 3 +202 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 8 +refs 3 +10 0 0 +202 0 0 +130 0 0 +SURF 0x30 +mat 8 +refs 3 +202 0 0 +11 0 0 +131 0 0 +SURF 0x30 +mat 8 +refs 3 +203 0 0 +132 0 0 +131 0 0 +SURF 0x30 +mat 8 +refs 3 +11 0 0 +203 0 0 +131 0 0 +SURF 0x30 +mat 8 +refs 3 +203 0 0 +12 0 0 +132 0 0 +SURF 0x30 +mat 8 +refs 3 +204 0 0 +133 0 0 +132 0 0 +SURF 0x30 +mat 8 +refs 3 +12 0 0 +204 0 0 +132 0 0 +SURF 0x30 +mat 8 +refs 3 +204 0 0 +13 0 0 +133 0 0 +SURF 0x30 +mat 8 +refs 3 +205 0 0 +134 0 0 +133 0 0 +SURF 0x30 +mat 8 +refs 3 +13 0 0 +205 0 0 +133 0 0 +SURF 0x30 +mat 8 +refs 3 +205 0 0 +14 0 0 +134 0 0 +SURF 0x30 +mat 8 +refs 3 +206 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 8 +refs 3 +14 0 0 +206 0 0 +134 0 0 +SURF 0x30 +mat 8 +refs 3 +206 0 0 +15 0 0 +135 0 0 +SURF 0x30 +mat 8 +refs 3 +207 0 0 +136 0 0 +135 0 0 +SURF 0x30 +mat 8 +refs 3 +15 0 0 +207 0 0 +135 0 0 +SURF 0x30 +mat 8 +refs 3 +207 0 0 +16 0 0 +136 0 0 +SURF 0x30 +mat 8 +refs 3 +208 0 0 +137 0 0 +136 0 0 +SURF 0x30 +mat 8 +refs 3 +16 0 0 +208 0 0 +136 0 0 +SURF 0x30 +mat 8 +refs 3 +208 0 0 +17 0 0 +137 0 0 +SURF 0x30 +mat 8 +refs 3 +209 0 0 +138 0 0 +137 0 0 +SURF 0x30 +mat 8 +refs 3 +17 0 0 +209 0 0 +137 0 0 +SURF 0x30 +mat 8 +refs 3 +209 0 0 +18 0 0 +138 0 0 +SURF 0x30 +mat 8 +refs 3 +210 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 8 +refs 3 +18 0 0 +210 0 0 +138 0 0 +SURF 0x30 +mat 8 +refs 3 +210 0 0 +19 0 0 +139 0 0 +SURF 0x30 +mat 8 +refs 3 +211 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 8 +refs 3 +19 0 0 +211 0 0 +139 0 0 +SURF 0x30 +mat 8 +refs 3 +211 0 0 +20 0 0 +140 0 0 +SURF 0x30 +mat 8 +refs 3 +212 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 8 +refs 3 +20 0 0 +212 0 0 +140 0 0 +SURF 0x30 +mat 8 +refs 3 +212 0 0 +21 0 0 +141 0 0 +SURF 0x30 +mat 8 +refs 3 +213 0 0 +142 0 0 +141 0 0 +SURF 0x30 +mat 8 +refs 3 +21 0 0 +213 0 0 +141 0 0 +SURF 0x30 +mat 8 +refs 3 +213 0 0 +22 0 0 +142 0 0 +SURF 0x30 +mat 8 +refs 3 +214 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 8 +refs 3 +22 0 0 +214 0 0 +142 0 0 +SURF 0x30 +mat 8 +refs 3 +214 0 0 +23 0 0 +143 0 0 +SURF 0x30 +mat 8 +refs 3 +215 0 0 +120 0 0 +143 0 0 +SURF 0x30 +mat 8 +refs 3 +23 0 0 +215 0 0 +143 0 0 +SURF 0x30 +mat 8 +refs 3 +215 0 0 +0 0 0 +120 0 0 +kids 0 +OBJECT poly +name "fwheel.R" +data 10 +Circle.033 +crease 30.000000 +numvert 288 +0.812473 0.666259 -0.588875 +0.870577 0.590537 -0.588875 +0.907103 0.502356 -0.588875 +0.919561 0.407726 -0.588874 +0.907103 0.313097 -0.588874 +0.870577 0.224916 -0.588874 +0.812473 0.149194 -0.588874 +0.736751 0.09109 -0.588874 +0.64857 0.054564 -0.588874 +0.553941 0.042106 -0.588874 +0.459311 0.054564 -0.588874 +0.37113 0.09109 -0.588874 +0.295408 0.149194 -0.588874 +0.237304 0.224916 -0.588874 +0.200778 0.313097 -0.588874 +0.18832 0.407726 -0.588874 +0.200778 0.502356 -0.588875 +0.237304 0.590537 -0.588875 +0.295407 0.666259 -0.588875 +0.37113 0.724363 -0.588874 +0.459311 0.760889 -0.588874 +0.55394 0.773347 -0.588874 +0.64857 0.760889 -0.588874 +0.73675 0.724363 -0.588874 +0.812473 0.666259 -0.691027 +0.870577 0.590537 -0.691027 +0.907103 0.502356 -0.691027 +0.919561 0.407727 -0.691027 +0.907103 0.313097 -0.691027 +0.870577 0.224916 -0.691027 +0.812473 0.149194 -0.691027 +0.736751 0.09109 -0.691027 +0.64857 0.054564 -0.691027 +0.553941 0.042106 -0.691027 +0.459311 0.054564 -0.691027 +0.37113 0.09109 -0.691027 +0.295408 0.149194 -0.691027 +0.237304 0.224916 -0.691027 +0.200778 0.313097 -0.691027 +0.18832 0.407726 -0.691027 +0.200778 0.502356 -0.691027 +0.237304 0.590537 -0.691027 +0.295407 0.666259 -0.691027 +0.37113 0.724363 -0.691027 +0.459311 0.760889 -0.691027 +0.55394 0.773347 -0.691027 +0.64857 0.760889 -0.691027 +0.73675 0.724363 -0.691027 +0.789703 0.64349 -0.711892 +0.84269 0.574436 -0.711892 +0.875999 0.494022 -0.711892 +0.88736 0.407727 -0.711892 +0.875999 0.321431 -0.711892 +0.84269 0.241017 -0.711892 +0.789704 0.171963 -0.711892 +0.72065 0.118977 -0.711892 +0.640236 0.085668 -0.711892 +0.55394 0.074307 -0.711892 +0.467645 0.085668 -0.711892 +0.38723 0.118977 -0.711892 +0.318177 0.171963 -0.711892 +0.26519 0.241017 -0.711892 +0.231881 0.321431 -0.711892 +0.220521 0.407726 -0.711892 +0.231881 0.494022 -0.711892 +0.26519 0.574436 -0.711892 +0.318177 0.64349 -0.711892 +0.38723 0.696476 -0.711892 +0.467645 0.729785 -0.711892 +0.55394 0.741146 -0.711892 +0.640235 0.729785 -0.711892 +0.72065 0.696477 -0.711892 +0.798925 0.549169 -0.732756 +0.75397 0.607756 -0.732756 +0.827186 0.480942 -0.732756 +0.836825 0.407727 -0.732756 +0.827186 0.334511 -0.732756 +0.798925 0.266284 -0.732756 +0.75397 0.207697 -0.732756 +0.695382 0.162741 -0.732756 +0.627156 0.134481 -0.732756 +0.55394 0.124842 -0.732756 +0.480725 0.134481 -0.732756 +0.412498 0.162741 -0.732756 +0.353911 0.207697 -0.732756 +0.308955 0.266284 -0.732756 +0.280695 0.334511 -0.732756 +0.271056 0.407726 -0.732756 +0.280695 0.480942 -0.732756 +0.308955 0.549169 -0.732756 +0.353911 0.607756 -0.732756 +0.412498 0.652712 -0.732756 +0.480724 0.680972 -0.732756 +0.55394 0.690611 -0.732756 +0.627156 0.680972 -0.732756 +0.695382 0.652712 -0.732756 +0.785375 0.541346 -0.720238 +0.742906 0.596693 -0.720238 +0.812073 0.476893 -0.720238 +0.821179 0.407727 -0.720238 +0.812073 0.33856 -0.720237 +0.785375 0.274107 -0.720238 +0.742906 0.218761 -0.720238 +0.687559 0.176291 -0.720238 +0.623107 0.149594 -0.720238 +0.55394 0.140488 -0.720238 +0.484774 0.149594 -0.720238 +0.420321 0.176291 -0.720238 +0.364974 0.21876 -0.720238 +0.322505 0.274107 -0.720238 +0.295808 0.33856 -0.720237 +0.286702 0.407726 -0.720238 +0.295808 0.476893 -0.720238 +0.322505 0.541346 -0.720238 +0.364974 0.596693 -0.720238 +0.420321 0.639162 -0.720238 +0.484774 0.665859 -0.720238 +0.55394 0.674965 -0.720238 +0.623106 0.665859 -0.720238 +0.687559 0.639162 -0.720238 +0.789784 0.64357 -0.563838 +0.842789 0.574493 -0.563838 +0.876109 0.494051 -0.563838 +0.887473 0.407727 -0.563838 +0.876109 0.321402 -0.563838 +0.842789 0.24096 -0.563838 +0.789784 0.171883 -0.563838 +0.720707 0.118878 -0.563838 +0.640265 0.085558 -0.563838 +0.55394 0.074193 -0.563838 +0.467616 0.085558 -0.563838 +0.387174 0.118878 -0.563838 +0.318097 0.171883 -0.563838 +0.265092 0.24096 -0.563838 +0.231772 0.321402 -0.563838 +0.220407 0.407726 -0.563838 +0.231772 0.494051 -0.563838 +0.265092 0.574493 -0.563838 +0.318096 0.64357 -0.563838 +0.387174 0.696575 -0.563838 +0.467615 0.729895 -0.563838 +0.55394 0.74126 -0.563838 +0.640265 0.729895 -0.563838 +0.720707 0.696575 -0.563838 +0.792728 0.54559 -0.538801 +0.748909 0.602695 -0.538801 +0.820273 0.47909 -0.538801 +0.829668 0.407727 -0.538801 +0.820273 0.336363 -0.538801 +0.792728 0.269863 -0.538801 +0.748909 0.212758 -0.538801 +0.691804 0.168939 -0.538801 +0.625304 0.141394 -0.538801 +0.55394 0.131999 -0.538801 +0.482577 0.141394 -0.538801 +0.416077 0.168939 -0.538801 +0.358971 0.212757 -0.538801 +0.315153 0.269863 -0.538801 +0.287608 0.336363 -0.538801 +0.278212 0.407726 -0.538801 +0.287608 0.47909 -0.538801 +0.315153 0.54559 -0.538801 +0.358971 0.602695 -0.538801 +0.416076 0.646514 -0.538801 +0.482576 0.674059 -0.538801 +0.55394 0.683454 -0.538801 +0.625304 0.674059 -0.538801 +0.691804 0.646514 -0.538801 +0.786683 0.5421 -0.538801 +0.743974 0.59776 -0.538801 +0.813531 0.477284 -0.538801 +0.822688 0.407727 -0.538801 +0.813531 0.33817 -0.538801 +0.786683 0.273353 -0.538801 +0.743974 0.217693 -0.538801 +0.688314 0.174984 -0.538801 +0.623497 0.148136 -0.538801 +0.55394 0.138979 -0.538801 +0.484383 0.148136 -0.538801 +0.419566 0.174984 -0.538801 +0.363907 0.217693 -0.538801 +0.321198 0.273353 -0.538801 +0.29435 0.338169 -0.538801 +0.285192 0.407726 -0.538801 +0.29435 0.477284 -0.538801 +0.321198 0.5421 -0.538801 +0.363907 0.59776 -0.538801 +0.419566 0.640469 -0.538801 +0.484383 0.667317 -0.538801 +0.55394 0.676474 -0.538801 +0.623497 0.667317 -0.538801 +0.688314 0.640469 -0.538801 +0.841525 0.628398 -0.571425 +0.88884 0.546447 -0.571425 +0.913332 0.455041 -0.571425 +0.913332 0.360412 -0.571425 +0.88884 0.269007 -0.571425 +0.841525 0.187055 -0.571425 +0.774612 0.120142 -0.571425 +0.69266 0.072827 -0.571425 +0.601255 0.048335 -0.571425 +0.506626 0.048335 -0.571425 +0.415221 0.072827 -0.571425 +0.333269 0.120142 -0.571425 +0.266356 0.187055 -0.571425 +0.219041 0.269007 -0.571425 +0.194549 0.360412 -0.571425 +0.194549 0.455041 -0.571425 +0.219041 0.546446 -0.571425 +0.266355 0.628398 -0.571425 +0.333268 0.695311 -0.571425 +0.41522 0.742626 -0.571425 +0.506625 0.767118 -0.571425 +0.601255 0.767118 -0.571425 +0.69266 0.742626 -0.571425 +0.774612 0.695311 -0.571425 +0.870577 0.590537 -0.639951 +0.841525 0.628398 -0.708477 +0.812473 0.666259 -0.639951 +0.907103 0.502356 -0.639951 +0.88884 0.546446 -0.708477 +0.913332 0.455041 -0.708477 +0.919561 0.407727 -0.639951 +0.907103 0.313097 -0.639951 +0.913332 0.360412 -0.708477 +0.88884 0.269007 -0.708477 +0.870577 0.224916 -0.639951 +0.841525 0.187055 -0.708477 +0.812473 0.149194 -0.639951 +0.774612 0.120142 -0.708477 +0.736751 0.09109 -0.639951 +0.64857 0.054564 -0.639951 +0.69266 0.072827 -0.708477 +0.601255 0.048335 -0.708477 +0.553941 0.042106 -0.639951 +0.506626 0.048335 -0.708477 +0.459311 0.054564 -0.639951 +0.415221 0.072827 -0.708477 +0.37113 0.09109 -0.639951 +0.295408 0.149194 -0.639951 +0.333269 0.120142 -0.708477 +0.266356 0.187055 -0.708477 +0.237304 0.224916 -0.639951 +0.219041 0.269007 -0.708477 +0.200778 0.313097 -0.639951 +0.194549 0.360412 -0.708477 +0.18832 0.407726 -0.639951 +0.194549 0.455041 -0.708477 +0.200778 0.502356 -0.639951 +0.219041 0.546446 -0.708477 +0.237304 0.590537 -0.639951 +0.266355 0.628398 -0.708477 +0.295407 0.666259 -0.639951 +0.333268 0.695311 -0.708477 +0.37113 0.724363 -0.639951 +0.41522 0.742626 -0.708477 +0.459311 0.760889 -0.639951 +0.506625 0.767118 -0.708477 +0.55394 0.773347 -0.639951 +0.601255 0.767118 -0.708477 +0.64857 0.760889 -0.639951 +0.69266 0.742626 -0.708477 +0.73675 0.724363 -0.639951 +0.774612 0.695311 -0.708477 +0.841525 0.628398 -0.639951 +0.88884 0.546446 -0.639951 +0.913332 0.455041 -0.639951 +0.913332 0.360412 -0.639951 +0.88884 0.269007 -0.639951 +0.841525 0.187055 -0.639951 +0.774612 0.120142 -0.639951 +0.69266 0.072827 -0.639951 +0.601255 0.048335 -0.639951 +0.506626 0.048335 -0.639951 +0.415221 0.072827 -0.639951 +0.333269 0.120142 -0.639951 +0.266356 0.187055 -0.639951 +0.219041 0.269007 -0.639951 +0.194549 0.360412 -0.639951 +0.194549 0.455041 -0.639951 +0.219041 0.546446 -0.639951 +0.266355 0.628398 -0.639951 +0.333268 0.695311 -0.639951 +0.41522 0.742626 -0.639951 +0.506625 0.767118 -0.639951 +0.601255 0.767118 -0.639951 +0.69266 0.742626 -0.639951 +0.774612 0.695311 -0.639951 +numsurf 336 +SURF 0x30 +mat 8 +refs 4 +48 0 0 +49 0 0 +72 0 0 +73 0 0 +SURF 0x30 +mat 8 +refs 4 +49 0 0 +50 0 0 +74 0 0 +72 0 0 +SURF 0x30 +mat 8 +refs 4 +51 0 0 +75 0 0 +74 0 0 +50 0 0 +SURF 0x30 +mat 8 +refs 4 +51 0 0 +52 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 8 +refs 4 +53 0 0 +77 0 0 +76 0 0 +52 0 0 +SURF 0x30 +mat 8 +refs 4 +54 0 0 +78 0 0 +77 0 0 +53 0 0 +SURF 0x30 +mat 8 +refs 4 +55 0 0 +79 0 0 +78 0 0 +54 0 0 +SURF 0x30 +mat 8 +refs 4 +55 0 0 +56 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 8 +refs 4 +57 0 0 +81 0 0 +80 0 0 +56 0 0 +SURF 0x30 +mat 8 +refs 4 +58 0 0 +82 0 0 +81 0 0 +57 0 0 +SURF 0x30 +mat 8 +refs 4 +59 0 0 +83 0 0 +82 0 0 +58 0 0 +SURF 0x30 +mat 8 +refs 4 +59 0 0 +60 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 8 +refs 4 +61 0 0 +85 0 0 +84 0 0 +60 0 0 +SURF 0x30 +mat 8 +refs 4 +62 0 0 +86 0 0 +85 0 0 +61 0 0 +SURF 0x30 +mat 8 +refs 4 +63 0 0 +87 0 0 +86 0 0 +62 0 0 +SURF 0x30 +mat 8 +refs 4 +64 0 0 +88 0 0 +87 0 0 +63 0 0 +SURF 0x30 +mat 8 +refs 4 +65 0 0 +89 0 0 +88 0 0 +64 0 0 +SURF 0x30 +mat 8 +refs 4 +66 0 0 +90 0 0 +89 0 0 +65 0 0 +SURF 0x30 +mat 8 +refs 4 +67 0 0 +91 0 0 +90 0 0 +66 0 0 +SURF 0x30 +mat 8 +refs 4 +68 0 0 +92 0 0 +91 0 0 +67 0 0 +SURF 0x30 +mat 8 +refs 4 +69 0 0 +93 0 0 +92 0 0 +68 0 0 +SURF 0x30 +mat 8 +refs 4 +70 0 0 +94 0 0 +93 0 0 +69 0 0 +SURF 0x30 +mat 8 +refs 4 +71 0 0 +95 0 0 +94 0 0 +70 0 0 +SURF 0x30 +mat 8 +refs 4 +71 0 0 +48 0 0 +73 0 0 +95 0 0 +SURF 0x30 +mat 8 +refs 4 +73 0 0 +72 0 0 +96 0 0 +97 0 0 +SURF 0x30 +mat 8 +refs 4 +72 0 0 +74 0 0 +98 0 0 +96 0 0 +SURF 0x30 +mat 8 +refs 4 +75 0 0 +99 0 0 +98 0 0 +74 0 0 +SURF 0x30 +mat 8 +refs 4 +75 0 0 +76 0 0 +100 0 0 +99 0 0 +SURF 0x30 +mat 8 +refs 4 +77 0 0 +101 0 0 +100 0 0 +76 0 0 +SURF 0x30 +mat 8 +refs 4 +78 0 0 +102 0 0 +101 0 0 +77 0 0 +SURF 0x30 +mat 8 +refs 4 +79 0 0 +103 0 0 +102 0 0 +78 0 0 +SURF 0x30 +mat 8 +refs 4 +79 0 0 +80 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 8 +refs 4 +81 0 0 +105 0 0 +104 0 0 +80 0 0 +SURF 0x30 +mat 8 +refs 4 +82 0 0 +106 0 0 +105 0 0 +81 0 0 +SURF 0x30 +mat 8 +refs 4 +83 0 0 +107 0 0 +106 0 0 +82 0 0 +SURF 0x30 +mat 8 +refs 4 +83 0 0 +84 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 8 +refs 4 +85 0 0 +109 0 0 +108 0 0 +84 0 0 +SURF 0x30 +mat 8 +refs 4 +86 0 0 +110 0 0 +109 0 0 +85 0 0 +SURF 0x30 +mat 8 +refs 4 +87 0 0 +111 0 0 +110 0 0 +86 0 0 +SURF 0x30 +mat 8 +refs 4 +88 0 0 +112 0 0 +111 0 0 +87 0 0 +SURF 0x30 +mat 8 +refs 4 +89 0 0 +113 0 0 +112 0 0 +88 0 0 +SURF 0x30 +mat 8 +refs 4 +90 0 0 +114 0 0 +113 0 0 +89 0 0 +SURF 0x30 +mat 8 +refs 4 +91 0 0 +115 0 0 +114 0 0 +90 0 0 +SURF 0x30 +mat 8 +refs 4 +92 0 0 +116 0 0 +115 0 0 +91 0 0 +SURF 0x30 +mat 8 +refs 4 +93 0 0 +117 0 0 +116 0 0 +92 0 0 +SURF 0x30 +mat 8 +refs 4 +94 0 0 +118 0 0 +117 0 0 +93 0 0 +SURF 0x30 +mat 8 +refs 4 +95 0 0 +119 0 0 +118 0 0 +94 0 0 +SURF 0x30 +mat 8 +refs 4 +95 0 0 +73 0 0 +97 0 0 +119 0 0 +SURF 0x30 +mat 8 +refs 4 +121 0 0 +120 0 0 +145 0 0 +144 0 0 +SURF 0x30 +mat 8 +refs 4 +122 0 0 +121 0 0 +144 0 0 +146 0 0 +SURF 0x30 +mat 8 +refs 4 +122 0 0 +146 0 0 +147 0 0 +123 0 0 +SURF 0x30 +mat 8 +refs 4 +124 0 0 +123 0 0 +147 0 0 +148 0 0 +SURF 0x30 +mat 8 +refs 4 +124 0 0 +148 0 0 +149 0 0 +125 0 0 +SURF 0x30 +mat 8 +refs 4 +125 0 0 +149 0 0 +150 0 0 +126 0 0 +SURF 0x30 +mat 8 +refs 4 +126 0 0 +150 0 0 +151 0 0 +127 0 0 +SURF 0x30 +mat 8 +refs 4 +128 0 0 +127 0 0 +151 0 0 +152 0 0 +SURF 0x30 +mat 8 +refs 4 +128 0 0 +152 0 0 +153 0 0 +129 0 0 +SURF 0x30 +mat 8 +refs 4 +129 0 0 +153 0 0 +154 0 0 +130 0 0 +SURF 0x30 +mat 8 +refs 4 +130 0 0 +154 0 0 +155 0 0 +131 0 0 +SURF 0x30 +mat 8 +refs 4 +132 0 0 +131 0 0 +155 0 0 +156 0 0 +SURF 0x30 +mat 8 +refs 4 +132 0 0 +156 0 0 +157 0 0 +133 0 0 +SURF 0x30 +mat 8 +refs 4 +133 0 0 +157 0 0 +158 0 0 +134 0 0 +SURF 0x30 +mat 8 +refs 4 +134 0 0 +158 0 0 +159 0 0 +135 0 0 +SURF 0x30 +mat 8 +refs 4 +135 0 0 +159 0 0 +160 0 0 +136 0 0 +SURF 0x30 +mat 8 +refs 4 +136 0 0 +160 0 0 +161 0 0 +137 0 0 +SURF 0x30 +mat 8 +refs 4 +137 0 0 +161 0 0 +162 0 0 +138 0 0 +SURF 0x30 +mat 8 +refs 4 +138 0 0 +162 0 0 +163 0 0 +139 0 0 +SURF 0x30 +mat 8 +refs 4 +139 0 0 +163 0 0 +164 0 0 +140 0 0 +SURF 0x30 +mat 8 +refs 4 +140 0 0 +164 0 0 +165 0 0 +141 0 0 +SURF 0x30 +mat 8 +refs 4 +141 0 0 +165 0 0 +166 0 0 +142 0 0 +SURF 0x30 +mat 8 +refs 4 +142 0 0 +166 0 0 +167 0 0 +143 0 0 +SURF 0x30 +mat 8 +refs 4 +120 0 0 +143 0 0 +167 0 0 +145 0 0 +SURF 0x30 +mat 8 +refs 4 +144 0 0 +145 0 0 +169 0 0 +168 0 0 +SURF 0x30 +mat 8 +refs 4 +146 0 0 +144 0 0 +168 0 0 +170 0 0 +SURF 0x30 +mat 8 +refs 4 +146 0 0 +170 0 0 +171 0 0 +147 0 0 +SURF 0x30 +mat 8 +refs 4 +148 0 0 +147 0 0 +171 0 0 +172 0 0 +SURF 0x30 +mat 8 +refs 4 +148 0 0 +172 0 0 +173 0 0 +149 0 0 +SURF 0x30 +mat 8 +refs 4 +149 0 0 +173 0 0 +174 0 0 +150 0 0 +SURF 0x30 +mat 8 +refs 4 +150 0 0 +174 0 0 +175 0 0 +151 0 0 +SURF 0x30 +mat 8 +refs 4 +152 0 0 +151 0 0 +175 0 0 +176 0 0 +SURF 0x30 +mat 8 +refs 4 +152 0 0 +176 0 0 +177 0 0 +153 0 0 +SURF 0x30 +mat 8 +refs 4 +153 0 0 +177 0 0 +178 0 0 +154 0 0 +SURF 0x30 +mat 8 +refs 4 +154 0 0 +178 0 0 +179 0 0 +155 0 0 +SURF 0x30 +mat 8 +refs 4 +156 0 0 +155 0 0 +179 0 0 +180 0 0 +SURF 0x30 +mat 8 +refs 4 +156 0 0 +180 0 0 +181 0 0 +157 0 0 +SURF 0x30 +mat 8 +refs 4 +157 0 0 +181 0 0 +182 0 0 +158 0 0 +SURF 0x30 +mat 8 +refs 4 +158 0 0 +182 0 0 +183 0 0 +159 0 0 +SURF 0x30 +mat 8 +refs 4 +159 0 0 +183 0 0 +184 0 0 +160 0 0 +SURF 0x30 +mat 8 +refs 4 +160 0 0 +184 0 0 +185 0 0 +161 0 0 +SURF 0x30 +mat 8 +refs 4 +161 0 0 +185 0 0 +186 0 0 +162 0 0 +SURF 0x30 +mat 8 +refs 4 +162 0 0 +186 0 0 +187 0 0 +163 0 0 +SURF 0x30 +mat 8 +refs 4 +163 0 0 +187 0 0 +188 0 0 +164 0 0 +SURF 0x30 +mat 8 +refs 4 +164 0 0 +188 0 0 +189 0 0 +165 0 0 +SURF 0x30 +mat 8 +refs 4 +165 0 0 +189 0 0 +190 0 0 +166 0 0 +SURF 0x30 +mat 8 +refs 4 +166 0 0 +190 0 0 +191 0 0 +167 0 0 +SURF 0x30 +mat 8 +refs 4 +145 0 0 +167 0 0 +191 0 0 +169 0 0 +SURF 0x30 +mat 8 +refs 4 +218 0 0 +264 0 0 +217 0 0 +24 0 0 +SURF 0x30 +mat 8 +refs 4 +0 0 0 +192 0 0 +264 0 0 +218 0 0 +SURF 0x30 +mat 8 +refs 4 +264 0 0 +216 0 0 +25 0 0 +217 0 0 +SURF 0x30 +mat 8 +refs 4 +192 0 0 +1 0 0 +216 0 0 +264 0 0 +SURF 0x30 +mat 8 +refs 4 +216 0 0 +265 0 0 +220 0 0 +25 0 0 +SURF 0x30 +mat 8 +refs 4 +1 0 0 +193 0 0 +265 0 0 +216 0 0 +SURF 0x30 +mat 8 +refs 4 +265 0 0 +219 0 0 +26 0 0 +220 0 0 +SURF 0x30 +mat 8 +refs 4 +193 0 0 +2 0 0 +219 0 0 +265 0 0 +SURF 0x30 +mat 8 +refs 4 +194 0 0 +266 0 0 +219 0 0 +2 0 0 +SURF 0x30 +mat 8 +refs 4 +3 0 0 +222 0 0 +266 0 0 +194 0 0 +SURF 0x30 +mat 8 +refs 4 +266 0 0 +221 0 0 +26 0 0 +219 0 0 +SURF 0x30 +mat 8 +refs 4 +222 0 0 +27 0 0 +221 0 0 +266 0 0 +SURF 0x30 +mat 8 +refs 4 +222 0 0 +267 0 0 +224 0 0 +27 0 0 +SURF 0x30 +mat 8 +refs 4 +3 0 0 +195 0 0 +267 0 0 +222 0 0 +SURF 0x30 +mat 8 +refs 4 +267 0 0 +223 0 0 +28 0 0 +224 0 0 +SURF 0x30 +mat 8 +refs 4 +195 0 0 +4 0 0 +223 0 0 +267 0 0 +SURF 0x30 +mat 8 +refs 4 +196 0 0 +268 0 0 +223 0 0 +4 0 0 +SURF 0x30 +mat 8 +refs 4 +5 0 0 +226 0 0 +268 0 0 +196 0 0 +SURF 0x30 +mat 8 +refs 4 +268 0 0 +225 0 0 +28 0 0 +223 0 0 +SURF 0x30 +mat 8 +refs 4 +226 0 0 +29 0 0 +225 0 0 +268 0 0 +SURF 0x30 +mat 8 +refs 4 +197 0 0 +269 0 0 +226 0 0 +5 0 0 +SURF 0x30 +mat 8 +refs 4 +6 0 0 +228 0 0 +269 0 0 +197 0 0 +SURF 0x30 +mat 8 +refs 4 +269 0 0 +227 0 0 +29 0 0 +226 0 0 +SURF 0x30 +mat 8 +refs 4 +228 0 0 +30 0 0 +227 0 0 +269 0 0 +SURF 0x30 +mat 8 +refs 4 +198 0 0 +270 0 0 +228 0 0 +6 0 0 +SURF 0x30 +mat 8 +refs 4 +7 0 0 +230 0 0 +270 0 0 +198 0 0 +SURF 0x30 +mat 8 +refs 4 +270 0 0 +229 0 0 +30 0 0 +228 0 0 +SURF 0x30 +mat 8 +refs 4 +230 0 0 +31 0 0 +229 0 0 +270 0 0 +SURF 0x30 +mat 8 +refs 4 +230 0 0 +271 0 0 +232 0 0 +31 0 0 +SURF 0x30 +mat 8 +refs 4 +7 0 0 +199 0 0 +271 0 0 +230 0 0 +SURF 0x30 +mat 8 +refs 4 +271 0 0 +231 0 0 +32 0 0 +232 0 0 +SURF 0x30 +mat 8 +refs 4 +199 0 0 +8 0 0 +231 0 0 +271 0 0 +SURF 0x30 +mat 8 +refs 4 +200 0 0 +272 0 0 +231 0 0 +8 0 0 +SURF 0x30 +mat 8 +refs 4 +9 0 0 +234 0 0 +272 0 0 +200 0 0 +SURF 0x30 +mat 8 +refs 4 +272 0 0 +233 0 0 +32 0 0 +231 0 0 +SURF 0x30 +mat 8 +refs 4 +234 0 0 +33 0 0 +233 0 0 +272 0 0 +SURF 0x30 +mat 8 +refs 4 +201 0 0 +273 0 0 +234 0 0 +9 0 0 +SURF 0x30 +mat 8 +refs 4 +10 0 0 +236 0 0 +273 0 0 +201 0 0 +SURF 0x30 +mat 8 +refs 4 +273 0 0 +235 0 0 +33 0 0 +234 0 0 +SURF 0x30 +mat 8 +refs 4 +236 0 0 +34 0 0 +235 0 0 +273 0 0 +SURF 0x30 +mat 8 +refs 4 +202 0 0 +274 0 0 +236 0 0 +10 0 0 +SURF 0x30 +mat 8 +refs 4 +11 0 0 +238 0 0 +274 0 0 +202 0 0 +SURF 0x30 +mat 8 +refs 4 +274 0 0 +237 0 0 +34 0 0 +236 0 0 +SURF 0x30 +mat 8 +refs 4 +238 0 0 +35 0 0 +237 0 0 +274 0 0 +SURF 0x30 +mat 8 +refs 4 +238 0 0 +275 0 0 +240 0 0 +35 0 0 +SURF 0x30 +mat 8 +refs 4 +11 0 0 +203 0 0 +275 0 0 +238 0 0 +SURF 0x30 +mat 8 +refs 4 +275 0 0 +239 0 0 +36 0 0 +240 0 0 +SURF 0x30 +mat 8 +refs 4 +203 0 0 +12 0 0 +239 0 0 +275 0 0 +SURF 0x30 +mat 8 +refs 4 +204 0 0 +276 0 0 +239 0 0 +12 0 0 +SURF 0x30 +mat 8 +refs 4 +13 0 0 +242 0 0 +276 0 0 +204 0 0 +SURF 0x30 +mat 8 +refs 4 +276 0 0 +241 0 0 +36 0 0 +239 0 0 +SURF 0x30 +mat 8 +refs 4 +242 0 0 +37 0 0 +241 0 0 +276 0 0 +SURF 0x30 +mat 8 +refs 4 +205 0 0 +277 0 0 +242 0 0 +13 0 0 +SURF 0x30 +mat 8 +refs 4 +14 0 0 +244 0 0 +277 0 0 +205 0 0 +SURF 0x30 +mat 8 +refs 4 +277 0 0 +243 0 0 +37 0 0 +242 0 0 +SURF 0x30 +mat 8 +refs 4 +244 0 0 +38 0 0 +243 0 0 +277 0 0 +SURF 0x30 +mat 8 +refs 4 +206 0 0 +278 0 0 +244 0 0 +14 0 0 +SURF 0x30 +mat 8 +refs 4 +15 0 0 +246 0 0 +278 0 0 +206 0 0 +SURF 0x30 +mat 8 +refs 4 +278 0 0 +245 0 0 +38 0 0 +244 0 0 +SURF 0x30 +mat 8 +refs 4 +246 0 0 +39 0 0 +245 0 0 +278 0 0 +SURF 0x30 +mat 8 +refs 4 +207 0 0 +279 0 0 +246 0 0 +15 0 0 +SURF 0x30 +mat 8 +refs 4 +16 0 0 +248 0 0 +279 0 0 +207 0 0 +SURF 0x30 +mat 8 +refs 4 +279 0 0 +247 0 0 +39 0 0 +246 0 0 +SURF 0x30 +mat 8 +refs 4 +248 0 0 +40 0 0 +247 0 0 +279 0 0 +SURF 0x30 +mat 8 +refs 4 +208 0 0 +280 0 0 +248 0 0 +16 0 0 +SURF 0x30 +mat 8 +refs 4 +17 0 0 +250 0 0 +280 0 0 +208 0 0 +SURF 0x30 +mat 8 +refs 4 +280 0 0 +249 0 0 +40 0 0 +248 0 0 +SURF 0x30 +mat 8 +refs 4 +250 0 0 +41 0 0 +249 0 0 +280 0 0 +SURF 0x30 +mat 8 +refs 4 +209 0 0 +281 0 0 +250 0 0 +17 0 0 +SURF 0x30 +mat 8 +refs 4 +18 0 0 +252 0 0 +281 0 0 +209 0 0 +SURF 0x30 +mat 8 +refs 4 +281 0 0 +251 0 0 +41 0 0 +250 0 0 +SURF 0x30 +mat 8 +refs 4 +252 0 0 +42 0 0 +251 0 0 +281 0 0 +SURF 0x30 +mat 8 +refs 4 +210 0 0 +282 0 0 +252 0 0 +18 0 0 +SURF 0x30 +mat 8 +refs 4 +19 0 0 +254 0 0 +282 0 0 +210 0 0 +SURF 0x30 +mat 8 +refs 4 +282 0 0 +253 0 0 +42 0 0 +252 0 0 +SURF 0x30 +mat 8 +refs 4 +254 0 0 +43 0 0 +253 0 0 +282 0 0 +SURF 0x30 +mat 8 +refs 4 +211 0 0 +283 0 0 +254 0 0 +19 0 0 +SURF 0x30 +mat 8 +refs 4 +20 0 0 +256 0 0 +283 0 0 +211 0 0 +SURF 0x30 +mat 8 +refs 4 +283 0 0 +255 0 0 +43 0 0 +254 0 0 +SURF 0x30 +mat 8 +refs 4 +256 0 0 +44 0 0 +255 0 0 +283 0 0 +SURF 0x30 +mat 8 +refs 4 +212 0 0 +284 0 0 +256 0 0 +20 0 0 +SURF 0x30 +mat 8 +refs 4 +21 0 0 +258 0 0 +284 0 0 +212 0 0 +SURF 0x30 +mat 8 +refs 4 +284 0 0 +257 0 0 +44 0 0 +256 0 0 +SURF 0x30 +mat 8 +refs 4 +258 0 0 +45 0 0 +257 0 0 +284 0 0 +SURF 0x30 +mat 8 +refs 4 +213 0 0 +285 0 0 +258 0 0 +21 0 0 +SURF 0x30 +mat 8 +refs 4 +22 0 0 +260 0 0 +285 0 0 +213 0 0 +SURF 0x30 +mat 8 +refs 4 +285 0 0 +259 0 0 +45 0 0 +258 0 0 +SURF 0x30 +mat 8 +refs 4 +260 0 0 +46 0 0 +259 0 0 +285 0 0 +SURF 0x30 +mat 8 +refs 4 +214 0 0 +286 0 0 +260 0 0 +22 0 0 +SURF 0x30 +mat 8 +refs 4 +23 0 0 +262 0 0 +286 0 0 +214 0 0 +SURF 0x30 +mat 8 +refs 4 +286 0 0 +261 0 0 +46 0 0 +260 0 0 +SURF 0x30 +mat 8 +refs 4 +262 0 0 +47 0 0 +261 0 0 +286 0 0 +SURF 0x30 +mat 8 +refs 4 +215 0 0 +0 0 0 +218 0 0 +287 0 0 +SURF 0x30 +mat 8 +refs 4 +24 0 0 +263 0 0 +287 0 0 +218 0 0 +SURF 0x30 +mat 8 +refs 4 +287 0 0 +262 0 0 +23 0 0 +215 0 0 +SURF 0x30 +mat 8 +refs 4 +263 0 0 +47 0 0 +262 0 0 +287 0 0 +SURF 0x30 +mat 8 +refs 3 +217 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 8 +refs 3 +25 0 0 +49 0 0 +217 0 0 +SURF 0x30 +mat 8 +refs 3 +217 0 0 +48 0 0 +24 0 0 +SURF 0x30 +mat 8 +refs 3 +220 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 8 +refs 3 +26 0 0 +50 0 0 +220 0 0 +SURF 0x30 +mat 8 +refs 3 +220 0 0 +49 0 0 +25 0 0 +SURF 0x30 +mat 8 +refs 3 +221 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 8 +refs 3 +27 0 0 +51 0 0 +221 0 0 +SURF 0x30 +mat 8 +refs 3 +221 0 0 +50 0 0 +26 0 0 +SURF 0x30 +mat 8 +refs 3 +224 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 8 +refs 3 +28 0 0 +52 0 0 +224 0 0 +SURF 0x30 +mat 8 +refs 3 +224 0 0 +51 0 0 +27 0 0 +SURF 0x30 +mat 8 +refs 3 +225 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 8 +refs 3 +29 0 0 +53 0 0 +225 0 0 +SURF 0x30 +mat 8 +refs 3 +225 0 0 +52 0 0 +28 0 0 +SURF 0x30 +mat 8 +refs 3 +227 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 8 +refs 3 +30 0 0 +54 0 0 +227 0 0 +SURF 0x30 +mat 8 +refs 3 +227 0 0 +53 0 0 +29 0 0 +SURF 0x30 +mat 8 +refs 3 +229 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 8 +refs 3 +31 0 0 +55 0 0 +229 0 0 +SURF 0x30 +mat 8 +refs 3 +229 0 0 +54 0 0 +30 0 0 +SURF 0x30 +mat 8 +refs 3 +232 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 8 +refs 3 +32 0 0 +56 0 0 +232 0 0 +SURF 0x30 +mat 8 +refs 3 +232 0 0 +55 0 0 +31 0 0 +SURF 0x30 +mat 8 +refs 3 +233 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 8 +refs 3 +33 0 0 +57 0 0 +233 0 0 +SURF 0x30 +mat 8 +refs 3 +233 0 0 +56 0 0 +32 0 0 +SURF 0x30 +mat 8 +refs 3 +235 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 8 +refs 3 +34 0 0 +58 0 0 +235 0 0 +SURF 0x30 +mat 8 +refs 3 +235 0 0 +57 0 0 +33 0 0 +SURF 0x30 +mat 8 +refs 3 +237 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 8 +refs 3 +35 0 0 +59 0 0 +237 0 0 +SURF 0x30 +mat 8 +refs 3 +237 0 0 +58 0 0 +34 0 0 +SURF 0x30 +mat 8 +refs 3 +240 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 8 +refs 3 +36 0 0 +60 0 0 +240 0 0 +SURF 0x30 +mat 8 +refs 3 +240 0 0 +59 0 0 +35 0 0 +SURF 0x30 +mat 8 +refs 3 +241 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 8 +refs 3 +37 0 0 +61 0 0 +241 0 0 +SURF 0x30 +mat 8 +refs 3 +241 0 0 +60 0 0 +36 0 0 +SURF 0x30 +mat 8 +refs 3 +243 0 0 +62 0 0 +61 0 0 +SURF 0x30 +mat 8 +refs 3 +38 0 0 +62 0 0 +243 0 0 +SURF 0x30 +mat 8 +refs 3 +243 0 0 +61 0 0 +37 0 0 +SURF 0x30 +mat 8 +refs 3 +245 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 8 +refs 3 +39 0 0 +63 0 0 +245 0 0 +SURF 0x30 +mat 8 +refs 3 +245 0 0 +62 0 0 +38 0 0 +SURF 0x30 +mat 8 +refs 3 +247 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 8 +refs 3 +40 0 0 +64 0 0 +247 0 0 +SURF 0x30 +mat 8 +refs 3 +247 0 0 +63 0 0 +39 0 0 +SURF 0x30 +mat 8 +refs 3 +249 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 8 +refs 3 +41 0 0 +65 0 0 +249 0 0 +SURF 0x30 +mat 8 +refs 3 +249 0 0 +64 0 0 +40 0 0 +SURF 0x30 +mat 8 +refs 3 +251 0 0 +66 0 0 +65 0 0 +SURF 0x30 +mat 8 +refs 3 +42 0 0 +66 0 0 +251 0 0 +SURF 0x30 +mat 8 +refs 3 +251 0 0 +65 0 0 +41 0 0 +SURF 0x30 +mat 8 +refs 3 +253 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 8 +refs 3 +43 0 0 +67 0 0 +253 0 0 +SURF 0x30 +mat 8 +refs 3 +253 0 0 +66 0 0 +42 0 0 +SURF 0x30 +mat 8 +refs 3 +255 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 8 +refs 3 +44 0 0 +68 0 0 +255 0 0 +SURF 0x30 +mat 8 +refs 3 +255 0 0 +67 0 0 +43 0 0 +SURF 0x30 +mat 8 +refs 3 +257 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 8 +refs 3 +45 0 0 +69 0 0 +257 0 0 +SURF 0x30 +mat 8 +refs 3 +257 0 0 +68 0 0 +44 0 0 +SURF 0x30 +mat 8 +refs 3 +259 0 0 +70 0 0 +69 0 0 +SURF 0x30 +mat 8 +refs 3 +46 0 0 +70 0 0 +259 0 0 +SURF 0x30 +mat 8 +refs 3 +259 0 0 +69 0 0 +45 0 0 +SURF 0x30 +mat 8 +refs 3 +261 0 0 +71 0 0 +70 0 0 +SURF 0x30 +mat 8 +refs 3 +47 0 0 +71 0 0 +261 0 0 +SURF 0x30 +mat 8 +refs 3 +261 0 0 +70 0 0 +46 0 0 +SURF 0x30 +mat 8 +refs 3 +263 0 0 +48 0 0 +71 0 0 +SURF 0x30 +mat 8 +refs 3 +24 0 0 +48 0 0 +263 0 0 +SURF 0x30 +mat 8 +refs 3 +263 0 0 +71 0 0 +47 0 0 +SURF 0x30 +mat 8 +refs 3 +192 0 0 +120 0 0 +121 0 0 +SURF 0x30 +mat 8 +refs 3 +0 0 0 +120 0 0 +192 0 0 +SURF 0x30 +mat 8 +refs 3 +192 0 0 +121 0 0 +1 0 0 +SURF 0x30 +mat 8 +refs 3 +193 0 0 +121 0 0 +122 0 0 +SURF 0x30 +mat 8 +refs 3 +1 0 0 +121 0 0 +193 0 0 +SURF 0x30 +mat 8 +refs 3 +193 0 0 +122 0 0 +2 0 0 +SURF 0x30 +mat 8 +refs 3 +194 0 0 +122 0 0 +123 0 0 +SURF 0x30 +mat 8 +refs 3 +2 0 0 +122 0 0 +194 0 0 +SURF 0x30 +mat 8 +refs 3 +194 0 0 +123 0 0 +3 0 0 +SURF 0x30 +mat 8 +refs 3 +195 0 0 +123 0 0 +124 0 0 +SURF 0x30 +mat 8 +refs 3 +3 0 0 +123 0 0 +195 0 0 +SURF 0x30 +mat 8 +refs 3 +195 0 0 +124 0 0 +4 0 0 +SURF 0x30 +mat 8 +refs 3 +196 0 0 +124 0 0 +125 0 0 +SURF 0x30 +mat 8 +refs 3 +4 0 0 +124 0 0 +196 0 0 +SURF 0x30 +mat 8 +refs 3 +196 0 0 +125 0 0 +5 0 0 +SURF 0x30 +mat 8 +refs 3 +197 0 0 +125 0 0 +126 0 0 +SURF 0x30 +mat 8 +refs 3 +5 0 0 +125 0 0 +197 0 0 +SURF 0x30 +mat 8 +refs 3 +197 0 0 +126 0 0 +6 0 0 +SURF 0x30 +mat 8 +refs 3 +198 0 0 +126 0 0 +127 0 0 +SURF 0x30 +mat 8 +refs 3 +6 0 0 +126 0 0 +198 0 0 +SURF 0x30 +mat 8 +refs 3 +198 0 0 +127 0 0 +7 0 0 +SURF 0x30 +mat 8 +refs 3 +199 0 0 +127 0 0 +128 0 0 +SURF 0x30 +mat 8 +refs 3 +7 0 0 +127 0 0 +199 0 0 +SURF 0x30 +mat 8 +refs 3 +199 0 0 +128 0 0 +8 0 0 +SURF 0x30 +mat 8 +refs 3 +200 0 0 +128 0 0 +129 0 0 +SURF 0x30 +mat 8 +refs 3 +8 0 0 +128 0 0 +200 0 0 +SURF 0x30 +mat 8 +refs 3 +200 0 0 +129 0 0 +9 0 0 +SURF 0x30 +mat 8 +refs 3 +201 0 0 +129 0 0 +130 0 0 +SURF 0x30 +mat 8 +refs 3 +9 0 0 +129 0 0 +201 0 0 +SURF 0x30 +mat 8 +refs 3 +201 0 0 +130 0 0 +10 0 0 +SURF 0x30 +mat 8 +refs 3 +202 0 0 +130 0 0 +131 0 0 +SURF 0x30 +mat 8 +refs 3 +10 0 0 +130 0 0 +202 0 0 +SURF 0x30 +mat 8 +refs 3 +202 0 0 +131 0 0 +11 0 0 +SURF 0x30 +mat 8 +refs 3 +203 0 0 +131 0 0 +132 0 0 +SURF 0x30 +mat 8 +refs 3 +11 0 0 +131 0 0 +203 0 0 +SURF 0x30 +mat 8 +refs 3 +203 0 0 +132 0 0 +12 0 0 +SURF 0x30 +mat 8 +refs 3 +204 0 0 +132 0 0 +133 0 0 +SURF 0x30 +mat 8 +refs 3 +12 0 0 +132 0 0 +204 0 0 +SURF 0x30 +mat 8 +refs 3 +204 0 0 +133 0 0 +13 0 0 +SURF 0x30 +mat 8 +refs 3 +205 0 0 +133 0 0 +134 0 0 +SURF 0x30 +mat 8 +refs 3 +13 0 0 +133 0 0 +205 0 0 +SURF 0x30 +mat 8 +refs 3 +205 0 0 +134 0 0 +14 0 0 +SURF 0x30 +mat 8 +refs 3 +206 0 0 +134 0 0 +135 0 0 +SURF 0x30 +mat 8 +refs 3 +14 0 0 +134 0 0 +206 0 0 +SURF 0x30 +mat 8 +refs 3 +206 0 0 +135 0 0 +15 0 0 +SURF 0x30 +mat 8 +refs 3 +207 0 0 +135 0 0 +136 0 0 +SURF 0x30 +mat 8 +refs 3 +15 0 0 +135 0 0 +207 0 0 +SURF 0x30 +mat 8 +refs 3 +207 0 0 +136 0 0 +16 0 0 +SURF 0x30 +mat 8 +refs 3 +208 0 0 +136 0 0 +137 0 0 +SURF 0x30 +mat 8 +refs 3 +16 0 0 +136 0 0 +208 0 0 +SURF 0x30 +mat 8 +refs 3 +208 0 0 +137 0 0 +17 0 0 +SURF 0x30 +mat 8 +refs 3 +209 0 0 +137 0 0 +138 0 0 +SURF 0x30 +mat 8 +refs 3 +17 0 0 +137 0 0 +209 0 0 +SURF 0x30 +mat 8 +refs 3 +209 0 0 +138 0 0 +18 0 0 +SURF 0x30 +mat 8 +refs 3 +210 0 0 +138 0 0 +139 0 0 +SURF 0x30 +mat 8 +refs 3 +18 0 0 +138 0 0 +210 0 0 +SURF 0x30 +mat 8 +refs 3 +210 0 0 +139 0 0 +19 0 0 +SURF 0x30 +mat 8 +refs 3 +211 0 0 +139 0 0 +140 0 0 +SURF 0x30 +mat 8 +refs 3 +19 0 0 +139 0 0 +211 0 0 +SURF 0x30 +mat 8 +refs 3 +211 0 0 +140 0 0 +20 0 0 +SURF 0x30 +mat 8 +refs 3 +212 0 0 +140 0 0 +141 0 0 +SURF 0x30 +mat 8 +refs 3 +20 0 0 +140 0 0 +212 0 0 +SURF 0x30 +mat 8 +refs 3 +212 0 0 +141 0 0 +21 0 0 +SURF 0x30 +mat 8 +refs 3 +213 0 0 +141 0 0 +142 0 0 +SURF 0x30 +mat 8 +refs 3 +21 0 0 +141 0 0 +213 0 0 +SURF 0x30 +mat 8 +refs 3 +213 0 0 +142 0 0 +22 0 0 +SURF 0x30 +mat 8 +refs 3 +214 0 0 +142 0 0 +143 0 0 +SURF 0x30 +mat 8 +refs 3 +22 0 0 +142 0 0 +214 0 0 +SURF 0x30 +mat 8 +refs 3 +214 0 0 +143 0 0 +23 0 0 +SURF 0x30 +mat 8 +refs 3 +215 0 0 +143 0 0 +120 0 0 +SURF 0x30 +mat 8 +refs 3 +23 0 0 +143 0 0 +215 0 0 +SURF 0x30 +mat 8 +refs 3 +120 0 0 +0 0 0 +215 0 0 +kids 0 +OBJECT poly +name "fwheel2.L" +data 10 +Circle.003 +crease 30.000000 +numvert 218 +0.553939 0.407726 0.538809 +0.688313 0.640469 0.538809 +0.623496 0.667317 0.538809 +0.553939 0.676475 0.538809 +0.484382 0.667317 0.538809 +0.419565 0.640469 0.538809 +0.363906 0.59776 0.538809 +0.321197 0.5421 0.538809 +0.294349 0.477284 0.538809 +0.285191 0.407726 0.538809 +0.294349 0.338169 0.538809 +0.321197 0.273353 0.538809 +0.363906 0.217693 0.538809 +0.419565 0.174984 0.538809 +0.484382 0.148136 0.538809 +0.553939 0.138979 0.538809 +0.623496 0.148136 0.538809 +0.688313 0.174984 0.538809 +0.743973 0.217693 0.538809 +0.786682 0.273353 0.538809 +0.81353 0.33817 0.538809 +0.822687 0.407727 0.538809 +0.81353 0.477284 0.538809 +0.743973 0.59776 0.538809 +0.786682 0.542101 0.538809 +0.553939 0.407726 0.746253 +0.564352 0.425763 0.741594 +0.559329 0.427843 0.741594 +0.553939 0.428553 0.741594 +0.548549 0.427843 0.741594 +0.543526 0.425763 0.741594 +0.539213 0.422453 0.741594 +0.535903 0.41814 0.741594 +0.533822 0.413117 0.741594 +0.533113 0.407726 0.741594 +0.533822 0.402336 0.741594 +0.535903 0.397313 0.741594 +0.539213 0.393 0.741594 +0.543526 0.38969 0.741594 +0.548549 0.38761 0.741594 +0.553939 0.3869 0.741594 +0.559329 0.38761 0.741594 +0.564352 0.38969 0.741594 +0.568666 0.393 0.741594 +0.571975 0.397313 0.741594 +0.574056 0.402336 0.741594 +0.574765 0.407726 0.741594 +0.574056 0.413117 0.741594 +0.571975 0.41814 0.741594 +0.568666 0.422453 0.741594 +0.572592 0.440034 0.720245 +0.563595 0.443761 0.720245 +0.553939 0.445032 0.720245 +0.544284 0.443761 0.720245 +0.535286 0.440034 0.720245 +0.52756 0.434106 0.720245 +0.521632 0.426379 0.720245 +0.517905 0.417382 0.720245 +0.516634 0.407726 0.720245 +0.517905 0.398071 0.720245 +0.521632 0.389074 0.720245 +0.52756 0.381347 0.720245 +0.535286 0.375419 0.720245 +0.544284 0.371692 0.720245 +0.553939 0.370421 0.720245 +0.563595 0.371692 0.720245 +0.572592 0.375419 0.720245 +0.580318 0.381347 0.720245 +0.586247 0.389074 0.720245 +0.589974 0.398071 0.720245 +0.591245 0.407726 0.720245 +0.589974 0.417382 0.720245 +0.586247 0.426379 0.720245 +0.580318 0.434106 0.720245 +0.572592 0.440034 0.682689 +0.563595 0.443761 0.682689 +0.553939 0.445032 0.682689 +0.544284 0.443761 0.682689 +0.535286 0.440034 0.682689 +0.52756 0.434106 0.682689 +0.521632 0.426379 0.682689 +0.517905 0.417382 0.682689 +0.516634 0.407726 0.682689 +0.517905 0.398071 0.682689 +0.521632 0.389074 0.682689 +0.52756 0.381347 0.682689 +0.535286 0.375419 0.682689 +0.544284 0.371692 0.682689 +0.553939 0.370421 0.682689 +0.563595 0.371692 0.682689 +0.572592 0.375419 0.682689 +0.580318 0.381347 0.682689 +0.586247 0.389074 0.682689 +0.589974 0.398071 0.682689 +0.591245 0.407726 0.682689 +0.589974 0.417382 0.682689 +0.580318 0.434106 0.682689 +0.586247 0.426379 0.682689 +0.61376 0.511339 0.682689 +0.584904 0.523291 0.682689 +0.553939 0.527368 0.682689 +0.522974 0.523291 0.682689 +0.494118 0.511339 0.682689 +0.46934 0.492326 0.682689 +0.450327 0.467547 0.682689 +0.438375 0.438692 0.682689 +0.434298 0.407726 0.682689 +0.438375 0.376761 0.682689 +0.450327 0.347906 0.682689 +0.46934 0.323127 0.682689 +0.494119 0.304114 0.682689 +0.522974 0.292162 0.682689 +0.553939 0.288085 0.682689 +0.584905 0.292162 0.682689 +0.61376 0.304114 0.682689 +0.638538 0.323127 0.682689 +0.657551 0.347906 0.682689 +0.669504 0.376761 0.682689 +0.67358 0.407727 0.682689 +0.669504 0.438692 0.682689 +0.638538 0.492326 0.682689 +0.657551 0.467547 0.682689 +0.64523 0.565848 0.665997 +0.601195 0.584088 0.665997 +0.553939 0.59031 0.665997 +0.506683 0.584088 0.665997 +0.462647 0.565848 0.665997 +0.424833 0.536832 0.665997 +0.395818 0.499018 0.665997 +0.377577 0.454982 0.665997 +0.371356 0.407726 0.665997 +0.377577 0.360471 0.665997 +0.395818 0.316435 0.665997 +0.424834 0.278621 0.665997 +0.462648 0.249605 0.665997 +0.506683 0.231365 0.665997 +0.553939 0.225143 0.665997 +0.601195 0.231365 0.665997 +0.645231 0.249605 0.665997 +0.683045 0.278621 0.665997 +0.712061 0.316435 0.665997 +0.730301 0.360471 0.665997 +0.736522 0.407727 0.665997 +0.730301 0.454983 0.665997 +0.712061 0.499018 0.665997 +0.683045 0.536832 0.665997 +0.676188 0.619468 0.665997 +0.61722 0.643894 0.665997 +0.553939 0.652225 0.665997 +0.490658 0.643894 0.665997 +0.43169 0.619468 0.665997 +0.381053 0.580613 0.665997 +0.342197 0.529976 0.665997 +0.317772 0.471007 0.665997 +0.309441 0.407726 0.665997 +0.317772 0.344446 0.665997 +0.342197 0.285477 0.665997 +0.381053 0.23484 0.665997 +0.43169 0.195985 0.665997 +0.490658 0.171559 0.665997 +0.553939 0.163228 0.665997 +0.61722 0.171559 0.665997 +0.676188 0.195985 0.665997 +0.726826 0.23484 0.665997 +0.765681 0.285477 0.665997 +0.790106 0.344446 0.665997 +0.798438 0.407727 0.665997 +0.790106 0.471007 0.665997 +0.726826 0.580613 0.665997 +0.765681 0.529976 0.665997 +0.676188 0.619468 0.720245 +0.61722 0.643894 0.720245 +0.553939 0.652225 0.720245 +0.490658 0.643894 0.720245 +0.43169 0.619468 0.720245 +0.381053 0.580613 0.720245 +0.342197 0.529976 0.720245 +0.317772 0.471007 0.720245 +0.309441 0.407726 0.720245 +0.317772 0.344446 0.720245 +0.342197 0.285477 0.720245 +0.381053 0.23484 0.720245 +0.43169 0.195985 0.720245 +0.490658 0.171559 0.720245 +0.553939 0.163228 0.720245 +0.61722 0.171559 0.720245 +0.676188 0.195985 0.720245 +0.726826 0.23484 0.720245 +0.765681 0.285477 0.720245 +0.790106 0.344446 0.720245 +0.798438 0.407727 0.720245 +0.790106 0.471007 0.720245 +0.726826 0.580613 0.720245 +0.765681 0.529976 0.720245 +0.687558 0.639162 0.720245 +0.623105 0.665859 0.720245 +0.553939 0.674965 0.720245 +0.484773 0.665859 0.720245 +0.42032 0.639162 0.720245 +0.364973 0.596692 0.720245 +0.322504 0.541346 0.720245 +0.295807 0.476893 0.720245 +0.286701 0.407726 0.720245 +0.295807 0.33856 0.720245 +0.322504 0.274107 0.720245 +0.364973 0.21876 0.720245 +0.42032 0.176291 0.720245 +0.484773 0.149594 0.720245 +0.553939 0.140488 0.720245 +0.623106 0.149594 0.720245 +0.687558 0.176291 0.720245 +0.742905 0.218761 0.720245 +0.785374 0.274107 0.720245 +0.812072 0.33856 0.720245 +0.821177 0.407727 0.720245 +0.812072 0.476893 0.720245 +0.742905 0.596693 0.720245 +0.785374 0.541346 0.720245 +numsurf 216 +SURF 0x30 +mat 9 +refs 3 +23 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 9 +refs 3 +1 0 0 +0 0 0 +2 0 0 +SURF 0x30 +mat 9 +refs 3 +2 0 0 +0 0 0 +3 0 0 +SURF 0x30 +mat 9 +refs 3 +3 0 0 +0 0 0 +4 0 0 +SURF 0x30 +mat 9 +refs 3 +4 0 0 +0 0 0 +5 0 0 +SURF 0x30 +mat 9 +refs 3 +5 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 9 +refs 3 +6 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 9 +refs 3 +7 0 0 +0 0 0 +8 0 0 +SURF 0x30 +mat 9 +refs 3 +8 0 0 +0 0 0 +9 0 0 +SURF 0x30 +mat 9 +refs 3 +9 0 0 +0 0 0 +10 0 0 +SURF 0x30 +mat 9 +refs 3 +10 0 0 +0 0 0 +11 0 0 +SURF 0x30 +mat 9 +refs 3 +11 0 0 +0 0 0 +12 0 0 +SURF 0x30 +mat 9 +refs 3 +12 0 0 +0 0 0 +13 0 0 +SURF 0x30 +mat 9 +refs 3 +13 0 0 +0 0 0 +14 0 0 +SURF 0x30 +mat 9 +refs 3 +14 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 9 +refs 3 +15 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 9 +refs 3 +16 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 9 +refs 3 +17 0 0 +0 0 0 +18 0 0 +SURF 0x30 +mat 9 +refs 3 +18 0 0 +0 0 0 +19 0 0 +SURF 0x30 +mat 9 +refs 3 +19 0 0 +0 0 0 +20 0 0 +SURF 0x30 +mat 9 +refs 3 +20 0 0 +0 0 0 +21 0 0 +SURF 0x30 +mat 9 +refs 3 +21 0 0 +0 0 0 +22 0 0 +SURF 0x30 +mat 9 +refs 3 +22 0 0 +0 0 0 +24 0 0 +SURF 0x30 +mat 9 +refs 3 +24 0 0 +0 0 0 +23 0 0 +SURF 0x30 +mat 9 +refs 3 +26 0 0 +25 0 0 +49 0 0 +SURF 0x30 +mat 9 +refs 3 +26 0 0 +27 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +27 0 0 +28 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +28 0 0 +29 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +29 0 0 +30 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +30 0 0 +31 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +31 0 0 +32 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +32 0 0 +33 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +33 0 0 +34 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +34 0 0 +35 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +35 0 0 +36 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +36 0 0 +37 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +38 0 0 +25 0 0 +37 0 0 +SURF 0x30 +mat 9 +refs 3 +38 0 0 +39 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +39 0 0 +40 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +40 0 0 +41 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +42 0 0 +25 0 0 +41 0 0 +SURF 0x30 +mat 9 +refs 3 +42 0 0 +43 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +43 0 0 +44 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +44 0 0 +45 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +46 0 0 +25 0 0 +45 0 0 +SURF 0x30 +mat 9 +refs 3 +46 0 0 +47 0 0 +25 0 0 +SURF 0x30 +mat 9 +refs 3 +48 0 0 +25 0 0 +47 0 0 +SURF 0x30 +mat 9 +refs 3 +49 0 0 +25 0 0 +48 0 0 +SURF 0x30 +mat 9 +refs 4 +50 0 0 +26 0 0 +49 0 0 +73 0 0 +SURF 0x30 +mat 9 +refs 4 +50 0 0 +51 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 9 +refs 4 +51 0 0 +52 0 0 +28 0 0 +27 0 0 +SURF 0x30 +mat 9 +refs 4 +52 0 0 +53 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 9 +refs 4 +53 0 0 +54 0 0 +30 0 0 +29 0 0 +SURF 0x30 +mat 9 +refs 4 +54 0 0 +55 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 9 +refs 4 +55 0 0 +56 0 0 +32 0 0 +31 0 0 +SURF 0x30 +mat 9 +refs 4 +56 0 0 +57 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 9 +refs 4 +57 0 0 +58 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 9 +refs 4 +58 0 0 +59 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 9 +refs 4 +59 0 0 +60 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 9 +refs 4 +60 0 0 +61 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 9 +refs 4 +62 0 0 +38 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 9 +refs 4 +62 0 0 +63 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 9 +refs 4 +63 0 0 +64 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 9 +refs 4 +64 0 0 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 9 +refs 4 +66 0 0 +42 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 9 +refs 4 +66 0 0 +67 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 9 +refs 4 +67 0 0 +68 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 9 +refs 4 +68 0 0 +69 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 9 +refs 4 +70 0 0 +46 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 9 +refs 4 +70 0 0 +71 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 9 +refs 4 +72 0 0 +48 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 9 +refs 4 +73 0 0 +49 0 0 +48 0 0 +72 0 0 +SURF 0x30 +mat 9 +refs 4 +74 0 0 +50 0 0 +73 0 0 +96 0 0 +SURF 0x30 +mat 9 +refs 4 +74 0 0 +75 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 9 +refs 4 +75 0 0 +76 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 9 +refs 4 +76 0 0 +77 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 9 +refs 4 +77 0 0 +78 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 9 +refs 4 +78 0 0 +79 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 9 +refs 4 +79 0 0 +80 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 9 +refs 4 +80 0 0 +81 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 9 +refs 4 +81 0 0 +82 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 9 +refs 4 +82 0 0 +83 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 9 +refs 4 +83 0 0 +84 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 9 +refs 4 +84 0 0 +85 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 9 +refs 4 +86 0 0 +62 0 0 +61 0 0 +85 0 0 +SURF 0x30 +mat 9 +refs 4 +86 0 0 +87 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 9 +refs 4 +87 0 0 +88 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 9 +refs 4 +88 0 0 +89 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 9 +refs 4 +90 0 0 +66 0 0 +65 0 0 +89 0 0 +SURF 0x30 +mat 9 +refs 4 +90 0 0 +91 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 9 +refs 4 +91 0 0 +92 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 9 +refs 4 +92 0 0 +93 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 9 +refs 4 +94 0 0 +70 0 0 +69 0 0 +93 0 0 +SURF 0x30 +mat 9 +refs 4 +94 0 0 +95 0 0 +71 0 0 +70 0 0 +SURF 0x30 +mat 9 +refs 4 +97 0 0 +72 0 0 +71 0 0 +95 0 0 +SURF 0x30 +mat 9 +refs 4 +96 0 0 +73 0 0 +72 0 0 +97 0 0 +SURF 0x30 +mat 9 +refs 4 +98 0 0 +74 0 0 +96 0 0 +120 0 0 +SURF 0x30 +mat 9 +refs 4 +98 0 0 +99 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 9 +refs 4 +99 0 0 +100 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 9 +refs 4 +100 0 0 +101 0 0 +77 0 0 +76 0 0 +SURF 0x30 +mat 9 +refs 4 +101 0 0 +102 0 0 +78 0 0 +77 0 0 +SURF 0x30 +mat 9 +refs 4 +102 0 0 +103 0 0 +79 0 0 +78 0 0 +SURF 0x30 +mat 9 +refs 4 +103 0 0 +104 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 9 +refs 4 +104 0 0 +105 0 0 +81 0 0 +80 0 0 +SURF 0x30 +mat 9 +refs 4 +105 0 0 +106 0 0 +82 0 0 +81 0 0 +SURF 0x30 +mat 9 +refs 4 +106 0 0 +107 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 9 +refs 4 +107 0 0 +108 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 9 +refs 4 +108 0 0 +109 0 0 +85 0 0 +84 0 0 +SURF 0x30 +mat 9 +refs 4 +110 0 0 +86 0 0 +85 0 0 +109 0 0 +SURF 0x30 +mat 9 +refs 4 +110 0 0 +111 0 0 +87 0 0 +86 0 0 +SURF 0x30 +mat 9 +refs 4 +111 0 0 +112 0 0 +88 0 0 +87 0 0 +SURF 0x30 +mat 9 +refs 4 +112 0 0 +113 0 0 +89 0 0 +88 0 0 +SURF 0x30 +mat 9 +refs 4 +114 0 0 +90 0 0 +89 0 0 +113 0 0 +SURF 0x30 +mat 9 +refs 4 +114 0 0 +115 0 0 +91 0 0 +90 0 0 +SURF 0x30 +mat 9 +refs 4 +115 0 0 +116 0 0 +92 0 0 +91 0 0 +SURF 0x30 +mat 9 +refs 4 +116 0 0 +117 0 0 +93 0 0 +92 0 0 +SURF 0x30 +mat 9 +refs 4 +118 0 0 +94 0 0 +93 0 0 +117 0 0 +SURF 0x30 +mat 9 +refs 4 +118 0 0 +119 0 0 +95 0 0 +94 0 0 +SURF 0x30 +mat 9 +refs 4 +121 0 0 +97 0 0 +95 0 0 +119 0 0 +SURF 0x30 +mat 9 +refs 4 +120 0 0 +96 0 0 +97 0 0 +121 0 0 +SURF 0x30 +mat 9 +refs 4 +122 0 0 +98 0 0 +120 0 0 +145 0 0 +SURF 0x30 +mat 9 +refs 4 +122 0 0 +123 0 0 +99 0 0 +98 0 0 +SURF 0x30 +mat 9 +refs 4 +123 0 0 +124 0 0 +100 0 0 +99 0 0 +SURF 0x30 +mat 9 +refs 4 +124 0 0 +125 0 0 +101 0 0 +100 0 0 +SURF 0x30 +mat 9 +refs 4 +125 0 0 +126 0 0 +102 0 0 +101 0 0 +SURF 0x30 +mat 9 +refs 4 +126 0 0 +127 0 0 +103 0 0 +102 0 0 +SURF 0x30 +mat 9 +refs 4 +127 0 0 +128 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 9 +refs 4 +128 0 0 +129 0 0 +105 0 0 +104 0 0 +SURF 0x30 +mat 9 +refs 4 +129 0 0 +130 0 0 +106 0 0 +105 0 0 +SURF 0x30 +mat 9 +refs 4 +130 0 0 +131 0 0 +107 0 0 +106 0 0 +SURF 0x30 +mat 9 +refs 4 +131 0 0 +132 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 9 +refs 4 +132 0 0 +133 0 0 +109 0 0 +108 0 0 +SURF 0x30 +mat 9 +refs 4 +134 0 0 +110 0 0 +109 0 0 +133 0 0 +SURF 0x30 +mat 9 +refs 4 +134 0 0 +135 0 0 +111 0 0 +110 0 0 +SURF 0x30 +mat 9 +refs 4 +135 0 0 +136 0 0 +112 0 0 +111 0 0 +SURF 0x30 +mat 9 +refs 4 +136 0 0 +137 0 0 +113 0 0 +112 0 0 +SURF 0x30 +mat 9 +refs 4 +138 0 0 +114 0 0 +113 0 0 +137 0 0 +SURF 0x30 +mat 9 +refs 4 +138 0 0 +139 0 0 +115 0 0 +114 0 0 +SURF 0x30 +mat 9 +refs 4 +139 0 0 +140 0 0 +116 0 0 +115 0 0 +SURF 0x30 +mat 9 +refs 4 +140 0 0 +141 0 0 +117 0 0 +116 0 0 +SURF 0x30 +mat 9 +refs 4 +142 0 0 +118 0 0 +117 0 0 +141 0 0 +SURF 0x30 +mat 9 +refs 4 +142 0 0 +143 0 0 +119 0 0 +118 0 0 +SURF 0x30 +mat 9 +refs 4 +144 0 0 +121 0 0 +119 0 0 +143 0 0 +SURF 0x30 +mat 9 +refs 4 +145 0 0 +120 0 0 +121 0 0 +144 0 0 +SURF 0x30 +mat 9 +refs 4 +146 0 0 +122 0 0 +145 0 0 +168 0 0 +SURF 0x30 +mat 9 +refs 4 +146 0 0 +147 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 9 +refs 4 +147 0 0 +148 0 0 +124 0 0 +123 0 0 +SURF 0x30 +mat 9 +refs 4 +148 0 0 +149 0 0 +125 0 0 +124 0 0 +SURF 0x30 +mat 9 +refs 4 +149 0 0 +150 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 9 +refs 4 +150 0 0 +151 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 9 +refs 4 +151 0 0 +152 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 9 +refs 4 +152 0 0 +153 0 0 +129 0 0 +128 0 0 +SURF 0x30 +mat 9 +refs 4 +153 0 0 +154 0 0 +130 0 0 +129 0 0 +SURF 0x30 +mat 9 +refs 4 +154 0 0 +155 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 9 +refs 4 +155 0 0 +156 0 0 +132 0 0 +131 0 0 +SURF 0x30 +mat 9 +refs 4 +156 0 0 +157 0 0 +133 0 0 +132 0 0 +SURF 0x30 +mat 9 +refs 4 +158 0 0 +134 0 0 +133 0 0 +157 0 0 +SURF 0x30 +mat 9 +refs 4 +158 0 0 +159 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 9 +refs 4 +159 0 0 +160 0 0 +136 0 0 +135 0 0 +SURF 0x30 +mat 9 +refs 4 +160 0 0 +161 0 0 +137 0 0 +136 0 0 +SURF 0x30 +mat 9 +refs 4 +162 0 0 +138 0 0 +137 0 0 +161 0 0 +SURF 0x30 +mat 9 +refs 4 +162 0 0 +163 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 9 +refs 4 +163 0 0 +164 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 9 +refs 4 +164 0 0 +165 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 9 +refs 4 +166 0 0 +142 0 0 +141 0 0 +165 0 0 +SURF 0x30 +mat 9 +refs 4 +166 0 0 +167 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 9 +refs 4 +169 0 0 +144 0 0 +143 0 0 +167 0 0 +SURF 0x30 +mat 9 +refs 4 +168 0 0 +145 0 0 +144 0 0 +169 0 0 +SURF 0x30 +mat 9 +refs 4 +170 0 0 +146 0 0 +168 0 0 +192 0 0 +SURF 0x30 +mat 9 +refs 4 +170 0 0 +171 0 0 +147 0 0 +146 0 0 +SURF 0x30 +mat 9 +refs 4 +171 0 0 +172 0 0 +148 0 0 +147 0 0 +SURF 0x30 +mat 9 +refs 4 +172 0 0 +173 0 0 +149 0 0 +148 0 0 +SURF 0x30 +mat 9 +refs 4 +173 0 0 +174 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 9 +refs 4 +174 0 0 +175 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 9 +refs 4 +175 0 0 +176 0 0 +152 0 0 +151 0 0 +SURF 0x30 +mat 9 +refs 4 +176 0 0 +177 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 9 +refs 4 +177 0 0 +178 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 9 +refs 4 +178 0 0 +179 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 9 +refs 4 +179 0 0 +180 0 0 +156 0 0 +155 0 0 +SURF 0x30 +mat 9 +refs 4 +180 0 0 +181 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 9 +refs 4 +182 0 0 +158 0 0 +157 0 0 +181 0 0 +SURF 0x30 +mat 9 +refs 4 +182 0 0 +183 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 9 +refs 4 +183 0 0 +184 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 9 +refs 4 +184 0 0 +185 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 9 +refs 4 +186 0 0 +162 0 0 +161 0 0 +185 0 0 +SURF 0x30 +mat 9 +refs 4 +186 0 0 +187 0 0 +163 0 0 +162 0 0 +SURF 0x30 +mat 9 +refs 4 +187 0 0 +188 0 0 +164 0 0 +163 0 0 +SURF 0x30 +mat 9 +refs 4 +188 0 0 +189 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 9 +refs 4 +190 0 0 +166 0 0 +165 0 0 +189 0 0 +SURF 0x30 +mat 9 +refs 4 +190 0 0 +191 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 9 +refs 4 +193 0 0 +169 0 0 +167 0 0 +191 0 0 +SURF 0x30 +mat 9 +refs 4 +192 0 0 +168 0 0 +169 0 0 +193 0 0 +SURF 0x30 +mat 9 +refs 4 +194 0 0 +170 0 0 +192 0 0 +216 0 0 +SURF 0x30 +mat 9 +refs 4 +194 0 0 +195 0 0 +171 0 0 +170 0 0 +SURF 0x30 +mat 9 +refs 4 +195 0 0 +196 0 0 +172 0 0 +171 0 0 +SURF 0x30 +mat 9 +refs 4 +196 0 0 +197 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 9 +refs 4 +197 0 0 +198 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 9 +refs 4 +198 0 0 +199 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 9 +refs 4 +199 0 0 +200 0 0 +176 0 0 +175 0 0 +SURF 0x30 +mat 9 +refs 4 +200 0 0 +201 0 0 +177 0 0 +176 0 0 +SURF 0x30 +mat 9 +refs 4 +201 0 0 +202 0 0 +178 0 0 +177 0 0 +SURF 0x30 +mat 9 +refs 4 +202 0 0 +203 0 0 +179 0 0 +178 0 0 +SURF 0x30 +mat 9 +refs 4 +203 0 0 +204 0 0 +180 0 0 +179 0 0 +SURF 0x30 +mat 9 +refs 4 +204 0 0 +205 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 9 +refs 4 +206 0 0 +182 0 0 +181 0 0 +205 0 0 +SURF 0x30 +mat 9 +refs 4 +206 0 0 +207 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 9 +refs 4 +207 0 0 +208 0 0 +184 0 0 +183 0 0 +SURF 0x30 +mat 9 +refs 4 +208 0 0 +209 0 0 +185 0 0 +184 0 0 +SURF 0x30 +mat 9 +refs 4 +210 0 0 +186 0 0 +185 0 0 +209 0 0 +SURF 0x30 +mat 9 +refs 4 +210 0 0 +211 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 9 +refs 4 +211 0 0 +212 0 0 +188 0 0 +187 0 0 +SURF 0x30 +mat 9 +refs 4 +212 0 0 +213 0 0 +189 0 0 +188 0 0 +SURF 0x30 +mat 9 +refs 4 +214 0 0 +190 0 0 +189 0 0 +213 0 0 +SURF 0x30 +mat 9 +refs 4 +214 0 0 +215 0 0 +191 0 0 +190 0 0 +SURF 0x30 +mat 9 +refs 4 +217 0 0 +193 0 0 +191 0 0 +215 0 0 +SURF 0x30 +mat 9 +refs 4 +216 0 0 +192 0 0 +193 0 0 +217 0 0 +kids 0 +OBJECT poly +name "fwheel2.R" +data 10 +Circle.004 +crease 30.000000 +numvert 218 +0.55394 0.407726 -0.538809 +0.688314 0.640469 -0.538809 +0.623497 0.667317 -0.538809 +0.55394 0.676475 -0.538809 +0.484383 0.667317 -0.538809 +0.419566 0.640469 -0.538809 +0.363906 0.59776 -0.538809 +0.321197 0.5421 -0.538809 +0.294349 0.477284 -0.538809 +0.285192 0.407726 -0.538809 +0.294349 0.338169 -0.538809 +0.321197 0.273353 -0.538809 +0.363906 0.217693 -0.538809 +0.419566 0.174984 -0.538809 +0.484383 0.148136 -0.538809 +0.55394 0.138979 -0.538809 +0.623497 0.148136 -0.538809 +0.688314 0.174984 -0.538809 +0.743973 0.217693 -0.538809 +0.786682 0.273353 -0.538809 +0.81353 0.33817 -0.538809 +0.822688 0.407727 -0.538809 +0.81353 0.477284 -0.538809 +0.743973 0.59776 -0.538809 +0.786682 0.5421 -0.538809 +0.55394 0.407726 -0.746253 +0.564353 0.425763 -0.741594 +0.55933 0.427843 -0.741594 +0.55394 0.428553 -0.741594 +0.54855 0.427843 -0.741594 +0.543527 0.425763 -0.741594 +0.539213 0.422453 -0.741594 +0.535904 0.41814 -0.741594 +0.533823 0.413117 -0.741594 +0.533114 0.407726 -0.741594 +0.533823 0.402336 -0.741594 +0.535904 0.397313 -0.741594 +0.539213 0.393 -0.741594 +0.543527 0.38969 -0.741594 +0.54855 0.38761 -0.741594 +0.55394 0.3869 -0.741594 +0.55933 0.38761 -0.741594 +0.564353 0.38969 -0.741594 +0.568666 0.393 -0.741594 +0.571976 0.397313 -0.741594 +0.574056 0.402336 -0.741594 +0.574766 0.407726 -0.741594 +0.574056 0.413117 -0.741594 +0.571976 0.41814 -0.741594 +0.568666 0.422453 -0.741594 +0.572593 0.440034 -0.720245 +0.563595 0.443761 -0.720245 +0.55394 0.445032 -0.720245 +0.544284 0.443761 -0.720245 +0.535287 0.440034 -0.720245 +0.527561 0.434106 -0.720245 +0.521632 0.426379 -0.720245 +0.517905 0.417382 -0.720245 +0.516634 0.407726 -0.720245 +0.517905 0.398071 -0.720245 +0.521632 0.389074 -0.720245 +0.527561 0.381347 -0.720245 +0.535287 0.375419 -0.720245 +0.544284 0.371692 -0.720245 +0.55394 0.370421 -0.720245 +0.563595 0.371692 -0.720245 +0.572593 0.375419 -0.720245 +0.580319 0.381347 -0.720245 +0.586247 0.389074 -0.720245 +0.589974 0.398071 -0.720245 +0.591245 0.407726 -0.720245 +0.589974 0.417382 -0.720245 +0.586247 0.426379 -0.720245 +0.580319 0.434106 -0.720245 +0.572593 0.440034 -0.682689 +0.563595 0.443761 -0.682689 +0.55394 0.445032 -0.682689 +0.544284 0.443761 -0.682689 +0.535287 0.440034 -0.682689 +0.527561 0.434106 -0.682689 +0.521632 0.426379 -0.682689 +0.517905 0.417382 -0.682689 +0.516634 0.407726 -0.682689 +0.517905 0.398071 -0.682689 +0.521632 0.389074 -0.682689 +0.527561 0.381347 -0.682689 +0.535287 0.375419 -0.682689 +0.544284 0.371692 -0.682689 +0.55394 0.370421 -0.682689 +0.563595 0.371692 -0.682689 +0.572593 0.375419 -0.682689 +0.580319 0.381347 -0.682689 +0.586247 0.389074 -0.682689 +0.589974 0.398071 -0.682689 +0.591245 0.407726 -0.682689 +0.589974 0.417382 -0.682689 +0.580319 0.434106 -0.682689 +0.586247 0.426379 -0.682689 +0.61376 0.511339 -0.682689 +0.584905 0.523291 -0.682689 +0.55394 0.527368 -0.682689 +0.522974 0.523291 -0.682689 +0.494119 0.511339 -0.682689 +0.469341 0.492326 -0.682689 +0.450327 0.467547 -0.682689 +0.438375 0.438692 -0.682689 +0.434299 0.407726 -0.682689 +0.438375 0.376761 -0.682689 +0.450327 0.347906 -0.682689 +0.469341 0.323127 -0.682689 +0.494119 0.304114 -0.682689 +0.522974 0.292162 -0.682689 +0.55394 0.288085 -0.682689 +0.584905 0.292162 -0.682689 +0.61376 0.304114 -0.682689 +0.638539 0.323127 -0.682689 +0.657552 0.347906 -0.682689 +0.669504 0.376761 -0.682689 +0.673581 0.407727 -0.682689 +0.669504 0.438692 -0.682689 +0.638539 0.492326 -0.682689 +0.657552 0.467547 -0.682689 +0.645231 0.565848 -0.665997 +0.601196 0.584088 -0.665997 +0.55394 0.59031 -0.665997 +0.506684 0.584088 -0.665997 +0.462648 0.565848 -0.665997 +0.424834 0.536832 -0.665997 +0.395818 0.499018 -0.665997 +0.377578 0.454982 -0.665997 +0.371357 0.407726 -0.665997 +0.377578 0.360471 -0.665997 +0.395818 0.316435 -0.665997 +0.424834 0.278621 -0.665997 +0.462648 0.249605 -0.665997 +0.506684 0.231365 -0.665997 +0.55394 0.225144 -0.665997 +0.601196 0.231365 -0.665997 +0.645231 0.249605 -0.665997 +0.683046 0.278621 -0.665997 +0.712061 0.316435 -0.665997 +0.730301 0.360471 -0.665997 +0.736523 0.407727 -0.665997 +0.730301 0.454983 -0.665997 +0.712061 0.499018 -0.665997 +0.683045 0.536832 -0.665997 +0.676189 0.619468 -0.665997 +0.61722 0.643894 -0.665997 +0.55394 0.652225 -0.665997 +0.490659 0.643894 -0.665997 +0.43169 0.619468 -0.665997 +0.381053 0.580613 -0.665997 +0.342198 0.529976 -0.665997 +0.317773 0.471007 -0.665997 +0.309441 0.407726 -0.665997 +0.317773 0.344446 -0.665997 +0.342198 0.285477 -0.665997 +0.381053 0.23484 -0.665997 +0.431691 0.195985 -0.665997 +0.490659 0.171559 -0.665997 +0.55394 0.163228 -0.665997 +0.617221 0.171559 -0.665997 +0.676189 0.195985 -0.665997 +0.726826 0.23484 -0.665997 +0.765682 0.285477 -0.665997 +0.790107 0.344446 -0.665997 +0.798438 0.407727 -0.665997 +0.790107 0.471007 -0.665997 +0.726826 0.580613 -0.665997 +0.765682 0.529976 -0.665997 +0.676189 0.619468 -0.720245 +0.61722 0.643894 -0.720245 +0.55394 0.652225 -0.720245 +0.490659 0.643894 -0.720245 +0.43169 0.619468 -0.720245 +0.381053 0.580613 -0.720245 +0.342198 0.529976 -0.720245 +0.317773 0.471007 -0.720245 +0.309441 0.407726 -0.720245 +0.317773 0.344446 -0.720245 +0.342198 0.285477 -0.720245 +0.381053 0.23484 -0.720245 +0.431691 0.195985 -0.720245 +0.490659 0.171559 -0.720245 +0.55394 0.163228 -0.720245 +0.617221 0.171559 -0.720245 +0.676189 0.195985 -0.720245 +0.726826 0.23484 -0.720245 +0.765682 0.285477 -0.720245 +0.790107 0.344446 -0.720245 +0.798438 0.407727 -0.720245 +0.790107 0.471007 -0.720245 +0.726826 0.580613 -0.720245 +0.765682 0.529976 -0.720245 +0.687559 0.639162 -0.720245 +0.623106 0.665859 -0.720245 +0.55394 0.674965 -0.720245 +0.484773 0.665859 -0.720245 +0.42032 0.639162 -0.720245 +0.364974 0.596693 -0.720245 +0.322505 0.541346 -0.720245 +0.295807 0.476893 -0.720245 +0.286701 0.407726 -0.720245 +0.295807 0.33856 -0.720245 +0.322505 0.274107 -0.720245 +0.364974 0.21876 -0.720245 +0.420321 0.176291 -0.720245 +0.484774 0.149594 -0.720245 +0.55394 0.140488 -0.720245 +0.623106 0.149594 -0.720245 +0.687559 0.176291 -0.720245 +0.742906 0.218761 -0.720245 +0.785375 0.274107 -0.720245 +0.812072 0.33856 -0.720245 +0.821178 0.407727 -0.720245 +0.812072 0.476893 -0.720245 +0.742906 0.596693 -0.720245 +0.785375 0.541346 -0.720245 +numsurf 216 +SURF 0x30 +mat 10 +refs 3 +1 0 0 +0 0 0 +23 0 0 +SURF 0x30 +mat 10 +refs 3 +2 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 10 +refs 3 +3 0 0 +0 0 0 +2 0 0 +SURF 0x30 +mat 10 +refs 3 +4 0 0 +0 0 0 +3 0 0 +SURF 0x30 +mat 10 +refs 3 +5 0 0 +0 0 0 +4 0 0 +SURF 0x30 +mat 10 +refs 3 +6 0 0 +0 0 0 +5 0 0 +SURF 0x30 +mat 10 +refs 3 +7 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 10 +refs 3 +8 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 10 +refs 3 +9 0 0 +0 0 0 +8 0 0 +SURF 0x30 +mat 10 +refs 3 +10 0 0 +0 0 0 +9 0 0 +SURF 0x30 +mat 10 +refs 3 +11 0 0 +0 0 0 +10 0 0 +SURF 0x30 +mat 10 +refs 3 +12 0 0 +0 0 0 +11 0 0 +SURF 0x30 +mat 10 +refs 3 +13 0 0 +0 0 0 +12 0 0 +SURF 0x30 +mat 10 +refs 3 +14 0 0 +0 0 0 +13 0 0 +SURF 0x30 +mat 10 +refs 3 +15 0 0 +0 0 0 +14 0 0 +SURF 0x30 +mat 10 +refs 3 +16 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 10 +refs 3 +17 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 10 +refs 3 +18 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 10 +refs 3 +19 0 0 +0 0 0 +18 0 0 +SURF 0x30 +mat 10 +refs 3 +20 0 0 +0 0 0 +19 0 0 +SURF 0x30 +mat 10 +refs 3 +21 0 0 +0 0 0 +20 0 0 +SURF 0x30 +mat 10 +refs 3 +22 0 0 +0 0 0 +21 0 0 +SURF 0x30 +mat 10 +refs 3 +24 0 0 +0 0 0 +22 0 0 +SURF 0x30 +mat 10 +refs 3 +23 0 0 +0 0 0 +24 0 0 +SURF 0x30 +mat 10 +refs 3 +26 0 0 +49 0 0 +25 0 0 +SURF 0x30 +mat 10 +refs 3 +26 0 0 +25 0 0 +27 0 0 +SURF 0x30 +mat 10 +refs 3 +27 0 0 +25 0 0 +28 0 0 +SURF 0x30 +mat 10 +refs 3 +28 0 0 +25 0 0 +29 0 0 +SURF 0x30 +mat 10 +refs 3 +29 0 0 +25 0 0 +30 0 0 +SURF 0x30 +mat 10 +refs 3 +30 0 0 +25 0 0 +31 0 0 +SURF 0x30 +mat 10 +refs 3 +31 0 0 +25 0 0 +32 0 0 +SURF 0x30 +mat 10 +refs 3 +32 0 0 +25 0 0 +33 0 0 +SURF 0x30 +mat 10 +refs 3 +33 0 0 +25 0 0 +34 0 0 +SURF 0x30 +mat 10 +refs 3 +34 0 0 +25 0 0 +35 0 0 +SURF 0x30 +mat 10 +refs 3 +35 0 0 +25 0 0 +36 0 0 +SURF 0x30 +mat 10 +refs 3 +36 0 0 +25 0 0 +37 0 0 +SURF 0x30 +mat 10 +refs 3 +38 0 0 +37 0 0 +25 0 0 +SURF 0x30 +mat 10 +refs 3 +38 0 0 +25 0 0 +39 0 0 +SURF 0x30 +mat 10 +refs 3 +39 0 0 +25 0 0 +40 0 0 +SURF 0x30 +mat 10 +refs 3 +40 0 0 +25 0 0 +41 0 0 +SURF 0x30 +mat 10 +refs 3 +42 0 0 +41 0 0 +25 0 0 +SURF 0x30 +mat 10 +refs 3 +42 0 0 +25 0 0 +43 0 0 +SURF 0x30 +mat 10 +refs 3 +43 0 0 +25 0 0 +44 0 0 +SURF 0x30 +mat 10 +refs 3 +44 0 0 +25 0 0 +45 0 0 +SURF 0x30 +mat 10 +refs 3 +46 0 0 +45 0 0 +25 0 0 +SURF 0x30 +mat 10 +refs 3 +46 0 0 +25 0 0 +47 0 0 +SURF 0x30 +mat 10 +refs 3 +48 0 0 +47 0 0 +25 0 0 +SURF 0x30 +mat 10 +refs 3 +49 0 0 +48 0 0 +25 0 0 +SURF 0x30 +mat 10 +refs 4 +50 0 0 +73 0 0 +49 0 0 +26 0 0 +SURF 0x30 +mat 10 +refs 4 +50 0 0 +26 0 0 +27 0 0 +51 0 0 +SURF 0x30 +mat 10 +refs 4 +51 0 0 +27 0 0 +28 0 0 +52 0 0 +SURF 0x30 +mat 10 +refs 4 +52 0 0 +28 0 0 +29 0 0 +53 0 0 +SURF 0x30 +mat 10 +refs 4 +53 0 0 +29 0 0 +30 0 0 +54 0 0 +SURF 0x30 +mat 10 +refs 4 +54 0 0 +30 0 0 +31 0 0 +55 0 0 +SURF 0x30 +mat 10 +refs 4 +55 0 0 +31 0 0 +32 0 0 +56 0 0 +SURF 0x30 +mat 10 +refs 4 +56 0 0 +32 0 0 +33 0 0 +57 0 0 +SURF 0x30 +mat 10 +refs 4 +57 0 0 +33 0 0 +34 0 0 +58 0 0 +SURF 0x30 +mat 10 +refs 4 +58 0 0 +34 0 0 +35 0 0 +59 0 0 +SURF 0x30 +mat 10 +refs 4 +59 0 0 +35 0 0 +36 0 0 +60 0 0 +SURF 0x30 +mat 10 +refs 4 +60 0 0 +36 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 10 +refs 4 +62 0 0 +61 0 0 +37 0 0 +38 0 0 +SURF 0x30 +mat 10 +refs 4 +62 0 0 +38 0 0 +39 0 0 +63 0 0 +SURF 0x30 +mat 10 +refs 4 +63 0 0 +39 0 0 +40 0 0 +64 0 0 +SURF 0x30 +mat 10 +refs 4 +64 0 0 +40 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 10 +refs 4 +66 0 0 +65 0 0 +41 0 0 +42 0 0 +SURF 0x30 +mat 10 +refs 4 +66 0 0 +42 0 0 +43 0 0 +67 0 0 +SURF 0x30 +mat 10 +refs 4 +67 0 0 +43 0 0 +44 0 0 +68 0 0 +SURF 0x30 +mat 10 +refs 4 +68 0 0 +44 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 10 +refs 4 +70 0 0 +69 0 0 +45 0 0 +46 0 0 +SURF 0x30 +mat 10 +refs 4 +70 0 0 +46 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 10 +refs 4 +72 0 0 +71 0 0 +47 0 0 +48 0 0 +SURF 0x30 +mat 10 +refs 4 +73 0 0 +72 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 10 +refs 4 +74 0 0 +96 0 0 +73 0 0 +50 0 0 +SURF 0x30 +mat 10 +refs 4 +74 0 0 +50 0 0 +51 0 0 +75 0 0 +SURF 0x30 +mat 10 +refs 4 +75 0 0 +51 0 0 +52 0 0 +76 0 0 +SURF 0x30 +mat 10 +refs 4 +76 0 0 +52 0 0 +53 0 0 +77 0 0 +SURF 0x30 +mat 10 +refs 4 +77 0 0 +53 0 0 +54 0 0 +78 0 0 +SURF 0x30 +mat 10 +refs 4 +78 0 0 +54 0 0 +55 0 0 +79 0 0 +SURF 0x30 +mat 10 +refs 4 +79 0 0 +55 0 0 +56 0 0 +80 0 0 +SURF 0x30 +mat 10 +refs 4 +80 0 0 +56 0 0 +57 0 0 +81 0 0 +SURF 0x30 +mat 10 +refs 4 +81 0 0 +57 0 0 +58 0 0 +82 0 0 +SURF 0x30 +mat 10 +refs 4 +82 0 0 +58 0 0 +59 0 0 +83 0 0 +SURF 0x30 +mat 10 +refs 4 +83 0 0 +59 0 0 +60 0 0 +84 0 0 +SURF 0x30 +mat 10 +refs 4 +84 0 0 +60 0 0 +61 0 0 +85 0 0 +SURF 0x30 +mat 10 +refs 4 +86 0 0 +85 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 10 +refs 4 +86 0 0 +62 0 0 +63 0 0 +87 0 0 +SURF 0x30 +mat 10 +refs 4 +87 0 0 +63 0 0 +64 0 0 +88 0 0 +SURF 0x30 +mat 10 +refs 4 +88 0 0 +64 0 0 +65 0 0 +89 0 0 +SURF 0x30 +mat 10 +refs 4 +90 0 0 +89 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 10 +refs 4 +90 0 0 +66 0 0 +67 0 0 +91 0 0 +SURF 0x30 +mat 10 +refs 4 +91 0 0 +67 0 0 +68 0 0 +92 0 0 +SURF 0x30 +mat 10 +refs 4 +92 0 0 +68 0 0 +69 0 0 +93 0 0 +SURF 0x30 +mat 10 +refs 4 +94 0 0 +93 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 10 +refs 4 +94 0 0 +70 0 0 +71 0 0 +95 0 0 +SURF 0x30 +mat 10 +refs 4 +97 0 0 +95 0 0 +71 0 0 +72 0 0 +SURF 0x30 +mat 10 +refs 4 +96 0 0 +97 0 0 +72 0 0 +73 0 0 +SURF 0x30 +mat 10 +refs 4 +98 0 0 +120 0 0 +96 0 0 +74 0 0 +SURF 0x30 +mat 10 +refs 4 +98 0 0 +74 0 0 +75 0 0 +99 0 0 +SURF 0x30 +mat 10 +refs 4 +99 0 0 +75 0 0 +76 0 0 +100 0 0 +SURF 0x30 +mat 10 +refs 4 +100 0 0 +76 0 0 +77 0 0 +101 0 0 +SURF 0x30 +mat 10 +refs 4 +101 0 0 +77 0 0 +78 0 0 +102 0 0 +SURF 0x30 +mat 10 +refs 4 +102 0 0 +78 0 0 +79 0 0 +103 0 0 +SURF 0x30 +mat 10 +refs 4 +103 0 0 +79 0 0 +80 0 0 +104 0 0 +SURF 0x30 +mat 10 +refs 4 +104 0 0 +80 0 0 +81 0 0 +105 0 0 +SURF 0x30 +mat 10 +refs 4 +105 0 0 +81 0 0 +82 0 0 +106 0 0 +SURF 0x30 +mat 10 +refs 4 +106 0 0 +82 0 0 +83 0 0 +107 0 0 +SURF 0x30 +mat 10 +refs 4 +107 0 0 +83 0 0 +84 0 0 +108 0 0 +SURF 0x30 +mat 10 +refs 4 +108 0 0 +84 0 0 +85 0 0 +109 0 0 +SURF 0x30 +mat 10 +refs 4 +110 0 0 +109 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 10 +refs 4 +110 0 0 +86 0 0 +87 0 0 +111 0 0 +SURF 0x30 +mat 10 +refs 4 +111 0 0 +87 0 0 +88 0 0 +112 0 0 +SURF 0x30 +mat 10 +refs 4 +112 0 0 +88 0 0 +89 0 0 +113 0 0 +SURF 0x30 +mat 10 +refs 4 +114 0 0 +113 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 10 +refs 4 +114 0 0 +90 0 0 +91 0 0 +115 0 0 +SURF 0x30 +mat 10 +refs 4 +115 0 0 +91 0 0 +92 0 0 +116 0 0 +SURF 0x30 +mat 10 +refs 4 +116 0 0 +92 0 0 +93 0 0 +117 0 0 +SURF 0x30 +mat 10 +refs 4 +118 0 0 +117 0 0 +93 0 0 +94 0 0 +SURF 0x30 +mat 10 +refs 4 +118 0 0 +94 0 0 +95 0 0 +119 0 0 +SURF 0x30 +mat 10 +refs 4 +121 0 0 +119 0 0 +95 0 0 +97 0 0 +SURF 0x30 +mat 10 +refs 4 +120 0 0 +121 0 0 +97 0 0 +96 0 0 +SURF 0x30 +mat 10 +refs 4 +122 0 0 +145 0 0 +120 0 0 +98 0 0 +SURF 0x30 +mat 10 +refs 4 +122 0 0 +98 0 0 +99 0 0 +123 0 0 +SURF 0x30 +mat 10 +refs 4 +123 0 0 +99 0 0 +100 0 0 +124 0 0 +SURF 0x30 +mat 10 +refs 4 +124 0 0 +100 0 0 +101 0 0 +125 0 0 +SURF 0x30 +mat 10 +refs 4 +125 0 0 +101 0 0 +102 0 0 +126 0 0 +SURF 0x30 +mat 10 +refs 4 +126 0 0 +102 0 0 +103 0 0 +127 0 0 +SURF 0x30 +mat 10 +refs 4 +127 0 0 +103 0 0 +104 0 0 +128 0 0 +SURF 0x30 +mat 10 +refs 4 +128 0 0 +104 0 0 +105 0 0 +129 0 0 +SURF 0x30 +mat 10 +refs 4 +129 0 0 +105 0 0 +106 0 0 +130 0 0 +SURF 0x30 +mat 10 +refs 4 +130 0 0 +106 0 0 +107 0 0 +131 0 0 +SURF 0x30 +mat 10 +refs 4 +131 0 0 +107 0 0 +108 0 0 +132 0 0 +SURF 0x30 +mat 10 +refs 4 +132 0 0 +108 0 0 +109 0 0 +133 0 0 +SURF 0x30 +mat 10 +refs 4 +134 0 0 +133 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 10 +refs 4 +134 0 0 +110 0 0 +111 0 0 +135 0 0 +SURF 0x30 +mat 10 +refs 4 +135 0 0 +111 0 0 +112 0 0 +136 0 0 +SURF 0x30 +mat 10 +refs 4 +136 0 0 +112 0 0 +113 0 0 +137 0 0 +SURF 0x30 +mat 10 +refs 4 +138 0 0 +137 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 10 +refs 4 +138 0 0 +114 0 0 +115 0 0 +139 0 0 +SURF 0x30 +mat 10 +refs 4 +139 0 0 +115 0 0 +116 0 0 +140 0 0 +SURF 0x30 +mat 10 +refs 4 +140 0 0 +116 0 0 +117 0 0 +141 0 0 +SURF 0x30 +mat 10 +refs 4 +142 0 0 +141 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 10 +refs 4 +142 0 0 +118 0 0 +119 0 0 +143 0 0 +SURF 0x30 +mat 10 +refs 4 +144 0 0 +143 0 0 +119 0 0 +121 0 0 +SURF 0x30 +mat 10 +refs 4 +145 0 0 +144 0 0 +121 0 0 +120 0 0 +SURF 0x30 +mat 10 +refs 4 +146 0 0 +168 0 0 +145 0 0 +122 0 0 +SURF 0x30 +mat 10 +refs 4 +146 0 0 +122 0 0 +123 0 0 +147 0 0 +SURF 0x30 +mat 10 +refs 4 +147 0 0 +123 0 0 +124 0 0 +148 0 0 +SURF 0x30 +mat 10 +refs 4 +148 0 0 +124 0 0 +125 0 0 +149 0 0 +SURF 0x30 +mat 10 +refs 4 +149 0 0 +125 0 0 +126 0 0 +150 0 0 +SURF 0x30 +mat 10 +refs 4 +150 0 0 +126 0 0 +127 0 0 +151 0 0 +SURF 0x30 +mat 10 +refs 4 +151 0 0 +127 0 0 +128 0 0 +152 0 0 +SURF 0x30 +mat 10 +refs 4 +152 0 0 +128 0 0 +129 0 0 +153 0 0 +SURF 0x30 +mat 10 +refs 4 +153 0 0 +129 0 0 +130 0 0 +154 0 0 +SURF 0x30 +mat 10 +refs 4 +154 0 0 +130 0 0 +131 0 0 +155 0 0 +SURF 0x30 +mat 10 +refs 4 +155 0 0 +131 0 0 +132 0 0 +156 0 0 +SURF 0x30 +mat 10 +refs 4 +156 0 0 +132 0 0 +133 0 0 +157 0 0 +SURF 0x30 +mat 10 +refs 4 +158 0 0 +157 0 0 +133 0 0 +134 0 0 +SURF 0x30 +mat 10 +refs 4 +158 0 0 +134 0 0 +135 0 0 +159 0 0 +SURF 0x30 +mat 10 +refs 4 +159 0 0 +135 0 0 +136 0 0 +160 0 0 +SURF 0x30 +mat 10 +refs 4 +160 0 0 +136 0 0 +137 0 0 +161 0 0 +SURF 0x30 +mat 10 +refs 4 +162 0 0 +161 0 0 +137 0 0 +138 0 0 +SURF 0x30 +mat 10 +refs 4 +162 0 0 +138 0 0 +139 0 0 +163 0 0 +SURF 0x30 +mat 10 +refs 4 +163 0 0 +139 0 0 +140 0 0 +164 0 0 +SURF 0x30 +mat 10 +refs 4 +164 0 0 +140 0 0 +141 0 0 +165 0 0 +SURF 0x30 +mat 10 +refs 4 +166 0 0 +165 0 0 +141 0 0 +142 0 0 +SURF 0x30 +mat 10 +refs 4 +166 0 0 +142 0 0 +143 0 0 +167 0 0 +SURF 0x30 +mat 10 +refs 4 +169 0 0 +167 0 0 +143 0 0 +144 0 0 +SURF 0x30 +mat 10 +refs 4 +168 0 0 +169 0 0 +144 0 0 +145 0 0 +SURF 0x30 +mat 10 +refs 4 +170 0 0 +192 0 0 +168 0 0 +146 0 0 +SURF 0x30 +mat 10 +refs 4 +170 0 0 +146 0 0 +147 0 0 +171 0 0 +SURF 0x30 +mat 10 +refs 4 +171 0 0 +147 0 0 +148 0 0 +172 0 0 +SURF 0x30 +mat 10 +refs 4 +172 0 0 +148 0 0 +149 0 0 +173 0 0 +SURF 0x30 +mat 10 +refs 4 +173 0 0 +149 0 0 +150 0 0 +174 0 0 +SURF 0x30 +mat 10 +refs 4 +174 0 0 +150 0 0 +151 0 0 +175 0 0 +SURF 0x30 +mat 10 +refs 4 +175 0 0 +151 0 0 +152 0 0 +176 0 0 +SURF 0x30 +mat 10 +refs 4 +176 0 0 +152 0 0 +153 0 0 +177 0 0 +SURF 0x30 +mat 10 +refs 4 +177 0 0 +153 0 0 +154 0 0 +178 0 0 +SURF 0x30 +mat 10 +refs 4 +178 0 0 +154 0 0 +155 0 0 +179 0 0 +SURF 0x30 +mat 10 +refs 4 +179 0 0 +155 0 0 +156 0 0 +180 0 0 +SURF 0x30 +mat 10 +refs 4 +180 0 0 +156 0 0 +157 0 0 +181 0 0 +SURF 0x30 +mat 10 +refs 4 +182 0 0 +181 0 0 +157 0 0 +158 0 0 +SURF 0x30 +mat 10 +refs 4 +182 0 0 +158 0 0 +159 0 0 +183 0 0 +SURF 0x30 +mat 10 +refs 4 +183 0 0 +159 0 0 +160 0 0 +184 0 0 +SURF 0x30 +mat 10 +refs 4 +184 0 0 +160 0 0 +161 0 0 +185 0 0 +SURF 0x30 +mat 10 +refs 4 +186 0 0 +185 0 0 +161 0 0 +162 0 0 +SURF 0x30 +mat 10 +refs 4 +186 0 0 +162 0 0 +163 0 0 +187 0 0 +SURF 0x30 +mat 10 +refs 4 +187 0 0 +163 0 0 +164 0 0 +188 0 0 +SURF 0x30 +mat 10 +refs 4 +188 0 0 +164 0 0 +165 0 0 +189 0 0 +SURF 0x30 +mat 10 +refs 4 +190 0 0 +189 0 0 +165 0 0 +166 0 0 +SURF 0x30 +mat 10 +refs 4 +190 0 0 +166 0 0 +167 0 0 +191 0 0 +SURF 0x30 +mat 10 +refs 4 +193 0 0 +191 0 0 +167 0 0 +169 0 0 +SURF 0x30 +mat 10 +refs 4 +192 0 0 +193 0 0 +169 0 0 +168 0 0 +SURF 0x30 +mat 10 +refs 4 +194 0 0 +216 0 0 +192 0 0 +170 0 0 +SURF 0x30 +mat 10 +refs 4 +194 0 0 +170 0 0 +171 0 0 +195 0 0 +SURF 0x30 +mat 10 +refs 4 +195 0 0 +171 0 0 +172 0 0 +196 0 0 +SURF 0x30 +mat 10 +refs 4 +196 0 0 +172 0 0 +173 0 0 +197 0 0 +SURF 0x30 +mat 10 +refs 4 +197 0 0 +173 0 0 +174 0 0 +198 0 0 +SURF 0x30 +mat 10 +refs 4 +198 0 0 +174 0 0 +175 0 0 +199 0 0 +SURF 0x30 +mat 10 +refs 4 +199 0 0 +175 0 0 +176 0 0 +200 0 0 +SURF 0x30 +mat 10 +refs 4 +200 0 0 +176 0 0 +177 0 0 +201 0 0 +SURF 0x30 +mat 10 +refs 4 +201 0 0 +177 0 0 +178 0 0 +202 0 0 +SURF 0x30 +mat 10 +refs 4 +202 0 0 +178 0 0 +179 0 0 +203 0 0 +SURF 0x30 +mat 10 +refs 4 +203 0 0 +179 0 0 +180 0 0 +204 0 0 +SURF 0x30 +mat 10 +refs 4 +204 0 0 +180 0 0 +181 0 0 +205 0 0 +SURF 0x30 +mat 10 +refs 4 +206 0 0 +205 0 0 +181 0 0 +182 0 0 +SURF 0x30 +mat 10 +refs 4 +206 0 0 +182 0 0 +183 0 0 +207 0 0 +SURF 0x30 +mat 10 +refs 4 +207 0 0 +183 0 0 +184 0 0 +208 0 0 +SURF 0x30 +mat 10 +refs 4 +208 0 0 +184 0 0 +185 0 0 +209 0 0 +SURF 0x30 +mat 10 +refs 4 +210 0 0 +209 0 0 +185 0 0 +186 0 0 +SURF 0x30 +mat 10 +refs 4 +210 0 0 +186 0 0 +187 0 0 +211 0 0 +SURF 0x30 +mat 10 +refs 4 +211 0 0 +187 0 0 +188 0 0 +212 0 0 +SURF 0x30 +mat 10 +refs 4 +212 0 0 +188 0 0 +189 0 0 +213 0 0 +SURF 0x30 +mat 10 +refs 4 +214 0 0 +213 0 0 +189 0 0 +190 0 0 +SURF 0x30 +mat 10 +refs 4 +214 0 0 +190 0 0 +191 0 0 +215 0 0 +SURF 0x30 +mat 10 +refs 4 +217 0 0 +215 0 0 +191 0 0 +193 0 0 +SURF 0x30 +mat 10 +refs 4 +216 0 0 +217 0 0 +193 0 0 +192 0 0 +kids 0 +OBJECT poly +name "gearshift" +data 10 +Circle.011 +crease 30.000000 +numvert 30 +1.457167 0.623441 0.033787 +1.461682 0.623441 0.042657 +1.456258 0.623441 0.051003 +1.446318 0.623441 0.050478 +1.441803 0.623441 0.041607 +1.447228 0.623441 0.033262 +1.464269 0.87332 0.042657 +1.459821 0.874097 0.033787 +1.458925 0.874253 0.051003 +1.449134 0.875963 0.050478 +1.444686 0.87674 0.041607 +1.45003 0.875807 0.033262 +1.474878 0.904801 0.042657 +1.47058 0.906184 0.033787 +1.469714 0.906463 0.051003 +1.460252 0.909508 0.050478 +1.455954 0.910891 0.041607 +1.461118 0.909229 0.033262 +1.486669 0.938223 0.033787 +1.490702 0.936192 0.042657 +1.485857 0.938632 0.051003 +1.476979 0.943101 0.050478 +1.472946 0.945132 0.041607 +1.477791 0.942692 0.033262 +1.612464 1.080425 0.033787 +1.616496 1.078395 0.042657 +1.611651 1.080834 0.051003 +1.602773 1.085304 0.050478 +1.598741 1.087334 0.041607 +1.603586 1.084895 0.033262 +numsurf 24 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +0 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +1 0 0 +6 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +2 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +3 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +4 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +5 0 0 +11 0 0 +7 0 0 +SURF 0x30 +mat 1 +refs 4 +6 0 0 +7 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +8 0 0 +6 0 0 +12 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +9 0 0 +8 0 0 +14 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +10 0 0 +9 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +10 0 0 +16 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +11 0 0 +17 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +13 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +12 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 1 +refs 4 +15 0 0 +14 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +15 0 0 +21 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +17 0 0 +16 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +17 0 0 +23 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +18 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +19 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +20 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +22 0 0 +21 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +22 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +18 0 0 +23 0 0 +29 0 0 +24 0 0 +kids 0 +OBJECT poly +name "gearshift.001" +data 10 +Circle.014 +crease 30.000000 +numvert 74 +1.638877 1.119238 0.041702 +1.644194 1.108895 0.041702 +1.645652 1.097357 0.041702 +1.643076 1.086016 0.041702 +1.636777 1.07624 0.041702 +1.627514 1.069207 0.041702 +1.616405 1.065768 0.041702 +1.604789 1.066335 0.041702 +1.602536 1.067786 0.049064 +1.612172 1.068495 0.055538 +1.621811 1.072882 0.060344 +1.630291 1.080419 0.0629 +1.636591 1.090195 0.0629 +1.639949 1.101032 0.060344 +1.63996 1.111623 0.055538 +1.636624 1.12069 0.049064 +1.630921 1.124365 0.052982 +1.629241 1.118529 0.0629 +1.625507 1.110337 0.070262 +1.620168 1.100776 0.07418 +1.613869 1.091 0.07418 +1.607369 1.082188 0.070262 +1.601453 1.075402 0.0629 +1.596833 1.071461 0.052982 +1.590347 1.07564 0.051621 +1.589264 1.083256 0.060344 +1.590947 1.092769 0.066818 +1.595194 1.103033 0.070262 +1.601494 1.112809 0.070262 +1.609085 1.120919 0.066818 +1.617052 1.126383 0.060344 +1.624435 1.128544 0.051621 +1.620202 1.131271 0.04562 +1.609097 1.131509 0.049064 +1.598366 1.127825 0.051621 +1.589305 1.120663 0.052982 +1.583005 1.110887 0.052982 +1.580228 1.099676 0.051621 +1.581308 1.088382 0.049064 +1.586114 1.078368 0.04562 +1.594067 1.070841 0.041702 +1.586114 1.078368 0.037785 +1.581308 1.088382 0.03434 +1.580228 1.099676 0.031784 +1.583005 1.110887 0.030423 +1.589305 1.120663 0.030423 +1.598366 1.127825 0.031784 +1.609097 1.131509 0.03434 +1.620202 1.131271 0.037785 +1.624435 1.128544 0.031784 +1.617052 1.126383 0.023061 +1.609085 1.120919 0.016587 +1.601494 1.112809 0.013142 +1.595194 1.103033 0.013142 +1.590947 1.092769 0.016587 +1.589264 1.083256 0.023061 +1.590347 1.07564 0.031784 +1.596833 1.071461 0.030423 +1.601453 1.075402 0.020504 +1.607369 1.082188 0.013142 +1.613869 1.091 0.009225 +1.620168 1.100776 0.009225 +1.625507 1.110337 0.013142 +1.629241 1.118529 0.020504 +1.630921 1.124365 0.030423 +1.636624 1.12069 0.03434 +1.63996 1.111623 0.027866 +1.639949 1.101032 0.023061 +1.636591 1.090195 0.020504 +1.630291 1.080419 0.020504 +1.621811 1.072882 0.023061 +1.612172 1.068495 0.027866 +1.602536 1.067786 0.03434 +1.630343 1.127139 0.041702 +numsurf 81 +SURF 0x30 +mat 11 +refs 3 +15 0 0 +0 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x30 +mat 11 +refs 4 +13 0 0 +2 0 0 +1 0 0 +14 0 0 +SURF 0x30 +mat 11 +refs 4 +12 0 0 +3 0 0 +2 0 0 +13 0 0 +SURF 0x30 +mat 11 +refs 4 +11 0 0 +4 0 0 +3 0 0 +12 0 0 +SURF 0x30 +mat 11 +refs 4 +10 0 0 +5 0 0 +4 0 0 +11 0 0 +SURF 0x30 +mat 11 +refs 4 +9 0 0 +6 0 0 +5 0 0 +10 0 0 +SURF 0x30 +mat 11 +refs 4 +8 0 0 +7 0 0 +6 0 0 +9 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +8 0 0 +23 0 0 +SURF 0x30 +mat 11 +refs 4 +23 0 0 +8 0 0 +9 0 0 +22 0 0 +SURF 0x30 +mat 11 +refs 4 +22 0 0 +9 0 0 +10 0 0 +21 0 0 +SURF 0x30 +mat 11 +refs 4 +21 0 0 +10 0 0 +11 0 0 +20 0 0 +SURF 0x30 +mat 11 +refs 4 +20 0 0 +11 0 0 +12 0 0 +19 0 0 +SURF 0x30 +mat 11 +refs 4 +19 0 0 +12 0 0 +13 0 0 +18 0 0 +SURF 0x30 +mat 11 +refs 4 +18 0 0 +13 0 0 +14 0 0 +17 0 0 +SURF 0x30 +mat 11 +refs 4 +17 0 0 +14 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 11 +refs 3 +16 0 0 +15 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 3 +31 0 0 +16 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 4 +30 0 0 +17 0 0 +16 0 0 +31 0 0 +SURF 0x30 +mat 11 +refs 4 +29 0 0 +18 0 0 +17 0 0 +30 0 0 +SURF 0x30 +mat 11 +refs 4 +28 0 0 +19 0 0 +18 0 0 +29 0 0 +SURF 0x30 +mat 11 +refs 4 +27 0 0 +20 0 0 +19 0 0 +28 0 0 +SURF 0x30 +mat 11 +refs 4 +26 0 0 +21 0 0 +20 0 0 +27 0 0 +SURF 0x30 +mat 11 +refs 4 +25 0 0 +22 0 0 +21 0 0 +26 0 0 +SURF 0x30 +mat 11 +refs 4 +24 0 0 +23 0 0 +22 0 0 +25 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +24 0 0 +39 0 0 +SURF 0x30 +mat 11 +refs 4 +39 0 0 +24 0 0 +25 0 0 +38 0 0 +SURF 0x30 +mat 11 +refs 4 +38 0 0 +25 0 0 +26 0 0 +37 0 0 +SURF 0x30 +mat 11 +refs 4 +37 0 0 +26 0 0 +27 0 0 +36 0 0 +SURF 0x30 +mat 11 +refs 4 +36 0 0 +27 0 0 +28 0 0 +35 0 0 +SURF 0x30 +mat 11 +refs 4 +35 0 0 +28 0 0 +29 0 0 +34 0 0 +SURF 0x30 +mat 11 +refs 4 +34 0 0 +29 0 0 +30 0 0 +33 0 0 +SURF 0x30 +mat 11 +refs 4 +33 0 0 +30 0 0 +31 0 0 +32 0 0 +SURF 0x30 +mat 11 +refs 3 +32 0 0 +31 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 3 +48 0 0 +32 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 4 +47 0 0 +33 0 0 +32 0 0 +48 0 0 +SURF 0x30 +mat 11 +refs 4 +46 0 0 +34 0 0 +33 0 0 +47 0 0 +SURF 0x30 +mat 11 +refs 4 +45 0 0 +35 0 0 +34 0 0 +46 0 0 +SURF 0x30 +mat 11 +refs 4 +44 0 0 +36 0 0 +35 0 0 +45 0 0 +SURF 0x30 +mat 11 +refs 4 +43 0 0 +37 0 0 +36 0 0 +44 0 0 +SURF 0x30 +mat 11 +refs 4 +42 0 0 +38 0 0 +37 0 0 +43 0 0 +SURF 0x30 +mat 11 +refs 4 +41 0 0 +39 0 0 +38 0 0 +42 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +39 0 0 +41 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +41 0 0 +56 0 0 +SURF 0x30 +mat 11 +refs 4 +56 0 0 +41 0 0 +42 0 0 +55 0 0 +SURF 0x30 +mat 11 +refs 4 +55 0 0 +42 0 0 +43 0 0 +54 0 0 +SURF 0x30 +mat 11 +refs 4 +54 0 0 +43 0 0 +44 0 0 +53 0 0 +SURF 0x30 +mat 11 +refs 4 +53 0 0 +44 0 0 +45 0 0 +52 0 0 +SURF 0x30 +mat 11 +refs 4 +52 0 0 +45 0 0 +46 0 0 +51 0 0 +SURF 0x30 +mat 11 +refs 4 +51 0 0 +46 0 0 +47 0 0 +50 0 0 +SURF 0x30 +mat 11 +refs 4 +50 0 0 +47 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 11 +refs 3 +49 0 0 +48 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 3 +64 0 0 +49 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 4 +63 0 0 +50 0 0 +49 0 0 +64 0 0 +SURF 0x30 +mat 11 +refs 4 +62 0 0 +51 0 0 +50 0 0 +63 0 0 +SURF 0x30 +mat 11 +refs 4 +61 0 0 +52 0 0 +51 0 0 +62 0 0 +SURF 0x30 +mat 11 +refs 4 +60 0 0 +53 0 0 +52 0 0 +61 0 0 +SURF 0x30 +mat 11 +refs 4 +59 0 0 +54 0 0 +53 0 0 +60 0 0 +SURF 0x30 +mat 11 +refs 4 +58 0 0 +55 0 0 +54 0 0 +59 0 0 +SURF 0x30 +mat 11 +refs 4 +57 0 0 +56 0 0 +55 0 0 +58 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +57 0 0 +72 0 0 +SURF 0x30 +mat 11 +refs 4 +72 0 0 +57 0 0 +58 0 0 +71 0 0 +SURF 0x30 +mat 11 +refs 4 +71 0 0 +58 0 0 +59 0 0 +70 0 0 +SURF 0x30 +mat 11 +refs 4 +70 0 0 +59 0 0 +60 0 0 +69 0 0 +SURF 0x30 +mat 11 +refs 4 +69 0 0 +60 0 0 +61 0 0 +68 0 0 +SURF 0x30 +mat 11 +refs 4 +68 0 0 +61 0 0 +62 0 0 +67 0 0 +SURF 0x30 +mat 11 +refs 4 +67 0 0 +62 0 0 +63 0 0 +66 0 0 +SURF 0x30 +mat 11 +refs 4 +66 0 0 +63 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 11 +refs 3 +65 0 0 +64 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 3 +0 0 0 +65 0 0 +73 0 0 +SURF 0x30 +mat 11 +refs 4 +65 0 0 +0 0 0 +1 0 0 +66 0 0 +SURF 0x30 +mat 11 +refs 4 +2 0 0 +67 0 0 +66 0 0 +1 0 0 +SURF 0x30 +mat 11 +refs 4 +3 0 0 +68 0 0 +67 0 0 +2 0 0 +SURF 0x30 +mat 11 +refs 4 +4 0 0 +69 0 0 +68 0 0 +3 0 0 +SURF 0x30 +mat 11 +refs 4 +5 0 0 +70 0 0 +69 0 0 +4 0 0 +SURF 0x30 +mat 11 +refs 4 +6 0 0 +71 0 0 +70 0 0 +5 0 0 +SURF 0x30 +mat 11 +refs 4 +7 0 0 +72 0 0 +71 0 0 +6 0 0 +SURF 0x30 +mat 11 +refs 3 +40 0 0 +72 0 0 +7 0 0 +kids 0 +OBJECT poly +name "gearshift.002" +data 10 +Circle.015 +crease 30.000000 +numvert 18 +1.447228 0.623441 0.033262 +1.441803 0.623441 0.041607 +1.446318 0.623441 0.050478 +1.456258 0.623441 0.051003 +1.461682 0.623441 0.042657 +1.457167 0.623441 0.033787 +1.43667 0.602551 0.012519 +1.418561 0.602551 0.040379 +1.433633 0.602551 0.069992 +1.466815 0.602551 0.071746 +1.469852 0.602551 0.014272 +1.484925 0.602551 0.043885 +1.42733 0.526942 -0.005832 +1.397998 0.526942 0.039293 +1.422411 0.526942 0.087257 +1.476156 0.526942 0.090096 +1.505487 0.526942 0.044972 +1.481074 0.526942 -0.002992 +numsurf 12 +SURF 0x30 +mat 3 +refs 4 +0 0 0 +5 0 0 +10 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +1 0 0 +0 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 3 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 3 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 4 +9 0 0 +11 0 0 +4 0 0 +3 0 0 +SURF 0x30 +mat 3 +refs 4 +11 0 0 +10 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 3 +refs 4 +17 0 0 +12 0 0 +6 0 0 +10 0 0 +SURF 0x30 +mat 3 +refs 4 +12 0 0 +13 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +13 0 0 +14 0 0 +8 0 0 +7 0 0 +SURF 0x30 +mat 3 +refs 4 +14 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 3 +refs 4 +15 0 0 +16 0 0 +11 0 0 +9 0 0 +SURF 0x30 +mat 3 +refs 4 +16 0 0 +17 0 0 +10 0 0 +11 0 0 +kids 0 +OBJECT poly +name "hinge.L" +data 9 +Plane.005 +crease 30.000000 +numvert 8 +2.283465 1.167867 0.731264 +2.283465 1.167867 0.764798 +2.34581 1.167867 0.764798 +2.34581 1.167867 0.731264 +2.283465 1.027411 0.731264 +2.283465 1.027411 0.764798 +2.34581 1.027411 0.764798 +2.34581 1.027411 0.731264 +numsurf 6 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +6 0 0 +2 0 0 +1 0 0 +5 0 0 +SURF 0x20 +mat 2 +refs 4 +7 0 0 +3 0 0 +2 0 0 +6 0 0 +SURF 0x20 +mat 2 +refs 4 +3 0 0 +0 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 4 +5 0 0 +4 0 0 +7 0 0 +6 0 0 +kids 0 +OBJECT poly +name "hinge.L.001" +data 9 +Plane.007 +crease 30.000000 +numvert 8 +2.283465 1.167867 -0.731509 +2.283465 1.167867 -0.765043 +2.34581 1.167867 -0.765043 +2.34581 1.167867 -0.731509 +2.283465 1.027411 -0.731509 +2.283465 1.027411 -0.765043 +2.34581 1.027411 -0.765043 +2.34581 1.027411 -0.731509 +numsurf 6 +SURF 0x20 +mat 2 +refs 4 +3 0 0 +0 0 0 +4 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 2 +refs 4 +6 0 0 +5 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 4 +7 0 0 +6 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +1 0 0 +0 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 4 +5 0 0 +6 0 0 +7 0 0 +4 0 0 +kids 0 +OBJECT poly +name "lights" +data 9 +Plane.001 +crease 30.000000 +numvert 74 +-0.372276 1.353066 0.522139 +-0.372276 1.335564 0.547134 +-0.372276 1.360963 0.492666 +-0.372276 1.358304 0.462269 +-0.372276 1.345408 0.434614 +-0.372276 1.323832 0.413038 +-0.372276 1.296178 0.400143 +-0.372276 1.265781 0.397484 +-0.372276 1.236308 0.405381 +-0.372276 1.211313 0.422883 +-0.372276 1.193811 0.447878 +-0.372276 1.185914 0.477351 +-0.372276 1.188573 0.507748 +-0.372276 1.201468 0.535402 +-0.372276 1.223045 0.556978 +-0.372276 1.250699 0.569874 +-0.372276 1.281096 0.572533 +-0.372276 1.310569 0.564636 +-0.389524 1.304251 0.499377 +-0.389524 1.297479 0.509049 +-0.389524 1.307307 0.487972 +-0.389524 1.306278 0.476209 +-0.389524 1.301288 0.465508 +-0.389524 1.292939 0.457159 +-0.389524 1.282238 0.452169 +-0.389524 1.270475 0.45114 +-0.389524 1.25907 0.454196 +-0.389524 1.249398 0.460968 +-0.389524 1.242625 0.47064 +-0.389524 1.23957 0.482045 +-0.389524 1.240599 0.493808 +-0.389524 1.245589 0.504509 +-0.389524 1.253938 0.512858 +-0.389524 1.264639 0.517848 +-0.389524 1.276401 0.518877 +-0.389524 1.287807 0.515821 +-0.392399 1.273439 0.485009 +-0.392399 1.273439 -0.485001 +-0.389524 1.287807 -0.515814 +-0.389524 1.276401 -0.51887 +-0.389524 1.264639 -0.517841 +-0.389524 1.253938 -0.512851 +-0.389524 1.245589 -0.504502 +-0.389524 1.240599 -0.4938 +-0.389524 1.23957 -0.482038 +-0.389524 1.242625 -0.470633 +-0.389524 1.249398 -0.460961 +-0.389524 1.25907 -0.454188 +-0.389524 1.270475 -0.451132 +-0.389524 1.282238 -0.452161 +-0.389524 1.292939 -0.457151 +-0.389524 1.301288 -0.4655 +-0.389524 1.306278 -0.476202 +-0.389524 1.307307 -0.487964 +-0.389524 1.297479 -0.509041 +-0.389524 1.304251 -0.499369 +-0.372276 1.310569 -0.564628 +-0.372276 1.281096 -0.572526 +-0.372276 1.250699 -0.569866 +-0.372276 1.223045 -0.556971 +-0.372276 1.201468 -0.535395 +-0.372276 1.188573 -0.507741 +-0.372276 1.185914 -0.477344 +-0.372276 1.193811 -0.44787 +-0.372276 1.211313 -0.422875 +-0.372276 1.236308 -0.405374 +-0.372276 1.265781 -0.397476 +-0.372276 1.296178 -0.400136 +-0.372276 1.323832 -0.413031 +-0.372276 1.345408 -0.434607 +-0.372276 1.358304 -0.462261 +-0.372276 1.360963 -0.492658 +-0.372276 1.335564 -0.547127 +-0.372276 1.353066 -0.522132 +numsurf 72 +SURF 0x30 +mat 12 +refs 4 +1 0 0 +0 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 12 +refs 4 +0 0 0 +2 0 0 +20 0 0 +18 0 0 +SURF 0x30 +mat 12 +refs 4 +3 0 0 +21 0 0 +20 0 0 +2 0 0 +SURF 0x30 +mat 12 +refs 4 +4 0 0 +22 0 0 +21 0 0 +3 0 0 +SURF 0x30 +mat 12 +refs 4 +5 0 0 +23 0 0 +22 0 0 +4 0 0 +SURF 0x30 +mat 12 +refs 4 +6 0 0 +24 0 0 +23 0 0 +5 0 0 +SURF 0x30 +mat 12 +refs 4 +7 0 0 +25 0 0 +24 0 0 +6 0 0 +SURF 0x30 +mat 12 +refs 4 +8 0 0 +26 0 0 +25 0 0 +7 0 0 +SURF 0x30 +mat 12 +refs 4 +9 0 0 +27 0 0 +26 0 0 +8 0 0 +SURF 0x30 +mat 12 +refs 4 +10 0 0 +28 0 0 +27 0 0 +9 0 0 +SURF 0x30 +mat 12 +refs 4 +10 0 0 +11 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 12 +refs 4 +12 0 0 +30 0 0 +29 0 0 +11 0 0 +SURF 0x30 +mat 12 +refs 4 +13 0 0 +31 0 0 +30 0 0 +12 0 0 +SURF 0x30 +mat 12 +refs 4 +14 0 0 +32 0 0 +31 0 0 +13 0 0 +SURF 0x30 +mat 12 +refs 4 +15 0 0 +33 0 0 +32 0 0 +14 0 0 +SURF 0x30 +mat 12 +refs 4 +16 0 0 +34 0 0 +33 0 0 +15 0 0 +SURF 0x30 +mat 12 +refs 4 +17 0 0 +35 0 0 +34 0 0 +16 0 0 +SURF 0x30 +mat 12 +refs 4 +1 0 0 +19 0 0 +35 0 0 +17 0 0 +SURF 0x30 +mat 12 +refs 3 +19 0 0 +18 0 0 +36 0 0 +SURF 0x30 +mat 12 +refs 3 +18 0 0 +20 0 0 +36 0 0 +SURF 0x30 +mat 12 +refs 3 +21 0 0 +36 0 0 +20 0 0 +SURF 0x30 +mat 12 +refs 3 +22 0 0 +36 0 0 +21 0 0 +SURF 0x30 +mat 12 +refs 3 +23 0 0 +36 0 0 +22 0 0 +SURF 0x30 +mat 12 +refs 3 +24 0 0 +36 0 0 +23 0 0 +SURF 0x30 +mat 12 +refs 3 +25 0 0 +36 0 0 +24 0 0 +SURF 0x30 +mat 12 +refs 3 +26 0 0 +36 0 0 +25 0 0 +SURF 0x30 +mat 12 +refs 3 +27 0 0 +36 0 0 +26 0 0 +SURF 0x30 +mat 12 +refs 3 +28 0 0 +36 0 0 +27 0 0 +SURF 0x30 +mat 12 +refs 3 +28 0 0 +29 0 0 +36 0 0 +SURF 0x30 +mat 12 +refs 3 +30 0 0 +36 0 0 +29 0 0 +SURF 0x30 +mat 12 +refs 3 +31 0 0 +36 0 0 +30 0 0 +SURF 0x30 +mat 12 +refs 3 +32 0 0 +36 0 0 +31 0 0 +SURF 0x30 +mat 12 +refs 3 +33 0 0 +36 0 0 +32 0 0 +SURF 0x30 +mat 12 +refs 3 +34 0 0 +36 0 0 +33 0 0 +SURF 0x30 +mat 12 +refs 3 +35 0 0 +36 0 0 +34 0 0 +SURF 0x30 +mat 12 +refs 3 +19 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 12 +refs 3 +54 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +38 0 0 +39 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +39 0 0 +40 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +40 0 0 +41 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +41 0 0 +42 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +42 0 0 +43 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +43 0 0 +44 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +45 0 0 +37 0 0 +44 0 0 +SURF 0x30 +mat 12 +refs 3 +45 0 0 +46 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +46 0 0 +47 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +47 0 0 +48 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +48 0 0 +49 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +49 0 0 +50 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +50 0 0 +51 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +51 0 0 +52 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +52 0 0 +53 0 0 +37 0 0 +SURF 0x30 +mat 12 +refs 3 +55 0 0 +37 0 0 +53 0 0 +SURF 0x30 +mat 12 +refs 3 +54 0 0 +37 0 0 +55 0 0 +SURF 0x30 +mat 12 +refs 4 +72 0 0 +56 0 0 +38 0 0 +54 0 0 +SURF 0x30 +mat 12 +refs 4 +56 0 0 +57 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 12 +refs 4 +57 0 0 +58 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 12 +refs 4 +58 0 0 +59 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 12 +refs 4 +59 0 0 +60 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 12 +refs 4 +60 0 0 +61 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 12 +refs 4 +61 0 0 +62 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 12 +refs 4 +63 0 0 +45 0 0 +44 0 0 +62 0 0 +SURF 0x30 +mat 12 +refs 4 +63 0 0 +64 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 12 +refs 4 +64 0 0 +65 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 12 +refs 4 +65 0 0 +66 0 0 +48 0 0 +47 0 0 +SURF 0x30 +mat 12 +refs 4 +66 0 0 +67 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 12 +refs 4 +67 0 0 +68 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 12 +refs 4 +68 0 0 +69 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 12 +refs 4 +69 0 0 +70 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 12 +refs 4 +70 0 0 +71 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 12 +refs 4 +73 0 0 +55 0 0 +53 0 0 +71 0 0 +SURF 0x30 +mat 12 +refs 4 +72 0 0 +54 0 0 +55 0 0 +73 0 0 +kids 0 +OBJECT poly +name "lights.001" +data 9 +Plane.012 +crease 30.000000 +numvert 636 +-0.372276 1.353066 0.522139 +-0.372276 1.335564 0.547134 +-0.372276 1.360963 0.492666 +-0.372276 1.358304 0.462269 +-0.372276 1.345408 0.434614 +-0.372276 1.323832 0.413038 +-0.372276 1.296178 0.400143 +-0.372276 1.265781 0.397484 +-0.372276 1.236308 0.405381 +-0.372276 1.211313 0.422883 +-0.372276 1.193811 0.447878 +-0.372276 1.185914 0.477351 +-0.372276 1.188573 0.507748 +-0.372276 1.201468 0.535402 +-0.372276 1.223045 0.556978 +-0.372276 1.250699 0.569874 +-0.372276 1.281096 0.572533 +-0.372276 1.310569 0.564636 +-0.367024 1.358238 0.524551 +-0.367024 1.339599 0.551169 +-0.367024 1.366648 0.493163 +-0.367024 1.363816 0.460792 +-0.367024 1.350083 0.431341 +-0.367024 1.327105 0.408364 +-0.367024 1.297655 0.394631 +-0.367024 1.265284 0.391799 +-0.367024 1.233896 0.400209 +-0.367024 1.207277 0.418848 +-0.367024 1.188639 0.445466 +-0.367024 1.180229 0.476854 +-0.367024 1.183061 0.509225 +-0.367024 1.196794 0.538676 +-0.367024 1.219771 0.561653 +-0.367024 1.249222 0.575386 +-0.367024 1.281593 0.578218 +-0.367024 1.312981 0.569808 +-0.336824 1.337477 0.549047 +-0.336824 1.355518 0.523283 +-0.336824 1.363658 0.492902 +-0.336824 1.360917 0.461569 +-0.336824 1.347624 0.433063 +-0.336824 1.325384 0.410822 +-0.336824 1.296878 0.39753 +-0.336824 1.265545 0.394788 +-0.336824 1.235164 0.402929 +-0.336824 1.209399 0.42097 +-0.336824 1.191359 0.446734 +-0.336824 1.183218 0.477115 +-0.336824 1.18596 0.508448 +-0.336824 1.199252 0.536954 +-0.336824 1.221493 0.559195 +-0.336824 1.249999 0.572487 +-0.336824 1.281332 0.575229 +-0.336824 1.311713 0.567088 +-0.309251 1.345984 0.518837 +-0.309251 1.330039 0.541609 +-0.309251 1.353179 0.491985 +-0.309251 1.350756 0.464291 +-0.309251 1.339007 0.439096 +-0.309251 1.31935 0.419439 +-0.309251 1.294156 0.407691 +-0.309251 1.266462 0.405268 +-0.309251 1.23961 0.412463 +-0.309251 1.216838 0.428408 +-0.309251 1.200893 0.45118 +-0.309251 1.193698 0.478032 +-0.309251 1.196121 0.505726 +-0.309251 1.207869 0.530921 +-0.309251 1.227526 0.550578 +-0.309251 1.252721 0.562326 +-0.309251 1.280415 0.564749 +-0.309251 1.307267 0.557554 +-0.284304 1.319981 0.531551 +-0.284304 1.333093 0.512826 +-0.284304 1.339009 0.490745 +-0.284304 1.337017 0.467973 +-0.284304 1.327356 0.447255 +-0.284304 1.311192 0.431091 +-0.284304 1.290474 0.42143 +-0.284304 1.267702 0.419437 +-0.284304 1.245621 0.425354 +-0.284304 1.226895 0.438466 +-0.284304 1.213784 0.457191 +-0.284304 1.207867 0.479272 +-0.284304 1.20986 0.502044 +-0.284304 1.219521 0.522762 +-0.284304 1.235685 0.538926 +-0.284304 1.256402 0.548587 +-0.284304 1.279175 0.55058 +-0.284304 1.301256 0.544663 +-0.268548 1.30997 0.52154 +-0.268548 1.320261 0.506842 +-0.268548 1.324905 0.489511 +-0.268548 1.323341 0.471637 +-0.268548 1.315758 0.455376 +-0.268548 1.303071 0.442689 +-0.268548 1.28681 0.435106 +-0.268548 1.268936 0.433542 +-0.268548 1.251605 0.438186 +-0.268548 1.236907 0.448477 +-0.268548 1.226616 0.463175 +-0.268548 1.221972 0.480506 +-0.268548 1.223536 0.49838 +-0.268548 1.231119 0.514641 +-0.268548 1.243806 0.527328 +-0.268548 1.260067 0.534911 +-0.268548 1.277941 0.536475 +-0.268548 1.295272 0.531831 +-0.255417 1.295589 0.507159 +-0.255417 1.301829 0.498247 +-0.255417 1.304645 0.487739 +-0.255417 1.303697 0.476901 +-0.255417 1.299099 0.467041 +-0.255417 1.291406 0.459348 +-0.255417 1.281546 0.45475 +-0.255417 1.270708 0.453802 +-0.255417 1.2602 0.456618 +-0.255417 1.251288 0.462858 +-0.255417 1.245048 0.47177 +-0.255417 1.242232 0.482278 +-0.255417 1.24318 0.493116 +-0.255417 1.247778 0.502976 +-0.255417 1.255471 0.510669 +-0.255417 1.265331 0.515267 +-0.255417 1.276169 0.516215 +-0.255417 1.286677 0.513399 +-0.248852 1.280039 0.491609 +-0.248852 1.281898 0.488954 +-0.248852 1.282738 0.485822 +-0.248852 1.282455 0.482592 +-0.248852 1.281085 0.479654 +-0.248852 1.278793 0.477362 +-0.248852 1.275854 0.475992 +-0.248852 1.272625 0.475709 +-0.248852 1.269493 0.476548 +-0.248852 1.266838 0.478408 +-0.248852 1.264978 0.481063 +-0.248852 1.264139 0.484195 +-0.248852 1.264422 0.487425 +-0.248852 1.265792 0.490363 +-0.248852 1.268084 0.492655 +-0.248852 1.271022 0.494025 +-0.248852 1.274252 0.494308 +-0.248852 1.277383 0.493469 +-0.29124 1.137945 0.456288 +-0.29124 1.137945 0.513507 +-0.367107 1.137945 0.513507 +-0.367107 1.137945 0.456288 +-0.29124 1.213812 0.456288 +-0.29124 1.213812 0.513507 +-0.367107 1.213812 0.513507 +-0.367107 1.213812 0.456288 +-0.217162 1.223931 0.465356 +-0.217162 1.223931 0.50444 +-0.207471 1.224701 0.50444 +-0.207471 1.224701 0.465356 +-0.213238 1.147136 0.465356 +-0.213238 1.147136 0.50444 +-0.203517 1.147136 0.50444 +-0.203517 1.147136 0.465356 +-0.22232 1.291946 0.465356 +-0.22232 1.291946 0.50444 +-0.231199 1.287986 0.50444 +-0.231199 1.287986 0.465356 +-0.24892 1.319715 0.465356 +-0.24892 1.319715 0.50444 +-0.241559 1.326064 0.50444 +-0.241559 1.326064 0.465356 +-0.271438 1.356011 0.465356 +-0.271438 1.356011 0.50444 +-0.276567 1.347753 0.50444 +-0.276567 1.347753 0.465356 +-0.295371 1.359673 0.465356 +-0.295371 1.359673 0.50444 +-0.292828 1.369056 0.50444 +-0.292828 1.369056 0.465356 +-0.317703 1.375671 0.465356 +-0.317703 1.375671 0.50444 +-0.318098 1.365957 0.50444 +-0.318098 1.365957 0.465356 +-0.322329 1.358776 0.436458 +-0.322329 1.358776 0.533337 +-0.32135 1.382852 0.533337 +-0.32135 1.382852 0.436458 +-0.372684 1.383626 0.436458 +-0.372684 1.383626 0.533337 +-0.371037 1.364802 0.533337 +-0.371037 1.364802 0.436458 +-0.340012 1.146859 0.618572 +-0.338076 1.146859 0.622724 +-0.339262 1.146859 0.62715 +-0.343015 1.146859 0.629778 +-0.347579 1.146859 0.629379 +-0.350819 1.146859 0.626139 +-0.351219 1.146859 0.621575 +-0.34859 1.146859 0.617821 +-0.344165 1.146859 0.616635 +-0.340012 1.206269 0.618572 +-0.338076 1.206269 0.622724 +-0.339262 1.206269 0.62715 +-0.343015 1.206269 0.629778 +-0.347579 1.206269 0.629379 +-0.350819 1.206269 0.626139 +-0.351219 1.206269 0.621575 +-0.34859 1.206269 0.617821 +-0.344165 1.206269 0.616635 +-0.344748 1.146859 0.623308 +-0.344165 1.292729 0.611203 +-0.34859 1.292975 0.612363 +-0.351219 1.293753 0.616035 +-0.350819 1.2947 0.6205 +-0.347579 1.295372 0.62367 +-0.343015 1.295455 0.62406 +-0.339262 1.294909 0.621489 +-0.338076 1.293992 0.61716 +-0.340012 1.29313 0.613097 +-0.340012 1.317945 0.602956 +-0.338076 1.319998 0.606566 +-0.339261 1.322186 0.610413 +-0.343015 1.323486 0.612697 +-0.347579 1.323288 0.61235 +-0.350819 1.321686 0.609534 +-0.351219 1.31943 0.605566 +-0.34859 1.317574 0.602304 +-0.344165 1.316988 0.601273 +-0.344164 1.347343 0.574103 +-0.34859 1.348167 0.574956 +-0.351218 1.350774 0.577656 +-0.350819 1.353945 0.58094 +-0.347579 1.356195 0.583271 +-0.343015 1.356472 0.583558 +-0.339261 1.354647 0.581667 +-0.338075 1.351573 0.578484 +-0.340012 1.348688 0.575496 +-0.340012 1.36291 0.549279 +-0.338075 1.366773 0.550802 +-0.339261 1.37089 0.552426 +-0.343015 1.373335 0.55339 +-0.347579 1.372964 0.553243 +-0.350819 1.36995 0.552055 +-0.351218 1.365703 0.550381 +-0.34859 1.362211 0.549004 +-0.344164 1.361108 0.548569 +-0.344748 1.372893 0.520341 +-0.344164 1.36624 0.519827 +-0.34859 1.367423 0.519918 +-0.351218 1.371165 0.520207 +-0.350819 1.375716 0.520559 +-0.347579 1.378946 0.520808 +-0.343015 1.379344 0.520839 +-0.339261 1.376724 0.520637 +-0.338075 1.372311 0.520296 +-0.340012 1.368171 0.519976 +-0.340012 1.368171 0.443267 +-0.338075 1.372311 0.442947 +-0.339261 1.376724 0.442606 +-0.343015 1.379344 0.442404 +-0.347579 1.378946 0.442435 +-0.350819 1.375716 0.442684 +-0.351218 1.371165 0.443036 +-0.34859 1.367423 0.443324 +-0.344164 1.36624 0.443416 +-0.344748 1.372893 0.442902 +-0.344164 1.361108 0.414674 +-0.34859 1.362211 0.414239 +-0.351218 1.365703 0.412862 +-0.350819 1.36995 0.411188 +-0.347579 1.372964 0.409999 +-0.343015 1.373335 0.409853 +-0.339261 1.37089 0.410817 +-0.338075 1.366773 0.41244 +-0.340012 1.36291 0.413964 +-0.340012 1.348688 0.387747 +-0.338075 1.351573 0.384759 +-0.339261 1.354647 0.381576 +-0.343015 1.356472 0.379685 +-0.347579 1.356195 0.379972 +-0.350819 1.353945 0.382303 +-0.351218 1.350774 0.385587 +-0.34859 1.348167 0.388287 +-0.344164 1.347343 0.38914 +-0.344165 1.316988 0.36197 +-0.34859 1.317574 0.360939 +-0.351219 1.31943 0.357677 +-0.350819 1.321686 0.353709 +-0.347579 1.323288 0.350893 +-0.343015 1.323486 0.350546 +-0.339261 1.322186 0.35283 +-0.338076 1.319998 0.356677 +-0.340012 1.317945 0.360287 +-0.340012 1.29313 0.350145 +-0.338076 1.293992 0.346083 +-0.339262 1.294909 0.341753 +-0.343015 1.295455 0.339183 +-0.347579 1.295372 0.339573 +-0.350819 1.2947 0.342743 +-0.351219 1.293753 0.347208 +-0.34859 1.292975 0.35088 +-0.344165 1.292729 0.35204 +-0.344748 1.146859 0.339935 +-0.344165 1.206269 0.346607 +-0.34859 1.206269 0.345422 +-0.351219 1.206269 0.341668 +-0.350819 1.206269 0.337104 +-0.347579 1.206269 0.333864 +-0.343015 1.206269 0.333465 +-0.339262 1.206269 0.336093 +-0.338076 1.206269 0.340518 +-0.340012 1.206269 0.344671 +-0.344165 1.146859 0.346607 +-0.34859 1.146859 0.345422 +-0.351219 1.146859 0.341668 +-0.350819 1.146859 0.337104 +-0.347579 1.146859 0.333864 +-0.343015 1.146859 0.333465 +-0.339262 1.146859 0.336093 +-0.338076 1.146859 0.340518 +-0.340012 1.146859 0.344671 +-0.340012 1.146859 -0.344664 +-0.338076 1.146859 -0.340511 +-0.339261 1.146859 -0.336085 +-0.343015 1.146859 -0.333457 +-0.347579 1.146859 -0.333856 +-0.350819 1.146859 -0.337096 +-0.351219 1.146859 -0.341661 +-0.34859 1.146859 -0.345414 +-0.344165 1.146859 -0.3466 +-0.340012 1.206269 -0.344664 +-0.338076 1.206269 -0.340511 +-0.339261 1.206269 -0.336085 +-0.343015 1.206269 -0.333457 +-0.347579 1.206269 -0.333856 +-0.350819 1.206269 -0.337096 +-0.351219 1.206269 -0.341661 +-0.34859 1.206269 -0.345414 +-0.344165 1.206269 -0.3466 +-0.344748 1.146859 -0.339927 +-0.344165 1.292729 -0.352032 +-0.34859 1.292975 -0.350872 +-0.351219 1.293753 -0.347201 +-0.350819 1.2947 -0.342735 +-0.347579 1.295372 -0.339566 +-0.343015 1.295455 -0.339175 +-0.339261 1.294909 -0.341746 +-0.338076 1.293992 -0.346076 +-0.340012 1.29313 -0.350138 +-0.340012 1.317945 -0.360279 +-0.338076 1.319998 -0.35667 +-0.339261 1.322186 -0.352823 +-0.343015 1.323486 -0.350538 +-0.347579 1.323288 -0.350885 +-0.350819 1.321686 -0.353702 +-0.351219 1.31943 -0.357669 +-0.34859 1.317574 -0.360932 +-0.344165 1.316988 -0.361963 +-0.344164 1.347343 -0.389132 +-0.34859 1.348167 -0.388279 +-0.351218 1.350774 -0.385579 +-0.350819 1.353945 -0.382296 +-0.347579 1.356195 -0.379965 +-0.343015 1.356472 -0.379678 +-0.339261 1.354647 -0.381568 +-0.338075 1.351573 -0.384752 +-0.340012 1.348688 -0.387739 +-0.340012 1.36291 -0.413956 +-0.338075 1.366773 -0.412433 +-0.339261 1.37089 -0.41081 +-0.343015 1.373335 -0.409846 +-0.347579 1.372964 -0.409992 +-0.350819 1.36995 -0.411181 +-0.351218 1.365703 -0.412855 +-0.34859 1.362211 -0.414232 +-0.344164 1.361108 -0.414667 +-0.344748 1.372893 -0.442895 +-0.344164 1.36624 -0.443408 +-0.34859 1.367423 -0.443317 +-0.351218 1.371165 -0.443028 +-0.350819 1.375716 -0.442677 +-0.347579 1.378946 -0.442427 +-0.343015 1.379344 -0.442396 +-0.339261 1.376724 -0.442599 +-0.338075 1.372311 -0.44294 +-0.340012 1.368171 -0.443259 +-0.340012 1.368171 -0.519969 +-0.338075 1.372311 -0.520289 +-0.339261 1.376724 -0.520629 +-0.343015 1.379344 -0.520832 +-0.347579 1.378946 -0.520801 +-0.350819 1.375716 -0.520551 +-0.351218 1.371165 -0.5202 +-0.34859 1.367423 -0.519911 +-0.344164 1.36624 -0.51982 +-0.344748 1.372893 -0.520333 +-0.344164 1.361108 -0.548562 +-0.34859 1.362211 -0.548997 +-0.351218 1.365703 -0.550373 +-0.350819 1.36995 -0.552047 +-0.347579 1.372964 -0.553236 +-0.343015 1.373335 -0.553382 +-0.339261 1.37089 -0.552418 +-0.338075 1.366773 -0.550795 +-0.340012 1.36291 -0.549272 +-0.340012 1.348688 -0.575489 +-0.338075 1.351573 -0.578476 +-0.339261 1.354647 -0.58166 +-0.343015 1.356472 -0.583551 +-0.347579 1.356195 -0.583263 +-0.350819 1.353945 -0.580932 +-0.351218 1.350774 -0.577649 +-0.34859 1.348167 -0.574949 +-0.344164 1.347343 -0.574096 +-0.344165 1.316988 -0.601266 +-0.34859 1.317574 -0.602296 +-0.351219 1.31943 -0.605559 +-0.350819 1.321686 -0.609526 +-0.347579 1.323288 -0.612343 +-0.343015 1.323486 -0.61269 +-0.339261 1.322186 -0.610405 +-0.338076 1.319998 -0.606558 +-0.340012 1.317945 -0.602949 +-0.340012 1.29313 -0.61309 +-0.338076 1.293992 -0.617152 +-0.339261 1.294909 -0.621482 +-0.343015 1.295455 -0.624053 +-0.347579 1.295372 -0.623662 +-0.350819 1.2947 -0.620493 +-0.351219 1.293753 -0.616028 +-0.34859 1.292975 -0.612356 +-0.344165 1.292729 -0.611196 +-0.344748 1.146859 -0.623301 +-0.344165 1.206269 -0.616628 +-0.34859 1.206269 -0.617814 +-0.351219 1.206269 -0.621567 +-0.350819 1.206269 -0.626132 +-0.347579 1.206269 -0.629372 +-0.343015 1.206269 -0.629771 +-0.339261 1.206269 -0.627143 +-0.338076 1.206269 -0.622717 +-0.340012 1.206269 -0.618564 +-0.344165 1.146859 -0.616628 +-0.34859 1.146859 -0.617814 +-0.351219 1.146859 -0.621567 +-0.350819 1.146859 -0.626132 +-0.347579 1.146859 -0.629372 +-0.343015 1.146859 -0.629771 +-0.339261 1.146859 -0.627143 +-0.338076 1.146859 -0.622717 +-0.340012 1.146859 -0.618564 +-0.371037 1.364802 -0.436451 +-0.371037 1.364802 -0.53333 +-0.372684 1.383626 -0.53333 +-0.372684 1.383626 -0.436451 +-0.32135 1.382852 -0.436451 +-0.32135 1.382852 -0.53333 +-0.322329 1.358776 -0.53333 +-0.322329 1.358776 -0.436451 +-0.318098 1.365957 -0.465348 +-0.318098 1.365957 -0.504433 +-0.317703 1.375671 -0.504433 +-0.317703 1.375671 -0.465348 +-0.292828 1.369056 -0.465348 +-0.292828 1.369056 -0.504433 +-0.295371 1.359673 -0.504433 +-0.295371 1.359673 -0.465348 +-0.276567 1.347753 -0.465348 +-0.276567 1.347753 -0.504433 +-0.271438 1.356011 -0.504433 +-0.271438 1.356011 -0.465348 +-0.241559 1.326064 -0.465348 +-0.241559 1.326064 -0.504433 +-0.248921 1.319715 -0.504433 +-0.248921 1.319715 -0.465348 +-0.231199 1.287986 -0.465348 +-0.231199 1.287986 -0.504433 +-0.22232 1.291946 -0.504433 +-0.22232 1.291946 -0.465348 +-0.203517 1.147136 -0.465348 +-0.203517 1.147136 -0.504433 +-0.213238 1.147136 -0.504433 +-0.213238 1.147136 -0.465348 +-0.207471 1.224701 -0.465348 +-0.207471 1.224701 -0.504433 +-0.217162 1.223931 -0.504433 +-0.217162 1.223931 -0.465348 +-0.367107 1.213812 -0.456281 +-0.367107 1.213812 -0.5135 +-0.29124 1.213812 -0.5135 +-0.29124 1.213812 -0.456281 +-0.367107 1.137945 -0.456281 +-0.367107 1.137945 -0.5135 +-0.29124 1.137945 -0.5135 +-0.29124 1.137945 -0.456281 +-0.248852 1.277383 -0.493461 +-0.248852 1.274252 -0.4943 +-0.248852 1.271022 -0.494018 +-0.248852 1.268084 -0.492648 +-0.248852 1.265792 -0.490355 +-0.248852 1.264422 -0.487417 +-0.248852 1.264139 -0.484188 +-0.248852 1.264978 -0.481056 +-0.248852 1.266838 -0.4784 +-0.248852 1.269493 -0.476541 +-0.248852 1.272625 -0.475702 +-0.248852 1.275854 -0.475984 +-0.248852 1.278793 -0.477354 +-0.248852 1.281085 -0.479647 +-0.248852 1.282455 -0.482585 +-0.248852 1.282738 -0.485815 +-0.248852 1.281898 -0.488946 +-0.248852 1.280039 -0.491602 +-0.255417 1.286677 -0.513392 +-0.255417 1.276169 -0.516208 +-0.255417 1.265331 -0.515259 +-0.255417 1.255471 -0.510662 +-0.255417 1.247778 -0.502969 +-0.255417 1.24318 -0.493109 +-0.255417 1.242232 -0.482271 +-0.255417 1.245048 -0.471762 +-0.255417 1.251288 -0.462851 +-0.255417 1.2602 -0.45661 +-0.255417 1.270708 -0.453795 +-0.255417 1.281546 -0.454743 +-0.255417 1.291406 -0.459341 +-0.255417 1.299099 -0.467033 +-0.255417 1.303697 -0.476893 +-0.255417 1.304645 -0.487731 +-0.255417 1.301829 -0.49824 +-0.255417 1.295589 -0.507152 +-0.268548 1.295272 -0.531824 +-0.268548 1.277941 -0.536467 +-0.268548 1.260067 -0.534904 +-0.268548 1.243806 -0.527321 +-0.268548 1.231119 -0.514634 +-0.268548 1.223536 -0.498372 +-0.268548 1.221972 -0.480498 +-0.268548 1.226616 -0.463167 +-0.268548 1.236907 -0.44847 +-0.268548 1.251605 -0.438179 +-0.268548 1.268936 -0.433535 +-0.268548 1.28681 -0.435099 +-0.268548 1.303071 -0.442681 +-0.268548 1.315758 -0.455368 +-0.268548 1.323341 -0.47163 +-0.268548 1.324905 -0.489504 +-0.268548 1.320261 -0.506835 +-0.268548 1.30997 -0.521532 +-0.284304 1.301256 -0.544656 +-0.284304 1.279175 -0.550572 +-0.284304 1.256402 -0.54858 +-0.284304 1.235685 -0.538919 +-0.284304 1.219521 -0.522755 +-0.284304 1.20986 -0.502037 +-0.284304 1.207867 -0.479264 +-0.284304 1.213784 -0.457184 +-0.284304 1.226895 -0.438458 +-0.284304 1.245621 -0.425346 +-0.284304 1.267702 -0.41943 +-0.284304 1.290474 -0.421422 +-0.284304 1.311192 -0.431083 +-0.284304 1.327356 -0.447247 +-0.284304 1.337017 -0.467965 +-0.284304 1.339009 -0.490738 +-0.284304 1.333093 -0.512818 +-0.284304 1.319981 -0.531544 +-0.309251 1.307267 -0.557547 +-0.309251 1.280415 -0.564742 +-0.309251 1.252721 -0.562319 +-0.309251 1.227526 -0.55057 +-0.309251 1.207869 -0.530913 +-0.309251 1.196121 -0.505718 +-0.309251 1.193698 -0.478025 +-0.309251 1.200893 -0.451172 +-0.309251 1.216838 -0.4284 +-0.309251 1.23961 -0.412455 +-0.309251 1.266462 -0.40526 +-0.309251 1.294156 -0.407683 +-0.309251 1.31935 -0.419432 +-0.309251 1.339007 -0.439089 +-0.309251 1.350756 -0.464284 +-0.309251 1.353179 -0.491977 +-0.309251 1.330039 -0.541602 +-0.309251 1.345984 -0.51883 +-0.336824 1.311713 -0.567081 +-0.336824 1.281332 -0.575221 +-0.336824 1.249999 -0.57248 +-0.336824 1.221493 -0.559187 +-0.336824 1.199252 -0.536947 +-0.336824 1.18596 -0.508441 +-0.336824 1.183218 -0.477108 +-0.336824 1.191359 -0.446727 +-0.336824 1.209399 -0.420962 +-0.336824 1.235164 -0.402922 +-0.336824 1.265545 -0.394781 +-0.336824 1.296878 -0.397522 +-0.336824 1.325384 -0.410815 +-0.336824 1.347624 -0.433055 +-0.336824 1.360917 -0.461561 +-0.336824 1.363658 -0.492894 +-0.336824 1.355518 -0.523275 +-0.336824 1.337477 -0.54904 +-0.367024 1.312981 -0.5698 +-0.367024 1.281593 -0.578211 +-0.367024 1.249222 -0.575379 +-0.367024 1.219771 -0.561646 +-0.367024 1.196794 -0.538668 +-0.367024 1.183061 -0.509218 +-0.367024 1.180229 -0.476846 +-0.367024 1.188639 -0.445459 +-0.367024 1.207277 -0.41884 +-0.367024 1.233896 -0.400202 +-0.367024 1.265284 -0.391791 +-0.367024 1.297655 -0.394624 +-0.367024 1.327105 -0.408357 +-0.367024 1.350083 -0.431334 +-0.367024 1.363816 -0.460784 +-0.367024 1.366648 -0.493156 +-0.367024 1.339599 -0.551162 +-0.367024 1.358238 -0.524544 +-0.372276 1.310569 -0.564628 +-0.372276 1.281096 -0.572526 +-0.372276 1.250699 -0.569866 +-0.372276 1.223045 -0.556971 +-0.372276 1.201468 -0.535395 +-0.372276 1.188573 -0.507741 +-0.372276 1.185914 -0.477344 +-0.372276 1.193811 -0.44787 +-0.372276 1.211313 -0.422875 +-0.372276 1.236308 -0.405374 +-0.372276 1.265781 -0.397476 +-0.372276 1.296178 -0.400136 +-0.372276 1.323832 -0.413031 +-0.372276 1.345408 -0.434607 +-0.372276 1.358304 -0.462261 +-0.372276 1.360963 -0.492658 +-0.372276 1.335564 -0.547127 +-0.372276 1.353066 -0.522132 +numsurf 652 +SURF 0x30 +mat 1 +refs 4 +18 0 0 +0 0 0 +1 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +0 0 0 +18 0 0 +20 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +2 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +3 0 0 +21 0 0 +22 0 0 +4 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +4 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +5 0 0 +23 0 0 +24 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +6 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 1 +refs 4 +8 0 0 +7 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +9 0 0 +8 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +10 0 0 +9 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +10 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +29 0 0 +30 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +12 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +13 0 0 +31 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +32 0 0 +33 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +15 0 0 +33 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +17 0 0 +16 0 0 +34 0 0 +35 0 0 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +17 0 0 +35 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +36 0 0 +37 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +18 0 0 +37 0 0 +38 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +20 0 0 +38 0 0 +39 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +39 0 0 +40 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +22 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +41 0 0 +42 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +24 0 0 +42 0 0 +43 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +25 0 0 +43 0 0 +44 0 0 +SURF 0x30 +mat 1 +refs 4 +27 0 0 +26 0 0 +44 0 0 +45 0 0 +SURF 0x30 +mat 1 +refs 4 +28 0 0 +27 0 0 +45 0 0 +46 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +28 0 0 +46 0 0 +47 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +47 0 0 +48 0 0 +30 0 0 +SURF 0x30 +mat 1 +refs 4 +31 0 0 +30 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 1 +refs 4 +32 0 0 +31 0 0 +49 0 0 +50 0 0 +SURF 0x30 +mat 1 +refs 4 +32 0 0 +50 0 0 +51 0 0 +33 0 0 +SURF 0x30 +mat 1 +refs 4 +34 0 0 +33 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +34 0 0 +52 0 0 +53 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +35 0 0 +53 0 0 +36 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +55 0 0 +54 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +38 0 0 +37 0 0 +54 0 0 +56 0 0 +SURF 0x30 +mat 1 +refs 4 +39 0 0 +38 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 1 +refs 4 +39 0 0 +57 0 0 +58 0 0 +40 0 0 +SURF 0x30 +mat 1 +refs 4 +41 0 0 +40 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 1 +refs 4 +41 0 0 +59 0 0 +60 0 0 +42 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +42 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 1 +refs 4 +44 0 0 +43 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +44 0 0 +62 0 0 +63 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +45 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +46 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +65 0 0 +66 0 0 +48 0 0 +SURF 0x30 +mat 1 +refs 4 +49 0 0 +48 0 0 +66 0 0 +67 0 0 +SURF 0x30 +mat 1 +refs 4 +50 0 0 +49 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 1 +refs 4 +50 0 0 +68 0 0 +69 0 0 +51 0 0 +SURF 0x30 +mat 1 +refs 4 +52 0 0 +51 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 1 +refs 4 +53 0 0 +52 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +53 0 0 +71 0 0 +55 0 0 +SURF 0x30 +mat 1 +refs 4 +55 0 0 +72 0 0 +73 0 0 +54 0 0 +SURF 0x30 +mat 1 +refs 4 +56 0 0 +54 0 0 +73 0 0 +74 0 0 +SURF 0x30 +mat 1 +refs 4 +57 0 0 +56 0 0 +74 0 0 +75 0 0 +SURF 0x30 +mat 1 +refs 4 +57 0 0 +75 0 0 +76 0 0 +58 0 0 +SURF 0x30 +mat 1 +refs 4 +59 0 0 +58 0 0 +76 0 0 +77 0 0 +SURF 0x30 +mat 1 +refs 4 +59 0 0 +77 0 0 +78 0 0 +60 0 0 +SURF 0x30 +mat 1 +refs 4 +61 0 0 +60 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 1 +refs 4 +62 0 0 +61 0 0 +79 0 0 +80 0 0 +SURF 0x30 +mat 1 +refs 4 +63 0 0 +62 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 1 +refs 4 +64 0 0 +63 0 0 +81 0 0 +82 0 0 +SURF 0x30 +mat 1 +refs 4 +65 0 0 +64 0 0 +82 0 0 +83 0 0 +SURF 0x30 +mat 1 +refs 4 +65 0 0 +83 0 0 +84 0 0 +66 0 0 +SURF 0x30 +mat 1 +refs 4 +67 0 0 +66 0 0 +84 0 0 +85 0 0 +SURF 0x30 +mat 1 +refs 4 +68 0 0 +67 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 1 +refs 4 +68 0 0 +86 0 0 +87 0 0 +69 0 0 +SURF 0x30 +mat 1 +refs 4 +70 0 0 +69 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 1 +refs 4 +71 0 0 +70 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 1 +refs 4 +55 0 0 +71 0 0 +89 0 0 +72 0 0 +SURF 0x30 +mat 1 +refs 4 +72 0 0 +90 0 0 +91 0 0 +73 0 0 +SURF 0x30 +mat 1 +refs 4 +74 0 0 +73 0 0 +91 0 0 +92 0 0 +SURF 0x30 +mat 1 +refs 4 +75 0 0 +74 0 0 +92 0 0 +93 0 0 +SURF 0x30 +mat 1 +refs 4 +75 0 0 +93 0 0 +94 0 0 +76 0 0 +SURF 0x30 +mat 1 +refs 4 +77 0 0 +76 0 0 +94 0 0 +95 0 0 +SURF 0x30 +mat 1 +refs 4 +77 0 0 +95 0 0 +96 0 0 +78 0 0 +SURF 0x30 +mat 1 +refs 4 +79 0 0 +78 0 0 +96 0 0 +97 0 0 +SURF 0x30 +mat 1 +refs 4 +80 0 0 +79 0 0 +97 0 0 +98 0 0 +SURF 0x30 +mat 1 +refs 4 +81 0 0 +80 0 0 +98 0 0 +99 0 0 +SURF 0x30 +mat 1 +refs 4 +82 0 0 +81 0 0 +99 0 0 +100 0 0 +SURF 0x30 +mat 1 +refs 4 +83 0 0 +82 0 0 +100 0 0 +101 0 0 +SURF 0x30 +mat 1 +refs 4 +83 0 0 +101 0 0 +102 0 0 +84 0 0 +SURF 0x30 +mat 1 +refs 4 +85 0 0 +84 0 0 +102 0 0 +103 0 0 +SURF 0x30 +mat 1 +refs 4 +86 0 0 +85 0 0 +103 0 0 +104 0 0 +SURF 0x30 +mat 1 +refs 4 +86 0 0 +104 0 0 +105 0 0 +87 0 0 +SURF 0x30 +mat 1 +refs 4 +88 0 0 +87 0 0 +105 0 0 +106 0 0 +SURF 0x30 +mat 1 +refs 4 +89 0 0 +88 0 0 +106 0 0 +107 0 0 +SURF 0x30 +mat 1 +refs 4 +72 0 0 +89 0 0 +107 0 0 +90 0 0 +SURF 0x30 +mat 1 +refs 4 +90 0 0 +108 0 0 +109 0 0 +91 0 0 +SURF 0x30 +mat 1 +refs 4 +92 0 0 +91 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 1 +refs 4 +93 0 0 +92 0 0 +110 0 0 +111 0 0 +SURF 0x30 +mat 1 +refs 4 +93 0 0 +111 0 0 +112 0 0 +94 0 0 +SURF 0x30 +mat 1 +refs 4 +95 0 0 +94 0 0 +112 0 0 +113 0 0 +SURF 0x30 +mat 1 +refs 4 +95 0 0 +113 0 0 +114 0 0 +96 0 0 +SURF 0x30 +mat 1 +refs 4 +97 0 0 +96 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 1 +refs 4 +98 0 0 +97 0 0 +115 0 0 +116 0 0 +SURF 0x30 +mat 1 +refs 4 +99 0 0 +98 0 0 +116 0 0 +117 0 0 +SURF 0x30 +mat 1 +refs 4 +100 0 0 +99 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 1 +refs 4 +101 0 0 +100 0 0 +118 0 0 +119 0 0 +SURF 0x30 +mat 1 +refs 4 +101 0 0 +119 0 0 +120 0 0 +102 0 0 +SURF 0x30 +mat 1 +refs 4 +103 0 0 +102 0 0 +120 0 0 +121 0 0 +SURF 0x30 +mat 1 +refs 4 +104 0 0 +103 0 0 +121 0 0 +122 0 0 +SURF 0x30 +mat 1 +refs 4 +104 0 0 +122 0 0 +123 0 0 +105 0 0 +SURF 0x30 +mat 1 +refs 4 +106 0 0 +105 0 0 +123 0 0 +124 0 0 +SURF 0x30 +mat 1 +refs 4 +107 0 0 +106 0 0 +124 0 0 +125 0 0 +SURF 0x30 +mat 1 +refs 4 +90 0 0 +107 0 0 +125 0 0 +108 0 0 +SURF 0x30 +mat 1 +refs 4 +108 0 0 +126 0 0 +127 0 0 +109 0 0 +SURF 0x30 +mat 1 +refs 4 +110 0 0 +109 0 0 +127 0 0 +128 0 0 +SURF 0x30 +mat 1 +refs 4 +111 0 0 +110 0 0 +128 0 0 +129 0 0 +SURF 0x30 +mat 1 +refs 4 +111 0 0 +129 0 0 +130 0 0 +112 0 0 +SURF 0x30 +mat 1 +refs 4 +113 0 0 +112 0 0 +130 0 0 +131 0 0 +SURF 0x30 +mat 1 +refs 4 +113 0 0 +131 0 0 +132 0 0 +114 0 0 +SURF 0x30 +mat 1 +refs 4 +115 0 0 +114 0 0 +132 0 0 +133 0 0 +SURF 0x30 +mat 1 +refs 4 +116 0 0 +115 0 0 +133 0 0 +134 0 0 +SURF 0x30 +mat 1 +refs 4 +117 0 0 +116 0 0 +134 0 0 +135 0 0 +SURF 0x30 +mat 1 +refs 4 +118 0 0 +117 0 0 +135 0 0 +136 0 0 +SURF 0x30 +mat 1 +refs 4 +119 0 0 +118 0 0 +136 0 0 +137 0 0 +SURF 0x30 +mat 1 +refs 4 +119 0 0 +137 0 0 +138 0 0 +120 0 0 +SURF 0x30 +mat 1 +refs 4 +121 0 0 +120 0 0 +138 0 0 +139 0 0 +SURF 0x30 +mat 1 +refs 4 +122 0 0 +121 0 0 +139 0 0 +140 0 0 +SURF 0x30 +mat 1 +refs 4 +122 0 0 +140 0 0 +141 0 0 +123 0 0 +SURF 0x30 +mat 1 +refs 4 +124 0 0 +123 0 0 +141 0 0 +142 0 0 +SURF 0x30 +mat 1 +refs 4 +125 0 0 +124 0 0 +142 0 0 +143 0 0 +SURF 0x30 +mat 1 +refs 4 +108 0 0 +125 0 0 +143 0 0 +126 0 0 +SURF 0x30 +mat 1 +refs 3 +129 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 1 +refs 3 +130 0 0 +129 0 0 +127 0 0 +SURF 0x30 +mat 1 +refs 3 +130 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 1 +refs 3 +131 0 0 +130 0 0 +126 0 0 +SURF 0x30 +mat 1 +refs 3 +131 0 0 +126 0 0 +143 0 0 +SURF 0x30 +mat 1 +refs 3 +132 0 0 +131 0 0 +143 0 0 +SURF 0x30 +mat 1 +refs 3 +132 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 1 +refs 3 +133 0 0 +132 0 0 +142 0 0 +SURF 0x30 +mat 1 +refs 3 +133 0 0 +142 0 0 +141 0 0 +SURF 0x30 +mat 1 +refs 3 +134 0 0 +133 0 0 +141 0 0 +SURF 0x30 +mat 1 +refs 3 +134 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 1 +refs 3 +135 0 0 +134 0 0 +140 0 0 +SURF 0x30 +mat 1 +refs 3 +135 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 1 +refs 3 +136 0 0 +135 0 0 +139 0 0 +SURF 0x30 +mat 1 +refs 3 +136 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 1 +refs 3 +137 0 0 +136 0 0 +138 0 0 +SURF 0x30 +mat 1 +refs 4 +146 0 0 +147 0 0 +144 0 0 +145 0 0 +SURF 0x30 +mat 1 +refs 4 +148 0 0 +151 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 1 +refs 4 +144 0 0 +148 0 0 +149 0 0 +145 0 0 +SURF 0x30 +mat 1 +refs 4 +145 0 0 +149 0 0 +150 0 0 +146 0 0 +SURF 0x30 +mat 1 +refs 4 +146 0 0 +150 0 0 +151 0 0 +147 0 0 +SURF 0x30 +mat 1 +refs 4 +147 0 0 +151 0 0 +148 0 0 +144 0 0 +SURF 0x30 +mat 1 +refs 4 +156 0 0 +152 0 0 +155 0 0 +159 0 0 +SURF 0x30 +mat 1 +refs 4 +157 0 0 +153 0 0 +152 0 0 +156 0 0 +SURF 0x30 +mat 1 +refs 4 +158 0 0 +154 0 0 +153 0 0 +157 0 0 +SURF 0x30 +mat 1 +refs 4 +159 0 0 +155 0 0 +154 0 0 +158 0 0 +SURF 0x30 +mat 1 +refs 4 +157 0 0 +156 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 1 +refs 4 +154 0 0 +155 0 0 +160 0 0 +161 0 0 +SURF 0x30 +mat 1 +refs 4 +153 0 0 +154 0 0 +161 0 0 +162 0 0 +SURF 0x30 +mat 1 +refs 4 +152 0 0 +153 0 0 +162 0 0 +163 0 0 +SURF 0x30 +mat 1 +refs 4 +155 0 0 +152 0 0 +163 0 0 +160 0 0 +SURF 0x30 +mat 1 +refs 4 +160 0 0 +163 0 0 +164 0 0 +167 0 0 +SURF 0x30 +mat 1 +refs 4 +163 0 0 +162 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 1 +refs 4 +162 0 0 +161 0 0 +166 0 0 +165 0 0 +SURF 0x30 +mat 1 +refs 4 +161 0 0 +160 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 1 +refs 4 +166 0 0 +167 0 0 +168 0 0 +169 0 0 +SURF 0x30 +mat 1 +refs 4 +165 0 0 +166 0 0 +169 0 0 +170 0 0 +SURF 0x30 +mat 1 +refs 4 +164 0 0 +165 0 0 +170 0 0 +171 0 0 +SURF 0x30 +mat 1 +refs 4 +167 0 0 +164 0 0 +171 0 0 +168 0 0 +SURF 0x30 +mat 1 +refs 4 +168 0 0 +171 0 0 +172 0 0 +175 0 0 +SURF 0x30 +mat 1 +refs 4 +171 0 0 +170 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 1 +refs 4 +170 0 0 +169 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 1 +refs 4 +169 0 0 +168 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 1 +refs 4 +174 0 0 +175 0 0 +176 0 0 +177 0 0 +SURF 0x30 +mat 1 +refs 4 +173 0 0 +174 0 0 +177 0 0 +178 0 0 +SURF 0x30 +mat 1 +refs 4 +172 0 0 +173 0 0 +178 0 0 +179 0 0 +SURF 0x30 +mat 1 +refs 4 +175 0 0 +172 0 0 +179 0 0 +176 0 0 +SURF 0x30 +mat 1 +refs 4 +176 0 0 +179 0 0 +180 0 0 +183 0 0 +SURF 0x30 +mat 1 +refs 4 +179 0 0 +178 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 1 +refs 4 +178 0 0 +177 0 0 +182 0 0 +181 0 0 +SURF 0x30 +mat 1 +refs 4 +177 0 0 +176 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 1 +refs 4 +182 0 0 +183 0 0 +184 0 0 +185 0 0 +SURF 0x30 +mat 1 +refs 4 +181 0 0 +182 0 0 +185 0 0 +186 0 0 +SURF 0x30 +mat 1 +refs 4 +180 0 0 +181 0 0 +186 0 0 +187 0 0 +SURF 0x30 +mat 1 +refs 4 +183 0 0 +180 0 0 +187 0 0 +184 0 0 +SURF 0x30 +mat 1 +refs 4 +184 0 0 +187 0 0 +186 0 0 +185 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +188 0 0 +189 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +189 0 0 +190 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +190 0 0 +191 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +191 0 0 +192 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +192 0 0 +193 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +193 0 0 +194 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +194 0 0 +195 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +195 0 0 +196 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +196 0 0 +188 0 0 +SURF 0x30 +mat 1 +refs 4 +188 0 0 +197 0 0 +198 0 0 +189 0 0 +SURF 0x30 +mat 1 +refs 4 +189 0 0 +198 0 0 +199 0 0 +190 0 0 +SURF 0x30 +mat 1 +refs 4 +190 0 0 +199 0 0 +200 0 0 +191 0 0 +SURF 0x30 +mat 1 +refs 4 +191 0 0 +200 0 0 +201 0 0 +192 0 0 +SURF 0x30 +mat 1 +refs 4 +192 0 0 +201 0 0 +202 0 0 +193 0 0 +SURF 0x30 +mat 1 +refs 4 +193 0 0 +202 0 0 +203 0 0 +194 0 0 +SURF 0x30 +mat 1 +refs 4 +194 0 0 +203 0 0 +204 0 0 +195 0 0 +SURF 0x30 +mat 1 +refs 4 +195 0 0 +204 0 0 +205 0 0 +196 0 0 +SURF 0x30 +mat 1 +refs 4 +196 0 0 +205 0 0 +197 0 0 +188 0 0 +SURF 0x30 +mat 1 +refs 4 +197 0 0 +205 0 0 +207 0 0 +215 0 0 +SURF 0x30 +mat 1 +refs 4 +205 0 0 +204 0 0 +208 0 0 +207 0 0 +SURF 0x30 +mat 1 +refs 4 +204 0 0 +203 0 0 +209 0 0 +208 0 0 +SURF 0x30 +mat 1 +refs 4 +203 0 0 +202 0 0 +210 0 0 +209 0 0 +SURF 0x30 +mat 1 +refs 4 +202 0 0 +201 0 0 +211 0 0 +210 0 0 +SURF 0x30 +mat 1 +refs 4 +201 0 0 +200 0 0 +212 0 0 +211 0 0 +SURF 0x30 +mat 1 +refs 4 +200 0 0 +199 0 0 +213 0 0 +212 0 0 +SURF 0x30 +mat 1 +refs 4 +199 0 0 +198 0 0 +214 0 0 +213 0 0 +SURF 0x30 +mat 1 +refs 4 +198 0 0 +197 0 0 +215 0 0 +214 0 0 +SURF 0x30 +mat 1 +refs 4 +214 0 0 +215 0 0 +216 0 0 +217 0 0 +SURF 0x30 +mat 1 +refs 4 +213 0 0 +214 0 0 +217 0 0 +218 0 0 +SURF 0x30 +mat 1 +refs 4 +212 0 0 +213 0 0 +218 0 0 +219 0 0 +SURF 0x30 +mat 1 +refs 4 +211 0 0 +212 0 0 +219 0 0 +220 0 0 +SURF 0x30 +mat 1 +refs 4 +210 0 0 +211 0 0 +220 0 0 +221 0 0 +SURF 0x30 +mat 1 +refs 4 +209 0 0 +210 0 0 +221 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 4 +208 0 0 +209 0 0 +222 0 0 +223 0 0 +SURF 0x30 +mat 1 +refs 4 +207 0 0 +208 0 0 +223 0 0 +224 0 0 +SURF 0x30 +mat 1 +refs 4 +215 0 0 +207 0 0 +224 0 0 +216 0 0 +SURF 0x30 +mat 1 +refs 4 +216 0 0 +224 0 0 +225 0 0 +233 0 0 +SURF 0x30 +mat 1 +refs 4 +224 0 0 +223 0 0 +226 0 0 +225 0 0 +SURF 0x30 +mat 1 +refs 4 +223 0 0 +222 0 0 +227 0 0 +226 0 0 +SURF 0x30 +mat 1 +refs 4 +222 0 0 +221 0 0 +228 0 0 +227 0 0 +SURF 0x30 +mat 1 +refs 4 +221 0 0 +220 0 0 +229 0 0 +228 0 0 +SURF 0x30 +mat 1 +refs 4 +220 0 0 +219 0 0 +230 0 0 +229 0 0 +SURF 0x30 +mat 1 +refs 4 +219 0 0 +218 0 0 +231 0 0 +230 0 0 +SURF 0x30 +mat 1 +refs 4 +218 0 0 +217 0 0 +232 0 0 +231 0 0 +SURF 0x30 +mat 1 +refs 4 +217 0 0 +216 0 0 +233 0 0 +232 0 0 +SURF 0x30 +mat 1 +refs 4 +232 0 0 +233 0 0 +234 0 0 +235 0 0 +SURF 0x30 +mat 1 +refs 4 +231 0 0 +232 0 0 +235 0 0 +236 0 0 +SURF 0x30 +mat 1 +refs 4 +230 0 0 +231 0 0 +236 0 0 +237 0 0 +SURF 0x30 +mat 1 +refs 4 +229 0 0 +230 0 0 +237 0 0 +238 0 0 +SURF 0x30 +mat 1 +refs 4 +228 0 0 +229 0 0 +238 0 0 +239 0 0 +SURF 0x30 +mat 1 +refs 4 +227 0 0 +228 0 0 +239 0 0 +240 0 0 +SURF 0x30 +mat 1 +refs 4 +226 0 0 +227 0 0 +240 0 0 +241 0 0 +SURF 0x30 +mat 1 +refs 4 +225 0 0 +226 0 0 +241 0 0 +242 0 0 +SURF 0x30 +mat 1 +refs 4 +233 0 0 +225 0 0 +242 0 0 +234 0 0 +SURF 0x30 +mat 1 +refs 4 +234 0 0 +242 0 0 +244 0 0 +252 0 0 +SURF 0x30 +mat 1 +refs 4 +242 0 0 +241 0 0 +245 0 0 +244 0 0 +SURF 0x30 +mat 1 +refs 4 +241 0 0 +240 0 0 +246 0 0 +245 0 0 +SURF 0x30 +mat 1 +refs 4 +240 0 0 +239 0 0 +247 0 0 +246 0 0 +SURF 0x30 +mat 1 +refs 4 +239 0 0 +238 0 0 +248 0 0 +247 0 0 +SURF 0x30 +mat 1 +refs 4 +238 0 0 +237 0 0 +249 0 0 +248 0 0 +SURF 0x30 +mat 1 +refs 4 +237 0 0 +236 0 0 +250 0 0 +249 0 0 +SURF 0x30 +mat 1 +refs 4 +236 0 0 +235 0 0 +251 0 0 +250 0 0 +SURF 0x30 +mat 1 +refs 4 +235 0 0 +234 0 0 +252 0 0 +251 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +251 0 0 +252 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +250 0 0 +251 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +249 0 0 +250 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +248 0 0 +249 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +247 0 0 +248 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +246 0 0 +247 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +245 0 0 +246 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +244 0 0 +245 0 0 +SURF 0x30 +mat 1 +refs 3 +243 0 0 +252 0 0 +244 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +261 0 0 +253 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +260 0 0 +261 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +259 0 0 +260 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +258 0 0 +259 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +257 0 0 +258 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +256 0 0 +257 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +255 0 0 +256 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +254 0 0 +255 0 0 +SURF 0x30 +mat 1 +refs 3 +262 0 0 +253 0 0 +254 0 0 +SURF 0x30 +mat 1 +refs 4 +270 0 0 +254 0 0 +253 0 0 +271 0 0 +SURF 0x30 +mat 1 +refs 4 +269 0 0 +255 0 0 +254 0 0 +270 0 0 +SURF 0x30 +mat 1 +refs 4 +268 0 0 +256 0 0 +255 0 0 +269 0 0 +SURF 0x30 +mat 1 +refs 4 +267 0 0 +257 0 0 +256 0 0 +268 0 0 +SURF 0x30 +mat 1 +refs 4 +266 0 0 +258 0 0 +257 0 0 +267 0 0 +SURF 0x30 +mat 1 +refs 4 +265 0 0 +259 0 0 +258 0 0 +266 0 0 +SURF 0x30 +mat 1 +refs 4 +264 0 0 +260 0 0 +259 0 0 +265 0 0 +SURF 0x30 +mat 1 +refs 4 +263 0 0 +261 0 0 +260 0 0 +264 0 0 +SURF 0x30 +mat 1 +refs 4 +271 0 0 +253 0 0 +261 0 0 +263 0 0 +SURF 0x30 +mat 1 +refs 4 +272 0 0 +271 0 0 +263 0 0 +280 0 0 +SURF 0x30 +mat 1 +refs 4 +280 0 0 +263 0 0 +264 0 0 +279 0 0 +SURF 0x30 +mat 1 +refs 4 +279 0 0 +264 0 0 +265 0 0 +278 0 0 +SURF 0x30 +mat 1 +refs 4 +278 0 0 +265 0 0 +266 0 0 +277 0 0 +SURF 0x30 +mat 1 +refs 4 +277 0 0 +266 0 0 +267 0 0 +276 0 0 +SURF 0x30 +mat 1 +refs 4 +276 0 0 +267 0 0 +268 0 0 +275 0 0 +SURF 0x30 +mat 1 +refs 4 +275 0 0 +268 0 0 +269 0 0 +274 0 0 +SURF 0x30 +mat 1 +refs 4 +274 0 0 +269 0 0 +270 0 0 +273 0 0 +SURF 0x30 +mat 1 +refs 4 +273 0 0 +270 0 0 +271 0 0 +272 0 0 +SURF 0x30 +mat 1 +refs 4 +288 0 0 +273 0 0 +272 0 0 +289 0 0 +SURF 0x30 +mat 1 +refs 4 +287 0 0 +274 0 0 +273 0 0 +288 0 0 +SURF 0x30 +mat 1 +refs 4 +286 0 0 +275 0 0 +274 0 0 +287 0 0 +SURF 0x30 +mat 1 +refs 4 +285 0 0 +276 0 0 +275 0 0 +286 0 0 +SURF 0x30 +mat 1 +refs 4 +284 0 0 +277 0 0 +276 0 0 +285 0 0 +SURF 0x30 +mat 1 +refs 4 +283 0 0 +278 0 0 +277 0 0 +284 0 0 +SURF 0x30 +mat 1 +refs 4 +282 0 0 +279 0 0 +278 0 0 +283 0 0 +SURF 0x30 +mat 1 +refs 4 +281 0 0 +280 0 0 +279 0 0 +282 0 0 +SURF 0x30 +mat 1 +refs 4 +289 0 0 +272 0 0 +280 0 0 +281 0 0 +SURF 0x30 +mat 1 +refs 4 +290 0 0 +289 0 0 +281 0 0 +298 0 0 +SURF 0x30 +mat 1 +refs 4 +298 0 0 +281 0 0 +282 0 0 +297 0 0 +SURF 0x30 +mat 1 +refs 4 +297 0 0 +282 0 0 +283 0 0 +296 0 0 +SURF 0x30 +mat 1 +refs 4 +296 0 0 +283 0 0 +284 0 0 +295 0 0 +SURF 0x30 +mat 1 +refs 4 +295 0 0 +284 0 0 +285 0 0 +294 0 0 +SURF 0x30 +mat 1 +refs 4 +294 0 0 +285 0 0 +286 0 0 +293 0 0 +SURF 0x30 +mat 1 +refs 4 +293 0 0 +286 0 0 +287 0 0 +292 0 0 +SURF 0x30 +mat 1 +refs 4 +292 0 0 +287 0 0 +288 0 0 +291 0 0 +SURF 0x30 +mat 1 +refs 4 +291 0 0 +288 0 0 +289 0 0 +290 0 0 +SURF 0x30 +mat 1 +refs 4 +307 0 0 +291 0 0 +290 0 0 +308 0 0 +SURF 0x30 +mat 1 +refs 4 +306 0 0 +292 0 0 +291 0 0 +307 0 0 +SURF 0x30 +mat 1 +refs 4 +305 0 0 +293 0 0 +292 0 0 +306 0 0 +SURF 0x30 +mat 1 +refs 4 +304 0 0 +294 0 0 +293 0 0 +305 0 0 +SURF 0x30 +mat 1 +refs 4 +303 0 0 +295 0 0 +294 0 0 +304 0 0 +SURF 0x30 +mat 1 +refs 4 +302 0 0 +296 0 0 +295 0 0 +303 0 0 +SURF 0x30 +mat 1 +refs 4 +301 0 0 +297 0 0 +296 0 0 +302 0 0 +SURF 0x30 +mat 1 +refs 4 +300 0 0 +298 0 0 +297 0 0 +301 0 0 +SURF 0x30 +mat 1 +refs 4 +308 0 0 +290 0 0 +298 0 0 +300 0 0 +SURF 0x30 +mat 1 +refs 4 +309 0 0 +317 0 0 +308 0 0 +300 0 0 +SURF 0x30 +mat 1 +refs 4 +310 0 0 +309 0 0 +300 0 0 +301 0 0 +SURF 0x30 +mat 1 +refs 4 +311 0 0 +310 0 0 +301 0 0 +302 0 0 +SURF 0x30 +mat 1 +refs 4 +312 0 0 +311 0 0 +302 0 0 +303 0 0 +SURF 0x30 +mat 1 +refs 4 +313 0 0 +312 0 0 +303 0 0 +304 0 0 +SURF 0x30 +mat 1 +refs 4 +314 0 0 +313 0 0 +304 0 0 +305 0 0 +SURF 0x30 +mat 1 +refs 4 +315 0 0 +314 0 0 +305 0 0 +306 0 0 +SURF 0x30 +mat 1 +refs 4 +316 0 0 +315 0 0 +306 0 0 +307 0 0 +SURF 0x30 +mat 1 +refs 4 +317 0 0 +316 0 0 +307 0 0 +308 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +317 0 0 +309 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +309 0 0 +310 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +310 0 0 +311 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +311 0 0 +312 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +312 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +313 0 0 +314 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +314 0 0 +315 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +315 0 0 +316 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +316 0 0 +317 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +318 0 0 +319 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +319 0 0 +320 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +320 0 0 +321 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +321 0 0 +322 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +322 0 0 +323 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +323 0 0 +324 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +324 0 0 +325 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +325 0 0 +326 0 0 +SURF 0x30 +mat 1 +refs 3 +336 0 0 +326 0 0 +318 0 0 +SURF 0x30 +mat 1 +refs 4 +318 0 0 +327 0 0 +328 0 0 +319 0 0 +SURF 0x30 +mat 1 +refs 4 +319 0 0 +328 0 0 +329 0 0 +320 0 0 +SURF 0x30 +mat 1 +refs 4 +320 0 0 +329 0 0 +330 0 0 +321 0 0 +SURF 0x30 +mat 1 +refs 4 +321 0 0 +330 0 0 +331 0 0 +322 0 0 +SURF 0x30 +mat 1 +refs 4 +322 0 0 +331 0 0 +332 0 0 +323 0 0 +SURF 0x30 +mat 1 +refs 4 +323 0 0 +332 0 0 +333 0 0 +324 0 0 +SURF 0x30 +mat 1 +refs 4 +324 0 0 +333 0 0 +334 0 0 +325 0 0 +SURF 0x30 +mat 1 +refs 4 +325 0 0 +334 0 0 +335 0 0 +326 0 0 +SURF 0x30 +mat 1 +refs 4 +326 0 0 +335 0 0 +327 0 0 +318 0 0 +SURF 0x30 +mat 1 +refs 4 +327 0 0 +335 0 0 +337 0 0 +345 0 0 +SURF 0x30 +mat 1 +refs 4 +335 0 0 +334 0 0 +338 0 0 +337 0 0 +SURF 0x30 +mat 1 +refs 4 +334 0 0 +333 0 0 +339 0 0 +338 0 0 +SURF 0x30 +mat 1 +refs 4 +333 0 0 +332 0 0 +340 0 0 +339 0 0 +SURF 0x30 +mat 1 +refs 4 +332 0 0 +331 0 0 +341 0 0 +340 0 0 +SURF 0x30 +mat 1 +refs 4 +331 0 0 +330 0 0 +342 0 0 +341 0 0 +SURF 0x30 +mat 1 +refs 4 +330 0 0 +329 0 0 +343 0 0 +342 0 0 +SURF 0x30 +mat 1 +refs 4 +329 0 0 +328 0 0 +344 0 0 +343 0 0 +SURF 0x30 +mat 1 +refs 4 +328 0 0 +327 0 0 +345 0 0 +344 0 0 +SURF 0x30 +mat 1 +refs 4 +344 0 0 +345 0 0 +346 0 0 +347 0 0 +SURF 0x30 +mat 1 +refs 4 +343 0 0 +344 0 0 +347 0 0 +348 0 0 +SURF 0x30 +mat 1 +refs 4 +342 0 0 +343 0 0 +348 0 0 +349 0 0 +SURF 0x30 +mat 1 +refs 4 +341 0 0 +342 0 0 +349 0 0 +350 0 0 +SURF 0x30 +mat 1 +refs 4 +340 0 0 +341 0 0 +350 0 0 +351 0 0 +SURF 0x30 +mat 1 +refs 4 +339 0 0 +340 0 0 +351 0 0 +352 0 0 +SURF 0x30 +mat 1 +refs 4 +338 0 0 +339 0 0 +352 0 0 +353 0 0 +SURF 0x30 +mat 1 +refs 4 +337 0 0 +338 0 0 +353 0 0 +354 0 0 +SURF 0x30 +mat 1 +refs 4 +345 0 0 +337 0 0 +354 0 0 +346 0 0 +SURF 0x30 +mat 1 +refs 4 +346 0 0 +354 0 0 +355 0 0 +363 0 0 +SURF 0x30 +mat 1 +refs 4 +354 0 0 +353 0 0 +356 0 0 +355 0 0 +SURF 0x30 +mat 1 +refs 4 +353 0 0 +352 0 0 +357 0 0 +356 0 0 +SURF 0x30 +mat 1 +refs 4 +352 0 0 +351 0 0 +358 0 0 +357 0 0 +SURF 0x30 +mat 1 +refs 4 +351 0 0 +350 0 0 +359 0 0 +358 0 0 +SURF 0x30 +mat 1 +refs 4 +350 0 0 +349 0 0 +360 0 0 +359 0 0 +SURF 0x30 +mat 1 +refs 4 +349 0 0 +348 0 0 +361 0 0 +360 0 0 +SURF 0x30 +mat 1 +refs 4 +348 0 0 +347 0 0 +362 0 0 +361 0 0 +SURF 0x30 +mat 1 +refs 4 +347 0 0 +346 0 0 +363 0 0 +362 0 0 +SURF 0x30 +mat 1 +refs 4 +362 0 0 +363 0 0 +364 0 0 +365 0 0 +SURF 0x30 +mat 1 +refs 4 +361 0 0 +362 0 0 +365 0 0 +366 0 0 +SURF 0x30 +mat 1 +refs 4 +360 0 0 +361 0 0 +366 0 0 +367 0 0 +SURF 0x30 +mat 1 +refs 4 +359 0 0 +360 0 0 +367 0 0 +368 0 0 +SURF 0x30 +mat 1 +refs 4 +358 0 0 +359 0 0 +368 0 0 +369 0 0 +SURF 0x30 +mat 1 +refs 4 +357 0 0 +358 0 0 +369 0 0 +370 0 0 +SURF 0x30 +mat 1 +refs 4 +356 0 0 +357 0 0 +370 0 0 +371 0 0 +SURF 0x30 +mat 1 +refs 4 +355 0 0 +356 0 0 +371 0 0 +372 0 0 +SURF 0x30 +mat 1 +refs 4 +363 0 0 +355 0 0 +372 0 0 +364 0 0 +SURF 0x30 +mat 1 +refs 4 +364 0 0 +372 0 0 +374 0 0 +382 0 0 +SURF 0x30 +mat 1 +refs 4 +372 0 0 +371 0 0 +375 0 0 +374 0 0 +SURF 0x30 +mat 1 +refs 4 +371 0 0 +370 0 0 +376 0 0 +375 0 0 +SURF 0x30 +mat 1 +refs 4 +370 0 0 +369 0 0 +377 0 0 +376 0 0 +SURF 0x30 +mat 1 +refs 4 +369 0 0 +368 0 0 +378 0 0 +377 0 0 +SURF 0x30 +mat 1 +refs 4 +368 0 0 +367 0 0 +379 0 0 +378 0 0 +SURF 0x30 +mat 1 +refs 4 +367 0 0 +366 0 0 +380 0 0 +379 0 0 +SURF 0x30 +mat 1 +refs 4 +366 0 0 +365 0 0 +381 0 0 +380 0 0 +SURF 0x30 +mat 1 +refs 4 +365 0 0 +364 0 0 +382 0 0 +381 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +381 0 0 +382 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +380 0 0 +381 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +379 0 0 +380 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +378 0 0 +379 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +377 0 0 +378 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +376 0 0 +377 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +375 0 0 +376 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +374 0 0 +375 0 0 +SURF 0x30 +mat 1 +refs 3 +373 0 0 +382 0 0 +374 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +391 0 0 +383 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +390 0 0 +391 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +389 0 0 +390 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +388 0 0 +389 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +387 0 0 +388 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +386 0 0 +387 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +385 0 0 +386 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +384 0 0 +385 0 0 +SURF 0x30 +mat 1 +refs 3 +392 0 0 +383 0 0 +384 0 0 +SURF 0x30 +mat 1 +refs 4 +400 0 0 +384 0 0 +383 0 0 +401 0 0 +SURF 0x30 +mat 1 +refs 4 +399 0 0 +385 0 0 +384 0 0 +400 0 0 +SURF 0x30 +mat 1 +refs 4 +398 0 0 +386 0 0 +385 0 0 +399 0 0 +SURF 0x30 +mat 1 +refs 4 +397 0 0 +387 0 0 +386 0 0 +398 0 0 +SURF 0x30 +mat 1 +refs 4 +396 0 0 +388 0 0 +387 0 0 +397 0 0 +SURF 0x30 +mat 1 +refs 4 +395 0 0 +389 0 0 +388 0 0 +396 0 0 +SURF 0x30 +mat 1 +refs 4 +394 0 0 +390 0 0 +389 0 0 +395 0 0 +SURF 0x30 +mat 1 +refs 4 +393 0 0 +391 0 0 +390 0 0 +394 0 0 +SURF 0x30 +mat 1 +refs 4 +401 0 0 +383 0 0 +391 0 0 +393 0 0 +SURF 0x30 +mat 1 +refs 4 +402 0 0 +401 0 0 +393 0 0 +410 0 0 +SURF 0x30 +mat 1 +refs 4 +410 0 0 +393 0 0 +394 0 0 +409 0 0 +SURF 0x30 +mat 1 +refs 4 +409 0 0 +394 0 0 +395 0 0 +408 0 0 +SURF 0x30 +mat 1 +refs 4 +408 0 0 +395 0 0 +396 0 0 +407 0 0 +SURF 0x30 +mat 1 +refs 4 +407 0 0 +396 0 0 +397 0 0 +406 0 0 +SURF 0x30 +mat 1 +refs 4 +406 0 0 +397 0 0 +398 0 0 +405 0 0 +SURF 0x30 +mat 1 +refs 4 +405 0 0 +398 0 0 +399 0 0 +404 0 0 +SURF 0x30 +mat 1 +refs 4 +404 0 0 +399 0 0 +400 0 0 +403 0 0 +SURF 0x30 +mat 1 +refs 4 +403 0 0 +400 0 0 +401 0 0 +402 0 0 +SURF 0x30 +mat 1 +refs 4 +418 0 0 +403 0 0 +402 0 0 +419 0 0 +SURF 0x30 +mat 1 +refs 4 +417 0 0 +404 0 0 +403 0 0 +418 0 0 +SURF 0x30 +mat 1 +refs 4 +416 0 0 +405 0 0 +404 0 0 +417 0 0 +SURF 0x30 +mat 1 +refs 4 +415 0 0 +406 0 0 +405 0 0 +416 0 0 +SURF 0x30 +mat 1 +refs 4 +414 0 0 +407 0 0 +406 0 0 +415 0 0 +SURF 0x30 +mat 1 +refs 4 +413 0 0 +408 0 0 +407 0 0 +414 0 0 +SURF 0x30 +mat 1 +refs 4 +412 0 0 +409 0 0 +408 0 0 +413 0 0 +SURF 0x30 +mat 1 +refs 4 +411 0 0 +410 0 0 +409 0 0 +412 0 0 +SURF 0x30 +mat 1 +refs 4 +419 0 0 +402 0 0 +410 0 0 +411 0 0 +SURF 0x30 +mat 1 +refs 4 +420 0 0 +419 0 0 +411 0 0 +428 0 0 +SURF 0x30 +mat 1 +refs 4 +428 0 0 +411 0 0 +412 0 0 +427 0 0 +SURF 0x30 +mat 1 +refs 4 +427 0 0 +412 0 0 +413 0 0 +426 0 0 +SURF 0x30 +mat 1 +refs 4 +426 0 0 +413 0 0 +414 0 0 +425 0 0 +SURF 0x30 +mat 1 +refs 4 +425 0 0 +414 0 0 +415 0 0 +424 0 0 +SURF 0x30 +mat 1 +refs 4 +424 0 0 +415 0 0 +416 0 0 +423 0 0 +SURF 0x30 +mat 1 +refs 4 +423 0 0 +416 0 0 +417 0 0 +422 0 0 +SURF 0x30 +mat 1 +refs 4 +422 0 0 +417 0 0 +418 0 0 +421 0 0 +SURF 0x30 +mat 1 +refs 4 +421 0 0 +418 0 0 +419 0 0 +420 0 0 +SURF 0x30 +mat 1 +refs 4 +437 0 0 +421 0 0 +420 0 0 +438 0 0 +SURF 0x30 +mat 1 +refs 4 +436 0 0 +422 0 0 +421 0 0 +437 0 0 +SURF 0x30 +mat 1 +refs 4 +435 0 0 +423 0 0 +422 0 0 +436 0 0 +SURF 0x30 +mat 1 +refs 4 +434 0 0 +424 0 0 +423 0 0 +435 0 0 +SURF 0x30 +mat 1 +refs 4 +433 0 0 +425 0 0 +424 0 0 +434 0 0 +SURF 0x30 +mat 1 +refs 4 +432 0 0 +426 0 0 +425 0 0 +433 0 0 +SURF 0x30 +mat 1 +refs 4 +431 0 0 +427 0 0 +426 0 0 +432 0 0 +SURF 0x30 +mat 1 +refs 4 +430 0 0 +428 0 0 +427 0 0 +431 0 0 +SURF 0x30 +mat 1 +refs 4 +438 0 0 +420 0 0 +428 0 0 +430 0 0 +SURF 0x30 +mat 1 +refs 4 +439 0 0 +447 0 0 +438 0 0 +430 0 0 +SURF 0x30 +mat 1 +refs 4 +440 0 0 +439 0 0 +430 0 0 +431 0 0 +SURF 0x30 +mat 1 +refs 4 +441 0 0 +440 0 0 +431 0 0 +432 0 0 +SURF 0x30 +mat 1 +refs 4 +442 0 0 +441 0 0 +432 0 0 +433 0 0 +SURF 0x30 +mat 1 +refs 4 +443 0 0 +442 0 0 +433 0 0 +434 0 0 +SURF 0x30 +mat 1 +refs 4 +444 0 0 +443 0 0 +434 0 0 +435 0 0 +SURF 0x30 +mat 1 +refs 4 +445 0 0 +444 0 0 +435 0 0 +436 0 0 +SURF 0x30 +mat 1 +refs 4 +446 0 0 +445 0 0 +436 0 0 +437 0 0 +SURF 0x30 +mat 1 +refs 4 +447 0 0 +446 0 0 +437 0 0 +438 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +447 0 0 +439 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +439 0 0 +440 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +440 0 0 +441 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +441 0 0 +442 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +442 0 0 +443 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +443 0 0 +444 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +444 0 0 +445 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +445 0 0 +446 0 0 +SURF 0x30 +mat 1 +refs 3 +429 0 0 +446 0 0 +447 0 0 +SURF 0x30 +mat 1 +refs 4 +451 0 0 +450 0 0 +449 0 0 +448 0 0 +SURF 0x30 +mat 1 +refs 4 +452 0 0 +451 0 0 +448 0 0 +455 0 0 +SURF 0x30 +mat 1 +refs 4 +455 0 0 +448 0 0 +449 0 0 +454 0 0 +SURF 0x30 +mat 1 +refs 4 +454 0 0 +449 0 0 +450 0 0 +453 0 0 +SURF 0x30 +mat 1 +refs 4 +453 0 0 +450 0 0 +451 0 0 +452 0 0 +SURF 0x30 +mat 1 +refs 4 +458 0 0 +453 0 0 +452 0 0 +459 0 0 +SURF 0x30 +mat 1 +refs 4 +457 0 0 +454 0 0 +453 0 0 +458 0 0 +SURF 0x30 +mat 1 +refs 4 +456 0 0 +455 0 0 +454 0 0 +457 0 0 +SURF 0x30 +mat 1 +refs 4 +459 0 0 +452 0 0 +455 0 0 +456 0 0 +SURF 0x30 +mat 1 +refs 4 +460 0 0 +459 0 0 +456 0 0 +463 0 0 +SURF 0x30 +mat 1 +refs 4 +463 0 0 +456 0 0 +457 0 0 +462 0 0 +SURF 0x30 +mat 1 +refs 4 +462 0 0 +457 0 0 +458 0 0 +461 0 0 +SURF 0x30 +mat 1 +refs 4 +461 0 0 +458 0 0 +459 0 0 +460 0 0 +SURF 0x30 +mat 1 +refs 4 +466 0 0 +461 0 0 +460 0 0 +467 0 0 +SURF 0x30 +mat 1 +refs 4 +465 0 0 +462 0 0 +461 0 0 +466 0 0 +SURF 0x30 +mat 1 +refs 4 +464 0 0 +463 0 0 +462 0 0 +465 0 0 +SURF 0x30 +mat 1 +refs 4 +467 0 0 +460 0 0 +463 0 0 +464 0 0 +SURF 0x30 +mat 1 +refs 4 +468 0 0 +467 0 0 +464 0 0 +471 0 0 +SURF 0x30 +mat 1 +refs 4 +471 0 0 +464 0 0 +465 0 0 +470 0 0 +SURF 0x30 +mat 1 +refs 4 +470 0 0 +465 0 0 +466 0 0 +469 0 0 +SURF 0x30 +mat 1 +refs 4 +469 0 0 +466 0 0 +467 0 0 +468 0 0 +SURF 0x30 +mat 1 +refs 4 +474 0 0 +469 0 0 +468 0 0 +475 0 0 +SURF 0x30 +mat 1 +refs 4 +473 0 0 +470 0 0 +469 0 0 +474 0 0 +SURF 0x30 +mat 1 +refs 4 +472 0 0 +471 0 0 +470 0 0 +473 0 0 +SURF 0x30 +mat 1 +refs 4 +475 0 0 +468 0 0 +471 0 0 +472 0 0 +SURF 0x30 +mat 1 +refs 4 +480 0 0 +475 0 0 +472 0 0 +483 0 0 +SURF 0x30 +mat 1 +refs 4 +483 0 0 +472 0 0 +473 0 0 +482 0 0 +SURF 0x30 +mat 1 +refs 4 +482 0 0 +473 0 0 +474 0 0 +481 0 0 +SURF 0x30 +mat 1 +refs 4 +481 0 0 +474 0 0 +475 0 0 +480 0 0 +SURF 0x30 +mat 1 +refs 4 +478 0 0 +477 0 0 +476 0 0 +479 0 0 +SURF 0x30 +mat 1 +refs 4 +476 0 0 +477 0 0 +481 0 0 +480 0 0 +SURF 0x30 +mat 1 +refs 4 +477 0 0 +478 0 0 +482 0 0 +481 0 0 +SURF 0x30 +mat 1 +refs 4 +478 0 0 +479 0 0 +483 0 0 +482 0 0 +SURF 0x30 +mat 1 +refs 4 +479 0 0 +476 0 0 +480 0 0 +483 0 0 +SURF 0x30 +mat 1 +refs 4 +488 0 0 +491 0 0 +487 0 0 +484 0 0 +SURF 0x30 +mat 1 +refs 4 +489 0 0 +488 0 0 +484 0 0 +485 0 0 +SURF 0x30 +mat 1 +refs 4 +490 0 0 +489 0 0 +485 0 0 +486 0 0 +SURF 0x30 +mat 1 +refs 4 +491 0 0 +490 0 0 +486 0 0 +487 0 0 +SURF 0x30 +mat 1 +refs 4 +487 0 0 +486 0 0 +485 0 0 +484 0 0 +SURF 0x30 +mat 1 +refs 4 +489 0 0 +490 0 0 +491 0 0 +488 0 0 +SURF 0x30 +mat 1 +refs 3 +498 0 0 +497 0 0 +499 0 0 +SURF 0x30 +mat 1 +refs 3 +499 0 0 +497 0 0 +496 0 0 +SURF 0x30 +mat 1 +refs 3 +499 0 0 +496 0 0 +500 0 0 +SURF 0x30 +mat 1 +refs 3 +500 0 0 +496 0 0 +495 0 0 +SURF 0x30 +mat 1 +refs 3 +500 0 0 +495 0 0 +501 0 0 +SURF 0x30 +mat 1 +refs 3 +501 0 0 +495 0 0 +494 0 0 +SURF 0x30 +mat 1 +refs 3 +501 0 0 +494 0 0 +502 0 0 +SURF 0x30 +mat 1 +refs 3 +502 0 0 +494 0 0 +493 0 0 +SURF 0x30 +mat 1 +refs 3 +502 0 0 +493 0 0 +503 0 0 +SURF 0x30 +mat 1 +refs 3 +503 0 0 +493 0 0 +492 0 0 +SURF 0x30 +mat 1 +refs 3 +503 0 0 +492 0 0 +504 0 0 +SURF 0x30 +mat 1 +refs 3 +504 0 0 +492 0 0 +509 0 0 +SURF 0x30 +mat 1 +refs 3 +504 0 0 +509 0 0 +505 0 0 +SURF 0x30 +mat 1 +refs 3 +505 0 0 +509 0 0 +508 0 0 +SURF 0x30 +mat 1 +refs 3 +505 0 0 +508 0 0 +506 0 0 +SURF 0x30 +mat 1 +refs 3 +506 0 0 +508 0 0 +507 0 0 +SURF 0x30 +mat 1 +refs 4 +527 0 0 +509 0 0 +492 0 0 +510 0 0 +SURF 0x30 +mat 1 +refs 4 +510 0 0 +492 0 0 +493 0 0 +511 0 0 +SURF 0x30 +mat 1 +refs 4 +511 0 0 +493 0 0 +494 0 0 +512 0 0 +SURF 0x30 +mat 1 +refs 4 +513 0 0 +512 0 0 +494 0 0 +495 0 0 +SURF 0x30 +mat 1 +refs 4 +513 0 0 +495 0 0 +496 0 0 +514 0 0 +SURF 0x30 +mat 1 +refs 4 +514 0 0 +496 0 0 +497 0 0 +515 0 0 +SURF 0x30 +mat 1 +refs 4 +516 0 0 +515 0 0 +497 0 0 +498 0 0 +SURF 0x30 +mat 1 +refs 4 +516 0 0 +498 0 0 +499 0 0 +517 0 0 +SURF 0x30 +mat 1 +refs 4 +517 0 0 +499 0 0 +500 0 0 +518 0 0 +SURF 0x30 +mat 1 +refs 4 +518 0 0 +500 0 0 +501 0 0 +519 0 0 +SURF 0x30 +mat 1 +refs 4 +519 0 0 +501 0 0 +502 0 0 +520 0 0 +SURF 0x30 +mat 1 +refs 4 +520 0 0 +502 0 0 +503 0 0 +521 0 0 +SURF 0x30 +mat 1 +refs 4 +522 0 0 +521 0 0 +503 0 0 +504 0 0 +SURF 0x30 +mat 1 +refs 4 +522 0 0 +504 0 0 +505 0 0 +523 0 0 +SURF 0x30 +mat 1 +refs 4 +524 0 0 +523 0 0 +505 0 0 +506 0 0 +SURF 0x30 +mat 1 +refs 4 +524 0 0 +506 0 0 +507 0 0 +525 0 0 +SURF 0x30 +mat 1 +refs 4 +525 0 0 +507 0 0 +508 0 0 +526 0 0 +SURF 0x30 +mat 1 +refs 4 +527 0 0 +526 0 0 +508 0 0 +509 0 0 +SURF 0x30 +mat 1 +refs 4 +545 0 0 +527 0 0 +510 0 0 +528 0 0 +SURF 0x30 +mat 1 +refs 4 +528 0 0 +510 0 0 +511 0 0 +529 0 0 +SURF 0x30 +mat 1 +refs 4 +529 0 0 +511 0 0 +512 0 0 +530 0 0 +SURF 0x30 +mat 1 +refs 4 +531 0 0 +530 0 0 +512 0 0 +513 0 0 +SURF 0x30 +mat 1 +refs 4 +531 0 0 +513 0 0 +514 0 0 +532 0 0 +SURF 0x30 +mat 1 +refs 4 +532 0 0 +514 0 0 +515 0 0 +533 0 0 +SURF 0x30 +mat 1 +refs 4 +534 0 0 +533 0 0 +515 0 0 +516 0 0 +SURF 0x30 +mat 1 +refs 4 +534 0 0 +516 0 0 +517 0 0 +535 0 0 +SURF 0x30 +mat 1 +refs 4 +535 0 0 +517 0 0 +518 0 0 +536 0 0 +SURF 0x30 +mat 1 +refs 4 +536 0 0 +518 0 0 +519 0 0 +537 0 0 +SURF 0x30 +mat 1 +refs 4 +537 0 0 +519 0 0 +520 0 0 +538 0 0 +SURF 0x30 +mat 1 +refs 4 +538 0 0 +520 0 0 +521 0 0 +539 0 0 +SURF 0x30 +mat 1 +refs 4 +540 0 0 +539 0 0 +521 0 0 +522 0 0 +SURF 0x30 +mat 1 +refs 4 +540 0 0 +522 0 0 +523 0 0 +541 0 0 +SURF 0x30 +mat 1 +refs 4 +542 0 0 +541 0 0 +523 0 0 +524 0 0 +SURF 0x30 +mat 1 +refs 4 +542 0 0 +524 0 0 +525 0 0 +543 0 0 +SURF 0x30 +mat 1 +refs 4 +543 0 0 +525 0 0 +526 0 0 +544 0 0 +SURF 0x30 +mat 1 +refs 4 +545 0 0 +544 0 0 +526 0 0 +527 0 0 +SURF 0x30 +mat 1 +refs 4 +563 0 0 +545 0 0 +528 0 0 +546 0 0 +SURF 0x30 +mat 1 +refs 4 +546 0 0 +528 0 0 +529 0 0 +547 0 0 +SURF 0x30 +mat 1 +refs 4 +547 0 0 +529 0 0 +530 0 0 +548 0 0 +SURF 0x30 +mat 1 +refs 4 +549 0 0 +548 0 0 +530 0 0 +531 0 0 +SURF 0x30 +mat 1 +refs 4 +549 0 0 +531 0 0 +532 0 0 +550 0 0 +SURF 0x30 +mat 1 +refs 4 +550 0 0 +532 0 0 +533 0 0 +551 0 0 +SURF 0x30 +mat 1 +refs 4 +552 0 0 +551 0 0 +533 0 0 +534 0 0 +SURF 0x30 +mat 1 +refs 4 +552 0 0 +534 0 0 +535 0 0 +553 0 0 +SURF 0x30 +mat 1 +refs 4 +553 0 0 +535 0 0 +536 0 0 +554 0 0 +SURF 0x30 +mat 1 +refs 4 +554 0 0 +536 0 0 +537 0 0 +555 0 0 +SURF 0x30 +mat 1 +refs 4 +555 0 0 +537 0 0 +538 0 0 +556 0 0 +SURF 0x30 +mat 1 +refs 4 +556 0 0 +538 0 0 +539 0 0 +557 0 0 +SURF 0x30 +mat 1 +refs 4 +558 0 0 +557 0 0 +539 0 0 +540 0 0 +SURF 0x30 +mat 1 +refs 4 +558 0 0 +540 0 0 +541 0 0 +559 0 0 +SURF 0x30 +mat 1 +refs 4 +560 0 0 +559 0 0 +541 0 0 +542 0 0 +SURF 0x30 +mat 1 +refs 4 +560 0 0 +542 0 0 +543 0 0 +561 0 0 +SURF 0x30 +mat 1 +refs 4 +561 0 0 +543 0 0 +544 0 0 +562 0 0 +SURF 0x30 +mat 1 +refs 4 +563 0 0 +562 0 0 +544 0 0 +545 0 0 +SURF 0x30 +mat 1 +refs 4 +580 0 0 +563 0 0 +546 0 0 +564 0 0 +SURF 0x30 +mat 1 +refs 4 +564 0 0 +546 0 0 +547 0 0 +565 0 0 +SURF 0x30 +mat 1 +refs 4 +565 0 0 +547 0 0 +548 0 0 +566 0 0 +SURF 0x30 +mat 1 +refs 4 +567 0 0 +566 0 0 +548 0 0 +549 0 0 +SURF 0x30 +mat 1 +refs 4 +567 0 0 +549 0 0 +550 0 0 +568 0 0 +SURF 0x30 +mat 1 +refs 4 +568 0 0 +550 0 0 +551 0 0 +569 0 0 +SURF 0x30 +mat 1 +refs 4 +570 0 0 +569 0 0 +551 0 0 +552 0 0 +SURF 0x30 +mat 1 +refs 4 +570 0 0 +552 0 0 +553 0 0 +571 0 0 +SURF 0x30 +mat 1 +refs 4 +571 0 0 +553 0 0 +554 0 0 +572 0 0 +SURF 0x30 +mat 1 +refs 4 +572 0 0 +554 0 0 +555 0 0 +573 0 0 +SURF 0x30 +mat 1 +refs 4 +573 0 0 +555 0 0 +556 0 0 +574 0 0 +SURF 0x30 +mat 1 +refs 4 +574 0 0 +556 0 0 +557 0 0 +575 0 0 +SURF 0x30 +mat 1 +refs 4 +576 0 0 +575 0 0 +557 0 0 +558 0 0 +SURF 0x30 +mat 1 +refs 4 +576 0 0 +558 0 0 +559 0 0 +577 0 0 +SURF 0x30 +mat 1 +refs 4 +578 0 0 +577 0 0 +559 0 0 +560 0 0 +SURF 0x30 +mat 1 +refs 4 +578 0 0 +560 0 0 +561 0 0 +579 0 0 +SURF 0x30 +mat 1 +refs 4 +579 0 0 +561 0 0 +562 0 0 +581 0 0 +SURF 0x30 +mat 1 +refs 4 +580 0 0 +581 0 0 +562 0 0 +563 0 0 +SURF 0x30 +mat 1 +refs 4 +599 0 0 +580 0 0 +564 0 0 +582 0 0 +SURF 0x30 +mat 1 +refs 4 +582 0 0 +564 0 0 +565 0 0 +583 0 0 +SURF 0x30 +mat 1 +refs 4 +583 0 0 +565 0 0 +566 0 0 +584 0 0 +SURF 0x30 +mat 1 +refs 4 +585 0 0 +584 0 0 +566 0 0 +567 0 0 +SURF 0x30 +mat 1 +refs 4 +585 0 0 +567 0 0 +568 0 0 +586 0 0 +SURF 0x30 +mat 1 +refs 4 +586 0 0 +568 0 0 +569 0 0 +587 0 0 +SURF 0x30 +mat 1 +refs 4 +588 0 0 +587 0 0 +569 0 0 +570 0 0 +SURF 0x30 +mat 1 +refs 4 +588 0 0 +570 0 0 +571 0 0 +589 0 0 +SURF 0x30 +mat 1 +refs 4 +589 0 0 +571 0 0 +572 0 0 +590 0 0 +SURF 0x30 +mat 1 +refs 4 +590 0 0 +572 0 0 +573 0 0 +591 0 0 +SURF 0x30 +mat 1 +refs 4 +591 0 0 +573 0 0 +574 0 0 +592 0 0 +SURF 0x30 +mat 1 +refs 4 +592 0 0 +574 0 0 +575 0 0 +593 0 0 +SURF 0x30 +mat 1 +refs 4 +594 0 0 +593 0 0 +575 0 0 +576 0 0 +SURF 0x30 +mat 1 +refs 4 +594 0 0 +576 0 0 +577 0 0 +595 0 0 +SURF 0x30 +mat 1 +refs 4 +596 0 0 +595 0 0 +577 0 0 +578 0 0 +SURF 0x30 +mat 1 +refs 4 +596 0 0 +578 0 0 +579 0 0 +597 0 0 +SURF 0x30 +mat 1 +refs 4 +597 0 0 +579 0 0 +581 0 0 +598 0 0 +SURF 0x30 +mat 1 +refs 4 +599 0 0 +598 0 0 +581 0 0 +580 0 0 +SURF 0x30 +mat 1 +refs 4 +616 0 0 +599 0 0 +582 0 0 +600 0 0 +SURF 0x30 +mat 1 +refs 4 +600 0 0 +582 0 0 +583 0 0 +601 0 0 +SURF 0x30 +mat 1 +refs 4 +601 0 0 +583 0 0 +584 0 0 +602 0 0 +SURF 0x30 +mat 1 +refs 4 +603 0 0 +602 0 0 +584 0 0 +585 0 0 +SURF 0x30 +mat 1 +refs 4 +603 0 0 +585 0 0 +586 0 0 +604 0 0 +SURF 0x30 +mat 1 +refs 4 +604 0 0 +586 0 0 +587 0 0 +605 0 0 +SURF 0x30 +mat 1 +refs 4 +606 0 0 +605 0 0 +587 0 0 +588 0 0 +SURF 0x30 +mat 1 +refs 4 +606 0 0 +588 0 0 +589 0 0 +607 0 0 +SURF 0x30 +mat 1 +refs 4 +607 0 0 +589 0 0 +590 0 0 +608 0 0 +SURF 0x30 +mat 1 +refs 4 +608 0 0 +590 0 0 +591 0 0 +609 0 0 +SURF 0x30 +mat 1 +refs 4 +609 0 0 +591 0 0 +592 0 0 +610 0 0 +SURF 0x30 +mat 1 +refs 4 +610 0 0 +592 0 0 +593 0 0 +611 0 0 +SURF 0x30 +mat 1 +refs 4 +612 0 0 +611 0 0 +593 0 0 +594 0 0 +SURF 0x30 +mat 1 +refs 4 +612 0 0 +594 0 0 +595 0 0 +613 0 0 +SURF 0x30 +mat 1 +refs 4 +614 0 0 +613 0 0 +595 0 0 +596 0 0 +SURF 0x30 +mat 1 +refs 4 +614 0 0 +596 0 0 +597 0 0 +615 0 0 +SURF 0x30 +mat 1 +refs 4 +615 0 0 +597 0 0 +598 0 0 +617 0 0 +SURF 0x30 +mat 1 +refs 4 +616 0 0 +617 0 0 +598 0 0 +599 0 0 +SURF 0x30 +mat 1 +refs 4 +634 0 0 +616 0 0 +600 0 0 +618 0 0 +SURF 0x30 +mat 1 +refs 4 +618 0 0 +600 0 0 +601 0 0 +619 0 0 +SURF 0x30 +mat 1 +refs 4 +619 0 0 +601 0 0 +602 0 0 +620 0 0 +SURF 0x30 +mat 1 +refs 4 +621 0 0 +620 0 0 +602 0 0 +603 0 0 +SURF 0x30 +mat 1 +refs 4 +621 0 0 +603 0 0 +604 0 0 +622 0 0 +SURF 0x30 +mat 1 +refs 4 +622 0 0 +604 0 0 +605 0 0 +623 0 0 +SURF 0x30 +mat 1 +refs 4 +624 0 0 +623 0 0 +605 0 0 +606 0 0 +SURF 0x30 +mat 1 +refs 4 +624 0 0 +606 0 0 +607 0 0 +625 0 0 +SURF 0x30 +mat 1 +refs 4 +625 0 0 +607 0 0 +608 0 0 +626 0 0 +SURF 0x30 +mat 1 +refs 4 +626 0 0 +608 0 0 +609 0 0 +627 0 0 +SURF 0x30 +mat 1 +refs 4 +627 0 0 +609 0 0 +610 0 0 +628 0 0 +SURF 0x30 +mat 1 +refs 4 +628 0 0 +610 0 0 +611 0 0 +629 0 0 +SURF 0x30 +mat 1 +refs 4 +630 0 0 +629 0 0 +611 0 0 +612 0 0 +SURF 0x30 +mat 1 +refs 4 +630 0 0 +612 0 0 +613 0 0 +631 0 0 +SURF 0x30 +mat 1 +refs 4 +632 0 0 +631 0 0 +613 0 0 +614 0 0 +SURF 0x30 +mat 1 +refs 4 +632 0 0 +614 0 0 +615 0 0 +633 0 0 +SURF 0x30 +mat 1 +refs 4 +633 0 0 +615 0 0 +617 0 0 +635 0 0 +SURF 0x30 +mat 1 +refs 4 +617 0 0 +616 0 0 +634 0 0 +635 0 0 +kids 0 +OBJECT poly +name "rindicator.L" +data 10 +Sphere.003 +crease 30.000000 +numvert 182 +3.822875 1.206244 0.640238 +3.82196 1.206244 0.650692 +3.801369 1.222017 0.683575 +3.80879 1.219479 0.676602 +3.814809 1.216539 0.668524 +3.819244 1.213286 0.659587 +3.82196 1.209819 0.650061 +3.82196 1.212964 0.648246 +3.819244 1.219479 0.656011 +3.814809 1.225593 0.663297 +3.80879 1.231119 0.669882 +3.801369 1.235888 0.675567 +3.801369 1.246184 0.663297 +3.80879 1.239758 0.659587 +3.814809 1.232313 0.655289 +3.819244 1.224076 0.650533 +3.82196 1.215297 0.645465 +3.82196 1.216539 0.642053 +3.819244 1.226522 0.643813 +3.814809 1.235888 0.645465 +3.80879 1.244354 0.646957 +3.801369 1.251662 0.648246 +3.801369 1.251662 0.632229 +3.80879 1.244354 0.633518 +3.814809 1.235888 0.63501 +3.819244 1.226522 0.636662 +3.82196 1.216539 0.638422 +3.82196 1.215297 0.63501 +3.819244 1.224076 0.629942 +3.814809 1.232313 0.625187 +3.80879 1.239758 0.620889 +3.801369 1.246184 0.617178 +3.801369 1.235888 0.604909 +3.80879 1.231119 0.610593 +3.814809 1.225593 0.617178 +3.819244 1.219479 0.624464 +3.82196 1.212964 0.632229 +3.82196 1.209819 0.630414 +3.819244 1.213286 0.620888 +3.814809 1.216539 0.611951 +3.80879 1.219479 0.603873 +3.801369 1.222017 0.5969 +3.801369 1.206244 0.594119 +3.80879 1.206244 0.601539 +3.814809 1.206244 0.610136 +3.819244 1.206244 0.619647 +3.82196 1.206244 0.629783 +3.82196 1.202668 0.630414 +3.819244 1.199201 0.620888 +3.814809 1.195948 0.611951 +3.80879 1.193008 0.603873 +3.801369 1.19047 0.5969 +3.801369 1.176599 0.604908 +3.80879 1.181369 0.610593 +3.814809 1.186895 0.617178 +3.819244 1.193008 0.624464 +3.82196 1.199524 0.632229 +3.82196 1.19719 0.63501 +3.819244 1.188411 0.629942 +3.814809 1.180175 0.625187 +3.80879 1.17273 0.620888 +3.801369 1.166304 0.617178 +3.801369 1.160826 0.632229 +3.80879 1.168133 0.633518 +3.814809 1.176599 0.63501 +3.819244 1.185966 0.636662 +3.82196 1.195948 0.638422 +3.82196 1.195948 0.642053 +3.819244 1.185966 0.643813 +3.814809 1.176599 0.645465 +3.80879 1.168133 0.646957 +3.801369 1.160826 0.648246 +3.801369 1.166304 0.663297 +3.80879 1.17273 0.659587 +3.814809 1.180175 0.655289 +3.819244 1.188411 0.650533 +3.82196 1.19719 0.645465 +3.82196 1.199524 0.648246 +3.819244 1.193008 0.656011 +3.814809 1.186895 0.663297 +3.80879 1.181369 0.669882 +3.801369 1.176599 0.675567 +3.801369 1.19047 0.683575 +3.80879 1.193008 0.676602 +3.814809 1.195948 0.668524 +3.819244 1.199201 0.659587 +3.82196 1.202668 0.650061 +3.819244 1.206244 0.660828 +3.814809 1.206244 0.67034 +3.80879 1.206244 0.678936 +3.801369 1.206244 0.686356 +3.801369 1.206244 -0.686349 +3.80879 1.206244 -0.678928 +3.814809 1.206244 -0.670332 +3.819244 1.206244 -0.660821 +3.82196 1.202668 -0.650054 +3.819244 1.199201 -0.659579 +3.814809 1.195948 -0.668517 +3.80879 1.193008 -0.676595 +3.801369 1.19047 -0.683568 +3.801369 1.176599 -0.675559 +3.80879 1.181369 -0.669875 +3.814809 1.186895 -0.66329 +3.819244 1.193008 -0.656004 +3.82196 1.199524 -0.648239 +3.82196 1.19719 -0.645457 +3.819244 1.188411 -0.650526 +3.814809 1.180175 -0.655281 +3.80879 1.17273 -0.659579 +3.801369 1.166304 -0.66329 +3.801369 1.160826 -0.648239 +3.80879 1.168133 -0.64695 +3.814809 1.176599 -0.645457 +3.819244 1.185966 -0.643806 +3.82196 1.195948 -0.642045 +3.82196 1.195948 -0.638415 +3.819244 1.185966 -0.636655 +3.814809 1.176599 -0.635003 +3.80879 1.168133 -0.63351 +3.801369 1.160826 -0.632222 +3.801369 1.166304 -0.617171 +3.80879 1.17273 -0.620881 +3.814809 1.180175 -0.625179 +3.819244 1.188411 -0.629935 +3.82196 1.19719 -0.635003 +3.82196 1.199524 -0.632222 +3.819244 1.193008 -0.624457 +3.814809 1.186895 -0.617171 +3.80879 1.181369 -0.610586 +3.801369 1.176599 -0.604901 +3.801369 1.19047 -0.596893 +3.80879 1.193008 -0.603866 +3.814809 1.195948 -0.611944 +3.819244 1.199201 -0.620881 +3.82196 1.202668 -0.630406 +3.82196 1.206244 -0.629776 +3.819244 1.206244 -0.619639 +3.814809 1.206244 -0.610128 +3.80879 1.206244 -0.601532 +3.801369 1.206244 -0.594111 +3.801369 1.222017 -0.596893 +3.80879 1.219479 -0.603866 +3.814809 1.216539 -0.611944 +3.819244 1.213286 -0.620881 +3.82196 1.209819 -0.630406 +3.82196 1.212964 -0.632222 +3.819244 1.219479 -0.624457 +3.814809 1.225593 -0.617171 +3.80879 1.231119 -0.610586 +3.801369 1.235888 -0.604901 +3.801369 1.246184 -0.617171 +3.80879 1.239758 -0.620881 +3.814809 1.232313 -0.625179 +3.819244 1.224076 -0.629935 +3.82196 1.215297 -0.635003 +3.82196 1.216539 -0.638415 +3.819244 1.226522 -0.636655 +3.814809 1.235888 -0.635003 +3.80879 1.244354 -0.63351 +3.801369 1.251662 -0.632222 +3.801369 1.251662 -0.648239 +3.80879 1.244354 -0.64695 +3.814809 1.235888 -0.645457 +3.819244 1.226522 -0.643806 +3.82196 1.216539 -0.642045 +3.82196 1.215297 -0.645457 +3.819244 1.224076 -0.650526 +3.814809 1.232313 -0.655281 +3.80879 1.239758 -0.659579 +3.801369 1.246184 -0.66329 +3.801369 1.235888 -0.675559 +3.80879 1.231119 -0.669875 +3.814809 1.225593 -0.66329 +3.819244 1.219479 -0.656004 +3.82196 1.212964 -0.648239 +3.82196 1.209819 -0.650054 +3.819244 1.213286 -0.659579 +3.814809 1.216539 -0.668517 +3.80879 1.219479 -0.676595 +3.801369 1.222017 -0.683568 +3.82196 1.206244 -0.650685 +3.822875 1.206244 -0.64023 +numsurf 180 +SURF 0x30 +mat 13 +refs 4 +90 0 0 +89 0 0 +3 0 0 +2 0 0 +SURF 0x30 +mat 13 +refs 4 +89 0 0 +88 0 0 +4 0 0 +3 0 0 +SURF 0x30 +mat 13 +refs 4 +88 0 0 +87 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 13 +refs 4 +87 0 0 +1 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 13 +refs 3 +1 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 13 +refs 3 +6 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 13 +refs 4 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 13 +refs 4 +4 0 0 +5 0 0 +8 0 0 +9 0 0 +SURF 0x30 +mat 13 +refs 4 +3 0 0 +4 0 0 +9 0 0 +10 0 0 +SURF 0x30 +mat 13 +refs 4 +2 0 0 +3 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 13 +refs 4 +11 0 0 +10 0 0 +13 0 0 +12 0 0 +SURF 0x30 +mat 13 +refs 4 +10 0 0 +9 0 0 +14 0 0 +13 0 0 +SURF 0x30 +mat 13 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x30 +mat 13 +refs 4 +8 0 0 +7 0 0 +16 0 0 +15 0 0 +SURF 0x30 +mat 13 +refs 3 +7 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 13 +refs 3 +16 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 13 +refs 4 +15 0 0 +16 0 0 +17 0 0 +18 0 0 +SURF 0x30 +mat 13 +refs 4 +14 0 0 +15 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 13 +refs 4 +13 0 0 +14 0 0 +19 0 0 +20 0 0 +SURF 0x30 +mat 13 +refs 4 +12 0 0 +13 0 0 +20 0 0 +21 0 0 +SURF 0x30 +mat 13 +refs 4 +21 0 0 +20 0 0 +23 0 0 +22 0 0 +SURF 0x30 +mat 13 +refs 4 +20 0 0 +19 0 0 +24 0 0 +23 0 0 +SURF 0x30 +mat 13 +refs 4 +19 0 0 +18 0 0 +25 0 0 +24 0 0 +SURF 0x30 +mat 13 +refs 4 +18 0 0 +17 0 0 +26 0 0 +25 0 0 +SURF 0x30 +mat 13 +refs 3 +17 0 0 +0 0 0 +26 0 0 +SURF 0x30 +mat 13 +refs 3 +26 0 0 +0 0 0 +27 0 0 +SURF 0x30 +mat 13 +refs 4 +25 0 0 +26 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 13 +refs 4 +24 0 0 +25 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 13 +refs 4 +23 0 0 +24 0 0 +29 0 0 +30 0 0 +SURF 0x30 +mat 13 +refs 4 +22 0 0 +23 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 13 +refs 4 +31 0 0 +30 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 13 +refs 4 +30 0 0 +29 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 13 +refs 4 +29 0 0 +28 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 13 +refs 4 +28 0 0 +27 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 13 +refs 3 +27 0 0 +0 0 0 +36 0 0 +SURF 0x30 +mat 13 +refs 3 +36 0 0 +0 0 0 +37 0 0 +SURF 0x30 +mat 13 +refs 4 +35 0 0 +36 0 0 +37 0 0 +38 0 0 +SURF 0x30 +mat 13 +refs 4 +34 0 0 +35 0 0 +38 0 0 +39 0 0 +SURF 0x30 +mat 13 +refs 4 +33 0 0 +34 0 0 +39 0 0 +40 0 0 +SURF 0x30 +mat 13 +refs 4 +32 0 0 +33 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 13 +refs 4 +41 0 0 +40 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 13 +refs 4 +40 0 0 +39 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 13 +refs 4 +39 0 0 +38 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 13 +refs 4 +38 0 0 +37 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 13 +refs 3 +37 0 0 +0 0 0 +46 0 0 +SURF 0x30 +mat 13 +refs 3 +46 0 0 +0 0 0 +47 0 0 +SURF 0x30 +mat 13 +refs 4 +45 0 0 +46 0 0 +47 0 0 +48 0 0 +SURF 0x30 +mat 13 +refs 4 +44 0 0 +45 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 13 +refs 4 +43 0 0 +44 0 0 +49 0 0 +50 0 0 +SURF 0x30 +mat 13 +refs 4 +42 0 0 +43 0 0 +50 0 0 +51 0 0 +SURF 0x30 +mat 13 +refs 4 +51 0 0 +50 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 13 +refs 4 +50 0 0 +49 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 13 +refs 4 +49 0 0 +48 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 13 +refs 4 +48 0 0 +47 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 13 +refs 3 +47 0 0 +0 0 0 +56 0 0 +SURF 0x30 +mat 13 +refs 3 +56 0 0 +0 0 0 +57 0 0 +SURF 0x30 +mat 13 +refs 4 +55 0 0 +56 0 0 +57 0 0 +58 0 0 +SURF 0x30 +mat 13 +refs 4 +54 0 0 +55 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 13 +refs 4 +53 0 0 +54 0 0 +59 0 0 +60 0 0 +SURF 0x30 +mat 13 +refs 4 +52 0 0 +53 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 13 +refs 4 +61 0 0 +60 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 13 +refs 4 +60 0 0 +59 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 13 +refs 4 +59 0 0 +58 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 13 +refs 4 +58 0 0 +57 0 0 +66 0 0 +65 0 0 +SURF 0x30 +mat 13 +refs 3 +57 0 0 +0 0 0 +66 0 0 +SURF 0x30 +mat 13 +refs 3 +66 0 0 +0 0 0 +67 0 0 +SURF 0x30 +mat 13 +refs 4 +65 0 0 +66 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 13 +refs 4 +64 0 0 +65 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 13 +refs 4 +63 0 0 +64 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 13 +refs 4 +62 0 0 +63 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 13 +refs 4 +71 0 0 +70 0 0 +73 0 0 +72 0 0 +SURF 0x30 +mat 13 +refs 4 +70 0 0 +69 0 0 +74 0 0 +73 0 0 +SURF 0x30 +mat 13 +refs 4 +69 0 0 +68 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 13 +refs 4 +68 0 0 +67 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 13 +refs 3 +67 0 0 +0 0 0 +76 0 0 +SURF 0x30 +mat 13 +refs 3 +76 0 0 +0 0 0 +77 0 0 +SURF 0x30 +mat 13 +refs 4 +75 0 0 +76 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 13 +refs 4 +74 0 0 +75 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 13 +refs 4 +73 0 0 +74 0 0 +79 0 0 +80 0 0 +SURF 0x30 +mat 13 +refs 4 +72 0 0 +73 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 13 +refs 4 +81 0 0 +80 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 13 +refs 4 +80 0 0 +79 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 13 +refs 4 +79 0 0 +78 0 0 +85 0 0 +84 0 0 +SURF 0x30 +mat 13 +refs 4 +78 0 0 +77 0 0 +86 0 0 +85 0 0 +SURF 0x30 +mat 13 +refs 3 +77 0 0 +0 0 0 +86 0 0 +SURF 0x30 +mat 13 +refs 3 +86 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 13 +refs 4 +85 0 0 +86 0 0 +1 0 0 +87 0 0 +SURF 0x30 +mat 13 +refs 4 +84 0 0 +85 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 13 +refs 4 +83 0 0 +84 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 13 +refs 4 +82 0 0 +83 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 13 +refs 4 +99 0 0 +91 0 0 +92 0 0 +98 0 0 +SURF 0x30 +mat 13 +refs 4 +98 0 0 +92 0 0 +93 0 0 +97 0 0 +SURF 0x30 +mat 13 +refs 4 +97 0 0 +93 0 0 +94 0 0 +96 0 0 +SURF 0x30 +mat 13 +refs 4 +96 0 0 +94 0 0 +180 0 0 +95 0 0 +SURF 0x30 +mat 13 +refs 3 +95 0 0 +180 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +104 0 0 +95 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +103 0 0 +96 0 0 +95 0 0 +104 0 0 +SURF 0x30 +mat 13 +refs 4 +102 0 0 +97 0 0 +96 0 0 +103 0 0 +SURF 0x30 +mat 13 +refs 4 +101 0 0 +98 0 0 +97 0 0 +102 0 0 +SURF 0x30 +mat 13 +refs 4 +100 0 0 +99 0 0 +98 0 0 +101 0 0 +SURF 0x30 +mat 13 +refs 4 +109 0 0 +100 0 0 +101 0 0 +108 0 0 +SURF 0x30 +mat 13 +refs 4 +108 0 0 +101 0 0 +102 0 0 +107 0 0 +SURF 0x30 +mat 13 +refs 4 +107 0 0 +102 0 0 +103 0 0 +106 0 0 +SURF 0x30 +mat 13 +refs 4 +106 0 0 +103 0 0 +104 0 0 +105 0 0 +SURF 0x30 +mat 13 +refs 3 +105 0 0 +104 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +114 0 0 +105 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +113 0 0 +106 0 0 +105 0 0 +114 0 0 +SURF 0x30 +mat 13 +refs 4 +112 0 0 +107 0 0 +106 0 0 +113 0 0 +SURF 0x30 +mat 13 +refs 4 +111 0 0 +108 0 0 +107 0 0 +112 0 0 +SURF 0x30 +mat 13 +refs 4 +110 0 0 +109 0 0 +108 0 0 +111 0 0 +SURF 0x30 +mat 13 +refs 4 +119 0 0 +110 0 0 +111 0 0 +118 0 0 +SURF 0x30 +mat 13 +refs 4 +118 0 0 +111 0 0 +112 0 0 +117 0 0 +SURF 0x30 +mat 13 +refs 4 +117 0 0 +112 0 0 +113 0 0 +116 0 0 +SURF 0x30 +mat 13 +refs 4 +116 0 0 +113 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 13 +refs 3 +115 0 0 +114 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +124 0 0 +115 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +123 0 0 +116 0 0 +115 0 0 +124 0 0 +SURF 0x30 +mat 13 +refs 4 +122 0 0 +117 0 0 +116 0 0 +123 0 0 +SURF 0x30 +mat 13 +refs 4 +121 0 0 +118 0 0 +117 0 0 +122 0 0 +SURF 0x30 +mat 13 +refs 4 +120 0 0 +119 0 0 +118 0 0 +121 0 0 +SURF 0x30 +mat 13 +refs 4 +129 0 0 +120 0 0 +121 0 0 +128 0 0 +SURF 0x30 +mat 13 +refs 4 +128 0 0 +121 0 0 +122 0 0 +127 0 0 +SURF 0x30 +mat 13 +refs 4 +127 0 0 +122 0 0 +123 0 0 +126 0 0 +SURF 0x30 +mat 13 +refs 4 +126 0 0 +123 0 0 +124 0 0 +125 0 0 +SURF 0x30 +mat 13 +refs 3 +125 0 0 +124 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +134 0 0 +125 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +133 0 0 +126 0 0 +125 0 0 +134 0 0 +SURF 0x30 +mat 13 +refs 4 +132 0 0 +127 0 0 +126 0 0 +133 0 0 +SURF 0x30 +mat 13 +refs 4 +131 0 0 +128 0 0 +127 0 0 +132 0 0 +SURF 0x30 +mat 13 +refs 4 +130 0 0 +129 0 0 +128 0 0 +131 0 0 +SURF 0x30 +mat 13 +refs 4 +139 0 0 +130 0 0 +131 0 0 +138 0 0 +SURF 0x30 +mat 13 +refs 4 +138 0 0 +131 0 0 +132 0 0 +137 0 0 +SURF 0x30 +mat 13 +refs 4 +137 0 0 +132 0 0 +133 0 0 +136 0 0 +SURF 0x30 +mat 13 +refs 4 +136 0 0 +133 0 0 +134 0 0 +135 0 0 +SURF 0x30 +mat 13 +refs 3 +135 0 0 +134 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +144 0 0 +135 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +143 0 0 +136 0 0 +135 0 0 +144 0 0 +SURF 0x30 +mat 13 +refs 4 +142 0 0 +137 0 0 +136 0 0 +143 0 0 +SURF 0x30 +mat 13 +refs 4 +141 0 0 +138 0 0 +137 0 0 +142 0 0 +SURF 0x30 +mat 13 +refs 4 +140 0 0 +139 0 0 +138 0 0 +141 0 0 +SURF 0x30 +mat 13 +refs 4 +149 0 0 +140 0 0 +141 0 0 +148 0 0 +SURF 0x30 +mat 13 +refs 4 +148 0 0 +141 0 0 +142 0 0 +147 0 0 +SURF 0x30 +mat 13 +refs 4 +147 0 0 +142 0 0 +143 0 0 +146 0 0 +SURF 0x30 +mat 13 +refs 4 +146 0 0 +143 0 0 +144 0 0 +145 0 0 +SURF 0x30 +mat 13 +refs 3 +145 0 0 +144 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +154 0 0 +145 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +153 0 0 +146 0 0 +145 0 0 +154 0 0 +SURF 0x30 +mat 13 +refs 4 +152 0 0 +147 0 0 +146 0 0 +153 0 0 +SURF 0x30 +mat 13 +refs 4 +151 0 0 +148 0 0 +147 0 0 +152 0 0 +SURF 0x30 +mat 13 +refs 4 +150 0 0 +149 0 0 +148 0 0 +151 0 0 +SURF 0x30 +mat 13 +refs 4 +159 0 0 +150 0 0 +151 0 0 +158 0 0 +SURF 0x30 +mat 13 +refs 4 +158 0 0 +151 0 0 +152 0 0 +157 0 0 +SURF 0x30 +mat 13 +refs 4 +157 0 0 +152 0 0 +153 0 0 +156 0 0 +SURF 0x30 +mat 13 +refs 4 +156 0 0 +153 0 0 +154 0 0 +155 0 0 +SURF 0x30 +mat 13 +refs 3 +155 0 0 +154 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +164 0 0 +155 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +163 0 0 +156 0 0 +155 0 0 +164 0 0 +SURF 0x30 +mat 13 +refs 4 +162 0 0 +157 0 0 +156 0 0 +163 0 0 +SURF 0x30 +mat 13 +refs 4 +161 0 0 +158 0 0 +157 0 0 +162 0 0 +SURF 0x30 +mat 13 +refs 4 +160 0 0 +159 0 0 +158 0 0 +161 0 0 +SURF 0x30 +mat 13 +refs 4 +169 0 0 +160 0 0 +161 0 0 +168 0 0 +SURF 0x30 +mat 13 +refs 4 +168 0 0 +161 0 0 +162 0 0 +167 0 0 +SURF 0x30 +mat 13 +refs 4 +167 0 0 +162 0 0 +163 0 0 +166 0 0 +SURF 0x30 +mat 13 +refs 4 +166 0 0 +163 0 0 +164 0 0 +165 0 0 +SURF 0x30 +mat 13 +refs 3 +165 0 0 +164 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +174 0 0 +165 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +173 0 0 +166 0 0 +165 0 0 +174 0 0 +SURF 0x30 +mat 13 +refs 4 +172 0 0 +167 0 0 +166 0 0 +173 0 0 +SURF 0x30 +mat 13 +refs 4 +171 0 0 +168 0 0 +167 0 0 +172 0 0 +SURF 0x30 +mat 13 +refs 4 +170 0 0 +169 0 0 +168 0 0 +171 0 0 +SURF 0x30 +mat 13 +refs 4 +179 0 0 +170 0 0 +171 0 0 +178 0 0 +SURF 0x30 +mat 13 +refs 4 +178 0 0 +171 0 0 +172 0 0 +177 0 0 +SURF 0x30 +mat 13 +refs 4 +177 0 0 +172 0 0 +173 0 0 +176 0 0 +SURF 0x30 +mat 13 +refs 4 +176 0 0 +173 0 0 +174 0 0 +175 0 0 +SURF 0x30 +mat 13 +refs 3 +175 0 0 +174 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 3 +180 0 0 +175 0 0 +181 0 0 +SURF 0x30 +mat 13 +refs 4 +94 0 0 +176 0 0 +175 0 0 +180 0 0 +SURF 0x30 +mat 13 +refs 4 +93 0 0 +177 0 0 +176 0 0 +94 0 0 +SURF 0x30 +mat 13 +refs 4 +92 0 0 +178 0 0 +177 0 0 +93 0 0 +SURF 0x30 +mat 13 +refs 4 +91 0 0 +179 0 0 +178 0 0 +92 0 0 +kids 0 +OBJECT poly +name "rindicator.L.001" +data 10 +Sphere.006 +crease 30.000000 +numvert 126 +3.801369 1.222017 0.683575 +3.801369 1.235888 0.675567 +3.801369 1.246184 0.663297 +3.801369 1.251662 0.648246 +3.801369 1.251662 0.632229 +3.801369 1.246184 0.617178 +3.801369 1.235888 0.604909 +3.801369 1.222017 0.5969 +3.801369 1.206244 0.594119 +3.801369 1.19047 0.5969 +3.801369 1.176599 0.604908 +3.801369 1.166304 0.617178 +3.801369 1.160826 0.632229 +3.801369 1.160826 0.648246 +3.801369 1.166304 0.663297 +3.801369 1.176599 0.675567 +3.801369 1.19047 0.683575 +3.801369 1.206244 0.686356 +3.801369 1.223465 0.687552 +3.801369 1.238609 0.678808 +3.801369 1.249849 0.665413 +3.801369 1.255829 0.648981 +3.801369 1.25583 0.631494 +3.801369 1.249849 0.615062 +3.801369 1.238609 0.601667 +3.801369 1.223465 0.592923 +3.801369 1.206244 0.589887 +3.801369 1.189023 0.592923 +3.801369 1.173879 0.601667 +3.801369 1.162639 0.615062 +3.801369 1.156658 0.631494 +3.801369 1.156658 0.648981 +3.801369 1.162639 0.665413 +3.801369 1.173879 0.678808 +3.801369 1.189023 0.687552 +3.801369 1.206244 0.690588 +3.732082 1.238609 0.678808 +3.732082 1.223465 0.687552 +3.732082 1.249849 0.665413 +3.732082 1.255829 0.648981 +3.732082 1.25583 0.631494 +3.732082 1.249849 0.615062 +3.732082 1.238609 0.601667 +3.732082 1.223465 0.592923 +3.732082 1.206244 0.589887 +3.732082 1.189023 0.592923 +3.732082 1.173879 0.601667 +3.732082 1.162639 0.615062 +3.732082 1.156658 0.631494 +3.732082 1.156658 0.648981 +3.732082 1.162639 0.665413 +3.732082 1.173879 0.678808 +3.732082 1.189023 0.687552 +3.732082 1.206244 0.690588 +3.737323 1.141944 0.608114 +3.737323 1.141944 0.669695 +3.662067 1.141032 0.669695 +3.662067 1.141032 0.608114 +3.737323 1.237255 0.608114 +3.737323 1.237255 0.669695 +3.706738 1.236344 0.669695 +3.706738 1.236344 0.608114 +3.706738 1.236344 -0.608107 +3.706738 1.236344 -0.669687 +3.737323 1.237255 -0.669687 +3.737323 1.237255 -0.608107 +3.662067 1.141032 -0.608107 +3.662067 1.141032 -0.669687 +3.737323 1.141944 -0.669687 +3.737323 1.141944 -0.608107 +3.732082 1.206244 -0.690581 +3.732082 1.189023 -0.687544 +3.732082 1.173879 -0.678801 +3.732082 1.162639 -0.665406 +3.732082 1.156658 -0.648973 +3.732082 1.156658 -0.631487 +3.732082 1.162639 -0.615055 +3.732082 1.173879 -0.601659 +3.732082 1.189023 -0.592916 +3.732082 1.206244 -0.58988 +3.732082 1.223465 -0.592916 +3.732082 1.238609 -0.601659 +3.732082 1.249849 -0.615055 +3.732082 1.25583 -0.631487 +3.732082 1.255829 -0.648973 +3.732082 1.249849 -0.665406 +3.732082 1.223465 -0.687544 +3.732082 1.238609 -0.678801 +3.801369 1.206244 -0.690581 +3.801369 1.189023 -0.687544 +3.801369 1.173879 -0.678801 +3.801369 1.162639 -0.665406 +3.801369 1.156658 -0.648973 +3.801369 1.156658 -0.631487 +3.801369 1.162639 -0.615055 +3.801369 1.173879 -0.601659 +3.801369 1.189023 -0.592916 +3.801369 1.206244 -0.58988 +3.801369 1.223465 -0.592916 +3.801369 1.238609 -0.601659 +3.801369 1.249849 -0.615055 +3.801369 1.25583 -0.631487 +3.801369 1.255829 -0.648973 +3.801369 1.249849 -0.665406 +3.801369 1.238609 -0.678801 +3.801369 1.223465 -0.687544 +3.801369 1.206244 -0.686349 +3.801369 1.19047 -0.683568 +3.801369 1.176599 -0.675559 +3.801369 1.166304 -0.66329 +3.801369 1.160826 -0.648239 +3.801369 1.160826 -0.632222 +3.801369 1.166304 -0.617171 +3.801369 1.176599 -0.604901 +3.801369 1.19047 -0.596893 +3.801369 1.206244 -0.594111 +3.801369 1.222017 -0.596893 +3.801369 1.235888 -0.604901 +3.801369 1.246184 -0.617171 +3.801369 1.251662 -0.632222 +3.801369 1.251662 -0.648239 +3.801369 1.246184 -0.66329 +3.801369 1.235888 -0.675559 +3.801369 1.222017 -0.683568 +3.732082 1.206244 0.640238 +3.732082 1.206244 -0.640231 +numsurf 120 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +1 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 4 +2 0 0 +1 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 4 +2 0 0 +3 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +3 0 0 +21 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 4 +5 0 0 +4 0 0 +22 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 4 +6 0 0 +5 0 0 +23 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 4 +7 0 0 +6 0 0 +24 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 4 +8 0 0 +7 0 0 +25 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 4 +9 0 0 +8 0 0 +26 0 0 +27 0 0 +SURF 0x20 +mat 1 +refs 4 +10 0 0 +9 0 0 +27 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 4 +11 0 0 +10 0 0 +28 0 0 +29 0 0 +SURF 0x20 +mat 1 +refs 4 +12 0 0 +11 0 0 +29 0 0 +30 0 0 +SURF 0x20 +mat 1 +refs 4 +13 0 0 +12 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +14 0 0 +13 0 0 +31 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 4 +15 0 0 +14 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +15 0 0 +33 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +17 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 4 +17 0 0 +0 0 0 +18 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 4 +18 0 0 +19 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 4 +20 0 0 +19 0 0 +36 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 4 +20 0 0 +21 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 4 +22 0 0 +21 0 0 +39 0 0 +40 0 0 +SURF 0x20 +mat 1 +refs 4 +23 0 0 +22 0 0 +40 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 4 +24 0 0 +23 0 0 +41 0 0 +42 0 0 +SURF 0x20 +mat 1 +refs 4 +25 0 0 +24 0 0 +42 0 0 +43 0 0 +SURF 0x20 +mat 1 +refs 4 +26 0 0 +25 0 0 +43 0 0 +44 0 0 +SURF 0x20 +mat 1 +refs 4 +27 0 0 +26 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 1 +refs 4 +28 0 0 +27 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 1 +refs 4 +29 0 0 +28 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 1 +refs 4 +30 0 0 +29 0 0 +47 0 0 +48 0 0 +SURF 0x20 +mat 1 +refs 4 +31 0 0 +30 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 1 +refs 4 +32 0 0 +31 0 0 +49 0 0 +50 0 0 +SURF 0x20 +mat 1 +refs 4 +33 0 0 +32 0 0 +50 0 0 +51 0 0 +SURF 0x20 +mat 1 +refs 4 +34 0 0 +33 0 0 +51 0 0 +52 0 0 +SURF 0x20 +mat 1 +refs 4 +34 0 0 +35 0 0 +53 0 0 +52 0 0 +SURF 0x20 +mat 1 +refs 4 +35 0 0 +18 0 0 +37 0 0 +53 0 0 +SURF 0x20 +mat 1 +refs 4 +56 0 0 +57 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 4 +58 0 0 +61 0 0 +60 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 4 +54 0 0 +58 0 0 +59 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 4 +55 0 0 +59 0 0 +60 0 0 +56 0 0 +SURF 0x20 +mat 1 +refs 4 +56 0 0 +60 0 0 +61 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 4 +57 0 0 +61 0 0 +58 0 0 +54 0 0 +SURF 0x20 +mat 1 +refs 4 +66 0 0 +69 0 0 +65 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 4 +67 0 0 +66 0 0 +62 0 0 +63 0 0 +SURF 0x20 +mat 1 +refs 4 +68 0 0 +67 0 0 +63 0 0 +64 0 0 +SURF 0x20 +mat 1 +refs 4 +69 0 0 +68 0 0 +64 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 4 +65 0 0 +64 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 4 +67 0 0 +68 0 0 +69 0 0 +66 0 0 +SURF 0x20 +mat 1 +refs 4 +88 0 0 +70 0 0 +86 0 0 +105 0 0 +SURF 0x20 +mat 1 +refs 4 +89 0 0 +71 0 0 +70 0 0 +88 0 0 +SURF 0x20 +mat 1 +refs 4 +89 0 0 +71 0 0 +72 0 0 +90 0 0 +SURF 0x20 +mat 1 +refs 4 +90 0 0 +72 0 0 +73 0 0 +91 0 0 +SURF 0x20 +mat 1 +refs 4 +91 0 0 +73 0 0 +74 0 0 +92 0 0 +SURF 0x20 +mat 1 +refs 4 +92 0 0 +74 0 0 +75 0 0 +93 0 0 +SURF 0x20 +mat 1 +refs 4 +93 0 0 +75 0 0 +76 0 0 +94 0 0 +SURF 0x20 +mat 1 +refs 4 +94 0 0 +76 0 0 +77 0 0 +95 0 0 +SURF 0x20 +mat 1 +refs 4 +95 0 0 +77 0 0 +78 0 0 +96 0 0 +SURF 0x20 +mat 1 +refs 4 +96 0 0 +78 0 0 +79 0 0 +97 0 0 +SURF 0x20 +mat 1 +refs 4 +97 0 0 +79 0 0 +80 0 0 +98 0 0 +SURF 0x20 +mat 1 +refs 4 +98 0 0 +80 0 0 +81 0 0 +99 0 0 +SURF 0x20 +mat 1 +refs 4 +99 0 0 +81 0 0 +82 0 0 +100 0 0 +SURF 0x20 +mat 1 +refs 4 +100 0 0 +82 0 0 +83 0 0 +101 0 0 +SURF 0x20 +mat 1 +refs 4 +101 0 0 +83 0 0 +84 0 0 +102 0 0 +SURF 0x20 +mat 1 +refs 4 +103 0 0 +85 0 0 +84 0 0 +102 0 0 +SURF 0x20 +mat 1 +refs 4 +103 0 0 +85 0 0 +87 0 0 +104 0 0 +SURF 0x20 +mat 1 +refs 4 +105 0 0 +86 0 0 +87 0 0 +104 0 0 +SURF 0x20 +mat 1 +refs 4 +106 0 0 +88 0 0 +105 0 0 +123 0 0 +SURF 0x20 +mat 1 +refs 4 +107 0 0 +89 0 0 +88 0 0 +106 0 0 +SURF 0x20 +mat 1 +refs 4 +107 0 0 +89 0 0 +90 0 0 +108 0 0 +SURF 0x20 +mat 1 +refs 4 +108 0 0 +90 0 0 +91 0 0 +109 0 0 +SURF 0x20 +mat 1 +refs 4 +109 0 0 +91 0 0 +92 0 0 +110 0 0 +SURF 0x20 +mat 1 +refs 4 +110 0 0 +92 0 0 +93 0 0 +111 0 0 +SURF 0x20 +mat 1 +refs 4 +111 0 0 +93 0 0 +94 0 0 +112 0 0 +SURF 0x20 +mat 1 +refs 4 +112 0 0 +94 0 0 +95 0 0 +113 0 0 +SURF 0x20 +mat 1 +refs 4 +113 0 0 +95 0 0 +96 0 0 +114 0 0 +SURF 0x20 +mat 1 +refs 4 +114 0 0 +96 0 0 +97 0 0 +115 0 0 +SURF 0x20 +mat 1 +refs 4 +115 0 0 +97 0 0 +98 0 0 +116 0 0 +SURF 0x20 +mat 1 +refs 4 +116 0 0 +98 0 0 +99 0 0 +117 0 0 +SURF 0x20 +mat 1 +refs 4 +117 0 0 +99 0 0 +100 0 0 +118 0 0 +SURF 0x20 +mat 1 +refs 4 +118 0 0 +100 0 0 +101 0 0 +119 0 0 +SURF 0x20 +mat 1 +refs 4 +119 0 0 +101 0 0 +102 0 0 +120 0 0 +SURF 0x20 +mat 1 +refs 4 +121 0 0 +103 0 0 +102 0 0 +120 0 0 +SURF 0x20 +mat 1 +refs 4 +121 0 0 +103 0 0 +104 0 0 +122 0 0 +SURF 0x20 +mat 1 +refs 4 +123 0 0 +105 0 0 +104 0 0 +122 0 0 +SURF 0x20 +mat 1 +refs 3 +37 0 0 +36 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +38 0 0 +36 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +38 0 0 +39 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +40 0 0 +39 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +41 0 0 +40 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +42 0 0 +41 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +43 0 0 +42 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +44 0 0 +43 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +45 0 0 +44 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +46 0 0 +45 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +47 0 0 +46 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +48 0 0 +47 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +49 0 0 +48 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +49 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +50 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +52 0 0 +51 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +52 0 0 +53 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +53 0 0 +37 0 0 +124 0 0 +SURF 0x20 +mat 1 +refs 3 +86 0 0 +70 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +70 0 0 +71 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +71 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +72 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +74 0 0 +73 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +75 0 0 +74 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +76 0 0 +75 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +77 0 0 +76 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +78 0 0 +77 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +79 0 0 +78 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +80 0 0 +79 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +81 0 0 +80 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +82 0 0 +81 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +83 0 0 +82 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +84 0 0 +83 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +84 0 0 +85 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +87 0 0 +85 0 0 +125 0 0 +SURF 0x20 +mat 1 +refs 3 +87 0 0 +86 0 0 +125 0 0 +kids 0 +OBJECT poly +name "rscrews.L" +data 8 +Cylinder +crease 30.000000 +numvert 70 +2.597304 0.397752 0.703386 +2.593655 0.411367 0.703386 +2.603622 0.421334 0.703386 +2.617238 0.417686 0.703386 +2.620886 0.404071 0.703386 +2.610919 0.394104 0.703386 +2.597304 0.397752 0.675194 +2.593655 0.411367 0.675194 +2.603622 0.421334 0.675194 +2.617238 0.417686 0.675194 +2.620886 0.404071 0.675194 +2.610919 0.394104 0.675194 +2.60727 0.407719 0.703386 +2.60727 0.407719 0.675194 +2.668893 0.492535 0.675194 +2.668893 0.492535 0.703386 +2.657071 0.484858 0.675194 +2.66963 0.478458 0.675194 +2.681452 0.486135 0.675194 +2.680714 0.500212 0.675194 +2.668155 0.506611 0.675194 +2.656333 0.498934 0.675194 +2.657071 0.484858 0.703386 +2.66963 0.478458 0.703386 +2.681452 0.486135 0.703386 +2.680714 0.500212 0.703386 +2.668155 0.506611 0.703386 +2.656333 0.498934 0.703386 +2.770804 0.47406 0.703386 +2.781759 0.465189 0.703386 +2.779554 0.451267 0.703386 +2.766394 0.446216 0.703386 +2.75544 0.455087 0.703386 +2.757645 0.469009 0.703386 +2.770804 0.47406 0.675194 +2.781759 0.465189 0.675194 +2.779554 0.451267 0.675194 +2.766394 0.446216 0.675194 +2.75544 0.455087 0.675194 +2.757645 0.469009 0.675194 +2.768599 0.460138 0.703386 +2.768599 0.460138 0.675194 +2.7686 0.3553 0.675194 +2.7686 0.3553 0.703386 +2.773651 0.368459 0.675194 +2.759729 0.366254 0.675194 +2.754677 0.353095 0.675194 +2.763548 0.342141 0.675194 +2.77747 0.344346 0.675194 +2.782521 0.357505 0.675194 +2.773651 0.368459 0.703386 +2.759729 0.366254 0.703386 +2.754677 0.353095 0.703386 +2.763548 0.342141 0.703386 +2.77747 0.344346 0.703386 +2.782521 0.357505 0.703386 +2.675292 0.310344 0.703386 +2.661216 0.311082 0.703386 +2.654816 0.323641 0.703386 +2.662493 0.335463 0.703386 +2.67657 0.334725 0.703386 +2.682969 0.322166 0.703386 +2.675292 0.310344 0.675194 +2.661216 0.311082 0.675194 +2.654817 0.323641 0.675194 +2.662493 0.335463 0.675194 +2.67657 0.334725 0.675194 +2.682969 0.322166 0.675194 +2.668893 0.322903 0.703386 +2.668893 0.322903 0.675194 +numsurf 90 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +0 0 0 +1 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +8 0 0 +7 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +3 0 0 +4 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +10 0 0 +9 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 14 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +6 0 0 +11 0 0 +SURF 0x20 +mat 14 +refs 4 +0 0 0 +6 0 0 +7 0 0 +1 0 0 +SURF 0x20 +mat 14 +refs 4 +1 0 0 +7 0 0 +8 0 0 +2 0 0 +SURF 0x20 +mat 14 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x20 +mat 14 +refs 4 +3 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x20 +mat 14 +refs 4 +4 0 0 +10 0 0 +11 0 0 +5 0 0 +SURF 0x20 +mat 14 +refs 4 +6 0 0 +0 0 0 +5 0 0 +11 0 0 +SURF 0x20 +mat 14 +refs 4 +22 0 0 +16 0 0 +21 0 0 +27 0 0 +SURF 0x20 +mat 14 +refs 4 +23 0 0 +17 0 0 +16 0 0 +22 0 0 +SURF 0x20 +mat 14 +refs 4 +24 0 0 +18 0 0 +17 0 0 +23 0 0 +SURF 0x20 +mat 14 +refs 4 +25 0 0 +19 0 0 +18 0 0 +24 0 0 +SURF 0x20 +mat 14 +refs 4 +26 0 0 +20 0 0 +19 0 0 +25 0 0 +SURF 0x20 +mat 14 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +21 0 0 +16 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +22 0 0 +27 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +17 0 0 +18 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +18 0 0 +19 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +26 0 0 +25 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +28 0 0 +29 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +29 0 0 +30 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +31 0 0 +32 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +33 0 0 +28 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +34 0 0 +39 0 0 +SURF 0x20 +mat 14 +refs 4 +28 0 0 +34 0 0 +35 0 0 +29 0 0 +SURF 0x20 +mat 14 +refs 4 +29 0 0 +35 0 0 +36 0 0 +30 0 0 +SURF 0x20 +mat 14 +refs 4 +30 0 0 +36 0 0 +37 0 0 +31 0 0 +SURF 0x20 +mat 14 +refs 4 +31 0 0 +37 0 0 +38 0 0 +32 0 0 +SURF 0x20 +mat 14 +refs 4 +32 0 0 +38 0 0 +39 0 0 +33 0 0 +SURF 0x20 +mat 14 +refs 4 +33 0 0 +39 0 0 +34 0 0 +28 0 0 +SURF 0x20 +mat 14 +refs 4 +50 0 0 +44 0 0 +49 0 0 +55 0 0 +SURF 0x20 +mat 14 +refs 4 +51 0 0 +45 0 0 +44 0 0 +50 0 0 +SURF 0x20 +mat 14 +refs 4 +52 0 0 +46 0 0 +45 0 0 +51 0 0 +SURF 0x20 +mat 14 +refs 4 +53 0 0 +47 0 0 +46 0 0 +52 0 0 +SURF 0x20 +mat 14 +refs 4 +54 0 0 +48 0 0 +47 0 0 +53 0 0 +SURF 0x20 +mat 14 +refs 4 +55 0 0 +49 0 0 +48 0 0 +54 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +49 0 0 +44 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +50 0 0 +55 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +51 0 0 +50 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +52 0 0 +51 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +53 0 0 +52 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +47 0 0 +48 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +54 0 0 +53 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +55 0 0 +54 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +57 0 0 +58 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +64 0 0 +63 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +65 0 0 +64 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +59 0 0 +60 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +67 0 0 +66 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +61 0 0 +56 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +62 0 0 +67 0 0 +SURF 0x20 +mat 14 +refs 4 +56 0 0 +62 0 0 +63 0 0 +57 0 0 +SURF 0x20 +mat 14 +refs 4 +57 0 0 +63 0 0 +64 0 0 +58 0 0 +SURF 0x20 +mat 14 +refs 4 +58 0 0 +64 0 0 +65 0 0 +59 0 0 +SURF 0x20 +mat 14 +refs 4 +59 0 0 +65 0 0 +66 0 0 +60 0 0 +SURF 0x20 +mat 14 +refs 4 +60 0 0 +66 0 0 +67 0 0 +61 0 0 +SURF 0x20 +mat 14 +refs 4 +61 0 0 +67 0 0 +62 0 0 +56 0 0 +kids 0 +OBJECT poly +name "rscrews.L.001" +data 12 +Cylinder.002 +crease 30.000000 +numvert 70 +3.296232 1.30935 -0.259251 +3.292584 1.30935 -0.272867 +3.302551 1.30935 -0.282834 +3.316166 1.30935 -0.279185 +3.319815 1.30935 -0.26557 +3.309848 1.30935 -0.255603 +3.296232 1.281159 -0.259251 +3.292584 1.281159 -0.272867 +3.302551 1.281159 -0.282834 +3.316166 1.281159 -0.279185 +3.319815 1.281159 -0.26557 +3.309848 1.281159 -0.255603 +3.306199 1.30935 -0.269218 +3.306199 1.281159 -0.269218 +3.367821 1.281159 -0.354034 +3.367821 1.30935 -0.354034 +3.356 1.281159 -0.346357 +3.368559 1.281159 -0.339958 +3.380381 1.281159 -0.347635 +3.379643 1.281159 -0.361711 +3.367084 1.281159 -0.36811 +3.355262 1.281159 -0.360433 +3.356 1.30935 -0.346357 +3.368559 1.30935 -0.339958 +3.380381 1.30935 -0.347635 +3.379643 1.30935 -0.361711 +3.367084 1.30935 -0.36811 +3.355262 1.30935 -0.360433 +3.469733 1.30935 -0.335559 +3.480688 1.30935 -0.326689 +3.478482 1.30935 -0.312767 +3.465323 1.30935 -0.307715 +3.454369 1.30935 -0.316586 +3.456574 1.30935 -0.330508 +3.469733 1.281159 -0.335559 +3.480688 1.281159 -0.326689 +3.478482 1.281159 -0.312767 +3.465323 1.281159 -0.307715 +3.454369 1.281159 -0.316586 +3.456574 1.281159 -0.330508 +3.467528 1.30935 -0.321637 +3.467528 1.281159 -0.321637 +3.467528 1.281159 -0.2168 +3.467528 1.30935 -0.2168 +3.47258 1.281159 -0.229959 +3.458658 1.281159 -0.227754 +3.453606 1.281159 -0.214594 +3.462477 1.281159 -0.20364 +3.476399 1.281159 -0.205845 +3.48145 1.281159 -0.219005 +3.47258 1.30935 -0.229959 +3.458658 1.30935 -0.227754 +3.453606 1.30935 -0.214594 +3.462477 1.30935 -0.20364 +3.476399 1.30935 -0.205845 +3.48145 1.30935 -0.219005 +3.374221 1.30935 -0.171844 +3.360145 1.30935 -0.172581 +3.353745 1.30935 -0.185141 +3.361422 1.30935 -0.196962 +3.375499 1.30935 -0.196224 +3.381898 1.30935 -0.183665 +3.374221 1.281159 -0.171844 +3.360145 1.281159 -0.172581 +3.353745 1.281159 -0.185141 +3.361422 1.281159 -0.196962 +3.375499 1.281159 -0.196224 +3.381898 1.281159 -0.183665 +3.367821 1.30935 -0.184403 +3.367821 1.281159 -0.184403 +numsurf 90 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +0 0 0 +1 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +1 0 0 +2 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +8 0 0 +7 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +3 0 0 +4 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +10 0 0 +9 0 0 +SURF 0x20 +mat 14 +refs 3 +12 0 0 +4 0 0 +5 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 14 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x20 +mat 14 +refs 3 +13 0 0 +6 0 0 +11 0 0 +SURF 0x20 +mat 14 +refs 4 +0 0 0 +6 0 0 +7 0 0 +1 0 0 +SURF 0x20 +mat 14 +refs 4 +1 0 0 +7 0 0 +8 0 0 +2 0 0 +SURF 0x20 +mat 14 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x20 +mat 14 +refs 4 +3 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x20 +mat 14 +refs 4 +4 0 0 +10 0 0 +11 0 0 +5 0 0 +SURF 0x20 +mat 14 +refs 4 +6 0 0 +0 0 0 +5 0 0 +11 0 0 +SURF 0x20 +mat 14 +refs 4 +22 0 0 +16 0 0 +21 0 0 +27 0 0 +SURF 0x20 +mat 14 +refs 4 +23 0 0 +17 0 0 +16 0 0 +22 0 0 +SURF 0x20 +mat 14 +refs 4 +24 0 0 +18 0 0 +17 0 0 +23 0 0 +SURF 0x20 +mat 14 +refs 4 +25 0 0 +19 0 0 +18 0 0 +24 0 0 +SURF 0x20 +mat 14 +refs 4 +26 0 0 +20 0 0 +19 0 0 +25 0 0 +SURF 0x20 +mat 14 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +21 0 0 +16 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +22 0 0 +27 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +17 0 0 +18 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +18 0 0 +19 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +26 0 0 +25 0 0 +SURF 0x20 +mat 14 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 14 +refs 3 +15 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +28 0 0 +29 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +29 0 0 +30 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +31 0 0 +32 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +32 0 0 +33 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 14 +refs 3 +40 0 0 +33 0 0 +28 0 0 +SURF 0x20 +mat 14 +refs 3 +41 0 0 +34 0 0 +39 0 0 +SURF 0x20 +mat 14 +refs 4 +28 0 0 +34 0 0 +35 0 0 +29 0 0 +SURF 0x20 +mat 14 +refs 4 +29 0 0 +35 0 0 +36 0 0 +30 0 0 +SURF 0x20 +mat 14 +refs 4 +30 0 0 +36 0 0 +37 0 0 +31 0 0 +SURF 0x20 +mat 14 +refs 4 +31 0 0 +37 0 0 +38 0 0 +32 0 0 +SURF 0x20 +mat 14 +refs 4 +32 0 0 +38 0 0 +39 0 0 +33 0 0 +SURF 0x20 +mat 14 +refs 4 +33 0 0 +39 0 0 +34 0 0 +28 0 0 +SURF 0x20 +mat 14 +refs 4 +50 0 0 +44 0 0 +49 0 0 +55 0 0 +SURF 0x20 +mat 14 +refs 4 +51 0 0 +45 0 0 +44 0 0 +50 0 0 +SURF 0x20 +mat 14 +refs 4 +52 0 0 +46 0 0 +45 0 0 +51 0 0 +SURF 0x20 +mat 14 +refs 4 +53 0 0 +47 0 0 +46 0 0 +52 0 0 +SURF 0x20 +mat 14 +refs 4 +54 0 0 +48 0 0 +47 0 0 +53 0 0 +SURF 0x20 +mat 14 +refs 4 +55 0 0 +49 0 0 +48 0 0 +54 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +49 0 0 +44 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +50 0 0 +55 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +51 0 0 +50 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +52 0 0 +51 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +53 0 0 +52 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +47 0 0 +48 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +54 0 0 +53 0 0 +SURF 0x20 +mat 14 +refs 3 +42 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 14 +refs 3 +43 0 0 +55 0 0 +54 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +57 0 0 +58 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +64 0 0 +63 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +65 0 0 +64 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +59 0 0 +60 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +67 0 0 +66 0 0 +SURF 0x20 +mat 14 +refs 3 +68 0 0 +61 0 0 +56 0 0 +SURF 0x20 +mat 14 +refs 3 +69 0 0 +62 0 0 +67 0 0 +SURF 0x20 +mat 14 +refs 4 +56 0 0 +62 0 0 +63 0 0 +57 0 0 +SURF 0x20 +mat 14 +refs 4 +57 0 0 +63 0 0 +64 0 0 +58 0 0 +SURF 0x20 +mat 14 +refs 4 +58 0 0 +64 0 0 +65 0 0 +59 0 0 +SURF 0x20 +mat 14 +refs 4 +59 0 0 +65 0 0 +66 0 0 +60 0 0 +SURF 0x20 +mat 14 +refs 4 +60 0 0 +66 0 0 +67 0 0 +61 0 0 +SURF 0x20 +mat 14 +refs 4 +61 0 0 +67 0 0 +62 0 0 +56 0 0 +kids 0 +OBJECT poly +name "rscrews.R" +data 12 +Cylinder.007 +crease 30.000000 +numvert 70 +2.597303 0.397752 -0.703393 +2.593655 0.411367 -0.703393 +2.603622 0.421334 -0.703393 +2.617238 0.417686 -0.703393 +2.620886 0.404071 -0.703393 +2.610919 0.394104 -0.703393 +2.597303 0.397752 -0.675202 +2.593655 0.411367 -0.675202 +2.603622 0.421334 -0.675202 +2.617238 0.417686 -0.675202 +2.620886 0.404071 -0.675202 +2.610919 0.394104 -0.675202 +2.607271 0.407719 -0.703393 +2.607271 0.407719 -0.675202 +2.668893 0.492535 -0.675202 +2.668893 0.492535 -0.703393 +2.657071 0.484858 -0.675202 +2.66963 0.478458 -0.675202 +2.681452 0.486135 -0.675202 +2.680714 0.500212 -0.675202 +2.668155 0.506611 -0.675202 +2.656333 0.498934 -0.675202 +2.657071 0.484858 -0.703393 +2.66963 0.478458 -0.703393 +2.681452 0.486135 -0.703393 +2.680714 0.500212 -0.703393 +2.668155 0.506611 -0.703393 +2.656333 0.498934 -0.703393 +2.770804 0.47406 -0.703393 +2.781759 0.465189 -0.703393 +2.779554 0.451267 -0.703393 +2.766394 0.446216 -0.703393 +2.75544 0.455087 -0.703393 +2.757645 0.469009 -0.703393 +2.770804 0.47406 -0.675202 +2.781759 0.465189 -0.675202 +2.779554 0.451267 -0.675202 +2.766394 0.446216 -0.675202 +2.75544 0.455087 -0.675202 +2.757645 0.469009 -0.675202 +2.768599 0.460138 -0.703393 +2.768599 0.460138 -0.675202 +2.7686 0.3553 -0.675202 +2.7686 0.3553 -0.703393 +2.773651 0.368459 -0.675202 +2.759729 0.366254 -0.675202 +2.754677 0.353095 -0.675202 +2.763548 0.342141 -0.675202 +2.77747 0.344346 -0.675202 +2.782521 0.357505 -0.675202 +2.773651 0.368459 -0.703393 +2.759729 0.366254 -0.703393 +2.754677 0.353095 -0.703393 +2.763548 0.342141 -0.703393 +2.77747 0.344346 -0.703393 +2.782521 0.357505 -0.703393 +2.675292 0.310344 -0.703393 +2.661216 0.311082 -0.703393 +2.654817 0.323641 -0.703393 +2.662493 0.335463 -0.703393 +2.67657 0.334725 -0.703393 +2.682969 0.322166 -0.703393 +2.675292 0.310344 -0.675202 +2.661216 0.311082 -0.675202 +2.654817 0.323641 -0.675202 +2.662493 0.335463 -0.675202 +2.67657 0.334725 -0.675202 +2.682969 0.322166 -0.675202 +2.668893 0.322903 -0.703393 +2.668893 0.322903 -0.675202 +numsurf 90 +SURF 0x20 +mat 15 +refs 3 +1 0 0 +0 0 0 +12 0 0 +SURF 0x20 +mat 15 +refs 3 +13 0 0 +6 0 0 +7 0 0 +SURF 0x20 +mat 15 +refs 3 +12 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 15 +refs 3 +13 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 15 +refs 3 +12 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 15 +refs 3 +13 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 15 +refs 3 +12 0 0 +4 0 0 +3 0 0 +SURF 0x20 +mat 15 +refs 3 +13 0 0 +9 0 0 +10 0 0 +SURF 0x20 +mat 15 +refs 3 +12 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 15 +refs 3 +13 0 0 +10 0 0 +11 0 0 +SURF 0x20 +mat 15 +refs 3 +12 0 0 +0 0 0 +5 0 0 +SURF 0x20 +mat 15 +refs 3 +13 0 0 +11 0 0 +6 0 0 +SURF 0x20 +mat 15 +refs 4 +0 0 0 +1 0 0 +7 0 0 +6 0 0 +SURF 0x20 +mat 15 +refs 4 +1 0 0 +2 0 0 +8 0 0 +7 0 0 +SURF 0x20 +mat 15 +refs 4 +2 0 0 +3 0 0 +9 0 0 +8 0 0 +SURF 0x20 +mat 15 +refs 4 +3 0 0 +4 0 0 +10 0 0 +9 0 0 +SURF 0x20 +mat 15 +refs 4 +4 0 0 +5 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 15 +refs 4 +5 0 0 +0 0 0 +6 0 0 +11 0 0 +SURF 0x20 +mat 15 +refs 4 +22 0 0 +27 0 0 +21 0 0 +16 0 0 +SURF 0x20 +mat 15 +refs 4 +23 0 0 +22 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 15 +refs 4 +24 0 0 +23 0 0 +17 0 0 +18 0 0 +SURF 0x20 +mat 15 +refs 4 +25 0 0 +24 0 0 +18 0 0 +19 0 0 +SURF 0x20 +mat 15 +refs 4 +26 0 0 +25 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 15 +refs 4 +27 0 0 +26 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 15 +refs 3 +14 0 0 +16 0 0 +21 0 0 +SURF 0x20 +mat 15 +refs 3 +15 0 0 +27 0 0 +22 0 0 +SURF 0x20 +mat 15 +refs 3 +14 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 15 +refs 3 +15 0 0 +22 0 0 +23 0 0 +SURF 0x20 +mat 15 +refs 3 +14 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 15 +refs 3 +15 0 0 +23 0 0 +24 0 0 +SURF 0x20 +mat 15 +refs 3 +14 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 15 +refs 3 +15 0 0 +24 0 0 +25 0 0 +SURF 0x20 +mat 15 +refs 3 +14 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 15 +refs 3 +15 0 0 +25 0 0 +26 0 0 +SURF 0x20 +mat 15 +refs 3 +14 0 0 +21 0 0 +20 0 0 +SURF 0x20 +mat 15 +refs 3 +15 0 0 +26 0 0 +27 0 0 +SURF 0x20 +mat 15 +refs 3 +40 0 0 +29 0 0 +28 0 0 +SURF 0x20 +mat 15 +refs 3 +41 0 0 +34 0 0 +35 0 0 +SURF 0x20 +mat 15 +refs 3 +40 0 0 +30 0 0 +29 0 0 +SURF 0x20 +mat 15 +refs 3 +41 0 0 +35 0 0 +36 0 0 +SURF 0x20 +mat 15 +refs 3 +40 0 0 +31 0 0 +30 0 0 +SURF 0x20 +mat 15 +refs 3 +41 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 15 +refs 3 +40 0 0 +32 0 0 +31 0 0 +SURF 0x20 +mat 15 +refs 3 +41 0 0 +37 0 0 +38 0 0 +SURF 0x20 +mat 15 +refs 3 +40 0 0 +33 0 0 +32 0 0 +SURF 0x20 +mat 15 +refs 3 +41 0 0 +38 0 0 +39 0 0 +SURF 0x20 +mat 15 +refs 3 +40 0 0 +28 0 0 +33 0 0 +SURF 0x20 +mat 15 +refs 3 +41 0 0 +39 0 0 +34 0 0 +SURF 0x20 +mat 15 +refs 4 +28 0 0 +29 0 0 +35 0 0 +34 0 0 +SURF 0x20 +mat 15 +refs 4 +29 0 0 +30 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 15 +refs 4 +30 0 0 +31 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 15 +refs 4 +31 0 0 +32 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 15 +refs 4 +32 0 0 +33 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 15 +refs 4 +33 0 0 +28 0 0 +34 0 0 +39 0 0 +SURF 0x20 +mat 15 +refs 4 +50 0 0 +55 0 0 +49 0 0 +44 0 0 +SURF 0x20 +mat 15 +refs 4 +51 0 0 +50 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 15 +refs 4 +52 0 0 +51 0 0 +45 0 0 +46 0 0 +SURF 0x20 +mat 15 +refs 4 +53 0 0 +52 0 0 +46 0 0 +47 0 0 +SURF 0x20 +mat 15 +refs 4 +54 0 0 +53 0 0 +47 0 0 +48 0 0 +SURF 0x20 +mat 15 +refs 4 +55 0 0 +54 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 15 +refs 3 +42 0 0 +44 0 0 +49 0 0 +SURF 0x20 +mat 15 +refs 3 +43 0 0 +55 0 0 +50 0 0 +SURF 0x20 +mat 15 +refs 3 +42 0 0 +45 0 0 +44 0 0 +SURF 0x20 +mat 15 +refs 3 +43 0 0 +50 0 0 +51 0 0 +SURF 0x20 +mat 15 +refs 3 +42 0 0 +46 0 0 +45 0 0 +SURF 0x20 +mat 15 +refs 3 +43 0 0 +51 0 0 +52 0 0 +SURF 0x20 +mat 15 +refs 3 +42 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 15 +refs 3 +43 0 0 +52 0 0 +53 0 0 +SURF 0x20 +mat 15 +refs 3 +42 0 0 +48 0 0 +47 0 0 +SURF 0x20 +mat 15 +refs 3 +43 0 0 +53 0 0 +54 0 0 +SURF 0x20 +mat 15 +refs 3 +42 0 0 +49 0 0 +48 0 0 +SURF 0x20 +mat 15 +refs 3 +43 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 15 +refs 3 +68 0 0 +57 0 0 +56 0 0 +SURF 0x20 +mat 15 +refs 3 +69 0 0 +62 0 0 +63 0 0 +SURF 0x20 +mat 15 +refs 3 +68 0 0 +58 0 0 +57 0 0 +SURF 0x20 +mat 15 +refs 3 +69 0 0 +63 0 0 +64 0 0 +SURF 0x20 +mat 15 +refs 3 +68 0 0 +59 0 0 +58 0 0 +SURF 0x20 +mat 15 +refs 3 +69 0 0 +64 0 0 +65 0 0 +SURF 0x20 +mat 15 +refs 3 +68 0 0 +60 0 0 +59 0 0 +SURF 0x20 +mat 15 +refs 3 +69 0 0 +65 0 0 +66 0 0 +SURF 0x20 +mat 15 +refs 3 +68 0 0 +61 0 0 +60 0 0 +SURF 0x20 +mat 15 +refs 3 +69 0 0 +66 0 0 +67 0 0 +SURF 0x20 +mat 15 +refs 3 +68 0 0 +56 0 0 +61 0 0 +SURF 0x20 +mat 15 +refs 3 +69 0 0 +67 0 0 +62 0 0 +SURF 0x20 +mat 15 +refs 4 +56 0 0 +57 0 0 +63 0 0 +62 0 0 +SURF 0x20 +mat 15 +refs 4 +57 0 0 +58 0 0 +64 0 0 +63 0 0 +SURF 0x20 +mat 15 +refs 4 +58 0 0 +59 0 0 +65 0 0 +64 0 0 +SURF 0x20 +mat 15 +refs 4 +59 0 0 +60 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 15 +refs 4 +60 0 0 +61 0 0 +67 0 0 +66 0 0 +SURF 0x20 +mat 15 +refs 4 +61 0 0 +56 0 0 +62 0 0 +67 0 0 +kids 0 +OBJECT poly +name "rwheel.L" +data 10 +Circle.005 +crease 30.000000 +numvert 288 +2.954988 0.666259 0.588882 +3.013092 0.590537 0.588882 +3.049618 0.502356 0.588882 +3.062076 0.407726 0.588882 +3.049618 0.313097 0.588882 +3.013092 0.224916 0.588882 +2.954988 0.149194 0.588882 +2.879266 0.09109 0.588882 +2.791085 0.054564 0.588882 +2.696455 0.042106 0.588882 +2.601826 0.054564 0.588882 +2.513645 0.09109 0.588882 +2.437923 0.149194 0.588882 +2.379819 0.224916 0.588882 +2.343293 0.313097 0.588882 +2.330835 0.407726 0.588882 +2.343293 0.502356 0.588882 +2.379819 0.590537 0.588882 +2.437922 0.666259 0.588882 +2.513645 0.724363 0.588882 +2.601826 0.760889 0.588882 +2.696455 0.773347 0.588882 +2.791085 0.760889 0.588882 +2.879265 0.724363 0.588882 +2.954988 0.666259 0.691035 +3.013092 0.590537 0.691035 +3.049618 0.502356 0.691035 +3.062076 0.407727 0.691035 +3.049618 0.313097 0.691035 +3.013092 0.224916 0.691035 +2.954988 0.149194 0.691035 +2.879266 0.09109 0.691035 +2.791085 0.054564 0.691035 +2.696455 0.042106 0.691035 +2.601826 0.054564 0.691035 +2.513645 0.09109 0.691035 +2.437923 0.149194 0.691035 +2.379819 0.224916 0.691035 +2.343293 0.313097 0.691035 +2.330835 0.407726 0.691035 +2.343293 0.502356 0.691035 +2.379819 0.590537 0.691035 +2.437922 0.666259 0.691035 +2.513645 0.724363 0.691035 +2.601826 0.760889 0.691035 +2.696455 0.773347 0.691035 +2.791085 0.760889 0.691035 +2.879265 0.724363 0.691035 +2.932219 0.64349 0.711899 +2.985205 0.574436 0.711899 +3.018514 0.494022 0.711899 +3.029875 0.407727 0.711899 +3.018514 0.321431 0.711899 +2.985205 0.241017 0.711899 +2.932219 0.171963 0.711899 +2.863165 0.118977 0.711899 +2.782751 0.085668 0.711899 +2.696455 0.074307 0.711899 +2.61016 0.085668 0.711899 +2.529746 0.118977 0.711899 +2.460692 0.171963 0.711899 +2.407706 0.241017 0.711899 +2.374397 0.321431 0.711899 +2.363036 0.407726 0.711899 +2.374397 0.494022 0.711899 +2.407705 0.574436 0.711899 +2.460692 0.64349 0.711899 +2.529745 0.696476 0.711899 +2.61016 0.729785 0.711899 +2.696455 0.741146 0.711899 +2.782751 0.729785 0.711899 +2.863165 0.696477 0.711899 +2.94144 0.549169 0.732764 +2.896485 0.607756 0.732764 +2.969701 0.480942 0.732763 +2.97934 0.407727 0.732763 +2.969701 0.334511 0.732764 +2.941441 0.266284 0.732764 +2.896485 0.207697 0.732764 +2.837898 0.162741 0.732764 +2.769671 0.134481 0.732764 +2.696455 0.124842 0.732764 +2.62324 0.134481 0.732764 +2.555013 0.162741 0.732764 +2.496426 0.207697 0.732764 +2.45147 0.266284 0.732764 +2.42321 0.334511 0.732764 +2.413571 0.407726 0.732763 +2.42321 0.480942 0.732763 +2.45147 0.549169 0.732764 +2.496426 0.607756 0.732764 +2.555013 0.652712 0.732764 +2.623239 0.680972 0.732764 +2.696455 0.690611 0.732764 +2.769671 0.680972 0.732764 +2.837897 0.652712 0.732764 +2.927891 0.541346 0.720245 +2.885421 0.596693 0.720245 +2.954588 0.476893 0.720245 +2.963694 0.407727 0.720245 +2.954588 0.33856 0.720245 +2.927891 0.274107 0.720245 +2.885421 0.218761 0.720245 +2.830075 0.176291 0.720245 +2.765622 0.149594 0.720245 +2.696455 0.140488 0.720245 +2.627289 0.149594 0.720245 +2.562836 0.176291 0.720245 +2.507489 0.21876 0.720245 +2.46502 0.274107 0.720245 +2.438323 0.33856 0.720245 +2.429217 0.407726 0.720245 +2.438323 0.476893 0.720245 +2.46502 0.541346 0.720245 +2.507489 0.596692 0.720245 +2.562836 0.639162 0.720245 +2.627289 0.665859 0.720245 +2.696455 0.674965 0.720245 +2.765622 0.665859 0.720245 +2.830074 0.639162 0.720245 +2.932299 0.64357 0.563845 +2.985304 0.574493 0.563845 +3.018624 0.494051 0.563845 +3.029989 0.407727 0.563845 +3.018624 0.321402 0.563845 +2.985304 0.24096 0.563845 +2.932299 0.171883 0.563845 +2.863222 0.118878 0.563845 +2.78278 0.085558 0.563845 +2.696455 0.074193 0.563845 +2.610131 0.085558 0.563845 +2.529689 0.118878 0.563845 +2.460612 0.171883 0.563845 +2.407607 0.24096 0.563845 +2.374287 0.321402 0.563845 +2.362922 0.407726 0.563845 +2.374287 0.494051 0.563845 +2.407607 0.574493 0.563845 +2.460612 0.64357 0.563845 +2.529689 0.696575 0.563845 +2.61013 0.729895 0.563845 +2.696455 0.74126 0.563845 +2.78278 0.729895 0.563845 +2.863222 0.696575 0.563845 +2.935243 0.54559 0.538809 +2.891424 0.602695 0.538809 +2.962788 0.47909 0.538809 +2.972183 0.407727 0.538809 +2.962788 0.336363 0.538809 +2.935243 0.269863 0.538809 +2.891424 0.212758 0.538809 +2.834319 0.168939 0.538809 +2.767819 0.141394 0.538809 +2.696455 0.131999 0.538809 +2.625092 0.141394 0.538809 +2.558592 0.168939 0.538809 +2.501487 0.212758 0.538809 +2.457668 0.269863 0.538809 +2.430123 0.336363 0.538809 +2.420728 0.407726 0.538809 +2.430123 0.47909 0.538809 +2.457668 0.54559 0.538809 +2.501486 0.602695 0.538809 +2.558591 0.646514 0.538809 +2.625092 0.674059 0.538809 +2.696455 0.683454 0.538809 +2.767819 0.674059 0.538809 +2.834319 0.646514 0.538809 +2.929198 0.542101 0.538809 +2.886489 0.59776 0.538809 +2.956046 0.477284 0.538809 +2.965203 0.407727 0.538809 +2.956046 0.33817 0.538809 +2.929198 0.273353 0.538809 +2.886489 0.217693 0.538809 +2.830829 0.174984 0.538809 +2.766013 0.148136 0.538809 +2.696455 0.138979 0.538809 +2.626898 0.148136 0.538809 +2.562082 0.174984 0.538809 +2.506422 0.217693 0.538809 +2.463713 0.273353 0.538809 +2.436865 0.338169 0.538809 +2.427707 0.407726 0.538809 +2.436865 0.477284 0.538809 +2.463713 0.5421 0.538809 +2.506422 0.59776 0.538809 +2.562081 0.640469 0.538809 +2.626898 0.667317 0.538809 +2.696455 0.676475 0.538809 +2.766012 0.667317 0.538809 +2.830829 0.640469 0.538809 +2.98404 0.628398 0.571432 +3.031355 0.546447 0.571432 +3.055847 0.455041 0.571432 +3.055847 0.360412 0.571432 +3.031355 0.269007 0.571432 +2.98404 0.187055 0.571432 +2.917127 0.120142 0.571432 +2.835176 0.072827 0.571432 +2.74377 0.048335 0.571432 +2.649141 0.048335 0.571432 +2.557736 0.072827 0.571432 +2.475784 0.120142 0.571432 +2.408871 0.187055 0.571432 +2.361556 0.269007 0.571432 +2.337064 0.360412 0.571432 +2.337064 0.455041 0.571432 +2.361556 0.546446 0.571432 +2.40887 0.628398 0.571432 +2.475784 0.695311 0.571432 +2.557735 0.742626 0.571432 +2.64914 0.767118 0.571432 +2.74377 0.767118 0.571432 +2.835175 0.742626 0.571432 +2.917127 0.695311 0.571432 +3.013092 0.590537 0.639958 +2.98404 0.628398 0.708485 +2.954988 0.666259 0.639958 +3.049618 0.502356 0.639958 +3.031355 0.546446 0.708485 +3.055847 0.455041 0.708485 +3.062076 0.407727 0.639958 +3.049618 0.313097 0.639958 +3.055847 0.360412 0.708485 +3.031355 0.269007 0.708485 +3.013092 0.224916 0.639958 +2.98404 0.187055 0.708485 +2.954988 0.149194 0.639958 +2.917127 0.120142 0.708485 +2.879266 0.09109 0.639958 +2.791085 0.054564 0.639958 +2.835176 0.072827 0.708485 +2.74377 0.048335 0.708485 +2.696455 0.042106 0.639958 +2.649141 0.048335 0.708485 +2.601826 0.054564 0.639958 +2.557736 0.072827 0.708485 +2.513645 0.09109 0.639958 +2.437923 0.149194 0.639958 +2.475784 0.120142 0.708485 +2.408871 0.187055 0.708485 +2.379819 0.224916 0.639958 +2.361556 0.269007 0.708485 +2.343293 0.313097 0.639958 +2.337064 0.360412 0.708485 +2.330835 0.407726 0.639958 +2.337064 0.455041 0.708485 +2.343293 0.502356 0.639958 +2.361556 0.546446 0.708485 +2.379819 0.590537 0.639958 +2.40887 0.628398 0.708485 +2.437922 0.666259 0.639958 +2.475784 0.695311 0.708485 +2.513645 0.724363 0.639958 +2.557735 0.742626 0.708485 +2.601826 0.760889 0.639958 +2.64914 0.767118 0.708485 +2.696455 0.773347 0.639958 +2.74377 0.767118 0.708485 +2.791085 0.760889 0.639958 +2.835175 0.742626 0.708485 +2.879265 0.724363 0.639958 +2.917127 0.695311 0.708485 +2.98404 0.628398 0.639958 +3.031355 0.546446 0.639958 +3.055847 0.455041 0.639958 +3.055847 0.360412 0.639958 +3.031355 0.269007 0.639958 +2.98404 0.187055 0.639958 +2.917127 0.120142 0.639958 +2.835176 0.072827 0.639958 +2.74377 0.048335 0.639958 +2.649141 0.048335 0.639958 +2.557736 0.072827 0.639958 +2.475784 0.120142 0.639958 +2.408871 0.187055 0.639958 +2.361556 0.269007 0.639958 +2.337064 0.360412 0.639958 +2.337064 0.455041 0.639958 +2.361556 0.546446 0.639958 +2.40887 0.628398 0.639958 +2.475784 0.695311 0.639958 +2.557735 0.742626 0.639958 +2.64914 0.767118 0.639958 +2.74377 0.767118 0.639958 +2.835175 0.742626 0.639958 +2.917127 0.695311 0.639958 +numsurf 336 +SURF 0x30 +mat 16 +refs 4 +48 0 0 +73 0 0 +72 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 4 +49 0 0 +72 0 0 +74 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 4 +51 0 0 +50 0 0 +74 0 0 +75 0 0 +SURF 0x30 +mat 16 +refs 4 +51 0 0 +75 0 0 +76 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 4 +53 0 0 +52 0 0 +76 0 0 +77 0 0 +SURF 0x30 +mat 16 +refs 4 +54 0 0 +53 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 16 +refs 4 +55 0 0 +54 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 16 +refs 4 +55 0 0 +79 0 0 +80 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 4 +57 0 0 +56 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 16 +refs 4 +58 0 0 +57 0 0 +81 0 0 +82 0 0 +SURF 0x30 +mat 16 +refs 4 +59 0 0 +58 0 0 +82 0 0 +83 0 0 +SURF 0x30 +mat 16 +refs 4 +59 0 0 +83 0 0 +84 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 4 +61 0 0 +60 0 0 +84 0 0 +85 0 0 +SURF 0x30 +mat 16 +refs 4 +62 0 0 +61 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 16 +refs 4 +63 0 0 +62 0 0 +86 0 0 +87 0 0 +SURF 0x30 +mat 16 +refs 4 +64 0 0 +63 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 16 +refs 4 +65 0 0 +64 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 16 +refs 4 +66 0 0 +65 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 16 +refs 4 +67 0 0 +66 0 0 +90 0 0 +91 0 0 +SURF 0x30 +mat 16 +refs 4 +68 0 0 +67 0 0 +91 0 0 +92 0 0 +SURF 0x30 +mat 16 +refs 4 +69 0 0 +68 0 0 +92 0 0 +93 0 0 +SURF 0x30 +mat 16 +refs 4 +70 0 0 +69 0 0 +93 0 0 +94 0 0 +SURF 0x30 +mat 16 +refs 4 +71 0 0 +70 0 0 +94 0 0 +95 0 0 +SURF 0x30 +mat 16 +refs 4 +71 0 0 +95 0 0 +73 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 4 +73 0 0 +97 0 0 +96 0 0 +72 0 0 +SURF 0x30 +mat 16 +refs 4 +72 0 0 +96 0 0 +98 0 0 +74 0 0 +SURF 0x30 +mat 16 +refs 4 +75 0 0 +74 0 0 +98 0 0 +99 0 0 +SURF 0x30 +mat 16 +refs 4 +75 0 0 +99 0 0 +100 0 0 +76 0 0 +SURF 0x30 +mat 16 +refs 4 +77 0 0 +76 0 0 +100 0 0 +101 0 0 +SURF 0x30 +mat 16 +refs 4 +78 0 0 +77 0 0 +101 0 0 +102 0 0 +SURF 0x30 +mat 16 +refs 4 +79 0 0 +78 0 0 +102 0 0 +103 0 0 +SURF 0x30 +mat 16 +refs 4 +79 0 0 +103 0 0 +104 0 0 +80 0 0 +SURF 0x30 +mat 16 +refs 4 +81 0 0 +80 0 0 +104 0 0 +105 0 0 +SURF 0x30 +mat 16 +refs 4 +82 0 0 +81 0 0 +105 0 0 +106 0 0 +SURF 0x30 +mat 16 +refs 4 +83 0 0 +82 0 0 +106 0 0 +107 0 0 +SURF 0x30 +mat 16 +refs 4 +83 0 0 +107 0 0 +108 0 0 +84 0 0 +SURF 0x30 +mat 16 +refs 4 +85 0 0 +84 0 0 +108 0 0 +109 0 0 +SURF 0x30 +mat 16 +refs 4 +86 0 0 +85 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 16 +refs 4 +87 0 0 +86 0 0 +110 0 0 +111 0 0 +SURF 0x30 +mat 16 +refs 4 +88 0 0 +87 0 0 +111 0 0 +112 0 0 +SURF 0x30 +mat 16 +refs 4 +89 0 0 +88 0 0 +112 0 0 +113 0 0 +SURF 0x30 +mat 16 +refs 4 +90 0 0 +89 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 16 +refs 4 +91 0 0 +90 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 16 +refs 4 +92 0 0 +91 0 0 +115 0 0 +116 0 0 +SURF 0x30 +mat 16 +refs 4 +93 0 0 +92 0 0 +116 0 0 +117 0 0 +SURF 0x30 +mat 16 +refs 4 +94 0 0 +93 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 16 +refs 4 +95 0 0 +94 0 0 +118 0 0 +119 0 0 +SURF 0x30 +mat 16 +refs 4 +95 0 0 +119 0 0 +97 0 0 +73 0 0 +SURF 0x30 +mat 16 +refs 4 +121 0 0 +144 0 0 +145 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 4 +122 0 0 +146 0 0 +144 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 4 +122 0 0 +123 0 0 +147 0 0 +146 0 0 +SURF 0x30 +mat 16 +refs 4 +124 0 0 +148 0 0 +147 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 4 +124 0 0 +125 0 0 +149 0 0 +148 0 0 +SURF 0x30 +mat 16 +refs 4 +125 0 0 +126 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 16 +refs 4 +126 0 0 +127 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 16 +refs 4 +128 0 0 +152 0 0 +151 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 4 +128 0 0 +129 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 16 +refs 4 +129 0 0 +130 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 16 +refs 4 +130 0 0 +131 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 16 +refs 4 +132 0 0 +156 0 0 +155 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 4 +132 0 0 +133 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 16 +refs 4 +133 0 0 +134 0 0 +158 0 0 +157 0 0 +SURF 0x30 +mat 16 +refs 4 +134 0 0 +135 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 16 +refs 4 +135 0 0 +136 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 16 +refs 4 +136 0 0 +137 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 16 +refs 4 +137 0 0 +138 0 0 +162 0 0 +161 0 0 +SURF 0x30 +mat 16 +refs 4 +138 0 0 +139 0 0 +163 0 0 +162 0 0 +SURF 0x30 +mat 16 +refs 4 +139 0 0 +140 0 0 +164 0 0 +163 0 0 +SURF 0x30 +mat 16 +refs 4 +140 0 0 +141 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 16 +refs 4 +141 0 0 +142 0 0 +166 0 0 +165 0 0 +SURF 0x30 +mat 16 +refs 4 +142 0 0 +143 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 16 +refs 4 +120 0 0 +145 0 0 +167 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 4 +144 0 0 +168 0 0 +169 0 0 +145 0 0 +SURF 0x30 +mat 16 +refs 4 +146 0 0 +170 0 0 +168 0 0 +144 0 0 +SURF 0x30 +mat 16 +refs 4 +146 0 0 +147 0 0 +171 0 0 +170 0 0 +SURF 0x30 +mat 16 +refs 4 +148 0 0 +172 0 0 +171 0 0 +147 0 0 +SURF 0x30 +mat 16 +refs 4 +148 0 0 +149 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 16 +refs 4 +149 0 0 +150 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 16 +refs 4 +150 0 0 +151 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 16 +refs 4 +152 0 0 +176 0 0 +175 0 0 +151 0 0 +SURF 0x30 +mat 16 +refs 4 +152 0 0 +153 0 0 +177 0 0 +176 0 0 +SURF 0x30 +mat 16 +refs 4 +153 0 0 +154 0 0 +178 0 0 +177 0 0 +SURF 0x30 +mat 16 +refs 4 +154 0 0 +155 0 0 +179 0 0 +178 0 0 +SURF 0x30 +mat 16 +refs 4 +156 0 0 +180 0 0 +179 0 0 +155 0 0 +SURF 0x30 +mat 16 +refs 4 +156 0 0 +157 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 16 +refs 4 +157 0 0 +158 0 0 +182 0 0 +181 0 0 +SURF 0x30 +mat 16 +refs 4 +158 0 0 +159 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 16 +refs 4 +159 0 0 +160 0 0 +184 0 0 +183 0 0 +SURF 0x30 +mat 16 +refs 4 +160 0 0 +161 0 0 +185 0 0 +184 0 0 +SURF 0x30 +mat 16 +refs 4 +161 0 0 +162 0 0 +186 0 0 +185 0 0 +SURF 0x30 +mat 16 +refs 4 +162 0 0 +163 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 16 +refs 4 +163 0 0 +164 0 0 +188 0 0 +187 0 0 +SURF 0x30 +mat 16 +refs 4 +164 0 0 +165 0 0 +189 0 0 +188 0 0 +SURF 0x30 +mat 16 +refs 4 +165 0 0 +166 0 0 +190 0 0 +189 0 0 +SURF 0x30 +mat 16 +refs 4 +166 0 0 +167 0 0 +191 0 0 +190 0 0 +SURF 0x30 +mat 16 +refs 4 +145 0 0 +169 0 0 +191 0 0 +167 0 0 +SURF 0x30 +mat 16 +refs 4 +218 0 0 +24 0 0 +217 0 0 +264 0 0 +SURF 0x30 +mat 16 +refs 4 +0 0 0 +218 0 0 +264 0 0 +192 0 0 +SURF 0x30 +mat 16 +refs 4 +264 0 0 +217 0 0 +25 0 0 +216 0 0 +SURF 0x30 +mat 16 +refs 4 +192 0 0 +264 0 0 +216 0 0 +1 0 0 +SURF 0x30 +mat 16 +refs 4 +216 0 0 +25 0 0 +220 0 0 +265 0 0 +SURF 0x30 +mat 16 +refs 4 +1 0 0 +216 0 0 +265 0 0 +193 0 0 +SURF 0x30 +mat 16 +refs 4 +265 0 0 +220 0 0 +26 0 0 +219 0 0 +SURF 0x30 +mat 16 +refs 4 +193 0 0 +265 0 0 +219 0 0 +2 0 0 +SURF 0x30 +mat 16 +refs 4 +194 0 0 +2 0 0 +219 0 0 +266 0 0 +SURF 0x30 +mat 16 +refs 4 +3 0 0 +194 0 0 +266 0 0 +222 0 0 +SURF 0x30 +mat 16 +refs 4 +266 0 0 +219 0 0 +26 0 0 +221 0 0 +SURF 0x30 +mat 16 +refs 4 +222 0 0 +266 0 0 +221 0 0 +27 0 0 +SURF 0x30 +mat 16 +refs 4 +222 0 0 +27 0 0 +224 0 0 +267 0 0 +SURF 0x30 +mat 16 +refs 4 +3 0 0 +222 0 0 +267 0 0 +195 0 0 +SURF 0x30 +mat 16 +refs 4 +267 0 0 +224 0 0 +28 0 0 +223 0 0 +SURF 0x30 +mat 16 +refs 4 +195 0 0 +267 0 0 +223 0 0 +4 0 0 +SURF 0x30 +mat 16 +refs 4 +196 0 0 +4 0 0 +223 0 0 +268 0 0 +SURF 0x30 +mat 16 +refs 4 +5 0 0 +196 0 0 +268 0 0 +226 0 0 +SURF 0x30 +mat 16 +refs 4 +268 0 0 +223 0 0 +28 0 0 +225 0 0 +SURF 0x30 +mat 16 +refs 4 +226 0 0 +268 0 0 +225 0 0 +29 0 0 +SURF 0x30 +mat 16 +refs 4 +197 0 0 +5 0 0 +226 0 0 +269 0 0 +SURF 0x30 +mat 16 +refs 4 +6 0 0 +197 0 0 +269 0 0 +228 0 0 +SURF 0x30 +mat 16 +refs 4 +269 0 0 +226 0 0 +29 0 0 +227 0 0 +SURF 0x30 +mat 16 +refs 4 +228 0 0 +269 0 0 +227 0 0 +30 0 0 +SURF 0x30 +mat 16 +refs 4 +198 0 0 +6 0 0 +228 0 0 +270 0 0 +SURF 0x30 +mat 16 +refs 4 +7 0 0 +198 0 0 +270 0 0 +230 0 0 +SURF 0x30 +mat 16 +refs 4 +270 0 0 +228 0 0 +30 0 0 +229 0 0 +SURF 0x30 +mat 16 +refs 4 +230 0 0 +270 0 0 +229 0 0 +31 0 0 +SURF 0x30 +mat 16 +refs 4 +230 0 0 +31 0 0 +232 0 0 +271 0 0 +SURF 0x30 +mat 16 +refs 4 +7 0 0 +230 0 0 +271 0 0 +199 0 0 +SURF 0x30 +mat 16 +refs 4 +271 0 0 +232 0 0 +32 0 0 +231 0 0 +SURF 0x30 +mat 16 +refs 4 +199 0 0 +271 0 0 +231 0 0 +8 0 0 +SURF 0x30 +mat 16 +refs 4 +200 0 0 +8 0 0 +231 0 0 +272 0 0 +SURF 0x30 +mat 16 +refs 4 +9 0 0 +200 0 0 +272 0 0 +234 0 0 +SURF 0x30 +mat 16 +refs 4 +272 0 0 +231 0 0 +32 0 0 +233 0 0 +SURF 0x30 +mat 16 +refs 4 +234 0 0 +272 0 0 +233 0 0 +33 0 0 +SURF 0x30 +mat 16 +refs 4 +201 0 0 +9 0 0 +234 0 0 +273 0 0 +SURF 0x30 +mat 16 +refs 4 +10 0 0 +201 0 0 +273 0 0 +236 0 0 +SURF 0x30 +mat 16 +refs 4 +273 0 0 +234 0 0 +33 0 0 +235 0 0 +SURF 0x30 +mat 16 +refs 4 +236 0 0 +273 0 0 +235 0 0 +34 0 0 +SURF 0x30 +mat 16 +refs 4 +202 0 0 +10 0 0 +236 0 0 +274 0 0 +SURF 0x30 +mat 16 +refs 4 +11 0 0 +202 0 0 +274 0 0 +238 0 0 +SURF 0x30 +mat 16 +refs 4 +274 0 0 +236 0 0 +34 0 0 +237 0 0 +SURF 0x30 +mat 16 +refs 4 +238 0 0 +274 0 0 +237 0 0 +35 0 0 +SURF 0x30 +mat 16 +refs 4 +238 0 0 +35 0 0 +240 0 0 +275 0 0 +SURF 0x30 +mat 16 +refs 4 +11 0 0 +238 0 0 +275 0 0 +203 0 0 +SURF 0x30 +mat 16 +refs 4 +275 0 0 +240 0 0 +36 0 0 +239 0 0 +SURF 0x30 +mat 16 +refs 4 +203 0 0 +275 0 0 +239 0 0 +12 0 0 +SURF 0x30 +mat 16 +refs 4 +204 0 0 +12 0 0 +239 0 0 +276 0 0 +SURF 0x30 +mat 16 +refs 4 +13 0 0 +204 0 0 +276 0 0 +242 0 0 +SURF 0x30 +mat 16 +refs 4 +276 0 0 +239 0 0 +36 0 0 +241 0 0 +SURF 0x30 +mat 16 +refs 4 +242 0 0 +276 0 0 +241 0 0 +37 0 0 +SURF 0x30 +mat 16 +refs 4 +205 0 0 +13 0 0 +242 0 0 +277 0 0 +SURF 0x30 +mat 16 +refs 4 +14 0 0 +205 0 0 +277 0 0 +244 0 0 +SURF 0x30 +mat 16 +refs 4 +277 0 0 +242 0 0 +37 0 0 +243 0 0 +SURF 0x30 +mat 16 +refs 4 +244 0 0 +277 0 0 +243 0 0 +38 0 0 +SURF 0x30 +mat 16 +refs 4 +206 0 0 +14 0 0 +244 0 0 +278 0 0 +SURF 0x30 +mat 16 +refs 4 +15 0 0 +206 0 0 +278 0 0 +246 0 0 +SURF 0x30 +mat 16 +refs 4 +278 0 0 +244 0 0 +38 0 0 +245 0 0 +SURF 0x30 +mat 16 +refs 4 +246 0 0 +278 0 0 +245 0 0 +39 0 0 +SURF 0x30 +mat 16 +refs 4 +207 0 0 +15 0 0 +246 0 0 +279 0 0 +SURF 0x30 +mat 16 +refs 4 +16 0 0 +207 0 0 +279 0 0 +248 0 0 +SURF 0x30 +mat 16 +refs 4 +279 0 0 +246 0 0 +39 0 0 +247 0 0 +SURF 0x30 +mat 16 +refs 4 +248 0 0 +279 0 0 +247 0 0 +40 0 0 +SURF 0x30 +mat 16 +refs 4 +208 0 0 +16 0 0 +248 0 0 +280 0 0 +SURF 0x30 +mat 16 +refs 4 +17 0 0 +208 0 0 +280 0 0 +250 0 0 +SURF 0x30 +mat 16 +refs 4 +280 0 0 +248 0 0 +40 0 0 +249 0 0 +SURF 0x30 +mat 16 +refs 4 +250 0 0 +280 0 0 +249 0 0 +41 0 0 +SURF 0x30 +mat 16 +refs 4 +209 0 0 +17 0 0 +250 0 0 +281 0 0 +SURF 0x30 +mat 16 +refs 4 +18 0 0 +209 0 0 +281 0 0 +252 0 0 +SURF 0x30 +mat 16 +refs 4 +281 0 0 +250 0 0 +41 0 0 +251 0 0 +SURF 0x30 +mat 16 +refs 4 +252 0 0 +281 0 0 +251 0 0 +42 0 0 +SURF 0x30 +mat 16 +refs 4 +210 0 0 +18 0 0 +252 0 0 +282 0 0 +SURF 0x30 +mat 16 +refs 4 +19 0 0 +210 0 0 +282 0 0 +254 0 0 +SURF 0x30 +mat 16 +refs 4 +282 0 0 +252 0 0 +42 0 0 +253 0 0 +SURF 0x30 +mat 16 +refs 4 +254 0 0 +282 0 0 +253 0 0 +43 0 0 +SURF 0x30 +mat 16 +refs 4 +211 0 0 +19 0 0 +254 0 0 +283 0 0 +SURF 0x30 +mat 16 +refs 4 +20 0 0 +211 0 0 +283 0 0 +256 0 0 +SURF 0x30 +mat 16 +refs 4 +283 0 0 +254 0 0 +43 0 0 +255 0 0 +SURF 0x30 +mat 16 +refs 4 +256 0 0 +283 0 0 +255 0 0 +44 0 0 +SURF 0x30 +mat 16 +refs 4 +212 0 0 +20 0 0 +256 0 0 +284 0 0 +SURF 0x30 +mat 16 +refs 4 +21 0 0 +212 0 0 +284 0 0 +258 0 0 +SURF 0x30 +mat 16 +refs 4 +284 0 0 +256 0 0 +44 0 0 +257 0 0 +SURF 0x30 +mat 16 +refs 4 +258 0 0 +284 0 0 +257 0 0 +45 0 0 +SURF 0x30 +mat 16 +refs 4 +213 0 0 +21 0 0 +258 0 0 +285 0 0 +SURF 0x30 +mat 16 +refs 4 +22 0 0 +213 0 0 +285 0 0 +260 0 0 +SURF 0x30 +mat 16 +refs 4 +285 0 0 +258 0 0 +45 0 0 +259 0 0 +SURF 0x30 +mat 16 +refs 4 +260 0 0 +285 0 0 +259 0 0 +46 0 0 +SURF 0x30 +mat 16 +refs 4 +214 0 0 +22 0 0 +260 0 0 +286 0 0 +SURF 0x30 +mat 16 +refs 4 +23 0 0 +214 0 0 +286 0 0 +262 0 0 +SURF 0x30 +mat 16 +refs 4 +286 0 0 +260 0 0 +46 0 0 +261 0 0 +SURF 0x30 +mat 16 +refs 4 +262 0 0 +286 0 0 +261 0 0 +47 0 0 +SURF 0x30 +mat 16 +refs 4 +218 0 0 +0 0 0 +215 0 0 +287 0 0 +SURF 0x30 +mat 16 +refs 4 +24 0 0 +218 0 0 +287 0 0 +263 0 0 +SURF 0x30 +mat 16 +refs 4 +287 0 0 +215 0 0 +23 0 0 +262 0 0 +SURF 0x30 +mat 16 +refs 4 +263 0 0 +287 0 0 +262 0 0 +47 0 0 +SURF 0x30 +mat 16 +refs 3 +217 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +25 0 0 +217 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +217 0 0 +24 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +220 0 0 +49 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +26 0 0 +220 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +220 0 0 +25 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +221 0 0 +50 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +27 0 0 +221 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +221 0 0 +26 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +224 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +28 0 0 +224 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +224 0 0 +27 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +225 0 0 +52 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +29 0 0 +225 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +225 0 0 +28 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +227 0 0 +53 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +30 0 0 +227 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +227 0 0 +29 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +229 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +31 0 0 +229 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +229 0 0 +30 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +232 0 0 +55 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +32 0 0 +232 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +232 0 0 +31 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +233 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +33 0 0 +233 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +233 0 0 +32 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +235 0 0 +57 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +34 0 0 +235 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +235 0 0 +33 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +237 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +35 0 0 +237 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +237 0 0 +34 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +240 0 0 +59 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +36 0 0 +240 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +240 0 0 +35 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +241 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +37 0 0 +241 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +241 0 0 +36 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +243 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +38 0 0 +243 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +243 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +245 0 0 +62 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +39 0 0 +245 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +245 0 0 +38 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +247 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +40 0 0 +247 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +247 0 0 +39 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +249 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +41 0 0 +249 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +249 0 0 +40 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +251 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +42 0 0 +251 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +251 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +253 0 0 +66 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +43 0 0 +253 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +253 0 0 +42 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +255 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +44 0 0 +255 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +255 0 0 +43 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +257 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +45 0 0 +257 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +257 0 0 +44 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +259 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +46 0 0 +259 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +259 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +261 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +47 0 0 +261 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +261 0 0 +46 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +263 0 0 +71 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +24 0 0 +263 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +263 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +192 0 0 +121 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 3 +0 0 0 +192 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 3 +192 0 0 +1 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +193 0 0 +122 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +1 0 0 +193 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +193 0 0 +2 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +194 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +2 0 0 +194 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +194 0 0 +3 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +195 0 0 +124 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +3 0 0 +195 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +195 0 0 +4 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +196 0 0 +125 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +4 0 0 +196 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +196 0 0 +5 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +197 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +5 0 0 +197 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +197 0 0 +6 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +198 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +6 0 0 +198 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +198 0 0 +7 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +199 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +7 0 0 +199 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +199 0 0 +8 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +200 0 0 +129 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +8 0 0 +200 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +200 0 0 +9 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +201 0 0 +130 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +9 0 0 +201 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +201 0 0 +10 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +202 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +10 0 0 +202 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +202 0 0 +11 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +203 0 0 +132 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +11 0 0 +203 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +203 0 0 +12 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +204 0 0 +133 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +12 0 0 +204 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +204 0 0 +13 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +205 0 0 +134 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +13 0 0 +205 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +205 0 0 +14 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +206 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +14 0 0 +206 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +206 0 0 +15 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +207 0 0 +136 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +15 0 0 +207 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +207 0 0 +16 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +208 0 0 +137 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +16 0 0 +208 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +208 0 0 +17 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +209 0 0 +138 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +17 0 0 +209 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +209 0 0 +18 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +210 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +18 0 0 +210 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +210 0 0 +19 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +211 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +19 0 0 +211 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +211 0 0 +20 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +212 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +20 0 0 +212 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +212 0 0 +21 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +213 0 0 +142 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +21 0 0 +213 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +213 0 0 +22 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +214 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +22 0 0 +214 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +214 0 0 +23 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +215 0 0 +120 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +23 0 0 +215 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +215 0 0 +0 0 0 +120 0 0 +kids 0 +OBJECT poly +name "rwheel.L.001" +data 10 +Circle.031 +crease 30.000000 +numvert 288 +3.653917 1.194847 -0.527759 +3.712021 1.194847 -0.452036 +3.748546 1.194847 -0.363856 +3.761004 1.194847 -0.269226 +3.748546 1.194847 -0.174597 +3.712021 1.194847 -0.086416 +3.653917 1.194847 -0.010693 +3.578195 1.194847 0.047411 +3.490014 1.194847 0.083936 +3.395384 1.194847 0.096395 +3.300755 1.194847 0.083936 +3.212574 1.194847 0.047411 +3.136852 1.194847 -0.010693 +3.078748 1.194847 -0.086416 +3.042222 1.194847 -0.174596 +3.029764 1.194847 -0.269226 +3.042222 1.194847 -0.363855 +3.078748 1.194847 -0.452036 +3.136851 1.194847 -0.527758 +3.212574 1.194847 -0.585862 +3.300755 1.194847 -0.622388 +3.395384 1.194847 -0.634846 +3.490014 1.194847 -0.622388 +3.578194 1.194847 -0.585863 +3.653917 1.297 -0.527759 +3.712021 1.297 -0.452036 +3.748546 1.297 -0.363856 +3.761004 1.297 -0.269226 +3.748546 1.297 -0.174596 +3.712021 1.297 -0.086416 +3.653917 1.297 -0.010693 +3.578195 1.297 0.047411 +3.490014 1.297 0.083936 +3.395384 1.297 0.096395 +3.300755 1.297 0.083936 +3.212574 1.297 0.047411 +3.136852 1.297 -0.010693 +3.078748 1.297 -0.086416 +3.042222 1.297 -0.174596 +3.029764 1.297 -0.269226 +3.042222 1.297 -0.363855 +3.078748 1.297 -0.452036 +3.136851 1.297 -0.527758 +3.212574 1.297 -0.585862 +3.300755 1.297 -0.622388 +3.395384 1.297 -0.634846 +3.490014 1.297 -0.622388 +3.578194 1.297 -0.585863 +3.631147 1.317864 -0.504989 +3.684134 1.317864 -0.435936 +3.717443 1.317864 -0.355521 +3.728804 1.317864 -0.269226 +3.717443 1.317864 -0.182931 +3.684134 1.317864 -0.102516 +3.631148 1.317864 -0.033463 +3.562094 1.317864 0.019524 +3.48168 1.317864 0.052833 +3.395384 1.317864 0.064194 +3.309089 1.317864 0.052833 +3.228674 1.317864 0.019524 +3.159621 1.317864 -0.033462 +3.106634 1.317864 -0.102516 +3.073325 1.317864 -0.18293 +3.061965 1.317864 -0.269226 +3.073325 1.317864 -0.355521 +3.106634 1.317864 -0.435936 +3.159621 1.317864 -0.504989 +3.228674 1.317864 -0.557976 +3.309089 1.317864 -0.591285 +3.395384 1.317864 -0.602646 +3.481679 1.317864 -0.591285 +3.562094 1.317864 -0.557976 +3.640369 1.338729 -0.410668 +3.595414 1.338729 -0.469255 +3.668629 1.338729 -0.342442 +3.678268 1.338729 -0.269226 +3.668629 1.338729 -0.19601 +3.640369 1.338729 -0.127784 +3.595414 1.338729 -0.069196 +3.536826 1.338729 -0.024241 +3.4686 1.338729 0.004019 +3.395384 1.338729 0.013658 +3.322168 1.338729 0.004019 +3.253942 1.338729 -0.024241 +3.195355 1.338729 -0.069196 +3.150399 1.338729 -0.127784 +3.122139 1.338729 -0.19601 +3.1125 1.338729 -0.269226 +3.122139 1.338729 -0.342442 +3.150399 1.338729 -0.410668 +3.195355 1.338729 -0.469255 +3.253942 1.338729 -0.514211 +3.322168 1.338729 -0.542471 +3.395384 1.338729 -0.55211 +3.4686 1.338729 -0.542471 +3.536826 1.338729 -0.514211 +3.626819 1.32621 -0.402845 +3.58435 1.32621 -0.458192 +3.653517 1.32621 -0.338392 +3.662622 1.32621 -0.269226 +3.653517 1.32621 -0.20006 +3.626819 1.32621 -0.135607 +3.58435 1.32621 -0.08026 +3.529003 1.32621 -0.037791 +3.464551 1.32621 -0.011094 +3.395384 1.32621 -0.001988 +3.326218 1.32621 -0.011094 +3.261765 1.32621 -0.037791 +3.206418 1.32621 -0.08026 +3.163949 1.32621 -0.135607 +3.137252 1.32621 -0.20006 +3.128146 1.32621 -0.269226 +3.137252 1.32621 -0.338392 +3.163949 1.32621 -0.402845 +3.206418 1.32621 -0.458192 +3.261765 1.32621 -0.500661 +3.326218 1.32621 -0.527358 +3.395384 1.32621 -0.536464 +3.46455 1.32621 -0.527358 +3.529003 1.32621 -0.500661 +3.631228 1.16981 -0.50507 +3.684232 1.16981 -0.435993 +3.717553 1.16981 -0.355551 +3.728917 1.16981 -0.269226 +3.717553 1.16981 -0.182901 +3.684232 1.16981 -0.102459 +3.631228 1.16981 -0.033382 +3.562151 1.16981 0.019622 +3.481709 1.16981 0.052942 +3.395384 1.16981 0.064307 +3.30906 1.16981 0.052942 +3.228618 1.16981 0.019622 +3.159541 1.16981 -0.033382 +3.106536 1.16981 -0.102459 +3.073216 1.16981 -0.182901 +3.061851 1.16981 -0.269226 +3.073216 1.16981 -0.355551 +3.106536 1.16981 -0.435992 +3.15954 1.16981 -0.505069 +3.228617 1.16981 -0.558074 +3.309059 1.16981 -0.591394 +3.395384 1.16981 -0.602759 +3.481709 1.16981 -0.591394 +3.56215 1.16981 -0.558074 +3.634171 1.144774 -0.40709 +3.590353 1.144774 -0.464195 +3.661717 1.144774 -0.34059 +3.671112 1.144774 -0.269226 +3.661717 1.144774 -0.197862 +3.634171 1.144774 -0.131362 +3.590353 1.144774 -0.074257 +3.533248 1.144774 -0.030439 +3.466748 1.144774 -0.002893 +3.395384 1.144774 0.006502 +3.324021 1.144774 -0.002893 +3.25752 1.144774 -0.030439 +3.200415 1.144774 -0.074257 +3.156597 1.144774 -0.131362 +3.129052 1.144774 -0.197862 +3.119657 1.144774 -0.269226 +3.129052 1.144774 -0.340589 +3.156597 1.144774 -0.40709 +3.200415 1.144774 -0.464195 +3.25752 1.144774 -0.508013 +3.32402 1.144774 -0.535558 +3.395384 1.144774 -0.544954 +3.466748 1.144774 -0.535559 +3.533248 1.144774 -0.508013 +3.628127 1.144774 -0.4036 +3.585418 1.144774 -0.459259 +3.654975 1.144774 -0.338783 +3.664132 1.144774 -0.269226 +3.654975 1.144774 -0.199669 +3.628127 1.144774 -0.134852 +3.585418 1.144774 -0.079193 +3.529758 1.144774 -0.036483 +3.464942 1.144774 -0.009635 +3.395384 1.144774 -0.000478 +3.325827 1.144774 -0.009635 +3.26101 1.144774 -0.036483 +3.205351 1.144774 -0.079192 +3.162642 1.144774 -0.134852 +3.135794 1.144774 -0.199669 +3.126636 1.144774 -0.269226 +3.135794 1.144774 -0.338783 +3.162642 1.144774 -0.4036 +3.205351 1.144774 -0.459259 +3.26101 1.144774 -0.501968 +3.325827 1.144774 -0.528816 +3.395384 1.144774 -0.537974 +3.464941 1.144774 -0.528817 +3.529758 1.144774 -0.501969 +3.682969 1.177397 -0.489897 +3.730284 1.177397 -0.407946 +3.754776 1.177397 -0.316541 +3.754776 1.177397 -0.221911 +3.730284 1.177397 -0.130506 +3.682969 1.177397 -0.048555 +3.616056 1.177397 0.018359 +3.534104 1.177397 0.065673 +3.442699 1.177397 0.090165 +3.34807 1.177397 0.090165 +3.256665 1.177397 0.065674 +3.174713 1.177397 0.018359 +3.1078 1.177397 -0.048554 +3.060485 1.177397 -0.130506 +3.035993 1.177397 -0.221911 +3.035993 1.177397 -0.316541 +3.060485 1.177397 -0.407946 +3.107799 1.177397 -0.489897 +3.174712 1.177397 -0.55681 +3.256664 1.177397 -0.604125 +3.348069 1.177397 -0.628617 +3.442699 1.177397 -0.628617 +3.534104 1.177397 -0.604125 +3.616055 1.177397 -0.556811 +3.712021 1.245923 -0.452036 +3.682969 1.31445 -0.489897 +3.653917 1.245923 -0.527759 +3.748546 1.245923 -0.363856 +3.730284 1.31445 -0.407946 +3.754776 1.31445 -0.316541 +3.761004 1.245923 -0.269226 +3.748546 1.245923 -0.174597 +3.754776 1.31445 -0.221911 +3.730284 1.31445 -0.130506 +3.712021 1.245923 -0.086416 +3.682969 1.31445 -0.048555 +3.653917 1.245923 -0.010693 +3.616056 1.31445 0.018359 +3.578195 1.245923 0.047411 +3.490014 1.245923 0.083936 +3.534104 1.31445 0.065673 +3.442699 1.31445 0.090165 +3.395384 1.245923 0.096395 +3.34807 1.31445 0.090165 +3.300755 1.245923 0.083936 +3.256665 1.31445 0.065674 +3.212574 1.245923 0.047411 +3.136852 1.245923 -0.010693 +3.174713 1.31445 0.018359 +3.1078 1.31445 -0.048554 +3.078748 1.245923 -0.086416 +3.060485 1.31445 -0.130506 +3.042222 1.245923 -0.174596 +3.035993 1.31445 -0.221911 +3.029764 1.245923 -0.269226 +3.035993 1.31445 -0.316541 +3.042222 1.245923 -0.363855 +3.060485 1.31445 -0.407946 +3.078748 1.245923 -0.452036 +3.107799 1.31445 -0.489897 +3.136851 1.245923 -0.527758 +3.174712 1.31445 -0.55681 +3.212574 1.245923 -0.585862 +3.256664 1.31445 -0.604125 +3.300755 1.245923 -0.622388 +3.348069 1.31445 -0.628617 +3.395384 1.245923 -0.634846 +3.442699 1.31445 -0.628617 +3.490014 1.245923 -0.622388 +3.534104 1.31445 -0.604125 +3.578194 1.245923 -0.585863 +3.616055 1.31445 -0.556811 +3.682969 1.245923 -0.489897 +3.730284 1.245923 -0.407946 +3.754776 1.245923 -0.316541 +3.754776 1.245923 -0.221911 +3.730284 1.245923 -0.130506 +3.682969 1.245923 -0.048555 +3.616056 1.245923 0.018359 +3.534104 1.245923 0.065673 +3.442699 1.245923 0.090165 +3.34807 1.245923 0.090165 +3.256665 1.245923 0.065674 +3.174713 1.245923 0.018359 +3.1078 1.245923 -0.048554 +3.060485 1.245923 -0.130506 +3.035993 1.245923 -0.221911 +3.035993 1.245923 -0.316541 +3.060485 1.245923 -0.407946 +3.107799 1.245923 -0.489897 +3.174712 1.245923 -0.55681 +3.256664 1.245923 -0.604125 +3.348069 1.245923 -0.628617 +3.442699 1.245923 -0.628617 +3.534104 1.245923 -0.604125 +3.616055 1.245923 -0.556811 +numsurf 336 +SURF 0x30 +mat 16 +refs 4 +48 0 0 +73 0 0 +72 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 4 +49 0 0 +72 0 0 +74 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 4 +51 0 0 +50 0 0 +74 0 0 +75 0 0 +SURF 0x30 +mat 16 +refs 4 +51 0 0 +75 0 0 +76 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 4 +53 0 0 +52 0 0 +76 0 0 +77 0 0 +SURF 0x30 +mat 16 +refs 4 +54 0 0 +53 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 16 +refs 4 +55 0 0 +54 0 0 +78 0 0 +79 0 0 +SURF 0x30 +mat 16 +refs 4 +55 0 0 +79 0 0 +80 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 4 +57 0 0 +56 0 0 +80 0 0 +81 0 0 +SURF 0x30 +mat 16 +refs 4 +58 0 0 +57 0 0 +81 0 0 +82 0 0 +SURF 0x30 +mat 16 +refs 4 +59 0 0 +58 0 0 +82 0 0 +83 0 0 +SURF 0x30 +mat 16 +refs 4 +59 0 0 +83 0 0 +84 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 4 +61 0 0 +60 0 0 +84 0 0 +85 0 0 +SURF 0x30 +mat 16 +refs 4 +62 0 0 +61 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 16 +refs 4 +63 0 0 +62 0 0 +86 0 0 +87 0 0 +SURF 0x30 +mat 16 +refs 4 +64 0 0 +63 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 16 +refs 4 +65 0 0 +64 0 0 +88 0 0 +89 0 0 +SURF 0x30 +mat 16 +refs 4 +66 0 0 +65 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 16 +refs 4 +67 0 0 +66 0 0 +90 0 0 +91 0 0 +SURF 0x30 +mat 16 +refs 4 +68 0 0 +67 0 0 +91 0 0 +92 0 0 +SURF 0x30 +mat 16 +refs 4 +69 0 0 +68 0 0 +92 0 0 +93 0 0 +SURF 0x30 +mat 16 +refs 4 +70 0 0 +69 0 0 +93 0 0 +94 0 0 +SURF 0x30 +mat 16 +refs 4 +71 0 0 +70 0 0 +94 0 0 +95 0 0 +SURF 0x30 +mat 16 +refs 4 +71 0 0 +95 0 0 +73 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 4 +73 0 0 +97 0 0 +96 0 0 +72 0 0 +SURF 0x30 +mat 16 +refs 4 +72 0 0 +96 0 0 +98 0 0 +74 0 0 +SURF 0x30 +mat 16 +refs 4 +75 0 0 +74 0 0 +98 0 0 +99 0 0 +SURF 0x30 +mat 16 +refs 4 +75 0 0 +99 0 0 +100 0 0 +76 0 0 +SURF 0x30 +mat 16 +refs 4 +77 0 0 +76 0 0 +100 0 0 +101 0 0 +SURF 0x30 +mat 16 +refs 4 +78 0 0 +77 0 0 +101 0 0 +102 0 0 +SURF 0x30 +mat 16 +refs 4 +79 0 0 +78 0 0 +102 0 0 +103 0 0 +SURF 0x30 +mat 16 +refs 4 +79 0 0 +103 0 0 +104 0 0 +80 0 0 +SURF 0x30 +mat 16 +refs 4 +81 0 0 +80 0 0 +104 0 0 +105 0 0 +SURF 0x30 +mat 16 +refs 4 +82 0 0 +81 0 0 +105 0 0 +106 0 0 +SURF 0x30 +mat 16 +refs 4 +83 0 0 +82 0 0 +106 0 0 +107 0 0 +SURF 0x30 +mat 16 +refs 4 +83 0 0 +107 0 0 +108 0 0 +84 0 0 +SURF 0x30 +mat 16 +refs 4 +85 0 0 +84 0 0 +108 0 0 +109 0 0 +SURF 0x30 +mat 16 +refs 4 +86 0 0 +85 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 16 +refs 4 +87 0 0 +86 0 0 +110 0 0 +111 0 0 +SURF 0x30 +mat 16 +refs 4 +88 0 0 +87 0 0 +111 0 0 +112 0 0 +SURF 0x30 +mat 16 +refs 4 +89 0 0 +88 0 0 +112 0 0 +113 0 0 +SURF 0x30 +mat 16 +refs 4 +90 0 0 +89 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 16 +refs 4 +91 0 0 +90 0 0 +114 0 0 +115 0 0 +SURF 0x30 +mat 16 +refs 4 +92 0 0 +91 0 0 +115 0 0 +116 0 0 +SURF 0x30 +mat 16 +refs 4 +93 0 0 +92 0 0 +116 0 0 +117 0 0 +SURF 0x30 +mat 16 +refs 4 +94 0 0 +93 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 16 +refs 4 +95 0 0 +94 0 0 +118 0 0 +119 0 0 +SURF 0x30 +mat 16 +refs 4 +95 0 0 +119 0 0 +97 0 0 +73 0 0 +SURF 0x30 +mat 16 +refs 4 +121 0 0 +144 0 0 +145 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 4 +122 0 0 +146 0 0 +144 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 4 +122 0 0 +123 0 0 +147 0 0 +146 0 0 +SURF 0x30 +mat 16 +refs 4 +124 0 0 +148 0 0 +147 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 4 +124 0 0 +125 0 0 +149 0 0 +148 0 0 +SURF 0x30 +mat 16 +refs 4 +125 0 0 +126 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 16 +refs 4 +126 0 0 +127 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 16 +refs 4 +128 0 0 +152 0 0 +151 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 4 +128 0 0 +129 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 16 +refs 4 +129 0 0 +130 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 16 +refs 4 +130 0 0 +131 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 16 +refs 4 +132 0 0 +156 0 0 +155 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 4 +132 0 0 +133 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 16 +refs 4 +133 0 0 +134 0 0 +158 0 0 +157 0 0 +SURF 0x30 +mat 16 +refs 4 +134 0 0 +135 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 16 +refs 4 +135 0 0 +136 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 16 +refs 4 +136 0 0 +137 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 16 +refs 4 +137 0 0 +138 0 0 +162 0 0 +161 0 0 +SURF 0x30 +mat 16 +refs 4 +138 0 0 +139 0 0 +163 0 0 +162 0 0 +SURF 0x30 +mat 16 +refs 4 +139 0 0 +140 0 0 +164 0 0 +163 0 0 +SURF 0x30 +mat 16 +refs 4 +140 0 0 +141 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 16 +refs 4 +141 0 0 +142 0 0 +166 0 0 +165 0 0 +SURF 0x30 +mat 16 +refs 4 +142 0 0 +143 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 16 +refs 4 +120 0 0 +145 0 0 +167 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 4 +144 0 0 +168 0 0 +169 0 0 +145 0 0 +SURF 0x30 +mat 16 +refs 4 +146 0 0 +170 0 0 +168 0 0 +144 0 0 +SURF 0x30 +mat 16 +refs 4 +146 0 0 +147 0 0 +171 0 0 +170 0 0 +SURF 0x30 +mat 16 +refs 4 +148 0 0 +172 0 0 +171 0 0 +147 0 0 +SURF 0x30 +mat 16 +refs 4 +148 0 0 +149 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 16 +refs 4 +149 0 0 +150 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 16 +refs 4 +150 0 0 +151 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 16 +refs 4 +152 0 0 +176 0 0 +175 0 0 +151 0 0 +SURF 0x30 +mat 16 +refs 4 +152 0 0 +153 0 0 +177 0 0 +176 0 0 +SURF 0x30 +mat 16 +refs 4 +153 0 0 +154 0 0 +178 0 0 +177 0 0 +SURF 0x30 +mat 16 +refs 4 +154 0 0 +155 0 0 +179 0 0 +178 0 0 +SURF 0x30 +mat 16 +refs 4 +156 0 0 +180 0 0 +179 0 0 +155 0 0 +SURF 0x30 +mat 16 +refs 4 +156 0 0 +157 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 16 +refs 4 +157 0 0 +158 0 0 +182 0 0 +181 0 0 +SURF 0x30 +mat 16 +refs 4 +158 0 0 +159 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 16 +refs 4 +159 0 0 +160 0 0 +184 0 0 +183 0 0 +SURF 0x30 +mat 16 +refs 4 +160 0 0 +161 0 0 +185 0 0 +184 0 0 +SURF 0x30 +mat 16 +refs 4 +161 0 0 +162 0 0 +186 0 0 +185 0 0 +SURF 0x30 +mat 16 +refs 4 +162 0 0 +163 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 16 +refs 4 +163 0 0 +164 0 0 +188 0 0 +187 0 0 +SURF 0x30 +mat 16 +refs 4 +164 0 0 +165 0 0 +189 0 0 +188 0 0 +SURF 0x30 +mat 16 +refs 4 +165 0 0 +166 0 0 +190 0 0 +189 0 0 +SURF 0x30 +mat 16 +refs 4 +166 0 0 +167 0 0 +191 0 0 +190 0 0 +SURF 0x30 +mat 16 +refs 4 +145 0 0 +169 0 0 +191 0 0 +167 0 0 +SURF 0x30 +mat 16 +refs 4 +218 0 0 +24 0 0 +217 0 0 +264 0 0 +SURF 0x30 +mat 16 +refs 4 +0 0 0 +218 0 0 +264 0 0 +192 0 0 +SURF 0x30 +mat 16 +refs 4 +264 0 0 +217 0 0 +25 0 0 +216 0 0 +SURF 0x30 +mat 16 +refs 4 +192 0 0 +264 0 0 +216 0 0 +1 0 0 +SURF 0x30 +mat 16 +refs 4 +216 0 0 +25 0 0 +220 0 0 +265 0 0 +SURF 0x30 +mat 16 +refs 4 +1 0 0 +216 0 0 +265 0 0 +193 0 0 +SURF 0x30 +mat 16 +refs 4 +265 0 0 +220 0 0 +26 0 0 +219 0 0 +SURF 0x30 +mat 16 +refs 4 +193 0 0 +265 0 0 +219 0 0 +2 0 0 +SURF 0x30 +mat 16 +refs 4 +194 0 0 +2 0 0 +219 0 0 +266 0 0 +SURF 0x30 +mat 16 +refs 4 +3 0 0 +194 0 0 +266 0 0 +222 0 0 +SURF 0x30 +mat 16 +refs 4 +266 0 0 +219 0 0 +26 0 0 +221 0 0 +SURF 0x30 +mat 16 +refs 4 +222 0 0 +266 0 0 +221 0 0 +27 0 0 +SURF 0x30 +mat 16 +refs 4 +222 0 0 +27 0 0 +224 0 0 +267 0 0 +SURF 0x30 +mat 16 +refs 4 +3 0 0 +222 0 0 +267 0 0 +195 0 0 +SURF 0x30 +mat 16 +refs 4 +267 0 0 +224 0 0 +28 0 0 +223 0 0 +SURF 0x30 +mat 16 +refs 4 +195 0 0 +267 0 0 +223 0 0 +4 0 0 +SURF 0x30 +mat 16 +refs 4 +196 0 0 +4 0 0 +223 0 0 +268 0 0 +SURF 0x30 +mat 16 +refs 4 +5 0 0 +196 0 0 +268 0 0 +226 0 0 +SURF 0x30 +mat 16 +refs 4 +268 0 0 +223 0 0 +28 0 0 +225 0 0 +SURF 0x30 +mat 16 +refs 4 +226 0 0 +268 0 0 +225 0 0 +29 0 0 +SURF 0x30 +mat 16 +refs 4 +197 0 0 +5 0 0 +226 0 0 +269 0 0 +SURF 0x30 +mat 16 +refs 4 +6 0 0 +197 0 0 +269 0 0 +228 0 0 +SURF 0x30 +mat 16 +refs 4 +269 0 0 +226 0 0 +29 0 0 +227 0 0 +SURF 0x30 +mat 16 +refs 4 +228 0 0 +269 0 0 +227 0 0 +30 0 0 +SURF 0x30 +mat 16 +refs 4 +198 0 0 +6 0 0 +228 0 0 +270 0 0 +SURF 0x30 +mat 16 +refs 4 +7 0 0 +198 0 0 +270 0 0 +230 0 0 +SURF 0x30 +mat 16 +refs 4 +270 0 0 +228 0 0 +30 0 0 +229 0 0 +SURF 0x30 +mat 16 +refs 4 +230 0 0 +270 0 0 +229 0 0 +31 0 0 +SURF 0x30 +mat 16 +refs 4 +230 0 0 +31 0 0 +232 0 0 +271 0 0 +SURF 0x30 +mat 16 +refs 4 +7 0 0 +230 0 0 +271 0 0 +199 0 0 +SURF 0x30 +mat 16 +refs 4 +271 0 0 +232 0 0 +32 0 0 +231 0 0 +SURF 0x30 +mat 16 +refs 4 +199 0 0 +271 0 0 +231 0 0 +8 0 0 +SURF 0x30 +mat 16 +refs 4 +200 0 0 +8 0 0 +231 0 0 +272 0 0 +SURF 0x30 +mat 16 +refs 4 +9 0 0 +200 0 0 +272 0 0 +234 0 0 +SURF 0x30 +mat 16 +refs 4 +272 0 0 +231 0 0 +32 0 0 +233 0 0 +SURF 0x30 +mat 16 +refs 4 +234 0 0 +272 0 0 +233 0 0 +33 0 0 +SURF 0x30 +mat 16 +refs 4 +201 0 0 +9 0 0 +234 0 0 +273 0 0 +SURF 0x30 +mat 16 +refs 4 +10 0 0 +201 0 0 +273 0 0 +236 0 0 +SURF 0x30 +mat 16 +refs 4 +273 0 0 +234 0 0 +33 0 0 +235 0 0 +SURF 0x30 +mat 16 +refs 4 +236 0 0 +273 0 0 +235 0 0 +34 0 0 +SURF 0x30 +mat 16 +refs 4 +202 0 0 +10 0 0 +236 0 0 +274 0 0 +SURF 0x30 +mat 16 +refs 4 +11 0 0 +202 0 0 +274 0 0 +238 0 0 +SURF 0x30 +mat 16 +refs 4 +274 0 0 +236 0 0 +34 0 0 +237 0 0 +SURF 0x30 +mat 16 +refs 4 +238 0 0 +274 0 0 +237 0 0 +35 0 0 +SURF 0x30 +mat 16 +refs 4 +238 0 0 +35 0 0 +240 0 0 +275 0 0 +SURF 0x30 +mat 16 +refs 4 +11 0 0 +238 0 0 +275 0 0 +203 0 0 +SURF 0x30 +mat 16 +refs 4 +275 0 0 +240 0 0 +36 0 0 +239 0 0 +SURF 0x30 +mat 16 +refs 4 +203 0 0 +275 0 0 +239 0 0 +12 0 0 +SURF 0x30 +mat 16 +refs 4 +204 0 0 +12 0 0 +239 0 0 +276 0 0 +SURF 0x30 +mat 16 +refs 4 +13 0 0 +204 0 0 +276 0 0 +242 0 0 +SURF 0x30 +mat 16 +refs 4 +276 0 0 +239 0 0 +36 0 0 +241 0 0 +SURF 0x30 +mat 16 +refs 4 +242 0 0 +276 0 0 +241 0 0 +37 0 0 +SURF 0x30 +mat 16 +refs 4 +205 0 0 +13 0 0 +242 0 0 +277 0 0 +SURF 0x30 +mat 16 +refs 4 +14 0 0 +205 0 0 +277 0 0 +244 0 0 +SURF 0x30 +mat 16 +refs 4 +277 0 0 +242 0 0 +37 0 0 +243 0 0 +SURF 0x30 +mat 16 +refs 4 +244 0 0 +277 0 0 +243 0 0 +38 0 0 +SURF 0x30 +mat 16 +refs 4 +206 0 0 +14 0 0 +244 0 0 +278 0 0 +SURF 0x30 +mat 16 +refs 4 +15 0 0 +206 0 0 +278 0 0 +246 0 0 +SURF 0x30 +mat 16 +refs 4 +278 0 0 +244 0 0 +38 0 0 +245 0 0 +SURF 0x30 +mat 16 +refs 4 +246 0 0 +278 0 0 +245 0 0 +39 0 0 +SURF 0x30 +mat 16 +refs 4 +207 0 0 +15 0 0 +246 0 0 +279 0 0 +SURF 0x30 +mat 16 +refs 4 +16 0 0 +207 0 0 +279 0 0 +248 0 0 +SURF 0x30 +mat 16 +refs 4 +279 0 0 +246 0 0 +39 0 0 +247 0 0 +SURF 0x30 +mat 16 +refs 4 +248 0 0 +279 0 0 +247 0 0 +40 0 0 +SURF 0x30 +mat 16 +refs 4 +208 0 0 +16 0 0 +248 0 0 +280 0 0 +SURF 0x30 +mat 16 +refs 4 +17 0 0 +208 0 0 +280 0 0 +250 0 0 +SURF 0x30 +mat 16 +refs 4 +280 0 0 +248 0 0 +40 0 0 +249 0 0 +SURF 0x30 +mat 16 +refs 4 +250 0 0 +280 0 0 +249 0 0 +41 0 0 +SURF 0x30 +mat 16 +refs 4 +209 0 0 +17 0 0 +250 0 0 +281 0 0 +SURF 0x30 +mat 16 +refs 4 +18 0 0 +209 0 0 +281 0 0 +252 0 0 +SURF 0x30 +mat 16 +refs 4 +281 0 0 +250 0 0 +41 0 0 +251 0 0 +SURF 0x30 +mat 16 +refs 4 +252 0 0 +281 0 0 +251 0 0 +42 0 0 +SURF 0x30 +mat 16 +refs 4 +210 0 0 +18 0 0 +252 0 0 +282 0 0 +SURF 0x30 +mat 16 +refs 4 +19 0 0 +210 0 0 +282 0 0 +254 0 0 +SURF 0x30 +mat 16 +refs 4 +282 0 0 +252 0 0 +42 0 0 +253 0 0 +SURF 0x30 +mat 16 +refs 4 +254 0 0 +282 0 0 +253 0 0 +43 0 0 +SURF 0x30 +mat 16 +refs 4 +211 0 0 +19 0 0 +254 0 0 +283 0 0 +SURF 0x30 +mat 16 +refs 4 +20 0 0 +211 0 0 +283 0 0 +256 0 0 +SURF 0x30 +mat 16 +refs 4 +283 0 0 +254 0 0 +43 0 0 +255 0 0 +SURF 0x30 +mat 16 +refs 4 +256 0 0 +283 0 0 +255 0 0 +44 0 0 +SURF 0x30 +mat 16 +refs 4 +212 0 0 +20 0 0 +256 0 0 +284 0 0 +SURF 0x30 +mat 16 +refs 4 +21 0 0 +212 0 0 +284 0 0 +258 0 0 +SURF 0x30 +mat 16 +refs 4 +284 0 0 +256 0 0 +44 0 0 +257 0 0 +SURF 0x30 +mat 16 +refs 4 +258 0 0 +284 0 0 +257 0 0 +45 0 0 +SURF 0x30 +mat 16 +refs 4 +213 0 0 +21 0 0 +258 0 0 +285 0 0 +SURF 0x30 +mat 16 +refs 4 +22 0 0 +213 0 0 +285 0 0 +260 0 0 +SURF 0x30 +mat 16 +refs 4 +285 0 0 +258 0 0 +45 0 0 +259 0 0 +SURF 0x30 +mat 16 +refs 4 +260 0 0 +285 0 0 +259 0 0 +46 0 0 +SURF 0x30 +mat 16 +refs 4 +214 0 0 +22 0 0 +260 0 0 +286 0 0 +SURF 0x30 +mat 16 +refs 4 +23 0 0 +214 0 0 +286 0 0 +262 0 0 +SURF 0x30 +mat 16 +refs 4 +286 0 0 +260 0 0 +46 0 0 +261 0 0 +SURF 0x30 +mat 16 +refs 4 +262 0 0 +286 0 0 +261 0 0 +47 0 0 +SURF 0x30 +mat 16 +refs 4 +218 0 0 +0 0 0 +215 0 0 +287 0 0 +SURF 0x30 +mat 16 +refs 4 +24 0 0 +218 0 0 +287 0 0 +263 0 0 +SURF 0x30 +mat 16 +refs 4 +287 0 0 +215 0 0 +23 0 0 +262 0 0 +SURF 0x30 +mat 16 +refs 4 +263 0 0 +287 0 0 +262 0 0 +47 0 0 +SURF 0x30 +mat 16 +refs 3 +217 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +25 0 0 +217 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +217 0 0 +24 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +220 0 0 +49 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +26 0 0 +220 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +220 0 0 +25 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +221 0 0 +50 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +27 0 0 +221 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +221 0 0 +26 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +224 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +28 0 0 +224 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +224 0 0 +27 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +225 0 0 +52 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +29 0 0 +225 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +225 0 0 +28 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +227 0 0 +53 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +30 0 0 +227 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +227 0 0 +29 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +229 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +31 0 0 +229 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +229 0 0 +30 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +232 0 0 +55 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +32 0 0 +232 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +232 0 0 +31 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +233 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +33 0 0 +233 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +233 0 0 +32 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +235 0 0 +57 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +34 0 0 +235 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +235 0 0 +33 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +237 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +35 0 0 +237 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +237 0 0 +34 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +240 0 0 +59 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +36 0 0 +240 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +240 0 0 +35 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +241 0 0 +60 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +37 0 0 +241 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +241 0 0 +36 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +243 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +38 0 0 +243 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +243 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +245 0 0 +62 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +39 0 0 +245 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +245 0 0 +38 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +247 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +40 0 0 +247 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +247 0 0 +39 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +249 0 0 +64 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +41 0 0 +249 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +249 0 0 +40 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +251 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +42 0 0 +251 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +251 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +253 0 0 +66 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +43 0 0 +253 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +253 0 0 +42 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +255 0 0 +67 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +44 0 0 +255 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +255 0 0 +43 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +257 0 0 +68 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +45 0 0 +257 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +257 0 0 +44 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +259 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +46 0 0 +259 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +259 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +261 0 0 +70 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +47 0 0 +261 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +261 0 0 +46 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +263 0 0 +71 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +24 0 0 +263 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +263 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +192 0 0 +121 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 3 +0 0 0 +192 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 3 +192 0 0 +1 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +193 0 0 +122 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +1 0 0 +193 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +193 0 0 +2 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +194 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +2 0 0 +194 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +194 0 0 +3 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +195 0 0 +124 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +3 0 0 +195 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +195 0 0 +4 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +196 0 0 +125 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +4 0 0 +196 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +196 0 0 +5 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +197 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +5 0 0 +197 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +197 0 0 +6 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +198 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +6 0 0 +198 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +198 0 0 +7 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +199 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +7 0 0 +199 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +199 0 0 +8 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +200 0 0 +129 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +8 0 0 +200 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +200 0 0 +9 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +201 0 0 +130 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +9 0 0 +201 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +201 0 0 +10 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +202 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +10 0 0 +202 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +202 0 0 +11 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +203 0 0 +132 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +11 0 0 +203 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +203 0 0 +12 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +204 0 0 +133 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +12 0 0 +204 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +204 0 0 +13 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +205 0 0 +134 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +13 0 0 +205 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +205 0 0 +14 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +206 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +14 0 0 +206 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +206 0 0 +15 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +207 0 0 +136 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +15 0 0 +207 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +207 0 0 +16 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +208 0 0 +137 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +16 0 0 +208 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +208 0 0 +17 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +209 0 0 +138 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +17 0 0 +209 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +209 0 0 +18 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +210 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +18 0 0 +210 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +210 0 0 +19 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +211 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +19 0 0 +211 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +211 0 0 +20 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +212 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +20 0 0 +212 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +212 0 0 +21 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +213 0 0 +142 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +21 0 0 +213 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +213 0 0 +22 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +214 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +22 0 0 +214 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +214 0 0 +23 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +215 0 0 +120 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +23 0 0 +215 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +215 0 0 +0 0 0 +120 0 0 +kids 0 +OBJECT poly +name "rwheel.R" +data 10 +Circle.034 +crease 30.000000 +numvert 288 +2.954988 0.666259 -0.588875 +3.013092 0.590537 -0.588875 +3.049618 0.502356 -0.588875 +3.062076 0.407726 -0.588874 +3.049618 0.313097 -0.588874 +3.013092 0.224916 -0.588874 +2.954988 0.149194 -0.588874 +2.879266 0.09109 -0.588874 +2.791085 0.054564 -0.588874 +2.696455 0.042106 -0.588874 +2.601826 0.054564 -0.588874 +2.513645 0.09109 -0.588874 +2.437923 0.149194 -0.588874 +2.379819 0.224916 -0.588874 +2.343293 0.313097 -0.588874 +2.330835 0.407726 -0.588874 +2.343293 0.502356 -0.588875 +2.379819 0.590537 -0.588875 +2.437922 0.666259 -0.588875 +2.513645 0.724363 -0.588874 +2.601826 0.760889 -0.588874 +2.696455 0.773347 -0.588874 +2.791085 0.760889 -0.588874 +2.879265 0.724363 -0.588874 +2.954988 0.666259 -0.691027 +3.013092 0.590537 -0.691027 +3.049618 0.502356 -0.691027 +3.062076 0.407727 -0.691027 +3.049618 0.313097 -0.691027 +3.013092 0.224916 -0.691027 +2.954988 0.149194 -0.691027 +2.879266 0.09109 -0.691027 +2.791085 0.054564 -0.691027 +2.696455 0.042106 -0.691027 +2.601826 0.054564 -0.691027 +2.513645 0.09109 -0.691027 +2.437923 0.149194 -0.691027 +2.379819 0.224916 -0.691027 +2.343293 0.313097 -0.691027 +2.330835 0.407726 -0.691027 +2.343293 0.502356 -0.691027 +2.379819 0.590537 -0.691027 +2.437922 0.666259 -0.691027 +2.513645 0.724363 -0.691027 +2.601826 0.760889 -0.691027 +2.696455 0.773347 -0.691027 +2.791085 0.760889 -0.691027 +2.879265 0.724363 -0.691027 +2.932219 0.64349 -0.711892 +2.985205 0.574436 -0.711892 +3.018514 0.494022 -0.711892 +3.029875 0.407727 -0.711892 +3.018514 0.321431 -0.711892 +2.985205 0.241017 -0.711892 +2.932219 0.171963 -0.711892 +2.863165 0.118977 -0.711892 +2.782751 0.085668 -0.711892 +2.696455 0.074307 -0.711892 +2.61016 0.085668 -0.711892 +2.529746 0.118977 -0.711892 +2.460692 0.171963 -0.711892 +2.407706 0.241017 -0.711892 +2.374397 0.321431 -0.711892 +2.363036 0.407726 -0.711892 +2.374397 0.494022 -0.711892 +2.407705 0.574436 -0.711892 +2.460692 0.64349 -0.711892 +2.529745 0.696476 -0.711892 +2.61016 0.729785 -0.711892 +2.696455 0.741146 -0.711892 +2.782751 0.729785 -0.711892 +2.863165 0.696477 -0.711892 +2.94144 0.549169 -0.732756 +2.896485 0.607756 -0.732756 +2.969701 0.480942 -0.732756 +2.97934 0.407727 -0.732756 +2.969701 0.334511 -0.732756 +2.941441 0.266284 -0.732756 +2.896485 0.207697 -0.732756 +2.837898 0.162741 -0.732756 +2.769671 0.134481 -0.732756 +2.696455 0.124842 -0.732756 +2.62324 0.134481 -0.732756 +2.555013 0.162741 -0.732756 +2.496426 0.207697 -0.732756 +2.45147 0.266284 -0.732756 +2.42321 0.334511 -0.732756 +2.413571 0.407726 -0.732756 +2.42321 0.480942 -0.732756 +2.45147 0.549169 -0.732756 +2.496426 0.607756 -0.732756 +2.555013 0.652712 -0.732756 +2.623239 0.680972 -0.732756 +2.696455 0.690611 -0.732756 +2.769671 0.680972 -0.732756 +2.837897 0.652712 -0.732756 +2.927891 0.541346 -0.720238 +2.885421 0.596693 -0.720238 +2.954588 0.476893 -0.720238 +2.963694 0.407727 -0.720238 +2.954588 0.33856 -0.720237 +2.927891 0.274107 -0.720238 +2.885421 0.218761 -0.720238 +2.830075 0.176291 -0.720238 +2.765622 0.149594 -0.720238 +2.696455 0.140488 -0.720238 +2.627289 0.149594 -0.720238 +2.562836 0.176291 -0.720238 +2.507489 0.21876 -0.720238 +2.46502 0.274107 -0.720238 +2.438323 0.33856 -0.720237 +2.429217 0.407726 -0.720238 +2.438323 0.476893 -0.720238 +2.46502 0.541346 -0.720238 +2.507489 0.596693 -0.720238 +2.562836 0.639162 -0.720238 +2.627289 0.665859 -0.720238 +2.696455 0.674965 -0.720238 +2.765622 0.665859 -0.720238 +2.830074 0.639162 -0.720238 +2.932299 0.64357 -0.563838 +2.985304 0.574493 -0.563838 +3.018624 0.494051 -0.563838 +3.029989 0.407727 -0.563838 +3.018624 0.321402 -0.563838 +2.985304 0.24096 -0.563838 +2.932299 0.171883 -0.563838 +2.863222 0.118878 -0.563838 +2.78278 0.085558 -0.563838 +2.696455 0.074193 -0.563838 +2.610131 0.085558 -0.563838 +2.529689 0.118878 -0.563838 +2.460612 0.171883 -0.563838 +2.407607 0.24096 -0.563838 +2.374287 0.321402 -0.563838 +2.362922 0.407726 -0.563838 +2.374287 0.494051 -0.563838 +2.407607 0.574493 -0.563838 +2.460612 0.64357 -0.563838 +2.529689 0.696575 -0.563838 +2.61013 0.729895 -0.563838 +2.696455 0.74126 -0.563838 +2.78278 0.729895 -0.563838 +2.863222 0.696575 -0.563838 +2.935243 0.54559 -0.538801 +2.891424 0.602695 -0.538801 +2.962788 0.47909 -0.538801 +2.972183 0.407727 -0.538801 +2.962788 0.336363 -0.538801 +2.935243 0.269863 -0.538801 +2.891424 0.212758 -0.538801 +2.834319 0.168939 -0.538801 +2.767819 0.141394 -0.538801 +2.696455 0.131999 -0.538801 +2.625092 0.141394 -0.538801 +2.558592 0.168939 -0.538801 +2.501487 0.212757 -0.538801 +2.457668 0.269863 -0.538801 +2.430123 0.336363 -0.538801 +2.420728 0.407726 -0.538801 +2.430123 0.47909 -0.538801 +2.457668 0.54559 -0.538801 +2.501486 0.602695 -0.538801 +2.558591 0.646514 -0.538801 +2.625092 0.674059 -0.538801 +2.696455 0.683454 -0.538801 +2.767819 0.674059 -0.538801 +2.834319 0.646514 -0.538801 +2.929198 0.5421 -0.538801 +2.886489 0.59776 -0.538801 +2.956046 0.477284 -0.538801 +2.965203 0.407727 -0.538801 +2.956046 0.33817 -0.538801 +2.929198 0.273353 -0.538801 +2.886489 0.217693 -0.538801 +2.830829 0.174984 -0.538801 +2.766013 0.148136 -0.538801 +2.696455 0.138979 -0.538801 +2.626898 0.148136 -0.538801 +2.562082 0.174984 -0.538801 +2.506422 0.217693 -0.538801 +2.463713 0.273353 -0.538801 +2.436865 0.338169 -0.538801 +2.427707 0.407726 -0.538801 +2.436865 0.477284 -0.538801 +2.463713 0.5421 -0.538801 +2.506422 0.59776 -0.538801 +2.562081 0.640469 -0.538801 +2.626898 0.667317 -0.538801 +2.696455 0.676474 -0.538801 +2.766012 0.667317 -0.538801 +2.830829 0.640469 -0.538801 +2.98404 0.628398 -0.571425 +3.031355 0.546447 -0.571425 +3.055847 0.455041 -0.571425 +3.055847 0.360412 -0.571425 +3.031355 0.269007 -0.571425 +2.98404 0.187055 -0.571425 +2.917127 0.120142 -0.571425 +2.835176 0.072827 -0.571425 +2.74377 0.048335 -0.571425 +2.649141 0.048335 -0.571425 +2.557736 0.072827 -0.571425 +2.475784 0.120142 -0.571425 +2.408871 0.187055 -0.571425 +2.361556 0.269007 -0.571425 +2.337064 0.360412 -0.571425 +2.337064 0.455041 -0.571425 +2.361556 0.546446 -0.571425 +2.40887 0.628398 -0.571425 +2.475784 0.695311 -0.571425 +2.557735 0.742626 -0.571425 +2.64914 0.767118 -0.571425 +2.74377 0.767118 -0.571425 +2.835175 0.742626 -0.571425 +2.917127 0.695311 -0.571425 +3.013092 0.590537 -0.639951 +2.98404 0.628398 -0.708477 +2.954988 0.666259 -0.639951 +3.049618 0.502356 -0.639951 +3.031355 0.546446 -0.708477 +3.055847 0.455041 -0.708477 +3.062076 0.407727 -0.639951 +3.049618 0.313097 -0.639951 +3.055847 0.360412 -0.708477 +3.031355 0.269007 -0.708477 +3.013092 0.224916 -0.639951 +2.98404 0.187055 -0.708477 +2.954988 0.149194 -0.639951 +2.917127 0.120142 -0.708477 +2.879266 0.09109 -0.639951 +2.791085 0.054564 -0.639951 +2.835176 0.072827 -0.708477 +2.74377 0.048335 -0.708477 +2.696455 0.042106 -0.639951 +2.649141 0.048335 -0.708477 +2.601826 0.054564 -0.639951 +2.557736 0.072827 -0.708477 +2.513645 0.09109 -0.639951 +2.437923 0.149194 -0.639951 +2.475784 0.120142 -0.708477 +2.408871 0.187055 -0.708477 +2.379819 0.224916 -0.639951 +2.361556 0.269007 -0.708477 +2.343293 0.313097 -0.639951 +2.337064 0.360412 -0.708477 +2.330835 0.407726 -0.639951 +2.337064 0.455041 -0.708477 +2.343293 0.502356 -0.639951 +2.361556 0.546446 -0.708477 +2.379819 0.590537 -0.639951 +2.40887 0.628398 -0.708477 +2.437922 0.666259 -0.639951 +2.475784 0.695311 -0.708477 +2.513645 0.724363 -0.639951 +2.557735 0.742626 -0.708477 +2.601826 0.760889 -0.639951 +2.64914 0.767118 -0.708477 +2.696455 0.773347 -0.639951 +2.74377 0.767118 -0.708477 +2.791085 0.760889 -0.639951 +2.835175 0.742626 -0.708477 +2.879265 0.724363 -0.639951 +2.917127 0.695311 -0.708477 +2.98404 0.628398 -0.639951 +3.031355 0.546446 -0.639951 +3.055847 0.455041 -0.639951 +3.055847 0.360412 -0.639951 +3.031355 0.269007 -0.639951 +2.98404 0.187055 -0.639951 +2.917127 0.120142 -0.639951 +2.835176 0.072827 -0.639951 +2.74377 0.048335 -0.639951 +2.649141 0.048335 -0.639951 +2.557736 0.072827 -0.639951 +2.475784 0.120142 -0.639951 +2.408871 0.187055 -0.639951 +2.361556 0.269007 -0.639951 +2.337064 0.360412 -0.639951 +2.337064 0.455041 -0.639951 +2.361556 0.546446 -0.639951 +2.40887 0.628398 -0.639951 +2.475784 0.695311 -0.639951 +2.557735 0.742626 -0.639951 +2.64914 0.767118 -0.639951 +2.74377 0.767118 -0.639951 +2.835175 0.742626 -0.639951 +2.917127 0.695311 -0.639951 +numsurf 336 +SURF 0x30 +mat 16 +refs 4 +48 0 0 +49 0 0 +72 0 0 +73 0 0 +SURF 0x30 +mat 16 +refs 4 +49 0 0 +50 0 0 +74 0 0 +72 0 0 +SURF 0x30 +mat 16 +refs 4 +51 0 0 +75 0 0 +74 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 4 +51 0 0 +52 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 16 +refs 4 +53 0 0 +77 0 0 +76 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 4 +54 0 0 +78 0 0 +77 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 4 +55 0 0 +79 0 0 +78 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 4 +55 0 0 +56 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 16 +refs 4 +57 0 0 +81 0 0 +80 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 4 +58 0 0 +82 0 0 +81 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 4 +59 0 0 +83 0 0 +82 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 4 +59 0 0 +60 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 16 +refs 4 +61 0 0 +85 0 0 +84 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 4 +62 0 0 +86 0 0 +85 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 4 +63 0 0 +87 0 0 +86 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 4 +64 0 0 +88 0 0 +87 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 4 +65 0 0 +89 0 0 +88 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 4 +66 0 0 +90 0 0 +89 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 4 +67 0 0 +91 0 0 +90 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 4 +68 0 0 +92 0 0 +91 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 4 +69 0 0 +93 0 0 +92 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 4 +70 0 0 +94 0 0 +93 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 4 +71 0 0 +95 0 0 +94 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 4 +71 0 0 +48 0 0 +73 0 0 +95 0 0 +SURF 0x30 +mat 16 +refs 4 +73 0 0 +72 0 0 +96 0 0 +97 0 0 +SURF 0x30 +mat 16 +refs 4 +72 0 0 +74 0 0 +98 0 0 +96 0 0 +SURF 0x30 +mat 16 +refs 4 +75 0 0 +99 0 0 +98 0 0 +74 0 0 +SURF 0x30 +mat 16 +refs 4 +75 0 0 +76 0 0 +100 0 0 +99 0 0 +SURF 0x30 +mat 16 +refs 4 +77 0 0 +101 0 0 +100 0 0 +76 0 0 +SURF 0x30 +mat 16 +refs 4 +78 0 0 +102 0 0 +101 0 0 +77 0 0 +SURF 0x30 +mat 16 +refs 4 +79 0 0 +103 0 0 +102 0 0 +78 0 0 +SURF 0x30 +mat 16 +refs 4 +79 0 0 +80 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 16 +refs 4 +81 0 0 +105 0 0 +104 0 0 +80 0 0 +SURF 0x30 +mat 16 +refs 4 +82 0 0 +106 0 0 +105 0 0 +81 0 0 +SURF 0x30 +mat 16 +refs 4 +83 0 0 +107 0 0 +106 0 0 +82 0 0 +SURF 0x30 +mat 16 +refs 4 +83 0 0 +84 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 16 +refs 4 +85 0 0 +109 0 0 +108 0 0 +84 0 0 +SURF 0x30 +mat 16 +refs 4 +86 0 0 +110 0 0 +109 0 0 +85 0 0 +SURF 0x30 +mat 16 +refs 4 +87 0 0 +111 0 0 +110 0 0 +86 0 0 +SURF 0x30 +mat 16 +refs 4 +88 0 0 +112 0 0 +111 0 0 +87 0 0 +SURF 0x30 +mat 16 +refs 4 +89 0 0 +113 0 0 +112 0 0 +88 0 0 +SURF 0x30 +mat 16 +refs 4 +90 0 0 +114 0 0 +113 0 0 +89 0 0 +SURF 0x30 +mat 16 +refs 4 +91 0 0 +115 0 0 +114 0 0 +90 0 0 +SURF 0x30 +mat 16 +refs 4 +92 0 0 +116 0 0 +115 0 0 +91 0 0 +SURF 0x30 +mat 16 +refs 4 +93 0 0 +117 0 0 +116 0 0 +92 0 0 +SURF 0x30 +mat 16 +refs 4 +94 0 0 +118 0 0 +117 0 0 +93 0 0 +SURF 0x30 +mat 16 +refs 4 +95 0 0 +119 0 0 +118 0 0 +94 0 0 +SURF 0x30 +mat 16 +refs 4 +95 0 0 +73 0 0 +97 0 0 +119 0 0 +SURF 0x30 +mat 16 +refs 4 +121 0 0 +120 0 0 +145 0 0 +144 0 0 +SURF 0x30 +mat 16 +refs 4 +122 0 0 +121 0 0 +144 0 0 +146 0 0 +SURF 0x30 +mat 16 +refs 4 +122 0 0 +146 0 0 +147 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 4 +124 0 0 +123 0 0 +147 0 0 +148 0 0 +SURF 0x30 +mat 16 +refs 4 +124 0 0 +148 0 0 +149 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 4 +125 0 0 +149 0 0 +150 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 4 +126 0 0 +150 0 0 +151 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 4 +128 0 0 +127 0 0 +151 0 0 +152 0 0 +SURF 0x30 +mat 16 +refs 4 +128 0 0 +152 0 0 +153 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 4 +129 0 0 +153 0 0 +154 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 4 +130 0 0 +154 0 0 +155 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 4 +132 0 0 +131 0 0 +155 0 0 +156 0 0 +SURF 0x30 +mat 16 +refs 4 +132 0 0 +156 0 0 +157 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 4 +133 0 0 +157 0 0 +158 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 4 +134 0 0 +158 0 0 +159 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 4 +135 0 0 +159 0 0 +160 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 4 +136 0 0 +160 0 0 +161 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 4 +137 0 0 +161 0 0 +162 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 4 +138 0 0 +162 0 0 +163 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 4 +139 0 0 +163 0 0 +164 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 4 +140 0 0 +164 0 0 +165 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 4 +141 0 0 +165 0 0 +166 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 4 +142 0 0 +166 0 0 +167 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 4 +120 0 0 +143 0 0 +167 0 0 +145 0 0 +SURF 0x30 +mat 16 +refs 4 +144 0 0 +145 0 0 +169 0 0 +168 0 0 +SURF 0x30 +mat 16 +refs 4 +146 0 0 +144 0 0 +168 0 0 +170 0 0 +SURF 0x30 +mat 16 +refs 4 +146 0 0 +170 0 0 +171 0 0 +147 0 0 +SURF 0x30 +mat 16 +refs 4 +148 0 0 +147 0 0 +171 0 0 +172 0 0 +SURF 0x30 +mat 16 +refs 4 +148 0 0 +172 0 0 +173 0 0 +149 0 0 +SURF 0x30 +mat 16 +refs 4 +149 0 0 +173 0 0 +174 0 0 +150 0 0 +SURF 0x30 +mat 16 +refs 4 +150 0 0 +174 0 0 +175 0 0 +151 0 0 +SURF 0x30 +mat 16 +refs 4 +152 0 0 +151 0 0 +175 0 0 +176 0 0 +SURF 0x30 +mat 16 +refs 4 +152 0 0 +176 0 0 +177 0 0 +153 0 0 +SURF 0x30 +mat 16 +refs 4 +153 0 0 +177 0 0 +178 0 0 +154 0 0 +SURF 0x30 +mat 16 +refs 4 +154 0 0 +178 0 0 +179 0 0 +155 0 0 +SURF 0x30 +mat 16 +refs 4 +156 0 0 +155 0 0 +179 0 0 +180 0 0 +SURF 0x30 +mat 16 +refs 4 +156 0 0 +180 0 0 +181 0 0 +157 0 0 +SURF 0x30 +mat 16 +refs 4 +157 0 0 +181 0 0 +182 0 0 +158 0 0 +SURF 0x30 +mat 16 +refs 4 +158 0 0 +182 0 0 +183 0 0 +159 0 0 +SURF 0x30 +mat 16 +refs 4 +159 0 0 +183 0 0 +184 0 0 +160 0 0 +SURF 0x30 +mat 16 +refs 4 +160 0 0 +184 0 0 +185 0 0 +161 0 0 +SURF 0x30 +mat 16 +refs 4 +161 0 0 +185 0 0 +186 0 0 +162 0 0 +SURF 0x30 +mat 16 +refs 4 +162 0 0 +186 0 0 +187 0 0 +163 0 0 +SURF 0x30 +mat 16 +refs 4 +163 0 0 +187 0 0 +188 0 0 +164 0 0 +SURF 0x30 +mat 16 +refs 4 +164 0 0 +188 0 0 +189 0 0 +165 0 0 +SURF 0x30 +mat 16 +refs 4 +165 0 0 +189 0 0 +190 0 0 +166 0 0 +SURF 0x30 +mat 16 +refs 4 +166 0 0 +190 0 0 +191 0 0 +167 0 0 +SURF 0x30 +mat 16 +refs 4 +145 0 0 +167 0 0 +191 0 0 +169 0 0 +SURF 0x30 +mat 16 +refs 4 +218 0 0 +264 0 0 +217 0 0 +24 0 0 +SURF 0x30 +mat 16 +refs 4 +0 0 0 +192 0 0 +264 0 0 +218 0 0 +SURF 0x30 +mat 16 +refs 4 +264 0 0 +216 0 0 +25 0 0 +217 0 0 +SURF 0x30 +mat 16 +refs 4 +192 0 0 +1 0 0 +216 0 0 +264 0 0 +SURF 0x30 +mat 16 +refs 4 +216 0 0 +265 0 0 +220 0 0 +25 0 0 +SURF 0x30 +mat 16 +refs 4 +1 0 0 +193 0 0 +265 0 0 +216 0 0 +SURF 0x30 +mat 16 +refs 4 +265 0 0 +219 0 0 +26 0 0 +220 0 0 +SURF 0x30 +mat 16 +refs 4 +193 0 0 +2 0 0 +219 0 0 +265 0 0 +SURF 0x30 +mat 16 +refs 4 +194 0 0 +266 0 0 +219 0 0 +2 0 0 +SURF 0x30 +mat 16 +refs 4 +3 0 0 +222 0 0 +266 0 0 +194 0 0 +SURF 0x30 +mat 16 +refs 4 +266 0 0 +221 0 0 +26 0 0 +219 0 0 +SURF 0x30 +mat 16 +refs 4 +222 0 0 +27 0 0 +221 0 0 +266 0 0 +SURF 0x30 +mat 16 +refs 4 +222 0 0 +267 0 0 +224 0 0 +27 0 0 +SURF 0x30 +mat 16 +refs 4 +3 0 0 +195 0 0 +267 0 0 +222 0 0 +SURF 0x30 +mat 16 +refs 4 +267 0 0 +223 0 0 +28 0 0 +224 0 0 +SURF 0x30 +mat 16 +refs 4 +195 0 0 +4 0 0 +223 0 0 +267 0 0 +SURF 0x30 +mat 16 +refs 4 +196 0 0 +268 0 0 +223 0 0 +4 0 0 +SURF 0x30 +mat 16 +refs 4 +5 0 0 +226 0 0 +268 0 0 +196 0 0 +SURF 0x30 +mat 16 +refs 4 +268 0 0 +225 0 0 +28 0 0 +223 0 0 +SURF 0x30 +mat 16 +refs 4 +226 0 0 +29 0 0 +225 0 0 +268 0 0 +SURF 0x30 +mat 16 +refs 4 +197 0 0 +269 0 0 +226 0 0 +5 0 0 +SURF 0x30 +mat 16 +refs 4 +6 0 0 +228 0 0 +269 0 0 +197 0 0 +SURF 0x30 +mat 16 +refs 4 +269 0 0 +227 0 0 +29 0 0 +226 0 0 +SURF 0x30 +mat 16 +refs 4 +228 0 0 +30 0 0 +227 0 0 +269 0 0 +SURF 0x30 +mat 16 +refs 4 +198 0 0 +270 0 0 +228 0 0 +6 0 0 +SURF 0x30 +mat 16 +refs 4 +7 0 0 +230 0 0 +270 0 0 +198 0 0 +SURF 0x30 +mat 16 +refs 4 +270 0 0 +229 0 0 +30 0 0 +228 0 0 +SURF 0x30 +mat 16 +refs 4 +230 0 0 +31 0 0 +229 0 0 +270 0 0 +SURF 0x30 +mat 16 +refs 4 +230 0 0 +271 0 0 +232 0 0 +31 0 0 +SURF 0x30 +mat 16 +refs 4 +7 0 0 +199 0 0 +271 0 0 +230 0 0 +SURF 0x30 +mat 16 +refs 4 +271 0 0 +231 0 0 +32 0 0 +232 0 0 +SURF 0x30 +mat 16 +refs 4 +199 0 0 +8 0 0 +231 0 0 +271 0 0 +SURF 0x30 +mat 16 +refs 4 +200 0 0 +272 0 0 +231 0 0 +8 0 0 +SURF 0x30 +mat 16 +refs 4 +9 0 0 +234 0 0 +272 0 0 +200 0 0 +SURF 0x30 +mat 16 +refs 4 +272 0 0 +233 0 0 +32 0 0 +231 0 0 +SURF 0x30 +mat 16 +refs 4 +234 0 0 +33 0 0 +233 0 0 +272 0 0 +SURF 0x30 +mat 16 +refs 4 +201 0 0 +273 0 0 +234 0 0 +9 0 0 +SURF 0x30 +mat 16 +refs 4 +10 0 0 +236 0 0 +273 0 0 +201 0 0 +SURF 0x30 +mat 16 +refs 4 +273 0 0 +235 0 0 +33 0 0 +234 0 0 +SURF 0x30 +mat 16 +refs 4 +236 0 0 +34 0 0 +235 0 0 +273 0 0 +SURF 0x30 +mat 16 +refs 4 +202 0 0 +274 0 0 +236 0 0 +10 0 0 +SURF 0x30 +mat 16 +refs 4 +11 0 0 +238 0 0 +274 0 0 +202 0 0 +SURF 0x30 +mat 16 +refs 4 +274 0 0 +237 0 0 +34 0 0 +236 0 0 +SURF 0x30 +mat 16 +refs 4 +238 0 0 +35 0 0 +237 0 0 +274 0 0 +SURF 0x30 +mat 16 +refs 4 +238 0 0 +275 0 0 +240 0 0 +35 0 0 +SURF 0x30 +mat 16 +refs 4 +11 0 0 +203 0 0 +275 0 0 +238 0 0 +SURF 0x30 +mat 16 +refs 4 +275 0 0 +239 0 0 +36 0 0 +240 0 0 +SURF 0x30 +mat 16 +refs 4 +203 0 0 +12 0 0 +239 0 0 +275 0 0 +SURF 0x30 +mat 16 +refs 4 +204 0 0 +276 0 0 +239 0 0 +12 0 0 +SURF 0x30 +mat 16 +refs 4 +13 0 0 +242 0 0 +276 0 0 +204 0 0 +SURF 0x30 +mat 16 +refs 4 +276 0 0 +241 0 0 +36 0 0 +239 0 0 +SURF 0x30 +mat 16 +refs 4 +242 0 0 +37 0 0 +241 0 0 +276 0 0 +SURF 0x30 +mat 16 +refs 4 +205 0 0 +277 0 0 +242 0 0 +13 0 0 +SURF 0x30 +mat 16 +refs 4 +14 0 0 +244 0 0 +277 0 0 +205 0 0 +SURF 0x30 +mat 16 +refs 4 +277 0 0 +243 0 0 +37 0 0 +242 0 0 +SURF 0x30 +mat 16 +refs 4 +244 0 0 +38 0 0 +243 0 0 +277 0 0 +SURF 0x30 +mat 16 +refs 4 +206 0 0 +278 0 0 +244 0 0 +14 0 0 +SURF 0x30 +mat 16 +refs 4 +15 0 0 +246 0 0 +278 0 0 +206 0 0 +SURF 0x30 +mat 16 +refs 4 +278 0 0 +245 0 0 +38 0 0 +244 0 0 +SURF 0x30 +mat 16 +refs 4 +246 0 0 +39 0 0 +245 0 0 +278 0 0 +SURF 0x30 +mat 16 +refs 4 +207 0 0 +279 0 0 +246 0 0 +15 0 0 +SURF 0x30 +mat 16 +refs 4 +16 0 0 +248 0 0 +279 0 0 +207 0 0 +SURF 0x30 +mat 16 +refs 4 +279 0 0 +247 0 0 +39 0 0 +246 0 0 +SURF 0x30 +mat 16 +refs 4 +248 0 0 +40 0 0 +247 0 0 +279 0 0 +SURF 0x30 +mat 16 +refs 4 +208 0 0 +280 0 0 +248 0 0 +16 0 0 +SURF 0x30 +mat 16 +refs 4 +17 0 0 +250 0 0 +280 0 0 +208 0 0 +SURF 0x30 +mat 16 +refs 4 +280 0 0 +249 0 0 +40 0 0 +248 0 0 +SURF 0x30 +mat 16 +refs 4 +250 0 0 +41 0 0 +249 0 0 +280 0 0 +SURF 0x30 +mat 16 +refs 4 +209 0 0 +281 0 0 +250 0 0 +17 0 0 +SURF 0x30 +mat 16 +refs 4 +18 0 0 +252 0 0 +281 0 0 +209 0 0 +SURF 0x30 +mat 16 +refs 4 +281 0 0 +251 0 0 +41 0 0 +250 0 0 +SURF 0x30 +mat 16 +refs 4 +252 0 0 +42 0 0 +251 0 0 +281 0 0 +SURF 0x30 +mat 16 +refs 4 +210 0 0 +282 0 0 +252 0 0 +18 0 0 +SURF 0x30 +mat 16 +refs 4 +19 0 0 +254 0 0 +282 0 0 +210 0 0 +SURF 0x30 +mat 16 +refs 4 +282 0 0 +253 0 0 +42 0 0 +252 0 0 +SURF 0x30 +mat 16 +refs 4 +254 0 0 +43 0 0 +253 0 0 +282 0 0 +SURF 0x30 +mat 16 +refs 4 +211 0 0 +283 0 0 +254 0 0 +19 0 0 +SURF 0x30 +mat 16 +refs 4 +20 0 0 +256 0 0 +283 0 0 +211 0 0 +SURF 0x30 +mat 16 +refs 4 +283 0 0 +255 0 0 +43 0 0 +254 0 0 +SURF 0x30 +mat 16 +refs 4 +256 0 0 +44 0 0 +255 0 0 +283 0 0 +SURF 0x30 +mat 16 +refs 4 +212 0 0 +284 0 0 +256 0 0 +20 0 0 +SURF 0x30 +mat 16 +refs 4 +21 0 0 +258 0 0 +284 0 0 +212 0 0 +SURF 0x30 +mat 16 +refs 4 +284 0 0 +257 0 0 +44 0 0 +256 0 0 +SURF 0x30 +mat 16 +refs 4 +258 0 0 +45 0 0 +257 0 0 +284 0 0 +SURF 0x30 +mat 16 +refs 4 +213 0 0 +285 0 0 +258 0 0 +21 0 0 +SURF 0x30 +mat 16 +refs 4 +22 0 0 +260 0 0 +285 0 0 +213 0 0 +SURF 0x30 +mat 16 +refs 4 +285 0 0 +259 0 0 +45 0 0 +258 0 0 +SURF 0x30 +mat 16 +refs 4 +260 0 0 +46 0 0 +259 0 0 +285 0 0 +SURF 0x30 +mat 16 +refs 4 +214 0 0 +286 0 0 +260 0 0 +22 0 0 +SURF 0x30 +mat 16 +refs 4 +23 0 0 +262 0 0 +286 0 0 +214 0 0 +SURF 0x30 +mat 16 +refs 4 +286 0 0 +261 0 0 +46 0 0 +260 0 0 +SURF 0x30 +mat 16 +refs 4 +262 0 0 +47 0 0 +261 0 0 +286 0 0 +SURF 0x30 +mat 16 +refs 4 +215 0 0 +0 0 0 +218 0 0 +287 0 0 +SURF 0x30 +mat 16 +refs 4 +24 0 0 +263 0 0 +287 0 0 +218 0 0 +SURF 0x30 +mat 16 +refs 4 +287 0 0 +262 0 0 +23 0 0 +215 0 0 +SURF 0x30 +mat 16 +refs 4 +263 0 0 +47 0 0 +262 0 0 +287 0 0 +SURF 0x30 +mat 16 +refs 3 +217 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 16 +refs 3 +25 0 0 +49 0 0 +217 0 0 +SURF 0x30 +mat 16 +refs 3 +217 0 0 +48 0 0 +24 0 0 +SURF 0x30 +mat 16 +refs 3 +220 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 16 +refs 3 +26 0 0 +50 0 0 +220 0 0 +SURF 0x30 +mat 16 +refs 3 +220 0 0 +49 0 0 +25 0 0 +SURF 0x30 +mat 16 +refs 3 +221 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 16 +refs 3 +27 0 0 +51 0 0 +221 0 0 +SURF 0x30 +mat 16 +refs 3 +221 0 0 +50 0 0 +26 0 0 +SURF 0x30 +mat 16 +refs 3 +224 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 16 +refs 3 +28 0 0 +52 0 0 +224 0 0 +SURF 0x30 +mat 16 +refs 3 +224 0 0 +51 0 0 +27 0 0 +SURF 0x30 +mat 16 +refs 3 +225 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 16 +refs 3 +29 0 0 +53 0 0 +225 0 0 +SURF 0x30 +mat 16 +refs 3 +225 0 0 +52 0 0 +28 0 0 +SURF 0x30 +mat 16 +refs 3 +227 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 16 +refs 3 +30 0 0 +54 0 0 +227 0 0 +SURF 0x30 +mat 16 +refs 3 +227 0 0 +53 0 0 +29 0 0 +SURF 0x30 +mat 16 +refs 3 +229 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 16 +refs 3 +31 0 0 +55 0 0 +229 0 0 +SURF 0x30 +mat 16 +refs 3 +229 0 0 +54 0 0 +30 0 0 +SURF 0x30 +mat 16 +refs 3 +232 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 16 +refs 3 +32 0 0 +56 0 0 +232 0 0 +SURF 0x30 +mat 16 +refs 3 +232 0 0 +55 0 0 +31 0 0 +SURF 0x30 +mat 16 +refs 3 +233 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 16 +refs 3 +33 0 0 +57 0 0 +233 0 0 +SURF 0x30 +mat 16 +refs 3 +233 0 0 +56 0 0 +32 0 0 +SURF 0x30 +mat 16 +refs 3 +235 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 16 +refs 3 +34 0 0 +58 0 0 +235 0 0 +SURF 0x30 +mat 16 +refs 3 +235 0 0 +57 0 0 +33 0 0 +SURF 0x30 +mat 16 +refs 3 +237 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 16 +refs 3 +35 0 0 +59 0 0 +237 0 0 +SURF 0x30 +mat 16 +refs 3 +237 0 0 +58 0 0 +34 0 0 +SURF 0x30 +mat 16 +refs 3 +240 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 16 +refs 3 +36 0 0 +60 0 0 +240 0 0 +SURF 0x30 +mat 16 +refs 3 +240 0 0 +59 0 0 +35 0 0 +SURF 0x30 +mat 16 +refs 3 +241 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 16 +refs 3 +37 0 0 +61 0 0 +241 0 0 +SURF 0x30 +mat 16 +refs 3 +241 0 0 +60 0 0 +36 0 0 +SURF 0x30 +mat 16 +refs 3 +243 0 0 +62 0 0 +61 0 0 +SURF 0x30 +mat 16 +refs 3 +38 0 0 +62 0 0 +243 0 0 +SURF 0x30 +mat 16 +refs 3 +243 0 0 +61 0 0 +37 0 0 +SURF 0x30 +mat 16 +refs 3 +245 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 16 +refs 3 +39 0 0 +63 0 0 +245 0 0 +SURF 0x30 +mat 16 +refs 3 +245 0 0 +62 0 0 +38 0 0 +SURF 0x30 +mat 16 +refs 3 +247 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 16 +refs 3 +40 0 0 +64 0 0 +247 0 0 +SURF 0x30 +mat 16 +refs 3 +247 0 0 +63 0 0 +39 0 0 +SURF 0x30 +mat 16 +refs 3 +249 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 16 +refs 3 +41 0 0 +65 0 0 +249 0 0 +SURF 0x30 +mat 16 +refs 3 +249 0 0 +64 0 0 +40 0 0 +SURF 0x30 +mat 16 +refs 3 +251 0 0 +66 0 0 +65 0 0 +SURF 0x30 +mat 16 +refs 3 +42 0 0 +66 0 0 +251 0 0 +SURF 0x30 +mat 16 +refs 3 +251 0 0 +65 0 0 +41 0 0 +SURF 0x30 +mat 16 +refs 3 +253 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 16 +refs 3 +43 0 0 +67 0 0 +253 0 0 +SURF 0x30 +mat 16 +refs 3 +253 0 0 +66 0 0 +42 0 0 +SURF 0x30 +mat 16 +refs 3 +255 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 16 +refs 3 +44 0 0 +68 0 0 +255 0 0 +SURF 0x30 +mat 16 +refs 3 +255 0 0 +67 0 0 +43 0 0 +SURF 0x30 +mat 16 +refs 3 +257 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 16 +refs 3 +45 0 0 +69 0 0 +257 0 0 +SURF 0x30 +mat 16 +refs 3 +257 0 0 +68 0 0 +44 0 0 +SURF 0x30 +mat 16 +refs 3 +259 0 0 +70 0 0 +69 0 0 +SURF 0x30 +mat 16 +refs 3 +46 0 0 +70 0 0 +259 0 0 +SURF 0x30 +mat 16 +refs 3 +259 0 0 +69 0 0 +45 0 0 +SURF 0x30 +mat 16 +refs 3 +261 0 0 +71 0 0 +70 0 0 +SURF 0x30 +mat 16 +refs 3 +47 0 0 +71 0 0 +261 0 0 +SURF 0x30 +mat 16 +refs 3 +261 0 0 +70 0 0 +46 0 0 +SURF 0x30 +mat 16 +refs 3 +263 0 0 +48 0 0 +71 0 0 +SURF 0x30 +mat 16 +refs 3 +24 0 0 +48 0 0 +263 0 0 +SURF 0x30 +mat 16 +refs 3 +263 0 0 +71 0 0 +47 0 0 +SURF 0x30 +mat 16 +refs 3 +192 0 0 +120 0 0 +121 0 0 +SURF 0x30 +mat 16 +refs 3 +0 0 0 +120 0 0 +192 0 0 +SURF 0x30 +mat 16 +refs 3 +192 0 0 +121 0 0 +1 0 0 +SURF 0x30 +mat 16 +refs 3 +193 0 0 +121 0 0 +122 0 0 +SURF 0x30 +mat 16 +refs 3 +1 0 0 +121 0 0 +193 0 0 +SURF 0x30 +mat 16 +refs 3 +193 0 0 +122 0 0 +2 0 0 +SURF 0x30 +mat 16 +refs 3 +194 0 0 +122 0 0 +123 0 0 +SURF 0x30 +mat 16 +refs 3 +2 0 0 +122 0 0 +194 0 0 +SURF 0x30 +mat 16 +refs 3 +194 0 0 +123 0 0 +3 0 0 +SURF 0x30 +mat 16 +refs 3 +195 0 0 +123 0 0 +124 0 0 +SURF 0x30 +mat 16 +refs 3 +3 0 0 +123 0 0 +195 0 0 +SURF 0x30 +mat 16 +refs 3 +195 0 0 +124 0 0 +4 0 0 +SURF 0x30 +mat 16 +refs 3 +196 0 0 +124 0 0 +125 0 0 +SURF 0x30 +mat 16 +refs 3 +4 0 0 +124 0 0 +196 0 0 +SURF 0x30 +mat 16 +refs 3 +196 0 0 +125 0 0 +5 0 0 +SURF 0x30 +mat 16 +refs 3 +197 0 0 +125 0 0 +126 0 0 +SURF 0x30 +mat 16 +refs 3 +5 0 0 +125 0 0 +197 0 0 +SURF 0x30 +mat 16 +refs 3 +197 0 0 +126 0 0 +6 0 0 +SURF 0x30 +mat 16 +refs 3 +198 0 0 +126 0 0 +127 0 0 +SURF 0x30 +mat 16 +refs 3 +6 0 0 +126 0 0 +198 0 0 +SURF 0x30 +mat 16 +refs 3 +198 0 0 +127 0 0 +7 0 0 +SURF 0x30 +mat 16 +refs 3 +199 0 0 +127 0 0 +128 0 0 +SURF 0x30 +mat 16 +refs 3 +7 0 0 +127 0 0 +199 0 0 +SURF 0x30 +mat 16 +refs 3 +199 0 0 +128 0 0 +8 0 0 +SURF 0x30 +mat 16 +refs 3 +200 0 0 +128 0 0 +129 0 0 +SURF 0x30 +mat 16 +refs 3 +8 0 0 +128 0 0 +200 0 0 +SURF 0x30 +mat 16 +refs 3 +200 0 0 +129 0 0 +9 0 0 +SURF 0x30 +mat 16 +refs 3 +201 0 0 +129 0 0 +130 0 0 +SURF 0x30 +mat 16 +refs 3 +9 0 0 +129 0 0 +201 0 0 +SURF 0x30 +mat 16 +refs 3 +201 0 0 +130 0 0 +10 0 0 +SURF 0x30 +mat 16 +refs 3 +202 0 0 +130 0 0 +131 0 0 +SURF 0x30 +mat 16 +refs 3 +10 0 0 +130 0 0 +202 0 0 +SURF 0x30 +mat 16 +refs 3 +202 0 0 +131 0 0 +11 0 0 +SURF 0x30 +mat 16 +refs 3 +203 0 0 +131 0 0 +132 0 0 +SURF 0x30 +mat 16 +refs 3 +11 0 0 +131 0 0 +203 0 0 +SURF 0x30 +mat 16 +refs 3 +203 0 0 +132 0 0 +12 0 0 +SURF 0x30 +mat 16 +refs 3 +204 0 0 +132 0 0 +133 0 0 +SURF 0x30 +mat 16 +refs 3 +12 0 0 +132 0 0 +204 0 0 +SURF 0x30 +mat 16 +refs 3 +204 0 0 +133 0 0 +13 0 0 +SURF 0x30 +mat 16 +refs 3 +205 0 0 +133 0 0 +134 0 0 +SURF 0x30 +mat 16 +refs 3 +13 0 0 +133 0 0 +205 0 0 +SURF 0x30 +mat 16 +refs 3 +205 0 0 +134 0 0 +14 0 0 +SURF 0x30 +mat 16 +refs 3 +206 0 0 +134 0 0 +135 0 0 +SURF 0x30 +mat 16 +refs 3 +14 0 0 +134 0 0 +206 0 0 +SURF 0x30 +mat 16 +refs 3 +206 0 0 +135 0 0 +15 0 0 +SURF 0x30 +mat 16 +refs 3 +207 0 0 +135 0 0 +136 0 0 +SURF 0x30 +mat 16 +refs 3 +15 0 0 +135 0 0 +207 0 0 +SURF 0x30 +mat 16 +refs 3 +207 0 0 +136 0 0 +16 0 0 +SURF 0x30 +mat 16 +refs 3 +208 0 0 +136 0 0 +137 0 0 +SURF 0x30 +mat 16 +refs 3 +16 0 0 +136 0 0 +208 0 0 +SURF 0x30 +mat 16 +refs 3 +208 0 0 +137 0 0 +17 0 0 +SURF 0x30 +mat 16 +refs 3 +209 0 0 +137 0 0 +138 0 0 +SURF 0x30 +mat 16 +refs 3 +17 0 0 +137 0 0 +209 0 0 +SURF 0x30 +mat 16 +refs 3 +209 0 0 +138 0 0 +18 0 0 +SURF 0x30 +mat 16 +refs 3 +210 0 0 +138 0 0 +139 0 0 +SURF 0x30 +mat 16 +refs 3 +18 0 0 +138 0 0 +210 0 0 +SURF 0x30 +mat 16 +refs 3 +210 0 0 +139 0 0 +19 0 0 +SURF 0x30 +mat 16 +refs 3 +211 0 0 +139 0 0 +140 0 0 +SURF 0x30 +mat 16 +refs 3 +19 0 0 +139 0 0 +211 0 0 +SURF 0x30 +mat 16 +refs 3 +211 0 0 +140 0 0 +20 0 0 +SURF 0x30 +mat 16 +refs 3 +212 0 0 +140 0 0 +141 0 0 +SURF 0x30 +mat 16 +refs 3 +20 0 0 +140 0 0 +212 0 0 +SURF 0x30 +mat 16 +refs 3 +212 0 0 +141 0 0 +21 0 0 +SURF 0x30 +mat 16 +refs 3 +213 0 0 +141 0 0 +142 0 0 +SURF 0x30 +mat 16 +refs 3 +21 0 0 +141 0 0 +213 0 0 +SURF 0x30 +mat 16 +refs 3 +213 0 0 +142 0 0 +22 0 0 +SURF 0x30 +mat 16 +refs 3 +214 0 0 +142 0 0 +143 0 0 +SURF 0x30 +mat 16 +refs 3 +22 0 0 +142 0 0 +214 0 0 +SURF 0x30 +mat 16 +refs 3 +214 0 0 +143 0 0 +23 0 0 +SURF 0x30 +mat 16 +refs 3 +215 0 0 +143 0 0 +120 0 0 +SURF 0x30 +mat 16 +refs 3 +23 0 0 +143 0 0 +215 0 0 +SURF 0x30 +mat 16 +refs 3 +120 0 0 +0 0 0 +215 0 0 +kids 0 +OBJECT poly +name "rwheel2.L" +data 10 +Circle.026 +crease 30.000000 +numvert 218 +2.696455 0.407726 0.538809 +2.830829 0.640469 0.538809 +2.766012 0.667317 0.538809 +2.696455 0.676475 0.538809 +2.626898 0.667317 0.538809 +2.562081 0.640469 0.538809 +2.506422 0.59776 0.538809 +2.463713 0.5421 0.538809 +2.436865 0.477284 0.538809 +2.427707 0.407726 0.538809 +2.436865 0.338169 0.538809 +2.463713 0.273353 0.538809 +2.506422 0.217693 0.538809 +2.562082 0.174984 0.538809 +2.626898 0.148136 0.538809 +2.696455 0.138979 0.538809 +2.766013 0.148136 0.538809 +2.830829 0.174984 0.538809 +2.886489 0.217693 0.538809 +2.929198 0.273353 0.538809 +2.956046 0.33817 0.538809 +2.965203 0.407727 0.538809 +2.956046 0.477284 0.538809 +2.886489 0.59776 0.538809 +2.929198 0.542101 0.538809 +2.696455 0.407726 0.746253 +2.706868 0.425763 0.741594 +2.701846 0.427843 0.741594 +2.696455 0.428553 0.741594 +2.691065 0.427843 0.741594 +2.686042 0.425763 0.741594 +2.681729 0.422453 0.741594 +2.678419 0.41814 0.741594 +2.676339 0.413117 0.741594 +2.675629 0.407726 0.741594 +2.676339 0.402336 0.741594 +2.678419 0.397313 0.741594 +2.681729 0.393 0.741594 +2.686042 0.38969 0.741594 +2.691065 0.38761 0.741594 +2.696455 0.3869 0.741594 +2.701846 0.38761 0.741594 +2.706868 0.38969 0.741594 +2.711182 0.393 0.741594 +2.714491 0.397313 0.741594 +2.716572 0.402336 0.741594 +2.717282 0.407726 0.741594 +2.716572 0.413117 0.741594 +2.714491 0.41814 0.741594 +2.711182 0.422453 0.741594 +2.715108 0.440034 0.720245 +2.706111 0.443761 0.720245 +2.696455 0.445032 0.720245 +2.6868 0.443761 0.720245 +2.677803 0.440034 0.720245 +2.670076 0.434106 0.720245 +2.664148 0.426379 0.720245 +2.660421 0.417382 0.720245 +2.65915 0.407726 0.720245 +2.660421 0.398071 0.720245 +2.664148 0.389074 0.720245 +2.670076 0.381347 0.720245 +2.677803 0.375419 0.720245 +2.6868 0.371692 0.720245 +2.696455 0.370421 0.720245 +2.706111 0.371692 0.720245 +2.715108 0.375419 0.720245 +2.722834 0.381347 0.720245 +2.728763 0.389074 0.720245 +2.73249 0.398071 0.720245 +2.733761 0.407726 0.720245 +2.73249 0.417382 0.720245 +2.728763 0.426379 0.720245 +2.722834 0.434106 0.720245 +2.722091 0.45213 0.682689 +2.709726 0.457252 0.682689 +2.696455 0.458999 0.682689 +2.683185 0.457252 0.682689 +2.670819 0.45213 0.682689 +2.6602 0.443982 0.682689 +2.652052 0.433363 0.682689 +2.64693 0.420997 0.682689 +2.645183 0.407726 0.682689 +2.64693 0.394456 0.682689 +2.652052 0.38209 0.682689 +2.6602 0.371471 0.682689 +2.670819 0.363323 0.682689 +2.683185 0.358201 0.682689 +2.696455 0.356454 0.682689 +2.709726 0.358201 0.682689 +2.722092 0.363323 0.682689 +2.732711 0.371471 0.682689 +2.740859 0.38209 0.682689 +2.745981 0.394456 0.682689 +2.747728 0.407726 0.682689 +2.745981 0.420997 0.682689 +2.732711 0.443982 0.682689 +2.740859 0.433363 0.682689 +2.756276 0.511339 0.682689 +2.727421 0.523291 0.682689 +2.696455 0.527368 0.682689 +2.66549 0.523291 0.682689 +2.636635 0.511339 0.682689 +2.611856 0.492326 0.682689 +2.592843 0.467547 0.682689 +2.580891 0.438692 0.682689 +2.576814 0.407726 0.682689 +2.580891 0.376761 0.682689 +2.592843 0.347906 0.682689 +2.611856 0.323127 0.682689 +2.636635 0.304114 0.682689 +2.66549 0.292162 0.682689 +2.696455 0.288085 0.682689 +2.727421 0.292162 0.682689 +2.756276 0.304114 0.682689 +2.781054 0.323127 0.682689 +2.800068 0.347906 0.682689 +2.81202 0.376761 0.682689 +2.816097 0.407727 0.682689 +2.81202 0.438692 0.682689 +2.781054 0.492326 0.682689 +2.800068 0.467547 0.682689 +2.787747 0.565848 0.665997 +2.743711 0.584088 0.665997 +2.696455 0.59031 0.665997 +2.649199 0.584088 0.665997 +2.605164 0.565848 0.665997 +2.567349 0.536832 0.665997 +2.538334 0.499018 0.665997 +2.520094 0.454982 0.665997 +2.513872 0.407726 0.665997 +2.520094 0.360471 0.665997 +2.538334 0.316435 0.665997 +2.56735 0.278621 0.665997 +2.605164 0.249605 0.665997 +2.649199 0.231365 0.665997 +2.696455 0.225143 0.665997 +2.743711 0.231365 0.665997 +2.787747 0.249605 0.665997 +2.825561 0.278621 0.665997 +2.854577 0.316435 0.665997 +2.872817 0.360471 0.665997 +2.879038 0.407727 0.665997 +2.872817 0.454983 0.665997 +2.854577 0.499018 0.665997 +2.825561 0.536832 0.665997 +2.818704 0.619468 0.665997 +2.759736 0.643894 0.665997 +2.696455 0.652225 0.665997 +2.633174 0.643894 0.665997 +2.574206 0.619468 0.665997 +2.523569 0.580613 0.665997 +2.484714 0.529976 0.665997 +2.460288 0.471007 0.665997 +2.451957 0.407726 0.665997 +2.460288 0.344446 0.665997 +2.484714 0.285477 0.665997 +2.523569 0.23484 0.665997 +2.574206 0.195985 0.665997 +2.633175 0.171559 0.665997 +2.696455 0.163228 0.665997 +2.759736 0.171559 0.665997 +2.818705 0.195985 0.665997 +2.869342 0.23484 0.665997 +2.908197 0.285477 0.665997 +2.932623 0.344446 0.665997 +2.940954 0.407727 0.665997 +2.932623 0.471007 0.665997 +2.869342 0.580613 0.665997 +2.908197 0.529976 0.665997 +2.818704 0.619468 0.720245 +2.759736 0.643894 0.720245 +2.696455 0.652225 0.720245 +2.633174 0.643894 0.720245 +2.574206 0.619468 0.720245 +2.523569 0.580613 0.720245 +2.484714 0.529976 0.720245 +2.460288 0.471007 0.720245 +2.451957 0.407726 0.720245 +2.460288 0.344446 0.720245 +2.484714 0.285477 0.720245 +2.523569 0.23484 0.720245 +2.574206 0.195985 0.720245 +2.633175 0.171559 0.720245 +2.696455 0.163228 0.720245 +2.759736 0.171559 0.720245 +2.818705 0.195985 0.720245 +2.869342 0.23484 0.720245 +2.908197 0.285477 0.720245 +2.932623 0.344446 0.720245 +2.940954 0.407727 0.720245 +2.932623 0.471007 0.720245 +2.869342 0.580613 0.720245 +2.908197 0.529976 0.720245 +2.830074 0.639162 0.720245 +2.765622 0.665859 0.720245 +2.696455 0.674965 0.720245 +2.627289 0.665859 0.720245 +2.562836 0.639162 0.720245 +2.507489 0.596692 0.720245 +2.46502 0.541346 0.720245 +2.438323 0.476893 0.720245 +2.429217 0.407726 0.720245 +2.438323 0.33856 0.720245 +2.46502 0.274107 0.720245 +2.507489 0.21876 0.720245 +2.562836 0.176291 0.720245 +2.627289 0.149594 0.720245 +2.696455 0.140488 0.720245 +2.765622 0.149594 0.720245 +2.830075 0.176291 0.720245 +2.885421 0.218761 0.720245 +2.927891 0.274107 0.720245 +2.954588 0.33856 0.720245 +2.963694 0.407727 0.720245 +2.954588 0.476893 0.720245 +2.885421 0.596693 0.720245 +2.927891 0.541346 0.720245 +numsurf 216 +SURF 0x30 +mat 17 +refs 3 +23 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 17 +refs 3 +1 0 0 +0 0 0 +2 0 0 +SURF 0x30 +mat 17 +refs 3 +2 0 0 +0 0 0 +3 0 0 +SURF 0x30 +mat 17 +refs 3 +3 0 0 +0 0 0 +4 0 0 +SURF 0x30 +mat 17 +refs 3 +4 0 0 +0 0 0 +5 0 0 +SURF 0x30 +mat 17 +refs 3 +5 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 17 +refs 3 +6 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 17 +refs 3 +7 0 0 +0 0 0 +8 0 0 +SURF 0x30 +mat 17 +refs 3 +8 0 0 +0 0 0 +9 0 0 +SURF 0x30 +mat 17 +refs 3 +9 0 0 +0 0 0 +10 0 0 +SURF 0x30 +mat 17 +refs 3 +10 0 0 +0 0 0 +11 0 0 +SURF 0x30 +mat 17 +refs 3 +11 0 0 +0 0 0 +12 0 0 +SURF 0x30 +mat 17 +refs 3 +12 0 0 +0 0 0 +13 0 0 +SURF 0x30 +mat 17 +refs 3 +13 0 0 +0 0 0 +14 0 0 +SURF 0x30 +mat 17 +refs 3 +14 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 17 +refs 3 +15 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 17 +refs 3 +16 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 17 +refs 3 +17 0 0 +0 0 0 +18 0 0 +SURF 0x30 +mat 17 +refs 3 +18 0 0 +0 0 0 +19 0 0 +SURF 0x30 +mat 17 +refs 3 +19 0 0 +0 0 0 +20 0 0 +SURF 0x30 +mat 17 +refs 3 +20 0 0 +0 0 0 +21 0 0 +SURF 0x30 +mat 17 +refs 3 +21 0 0 +0 0 0 +22 0 0 +SURF 0x30 +mat 17 +refs 3 +22 0 0 +0 0 0 +24 0 0 +SURF 0x30 +mat 17 +refs 3 +24 0 0 +0 0 0 +23 0 0 +SURF 0x30 +mat 17 +refs 3 +26 0 0 +25 0 0 +49 0 0 +SURF 0x30 +mat 17 +refs 3 +26 0 0 +27 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +27 0 0 +28 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +28 0 0 +29 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +29 0 0 +30 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +30 0 0 +31 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +31 0 0 +32 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +32 0 0 +33 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +33 0 0 +34 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +34 0 0 +35 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +35 0 0 +36 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +36 0 0 +37 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +38 0 0 +25 0 0 +37 0 0 +SURF 0x30 +mat 17 +refs 3 +38 0 0 +39 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +39 0 0 +40 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +40 0 0 +41 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +42 0 0 +25 0 0 +41 0 0 +SURF 0x30 +mat 17 +refs 3 +42 0 0 +43 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +43 0 0 +44 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +44 0 0 +45 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +46 0 0 +25 0 0 +45 0 0 +SURF 0x30 +mat 17 +refs 3 +46 0 0 +47 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +48 0 0 +25 0 0 +47 0 0 +SURF 0x30 +mat 17 +refs 3 +49 0 0 +25 0 0 +48 0 0 +SURF 0x30 +mat 17 +refs 4 +50 0 0 +26 0 0 +49 0 0 +73 0 0 +SURF 0x30 +mat 17 +refs 4 +50 0 0 +51 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 17 +refs 4 +51 0 0 +52 0 0 +28 0 0 +27 0 0 +SURF 0x30 +mat 17 +refs 4 +52 0 0 +53 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 17 +refs 4 +53 0 0 +54 0 0 +30 0 0 +29 0 0 +SURF 0x30 +mat 17 +refs 4 +54 0 0 +55 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 17 +refs 4 +55 0 0 +56 0 0 +32 0 0 +31 0 0 +SURF 0x30 +mat 17 +refs 4 +56 0 0 +57 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 17 +refs 4 +57 0 0 +58 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 17 +refs 4 +58 0 0 +59 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 17 +refs 4 +59 0 0 +60 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 17 +refs 4 +60 0 0 +61 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 17 +refs 4 +62 0 0 +38 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 17 +refs 4 +62 0 0 +63 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 17 +refs 4 +63 0 0 +64 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 17 +refs 4 +64 0 0 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 17 +refs 4 +66 0 0 +42 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 17 +refs 4 +66 0 0 +67 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 17 +refs 4 +67 0 0 +68 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 17 +refs 4 +68 0 0 +69 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 17 +refs 4 +70 0 0 +46 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 17 +refs 4 +70 0 0 +71 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 17 +refs 4 +72 0 0 +48 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 17 +refs 4 +73 0 0 +49 0 0 +48 0 0 +72 0 0 +SURF 0x30 +mat 17 +refs 4 +74 0 0 +50 0 0 +73 0 0 +96 0 0 +SURF 0x30 +mat 17 +refs 4 +74 0 0 +75 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 17 +refs 4 +75 0 0 +76 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 17 +refs 4 +76 0 0 +77 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 17 +refs 4 +77 0 0 +78 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 17 +refs 4 +78 0 0 +79 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 17 +refs 4 +79 0 0 +80 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 17 +refs 4 +80 0 0 +81 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 17 +refs 4 +81 0 0 +82 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 17 +refs 4 +82 0 0 +83 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 17 +refs 4 +83 0 0 +84 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 17 +refs 4 +84 0 0 +85 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 17 +refs 4 +86 0 0 +62 0 0 +61 0 0 +85 0 0 +SURF 0x30 +mat 17 +refs 4 +86 0 0 +87 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 17 +refs 4 +87 0 0 +88 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 17 +refs 4 +88 0 0 +89 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 17 +refs 4 +90 0 0 +66 0 0 +65 0 0 +89 0 0 +SURF 0x30 +mat 17 +refs 4 +90 0 0 +91 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 17 +refs 4 +91 0 0 +92 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 17 +refs 4 +92 0 0 +93 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 17 +refs 4 +94 0 0 +70 0 0 +69 0 0 +93 0 0 +SURF 0x30 +mat 17 +refs 4 +94 0 0 +95 0 0 +71 0 0 +70 0 0 +SURF 0x30 +mat 17 +refs 4 +97 0 0 +72 0 0 +71 0 0 +95 0 0 +SURF 0x30 +mat 17 +refs 4 +96 0 0 +73 0 0 +72 0 0 +97 0 0 +SURF 0x30 +mat 17 +refs 4 +98 0 0 +74 0 0 +96 0 0 +120 0 0 +SURF 0x30 +mat 17 +refs 4 +98 0 0 +99 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 17 +refs 4 +99 0 0 +100 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 17 +refs 4 +100 0 0 +101 0 0 +77 0 0 +76 0 0 +SURF 0x30 +mat 17 +refs 4 +101 0 0 +102 0 0 +78 0 0 +77 0 0 +SURF 0x30 +mat 17 +refs 4 +102 0 0 +103 0 0 +79 0 0 +78 0 0 +SURF 0x30 +mat 17 +refs 4 +103 0 0 +104 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 17 +refs 4 +104 0 0 +105 0 0 +81 0 0 +80 0 0 +SURF 0x30 +mat 17 +refs 4 +105 0 0 +106 0 0 +82 0 0 +81 0 0 +SURF 0x30 +mat 17 +refs 4 +106 0 0 +107 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 17 +refs 4 +107 0 0 +108 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 17 +refs 4 +108 0 0 +109 0 0 +85 0 0 +84 0 0 +SURF 0x30 +mat 17 +refs 4 +110 0 0 +86 0 0 +85 0 0 +109 0 0 +SURF 0x30 +mat 17 +refs 4 +110 0 0 +111 0 0 +87 0 0 +86 0 0 +SURF 0x30 +mat 17 +refs 4 +111 0 0 +112 0 0 +88 0 0 +87 0 0 +SURF 0x30 +mat 17 +refs 4 +112 0 0 +113 0 0 +89 0 0 +88 0 0 +SURF 0x30 +mat 17 +refs 4 +114 0 0 +90 0 0 +89 0 0 +113 0 0 +SURF 0x30 +mat 17 +refs 4 +114 0 0 +115 0 0 +91 0 0 +90 0 0 +SURF 0x30 +mat 17 +refs 4 +115 0 0 +116 0 0 +92 0 0 +91 0 0 +SURF 0x30 +mat 17 +refs 4 +116 0 0 +117 0 0 +93 0 0 +92 0 0 +SURF 0x30 +mat 17 +refs 4 +118 0 0 +94 0 0 +93 0 0 +117 0 0 +SURF 0x30 +mat 17 +refs 4 +118 0 0 +119 0 0 +95 0 0 +94 0 0 +SURF 0x30 +mat 17 +refs 4 +121 0 0 +97 0 0 +95 0 0 +119 0 0 +SURF 0x30 +mat 17 +refs 4 +120 0 0 +96 0 0 +97 0 0 +121 0 0 +SURF 0x30 +mat 17 +refs 4 +122 0 0 +98 0 0 +120 0 0 +145 0 0 +SURF 0x30 +mat 17 +refs 4 +122 0 0 +123 0 0 +99 0 0 +98 0 0 +SURF 0x30 +mat 17 +refs 4 +123 0 0 +124 0 0 +100 0 0 +99 0 0 +SURF 0x30 +mat 17 +refs 4 +124 0 0 +125 0 0 +101 0 0 +100 0 0 +SURF 0x30 +mat 17 +refs 4 +125 0 0 +126 0 0 +102 0 0 +101 0 0 +SURF 0x30 +mat 17 +refs 4 +126 0 0 +127 0 0 +103 0 0 +102 0 0 +SURF 0x30 +mat 17 +refs 4 +127 0 0 +128 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 17 +refs 4 +128 0 0 +129 0 0 +105 0 0 +104 0 0 +SURF 0x30 +mat 17 +refs 4 +129 0 0 +130 0 0 +106 0 0 +105 0 0 +SURF 0x30 +mat 17 +refs 4 +130 0 0 +131 0 0 +107 0 0 +106 0 0 +SURF 0x30 +mat 17 +refs 4 +131 0 0 +132 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 17 +refs 4 +132 0 0 +133 0 0 +109 0 0 +108 0 0 +SURF 0x30 +mat 17 +refs 4 +134 0 0 +110 0 0 +109 0 0 +133 0 0 +SURF 0x30 +mat 17 +refs 4 +134 0 0 +135 0 0 +111 0 0 +110 0 0 +SURF 0x30 +mat 17 +refs 4 +135 0 0 +136 0 0 +112 0 0 +111 0 0 +SURF 0x30 +mat 17 +refs 4 +136 0 0 +137 0 0 +113 0 0 +112 0 0 +SURF 0x30 +mat 17 +refs 4 +138 0 0 +114 0 0 +113 0 0 +137 0 0 +SURF 0x30 +mat 17 +refs 4 +138 0 0 +139 0 0 +115 0 0 +114 0 0 +SURF 0x30 +mat 17 +refs 4 +139 0 0 +140 0 0 +116 0 0 +115 0 0 +SURF 0x30 +mat 17 +refs 4 +140 0 0 +141 0 0 +117 0 0 +116 0 0 +SURF 0x30 +mat 17 +refs 4 +142 0 0 +118 0 0 +117 0 0 +141 0 0 +SURF 0x30 +mat 17 +refs 4 +142 0 0 +143 0 0 +119 0 0 +118 0 0 +SURF 0x30 +mat 17 +refs 4 +144 0 0 +121 0 0 +119 0 0 +143 0 0 +SURF 0x30 +mat 17 +refs 4 +145 0 0 +120 0 0 +121 0 0 +144 0 0 +SURF 0x30 +mat 17 +refs 4 +146 0 0 +122 0 0 +145 0 0 +168 0 0 +SURF 0x30 +mat 17 +refs 4 +146 0 0 +147 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 17 +refs 4 +147 0 0 +148 0 0 +124 0 0 +123 0 0 +SURF 0x30 +mat 17 +refs 4 +148 0 0 +149 0 0 +125 0 0 +124 0 0 +SURF 0x30 +mat 17 +refs 4 +149 0 0 +150 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 17 +refs 4 +150 0 0 +151 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 17 +refs 4 +151 0 0 +152 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 17 +refs 4 +152 0 0 +153 0 0 +129 0 0 +128 0 0 +SURF 0x30 +mat 17 +refs 4 +153 0 0 +154 0 0 +130 0 0 +129 0 0 +SURF 0x30 +mat 17 +refs 4 +154 0 0 +155 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 17 +refs 4 +155 0 0 +156 0 0 +132 0 0 +131 0 0 +SURF 0x30 +mat 17 +refs 4 +156 0 0 +157 0 0 +133 0 0 +132 0 0 +SURF 0x30 +mat 17 +refs 4 +158 0 0 +134 0 0 +133 0 0 +157 0 0 +SURF 0x30 +mat 17 +refs 4 +158 0 0 +159 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 17 +refs 4 +159 0 0 +160 0 0 +136 0 0 +135 0 0 +SURF 0x30 +mat 17 +refs 4 +160 0 0 +161 0 0 +137 0 0 +136 0 0 +SURF 0x30 +mat 17 +refs 4 +162 0 0 +138 0 0 +137 0 0 +161 0 0 +SURF 0x30 +mat 17 +refs 4 +162 0 0 +163 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 17 +refs 4 +163 0 0 +164 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 17 +refs 4 +164 0 0 +165 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 17 +refs 4 +166 0 0 +142 0 0 +141 0 0 +165 0 0 +SURF 0x30 +mat 17 +refs 4 +166 0 0 +167 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 17 +refs 4 +169 0 0 +144 0 0 +143 0 0 +167 0 0 +SURF 0x30 +mat 17 +refs 4 +168 0 0 +145 0 0 +144 0 0 +169 0 0 +SURF 0x30 +mat 17 +refs 4 +170 0 0 +146 0 0 +168 0 0 +192 0 0 +SURF 0x30 +mat 17 +refs 4 +170 0 0 +171 0 0 +147 0 0 +146 0 0 +SURF 0x30 +mat 17 +refs 4 +171 0 0 +172 0 0 +148 0 0 +147 0 0 +SURF 0x30 +mat 17 +refs 4 +172 0 0 +173 0 0 +149 0 0 +148 0 0 +SURF 0x30 +mat 17 +refs 4 +173 0 0 +174 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 17 +refs 4 +174 0 0 +175 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 17 +refs 4 +175 0 0 +176 0 0 +152 0 0 +151 0 0 +SURF 0x30 +mat 17 +refs 4 +176 0 0 +177 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 17 +refs 4 +177 0 0 +178 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 17 +refs 4 +178 0 0 +179 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 17 +refs 4 +179 0 0 +180 0 0 +156 0 0 +155 0 0 +SURF 0x30 +mat 17 +refs 4 +180 0 0 +181 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 17 +refs 4 +182 0 0 +158 0 0 +157 0 0 +181 0 0 +SURF 0x30 +mat 17 +refs 4 +182 0 0 +183 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 17 +refs 4 +183 0 0 +184 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 17 +refs 4 +184 0 0 +185 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 17 +refs 4 +186 0 0 +162 0 0 +161 0 0 +185 0 0 +SURF 0x30 +mat 17 +refs 4 +186 0 0 +187 0 0 +163 0 0 +162 0 0 +SURF 0x30 +mat 17 +refs 4 +187 0 0 +188 0 0 +164 0 0 +163 0 0 +SURF 0x30 +mat 17 +refs 4 +188 0 0 +189 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 17 +refs 4 +190 0 0 +166 0 0 +165 0 0 +189 0 0 +SURF 0x30 +mat 17 +refs 4 +190 0 0 +191 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 17 +refs 4 +193 0 0 +169 0 0 +167 0 0 +191 0 0 +SURF 0x30 +mat 17 +refs 4 +192 0 0 +168 0 0 +169 0 0 +193 0 0 +SURF 0x30 +mat 17 +refs 4 +194 0 0 +170 0 0 +192 0 0 +216 0 0 +SURF 0x30 +mat 17 +refs 4 +194 0 0 +195 0 0 +171 0 0 +170 0 0 +SURF 0x30 +mat 17 +refs 4 +195 0 0 +196 0 0 +172 0 0 +171 0 0 +SURF 0x30 +mat 17 +refs 4 +196 0 0 +197 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 17 +refs 4 +197 0 0 +198 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 17 +refs 4 +198 0 0 +199 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 17 +refs 4 +199 0 0 +200 0 0 +176 0 0 +175 0 0 +SURF 0x30 +mat 17 +refs 4 +200 0 0 +201 0 0 +177 0 0 +176 0 0 +SURF 0x30 +mat 17 +refs 4 +201 0 0 +202 0 0 +178 0 0 +177 0 0 +SURF 0x30 +mat 17 +refs 4 +202 0 0 +203 0 0 +179 0 0 +178 0 0 +SURF 0x30 +mat 17 +refs 4 +203 0 0 +204 0 0 +180 0 0 +179 0 0 +SURF 0x30 +mat 17 +refs 4 +204 0 0 +205 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 17 +refs 4 +206 0 0 +182 0 0 +181 0 0 +205 0 0 +SURF 0x30 +mat 17 +refs 4 +206 0 0 +207 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 17 +refs 4 +207 0 0 +208 0 0 +184 0 0 +183 0 0 +SURF 0x30 +mat 17 +refs 4 +208 0 0 +209 0 0 +185 0 0 +184 0 0 +SURF 0x30 +mat 17 +refs 4 +210 0 0 +186 0 0 +185 0 0 +209 0 0 +SURF 0x30 +mat 17 +refs 4 +210 0 0 +211 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 17 +refs 4 +211 0 0 +212 0 0 +188 0 0 +187 0 0 +SURF 0x30 +mat 17 +refs 4 +212 0 0 +213 0 0 +189 0 0 +188 0 0 +SURF 0x30 +mat 17 +refs 4 +214 0 0 +190 0 0 +189 0 0 +213 0 0 +SURF 0x30 +mat 17 +refs 4 +214 0 0 +215 0 0 +191 0 0 +190 0 0 +SURF 0x30 +mat 17 +refs 4 +217 0 0 +193 0 0 +191 0 0 +215 0 0 +SURF 0x30 +mat 17 +refs 4 +216 0 0 +192 0 0 +193 0 0 +217 0 0 +kids 0 +OBJECT poly +name "rwheel2.L.001" +data 10 +Circle.032 +crease 30.000000 +numvert 218 +3.395384 1.144774 -0.269226 +3.529758 1.144774 -0.501969 +3.464941 1.144774 -0.528817 +3.395384 1.144774 -0.537974 +3.325827 1.144774 -0.528816 +3.26101 1.144774 -0.501968 +3.205351 1.144774 -0.459259 +3.162642 1.144774 -0.4036 +3.135794 1.144774 -0.338783 +3.126636 1.144774 -0.269226 +3.135794 1.144774 -0.199669 +3.162642 1.144774 -0.134852 +3.205351 1.144774 -0.079192 +3.26101 1.144774 -0.036483 +3.325827 1.144774 -0.009635 +3.395384 1.144774 -0.000478 +3.464942 1.144774 -0.009635 +3.529758 1.144774 -0.036483 +3.585418 1.144774 -0.079193 +3.628127 1.144774 -0.134852 +3.654975 1.144774 -0.199669 +3.664132 1.144774 -0.269226 +3.654975 1.144774 -0.338783 +3.585418 1.144774 -0.459259 +3.628127 1.144774 -0.4036 +3.395384 1.352218 -0.269226 +3.405797 1.347559 -0.287262 +3.400774 1.347559 -0.289342 +3.395384 1.347559 -0.290052 +3.389994 1.347559 -0.289342 +3.384971 1.347559 -0.287262 +3.380658 1.347559 -0.283952 +3.377348 1.347559 -0.279639 +3.375268 1.347559 -0.274616 +3.374558 1.347559 -0.269226 +3.375268 1.347559 -0.263836 +3.377348 1.347559 -0.258813 +3.380658 1.347559 -0.254499 +3.384971 1.347559 -0.25119 +3.389994 1.347559 -0.249109 +3.395384 1.347559 -0.2484 +3.400774 1.347559 -0.249109 +3.405797 1.347559 -0.25119 +3.41011 1.347559 -0.2545 +3.41342 1.347559 -0.258813 +3.415501 1.347559 -0.263836 +3.41621 1.347559 -0.269226 +3.415501 1.347559 -0.274616 +3.41342 1.347559 -0.279639 +3.41011 1.347559 -0.283952 +3.414037 1.32621 -0.301533 +3.40504 1.32621 -0.30526 +3.395384 1.32621 -0.306531 +3.385729 1.32621 -0.30526 +3.376731 1.32621 -0.301533 +3.369005 1.32621 -0.295605 +3.363077 1.32621 -0.287879 +3.35935 1.32621 -0.278881 +3.358078 1.32621 -0.269226 +3.35935 1.32621 -0.259571 +3.363077 1.32621 -0.250573 +3.369005 1.32621 -0.242847 +3.376731 1.32621 -0.236918 +3.385729 1.32621 -0.233191 +3.395384 1.32621 -0.23192 +3.40504 1.32621 -0.233191 +3.414037 1.32621 -0.236918 +3.421763 1.32621 -0.242847 +3.427692 1.32621 -0.250573 +3.431418 1.32621 -0.259571 +3.43269 1.32621 -0.269226 +3.431418 1.32621 -0.278881 +3.427692 1.32621 -0.287879 +3.421763 1.32621 -0.295605 +3.42102 1.288654 -0.313629 +3.408654 1.288654 -0.318751 +3.395384 1.288654 -0.320498 +3.382114 1.288654 -0.318751 +3.369748 1.288654 -0.313629 +3.359129 1.288654 -0.305481 +3.350981 1.288654 -0.294862 +3.345859 1.288654 -0.282496 +3.344112 1.288654 -0.269226 +3.345859 1.288654 -0.255956 +3.350981 1.288654 -0.24359 +3.359129 1.288654 -0.232971 +3.369748 1.288654 -0.224823 +3.382114 1.288654 -0.2197 +3.395384 1.288654 -0.217953 +3.408654 1.288654 -0.2197 +3.421021 1.288654 -0.224823 +3.431639 1.288654 -0.232971 +3.439787 1.288654 -0.24359 +3.44491 1.288654 -0.255956 +3.446657 1.288654 -0.269226 +3.44491 1.288654 -0.282496 +3.431639 1.288654 -0.305481 +3.439787 1.288654 -0.294862 +3.455205 1.288654 -0.372838 +3.42635 1.288654 -0.384791 +3.395384 1.288654 -0.388867 +3.364419 1.288654 -0.38479 +3.335563 1.288654 -0.372838 +3.310785 1.288654 -0.353825 +3.291772 1.288654 -0.329046 +3.279819 1.288654 -0.300191 +3.275743 1.288654 -0.269226 +3.279819 1.288654 -0.23826 +3.291772 1.288654 -0.209405 +3.310785 1.288654 -0.184627 +3.335564 1.288654 -0.165613 +3.364419 1.288654 -0.153661 +3.395384 1.288654 -0.149585 +3.42635 1.288654 -0.153661 +3.455205 1.288654 -0.165614 +3.479983 1.288654 -0.184627 +3.498996 1.288654 -0.209405 +3.510949 1.288654 -0.23826 +3.515025 1.288654 -0.269226 +3.510949 1.288654 -0.300191 +3.479983 1.288654 -0.353825 +3.498996 1.288654 -0.329047 +3.486676 1.271962 -0.427348 +3.44264 1.271962 -0.445588 +3.395384 1.271962 -0.451809 +3.348128 1.271962 -0.445588 +3.304092 1.271962 -0.427347 +3.266278 1.271962 -0.398332 +3.237263 1.271962 -0.360517 +3.219023 1.271962 -0.316482 +3.212801 1.271962 -0.269226 +3.219023 1.271963 -0.22197 +3.237263 1.271963 -0.177934 +3.266279 1.271963 -0.14012 +3.304093 1.271963 -0.111104 +3.348128 1.271963 -0.092864 +3.395384 1.271963 -0.086643 +3.44264 1.271963 -0.092864 +3.486676 1.271963 -0.111104 +3.52449 1.271963 -0.14012 +3.553506 1.271963 -0.177934 +3.571746 1.271963 -0.22197 +3.577967 1.271962 -0.269226 +3.571746 1.271962 -0.316482 +3.553506 1.271962 -0.360517 +3.52449 1.271962 -0.398332 +3.517633 1.271962 -0.480968 +3.458665 1.271962 -0.505393 +3.395384 1.271962 -0.513724 +3.332103 1.271962 -0.505393 +3.273135 1.271962 -0.480968 +3.222497 1.271962 -0.442112 +3.183642 1.271962 -0.391475 +3.159217 1.271962 -0.332507 +3.150886 1.271962 -0.269226 +3.159217 1.271963 -0.205945 +3.183642 1.271963 -0.146977 +3.222498 1.271963 -0.096339 +3.273135 1.271963 -0.057484 +3.332103 1.271963 -0.033059 +3.395384 1.271963 -0.024728 +3.458665 1.271963 -0.033059 +3.517633 1.271963 -0.057484 +3.568271 1.271963 -0.096339 +3.607126 1.271963 -0.146977 +3.631552 1.271963 -0.205945 +3.639883 1.271962 -0.269226 +3.631552 1.271962 -0.332507 +3.568271 1.271962 -0.442112 +3.607126 1.271962 -0.391475 +3.517633 1.32621 -0.480968 +3.458665 1.32621 -0.505393 +3.395384 1.32621 -0.513724 +3.332103 1.32621 -0.505393 +3.273135 1.32621 -0.480968 +3.222497 1.32621 -0.442112 +3.183642 1.32621 -0.391475 +3.159217 1.32621 -0.332507 +3.150886 1.32621 -0.269226 +3.159217 1.32621 -0.205945 +3.183642 1.32621 -0.146977 +3.222498 1.32621 -0.096339 +3.273135 1.32621 -0.057484 +3.332103 1.32621 -0.033059 +3.395384 1.32621 -0.024728 +3.458665 1.32621 -0.033059 +3.517633 1.32621 -0.057484 +3.568271 1.32621 -0.096339 +3.607126 1.32621 -0.146977 +3.631552 1.32621 -0.205945 +3.639883 1.32621 -0.269226 +3.631552 1.32621 -0.332507 +3.568271 1.32621 -0.442112 +3.607126 1.32621 -0.391475 +3.529003 1.32621 -0.500661 +3.46455 1.32621 -0.527358 +3.395384 1.32621 -0.536464 +3.326218 1.32621 -0.527358 +3.261765 1.32621 -0.500661 +3.206418 1.32621 -0.458192 +3.163949 1.32621 -0.402845 +3.137252 1.32621 -0.338392 +3.128146 1.32621 -0.269226 +3.137252 1.32621 -0.20006 +3.163949 1.32621 -0.135607 +3.206418 1.32621 -0.08026 +3.261765 1.32621 -0.037791 +3.326218 1.32621 -0.011094 +3.395384 1.32621 -0.001988 +3.464551 1.32621 -0.011094 +3.529003 1.32621 -0.037791 +3.58435 1.32621 -0.08026 +3.626819 1.32621 -0.135607 +3.653517 1.32621 -0.20006 +3.662622 1.32621 -0.269226 +3.653517 1.32621 -0.338392 +3.58435 1.32621 -0.458192 +3.626819 1.32621 -0.402845 +numsurf 216 +SURF 0x30 +mat 17 +refs 3 +23 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 17 +refs 3 +1 0 0 +0 0 0 +2 0 0 +SURF 0x30 +mat 17 +refs 3 +2 0 0 +0 0 0 +3 0 0 +SURF 0x30 +mat 17 +refs 3 +3 0 0 +0 0 0 +4 0 0 +SURF 0x30 +mat 17 +refs 3 +4 0 0 +0 0 0 +5 0 0 +SURF 0x30 +mat 17 +refs 3 +5 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 17 +refs 3 +6 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 17 +refs 3 +7 0 0 +0 0 0 +8 0 0 +SURF 0x30 +mat 17 +refs 3 +8 0 0 +0 0 0 +9 0 0 +SURF 0x30 +mat 17 +refs 3 +9 0 0 +0 0 0 +10 0 0 +SURF 0x30 +mat 17 +refs 3 +10 0 0 +0 0 0 +11 0 0 +SURF 0x30 +mat 17 +refs 3 +11 0 0 +0 0 0 +12 0 0 +SURF 0x30 +mat 17 +refs 3 +12 0 0 +0 0 0 +13 0 0 +SURF 0x30 +mat 17 +refs 3 +13 0 0 +0 0 0 +14 0 0 +SURF 0x30 +mat 17 +refs 3 +14 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 17 +refs 3 +15 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 17 +refs 3 +16 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 17 +refs 3 +17 0 0 +0 0 0 +18 0 0 +SURF 0x30 +mat 17 +refs 3 +18 0 0 +0 0 0 +19 0 0 +SURF 0x30 +mat 17 +refs 3 +19 0 0 +0 0 0 +20 0 0 +SURF 0x30 +mat 17 +refs 3 +20 0 0 +0 0 0 +21 0 0 +SURF 0x30 +mat 17 +refs 3 +21 0 0 +0 0 0 +22 0 0 +SURF 0x30 +mat 17 +refs 3 +22 0 0 +0 0 0 +24 0 0 +SURF 0x30 +mat 17 +refs 3 +24 0 0 +0 0 0 +23 0 0 +SURF 0x30 +mat 17 +refs 3 +26 0 0 +25 0 0 +49 0 0 +SURF 0x30 +mat 17 +refs 3 +26 0 0 +27 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +27 0 0 +28 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +28 0 0 +29 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +29 0 0 +30 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +30 0 0 +31 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +31 0 0 +32 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +32 0 0 +33 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +33 0 0 +34 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +34 0 0 +35 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +35 0 0 +36 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +36 0 0 +37 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +38 0 0 +25 0 0 +37 0 0 +SURF 0x30 +mat 17 +refs 3 +38 0 0 +39 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +39 0 0 +40 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +40 0 0 +41 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +42 0 0 +25 0 0 +41 0 0 +SURF 0x30 +mat 17 +refs 3 +42 0 0 +43 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +43 0 0 +44 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +44 0 0 +45 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +46 0 0 +25 0 0 +45 0 0 +SURF 0x30 +mat 17 +refs 3 +46 0 0 +47 0 0 +25 0 0 +SURF 0x30 +mat 17 +refs 3 +48 0 0 +25 0 0 +47 0 0 +SURF 0x30 +mat 17 +refs 3 +49 0 0 +25 0 0 +48 0 0 +SURF 0x30 +mat 17 +refs 4 +50 0 0 +26 0 0 +49 0 0 +73 0 0 +SURF 0x30 +mat 17 +refs 4 +50 0 0 +51 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 17 +refs 4 +51 0 0 +52 0 0 +28 0 0 +27 0 0 +SURF 0x30 +mat 17 +refs 4 +52 0 0 +53 0 0 +29 0 0 +28 0 0 +SURF 0x30 +mat 17 +refs 4 +53 0 0 +54 0 0 +30 0 0 +29 0 0 +SURF 0x30 +mat 17 +refs 4 +54 0 0 +55 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 17 +refs 4 +55 0 0 +56 0 0 +32 0 0 +31 0 0 +SURF 0x30 +mat 17 +refs 4 +56 0 0 +57 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 17 +refs 4 +57 0 0 +58 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 17 +refs 4 +58 0 0 +59 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 17 +refs 4 +59 0 0 +60 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 17 +refs 4 +60 0 0 +61 0 0 +37 0 0 +36 0 0 +SURF 0x30 +mat 17 +refs 4 +62 0 0 +38 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 17 +refs 4 +62 0 0 +63 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 17 +refs 4 +63 0 0 +64 0 0 +40 0 0 +39 0 0 +SURF 0x30 +mat 17 +refs 4 +64 0 0 +65 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 17 +refs 4 +66 0 0 +42 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 17 +refs 4 +66 0 0 +67 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 17 +refs 4 +67 0 0 +68 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 17 +refs 4 +68 0 0 +69 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 17 +refs 4 +70 0 0 +46 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 17 +refs 4 +70 0 0 +71 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 17 +refs 4 +72 0 0 +48 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 17 +refs 4 +73 0 0 +49 0 0 +48 0 0 +72 0 0 +SURF 0x30 +mat 17 +refs 4 +74 0 0 +50 0 0 +73 0 0 +96 0 0 +SURF 0x30 +mat 17 +refs 4 +74 0 0 +75 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 17 +refs 4 +75 0 0 +76 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 17 +refs 4 +76 0 0 +77 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 17 +refs 4 +77 0 0 +78 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 17 +refs 4 +78 0 0 +79 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 17 +refs 4 +79 0 0 +80 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 17 +refs 4 +80 0 0 +81 0 0 +57 0 0 +56 0 0 +SURF 0x30 +mat 17 +refs 4 +81 0 0 +82 0 0 +58 0 0 +57 0 0 +SURF 0x30 +mat 17 +refs 4 +82 0 0 +83 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 17 +refs 4 +83 0 0 +84 0 0 +60 0 0 +59 0 0 +SURF 0x30 +mat 17 +refs 4 +84 0 0 +85 0 0 +61 0 0 +60 0 0 +SURF 0x30 +mat 17 +refs 4 +86 0 0 +62 0 0 +61 0 0 +85 0 0 +SURF 0x30 +mat 17 +refs 4 +86 0 0 +87 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 17 +refs 4 +87 0 0 +88 0 0 +64 0 0 +63 0 0 +SURF 0x30 +mat 17 +refs 4 +88 0 0 +89 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 17 +refs 4 +90 0 0 +66 0 0 +65 0 0 +89 0 0 +SURF 0x30 +mat 17 +refs 4 +90 0 0 +91 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 17 +refs 4 +91 0 0 +92 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 17 +refs 4 +92 0 0 +93 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 17 +refs 4 +94 0 0 +70 0 0 +69 0 0 +93 0 0 +SURF 0x30 +mat 17 +refs 4 +94 0 0 +95 0 0 +71 0 0 +70 0 0 +SURF 0x30 +mat 17 +refs 4 +97 0 0 +72 0 0 +71 0 0 +95 0 0 +SURF 0x30 +mat 17 +refs 4 +96 0 0 +73 0 0 +72 0 0 +97 0 0 +SURF 0x30 +mat 17 +refs 4 +98 0 0 +74 0 0 +96 0 0 +120 0 0 +SURF 0x30 +mat 17 +refs 4 +98 0 0 +99 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 17 +refs 4 +99 0 0 +100 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 17 +refs 4 +100 0 0 +101 0 0 +77 0 0 +76 0 0 +SURF 0x30 +mat 17 +refs 4 +101 0 0 +102 0 0 +78 0 0 +77 0 0 +SURF 0x30 +mat 17 +refs 4 +102 0 0 +103 0 0 +79 0 0 +78 0 0 +SURF 0x30 +mat 17 +refs 4 +103 0 0 +104 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 17 +refs 4 +104 0 0 +105 0 0 +81 0 0 +80 0 0 +SURF 0x30 +mat 17 +refs 4 +105 0 0 +106 0 0 +82 0 0 +81 0 0 +SURF 0x30 +mat 17 +refs 4 +106 0 0 +107 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 17 +refs 4 +107 0 0 +108 0 0 +84 0 0 +83 0 0 +SURF 0x30 +mat 17 +refs 4 +108 0 0 +109 0 0 +85 0 0 +84 0 0 +SURF 0x30 +mat 17 +refs 4 +110 0 0 +86 0 0 +85 0 0 +109 0 0 +SURF 0x30 +mat 17 +refs 4 +110 0 0 +111 0 0 +87 0 0 +86 0 0 +SURF 0x30 +mat 17 +refs 4 +111 0 0 +112 0 0 +88 0 0 +87 0 0 +SURF 0x30 +mat 17 +refs 4 +112 0 0 +113 0 0 +89 0 0 +88 0 0 +SURF 0x30 +mat 17 +refs 4 +114 0 0 +90 0 0 +89 0 0 +113 0 0 +SURF 0x30 +mat 17 +refs 4 +114 0 0 +115 0 0 +91 0 0 +90 0 0 +SURF 0x30 +mat 17 +refs 4 +115 0 0 +116 0 0 +92 0 0 +91 0 0 +SURF 0x30 +mat 17 +refs 4 +116 0 0 +117 0 0 +93 0 0 +92 0 0 +SURF 0x30 +mat 17 +refs 4 +118 0 0 +94 0 0 +93 0 0 +117 0 0 +SURF 0x30 +mat 17 +refs 4 +118 0 0 +119 0 0 +95 0 0 +94 0 0 +SURF 0x30 +mat 17 +refs 4 +121 0 0 +97 0 0 +95 0 0 +119 0 0 +SURF 0x30 +mat 17 +refs 4 +120 0 0 +96 0 0 +97 0 0 +121 0 0 +SURF 0x30 +mat 17 +refs 4 +122 0 0 +98 0 0 +120 0 0 +145 0 0 +SURF 0x30 +mat 17 +refs 4 +122 0 0 +123 0 0 +99 0 0 +98 0 0 +SURF 0x30 +mat 17 +refs 4 +123 0 0 +124 0 0 +100 0 0 +99 0 0 +SURF 0x30 +mat 17 +refs 4 +124 0 0 +125 0 0 +101 0 0 +100 0 0 +SURF 0x30 +mat 17 +refs 4 +125 0 0 +126 0 0 +102 0 0 +101 0 0 +SURF 0x30 +mat 17 +refs 4 +126 0 0 +127 0 0 +103 0 0 +102 0 0 +SURF 0x30 +mat 17 +refs 4 +127 0 0 +128 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 17 +refs 4 +128 0 0 +129 0 0 +105 0 0 +104 0 0 +SURF 0x30 +mat 17 +refs 4 +129 0 0 +130 0 0 +106 0 0 +105 0 0 +SURF 0x30 +mat 17 +refs 4 +130 0 0 +131 0 0 +107 0 0 +106 0 0 +SURF 0x30 +mat 17 +refs 4 +131 0 0 +132 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 17 +refs 4 +132 0 0 +133 0 0 +109 0 0 +108 0 0 +SURF 0x30 +mat 17 +refs 4 +134 0 0 +110 0 0 +109 0 0 +133 0 0 +SURF 0x30 +mat 17 +refs 4 +134 0 0 +135 0 0 +111 0 0 +110 0 0 +SURF 0x30 +mat 17 +refs 4 +135 0 0 +136 0 0 +112 0 0 +111 0 0 +SURF 0x30 +mat 17 +refs 4 +136 0 0 +137 0 0 +113 0 0 +112 0 0 +SURF 0x30 +mat 17 +refs 4 +138 0 0 +114 0 0 +113 0 0 +137 0 0 +SURF 0x30 +mat 17 +refs 4 +138 0 0 +139 0 0 +115 0 0 +114 0 0 +SURF 0x30 +mat 17 +refs 4 +139 0 0 +140 0 0 +116 0 0 +115 0 0 +SURF 0x30 +mat 17 +refs 4 +140 0 0 +141 0 0 +117 0 0 +116 0 0 +SURF 0x30 +mat 17 +refs 4 +142 0 0 +118 0 0 +117 0 0 +141 0 0 +SURF 0x30 +mat 17 +refs 4 +142 0 0 +143 0 0 +119 0 0 +118 0 0 +SURF 0x30 +mat 17 +refs 4 +144 0 0 +121 0 0 +119 0 0 +143 0 0 +SURF 0x30 +mat 17 +refs 4 +145 0 0 +120 0 0 +121 0 0 +144 0 0 +SURF 0x30 +mat 17 +refs 4 +146 0 0 +122 0 0 +145 0 0 +168 0 0 +SURF 0x30 +mat 17 +refs 4 +146 0 0 +147 0 0 +123 0 0 +122 0 0 +SURF 0x30 +mat 17 +refs 4 +147 0 0 +148 0 0 +124 0 0 +123 0 0 +SURF 0x30 +mat 17 +refs 4 +148 0 0 +149 0 0 +125 0 0 +124 0 0 +SURF 0x30 +mat 17 +refs 4 +149 0 0 +150 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 17 +refs 4 +150 0 0 +151 0 0 +127 0 0 +126 0 0 +SURF 0x30 +mat 17 +refs 4 +151 0 0 +152 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 17 +refs 4 +152 0 0 +153 0 0 +129 0 0 +128 0 0 +SURF 0x30 +mat 17 +refs 4 +153 0 0 +154 0 0 +130 0 0 +129 0 0 +SURF 0x30 +mat 17 +refs 4 +154 0 0 +155 0 0 +131 0 0 +130 0 0 +SURF 0x30 +mat 17 +refs 4 +155 0 0 +156 0 0 +132 0 0 +131 0 0 +SURF 0x30 +mat 17 +refs 4 +156 0 0 +157 0 0 +133 0 0 +132 0 0 +SURF 0x30 +mat 17 +refs 4 +158 0 0 +134 0 0 +133 0 0 +157 0 0 +SURF 0x30 +mat 17 +refs 4 +158 0 0 +159 0 0 +135 0 0 +134 0 0 +SURF 0x30 +mat 17 +refs 4 +159 0 0 +160 0 0 +136 0 0 +135 0 0 +SURF 0x30 +mat 17 +refs 4 +160 0 0 +161 0 0 +137 0 0 +136 0 0 +SURF 0x30 +mat 17 +refs 4 +162 0 0 +138 0 0 +137 0 0 +161 0 0 +SURF 0x30 +mat 17 +refs 4 +162 0 0 +163 0 0 +139 0 0 +138 0 0 +SURF 0x30 +mat 17 +refs 4 +163 0 0 +164 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 17 +refs 4 +164 0 0 +165 0 0 +141 0 0 +140 0 0 +SURF 0x30 +mat 17 +refs 4 +166 0 0 +142 0 0 +141 0 0 +165 0 0 +SURF 0x30 +mat 17 +refs 4 +166 0 0 +167 0 0 +143 0 0 +142 0 0 +SURF 0x30 +mat 17 +refs 4 +169 0 0 +144 0 0 +143 0 0 +167 0 0 +SURF 0x30 +mat 17 +refs 4 +168 0 0 +145 0 0 +144 0 0 +169 0 0 +SURF 0x30 +mat 17 +refs 4 +170 0 0 +146 0 0 +168 0 0 +192 0 0 +SURF 0x30 +mat 17 +refs 4 +170 0 0 +171 0 0 +147 0 0 +146 0 0 +SURF 0x30 +mat 17 +refs 4 +171 0 0 +172 0 0 +148 0 0 +147 0 0 +SURF 0x30 +mat 17 +refs 4 +172 0 0 +173 0 0 +149 0 0 +148 0 0 +SURF 0x30 +mat 17 +refs 4 +173 0 0 +174 0 0 +150 0 0 +149 0 0 +SURF 0x30 +mat 17 +refs 4 +174 0 0 +175 0 0 +151 0 0 +150 0 0 +SURF 0x30 +mat 17 +refs 4 +175 0 0 +176 0 0 +152 0 0 +151 0 0 +SURF 0x30 +mat 17 +refs 4 +176 0 0 +177 0 0 +153 0 0 +152 0 0 +SURF 0x30 +mat 17 +refs 4 +177 0 0 +178 0 0 +154 0 0 +153 0 0 +SURF 0x30 +mat 17 +refs 4 +178 0 0 +179 0 0 +155 0 0 +154 0 0 +SURF 0x30 +mat 17 +refs 4 +179 0 0 +180 0 0 +156 0 0 +155 0 0 +SURF 0x30 +mat 17 +refs 4 +180 0 0 +181 0 0 +157 0 0 +156 0 0 +SURF 0x30 +mat 17 +refs 4 +182 0 0 +158 0 0 +157 0 0 +181 0 0 +SURF 0x30 +mat 17 +refs 4 +182 0 0 +183 0 0 +159 0 0 +158 0 0 +SURF 0x30 +mat 17 +refs 4 +183 0 0 +184 0 0 +160 0 0 +159 0 0 +SURF 0x30 +mat 17 +refs 4 +184 0 0 +185 0 0 +161 0 0 +160 0 0 +SURF 0x30 +mat 17 +refs 4 +186 0 0 +162 0 0 +161 0 0 +185 0 0 +SURF 0x30 +mat 17 +refs 4 +186 0 0 +187 0 0 +163 0 0 +162 0 0 +SURF 0x30 +mat 17 +refs 4 +187 0 0 +188 0 0 +164 0 0 +163 0 0 +SURF 0x30 +mat 17 +refs 4 +188 0 0 +189 0 0 +165 0 0 +164 0 0 +SURF 0x30 +mat 17 +refs 4 +190 0 0 +166 0 0 +165 0 0 +189 0 0 +SURF 0x30 +mat 17 +refs 4 +190 0 0 +191 0 0 +167 0 0 +166 0 0 +SURF 0x30 +mat 17 +refs 4 +193 0 0 +169 0 0 +167 0 0 +191 0 0 +SURF 0x30 +mat 17 +refs 4 +192 0 0 +168 0 0 +169 0 0 +193 0 0 +SURF 0x30 +mat 17 +refs 4 +194 0 0 +170 0 0 +192 0 0 +216 0 0 +SURF 0x30 +mat 17 +refs 4 +194 0 0 +195 0 0 +171 0 0 +170 0 0 +SURF 0x30 +mat 17 +refs 4 +195 0 0 +196 0 0 +172 0 0 +171 0 0 +SURF 0x30 +mat 17 +refs 4 +196 0 0 +197 0 0 +173 0 0 +172 0 0 +SURF 0x30 +mat 17 +refs 4 +197 0 0 +198 0 0 +174 0 0 +173 0 0 +SURF 0x30 +mat 17 +refs 4 +198 0 0 +199 0 0 +175 0 0 +174 0 0 +SURF 0x30 +mat 17 +refs 4 +199 0 0 +200 0 0 +176 0 0 +175 0 0 +SURF 0x30 +mat 17 +refs 4 +200 0 0 +201 0 0 +177 0 0 +176 0 0 +SURF 0x30 +mat 17 +refs 4 +201 0 0 +202 0 0 +178 0 0 +177 0 0 +SURF 0x30 +mat 17 +refs 4 +202 0 0 +203 0 0 +179 0 0 +178 0 0 +SURF 0x30 +mat 17 +refs 4 +203 0 0 +204 0 0 +180 0 0 +179 0 0 +SURF 0x30 +mat 17 +refs 4 +204 0 0 +205 0 0 +181 0 0 +180 0 0 +SURF 0x30 +mat 17 +refs 4 +206 0 0 +182 0 0 +181 0 0 +205 0 0 +SURF 0x30 +mat 17 +refs 4 +206 0 0 +207 0 0 +183 0 0 +182 0 0 +SURF 0x30 +mat 17 +refs 4 +207 0 0 +208 0 0 +184 0 0 +183 0 0 +SURF 0x30 +mat 17 +refs 4 +208 0 0 +209 0 0 +185 0 0 +184 0 0 +SURF 0x30 +mat 17 +refs 4 +210 0 0 +186 0 0 +185 0 0 +209 0 0 +SURF 0x30 +mat 17 +refs 4 +210 0 0 +211 0 0 +187 0 0 +186 0 0 +SURF 0x30 +mat 17 +refs 4 +211 0 0 +212 0 0 +188 0 0 +187 0 0 +SURF 0x30 +mat 17 +refs 4 +212 0 0 +213 0 0 +189 0 0 +188 0 0 +SURF 0x30 +mat 17 +refs 4 +214 0 0 +190 0 0 +189 0 0 +213 0 0 +SURF 0x30 +mat 17 +refs 4 +214 0 0 +215 0 0 +191 0 0 +190 0 0 +SURF 0x30 +mat 17 +refs 4 +217 0 0 +193 0 0 +191 0 0 +215 0 0 +SURF 0x30 +mat 17 +refs 4 +216 0 0 +192 0 0 +193 0 0 +217 0 0 +kids 0 +OBJECT poly +name "rwheel2.R" +data 10 +Circle.027 +crease 30.000000 +numvert 218 +2.696455 0.407726 -0.538809 +2.830829 0.640469 -0.538809 +2.766012 0.667317 -0.538809 +2.696455 0.676475 -0.538809 +2.626898 0.667317 -0.538809 +2.562081 0.640469 -0.538809 +2.506422 0.59776 -0.538809 +2.463713 0.5421 -0.538809 +2.436865 0.477284 -0.538809 +2.427707 0.407726 -0.538809 +2.436865 0.338169 -0.538809 +2.463713 0.273353 -0.538809 +2.506422 0.217693 -0.538809 +2.562082 0.174984 -0.538809 +2.626898 0.148136 -0.538809 +2.696455 0.138979 -0.538809 +2.766013 0.148136 -0.538809 +2.830829 0.174984 -0.538809 +2.886489 0.217693 -0.538809 +2.929198 0.273353 -0.538809 +2.956046 0.33817 -0.538809 +2.965203 0.407727 -0.538809 +2.956046 0.477284 -0.538809 +2.886489 0.59776 -0.538809 +2.929198 0.5421 -0.538809 +2.696455 0.407726 -0.746253 +2.706868 0.425763 -0.741594 +2.701846 0.427843 -0.741594 +2.696455 0.428553 -0.741594 +2.691065 0.427843 -0.741594 +2.686042 0.425763 -0.741594 +2.681729 0.422453 -0.741594 +2.678419 0.41814 -0.741594 +2.676339 0.413117 -0.741594 +2.675629 0.407726 -0.741594 +2.676339 0.402336 -0.741594 +2.678419 0.397313 -0.741594 +2.681729 0.393 -0.741594 +2.686042 0.38969 -0.741594 +2.691065 0.38761 -0.741594 +2.696455 0.3869 -0.741594 +2.701846 0.38761 -0.741594 +2.706868 0.38969 -0.741594 +2.711182 0.393 -0.741594 +2.714491 0.397313 -0.741594 +2.716572 0.402336 -0.741594 +2.717282 0.407726 -0.741594 +2.716572 0.413117 -0.741594 +2.714491 0.41814 -0.741594 +2.711182 0.422453 -0.741594 +2.715108 0.440034 -0.720245 +2.706111 0.443761 -0.720245 +2.696455 0.445032 -0.720245 +2.6868 0.443761 -0.720245 +2.677803 0.440034 -0.720245 +2.670076 0.434106 -0.720245 +2.664148 0.426379 -0.720245 +2.660421 0.417382 -0.720245 +2.65915 0.407726 -0.720245 +2.660421 0.398071 -0.720245 +2.664148 0.389074 -0.720245 +2.670076 0.381347 -0.720245 +2.677803 0.375419 -0.720245 +2.6868 0.371692 -0.720245 +2.696455 0.370421 -0.720245 +2.706111 0.371692 -0.720245 +2.715108 0.375419 -0.720245 +2.722834 0.381347 -0.720245 +2.728763 0.389074 -0.720245 +2.73249 0.398071 -0.720245 +2.733761 0.407726 -0.720245 +2.73249 0.417382 -0.720245 +2.728763 0.426379 -0.720245 +2.722834 0.434106 -0.720245 +2.715108 0.440034 -0.682689 +2.706111 0.443761 -0.682689 +2.696455 0.445032 -0.682689 +2.6868 0.443761 -0.682689 +2.677803 0.440034 -0.682689 +2.670076 0.434106 -0.682689 +2.664148 0.426379 -0.682689 +2.660421 0.417382 -0.682689 +2.65915 0.407726 -0.682689 +2.660421 0.398071 -0.682689 +2.664148 0.389074 -0.682689 +2.670076 0.381347 -0.682689 +2.677803 0.375419 -0.682689 +2.6868 0.371692 -0.682689 +2.696455 0.370421 -0.682689 +2.706111 0.371692 -0.682689 +2.715108 0.375419 -0.682689 +2.722834 0.381347 -0.682689 +2.728763 0.389074 -0.682689 +2.73249 0.398071 -0.682689 +2.733761 0.407726 -0.682689 +2.73249 0.417382 -0.682689 +2.722834 0.434106 -0.682689 +2.728763 0.426379 -0.682689 +2.756276 0.511339 -0.682689 +2.727421 0.523291 -0.682689 +2.696455 0.527368 -0.682689 +2.66549 0.523291 -0.682689 +2.636635 0.511339 -0.682689 +2.611856 0.492326 -0.682689 +2.592843 0.467547 -0.682689 +2.580891 0.438692 -0.682689 +2.576814 0.407726 -0.682689 +2.580891 0.376761 -0.682689 +2.592843 0.347906 -0.682689 +2.611856 0.323127 -0.682689 +2.636635 0.304114 -0.682689 +2.66549 0.292162 -0.682689 +2.696455 0.288085 -0.682689 +2.727421 0.292162 -0.682689 +2.756276 0.304114 -0.682689 +2.781054 0.323127 -0.682689 +2.800068 0.347906 -0.682689 +2.81202 0.376761 -0.682689 +2.816097 0.407727 -0.682689 +2.81202 0.438692 -0.682689 +2.781054 0.492326 -0.682689 +2.800068 0.467547 -0.682689 +2.787747 0.565848 -0.665997 +2.743711 0.584088 -0.665997 +2.696455 0.59031 -0.665997 +2.649199 0.584088 -0.665997 +2.605164 0.565848 -0.665997 +2.56735 0.536832 -0.665997 +2.538334 0.499018 -0.665997 +2.520094 0.454982 -0.665997 +2.513872 0.407726 -0.665997 +2.520094 0.360471 -0.665997 +2.538334 0.316435 -0.665997 +2.56735 0.278621 -0.665997 +2.605164 0.249605 -0.665997 +2.649199 0.231365 -0.665997 +2.696455 0.225144 -0.665997 +2.743711 0.231365 -0.665997 +2.787747 0.249605 -0.665997 +2.825561 0.278621 -0.665997 +2.854577 0.316435 -0.665997 +2.872817 0.360471 -0.665997 +2.879038 0.407727 -0.665997 +2.872817 0.454983 -0.665997 +2.854577 0.499018 -0.665997 +2.825561 0.536832 -0.665997 +2.818704 0.619468 -0.665997 +2.759736 0.643894 -0.665997 +2.696455 0.652225 -0.665997 +2.633174 0.643894 -0.665997 +2.574206 0.619468 -0.665997 +2.523569 0.580613 -0.665997 +2.484714 0.529976 -0.665997 +2.460288 0.471007 -0.665997 +2.451957 0.407726 -0.665997 +2.460288 0.344446 -0.665997 +2.484714 0.285477 -0.665997 +2.523569 0.23484 -0.665997 +2.574206 0.195985 -0.665997 +2.633175 0.171559 -0.665997 +2.696455 0.163228 -0.665997 +2.759736 0.171559 -0.665997 +2.818705 0.195985 -0.665997 +2.869342 0.23484 -0.665997 +2.908197 0.285477 -0.665997 +2.932623 0.344446 -0.665997 +2.940954 0.407727 -0.665997 +2.932623 0.471007 -0.665997 +2.869342 0.580613 -0.665997 +2.908197 0.529976 -0.665997 +2.818704 0.619468 -0.720245 +2.759736 0.643894 -0.720245 +2.696455 0.652225 -0.720245 +2.633174 0.643894 -0.720245 +2.574206 0.619468 -0.720245 +2.523569 0.580613 -0.720245 +2.484714 0.529976 -0.720245 +2.460288 0.471007 -0.720245 +2.451957 0.407726 -0.720245 +2.460288 0.344446 -0.720245 +2.484714 0.285477 -0.720245 +2.523569 0.23484 -0.720245 +2.574206 0.195985 -0.720245 +2.633175 0.171559 -0.720245 +2.696455 0.163228 -0.720245 +2.759736 0.171559 -0.720245 +2.818705 0.195985 -0.720245 +2.869342 0.23484 -0.720245 +2.908197 0.285477 -0.720245 +2.932623 0.344446 -0.720245 +2.940954 0.407727 -0.720245 +2.932623 0.471007 -0.720245 +2.869342 0.580613 -0.720245 +2.908197 0.529976 -0.720245 +2.830074 0.639162 -0.720245 +2.765621 0.665859 -0.720245 +2.696455 0.674965 -0.720245 +2.627289 0.665859 -0.720245 +2.562836 0.639162 -0.720245 +2.507489 0.596693 -0.720245 +2.46502 0.541346 -0.720245 +2.438323 0.476893 -0.720245 +2.429217 0.407726 -0.720245 +2.438323 0.33856 -0.720245 +2.46502 0.274107 -0.720245 +2.507489 0.21876 -0.720245 +2.562836 0.176291 -0.720245 +2.627289 0.149594 -0.720245 +2.696455 0.140488 -0.720245 +2.765622 0.149594 -0.720245 +2.830075 0.176291 -0.720245 +2.885421 0.218761 -0.720245 +2.927891 0.274107 -0.720245 +2.954588 0.33856 -0.720245 +2.963694 0.407727 -0.720245 +2.954588 0.476893 -0.720245 +2.885421 0.596693 -0.720245 +2.927891 0.541346 -0.720245 +numsurf 216 +SURF 0x30 +mat 18 +refs 3 +1 0 0 +0 0 0 +23 0 0 +SURF 0x30 +mat 18 +refs 3 +2 0 0 +0 0 0 +1 0 0 +SURF 0x30 +mat 18 +refs 3 +3 0 0 +0 0 0 +2 0 0 +SURF 0x30 +mat 18 +refs 3 +4 0 0 +0 0 0 +3 0 0 +SURF 0x30 +mat 18 +refs 3 +5 0 0 +0 0 0 +4 0 0 +SURF 0x30 +mat 18 +refs 3 +6 0 0 +0 0 0 +5 0 0 +SURF 0x30 +mat 18 +refs 3 +7 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 18 +refs 3 +8 0 0 +0 0 0 +7 0 0 +SURF 0x30 +mat 18 +refs 3 +9 0 0 +0 0 0 +8 0 0 +SURF 0x30 +mat 18 +refs 3 +10 0 0 +0 0 0 +9 0 0 +SURF 0x30 +mat 18 +refs 3 +11 0 0 +0 0 0 +10 0 0 +SURF 0x30 +mat 18 +refs 3 +12 0 0 +0 0 0 +11 0 0 +SURF 0x30 +mat 18 +refs 3 +13 0 0 +0 0 0 +12 0 0 +SURF 0x30 +mat 18 +refs 3 +14 0 0 +0 0 0 +13 0 0 +SURF 0x30 +mat 18 +refs 3 +15 0 0 +0 0 0 +14 0 0 +SURF 0x30 +mat 18 +refs 3 +16 0 0 +0 0 0 +15 0 0 +SURF 0x30 +mat 18 +refs 3 +17 0 0 +0 0 0 +16 0 0 +SURF 0x30 +mat 18 +refs 3 +18 0 0 +0 0 0 +17 0 0 +SURF 0x30 +mat 18 +refs 3 +19 0 0 +0 0 0 +18 0 0 +SURF 0x30 +mat 18 +refs 3 +20 0 0 +0 0 0 +19 0 0 +SURF 0x30 +mat 18 +refs 3 +21 0 0 +0 0 0 +20 0 0 +SURF 0x30 +mat 18 +refs 3 +22 0 0 +0 0 0 +21 0 0 +SURF 0x30 +mat 18 +refs 3 +24 0 0 +0 0 0 +22 0 0 +SURF 0x30 +mat 18 +refs 3 +23 0 0 +0 0 0 +24 0 0 +SURF 0x30 +mat 18 +refs 3 +26 0 0 +49 0 0 +25 0 0 +SURF 0x30 +mat 18 +refs 3 +26 0 0 +25 0 0 +27 0 0 +SURF 0x30 +mat 18 +refs 3 +27 0 0 +25 0 0 +28 0 0 +SURF 0x30 +mat 18 +refs 3 +28 0 0 +25 0 0 +29 0 0 +SURF 0x30 +mat 18 +refs 3 +29 0 0 +25 0 0 +30 0 0 +SURF 0x30 +mat 18 +refs 3 +30 0 0 +25 0 0 +31 0 0 +SURF 0x30 +mat 18 +refs 3 +31 0 0 +25 0 0 +32 0 0 +SURF 0x30 +mat 18 +refs 3 +32 0 0 +25 0 0 +33 0 0 +SURF 0x30 +mat 18 +refs 3 +33 0 0 +25 0 0 +34 0 0 +SURF 0x30 +mat 18 +refs 3 +34 0 0 +25 0 0 +35 0 0 +SURF 0x30 +mat 18 +refs 3 +35 0 0 +25 0 0 +36 0 0 +SURF 0x30 +mat 18 +refs 3 +36 0 0 +25 0 0 +37 0 0 +SURF 0x30 +mat 18 +refs 3 +38 0 0 +37 0 0 +25 0 0 +SURF 0x30 +mat 18 +refs 3 +38 0 0 +25 0 0 +39 0 0 +SURF 0x30 +mat 18 +refs 3 +39 0 0 +25 0 0 +40 0 0 +SURF 0x30 +mat 18 +refs 3 +40 0 0 +25 0 0 +41 0 0 +SURF 0x30 +mat 18 +refs 3 +42 0 0 +41 0 0 +25 0 0 +SURF 0x30 +mat 18 +refs 3 +42 0 0 +25 0 0 +43 0 0 +SURF 0x30 +mat 18 +refs 3 +43 0 0 +25 0 0 +44 0 0 +SURF 0x30 +mat 18 +refs 3 +44 0 0 +25 0 0 +45 0 0 +SURF 0x30 +mat 18 +refs 3 +46 0 0 +45 0 0 +25 0 0 +SURF 0x30 +mat 18 +refs 3 +46 0 0 +25 0 0 +47 0 0 +SURF 0x30 +mat 18 +refs 3 +48 0 0 +47 0 0 +25 0 0 +SURF 0x30 +mat 18 +refs 3 +49 0 0 +48 0 0 +25 0 0 +SURF 0x30 +mat 18 +refs 4 +50 0 0 +73 0 0 +49 0 0 +26 0 0 +SURF 0x30 +mat 18 +refs 4 +50 0 0 +26 0 0 +27 0 0 +51 0 0 +SURF 0x30 +mat 18 +refs 4 +51 0 0 +27 0 0 +28 0 0 +52 0 0 +SURF 0x30 +mat 18 +refs 4 +52 0 0 +28 0 0 +29 0 0 +53 0 0 +SURF 0x30 +mat 18 +refs 4 +53 0 0 +29 0 0 +30 0 0 +54 0 0 +SURF 0x30 +mat 18 +refs 4 +54 0 0 +30 0 0 +31 0 0 +55 0 0 +SURF 0x30 +mat 18 +refs 4 +55 0 0 +31 0 0 +32 0 0 +56 0 0 +SURF 0x30 +mat 18 +refs 4 +56 0 0 +32 0 0 +33 0 0 +57 0 0 +SURF 0x30 +mat 18 +refs 4 +57 0 0 +33 0 0 +34 0 0 +58 0 0 +SURF 0x30 +mat 18 +refs 4 +58 0 0 +34 0 0 +35 0 0 +59 0 0 +SURF 0x30 +mat 18 +refs 4 +59 0 0 +35 0 0 +36 0 0 +60 0 0 +SURF 0x30 +mat 18 +refs 4 +60 0 0 +36 0 0 +37 0 0 +61 0 0 +SURF 0x30 +mat 18 +refs 4 +62 0 0 +61 0 0 +37 0 0 +38 0 0 +SURF 0x30 +mat 18 +refs 4 +62 0 0 +38 0 0 +39 0 0 +63 0 0 +SURF 0x30 +mat 18 +refs 4 +63 0 0 +39 0 0 +40 0 0 +64 0 0 +SURF 0x30 +mat 18 +refs 4 +64 0 0 +40 0 0 +41 0 0 +65 0 0 +SURF 0x30 +mat 18 +refs 4 +66 0 0 +65 0 0 +41 0 0 +42 0 0 +SURF 0x30 +mat 18 +refs 4 +66 0 0 +42 0 0 +43 0 0 +67 0 0 +SURF 0x30 +mat 18 +refs 4 +67 0 0 +43 0 0 +44 0 0 +68 0 0 +SURF 0x30 +mat 18 +refs 4 +68 0 0 +44 0 0 +45 0 0 +69 0 0 +SURF 0x30 +mat 18 +refs 4 +70 0 0 +69 0 0 +45 0 0 +46 0 0 +SURF 0x30 +mat 18 +refs 4 +70 0 0 +46 0 0 +47 0 0 +71 0 0 +SURF 0x30 +mat 18 +refs 4 +72 0 0 +71 0 0 +47 0 0 +48 0 0 +SURF 0x30 +mat 18 +refs 4 +73 0 0 +72 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 18 +refs 4 +74 0 0 +96 0 0 +73 0 0 +50 0 0 +SURF 0x30 +mat 18 +refs 4 +74 0 0 +50 0 0 +51 0 0 +75 0 0 +SURF 0x30 +mat 18 +refs 4 +75 0 0 +51 0 0 +52 0 0 +76 0 0 +SURF 0x30 +mat 18 +refs 4 +76 0 0 +52 0 0 +53 0 0 +77 0 0 +SURF 0x30 +mat 18 +refs 4 +77 0 0 +53 0 0 +54 0 0 +78 0 0 +SURF 0x30 +mat 18 +refs 4 +78 0 0 +54 0 0 +55 0 0 +79 0 0 +SURF 0x30 +mat 18 +refs 4 +79 0 0 +55 0 0 +56 0 0 +80 0 0 +SURF 0x30 +mat 18 +refs 4 +80 0 0 +56 0 0 +57 0 0 +81 0 0 +SURF 0x30 +mat 18 +refs 4 +81 0 0 +57 0 0 +58 0 0 +82 0 0 +SURF 0x30 +mat 18 +refs 4 +82 0 0 +58 0 0 +59 0 0 +83 0 0 +SURF 0x30 +mat 18 +refs 4 +83 0 0 +59 0 0 +60 0 0 +84 0 0 +SURF 0x30 +mat 18 +refs 4 +84 0 0 +60 0 0 +61 0 0 +85 0 0 +SURF 0x30 +mat 18 +refs 4 +86 0 0 +85 0 0 +61 0 0 +62 0 0 +SURF 0x30 +mat 18 +refs 4 +86 0 0 +62 0 0 +63 0 0 +87 0 0 +SURF 0x30 +mat 18 +refs 4 +87 0 0 +63 0 0 +64 0 0 +88 0 0 +SURF 0x30 +mat 18 +refs 4 +88 0 0 +64 0 0 +65 0 0 +89 0 0 +SURF 0x30 +mat 18 +refs 4 +90 0 0 +89 0 0 +65 0 0 +66 0 0 +SURF 0x30 +mat 18 +refs 4 +90 0 0 +66 0 0 +67 0 0 +91 0 0 +SURF 0x30 +mat 18 +refs 4 +91 0 0 +67 0 0 +68 0 0 +92 0 0 +SURF 0x30 +mat 18 +refs 4 +92 0 0 +68 0 0 +69 0 0 +93 0 0 +SURF 0x30 +mat 18 +refs 4 +94 0 0 +93 0 0 +69 0 0 +70 0 0 +SURF 0x30 +mat 18 +refs 4 +94 0 0 +70 0 0 +71 0 0 +95 0 0 +SURF 0x30 +mat 18 +refs 4 +97 0 0 +95 0 0 +71 0 0 +72 0 0 +SURF 0x30 +mat 18 +refs 4 +96 0 0 +97 0 0 +72 0 0 +73 0 0 +SURF 0x30 +mat 18 +refs 4 +98 0 0 +120 0 0 +96 0 0 +74 0 0 +SURF 0x30 +mat 18 +refs 4 +98 0 0 +74 0 0 +75 0 0 +99 0 0 +SURF 0x30 +mat 18 +refs 4 +99 0 0 +75 0 0 +76 0 0 +100 0 0 +SURF 0x30 +mat 18 +refs 4 +100 0 0 +76 0 0 +77 0 0 +101 0 0 +SURF 0x30 +mat 18 +refs 4 +101 0 0 +77 0 0 +78 0 0 +102 0 0 +SURF 0x30 +mat 18 +refs 4 +102 0 0 +78 0 0 +79 0 0 +103 0 0 +SURF 0x30 +mat 18 +refs 4 +103 0 0 +79 0 0 +80 0 0 +104 0 0 +SURF 0x30 +mat 18 +refs 4 +104 0 0 +80 0 0 +81 0 0 +105 0 0 +SURF 0x30 +mat 18 +refs 4 +105 0 0 +81 0 0 +82 0 0 +106 0 0 +SURF 0x30 +mat 18 +refs 4 +106 0 0 +82 0 0 +83 0 0 +107 0 0 +SURF 0x30 +mat 18 +refs 4 +107 0 0 +83 0 0 +84 0 0 +108 0 0 +SURF 0x30 +mat 18 +refs 4 +108 0 0 +84 0 0 +85 0 0 +109 0 0 +SURF 0x30 +mat 18 +refs 4 +110 0 0 +109 0 0 +85 0 0 +86 0 0 +SURF 0x30 +mat 18 +refs 4 +110 0 0 +86 0 0 +87 0 0 +111 0 0 +SURF 0x30 +mat 18 +refs 4 +111 0 0 +87 0 0 +88 0 0 +112 0 0 +SURF 0x30 +mat 18 +refs 4 +112 0 0 +88 0 0 +89 0 0 +113 0 0 +SURF 0x30 +mat 18 +refs 4 +114 0 0 +113 0 0 +89 0 0 +90 0 0 +SURF 0x30 +mat 18 +refs 4 +114 0 0 +90 0 0 +91 0 0 +115 0 0 +SURF 0x30 +mat 18 +refs 4 +115 0 0 +91 0 0 +92 0 0 +116 0 0 +SURF 0x30 +mat 18 +refs 4 +116 0 0 +92 0 0 +93 0 0 +117 0 0 +SURF 0x30 +mat 18 +refs 4 +118 0 0 +117 0 0 +93 0 0 +94 0 0 +SURF 0x30 +mat 18 +refs 4 +118 0 0 +94 0 0 +95 0 0 +119 0 0 +SURF 0x30 +mat 18 +refs 4 +121 0 0 +119 0 0 +95 0 0 +97 0 0 +SURF 0x30 +mat 18 +refs 4 +120 0 0 +121 0 0 +97 0 0 +96 0 0 +SURF 0x30 +mat 18 +refs 4 +122 0 0 +145 0 0 +120 0 0 +98 0 0 +SURF 0x30 +mat 18 +refs 4 +122 0 0 +98 0 0 +99 0 0 +123 0 0 +SURF 0x30 +mat 18 +refs 4 +123 0 0 +99 0 0 +100 0 0 +124 0 0 +SURF 0x30 +mat 18 +refs 4 +124 0 0 +100 0 0 +101 0 0 +125 0 0 +SURF 0x30 +mat 18 +refs 4 +125 0 0 +101 0 0 +102 0 0 +126 0 0 +SURF 0x30 +mat 18 +refs 4 +126 0 0 +102 0 0 +103 0 0 +127 0 0 +SURF 0x30 +mat 18 +refs 4 +127 0 0 +103 0 0 +104 0 0 +128 0 0 +SURF 0x30 +mat 18 +refs 4 +128 0 0 +104 0 0 +105 0 0 +129 0 0 +SURF 0x30 +mat 18 +refs 4 +129 0 0 +105 0 0 +106 0 0 +130 0 0 +SURF 0x30 +mat 18 +refs 4 +130 0 0 +106 0 0 +107 0 0 +131 0 0 +SURF 0x30 +mat 18 +refs 4 +131 0 0 +107 0 0 +108 0 0 +132 0 0 +SURF 0x30 +mat 18 +refs 4 +132 0 0 +108 0 0 +109 0 0 +133 0 0 +SURF 0x30 +mat 18 +refs 4 +134 0 0 +133 0 0 +109 0 0 +110 0 0 +SURF 0x30 +mat 18 +refs 4 +134 0 0 +110 0 0 +111 0 0 +135 0 0 +SURF 0x30 +mat 18 +refs 4 +135 0 0 +111 0 0 +112 0 0 +136 0 0 +SURF 0x30 +mat 18 +refs 4 +136 0 0 +112 0 0 +113 0 0 +137 0 0 +SURF 0x30 +mat 18 +refs 4 +138 0 0 +137 0 0 +113 0 0 +114 0 0 +SURF 0x30 +mat 18 +refs 4 +138 0 0 +114 0 0 +115 0 0 +139 0 0 +SURF 0x30 +mat 18 +refs 4 +139 0 0 +115 0 0 +116 0 0 +140 0 0 +SURF 0x30 +mat 18 +refs 4 +140 0 0 +116 0 0 +117 0 0 +141 0 0 +SURF 0x30 +mat 18 +refs 4 +142 0 0 +141 0 0 +117 0 0 +118 0 0 +SURF 0x30 +mat 18 +refs 4 +142 0 0 +118 0 0 +119 0 0 +143 0 0 +SURF 0x30 +mat 18 +refs 4 +144 0 0 +143 0 0 +119 0 0 +121 0 0 +SURF 0x30 +mat 18 +refs 4 +145 0 0 +144 0 0 +121 0 0 +120 0 0 +SURF 0x30 +mat 18 +refs 4 +146 0 0 +168 0 0 +145 0 0 +122 0 0 +SURF 0x30 +mat 18 +refs 4 +146 0 0 +122 0 0 +123 0 0 +147 0 0 +SURF 0x30 +mat 18 +refs 4 +147 0 0 +123 0 0 +124 0 0 +148 0 0 +SURF 0x30 +mat 18 +refs 4 +148 0 0 +124 0 0 +125 0 0 +149 0 0 +SURF 0x30 +mat 18 +refs 4 +149 0 0 +125 0 0 +126 0 0 +150 0 0 +SURF 0x30 +mat 18 +refs 4 +150 0 0 +126 0 0 +127 0 0 +151 0 0 +SURF 0x30 +mat 18 +refs 4 +151 0 0 +127 0 0 +128 0 0 +152 0 0 +SURF 0x30 +mat 18 +refs 4 +152 0 0 +128 0 0 +129 0 0 +153 0 0 +SURF 0x30 +mat 18 +refs 4 +153 0 0 +129 0 0 +130 0 0 +154 0 0 +SURF 0x30 +mat 18 +refs 4 +154 0 0 +130 0 0 +131 0 0 +155 0 0 +SURF 0x30 +mat 18 +refs 4 +155 0 0 +131 0 0 +132 0 0 +156 0 0 +SURF 0x30 +mat 18 +refs 4 +156 0 0 +132 0 0 +133 0 0 +157 0 0 +SURF 0x30 +mat 18 +refs 4 +158 0 0 +157 0 0 +133 0 0 +134 0 0 +SURF 0x30 +mat 18 +refs 4 +158 0 0 +134 0 0 +135 0 0 +159 0 0 +SURF 0x30 +mat 18 +refs 4 +159 0 0 +135 0 0 +136 0 0 +160 0 0 +SURF 0x30 +mat 18 +refs 4 +160 0 0 +136 0 0 +137 0 0 +161 0 0 +SURF 0x30 +mat 18 +refs 4 +162 0 0 +161 0 0 +137 0 0 +138 0 0 +SURF 0x30 +mat 18 +refs 4 +162 0 0 +138 0 0 +139 0 0 +163 0 0 +SURF 0x30 +mat 18 +refs 4 +163 0 0 +139 0 0 +140 0 0 +164 0 0 +SURF 0x30 +mat 18 +refs 4 +164 0 0 +140 0 0 +141 0 0 +165 0 0 +SURF 0x30 +mat 18 +refs 4 +166 0 0 +165 0 0 +141 0 0 +142 0 0 +SURF 0x30 +mat 18 +refs 4 +166 0 0 +142 0 0 +143 0 0 +167 0 0 +SURF 0x30 +mat 18 +refs 4 +169 0 0 +167 0 0 +143 0 0 +144 0 0 +SURF 0x30 +mat 18 +refs 4 +168 0 0 +169 0 0 +144 0 0 +145 0 0 +SURF 0x30 +mat 18 +refs 4 +170 0 0 +192 0 0 +168 0 0 +146 0 0 +SURF 0x30 +mat 18 +refs 4 +170 0 0 +146 0 0 +147 0 0 +171 0 0 +SURF 0x30 +mat 18 +refs 4 +171 0 0 +147 0 0 +148 0 0 +172 0 0 +SURF 0x30 +mat 18 +refs 4 +172 0 0 +148 0 0 +149 0 0 +173 0 0 +SURF 0x30 +mat 18 +refs 4 +173 0 0 +149 0 0 +150 0 0 +174 0 0 +SURF 0x30 +mat 18 +refs 4 +174 0 0 +150 0 0 +151 0 0 +175 0 0 +SURF 0x30 +mat 18 +refs 4 +175 0 0 +151 0 0 +152 0 0 +176 0 0 +SURF 0x30 +mat 18 +refs 4 +176 0 0 +152 0 0 +153 0 0 +177 0 0 +SURF 0x30 +mat 18 +refs 4 +177 0 0 +153 0 0 +154 0 0 +178 0 0 +SURF 0x30 +mat 18 +refs 4 +178 0 0 +154 0 0 +155 0 0 +179 0 0 +SURF 0x30 +mat 18 +refs 4 +179 0 0 +155 0 0 +156 0 0 +180 0 0 +SURF 0x30 +mat 18 +refs 4 +180 0 0 +156 0 0 +157 0 0 +181 0 0 +SURF 0x30 +mat 18 +refs 4 +182 0 0 +181 0 0 +157 0 0 +158 0 0 +SURF 0x30 +mat 18 +refs 4 +182 0 0 +158 0 0 +159 0 0 +183 0 0 +SURF 0x30 +mat 18 +refs 4 +183 0 0 +159 0 0 +160 0 0 +184 0 0 +SURF 0x30 +mat 18 +refs 4 +184 0 0 +160 0 0 +161 0 0 +185 0 0 +SURF 0x30 +mat 18 +refs 4 +186 0 0 +185 0 0 +161 0 0 +162 0 0 +SURF 0x30 +mat 18 +refs 4 +186 0 0 +162 0 0 +163 0 0 +187 0 0 +SURF 0x30 +mat 18 +refs 4 +187 0 0 +163 0 0 +164 0 0 +188 0 0 +SURF 0x30 +mat 18 +refs 4 +188 0 0 +164 0 0 +165 0 0 +189 0 0 +SURF 0x30 +mat 18 +refs 4 +190 0 0 +189 0 0 +165 0 0 +166 0 0 +SURF 0x30 +mat 18 +refs 4 +190 0 0 +166 0 0 +167 0 0 +191 0 0 +SURF 0x30 +mat 18 +refs 4 +193 0 0 +191 0 0 +167 0 0 +169 0 0 +SURF 0x30 +mat 18 +refs 4 +192 0 0 +193 0 0 +169 0 0 +168 0 0 +SURF 0x30 +mat 18 +refs 4 +194 0 0 +216 0 0 +192 0 0 +170 0 0 +SURF 0x30 +mat 18 +refs 4 +194 0 0 +170 0 0 +171 0 0 +195 0 0 +SURF 0x30 +mat 18 +refs 4 +195 0 0 +171 0 0 +172 0 0 +196 0 0 +SURF 0x30 +mat 18 +refs 4 +196 0 0 +172 0 0 +173 0 0 +197 0 0 +SURF 0x30 +mat 18 +refs 4 +197 0 0 +173 0 0 +174 0 0 +198 0 0 +SURF 0x30 +mat 18 +refs 4 +198 0 0 +174 0 0 +175 0 0 +199 0 0 +SURF 0x30 +mat 18 +refs 4 +199 0 0 +175 0 0 +176 0 0 +200 0 0 +SURF 0x30 +mat 18 +refs 4 +200 0 0 +176 0 0 +177 0 0 +201 0 0 +SURF 0x30 +mat 18 +refs 4 +201 0 0 +177 0 0 +178 0 0 +202 0 0 +SURF 0x30 +mat 18 +refs 4 +202 0 0 +178 0 0 +179 0 0 +203 0 0 +SURF 0x30 +mat 18 +refs 4 +203 0 0 +179 0 0 +180 0 0 +204 0 0 +SURF 0x30 +mat 18 +refs 4 +204 0 0 +180 0 0 +181 0 0 +205 0 0 +SURF 0x30 +mat 18 +refs 4 +206 0 0 +205 0 0 +181 0 0 +182 0 0 +SURF 0x30 +mat 18 +refs 4 +206 0 0 +182 0 0 +183 0 0 +207 0 0 +SURF 0x30 +mat 18 +refs 4 +207 0 0 +183 0 0 +184 0 0 +208 0 0 +SURF 0x30 +mat 18 +refs 4 +208 0 0 +184 0 0 +185 0 0 +209 0 0 +SURF 0x30 +mat 18 +refs 4 +210 0 0 +209 0 0 +185 0 0 +186 0 0 +SURF 0x30 +mat 18 +refs 4 +210 0 0 +186 0 0 +187 0 0 +211 0 0 +SURF 0x30 +mat 18 +refs 4 +211 0 0 +187 0 0 +188 0 0 +212 0 0 +SURF 0x30 +mat 18 +refs 4 +212 0 0 +188 0 0 +189 0 0 +213 0 0 +SURF 0x30 +mat 18 +refs 4 +214 0 0 +213 0 0 +189 0 0 +190 0 0 +SURF 0x30 +mat 18 +refs 4 +214 0 0 +190 0 0 +191 0 0 +215 0 0 +SURF 0x30 +mat 18 +refs 4 +217 0 0 +215 0 0 +191 0 0 +193 0 0 +SURF 0x30 +mat 18 +refs 4 +216 0 0 +217 0 0 +193 0 0 +192 0 0 +kids 0 +OBJECT poly +name "screen" +data 8 +Cube.002 +crease 30.000000 +numvert 120 +1.311726 1.790566 -0.02227 +1.288088 1.72507 -0.02227 +1.288088 1.72507 0.022271 +1.311726 1.790566 0.02227 +1.344448 1.790566 -0.02227 +1.32081 1.72507 -0.02227 +1.32081 1.72507 0.022271 +1.344448 1.790566 0.022271 +1.21838 1.41493 0.022271 +1.21838 1.41493 -0.02227 +1.185658 1.41493 0.022271 +1.185658 1.41493 -0.02227 +1.142454 1.362916 -0.02227 +1.142454 1.362916 0.022271 +1.167505 1.341865 -0.02227 +1.167505 1.341866 0.022271 +1.32081 1.72507 -0.620687 +1.344448 1.790566 -0.620687 +1.288088 1.72507 -0.620687 +1.311726 1.790566 -0.620687 +1.344448 1.790566 0.620687 +1.32081 1.72507 0.620687 +1.311726 1.790566 0.620687 +1.288088 1.72507 0.620687 +1.167506 1.341866 0.620687 +1.142454 1.362916 0.620687 +1.185658 1.41493 0.620687 +1.21838 1.41493 0.620687 +1.167506 1.341865 -0.620687 +1.142454 1.362916 -0.620687 +1.185659 1.41493 -0.620687 +1.218381 1.41493 -0.620687 +1.311726 1.790567 0.665806 +1.344448 1.790566 0.665806 +1.288088 1.72507 0.665806 +1.32081 1.72507 0.665806 +1.167506 1.341866 0.665806 +1.142454 1.362916 0.665806 +1.21838 1.414931 0.665806 +1.185658 1.41493 0.665806 +1.344448 1.790566 -0.665805 +1.311726 1.790566 -0.665805 +1.32081 1.72507 -0.665805 +1.288088 1.72507 -0.665805 +1.167506 1.341865 -0.665805 +1.142454 1.362916 -0.665805 +1.218381 1.41493 -0.665805 +1.185659 1.41493 -0.665805 +1.141879 1.314662 0.620687 +1.114138 1.338459 0.620687 +1.141879 1.314662 -0.620687 +1.114138 1.338459 -0.620687 +1.114138 1.338459 0.665806 +1.141879 1.314662 0.665806 +1.141879 1.314662 -0.665805 +1.114138 1.338459 -0.665805 +1.078212 1.308539 0.620687 +1.10232 1.285149 0.620687 +1.078213 1.308538 -0.620687 +1.10232 1.285148 -0.620687 +1.078212 1.308539 0.665806 +1.10232 1.285149 0.665806 +1.10232 1.285148 -0.665805 +1.078213 1.308538 -0.665805 +1.064958 1.245634 0.620687 +1.037589 1.265226 0.620687 +1.037589 1.265226 -0.620687 +1.064959 1.245633 -0.620687 +1.037589 1.265226 0.665806 +1.064958 1.245634 0.665806 +1.064959 1.245633 -0.665805 +1.037589 1.265226 -0.665805 +1.010688 1.233089 0.620687 +1.042686 1.220317 0.620687 +1.042686 1.220317 -0.620687 +1.010689 1.233089 -0.620687 +1.010688 1.233089 0.665806 +1.042686 1.220317 0.665806 +1.042686 1.220317 -0.665805 +1.010689 1.233089 -0.665805 +1.036501 1.200288 0.620687 +1.003363 1.207436 0.620687 +1.003364 1.207436 -0.620687 +1.036501 1.200288 -0.620687 +1.003363 1.207436 0.665806 +1.036501 1.200288 0.665806 +1.036501 1.200288 -0.665805 +1.003364 1.207436 -0.665805 +0.991663 1.194039 0.620687 +1.041589 1.183244 0.620687 +1.04159 1.183244 -0.620687 +0.991664 1.194039 -0.620687 +0.991663 1.194039 0.665806 +1.041589 1.183244 0.665806 +1.04159 1.183244 -0.665805 +0.991664 1.194039 -0.665805 +1.037311 1.163547 0.620687 +0.987385 1.174341 0.620687 +1.037312 1.163547 -0.620687 +0.987385 1.174341 -0.620687 +0.987385 1.174341 0.665806 +1.037311 1.163547 0.665806 +1.037312 1.163547 -0.665805 +0.987385 1.174341 -0.665805 +1.026431 1.15466 0.620687 +0.993599 1.161741 0.620687 +1.026431 1.15466 -0.620687 +0.993599 1.161741 -0.620687 +0.993598 1.161741 0.665806 +1.026431 1.15466 0.665806 +1.026431 1.15466 -0.665805 +0.993599 1.161741 -0.665805 +1.004224 1.154745 0.620687 +1.013861 1.152702 0.620687 +1.013861 1.152702 -0.620687 +1.004224 1.154746 -0.620687 +1.004224 1.154745 0.665806 +1.013861 1.152702 0.665806 +1.013861 1.152702 -0.665805 +1.004224 1.154746 -0.665805 +numsurf 128 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 4 +6 0 0 +2 0 0 +10 0 0 +8 0 0 +SURF 0x20 +mat 1 +refs 4 +1 0 0 +5 0 0 +9 0 0 +11 0 0 +SURF 0x20 +mat 1 +refs 4 +5 0 0 +6 0 0 +8 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 4 +2 0 0 +1 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 1 +refs 4 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 4 +12 0 0 +14 0 0 +15 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +4 0 0 +17 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 4 +5 0 0 +1 0 0 +18 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 4 +4 0 0 +5 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 4 +1 0 0 +0 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 4 +19 0 0 +18 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 4 +7 0 0 +3 0 0 +22 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 4 +2 0 0 +6 0 0 +21 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 4 +6 0 0 +7 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 4 +3 0 0 +2 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 4 +23 0 0 +22 0 0 +20 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 4 +13 0 0 +15 0 0 +24 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 4 +15 0 0 +8 0 0 +27 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 4 +10 0 0 +13 0 0 +25 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 4 +8 0 0 +10 0 0 +26 0 0 +27 0 0 +SURF 0x20 +mat 1 +refs 4 +27 0 0 +24 0 0 +25 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 4 +14 0 0 +12 0 0 +29 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 4 +9 0 0 +14 0 0 +28 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +12 0 0 +11 0 0 +30 0 0 +29 0 0 +SURF 0x20 +mat 1 +refs 4 +11 0 0 +9 0 0 +31 0 0 +30 0 0 +SURF 0x20 +mat 1 +refs 4 +30 0 0 +29 0 0 +28 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +22 0 0 +32 0 0 +33 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 4 +20 0 0 +33 0 0 +35 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 4 +23 0 0 +34 0 0 +32 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 4 +24 0 0 +36 0 0 +37 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 4 +27 0 0 +38 0 0 +36 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 4 +25 0 0 +37 0 0 +39 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 4 +17 0 0 +40 0 0 +41 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +42 0 0 +40 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 4 +19 0 0 +41 0 0 +43 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 4 +29 0 0 +28 0 0 +44 0 0 +45 0 0 +SURF 0x20 +mat 1 +refs 4 +28 0 0 +44 0 0 +46 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +30 0 0 +47 0 0 +45 0 0 +29 0 0 +SURF 0x20 +mat 1 +refs 4 +40 0 0 +42 0 0 +43 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 4 +32 0 0 +34 0 0 +35 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 4 +36 0 0 +38 0 0 +39 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 4 +44 0 0 +45 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 1 +refs 4 +42 0 0 +46 0 0 +47 0 0 +43 0 0 +SURF 0x20 +mat 1 +refs 4 +16 0 0 +18 0 0 +30 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 4 +21 0 0 +27 0 0 +26 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 4 +34 0 0 +39 0 0 +38 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 4 +43 0 0 +47 0 0 +30 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 4 +23 0 0 +26 0 0 +39 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 4 +35 0 0 +38 0 0 +27 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 4 +42 0 0 +16 0 0 +31 0 0 +46 0 0 +SURF 0x20 +mat 1 +refs 4 +25 0 0 +24 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 1 +refs 4 +28 0 0 +29 0 0 +51 0 0 +50 0 0 +SURF 0x20 +mat 1 +refs 4 +37 0 0 +25 0 0 +49 0 0 +52 0 0 +SURF 0x20 +mat 1 +refs 4 +36 0 0 +37 0 0 +52 0 0 +53 0 0 +SURF 0x20 +mat 1 +refs 4 +24 0 0 +36 0 0 +53 0 0 +48 0 0 +SURF 0x20 +mat 1 +refs 4 +44 0 0 +28 0 0 +50 0 0 +54 0 0 +SURF 0x20 +mat 1 +refs 4 +45 0 0 +44 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 4 +29 0 0 +45 0 0 +55 0 0 +51 0 0 +SURF 0x20 +mat 1 +refs 4 +49 0 0 +48 0 0 +57 0 0 +56 0 0 +SURF 0x20 +mat 1 +refs 4 +50 0 0 +51 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 4 +52 0 0 +49 0 0 +56 0 0 +60 0 0 +SURF 0x20 +mat 1 +refs 4 +53 0 0 +52 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 1 +refs 4 +48 0 0 +53 0 0 +61 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 4 +54 0 0 +50 0 0 +59 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 4 +55 0 0 +54 0 0 +62 0 0 +63 0 0 +SURF 0x20 +mat 1 +refs 4 +51 0 0 +55 0 0 +63 0 0 +58 0 0 +SURF 0x20 +mat 1 +refs 4 +56 0 0 +57 0 0 +64 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 4 +59 0 0 +58 0 0 +66 0 0 +67 0 0 +SURF 0x20 +mat 1 +refs 4 +60 0 0 +56 0 0 +65 0 0 +68 0 0 +SURF 0x20 +mat 1 +refs 4 +61 0 0 +60 0 0 +68 0 0 +69 0 0 +SURF 0x20 +mat 1 +refs 4 +57 0 0 +61 0 0 +69 0 0 +64 0 0 +SURF 0x20 +mat 1 +refs 4 +62 0 0 +59 0 0 +67 0 0 +70 0 0 +SURF 0x20 +mat 1 +refs 4 +63 0 0 +62 0 0 +70 0 0 +71 0 0 +SURF 0x20 +mat 1 +refs 4 +58 0 0 +63 0 0 +71 0 0 +66 0 0 +SURF 0x20 +mat 1 +refs 4 +65 0 0 +64 0 0 +73 0 0 +72 0 0 +SURF 0x20 +mat 1 +refs 4 +67 0 0 +66 0 0 +75 0 0 +74 0 0 +SURF 0x20 +mat 1 +refs 4 +68 0 0 +65 0 0 +72 0 0 +76 0 0 +SURF 0x20 +mat 1 +refs 4 +69 0 0 +68 0 0 +76 0 0 +77 0 0 +SURF 0x20 +mat 1 +refs 4 +64 0 0 +69 0 0 +77 0 0 +73 0 0 +SURF 0x20 +mat 1 +refs 4 +70 0 0 +67 0 0 +74 0 0 +78 0 0 +SURF 0x20 +mat 1 +refs 4 +71 0 0 +70 0 0 +78 0 0 +79 0 0 +SURF 0x20 +mat 1 +refs 4 +66 0 0 +71 0 0 +79 0 0 +75 0 0 +SURF 0x20 +mat 1 +refs 4 +72 0 0 +73 0 0 +80 0 0 +81 0 0 +SURF 0x20 +mat 1 +refs 4 +74 0 0 +75 0 0 +82 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 4 +76 0 0 +72 0 0 +81 0 0 +84 0 0 +SURF 0x20 +mat 1 +refs 4 +77 0 0 +76 0 0 +84 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 4 +73 0 0 +77 0 0 +85 0 0 +80 0 0 +SURF 0x20 +mat 1 +refs 4 +78 0 0 +74 0 0 +83 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 4 +79 0 0 +78 0 0 +86 0 0 +87 0 0 +SURF 0x20 +mat 1 +refs 4 +75 0 0 +79 0 0 +87 0 0 +82 0 0 +SURF 0x20 +mat 1 +refs 4 +81 0 0 +80 0 0 +89 0 0 +88 0 0 +SURF 0x20 +mat 1 +refs 4 +83 0 0 +82 0 0 +91 0 0 +90 0 0 +SURF 0x20 +mat 1 +refs 4 +84 0 0 +81 0 0 +88 0 0 +92 0 0 +SURF 0x20 +mat 1 +refs 4 +85 0 0 +84 0 0 +92 0 0 +93 0 0 +SURF 0x20 +mat 1 +refs 4 +80 0 0 +85 0 0 +93 0 0 +89 0 0 +SURF 0x20 +mat 1 +refs 4 +86 0 0 +83 0 0 +90 0 0 +94 0 0 +SURF 0x20 +mat 1 +refs 4 +87 0 0 +86 0 0 +94 0 0 +95 0 0 +SURF 0x20 +mat 1 +refs 4 +82 0 0 +87 0 0 +95 0 0 +91 0 0 +SURF 0x20 +mat 1 +refs 4 +88 0 0 +89 0 0 +96 0 0 +97 0 0 +SURF 0x20 +mat 1 +refs 4 +90 0 0 +91 0 0 +99 0 0 +98 0 0 +SURF 0x20 +mat 1 +refs 4 +92 0 0 +88 0 0 +97 0 0 +100 0 0 +SURF 0x20 +mat 1 +refs 4 +93 0 0 +92 0 0 +100 0 0 +101 0 0 +SURF 0x20 +mat 1 +refs 4 +89 0 0 +93 0 0 +101 0 0 +96 0 0 +SURF 0x20 +mat 1 +refs 4 +94 0 0 +90 0 0 +98 0 0 +102 0 0 +SURF 0x20 +mat 1 +refs 4 +95 0 0 +94 0 0 +102 0 0 +103 0 0 +SURF 0x20 +mat 1 +refs 4 +91 0 0 +95 0 0 +103 0 0 +99 0 0 +SURF 0x20 +mat 1 +refs 4 +97 0 0 +96 0 0 +104 0 0 +105 0 0 +SURF 0x20 +mat 1 +refs 4 +98 0 0 +99 0 0 +107 0 0 +106 0 0 +SURF 0x20 +mat 1 +refs 4 +100 0 0 +97 0 0 +105 0 0 +108 0 0 +SURF 0x20 +mat 1 +refs 4 +101 0 0 +100 0 0 +108 0 0 +109 0 0 +SURF 0x20 +mat 1 +refs 4 +96 0 0 +101 0 0 +109 0 0 +104 0 0 +SURF 0x20 +mat 1 +refs 4 +102 0 0 +98 0 0 +106 0 0 +110 0 0 +SURF 0x20 +mat 1 +refs 4 +103 0 0 +102 0 0 +110 0 0 +111 0 0 +SURF 0x20 +mat 1 +refs 4 +99 0 0 +103 0 0 +111 0 0 +107 0 0 +SURF 0x20 +mat 1 +refs 4 +105 0 0 +104 0 0 +113 0 0 +112 0 0 +SURF 0x20 +mat 1 +refs 4 +106 0 0 +107 0 0 +115 0 0 +114 0 0 +SURF 0x20 +mat 1 +refs 4 +108 0 0 +105 0 0 +112 0 0 +116 0 0 +SURF 0x20 +mat 1 +refs 4 +109 0 0 +108 0 0 +116 0 0 +117 0 0 +SURF 0x20 +mat 1 +refs 4 +104 0 0 +109 0 0 +117 0 0 +113 0 0 +SURF 0x20 +mat 1 +refs 4 +110 0 0 +106 0 0 +114 0 0 +118 0 0 +SURF 0x20 +mat 1 +refs 4 +111 0 0 +110 0 0 +118 0 0 +119 0 0 +SURF 0x20 +mat 1 +refs 4 +107 0 0 +111 0 0 +119 0 0 +115 0 0 +SURF 0x20 +mat 1 +refs 4 +114 0 0 +115 0 0 +119 0 0 +118 0 0 +SURF 0x20 +mat 1 +refs 4 +112 0 0 +113 0 0 +117 0 0 +116 0 0 +kids 0 +OBJECT poly +name "seat.L" +data 4 +Cube +crease 30.000000 +numvert 60 +2.152721 0.843089 0.090694 +2.152721 0.730338 0.090694 +1.763815 0.730338 0.090694 +1.763815 0.843089 0.090694 +2.152721 0.843089 0.562014 +2.152721 0.730338 0.562014 +1.763815 0.730338 0.562014 +1.763815 0.843089 0.562014 +1.741941 0.733319 0.129737 +1.741941 0.82739 0.129737 +1.741941 0.73332 0.52297 +1.741941 0.82739 0.52297 +2.379164 1.202389 0.258896 +2.257544 0.832808 0.258896 +2.199307 0.851973 0.258896 +2.320926 1.221553 0.258896 +2.379163 1.202389 0.41359 +2.257544 0.832808 0.41359 +2.199307 0.851973 0.41359 +2.320926 1.221553 0.41359 +2.345091 1.241233 0.41359 +2.371408 1.232573 0.41359 +2.345091 1.241233 0.258896 +2.371408 1.232573 0.258896 +2.362673 1.235448 0.188578 +2.336355 1.244108 0.188578 +2.312191 1.224428 0.188578 +2.190572 0.854847 0.188578 +2.248809 0.835683 0.188578 +2.370428 1.205263 0.188578 +2.362673 1.235448 0.483908 +2.336355 1.244108 0.483908 +2.312191 1.224428 0.483908 +2.190572 0.854847 0.483908 +2.248809 0.835683 0.483908 +2.370428 1.205263 0.483908 +2.344221 1.213887 0.566308 +2.222602 0.844307 0.566308 +2.164365 0.863471 0.566308 +2.285984 1.233052 0.566308 +2.310148 1.252732 0.566308 +2.336466 1.244071 0.566308 +2.344221 1.213887 0.106178 +2.222602 0.844307 0.106178 +2.164365 0.863471 0.106178 +2.285984 1.233052 0.106178 +2.310148 1.252732 0.106178 +2.336466 1.244071 0.106178 +2.321062 1.235149 0.584712 +2.302816 1.241153 0.584712 +2.283546 1.219863 0.584712 +2.173295 0.860532 0.584712 +2.213671 0.847246 0.584712 +2.323922 1.206576 0.584712 +2.321062 1.235149 0.087773 +2.302816 1.241153 0.087773 +2.283546 1.219862 0.087773 +2.173295 0.860532 0.087773 +2.213671 0.847246 0.087773 +2.323922 1.206576 0.087773 +numsurf 56 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 4 +1 0 0 +5 0 0 +6 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x30 +mat 4 +refs 4 +7 0 0 +11 0 0 +10 0 0 +6 0 0 +SURF 0x30 +mat 4 +refs 4 +6 0 0 +10 0 0 +8 0 0 +2 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +9 0 0 +11 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +16 0 0 +17 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +17 0 0 +18 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +18 0 0 +19 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +19 0 0 +20 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +12 0 0 +23 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +20 0 0 +21 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +23 0 0 +24 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 4 +23 0 0 +12 0 0 +29 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +22 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +15 0 0 +26 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +13 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +14 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 4 +21 0 0 +20 0 0 +31 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +21 0 0 +30 0 0 +35 0 0 +SURF 0x30 +mat 4 +refs 4 +20 0 0 +19 0 0 +32 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 4 +19 0 0 +18 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 4 +refs 4 +18 0 0 +17 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 4 +refs 4 +17 0 0 +16 0 0 +35 0 0 +34 0 0 +SURF 0x30 +mat 4 +refs 4 +34 0 0 +35 0 0 +36 0 0 +37 0 0 +SURF 0x30 +mat 4 +refs 4 +33 0 0 +34 0 0 +37 0 0 +38 0 0 +SURF 0x30 +mat 4 +refs 4 +32 0 0 +33 0 0 +38 0 0 +39 0 0 +SURF 0x30 +mat 4 +refs 4 +31 0 0 +32 0 0 +39 0 0 +40 0 0 +SURF 0x30 +mat 4 +refs 4 +35 0 0 +30 0 0 +41 0 0 +36 0 0 +SURF 0x30 +mat 4 +refs 4 +30 0 0 +31 0 0 +40 0 0 +41 0 0 +SURF 0x30 +mat 4 +refs 4 +28 0 0 +27 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 4 +refs 4 +29 0 0 +28 0 0 +43 0 0 +42 0 0 +SURF 0x30 +mat 4 +refs 4 +27 0 0 +26 0 0 +45 0 0 +44 0 0 +SURF 0x30 +mat 4 +refs 4 +26 0 0 +25 0 0 +46 0 0 +45 0 0 +SURF 0x30 +mat 4 +refs 4 +24 0 0 +29 0 0 +42 0 0 +47 0 0 +SURF 0x30 +mat 4 +refs 4 +25 0 0 +24 0 0 +47 0 0 +46 0 0 +SURF 0x30 +mat 4 +refs 4 +41 0 0 +40 0 0 +49 0 0 +48 0 0 +SURF 0x30 +mat 4 +refs 4 +36 0 0 +41 0 0 +48 0 0 +53 0 0 +SURF 0x30 +mat 4 +refs 4 +40 0 0 +39 0 0 +50 0 0 +49 0 0 +SURF 0x30 +mat 4 +refs 4 +39 0 0 +38 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 4 +refs 4 +38 0 0 +37 0 0 +52 0 0 +51 0 0 +SURF 0x30 +mat 4 +refs 4 +37 0 0 +36 0 0 +53 0 0 +52 0 0 +SURF 0x30 +mat 4 +refs 4 +53 0 0 +50 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 4 +refs 4 +50 0 0 +53 0 0 +48 0 0 +49 0 0 +SURF 0x30 +mat 4 +refs 4 +46 0 0 +47 0 0 +54 0 0 +55 0 0 +SURF 0x30 +mat 4 +refs 4 +47 0 0 +42 0 0 +59 0 0 +54 0 0 +SURF 0x30 +mat 4 +refs 4 +45 0 0 +46 0 0 +55 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 4 +44 0 0 +45 0 0 +56 0 0 +57 0 0 +SURF 0x30 +mat 4 +refs 4 +42 0 0 +43 0 0 +58 0 0 +59 0 0 +SURF 0x30 +mat 4 +refs 4 +43 0 0 +44 0 0 +57 0 0 +58 0 0 +SURF 0x30 +mat 4 +refs 4 +57 0 0 +56 0 0 +59 0 0 +58 0 0 +SURF 0x30 +mat 4 +refs 4 +59 0 0 +56 0 0 +55 0 0 +54 0 0 +SURF 0x30 +mat 4 +refs 4 +8 0 0 +10 0 0 +11 0 0 +9 0 0 +kids 0 +OBJECT poly +name "seat.R" +data 8 +Cube.010 +crease 30.000000 +numvert 60 +2.152721 0.843089 -0.090657 +2.152721 0.730338 -0.090657 +1.763815 0.730338 -0.090657 +1.763815 0.843089 -0.090657 +2.152721 0.843089 -0.561976 +2.152721 0.730338 -0.561976 +1.763815 0.730338 -0.561976 +1.763815 0.843089 -0.561976 +1.741941 0.733319 -0.1297 +1.741941 0.82739 -0.1297 +1.741941 0.73332 -0.522933 +1.741941 0.82739 -0.522933 +2.379164 1.202389 -0.258859 +2.257544 0.832808 -0.258859 +2.199307 0.851973 -0.258859 +2.320926 1.221553 -0.258859 +2.379163 1.202389 -0.413553 +2.257544 0.832808 -0.413553 +2.199307 0.851973 -0.413553 +2.320926 1.221553 -0.413553 +2.345091 1.241233 -0.413553 +2.371408 1.232573 -0.413553 +2.345091 1.241233 -0.258859 +2.371408 1.232573 -0.258859 +2.362673 1.235448 -0.188541 +2.336355 1.244108 -0.188541 +2.312191 1.224428 -0.188541 +2.190572 0.854847 -0.188541 +2.248809 0.835683 -0.188541 +2.370428 1.205263 -0.188541 +2.362673 1.235448 -0.483871 +2.336355 1.244108 -0.483871 +2.312191 1.224428 -0.483871 +2.190572 0.854847 -0.483871 +2.248809 0.835683 -0.483871 +2.370428 1.205263 -0.483871 +2.344221 1.213887 -0.566271 +2.222602 0.844307 -0.566271 +2.164365 0.863471 -0.566271 +2.285984 1.233052 -0.566271 +2.310148 1.252732 -0.566271 +2.336466 1.244071 -0.566271 +2.344221 1.213887 -0.106141 +2.222602 0.844307 -0.106141 +2.164365 0.863471 -0.106141 +2.285984 1.233052 -0.106141 +2.310148 1.252732 -0.106141 +2.336466 1.244071 -0.106141 +2.321062 1.235149 -0.584675 +2.302816 1.241153 -0.584675 +2.283546 1.219863 -0.584675 +2.173295 0.860532 -0.584675 +2.213671 0.847246 -0.584675 +2.323922 1.206576 -0.584675 +2.321062 1.235149 -0.087736 +2.302816 1.241153 -0.087736 +2.283546 1.219862 -0.087736 +2.173295 0.860532 -0.087736 +2.213671 0.847246 -0.087736 +2.323922 1.206576 -0.087736 +numsurf 56 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +3 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 4 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x30 +mat 4 +refs 4 +1 0 0 +2 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +0 0 0 +4 0 0 +7 0 0 +SURF 0x30 +mat 4 +refs 4 +2 0 0 +3 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 4 +refs 4 +7 0 0 +6 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 4 +refs 4 +6 0 0 +2 0 0 +8 0 0 +10 0 0 +SURF 0x30 +mat 4 +refs 4 +3 0 0 +7 0 0 +11 0 0 +9 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +13 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +14 0 0 +18 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +15 0 0 +19 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +22 0 0 +20 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +21 0 0 +23 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +23 0 0 +21 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 4 +22 0 0 +25 0 0 +24 0 0 +23 0 0 +SURF 0x30 +mat 4 +refs 4 +23 0 0 +24 0 0 +29 0 0 +12 0 0 +SURF 0x30 +mat 4 +refs 4 +15 0 0 +26 0 0 +25 0 0 +22 0 0 +SURF 0x30 +mat 4 +refs 4 +14 0 0 +27 0 0 +26 0 0 +15 0 0 +SURF 0x30 +mat 4 +refs 4 +12 0 0 +29 0 0 +28 0 0 +13 0 0 +SURF 0x30 +mat 4 +refs 4 +13 0 0 +28 0 0 +27 0 0 +14 0 0 +SURF 0x30 +mat 4 +refs 4 +21 0 0 +30 0 0 +31 0 0 +20 0 0 +SURF 0x30 +mat 4 +refs 4 +16 0 0 +35 0 0 +30 0 0 +21 0 0 +SURF 0x30 +mat 4 +refs 4 +20 0 0 +31 0 0 +32 0 0 +19 0 0 +SURF 0x30 +mat 4 +refs 4 +19 0 0 +32 0 0 +33 0 0 +18 0 0 +SURF 0x30 +mat 4 +refs 4 +18 0 0 +33 0 0 +34 0 0 +17 0 0 +SURF 0x30 +mat 4 +refs 4 +17 0 0 +34 0 0 +35 0 0 +16 0 0 +SURF 0x30 +mat 4 +refs 4 +34 0 0 +37 0 0 +36 0 0 +35 0 0 +SURF 0x30 +mat 4 +refs 4 +33 0 0 +38 0 0 +37 0 0 +34 0 0 +SURF 0x30 +mat 4 +refs 4 +32 0 0 +39 0 0 +38 0 0 +33 0 0 +SURF 0x30 +mat 4 +refs 4 +31 0 0 +40 0 0 +39 0 0 +32 0 0 +SURF 0x30 +mat 4 +refs 4 +35 0 0 +36 0 0 +41 0 0 +30 0 0 +SURF 0x30 +mat 4 +refs 4 +30 0 0 +41 0 0 +40 0 0 +31 0 0 +SURF 0x30 +mat 4 +refs 4 +28 0 0 +43 0 0 +44 0 0 +27 0 0 +SURF 0x30 +mat 4 +refs 4 +29 0 0 +42 0 0 +43 0 0 +28 0 0 +SURF 0x30 +mat 4 +refs 4 +27 0 0 +44 0 0 +45 0 0 +26 0 0 +SURF 0x30 +mat 4 +refs 4 +26 0 0 +45 0 0 +46 0 0 +25 0 0 +SURF 0x30 +mat 4 +refs 4 +24 0 0 +47 0 0 +42 0 0 +29 0 0 +SURF 0x30 +mat 4 +refs 4 +25 0 0 +46 0 0 +47 0 0 +24 0 0 +SURF 0x30 +mat 4 +refs 4 +41 0 0 +48 0 0 +49 0 0 +40 0 0 +SURF 0x30 +mat 4 +refs 4 +36 0 0 +53 0 0 +48 0 0 +41 0 0 +SURF 0x30 +mat 4 +refs 4 +40 0 0 +49 0 0 +50 0 0 +39 0 0 +SURF 0x30 +mat 4 +refs 4 +39 0 0 +50 0 0 +51 0 0 +38 0 0 +SURF 0x30 +mat 4 +refs 4 +38 0 0 +51 0 0 +52 0 0 +37 0 0 +SURF 0x30 +mat 4 +refs 4 +37 0 0 +52 0 0 +53 0 0 +36 0 0 +SURF 0x30 +mat 4 +refs 4 +53 0 0 +52 0 0 +51 0 0 +50 0 0 +SURF 0x30 +mat 4 +refs 4 +50 0 0 +49 0 0 +48 0 0 +53 0 0 +SURF 0x30 +mat 4 +refs 4 +46 0 0 +55 0 0 +54 0 0 +47 0 0 +SURF 0x30 +mat 4 +refs 4 +47 0 0 +54 0 0 +59 0 0 +42 0 0 +SURF 0x30 +mat 4 +refs 4 +45 0 0 +56 0 0 +55 0 0 +46 0 0 +SURF 0x30 +mat 4 +refs 4 +44 0 0 +57 0 0 +56 0 0 +45 0 0 +SURF 0x30 +mat 4 +refs 4 +42 0 0 +59 0 0 +58 0 0 +43 0 0 +SURF 0x30 +mat 4 +refs 4 +43 0 0 +58 0 0 +57 0 0 +44 0 0 +SURF 0x30 +mat 4 +refs 4 +57 0 0 +58 0 0 +59 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 4 +59 0 0 +54 0 0 +55 0 0 +56 0 0 +SURF 0x30 +mat 4 +refs 4 +8 0 0 +9 0 0 +11 0 0 +10 0 0 +kids 0 +OBJECT poly +name "seatframe.L" +data 8 +Cube.012 +crease 30.000000 +numvert 50 +2.155369 0.634609 0.073737 +2.146455 0.629629 0.085371 +2.154814 0.620597 0.094603 +2.168895 0.619996 0.088675 +2.169238 0.628656 0.07578 +2.155369 0.634609 0.598749 +2.146455 0.629629 0.587116 +2.154814 0.620597 0.577883 +2.168895 0.619996 0.583811 +2.169238 0.628656 0.596707 +2.350332 1.227071 0.075301 +2.341418 1.22209 0.086865 +2.349778 1.213059 0.096043 +2.363858 1.212458 0.090151 +2.364201 1.221117 0.077331 +2.350332 1.227071 0.597185 +2.341418 1.22209 0.585621 +2.349778 1.213059 0.576444 +2.364201 1.221117 0.595155 +2.363858 1.212458 0.582336 +2.355967 1.244194 0.101302 +2.34556 1.234678 0.107034 +2.352735 1.222047 0.111583 +2.367577 1.223757 0.108662 +2.369574 1.237444 0.102308 +2.355967 1.244194 0.571185 +2.34556 1.234678 0.565453 +2.352735 1.222047 0.560904 +2.369574 1.237444 0.570178 +2.367577 1.223757 0.563824 +2.393611 1.214609 0.483909 +2.396049 1.229635 0.483909 +2.378567 1.212285 0.483909 +2.371708 1.225874 0.483909 +2.382512 1.236597 0.483909 +2.396049 1.229635 0.188578 +2.393611 1.214609 0.188578 +2.378567 1.212285 0.188578 +2.371708 1.225873 0.188578 +2.382512 1.236597 0.188578 +2.391247 1.233722 0.413591 +2.380443 1.222999 0.413591 +2.387303 1.20941 0.413591 +2.404784 1.226761 0.413591 +2.402347 1.211735 0.413591 +2.391247 1.233722 0.258895 +2.380443 1.222999 0.258895 +2.387303 1.20941 0.258895 +2.402347 1.211735 0.258895 +2.404784 1.226761 0.258895 +numsurf 45 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +10 0 0 +14 0 0 +4 0 0 +SURF 0x30 +mat 1 +refs 4 +10 0 0 +0 0 0 +1 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +1 0 0 +2 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +12 0 0 +2 0 0 +3 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +13 0 0 +3 0 0 +4 0 0 +SURF 0x30 +mat 1 +refs 4 +15 0 0 +5 0 0 +9 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +6 0 0 +5 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +17 0 0 +7 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +8 0 0 +7 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +18 0 0 +9 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +14 0 0 +10 0 0 +20 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +10 0 0 +11 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +11 0 0 +12 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +22 0 0 +12 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +23 0 0 +13 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +15 0 0 +18 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +16 0 0 +15 0 0 +25 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +27 0 0 +17 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +19 0 0 +17 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +28 0 0 +18 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +24 0 0 +20 0 0 +39 0 0 +SURF 0x30 +mat 1 +refs 4 +39 0 0 +20 0 0 +21 0 0 +38 0 0 +SURF 0x30 +mat 1 +refs 4 +38 0 0 +21 0 0 +22 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +37 0 0 +22 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +36 0 0 +23 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +34 0 0 +25 0 0 +28 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +33 0 0 +26 0 0 +25 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +33 0 0 +32 0 0 +27 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +30 0 0 +29 0 0 +27 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +30 0 0 +31 0 0 +28 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +31 0 0 +30 0 0 +44 0 0 +SURF 0x30 +mat 1 +refs 4 +42 0 0 +44 0 0 +30 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +42 0 0 +32 0 0 +33 0 0 +41 0 0 +SURF 0x30 +mat 1 +refs 4 +40 0 0 +41 0 0 +33 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +40 0 0 +34 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +36 0 0 +35 0 0 +49 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +37 0 0 +36 0 0 +48 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +46 0 0 +38 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +45 0 0 +39 0 0 +38 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +49 0 0 +35 0 0 +39 0 0 +SURF 0x30 +mat 1 +refs 4 +49 0 0 +45 0 0 +40 0 0 +43 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +46 0 0 +41 0 0 +40 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +47 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +48 0 0 +44 0 0 +42 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +49 0 0 +43 0 0 +44 0 0 +kids 0 +OBJECT poly +name "seatframe.R" +data 8 +Cube.011 +crease 30.000000 +numvert 50 +2.155369 0.634609 -0.0737 +2.146455 0.629629 -0.085333 +2.154814 0.620597 -0.094566 +2.168895 0.619996 -0.088638 +2.169238 0.628656 -0.075742 +2.155369 0.634609 -0.598712 +2.146455 0.629629 -0.587079 +2.154814 0.620597 -0.577846 +2.168895 0.619996 -0.583774 +2.169238 0.628656 -0.59667 +2.350332 1.227071 -0.075264 +2.341418 1.22209 -0.086828 +2.349778 1.213059 -0.096006 +2.363858 1.212458 -0.090113 +2.364201 1.221117 -0.077294 +2.350332 1.227071 -0.597148 +2.341418 1.22209 -0.585584 +2.349778 1.213059 -0.576407 +2.364201 1.221117 -0.595118 +2.363858 1.212458 -0.582299 +2.355967 1.244194 -0.101264 +2.34556 1.234678 -0.106997 +2.352735 1.222047 -0.111546 +2.367577 1.223757 -0.108625 +2.369574 1.237444 -0.102271 +2.355967 1.244194 -0.571148 +2.34556 1.234678 -0.565416 +2.352735 1.222047 -0.560867 +2.369574 1.237444 -0.570141 +2.367577 1.223757 -0.563787 +2.393611 1.214609 -0.483872 +2.396049 1.229635 -0.483872 +2.378567 1.212285 -0.483872 +2.371708 1.225873 -0.483872 +2.382512 1.236597 -0.483872 +2.396049 1.229635 -0.18854 +2.393611 1.214609 -0.18854 +2.378567 1.212285 -0.18854 +2.371708 1.225873 -0.18854 +2.382512 1.236597 -0.18854 +2.391247 1.233722 -0.413554 +2.380443 1.222999 -0.413554 +2.387303 1.20941 -0.413554 +2.404784 1.226761 -0.413554 +2.402347 1.211735 -0.413554 +2.391247 1.233722 -0.258858 +2.380443 1.222999 -0.258858 +2.387303 1.20941 -0.258858 +2.402347 1.211735 -0.258858 +2.404784 1.226761 -0.258858 +numsurf 45 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +4 0 0 +14 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +0 0 0 +10 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +12 0 0 +2 0 0 +1 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +3 0 0 +2 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +4 0 0 +3 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +15 0 0 +18 0 0 +9 0 0 +5 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +15 0 0 +5 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +6 0 0 +7 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +17 0 0 +7 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +8 0 0 +9 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +20 0 0 +10 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +20 0 0 +21 0 0 +11 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +22 0 0 +12 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +13 0 0 +12 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +14 0 0 +13 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +28 0 0 +18 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +25 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +16 0 0 +17 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +27 0 0 +17 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +29 0 0 +19 0 0 +18 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +39 0 0 +20 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +39 0 0 +38 0 0 +21 0 0 +20 0 0 +SURF 0x30 +mat 1 +refs 4 +38 0 0 +37 0 0 +22 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +23 0 0 +22 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +24 0 0 +23 0 0 +36 0 0 +SURF 0x30 +mat 1 +refs 4 +34 0 0 +31 0 0 +28 0 0 +25 0 0 +SURF 0x30 +mat 1 +refs 4 +33 0 0 +34 0 0 +25 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +33 0 0 +26 0 0 +27 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +30 0 0 +32 0 0 +27 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +30 0 0 +29 0 0 +28 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +44 0 0 +30 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +42 0 0 +32 0 0 +30 0 0 +44 0 0 +SURF 0x30 +mat 1 +refs 4 +42 0 0 +41 0 0 +33 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +40 0 0 +34 0 0 +33 0 0 +41 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +31 0 0 +34 0 0 +40 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +49 0 0 +35 0 0 +36 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +48 0 0 +36 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +37 0 0 +38 0 0 +46 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +38 0 0 +39 0 0 +45 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +39 0 0 +35 0 0 +49 0 0 +SURF 0x30 +mat 1 +refs 4 +49 0 0 +43 0 0 +40 0 0 +45 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +40 0 0 +41 0 0 +46 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +41 0 0 +42 0 0 +47 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +42 0 0 +44 0 0 +48 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +44 0 0 +43 0 0 +49 0 0 +kids 0 +OBJECT poly +name "shield" +data 8 +Mesh.008 +crease 30.000000 +numvert 88 +-0.194378 1.219942 0.790247 +0.044958 1.28417 -0.756427 +0.180917 1.319072 -0.701673 +0.297225 1.348929 -0.56076 +0.339917 1.358019 -0.405824 +0.339917 1.358019 0 +0.339917 1.358019 0.405823 +0.297226 1.348929 0.56076 +0.180918 1.319072 0.701673 +0.044959 1.284171 0.756427 +-0.194379 1.219942 -0.790247 +-0.21173 1.177978 -0.790247 +0.10814 1.252983 0.756427 +0.245662 1.281105 0.701673 +0.363307 1.305161 0.56076 +0.422779 1.317322 0.405823 +0.422778 1.317322 0 +0.422778 1.317322 -0.405824 +0.363306 1.305161 -0.56076 +0.245661 1.281104 -0.701673 +0.108139 1.252983 -0.756427 +-0.211729 1.177978 0.790247 +-0.212299 1.166607 0.790247 +0.134768 1.222344 -0.756427 +0.273131 1.245977 -0.701673 +0.391497 1.266194 -0.56076 +0.451333 1.276414 -0.405824 +0.451333 1.276414 0 +0.451333 1.276414 0.405823 +0.391497 1.266194 0.56076 +0.273132 1.245977 0.701673 +0.134768 1.222344 0.756427 +-0.2123 1.166607 -0.790247 +-0.190968 1.149447 -0.790247 +0.167154 1.167979 0.756427 +0.307363 1.174648 0.701673 +0.427307 1.180352 0.56076 +0.487941 1.183236 0.405823 +0.48794 1.183235 0 +0.48794 1.183235 -0.405824 +0.427306 1.180352 -0.56076 +0.307362 1.174647 -0.701673 +0.167153 1.167979 -0.756427 +-0.190967 1.149447 0.790247 +-0.179212 1.151814 0.763916 +0.162057 1.169659 -0.731223 +0.295667 1.17608 -0.678294 +0.409967 1.181572 -0.542076 +0.467748 1.184349 -0.392302 +0.467748 1.184349 0 +0.467749 1.184349 0.392301 +0.409968 1.181573 0.542076 +0.295668 1.17608 0.678293 +0.162058 1.169659 0.731223 +-0.179213 1.151814 -0.763916 +-0.199541 1.168337 -0.763916 +0.131196 1.222007 0.731223 +0.263048 1.244763 0.678293 +0.375843 1.26423 0.542076 +0.432863 1.274071 0.392301 +0.432863 1.274071 0 +0.432863 1.274071 -0.392302 +0.375843 1.26423 -0.542076 +0.263047 1.244763 -0.678294 +0.131195 1.222006 -0.731223 +-0.19954 1.168338 0.763916 +-0.198997 1.179287 0.763916 +0.10582 1.251509 -0.731223 +0.23687 1.278587 -0.678294 +0.348979 1.301751 -0.542076 +0.405652 1.313461 -0.392302 +0.405652 1.313461 0 +0.405653 1.313461 0.392301 +0.348979 1.301751 0.542076 +0.236871 1.278587 0.678293 +0.10582 1.251509 0.731223 +-0.198997 1.179286 -0.763916 +-0.182463 1.219694 -0.763916 +0.045612 1.281539 0.731223 +0.175173 1.315146 0.678293 +0.286008 1.343895 0.542076 +0.326232 1.353833 0.392301 +0.326231 1.353833 0 +0.326231 1.353833 -0.392302 +0.286008 1.343895 -0.542076 +0.175173 1.315146 -0.678294 +0.045611 1.281539 -0.731223 +-0.182462 1.219694 0.763916 +numsurf 172 +SURF 0x20 +mat 1 +refs 3 +8 0 0 +13 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 3 +8 0 0 +14 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +20 0 0 +11 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 1 +refs 3 +9 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 3 +9 0 0 +13 0 0 +8 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +18 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +19 0 0 +2 0 0 +SURF 0x20 +mat 1 +refs 3 +7 0 0 +14 0 0 +15 0 0 +SURF 0x20 +mat 1 +refs 3 +7 0 0 +15 0 0 +6 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +19 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +20 0 0 +1 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +17 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +18 0 0 +3 0 0 +SURF 0x20 +mat 1 +refs 3 +6 0 0 +15 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 3 +6 0 0 +16 0 0 +5 0 0 +SURF 0x20 +mat 1 +refs 3 +5 0 0 +16 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 3 +5 0 0 +17 0 0 +4 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +21 0 0 +12 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +12 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +21 0 0 +22 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 3 +21 0 0 +31 0 0 +12 0 0 +SURF 0x20 +mat 1 +refs 3 +16 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 3 +16 0 0 +26 0 0 +17 0 0 +SURF 0x20 +mat 1 +refs 3 +15 0 0 +28 0 0 +27 0 0 +SURF 0x20 +mat 1 +refs 3 +15 0 0 +27 0 0 +16 0 0 +SURF 0x20 +mat 1 +refs 3 +17 0 0 +26 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 3 +17 0 0 +25 0 0 +18 0 0 +SURF 0x20 +mat 1 +refs 3 +19 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 3 +19 0 0 +23 0 0 +20 0 0 +SURF 0x20 +mat 1 +refs 3 +14 0 0 +29 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 3 +14 0 0 +28 0 0 +15 0 0 +SURF 0x20 +mat 1 +refs 3 +18 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 3 +18 0 0 +24 0 0 +19 0 0 +SURF 0x20 +mat 1 +refs 3 +12 0 0 +31 0 0 +30 0 0 +SURF 0x20 +mat 1 +refs 3 +12 0 0 +30 0 0 +13 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +20 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +23 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 3 +13 0 0 +30 0 0 +29 0 0 +SURF 0x20 +mat 1 +refs 3 +13 0 0 +29 0 0 +14 0 0 +SURF 0x20 +mat 1 +refs 3 +30 0 0 +35 0 0 +36 0 0 +SURF 0x20 +mat 1 +refs 3 +30 0 0 +36 0 0 +29 0 0 +SURF 0x20 +mat 1 +refs 3 +23 0 0 +42 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 3 +23 0 0 +33 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 3 +31 0 0 +34 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 3 +31 0 0 +35 0 0 +30 0 0 +SURF 0x20 +mat 1 +refs 3 +25 0 0 +40 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 3 +25 0 0 +41 0 0 +24 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +36 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 3 +29 0 0 +37 0 0 +28 0 0 +SURF 0x20 +mat 1 +refs 3 +24 0 0 +41 0 0 +42 0 0 +SURF 0x20 +mat 1 +refs 3 +24 0 0 +42 0 0 +23 0 0 +SURF 0x20 +mat 1 +refs 3 +26 0 0 +39 0 0 +40 0 0 +SURF 0x20 +mat 1 +refs 3 +26 0 0 +40 0 0 +25 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +37 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 3 +28 0 0 +38 0 0 +27 0 0 +SURF 0x20 +mat 1 +refs 3 +27 0 0 +38 0 0 +39 0 0 +SURF 0x20 +mat 1 +refs 3 +27 0 0 +39 0 0 +26 0 0 +SURF 0x20 +mat 1 +refs 3 +22 0 0 +43 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 3 +22 0 0 +34 0 0 +31 0 0 +SURF 0x20 +mat 1 +refs 3 +43 0 0 +44 0 0 +53 0 0 +SURF 0x20 +mat 1 +refs 3 +43 0 0 +53 0 0 +34 0 0 +SURF 0x20 +mat 1 +refs 3 +38 0 0 +49 0 0 +48 0 0 +SURF 0x20 +mat 1 +refs 3 +38 0 0 +48 0 0 +39 0 0 +SURF 0x20 +mat 1 +refs 3 +22 0 0 +65 0 0 +44 0 0 +SURF 0x20 +mat 1 +refs 3 +22 0 0 +44 0 0 +43 0 0 +SURF 0x20 +mat 1 +refs 3 +37 0 0 +50 0 0 +49 0 0 +SURF 0x20 +mat 1 +refs 3 +37 0 0 +49 0 0 +38 0 0 +SURF 0x20 +mat 1 +refs 3 +39 0 0 +48 0 0 +47 0 0 +SURF 0x20 +mat 1 +refs 3 +39 0 0 +47 0 0 +40 0 0 +SURF 0x20 +mat 1 +refs 3 +41 0 0 +46 0 0 +45 0 0 +SURF 0x20 +mat 1 +refs 3 +41 0 0 +45 0 0 +42 0 0 +SURF 0x20 +mat 1 +refs 3 +36 0 0 +51 0 0 +50 0 0 +SURF 0x20 +mat 1 +refs 3 +36 0 0 +50 0 0 +37 0 0 +SURF 0x20 +mat 1 +refs 3 +40 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 1 +refs 3 +40 0 0 +46 0 0 +41 0 0 +SURF 0x20 +mat 1 +refs 3 +34 0 0 +53 0 0 +52 0 0 +SURF 0x20 +mat 1 +refs 3 +34 0 0 +52 0 0 +35 0 0 +SURF 0x20 +mat 1 +refs 3 +42 0 0 +45 0 0 +54 0 0 +SURF 0x20 +mat 1 +refs 3 +42 0 0 +54 0 0 +33 0 0 +SURF 0x20 +mat 1 +refs 3 +33 0 0 +54 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 3 +33 0 0 +55 0 0 +32 0 0 +SURF 0x20 +mat 1 +refs 3 +35 0 0 +52 0 0 +51 0 0 +SURF 0x20 +mat 1 +refs 3 +35 0 0 +51 0 0 +36 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +32 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +55 0 0 +76 0 0 +SURF 0x20 +mat 1 +refs 3 +21 0 0 +66 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 3 +21 0 0 +65 0 0 +22 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +87 0 0 +66 0 0 +SURF 0x20 +mat 1 +refs 3 +0 0 0 +66 0 0 +21 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +76 0 0 +77 0 0 +SURF 0x20 +mat 1 +refs 3 +11 0 0 +77 0 0 +10 0 0 +SURF 0x20 +mat 1 +refs 3 +7 0 0 +80 0 0 +79 0 0 +SURF 0x20 +mat 1 +refs 3 +7 0 0 +79 0 0 +8 0 0 +SURF 0x20 +mat 1 +refs 3 +10 0 0 +77 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 3 +10 0 0 +86 0 0 +1 0 0 +SURF 0x20 +mat 1 +refs 3 +8 0 0 +79 0 0 +78 0 0 +SURF 0x20 +mat 1 +refs 3 +8 0 0 +78 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +85 0 0 +84 0 0 +SURF 0x20 +mat 1 +refs 3 +2 0 0 +84 0 0 +3 0 0 +SURF 0x20 +mat 1 +refs 3 +6 0 0 +81 0 0 +80 0 0 +SURF 0x20 +mat 1 +refs 3 +6 0 0 +80 0 0 +7 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +86 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 3 +1 0 0 +85 0 0 +2 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +84 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 3 +3 0 0 +83 0 0 +4 0 0 +SURF 0x20 +mat 1 +refs 3 +5 0 0 +82 0 0 +81 0 0 +SURF 0x20 +mat 1 +refs 3 +5 0 0 +81 0 0 +6 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +83 0 0 +82 0 0 +SURF 0x20 +mat 1 +refs 3 +4 0 0 +82 0 0 +5 0 0 +SURF 0x20 +mat 1 +refs 3 +87 0 0 +0 0 0 +9 0 0 +SURF 0x20 +mat 1 +refs 3 +87 0 0 +9 0 0 +78 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +74 0 0 +79 0 0 +SURF 0x20 +mat 1 +refs 3 +73 0 0 +79 0 0 +80 0 0 +SURF 0x20 +mat 1 +refs 3 +76 0 0 +67 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 3 +76 0 0 +86 0 0 +77 0 0 +SURF 0x20 +mat 1 +refs 3 +74 0 0 +75 0 0 +78 0 0 +SURF 0x20 +mat 1 +refs 3 +74 0 0 +78 0 0 +79 0 0 +SURF 0x20 +mat 1 +refs 3 +68 0 0 +69 0 0 +84 0 0 +SURF 0x20 +mat 1 +refs 3 +68 0 0 +84 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +73 0 0 +80 0 0 +SURF 0x20 +mat 1 +refs 3 +72 0 0 +80 0 0 +81 0 0 +SURF 0x20 +mat 1 +refs 3 +67 0 0 +68 0 0 +85 0 0 +SURF 0x20 +mat 1 +refs 3 +67 0 0 +85 0 0 +86 0 0 +SURF 0x20 +mat 1 +refs 3 +69 0 0 +70 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 3 +69 0 0 +83 0 0 +84 0 0 +SURF 0x20 +mat 1 +refs 3 +71 0 0 +72 0 0 +81 0 0 +SURF 0x20 +mat 1 +refs 3 +71 0 0 +81 0 0 +82 0 0 +SURF 0x20 +mat 1 +refs 3 +70 0 0 +71 0 0 +82 0 0 +SURF 0x20 +mat 1 +refs 3 +70 0 0 +82 0 0 +83 0 0 +SURF 0x20 +mat 1 +refs 3 +75 0 0 +66 0 0 +87 0 0 +SURF 0x20 +mat 1 +refs 3 +75 0 0 +87 0 0 +78 0 0 +SURF 0x20 +mat 1 +refs 3 +56 0 0 +65 0 0 +66 0 0 +SURF 0x20 +mat 1 +refs 3 +56 0 0 +66 0 0 +75 0 0 +SURF 0x20 +mat 1 +refs 3 +61 0 0 +60 0 0 +71 0 0 +SURF 0x20 +mat 1 +refs 3 +61 0 0 +71 0 0 +70 0 0 +SURF 0x20 +mat 1 +refs 3 +60 0 0 +59 0 0 +72 0 0 +SURF 0x20 +mat 1 +refs 3 +60 0 0 +72 0 0 +71 0 0 +SURF 0x20 +mat 1 +refs 3 +62 0 0 +61 0 0 +70 0 0 +SURF 0x20 +mat 1 +refs 3 +62 0 0 +70 0 0 +69 0 0 +SURF 0x20 +mat 1 +refs 3 +64 0 0 +63 0 0 +68 0 0 +SURF 0x20 +mat 1 +refs 3 +64 0 0 +68 0 0 +67 0 0 +SURF 0x20 +mat 1 +refs 3 +59 0 0 +58 0 0 +73 0 0 +SURF 0x20 +mat 1 +refs 3 +59 0 0 +73 0 0 +72 0 0 +SURF 0x20 +mat 1 +refs 3 +63 0 0 +62 0 0 +69 0 0 +SURF 0x20 +mat 1 +refs 3 +63 0 0 +69 0 0 +68 0 0 +SURF 0x20 +mat 1 +refs 3 +57 0 0 +56 0 0 +75 0 0 +SURF 0x20 +mat 1 +refs 3 +57 0 0 +75 0 0 +74 0 0 +SURF 0x20 +mat 1 +refs 3 +64 0 0 +67 0 0 +76 0 0 +SURF 0x20 +mat 1 +refs 3 +64 0 0 +76 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 3 +58 0 0 +57 0 0 +74 0 0 +SURF 0x20 +mat 1 +refs 3 +58 0 0 +74 0 0 +73 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +52 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 3 +51 0 0 +57 0 0 +58 0 0 +SURF 0x20 +mat 1 +refs 3 +54 0 0 +45 0 0 +64 0 0 +SURF 0x20 +mat 1 +refs 3 +54 0 0 +64 0 0 +55 0 0 +SURF 0x20 +mat 1 +refs 3 +52 0 0 +53 0 0 +56 0 0 +SURF 0x20 +mat 1 +refs 3 +52 0 0 +56 0 0 +57 0 0 +SURF 0x20 +mat 1 +refs 3 +46 0 0 +47 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 3 +46 0 0 +62 0 0 +63 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +51 0 0 +58 0 0 +SURF 0x20 +mat 1 +refs 3 +50 0 0 +58 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 3 +45 0 0 +46 0 0 +63 0 0 +SURF 0x20 +mat 1 +refs 3 +45 0 0 +63 0 0 +64 0 0 +SURF 0x20 +mat 1 +refs 3 +47 0 0 +48 0 0 +61 0 0 +SURF 0x20 +mat 1 +refs 3 +47 0 0 +61 0 0 +62 0 0 +SURF 0x20 +mat 1 +refs 3 +49 0 0 +50 0 0 +59 0 0 +SURF 0x20 +mat 1 +refs 3 +49 0 0 +59 0 0 +60 0 0 +SURF 0x20 +mat 1 +refs 3 +48 0 0 +49 0 0 +60 0 0 +SURF 0x20 +mat 1 +refs 3 +48 0 0 +60 0 0 +61 0 0 +SURF 0x20 +mat 1 +refs 3 +53 0 0 +44 0 0 +65 0 0 +SURF 0x20 +mat 1 +refs 3 +53 0 0 +65 0 0 +56 0 0 +kids 0 +OBJECT poly +name "steerwheel" +data 10 +Circle.010 +crease 30.000000 +numvert 359 +1.736479 1.289146 0.138395 +1.731413 1.283852 0.134181 +1.726356 1.278569 0.13842 +1.726366 1.278579 0.146873 +1.731432 1.283873 0.151087 +1.736489 1.289156 0.146849 +1.770985 1.256142 0.153135 +1.765135 1.251617 0.157229 +1.760857 1.245569 0.153158 +1.762427 1.244046 0.144993 +1.768277 1.248571 0.140899 +1.772555 1.254619 0.14497 +1.806173 1.222444 0.164244 +1.802629 1.215694 0.160595 +1.796041 1.211875 0.164265 +1.792997 1.214808 0.171586 +1.796541 1.221559 0.175236 +1.803129 1.225377 0.171565 +1.830732 1.198959 0.200883 +1.82351 1.195747 0.20388 +1.820596 1.188393 0.2009 +1.824905 1.18425 0.194923 +1.832127 1.187461 0.191926 +1.835041 1.194816 0.194906 +1.857192 1.173615 0.234865 +1.854762 1.165798 0.232757 +1.847053 1.163052 0.234877 +1.841774 1.168124 0.239103 +1.844204 1.175942 0.241211 +1.851913 1.178687 0.239091 +1.865228 1.165944 0.283586 +1.857213 1.163491 0.284683 +1.855087 1.155383 0.283592 +1.860976 1.149727 0.281404 +1.868991 1.15218 0.280307 +1.871117 1.160288 0.281398 +1.875866 1.155743 0.331334 +1.873844 1.147535 0.331334 +1.865725 1.145182 0.331334 +1.859628 1.151037 0.331334 +1.86165 1.159245 0.331334 +1.869769 1.161598 0.331334 +1.865228 1.165944 0.379082 +1.857213 1.163491 0.377985 +1.855087 1.155383 0.379076 +1.860976 1.149727 0.381264 +1.868991 1.15218 0.382361 +1.871117 1.160288 0.38127 +1.857192 1.173615 0.427803 +1.854762 1.165798 0.42991 +1.847053 1.163052 0.427791 +1.841774 1.168124 0.423564 +1.844204 1.175942 0.421457 +1.851913 1.178687 0.423576 +1.830732 1.198959 0.461785 +1.82351 1.195747 0.458787 +1.820596 1.188393 0.461767 +1.824905 1.18425 0.467745 +1.832127 1.187461 0.470742 +1.835041 1.194816 0.467762 +1.806173 1.222445 0.498423 +1.802629 1.215694 0.502073 +1.796041 1.211875 0.498402 +1.792997 1.214808 0.491081 +1.796541 1.221559 0.487432 +1.803129 1.225377 0.491103 +1.770985 1.256142 0.509533 +1.765135 1.251617 0.505438 +1.760856 1.245569 0.509509 +1.762427 1.244046 0.517674 +1.768277 1.248571 0.521769 +1.772555 1.254619 0.517698 +1.736479 1.289146 0.524272 +1.731413 1.283852 0.528487 +1.726356 1.278569 0.524248 +1.726366 1.278579 0.515795 +1.731432 1.283873 0.51158 +1.736489 1.289156 0.515819 +1.701994 1.322171 0.509533 +1.697729 1.316129 0.505438 +1.691875 1.311589 0.509509 +1.690284 1.313092 0.517674 +1.694549 1.319134 0.521769 +1.700403 1.323673 0.517698 +1.666786 1.355848 0.498423 +1.660197 1.352011 0.502073 +1.656671 1.345262 0.498402 +1.659734 1.34235 0.491081 +1.666323 1.346187 0.487432 +1.669849 1.352936 0.491103 +1.642246 1.379354 0.461784 +1.639354 1.371998 0.458787 +1.632135 1.368764 0.461767 +1.627807 1.372887 0.467744 +1.630698 1.380243 0.470742 +1.637918 1.383477 0.467762 +1.615767 1.404677 0.427803 +1.608063 1.401907 0.42991 +1.605658 1.394085 0.427791 +1.610957 1.389033 0.423564 +1.61866 1.391804 0.421457 +1.621065 1.399625 0.423576 +1.60775 1.412368 0.379082 +1.605651 1.404254 0.377985 +1.597644 1.401775 0.379076 +1.591735 1.40741 0.381263 +1.593834 1.415525 0.382361 +1.601842 1.418004 0.38127 +1.597092 1.422549 0.331334 +1.588981 1.42017 0.331334 +1.586986 1.411955 0.331334 +1.593103 1.40612 0.331334 +1.601215 1.4085 0.331334 +1.603209 1.416715 0.331334 +1.607751 1.412368 0.283585 +1.605651 1.404254 0.284683 +1.597644 1.401775 0.283592 +1.591735 1.40741 0.281404 +1.593834 1.415525 0.280307 +1.601842 1.418004 0.281398 +1.615767 1.404677 0.234865 +1.608063 1.401906 0.232757 +1.605658 1.394085 0.234877 +1.610957 1.389033 0.239103 +1.61866 1.391803 0.241211 +1.621065 1.399625 0.239091 +1.642246 1.379354 0.200883 +1.639354 1.371998 0.20388 +1.632135 1.368764 0.2009 +1.627807 1.372887 0.194923 +1.630698 1.380243 0.191926 +1.637918 1.383476 0.194906 +1.666786 1.355848 0.164244 +1.660197 1.352011 0.160594 +1.656671 1.345262 0.164265 +1.659734 1.34235 0.171586 +1.666323 1.346186 0.175236 +1.669849 1.352936 0.171565 +1.701994 1.322171 0.153135 +1.697729 1.316129 0.157229 +1.691875 1.311589 0.153158 +1.690284 1.313091 0.144993 +1.694549 1.319134 0.140899 +1.700403 1.323673 0.14497 +1.736479 1.289146 0.138395 +1.731413 1.283852 0.134181 +1.726356 1.278569 0.13842 +1.726366 1.278579 0.146873 +1.731432 1.283872 0.151087 +1.736489 1.289156 0.146849 +1.750765 1.26535 0.30456 +1.756214 1.260135 0.315332 +1.758672 1.257782 0.328034 +1.757844 1.258575 0.341134 +1.753829 1.262417 0.353051 +1.747112 1.268846 0.36235 +1.738502 1.277086 0.367907 +1.729038 1.286144 0.369053 +1.719862 1.294926 0.36565 +1.71208 1.302374 0.358107 +1.706631 1.307589 0.347335 +1.704172 1.309943 0.334634 +1.705 1.30915 0.321534 +1.709015 1.305308 0.309616 +1.715733 1.298879 0.300318 +1.724343 1.290638 0.294761 +1.733806 1.281581 0.293615 +1.742983 1.272798 0.297018 +1.763248 1.272107 0.316822 +1.758306 1.276836 0.307054 +1.765478 1.269973 0.328341 +1.764727 1.270691 0.340221 +1.761086 1.274176 0.351029 +1.754994 1.280006 0.359461 +1.747186 1.287479 0.364501 +1.738603 1.295693 0.365541 +1.730281 1.303658 0.362454 +1.723224 1.310412 0.355614 +1.718283 1.315142 0.345845 +1.716053 1.317276 0.334327 +1.716804 1.316557 0.322447 +1.720445 1.313072 0.311639 +1.726537 1.307242 0.303206 +1.734345 1.299769 0.298166 +1.742927 1.291555 0.297127 +1.751249 1.28359 0.300213 +1.752123 1.294164 0.323502 +1.753717 1.292639 0.326653 +1.754436 1.29195 0.330368 +1.754194 1.292182 0.334201 +1.75302 1.293306 0.337687 +1.751055 1.295187 0.340407 +1.748536 1.297598 0.342033 +1.745768 1.300247 0.342368 +1.743083 1.302816 0.341372 +1.740807 1.304995 0.339166 +1.739213 1.30652 0.336015 +1.738493 1.307209 0.332299 +1.738736 1.306977 0.328467 +1.73991 1.305853 0.324981 +1.741875 1.303972 0.322261 +1.744394 1.301562 0.320635 +1.747162 1.298912 0.3203 +1.749847 1.296343 0.321295 +1.75511 1.297526 0.32776 +1.753892 1.298691 0.325353 +1.755659 1.297001 0.330597 +1.755474 1.297177 0.333523 +1.754577 1.298036 0.336185 +1.753077 1.299472 0.338262 +1.751153 1.301312 0.339503 +1.749039 1.303336 0.339759 +1.74699 1.305297 0.338999 +1.745252 1.306961 0.337314 +1.744034 1.308126 0.334908 +1.743485 1.308651 0.332071 +1.74367 1.308474 0.329145 +1.744567 1.307616 0.326483 +1.746067 1.30618 0.324406 +1.74799 1.30434 0.323165 +1.750104 1.302316 0.322909 +1.752154 1.300355 0.323669 +1.749572 1.302826 0.331334 +1.744536 1.247934 0.315332 +1.739087 1.253149 0.30456 +1.746995 1.245581 0.328034 +1.746167 1.246374 0.341134 +1.742152 1.250216 0.353051 +1.735435 1.256645 0.36235 +1.726825 1.264886 0.367907 +1.717361 1.273943 0.369053 +1.708185 1.282725 0.36565 +1.700403 1.290173 0.358107 +1.694954 1.295388 0.347335 +1.692495 1.297742 0.334634 +1.693323 1.296949 0.321534 +1.697338 1.293107 0.309616 +1.704056 1.286677 0.300318 +1.712665 1.278437 0.294761 +1.722129 1.26938 0.293615 +1.731305 1.260597 0.297018 +1.724092 1.249319 0.312746 +1.727875 1.245699 0.320224 +1.729582 1.244065 0.329043 +1.729007 1.244615 0.338137 +1.726219 1.247283 0.346412 +1.721556 1.251746 0.352867 +1.715578 1.257467 0.356725 +1.709008 1.263756 0.357521 +1.702637 1.269853 0.355158 +1.697234 1.275024 0.349922 +1.693451 1.278644 0.342443 +1.691744 1.280278 0.333625 +1.692319 1.279728 0.32453 +1.695106 1.27706 0.316256 +1.69977 1.272597 0.309801 +1.705748 1.266876 0.305942 +1.712318 1.260588 0.305147 +1.718689 1.25449 0.307509 +1.71334 1.237689 0.322538 +1.710345 1.240555 0.316617 +1.714692 1.236395 0.32952 +1.714237 1.236831 0.33672 +1.71203 1.238943 0.343271 +1.708337 1.242477 0.348383 +1.703605 1.247006 0.351437 +1.698403 1.251985 0.352067 +1.693359 1.256812 0.350196 +1.689081 1.260906 0.346051 +1.686086 1.263773 0.34013 +1.684734 1.265067 0.333148 +1.685189 1.264631 0.325947 +1.687396 1.262519 0.319396 +1.691089 1.258985 0.314285 +1.695821 1.254455 0.31123 +1.701024 1.249477 0.3106 +1.706068 1.244649 0.312471 +1.703526 1.241863 0.322448 +1.705334 1.240132 0.326023 +1.70615 1.239351 0.330239 +1.705875 1.239614 0.334586 +1.704543 1.240889 0.338542 +1.702313 1.243023 0.341628 +1.699456 1.245758 0.343472 +1.696315 1.248764 0.343852 +1.693269 1.251679 0.342723 +1.690686 1.254151 0.34022 +1.688878 1.255882 0.336645 +1.688062 1.256663 0.332429 +1.688337 1.2564 0.328081 +1.689669 1.255124 0.324126 +1.691899 1.25299 0.32104 +1.694756 1.250256 0.319195 +1.697897 1.247249 0.318815 +1.700943 1.244335 0.319945 +1.193375 0.70521 0.326023 +1.191567 0.706941 0.322448 +1.194191 0.704429 0.330239 +1.193916 0.704692 0.334586 +1.192584 0.705967 0.338542 +1.190354 0.708101 0.341628 +1.187497 0.710836 0.343472 +1.184356 0.713842 0.343852 +1.18131 0.716757 0.342723 +1.178728 0.719229 0.34022 +1.176919 0.720959 0.336645 +1.176103 0.72174 0.332429 +1.176378 0.721478 0.328081 +1.17771 0.720202 0.324126 +1.17994 0.718068 0.32104 +1.182797 0.715333 0.319195 +1.185938 0.712327 0.318815 +1.188984 0.709412 0.319945 +1.185147 0.713085 0.331334 +1.711432 1.309328 0.326758 +1.706237 1.3039 0.325568 +1.703849 1.301405 0.332346 +1.707569 1.305291 0.337725 +1.712255 1.310188 0.334272 +1.61147 1.405 0.326758 +1.606274 1.399571 0.325568 +1.603886 1.397076 0.332346 +1.607606 1.400962 0.337725 +1.612293 1.405859 0.334272 +1.594817 1.410537 0.305142 +1.600012 1.415965 0.310548 +1.592429 1.408042 0.335932 +1.596148 1.411928 0.360368 +1.600835 1.416825 0.344679 +1.794346 1.231621 0.163341 +1.779844 1.236118 0.155497 +1.791413 1.2176 0.167715 +1.814878 1.210323 0.180407 +1.813065 1.201658 0.18311 +1.795129 1.230871 0.182279 +1.788282 1.228043 0.180552 +1.787928 1.220935 0.183242 +1.794557 1.219371 0.186631 +1.799008 1.225512 0.186036 +1.745148 1.278707 0.302109 +1.7383 1.275878 0.300382 +1.737947 1.268771 0.303072 +1.744576 1.267207 0.306461 +1.749026 1.273348 0.305866 +1.7433 1.278828 0.361377 +1.73736 1.274113 0.361972 +1.739213 1.267559 0.358583 +1.746298 1.268224 0.355894 +1.748824 1.275189 0.35762 +1.793282 1.230993 0.481207 +1.787342 1.226277 0.481802 +1.789195 1.219723 0.478413 +1.79628 1.220388 0.475723 +1.798806 1.227353 0.47745 +1.780291 1.233025 0.50575 +1.788868 1.235216 0.503047 +1.797167 1.212093 0.490354 +1.816175 1.201347 0.478137 +1.811046 1.215638 0.485981 +numsurf 354 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +5 0 0 +6 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x30 +mat 1 +refs 4 +4 0 0 +3 0 0 +8 0 0 +7 0 0 +SURF 0x30 +mat 1 +refs 4 +2 0 0 +9 0 0 +8 0 0 +3 0 0 +SURF 0x30 +mat 1 +refs 4 +1 0 0 +10 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 1 +refs 4 +0 0 0 +11 0 0 +10 0 0 +1 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +12 0 0 +13 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 4 +10 0 0 +13 0 0 +14 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +9 0 0 +14 0 0 +15 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +8 0 0 +15 0 0 +16 0 0 +SURF 0x30 +mat 1 +refs 4 +7 0 0 +16 0 0 +17 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +6 0 0 +17 0 0 +12 0 0 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +17 0 0 +18 0 0 +23 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +19 0 0 +18 0 0 +17 0 0 +SURF 0x30 +mat 1 +refs 4 +16 0 0 +15 0 0 +20 0 0 +19 0 0 +SURF 0x30 +mat 1 +refs 4 +14 0 0 +21 0 0 +20 0 0 +15 0 0 +SURF 0x30 +mat 1 +refs 4 +13 0 0 +22 0 0 +21 0 0 +14 0 0 +SURF 0x30 +mat 1 +refs 4 +12 0 0 +23 0 0 +22 0 0 +13 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +24 0 0 +25 0 0 +22 0 0 +SURF 0x30 +mat 1 +refs 4 +22 0 0 +25 0 0 +26 0 0 +21 0 0 +SURF 0x30 +mat 1 +refs 4 +21 0 0 +26 0 0 +27 0 0 +20 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +20 0 0 +27 0 0 +28 0 0 +SURF 0x30 +mat 1 +refs 4 +19 0 0 +28 0 0 +29 0 0 +18 0 0 +SURF 0x30 +mat 1 +refs 4 +23 0 0 +18 0 0 +29 0 0 +24 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +29 0 0 +30 0 0 +35 0 0 +SURF 0x30 +mat 1 +refs 4 +28 0 0 +31 0 0 +30 0 0 +29 0 0 +SURF 0x30 +mat 1 +refs 4 +28 0 0 +27 0 0 +32 0 0 +31 0 0 +SURF 0x30 +mat 1 +refs 4 +26 0 0 +33 0 0 +32 0 0 +27 0 0 +SURF 0x30 +mat 1 +refs 4 +25 0 0 +34 0 0 +33 0 0 +26 0 0 +SURF 0x30 +mat 1 +refs 4 +24 0 0 +35 0 0 +34 0 0 +25 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +36 0 0 +37 0 0 +34 0 0 +SURF 0x30 +mat 1 +refs 4 +34 0 0 +37 0 0 +38 0 0 +33 0 0 +SURF 0x30 +mat 1 +refs 4 +33 0 0 +38 0 0 +39 0 0 +32 0 0 +SURF 0x30 +mat 1 +refs 4 +31 0 0 +32 0 0 +39 0 0 +40 0 0 +SURF 0x30 +mat 1 +refs 4 +31 0 0 +40 0 0 +41 0 0 +30 0 0 +SURF 0x30 +mat 1 +refs 4 +35 0 0 +30 0 0 +41 0 0 +36 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +41 0 0 +42 0 0 +47 0 0 +SURF 0x30 +mat 1 +refs 4 +40 0 0 +43 0 0 +42 0 0 +41 0 0 +SURF 0x30 +mat 1 +refs 4 +40 0 0 +39 0 0 +44 0 0 +43 0 0 +SURF 0x30 +mat 1 +refs 4 +38 0 0 +45 0 0 +44 0 0 +39 0 0 +SURF 0x30 +mat 1 +refs 4 +37 0 0 +46 0 0 +45 0 0 +38 0 0 +SURF 0x30 +mat 1 +refs 4 +36 0 0 +47 0 0 +46 0 0 +37 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +48 0 0 +49 0 0 +46 0 0 +SURF 0x30 +mat 1 +refs 4 +46 0 0 +49 0 0 +50 0 0 +45 0 0 +SURF 0x30 +mat 1 +refs 4 +45 0 0 +50 0 0 +51 0 0 +44 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +44 0 0 +51 0 0 +52 0 0 +SURF 0x30 +mat 1 +refs 4 +43 0 0 +52 0 0 +53 0 0 +42 0 0 +SURF 0x30 +mat 1 +refs 4 +47 0 0 +42 0 0 +53 0 0 +48 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +53 0 0 +54 0 0 +59 0 0 +SURF 0x30 +mat 1 +refs 4 +52 0 0 +55 0 0 +54 0 0 +53 0 0 +SURF 0x30 +mat 1 +refs 4 +52 0 0 +51 0 0 +56 0 0 +55 0 0 +SURF 0x30 +mat 1 +refs 4 +50 0 0 +57 0 0 +56 0 0 +51 0 0 +SURF 0x30 +mat 1 +refs 4 +49 0 0 +58 0 0 +57 0 0 +50 0 0 +SURF 0x30 +mat 1 +refs 4 +48 0 0 +59 0 0 +58 0 0 +49 0 0 +SURF 0x30 +mat 1 +refs 4 +59 0 0 +60 0 0 +61 0 0 +58 0 0 +SURF 0x30 +mat 1 +refs 4 +58 0 0 +61 0 0 +62 0 0 +57 0 0 +SURF 0x30 +mat 1 +refs 4 +57 0 0 +62 0 0 +63 0 0 +56 0 0 +SURF 0x30 +mat 1 +refs 4 +55 0 0 +56 0 0 +63 0 0 +64 0 0 +SURF 0x30 +mat 1 +refs 4 +55 0 0 +64 0 0 +65 0 0 +54 0 0 +SURF 0x30 +mat 1 +refs 4 +59 0 0 +54 0 0 +65 0 0 +60 0 0 +SURF 0x30 +mat 1 +refs 4 +60 0 0 +65 0 0 +66 0 0 +71 0 0 +SURF 0x30 +mat 1 +refs 4 +64 0 0 +67 0 0 +66 0 0 +65 0 0 +SURF 0x30 +mat 1 +refs 4 +64 0 0 +63 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 1 +refs 4 +62 0 0 +69 0 0 +68 0 0 +63 0 0 +SURF 0x30 +mat 1 +refs 4 +61 0 0 +70 0 0 +69 0 0 +62 0 0 +SURF 0x30 +mat 1 +refs 4 +60 0 0 +71 0 0 +70 0 0 +61 0 0 +SURF 0x30 +mat 1 +refs 4 +71 0 0 +72 0 0 +73 0 0 +70 0 0 +SURF 0x30 +mat 1 +refs 4 +70 0 0 +73 0 0 +74 0 0 +69 0 0 +SURF 0x30 +mat 1 +refs 4 +69 0 0 +74 0 0 +75 0 0 +68 0 0 +SURF 0x30 +mat 1 +refs 4 +67 0 0 +68 0 0 +75 0 0 +76 0 0 +SURF 0x30 +mat 1 +refs 4 +67 0 0 +76 0 0 +77 0 0 +66 0 0 +SURF 0x30 +mat 1 +refs 4 +71 0 0 +66 0 0 +77 0 0 +72 0 0 +SURF 0x30 +mat 1 +refs 4 +72 0 0 +77 0 0 +78 0 0 +83 0 0 +SURF 0x30 +mat 1 +refs 4 +76 0 0 +79 0 0 +78 0 0 +77 0 0 +SURF 0x30 +mat 1 +refs 4 +76 0 0 +75 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 1 +refs 4 +74 0 0 +81 0 0 +80 0 0 +75 0 0 +SURF 0x30 +mat 1 +refs 4 +73 0 0 +82 0 0 +81 0 0 +74 0 0 +SURF 0x30 +mat 1 +refs 4 +72 0 0 +83 0 0 +82 0 0 +73 0 0 +SURF 0x30 +mat 1 +refs 4 +83 0 0 +84 0 0 +85 0 0 +82 0 0 +SURF 0x30 +mat 1 +refs 4 +82 0 0 +85 0 0 +86 0 0 +81 0 0 +SURF 0x30 +mat 1 +refs 4 +81 0 0 +86 0 0 +87 0 0 +80 0 0 +SURF 0x30 +mat 1 +refs 4 +79 0 0 +80 0 0 +87 0 0 +88 0 0 +SURF 0x30 +mat 1 +refs 4 +79 0 0 +88 0 0 +89 0 0 +78 0 0 +SURF 0x30 +mat 1 +refs 4 +83 0 0 +78 0 0 +89 0 0 +84 0 0 +SURF 0x30 +mat 1 +refs 4 +84 0 0 +89 0 0 +90 0 0 +95 0 0 +SURF 0x30 +mat 1 +refs 4 +88 0 0 +91 0 0 +90 0 0 +89 0 0 +SURF 0x30 +mat 1 +refs 4 +88 0 0 +87 0 0 +92 0 0 +91 0 0 +SURF 0x30 +mat 1 +refs 4 +86 0 0 +93 0 0 +92 0 0 +87 0 0 +SURF 0x30 +mat 1 +refs 4 +85 0 0 +94 0 0 +93 0 0 +86 0 0 +SURF 0x30 +mat 1 +refs 4 +84 0 0 +95 0 0 +94 0 0 +85 0 0 +SURF 0x30 +mat 1 +refs 4 +95 0 0 +96 0 0 +97 0 0 +94 0 0 +SURF 0x30 +mat 1 +refs 4 +94 0 0 +97 0 0 +98 0 0 +93 0 0 +SURF 0x30 +mat 1 +refs 4 +93 0 0 +98 0 0 +99 0 0 +92 0 0 +SURF 0x30 +mat 1 +refs 4 +91 0 0 +92 0 0 +99 0 0 +100 0 0 +SURF 0x30 +mat 1 +refs 4 +91 0 0 +100 0 0 +101 0 0 +90 0 0 +SURF 0x30 +mat 1 +refs 4 +95 0 0 +90 0 0 +101 0 0 +96 0 0 +SURF 0x30 +mat 1 +refs 4 +96 0 0 +101 0 0 +102 0 0 +107 0 0 +SURF 0x30 +mat 1 +refs 4 +100 0 0 +103 0 0 +102 0 0 +101 0 0 +SURF 0x30 +mat 1 +refs 4 +100 0 0 +99 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 1 +refs 4 +98 0 0 +105 0 0 +104 0 0 +99 0 0 +SURF 0x30 +mat 1 +refs 4 +97 0 0 +106 0 0 +105 0 0 +98 0 0 +SURF 0x30 +mat 1 +refs 4 +96 0 0 +107 0 0 +106 0 0 +97 0 0 +SURF 0x30 +mat 1 +refs 4 +107 0 0 +108 0 0 +109 0 0 +106 0 0 +SURF 0x30 +mat 1 +refs 4 +106 0 0 +109 0 0 +110 0 0 +105 0 0 +SURF 0x30 +mat 1 +refs 4 +105 0 0 +110 0 0 +111 0 0 +104 0 0 +SURF 0x30 +mat 1 +refs 4 +103 0 0 +104 0 0 +111 0 0 +112 0 0 +SURF 0x30 +mat 1 +refs 4 +103 0 0 +112 0 0 +113 0 0 +102 0 0 +SURF 0x30 +mat 1 +refs 4 +107 0 0 +102 0 0 +113 0 0 +108 0 0 +SURF 0x30 +mat 1 +refs 4 +108 0 0 +113 0 0 +114 0 0 +119 0 0 +SURF 0x30 +mat 1 +refs 4 +112 0 0 +115 0 0 +114 0 0 +113 0 0 +SURF 0x30 +mat 1 +refs 4 +112 0 0 +111 0 0 +116 0 0 +115 0 0 +SURF 0x30 +mat 1 +refs 4 +110 0 0 +117 0 0 +116 0 0 +111 0 0 +SURF 0x30 +mat 1 +refs 4 +109 0 0 +118 0 0 +117 0 0 +110 0 0 +SURF 0x30 +mat 1 +refs 4 +108 0 0 +119 0 0 +118 0 0 +109 0 0 +SURF 0x30 +mat 1 +refs 4 +119 0 0 +120 0 0 +121 0 0 +118 0 0 +SURF 0x30 +mat 1 +refs 4 +118 0 0 +121 0 0 +122 0 0 +117 0 0 +SURF 0x30 +mat 1 +refs 4 +117 0 0 +122 0 0 +123 0 0 +116 0 0 +SURF 0x30 +mat 1 +refs 4 +115 0 0 +116 0 0 +123 0 0 +124 0 0 +SURF 0x30 +mat 1 +refs 4 +115 0 0 +124 0 0 +125 0 0 +114 0 0 +SURF 0x30 +mat 1 +refs 4 +119 0 0 +114 0 0 +125 0 0 +120 0 0 +SURF 0x30 +mat 1 +refs 4 +120 0 0 +125 0 0 +126 0 0 +131 0 0 +SURF 0x30 +mat 1 +refs 4 +124 0 0 +127 0 0 +126 0 0 +125 0 0 +SURF 0x30 +mat 1 +refs 4 +124 0 0 +123 0 0 +128 0 0 +127 0 0 +SURF 0x30 +mat 1 +refs 4 +122 0 0 +129 0 0 +128 0 0 +123 0 0 +SURF 0x30 +mat 1 +refs 4 +121 0 0 +130 0 0 +129 0 0 +122 0 0 +SURF 0x30 +mat 1 +refs 4 +120 0 0 +131 0 0 +130 0 0 +121 0 0 +SURF 0x30 +mat 1 +refs 4 +131 0 0 +132 0 0 +133 0 0 +130 0 0 +SURF 0x30 +mat 1 +refs 4 +130 0 0 +133 0 0 +134 0 0 +129 0 0 +SURF 0x30 +mat 1 +refs 4 +129 0 0 +134 0 0 +135 0 0 +128 0 0 +SURF 0x30 +mat 1 +refs 4 +127 0 0 +128 0 0 +135 0 0 +136 0 0 +SURF 0x30 +mat 1 +refs 4 +127 0 0 +136 0 0 +137 0 0 +126 0 0 +SURF 0x30 +mat 1 +refs 4 +131 0 0 +126 0 0 +137 0 0 +132 0 0 +SURF 0x30 +mat 1 +refs 4 +132 0 0 +137 0 0 +138 0 0 +143 0 0 +SURF 0x30 +mat 1 +refs 4 +136 0 0 +139 0 0 +138 0 0 +137 0 0 +SURF 0x30 +mat 1 +refs 4 +136 0 0 +135 0 0 +140 0 0 +139 0 0 +SURF 0x30 +mat 1 +refs 4 +134 0 0 +141 0 0 +140 0 0 +135 0 0 +SURF 0x30 +mat 1 +refs 4 +133 0 0 +142 0 0 +141 0 0 +134 0 0 +SURF 0x30 +mat 1 +refs 4 +132 0 0 +143 0 0 +142 0 0 +133 0 0 +SURF 0x30 +mat 1 +refs 4 +143 0 0 +144 0 0 +145 0 0 +142 0 0 +SURF 0x30 +mat 1 +refs 4 +142 0 0 +145 0 0 +146 0 0 +141 0 0 +SURF 0x30 +mat 1 +refs 4 +141 0 0 +146 0 0 +147 0 0 +140 0 0 +SURF 0x30 +mat 1 +refs 4 +139 0 0 +140 0 0 +147 0 0 +148 0 0 +SURF 0x30 +mat 1 +refs 4 +139 0 0 +148 0 0 +149 0 0 +138 0 0 +SURF 0x30 +mat 1 +refs 4 +143 0 0 +138 0 0 +149 0 0 +144 0 0 +SURF 0x30 +mat 1 +refs 4 +151 0 0 +150 0 0 +169 0 0 +168 0 0 +SURF 0x30 +mat 1 +refs 4 +152 0 0 +151 0 0 +168 0 0 +170 0 0 +SURF 0x30 +mat 1 +refs 4 +153 0 0 +152 0 0 +170 0 0 +171 0 0 +SURF 0x30 +mat 1 +refs 4 +154 0 0 +153 0 0 +171 0 0 +172 0 0 +SURF 0x30 +mat 1 +refs 4 +155 0 0 +154 0 0 +172 0 0 +173 0 0 +SURF 0x30 +mat 1 +refs 4 +156 0 0 +155 0 0 +173 0 0 +174 0 0 +SURF 0x30 +mat 1 +refs 4 +157 0 0 +156 0 0 +174 0 0 +175 0 0 +SURF 0x30 +mat 1 +refs 4 +158 0 0 +157 0 0 +175 0 0 +176 0 0 +SURF 0x30 +mat 1 +refs 4 +159 0 0 +158 0 0 +176 0 0 +177 0 0 +SURF 0x30 +mat 1 +refs 4 +160 0 0 +159 0 0 +177 0 0 +178 0 0 +SURF 0x30 +mat 1 +refs 4 +161 0 0 +160 0 0 +178 0 0 +179 0 0 +SURF 0x30 +mat 1 +refs 4 +162 0 0 +161 0 0 +179 0 0 +180 0 0 +SURF 0x30 +mat 1 +refs 4 +163 0 0 +162 0 0 +180 0 0 +181 0 0 +SURF 0x30 +mat 1 +refs 4 +164 0 0 +163 0 0 +181 0 0 +182 0 0 +SURF 0x30 +mat 1 +refs 4 +165 0 0 +164 0 0 +182 0 0 +183 0 0 +SURF 0x30 +mat 1 +refs 4 +166 0 0 +165 0 0 +183 0 0 +184 0 0 +SURF 0x30 +mat 1 +refs 4 +167 0 0 +166 0 0 +184 0 0 +185 0 0 +SURF 0x30 +mat 1 +refs 4 +150 0 0 +167 0 0 +185 0 0 +169 0 0 +SURF 0x30 +mat 1 +refs 4 +168 0 0 +169 0 0 +186 0 0 +187 0 0 +SURF 0x30 +mat 1 +refs 4 +170 0 0 +168 0 0 +187 0 0 +188 0 0 +SURF 0x30 +mat 1 +refs 4 +171 0 0 +170 0 0 +188 0 0 +189 0 0 +SURF 0x30 +mat 1 +refs 4 +172 0 0 +171 0 0 +189 0 0 +190 0 0 +SURF 0x30 +mat 1 +refs 4 +173 0 0 +172 0 0 +190 0 0 +191 0 0 +SURF 0x30 +mat 1 +refs 4 +174 0 0 +173 0 0 +191 0 0 +192 0 0 +SURF 0x30 +mat 1 +refs 4 +175 0 0 +174 0 0 +192 0 0 +193 0 0 +SURF 0x30 +mat 1 +refs 4 +176 0 0 +175 0 0 +193 0 0 +194 0 0 +SURF 0x30 +mat 1 +refs 4 +177 0 0 +176 0 0 +194 0 0 +195 0 0 +SURF 0x30 +mat 1 +refs 4 +178 0 0 +177 0 0 +195 0 0 +196 0 0 +SURF 0x30 +mat 1 +refs 4 +179 0 0 +178 0 0 +196 0 0 +197 0 0 +SURF 0x30 +mat 1 +refs 4 +180 0 0 +179 0 0 +197 0 0 +198 0 0 +SURF 0x30 +mat 1 +refs 4 +181 0 0 +180 0 0 +198 0 0 +199 0 0 +SURF 0x30 +mat 1 +refs 4 +182 0 0 +181 0 0 +199 0 0 +200 0 0 +SURF 0x30 +mat 1 +refs 4 +183 0 0 +182 0 0 +200 0 0 +201 0 0 +SURF 0x30 +mat 1 +refs 4 +184 0 0 +183 0 0 +201 0 0 +202 0 0 +SURF 0x30 +mat 1 +refs 4 +185 0 0 +184 0 0 +202 0 0 +203 0 0 +SURF 0x30 +mat 1 +refs 4 +169 0 0 +185 0 0 +203 0 0 +186 0 0 +SURF 0x30 +mat 1 +refs 4 +187 0 0 +186 0 0 +205 0 0 +204 0 0 +SURF 0x30 +mat 1 +refs 4 +188 0 0 +187 0 0 +204 0 0 +206 0 0 +SURF 0x30 +mat 1 +refs 4 +189 0 0 +188 0 0 +206 0 0 +207 0 0 +SURF 0x30 +mat 1 +refs 4 +190 0 0 +189 0 0 +207 0 0 +208 0 0 +SURF 0x30 +mat 1 +refs 4 +191 0 0 +190 0 0 +208 0 0 +209 0 0 +SURF 0x30 +mat 1 +refs 4 +192 0 0 +191 0 0 +209 0 0 +210 0 0 +SURF 0x30 +mat 1 +refs 4 +193 0 0 +192 0 0 +210 0 0 +211 0 0 +SURF 0x30 +mat 1 +refs 4 +194 0 0 +193 0 0 +211 0 0 +212 0 0 +SURF 0x30 +mat 1 +refs 4 +195 0 0 +194 0 0 +212 0 0 +213 0 0 +SURF 0x30 +mat 1 +refs 4 +196 0 0 +195 0 0 +213 0 0 +214 0 0 +SURF 0x30 +mat 1 +refs 4 +197 0 0 +196 0 0 +214 0 0 +215 0 0 +SURF 0x30 +mat 1 +refs 4 +198 0 0 +197 0 0 +215 0 0 +216 0 0 +SURF 0x30 +mat 1 +refs 4 +199 0 0 +198 0 0 +216 0 0 +217 0 0 +SURF 0x30 +mat 1 +refs 4 +200 0 0 +199 0 0 +217 0 0 +218 0 0 +SURF 0x30 +mat 1 +refs 4 +201 0 0 +200 0 0 +218 0 0 +219 0 0 +SURF 0x30 +mat 1 +refs 4 +202 0 0 +201 0 0 +219 0 0 +220 0 0 +SURF 0x30 +mat 1 +refs 4 +203 0 0 +202 0 0 +220 0 0 +221 0 0 +SURF 0x30 +mat 1 +refs 4 +186 0 0 +203 0 0 +221 0 0 +205 0 0 +SURF 0x30 +mat 1 +refs 3 +204 0 0 +205 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +206 0 0 +204 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +207 0 0 +206 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +208 0 0 +207 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +209 0 0 +208 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +210 0 0 +209 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +211 0 0 +210 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +212 0 0 +211 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +213 0 0 +212 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +214 0 0 +213 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +215 0 0 +214 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +216 0 0 +215 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +217 0 0 +216 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +218 0 0 +217 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +219 0 0 +218 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +220 0 0 +219 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +221 0 0 +220 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 3 +205 0 0 +221 0 0 +222 0 0 +SURF 0x30 +mat 1 +refs 4 +150 0 0 +151 0 0 +223 0 0 +224 0 0 +SURF 0x30 +mat 1 +refs 4 +151 0 0 +152 0 0 +225 0 0 +223 0 0 +SURF 0x30 +mat 1 +refs 4 +152 0 0 +153 0 0 +226 0 0 +225 0 0 +SURF 0x30 +mat 1 +refs 4 +153 0 0 +154 0 0 +227 0 0 +226 0 0 +SURF 0x30 +mat 1 +refs 4 +154 0 0 +155 0 0 +228 0 0 +227 0 0 +SURF 0x30 +mat 1 +refs 4 +155 0 0 +156 0 0 +229 0 0 +228 0 0 +SURF 0x30 +mat 1 +refs 4 +156 0 0 +157 0 0 +230 0 0 +229 0 0 +SURF 0x30 +mat 1 +refs 4 +157 0 0 +158 0 0 +231 0 0 +230 0 0 +SURF 0x30 +mat 1 +refs 4 +158 0 0 +159 0 0 +232 0 0 +231 0 0 +SURF 0x30 +mat 1 +refs 4 +159 0 0 +160 0 0 +233 0 0 +232 0 0 +SURF 0x30 +mat 1 +refs 4 +160 0 0 +161 0 0 +234 0 0 +233 0 0 +SURF 0x30 +mat 1 +refs 4 +161 0 0 +162 0 0 +235 0 0 +234 0 0 +SURF 0x30 +mat 1 +refs 4 +162 0 0 +163 0 0 +236 0 0 +235 0 0 +SURF 0x30 +mat 1 +refs 4 +163 0 0 +164 0 0 +237 0 0 +236 0 0 +SURF 0x30 +mat 1 +refs 4 +164 0 0 +165 0 0 +238 0 0 +237 0 0 +SURF 0x30 +mat 1 +refs 4 +165 0 0 +166 0 0 +239 0 0 +238 0 0 +SURF 0x30 +mat 1 +refs 4 +166 0 0 +167 0 0 +240 0 0 +239 0 0 +SURF 0x30 +mat 1 +refs 4 +167 0 0 +150 0 0 +224 0 0 +240 0 0 +SURF 0x30 +mat 1 +refs 4 +224 0 0 +223 0 0 +242 0 0 +241 0 0 +SURF 0x30 +mat 1 +refs 4 +223 0 0 +225 0 0 +243 0 0 +242 0 0 +SURF 0x30 +mat 1 +refs 4 +225 0 0 +226 0 0 +244 0 0 +243 0 0 +SURF 0x30 +mat 1 +refs 4 +226 0 0 +227 0 0 +245 0 0 +244 0 0 +SURF 0x30 +mat 1 +refs 4 +227 0 0 +228 0 0 +246 0 0 +245 0 0 +SURF 0x30 +mat 1 +refs 4 +228 0 0 +229 0 0 +247 0 0 +246 0 0 +SURF 0x30 +mat 1 +refs 4 +229 0 0 +230 0 0 +248 0 0 +247 0 0 +SURF 0x30 +mat 1 +refs 4 +230 0 0 +231 0 0 +249 0 0 +248 0 0 +SURF 0x30 +mat 1 +refs 4 +231 0 0 +232 0 0 +250 0 0 +249 0 0 +SURF 0x30 +mat 1 +refs 4 +232 0 0 +233 0 0 +251 0 0 +250 0 0 +SURF 0x30 +mat 1 +refs 4 +233 0 0 +234 0 0 +252 0 0 +251 0 0 +SURF 0x30 +mat 1 +refs 4 +234 0 0 +235 0 0 +253 0 0 +252 0 0 +SURF 0x30 +mat 1 +refs 4 +235 0 0 +236 0 0 +254 0 0 +253 0 0 +SURF 0x30 +mat 1 +refs 4 +236 0 0 +237 0 0 +255 0 0 +254 0 0 +SURF 0x30 +mat 1 +refs 4 +237 0 0 +238 0 0 +256 0 0 +255 0 0 +SURF 0x30 +mat 1 +refs 4 +238 0 0 +239 0 0 +257 0 0 +256 0 0 +SURF 0x30 +mat 1 +refs 4 +239 0 0 +240 0 0 +258 0 0 +257 0 0 +SURF 0x30 +mat 1 +refs 4 +240 0 0 +224 0 0 +241 0 0 +258 0 0 +SURF 0x30 +mat 1 +refs 4 +241 0 0 +242 0 0 +259 0 0 +260 0 0 +SURF 0x30 +mat 1 +refs 4 +242 0 0 +243 0 0 +261 0 0 +259 0 0 +SURF 0x30 +mat 1 +refs 4 +243 0 0 +244 0 0 +262 0 0 +261 0 0 +SURF 0x30 +mat 1 +refs 4 +244 0 0 +245 0 0 +263 0 0 +262 0 0 +SURF 0x30 +mat 1 +refs 4 +245 0 0 +246 0 0 +264 0 0 +263 0 0 +SURF 0x30 +mat 1 +refs 4 +246 0 0 +247 0 0 +265 0 0 +264 0 0 +SURF 0x30 +mat 1 +refs 4 +247 0 0 +248 0 0 +266 0 0 +265 0 0 +SURF 0x30 +mat 1 +refs 4 +248 0 0 +249 0 0 +267 0 0 +266 0 0 +SURF 0x30 +mat 1 +refs 4 +249 0 0 +250 0 0 +268 0 0 +267 0 0 +SURF 0x30 +mat 1 +refs 4 +250 0 0 +251 0 0 +269 0 0 +268 0 0 +SURF 0x30 +mat 1 +refs 4 +251 0 0 +252 0 0 +270 0 0 +269 0 0 +SURF 0x30 +mat 1 +refs 4 +252 0 0 +253 0 0 +271 0 0 +270 0 0 +SURF 0x30 +mat 1 +refs 4 +253 0 0 +254 0 0 +272 0 0 +271 0 0 +SURF 0x30 +mat 1 +refs 4 +254 0 0 +255 0 0 +273 0 0 +272 0 0 +SURF 0x30 +mat 1 +refs 4 +255 0 0 +256 0 0 +274 0 0 +273 0 0 +SURF 0x30 +mat 1 +refs 4 +256 0 0 +257 0 0 +275 0 0 +274 0 0 +SURF 0x30 +mat 1 +refs 4 +257 0 0 +258 0 0 +276 0 0 +275 0 0 +SURF 0x30 +mat 1 +refs 4 +258 0 0 +241 0 0 +260 0 0 +276 0 0 +SURF 0x30 +mat 1 +refs 4 +260 0 0 +259 0 0 +278 0 0 +277 0 0 +SURF 0x30 +mat 1 +refs 4 +259 0 0 +261 0 0 +279 0 0 +278 0 0 +SURF 0x30 +mat 1 +refs 4 +261 0 0 +262 0 0 +280 0 0 +279 0 0 +SURF 0x30 +mat 1 +refs 4 +262 0 0 +263 0 0 +281 0 0 +280 0 0 +SURF 0x30 +mat 1 +refs 4 +263 0 0 +264 0 0 +282 0 0 +281 0 0 +SURF 0x30 +mat 1 +refs 4 +264 0 0 +265 0 0 +283 0 0 +282 0 0 +SURF 0x30 +mat 1 +refs 4 +265 0 0 +266 0 0 +284 0 0 +283 0 0 +SURF 0x30 +mat 1 +refs 4 +266 0 0 +267 0 0 +285 0 0 +284 0 0 +SURF 0x30 +mat 1 +refs 4 +267 0 0 +268 0 0 +286 0 0 +285 0 0 +SURF 0x30 +mat 1 +refs 4 +268 0 0 +269 0 0 +287 0 0 +286 0 0 +SURF 0x30 +mat 1 +refs 4 +269 0 0 +270 0 0 +288 0 0 +287 0 0 +SURF 0x30 +mat 1 +refs 4 +270 0 0 +271 0 0 +289 0 0 +288 0 0 +SURF 0x30 +mat 1 +refs 4 +271 0 0 +272 0 0 +290 0 0 +289 0 0 +SURF 0x30 +mat 1 +refs 4 +272 0 0 +273 0 0 +291 0 0 +290 0 0 +SURF 0x30 +mat 1 +refs 4 +273 0 0 +274 0 0 +292 0 0 +291 0 0 +SURF 0x30 +mat 1 +refs 4 +274 0 0 +275 0 0 +293 0 0 +292 0 0 +SURF 0x30 +mat 1 +refs 4 +275 0 0 +276 0 0 +294 0 0 +293 0 0 +SURF 0x30 +mat 1 +refs 4 +276 0 0 +260 0 0 +277 0 0 +294 0 0 +SURF 0x30 +mat 1 +refs 4 +277 0 0 +278 0 0 +295 0 0 +296 0 0 +SURF 0x30 +mat 1 +refs 4 +278 0 0 +279 0 0 +297 0 0 +295 0 0 +SURF 0x30 +mat 1 +refs 4 +279 0 0 +280 0 0 +298 0 0 +297 0 0 +SURF 0x30 +mat 1 +refs 4 +280 0 0 +281 0 0 +299 0 0 +298 0 0 +SURF 0x30 +mat 1 +refs 4 +281 0 0 +282 0 0 +300 0 0 +299 0 0 +SURF 0x30 +mat 1 +refs 4 +282 0 0 +283 0 0 +301 0 0 +300 0 0 +SURF 0x30 +mat 1 +refs 4 +283 0 0 +284 0 0 +302 0 0 +301 0 0 +SURF 0x30 +mat 1 +refs 4 +284 0 0 +285 0 0 +303 0 0 +302 0 0 +SURF 0x30 +mat 1 +refs 4 +285 0 0 +286 0 0 +304 0 0 +303 0 0 +SURF 0x30 +mat 1 +refs 4 +286 0 0 +287 0 0 +305 0 0 +304 0 0 +SURF 0x30 +mat 1 +refs 4 +287 0 0 +288 0 0 +306 0 0 +305 0 0 +SURF 0x30 +mat 1 +refs 4 +288 0 0 +289 0 0 +307 0 0 +306 0 0 +SURF 0x30 +mat 1 +refs 4 +289 0 0 +290 0 0 +308 0 0 +307 0 0 +SURF 0x30 +mat 1 +refs 4 +290 0 0 +291 0 0 +309 0 0 +308 0 0 +SURF 0x30 +mat 1 +refs 4 +291 0 0 +292 0 0 +310 0 0 +309 0 0 +SURF 0x30 +mat 1 +refs 4 +292 0 0 +293 0 0 +311 0 0 +310 0 0 +SURF 0x30 +mat 1 +refs 4 +293 0 0 +294 0 0 +312 0 0 +311 0 0 +SURF 0x30 +mat 1 +refs 4 +294 0 0 +277 0 0 +296 0 0 +312 0 0 +SURF 0x30 +mat 1 +refs 3 +296 0 0 +295 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +295 0 0 +297 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +297 0 0 +298 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +298 0 0 +299 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +299 0 0 +300 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +300 0 0 +301 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +301 0 0 +302 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +302 0 0 +303 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +303 0 0 +304 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +304 0 0 +305 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +305 0 0 +306 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +306 0 0 +307 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +307 0 0 +308 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +308 0 0 +309 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +309 0 0 +310 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +310 0 0 +311 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +311 0 0 +312 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 3 +312 0 0 +296 0 0 +313 0 0 +SURF 0x30 +mat 1 +refs 4 +315 0 0 +320 0 0 +319 0 0 +314 0 0 +SURF 0x30 +mat 1 +refs 4 +316 0 0 +321 0 0 +320 0 0 +315 0 0 +SURF 0x30 +mat 1 +refs 4 +317 0 0 +322 0 0 +321 0 0 +316 0 0 +SURF 0x30 +mat 1 +refs 4 +318 0 0 +323 0 0 +322 0 0 +317 0 0 +SURF 0x30 +mat 1 +refs 4 +314 0 0 +319 0 0 +323 0 0 +318 0 0 +SURF 0x30 +mat 1 +refs 4 +320 0 0 +324 0 0 +325 0 0 +319 0 0 +SURF 0x30 +mat 1 +refs 4 +321 0 0 +326 0 0 +324 0 0 +320 0 0 +SURF 0x30 +mat 1 +refs 4 +322 0 0 +327 0 0 +326 0 0 +321 0 0 +SURF 0x30 +mat 1 +refs 4 +323 0 0 +328 0 0 +327 0 0 +322 0 0 +SURF 0x30 +mat 1 +refs 4 +319 0 0 +325 0 0 +328 0 0 +323 0 0 +SURF 0x30 +mat 1 +refs 4 +338 0 0 +332 0 0 +329 0 0 +334 0 0 +SURF 0x30 +mat 1 +refs 4 +334 0 0 +329 0 0 +330 0 0 +335 0 0 +SURF 0x30 +mat 1 +refs 4 +335 0 0 +330 0 0 +331 0 0 +336 0 0 +SURF 0x30 +mat 1 +refs 4 +336 0 0 +331 0 0 +333 0 0 +337 0 0 +SURF 0x30 +mat 1 +refs 4 +337 0 0 +333 0 0 +332 0 0 +338 0 0 +SURF 0x30 +mat 1 +refs 4 +343 0 0 +338 0 0 +334 0 0 +339 0 0 +SURF 0x30 +mat 1 +refs 4 +339 0 0 +334 0 0 +335 0 0 +340 0 0 +SURF 0x30 +mat 1 +refs 4 +340 0 0 +335 0 0 +336 0 0 +341 0 0 +SURF 0x30 +mat 1 +refs 4 +341 0 0 +336 0 0 +337 0 0 +342 0 0 +SURF 0x30 +mat 1 +refs 4 +342 0 0 +337 0 0 +338 0 0 +343 0 0 +SURF 0x30 +mat 1 +refs 4 +345 0 0 +350 0 0 +349 0 0 +344 0 0 +SURF 0x30 +mat 1 +refs 4 +346 0 0 +351 0 0 +350 0 0 +345 0 0 +SURF 0x30 +mat 1 +refs 4 +347 0 0 +352 0 0 +351 0 0 +346 0 0 +SURF 0x30 +mat 1 +refs 4 +348 0 0 +353 0 0 +352 0 0 +347 0 0 +SURF 0x30 +mat 1 +refs 4 +344 0 0 +349 0 0 +353 0 0 +348 0 0 +SURF 0x30 +mat 1 +refs 4 +350 0 0 +354 0 0 +355 0 0 +349 0 0 +SURF 0x30 +mat 1 +refs 4 +351 0 0 +356 0 0 +354 0 0 +350 0 0 +SURF 0x30 +mat 1 +refs 4 +352 0 0 +357 0 0 +356 0 0 +351 0 0 +SURF 0x30 +mat 1 +refs 4 +353 0 0 +358 0 0 +357 0 0 +352 0 0 +SURF 0x30 +mat 1 +refs 4 +349 0 0 +355 0 0 +358 0 0 +353 0 0 +kids 0 +OBJECT poly +name "wiper.L" +data 8 +Cube.004 +crease 30.000000 +numvert 18 +1.268874 1.744693 0.322413 +1.257205 1.705126 0.275423 +1.253071 1.691108 0.287334 +1.263735 1.727269 0.337218 +1.290052 1.738447 0.322413 +1.278383 1.69888 0.275423 +1.274249 1.684862 0.287334 +1.284913 1.721023 0.337218 +1.273767 1.683226 0.279714 +1.276369 1.692051 0.272215 +1.258087 1.683827 0.274979 +1.26069 1.692652 0.267481 +1.224641 1.54712 0.087979 +1.222568 1.540091 0.093953 +1.231325 1.542132 0.084429 +1.229252 1.535102 0.090402 +1.268452 1.697594 0.273227 +1.265084 1.686173 0.282932 +numsurf 21 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +1 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 4 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +11 0 0 +9 0 0 +14 0 0 +12 0 0 +SURF 0x20 +mat 2 +refs 4 +8 0 0 +10 0 0 +13 0 0 +15 0 0 +SURF 0x20 +mat 2 +refs 4 +12 0 0 +14 0 0 +15 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 3 +16 0 0 +11 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 3 +5 0 0 +16 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 3 +16 0 0 +9 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 3 +9 0 0 +16 0 0 +8 0 0 +SURF 0x20 +mat 2 +refs 3 +16 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 2 +refs 3 +17 0 0 +2 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +8 0 0 +17 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +17 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 3 +6 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 2 +refs 3 +17 0 0 +8 0 0 +16 0 0 +kids 0 +OBJECT poly +name "wiper.R" +data 8 +Cube.003 +crease 30.000000 +numvert 18 +1.268874 1.744693 -0.296318 +1.257205 1.705126 -0.343307 +1.253071 1.691108 -0.331396 +1.263735 1.727269 -0.281512 +1.290052 1.738447 -0.296318 +1.278383 1.69888 -0.343307 +1.274249 1.684862 -0.331396 +1.284913 1.721023 -0.281512 +1.273767 1.683226 -0.339017 +1.276369 1.692051 -0.346515 +1.258087 1.683827 -0.343751 +1.26069 1.692652 -0.35125 +1.224641 1.54712 -0.530751 +1.222568 1.540091 -0.524778 +1.231325 1.542132 -0.534302 +1.229252 1.535102 -0.528329 +1.268452 1.697594 -0.345503 +1.265084 1.686173 -0.335798 +numsurf 21 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 2 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x20 +mat 2 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x20 +mat 2 +refs 4 +2 0 0 +1 0 0 +11 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 4 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x20 +mat 2 +refs 4 +11 0 0 +9 0 0 +14 0 0 +12 0 0 +SURF 0x20 +mat 2 +refs 4 +8 0 0 +10 0 0 +13 0 0 +15 0 0 +SURF 0x20 +mat 2 +refs 4 +12 0 0 +14 0 0 +15 0 0 +13 0 0 +SURF 0x20 +mat 2 +refs 3 +16 0 0 +11 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 3 +5 0 0 +16 0 0 +1 0 0 +SURF 0x20 +mat 2 +refs 3 +16 0 0 +9 0 0 +11 0 0 +SURF 0x20 +mat 2 +refs 3 +9 0 0 +16 0 0 +8 0 0 +SURF 0x20 +mat 2 +refs 3 +16 0 0 +5 0 0 +6 0 0 +SURF 0x20 +mat 2 +refs 3 +17 0 0 +2 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +8 0 0 +17 0 0 +10 0 0 +SURF 0x20 +mat 2 +refs 3 +17 0 0 +6 0 0 +2 0 0 +SURF 0x20 +mat 2 +refs 3 +6 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 2 +refs 3 +17 0 0 +8 0 0 +16 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/gpatrans.ac b/resources/flightgear/Aircraft/jeep/Models/gpatrans.ac new file mode 100644 index 0000000000000000000000000000000000000000..2d7a3cc76a121da4d4f1e49da91011bc95aaa147 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/gpatrans.ac @@ -0,0 +1,35 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "glass" rgb 0.1 0.1 0.1 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0.601077 +OBJECT world +kids 1 +OBJECT poly +name "noshadow.screenglass" +data 8 +Cube.008 +crease 30.000000 +numvert 8 +1.28824 1.725076 -0.02227 +1.28824 1.725076 0.022271 +1.185811 1.414937 0.022271 +1.185811 1.414937 -0.02227 +1.28824 1.725076 -0.620687 +1.28824 1.725076 0.620687 +1.185811 1.414937 0.620687 +1.185811 1.414936 -0.620687 +numsurf 2 +SURF 0x20 +mat 1 +refs 4 +1 0 0 +2 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 1 +refs 4 +0 0 0 +4 0 0 +7 0 0 +3 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/gpatrans.xml b/resources/flightgear/Aircraft/jeep/Models/gpatrans.xml new file mode 100644 index 0000000000000000000000000000000000000000..5432b80e0bc590cb81b9394e84e3f60070130209 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/gpatrans.xml @@ -0,0 +1,29 @@ + + + + + + + + + + gpatrans.ac + + rotate + noshadow.screenglass + controls/gear//screen + -108 +
+ 1.167 + 0.0 + 0.992 +
+ + 0.0 + 1.0 + 0.0 + +
+ + +
diff --git a/resources/flightgear/Aircraft/jeep/Models/jeep-1.png b/resources/flightgear/Aircraft/jeep/Models/jeep-1.png new file mode 100755 index 0000000000000000000000000000000000000000..70609815a3010440dc30676ac52405d1ba440752 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/jeep-1.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/jeep-2.png b/resources/flightgear/Aircraft/jeep/Models/jeep-2.png new file mode 100755 index 0000000000000000000000000000000000000000..1bfe297a0673119ae1320b386844459c52bace46 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/jeep-2.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/jeep.ac b/resources/flightgear/Aircraft/jeep/Models/jeep.ac new file mode 100755 index 0000000000000000000000000000000000000000..1d412e2e859cf8b2509c052a47946b5a80997e64 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/jeep.ac @@ -0,0 +1,66674 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "black" rgb 0.1 0.1 0.1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "barrelcooler" rgb 0.4 0.4 0.4 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "case" rgb 0.2 0.2 0.2 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "lights" rgb 0.812522 0.8 0.8 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "red-light" rgb 0.561931 0.073262 0.060732 amb 1 1 1 emis 0.575148 0.575148 0.575148 spec 1 1 1 shi 32 trans 0.13783 +MATERIAL "yellow-light" rgb 0.8 0.8 0.160972 amb 1 1 1 emis 0.575148 0.575148 0.575148 spec 1 1 1 shi 32 trans 0.13783 +MATERIAL "seat" rgb 0.5 0.5 0.5 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "chassis" rgb 1 1 1 amb 0.982643 0.982643 0.982643 emis 0 0 0 spec 0 0.018826 0 shi 32 trans 0 +MATERIAL "tyre" rgb 0.2 0.2 0.2 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "white" rgb 0.9 0.9 0.9 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "brown" rgb 0.474417 0.361715 0.249013 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "glass" rgb 0.1 0.1 0.1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0.601077 +OBJECT world +kids 59 +OBJECT poly +name "fscrews.L" +data 12 +Cylinder.009 +crease 30 +numvert 70 +0.454788 0.397752 0.703386 +0.45114 0.411367 0.703386 +0.461107 0.421334 0.703386 +0.474723 0.417686 0.703386 +0.478371 0.404071 0.703386 +0.468404 0.394104 0.703386 +0.454788 0.397752 0.675194 +0.45114 0.411367 0.675194 +0.461107 0.421334 0.675194 +0.474723 0.417686 0.675194 +0.478371 0.404071 0.675194 +0.468404 0.394104 0.675194 +0.464756 0.407719 0.703386 +0.464756 0.407719 0.675194 +0.526378 0.492535 0.675194 +0.526378 0.492535 0.703386 +0.514556 0.484858 0.675194 +0.527115 0.478458 0.675194 +0.538937 0.486135 0.675194 +0.538199 0.500212 0.675194 +0.52564 0.506611 0.675194 +0.513818 0.498934 0.675194 +0.514556 0.484858 0.703386 +0.527115 0.478458 0.703386 +0.538937 0.486135 0.703386 +0.538199 0.500212 0.703386 +0.52564 0.506611 0.703386 +0.513818 0.498934 0.703386 +0.628289 0.47406 0.703386 +0.639244 0.465189 0.703386 +0.637039 0.451267 0.703386 +0.623879 0.446216 0.703386 +0.612925 0.455087 0.703386 +0.61513 0.469009 0.703386 +0.628289 0.47406 0.675194 +0.639244 0.465189 0.675194 +0.637039 0.451267 0.675194 +0.623879 0.446216 0.675194 +0.612925 0.455087 0.675194 +0.61513 0.469009 0.675194 +0.626084 0.460138 0.703386 +0.626084 0.460138 0.675194 +0.626084 0.3553 0.675194 +0.626084 0.3553 0.703386 +0.631136 0.368459 0.675194 +0.617214 0.366254 0.675194 +0.612162 0.353095 0.675194 +0.621033 0.342141 0.675194 +0.634955 0.344346 0.675194 +0.640006 0.357505 0.675194 +0.631136 0.368459 0.703386 +0.617214 0.366254 0.703386 +0.612162 0.353095 0.703386 +0.621033 0.342141 0.703386 +0.634955 0.344346 0.703386 +0.640006 0.357505 0.703386 +0.532777 0.310344 0.703386 +0.518701 0.311082 0.703386 +0.512301 0.323641 0.703386 +0.519978 0.335463 0.703386 +0.534055 0.334725 0.703386 +0.540454 0.322166 0.703386 +0.532777 0.310344 0.675194 +0.518701 0.311082 0.675194 +0.512301 0.323641 0.675194 +0.519978 0.335463 0.675194 +0.534055 0.334725 0.675194 +0.540454 0.322166 0.675194 +0.526378 0.322903 0.703386 +0.526378 0.322903 0.675194 +numsurf 90 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +0 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +7 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +1 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +8 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +2 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +9 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +3 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +10 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +4 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +6 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +6 0 0 +7 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +7 0 0 +8 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +10 0 0 +11 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +6 0 0 +0 0 0 +5 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +22 0 0 +16 0 0 +21 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 4 +23 0 0 +17 0 0 +16 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 4 +24 0 0 +18 0 0 +17 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 4 +25 0 0 +19 0 0 +18 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 4 +26 0 0 +20 0 0 +19 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +21 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +22 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +16 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +23 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +17 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +24 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +18 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +25 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +19 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +26 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +27 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +28 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +35 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +29 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +36 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +30 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +37 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +31 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +38 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +32 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +39 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +33 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +34 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 4 +28 0 0 +34 0 0 +35 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 4 +29 0 0 +35 0 0 +36 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 4 +30 0 0 +36 0 0 +37 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 4 +31 0 0 +37 0 0 +38 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 4 +32 0 0 +38 0 0 +39 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 4 +33 0 0 +39 0 0 +34 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 4 +50 0 0 +44 0 0 +49 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 4 +51 0 0 +45 0 0 +44 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 4 +52 0 0 +46 0 0 +45 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 4 +53 0 0 +47 0 0 +46 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 4 +54 0 0 +48 0 0 +47 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 4 +55 0 0 +49 0 0 +48 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +49 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +50 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +44 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +51 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +45 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +52 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +46 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +53 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +47 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +54 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +48 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +55 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +56 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +63 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +57 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +64 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +58 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +65 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +59 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +66 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +60 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +67 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +61 0 0 +56 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +62 0 0 +67 0 0 +SURF 0x00 +mat 1 +refs 4 +56 0 0 +62 0 0 +63 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 4 +57 0 0 +63 0 0 +64 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 4 +58 0 0 +64 0 0 +65 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 4 +59 0 0 +65 0 0 +66 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 4 +60 0 0 +66 0 0 +67 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 4 +61 0 0 +67 0 0 +62 0 0 +56 0 0 +kids 0 +OBJECT poly +name "aim" +data 8 +Cube.002 +crease 30 +numvert 24 +1.535752 1.942994 0.000505 +1.535564 1.942994 0.000181 +1.535564 1.942994 -0.000193 +1.535752 1.942994 -0.000517 +1.536076 1.942994 -0.000704 +1.53645 1.942994 -0.000704 +1.536774 1.942994 -0.000517 +1.53696 1.942994 -0.000193 +1.53696 1.942994 0.000181 +1.536774 1.942994 0.000505 +1.53645 1.942994 0.000692 +1.536076 1.942994 0.000692 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +1.536262 1.942994 -6e-06 +numsurf 12 +SURF 0x00 +mat 2 +refs 4 +1 0.0 1.0 +0 0.0 0.0 +12 1.0 0.0 +13 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +2 0.0 1.0 +1 0.0 0.0 +13 1.0 0.0 +14 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +3 0.0 1.0 +2 0.0 0.0 +14 1.0 0.0 +15 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +4 0.0 1.0 +3 0.0 0.0 +15 1.0 0.0 +16 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +5 0.0 1.0 +4 0.0 0.0 +16 1.0 0.0 +17 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +6 0.0 1.0 +5 0.0 0.0 +17 1.0 0.0 +18 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +7 0.0 1.0 +6 0.0 0.0 +18 1.0 0.0 +19 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +8 0.0 1.0 +7 0.0 0.0 +19 1.0 0.0 +20 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +9 0.0 1.0 +8 0.0 0.0 +20 1.0 0.0 +21 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +10 0.0 1.0 +9 0.0 0.0 +21 1.0 0.0 +22 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +11 0.0 1.0 +10 0.0 0.0 +22 1.0 0.0 +23 1.0 1.0 +SURF 0x00 +mat 2 +refs 4 +0 0.0 1.0 +11 0.0 0.0 +23 1.0 0.0 +12 1.0 1.0 +kids 0 +OBJECT poly +name "Cylinder.021" +data 12 +Cylinder.026 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 16 +0.042657 0.486104 -0.420256 +0.042657 0.486104 -0.351345 +0.034562 0.471744 -0.420256 +0.034562 0.471744 -0.351345 +0.035641 0.457117 -0.351345 +0.042478 0.438924 -0.351345 +0.042478 0.438924 -0.420256 +0.035641 0.457117 -0.420256 +0.162845 0.484811 -0.351345 +0.10295 0.446104 -0.351345 +0.10295 0.446104 -0.420256 +0.162845 0.484811 -0.391527 +0.0862 0.427933 -0.420256 +0.0862 0.427933 -0.351345 +0.06086 0.426907 -0.420256 +0.06086 0.426907 -0.351345 +numsurf 14 +SURF 0x00 +mat 9 +refs 4 +1 0.477408498526 0.937238454819 +0 0.477316826582 0.907361209393 +2 0.483567744493 0.907342076302 +3 0.483659416437 0.937219321728 +SURF 0x00 +mat 9 +refs 4 +2 0.244115680456 0.919237375259 +0 0.250371873379 0.922692894936 +11 0.250295817852 0.974827170372 +7 0.237778320909 0.919760107994 +SURF 0x00 +mat 9 +refs 4 +4 0.976472973824 0.819320559502 +8 0.96394610405 0.874355375767 +1 0.96387732029 0.822243511677 +3 0.970135986805 0.818792998791 +SURF 0x00 +mat 9 +refs 4 +0 0.547649681568 0.912463843822 +1 0.57752686739 0.912555098534 +8 0.577367007732 0.964644312859 +11 0.559945702553 0.964590847492 +SURF 0x00 +mat 9 +refs 4 +7 0.489905834198 0.907322645187 +4 0.489997506142 0.937199890614 +3 0.483659416437 0.937219321728 +2 0.483567744493 0.907342076302 +SURF 0x00 +mat 9 +refs 4 +6 0.497772008181 0.907298505306 +5 0.497863650322 0.937175691128 +4 0.489997506142 0.937199890614 +7 0.489905834198 0.907322645187 +SURF 0x00 +mat 9 +refs 4 +8 0.169539541006 0.996151328087 +9 0.14317676425 0.99623221159 +10 0.143085286021 0.966354966164 +11 0.169485881925 0.978729903698 +SURF 0x00 +mat 9 +refs 4 +4 0.976472973824 0.819320559502 +5 0.984332323074 0.822358906269 +9 0.980972111225 0.848546564579 +8 0.96394610405 0.874355375767 +SURF 0x00 +mat 9 +refs 4 +6 0.229916781187 0.922792553902 +7 0.237778320909 0.919760107994 +11 0.250295817852 0.974827170372 +10 0.233256995678 0.948982656002 +SURF 0x00 +mat 9 +refs 4 +10 0.233256995678 0.948982656002 +12 0.225316017866 0.941789448261 +14 0.224776014686 0.93080753088 +6 0.229916781187 0.922792553902 +SURF 0x00 +mat 9 +refs 4 +5 0.984332323074 0.822358906269 +15 0.989466905594 0.83037763834 +13 0.988918602467 0.841359317303 +9 0.980972111225 0.848546564579 +SURF 0x00 +mat 9 +refs 4 +9 0.237285912037 0.46640124917 +13 0.245107069612 0.466422915459 +12 0.245015382767 0.496300160885 +10 0.237194225192 0.496278464794 +SURF 0x00 +mat 9 +refs 4 +6 0.357223242521 0.871458470821 +14 0.365065842867 0.871434390545 +15 0.365157544613 0.901311516762 +5 0.357314944267 0.901335656643 +SURF 0x00 +mat 9 +refs 4 +15 0.365157544613 0.901311516762 +14 0.365065842867 0.871434390545 +12 0.376059532166 0.871400654316 +13 0.376151025295 0.901277840137 +kids 0 +OBJECT poly +name "Cylinder.020" +data 12 +Cylinder.025 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 91 +0.256972 0.827492 0.361613 +0.257675 0.827492 0.369655 +0.273515 0.839625 0.39495 +0.267806 0.837673 0.389586 +0.263176 0.835411 0.383372 +0.259764 0.832909 0.376497 +0.257675 0.830242 0.36917 +0.257675 0.832661 0.367774 +0.259764 0.837673 0.373747 +0.263176 0.842376 0.379351 +0.267806 0.846626 0.384417 +0.273515 0.850295 0.388789 +0.273515 0.858215 0.379351 +0.267806 0.853272 0.376497 +0.263176 0.847545 0.373191 +0.259764 0.841209 0.369533 +0.257675 0.834456 0.365634 +0.257675 0.835411 0.36301 +0.259764 0.84309 0.364364 +0.263176 0.850295 0.365634 +0.267806 0.856807 0.366782 +0.273515 0.862429 0.367774 +0.273515 0.862429 0.355453 +0.267806 0.856807 0.356444 +0.263176 0.850295 0.357592 +0.259764 0.84309 0.358863 +0.257675 0.835411 0.360217 +0.257675 0.834456 0.357592 +0.259764 0.841209 0.353694 +0.263176 0.847545 0.350036 +0.267806 0.853272 0.346729 +0.273515 0.858215 0.343875 +0.273515 0.850295 0.334437 +0.267806 0.846626 0.33881 +0.263176 0.842376 0.343875 +0.259764 0.837673 0.34948 +0.257675 0.832661 0.355453 +0.257675 0.830242 0.354056 +0.259764 0.832909 0.346729 +0.263176 0.835411 0.339854 +0.267806 0.837673 0.33364 +0.273515 0.839625 0.328277 +0.273515 0.827492 0.326137 +0.267806 0.827492 0.331845 +0.263176 0.827492 0.338458 +0.259764 0.827492 0.345774 +0.257675 0.827492 0.353571 +0.257675 0.824741 0.354056 +0.259764 0.822074 0.346729 +0.263176 0.819572 0.339854 +0.267806 0.817311 0.33364 +0.273515 0.815358 0.328277 +0.273515 0.804688 0.334437 +0.267806 0.808357 0.33881 +0.263176 0.812608 0.343875 +0.259764 0.817311 0.34948 +0.257675 0.822323 0.355453 +0.257675 0.820527 0.357592 +0.259764 0.813775 0.353694 +0.263176 0.807439 0.350036 +0.267806 0.801712 0.346729 +0.273515 0.796769 0.343875 +0.273515 0.792555 0.355453 +0.267806 0.798176 0.356444 +0.263176 0.804688 0.357592 +0.259764 0.811893 0.358863 +0.257675 0.819572 0.360217 +0.257675 0.819572 0.36301 +0.259764 0.811893 0.364364 +0.263176 0.804688 0.365634 +0.267806 0.798176 0.366782 +0.273515 0.792555 0.367774 +0.273515 0.796769 0.379351 +0.267806 0.801712 0.376497 +0.263176 0.807439 0.373191 +0.259764 0.813775 0.369533 +0.257675 0.820527 0.365634 +0.257675 0.822323 0.367774 +0.259764 0.817311 0.373747 +0.263176 0.812608 0.379351 +0.267806 0.808357 0.384417 +0.273515 0.804688 0.388789 +0.273515 0.815358 0.39495 +0.267806 0.817311 0.389586 +0.263176 0.819572 0.383372 +0.259764 0.822074 0.376497 +0.257675 0.824741 0.36917 +0.259764 0.827492 0.377452 +0.263176 0.827492 0.384769 +0.267806 0.827492 0.391381 +0.273515 0.827492 0.397089 +numsurf 90 +SURF 0x10 +mat 7 +refs 4 +90 0.518040537834 0.807481586933 +2 0.518042266369 0.812823176384 +3 0.515601873398 0.812376856804 +89 0.515600383282 0.807894706726 +SURF 0x10 +mat 7 +refs 4 +89 0.515600383282 0.807894706726 +3 0.515601873398 0.812376856804 +4 0.51277577877 0.811865866184 +88 0.512774646282 0.808379352093 +SURF 0x10 +mat 7 +refs 4 +88 0.512774646282 0.808379352093 +4 0.51277577877 0.811865866184 +5 0.509649991989 0.811305701733 +87 0.509649217129 0.808920800686 +SURF 0x10 +mat 7 +refs 4 +87 0.509649217129 0.808920800686 +5 0.509649991989 0.811305701733 +6 0.506319344044 0.810713410378 +1 0.506318986416 0.809502601624 +SURF 0x10 +mat 7 +refs 3 +6 0.506319344044 0.810713410378 +0 0.50288516283 0.810107052326 +1 0.506318986416 0.809502601624 +SURF 0x10 +mat 7 +refs 3 +7 0.505905628204 0.811851382256 +0 0.50288516283 0.810107052326 +6 0.506319344044 0.810713410378 +SURF 0x10 +mat 7 +refs 4 +5 0.509649991989 0.811305701733 +8 0.508835017681 0.813547074795 +7 0.505905628204 0.811851382256 +6 0.506319344044 0.810713410378 +SURF 0x10 +mat 7 +refs 4 +4 0.51277577877 0.811865866184 +9 0.511584401131 0.815142512321 +8 0.508835017681 0.813547074795 +5 0.509649991989 0.811305701733 +SURF 0x10 +mat 7 +refs 4 +3 0.515601873398 0.812376856804 +10 0.514070272446 0.816589236259 +9 0.511584401131 0.815142512321 +4 0.51277577877 0.811865866184 +SURF 0x10 +mat 7 +refs 4 +2 0.518042266369 0.812823176384 +11 0.516216993332 0.817843317986 +10 0.514070272446 0.816589236259 +3 0.515601873398 0.812376856804 +SURF 0x10 +mat 7 +refs 4 +11 0.516216993332 0.817843317986 +12 0.512784719467 0.821936428547 +13 0.511190235615 0.820023775101 +10 0.514070272446 0.816589236259 +SURF 0x10 +mat 7 +refs 4 +10 0.514070272446 0.816589236259 +13 0.511190235615 0.820023775101 +14 0.509344220161 0.817814052105 +9 0.511584401131 0.815142512321 +SURF 0x10 +mat 7 +refs 4 +9 0.511584401131 0.815142512321 +14 0.509344220161 0.817814052105 +15 0.507302641869 0.815374553204 +8 0.508835017681 0.813547074795 +SURF 0x10 +mat 7 +refs 4 +8 0.508835017681 0.813547074795 +15 0.507302641869 0.815374553204 +16 0.505127608776 0.812779247761 +7 0.505905628204 0.811851382256 +SURF 0x10 +mat 7 +refs 3 +16 0.505127608776 0.812779247761 +0 0.50288516283 0.810107052326 +7 0.505905628204 0.811851382256 +SURF 0x10 +mat 7 +refs 3 +17 0.504079163074 0.813385009766 +0 0.50288516283 0.810107052326 +16 0.505127608776 0.812779247761 +SURF 0x10 +mat 7 +refs 4 +15 0.507302641869 0.815374553204 +18 0.505237579346 0.816567659378 +17 0.504079163074 0.813385009766 +16 0.505127608776 0.812779247761 +SURF 0x10 +mat 7 +refs 4 +14 0.509344220161 0.817814052105 +19 0.506325304508 0.819558382034 +18 0.505237579346 0.816567659378 +15 0.507302641869 0.815374553204 +SURF 0x10 +mat 7 +refs 4 +13 0.511190235615 0.820023775101 +20 0.507309317589 0.822266161442 +19 0.506325304508 0.819558382034 +14 0.509344220161 0.817814052105 +SURF 0x10 +mat 7 +refs 4 +12 0.512784719467 0.821936428547 +21 0.508159577847 0.8246088624 +20 0.507309317589 0.822266161442 +13 0.511190235615 0.820023775101 +SURF 0x10 +mat 7 +refs 4 +21 0.219247043133 0.600763559341 +22 0.21923071146 0.595421910286 +23 0.221751362085 0.595843911171 +20 0.221765205264 0.600326180458 +SURF 0x10 +mat 7 +refs 4 +20 0.507309317589 0.822266161442 +23 0.502895355225 0.823046028614 +24 0.502891898155 0.820164978504 +19 0.506325304508 0.819558382034 +SURF 0x10 +mat 7 +refs 4 +19 0.506325304508 0.819558382034 +24 0.502891898155 0.820164978504 +25 0.502888977528 0.816982626915 +18 0.505237579346 0.816567659378 +SURF 0x10 +mat 7 +refs 4 +18 0.505237579346 0.816567659378 +25 0.502888977528 0.816982626915 +26 0.502886772156 0.813595712185 +17 0.504079163074 0.813385009766 +SURF 0x10 +mat 7 +refs 3 +26 0.502886772156 0.813595712185 +0 0.50288516283 0.810107052326 +17 0.504079163074 0.813385009766 +SURF 0x10 +mat 7 +refs 3 +27 0.501694202423 0.813385844231 +0 0.50288516283 0.810107052326 +26 0.502886772156 0.813595712185 +SURF 0x10 +mat 7 +refs 4 +25 0.502888977528 0.816982626915 +28 0.500540137291 0.816569328308 +27 0.501694202423 0.813385844231 +26 0.502886772156 0.813595712185 +SURF 0x10 +mat 7 +refs 4 +24 0.502891898155 0.820164978504 +29 0.49945807457 0.819560706615 +28 0.500540137291 0.816569328308 +25 0.502888977528 0.816982626915 +SURF 0x10 +mat 7 +refs 4 +23 0.502895355225 0.823046028614 +30 0.498480916023 0.822269201279 +29 0.49945807457 0.819560706615 +24 0.502891898155 0.820164978504 +SURF 0x10 +mat 7 +refs 4 +22 0.502899289131 0.825538218021 +31 0.497638344765 0.824612438679 +30 0.498480916023 0.822269201279 +23 0.502895355225 0.823046028614 +SURF 0x10 +mat 7 +refs 4 +31 0.497638344765 0.824612438679 +32 0.4930113554 0.821943223476 +33 0.494598388672 0.820029497147 +30 0.498480916023 0.822269201279 +SURF 0x10 +mat 7 +refs 4 +30 0.498480916023 0.822269201279 +33 0.494598388672 0.820029497147 +34 0.496438026428 0.817818522453 +29 0.49945807457 0.819560706615 +SURF 0x10 +mat 7 +refs 4 +29 0.49945807457 0.819560706615 +34 0.496438026428 0.817818522453 +35 0.498474299908 0.81537759304 +28 0.500540137291 0.816569328308 +SURF 0x10 +mat 7 +refs 4 +28 0.500540137291 0.816569328308 +35 0.498474299908 0.81537759304 +36 0.500645279884 0.812780797482 +27 0.501694202423 0.813385844231 +SURF 0x10 +mat 7 +refs 3 +36 0.500645279884 0.812780797482 +0 0.50288516283 0.810107052326 +27 0.501694202423 0.813385844231 +SURF 0x10 +mat 7 +refs 3 +37 0.49986666441 0.811853528023 +0 0.50288516283 0.810107052326 +36 0.500645279884 0.812780797482 +SURF 0x10 +mat 7 +refs 4 +35 0.498474299908 0.81537759304 +38 0.496940642595 0.813551187515 +37 0.49986666441 0.811853528023 +36 0.500645279884 0.812780797482 +SURF 0x10 +mat 7 +refs 4 +34 0.496438026428 0.817818522453 +39 0.494195997715 0.815148532391 +38 0.496940642595 0.813551187515 +35 0.498474299908 0.81537759304 +SURF 0x10 +mat 7 +refs 4 +33 0.494598388672 0.820029497147 +40 0.491716116667 0.816596984863 +39 0.494195997715 0.815148532391 +34 0.496438026428 0.817818522453 +SURF 0x10 +mat 7 +refs 4 +32 0.4930113554 0.821943223476 +41 0.489576339722 0.817852556705 +40 0.491716116667 0.816596984863 +33 0.494598388672 0.820029497147 +SURF 0x10 +mat 7 +refs 4 +41 0.489576339722 0.817852556705 +42 0.48774766922 0.812833666801 +43 0.490181684494 0.812385618687 +40 0.491716116667 0.816596984863 +SURF 0x10 +mat 7 +refs 4 +40 0.491716116667 0.816596984863 +43 0.490181684494 0.812385618687 +44 0.493002384901 0.811872661114 +39 0.494195997715 0.815148532391 +SURF 0x10 +mat 7 +refs 4 +39 0.494195997715 0.815148532391 +44 0.493002384901 0.811872661114 +45 0.496124148369 0.811310350895 +38 0.496940642595 0.813551187515 +SURF 0x10 +mat 7 +refs 4 +38 0.496940642595 0.813551187515 +45 0.496124148369 0.811310350895 +46 0.499452143908 0.810715794563 +37 0.49986666441 0.811853528023 +SURF 0x10 +mat 7 +refs 3 +46 0.499452143908 0.810715794563 +0 0.50288516283 0.810107052326 +37 0.49986666441 0.811853528023 +SURF 0x10 +mat 7 +refs 3 +47 0.499451756477 0.809504985809 +0 0.50288516283 0.810107052326 +46 0.499452143908 0.810715794563 +SURF 0x10 +mat 7 +refs 4 +45 0.496124148369 0.811310350895 +48 0.496123373508 0.808925449848 +47 0.499451756477 0.809504985809 +46 0.499452143908 0.810715794563 +SURF 0x10 +mat 7 +refs 4 +44 0.493002384901 0.811872661114 +49 0.493001252413 0.808386147022 +48 0.496123373508 0.808925449848 +45 0.496124148369 0.811310350895 +SURF 0x10 +mat 7 +refs 4 +43 0.490181684494 0.812385618687 +50 0.490180164576 0.807903468609 +49 0.493001252413 0.808386147022 +44 0.493002384901 0.811872661114 +SURF 0x10 +mat 7 +refs 4 +42 0.48774766922 0.812833666801 +51 0.487745881081 0.807492017746 +50 0.490180164576 0.807903468609 +43 0.490181684494 0.812385618687 +SURF 0x10 +mat 7 +refs 4 +51 0.487745881081 0.807492017746 +52 0.48957118392 0.802471935749 +53 0.491711735725 0.803691089153 +50 0.490180164576 0.807903468609 +SURF 0x10 +mat 7 +refs 4 +50 0.490180164576 0.807903468609 +53 0.491711735725 0.803691089153 +54 0.494192570448 0.805109500885 +49 0.493001252413 0.808386147022 +SURF 0x10 +mat 7 +refs 4 +49 0.493001252413 0.808386147022 +54 0.494192570448 0.805109500885 +55 0.496938318014 0.806684076786 +48 0.496123373508 0.808925449848 +SURF 0x10 +mat 7 +refs 4 +48 0.496123373508 0.808925449848 +55 0.496938318014 0.806684076786 +56 0.499865502119 0.808366954327 +47 0.499451756477 0.809504985809 +SURF 0x10 +mat 7 +refs 3 +56 0.499865502119 0.808366954327 +0 0.50288516283 0.810107052326 +47 0.499451756477 0.809504985809 +SURF 0x10 +mat 7 +refs 3 +57 0.500643491745 0.807439148426 +0 0.50288516283 0.810107052326 +56 0.499865502119 0.808366954327 +SURF 0x10 +mat 7 +refs 4 +55 0.496938318014 0.806684076786 +58 0.498470753431 0.804856657982 +57 0.500643491745 0.807439148426 +56 0.499865502119 0.808366954327 +SURF 0x10 +mat 7 +refs 4 +54 0.494192570448 0.805109500885 +59 0.496432840824 0.802437901497 +58 0.498470753431 0.804856657982 +55 0.496938318014 0.806684076786 +SURF 0x10 +mat 7 +refs 4 +53 0.491711735725 0.803691089153 +60 0.494591742754 0.800256550312 +59 0.496432840824 0.802437901497 +54 0.494192570448 0.805109500885 +SURF 0x10 +mat 7 +refs 4 +52 0.48957118392 0.802471935749 +61 0.49300339818 0.798378765583 +60 0.494591742754 0.800256550312 +53 0.491711735725 0.803691089153 +SURF 0x10 +mat 7 +refs 4 +61 0.49300339818 0.798378765583 +62 0.497628599405 0.795706391335 +63 0.498472779989 0.798014163971 +60 0.494591742754 0.800256550312 +SURF 0x10 +mat 7 +refs 4 +60 0.494591742754 0.800256550312 +63 0.498472779989 0.798014163971 +64 0.499451756477 0.800693631172 +59 0.496432840824 0.802437901497 +SURF 0x10 +mat 7 +refs 4 +59 0.496432840824 0.802437901497 +64 0.499451756477 0.800693631172 +65 0.500535786152 0.803663432598 +58 0.498470753431 0.804856657982 +SURF 0x10 +mat 7 +refs 4 +58 0.498470753431 0.804856657982 +65 0.500535786152 0.803663432598 +66 0.501691997051 0.806833386421 +57 0.500643491745 0.807439148426 +SURF 0x10 +mat 7 +refs 3 +66 0.501691997051 0.806833386421 +0 0.50288516283 0.810107052326 +57 0.500643491745 0.807439148426 +SURF 0x10 +mat 7 +refs 3 +67 0.50288438797 0.806622684002 +0 0.50288516283 0.810107052326 +66 0.501691997051 0.806833386421 +SURF 0x10 +mat 7 +refs 4 +65 0.500535786152 0.803663432598 +68 0.50288438797 0.803248524666 +67 0.50288438797 0.806622684002 +66 0.501691997051 0.806833386421 +SURF 0x10 +mat 7 +refs 4 +64 0.499451756477 0.800693631172 +69 0.502885103226 0.800087034702 +68 0.50288438797 0.803248524666 +65 0.500535786152 0.803663432598 +SURF 0x10 +mat 7 +refs 4 +63 0.498472779989 0.798014163971 +70 0.502886652946 0.797234296799 +69 0.502885103226 0.800087034702 +64 0.499451756477 0.800693631172 +SURF 0x10 +mat 7 +refs 4 +62 0.497628599405 0.795706391335 +71 0.502888858318 0.794776976109 +70 0.502886652946 0.797234296799 +63 0.498472779989 0.798014163971 +SURF 0x10 +mat 7 +refs 4 +71 0.502888858318 0.794776976109 +72 0.508149802685 0.795702755451 +73 0.507301092148 0.798011124134 +70 0.502886652946 0.797234296799 +SURF 0x10 +mat 7 +refs 4 +70 0.502886652946 0.797234296799 +73 0.507301092148 0.798011124134 +74 0.506318986416 0.800691246986 +69 0.502885103226 0.800087034702 +SURF 0x10 +mat 7 +refs 4 +69 0.502885103226 0.800087034702 +74 0.506318986416 0.800691246986 +75 0.505233287811 0.803661823273 +68 0.50288438797 0.803248524666 +SURF 0x10 +mat 7 +refs 4 +68 0.50288438797 0.803248524666 +75 0.505233287811 0.803661823273 +76 0.504076957703 0.806832551956 +67 0.50288438797 0.806622684002 +SURF 0x10 +mat 7 +refs 3 +76 0.504076957703 0.806832551956 +0 0.50288516283 0.810107052326 +67 0.50288438797 0.806622684002 +SURF 0x10 +mat 7 +refs 3 +77 0.505125820637 0.807437598705 +0 0.50288516283 0.810107052326 +76 0.504076957703 0.806832551956 +SURF 0x10 +mat 7 +refs 4 +75 0.505233287811 0.803661823273 +78 0.507299125195 0.80485355854 +77 0.505125820637 0.807437598705 +76 0.504076957703 0.806832551956 +SURF 0x10 +mat 7 +refs 4 +74 0.506318986416 0.800691246986 +79 0.509338974953 0.802433431149 +78 0.507299125195 0.80485355854 +75 0.505233287811 0.803661823273 +SURF 0x10 +mat 7 +refs 4 +73 0.507301092148 0.798011124134 +80 0.511183619499 0.800250828266 +79 0.509338974953 0.802433431149 +74 0.506318986416 0.800691246986 +SURF 0x10 +mat 7 +refs 4 +72 0.508149802685 0.795702755451 +81 0.512776851654 0.798371970654 +80 0.511183619499 0.800250828266 +73 0.507301092148 0.798011124134 +SURF 0x10 +mat 7 +refs 4 +81 0.512776851654 0.798371970654 +82 0.516211807728 0.802462697029 +83 0.514065921307 0.803683340549 +80 0.511183619499 0.800250828266 +SURF 0x10 +mat 7 +refs 4 +80 0.511183619499 0.800250828266 +83 0.514065921307 0.803683340549 +84 0.511581063271 0.805103480816 +79 0.509338974953 0.802433431149 +SURF 0x10 +mat 7 +refs 4 +79 0.509338974953 0.802433431149 +84 0.511581063271 0.805103480816 +85 0.508832752705 0.806679964066 +78 0.507299125195 0.80485355854 +SURF 0x10 +mat 7 +refs 4 +78 0.507299125195 0.80485355854 +85 0.508832752705 0.806679964066 +86 0.505904436111 0.808364868164 +77 0.505125820637 0.807437598705 +SURF 0x10 +mat 7 +refs 3 +86 0.505904436111 0.808364868164 +0 0.50288516283 0.810107052326 +77 0.505125820637 0.807437598705 +SURF 0x10 +mat 7 +refs 3 +1 0.506318986416 0.809502601624 +0 0.50288516283 0.810107052326 +86 0.505904436111 0.808364868164 +SURF 0x10 +mat 7 +refs 4 +85 0.508832752705 0.806679964066 +87 0.509649217129 0.808920800686 +1 0.506318986416 0.809502601624 +86 0.505904436111 0.808364868164 +SURF 0x10 +mat 7 +refs 4 +84 0.511581063271 0.805103480816 +88 0.512774646282 0.808379352093 +87 0.509649217129 0.808920800686 +85 0.508832752705 0.806679964066 +SURF 0x10 +mat 7 +refs 4 +83 0.514065921307 0.803683340549 +89 0.515600383282 0.807894706726 +88 0.512774646282 0.808379352093 +84 0.511581063271 0.805103480816 +SURF 0x10 +mat 7 +refs 4 +82 0.516211807728 0.802462697029 +90 0.518040537834 0.807481586933 +89 0.515600383282 0.807894706726 +83 0.514065921307 0.803683340549 +kids 0 +OBJECT poly +name "Cylinder.023" +data 12 +Cylinder.028 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 37 +0.298353 1.052528 -0.455579 +0.298353 1.027533 -0.473081 +0.298353 0.998059 -0.480978 +0.298353 0.967662 -0.478319 +0.298353 0.940008 -0.465423 +0.298353 0.918432 -0.443847 +0.298353 0.905537 -0.416193 +0.298353 0.902877 -0.385796 +0.298353 0.910775 -0.356323 +0.298353 0.928276 -0.331328 +0.298353 0.953271 -0.313826 +0.298353 0.982745 -0.305929 +0.298353 1.013142 -0.308588 +0.298353 1.040796 -0.321483 +0.298353 1.062372 -0.343059 +0.298353 1.075267 -0.370714 +0.298353 1.077927 -0.401111 +0.298353 1.070029 -0.430584 +0.288844 1.014441 -0.417492 +0.288844 1.004769 -0.424264 +0.288844 0.993365 -0.42732 +0.288844 0.981603 -0.426291 +0.288844 0.970903 -0.421301 +0.288844 0.962554 -0.412953 +0.288844 0.957565 -0.402252 +0.288844 0.956535 -0.39049 +0.288844 0.959591 -0.379086 +0.288844 0.966363 -0.369415 +0.288844 0.976035 -0.362643 +0.288844 0.987439 -0.359587 +0.288844 0.999201 -0.360616 +0.288844 1.009901 -0.365606 +0.288844 1.01825 -0.373954 +0.288844 1.02324 -0.384655 +0.288844 1.024269 -0.396416 +0.288844 1.021213 -0.407821 +0.287261 0.990402 -0.393454 +numsurf 36 +SURF 0x10 +mat 5 +refs 4 +0 0.58516228199 0.908561766148 +1 0.572134196758 0.906264722347 +19 0.58010071516 0.884299457073 +18 0.585141718388 0.885188221931 +SURF 0x10 +mat 5 +refs 4 +1 0.572134196758 0.906264722347 +2 0.560677528381 0.899650275707 +20 0.57566767931 0.881740093231 +19 0.58010071516 0.884299457073 +SURF 0x10 +mat 5 +refs 4 +3 0.552174150944 0.889516294003 +21 0.572377383709 0.877818882465 +20 0.57566767931 0.881740093231 +2 0.560677528381 0.899650275707 +SURF 0x10 +mat 5 +refs 4 +4 0.547649681568 0.877085089684 +22 0.570626735687 0.873008728027 +21 0.572377383709 0.877818882465 +3 0.552174150944 0.889516294003 +SURF 0x10 +mat 5 +refs 4 +4 0.547649681568 0.877085089684 +5 0.547649860382 0.863855957985 +23 0.570626795292 0.867889940739 +22 0.570626735687 0.873008728027 +SURF 0x10 +mat 5 +refs 4 +6 0.552174627781 0.851424574852 +24 0.572377622128 0.863079786301 +23 0.570626795292 0.867889940739 +5 0.547649860382 0.863855957985 +SURF 0x10 +mat 5 +refs 4 +6 0.552174627781 0.851424574852 +7 0.560678243637 0.841290414333 +25 0.575667917728 0.859158456326 +24 0.572377622128 0.863079786301 +SURF 0x10 +mat 5 +refs 4 +7 0.560678243637 0.841290414333 +8 0.572135090828 0.83467566967 +26 0.580101072788 0.856599032879 +25 0.575667917728 0.859158456326 +SURF 0x10 +mat 5 +refs 4 +8 0.572135090828 0.83467566967 +9 0.585163235664 0.832378268242 +27 0.585142076015 0.855710029602 +26 0.580101072788 0.856599032879 +SURF 0x10 +mat 5 +refs 4 +10 0.598191380501 0.834675371647 +28 0.590183138847 0.856598854065 +27 0.585142076015 0.855710029602 +9 0.585163235664 0.832378268242 +SURF 0x10 +mat 5 +refs 4 +10 0.598191380501 0.834675371647 +11 0.609648048878 0.841289699078 +29 0.594616174698 0.859158217907 +28 0.590183138847 0.856598854065 +SURF 0x10 +mat 5 +refs 4 +11 0.609648048878 0.841289699078 +12 0.618151426315 0.851423740387 +30 0.597906470299 0.863079428673 +29 0.594616174698 0.859158217907 +SURF 0x10 +mat 5 +refs 4 +12 0.618151426315 0.851423740387 +13 0.622675895691 0.863854944706 +31 0.59965711832 0.867889523506 +30 0.597906470299 0.863079428673 +SURF 0x10 +mat 5 +refs 4 +13 0.622675895691 0.863854944706 +14 0.622675776482 0.877084076405 +32 0.59965711832 0.873008430004 +31 0.59965711832 0.867889523506 +SURF 0x10 +mat 5 +refs 4 +14 0.622675776482 0.877084076405 +15 0.618150949478 0.889515459538 +33 0.597906291485 0.877818524837 +32 0.59965711832 0.873008430004 +SURF 0x10 +mat 5 +refs 4 +15 0.618150949478 0.889515459538 +16 0.609647333622 0.899649679661 +34 0.594615936279 0.881739854813 +33 0.597906291485 0.877818524837 +SURF 0x10 +mat 5 +refs 4 +16 0.609647333622 0.899649679661 +17 0.598190486431 0.906264305115 +35 0.590182840824 0.884299278259 +34 0.594615936279 0.881739854813 +SURF 0x10 +mat 5 +refs 4 +0 0.58516228199 0.908561766148 +18 0.585141718388 0.885188221931 +35 0.590182840824 0.884299278259 +17 0.598190486431 0.906264305115 +SURF 0x10 +mat 5 +refs 3 +18 0.585141718388 0.885188221931 +19 0.58010071516 0.884299457073 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +19 0.58010071516 0.884299457073 +20 0.57566767931 0.881740093231 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +21 0.572377383709 0.877818882465 +36 0.585138440132 0.870445728302 +20 0.57566767931 0.881740093231 +SURF 0x10 +mat 5 +refs 3 +22 0.570626735687 0.873008728027 +36 0.585138440132 0.870445728302 +21 0.572377383709 0.877818882465 +SURF 0x10 +mat 5 +refs 3 +22 0.570626735687 0.873008728027 +23 0.570626795292 0.867889940739 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +24 0.572377622128 0.863079786301 +36 0.585138440132 0.870445728302 +23 0.570626795292 0.867889940739 +SURF 0x10 +mat 5 +refs 3 +24 0.572377622128 0.863079786301 +25 0.575667917728 0.859158456326 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +25 0.575667917728 0.859158456326 +26 0.580101072788 0.856599032879 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +26 0.580101072788 0.856599032879 +27 0.585142076015 0.855710029602 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +28 0.590183138847 0.856598854065 +36 0.585138440132 0.870445728302 +27 0.585142076015 0.855710029602 +SURF 0x10 +mat 5 +refs 3 +28 0.590183138847 0.856598854065 +29 0.594616174698 0.859158217907 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +29 0.594616174698 0.859158217907 +30 0.597906470299 0.863079428673 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +30 0.597906470299 0.863079428673 +31 0.59965711832 0.867889523506 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +31 0.59965711832 0.867889523506 +32 0.59965711832 0.873008430004 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +32 0.59965711832 0.873008430004 +33 0.597906291485 0.877818524837 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +33 0.597906291485 0.877818524837 +34 0.594615936279 0.881739854813 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +34 0.594615936279 0.881739854813 +35 0.590182840824 0.884299278259 +36 0.585138440132 0.870445728302 +SURF 0x10 +mat 5 +refs 3 +18 0.585141718388 0.885188221931 +36 0.585138440132 0.870445728302 +35 0.590182840824 0.884299278259 +kids 0 +OBJECT poly +name "Cylinder.022" +data 12 +Cylinder.027 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 16 +0.034562 0.471744 0.351337 +0.034562 0.471744 0.420249 +0.042657 0.486104 0.351337 +0.042657 0.486104 0.420249 +0.06086 0.426907 0.351337 +0.06086 0.426907 0.420249 +0.0862 0.427933 0.351337 +0.0862 0.427933 0.420249 +0.162845 0.484811 0.391519 +0.10295 0.446104 0.420249 +0.10295 0.446104 0.351337 +0.162845 0.484811 0.351337 +0.035641 0.457117 0.420249 +0.042478 0.438924 0.420249 +0.042478 0.438924 0.351337 +0.035641 0.457117 0.351337 +numsurf 14 +SURF 0x00 +mat 9 +refs 4 +2 0.826656520367 0.883264660835 +0 0.820405602455 0.88324546814 +1 0.820497334003 0.853368222713 +3 0.82674819231 0.853387475014 +SURF 0x00 +mat 9 +refs 4 +1 0.820497334003 0.853368222713 +0 0.820405602455 0.88324546814 +15 0.814067542553 0.883226037025 +12 0.814159214497 0.853348791599 +SURF 0x00 +mat 9 +refs 4 +8 0.0263667758554 0.878309130669 +11 0.00894541293383 0.87836253643 +2 0.00878565572202 0.826273262501 +3 0.0386628955603 0.826181769371 +SURF 0x00 +mat 9 +refs 4 +0 0.979048788548 0.878257453442 +2 0.985304951668 0.881712973118 +11 0.985196471214 0.933824360371 +15 0.972711384296 0.878780245781 +SURF 0x00 +mat 9 +refs 4 +12 0.845220863819 0.925294041634 +8 0.832661628723 0.980351567268 +3 0.832625091076 0.928217351437 +1 0.838883817196 0.924766361713 +SURF 0x00 +mat 9 +refs 4 +4 0.427987515926 0.901311576366 +6 0.416994035244 0.901277840137 +7 0.417085528374 0.871400654316 +5 0.428079307079 0.87143445015 +SURF 0x00 +mat 9 +refs 4 +13 0.435921996832 0.871458470821 +14 0.435830205679 0.901335656643 +4 0.427987515926 0.901311576366 +5 0.428079307079 0.87143445015 +SURF 0x00 +mat 9 +refs 4 +10 0.683064341545 0.714642286301 +9 0.683155953884 0.684765040874 +7 0.690977096558 0.68478679657 +6 0.690885484219 0.714664041996 +SURF 0x00 +mat 9 +refs 4 +14 0.964849948883 0.881812810898 +10 0.968190133572 0.908002853394 +6 0.960249066353 0.900809288025 +4 0.95970916748 0.889827430248 +SURF 0x00 +mat 9 +refs 4 +9 0.849720001221 0.954520225525 +13 0.853080153465 0.928332686424 +5 0.858214735985 0.936351120472 +7 0.857666492462 0.947332799435 +SURF 0x00 +mat 9 +refs 4 +13 0.853080153465 0.928332686424 +9 0.849720001221 0.954520225525 +8 0.832661628723 0.980351567268 +12 0.845220863819 0.925294041634 +SURF 0x00 +mat 9 +refs 4 +15 0.972711384296 0.878780245781 +11 0.985196471214 0.933824360371 +10 0.968190133572 0.908002853394 +14 0.964849948883 0.881812810898 +SURF 0x00 +mat 9 +refs 4 +11 0.486576706171 0.993955135345 +8 0.486630171537 0.976533830166 +9 0.513031065464 0.964158773422 +10 0.51293951273 0.994036018848 +SURF 0x00 +mat 9 +refs 4 +13 0.806293010712 0.853324651718 +12 0.814159214497 0.853348791599 +15 0.814067542553 0.883226037025 +14 0.806201398373 0.883201897144 +kids 0 +OBJECT poly +name "Cylinder.002" +data 12 +Cylinder.002 +crease 30 +numvert 25 +1.382632 1.375666 0.838501 +1.381655 1.383974 0.858696 +1.381322 1.386808 0.880368 +1.381655 1.383975 0.90204 +1.382632 1.375667 0.922235 +1.384187 1.362451 0.939577 +1.386212 1.345228 0.952884 +1.388572 1.325171 0.96125 +1.391103 1.303648 0.964103 +1.393635 1.282124 0.96125 +1.395994 1.262067 0.952885 +1.398019 1.244844 0.939578 +1.399574 1.231628 0.922236 +1.400551 1.22332 0.902041 +1.400884 1.220487 0.880369 +1.400551 1.22332 0.858697 +1.399574 1.231628 0.838502 +1.398019 1.244844 0.82116 +1.395994 1.262067 0.807853 +1.393635 1.282124 0.799488 +1.391103 1.303648 0.796635 +1.388572 1.325171 0.799488 +1.386212 1.345228 0.807853 +1.384187 1.362451 0.82116 +1.391482 1.303692 0.880369 +numsurf 24 +SURF 0x10 +mat 0 +refs 3 +23 0.0 1.0 +0 0.0 0.0 +24 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +24 0.0 1.0 +0 0.0 0.0 +1 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +1 0.0 1.0 +2 0.0 0.0 +24 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +3 0.0 1.0 +24 0.0 0.0 +2 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +3 0.0 1.0 +4 0.0 0.0 +24 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +5 0.0 1.0 +24 0.0 0.0 +4 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +5 0.0 1.0 +6 0.0 0.0 +24 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +7 0.0 1.0 +24 0.0 0.0 +6 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +8 0.0 1.0 +24 0.0 0.0 +7 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +9 0.0 1.0 +24 0.0 0.0 +8 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +9 0.0 1.0 +10 0.0 0.0 +24 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +11 0.0 1.0 +24 0.0 0.0 +10 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +12 0.0 1.0 +24 0.0 0.0 +11 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +13 0.0 1.0 +24 0.0 0.0 +12 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +14 0.0 1.0 +24 0.0 0.0 +13 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +15 0.0 1.0 +24 0.0 0.0 +14 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +16 0.0 1.0 +24 0.0 0.0 +15 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +17 0.0 1.0 +24 0.0 0.0 +16 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +18 0.0 1.0 +24 0.0 0.0 +17 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +19 0.0 1.0 +24 0.0 0.0 +18 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +20 0.0 1.0 +24 0.0 0.0 +19 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +21 0.0 1.0 +24 0.0 0.0 +20 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +22 0.0 1.0 +24 0.0 0.0 +21 1.0 0.0 +SURF 0x10 +mat 0 +refs 3 +23 0.0 1.0 +24 0.0 0.0 +22 1.0 0.0 +kids 0 +OBJECT poly +name "Cylinder.001" +data 12 +Cylinder.001 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 140 +1.363828 1.363641 0.8176 +1.365975 1.345382 0.803493 +1.368476 1.324119 0.794625 +1.37116 1.301302 0.791601 +1.373844 1.278484 0.794625 +1.376344 1.257222 0.803493 +1.378492 1.238963 0.8176 +1.38014 1.224953 0.835985 +1.381176 1.216145 0.857394 +1.381529 1.213141 0.880369 +1.381176 1.216145 0.903344 +1.38014 1.224953 0.924753 +1.378492 1.238963 0.943137 +1.376344 1.257222 0.957244 +1.373844 1.278484 0.966112 +1.37116 1.301302 0.969137 +1.368476 1.324119 0.966112 +1.365975 1.345382 0.957244 +1.363828 1.363641 0.943137 +1.36218 1.377651 0.924753 +1.361144 1.386458 0.903344 +1.360791 1.389462 0.880369 +1.361144 1.386458 0.857394 +1.36218 1.377651 0.835985 +1.378229 1.365335 0.8176 +1.380377 1.347076 0.803493 +1.382877 1.325813 0.794626 +1.385561 1.302996 0.791601 +1.388245 1.280178 0.794625 +1.390746 1.258916 0.803493 +1.392893 1.240657 0.8176 +1.394541 1.226647 0.835985 +1.395577 1.217839 0.857394 +1.39593 1.214835 0.880369 +1.395577 1.217839 0.903344 +1.394541 1.226647 0.924753 +1.392893 1.240657 0.943138 +1.390746 1.258916 0.957244 +1.388245 1.280178 0.966112 +1.385561 1.302996 0.969137 +1.382877 1.325814 0.966112 +1.380377 1.347076 0.957244 +1.378229 1.365335 0.943137 +1.376581 1.379345 0.924753 +1.375545 1.388152 0.903343 +1.375192 1.391156 0.880368 +1.375545 1.388152 0.857393 +1.376581 1.379345 0.835984 +1.352176 1.321542 0.85805 +1.35294 1.31505 0.853034 +1.353829 1.307489 0.849881 +1.354783 1.299376 0.848805 +1.355738 1.291262 0.849881 +1.356627 1.283702 0.853034 +1.357391 1.27721 0.85805 +1.357976 1.272228 0.864587 +1.358345 1.269096 0.8722 +1.35847 1.268028 0.880369 +1.358345 1.269096 0.888538 +1.357976 1.272228 0.896151 +1.357391 1.27721 0.902688 +1.356627 1.283702 0.907704 +1.355738 1.291262 0.910857 +1.354783 1.299376 0.911933 +1.353829 1.307489 0.910857 +1.35294 1.31505 0.907704 +1.352176 1.321542 0.902688 +1.35159 1.326524 0.896151 +1.351222 1.329655 0.888538 +1.351096 1.330723 0.880369 +1.351222 1.329655 0.8722 +1.35159 1.326524 0.864587 +1.336771 1.30157 0.87295 +1.336564 1.303332 0.874311 +1.337012 1.299518 0.872094 +1.337271 1.297316 0.871802 +1.33753 1.295114 0.872094 +1.337772 1.293062 0.87295 +1.337979 1.2913 0.874311 +1.338138 1.289948 0.876085 +1.338238 1.289098 0.878152 +1.338272 1.288808 0.880369 +1.338238 1.289098 0.882586 +1.338138 1.289948 0.884652 +1.337979 1.2913 0.886427 +1.337772 1.293062 0.887788 +1.33753 1.295114 0.888644 +1.337271 1.297316 0.888936 +1.337012 1.299518 0.888644 +1.336771 1.30157 0.887788 +1.336564 1.303332 0.886427 +1.336405 1.304684 0.884652 +1.336305 1.305534 0.882586 +1.336271 1.305824 0.880369 +1.336305 1.305534 0.878152 +1.336405 1.304684 0.876085 +1.384187 1.362451 0.82116 +1.386212 1.345228 0.807853 +1.388572 1.325171 0.799488 +1.391103 1.303648 0.796635 +1.393635 1.282124 0.799488 +1.395994 1.262067 0.807853 +1.398019 1.244844 0.82116 +1.399574 1.231628 0.838502 +1.400551 1.22332 0.858697 +1.400884 1.220487 0.880369 +1.400551 1.22332 0.902041 +1.399574 1.231628 0.922236 +1.398019 1.244844 0.939578 +1.395994 1.262067 0.952885 +1.393635 1.282124 0.96125 +1.391103 1.303648 0.964103 +1.388572 1.325171 0.96125 +1.386212 1.345228 0.952884 +1.384187 1.362451 0.939577 +1.382632 1.375667 0.922235 +1.381655 1.383975 0.90204 +1.381322 1.386808 0.880368 +1.381655 1.383974 0.858696 +1.382632 1.375666 0.838501 +1.354384 1.299625 0.874752 +1.357015 1.299625 0.880394 +1.355404 1.299625 0.886407 +1.350304 1.299625 0.889977 +1.344103 1.299625 0.889435 +1.339701 1.299625 0.885033 +1.339159 1.299625 0.878832 +1.342729 1.299625 0.873733 +1.348742 1.299625 0.872121 +1.354384 0.935959 0.691005 +1.357015 0.933513 0.696088 +1.355404 0.930905 0.701507 +1.350304 0.929357 0.704724 +1.344103 0.929592 0.704235 +1.339701 0.931501 0.700269 +1.339159 0.93419 0.694681 +1.342729 0.936402 0.690086 +1.348742 0.9371 0.688634 +1.347949 1.299625 0.881187 +1.347949 0.933169 0.696803 +numsurf 145 +SURF 0x10 +mat 9 +refs 4 +0 0.04803404212 0.657527327538 +24 0.0480340272188 0.65792709589 +25 0.0513628423214 0.653618574142 +1 0.0513628572226 0.653218924999 +SURF 0x10 +mat 9 +refs 4 +1 0.0513628572226 0.653218924999 +25 0.0513628423214 0.653618574142 +26 0.053455427289 0.648601233959 +2 0.0534554421902 0.648201525211 +SURF 0x10 +mat 9 +refs 4 +2 0.0534554421902 0.648201525211 +26 0.053455427289 0.648601233959 +27 0.054169178009 0.643216967583 +3 0.054169178009 0.642817258835 +SURF 0x10 +mat 9 +refs 4 +3 0.054169178009 0.642817258835 +27 0.054169178009 0.643216967583 +28 0.0534554421902 0.637832701206 +4 0.0534554421902 0.637432992458 +SURF 0x10 +mat 9 +refs 4 +4 0.0534554421902 0.637432992458 +28 0.0534554421902 0.637832701206 +29 0.0513628721237 0.632815361023 +5 0.0513628572226 0.632415652275 +SURF 0x10 +mat 9 +refs 4 +5 0.0513628572226 0.632415652275 +29 0.0513628721237 0.632815361023 +30 0.04803404212 0.62850689888 +6 0.0480340570211 0.628107130527 +SURF 0x10 +mat 9 +refs 4 +6 0.0480340570211 0.628107130527 +30 0.04803404212 0.62850689888 +31 0.0436958558857 0.625200808048 +7 0.0436958558857 0.624801158905 +SURF 0x10 +mat 9 +refs 4 +7 0.0436958558857 0.624801158905 +31 0.0436958558857 0.625200808048 +32 0.0386439412832 0.623122572899 +8 0.0386439487338 0.622722864151 +SURF 0x10 +mat 9 +refs 4 +8 0.0386439487338 0.622722864151 +32 0.0386439412832 0.623122572899 +33 0.0332225225866 0.622413754463 +9 0.0332225635648 0.622014045715 +SURF 0x10 +mat 9 +refs 4 +9 0.0332225635648 0.622014045715 +33 0.0332225225866 0.622413754463 +34 0.027801156044 0.623122572899 +10 0.0278011802584 0.622722864151 +SURF 0x10 +mat 9 +refs 4 +10 0.0278011802584 0.622722864151 +34 0.027801156044 0.623122572899 +35 0.0227492079139 0.625200867653 +11 0.0227492563426 0.624801158905 +SURF 0x10 +mat 9 +refs 4 +11 0.0227492563426 0.624801158905 +35 0.0227492079139 0.625200867653 +36 0.0184110216796 0.628506958485 +12 0.0184110552073 0.628107130527 +SURF 0x10 +mat 9 +refs 4 +12 0.0184110552073 0.628107130527 +36 0.0184110216796 0.628506958485 +37 0.0150822140276 0.632815361023 +13 0.0150822550058 0.632415652275 +SURF 0x10 +mat 9 +refs 4 +13 0.0150822550058 0.632415652275 +37 0.0150822140276 0.632815361023 +38 0.0129896458238 0.637832760811 +14 0.012989686802 0.637432992458 +SURF 0x10 +mat 9 +refs 4 +14 0.012989686802 0.637432992458 +38 0.0129896458238 0.637832760811 +39 0.0122759323567 0.643217027187 +15 0.0122759323567 0.642817258835 +SURF 0x10 +mat 9 +refs 4 +15 0.0122759323567 0.642817258835 +39 0.0122759323567 0.643217027187 +40 0.012989686802 0.648601353168 +16 0.0129896700382 0.648201525211 +SURF 0x10 +mat 9 +refs 4 +16 0.0129896700382 0.648201525211 +40 0.012989686802 0.648601353168 +41 0.0150822866708 0.653618693352 +17 0.015082238242 0.653218865395 +SURF 0x10 +mat 9 +refs 4 +17 0.015082238242 0.653218865395 +41 0.0150822866708 0.653618693352 +42 0.0184111185372 0.657927155495 +18 0.0184110403061 0.657527327538 +SURF 0x10 +mat 9 +refs 4 +18 0.0184110403061 0.657527327538 +42 0.0184111185372 0.657927155495 +43 0.0227493364364 0.661233127117 +19 0.0227492153645 0.660833418369 +SURF 0x10 +mat 9 +refs 4 +19 0.0227492153645 0.660833418369 +43 0.0227493364364 0.661233127117 +44 0.0278012920171 0.663311362267 +20 0.027801156044 0.662911653519 +SURF 0x10 +mat 9 +refs 4 +20 0.027801156044 0.662911653519 +44 0.0278012920171 0.663311362267 +45 0.0332226753235 0.664020180702 +21 0.0332225225866 0.663620471954 +SURF 0x10 +mat 9 +refs 4 +21 0.0332225225866 0.663620471954 +45 0.0332226753235 0.664020180702 +46 0.0386440753937 0.663311302662 +22 0.0386439152062 0.662911653519 +SURF 0x10 +mat 9 +refs 4 +22 0.0386439152062 0.662911653519 +46 0.0386440753937 0.663311302662 +47 0.0436959862709 0.661233007908 +23 0.0436958558857 0.660833418369 +SURF 0x10 +mat 9 +refs 4 +24 0.0480340272188 0.65792709589 +0 0.04803404212 0.657527327538 +23 0.0436958558857 0.660833418369 +47 0.0436959862709 0.661233007908 +SURF 0x10 +mat 9 +refs 4 +0 0.04803404212 0.657527327538 +1 0.0513628572226 0.653218924999 +49 0.0396727696061 0.646061301231 +48 0.0384891480207 0.647593319416 +SURF 0x10 +mat 9 +refs 4 +1 0.0513628572226 0.653218924999 +2 0.0534554421902 0.648201525211 +50 0.0404168367386 0.644277274609 +49 0.0396727696061 0.646061301231 +SURF 0x10 +mat 9 +refs 4 +2 0.0534554421902 0.648201525211 +3 0.054169178009 0.642817258835 +51 0.0406706370413 0.642362713814 +50 0.0404168367386 0.644277274609 +SURF 0x10 +mat 9 +refs 4 +3 0.054169178009 0.642817258835 +4 0.0534554421902 0.637432992458 +52 0.0404168367386 0.640448272228 +51 0.0406706370413 0.642362713814 +SURF 0x10 +mat 9 +refs 4 +4 0.0534554421902 0.637432992458 +5 0.0513628572226 0.632415652275 +53 0.0396727696061 0.638664186001 +52 0.0404168367386 0.640448272228 +SURF 0x10 +mat 9 +refs 4 +5 0.0513628572226 0.632415652275 +6 0.0480340570211 0.628107130527 +54 0.0384891480207 0.637132227421 +53 0.0396727696061 0.638664186001 +SURF 0x10 +mat 9 +refs 4 +6 0.0480340570211 0.628107130527 +7 0.0436958558857 0.624801158905 +55 0.0369465872645 0.635956645012 +54 0.0384891480207 0.637132227421 +SURF 0x10 +mat 9 +refs 4 +7 0.0436958558857 0.624801158905 +8 0.0386439487338 0.622722864151 +56 0.0351502709091 0.635217666626 +55 0.0369465872645 0.635956645012 +SURF 0x10 +mat 9 +refs 4 +8 0.0386439487338 0.622722864151 +9 0.0332225635648 0.622014045715 +57 0.0332225486636 0.634965658188 +56 0.0351502709091 0.635217666626 +SURF 0x10 +mat 9 +refs 4 +9 0.0332225635648 0.622014045715 +10 0.0278011802584 0.622722864151 +58 0.0312948413193 0.635217666626 +57 0.0332225486636 0.634965658188 +SURF 0x10 +mat 9 +refs 4 +10 0.0278011802584 0.622722864151 +11 0.0227492563426 0.624801158905 +59 0.0294985063374 0.635956645012 +58 0.0312948413193 0.635217666626 +SURF 0x10 +mat 9 +refs 4 +11 0.0227492563426 0.624801158905 +12 0.0184110552073 0.628107130527 +60 0.0279559660703 0.637132227421 +59 0.0294985063374 0.635956645012 +SURF 0x10 +mat 9 +refs 4 +12 0.0184110552073 0.628107130527 +13 0.0150822550058 0.632415652275 +61 0.0267723202705 0.638664186001 +60 0.0279559660703 0.637132227421 +SURF 0x10 +mat 9 +refs 4 +13 0.0150822550058 0.632415652275 +14 0.012989686802 0.637432992458 +62 0.0260282754898 0.640448272228 +61 0.0267723202705 0.638664186001 +SURF 0x10 +mat 9 +refs 4 +14 0.012989686802 0.637432992458 +15 0.0122759323567 0.642817258835 +63 0.0257744751871 0.642362713814 +62 0.0260282754898 0.640448272228 +SURF 0x10 +mat 9 +refs 4 +15 0.0122759323567 0.642817258835 +16 0.0129896700382 0.648201525211 +64 0.0260282512754 0.644277274609 +63 0.0257744751871 0.642362713814 +SURF 0x10 +mat 9 +refs 4 +16 0.0129896700382 0.648201525211 +17 0.015082238242 0.653218865395 +65 0.0267723202705 0.646061301231 +64 0.0260282512754 0.644277274609 +SURF 0x10 +mat 9 +refs 4 +17 0.015082238242 0.653218865395 +18 0.0184110403061 0.657527327538 +66 0.0279559660703 0.647593319416 +65 0.0267723202705 0.646061301231 +SURF 0x10 +mat 9 +refs 4 +18 0.0184110403061 0.657527327538 +19 0.0227492153645 0.660833418369 +67 0.0294985063374 0.64876884222 +66 0.0279559660703 0.647593319416 +SURF 0x10 +mat 9 +refs 4 +19 0.0227492153645 0.660833418369 +20 0.027801156044 0.662911653519 +68 0.0312948413193 0.649507820606 +67 0.0294985063374 0.64876884222 +SURF 0x10 +mat 9 +refs 4 +20 0.027801156044 0.662911653519 +21 0.0332225225866 0.663620471954 +69 0.0332225486636 0.649759829044 +68 0.0312948413193 0.649507820606 +SURF 0x10 +mat 9 +refs 4 +21 0.0332225225866 0.663620471954 +22 0.0386439152062 0.662911653519 +70 0.035150244832 0.649507820606 +69 0.0332225486636 0.649759829044 +SURF 0x10 +mat 9 +refs 4 +22 0.0386439152062 0.662911653519 +23 0.0436958558857 0.660833418369 +71 0.0369465872645 0.64876884222 +70 0.035150244832 0.649507820606 +SURF 0x10 +mat 9 +refs 4 +23 0.0436958558857 0.660833418369 +0 0.04803404212 0.657527327538 +48 0.0384891480207 0.647593319416 +71 0.0369465872645 0.64876884222 +SURF 0x10 +mat 9 +refs 4 +48 0.0384891480207 0.647593319416 +49 0.0396727696061 0.646061301231 +72 0.0349732674658 0.642880558968 +73 0.0346520170569 0.64329636097 +SURF 0x10 +mat 9 +refs 4 +49 0.0396727696061 0.646061301231 +50 0.0404168367386 0.644277274609 +74 0.0351752303541 0.642396330833 +72 0.0349732674658 0.642880558968 +SURF 0x10 +mat 9 +refs 4 +50 0.0404168367386 0.644277274609 +51 0.0406706370413 0.642362713814 +75 0.0352440997958 0.64187669754 +74 0.0351752303541 0.642396330833 +SURF 0x10 +mat 9 +refs 4 +51 0.0406706370413 0.642362713814 +52 0.0404168367386 0.640448272228 +76 0.0351752303541 0.641357123852 +75 0.0352440997958 0.64187669754 +SURF 0x10 +mat 9 +refs 4 +52 0.0404168367386 0.640448272228 +53 0.0396727696061 0.638664186001 +77 0.0349732674658 0.640872895718 +76 0.0351752303541 0.641357123852 +SURF 0x10 +mat 9 +refs 4 +53 0.0396727696061 0.638664186001 +54 0.0384891480207 0.637132227421 +78 0.0346520170569 0.640457093716 +77 0.0349732674658 0.640872895718 +SURF 0x10 +mat 9 +refs 4 +54 0.0384891480207 0.637132227421 +55 0.0369465872645 0.635956645012 +79 0.0342333316803 0.640137970448 +78 0.0346520170569 0.640457093716 +SURF 0x10 +mat 9 +refs 4 +55 0.0369465872645 0.635956645012 +56 0.0351502709091 0.635217666626 +80 0.0337457731366 0.639937400818 +79 0.0342333316803 0.640137970448 +SURF 0x10 +mat 9 +refs 4 +56 0.0351502709091 0.635217666626 +57 0.0332225486636 0.634965658188 +81 0.0332225486636 0.639868974686 +80 0.0337457731366 0.639937400818 +SURF 0x10 +mat 9 +refs 4 +57 0.0332225486636 0.634965658188 +58 0.0312948413193 0.635217666626 +82 0.0326993279159 0.639937400818 +81 0.0332225486636 0.639868974686 +SURF 0x10 +mat 9 +refs 4 +58 0.0312948413193 0.635217666626 +59 0.0294985063374 0.635956645012 +83 0.0322117805481 0.640137970448 +82 0.0326993279159 0.639937400818 +SURF 0x10 +mat 9 +refs 4 +59 0.0294985063374 0.635956645012 +60 0.0279559660703 0.637132227421 +84 0.0317930951715 0.640457093716 +83 0.0322117805481 0.640137970448 +SURF 0x10 +mat 9 +refs 4 +60 0.0279559660703 0.637132227421 +61 0.0267723202705 0.638664186001 +85 0.0314718298614 0.640872895718 +84 0.0317930951715 0.640457093716 +SURF 0x10 +mat 9 +refs 4 +61 0.0267723202705 0.638664186001 +62 0.0260282754898 0.640448272228 +86 0.0312698744237 0.641357064247 +85 0.0314718298614 0.640872895718 +SURF 0x10 +mat 9 +refs 4 +62 0.0260282754898 0.640448272228 +63 0.0257744751871 0.642362713814 +87 0.0312009975314 0.64187669754 +86 0.0312698744237 0.641357064247 +SURF 0x10 +mat 9 +refs 4 +63 0.0257744751871 0.642362713814 +64 0.0260282512754 0.644277274609 +88 0.0312698744237 0.642396330833 +87 0.0312009975314 0.64187669754 +SURF 0x10 +mat 9 +refs 4 +64 0.0260282512754 0.644277274609 +65 0.0267723202705 0.646061301231 +89 0.0314718298614 0.642880558968 +88 0.0312698744237 0.642396330833 +SURF 0x10 +mat 9 +refs 4 +65 0.0267723202705 0.646061301231 +66 0.0279559660703 0.647593319416 +90 0.0317930951715 0.64329636097 +89 0.0314718298614 0.642880558968 +SURF 0x10 +mat 9 +refs 4 +66 0.0279559660703 0.647593319416 +67 0.0294985063374 0.64876884222 +91 0.0322117805481 0.643615424633 +90 0.0317930951715 0.64329636097 +SURF 0x10 +mat 9 +refs 4 +67 0.0294985063374 0.64876884222 +68 0.0312948413193 0.649507820606 +92 0.0326993279159 0.643815994263 +91 0.0322117805481 0.643615424633 +SURF 0x10 +mat 9 +refs 4 +68 0.0312948413193 0.649507820606 +69 0.0332225486636 0.649759829044 +93 0.0332225486636 0.643884420395 +92 0.0326993279159 0.643815994263 +SURF 0x10 +mat 9 +refs 4 +69 0.0332225486636 0.649759829044 +70 0.035150244832 0.649507820606 +94 0.0337457731366 0.643815994263 +93 0.0332225486636 0.643884420395 +SURF 0x10 +mat 9 +refs 4 +70 0.035150244832 0.649507820606 +71 0.0369465872645 0.64876884222 +95 0.0342333316803 0.643615424633 +94 0.0337457731366 0.643815994263 +SURF 0x10 +mat 9 +refs 4 +71 0.0369465872645 0.64876884222 +48 0.0384891480207 0.647593319416 +73 0.0346520170569 0.64329636097 +95 0.0342333316803 0.643615424633 +SURF 0x10 +mat 9 +refs 3 +94 0.0337457731366 0.643815994263 +93 0.0332225486636 0.643884420395 +92 0.0326993279159 0.643815994263 +SURF 0x10 +mat 9 +refs 3 +95 0.0342333316803 0.643615424633 +94 0.0337457731366 0.643815994263 +92 0.0326993279159 0.643815994263 +SURF 0x10 +mat 9 +refs 3 +95 0.0342333316803 0.643615424633 +92 0.0326993279159 0.643815994263 +91 0.0322117805481 0.643615424633 +SURF 0x10 +mat 9 +refs 3 +73 0.0346520170569 0.64329636097 +95 0.0342333316803 0.643615424633 +91 0.0322117805481 0.643615424633 +SURF 0x10 +mat 9 +refs 3 +73 0.0346520170569 0.64329636097 +91 0.0322117805481 0.643615424633 +90 0.0317930951715 0.64329636097 +SURF 0x10 +mat 9 +refs 3 +72 0.0349732674658 0.642880558968 +73 0.0346520170569 0.64329636097 +90 0.0317930951715 0.64329636097 +SURF 0x10 +mat 9 +refs 3 +72 0.0349732674658 0.642880558968 +90 0.0317930951715 0.64329636097 +89 0.0314718298614 0.642880558968 +SURF 0x10 +mat 9 +refs 3 +74 0.0351752303541 0.642396330833 +72 0.0349732674658 0.642880558968 +89 0.0314718298614 0.642880558968 +SURF 0x10 +mat 9 +refs 3 +74 0.0351752303541 0.642396330833 +89 0.0314718298614 0.642880558968 +88 0.0312698744237 0.642396330833 +SURF 0x10 +mat 9 +refs 3 +75 0.0352440997958 0.64187669754 +74 0.0351752303541 0.642396330833 +88 0.0312698744237 0.642396330833 +SURF 0x10 +mat 9 +refs 3 +75 0.0352440997958 0.64187669754 +88 0.0312698744237 0.642396330833 +87 0.0312009975314 0.64187669754 +SURF 0x10 +mat 9 +refs 3 +76 0.0351752303541 0.641357123852 +75 0.0352440997958 0.64187669754 +87 0.0312009975314 0.64187669754 +SURF 0x10 +mat 9 +refs 3 +76 0.0351752303541 0.641357123852 +87 0.0312009975314 0.64187669754 +86 0.0312698744237 0.641357064247 +SURF 0x10 +mat 9 +refs 3 +77 0.0349732674658 0.640872895718 +76 0.0351752303541 0.641357123852 +86 0.0312698744237 0.641357064247 +SURF 0x10 +mat 9 +refs 3 +77 0.0349732674658 0.640872895718 +86 0.0312698744237 0.641357064247 +85 0.0314718298614 0.640872895718 +SURF 0x10 +mat 9 +refs 3 +78 0.0346520170569 0.640457093716 +77 0.0349732674658 0.640872895718 +85 0.0314718298614 0.640872895718 +SURF 0x10 +mat 9 +refs 3 +78 0.0346520170569 0.640457093716 +85 0.0314718298614 0.640872895718 +84 0.0317930951715 0.640457093716 +SURF 0x10 +mat 9 +refs 3 +79 0.0342333316803 0.640137970448 +78 0.0346520170569 0.640457093716 +84 0.0317930951715 0.640457093716 +SURF 0x10 +mat 9 +refs 3 +79 0.0342333316803 0.640137970448 +84 0.0317930951715 0.640457093716 +83 0.0322117805481 0.640137970448 +SURF 0x10 +mat 9 +refs 3 +80 0.0337457731366 0.639937400818 +79 0.0342333316803 0.640137970448 +83 0.0322117805481 0.640137970448 +SURF 0x10 +mat 9 +refs 3 +80 0.0337457731366 0.639937400818 +83 0.0322117805481 0.640137970448 +82 0.0326993279159 0.639937400818 +SURF 0x10 +mat 9 +refs 3 +80 0.0337457731366 0.639937400818 +82 0.0326993279159 0.639937400818 +81 0.0332225486636 0.639868974686 +SURF 0x10 +mat 9 +refs 4 +25 0.0513628423214 0.653618574142 +24 0.0480340272188 0.65792709589 +96 0.0471940636635 0.657246649265 +97 0.0503340959549 0.653182506561 +SURF 0x10 +mat 9 +refs 4 +26 0.053455427289 0.648601233959 +25 0.0513628423214 0.653618574142 +97 0.0503340959549 0.653182506561 +98 0.0523080118001 0.648449718952 +SURF 0x10 +mat 9 +refs 4 +27 0.054169178009 0.643216967583 +26 0.053455427289 0.648601233959 +98 0.0523080118001 0.648449718952 +99 0.0529812723398 0.643370807171 +SURF 0x10 +mat 9 +refs 4 +28 0.0534554421902 0.637832701206 +27 0.054169178009 0.643216967583 +99 0.0529812723398 0.643370807171 +100 0.0523080118001 0.63829189539 +SURF 0x10 +mat 9 +refs 4 +29 0.0513628721237 0.632815361023 +28 0.0534554421902 0.637832701206 +100 0.0523080118001 0.63829189539 +101 0.0503341108561 0.633559048176 +SURF 0x10 +mat 9 +refs 4 +30 0.04803404212 0.62850689888 +29 0.0513628721237 0.632815361023 +101 0.0503341108561 0.633559048176 +102 0.0471940785646 0.629494905472 +SURF 0x10 +mat 9 +refs 4 +31 0.0436958558857 0.625200808048 +30 0.04803404212 0.62850689888 +102 0.0471940785646 0.629494905472 +103 0.0431018956006 0.626376390457 +SURF 0x10 +mat 9 +refs 4 +32 0.0386439412832 0.623122572899 +31 0.0436958558857 0.625200808048 +103 0.0431018956006 0.626376390457 +104 0.0383364744484 0.62441599369 +SURF 0x10 +mat 9 +refs 4 +33 0.0332225225866 0.622413754463 +32 0.0386439412832 0.623122572899 +104 0.0383364744484 0.62441599369 +105 0.0332225225866 0.623747289181 +SURF 0x10 +mat 9 +refs 4 +34 0.027801156044 0.623122572899 +33 0.0332225225866 0.622413754463 +105 0.0332225225866 0.623747289181 +106 0.0281085968018 0.62441599369 +SURF 0x10 +mat 9 +refs 4 +35 0.0227492079139 0.625200867653 +34 0.027801156044 0.623122572899 +106 0.0281085968018 0.62441599369 +107 0.0233431458473 0.626376390457 +SURF 0x10 +mat 9 +refs 4 +36 0.0184110216796 0.628506958485 +35 0.0227492079139 0.625200867653 +107 0.0233431458473 0.626376390457 +108 0.0192510038614 0.629494965076 +SURF 0x10 +mat 9 +refs 4 +37 0.0150822140276 0.632815361023 +36 0.0184110216796 0.628506958485 +108 0.0192510038614 0.629494965076 +109 0.0161109846085 0.63355910778 +SURF 0x10 +mat 9 +refs 4 +38 0.0129896458238 0.637832760811 +37 0.0150822140276 0.632815361023 +109 0.0161109846085 0.63355910778 +110 0.0141370836645 0.63829189539 +SURF 0x10 +mat 9 +refs 4 +39 0.0122759323567 0.643217027187 +38 0.0129896458238 0.637832760811 +110 0.0141370836645 0.63829189539 +111 0.0134638398886 0.643370807171 +SURF 0x10 +mat 9 +refs 4 +40 0.012989686802 0.648601353168 +39 0.0122759323567 0.643217027187 +111 0.0134638398886 0.643370807171 +112 0.0141371171921 0.648449778557 +SURF 0x10 +mat 9 +refs 4 +41 0.0150822866708 0.653618693352 +40 0.012989686802 0.648601353168 +112 0.0141371171921 0.648449778557 +113 0.0161110498011 0.653182566166 +SURF 0x10 +mat 9 +refs 4 +42 0.0184111185372 0.657927155495 +41 0.0150822866708 0.653618693352 +113 0.0161110498011 0.653182566166 +114 0.0192510988563 0.65724670887 +SURF 0x10 +mat 9 +refs 4 +43 0.0227493364364 0.661233127117 +42 0.0184111185372 0.657927155495 +114 0.0192510988563 0.65724670887 +115 0.0233432911336 0.660365283489 +SURF 0x10 +mat 9 +refs 4 +44 0.0278012920171 0.663311362267 +43 0.0227493364364 0.661233127117 +115 0.0233432911336 0.660365283489 +116 0.0281087271869 0.662325620651 +SURF 0x10 +mat 9 +refs 4 +45 0.0332226753235 0.664020180702 +44 0.0278012920171 0.663311362267 +116 0.0281087271869 0.662325620651 +117 0.0332226753235 0.662994205952 +SURF 0x10 +mat 9 +refs 4 +46 0.0386440753937 0.663311302662 +45 0.0332226753235 0.664020180702 +117 0.0332226753235 0.662994205952 +118 0.0383366122842 0.662325501442 +SURF 0x10 +mat 9 +refs 4 +47 0.0436959862709 0.661233007908 +46 0.0386440753937 0.663311302662 +118 0.0383366122842 0.662325501442 +119 0.0431020222604 0.660365104675 +SURF 0x10 +mat 9 +refs 4 +24 0.0480340272188 0.65792709589 +47 0.0436959862709 0.661233007908 +119 0.0431020222604 0.660365104675 +96 0.0471940636635 0.657246649265 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +121 0.25536686182 0.52320677042 +120 0.255427092314 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +129 0.299103438854 0.539383292198 +130 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +122 0.255302667618 0.52320677042 +121 0.25536686182 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +130 0.299103438854 0.539383292198 +131 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +123 0.25526458025 0.52320677042 +122 0.255302667618 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +131 0.299103438854 0.539383292198 +132 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +124 0.2552703619 0.52320677042 +123 0.25526458025 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +132 0.299103438854 0.539383292198 +133 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +125 0.255317360163 0.52320677042 +124 0.2552703619 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +133 0.299103438854 0.539383292198 +134 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +126 0.255383551121 0.52320677042 +125 0.255317360163 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +134 0.299103438854 0.539383292198 +135 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +127 0.255437970161 0.52320677042 +126 0.255383551121 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +135 0.299103438854 0.539383292198 +136 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +128 0.255455195904 0.52320677042 +127 0.255437970161 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +136 0.299103438854 0.539383292198 +137 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 3 +138 0.255358397961 0.52320677042 +120 0.255427092314 0.52320677042 +128 0.255455195904 0.52320677042 +SURF 0x10 +mat 9 +refs 3 +139 0.253864169121 0.494144082069 +137 0.299103438854 0.539383292198 +129 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +120 0.253864169121 0.494144082069 +121 0.253864169121 0.539383292198 +130 0.299103438854 0.539383292198 +129 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +121 0.253864169121 0.494144082069 +122 0.253864169121 0.539383292198 +131 0.299103438854 0.539383292198 +130 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +122 0.253864169121 0.494144082069 +123 0.253864169121 0.539383292198 +132 0.299103438854 0.539383292198 +131 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +123 0.253864169121 0.494144082069 +124 0.253864169121 0.539383292198 +133 0.299103438854 0.539383292198 +132 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +124 0.253864169121 0.494144082069 +125 0.253864169121 0.539383292198 +134 0.299103438854 0.539383292198 +133 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +125 0.253864169121 0.494144082069 +126 0.253864169121 0.539383292198 +135 0.299103438854 0.539383292198 +134 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +126 0.253864169121 0.494144082069 +127 0.253864169121 0.539383292198 +136 0.299103438854 0.539383292198 +135 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +127 0.253864169121 0.494144082069 +128 0.253864169121 0.539383292198 +137 0.299103438854 0.539383292198 +136 0.299103438854 0.494144082069 +SURF 0x10 +mat 9 +refs 4 +128 0.253864169121 0.494144082069 +120 0.253864169121 0.539383292198 +129 0.299103438854 0.539383292198 +137 0.299103438854 0.494144082069 +kids 0 +OBJECT poly +name "Cylinder.007" +data 12 +Cylinder.012 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 94 +3.286846 0.474982 0.330834 +3.295068 0.460742 0.330834 +3.295068 0.444299 0.330834 +3.286846 0.430059 0.330834 +3.272606 0.421837 0.330834 +3.256163 0.421837 0.330834 +3.241923 0.430059 0.330834 +3.233701 0.444299 0.330834 +3.233701 0.460742 0.330834 +3.241923 0.474982 0.330834 +3.256163 0.483204 0.330834 +3.272606 0.483204 0.330834 +3.286846 0.474982 0.448336 +3.295068 0.460742 0.448336 +3.295068 0.444299 0.448336 +3.286846 0.430059 0.448336 +3.272606 0.421837 0.448336 +3.256163 0.421837 0.448336 +3.241923 0.430059 0.448336 +3.233701 0.444299 0.448336 +3.233701 0.460742 0.448336 +3.241923 0.474982 0.448336 +3.256163 0.483204 0.448336 +3.272606 0.483204 0.448336 +3.264385 0.45252 0.330834 +3.264385 0.45252 0.448336 +3.120823 0.410342 0.448336 +3.120832 0.396102 0.448336 +3.120848 0.38788 0.448336 +3.120823 0.410342 0.330834 +3.120832 0.396102 0.330834 +3.120848 0.38788 0.330834 +3.089014 0.380718 0.326269 +3.088997 0.389579 0.326269 +3.088987 0.404925 0.326269 +3.089014 0.380718 0.4529 +3.088997 0.389579 0.4529 +3.088987 0.404925 0.4529 +2.802932 0.365317 0.4529 +2.802942 0.349971 0.4529 +2.802959 0.341111 0.4529 +2.802932 0.365318 0.326269 +2.802942 0.349971 0.326269 +2.802959 0.341111 0.326269 +2.697275 0.36518 0.4529 +2.697265 0.349833 0.4529 +2.697248 0.340973 0.4529 +2.697275 0.36518 0.326269 +2.697265 0.349833 0.326269 +2.697248 0.340973 0.326269 +2.591593 0.341111 0.326269 +2.59161 0.349971 0.326269 +2.59162 0.365318 0.326269 +2.591593 0.341111 0.4529 +2.59161 0.349971 0.4529 +2.59162 0.365317 0.4529 +2.362464 0.371795 0.4529 +2.362454 0.356448 0.4529 +2.362436 0.347588 0.4529 +2.362464 0.371795 0.326269 +2.362454 0.356448 0.326269 +2.362436 0.347588 0.326269 +2.332371 0.351213 0.330833 +2.332387 0.359435 0.330833 +2.332396 0.373675 0.330833 +2.332371 0.351213 0.448335 +2.332387 0.359434 0.448335 +2.332396 0.373675 0.448335 +2.179993 0.393463 0.451628 +2.179993 0.393463 0.32754 +2.174981 0.412168 0.451628 +2.185005 0.412168 0.451628 +2.193686 0.407156 0.451628 +2.198698 0.398475 0.451628 +2.198698 0.38845 0.451628 +2.193686 0.379769 0.451628 +2.185005 0.374757 0.451628 +2.174981 0.374757 0.451628 +2.1663 0.379769 0.451628 +2.161287 0.38845 0.451628 +2.161287 0.398475 0.451628 +2.1663 0.407156 0.451628 +2.174981 0.412168 0.32754 +2.185005 0.412168 0.32754 +2.193686 0.407156 0.32754 +2.198698 0.398475 0.32754 +2.198698 0.38845 0.32754 +2.193686 0.379769 0.32754 +2.185005 0.374757 0.32754 +2.174981 0.374757 0.32754 +2.1663 0.379769 0.32754 +2.161287 0.38845 0.32754 +2.161287 0.398475 0.32754 +2.1663 0.407156 0.32754 +numsurf 116 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +0 0.62592625618 0.491356492043 +1 0.619533956051 0.494512796402 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +13 0.539640903473 0.494513183832 +12 0.53325098753 0.491351991892 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +1 0.619533956051 0.494512796402 +2 0.612419962883 0.494050085545 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +14 0.546755254269 0.494055867195 +13 0.539640903473 0.494513183832 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +2 0.612419962883 0.494050085545 +3 0.606490433216 0.490092307329 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +15 0.552687823772 0.49010258913 +14 0.546755254269 0.494055867195 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +3 0.606490433216 0.490092307329 +4 0.603334128857 0.483700066805 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +16 0.555848896503 0.483712762594 +15 0.552687823772 0.49010258913 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +4 0.603334128857 0.483700066805 +5 0.603796899319 0.47658598423 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +17 0.555391550064 0.476598411798 +16 0.555848896503 0.483712762594 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +5 0.603796899319 0.47658598423 +6 0.607754647732 0.470656454563 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +18 0.551438331604 0.47066578269 +17 0.555391550064 0.476598411798 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +6 0.607754647732 0.470656454563 +7 0.614146947861 0.467500150204 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +19 0.545048415661 0.467504620552 +18 0.551438331604 0.47066578269 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +7 0.614146947861 0.467500150204 +8 0.621261000633 0.467962861061 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +20 0.537934064865 0.467961937189 +19 0.545048415661 0.467504620552 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +8 0.621261000633 0.467962861061 +9 0.6271905303 0.471920639277 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +21 0.532001495361 0.471915215254 +20 0.537934064865 0.467961937189 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +9 0.6271905303 0.471920639277 +10 0.630346775055 0.478312879801 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +22 0.52884042263 0.47830504179 +21 0.532001495361 0.471915215254 +SURF 0x00 +mat 1 +refs 3 +24 0.616840481758 0.481006473303 +10 0.630346775055 0.478312879801 +11 0.629884064198 0.485426962376 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +23 0.529297709465 0.485419392586 +22 0.52884042263 0.47830504179 +SURF 0x00 +mat 1 +refs 3 +11 0.629884064198 0.485426962376 +0 0.62592625618 0.491356492043 +24 0.616840481758 0.481006473303 +SURF 0x00 +mat 1 +refs 3 +25 0.542344629765 0.481008887291 +12 0.53325098753 0.491351991892 +23 0.529297709465 0.485419392586 +SURF 0x00 +mat 1 +refs 4 +0 0.356518447399 0.560970306396 +12 0.356674700975 0.510026395321 +13 0.36287638545 0.510046541691 +1 0.362720131874 0.560990512371 +SURF 0x00 +mat 1 +refs 4 +1 0.362720131874 0.560990512371 +13 0.36287638545 0.510046541691 +14 0.370005220175 0.510068356991 +2 0.369848936796 0.561012327671 +SURF 0x00 +mat 1 +refs 4 +2 0.369848936796 0.561012327671 +14 0.370005220175 0.510068356991 +15 0.376150995493 0.51008605957 +3 0.375994741917 0.561030030251 +SURF 0x00 +mat 1 +refs 4 +3 0.00366543116979 0.00210730475374 +15 0.054609362036 0.00195102090947 +16 0.0546285733581 0.00820852443576 +4 0.00368463201448 0.00836481153965 +SURF 0x00 +mat 1 +refs 4 +4 0.00368463201448 0.00836481153965 +16 0.0546285733581 0.00820852443576 +17 0.054650451988 0.0153354639187 +5 0.00370649434626 0.0154918711632 +SURF 0x00 +mat 1 +refs 4 +7 0.121502280235 0.885451197624 +19 0.121658548713 0.834507286549 +20 0.128787428141 0.834529161453 +8 0.128631129861 0.885473012924 +SURF 0x00 +mat 1 +refs 4 +8 0.128631129861 0.885473012924 +20 0.128787428141 0.834529161453 +21 0.134986698627 0.83454811573 +9 0.134830415249 0.885492086411 +SURF 0x00 +mat 1 +refs 4 +9 0.375994741917 0.564932107925 +21 0.376151025295 0.615876019001 +22 0.369911879301 0.615895152092 +10 0.369755595922 0.564951241016 +SURF 0x00 +mat 1 +refs 4 +10 0.369755595922 0.564951241016 +22 0.369911879301 0.615895152092 +23 0.362784147263 0.615917026997 +11 0.362627744675 0.564973115921 +SURF 0x00 +mat 1 +refs 4 +12 0.356677532196 0.615935742855 +0 0.356521248817 0.564991772175 +11 0.362627744675 0.564973115921 +23 0.362784147263 0.615917026997 +SURF 0x00 +mat 1 +refs 4 +19 0.409247964621 0.451218605042 +7 0.358304023743 0.451062321663 +29 0.358454942703 0.401857435703 +26 0.409398913383 0.402013719082 +SURF 0x00 +mat 1 +refs 4 +5 0.00370649434626 0.0154918711632 +17 0.054650451988 0.0153354639187 +28 0.0548314377666 0.0743383392692 +31 0.00388754485175 0.0744946375489 +SURF 0x00 +mat 1 +refs 4 +18 0.551438331604 0.47066578269 +19 0.545048415661 0.467504620552 +26 0.556600928307 0.417721450329 +27 0.562762379646 0.41732943058 +SURF 0x00 +mat 1 +refs 4 +7 0.614146947861 0.467500150204 +6 0.607754647732 0.470656454563 +30 0.596471071243 0.417311519384 +29 0.602632284164 0.4177082479 +SURF 0x00 +mat 1 +refs 4 +17 0.555391550064 0.476598411798 +18 0.551438331604 0.47066578269 +27 0.562762379646 0.41732943058 +28 0.566320002079 0.417107671499 +SURF 0x00 +mat 1 +refs 4 +6 0.607754647732 0.470656454563 +5 0.603796899319 0.47658598423 +31 0.592913627625 0.417087048292 +30 0.596471071243 0.417311519384 +SURF 0x00 +mat 1 +refs 4 +30 0.596471071243 0.417311519384 +31 0.592913627625 0.417087048292 +32 0.59070622921 0.403108745813 +33 0.594540059566 0.403350651264 +SURF 0x00 +mat 1 +refs 4 +28 0.566320002079 0.417107671499 +27 0.562762379646 0.41732943058 +36 0.56470400095 0.403370022774 +35 0.56853801012 0.403131037951 +SURF 0x00 +mat 1 +refs 4 +29 0.602632284164 0.4177082479 +30 0.596471071243 0.417311519384 +33 0.594540059566 0.403350651264 +34 0.60117995739 0.403778195381 +SURF 0x00 +mat 1 +refs 4 +27 0.562762379646 0.41732943058 +26 0.556600928307 0.417721450329 +37 0.558063805103 0.403792500496 +36 0.56470400095 0.403370022774 +SURF 0x00 +mat 1 +refs 4 +31 0.00388754485175 0.0744946375489 +28 0.0548314377666 0.0743383392692 +35 0.0568530447781 0.0882045254111 +32 0.00195102090947 0.0883729681373 +SURF 0x00 +mat 1 +refs 4 +26 0.409398913383 0.402013719082 +29 0.358454942703 0.401857435703 +34 0.356518357992 0.38800740242 +37 0.411420404911 0.388175815344 +SURF 0x00 +mat 1 +refs 4 +37 0.411420404911 0.388175815344 +34 0.356518357992 0.38800740242 +41 0.356899797916 0.263687610626 +38 0.411801844835 0.263856083155 +SURF 0x00 +mat 1 +refs 4 +32 0.00195102090947 0.0883729681373 +35 0.0568530447781 0.0882045254111 +40 0.0572347231209 0.212602049112 +43 0.00233268435113 0.212770521641 +SURF 0x00 +mat 1 +refs 4 +36 0.56470400095 0.403370022774 +37 0.558063805103 0.403792500496 +38 0.567244291306 0.27892434597 +39 0.573884487152 0.278501868248 +SURF 0x00 +mat 1 +refs 4 +34 0.60117995739 0.403778195381 +33 0.594540059566 0.403350651264 +42 0.585454404354 0.278475552797 +41 0.592094242573 0.278903096914 +SURF 0x00 +mat 1 +refs 4 +35 0.56853801012 0.403131037951 +36 0.56470400095 0.403370022774 +39 0.573884487152 0.278501868248 +40 0.577718496323 0.278262853622 +SURF 0x00 +mat 1 +refs 4 +33 0.594540059566 0.403350651264 +32 0.59070622921 0.403108745813 +43 0.581620514393 0.278233647346 +42 0.585454404354 0.278475552797 +SURF 0x00 +mat 1 +refs 4 +42 0.585454404354 0.278475552797 +43 0.581620514393 0.278233647346 +49 0.584535837173 0.232494428754 +48 0.588368713856 0.232751190662 +SURF 0x00 +mat 1 +refs 4 +40 0.577718496323 0.278262853622 +39 0.573884487152 0.278501868248 +45 0.571004807949 0.232775300741 +46 0.574837863445 0.23252145946 +SURF 0x00 +mat 1 +refs 4 +41 0.592094242573 0.278903096914 +42 0.585454404354 0.278475552797 +48 0.588368713856 0.232751190662 +47 0.595008015633 0.233187362552 +SURF 0x00 +mat 1 +refs 4 +39 0.573884487152 0.278501868248 +38 0.567244291306 0.27892434597 +44 0.564365148544 0.23320646584 +45 0.571004807949 0.232775300741 +SURF 0x00 +mat 1 +refs 4 +43 0.00233268435113 0.212770521641 +40 0.0572347231209 0.212602049112 +46 0.0573750585318 0.258422166109 +49 0.00247308495454 0.258590638638 +SURF 0x00 +mat 1 +refs 4 +38 0.411801844835 0.263856083155 +41 0.356899797916 0.263687610626 +47 0.357040137053 0.217886149883 +44 0.411942183971 0.218054607511 +SURF 0x00 +mat 1 +refs 4 +55 0.412082672119 0.172256186604 +44 0.411942183971 0.218054607511 +47 0.357040137053 0.217886149883 +52 0.357180655003 0.172087714076 +SURF 0x00 +mat 1 +refs 4 +50 0.00261352444068 0.304383695126 +49 0.00247308495454 0.258590638638 +46 0.0573750585318 0.258422166109 +53 0.0575155764818 0.304215192795 +SURF 0x00 +mat 1 +refs 4 +54 0.568006455898 0.187065884471 +45 0.571004807949 0.232775300741 +44 0.564365148544 0.23320646584 +55 0.561366796494 0.187497064471 +SURF 0x00 +mat 1 +refs 4 +52 0.598041057587 0.187480255961 +47 0.595008015633 0.233187362552 +48 0.588368713856 0.232751190662 +51 0.591401815414 0.187044098973 +SURF 0x00 +mat 1 +refs 4 +53 0.571839511395 0.186811953783 +46 0.574837863445 0.23252145946 +45 0.571004807949 0.232775300741 +54 0.568006455898 0.187065884471 +SURF 0x00 +mat 1 +refs 4 +51 0.591401815414 0.187044098973 +48 0.588368713856 0.232751190662 +49 0.584535837173 0.232494428754 +50 0.587568879128 0.186787202954 +SURF 0x00 +mat 1 +refs 4 +60 0.600653171539 0.0880829468369 +51 0.591401815414 0.187044098973 +50 0.587568879128 0.186787202954 +61 0.596820294857 0.0878260731697 +SURF 0x00 +mat 1 +refs 4 +58 0.562663257122 0.0878438279033 +53 0.571839511395 0.186811953783 +54 0.568006455898 0.187065884471 +57 0.558830201626 0.0880977809429 +SURF 0x00 +mat 1 +refs 4 +59 0.607292473316 0.0885190814734 +52 0.598041057587 0.187480255961 +51 0.591401815414 0.187044098973 +60 0.600653171539 0.0880829468369 +SURF 0x00 +mat 1 +refs 4 +57 0.558830201626 0.0880977809429 +54 0.568006455898 0.187065884471 +55 0.561366796494 0.187497064471 +56 0.552190542221 0.0885288789868 +SURF 0x00 +mat 1 +refs 4 +61 0.00291807483882 0.403640449047 +50 0.00261352444068 0.304383695126 +53 0.0575155764818 0.304215192795 +58 0.0578201003373 0.403472065926 +SURF 0x00 +mat 1 +refs 4 +56 0.412387281656 0.0729728788137 +55 0.412082672119 0.172256186604 +52 0.357180655003 0.172087714076 +59 0.35748526454 0.0728044658899 +SURF 0x00 +mat 1 +refs 4 +67 0.410448163748 0.059948284179 +56 0.412387281656 0.0729728788137 +59 0.35748526454 0.0728044658899 +64 0.35950422287 0.0597920417786 +SURF 0x00 +mat 1 +refs 4 +62 0.00493699684739 0.416628152132 +61 0.00291807483882 0.403640449047 +58 0.0578201003373 0.403472065926 +65 0.0558809414506 0.416471838951 +SURF 0x00 +mat 1 +refs 4 +66 0.556696951389 0.0751758739352 +57 0.558830201626 0.0880977809429 +56 0.552190542221 0.0885288789868 +67 0.550535976887 0.0755760446191 +SURF 0x00 +mat 1 +refs 4 +64 0.608956873417 0.0755674913526 +59 0.607292473316 0.0885190814734 +60 0.600653171539 0.0880829468369 +63 0.602796196938 0.0751626938581 +SURF 0x00 +mat 1 +refs 4 +65 0.560253620148 0.0749402493238 +58 0.562663257122 0.0878438279033 +57 0.558830201626 0.0880977809429 +66 0.556696951389 0.0751758739352 +SURF 0x00 +mat 1 +refs 4 +63 0.602796196938 0.0751626938581 +60 0.600653171539 0.0880829468369 +61 0.596820294857 0.0878260731697 +62 0.599239647388 0.0749244317412 +SURF 0x00 +mat 1 +refs 4 +87 0.615493774414 0.0157238282263 +63 0.602796196938 0.0751626938581 +62 0.599239647388 0.0749244317412 +88 0.613569676876 0.0118269789964 +SURF 0x00 +mat 1 +refs 4 +76 0.545971572399 0.0118320956826 +65 0.560253620148 0.0749402493238 +66 0.556696951389 0.0751758739352 +75 0.544044494629 0.0157274454832 +SURF 0x00 +mat 1 +refs 4 +86 0.619108617306 0.0181366633624 +64 0.608956873417 0.0755674913526 +63 0.602796196938 0.0751626938581 +87 0.615493774414 0.0157238282263 +SURF 0x00 +mat 1 +refs 4 +75 0.544044494629 0.0157274454832 +66 0.556696951389 0.0751758739352 +67 0.550535976887 0.0755760446191 +74 0.540427803993 0.0181374903768 +SURF 0x00 +mat 1 +refs 4 +88 0.0037045176141 0.480261355639 +62 0.00493699684739 0.416628152132 +65 0.0558809414506 0.416471838951 +76 0.0575037524104 0.480096280575 +SURF 0x00 +mat 1 +refs 4 +74 0.412053227425 0.00211615255103 +67 0.410448163748 0.059948284179 +64 0.35950422287 0.0597920417786 +86 0.358254045248 0.00195102090947 +SURF 0x00 +mat 1 +refs 4 +82 0.898264944553 0.529810190201 +93 0.902068555355 0.529798567295 +81 0.902233541012 0.583597838879 +70 0.89842993021 0.583609461784 +SURF 0x00 +mat 1 +refs 4 +83 0.893919587135 0.529823541641 +82 0.898264944553 0.529810190201 +70 0.89842993021 0.583609461784 +71 0.894084632397 0.583622813225 +SURF 0x00 +mat 1 +refs 4 +84 0.890196859837 0.529834926128 +83 0.893919587135 0.529823541641 +71 0.894084632397 0.583622813225 +72 0.890361845493 0.583634257317 +SURF 0x00 +mat 1 +refs 4 +85 0.687031269073 0.569324851036 +84 0.690812051296 0.569313883781 +72 0.690977096558 0.623113155365 +73 0.687196314335 0.623124063015 +SURF 0x00 +mat 1 +refs 4 +86 0.682685315609 0.569338202477 +85 0.687031269073 0.569324851036 +73 0.687196314335 0.623124063015 +74 0.68285036087 0.623137414455 +SURF 0x00 +mat 1 +refs 4 +89 0.00371785205789 0.484606146812 +88 0.0037045176141 0.480261355639 +76 0.0575037524104 0.480096280575 +77 0.0575171522796 0.48444122076 +SURF 0x00 +mat 1 +refs 4 +90 0.0037292484194 0.488316714764 +89 0.00371785205789 0.484606146812 +77 0.0575171522796 0.48444122076 +78 0.0575284957886 0.488151818514 +SURF 0x00 +mat 1 +refs 4 +91 0.848256707191 0.472072154284 +90 0.852004885674 0.472060680389 +78 0.85216987133 0.525859951973 +79 0.848421692848 0.525871455669 +SURF 0x00 +mat 1 +refs 4 +92 0.843910694122 0.472085535526 +91 0.848256707191 0.472072154284 +79 0.848421692848 0.525871455669 +80 0.844075739384 0.525884747505 +SURF 0x00 +mat 1 +refs 4 +93 0.840131402016 0.47209712863 +92 0.843910694122 0.472085535526 +80 0.844075739384 0.525884747505 +81 0.840296447277 0.525896370411 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +70 0.529506266117 0.00853519979864 +81 0.531433403492 0.00463984999806 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +93 0.628113210201 0.00464594876394 +82 0.630037426949 0.00854274630547 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +71 0.529785096645 0.0128725031391 +70 0.529506266117 0.00853519979864 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +82 0.630037426949 0.00854274630547 +83 0.629755318165 0.0128797907382 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +72 0.532195150852 0.0164891183376 +71 0.529785096645 0.0128725031391 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +83 0.629755318165 0.0128797907382 +84 0.627342522144 0.0164946485311 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +73 0.536090612411 0.018416274339 +72 0.532195150852 0.0164891183376 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +84 0.627342522144 0.0164946485311 +85 0.623445570469 0.0184187050909 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +74 0.540427803993 0.0181374903768 +73 0.536090612411 0.018416274339 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +85 0.623445570469 0.0184187050909 +86 0.619108617306 0.0181366633624 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +75 0.544044494629 0.0157274454832 +74 0.540427803993 0.0181374903768 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +86 0.619108617306 0.0181366633624 +87 0.615493774414 0.0157238282263 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +76 0.545971572399 0.0118320956826 +75 0.544044494629 0.0157274454832 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +87 0.615493774414 0.0157238282263 +88 0.613569676876 0.0118269789964 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +77 0.545692741871 0.00749479280785 +76 0.545971572399 0.0118320956826 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +88 0.613569676876 0.0118269789964 +89 0.61385178566 0.00748998625204 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +78 0.543282687664 0.00387822883204 +77 0.545692741871 0.00749479280785 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +89 0.61385178566 0.00748998625204 +90 0.616264522076 0.00387512776069 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +79 0.5393871665 0.00195102090947 +78 0.543282687664 0.00387822883204 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +90 0.616264522076 0.00387512776069 +91 0.620161473751 0.00195102090947 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +80 0.535050034523 0.00222985818982 +79 0.5393871665 0.00195102090947 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +91 0.620161473751 0.00195102090947 +92 0.624498426914 0.00223306263797 +SURF 0x00 +mat 1 +refs 3 +68 0.537738919258 0.0101836742833 +81 0.531433403492 0.00463984999806 +80 0.535050034523 0.00222985818982 +SURF 0x00 +mat 1 +refs 3 +69 0.62180352211 0.0101849138737 +92 0.624498426914 0.00223306263797 +93 0.628113210201 0.00464594876394 +kids 0 +OBJECT poly +name "fwheel2.R" +data 10 +Circle.034 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 288 +0.799131 0.727265 -0.639958 +0.708073 0.779837 -0.639958 +0.606512 0.80705 -0.639958 +0.501368 0.80705 -0.639958 +0.399807 0.779837 -0.639958 +0.30875 0.727265 -0.639958 +0.234402 0.652917 -0.639958 +0.18183 0.561859 -0.639958 +0.154617 0.460298 -0.639957 +0.154617 0.355154 -0.639957 +0.18183 0.253593 -0.639957 +0.234402 0.162536 -0.639957 +0.30875 0.088188 -0.639957 +0.399807 0.035616 -0.639957 +0.501369 0.008403 -0.639957 +0.606513 0.008403 -0.639957 +0.708074 0.035616 -0.639957 +0.799131 0.088188 -0.639957 +0.873479 0.162536 -0.639957 +0.926051 0.253593 -0.639957 +0.953264 0.355155 -0.639957 +0.953264 0.460298 -0.639957 +0.926051 0.56186 -0.639958 +0.873479 0.652917 -0.639958 +0.799131 0.727265 -0.708484 +0.757063 0.759545 -0.639957 +0.708073 0.779837 -0.708484 +0.659084 0.800129 -0.639957 +0.606512 0.80705 -0.708484 +0.55394 0.813972 -0.639957 +0.501368 0.80705 -0.708484 +0.448796 0.800129 -0.639957 +0.399807 0.779837 -0.708484 +0.350818 0.759545 -0.639957 +0.30875 0.727265 -0.708484 +0.266682 0.694985 -0.639957 +0.234402 0.652917 -0.708484 +0.202122 0.610849 -0.639957 +0.18183 0.561859 -0.708484 +0.161538 0.51287 -0.639957 +0.154617 0.460298 -0.708484 +0.147695 0.407726 -0.639957 +0.154617 0.355154 -0.708484 +0.161538 0.302582 -0.639957 +0.18183 0.253593 -0.708484 +0.202122 0.204604 -0.639957 +0.234402 0.162536 -0.708484 +0.30875 0.088188 -0.708484 +0.266682 0.120468 -0.639957 +0.350818 0.055908 -0.639957 +0.399807 0.035616 -0.708484 +0.448797 0.015324 -0.639957 +0.501369 0.008403 -0.708484 +0.553941 0.001481 -0.639957 +0.606513 0.008403 -0.708484 +0.708074 0.035616 -0.708484 +0.659084 0.015324 -0.639957 +0.757063 0.055908 -0.639957 +0.799131 0.088188 -0.708484 +0.841199 0.120468 -0.639957 +0.873479 0.162536 -0.708484 +0.905759 0.204604 -0.639957 +0.926051 0.253593 -0.708484 +0.953264 0.355155 -0.708484 +0.946343 0.302583 -0.639957 +0.960185 0.407726 -0.639957 +0.953264 0.460298 -0.708484 +0.926051 0.56186 -0.708484 +0.946343 0.51287 -0.639957 +0.841199 0.694985 -0.639957 +0.873479 0.652917 -0.708484 +0.905759 0.610849 -0.639957 +0.799131 0.727265 -0.571431 +0.708073 0.779837 -0.571431 +0.606512 0.80705 -0.571431 +0.501368 0.80705 -0.571431 +0.399807 0.779837 -0.571431 +0.30875 0.727265 -0.571431 +0.234402 0.652917 -0.571431 +0.18183 0.561859 -0.571431 +0.154617 0.460298 -0.571431 +0.154617 0.355154 -0.571431 +0.18183 0.253593 -0.571431 +0.234402 0.162536 -0.571431 +0.30875 0.088188 -0.571431 +0.399807 0.035616 -0.571431 +0.501369 0.008403 -0.571431 +0.606513 0.008403 -0.571431 +0.708074 0.035616 -0.571431 +0.799131 0.088188 -0.571431 +0.873479 0.162536 -0.571431 +0.926051 0.253593 -0.571431 +0.953264 0.355155 -0.571431 +0.953264 0.460299 -0.571431 +0.926051 0.56186 -0.571431 +0.873479 0.652917 -0.571431 +0.688314 0.640469 -0.538808 +0.623497 0.667317 -0.538808 +0.55394 0.676474 -0.538808 +0.484383 0.667317 -0.538808 +0.419566 0.640469 -0.538808 +0.363907 0.59776 -0.538808 +0.321198 0.5421 -0.538808 +0.29435 0.477284 -0.538808 +0.285192 0.407726 -0.538808 +0.29435 0.338169 -0.538808 +0.321198 0.273353 -0.538808 +0.363907 0.217693 -0.538808 +0.419567 0.174984 -0.538808 +0.484383 0.148136 -0.538808 +0.55394 0.138979 -0.538808 +0.623497 0.148136 -0.538808 +0.688314 0.174984 -0.538808 +0.743974 0.217693 -0.538808 +0.786683 0.273353 -0.538808 +0.813531 0.338169 -0.538808 +0.822688 0.407727 -0.538808 +0.813531 0.477284 -0.538808 +0.743974 0.59776 -0.538808 +0.786683 0.5421 -0.538808 +0.707122 0.673046 -0.538808 +0.633233 0.703652 -0.538808 +0.55394 0.714091 -0.538808 +0.474647 0.703651 -0.538808 +0.400758 0.673046 -0.538808 +0.337308 0.624359 -0.538808 +0.288621 0.560908 -0.538808 +0.258015 0.487019 -0.538808 +0.247576 0.407726 -0.538808 +0.258015 0.328434 -0.538808 +0.288621 0.254544 -0.538808 +0.337308 0.191094 -0.538808 +0.400758 0.142407 -0.538808 +0.474648 0.111801 -0.538808 +0.55394 0.101362 -0.538808 +0.633233 0.111801 -0.538808 +0.707122 0.142407 -0.538808 +0.770573 0.191094 -0.538808 +0.81926 0.254545 -0.538808 +0.849865 0.328434 -0.538808 +0.860304 0.407727 -0.538808 +0.849865 0.487019 -0.538808 +0.770572 0.624359 -0.538808 +0.81926 0.560908 -0.538808 +0.739236 0.728669 -0.563844 +0.649856 0.765691 -0.563844 +0.55394 0.778319 -0.563844 +0.458024 0.765691 -0.563844 +0.368644 0.728669 -0.563844 +0.291892 0.669775 -0.563844 +0.232998 0.593023 -0.563844 +0.195975 0.503643 -0.563844 +0.183348 0.407726 -0.563844 +0.195975 0.31181 -0.563844 +0.232998 0.22243 -0.563844 +0.291892 0.145678 -0.563844 +0.368644 0.086784 -0.563844 +0.458024 0.049762 -0.563844 +0.55394 0.037134 -0.563844 +0.649857 0.049762 -0.563844 +0.739237 0.086784 -0.563844 +0.815989 0.145678 -0.563844 +0.874883 0.22243 -0.563844 +0.911905 0.31181 -0.563844 +0.924533 0.407727 -0.563844 +0.911905 0.503643 -0.563844 +0.874883 0.593023 -0.563844 +0.815989 0.669775 -0.563844 +0.687559 0.639162 -0.720244 +0.623106 0.665859 -0.720244 +0.55394 0.674965 -0.720244 +0.484774 0.665859 -0.720244 +0.420321 0.639162 -0.720244 +0.364974 0.596692 -0.720244 +0.322505 0.541345 -0.720244 +0.295808 0.476893 -0.720244 +0.286702 0.407726 -0.720244 +0.295808 0.33856 -0.720244 +0.322505 0.274107 -0.720244 +0.364974 0.21876 -0.720244 +0.420321 0.176291 -0.720244 +0.484774 0.149594 -0.720244 +0.55394 0.140488 -0.720244 +0.623107 0.149594 -0.720244 +0.687559 0.176291 -0.720244 +0.742906 0.21876 -0.720244 +0.785375 0.274107 -0.720244 +0.812073 0.33856 -0.720244 +0.821179 0.407726 -0.720244 +0.812073 0.476893 -0.720244 +0.742906 0.596692 -0.720244 +0.785375 0.541346 -0.720244 +0.711098 0.679932 -0.732763 +0.635291 0.711332 -0.732763 +0.55394 0.722043 -0.732763 +0.472589 0.711332 -0.732763 +0.396782 0.679932 -0.732763 +0.331685 0.629981 -0.732763 +0.281735 0.564884 -0.732763 +0.250334 0.489077 -0.732763 +0.239624 0.407726 -0.732763 +0.250334 0.326375 -0.732763 +0.281735 0.250568 -0.732763 +0.331685 0.185471 -0.732763 +0.396782 0.135521 -0.732763 +0.47259 0.104121 -0.732763 +0.55394 0.09341 -0.732763 +0.635291 0.104121 -0.732763 +0.711098 0.135521 -0.732763 +0.776195 0.185472 -0.732763 +0.826146 0.250569 -0.732763 +0.857546 0.326376 -0.732763 +0.868256 0.407726 -0.732763 +0.857546 0.489077 -0.732763 +0.776195 0.629981 -0.732763 +0.826146 0.564884 -0.732763 +0.739173 0.72856 -0.711898 +0.649824 0.76557 -0.711898 +0.55394 0.778193 -0.711898 +0.458056 0.765569 -0.711898 +0.368707 0.72856 -0.711898 +0.291981 0.669686 -0.711898 +0.233107 0.592959 -0.711898 +0.196097 0.50361 -0.711898 +0.183474 0.407726 -0.711898 +0.196097 0.311843 -0.711898 +0.233107 0.222493 -0.711898 +0.291981 0.145767 -0.711898 +0.368707 0.086893 -0.711898 +0.458057 0.049883 -0.711898 +0.55394 0.03726 -0.711898 +0.649824 0.049883 -0.711898 +0.739174 0.086893 -0.711898 +0.8159 0.145767 -0.711898 +0.874774 0.222493 -0.711898 +0.911783 0.311843 -0.711898 +0.924407 0.407726 -0.711898 +0.911783 0.50361 -0.711898 +0.874774 0.59296 -0.711898 +0.815899 0.669686 -0.711898 +0.757063 0.759545 -0.691034 +0.659084 0.800129 -0.691034 +0.55394 0.813971 -0.691034 +0.448796 0.800129 -0.691034 +0.350818 0.759545 -0.691034 +0.266682 0.694985 -0.691034 +0.202122 0.610849 -0.691034 +0.161538 0.51287 -0.691034 +0.147695 0.407726 -0.691034 +0.161538 0.302582 -0.691034 +0.202122 0.204604 -0.691034 +0.266682 0.120468 -0.691034 +0.350818 0.055908 -0.691034 +0.448797 0.015324 -0.691034 +0.553941 0.001481 -0.691034 +0.659084 0.015324 -0.691034 +0.757063 0.055908 -0.691034 +0.841199 0.120468 -0.691034 +0.905759 0.204604 -0.691034 +0.946343 0.302583 -0.691034 +0.960185 0.407726 -0.691034 +0.946343 0.51287 -0.691034 +0.905759 0.610849 -0.691034 +0.841199 0.694985 -0.691034 +0.757063 0.759545 -0.588881 +0.659084 0.800129 -0.588881 +0.55394 0.813972 -0.588881 +0.448796 0.800129 -0.588881 +0.350818 0.759545 -0.588881 +0.266682 0.694985 -0.588881 +0.202122 0.610849 -0.588881 +0.161538 0.51287 -0.588881 +0.147695 0.407726 -0.588881 +0.161538 0.302582 -0.588881 +0.202122 0.204604 -0.588881 +0.266682 0.120468 -0.588881 +0.350818 0.055908 -0.588881 +0.448797 0.015324 -0.588881 +0.553941 0.001481 -0.588881 +0.659084 0.015324 -0.588881 +0.757063 0.055908 -0.588881 +0.841199 0.120468 -0.588881 +0.905759 0.204604 -0.588881 +0.946343 0.302583 -0.588881 +0.960185 0.407726 -0.588881 +0.946343 0.51287 -0.588881 +0.905759 0.610849 -0.588881 +0.841199 0.694985 -0.588881 +numsurf 336 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +167 0.174609094858 0.520723462105 +287 0.178452908993 0.524567306042 +SURF 0x10 +mat 10 +refs 3 +264 0.165624529123 0.534410893917 +144 0.162906527519 0.529703140259 +72 0.172038733959 0.529489099979 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +144 0.162906527519 0.529703140259 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +144 0.162906527519 0.529703140259 +264 0.165624529123 0.534410893917 +SURF 0x10 +mat 10 +refs 3 +265 0.150685578585 0.540598809719 +145 0.149278670549 0.535348057747 +73 0.158155053854 0.537504851818 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +145 0.149278670549 0.535348057747 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +145 0.149278670549 0.535348057747 +265 0.150685578585 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +266 0.134654119611 0.542709350586 +146 0.134654119611 0.537273347378 +74 0.142669856548 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +146 0.134654119611 0.537273347378 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +146 0.134654119611 0.537273347378 +266 0.134654119611 0.542709350586 +SURF 0x10 +mat 10 +refs 3 +267 0.118622675538 0.540598809719 +147 0.120029598475 0.535347998142 +75 0.126638397574 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +147 0.120029598475 0.535347998142 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +147 0.120029598475 0.535347998142 +267 0.118622675538 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +268 0.103683710098 0.534410893917 +148 0.106401756406 0.529703140259 +76 0.111153200269 0.537504792213 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +148 0.106401756406 0.529703140259 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +148 0.106401756406 0.529703140259 +268 0.103683710098 0.534410893917 +SURF 0x10 +mat 10 +refs 3 +269 0.0908553749323 0.524567246437 +149 0.0946992188692 0.520723462105 +77 0.0972695350647 0.529489040375 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +149 0.0946992188692 0.520723462105 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +149 0.0946992188692 0.520723462105 +269 0.0908553749323 0.524567246437 +SURF 0x10 +mat 10 +refs 3 +270 0.0810118317604 0.511738836765 +150 0.0857195258141 0.509020864964 +78 0.0859335958958 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +150 0.0857195258141 0.509020864964 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +150 0.0857195258141 0.509020864964 +270 0.0810118317604 0.511738836765 +SURF 0x10 +mat 10 +refs 3 +271 0.0748239308596 0.496799945831 +151 0.0800746977329 0.495393037796 +79 0.0779178887606 0.504269421101 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +151 0.0800746977329 0.495393037796 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +151 0.0800746977329 0.495393037796 +271 0.0748239308596 0.496799945831 +SURF 0x10 +mat 10 +refs 3 +272 0.0727133601904 0.480768471956 +152 0.0781493484974 0.480768471956 +80 0.0737686306238 0.488784253597 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +152 0.0781493484974 0.480768471956 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +152 0.0781493484974 0.480768471956 +272 0.0727133601904 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +273 0.0748239308596 0.464737027884 +153 0.0800746977329 0.466143995523 +81 0.0737686306238 0.47275274992 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +153 0.0800746977329 0.466143995523 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +153 0.0800746977329 0.466143995523 +273 0.0748239308596 0.464737027884 +SURF 0x10 +mat 10 +refs 3 +274 0.0810118466616 0.449798107147 +154 0.0857195854187 0.452516138554 +82 0.0779178887606 0.457267582417 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +154 0.0857195854187 0.452516138554 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +154 0.0857195854187 0.452516138554 +274 0.0810118466616 0.449798107147 +SURF 0x10 +mat 10 +refs 3 +275 0.0908554345369 0.436969727278 +155 0.0946992486715 0.440813541412 +83 0.0859336405993 0.443383902311 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +155 0.0946992486715 0.440813541412 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +155 0.0946992486715 0.440813541412 +275 0.0908554345369 0.436969727278 +SURF 0x10 +mat 10 +refs 3 +276 0.103683769703 0.427126199007 +156 0.106401786208 0.431833893061 +84 0.0972696095705 0.43204793334 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +156 0.106401786208 0.431833893061 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +156 0.106401786208 0.431833893061 +276 0.103683769703 0.427126199007 +SURF 0x10 +mat 10 +refs 3 +277 0.118622720242 0.420938313007 +157 0.120029658079 0.42618906498 +85 0.111153259873 0.424032241106 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +157 0.120029658079 0.42618906498 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +157 0.120029658079 0.42618906498 +277 0.118622720242 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +278 0.134654194117 0.418827682734 +158 0.134654179215 0.424263685942 +86 0.12663847208 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +158 0.134654179215 0.424263685942 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +158 0.134654179215 0.424263685942 +278 0.134654194117 0.418827682734 +SURF 0x10 +mat 10 +refs 3 +279 0.15068565309 0.420938313007 +159 0.149278700352 0.42618906498 +87 0.142669931054 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +159 0.149278700352 0.42618906498 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +159 0.149278700352 0.42618906498 +279 0.15068565309 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +280 0.165624588728 0.427126228809 +160 0.162906616926 0.431833952665 +88 0.15815512836 0.424032270908 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +160 0.162906616926 0.431833952665 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +160 0.162906616926 0.431833952665 +280 0.165624588728 0.427126228809 +SURF 0x10 +mat 10 +refs 3 +281 0.178452938795 0.436969786882 +161 0.17460912466 0.440813601017 +89 0.17203874886 0.432047963142 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +161 0.17460912466 0.440813601017 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +161 0.17460912466 0.440813601017 +281 0.178452938795 0.436969786882 +SURF 0x10 +mat 10 +refs 3 +282 0.188296467066 0.44979813695 +162 0.183588787913 0.452516138554 +90 0.18337470293 0.443383932114 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +162 0.183588787913 0.452516138554 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +162 0.183588787913 0.452516138554 +282 0.188296467066 0.44979813695 +SURF 0x10 +mat 10 +refs 3 +283 0.194484397769 0.464737057686 +163 0.189233630896 0.466143995523 +91 0.191390439868 0.457267612219 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +163 0.189233630896 0.466143995523 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +163 0.189233630896 0.466143995523 +283 0.194484397769 0.464737057686 +SURF 0x10 +mat 10 +refs 3 +284 0.196594953537 0.480768531561 +164 0.191158980131 0.480768531561 +92 0.195539683104 0.472752779722 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +164 0.191158980131 0.480768531561 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +164 0.191158980131 0.480768531561 +284 0.196594953537 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +285 0.194484397769 0.496799975634 +165 0.189233630896 0.495393067598 +93 0.195539683104 0.488784253597 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +165 0.189233630896 0.495393067598 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +165 0.189233630896 0.495393067598 +285 0.194484397769 0.496799975634 +SURF 0x10 +mat 10 +refs 3 +286 0.188296467066 0.51173889637 +166 0.183588787913 0.509020924568 +94 0.191390439868 0.504269480705 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +166 0.183588787913 0.509020924568 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +166 0.183588787913 0.509020924568 +286 0.188296467066 0.51173889637 +SURF 0x10 +mat 10 +refs 3 +287 0.178452908993 0.524567306042 +167 0.174609094858 0.520723462105 +95 0.183374688029 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +167 0.174609094858 0.520723462105 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +216 0.162896901369 0.529686510563 +240 0.165624529123 0.534410893917 +SURF 0x10 +mat 10 +refs 3 +263 0.178452908993 0.524567306042 +239 0.174595504999 0.520709872246 +24 0.172038733959 0.529489099979 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +239 0.174595504999 0.520709872246 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +217 0.149273663759 0.535329461098 +241 0.150685578585 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +240 0.165624529123 0.534410893917 +216 0.162896901369 0.529686510563 +26 0.158155053854 0.537504851818 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +216 0.162896901369 0.529686510563 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +218 0.134654119611 0.537254154682 +242 0.134654119611 0.542709350586 +SURF 0x10 +mat 10 +refs 3 +241 0.150685578585 0.540598809719 +217 0.149273663759 0.535329461098 +28 0.142669856548 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +217 0.149273663759 0.535329461098 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +219 0.120034605265 0.535329401493 +243 0.118622675538 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +242 0.134654119611 0.542709350586 +218 0.134654119611 0.537254154682 +30 0.126638397574 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +218 0.134654119611 0.537254154682 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +220 0.106411337852 0.529686450958 +244 0.103683710098 0.534410834312 +SURF 0x10 +mat 10 +refs 3 +243 0.118622675538 0.540598809719 +219 0.120034605265 0.535329401493 +32 0.111153200269 0.537504792213 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +219 0.120034605265 0.535329401493 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +221 0.0947128087282 0.520709812641 +245 0.0908553749323 0.524567246437 +SURF 0x10 +mat 10 +refs 3 +244 0.103683710098 0.534410834312 +220 0.106411337852 0.529686450958 +34 0.0972695350647 0.529489040375 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +220 0.106411337852 0.529686450958 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +222 0.0857362151146 0.509011268616 +246 0.0810118317604 0.511738836765 +SURF 0x10 +mat 10 +refs 3 +245 0.0908553749323 0.524567246437 +221 0.0947128087282 0.520709812641 +36 0.0859335958958 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +221 0.0947128087282 0.520709812641 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +223 0.0800932794809 0.495388031006 +247 0.0748239308596 0.496799916029 +SURF 0x10 +mat 10 +refs 3 +246 0.0810118317604 0.511738836765 +222 0.0857362151146 0.509011268616 +38 0.0779178887606 0.504269421101 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +222 0.0857362151146 0.509011268616 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +224 0.0781685709953 0.480768471956 +248 0.0727133601904 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +247 0.0748239308596 0.496799916029 +223 0.0800932794809 0.495388031006 +40 0.0737686306238 0.488784193993 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +223 0.0800932794809 0.495388031006 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +225 0.0800932794809 0.466148912907 +249 0.0748239308596 0.464737027884 +SURF 0x10 +mat 10 +refs 3 +248 0.0727133601904 0.480768471956 +224 0.0781685709953 0.480768471956 +42 0.0737686306238 0.47275274992 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +224 0.0781685709953 0.480768471956 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +226 0.0857362300158 0.452525675297 +250 0.0810118466616 0.449798107147 +SURF 0x10 +mat 10 +refs 3 +249 0.0748239308596 0.464737027884 +225 0.0800932794809 0.466148912907 +44 0.0779178887606 0.457267582417 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +225 0.0800932794809 0.466148912907 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +227 0.0947128683329 0.440827161074 +251 0.0908554345369 0.436969727278 +SURF 0x10 +mat 10 +refs 3 +250 0.0810118466616 0.449798107147 +226 0.0857362300158 0.452525675297 +46 0.0859336405993 0.443383902311 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +226 0.0857362300158 0.452525675297 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +228 0.106411382556 0.431850552559 +252 0.103683769703 0.427126199007 +SURF 0x10 +mat 10 +refs 3 +251 0.0908554345369 0.436969727278 +227 0.0947128683329 0.440827161074 +47 0.0972696095705 0.43204793334 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +227 0.0947128683329 0.440827161074 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +229 0.120034620166 0.426207602024 +253 0.118622720242 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +252 0.103683769703 0.427126199007 +228 0.106411382556 0.431850552559 +50 0.111153259873 0.424032241106 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +228 0.106411382556 0.431850552559 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +230 0.134654179215 0.424282938242 +254 0.134654194117 0.418827682734 +SURF 0x10 +mat 10 +refs 3 +253 0.118622720242 0.420938313007 +229 0.120034620166 0.426207602024 +52 0.12663847208 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +229 0.120034620166 0.426207602024 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +231 0.149273738265 0.426207602024 +255 0.15068565309 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +254 0.134654194117 0.418827682734 +230 0.134654179215 0.424282938242 +54 0.142669931054 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +230 0.134654179215 0.424282938242 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +232 0.162896946073 0.431850552559 +256 0.165624588728 0.427126228809 +SURF 0x10 +mat 10 +refs 3 +255 0.15068565309 0.420938313007 +231 0.149273738265 0.426207602024 +55 0.15815512836 0.424032270908 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +231 0.149273738265 0.426207602024 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +233 0.1745955199 0.440827220678 +257 0.178452938795 0.436969786882 +SURF 0x10 +mat 10 +refs 3 +256 0.165624588728 0.427126228809 +232 0.162896946073 0.431850552559 +58 0.17203874886 0.432047963142 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +232 0.162896946073 0.431850552559 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +234 0.183572113514 0.452525734901 +258 0.188296467066 0.44979813695 +SURF 0x10 +mat 10 +refs 3 +257 0.178452938795 0.436969786882 +233 0.1745955199 0.440827220678 +60 0.18337470293 0.443383932114 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +233 0.1745955199 0.440827220678 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +235 0.189215064049 0.466149002314 +259 0.194484397769 0.464737057686 +SURF 0x10 +mat 10 +refs 3 +258 0.188296467066 0.44979813695 +234 0.183572113514 0.452525734901 +62 0.191390439868 0.457267612219 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +234 0.183572113514 0.452525734901 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +236 0.191139742732 0.480768531561 +260 0.196594953537 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +259 0.194484397769 0.464737057686 +235 0.189215064049 0.466149002314 +63 0.195539683104 0.472752779722 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +235 0.189215064049 0.466149002314 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +237 0.189215064049 0.495388060808 +261 0.194484397769 0.496799975634 +SURF 0x10 +mat 10 +refs 3 +260 0.196594953537 0.480768531561 +236 0.191139742732 0.480768531561 +66 0.195539683104 0.488784253597 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +236 0.191139742732 0.480768531561 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +238 0.183572113514 0.50901132822 +262 0.188296467066 0.51173889637 +SURF 0x10 +mat 10 +refs 3 +261 0.194484397769 0.496799975634 +237 0.189215064049 0.495388060808 +67 0.191390439868 0.504269480705 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +237 0.189215064049 0.495388060808 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +239 0.174595504999 0.520709872246 +263 0.178452908993 0.524567306042 +SURF 0x10 +mat 10 +refs 3 +262 0.188296467066 0.51173889637 +238 0.183572113514 0.50901132822 +70 0.183374688029 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +238 0.183572113514 0.50901132822 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +0 0.0154595961794 0.452727437019 +24 0.00655085407197 0.452727437019 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +25 0.0154596110806 0.458196461201 +264 0.022099763155 0.458196461201 +72 0.0243683308363 0.452727437019 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +69 0.0154596073553 0.447258412838 +263 0.00881944410503 0.447258412838 +24 0.00655085407197 0.452727437019 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +0 0.0154595961794 0.452727437019 +72 0.0243683308363 0.452727437019 +287 0.022099763155 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +240 0.00881944410503 0.458196461201 +26 0.00655088014901 0.464565306902 +1 0.0154595961794 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +1 0.0154595961794 0.464565306902 +26 0.00655088014901 0.464565306902 +241 0.00881944410503 0.470934122801 +27 0.0154596110806 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +264 0.022099763155 0.458196461201 +25 0.0154596110806 0.458196461201 +1 0.0154595961794 0.464565306902 +73 0.0243683308363 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +73 0.0243683308363 0.464565306902 +1 0.0154595961794 0.464565306902 +27 0.0154596110806 0.470934122801 +265 0.022099763155 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +27 0.0154596110806 0.470934122801 +241 0.00881944410503 0.470934122801 +28 0.00655088014901 0.477768719196 +2 0.0154595961794 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +2 0.0154595961794 0.477768719196 +28 0.00655088014901 0.477768719196 +242 0.00881944410503 0.484603285789 +29 0.0154596110806 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +265 0.022099763155 0.470934122801 +27 0.0154596110806 0.470934122801 +2 0.0154595961794 0.477768719196 +74 0.0243683308363 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +74 0.0243683308363 0.477768719196 +2 0.0154595961794 0.477768719196 +29 0.0154596110806 0.484603285789 +266 0.022099763155 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +29 0.0154596110806 0.484603285789 +242 0.00881944410503 0.484603285789 +30 0.00655088014901 0.491437911987 +3 0.0154595961794 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +3 0.0154595961794 0.491437911987 +30 0.00655088014901 0.491437911987 +243 0.00881944410503 0.49827247858 +31 0.0154596110806 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +266 0.022099763155 0.484603285789 +29 0.0154596110806 0.484603285789 +3 0.0154595961794 0.491437911987 +75 0.0243683308363 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +75 0.0243683308363 0.491437911987 +3 0.0154595961794 0.491437911987 +31 0.0154596110806 0.49827247858 +267 0.022099763155 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +31 0.0154596110806 0.49827247858 +243 0.00881944410503 0.49827247858 +32 0.00655088014901 0.504641294479 +4 0.0154595961794 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +4 0.0154595961794 0.504641294479 +32 0.00655088014901 0.504641294479 +244 0.00881944410503 0.511010169983 +33 0.0154596110806 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +267 0.022099763155 0.49827247858 +31 0.0154596110806 0.49827247858 +4 0.0154595961794 0.504641294479 +76 0.0243683308363 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +76 0.0243683308363 0.504641294479 +4 0.0154595961794 0.504641294479 +33 0.0154596110806 0.511010169983 +268 0.022099763155 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +33 0.0154596110806 0.511010169983 +244 0.00881944410503 0.511010169983 +34 0.00655085407197 0.516479194164 +5 0.0154595999047 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +5 0.0154595999047 0.516479194164 +34 0.00655085407197 0.516479194164 +245 0.00881944410503 0.521948158741 +35 0.0154596110806 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +268 0.022099763155 0.511010169983 +33 0.0154596110806 0.511010169983 +5 0.0154595999047 0.516479194164 +77 0.0243683308363 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +77 0.0243683308363 0.516479194164 +5 0.0154595999047 0.516479194164 +35 0.0154596110806 0.521948158741 +269 0.022099763155 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +35 0.0154596110806 0.521948158741 +245 0.00881944410503 0.521948158741 +36 0.00655085779727 0.526144683361 +6 0.015459577553 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +6 0.015459577553 0.526144683361 +36 0.00655085779727 0.526144683361 +246 0.0088194347918 0.530341267586 +37 0.0154595999047 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +269 0.022099763155 0.521948158741 +35 0.0154596110806 0.521948158741 +6 0.015459577553 0.526144683361 +78 0.0243683084846 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +78 0.0243683084846 0.526144683361 +6 0.015459577553 0.526144683361 +37 0.0154595999047 0.530341267586 +270 0.022099763155 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +37 0.0154595999047 0.530341267586 +246 0.0088194347918 0.530341267586 +38 0.00655085779727 0.532979309559 +7 0.015459577553 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +7 0.015459577553 0.532979309559 +38 0.00655085779727 0.532979309559 +247 0.0088194347918 0.535617351532 +39 0.0154595999047 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +270 0.022099763155 0.530341267586 +37 0.0154595999047 0.530341267586 +7 0.015459577553 0.532979309559 +79 0.0243683084846 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +79 0.0243683084846 0.532979309559 +7 0.015459577553 0.532979309559 +39 0.0154595999047 0.535617351532 +271 0.022099763155 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +39 0.0154595999047 0.535617351532 +247 0.0088194347918 0.535617351532 +40 0.00655088014901 0.53651714325 +8 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +8 0.0154595999047 0.53651714325 +40 0.00655088014901 0.53651714325 +248 0.0088194552809 0.537416934967 +41 0.0154596222565 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +271 0.022099763155 0.535617351532 +39 0.0154595999047 0.535617351532 +8 0.0154595999047 0.53651714325 +80 0.0243683308363 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +80 0.0243683308363 0.53651714325 +8 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +272 0.022099789232 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +41 0.0154596222565 0.537416934967 +248 0.0088194552809 0.537416934967 +42 0.00655088014901 0.53651714325 +9 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +9 0.0428032502532 0.53651714325 +42 0.0517119690776 0.53651714325 +249 0.0494434013963 0.535617351532 +43 0.0428032390773 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +272 0.022099789232 0.537416934967 +41 0.0154596222565 0.537416934967 +9 0.0154595999047 0.53651714325 +81 0.0243683308363 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +81 0.0338945165277 0.53651714325 +9 0.0428032502532 0.53651714325 +43 0.0428032390773 0.535617351532 +273 0.036163084209 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +43 0.0428032390773 0.535617351532 +249 0.0494434013963 0.535617351532 +44 0.0517119690776 0.532979249954 +10 0.0428032502532 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +10 0.0428032502532 0.532979249954 +44 0.0517119690776 0.532979249954 +250 0.0494434013963 0.530341207981 +45 0.0428032390773 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +273 0.036163084209 0.535617351532 +43 0.0428032390773 0.535617351532 +10 0.0428032502532 0.532979249954 +82 0.0338945165277 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +82 0.0338945165277 0.532979249954 +10 0.0428032502532 0.532979249954 +45 0.0428032390773 0.530341207981 +274 0.036163084209 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +45 0.0428032390773 0.530341207981 +250 0.0494434013963 0.530341207981 +46 0.0517119690776 0.526144683361 +11 0.0428032502532 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +11 0.0428032502532 0.526144683361 +46 0.0517119690776 0.526144683361 +251 0.0494434051216 0.521948158741 +48 0.0428032390773 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +274 0.036163084209 0.530341207981 +45 0.0428032390773 0.530341207981 +11 0.0428032502532 0.526144683361 +83 0.0338945165277 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +83 0.0338945165277 0.526144683361 +11 0.0428032502532 0.526144683361 +48 0.0428032390773 0.521948158741 +275 0.036163084209 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +84 0.0338945165277 0.51647913456 +275 0.036163084209 0.521948158741 +48 0.0428032390773 0.521948158741 +12 0.0428032502532 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +12 0.0428032502532 0.51647913456 +48 0.0428032390773 0.521948158741 +251 0.0494434051216 0.521948158741 +47 0.0517119690776 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +84 0.0338945165277 0.51647913456 +12 0.0428032502532 0.51647913456 +49 0.0428032390773 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +12 0.0428032502532 0.51647913456 +47 0.0517119690776 0.51647913456 +252 0.0494434051216 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +252 0.0494434051216 0.511010050774 +50 0.0517119690776 0.504641294479 +13 0.0428032539785 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +13 0.0428032539785 0.504641294479 +50 0.0517119690776 0.504641294479 +253 0.0494434051216 0.498272418976 +51 0.0428032390773 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +49 0.0428032390773 0.511010050774 +13 0.0428032539785 0.504641294479 +85 0.0338945165277 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +85 0.0338945165277 0.504641294479 +13 0.0428032539785 0.504641294479 +51 0.0428032390773 0.498272418976 +277 0.036163084209 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +51 0.0428032390773 0.498272418976 +253 0.0494434051216 0.498272418976 +52 0.0517119690776 0.491437852383 +14 0.0428032539785 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +14 0.0428032539785 0.491437852383 +52 0.0517119690776 0.491437852383 +254 0.0494434051216 0.484603226185 +53 0.0428032390773 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +277 0.036163084209 0.498272418976 +51 0.0428032390773 0.498272418976 +14 0.0428032539785 0.491437852383 +86 0.0338945165277 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +86 0.0338945165277 0.491437852383 +14 0.0428032539785 0.491437852383 +53 0.0428032390773 0.484603226185 +278 0.036163084209 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +53 0.0428032390773 0.484603226185 +254 0.0494434051216 0.484603226185 +54 0.0517119690776 0.477768689394 +15 0.0428032539785 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +15 0.0428032539785 0.477768689394 +54 0.0517119690776 0.477768689394 +255 0.0494434051216 0.470934063196 +56 0.0428032390773 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +278 0.036163084209 0.484603226185 +53 0.0428032390773 0.484603226185 +15 0.0428032539785 0.477768689394 +87 0.0338945165277 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +87 0.0338945165277 0.477768689394 +15 0.0428032539785 0.477768689394 +56 0.0428032390773 0.470934063196 +279 0.036163084209 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +88 0.0338945165277 0.4645652771 +279 0.036163084209 0.470934063196 +56 0.0428032390773 0.470934063196 +16 0.0428032539785 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +16 0.0428032539785 0.4645652771 +56 0.0428032390773 0.470934063196 +255 0.0494434051216 0.470934063196 +55 0.0517119690776 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +88 0.0338945165277 0.4645652771 +16 0.0428032539785 0.4645652771 +57 0.0428032390773 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +16 0.0428032539785 0.4645652771 +55 0.0517119690776 0.4645652771 +256 0.0494434051216 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +256 0.0494434051216 0.458196431398 +58 0.0517119690776 0.452727407217 +17 0.0428032539785 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +17 0.0428032539785 0.452727407217 +58 0.0517119690776 0.452727407217 +257 0.0494434051216 0.447258353233 +59 0.0428032428026 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +57 0.0428032390773 0.458196431398 +17 0.0428032539785 0.452727407217 +89 0.0338945165277 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +89 0.0338945165277 0.452727407217 +17 0.0428032539785 0.452727407217 +59 0.0428032428026 0.447258353233 +281 0.036163084209 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +59 0.0428032428026 0.447258353233 +257 0.0494434051216 0.447258353233 +60 0.0517119728029 0.443061828613 +18 0.0428032539785 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +18 0.0428032539785 0.443061828613 +60 0.0517119728029 0.443061828613 +258 0.0494434088469 0.438865333796 +61 0.0428032428026 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +281 0.036163084209 0.447258353233 +59 0.0428032428026 0.447258353233 +18 0.0428032539785 0.443061828613 +90 0.0338945239782 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +90 0.0338945239782 0.443061828613 +18 0.0428032539785 0.443061828613 +61 0.0428032428026 0.438865333796 +282 0.0361630916595 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +61 0.0428032428026 0.438865333796 +258 0.0494434088469 0.438865333796 +62 0.0517119728029 0.43622726202 +19 0.0428032539785 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +19 0.0428032539785 0.43622726202 +62 0.0517119728029 0.43622726202 +259 0.0494434088469 0.433589220047 +64 0.0428032428026 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +282 0.0361630916595 0.438865333796 +61 0.0428032428026 0.438865333796 +19 0.0428032539785 0.43622726202 +91 0.0338945239782 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +91 0.0338945239782 0.43622726202 +19 0.0428032539785 0.43622726202 +64 0.0428032428026 0.433589220047 +283 0.0361630916595 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +92 0.0338945239782 0.432689428329 +283 0.0361630916595 0.433589220047 +64 0.0428032428026 0.433589220047 +20 0.0428032539785 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +20 0.0428032539785 0.432689428329 +64 0.0428032428026 0.433589220047 +259 0.0494434088469 0.433589220047 +63 0.0517119728029 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +284 0.0361630693078 0.431789666414 +92 0.0338945239782 0.432689428329 +20 0.0428032539785 0.432689428329 +65 0.0428032316267 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +65 0.0428032316267 0.431789666414 +20 0.0428032539785 0.432689428329 +63 0.0517119728029 0.432689428329 +260 0.049443397671 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +65 0.0154596185312 0.431789666414 +260 0.00881945155561 0.431789666414 +66 0.00655087642372 0.432689428329 +21 0.0154595961794 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +21 0.0154595961794 0.432689428329 +66 0.00655087642372 0.432689428329 +261 0.00881942920387 0.433589220047 +68 0.0154595961794 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +284 0.0220997817814 0.431789666414 +65 0.0154596185312 0.431789666414 +21 0.0154595961794 0.432689428329 +93 0.024368327111 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +93 0.024368327111 0.432689428329 +21 0.0154595961794 0.432689428329 +68 0.0154595961794 0.433589220047 +285 0.0220997594297 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +94 0.0243683047593 0.43622726202 +285 0.0220997594297 0.433589220047 +68 0.0154595961794 0.433589220047 +22 0.0154595738277 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +22 0.0154595738277 0.43622726202 +68 0.0154595961794 0.433589220047 +261 0.00881942920387 0.433589220047 +67 0.00655085407197 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +286 0.0220997594297 0.438865333796 +94 0.0243683047593 0.43622726202 +22 0.0154595738277 0.43622726202 +71 0.0154595961794 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +71 0.0154595961794 0.438865333796 +22 0.0154595738277 0.43622726202 +67 0.00655085407197 0.43622726202 +262 0.00881942920387 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +95 0.0243683047593 0.443061858416 +286 0.0220997594297 0.438865333796 +71 0.0154595961794 0.438865333796 +23 0.0154595738277 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +23 0.0154595738277 0.443061858416 +71 0.0154595961794 0.438865333796 +262 0.00881942920387 0.438865333796 +70 0.00655085407197 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +287 0.022099763155 0.447258412838 +95 0.0243683047593 0.443061858416 +23 0.0154595738277 0.443061858416 +69 0.0154596073553 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +23 0.0154595738277 0.443061858416 +70 0.00655085407197 0.443061858416 +263 0.00881944410503 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +142 0.167684406042 0.513798773289 +120 0.158010050654 0.521222114563 +96 0.155142366886 0.516255199909 +118 0.163628861308 0.509743213654 +SURF 0x10 +mat 10 +refs 4 +121 0.146744042635 0.525888681412 +97 0.145259618759 0.520348727703 +96 0.155142366886 0.516255199909 +120 0.158010050654 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +122 0.134654119611 0.527480363846 +98 0.134654119611 0.521744906902 +97 0.145259618759 0.520348727703 +121 0.146744042635 0.525888681412 +SURF 0x10 +mat 10 +refs 4 +123 0.122564211488 0.525888621807 +99 0.124048650265 0.520348727703 +98 0.134654119611 0.521744906902 +122 0.134654119611 0.527480363846 +SURF 0x10 +mat 10 +refs 4 +124 0.111298218369 0.521222114563 +100 0.114165946841 0.516255140305 +99 0.124048650265 0.520348727703 +123 0.122564211488 0.525888621807 +SURF 0x10 +mat 10 +refs 4 +125 0.101623922586 0.513798773289 +101 0.105679437518 0.509743213654 +100 0.114165946841 0.516255140305 +124 0.111298218369 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +126 0.0942005366087 0.504124403 +102 0.0991675406694 0.50125670433 +101 0.105679437518 0.509743213654 +125 0.101623922586 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +127 0.0895339995623 0.492858439684 +103 0.0950739830732 0.491373956203 +102 0.0991675406694 0.50125670433 +126 0.0942005366087 0.504124403 +SURF 0x10 +mat 10 +refs 4 +128 0.0879423320293 0.480768471956 +104 0.0936777442694 0.480768471956 +103 0.0950739830732 0.491373956203 +127 0.0895339995623 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +129 0.0895340144634 0.468678593636 +105 0.0950739979744 0.470163017511 +104 0.0936777442694 0.480768471956 +128 0.0879423320293 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +130 0.0942005366087 0.457412600517 +106 0.0991675704718 0.460280328989 +105 0.0950739979744 0.470163017511 +129 0.0895340144634 0.468678593636 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +107 0.105679482222 0.451793789864 +106 0.0991675704718 0.460280328989 +130 0.0942005366087 0.457412600517 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +132 0.111298263073 0.440314859152 +108 0.114166006446 0.445281893015 +107 0.105679482222 0.451793789864 +SURF 0x10 +mat 10 +refs 4 +133 0.12256424129 0.435648351908 +109 0.124048694968 0.441188365221 +108 0.114166006446 0.445281893015 +132 0.111298263073 0.440314859152 +SURF 0x10 +mat 10 +refs 4 +134 0.134654179215 0.434056699276 +110 0.134654179215 0.439792096615 +109 0.124048694968 0.441188365221 +133 0.12256424129 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +111 0.145259648561 0.441188365221 +110 0.134654179215 0.439792096615 +134 0.134654179215 0.434056699276 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +136 0.158010080457 0.440314888954 +112 0.155142381787 0.445281893015 +111 0.145259648561 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +137 0.167684406042 0.447738260031 +113 0.163628861308 0.451793819666 +112 0.155142381787 0.445281893015 +136 0.158010080457 0.440314888954 +SURF 0x10 +mat 10 +refs 4 +138 0.17510779202 0.45741263032 +114 0.17014080286 0.460280328989 +113 0.163628861308 0.451793819666 +137 0.167684406042 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +115 0.174234315753 0.470163047314 +114 0.17014080286 0.460280328989 +138 0.17510779202 0.45741263032 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +140 0.181365996599 0.480768531561 +116 0.175630584359 0.480768531561 +115 0.174234315753 0.470163047314 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +117 0.174234315753 0.491374015808 +116 0.175630584359 0.480768531561 +140 0.181365996599 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +143 0.17510779202 0.504124403 +119 0.17014080286 0.501256763935 +117 0.174234315753 0.491374015808 +SURF 0x10 +mat 10 +refs 4 +143 0.17510779202 0.504124403 +142 0.167684406042 0.513798773289 +118 0.163628861308 0.509743213654 +119 0.17014080286 0.501256763935 +SURF 0x10 +mat 10 +refs 4 +167 0.174609094858 0.520723462105 +144 0.162906527519 0.529703140259 +120 0.158010050654 0.521222114563 +142 0.167684406042 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +145 0.149278670549 0.535348057747 +121 0.146744042635 0.525888681412 +120 0.158010050654 0.521222114563 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +146 0.134654119611 0.537273347378 +122 0.134654119611 0.527480363846 +121 0.146744042635 0.525888681412 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 4 +147 0.120029598475 0.535347998142 +123 0.122564211488 0.525888621807 +122 0.134654119611 0.527480363846 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 4 +148 0.106401756406 0.529703140259 +124 0.111298218369 0.521222114563 +123 0.122564211488 0.525888621807 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 4 +149 0.0946992188692 0.520723462105 +125 0.101623922586 0.513798773289 +124 0.111298218369 0.521222114563 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +150 0.0857195258141 0.509020864964 +126 0.0942005366087 0.504124403 +125 0.101623922586 0.513798773289 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 4 +151 0.0800746977329 0.495393037796 +127 0.0895339995623 0.492858439684 +126 0.0942005366087 0.504124403 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 4 +152 0.0781493484974 0.480768471956 +128 0.0879423320293 0.480768471956 +127 0.0895339995623 0.492858439684 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 4 +153 0.0800746977329 0.466143995523 +129 0.0895340144634 0.468678593636 +128 0.0879423320293 0.480768471956 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +154 0.0857195854187 0.452516138554 +130 0.0942005366087 0.457412600517 +129 0.0895340144634 0.468678593636 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +131 0.101623937488 0.447738260031 +130 0.0942005366087 0.457412600517 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +156 0.106401786208 0.431833893061 +132 0.111298263073 0.440314859152 +131 0.101623937488 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +157 0.120029658079 0.42618906498 +133 0.12256424129 0.435648351908 +132 0.111298263073 0.440314859152 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 4 +158 0.134654179215 0.424263685942 +134 0.134654179215 0.434056699276 +133 0.12256424129 0.435648351908 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +135 0.146744087338 0.435648351908 +134 0.134654179215 0.434056699276 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +160 0.162906616926 0.431833952665 +136 0.158010080457 0.440314888954 +135 0.146744087338 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +161 0.17460912466 0.440813601017 +137 0.167684406042 0.447738260031 +136 0.158010080457 0.440314888954 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 4 +162 0.183588787913 0.452516138554 +138 0.17510779202 0.45741263032 +137 0.167684406042 0.447738260031 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +139 0.179774314165 0.468678623438 +138 0.17510779202 0.45741263032 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +164 0.191158980131 0.480768531561 +140 0.181365996599 0.480768531561 +139 0.179774314165 0.468678623438 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +141 0.179774314165 0.492858439684 +140 0.181365996599 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +166 0.183588787913 0.509020924568 +143 0.17510779202 0.504124403 +141 0.179774314165 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +166 0.183588787913 0.509020924568 +167 0.174609094858 0.520723462105 +142 0.167684406042 0.513798773289 +143 0.17510779202 0.504124403 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +214 0.16854172945 0.514656126499 +190 0.163466095924 0.509580433369 +168 0.155027270317 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +168 0.155027270317 0.516055822372 +169 0.145200058818 0.520126402378 +193 0.147057831287 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +193 0.147057831287 0.527059793472 +169 0.145200058818 0.520126402378 +170 0.134654119611 0.521514713764 +194 0.134654119611 0.528692781925 +SURF 0x10 +mat 10 +refs 4 +194 0.134654119611 0.528692781925 +170 0.134654119611 0.521514713764 +171 0.124108210206 0.520126402378 +195 0.122250407934 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +195 0.122250407934 0.527059793472 +171 0.124108210206 0.520126402378 +172 0.114281013608 0.516055822372 +196 0.11069200933 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +196 0.11069200933 0.52227216959 +172 0.114281013608 0.516055822372 +173 0.105842202902 0.509580433369 +197 0.100766569376 0.514656066895 +SURF 0x10 +mat 10 +refs 4 +197 0.100766569376 0.514656066895 +173 0.105842202902 0.509580433369 +174 0.0993668884039 0.501141607761 +198 0.0931505560875 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +198 0.0931505560875 0.504730641842 +174 0.0993668884039 0.501141607761 +175 0.0952962934971 0.491314411163 +199 0.0883629024029 0.493172168732 +SURF 0x10 +mat 10 +refs 4 +199 0.0883629024029 0.493172168732 +175 0.0952962934971 0.491314411163 +176 0.093907892704 0.480768471956 +200 0.0867298841476 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +200 0.0867298841476 0.480768471956 +176 0.093907892704 0.480768471956 +177 0.0952963232994 0.470222562551 +201 0.0883629024029 0.468364775181 +SURF 0x10 +mat 10 +refs 4 +201 0.0883629024029 0.468364775181 +177 0.0952963232994 0.470222562551 +178 0.0993668884039 0.460395395756 +202 0.0931505560875 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +202 0.0931505560875 0.456806391478 +178 0.0993668884039 0.460395395756 +179 0.105842217803 0.451956540346 +203 0.100766628981 0.446880936623 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +203 0.100766628981 0.446880936623 +179 0.105842217803 0.451956540346 +180 0.114281058311 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +180 0.114281058311 0.445481210947 +181 0.124108269811 0.441410690546 +205 0.122250497341 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +205 0.122250497341 0.434477210045 +181 0.124108269811 0.441410690546 +182 0.134654179215 0.440022289753 +206 0.134654179215 0.432844251394 +SURF 0x10 +mat 10 +refs 4 +206 0.134654179215 0.432844251394 +182 0.134654179215 0.440022289753 +183 0.145200103521 0.441410690546 +207 0.147057905793 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +207 0.147057905793 0.434477210045 +183 0.145200103521 0.441410690546 +184 0.155027285218 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +184 0.155027285218 0.445481210947 +185 0.163466125727 0.451956599951 +209 0.168541744351 0.446880996227 +SURF 0x10 +mat 10 +refs 4 +209 0.168541744351 0.446880996227 +185 0.163466125727 0.451956599951 +186 0.169941455126 0.460395395756 +210 0.176157802343 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +210 0.176157802343 0.456806391478 +186 0.169941455126 0.460395395756 +187 0.174012005329 0.470222622156 +211 0.180945426226 0.468364834785 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +211 0.180945426226 0.468364834785 +187 0.174012005329 0.470222622156 +188 0.175400406122 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +188 0.175400406122 0.480768531561 +189 0.174012005329 0.491314411163 +213 0.180945426226 0.493172228336 +SURF 0x10 +mat 10 +refs 4 +215 0.176157772541 0.504730641842 +213 0.180945426226 0.493172228336 +189 0.174012005329 0.491314411163 +191 0.169941455126 0.501141607761 +SURF 0x10 +mat 10 +refs 4 +214 0.16854172945 0.514656126499 +215 0.176157772541 0.504730641842 +191 0.169941455126 0.501141607761 +190 0.163466095924 0.509580433369 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +239 0.174595504999 0.520709872246 +214 0.16854172945 0.514656126499 +192 0.158616274595 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +192 0.158616274595 0.52227216959 +193 0.147057831287 0.527059793472 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 4 +217 0.149273663759 0.535329461098 +193 0.147057831287 0.527059793472 +194 0.134654119611 0.528692781925 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 4 +218 0.134654119611 0.537254154682 +194 0.134654119611 0.528692781925 +195 0.122250407934 0.527059793472 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 4 +219 0.120034605265 0.535329401493 +195 0.122250407934 0.527059793472 +196 0.11069200933 0.52227216959 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 4 +220 0.106411337852 0.529686450958 +196 0.11069200933 0.52227216959 +197 0.100766569376 0.514656066895 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 4 +221 0.0947128087282 0.520709812641 +197 0.100766569376 0.514656066895 +198 0.0931505560875 0.504730641842 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 4 +222 0.0857362151146 0.509011268616 +198 0.0931505560875 0.504730641842 +199 0.0883629024029 0.493172168732 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 4 +223 0.0800932794809 0.495388031006 +199 0.0883629024029 0.493172168732 +200 0.0867298841476 0.480768471956 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +224 0.0781685709953 0.480768471956 +200 0.0867298841476 0.480768471956 +201 0.0883629024029 0.468364775181 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 4 +225 0.0800932794809 0.466148912907 +201 0.0883629024029 0.468364775181 +202 0.0931505560875 0.456806391478 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 4 +226 0.0857362300158 0.452525675297 +202 0.0931505560875 0.456806391478 +203 0.100766628981 0.446880936623 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +227 0.0947128683329 0.440827161074 +203 0.100766628981 0.446880936623 +204 0.110692054033 0.439264863729 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +204 0.110692054033 0.439264863729 +205 0.122250497341 0.434477210045 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +229 0.120034620166 0.426207602024 +205 0.122250497341 0.434477210045 +206 0.134654179215 0.432844251394 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 4 +230 0.134654179215 0.424282938242 +206 0.134654179215 0.432844251394 +207 0.147057905793 0.434477210045 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +231 0.149273738265 0.426207602024 +207 0.147057905793 0.434477210045 +208 0.158616304398 0.439264893532 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +208 0.158616304398 0.439264893532 +209 0.168541744351 0.446880996227 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 4 +233 0.1745955199 0.440827220678 +209 0.168541744351 0.446880996227 +210 0.176157802343 0.456806391478 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 4 +234 0.183572113514 0.452525734901 +210 0.176157802343 0.456806391478 +211 0.180945426226 0.468364834785 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +235 0.189215064049 0.466149002314 +211 0.180945426226 0.468364834785 +212 0.182578399777 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +212 0.182578399777 0.480768531561 +213 0.180945426226 0.493172228336 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 4 +238 0.183572113514 0.50901132822 +237 0.189215064049 0.495388060808 +213 0.180945426226 0.493172228336 +215 0.176157772541 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +239 0.174595504999 0.520709872246 +238 0.183572113514 0.50901132822 +215 0.176157772541 0.504730641842 +214 0.16854172945 0.514656126499 +kids 0 +OBJECT poly +name "Cylinder.005" +data 12 +Cylinder.006 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 94 +0.020054 0.416424 0.448335 +0.011832 0.402183 0.448335 +0.011832 0.38574 0.448335 +0.020054 0.3715 0.448335 +0.034294 0.363279 0.448335 +0.050737 0.363279 0.448335 +0.064977 0.3715 0.448335 +0.073199 0.38574 0.448335 +0.073199 0.402183 0.448335 +0.064977 0.416424 0.448335 +0.050737 0.424645 0.448335 +0.034294 0.424645 0.448335 +0.020054 0.416424 0.330833 +0.011832 0.402183 0.330833 +0.011832 0.38574 0.330833 +0.020054 0.3715 0.330833 +0.034294 0.363279 0.330833 +0.050737 0.363279 0.330833 +0.064977 0.3715 0.330833 +0.073199 0.38574 0.330833 +0.073199 0.402183 0.330833 +0.064977 0.416423 0.330833 +0.050737 0.424645 0.330833 +0.034294 0.424645 0.330833 +0.042515 0.393962 0.448335 +0.042515 0.393962 0.330833 +0.208992 0.362477 0.330833 +0.208982 0.348236 0.330833 +0.208966 0.340015 0.330833 +0.208992 0.362477 0.448335 +0.208982 0.348236 0.448335 +0.208966 0.340015 0.448335 +0.2408 0.332853 0.4529 +0.240817 0.341714 0.4529 +0.240827 0.35706 0.4529 +0.2408 0.332853 0.326269 +0.240817 0.341714 0.326269 +0.240827 0.35706 0.326269 +0.44541 0.340876 0.326269 +0.4454 0.32553 0.326269 +0.445383 0.316669 0.326269 +0.44541 0.340876 0.4529 +0.4454 0.32553 0.4529 +0.445383 0.316669 0.4529 +0.551066 0.336495 0.326269 +0.551076 0.321149 0.326269 +0.551094 0.312288 0.326269 +0.551066 0.336495 0.452901 +0.551076 0.321149 0.452901 +0.551094 0.312288 0.452901 +0.656749 0.316669 0.452901 +0.656731 0.32553 0.452901 +0.656721 0.340876 0.452901 +0.656749 0.316669 0.326269 +0.656731 0.32553 0.326269 +0.656721 0.340876 0.326269 +0.885878 0.371795 0.326269 +0.885888 0.356448 0.326269 +0.885905 0.347588 0.326269 +0.885878 0.371795 0.452901 +0.885888 0.356448 0.452901 +0.885905 0.347588 0.452901 +0.915971 0.351213 0.448336 +0.915955 0.359435 0.448336 +0.915945 0.373675 0.448336 +0.915971 0.351213 0.330834 +0.915955 0.359435 0.330834 +0.915945 0.373675 0.330834 +1.068349 0.393463 0.327541 +1.068349 0.393463 0.451629 +1.073361 0.412168 0.327541 +1.063336 0.412168 0.327541 +1.054655 0.407156 0.327541 +1.049643 0.398475 0.327541 +1.049643 0.38845 0.327541 +1.054655 0.379769 0.327541 +1.063336 0.374757 0.327541 +1.073361 0.374757 0.327541 +1.082042 0.379769 0.327541 +1.087054 0.388451 0.327541 +1.087054 0.398475 0.327541 +1.082042 0.407156 0.327541 +1.073361 0.412168 0.451629 +1.063336 0.412168 0.451629 +1.054655 0.407156 0.451629 +1.049643 0.398475 0.451629 +1.049643 0.38845 0.451629 +1.054655 0.379769 0.451629 +1.063336 0.374757 0.451629 +1.073361 0.374757 0.451629 +1.082042 0.379769 0.451629 +1.087054 0.38845 0.451629 +1.087054 0.398475 0.451629 +1.082042 0.407156 0.451629 +numsurf 116 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +0 0.860131502151 0.00543796038255 +1 0.866349577904 0.00195102090947 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +13 0.842433214188 0.00195102090947 +12 0.848648548126 0.00544292246923 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +1 0.866349577904 0.00195102090947 +2 0.873478055 0.00204012473114 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +14 0.835304677486 0.0020347496029 +13 0.842433214188 0.00195102090947 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +2 0.873478055 0.00204012473114 +3 0.879606962204 0.00568160088733 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +15 0.82917290926 0.0056716776453 +14 0.835304677486 0.0020347496029 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +3 0.879606962204 0.00568160088733 +4 0.883093953133 0.0118995439261 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +16 0.825681269169 0.0118868295103 +15 0.82917290926 0.0056716776453 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +4 0.883093953133 0.0118995439261 +5 0.883004844189 0.0190279595554 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +17 0.82576495409 0.0190154518932 +16 0.825681269169 0.0118868295103 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +5 0.883004844189 0.0190279595554 +6 0.879363298416 0.0251570064574 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +18 0.829401671886 0.0251471865922 +17 0.82576495409 0.0190154518932 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +6 0.879363298416 0.0251570064574 +7 0.873145401478 0.0286441519856 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +19 0.835617005825 0.028638985008 +18 0.829401671886 0.0251471865922 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +7 0.873145401478 0.0286441519856 +8 0.866016924381 0.0285549461842 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +20 0.842745602131 0.0285551529378 +19 0.835617005825 0.028638985008 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +8 0.866016924381 0.0285549461842 +9 0.859888017178 0.0249134693295 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +21 0.848877251148 0.0249184314162 +20 0.842745602131 0.0285551529378 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +9 0.859888017178 0.0249134693295 +10 0.85640090704 0.0186954233795 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +22 0.852369129658 0.0187028646469 +21 0.848877251148 0.0249184314162 +SURF 0x00 +mat 1 +refs 3 +24 0.869747459888 0.0152974836528 +10 0.85640090704 0.0186954233795 +11 0.856490075588 0.0115668000653 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +23 0.852285325527 0.0115744490176 +22 0.852369129658 0.0187028646469 +SURF 0x00 +mat 1 +refs 3 +11 0.856490075588 0.0115668000653 +0 0.860131502151 0.00543796038255 +24 0.869747459888 0.0152974836528 +SURF 0x00 +mat 1 +refs 3 +25 0.839025139809 0.0152948992327 +12 0.848648548126 0.00544292246923 +23 0.852285325527 0.0115744490176 +SURF 0x00 +mat 1 +refs 4 +0 0.435921996832 0.45518040657 +12 0.435765713453 0.506124317646 +13 0.429566413164 0.506105303764 +1 0.429722696543 0.455161362886 +SURF 0x00 +mat 1 +refs 4 +1 0.429722696543 0.455161362886 +13 0.429566413164 0.506105303764 +14 0.42243757844 0.50608342886 +2 0.422593832016 0.455139517784 +SURF 0x00 +mat 1 +refs 4 +2 0.422593832016 0.455139517784 +14 0.42243757844 0.50608342886 +15 0.416289329529 0.506064593792 +3 0.416445583105 0.455120623112 +SURF 0x00 +mat 1 +refs 4 +3 0.350929617882 0.462343037128 +15 0.299985706806 0.462499350309 +16 0.299967050552 0.456412374973 +4 0.350911021233 0.456256061792 +SURF 0x00 +mat 1 +refs 4 +4 0.350911021233 0.456256061792 +16 0.299967050552 0.456412374973 +17 0.299945175648 0.449285507202 +5 0.350889205933 0.449129402637 +SURF 0x00 +mat 1 +refs 4 +7 0.422591507435 0.867498636246 +19 0.422435224056 0.816554665565 +20 0.429564028978 0.816532790661 +8 0.429720312357 0.867476701736 +SURF 0x00 +mat 1 +refs 4 +8 0.429720312357 0.867476701736 +20 0.429564028978 0.816532790661 +21 0.435765713453 0.816514909267 +9 0.435922026634 0.867458820343 +SURF 0x00 +mat 1 +refs 4 +9 0.416448652744 0.67084145546 +21 0.416292369366 0.619897544384 +22 0.422398775816 0.619878768921 +10 0.422554969788 0.670822739601 +SURF 0x00 +mat 1 +refs 4 +10 0.422554969788 0.670822739601 +22 0.422398775816 0.619878768921 +23 0.429526776075 0.619856894016 +11 0.429682970047 0.670800864697 +SURF 0x00 +mat 1 +refs 4 +12 0.43576580286 0.61983782053 +0 0.435921996832 0.670781731606 +11 0.429682970047 0.670800864697 +23 0.429526776075 0.619856894016 +SURF 0x00 +mat 1 +refs 4 +19 0.68993639946 0.00195102090947 +7 0.740880250931 0.00210721115582 +29 0.740700244904 0.0607833713293 +26 0.689756274223 0.0606270805001 +SURF 0x00 +mat 1 +refs 4 +5 0.350889205933 0.449129402637 +17 0.299945175648 0.449285507202 +28 0.299735546112 0.380945384502 +31 0.35067948699 0.380788773298 +SURF 0x00 +mat 1 +refs 4 +18 0.829401671886 0.0251471865922 +19 0.835617005825 0.028638985008 +26 0.826222956181 0.087627530098 +27 0.820049345493 0.0876961648464 +SURF 0x00 +mat 1 +refs 4 +7 0.873145401478 0.0286441519856 +6 0.879363298416 0.0251570064574 +30 0.888668358326 0.0877130106091 +29 0.882494807243 0.0876399278641 +SURF 0x00 +mat 1 +refs 4 +17 0.82576495409 0.0190154518932 +18 0.829401671886 0.0251471865922 +27 0.820049345493 0.0876961648464 +28 0.816484928131 0.0877309963107 +SURF 0x00 +mat 1 +refs 4 +6 0.879363298416 0.0251570064574 +5 0.883004844189 0.0190279595554 +31 0.892232596874 0.0877505391836 +30 0.888668358326 0.0877130106091 +SURF 0x00 +mat 1 +refs 4 +30 0.888668358326 0.0877130106091 +31 0.892232596874 0.0877505391836 +32 0.895170092583 0.101586446166 +33 0.891328752041 0.101546235383 +SURF 0x00 +mat 1 +refs 4 +28 0.816484928131 0.0877309963107 +27 0.820049345493 0.0876961648464 +36 0.817378401756 0.101527221501 +35 0.813537120819 0.101564846933 +SURF 0x00 +mat 1 +refs 4 +29 0.882494807243 0.0876399278641 +30 0.888668358326 0.0877130106091 +33 0.891328752041 0.101546235383 +34 0.884675621986 0.101467266679 +SURF 0x00 +mat 1 +refs 4 +27 0.820049345493 0.0876961648464 +26 0.826222956181 0.087627530098 +37 0.824031591415 0.101453416049 +36 0.817378401756 0.101527221501 +SURF 0x00 +mat 1 +refs 4 +31 0.35067948699 0.380788773298 +28 0.299735546112 0.380945384502 +35 0.297714322805 0.367227613926 +32 0.352616339922 0.367059350014 +SURF 0x00 +mat 1 +refs 4 +26 0.689756274223 0.0606270805001 +29 0.740700244904 0.0607833713293 +34 0.74263715744 0.0745460018516 +37 0.687735140324 0.0743777155876 +SURF 0x00 +mat 1 +refs 4 +37 0.687735140324 0.0743777155876 +34 0.74263715744 0.0745460018516 +41 0.742365300655 0.163098737597 +38 0.687463462353 0.162930354476 +SURF 0x00 +mat 1 +refs 4 +32 0.352616339922 0.367059350014 +35 0.297714322805 0.367227613926 +40 0.29744297266 0.278722733259 +43 0.352345049381 0.278554558754 +SURF 0x00 +mat 1 +refs 4 +36 0.817378401756 0.101527221501 +37 0.824031591415 0.101453416049 +38 0.818057000637 0.190228402615 +39 0.811403810978 0.190302103758 +SURF 0x00 +mat 1 +refs 4 +34 0.884675621986 0.101467266679 +33 0.891328752041 0.101546235383 +42 0.89723610878 0.190325766802 +41 0.890582919121 0.190246805549 +SURF 0x00 +mat 1 +refs 4 +35 0.813537120819 0.101564846933 +36 0.817378401756 0.101527221501 +39 0.811403810978 0.190302103758 +40 0.807562410831 0.190339833498 +SURF 0x00 +mat 1 +refs 4 +33 0.891328752041 0.101546235383 +32 0.895170092583 0.101586446166 +43 0.901077389717 0.190366193652 +42 0.89723610878 0.190325766802 +SURF 0x00 +mat 1 +refs 4 +42 0.89723610878 0.190325766802 +43 0.901077389717 0.190366193652 +49 0.902403593063 0.236218526959 +48 0.898562550545 0.236162811518 +SURF 0x00 +mat 1 +refs 4 +40 0.807562410831 0.190339833498 +39 0.811403810978 0.190302103758 +45 0.810042500496 0.236138507724 +46 0.806201279163 0.236191123724 +SURF 0x00 +mat 1 +refs 4 +41 0.890582919121 0.190246805549 +42 0.89723610878 0.190325766802 +48 0.898562550545 0.236162811518 +47 0.8919095397 0.236075147986 +SURF 0x00 +mat 1 +refs 4 +39 0.811403810978 0.190302103758 +38 0.818057000637 0.190228402615 +44 0.816695570946 0.23605582118 +45 0.810042500496 0.236138507724 +SURF 0x00 +mat 1 +refs 4 +43 0.352345049381 0.278554558754 +40 0.29744297266 0.278722733259 +46 0.297302603722 0.232949584723 +49 0.352204620838 0.232781201601 +SURF 0x00 +mat 1 +refs 4 +38 0.687463462353 0.162930354476 +41 0.742365300655 0.163098737597 +47 0.742225170135 0.208863824606 +44 0.687323153019 0.20869512856 +SURF 0x00 +mat 1 +refs 4 +55 0.687182605267 0.254530191422 +44 0.687323153019 0.20869512856 +47 0.742225170135 0.208863824606 +52 0.742084562778 0.254698395729 +SURF 0x00 +mat 1 +refs 4 +50 0.352064102888 0.186941474676 +49 0.352204620838 0.232781201601 +46 0.297302603722 0.232949584723 +53 0.297162026167 0.187109664083 +SURF 0x00 +mat 1 +refs 4 +54 0.812479615211 0.281920462847 +45 0.810042500496 0.236138507724 +44 0.816695570946 0.23605582118 +55 0.819132804871 0.281837970018 +SURF 0x00 +mat 1 +refs 4 +52 0.889437615871 0.281855642796 +47 0.8919095397 0.236075147986 +48 0.898562550545 0.236162811518 +51 0.896090626717 0.281943202019 +SURF 0x00 +mat 1 +refs 4 +53 0.808638513088 0.281973272562 +46 0.806201279163 0.236191123724 +45 0.810042500496 0.236138507724 +54 0.812479615211 0.281920462847 +SURF 0x00 +mat 1 +refs 4 +51 0.896090626717 0.281943202019 +48 0.898562550545 0.236162811518 +49 0.902403593063 0.236218526959 +50 0.89993172884 0.281998604536 +SURF 0x00 +mat 1 +refs 4 +60 0.881444633007 0.381120711565 +51 0.896090626717 0.281943202019 +50 0.89993172884 0.281998604536 +61 0.885285615921 0.381176322699 +SURF 0x00 +mat 1 +refs 4 +58 0.823209345341 0.38116183877 +53 0.808638513088 0.281973272562 +54 0.812479615211 0.281920462847 +57 0.827050387859 0.381109118462 +SURF 0x00 +mat 1 +refs 4 +59 0.874791562557 0.381033241749 +52 0.889437615871 0.281855642796 +51 0.896090626717 0.281943202019 +60 0.881444633007 0.381120711565 +SURF 0x00 +mat 1 +refs 4 +57 0.827050387859 0.381109118462 +54 0.812479615211 0.281920462847 +55 0.819132804871 0.281837970018 +56 0.833703517914 0.381026625633 +SURF 0x00 +mat 1 +refs 4 +61 0.351758211851 0.0872962325811 +50 0.352064102888 0.186941474676 +53 0.297162026167 0.187109664083 +58 0.296856313944 0.0874644070864 +SURF 0x00 +mat 1 +refs 4 +56 0.686877131462 0.354115188122 +55 0.687182605267 0.254530191422 +52 0.742084562778 0.254698395729 +59 0.741779029369 0.35428377986 +SURF 0x00 +mat 1 +refs 4 +67 0.688816070557 0.367169946432 +56 0.686877131462 0.354115188122 +59 0.741779029369 0.35428377986 +64 0.739759981632 0.367326229811 +SURF 0x00 +mat 1 +refs 4 +62 0.349739164114 0.0742333084345 +61 0.351758211851 0.0872962325811 +58 0.296856313944 0.0874644070864 +65 0.298795223236 0.0743894949555 +SURF 0x00 +mat 1 +refs 4 +66 0.82850331068 0.394132554531 +57 0.827050387859 0.381109118462 +56 0.833703517914 0.381026625633 +67 0.834676682949 0.394055843353 +SURF 0x00 +mat 1 +refs 4 +64 0.873808443546 0.39406144619 +59 0.874791562557 0.381033241749 +60 0.881444633007 0.381120711565 +63 0.87998175621 0.394142776728 +SURF 0x00 +mat 1 +refs 4 +65 0.824939131737 0.394181251526 +58 0.823209345341 0.38116183877 +57 0.827050387859 0.381109118462 +66 0.82850331068 0.394132554531 +SURF 0x00 +mat 1 +refs 4 +63 0.87998175621 0.394142776728 +60 0.881444633007 0.381120711565 +61 0.885285615921 0.381176322699 +62 0.883545994759 0.394194364548 +SURF 0x00 +mat 1 +refs 4 +87 0.870418190956 0.454160273075 +63 0.87998175621 0.394142776728 +62 0.883545994759 0.394194364548 +88 0.872543990612 0.45795109868 +SURF 0x00 +mat 1 +refs 4 +76 0.835892677307 0.457946151495 +65 0.824939131737 0.394181251526 +66 0.82850331068 0.394132554531 +75 0.838021337986 0.454157263041 +SURF 0x00 +mat 1 +refs 4 +86 0.866681814194 0.451940208673 +64 0.873808443546 0.39406144619 +63 0.87998175621 0.394142776728 +87 0.870418190956 0.454160273075 +SURF 0x00 +mat 1 +refs 4 +75 0.838021337986 0.454157263041 +66 0.82850331068 0.394132554531 +67 0.834676682949 0.394055843353 +74 0.841759443283 0.45193991065 +SURF 0x00 +mat 1 +refs 4 +88 0.350970178843 0.0101107470691 +62 0.349739164114 0.0742333084345 +65 0.298795223236 0.0743894949555 +76 0.297170966864 0.0102758267894 +SURF 0x00 +mat 1 +refs 4 +74 0.687210202217 0.425240576267 +67 0.688816070557 0.367169946432 +64 0.739759981632 0.367326229811 +86 0.741009473801 0.425405949354 +SURF 0x00 +mat 1 +refs 4 +82 0.894084632397 0.765386879444 +93 0.890361845493 0.765398323536 +81 0.890196859837 0.711598992348 +70 0.89391964674 0.711587548256 +SURF 0x00 +mat 1 +refs 4 +83 0.898429870605 0.765373587608 +82 0.894084632397 0.765386879444 +70 0.89391964674 0.711587548256 +71 0.89826464653 0.711574196815 +SURF 0x00 +mat 1 +refs 4 +84 0.902233541012 0.765361845493 +83 0.898429870605 0.765373587608 +71 0.89826464653 0.711574196815 +72 0.902068316936 0.711562514305 +SURF 0x00 +mat 1 +refs 4 +85 0.687196433544 0.511600971222 +84 0.690975666046 0.511612594128 +72 0.690810620785 0.565411865711 +73 0.687031328678 0.565400242805 +SURF 0x00 +mat 1 +refs 4 +86 0.682850420475 0.511587619781 +85 0.687196433544 0.511600971222 +73 0.687031328678 0.565400242805 +74 0.682685375214 0.565386891365 +SURF 0x00 +mat 1 +refs 4 +89 0.3509567976 0.0057661565952 +88 0.350970178843 0.0101107470691 +76 0.297170966864 0.0102758267894 +77 0.297157496214 0.00593113293871 +SURF 0x00 +mat 1 +refs 4 +90 0.350945115089 0.00195102090947 +89 0.3509567976 0.0057661565952 +77 0.297157496214 0.00593113293871 +78 0.297145873308 0.00211620423943 +SURF 0x00 +mat 1 +refs 4 +91 0.844043135643 0.58362197876 +90 0.840296447277 0.583634078503 +78 0.840131402016 0.529834866524 +79 0.843878090382 0.529822707176 +SURF 0x00 +mat 1 +refs 4 +92 0.848389089108 0.583608567715 +91 0.844043135643 0.58362197876 +79 0.843878090382 0.529822707176 +80 0.848224043846 0.529809355736 +SURF 0x00 +mat 1 +refs 4 +93 0.85216987133 0.583597719669 +92 0.848389089108 0.583608567715 +80 0.848224043846 0.529809355736 +81 0.852004766464 0.529798448086 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +70 0.852162480354 0.462101459503 +81 0.850033760071 0.465890467167 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +93 0.858396887779 0.465884655714 +82 0.856271147728 0.462093710899 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +71 0.852111458778 0.457755535841 +70 0.852162480354 0.462101459503 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +82 0.856271147728 0.462093710899 +83 0.856325387955 0.45774808526 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +72 0.849894344807 0.454017609358 +71 0.852111458778 0.457755535841 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +83 0.856325387955 0.45774808526 +84 0.858545362949 0.454011619091 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +73 0.846105217934 0.45188882947 +72 0.849894344807 0.454017609358 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +84 0.858545362949 0.454011619091 +85 0.862336039543 0.451885849237 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +74 0.841759443283 0.45193991065 +73 0.846105217934 0.45188882947 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +85 0.862336039543 0.451885849237 +86 0.866681814194 0.451940208673 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +75 0.838021337986 0.454157263041 +74 0.841759443283 0.45193991065 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +86 0.866681814194 0.451940208673 +87 0.870418190956 0.454160273075 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +76 0.835892677307 0.457946151495 +75 0.838021337986 0.454157263041 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +87 0.870418190956 0.454160273075 +88 0.872543990612 0.45795109868 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +77 0.835943698883 0.46229198575 +76 0.835892677307 0.457946151495 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +88 0.872543990612 0.45795109868 +89 0.872489690781 0.462296724319 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +78 0.838160812855 0.466030091047 +77 0.835943698883 0.46229198575 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +89 0.872489690781 0.462296724319 +90 0.870269775391 0.466033101082 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +79 0.841949880123 0.468158662319 +78 0.838160812855 0.466030091047 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +90 0.870269775391 0.466033101082 +91 0.866479039192 0.468158870935 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +80 0.846295654774 0.468107610941 +79 0.841949880123 0.468158662319 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +91 0.866479039192 0.468158870935 +92 0.862133264542 0.468104511499 +SURF 0x00 +mat 1 +refs 3 +68 0.844027578831 0.460023969412 +81 0.850033760071 0.465890467167 +80 0.846295654774 0.468107610941 +SURF 0x00 +mat 1 +refs 3 +69 0.864407539368 0.460022509098 +92 0.862133264542 0.468104511499 +93 0.858396887779 0.465884655714 +kids 0 +OBJECT poly +name "Cylinder.004" +data 12 +Cylinder.004 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 37 +0.298353 1.070029 0.430578 +0.298353 1.052528 0.455573 +0.298353 1.077927 0.401104 +0.298353 1.075267 0.370707 +0.298353 1.062372 0.343053 +0.298353 1.040796 0.321477 +0.298353 1.013142 0.308581 +0.298353 0.982745 0.305922 +0.298353 0.953271 0.313819 +0.298353 0.928276 0.331321 +0.298353 0.910775 0.356316 +0.298353 0.902877 0.385789 +0.298353 0.905537 0.416186 +0.298353 0.918432 0.443841 +0.298353 0.940008 0.465417 +0.298353 0.967662 0.478312 +0.298353 0.998059 0.480972 +0.298353 1.027533 0.473074 +0.288845 1.021215 0.407815 +0.288845 1.014442 0.417487 +0.288845 1.024271 0.39641 +0.288845 1.023242 0.384647 +0.288845 1.018252 0.373946 +0.288845 1.009903 0.365597 +0.288845 0.999201 0.360607 +0.288845 0.987439 0.359578 +0.288845 0.976034 0.362634 +0.288845 0.966362 0.369406 +0.288845 0.959589 0.379078 +0.288845 0.956533 0.390484 +0.288845 0.957562 0.402246 +0.288845 0.962552 0.412947 +0.288845 0.970901 0.421296 +0.288845 0.981603 0.426286 +0.288845 0.993365 0.427316 +0.288845 1.00477 0.42426 +0.28726 0.990402 0.393447 +numsurf 36 +SURF 0x10 +mat 5 +refs 4 +1 0.0800785645843 0.902365267277 +0 0.0670503377914 0.900067865849 +18 0.0750576704741 0.878103733063 +19 0.0800991132855 0.878992795944 +SURF 0x10 +mat 5 +refs 4 +0 0.0670503377914 0.900067865849 +2 0.055593509227 0.89345318079 +20 0.0706243142486 0.875544071198 +18 0.0750576704741 0.878103733063 +SURF 0x10 +mat 5 +refs 4 +3 0.0470898747444 0.883318960667 +21 0.067333728075 0.871622502804 +20 0.0706243142486 0.875544071198 +2 0.055593509227 0.89345318079 +SURF 0x10 +mat 5 +refs 4 +4 0.042565099895 0.870887577534 +22 0.0655827894807 0.866812109947 +21 0.067333728075 0.871622502804 +3 0.0470898747444 0.883318960667 +SURF 0x10 +mat 5 +refs 4 +5 0.0425649397075 0.85765850544 +23 0.0655827447772 0.861692905426 +22 0.0655827894807 0.866812109947 +4 0.042565099895 0.870887577534 +SURF 0x10 +mat 5 +refs 4 +6 0.0470894090831 0.845227241516 +24 0.0673335567117 0.856882452965 +23 0.0655827447772 0.861692905426 +5 0.0425649397075 0.85765850544 +SURF 0x10 +mat 5 +refs 4 +7 0.0555927865207 0.835093259811 +25 0.0706240311265 0.85296100378 +24 0.0673335567117 0.856882452965 +6 0.0470894090831 0.845227241516 +SURF 0x10 +mat 5 +refs 4 +8 0.0670494586229 0.828478872776 +26 0.0750573650002 0.85040140152 +25 0.0706240311265 0.85296100378 +7 0.0555927865207 0.835093259811 +SURF 0x10 +mat 5 +refs 4 +9 0.0800775885582 0.826181769371 +27 0.0800987258554 0.849512577057 +26 0.0750573650002 0.85040140152 +8 0.0670494586229 0.828478872776 +SURF 0x10 +mat 5 +refs 4 +10 0.0931057482958 0.828479170799 +28 0.0851401612163 0.850401580334 +27 0.0800987258554 0.849512577057 +9 0.0800775885582 0.826181769371 +SURF 0x10 +mat 5 +refs 4 +10 0.0931057482958 0.828479170799 +11 0.104562558234 0.835093915462 +29 0.0895735248923 0.852961242199 +28 0.0851401612163 0.850401580334 +SURF 0x10 +mat 5 +refs 4 +12 0.113066241145 0.845228075981 +30 0.092864125967 0.856882810593 +29 0.0895735248923 0.852961242199 +11 0.104562558234 0.835093915462 +SURF 0x10 +mat 5 +refs 4 +13 0.117591001093 0.857659459114 +31 0.0946150422096 0.861693263054 +30 0.092864125967 0.856882810593 +12 0.113066241145 0.845228075981 +SURF 0x10 +mat 5 +refs 4 +14 0.117591179907 0.870888531208 +32 0.0946151316166 0.86681240797 +31 0.0946150422096 0.861693263054 +13 0.117591001093 0.857659459114 +SURF 0x10 +mat 5 +refs 4 +15 0.113066732883 0.883319795132 +33 0.0928643345833 0.871622860432 +32 0.0946151316166 0.86681240797 +14 0.117591179907 0.870888531208 +SURF 0x10 +mat 5 +refs 4 +16 0.104563355446 0.893453776836 +34 0.0895738601685 0.875544309616 +33 0.0928643345833 0.871622860432 +15 0.113066732883 0.883319795132 +SURF 0x10 +mat 5 +refs 4 +17 0.0931066423655 0.900068223476 +35 0.0851404964924 0.878103911877 +34 0.0895738601685 0.875544309616 +16 0.104563355446 0.893453776836 +SURF 0x10 +mat 5 +refs 4 +1 0.0800785645843 0.902365267277 +19 0.0800991132855 0.878992795944 +35 0.0851404964924 0.878103911877 +17 0.0931066423655 0.900068223476 +SURF 0x10 +mat 5 +refs 3 +19 0.0800991132855 0.878992795944 +18 0.0750576704741 0.878103733063 +36 0.0801023319364 0.86424934864 +SURF 0x10 +mat 5 +refs 3 +18 0.0750576704741 0.878103733063 +20 0.0706243142486 0.875544071198 +36 0.0801023319364 0.86424934864 +SURF 0x10 +mat 5 +refs 3 +21 0.067333728075 0.871622502804 +36 0.0801023319364 0.86424934864 +20 0.0706243142486 0.875544071198 +SURF 0x10 +mat 5 +refs 3 +22 0.0655827894807 0.866812109947 +36 0.0801023319364 0.86424934864 +21 0.067333728075 0.871622502804 +SURF 0x10 +mat 5 +refs 3 +23 0.0655827447772 0.861692905426 +36 0.0801023319364 0.86424934864 +22 0.0655827894807 0.866812109947 +SURF 0x10 +mat 5 +refs 3 +24 0.0673335567117 0.856882452965 +36 0.0801023319364 0.86424934864 +23 0.0655827447772 0.861692905426 +SURF 0x10 +mat 5 +refs 3 +25 0.0706240311265 0.85296100378 +36 0.0801023319364 0.86424934864 +24 0.0673335567117 0.856882452965 +SURF 0x10 +mat 5 +refs 3 +26 0.0750573650002 0.85040140152 +36 0.0801023319364 0.86424934864 +25 0.0706240311265 0.85296100378 +SURF 0x10 +mat 5 +refs 3 +27 0.0800987258554 0.849512577057 +36 0.0801023319364 0.86424934864 +26 0.0750573650002 0.85040140152 +SURF 0x10 +mat 5 +refs 3 +28 0.0851401612163 0.850401580334 +36 0.0801023319364 0.86424934864 +27 0.0800987258554 0.849512577057 +SURF 0x10 +mat 5 +refs 3 +28 0.0851401612163 0.850401580334 +29 0.0895735248923 0.852961242199 +36 0.0801023319364 0.86424934864 +SURF 0x10 +mat 5 +refs 3 +30 0.092864125967 0.856882810593 +36 0.0801023319364 0.86424934864 +29 0.0895735248923 0.852961242199 +SURF 0x10 +mat 5 +refs 3 +31 0.0946150422096 0.861693263054 +36 0.0801023319364 0.86424934864 +30 0.092864125967 0.856882810593 +SURF 0x10 +mat 5 +refs 3 +32 0.0946151316166 0.86681240797 +36 0.0801023319364 0.86424934864 +31 0.0946150422096 0.861693263054 +SURF 0x10 +mat 5 +refs 3 +33 0.0928643345833 0.871622860432 +36 0.0801023319364 0.86424934864 +32 0.0946151316166 0.86681240797 +SURF 0x10 +mat 5 +refs 3 +34 0.0895738601685 0.875544309616 +36 0.0801023319364 0.86424934864 +33 0.0928643345833 0.871622860432 +SURF 0x10 +mat 5 +refs 3 +35 0.0851404964924 0.878103911877 +36 0.0801023319364 0.86424934864 +34 0.0895738601685 0.875544309616 +SURF 0x10 +mat 5 +refs 3 +19 0.0800991132855 0.878992795944 +36 0.0801023319364 0.86424934864 +35 0.0851404964924 0.878103911877 +kids 0 +OBJECT poly +name "Plane" +data 9 +Plane.002 +crease 30 +numvert 8 +0.279793 1.084438 -0.302791 +0.279793 0.62068 -0.302791 +0.279793 0.62068 0.302791 +0.279793 1.084438 0.302791 +0.449131 1.084438 -0.302791 +0.449131 0.620679 -0.302791 +0.449131 0.62068 0.302791 +0.449131 1.084438 0.302791 +numsurf 5 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +2 0 0 +6 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +3 0 0 +7 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +0 0 0 +4 0 0 +7 0 0 +kids 0 +OBJECT poly +name "wiper.R" +data 8 +Cube.003 +crease 30 +numvert 18 +1.527534 1.654511 -0.296318 +1.515865 1.614944 -0.343307 +1.511731 1.600926 -0.331396 +1.522396 1.637087 -0.281512 +1.548712 1.648266 -0.296318 +1.537043 1.608698 -0.343307 +1.532909 1.59468 -0.331396 +1.543574 1.630841 -0.281512 +1.532427 1.593044 -0.339017 +1.535029 1.601869 -0.346515 +1.516748 1.593646 -0.343751 +1.51935 1.60247 -0.35125 +1.483301 1.456939 -0.530751 +1.481228 1.449909 -0.524778 +1.489985 1.45195 -0.534302 +1.487912 1.444921 -0.528329 +1.527112 1.607412 -0.345503 +1.523744 1.595991 -0.335798 +numsurf 21 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +1 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 4 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +SURF 0x00 +mat 1 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x00 +mat 1 +refs 4 +11 0 0 +9 0 0 +14 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 4 +8 0 0 +10 0 0 +13 0 0 +15 0 0 +SURF 0x00 +mat 1 +refs 4 +12 0 0 +14 0 0 +15 0 0 +13 0 0 +SURF 0x00 +mat 1 +refs 3 +16 0 0 +11 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +5 0 0 +16 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +16 0 0 +9 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 3 +9 0 0 +16 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +16 0 0 +5 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 3 +17 0 0 +2 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +8 0 0 +17 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +17 0 0 +6 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +6 0 0 +17 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +17 0 0 +8 0 0 +16 0 0 +kids 0 +OBJECT poly +name "fwheel2.L" +data 10 +Circle.006 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 288 +0.799131 0.727265 0.639958 +0.708073 0.779837 0.639958 +0.606512 0.80705 0.639958 +0.501368 0.80705 0.639958 +0.399807 0.779837 0.639958 +0.30875 0.727265 0.639958 +0.234402 0.652917 0.639958 +0.18183 0.56186 0.639958 +0.154617 0.460298 0.639958 +0.154617 0.355155 0.639958 +0.18183 0.253593 0.639958 +0.234402 0.162536 0.639958 +0.30875 0.088188 0.639958 +0.399807 0.035616 0.639958 +0.501369 0.008403 0.639958 +0.606512 0.008403 0.639958 +0.708074 0.035616 0.639958 +0.799131 0.088188 0.639958 +0.873479 0.162536 0.639958 +0.926051 0.253594 0.639958 +0.953264 0.355155 0.639958 +0.953264 0.460299 0.639958 +0.926051 0.56186 0.639958 +0.873479 0.652917 0.639958 +0.799131 0.727265 0.708485 +0.757063 0.759545 0.639958 +0.708073 0.779837 0.708485 +0.659084 0.800129 0.639958 +0.606512 0.80705 0.708485 +0.55394 0.813972 0.639958 +0.501368 0.80705 0.708485 +0.448796 0.800129 0.639958 +0.399807 0.779837 0.708485 +0.350818 0.759545 0.639958 +0.30875 0.727265 0.708485 +0.266682 0.694985 0.639958 +0.234402 0.652917 0.708485 +0.202122 0.610849 0.639958 +0.18183 0.56186 0.708485 +0.161538 0.51287 0.639958 +0.154617 0.460298 0.708485 +0.147695 0.407726 0.639958 +0.154617 0.355154 0.708485 +0.161538 0.302583 0.639958 +0.18183 0.253593 0.708485 +0.202122 0.204604 0.639958 +0.234402 0.162536 0.708485 +0.30875 0.088188 0.708485 +0.266682 0.120468 0.639958 +0.350818 0.055908 0.639958 +0.399807 0.035616 0.708485 +0.448796 0.015324 0.639958 +0.501369 0.008403 0.708485 +0.553941 0.001482 0.639958 +0.606512 0.008403 0.708485 +0.708074 0.035616 0.708485 +0.659084 0.015324 0.639958 +0.757063 0.055908 0.639958 +0.799131 0.088188 0.708485 +0.841199 0.120468 0.639958 +0.873479 0.162536 0.708485 +0.905759 0.204604 0.639958 +0.926051 0.253593 0.708485 +0.953264 0.355155 0.708485 +0.946343 0.302583 0.639958 +0.960185 0.407727 0.639958 +0.953264 0.460299 0.708485 +0.926051 0.56186 0.708485 +0.946343 0.512871 0.639958 +0.841199 0.694985 0.639958 +0.873479 0.652917 0.708485 +0.905759 0.610849 0.639958 +0.799131 0.727265 0.571432 +0.708073 0.779837 0.571432 +0.606512 0.80705 0.571432 +0.501368 0.80705 0.571432 +0.399807 0.779837 0.571432 +0.30875 0.727265 0.571432 +0.234402 0.652917 0.571432 +0.18183 0.56186 0.571432 +0.154617 0.460298 0.571432 +0.154617 0.355154 0.571432 +0.18183 0.253593 0.571432 +0.234402 0.162536 0.571432 +0.30875 0.088188 0.571432 +0.399807 0.035616 0.571432 +0.501369 0.008403 0.571432 +0.606512 0.008403 0.571432 +0.708074 0.035616 0.571432 +0.799131 0.088188 0.571432 +0.873479 0.162536 0.571432 +0.926051 0.253593 0.571432 +0.953264 0.355155 0.571432 +0.953264 0.460299 0.571432 +0.926051 0.56186 0.571432 +0.873479 0.652917 0.571432 +0.688314 0.640469 0.538809 +0.623497 0.667317 0.538809 +0.55394 0.676475 0.538809 +0.484383 0.667317 0.538809 +0.419566 0.640469 0.538809 +0.363907 0.59776 0.538809 +0.321198 0.5421 0.538809 +0.29435 0.477284 0.538809 +0.285192 0.407726 0.538809 +0.29435 0.338169 0.538809 +0.321198 0.273353 0.538809 +0.363907 0.217693 0.538809 +0.419566 0.174984 0.538809 +0.484383 0.148136 0.538809 +0.55394 0.138979 0.538809 +0.623497 0.148136 0.538809 +0.688314 0.174984 0.538809 +0.743974 0.217693 0.538809 +0.786683 0.273353 0.538809 +0.813531 0.33817 0.538809 +0.822688 0.407727 0.538809 +0.813531 0.477284 0.538809 +0.743974 0.59776 0.538809 +0.786683 0.542101 0.538809 +0.707122 0.673046 0.538809 +0.633233 0.703652 0.538809 +0.55394 0.714091 0.538809 +0.474647 0.703652 0.538809 +0.400758 0.673046 0.538809 +0.337308 0.624359 0.538809 +0.288621 0.560908 0.538809 +0.258015 0.487019 0.538809 +0.247576 0.407726 0.538809 +0.258015 0.328434 0.538809 +0.288621 0.254544 0.538809 +0.337308 0.191094 0.538809 +0.400758 0.142407 0.538809 +0.474647 0.111802 0.538809 +0.55394 0.101362 0.538809 +0.633233 0.111802 0.538809 +0.707122 0.142407 0.538809 +0.770573 0.191095 0.538809 +0.81926 0.254545 0.538809 +0.849865 0.328434 0.538809 +0.860304 0.407727 0.538809 +0.849865 0.487019 0.538809 +0.770572 0.624359 0.538809 +0.81926 0.560909 0.538809 +0.739236 0.728669 0.563845 +0.649856 0.765692 0.563845 +0.55394 0.778319 0.563845 +0.458024 0.765691 0.563845 +0.368644 0.728669 0.563845 +0.291892 0.669775 0.563845 +0.232998 0.593023 0.563845 +0.195975 0.503643 0.563845 +0.183348 0.407726 0.563845 +0.195975 0.31181 0.563845 +0.232998 0.22243 0.563845 +0.291892 0.145678 0.563845 +0.368644 0.086784 0.563845 +0.458024 0.049762 0.563845 +0.55394 0.037134 0.563845 +0.649857 0.049762 0.563845 +0.739237 0.086784 0.563845 +0.815989 0.145678 0.563845 +0.874883 0.22243 0.563845 +0.911905 0.31181 0.563845 +0.924533 0.407727 0.563845 +0.911905 0.503643 0.563845 +0.874883 0.593023 0.563845 +0.815989 0.669775 0.563845 +0.687559 0.639162 0.720245 +0.623106 0.665859 0.720245 +0.55394 0.674965 0.720245 +0.484774 0.665859 0.720245 +0.420321 0.639162 0.720245 +0.364974 0.596692 0.720245 +0.322505 0.541346 0.720245 +0.295808 0.476893 0.720245 +0.286702 0.407726 0.720245 +0.295808 0.33856 0.720245 +0.322505 0.274107 0.720245 +0.364974 0.21876 0.720245 +0.420321 0.176291 0.720245 +0.484774 0.149594 0.720245 +0.55394 0.140488 0.720245 +0.623107 0.149594 0.720245 +0.687559 0.176291 0.720245 +0.742906 0.218761 0.720245 +0.785375 0.274107 0.720245 +0.812073 0.33856 0.720245 +0.821179 0.407727 0.720245 +0.812073 0.476893 0.720245 +0.742906 0.596693 0.720245 +0.785375 0.541346 0.720245 +0.711098 0.679932 0.732764 +0.635291 0.711333 0.732764 +0.55394 0.722043 0.732764 +0.472589 0.711332 0.732764 +0.396782 0.679932 0.732764 +0.331685 0.629981 0.732764 +0.281735 0.564884 0.732764 +0.250334 0.489077 0.732763 +0.239624 0.407726 0.732763 +0.250334 0.326375 0.732764 +0.281735 0.250569 0.732764 +0.331685 0.185471 0.732764 +0.396782 0.135521 0.732764 +0.472589 0.104121 0.732764 +0.55394 0.093411 0.732764 +0.635291 0.104121 0.732764 +0.711098 0.135521 0.732764 +0.776195 0.185472 0.732764 +0.826146 0.250569 0.732764 +0.857546 0.326376 0.732764 +0.868256 0.407727 0.732763 +0.857546 0.489078 0.732763 +0.776195 0.629982 0.732764 +0.826146 0.564885 0.732764 +0.739173 0.72856 0.711899 +0.649824 0.76557 0.711899 +0.55394 0.778193 0.711899 +0.458056 0.76557 0.711899 +0.368707 0.72856 0.711899 +0.291981 0.669686 0.711899 +0.233107 0.59296 0.711899 +0.196097 0.50361 0.711899 +0.183474 0.407726 0.711899 +0.196097 0.311843 0.711899 +0.233107 0.222493 0.711899 +0.291981 0.145767 0.711899 +0.368707 0.086893 0.711899 +0.458057 0.049884 0.711899 +0.55394 0.03726 0.711899 +0.649824 0.049884 0.711899 +0.739174 0.086893 0.711899 +0.8159 0.145767 0.711899 +0.874774 0.222493 0.711899 +0.911783 0.311843 0.711899 +0.924407 0.407727 0.711899 +0.911783 0.50361 0.711899 +0.874774 0.59296 0.711899 +0.815899 0.669686 0.711899 +0.757063 0.759545 0.691035 +0.659084 0.800129 0.691035 +0.55394 0.813972 0.691035 +0.448796 0.800129 0.691035 +0.350818 0.759545 0.691035 +0.266682 0.694985 0.691035 +0.202122 0.610849 0.691035 +0.161538 0.51287 0.691035 +0.147695 0.407726 0.691035 +0.161538 0.302583 0.691035 +0.202122 0.204604 0.691035 +0.266682 0.120468 0.691035 +0.350818 0.055908 0.691035 +0.448796 0.015324 0.691035 +0.553941 0.001482 0.691035 +0.659084 0.015324 0.691035 +0.757063 0.055908 0.691035 +0.841199 0.120468 0.691035 +0.905759 0.204604 0.691035 +0.946343 0.302583 0.691035 +0.960185 0.407727 0.691035 +0.946343 0.512871 0.691035 +0.905759 0.610849 0.691035 +0.841199 0.694985 0.691035 +0.757063 0.759545 0.588882 +0.659084 0.800129 0.588882 +0.55394 0.813972 0.588882 +0.448796 0.800129 0.588882 +0.350818 0.759545 0.588882 +0.266682 0.694985 0.588882 +0.202122 0.610849 0.588882 +0.161538 0.51287 0.588882 +0.147695 0.407726 0.588882 +0.161538 0.302583 0.588882 +0.202122 0.204604 0.588882 +0.266682 0.120468 0.588882 +0.350818 0.055908 0.588882 +0.448796 0.015324 0.588882 +0.553941 0.001482 0.588882 +0.659084 0.015324 0.588882 +0.757063 0.055908 0.588882 +0.841199 0.120468 0.588882 +0.905759 0.204604 0.588882 +0.946343 0.302583 0.588882 +0.960185 0.407727 0.588882 +0.946343 0.512871 0.588882 +0.905759 0.610849 0.588882 +0.841199 0.694985 0.588882 +numsurf 336 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +287 0.178452908993 0.524567306042 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +264 0.165624529123 0.534410893917 +72 0.172038733959 0.529489099979 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +167 0.174609094858 0.520723462105 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +264 0.165624529123 0.534410893917 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +265 0.150685578585 0.540598809719 +73 0.158155053854 0.537504851818 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +144 0.162906527519 0.529703140259 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +265 0.150685578585 0.540598809719 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +266 0.134654119611 0.542709350586 +74 0.142669856548 0.54165405035 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +145 0.149278670549 0.535348057747 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +266 0.134654119611 0.542709350586 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +267 0.118622675538 0.540598809719 +75 0.126638397574 0.54165405035 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +146 0.134654119611 0.537273347378 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +267 0.118622675538 0.540598809719 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +268 0.103683710098 0.534410893917 +76 0.111153200269 0.537504792213 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +147 0.120029598475 0.535347998142 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +268 0.103683710098 0.534410893917 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +269 0.0908553749323 0.524567246437 +77 0.0972695350647 0.529489040375 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +148 0.106401756406 0.529703140259 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +269 0.0908553749323 0.524567246437 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +270 0.0810118317604 0.511738836765 +78 0.0859335958958 0.518153131008 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +149 0.0946992188692 0.520723462105 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +270 0.0810118317604 0.511738836765 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +271 0.0748239308596 0.496799945831 +79 0.0779178887606 0.504269421101 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +150 0.0857195258141 0.509020864964 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +271 0.0748239308596 0.496799945831 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +272 0.0727133601904 0.480768471956 +80 0.0737686306238 0.488784253597 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +151 0.0800746977329 0.495393037796 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +272 0.0727133601904 0.480768471956 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +273 0.0748239308596 0.464737027884 +81 0.0737686306238 0.47275274992 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +152 0.0781493484974 0.480768471956 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +273 0.0748239308596 0.464737027884 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +274 0.0810118466616 0.449798107147 +82 0.0779178887606 0.457267582417 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +153 0.0800746977329 0.466143995523 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +274 0.0810118466616 0.449798107147 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +275 0.0908554345369 0.436969727278 +83 0.0859336405993 0.443383902311 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +154 0.0857195854187 0.452516138554 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +275 0.0908554345369 0.436969727278 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +276 0.103683769703 0.427126199007 +84 0.0972696095705 0.43204793334 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +155 0.0946992486715 0.440813541412 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +276 0.103683769703 0.427126199007 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +277 0.118622720242 0.420938313007 +85 0.111153259873 0.424032241106 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +156 0.106401786208 0.431833893061 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +277 0.118622720242 0.420938313007 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +278 0.134654194117 0.418827682734 +86 0.12663847208 0.419883012772 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +157 0.120029658079 0.42618906498 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +278 0.134654194117 0.418827682734 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +279 0.15068565309 0.420938313007 +87 0.142669931054 0.419883012772 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +158 0.134654179215 0.424263685942 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +279 0.15068565309 0.420938313007 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +280 0.165624588728 0.427126228809 +88 0.15815512836 0.424032270908 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +159 0.149278700352 0.42618906498 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +280 0.165624588728 0.427126228809 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +281 0.178452938795 0.436969786882 +89 0.17203874886 0.432047963142 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +160 0.162906616926 0.431833952665 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +281 0.178452938795 0.436969786882 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +282 0.188296467066 0.44979813695 +90 0.18337470293 0.443383932114 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +161 0.17460912466 0.440813601017 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +282 0.188296467066 0.44979813695 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +283 0.194484397769 0.464737057686 +91 0.191390439868 0.457267612219 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +162 0.183588787913 0.452516138554 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +283 0.194484397769 0.464737057686 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +284 0.196594953537 0.480768531561 +92 0.195539683104 0.472752779722 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +163 0.189233630896 0.466143995523 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +284 0.196594953537 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +285 0.194484397769 0.496799975634 +93 0.195539683104 0.488784253597 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +164 0.191158980131 0.480768531561 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +285 0.194484397769 0.496799975634 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +286 0.188296467066 0.51173889637 +94 0.191390439868 0.504269480705 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +165 0.189233630896 0.495393067598 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +286 0.188296467066 0.51173889637 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +287 0.178452908993 0.524567306042 +95 0.183374688029 0.518153131008 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +166 0.183588787913 0.509020924568 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +240 0.165624529123 0.534410893917 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +263 0.178452908993 0.524567306042 +24 0.172038733959 0.529489099979 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +216 0.162896901369 0.529686510563 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +241 0.150685578585 0.540598809719 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +240 0.165624529123 0.534410893917 +26 0.158155053854 0.537504851818 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +217 0.149273663759 0.535329461098 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +242 0.134654119611 0.542709350586 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +241 0.150685578585 0.540598809719 +28 0.142669856548 0.54165405035 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +218 0.134654119611 0.537254154682 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +243 0.118622675538 0.540598809719 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +242 0.134654119611 0.542709350586 +30 0.126638397574 0.54165405035 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +219 0.120034605265 0.535329401493 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +244 0.103683710098 0.534410834312 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +243 0.118622675538 0.540598809719 +32 0.111153200269 0.537504792213 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +220 0.106411337852 0.529686450958 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +245 0.0908553749323 0.524567246437 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +244 0.103683710098 0.534410834312 +34 0.0972695350647 0.529489040375 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +221 0.0947128087282 0.520709812641 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +246 0.0810118317604 0.511738836765 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +245 0.0908553749323 0.524567246437 +36 0.0859335958958 0.518153131008 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +222 0.0857362151146 0.509011268616 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +247 0.0748239308596 0.496799916029 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +246 0.0810118317604 0.511738836765 +38 0.0779178887606 0.504269421101 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +223 0.0800932794809 0.495388031006 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +248 0.0727133601904 0.480768471956 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +247 0.0748239308596 0.496799916029 +40 0.0737686306238 0.488784193993 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +224 0.0781685709953 0.480768471956 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +249 0.0748239308596 0.464737027884 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +248 0.0727133601904 0.480768471956 +42 0.0737686306238 0.47275274992 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +225 0.0800932794809 0.466148912907 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +250 0.0810118466616 0.449798107147 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +249 0.0748239308596 0.464737027884 +44 0.0779178887606 0.457267582417 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +226 0.0857362300158 0.452525675297 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +251 0.0908554345369 0.436969727278 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +250 0.0810118466616 0.449798107147 +46 0.0859336405993 0.443383902311 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +227 0.0947128683329 0.440827161074 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +252 0.103683769703 0.427126199007 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +251 0.0908554345369 0.436969727278 +47 0.0972696095705 0.43204793334 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +228 0.106411382556 0.431850552559 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +253 0.118622720242 0.420938313007 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +252 0.103683769703 0.427126199007 +50 0.111153259873 0.424032241106 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +229 0.120034620166 0.426207602024 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +254 0.134654194117 0.418827682734 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +253 0.118622720242 0.420938313007 +52 0.12663847208 0.419883012772 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +230 0.134654179215 0.424282938242 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +255 0.15068565309 0.420938313007 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +254 0.134654194117 0.418827682734 +54 0.142669931054 0.419883012772 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +231 0.149273738265 0.426207602024 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +256 0.165624588728 0.427126228809 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +255 0.15068565309 0.420938313007 +55 0.15815512836 0.424032270908 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +232 0.162896946073 0.431850552559 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +257 0.178452938795 0.436969786882 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +256 0.165624588728 0.427126228809 +58 0.17203874886 0.432047963142 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +233 0.1745955199 0.440827220678 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +258 0.188296467066 0.44979813695 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +257 0.178452938795 0.436969786882 +60 0.18337470293 0.443383932114 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +234 0.183572113514 0.452525734901 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +259 0.194484397769 0.464737057686 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +258 0.188296467066 0.44979813695 +62 0.191390439868 0.457267612219 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +235 0.189215064049 0.466149002314 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +260 0.196594953537 0.480768531561 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +259 0.194484397769 0.464737057686 +63 0.195539683104 0.472752779722 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +236 0.191139742732 0.480768531561 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +261 0.194484397769 0.496799975634 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +260 0.196594953537 0.480768531561 +66 0.195539683104 0.488784253597 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +237 0.189215064049 0.495388060808 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +262 0.188296467066 0.51173889637 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +261 0.194484397769 0.496799975634 +67 0.191390439868 0.504269480705 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +238 0.183572113514 0.50901132822 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +263 0.178452908993 0.524567306042 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +262 0.188296467066 0.51173889637 +70 0.183374688029 0.518153131008 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +239 0.174595504999 0.520709872246 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 4 +24 0.00655085407197 0.452727437019 +0 0.0154595961794 0.452727437019 +25 0.0154596110806 0.458196461201 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +72 0.0243683308363 0.452727437019 +264 0.022099763155 0.458196461201 +25 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +24 0.00655085407197 0.452727437019 +263 0.00881944410503 0.447258412838 +69 0.0154596073553 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +72 0.0243683308363 0.452727437019 +0 0.0154595961794 0.452727437019 +69 0.0154596073553 0.447258412838 +287 0.022099763155 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +1 0.0154595961794 0.464565306902 +26 0.00655088014901 0.464565306902 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +1 0.0154595961794 0.464565306902 +27 0.0154596110806 0.470934122801 +241 0.00881944410503 0.470934122801 +26 0.00655088014901 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +264 0.022099763155 0.458196461201 +73 0.0243683308363 0.464565306902 +1 0.0154595961794 0.464565306902 +25 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +73 0.0243683308363 0.464565306902 +265 0.022099763155 0.470934122801 +27 0.0154596110806 0.470934122801 +1 0.0154595961794 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +27 0.0154596110806 0.470934122801 +2 0.0154595961794 0.477768719196 +28 0.00655088014901 0.477768719196 +241 0.00881944410503 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +2 0.0154595961794 0.477768719196 +29 0.0154596110806 0.484603285789 +242 0.00881944410503 0.484603285789 +28 0.00655088014901 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +265 0.022099763155 0.470934122801 +74 0.0243683308363 0.477768719196 +2 0.0154595961794 0.477768719196 +27 0.0154596110806 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +74 0.0243683308363 0.477768719196 +266 0.022099763155 0.484603285789 +29 0.0154596110806 0.484603285789 +2 0.0154595961794 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +29 0.0154596110806 0.484603285789 +3 0.0154595961794 0.491437911987 +30 0.00655088014901 0.491437911987 +242 0.00881944410503 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +3 0.0154595961794 0.491437911987 +31 0.0154596110806 0.49827247858 +243 0.00881944410503 0.49827247858 +30 0.00655088014901 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +266 0.022099763155 0.484603285789 +75 0.0243683308363 0.491437911987 +3 0.0154595961794 0.491437911987 +29 0.0154596110806 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +75 0.0243683308363 0.491437911987 +267 0.022099763155 0.49827247858 +31 0.0154596110806 0.49827247858 +3 0.0154595961794 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +31 0.0154596110806 0.49827247858 +4 0.0154595961794 0.504641294479 +32 0.00655088014901 0.504641294479 +243 0.00881944410503 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +4 0.0154595961794 0.504641294479 +33 0.0154596110806 0.511010169983 +244 0.00881944410503 0.511010169983 +32 0.00655088014901 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +267 0.022099763155 0.49827247858 +76 0.0243683308363 0.504641294479 +4 0.0154595961794 0.504641294479 +31 0.0154596110806 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +76 0.0243683308363 0.504641294479 +268 0.022099763155 0.511010169983 +33 0.0154596110806 0.511010169983 +4 0.0154595961794 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +33 0.0154596110806 0.511010169983 +5 0.0154595999047 0.516479194164 +34 0.00655085407197 0.516479194164 +244 0.00881944410503 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +5 0.0154595999047 0.516479194164 +35 0.0154596110806 0.521948158741 +245 0.00881944410503 0.521948158741 +34 0.00655085407197 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +268 0.022099763155 0.511010169983 +77 0.0243683308363 0.516479194164 +5 0.0154595999047 0.516479194164 +33 0.0154596110806 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +77 0.0243683308363 0.516479194164 +269 0.022099763155 0.521948158741 +35 0.0154596110806 0.521948158741 +5 0.0154595999047 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +35 0.0154596110806 0.521948158741 +6 0.015459577553 0.526144683361 +36 0.00655085779727 0.526144683361 +245 0.00881944410503 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +6 0.015459577553 0.526144683361 +37 0.0154595999047 0.530341267586 +246 0.0088194347918 0.530341267586 +36 0.00655085779727 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +269 0.022099763155 0.521948158741 +78 0.0243683084846 0.526144683361 +6 0.015459577553 0.526144683361 +35 0.0154596110806 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +78 0.0243683084846 0.526144683361 +270 0.022099763155 0.530341267586 +37 0.0154595999047 0.530341267586 +6 0.015459577553 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +37 0.0154595999047 0.530341267586 +7 0.015459577553 0.532979309559 +38 0.00655085779727 0.532979309559 +246 0.0088194347918 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +7 0.015459577553 0.532979309559 +39 0.0154595999047 0.535617351532 +247 0.0088194347918 0.535617351532 +38 0.00655085779727 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +270 0.022099763155 0.530341267586 +79 0.0243683084846 0.532979309559 +7 0.015459577553 0.532979309559 +37 0.0154595999047 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +79 0.0243683084846 0.532979309559 +271 0.022099763155 0.535617351532 +39 0.0154595999047 0.535617351532 +7 0.015459577553 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +39 0.0154595999047 0.535617351532 +8 0.0154595999047 0.53651714325 +40 0.00655088014901 0.53651714325 +247 0.0088194347918 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +8 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +248 0.0088194552809 0.537416934967 +40 0.00655088014901 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +271 0.022099763155 0.535617351532 +80 0.0243683308363 0.53651714325 +8 0.0154595999047 0.53651714325 +39 0.0154595999047 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +80 0.0243683308363 0.53651714325 +272 0.022099789232 0.537416934967 +41 0.0154596222565 0.537416934967 +8 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +41 0.0154596222565 0.537416934967 +9 0.0154595999047 0.53651714325 +42 0.00655088014901 0.53651714325 +248 0.0088194552809 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +9 0.0428032502532 0.53651714325 +43 0.0428032390773 0.535617351532 +249 0.0494434013963 0.535617351532 +42 0.0517119690776 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +272 0.022099789232 0.537416934967 +81 0.0243683308363 0.53651714325 +9 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +81 0.0338945165277 0.53651714325 +273 0.036163084209 0.535617351532 +43 0.0428032390773 0.535617351532 +9 0.0428032502532 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +43 0.0428032390773 0.535617351532 +10 0.0428032502532 0.532979249954 +44 0.0517119690776 0.532979249954 +249 0.0494434013963 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +10 0.0428032502532 0.532979249954 +45 0.0428032390773 0.530341207981 +250 0.0494434013963 0.530341207981 +44 0.0517119690776 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +273 0.036163084209 0.535617351532 +82 0.0338945165277 0.532979249954 +10 0.0428032502532 0.532979249954 +43 0.0428032390773 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +82 0.0338945165277 0.532979249954 +274 0.036163084209 0.530341207981 +45 0.0428032390773 0.530341207981 +10 0.0428032502532 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +45 0.0428032390773 0.530341207981 +11 0.0428032502532 0.526144683361 +46 0.0517119690776 0.526144683361 +250 0.0494434013963 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +11 0.0428032502532 0.526144683361 +48 0.0428032390773 0.521948158741 +251 0.0494434051216 0.521948158741 +46 0.0517119690776 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +274 0.036163084209 0.530341207981 +83 0.0338945165277 0.526144683361 +11 0.0428032502532 0.526144683361 +45 0.0428032390773 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +83 0.0338945165277 0.526144683361 +275 0.036163084209 0.521948158741 +48 0.0428032390773 0.521948158741 +11 0.0428032502532 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +84 0.0338945165277 0.51647913456 +12 0.0428032502532 0.51647913456 +48 0.0428032390773 0.521948158741 +275 0.036163084209 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +12 0.0428032502532 0.51647913456 +47 0.0517119690776 0.51647913456 +251 0.0494434051216 0.521948158741 +48 0.0428032390773 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +49 0.0428032390773 0.511010050774 +12 0.0428032502532 0.51647913456 +84 0.0338945165277 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +252 0.0494434051216 0.511010050774 +47 0.0517119690776 0.51647913456 +12 0.0428032502532 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +13 0.0428032539785 0.504641294479 +50 0.0517119690776 0.504641294479 +252 0.0494434051216 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +13 0.0428032539785 0.504641294479 +51 0.0428032390773 0.498272418976 +253 0.0494434051216 0.498272418976 +50 0.0517119690776 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +85 0.0338945165277 0.504641294479 +13 0.0428032539785 0.504641294479 +49 0.0428032390773 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +85 0.0338945165277 0.504641294479 +277 0.036163084209 0.498272418976 +51 0.0428032390773 0.498272418976 +13 0.0428032539785 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +51 0.0428032390773 0.498272418976 +14 0.0428032539785 0.491437852383 +52 0.0517119690776 0.491437852383 +253 0.0494434051216 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +14 0.0428032539785 0.491437852383 +53 0.0428032390773 0.484603226185 +254 0.0494434051216 0.484603226185 +52 0.0517119690776 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +277 0.036163084209 0.498272418976 +86 0.0338945165277 0.491437852383 +14 0.0428032539785 0.491437852383 +51 0.0428032390773 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +86 0.0338945165277 0.491437852383 +278 0.036163084209 0.484603226185 +53 0.0428032390773 0.484603226185 +14 0.0428032539785 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +53 0.0428032390773 0.484603226185 +15 0.0428032539785 0.477768689394 +54 0.0517119690776 0.477768689394 +254 0.0494434051216 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +15 0.0428032539785 0.477768689394 +56 0.0428032390773 0.470934063196 +255 0.0494434051216 0.470934063196 +54 0.0517119690776 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +278 0.036163084209 0.484603226185 +87 0.0338945165277 0.477768689394 +15 0.0428032539785 0.477768689394 +53 0.0428032390773 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +87 0.0338945165277 0.477768689394 +279 0.036163084209 0.470934063196 +56 0.0428032390773 0.470934063196 +15 0.0428032539785 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +88 0.0338945165277 0.4645652771 +16 0.0428032539785 0.4645652771 +56 0.0428032390773 0.470934063196 +279 0.036163084209 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +16 0.0428032539785 0.4645652771 +55 0.0517119690776 0.4645652771 +255 0.0494434051216 0.470934063196 +56 0.0428032390773 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +57 0.0428032390773 0.458196431398 +16 0.0428032539785 0.4645652771 +88 0.0338945165277 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +256 0.0494434051216 0.458196431398 +55 0.0517119690776 0.4645652771 +16 0.0428032539785 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +17 0.0428032539785 0.452727407217 +58 0.0517119690776 0.452727407217 +256 0.0494434051216 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +17 0.0428032539785 0.452727407217 +59 0.0428032428026 0.447258353233 +257 0.0494434051216 0.447258353233 +58 0.0517119690776 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +89 0.0338945165277 0.452727407217 +17 0.0428032539785 0.452727407217 +57 0.0428032390773 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +89 0.0338945165277 0.452727407217 +281 0.036163084209 0.447258353233 +59 0.0428032428026 0.447258353233 +17 0.0428032539785 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +59 0.0428032428026 0.447258353233 +18 0.0428032539785 0.443061828613 +60 0.0517119728029 0.443061828613 +257 0.0494434051216 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +18 0.0428032539785 0.443061828613 +61 0.0428032428026 0.438865333796 +258 0.0494434088469 0.438865333796 +60 0.0517119728029 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +281 0.036163084209 0.447258353233 +90 0.0338945239782 0.443061828613 +18 0.0428032539785 0.443061828613 +59 0.0428032428026 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +90 0.0338945239782 0.443061828613 +282 0.0361630916595 0.438865333796 +61 0.0428032428026 0.438865333796 +18 0.0428032539785 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +61 0.0428032428026 0.438865333796 +19 0.0428032539785 0.43622726202 +62 0.0517119728029 0.43622726202 +258 0.0494434088469 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +19 0.0428032539785 0.43622726202 +64 0.0428032428026 0.433589220047 +259 0.0494434088469 0.433589220047 +62 0.0517119728029 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +282 0.0361630916595 0.438865333796 +91 0.0338945239782 0.43622726202 +19 0.0428032539785 0.43622726202 +61 0.0428032428026 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +91 0.0338945239782 0.43622726202 +283 0.0361630916595 0.433589220047 +64 0.0428032428026 0.433589220047 +19 0.0428032539785 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +92 0.0338945239782 0.432689428329 +20 0.0428032539785 0.432689428329 +64 0.0428032428026 0.433589220047 +283 0.0361630916595 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +20 0.0428032539785 0.432689428329 +63 0.0517119728029 0.432689428329 +259 0.0494434088469 0.433589220047 +64 0.0428032428026 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +284 0.0361630693078 0.431789666414 +65 0.0428032316267 0.431789666414 +20 0.0428032539785 0.432689428329 +92 0.0338945239782 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +65 0.0428032316267 0.431789666414 +260 0.049443397671 0.431789666414 +63 0.0517119728029 0.432689428329 +20 0.0428032539785 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +65 0.0154596185312 0.431789666414 +21 0.0154595961794 0.432689428329 +66 0.00655087642372 0.432689428329 +260 0.00881945155561 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +21 0.0154595961794 0.432689428329 +68 0.0154595961794 0.433589220047 +261 0.00881942920387 0.433589220047 +66 0.00655087642372 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +284 0.0220997817814 0.431789666414 +93 0.024368327111 0.432689428329 +21 0.0154595961794 0.432689428329 +65 0.0154596185312 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +93 0.024368327111 0.432689428329 +285 0.0220997594297 0.433589220047 +68 0.0154595961794 0.433589220047 +21 0.0154595961794 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +94 0.0243683047593 0.43622726202 +22 0.0154595738277 0.43622726202 +68 0.0154595961794 0.433589220047 +285 0.0220997594297 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +22 0.0154595738277 0.43622726202 +67 0.00655085407197 0.43622726202 +261 0.00881942920387 0.433589220047 +68 0.0154595961794 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +286 0.0220997594297 0.438865333796 +71 0.0154595961794 0.438865333796 +22 0.0154595738277 0.43622726202 +94 0.0243683047593 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +71 0.0154595961794 0.438865333796 +262 0.00881942920387 0.438865333796 +67 0.00655085407197 0.43622726202 +22 0.0154595738277 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +95 0.0243683047593 0.443061858416 +23 0.0154595738277 0.443061858416 +71 0.0154595961794 0.438865333796 +286 0.0220997594297 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +23 0.0154595738277 0.443061858416 +70 0.00655085407197 0.443061858416 +262 0.00881942920387 0.438865333796 +71 0.0154595961794 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +287 0.022099763155 0.447258412838 +69 0.0154596073553 0.447258412838 +23 0.0154595738277 0.443061858416 +95 0.0243683047593 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +263 0.00881944410503 0.447258412838 +70 0.00655085407197 0.443061858416 +23 0.0154595738277 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +142 0.167684406042 0.513798773289 +118 0.163628861308 0.509743213654 +96 0.155142366886 0.516255199909 +120 0.158010050654 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +121 0.146744042635 0.525888681412 +120 0.158010050654 0.521222114563 +96 0.155142366886 0.516255199909 +97 0.145259618759 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +122 0.134654119611 0.527480363846 +121 0.146744042635 0.525888681412 +97 0.145259618759 0.520348727703 +98 0.134654119611 0.521744906902 +SURF 0x10 +mat 10 +refs 4 +123 0.122564211488 0.525888621807 +122 0.134654119611 0.527480363846 +98 0.134654119611 0.521744906902 +99 0.124048650265 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +124 0.111298218369 0.521222114563 +123 0.122564211488 0.525888621807 +99 0.124048650265 0.520348727703 +100 0.114165946841 0.516255140305 +SURF 0x10 +mat 10 +refs 4 +125 0.101623922586 0.513798773289 +124 0.111298218369 0.521222114563 +100 0.114165946841 0.516255140305 +101 0.105679437518 0.509743213654 +SURF 0x10 +mat 10 +refs 4 +126 0.0942005366087 0.504124403 +125 0.101623922586 0.513798773289 +101 0.105679437518 0.509743213654 +102 0.0991675406694 0.50125670433 +SURF 0x10 +mat 10 +refs 4 +127 0.0895339995623 0.492858439684 +126 0.0942005366087 0.504124403 +102 0.0991675406694 0.50125670433 +103 0.0950739830732 0.491373956203 +SURF 0x10 +mat 10 +refs 4 +128 0.0879423320293 0.480768471956 +127 0.0895339995623 0.492858439684 +103 0.0950739830732 0.491373956203 +104 0.0936777442694 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +129 0.0895340144634 0.468678593636 +128 0.0879423320293 0.480768471956 +104 0.0936777442694 0.480768471956 +105 0.0950739979744 0.470163017511 +SURF 0x10 +mat 10 +refs 4 +130 0.0942005366087 0.457412600517 +129 0.0895340144634 0.468678593636 +105 0.0950739979744 0.470163017511 +106 0.0991675704718 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +130 0.0942005366087 0.457412600517 +106 0.0991675704718 0.460280328989 +107 0.105679482222 0.451793789864 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +107 0.105679482222 0.451793789864 +108 0.114166006446 0.445281893015 +132 0.111298263073 0.440314859152 +SURF 0x10 +mat 10 +refs 4 +133 0.12256424129 0.435648351908 +132 0.111298263073 0.440314859152 +108 0.114166006446 0.445281893015 +109 0.124048694968 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +134 0.134654179215 0.434056699276 +133 0.12256424129 0.435648351908 +109 0.124048694968 0.441188365221 +110 0.134654179215 0.439792096615 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +134 0.134654179215 0.434056699276 +110 0.134654179215 0.439792096615 +111 0.145259648561 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +111 0.145259648561 0.441188365221 +112 0.155142381787 0.445281893015 +136 0.158010080457 0.440314888954 +SURF 0x10 +mat 10 +refs 4 +137 0.167684406042 0.447738260031 +136 0.158010080457 0.440314888954 +112 0.155142381787 0.445281893015 +113 0.163628861308 0.451793819666 +SURF 0x10 +mat 10 +refs 4 +138 0.17510779202 0.45741263032 +137 0.167684406042 0.447738260031 +113 0.163628861308 0.451793819666 +114 0.17014080286 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +138 0.17510779202 0.45741263032 +114 0.17014080286 0.460280328989 +115 0.174234315753 0.470163047314 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +115 0.174234315753 0.470163047314 +116 0.175630584359 0.480768531561 +140 0.181365996599 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +140 0.181365996599 0.480768531561 +116 0.175630584359 0.480768531561 +117 0.174234315753 0.491374015808 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +117 0.174234315753 0.491374015808 +119 0.17014080286 0.501256763935 +143 0.17510779202 0.504124403 +SURF 0x10 +mat 10 +refs 4 +143 0.17510779202 0.504124403 +119 0.17014080286 0.501256763935 +118 0.163628861308 0.509743213654 +142 0.167684406042 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +167 0.174609094858 0.520723462105 +142 0.167684406042 0.513798773289 +120 0.158010050654 0.521222114563 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +145 0.149278670549 0.535348057747 +144 0.162906527519 0.529703140259 +120 0.158010050654 0.521222114563 +121 0.146744042635 0.525888681412 +SURF 0x10 +mat 10 +refs 4 +146 0.134654119611 0.537273347378 +145 0.149278670549 0.535348057747 +121 0.146744042635 0.525888681412 +122 0.134654119611 0.527480363846 +SURF 0x10 +mat 10 +refs 4 +147 0.120029598475 0.535347998142 +146 0.134654119611 0.537273347378 +122 0.134654119611 0.527480363846 +123 0.122564211488 0.525888621807 +SURF 0x10 +mat 10 +refs 4 +148 0.106401756406 0.529703140259 +147 0.120029598475 0.535347998142 +123 0.122564211488 0.525888621807 +124 0.111298218369 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +149 0.0946992188692 0.520723462105 +148 0.106401756406 0.529703140259 +124 0.111298218369 0.521222114563 +125 0.101623922586 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +150 0.0857195258141 0.509020864964 +149 0.0946992188692 0.520723462105 +125 0.101623922586 0.513798773289 +126 0.0942005366087 0.504124403 +SURF 0x10 +mat 10 +refs 4 +151 0.0800746977329 0.495393037796 +150 0.0857195258141 0.509020864964 +126 0.0942005366087 0.504124403 +127 0.0895339995623 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +152 0.0781493484974 0.480768471956 +151 0.0800746977329 0.495393037796 +127 0.0895339995623 0.492858439684 +128 0.0879423320293 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +153 0.0800746977329 0.466143995523 +152 0.0781493484974 0.480768471956 +128 0.0879423320293 0.480768471956 +129 0.0895340144634 0.468678593636 +SURF 0x10 +mat 10 +refs 4 +154 0.0857195854187 0.452516138554 +153 0.0800746977329 0.466143995523 +129 0.0895340144634 0.468678593636 +130 0.0942005366087 0.457412600517 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +154 0.0857195854187 0.452516138554 +130 0.0942005366087 0.457412600517 +131 0.101623937488 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +131 0.101623937488 0.447738260031 +132 0.111298263073 0.440314859152 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 4 +157 0.120029658079 0.42618906498 +156 0.106401786208 0.431833893061 +132 0.111298263073 0.440314859152 +133 0.12256424129 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +158 0.134654179215 0.424263685942 +157 0.120029658079 0.42618906498 +133 0.12256424129 0.435648351908 +134 0.134654179215 0.434056699276 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +158 0.134654179215 0.424263685942 +134 0.134654179215 0.434056699276 +135 0.146744087338 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +135 0.146744087338 0.435648351908 +136 0.158010080457 0.440314888954 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 4 +161 0.17460912466 0.440813601017 +160 0.162906616926 0.431833952665 +136 0.158010080457 0.440314888954 +137 0.167684406042 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +162 0.183588787913 0.452516138554 +161 0.17460912466 0.440813601017 +137 0.167684406042 0.447738260031 +138 0.17510779202 0.45741263032 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +162 0.183588787913 0.452516138554 +138 0.17510779202 0.45741263032 +139 0.179774314165 0.468678623438 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +139 0.179774314165 0.468678623438 +140 0.181365996599 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +164 0.191158980131 0.480768531561 +140 0.181365996599 0.480768531561 +141 0.179774314165 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +141 0.179774314165 0.492858439684 +143 0.17510779202 0.504124403 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 4 +166 0.183588787913 0.509020924568 +143 0.17510779202 0.504124403 +142 0.167684406042 0.513798773289 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +168 0.155027270317 0.516055822372 +190 0.163466095924 0.509580433369 +214 0.16854172945 0.514656126499 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +193 0.147057831287 0.527059793472 +169 0.145200058818 0.520126402378 +168 0.155027270317 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +193 0.147057831287 0.527059793472 +194 0.134654119611 0.528692781925 +170 0.134654119611 0.521514713764 +169 0.145200058818 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +194 0.134654119611 0.528692781925 +195 0.122250407934 0.527059793472 +171 0.124108210206 0.520126402378 +170 0.134654119611 0.521514713764 +SURF 0x10 +mat 10 +refs 4 +195 0.122250407934 0.527059793472 +196 0.11069200933 0.52227216959 +172 0.114281013608 0.516055822372 +171 0.124108210206 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +196 0.11069200933 0.52227216959 +197 0.100766569376 0.514656066895 +173 0.105842202902 0.509580433369 +172 0.114281013608 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +197 0.100766569376 0.514656066895 +198 0.0931505560875 0.504730641842 +174 0.0993668884039 0.501141607761 +173 0.105842202902 0.509580433369 +SURF 0x10 +mat 10 +refs 4 +198 0.0931505560875 0.504730641842 +199 0.0883629024029 0.493172168732 +175 0.0952962934971 0.491314411163 +174 0.0993668884039 0.501141607761 +SURF 0x10 +mat 10 +refs 4 +199 0.0883629024029 0.493172168732 +200 0.0867298841476 0.480768471956 +176 0.093907892704 0.480768471956 +175 0.0952962934971 0.491314411163 +SURF 0x10 +mat 10 +refs 4 +200 0.0867298841476 0.480768471956 +201 0.0883629024029 0.468364775181 +177 0.0952963232994 0.470222562551 +176 0.093907892704 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +201 0.0883629024029 0.468364775181 +202 0.0931505560875 0.456806391478 +178 0.0993668884039 0.460395395756 +177 0.0952963232994 0.470222562551 +SURF 0x10 +mat 10 +refs 4 +202 0.0931505560875 0.456806391478 +203 0.100766628981 0.446880936623 +179 0.105842217803 0.451956540346 +178 0.0993668884039 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +180 0.114281058311 0.445481210947 +179 0.105842217803 0.451956540346 +203 0.100766628981 0.446880936623 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +205 0.122250497341 0.434477210045 +181 0.124108269811 0.441410690546 +180 0.114281058311 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +205 0.122250497341 0.434477210045 +206 0.134654179215 0.432844251394 +182 0.134654179215 0.440022289753 +181 0.124108269811 0.441410690546 +SURF 0x10 +mat 10 +refs 4 +206 0.134654179215 0.432844251394 +207 0.147057905793 0.434477210045 +183 0.145200103521 0.441410690546 +182 0.134654179215 0.440022289753 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +184 0.155027285218 0.445481210947 +183 0.145200103521 0.441410690546 +207 0.147057905793 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +209 0.168541744351 0.446880996227 +185 0.163466125727 0.451956599951 +184 0.155027285218 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +209 0.168541744351 0.446880996227 +210 0.176157802343 0.456806391478 +186 0.169941455126 0.460395395756 +185 0.163466125727 0.451956599951 +SURF 0x10 +mat 10 +refs 4 +210 0.176157802343 0.456806391478 +211 0.180945426226 0.468364834785 +187 0.174012005329 0.470222622156 +186 0.169941455126 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +188 0.175400406122 0.480768531561 +187 0.174012005329 0.470222622156 +211 0.180945426226 0.468364834785 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +213 0.180945426226 0.493172228336 +189 0.174012005329 0.491314411163 +188 0.175400406122 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +215 0.176157772541 0.504730641842 +191 0.169941455126 0.501141607761 +189 0.174012005329 0.491314411163 +213 0.180945426226 0.493172228336 +SURF 0x10 +mat 10 +refs 4 +214 0.16854172945 0.514656126499 +190 0.163466095924 0.509580433369 +191 0.169941455126 0.501141607761 +215 0.176157772541 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +192 0.158616274595 0.52227216959 +214 0.16854172945 0.514656126499 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +217 0.149273663759 0.535329461098 +193 0.147057831287 0.527059793472 +192 0.158616274595 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +217 0.149273663759 0.535329461098 +218 0.134654119611 0.537254154682 +194 0.134654119611 0.528692781925 +193 0.147057831287 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +218 0.134654119611 0.537254154682 +219 0.120034605265 0.535329401493 +195 0.122250407934 0.527059793472 +194 0.134654119611 0.528692781925 +SURF 0x10 +mat 10 +refs 4 +219 0.120034605265 0.535329401493 +220 0.106411337852 0.529686450958 +196 0.11069200933 0.52227216959 +195 0.122250407934 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +220 0.106411337852 0.529686450958 +221 0.0947128087282 0.520709812641 +197 0.100766569376 0.514656066895 +196 0.11069200933 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +221 0.0947128087282 0.520709812641 +222 0.0857362151146 0.509011268616 +198 0.0931505560875 0.504730641842 +197 0.100766569376 0.514656066895 +SURF 0x10 +mat 10 +refs 4 +222 0.0857362151146 0.509011268616 +223 0.0800932794809 0.495388031006 +199 0.0883629024029 0.493172168732 +198 0.0931505560875 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +223 0.0800932794809 0.495388031006 +224 0.0781685709953 0.480768471956 +200 0.0867298841476 0.480768471956 +199 0.0883629024029 0.493172168732 +SURF 0x10 +mat 10 +refs 4 +224 0.0781685709953 0.480768471956 +225 0.0800932794809 0.466148912907 +201 0.0883629024029 0.468364775181 +200 0.0867298841476 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +225 0.0800932794809 0.466148912907 +226 0.0857362300158 0.452525675297 +202 0.0931505560875 0.456806391478 +201 0.0883629024029 0.468364775181 +SURF 0x10 +mat 10 +refs 4 +226 0.0857362300158 0.452525675297 +227 0.0947128683329 0.440827161074 +203 0.100766628981 0.446880936623 +202 0.0931505560875 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +204 0.110692054033 0.439264863729 +203 0.100766628981 0.446880936623 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +229 0.120034620166 0.426207602024 +205 0.122250497341 0.434477210045 +204 0.110692054033 0.439264863729 +SURF 0x10 +mat 10 +refs 4 +229 0.120034620166 0.426207602024 +230 0.134654179215 0.424282938242 +206 0.134654179215 0.432844251394 +205 0.122250497341 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +230 0.134654179215 0.424282938242 +231 0.149273738265 0.426207602024 +207 0.147057905793 0.434477210045 +206 0.134654179215 0.432844251394 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +208 0.158616304398 0.439264893532 +207 0.147057905793 0.434477210045 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +233 0.1745955199 0.440827220678 +209 0.168541744351 0.446880996227 +208 0.158616304398 0.439264893532 +SURF 0x10 +mat 10 +refs 4 +233 0.1745955199 0.440827220678 +234 0.183572113514 0.452525734901 +210 0.176157802343 0.456806391478 +209 0.168541744351 0.446880996227 +SURF 0x10 +mat 10 +refs 4 +234 0.183572113514 0.452525734901 +235 0.189215064049 0.466149002314 +211 0.180945426226 0.468364834785 +210 0.176157802343 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +212 0.182578399777 0.480768531561 +211 0.180945426226 0.468364834785 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +237 0.189215064049 0.495388060808 +213 0.180945426226 0.493172228336 +212 0.182578399777 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +238 0.183572113514 0.50901132822 +215 0.176157772541 0.504730641842 +213 0.180945426226 0.493172228336 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 4 +239 0.174595504999 0.520709872246 +214 0.16854172945 0.514656126499 +215 0.176157772541 0.504730641842 +238 0.183572113514 0.50901132822 +kids 0 +OBJECT poly +name "gearshift.002" +data 10 +Circle.015 +crease 30 +numvert 18 +1.447228 0.623441 0.033262 +1.441803 0.623441 0.041607 +1.446318 0.623441 0.050478 +1.456258 0.623441 0.051003 +1.461682 0.623441 0.042657 +1.457167 0.623441 0.033787 +1.43667 0.602551 0.012519 +1.418561 0.602551 0.040379 +1.433633 0.602551 0.069992 +1.466815 0.602551 0.071746 +1.469852 0.602551 0.014272 +1.484925 0.602551 0.043885 +1.42733 0.526942 -0.005832 +1.397998 0.526942 0.039293 +1.422411 0.526942 0.087257 +1.476156 0.526942 0.090096 +1.505487 0.526942 0.044972 +1.481074 0.526942 -0.002992 +numsurf 12 +SURF 0x10 +mat 11 +refs 4 +0 0 0 +5 0 0 +10 0 0 +6 0 0 +SURF 0x10 +mat 11 +refs 4 +1 0 0 +0 0 0 +6 0 0 +7 0 0 +SURF 0x10 +mat 11 +refs 4 +7 0 0 +8 0 0 +2 0 0 +1 0 0 +SURF 0x10 +mat 11 +refs 4 +8 0 0 +9 0 0 +3 0 0 +2 0 0 +SURF 0x10 +mat 11 +refs 4 +9 0 0 +11 0 0 +4 0 0 +3 0 0 +SURF 0x10 +mat 11 +refs 4 +11 0 0 +10 0 0 +5 0 0 +4 0 0 +SURF 0x10 +mat 11 +refs 4 +17 0 0 +12 0 0 +6 0 0 +10 0 0 +SURF 0x10 +mat 11 +refs 4 +12 0 0 +13 0 0 +7 0 0 +6 0 0 +SURF 0x10 +mat 11 +refs 4 +13 0 0 +14 0 0 +8 0 0 +7 0 0 +SURF 0x10 +mat 11 +refs 4 +14 0 0 +15 0 0 +9 0 0 +8 0 0 +SURF 0x10 +mat 11 +refs 4 +15 0 0 +16 0 0 +11 0 0 +9 0 0 +SURF 0x10 +mat 11 +refs 4 +16 0 0 +17 0 0 +10 0 0 +11 0 0 +kids 0 +OBJECT poly +name "gearshift.001" +data 10 +Circle.014 +crease 30 +numvert 74 +1.638877 1.119238 0.041702 +1.644194 1.108895 0.041702 +1.645652 1.097357 0.041702 +1.643076 1.086016 0.041702 +1.636777 1.07624 0.041702 +1.627514 1.069207 0.041702 +1.616405 1.065768 0.041702 +1.604789 1.066335 0.041702 +1.602536 1.067786 0.049064 +1.612172 1.068495 0.055538 +1.621811 1.072882 0.060344 +1.630291 1.080419 0.0629 +1.636591 1.090195 0.0629 +1.639949 1.101032 0.060344 +1.63996 1.111623 0.055538 +1.636624 1.12069 0.049064 +1.630921 1.124365 0.052982 +1.629241 1.118529 0.0629 +1.625507 1.110337 0.070262 +1.620168 1.100776 0.07418 +1.613869 1.091 0.07418 +1.607369 1.082188 0.070262 +1.601453 1.075402 0.0629 +1.596833 1.071461 0.052982 +1.590347 1.07564 0.051621 +1.589264 1.083256 0.060344 +1.590947 1.092769 0.066818 +1.595194 1.103033 0.070262 +1.601494 1.112809 0.070262 +1.609085 1.120919 0.066818 +1.617052 1.126383 0.060344 +1.624435 1.128544 0.051621 +1.620202 1.131271 0.04562 +1.609097 1.131509 0.049064 +1.598366 1.127825 0.051621 +1.589305 1.120663 0.052982 +1.583005 1.110887 0.052982 +1.580228 1.099676 0.051621 +1.581308 1.088382 0.049064 +1.586114 1.078368 0.04562 +1.594067 1.070841 0.041702 +1.586114 1.078368 0.037785 +1.581308 1.088382 0.03434 +1.580228 1.099676 0.031784 +1.583005 1.110887 0.030423 +1.589305 1.120663 0.030423 +1.598366 1.127825 0.031784 +1.609097 1.131509 0.03434 +1.620202 1.131271 0.037785 +1.624435 1.128544 0.031784 +1.617052 1.126383 0.023061 +1.609085 1.120919 0.016587 +1.601494 1.112809 0.013142 +1.595194 1.103033 0.013142 +1.590947 1.092769 0.016587 +1.589264 1.083256 0.023061 +1.590347 1.07564 0.031784 +1.596833 1.071461 0.030423 +1.601453 1.075402 0.020504 +1.607369 1.082188 0.013142 +1.613869 1.091 0.009225 +1.620168 1.100776 0.009225 +1.625507 1.110337 0.013142 +1.629241 1.118529 0.020504 +1.630921 1.124365 0.030423 +1.636624 1.12069 0.03434 +1.63996 1.111623 0.027866 +1.639949 1.101032 0.023061 +1.636591 1.090195 0.020504 +1.630291 1.080419 0.020504 +1.621811 1.072882 0.023061 +1.612172 1.068495 0.027866 +1.602536 1.067786 0.03434 +1.630343 1.127139 0.041702 +numsurf 81 +SURF 0x10 +mat 12 +refs 3 +15 0 0 +0 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 4 +0 0 0 +15 0 0 +14 0 0 +1 0 0 +SURF 0x10 +mat 12 +refs 4 +13 0 0 +2 0 0 +1 0 0 +14 0 0 +SURF 0x10 +mat 12 +refs 4 +12 0 0 +3 0 0 +2 0 0 +13 0 0 +SURF 0x10 +mat 12 +refs 4 +11 0 0 +4 0 0 +3 0 0 +12 0 0 +SURF 0x10 +mat 12 +refs 4 +10 0 0 +5 0 0 +4 0 0 +11 0 0 +SURF 0x10 +mat 12 +refs 4 +9 0 0 +6 0 0 +5 0 0 +10 0 0 +SURF 0x10 +mat 12 +refs 4 +8 0 0 +7 0 0 +6 0 0 +9 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +7 0 0 +8 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +8 0 0 +23 0 0 +SURF 0x10 +mat 12 +refs 4 +23 0 0 +8 0 0 +9 0 0 +22 0 0 +SURF 0x10 +mat 12 +refs 4 +22 0 0 +9 0 0 +10 0 0 +21 0 0 +SURF 0x10 +mat 12 +refs 4 +21 0 0 +10 0 0 +11 0 0 +20 0 0 +SURF 0x10 +mat 12 +refs 4 +20 0 0 +11 0 0 +12 0 0 +19 0 0 +SURF 0x10 +mat 12 +refs 4 +19 0 0 +12 0 0 +13 0 0 +18 0 0 +SURF 0x10 +mat 12 +refs 4 +18 0 0 +13 0 0 +14 0 0 +17 0 0 +SURF 0x10 +mat 12 +refs 4 +17 0 0 +14 0 0 +15 0 0 +16 0 0 +SURF 0x10 +mat 12 +refs 3 +16 0 0 +15 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 3 +31 0 0 +16 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 4 +30 0 0 +17 0 0 +16 0 0 +31 0 0 +SURF 0x10 +mat 12 +refs 4 +29 0 0 +18 0 0 +17 0 0 +30 0 0 +SURF 0x10 +mat 12 +refs 4 +28 0 0 +19 0 0 +18 0 0 +29 0 0 +SURF 0x10 +mat 12 +refs 4 +27 0 0 +20 0 0 +19 0 0 +28 0 0 +SURF 0x10 +mat 12 +refs 4 +26 0 0 +21 0 0 +20 0 0 +27 0 0 +SURF 0x10 +mat 12 +refs 4 +25 0 0 +22 0 0 +21 0 0 +26 0 0 +SURF 0x10 +mat 12 +refs 4 +24 0 0 +23 0 0 +22 0 0 +25 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +23 0 0 +24 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +24 0 0 +39 0 0 +SURF 0x10 +mat 12 +refs 4 +39 0 0 +24 0 0 +25 0 0 +38 0 0 +SURF 0x10 +mat 12 +refs 4 +38 0 0 +25 0 0 +26 0 0 +37 0 0 +SURF 0x10 +mat 12 +refs 4 +37 0 0 +26 0 0 +27 0 0 +36 0 0 +SURF 0x10 +mat 12 +refs 4 +36 0 0 +27 0 0 +28 0 0 +35 0 0 +SURF 0x10 +mat 12 +refs 4 +35 0 0 +28 0 0 +29 0 0 +34 0 0 +SURF 0x10 +mat 12 +refs 4 +34 0 0 +29 0 0 +30 0 0 +33 0 0 +SURF 0x10 +mat 12 +refs 4 +33 0 0 +30 0 0 +31 0 0 +32 0 0 +SURF 0x10 +mat 12 +refs 3 +32 0 0 +31 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 3 +48 0 0 +32 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 4 +47 0 0 +33 0 0 +32 0 0 +48 0 0 +SURF 0x10 +mat 12 +refs 4 +46 0 0 +34 0 0 +33 0 0 +47 0 0 +SURF 0x10 +mat 12 +refs 4 +45 0 0 +35 0 0 +34 0 0 +46 0 0 +SURF 0x10 +mat 12 +refs 4 +44 0 0 +36 0 0 +35 0 0 +45 0 0 +SURF 0x10 +mat 12 +refs 4 +43 0 0 +37 0 0 +36 0 0 +44 0 0 +SURF 0x10 +mat 12 +refs 4 +42 0 0 +38 0 0 +37 0 0 +43 0 0 +SURF 0x10 +mat 12 +refs 4 +41 0 0 +39 0 0 +38 0 0 +42 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +39 0 0 +41 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +41 0 0 +56 0 0 +SURF 0x10 +mat 12 +refs 4 +56 0 0 +41 0 0 +42 0 0 +55 0 0 +SURF 0x10 +mat 12 +refs 4 +55 0 0 +42 0 0 +43 0 0 +54 0 0 +SURF 0x10 +mat 12 +refs 4 +54 0 0 +43 0 0 +44 0 0 +53 0 0 +SURF 0x10 +mat 12 +refs 4 +53 0 0 +44 0 0 +45 0 0 +52 0 0 +SURF 0x10 +mat 12 +refs 4 +52 0 0 +45 0 0 +46 0 0 +51 0 0 +SURF 0x10 +mat 12 +refs 4 +51 0 0 +46 0 0 +47 0 0 +50 0 0 +SURF 0x10 +mat 12 +refs 4 +50 0 0 +47 0 0 +48 0 0 +49 0 0 +SURF 0x10 +mat 12 +refs 3 +49 0 0 +48 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 3 +64 0 0 +49 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 4 +63 0 0 +50 0 0 +49 0 0 +64 0 0 +SURF 0x10 +mat 12 +refs 4 +62 0 0 +51 0 0 +50 0 0 +63 0 0 +SURF 0x10 +mat 12 +refs 4 +61 0 0 +52 0 0 +51 0 0 +62 0 0 +SURF 0x10 +mat 12 +refs 4 +60 0 0 +53 0 0 +52 0 0 +61 0 0 +SURF 0x10 +mat 12 +refs 4 +59 0 0 +54 0 0 +53 0 0 +60 0 0 +SURF 0x10 +mat 12 +refs 4 +58 0 0 +55 0 0 +54 0 0 +59 0 0 +SURF 0x10 +mat 12 +refs 4 +57 0 0 +56 0 0 +55 0 0 +58 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +56 0 0 +57 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +57 0 0 +72 0 0 +SURF 0x10 +mat 12 +refs 4 +72 0 0 +57 0 0 +58 0 0 +71 0 0 +SURF 0x10 +mat 12 +refs 4 +71 0 0 +58 0 0 +59 0 0 +70 0 0 +SURF 0x10 +mat 12 +refs 4 +70 0 0 +59 0 0 +60 0 0 +69 0 0 +SURF 0x10 +mat 12 +refs 4 +69 0 0 +60 0 0 +61 0 0 +68 0 0 +SURF 0x10 +mat 12 +refs 4 +68 0 0 +61 0 0 +62 0 0 +67 0 0 +SURF 0x10 +mat 12 +refs 4 +67 0 0 +62 0 0 +63 0 0 +66 0 0 +SURF 0x10 +mat 12 +refs 4 +66 0 0 +63 0 0 +64 0 0 +65 0 0 +SURF 0x10 +mat 12 +refs 3 +65 0 0 +64 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 3 +0 0 0 +65 0 0 +73 0 0 +SURF 0x10 +mat 12 +refs 4 +65 0 0 +0 0 0 +1 0 0 +66 0 0 +SURF 0x10 +mat 12 +refs 4 +2 0 0 +67 0 0 +66 0 0 +1 0 0 +SURF 0x10 +mat 12 +refs 4 +3 0 0 +68 0 0 +67 0 0 +2 0 0 +SURF 0x10 +mat 12 +refs 4 +4 0 0 +69 0 0 +68 0 0 +3 0 0 +SURF 0x10 +mat 12 +refs 4 +5 0 0 +70 0 0 +69 0 0 +4 0 0 +SURF 0x10 +mat 12 +refs 4 +6 0 0 +71 0 0 +70 0 0 +5 0 0 +SURF 0x10 +mat 12 +refs 4 +7 0 0 +72 0 0 +71 0 0 +6 0 0 +SURF 0x10 +mat 12 +refs 3 +40 0 0 +72 0 0 +7 0 0 +kids 0 +OBJECT poly +name "screen" +data 9 +Plane.010 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 120 +1.145669 0.99672 -0.665805 +1.145717 0.986869 -0.665805 +1.145717 0.986869 0.665806 +1.145669 0.99672 0.665806 +1.145669 0.99672 -0.620687 +1.145717 0.986869 -0.620687 +1.145717 0.986869 0.620687 +1.145669 0.99672 0.620687 +1.15025 1.008588 -0.665805 +1.150298 0.975 -0.665805 +1.150298 0.975001 0.665806 +1.15025 1.008588 0.665806 +1.15025 1.008588 -0.620687 +1.150298 0.975 -0.620687 +1.15025 1.008588 0.620687 +1.150298 0.975001 0.620687 +1.161244 1.017334 -0.665805 +1.161293 0.966254 -0.665805 +1.161293 0.966255 0.665806 +1.161244 1.017334 0.665806 +1.161244 1.017334 -0.620687 +1.161293 0.966254 -0.620687 +1.161244 1.017334 0.620687 +1.161293 0.966255 0.620687 +1.181401 1.017334 -0.665805 +1.181449 0.966254 -0.665805 +1.181449 0.966255 0.665806 +1.181401 1.017334 0.665806 +1.181401 1.017334 -0.620687 +1.181449 0.966254 -0.620687 +1.181449 0.966255 0.620687 +1.181401 1.017334 0.620687 +1.196976 1.008744 -0.665805 +1.197024 0.974844 -0.665805 +1.197024 0.974845 0.665806 +1.196976 1.008744 0.665806 +1.197024 0.974844 -0.620687 +1.196976 1.008744 -0.620687 +1.196976 1.008744 0.620687 +1.197024 0.974845 0.620687 +1.258058 1.008744 -0.665805 +1.26421 0.974844 -0.665805 +1.26421 0.974845 0.665806 +1.258057 1.008744 0.665806 +1.258058 1.008744 -0.620687 +1.26421 0.974844 -0.620687 +1.26421 0.974845 0.620687 +1.258057 1.008744 0.620687 +1.291957 1.019738 -0.665805 +1.31002 0.991336 -0.665805 +1.310019 0.991336 0.665806 +1.291957 1.019738 0.665806 +1.31002 0.991336 -0.620687 +1.291957 1.019738 -0.620687 +1.291957 1.019738 0.620687 +1.310019 0.991336 0.620687 +1.326772 1.041727 -0.665805 +1.352165 1.019738 -0.665805 +1.352164 1.019738 0.665806 +1.326772 1.041727 0.665806 +1.352165 1.019738 -0.620687 +1.326772 1.041727 -0.620687 +1.352164 1.019738 0.620687 +1.326772 1.041727 0.620687 +1.354258 1.068296 -0.665805 +1.388812 1.056386 -0.665805 +1.388812 1.056386 0.665806 +1.354258 1.068297 0.665806 +1.354258 1.068296 -0.620687 +1.388812 1.056386 -0.620687 +1.354258 1.068297 0.620687 +1.388812 1.056386 0.620687 +1.444319 1.324749 -0.665805 +1.477041 1.324749 -0.665805 +1.389165 1.150936 -0.665805 +1.421887 1.150936 -0.665805 +1.546748 1.634888 -0.665805 +1.57947 1.634888 -0.665805 +1.570386 1.700385 -0.665805 +1.603108 1.700385 -0.665805 +1.444319 1.324749 0.665806 +1.477041 1.324749 0.665806 +1.389164 1.150936 0.665806 +1.421886 1.150936 0.665806 +1.57947 1.634889 0.665806 +1.546748 1.634889 0.665806 +1.603108 1.700385 0.665806 +1.570386 1.700385 0.665806 +1.477041 1.324749 -0.620687 +1.444319 1.324749 -0.620687 +1.389165 1.150936 -0.620687 +1.421887 1.150936 -0.620687 +1.477041 1.324749 0.620687 +1.444319 1.324749 0.620687 +1.389164 1.150936 0.620687 +1.421886 1.150936 0.620687 +1.546748 1.634889 0.620687 +1.570386 1.700385 0.620687 +1.57947 1.634889 0.620687 +1.603108 1.700385 0.620687 +1.570386 1.700385 -0.620687 +1.546748 1.634888 -0.620687 +1.603108 1.700385 -0.620687 +1.57947 1.634888 -0.620687 +1.421886 1.150936 0.022271 +1.421886 1.150936 -0.02227 +1.389164 1.150936 0.022271 +1.389164 1.150936 -0.02227 +1.444319 1.324749 -0.02227 +1.444319 1.324749 0.022271 +1.477041 1.324749 -0.02227 +1.477041 1.324749 0.022271 +1.603108 1.700385 0.022271 +1.57947 1.634888 0.022271 +1.57947 1.634888 -0.02227 +1.603108 1.700385 -0.02227 +1.570386 1.700385 0.02227 +1.546748 1.634888 0.022271 +1.546748 1.634888 -0.02227 +1.570386 1.700385 -0.02227 +numsurf 128 +SURF 0x00 +mat 9 +refs 4 +7 0.347220271826 0.516264557838 +6 0.347220271826 0.514093577862 +2 0.357163280249 0.514093577862 +3 0.357163280249 0.516264557838 +SURF 0x00 +mat 9 +refs 4 +0 0.0637085288763 0.516264557838 +1 0.0637085288763 0.514093577862 +5 0.0736517161131 0.514093577862 +4 0.0736517161131 0.516264557838 +SURF 0x00 +mat 9 +refs 4 +0 0.0637085288763 0.516264557838 +4 0.0736517161131 0.516264557838 +12 0.0736517161131 0.518879950047 +8 0.0637085288763 0.518879950047 +SURF 0x00 +mat 9 +refs 4 +1 0.0637085288763 0.514093577862 +0 0.0637085288763 0.516264557838 +8 0.0637085288763 0.518879950047 +9 0.0637085288763 0.511478126049 +SURF 0x00 +mat 9 +refs 4 +9 0.0637085288763 0.511478126049 +13 0.0736517161131 0.511478126049 +5 0.0736517161131 0.514093577862 +1 0.0637085288763 0.514093577862 +SURF 0x00 +mat 9 +refs 4 +15 0.347220271826 0.511478245258 +10 0.357163280249 0.511478245258 +2 0.357163280249 0.514093577862 +6 0.347220271826 0.514093577862 +SURF 0x00 +mat 9 +refs 4 +10 0.357163280249 0.511478245258 +11 0.357163280249 0.518880069256 +3 0.357163280249 0.516264557838 +2 0.357163280249 0.514093577862 +SURF 0x00 +mat 9 +refs 4 +11 0.357163280249 0.518880069256 +14 0.347220271826 0.518880069256 +7 0.347220271826 0.516264557838 +3 0.357163280249 0.516264557838 +SURF 0x00 +mat 9 +refs 4 +13 0.0736517161131 0.511478126049 +12 0.0736517161131 0.518879950047 +4 0.0736517161131 0.516264557838 +5 0.0736517161131 0.514093577862 +SURF 0x00 +mat 9 +refs 4 +14 0.347220271826 0.518880069256 +15 0.347220271826 0.511478245258 +6 0.347220271826 0.514093577862 +7 0.347220271826 0.516264557838 +SURF 0x00 +mat 9 +refs 4 +20 0.0736517161131 0.520807445049 +16 0.0637085288763 0.520807445049 +8 0.0637085288763 0.518879950047 +12 0.0736517161131 0.518879950047 +SURF 0x00 +mat 9 +refs 4 +16 0.0637085288763 0.520807445049 +17 0.0637085288763 0.509550631046 +9 0.0637085288763 0.511478126049 +8 0.0637085288763 0.518879950047 +SURF 0x00 +mat 9 +refs 4 +17 0.0637085288763 0.509550631046 +21 0.0736517161131 0.509550631046 +13 0.0736517161131 0.511478126049 +9 0.0637085288763 0.511478126049 +SURF 0x00 +mat 9 +refs 4 +23 0.347220271826 0.50955080986 +18 0.357163280249 0.50955080986 +10 0.357163280249 0.511478245258 +15 0.347220271826 0.511478245258 +SURF 0x00 +mat 9 +refs 4 +18 0.357163280249 0.50955080986 +19 0.357163280249 0.520807564259 +11 0.357163280249 0.518880069256 +10 0.357163280249 0.511478245258 +SURF 0x00 +mat 9 +refs 4 +19 0.357163280249 0.520807564259 +22 0.347220271826 0.520807564259 +14 0.347220271826 0.518880069256 +11 0.357163280249 0.518880069256 +SURF 0x00 +mat 9 +refs 4 +21 0.0736517161131 0.509550631046 +20 0.0736517161131 0.520807445049 +12 0.0736517161131 0.518879950047 +13 0.0736517161131 0.511478126049 +SURF 0x00 +mat 9 +refs 4 +22 0.347220271826 0.520807564259 +23 0.347220271826 0.50955080986 +15 0.347220271826 0.511478245258 +14 0.347220271826 0.518880069256 +SURF 0x00 +mat 9 +refs 4 +28 0.0736517161131 0.520807445049 +24 0.0637085288763 0.520807445049 +16 0.0637085288763 0.520807445049 +20 0.0736517161131 0.520807445049 +SURF 0x00 +mat 9 +refs 4 +24 0.0637085288763 0.520807445049 +25 0.0637085288763 0.509550631046 +17 0.0637085288763 0.509550631046 +16 0.0637085288763 0.520807445049 +SURF 0x00 +mat 9 +refs 4 +25 0.0637085288763 0.509550631046 +29 0.0736517161131 0.509550631046 +21 0.0736517161131 0.509550631046 +17 0.0637085288763 0.509550631046 +SURF 0x00 +mat 9 +refs 4 +30 0.347220271826 0.50955080986 +26 0.357163280249 0.50955080986 +18 0.357163280249 0.50955080986 +23 0.347220271826 0.50955080986 +SURF 0x00 +mat 9 +refs 4 +26 0.357163280249 0.50955080986 +27 0.357163280249 0.520807564259 +19 0.357163280249 0.520807564259 +18 0.357163280249 0.50955080986 +SURF 0x00 +mat 9 +refs 4 +27 0.357163280249 0.520807564259 +31 0.347220271826 0.520807564259 +22 0.347220271826 0.520807564259 +19 0.357163280249 0.520807564259 +SURF 0x00 +mat 9 +refs 4 +29 0.0736517161131 0.509550631046 +28 0.0736517161131 0.520807445049 +20 0.0736517161131 0.520807445049 +21 0.0736517161131 0.509550631046 +SURF 0x00 +mat 9 +refs 4 +31 0.347220271826 0.520807564259 +30 0.347220271826 0.50955080986 +23 0.347220271826 0.50955080986 +22 0.347220271826 0.520807564259 +SURF 0x00 +mat 9 +refs 4 +37 0.0736517161131 0.518914341927 +32 0.0637085288763 0.518914341927 +24 0.0637085288763 0.520807445049 +28 0.0736517161131 0.520807445049 +SURF 0x00 +mat 9 +refs 4 +32 0.0637085288763 0.518914341927 +33 0.0637085288763 0.511443734169 +25 0.0637085288763 0.509550631046 +24 0.0637085288763 0.520807445049 +SURF 0x00 +mat 9 +refs 4 +33 0.0637085288763 0.511443734169 +36 0.0736517161131 0.511443734169 +29 0.0736517161131 0.509550631046 +25 0.0637085288763 0.509550631046 +SURF 0x00 +mat 9 +refs 4 +39 0.347220271826 0.511443853378 +34 0.357163280249 0.511443853378 +26 0.357163280249 0.50955080986 +30 0.347220271826 0.50955080986 +SURF 0x00 +mat 9 +refs 4 +34 0.357163280249 0.511443853378 +35 0.357163280249 0.518914401531 +27 0.357163280249 0.520807564259 +26 0.357163280249 0.50955080986 +SURF 0x00 +mat 9 +refs 4 +35 0.357163280249 0.518914401531 +38 0.347220271826 0.518914401531 +31 0.347220271826 0.520807564259 +27 0.357163280249 0.520807564259 +SURF 0x00 +mat 9 +refs 4 +36 0.0736517161131 0.511443734169 +37 0.0736517161131 0.518914341927 +28 0.0736517161131 0.520807445049 +29 0.0736517161131 0.509550631046 +SURF 0x00 +mat 9 +refs 4 +38 0.347220271826 0.518914401531 +39 0.347220271826 0.511443853378 +30 0.347220271826 0.50955080986 +31 0.347220271826 0.520807564259 +SURF 0x00 +mat 9 +refs 4 +44 0.0736517161131 0.518914341927 +40 0.0637085288763 0.518914341927 +32 0.0637085288763 0.518914341927 +37 0.0736517161131 0.518914341927 +SURF 0x00 +mat 9 +refs 4 +40 0.0637085288763 0.518914341927 +41 0.0637085288763 0.511443734169 +33 0.0637085288763 0.511443734169 +32 0.0637085288763 0.518914341927 +SURF 0x00 +mat 9 +refs 4 +41 0.0637085288763 0.511443734169 +45 0.0736517161131 0.511443734169 +36 0.0736517161131 0.511443734169 +33 0.0637085288763 0.511443734169 +SURF 0x00 +mat 9 +refs 4 +46 0.347220271826 0.511443853378 +42 0.357163280249 0.511443853378 +34 0.357163280249 0.511443853378 +39 0.347220271826 0.511443853378 +SURF 0x00 +mat 9 +refs 4 +42 0.357163280249 0.511443853378 +43 0.357163280249 0.518914401531 +35 0.357163280249 0.518914401531 +34 0.357163280249 0.511443853378 +SURF 0x00 +mat 9 +refs 4 +43 0.357163280249 0.518914401531 +47 0.347220271826 0.518914401531 +38 0.347220271826 0.518914401531 +35 0.357163280249 0.518914401531 +SURF 0x00 +mat 9 +refs 4 +45 0.0736517161131 0.511443734169 +44 0.0736517161131 0.518914341927 +37 0.0736517161131 0.518914341927 +36 0.0736517161131 0.511443734169 +SURF 0x00 +mat 9 +refs 4 +47 0.347220271826 0.518914401531 +46 0.347220271826 0.511443853378 +39 0.347220271826 0.511443853378 +38 0.347220271826 0.518914401531 +SURF 0x00 +mat 9 +refs 4 +53 0.0736517161131 0.521337151527 +48 0.0637085288763 0.521337151527 +40 0.0637085288763 0.518914341927 +44 0.0736517161131 0.518914341927 +SURF 0x00 +mat 9 +refs 4 +48 0.0637085288763 0.521337151527 +49 0.0637085288763 0.51507806778 +41 0.0637085288763 0.511443734169 +40 0.0637085288763 0.518914341927 +SURF 0x00 +mat 9 +refs 4 +49 0.0637085288763 0.51507806778 +52 0.0736517161131 0.51507806778 +45 0.0736517161131 0.511443734169 +41 0.0637085288763 0.511443734169 +SURF 0x00 +mat 9 +refs 4 +55 0.347220271826 0.515078246593 +50 0.357163280249 0.515078246593 +42 0.357163280249 0.511443853378 +46 0.347220271826 0.511443853378 +SURF 0x00 +mat 9 +refs 4 +50 0.357163280249 0.515078246593 +51 0.357163280249 0.521337270737 +43 0.357163280249 0.518914401531 +42 0.357163280249 0.511443853378 +SURF 0x00 +mat 9 +refs 4 +51 0.357163280249 0.521337270737 +54 0.347220271826 0.521337270737 +47 0.347220271826 0.518914401531 +43 0.357163280249 0.518914401531 +SURF 0x00 +mat 9 +refs 4 +52 0.0736517161131 0.51507806778 +53 0.0736517161131 0.521337151527 +44 0.0736517161131 0.518914341927 +45 0.0736517161131 0.511443734169 +SURF 0x00 +mat 9 +refs 4 +54 0.347220271826 0.521337270737 +55 0.347220271826 0.515078246593 +46 0.347220271826 0.511443853378 +47 0.347220271826 0.518914401531 +SURF 0x00 +mat 9 +refs 4 +61 0.0736517161131 0.526183009148 +56 0.0637085288763 0.526183009148 +48 0.0637085288763 0.521337151527 +53 0.0736517161131 0.521337151527 +SURF 0x00 +mat 9 +refs 4 +56 0.0637085288763 0.526183009148 +57 0.0637085288763 0.521337151527 +49 0.0637085288763 0.51507806778 +48 0.0637085288763 0.521337151527 +SURF 0x00 +mat 9 +refs 4 +57 0.0637085288763 0.521337151527 +60 0.0736517161131 0.521337151527 +52 0.0736517161131 0.51507806778 +49 0.0637085288763 0.51507806778 +SURF 0x00 +mat 9 +refs 4 +62 0.347220271826 0.521337270737 +58 0.357163280249 0.521337270737 +50 0.357163280249 0.515078246593 +55 0.347220271826 0.515078246593 +SURF 0x00 +mat 9 +refs 4 +58 0.357163280249 0.521337270737 +59 0.357163280249 0.526183009148 +51 0.357163280249 0.521337270737 +50 0.357163280249 0.515078246593 +SURF 0x00 +mat 9 +refs 4 +59 0.357163280249 0.526183009148 +63 0.347220271826 0.526183009148 +54 0.347220271826 0.521337270737 +51 0.357163280249 0.521337270737 +SURF 0x00 +mat 9 +refs 4 +60 0.0736517161131 0.521337151527 +61 0.0736517161131 0.526183009148 +53 0.0736517161131 0.521337151527 +52 0.0736517161131 0.51507806778 +SURF 0x00 +mat 9 +refs 4 +63 0.347220271826 0.526183009148 +62 0.347220271826 0.521337270737 +55 0.347220271826 0.515078246593 +54 0.347220271826 0.521337270737 +SURF 0x00 +mat 9 +refs 4 +68 0.0736517161131 0.532038271427 +64 0.0637085288763 0.532038271427 +56 0.0637085288763 0.526183009148 +61 0.0736517161131 0.526183009148 +SURF 0x00 +mat 9 +refs 4 +64 0.0637085288763 0.532038271427 +65 0.0637085288763 0.529413580894 +57 0.0637085288763 0.521337151527 +56 0.0637085288763 0.526183009148 +SURF 0x00 +mat 9 +refs 4 +65 0.0637085288763 0.529413580894 +69 0.0736517161131 0.529413580894 +60 0.0736517161131 0.521337151527 +57 0.0637085288763 0.521337151527 +SURF 0x00 +mat 9 +refs 4 +71 0.347220271826 0.529413640499 +66 0.357163280249 0.529413640499 +58 0.357163280249 0.521337270737 +62 0.347220271826 0.521337270737 +SURF 0x00 +mat 9 +refs 4 +66 0.357163280249 0.529413640499 +67 0.357163280249 0.532038390636 +59 0.357163280249 0.526183009148 +58 0.357163280249 0.521337270737 +SURF 0x00 +mat 9 +refs 4 +67 0.357163280249 0.532038390636 +70 0.347220271826 0.532038390636 +63 0.347220271826 0.526183009148 +59 0.357163280249 0.526183009148 +SURF 0x00 +mat 9 +refs 4 +69 0.0736517161131 0.529413580894 +68 0.0736517161131 0.532038271427 +61 0.0736517161131 0.526183009148 +60 0.0736517161131 0.521337151527 +SURF 0x00 +mat 9 +refs 4 +70 0.347220271826 0.532038390636 +71 0.347220271826 0.529413640499 +62 0.347220271826 0.521337270737 +63 0.347220271826 0.526183009148 +SURF 0x00 +mat 9 +refs 4 +90 0.0736517161131 0.550250172615 +74 0.0637085288763 0.550250172615 +64 0.0637085288763 0.532038271427 +68 0.0736517161131 0.532038271427 +SURF 0x00 +mat 9 +refs 4 +74 0.0637085288763 0.550250172615 +75 0.0637085288763 0.55025011301 +65 0.0637085288763 0.529413580894 +64 0.0637085288763 0.532038271427 +SURF 0x00 +mat 9 +refs 4 +75 0.225045889616 0.178402796388 +91 0.225045889616 0.18834592402 +69 0.2042093575 0.18834592402 +65 0.2042093575 0.178402796388 +SURF 0x00 +mat 9 +refs 4 +95 0.225046008825 0.461914569139 +83 0.225046008825 0.471857696772 +66 0.204209417105 0.471857696772 +71 0.204209417105 0.461914569139 +SURF 0x00 +mat 9 +refs 4 +83 0.357163280249 0.550250172615 +82 0.357163280249 0.550250172615 +67 0.357163280249 0.532038390636 +66 0.357163280249 0.529413640499 +SURF 0x00 +mat 9 +refs 4 +82 0.357163280249 0.550250172615 +94 0.347220271826 0.550250172615 +70 0.347220271826 0.532038390636 +67 0.357163280249 0.532038390636 +SURF 0x00 +mat 9 +refs 4 +91 0.0736517161131 0.55025011301 +90 0.0736517161131 0.550250172615 +68 0.0736517161131 0.532038271427 +69 0.0736517161131 0.529413580894 +SURF 0x00 +mat 9 +refs 4 +94 0.347220271826 0.550250172615 +95 0.347220271826 0.550250172615 +71 0.347220271826 0.529413640499 +70 0.347220271826 0.532038390636 +SURF 0x00 +mat 9 +refs 4 +77 0.331697314978 0.178402796388 +103 0.331697314978 0.18834592402 +88 0.263349980116 0.18834592402 +73 0.263349980116 0.178402796388 +SURF 0x00 +mat 9 +refs 4 +84 0.331697434187 0.471857696772 +81 0.263350099325 0.471857696772 +92 0.263350099325 0.461914569139 +98 0.331697434187 0.461914569139 +SURF 0x00 +mat 9 +refs 4 +96 0.347220271826 0.656901597977 +93 0.347220271826 0.588554263115 +80 0.357163280249 0.588554263115 +85 0.357163280249 0.656901597977 +SURF 0x00 +mat 9 +refs 4 +76 0.0637085288763 0.656901538372 +72 0.0637085288763 0.588554143906 +89 0.0736517161131 0.588554143906 +101 0.0736517161131 0.656901538372 +SURF 0x00 +mat 9 +refs 4 +85 0.357163280249 0.656901597977 +80 0.357163280249 0.588554263115 +81 0.357163280249 0.588554263115 +84 0.357163280249 0.656901597977 +SURF 0x00 +mat 9 +refs 4 +98 0.347220271826 0.656901597977 +92 0.347220271826 0.588554263115 +93 0.347220271826 0.588554263115 +96 0.347220271826 0.656901597977 +SURF 0x00 +mat 9 +refs 4 +103 0.0736515372992 0.656901538372 +101 0.0736517161131 0.656901538372 +89 0.0736517161131 0.588554143906 +88 0.0736517161131 0.588554143906 +SURF 0x00 +mat 9 +refs 4 +77 0.0637085288763 0.656901538372 +73 0.0637085288763 0.588554143906 +72 0.0637085288763 0.588554143906 +76 0.0637085288763 0.656901538372 +SURF 0x00 +mat 9 +refs 4 +75 0.0637085288763 0.55025011301 +74 0.0637085288763 0.550250172615 +72 0.0637085288763 0.588554143906 +73 0.0637085288763 0.588554143906 +SURF 0x00 +mat 9 +refs 4 +83 0.357163280249 0.550250172615 +81 0.357163280249 0.588554263115 +80 0.357163280249 0.588554263115 +82 0.357163280249 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +87 0.357163280249 0.671335339546 +85 0.357163280249 0.656901597977 +84 0.357163280249 0.656901597977 +86 0.357163280249 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +79 0.0637085288763 0.671335339546 +77 0.0637085288763 0.656901538372 +76 0.0637085288763 0.656901538372 +78 0.0637085288763 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +89 0.0736517161131 0.588554143906 +72 0.0637085288763 0.588554143906 +74 0.0637085288763 0.550250172615 +90 0.0736517161131 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +91 0.225045889616 0.18834592402 +75 0.225045889616 0.178402796388 +73 0.263349980116 0.178402796388 +88 0.263349980116 0.18834592402 +SURF 0x00 +mat 9 +refs 4 +90 0.0736517161131 0.550250172615 +91 0.0736517161131 0.55025011301 +75 0.0637085288763 0.55025011301 +74 0.0637085288763 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +100 0.0736517161131 0.671335339546 +78 0.0637085288763 0.671335339546 +76 0.0637085288763 0.656901538372 +101 0.0736517161131 0.656901538372 +SURF 0x00 +mat 9 +refs 4 +103 0.331697314978 0.18834592402 +77 0.331697314978 0.178402796388 +79 0.346131175756 0.178402796388 +102 0.346131175756 0.18834592402 +SURF 0x00 +mat 9 +refs 4 +102 0.0736515372992 0.671335339546 +79 0.0637085288763 0.671335339546 +78 0.0637085288763 0.671335339546 +100 0.0736517161131 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +94 0.347220271826 0.550250172615 +82 0.357163280249 0.550250172615 +80 0.357163280249 0.588554263115 +93 0.347220271826 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +92 0.263350099325 0.461914569139 +81 0.263350099325 0.471857696772 +83 0.225046008825 0.471857696772 +95 0.225046008825 0.461914569139 +SURF 0x00 +mat 9 +refs 4 +95 0.347220271826 0.550250172615 +83 0.357163280249 0.550250172615 +82 0.357163280249 0.550250172615 +94 0.347220271826 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +96 0.347220271826 0.656901597977 +85 0.357163280249 0.656901597977 +87 0.357163280249 0.671335339546 +97 0.347220271826 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +99 0.346131175756 0.461914569139 +86 0.346131175756 0.471857696772 +84 0.331697434187 0.471857696772 +98 0.331697434187 0.461914569139 +SURF 0x00 +mat 9 +refs 4 +97 0.347220271826 0.671335339546 +87 0.357163280249 0.671335339546 +86 0.357163280249 0.671335339546 +99 0.347220271826 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +89 0.0736517161131 0.588554143906 +90 0.0736517161131 0.550250172615 +91 0.0736517161131 0.55025011301 +88 0.0736517161131 0.588554143906 +SURF 0x00 +mat 9 +refs 4 +108 0.205528125167 0.588554263115 +110 0.205528125167 0.588554263115 +88 0.0736517161131 0.588554143906 +89 0.0736517161131 0.588554143906 +SURF 0x00 +mat 9 +refs 4 +107 0.205528125167 0.550250172615 +108 0.205528125167 0.588554263115 +89 0.0736517161131 0.588554143906 +90 0.0736517161131 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +110 0.263350099325 0.32022228837 +105 0.225046008825 0.32022228837 +91 0.225045889616 0.18834592402 +88 0.263349980116 0.18834592402 +SURF 0x00 +mat 9 +refs 4 +105 0.205528125167 0.550250172615 +107 0.205528125167 0.550250172615 +90 0.0736517161131 0.550250172615 +91 0.0736517161131 0.55025011301 +SURF 0x00 +mat 9 +refs 4 +92 0.347220271826 0.588554263115 +95 0.347220271826 0.550250172615 +94 0.347220271826 0.550250172615 +93 0.347220271826 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +111 0.215343818069 0.588554263115 +109 0.215343818069 0.588554263115 +93 0.347220271826 0.588554263115 +92 0.347220271826 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +109 0.215343818069 0.588554263115 +106 0.215343818069 0.550250172615 +94 0.347220271826 0.550250172615 +93 0.347220271826 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +104 0.225046008825 0.330038100481 +111 0.263350099325 0.330038100481 +92 0.263350099325 0.461914569139 +95 0.225046008825 0.461914569139 +SURF 0x00 +mat 9 +refs 4 +106 0.215343818069 0.550250172615 +104 0.215343818069 0.550250172615 +95 0.347220271826 0.550250172615 +94 0.347220271826 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +96 0.347220271826 0.656901597977 +97 0.347220271826 0.671335339546 +99 0.347220271826 0.671335339546 +98 0.347220271826 0.656901597977 +SURF 0x00 +mat 9 +refs 4 +116 0.215343818069 0.671335339546 +117 0.215343818069 0.656901538372 +96 0.347220271826 0.656901597977 +97 0.347220271826 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +113 0.331697314978 0.330038100481 +112 0.346131175756 0.330038100481 +99 0.346131175756 0.461914569139 +98 0.331697434187 0.461914569139 +SURF 0x00 +mat 9 +refs 4 +117 0.215343818069 0.656901538372 +113 0.215343818069 0.656901538372 +98 0.347220271826 0.656901597977 +96 0.347220271826 0.656901597977 +SURF 0x00 +mat 9 +refs 4 +112 0.215343818069 0.671335339546 +116 0.215343818069 0.671335339546 +97 0.347220271826 0.671335339546 +99 0.347220271826 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +100 0.0736517161131 0.671335339546 +101 0.0736517161131 0.656901538372 +103 0.0736515372992 0.656901538372 +102 0.0736515372992 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +118 0.205528125167 0.656901538372 +119 0.205528125167 0.671335339546 +100 0.0736517161131 0.671335339546 +101 0.0736517161131 0.656901538372 +SURF 0x00 +mat 9 +refs 4 +115 0.346131175756 0.32022228837 +114 0.331697314978 0.32022228837 +103 0.331697314978 0.18834592402 +102 0.346131175756 0.18834592402 +SURF 0x00 +mat 9 +refs 4 +114 0.205528125167 0.656901538372 +118 0.205528125167 0.656901538372 +101 0.0736517161131 0.656901538372 +103 0.0736515372992 0.656901538372 +SURF 0x00 +mat 9 +refs 4 +119 0.205528125167 0.671335339546 +115 0.205528125167 0.671335339546 +102 0.0736515372992 0.671335339546 +100 0.0736517161131 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +107 0.205528125167 0.550250172615 +105 0.205528125167 0.550250172615 +104 0.215343818069 0.550250172615 +106 0.215343818069 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +110 0.263350099325 0.32022228837 +111 0.263350099325 0.330038100481 +104 0.225046008825 0.330038100481 +105 0.225046008825 0.32022228837 +SURF 0x00 +mat 9 +refs 4 +109 0.215343818069 0.588554263115 +108 0.205528125167 0.588554263115 +107 0.205528125167 0.550250172615 +106 0.215343818069 0.550250172615 +SURF 0x00 +mat 9 +refs 4 +117 0.215343818069 0.656901538372 +118 0.205528125167 0.656901538372 +108 0.205528125167 0.588554263115 +109 0.215343818069 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +114 0.331697314978 0.32022228837 +113 0.331697314978 0.330038100481 +111 0.263350099325 0.330038100481 +110 0.263350099325 0.32022228837 +SURF 0x00 +mat 9 +refs 4 +118 0.205528125167 0.656901538372 +114 0.205528125167 0.656901538372 +110 0.205528125167 0.588554263115 +108 0.205528125167 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +113 0.215343818069 0.656901538372 +117 0.215343818069 0.656901538372 +109 0.215343818069 0.588554263115 +111 0.215343818069 0.588554263115 +SURF 0x00 +mat 9 +refs 4 +115 0.205528125167 0.671335339546 +119 0.205528125167 0.671335339546 +116 0.215343818069 0.671335339546 +112 0.215343818069 0.671335339546 +SURF 0x00 +mat 9 +refs 4 +115 0.346131175756 0.32022228837 +112 0.346131175756 0.330038100481 +113 0.331697314978 0.330038100481 +114 0.331697314978 0.32022228837 +SURF 0x00 +mat 9 +refs 4 +119 0.205528125167 0.671335339546 +118 0.205528125167 0.656901538372 +117 0.215343818069 0.656901538372 +116 0.215343818069 0.671335339546 +kids 0 +OBJECT poly +name "fscrews.R" +data 12 +Cylinder.008 +crease 30 +numvert 70 +0.454788 0.397752 -0.703393 +0.45114 0.411367 -0.703393 +0.461107 0.421334 -0.703393 +0.474723 0.417686 -0.703393 +0.478371 0.404071 -0.703393 +0.468404 0.394104 -0.703393 +0.454788 0.397752 -0.675202 +0.45114 0.411367 -0.675202 +0.461107 0.421334 -0.675202 +0.474723 0.417686 -0.675202 +0.478371 0.404071 -0.675202 +0.468404 0.394104 -0.675202 +0.464756 0.407719 -0.703393 +0.464756 0.407719 -0.675202 +0.526378 0.492535 -0.675202 +0.526378 0.492535 -0.703393 +0.514556 0.484858 -0.675202 +0.527115 0.478458 -0.675202 +0.538937 0.486135 -0.675202 +0.538199 0.500212 -0.675202 +0.52564 0.506611 -0.675202 +0.513818 0.498934 -0.675202 +0.514556 0.484858 -0.703393 +0.527115 0.478458 -0.703393 +0.538937 0.486135 -0.703393 +0.538199 0.500212 -0.703393 +0.52564 0.506611 -0.703393 +0.513818 0.498934 -0.703393 +0.628289 0.47406 -0.703393 +0.639244 0.465189 -0.703393 +0.637039 0.451267 -0.703393 +0.623879 0.446216 -0.703393 +0.612925 0.455087 -0.703393 +0.61513 0.469009 -0.703393 +0.628289 0.47406 -0.675202 +0.639244 0.465189 -0.675202 +0.637039 0.451267 -0.675202 +0.623879 0.446216 -0.675202 +0.612925 0.455087 -0.675202 +0.61513 0.469009 -0.675202 +0.626084 0.460138 -0.703393 +0.626084 0.460138 -0.675202 +0.626084 0.3553 -0.675202 +0.626084 0.3553 -0.703393 +0.631136 0.368459 -0.675202 +0.617214 0.366254 -0.675202 +0.612162 0.353095 -0.675202 +0.621033 0.342141 -0.675202 +0.634955 0.344346 -0.675202 +0.640006 0.357505 -0.675202 +0.631136 0.368459 -0.703393 +0.617214 0.366254 -0.703393 +0.612162 0.353095 -0.703393 +0.621033 0.342141 -0.703393 +0.634955 0.344346 -0.703393 +0.640006 0.357505 -0.703393 +0.532777 0.310344 -0.703393 +0.518701 0.311082 -0.703393 +0.512301 0.323641 -0.703393 +0.519978 0.335463 -0.703393 +0.534055 0.334725 -0.703393 +0.540454 0.322166 -0.703393 +0.532777 0.310344 -0.675202 +0.518701 0.311082 -0.675202 +0.512301 0.323641 -0.675202 +0.519978 0.335463 -0.675202 +0.534055 0.334725 -0.675202 +0.540454 0.322166 -0.675202 +0.526378 0.322903 -0.703393 +0.526378 0.322903 -0.675202 +numsurf 90 +SURF 0x00 +mat 1 +refs 3 +1 0 0 +0 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +6 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +2 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +7 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +3 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +8 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +4 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +9 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +5 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +10 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +0 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +11 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +1 0 0 +7 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +2 0 0 +8 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +3 0 0 +9 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +4 0 0 +10 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +5 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 4 +5 0 0 +0 0 0 +6 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +22 0 0 +27 0 0 +21 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 4 +23 0 0 +22 0 0 +16 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 4 +24 0 0 +23 0 0 +17 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 4 +25 0 0 +24 0 0 +18 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 4 +26 0 0 +25 0 0 +19 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 4 +27 0 0 +26 0 0 +20 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +16 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +27 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +17 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +22 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +18 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +23 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +19 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +24 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +20 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +25 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +21 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +26 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +29 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +34 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +30 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +35 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +31 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +36 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +32 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +37 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +33 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +38 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +28 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +39 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 4 +28 0 0 +29 0 0 +35 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 4 +29 0 0 +30 0 0 +36 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 4 +30 0 0 +31 0 0 +37 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 4 +31 0 0 +32 0 0 +38 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 4 +32 0 0 +33 0 0 +39 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 4 +33 0 0 +28 0 0 +34 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 4 +50 0 0 +55 0 0 +49 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 4 +51 0 0 +50 0 0 +44 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 4 +52 0 0 +51 0 0 +45 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 4 +53 0 0 +52 0 0 +46 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 4 +54 0 0 +53 0 0 +47 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 4 +55 0 0 +54 0 0 +48 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +44 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +55 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +45 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +50 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +46 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +51 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +47 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +52 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +48 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +53 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +49 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +54 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +57 0 0 +56 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +62 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +58 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +63 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +59 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +64 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +60 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +65 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +61 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +66 0 0 +67 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +56 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +67 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 4 +56 0 0 +57 0 0 +63 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 4 +57 0 0 +58 0 0 +64 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 4 +58 0 0 +59 0 0 +65 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 4 +59 0 0 +60 0 0 +66 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 4 +60 0 0 +61 0 0 +67 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 4 +61 0 0 +56 0 0 +62 0 0 +67 0 0 +kids 0 +OBJECT poly +name "fwheel.R" +data 10 +Circle.033 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 218 +0.553939 0.407726 -0.538808 +0.688313 0.640469 -0.538808 +0.623496 0.667317 -0.538808 +0.553939 0.676474 -0.538808 +0.484382 0.667317 -0.538808 +0.419565 0.640469 -0.538808 +0.363906 0.59776 -0.538808 +0.321197 0.5421 -0.538808 +0.294349 0.477284 -0.538808 +0.285191 0.407726 -0.538808 +0.294349 0.338169 -0.538808 +0.321197 0.273353 -0.538808 +0.363906 0.217693 -0.538808 +0.419565 0.174984 -0.538808 +0.484382 0.148136 -0.538808 +0.553939 0.138979 -0.538808 +0.623496 0.148136 -0.538808 +0.688313 0.174984 -0.538808 +0.743973 0.217693 -0.538808 +0.786682 0.273353 -0.538808 +0.81353 0.338169 -0.538808 +0.822687 0.407727 -0.538808 +0.81353 0.477284 -0.538808 +0.743973 0.59776 -0.538808 +0.786682 0.5421 -0.538808 +0.553939 0.407726 -0.746252 +0.564352 0.425762 -0.741594 +0.559329 0.427843 -0.741594 +0.553939 0.428553 -0.741594 +0.548549 0.427843 -0.741594 +0.543526 0.425762 -0.741594 +0.539213 0.422453 -0.741594 +0.535903 0.418139 -0.741594 +0.533823 0.413117 -0.741594 +0.533113 0.407726 -0.741594 +0.533823 0.402336 -0.741594 +0.535903 0.397313 -0.741594 +0.539213 0.393 -0.741594 +0.543526 0.38969 -0.741594 +0.548549 0.38761 -0.741594 +0.553939 0.3869 -0.741594 +0.559329 0.38761 -0.741594 +0.564352 0.38969 -0.741594 +0.568666 0.393 -0.741594 +0.571975 0.397313 -0.741594 +0.574056 0.402336 -0.741594 +0.574765 0.407726 -0.741594 +0.574056 0.413117 -0.741594 +0.571975 0.418139 -0.741594 +0.568666 0.422453 -0.741594 +0.572592 0.440034 -0.720244 +0.563595 0.443761 -0.720244 +0.553939 0.445032 -0.720244 +0.544284 0.443761 -0.720244 +0.535286 0.440034 -0.720244 +0.52756 0.434105 -0.720244 +0.521632 0.426379 -0.720244 +0.517905 0.417382 -0.720244 +0.516634 0.407726 -0.720244 +0.517905 0.398071 -0.720244 +0.521632 0.389074 -0.720244 +0.52756 0.381347 -0.720244 +0.535286 0.375419 -0.720244 +0.544284 0.371692 -0.720244 +0.553939 0.370421 -0.720244 +0.563595 0.371692 -0.720244 +0.572592 0.375419 -0.720244 +0.580318 0.381347 -0.720244 +0.586247 0.389074 -0.720244 +0.589974 0.398071 -0.720244 +0.591245 0.407726 -0.720244 +0.589974 0.417382 -0.720244 +0.586247 0.426379 -0.720244 +0.580318 0.434105 -0.720244 +0.572592 0.440034 -0.682688 +0.563595 0.443761 -0.682688 +0.553939 0.445032 -0.682688 +0.544284 0.443761 -0.682688 +0.535286 0.440034 -0.682688 +0.52756 0.434105 -0.682688 +0.521632 0.426379 -0.682688 +0.517905 0.417382 -0.682688 +0.516634 0.407726 -0.682688 +0.517905 0.398071 -0.682688 +0.521632 0.389074 -0.682688 +0.52756 0.381347 -0.682688 +0.535286 0.375419 -0.682688 +0.544284 0.371692 -0.682688 +0.553939 0.370421 -0.682688 +0.563595 0.371692 -0.682688 +0.572592 0.375419 -0.682688 +0.580318 0.381347 -0.682688 +0.586247 0.389074 -0.682688 +0.589974 0.398071 -0.682688 +0.591245 0.407726 -0.682688 +0.589974 0.417382 -0.682688 +0.580318 0.434105 -0.682688 +0.586247 0.426379 -0.682688 +0.61376 0.511339 -0.682688 +0.584905 0.523291 -0.682688 +0.553939 0.527368 -0.682688 +0.522974 0.523291 -0.682688 +0.494118 0.511339 -0.682688 +0.46934 0.492325 -0.682688 +0.450327 0.467547 -0.682688 +0.438375 0.438692 -0.682688 +0.434298 0.407726 -0.682688 +0.438375 0.376761 -0.682688 +0.450327 0.347906 -0.682688 +0.46934 0.323127 -0.682688 +0.494119 0.304114 -0.682688 +0.522974 0.292162 -0.682688 +0.553939 0.288085 -0.682688 +0.584905 0.292162 -0.682688 +0.61376 0.304114 -0.682688 +0.638538 0.323127 -0.682688 +0.657552 0.347906 -0.682688 +0.669504 0.376761 -0.682688 +0.67358 0.407726 -0.682688 +0.669504 0.438692 -0.682688 +0.638538 0.492326 -0.682688 +0.657552 0.467547 -0.682688 +0.645231 0.565848 -0.665997 +0.601195 0.584088 -0.665997 +0.553939 0.59031 -0.665997 +0.506683 0.584088 -0.665997 +0.462648 0.565848 -0.665997 +0.424833 0.536832 -0.665997 +0.395818 0.499018 -0.665997 +0.377578 0.454982 -0.665997 +0.371356 0.407726 -0.665997 +0.377578 0.36047 -0.665997 +0.395818 0.316435 -0.665997 +0.424834 0.278621 -0.665997 +0.462648 0.249605 -0.665997 +0.506683 0.231365 -0.665997 +0.553939 0.225143 -0.665997 +0.601195 0.231365 -0.665997 +0.645231 0.249605 -0.665997 +0.683045 0.278621 -0.665997 +0.712061 0.316435 -0.665997 +0.730301 0.36047 -0.665997 +0.736522 0.407726 -0.665997 +0.730301 0.454982 -0.665997 +0.712061 0.499018 -0.665997 +0.683045 0.536832 -0.665997 +0.676188 0.619468 -0.665997 +0.61722 0.643894 -0.665997 +0.553939 0.652225 -0.665997 +0.490658 0.643894 -0.665997 +0.43169 0.619468 -0.665997 +0.381053 0.580613 -0.665997 +0.342197 0.529975 -0.665997 +0.317772 0.471007 -0.665997 +0.309441 0.407726 -0.665997 +0.317772 0.344446 -0.665997 +0.342197 0.285477 -0.665997 +0.381053 0.23484 -0.665997 +0.43169 0.195985 -0.665997 +0.490659 0.171559 -0.665997 +0.553939 0.163228 -0.665997 +0.61722 0.171559 -0.665997 +0.676188 0.195985 -0.665997 +0.726826 0.23484 -0.665997 +0.765681 0.285477 -0.665997 +0.790107 0.344446 -0.665997 +0.798438 0.407726 -0.665997 +0.790107 0.471007 -0.665997 +0.726826 0.580613 -0.665997 +0.765681 0.529976 -0.665997 +0.676188 0.619468 -0.720244 +0.61722 0.643894 -0.720244 +0.553939 0.652225 -0.720244 +0.490658 0.643894 -0.720244 +0.43169 0.619468 -0.720244 +0.381053 0.580613 -0.720244 +0.342197 0.529975 -0.720244 +0.317772 0.471007 -0.720244 +0.309441 0.407726 -0.720244 +0.317772 0.344446 -0.720244 +0.342197 0.285477 -0.720244 +0.381053 0.23484 -0.720244 +0.43169 0.195985 -0.720244 +0.490659 0.171559 -0.720244 +0.553939 0.163228 -0.720244 +0.61722 0.171559 -0.720244 +0.676188 0.195985 -0.720244 +0.726826 0.23484 -0.720244 +0.765681 0.285477 -0.720244 +0.790107 0.344446 -0.720244 +0.798438 0.407726 -0.720244 +0.790107 0.471007 -0.720244 +0.726826 0.580613 -0.720244 +0.765681 0.529976 -0.720244 +0.687558 0.639162 -0.720244 +0.623105 0.665859 -0.720244 +0.553939 0.674965 -0.720244 +0.484773 0.665859 -0.720244 +0.42032 0.639162 -0.720244 +0.364973 0.596692 -0.720244 +0.322504 0.541345 -0.720244 +0.295807 0.476893 -0.720244 +0.286701 0.407726 -0.720244 +0.295807 0.33856 -0.720244 +0.322504 0.274107 -0.720244 +0.364973 0.21876 -0.720244 +0.42032 0.176291 -0.720244 +0.484773 0.149594 -0.720244 +0.553939 0.140488 -0.720244 +0.623106 0.149594 -0.720244 +0.687558 0.176291 -0.720244 +0.742905 0.21876 -0.720244 +0.785374 0.274107 -0.720244 +0.812072 0.33856 -0.720244 +0.821177 0.407726 -0.720244 +0.812072 0.476893 -0.720244 +0.742905 0.596692 -0.720244 +0.785374 0.541346 -0.720244 +numsurf 216 +SURF 0x10 +mat 9 +refs 3 +1 0.155142173171 0.516255199909 +0 0.1346539855 0.480768471956 +23 0.163628667593 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +2 0.145259439945 0.520348727703 +0 0.1346539855 0.480768471956 +1 0.155142173171 0.516255199909 +SURF 0x10 +mat 9 +refs 3 +3 0.134653955698 0.521744906902 +0 0.1346539855 0.480768471956 +2 0.145259439945 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +4 0.124048486352 0.520348727703 +0 0.1346539855 0.480768471956 +3 0.134653955698 0.521744906902 +SURF 0x10 +mat 9 +refs 3 +5 0.114165768027 0.516255140305 +0 0.1346539855 0.480768471956 +4 0.124048486352 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +6 0.105679303408 0.509743213654 +0 0.1346539855 0.480768471956 +5 0.114165768027 0.516255140305 +SURF 0x10 +mat 9 +refs 3 +7 0.0991673767567 0.50125670433 +0 0.1346539855 0.480768471956 +6 0.105679303408 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +8 0.0950738191605 0.491373956203 +0 0.1346539855 0.480768471956 +7 0.0991673767567 0.50125670433 +SURF 0x10 +mat 9 +refs 3 +9 0.0936775803566 0.480768471956 +0 0.1346539855 0.480768471956 +8 0.0950738191605 0.491373956203 +SURF 0x10 +mat 9 +refs 3 +10 0.0950738340616 0.470163017511 +0 0.1346539855 0.480768471956 +9 0.0936775803566 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +11 0.099167406559 0.460280328989 +0 0.1346539855 0.480768471956 +10 0.0950738340616 0.470163017511 +SURF 0x10 +mat 9 +refs 3 +12 0.105679303408 0.451793789864 +0 0.1346539855 0.480768471956 +11 0.099167406559 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +13 0.114165812731 0.445281893015 +0 0.1346539855 0.480768471956 +12 0.105679303408 0.451793789864 +SURF 0x10 +mat 9 +refs 3 +14 0.124048545957 0.441188365221 +0 0.1346539855 0.480768471956 +13 0.114165812731 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +15 0.134654000401 0.439792096615 +0 0.1346539855 0.480768471956 +14 0.124048545957 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +16 0.14525949955 0.441188365221 +0 0.1346539855 0.480768471956 +15 0.134654000401 0.439792096615 +SURF 0x10 +mat 9 +refs 3 +17 0.155142202973 0.445281893015 +0 0.1346539855 0.480768471956 +16 0.14525949955 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +18 0.163628727198 0.451793819666 +0 0.1346539855 0.480768471956 +17 0.155142202973 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +19 0.170140609145 0.460280328989 +0 0.1346539855 0.480768471956 +18 0.163628727198 0.451793819666 +SURF 0x10 +mat 9 +refs 3 +20 0.174234181643 0.470163047314 +0 0.1346539855 0.480768471956 +19 0.170140609145 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +21 0.175630405545 0.480768531561 +0 0.1346539855 0.480768471956 +20 0.174234181643 0.470163047314 +SURF 0x10 +mat 9 +refs 3 +22 0.174234181643 0.491374015808 +0 0.1346539855 0.480768471956 +21 0.175630405545 0.480768531561 +SURF 0x10 +mat 9 +refs 3 +24 0.170140609145 0.501256763935 +0 0.1346539855 0.480768471956 +22 0.174234181643 0.491374015808 +SURF 0x10 +mat 9 +refs 3 +23 0.163628667593 0.509743213654 +0 0.1346539855 0.480768471956 +24 0.170140609145 0.501256763935 +SURF 0x10 +mat 9 +refs 3 +26 0.136241689324 0.483518511057 +49 0.136899352074 0.48301383853 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +27 0.135475844145 0.483835697174 +26 0.136241689324 0.483518511057 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +28 0.1346539855 0.483943879604 +27 0.135475844145 0.483835697174 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +29 0.133832126856 0.483835697174 +28 0.1346539855 0.483943879604 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +30 0.133066281676 0.483518511057 +29 0.133832126856 0.483835697174 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +31 0.132408633828 0.48301383853 +30 0.133066281676 0.483518511057 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +32 0.131904020905 0.482356220484 +31 0.132408633828 0.48301383853 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +33 0.131586790085 0.481590390205 +32 0.131904020905 0.482356220484 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +34 0.131478577852 0.480768471956 +33 0.131586790085 0.481590390205 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +35 0.131586790085 0.479946613312 +34 0.131478577852 0.480768471956 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +36 0.131904020905 0.479180753231 +35 0.131586790085 0.479946613312 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +37 0.132408633828 0.478523135185 +36 0.131904020905 0.479180753231 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +38 0.133066281676 0.478018462658 +37 0.132408633828 0.478523135185 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +39 0.133832126856 0.477701276541 +38 0.133066281676 0.478018462658 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +40 0.1346539855 0.47759309411 +39 0.133832126856 0.477701276541 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +41 0.135475844145 0.477701276541 +40 0.1346539855 0.47759309411 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +42 0.136241689324 0.478018462658 +41 0.135475844145 0.477701276541 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +43 0.136899352074 0.478523135185 +42 0.136241689324 0.478018462658 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +44 0.137403979897 0.479180753231 +43 0.136899352074 0.478523135185 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +45 0.137721210718 0.479946613312 +44 0.137403979897 0.479180753231 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +46 0.13782940805 0.480768471956 +45 0.137721210718 0.479946613312 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +47 0.137721210718 0.481590390205 +46 0.13782940805 0.480768471956 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +48 0.137403979897 0.482356220484 +47 0.137721210718 0.481590390205 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +49 0.136899352074 0.48301383853 +48 0.137403979897 0.482356220484 +25 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +73 0.138676047325 0.484790533781 +49 0.136899352074 0.48301383853 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +26 0.136241689324 0.483518511057 +27 0.135475844145 0.483835697174 +51 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +51 0.136126160622 0.486262708902 +27 0.135475844145 0.483835697174 +28 0.1346539855 0.483943879604 +52 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +52 0.1346539855 0.486456543207 +28 0.1346539855 0.483943879604 +29 0.133832126856 0.483835697174 +53 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +53 0.133181810379 0.486262708902 +29 0.133832126856 0.483835697174 +30 0.133066281676 0.483518511057 +54 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +54 0.131809994578 0.485694468021 +30 0.133066281676 0.483518511057 +31 0.132408633828 0.48301383853 +55 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +55 0.130631938577 0.484790533781 +31 0.132408633828 0.48301383853 +32 0.131904020905 0.482356220484 +56 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +56 0.129728004336 0.483612507582 +32 0.131904020905 0.482356220484 +33 0.131586790085 0.481590390205 +57 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +57 0.129159763455 0.482240647078 +33 0.131586790085 0.481590390205 +34 0.131478577852 0.480768471956 +58 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +58 0.128965958953 0.480768471956 +34 0.131478577852 0.480768471956 +35 0.131586790085 0.479946613312 +59 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +59 0.129159763455 0.479296296835 +35 0.131586790085 0.479946613312 +36 0.131904020905 0.479180753231 +60 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +60 0.129728004336 0.477924466133 +36 0.131904020905 0.479180753231 +37 0.132408633828 0.478523135185 +61 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +61 0.130631968379 0.476746439934 +37 0.132408633828 0.478523135185 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +38 0.133066281676 0.478018462658 +39 0.133832126856 0.477701276541 +63 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +63 0.133181810379 0.475274294615 +39 0.133832126856 0.477701276541 +40 0.1346539855 0.47759309411 +64 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +64 0.1346539855 0.47508046031 +40 0.1346539855 0.47759309411 +41 0.135475844145 0.477701276541 +65 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +65 0.136126160622 0.475274294615 +41 0.135475844145 0.477701276541 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +42 0.136241689324 0.478018462658 +43 0.136899352074 0.478523135185 +67 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +67 0.138676047325 0.476746439934 +43 0.136899352074 0.478523135185 +44 0.137403979897 0.479180753231 +68 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +68 0.139579966664 0.477924466133 +44 0.137403979897 0.479180753231 +45 0.137721210718 0.479946613312 +69 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +69 0.140148207545 0.479296296835 +45 0.137721210718 0.479946613312 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +46 0.13782940805 0.480768471956 +47 0.137721210718 0.481590390205 +71 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +72 0.139579966664 0.483612507582 +71 0.140148207545 0.482240706682 +47 0.137721210718 0.481590390205 +48 0.137403979897 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +73 0.138676047325 0.484790533781 +72 0.139579966664 0.483612507582 +48 0.137403979897 0.482356220484 +49 0.136899352074 0.48301383853 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +96 0.138676047325 0.484790533781 +73 0.138676047325 0.484790533781 +50 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +50 0.137498006225 0.485694468021 +51 0.136126160622 0.486262708902 +75 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +75 0.136126160622 0.486262708902 +51 0.136126160622 0.486262708902 +52 0.1346539855 0.486456543207 +76 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +76 0.1346539855 0.486456543207 +52 0.1346539855 0.486456543207 +53 0.133181810379 0.486262708902 +77 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +77 0.133181810379 0.486262708902 +53 0.133181810379 0.486262708902 +54 0.131809994578 0.485694468021 +78 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +78 0.131809994578 0.485694468021 +54 0.131809994578 0.485694468021 +55 0.130631938577 0.484790533781 +79 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +79 0.130631938577 0.484790533781 +55 0.130631938577 0.484790533781 +56 0.129728004336 0.483612507582 +80 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +80 0.129728004336 0.483612507582 +56 0.129728004336 0.483612507582 +57 0.129159763455 0.482240647078 +81 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +81 0.129159763455 0.482240647078 +57 0.129159763455 0.482240647078 +58 0.128965958953 0.480768471956 +82 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +82 0.128965958953 0.480768471956 +58 0.128965958953 0.480768471956 +59 0.129159763455 0.479296296835 +83 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +83 0.129159763455 0.479296296835 +59 0.129159763455 0.479296296835 +60 0.129728004336 0.477924466133 +84 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +84 0.129728004336 0.477924466133 +60 0.129728004336 0.477924466133 +61 0.130631968379 0.476746439934 +85 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +85 0.130631968379 0.476746439934 +61 0.130631968379 0.476746439934 +62 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +62 0.131809994578 0.475842505693 +63 0.133181810379 0.475274294615 +87 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +87 0.133181810379 0.475274294615 +63 0.133181810379 0.475274294615 +64 0.1346539855 0.47508046031 +88 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +88 0.1346539855 0.47508046031 +64 0.1346539855 0.47508046031 +65 0.136126160622 0.475274294615 +89 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +89 0.136126160622 0.475274294615 +65 0.136126160622 0.475274294615 +66 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +66 0.137498021126 0.475842505693 +67 0.138676047325 0.476746439934 +91 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +91 0.138676047325 0.476746439934 +67 0.138676047325 0.476746439934 +68 0.139579966664 0.477924466133 +92 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +92 0.139579966664 0.477924466133 +68 0.139579966664 0.477924466133 +69 0.140148207545 0.479296296835 +93 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +93 0.140148207545 0.479296296835 +69 0.140148207545 0.479296296835 +70 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +70 0.140342026949 0.480768471956 +71 0.140148207545 0.482240706682 +95 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +97 0.139579966664 0.483612507582 +95 0.140148207545 0.482240706682 +71 0.140148207545 0.482240706682 +72 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +96 0.138676047325 0.484790533781 +97 0.139579966664 0.483612507582 +72 0.139579966664 0.483612507582 +73 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +120 0.147552967072 0.49366748333 +96 0.138676047325 0.484790533781 +74 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +74 0.137498006225 0.485694468021 +75 0.136126160622 0.486262708902 +99 0.139375329018 0.498388826847 +SURF 0x10 +mat 9 +refs 4 +99 0.139375329018 0.498388826847 +75 0.136126160622 0.486262708902 +76 0.1346539855 0.486456543207 +100 0.1346539855 0.499010413885 +SURF 0x10 +mat 9 +refs 4 +100 0.1346539855 0.499010413885 +76 0.1346539855 0.486456543207 +77 0.133181810379 0.486262708902 +101 0.129932641983 0.498388797045 +SURF 0x10 +mat 9 +refs 4 +101 0.129932641983 0.498388797045 +77 0.133181810379 0.486262708902 +78 0.131809994578 0.485694468021 +102 0.125533029437 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +102 0.125533029437 0.496566444635 +78 0.131809994578 0.485694468021 +79 0.130631938577 0.484790533781 +103 0.12175501883 0.493667453527 +SURF 0x10 +mat 9 +refs 4 +103 0.12175501883 0.493667453527 +79 0.130631938577 0.484790533781 +80 0.129728004336 0.483612507582 +104 0.118856042624 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +104 0.118856042624 0.489889442921 +80 0.129728004336 0.483612507582 +81 0.129159763455 0.482240647078 +105 0.117033675313 0.485489815474 +SURF 0x10 +mat 9 +refs 4 +105 0.117033675313 0.485489815474 +81 0.129159763455 0.482240647078 +82 0.128965958953 0.480768471956 +106 0.116412103176 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +106 0.116412103176 0.480768471956 +82 0.128965958953 0.480768471956 +83 0.129159763455 0.479296296835 +107 0.117033675313 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +107 0.117033675313 0.476047158241 +83 0.129159763455 0.479296296835 +84 0.129728004336 0.477924466133 +108 0.118856057525 0.471647530794 +SURF 0x10 +mat 9 +refs 4 +108 0.118856057525 0.471647530794 +84 0.129728004336 0.477924466133 +85 0.130631968379 0.476746439934 +109 0.12175501883 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +109 0.12175501883 0.467869520187 +85 0.130631968379 0.476746439934 +86 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +86 0.131809994578 0.475842505693 +87 0.133181810379 0.475274294615 +111 0.129932656884 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +111 0.129932656884 0.463148206472 +87 0.133181810379 0.475274294615 +88 0.1346539855 0.47508046031 +112 0.1346539855 0.462526619434 +SURF 0x10 +mat 9 +refs 4 +112 0.1346539855 0.462526619434 +88 0.1346539855 0.47508046031 +89 0.136126160622 0.475274294615 +113 0.13937535882 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +113 0.13937535882 0.463148206472 +89 0.136126160622 0.475274294615 +90 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +90 0.137498021126 0.475842505693 +91 0.138676047325 0.476746439934 +115 0.147552967072 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +115 0.147552967072 0.467869520187 +91 0.138676047325 0.476746439934 +92 0.139579966664 0.477924466133 +116 0.150451913476 0.471647560596 +SURF 0x10 +mat 9 +refs 4 +116 0.150451913476 0.471647560596 +92 0.139579966664 0.477924466133 +93 0.140148207545 0.479296296835 +117 0.152274280787 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +117 0.152274280787 0.476047158241 +93 0.140148207545 0.479296296835 +94 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +94 0.140342026949 0.480768471956 +95 0.140148207545 0.482240706682 +119 0.152274280787 0.485489845276 +SURF 0x10 +mat 9 +refs 4 +121 0.150451913476 0.489889442921 +119 0.152274280787 0.485489845276 +95 0.140148207545 0.482240706682 +97 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +120 0.147552967072 0.49366748333 +121 0.150451913476 0.489889442921 +97 0.139579966664 0.483612507582 +96 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +145 0.154338926077 0.500453472137 +120 0.147552967072 0.49366748333 +98 0.143774926662 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +98 0.143774926662 0.496566444635 +99 0.139375329018 0.498388826847 +123 0.141859173775 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +123 0.141859173775 0.507658600807 +99 0.139375329018 0.498388826847 +100 0.1346539855 0.499010413885 +124 0.1346539855 0.508607268333 +SURF 0x10 +mat 9 +refs 4 +124 0.1346539855 0.508607268333 +100 0.1346539855 0.499010413885 +101 0.129932641983 0.498388797045 +125 0.127448782325 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +125 0.127448782325 0.507658600807 +101 0.129932641983 0.498388797045 +102 0.125533029437 0.496566444635 +126 0.120734617114 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +126 0.120734617114 0.504877567291 +102 0.125533029437 0.496566444635 +103 0.12175501883 0.493667453527 +127 0.114969015121 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +127 0.114969015121 0.500453472137 +103 0.12175501883 0.493667453527 +104 0.118856042624 0.489889442921 +128 0.11054494977 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +128 0.11054494977 0.494687855244 +104 0.118856042624 0.489889442921 +105 0.117033675313 0.485489815474 +129 0.107763856649 0.487973690033 +SURF 0x10 +mat 9 +refs 4 +129 0.107763856649 0.487973690033 +105 0.117033675313 0.485489815474 +106 0.116412103176 0.480768471956 +130 0.106815263629 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +130 0.106815263629 0.480768471956 +106 0.116412103176 0.480768471956 +107 0.117033675313 0.476047158241 +131 0.107763856649 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +131 0.107763856649 0.473563283682 +107 0.117033675313 0.476047158241 +108 0.118856057525 0.471647530794 +132 0.11054494977 0.466849118471 +SURF 0x10 +mat 9 +refs 4 +132 0.11054494977 0.466849118471 +108 0.118856057525 0.471647530794 +109 0.12175501883 0.467869520187 +133 0.114969074726 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +133 0.114969074726 0.461083561182 +109 0.12175501883 0.467869520187 +110 0.125533074141 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +110 0.125533074141 0.464970588684 +111 0.129932656884 0.463148206472 +135 0.127448827028 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +135 0.127448827028 0.453878372908 +111 0.129932656884 0.463148206472 +112 0.1346539855 0.462526619434 +136 0.134654000401 0.452929794788 +SURF 0x10 +mat 9 +refs 4 +136 0.134654000401 0.452929794788 +112 0.1346539855 0.462526619434 +113 0.13937535882 0.463148206472 +137 0.141859203577 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +137 0.141859203577 0.453878372908 +113 0.13937535882 0.463148206472 +114 0.143774926662 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +114 0.143774926662 0.464970588684 +115 0.147552967072 0.467869520187 +139 0.154338926077 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +139 0.154338926077 0.461083561182 +115 0.147552967072 0.467869520187 +116 0.150451913476 0.471647560596 +140 0.158763021231 0.466849148273 +SURF 0x10 +mat 9 +refs 4 +140 0.158763021231 0.466849148273 +116 0.150451913476 0.471647560596 +117 0.152274280787 0.476047158241 +141 0.161544129252 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +141 0.161544129252 0.473563283682 +117 0.152274280787 0.476047158241 +118 0.152895867825 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +118 0.152895867825 0.480768471956 +119 0.152274280787 0.485489845276 +143 0.161544129252 0.487973719835 +SURF 0x10 +mat 9 +refs 4 +144 0.158763021231 0.494687855244 +143 0.161544129252 0.487973719835 +119 0.152274280787 0.485489845276 +121 0.150451913476 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +145 0.154338926077 0.500453472137 +144 0.158763021231 0.494687855244 +121 0.150451913476 0.489889442921 +120 0.147552967072 0.49366748333 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +168 0.16101424396 0.50712877512 +145 0.154338926077 0.500453472137 +122 0.148573309183 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +122 0.148573309183 0.504877567291 +123 0.141859173775 0.507658600807 +147 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +147 0.144302502275 0.516777276993 +123 0.141859173775 0.507658600807 +124 0.1346539855 0.508607268333 +148 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +148 0.1346539855 0.518047630787 +124 0.1346539855 0.508607268333 +125 0.127448782325 0.507658600807 +149 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +149 0.125005453825 0.516777276993 +125 0.127448782325 0.507658600807 +126 0.120734617114 0.504877567291 +150 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +150 0.116014450788 0.513053119183 +126 0.120734617114 0.504877567291 +127 0.114969015121 0.500453472137 +151 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +151 0.108293712139 0.50712877512 +127 0.114969015121 0.500453472137 +128 0.11054494977 0.494687855244 +152 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +152 0.10236941278 0.499408006668 +128 0.11054494977 0.494687855244 +129 0.107763856649 0.487973690033 +153 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +153 0.0986452102661 0.490417033434 +129 0.107763856649 0.487973690033 +130 0.106815263629 0.480768471956 +154 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +154 0.0973749309778 0.480768471956 +130 0.106815263629 0.480768471956 +131 0.107763856649 0.473563283682 +155 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +155 0.0986452102661 0.471119970083 +131 0.107763856649 0.473563283682 +132 0.11054494977 0.466849118471 +156 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +156 0.10236941278 0.462128996849 +132 0.11054494977 0.466849118471 +133 0.114969074726 0.461083561182 +157 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +157 0.108293741941 0.454408228397 +133 0.114969074726 0.461083561182 +134 0.120734632015 0.456659436226 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +134 0.120734632015 0.456659436226 +135 0.127448827028 0.453878372908 +159 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +159 0.125005483627 0.444759726524 +135 0.127448827028 0.453878372908 +136 0.134654000401 0.452929794788 +160 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +160 0.134654000401 0.443489462137 +136 0.134654000401 0.452929794788 +137 0.141859203577 0.453878372908 +161 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +161 0.144302561879 0.444759726524 +137 0.141859203577 0.453878372908 +138 0.148573338985 0.456659466028 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +138 0.148573338985 0.456659466028 +139 0.154338926077 0.461083561182 +163 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +163 0.161014273763 0.454408228397 +139 0.154338926077 0.461083561182 +140 0.158763021231 0.466849148273 +164 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +164 0.166938588023 0.462128996849 +140 0.158763021231 0.466849148273 +141 0.161544129252 0.473563283682 +165 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +165 0.170662805438 0.471119970083 +141 0.161544129252 0.473563283682 +142 0.162492707372 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +142 0.162492707372 0.480768471956 +143 0.161544129252 0.487973719835 +167 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +169 0.166938588023 0.499408066273 +167 0.170662805438 0.490417033434 +143 0.161544129252 0.487973719835 +144 0.158763021231 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +168 0.16101424396 0.50712877512 +169 0.166938588023 0.499408066273 +144 0.158763021231 0.494687855244 +145 0.154338926077 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +192 0.16101424396 0.50712877512 +168 0.16101424396 0.50712877512 +146 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +146 0.15329349041 0.513053119183 +147 0.144302502275 0.516777276993 +171 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +171 0.144302502275 0.516777276993 +147 0.144302502275 0.516777276993 +148 0.1346539855 0.518047630787 +172 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +172 0.1346539855 0.518047630787 +148 0.1346539855 0.518047630787 +149 0.125005453825 0.516777276993 +173 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +173 0.125005453825 0.516777276993 +149 0.125005453825 0.516777276993 +150 0.116014450788 0.513053119183 +174 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +174 0.116014450788 0.513053119183 +150 0.116014450788 0.513053119183 +151 0.108293712139 0.50712877512 +175 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +175 0.108293712139 0.50712877512 +151 0.108293712139 0.50712877512 +152 0.10236941278 0.499408006668 +176 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +176 0.10236941278 0.499408006668 +152 0.10236941278 0.499408006668 +153 0.0986452102661 0.490417033434 +177 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +177 0.0986452102661 0.490417033434 +153 0.0986452102661 0.490417033434 +154 0.0973749309778 0.480768471956 +178 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +178 0.0973749309778 0.480768471956 +154 0.0973749309778 0.480768471956 +155 0.0986452102661 0.471119970083 +179 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +179 0.0986452102661 0.471119970083 +155 0.0986452102661 0.471119970083 +156 0.10236941278 0.462128996849 +180 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +180 0.10236941278 0.462128996849 +156 0.10236941278 0.462128996849 +157 0.108293741941 0.454408228397 +181 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +181 0.108293741941 0.454408228397 +157 0.108293741941 0.454408228397 +158 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +158 0.116014495492 0.448483914137 +159 0.125005483627 0.444759726524 +183 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +183 0.125005483627 0.444759726524 +159 0.125005483627 0.444759726524 +160 0.134654000401 0.443489462137 +184 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +184 0.134654000401 0.443489462137 +160 0.134654000401 0.443489462137 +161 0.144302561879 0.444759726524 +185 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +185 0.144302561879 0.444759726524 +161 0.144302561879 0.444759726524 +162 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +162 0.153293505311 0.448483914137 +163 0.161014273763 0.454408228397 +187 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +187 0.161014273763 0.454408228397 +163 0.161014273763 0.454408228397 +164 0.166938588023 0.462128996849 +188 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +188 0.166938588023 0.462128996849 +164 0.166938588023 0.462128996849 +165 0.170662805438 0.471119970083 +189 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +189 0.170662805438 0.471119970083 +165 0.170662805438 0.471119970083 +166 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +166 0.171933025122 0.480768531561 +167 0.170662805438 0.490417033434 +191 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +193 0.166938588023 0.499408066273 +191 0.170662805438 0.490417033434 +167 0.170662805438 0.490417033434 +169 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +192 0.16101424396 0.50712877512 +193 0.166938588023 0.499408066273 +169 0.166938588023 0.499408066273 +168 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +216 0.163465932012 0.509580433369 +192 0.16101424396 0.50712877512 +170 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +170 0.15329349041 0.513053119183 +171 0.144302502275 0.516777276993 +195 0.145199865103 0.520126402378 +SURF 0x10 +mat 9 +refs 4 +195 0.145199865103 0.520126402378 +171 0.144302502275 0.516777276993 +172 0.1346539855 0.518047630787 +196 0.134653955698 0.521514713764 +SURF 0x10 +mat 9 +refs 4 +196 0.134653955698 0.521514713764 +172 0.1346539855 0.518047630787 +173 0.125005453825 0.516777276993 +197 0.124108076096 0.520126402378 +SURF 0x10 +mat 9 +refs 4 +197 0.124108076096 0.520126402378 +173 0.125005453825 0.516777276993 +174 0.116014450788 0.513053119183 +198 0.114280834794 0.516055822372 +SURF 0x10 +mat 9 +refs 4 +198 0.114280834794 0.516055822372 +174 0.116014450788 0.513053119183 +175 0.108293712139 0.50712877512 +199 0.105842024088 0.509580433369 +SURF 0x10 +mat 9 +refs 4 +199 0.105842024088 0.509580433369 +175 0.108293712139 0.50712877512 +176 0.10236941278 0.499408006668 +200 0.09936670959 0.501141607761 +SURF 0x10 +mat 9 +refs 4 +200 0.09936670959 0.501141607761 +176 0.10236941278 0.499408006668 +177 0.0986452102661 0.490417033434 +201 0.0952961295843 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +201 0.0952961295843 0.491314411163 +177 0.0986452102661 0.490417033434 +178 0.0973749309778 0.480768471956 +202 0.0939077436924 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +202 0.0939077436924 0.480768471956 +178 0.0973749309778 0.480768471956 +179 0.0986452102661 0.471119970083 +203 0.0952961593866 0.470222562551 +SURF 0x10 +mat 9 +refs 4 +203 0.0952961593866 0.470222562551 +179 0.0986452102661 0.471119970083 +180 0.10236941278 0.462128996849 +204 0.09936670959 0.460395395756 +SURF 0x10 +mat 9 +refs 4 +204 0.09936670959 0.460395395756 +180 0.10236941278 0.462128996849 +181 0.108293741941 0.454408228397 +205 0.10584205389 0.451956540346 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +205 0.10584205389 0.451956540346 +181 0.108293741941 0.454408228397 +182 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +182 0.116014495492 0.448483914137 +183 0.125005483627 0.444759726524 +207 0.124108105898 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +207 0.124108105898 0.441410690546 +183 0.125005483627 0.444759726524 +184 0.134654000401 0.443489462137 +208 0.134654000401 0.440022289753 +SURF 0x10 +mat 9 +refs 4 +208 0.134654000401 0.440022289753 +184 0.134654000401 0.443489462137 +185 0.144302561879 0.444759726524 +209 0.145199909806 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +209 0.145199909806 0.441410690546 +185 0.144302561879 0.444759726524 +186 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +186 0.153293505311 0.448483914137 +187 0.161014273763 0.454408228397 +211 0.163465932012 0.451956599951 +SURF 0x10 +mat 9 +refs 4 +211 0.163465932012 0.451956599951 +187 0.161014273763 0.454408228397 +188 0.166938588023 0.462128996849 +212 0.169941276312 0.460395395756 +SURF 0x10 +mat 9 +refs 4 +212 0.169941276312 0.460395395756 +188 0.166938588023 0.462128996849 +189 0.170662805438 0.471119970083 +213 0.174011841416 0.470222622156 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +213 0.174011841416 0.470222622156 +189 0.170662805438 0.471119970083 +190 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +190 0.171933025122 0.480768531561 +191 0.170662805438 0.490417033434 +215 0.174011841416 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +217 0.169941276312 0.501141607761 +215 0.174011841416 0.491314411163 +191 0.170662805438 0.490417033434 +193 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +216 0.163465932012 0.509580433369 +217 0.169941276312 0.501141607761 +193 0.166938588023 0.499408066273 +192 0.16101424396 0.50712877512 +kids 0 +OBJECT poly +name "sparewheel.F" +data 10 +Circle.002 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 456 +0.281706 1.045529 0.135845 +0.284486 1.072232 0.071028 +0.285434 1.081341 0.001471 +0.284486 1.072232 -0.068086 +0.281706 1.045529 -0.132903 +0.277284 1.003049 -0.188562 +0.271521 0.947689 -0.231271 +0.26481 0.88322 -0.258119 +0.257608 0.814037 -0.267277 +0.250406 0.744854 -0.258119 +0.243695 0.680385 -0.231271 +0.237932 0.625025 -0.188562 +0.23351 0.582545 -0.132902 +0.23073 0.555842 -0.068086 +0.229781 0.546734 0.001471 +0.23073 0.555842 0.071028 +0.233509 0.582546 0.135845 +0.237932 0.625025 0.191505 +0.243695 0.680385 0.234214 +0.250406 0.744854 0.261062 +0.257608 0.814037 0.270219 +0.26481 0.88322 0.261062 +0.277284 1.003049 0.191505 +0.271521 0.947689 0.234214 +0.116865 0.874656 0.027828 +0.11741 0.879894 0.015116 +0.117596 0.88168 0.001474 +0.11741 0.879894 -0.012168 +0.116865 0.874656 -0.024881 +0.115998 0.866325 -0.035797 +0.114867 0.855467 -0.044173 +0.113551 0.842823 -0.049439 +0.112139 0.829255 -0.051235 +0.110726 0.815686 -0.049439 +0.10941 0.803042 -0.044173 +0.10828 0.792184 -0.035797 +0.107412 0.783853 -0.024881 +0.106867 0.778615 -0.012168 +0.106681 0.776829 0.001474 +0.106867 0.778615 0.015116 +0.107412 0.783853 0.027828 +0.10828 0.792184 0.038745 +0.10941 0.803042 0.047121 +0.110726 0.815686 0.052387 +0.112139 0.829255 0.054183 +0.113551 0.842823 0.052387 +0.115998 0.866325 0.038745 +0.114867 0.855467 0.047121 +0.12523 0.932063 0.061294 +0.126467 0.943951 0.032439 +0.12689 0.948006 0.001474 +0.126467 0.943951 -0.029492 +0.12523 0.932063 -0.058347 +0.123261 0.913152 -0.083125 +0.120696 0.888506 -0.102139 +0.117708 0.859806 -0.114091 +0.114502 0.829007 -0.118168 +0.111296 0.798208 -0.114091 +0.108308 0.769508 -0.102139 +0.105743 0.744863 -0.083125 +0.103774 0.725952 -0.058347 +0.102536 0.714064 -0.029492 +0.102114 0.710009 0.001474 +0.102536 0.714064 0.032439 +0.103774 0.725952 0.061294 +0.105743 0.744863 0.086073 +0.108308 0.769508 0.105086 +0.111296 0.798208 0.117038 +0.114502 0.829007 0.121115 +0.117708 0.859806 0.117038 +0.123261 0.913152 0.086073 +0.120696 0.888506 0.105086 +0.147476 0.984551 0.092765 +0.149364 1.002693 0.04873 +0.150008 1.008881 0.001474 +0.149364 1.002693 -0.045782 +0.147476 0.984551 -0.089818 +0.144471 0.955691 -0.127632 +0.140556 0.91808 -0.156648 +0.135997 0.874281 -0.174888 +0.131104 0.827279 -0.181109 +0.126211 0.780277 -0.174888 +0.121651 0.736478 -0.156648 +0.117736 0.698867 -0.127632 +0.114732 0.670007 -0.089818 +0.112843 0.651865 -0.045782 +0.112199 0.645677 0.001474 +0.112843 0.651865 0.04873 +0.114732 0.670007 0.092765 +0.117736 0.698867 0.130579 +0.121651 0.736478 0.159595 +0.126211 0.780277 0.177835 +0.131104 0.827279 0.184057 +0.135997 0.874281 0.177835 +0.140556 0.91808 0.159595 +0.144471 0.955691 0.130579 +0.153028 1.037883 0.123723 +0.155557 1.062177 0.064754 +0.156419 1.070463 0.001474 +0.155557 1.062177 -0.061807 +0.153028 1.037883 -0.120776 +0.149004 0.999236 -0.171413 +0.143762 0.948871 -0.210268 +0.137656 0.89022 -0.234694 +0.131104 0.827279 -0.243025 +0.124552 0.764338 -0.234694 +0.118446 0.705687 -0.210268 +0.113203 0.655322 -0.171413 +0.10918 0.616675 -0.120775 +0.106651 0.592381 -0.061807 +0.105788 0.584095 0.001474 +0.106651 0.592381 0.064755 +0.10918 0.616675 0.123723 +0.113203 0.655322 0.17436 +0.118446 0.705687 0.213216 +0.124552 0.764338 0.237641 +0.131104 0.827279 0.245972 +0.137656 0.89022 0.237641 +0.149005 0.999236 0.17436 +0.143762 0.948871 0.213216 +0.099072 1.0435 0.123723 +0.101601 1.067794 0.064754 +0.102463 1.07608 0.001474 +0.101601 1.067794 -0.061807 +0.099072 1.0435 -0.120776 +0.095049 1.004853 -0.171413 +0.089806 0.954488 -0.210268 +0.0837 0.895837 -0.234694 +0.077148 0.832896 -0.243025 +0.070596 0.769955 -0.234694 +0.06449 0.711304 -0.210268 +0.059247 0.660939 -0.171413 +0.055224 0.622292 -0.120775 +0.052695 0.597998 -0.061807 +0.051833 0.589712 0.001474 +0.052695 0.597998 0.064755 +0.055224 0.622292 0.123723 +0.059247 0.660939 0.17436 +0.06449 0.711304 0.213216 +0.070596 0.769955 0.237641 +0.077148 0.832896 0.245972 +0.0837 0.895837 0.237641 +0.095048 1.004853 0.17436 +0.089806 0.954488 0.213216 +0.101111 1.063087 0.135093 +0.103875 1.089641 0.07064 +0.104818 1.098698 0.001474 +0.103875 1.089641 -0.067693 +0.101111 1.063087 -0.132146 +0.096713 1.020846 -0.187492 +0.090983 0.965797 -0.229961 +0.084309 0.90169 -0.256659 +0.077148 0.832896 -0.265765 +0.069986 0.764101 -0.256659 +0.063313 0.699995 -0.229961 +0.057582 0.644945 -0.187492 +0.053185 0.602705 -0.132145 +0.050421 0.576151 -0.067693 +0.049478 0.567094 0.001474 +0.050421 0.576151 0.07064 +0.053185 0.602705 0.135093 +0.057582 0.644946 0.19044 +0.063313 0.699995 0.232909 +0.069986 0.764101 0.259606 +0.077148 0.832896 0.268712 +0.084309 0.901691 0.259606 +0.096713 1.020846 0.19044 +0.090983 0.965797 0.232909 +0.190088 1.142404 0.246665 +0.195531 1.194694 0.155608 +0.198349 1.221761 0.054047 +0.198349 1.221761 -0.051097 +0.195531 1.194693 -0.152659 +0.190088 1.142404 -0.243716 +0.18239 1.068456 -0.318064 +0.172962 0.977888 -0.370636 +0.162446 0.876872 -0.397849 +0.15156 0.772294 -0.397849 +0.141044 0.671278 -0.370636 +0.131616 0.58071 -0.318064 +0.123918 0.506762 -0.243715 +0.118475 0.454472 -0.152658 +0.115657 0.427406 -0.051097 +0.115657 0.427406 0.054047 +0.118475 0.454473 0.155608 +0.123918 0.506762 0.246666 +0.131616 0.58071 0.321014 +0.141044 0.671278 0.373585 +0.15156 0.772294 0.400799 +0.162446 0.876873 0.400799 +0.172962 0.977888 0.373585 +0.18239 1.068456 0.321013 +0.12193 1.149499 0.246665 +0.19343 1.174511 0.204597 +0.127373 1.201789 0.155608 +0.197632 1.214877 0.106619 +0.130191 1.228856 0.054047 +0.199066 1.228645 0.001475 +0.130191 1.228856 -0.051097 +0.197632 1.214877 -0.103669 +0.127373 1.201789 -0.152659 +0.19343 1.17451 -0.201648 +0.12193 1.149499 -0.243716 +0.186746 1.110298 -0.285784 +0.114232 1.075551 -0.318064 +0.178034 1.026614 -0.350344 +0.104804 0.984983 -0.370636 +0.16789 0.929162 -0.390928 +0.094288 0.883968 -0.397849 +0.157003 0.824583 -0.40477 +0.083402 0.779389 -0.397849 +0.146116 0.720004 -0.390928 +0.072886 0.678373 -0.370636 +0.135972 0.622552 -0.350344 +0.063458 0.587806 -0.318064 +0.05576 0.513857 -0.243715 +0.12726 0.538868 -0.285783 +0.120576 0.474655 -0.201647 +0.050317 0.461568 -0.152658 +0.116374 0.43429 -0.103669 +0.047499 0.434501 -0.051097 +0.11494 0.420522 0.001475 +0.047499 0.434501 0.054047 +0.050317 0.461568 0.155608 +0.116374 0.43429 0.106619 +0.120576 0.474656 0.204598 +0.05576 0.513857 0.246666 +0.12726 0.538868 0.288734 +0.063458 0.587806 0.321014 +0.135972 0.622552 0.353293 +0.072886 0.678374 0.373585 +0.083402 0.779389 0.400799 +0.146116 0.720004 0.393877 +0.157003 0.824583 0.40772 +0.094288 0.883968 0.400799 +0.104804 0.984983 0.373585 +0.16789 0.929162 0.393877 +0.186746 1.110298 0.288733 +0.114232 1.075551 0.321013 +0.178034 1.026614 0.353293 +0.258246 1.135309 0.246665 +0.263689 1.187598 0.155608 +0.266507 1.214665 0.054047 +0.266507 1.214665 -0.051097 +0.263689 1.187598 -0.152659 +0.258246 1.135309 -0.243716 +0.250548 1.06136 -0.318064 +0.24112 0.970792 -0.370636 +0.230604 0.869777 -0.397849 +0.219718 0.765198 -0.397849 +0.209202 0.664183 -0.370636 +0.199774 0.573615 -0.318064 +0.192076 0.499667 -0.243715 +0.186633 0.447377 -0.152658 +0.183815 0.42031 -0.051097 +0.183815 0.42031 0.054047 +0.186633 0.447377 0.155608 +0.192076 0.499667 0.246666 +0.199774 0.573615 0.321014 +0.209202 0.664183 0.373585 +0.219718 0.765199 0.400799 +0.230604 0.869777 0.400799 +0.24112 0.970793 0.373585 +0.250548 1.061361 0.321013 +0.281707 1.045602 0.135849 +0.284487 1.072305 0.071032 +0.285435 1.081414 0.001475 +0.284487 1.072305 -0.068082 +0.281707 1.045601 -0.132899 +0.277285 1.003122 -0.188559 +0.271522 0.947762 -0.231268 +0.264811 0.883293 -0.258116 +0.257609 0.81411 -0.267273 +0.250407 0.744927 -0.258116 +0.243696 0.680458 -0.231268 +0.237933 0.625098 -0.188558 +0.233511 0.582618 -0.132899 +0.230731 0.555915 -0.068082 +0.229783 0.546807 0.001475 +0.230731 0.555915 0.071032 +0.233511 0.582619 0.135849 +0.237933 0.625098 0.191508 +0.243696 0.680458 0.234217 +0.250407 0.744927 0.261065 +0.257609 0.81411 0.270223 +0.264811 0.883293 0.261065 +0.277285 1.003122 0.191508 +0.271522 0.947762 0.234217 +0.28508 1.078003 0.154657 +0.288249 1.108445 0.080768 +0.28933 1.118828 0.001475 +0.288249 1.108444 -0.077818 +0.28508 1.078003 -0.151707 +0.280039 1.029578 -0.215157 +0.27347 0.966469 -0.263844 +0.265819 0.892977 -0.29445 +0.257609 0.81411 -0.304889 +0.249399 0.735243 -0.29445 +0.241749 0.661751 -0.263844 +0.235179 0.598642 -0.215157 +0.230138 0.550217 -0.151707 +0.226969 0.519776 -0.077818 +0.225888 0.509393 0.001475 +0.226969 0.519776 0.080768 +0.230138 0.550217 0.154657 +0.235179 0.598642 0.218107 +0.241749 0.661751 0.266794 +0.249399 0.735243 0.2974 +0.257609 0.81411 0.307839 +0.265819 0.892977 0.2974 +0.280039 1.029578 0.218107 +0.27347 0.966469 0.266794 +0.265937 1.13592 0.186771 +0.269771 1.172743 0.097391 +0.271078 1.185303 0.001475 +0.269771 1.172743 -0.094442 +0.265937 1.13592 -0.183822 +0.259839 1.077342 -0.260574 +0.251893 1.001002 -0.319468 +0.242638 0.912103 -0.35649 +0.232707 0.816702 -0.369118 +0.222776 0.721301 -0.35649 +0.213521 0.632402 -0.319467 +0.205575 0.556062 -0.260573 +0.199477 0.497485 -0.183821 +0.195643 0.460661 -0.094441 +0.194336 0.448102 0.001475 +0.195643 0.460661 0.097391 +0.199477 0.497485 0.186771 +0.205575 0.556062 0.263523 +0.213521 0.632402 0.322417 +0.222776 0.721302 0.35944 +0.232707 0.816702 0.372067 +0.242638 0.912103 0.35944 +0.251893 1.001003 0.322417 +0.259839 1.077342 0.263523 +0.101111 1.063087 0.135094 +0.103875 1.089641 0.070641 +0.104818 1.098698 0.001475 +0.103875 1.089641 -0.067692 +0.101111 1.063087 -0.132144 +0.096713 1.020846 -0.187491 +0.090983 0.965797 -0.22996 +0.084309 0.90169 -0.256658 +0.077148 0.832896 -0.265763 +0.069986 0.764101 -0.256657 +0.063313 0.699995 -0.22996 +0.057582 0.644945 -0.187491 +0.053185 0.602705 -0.132144 +0.050421 0.576151 -0.067691 +0.049478 0.567094 0.001475 +0.050421 0.576151 0.070641 +0.053185 0.602705 0.135094 +0.057582 0.644946 0.190441 +0.063313 0.699995 0.23291 +0.069986 0.764101 0.259607 +0.077148 0.832896 0.268713 +0.084309 0.901691 0.259607 +0.096713 1.020846 0.190441 +0.090983 0.965797 0.23291 +0.092881 1.104935 0.158633 +0.096132 1.136166 0.082826 +0.097241 1.146819 0.001475 +0.096132 1.136166 -0.079876 +0.092881 1.104935 -0.155683 +0.087709 1.055252 -0.22078 +0.080969 0.990505 -0.270731 +0.07312 0.915106 -0.302131 +0.064697 0.834192 -0.312841 +0.056273 0.753278 -0.302131 +0.048424 0.677879 -0.270731 +0.041684 0.613132 -0.22078 +0.036512 0.563449 -0.155683 +0.033261 0.532218 -0.079876 +0.032152 0.521565 0.001475 +0.033261 0.532218 0.082826 +0.036512 0.56345 0.158633 +0.041684 0.613132 0.22373 +0.048424 0.677879 0.273681 +0.056273 0.753278 0.305081 +0.064697 0.834192 0.315791 +0.07312 0.915106 0.305081 +0.087709 1.055253 0.22373 +0.080969 0.990506 0.273681 +0.118668 1.151141 0.186708 +0.1225 1.187952 0.097358 +0.123807 1.200507 0.001475 +0.1225 1.187951 -0.094409 +0.118668 1.151141 -0.183758 +0.112572 1.092583 -0.260485 +0.104628 1.016269 -0.319358 +0.095377 0.9274 -0.356368 +0.085449 0.832032 -0.368991 +0.075521 0.736663 -0.356368 +0.06627 0.647794 -0.319358 +0.058326 0.57148 -0.260484 +0.05223 0.512923 -0.183758 +0.048398 0.476112 -0.094409 +0.047091 0.463557 0.001475 +0.048398 0.476112 0.097359 +0.05223 0.512923 0.186708 +0.058326 0.571481 0.263434 +0.06627 0.647794 0.322308 +0.075521 0.736664 0.359318 +0.085449 0.832032 0.371941 +0.095377 0.9274 0.359318 +0.104628 1.016269 0.322308 +0.112572 1.092583 0.263434 +0.142628 1.179799 0.204597 +0.14683 1.220165 0.106619 +0.148264 1.233933 0.001475 +0.14683 1.220165 -0.103669 +0.142628 1.179799 -0.201648 +0.135944 1.115586 -0.285784 +0.127232 1.031902 -0.350344 +0.117088 0.93445 -0.390928 +0.106201 0.829871 -0.40477 +0.095314 0.725293 -0.390928 +0.08517 0.627841 -0.350344 +0.076458 0.544157 -0.285783 +0.069774 0.479944 -0.201647 +0.065572 0.439578 -0.103669 +0.064138 0.42581 0.001475 +0.065572 0.439578 0.106619 +0.069774 0.479944 0.204598 +0.076458 0.544157 0.288734 +0.08517 0.627841 0.353293 +0.095315 0.725293 0.393877 +0.106201 0.829872 0.40772 +0.117088 0.93445 0.393877 +0.127232 1.031902 0.353293 +0.135944 1.115586 0.288733 +0.244232 1.169222 0.204597 +0.248434 1.209588 0.106619 +0.249868 1.223356 0.001475 +0.248434 1.209588 -0.103669 +0.244232 1.169222 -0.201648 +0.237548 1.105009 -0.285784 +0.228836 1.021325 -0.350344 +0.218692 0.923873 -0.390928 +0.207805 0.819295 -0.40477 +0.196918 0.714716 -0.390928 +0.186774 0.617264 -0.350344 +0.178062 0.53358 -0.285783 +0.171378 0.469367 -0.201647 +0.167176 0.429001 -0.103669 +0.165742 0.415233 0.001475 +0.167176 0.429001 0.106619 +0.171378 0.469367 0.204598 +0.178062 0.53358 0.288734 +0.186774 0.617264 0.353293 +0.196918 0.714716 0.393877 +0.207805 0.819295 0.40772 +0.218692 0.923874 0.393877 +0.228836 1.021325 0.353293 +0.237548 1.105009 0.288733 +numsurf 456 +SURF 0x10 +mat 9 +refs 4 +48 0.143774926662 0.496566444635 +24 0.137498006225 0.485694468021 +46 0.138676047325 0.484790533781 +70 0.147552967072 0.49366748333 +SURF 0x10 +mat 9 +refs 4 +48 0.143774926662 0.496566444635 +49 0.139375329018 0.498388826847 +25 0.136126160622 0.486262708902 +24 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +49 0.139375329018 0.498388826847 +50 0.1346539855 0.499010413885 +26 0.1346539855 0.486456543207 +25 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +50 0.1346539855 0.499010413885 +51 0.129932641983 0.498388797045 +27 0.133181810379 0.486262708902 +26 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +51 0.129932641983 0.498388797045 +52 0.125533029437 0.496566444635 +28 0.131809994578 0.485694468021 +27 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +52 0.125533029437 0.496566444635 +53 0.12175501883 0.493667453527 +29 0.130631938577 0.484790533781 +28 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +53 0.12175501883 0.493667453527 +54 0.118856042624 0.489889442921 +30 0.129728004336 0.483612507582 +29 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +54 0.118856042624 0.489889442921 +55 0.117033675313 0.485489815474 +31 0.129159763455 0.482240647078 +30 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +55 0.117033675313 0.485489815474 +56 0.116412103176 0.480768471956 +32 0.128965958953 0.480768471956 +31 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +56 0.116412103176 0.480768471956 +57 0.117033675313 0.476047158241 +33 0.129159763455 0.479296296835 +32 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +57 0.117033675313 0.476047158241 +58 0.118856057525 0.471647530794 +34 0.129728004336 0.477924466133 +33 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +58 0.118856057525 0.471647530794 +59 0.12175501883 0.467869520187 +35 0.130631968379 0.476746439934 +34 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +60 0.125533074141 0.464970588684 +36 0.131809994578 0.475842505693 +35 0.130631968379 0.476746439934 +59 0.12175501883 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +60 0.125533074141 0.464970588684 +61 0.129932656884 0.463148206472 +37 0.133181810379 0.475274294615 +36 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +61 0.129932656884 0.463148206472 +62 0.1346539855 0.462526619434 +38 0.1346539855 0.47508046031 +37 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +62 0.1346539855 0.462526619434 +63 0.13937535882 0.463148206472 +39 0.136126160622 0.475274294615 +38 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +64 0.143774926662 0.464970588684 +40 0.137498021126 0.475842505693 +39 0.136126160622 0.475274294615 +63 0.13937535882 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +64 0.143774926662 0.464970588684 +65 0.147552967072 0.467869520187 +41 0.138676047325 0.476746439934 +40 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +65 0.147552967072 0.467869520187 +66 0.150451913476 0.471647560596 +42 0.139579966664 0.477924466133 +41 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +66 0.150451913476 0.471647560596 +67 0.152274280787 0.476047158241 +43 0.140148207545 0.479296296835 +42 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +68 0.152895867825 0.480768471956 +44 0.140342026949 0.480768471956 +43 0.140148207545 0.479296296835 +67 0.152274280787 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +68 0.152895867825 0.480768471956 +69 0.152274280787 0.485489845276 +45 0.140148207545 0.482240706682 +44 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +71 0.150451913476 0.489889442921 +47 0.139579966664 0.483612507582 +45 0.140148207545 0.482240706682 +69 0.152274280787 0.485489845276 +SURF 0x10 +mat 9 +refs 4 +70 0.147552967072 0.49366748333 +46 0.138676047325 0.484790533781 +47 0.139579966664 0.483612507582 +71 0.150451913476 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +72 0.148573309183 0.504877567291 +48 0.143774926662 0.496566444635 +70 0.147552967072 0.49366748333 +95 0.154338926077 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +72 0.148573309183 0.504877567291 +73 0.141859173775 0.507658600807 +49 0.139375329018 0.498388826847 +48 0.143774926662 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +73 0.141859173775 0.507658600807 +74 0.1346539855 0.508607268333 +50 0.1346539855 0.499010413885 +49 0.139375329018 0.498388826847 +SURF 0x10 +mat 9 +refs 4 +74 0.1346539855 0.508607268333 +75 0.127448782325 0.507658600807 +51 0.129932641983 0.498388797045 +50 0.1346539855 0.499010413885 +SURF 0x10 +mat 9 +refs 4 +75 0.127448782325 0.507658600807 +76 0.120734617114 0.504877567291 +52 0.125533029437 0.496566444635 +51 0.129932641983 0.498388797045 +SURF 0x10 +mat 9 +refs 4 +76 0.120734617114 0.504877567291 +77 0.114969015121 0.500453472137 +53 0.12175501883 0.493667453527 +52 0.125533029437 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +77 0.114969015121 0.500453472137 +78 0.11054494977 0.494687855244 +54 0.118856042624 0.489889442921 +53 0.12175501883 0.493667453527 +SURF 0x10 +mat 9 +refs 4 +78 0.11054494977 0.494687855244 +79 0.107763856649 0.487973690033 +55 0.117033675313 0.485489815474 +54 0.118856042624 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +79 0.107763856649 0.487973690033 +80 0.106815263629 0.480768471956 +56 0.116412103176 0.480768471956 +55 0.117033675313 0.485489815474 +SURF 0x10 +mat 9 +refs 4 +80 0.106815263629 0.480768471956 +81 0.107763856649 0.473563283682 +57 0.117033675313 0.476047158241 +56 0.116412103176 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +81 0.107763856649 0.473563283682 +82 0.11054494977 0.466849118471 +58 0.118856057525 0.471647530794 +57 0.117033675313 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +82 0.11054494977 0.466849118471 +83 0.114969074726 0.461083561182 +59 0.12175501883 0.467869520187 +58 0.118856057525 0.471647530794 +SURF 0x10 +mat 9 +refs 4 +84 0.120734632015 0.456659436226 +60 0.125533074141 0.464970588684 +59 0.12175501883 0.467869520187 +83 0.114969074726 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +84 0.120734632015 0.456659436226 +85 0.127448827028 0.453878372908 +61 0.129932656884 0.463148206472 +60 0.125533074141 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +85 0.127448827028 0.453878372908 +86 0.134654000401 0.452929794788 +62 0.1346539855 0.462526619434 +61 0.129932656884 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +86 0.134654000401 0.452929794788 +87 0.141859203577 0.453878372908 +63 0.13937535882 0.463148206472 +62 0.1346539855 0.462526619434 +SURF 0x10 +mat 9 +refs 4 +88 0.148573338985 0.456659466028 +64 0.143774926662 0.464970588684 +63 0.13937535882 0.463148206472 +87 0.141859203577 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +88 0.148573338985 0.456659466028 +89 0.154338926077 0.461083561182 +65 0.147552967072 0.467869520187 +64 0.143774926662 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +89 0.154338926077 0.461083561182 +90 0.158763021231 0.466849148273 +66 0.150451913476 0.471647560596 +65 0.147552967072 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +90 0.158763021231 0.466849148273 +91 0.161544129252 0.473563283682 +67 0.152274280787 0.476047158241 +66 0.150451913476 0.471647560596 +SURF 0x10 +mat 9 +refs 4 +92 0.162492707372 0.480768471956 +68 0.152895867825 0.480768471956 +67 0.152274280787 0.476047158241 +91 0.161544129252 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +92 0.162492707372 0.480768471956 +93 0.161544129252 0.487973719835 +69 0.152274280787 0.485489845276 +68 0.152895867825 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +94 0.158763021231 0.494687855244 +71 0.150451913476 0.489889442921 +69 0.152274280787 0.485489845276 +93 0.161544129252 0.487973719835 +SURF 0x10 +mat 9 +refs 4 +95 0.154338926077 0.500453472137 +70 0.147552967072 0.49366748333 +71 0.150451913476 0.489889442921 +94 0.158763021231 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +96 0.15329349041 0.513053119183 +72 0.148573309183 0.504877567291 +95 0.154338926077 0.500453472137 +118 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +96 0.15329349041 0.513053119183 +97 0.144302502275 0.516777276993 +73 0.141859173775 0.507658600807 +72 0.148573309183 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +97 0.144302502275 0.516777276993 +98 0.1346539855 0.518047630787 +74 0.1346539855 0.508607268333 +73 0.141859173775 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +98 0.1346539855 0.518047630787 +99 0.125005453825 0.516777276993 +75 0.127448782325 0.507658600807 +74 0.1346539855 0.508607268333 +SURF 0x10 +mat 9 +refs 4 +99 0.125005453825 0.516777276993 +100 0.116014450788 0.513053119183 +76 0.120734617114 0.504877567291 +75 0.127448782325 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +100 0.116014450788 0.513053119183 +101 0.108293712139 0.50712877512 +77 0.114969015121 0.500453472137 +76 0.120734617114 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +101 0.108293712139 0.50712877512 +102 0.10236941278 0.499408006668 +78 0.11054494977 0.494687855244 +77 0.114969015121 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +102 0.10236941278 0.499408006668 +103 0.0986452102661 0.490417033434 +79 0.107763856649 0.487973690033 +78 0.11054494977 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +103 0.0986452102661 0.490417033434 +104 0.0973749309778 0.480768471956 +80 0.106815263629 0.480768471956 +79 0.107763856649 0.487973690033 +SURF 0x10 +mat 9 +refs 4 +104 0.0973749309778 0.480768471956 +105 0.0986452102661 0.471119970083 +81 0.107763856649 0.473563283682 +80 0.106815263629 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +105 0.0986452102661 0.471119970083 +106 0.10236941278 0.462128996849 +82 0.11054494977 0.466849118471 +81 0.107763856649 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +106 0.10236941278 0.462128996849 +107 0.108293741941 0.454408228397 +83 0.114969074726 0.461083561182 +82 0.11054494977 0.466849118471 +SURF 0x10 +mat 9 +refs 4 +108 0.116014495492 0.448483914137 +84 0.120734632015 0.456659436226 +83 0.114969074726 0.461083561182 +107 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +108 0.116014495492 0.448483914137 +109 0.125005483627 0.444759726524 +85 0.127448827028 0.453878372908 +84 0.120734632015 0.456659436226 +SURF 0x10 +mat 9 +refs 4 +109 0.125005483627 0.444759726524 +110 0.134654000401 0.443489462137 +86 0.134654000401 0.452929794788 +85 0.127448827028 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +110 0.134654000401 0.443489462137 +111 0.144302561879 0.444759726524 +87 0.141859203577 0.453878372908 +86 0.134654000401 0.452929794788 +SURF 0x10 +mat 9 +refs 4 +112 0.153293505311 0.448483914137 +88 0.148573338985 0.456659466028 +87 0.141859203577 0.453878372908 +111 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +112 0.153293505311 0.448483914137 +113 0.161014273763 0.454408228397 +89 0.154338926077 0.461083561182 +88 0.148573338985 0.456659466028 +SURF 0x10 +mat 9 +refs 4 +113 0.161014273763 0.454408228397 +114 0.166938588023 0.462128996849 +90 0.158763021231 0.466849148273 +89 0.154338926077 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +114 0.166938588023 0.462128996849 +115 0.170662805438 0.471119970083 +91 0.161544129252 0.473563283682 +90 0.158763021231 0.466849148273 +SURF 0x10 +mat 9 +refs 4 +116 0.171933025122 0.480768531561 +92 0.162492707372 0.480768471956 +91 0.161544129252 0.473563283682 +115 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +116 0.171933025122 0.480768531561 +117 0.170662805438 0.490417033434 +93 0.161544129252 0.487973719835 +92 0.162492707372 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +119 0.166938588023 0.499408066273 +94 0.158763021231 0.494687855244 +93 0.161544129252 0.487973719835 +117 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +118 0.16101424396 0.50712877512 +95 0.154338926077 0.500453472137 +94 0.158763021231 0.494687855244 +119 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +120 0.15329349041 0.513053119183 +96 0.15329349041 0.513053119183 +118 0.16101424396 0.50712877512 +142 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +120 0.15329349041 0.513053119183 +121 0.144302502275 0.516777276993 +97 0.144302502275 0.516777276993 +96 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +121 0.144302502275 0.516777276993 +122 0.1346539855 0.518047630787 +98 0.1346539855 0.518047630787 +97 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +122 0.1346539855 0.518047630787 +123 0.125005453825 0.516777276993 +99 0.125005453825 0.516777276993 +98 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +123 0.125005453825 0.516777276993 +124 0.116014450788 0.513053119183 +100 0.116014450788 0.513053119183 +99 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +124 0.116014450788 0.513053119183 +125 0.108293712139 0.50712877512 +101 0.108293712139 0.50712877512 +100 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +125 0.108293712139 0.50712877512 +126 0.10236941278 0.499408006668 +102 0.10236941278 0.499408006668 +101 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +126 0.10236941278 0.499408006668 +127 0.0986452102661 0.490417033434 +103 0.0986452102661 0.490417033434 +102 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +127 0.0986452102661 0.490417033434 +128 0.0973749309778 0.480768471956 +104 0.0973749309778 0.480768471956 +103 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +128 0.0973749309778 0.480768471956 +129 0.0986452102661 0.471119970083 +105 0.0986452102661 0.471119970083 +104 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +129 0.0986452102661 0.471119970083 +130 0.10236941278 0.462128996849 +106 0.10236941278 0.462128996849 +105 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +130 0.10236941278 0.462128996849 +131 0.108293741941 0.454408228397 +107 0.108293741941 0.454408228397 +106 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +132 0.116014495492 0.448483914137 +108 0.116014495492 0.448483914137 +107 0.108293741941 0.454408228397 +131 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +132 0.116014495492 0.448483914137 +133 0.125005483627 0.444759726524 +109 0.125005483627 0.444759726524 +108 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +133 0.125005483627 0.444759726524 +134 0.134654000401 0.443489462137 +110 0.134654000401 0.443489462137 +109 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +134 0.134654000401 0.443489462137 +135 0.144302561879 0.444759726524 +111 0.144302561879 0.444759726524 +110 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +136 0.153293505311 0.448483914137 +112 0.153293505311 0.448483914137 +111 0.144302561879 0.444759726524 +135 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +136 0.153293505311 0.448483914137 +137 0.161014273763 0.454408228397 +113 0.161014273763 0.454408228397 +112 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +137 0.161014273763 0.454408228397 +138 0.166938588023 0.462128996849 +114 0.166938588023 0.462128996849 +113 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +138 0.166938588023 0.462128996849 +139 0.170662805438 0.471119970083 +115 0.170662805438 0.471119970083 +114 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +140 0.171933025122 0.480768531561 +116 0.171933025122 0.480768531561 +115 0.170662805438 0.471119970083 +139 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +140 0.171933025122 0.480768531561 +141 0.170662805438 0.490417033434 +117 0.170662805438 0.490417033434 +116 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +143 0.166938588023 0.499408066273 +119 0.166938588023 0.499408066273 +117 0.170662805438 0.490417033434 +141 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +142 0.16101424396 0.50712877512 +118 0.16101424396 0.50712877512 +119 0.166938588023 0.499408066273 +143 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +144 0.155027061701 0.516055822372 +120 0.15329349041 0.513053119183 +142 0.16101424396 0.50712877512 +166 0.163465932012 0.509580433369 +SURF 0x10 +mat 9 +refs 4 +144 0.155027061701 0.516055822372 +145 0.145199865103 0.520126402378 +121 0.144302502275 0.516777276993 +120 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +145 0.145199865103 0.520126402378 +146 0.134653955698 0.521514713764 +122 0.1346539855 0.518047630787 +121 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +146 0.134653955698 0.521514713764 +147 0.124108076096 0.520126402378 +123 0.125005453825 0.516777276993 +122 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +147 0.124108076096 0.520126402378 +148 0.114280834794 0.516055822372 +124 0.116014450788 0.513053119183 +123 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +148 0.114280834794 0.516055822372 +149 0.105842024088 0.509580433369 +125 0.108293712139 0.50712877512 +124 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +149 0.105842024088 0.509580433369 +150 0.09936670959 0.501141607761 +126 0.10236941278 0.499408006668 +125 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +150 0.09936670959 0.501141607761 +151 0.0952961295843 0.491314411163 +127 0.0986452102661 0.490417033434 +126 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +151 0.0952961295843 0.491314411163 +152 0.0939077436924 0.480768471956 +128 0.0973749309778 0.480768471956 +127 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +152 0.0939077436924 0.480768471956 +153 0.0952961593866 0.470222562551 +129 0.0986452102661 0.471119970083 +128 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +153 0.0952961593866 0.470222562551 +154 0.09936670959 0.460395395756 +130 0.10236941278 0.462128996849 +129 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +154 0.09936670959 0.460395395756 +155 0.10584205389 0.451956540346 +131 0.108293741941 0.454408228397 +130 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +156 0.114280894399 0.445481210947 +132 0.116014495492 0.448483914137 +131 0.108293741941 0.454408228397 +155 0.10584205389 0.451956540346 +SURF 0x10 +mat 9 +refs 4 +156 0.114280894399 0.445481210947 +157 0.124108105898 0.441410690546 +133 0.125005483627 0.444759726524 +132 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +157 0.124108105898 0.441410690546 +158 0.134654000401 0.440022289753 +134 0.134654000401 0.443489462137 +133 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +158 0.134654000401 0.440022289753 +159 0.145199909806 0.441410690546 +135 0.144302561879 0.444759726524 +134 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +160 0.155027121305 0.445481210947 +136 0.153293505311 0.448483914137 +135 0.144302561879 0.444759726524 +159 0.145199909806 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +160 0.155027121305 0.445481210947 +161 0.163465932012 0.451956599951 +137 0.161014273763 0.454408228397 +136 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +161 0.163465932012 0.451956599951 +162 0.169941276312 0.460395395756 +138 0.166938588023 0.462128996849 +137 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +162 0.169941276312 0.460395395756 +163 0.174011841416 0.470222622156 +139 0.170662805438 0.471119970083 +138 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +164 0.175400227308 0.480768531561 +140 0.171933025122 0.480768531561 +139 0.170662805438 0.471119970083 +163 0.174011841416 0.470222622156 +SURF 0x10 +mat 9 +refs 4 +164 0.175400227308 0.480768531561 +165 0.174011841416 0.491314411163 +141 0.170662805438 0.490417033434 +140 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +167 0.169941276312 0.501141607761 +143 0.166938588023 0.499408066273 +141 0.170662805438 0.490417033434 +165 0.174011841416 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +166 0.163465932012 0.509580433369 +142 0.16101424396 0.50712877512 +143 0.166938588023 0.499408066273 +167 0.169941276312 0.501141607761 +SURF 0x10 +mat 10 +refs 3 +240 0.172038733959 0.529489099979 +455 0.178452908993 0.524567306042 +335 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +432 0.165624529123 0.534410893917 +240 0.172038733959 0.529489099979 +312 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +240 0.172038733959 0.529489099979 +335 0.174609094858 0.520723462105 +312 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +241 0.158155053854 0.537504851818 +432 0.165624529123 0.534410893917 +312 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +433 0.150685578585 0.540598809719 +241 0.158155053854 0.537504851818 +313 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +241 0.158155053854 0.537504851818 +312 0.162906527519 0.529703140259 +313 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +242 0.142669856548 0.54165405035 +433 0.150685578585 0.540598809719 +313 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +434 0.134654119611 0.542709350586 +242 0.142669856548 0.54165405035 +314 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +242 0.142669856548 0.54165405035 +313 0.149278670549 0.535348057747 +314 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +243 0.126638397574 0.54165405035 +434 0.134654119611 0.542709350586 +314 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +435 0.118622675538 0.540598809719 +243 0.126638397574 0.54165405035 +315 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +243 0.126638397574 0.54165405035 +314 0.134654119611 0.537273347378 +315 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +244 0.111153200269 0.537504792213 +435 0.118622675538 0.540598809719 +315 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +436 0.103683710098 0.534410893917 +244 0.111153200269 0.537504792213 +316 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +244 0.111153200269 0.537504792213 +315 0.120029598475 0.535347998142 +316 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +245 0.0972695350647 0.529489040375 +436 0.103683710098 0.534410893917 +316 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +437 0.0908553749323 0.524567246437 +245 0.0972695350647 0.529489040375 +317 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +245 0.0972695350647 0.529489040375 +316 0.106401756406 0.529703140259 +317 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +246 0.0859335958958 0.518153131008 +437 0.0908553749323 0.524567246437 +317 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +438 0.0810118317604 0.511738836765 +246 0.0859335958958 0.518153131008 +318 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +246 0.0859335958958 0.518153131008 +317 0.0946992188692 0.520723462105 +318 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +247 0.0779178887606 0.504269421101 +438 0.0810118317604 0.511738836765 +318 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +439 0.0748239308596 0.496799945831 +247 0.0779178887606 0.504269421101 +319 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +247 0.0779178887606 0.504269421101 +318 0.0857195258141 0.509020864964 +319 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +248 0.0737686306238 0.488784253597 +439 0.0748239308596 0.496799945831 +319 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +440 0.0727133601904 0.480768471956 +248 0.0737686306238 0.488784253597 +320 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +248 0.0737686306238 0.488784253597 +319 0.0800746977329 0.495393037796 +320 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +249 0.0737686306238 0.47275274992 +440 0.0727133601904 0.480768471956 +320 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +441 0.0748239308596 0.464737027884 +249 0.0737686306238 0.47275274992 +321 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +249 0.0737686306238 0.47275274992 +320 0.0781493484974 0.480768471956 +321 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +250 0.0779178887606 0.457267582417 +441 0.0748239308596 0.464737027884 +321 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +442 0.0810118466616 0.449798107147 +250 0.0779178887606 0.457267582417 +322 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +250 0.0779178887606 0.457267582417 +321 0.0800746977329 0.466143995523 +322 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +251 0.0859336405993 0.443383902311 +442 0.0810118466616 0.449798107147 +322 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +443 0.0908554345369 0.436969727278 +251 0.0859336405993 0.443383902311 +323 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +251 0.0859336405993 0.443383902311 +322 0.0857195854187 0.452516138554 +323 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +252 0.0972696095705 0.43204793334 +443 0.0908554345369 0.436969727278 +323 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +444 0.103683769703 0.427126199007 +252 0.0972696095705 0.43204793334 +324 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +252 0.0972696095705 0.43204793334 +323 0.0946992486715 0.440813541412 +324 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +253 0.111153259873 0.424032241106 +444 0.103683769703 0.427126199007 +324 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +445 0.118622720242 0.420938313007 +253 0.111153259873 0.424032241106 +325 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +253 0.111153259873 0.424032241106 +324 0.106401786208 0.431833893061 +325 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +254 0.12663847208 0.419883012772 +445 0.118622720242 0.420938313007 +325 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +446 0.134654194117 0.418827682734 +254 0.12663847208 0.419883012772 +326 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +254 0.12663847208 0.419883012772 +325 0.120029658079 0.42618906498 +326 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +255 0.142669931054 0.419883012772 +446 0.134654194117 0.418827682734 +326 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +447 0.15068565309 0.420938313007 +255 0.142669931054 0.419883012772 +327 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +255 0.142669931054 0.419883012772 +326 0.134654179215 0.424263685942 +327 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +256 0.15815512836 0.424032270908 +447 0.15068565309 0.420938313007 +327 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +448 0.165624588728 0.427126228809 +256 0.15815512836 0.424032270908 +328 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +256 0.15815512836 0.424032270908 +327 0.149278700352 0.42618906498 +328 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +257 0.17203874886 0.432047963142 +448 0.165624588728 0.427126228809 +328 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +449 0.178452938795 0.436969786882 +257 0.17203874886 0.432047963142 +329 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +257 0.17203874886 0.432047963142 +328 0.162906616926 0.431833952665 +329 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +258 0.18337470293 0.443383932114 +449 0.178452938795 0.436969786882 +329 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +450 0.188296467066 0.44979813695 +258 0.18337470293 0.443383932114 +330 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +258 0.18337470293 0.443383932114 +329 0.17460912466 0.440813601017 +330 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +259 0.191390439868 0.457267612219 +450 0.188296467066 0.44979813695 +330 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +451 0.194484397769 0.464737057686 +259 0.191390439868 0.457267612219 +331 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +259 0.191390439868 0.457267612219 +330 0.183588787913 0.452516138554 +331 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +260 0.195539683104 0.472752779722 +451 0.194484397769 0.464737057686 +331 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +452 0.196594953537 0.480768531561 +260 0.195539683104 0.472752779722 +332 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +260 0.195539683104 0.472752779722 +331 0.189233630896 0.466143995523 +332 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +261 0.195539683104 0.488784253597 +452 0.196594953537 0.480768531561 +332 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +453 0.194484397769 0.496799975634 +261 0.195539683104 0.488784253597 +333 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +261 0.195539683104 0.488784253597 +332 0.191158980131 0.480768531561 +333 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +262 0.191390439868 0.504269480705 +453 0.194484397769 0.496799975634 +333 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +454 0.188296467066 0.51173889637 +262 0.191390439868 0.504269480705 +334 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +262 0.191390439868 0.504269480705 +333 0.189233630896 0.495393067598 +334 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +263 0.183374688029 0.518153131008 +454 0.188296467066 0.51173889637 +334 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +455 0.178452908993 0.524567306042 +263 0.183374688029 0.518153131008 +335 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +263 0.183374688029 0.518153131008 +334 0.183588787913 0.509020924568 +335 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +192 0.172038733959 0.529489099979 +408 0.165624529123 0.534410893917 +384 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +431 0.178452908993 0.524567306042 +192 0.172038733959 0.529489099979 +407 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +192 0.172038733959 0.529489099979 +384 0.162896901369 0.529686510563 +407 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +194 0.158155053854 0.537504851818 +409 0.150685578585 0.540598809719 +385 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +408 0.165624529123 0.534410893917 +194 0.158155053854 0.537504851818 +384 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +194 0.158155053854 0.537504851818 +385 0.149273663759 0.535329461098 +384 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +196 0.142669856548 0.54165405035 +410 0.134654119611 0.542709350586 +386 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +409 0.150685578585 0.540598809719 +196 0.142669856548 0.54165405035 +385 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +196 0.142669856548 0.54165405035 +386 0.134654119611 0.537254154682 +385 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +198 0.126638397574 0.54165405035 +411 0.118622675538 0.540598809719 +387 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +410 0.134654119611 0.542709350586 +198 0.126638397574 0.54165405035 +386 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +198 0.126638397574 0.54165405035 +387 0.120034605265 0.535329401493 +386 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +200 0.111153200269 0.537504792213 +412 0.103683710098 0.534410834312 +388 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +411 0.118622675538 0.540598809719 +200 0.111153200269 0.537504792213 +387 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +200 0.111153200269 0.537504792213 +388 0.106411337852 0.529686450958 +387 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +202 0.0972695350647 0.529489040375 +413 0.0908553749323 0.524567246437 +389 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +412 0.103683710098 0.534410834312 +202 0.0972695350647 0.529489040375 +388 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +202 0.0972695350647 0.529489040375 +389 0.0947128087282 0.520709812641 +388 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +204 0.0859335958958 0.518153131008 +414 0.0810118317604 0.511738836765 +390 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +413 0.0908553749323 0.524567246437 +204 0.0859335958958 0.518153131008 +389 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +204 0.0859335958958 0.518153131008 +390 0.0857362151146 0.509011268616 +389 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +206 0.0779178887606 0.504269421101 +415 0.0748239308596 0.496799916029 +391 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +414 0.0810118317604 0.511738836765 +206 0.0779178887606 0.504269421101 +390 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +206 0.0779178887606 0.504269421101 +391 0.0800932794809 0.495388031006 +390 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +208 0.0737686306238 0.488784193993 +416 0.0727133601904 0.480768471956 +392 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +415 0.0748239308596 0.496799916029 +208 0.0737686306238 0.488784193993 +391 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +208 0.0737686306238 0.488784193993 +392 0.0781685709953 0.480768471956 +391 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +210 0.0737686306238 0.47275274992 +417 0.0748239308596 0.464737027884 +393 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +416 0.0727133601904 0.480768471956 +210 0.0737686306238 0.47275274992 +392 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +210 0.0737686306238 0.47275274992 +393 0.0800932794809 0.466148912907 +392 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +212 0.0779178887606 0.457267582417 +418 0.0810118466616 0.449798107147 +394 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +417 0.0748239308596 0.464737027884 +212 0.0779178887606 0.457267582417 +393 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +212 0.0779178887606 0.457267582417 +394 0.0857362300158 0.452525675297 +393 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +214 0.0859336405993 0.443383902311 +419 0.0908554345369 0.436969727278 +395 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +418 0.0810118466616 0.449798107147 +214 0.0859336405993 0.443383902311 +394 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +214 0.0859336405993 0.443383902311 +395 0.0947128683329 0.440827161074 +394 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +215 0.0972696095705 0.43204793334 +420 0.103683769703 0.427126199007 +396 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +419 0.0908554345369 0.436969727278 +215 0.0972696095705 0.43204793334 +395 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +215 0.0972696095705 0.43204793334 +396 0.106411382556 0.431850552559 +395 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +218 0.111153259873 0.424032241106 +421 0.118622720242 0.420938313007 +397 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +420 0.103683769703 0.427126199007 +218 0.111153259873 0.424032241106 +396 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +218 0.111153259873 0.424032241106 +397 0.120034620166 0.426207602024 +396 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +220 0.12663847208 0.419883012772 +422 0.134654194117 0.418827682734 +398 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +421 0.118622720242 0.420938313007 +220 0.12663847208 0.419883012772 +397 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +220 0.12663847208 0.419883012772 +398 0.134654179215 0.424282938242 +397 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +222 0.142669931054 0.419883012772 +423 0.15068565309 0.420938313007 +399 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +422 0.134654194117 0.418827682734 +222 0.142669931054 0.419883012772 +398 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +222 0.142669931054 0.419883012772 +399 0.149273738265 0.426207602024 +398 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +223 0.15815512836 0.424032270908 +424 0.165624588728 0.427126228809 +400 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +423 0.15068565309 0.420938313007 +223 0.15815512836 0.424032270908 +399 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +223 0.15815512836 0.424032270908 +400 0.162896946073 0.431850552559 +399 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +226 0.17203874886 0.432047963142 +425 0.178452938795 0.436969786882 +401 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +424 0.165624588728 0.427126228809 +226 0.17203874886 0.432047963142 +400 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +226 0.17203874886 0.432047963142 +401 0.1745955199 0.440827220678 +400 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +228 0.18337470293 0.443383932114 +426 0.188296467066 0.44979813695 +402 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +425 0.178452938795 0.436969786882 +228 0.18337470293 0.443383932114 +401 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +228 0.18337470293 0.443383932114 +402 0.183572113514 0.452525734901 +401 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +230 0.191390439868 0.457267612219 +427 0.194484397769 0.464737057686 +403 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +426 0.188296467066 0.44979813695 +230 0.191390439868 0.457267612219 +402 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +230 0.191390439868 0.457267612219 +403 0.189215064049 0.466149002314 +402 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +231 0.195539683104 0.472752779722 +428 0.196594953537 0.480768531561 +404 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +427 0.194484397769 0.464737057686 +231 0.195539683104 0.472752779722 +403 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +231 0.195539683104 0.472752779722 +404 0.191139742732 0.480768531561 +403 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +234 0.195539683104 0.488784253597 +429 0.194484397769 0.496799975634 +405 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +428 0.196594953537 0.480768531561 +234 0.195539683104 0.488784253597 +404 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +234 0.195539683104 0.488784253597 +405 0.189215064049 0.495388060808 +404 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +235 0.191390439868 0.504269480705 +430 0.188296467066 0.51173889637 +406 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +429 0.194484397769 0.496799975634 +235 0.191390439868 0.504269480705 +405 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +235 0.191390439868 0.504269480705 +406 0.183572113514 0.50901132822 +405 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +238 0.183374688029 0.518153131008 +431 0.178452908993 0.524567306042 +407 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +430 0.188296467066 0.51173889637 +238 0.183374688029 0.518153131008 +406 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +238 0.183374688029 0.518153131008 +407 0.174595504999 0.520709872246 +406 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 4 +192 0.00655085407197 0.452727437019 +168 0.0154595961794 0.452727437019 +193 0.0154596110806 0.458196461201 +408 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +168 0.0154595961794 0.452727437019 +240 0.0243683308363 0.452727437019 +432 0.022099763155 0.458196461201 +193 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +168 0.0154595961794 0.452727437019 +192 0.00655085407197 0.452727437019 +431 0.00881944410503 0.447258412838 +237 0.0154596073553 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +240 0.0243683308363 0.452727437019 +168 0.0154595961794 0.452727437019 +237 0.0154596073553 0.447258412838 +455 0.022099763155 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +193 0.0154596110806 0.458196461201 +169 0.0154595961794 0.464565306902 +194 0.00655088014901 0.464565306902 +408 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +169 0.0154595961794 0.464565306902 +195 0.0154596110806 0.470934122801 +409 0.00881944410503 0.470934122801 +194 0.00655088014901 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +432 0.022099763155 0.458196461201 +241 0.0243683308363 0.464565306902 +169 0.0154595961794 0.464565306902 +193 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +241 0.0243683308363 0.464565306902 +433 0.022099763155 0.470934122801 +195 0.0154596110806 0.470934122801 +169 0.0154595961794 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +195 0.0154596110806 0.470934122801 +170 0.0154595961794 0.477768719196 +196 0.00655088014901 0.477768719196 +409 0.00881944410503 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +170 0.0154595961794 0.477768719196 +197 0.0154596110806 0.484603285789 +410 0.00881944410503 0.484603285789 +196 0.00655088014901 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +433 0.022099763155 0.470934122801 +242 0.0243683308363 0.477768719196 +170 0.0154595961794 0.477768719196 +195 0.0154596110806 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +242 0.0243683308363 0.477768719196 +434 0.022099763155 0.484603285789 +197 0.0154596110806 0.484603285789 +170 0.0154595961794 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +197 0.0154596110806 0.484603285789 +171 0.0154595961794 0.491437911987 +198 0.00655088014901 0.491437911987 +410 0.00881944410503 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +171 0.0154595961794 0.491437911987 +199 0.0154596110806 0.49827247858 +411 0.00881944410503 0.49827247858 +198 0.00655088014901 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +434 0.022099763155 0.484603285789 +243 0.0243683308363 0.491437911987 +171 0.0154595961794 0.491437911987 +197 0.0154596110806 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +243 0.0243683308363 0.491437911987 +435 0.022099763155 0.49827247858 +199 0.0154596110806 0.49827247858 +171 0.0154595961794 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +199 0.0154596110806 0.49827247858 +172 0.0154595961794 0.504641294479 +200 0.00655088014901 0.504641294479 +411 0.00881944410503 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +172 0.0154595961794 0.504641294479 +201 0.0154596110806 0.511010169983 +412 0.00881944410503 0.511010169983 +200 0.00655088014901 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +435 0.022099763155 0.49827247858 +244 0.0243683308363 0.504641294479 +172 0.0154595961794 0.504641294479 +199 0.0154596110806 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +244 0.0243683308363 0.504641294479 +436 0.022099763155 0.511010169983 +201 0.0154596110806 0.511010169983 +172 0.0154595961794 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +201 0.0154596110806 0.511010169983 +173 0.0154595999047 0.516479194164 +202 0.00655085407197 0.516479194164 +412 0.00881944410503 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +173 0.0154595999047 0.516479194164 +203 0.0154596110806 0.521948158741 +413 0.00881944410503 0.521948158741 +202 0.00655085407197 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +436 0.022099763155 0.511010169983 +245 0.0243683308363 0.516479194164 +173 0.0154595999047 0.516479194164 +201 0.0154596110806 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +245 0.0243683308363 0.516479194164 +437 0.022099763155 0.521948158741 +203 0.0154596110806 0.521948158741 +173 0.0154595999047 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +203 0.0154596110806 0.521948158741 +174 0.015459577553 0.526144683361 +204 0.00655085779727 0.526144683361 +413 0.00881944410503 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +174 0.015459577553 0.526144683361 +205 0.0154595999047 0.530341267586 +414 0.0088194347918 0.530341267586 +204 0.00655085779727 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +437 0.022099763155 0.521948158741 +246 0.0243683084846 0.526144683361 +174 0.015459577553 0.526144683361 +203 0.0154596110806 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +246 0.0243683084846 0.526144683361 +438 0.022099763155 0.530341267586 +205 0.0154595999047 0.530341267586 +174 0.015459577553 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +205 0.0154595999047 0.530341267586 +175 0.015459577553 0.532979309559 +206 0.00655085779727 0.532979309559 +414 0.0088194347918 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +175 0.015459577553 0.532979309559 +207 0.0154595999047 0.535617351532 +415 0.0088194347918 0.535617351532 +206 0.00655085779727 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +438 0.022099763155 0.530341267586 +247 0.0243683084846 0.532979309559 +175 0.015459577553 0.532979309559 +205 0.0154595999047 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +247 0.0243683084846 0.532979309559 +439 0.022099763155 0.535617351532 +207 0.0154595999047 0.535617351532 +175 0.015459577553 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +207 0.0154595999047 0.535617351532 +176 0.0154595999047 0.53651714325 +208 0.00655088014901 0.53651714325 +415 0.0088194347918 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +176 0.0154595999047 0.53651714325 +209 0.0154596222565 0.537416934967 +416 0.0088194552809 0.537416934967 +208 0.00655088014901 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +439 0.022099763155 0.535617351532 +248 0.0243683308363 0.53651714325 +176 0.0154595999047 0.53651714325 +207 0.0154595999047 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +248 0.0243683308363 0.53651714325 +440 0.022099789232 0.537416934967 +209 0.0154596222565 0.537416934967 +176 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +209 0.0154596222565 0.537416934967 +177 0.0154595999047 0.53651714325 +210 0.00655088014901 0.53651714325 +416 0.0088194552809 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +177 0.0428032502532 0.53651714325 +211 0.0428032390773 0.535617351532 +417 0.0494434013963 0.535617351532 +210 0.0517119690776 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +440 0.022099789232 0.537416934967 +249 0.0243683308363 0.53651714325 +177 0.0154595999047 0.53651714325 +209 0.0154596222565 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +249 0.0338945165277 0.53651714325 +441 0.036163084209 0.535617351532 +211 0.0428032390773 0.535617351532 +177 0.0428032502532 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +211 0.0428032390773 0.535617351532 +178 0.0428032502532 0.532979249954 +212 0.0517119690776 0.532979249954 +417 0.0494434013963 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +178 0.0428032502532 0.532979249954 +213 0.0428032390773 0.530341207981 +418 0.0494434013963 0.530341207981 +212 0.0517119690776 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +441 0.036163084209 0.535617351532 +250 0.0338945165277 0.532979249954 +178 0.0428032502532 0.532979249954 +211 0.0428032390773 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +250 0.0338945165277 0.532979249954 +442 0.036163084209 0.530341207981 +213 0.0428032390773 0.530341207981 +178 0.0428032502532 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +213 0.0428032390773 0.530341207981 +179 0.0428032502532 0.526144683361 +214 0.0517119690776 0.526144683361 +418 0.0494434013963 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +179 0.0428032502532 0.526144683361 +216 0.0428032390773 0.521948158741 +419 0.0494434051216 0.521948158741 +214 0.0517119690776 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +442 0.036163084209 0.530341207981 +251 0.0338945165277 0.526144683361 +179 0.0428032502532 0.526144683361 +213 0.0428032390773 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +251 0.0338945165277 0.526144683361 +443 0.036163084209 0.521948158741 +216 0.0428032390773 0.521948158741 +179 0.0428032502532 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +252 0.0338945165277 0.51647913456 +180 0.0428032502532 0.51647913456 +216 0.0428032390773 0.521948158741 +443 0.036163084209 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +180 0.0428032502532 0.51647913456 +215 0.0517119690776 0.51647913456 +419 0.0494434051216 0.521948158741 +216 0.0428032390773 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +444 0.036163084209 0.511010050774 +217 0.0428032390773 0.511010050774 +180 0.0428032502532 0.51647913456 +252 0.0338945165277 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +217 0.0428032390773 0.511010050774 +420 0.0494434051216 0.511010050774 +215 0.0517119690776 0.51647913456 +180 0.0428032502532 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +217 0.0428032390773 0.511010050774 +181 0.0428032539785 0.504641294479 +218 0.0517119690776 0.504641294479 +420 0.0494434051216 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +181 0.0428032539785 0.504641294479 +219 0.0428032390773 0.498272418976 +421 0.0494434051216 0.498272418976 +218 0.0517119690776 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +444 0.036163084209 0.511010050774 +253 0.0338945165277 0.504641294479 +181 0.0428032539785 0.504641294479 +217 0.0428032390773 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +253 0.0338945165277 0.504641294479 +445 0.036163084209 0.498272418976 +219 0.0428032390773 0.498272418976 +181 0.0428032539785 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +219 0.0428032390773 0.498272418976 +182 0.0428032539785 0.491437852383 +220 0.0517119690776 0.491437852383 +421 0.0494434051216 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +182 0.0428032539785 0.491437852383 +221 0.0428032390773 0.484603226185 +422 0.0494434051216 0.484603226185 +220 0.0517119690776 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +445 0.036163084209 0.498272418976 +254 0.0338945165277 0.491437852383 +182 0.0428032539785 0.491437852383 +219 0.0428032390773 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +254 0.0338945165277 0.491437852383 +446 0.036163084209 0.484603226185 +221 0.0428032390773 0.484603226185 +182 0.0428032539785 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +221 0.0428032390773 0.484603226185 +183 0.0428032539785 0.477768689394 +222 0.0517119690776 0.477768689394 +422 0.0494434051216 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +183 0.0428032539785 0.477768689394 +224 0.0428032390773 0.470934063196 +423 0.0494434051216 0.470934063196 +222 0.0517119690776 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +446 0.036163084209 0.484603226185 +255 0.0338945165277 0.477768689394 +183 0.0428032539785 0.477768689394 +221 0.0428032390773 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +255 0.0338945165277 0.477768689394 +447 0.036163084209 0.470934063196 +224 0.0428032390773 0.470934063196 +183 0.0428032539785 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +256 0.0338945165277 0.4645652771 +184 0.0428032539785 0.4645652771 +224 0.0428032390773 0.470934063196 +447 0.036163084209 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +184 0.0428032539785 0.4645652771 +223 0.0517119690776 0.4645652771 +423 0.0494434051216 0.470934063196 +224 0.0428032390773 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +448 0.036163084209 0.458196431398 +225 0.0428032390773 0.458196431398 +184 0.0428032539785 0.4645652771 +256 0.0338945165277 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +225 0.0428032390773 0.458196431398 +424 0.0494434051216 0.458196431398 +223 0.0517119690776 0.4645652771 +184 0.0428032539785 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +225 0.0428032390773 0.458196431398 +185 0.0428032539785 0.452727407217 +226 0.0517119690776 0.452727407217 +424 0.0494434051216 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +185 0.0428032539785 0.452727407217 +227 0.0428032428026 0.447258353233 +425 0.0494434051216 0.447258353233 +226 0.0517119690776 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +448 0.036163084209 0.458196431398 +257 0.0338945165277 0.452727407217 +185 0.0428032539785 0.452727407217 +225 0.0428032390773 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +257 0.0338945165277 0.452727407217 +449 0.036163084209 0.447258353233 +227 0.0428032428026 0.447258353233 +185 0.0428032539785 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +227 0.0428032428026 0.447258353233 +186 0.0428032539785 0.443061828613 +228 0.0517119728029 0.443061828613 +425 0.0494434051216 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +186 0.0428032539785 0.443061828613 +229 0.0428032428026 0.438865333796 +426 0.0494434088469 0.438865333796 +228 0.0517119728029 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +449 0.036163084209 0.447258353233 +258 0.0338945239782 0.443061828613 +186 0.0428032539785 0.443061828613 +227 0.0428032428026 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +258 0.0338945239782 0.443061828613 +450 0.0361630916595 0.438865333796 +229 0.0428032428026 0.438865333796 +186 0.0428032539785 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +229 0.0428032428026 0.438865333796 +187 0.0428032539785 0.43622726202 +230 0.0517119728029 0.43622726202 +426 0.0494434088469 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +187 0.0428032539785 0.43622726202 +232 0.0428032428026 0.433589220047 +427 0.0494434088469 0.433589220047 +230 0.0517119728029 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +450 0.0361630916595 0.438865333796 +259 0.0338945239782 0.43622726202 +187 0.0428032539785 0.43622726202 +229 0.0428032428026 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +259 0.0338945239782 0.43622726202 +451 0.0361630916595 0.433589220047 +232 0.0428032428026 0.433589220047 +187 0.0428032539785 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +260 0.0338945239782 0.432689428329 +188 0.0428032539785 0.432689428329 +232 0.0428032428026 0.433589220047 +451 0.0361630916595 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +188 0.0428032539785 0.432689428329 +231 0.0517119728029 0.432689428329 +427 0.0494434088469 0.433589220047 +232 0.0428032428026 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +452 0.0361630693078 0.431789666414 +233 0.0428032316267 0.431789666414 +188 0.0428032539785 0.432689428329 +260 0.0338945239782 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +233 0.0428032316267 0.431789666414 +428 0.049443397671 0.431789666414 +231 0.0517119728029 0.432689428329 +188 0.0428032539785 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +233 0.0154596185312 0.431789666414 +189 0.0154595961794 0.432689428329 +234 0.00655087642372 0.432689428329 +428 0.00881945155561 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +189 0.0154595961794 0.432689428329 +236 0.0154595961794 0.433589220047 +429 0.00881942920387 0.433589220047 +234 0.00655087642372 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +452 0.0220997817814 0.431789666414 +261 0.024368327111 0.432689428329 +189 0.0154595961794 0.432689428329 +233 0.0154596185312 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +261 0.024368327111 0.432689428329 +453 0.0220997594297 0.433589220047 +236 0.0154595961794 0.433589220047 +189 0.0154595961794 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +262 0.0243683047593 0.43622726202 +190 0.0154595738277 0.43622726202 +236 0.0154595961794 0.433589220047 +453 0.0220997594297 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +190 0.0154595738277 0.43622726202 +235 0.00655085407197 0.43622726202 +429 0.00881942920387 0.433589220047 +236 0.0154595961794 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +454 0.0220997594297 0.438865333796 +239 0.0154595961794 0.438865333796 +190 0.0154595738277 0.43622726202 +262 0.0243683047593 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +239 0.0154595961794 0.438865333796 +430 0.00881942920387 0.438865333796 +235 0.00655085407197 0.43622726202 +190 0.0154595738277 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +263 0.0243683047593 0.443061858416 +191 0.0154595738277 0.443061858416 +239 0.0154595961794 0.438865333796 +454 0.0220997594297 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +191 0.0154595738277 0.443061858416 +238 0.00655085407197 0.443061858416 +430 0.00881942920387 0.438865333796 +239 0.0154595961794 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +455 0.022099763155 0.447258412838 +237 0.0154596073553 0.447258412838 +191 0.0154595738277 0.443061858416 +263 0.0243683047593 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +237 0.0154596073553 0.447258412838 +431 0.00881944410503 0.447258412838 +238 0.00655085407197 0.443061858416 +191 0.0154595738277 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +310 0.167684406042 0.513798773289 +286 0.163628861308 0.509743213654 +264 0.155142366886 0.516255199909 +288 0.158010050654 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +289 0.146744042635 0.525888681412 +288 0.158010050654 0.521222114563 +264 0.155142366886 0.516255199909 +265 0.145259618759 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +290 0.134654119611 0.527480363846 +289 0.146744042635 0.525888681412 +265 0.145259618759 0.520348727703 +266 0.134654119611 0.521744906902 +SURF 0x10 +mat 10 +refs 4 +291 0.122564211488 0.525888621807 +290 0.134654119611 0.527480363846 +266 0.134654119611 0.521744906902 +267 0.124048650265 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +292 0.111298218369 0.521222114563 +291 0.122564211488 0.525888621807 +267 0.124048650265 0.520348727703 +268 0.114165946841 0.516255140305 +SURF 0x10 +mat 10 +refs 4 +293 0.101623922586 0.513798773289 +292 0.111298218369 0.521222114563 +268 0.114165946841 0.516255140305 +269 0.105679437518 0.509743213654 +SURF 0x10 +mat 10 +refs 4 +294 0.0942005366087 0.504124403 +293 0.101623922586 0.513798773289 +269 0.105679437518 0.509743213654 +270 0.0991675406694 0.50125670433 +SURF 0x10 +mat 10 +refs 4 +295 0.0895339995623 0.492858439684 +294 0.0942005366087 0.504124403 +270 0.0991675406694 0.50125670433 +271 0.0950739830732 0.491373956203 +SURF 0x10 +mat 10 +refs 4 +296 0.0879423320293 0.480768471956 +295 0.0895339995623 0.492858439684 +271 0.0950739830732 0.491373956203 +272 0.0936777442694 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +297 0.0895340144634 0.468678593636 +296 0.0879423320293 0.480768471956 +272 0.0936777442694 0.480768471956 +273 0.0950739979744 0.470163017511 +SURF 0x10 +mat 10 +refs 4 +298 0.0942005366087 0.457412600517 +297 0.0895340144634 0.468678593636 +273 0.0950739979744 0.470163017511 +274 0.0991675704718 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +299 0.101623937488 0.447738260031 +298 0.0942005366087 0.457412600517 +274 0.0991675704718 0.460280328989 +275 0.105679482222 0.451793789864 +SURF 0x10 +mat 10 +refs 4 +299 0.101623937488 0.447738260031 +275 0.105679482222 0.451793789864 +276 0.114166006446 0.445281893015 +300 0.111298263073 0.440314859152 +SURF 0x10 +mat 10 +refs 4 +301 0.12256424129 0.435648351908 +300 0.111298263073 0.440314859152 +276 0.114166006446 0.445281893015 +277 0.124048694968 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +302 0.134654179215 0.434056699276 +301 0.12256424129 0.435648351908 +277 0.124048694968 0.441188365221 +278 0.134654179215 0.439792096615 +SURF 0x10 +mat 10 +refs 4 +303 0.146744087338 0.435648351908 +302 0.134654179215 0.434056699276 +278 0.134654179215 0.439792096615 +279 0.145259648561 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +303 0.146744087338 0.435648351908 +279 0.145259648561 0.441188365221 +280 0.155142381787 0.445281893015 +304 0.158010080457 0.440314888954 +SURF 0x10 +mat 10 +refs 4 +305 0.167684406042 0.447738260031 +304 0.158010080457 0.440314888954 +280 0.155142381787 0.445281893015 +281 0.163628861308 0.451793819666 +SURF 0x10 +mat 10 +refs 4 +306 0.17510779202 0.45741263032 +305 0.167684406042 0.447738260031 +281 0.163628861308 0.451793819666 +282 0.17014080286 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +307 0.179774314165 0.468678623438 +306 0.17510779202 0.45741263032 +282 0.17014080286 0.460280328989 +283 0.174234315753 0.470163047314 +SURF 0x10 +mat 10 +refs 4 +307 0.179774314165 0.468678623438 +283 0.174234315753 0.470163047314 +284 0.175630584359 0.480768531561 +308 0.181365996599 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +309 0.179774314165 0.492858439684 +308 0.181365996599 0.480768531561 +284 0.175630584359 0.480768531561 +285 0.174234315753 0.491374015808 +SURF 0x10 +mat 10 +refs 4 +309 0.179774314165 0.492858439684 +285 0.174234315753 0.491374015808 +287 0.17014080286 0.501256763935 +311 0.17510779202 0.504124403 +SURF 0x10 +mat 10 +refs 4 +311 0.17510779202 0.504124403 +287 0.17014080286 0.501256763935 +286 0.163628861308 0.509743213654 +310 0.167684406042 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +335 0.174609094858 0.520723462105 +310 0.167684406042 0.513798773289 +288 0.158010050654 0.521222114563 +312 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +313 0.149278670549 0.535348057747 +312 0.162906527519 0.529703140259 +288 0.158010050654 0.521222114563 +289 0.146744042635 0.525888681412 +SURF 0x10 +mat 10 +refs 4 +314 0.134654119611 0.537273347378 +313 0.149278670549 0.535348057747 +289 0.146744042635 0.525888681412 +290 0.134654119611 0.527480363846 +SURF 0x10 +mat 10 +refs 4 +315 0.120029598475 0.535347998142 +314 0.134654119611 0.537273347378 +290 0.134654119611 0.527480363846 +291 0.122564211488 0.525888621807 +SURF 0x10 +mat 10 +refs 4 +316 0.106401756406 0.529703140259 +315 0.120029598475 0.535347998142 +291 0.122564211488 0.525888621807 +292 0.111298218369 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +317 0.0946992188692 0.520723462105 +316 0.106401756406 0.529703140259 +292 0.111298218369 0.521222114563 +293 0.101623922586 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +318 0.0857195258141 0.509020864964 +317 0.0946992188692 0.520723462105 +293 0.101623922586 0.513798773289 +294 0.0942005366087 0.504124403 +SURF 0x10 +mat 10 +refs 4 +319 0.0800746977329 0.495393037796 +318 0.0857195258141 0.509020864964 +294 0.0942005366087 0.504124403 +295 0.0895339995623 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +320 0.0781493484974 0.480768471956 +319 0.0800746977329 0.495393037796 +295 0.0895339995623 0.492858439684 +296 0.0879423320293 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +321 0.0800746977329 0.466143995523 +320 0.0781493484974 0.480768471956 +296 0.0879423320293 0.480768471956 +297 0.0895340144634 0.468678593636 +SURF 0x10 +mat 10 +refs 4 +322 0.0857195854187 0.452516138554 +321 0.0800746977329 0.466143995523 +297 0.0895340144634 0.468678593636 +298 0.0942005366087 0.457412600517 +SURF 0x10 +mat 10 +refs 4 +323 0.0946992486715 0.440813541412 +322 0.0857195854187 0.452516138554 +298 0.0942005366087 0.457412600517 +299 0.101623937488 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +323 0.0946992486715 0.440813541412 +299 0.101623937488 0.447738260031 +300 0.111298263073 0.440314859152 +324 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 4 +325 0.120029658079 0.42618906498 +324 0.106401786208 0.431833893061 +300 0.111298263073 0.440314859152 +301 0.12256424129 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +326 0.134654179215 0.424263685942 +325 0.120029658079 0.42618906498 +301 0.12256424129 0.435648351908 +302 0.134654179215 0.434056699276 +SURF 0x10 +mat 10 +refs 4 +327 0.149278700352 0.42618906498 +326 0.134654179215 0.424263685942 +302 0.134654179215 0.434056699276 +303 0.146744087338 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +327 0.149278700352 0.42618906498 +303 0.146744087338 0.435648351908 +304 0.158010080457 0.440314888954 +328 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 4 +329 0.17460912466 0.440813601017 +328 0.162906616926 0.431833952665 +304 0.158010080457 0.440314888954 +305 0.167684406042 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +330 0.183588787913 0.452516138554 +329 0.17460912466 0.440813601017 +305 0.167684406042 0.447738260031 +306 0.17510779202 0.45741263032 +SURF 0x10 +mat 10 +refs 4 +331 0.189233630896 0.466143995523 +330 0.183588787913 0.452516138554 +306 0.17510779202 0.45741263032 +307 0.179774314165 0.468678623438 +SURF 0x10 +mat 10 +refs 4 +331 0.189233630896 0.466143995523 +307 0.179774314165 0.468678623438 +308 0.181365996599 0.480768531561 +332 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +333 0.189233630896 0.495393067598 +332 0.191158980131 0.480768531561 +308 0.181365996599 0.480768531561 +309 0.179774314165 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +333 0.189233630896 0.495393067598 +309 0.179774314165 0.492858439684 +311 0.17510779202 0.504124403 +334 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 4 +334 0.183588787913 0.509020924568 +311 0.17510779202 0.504124403 +310 0.167684406042 0.513798773289 +335 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 4 +360 0.158616274595 0.52227216959 +336 0.155027270317 0.516055822372 +358 0.163466095924 0.509580433369 +382 0.16854172945 0.514656126499 +SURF 0x10 +mat 10 +refs 4 +360 0.158616274595 0.52227216959 +361 0.147057831287 0.527059793472 +337 0.145200058818 0.520126402378 +336 0.155027270317 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +361 0.147057831287 0.527059793472 +362 0.134654119611 0.528692781925 +338 0.134654119611 0.521514713764 +337 0.145200058818 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +362 0.134654119611 0.528692781925 +363 0.122250407934 0.527059793472 +339 0.124108210206 0.520126402378 +338 0.134654119611 0.521514713764 +SURF 0x10 +mat 10 +refs 4 +363 0.122250407934 0.527059793472 +364 0.11069200933 0.52227216959 +340 0.114281013608 0.516055822372 +339 0.124108210206 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +364 0.11069200933 0.52227216959 +365 0.100766569376 0.514656066895 +341 0.105842202902 0.509580433369 +340 0.114281013608 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +365 0.100766569376 0.514656066895 +366 0.0931505560875 0.504730641842 +342 0.0993668884039 0.501141607761 +341 0.105842202902 0.509580433369 +SURF 0x10 +mat 10 +refs 4 +366 0.0931505560875 0.504730641842 +367 0.0883629024029 0.493172168732 +343 0.0952962934971 0.491314411163 +342 0.0993668884039 0.501141607761 +SURF 0x10 +mat 10 +refs 4 +367 0.0883629024029 0.493172168732 +368 0.0867298841476 0.480768471956 +344 0.093907892704 0.480768471956 +343 0.0952962934971 0.491314411163 +SURF 0x10 +mat 10 +refs 4 +368 0.0867298841476 0.480768471956 +369 0.0883629024029 0.468364775181 +345 0.0952963232994 0.470222562551 +344 0.093907892704 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +369 0.0883629024029 0.468364775181 +370 0.0931505560875 0.456806391478 +346 0.0993668884039 0.460395395756 +345 0.0952963232994 0.470222562551 +SURF 0x10 +mat 10 +refs 4 +370 0.0931505560875 0.456806391478 +371 0.100766628981 0.446880936623 +347 0.105842217803 0.451956540346 +346 0.0993668884039 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +372 0.110692054033 0.439264863729 +348 0.114281058311 0.445481210947 +347 0.105842217803 0.451956540346 +371 0.100766628981 0.446880936623 +SURF 0x10 +mat 10 +refs 4 +372 0.110692054033 0.439264863729 +373 0.122250497341 0.434477210045 +349 0.124108269811 0.441410690546 +348 0.114281058311 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +373 0.122250497341 0.434477210045 +374 0.134654179215 0.432844251394 +350 0.134654179215 0.440022289753 +349 0.124108269811 0.441410690546 +SURF 0x10 +mat 10 +refs 4 +374 0.134654179215 0.432844251394 +375 0.147057905793 0.434477210045 +351 0.145200103521 0.441410690546 +350 0.134654179215 0.440022289753 +SURF 0x10 +mat 10 +refs 4 +376 0.158616304398 0.439264893532 +352 0.155027285218 0.445481210947 +351 0.145200103521 0.441410690546 +375 0.147057905793 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +376 0.158616304398 0.439264893532 +377 0.168541744351 0.446880996227 +353 0.163466125727 0.451956599951 +352 0.155027285218 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +377 0.168541744351 0.446880996227 +378 0.176157802343 0.456806391478 +354 0.169941455126 0.460395395756 +353 0.163466125727 0.451956599951 +SURF 0x10 +mat 10 +refs 4 +378 0.176157802343 0.456806391478 +379 0.180945426226 0.468364834785 +355 0.174012005329 0.470222622156 +354 0.169941455126 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +380 0.182578399777 0.480768531561 +356 0.175400406122 0.480768531561 +355 0.174012005329 0.470222622156 +379 0.180945426226 0.468364834785 +SURF 0x10 +mat 10 +refs 4 +380 0.182578399777 0.480768531561 +381 0.180945426226 0.493172228336 +357 0.174012005329 0.491314411163 +356 0.175400406122 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +383 0.176157772541 0.504730641842 +359 0.169941455126 0.501141607761 +357 0.174012005329 0.491314411163 +381 0.180945426226 0.493172228336 +SURF 0x10 +mat 10 +refs 4 +382 0.16854172945 0.514656126499 +358 0.163466095924 0.509580433369 +359 0.169941455126 0.501141607761 +383 0.176157772541 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +384 0.162896901369 0.529686510563 +360 0.158616274595 0.52227216959 +382 0.16854172945 0.514656126499 +407 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 4 +384 0.162896901369 0.529686510563 +385 0.149273663759 0.535329461098 +361 0.147057831287 0.527059793472 +360 0.158616274595 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +385 0.149273663759 0.535329461098 +386 0.134654119611 0.537254154682 +362 0.134654119611 0.528692781925 +361 0.147057831287 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +386 0.134654119611 0.537254154682 +387 0.120034605265 0.535329401493 +363 0.122250407934 0.527059793472 +362 0.134654119611 0.528692781925 +SURF 0x10 +mat 10 +refs 4 +387 0.120034605265 0.535329401493 +388 0.106411337852 0.529686450958 +364 0.11069200933 0.52227216959 +363 0.122250407934 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +388 0.106411337852 0.529686450958 +389 0.0947128087282 0.520709812641 +365 0.100766569376 0.514656066895 +364 0.11069200933 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +389 0.0947128087282 0.520709812641 +390 0.0857362151146 0.509011268616 +366 0.0931505560875 0.504730641842 +365 0.100766569376 0.514656066895 +SURF 0x10 +mat 10 +refs 4 +390 0.0857362151146 0.509011268616 +391 0.0800932794809 0.495388031006 +367 0.0883629024029 0.493172168732 +366 0.0931505560875 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +391 0.0800932794809 0.495388031006 +392 0.0781685709953 0.480768471956 +368 0.0867298841476 0.480768471956 +367 0.0883629024029 0.493172168732 +SURF 0x10 +mat 10 +refs 4 +392 0.0781685709953 0.480768471956 +393 0.0800932794809 0.466148912907 +369 0.0883629024029 0.468364775181 +368 0.0867298841476 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +393 0.0800932794809 0.466148912907 +394 0.0857362300158 0.452525675297 +370 0.0931505560875 0.456806391478 +369 0.0883629024029 0.468364775181 +SURF 0x10 +mat 10 +refs 4 +394 0.0857362300158 0.452525675297 +395 0.0947128683329 0.440827161074 +371 0.100766628981 0.446880936623 +370 0.0931505560875 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +396 0.106411382556 0.431850552559 +372 0.110692054033 0.439264863729 +371 0.100766628981 0.446880936623 +395 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 4 +396 0.106411382556 0.431850552559 +397 0.120034620166 0.426207602024 +373 0.122250497341 0.434477210045 +372 0.110692054033 0.439264863729 +SURF 0x10 +mat 10 +refs 4 +397 0.120034620166 0.426207602024 +398 0.134654179215 0.424282938242 +374 0.134654179215 0.432844251394 +373 0.122250497341 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +398 0.134654179215 0.424282938242 +399 0.149273738265 0.426207602024 +375 0.147057905793 0.434477210045 +374 0.134654179215 0.432844251394 +SURF 0x10 +mat 10 +refs 4 +400 0.162896946073 0.431850552559 +376 0.158616304398 0.439264893532 +375 0.147057905793 0.434477210045 +399 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +400 0.162896946073 0.431850552559 +401 0.1745955199 0.440827220678 +377 0.168541744351 0.446880996227 +376 0.158616304398 0.439264893532 +SURF 0x10 +mat 10 +refs 4 +401 0.1745955199 0.440827220678 +402 0.183572113514 0.452525734901 +378 0.176157802343 0.456806391478 +377 0.168541744351 0.446880996227 +SURF 0x10 +mat 10 +refs 4 +402 0.183572113514 0.452525734901 +403 0.189215064049 0.466149002314 +379 0.180945426226 0.468364834785 +378 0.176157802343 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +404 0.191139742732 0.480768531561 +380 0.182578399777 0.480768531561 +379 0.180945426226 0.468364834785 +403 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 4 +404 0.191139742732 0.480768531561 +405 0.189215064049 0.495388060808 +381 0.180945426226 0.493172228336 +380 0.182578399777 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +406 0.183572113514 0.50901132822 +383 0.176157772541 0.504730641842 +381 0.180945426226 0.493172228336 +405 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 4 +407 0.174595504999 0.520709872246 +382 0.16854172945 0.514656126499 +383 0.176157772541 0.504730641842 +406 0.183572113514 0.50901132822 +kids 0 +OBJECT poly +name "roof1" +data 9 +Plane.003 +crease 30 +numvert 93 +3.268379 1.159305 0.689117 +3.280437 1.168162 0.69485 +3.281627 1.184121 0.695608 +3.271054 1.195165 0.69082 +3.256679 1.192977 0.684092 +3.249327 1.179206 0.680489 +3.254534 1.16422 0.682726 +3.268573 1.15931 -0.000123 +3.281901 1.168202 -0.000123 +3.283259 1.184165 -0.000123 +3.271625 1.195181 -0.000123 +3.255759 1.192952 -0.000123 +3.247609 1.179159 -0.000123 +3.253312 1.164186 -0.000123 +3.247558 1.158736 0.729533 +3.237697 1.16376 0.717948 +3.256042 1.167495 0.739925 +3.25676 1.183441 0.741299 +3.249171 1.194567 0.732621 +3.23899 1.192494 0.720425 +3.233884 1.178783 0.713895 +3.208389 1.162958 0.73576 +3.212446 1.157776 0.750367 +3.215723 1.166392 0.763471 +3.215752 1.18232 0.765203 +3.212511 1.193565 0.754261 +3.208441 1.191659 0.738882 +3.206606 1.178038 0.730649 +3.17321 1.161997 0.738516 +3.173355 1.156707 0.753639 +3.173122 1.165228 0.767204 +3.172687 1.181143 0.768998 +3.172377 1.192467 0.757669 +3.172426 1.190674 0.741749 +3.172797 1.177113 0.733225 +2.309604 1.138386 0.738516 +2.309748 1.133096 0.753639 +2.309515 1.141617 0.767204 +2.30908 1.157532 0.768998 +2.30877 1.168857 0.757669 +2.308819 1.167063 0.741749 +2.30919 1.153503 0.733225 +2.299153 1.146497 0.752097 +2.299117 1.147841 0.748254 +2.299094 1.148662 0.755544 +2.298984 1.152706 0.755999 +2.298905 1.155583 0.753121 +2.298917 1.155128 0.749075 +2.299011 1.151682 0.74691 +2.297109 1.151105 0.751572 +2.297109 1.151105 -0.751817 +2.299011 1.151682 -0.747155 +2.298917 1.155128 -0.749321 +2.298905 1.155583 -0.753366 +2.298984 1.152706 -0.756245 +2.299094 1.148662 -0.755789 +2.299117 1.147841 -0.748499 +2.299153 1.146497 -0.752342 +2.30919 1.153503 -0.73347 +2.308819 1.167063 -0.741994 +2.30877 1.168857 -0.757915 +2.30908 1.157532 -0.769243 +2.309515 1.141617 -0.767449 +2.309748 1.133096 -0.753884 +2.309604 1.138386 -0.738761 +3.172797 1.177113 -0.73347 +3.172426 1.190674 -0.741994 +3.172377 1.192467 -0.757915 +3.172687 1.181143 -0.769243 +3.173122 1.165228 -0.767449 +3.173355 1.156707 -0.753884 +3.17321 1.161997 -0.738761 +3.206606 1.178038 -0.730894 +3.208441 1.191659 -0.739127 +3.212511 1.193565 -0.754506 +3.215752 1.18232 -0.765449 +3.215723 1.166392 -0.763716 +3.212446 1.157776 -0.750612 +3.208389 1.162958 -0.736005 +3.233884 1.178783 -0.71414 +3.23899 1.192494 -0.72067 +3.249171 1.194567 -0.732866 +3.25676 1.183441 -0.741544 +3.256042 1.167495 -0.74017 +3.237697 1.16376 -0.718194 +3.247558 1.158736 -0.729778 +3.254534 1.16422 -0.682971 +3.249327 1.179206 -0.680735 +3.256679 1.192977 -0.684337 +3.271054 1.195165 -0.691065 +3.281627 1.184121 -0.695853 +3.280437 1.168162 -0.695095 +3.268379 1.159305 -0.689362 +numsurf 98 +SURF 0x00 +mat 8 +refs 4 +0 0 0 +6 0 0 +13 0 0 +7 0 0 +SURF 0x00 +mat 8 +refs 4 +1 0 0 +0 0 0 +7 0 0 +8 0 0 +SURF 0x00 +mat 8 +refs 4 +8 0 0 +9 0 0 +2 0 0 +1 0 0 +SURF 0x00 +mat 8 +refs 4 +9 0 0 +10 0 0 +3 0 0 +2 0 0 +SURF 0x00 +mat 8 +refs 4 +10 0 0 +11 0 0 +4 0 0 +3 0 0 +SURF 0x00 +mat 8 +refs 4 +11 0 0 +12 0 0 +5 0 0 +4 0 0 +SURF 0x00 +mat 8 +refs 4 +12 0 0 +13 0 0 +6 0 0 +5 0 0 +SURF 0x00 +mat 8 +refs 4 +6 0 0 +0 0 0 +14 0 0 +15 0 0 +SURF 0x00 +mat 8 +refs 4 +0 0 0 +1 0 0 +16 0 0 +14 0 0 +SURF 0x00 +mat 8 +refs 4 +1 0 0 +2 0 0 +17 0 0 +16 0 0 +SURF 0x00 +mat 8 +refs 4 +2 0 0 +3 0 0 +18 0 0 +17 0 0 +SURF 0x00 +mat 8 +refs 4 +3 0 0 +4 0 0 +19 0 0 +18 0 0 +SURF 0x00 +mat 8 +refs 4 +4 0 0 +5 0 0 +20 0 0 +19 0 0 +SURF 0x00 +mat 8 +refs 4 +5 0 0 +6 0 0 +15 0 0 +20 0 0 +SURF 0x00 +mat 8 +refs 4 +15 0 0 +14 0 0 +22 0 0 +21 0 0 +SURF 0x00 +mat 8 +refs 4 +14 0 0 +16 0 0 +23 0 0 +22 0 0 +SURF 0x00 +mat 8 +refs 4 +16 0 0 +17 0 0 +24 0 0 +23 0 0 +SURF 0x00 +mat 8 +refs 4 +17 0 0 +18 0 0 +25 0 0 +24 0 0 +SURF 0x00 +mat 8 +refs 4 +18 0 0 +19 0 0 +26 0 0 +25 0 0 +SURF 0x00 +mat 8 +refs 4 +19 0 0 +20 0 0 +27 0 0 +26 0 0 +SURF 0x00 +mat 8 +refs 4 +20 0 0 +15 0 0 +21 0 0 +27 0 0 +SURF 0x00 +mat 8 +refs 4 +21 0 0 +22 0 0 +29 0 0 +28 0 0 +SURF 0x00 +mat 8 +refs 4 +22 0 0 +23 0 0 +30 0 0 +29 0 0 +SURF 0x00 +mat 8 +refs 4 +23 0 0 +24 0 0 +31 0 0 +30 0 0 +SURF 0x00 +mat 8 +refs 4 +24 0 0 +25 0 0 +32 0 0 +31 0 0 +SURF 0x00 +mat 8 +refs 4 +25 0 0 +26 0 0 +33 0 0 +32 0 0 +SURF 0x00 +mat 8 +refs 4 +26 0 0 +27 0 0 +34 0 0 +33 0 0 +SURF 0x00 +mat 8 +refs 4 +27 0 0 +21 0 0 +28 0 0 +34 0 0 +SURF 0x00 +mat 8 +refs 4 +28 0 0 +29 0 0 +36 0 0 +35 0 0 +SURF 0x00 +mat 8 +refs 4 +29 0 0 +30 0 0 +37 0 0 +36 0 0 +SURF 0x00 +mat 8 +refs 4 +30 0 0 +31 0 0 +38 0 0 +37 0 0 +SURF 0x00 +mat 8 +refs 4 +31 0 0 +32 0 0 +39 0 0 +38 0 0 +SURF 0x00 +mat 8 +refs 4 +32 0 0 +33 0 0 +40 0 0 +39 0 0 +SURF 0x00 +mat 8 +refs 4 +33 0 0 +34 0 0 +41 0 0 +40 0 0 +SURF 0x00 +mat 8 +refs 4 +34 0 0 +28 0 0 +35 0 0 +41 0 0 +SURF 0x00 +mat 8 +refs 4 +35 0 0 +36 0 0 +42 0 0 +43 0 0 +SURF 0x00 +mat 8 +refs 4 +36 0 0 +37 0 0 +44 0 0 +42 0 0 +SURF 0x00 +mat 8 +refs 4 +37 0 0 +38 0 0 +45 0 0 +44 0 0 +SURF 0x00 +mat 8 +refs 4 +38 0 0 +39 0 0 +46 0 0 +45 0 0 +SURF 0x00 +mat 8 +refs 4 +39 0 0 +40 0 0 +47 0 0 +46 0 0 +SURF 0x00 +mat 8 +refs 4 +40 0 0 +41 0 0 +48 0 0 +47 0 0 +SURF 0x00 +mat 8 +refs 4 +41 0 0 +35 0 0 +43 0 0 +48 0 0 +SURF 0x00 +mat 8 +refs 3 +43 0 0 +42 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +42 0 0 +44 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +44 0 0 +45 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +45 0 0 +46 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +46 0 0 +47 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +47 0 0 +48 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +48 0 0 +43 0 0 +49 0 0 +SURF 0x00 +mat 8 +refs 3 +51 0 0 +50 0 0 +56 0 0 +SURF 0x00 +mat 8 +refs 3 +52 0 0 +50 0 0 +51 0 0 +SURF 0x00 +mat 8 +refs 3 +53 0 0 +50 0 0 +52 0 0 +SURF 0x00 +mat 8 +refs 3 +54 0 0 +50 0 0 +53 0 0 +SURF 0x00 +mat 8 +refs 3 +55 0 0 +50 0 0 +54 0 0 +SURF 0x00 +mat 8 +refs 3 +57 0 0 +50 0 0 +55 0 0 +SURF 0x00 +mat 8 +refs 3 +56 0 0 +50 0 0 +57 0 0 +SURF 0x00 +mat 8 +refs 4 +58 0 0 +51 0 0 +56 0 0 +64 0 0 +SURF 0x00 +mat 8 +refs 4 +59 0 0 +52 0 0 +51 0 0 +58 0 0 +SURF 0x00 +mat 8 +refs 4 +60 0 0 +53 0 0 +52 0 0 +59 0 0 +SURF 0x00 +mat 8 +refs 4 +61 0 0 +54 0 0 +53 0 0 +60 0 0 +SURF 0x00 +mat 8 +refs 4 +62 0 0 +55 0 0 +54 0 0 +61 0 0 +SURF 0x00 +mat 8 +refs 4 +63 0 0 +57 0 0 +55 0 0 +62 0 0 +SURF 0x00 +mat 8 +refs 4 +64 0 0 +56 0 0 +57 0 0 +63 0 0 +SURF 0x00 +mat 8 +refs 4 +65 0 0 +58 0 0 +64 0 0 +71 0 0 +SURF 0x00 +mat 8 +refs 4 +66 0 0 +59 0 0 +58 0 0 +65 0 0 +SURF 0x00 +mat 8 +refs 4 +67 0 0 +60 0 0 +59 0 0 +66 0 0 +SURF 0x00 +mat 8 +refs 4 +68 0 0 +61 0 0 +60 0 0 +67 0 0 +SURF 0x00 +mat 8 +refs 4 +69 0 0 +62 0 0 +61 0 0 +68 0 0 +SURF 0x00 +mat 8 +refs 4 +70 0 0 +63 0 0 +62 0 0 +69 0 0 +SURF 0x00 +mat 8 +refs 4 +71 0 0 +64 0 0 +63 0 0 +70 0 0 +SURF 0x00 +mat 8 +refs 4 +72 0 0 +65 0 0 +71 0 0 +78 0 0 +SURF 0x00 +mat 8 +refs 4 +73 0 0 +66 0 0 +65 0 0 +72 0 0 +SURF 0x00 +mat 8 +refs 4 +74 0 0 +67 0 0 +66 0 0 +73 0 0 +SURF 0x00 +mat 8 +refs 4 +75 0 0 +68 0 0 +67 0 0 +74 0 0 +SURF 0x00 +mat 8 +refs 4 +76 0 0 +69 0 0 +68 0 0 +75 0 0 +SURF 0x00 +mat 8 +refs 4 +77 0 0 +70 0 0 +69 0 0 +76 0 0 +SURF 0x00 +mat 8 +refs 4 +78 0 0 +71 0 0 +70 0 0 +77 0 0 +SURF 0x00 +mat 8 +refs 4 +79 0 0 +72 0 0 +78 0 0 +84 0 0 +SURF 0x00 +mat 8 +refs 4 +80 0 0 +73 0 0 +72 0 0 +79 0 0 +SURF 0x00 +mat 8 +refs 4 +81 0 0 +74 0 0 +73 0 0 +80 0 0 +SURF 0x00 +mat 8 +refs 4 +82 0 0 +75 0 0 +74 0 0 +81 0 0 +SURF 0x00 +mat 8 +refs 4 +83 0 0 +76 0 0 +75 0 0 +82 0 0 +SURF 0x00 +mat 8 +refs 4 +85 0 0 +77 0 0 +76 0 0 +83 0 0 +SURF 0x00 +mat 8 +refs 4 +84 0 0 +78 0 0 +77 0 0 +85 0 0 +SURF 0x00 +mat 8 +refs 4 +87 0 0 +79 0 0 +84 0 0 +86 0 0 +SURF 0x00 +mat 8 +refs 4 +88 0 0 +80 0 0 +79 0 0 +87 0 0 +SURF 0x00 +mat 8 +refs 4 +89 0 0 +81 0 0 +80 0 0 +88 0 0 +SURF 0x00 +mat 8 +refs 4 +90 0 0 +82 0 0 +81 0 0 +89 0 0 +SURF 0x00 +mat 8 +refs 4 +91 0 0 +83 0 0 +82 0 0 +90 0 0 +SURF 0x00 +mat 8 +refs 4 +92 0 0 +85 0 0 +83 0 0 +91 0 0 +SURF 0x00 +mat 8 +refs 4 +86 0 0 +84 0 0 +85 0 0 +92 0 0 +SURF 0x00 +mat 8 +refs 4 +12 0 0 +87 0 0 +86 0 0 +13 0 0 +SURF 0x00 +mat 8 +refs 4 +11 0 0 +88 0 0 +87 0 0 +12 0 0 +SURF 0x00 +mat 8 +refs 4 +10 0 0 +89 0 0 +88 0 0 +11 0 0 +SURF 0x00 +mat 8 +refs 4 +9 0 0 +90 0 0 +89 0 0 +10 0 0 +SURF 0x00 +mat 8 +refs 4 +8 0 0 +91 0 0 +90 0 0 +9 0 0 +SURF 0x00 +mat 8 +refs 4 +91 0 0 +8 0 0 +7 0 0 +92 0 0 +SURF 0x00 +mat 8 +refs 4 +92 0 0 +7 0 0 +13 0 0 +86 0 0 +kids 0 +OBJECT poly +name "rwheel.R" +data 10 +Circle.038 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 218 +2.696454 0.407726 -0.746252 +2.706867 0.425762 -0.741594 +2.701844 0.427843 -0.741594 +2.696454 0.428553 -0.741594 +2.691064 0.427843 -0.741594 +2.686041 0.425762 -0.741594 +2.681727 0.422453 -0.741594 +2.678418 0.418139 -0.741594 +2.676337 0.413117 -0.741594 +2.675628 0.407726 -0.741594 +2.676337 0.402336 -0.741594 +2.678418 0.397313 -0.741594 +2.681727 0.393 -0.741594 +2.686041 0.38969 -0.741594 +2.691064 0.38761 -0.741594 +2.696454 0.3869 -0.741594 +2.701844 0.38761 -0.741594 +2.706867 0.38969 -0.741594 +2.71118 0.393 -0.741594 +2.71449 0.397313 -0.741594 +2.71657 0.402336 -0.741594 +2.71728 0.407726 -0.741594 +2.71657 0.413117 -0.741594 +2.71449 0.418139 -0.741594 +2.71118 0.422453 -0.741594 +2.715106 0.440034 -0.720244 +2.706109 0.443761 -0.720244 +2.696454 0.445032 -0.720244 +2.686799 0.443761 -0.720244 +2.677801 0.440034 -0.720244 +2.670075 0.434105 -0.720244 +2.664146 0.426379 -0.720244 +2.660419 0.417382 -0.720244 +2.659148 0.407726 -0.720244 +2.660419 0.398071 -0.720244 +2.664146 0.389074 -0.720244 +2.670075 0.381347 -0.720244 +2.677801 0.375419 -0.720244 +2.686799 0.371692 -0.720244 +2.696454 0.370421 -0.720244 +2.706109 0.371692 -0.720244 +2.715107 0.375419 -0.720244 +2.722833 0.381347 -0.720244 +2.728761 0.389074 -0.720244 +2.732488 0.398071 -0.720244 +2.733759 0.407726 -0.720244 +2.732488 0.417382 -0.720244 +2.728761 0.426379 -0.720244 +2.722833 0.434105 -0.720244 +2.715106 0.440034 -0.682688 +2.706109 0.443761 -0.682688 +2.696454 0.445032 -0.682688 +2.686799 0.443761 -0.682688 +2.677801 0.440034 -0.682688 +2.670075 0.434105 -0.682688 +2.664146 0.426379 -0.682688 +2.660419 0.417382 -0.682688 +2.659148 0.407726 -0.682688 +2.660419 0.398071 -0.682688 +2.664146 0.389074 -0.682688 +2.670075 0.381347 -0.682688 +2.677801 0.375419 -0.682688 +2.686799 0.371692 -0.682688 +2.696454 0.370421 -0.682688 +2.706109 0.371692 -0.682688 +2.715107 0.375419 -0.682688 +2.722833 0.381347 -0.682688 +2.728761 0.389074 -0.682688 +2.732488 0.398071 -0.682688 +2.733759 0.407726 -0.682688 +2.732488 0.417382 -0.682688 +2.722833 0.434105 -0.682688 +2.728761 0.426379 -0.682688 +2.756274 0.511339 -0.682688 +2.727419 0.523291 -0.682688 +2.696454 0.527368 -0.682688 +2.665488 0.523291 -0.682688 +2.636633 0.511339 -0.682688 +2.611855 0.492325 -0.682688 +2.592842 0.467547 -0.682688 +2.580889 0.438692 -0.682688 +2.576813 0.407726 -0.682688 +2.580889 0.376761 -0.682688 +2.592842 0.347906 -0.682688 +2.611855 0.323127 -0.682688 +2.636633 0.304114 -0.682688 +2.665488 0.292162 -0.682688 +2.696454 0.288085 -0.682688 +2.727419 0.292162 -0.682688 +2.756275 0.304114 -0.682688 +2.781053 0.323127 -0.682688 +2.800066 0.347906 -0.682688 +2.812018 0.376761 -0.682688 +2.816095 0.407726 -0.682688 +2.812018 0.438692 -0.682688 +2.781053 0.492326 -0.682688 +2.800066 0.467547 -0.682688 +2.787745 0.565848 -0.665997 +2.74371 0.584088 -0.665997 +2.696454 0.59031 -0.665997 +2.649198 0.584088 -0.665997 +2.605162 0.565848 -0.665997 +2.567348 0.536832 -0.665997 +2.538332 0.499018 -0.665997 +2.520092 0.454982 -0.665997 +2.513871 0.407726 -0.665997 +2.520092 0.36047 -0.665997 +2.538332 0.316435 -0.665997 +2.567348 0.278621 -0.665997 +2.605163 0.249605 -0.665997 +2.649198 0.231365 -0.665997 +2.696454 0.225143 -0.665997 +2.74371 0.231365 -0.665997 +2.787745 0.249605 -0.665997 +2.82556 0.278621 -0.665997 +2.854575 0.316435 -0.665997 +2.872816 0.36047 -0.665997 +2.879037 0.407726 -0.665997 +2.872816 0.454982 -0.665997 +2.854575 0.499018 -0.665997 +2.82556 0.536832 -0.665997 +2.818703 0.619468 -0.665997 +2.759735 0.643894 -0.665997 +2.696454 0.652225 -0.665997 +2.633173 0.643894 -0.665997 +2.574204 0.619468 -0.665997 +2.523567 0.580613 -0.665997 +2.484712 0.529975 -0.665997 +2.460287 0.471007 -0.665997 +2.451956 0.407726 -0.665997 +2.460287 0.344446 -0.665997 +2.484712 0.285477 -0.665997 +2.523568 0.23484 -0.665997 +2.574205 0.195985 -0.665997 +2.633173 0.171559 -0.665997 +2.696454 0.163228 -0.665997 +2.759735 0.171559 -0.665997 +2.818703 0.195985 -0.665997 +2.86934 0.23484 -0.665997 +2.908196 0.285477 -0.665997 +2.932621 0.344446 -0.665997 +2.940952 0.407726 -0.665997 +2.932621 0.471007 -0.665997 +2.86934 0.580613 -0.665997 +2.908196 0.529976 -0.665997 +2.818703 0.619468 -0.720244 +2.759735 0.643894 -0.720244 +2.696454 0.652225 -0.720244 +2.633173 0.643894 -0.720244 +2.574204 0.619468 -0.720244 +2.523567 0.580613 -0.720244 +2.484712 0.529975 -0.720244 +2.460287 0.471007 -0.720244 +2.451956 0.407726 -0.720244 +2.460287 0.344446 -0.720244 +2.484712 0.285477 -0.720244 +2.523568 0.23484 -0.720244 +2.574205 0.195985 -0.720244 +2.633173 0.171559 -0.720244 +2.696454 0.163228 -0.720244 +2.759735 0.171559 -0.720244 +2.818703 0.195985 -0.720244 +2.86934 0.23484 -0.720244 +2.908196 0.285477 -0.720244 +2.932621 0.344446 -0.720244 +2.940952 0.407726 -0.720244 +2.932621 0.471007 -0.720244 +2.86934 0.580613 -0.720244 +2.908196 0.529976 -0.720244 +2.830073 0.639162 -0.720244 +2.76562 0.665859 -0.720244 +2.696454 0.674965 -0.720244 +2.627287 0.665859 -0.720244 +2.562835 0.639162 -0.720244 +2.507488 0.596692 -0.720244 +2.465019 0.541345 -0.720244 +2.438322 0.476893 -0.720244 +2.429215 0.407726 -0.720244 +2.438322 0.33856 -0.720244 +2.465019 0.274107 -0.720244 +2.507488 0.21876 -0.720244 +2.562835 0.176291 -0.720244 +2.627288 0.149594 -0.720244 +2.696454 0.140488 -0.720244 +2.76562 0.149594 -0.720244 +2.830073 0.176291 -0.720244 +2.88542 0.21876 -0.720244 +2.927889 0.274107 -0.720244 +2.954586 0.33856 -0.720244 +2.963692 0.407726 -0.720244 +2.954586 0.476893 -0.720244 +2.88542 0.596692 -0.720244 +2.927889 0.541346 -0.720244 +2.696454 0.407726 -0.538808 +2.830828 0.640469 -0.538808 +2.766011 0.667317 -0.538808 +2.696454 0.676474 -0.538808 +2.626897 0.667317 -0.538808 +2.56208 0.640469 -0.538808 +2.50642 0.59776 -0.538808 +2.463711 0.5421 -0.538808 +2.436863 0.477284 -0.538808 +2.427706 0.407726 -0.538808 +2.436863 0.338169 -0.538808 +2.463712 0.273353 -0.538808 +2.506421 0.217693 -0.538808 +2.56208 0.174984 -0.538808 +2.626897 0.148136 -0.538808 +2.696454 0.138979 -0.538808 +2.766011 0.148136 -0.538808 +2.830828 0.174984 -0.538808 +2.886487 0.217693 -0.538808 +2.929196 0.273353 -0.538808 +2.956044 0.338169 -0.538808 +2.965202 0.407727 -0.538808 +2.956044 0.477284 -0.538808 +2.886487 0.59776 -0.538808 +2.929196 0.5421 -0.538808 +numsurf 216 +SURF 0x10 +mat 9 +refs 3 +24 0.136899352074 0.48301383853 +0 0.1346539855 0.480768471956 +1 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +1 0.136241689324 0.483518511057 +0 0.1346539855 0.480768471956 +2 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +2 0.135475844145 0.483835697174 +0 0.1346539855 0.480768471956 +3 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 3 +3 0.1346539855 0.483943879604 +0 0.1346539855 0.480768471956 +4 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +4 0.133832126856 0.483835697174 +0 0.1346539855 0.480768471956 +5 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +5 0.133066281676 0.483518511057 +0 0.1346539855 0.480768471956 +6 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +6 0.132408633828 0.48301383853 +0 0.1346539855 0.480768471956 +7 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 3 +7 0.131904020905 0.482356220484 +0 0.1346539855 0.480768471956 +8 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +8 0.131586790085 0.481590390205 +0 0.1346539855 0.480768471956 +9 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +9 0.131478577852 0.480768471956 +0 0.1346539855 0.480768471956 +10 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +10 0.131586790085 0.479946613312 +0 0.1346539855 0.480768471956 +11 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +11 0.131904020905 0.479180753231 +0 0.1346539855 0.480768471956 +12 0.132408633828 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +12 0.132408633828 0.478523135185 +0 0.1346539855 0.480768471956 +13 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +13 0.133066281676 0.478018462658 +0 0.1346539855 0.480768471956 +14 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +14 0.133832126856 0.477701276541 +0 0.1346539855 0.480768471956 +15 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 3 +15 0.1346539855 0.47759309411 +0 0.1346539855 0.480768471956 +16 0.135475844145 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +16 0.135475844145 0.477701276541 +0 0.1346539855 0.480768471956 +17 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +17 0.136241689324 0.478018462658 +0 0.1346539855 0.480768471956 +18 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +18 0.136899352074 0.478523135185 +0 0.1346539855 0.480768471956 +19 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +19 0.137403979897 0.479180753231 +0 0.1346539855 0.480768471956 +20 0.137721210718 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +20 0.137721210718 0.479946613312 +0 0.1346539855 0.480768471956 +21 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +21 0.13782940805 0.480768471956 +0 0.1346539855 0.480768471956 +22 0.137721210718 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +22 0.137721210718 0.481590390205 +0 0.1346539855 0.480768471956 +23 0.137403979897 0.482356220484 +SURF 0x10 +mat 9 +refs 3 +23 0.137403979897 0.482356220484 +0 0.1346539855 0.480768471956 +24 0.136899352074 0.48301383853 +SURF 0x10 +mat 9 +refs 4 +25 0.137498006225 0.485694468021 +48 0.138676047325 0.484790533781 +24 0.136899352074 0.48301383853 +1 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +25 0.137498006225 0.485694468021 +1 0.136241689324 0.483518511057 +2 0.135475844145 0.483835697174 +26 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +26 0.136126160622 0.486262708902 +2 0.135475844145 0.483835697174 +3 0.1346539855 0.483943879604 +27 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +27 0.1346539855 0.486456543207 +3 0.1346539855 0.483943879604 +4 0.133832126856 0.483835697174 +28 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +28 0.133181810379 0.486262708902 +4 0.133832126856 0.483835697174 +5 0.133066281676 0.483518511057 +29 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +29 0.131809994578 0.485694468021 +5 0.133066281676 0.483518511057 +6 0.132408633828 0.48301383853 +30 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +30 0.130631938577 0.484790533781 +6 0.132408633828 0.48301383853 +7 0.131904020905 0.482356220484 +31 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +31 0.129728004336 0.483612507582 +7 0.131904020905 0.482356220484 +8 0.131586790085 0.481590390205 +32 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +32 0.129159763455 0.482240647078 +8 0.131586790085 0.481590390205 +9 0.131478577852 0.480768471956 +33 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +33 0.128965958953 0.480768471956 +9 0.131478577852 0.480768471956 +10 0.131586790085 0.479946613312 +34 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +34 0.129159763455 0.479296296835 +10 0.131586790085 0.479946613312 +11 0.131904020905 0.479180753231 +35 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +35 0.129728004336 0.477924466133 +11 0.131904020905 0.479180753231 +12 0.132408633828 0.478523135185 +36 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +37 0.131809994578 0.475842505693 +36 0.130631968379 0.476746439934 +12 0.132408633828 0.478523135185 +13 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +37 0.131809994578 0.475842505693 +13 0.133066281676 0.478018462658 +14 0.133832126856 0.477701276541 +38 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +38 0.133181810379 0.475274294615 +14 0.133832126856 0.477701276541 +15 0.1346539855 0.47759309411 +39 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +39 0.1346539855 0.47508046031 +15 0.1346539855 0.47759309411 +16 0.135475844145 0.477701276541 +40 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +41 0.137498021126 0.475842505693 +40 0.136126160622 0.475274294615 +16 0.135475844145 0.477701276541 +17 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +41 0.137498021126 0.475842505693 +17 0.136241689324 0.478018462658 +18 0.136899352074 0.478523135185 +42 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +42 0.138676047325 0.476746439934 +18 0.136899352074 0.478523135185 +19 0.137403979897 0.479180753231 +43 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +43 0.139579966664 0.477924466133 +19 0.137403979897 0.479180753231 +20 0.137721210718 0.479946613312 +44 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +45 0.140342026949 0.480768471956 +44 0.140148207545 0.479296296835 +20 0.137721210718 0.479946613312 +21 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +45 0.140342026949 0.480768471956 +21 0.13782940805 0.480768471956 +22 0.137721210718 0.481590390205 +46 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +47 0.139579966664 0.483612507582 +46 0.140148207545 0.482240706682 +22 0.137721210718 0.481590390205 +23 0.137403979897 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +48 0.138676047325 0.484790533781 +47 0.139579966664 0.483612507582 +23 0.137403979897 0.482356220484 +24 0.136899352074 0.48301383853 +SURF 0x10 +mat 9 +refs 4 +49 0.137498006225 0.485694468021 +71 0.138676047325 0.484790533781 +48 0.138676047325 0.484790533781 +25 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +49 0.137498006225 0.485694468021 +25 0.137498006225 0.485694468021 +26 0.136126160622 0.486262708902 +50 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +50 0.136126160622 0.486262708902 +26 0.136126160622 0.486262708902 +27 0.1346539855 0.486456543207 +51 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +51 0.1346539855 0.486456543207 +27 0.1346539855 0.486456543207 +28 0.133181810379 0.486262708902 +52 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +52 0.133181810379 0.486262708902 +28 0.133181810379 0.486262708902 +29 0.131809994578 0.485694468021 +53 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +53 0.131809994578 0.485694468021 +29 0.131809994578 0.485694468021 +30 0.130631938577 0.484790533781 +54 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +54 0.130631938577 0.484790533781 +30 0.130631938577 0.484790533781 +31 0.129728004336 0.483612507582 +55 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +55 0.129728004336 0.483612507582 +31 0.129728004336 0.483612507582 +32 0.129159763455 0.482240647078 +56 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +56 0.129159763455 0.482240647078 +32 0.129159763455 0.482240647078 +33 0.128965958953 0.480768471956 +57 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +57 0.128965958953 0.480768471956 +33 0.128965958953 0.480768471956 +34 0.129159763455 0.479296296835 +58 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +58 0.129159763455 0.479296296835 +34 0.129159763455 0.479296296835 +35 0.129728004336 0.477924466133 +59 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +59 0.129728004336 0.477924466133 +35 0.129728004336 0.477924466133 +36 0.130631968379 0.476746439934 +60 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +61 0.131809994578 0.475842505693 +60 0.130631968379 0.476746439934 +36 0.130631968379 0.476746439934 +37 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +61 0.131809994578 0.475842505693 +37 0.131809994578 0.475842505693 +38 0.133181810379 0.475274294615 +62 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +62 0.133181810379 0.475274294615 +38 0.133181810379 0.475274294615 +39 0.1346539855 0.47508046031 +63 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +63 0.1346539855 0.47508046031 +39 0.1346539855 0.47508046031 +40 0.136126160622 0.475274294615 +64 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +65 0.137498021126 0.475842505693 +64 0.136126160622 0.475274294615 +40 0.136126160622 0.475274294615 +41 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +65 0.137498021126 0.475842505693 +41 0.137498021126 0.475842505693 +42 0.138676047325 0.476746439934 +66 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +66 0.138676047325 0.476746439934 +42 0.138676047325 0.476746439934 +43 0.139579966664 0.477924466133 +67 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +67 0.139579966664 0.477924466133 +43 0.139579966664 0.477924466133 +44 0.140148207545 0.479296296835 +68 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +69 0.140342026949 0.480768471956 +68 0.140148207545 0.479296296835 +44 0.140148207545 0.479296296835 +45 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +69 0.140342026949 0.480768471956 +45 0.140342026949 0.480768471956 +46 0.140148207545 0.482240706682 +70 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +72 0.139579966664 0.483612507582 +70 0.140148207545 0.482240706682 +46 0.140148207545 0.482240706682 +47 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +71 0.138676047325 0.484790533781 +72 0.139579966664 0.483612507582 +47 0.139579966664 0.483612507582 +48 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +73 0.143774926662 0.496566444635 +95 0.147552967072 0.49366748333 +71 0.138676047325 0.484790533781 +49 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +73 0.143774926662 0.496566444635 +49 0.137498006225 0.485694468021 +50 0.136126160622 0.486262708902 +74 0.139375329018 0.498388826847 +SURF 0x10 +mat 9 +refs 4 +74 0.139375329018 0.498388826847 +50 0.136126160622 0.486262708902 +51 0.1346539855 0.486456543207 +75 0.1346539855 0.499010413885 +SURF 0x10 +mat 9 +refs 4 +75 0.1346539855 0.499010413885 +51 0.1346539855 0.486456543207 +52 0.133181810379 0.486262708902 +76 0.129932641983 0.498388797045 +SURF 0x10 +mat 9 +refs 4 +76 0.129932641983 0.498388797045 +52 0.133181810379 0.486262708902 +53 0.131809994578 0.485694468021 +77 0.125533029437 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +77 0.125533029437 0.496566444635 +53 0.131809994578 0.485694468021 +54 0.130631938577 0.484790533781 +78 0.12175501883 0.493667453527 +SURF 0x10 +mat 9 +refs 4 +78 0.12175501883 0.493667453527 +54 0.130631938577 0.484790533781 +55 0.129728004336 0.483612507582 +79 0.118856042624 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +79 0.118856042624 0.489889442921 +55 0.129728004336 0.483612507582 +56 0.129159763455 0.482240647078 +80 0.117033675313 0.485489815474 +SURF 0x10 +mat 9 +refs 4 +80 0.117033675313 0.485489815474 +56 0.129159763455 0.482240647078 +57 0.128965958953 0.480768471956 +81 0.116412103176 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +81 0.116412103176 0.480768471956 +57 0.128965958953 0.480768471956 +58 0.129159763455 0.479296296835 +82 0.117033675313 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +82 0.117033675313 0.476047158241 +58 0.129159763455 0.479296296835 +59 0.129728004336 0.477924466133 +83 0.118856057525 0.471647530794 +SURF 0x10 +mat 9 +refs 4 +83 0.118856057525 0.471647530794 +59 0.129728004336 0.477924466133 +60 0.130631968379 0.476746439934 +84 0.12175501883 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +85 0.125533074141 0.464970588684 +84 0.12175501883 0.467869520187 +60 0.130631968379 0.476746439934 +61 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +85 0.125533074141 0.464970588684 +61 0.131809994578 0.475842505693 +62 0.133181810379 0.475274294615 +86 0.129932656884 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +86 0.129932656884 0.463148206472 +62 0.133181810379 0.475274294615 +63 0.1346539855 0.47508046031 +87 0.1346539855 0.462526619434 +SURF 0x10 +mat 9 +refs 4 +87 0.1346539855 0.462526619434 +63 0.1346539855 0.47508046031 +64 0.136126160622 0.475274294615 +88 0.13937535882 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +89 0.143774926662 0.464970588684 +88 0.13937535882 0.463148206472 +64 0.136126160622 0.475274294615 +65 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +89 0.143774926662 0.464970588684 +65 0.137498021126 0.475842505693 +66 0.138676047325 0.476746439934 +90 0.147552967072 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +90 0.147552967072 0.467869520187 +66 0.138676047325 0.476746439934 +67 0.139579966664 0.477924466133 +91 0.150451913476 0.471647560596 +SURF 0x10 +mat 9 +refs 4 +91 0.150451913476 0.471647560596 +67 0.139579966664 0.477924466133 +68 0.140148207545 0.479296296835 +92 0.152274280787 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +93 0.152895867825 0.480768471956 +92 0.152274280787 0.476047158241 +68 0.140148207545 0.479296296835 +69 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +93 0.152895867825 0.480768471956 +69 0.140342026949 0.480768471956 +70 0.140148207545 0.482240706682 +94 0.152274280787 0.485489845276 +SURF 0x10 +mat 9 +refs 4 +96 0.150451913476 0.489889442921 +94 0.152274280787 0.485489845276 +70 0.140148207545 0.482240706682 +72 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +95 0.147552967072 0.49366748333 +96 0.150451913476 0.489889442921 +72 0.139579966664 0.483612507582 +71 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +97 0.148573309183 0.504877567291 +120 0.154338926077 0.500453472137 +95 0.147552967072 0.49366748333 +73 0.143774926662 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +97 0.148573309183 0.504877567291 +73 0.143774926662 0.496566444635 +74 0.139375329018 0.498388826847 +98 0.141859173775 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +98 0.141859173775 0.507658600807 +74 0.139375329018 0.498388826847 +75 0.1346539855 0.499010413885 +99 0.1346539855 0.508607268333 +SURF 0x10 +mat 9 +refs 4 +99 0.1346539855 0.508607268333 +75 0.1346539855 0.499010413885 +76 0.129932641983 0.498388797045 +100 0.127448782325 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +100 0.127448782325 0.507658600807 +76 0.129932641983 0.498388797045 +77 0.125533029437 0.496566444635 +101 0.120734617114 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +101 0.120734617114 0.504877567291 +77 0.125533029437 0.496566444635 +78 0.12175501883 0.493667453527 +102 0.114969015121 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +102 0.114969015121 0.500453472137 +78 0.12175501883 0.493667453527 +79 0.118856042624 0.489889442921 +103 0.11054494977 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +103 0.11054494977 0.494687855244 +79 0.118856042624 0.489889442921 +80 0.117033675313 0.485489815474 +104 0.107763856649 0.487973690033 +SURF 0x10 +mat 9 +refs 4 +104 0.107763856649 0.487973690033 +80 0.117033675313 0.485489815474 +81 0.116412103176 0.480768471956 +105 0.106815263629 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +105 0.106815263629 0.480768471956 +81 0.116412103176 0.480768471956 +82 0.117033675313 0.476047158241 +106 0.107763856649 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +106 0.107763856649 0.473563283682 +82 0.117033675313 0.476047158241 +83 0.118856057525 0.471647530794 +107 0.11054494977 0.466849118471 +SURF 0x10 +mat 9 +refs 4 +107 0.11054494977 0.466849118471 +83 0.118856057525 0.471647530794 +84 0.12175501883 0.467869520187 +108 0.114969074726 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +109 0.120734632015 0.456659436226 +108 0.114969074726 0.461083561182 +84 0.12175501883 0.467869520187 +85 0.125533074141 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +109 0.120734632015 0.456659436226 +85 0.125533074141 0.464970588684 +86 0.129932656884 0.463148206472 +110 0.127448827028 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +110 0.127448827028 0.453878372908 +86 0.129932656884 0.463148206472 +87 0.1346539855 0.462526619434 +111 0.134654000401 0.452929794788 +SURF 0x10 +mat 9 +refs 4 +111 0.134654000401 0.452929794788 +87 0.1346539855 0.462526619434 +88 0.13937535882 0.463148206472 +112 0.141859203577 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +113 0.148573338985 0.456659466028 +112 0.141859203577 0.453878372908 +88 0.13937535882 0.463148206472 +89 0.143774926662 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +113 0.148573338985 0.456659466028 +89 0.143774926662 0.464970588684 +90 0.147552967072 0.467869520187 +114 0.154338926077 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +114 0.154338926077 0.461083561182 +90 0.147552967072 0.467869520187 +91 0.150451913476 0.471647560596 +115 0.158763021231 0.466849148273 +SURF 0x10 +mat 9 +refs 4 +115 0.158763021231 0.466849148273 +91 0.150451913476 0.471647560596 +92 0.152274280787 0.476047158241 +116 0.161544129252 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +117 0.162492707372 0.480768471956 +116 0.161544129252 0.473563283682 +92 0.152274280787 0.476047158241 +93 0.152895867825 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +117 0.162492707372 0.480768471956 +93 0.152895867825 0.480768471956 +94 0.152274280787 0.485489845276 +118 0.161544129252 0.487973719835 +SURF 0x10 +mat 9 +refs 4 +119 0.158763021231 0.494687855244 +118 0.161544129252 0.487973719835 +94 0.152274280787 0.485489845276 +96 0.150451913476 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +120 0.154338926077 0.500453472137 +119 0.158763021231 0.494687855244 +96 0.150451913476 0.489889442921 +95 0.147552967072 0.49366748333 +SURF 0x10 +mat 9 +refs 4 +121 0.15329349041 0.513053119183 +143 0.16101424396 0.50712877512 +120 0.154338926077 0.500453472137 +97 0.148573309183 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +121 0.15329349041 0.513053119183 +97 0.148573309183 0.504877567291 +98 0.141859173775 0.507658600807 +122 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +122 0.144302502275 0.516777276993 +98 0.141859173775 0.507658600807 +99 0.1346539855 0.508607268333 +123 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +123 0.1346539855 0.518047630787 +99 0.1346539855 0.508607268333 +100 0.127448782325 0.507658600807 +124 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +124 0.125005453825 0.516777276993 +100 0.127448782325 0.507658600807 +101 0.120734617114 0.504877567291 +125 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +125 0.116014450788 0.513053119183 +101 0.120734617114 0.504877567291 +102 0.114969015121 0.500453472137 +126 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +126 0.108293712139 0.50712877512 +102 0.114969015121 0.500453472137 +103 0.11054494977 0.494687855244 +127 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +127 0.10236941278 0.499408006668 +103 0.11054494977 0.494687855244 +104 0.107763856649 0.487973690033 +128 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +128 0.0986452102661 0.490417033434 +104 0.107763856649 0.487973690033 +105 0.106815263629 0.480768471956 +129 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +129 0.0973749309778 0.480768471956 +105 0.106815263629 0.480768471956 +106 0.107763856649 0.473563283682 +130 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +130 0.0986452102661 0.471119970083 +106 0.107763856649 0.473563283682 +107 0.11054494977 0.466849118471 +131 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +131 0.10236941278 0.462128996849 +107 0.11054494977 0.466849118471 +108 0.114969074726 0.461083561182 +132 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +133 0.116014495492 0.448483914137 +132 0.108293741941 0.454408228397 +108 0.114969074726 0.461083561182 +109 0.120734632015 0.456659436226 +SURF 0x10 +mat 9 +refs 4 +133 0.116014495492 0.448483914137 +109 0.120734632015 0.456659436226 +110 0.127448827028 0.453878372908 +134 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +134 0.125005483627 0.444759726524 +110 0.127448827028 0.453878372908 +111 0.134654000401 0.452929794788 +135 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +135 0.134654000401 0.443489462137 +111 0.134654000401 0.452929794788 +112 0.141859203577 0.453878372908 +136 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +137 0.153293505311 0.448483914137 +136 0.144302561879 0.444759726524 +112 0.141859203577 0.453878372908 +113 0.148573338985 0.456659466028 +SURF 0x10 +mat 9 +refs 4 +137 0.153293505311 0.448483914137 +113 0.148573338985 0.456659466028 +114 0.154338926077 0.461083561182 +138 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +138 0.161014273763 0.454408228397 +114 0.154338926077 0.461083561182 +115 0.158763021231 0.466849148273 +139 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +139 0.166938588023 0.462128996849 +115 0.158763021231 0.466849148273 +116 0.161544129252 0.473563283682 +140 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +141 0.171933025122 0.480768531561 +140 0.170662805438 0.471119970083 +116 0.161544129252 0.473563283682 +117 0.162492707372 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +141 0.171933025122 0.480768531561 +117 0.162492707372 0.480768471956 +118 0.161544129252 0.487973719835 +142 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +144 0.166938588023 0.499408066273 +142 0.170662805438 0.490417033434 +118 0.161544129252 0.487973719835 +119 0.158763021231 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +143 0.16101424396 0.50712877512 +144 0.166938588023 0.499408066273 +119 0.158763021231 0.494687855244 +120 0.154338926077 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +145 0.15329349041 0.513053119183 +167 0.16101424396 0.50712877512 +143 0.16101424396 0.50712877512 +121 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +145 0.15329349041 0.513053119183 +121 0.15329349041 0.513053119183 +122 0.144302502275 0.516777276993 +146 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +146 0.144302502275 0.516777276993 +122 0.144302502275 0.516777276993 +123 0.1346539855 0.518047630787 +147 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +147 0.1346539855 0.518047630787 +123 0.1346539855 0.518047630787 +124 0.125005453825 0.516777276993 +148 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +148 0.125005453825 0.516777276993 +124 0.125005453825 0.516777276993 +125 0.116014450788 0.513053119183 +149 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +149 0.116014450788 0.513053119183 +125 0.116014450788 0.513053119183 +126 0.108293712139 0.50712877512 +150 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +150 0.108293712139 0.50712877512 +126 0.108293712139 0.50712877512 +127 0.10236941278 0.499408006668 +151 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +151 0.10236941278 0.499408006668 +127 0.10236941278 0.499408006668 +128 0.0986452102661 0.490417033434 +152 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +152 0.0986452102661 0.490417033434 +128 0.0986452102661 0.490417033434 +129 0.0973749309778 0.480768471956 +153 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +153 0.0973749309778 0.480768471956 +129 0.0973749309778 0.480768471956 +130 0.0986452102661 0.471119970083 +154 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +154 0.0986452102661 0.471119970083 +130 0.0986452102661 0.471119970083 +131 0.10236941278 0.462128996849 +155 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +155 0.10236941278 0.462128996849 +131 0.10236941278 0.462128996849 +132 0.108293741941 0.454408228397 +156 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +157 0.116014495492 0.448483914137 +156 0.108293741941 0.454408228397 +132 0.108293741941 0.454408228397 +133 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +157 0.116014495492 0.448483914137 +133 0.116014495492 0.448483914137 +134 0.125005483627 0.444759726524 +158 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +158 0.125005483627 0.444759726524 +134 0.125005483627 0.444759726524 +135 0.134654000401 0.443489462137 +159 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +159 0.134654000401 0.443489462137 +135 0.134654000401 0.443489462137 +136 0.144302561879 0.444759726524 +160 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +161 0.153293505311 0.448483914137 +160 0.144302561879 0.444759726524 +136 0.144302561879 0.444759726524 +137 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +161 0.153293505311 0.448483914137 +137 0.153293505311 0.448483914137 +138 0.161014273763 0.454408228397 +162 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +162 0.161014273763 0.454408228397 +138 0.161014273763 0.454408228397 +139 0.166938588023 0.462128996849 +163 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +163 0.166938588023 0.462128996849 +139 0.166938588023 0.462128996849 +140 0.170662805438 0.471119970083 +164 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +165 0.171933025122 0.480768531561 +164 0.170662805438 0.471119970083 +140 0.170662805438 0.471119970083 +141 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +165 0.171933025122 0.480768531561 +141 0.171933025122 0.480768531561 +142 0.170662805438 0.490417033434 +166 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +168 0.166938588023 0.499408066273 +166 0.170662805438 0.490417033434 +142 0.170662805438 0.490417033434 +144 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +167 0.16101424396 0.50712877512 +168 0.166938588023 0.499408066273 +144 0.166938588023 0.499408066273 +143 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +169 0.155027061701 0.516055822372 +191 0.163465932012 0.509580433369 +167 0.16101424396 0.50712877512 +145 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +169 0.155027061701 0.516055822372 +145 0.15329349041 0.513053119183 +146 0.144302502275 0.516777276993 +170 0.145199865103 0.520126402378 +SURF 0x10 +mat 9 +refs 4 +170 0.145199865103 0.520126402378 +146 0.144302502275 0.516777276993 +147 0.1346539855 0.518047630787 +171 0.134653955698 0.521514713764 +SURF 0x10 +mat 9 +refs 4 +171 0.134653955698 0.521514713764 +147 0.1346539855 0.518047630787 +148 0.125005453825 0.516777276993 +172 0.124108076096 0.520126402378 +SURF 0x10 +mat 9 +refs 4 +172 0.124108076096 0.520126402378 +148 0.125005453825 0.516777276993 +149 0.116014450788 0.513053119183 +173 0.114280834794 0.516055822372 +SURF 0x10 +mat 9 +refs 4 +173 0.114280834794 0.516055822372 +149 0.116014450788 0.513053119183 +150 0.108293712139 0.50712877512 +174 0.105842024088 0.509580433369 +SURF 0x10 +mat 9 +refs 4 +174 0.105842024088 0.509580433369 +150 0.108293712139 0.50712877512 +151 0.10236941278 0.499408006668 +175 0.09936670959 0.501141607761 +SURF 0x10 +mat 9 +refs 4 +175 0.09936670959 0.501141607761 +151 0.10236941278 0.499408006668 +152 0.0986452102661 0.490417033434 +176 0.0952961295843 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +176 0.0952961295843 0.491314411163 +152 0.0986452102661 0.490417033434 +153 0.0973749309778 0.480768471956 +177 0.0939077436924 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +177 0.0939077436924 0.480768471956 +153 0.0973749309778 0.480768471956 +154 0.0986452102661 0.471119970083 +178 0.0952961593866 0.470222562551 +SURF 0x10 +mat 9 +refs 4 +178 0.0952961593866 0.470222562551 +154 0.0986452102661 0.471119970083 +155 0.10236941278 0.462128996849 +179 0.09936670959 0.460395395756 +SURF 0x10 +mat 9 +refs 4 +179 0.09936670959 0.460395395756 +155 0.10236941278 0.462128996849 +156 0.108293741941 0.454408228397 +180 0.10584205389 0.451956540346 +SURF 0x10 +mat 9 +refs 4 +181 0.114280894399 0.445481210947 +180 0.10584205389 0.451956540346 +156 0.108293741941 0.454408228397 +157 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +181 0.114280894399 0.445481210947 +157 0.116014495492 0.448483914137 +158 0.125005483627 0.444759726524 +182 0.124108105898 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +182 0.124108105898 0.441410690546 +158 0.125005483627 0.444759726524 +159 0.134654000401 0.443489462137 +183 0.134654000401 0.440022289753 +SURF 0x10 +mat 9 +refs 4 +183 0.134654000401 0.440022289753 +159 0.134654000401 0.443489462137 +160 0.144302561879 0.444759726524 +184 0.145199909806 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +185 0.155027121305 0.445481210947 +184 0.145199909806 0.441410690546 +160 0.144302561879 0.444759726524 +161 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +185 0.155027121305 0.445481210947 +161 0.153293505311 0.448483914137 +162 0.161014273763 0.454408228397 +186 0.163465932012 0.451956599951 +SURF 0x10 +mat 9 +refs 4 +186 0.163465932012 0.451956599951 +162 0.161014273763 0.454408228397 +163 0.166938588023 0.462128996849 +187 0.169941276312 0.460395395756 +SURF 0x10 +mat 9 +refs 4 +187 0.169941276312 0.460395395756 +163 0.166938588023 0.462128996849 +164 0.170662805438 0.471119970083 +188 0.174011841416 0.470222622156 +SURF 0x10 +mat 9 +refs 4 +189 0.175400227308 0.480768531561 +188 0.174011841416 0.470222622156 +164 0.170662805438 0.471119970083 +165 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +189 0.175400227308 0.480768531561 +165 0.171933025122 0.480768531561 +166 0.170662805438 0.490417033434 +190 0.174011841416 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +192 0.169941276312 0.501141607761 +190 0.174011841416 0.491314411163 +166 0.170662805438 0.490417033434 +168 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +191 0.163465932012 0.509580433369 +192 0.169941276312 0.501141607761 +168 0.166938588023 0.499408066273 +167 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 3 +216 0.163628667593 0.509743213654 +194 0.155142173171 0.516255199909 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +194 0.155142173171 0.516255199909 +195 0.145259439945 0.520348727703 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +195 0.145259439945 0.520348727703 +196 0.134653955698 0.521744906902 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +196 0.134653955698 0.521744906902 +197 0.124048486352 0.520348727703 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +197 0.124048486352 0.520348727703 +198 0.114165768027 0.516255140305 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +198 0.114165768027 0.516255140305 +199 0.105679303408 0.509743213654 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +199 0.105679303408 0.509743213654 +200 0.0991673767567 0.50125670433 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +200 0.0991673767567 0.50125670433 +201 0.0950738191605 0.491373956203 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +201 0.0950738191605 0.491373956203 +202 0.0936775803566 0.480768471956 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +202 0.0936775803566 0.480768471956 +203 0.0950738340616 0.470163017511 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +203 0.0950738340616 0.470163017511 +204 0.099167406559 0.460280328989 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +204 0.099167406559 0.460280328989 +205 0.105679303408 0.451793789864 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +205 0.105679303408 0.451793789864 +206 0.114165812731 0.445281893015 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +206 0.114165812731 0.445281893015 +207 0.124048545957 0.441188365221 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +207 0.124048545957 0.441188365221 +208 0.134654000401 0.439792096615 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +208 0.134654000401 0.439792096615 +209 0.14525949955 0.441188365221 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +209 0.14525949955 0.441188365221 +210 0.155142202973 0.445281893015 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +210 0.155142202973 0.445281893015 +211 0.163628727198 0.451793819666 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +211 0.163628727198 0.451793819666 +212 0.170140609145 0.460280328989 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +212 0.170140609145 0.460280328989 +213 0.174234181643 0.470163047314 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +213 0.174234181643 0.470163047314 +214 0.175630405545 0.480768531561 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +214 0.175630405545 0.480768531561 +215 0.174234181643 0.491374015808 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +215 0.174234181643 0.491374015808 +217 0.170140609145 0.501256763935 +193 0.1346539855 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +217 0.170140609145 0.501256763935 +216 0.163628667593 0.509743213654 +193 0.1346539855 0.480768471956 +kids 0 +OBJECT poly +name "chassis.002" +data 9 +Plane.004 +crease 30 +numvert 4 +2.283465 1.167867 0.715797 +2.34581 1.167867 0.715797 +2.283465 1.027411 0.715797 +2.34581 1.027411 0.715797 +numsurf 1 +SURF 0x00 +mat 9 +refs 4 +2 0 0 +0 0 0 +1 0 0 +3 0 0 +kids 0 +OBJECT poly +name "canister.RR" +data 9 +Plane.016 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +3.383027 1.300251 -0.152816 +3.387241 1.305644 -0.160068 +3.383896 1.306178 -0.160787 +3.380446 1.305998 -0.160545 +3.377307 1.305125 -0.159371 +3.374859 1.303664 -0.157406 +3.373395 1.301791 -0.154887 +3.373093 1.299733 -0.152118 +3.37399 1.297737 -0.149434 +3.375976 1.296044 -0.147157 +3.378813 1.294859 -0.145564 +3.382158 1.294324 -0.144844 +3.385608 1.294504 -0.145086 +3.388747 1.295377 -0.146261 +3.391195 1.296838 -0.148226 +3.392659 1.298711 -0.150745 +3.392961 1.30077 -0.153513 +3.392064 1.302766 -0.156198 +3.390078 1.304458 -0.158474 +3.398716 1.314228 -0.18435 +3.386262 1.316219 -0.187028 +3.373419 1.315548 -0.186126 +3.361734 1.312297 -0.181754 +3.352617 1.306857 -0.174438 +3.347168 1.299885 -0.165061 +3.346045 1.292221 -0.154754 +3.349382 1.284791 -0.144761 +3.356777 1.278489 -0.136286 +3.367338 1.274076 -0.130351 +3.379791 1.272085 -0.127674 +3.392635 1.272756 -0.128575 +3.40432 1.276007 -0.132948 +3.413437 1.281447 -0.140264 +3.418885 1.288419 -0.149641 +3.420009 1.296082 -0.159947 +3.416672 1.303513 -0.169941 +3.409277 1.309815 -0.178416 +3.400271 1.296395 -0.201766 +3.386583 1.298584 -0.204709 +3.372466 1.297847 -0.203718 +3.359623 1.294273 -0.198912 +3.349603 1.288294 -0.190871 +3.343614 1.280631 -0.180565 +3.342379 1.272208 -0.169236 +3.346046 1.26404 -0.158252 +3.354175 1.257114 -0.148937 +3.365783 1.252264 -0.142414 +3.379471 1.250076 -0.139471 +3.393588 1.250813 -0.140462 +3.406431 1.254386 -0.145268 +3.416451 1.260365 -0.153309 +3.42244 1.268028 -0.163615 +3.423675 1.276452 -0.174944 +3.420007 1.284619 -0.185928 +3.411879 1.291545 -0.195243 +3.396473 1.285436 -0.199764 +3.3858 1.287142 -0.202059 +3.374793 1.286567 -0.201286 +3.364779 1.283781 -0.197539 +3.356966 1.279119 -0.191269 +3.352296 1.273144 -0.183233 +3.351333 1.266576 -0.1744 +3.354192 1.260208 -0.165835 +3.36053 1.254807 -0.158572 +3.369581 1.251025 -0.153486 +3.380254 1.249319 -0.151191 +3.391261 1.249894 -0.151964 +3.401275 1.25268 -0.155711 +3.409088 1.257342 -0.161981 +3.413758 1.263317 -0.170017 +3.414721 1.269885 -0.17885 +3.405524 1.281654 -0.194678 +3.411861 1.276253 -0.187415 +3.405857 1.28677 -0.22385 +3.387735 1.289667 -0.227746 +3.369045 1.288692 -0.226434 +3.352042 1.283961 -0.220072 +3.338776 1.276045 -0.209426 +3.330847 1.2659 -0.195781 +3.329212 1.254748 -0.180783 +3.334068 1.243935 -0.166241 +3.344829 1.234765 -0.153908 +3.360197 1.228344 -0.145273 +3.378319 1.225446 -0.141376 +3.397008 1.226422 -0.142688 +3.414012 1.231153 -0.149051 +3.427278 1.239069 -0.159697 +3.435207 1.249214 -0.173342 +3.436842 1.260366 -0.18834 +3.431986 1.271179 -0.202882 +3.421225 1.280349 -0.215214 +3.473959 1.261001 -0.455473 +3.289709 1.261001 -0.455473 +3.473959 1.270049 -0.471455 +3.289709 1.270049 -0.471455 +3.451548 1.302308 -0.455473 +3.451548 1.302308 -0.280211 +3.289709 1.261001 -0.280211 +3.289709 1.269322 -0.259434 +3.473959 1.269322 -0.259434 +3.473959 1.261001 -0.280211 +3.312121 1.302308 -0.280211 +3.312121 1.302308 -0.455473 +3.294943 1.293988 -0.259434 +3.289709 1.284064 -0.259434 +3.289709 1.291453 -0.259434 +3.332787 1.312318 -0.255594 +3.430882 1.312318 -0.255594 +3.430882 1.312318 -0.538723 +3.332787 1.312318 -0.538722 +3.289709 1.291453 -0.222277 +3.473959 0.776817 -0.572039 +3.473959 0.776817 -0.126953 +3.473959 1.221903 -0.126954 +3.473959 1.221903 -0.572039 +3.289709 1.221903 -0.126954 +3.289709 0.776817 -0.126954 +3.289709 0.776817 -0.572039 +3.289709 1.221903 -0.572039 +3.468725 1.293988 -0.259434 +3.470227 1.29326 -0.471455 +3.471258 1.292761 -0.471455 +3.293442 1.29326 -0.471455 +3.289709 1.291453 -0.471455 +3.289709 1.291453 -0.572039 +3.473959 1.279293 -0.471455 +3.473959 1.291453 -0.471455 +3.473959 1.291453 -0.572039 +3.470189 1.293279 -0.259434 +3.473959 1.291453 -0.259434 +3.473959 1.291453 -0.222277 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +14 0.720553219318 0.925439238548 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +15 0.0142893865705 0.386845588684 +0 0.0146232433617 0.387093901634 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 3 +16 0.721186935902 0.926291584969 +0 0.72110337019 0.926179170609 +15 0.72085505724 0.925845265388 +SURF 0x10 +mat 9 +refs 3 +17 0.0151683967561 0.387499213219 +0 0.0146232433617 0.387093901634 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +17 0.721508681774 0.92672431469 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +18 0.0155353546143 0.38777205348 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +2 0.0159082766622 0.38804936409 +1 0.0157923176885 0.387963145971 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +30 0.716671168804 0.922271609306 +12 0.720176875591 0.924933195114 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +12 0.0133772883564 0.386167436838 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +13 0.0135666038841 0.386308133602 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +20 0.0201382674277 0.389667838812 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +20 0.723677396774 0.931694149971 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +29 0.716563045979 0.922126293182 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +29 0.0105703622103 0.382553577423 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +30 0.0107157044113 0.382661700249 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +56 0.0225611738861 0.384980678558 +38 0.0229883790016 0.386825114489 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +38 0.720834553242 0.934544324875 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +47 0.713015139103 0.924027919769 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +47 0.0124720484018 0.379005610943 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +73 0.0260738730431 0.38492077589 +55 0.0221912320703 0.384705603123 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +55 0.718715131283 0.933747172356 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +56 0.718990147114 0.934117078781 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +85 0.709964811802 0.925572276115 +67 0.713434994221 0.926645874977 +66 0.712985813618 0.926041841507 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +91 0.0634112805128 0.380766808987 +114 0.0822017341852 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +91 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +100 0.0351593159139 0.380766808987 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +93 0.0659876763821 0.382225304842 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +93 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +130 0.0258204042912 0.385675609112 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +98 0.716117560863 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +95 0.0634113550186 0.387425422668 +108 0.0768311172724 0.389038980007 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +130 0.0258204042912 0.385675609112 +119 0.0318100675941 0.386084258556 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +101 0.721435010433 0.94671523571 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +126 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +119 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +129 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +105 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +130 0.719685137272 0.937376379967 +107 0.723048388958 0.94274699688 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +118 0.708473622799 0.993757665157 +124 0.719685137272 0.993757665157 +127 0.719685018063 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +112 0.636726200581 0.922010183334 +116 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +114 0.708473622799 0.993757665157 +111 0.636726200581 0.993757665157 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +112 0.0104542300105 0.302716702223 +111 0.0822017341852 0.302716642618 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +127 0.0822017341852 0.385675519705 +121 0.0659876763821 0.385886520147 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +122 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +126 0.0659876763821 0.385675609112 +125 0.0659876763821 0.383715420961 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +129 0.0318100675941 0.385675609112 +128 0.0318100675941 0.385969936848 +kids 0 +OBJECT poly +name "steerwheel" +data 4 +Cube +texture "cabin.png" +texrep 1 1 +crease 30 +numvert 359 +1.811046 1.215638 0.485981 +1.816174 1.201347 0.478137 +1.797167 1.212093 0.490354 +1.788868 1.235216 0.503047 +1.780291 1.233025 0.50575 +1.798805 1.227353 0.47745 +1.79628 1.220388 0.475723 +1.789194 1.219723 0.478413 +1.787342 1.226277 0.481802 +1.793282 1.230992 0.481207 +1.748824 1.275189 0.35762 +1.746298 1.268224 0.355894 +1.739213 1.267559 0.358583 +1.73736 1.274113 0.361972 +1.7433 1.278828 0.361377 +1.749026 1.273348 0.305866 +1.744575 1.267207 0.306461 +1.737946 1.268771 0.303072 +1.7383 1.275878 0.300382 +1.745148 1.278707 0.302109 +1.799007 1.225512 0.186036 +1.794557 1.219371 0.186631 +1.787928 1.220935 0.183242 +1.788282 1.228042 0.180552 +1.795129 1.230871 0.182279 +1.813065 1.201658 0.18311 +1.814878 1.210323 0.180407 +1.791413 1.2176 0.167715 +1.779844 1.236118 0.155497 +1.794346 1.231621 0.163341 +1.600835 1.416825 0.344679 +1.596148 1.411928 0.360368 +1.592429 1.408042 0.335932 +1.600012 1.415965 0.310548 +1.594817 1.410537 0.305142 +1.612292 1.405859 0.334272 +1.607606 1.400962 0.337725 +1.603886 1.397076 0.332346 +1.606274 1.399571 0.325568 +1.61147 1.405 0.326758 +1.712255 1.310188 0.334272 +1.707568 1.305291 0.337726 +1.703849 1.301405 0.332346 +1.706237 1.3039 0.325568 +1.711432 1.309328 0.326758 +1.185147 0.713085 0.331334 +1.188984 0.709412 0.319945 +1.185938 0.712327 0.318815 +1.182797 0.715333 0.319195 +1.17994 0.718068 0.32104 +1.17771 0.720202 0.324126 +1.176378 0.721477 0.328081 +1.176103 0.72174 0.332429 +1.176919 0.720959 0.336645 +1.178727 0.719229 0.34022 +1.18131 0.716757 0.342723 +1.184356 0.713842 0.343852 +1.187497 0.710836 0.343472 +1.190354 0.708101 0.341628 +1.192584 0.705967 0.338542 +1.193916 0.704692 0.334586 +1.194191 0.704429 0.330239 +1.191566 0.706941 0.322448 +1.193375 0.70521 0.326023 +1.700943 1.244335 0.319945 +1.697897 1.247249 0.318815 +1.694756 1.250256 0.319195 +1.691899 1.25299 0.32104 +1.689669 1.255124 0.324126 +1.688337 1.2564 0.328081 +1.688062 1.256662 0.332429 +1.688878 1.255882 0.336645 +1.690686 1.254151 0.34022 +1.693269 1.251679 0.342723 +1.696315 1.248764 0.343852 +1.699455 1.245758 0.343472 +1.702313 1.243023 0.341628 +1.704543 1.240889 0.338542 +1.705875 1.239614 0.334586 +1.70615 1.239351 0.330239 +1.705334 1.240132 0.326023 +1.703525 1.241863 0.322448 +1.706067 1.244649 0.312471 +1.701023 1.249477 0.3106 +1.695821 1.254455 0.31123 +1.691089 1.258985 0.314285 +1.687396 1.262519 0.319396 +1.685189 1.264631 0.325947 +1.684734 1.265067 0.333148 +1.686086 1.263773 0.34013 +1.689081 1.260906 0.346051 +1.693358 1.256812 0.350197 +1.698402 1.251985 0.352067 +1.703604 1.247006 0.351437 +1.708337 1.242477 0.348383 +1.71203 1.238943 0.343271 +1.714236 1.236831 0.336721 +1.714692 1.236395 0.32952 +1.710345 1.240555 0.316617 +1.71334 1.237689 0.322538 +1.718688 1.25449 0.307509 +1.712318 1.260588 0.305147 +1.705747 1.266876 0.305942 +1.69977 1.272597 0.309801 +1.695106 1.27706 0.316256 +1.692319 1.279728 0.32453 +1.691744 1.280278 0.333625 +1.693451 1.278644 0.342443 +1.697234 1.275024 0.349922 +1.702637 1.269853 0.355158 +1.709007 1.263756 0.357521 +1.715578 1.257467 0.356725 +1.721555 1.251746 0.352867 +1.726219 1.247283 0.346412 +1.729007 1.244615 0.338137 +1.729581 1.244065 0.329043 +1.727874 1.245699 0.320224 +1.724091 1.249319 0.312746 +1.731305 1.260597 0.297018 +1.722129 1.26938 0.293615 +1.712665 1.278437 0.294761 +1.704055 1.286677 0.300318 +1.697338 1.293107 0.309616 +1.693323 1.296949 0.321534 +1.692495 1.297741 0.334634 +1.694954 1.295388 0.347335 +1.700403 1.290173 0.358107 +1.708185 1.282725 0.36565 +1.717361 1.273943 0.369053 +1.726825 1.264886 0.367907 +1.735435 1.256645 0.36235 +1.742152 1.250216 0.353051 +1.746167 1.246374 0.341134 +1.746995 1.245581 0.328034 +1.739087 1.253149 0.30456 +1.744536 1.247934 0.315332 +1.749572 1.302826 0.331334 +1.752154 1.300355 0.323669 +1.750104 1.302316 0.322909 +1.74799 1.30434 0.323165 +1.746067 1.30618 0.324406 +1.744567 1.307616 0.326483 +1.74367 1.308474 0.329145 +1.743485 1.308651 0.332071 +1.744034 1.308126 0.334908 +1.745251 1.306961 0.337314 +1.746989 1.305297 0.338999 +1.749039 1.303336 0.339759 +1.751153 1.301312 0.339503 +1.753076 1.299472 0.338262 +1.754577 1.298036 0.336185 +1.755474 1.297177 0.333523 +1.755659 1.297001 0.330597 +1.753892 1.298691 0.325353 +1.755109 1.297526 0.32776 +1.749846 1.296343 0.321295 +1.747162 1.298912 0.3203 +1.744394 1.301562 0.320635 +1.741875 1.303972 0.322261 +1.73991 1.305853 0.324981 +1.738735 1.306977 0.328467 +1.738493 1.307209 0.332299 +1.739213 1.30652 0.336015 +1.740807 1.304995 0.339166 +1.743083 1.302816 0.341372 +1.745767 1.300247 0.342368 +1.748536 1.297598 0.342033 +1.751055 1.295187 0.340407 +1.75302 1.293306 0.337687 +1.754194 1.292182 0.334201 +1.754436 1.29195 0.330368 +1.753717 1.292639 0.326653 +1.752123 1.294164 0.323502 +1.751249 1.28359 0.300213 +1.742927 1.291555 0.297127 +1.734344 1.299769 0.298166 +1.726536 1.307242 0.303206 +1.720444 1.313072 0.311639 +1.716803 1.316557 0.322447 +1.716053 1.317276 0.334327 +1.718282 1.315142 0.345845 +1.723224 1.310412 0.355614 +1.730281 1.303658 0.362454 +1.738603 1.295693 0.365541 +1.747185 1.287479 0.364501 +1.754994 1.280006 0.359461 +1.761086 1.274176 0.351029 +1.764727 1.270691 0.340221 +1.765477 1.269973 0.328341 +1.758306 1.276836 0.307054 +1.763248 1.272107 0.316822 +1.742983 1.272798 0.297018 +1.733806 1.281581 0.293615 +1.724342 1.290638 0.294761 +1.715733 1.298879 0.300318 +1.709015 1.305308 0.309616 +1.705 1.30915 0.321534 +1.704172 1.309942 0.334634 +1.706631 1.307589 0.347335 +1.71208 1.302374 0.358107 +1.719862 1.294926 0.36565 +1.729038 1.286144 0.369053 +1.738502 1.277086 0.367907 +1.747112 1.268846 0.36235 +1.753829 1.262417 0.353051 +1.757844 1.258575 0.341134 +1.758672 1.257782 0.328034 +1.756213 1.260135 0.315332 +1.750764 1.26535 0.30456 +1.736489 1.289156 0.146849 +1.731432 1.283872 0.151087 +1.726365 1.278579 0.146873 +1.726356 1.278569 0.13842 +1.731413 1.283852 0.134181 +1.736479 1.289146 0.138395 +1.700403 1.323673 0.14497 +1.694549 1.319134 0.140899 +1.690284 1.313091 0.144993 +1.691875 1.311589 0.153158 +1.697729 1.316129 0.157229 +1.701994 1.322171 0.153135 +1.669849 1.352935 0.171565 +1.666323 1.346186 0.175236 +1.659734 1.34235 0.171586 +1.656671 1.345262 0.164265 +1.660197 1.352011 0.160594 +1.666786 1.355848 0.164244 +1.637918 1.383476 0.194906 +1.630698 1.380243 0.191926 +1.627807 1.372887 0.194923 +1.632135 1.368764 0.2009 +1.639354 1.371998 0.20388 +1.642246 1.379354 0.200883 +1.621065 1.399625 0.239091 +1.61866 1.391803 0.241211 +1.610957 1.389033 0.239103 +1.605658 1.394085 0.234877 +1.608063 1.401906 0.232757 +1.615767 1.404677 0.234865 +1.601842 1.418004 0.281398 +1.593834 1.415525 0.280307 +1.591735 1.40741 0.281404 +1.597644 1.401775 0.283592 +1.605651 1.404254 0.284683 +1.60775 1.412368 0.283585 +1.603209 1.416715 0.331334 +1.601214 1.4085 0.331334 +1.593103 1.40612 0.331334 +1.586986 1.411955 0.331334 +1.588981 1.42017 0.331334 +1.597092 1.422549 0.331334 +1.601842 1.418004 0.38127 +1.593834 1.415525 0.382361 +1.591735 1.40741 0.381263 +1.597644 1.401775 0.379076 +1.605651 1.404254 0.377985 +1.60775 1.412368 0.379082 +1.621065 1.399625 0.423576 +1.61866 1.391803 0.421457 +1.610957 1.389033 0.423564 +1.605658 1.394085 0.427791 +1.608063 1.401906 0.42991 +1.615766 1.404677 0.427803 +1.637918 1.383477 0.467762 +1.630698 1.380243 0.470742 +1.627807 1.372887 0.467744 +1.632135 1.368764 0.461767 +1.639354 1.371998 0.458787 +1.642246 1.379354 0.461784 +1.669849 1.352936 0.491103 +1.666323 1.346187 0.487432 +1.659734 1.34235 0.491081 +1.656671 1.345262 0.498402 +1.660197 1.352011 0.502073 +1.666786 1.355848 0.498423 +1.700403 1.323673 0.517698 +1.694548 1.319134 0.521769 +1.690284 1.313092 0.517674 +1.691875 1.311589 0.509509 +1.697729 1.316129 0.505438 +1.701993 1.322171 0.509533 +1.736489 1.289156 0.515819 +1.731432 1.283873 0.51158 +1.726365 1.278579 0.515795 +1.726356 1.278569 0.524248 +1.731413 1.283852 0.528487 +1.736479 1.289146 0.524272 +1.772555 1.254619 0.517698 +1.768276 1.248571 0.521769 +1.762427 1.244045 0.517674 +1.760856 1.245569 0.509509 +1.765135 1.251616 0.505438 +1.770984 1.256142 0.509533 +1.803129 1.225377 0.491103 +1.796541 1.221559 0.487432 +1.792997 1.214808 0.491081 +1.79604 1.211875 0.498402 +1.802628 1.215693 0.502073 +1.806173 1.222444 0.498423 +1.835041 1.194816 0.467762 +1.832127 1.187461 0.470742 +1.824905 1.18425 0.467745 +1.820596 1.188393 0.461767 +1.82351 1.195747 0.458787 +1.830732 1.198959 0.461785 +1.851913 1.178687 0.423576 +1.844204 1.175942 0.421457 +1.841774 1.168124 0.423564 +1.847053 1.163052 0.427791 +1.854762 1.165798 0.42991 +1.857192 1.173615 0.427803 +1.871117 1.160288 0.38127 +1.868991 1.15218 0.382361 +1.860976 1.149727 0.381264 +1.855087 1.155383 0.379076 +1.857213 1.163491 0.377985 +1.865228 1.165944 0.379082 +1.869769 1.161598 0.331334 +1.86165 1.159245 0.331334 +1.859628 1.151037 0.331334 +1.865725 1.145182 0.331334 +1.873844 1.147535 0.331334 +1.875866 1.155743 0.331334 +1.871117 1.160288 0.281398 +1.868991 1.15218 0.280307 +1.860976 1.149727 0.281404 +1.855087 1.155383 0.283592 +1.857213 1.163491 0.284683 +1.865228 1.165944 0.283586 +1.851913 1.178687 0.239091 +1.844204 1.175942 0.241211 +1.841774 1.168124 0.239103 +1.847053 1.163052 0.234877 +1.854762 1.165798 0.232757 +1.857192 1.173615 0.234865 +1.835041 1.194816 0.194906 +1.832127 1.187461 0.191926 +1.824905 1.18425 0.194923 +1.820596 1.188393 0.2009 +1.82351 1.195747 0.20388 +1.830732 1.198959 0.200883 +1.803129 1.225377 0.171565 +1.796541 1.221559 0.175236 +1.792997 1.214808 0.171586 +1.79604 1.211875 0.164265 +1.802628 1.215693 0.160595 +1.806173 1.222444 0.164244 +1.772555 1.254619 0.14497 +1.768277 1.248571 0.140899 +1.762427 1.244045 0.144993 +1.760856 1.245568 0.153158 +1.765135 1.251616 0.157229 +1.770984 1.256142 0.153135 +1.736489 1.289156 0.146849 +1.731432 1.283873 0.151087 +1.726365 1.278579 0.146873 +1.726356 1.278569 0.13842 +1.731413 1.283852 0.134181 +1.736479 1.289146 0.138395 +numsurf 354 +SURF 0x10 +mat 9 +refs 4 +0 0.71723395586 0.0107445893809 +5 0.713275015354 0.0156752318144 +9 0.710574865341 0.0148772755638 +3 0.706083714962 0.00677270907909 +SURF 0x10 +mat 9 +refs 4 +5 0.492735773325 0.758353054523 +0 0.492819368839 0.765521287918 +1 0.489888757467 0.7710262537 +6 0.489896476269 0.759560227394 +SURF 0x10 +mat 9 +refs 4 +6 0.882941603661 0.0988140404224 +1 0.889812886715 0.104039460421 +2 0.880286753178 0.104302473366 +7 0.879852116108 0.0982853919268 +SURF 0x10 +mat 9 +refs 4 +7 0.714968621731 0.865096449852 +2 0.713702201843 0.859878957272 +4 0.7218131423 0.85480761528 +8 0.717692136765 0.864198684692 +SURF 0x10 +mat 9 +refs 4 +8 0.708209693432 0.0153542095795 +4 0.702380180359 0.00674693798646 +3 0.706083714962 0.00677270907909 +9 0.710574865341 0.0148772755638 +SURF 0x10 +mat 9 +refs 4 +14 0.704860568047 0.0687240585685 +9 0.710574865341 0.0148772755638 +5 0.713275015354 0.0156752318144 +10 0.70756071806 0.0695220157504 +SURF 0x10 +mat 9 +refs 4 +10 0.0791186541319 0.87568873167 +5 0.0791383311152 0.927862465382 +6 0.0760170891881 0.928067803383 +11 0.0759974643588 0.875894069672 +SURF 0x10 +mat 9 +refs 4 +11 0.88971799612 0.0450158827007 +6 0.882941603661 0.0988140404224 +7 0.879852116108 0.0982853919268 +12 0.886628508568 0.0444872379303 +SURF 0x10 +mat 9 +refs 4 +12 0.718998193741 0.91605681181 +7 0.714968621731 0.865096449852 +8 0.717692136765 0.864198684692 +13 0.721721708775 0.91515904665 +SURF 0x10 +mat 9 +refs 4 +13 0.702495396137 0.0692009851336 +8 0.708209693432 0.0153542095795 +9 0.710574865341 0.0148772755638 +14 0.704860568047 0.0687240585685 +SURF 0x10 +mat 9 +refs 4 +16 0.490005403757 0.752343535423 +21 0.489936619997 0.700405597687 +20 0.492750734091 0.701016664505 +15 0.492819398642 0.752954602242 +SURF 0x10 +mat 9 +refs 4 +17 0.829093933105 0.0692748278379 +22 0.830118298531 0.0150610962883 +21 0.833221554756 0.0153083037585 +16 0.832197189331 0.0695220157504 +SURF 0x10 +mat 9 +refs 4 +18 0.674367904663 0.855317652225 +23 0.669914245605 0.907692968845 +22 0.66684782505 0.907182812691 +17 0.671301364899 0.85480761528 +SURF 0x10 +mat 9 +refs 4 +19 0.631591796875 0.00687278201804 +24 0.63795030117 0.0606868080795 +23 0.635058641434 0.0605783350766 +18 0.628700137138 0.00676432577893 +SURF 0x10 +mat 9 +refs 4 +15 0.633648753166 0.00585824530572 +20 0.640007257462 0.0596722587943 +24 0.63795030117 0.0606868080795 +19 0.631591796875 0.00687278201804 +SURF 0x10 +mat 9 +refs 4 +21 0.820318698883 0.0236754287034 +25 0.820321619511 0.0129850795493 +26 0.823477268219 0.0148734888062 +20 0.823445856571 0.0240855906159 +SURF 0x10 +mat 9 +refs 4 +22 0.830118298531 0.0150610962883 +27 0.829058408737 0.0085258949548 +25 0.840044736862 0.0109257120639 +21 0.833221554756 0.0153083037585 +SURF 0x10 +mat 9 +refs 4 +23 0.669914245605 0.907692968845 +28 0.674344360828 0.91728413105 +27 0.667119860649 0.913754165173 +22 0.66684782505 0.907182812691 +SURF 0x10 +mat 9 +refs 4 +24 0.63795030117 0.0606868080795 +29 0.635392069817 0.068130582571 +28 0.628636240959 0.0695220157504 +23 0.635058641434 0.0605783350766 +SURF 0x10 +mat 9 +refs 4 +20 0.640007257462 0.0596722587943 +26 0.645855665207 0.0638529509306 +29 0.635392069817 0.068130582571 +24 0.63795030117 0.0606868080795 +SURF 0x10 +mat 9 +refs 4 +39 0.137830287218 0.850465655327 +33 0.144541606307 0.855392694473 +30 0.130368679762 0.855019032955 +35 0.134710669518 0.850126266479 +SURF 0x10 +mat 9 +refs 4 +35 0.66711628437 0.00404684990644 +30 0.668889701366 0.00929749757051 +31 0.664373278618 0.0145534854382 +36 0.66438382864 0.00454573938623 +SURF 0x10 +mat 9 +refs 4 +36 0.665701568127 0.0624719597399 +31 0.673644244671 0.0695220157504 +32 0.663438856602 0.0685215964913 +37 0.66317820549 0.0633707493544 +SURF 0x10 +mat 9 +refs 4 +37 0.66317820549 0.0633707493544 +32 0.663438856602 0.0685215964913 +34 0.651254177094 0.0645315870643 +38 0.660673439503 0.0617738924921 +SURF 0x10 +mat 9 +refs 4 +38 0.879872739315 0.0206260476261 +34 0.879852116108 0.0114225475118 +33 0.883155286312 0.0124927749857 +39 0.882505714893 0.0200790092349 +SURF 0x10 +mat 9 +refs 4 +44 0.138005912304 0.807660222054 +39 0.137830287218 0.850465655327 +35 0.134710669518 0.850126266479 +40 0.134886294603 0.807320892811 +SURF 0x10 +mat 9 +refs 4 +40 0.850468635559 0.0120551399887 +35 0.850487828255 0.0694644451141 +36 0.847635507584 0.0695220157504 +41 0.847616374493 0.0121126873419 +SURF 0x10 +mat 9 +refs 4 +41 0.847616374493 0.0121126873419 +36 0.847635507584 0.0695220157504 +37 0.845462441444 0.0694271922112 +42 0.845443189144 0.0120178386569 +SURF 0x10 +mat 9 +refs 4 +42 0.673517644405 0.0215487834066 +37 0.66317820549 0.0633707493544 +38 0.660673439503 0.0617738924921 +43 0.671012878418 0.0199519339949 +SURF 0x10 +mat 9 +refs 4 +43 0.356172502041 0.919121146202 +38 0.356187164783 0.861705303192 +39 0.359320938587 0.861721634865 +44 0.359306275845 0.919137477875 +SURF 0x10 +mat 9 +refs 3 +46 0.656460165977 0.00451757200062 +62 0.657637774944 0.00548327062279 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +47 0.655120074749 0.00413400074467 +46 0.656460165977 0.00451757200062 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +48 0.653779387474 0.00437878910452 +47 0.655120074749 0.00413400074467 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +49 0.652599811554 0.0052224304527 +48 0.653779387474 0.00437878910452 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +50 0.651723444462 0.0065631638281 +49 0.652599811554 0.0052224304527 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +51 0.651256144047 0.00823925901204 +50 0.651723444462 0.0065631638281 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +52 0.651254177094 0.0100485831499 +51 0.651256144047 0.00823925901204 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +53 0.651717841625 0.0117728970945 +52 0.651254177094 0.0100485831499 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +54 0.65259116888 0.0132042067125 +53 0.651717841625 0.0117728970945 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +55 0.653768897057 0.0141699109226 +54 0.65259116888 0.0132042067125 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +56 0.655108869076 0.0145534854382 +55 0.653768897057 0.0141699109226 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +57 0.656449556351 0.014308703132 +56 0.655108869076 0.0145534854382 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +58 0.657629191875 0.0134650748223 +57 0.656449556351 0.014308703132 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +59 0.658505558968 0.0121243568137 +58 0.657629191875 0.0134650748223 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +60 0.658972859383 0.010448246263 +59 0.658505558968 0.0121243568137 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +61 0.658974826336 0.00863890349865 +60 0.658972859383 0.010448246263 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +63 0.658511161804 0.00691457372159 +61 0.658974826336 0.00863890349865 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 3 +62 0.657637774944 0.00548327062279 +63 0.658511161804 0.00691457372159 +45 0.655114531517 0.00934375915676 +SURF 0x10 +mat 9 +refs 4 +64 0.957321405411 0.36729452014 +81 0.958845257759 0.367263406515 +62 0.95912873745 0.674598991871 +46 0.957605004311 0.674630105495 +SURF 0x10 +mat 9 +refs 4 +65 0.955553948879 0.36730825901 +64 0.957321405411 0.36729452014 +46 0.957605004311 0.674630105495 +47 0.955837488174 0.674643874168 +SURF 0x10 +mat 9 +refs 4 +66 0.95375597477 0.367303043604 +65 0.955553948879 0.36730825901 +47 0.955837488174 0.674643874168 +48 0.954039573669 0.67463862896 +SURF 0x10 +mat 9 +refs 4 +67 0.952144443989 0.367279410362 +66 0.95375597477 0.367303043604 +48 0.954039573669 0.67463862896 +49 0.952427983284 0.67461502552 +SURF 0x10 +mat 9 +refs 4 +68 0.950913667679 0.367240279913 +67 0.952144443989 0.367279410362 +49 0.952427983284 0.67461502552 +50 0.951197206974 0.674575865269 +SURF 0x10 +mat 9 +refs 4 +69 0.870210409164 0.511364340782 +68 0.871890485287 0.51166588068 +50 0.881096363068 0.776255249977 +51 0.879416286945 0.775953650475 +SURF 0x10 +mat 9 +refs 4 +70 0.868399918079 0.511379599571 +69 0.870210409164 0.511364340782 +51 0.879416286945 0.775953650475 +52 0.87760579586 0.775968849659 +SURF 0x10 +mat 9 +refs 4 +71 0.86667740345 0.511709451675 +70 0.868399918079 0.511379599571 +52 0.87760579586 0.775968849659 +53 0.875883340836 0.776298761368 +SURF 0x10 +mat 9 +refs 4 +72 0.865250706673 0.512314498425 +71 0.86667740345 0.511709451675 +53 0.875883340836 0.776298761368 +54 0.874456584454 0.776903748512 +SURF 0x10 +mat 9 +refs 4 +73 0.938726902008 0.361797332764 +72 0.937286913395 0.361825734377 +54 0.937528312206 0.0544596873224 +55 0.938968360424 0.054431270808 +SURF 0x10 +mat 9 +refs 4 +74 0.940456449986 0.361784189939 +73 0.938726902008 0.361797332764 +55 0.938968360424 0.054431270808 +56 0.940697848797 0.0544181056321 +SURF 0x10 +mat 9 +refs 4 +75 0.942266881466 0.361787825823 +74 0.940456449986 0.361784189939 +56 0.940697848797 0.0544181056321 +57 0.942508339882 0.0544217564166 +SURF 0x10 +mat 9 +refs 4 +76 0.94393992424 0.361807793379 +75 0.942266881466 0.361787825823 +57 0.942508339882 0.0544217564166 +58 0.944181382656 0.0544417537749 +SURF 0x10 +mat 9 +refs 4 +77 0.945273756981 0.361841827631 +76 0.94393992424 0.361807793379 +58 0.944181382656 0.0544417537749 +59 0.945515155792 0.0544757023454 +SURF 0x10 +mat 9 +refs 4 +78 0.971750020981 0.680744767189 +77 0.973387956619 0.680331885815 +59 0.973397493362 0.940667033195 +60 0.971759557724 0.941079795361 +SURF 0x10 +mat 9 +refs 4 +79 0.969945549965 0.680834531784 +78 0.971750020981 0.680744767189 +60 0.971759557724 0.941079795361 +61 0.969955086708 0.941169679165 +SURF 0x10 +mat 9 +refs 4 +80 0.96819216013 0.680590629578 +79 0.969945549965 0.680834531784 +61 0.969955086708 0.941169679165 +63 0.968201696873 0.940925776958 +SURF 0x10 +mat 9 +refs 4 +81 0.966701388359 0.68004232645 +80 0.96819216013 0.680590629578 +63 0.968201696873 0.940925776958 +62 0.966710925102 0.940377414227 +SURF 0x10 +mat 9 +refs 4 +82 0.866156220436 0.289094299078 +98 0.867221653461 0.291380673647 +81 0.863671243191 0.292559236288 +64 0.86302793026 0.29117873311 +SURF 0x10 +mat 9 +refs 4 +83 0.864430963993 0.287560492754 +82 0.866156220436 0.289094299078 +64 0.86302793026 0.29117873311 +65 0.861986279488 0.290252655745 +SURF 0x10 +mat 9 +refs 4 +84 0.862253963947 0.286964267492 +83 0.864430963993 0.287560492754 +65 0.861986279488 0.290252655745 +66 0.860671818256 0.28989264369 +SURF 0x10 +mat 9 +refs 4 +85 0.875886440277 0.509757220745 +84 0.877296805382 0.511068701744 +66 0.874089121819 0.513039469719 +67 0.873237550259 0.512247681618 +SURF 0x10 +mat 9 +refs 4 +86 0.873655378819 0.508793652058 +85 0.875886440277 0.509757220745 +67 0.873237550259 0.512247681618 +68 0.871890485287 0.51166588068 +SURF 0x10 +mat 9 +refs 4 +87 0.870872795582 0.508294343948 +86 0.873655378819 0.508793652058 +68 0.871890485287 0.51166588068 +69 0.870210409164 0.511364340782 +SURF 0x10 +mat 9 +refs 4 +88 0.867874324322 0.508319437504 +87 0.870872795582 0.508294343948 +69 0.870210409164 0.511364340782 +70 0.868399918079 0.511379599571 +SURF 0x10 +mat 9 +refs 4 +89 0.865021526814 0.508865892887 +88 0.867874324322 0.508319437504 +70 0.868399918079 0.511379599571 +71 0.86667740345 0.511709451675 +SURF 0x10 +mat 9 +refs 4 +90 0.862658619881 0.509867846966 +89 0.865021526814 0.508865892887 +71 0.86667740345 0.511709451675 +72 0.865250706673 0.512314498425 +SURF 0x10 +mat 9 +refs 4 +91 0.861070454121 0.511204481125 +90 0.862658619881 0.509867846966 +72 0.865250706673 0.512314498425 +73 0.864291787148 0.51312148571 +SURF 0x10 +mat 9 +refs 4 +92 0.856940448284 0.303106874228 +91 0.855215191841 0.301573067904 +73 0.856421887875 0.298713296652 +74 0.857463538647 0.29963940382 +SURF 0x10 +mat 9 +refs 4 +93 0.85911744833 0.303703099489 +92 0.856940448284 0.303106874228 +74 0.857463538647 0.29963940382 +75 0.858777999878 0.299999415874 +SURF 0x10 +mat 9 +refs 4 +94 0.861483573914 0.303289860487 +93 0.85911744833 0.303703099489 +75 0.858777999878 0.299999415874 +76 0.860206663609 0.299749881029 +SURF 0x10 +mat 9 +refs 4 +95 0.863753497601 0.301917016506 +94 0.861483573914 0.303289860487 +76 0.860206663609 0.299749881029 +77 0.861577212811 0.298920989037 +SURF 0x10 +mat 9 +refs 4 +96 0.865653395653 0.299750089645 +95 0.863753497601 0.301917016506 +77 0.861577212811 0.298920989037 +78 0.862724363804 0.297612607479 +SURF 0x10 +mat 9 +refs 4 +97 0.866954088211 0.297050505877 +96 0.865653395653 0.299750089645 +78 0.862724363804 0.297612607479 +79 0.863509714603 0.295982629061 +SURF 0x10 +mat 9 +refs 4 +99 0.867498755455 0.294143825769 +97 0.866954088211 0.297050505877 +79 0.863509714603 0.295982629061 +80 0.863838553429 0.294227600098 +SURF 0x10 +mat 9 +refs 4 +98 0.867221653461 0.291380673647 +99 0.867498755455 0.294143825769 +80 0.863838553429 0.294227600098 +81 0.863671243191 0.292559236288 +SURF 0x10 +mat 9 +refs 4 +100 0.613913059235 0.883353352547 +117 0.617100477219 0.883278489113 +98 0.615582644939 0.889807343483 +82 0.613059043884 0.8898665905 +SURF 0x10 +mat 9 +refs 4 +101 0.610215842724 0.883393526077 +100 0.613913059235 0.883353352547 +82 0.613059043884 0.8898665905 +83 0.610131800175 0.889898359776 +SURF 0x10 +mat 9 +refs 4 +102 0.606454849243 0.883394062519 +101 0.610215842724 0.883393526077 +83 0.610131800175 0.889898359776 +84 0.607154011726 0.889898836613 +SURF 0x10 +mat 9 +refs 4 +103 0.60308355093 0.883354961872 +102 0.606454849243 0.883394062519 +84 0.607154011726 0.889898836613 +85 0.604484856129 0.889867901802 +SURF 0x10 +mat 9 +refs 4 +104 0.874661326408 0.502122342587 +103 0.877479195595 0.503339290619 +85 0.875886440277 0.509757220745 +86 0.873655378819 0.508793652058 +SURF 0x10 +mat 9 +refs 4 +105 0.871146798134 0.501491725445 +104 0.874661326408 0.502122342587 +86 0.873655378819 0.508793652058 +87 0.870872795582 0.508294343948 +SURF 0x10 +mat 9 +refs 4 +106 0.867359578609 0.501523435116 +105 0.871146798134 0.501491725445 +87 0.870872795582 0.508294343948 +88 0.867874324322 0.508319437504 +SURF 0x10 +mat 9 +refs 4 +107 0.863756477833 0.502213597298 +106 0.867359578609 0.501523435116 +88 0.867874324322 0.508319437504 +89 0.865021526814 0.508865892887 +SURF 0x10 +mat 9 +refs 4 +108 0.86077195406 0.503479123116 +107 0.863756477833 0.502213597298 +89 0.865021526814 0.508865892887 +90 0.862658619881 0.509867846966 +SURF 0x10 +mat 9 +refs 4 +109 0.643906593323 0.861363470554 +108 0.640894532204 0.861432135105 +90 0.642552733421 0.854895710945 +91 0.644937515259 0.854841411114 +SURF 0x10 +mat 9 +refs 4 +110 0.647524356842 0.861324906349 +109 0.643906593323 0.861363470554 +91 0.644937515259 0.854841411114 +92 0.647801876068 0.854810774326 +SURF 0x10 +mat 9 +refs 4 +111 0.651311576366 0.861320853233 +110 0.647524356842 0.861324906349 +92 0.647801876068 0.854810774326 +93 0.650800347328 0.85480761528 +SURF 0x10 +mat 9 +refs 4 +112 0.654811382294 0.861351966858 +111 0.651311576366 0.861320853233 +93 0.650800347328 0.85480761528 +94 0.653571307659 0.854832231998 +SURF 0x10 +mat 9 +refs 4 +113 0.657601714134 0.861414432526 +112 0.654811382294 0.861351966858 +94 0.653571307659 0.854832231998 +95 0.655780553818 0.854881703854 +SURF 0x10 +mat 9 +refs 4 +114 0.870995521545 0.302540004253 +113 0.868595838547 0.305276870728 +95 0.863753497601 0.301917016506 +96 0.865653395653 0.299750089645 +SURF 0x10 +mat 9 +refs 4 +115 0.872638344765 0.299130290747 +114 0.870995521545 0.302540004253 +96 0.865653395653 0.299750089645 +97 0.866954088211 0.297050505877 +SURF 0x10 +mat 9 +refs 4 +116 0.873326301575 0.295459061861 +115 0.872638344765 0.299130290747 +97 0.866954088211 0.297050505877 +99 0.867498755455 0.294143825769 +SURF 0x10 +mat 9 +refs 4 +117 0.872976303101 0.2919690907 +116 0.873326301575 0.295459061861 +99 0.867498755455 0.294143825769 +98 0.867221653461 0.291380673647 +SURF 0x10 +mat 9 +refs 4 +118 0.878020524979 0.286961525679 +134 0.879958808422 0.291120946407 +117 0.872976303101 0.2919690907 +100 0.871630609035 0.289081335068 +SURF 0x10 +mat 9 +refs 4 +119 0.610427260399 0.878085792065 +118 0.615752577782 0.878028035164 +100 0.613913059235 0.883353352547 +101 0.610215842724 0.883393526077 +SURF 0x10 +mat 9 +refs 4 +120 0.605009973049 0.87808662653 +119 0.610427260399 0.878085792065 +101 0.610215842724 0.883393526077 +102 0.606454849243 0.883394062519 +SURF 0x10 +mat 9 +refs 4 +121 0.600154042244 0.87803030014 +120 0.605009973049 0.87808662653 +102 0.606454849243 0.883394062519 +103 0.60308355093 0.883354961872 +SURF 0x10 +mat 9 +refs 4 +122 0.877041399479 0.4952878654 +121 0.881100177765 0.497040748596 +103 0.877479195595 0.503339290619 +104 0.874661326408 0.502122342587 +SURF 0x10 +mat 9 +refs 4 +123 0.871979236603 0.494379431009 +122 0.877041399479 0.4952878654 +104 0.874661326408 0.502122342587 +105 0.871146798134 0.501491725445 +SURF 0x10 +mat 9 +refs 4 +124 0.866524279118 0.49442511797 +123 0.871979236603 0.494379431009 +105 0.871146798134 0.501491725445 +106 0.867359578609 0.501523435116 +SURF 0x10 +mat 9 +refs 4 +125 0.861334383488 0.495419293642 +124 0.866524279118 0.49442511797 +106 0.867359578609 0.501523435116 +107 0.863756477833 0.502213597298 +SURF 0x10 +mat 9 +refs 4 +126 0.857035636902 0.497242122889 +125 0.861334383488 0.495419293642 +107 0.863756477833 0.502213597298 +108 0.86077195406 0.503479123116 +SURF 0x10 +mat 9 +refs 4 +127 0.854146420956 0.49967366457 +126 0.857035636902 0.497242122889 +108 0.86077195406 0.503479123116 +109 0.858766078949 0.505167245865 +SURF 0x10 +mat 9 +refs 4 +128 0.646918237209 0.866651177406 +127 0.64170730114 0.86670678854 +109 0.643906593323 0.861363470554 +110 0.647524356842 0.861324906349 +SURF 0x10 +mat 9 +refs 4 +129 0.652373194695 0.866645395756 +128 0.646918237209 0.866651177406 +110 0.647524356842 0.861324906349 +111 0.651311576366 0.861320853233 +SURF 0x10 +mat 9 +refs 4 +130 0.869519889355 0.312786608934 +129 0.865215301514 0.313538372517 +111 0.862740337849 0.307532787323 +112 0.865728914738 0.307010859251 +SURF 0x10 +mat 9 +refs 4 +131 0.873649358749 0.310289055109 +130 0.869519889355 0.312786608934 +112 0.865728914738 0.307010859251 +113 0.868595838547 0.305276870728 +SURF 0x10 +mat 9 +refs 4 +132 0.877105772495 0.306346923113 +131 0.873649358749 0.310289055109 +113 0.868595838547 0.305276870728 +114 0.870995521545 0.302540004253 +SURF 0x10 +mat 9 +refs 4 +133 0.879472017288 0.301435709 +132 0.877105772495 0.306346923113 +114 0.870995521545 0.302540004253 +115 0.872638344765 0.299130290747 +SURF 0x10 +mat 9 +refs 4 +135 0.880462944508 0.296147793531 +133 0.879472017288 0.301435709 +115 0.872638344765 0.299130290747 +116 0.873326301575 0.295459061861 +SURF 0x10 +mat 9 +refs 4 +134 0.879958808422 0.291120946407 +135 0.880462944508 0.296147793531 +116 0.873326301575 0.295459061861 +117 0.872976303101 0.2919690907 +SURF 0x10 +mat 9 +refs 4 +191 0.615724623203 0.871018052101 +208 0.620315670967 0.870910167694 +134 0.620343565941 0.877920150757 +118 0.615752577782 0.878028035164 +SURF 0x10 +mat 9 +refs 4 +192 0.61039930582 0.871075868607 +191 0.615724623203 0.871018052101 +118 0.615752577782 0.878028035164 +119 0.610427260399 0.878085792065 +SURF 0x10 +mat 9 +refs 4 +193 0.604982018471 0.871076703072 +192 0.61039930582 0.871075868607 +119 0.610427260399 0.878085792065 +120 0.605009973049 0.87808662653 +SURF 0x10 +mat 9 +refs 4 +194 0.60012614727 0.871020376682 +193 0.604982018471 0.871076703072 +120 0.605009973049 0.87808662653 +121 0.600154042244 0.87803030014 +SURF 0x10 +mat 9 +refs 4 +195 0.596417367458 0.870913684368 +194 0.60012614727 0.871020376682 +121 0.600154042244 0.87803030014 +122 0.596445322037 0.877923667431 +SURF 0x10 +mat 9 +refs 4 +196 0.871769249439 0.488344460726 +195 0.876831412315 0.489252835512 +122 0.877041399479 0.4952878654 +123 0.871979236603 0.494379431009 +SURF 0x10 +mat 9 +refs 4 +197 0.866314291954 0.488390117884 +196 0.871769249439 0.488344460726 +123 0.871979236603 0.494379431009 +124 0.866524279118 0.49442511797 +SURF 0x10 +mat 9 +refs 4 +198 0.861124396324 0.489384233952 +197 0.866314291954 0.488390117884 +124 0.866524279118 0.49442511797 +125 0.861334383488 0.495419293642 +SURF 0x10 +mat 9 +refs 4 +199 0.856825649738 0.491207093 +198 0.861124396324 0.489384233952 +125 0.861334383488 0.495419293642 +126 0.857035636902 0.497242122889 +SURF 0x10 +mat 9 +refs 4 +200 0.641723275185 0.873717546463 +199 0.63738489151 0.873816430569 +126 0.637368857861 0.866805672646 +127 0.64170730114 0.86670678854 +SURF 0x10 +mat 9 +refs 4 +201 0.646934211254 0.873661875725 +200 0.641723275185 0.873717546463 +127 0.64170730114 0.86670678854 +128 0.646918237209 0.866651177406 +SURF 0x10 +mat 9 +refs 4 +202 0.652389228344 0.87365603447 +201 0.646934211254 0.873661875725 +128 0.646918237209 0.866651177406 +129 0.652373194695 0.866645395756 +SURF 0x10 +mat 9 +refs 4 +203 0.657430231571 0.873700916767 +202 0.652389228344 0.87365603447 +129 0.652373194695 0.866645395756 +130 0.657414257526 0.866690218449 +SURF 0x10 +mat 9 +refs 4 +204 0.661449372768 0.873790919781 +203 0.657430231571 0.873700916767 +130 0.657414257526 0.866690218449 +131 0.661433279514 0.866780221462 +SURF 0x10 +mat 9 +refs 4 +205 0.693119347095 0.873886346817 +204 0.695728957653 0.878255844116 +131 0.690041363239 0.879962325096 +132 0.687431931496 0.875592768192 +SURF 0x10 +mat 9 +refs 4 +206 0.691297769547 0.868756532669 +205 0.693119347095 0.873886346817 +132 0.687431931496 0.875592768192 +133 0.685610234737 0.870463013649 +SURF 0x10 +mat 9 +refs 4 +207 0.690483748913 0.86348515749 +206 0.691297769547 0.868756532669 +133 0.685610234737 0.870463013649 +135 0.684796214104 0.86519163847 +SURF 0x10 +mat 9 +refs 4 +208 0.690775454044 0.858708024025 +207 0.690483748913 0.86348515749 +135 0.684796214104 0.86519163847 +134 0.68508797884 0.860414505005 +SURF 0x10 +mat 9 +refs 3 +153 0.74771040678 0.871865749359 +137 0.74692261219 0.872515201569 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +137 0.74692261219 0.872515201569 +138 0.746026396751 0.872772812843 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +138 0.746026396751 0.872772812843 +139 0.745130002499 0.872607529163 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +139 0.745130002499 0.872607529163 +140 0.744341433048 0.872039198875 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +140 0.744341433048 0.872039198875 +141 0.743755817413 0.87113648653 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +141 0.743755817413 0.87113648653 +142 0.743443846703 0.870008230209 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +142 0.743443846703 0.870008230209 +143 0.743443071842 0.868790447712 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +143 0.743443071842 0.868790447712 +144 0.743753671646 0.867630124092 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +144 0.743753671646 0.867630124092 +145 0.744338095188 0.866667151451 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +145 0.744338095188 0.866667151451 +146 0.745125949383 0.866017699242 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +146 0.745125949383 0.866017699242 +147 0.746022105217 0.865760087967 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +147 0.746022105217 0.865760087967 +148 0.746918559074 0.865925371647 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +148 0.746918559074 0.865925371647 +149 0.74770706892 0.86649364233 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +149 0.74770706892 0.86649364233 +150 0.748292684555 0.86739641428 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +150 0.748292684555 0.86739641428 +151 0.748604655266 0.868524670601 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +151 0.748604655266 0.868524670601 +152 0.748605430126 0.869742393494 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +152 0.748605430126 0.869742393494 +154 0.748294830322 0.870902776718 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 3 +154 0.748294830322 0.870902776718 +153 0.74771040678 0.871865749359 +136 0.746024250984 0.8692663908 +SURF 0x10 +mat 9 +refs 4 +172 0.44936349988 0.0593287311494 +155 0.449340254068 0.0579855777323 +137 0.451236635447 0.0575686842203 +153 0.451254457235 0.0585942976177 +SURF 0x10 +mat 9 +refs 4 +155 0.449340254068 0.0579855777323 +156 0.44933283329 0.0564276278019 +138 0.451231062412 0.0563791170716 +137 0.451236635447 0.0575686842203 +SURF 0x10 +mat 9 +refs 4 +156 0.44933283329 0.0564276278019 +157 0.449342370033 0.0548429004848 +139 0.451238274574 0.0551690794528 +138 0.451231062412 0.0563791170716 +SURF 0x10 +mat 9 +refs 4 +157 0.449342370033 0.0548429004848 +158 0.449367552996 0.0534225702286 +140 0.451257526875 0.0540845319629 +139 0.451238274574 0.0551690794528 +SURF 0x10 +mat 9 +refs 4 +158 0.742578029633 0.872819125652 +159 0.741811096668 0.871636927128 +141 0.743755817413 0.87113648653 +140 0.744341433048 0.872039198875 +SURF 0x10 +mat 9 +refs 4 +159 0.741811096668 0.871636927128 +160 0.741402506828 0.870159268379 +142 0.743443846703 0.870008230209 +141 0.743755817413 0.87113648653 +SURF 0x10 +mat 9 +refs 4 +160 0.741402506828 0.870159268379 +161 0.741401553154 0.868564426899 +143 0.743443071842 0.868790447712 +142 0.743443846703 0.870008230209 +SURF 0x10 +mat 9 +refs 4 +161 0.741401553154 0.868564426899 +162 0.74180829525 0.86704480648 +144 0.743753671646 0.867630124092 +143 0.743443071842 0.868790447712 +SURF 0x10 +mat 9 +refs 4 +162 0.74180829525 0.86704480648 +163 0.742573678493 0.865783691406 +145 0.744338095188 0.866667151451 +144 0.743753671646 0.867630124092 +SURF 0x10 +mat 9 +refs 4 +163 0.456684023142 0.0593287311494 +164 0.456662863493 0.0580594353378 +146 0.458556056023 0.0575664825737 +145 0.458572208881 0.0585355870426 +SURF 0x10 +mat 9 +refs 4 +164 0.456662863493 0.0580594353378 +165 0.456655949354 0.0565350018442 +147 0.458550781012 0.0564024560153 +146 0.458556056023 0.0575664825737 +SURF 0x10 +mat 9 +refs 4 +165 0.456655949354 0.0565350018442 +166 0.456664085388 0.0549392588437 +148 0.458556979895 0.0551839545369 +147 0.458550781012 0.0564024560153 +SURF 0x10 +mat 9 +refs 4 +166 0.456664085388 0.0549392588437 +167 0.456686198711 0.0534647218883 +149 0.458573877811 0.0540580973029 +148 0.458556979895 0.0551839545369 +SURF 0x10 +mat 9 +refs 4 +167 0.706732451916 0.869408428669 +168 0.705830693245 0.868506789207 +150 0.707615196705 0.867314577103 +149 0.708303749561 0.86800301075 +SURF 0x10 +mat 9 +refs 4 +168 0.705830693245 0.868506789207 +169 0.705067276955 0.8672285676 +151 0.707032322884 0.86633849144 +150 0.707615196705 0.867314577103 +SURF 0x10 +mat 9 +refs 4 +169 0.705067276955 0.8672285676 +170 0.70453441143 0.865727901459 +152 0.706625461578 0.865192711353 +151 0.707032322884 0.86633849144 +SURF 0x10 +mat 9 +refs 4 +170 0.70453441143 0.865727901459 +171 0.704296350479 0.864185869694 +154 0.706443607807 0.864015221596 +152 0.706625461578 0.865192711353 +SURF 0x10 +mat 9 +refs 4 +171 0.704296350479 0.864185869694 +172 0.704381585121 0.862788379192 +153 0.706508815289 0.862948179245 +154 0.706443607807 0.864015221596 +SURF 0x10 +mat 9 +refs 4 +189 0.696152448654 0.858169138432 +173 0.697387933731 0.85480761528 +155 0.704780101776 0.861704051495 +172 0.704381585121 0.862788379192 +SURF 0x10 +mat 9 +refs 4 +173 0.746150135994 0.882233500481 +174 0.742511689663 0.883279442787 +156 0.744784772396 0.873779892921 +155 0.745958447456 0.873442471027 +SURF 0x10 +mat 9 +refs 4 +174 0.742511689663 0.883279442787 +175 0.738872170448 0.882608354092 +157 0.743610739708 0.873563408852 +156 0.744784772396 0.873779892921 +SURF 0x10 +mat 9 +refs 4 +175 0.738872170448 0.882608354092 +176 0.735670566559 0.880301117897 +158 0.742578029633 0.872819125652 +157 0.743610739708 0.873563408852 +SURF 0x10 +mat 9 +refs 4 +176 0.735670566559 0.880301117897 +177 0.733293056488 0.876635968685 +159 0.741811096668 0.871636927128 +158 0.742578029633 0.872819125652 +SURF 0x10 +mat 9 +refs 4 +177 0.733293056488 0.876635968685 +178 0.732026338577 0.87205517292 +160 0.741402506828 0.870159268379 +159 0.741811096668 0.871636927128 +SURF 0x10 +mat 9 +refs 4 +178 0.732026338577 0.87205517292 +179 0.73202329874 0.867111086845 +161 0.741401553154 0.868564426899 +160 0.741402506828 0.870159268379 +SURF 0x10 +mat 9 +refs 4 +179 0.73202329874 0.867111086845 +180 0.733284235001 0.862400114536 +162 0.74180829525 0.86704480648 +161 0.741401553154 0.868564426899 +SURF 0x10 +mat 9 +refs 4 +180 0.733284235001 0.862400114536 +181 0.735657095909 0.858490407467 +163 0.742573678493 0.865783691406 +162 0.74180829525 0.86704480648 +SURF 0x10 +mat 9 +refs 4 +181 0.735657095909 0.858490407467 +182 0.738855659962 0.855853497982 +164 0.743605434895 0.864933133125 +163 0.742573678493 0.865783691406 +SURF 0x10 +mat 9 +refs 4 +182 0.738855659962 0.855853497982 +183 0.742494106293 0.85480761528 +165 0.744779109955 0.864595711231 +164 0.743605434895 0.864933133125 +SURF 0x10 +mat 9 +refs 4 +183 0.742494106293 0.85480761528 +184 0.746133625507 0.855478703976 +166 0.745953083038 0.864812195301 +165 0.744779109955 0.864595711231 +SURF 0x10 +mat 9 +refs 4 +184 0.706327736378 0.879982411861 +185 0.703440248966 0.878691792488 +167 0.706732451916 0.869408428669 +166 0.707663834095 0.869824767113 +SURF 0x10 +mat 9 +refs 4 +185 0.703440248966 0.878691792488 +186 0.700644612312 0.875896692276 +168 0.705830693245 0.868506789207 +167 0.706732451916 0.869408428669 +SURF 0x10 +mat 9 +refs 4 +186 0.700644612312 0.875896692276 +187 0.698278069496 0.871934056282 +169 0.705067276955 0.8672285676 +168 0.705830693245 0.868506789207 +SURF 0x10 +mat 9 +refs 4 +187 0.698278069496 0.871934056282 +188 0.696626067162 0.867281913757 +170 0.70453441143 0.865727901459 +169 0.705067276955 0.8672285676 +SURF 0x10 +mat 9 +refs 4 +188 0.696626067162 0.867281913757 +190 0.695887863636 0.862501382828 +171 0.704296350479 0.864185869694 +170 0.70453441143 0.865727901459 +SURF 0x10 +mat 9 +refs 4 +190 0.695887863636 0.862501382828 +189 0.696152448654 0.858169138432 +172 0.704381585121 0.862788379192 +171 0.704296350479 0.864185869694 +SURF 0x10 +mat 9 +refs 4 +208 0.620315670967 0.870910167694 +191 0.615724623203 0.871018052101 +173 0.61513531208 0.865370869637 +189 0.619298815727 0.86527299881 +SURF 0x10 +mat 9 +refs 4 +191 0.615724623203 0.871018052101 +192 0.61039930582 0.871075868607 +174 0.610305905342 0.865423262119 +173 0.61513531208 0.865370869637 +SURF 0x10 +mat 9 +refs 4 +192 0.61039930582 0.871075868607 +193 0.604982018471 0.871076703072 +175 0.605393052101 0.86542403698 +174 0.610305905342 0.865423262119 +SURF 0x10 +mat 9 +refs 4 +193 0.604982018471 0.871076703072 +194 0.60012614727 0.871020376682 +176 0.600989341736 0.865372955799 +175 0.605393052101 0.86542403698 +SURF 0x10 +mat 9 +refs 4 +194 0.60012614727 0.871020376682 +195 0.596417367458 0.870913684368 +177 0.59762597084 0.865276277065 +176 0.600989341736 0.865372955799 +SURF 0x10 +mat 9 +refs 4 +195 0.728611707687 0.877179145813 +196 0.727214932442 0.872127950191 +178 0.732026338577 0.87205517292 +177 0.733293056488 0.876635968685 +SURF 0x10 +mat 9 +refs 4 +196 0.727214932442 0.872127950191 +197 0.727211594582 0.866676211357 +179 0.73202329874 0.867111086845 +178 0.732026338577 0.87205517292 +SURF 0x10 +mat 9 +refs 4 +197 0.727211594582 0.866676211357 +198 0.72860199213 0.861481428146 +180 0.733284235001 0.862400114536 +179 0.73202329874 0.867111086845 +SURF 0x10 +mat 9 +refs 4 +198 0.72860199213 0.861481428146 +199 0.731218516827 0.857170283794 +181 0.735657095909 0.858490407467 +180 0.733284235001 0.862400114536 +SURF 0x10 +mat 9 +refs 4 +199 0.63738489151 0.873816430569 +200 0.641723275185 0.873717546463 +182 0.642409741879 0.879360020161 +181 0.638475298882 0.879449665546 +SURF 0x10 +mat 9 +refs 4 +200 0.641723275185 0.873717546463 +201 0.646934211254 0.873661875725 +183 0.647135436535 0.879309535027 +182 0.642409741879 0.879360020161 +SURF 0x10 +mat 9 +refs 4 +201 0.646934211254 0.873661875725 +202 0.652389228344 0.87365603447 +184 0.652082443237 0.879304289818 +183 0.647135436535 0.879309535027 +SURF 0x10 +mat 9 +refs 4 +202 0.652389228344 0.87365603447 +203 0.657430231571 0.873700916767 +185 0.656654119492 0.879344940186 +184 0.652082443237 0.879304289818 +SURF 0x10 +mat 9 +refs 4 +203 0.657430231571 0.873700916767 +204 0.661449372768 0.873790919781 +186 0.660298883915 0.879426538944 +185 0.656654119492 0.879344940186 +SURF 0x10 +mat 9 +refs 4 +204 0.695728957653 0.878255844116 +205 0.693119347095 0.873886346817 +187 0.698278069496 0.871934056282 +186 0.700644612312 0.875896692276 +SURF 0x10 +mat 9 +refs 4 +205 0.693119347095 0.873886346817 +206 0.691297769547 0.868756532669 +188 0.696626067162 0.867281913757 +187 0.698278069496 0.871934056282 +SURF 0x10 +mat 9 +refs 4 +206 0.691297769547 0.868756532669 +207 0.690483748913 0.86348515749 +190 0.695887863636 0.862501382828 +188 0.696626067162 0.867281913757 +SURF 0x10 +mat 9 +refs 4 +207 0.690483748913 0.86348515749 +208 0.690775454044 0.858708024025 +189 0.696152448654 0.858169138432 +190 0.695887863636 0.862501382828 +SURF 0x10 +mat 9 +refs 4 +215 0.537978887558 0.855627536774 +220 0.538988769054 0.852320551872 +209 0.553431689739 0.856381475925 +214 0.553083598614 0.859874486923 +SURF 0x10 +mat 9 +refs 4 +219 0.620153665543 0.023818552494 +210 0.620096206665 0.00435638427734 +209 0.623179018497 0.00426651071757 +220 0.623237788677 0.0241863131523 +SURF 0x10 +mat 9 +refs 4 +219 0.620153665543 0.023818552494 +218 0.617159724236 0.0242166090757 +211 0.617100954056 0.00429945532233 +210 0.620096206665 0.00435638427734 +SURF 0x10 +mat 9 +refs 4 +217 0.662461519241 0.694200098515 +212 0.677664875984 0.689959764481 +211 0.678012788296 0.693452775478 +218 0.663475632668 0.697507321835 +SURF 0x10 +mat 9 +refs 4 +216 0.876336574554 0.911981463432 +213 0.876440525055 0.93304681778 +212 0.873458981514 0.933145403862 +217 0.873357236385 0.91253298521 +SURF 0x10 +mat 9 +refs 4 +215 0.879433870316 0.912468492985 +214 0.879535615444 0.933083474636 +213 0.876440525055 0.93304681778 +216 0.876336574554 0.911981463432 +SURF 0x10 +mat 9 +refs 4 +226 0.879506468773 0.893468797207 +215 0.879433870316 0.912468492985 +216 0.876336574554 0.911981463432 +225 0.876410782337 0.892566740513 +SURF 0x10 +mat 9 +refs 4 +225 0.876410782337 0.892566740513 +216 0.876336574554 0.911981463432 +217 0.873357236385 0.91253298521 +224 0.873429894447 0.893535673618 +SURF 0x10 +mat 9 +refs 4 +224 0.648829340935 0.703584551811 +217 0.662461519241 0.694200098515 +218 0.663475632668 0.697507321835 +223 0.650440812111 0.706480562687 +SURF 0x10 +mat 9 +refs 4 +222 0.620071589947 0.0421676337719 +223 0.617075741291 0.0429948121309 +218 0.617159724236 0.0242166090757 +219 0.620153665543 0.023818552494 +SURF 0x10 +mat 9 +refs 4 +222 0.620071589947 0.0421676337719 +219 0.620153665543 0.023818552494 +220 0.623237788677 0.0241863131523 +221 0.623153746128 0.0429669655859 +SURF 0x10 +mat 9 +refs 4 +226 0.524438917637 0.846236169338 +221 0.526041984558 0.843340694904 +220 0.538988769054 0.852320551872 +215 0.537978887558 0.855627536774 +SURF 0x10 +mat 9 +refs 4 +227 0.513386428356 0.832340478897 +232 0.515473723412 0.830053806305 +221 0.526041984558 0.843340694904 +226 0.524438917637 0.846236169338 +SURF 0x10 +mat 9 +refs 4 +231 0.619855582714 0.0581535175443 +222 0.620071589947 0.0421676337719 +221 0.623153746128 0.0429669655859 +232 0.622932732105 0.0593287311494 +SURF 0x10 +mat 9 +refs 4 +231 0.642845153809 0.720704317093 +230 0.639796614647 0.719761073589 +223 0.650440812111 0.706480562687 +222 0.653246104717 0.707727253437 +SURF 0x10 +mat 9 +refs 4 +229 0.637697398663 0.717473685741 +224 0.648829340935 0.703584551811 +223 0.650440812111 0.706480562687 +230 0.639796614647 0.719761073589 +SURF 0x10 +mat 9 +refs 4 +228 0.208453431726 0.89023244381 +225 0.199834808707 0.903686881065 +224 0.196771487594 0.902141094208 +229 0.205204755068 0.888975918293 +SURF 0x10 +mat 9 +refs 4 +227 0.513386428356 0.832340478897 +226 0.524438917637 0.846236169338 +225 0.521621227264 0.84748339653 +228 0.510327279568 0.833284199238 +SURF 0x10 +mat 9 +refs 4 +238 0.505574584007 0.814887464046 +227 0.513386428356 0.832340478897 +228 0.510327279568 0.833284199238 +237 0.502344846725 0.815449893475 +SURF 0x10 +mat 9 +refs 4 +237 0.215062379837 0.872939288616 +228 0.208453431726 0.89023244381 +229 0.205204755068 0.888975918293 +236 0.211671561003 0.872054576874 +SURF 0x10 +mat 9 +refs 4 +236 0.629824280739 0.734920859337 +229 0.637697398663 0.717473685741 +230 0.639796614647 0.719761073589 +235 0.632268488407 0.736443758011 +SURF 0x10 +mat 9 +refs 4 +234 0.635489046574 0.737005829811 +235 0.632268488407 0.736443758011 +230 0.639796614647 0.719761073589 +231 0.642845153809 0.720704317093 +SURF 0x10 +mat 9 +refs 4 +234 0.0823292806745 0.778640449047 +231 0.0759974643588 0.763190746307 +232 0.0792310014367 0.761948406696 +233 0.0857117250562 0.777761459351 +SURF 0x10 +mat 9 +refs 4 +238 0.505574584007 0.814887464046 +233 0.508004188538 0.813365459442 +232 0.515473723412 0.830053806305 +227 0.513386428356 0.832340478897 +SURF 0x10 +mat 9 +refs 4 +239 0.501535832882 0.795066416264 +244 0.504142343998 0.794412851334 +233 0.508004188538 0.813365459442 +238 0.505574584007 0.814887464046 +SURF 0x10 +mat 9 +refs 4 +243 0.0863109156489 0.796659946442 +234 0.0823292806745 0.778640449047 +233 0.0857117250562 0.777761459351 +244 0.0897869765759 0.796204686165 +SURF 0x10 +mat 9 +refs 4 +243 0.63167899847 0.755520880222 +242 0.628369450569 0.755391657352 +235 0.632268488407 0.736443758011 +234 0.635489046574 0.737005829811 +SURF 0x10 +mat 9 +refs 4 +241 0.625746548176 0.754737079144 +236 0.629824280739 0.734920859337 +235 0.632268488407 0.736443758011 +242 0.628369450569 0.755391657352 +SURF 0x10 +mat 9 +refs 4 +240 0.219211339951 0.852985799313 +237 0.215062379837 0.872939288616 +236 0.211671561003 0.872054576874 +241 0.215731441975 0.852530121803 +SURF 0x10 +mat 9 +refs 4 +239 0.501535832882 0.795066416264 +238 0.505574584007 0.814887464046 +237 0.502344846725 0.815449893475 +240 0.498217821121 0.795195937157 +SURF 0x10 +mat 9 +refs 4 +250 0.501545250416 0.774228215218 +239 0.501535832882 0.795066416264 +240 0.498217821121 0.795195937157 +249 0.498227536678 0.773902535439 +SURF 0x10 +mat 9 +refs 4 +249 0.220617637038 0.831731975079 +240 0.219211339951 0.852985799313 +241 0.215731441975 0.852530121803 +248 0.217107415199 0.831733226776 +SURF 0x10 +mat 9 +refs 4 +248 0.625742018223 0.775571942329 +241 0.625746548176 0.754737079144 +242 0.628369450569 0.755391657352 +247 0.628365159035 0.775313615799 +SURF 0x10 +mat 9 +refs 4 +246 0.631674826145 0.774987637997 +247 0.628365159035 0.775313615799 +242 0.628369450569 0.755391657352 +243 0.63167899847 0.755520880222 +SURF 0x10 +mat 9 +refs 4 +246 0.0876709744334 0.81602114439 +243 0.0863109156489 0.796659946442 +244 0.0897869765759 0.796204686165 +245 0.0911790877581 0.816021203995 +SURF 0x10 +mat 9 +refs 4 +250 0.501545250416 0.774228215218 +245 0.504151403904 0.774487555027 +244 0.504142343998 0.794412851334 +239 0.501535832882 0.795066416264 +SURF 0x10 +mat 9 +refs 4 +251 0.505602419376 0.753792822361 +256 0.508030772209 0.754947543144 +245 0.504151403904 0.774487555027 +250 0.501545250416 0.774228215218 +SURF 0x10 +mat 9 +refs 4 +255 0.0863169059157 0.83540469408 +246 0.0876709744334 0.81602114439 +245 0.0911790877581 0.816021203995 +256 0.0897930860519 0.835860610008 +SURF 0x10 +mat 9 +refs 4 +255 0.635476708412 0.79407954216 +254 0.632255911827 0.794851899147 +247 0.628365159035 0.775313615799 +246 0.631674826145 0.774987637997 +SURF 0x10 +mat 9 +refs 4 +253 0.629811108112 0.796005606651 +248 0.625742018223 0.775571942329 +247 0.628365159035 0.775313615799 +254 0.632255911827 0.794851899147 +SURF 0x10 +mat 9 +refs 4 +252 0.219185367227 0.810626089573 +249 0.220617637038 0.831731975079 +248 0.217107415199 0.831733226776 +253 0.215705990791 0.811081171036 +SURF 0x10 +mat 9 +refs 4 +251 0.505602419376 0.753792822361 +250 0.501545250416 0.774228215218 +249 0.498227536678 0.773902535439 +252 0.502373278141 0.753020763397 +SURF 0x10 +mat 9 +refs 4 +262 0.513430655003 0.735153019428 +251 0.505602419376 0.753792822361 +252 0.502373278141 0.753020763397 +261 0.510372519493 0.733973801136 +SURF 0x10 +mat 9 +refs 4 +261 0.215012177825 0.791106522083 +252 0.219185367227 0.810626089573 +253 0.215705990791 0.811081171036 +260 0.21162250638 0.791981220245 +SURF 0x10 +mat 9 +refs 4 +260 0.637676477432 0.814645528793 +253 0.629811108112 0.796005606651 +254 0.632255911827 0.794851899147 +259 0.639776647091 0.812675058842 +SURF 0x10 +mat 9 +refs 4 +258 0.64282554388 0.811495482922 +259 0.639776647091 0.812675058842 +254 0.632255911827 0.794851899147 +255 0.635476708412 0.79407954216 +SURF 0x10 +mat 9 +refs 4 +258 0.0823407843709 0.85348957777 +255 0.0863169059157 0.83540469408 +256 0.0897930860519 0.835860610008 +257 0.0857235565782 0.854370772839 +SURF 0x10 +mat 9 +refs 4 +262 0.513430655003 0.735153019428 +257 0.515516102314 0.73712438345 +256 0.508030772209 0.754947543144 +251 0.505602419376 0.753792822361 +SURF 0x10 +mat 9 +refs 4 +263 0.524496614933 0.7195789814 +268 0.526097178459 0.722232699394 +257 0.515516102314 0.73712438345 +262 0.513430655003 0.735153019428 +SURF 0x10 +mat 9 +refs 4 +267 0.0760138183832 0.86904335022 +258 0.0823407843709 0.85348957777 +257 0.0857235565782 0.854370772839 +268 0.0792477577925 0.870290338993 +SURF 0x10 +mat 9 +refs 4 +267 0.653220593929 0.82604855299 +266 0.650414705276 0.827568411827 +259 0.639776647091 0.812675058842 +258 0.64282554388 0.811495482922 +SURF 0x10 +mat 9 +refs 4 +265 0.648802042007 0.830221414566 +260 0.637676477432 0.814645528793 +259 0.639776647091 0.812675058842 +266 0.650414705276 0.827568411827 +SURF 0x10 +mat 9 +refs 4 +264 0.208382353187 0.774503469467 +261 0.215012177825 0.791106522083 +260 0.21162250638 0.791981220245 +265 0.205135241151 0.775735139847 +SURF 0x10 +mat 9 +refs 4 +263 0.524496614933 0.7195789814 +262 0.513430655003 0.735153019428 +261 0.510372519493 0.733973801136 +264 0.521680176258 0.718059539795 +SURF 0x10 +mat 9 +refs 4 +274 0.538046061993 0.708132088184 +263 0.524496614933 0.7195789814 +264 0.521680176258 0.718059539795 +273 0.535525619984 0.706362605095 +SURF 0x10 +mat 9 +refs 4 +273 0.199747949839 0.761948406696 +264 0.208382353187 0.774503469467 +265 0.205135241151 0.775735139847 +272 0.196686342359 0.763450026512 +SURF 0x10 +mat 9 +refs 4 +272 0.662429690361 0.841671824455 +265 0.648802042007 0.830221414566 +266 0.650414705276 0.827568411827 +271 0.663445234299 0.838517069817 +SURF 0x10 +mat 9 +refs 4 +270 0.665953397751 0.83674710989 +271 0.663445234299 0.838517069817 +266 0.650414705276 0.827568411827 +267 0.653220593929 0.82604855299 +SURF 0x10 +mat 9 +refs 4 +270 0.871070206165 0.028572877869 +267 0.870713710785 0.0126207293943 +268 0.873787522316 0.0114225475118 +269 0.874152362347 0.0277498327196 +SURF 0x10 +mat 9 +refs 4 +274 0.538046061993 0.708132088184 +269 0.539053022861 0.71128731966 +268 0.526097178459 0.722232699394 +263 0.524496614933 0.7195789814 +SURF 0x10 +mat 9 +refs 4 +275 0.553155720234 0.701592385769 +280 0.553500652313 0.705034196377 +269 0.539053022861 0.71128731966 +274 0.538046061993 0.708132088184 +SURF 0x10 +mat 9 +refs 4 +279 0.871292233467 0.0469020083547 +270 0.871070206165 0.028572877869 +269 0.874152362347 0.0277498327196 +280 0.874379575253 0.0465099439025 +SURF 0x10 +mat 9 +refs 4 +279 0.871292233467 0.0469020083547 +278 0.868301987648 0.0465178638697 +271 0.868074834347 0.0277601797134 +270 0.871070206165 0.028572877869 +SURF 0x10 +mat 9 +refs 4 +277 0.677630722523 0.848216354847 +272 0.662429690361 0.841671824455 +271 0.663445234299 0.838517069817 +278 0.677980184555 0.844774842262 +SURF 0x10 +mat 9 +refs 4 +276 0.859280467033 0.0849156230688 +273 0.859566092491 0.104302473366 +272 0.85656774044 0.103366412222 +277 0.856288313866 0.0843963846564 +SURF 0x10 +mat 9 +refs 4 +275 0.862365961075 0.0843855366111 +274 0.862645447254 0.103358015418 +273 0.859566092491 0.104302473366 +276 0.859280467033 0.0849156230688 +SURF 0x10 +mat 9 +refs 4 +286 0.862222552299 0.0637809336185 +275 0.862365961075 0.0843855366111 +276 0.859280467033 0.0849156230688 +285 0.859133958817 0.0638609305024 +SURF 0x10 +mat 9 +refs 4 +285 0.859133958817 0.0638609305024 +276 0.859280467033 0.0849156230688 +277 0.856288313866 0.0843963846564 +284 0.856144964695 0.0637943968177 +SURF 0x10 +mat 9 +refs 4 +284 0.693369209766 0.849409103394 +277 0.677630722523 0.848216354847 +278 0.677980184555 0.844774842262 +283 0.693028986454 0.845915317535 +SURF 0x10 +mat 9 +refs 4 +282 0.871364533901 0.0663589760661 +283 0.868376076221 0.0664297938347 +278 0.868301987648 0.0465178638697 +279 0.871292233467 0.0469020083547 +SURF 0x10 +mat 9 +refs 4 +282 0.871364533901 0.0663589760661 +279 0.871292233467 0.0469020083547 +280 0.874379575253 0.0465099439025 +281 0.874453663826 0.0664245933294 +SURF 0x10 +mat 9 +refs 4 +286 0.568795800209 0.700405597687 +281 0.568455517292 0.703899383545 +280 0.553500652313 0.705034196377 +275 0.553155720234 0.701592385769 +SURF 0x10 +mat 9 +refs 4 +287 0.583900511265 0.704652607441 +292 0.582898437977 0.707960307598 +281 0.568455517292 0.703899383545 +286 0.568795800209 0.700405597687 +SURF 0x10 +mat 9 +refs 4 +291 0.871282279491 0.085618019104 +282 0.871364533901 0.0663589760661 +281 0.874453663826 0.0664245933294 +292 0.874369442463 0.0861364603043 +SURF 0x10 +mat 9 +refs 4 +291 0.871282279491 0.085618019104 +290 0.868291854858 0.0861390605569 +283 0.868376076221 0.0664297938347 +282 0.871364533901 0.0663589760661 +SURF 0x10 +mat 9 +refs 4 +289 0.708572566509 0.84516876936 +284 0.693369209766 0.849409103394 +283 0.693028986454 0.845915317535 +290 0.707566142082 0.841860771179 +SURF 0x10 +mat 9 +refs 4 +288 0.859136462212 0.0425732955337 +285 0.859133958817 0.0638609305024 +284 0.856144964695 0.0637943968177 +289 0.856147408485 0.0429643988609 +SURF 0x10 +mat 9 +refs 4 +287 0.86222499609 0.042948346585 +286 0.862222552299 0.0637809336185 +285 0.859133958817 0.0638609305024 +288 0.859136462212 0.0425732955337 +SURF 0x10 +mat 9 +refs 4 +298 0.862373113632 0.0233074966818 +287 0.86222499609 0.042948346585 +288 0.859136462212 0.0425732955337 +297 0.8592877388 0.0225034113973 +SURF 0x10 +mat 9 +refs 4 +297 0.8592877388 0.0225034113973 +288 0.859136462212 0.0425732955337 +289 0.856147408485 0.0429643988609 +296 0.856295466423 0.0233260225505 +SURF 0x10 +mat 9 +refs 4 +296 0.722204685211 0.835784256458 +289 0.708572566509 0.84516876936 +290 0.707566142082 0.841860771179 +295 0.720600962639 0.832887470722 +SURF 0x10 +mat 9 +refs 4 +294 0.871051132679 0.103366464376 +295 0.868055343628 0.104302480817 +290 0.868291854858 0.0861390605569 +291 0.871282279491 0.085618019104 +SURF 0x10 +mat 9 +refs 4 +294 0.871051132679 0.103366464376 +291 0.871282279491 0.085618019104 +292 0.874369442463 0.0861364603043 +293 0.874132812023 0.104302279651 +SURF 0x10 +mat 9 +refs 4 +298 0.597440481186 0.714043974876 +293 0.595845162868 0.716940164566 +292 0.582898437977 0.707960307598 +287 0.583900511265 0.704652607441 +SURF 0x10 +mat 9 +refs 4 +299 0.608492970467 0.727939605713 +304 0.606413424015 0.730227053165 +293 0.595845162868 0.716940164566 +298 0.597440481186 0.714043974876 +SURF 0x10 +mat 9 +refs 4 +303 0.603352189064 0.73117774725 +294 0.59302675724 0.718196153641 +293 0.595845162868 0.716940164566 +304 0.606413424015 0.730227053165 +SURF 0x10 +mat 9 +refs 4 +303 0.0626400113106 0.775786340237 +302 0.0593899600208 0.774536669254 +295 0.0674536526203 0.761948406696 +294 0.070519477129 0.76348567009 +SURF 0x10 +mat 9 +refs 4 +301 0.733336627483 0.821895182133 +296 0.722204685211 0.835784256458 +295 0.720600962639 0.832887470722 +302 0.731245100498 0.819607019424 +SURF 0x10 +mat 9 +refs 4 +300 0.736387372017 0.82284539938 +297 0.725010812283 0.837039709091 +296 0.722204685211 0.835784256458 +301 0.733336627483 0.821895182133 +SURF 0x10 +mat 9 +refs 4 +299 0.862656831741 0.00619684299454 +298 0.862373113632 0.0233074966818 +297 0.8592877388 0.0225034113973 +300 0.859577715397 0.00501904403791 +SURF 0x10 +mat 9 +refs 4 +310 0.184510216117 0.859956860542 +299 0.191287890077 0.876494467258 +300 0.188053175807 0.877729535103 +309 0.18112744391 0.860830724239 +SURF 0x10 +mat 9 +refs 4 +309 0.74443346262 0.805014908314 +300 0.736387372017 0.82284539938 +301 0.733336627483 0.821895182133 +308 0.741209745407 0.804448008537 +SURF 0x10 +mat 9 +refs 4 +308 0.741209745407 0.804448008537 +301 0.733336627483 0.821895182133 +302 0.731245100498 0.819607019424 +307 0.738773226738 0.802924335003 +SURF 0x10 +mat 9 +refs 4 +306 0.0565977916121 0.791596591473 +307 0.0532064065337 0.790716588497 +302 0.0593899600208 0.774536669254 +303 0.0626400113106 0.775786340237 +SURF 0x10 +mat 9 +refs 4 +306 0.610650122166 0.747482717037 +303 0.603352189064 0.73117774725 +304 0.606413424015 0.730227053165 +305 0.613883018494 0.746915459633 +SURF 0x10 +mat 9 +refs 4 +310 0.616304814816 0.745392680168 +305 0.613883018494 0.746915459633 +304 0.606413424015 0.730227053165 +299 0.608492970467 0.727939605713 +SURF 0x10 +mat 9 +refs 4 +311 0.620343625546 0.765213727951 +316 0.617744803429 0.765868067741 +305 0.613883018494 0.746915459633 +310 0.616304814816 0.745392680168 +SURF 0x10 +mat 9 +refs 4 +315 0.614423215389 0.765999853611 +306 0.610650122166 0.747482717037 +305 0.613883018494 0.746915459633 +316 0.617744803429 0.765868067741 +SURF 0x10 +mat 9 +refs 4 +315 0.0528045892715 0.809838950634 +314 0.049324542284 0.809385478497 +307 0.0532064065337 0.790716588497 +306 0.0565977916121 0.791596591473 +SURF 0x10 +mat 9 +refs 4 +313 0.745287537575 0.784631788731 +308 0.741209745407 0.804448008537 +307 0.738773226738 0.802924335003 +314 0.742672324181 0.783976435661 +SURF 0x10 +mat 9 +refs 4 +312 0.748600840569 0.784763216972 +309 0.74443346262 0.805014908314 +308 0.741209745407 0.804448008537 +313 0.745287537575 0.784631788731 +SURF 0x10 +mat 9 +refs 4 +311 0.180248185992 0.840668559074 +310 0.184510216117 0.859956860542 +309 0.18112744391 0.860830724239 +312 0.176772356033 0.841121077538 +SURF 0x10 +mat 9 +refs 4 +322 0.178792312741 0.819944024086 +311 0.180248185992 0.840668559074 +312 0.176772356033 0.841121077538 +321 0.175284698606 0.819943904877 +SURF 0x10 +mat 9 +refs 4 +321 0.748605430126 0.76347053051 +312 0.748600840569 0.784763216972 +313 0.745287537575 0.784631788731 +320 0.745292007923 0.76379686594 +SURF 0x10 +mat 9 +refs 4 +320 0.745292007923 0.76379686594 +313 0.745287537575 0.784631788731 +314 0.742672324181 0.783976435661 +319 0.742676615715 0.764054477215 +SURF 0x10 +mat 9 +refs 4 +318 0.0515189096332 0.82927018404 +319 0.0480088405311 0.82927107811 +314 0.049324542284 0.809385478497 +315 0.0528045892715 0.809838950634 +SURF 0x10 +mat 9 +refs 4 +318 0.614414334297 0.785467267036 +315 0.614423215389 0.765999853611 +316 0.617744803429 0.765868067741 +317 0.617735743523 0.785793304443 +SURF 0x10 +mat 9 +refs 4 +322 0.620334088802 0.786051988602 +317 0.617735743523 0.785793304443 +316 0.617744803429 0.765868067741 +311 0.620343625546 0.765213727951 +SURF 0x10 +mat 9 +refs 4 +323 0.616276979446 0.806487321854 +328 0.613856375217 0.805333375931 +317 0.617735743523 0.785793304443 +322 0.620334088802 0.786051988602 +SURF 0x10 +mat 9 +refs 4 +327 0.610624074936 0.804558336735 +318 0.614414334297 0.785467267036 +317 0.617735743523 0.785793304443 +328 0.613856375217 0.805333375931 +SURF 0x10 +mat 9 +refs 4 +327 0.0528283976018 0.848566174507 +326 0.049348924309 0.849018275738 +319 0.0480088405311 0.82927107811 +318 0.0515189096332 0.82927018404 +SURF 0x10 +mat 9 +refs 4 +325 0.741222918034 0.743363261223 +320 0.745292007923 0.76379686594 +319 0.742676615715 0.764054477215 +326 0.738785803318 0.744516193867 +SURF 0x10 +mat 9 +refs 4 +324 0.74444693327 0.742587924004 +321 0.748605430126 0.76347053051 +320 0.745292007923 0.76379686594 +325 0.741222918034 0.743363261223 +SURF 0x10 +mat 9 +refs 4 +323 0.180241808295 0.799195587635 +322 0.178792312741 0.819944024086 +321 0.175284698606 0.819943904877 +324 0.176765814424 0.798742234707 +SURF 0x10 +mat 9 +refs 4 +334 0.184497848153 0.779837310314 +323 0.180241808295 0.799195587635 +324 0.176765814424 0.798742234707 +333 0.181114792824 0.778961062431 +SURF 0x10 +mat 9 +refs 4 +333 0.736408770084 0.723538398743 +324 0.74444693327 0.742587924004 +325 0.741222918034 0.743363261223 +332 0.733357608318 0.724723339081 +SURF 0x10 +mat 9 +refs 4 +332 0.733357608318 0.724723339081 +325 0.741222918034 0.743363261223 +326 0.738785803318 0.744516193867 +331 0.731265127659 0.726693034172 +SURF 0x10 +mat 9 +refs 4 +330 0.0566436573863 0.866411983967 +331 0.0532534867525 0.867281258106 +326 0.049348924309 0.849018275738 +327 0.0528283976018 0.848566174507 +SURF 0x10 +mat 9 +refs 4 +330 0.603310823441 0.82197201252 +327 0.610624074936 0.804558336735 +328 0.613856375217 0.805333375931 +329 0.606371045113 0.823156535625 +SURF 0x10 +mat 9 +refs 4 +334 0.608448684216 0.825127124786 +329 0.606371045113 0.823156535625 +328 0.613856375217 0.805333375931 +323 0.616276979446 0.806487321854 +SURF 0x10 +mat 9 +refs 4 +335 0.59738278389 0.840701162815 +340 0.595789968967 0.838048219681 +329 0.606371045113 0.823156535625 +334 0.608448684216 0.825127124786 +SURF 0x10 +mat 9 +refs 4 +339 0.592972815037 0.836521565914 +330 0.603310823441 0.82197201252 +329 0.606371045113 0.823156535625 +340 0.595789968967 0.838048219681 +SURF 0x10 +mat 9 +refs 4 +339 0.0627049580216 0.881591200829 +338 0.0594563931227 0.882815420628 +331 0.0532534867525 0.867281258106 +330 0.0566436573863 0.866411983967 +SURF 0x10 +mat 9 +refs 4 +337 0.722231984138 0.709147393703 +332 0.733357608318 0.724723339081 +331 0.731265127659 0.726693034172 +338 0.720627009869 0.711799681187 +SURF 0x10 +mat 9 +refs 4 +336 0.725038707256 0.707620322704 +333 0.736408770084 0.723538398743 +332 0.733357608318 0.724723339081 +337 0.722231984138 0.709147393703 +SURF 0x10 +mat 9 +refs 4 +335 0.191270381212 0.763188302517 +334 0.184497848153 0.779837310314 +333 0.181114792824 0.778961062431 +336 0.188035309315 0.761948406696 +SURF 0x10 +mat 9 +refs 4 +346 0.564871966839 0.90582382679 +335 0.565044045448 0.922902643681 +336 0.561950266361 0.924056112766 +345 0.561774432659 0.906604170799 +SURF 0x10 +mat 9 +refs 4 +345 0.711111545563 0.695918321609 +336 0.725038707256 0.707620322704 +337 0.722231984138 0.709147393703 +344 0.708604335785 0.697697043419 +SURF 0x10 +mat 9 +refs 4 +344 0.708604335785 0.697697043419 +337 0.722231984138 0.709147393703 +338 0.720627009869 0.711799681187 +343 0.707596540451 0.700851023197 +SURF 0x10 +mat 9 +refs 4 +342 0.0705990046263 0.893069624901 +343 0.0675350651145 0.894562244415 +338 0.0594563931227 0.882815420628 +339 0.0627049580216 0.881591200829 +SURF 0x10 +mat 9 +refs 4 +342 0.58031463623 0.847215414047 +339 0.592972815037 0.836521565914 +340 0.595789968967 0.838048219681 +341 0.582834124565 0.84899353981 +SURF 0x10 +mat 9 +refs 4 +346 0.583833277225 0.85214805603 +341 0.582834124565 0.84899353981 +340 0.595789968967 0.838048219681 +335 0.59738278389 0.840701162815 +SURF 0x10 +mat 9 +refs 4 +347 0.568723678589 0.858687758446 +352 0.568386495113 0.855246722698 +341 0.582834124565 0.84899353981 +346 0.583833277225 0.85214805603 +SURF 0x10 +mat 9 +refs 4 +351 0.899446189404 0.296861499548 +342 0.899348258972 0.27913543582 +341 0.902430593967 0.278213858604 +352 0.90253084898 0.296356767416 +SURF 0x10 +mat 9 +refs 4 +351 0.899446189404 0.296861499548 +350 0.896452784538 0.296317726374 +343 0.89635258913 0.278177201748 +342 0.899348258972 0.27913543582 +SURF 0x10 +mat 9 +refs 4 +349 0.693403303623 0.691152453423 +344 0.708604335785 0.697697043419 +343 0.707596540451 0.700851023197 +350 0.693061590195 0.694593250751 +SURF 0x10 +mat 9 +refs 4 +348 0.56177765131 0.886554419994 +345 0.561774432659 0.906604170799 +344 0.558795392513 0.905750155449 +349 0.558798611164 0.88613140583 +SURF 0x10 +mat 9 +refs 4 +347 0.564875125885 0.886202633381 +346 0.564871966839 0.90582382679 +345 0.561774432659 0.906604170799 +348 0.56177765131 0.886554419994 +SURF 0x10 +mat 9 +refs 4 +358 0.565053284168 0.865376114845 +347 0.564875125885 0.886202633381 +348 0.56177765131 0.886554419994 +357 0.5619597435 0.86527299881 +SURF 0x10 +mat 9 +refs 4 +357 0.5619597435 0.86527299881 +348 0.56177765131 0.886554419994 +349 0.558798611164 0.88613140583 +356 0.558976709843 0.865307629108 +SURF 0x10 +mat 9 +refs 4 +356 0.67766481638 0.689959704876 +349 0.693403303623 0.691152453423 +350 0.693061590195 0.694593250751 +355 0.678012788296 0.693452775478 +SURF 0x10 +mat 9 +refs 4 +354 0.899402976036 0.316111087799 +355 0.896408617496 0.316017389297 +350 0.896452784538 0.296317726374 +351 0.899446189404 0.296861499548 +SURF 0x10 +mat 9 +refs 4 +354 0.899402976036 0.316111087799 +351 0.899446189404 0.296861499548 +352 0.90253084898 0.296356767416 +353 0.902486622334 0.316059082747 +SURF 0x10 +mat 9 +refs 4 +358 0.553083539009 0.859874546528 +353 0.553431630135 0.856381475925 +352 0.568386495113 0.855246722698 +347 0.568723678589 0.858687758446 +kids 0 +OBJECT poly +name "canister.RL" +data 9 +Plane.011 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +3.383027 1.300251 0.594615 +3.387241 1.305644 0.587363 +3.383896 1.306178 0.586644 +3.380446 1.305998 0.586886 +3.377307 1.305125 0.58806 +3.374859 1.303664 0.590026 +3.373395 1.301791 0.592544 +3.373093 1.299733 0.595313 +3.37399 1.297737 0.597997 +3.375976 1.296044 0.600274 +3.378813 1.294859 0.601868 +3.382158 1.294324 0.602587 +3.385608 1.294504 0.602345 +3.388747 1.295377 0.60117 +3.391195 1.296838 0.599205 +3.392659 1.298711 0.596686 +3.392961 1.30077 0.593918 +3.392064 1.302766 0.591233 +3.390078 1.304458 0.588957 +3.398716 1.314228 0.563081 +3.386262 1.316219 0.560403 +3.373419 1.315548 0.561305 +3.361734 1.312297 0.565677 +3.352617 1.306857 0.572993 +3.347168 1.299885 0.58237 +3.346045 1.292221 0.592677 +3.349382 1.284791 0.60267 +3.356777 1.278489 0.611145 +3.367338 1.274076 0.61708 +3.379791 1.272085 0.619757 +3.392635 1.272756 0.618856 +3.40432 1.276007 0.614483 +3.413437 1.281447 0.607167 +3.418885 1.288419 0.59779 +3.420009 1.296082 0.587484 +3.416672 1.303513 0.57749 +3.409277 1.309815 0.569015 +3.400271 1.296395 0.545665 +3.386583 1.298584 0.542722 +3.372466 1.297847 0.543713 +3.359623 1.294273 0.548519 +3.349603 1.288294 0.55656 +3.343614 1.280631 0.566867 +3.342379 1.272208 0.578195 +3.346046 1.26404 0.589179 +3.354175 1.257114 0.598495 +3.365783 1.252264 0.605017 +3.379471 1.250076 0.60796 +3.393588 1.250813 0.606969 +3.406431 1.254386 0.602163 +3.416451 1.260365 0.594122 +3.42244 1.268028 0.583816 +3.423675 1.276452 0.572487 +3.420007 1.284619 0.561503 +3.411879 1.291545 0.552188 +3.396473 1.285436 0.547667 +3.3858 1.287142 0.545372 +3.374793 1.286567 0.546145 +3.364779 1.283781 0.549892 +3.356966 1.279119 0.556162 +3.352296 1.273144 0.564198 +3.351333 1.266576 0.573031 +3.354192 1.260208 0.581596 +3.36053 1.254807 0.588859 +3.369581 1.251025 0.593945 +3.380254 1.249319 0.59624 +3.391261 1.249894 0.595467 +3.401275 1.25268 0.59172 +3.409088 1.257342 0.58545 +3.413758 1.263317 0.577414 +3.414721 1.269885 0.568581 +3.405524 1.281654 0.552753 +3.411861 1.276253 0.560016 +3.405857 1.28677 0.523581 +3.387735 1.289667 0.519685 +3.369045 1.288692 0.520997 +3.352042 1.283961 0.527359 +3.338776 1.276045 0.538005 +3.330847 1.2659 0.55165 +3.329212 1.254748 0.566648 +3.334068 1.243935 0.58119 +3.344829 1.234765 0.593523 +3.360197 1.228344 0.602158 +3.378319 1.225446 0.606055 +3.397008 1.226422 0.604743 +3.414012 1.231153 0.59838 +3.427278 1.239069 0.587734 +3.435207 1.249214 0.57409 +3.436842 1.260366 0.559092 +3.431986 1.271179 0.544549 +3.421225 1.280349 0.532217 +3.473959 1.261001 0.291958 +3.289709 1.261001 0.291958 +3.473959 1.270049 0.275976 +3.289709 1.270049 0.275976 +3.451548 1.302308 0.291958 +3.451548 1.302308 0.46722 +3.289709 1.261001 0.46722 +3.289709 1.269322 0.487997 +3.473959 1.269322 0.487997 +3.473959 1.261001 0.46722 +3.312121 1.302308 0.46722 +3.312121 1.302308 0.291958 +3.294943 1.293988 0.487997 +3.289709 1.284064 0.487997 +3.289709 1.291453 0.487997 +3.332787 1.312318 0.491837 +3.430882 1.312318 0.491837 +3.430882 1.312318 0.208708 +3.332787 1.312318 0.208709 +3.289709 1.291453 0.525154 +3.473959 0.776817 0.175392 +3.473959 0.776817 0.620478 +3.473959 1.221903 0.620478 +3.473959 1.221903 0.175392 +3.289709 1.221903 0.620478 +3.289709 0.776817 0.620478 +3.289709 0.776817 0.175392 +3.289709 1.221903 0.175392 +3.468725 1.293988 0.487997 +3.470227 1.29326 0.275976 +3.471258 1.292761 0.275976 +3.293442 1.29326 0.275976 +3.289709 1.291453 0.275976 +3.289709 1.291453 0.175392 +3.473959 1.279293 0.275976 +3.473959 1.291453 0.275976 +3.473959 1.291453 0.175392 +3.470189 1.293279 0.487997 +3.473959 1.291453 0.487997 +3.473959 1.291453 0.525154 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +14 0.720553219318 0.925439238548 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +15 0.0142893865705 0.386845588684 +0 0.0146232433617 0.387093901634 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 3 +16 0.721186935902 0.926291584969 +0 0.72110337019 0.926179170609 +15 0.72085505724 0.925845265388 +SURF 0x10 +mat 9 +refs 3 +17 0.0151683967561 0.387499213219 +0 0.0146232433617 0.387093901634 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +17 0.721508681774 0.92672431469 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +18 0.0155353546143 0.38777205348 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +2 0.0159082766622 0.38804936409 +1 0.0157923176885 0.387963145971 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +30 0.716671168804 0.922271609306 +12 0.720176875591 0.924933195114 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +12 0.0133772883564 0.386167436838 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +13 0.0135666038841 0.386308133602 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +20 0.0201382674277 0.389667838812 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +20 0.723677396774 0.931694149971 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +29 0.716563045979 0.922126293182 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +29 0.0105703622103 0.382553577423 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +30 0.0107157044113 0.382661700249 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +56 0.0225611738861 0.384980678558 +38 0.0229883790016 0.386825114489 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +38 0.720834553242 0.934544324875 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +47 0.713015139103 0.924027919769 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +47 0.0124720484018 0.379005610943 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +73 0.0260738730431 0.38492077589 +55 0.0221912320703 0.384705603123 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +55 0.718715131283 0.933747172356 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +56 0.718990147114 0.934117078781 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +85 0.709964811802 0.925572276115 +67 0.713434994221 0.926645874977 +66 0.712985813618 0.926041841507 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +91 0.0634112805128 0.380766808987 +114 0.0822017341852 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +91 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +100 0.0351593159139 0.380766808987 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +93 0.0659876763821 0.382225304842 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +93 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +130 0.0258204042912 0.385675609112 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +98 0.716117560863 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +95 0.0634113550186 0.387425422668 +108 0.0768311172724 0.389038980007 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +130 0.0258204042912 0.385675609112 +119 0.0318100675941 0.386084258556 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +101 0.721435010433 0.94671523571 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +126 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +119 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +129 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +105 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +130 0.719685137272 0.937376379967 +107 0.723048388958 0.94274699688 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +118 0.708473622799 0.993757665157 +124 0.719685137272 0.993757665157 +127 0.719685018063 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +112 0.636726200581 0.922010183334 +116 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +114 0.708473622799 0.993757665157 +111 0.636726200581 0.993757665157 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +112 0.0104542300105 0.302716702223 +111 0.0822017341852 0.302716642618 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +127 0.0822017341852 0.385675519705 +121 0.0659876763821 0.385886520147 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +122 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +126 0.0659876763821 0.385675609112 +125 0.0659876763821 0.383715420961 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +129 0.0318100675941 0.385675609112 +128 0.0318100675941 0.385969936848 +kids 0 +OBJECT poly +name "wiper.L" +data 8 +Cube.004 +crease 30 +numvert 18 +1.527534 1.654511 0.322413 +1.515865 1.614944 0.275423 +1.511731 1.600926 0.287334 +1.522396 1.637087 0.337218 +1.548712 1.648266 0.322413 +1.537043 1.608698 0.275423 +1.532909 1.59468 0.287334 +1.543574 1.630841 0.337218 +1.532427 1.593044 0.279714 +1.535029 1.601869 0.272215 +1.516748 1.593646 0.274979 +1.51935 1.60247 0.267481 +1.483301 1.456939 0.087979 +1.481228 1.449909 0.093953 +1.489985 1.45195 0.084429 +1.487912 1.444921 0.090402 +1.527112 1.607412 0.273227 +1.523744 1.595991 0.282932 +numsurf 21 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +1 0 0 +2 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +7 0 0 +6 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +6 0 0 +7 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +1 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 4 +10 0 0 +11 0 0 +12 0 0 +13 0 0 +SURF 0x00 +mat 1 +refs 4 +9 0 0 +8 0 0 +15 0 0 +14 0 0 +SURF 0x00 +mat 1 +refs 4 +11 0 0 +9 0 0 +14 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 4 +8 0 0 +10 0 0 +13 0 0 +15 0 0 +SURF 0x00 +mat 1 +refs 4 +12 0 0 +14 0 0 +15 0 0 +13 0 0 +SURF 0x00 +mat 1 +refs 3 +16 0 0 +11 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +5 0 0 +16 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +16 0 0 +9 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 3 +9 0 0 +16 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +16 0 0 +5 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 3 +17 0 0 +2 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +8 0 0 +17 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +17 0 0 +6 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +6 0 0 +17 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +17 0 0 +8 0 0 +16 0 0 +kids 0 +OBJECT poly +name "fwheel.L" +data 6 +Circle +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 218 +0.553939 0.407726 0.538809 +0.688313 0.640469 0.538809 +0.623496 0.667317 0.538809 +0.553939 0.676475 0.538809 +0.484382 0.667317 0.538809 +0.419565 0.640469 0.538809 +0.363906 0.59776 0.538809 +0.321197 0.5421 0.538809 +0.294349 0.477284 0.538809 +0.285191 0.407726 0.538809 +0.294349 0.338169 0.538809 +0.321197 0.273353 0.538809 +0.363906 0.217693 0.538809 +0.419565 0.174984 0.538809 +0.484382 0.148136 0.538809 +0.553939 0.138979 0.538809 +0.623496 0.148136 0.538809 +0.688313 0.174984 0.538809 +0.743973 0.217693 0.538809 +0.786682 0.273353 0.538809 +0.81353 0.33817 0.538809 +0.822687 0.407727 0.538809 +0.81353 0.477284 0.538809 +0.743973 0.59776 0.538809 +0.786682 0.542101 0.538809 +0.553939 0.407726 0.746253 +0.564352 0.425763 0.741594 +0.559329 0.427843 0.741594 +0.553939 0.428553 0.741594 +0.548549 0.427843 0.741594 +0.543526 0.425763 0.741594 +0.539213 0.422453 0.741594 +0.535903 0.41814 0.741594 +0.533822 0.413117 0.741594 +0.533113 0.407726 0.741594 +0.533822 0.402336 0.741594 +0.535903 0.397313 0.741594 +0.539213 0.393 0.741594 +0.543526 0.38969 0.741594 +0.548549 0.38761 0.741594 +0.553939 0.3869 0.741594 +0.559329 0.38761 0.741594 +0.564352 0.38969 0.741594 +0.568666 0.393 0.741594 +0.571975 0.397313 0.741594 +0.574056 0.402336 0.741594 +0.574765 0.407726 0.741594 +0.574056 0.413117 0.741594 +0.571975 0.41814 0.741594 +0.568666 0.422453 0.741594 +0.572592 0.440034 0.720245 +0.563595 0.443761 0.720245 +0.553939 0.445032 0.720245 +0.544284 0.443761 0.720245 +0.535286 0.440034 0.720245 +0.52756 0.434106 0.720245 +0.521632 0.426379 0.720245 +0.517905 0.417382 0.720245 +0.516634 0.407726 0.720245 +0.517905 0.398071 0.720245 +0.521632 0.389074 0.720245 +0.52756 0.381347 0.720245 +0.535286 0.375419 0.720245 +0.544284 0.371692 0.720245 +0.553939 0.370421 0.720245 +0.563595 0.371692 0.720245 +0.572592 0.375419 0.720245 +0.580318 0.381347 0.720245 +0.586247 0.389074 0.720245 +0.589974 0.398071 0.720245 +0.591245 0.407726 0.720245 +0.589974 0.417382 0.720245 +0.586247 0.426379 0.720245 +0.580318 0.434106 0.720245 +0.572592 0.440034 0.682689 +0.563595 0.443761 0.682689 +0.553939 0.445032 0.682689 +0.544284 0.443761 0.682689 +0.535286 0.440034 0.682689 +0.52756 0.434106 0.682689 +0.521632 0.426379 0.682689 +0.517905 0.417382 0.682689 +0.516634 0.407726 0.682689 +0.517905 0.398071 0.682689 +0.521632 0.389074 0.682689 +0.52756 0.381347 0.682689 +0.535286 0.375419 0.682689 +0.544284 0.371692 0.682689 +0.553939 0.370421 0.682689 +0.563595 0.371692 0.682689 +0.572592 0.375419 0.682689 +0.580318 0.381347 0.682689 +0.586247 0.389074 0.682689 +0.589974 0.398071 0.682689 +0.591245 0.407726 0.682689 +0.589974 0.417382 0.682689 +0.580318 0.434106 0.682689 +0.586247 0.426379 0.682689 +0.61376 0.511339 0.682689 +0.584904 0.523291 0.682689 +0.553939 0.527368 0.682689 +0.522974 0.523291 0.682689 +0.494118 0.511339 0.682689 +0.46934 0.492326 0.682689 +0.450327 0.467547 0.682689 +0.438375 0.438692 0.682689 +0.434298 0.407726 0.682689 +0.438375 0.376761 0.682689 +0.450327 0.347906 0.682689 +0.46934 0.323127 0.682689 +0.494119 0.304114 0.682689 +0.522974 0.292162 0.682689 +0.553939 0.288085 0.682689 +0.584905 0.292162 0.682689 +0.61376 0.304114 0.682689 +0.638538 0.323127 0.682689 +0.657551 0.347906 0.682689 +0.669504 0.376761 0.682689 +0.67358 0.407727 0.682689 +0.669504 0.438692 0.682689 +0.638538 0.492326 0.682689 +0.657551 0.467547 0.682689 +0.64523 0.565848 0.665997 +0.601195 0.584088 0.665997 +0.553939 0.59031 0.665997 +0.506683 0.584088 0.665997 +0.462647 0.565848 0.665997 +0.424833 0.536832 0.665997 +0.395818 0.499018 0.665997 +0.377577 0.454982 0.665997 +0.371356 0.407726 0.665997 +0.377577 0.360471 0.665997 +0.395818 0.316435 0.665997 +0.424834 0.278621 0.665997 +0.462648 0.249605 0.665997 +0.506683 0.231365 0.665997 +0.553939 0.225143 0.665997 +0.601195 0.231365 0.665997 +0.645231 0.249605 0.665997 +0.683045 0.278621 0.665997 +0.712061 0.316435 0.665997 +0.730301 0.360471 0.665997 +0.736522 0.407727 0.665997 +0.730301 0.454983 0.665997 +0.712061 0.499018 0.665997 +0.683045 0.536832 0.665997 +0.676188 0.619468 0.665997 +0.61722 0.643894 0.665997 +0.553939 0.652225 0.665997 +0.490658 0.643894 0.665997 +0.43169 0.619468 0.665997 +0.381053 0.580613 0.665997 +0.342197 0.529976 0.665997 +0.317772 0.471007 0.665997 +0.309441 0.407726 0.665997 +0.317772 0.344446 0.665997 +0.342197 0.285477 0.665997 +0.381053 0.23484 0.665997 +0.43169 0.195985 0.665997 +0.490658 0.171559 0.665997 +0.553939 0.163228 0.665997 +0.61722 0.171559 0.665997 +0.676188 0.195985 0.665997 +0.726826 0.23484 0.665997 +0.765681 0.285477 0.665997 +0.790106 0.344446 0.665997 +0.798438 0.407727 0.665997 +0.790106 0.471007 0.665997 +0.726826 0.580613 0.665997 +0.765681 0.529976 0.665997 +0.676188 0.619468 0.720245 +0.61722 0.643894 0.720245 +0.553939 0.652225 0.720245 +0.490658 0.643894 0.720245 +0.43169 0.619468 0.720245 +0.381053 0.580613 0.720245 +0.342197 0.529976 0.720245 +0.317772 0.471007 0.720245 +0.309441 0.407726 0.720245 +0.317772 0.344446 0.720245 +0.342197 0.285477 0.720245 +0.381053 0.23484 0.720245 +0.43169 0.195985 0.720245 +0.490658 0.171559 0.720245 +0.553939 0.163228 0.720245 +0.61722 0.171559 0.720245 +0.676188 0.195985 0.720245 +0.726826 0.23484 0.720245 +0.765681 0.285477 0.720245 +0.790106 0.344446 0.720245 +0.798438 0.407727 0.720245 +0.790106 0.471007 0.720245 +0.726826 0.580613 0.720245 +0.765681 0.529976 0.720245 +0.687558 0.639162 0.720245 +0.623105 0.665859 0.720245 +0.553939 0.674965 0.720245 +0.484773 0.665859 0.720245 +0.42032 0.639162 0.720245 +0.364973 0.596692 0.720245 +0.322504 0.541346 0.720245 +0.295807 0.476893 0.720245 +0.286701 0.407726 0.720245 +0.295807 0.33856 0.720245 +0.322504 0.274107 0.720245 +0.364973 0.21876 0.720245 +0.42032 0.176291 0.720245 +0.484773 0.149594 0.720245 +0.553939 0.140488 0.720245 +0.623106 0.149594 0.720245 +0.687558 0.176291 0.720245 +0.742905 0.218761 0.720245 +0.785374 0.274107 0.720245 +0.812072 0.33856 0.720245 +0.821177 0.407727 0.720245 +0.812072 0.476893 0.720245 +0.742905 0.596693 0.720245 +0.785374 0.541346 0.720245 +numsurf 216 +SURF 0x10 +mat 9 +refs 3 +23 0.163628667593 0.509743213654 +0 0.1346539855 0.480768471956 +1 0.155142173171 0.516255199909 +SURF 0x10 +mat 9 +refs 3 +1 0.155142173171 0.516255199909 +0 0.1346539855 0.480768471956 +2 0.145259439945 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +2 0.145259439945 0.520348727703 +0 0.1346539855 0.480768471956 +3 0.134653955698 0.521744906902 +SURF 0x10 +mat 9 +refs 3 +3 0.134653955698 0.521744906902 +0 0.1346539855 0.480768471956 +4 0.124048486352 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +4 0.124048486352 0.520348727703 +0 0.1346539855 0.480768471956 +5 0.114165768027 0.516255140305 +SURF 0x10 +mat 9 +refs 3 +5 0.114165768027 0.516255140305 +0 0.1346539855 0.480768471956 +6 0.105679303408 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +6 0.105679303408 0.509743213654 +0 0.1346539855 0.480768471956 +7 0.0991673767567 0.50125670433 +SURF 0x10 +mat 9 +refs 3 +7 0.0991673767567 0.50125670433 +0 0.1346539855 0.480768471956 +8 0.0950738191605 0.491373956203 +SURF 0x10 +mat 9 +refs 3 +8 0.0950738191605 0.491373956203 +0 0.1346539855 0.480768471956 +9 0.0936775803566 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +9 0.0936775803566 0.480768471956 +0 0.1346539855 0.480768471956 +10 0.0950738340616 0.470163017511 +SURF 0x10 +mat 9 +refs 3 +10 0.0950738340616 0.470163017511 +0 0.1346539855 0.480768471956 +11 0.099167406559 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +11 0.099167406559 0.460280328989 +0 0.1346539855 0.480768471956 +12 0.105679303408 0.451793789864 +SURF 0x10 +mat 9 +refs 3 +12 0.105679303408 0.451793789864 +0 0.1346539855 0.480768471956 +13 0.114165812731 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +13 0.114165812731 0.445281893015 +0 0.1346539855 0.480768471956 +14 0.124048545957 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +14 0.124048545957 0.441188365221 +0 0.1346539855 0.480768471956 +15 0.134654000401 0.439792096615 +SURF 0x10 +mat 9 +refs 3 +15 0.134654000401 0.439792096615 +0 0.1346539855 0.480768471956 +16 0.14525949955 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +16 0.14525949955 0.441188365221 +0 0.1346539855 0.480768471956 +17 0.155142202973 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +17 0.155142202973 0.445281893015 +0 0.1346539855 0.480768471956 +18 0.163628727198 0.451793819666 +SURF 0x10 +mat 9 +refs 3 +18 0.163628727198 0.451793819666 +0 0.1346539855 0.480768471956 +19 0.170140609145 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +19 0.170140609145 0.460280328989 +0 0.1346539855 0.480768471956 +20 0.174234181643 0.470163047314 +SURF 0x10 +mat 9 +refs 3 +20 0.174234181643 0.470163047314 +0 0.1346539855 0.480768471956 +21 0.175630405545 0.480768531561 +SURF 0x10 +mat 9 +refs 3 +21 0.175630405545 0.480768531561 +0 0.1346539855 0.480768471956 +22 0.174234181643 0.491374015808 +SURF 0x10 +mat 9 +refs 3 +22 0.174234181643 0.491374015808 +0 0.1346539855 0.480768471956 +24 0.170140609145 0.501256763935 +SURF 0x10 +mat 9 +refs 3 +24 0.170140609145 0.501256763935 +0 0.1346539855 0.480768471956 +23 0.163628667593 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +26 0.136241689324 0.483518511057 +25 0.1346539855 0.480768471956 +49 0.136899352074 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +27 0.135475844145 0.483835697174 +25 0.1346539855 0.480768471956 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +28 0.1346539855 0.483943879604 +25 0.1346539855 0.480768471956 +27 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +29 0.133832126856 0.483835697174 +25 0.1346539855 0.480768471956 +28 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 3 +30 0.133066281676 0.483518511057 +25 0.1346539855 0.480768471956 +29 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +31 0.132408633828 0.48301383853 +25 0.1346539855 0.480768471956 +30 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +32 0.131904020905 0.482356220484 +25 0.1346539855 0.480768471956 +31 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +33 0.131586790085 0.481590390205 +25 0.1346539855 0.480768471956 +32 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 3 +34 0.131478577852 0.480768471956 +25 0.1346539855 0.480768471956 +33 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +35 0.131586790085 0.479946613312 +25 0.1346539855 0.480768471956 +34 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +36 0.131904020905 0.479180753231 +25 0.1346539855 0.480768471956 +35 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +37 0.132408633828 0.478523135185 +25 0.1346539855 0.480768471956 +36 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +38 0.133066281676 0.478018462658 +25 0.1346539855 0.480768471956 +37 0.132408633828 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +39 0.133832126856 0.477701276541 +25 0.1346539855 0.480768471956 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +40 0.1346539855 0.47759309411 +25 0.1346539855 0.480768471956 +39 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +41 0.135475844145 0.477701276541 +25 0.1346539855 0.480768471956 +40 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 3 +42 0.136241689324 0.478018462658 +25 0.1346539855 0.480768471956 +41 0.135475844145 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +43 0.136899352074 0.478523135185 +25 0.1346539855 0.480768471956 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +44 0.137403979897 0.479180753231 +25 0.1346539855 0.480768471956 +43 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +45 0.137721210718 0.479946613312 +25 0.1346539855 0.480768471956 +44 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +46 0.13782940805 0.480768471956 +25 0.1346539855 0.480768471956 +45 0.137721210718 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +47 0.137721210718 0.481590390205 +25 0.1346539855 0.480768471956 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +48 0.137403979897 0.482356220484 +25 0.1346539855 0.480768471956 +47 0.137721210718 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +49 0.136899352074 0.48301383853 +25 0.1346539855 0.480768471956 +48 0.137403979897 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +26 0.136241689324 0.483518511057 +49 0.136899352074 0.48301383853 +73 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +51 0.136126160622 0.486262708902 +27 0.135475844145 0.483835697174 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +51 0.136126160622 0.486262708902 +52 0.1346539855 0.486456543207 +28 0.1346539855 0.483943879604 +27 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 4 +52 0.1346539855 0.486456543207 +53 0.133181810379 0.486262708902 +29 0.133832126856 0.483835697174 +28 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 4 +53 0.133181810379 0.486262708902 +54 0.131809994578 0.485694468021 +30 0.133066281676 0.483518511057 +29 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 4 +54 0.131809994578 0.485694468021 +55 0.130631938577 0.484790533781 +31 0.132408633828 0.48301383853 +30 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +55 0.130631938577 0.484790533781 +56 0.129728004336 0.483612507582 +32 0.131904020905 0.482356220484 +31 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 4 +56 0.129728004336 0.483612507582 +57 0.129159763455 0.482240647078 +33 0.131586790085 0.481590390205 +32 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +57 0.129159763455 0.482240647078 +58 0.128965958953 0.480768471956 +34 0.131478577852 0.480768471956 +33 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 4 +58 0.128965958953 0.480768471956 +59 0.129159763455 0.479296296835 +35 0.131586790085 0.479946613312 +34 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +59 0.129159763455 0.479296296835 +60 0.129728004336 0.477924466133 +36 0.131904020905 0.479180753231 +35 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 4 +60 0.129728004336 0.477924466133 +61 0.130631968379 0.476746439934 +37 0.132408633828 0.478523135185 +36 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +38 0.133066281676 0.478018462658 +37 0.132408633828 0.478523135185 +61 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +63 0.133181810379 0.475274294615 +39 0.133832126856 0.477701276541 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +63 0.133181810379 0.475274294615 +64 0.1346539855 0.47508046031 +40 0.1346539855 0.47759309411 +39 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 4 +64 0.1346539855 0.47508046031 +65 0.136126160622 0.475274294615 +41 0.135475844145 0.477701276541 +40 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +42 0.136241689324 0.478018462658 +41 0.135475844145 0.477701276541 +65 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +67 0.138676047325 0.476746439934 +43 0.136899352074 0.478523135185 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +67 0.138676047325 0.476746439934 +68 0.139579966664 0.477924466133 +44 0.137403979897 0.479180753231 +43 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 4 +68 0.139579966664 0.477924466133 +69 0.140148207545 0.479296296835 +45 0.137721210718 0.479946613312 +44 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +46 0.13782940805 0.480768471956 +45 0.137721210718 0.479946613312 +69 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +71 0.140148207545 0.482240706682 +47 0.137721210718 0.481590390205 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +72 0.139579966664 0.483612507582 +48 0.137403979897 0.482356220484 +47 0.137721210718 0.481590390205 +71 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +73 0.138676047325 0.484790533781 +49 0.136899352074 0.48301383853 +48 0.137403979897 0.482356220484 +72 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +50 0.137498006225 0.485694468021 +73 0.138676047325 0.484790533781 +96 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +75 0.136126160622 0.486262708902 +51 0.136126160622 0.486262708902 +50 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +75 0.136126160622 0.486262708902 +76 0.1346539855 0.486456543207 +52 0.1346539855 0.486456543207 +51 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +76 0.1346539855 0.486456543207 +77 0.133181810379 0.486262708902 +53 0.133181810379 0.486262708902 +52 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +77 0.133181810379 0.486262708902 +78 0.131809994578 0.485694468021 +54 0.131809994578 0.485694468021 +53 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +78 0.131809994578 0.485694468021 +79 0.130631938577 0.484790533781 +55 0.130631938577 0.484790533781 +54 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +79 0.130631938577 0.484790533781 +80 0.129728004336 0.483612507582 +56 0.129728004336 0.483612507582 +55 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +80 0.129728004336 0.483612507582 +81 0.129159763455 0.482240647078 +57 0.129159763455 0.482240647078 +56 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +81 0.129159763455 0.482240647078 +82 0.128965958953 0.480768471956 +58 0.128965958953 0.480768471956 +57 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +82 0.128965958953 0.480768471956 +83 0.129159763455 0.479296296835 +59 0.129159763455 0.479296296835 +58 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +83 0.129159763455 0.479296296835 +84 0.129728004336 0.477924466133 +60 0.129728004336 0.477924466133 +59 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +84 0.129728004336 0.477924466133 +85 0.130631968379 0.476746439934 +61 0.130631968379 0.476746439934 +60 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +62 0.131809994578 0.475842505693 +61 0.130631968379 0.476746439934 +85 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +87 0.133181810379 0.475274294615 +63 0.133181810379 0.475274294615 +62 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +87 0.133181810379 0.475274294615 +88 0.1346539855 0.47508046031 +64 0.1346539855 0.47508046031 +63 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +88 0.1346539855 0.47508046031 +89 0.136126160622 0.475274294615 +65 0.136126160622 0.475274294615 +64 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +66 0.137498021126 0.475842505693 +65 0.136126160622 0.475274294615 +89 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +91 0.138676047325 0.476746439934 +67 0.138676047325 0.476746439934 +66 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +91 0.138676047325 0.476746439934 +92 0.139579966664 0.477924466133 +68 0.139579966664 0.477924466133 +67 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +92 0.139579966664 0.477924466133 +93 0.140148207545 0.479296296835 +69 0.140148207545 0.479296296835 +68 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +70 0.140342026949 0.480768471956 +69 0.140148207545 0.479296296835 +93 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +95 0.140148207545 0.482240706682 +71 0.140148207545 0.482240706682 +70 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +97 0.139579966664 0.483612507582 +72 0.139579966664 0.483612507582 +71 0.140148207545 0.482240706682 +95 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +96 0.138676047325 0.484790533781 +73 0.138676047325 0.484790533781 +72 0.139579966664 0.483612507582 +97 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +74 0.137498006225 0.485694468021 +96 0.138676047325 0.484790533781 +120 0.147552967072 0.49366748333 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +99 0.139375329018 0.498388826847 +75 0.136126160622 0.486262708902 +74 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +99 0.139375329018 0.498388826847 +100 0.1346539855 0.499010413885 +76 0.1346539855 0.486456543207 +75 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +100 0.1346539855 0.499010413885 +101 0.129932641983 0.498388797045 +77 0.133181810379 0.486262708902 +76 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +101 0.129932641983 0.498388797045 +102 0.125533029437 0.496566444635 +78 0.131809994578 0.485694468021 +77 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +102 0.125533029437 0.496566444635 +103 0.12175501883 0.493667453527 +79 0.130631938577 0.484790533781 +78 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +103 0.12175501883 0.493667453527 +104 0.118856042624 0.489889442921 +80 0.129728004336 0.483612507582 +79 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +104 0.118856042624 0.489889442921 +105 0.117033675313 0.485489815474 +81 0.129159763455 0.482240647078 +80 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +105 0.117033675313 0.485489815474 +106 0.116412103176 0.480768471956 +82 0.128965958953 0.480768471956 +81 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +106 0.116412103176 0.480768471956 +107 0.117033675313 0.476047158241 +83 0.129159763455 0.479296296835 +82 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +107 0.117033675313 0.476047158241 +108 0.118856057525 0.471647530794 +84 0.129728004336 0.477924466133 +83 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +108 0.118856057525 0.471647530794 +109 0.12175501883 0.467869520187 +85 0.130631968379 0.476746439934 +84 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +86 0.131809994578 0.475842505693 +85 0.130631968379 0.476746439934 +109 0.12175501883 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +111 0.129932656884 0.463148206472 +87 0.133181810379 0.475274294615 +86 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +111 0.129932656884 0.463148206472 +112 0.1346539855 0.462526619434 +88 0.1346539855 0.47508046031 +87 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +112 0.1346539855 0.462526619434 +113 0.13937535882 0.463148206472 +89 0.136126160622 0.475274294615 +88 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +90 0.137498021126 0.475842505693 +89 0.136126160622 0.475274294615 +113 0.13937535882 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +115 0.147552967072 0.467869520187 +91 0.138676047325 0.476746439934 +90 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +115 0.147552967072 0.467869520187 +116 0.150451913476 0.471647560596 +92 0.139579966664 0.477924466133 +91 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +116 0.150451913476 0.471647560596 +117 0.152274280787 0.476047158241 +93 0.140148207545 0.479296296835 +92 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +94 0.140342026949 0.480768471956 +93 0.140148207545 0.479296296835 +117 0.152274280787 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +119 0.152274280787 0.485489845276 +95 0.140148207545 0.482240706682 +94 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +121 0.150451913476 0.489889442921 +97 0.139579966664 0.483612507582 +95 0.140148207545 0.482240706682 +119 0.152274280787 0.485489845276 +SURF 0x10 +mat 9 +refs 4 +120 0.147552967072 0.49366748333 +96 0.138676047325 0.484790533781 +97 0.139579966664 0.483612507582 +121 0.150451913476 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +98 0.143774926662 0.496566444635 +120 0.147552967072 0.49366748333 +145 0.154338926077 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +123 0.141859173775 0.507658600807 +99 0.139375329018 0.498388826847 +98 0.143774926662 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +123 0.141859173775 0.507658600807 +124 0.1346539855 0.508607268333 +100 0.1346539855 0.499010413885 +99 0.139375329018 0.498388826847 +SURF 0x10 +mat 9 +refs 4 +124 0.1346539855 0.508607268333 +125 0.127448782325 0.507658600807 +101 0.129932641983 0.498388797045 +100 0.1346539855 0.499010413885 +SURF 0x10 +mat 9 +refs 4 +125 0.127448782325 0.507658600807 +126 0.120734617114 0.504877567291 +102 0.125533029437 0.496566444635 +101 0.129932641983 0.498388797045 +SURF 0x10 +mat 9 +refs 4 +126 0.120734617114 0.504877567291 +127 0.114969015121 0.500453472137 +103 0.12175501883 0.493667453527 +102 0.125533029437 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +127 0.114969015121 0.500453472137 +128 0.11054494977 0.494687855244 +104 0.118856042624 0.489889442921 +103 0.12175501883 0.493667453527 +SURF 0x10 +mat 9 +refs 4 +128 0.11054494977 0.494687855244 +129 0.107763856649 0.487973690033 +105 0.117033675313 0.485489815474 +104 0.118856042624 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +129 0.107763856649 0.487973690033 +130 0.106815263629 0.480768471956 +106 0.116412103176 0.480768471956 +105 0.117033675313 0.485489815474 +SURF 0x10 +mat 9 +refs 4 +130 0.106815263629 0.480768471956 +131 0.107763856649 0.473563283682 +107 0.117033675313 0.476047158241 +106 0.116412103176 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +131 0.107763856649 0.473563283682 +132 0.11054494977 0.466849118471 +108 0.118856057525 0.471647530794 +107 0.117033675313 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +132 0.11054494977 0.466849118471 +133 0.114969074726 0.461083561182 +109 0.12175501883 0.467869520187 +108 0.118856057525 0.471647530794 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +110 0.125533074141 0.464970588684 +109 0.12175501883 0.467869520187 +133 0.114969074726 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +135 0.127448827028 0.453878372908 +111 0.129932656884 0.463148206472 +110 0.125533074141 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +135 0.127448827028 0.453878372908 +136 0.134654000401 0.452929794788 +112 0.1346539855 0.462526619434 +111 0.129932656884 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +136 0.134654000401 0.452929794788 +137 0.141859203577 0.453878372908 +113 0.13937535882 0.463148206472 +112 0.1346539855 0.462526619434 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +114 0.143774926662 0.464970588684 +113 0.13937535882 0.463148206472 +137 0.141859203577 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +139 0.154338926077 0.461083561182 +115 0.147552967072 0.467869520187 +114 0.143774926662 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +139 0.154338926077 0.461083561182 +140 0.158763021231 0.466849148273 +116 0.150451913476 0.471647560596 +115 0.147552967072 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +140 0.158763021231 0.466849148273 +141 0.161544129252 0.473563283682 +117 0.152274280787 0.476047158241 +116 0.150451913476 0.471647560596 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +118 0.152895867825 0.480768471956 +117 0.152274280787 0.476047158241 +141 0.161544129252 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +143 0.161544129252 0.487973719835 +119 0.152274280787 0.485489845276 +118 0.152895867825 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +144 0.158763021231 0.494687855244 +121 0.150451913476 0.489889442921 +119 0.152274280787 0.485489845276 +143 0.161544129252 0.487973719835 +SURF 0x10 +mat 9 +refs 4 +145 0.154338926077 0.500453472137 +120 0.147552967072 0.49366748333 +121 0.150451913476 0.489889442921 +144 0.158763021231 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +122 0.148573309183 0.504877567291 +145 0.154338926077 0.500453472137 +168 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +147 0.144302502275 0.516777276993 +123 0.141859173775 0.507658600807 +122 0.148573309183 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +147 0.144302502275 0.516777276993 +148 0.1346539855 0.518047630787 +124 0.1346539855 0.508607268333 +123 0.141859173775 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +148 0.1346539855 0.518047630787 +149 0.125005453825 0.516777276993 +125 0.127448782325 0.507658600807 +124 0.1346539855 0.508607268333 +SURF 0x10 +mat 9 +refs 4 +149 0.125005453825 0.516777276993 +150 0.116014450788 0.513053119183 +126 0.120734617114 0.504877567291 +125 0.127448782325 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +150 0.116014450788 0.513053119183 +151 0.108293712139 0.50712877512 +127 0.114969015121 0.500453472137 +126 0.120734617114 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +151 0.108293712139 0.50712877512 +152 0.10236941278 0.499408006668 +128 0.11054494977 0.494687855244 +127 0.114969015121 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +152 0.10236941278 0.499408006668 +153 0.0986452102661 0.490417033434 +129 0.107763856649 0.487973690033 +128 0.11054494977 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +153 0.0986452102661 0.490417033434 +154 0.0973749309778 0.480768471956 +130 0.106815263629 0.480768471956 +129 0.107763856649 0.487973690033 +SURF 0x10 +mat 9 +refs 4 +154 0.0973749309778 0.480768471956 +155 0.0986452102661 0.471119970083 +131 0.107763856649 0.473563283682 +130 0.106815263629 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +155 0.0986452102661 0.471119970083 +156 0.10236941278 0.462128996849 +132 0.11054494977 0.466849118471 +131 0.107763856649 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +156 0.10236941278 0.462128996849 +157 0.108293741941 0.454408228397 +133 0.114969074726 0.461083561182 +132 0.11054494977 0.466849118471 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +134 0.120734632015 0.456659436226 +133 0.114969074726 0.461083561182 +157 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +159 0.125005483627 0.444759726524 +135 0.127448827028 0.453878372908 +134 0.120734632015 0.456659436226 +SURF 0x10 +mat 9 +refs 4 +159 0.125005483627 0.444759726524 +160 0.134654000401 0.443489462137 +136 0.134654000401 0.452929794788 +135 0.127448827028 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +160 0.134654000401 0.443489462137 +161 0.144302561879 0.444759726524 +137 0.141859203577 0.453878372908 +136 0.134654000401 0.452929794788 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +138 0.148573338985 0.456659466028 +137 0.141859203577 0.453878372908 +161 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +163 0.161014273763 0.454408228397 +139 0.154338926077 0.461083561182 +138 0.148573338985 0.456659466028 +SURF 0x10 +mat 9 +refs 4 +163 0.161014273763 0.454408228397 +164 0.166938588023 0.462128996849 +140 0.158763021231 0.466849148273 +139 0.154338926077 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +164 0.166938588023 0.462128996849 +165 0.170662805438 0.471119970083 +141 0.161544129252 0.473563283682 +140 0.158763021231 0.466849148273 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +142 0.162492707372 0.480768471956 +141 0.161544129252 0.473563283682 +165 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +167 0.170662805438 0.490417033434 +143 0.161544129252 0.487973719835 +142 0.162492707372 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +169 0.166938588023 0.499408066273 +144 0.158763021231 0.494687855244 +143 0.161544129252 0.487973719835 +167 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +168 0.16101424396 0.50712877512 +145 0.154338926077 0.500453472137 +144 0.158763021231 0.494687855244 +169 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +146 0.15329349041 0.513053119183 +168 0.16101424396 0.50712877512 +192 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +171 0.144302502275 0.516777276993 +147 0.144302502275 0.516777276993 +146 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +171 0.144302502275 0.516777276993 +172 0.1346539855 0.518047630787 +148 0.1346539855 0.518047630787 +147 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +172 0.1346539855 0.518047630787 +173 0.125005453825 0.516777276993 +149 0.125005453825 0.516777276993 +148 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +173 0.125005453825 0.516777276993 +174 0.116014450788 0.513053119183 +150 0.116014450788 0.513053119183 +149 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +174 0.116014450788 0.513053119183 +175 0.108293712139 0.50712877512 +151 0.108293712139 0.50712877512 +150 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +175 0.108293712139 0.50712877512 +176 0.10236941278 0.499408006668 +152 0.10236941278 0.499408006668 +151 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +176 0.10236941278 0.499408006668 +177 0.0986452102661 0.490417033434 +153 0.0986452102661 0.490417033434 +152 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +177 0.0986452102661 0.490417033434 +178 0.0973749309778 0.480768471956 +154 0.0973749309778 0.480768471956 +153 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +178 0.0973749309778 0.480768471956 +179 0.0986452102661 0.471119970083 +155 0.0986452102661 0.471119970083 +154 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +179 0.0986452102661 0.471119970083 +180 0.10236941278 0.462128996849 +156 0.10236941278 0.462128996849 +155 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +180 0.10236941278 0.462128996849 +181 0.108293741941 0.454408228397 +157 0.108293741941 0.454408228397 +156 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +158 0.116014495492 0.448483914137 +157 0.108293741941 0.454408228397 +181 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +183 0.125005483627 0.444759726524 +159 0.125005483627 0.444759726524 +158 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +183 0.125005483627 0.444759726524 +184 0.134654000401 0.443489462137 +160 0.134654000401 0.443489462137 +159 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +184 0.134654000401 0.443489462137 +185 0.144302561879 0.444759726524 +161 0.144302561879 0.444759726524 +160 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +162 0.153293505311 0.448483914137 +161 0.144302561879 0.444759726524 +185 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +187 0.161014273763 0.454408228397 +163 0.161014273763 0.454408228397 +162 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +187 0.161014273763 0.454408228397 +188 0.166938588023 0.462128996849 +164 0.166938588023 0.462128996849 +163 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +188 0.166938588023 0.462128996849 +189 0.170662805438 0.471119970083 +165 0.170662805438 0.471119970083 +164 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +166 0.171933025122 0.480768531561 +165 0.170662805438 0.471119970083 +189 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +191 0.170662805438 0.490417033434 +167 0.170662805438 0.490417033434 +166 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +193 0.166938588023 0.499408066273 +169 0.166938588023 0.499408066273 +167 0.170662805438 0.490417033434 +191 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +192 0.16101424396 0.50712877512 +168 0.16101424396 0.50712877512 +169 0.166938588023 0.499408066273 +193 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +170 0.15329349041 0.513053119183 +192 0.16101424396 0.50712877512 +216 0.163465932012 0.509580433369 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +195 0.145199865103 0.520126402378 +171 0.144302502275 0.516777276993 +170 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +195 0.145199865103 0.520126402378 +196 0.134653955698 0.521514713764 +172 0.1346539855 0.518047630787 +171 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +196 0.134653955698 0.521514713764 +197 0.124108076096 0.520126402378 +173 0.125005453825 0.516777276993 +172 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +197 0.124108076096 0.520126402378 +198 0.114280834794 0.516055822372 +174 0.116014450788 0.513053119183 +173 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +198 0.114280834794 0.516055822372 +199 0.105842024088 0.509580433369 +175 0.108293712139 0.50712877512 +174 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +199 0.105842024088 0.509580433369 +200 0.09936670959 0.501141607761 +176 0.10236941278 0.499408006668 +175 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +200 0.09936670959 0.501141607761 +201 0.0952961295843 0.491314411163 +177 0.0986452102661 0.490417033434 +176 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +201 0.0952961295843 0.491314411163 +202 0.0939077436924 0.480768471956 +178 0.0973749309778 0.480768471956 +177 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +202 0.0939077436924 0.480768471956 +203 0.0952961593866 0.470222562551 +179 0.0986452102661 0.471119970083 +178 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +203 0.0952961593866 0.470222562551 +204 0.09936670959 0.460395395756 +180 0.10236941278 0.462128996849 +179 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +204 0.09936670959 0.460395395756 +205 0.10584205389 0.451956540346 +181 0.108293741941 0.454408228397 +180 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +182 0.116014495492 0.448483914137 +181 0.108293741941 0.454408228397 +205 0.10584205389 0.451956540346 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +207 0.124108105898 0.441410690546 +183 0.125005483627 0.444759726524 +182 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +207 0.124108105898 0.441410690546 +208 0.134654000401 0.440022289753 +184 0.134654000401 0.443489462137 +183 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +208 0.134654000401 0.440022289753 +209 0.145199909806 0.441410690546 +185 0.144302561879 0.444759726524 +184 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +186 0.153293505311 0.448483914137 +185 0.144302561879 0.444759726524 +209 0.145199909806 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +211 0.163465932012 0.451956599951 +187 0.161014273763 0.454408228397 +186 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +211 0.163465932012 0.451956599951 +212 0.169941276312 0.460395395756 +188 0.166938588023 0.462128996849 +187 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +212 0.169941276312 0.460395395756 +213 0.174011841416 0.470222622156 +189 0.170662805438 0.471119970083 +188 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +190 0.171933025122 0.480768531561 +189 0.170662805438 0.471119970083 +213 0.174011841416 0.470222622156 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +215 0.174011841416 0.491314411163 +191 0.170662805438 0.490417033434 +190 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +217 0.169941276312 0.501141607761 +193 0.166938588023 0.499408066273 +191 0.170662805438 0.490417033434 +215 0.174011841416 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +216 0.163465932012 0.509580433369 +192 0.16101424396 0.50712877512 +193 0.166938588023 0.499408066273 +217 0.169941276312 0.501141607761 +kids 0 +OBJECT poly +name "chassis" +data 5 +Plane +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 763 +0.252362 1.097182 -0.428079 +0.252362 1.086578 -0.461001 +0.252362 1.066264 -0.49554 +0.252362 1.032881 -0.506842 +0.252362 0.985467 -0.505455 +0.252362 0.985466 0.505519 +0.252362 1.032881 0.506905 +0.252362 1.066264 0.495604 +0.252362 1.086578 0.466547 +0.252362 1.097182 0.428143 +0.252362 1.131938 0.122241 +0.252362 1.131938 -0.122239 +0.272629 0.936207 -0.504311 +0.272629 0.936207 0.504311 +1.122312 1.10376 -0.497963 +1.122312 1.086578 -0.536254 +1.122312 1.066264 -0.576426 +1.122312 1.032881 -0.589571 +1.122312 0.985467 -0.587958 +1.122312 0.985466 0.587897 +1.122312 1.032881 0.58951 +1.122312 1.066264 0.576365 +1.122312 1.086578 0.542569 +1.122312 1.10376 0.497902 +1.122312 1.138515 0.14211 +1.122312 1.138516 -0.142243 +0.272629 0.814402 -0.429695 +0.894352 0.805266 -0.499832 +0.272629 0.814402 0.429685 +0.894352 0.805266 0.499706 +1.065105 0.453582 -0.499832 +0.272629 0.453582 -0.429695 +1.065105 0.453581 0.499706 +0.272629 0.453581 0.429685 +0.985336 0.936207 -0.579102 +0.985336 0.936207 0.579034 +1.123104 0.960837 -0.58509 +1.123104 0.960837 0.585025 +1.065105 0.453582 -6.3e-05 +1.198864 0.540983 0.53937 +1.198864 0.540984 -0.539467 +1.199284 0.453582 -0.547149 +1.199284 0.453582 -6.3e-05 +1.199284 0.453581 0.547023 +1.429014 1.086578 -0.621581 +1.429014 1.10376 -0.5772 +1.429014 1.066264 -0.668142 +1.429014 1.032881 -0.683377 +1.429014 0.985467 -0.681507 +1.429014 0.985466 0.681343 +1.429014 1.032881 0.683212 +1.429014 1.066264 0.667977 +1.429014 1.086578 0.628806 +1.429014 1.10376 0.577036 +1.429014 1.138515 0.164662 +1.429014 1.138516 -0.16491 +1.429022 0.889583 -0.678183 +1.429022 0.889583 0.678015 +1.429767 0.540983 0.662586 +1.429767 0.540984 -0.66279 +1.429772 0.453582 -0.00012 +1.429772 0.453582 -0.672228 +1.429772 0.453581 0.671988 +1.649014 0.799607 0.756265 +1.649759 0.540983 0.762197 +1.649014 0.799607 -0.756425 +1.649759 0.540984 -0.762402 +1.649763 0.453582 -0.000123 +1.649763 0.453582 -0.773258 +1.649763 0.453581 0.773012 +1.895264 0.799607 0.756265 +1.896009 0.540983 0.762197 +1.895264 0.799607 -0.756425 +1.896009 0.540984 -0.762402 +1.774341 0.453582 -0.000123 +1.774341 0.453582 -0.773258 +1.774341 0.453581 0.773012 +1.486698 0.817483 0.725726 +1.486698 0.817483 -0.725891 +1.451524 0.849228 0.70187 +1.537731 0.801597 0.749581 +1.451524 0.849228 -0.702037 +1.537731 0.801597 -0.749745 +2.141494 0.540983 0.762197 +2.140749 1.056106 0.762041 +2.140749 1.056106 -0.7622 +2.141494 0.540984 -0.762402 +2.141498 0.420697 -0.000123 +2.141498 0.420698 -0.773258 +2.141498 0.420697 0.773012 +2.087064 1.003491 0.762041 +2.087064 1.003491 -0.7622 +1.951702 0.832492 0.756265 +1.951702 0.832492 -0.756425 +1.774341 0.453582 -0.38669 +1.774341 0.453582 0.386445 +1.777057 0.417409 -0.773258 +2.141498 0.420698 -0.38669 +1.777057 0.417409 -0.000123 +2.141498 0.420697 0.386445 +1.777057 0.417409 0.773012 +1.777057 0.417409 -0.38669 +1.777057 0.417409 0.386445 +2.252663 0.540983 0.762197 +2.28754 1.112929 0.762041 +2.28754 1.112929 -0.7622 +2.252663 0.540984 -0.762402 +2.28818 0.420697 0.773012 +2.28818 0.420698 -0.773258 +2.28818 0.420698 -0.38669 +2.28818 0.420697 -0.000123 +2.28818 0.420697 0.386445 +2.199939 1.093988 0.762041 +2.199939 1.093988 -0.7622 +3.227652 1.112929 0.762041 +3.227652 1.112929 -0.7622 +2.280284 0.675143 0.762197 +2.280284 0.675143 -0.762402 +2.339473 0.781681 0.762197 +2.339473 0.781682 -0.762402 +2.438119 0.880328 0.762197 +2.438119 0.880328 -0.762402 +2.560441 0.947408 0.762197 +2.560441 0.947408 -0.762402 +2.674871 0.967137 0.762197 +2.674871 0.967138 -0.762402 +2.793247 0.959246 0.762197 +2.793247 0.959246 -0.762402 +2.903732 0.915841 0.762197 +2.903732 0.915841 -0.762402 +3.006324 0.832978 0.762197 +3.006324 0.832978 -0.762402 +3.07735 0.742223 0.762197 +3.07735 0.742223 -0.762402 +3.1247 0.534415 0.762197 +3.1247 0.534416 -0.762402 +3.228738 0.534415 0.762197 +3.228738 0.534416 -0.762402 +2.731451 1.112929 0.762041 +2.731451 1.112929 -0.7622 +3.257521 1.112929 0.749468 +3.258607 0.534415 0.749621 +3.257521 1.112929 -0.749628 +3.258607 0.534416 -0.749826 +3.269268 1.112929 0.688573 +3.270353 0.534415 0.688714 +3.269268 1.112929 -0.688735 +3.270353 0.534416 -0.688916 +2.28818 0.420697 0.533652 +2.252663 0.540983 0.526185 +2.28818 0.420698 -0.533887 +2.252663 0.540984 -0.526392 +2.28818 0.420698 -0.267002 +2.28818 0.420697 -0.000118 +2.28818 0.420697 0.266767 +2.280284 0.675143 0.526185 +2.280284 0.675143 -0.526392 +2.339473 0.781681 0.526185 +2.339473 0.781682 -0.526392 +2.438119 0.880328 0.526185 +2.438119 0.880328 -0.526392 +2.560441 0.947408 0.526185 +2.560441 0.947408 -0.526392 +2.674871 0.967137 0.526185 +2.674871 0.967138 -0.526392 +2.793247 0.959246 0.526185 +2.793247 0.959246 -0.526392 +2.903732 0.915841 0.526185 +2.903732 0.915841 -0.526392 +3.006324 0.832978 0.526185 +3.006324 0.832978 -0.526392 +3.07735 0.742223 0.526185 +3.07735 0.742223 -0.526392 +3.1247 0.534415 0.526185 +3.1247 0.534416 -0.526392 +3.228738 0.534415 0.526185 +3.228738 0.534416 -0.526392 +3.258607 0.534415 0.517503 +3.258607 0.534416 -0.51771 +2.681076 0.535515 0.525678 +2.681075 0.535516 0.526185 +2.681076 0.535515 -0.525913 +2.681075 0.535516 -0.526392 +2.681076 0.535515 -0.263015 +2.681076 0.535515 -0.000118 +2.681076 0.535515 0.26278 +2.681075 0.535517 0.526185 +2.681075 0.535517 -0.526392 +2.681076 0.535518 0.526185 +2.681076 0.535518 -0.526392 +2.681077 0.535519 0.526185 +2.681077 0.535519 -0.526392 +2.681078 0.535519 0.526185 +2.681078 0.535519 -0.526392 +2.681079 0.535519 0.526185 +2.681079 0.535519 -0.526392 +2.68108 0.535519 0.526185 +2.68108 0.535519 -0.526392 +2.681081 0.535519 0.526185 +2.681081 0.535519 -0.526392 +2.681082 0.535518 0.526185 +2.681082 0.535518 -0.526392 +2.681082 0.535518 0.526185 +2.681082 0.535518 -0.526392 +2.681083 0.535517 0.526185 +2.681083 0.535517 -0.526392 +2.681083 0.535517 0.526185 +2.681083 0.535517 -0.526392 +2.681083 0.535517 0.517503 +2.681083 0.535517 -0.51771 +1.441935 1.086578 -0.593877 +1.441935 1.10376 -0.551474 +1.441935 1.066264 -0.638363 +1.441935 1.032881 -0.652919 +1.441935 1.032881 0.652771 +1.441935 1.066264 0.638214 +1.441935 1.086578 0.600789 +1.441935 1.10376 0.551326 +1.441935 1.138515 0.157329 +1.441935 1.138516 -0.157557 +1.441939 0.893057 -0.650438 +1.656589 0.799607 0.722568 +1.896855 0.799607 0.722568 +1.656589 0.799607 -0.722712 +1.896855 0.799607 -0.722712 +1.463898 0.849228 0.670597 +1.498218 0.817483 0.693389 +1.548011 0.801597 0.716182 +1.463898 0.849228 -0.670748 +1.498218 0.817483 -0.693539 +1.548011 0.801597 -0.71633 +2.136375 1.056106 0.728086 +2.083995 1.003491 0.728086 +2.136375 1.056106 -0.72823 +2.083995 1.003491 -0.72823 +1.951923 0.832492 0.722568 +1.951923 0.832492 -0.722712 +2.2796 1.112929 0.728086 +2.194128 1.093988 0.728086 +2.194128 1.093988 -0.72823 +2.2796 1.112929 -0.72823 +2.712724 1.112929 0.728086 +3.196868 1.112929 0.728086 +3.196868 1.112929 -0.72823 +2.712724 1.112929 -0.72823 +3.226011 1.112929 0.716074 +3.226011 1.112929 -0.716218 +3.237473 1.112929 0.657892 +3.237473 1.112929 -0.658038 +1.441935 0.917243 -0.593877 +1.441935 0.907494 -0.551474 +1.441935 0.929915 -0.638363 +1.441935 0.849117 -0.651133 +1.441935 0.849117 0.650984 +1.441935 0.889958 0.652771 +1.441935 0.929915 0.638214 +1.441935 0.917243 0.600789 +1.441935 0.907494 0.551326 +1.441935 0.907718 0.157329 +1.441935 0.907718 -0.157557 +1.441943 0.532806 -0.647957 +1.441943 0.532806 0.647804 +1.776722 0.532506 0.722568 +1.776722 0.532506 -0.722712 +1.463898 0.532671 0.670597 +1.498218 0.532565 0.693389 +1.548011 0.532512 0.716182 +1.463898 0.532671 -0.670748 +1.498218 0.532565 -0.693539 +1.548011 0.532512 -0.71633 +2.136375 0.919757 0.728086 +2.083995 0.867142 0.728086 +2.136375 0.919757 -0.72823 +2.083995 0.867142 -0.72823 +2.050542 0.532615 -0.722712 +2.2796 0.97658 0.728086 +2.194128 0.957639 0.728086 +2.194128 0.957639 -0.72823 +2.2796 0.97658 -0.72823 +2.712724 0.97658 0.728086 +3.196868 0.97658 0.728086 +3.196868 0.97658 -0.72823 +2.712724 0.97658 -0.72823 +3.226011 0.97658 0.716074 +3.226011 0.97658 -0.716218 +3.237473 0.97658 0.657892 +3.237473 0.97658 -0.658038 +2.2796 0.97658 0.491509 +2.712724 0.97658 0.491509 +3.196868 0.97658 0.491509 +3.196868 0.97658 -0.491653 +2.712724 0.97658 -0.491653 +2.2796 0.97658 -0.491653 +2.050542 0.532615 0.491509 +2.050542 0.532615 0.728086 +2.050542 0.532615 -0.491653 +2.165071 0.754597 0.491509 +2.165071 0.754598 -0.491653 +3.196868 0.826634 0.491509 +2.712724 0.826634 0.491509 +3.196868 0.826634 -0.491653 +2.712724 0.826634 -0.491653 +2.426464 0.547189 0.491509 +2.426464 0.547189 -0.491653 +1.185767 0.762674 -0.536874 +1.185767 0.762674 0.536721 +1.320322 0.910819 0.001089 +1.320322 0.929915 -0.638363 +1.320322 0.929915 0.638214 +0.252362 1.131938 1e-06 +0.252444 1.091031 -0.415097 +0.252444 1.080748 -0.447021 +0.252444 1.06105 -0.480514 +0.252444 1.028678 -0.491473 +0.252444 0.9827 -0.490129 +0.252444 0.9827 0.490214 +0.252444 1.028678 0.491558 +0.252444 1.061049 0.480599 +0.252444 1.080748 0.452422 +0.252444 1.091031 0.415182 +0.252444 1.124733 0.118549 +0.252444 1.124734 -0.118524 +0.272788 0.934934 -0.489019 +0.272788 0.934933 0.489042 +0.252444 1.124734 1.2e-05 +0.273426 1.091033 -0.415097 +0.273426 1.080748 -0.447021 +0.273426 1.06105 -0.480514 +0.273426 1.028678 -0.491473 +0.273426 0.9827 -0.490129 +0.273426 0.9827 0.490214 +0.273426 1.028678 0.491558 +0.273426 1.061049 0.480599 +0.273426 1.080748 0.452422 +0.273426 1.091031 0.415182 +0.273426 1.124733 0.118549 +0.273426 1.124734 -0.118524 +0.273426 1.124734 1.2e-05 +0.273425 1.052528 -0.455579 +0.273425 1.027533 -0.473081 +0.273425 0.99806 -0.480978 +0.273425 0.967662 -0.478319 +0.273425 0.940008 -0.465423 +0.273425 0.918432 -0.443847 +0.273425 0.905537 -0.416193 +0.273425 0.902877 -0.385796 +0.273425 0.910775 -0.356322 +0.273425 0.928276 -0.331328 +0.273425 0.953271 -0.313826 +0.273425 0.982745 -0.305929 +0.273425 1.013142 -0.308588 +0.273425 1.040796 -0.321483 +0.273425 1.062372 -0.343059 +0.273425 1.075267 -0.370714 +0.273425 1.077927 -0.401111 +0.273425 1.070029 -0.430584 +0.273425 1.025938 -0.297295 +0.273425 0.678064 -0.297295 +0.273425 0.678064 -0.252813 +0.273425 1.025938 -0.252813 +0.273425 1.052517 -0.275054 +0.273425 1.042584 -0.289535 +0.273425 1.042584 -0.260572 +0.273425 0.661284 -0.275054 +0.273425 0.66464 -0.262486 +0.273425 0.66464 -0.287622 +0.273425 0.638464 -0.221513 +0.273425 0.638464 -0.196377 +0.273425 0.635108 -0.208945 +0.273425 1.046611 -0.194463 +0.273425 1.046611 -0.223426 +0.273425 1.056544 -0.208945 +0.273425 1.029965 -0.186704 +0.273425 0.651888 -0.186704 +0.273425 0.651888 -0.231186 +0.273425 1.029965 -0.231186 +0.273425 1.029965 -0.162726 +0.273425 0.651888 -0.162726 +0.273425 0.651888 -0.118244 +0.273425 1.029965 -0.118244 +0.273425 1.056544 -0.140485 +0.273425 1.046611 -0.154966 +0.273425 1.046611 -0.126003 +0.273425 0.635108 -0.140485 +0.273425 0.638464 -0.127917 +0.273425 0.638464 -0.153053 +0.273425 0.638464 -0.076539 +0.273425 0.638464 -0.051402 +0.273425 0.635108 -0.06397 +0.273425 1.046611 -0.049489 +0.273425 1.046611 -0.078452 +0.273425 1.056544 -0.06397 +0.273425 1.029965 -0.04173 +0.273425 0.651888 -0.04173 +0.273425 0.651888 -0.086211 +0.273425 1.029965 -0.086211 +0.273425 1.029965 -0.022226 +0.273425 0.651888 -0.022226 +0.273425 1.056544 1.5e-05 +0.273425 1.046611 -0.014467 +0.273425 0.635108 1.5e-05 +0.273425 0.638464 -0.012553 +0.273425 0.638464 0.012546 +0.273425 1.046611 0.01446 +0.273425 0.651888 0.022219 +0.273425 1.029965 0.022219 +0.273425 1.029965 0.086205 +0.273425 0.651888 0.086205 +0.273425 0.651888 0.041723 +0.273425 1.029965 0.041723 +0.273425 1.056544 0.063964 +0.273425 1.046611 0.078445 +0.273425 1.046611 0.049482 +0.273425 0.635108 0.063964 +0.273425 0.638464 0.051396 +0.273425 0.638464 0.076532 +0.273425 0.638464 0.153046 +0.273425 0.638464 0.12791 +0.273425 0.635108 0.140478 +0.273425 1.046611 0.125997 +0.273425 1.046611 0.15496 +0.273425 1.056544 0.140478 +0.273425 1.029965 0.118237 +0.273425 0.651888 0.118237 +0.273425 0.651888 0.162719 +0.273425 1.029965 0.162719 +0.273425 1.029965 0.231179 +0.273425 0.651888 0.231179 +0.273425 0.651888 0.186697 +0.273425 1.029965 0.186697 +0.273425 1.056544 0.208938 +0.273425 1.046611 0.22342 +0.273425 1.046611 0.194457 +0.273425 0.635108 0.208938 +0.273425 0.638464 0.19637 +0.273425 0.638464 0.221506 +0.273425 0.66464 0.287615 +0.273425 0.66464 0.262479 +0.273425 0.661284 0.275047 +0.273425 1.042584 0.260566 +0.273425 1.042584 0.289529 +0.273425 1.052517 0.275047 +0.273425 1.025938 0.252806 +0.273425 0.678064 0.252807 +0.273425 0.678064 0.297288 +0.273425 1.025938 0.297288 +0.273425 1.070029 0.430578 +0.273425 1.077927 0.401104 +0.273425 1.075267 0.370707 +0.273425 1.062372 0.343053 +0.273425 1.040796 0.321477 +0.273425 1.013142 0.308581 +0.273425 0.982745 0.305922 +0.273425 0.953271 0.313819 +0.273425 0.928276 0.331321 +0.273425 0.910775 0.356316 +0.273425 0.902877 0.385789 +0.273425 0.905537 0.416186 +0.273425 0.918432 0.443841 +0.273425 0.940008 0.465417 +0.273425 0.967662 0.478312 +0.273425 0.99806 0.480972 +0.273425 1.027533 0.473074 +0.273425 1.052528 0.455573 +0.273426 1.124734 0.118517 +0.273426 0.9827 0.490122 +0.273426 1.028678 0.491467 +0.273426 1.06105 0.480507 +0.273426 1.080748 0.447015 +0.273426 1.091031 0.41509 +0.272788 0.934934 0.489012 +0.272629 0.453582 -1e-06 +0.272629 0.453582 0.429688 +0.272629 0.814402 0.429688 +0.272629 0.936208 0.504304 +0.302493 1.025938 -0.297295 +0.302493 0.678064 -0.297295 +0.302493 0.678064 -0.252813 +0.302493 1.025938 -0.252813 +0.302493 1.052517 -0.275054 +0.302493 1.042584 -0.289535 +0.302493 1.042584 -0.260572 +0.302493 0.661284 -0.275054 +0.302493 0.66464 -0.262486 +0.302493 0.66464 -0.287622 +0.302493 0.638464 -0.221513 +0.302493 0.651888 -0.231186 +0.302493 0.635108 -0.208945 +0.302493 0.638464 -0.196377 +0.302493 0.651888 -0.186704 +0.302493 1.046611 -0.194463 +0.302493 1.029965 -0.186704 +0.302493 1.056544 -0.208945 +0.302493 1.046611 -0.223426 +0.302493 1.029965 -0.231186 +0.302493 1.029965 -0.162726 +0.302493 0.651888 -0.162726 +0.302493 0.651888 -0.118244 +0.302493 1.029965 -0.118244 +0.302493 1.056544 -0.140485 +0.302493 1.046611 -0.154966 +0.302493 1.046611 -0.126003 +0.302493 0.635108 -0.140485 +0.302493 0.638464 -0.127917 +0.302493 0.638464 -0.153053 +0.302493 0.638464 -0.076539 +0.302493 0.651888 -0.086211 +0.302493 0.635108 -0.06397 +0.302493 0.638464 -0.051402 +0.302493 0.651888 -0.04173 +0.302493 1.046611 -0.049489 +0.302493 1.029965 -0.04173 +0.302493 1.056544 -0.06397 +0.302493 1.046611 -0.078452 +0.302493 1.029965 -0.086211 +0.302493 1.029965 -0.022226 +0.302493 0.651888 -0.022226 +0.302493 1.056544 1.5e-05 +0.302493 1.046611 -0.014467 +0.302493 0.635108 1.5e-05 +0.302493 0.638464 -0.012553 +0.302493 0.638464 0.012546 +0.302493 0.638464 0.051396 +0.302493 0.638464 0.076532 +0.302493 0.638464 0.12791 +0.302493 0.635108 0.063964 +0.302493 0.635108 0.140478 +0.302493 0.635108 0.208938 +0.302493 0.638464 0.153046 +0.302493 0.638464 0.19637 +0.302493 0.651888 0.022219 +0.302493 0.651888 0.041723 +0.302493 0.651888 0.086205 +0.302493 0.651888 0.118237 +0.302493 0.651888 0.162719 +0.302493 0.651888 0.186697 +0.302493 1.029965 0.022219 +0.302493 1.029965 0.041723 +0.302493 1.046611 0.01446 +0.302493 1.046611 0.049482 +0.302493 1.029965 0.086205 +0.302493 1.029965 0.118237 +0.302493 1.046611 0.078445 +0.302493 1.046611 0.125997 +0.302493 1.029965 0.162719 +0.302493 1.029965 0.186697 +0.302493 1.046611 0.15496 +0.302493 1.046611 0.194457 +0.302493 1.046611 0.22342 +0.302493 1.042584 0.260566 +0.302493 1.029965 0.231179 +0.302493 1.025938 0.252806 +0.302493 0.651888 0.231179 +0.302493 0.678064 0.252807 +0.302493 0.66464 0.262479 +0.302493 0.638464 0.221506 +0.302493 0.661284 0.275047 +0.302493 1.056544 0.063964 +0.302493 1.056544 0.140478 +0.302493 1.056544 0.208938 +0.302493 0.66464 0.287615 +0.302493 0.678064 0.297288 +0.302493 1.052517 0.275047 +0.302493 1.042584 0.289529 +0.302493 1.025938 0.297288 +0.298353 1.052528 -0.455579 +0.298353 1.027533 -0.473081 +0.298353 0.99806 -0.480978 +0.298353 0.967662 -0.478319 +0.298353 0.940008 -0.465423 +0.298353 0.918432 -0.443847 +0.298353 0.905537 -0.416193 +0.298353 0.902877 -0.385796 +0.298353 0.910775 -0.356322 +0.298353 0.928276 -0.331328 +0.298353 0.953271 -0.313826 +0.298353 0.982745 -0.305929 +0.298353 1.013142 -0.308588 +0.298353 1.040796 -0.321483 +0.298353 1.062372 -0.343059 +0.298353 1.075267 -0.370714 +0.298353 1.077927 -0.401111 +0.298353 1.070029 -0.430584 +0.298353 1.070029 0.430578 +0.298353 1.052528 0.455573 +0.298353 1.077927 0.401104 +0.298353 1.075267 0.370707 +0.298353 1.062372 0.343053 +0.298353 1.040796 0.321477 +0.298353 1.013142 0.308581 +0.298353 0.982745 0.305922 +0.298353 0.953271 0.313819 +0.298353 0.928276 0.331321 +0.298353 0.910775 0.356316 +0.298353 0.902877 0.385789 +0.298353 0.905537 0.416186 +0.298353 0.918432 0.443841 +0.298353 0.940008 0.465417 +0.298353 0.967662 0.478312 +0.298353 0.99806 0.480972 +0.298353 1.027533 0.473074 +3.270353 0.566662 -0.000101 +3.270353 0.534415 0.551541 +3.270353 0.534416 -0.551743 +3.270353 0.576739 0.505136 +3.270353 0.57674 -0.505338 +3.270353 0.576739 0.321914 +3.270353 0.576739 -0.322117 +3.270353 0.516277 0.234816 +3.270353 0.516277 -0.235019 +3.270353 0.516277 0.146303 +3.270353 0.516277 -0.146506 +3.270353 0.566662 0.09154 +3.270353 0.566662 -0.091743 +3.11126 0.593774 0.45252 +3.207973 0.493482 0.45252 +3.207973 0.493482 0.485205 +3.11126 0.593775 0.485205 +3.258418 0.593774 0.45252 +3.259753 0.493482 0.45252 +3.259753 0.493482 0.485205 +3.258418 0.593774 0.485205 +3.255948 0.478751 0.485205 +3.255948 0.478751 0.45252 +3.229454 0.478751 0.485205 +3.229454 0.478751 0.45252 +3.229454 0.478751 0.285783 +3.229454 0.478751 0.318468 +3.255948 0.478751 0.285783 +3.255948 0.478751 0.318468 +3.258418 0.593774 0.318468 +3.259753 0.493482 0.318468 +3.259753 0.493482 0.285783 +3.258418 0.593774 0.285783 +3.11126 0.593775 0.318468 +3.207973 0.493482 0.318468 +3.207973 0.493482 0.285783 +3.11126 0.593774 0.285783 +3.11126 0.593774 -0.28579 +3.207973 0.493482 -0.28579 +3.207973 0.493482 -0.318475 +3.11126 0.593775 -0.318475 +3.258418 0.593774 -0.28579 +3.259753 0.493482 -0.28579 +3.259753 0.493482 -0.318475 +3.258418 0.593774 -0.318475 +3.255948 0.478751 -0.318475 +3.255948 0.478751 -0.28579 +3.229454 0.478751 -0.318475 +3.229454 0.478751 -0.28579 +3.229454 0.478751 -0.452528 +3.229454 0.478751 -0.485213 +3.255948 0.478751 -0.452528 +3.255948 0.478751 -0.485213 +3.258418 0.593774 -0.485213 +3.259753 0.493482 -0.485213 +3.259753 0.493482 -0.452528 +3.258418 0.593774 -0.452528 +3.11126 0.593775 -0.485213 +3.207973 0.493482 -0.485213 +3.207973 0.493482 -0.452528 +3.11126 0.593774 -0.452528 +2.129625 0.4237 -0.452528 +2.139806 0.392144 -0.452528 +2.139806 0.392144 -0.485213 +2.129625 0.4237 -0.485213 +2.21653 0.4237 -0.452528 +2.206201 0.392144 -0.452528 +2.206201 0.392144 -0.485213 +2.21653 0.4237 -0.485213 +2.190179 0.374959 -0.485213 +2.190179 0.374959 -0.452528 +2.163685 0.374959 -0.485213 +2.163685 0.374959 -0.452528 +2.163685 0.374959 -0.28579 +2.163685 0.374959 -0.318475 +2.190179 0.374959 -0.28579 +2.190179 0.374959 -0.318475 +2.21653 0.4237 -0.318475 +2.206201 0.392144 -0.318475 +2.206201 0.392144 -0.28579 +2.21653 0.4237 -0.28579 +2.129625 0.4237 -0.318475 +2.139806 0.392144 -0.318475 +2.139806 0.392144 -0.28579 +2.129625 0.4237 -0.28579 +2.129625 0.4237 0.285783 +2.139806 0.392144 0.285783 +2.139806 0.392144 0.318468 +2.129625 0.4237 0.318468 +2.21653 0.4237 0.285783 +2.206201 0.392144 0.285783 +2.206201 0.392144 0.318468 +2.21653 0.4237 0.318468 +2.190179 0.374959 0.318468 +2.190179 0.374959 0.285783 +2.163685 0.374959 0.318468 +2.163685 0.374959 0.285783 +2.163685 0.374959 0.45252 +2.163685 0.374959 0.485205 +2.190179 0.374959 0.45252 +2.190179 0.374959 0.485205 +2.21653 0.4237 0.485205 +2.206201 0.392144 0.485205 +2.206201 0.392144 0.45252 +2.21653 0.4237 0.45252 +2.129625 0.4237 0.485205 +2.139806 0.392144 0.485205 +2.139806 0.392144 0.45252 +2.129625 0.4237 0.45252 +0.996438 0.458303 0.45252 +1.037045 0.405881 0.45252 +1.037045 0.405881 0.485205 +0.996438 0.458303 0.485205 +1.144195 0.458303 0.45252 +1.10344 0.405881 0.45252 +1.10344 0.405881 0.485205 +1.144195 0.458303 0.485205 +1.087418 0.388696 0.485205 +1.087418 0.388696 0.45252 +1.060924 0.388696 0.485205 +1.060924 0.388696 0.45252 +1.060924 0.388696 0.285783 +1.060924 0.388696 0.318468 +1.087418 0.388696 0.285783 +1.087418 0.388696 0.318468 +1.144195 0.458303 0.318468 +1.10344 0.405881 0.318468 +1.10344 0.405881 0.285783 +1.144195 0.458303 0.285783 +0.996438 0.458303 0.318468 +1.037045 0.405881 0.318468 +1.037045 0.405881 0.285783 +0.996438 0.458303 0.285783 +0.996438 0.458303 -0.28579 +1.037045 0.405881 -0.28579 +1.037045 0.405881 -0.318475 +0.996438 0.458303 -0.318475 +1.144195 0.458303 -0.28579 +1.10344 0.405881 -0.28579 +1.10344 0.405881 -0.318475 +1.144195 0.458303 -0.318475 +1.087418 0.388696 -0.318475 +1.087418 0.388696 -0.28579 +1.060924 0.388696 -0.318475 +1.060924 0.388696 -0.28579 +1.060924 0.388696 -0.452528 +1.060924 0.388696 -0.485213 +1.087418 0.388696 -0.452528 +1.087418 0.388696 -0.485213 +1.144195 0.458303 -0.485213 +1.10344 0.405881 -0.485213 +1.10344 0.405881 -0.452528 +1.144195 0.458303 -0.452528 +0.996438 0.458303 -0.485213 +1.037045 0.405881 -0.485213 +1.037045 0.405881 -0.452528 +0.996438 0.458303 -0.452528 +3.248984 0.614943 -0.525913 +3.248984 0.614943 -0.263015 +3.248984 0.614943 -0.000118 +3.248984 0.614943 0.525678 +3.248984 0.614943 0.26278 +numsurf 792 +SURF 0x10 +mat 9 +refs 4 +1 0.976687550545 0.579375505447 +0 0.976687550545 0.586058974266 +14 0.800081014633 0.571871995926 +15 0.800081014633 0.564098536968 +SURF 0x10 +mat 9 +refs 4 +2 0.976687550545 0.572363734245 +1 0.976687550545 0.579375505447 +15 0.800081014633 0.564098536968 +16 0.800081014633 0.555943131447 +SURF 0x10 +mat 9 +refs 4 +3 0.97451210022 0.955170571804 +2 0.97451210022 0.961947441101 +16 0.797905445099 0.961947441101 +17 0.797905445099 0.955170571804 +SURF 0x10 +mat 9 +refs 4 +3 0.97451210022 0.955170571804 +17 0.797905445099 0.955170571804 +18 0.797905445099 0.94554489851 +4 0.97451210022 0.94554489851 +SURF 0x10 +mat 9 +refs 4 +6 0.351471543312 0.147847235203 +5 0.351471543312 0.138221681118 +19 0.528078258038 0.138221681118 +20 0.528078258038 0.147847235203 +SURF 0x10 +mat 9 +refs 4 +6 0.351471543312 0.147847235203 +20 0.528078258038 0.147847235203 +21 0.528078258038 0.154624134302 +7 0.351471543312 0.154624134302 +SURF 0x10 +mat 9 +refs 4 +8 0.976687550545 0.767674982548 +7 0.976687550545 0.773573875427 +21 0.800081014633 0.789969086647 +22 0.800081014633 0.783108115196 +SURF 0x10 +mat 9 +refs 4 +9 0.976687550545 0.759878873825 +8 0.976687550545 0.767674982548 +22 0.800081014633 0.783108115196 +23 0.800081014633 0.774040460587 +SURF 0x10 +mat 9 +refs 4 +9 0.976687550545 0.759878873825 +23 0.800081014633 0.774040460587 +24 0.800081014633 0.701811671257 +10 0.976687550545 0.69777816534 +SURF 0x10 +mat 9 +refs 4 +0 0.976687550545 0.586058974266 +11 0.976687550545 0.648146748543 +25 0.800081014633 0.644085884094 +14 0.800081014633 0.571871995926 +SURF 0x10 +mat 9 +refs 4 +26 0.970397591591 0.910817503929 +27 0.844183027744 0.908962905407 +30 0.809518694878 0.837568044662 +31 0.970397591591 0.837568044662 +SURF 0x10 +mat 9 +refs 4 +28 0.355586141348 0.103494256735 +33 0.355586141348 0.0302448868752 +32 0.516464948654 0.0302448868752 +29 0.481800675392 0.101639598608 +SURF 0x10 +mat 9 +refs 3 +34 0.825712323189 0.935544967651 +12 0.970397591591 0.935544967651 +4 0.97451210022 0.94554489851 +SURF 0x10 +mat 9 +refs 3 +35 0.500271260738 0.128221720457 +5 0.351471543312 0.138221681118 +13 0.355586141348 0.128221720457 +SURF 0x10 +mat 9 +refs 3 +34 0.825712323189 0.935544967651 +27 0.844183027744 0.908962905407 +26 0.970397591591 0.910817503929 +SURF 0x10 +mat 9 +refs 3 +12 0.970397591591 0.935544967651 +34 0.825712323189 0.935544967651 +26 0.970397591591 0.910817503929 +SURF 0x10 +mat 9 +refs 3 +35 0.500271260738 0.128221720457 +28 0.355586141348 0.103494256735 +29 0.481800675392 0.101639598608 +SURF 0x10 +mat 9 +refs 3 +13 0.355586141348 0.128221720457 +28 0.355586141348 0.103494256735 +35 0.500271260738 0.128221720457 +SURF 0x10 +mat 9 +refs 3 +18 0.797905445099 0.94554489851 +36 0.797744631767 0.940544962883 +4 0.97451210022 0.94554489851 +SURF 0x10 +mat 9 +refs 3 +36 0.797744631767 0.940544962883 +34 0.825712323189 0.935544967651 +4 0.97451210022 0.94554489851 +SURF 0x10 +mat 9 +refs 3 +19 0.528078258038 0.138221681118 +5 0.351471543312 0.138221681118 +37 0.528239071369 0.133221775293 +SURF 0x10 +mat 9 +refs 3 +37 0.528239071369 0.133221775293 +5 0.351471543312 0.138221681118 +35 0.500271260738 0.128221720457 +SURF 0x10 +mat 9 +refs 3 +30 0.51622313261 0.425319463015 +38 0.51622313261 0.323862433434 +31 0.355344176292 0.411081165075 +SURF 0x10 +mat 9 +refs 3 +38 0.51622313261 0.323862433434 +32 0.51622313261 0.222405403852 +33 0.355344176292 0.236620336771 +SURF 0x10 +mat 9 +refs 3 +35 0.500271260738 0.128221720457 +29 0.481800675392 0.101639598608 +39 0.54361897707 0.0479881465435 +SURF 0x10 +mat 9 +refs 3 +39 0.54361897707 0.0479881465435 +29 0.481800675392 0.101639598608 +32 0.516464948654 0.0302448868752 +SURF 0x10 +mat 9 +refs 3 +34 0.825712323189 0.935544967651 +40 0.782364666462 0.855311393738 +27 0.844183027744 0.908962905407 +SURF 0x10 +mat 9 +refs 3 +40 0.782364666462 0.855311393738 +30 0.809518694878 0.837568044662 +27 0.844183027744 0.908962905407 +SURF 0x10 +mat 9 +refs 3 +35 0.500271260738 0.128221720457 +39 0.54361897707 0.0479881465435 +37 0.528239071369 0.133221775293 +SURF 0x10 +mat 9 +refs 3 +34 0.825712323189 0.935544967651 +36 0.797744631767 0.940544962883 +40 0.782364666462 0.855311393738 +SURF 0x10 +mat 9 +refs 4 +38 0.51622313261 0.323862433434 +30 0.51622313261 0.425319463015 +41 0.543462514877 0.434925228357 +42 0.543462514877 0.323862433434 +SURF 0x10 +mat 9 +refs 4 +32 0.51622313261 0.222405403852 +38 0.51622313261 0.323862433434 +42 0.543462514877 0.323862433434 +43 0.543462514877 0.212799608707 +SURF 0x10 +mat 9 +refs 3 +32 0.51622313261 0.222405403852 +43 0.543462514877 0.212799608707 +39 0.543377161026 0.214353352785 +SURF 0x10 +mat 9 +refs 3 +30 0.51622313261 0.425319463015 +40 0.543377161026 0.433365702629 +41 0.543462514877 0.434925228357 +SURF 0x10 +mat 9 +refs 4 +15 0.800081014633 0.564098536968 +14 0.800081014633 0.571871995926 +45 0.737817883492 0.555786192417 +44 0.737817883492 0.546776533127 +SURF 0x10 +mat 9 +refs 4 +16 0.800081014633 0.555943131447 +15 0.800081014633 0.564098536968 +44 0.737817883492 0.546776533127 +46 0.737817883492 0.537324428558 +SURF 0x10 +mat 9 +refs 4 +17 0.797905445099 0.955170571804 +16 0.797905445099 0.961947441101 +46 0.735642433167 0.961947441101 +47 0.735642433167 0.955170571804 +SURF 0x10 +mat 9 +refs 4 +17 0.797905445099 0.955170571804 +47 0.735642433167 0.955170571804 +48 0.735642433167 0.94554489851 +18 0.797905445099 0.94554489851 +SURF 0x10 +mat 9 +refs 4 +20 0.528078258038 0.147847235203 +19 0.528078258038 0.138221681118 +49 0.59034126997 0.138221681118 +50 0.59034126997 0.147847235203 +SURF 0x10 +mat 9 +refs 4 +20 0.528078258038 0.147847235203 +50 0.59034126997 0.147847235203 +51 0.59034126997 0.154624134302 +21 0.528078258038 0.154624134302 +SURF 0x10 +mat 9 +refs 4 +22 0.800081014633 0.783108115196 +21 0.800081014633 0.789969086647 +51 0.737817883492 0.80856692791 +52 0.737817883492 0.800614893436 +SURF 0x10 +mat 9 +refs 4 +23 0.800081014633 0.774040460587 +22 0.800081014633 0.783108115196 +52 0.737817883492 0.800614893436 +53 0.737817883492 0.790105223656 +SURF 0x10 +mat 9 +refs 4 +23 0.800081014633 0.774040460587 +53 0.737817883492 0.790105223656 +54 0.737817883492 0.706390142441 +24 0.800081014633 0.701811671257 +SURF 0x10 +mat 9 +refs 4 +25 0.800081014633 0.644085884094 +24 0.800081014633 0.701811671257 +54 0.737817883492 0.706390142441 +55 0.737817883492 0.639484226704 +SURF 0x10 +mat 9 +refs 4 +14 0.800081014633 0.571871995926 +25 0.800081014633 0.644085884094 +55 0.737817883492 0.639484226704 +45 0.737817883492 0.555786192417 +SURF 0x10 +mat 9 +refs 4 +36 0.797744631767 0.940544962883 +18 0.797905445099 0.94554489851 +48 0.735642433167 0.94554489851 +56 0.735640645027 0.92607998848 +SURF 0x10 +mat 9 +refs 4 +37 0.528239071369 0.133221775293 +57 0.590342998505 0.118756651878 +49 0.59034126997 0.138221681118 +19 0.528078258038 0.138221681118 +SURF 0x10 +mat 9 +refs 4 +39 0.54361897707 0.0479881465435 +58 0.590494215488 0.0479881465435 +57 0.590342998505 0.118756651878 +37 0.528239071369 0.133221775293 +SURF 0x10 +mat 9 +refs 4 +40 0.782364666462 0.855311393738 +36 0.797744631767 0.940544962883 +56 0.735640645027 0.92607998848 +59 0.735489487648 0.855311393738 +SURF 0x10 +mat 9 +refs 4 +42 0.543462514877 0.323862433434 +41 0.543462514877 0.434925228357 +61 0.590253174305 0.460317224264 +60 0.590253174305 0.323874056339 +SURF 0x10 +mat 9 +refs 4 +43 0.543462514877 0.212799608707 +42 0.543462514877 0.323862433434 +60 0.590253174305 0.323874056339 +62 0.590253174305 0.18743082881 +SURF 0x10 +mat 9 +refs 4 +43 0.543704330921 0.0302448868752 +62 0.590495049953 0.0302448868752 +58 0.590494215488 0.0479881465435 +39 0.54361897707 0.0479881465435 +SURF 0x10 +mat 9 +refs 4 +41 0.782279372215 0.837568044662 +40 0.782364666462 0.855311393738 +59 0.735489487648 0.855311393738 +61 0.735488593578 0.837568223476 +SURF 0x10 +mat 9 +refs 4 +60 0.590253174305 0.323874056339 +61 0.590253174305 0.460317224264 +68 0.63491332531 0.48082703352 +67 0.63491332531 0.323874652386 +SURF 0x10 +mat 9 +refs 4 +62 0.590253174305 0.18743082881 +60 0.590253174305 0.323874056339 +67 0.63491332531 0.323874652386 +69 0.63491332531 0.166922152042 +SURF 0x10 +mat 9 +refs 4 +62 0.590495049953 0.0302448868752 +69 0.635155260563 0.0302448868752 +64 0.635154306889 0.0479881465435 +58 0.590494215488 0.0479881465435 +SURF 0x10 +mat 9 +refs 4 +61 0.735488593578 0.837568223476 +59 0.735489487648 0.855311393738 +66 0.690829396248 0.855311393738 +68 0.690828442574 0.837568223476 +SURF 0x10 +mat 9 +refs 4 +64 0.635154306889 0.0479881465435 +71 0.68514496088 0.0479881465435 +70 0.684993624687 0.100490808487 +63 0.635003089905 0.100490808487 +SURF 0x10 +mat 9 +refs 4 +66 0.690829396248 0.855311393738 +65 0.690980613232 0.907814145088 +72 0.640990078449 0.907814145088 +73 0.640838742256 0.855311393738 +SURF 0x10 +mat 9 +refs 4 +69 0.635155260563 0.0302448868752 +76 0.660445213318 0.0302448868752 +71 0.68514496088 0.0479881465435 +64 0.635154306889 0.0479881465435 +SURF 0x10 +mat 9 +refs 4 +68 0.690828442574 0.837568223476 +66 0.690829396248 0.855311393738 +73 0.640838742256 0.855311393738 +75 0.665538430214 0.837568223476 +SURF 0x10 +mat 9 +refs 3 +77 0.60205167532 0.104119688272 +58 0.590494215488 0.0479881465435 +64 0.635154306889 0.0479881465435 +SURF 0x10 +mat 9 +refs 3 +78 0.723932027817 0.911442875862 +66 0.690829396248 0.855311393738 +59 0.735489487648 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +57 0.590342998505 0.118756651878 +58 0.590494215488 0.0479881465435 +79 0.594911038876 0.110564142466 +SURF 0x10 +mat 9 +refs 3 +79 0.594911038876 0.110564142466 +58 0.590494215488 0.0479881465435 +77 0.60205167532 0.104119688272 +SURF 0x10 +mat 9 +refs 3 +77 0.60205167532 0.104119688272 +64 0.635154306889 0.0479881465435 +80 0.612411737442 0.100894629955 +SURF 0x10 +mat 9 +refs 3 +80 0.612411737442 0.100894629955 +64 0.635154306889 0.0479881465435 +63 0.635003089905 0.100490808487 +SURF 0x10 +mat 9 +refs 3 +56 0.735640645027 0.92607998848 +81 0.731072723866 0.91788738966 +59 0.735489487648 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +81 0.731072723866 0.91788738966 +78 0.723932027817 0.911442875862 +59 0.735489487648 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +78 0.723932027817 0.911442875862 +82 0.71357190609 0.908217906952 +66 0.690829396248 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +82 0.71357190609 0.908217906952 +65 0.690980613232 0.907814145088 +66 0.690829396248 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +90 0.723930478096 0.141880780458 +71 0.68514496088 0.0479881465435 +83 0.734980404377 0.0479881465435 +SURF 0x10 +mat 9 +refs 3 +90 0.723930478096 0.141880780458 +83 0.734980404377 0.0479881465435 +84 0.734829068184 0.152562111616 +SURF 0x10 +mat 9 +refs 3 +91 0.602053165436 0.949204087257 +86 0.591003298759 0.855311393738 +73 0.640838742256 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +91 0.602053165436 0.949204087257 +85 0.591154634953 0.959885239601 +86 0.591003298759 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +70 0.684993624687 0.100490808487 +71 0.68514496088 0.0479881465435 +92 0.696451067924 0.107166677713 +SURF 0x10 +mat 9 +refs 3 +92 0.696451067924 0.107166677713 +71 0.68514496088 0.0479881465435 +90 0.723930478096 0.141880780458 +SURF 0x10 +mat 9 +refs 3 +72 0.640990078449 0.907814145088 +93 0.629532575607 0.914489865303 +73 0.640838742256 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +93 0.629532575607 0.914489865303 +91 0.602053165436 0.949204087257 +73 0.640838742256 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +94 0.660203576088 0.402350902557 +67 0.63491332531 0.323874652386 +68 0.63491332531 0.48082703352 +SURF 0x10 +mat 9 +refs 3 +75 0.660203576088 0.48082703352 +94 0.660203576088 0.402350902557 +68 0.63491332531 0.48082703352 +SURF 0x10 +mat 9 +refs 3 +94 0.660203576088 0.402350902557 +74 0.660203576088 0.323874652386 +67 0.63491332531 0.323874652386 +SURF 0x10 +mat 9 +refs 3 +95 0.660203576088 0.245398342609 +69 0.63491332531 0.166922152042 +67 0.63491332531 0.323874652386 +SURF 0x10 +mat 9 +refs 3 +74 0.660203576088 0.323874652386 +95 0.660203576088 0.245398342609 +67 0.63491332531 0.323874652386 +SURF 0x10 +mat 9 +refs 3 +95 0.660203576088 0.245398342609 +76 0.660203576088 0.166922152042 +69 0.63491332531 0.166922152042 +SURF 0x10 +mat 9 +refs 4 +94 0.660203576088 0.402350902557 +75 0.660203576088 0.48082703352 +96 0.660754859447 0.48082703352 +101 0.660754859447 0.402350902557 +SURF 0x10 +mat 9 +refs 4 +74 0.660203576088 0.323874652386 +94 0.660203576088 0.402350902557 +101 0.660754859447 0.402350902557 +98 0.660754859447 0.323874652386 +SURF 0x10 +mat 9 +refs 4 +101 0.660754859447 0.402350902557 +96 0.660754859447 0.48082703352 +88 0.734739363194 0.48082703352 +97 0.734739363194 0.402350902557 +SURF 0x10 +mat 9 +refs 4 +98 0.660754859447 0.323874652386 +101 0.660754859447 0.402350902557 +97 0.734739363194 0.402350902557 +87 0.734739363194 0.323874652386 +SURF 0x10 +mat 9 +refs 4 +95 0.660203576088 0.245398342609 +74 0.660203576088 0.323874652386 +98 0.660754859447 0.323874652386 +102 0.660754859447 0.245398342609 +SURF 0x10 +mat 9 +refs 4 +76 0.660203576088 0.166922152042 +95 0.660203576088 0.245398342609 +102 0.660754859447 0.245398342609 +100 0.660754859447 0.166922152042 +SURF 0x10 +mat 9 +refs 4 +102 0.660754859447 0.245398342609 +98 0.660754859447 0.323874652386 +87 0.734739363194 0.323874652386 +99 0.734739363194 0.245398342609 +SURF 0x10 +mat 9 +refs 4 +100 0.660754859447 0.166922152042 +102 0.660754859447 0.245398342609 +99 0.734739363194 0.245398342609 +89 0.734739363194 0.166922152042 +SURF 0x10 +mat 9 +refs 3 +100 0.660996735096 0.0229015946388 +83 0.734980404377 0.0479881465435 +71 0.68514496088 0.0479881465435 +SURF 0x10 +mat 9 +refs 3 +89 0.734981238842 0.023569136858 +83 0.734980404377 0.0479881465435 +100 0.660996735096 0.0229015946388 +SURF 0x10 +mat 9 +refs 3 +100 0.660996735096 0.0229015946388 +71 0.68514496088 0.0479881465435 +76 0.660445213318 0.0302448868752 +SURF 0x10 +mat 9 +refs 3 +96 0.66498696804 0.83022493124 +73 0.640838742256 0.855311393738 +86 0.591003298759 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +88 0.59100240469 0.830892443657 +96 0.66498696804 0.83022493124 +86 0.591003298759 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +96 0.66498696804 0.83022493124 +75 0.665538430214 0.837568223476 +73 0.640838742256 0.855311393738 +SURF 0x10 +mat 9 +refs 4 +89 0.734981238842 0.023569136858 +107 0.764758884907 0.023569136858 +103 0.757548570633 0.0479881465435 +83 0.734980404377 0.0479881465435 +SURF 0x10 +mat 9 +refs 4 +88 0.59100240469 0.830892443657 +86 0.591003298759 0.855311393738 +106 0.568435072899 0.855311393738 +108 0.56122481823 0.830892443657 +SURF 0x10 +mat 9 +refs 4 +97 0.734739363194 0.402350902557 +88 0.734739363194 0.48082703352 +108 0.764516949654 0.48082703352 +109 0.764516949654 0.402350902557 +SURF 0x10 +mat 9 +refs 4 +87 0.734739363194 0.323874652386 +97 0.734739363194 0.402350902557 +109 0.764516949654 0.402350902557 +110 0.764516949654 0.323874652386 +SURF 0x10 +mat 9 +refs 4 +89 0.734739363194 0.166922152042 +99 0.734739363194 0.245398342609 +111 0.764516949654 0.245398342609 +107 0.764516949654 0.166922152042 +SURF 0x10 +mat 9 +refs 4 +99 0.734739363194 0.245398342609 +87 0.734739363194 0.323874652386 +110 0.764516949654 0.323874652386 +111 0.764516949654 0.245398342609 +SURF 0x10 +mat 9 +refs 3 +112 0.746845185757 0.160252451897 +83 0.734980404377 0.0479881465435 +103 0.757548570633 0.0479881465435 +SURF 0x10 +mat 9 +refs 3 +84 0.734829068184 0.152562111616 +83 0.734980404377 0.0479881465435 +112 0.746845185757 0.160252451897 +SURF 0x10 +mat 9 +refs 3 +112 0.746845185757 0.160252451897 +103 0.757548570633 0.0479881465435 +104 0.764628887177 0.164097517729 +SURF 0x10 +mat 9 +refs 3 +113 0.579138576984 0.967575550079 +106 0.568435072899 0.855311393738 +86 0.591003298759 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +85 0.591154634953 0.959885239601 +113 0.579138576984 0.967575550079 +86 0.591003298759 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +113 0.579138576984 0.967575550079 +105 0.56135481596 0.971420645714 +106 0.568435072899 0.855311393738 +SURF 0x10 +mat 9 +refs 3 +114 0.955478906631 0.164097517729 +134 0.934579074383 0.0466547906399 +136 0.955699324608 0.0466547906399 +SURF 0x10 +mat 9 +refs 3 +114 0.955478906631 0.164097517729 +132 0.924966454506 0.0888412892818 +134 0.934579074383 0.0466547906399 +SURF 0x10 +mat 9 +refs 3 +114 0.955478906631 0.164097517729 +130 0.910547673702 0.107265263796 +132 0.924966454506 0.0888412892818 +SURF 0x10 +mat 9 +refs 3 +114 0.955478906631 0.164097517729 +128 0.889720618725 0.124087154865 +130 0.910547673702 0.107265263796 +SURF 0x10 +mat 9 +refs 3 +114 0.955478906631 0.164097517729 +126 0.867291331291 0.132898688316 +128 0.889720618725 0.124087154865 +SURF 0x10 +mat 9 +refs 3 +114 0.955478906631 0.164097517729 +138 0.854746162891 0.164097517729 +126 0.867291331291 0.132898688316 +SURF 0x10 +mat 9 +refs 3 +124 0.843260109425 0.134500682354 +126 0.867291331291 0.132898688316 +138 0.854746162891 0.164097517729 +SURF 0x10 +mat 9 +refs 3 +122 0.820029854774 0.130495458841 +124 0.843260109425 0.134500682354 +138 0.854746162891 0.164097517729 +SURF 0x10 +mat 9 +refs 3 +104 0.764628887177 0.164097517729 +122 0.820029854774 0.130495458841 +138 0.854746162891 0.164097517729 +SURF 0x10 +mat 9 +refs 3 +104 0.764628887177 0.164097517729 +120 0.795197606087 0.116877764463 +122 0.820029854774 0.130495458841 +SURF 0x10 +mat 9 +refs 3 +104 0.764628887177 0.164097517729 +118 0.775171518326 0.0968517363071 +120 0.795197606087 0.116877764463 +SURF 0x10 +mat 9 +refs 3 +104 0.764628887177 0.164097517729 +116 0.76315587759 0.0752235651016 +118 0.775171518326 0.0968517363071 +SURF 0x10 +mat 9 +refs 3 +103 0.757548570633 0.0479881465435 +116 0.76315587759 0.0752235651016 +104 0.764628887177 0.164097517729 +SURF 0x10 +mat 9 +refs 3 +115 0.370504766703 0.971420645714 +137 0.370284259319 0.853978157043 +135 0.391404628754 0.853978157043 +SURF 0x10 +mat 9 +refs 3 +115 0.370504766703 0.971420645714 +135 0.391404628754 0.853978157043 +133 0.401017248631 0.896164655685 +SURF 0x10 +mat 9 +refs 3 +115 0.370504766703 0.971420645714 +133 0.401017248631 0.896164655685 +131 0.41543596983 0.914588570595 +SURF 0x10 +mat 9 +refs 3 +115 0.370504766703 0.971420645714 +131 0.41543596983 0.914588570595 +129 0.436263084412 0.931410431862 +SURF 0x10 +mat 9 +refs 3 +115 0.370504766703 0.971420645714 +129 0.436263084412 0.931410431862 +127 0.458692282438 0.940221905708 +SURF 0x10 +mat 9 +refs 3 +115 0.370504766703 0.971420645714 +127 0.458692282438 0.940221905708 +139 0.47123748064 0.971420645714 +SURF 0x10 +mat 9 +refs 3 +125 0.482723534107 0.941823899746 +139 0.47123748064 0.971420645714 +127 0.458692282438 0.940221905708 +SURF 0x10 +mat 9 +refs 3 +123 0.505953848362 0.93781876564 +139 0.47123748064 0.971420645714 +125 0.482723534107 0.941823899746 +SURF 0x10 +mat 9 +refs 3 +105 0.56135481596 0.971420645714 +139 0.47123748064 0.971420645714 +123 0.505953848362 0.93781876564 +SURF 0x10 +mat 9 +refs 3 +105 0.56135481596 0.971420645714 +123 0.505953848362 0.93781876564 +121 0.53078609705 0.924201011658 +SURF 0x10 +mat 9 +refs 3 +105 0.56135481596 0.971420645714 +121 0.53078609705 0.924201011658 +119 0.550812125206 0.904174923897 +SURF 0x10 +mat 9 +refs 3 +105 0.56135481596 0.971420645714 +119 0.550812125206 0.904174923897 +117 0.562827765942 0.882546782494 +SURF 0x10 +mat 9 +refs 3 +105 0.56135481596 0.971420645714 +117 0.562827765942 0.882546782494 +106 0.568435072899 0.855311393738 +SURF 0x10 +mat 9 +refs 4 +114 0.955478906631 0.164097517729 +136 0.955699324608 0.0466547906399 +141 0.961762905121 0.0466547906399 +140 0.961542546749 0.164097517729 +SURF 0x10 +mat 9 +refs 4 +115 0.370504766703 0.971420645714 +142 0.36444106698 0.971420645714 +143 0.364220738411 0.853978157043 +137 0.370284259319 0.853978157043 +SURF 0x10 +mat 9 +refs 4 +140 0.0598493814468 0.971430838108 +141 0.0598182082176 0.853988051414 +145 0.0721830129623 0.853988051414 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 4 +142 0.364177554846 0.971430838108 +146 0.351815700531 0.971430838108 +147 0.351852595806 0.853988051414 +143 0.364217698574 0.853988051414 +SURF 0x10 +mat 9 +refs 4 +107 0.764758884907 0.023569136858 +148 0.764758884907 0.0235691964626 +149 0.757548570633 0.0479881465435 +103 0.757548570633 0.0479881465435 +SURF 0x10 +mat 9 +refs 4 +108 0.757638692856 0.0198312699795 +106 0.750240981579 0.0448855161667 +151 0.750240981579 0.0448855161667 +150 0.757638692856 0.0198312699795 +SURF 0x10 +mat 9 +refs 4 +109 0.757638692856 0.0198312699795 +108 0.757638692856 0.0198312699795 +150 0.757638692856 0.0198312699795 +152 0.757638692856 0.0198312699795 +SURF 0x10 +mat 9 +refs 4 +110 0.764516949654 0.323874652386 +109 0.764516949654 0.402350902557 +152 0.764516949654 0.378053247929 +153 0.764516949654 0.323873519897 +SURF 0x10 +mat 9 +refs 4 +107 0.764516949654 0.166922152042 +111 0.764516949654 0.245398342609 +154 0.764516949654 0.269693791866 +148 0.764516949654 0.21551412344 +SURF 0x10 +mat 9 +refs 4 +111 0.764516949654 0.245398342609 +110 0.764516949654 0.323874652386 +153 0.764516949654 0.323873519897 +154 0.764516949654 0.269693791866 +SURF 0x10 +mat 9 +refs 4 +103 0.757306814194 0.16911777854 +149 0.757306814194 0.217029958963 +155 0.762914001942 0.217029958963 +116 0.762914001942 0.16911777854 +SURF 0x10 +mat 9 +refs 4 +117 0.762914001942 0.478623270988 +156 0.762914001942 0.43071141839 +151 0.757306814194 0.43071141839 +106 0.757306814194 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +118 0.774929761887 0.16911777854 +116 0.762914001942 0.16911777854 +155 0.762914001942 0.217029958963 +157 0.774929761887 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +119 0.774929761887 0.478623270988 +158 0.774929761887 0.43071141839 +156 0.762914001942 0.43071141839 +117 0.762914001942 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +120 0.794955730438 0.16911777854 +118 0.774929761887 0.16911777854 +157 0.774929761887 0.217029958963 +159 0.794955730438 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +121 0.794955730438 0.478623270988 +160 0.794955730438 0.43071141839 +158 0.774929761887 0.43071141839 +119 0.774929761887 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +122 0.819788098335 0.16911777854 +120 0.794955730438 0.16911777854 +159 0.794955730438 0.217029958963 +161 0.819788098335 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +123 0.819788098335 0.478623270988 +162 0.819788098335 0.43071141839 +160 0.794955730438 0.43071141839 +121 0.794955730438 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +124 0.843018293381 0.16911777854 +122 0.819788098335 0.16911777854 +161 0.819788098335 0.217029958963 +163 0.843018293381 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +125 0.843018293381 0.478623270988 +164 0.843018293381 0.43071141839 +162 0.819788098335 0.43071141839 +123 0.819788098335 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +126 0.867049574852 0.16911777854 +124 0.843018293381 0.16911777854 +163 0.843018293381 0.217029958963 +165 0.867049574852 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +127 0.867049574852 0.478623270988 +166 0.867049574852 0.43071141839 +164 0.843018293381 0.43071141839 +125 0.843018293381 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +128 0.889478743076 0.16911777854 +126 0.867049574852 0.16911777854 +165 0.867049574852 0.217029958963 +167 0.889478743076 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +129 0.889478743076 0.478623270988 +168 0.889478743076 0.43071141839 +166 0.867049574852 0.43071141839 +127 0.867049574852 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +130 0.910305857658 0.16911777854 +128 0.889478743076 0.16911777854 +167 0.889478743076 0.217029958963 +169 0.910305857658 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +131 0.910305857658 0.478623270988 +170 0.910305857658 0.43071141839 +168 0.889478743076 0.43071141839 +129 0.889478743076 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +132 0.924724578857 0.16911777854 +130 0.910305857658 0.16911777854 +169 0.910305857658 0.217029958963 +171 0.924724578857 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +133 0.924724578857 0.478623270988 +172 0.924724578857 0.43071141839 +170 0.910305857658 0.43071141839 +131 0.910305857658 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +134 0.93433713913 0.16911777854 +132 0.924724578857 0.16911777854 +171 0.924724578857 0.217029958963 +173 0.93433713913 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +135 0.93433713913 0.478623270988 +174 0.93433713913 0.43071141839 +172 0.924724578857 0.43071141839 +133 0.924724578857 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +136 0.955457568169 0.16911777854 +134 0.93433713913 0.16911777854 +173 0.93433713913 0.217029958963 +175 0.955457568169 0.217029958963 +SURF 0x10 +mat 9 +refs 4 +137 0.955457568169 0.478623270988 +176 0.955457568169 0.43071141839 +174 0.93433713913 0.43071141839 +135 0.93433713913 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +141 0.961521148682 0.171670645475 +136 0.955457568169 0.16911777854 +175 0.955457568169 0.217029958963 +177 0.961521148682 0.218792438507 +SURF 0x10 +mat 9 +refs 4 +143 0.961521148682 0.476070225239 +178 0.961521148682 0.42894884944 +176 0.955457568169 0.43071141839 +137 0.955457568169 0.478623270988 +SURF 0x10 +mat 9 +refs 4 +148 0.764758884907 0.0235691964626 +179 0.844519674778 0.0468780994415 +180 0.844519495964 0.0468782484531 +149 0.757548570633 0.0479881465435 +SURF 0x10 +mat 9 +refs 4 +150 0.56122481823 0.830892443657 +151 0.568435072899 0.855311393738 +182 0.481464117765 0.854201376438 +181 0.481464028358 0.854201257229 +SURF 0x10 +mat 9 +refs 4 +152 0.764516949654 0.378053247929 +150 0.764516949654 0.432233005762 +181 0.844277858734 0.430614262819 +183 0.844277858734 0.377243876457 +SURF 0x10 +mat 9 +refs 4 +153 0.764516949654 0.323873519897 +152 0.764516949654 0.378053247929 +183 0.844277858734 0.377243876457 +184 0.844277858734 0.323873519897 +SURF 0x10 +mat 9 +refs 4 +148 0.764516949654 0.21551412344 +154 0.764516949654 0.269693791866 +185 0.844277858734 0.270503222942 +179 0.844277858734 0.217132896185 +SURF 0x10 +mat 9 +refs 4 +154 0.764516949654 0.269693791866 +153 0.764516949654 0.323873519897 +184 0.844277858734 0.323873519897 +185 0.844277858734 0.270503222942 +SURF 0x10 +mat 9 +refs 4 +149 0.757548570633 0.0479881465435 +180 0.844519495964 0.0468782484531 +186 0.844519674778 0.046878516674 +155 0.76315587759 0.0752235651016 +SURF 0x10 +mat 9 +refs 4 +156 0.562827765942 0.882546782494 +187 0.481464028358 0.854201793671 +182 0.481464117765 0.854201376438 +151 0.568435072899 0.855311393738 +SURF 0x10 +mat 9 +refs 4 +157 0.775171518326 0.0968517363071 +155 0.76315587759 0.0752235651016 +186 0.844519674778 0.046878516674 +188 0.844519674778 0.046878695488 +SURF 0x10 +mat 9 +refs 4 +158 0.550812125206 0.904174923897 +189 0.481464028358 0.85420191288 +187 0.481464028358 0.854201793671 +156 0.562827765942 0.882546782494 +SURF 0x10 +mat 9 +refs 4 +159 0.795197606087 0.116877764463 +157 0.775171518326 0.0968517363071 +188 0.844519674778 0.046878695488 +190 0.844519913197 0.0468787848949 +SURF 0x10 +mat 9 +refs 4 +160 0.53078609705 0.924201011658 +191 0.48146378994 0.85420191288 +189 0.481464028358 0.85420191288 +158 0.550812125206 0.904174923897 +SURF 0x10 +mat 9 +refs 4 +161 0.820029854774 0.130495458841 +159 0.795197606087 0.116877764463 +190 0.844519913197 0.0468787848949 +192 0.84452021122 0.0468789637089 +SURF 0x10 +mat 9 +refs 4 +162 0.505953848362 0.93781876564 +193 0.481463521719 0.854202151299 +191 0.48146378994 0.85420191288 +160 0.53078609705 0.924201011658 +SURF 0x10 +mat 9 +refs 4 +163 0.843260109425 0.134500682354 +161 0.820029854774 0.130495458841 +192 0.84452021122 0.0468789637089 +194 0.844520330429 0.0468789637089 +SURF 0x10 +mat 9 +refs 4 +164 0.482723534107 0.941823899746 +195 0.481463342905 0.854202151299 +193 0.481463521719 0.854202151299 +162 0.505953848362 0.93781876564 +SURF 0x10 +mat 9 +refs 4 +165 0.867291331291 0.132898688316 +163 0.843260109425 0.134500682354 +194 0.844520330429 0.0468789637089 +196 0.844520568848 0.0468789637089 +SURF 0x10 +mat 9 +refs 4 +166 0.458692282438 0.940221905708 +197 0.481463074684 0.854202151299 +195 0.481463342905 0.854202151299 +164 0.482723534107 0.941823899746 +SURF 0x10 +mat 9 +refs 4 +167 0.889720618725 0.124087154865 +165 0.867291331291 0.132898688316 +196 0.844520568848 0.0468789637089 +198 0.844520688057 0.0468788444996 +SURF 0x10 +mat 9 +refs 4 +168 0.436263084412 0.931410431862 +199 0.481462925673 0.854202151299 +197 0.481463074684 0.854202151299 +166 0.458692282438 0.940221905708 +SURF 0x10 +mat 9 +refs 4 +169 0.910547673702 0.107265263796 +167 0.889720618725 0.124087154865 +198 0.844520688057 0.0468788444996 +200 0.844520926476 0.046878695488 +SURF 0x10 +mat 9 +refs 4 +170 0.41543596983 0.914588570595 +201 0.481462746859 0.85420191288 +199 0.481462925673 0.854202151299 +168 0.436263084412 0.931410431862 +SURF 0x10 +mat 9 +refs 4 +171 0.924966454506 0.0888412892818 +169 0.910547673702 0.107265263796 +200 0.844520926476 0.046878695488 +202 0.84452098608 0.0468786358833 +SURF 0x10 +mat 9 +refs 4 +172 0.401017248631 0.896164655685 +203 0.481462657452 0.854201793671 +201 0.481462746859 0.85420191288 +170 0.41543596983 0.914588570595 +SURF 0x10 +mat 9 +refs 4 +173 0.934579074383 0.0466547906399 +171 0.924966454506 0.0888412892818 +202 0.84452098608 0.0468786358833 +204 0.844521105289 0.0468784570694 +SURF 0x10 +mat 9 +refs 4 +174 0.391404628754 0.853978157043 +205 0.481462597847 0.854201555252 +203 0.481462657452 0.854201793671 +172 0.401017248631 0.896164655685 +SURF 0x10 +mat 9 +refs 4 +175 0.95354694128 0.0435175001621 +173 0.931877017021 0.0435175001621 +204 0.839476108551 0.0437469780445 +206 0.83947634697 0.0437469780445 +SURF 0x10 +mat 9 +refs 4 +176 0.370284259319 0.853978157043 +207 0.481462389231 0.854201555252 +205 0.481462597847 0.854201555252 +174 0.391404628754 0.853978157043 +SURF 0x10 +mat 9 +refs 4 +177 0.961521148682 0.218792438507 +175 0.955457568169 0.217029958963 +206 0.844279408455 0.217029958963 +208 0.844279408455 0.218792438507 +SURF 0x10 +mat 9 +refs 4 +178 0.364220738411 0.853978157043 +209 0.481462389231 0.854201555252 +207 0.481462389231 0.854201555252 +176 0.370284259319 0.853978157043 +SURF 0x10 +mat 9 +refs 4 +44 0.331583321095 0.812921404839 +45 0.320745885372 0.817117094994 +211 0.314464122057 0.817117094994 +210 0.32481855154 0.812921404839 +SURF 0x10 +mat 9 +refs 4 +46 0.342952996492 0.807960867882 +44 0.331583321095 0.812921404839 +210 0.32481855154 0.812921404839 +212 0.335681378841 0.807960867882 +SURF 0x10 +mat 9 +refs 4 +47 0.346673101187 0.799809396267 +46 0.342952996492 0.807960867882 +212 0.335681378841 0.807960867882 +213 0.339235901833 0.799809396267 +SURF 0x10 +mat 9 +refs 4 +51 0.0166890919209 0.807960808277 +50 0.0129689276218 0.799809336662 +214 0.0204024016857 0.799809336662 +215 0.0239568948746 0.807960808277 +SURF 0x10 +mat 9 +refs 4 +52 0.0262542068958 0.812921226025 +51 0.0166890919209 0.807960808277 +215 0.0239568948746 0.807960808277 +216 0.0330956429243 0.812921226025 +SURF 0x10 +mat 9 +refs 4 +53 0.0388958752155 0.817116975784 +52 0.0262542068958 0.812921226025 +216 0.0330956429243 0.812921226025 +217 0.045174062252 0.817116975784 +SURF 0x10 +mat 9 +refs 4 +54 0.139592468739 0.82560390234 +53 0.0388958752155 0.817116975784 +217 0.045174062252 0.817116975784 +218 0.141383305192 0.82560390234 +SURF 0x10 +mat 9 +refs 4 +55 0.22007009387 0.825604021549 +54 0.139592468739 0.82560390234 +218 0.141383305192 0.82560390234 +219 0.218274563551 0.825604021549 +SURF 0x10 +mat 9 +refs 4 +45 0.320745885372 0.817117094994 +55 0.22007009387 0.825604021549 +219 0.218274563551 0.825604021549 +211 0.314464122057 0.817117094994 +SURF 0x10 +mat 9 +refs 4 +63 0.693156242371 0.51940125227 +70 0.643165588379 0.51940125227 +222 0.642842411995 0.526242077351 +221 0.691618442535 0.526242077351 +SURF 0x10 +mat 9 +refs 4 +72 0.643165588379 0.826489210129 +65 0.693156242371 0.826489210129 +223 0.691618442535 0.819645166397 +224 0.642842411995 0.819645166397 +SURF 0x10 +mat 9 +refs 4 +57 0.737816333771 0.535286724567 +79 0.7332482934 0.530443847179 +225 0.730736196041 0.536792516708 +254 0.735194802284 0.540411412716 +SURF 0x10 +mat 9 +refs 4 +79 0.7332482934 0.530443847179 +77 0.726107656956 0.525600969791 +226 0.723769068718 0.532165527344 +225 0.730736196041 0.536792516708 +SURF 0x10 +mat 9 +refs 4 +80 0.715747416019 0.520758092403 +63 0.693156242371 0.51940125227 +221 0.691618442535 0.526242077351 +227 0.713660597801 0.527538478374 +SURF 0x10 +mat 9 +refs 4 +77 0.726107656956 0.525600969791 +80 0.715747416019 0.520758092403 +227 0.713660597801 0.527538478374 +226 0.723769068718 0.532165527344 +SURF 0x10 +mat 9 +refs 4 +81 0.7332482934 0.81544816494 +56 0.737816333771 0.81060564518 +220 0.735194087029 0.804972946644 +228 0.730736196041 0.809096217155 +SURF 0x10 +mat 9 +refs 4 +78 0.726107656956 0.8202906847 +81 0.7332482934 0.81544816494 +228 0.730736196041 0.809096217155 +229 0.723769068718 0.813722908497 +SURF 0x10 +mat 9 +refs 4 +82 0.715747416019 0.82513320446 +78 0.726107656956 0.8202906847 +229 0.723769068718 0.813722908497 +230 0.713660597801 0.818349778652 +SURF 0x10 +mat 9 +refs 4 +65 0.693156242371 0.826489210129 +82 0.715747416019 0.82513320446 +230 0.713660597801 0.818349778652 +223 0.691618442535 0.819645166397 +SURF 0x10 +mat 9 +refs 4 +90 0.60422873497 0.518228769302 +84 0.593330144882 0.518228769302 +231 0.594217956066 0.525121867657 +232 0.604851663113 0.525121867657 +SURF 0x10 +mat 9 +refs 4 +85 0.593330144882 0.827661752701 +91 0.60422873497 0.827661752701 +234 0.604851663113 0.8207654953 +233 0.594217956066 0.8207654953 +SURF 0x10 +mat 9 +refs 4 +70 0.643165588379 0.51940125227 +92 0.631708025932 0.51940125227 +235 0.631663441658 0.526242077351 +222 0.642842411995 0.526242077351 +SURF 0x10 +mat 9 +refs 4 +92 0.631708025932 0.51940125227 +90 0.60422873497 0.518228769302 +232 0.604851663113 0.525121867657 +235 0.631663441658 0.526242077351 +SURF 0x10 +mat 9 +refs 4 +91 0.60422873497 0.827661752701 +93 0.631708025932 0.826489210129 +236 0.631663441658 0.819645166397 +234 0.604851663113 0.8207654953 +SURF 0x10 +mat 9 +refs 4 +93 0.631708025932 0.826489210129 +72 0.643165588379 0.826489210129 +224 0.642842411995 0.819645166397 +236 0.631663441658 0.819645166397 +SURF 0x10 +mat 9 +refs 4 +112 0.581314086914 0.518228769302 +104 0.563530266285 0.518228769302 +237 0.565142214298 0.525121867657 +238 0.582493901253 0.525121867657 +SURF 0x10 +mat 9 +refs 4 +84 0.593330144882 0.518228769302 +112 0.581314086914 0.518228769302 +238 0.582493901253 0.525121867657 +231 0.594217956066 0.525121867657 +SURF 0x10 +mat 9 +refs 4 +113 0.581314086914 0.827661752701 +85 0.593330144882 0.827661752701 +233 0.594217956066 0.8207654953 +239 0.582493901253 0.8207654953 +SURF 0x10 +mat 9 +refs 4 +105 0.563530266285 0.827661752701 +113 0.581314086914 0.827661752701 +239 0.582493901253 0.8207654953 +240 0.565142214298 0.8207654953 +SURF 0x10 +mat 9 +refs 4 +104 0.563530266285 0.518228769302 +138 0.473412930965 0.518228769302 +241 0.477214604616 0.525121867657 +237 0.565142214298 0.525121867657 +SURF 0x10 +mat 9 +refs 4 +138 0.473412930965 0.518228769302 +114 0.372680217028 0.518228769302 +242 0.378929555416 0.525121867657 +241 0.477214604616 0.525121867657 +SURF 0x10 +mat 9 +refs 4 +115 0.372680217028 0.827661752701 +139 0.473412930965 0.827661752701 +244 0.477214604616 0.8207654953 +243 0.378929555416 0.8207654953 +SURF 0x10 +mat 9 +refs 4 +139 0.473412930965 0.827661752701 +105 0.563530266285 0.827661752701 +240 0.565142214298 0.8207654953 +244 0.477214604616 0.8207654953 +SURF 0x10 +mat 9 +refs 4 +114 0.372680217028 0.518228769302 +140 0.366616606712 0.520781099796 +245 0.373013317585 0.527560472488 +242 0.378929555416 0.525121867657 +SURF 0x10 +mat 9 +refs 4 +142 0.366616606712 0.825109362602 +115 0.372680217028 0.827661752701 +243 0.378929555416 0.8207654953 +246 0.373013317585 0.818326950073 +SURF 0x10 +mat 9 +refs 4 +140 0.366616606712 0.520781099796 +144 0.36423188448 0.533143341541 +247 0.370686590672 0.539371848106 +245 0.373013317585 0.527560472488 +SURF 0x10 +mat 9 +refs 4 +146 0.36423188448 0.812747657299 +142 0.366616606712 0.825109362602 +246 0.373013317585 0.818326950073 +248 0.370686590672 0.806515932083 +SURF 0x10 +mat 9 +refs 4 +144 0.36423188448 0.533143341541 +146 0.36423188448 0.812747657299 +248 0.370686590672 0.806515932083 +247 0.370686590672 0.539371848106 +SURF 0x10 +mat 9 +refs 4 +210 0.32481855154 0.812921404839 +211 0.314464122057 0.817117094994 +250 0.314464122057 0.769191205502 +249 0.32481855154 0.771571934223 +SURF 0x10 +mat 9 +refs 4 +212 0.335681378841 0.807960867882 +210 0.32481855154 0.812921404839 +249 0.32481855154 0.771571934223 +251 0.335681378841 0.774666309357 +SURF 0x10 +mat 9 +refs 4 +213 0.339235901833 0.799809396267 +212 0.335681378841 0.807960867882 +251 0.335681378841 0.774666309357 +220 0.338629662991 0.765666007996 +SURF 0x10 +mat 9 +refs 4 +215 0.0239568948746 0.807960808277 +214 0.0204024016857 0.799809336662 +254 0.0204024016857 0.76490932703 +255 0.0239568948746 0.774666011333 +SURF 0x10 +mat 9 +refs 4 +216 0.0330956429243 0.812921226025 +215 0.0239568948746 0.807960808277 +255 0.0239568948746 0.774666011333 +256 0.0330956429243 0.771571934223 +SURF 0x10 +mat 9 +refs 4 +217 0.045174062252 0.817116975784 +216 0.0330956429243 0.812921226025 +256 0.0330956429243 0.771571934223 +257 0.045174062252 0.769191205502 +SURF 0x10 +mat 9 +refs 4 +218 0.141383305192 0.82560390234 +217 0.045174062252 0.817116975784 +257 0.045174062252 0.769191205502 +258 0.141383245587 0.769246160984 +SURF 0x10 +mat 9 +refs 4 +219 0.218274563551 0.825604021549 +218 0.141383305192 0.82560390234 +258 0.141383245587 0.769246160984 +259 0.218274503946 0.769246160984 +SURF 0x10 +mat 9 +refs 4 +211 0.314464122057 0.817117094994 +219 0.218274563551 0.825604021549 +259 0.218274503946 0.769246160984 +250 0.314464122057 0.769191205502 +SURF 0x10 +mat 9 +refs 3 +221 0.0916931182146 0.365987658501 +222 0.0916931182146 0.311803400517 +262 0.151929095387 0.338895738125 +SURF 0x10 +mat 9 +refs 3 +224 0.0916930362582 0.311803400517 +223 0.0916930362582 0.365987658501 +263 0.151929095387 0.338895738125 +SURF 0x10 +mat 9 +refs 4 +254 0.0713173374534 0.414395749569 +225 0.0805028676987 0.409442782402 +264 0.151891812682 0.409442782402 +261 0.151861518621 0.414394140244 +SURF 0x10 +mat 9 +refs 4 +225 0.0805028676987 0.409442782402 +226 0.0876618102193 0.401703119278 +265 0.151915773749 0.401703119278 +264 0.151891812682 0.409442782402 +SURF 0x10 +mat 9 +refs 4 +227 0.091244533658 0.39047396183 +221 0.0916931182146 0.365987658501 +262 0.151929095387 0.338895738125 +266 0.15192759037 0.39047396183 +SURF 0x10 +mat 9 +refs 4 +226 0.0876618102193 0.401703119278 +227 0.091244533658 0.39047396183 +266 0.15192759037 0.39047396183 +265 0.151915773749 0.401703119278 +SURF 0x10 +mat 9 +refs 4 +228 0.0805028006434 0.409442782402 +220 0.0706184878945 0.414394855499 +260 0.151861518621 0.414394140244 +267 0.151891812682 0.409442782402 +SURF 0x10 +mat 9 +refs 4 +229 0.0876618102193 0.401703119278 +228 0.0805028006434 0.409442782402 +267 0.151891812682 0.409442782402 +268 0.151915773749 0.401703119278 +SURF 0x10 +mat 9 +refs 4 +230 0.091244533658 0.39047396183 +229 0.0876618102193 0.401703119278 +268 0.151915773749 0.401703119278 +269 0.15192759037 0.39047396183 +SURF 0x10 +mat 9 +refs 4 +223 0.0916930362582 0.365987658501 +230 0.091244533658 0.39047396183 +269 0.15192759037 0.39047396183 +263 0.151929095387 0.338895738125 +SURF 0x10 +mat 9 +refs 4 +232 0.0457138381898 0.269600301981 +231 0.0338481776416 0.257787466049 +270 0.0645971745253 0.257787466049 +271 0.0764627531171 0.269600301981 +SURF 0x10 +mat 9 +refs 4 +233 0.0338481031358 0.257787466049 +234 0.045713763684 0.269600301981 +273 0.0764627531171 0.269600301981 +272 0.0645971745253 0.257787466049 +SURF 0x10 +mat 9 +refs 4 +222 0.0916931182146 0.311803400517 +235 0.0842770636082 0.299384862185 +294 0.15190449357 0.277144521475 +262 0.151929095387 0.338895738125 +SURF 0x10 +mat 9 +refs 4 +235 0.0842770636082 0.299384862185 +232 0.0457138381898 0.269600301981 +271 0.0764627531171 0.269600301981 +294 0.15190449357 0.277144521475 +SURF 0x10 +mat 9 +refs 4 +234 0.045713763684 0.269600301981 +236 0.0842770636082 0.299384862185 +274 0.15190449357 0.277144372463 +273 0.0764627531171 0.269600301981 +SURF 0x10 +mat 9 +refs 4 +236 0.0842770636082 0.299384862185 +224 0.0916930362582 0.311803400517 +263 0.151929095387 0.338895738125 +274 0.15190449357 0.277144372463 +SURF 0x10 +mat 9 +refs 4 +238 0.0253051072359 0.244763419032 +237 0.0210336819291 0.225487798452 +275 0.0517826750875 0.225487798452 +276 0.0560542494059 0.244763419032 +SURF 0x10 +mat 9 +refs 4 +231 0.0338481776416 0.257787466049 +238 0.0253051072359 0.244763419032 +276 0.0560542494059 0.244763419032 +270 0.0645971745253 0.257787466049 +SURF 0x10 +mat 9 +refs 4 +239 0.0253051072359 0.244763419032 +233 0.0338481031358 0.257787466049 +272 0.0645971745253 0.257787466049 +277 0.0560541003942 0.244763419032 +SURF 0x10 +mat 9 +refs 4 +240 0.0210336074233 0.225487798452 +239 0.0253051072359 0.244763419032 +277 0.0560541003942 0.244763419032 +278 0.0517826750875 0.225487798452 +SURF 0x10 +mat 9 +refs 4 +237 0.0210336819291 0.225487798452 +241 0.0210336819291 0.127810865641 +279 0.0517826750875 0.127810865641 +275 0.0517826750875 0.225487798452 +SURF 0x10 +mat 9 +refs 4 +241 0.0210336819291 0.127810865641 +242 0.0210336819291 0.0186280310154 +280 0.0517826750875 0.0186280310154 +279 0.0517826750875 0.127810865641 +SURF 0x10 +mat 9 +refs 4 +243 0.0210336819291 0.0186280310154 +244 0.0210336074233 0.127810865641 +282 0.0517826750875 0.127810865641 +281 0.0517826750875 0.0186280310154 +SURF 0x10 +mat 9 +refs 4 +244 0.0210336074233 0.127810865641 +240 0.0210336074233 0.225487798452 +278 0.0517826750875 0.225487798452 +282 0.0517826750875 0.127810865641 +SURF 0x10 +mat 9 +refs 4 +242 0.0210336819291 0.0186280310154 +245 0.0210336819291 0.0120557695627 +283 0.0517826750875 0.0120557695627 +280 0.0517826750875 0.0186280310154 +SURF 0x10 +mat 9 +refs 4 +246 0.0210336819291 0.0120557695627 +243 0.0210336819291 0.0186280310154 +281 0.0517826750875 0.0186280310154 +284 0.0517826750875 0.0120557695627 +SURF 0x10 +mat 9 +refs 4 +245 0.0210336819291 0.0120557695627 +247 0.0210336819291 0.00947105884552 +285 0.0517826750875 0.00947105884552 +283 0.0517826750875 0.0120557695627 +SURF 0x10 +mat 9 +refs 4 +248 0.0210336074233 0.00947105884552 +246 0.0210336819291 0.0120557695627 +284 0.0517826750875 0.0120557695627 +286 0.0517826750875 0.00947105884552 +SURF 0x10 +mat 9 +refs 4 +247 0.0210336819291 0.00947105884552 +248 0.0210336074233 0.00947105884552 +286 0.0517826750875 0.00947105884552 +285 0.0517826750875 0.00947105884552 +SURF 0x00 +mat 9 +refs 4 +275 0.565142214298 0.525121867657 +279 0.477214604616 0.525121867657 +288 0.477214604616 0.573148846626 +287 0.565142214298 0.573148846626 +SURF 0x00 +mat 9 +refs 4 +279 0.477214604616 0.525121867657 +280 0.378929555416 0.525121867657 +289 0.378929555416 0.573148846626 +288 0.477214604616 0.573148846626 +SURF 0x00 +mat 9 +refs 4 +281 0.378929555416 0.8207654953 +282 0.477214604616 0.8207654953 +291 0.477214604616 0.772738575935 +290 0.378929555416 0.772738575935 +SURF 0x00 +mat 9 +refs 4 +282 0.477214604616 0.8207654953 +278 0.565142214298 0.8207654953 +292 0.565142214298 0.772738575935 +291 0.477214604616 0.772738575935 +SURF 0x00 +mat 9 +refs 3 +281 0.378929555416 0.8207654953 +290 0.378929555416 0.772738575935 +284 0.373013317585 0.818326950073 +SURF 0x00 +mat 9 +refs 3 +284 0.373013317585 0.818326950073 +290 0.378929555416 0.772738575935 +286 0.370686590672 0.806515932083 +SURF 0x00 +mat 9 +refs 4 +285 0.370686590672 0.539371848106 +286 0.370686590672 0.806515932083 +290 0.378929555416 0.772738575935 +289 0.378929555416 0.573148846626 +SURF 0x00 +mat 9 +refs 3 +283 0.373013317585 0.527560472488 +285 0.370686590672 0.539371848106 +289 0.378929555416 0.573148846626 +SURF 0x00 +mat 9 +refs 3 +280 0.378929555416 0.525121867657 +283 0.373013317585 0.527560472488 +289 0.378929555416 0.573148846626 +SURF 0x00 +mat 9 +refs 3 +296 0.588392496109 0.573148846626 +294 0.611642897129 0.525121867657 +275 0.565142214298 0.525121867657 +SURF 0x00 +mat 9 +refs 3 +287 0.565142214298 0.573148846626 +296 0.588392496109 0.573148846626 +275 0.565142214298 0.525121867657 +SURF 0x00 +mat 9 +refs 3 +296 0.588392496109 0.573148846626 +293 0.611642897129 0.573148667812 +294 0.611642897129 0.525121867657 +SURF 0x00 +mat 9 +refs 3 +297 0.588392496109 0.772738575935 +278 0.565142214298 0.8207654953 +274 0.61164277792 0.819645166397 +SURF 0x00 +mat 9 +refs 3 +295 0.611642897129 0.772738575935 +297 0.588392496109 0.772738575935 +274 0.61164277792 0.819645166397 +SURF 0x00 +mat 9 +refs 3 +297 0.588392496109 0.772738575935 +292 0.565142214298 0.772738575935 +278 0.565142214298 0.8207654953 +SURF 0x00 +mat 9 +refs 4 +288 0.477214604616 0.573148846626 +289 0.378929555416 0.573148846626 +298 0.378929555416 0.573148846626 +299 0.477214604616 0.573148846626 +SURF 0x00 +mat 9 +refs 4 +290 0.378929555416 0.772738575935 +291 0.477214604616 0.772738575935 +301 0.477214604616 0.772738575935 +300 0.378929555416 0.772738575935 +SURF 0x00 +mat 9 +refs 4 +289 0.378929555416 0.573148846626 +290 0.378929555416 0.772738575935 +300 0.378929555416 0.772738575935 +298 0.378929555416 0.573148846626 +SURF 0x00 +mat 9 +refs 4 +298 0.378929555416 0.573148846626 +300 0.378929555416 0.772738575935 +301 0.477214604616 0.772738575935 +299 0.477214604616 0.573148846626 +SURF 0x00 +mat 9 +refs 4 +299 0.477214604616 0.573148846626 +301 0.477214604616 0.772738575935 +303 0.535327732563 0.772738575935 +302 0.535327732563 0.573148846626 +SURF 0x00 +mat 9 +refs 4 +293 0.611642897129 0.573148667812 +302 0.535327732563 0.573148846626 +303 0.535327732563 0.772738575935 +295 0.611642897129 0.772738575935 +SURF 0x00 +mat 9 +refs 3 +287 0.565142214298 0.573148846626 +302 0.535327732563 0.573148846626 +293 0.611642897129 0.573148667812 +SURF 0x00 +mat 9 +refs 4 +287 0.565142214298 0.573148846626 +288 0.477214604616 0.573148846626 +299 0.477214604616 0.573148846626 +302 0.535327732563 0.573148846626 +SURF 0x00 +mat 9 +refs 3 +292 0.565142214298 0.772738575935 +295 0.611642897129 0.772738575935 +303 0.535327732563 0.772738575935 +SURF 0x00 +mat 9 +refs 4 +291 0.477214604616 0.772738575935 +292 0.565142214298 0.772738575935 +303 0.535327732563 0.772738575935 +301 0.477214604616 0.772738575935 +SURF 0x00 +mat 9 +refs 3 +262 0.667230606079 0.526242077351 +294 0.611642897129 0.525121867657 +293 0.611642897129 0.573148667812 +SURF 0x00 +mat 9 +refs 4 +262 0.667230606079 0.526242077351 +293 0.611642897129 0.573148667812 +295 0.611642897129 0.772738575935 +263 0.667230606079 0.819645166397 +SURF 0x00 +mat 9 +refs 3 +263 0.667230606079 0.819645166397 +295 0.611642897129 0.772738575935 +274 0.61164277792 0.819645166397 +SURF 0x00 +mat 9 +refs 4 +262 0.667230606079 0.526242077351 +263 0.667230606079 0.819645166397 +269 0.713660597801 0.818349778652 +266 0.713660597801 0.527538478374 +SURF 0x10 +mat 9 +refs 4 +265 0.151915773749 0.401703119278 +266 0.15192759037 0.39047396183 +269 0.15192759037 0.39047396183 +268 0.151915773749 0.401703119278 +SURF 0x10 +mat 9 +refs 4 +264 0.151891812682 0.409442782402 +265 0.151915773749 0.401703119278 +268 0.151915773749 0.401703119278 +267 0.151891812682 0.409442782402 +SURF 0x10 +mat 9 +refs 4 +260 0.151861518621 0.414394140244 +261 0.151861518621 0.414394140244 +264 0.151891812682 0.409442782402 +267 0.151891812682 0.409442782402 +SURF 0x10 +mat 9 +refs 4 +261 0.021615177393 0.677697002888 +260 0.3380240798 0.677697062492 +304 0.310898989439 0.733828127384 +305 0.0487404167652 0.73382806778 +SURF 0x10 +mat 9 +refs 3 +254 0.0204024016857 0.76490932703 +261 0.021615177393 0.677697002888 +305 0.0487404167652 0.73382806778 +SURF 0x10 +mat 9 +refs 3 +220 0.338629662991 0.765666007996 +304 0.310898989439 0.733828127384 +260 0.3380240798 0.677697062492 +SURF 0x10 +mat 9 +refs 3 +49 0.0134254992008 0.788231253624 +57 0.0142381489277 0.764817714691 +254 0.0204024016857 0.76490932703 +SURF 0x10 +mat 9 +refs 3 +49 0.0134254992008 0.788231253624 +254 0.0204024016857 0.76490932703 +214 0.0204024016857 0.799809336662 +SURF 0x10 +mat 9 +refs 3 +49 0.0134254992008 0.788231253624 +214 0.0204024016857 0.799809336662 +50 0.0129689276218 0.799809336662 +SURF 0x10 +mat 9 +refs 3 +47 0.346673101187 0.799809396267 +213 0.339235901833 0.799809396267 +48 0.346216738224 0.788231313229 +SURF 0x10 +mat 9 +refs 3 +48 0.346216738224 0.788231313229 +213 0.339235901833 0.799809396267 +220 0.338629662991 0.765666007996 +SURF 0x10 +mat 9 +refs 3 +48 0.346216738224 0.788231313229 +220 0.338629662991 0.765666007996 +56 0.345404982567 0.7648178339 +SURF 0x10 +mat 9 +refs 3 +249 0.0651642382145 0.414395749569 +250 0.0673629045486 0.414395749569 +306 0.0666130334139 0.441821694374 +SURF 0x10 +mat 9 +refs 4 +251 0.0623064227402 0.414395749569 +249 0.0651642382145 0.414395749569 +306 0.0666130334139 0.441821694374 +307 0.0623064227402 0.441821694374 +SURF 0x10 +mat 9 +refs 4 +256 0.0651642382145 0.414395749569 +255 0.0623066499829 0.414395749569 +308 0.0623066499829 0.441821694374 +306 0.0666130334139 0.441821694374 +SURF 0x10 +mat 9 +refs 3 +257 0.0673629045486 0.414395749569 +256 0.0651642382145 0.414395749569 +306 0.0666130334139 0.441821694374 +SURF 0x10 +mat 9 +refs 3 +258 0.0673121362925 0.414395749569 +257 0.0673629045486 0.414395749569 +306 0.0666130334139 0.441821694374 +SURF 0x10 +mat 9 +refs 3 +259 0.0673121362925 0.414395749569 +258 0.0673121362925 0.414395749569 +306 0.0666130334139 0.441821694374 +SURF 0x10 +mat 9 +refs 3 +250 0.0673629045486 0.414395749569 +259 0.0673121362925 0.414395749569 +306 0.0666130334139 0.441821694374 +SURF 0x10 +mat 9 +refs 3 +304 0.310898989439 0.733828127384 +307 0.335681378841 0.774666309357 +306 0.179535120726 0.770003139973 +SURF 0x10 +mat 9 +refs 3 +304 0.310898989439 0.733828127384 +306 0.179535120726 0.770003139973 +305 0.0487404167652 0.73382806778 +SURF 0x10 +mat 9 +refs 3 +305 0.0487404167652 0.73382806778 +306 0.179535120726 0.770003139973 +308 0.0239568948746 0.774666011333 +SURF 0x10 +mat 9 +refs 3 +254 0.0204024016857 0.76490932703 +305 0.0487404167652 0.73382806778 +308 0.0239568948746 0.774666011333 +SURF 0x10 +mat 9 +refs 3 +254 0.0204024016857 0.76490932703 +308 0.0239568948746 0.774666011333 +255 0.0239568948746 0.774666011333 +SURF 0x10 +mat 9 +refs 3 +220 0.338629662991 0.765666007996 +307 0.335681378841 0.774666309357 +304 0.310898989439 0.733828127384 +SURF 0x10 +mat 9 +refs 3 +220 0.338629662991 0.765666007996 +251 0.335681378841 0.774666309357 +307 0.335681378841 0.774666309357 +SURF 0x10 +mat 9 +refs 3 +275 0.0517826750875 0.225487798452 +294 0.15190449357 0.277144521475 +276 0.0560542494059 0.244763419032 +SURF 0x10 +mat 9 +refs 3 +270 0.0645971745253 0.257787466049 +276 0.0560542494059 0.244763419032 +294 0.15190449357 0.277144521475 +SURF 0x10 +mat 9 +refs 3 +270 0.0645971745253 0.257787466049 +294 0.15190449357 0.277144521475 +271 0.0764627531171 0.269600301981 +SURF 0x10 +mat 9 +refs 3 +272 0.0645971745253 0.257787466049 +273 0.0764627531171 0.269600301981 +274 0.15190449357 0.277144372463 +SURF 0x10 +mat 9 +refs 3 +272 0.0645971745253 0.257787466049 +274 0.15190449357 0.277144372463 +277 0.0560541003942 0.244763419032 +SURF 0x10 +mat 9 +refs 3 +274 0.15190449357 0.277144372463 +278 0.0517826750875 0.225487798452 +277 0.0560541003942 0.244763419032 +SURF 0x10 +mat 9 +refs 3 +309 0.976687550545 0.672962486744 +24 0.800081014633 0.701811671257 +25 0.800081014633 0.644085884094 +SURF 0x10 +mat 9 +refs 3 +11 0.976687550545 0.648146748543 +309 0.976687550545 0.672962486744 +25 0.800081014633 0.644085884094 +SURF 0x10 +mat 9 +refs 3 +309 0.976687550545 0.672962486744 +10 0.976687550545 0.69777816534 +24 0.800081014633 0.701811671257 +SURF 0x10 +mat 9 +refs 3 +33 0.355344176292 0.236620336771 +471 0.355344176292 0.323850095272 +38 0.51622313261 0.323862433434 +SURF 0x10 +mat 9 +refs 3 +471 0.355344176292 0.323850095272 +31 0.355344176292 0.411081165075 +38 0.51622313261 0.323862433434 +SURF 0x10 +mat 9 +refs 4 +0 0.310047537088 0.160339713097 +1 0.316731005907 0.158186942339 +311 0.313893020153 0.157003432512 +310 0.307412028313 0.159090965986 +SURF 0x10 +mat 9 +refs 4 +1 0.316731005907 0.158186942339 +2 0.323742747307 0.154062956572 +312 0.32069221139 0.153004527092 +311 0.313893020153 0.157003432512 +SURF 0x10 +mat 9 +refs 4 +2 0.323742747307 0.154062956572 +3 0.326036930084 0.147286117077 +313 0.322917103767 0.146432906389 +312 0.32069221139 0.153004527092 +SURF 0x10 +mat 9 +refs 4 +3 0.326036930084 0.147286117077 +4 0.325755476952 0.13766053319 +314 0.322644114494 0.137098938227 +313 0.322917103767 0.146432906389 +SURF 0x10 +mat 9 +refs 4 +5 0.120519906282 0.13766053319 +6 0.120238393545 0.147286117077 +316 0.123353987932 0.14643278718 +315 0.123626977205 0.137098938227 +SURF 0x10 +mat 9 +refs 4 +6 0.120238393545 0.147286117077 +7 0.122532725334 0.154062956572 +317 0.125578701496 0.153004467487 +316 0.123353987932 0.14643278718 +SURF 0x10 +mat 9 +refs 4 +7 0.122532725334 0.154062956572 +8 0.128431618214 0.158186852932 +318 0.131298929453 0.157003343105 +317 0.125578701496 0.153004467487 +SURF 0x10 +mat 9 +refs 4 +8 0.128431618214 0.158186852932 +9 0.136227786541 0.160339713097 +319 0.138858884573 0.159090965986 +318 0.131298929453 0.157003343105 +SURF 0x10 +mat 9 +refs 4 +9 0.136227786541 0.160339713097 +10 0.198328435421 0.167395353317 +320 0.19907784462 0.165932774544 +319 0.138858884573 0.159090965986 +SURF 0x10 +mat 9 +refs 4 +11 0.247959762812 0.167395353317 +0 0.310047537088 0.160339713097 +310 0.307412028313 0.159090965986 +321 0.247205495834 0.165932863951 +SURF 0x10 +mat 9 +refs 4 +4 0.325755476952 0.13766053319 +12 0.325523257256 0.127660542727 +322 0.322418868542 0.127401947975 +314 0.322644114494 0.137098938227 +SURF 0x10 +mat 9 +refs 4 +13 0.120765149593 0.127660542727 +5 0.120519906282 0.13766053319 +315 0.123626977205 0.137098938227 +323 0.12386482954 0.127401947975 +SURF 0x10 +mat 9 +refs 4 +10 0.198328435421 0.167395353317 +309 0.223144084215 0.167395353317 +324 0.223141729832 0.165932863951 +320 0.19907784462 0.165932774544 +SURF 0x10 +mat 9 +refs 4 +309 0.223144084215 0.167395353317 +11 0.247959762812 0.167395353317 +321 0.247205495834 0.165932863951 +324 0.223141729832 0.165932863951 +SURF 0x10 +mat 9 +refs 4 +310 0.307412028313 0.159090965986 +311 0.313893020153 0.157003432512 +326 0.313893020153 0.157003432512 +325 0.307412028313 0.159091383219 +SURF 0x10 +mat 9 +refs 4 +311 0.313893020153 0.157003432512 +312 0.32069221139 0.153004527092 +327 0.32069221139 0.153004527092 +326 0.313893020153 0.157003432512 +SURF 0x10 +mat 9 +refs 4 +312 0.32069221139 0.153004527092 +313 0.322917103767 0.146432906389 +328 0.322917103767 0.146432906389 +327 0.32069221139 0.153004527092 +SURF 0x10 +mat 9 +refs 4 +313 0.322917103767 0.146432906389 +314 0.322644114494 0.137098938227 +329 0.322644114494 0.137098938227 +328 0.322917103767 0.146432906389 +SURF 0x10 +mat 9 +refs 4 +315 0.123626977205 0.137098938227 +316 0.123353987932 0.14643278718 +331 0.123353987932 0.14643278718 +330 0.123626977205 0.137098938227 +SURF 0x10 +mat 9 +refs 4 +316 0.123353987932 0.14643278718 +317 0.125578701496 0.153004467487 +332 0.125578701496 0.153004467487 +331 0.123353987932 0.14643278718 +SURF 0x10 +mat 9 +refs 4 +317 0.125578701496 0.153004467487 +318 0.131298929453 0.157003343105 +333 0.131298929453 0.157003343105 +332 0.125578701496 0.153004467487 +SURF 0x10 +mat 9 +refs 4 +318 0.131298929453 0.157003343105 +319 0.138858884573 0.159090965986 +334 0.138858884573 0.159090965986 +333 0.131298929453 0.157003343105 +SURF 0x10 +mat 9 +refs 4 +319 0.138858884573 0.159090965986 +320 0.19907784462 0.165932774544 +335 0.19907784462 0.165932774544 +334 0.138858884573 0.159090965986 +SURF 0x10 +mat 9 +refs 4 +321 0.247205495834 0.165932863951 +310 0.307412028313 0.159090965986 +325 0.307412028313 0.159091383219 +336 0.247205495834 0.165932863951 +SURF 0x10 +mat 9 +refs 3 +314 0.322644114494 0.137098938227 +322 0.322418868542 0.127401947975 +329 0.322644114494 0.137098938227 +SURF 0x10 +mat 9 +refs 3 +323 0.12386482954 0.127401947975 +315 0.123626977205 0.137098938227 +330 0.123626977205 0.137098938227 +SURF 0x10 +mat 9 +refs 4 +320 0.19907784462 0.165932774544 +324 0.223141729832 0.165932863951 +337 0.223141729832 0.165932863951 +335 0.19907784462 0.165932774544 +SURF 0x10 +mat 9 +refs 4 +324 0.223141729832 0.165932863951 +321 0.247205495834 0.165932863951 +336 0.247205495834 0.165932863951 +337 0.223141729832 0.165932863951 +SURF 0x00 +mat 9 +refs 3 +322 0.322418868542 0.127401947975 +342 0.317628741264 0.128432154655 +341 0.320246636868 0.134046167135 +SURF 0x00 +mat 9 +refs 3 +322 0.322418868542 0.127401947975 +341 0.320246636868 0.134046167135 +329 0.322644114494 0.137098938227 +SURF 0x00 +mat 9 +refs 3 +329 0.322644114494 0.137098938227 +341 0.320246636868 0.134046167135 +340 0.320786416531 0.140217006207 +SURF 0x00 +mat 9 +refs 3 +328 0.322917103767 0.146432906389 +329 0.322644114494 0.137098938227 +340 0.320786416531 0.140217006207 +SURF 0x00 +mat 9 +refs 3 +328 0.322917103767 0.146432906389 +340 0.320786416531 0.140217006207 +339 0.3191832304 0.146200299263 +SURF 0x00 +mat 9 +refs 4 +327 0.32069221139 0.153004527092 +328 0.322917103767 0.146432906389 +339 0.3191832304 0.146200299263 +338 0.31563025713 0.151274502277 +SURF 0x00 +mat 9 +refs 4 +326 0.313893020153 0.157003432512 +327 0.32069221139 0.153004527092 +338 0.31563025713 0.151274502277 +355 0.310556054115 0.154827475548 +SURF 0x10 +mat 9 +refs 4 +325 0.307412028313 0.159091383219 +326 0.313893020153 0.157003432512 +355 0.310556054115 0.154827475548 +354 0.304572761059 0.156430631876 +SURF 0x10 +mat 9 +refs 3 +325 0.307412028313 0.159091383219 +354 0.304572761059 0.156430631876 +353 0.29840195179 0.155890762806 +SURF 0x10 +mat 9 +refs 3 +325 0.307412028313 0.159091383219 +353 0.29840195179 0.155890762806 +336 0.247205495834 0.165932863951 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +353 0.29840195179 0.155890762806 +352 0.292787849903 0.15327295661 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +352 0.292787849903 0.15327295661 +360 0.278982281685 0.151272296906 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +360 0.278982281685 0.151272296906 +362 0.276042461395 0.149255812168 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +362 0.276042461395 0.149255812168 +371 0.265561670065 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +371 0.265561670065 0.152089893818 +369 0.262621790171 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +369 0.262621790171 0.150073319674 +380 0.251663684845 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +380 0.251663684845 0.152089893818 +382 0.248723864555 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +382 0.248723864555 0.150073319674 +391 0.236130714417 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +336 0.247205495834 0.165932863951 +391 0.236130714417 0.152089893818 +337 0.223141729832 0.165932863951 +SURF 0x00 +mat 9 +refs 3 +337 0.223141729832 0.165932863951 +391 0.236130714417 0.152089893818 +389 0.233190834522 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +337 0.223141729832 0.165932863951 +389 0.233190834522 0.150073319674 +398 0.223141223192 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +12 0.325523257256 0.127660542727 +26 0.310375601053 0.102933138609 +322 0.322418868542 0.127401947975 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +342 0.317628741264 0.128432154655 +322 0.322418868542 0.127401947975 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +343 0.313248634338 0.124052047729 +342 0.317628741264 0.128432154655 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +344 0.307634621859 0.121434122324 +343 0.313248634338 0.124052047729 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +345 0.301463782787 0.120894283056 +344 0.307634621859 0.121434122324 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +346 0.295480430126 0.122497528791 +345 0.301463782787 0.120894283056 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +357 0.283497303724 0.0752553939819 +346 0.295480430126 0.122497528791 +SURF 0x00 +mat 9 +refs 3 +346 0.295480430126 0.122497528791 +357 0.283497303724 0.0752553939819 +347 0.290406227112 0.126050412655 +SURF 0x00 +mat 9 +refs 3 +347 0.290406227112 0.126050412655 +357 0.283497303724 0.0752553939819 +348 0.286853313446 0.131124645472 +SURF 0x00 +mat 9 +refs 3 +348 0.286853313446 0.131124645472 +357 0.283497303724 0.0752553939819 +349 0.285249978304 0.137107998133 +SURF 0x00 +mat 9 +refs 3 +349 0.285249978304 0.137107998133 +357 0.283497303724 0.0752553939819 +356 0.283497303724 0.145876526833 +SURF 0x00 +mat 9 +refs 3 +349 0.285249978304 0.137107998133 +356 0.283497303724 0.145876526833 +350 0.285789906979 0.143278777599 +SURF 0x00 +mat 9 +refs 4 +350 0.285789906979 0.143278777599 +356 0.283497303724 0.145876526833 +361 0.281922072172 0.149255812168 +351 0.288407742977 0.148892849684 +SURF 0x00 +mat 9 +refs 4 +351 0.288407742977 0.148892849684 +361 0.281922072172 0.149255812168 +360 0.278982281685 0.151272296906 +352 0.292787849903 0.15327295661 +SURF 0x00 +mat 9 +refs 3 +26 0.310375601053 0.102933138609 +31 0.310375601053 0.0296837687492 +357 0.283497303724 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +31 0.310375601053 0.0296837687492 +365 0.281533628702 0.0725302398205 +357 0.283497303724 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +31 0.310375601053 0.0296837687492 +363 0.278982281685 0.071848988533 +365 0.281533628702 0.0725302398205 +SURF 0x00 +mat 9 +refs 3 +31 0.310375601053 0.0296837687492 +471 0.223144620657 0.0296837091446 +363 0.278982281685 0.071848988533 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +366 0.268113136292 0.0672163069248 +363 0.278982281685 0.071848988533 +SURF 0x00 +mat 9 +refs 4 +363 0.278982281685 0.071848988533 +366 0.268113136292 0.0672163069248 +374 0.270076692104 0.0699414610863 +364 0.276430904865 0.0725302398205 +SURF 0x00 +mat 9 +refs 3 +358 0.27446731925 0.0752553939819 +364 0.276430904865 0.0725302398205 +374 0.270076692104 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +358 0.27446731925 0.0752553939819 +374 0.270076692104 0.0699414610863 +375 0.270076692104 0.146694034338 +359 0.27446731925 0.145876526833 +SURF 0x00 +mat 9 +refs 4 +359 0.27446731925 0.145876526833 +375 0.270076692104 0.146694034338 +370 0.268501549959 0.150073319674 +362 0.276042461395 0.149255812168 +SURF 0x00 +mat 9 +refs 3 +362 0.276042461395 0.149255812168 +370 0.268501549959 0.150073319674 +371 0.265561670065 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +369 0.262621790171 0.150073319674 +381 0.254603624344 0.150073319674 +380 0.251663684845 0.152089893818 +SURF 0x00 +mat 9 +refs 4 +369 0.262621790171 0.150073319674 +372 0.261046618223 0.146694034338 +376 0.256178766489 0.146694034338 +381 0.254603624344 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +382 0.248723864555 0.150073319674 +390 0.239070594311 0.150073319674 +391 0.236130714417 0.152089893818 +SURF 0x00 +mat 9 +refs 4 +379 0.247148692608 0.146694034338 +395 0.240645855665 0.146694034338 +390 0.239070594311 0.150073319674 +382 0.248723864555 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +389 0.233190834522 0.150073319674 +399 0.22608101368 0.150073319674 +398 0.223141223192 0.152089893818 +SURF 0x00 +mat 9 +refs 4 +389 0.233190834522 0.150073319674 +392 0.231615692377 0.146694034338 +396 0.227656245232 0.146694034338 +399 0.22608101368 0.150073319674 +SURF 0x00 +mat 9 +refs 4 +372 0.261046618223 0.146694034338 +373 0.261046618223 0.0699414610863 +377 0.256178766489 0.0699414610863 +376 0.256178766489 0.146694034338 +SURF 0x00 +mat 9 +refs 4 +378 0.247148692608 0.0699414610863 +394 0.240645855665 0.0699414610863 +395 0.240645855665 0.146694034338 +379 0.247148692608 0.146694034338 +SURF 0x00 +mat 9 +refs 4 +392 0.231615692377 0.146694034338 +393 0.231615692377 0.0699414610863 +397 0.227656245232 0.0699414610863 +396 0.227656245232 0.146694034338 +SURF 0x00 +mat 9 +refs 4 +367 0.263010263443 0.0672163069248 +385 0.254215091467 0.0672163069248 +377 0.256178766489 0.0699414610863 +373 0.261046618223 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +367 0.263010263443 0.0672163069248 +368 0.265561670065 0.0665350854397 +383 0.251663684845 0.0665350854397 +385 0.254215091467 0.0672163069248 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +368 0.265561670065 0.0665350854397 +366 0.268113136292 0.0672163069248 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +383 0.251663684845 0.0665350854397 +368 0.265561670065 0.0665350854397 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +388 0.236130714417 0.0665350854397 +383 0.251663684845 0.0665350854397 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +400 0.223141223192 0.0665350854397 +388 0.236130714417 0.0665350854397 +SURF 0x00 +mat 9 +refs 4 +383 0.251663684845 0.0665350854397 +388 0.236130714417 0.0665350854397 +386 0.238682091236 0.0672163069248 +384 0.249112278223 0.0672163069248 +SURF 0x00 +mat 9 +refs 4 +378 0.247148692608 0.0699414610863 +384 0.249112278223 0.0672163069248 +386 0.238682091236 0.0672163069248 +394 0.240645855665 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +387 0.233579277992 0.0672163069248 +401 0.22569257021 0.0672163069248 +397 0.227656245232 0.0699414610863 +393 0.231615692377 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +387 0.233579277992 0.0672163069248 +388 0.236130714417 0.0665350854397 +400 0.223141223192 0.0665350854397 +401 0.22569257021 0.0672163069248 +SURF 0x00 +mat 9 +refs 4 +414 0.212710440159 0.0672163069248 +402 0.220597207546 0.0672163069248 +400 0.223141223192 0.0665350854397 +413 0.210159063339 0.0665350854397 +SURF 0x00 +mat 9 +refs 4 +414 0.212710440159 0.0672163069248 +408 0.214674144983 0.0699414610863 +404 0.218633532524 0.0699414610863 +402 0.220597207546 0.0672163069248 +SURF 0x00 +mat 9 +refs 4 +423 0.19914111495 0.0699414610863 +407 0.2056440413 0.0699414610863 +415 0.207607656717 0.0672163069248 +417 0.197177439928 0.0672163069248 +SURF 0x00 +mat 9 +refs 4 +418 0.194626092911 0.0665350854397 +417 0.197177439928 0.0672163069248 +415 0.207607656717 0.0672163069248 +413 0.210159063339 0.0665350854397 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +413 0.210159063339 0.0665350854397 +400 0.223141223192 0.0665350854397 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +418 0.194626092911 0.0665350854397 +413 0.210159063339 0.0665350854397 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +433 0.180728048086 0.0665350854397 +418 0.194626092911 0.0665350854397 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +435 0.178176730871 0.0672163069248 +433 0.180728048086 0.0665350854397 +SURF 0x00 +mat 9 +refs 4 +434 0.183279514313 0.0672163069248 +416 0.192074656487 0.0672163069248 +418 0.194626092911 0.0665350854397 +433 0.180728048086 0.0665350854397 +SURF 0x00 +mat 9 +refs 4 +434 0.183279514313 0.0672163069248 +428 0.185243189335 0.0699414610863 +424 0.190111041069 0.0699414610863 +416 0.192074656487 0.0672163069248 +SURF 0x00 +mat 9 +refs 4 +409 0.214674144983 0.146694034338 +405 0.218633532524 0.146694034338 +404 0.218633532524 0.0699414610863 +408 0.214674144983 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +423 0.19914111495 0.0699414610863 +422 0.19914111495 0.146694034338 +406 0.2056440413 0.146694034338 +407 0.2056440413 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +429 0.185243189335 0.146694034338 +425 0.190111041069 0.146694034338 +424 0.190111041069 0.0699414610863 +428 0.185243189335 0.0699414610863 +SURF 0x00 +mat 9 +refs 4 +412 0.213098883629 0.150073319674 +403 0.220208793879 0.150073319674 +405 0.218633532524 0.146694034338 +409 0.214674144983 0.146694034338 +SURF 0x00 +mat 9 +refs 3 +412 0.213098883629 0.150073319674 +398 0.223141223192 0.152089893818 +403 0.220208793879 0.150073319674 +SURF 0x00 +mat 9 +refs 4 +422 0.19914111495 0.146694034338 +419 0.197565853596 0.150073319674 +411 0.207219183445 0.150073319674 +406 0.2056440413 0.146694034338 +SURF 0x00 +mat 9 +refs 3 +419 0.197565853596 0.150073319674 +410 0.210159063339 0.152089893818 +411 0.207219183445 0.150073319674 +SURF 0x00 +mat 9 +refs 4 +432 0.18366804719 0.150073319674 +420 0.191686153412 0.150073319674 +425 0.190111041069 0.146694034338 +429 0.185243189335 0.146694034338 +SURF 0x00 +mat 9 +refs 3 +432 0.18366804719 0.150073319674 +421 0.194626092911 0.152089893818 +420 0.191686153412 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +439 0.170247375965 0.149255812168 +430 0.180728048086 0.152089893818 +431 0.177788227797 0.150073319674 +SURF 0x00 +mat 9 +refs 4 +442 0.171822577715 0.145876526833 +439 0.170247375965 0.149255812168 +431 0.177788227797 0.150073319674 +426 0.176213026047 0.146694034338 +SURF 0x00 +mat 9 +refs 4 +443 0.171822488308 0.0752553939819 +442 0.171822577715 0.145876526833 +426 0.176213026047 0.146694034338 +427 0.176213026047 0.0699414610863 +SURF 0x00 +mat 9 +refs 3 +443 0.171822488308 0.0752553939819 +427 0.176213026047 0.0699414610863 +437 0.169858813286 0.0725302398205 +SURF 0x00 +mat 9 +refs 4 +438 0.167307436466 0.071848988533 +437 0.169858813286 0.0725302398205 +427 0.176213026047 0.0699414610863 +435 0.178176730871 0.0672163069248 +SURF 0x00 +mat 9 +refs 3 +471 0.223144620657 0.0296837091446 +438 0.167307436466 0.071848988533 +435 0.178176730871 0.0672163069248 +SURF 0x00 +mat 9 +refs 3 +472 0.135914117098 0.0296837687492 +438 0.167307436466 0.071848988533 +471 0.223144620657 0.0296837091446 +SURF 0x00 +mat 9 +refs 3 +472 0.135914117098 0.0296837687492 +436 0.164756029844 0.0725302398205 +438 0.167307436466 0.071848988533 +SURF 0x00 +mat 9 +refs 3 +472 0.135914117098 0.0296837687492 +444 0.162792414427 0.0752553939819 +436 0.164756029844 0.0725302398205 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +444 0.162792414427 0.0752553939819 +472 0.135914117098 0.0296837687492 +SURF 0x00 +mat 9 +refs 4 +450 0.157881915569 0.148892849684 +449 0.153501808643 0.15327295661 +441 0.167307436466 0.151272296906 +440 0.164367556572 0.149255812168 +SURF 0x00 +mat 9 +refs 4 +451 0.160499811172 0.143278777599 +450 0.157881915569 0.148892849684 +440 0.164367556572 0.149255812168 +445 0.162792414427 0.145876526833 +SURF 0x00 +mat 9 +refs 3 +452 0.16103965044 0.137107998133 +451 0.160499811172 0.143278777599 +445 0.162792414427 0.145876526833 +SURF 0x00 +mat 9 +refs 3 +452 0.16103965044 0.137107998133 +445 0.162792414427 0.145876526833 +444 0.162792414427 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +453 0.159436434507 0.131124645472 +452 0.16103965044 0.137107998133 +444 0.162792414427 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +454 0.155883431435 0.126050412655 +453 0.159436434507 0.131124645472 +444 0.162792414427 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +455 0.150809288025 0.122497528791 +454 0.155883431435 0.126050412655 +444 0.162792414427 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +455 0.150809288025 0.122497528791 +444 0.162792414427 0.0752553939819 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +456 0.144825935364 0.120894283056 +455 0.150809288025 0.122497528791 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +457 0.138655155897 0.121434122324 +456 0.144825935364 0.120894283056 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +458 0.133041143417 0.124052047729 +457 0.138655155897 0.121434122324 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +459 0.128660976887 0.128432154655 +458 0.133041143417 0.124052047729 +SURF 0x00 +mat 9 +refs 3 +473 0.135914117098 0.102933138609 +470 0.123870849609 0.127402037382 +459 0.128660976887 0.128432154655 +SURF 0x00 +mat 9 +refs 3 +474 0.120766401291 0.127660542727 +473 0.135914117098 0.102933138609 +470 0.123870849609 0.127402037382 +SURF 0x00 +mat 9 +refs 3 +337 0.223141729832 0.165932863951 +398 0.223141223192 0.152089893818 +412 0.213098883629 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +337 0.223141729832 0.165932863951 +412 0.213098883629 0.150073319674 +410 0.210159063339 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +337 0.223141729832 0.165932863951 +410 0.210159063339 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +410 0.210159063339 0.152089893818 +419 0.197565853596 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +419 0.197565853596 0.150073319674 +421 0.194626092911 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +421 0.194626092911 0.152089893818 +432 0.18366804719 0.150073319674 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +432 0.18366804719 0.150073319674 +430 0.180728048086 0.152089893818 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +430 0.180728048086 0.152089893818 +439 0.170247375965 0.149255812168 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +439 0.170247375965 0.149255812168 +441 0.167307436466 0.151272296906 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +441 0.167307436466 0.151272296906 +449 0.153501808643 0.15327295661 +SURF 0x00 +mat 9 +refs 3 +464 0.199084311724 0.165932863951 +449 0.153501808643 0.15327295661 +448 0.147887706757 0.155890762806 +SURF 0x00 +mat 9 +refs 3 +469 0.138877689838 0.159090965986 +464 0.199084311724 0.165932863951 +448 0.147887706757 0.155890762806 +SURF 0x00 +mat 9 +refs 3 +469 0.138877689838 0.159090965986 +448 0.147887706757 0.155890762806 +447 0.14171692729 0.156430631876 +SURF 0x00 +mat 9 +refs 4 +469 0.138877689838 0.159090965986 +447 0.14171692729 0.156430631876 +446 0.135733574629 0.154827475548 +468 0.132396757603 0.157003432512 +SURF 0x00 +mat 9 +refs 4 +468 0.132396757603 0.157003432512 +446 0.135733574629 0.154827475548 +463 0.130659461021 0.151274502277 +467 0.125597387552 0.153004527092 +SURF 0x00 +mat 9 +refs 4 +467 0.125597387552 0.153004527092 +463 0.130659461021 0.151274502277 +462 0.127106368542 0.146200299263 +466 0.123372614384 0.146432906389 +SURF 0x00 +mat 9 +refs 3 +466 0.123372614384 0.146432906389 +462 0.127106368542 0.146200299263 +461 0.125503242016 0.140217006207 +SURF 0x00 +mat 9 +refs 3 +466 0.123372614384 0.146432906389 +461 0.125503242016 0.140217006207 +465 0.123645603657 0.137098938227 +SURF 0x00 +mat 9 +refs 3 +465 0.123645603657 0.137098938227 +461 0.125503242016 0.140217006207 +460 0.126043081284 0.134046167135 +SURF 0x00 +mat 9 +refs 3 +470 0.123870849609 0.127402037382 +465 0.123645603657 0.137098938227 +460 0.126043081284 0.134046167135 +SURF 0x00 +mat 9 +refs 3 +470 0.123870849609 0.127402037382 +460 0.126043081284 0.134046167135 +459 0.128660976887 0.128432154655 +SURF 0x10 +mat 9 +refs 4 +356 0.283497303724 0.145876526833 +357 0.283497303724 0.0752553939819 +476 0.283497303724 0.0752553939819 +475 0.283497303724 0.145876526833 +SURF 0x10 +mat 9 +refs 4 +358 0.27446731925 0.0752553939819 +359 0.27446731925 0.145876526833 +478 0.27446731925 0.145876526833 +477 0.27446731925 0.0752553939819 +SURF 0x10 +mat 9 +refs 4 +361 0.281922072172 0.149255812168 +360 0.278982281685 0.151272296906 +479 0.278982281685 0.151272296906 +480 0.281922072172 0.149255812168 +SURF 0x10 +mat 9 +refs 4 +361 0.281922072172 0.149255812168 +356 0.283497303724 0.145876526833 +475 0.283497303724 0.145876526833 +480 0.281922072172 0.149255812168 +SURF 0x10 +mat 9 +refs 4 +362 0.276042461395 0.149255812168 +360 0.278982281685 0.151272296906 +479 0.278982281685 0.151272296906 +481 0.276042461395 0.149255812168 +SURF 0x10 +mat 9 +refs 4 +359 0.27446731925 0.145876526833 +362 0.276042461395 0.149255812168 +481 0.276042461395 0.149255812168 +478 0.27446731925 0.145876526833 +SURF 0x10 +mat 9 +refs 4 +363 0.278982281685 0.071848988533 +364 0.276430904865 0.0725302398205 +483 0.276430904865 0.0725302398205 +482 0.278982281685 0.071848988533 +SURF 0x10 +mat 9 +refs 4 +364 0.276430904865 0.0725302398205 +358 0.27446731925 0.0752553939819 +477 0.27446731925 0.0752553939819 +483 0.276430904865 0.0725302398205 +SURF 0x10 +mat 9 +refs 4 +365 0.281533628702 0.0725302398205 +363 0.278982281685 0.071848988533 +482 0.278982281685 0.071848988533 +484 0.281533628702 0.0725302398205 +SURF 0x10 +mat 9 +refs 4 +365 0.281533628702 0.0725302398205 +357 0.283497303724 0.0752553939819 +476 0.283497303724 0.0752553939819 +484 0.281533628702 0.0725302398205 +SURF 0x10 +mat 9 +refs 4 +374 0.270076692104 0.0699414610863 +366 0.268113136292 0.0672163069248 +485 0.268113136292 0.0672163069248 +486 0.270076692104 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +368 0.265561670065 0.0665350854397 +366 0.268113136292 0.0672163069248 +485 0.268113136292 0.0672163069248 +487 0.265561670065 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +367 0.263010263443 0.0672163069248 +373 0.261046618223 0.0699414610863 +489 0.261046618223 0.0699414610863 +488 0.263010263443 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +368 0.265561670065 0.0665350854397 +367 0.263010263443 0.0672163069248 +488 0.263010263443 0.0672163069248 +487 0.265561670065 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +372 0.261046618223 0.146694034338 +369 0.262621790171 0.150073319674 +490 0.262621790171 0.150073319674 +491 0.261046618223 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +371 0.265561670065 0.152089893818 +369 0.262621790171 0.150073319674 +490 0.262621790171 0.150073319674 +492 0.265561670065 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +370 0.268501549959 0.150073319674 +375 0.270076692104 0.146694034338 +494 0.270076692104 0.146694034338 +493 0.268501549959 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +371 0.265561670065 0.152089893818 +370 0.268501549959 0.150073319674 +493 0.268501549959 0.150073319674 +492 0.265561670065 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +373 0.261046618223 0.0699414610863 +372 0.261046618223 0.146694034338 +491 0.261046618223 0.146694034338 +489 0.261046618223 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +375 0.270076692104 0.146694034338 +374 0.270076692104 0.0699414610863 +486 0.270076692104 0.0699414610863 +494 0.270076692104 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +376 0.256178766489 0.146694034338 +377 0.256178766489 0.0699414610863 +496 0.256178766489 0.0699414610863 +495 0.256178766489 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +378 0.247148692608 0.0699414610863 +379 0.247148692608 0.146694034338 +498 0.247148692608 0.146694034338 +497 0.247148692608 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +380 0.251663684845 0.152089893818 +381 0.254603624344 0.150073319674 +500 0.254603624344 0.150073319674 +499 0.251663684845 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +381 0.254603624344 0.150073319674 +376 0.256178766489 0.146694034338 +495 0.256178766489 0.146694034338 +500 0.254603624344 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +382 0.248723864555 0.150073319674 +380 0.251663684845 0.152089893818 +499 0.251663684845 0.152089893818 +501 0.248723864555 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +379 0.247148692608 0.146694034338 +382 0.248723864555 0.150073319674 +501 0.248723864555 0.150073319674 +498 0.247148692608 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +383 0.251663684845 0.0665350854397 +384 0.249112278223 0.0672163069248 +503 0.249112278223 0.0672163069248 +502 0.251663684845 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +384 0.249112278223 0.0672163069248 +378 0.247148692608 0.0699414610863 +497 0.247148692608 0.0699414610863 +503 0.249112278223 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +385 0.254215091467 0.0672163069248 +383 0.251663684845 0.0665350854397 +502 0.251663684845 0.0665350854397 +504 0.254215091467 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +377 0.256178766489 0.0699414610863 +385 0.254215091467 0.0672163069248 +504 0.254215091467 0.0672163069248 +496 0.256178766489 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +394 0.240645855665 0.0699414610863 +386 0.238682091236 0.0672163069248 +505 0.238682091236 0.0672163069248 +506 0.240645855665 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +386 0.238682091236 0.0672163069248 +388 0.236130714417 0.0665350854397 +507 0.236130714417 0.0665350854397 +505 0.238682091236 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +387 0.233579277992 0.0672163069248 +393 0.231615692377 0.0699414610863 +509 0.231615692377 0.0699414610863 +508 0.233579277992 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +388 0.236130714417 0.0665350854397 +387 0.233579277992 0.0672163069248 +508 0.233579277992 0.0672163069248 +507 0.236130714417 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +392 0.231615692377 0.146694034338 +389 0.233190834522 0.150073319674 +510 0.233190834522 0.150073319674 +511 0.231615692377 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +391 0.236130714417 0.152089893818 +389 0.233190834522 0.150073319674 +510 0.233190834522 0.150073319674 +512 0.236130714417 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +390 0.239070594311 0.150073319674 +395 0.240645855665 0.146694034338 +514 0.240645855665 0.146694034338 +513 0.239070594311 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +391 0.236130714417 0.152089893818 +390 0.239070594311 0.150073319674 +513 0.239070594311 0.150073319674 +512 0.236130714417 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +393 0.231615692377 0.0699414610863 +392 0.231615692377 0.146694034338 +511 0.231615692377 0.146694034338 +509 0.231615692377 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +395 0.240645855665 0.146694034338 +394 0.240645855665 0.0699414610863 +506 0.240645855665 0.0699414610863 +514 0.240645855665 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +396 0.227656245232 0.146694034338 +397 0.227656245232 0.0699414610863 +516 0.227656245232 0.0699414610863 +515 0.227656245232 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +398 0.223141223192 0.152089893818 +399 0.22608101368 0.150073319674 +518 0.22608101368 0.150073319674 +517 0.223141223192 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +399 0.22608101368 0.150073319674 +396 0.227656245232 0.146694034338 +515 0.227656245232 0.146694034338 +518 0.22608101368 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +401 0.22569257021 0.0672163069248 +400 0.223141223192 0.0665350854397 +519 0.223141223192 0.0665350854397 +520 0.22569257021 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +397 0.227656245232 0.0699414610863 +401 0.22569257021 0.0672163069248 +520 0.22569257021 0.0672163069248 +516 0.227656245232 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +374 0.270076692104 0.0699414610863 +358 0.27446731925 0.0752553939819 +477 0.27446731925 0.0752553939819 +486 0.270076692104 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +402 0.220597207546 0.0672163069248 +404 0.218633532524 0.0699414610863 +530 0.218633532524 0.0699414610863 +521 0.220597207546 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +405 0.218633532524 0.146694034338 +403 0.220208793879 0.150073319674 +538 0.220208793879 0.150073319674 +536 0.218633532524 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +404 0.218633532524 0.0699414610863 +405 0.218633532524 0.146694034338 +536 0.218633532524 0.146694034338 +530 0.218633532524 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +407 0.2056440413 0.0699414610863 +406 0.2056440413 0.146694034338 +540 0.2056440413 0.146694034338 +532 0.2056440413 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +409 0.214674144983 0.146694034338 +408 0.214674144983 0.0699414610863 +531 0.214674144983 0.0699414610863 +537 0.214674144983 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +411 0.207219183445 0.150073319674 +410 0.210159063339 0.152089893818 +557 0.210159063339 0.152089893818 +542 0.207219183445 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +406 0.2056440413 0.146694034338 +411 0.207219183445 0.150073319674 +542 0.207219183445 0.150073319674 +540 0.2056440413 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +412 0.213098883629 0.150073319674 +410 0.210159063339 0.152089893818 +557 0.210159063339 0.152089893818 +539 0.213098883629 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +412 0.213098883629 0.150073319674 +409 0.214674144983 0.146694034338 +537 0.214674144983 0.146694034338 +539 0.213098883629 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +414 0.212710440159 0.0672163069248 +413 0.210159063339 0.0665350854397 +525 0.210159063339 0.0665350854397 +522 0.212710440159 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +408 0.214674144983 0.0699414610863 +414 0.212710440159 0.0672163069248 +522 0.212710440159 0.0672163069248 +531 0.214674144983 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +413 0.210159063339 0.0665350854397 +415 0.207607656717 0.0672163069248 +523 0.207607656717 0.0672163069248 +525 0.210159063339 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +415 0.207607656717 0.0672163069248 +407 0.2056440413 0.0699414610863 +532 0.2056440413 0.0699414610863 +523 0.207607656717 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +416 0.192074656487 0.0672163069248 +424 0.190111041069 0.0699414610863 +534 0.190111041069 0.0699414610863 +528 0.192074656487 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +418 0.194626092911 0.0665350854397 +416 0.192074656487 0.0672163069248 +528 0.192074656487 0.0672163069248 +526 0.194626092911 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +423 0.19914111495 0.0699414610863 +417 0.197177439928 0.0672163069248 +524 0.197177439928 0.0672163069248 +533 0.19914111495 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +417 0.197177439928 0.0672163069248 +418 0.194626092911 0.0665350854397 +526 0.194626092911 0.0665350854397 +524 0.197177439928 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +419 0.197565853596 0.150073319674 +422 0.19914111495 0.146694034338 +541 0.19914111495 0.146694034338 +543 0.197565853596 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +421 0.194626092911 0.152089893818 +419 0.197565853596 0.150073319674 +543 0.197565853596 0.150073319674 +558 0.194626092911 0.152089893818 +SURF 0x10 +mat 9 +refs 4 +425 0.190111041069 0.146694034338 +420 0.191686153412 0.150073319674 +546 0.191686153412 0.150073319674 +544 0.190111041069 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +420 0.191686153412 0.150073319674 +421 0.194626092911 0.152089893818 +558 0.194626092911 0.152089893818 +546 0.191686153412 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +422 0.19914111495 0.146694034338 +423 0.19914111495 0.0699414610863 +533 0.19914111495 0.0699414610863 +541 0.19914111495 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +424 0.190111041069 0.0699414610863 +425 0.190111041069 0.146694034338 +544 0.190111041069 0.146694034338 +534 0.190111041069 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +427 0.176213026047 0.0699414610863 +426 0.176213026047 0.146694034338 +550 0.176213026047 0.146694034338 +552 0.176213026047 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +429 0.185243189335 0.146694034338 +428 0.185243189335 0.0699414610863 +535 0.185243189335 0.0699414610863 +545 0.185243189335 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +431 0.177788227797 0.150073319674 +430 0.180728048086 0.152089893818 +559 0.180728048086 0.152089893818 +548 0.177788227797 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +426 0.176213026047 0.146694034338 +431 0.177788227797 0.150073319674 +548 0.177788227797 0.150073319674 +550 0.176213026047 0.146694034338 +SURF 0x10 +mat 9 +refs 4 +432 0.18366804719 0.150073319674 +430 0.180728048086 0.152089893818 +559 0.180728048086 0.152089893818 +547 0.18366804719 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +432 0.18366804719 0.150073319674 +429 0.185243189335 0.146694034338 +545 0.185243189335 0.146694034338 +547 0.18366804719 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +434 0.183279514313 0.0672163069248 +433 0.180728048086 0.0665350854397 +527 0.180728048086 0.0665350854397 +529 0.183279514313 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +428 0.185243189335 0.0699414610863 +434 0.183279514313 0.0672163069248 +529 0.183279514313 0.0672163069248 +535 0.185243189335 0.0699414610863 +SURF 0x10 +mat 9 +refs 4 +435 0.178176730871 0.0672163069248 +433 0.180728048086 0.0665350854397 +527 0.180728048086 0.0665350854397 +555 0.178176730871 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +435 0.178176730871 0.0672163069248 +427 0.176213026047 0.0699414610863 +552 0.176213026047 0.0699414610863 +555 0.178176730871 0.0672163069248 +SURF 0x10 +mat 9 +refs 4 +444 0.162792414427 0.0752553939819 +436 0.164756029844 0.0725302398205 +560 0.164756029844 0.0725302398205 +561 0.162792414427 0.0752553939819 +SURF 0x10 +mat 9 +refs 4 +438 0.167307436466 0.071848988533 +436 0.164756029844 0.0725302398205 +560 0.164756029844 0.0725302398205 +556 0.167307436466 0.071848988533 +SURF 0x10 +mat 9 +refs 4 +443 0.171822488308 0.0752553939819 +437 0.169858813286 0.0725302398205 +554 0.169858813286 0.0725302398205 +553 0.171822488308 0.0752553939819 +SURF 0x10 +mat 9 +refs 4 +437 0.169858813286 0.0725302398205 +438 0.167307436466 0.071848988533 +556 0.167307436466 0.071848988533 +554 0.169858813286 0.0725302398205 +SURF 0x10 +mat 9 +refs 4 +439 0.170247375965 0.149255812168 +442 0.171822577715 0.145876526833 +551 0.171822577715 0.145876526833 +549 0.170247375965 0.149255812168 +SURF 0x10 +mat 9 +refs 4 +441 0.167307436466 0.151272296906 +439 0.170247375965 0.149255812168 +549 0.170247375965 0.149255812168 +562 0.167307436466 0.151272296906 +SURF 0x10 +mat 9 +refs 4 +445 0.162792414427 0.145876526833 +440 0.164367556572 0.149255812168 +563 0.164367556572 0.149255812168 +564 0.162792414427 0.145876526833 +SURF 0x10 +mat 9 +refs 4 +441 0.167307436466 0.151272296906 +440 0.164367556572 0.149255812168 +563 0.164367556572 0.149255812168 +562 0.167307436466 0.151272296906 +SURF 0x10 +mat 9 +refs 4 +442 0.171822577715 0.145876526833 +443 0.171822488308 0.0752553939819 +553 0.171822488308 0.0752553939819 +551 0.171822577715 0.145876526833 +SURF 0x10 +mat 9 +refs 4 +445 0.162792414427 0.145876526833 +444 0.162792414427 0.0752553939819 +561 0.162792414427 0.0752553939819 +564 0.162792414427 0.145876526833 +SURF 0x10 +mat 9 +refs 4 +403 0.220208793879 0.150073319674 +398 0.223141223192 0.152089893818 +517 0.223141223192 0.152089893818 +538 0.220208793879 0.150073319674 +SURF 0x10 +mat 9 +refs 4 +400 0.223141223192 0.0665350854397 +402 0.220597207546 0.0672163069248 +521 0.220597207546 0.0672163069248 +519 0.223141223192 0.0665350854397 +SURF 0x10 +mat 9 +refs 4 +338 0.31563025713 0.151274502277 +339 0.3191832304 0.146200299263 +566 0.3191832304 0.146200299263 +565 0.31563025713 0.151274502277 +SURF 0x10 +mat 9 +refs 4 +339 0.3191832304 0.146200299263 +340 0.320786416531 0.140217006207 +567 0.320786416531 0.140217006207 +566 0.3191832304 0.146200299263 +SURF 0x10 +mat 9 +refs 4 +340 0.320786416531 0.140217006207 +341 0.320246636868 0.134046167135 +568 0.320246636868 0.134046167135 +567 0.320786416531 0.140217006207 +SURF 0x10 +mat 9 +refs 4 +341 0.320246636868 0.134046167135 +342 0.317628741264 0.128432154655 +569 0.317628741264 0.128432154655 +568 0.320246636868 0.134046167135 +SURF 0x10 +mat 9 +refs 4 +342 0.317628741264 0.128432154655 +343 0.313248634338 0.124052047729 +570 0.313248634338 0.124052047729 +569 0.317628741264 0.128432154655 +SURF 0x10 +mat 9 +refs 4 +343 0.313248634338 0.124052047729 +344 0.307634621859 0.121434122324 +571 0.307634621859 0.121434122324 +570 0.313248634338 0.124052047729 +SURF 0x10 +mat 9 +refs 4 +344 0.307634621859 0.121434122324 +345 0.301463782787 0.120894283056 +572 0.301463782787 0.120894283056 +571 0.307634621859 0.121434122324 +SURF 0x10 +mat 9 +refs 4 +345 0.301463782787 0.120894283056 +346 0.295480430126 0.122497528791 +573 0.295480430126 0.122497528791 +572 0.301463782787 0.120894283056 +SURF 0x10 +mat 9 +refs 4 +346 0.295480430126 0.122497528791 +347 0.290406227112 0.126050412655 +574 0.290406227112 0.126050412655 +573 0.295480430126 0.122497528791 +SURF 0x10 +mat 9 +refs 4 +347 0.290406227112 0.126050412655 +348 0.286853313446 0.131124645472 +575 0.286853313446 0.131124645472 +574 0.290406227112 0.126050412655 +SURF 0x10 +mat 9 +refs 4 +348 0.286853313446 0.131124645472 +349 0.285249978304 0.137107998133 +576 0.285249978304 0.137107998133 +575 0.286853313446 0.131124645472 +SURF 0x10 +mat 9 +refs 4 +349 0.285249978304 0.137107998133 +350 0.285789906979 0.143278777599 +577 0.285789906979 0.143278777599 +576 0.285249978304 0.137107998133 +SURF 0x10 +mat 9 +refs 4 +350 0.285789906979 0.143278777599 +351 0.288407742977 0.148892849684 +578 0.288407742977 0.148892849684 +577 0.285789906979 0.143278777599 +SURF 0x10 +mat 9 +refs 4 +351 0.288407742977 0.148892849684 +352 0.292787849903 0.15327295661 +579 0.292787849903 0.15327295661 +578 0.288407742977 0.148892849684 +SURF 0x10 +mat 9 +refs 4 +352 0.292787849903 0.15327295661 +353 0.29840195179 0.155890762806 +580 0.29840195179 0.155890762806 +579 0.292787849903 0.15327295661 +SURF 0x10 +mat 9 +refs 4 +353 0.29840195179 0.155890762806 +354 0.304572761059 0.156430631876 +581 0.304572761059 0.156430631876 +580 0.29840195179 0.155890762806 +SURF 0x10 +mat 9 +refs 4 +354 0.304572761059 0.156430631876 +355 0.310556054115 0.154827475548 +582 0.310556054115 0.154827475548 +581 0.304572761059 0.156430631876 +SURF 0x10 +mat 9 +refs 4 +355 0.310556054115 0.154827475548 +338 0.31563025713 0.151274502277 +565 0.31563025713 0.151274502277 +582 0.310556054115 0.154827475548 +SURF 0x10 +mat 9 +refs 4 +463 0.130659461021 0.151274502277 +446 0.135733574629 0.154827475548 +583 0.135733574629 0.154827475548 +584 0.130659461021 0.151274502277 +SURF 0x10 +mat 9 +refs 4 +446 0.135733574629 0.154827475548 +447 0.14171692729 0.156430631876 +585 0.14171692729 0.156430631876 +583 0.135733574629 0.154827475548 +SURF 0x10 +mat 9 +refs 4 +447 0.14171692729 0.156430631876 +448 0.147887706757 0.155890762806 +586 0.147887706757 0.155890762806 +585 0.14171692729 0.156430631876 +SURF 0x10 +mat 9 +refs 4 +448 0.147887706757 0.155890762806 +449 0.153501808643 0.15327295661 +587 0.153501808643 0.15327295661 +586 0.147887706757 0.155890762806 +SURF 0x10 +mat 9 +refs 4 +449 0.153501808643 0.15327295661 +450 0.157881915569 0.148892849684 +588 0.157881915569 0.148892849684 +587 0.153501808643 0.15327295661 +SURF 0x10 +mat 9 +refs 4 +450 0.157881915569 0.148892849684 +451 0.160499811172 0.143278777599 +589 0.160499811172 0.143278777599 +588 0.157881915569 0.148892849684 +SURF 0x10 +mat 9 +refs 4 +451 0.160499811172 0.143278777599 +452 0.16103965044 0.137107998133 +590 0.16103965044 0.137107998133 +589 0.160499811172 0.143278777599 +SURF 0x10 +mat 9 +refs 4 +452 0.16103965044 0.137107998133 +453 0.159436434507 0.131124645472 +591 0.159436434507 0.131124645472 +590 0.16103965044 0.137107998133 +SURF 0x10 +mat 9 +refs 4 +453 0.159436434507 0.131124645472 +454 0.155883431435 0.126050412655 +592 0.155883431435 0.126050412655 +591 0.159436434507 0.131124645472 +SURF 0x10 +mat 9 +refs 4 +454 0.155883431435 0.126050412655 +455 0.150809288025 0.122497528791 +593 0.150809288025 0.122497528791 +592 0.155883431435 0.126050412655 +SURF 0x10 +mat 9 +refs 4 +455 0.150809288025 0.122497528791 +456 0.144825935364 0.120894283056 +594 0.144825935364 0.120894283056 +593 0.150809288025 0.122497528791 +SURF 0x10 +mat 9 +refs 4 +456 0.144825935364 0.120894283056 +457 0.138655155897 0.121434122324 +595 0.138655155897 0.121434122324 +594 0.144825935364 0.120894283056 +SURF 0x10 +mat 9 +refs 4 +457 0.138655155897 0.121434122324 +458 0.133041143417 0.124052047729 +596 0.133041143417 0.124052047729 +595 0.138655155897 0.121434122324 +SURF 0x10 +mat 9 +refs 4 +458 0.133041143417 0.124052047729 +459 0.128660976887 0.128432154655 +597 0.128660976887 0.128432154655 +596 0.133041143417 0.124052047729 +SURF 0x10 +mat 9 +refs 4 +459 0.128660976887 0.128432154655 +460 0.126043081284 0.134046167135 +598 0.126043081284 0.134046167135 +597 0.128660976887 0.128432154655 +SURF 0x10 +mat 9 +refs 4 +460 0.126043081284 0.134046167135 +461 0.125503242016 0.140217006207 +599 0.125503242016 0.140217006207 +598 0.126043081284 0.134046167135 +SURF 0x10 +mat 9 +refs 4 +461 0.125503242016 0.140217006207 +462 0.127106368542 0.146200299263 +600 0.127106368542 0.146200299263 +599 0.125503242016 0.140217006207 +SURF 0x10 +mat 9 +refs 4 +462 0.127106368542 0.146200299263 +463 0.130659461021 0.151274502277 +584 0.130659461021 0.151274502277 +600 0.127106368542 0.146200299263 +SURF 0x10 +mat 9 +refs 3 +601 0.212017804384 0.86053442955 +146 0.351815700531 0.971430838108 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +145 0.0721830129623 0.853988051414 +602 0.100030243397 0.853988051414 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +603 0.324005365372 0.853988051414 +147 0.351852595806 0.853988051414 +146 0.351815700531 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +602 0.100030243397 0.853988051414 +604 0.109450727701 0.862580060959 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +605 0.314584851265 0.862580299377 +603 0.324005365372 0.853988051414 +146 0.351815700531 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +604 0.109450727701 0.862580060959 +606 0.146646112204 0.862580060959 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +607 0.277389407158 0.862580299377 +605 0.314584851265 0.862580299377 +146 0.351815700531 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +606 0.146646112204 0.862580060959 +608 0.164327710867 0.85030567646 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +609 0.259707957506 0.85030567646 +607 0.277389407158 0.862580299377 +146 0.351815700531 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +608 0.164327710867 0.85030567646 +610 0.18229663372 0.85030567646 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +611 0.241739034653 0.85030567646 +609 0.259707957506 0.85030567646 +146 0.351815700531 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +610 0.18229663372 0.85030567646 +612 0.19341391325 0.86053442955 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +612 0.19341391325 0.86053442955 +601 0.212017804384 0.86053442955 +144 0.0722115933895 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +601 0.212017804384 0.86053442955 +613 0.230621784925 0.86053442955 +146 0.351815700531 0.971430838108 +SURF 0x10 +mat 9 +refs 3 +613 0.230621784925 0.86053442955 +611 0.241739034653 0.85030567646 +146 0.351815700531 0.971430838108 +SURF 0x00 +mat 9 +refs 4 +616 0.792721807957 0.646543204784 +617 0.812355160713 0.646543204784 +614 0.812355160713 0.653178572655 +615 0.792721807957 0.653178572655 +SURF 0x00 +mat 9 +refs 4 +618 0.782480955124 0.653178572655 +621 0.782480955124 0.646543204784 +620 0.782209992409 0.646543204784 +619 0.782209992409 0.653178572655 +SURF 0x00 +mat 9 +refs 4 +614 0.812355160713 0.653178572655 +618 0.782480955124 0.653178572655 +619 0.782209992409 0.653178572655 +615 0.792721807957 0.653178572655 +SURF 0x00 +mat 9 +refs 4 +616 0.792721807957 0.646543204784 +620 0.782209992409 0.646543204784 +621 0.782480955124 0.646543204784 +617 0.812355160713 0.646543204784 +SURF 0x00 +mat 9 +refs 4 +617 0.929077625275 0.0558814108372 +621 0.959728956223 0.0558814108372 +618 0.959728956223 0.0558814108372 +614 0.929077625275 0.0558814108372 +SURF 0x00 +mat 9 +refs 4 +620 0.782209992409 0.646543204784 +616 0.792721807957 0.646543204784 +624 0.788360714912 0.646543204784 +622 0.782982468605 0.646543204784 +SURF 0x00 +mat 9 +refs 4 +615 0.792721807957 0.653178572655 +619 0.782209992409 0.653178572655 +623 0.782982468605 0.653178572655 +625 0.788360714912 0.653178572655 +SURF 0x00 +mat 9 +refs 4 +619 0.782209992409 0.653178572655 +620 0.782209992409 0.646543204784 +622 0.782982468605 0.646543204784 +623 0.782982468605 0.653178572655 +SURF 0x00 +mat 9 +refs 4 +616 0.792721807957 0.646543204784 +615 0.792721807957 0.653178572655 +625 0.788360714912 0.653178572655 +624 0.788360714912 0.646543204784 +SURF 0x00 +mat 9 +refs 4 +625 0.788360714912 0.653178572655 +623 0.782982468605 0.653178572655 +622 0.782982468605 0.646543204784 +624 0.788360714912 0.646543204784 +SURF 0x00 +mat 9 +refs 4 +626 0.964389324188 0.616022288799 +628 0.969767689705 0.616022288799 +629 0.969767689705 0.60938680172 +627 0.964389324188 0.60938680172 +SURF 0x00 +mat 9 +refs 4 +635 0.960028290749 0.60938680172 +636 0.960028290749 0.616022288799 +626 0.964389324188 0.616022288799 +627 0.964389324188 0.60938680172 +SURF 0x00 +mat 9 +refs 4 +632 0.970540165901 0.616022288799 +631 0.970540165901 0.60938680172 +629 0.969767689705 0.60938680172 +628 0.969767689705 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +636 0.960028290749 0.616022288799 +632 0.970540165901 0.616022288799 +628 0.969767689705 0.616022288799 +626 0.964389324188 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +631 0.970540165901 0.60938680172 +635 0.960028290749 0.60938680172 +627 0.964389324188 0.60938680172 +629 0.969767689705 0.60938680172 +SURF 0x00 +mat 9 +refs 4 +634 0.929077625275 0.0558814108372 +630 0.959728956223 0.0558814108372 +633 0.959728956223 0.0558814108372 +637 0.929077625275 0.0558814108372 +SURF 0x00 +mat 9 +refs 4 +635 0.960028290749 0.60938680172 +631 0.970540165901 0.60938680172 +630 0.970269143581 0.60938680172 +634 0.940394878387 0.60938680172 +SURF 0x00 +mat 9 +refs 4 +637 0.940394878387 0.616022288799 +633 0.970269143581 0.616022288799 +632 0.970540165901 0.616022288799 +636 0.960028290749 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +633 0.970269143581 0.616022288799 +630 0.970269143581 0.60938680172 +631 0.970540165901 0.60938680172 +632 0.970540165901 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +635 0.960028290749 0.60938680172 +634 0.940394878387 0.60938680172 +637 0.940394878387 0.616022288799 +636 0.960028290749 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +640 0.960028290749 0.73869150877 +639 0.960028290749 0.7320561409 +638 0.940394878387 0.7320561409 +641 0.940394878387 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +642 0.970269143581 0.7320561409 +643 0.970540165901 0.7320561409 +644 0.970540165901 0.73869150877 +645 0.970269143581 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +638 0.940394878387 0.7320561409 +639 0.960028290749 0.7320561409 +643 0.970540165901 0.7320561409 +642 0.970269143581 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +640 0.960028290749 0.73869150877 +641 0.940394878387 0.73869150877 +645 0.970269143581 0.73869150877 +644 0.970540165901 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +641 0.929077625275 0.0558814108372 +638 0.929077625275 0.0558814108372 +642 0.959728956223 0.0558814108372 +645 0.959728956223 0.0558814108372 +SURF 0x00 +mat 9 +refs 4 +644 0.970540165901 0.73869150877 +646 0.969767689705 0.73869150877 +648 0.964389324188 0.73869150877 +640 0.960028290749 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +639 0.960028290749 0.7320561409 +649 0.964389324188 0.7320561409 +647 0.969767689705 0.7320561409 +643 0.970540165901 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +643 0.970540165901 0.7320561409 +647 0.969767689705 0.7320561409 +646 0.969767689705 0.73869150877 +644 0.970540165901 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +640 0.960028290749 0.73869150877 +648 0.964389324188 0.73869150877 +649 0.964389324188 0.7320561409 +639 0.960028290749 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +649 0.964389324188 0.7320561409 +648 0.964389324188 0.73869150877 +646 0.969767689705 0.73869150877 +647 0.969767689705 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +650 0.135674804449 0.118172258139 +651 0.135674804449 0.124807476997 +653 0.14105322957 0.124807476997 +652 0.14105322957 0.118172258139 +SURF 0x00 +mat 9 +refs 4 +659 0.131313860416 0.124807476997 +651 0.135674804449 0.124807476997 +650 0.135674804449 0.118172258139 +660 0.131313860416 0.118172258139 +SURF 0x00 +mat 9 +refs 4 +656 0.141825646162 0.118172258139 +652 0.14105322957 0.118172258139 +653 0.14105322957 0.124807476997 +655 0.141825646162 0.124807476997 +SURF 0x00 +mat 9 +refs 4 +660 0.131313860416 0.118172258139 +650 0.135674804449 0.118172258139 +652 0.14105322957 0.118172258139 +656 0.141825646162 0.118172258139 +SURF 0x00 +mat 9 +refs 4 +655 0.141825646162 0.124807476997 +653 0.14105322957 0.124807476997 +651 0.135674804449 0.124807476997 +659 0.131313860416 0.124807476997 +SURF 0x00 +mat 9 +refs 4 +658 0.929077625275 0.0558814108372 +661 0.929077625275 0.0558814108372 +657 0.959728956223 0.0558814108372 +654 0.959728956223 0.0558814108372 +SURF 0x00 +mat 9 +refs 4 +659 0.131313860416 0.124807476997 +658 0.111680448055 0.124807476997 +654 0.141554623842 0.124807476997 +655 0.141825646162 0.124807476997 +SURF 0x00 +mat 9 +refs 4 +661 0.111680448055 0.118172258139 +660 0.131313860416 0.118172258139 +656 0.141825646162 0.118172258139 +657 0.141554623842 0.118172258139 +SURF 0x00 +mat 9 +refs 4 +657 0.141554623842 0.118172258139 +656 0.141825646162 0.118172258139 +655 0.141825646162 0.124807476997 +654 0.141554623842 0.124807476997 +SURF 0x00 +mat 9 +refs 4 +659 0.131313860416 0.124807476997 +660 0.131313860416 0.118172258139 +661 0.111680448055 0.118172258139 +658 0.111680448055 0.124807476997 +SURF 0x00 +mat 9 +refs 4 +664 0.455726921558 0.772540509701 +663 0.455726921558 0.76590514183 +662 0.457793772221 0.76590514183 +665 0.457793772221 0.772540509701 +SURF 0x00 +mat 9 +refs 4 +666 0.440151423216 0.76590514183 +667 0.442248225212 0.76590514183 +668 0.442248225212 0.772540509701 +669 0.440151423216 0.772540509701 +SURF 0x00 +mat 9 +refs 4 +662 0.457793772221 0.76590514183 +663 0.455726921558 0.76590514183 +667 0.442248225212 0.76590514183 +666 0.440151423216 0.76590514183 +SURF 0x00 +mat 9 +refs 4 +664 0.455726921558 0.772540509701 +665 0.457793772221 0.772540509701 +669 0.440151423216 0.772540509701 +668 0.442248225212 0.772540509701 +SURF 0x00 +mat 9 +refs 4 +665 0.724613368511 0.0204566717148 +662 0.724613368511 0.0204566717148 +666 0.742714762688 0.0204566717148 +669 0.742714762688 0.0204566717148 +SURF 0x00 +mat 9 +refs 4 +668 0.442248225212 0.772540509701 +670 0.445500791073 0.772540509701 +672 0.450879305601 0.772540509701 +664 0.455726921558 0.772540509701 +SURF 0x00 +mat 9 +refs 4 +663 0.455726921558 0.76590514183 +673 0.450879305601 0.76590514183 +671 0.445500791073 0.76590514183 +667 0.442248225212 0.76590514183 +SURF 0x00 +mat 9 +refs 4 +667 0.442248225212 0.76590514183 +671 0.445500791073 0.76590514183 +670 0.445500791073 0.772540509701 +668 0.442248225212 0.772540509701 +SURF 0x00 +mat 9 +refs 4 +664 0.455726921558 0.772540509701 +672 0.450879305601 0.772540509701 +673 0.450879305601 0.76590514183 +663 0.455726921558 0.76590514183 +SURF 0x00 +mat 9 +refs 4 +673 0.450879305601 0.76590514183 +672 0.450879305601 0.772540509701 +670 0.445500791073 0.772540509701 +671 0.445500791073 0.76590514183 +SURF 0x00 +mat 9 +refs 4 +674 0.450879305601 0.7320561409 +675 0.450879305601 0.73869150877 +677 0.445500791073 0.73869150877 +676 0.445500791073 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +683 0.455726921558 0.73869150877 +675 0.450879305601 0.73869150877 +674 0.450879305601 0.7320561409 +684 0.455726921558 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +680 0.442248225212 0.7320561409 +676 0.445500791073 0.7320561409 +677 0.445500791073 0.73869150877 +679 0.442248225212 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +684 0.455726921558 0.7320561409 +674 0.450879305601 0.7320561409 +676 0.445500791073 0.7320561409 +680 0.442248225212 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +679 0.442248225212 0.73869150877 +677 0.445500791073 0.73869150877 +675 0.450879305601 0.73869150877 +683 0.455726921558 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +682 0.724613368511 0.0204566717148 +685 0.724613368511 0.0204566717148 +681 0.742714762688 0.0204566717148 +678 0.742714762688 0.0204566717148 +SURF 0x00 +mat 9 +refs 4 +683 0.455726921558 0.73869150877 +682 0.457793772221 0.73869150877 +678 0.440151423216 0.73869150877 +679 0.442248225212 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +685 0.457793772221 0.7320561409 +684 0.455726921558 0.7320561409 +680 0.442248225212 0.7320561409 +681 0.440151423216 0.7320561409 +SURF 0x00 +mat 9 +refs 4 +681 0.440151423216 0.7320561409 +680 0.442248225212 0.7320561409 +679 0.442248225212 0.73869150877 +678 0.440151423216 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +683 0.455726921558 0.73869150877 +684 0.455726921558 0.7320561409 +685 0.457793772221 0.7320561409 +682 0.457793772221 0.73869150877 +SURF 0x00 +mat 9 +refs 4 +688 0.455726921558 0.609387040138 +689 0.457793772221 0.609387040138 +686 0.457793772221 0.616022288799 +687 0.455726921558 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +690 0.440151423216 0.616022288799 +693 0.440151423216 0.609387040138 +692 0.442248225212 0.609387040138 +691 0.442248225212 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +686 0.457793772221 0.616022288799 +690 0.440151423216 0.616022288799 +691 0.442248225212 0.616022288799 +687 0.455726921558 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +688 0.455726921558 0.609387040138 +692 0.442248225212 0.609387040138 +693 0.440151423216 0.609387040138 +689 0.457793772221 0.609387040138 +SURF 0x00 +mat 9 +refs 4 +689 0.724613368511 0.0204566717148 +693 0.742714762688 0.0204566717148 +690 0.742714762688 0.0204566717148 +686 0.724613368511 0.0204566717148 +SURF 0x00 +mat 9 +refs 4 +692 0.442248225212 0.609387040138 +688 0.455726921558 0.609387040138 +696 0.450879305601 0.609387040138 +694 0.445500791073 0.609387040138 +SURF 0x00 +mat 9 +refs 4 +687 0.455726921558 0.616022288799 +691 0.442248225212 0.616022288799 +695 0.445500791073 0.616022288799 +697 0.450879305601 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +691 0.442248225212 0.616022288799 +692 0.442248225212 0.609387040138 +694 0.445500791073 0.609387040138 +695 0.445500791073 0.616022288799 +SURF 0x00 +mat 9 +refs 4 +688 0.455726921558 0.609387040138 +687 0.455726921558 0.616022288799 +697 0.450879305601 0.616022288799 +696 0.450879305601 0.609387040138 +SURF 0x00 +mat 9 +refs 4 +697 0.450879305601 0.616022288799 +695 0.445500791073 0.616022288799 +694 0.445500791073 0.609387040138 +696 0.450879305601 0.609387040138 +SURF 0x00 +mat 9 +refs 4 +698 0.450879305601 0.582173347473 +700 0.445500791073 0.582173347473 +701 0.445500791073 0.575538039207 +699 0.450879305601 0.575538039207 +SURF 0x00 +mat 9 +refs 4 +707 0.455726921558 0.575538039207 +708 0.455726921558 0.582173347473 +698 0.450879305601 0.582173347473 +699 0.450879305601 0.575538039207 +SURF 0x00 +mat 9 +refs 4 +704 0.442248225212 0.582173347473 +703 0.442248225212 0.575538039207 +701 0.445500791073 0.575538039207 +700 0.445500791073 0.582173347473 +SURF 0x00 +mat 9 +refs 4 +708 0.455726921558 0.582173347473 +704 0.442248225212 0.582173347473 +700 0.445500791073 0.582173347473 +698 0.450879305601 0.582173347473 +SURF 0x00 +mat 9 +refs 4 +703 0.442248225212 0.575538039207 +707 0.455726921558 0.575538039207 +699 0.450879305601 0.575538039207 +701 0.445500791073 0.575538039207 +SURF 0x00 +mat 9 +refs 4 +706 0.724613368511 0.0204566717148 +702 0.742714762688 0.0204566717148 +705 0.742714762688 0.0204566717148 +709 0.724613368511 0.0204566717148 +SURF 0x00 +mat 9 +refs 4 +707 0.455726921558 0.575538039207 +703 0.442248225212 0.575538039207 +702 0.440151423216 0.575538039207 +706 0.457793772221 0.575538039207 +SURF 0x00 +mat 9 +refs 4 +709 0.457793772221 0.582173347473 +705 0.440151423216 0.582173347473 +704 0.442248225212 0.582173347473 +708 0.455726921558 0.582173347473 +SURF 0x00 +mat 9 +refs 4 +705 0.440151423216 0.582173347473 +702 0.440151423216 0.575538039207 +703 0.442248225212 0.575538039207 +704 0.442248225212 0.582173347473 +SURF 0x00 +mat 9 +refs 4 +707 0.455726921558 0.575538039207 +706 0.457793772221 0.575538039207 +709 0.457793772221 0.582173347473 +708 0.455726921558 0.582173347473 +SURF 0x00 +mat 9 +refs 4 +712 0.510526657104 0.225349217653 +713 0.502283155918 0.225349217653 +710 0.502283155918 0.231984496117 +711 0.510526657104 0.231984496117 +SURF 0x00 +mat 9 +refs 4 +714 0.532278895378 0.231984496117 +717 0.532278895378 0.225349217653 +716 0.524005353451 0.225349217653 +715 0.524005353451 0.231984496117 +SURF 0x00 +mat 9 +refs 4 +710 0.502283155918 0.231984496117 +714 0.532278895378 0.231984496117 +715 0.524005353451 0.231984496117 +711 0.510526657104 0.231984496117 +SURF 0x00 +mat 9 +refs 4 +712 0.510526657104 0.225349217653 +716 0.524005353451 0.225349217653 +717 0.532278895378 0.225349217653 +713 0.502283155918 0.225349217653 +SURF 0x00 +mat 9 +refs 4 +713 0.719379127026 0.0183388888836 +717 0.7501552701 0.0183388888836 +714 0.7501552701 0.0183388888836 +710 0.719379127026 0.0183388888836 +SURF 0x00 +mat 9 +refs 4 +716 0.524005353451 0.225349217653 +712 0.510526657104 0.225349217653 +720 0.515374302864 0.225349217653 +718 0.52075278759 0.225349217653 +SURF 0x00 +mat 9 +refs 4 +711 0.510526657104 0.231984496117 +715 0.524005353451 0.231984496117 +719 0.52075278759 0.231984496117 +721 0.515374302864 0.231984496117 +SURF 0x00 +mat 9 +refs 4 +715 0.524005353451 0.231984496117 +716 0.524005353451 0.225349217653 +718 0.52075278759 0.225349217653 +719 0.52075278759 0.231984496117 +SURF 0x00 +mat 9 +refs 4 +712 0.510526657104 0.225349217653 +711 0.510526657104 0.231984496117 +721 0.515374302864 0.231984496117 +720 0.515374302864 0.225349217653 +SURF 0x00 +mat 9 +refs 4 +721 0.515374302864 0.231984496117 +719 0.52075278759 0.231984496117 +718 0.52075278759 0.225349217653 +720 0.515374302864 0.225349217653 +SURF 0x00 +mat 9 +refs 4 +722 0.515374302864 0.265833556652 +724 0.52075278759 0.265833556652 +725 0.52075278759 0.259198188782 +723 0.515374302864 0.259198188782 +SURF 0x00 +mat 9 +refs 4 +731 0.510526657104 0.259198188782 +732 0.510526657104 0.265833556652 +722 0.515374302864 0.265833556652 +723 0.515374302864 0.259198188782 +SURF 0x00 +mat 9 +refs 4 +728 0.524005353451 0.265833556652 +727 0.524005353451 0.259198188782 +725 0.52075278759 0.259198188782 +724 0.52075278759 0.265833556652 +SURF 0x00 +mat 9 +refs 4 +732 0.510526657104 0.265833556652 +728 0.524005353451 0.265833556652 +724 0.52075278759 0.265833556652 +722 0.515374302864 0.265833556652 +SURF 0x00 +mat 9 +refs 4 +727 0.524005353451 0.259198188782 +731 0.510526657104 0.259198188782 +723 0.515374302864 0.259198188782 +725 0.52075278759 0.259198188782 +SURF 0x00 +mat 9 +refs 4 +730 0.719379127026 0.0183388888836 +726 0.7501552701 0.0183388888836 +729 0.7501552701 0.0183388888836 +733 0.719379127026 0.0183388888836 +SURF 0x00 +mat 9 +refs 4 +731 0.510526657104 0.259198188782 +727 0.524005353451 0.259198188782 +726 0.532278895378 0.259198188782 +730 0.502283155918 0.259198188782 +SURF 0x00 +mat 9 +refs 4 +733 0.502283155918 0.265833556652 +729 0.532278895378 0.265833556652 +728 0.524005353451 0.265833556652 +732 0.510526657104 0.265833556652 +SURF 0x00 +mat 9 +refs 4 +729 0.532278895378 0.265833556652 +726 0.532278895378 0.259198188782 +727 0.524005353451 0.259198188782 +728 0.524005353451 0.265833556652 +SURF 0x00 +mat 9 +refs 4 +731 0.510526657104 0.259198188782 +730 0.502283155918 0.259198188782 +733 0.502283155918 0.265833556652 +732 0.510526657104 0.265833556652 +SURF 0x00 +mat 9 +refs 4 +736 0.510526657104 0.38850274682 +735 0.510526657104 0.381867438555 +734 0.502283155918 0.381867438555 +737 0.502283155918 0.38850274682 +SURF 0x00 +mat 9 +refs 4 +738 0.532278895378 0.381867438555 +739 0.524005353451 0.381867438555 +740 0.524005353451 0.38850274682 +741 0.532278895378 0.38850274682 +SURF 0x00 +mat 9 +refs 4 +734 0.502283155918 0.381867438555 +735 0.510526657104 0.381867438555 +739 0.524005353451 0.381867438555 +738 0.532278895378 0.381867438555 +SURF 0x00 +mat 9 +refs 4 +736 0.510526657104 0.38850274682 +737 0.502283155918 0.38850274682 +741 0.532278895378 0.38850274682 +740 0.524005353451 0.38850274682 +SURF 0x00 +mat 9 +refs 4 +737 0.719379127026 0.0183388888836 +734 0.719379127026 0.0183388888836 +738 0.7501552701 0.0183388888836 +741 0.7501552701 0.0183388888836 +SURF 0x00 +mat 9 +refs 4 +740 0.524005353451 0.38850274682 +742 0.52075278759 0.38850274682 +744 0.515374302864 0.38850274682 +736 0.510526657104 0.38850274682 +SURF 0x00 +mat 9 +refs 4 +735 0.510526657104 0.381867438555 +745 0.515374302864 0.381867438555 +743 0.52075278759 0.381867438555 +739 0.524005353451 0.381867438555 +SURF 0x00 +mat 9 +refs 4 +739 0.524005353451 0.381867438555 +743 0.52075278759 0.381867438555 +742 0.52075278759 0.38850274682 +740 0.524005353451 0.38850274682 +SURF 0x00 +mat 9 +refs 4 +736 0.510526657104 0.38850274682 +744 0.515374302864 0.38850274682 +745 0.515374302864 0.381867438555 +735 0.510526657104 0.381867438555 +SURF 0x00 +mat 9 +refs 4 +745 0.515374302864 0.381867438555 +744 0.515374302864 0.38850274682 +742 0.52075278759 0.38850274682 +743 0.52075278759 0.381867438555 +SURF 0x00 +mat 9 +refs 4 +746 0.515374302864 0.415716409683 +747 0.515374302864 0.422351628542 +749 0.52075278759 0.422351628542 +748 0.52075278759 0.415716409683 +SURF 0x00 +mat 9 +refs 4 +755 0.510526657104 0.422351628542 +747 0.515374302864 0.422351628542 +746 0.515374302864 0.415716409683 +756 0.510526657104 0.415716409683 +SURF 0x00 +mat 9 +refs 4 +752 0.524005353451 0.415716409683 +748 0.52075278759 0.415716409683 +749 0.52075278759 0.422351628542 +751 0.524005353451 0.422351628542 +SURF 0x00 +mat 9 +refs 4 +756 0.510526657104 0.415716409683 +746 0.515374302864 0.415716409683 +748 0.52075278759 0.415716409683 +752 0.524005353451 0.415716409683 +SURF 0x00 +mat 9 +refs 4 +751 0.524005353451 0.422351628542 +749 0.52075278759 0.422351628542 +747 0.515374302864 0.422351628542 +755 0.510526657104 0.422351628542 +SURF 0x00 +mat 9 +refs 4 +754 0.719379127026 0.0183388888836 +757 0.719379127026 0.0183388888836 +753 0.7501552701 0.0183388888836 +750 0.7501552701 0.0183388888836 +SURF 0x00 +mat 9 +refs 4 +755 0.510526657104 0.422351628542 +754 0.502283155918 0.422351628542 +750 0.532278895378 0.422351628542 +751 0.524005353451 0.422351628542 +SURF 0x00 +mat 9 +refs 4 +757 0.502283155918 0.415716409683 +756 0.510526657104 0.415716409683 +752 0.524005353451 0.415716409683 +753 0.532278895378 0.415716409683 +SURF 0x00 +mat 9 +refs 4 +753 0.532278895378 0.415716409683 +752 0.524005353451 0.415716409683 +751 0.524005353451 0.422351628542 +750 0.532278895378 0.422351628542 +SURF 0x00 +mat 9 +refs 4 +755 0.510526657104 0.422351628542 +756 0.510526657104 0.415716409683 +757 0.502283155918 0.415716409683 +754 0.502283155918 0.422351628542 +SURF 0x00 +mat 9 +refs 3 +204 0.839476108551 0.0437469780445 +180 0.83947455883 0.0437467992306 +202 0.839476108551 0.0437471270561 +SURF 0x10 +mat 9 +refs 4 +134 0.931877017021 0.0435175001621 +173 0.931877017021 0.0435175001621 +135 0.931877017021 0.0435175001621 +174 0.931877017021 0.0435175001621 +SURF 0x10 +mat 9 +refs 4 +181 0.844277858734 0.430614262819 +183 0.844277858734 0.377243876457 +759 0.959567666054 0.377243876457 +758 0.959567666054 0.430614262819 +SURF 0x10 +mat 9 +refs 4 +184 0.844277858734 0.323873519897 +183 0.844277858734 0.377243876457 +759 0.959567666054 0.377243876457 +760 0.959567666054 0.323873519897 +SURF 0x10 +mat 9 +refs 4 +179 0.844277858734 0.217132896185 +185 0.844277858734 0.270503222942 +762 0.959567666054 0.270503222942 +761 0.959567666054 0.217132896185 +SURF 0x10 +mat 9 +refs 4 +185 0.844277858734 0.270503222942 +184 0.844277858734 0.323873519897 +760 0.959567666054 0.323873519897 +762 0.959567666054 0.270503222942 +SURF 0x10 +mat 9 +refs 3 +187 0.83947455883 0.0437470376492 +181 0.83947467804 0.0437466204166 +182 0.83947455883 0.0437467992306 +SURF 0x10 +mat 9 +refs 3 +183 0.83947467804 0.0437466204166 +181 0.83947467804 0.0437466204166 +187 0.83947455883 0.0437470376492 +SURF 0x10 +mat 9 +refs 3 +189 0.839474737644 0.0437471270561 +183 0.83947467804 0.0437466204166 +187 0.83947455883 0.0437470376492 +SURF 0x10 +mat 9 +refs 3 +191 0.839474916458 0.0437473058701 +183 0.83947467804 0.0437466204166 +189 0.839474737644 0.0437471270561 +SURF 0x10 +mat 9 +refs 3 +193 0.839475214481 0.043747484684 +183 0.83947467804 0.0437466204166 +191 0.839474916458 0.0437473058701 +SURF 0x10 +mat 9 +refs 3 +195 0.839475393295 0.043747484684 +183 0.83947467804 0.0437466204166 +193 0.839475214481 0.043747484684 +SURF 0x10 +mat 9 +refs 3 +197 0.839475512505 0.043747484684 +183 0.83947467804 0.0437466204166 +195 0.839475393295 0.043747484684 +SURF 0x10 +mat 9 +refs 3 +199 0.839475691319 0.0437473058701 +183 0.83947467804 0.0437466204166 +197 0.839475512505 0.043747484684 +SURF 0x10 +mat 9 +refs 3 +201 0.839475989342 0.0437472164631 +183 0.83947467804 0.0437466204166 +199 0.839475691319 0.0437473058701 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +187 0.481464028358 0.854201793671 +182 0.481464117765 0.854201376438 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +189 0.481464028358 0.85420191288 +187 0.481464028358 0.854201793671 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +191 0.48146378994 0.85420191288 +189 0.481464028358 0.85420191288 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +193 0.481463521719 0.854202151299 +191 0.48146378994 0.85420191288 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +195 0.481463342905 0.854202151299 +193 0.481463521719 0.854202151299 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +197 0.481463074684 0.854202151299 +195 0.481463342905 0.854202151299 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +199 0.481462925673 0.854202151299 +197 0.481463074684 0.854202151299 +SURF 0x10 +mat 9 +refs 3 +203 0.481462657452 0.854201793671 +201 0.481462746859 0.85420191288 +199 0.481462925673 0.854202151299 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +186 0.844519674778 0.046878516674 +180 0.844519495964 0.0468782484531 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +188 0.844519674778 0.046878695488 +186 0.844519674778 0.046878516674 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +190 0.844519913197 0.0468787848949 +188 0.844519674778 0.046878695488 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +192 0.84452021122 0.0468789637089 +190 0.844519913197 0.0468787848949 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +194 0.844520330429 0.0468789637089 +192 0.84452021122 0.0468789637089 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +196 0.844520568848 0.0468789637089 +194 0.844520330429 0.0468789637089 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +198 0.844520688057 0.0468788444996 +196 0.844520568848 0.0468789637089 +SURF 0x10 +mat 9 +refs 3 +202 0.84452098608 0.0468786358833 +200 0.844520926476 0.046878695488 +198 0.844520688057 0.0468788444996 +kids 0 +OBJECT poly +name "Cylinder.018" +data 12 +Cylinder.023 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 91 +3.284073 0.60498 -0.633729 +3.284047 0.604753 -0.645303 +3.269204 0.6253 -0.677374 +3.275209 0.620479 -0.670318 +3.278642 0.621141 -0.663839 +3.281751 0.615885 -0.657398 +3.283361 0.616259 -0.651302 +3.284439 0.616659 -0.639534 +3.281303 0.627658 -0.651783 +3.277486 0.632817 -0.658355 +3.271317 0.631634 -0.671176 +3.264096 0.642323 -0.672703 +3.268657 0.649241 -0.654392 +3.273003 0.644001 -0.653511 +3.277609 0.638935 -0.646787 +3.283522 0.62226 -0.645532 +3.28388 0.62243 -0.639683 +3.283534 0.622487 -0.633966 +3.282352 0.62805 -0.640014 +3.280134 0.633455 -0.646263 +3.274269 0.644305 -0.647467 +3.265776 0.654944 -0.64335 +3.265563 0.655146 -0.631745 +3.27379 0.644578 -0.630148 +3.277079 0.639198 -0.629501 +3.280354 0.633716 -0.634646 +3.283534 0.622487 -0.633966 +3.283534 0.622487 -0.633966 +3.280017 0.628023 -0.623079 +3.278112 0.633597 -0.62347 +3.270894 0.644376 -0.619052 +3.263392 0.649394 -0.608769 +3.264097 0.637801 -0.60271 +3.270715 0.632798 -0.607352 +3.27636 0.633441 -0.617984 +3.280104 0.616405 -0.617172 +3.283669 0.610892 -0.628064 +3.283441 0.616721 -0.628153 +3.282184 0.610759 -0.622545 +3.273824 0.621503 -0.606713 +3.268903 0.626733 -0.601789 +3.263448 0.620189 -0.590981 +3.26346 0.614272 -0.590924 +3.264927 0.60256 -0.596413 +3.277339 0.604299 -0.61176 +3.277339 0.604299 -0.61176 +3.281832 0.604828 -0.622561 +3.281832 0.604828 -0.622561 +3.278625 0.598518 -0.617288 +3.273912 0.603838 -0.606544 +3.263503 0.590469 -0.596543 +3.263964 0.596475 -0.59652 +3.263515 0.584541 -0.596487 +3.263528 0.578389 -0.608127 +3.274107 0.591963 -0.612225 +3.278625 0.598518 -0.617288 +3.283152 0.604937 -0.628112 +3.283152 0.604937 -0.628112 +3.280584 0.592748 -0.628488 +3.270733 0.579448 -0.618541 +3.265124 0.572522 -0.619486 +3.263549 0.566523 -0.60802 +3.26356 0.560148 -0.631359 +3.267279 0.572801 -0.62494 +3.274133 0.579832 -0.629571 +3.280584 0.592748 -0.628488 +3.281546 0.592693 -0.639899 +3.281546 0.592693 -0.639899 +3.281227 0.592527 -0.645753 +3.269267 0.572719 -0.647897 +3.263551 0.565863 -0.643097 +3.263561 0.55982 -0.648894 +3.263671 0.571487 -0.660642 +3.266474 0.572104 -0.654262 +3.277192 0.585828 -0.652281 +3.277192 0.585828 -0.652281 +3.284047 0.604753 -0.645303 +3.284047 0.604753 -0.645303 +3.281847 0.598399 -0.651468 +3.274682 0.585277 -0.658574 +3.266402 0.583601 -0.67185 +3.266402 0.583601 -0.67185 +3.263758 0.588949 -0.678253 +3.263758 0.588949 -0.678253 +3.278859 0.603548 -0.663676 +3.281847 0.598399 -0.651468 +3.284047 0.604753 -0.645303 +3.281874 0.610036 -0.657333 +3.27608 0.608855 -0.670066 +3.276066 0.614735 -0.670107 +3.264773 0.612672 -0.684024 +numsurf 90 +SURF 0x10 +mat 7 +refs 4 +90 0.582903444767 0.925487339497 +2 0.58712387085 0.920981407166 +3 0.589517474174 0.923823952675 +89 0.588948011398 0.926252603531 +SURF 0x10 +mat 7 +refs 4 +89 0.588948011398 0.926252603531 +3 0.589517474174 0.923823952675 +4 0.592299342155 0.924299001694 +88 0.588293015957 0.928716599941 +SURF 0x10 +mat 7 +refs 4 +88 0.588293015957 0.928716599941 +4 0.592299342155 0.924299001694 +5 0.594388544559 0.927243769169 +87 0.593746781349 0.929697394371 +SURF 0x10 +mat 7 +refs 4 +87 0.593746781349 0.929697394371 +5 0.594388544559 0.927243769169 +6 0.596979141235 0.927789628506 +1 0.598171651363 0.933289587498 +SURF 0x10 +mat 7 +refs 3 +6 0.596979141235 0.927789628506 +0 0.603037714958 0.934518098831 +1 0.598171651363 0.933289587498 +SURF 0x10 +mat 7 +refs 3 +7 0.601945161819 0.928971707821 +0 0.603037714958 0.934518098831 +6 0.596979141235 0.927789628506 +SURF 0x10 +mat 7 +refs 4 +5 0.594388544559 0.927243769169 +8 0.598083555698 0.922960758209 +7 0.601945161819 0.928971707821 +6 0.596979141235 0.927789628506 +SURF 0x10 +mat 7 +refs 4 +4 0.592299342155 0.924299001694 +9 0.595929086208 0.920039355755 +8 0.598083555698 0.922960758209 +5 0.594388544559 0.927243769169 +SURF 0x10 +mat 7 +refs 4 +3 0.589517474174 0.923823952675 +10 0.590438187122 0.919047892094 +9 0.595929086208 0.920039355755 +4 0.592299342155 0.924299001694 +SURF 0x10 +mat 7 +refs 4 +2 0.58712387085 0.920981407166 +11 0.591029465199 0.914379894733 +10 0.590438187122 0.919047892094 +3 0.589517474174 0.923823952675 +SURF 0x10 +mat 7 +refs 4 +11 0.591029465199 0.914379894733 +12 0.599473536015 0.913595795631 +13 0.599238336086 0.915901780128 +10 0.590438187122 0.919047892094 +SURF 0x10 +mat 7 +refs 4 +10 0.590438187122 0.919047892094 +13 0.599238336086 0.915901780128 +14 0.601466178894 0.918803989887 +9 0.595929086208 0.920039355755 +SURF 0x10 +mat 7 +refs 4 +9 0.595929086208 0.920039355755 +14 0.601466178894 0.918803989887 +15 0.600078165531 0.925940334797 +8 0.598083555698 0.922960758209 +SURF 0x10 +mat 7 +refs 4 +8 0.598083555698 0.922960758209 +15 0.600078165531 0.925940334797 +16 0.602543354034 0.926539242268 +7 0.601945161819 0.928971707821 +SURF 0x10 +mat 7 +refs 3 +16 0.602543354034 0.926539242268 +0 0.603037714958 0.934518098831 +7 0.601945161819 0.928971707821 +SURF 0x10 +mat 7 +refs 3 +17 0.604941368103 0.927167952061 +0 0.603037714958 0.934518098831 +16 0.602543354034 0.926539242268 +SURF 0x10 +mat 7 +refs 4 +15 0.600078165531 0.925940334797 +18 0.603049039841 0.924146294594 +17 0.604941368103 0.927167952061 +16 0.602543354034 0.926539242268 +SURF 0x10 +mat 7 +refs 4 +14 0.601466178894 0.918803989887 +19 0.601055920124 0.921164155006 +18 0.603049039841 0.924146294594 +15 0.600078165531 0.925940334797 +SURF 0x10 +mat 7 +refs 4 +13 0.599238336086 0.915901780128 +20 0.601799547672 0.916469931602 +19 0.601055920124 0.921164155006 +14 0.601466178894 0.918803989887 +SURF 0x10 +mat 7 +refs 4 +12 0.599473536015 0.913595795631 +21 0.604746520519 0.912463843822 +20 0.601799547672 0.916469931602 +13 0.599238336086 0.915901780128 +SURF 0x10 +mat 7 +refs 4 +21 0.604746520519 0.912463843822 +22 0.609622955322 0.91370588541 +23 0.609073877335 0.9183344841 +20 0.601799547672 0.916469931602 +SURF 0x10 +mat 7 +refs 4 +20 0.601799547672 0.916469931602 +23 0.609073877335 0.9183344841 +24 0.608725965023 0.920669317245 +19 0.601055920124 0.921164155006 +SURF 0x10 +mat 7 +refs 4 +19 0.601055920124 0.921164155006 +24 0.608725965023 0.920669317245 +25 0.605944275856 0.922384083271 +18 0.603049039841 0.924146294594 +SURF 0x10 +mat 7 +refs 4 +18 0.603049039841 0.924146294594 +25 0.605944275856 0.922384083271 +26 0.604941368103 0.927167952061 +17 0.604941368103 0.927167952061 +SURF 0x10 +mat 7 +refs 3 +26 0.0 0.0 +0 0.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 7 +refs 3 +27 0.0 0.0 +0 0.0 0.0 +26 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +25 0.605944275856 0.922384083271 +28 0.61013096571 0.926086604595 +27 0.604941368103 0.927167952061 +26 0.604941368103 0.927167952061 +SURF 0x10 +mat 7 +refs 4 +24 0.608725965023 0.920669317245 +29 0.610606968403 0.923704445362 +28 0.61013096571 0.926086604595 +25 0.605944275856 0.922384083271 +SURF 0x10 +mat 7 +refs 4 +23 0.609073877335 0.9183344841 +30 0.613694250584 0.91967856884 +29 0.610606968403 0.923704445362 +24 0.608725965023 0.920669317245 +SURF 0x10 +mat 7 +refs 4 +22 0.609622955322 0.91370588541 +31 0.618576586246 0.918731629848 +30 0.613694250584 0.91967856884 +23 0.609073877335 0.9183344841 +SURF 0x10 +mat 7 +refs 4 +31 0.618576586246 0.918731629848 +32 0.619783878326 0.924274981022 +33 0.61726385355 0.925857961178 +30 0.613694250584 0.91967856884 +SURF 0x10 +mat 7 +refs 4 +30 0.613694250584 0.91967856884 +33 0.61726385355 0.925857961178 +34 0.612884938717 0.924391627312 +29 0.610606968403 0.923704445362 +SURF 0x10 +mat 7 +refs 4 +29 0.610606968403 0.923704445362 +34 0.612884938717 0.924391627312 +35 0.611272394657 0.931620955467 +28 0.61013096571 0.926086604595 +SURF 0x10 +mat 7 +refs 4 +28 0.61013096571 0.926086604595 +35 0.611272394657 0.931620955467 +36 0.606083333492 0.932692289352 +27 0.604941368103 0.927167952061 +SURF 0x10 +mat 7 +refs 3 +36 0.606083333492 0.932692289352 +0 0.603037714958 0.934518098831 +27 0.604941368103 0.927167952061 +SURF 0x10 +mat 7 +refs 3 +37 0.440046608448 0.46075412631 +0 0.440053582191 0.455120623112 +36 0.441168308258 0.458490103483 +SURF 0x10 +mat 7 +refs 4 +35 0.441025257111 0.476048827171 +38 0.441168278456 0.478526502848 +37 0.441029876471 0.481024950743 +36 0.441090553999 0.481003373861 +SURF 0x10 +mat 7 +refs 4 +34 0.612884938717 0.924391627312 +39 0.616235971451 0.930664658546 +38 0.608377814293 0.933374166489 +35 0.611272394657 0.931620955467 +SURF 0x10 +mat 7 +refs 4 +33 0.61726385355 0.925857961178 +40 0.618898689747 0.929024457932 +39 0.616235971451 0.930664658546 +34 0.612884938717 0.924391627312 +SURF 0x10 +mat 7 +refs 4 +32 0.619783878326 0.924274981022 +41 0.622675955296 0.932979285717 +40 0.618898689747 0.929024457932 +33 0.61726385355 0.925857961178 +SURF 0x10 +mat 7 +refs 4 +41 0.622675955296 0.932979285717 +42 0.622023105621 0.935460329056 +43 0.618386507034 0.939735531807 +40 0.618898689747 0.929024457932 +SURF 0x10 +mat 7 +refs 4 +40 0.618898689747 0.929024457932 +43 0.618386507034 0.939735531807 +44 0.612154662609 0.937293291092 +39 0.616235971451 0.930664658546 +SURF 0x10 +mat 7 +refs 4 +39 0.616235971451 0.930664658546 +44 0.612154662609 0.937293291092 +45 0.612154662609 0.937293291092 +38 0.608377814293 0.933374166489 +SURF 0x10 +mat 7 +refs 4 +38 0.608377814293 0.933374166489 +45 0.612154662609 0.937293291092 +46 0.607693374157 0.935851633549 +37 0.606713235378 0.930243849754 +SURF 0x10 +mat 7 +refs 3 +46 0.607693374157 0.935851633549 +0 0.603037714958 0.934518098831 +37 0.606713235378 0.930243849754 +SURF 0x10 +mat 7 +refs 3 +47 0.0 0.0 +0 0.0 0.0 +46 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +45 0.612154662609 0.937293291092 +48 0.60918033123 0.939082920551 +47 0.607693374157 0.935851633549 +46 0.607693374157 0.935851633549 +SURF 0x10 +mat 7 +refs 4 +44 0.612154662609 0.937293291092 +49 0.614286720753 0.938071608543 +48 0.60918033123 0.939082920551 +45 0.612154662609 0.937293291092 +SURF 0x10 +mat 7 +refs 4 +43 0.618386507034 0.939735531807 +50 0.61695098877 0.944772481918 +49 0.614286720753 0.938071608543 +44 0.612154662609 0.937293291092 +SURF 0x10 +mat 7 +refs 4 +42 0.622023105621 0.935460329056 +51 0.617646992207 0.942264914513 +50 0.61695098877 0.944772481918 +43 0.618386507034 0.939735531807 +SURF 0x10 +mat 7 +refs 4 +51 0.617646992207 0.942264914513 +52 0.61629652977 0.947257995605 +53 0.610725462437 0.948499679565 +50 0.61695098877 0.944772481918 +SURF 0x10 +mat 7 +refs 4 +50 0.61695098877 0.944772481918 +53 0.610725462437 0.948499679565 +54 0.610552966595 0.94238871336 +49 0.614286720753 0.938071608543 +SURF 0x10 +mat 7 +refs 4 +49 0.614286720753 0.938071608543 +54 0.610552966595 0.94238871336 +55 0.60918033123 0.939082920551 +48 0.60918033123 0.939082920551 +SURF 0x10 +mat 7 +refs 4 +48 0.60918033123 0.939082920551 +55 0.60918033123 0.939082920551 +56 0.605382978916 0.935175418854 +47 0.607693374157 0.935851633549 +SURF 0x10 +mat 7 +refs 3 +56 0.441168308258 0.487399578094 +0 0.441077589989 0.489865928888 +47 0.441083610058 0.484926998615 +SURF 0x10 +mat 7 +refs 3 +57 0.0 0.0 +0 0.0 0.0 +56 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +55 0.60918033123 0.939082920551 +58 0.603834748268 0.940221607685 +57 0.605382978916 0.935175418854 +56 0.605382978916 0.935175418854 +SURF 0x10 +mat 7 +refs 4 +54 0.610552966595 0.94238871336 +59 0.606483995914 0.946889221668 +58 0.603834748268 0.940221607685 +55 0.60918033123 0.939082920551 +SURF 0x10 +mat 7 +refs 4 +53 0.610725462437 0.948499679565 +60 0.605302453041 0.949659347534 +59 0.606483995914 0.946889221668 +54 0.610552966595 0.94238871336 +SURF 0x10 +mat 7 +refs 4 +52 0.61629652977 0.947257995605 +61 0.609413325787 0.953474342823 +60 0.605302453041 0.949659347534 +53 0.610725462437 0.948499679565 +SURF 0x10 +mat 7 +refs 4 +61 0.609413325787 0.953474342823 +62 0.598923563957 0.953471243382 +63 0.603051245213 0.948926150799 +60 0.605302453041 0.949659347534 +SURF 0x10 +mat 7 +refs 4 +60 0.605302453041 0.949659347534 +63 0.603051245213 0.948926150799 +64 0.601911306381 0.945478200912 +59 0.606483995914 0.946889221668 +SURF 0x10 +mat 7 +refs 4 +59 0.606483995914 0.946889221668 +64 0.601911306381 0.945478200912 +65 0.603834748268 0.940221607685 +58 0.603834748268 0.940221607685 +SURF 0x10 +mat 7 +refs 4 +58 0.603834748268 0.940221607685 +65 0.603834748268 0.940221607685 +66 0.59905487299 0.938942968845 +57 0.605382978916 0.935175418854 +SURF 0x10 +mat 7 +refs 3 +66 0.59905487299 0.938942968845 +0 0.603037714958 0.934518098831 +57 0.605382978916 0.935175418854 +SURF 0x10 +mat 7 +refs 3 +67 0.0 0.0 +0 0.0 0.0 +66 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +65 0.440934062004 0.472146779299 +68 0.440934896469 0.464656174183 +67 0.441168278456 0.467187017202 +66 0.441168278456 0.467187017202 +SURF 0x10 +mat 7 +refs 4 +64 0.601911306381 0.945478200912 +69 0.593438923359 0.946341574192 +68 0.596588373184 0.938341975212 +65 0.603834748268 0.940221607685 +SURF 0x10 +mat 7 +refs 4 +63 0.603051245213 0.948926150799 +70 0.594668269157 0.949738919735 +69 0.593438923359 0.946341574192 +64 0.601911306381 0.945478200912 +SURF 0x10 +mat 7 +refs 4 +62 0.598923563957 0.953471243382 +71 0.591552615166 0.951603353024 +70 0.594668269157 0.949738919735 +63 0.603051245213 0.948926150799 +SURF 0x10 +mat 7 +refs 4 +71 0.591552615166 0.951603353024 +72 0.587973773479 0.945381045341 +73 0.59070956707 0.945861756802 +70 0.594668269157 0.949738919735 +SURF 0x10 +mat 7 +refs 4 +70 0.594668269157 0.949738919735 +73 0.59070956707 0.945861756802 +74 0.593096494675 0.940383672714 +69 0.593438923359 0.946341574192 +SURF 0x10 +mat 7 +refs 4 +69 0.593438923359 0.946341574192 +74 0.593096494675 0.940383672714 +75 0.593096494675 0.940383672714 +68 0.596588373184 0.938341975212 +SURF 0x10 +mat 7 +refs 4 +68 0.596588373184 0.938341975212 +75 0.593096494675 0.940383672714 +76 0.598171651363 0.933289587498 +67 0.59905487299 0.938942968845 +SURF 0x10 +mat 7 +refs 3 +76 0.598171651363 0.933289587498 +0 0.603037714958 0.934518098831 +67 0.59905487299 0.938942968845 +SURF 0x10 +mat 7 +refs 3 +77 0.0 0.0 +0 0.0 0.0 +76 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +75 0.593096494675 0.940383672714 +78 0.594869196415 0.935234665871 +77 0.598171651363 0.933289587498 +76 0.598171651363 0.933289587498 +SURF 0x10 +mat 7 +refs 4 +74 0.593096494675 0.940383672714 +79 0.59040415287 0.939886331558 +78 0.594869196415 0.935234665871 +75 0.593096494675 0.940383672714 +SURF 0x10 +mat 7 +refs 4 +73 0.59070956707 0.945861756802 +80 0.584668815136 0.93904209137 +79 0.59040415287 0.939886331558 +74 0.593096494675 0.940383672714 +SURF 0x10 +mat 7 +refs 4 +72 0.587973773479 0.945381045341 +81 0.584668815136 0.93904209137 +80 0.584668815136 0.93904209137 +73 0.59070956707 0.945861756802 +SURF 0x10 +mat 7 +refs 4 +81 0.0 0.0 +82 0.0 0.0 +83 0.0 0.0 +80 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +80 0.584668815136 0.93904209137 +83 0.582605361938 0.936064839363 +84 0.59035551548 0.931675612926 +79 0.59040415287 0.939886331558 +SURF 0x10 +mat 7 +refs 4 +79 0.59040415287 0.939886331558 +84 0.59035551548 0.931675612926 +85 0.594869196415 0.935234665871 +78 0.594869196415 0.935234665871 +SURF 0x10 +mat 7 +refs 4 +78 0.0 0.0 +85 0.0 0.0 +86 0.0 0.0 +77 0.0 0.0 +SURF 0x10 +mat 7 +refs 3 +86 0.0 0.0 +0 0.0 0.0 +77 0.0 0.0 +SURF 0x10 +mat 7 +refs 3 +1 0.0 0.0 +0 0.0 0.0 +86 0.0 0.0 +SURF 0x10 +mat 7 +refs 4 +85 0.594869196415 0.935234665871 +87 0.593746781349 0.929697394371 +1 0.598171651363 0.933289587498 +86 0.598171651363 0.933289587498 +SURF 0x10 +mat 7 +refs 4 +84 0.59035551548 0.931675612926 +88 0.588293015957 0.928716599941 +87 0.593746781349 0.929697394371 +85 0.594869196415 0.935234665871 +SURF 0x10 +mat 7 +refs 4 +83 0.582605361938 0.936064839363 +89 0.588948011398 0.926252603531 +88 0.588293015957 0.928716599941 +84 0.59035551548 0.931675612926 +SURF 0x10 +mat 7 +refs 4 +82 0.582605361938 0.936064839363 +90 0.582903444767 0.925487339497 +89 0.588948011398 0.926252603531 +83 0.582605361938 0.936064839363 +kids 0 +OBJECT poly +name "Cylinder.019" +data 12 +Cylinder.024 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 91 +0.256972 0.827492 -0.361576 +0.257675 0.827492 -0.369618 +0.273515 0.839625 -0.394913 +0.267806 0.837673 -0.389549 +0.263176 0.835411 -0.383335 +0.259764 0.832909 -0.37646 +0.257675 0.830242 -0.369133 +0.257675 0.832661 -0.367736 +0.259764 0.837673 -0.37371 +0.263176 0.842376 -0.379314 +0.267806 0.846626 -0.38438 +0.273515 0.850295 -0.388752 +0.273515 0.858215 -0.379314 +0.267806 0.853271 -0.37646 +0.263176 0.847545 -0.373154 +0.259764 0.841209 -0.369496 +0.257675 0.834456 -0.365597 +0.257675 0.835411 -0.362973 +0.259764 0.84309 -0.364327 +0.263176 0.850295 -0.365597 +0.267806 0.856807 -0.366745 +0.273515 0.862429 -0.367736 +0.273515 0.862429 -0.355416 +0.267806 0.856807 -0.356407 +0.263176 0.850295 -0.357555 +0.259764 0.84309 -0.358826 +0.257675 0.835411 -0.36018 +0.257675 0.834456 -0.357555 +0.259764 0.841209 -0.353657 +0.263176 0.847545 -0.349998 +0.267806 0.853271 -0.346692 +0.273515 0.858215 -0.343838 +0.273515 0.850295 -0.3344 +0.267806 0.846626 -0.338773 +0.263176 0.842376 -0.343838 +0.259764 0.837673 -0.349443 +0.257675 0.832661 -0.355416 +0.257675 0.830242 -0.354019 +0.259764 0.832909 -0.346692 +0.263176 0.835411 -0.339817 +0.267806 0.837673 -0.333603 +0.273515 0.839625 -0.32824 +0.273515 0.827492 -0.3261 +0.267806 0.827492 -0.331808 +0.263176 0.827492 -0.338421 +0.259764 0.827492 -0.345737 +0.257675 0.827492 -0.353534 +0.257675 0.824741 -0.354019 +0.259764 0.822074 -0.346692 +0.263176 0.819572 -0.339817 +0.267806 0.817311 -0.333603 +0.273515 0.815358 -0.328239 +0.273515 0.804688 -0.3344 +0.267806 0.808357 -0.338772 +0.263176 0.812608 -0.343838 +0.259764 0.81731 -0.349443 +0.257675 0.822323 -0.355416 +0.257675 0.820527 -0.357555 +0.259764 0.813775 -0.353656 +0.263176 0.807439 -0.349998 +0.267806 0.801712 -0.346692 +0.273515 0.796769 -0.343838 +0.273515 0.792555 -0.355416 +0.267806 0.798176 -0.356407 +0.263176 0.804688 -0.357555 +0.259764 0.811893 -0.358826 +0.257675 0.819572 -0.36018 +0.257675 0.819572 -0.362973 +0.259764 0.811893 -0.364327 +0.263176 0.804688 -0.365597 +0.267806 0.798176 -0.366745 +0.273515 0.792555 -0.367736 +0.273515 0.796769 -0.379314 +0.267806 0.801712 -0.37646 +0.263176 0.807439 -0.373154 +0.259764 0.813775 -0.369496 +0.257675 0.820527 -0.365597 +0.257675 0.822323 -0.367736 +0.259764 0.81731 -0.37371 +0.263176 0.812608 -0.379314 +0.267806 0.808357 -0.38438 +0.273515 0.804688 -0.388752 +0.273515 0.815358 -0.394913 +0.267806 0.81731 -0.389549 +0.263176 0.819572 -0.383335 +0.259764 0.822074 -0.37646 +0.257675 0.824741 -0.369133 +0.259764 0.827492 -0.377415 +0.263176 0.827492 -0.384731 +0.267806 0.827492 -0.391344 +0.273515 0.827492 -0.397052 +numsurf 90 +SURF 0x10 +mat 7 +refs 4 +90 0.263901263475 0.975246965885 +89 0.266341418028 0.975660085678 +3 0.266339957714 0.980142176151 +2 0.263899475336 0.980588614941 +SURF 0x10 +mat 7 +refs 4 +89 0.266341418028 0.975660085678 +88 0.269167155027 0.976144731045 +4 0.269165992737 0.979631245136 +3 0.266339957714 0.980142176151 +SURF 0x10 +mat 7 +refs 4 +88 0.269167155027 0.976144731045 +87 0.272292643785 0.976686179638 +5 0.272291839123 0.979071080685 +4 0.269165992737 0.979631245136 +SURF 0x10 +mat 7 +refs 4 +87 0.272292643785 0.976686179638 +1 0.275622844696 0.977267980576 +6 0.275622457266 0.978478848934 +5 0.272291839123 0.979071080685 +SURF 0x10 +mat 7 +refs 3 +1 0.275622844696 0.977267980576 +0 0.279056668282 0.977872431278 +6 0.275622457266 0.978478848934 +SURF 0x10 +mat 7 +refs 3 +6 0.275622457266 0.978478848934 +0 0.279056668282 0.977872431278 +7 0.27603623271 0.979616820812 +SURF 0x10 +mat 7 +refs 4 +5 0.272291839123 0.979071080685 +6 0.275622457266 0.978478848934 +7 0.27603623271 0.979616820812 +8 0.273106753826 0.981312453747 +SURF 0x10 +mat 7 +refs 4 +4 0.269165992737 0.979631245136 +5 0.272291839123 0.979071080685 +8 0.273106753826 0.981312453747 +9 0.270357400179 0.982907891273 +SURF 0x10 +mat 7 +refs 4 +3 0.266339957714 0.980142176151 +4 0.269165992737 0.979631245136 +9 0.270357400179 0.982907891273 +10 0.267871558666 0.984354615211 +SURF 0x10 +mat 7 +refs 4 +2 0.263899475336 0.980588614941 +3 0.266339957714 0.980142176151 +10 0.267871558666 0.984354615211 +11 0.265724778175 0.985608696938 +SURF 0x10 +mat 7 +refs 4 +11 0.265724778175 0.985608696938 +10 0.267871558666 0.984354615211 +13 0.270751535892 0.987789154053 +12 0.269157022238 0.989701807499 +SURF 0x10 +mat 7 +refs 4 +10 0.267871558666 0.984354615211 +9 0.270357400179 0.982907891273 +14 0.27259761095 0.985579431057 +13 0.270751535892 0.987789154053 +SURF 0x10 +mat 7 +refs 4 +9 0.270357400179 0.982907891273 +8 0.273106753826 0.981312453747 +15 0.274639189243 0.983139932156 +14 0.27259761095 0.985579431057 +SURF 0x10 +mat 7 +refs 4 +8 0.273106753826 0.981312453747 +7 0.27603623271 0.979616820812 +16 0.276814252138 0.980544626713 +15 0.274639189243 0.983139932156 +SURF 0x10 +mat 7 +refs 3 +7 0.27603623271 0.979616820812 +0 0.279056668282 0.977872431278 +16 0.276814252138 0.980544626713 +SURF 0x10 +mat 7 +refs 3 +16 0.276814252138 0.980544626713 +0 0.279056668282 0.977872431278 +17 0.27786269784 0.981150448322 +SURF 0x10 +mat 7 +refs 4 +15 0.274639189243 0.983139932156 +16 0.276814252138 0.980544626713 +17 0.27786269784 0.981150448322 +18 0.276704251766 0.984333097935 +SURF 0x10 +mat 7 +refs 4 +14 0.27259761095 0.985579431057 +15 0.274639189243 0.983139932156 +18 0.276704251766 0.984333097935 +19 0.275616496801 0.987323760986 +SURF 0x10 +mat 7 +refs 4 +13 0.270751535892 0.987789154053 +14 0.27259761095 0.985579431057 +19 0.275616496801 0.987323760986 +20 0.274632543325 0.990031599998 +SURF 0x10 +mat 7 +refs 4 +12 0.269157022238 0.989701807499 +13 0.270751535892 0.987789154053 +20 0.274632543325 0.990031599998 +21 0.273782223463 0.992374181747 +SURF 0x10 +mat 7 +refs 4 +21 0.246723994613 0.595421910286 +20 0.249245271087 0.595843851566 +23 0.249258801341 0.600326120853 +22 0.24674063921 0.600763738155 +SURF 0x10 +mat 7 +refs 4 +20 0.274632543325 0.990031599998 +19 0.275616496801 0.987323760986 +24 0.279049932957 0.987930357456 +23 0.279046446085 0.990811407566 +SURF 0x10 +mat 7 +refs 4 +19 0.275616496801 0.987323760986 +18 0.276704251766 0.984333097935 +25 0.279052853584 0.984748065472 +24 0.279049932957 0.987930357456 +SURF 0x10 +mat 7 +refs 4 +18 0.276704251766 0.984333097935 +17 0.27786269784 0.981150448322 +26 0.279055088758 0.981361091137 +25 0.279052853584 0.984748065472 +SURF 0x10 +mat 7 +refs 3 +17 0.27786269784 0.981150448322 +0 0.279056668282 0.977872431278 +26 0.279055088758 0.981361091137 +SURF 0x10 +mat 7 +refs 3 +26 0.279055088758 0.981361091137 +0 0.279056668282 0.977872431278 +27 0.280247628689 0.981151223183 +SURF 0x10 +mat 7 +refs 4 +25 0.279052853584 0.984748065472 +26 0.279055088758 0.981361091137 +27 0.280247628689 0.981151223183 +28 0.281401723623 0.98433470726 +SURF 0x10 +mat 7 +refs 4 +24 0.279049932957 0.987930357456 +25 0.279052853584 0.984748065472 +28 0.281401723623 0.98433470726 +29 0.28248372674 0.987326145172 +SURF 0x10 +mat 7 +refs 4 +23 0.279046446085 0.990811407566 +24 0.279049932957 0.987930357456 +29 0.28248372674 0.987326145172 +30 0.283460885286 0.990034580231 +SURF 0x10 +mat 7 +refs 4 +22 0.279042512178 0.993303596973 +23 0.279046446085 0.990811407566 +30 0.283460885286 0.990034580231 +31 0.284303426743 0.992377877235 +SURF 0x10 +mat 7 +refs 4 +31 0.284303426743 0.992377877235 +30 0.283460885286 0.990034580231 +33 0.287343382835 0.987794876099 +32 0.288930386305 0.989708662033 +SURF 0x10 +mat 7 +refs 4 +30 0.283460885286 0.990034580231 +29 0.28248372674 0.987326145172 +34 0.285503774881 0.98558396101 +33 0.287343382835 0.987794876099 +SURF 0x10 +mat 7 +refs 4 +29 0.28248372674 0.987326145172 +28 0.281401723623 0.98433470726 +35 0.283467531204 0.983142971992 +34 0.285503774881 0.98558396101 +SURF 0x10 +mat 7 +refs 4 +28 0.281401723623 0.98433470726 +27 0.280247628689 0.981151223183 +36 0.281296491623 0.980546176434 +35 0.283467531204 0.983142971992 +SURF 0x10 +mat 7 +refs 3 +27 0.280247628689 0.981151223183 +0 0.279056668282 0.977872431278 +36 0.281296491623 0.980546176434 +SURF 0x10 +mat 7 +refs 3 +36 0.281296491623 0.980546176434 +0 0.279056668282 0.977872431278 +37 0.282075166702 0.979618906975 +SURF 0x10 +mat 7 +refs 4 +35 0.283467531204 0.983142971992 +36 0.281296491623 0.980546176434 +37 0.282075166702 0.979618906975 +38 0.285001188517 0.981316566467 +SURF 0x10 +mat 7 +refs 4 +34 0.285503774881 0.98558396101 +35 0.283467531204 0.983142971992 +38 0.285001188517 0.981316566467 +39 0.287745833397 0.982913911343 +SURF 0x10 +mat 7 +refs 4 +33 0.287343382835 0.987794876099 +34 0.285503774881 0.98558396101 +39 0.287745833397 0.982913911343 +40 0.290225714445 0.984362363815 +SURF 0x10 +mat 7 +refs 4 +32 0.288930386305 0.989708662033 +33 0.287343382835 0.987794876099 +40 0.290225714445 0.984362363815 +41 0.292365431786 0.985617935658 +SURF 0x10 +mat 7 +refs 4 +41 0.292365431786 0.985617935658 +40 0.290225714445 0.984362363815 +43 0.291760146618 0.980150997639 +42 0.294194102287 0.980599045753 +SURF 0x10 +mat 7 +refs 4 +40 0.290225714445 0.984362363815 +39 0.287745833397 0.982913911343 +44 0.288939416409 0.979638040066 +43 0.291760146618 0.980150997639 +SURF 0x10 +mat 7 +refs 4 +39 0.287745833397 0.982913911343 +38 0.285001188517 0.981316566467 +45 0.285817652941 0.979075729847 +44 0.288939416409 0.979638040066 +SURF 0x10 +mat 7 +refs 4 +38 0.285001188517 0.981316566467 +37 0.282075166702 0.979618906975 +46 0.282489717007 0.97848123312 +45 0.285817652941 0.979075729847 +SURF 0x10 +mat 7 +refs 3 +37 0.282075166702 0.979618906975 +0 0.279056668282 0.977872431278 +46 0.282489717007 0.97848123312 +SURF 0x10 +mat 7 +refs 3 +46 0.282489717007 0.97848123312 +0 0.279056668282 0.977872431278 +47 0.282490104437 0.977270364761 +SURF 0x10 +mat 7 +refs 4 +45 0.285817652941 0.979075729847 +46 0.282489717007 0.97848123312 +47 0.282490104437 0.977270364761 +48 0.285818457603 0.976690888405 +SURF 0x10 +mat 7 +refs 4 +44 0.288939416409 0.979638040066 +45 0.285817652941 0.979075729847 +48 0.285818457603 0.976690888405 +49 0.288940578699 0.976151585579 +SURF 0x10 +mat 7 +refs 4 +43 0.291760146618 0.980150997639 +44 0.288939416409 0.979638040066 +49 0.288940578699 0.976151585579 +50 0.291761666536 0.975668847561 +SURF 0x10 +mat 7 +refs 4 +42 0.294194102287 0.980599045753 +43 0.291760146618 0.980150997639 +50 0.291761666536 0.975668847561 +51 0.294195890427 0.975257456303 +SURF 0x10 +mat 7 +refs 4 +51 0.294195890427 0.975257456303 +50 0.291761666536 0.975668847561 +53 0.290230065584 0.971456468105 +52 0.29237061739 0.970237314701 +SURF 0x10 +mat 7 +refs 4 +50 0.291761666536 0.975668847561 +49 0.288940578699 0.976151585579 +54 0.287749201059 0.972874879837 +53 0.290230065584 0.971456468105 +SURF 0x10 +mat 7 +refs 4 +49 0.288940578699 0.976151585579 +48 0.285818457603 0.976690888405 +55 0.285003513098 0.974449515343 +54 0.287749201059 0.972874879837 +SURF 0x10 +mat 7 +refs 4 +48 0.285818457603 0.976690888405 +47 0.282490104437 0.977270364761 +56 0.282076328993 0.976132392883 +55 0.285003513098 0.974449515343 +SURF 0x10 +mat 7 +refs 3 +47 0.282490104437 0.977270364761 +0 0.279056668282 0.977872431278 +56 0.282076328993 0.976132392883 +SURF 0x10 +mat 7 +refs 3 +56 0.282076328993 0.976132392883 +0 0.279056668282 0.977872431278 +57 0.281298309565 0.975204527378 +SURF 0x10 +mat 7 +refs 4 +55 0.285003513098 0.974449515343 +56 0.282076328993 0.976132392883 +57 0.281298309565 0.975204527378 +58 0.283471077681 0.972622036934 +SURF 0x10 +mat 7 +refs 4 +54 0.287749201059 0.972874879837 +55 0.285003513098 0.974449515343 +58 0.283471077681 0.972622036934 +59 0.285508930683 0.970203340054 +SURF 0x10 +mat 7 +refs 4 +53 0.290230065584 0.971456468105 +54 0.287749201059 0.972874879837 +59 0.285508930683 0.970203340054 +60 0.287350028753 0.968021929264 +SURF 0x10 +mat 7 +refs 4 +52 0.29237061739 0.970237314701 +53 0.290230065584 0.971456468105 +60 0.287350028753 0.968021929264 +61 0.288938343525 0.966144144535 +SURF 0x10 +mat 7 +refs 4 +61 0.288938343525 0.966144144535 +60 0.287350028753 0.968021929264 +63 0.283469051123 0.965779542923 +62 0.284313172102 0.963471770287 +SURF 0x10 +mat 7 +refs 4 +60 0.287350028753 0.968021929264 +59 0.285508930683 0.970203340054 +64 0.282490104437 0.968459010124 +63 0.283469051123 0.965779542923 +SURF 0x10 +mat 7 +refs 4 +59 0.285508930683 0.970203340054 +58 0.283471077681 0.972622036934 +65 0.28140604496 0.971428871155 +64 0.282490104437 0.968459010124 +SURF 0x10 +mat 7 +refs 4 +58 0.283471077681 0.972622036934 +57 0.281298309565 0.975204527378 +66 0.280249863863 0.974598765373 +65 0.28140604496 0.971428871155 +SURF 0x10 +mat 7 +refs 3 +57 0.281298309565 0.975204527378 +0 0.279056668282 0.977872431278 +66 0.280249863863 0.974598765373 +SURF 0x10 +mat 7 +refs 3 +66 0.280249863863 0.974598765373 +0 0.279056668282 0.977872431278 +67 0.279057472944 0.974388062954 +SURF 0x10 +mat 7 +refs 4 +65 0.28140604496 0.971428871155 +66 0.280249863863 0.974598765373 +67 0.279057472944 0.974388062954 +68 0.279057443142 0.971013903618 +SURF 0x10 +mat 7 +refs 4 +64 0.282490104437 0.968459010124 +65 0.28140604496 0.971428871155 +68 0.279057443142 0.971013903618 +69 0.279056668282 0.967852413654 +SURF 0x10 +mat 7 +refs 4 +63 0.283469051123 0.965779542923 +64 0.282490104437 0.968459010124 +69 0.279056668282 0.967852413654 +70 0.279055148363 0.964999675751 +SURF 0x10 +mat 7 +refs 4 +62 0.284313172102 0.963471770287 +63 0.283469051123 0.965779542923 +70 0.279055148363 0.964999675751 +71 0.279052883387 0.962542414665 +SURF 0x10 +mat 7 +refs 4 +71 0.279052883387 0.962542414665 +70 0.279055148363 0.964999675751 +73 0.274640679359 0.965776503086 +72 0.273791968822 0.963468134403 +SURF 0x10 +mat 7 +refs 4 +70 0.279055148363 0.964999675751 +69 0.279056668282 0.967852413654 +74 0.275622844696 0.968456625938 +73 0.274640679359 0.965776503086 +SURF 0x10 +mat 7 +refs 4 +69 0.279056668282 0.967852413654 +68 0.279057443142 0.971013903618 +75 0.276708602905 0.971427202225 +74 0.275622844696 0.968456625938 +SURF 0x10 +mat 7 +refs 4 +68 0.279057443142 0.971013903618 +67 0.279057472944 0.974388062954 +76 0.277864903212 0.974597930908 +75 0.276708602905 0.971427202225 +SURF 0x10 +mat 7 +refs 3 +67 0.279057472944 0.974388062954 +0 0.279056668282 0.977872431278 +76 0.277864903212 0.974597930908 +SURF 0x10 +mat 7 +refs 3 +76 0.277864903212 0.974597930908 +0 0.279056668282 0.977872431278 +77 0.276816040277 0.975202977657 +SURF 0x10 +mat 7 +refs 4 +75 0.276708602905 0.971427202225 +76 0.277864903212 0.974597930908 +77 0.276816040277 0.975202977657 +78 0.27464273572 0.972618937492 +SURF 0x10 +mat 7 +refs 4 +74 0.275622844696 0.968456625938 +75 0.276708602905 0.971427202225 +78 0.27464273572 0.972618937492 +79 0.272602796555 0.970198810101 +SURF 0x10 +mat 7 +refs 4 +73 0.274640679359 0.965776503086 +74 0.275622844696 0.968456625938 +79 0.272602796555 0.970198810101 +80 0.270758211613 0.968016207218 +SURF 0x10 +mat 7 +refs 4 +72 0.273791968822 0.963468134403 +73 0.274640679359 0.965776503086 +80 0.270758211613 0.968016207218 +81 0.269164949656 0.966137349606 +SURF 0x10 +mat 7 +refs 4 +81 0.269164949656 0.966137349606 +80 0.270758211613 0.968016207218 +83 0.267875909805 0.971448779106 +82 0.265729963779 0.970228135586 +SURF 0x10 +mat 7 +refs 4 +80 0.270758211613 0.968016207218 +79 0.272602796555 0.970198810101 +84 0.270360767841 0.972868919373 +83 0.267875909805 0.971448779106 +SURF 0x10 +mat 7 +refs 4 +79 0.272602796555 0.970198810101 +78 0.27464273572 0.972618937492 +85 0.27310910821 0.974445402622 +84 0.270360767841 0.972868919373 +SURF 0x10 +mat 7 +refs 4 +78 0.27464273572 0.972618937492 +77 0.276816040277 0.975202977657 +86 0.276037424803 0.976130247116 +85 0.27310910821 0.974445402622 +SURF 0x10 +mat 7 +refs 3 +77 0.276816040277 0.975202977657 +0 0.279056668282 0.977872431278 +86 0.276037424803 0.976130247116 +SURF 0x10 +mat 7 +refs 3 +86 0.276037424803 0.976130247116 +0 0.279056668282 0.977872431278 +1 0.275622844696 0.977267980576 +SURF 0x10 +mat 7 +refs 4 +85 0.27310910821 0.974445402622 +86 0.276037424803 0.976130247116 +1 0.275622844696 0.977267980576 +87 0.272292643785 0.976686179638 +SURF 0x10 +mat 7 +refs 4 +84 0.270360767841 0.972868919373 +85 0.27310910821 0.974445402622 +87 0.272292643785 0.976686179638 +88 0.269167155027 0.976144731045 +SURF 0x10 +mat 7 +refs 4 +83 0.267875909805 0.971448779106 +84 0.270360767841 0.972868919373 +88 0.269167155027 0.976144731045 +89 0.266341418028 0.975660085678 +SURF 0x10 +mat 7 +refs 4 +82 0.265729963779 0.970228135586 +83 0.267875909805 0.971448779106 +89 0.266341418028 0.975660085678 +90 0.263901263475 0.975246965885 +kids 0 +OBJECT poly +name "roof2" +data 9 +Plane.006 +crease 30 +numvert 121 +2.490313 1.199624 -0.718766 +2.489997 1.211181 -0.726031 +2.489955 1.212709 -0.739599 +2.490219 1.203058 -0.749254 +2.49059 1.189494 -0.747725 +2.490788 1.182233 -0.736164 +2.490665 1.186741 -0.723276 +3.189054 1.218727 -0.718766 +3.188739 1.230284 -0.726031 +3.188697 1.231813 -0.739599 +3.188961 1.222161 -0.749254 +3.189331 1.208598 -0.747725 +3.18953 1.201336 -0.736164 +3.189407 1.205844 -0.723276 +3.217869 1.219515 -0.716571 +3.219432 1.231123 -0.723588 +3.222901 1.232748 -0.736694 +3.225663 1.223165 -0.74602 +3.225638 1.20959 -0.744543 +3.222845 1.202247 -0.733376 +3.219388 1.206664 -0.720927 +3.241115 1.220151 -0.702293 +3.245467 1.231835 -0.707858 +3.254144 1.233602 -0.718252 +3.260612 1.22412 -0.725648 +3.26 1.21053 -0.724477 +3.244365 1.207347 -0.705747 +3.25277 1.203065 -0.71562 +3.257673 1.207711 -0.000122 +3.252812 1.22047 -0.000122 +3.259758 1.232226 -0.000122 +3.27328 1.234125 -0.000122 +3.283195 1.224738 -0.000122 +3.282037 1.211132 -0.000122 +3.270679 1.203555 -0.000122 +3.258715 1.207739 -0.675729 +3.254277 1.22051 -0.673823 +3.260542 1.232247 -0.676893 +3.272793 1.234112 -0.682627 +3.281804 1.224699 -0.686708 +3.28079 1.211098 -0.686062 +3.270514 1.20355 -0.681176 +2.480713 1.20002 -0.718766 +2.481197 1.182321 -0.723276 +2.480279 1.215898 -0.726031 +2.480222 1.217997 -0.739599 +2.480584 1.204738 -0.749254 +2.481093 1.186104 -0.747725 +2.481366 1.176128 -0.736164 +2.414281 1.198204 -0.718766 +2.414765 1.180505 -0.723276 +2.413847 1.214081 -0.726031 +2.41379 1.216181 -0.739599 +2.414153 1.202922 -0.749254 +2.414662 1.184288 -0.747725 +2.414935 1.174311 -0.736164 +2.403688 1.188179 -0.723276 +2.403457 1.196645 -0.718766 +2.403249 1.204239 -0.726031 +2.403222 1.205243 -0.739599 +2.403395 1.198901 -0.749254 +2.403639 1.189989 -0.747725 +2.403769 1.185217 -0.736164 +2.400295 1.1954 -0.734402 +2.400295 1.1954 0.734157 +2.403769 1.185217 0.735919 +2.403639 1.189989 0.74748 +2.403395 1.198901 0.749009 +2.403222 1.205243 0.739354 +2.403249 1.204239 0.725786 +2.403457 1.196645 0.718521 +2.403688 1.188179 0.723031 +2.414935 1.174311 0.735919 +2.414662 1.184288 0.74748 +2.414153 1.202922 0.749009 +2.41379 1.216181 0.739354 +2.413847 1.214081 0.725786 +2.414765 1.180505 0.723031 +2.414281 1.198204 0.718521 +2.481366 1.176128 0.735919 +2.481093 1.186104 0.74748 +2.480584 1.204738 0.749009 +2.480222 1.217997 0.739354 +2.480279 1.215898 0.725786 +2.481197 1.182321 0.723031 +2.480713 1.20002 0.718521 +3.270514 1.20355 0.68093 +3.28079 1.211098 0.685816 +3.281804 1.224699 0.686462 +3.272793 1.234112 0.682382 +3.260542 1.232247 0.676648 +3.254277 1.22051 0.673578 +3.258715 1.207739 0.675484 +3.25277 1.203065 0.715375 +3.244365 1.207347 0.705502 +3.26 1.21053 0.724231 +3.260612 1.22412 0.725403 +3.254144 1.233602 0.718006 +3.245467 1.231835 0.707612 +3.241115 1.220151 0.702048 +3.219388 1.206664 0.720682 +3.222845 1.202247 0.733131 +3.225638 1.20959 0.744298 +3.225663 1.223165 0.745775 +3.222901 1.232748 0.736449 +3.219432 1.231123 0.723343 +3.217869 1.219515 0.716326 +3.189407 1.205844 0.723031 +3.18953 1.201336 0.735919 +3.189331 1.208598 0.74748 +3.188961 1.222161 0.749009 +3.188697 1.231813 0.739354 +3.188739 1.230284 0.725786 +3.189054 1.218727 0.718521 +2.490665 1.186741 0.723031 +2.490788 1.182233 0.735919 +2.49059 1.189494 0.74748 +2.490219 1.203058 0.749009 +2.489955 1.212709 0.739354 +2.489997 1.211181 0.725786 +2.490313 1.199624 0.718521 +numsurf 126 +SURF 0x10 +mat 8 +refs 4 +7 0 0 +0 0 0 +6 0 0 +13 0 0 +SURF 0x10 +mat 8 +refs 4 +0 0 0 +7 0 0 +8 0 0 +1 0 0 +SURF 0x10 +mat 8 +refs 4 +9 0 0 +2 0 0 +1 0 0 +8 0 0 +SURF 0x10 +mat 8 +refs 4 +10 0 0 +3 0 0 +2 0 0 +9 0 0 +SURF 0x10 +mat 8 +refs 4 +11 0 0 +4 0 0 +3 0 0 +10 0 0 +SURF 0x10 +mat 8 +refs 4 +12 0 0 +5 0 0 +4 0 0 +11 0 0 +SURF 0x10 +mat 8 +refs 4 +13 0 0 +6 0 0 +5 0 0 +12 0 0 +SURF 0x10 +mat 8 +refs 4 +14 0 0 +7 0 0 +13 0 0 +20 0 0 +SURF 0x10 +mat 8 +refs 4 +15 0 0 +8 0 0 +7 0 0 +14 0 0 +SURF 0x10 +mat 8 +refs 4 +16 0 0 +9 0 0 +8 0 0 +15 0 0 +SURF 0x10 +mat 8 +refs 4 +17 0 0 +10 0 0 +9 0 0 +16 0 0 +SURF 0x10 +mat 8 +refs 4 +18 0 0 +11 0 0 +10 0 0 +17 0 0 +SURF 0x10 +mat 8 +refs 4 +19 0 0 +12 0 0 +11 0 0 +18 0 0 +SURF 0x10 +mat 8 +refs 4 +20 0 0 +13 0 0 +12 0 0 +19 0 0 +SURF 0x10 +mat 8 +refs 4 +21 0 0 +14 0 0 +20 0 0 +26 0 0 +SURF 0x10 +mat 8 +refs 4 +22 0 0 +15 0 0 +14 0 0 +21 0 0 +SURF 0x10 +mat 8 +refs 4 +23 0 0 +16 0 0 +15 0 0 +22 0 0 +SURF 0x10 +mat 8 +refs 4 +24 0 0 +17 0 0 +16 0 0 +23 0 0 +SURF 0x10 +mat 8 +refs 4 +25 0 0 +18 0 0 +17 0 0 +24 0 0 +SURF 0x10 +mat 8 +refs 4 +27 0 0 +19 0 0 +18 0 0 +25 0 0 +SURF 0x10 +mat 8 +refs 4 +26 0 0 +20 0 0 +19 0 0 +27 0 0 +SURF 0x10 +mat 8 +refs 4 +36 0 0 +21 0 0 +26 0 0 +35 0 0 +SURF 0x10 +mat 8 +refs 4 +37 0 0 +22 0 0 +21 0 0 +36 0 0 +SURF 0x10 +mat 8 +refs 4 +38 0 0 +23 0 0 +22 0 0 +37 0 0 +SURF 0x10 +mat 8 +refs 4 +39 0 0 +24 0 0 +23 0 0 +38 0 0 +SURF 0x10 +mat 8 +refs 4 +40 0 0 +25 0 0 +24 0 0 +39 0 0 +SURF 0x10 +mat 8 +refs 4 +41 0 0 +27 0 0 +25 0 0 +40 0 0 +SURF 0x10 +mat 8 +refs 4 +35 0 0 +26 0 0 +27 0 0 +41 0 0 +SURF 0x10 +mat 8 +refs 4 +29 0 0 +36 0 0 +35 0 0 +28 0 0 +SURF 0x10 +mat 8 +refs 4 +30 0 0 +37 0 0 +36 0 0 +29 0 0 +SURF 0x10 +mat 8 +refs 4 +31 0 0 +38 0 0 +37 0 0 +30 0 0 +SURF 0x10 +mat 8 +refs 4 +32 0 0 +39 0 0 +38 0 0 +31 0 0 +SURF 0x10 +mat 8 +refs 4 +33 0 0 +40 0 0 +39 0 0 +32 0 0 +SURF 0x10 +mat 8 +refs 4 +40 0 0 +33 0 0 +34 0 0 +41 0 0 +SURF 0x10 +mat 8 +refs 4 +41 0 0 +34 0 0 +28 0 0 +35 0 0 +SURF 0x10 +mat 8 +refs 4 +0 0 0 +42 0 0 +43 0 0 +6 0 0 +SURF 0x10 +mat 8 +refs 4 +42 0 0 +0 0 0 +1 0 0 +44 0 0 +SURF 0x10 +mat 8 +refs 4 +2 0 0 +45 0 0 +44 0 0 +1 0 0 +SURF 0x10 +mat 8 +refs 4 +3 0 0 +46 0 0 +45 0 0 +2 0 0 +SURF 0x10 +mat 8 +refs 4 +4 0 0 +47 0 0 +46 0 0 +3 0 0 +SURF 0x10 +mat 8 +refs 4 +5 0 0 +48 0 0 +47 0 0 +4 0 0 +SURF 0x10 +mat 8 +refs 4 +6 0 0 +43 0 0 +48 0 0 +5 0 0 +SURF 0x10 +mat 8 +refs 4 +42 0 0 +49 0 0 +50 0 0 +43 0 0 +SURF 0x10 +mat 8 +refs 4 +44 0 0 +51 0 0 +49 0 0 +42 0 0 +SURF 0x10 +mat 8 +refs 4 +45 0 0 +52 0 0 +51 0 0 +44 0 0 +SURF 0x10 +mat 8 +refs 4 +46 0 0 +53 0 0 +52 0 0 +45 0 0 +SURF 0x10 +mat 8 +refs 4 +47 0 0 +54 0 0 +53 0 0 +46 0 0 +SURF 0x10 +mat 8 +refs 4 +48 0 0 +55 0 0 +54 0 0 +47 0 0 +SURF 0x10 +mat 8 +refs 4 +43 0 0 +50 0 0 +55 0 0 +48 0 0 +SURF 0x10 +mat 8 +refs 4 +49 0 0 +57 0 0 +56 0 0 +50 0 0 +SURF 0x10 +mat 8 +refs 4 +51 0 0 +58 0 0 +57 0 0 +49 0 0 +SURF 0x10 +mat 8 +refs 4 +52 0 0 +59 0 0 +58 0 0 +51 0 0 +SURF 0x10 +mat 8 +refs 4 +53 0 0 +60 0 0 +59 0 0 +52 0 0 +SURF 0x10 +mat 8 +refs 4 +54 0 0 +61 0 0 +60 0 0 +53 0 0 +SURF 0x10 +mat 8 +refs 4 +55 0 0 +62 0 0 +61 0 0 +54 0 0 +SURF 0x10 +mat 8 +refs 4 +50 0 0 +56 0 0 +62 0 0 +55 0 0 +SURF 0x10 +mat 8 +refs 3 +57 0 0 +63 0 0 +56 0 0 +SURF 0x10 +mat 8 +refs 3 +58 0 0 +63 0 0 +57 0 0 +SURF 0x10 +mat 8 +refs 3 +59 0 0 +63 0 0 +58 0 0 +SURF 0x10 +mat 8 +refs 3 +60 0 0 +63 0 0 +59 0 0 +SURF 0x10 +mat 8 +refs 3 +61 0 0 +63 0 0 +60 0 0 +SURF 0x10 +mat 8 +refs 3 +62 0 0 +63 0 0 +61 0 0 +SURF 0x10 +mat 8 +refs 3 +56 0 0 +63 0 0 +62 0 0 +SURF 0x10 +mat 8 +refs 3 +71 0 0 +65 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 3 +65 0 0 +66 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 3 +66 0 0 +67 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 3 +67 0 0 +68 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 3 +68 0 0 +69 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 3 +69 0 0 +70 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 3 +70 0 0 +71 0 0 +64 0 0 +SURF 0x10 +mat 8 +refs 4 +77 0 0 +72 0 0 +65 0 0 +71 0 0 +SURF 0x10 +mat 8 +refs 4 +72 0 0 +73 0 0 +66 0 0 +65 0 0 +SURF 0x10 +mat 8 +refs 4 +73 0 0 +74 0 0 +67 0 0 +66 0 0 +SURF 0x10 +mat 8 +refs 4 +74 0 0 +75 0 0 +68 0 0 +67 0 0 +SURF 0x10 +mat 8 +refs 4 +75 0 0 +76 0 0 +69 0 0 +68 0 0 +SURF 0x10 +mat 8 +refs 4 +76 0 0 +78 0 0 +70 0 0 +69 0 0 +SURF 0x10 +mat 8 +refs 4 +78 0 0 +77 0 0 +71 0 0 +70 0 0 +SURF 0x10 +mat 8 +refs 4 +84 0 0 +79 0 0 +72 0 0 +77 0 0 +SURF 0x10 +mat 8 +refs 4 +79 0 0 +80 0 0 +73 0 0 +72 0 0 +SURF 0x10 +mat 8 +refs 4 +80 0 0 +81 0 0 +74 0 0 +73 0 0 +SURF 0x10 +mat 8 +refs 4 +81 0 0 +82 0 0 +75 0 0 +74 0 0 +SURF 0x10 +mat 8 +refs 4 +82 0 0 +83 0 0 +76 0 0 +75 0 0 +SURF 0x10 +mat 8 +refs 4 +83 0 0 +85 0 0 +78 0 0 +76 0 0 +SURF 0x10 +mat 8 +refs 4 +85 0 0 +84 0 0 +77 0 0 +78 0 0 +SURF 0x10 +mat 8 +refs 4 +114 0 0 +115 0 0 +79 0 0 +84 0 0 +SURF 0x10 +mat 8 +refs 4 +115 0 0 +116 0 0 +80 0 0 +79 0 0 +SURF 0x10 +mat 8 +refs 4 +116 0 0 +117 0 0 +81 0 0 +80 0 0 +SURF 0x10 +mat 8 +refs 4 +117 0 0 +118 0 0 +82 0 0 +81 0 0 +SURF 0x10 +mat 8 +refs 4 +118 0 0 +119 0 0 +83 0 0 +82 0 0 +SURF 0x10 +mat 8 +refs 4 +119 0 0 +120 0 0 +85 0 0 +83 0 0 +SURF 0x10 +mat 8 +refs 4 +120 0 0 +114 0 0 +84 0 0 +85 0 0 +SURF 0x10 +mat 8 +refs 4 +86 0 0 +92 0 0 +28 0 0 +34 0 0 +SURF 0x10 +mat 8 +refs 4 +87 0 0 +86 0 0 +34 0 0 +33 0 0 +SURF 0x10 +mat 8 +refs 4 +33 0 0 +32 0 0 +88 0 0 +87 0 0 +SURF 0x10 +mat 8 +refs 4 +32 0 0 +31 0 0 +89 0 0 +88 0 0 +SURF 0x10 +mat 8 +refs 4 +31 0 0 +30 0 0 +90 0 0 +89 0 0 +SURF 0x10 +mat 8 +refs 4 +30 0 0 +29 0 0 +91 0 0 +90 0 0 +SURF 0x10 +mat 8 +refs 4 +29 0 0 +28 0 0 +92 0 0 +91 0 0 +SURF 0x10 +mat 8 +refs 4 +92 0 0 +86 0 0 +93 0 0 +94 0 0 +SURF 0x10 +mat 8 +refs 4 +86 0 0 +87 0 0 +95 0 0 +93 0 0 +SURF 0x10 +mat 8 +refs 4 +87 0 0 +88 0 0 +96 0 0 +95 0 0 +SURF 0x10 +mat 8 +refs 4 +88 0 0 +89 0 0 +97 0 0 +96 0 0 +SURF 0x10 +mat 8 +refs 4 +89 0 0 +90 0 0 +98 0 0 +97 0 0 +SURF 0x10 +mat 8 +refs 4 +90 0 0 +91 0 0 +99 0 0 +98 0 0 +SURF 0x10 +mat 8 +refs 4 +91 0 0 +92 0 0 +94 0 0 +99 0 0 +SURF 0x10 +mat 8 +refs 4 +94 0 0 +93 0 0 +101 0 0 +100 0 0 +SURF 0x10 +mat 8 +refs 4 +93 0 0 +95 0 0 +102 0 0 +101 0 0 +SURF 0x10 +mat 8 +refs 4 +95 0 0 +96 0 0 +103 0 0 +102 0 0 +SURF 0x10 +mat 8 +refs 4 +96 0 0 +97 0 0 +104 0 0 +103 0 0 +SURF 0x10 +mat 8 +refs 4 +97 0 0 +98 0 0 +105 0 0 +104 0 0 +SURF 0x10 +mat 8 +refs 4 +98 0 0 +99 0 0 +106 0 0 +105 0 0 +SURF 0x10 +mat 8 +refs 4 +99 0 0 +94 0 0 +100 0 0 +106 0 0 +SURF 0x10 +mat 8 +refs 4 +100 0 0 +101 0 0 +108 0 0 +107 0 0 +SURF 0x10 +mat 8 +refs 4 +101 0 0 +102 0 0 +109 0 0 +108 0 0 +SURF 0x10 +mat 8 +refs 4 +102 0 0 +103 0 0 +110 0 0 +109 0 0 +SURF 0x10 +mat 8 +refs 4 +103 0 0 +104 0 0 +111 0 0 +110 0 0 +SURF 0x10 +mat 8 +refs 4 +104 0 0 +105 0 0 +112 0 0 +111 0 0 +SURF 0x10 +mat 8 +refs 4 +105 0 0 +106 0 0 +113 0 0 +112 0 0 +SURF 0x10 +mat 8 +refs 4 +106 0 0 +100 0 0 +107 0 0 +113 0 0 +SURF 0x10 +mat 8 +refs 4 +107 0 0 +108 0 0 +115 0 0 +114 0 0 +SURF 0x10 +mat 8 +refs 4 +108 0 0 +109 0 0 +116 0 0 +115 0 0 +SURF 0x10 +mat 8 +refs 4 +109 0 0 +110 0 0 +117 0 0 +116 0 0 +SURF 0x10 +mat 8 +refs 4 +110 0 0 +111 0 0 +118 0 0 +117 0 0 +SURF 0x10 +mat 8 +refs 4 +111 0 0 +112 0 0 +119 0 0 +118 0 0 +SURF 0x10 +mat 8 +refs 4 +112 0 0 +113 0 0 +120 0 0 +119 0 0 +SURF 0x10 +mat 8 +refs 4 +113 0 0 +107 0 0 +114 0 0 +120 0 0 +kids 0 +OBJECT poly +name "sparewheel" +data 10 +Circle.039 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 218 +3.292101 1.102175 -0.291111 +3.292101 1.334918 -0.425485 +3.292101 1.361766 -0.360668 +3.292101 1.370923 -0.291111 +3.292101 1.361766 -0.221554 +3.292101 1.334918 -0.156737 +3.292101 1.292209 -0.101078 +3.292101 1.236549 -0.058369 +3.292101 1.171732 -0.031521 +3.292101 1.102175 -0.022363 +3.292101 1.032618 -0.031521 +3.292101 0.967801 -0.058369 +3.292101 0.912142 -0.101078 +3.292101 0.869433 -0.156737 +3.292101 0.842585 -0.221554 +3.292101 0.833427 -0.291111 +3.292101 0.842585 -0.360668 +3.292101 0.869433 -0.425485 +3.292101 0.912142 -0.481145 +3.292101 0.967801 -0.523854 +3.292101 1.032618 -0.550702 +3.292101 1.102175 -0.559859 +3.292101 1.171732 -0.550702 +3.292101 1.292209 -0.481145 +3.292101 1.236549 -0.523854 +3.499551 1.102248 -0.291114 +3.494893 1.120284 -0.301527 +3.494893 1.122364 -0.296504 +3.494893 1.123074 -0.291114 +3.494893 1.122364 -0.285724 +3.494893 1.120284 -0.280701 +3.494893 1.116974 -0.276387 +3.494893 1.112661 -0.273078 +3.494893 1.107638 -0.270997 +3.494893 1.102248 -0.270287 +3.494893 1.096858 -0.270997 +3.494893 1.091835 -0.273078 +3.494893 1.087521 -0.276387 +3.494893 1.084212 -0.280701 +3.494893 1.082131 -0.285724 +3.494893 1.081421 -0.291114 +3.494893 1.082131 -0.296504 +3.494893 1.084212 -0.301527 +3.494893 1.087521 -0.30584 +3.494893 1.091835 -0.30915 +3.494893 1.096858 -0.31123 +3.494893 1.102248 -0.31194 +3.494893 1.107638 -0.31123 +3.494893 1.112661 -0.30915 +3.494893 1.116974 -0.30584 +3.473543 1.134555 -0.309766 +3.473543 1.138282 -0.300769 +3.473543 1.139553 -0.291114 +3.473543 1.138282 -0.281458 +3.473543 1.134555 -0.272461 +3.473543 1.128627 -0.264735 +3.473543 1.120901 -0.258806 +3.473543 1.111903 -0.255079 +3.473543 1.102248 -0.253808 +3.473543 1.092592 -0.255079 +3.473543 1.083595 -0.258806 +3.473543 1.075869 -0.264735 +3.473543 1.06994 -0.272461 +3.473543 1.066213 -0.281458 +3.473543 1.064942 -0.291114 +3.473543 1.066213 -0.300769 +3.473543 1.06994 -0.309767 +3.473543 1.075869 -0.317493 +3.473543 1.083595 -0.323421 +3.473543 1.092592 -0.327148 +3.473543 1.102248 -0.328419 +3.473543 1.111903 -0.327148 +3.473543 1.120901 -0.323421 +3.473543 1.128627 -0.317493 +3.435987 1.134555 -0.309766 +3.435987 1.138282 -0.300769 +3.435987 1.139553 -0.291114 +3.435987 1.138282 -0.281458 +3.435987 1.134555 -0.272461 +3.435987 1.128627 -0.264735 +3.435987 1.120901 -0.258806 +3.435987 1.111903 -0.255079 +3.435987 1.102248 -0.253808 +3.435987 1.092592 -0.255079 +3.435987 1.083595 -0.258806 +3.435987 1.075869 -0.264735 +3.435987 1.06994 -0.272461 +3.435987 1.066213 -0.281458 +3.435987 1.064942 -0.291114 +3.435987 1.066213 -0.300769 +3.435987 1.06994 -0.309767 +3.435987 1.075869 -0.317493 +3.435987 1.083595 -0.323421 +3.435987 1.092592 -0.327148 +3.435987 1.102248 -0.328419 +3.435987 1.111903 -0.327148 +3.435987 1.128627 -0.317493 +3.435987 1.120901 -0.323421 +3.435987 1.20586 -0.350934 +3.435987 1.217812 -0.322079 +3.435987 1.221889 -0.291114 +3.435987 1.217812 -0.260148 +3.435987 1.20586 -0.231293 +3.435987 1.186847 -0.206515 +3.435987 1.162068 -0.187501 +3.435987 1.133213 -0.175549 +3.435987 1.102248 -0.171472 +3.435987 1.071282 -0.175549 +3.435987 1.042427 -0.187501 +3.435987 1.017649 -0.206515 +3.435987 0.998635 -0.231293 +3.435987 0.986683 -0.260148 +3.435987 0.982607 -0.291114 +3.435987 0.986683 -0.322079 +3.435987 0.998635 -0.350934 +3.435987 1.017649 -0.375713 +3.435987 1.042427 -0.394726 +3.435987 1.071282 -0.406678 +3.435987 1.102248 -0.410755 +3.435987 1.133213 -0.406678 +3.435987 1.186847 -0.375713 +3.435987 1.162068 -0.394726 +3.419296 1.26037 -0.382405 +3.419296 1.27861 -0.33837 +3.419296 1.284831 -0.291114 +3.419296 1.27861 -0.243858 +3.419296 1.260369 -0.199822 +3.419296 1.231353 -0.162008 +3.419296 1.193539 -0.132992 +3.419296 1.149504 -0.114752 +3.419296 1.102248 -0.108531 +3.419296 1.054992 -0.114752 +3.419296 1.010956 -0.132992 +3.419296 0.973142 -0.162008 +3.419296 0.944126 -0.199822 +3.419296 0.925886 -0.243858 +3.419296 0.919665 -0.291114 +3.419296 0.925886 -0.33837 +3.419296 0.944126 -0.382405 +3.419296 0.973142 -0.420219 +3.419296 1.010956 -0.449235 +3.419296 1.054992 -0.467475 +3.419296 1.102248 -0.473697 +3.419296 1.149504 -0.467475 +3.419296 1.193539 -0.449235 +3.419296 1.231354 -0.420219 +3.419296 1.31399 -0.413363 +3.419296 1.338415 -0.354394 +3.419296 1.346746 -0.291114 +3.419296 1.338415 -0.227833 +3.419296 1.31399 -0.168864 +3.419296 1.275134 -0.118227 +3.419296 1.224497 -0.079372 +3.419296 1.165529 -0.054946 +3.419296 1.102248 -0.046615 +3.419296 1.038967 -0.054946 +3.419296 0.979999 -0.079372 +3.419296 0.929361 -0.118227 +3.419296 0.890506 -0.168865 +3.419296 0.866081 -0.227833 +3.419296 0.857749 -0.291114 +3.419296 0.866081 -0.354395 +3.419296 0.890506 -0.413363 +3.419296 0.929361 -0.464 +3.419296 0.979999 -0.502856 +3.419296 1.038967 -0.527281 +3.419296 1.102248 -0.535612 +3.419296 1.165529 -0.527281 +3.419296 1.275134 -0.464 +3.419296 1.224497 -0.502856 +3.473543 1.31399 -0.413363 +3.473543 1.338415 -0.354394 +3.473543 1.346746 -0.291114 +3.473543 1.338415 -0.227833 +3.473543 1.31399 -0.168864 +3.473543 1.275134 -0.118227 +3.473543 1.224497 -0.079372 +3.473543 1.165529 -0.054946 +3.473543 1.102248 -0.046615 +3.473543 1.038967 -0.054946 +3.473543 0.979999 -0.079372 +3.473543 0.929361 -0.118227 +3.473543 0.890506 -0.168865 +3.473543 0.866081 -0.227833 +3.473543 0.857749 -0.291114 +3.473543 0.866081 -0.354395 +3.473543 0.890506 -0.413363 +3.473543 0.929361 -0.464 +3.473543 0.979999 -0.502856 +3.473543 1.038967 -0.527281 +3.473543 1.102248 -0.535612 +3.473543 1.165529 -0.527281 +3.473543 1.275134 -0.464 +3.473543 1.224497 -0.502856 +3.473543 1.333683 -0.424733 +3.473543 1.36038 -0.36028 +3.473543 1.369486 -0.291114 +3.473543 1.36038 -0.221947 +3.473543 1.333683 -0.157494 +3.473543 1.291214 -0.102148 +3.473543 1.235867 -0.059679 +3.473543 1.171414 -0.032981 +3.473543 1.102248 -0.023875 +3.473543 1.033081 -0.032981 +3.473543 0.968629 -0.059679 +3.473543 0.913282 -0.102148 +3.473543 0.870813 -0.157495 +3.473543 0.844115 -0.221947 +3.473543 0.83501 -0.291114 +3.473543 0.844115 -0.36028 +3.473543 0.870813 -0.424733 +3.473543 0.913282 -0.48008 +3.473543 0.968629 -0.522549 +3.473543 1.033082 -0.549246 +3.473543 1.102248 -0.558352 +3.473543 1.171414 -0.549246 +3.473543 1.291214 -0.48008 +3.473543 1.235867 -0.522549 +numsurf 216 +SURF 0x10 +mat 9 +refs 3 +23 0.163628667593 0.509743213654 +0 0.1346539855 0.480768471956 +1 0.155142173171 0.516255199909 +SURF 0x10 +mat 9 +refs 3 +1 0.155142173171 0.516255199909 +0 0.1346539855 0.480768471956 +2 0.145259439945 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +2 0.145259439945 0.520348727703 +0 0.1346539855 0.480768471956 +3 0.134653955698 0.521744906902 +SURF 0x10 +mat 9 +refs 3 +3 0.134653955698 0.521744906902 +0 0.1346539855 0.480768471956 +4 0.124048486352 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +4 0.124048486352 0.520348727703 +0 0.1346539855 0.480768471956 +5 0.114165768027 0.516255140305 +SURF 0x10 +mat 9 +refs 3 +5 0.114165768027 0.516255140305 +0 0.1346539855 0.480768471956 +6 0.105679303408 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +6 0.105679303408 0.509743213654 +0 0.1346539855 0.480768471956 +7 0.0991673767567 0.50125670433 +SURF 0x10 +mat 9 +refs 3 +7 0.0991673767567 0.50125670433 +0 0.1346539855 0.480768471956 +8 0.0950738191605 0.491373956203 +SURF 0x10 +mat 9 +refs 3 +8 0.0950738191605 0.491373956203 +0 0.1346539855 0.480768471956 +9 0.0936775803566 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +9 0.0936775803566 0.480768471956 +0 0.1346539855 0.480768471956 +10 0.0950738340616 0.470163017511 +SURF 0x10 +mat 9 +refs 3 +10 0.0950738340616 0.470163017511 +0 0.1346539855 0.480768471956 +11 0.099167406559 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +11 0.099167406559 0.460280328989 +0 0.1346539855 0.480768471956 +12 0.105679303408 0.451793789864 +SURF 0x10 +mat 9 +refs 3 +12 0.105679303408 0.451793789864 +0 0.1346539855 0.480768471956 +13 0.114165812731 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +13 0.114165812731 0.445281893015 +0 0.1346539855 0.480768471956 +14 0.124048545957 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +14 0.124048545957 0.441188365221 +0 0.1346539855 0.480768471956 +15 0.134654000401 0.439792096615 +SURF 0x10 +mat 9 +refs 3 +15 0.134654000401 0.439792096615 +0 0.1346539855 0.480768471956 +16 0.14525949955 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +16 0.14525949955 0.441188365221 +0 0.1346539855 0.480768471956 +17 0.155142202973 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +17 0.155142202973 0.445281893015 +0 0.1346539855 0.480768471956 +18 0.163628727198 0.451793819666 +SURF 0x10 +mat 9 +refs 3 +18 0.163628727198 0.451793819666 +0 0.1346539855 0.480768471956 +19 0.170140609145 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +19 0.170140609145 0.460280328989 +0 0.1346539855 0.480768471956 +20 0.174234181643 0.470163047314 +SURF 0x10 +mat 9 +refs 3 +20 0.174234181643 0.470163047314 +0 0.1346539855 0.480768471956 +21 0.175630405545 0.480768531561 +SURF 0x10 +mat 9 +refs 3 +21 0.175630405545 0.480768531561 +0 0.1346539855 0.480768471956 +22 0.174234181643 0.491374015808 +SURF 0x10 +mat 9 +refs 3 +22 0.174234181643 0.491374015808 +0 0.1346539855 0.480768471956 +24 0.170140609145 0.501256763935 +SURF 0x10 +mat 9 +refs 3 +24 0.170140609145 0.501256763935 +0 0.1346539855 0.480768471956 +23 0.163628667593 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +26 0.136241689324 0.483518511057 +25 0.1346539855 0.480768471956 +49 0.136899352074 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +27 0.135475844145 0.483835697174 +25 0.1346539855 0.480768471956 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +28 0.1346539855 0.483943879604 +25 0.1346539855 0.480768471956 +27 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +29 0.133832126856 0.483835697174 +25 0.1346539855 0.480768471956 +28 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 3 +30 0.133066281676 0.483518511057 +25 0.1346539855 0.480768471956 +29 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +31 0.132408633828 0.48301383853 +25 0.1346539855 0.480768471956 +30 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +32 0.131904020905 0.482356220484 +25 0.1346539855 0.480768471956 +31 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +33 0.131586790085 0.481590390205 +25 0.1346539855 0.480768471956 +32 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 3 +34 0.131478577852 0.480768471956 +25 0.1346539855 0.480768471956 +33 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +35 0.131586790085 0.479946613312 +25 0.1346539855 0.480768471956 +34 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +36 0.131904020905 0.479180753231 +25 0.1346539855 0.480768471956 +35 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +37 0.132408633828 0.478523135185 +25 0.1346539855 0.480768471956 +36 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +38 0.133066281676 0.478018462658 +25 0.1346539855 0.480768471956 +37 0.132408633828 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +39 0.133832126856 0.477701276541 +25 0.1346539855 0.480768471956 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +40 0.1346539855 0.47759309411 +25 0.1346539855 0.480768471956 +39 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +41 0.135475844145 0.477701276541 +25 0.1346539855 0.480768471956 +40 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 3 +42 0.136241689324 0.478018462658 +25 0.1346539855 0.480768471956 +41 0.135475844145 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +43 0.136899352074 0.478523135185 +25 0.1346539855 0.480768471956 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +44 0.137403979897 0.479180753231 +25 0.1346539855 0.480768471956 +43 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +45 0.137721210718 0.479946613312 +25 0.1346539855 0.480768471956 +44 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +46 0.13782940805 0.480768471956 +25 0.1346539855 0.480768471956 +45 0.137721210718 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +47 0.137721210718 0.481590390205 +25 0.1346539855 0.480768471956 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +48 0.137403979897 0.482356220484 +25 0.1346539855 0.480768471956 +47 0.137721210718 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +49 0.136899352074 0.48301383853 +25 0.1346539855 0.480768471956 +48 0.137403979897 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +26 0.136241689324 0.483518511057 +49 0.136899352074 0.48301383853 +73 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +51 0.136126160622 0.486262708902 +27 0.135475844145 0.483835697174 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +51 0.136126160622 0.486262708902 +52 0.1346539855 0.486456543207 +28 0.1346539855 0.483943879604 +27 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 4 +52 0.1346539855 0.486456543207 +53 0.133181810379 0.486262708902 +29 0.133832126856 0.483835697174 +28 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 4 +53 0.133181810379 0.486262708902 +54 0.131809994578 0.485694468021 +30 0.133066281676 0.483518511057 +29 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 4 +54 0.131809994578 0.485694468021 +55 0.130631938577 0.484790533781 +31 0.132408633828 0.48301383853 +30 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +55 0.130631938577 0.484790533781 +56 0.129728004336 0.483612507582 +32 0.131904020905 0.482356220484 +31 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 4 +56 0.129728004336 0.483612507582 +57 0.129159763455 0.482240647078 +33 0.131586790085 0.481590390205 +32 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +57 0.129159763455 0.482240647078 +58 0.128965958953 0.480768471956 +34 0.131478577852 0.480768471956 +33 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 4 +58 0.128965958953 0.480768471956 +59 0.129159763455 0.479296296835 +35 0.131586790085 0.479946613312 +34 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +59 0.129159763455 0.479296296835 +60 0.129728004336 0.477924466133 +36 0.131904020905 0.479180753231 +35 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 4 +60 0.129728004336 0.477924466133 +61 0.130631968379 0.476746439934 +37 0.132408633828 0.478523135185 +36 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +38 0.133066281676 0.478018462658 +37 0.132408633828 0.478523135185 +61 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +63 0.133181810379 0.475274294615 +39 0.133832126856 0.477701276541 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +63 0.133181810379 0.475274294615 +64 0.1346539855 0.47508046031 +40 0.1346539855 0.47759309411 +39 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 4 +64 0.1346539855 0.47508046031 +65 0.136126160622 0.475274294615 +41 0.135475844145 0.477701276541 +40 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +42 0.136241689324 0.478018462658 +41 0.135475844145 0.477701276541 +65 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +67 0.138676047325 0.476746439934 +43 0.136899352074 0.478523135185 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +67 0.138676047325 0.476746439934 +68 0.139579966664 0.477924466133 +44 0.137403979897 0.479180753231 +43 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 4 +68 0.139579966664 0.477924466133 +69 0.140148207545 0.479296296835 +45 0.137721210718 0.479946613312 +44 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +46 0.13782940805 0.480768471956 +45 0.137721210718 0.479946613312 +69 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +71 0.140148207545 0.482240706682 +47 0.137721210718 0.481590390205 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +72 0.139579966664 0.483612507582 +48 0.137403979897 0.482356220484 +47 0.137721210718 0.481590390205 +71 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +73 0.138676047325 0.484790533781 +49 0.136899352074 0.48301383853 +48 0.137403979897 0.482356220484 +72 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +50 0.137498006225 0.485694468021 +73 0.138676047325 0.484790533781 +96 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +75 0.136126160622 0.486262708902 +51 0.136126160622 0.486262708902 +50 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +75 0.136126160622 0.486262708902 +76 0.1346539855 0.486456543207 +52 0.1346539855 0.486456543207 +51 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +76 0.1346539855 0.486456543207 +77 0.133181810379 0.486262708902 +53 0.133181810379 0.486262708902 +52 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +77 0.133181810379 0.486262708902 +78 0.131809994578 0.485694468021 +54 0.131809994578 0.485694468021 +53 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +78 0.131809994578 0.485694468021 +79 0.130631938577 0.484790533781 +55 0.130631938577 0.484790533781 +54 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +79 0.130631938577 0.484790533781 +80 0.129728004336 0.483612507582 +56 0.129728004336 0.483612507582 +55 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +80 0.129728004336 0.483612507582 +81 0.129159763455 0.482240647078 +57 0.129159763455 0.482240647078 +56 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +81 0.129159763455 0.482240647078 +82 0.128965958953 0.480768471956 +58 0.128965958953 0.480768471956 +57 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +82 0.128965958953 0.480768471956 +83 0.129159763455 0.479296296835 +59 0.129159763455 0.479296296835 +58 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +83 0.129159763455 0.479296296835 +84 0.129728004336 0.477924466133 +60 0.129728004336 0.477924466133 +59 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +84 0.129728004336 0.477924466133 +85 0.130631968379 0.476746439934 +61 0.130631968379 0.476746439934 +60 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +62 0.131809994578 0.475842505693 +61 0.130631968379 0.476746439934 +85 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +87 0.133181810379 0.475274294615 +63 0.133181810379 0.475274294615 +62 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +87 0.133181810379 0.475274294615 +88 0.1346539855 0.47508046031 +64 0.1346539855 0.47508046031 +63 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +88 0.1346539855 0.47508046031 +89 0.136126160622 0.475274294615 +65 0.136126160622 0.475274294615 +64 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +66 0.137498021126 0.475842505693 +65 0.136126160622 0.475274294615 +89 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +91 0.138676047325 0.476746439934 +67 0.138676047325 0.476746439934 +66 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +91 0.138676047325 0.476746439934 +92 0.139579966664 0.477924466133 +68 0.139579966664 0.477924466133 +67 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +92 0.139579966664 0.477924466133 +93 0.140148207545 0.479296296835 +69 0.140148207545 0.479296296835 +68 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +70 0.140342026949 0.480768471956 +69 0.140148207545 0.479296296835 +93 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +95 0.140148207545 0.482240706682 +71 0.140148207545 0.482240706682 +70 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +97 0.139579966664 0.483612507582 +72 0.139579966664 0.483612507582 +71 0.140148207545 0.482240706682 +95 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +96 0.138676047325 0.484790533781 +73 0.138676047325 0.484790533781 +72 0.139579966664 0.483612507582 +97 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +74 0.137498006225 0.485694468021 +96 0.138676047325 0.484790533781 +120 0.147552967072 0.49366748333 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +99 0.139375329018 0.498388826847 +75 0.136126160622 0.486262708902 +74 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +99 0.139375329018 0.498388826847 +100 0.1346539855 0.499010413885 +76 0.1346539855 0.486456543207 +75 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +100 0.1346539855 0.499010413885 +101 0.129932641983 0.498388797045 +77 0.133181810379 0.486262708902 +76 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +101 0.129932641983 0.498388797045 +102 0.125533029437 0.496566444635 +78 0.131809994578 0.485694468021 +77 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +102 0.125533029437 0.496566444635 +103 0.12175501883 0.493667453527 +79 0.130631938577 0.484790533781 +78 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +103 0.12175501883 0.493667453527 +104 0.118856042624 0.489889442921 +80 0.129728004336 0.483612507582 +79 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +104 0.118856042624 0.489889442921 +105 0.117033675313 0.485489815474 +81 0.129159763455 0.482240647078 +80 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +105 0.117033675313 0.485489815474 +106 0.116412103176 0.480768471956 +82 0.128965958953 0.480768471956 +81 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +106 0.116412103176 0.480768471956 +107 0.117033675313 0.476047158241 +83 0.129159763455 0.479296296835 +82 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +107 0.117033675313 0.476047158241 +108 0.118856057525 0.471647530794 +84 0.129728004336 0.477924466133 +83 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +108 0.118856057525 0.471647530794 +109 0.12175501883 0.467869520187 +85 0.130631968379 0.476746439934 +84 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +86 0.131809994578 0.475842505693 +85 0.130631968379 0.476746439934 +109 0.12175501883 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +111 0.129932656884 0.463148206472 +87 0.133181810379 0.475274294615 +86 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +111 0.129932656884 0.463148206472 +112 0.1346539855 0.462526619434 +88 0.1346539855 0.47508046031 +87 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +112 0.1346539855 0.462526619434 +113 0.13937535882 0.463148206472 +89 0.136126160622 0.475274294615 +88 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +90 0.137498021126 0.475842505693 +89 0.136126160622 0.475274294615 +113 0.13937535882 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +115 0.147552967072 0.467869520187 +91 0.138676047325 0.476746439934 +90 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +115 0.147552967072 0.467869520187 +116 0.150451913476 0.471647560596 +92 0.139579966664 0.477924466133 +91 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +116 0.150451913476 0.471647560596 +117 0.152274280787 0.476047158241 +93 0.140148207545 0.479296296835 +92 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +94 0.140342026949 0.480768471956 +93 0.140148207545 0.479296296835 +117 0.152274280787 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +119 0.152274280787 0.485489845276 +95 0.140148207545 0.482240706682 +94 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +121 0.150451913476 0.489889442921 +97 0.139579966664 0.483612507582 +95 0.140148207545 0.482240706682 +119 0.152274280787 0.485489845276 +SURF 0x10 +mat 9 +refs 4 +120 0.147552967072 0.49366748333 +96 0.138676047325 0.484790533781 +97 0.139579966664 0.483612507582 +121 0.150451913476 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +98 0.143774926662 0.496566444635 +120 0.147552967072 0.49366748333 +145 0.154338926077 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +123 0.141859173775 0.507658600807 +99 0.139375329018 0.498388826847 +98 0.143774926662 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +123 0.141859173775 0.507658600807 +124 0.1346539855 0.508607268333 +100 0.1346539855 0.499010413885 +99 0.139375329018 0.498388826847 +SURF 0x10 +mat 9 +refs 4 +124 0.1346539855 0.508607268333 +125 0.127448782325 0.507658600807 +101 0.129932641983 0.498388797045 +100 0.1346539855 0.499010413885 +SURF 0x10 +mat 9 +refs 4 +125 0.127448782325 0.507658600807 +126 0.120734617114 0.504877567291 +102 0.125533029437 0.496566444635 +101 0.129932641983 0.498388797045 +SURF 0x10 +mat 9 +refs 4 +126 0.120734617114 0.504877567291 +127 0.114969015121 0.500453472137 +103 0.12175501883 0.493667453527 +102 0.125533029437 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +127 0.114969015121 0.500453472137 +128 0.11054494977 0.494687855244 +104 0.118856042624 0.489889442921 +103 0.12175501883 0.493667453527 +SURF 0x10 +mat 9 +refs 4 +128 0.11054494977 0.494687855244 +129 0.107763856649 0.487973690033 +105 0.117033675313 0.485489815474 +104 0.118856042624 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +129 0.107763856649 0.487973690033 +130 0.106815263629 0.480768471956 +106 0.116412103176 0.480768471956 +105 0.117033675313 0.485489815474 +SURF 0x10 +mat 9 +refs 4 +130 0.106815263629 0.480768471956 +131 0.107763856649 0.473563283682 +107 0.117033675313 0.476047158241 +106 0.116412103176 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +131 0.107763856649 0.473563283682 +132 0.11054494977 0.466849118471 +108 0.118856057525 0.471647530794 +107 0.117033675313 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +132 0.11054494977 0.466849118471 +133 0.114969074726 0.461083561182 +109 0.12175501883 0.467869520187 +108 0.118856057525 0.471647530794 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +110 0.125533074141 0.464970588684 +109 0.12175501883 0.467869520187 +133 0.114969074726 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +135 0.127448827028 0.453878372908 +111 0.129932656884 0.463148206472 +110 0.125533074141 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +135 0.127448827028 0.453878372908 +136 0.134654000401 0.452929794788 +112 0.1346539855 0.462526619434 +111 0.129932656884 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +136 0.134654000401 0.452929794788 +137 0.141859203577 0.453878372908 +113 0.13937535882 0.463148206472 +112 0.1346539855 0.462526619434 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +114 0.143774926662 0.464970588684 +113 0.13937535882 0.463148206472 +137 0.141859203577 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +139 0.154338926077 0.461083561182 +115 0.147552967072 0.467869520187 +114 0.143774926662 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +139 0.154338926077 0.461083561182 +140 0.158763021231 0.466849148273 +116 0.150451913476 0.471647560596 +115 0.147552967072 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +140 0.158763021231 0.466849148273 +141 0.161544129252 0.473563283682 +117 0.152274280787 0.476047158241 +116 0.150451913476 0.471647560596 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +118 0.152895867825 0.480768471956 +117 0.152274280787 0.476047158241 +141 0.161544129252 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +143 0.161544129252 0.487973719835 +119 0.152274280787 0.485489845276 +118 0.152895867825 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +144 0.158763021231 0.494687855244 +121 0.150451913476 0.489889442921 +119 0.152274280787 0.485489845276 +143 0.161544129252 0.487973719835 +SURF 0x10 +mat 9 +refs 4 +145 0.154338926077 0.500453472137 +120 0.147552967072 0.49366748333 +121 0.150451913476 0.489889442921 +144 0.158763021231 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +122 0.148573309183 0.504877567291 +145 0.154338926077 0.500453472137 +168 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +147 0.144302502275 0.516777276993 +123 0.141859173775 0.507658600807 +122 0.148573309183 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +147 0.144302502275 0.516777276993 +148 0.1346539855 0.518047630787 +124 0.1346539855 0.508607268333 +123 0.141859173775 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +148 0.1346539855 0.518047630787 +149 0.125005453825 0.516777276993 +125 0.127448782325 0.507658600807 +124 0.1346539855 0.508607268333 +SURF 0x10 +mat 9 +refs 4 +149 0.125005453825 0.516777276993 +150 0.116014450788 0.513053119183 +126 0.120734617114 0.504877567291 +125 0.127448782325 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +150 0.116014450788 0.513053119183 +151 0.108293712139 0.50712877512 +127 0.114969015121 0.500453472137 +126 0.120734617114 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +151 0.108293712139 0.50712877512 +152 0.10236941278 0.499408006668 +128 0.11054494977 0.494687855244 +127 0.114969015121 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +152 0.10236941278 0.499408006668 +153 0.0986452102661 0.490417033434 +129 0.107763856649 0.487973690033 +128 0.11054494977 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +153 0.0986452102661 0.490417033434 +154 0.0973749309778 0.480768471956 +130 0.106815263629 0.480768471956 +129 0.107763856649 0.487973690033 +SURF 0x10 +mat 9 +refs 4 +154 0.0973749309778 0.480768471956 +155 0.0986452102661 0.471119970083 +131 0.107763856649 0.473563283682 +130 0.106815263629 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +155 0.0986452102661 0.471119970083 +156 0.10236941278 0.462128996849 +132 0.11054494977 0.466849118471 +131 0.107763856649 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +156 0.10236941278 0.462128996849 +157 0.108293741941 0.454408228397 +133 0.114969074726 0.461083561182 +132 0.11054494977 0.466849118471 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +134 0.120734632015 0.456659436226 +133 0.114969074726 0.461083561182 +157 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +159 0.125005483627 0.444759726524 +135 0.127448827028 0.453878372908 +134 0.120734632015 0.456659436226 +SURF 0x10 +mat 9 +refs 4 +159 0.125005483627 0.444759726524 +160 0.134654000401 0.443489462137 +136 0.134654000401 0.452929794788 +135 0.127448827028 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +160 0.134654000401 0.443489462137 +161 0.144302561879 0.444759726524 +137 0.141859203577 0.453878372908 +136 0.134654000401 0.452929794788 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +138 0.148573338985 0.456659466028 +137 0.141859203577 0.453878372908 +161 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +163 0.161014273763 0.454408228397 +139 0.154338926077 0.461083561182 +138 0.148573338985 0.456659466028 +SURF 0x10 +mat 9 +refs 4 +163 0.161014273763 0.454408228397 +164 0.166938588023 0.462128996849 +140 0.158763021231 0.466849148273 +139 0.154338926077 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +164 0.166938588023 0.462128996849 +165 0.170662805438 0.471119970083 +141 0.161544129252 0.473563283682 +140 0.158763021231 0.466849148273 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +142 0.162492707372 0.480768471956 +141 0.161544129252 0.473563283682 +165 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +167 0.170662805438 0.490417033434 +143 0.161544129252 0.487973719835 +142 0.162492707372 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +169 0.166938588023 0.499408066273 +144 0.158763021231 0.494687855244 +143 0.161544129252 0.487973719835 +167 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +168 0.16101424396 0.50712877512 +145 0.154338926077 0.500453472137 +144 0.158763021231 0.494687855244 +169 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +146 0.15329349041 0.513053119183 +168 0.16101424396 0.50712877512 +192 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +171 0.144302502275 0.516777276993 +147 0.144302502275 0.516777276993 +146 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +171 0.144302502275 0.516777276993 +172 0.1346539855 0.518047630787 +148 0.1346539855 0.518047630787 +147 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +172 0.1346539855 0.518047630787 +173 0.125005453825 0.516777276993 +149 0.125005453825 0.516777276993 +148 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +173 0.125005453825 0.516777276993 +174 0.116014450788 0.513053119183 +150 0.116014450788 0.513053119183 +149 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +174 0.116014450788 0.513053119183 +175 0.108293712139 0.50712877512 +151 0.108293712139 0.50712877512 +150 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +175 0.108293712139 0.50712877512 +176 0.10236941278 0.499408006668 +152 0.10236941278 0.499408006668 +151 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +176 0.10236941278 0.499408006668 +177 0.0986452102661 0.490417033434 +153 0.0986452102661 0.490417033434 +152 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +177 0.0986452102661 0.490417033434 +178 0.0973749309778 0.480768471956 +154 0.0973749309778 0.480768471956 +153 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +178 0.0973749309778 0.480768471956 +179 0.0986452102661 0.471119970083 +155 0.0986452102661 0.471119970083 +154 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +179 0.0986452102661 0.471119970083 +180 0.10236941278 0.462128996849 +156 0.10236941278 0.462128996849 +155 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +180 0.10236941278 0.462128996849 +181 0.108293741941 0.454408228397 +157 0.108293741941 0.454408228397 +156 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +158 0.116014495492 0.448483914137 +157 0.108293741941 0.454408228397 +181 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +183 0.125005483627 0.444759726524 +159 0.125005483627 0.444759726524 +158 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +183 0.125005483627 0.444759726524 +184 0.134654000401 0.443489462137 +160 0.134654000401 0.443489462137 +159 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +184 0.134654000401 0.443489462137 +185 0.144302561879 0.444759726524 +161 0.144302561879 0.444759726524 +160 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +162 0.153293505311 0.448483914137 +161 0.144302561879 0.444759726524 +185 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +187 0.161014273763 0.454408228397 +163 0.161014273763 0.454408228397 +162 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +187 0.161014273763 0.454408228397 +188 0.166938588023 0.462128996849 +164 0.166938588023 0.462128996849 +163 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +188 0.166938588023 0.462128996849 +189 0.170662805438 0.471119970083 +165 0.170662805438 0.471119970083 +164 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +166 0.171933025122 0.480768531561 +165 0.170662805438 0.471119970083 +189 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +191 0.170662805438 0.490417033434 +167 0.170662805438 0.490417033434 +166 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +193 0.166938588023 0.499408066273 +169 0.166938588023 0.499408066273 +167 0.170662805438 0.490417033434 +191 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +192 0.16101424396 0.50712877512 +168 0.16101424396 0.50712877512 +169 0.166938588023 0.499408066273 +193 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +170 0.15329349041 0.513053119183 +192 0.16101424396 0.50712877512 +216 0.163465932012 0.509580433369 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +195 0.145199865103 0.520126402378 +171 0.144302502275 0.516777276993 +170 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +195 0.145199865103 0.520126402378 +196 0.134653955698 0.521514713764 +172 0.1346539855 0.518047630787 +171 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +196 0.134653955698 0.521514713764 +197 0.124108076096 0.520126402378 +173 0.125005453825 0.516777276993 +172 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +197 0.124108076096 0.520126402378 +198 0.114280834794 0.516055822372 +174 0.116014450788 0.513053119183 +173 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +198 0.114280834794 0.516055822372 +199 0.105842024088 0.509580433369 +175 0.108293712139 0.50712877512 +174 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +199 0.105842024088 0.509580433369 +200 0.09936670959 0.501141607761 +176 0.10236941278 0.499408006668 +175 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +200 0.09936670959 0.501141607761 +201 0.0952961295843 0.491314411163 +177 0.0986452102661 0.490417033434 +176 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +201 0.0952961295843 0.491314411163 +202 0.0939077436924 0.480768471956 +178 0.0973749309778 0.480768471956 +177 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +202 0.0939077436924 0.480768471956 +203 0.0952961593866 0.470222562551 +179 0.0986452102661 0.471119970083 +178 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +203 0.0952961593866 0.470222562551 +204 0.09936670959 0.460395395756 +180 0.10236941278 0.462128996849 +179 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +204 0.09936670959 0.460395395756 +205 0.10584205389 0.451956540346 +181 0.108293741941 0.454408228397 +180 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +182 0.116014495492 0.448483914137 +181 0.108293741941 0.454408228397 +205 0.10584205389 0.451956540346 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +207 0.124108105898 0.441410690546 +183 0.125005483627 0.444759726524 +182 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +207 0.124108105898 0.441410690546 +208 0.134654000401 0.440022289753 +184 0.134654000401 0.443489462137 +183 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +208 0.134654000401 0.440022289753 +209 0.145199909806 0.441410690546 +185 0.144302561879 0.444759726524 +184 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +186 0.153293505311 0.448483914137 +185 0.144302561879 0.444759726524 +209 0.145199909806 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +211 0.163465932012 0.451956599951 +187 0.161014273763 0.454408228397 +186 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +211 0.163465932012 0.451956599951 +212 0.169941276312 0.460395395756 +188 0.166938588023 0.462128996849 +187 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +212 0.169941276312 0.460395395756 +213 0.174011841416 0.470222622156 +189 0.170662805438 0.471119970083 +188 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +190 0.171933025122 0.480768531561 +189 0.170662805438 0.471119970083 +213 0.174011841416 0.470222622156 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +215 0.174011841416 0.491314411163 +191 0.170662805438 0.490417033434 +190 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +217 0.169941276312 0.501141607761 +193 0.166938588023 0.499408066273 +191 0.170662805438 0.490417033434 +215 0.174011841416 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +216 0.163465932012 0.509580433369 +192 0.16101424396 0.50712877512 +193 0.166938588023 0.499408066273 +217 0.169941276312 0.501141607761 +kids 0 +OBJECT poly +name "Cylinder.015" +data 12 +Cylinder.020 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 91 +3.28883 0.664436 -0.529349 +3.287915 0.664436 -0.539803 +3.267324 0.68021 -0.572686 +3.274745 0.677672 -0.565713 +3.280764 0.674732 -0.557635 +3.2852 0.671479 -0.548698 +3.287915 0.668012 -0.539173 +3.287915 0.671156 -0.537357 +3.2852 0.677672 -0.545122 +3.280764 0.683785 -0.552408 +3.274745 0.689311 -0.558993 +3.267324 0.694081 -0.564678 +3.267324 0.704376 -0.552408 +3.274745 0.69795 -0.548698 +3.280764 0.690505 -0.5444 +3.2852 0.682269 -0.539644 +3.287915 0.67349 -0.534576 +3.287915 0.674732 -0.531164 +3.2852 0.684714 -0.532924 +3.280764 0.694081 -0.534576 +3.274745 0.702547 -0.536069 +3.267324 0.709855 -0.537357 +3.267324 0.709855 -0.52134 +3.274745 0.702547 -0.522629 +3.280764 0.694081 -0.524122 +3.2852 0.684714 -0.525773 +3.287915 0.674732 -0.527533 +3.287915 0.67349 -0.524121 +3.2852 0.682269 -0.519053 +3.280764 0.690505 -0.514298 +3.274745 0.69795 -0.51 +3.267324 0.704376 -0.506289 +3.267324 0.694081 -0.49402 +3.274745 0.689311 -0.499704 +3.280764 0.683785 -0.506289 +3.2852 0.677672 -0.513575 +3.287915 0.671156 -0.52134 +3.287915 0.668012 -0.519525 +3.2852 0.671479 -0.509999 +3.280764 0.674732 -0.501062 +3.274745 0.677672 -0.492984 +3.267324 0.68021 -0.486011 +3.267324 0.664436 -0.48323 +3.274745 0.664436 -0.49065 +3.280764 0.664436 -0.499247 +3.2852 0.664436 -0.508758 +3.287915 0.664436 -0.518894 +3.287915 0.660861 -0.519525 +3.2852 0.657394 -0.509999 +3.280764 0.654141 -0.501062 +3.274745 0.651201 -0.492984 +3.267324 0.648663 -0.486011 +3.267324 0.634792 -0.494019 +3.274745 0.639562 -0.499704 +3.280764 0.645087 -0.506289 +3.2852 0.651201 -0.513575 +3.287915 0.657716 -0.52134 +3.287915 0.655383 -0.524121 +3.2852 0.646604 -0.519053 +3.280764 0.638367 -0.514298 +3.274745 0.630923 -0.509999 +3.267324 0.624496 -0.506289 +3.267324 0.619018 -0.52134 +3.274745 0.626326 -0.522629 +3.280764 0.634792 -0.524121 +3.2852 0.644158 -0.525773 +3.287915 0.654141 -0.527533 +3.287915 0.654141 -0.531164 +3.2852 0.644158 -0.532924 +3.280764 0.634792 -0.534576 +3.274745 0.626326 -0.536069 +3.267324 0.619018 -0.537357 +3.267324 0.624496 -0.552408 +3.274745 0.630923 -0.548698 +3.280764 0.638367 -0.5444 +3.2852 0.646604 -0.539644 +3.287915 0.655383 -0.534576 +3.287915 0.657716 -0.537357 +3.2852 0.651201 -0.545122 +3.280764 0.645087 -0.552408 +3.274745 0.639562 -0.558993 +3.267324 0.634792 -0.564678 +3.267324 0.648663 -0.572686 +3.274745 0.651201 -0.565713 +3.280764 0.654141 -0.557635 +3.2852 0.657394 -0.548698 +3.287915 0.660861 -0.539173 +3.2852 0.664436 -0.54994 +3.280764 0.664436 -0.559451 +3.274745 0.664436 -0.568047 +3.267324 0.664436 -0.575468 +numsurf 90 +SURF 0x10 +mat 6 +refs 4 +90 0.249010458589 0.473243147135 +2 0.249016284943 0.46640124917 +3 0.252238690853 0.467495530844 +89 0.252233803272 0.473236531019 +SURF 0x10 +mat 6 +refs 4 +89 0.258606523275 0.938912570477 +3 0.2596360147 0.933177471161 +4 0.263133406639 0.934483349323 +88 0.262332767248 0.938944458961 +SURF 0x10 +mat 6 +refs 4 +88 0.262332767248 0.938944458961 +4 0.263133406639 0.934483349323 +5 0.267003417015 0.935920596123 +87 0.266455620527 0.938972175121 +SURF 0x10 +mat 6 +refs 4 +87 0.266455620527 0.938972175121 +5 0.267003417015 0.935920596123 +6 0.271128177643 0.937445580959 +1 0.270850032568 0.938994944096 +SURF 0x10 +mat 6 +refs 3 +6 0.271128177643 0.937445580959 +0 0.275382518768 0.939011931419 +1 0.270850032568 0.938994944096 +SURF 0x10 +mat 6 +refs 3 +7 0.2719193995 0.936084747314 +0 0.275382518768 0.939011931419 +6 0.271128177643 0.937445580959 +SURF 0x10 +mat 6 +refs 4 +5 0.267003417015 0.935920596123 +8 0.268561780453 0.933240354061 +7 0.2719193995 0.936084747314 +6 0.271128177643 0.937445580959 +SURF 0x10 +mat 6 +refs 4 +4 0.263133406639 0.934483349323 +9 0.265411823988 0.93056511879 +8 0.268561780453 0.933240354061 +5 0.267003417015 0.935920596123 +SURF 0x10 +mat 6 +refs 4 +3 0.2596360147 0.933177471161 +10 0.26256492734 0.928140282631 +9 0.265411823988 0.93056511879 +4 0.263133406639 0.934483349323 +SURF 0x10 +mat 6 +refs 4 +2 0.256617158651 0.932042598724 +11 0.260107755661 0.92603957653 +10 0.26256492734 0.928140282631 +3 0.2596360147 0.933177471161 +SURF 0x10 +mat 6 +refs 4 +11 0.260107755661 0.92603957653 +12 0.265441179276 0.92159229517 +13 0.267040014267 0.924408614635 +10 0.26256492734 0.928140282631 +SURF 0x10 +mat 6 +refs 4 +10 0.26256492734 0.928140282631 +13 0.267040014267 0.924408614635 +14 0.26889282465 0.927662372589 +9 0.265411823988 0.93056511879 +SURF 0x10 +mat 6 +refs 4 +9 0.265411823988 0.93056511879 +14 0.26889282465 0.927662372589 +15 0.270943015814 0.931254804134 +8 0.268561780453 0.933240354061 +SURF 0x10 +mat 6 +refs 4 +8 0.268561780453 0.933240354061 +15 0.270943015814 0.931254804134 +16 0.273128330708 0.935076653957 +7 0.2719193995 0.936084747314 +SURF 0x10 +mat 6 +refs 3 +16 0.273128330708 0.935076653957 +0 0.275382518768 0.939011931419 +7 0.2719193995 0.936084747314 +SURF 0x10 +mat 6 +refs 3 +17 0.274609267712 0.934542894363 +0 0.275382518768 0.939011931419 +16 0.273128330708 0.935076653957 +SURF 0x10 +mat 6 +refs 4 +15 0.270943015814 0.931254804134 +18 0.273859649897 0.930203318596 +17 0.274609267712 0.934542894363 +16 0.273128330708 0.935076653957 +SURF 0x10 +mat 6 +refs 4 +14 0.26889282465 0.927662372589 +19 0.273156762123 0.92612528801 +18 0.273859649897 0.930203318596 +15 0.270943015814 0.931254804134 +SURF 0x10 +mat 6 +refs 4 +13 0.267040014267 0.924408614635 +20 0.272521674633 0.922432541847 +19 0.273156762123 0.92612528801 +14 0.26889282465 0.927662372589 +SURF 0x10 +mat 6 +refs 4 +12 0.265441179276 0.92159229517 +21 0.271973848343 0.919237375259 +20 0.272521674633 0.922432541847 +13 0.267040014267 0.924408614635 +SURF 0x10 +mat 6 +refs 4 +21 0.271973848343 0.919237375259 +22 0.278918147087 0.919258654118 +23 0.278348624706 0.922450423241 +20 0.272521674633 0.922432541847 +SURF 0x10 +mat 6 +refs 4 +20 0.272521674633 0.922432541847 +23 0.278348624706 0.922450423241 +24 0.277689248323 0.926139175892 +19 0.273156762123 0.92612528801 +SURF 0x10 +mat 6 +refs 4 +19 0.273156762123 0.92612528801 +24 0.277689248323 0.926139175892 +25 0.276960104704 0.930212795734 +18 0.273859649897 0.930203318596 +SURF 0x10 +mat 6 +refs 4 +18 0.273859649897 0.930203318596 +25 0.276960104704 0.930212795734 +26 0.276183336973 0.934547662735 +17 0.274609267712 0.934542894363 +SURF 0x10 +mat 6 +refs 3 +26 0.276183336973 0.934547662735 +0 0.275382518768 0.939011931419 +17 0.274609267712 0.934542894363 +SURF 0x10 +mat 6 +refs 3 +27 0.277660936117 0.935090601444 +0 0.275382518768 0.939011931419 +26 0.276183336973 0.934547662735 +SURF 0x10 +mat 6 +refs 4 +25 0.276960104704 0.930212795734 +28 0.279870450497 0.931282222271 +27 0.277660936117 0.935090601444 +26 0.276183336973 0.934547662735 +SURF 0x10 +mat 6 +refs 4 +24 0.277689248323 0.926139175892 +29 0.281943738461 0.92770242691 +28 0.279870450497 0.931282222271 +25 0.276960104704 0.930212795734 +SURF 0x10 +mat 6 +refs 4 +23 0.278348624706 0.922450423241 +30 0.283818006516 0.924460113049 +29 0.281943738461 0.92770242691 +24 0.277689248323 0.926139175892 +SURF 0x10 +mat 6 +refs 4 +22 0.278918147087 0.919258654118 +31 0.285436272621 0.921653687954 +30 0.283818006516 0.924460113049 +23 0.278348624706 0.922450423241 +SURF 0x10 +mat 6 +refs 4 +31 0.285436272621 0.921653687954 +32 0.29074215889 0.926133573055 +33 0.288270235062 0.928219139576 +30 0.283818006516 0.924460113049 +SURF 0x10 +mat 6 +refs 4 +30 0.283818006516 0.924460113049 +33 0.288270235062 0.928219139576 +34 0.285406917334 0.930626451969 +29 0.281943738461 0.92770242691 +SURF 0x10 +mat 6 +refs 4 +29 0.281943738461 0.92770242691 +34 0.285406917334 0.930626451969 +35 0.282239288092 0.933282375336 +28 0.279870450497 0.931282222271 +SURF 0x10 +mat 6 +refs 4 +28 0.279870450497 0.931282222271 +35 0.282239288092 0.933282375336 +36 0.278863757849 0.936106085777 +27 0.277660936117 0.935090601444 +SURF 0x10 +mat 6 +refs 3 +36 0.278863757849 0.936106085777 +0 0.275382518768 0.939011931419 +27 0.277660936117 0.935090601444 +SURF 0x10 +mat 6 +refs 3 +37 0.279646545649 0.937471747398 +0 0.275382518768 0.939011931419 +36 0.278863757849 0.936106085777 +SURF 0x10 +mat 6 +refs 4 +35 0.282239288092 0.933282375336 +38 0.283781409264 0.935972094536 +37 0.279646545649 0.937471747398 +36 0.278863757849 0.936106085777 +SURF 0x10 +mat 6 +refs 4 +34 0.285406917334 0.930626451969 +39 0.287661284208 0.934558570385 +38 0.283781409264 0.935972094536 +35 0.282239288092 0.933282375336 +SURF 0x10 +mat 6 +refs 4 +33 0.288270235062 0.928219139576 +40 0.291168242693 0.933274209499 +39 0.287661284208 0.934558570385 +34 0.285406917334 0.930626451969 +SURF 0x10 +mat 6 +refs 4 +32 0.29074215889 0.926133573055 +41 0.294195890427 0.932157993317 +40 0.291168242693 0.933274209499 +33 0.288270235062 0.928219139576 +SURF 0x10 +mat 6 +refs 4 +41 0.0196863636374 0.562537074089 +42 0.0196870155632 0.569378912449 +43 0.016463663429 0.569369912148 +40 0.0164631213993 0.563628911972 +SURF 0x10 +mat 6 +refs 4 +40 0.291168242693 0.933274209499 +43 0.292162448168 0.939015567303 +44 0.288434565067 0.939024507999 +39 0.287661284208 0.934558570385 +SURF 0x10 +mat 6 +refs 4 +39 0.287661284208 0.934558570385 +44 0.288434565067 0.939024507999 +45 0.284310430288 0.939027011395 +38 0.283781409264 0.935972094536 +SURF 0x10 +mat 6 +refs 4 +38 0.283781409264 0.935972094536 +45 0.284310430288 0.939027011395 +46 0.279915124178 0.93902271986 +37 0.279646545649 0.937471747398 +SURF 0x10 +mat 6 +refs 3 +46 0.279915124178 0.93902271986 +0 0.275382518768 0.939011931419 +37 0.279646545649 0.937471747398 +SURF 0x10 +mat 6 +refs 3 +47 0.27963706851 0.940572082996 +0 0.275382518768 0.939011931419 +46 0.279915124178 0.93902271986 +SURF 0x10 +mat 6 +refs 4 +45 0.284310430288 0.939027011395 +48 0.283762693405 0.942078590393 +47 0.27963706851 0.940572082996 +46 0.279915124178 0.93902271986 +SURF 0x10 +mat 6 +refs 4 +44 0.288434565067 0.939024507999 +49 0.287633866072 0.943485677242 +48 0.283762693405 0.942078590393 +45 0.284310430288 0.939027011395 +SURF 0x10 +mat 6 +refs 4 +43 0.292162448168 0.939015567303 +50 0.291133075953 0.944750666618 +49 0.287633866072 0.943485677242 +44 0.288434565067 0.939024507999 +SURF 0x10 +mat 6 +refs 4 +42 0.0196870155632 0.569378912449 +51 0.0196831580251 0.576214551926 +50 0.0164604280144 0.575105667114 +43 0.016463663429 0.569369912148 +SURF 0x10 +mat 6 +refs 4 +51 0.294154018164 0.945834994316 +52 0.290663510561 0.951838076115 +53 0.288204133511 0.949787795544 +50 0.291133075953 0.944750666618 +SURF 0x10 +mat 6 +refs 4 +50 0.291133075953 0.944750666618 +53 0.288204133511 0.949787795544 +54 0.285355478525 0.947403967381 +49 0.287633866072 0.943485677242 +SURF 0x10 +mat 6 +refs 4 +49 0.287633866072 0.943485677242 +54 0.285355478525 0.947403967381 +55 0.282204121351 0.944758832455 +48 0.283762693405 0.942078590393 +SURF 0x10 +mat 6 +refs 4 +48 0.283762693405 0.942078590393 +55 0.282204121351 0.944758832455 +56 0.278845876455 0.941932857037 +47 0.27963706851 0.940572082996 +SURF 0x10 +mat 6 +refs 3 +56 0.278845876455 0.941932857037 +0 0.275382518768 0.939011931419 +47 0.27963706851 0.940572082996 +SURF 0x10 +mat 6 +refs 3 +57 0.277636915445 0.942940950394 +0 0.275382518768 0.939011931419 +56 0.278845876455 0.941932857037 +SURF 0x10 +mat 6 +refs 4 +55 0.282204121351 0.944758832455 +58 0.279822975397 0.946744382381 +57 0.277636915445 0.942940950394 +56 0.278845876455 0.941932857037 +SURF 0x10 +mat 6 +refs 4 +54 0.285355478525 0.947403967381 +59 0.281874507666 0.950306653976 +58 0.279822975397 0.946744382381 +55 0.282204121351 0.944758832455 +SURF 0x10 +mat 6 +refs 4 +53 0.288204133511 0.949787795544 +60 0.283729046583 0.953519523144 +59 0.281874507666 0.950306653976 +54 0.285355478525 0.947403967381 +SURF 0x10 +mat 6 +refs 4 +52 0.290663510561 0.951838076115 +61 0.285330086946 0.956285297871 +60 0.283729046583 0.953519523144 +53 0.288204133511 0.949787795544 +SURF 0x10 +mat 6 +refs 4 +61 0.285330086946 0.956285297871 +62 0.278797328472 0.95864033699 +63 0.27824729681 0.955495536327 +60 0.283729046583 0.953519523144 +SURF 0x10 +mat 6 +refs 4 +60 0.283729046583 0.953519523144 +63 0.27824729681 0.955495536327 +64 0.277610570192 0.951843738556 +59 0.281874507666 0.950306653976 +SURF 0x10 +mat 6 +refs 4 +59 0.281874507666 0.950306653976 +64 0.277610570192 0.951843738556 +65 0.276906251907 0.947795808315 +58 0.279822975397 0.946744382381 +SURF 0x10 +mat 6 +refs 4 +58 0.279822975397 0.946744382381 +65 0.276906251907 0.947795808315 +66 0.276155978441 0.943474829197 +57 0.277636915445 0.942940950394 +SURF 0x10 +mat 6 +refs 3 +66 0.276155978441 0.943474829197 +0 0.275382518768 0.939011931419 +57 0.277636915445 0.942940950394 +SURF 0x10 +mat 6 +refs 3 +67 0.27458190918 0.943470001221 +0 0.275382518768 0.939011931419 +66 0.276155978441 0.943474829197 +SURF 0x10 +mat 6 +refs 4 +65 0.276906251907 0.947795808315 +68 0.273805826902 0.947786331177 +67 0.27458190918 0.943470001221 +66 0.276155978441 0.943474829197 +SURF 0x10 +mat 6 +refs 4 +64 0.277610570192 0.951843738556 +69 0.273077875376 0.951829850674 +68 0.273805826902 0.947786331177 +65 0.276906251907 0.947795808315 +SURF 0x10 +mat 6 +refs 4 +63 0.27824729681 0.955495536327 +70 0.272420406342 0.955477714539 +69 0.273077875376 0.951829850674 +64 0.277610570192 0.951843738556 +SURF 0x10 +mat 6 +refs 4 +62 0.0164817366749 0.597907006741 +71 0.0164604391903 0.590962827206 +70 0.0197544749826 0.591511368752 +63 0.019772335887 0.59733825922 +SURF 0x10 +mat 6 +refs 4 +71 0.271853119135 0.958618998528 +72 0.265334904194 0.956223964691 +73 0.266951054335 0.953467965126 +70 0.272420406342 0.955477714539 +SURF 0x10 +mat 6 +refs 4 +70 0.272420406342 0.955477714539 +73 0.266951054335 0.953467965126 +74 0.26882353425 0.950266599655 +69 0.273077875376 0.951829850674 +SURF 0x10 +mat 6 +refs 4 +69 0.273077875376 0.951829850674 +74 0.26882353425 0.950266599655 +75 0.270895600319 0.946716964245 +68 0.273805826902 0.947786331177 +SURF 0x10 +mat 6 +refs 4 +68 0.273805826902 0.947786331177 +75 0.270895600319 0.946716964245 +76 0.273104310036 0.942927002907 +67 0.27458190918 0.943470001221 +SURF 0x10 +mat 6 +refs 3 +76 0.273104310036 0.942927002907 +0 0.275382518768 0.939011931419 +67 0.27458190918 0.943470001221 +SURF 0x10 +mat 6 +refs 3 +77 0.271901547909 0.941911518574 +0 0.275382518768 0.939011931419 +76 0.273104310036 0.942927002907 +SURF 0x10 +mat 6 +refs 4 +75 0.270895600319 0.946716964245 +78 0.268526613712 0.94471681118 +77 0.271901547909 0.941911518574 +76 0.273104310036 0.942927002907 +SURF 0x10 +mat 6 +refs 4 +74 0.26882353425 0.950266599655 +79 0.26536038518 0.947342574596 +78 0.268526613712 0.94471681118 +75 0.270895600319 0.946716964245 +SURF 0x10 +mat 6 +refs 4 +73 0.266951054335 0.953467965126 +80 0.262498855591 0.949708938599 +79 0.26536038518 0.947342574596 +74 0.26882353425 0.950266599655 +SURF 0x10 +mat 6 +refs 4 +72 0.265334904194 0.956223964691 +81 0.260028988123 0.951744139194 +80 0.262498855591 0.949708938599 +73 0.266951054335 0.953467965126 +SURF 0x10 +mat 6 +refs 4 +81 0.260028988123 0.951744139194 +82 0.256575256586 0.945719718933 +83 0.259600818157 0.944653868675 +80 0.262498855591 0.949708938599 +SURF 0x10 +mat 6 +refs 4 +80 0.262498855591 0.949708938599 +83 0.259600818157 0.944653868675 +84 0.263106077909 0.943410456181 +79 0.26536038518 0.947342574596 +SURF 0x10 +mat 6 +refs 4 +79 0.26536038518 0.947342574596 +84 0.263106077909 0.943410456181 +85 0.266984641552 0.94202709198 +78 0.268526613712 0.94471681118 +SURF 0x10 +mat 6 +refs 4 +78 0.268526613712 0.94471681118 +85 0.266984641552 0.94202709198 +86 0.271118611097 0.940545916557 +77 0.271901547909 0.941911518574 +SURF 0x10 +mat 6 +refs 3 +86 0.271118611097 0.940545916557 +0 0.275382518768 0.939011931419 +77 0.271901547909 0.941911518574 +SURF 0x10 +mat 6 +refs 3 +1 0.270850032568 0.938994944096 +0 0.275382518768 0.939011931419 +86 0.271118611097 0.940545916557 +SURF 0x10 +mat 6 +refs 4 +85 0.266984641552 0.94202709198 +87 0.266455620527 0.938972175121 +1 0.270850032568 0.938994944096 +86 0.271118611097 0.940545916557 +SURF 0x10 +mat 6 +refs 4 +84 0.263106077909 0.943410456181 +88 0.262332767248 0.938944458961 +87 0.266455620527 0.938972175121 +85 0.266984641552 0.94202709198 +SURF 0x10 +mat 6 +refs 4 +83 0.259600818157 0.944653868675 +89 0.258606523275 0.938912570477 +88 0.262332767248 0.938944458961 +84 0.263106077909 0.943410456181 +SURF 0x10 +mat 6 +refs 4 +82 0.249009117484 0.480078816414 +90 0.249010458589 0.473243147135 +89 0.252233803272 0.473236531019 +83 0.252232670784 0.478972345591 +kids 0 +OBJECT poly +name "Cylinder.016" +data 12 +Cylinder.021 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 91 +3.28883 0.664436 0.529386 +3.287915 0.664436 0.53984 +3.267324 0.68021 0.572723 +3.274745 0.677672 0.56575 +3.280764 0.674732 0.557672 +3.2852 0.671479 0.548735 +3.287915 0.668012 0.53921 +3.287915 0.671156 0.537394 +3.2852 0.677672 0.545159 +3.280764 0.683785 0.552445 +3.274745 0.689311 0.559031 +3.267324 0.694081 0.564715 +3.267324 0.704376 0.552445 +3.274745 0.69795 0.548735 +3.280764 0.690505 0.544437 +3.2852 0.682269 0.539681 +3.287915 0.67349 0.534613 +3.287915 0.674732 0.531201 +3.2852 0.684714 0.532961 +3.280764 0.694081 0.534613 +3.274745 0.702547 0.536106 +3.267324 0.709854 0.537394 +3.267324 0.709854 0.521378 +3.274745 0.702547 0.522666 +3.280764 0.694081 0.524159 +3.2852 0.684714 0.52581 +3.287915 0.674732 0.52757 +3.287915 0.67349 0.524159 +3.2852 0.682269 0.51909 +3.280764 0.690505 0.514335 +3.274745 0.69795 0.510037 +3.267324 0.704376 0.506326 +3.267324 0.694081 0.494057 +3.274745 0.689311 0.499741 +3.280764 0.683785 0.506326 +3.2852 0.677672 0.513612 +3.287915 0.671156 0.521377 +3.287915 0.668012 0.519562 +3.2852 0.671479 0.510037 +3.280764 0.674732 0.501099 +3.274745 0.677672 0.493021 +3.267324 0.68021 0.486048 +3.267324 0.664436 0.483267 +3.274745 0.664436 0.490688 +3.280764 0.664436 0.499284 +3.2852 0.664436 0.508795 +3.287915 0.664436 0.518932 +3.287915 0.660861 0.519562 +3.2852 0.657394 0.510037 +3.280764 0.654141 0.501099 +3.274745 0.651201 0.493021 +3.267324 0.648663 0.486048 +3.267324 0.634792 0.494057 +3.274745 0.639561 0.499741 +3.280764 0.645087 0.506326 +3.2852 0.651201 0.513612 +3.287915 0.657716 0.521377 +3.287915 0.655383 0.524159 +3.2852 0.646604 0.51909 +3.280764 0.638367 0.514335 +3.274745 0.630923 0.510037 +3.267324 0.624496 0.506326 +3.267324 0.619018 0.521377 +3.274745 0.626326 0.522666 +3.280764 0.634792 0.524159 +3.2852 0.644158 0.52581 +3.287915 0.654141 0.52757 +3.287915 0.654141 0.531201 +3.2852 0.644158 0.532961 +3.280764 0.634792 0.534613 +3.274745 0.626326 0.536106 +3.267324 0.619018 0.537394 +3.267324 0.624496 0.552445 +3.274745 0.630923 0.548735 +3.280764 0.638367 0.544437 +3.2852 0.646604 0.539681 +3.287915 0.655383 0.534613 +3.287915 0.657716 0.537394 +3.2852 0.651201 0.545159 +3.280764 0.645087 0.552445 +3.274745 0.639561 0.55903 +3.267324 0.634792 0.564715 +3.267324 0.648663 0.572723 +3.274745 0.651201 0.56575 +3.280764 0.654141 0.557672 +3.2852 0.657394 0.548735 +3.287915 0.660861 0.53921 +3.2852 0.664436 0.549977 +3.280764 0.664436 0.559488 +3.274745 0.664436 0.568084 +3.267324 0.664436 0.575505 +numsurf 90 +SURF 0x10 +mat 6 +refs 4 +90 0.0196870155632 0.551799356937 +89 0.016463663429 0.551790297031 +3 0.0164631213993 0.546049296856 +2 0.019686371088 0.544957458973 +SURF 0x10 +mat 6 +refs 4 +89 0.900010824203 0.944544553757 +88 0.896282911301 0.944553554058 +4 0.895509541035 0.940087616444 +3 0.899016559124 0.938803255558 +SURF 0x10 +mat 6 +refs 4 +88 0.896282911301 0.944553554058 +87 0.892158746719 0.944555997849 +5 0.891629636288 0.94150108099 +4 0.895509541035 0.940087616444 +SURF 0x10 +mat 6 +refs 4 +87 0.892158746719 0.944555997849 +1 0.887763500214 0.944551765919 +6 0.887494802475 0.943000733852 +5 0.891629636288 0.94150108099 +SURF 0x10 +mat 6 +refs 3 +1 0.887763500214 0.944551765919 +0 0.883230865002 0.944540977478 +6 0.887494802475 0.943000733852 +SURF 0x10 +mat 6 +refs 3 +6 0.887494802475 0.943000733852 +0 0.883230865002 0.944540977478 +7 0.886712014675 0.941635072231 +SURF 0x10 +mat 6 +refs 4 +5 0.891629636288 0.94150108099 +6 0.887494802475 0.943000733852 +7 0.886712014675 0.941635072231 +8 0.890087723732 0.938811421394 +SURF 0x10 +mat 6 +refs 4 +4 0.895509541035 0.940087616444 +5 0.891629636288 0.94150108099 +8 0.890087723732 0.938811421394 +9 0.893255472183 0.936155498028 +SURF 0x10 +mat 6 +refs 4 +3 0.899016559124 0.938803255558 +4 0.895509541035 0.940087616444 +9 0.893255472183 0.936155498028 +10 0.8961186409 0.933748185635 +SURF 0x10 +mat 6 +refs 4 +2 0.902044296265 0.937686979771 +3 0.899016559124 0.938803255558 +10 0.8961186409 0.933748185635 +11 0.898590564728 0.931662619114 +SURF 0x10 +mat 6 +refs 4 +11 0.898590564728 0.931662619114 +10 0.8961186409 0.933748185635 +13 0.891666412354 0.929989099503 +12 0.893284738064 0.927182734013 +SURF 0x10 +mat 6 +refs 4 +10 0.8961186409 0.933748185635 +9 0.893255472183 0.936155498028 +14 0.889792144299 0.933231472969 +13 0.891666412354 0.929989099503 +SURF 0x10 +mat 6 +refs 4 +9 0.893255472183 0.936155498028 +8 0.890087723732 0.938811421394 +15 0.887718677521 0.936811208725 +14 0.889792144299 0.933231472969 +SURF 0x10 +mat 6 +refs 4 +8 0.890087723732 0.938811421394 +7 0.886712014675 0.941635072231 +16 0.885509252548 0.940619647503 +15 0.887718677521 0.936811208725 +SURF 0x10 +mat 6 +refs 3 +7 0.886712014675 0.941635072231 +0 0.883230865002 0.944540977478 +16 0.885509252548 0.940619647503 +SURF 0x10 +mat 6 +refs 3 +16 0.885509252548 0.940619647503 +0 0.883230865002 0.944540977478 +17 0.884031653404 0.940076708794 +SURF 0x10 +mat 6 +refs 4 +15 0.887718677521 0.936811208725 +16 0.885509252548 0.940619647503 +17 0.884031653404 0.940076708794 +18 0.884808540344 0.935741901398 +SURF 0x10 +mat 6 +refs 4 +14 0.889792144299 0.933231472969 +15 0.887718677521 0.936811208725 +18 0.884808540344 0.935741901398 +19 0.885537743568 0.931668221951 +SURF 0x10 +mat 6 +refs 4 +13 0.891666412354 0.929989099503 +14 0.889792144299 0.933231472969 +19 0.885537743568 0.931668221951 +20 0.88619697094 0.927979469299 +SURF 0x10 +mat 6 +refs 4 +12 0.893284738064 0.927182734013 +13 0.891666412354 0.929989099503 +20 0.88619697094 0.927979469299 +21 0.886766374111 0.924787700176 +SURF 0x10 +mat 6 +refs 4 +21 0.886766374111 0.924787700176 +20 0.88619697094 0.927979469299 +23 0.880370080471 0.927961587906 +22 0.879822313786 0.924766361713 +SURF 0x10 +mat 6 +refs 4 +20 0.88619697094 0.927979469299 +19 0.885537743568 0.931668221951 +24 0.881005167961 0.931654274464 +23 0.880370080471 0.927961587906 +SURF 0x10 +mat 6 +refs 4 +19 0.885537743568 0.931668221951 +18 0.884808540344 0.935741901398 +25 0.881708145142 0.935732364655 +24 0.881005167961 0.931654274464 +SURF 0x10 +mat 6 +refs 4 +18 0.884808540344 0.935741901398 +17 0.884031653404 0.940076708794 +26 0.882457494736 0.940071880817 +25 0.881708145142 0.935732364655 +SURF 0x10 +mat 6 +refs 3 +17 0.884031653404 0.940076708794 +0 0.883230865002 0.944540977478 +26 0.882457494736 0.940071880817 +SURF 0x10 +mat 6 +refs 3 +26 0.882457494736 0.940071880817 +0 0.883230865002 0.944540977478 +27 0.880976676941 0.940605700016 +SURF 0x10 +mat 6 +refs 4 +25 0.881708145142 0.935732364655 +26 0.882457494736 0.940071880817 +27 0.880976676941 0.940605700016 +28 0.878791332245 0.936783850193 +SURF 0x10 +mat 6 +refs 4 +24 0.881005167961 0.931654274464 +25 0.881708145142 0.935732364655 +28 0.878791332245 0.936783850193 +29 0.876741170883 0.933191418648 +SURF 0x10 +mat 6 +refs 4 +23 0.880370080471 0.927961587906 +24 0.881005167961 0.931654274464 +29 0.876741170883 0.933191418648 +30 0.87488847971 0.929937660694 +SURF 0x10 +mat 6 +refs 4 +22 0.879822313786 0.924766361713 +23 0.880370080471 0.927961587906 +30 0.87488847971 0.929937660694 +31 0.8732894063 0.927121341228 +SURF 0x10 +mat 6 +refs 4 +31 0.8732894063 0.927121341228 +30 0.87488847971 0.929937660694 +33 0.870413243771 0.93366932869 +32 0.867956161499 0.931568562984 +SURF 0x10 +mat 6 +refs 4 +30 0.87488847971 0.929937660694 +29 0.876741170883 0.933191418648 +34 0.873260080814 0.936094105244 +33 0.870413243771 0.93366932869 +SURF 0x10 +mat 6 +refs 4 +29 0.876741170883 0.933191418648 +28 0.878791332245 0.936783850193 +35 0.876410186291 0.93876940012 +34 0.873260080814 0.936094105244 +SURF 0x10 +mat 6 +refs 4 +28 0.878791332245 0.936783850193 +27 0.880976676941 0.940605700016 +36 0.879767775536 0.941613793373 +35 0.876410186291 0.93876940012 +SURF 0x10 +mat 6 +refs 3 +27 0.880976676941 0.940605700016 +0 0.883230865002 0.944540977478 +36 0.879767775536 0.941613793373 +SURF 0x10 +mat 6 +refs 3 +36 0.879767775536 0.941613793373 +0 0.883230865002 0.944540977478 +37 0.878976464272 0.942974567413 +SURF 0x10 +mat 6 +refs 4 +35 0.876410186291 0.93876940012 +36 0.879767775536 0.941613793373 +37 0.878976464272 0.942974567413 +38 0.874851703644 0.941449642181 +SURF 0x10 +mat 6 +refs 4 +34 0.873260080814 0.936094105244 +35 0.876410186291 0.93876940012 +38 0.874851703644 0.941449642181 +39 0.870981812477 0.940012395382 +SURF 0x10 +mat 6 +refs 4 +33 0.870413243771 0.93366932869 +34 0.873260080814 0.936094105244 +39 0.870981812477 0.940012395382 +40 0.867484331131 0.93870651722 +SURF 0x10 +mat 6 +refs 4 +32 0.867956161499 0.931568562984 +33 0.870413243771 0.93366932869 +40 0.867484331131 0.93870651722 +41 0.864465594292 0.937571644783 +SURF 0x10 +mat 6 +refs 4 +41 0.0164646059275 0.509798288345 +40 0.0196870137006 0.510892570019 +43 0.0196821130812 0.516633570194 +42 0.0164587665349 0.51664018631 +SURF 0x10 +mat 6 +refs 4 +40 0.867484331131 0.93870651722 +39 0.870981812477 0.940012395382 +44 0.870181024075 0.94447350502 +43 0.866454958916 0.944441616535 +SURF 0x10 +mat 6 +refs 4 +39 0.870981812477 0.940012395382 +38 0.874851703644 0.941449642181 +45 0.874303936958 0.94450122118 +44 0.870181024075 0.94447350502 +SURF 0x10 +mat 6 +refs 4 +38 0.874851703644 0.941449642181 +37 0.878976464272 0.942974567413 +46 0.878698408604 0.944523990154 +45 0.874303936958 0.94450122118 +SURF 0x10 +mat 6 +refs 3 +37 0.878976464272 0.942974567413 +0 0.883230865002 0.944540977478 +46 0.878698408604 0.944523990154 +SURF 0x10 +mat 6 +refs 3 +46 0.878698408604 0.944523990154 +0 0.883230865002 0.944540977478 +47 0.878966987133 0.946074962616 +SURF 0x10 +mat 6 +refs 4 +45 0.874303936958 0.94450122118 +46 0.878698408604 0.944523990154 +47 0.878966987133 0.946074962616 +48 0.874832987785 0.947556138039 +SURF 0x10 +mat 6 +refs 4 +44 0.870181024075 0.94447350502 +45 0.874303936958 0.94450122118 +48 0.874832987785 0.947556138039 +49 0.870954453945 0.948939442635 +SURF 0x10 +mat 6 +refs 4 +43 0.866454958916 0.944441616535 +44 0.870181024075 0.94447350502 +49 0.870954453945 0.948939442635 +50 0.867449164391 0.950182914734 +SURF 0x10 +mat 6 +refs 4 +42 0.0164587665349 0.51664018631 +43 0.0196821130812 0.516633570194 +50 0.0196809936315 0.522369384766 +51 0.0164574291557 0.523475825787 +SURF 0x10 +mat 6 +refs 4 +51 0.864423692226 0.951248764992 +50 0.867449164391 0.950182914734 +53 0.87034714222 0.955237984657 +52 0.867877364159 0.957273125648 +SURF 0x10 +mat 6 +refs 4 +50 0.867449164391 0.950182914734 +49 0.870954453945 0.948939442635 +54 0.873208701611 0.95287156105 +53 0.87034714222 0.955237984657 +SURF 0x10 +mat 6 +refs 4 +49 0.870954453945 0.948939442635 +48 0.874832987785 0.947556138039 +55 0.87637501955 0.950245857239 +54 0.873208701611 0.95287156105 +SURF 0x10 +mat 6 +refs 4 +48 0.874832987785 0.947556138039 +47 0.878966987133 0.946074962616 +56 0.879749834538 0.947440564632 +55 0.87637501955 0.950245857239 +SURF 0x10 +mat 6 +refs 3 +47 0.878966987133 0.946074962616 +0 0.883230865002 0.944540977478 +56 0.879749834538 0.947440564632 +SURF 0x10 +mat 6 +refs 3 +56 0.879749834538 0.947440564632 +0 0.883230865002 0.944540977478 +57 0.880952596664 0.94845610857 +SURF 0x10 +mat 6 +refs 4 +55 0.87637501955 0.950245857239 +56 0.879749834538 0.947440564632 +57 0.880952596664 0.94845610857 +58 0.878743946552 0.952246010303 +SURF 0x10 +mat 6 +refs 4 +54 0.873208701611 0.95287156105 +55 0.87637501955 0.950245857239 +58 0.878743946552 0.952246010303 +59 0.876671850681 0.955795645714 +SURF 0x10 +mat 6 +refs 4 +53 0.87034714222 0.955237984657 +54 0.873208701611 0.95287156105 +59 0.876671850681 0.955795645714 +60 0.874799311161 0.958997070789 +SURF 0x10 +mat 6 +refs 4 +52 0.867877364159 0.957273125648 +53 0.87034714222 0.955237984657 +60 0.874799311161 0.958997070789 +61 0.873183250427 0.96175301075 +SURF 0x10 +mat 6 +refs 4 +61 0.873183250427 0.96175301075 +60 0.874799311161 0.958997070789 +63 0.880268752575 0.961006700993 +62 0.879701495171 0.964148044586 +SURF 0x10 +mat 6 +refs 4 +60 0.874799311161 0.958997070789 +59 0.876671850681 0.955795645714 +64 0.880926311016 0.957358837128 +63 0.880268752575 0.961006700993 +SURF 0x10 +mat 6 +refs 4 +59 0.876671850681 0.955795645714 +58 0.878743946552 0.952246010303 +65 0.881654143333 0.953315317631 +64 0.880926311016 0.957358837128 +SURF 0x10 +mat 6 +refs 4 +58 0.878743946552 0.952246010303 +57 0.880952596664 0.94845610857 +66 0.882430195808 0.948998987675 +65 0.881654143333 0.953315317631 +SURF 0x10 +mat 6 +refs 3 +57 0.880952596664 0.94845610857 +0 0.883230865002 0.944540977478 +66 0.882430195808 0.948998987675 +SURF 0x10 +mat 6 +refs 3 +66 0.882430195808 0.948998987675 +0 0.883230865002 0.944540977478 +67 0.884004354477 0.949003815651 +SURF 0x10 +mat 6 +refs 4 +65 0.881654143333 0.953315317631 +66 0.882430195808 0.948998987675 +67 0.884004354477 0.949003815651 +68 0.884754657745 0.953324854374 +SURF 0x10 +mat 6 +refs 4 +64 0.880926311016 0.957358837128 +65 0.881654143333 0.953315317631 +68 0.884754657745 0.953324854374 +69 0.885458886623 0.957372784615 +SURF 0x10 +mat 6 +refs 4 +63 0.880268752575 0.961006700993 +64 0.880926311016 0.957358837128 +69 0.885458886623 0.957372784615 +70 0.886095643044 0.961024582386 +SURF 0x10 +mat 6 +refs 4 +62 0.0197510439903 0.587060809135 +63 0.0164604280144 0.586492061615 +70 0.0164783000946 0.580665111542 +71 0.0197723377496 0.580116569996 +SURF 0x10 +mat 6 +refs 4 +71 0.88664573431 0.964169323444 +70 0.886095643044 0.961024582386 +73 0.891577363014 0.959048509598 +72 0.893178462982 0.961814403534 +SURF 0x10 +mat 6 +refs 4 +70 0.886095643044 0.961024582386 +69 0.885458886623 0.957372784615 +74 0.889722824097 0.95583564043 +73 0.891577363014 0.959048509598 +SURF 0x10 +mat 6 +refs 4 +69 0.885458886623 0.957372784615 +68 0.884754657745 0.953324854374 +75 0.887671411037 0.952273368835 +74 0.889722824097 0.95583564043 +SURF 0x10 +mat 6 +refs 4 +68 0.884754657745 0.953324854374 +67 0.884004354477 0.949003815651 +76 0.885485231876 0.948469996452 +75 0.887671411037 0.952273368835 +SURF 0x10 +mat 6 +refs 3 +67 0.884004354477 0.949003815651 +0 0.883230865002 0.944540977478 +76 0.885485231876 0.948469996452 +SURF 0x10 +mat 6 +refs 3 +76 0.885485231876 0.948469996452 +0 0.883230865002 0.944540977478 +77 0.886694133282 0.947461903095 +SURF 0x10 +mat 6 +refs 4 +75 0.887671411037 0.952273368835 +76 0.885485231876 0.948469996452 +77 0.886694133282 0.947461903095 +78 0.890052556992 0.950287818909 +SURF 0x10 +mat 6 +refs 4 +74 0.889722824097 0.95583564043 +75 0.887671411037 0.952273368835 +78 0.890052556992 0.950287818909 +79 0.893203914165 0.952932953835 +SURF 0x10 +mat 6 +refs 4 +73 0.891577363014 0.959048509598 +74 0.889722824097 0.95583564043 +79 0.893203914165 0.952932953835 +80 0.896052539349 0.955316841602 +SURF 0x10 +mat 6 +refs 4 +72 0.893178462982 0.961814403534 +73 0.891577363014 0.959048509598 +80 0.896052539349 0.955316841602 +81 0.898511826992 0.957367122173 +SURF 0x10 +mat 6 +refs 4 +81 0.898511826992 0.957367122173 +80 0.896052539349 0.955316841602 +83 0.898981332779 0.950279712677 +82 0.902002394199 0.951364040375 +SURF 0x10 +mat 6 +refs 4 +80 0.896052539349 0.955316841602 +79 0.893203914165 0.952932953835 +84 0.895482182503 0.949014723301 +83 0.898981332779 0.950279712677 +SURF 0x10 +mat 6 +refs 4 +79 0.893203914165 0.952932953835 +78 0.890052556992 0.950287818909 +85 0.891610980034 0.947607576847 +84 0.895482182503 0.949014723301 +SURF 0x10 +mat 6 +refs 4 +78 0.890052556992 0.950287818909 +77 0.886694133282 0.947461903095 +86 0.887485325336 0.94610106945 +85 0.891610980034 0.947607576847 +SURF 0x10 +mat 6 +refs 3 +77 0.886694133282 0.947461903095 +0 0.883230865002 0.944540977478 +86 0.887485325336 0.94610106945 +SURF 0x10 +mat 6 +refs 3 +86 0.887485325336 0.94610106945 +0 0.883230865002 0.944540977478 +1 0.887763500214 0.944551765919 +SURF 0x10 +mat 6 +refs 4 +85 0.891610980034 0.947607576847 +86 0.887485325336 0.94610106945 +1 0.887763500214 0.944551765919 +87 0.892158746719 0.944555997849 +SURF 0x10 +mat 6 +refs 4 +84 0.895482182503 0.949014723301 +85 0.891610980034 0.947607576847 +87 0.892158746719 0.944555997849 +88 0.896282911301 0.944553554058 +SURF 0x10 +mat 6 +refs 4 +83 0.898981332779 0.950279712677 +84 0.895482182503 0.949014723301 +88 0.896282911301 0.944553554058 +89 0.900010824203 0.944544553757 +SURF 0x10 +mat 6 +refs 4 +82 0.0196831580251 0.558634996414 +83 0.0164604280144 0.557526111603 +89 0.016463663429 0.551790297031 +90 0.0196870155632 0.551799356937 +kids 0 +OBJECT poly +name "Cylinder.017" +data 12 +Cylinder.022 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 91 +3.28883 0.614049 0.640238 +3.287915 0.614049 0.650692 +3.267324 0.629823 0.683575 +3.274745 0.627285 0.676602 +3.280764 0.624345 0.668524 +3.2852 0.621092 0.659587 +3.287915 0.617625 0.650061 +3.287915 0.620769 0.648246 +3.2852 0.627285 0.656011 +3.280764 0.633398 0.663297 +3.274745 0.638924 0.669882 +3.267324 0.643694 0.675567 +3.267324 0.653989 0.663297 +3.274745 0.647563 0.659587 +3.280764 0.640118 0.655288 +3.2852 0.631881 0.650533 +3.287915 0.623103 0.645465 +3.287915 0.624345 0.642053 +3.2852 0.634327 0.643813 +3.280764 0.643694 0.645465 +3.274745 0.65216 0.646957 +3.267324 0.659467 0.648246 +3.267324 0.659467 0.632229 +3.274745 0.65216 0.633518 +3.280764 0.643694 0.63501 +3.2852 0.634327 0.636662 +3.287915 0.624345 0.638422 +3.287915 0.623103 0.63501 +3.2852 0.631881 0.629942 +3.280764 0.640118 0.625187 +3.274745 0.647563 0.620888 +3.267324 0.653989 0.617178 +3.267324 0.643694 0.604908 +3.274745 0.638924 0.610593 +3.280764 0.633398 0.617178 +3.2852 0.627285 0.624464 +3.287915 0.620769 0.632229 +3.287915 0.617625 0.630414 +3.2852 0.621092 0.620888 +3.280764 0.624345 0.611951 +3.274745 0.627285 0.603873 +3.267324 0.629823 0.5969 +3.267324 0.614049 0.594119 +3.274745 0.614049 0.601539 +3.280764 0.614049 0.610136 +3.2852 0.614049 0.619647 +3.287915 0.614049 0.629783 +3.287915 0.610474 0.630414 +3.2852 0.607007 0.620888 +3.280764 0.603754 0.611951 +3.274745 0.600814 0.603873 +3.267324 0.598276 0.5969 +3.267324 0.584405 0.604908 +3.274745 0.589174 0.610593 +3.280764 0.5947 0.617178 +3.2852 0.600814 0.624464 +3.287915 0.607329 0.632229 +3.287915 0.604995 0.63501 +3.2852 0.596217 0.629942 +3.280764 0.58798 0.625187 +3.274745 0.580535 0.620888 +3.267324 0.574109 0.617178 +3.267324 0.568631 0.632229 +3.274745 0.575939 0.633518 +3.280764 0.584405 0.63501 +3.2852 0.593771 0.636662 +3.287915 0.603754 0.638422 +3.287915 0.603754 0.642053 +3.2852 0.593771 0.643813 +3.280764 0.584404 0.645465 +3.274745 0.575939 0.646957 +3.267324 0.568631 0.648246 +3.267324 0.574109 0.663297 +3.274745 0.580535 0.659587 +3.280764 0.58798 0.655289 +3.2852 0.596217 0.650533 +3.287915 0.604995 0.645465 +3.287915 0.607329 0.648246 +3.2852 0.600814 0.656011 +3.280764 0.5947 0.663297 +3.274745 0.589174 0.669882 +3.267324 0.584404 0.675567 +3.267324 0.598275 0.683575 +3.274745 0.600814 0.676602 +3.280764 0.603754 0.668524 +3.2852 0.607007 0.659587 +3.287915 0.610474 0.650061 +3.2852 0.614049 0.660828 +3.280764 0.614049 0.67034 +3.274745 0.614049 0.678936 +3.267324 0.614049 0.686356 +numsurf 90 +SURF 0x10 +mat 7 +refs 4 +90 0.0196870155632 0.534219741821 +89 0.016463663429 0.534210681915 +3 0.0164631251246 0.52846968174 +2 0.0196863655001 0.527377843857 +SURF 0x10 +mat 7 +refs 4 +89 0.410353899002 0.953903138638 +88 0.406626075506 0.953912138939 +4 0.405852615833 0.949446201324 +3 0.40935960412 0.948161840439 +SURF 0x10 +mat 7 +refs 4 +88 0.406626075506 0.953912138939 +87 0.402501821518 0.953914582729 +5 0.401972711086 0.950859665871 +4 0.405852615833 0.949446201324 +SURF 0x10 +mat 7 +refs 4 +87 0.402501821518 0.953914582729 +1 0.398106575012 0.9539103508 +6 0.397837966681 0.952359318733 +5 0.401972711086 0.950859665871 +SURF 0x10 +mat 7 +refs 3 +1 0.398106575012 0.9539103508 +0 0.393573880196 0.953899562359 +6 0.397837966681 0.952359318733 +SURF 0x10 +mat 7 +refs 3 +6 0.397837966681 0.952359318733 +0 0.393573880196 0.953899562359 +7 0.397055089474 0.950993716717 +SURF 0x10 +mat 7 +refs 4 +5 0.401972711086 0.950859665871 +6 0.397837966681 0.952359318733 +7 0.397055089474 0.950993716717 +8 0.400430798531 0.948169946671 +SURF 0x10 +mat 7 +refs 4 +4 0.405852615833 0.949446201324 +5 0.401972711086 0.950859665871 +8 0.400430798531 0.948169946671 +9 0.403598427773 0.945514082909 +SURF 0x10 +mat 7 +refs 4 +3 0.40935960412 0.948161840439 +4 0.405852615833 0.949446201324 +9 0.403598427773 0.945514082909 +10 0.406461805105 0.943106770515 +SURF 0x10 +mat 7 +refs 4 +2 0.412387281656 0.947045564651 +3 0.40935960412 0.948161840439 +10 0.406461805105 0.943106770515 +11 0.408933639526 0.94102114439 +SURF 0x10 +mat 7 +refs 4 +11 0.408933639526 0.94102114439 +10 0.406461805105 0.943106770515 +13 0.402009427547 0.939347743988 +12 0.40362778306 0.936541318893 +SURF 0x10 +mat 7 +refs 4 +10 0.406461805105 0.943106770515 +9 0.403598427773 0.945514082909 +14 0.400135159492 0.94259005785 +13 0.402009427547 0.939347743988 +SURF 0x10 +mat 7 +refs 4 +9 0.403598427773 0.945514082909 +8 0.400430798531 0.948169946671 +15 0.398061841726 0.946169793606 +14 0.400135159492 0.94259005785 +SURF 0x10 +mat 7 +refs 4 +8 0.400430798531 0.948169946671 +7 0.397055089474 0.950993716717 +16 0.395852297544 0.949978232384 +15 0.398061841726 0.946169793606 +SURF 0x10 +mat 7 +refs 3 +7 0.397055089474 0.950993716717 +0 0.393573880196 0.953899562359 +16 0.395852297544 0.949978232384 +SURF 0x10 +mat 7 +refs 3 +16 0.395852297544 0.949978232384 +0 0.393573880196 0.953899562359 +17 0.394374728203 0.949435293674 +SURF 0x10 +mat 7 +refs 4 +15 0.398061841726 0.946169793606 +16 0.395852297544 0.949978232384 +17 0.394374728203 0.949435293674 +18 0.395151525736 0.945100486279 +SURF 0x10 +mat 7 +refs 4 +14 0.400135159492 0.94259005785 +15 0.398061841726 0.946169793606 +18 0.395151525736 0.945100486279 +19 0.395880788565 0.941026806831 +SURF 0x10 +mat 7 +refs 4 +13 0.402009427547 0.939347743988 +14 0.400135159492 0.94259005785 +19 0.395880788565 0.941026806831 +20 0.396539986134 0.93733805418 +SURF 0x10 +mat 7 +refs 4 +12 0.40362778306 0.936541318893 +13 0.402009427547 0.939347743988 +20 0.396539986134 0.93733805418 +21 0.397109538317 0.934146285057 +SURF 0x10 +mat 7 +refs 4 +21 0.397109538317 0.934146285057 +20 0.396539986134 0.93733805418 +23 0.390713125467 0.937320172787 +22 0.390165299177 0.934124946594 +SURF 0x10 +mat 7 +refs 4 +20 0.396539986134 0.93733805418 +19 0.395880788565 0.941026806831 +24 0.391348183155 0.941012918949 +23 0.390713125467 0.937320172787 +SURF 0x10 +mat 7 +refs 4 +19 0.395880788565 0.941026806831 +18 0.395151525736 0.945100486279 +25 0.392051160336 0.945090949535 +24 0.391348183155 0.941012918949 +SURF 0x10 +mat 7 +refs 4 +18 0.395151525736 0.945100486279 +17 0.394374728203 0.949435293674 +26 0.392800569534 0.949430465698 +25 0.392051160336 0.945090949535 +SURF 0x10 +mat 7 +refs 3 +17 0.394374728203 0.949435293674 +0 0.393573880196 0.953899562359 +26 0.392800569534 0.949430465698 +SURF 0x10 +mat 7 +refs 3 +26 0.392800569534 0.949430465698 +0 0.393573880196 0.953899562359 +27 0.391319721937 0.949964344501 +SURF 0x10 +mat 7 +refs 4 +25 0.392051160336 0.945090949535 +26 0.392800569534 0.949430465698 +27 0.391319721937 0.949964344501 +28 0.389134407043 0.946142435074 +SURF 0x10 +mat 7 +refs 4 +24 0.391348183155 0.941012918949 +25 0.392051160336 0.945090949535 +28 0.389134407043 0.946142435074 +29 0.387084215879 0.942550003529 +SURF 0x10 +mat 7 +refs 4 +23 0.390713125467 0.937320172787 +24 0.391348183155 0.941012918949 +29 0.387084215879 0.942550003529 +30 0.385231554508 0.939296245575 +SURF 0x10 +mat 7 +refs 4 +22 0.390165299177 0.934124946594 +23 0.390713125467 0.937320172787 +30 0.385231554508 0.939296245575 +31 0.383632451296 0.936479985714 +SURF 0x10 +mat 7 +refs 4 +31 0.383632451296 0.936479985714 +30 0.385231554508 0.939296245575 +33 0.380756288767 0.94302791357 +32 0.378299236298 0.94092720747 +SURF 0x10 +mat 7 +refs 4 +30 0.385231554508 0.939296245575 +29 0.387084215879 0.942550003529 +34 0.383603215218 0.945452690125 +33 0.380756288767 0.94302791357 +SURF 0x10 +mat 7 +refs 4 +29 0.387084215879 0.942550003529 +28 0.389134407043 0.946142435074 +35 0.386753231287 0.948127985001 +34 0.383603215218 0.945452690125 +SURF 0x10 +mat 7 +refs 4 +28 0.389134407043 0.946142435074 +27 0.391319721937 0.949964344501 +36 0.390110850334 0.950972437859 +35 0.386753231287 0.948127985001 +SURF 0x10 +mat 7 +refs 3 +27 0.391319721937 0.949964344501 +0 0.393573880196 0.953899562359 +36 0.390110850334 0.950972437859 +SURF 0x10 +mat 7 +refs 3 +36 0.390110850334 0.950972437859 +0 0.393573880196 0.953899562359 +37 0.389319509268 0.952333211899 +SURF 0x10 +mat 7 +refs 4 +35 0.386753231287 0.948127985001 +36 0.390110850334 0.950972437859 +37 0.389319509268 0.952333211899 +38 0.38519474864 0.950808227062 +SURF 0x10 +mat 7 +refs 4 +34 0.383603215218 0.945452690125 +35 0.386753231287 0.948127985001 +38 0.38519474864 0.950808227062 +39 0.381324917078 0.949370980263 +SURF 0x10 +mat 7 +refs 4 +33 0.380756288767 0.94302791357 +34 0.383603215218 0.945452690125 +39 0.381324917078 0.949370980263 +40 0.37782740593 0.9480651021 +SURF 0x10 +mat 7 +refs 4 +32 0.378299236298 0.94092720747 +33 0.380756288767 0.94302791357 +40 0.37782740593 0.9480651021 +41 0.37480866909 0.946930289268 +SURF 0x10 +mat 7 +refs 4 +41 0.0164646022022 0.492218732834 +40 0.0196870155632 0.493313014507 +43 0.0196821186692 0.499054014683 +42 0.0164587721229 0.499060600996 +SURF 0x10 +mat 7 +refs 4 +40 0.37782740593 0.9480651021 +39 0.381324917078 0.949370980263 +44 0.380524158478 0.953832089901 +43 0.376797944307 0.953800201416 +SURF 0x10 +mat 7 +refs 4 +39 0.381324917078 0.949370980263 +38 0.38519474864 0.950808227062 +45 0.384647071362 0.953859806061 +44 0.380524158478 0.953832089901 +SURF 0x10 +mat 7 +refs 4 +38 0.38519474864 0.950808227062 +37 0.389319509268 0.952333211899 +46 0.3890414536 0.95388251543 +45 0.384647071362 0.953859806061 +SURF 0x10 +mat 7 +refs 3 +37 0.389319509268 0.952333211899 +0 0.393573880196 0.953899562359 +46 0.3890414536 0.95388251543 +SURF 0x10 +mat 7 +refs 3 +46 0.3890414536 0.95388251543 +0 0.393573880196 0.953899562359 +47 0.389310002327 0.955433547497 +SURF 0x10 +mat 7 +refs 4 +45 0.384647071362 0.953859806061 +46 0.3890414536 0.95388251543 +47 0.389310002327 0.955433547497 +48 0.385176062584 0.956914722919 +SURF 0x10 +mat 7 +refs 4 +44 0.380524158478 0.953832089901 +45 0.384647071362 0.953859806061 +48 0.385176062584 0.956914722919 +49 0.381297498941 0.958298027515 +SURF 0x10 +mat 7 +refs 4 +43 0.376797944307 0.953800201416 +44 0.380524158478 0.953832089901 +49 0.381297498941 0.958298027515 +50 0.377792209387 0.959541499615 +SURF 0x10 +mat 7 +refs 4 +42 0.0164587721229 0.499060600996 +43 0.0196821186692 0.499054014683 +50 0.0196809973568 0.50478976965 +51 0.0164574347436 0.505896270275 +SURF 0x10 +mat 7 +refs 4 +51 0.374766737223 0.960607290268 +50 0.377792209387 0.959541499615 +53 0.38069024682 0.964596629143 +52 0.378220409155 0.966631710529 +SURF 0x10 +mat 7 +refs 4 +50 0.377792209387 0.959541499615 +49 0.381297498941 0.958298027515 +54 0.383551716805 0.962230145931 +53 0.38069024682 0.964596629143 +SURF 0x10 +mat 7 +refs 4 +49 0.381297498941 0.958298027515 +48 0.385176062584 0.956914722919 +55 0.386718064547 0.95960444212 +54 0.383551716805 0.962230145931 +SURF 0x10 +mat 7 +refs 4 +48 0.385176062584 0.956914722919 +47 0.389310002327 0.955433547497 +56 0.390092968941 0.956799149513 +55 0.386718064547 0.95960444212 +SURF 0x10 +mat 7 +refs 3 +47 0.389310002327 0.955433547497 +0 0.393573880196 0.953899562359 +56 0.390092968941 0.956799149513 +SURF 0x10 +mat 7 +refs 3 +56 0.390092968941 0.956799149513 +0 0.393573880196 0.953899562359 +57 0.391295701265 0.957814633846 +SURF 0x10 +mat 7 +refs 4 +55 0.386718064547 0.95960444212 +56 0.390092968941 0.956799149513 +57 0.391295701265 0.957814633846 +58 0.389086991549 0.961604595184 +SURF 0x10 +mat 7 +refs 4 +54 0.383551716805 0.962230145931 +55 0.386718064547 0.95960444212 +58 0.389086991549 0.961604595184 +59 0.387014955282 0.965154230595 +SURF 0x10 +mat 7 +refs 4 +53 0.38069024682 0.964596629143 +54 0.383551716805 0.962230145931 +59 0.387014955282 0.965154230595 +60 0.38514238596 0.968355596066 +SURF 0x10 +mat 7 +refs 4 +52 0.378220409155 0.966631710529 +53 0.38069024682 0.964596629143 +60 0.38514238596 0.968355596066 +61 0.383526414633 0.971111595631 +SURF 0x10 +mat 7 +refs 4 +61 0.383526414633 0.971111595631 +60 0.38514238596 0.968355596066 +63 0.390611827374 0.970365285873 +62 0.390044599771 0.973506629467 +SURF 0x10 +mat 7 +refs 4 +60 0.38514238596 0.968355596066 +59 0.387014955282 0.965154230595 +64 0.39126932621 0.966717422009 +63 0.390611827374 0.970365285873 +SURF 0x10 +mat 7 +refs 4 +59 0.387014955282 0.965154230595 +58 0.389086991549 0.961604595184 +65 0.391997218132 0.962673902512 +64 0.39126932621 0.966717422009 +SURF 0x10 +mat 7 +refs 4 +58 0.389086991549 0.961604595184 +57 0.391295701265 0.957814633846 +66 0.392773270607 0.958357572556 +65 0.391997218132 0.962673902512 +SURF 0x10 +mat 7 +refs 3 +57 0.391295701265 0.957814633846 +0 0.393573880196 0.953899562359 +66 0.392773270607 0.958357572556 +SURF 0x10 +mat 7 +refs 3 +66 0.392773270607 0.958357572556 +0 0.393573880196 0.953899562359 +67 0.394347369671 0.958362400532 +SURF 0x10 +mat 7 +refs 4 +65 0.391997218132 0.962673902512 +66 0.392773270607 0.958357572556 +67 0.394347369671 0.958362400532 +68 0.395097672939 0.962683439255 +SURF 0x10 +mat 7 +refs 4 +64 0.39126932621 0.966717422009 +65 0.391997218132 0.962673902512 +68 0.395097672939 0.962683439255 +69 0.39580193162 0.966731369495 +SURF 0x10 +mat 7 +refs 4 +63 0.390611827374 0.970365285873 +64 0.39126932621 0.966717422009 +69 0.39580193162 0.966731369495 +70 0.39643868804 0.970383167267 +SURF 0x10 +mat 7 +refs 4 +62 0.252299726009 0.490925043821 +63 0.249009117484 0.490356296301 +70 0.249026998878 0.48452937603 +71 0.25232103467 0.483980834484 +SURF 0x10 +mat 7 +refs 4 +71 0.396988868713 0.973527908325 +70 0.39643868804 0.970383167267 +73 0.401920348406 0.968407094479 +72 0.403521567583 0.971172988415 +SURF 0x10 +mat 7 +refs 4 +70 0.39643868804 0.970383167267 +69 0.39580193162 0.966731369495 +74 0.400065898895 0.965194225311 +73 0.401920348406 0.968407094479 +SURF 0x10 +mat 7 +refs 4 +69 0.39580193162 0.966731369495 +68 0.395097672939 0.962683439255 +75 0.398014426231 0.961631953716 +74 0.400065898895 0.965194225311 +SURF 0x10 +mat 7 +refs 4 +68 0.395097672939 0.962683439255 +67 0.394347369671 0.958362400532 +76 0.395828306675 0.957828581333 +75 0.398014426231 0.961631953716 +SURF 0x10 +mat 7 +refs 3 +67 0.394347369671 0.958362400532 +0 0.393573880196 0.953899562359 +76 0.395828306675 0.957828581333 +SURF 0x10 +mat 7 +refs 3 +76 0.395828306675 0.957828581333 +0 0.393573880196 0.953899562359 +77 0.397037237883 0.956820487976 +SURF 0x10 +mat 7 +refs 4 +75 0.398014426231 0.961631953716 +76 0.395828306675 0.957828581333 +77 0.397037237883 0.956820487976 +78 0.400395601988 0.95964640379 +SURF 0x10 +mat 7 +refs 4 +74 0.400065898895 0.965194225311 +75 0.398014426231 0.961631953716 +78 0.400395601988 0.95964640379 +79 0.403546899557 0.962291538715 +SURF 0x10 +mat 7 +refs 4 +73 0.401920348406 0.968407094479 +74 0.400065898895 0.965194225311 +79 0.403546899557 0.962291538715 +80 0.40639552474 0.964675486088 +SURF 0x10 +mat 7 +refs 4 +72 0.403521567583 0.971172988415 +73 0.401920348406 0.968407094479 +80 0.40639552474 0.964675486088 +81 0.408854871988 0.966725766659 +SURF 0x10 +mat 7 +refs 4 +81 0.408854871988 0.966725766659 +80 0.40639552474 0.964675486088 +83 0.409324467182 0.959638297558 +82 0.412345409393 0.96072268486 +SURF 0x10 +mat 7 +refs 4 +80 0.40639552474 0.964675486088 +79 0.403546899557 0.962291538715 +84 0.405825257301 0.958373308182 +83 0.409324467182 0.959638297558 +SURF 0x10 +mat 7 +refs 4 +79 0.403546899557 0.962291538715 +78 0.400395601988 0.95964640379 +85 0.401953995228 0.956966161728 +84 0.405825257301 0.958373308182 +SURF 0x10 +mat 7 +refs 4 +78 0.400395601988 0.95964640379 +77 0.397037237883 0.956820487976 +86 0.397828429937 0.955459713936 +85 0.401953995228 0.956966161728 +SURF 0x10 +mat 7 +refs 3 +77 0.397037237883 0.956820487976 +0 0.393573880196 0.953899562359 +86 0.397828429937 0.955459713936 +SURF 0x10 +mat 7 +refs 3 +86 0.397828429937 0.955459713936 +0 0.393573880196 0.953899562359 +1 0.398106575012 0.9539103508 +SURF 0x10 +mat 7 +refs 4 +85 0.401953995228 0.956966161728 +86 0.397828429937 0.955459713936 +1 0.398106575012 0.9539103508 +87 0.402501821518 0.953914582729 +SURF 0x10 +mat 7 +refs 4 +84 0.405825257301 0.958373308182 +85 0.401953995228 0.956966161728 +87 0.402501821518 0.953914582729 +88 0.406626075506 0.953912138939 +SURF 0x10 +mat 7 +refs 4 +83 0.409324467182 0.959638297558 +84 0.405825257301 0.958373308182 +88 0.406626075506 0.953912138939 +89 0.410353899002 0.953903138638 +SURF 0x10 +mat 7 +refs 4 +82 0.0196831598878 0.541055381298 +83 0.0164604317397 0.539946496487 +89 0.016463663429 0.534210681915 +90 0.0196870155632 0.534219741821 +kids 0 +OBJECT poly +name "frontbumper" +data 12 +Cylinder.003 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 64 +0.070093 0.481296 0.280272 +0.070093 0.481296 0.440287 +0.036746 0.481296 0.440287 +0.036746 0.481296 0.280272 +0.070093 0.573596 0.280272 +0.070093 0.573596 0.440287 +0.036746 0.595471 0.440287 +0.036746 0.595471 0.280272 +0.135256 0.573596 0.397406 +0.135256 0.573596 0.323153 +0.135256 0.481296 0.397406 +0.135256 0.481296 0.323153 +0.20042 0.481296 0.323153 +0.20042 0.481296 0.397406 +0.20042 0.573596 0.323153 +0.20042 0.573596 0.397406 +0.20042 0.56574 0.391086 +0.20042 0.56574 0.329473 +0.20042 0.489153 0.391086 +0.20042 0.489153 0.329473 +0.28475 0.489153 0.329473 +0.28475 0.489153 0.391086 +0.28475 0.56574 0.329473 +0.28475 0.56574 0.391086 +0.284749 0.56574 -0.391082 +0.284749 0.56574 -0.329469 +0.284749 0.489153 -0.391082 +0.284749 0.489153 -0.329469 +0.200414 0.489153 -0.329469 +0.200414 0.489153 -0.391082 +0.200414 0.56574 -0.329469 +0.200414 0.56574 -0.391082 +0.200414 0.573596 -0.397402 +0.200414 0.573596 -0.323149 +0.200414 0.481296 -0.397402 +0.200414 0.481296 -0.323149 +0.135259 0.481296 -0.323149 +0.135259 0.481296 -0.397402 +0.135259 0.573596 -0.323149 +0.135259 0.573596 -0.397402 +0.036748 0.595471 -0.280268 +0.036748 0.595471 -0.440282 +0.070088 0.573596 -0.440282 +0.070088 0.573596 -0.280268 +0.036748 0.481296 -0.280268 +0.036748 0.481296 -0.440282 +0.070088 0.481296 -0.440282 +0.070088 0.481296 -0.280268 +0.036432 0.601548 -1e-06 +0.036432 0.480688 -1e-06 +0.036432 0.601548 0.522616 +0.036432 0.480688 0.522616 +-0.022861 0.480688 0.522616 +-0.022861 0.601548 0.522616 +0.006729 0.480688 0.570318 +0.006729 0.601548 0.570318 +0.006734 0.601548 -0.570314 +0.006734 0.480688 -0.570314 +-0.022868 0.601548 -0.522612 +-0.022868 0.480688 -0.522612 +0.036428 0.480688 -0.522612 +0.036428 0.601548 -0.522612 +-0.022868 0.601548 5e-06 +-0.022868 0.480688 5e-06 +numsurf 60 +SURF 0x00 +mat 8 +refs 4 +0 0.00345584005117 0.955225765705 +1 0.0322274714708 0.955137610435 +2 0.0322458818555 0.961131930351 +3 0.00347424298525 0.96122020483 +SURF 0x00 +mat 8 +refs 4 +4 0.0562692731619 0.901080191135 +7 0.0562510937452 0.907002091408 +6 0.027479544282 0.906913876534 +5 0.0274976342916 0.900991916656 +SURF 0x00 +mat 8 +refs 4 +1 0.226024627686 0.956856071949 +5 0.209428399801 0.956852078438 +6 0.205496519804 0.950855076313 +2 0.226025938988 0.950859904289 +SURF 0x00 +mat 8 +refs 4 +2 0.0268139559776 0.969307303429 +6 0.0473428070545 0.969370245934 +7 0.0472545474768 0.998141884804 +3 0.0267256963998 0.998078942299 +SURF 0x00 +mat 8 +refs 4 +4 0.123464167118 0.973965227604 +0 0.106867969036 0.973956465721 +3 0.106871187687 0.96796053648 +7 0.127400636673 0.967971205711 +SURF 0x00 +mat 8 +refs 4 +0 0.106867969036 0.973956465721 +4 0.123464167118 0.973965227604 +9 0.123477935791 0.985696494579 +11 0.106881737709 0.985687732697 +SURF 0x00 +mat 8 +refs 4 +5 0.209428399801 0.956852078438 +1 0.226024627686 0.956856071949 +10 0.226002007723 0.968587219715 +8 0.20940592885 0.968583285809 +SURF 0x00 +mat 8 +refs 4 +4 0.0562692731619 0.901080191135 +5 0.0274976342916 0.900991916656 +8 0.035243794322 0.889300823212 +9 0.0485950857401 0.889341831207 +SURF 0x00 +mat 8 +refs 4 +1 0.0322274714708 0.955137610435 +0 0.00345584005117 0.955225765705 +11 0.0111301317811 0.943488657475 +10 0.0244813933969 0.943447768688 +SURF 0x00 +mat 8 +refs 4 +10 0.0244813933969 0.943447768688 +11 0.0111301317811 0.943488657475 +12 0.0110941901803 0.931775212288 +13 0.0244453623891 0.931734323502 +SURF 0x00 +mat 8 +refs 4 +9 0.0485950857401 0.889341831207 +8 0.035243794322 0.889300823212 +15 0.0352797359228 0.877586007118 +14 0.0486309975386 0.877626955509 +SURF 0x00 +mat 8 +refs 4 +8 0.20940592885 0.968583285809 +10 0.226002007723 0.968587219715 +13 0.225999325514 0.980304121971 +15 0.209403157234 0.980300247669 +SURF 0x00 +mat 8 +refs 4 +11 0.106881737709 0.985687732697 +9 0.123477935791 0.985696494579 +14 0.123471707106 0.997413396835 +12 0.106875509024 0.997404575348 +SURF 0x00 +mat 8 +refs 4 +12 0.243002310395 0.997969150543 +14 0.243053123355 0.981373488903 +17 0.244185253978 0.982789635658 +19 0.244143053889 0.996560037136 +SURF 0x00 +mat 8 +refs 4 +15 0.256404399872 0.981414437294 +13 0.25635355711 0.998010098934 +18 0.255221426487 0.996594071388 +16 0.255263626575 0.982823550701 +SURF 0x00 +mat 8 +refs 4 +14 0.243053123355 0.981373488903 +15 0.256404399872 0.981414437294 +16 0.255263626575 0.982823550701 +17 0.244185253978 0.982789635658 +SURF 0x00 +mat 8 +refs 4 +13 0.25635355711 0.998010098934 +12 0.243002310395 0.997969150543 +19 0.244143053889 0.996560037136 +18 0.255221426487 0.996594071388 +SURF 0x00 +mat 8 +refs 4 +18 0.275907576084 0.999390721321 +19 0.264829158783 0.999356806278 +20 0.264875710011 0.984198093414 +21 0.275954067707 0.984232068062 +SURF 0x00 +mat 8 +refs 4 +17 0.233279049397 0.94526052475 +16 0.244357466698 0.945226430893 +23 0.244403958321 0.960386931896 +22 0.233325541019 0.960420906544 +SURF 0x00 +mat 8 +refs 4 +16 0.220892757177 0.981922388077 +18 0.234663635492 0.981925725937 +21 0.234660118818 0.997088849545 +23 0.220889240503 0.997085392475 +SURF 0x00 +mat 8 +refs 4 +19 0.0621481388807 0.98306119442 +17 0.0759190768003 0.983068466187 +22 0.0759110301733 0.998231470585 +20 0.0621401518583 0.998224318027 +SURF 0x00 +mat 8 +refs 4 +20 0.233279049397 0.976298987865 +22 0.233321249485 0.962528526783 +23 0.244399666786 0.962562441826 +21 0.244357407093 0.976332962513 +SURF 0x00 +mat 8 +refs 4 +27 0.0511870533228 0.872355818748 +26 0.0401086360216 0.87232196331 +24 0.0401508361101 0.858551502228 +25 0.0512292534113 0.858585476875 +SURF 0x00 +mat 8 +refs 4 +28 0.2192710042 0.981925547123 +27 0.219267487526 0.99708968401 +25 0.205496519804 0.997086465359 +30 0.205500036478 0.981922388077 +SURF 0x00 +mat 8 +refs 4 +31 0.0390218235552 0.964271783829 +24 0.0390298627317 0.949107766151 +26 0.0528007745743 0.949114978313 +29 0.0527927130461 0.964278936386 +SURF 0x00 +mat 8 +refs 4 +30 0.0332116186619 0.857082605362 +25 0.0332581400871 0.872244119644 +24 0.0221797823906 0.872278094292 +31 0.0221332609653 0.8571164608 +SURF 0x00 +mat 8 +refs 4 +29 0.0855795070529 0.996908247471 +26 0.0855328962207 0.981748461723 +27 0.0966113135219 0.981714367867 +28 0.0966578051448 0.996874153614 +SURF 0x00 +mat 8 +refs 4 +34 0.00348216295242 0.871439933777 +29 0.00462293624878 0.870030760765 +28 0.0157013237476 0.870064854622 +35 0.016833409667 0.871480941772 +SURF 0x00 +mat 8 +refs 4 +33 0.0168842673302 0.854885280132 +30 0.0157435238361 0.85629427433 +31 0.00466515123844 0.856260299683 +32 0.00353302061558 0.854844272137 +SURF 0x00 +mat 8 +refs 4 +32 0.00353302061558 0.854844272137 +31 0.00466515123844 0.856260299683 +29 0.00462293624878 0.870030760765 +34 0.00348216295242 0.871439933777 +SURF 0x00 +mat 8 +refs 4 +35 0.016833409667 0.871480941772 +28 0.0157013237476 0.870064854622 +30 0.0157435238361 0.85629427433 +33 0.0168842673302 0.854885280132 +SURF 0x00 +mat 8 +refs 4 +36 0.175284862518 0.979738771915 +35 0.187000095844 0.979741454124 +33 0.186996281147 0.996337532997 +38 0.175280928612 0.996334910393 +SURF 0x00 +mat 8 +refs 4 +39 0.150120854378 0.987305641174 +32 0.150114625692 0.9990208745 +34 0.133518487215 0.999012291431 +37 0.1335247159 0.987296938896 +SURF 0x00 +mat 8 +refs 4 +38 0.0236171782017 0.895301043987 +33 0.0235812366009 0.907014250755 +32 0.0102300345898 0.906973421574 +39 0.0102659761906 0.895260214806 +SURF 0x00 +mat 8 +refs 4 +37 0.0454379767179 0.932417213917 +34 0.0454020127654 0.944129049778 +35 0.0320508033037 0.944088101387 +36 0.032086700201 0.93237632513 +SURF 0x00 +mat 8 +refs 4 +46 0.0531840547919 0.920726299286 +37 0.0454379767179 0.932417213917 +36 0.032086700201 0.93237632513 +47 0.0244124475867 0.920638024807 +SURF 0x00 +mat 8 +refs 4 +43 0.0313632786274 0.88360875845 +38 0.0236171782017 0.895301043987 +39 0.0102659761906 0.895260214806 +42 0.00259172916412 0.883520543575 +SURF 0x00 +mat 8 +refs 4 +42 0.150107145309 0.975573241711 +39 0.150120854378 0.987305641174 +37 0.1335247159 0.987296938896 +46 0.133510887623 0.975564479828 +SURF 0x00 +mat 8 +refs 4 +47 0.16355240345 0.979716062546 +36 0.175284862518 0.979738771915 +38 0.175280928612 0.996334910393 +43 0.163548469543 0.996312260628 +SURF 0x00 +mat 8 +refs 4 +44 0.157557487488 0.979714751244 +47 0.16355240345 0.979716062546 +43 0.163548469543 0.996312260628 +40 0.157552659512 1.00024414062 +SURF 0x00 +mat 8 +refs 4 +45 0.0250191856176 0.969307303429 +44 0.0251073855907 0.998078942299 +40 0.00457854755223 0.998141884804 +41 0.0044903177768 0.969370245934 +SURF 0x00 +mat 8 +refs 4 +46 0.133510887623 0.975564479828 +45 0.133514136076 0.96956962347 +41 0.15404355526 0.969580352306 +42 0.150107145309 0.975573241711 +SURF 0x00 +mat 8 +refs 4 +43 0.0313632786274 0.88360875845 +42 0.00259172916412 0.883520543575 +41 0.0026099383831 0.877599954605 +40 0.0313815176487 0.877688229084 +SURF 0x00 +mat 8 +refs 4 +45 0.0532024279237 0.914733052254 +46 0.0531840547919 0.920726299286 +47 0.0244124475867 0.920638024807 +44 0.0244308207184 0.914644896984 +SURF 0x00 +mat 8 +refs 4 +48 0.0830304548144 0.113119982183 +50 0.0833386704326 0.213590577245 +51 0.0601046606898 0.213661953807 +49 0.0597964152694 0.113191328943 +SURF 0x00 +mat 8 +refs 4 +52 0.558150887489 0.00581365823746 +63 0.658620297909 0.00612062215805 +49 0.65858656168 0.0175173580647 +51 0.558115959167 0.0172090232372 +SURF 0x00 +mat 8 +refs 4 +63 0.194966524839 0.0234618913382 +52 0.0989640802145 0.023167386651 +53 0.0990321710706 0.000966237159446 +62 0.195034638047 0.00126077071764 +SURF 0x00 +mat 8 +refs 4 +50 0.522156238556 0.0192092061043 +48 0.421685636044 0.0195174887776 +62 0.421651870012 0.00811941176653 +53 0.522121250629 0.00781255960464 +SURF 0x00 +mat 8 +refs 3 +50 0.522156238556 0.0192092061043 +53 0.522121250629 0.00781255960464 +55 0.531309306622 0.0134717822075 +SURF 0x00 +mat 8 +refs 4 +53 0.0990321710706 0.000966237159446 +52 0.0989640802145 0.023167386651 +54 0.0902014225721 0.0231015477329 +55 0.0902695432305 0.000900455052033 +SURF 0x00 +mat 8 +refs 3 +52 0.558150887489 0.00581365823746 +51 0.558115959167 0.0172090232372 +54 0.548962950706 0.0114723443985 +SURF 0x00 +mat 8 +refs 4 +51 0.0601046606898 0.213661953807 +50 0.0833386704326 0.213590577245 +55 0.0834115669131 0.222762778401 +54 0.0601775571704 0.222834095359 +SURF 0x00 +mat 8 +refs 4 +60 0.0594881996512 0.012721975334 +57 0.0595048293471 0.00355302263051 +56 0.0827388688922 0.00348170567304 +61 0.0827222391963 0.0126506285742 +SURF 0x00 +mat 8 +refs 3 +59 0.759090900421 0.00642883777618 +57 0.768243968487 0.0121460855007 +60 0.759055972099 0.0178247690201 +SURF 0x00 +mat 8 +refs 4 +58 0.291038125753 0.00155527633615 +56 0.299801170826 0.00154325854965 +57 0.299733102322 0.0237443875521 +59 0.290970057249 0.0237564314157 +SURF 0x00 +mat 8 +refs 3 +61 0.321216285229 0.0198248773813 +56 0.312028169632 0.0141456276178 +58 0.321181297302 0.00842763483524 +SURF 0x00 +mat 8 +refs 4 +62 0.421651870012 0.00811941176653 +48 0.421685636044 0.0195174887776 +61 0.321216285229 0.0198248773813 +58 0.321181297302 0.00842763483524 +SURF 0x00 +mat 8 +refs 4 +63 0.194966524839 0.0234618913382 +62 0.195034638047 0.00126077071764 +58 0.291038125753 0.00155527633615 +59 0.290970057249 0.0237564314157 +SURF 0x00 +mat 8 +refs 4 +49 0.65858656168 0.0175173580647 +63 0.658620297909 0.00612062215805 +59 0.759090900421 0.00642883777618 +60 0.759055972099 0.0178247690201 +SURF 0x00 +mat 8 +refs 4 +48 0.0830304548144 0.113119982183 +49 0.0597964152694 0.113191328943 +60 0.0594881996512 0.012721975334 +61 0.0827222391963 0.0126506285742 +kids 0 +OBJECT poly +name "Cylinder.011" +data 12 +Cylinder.016 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 94 +3.286846 0.474982 -0.330842 +3.295068 0.460742 -0.330842 +3.295068 0.444299 -0.330842 +3.286846 0.430059 -0.330842 +3.272606 0.421837 -0.330842 +3.256163 0.421837 -0.330842 +3.241923 0.430059 -0.330842 +3.233701 0.444299 -0.330842 +3.233701 0.460742 -0.330842 +3.241923 0.474982 -0.330842 +3.256163 0.483204 -0.330842 +3.272606 0.483204 -0.330842 +3.286846 0.474982 -0.448344 +3.295068 0.460742 -0.448344 +3.295068 0.444299 -0.448344 +3.286846 0.430059 -0.448344 +3.272606 0.421837 -0.448344 +3.256163 0.421837 -0.448344 +3.241923 0.430059 -0.448344 +3.233701 0.444299 -0.448344 +3.233701 0.460742 -0.448344 +3.241923 0.474982 -0.448344 +3.256163 0.483204 -0.448344 +3.272606 0.483204 -0.448344 +3.264385 0.45252 -0.330842 +3.264385 0.45252 -0.448344 +3.120823 0.410342 -0.448343 +3.120832 0.396102 -0.448343 +3.120848 0.38788 -0.448343 +3.120823 0.410342 -0.330842 +3.120832 0.396102 -0.330842 +3.120848 0.38788 -0.330842 +3.089014 0.380718 -0.326277 +3.088997 0.389579 -0.326277 +3.088987 0.404925 -0.326277 +3.089014 0.380718 -0.452908 +3.088997 0.389579 -0.452908 +3.088987 0.404925 -0.452908 +2.802932 0.365317 -0.452908 +2.802942 0.349971 -0.452908 +2.802959 0.341111 -0.452908 +2.802932 0.365318 -0.326277 +2.802942 0.349971 -0.326277 +2.802959 0.341111 -0.326277 +2.697275 0.36518 -0.452908 +2.697265 0.349833 -0.452908 +2.697248 0.340973 -0.452908 +2.697275 0.36518 -0.326276 +2.697265 0.349833 -0.326276 +2.697248 0.340973 -0.326276 +2.591593 0.341111 -0.326276 +2.59161 0.349971 -0.326276 +2.59162 0.365318 -0.326276 +2.591593 0.341111 -0.452908 +2.59161 0.349971 -0.452908 +2.59162 0.365317 -0.452908 +2.362464 0.371795 -0.452908 +2.362454 0.356448 -0.452908 +2.362436 0.347588 -0.452908 +2.362464 0.371795 -0.326276 +2.362454 0.356448 -0.326276 +2.362436 0.347588 -0.326276 +2.332371 0.351213 -0.330841 +2.332387 0.359435 -0.330841 +2.332396 0.373675 -0.330841 +2.332371 0.351213 -0.448343 +2.332387 0.359434 -0.448343 +2.332396 0.373675 -0.448343 +2.179993 0.393463 -0.451636 +2.179993 0.393463 -0.327548 +2.174981 0.412168 -0.451636 +2.185005 0.412168 -0.451636 +2.193686 0.407156 -0.451636 +2.198698 0.398475 -0.451636 +2.198698 0.38845 -0.451636 +2.193686 0.379769 -0.451636 +2.185005 0.374757 -0.451636 +2.174981 0.374757 -0.451636 +2.1663 0.379769 -0.451636 +2.161287 0.38845 -0.451636 +2.161287 0.398475 -0.451636 +2.1663 0.407156 -0.451636 +2.174981 0.412168 -0.327548 +2.185005 0.412168 -0.327548 +2.193686 0.407156 -0.327548 +2.198698 0.398475 -0.327548 +2.198698 0.38845 -0.327548 +2.193686 0.379769 -0.327548 +2.185005 0.374757 -0.327548 +2.174981 0.374757 -0.327548 +2.1663 0.379769 -0.327548 +2.161287 0.38845 -0.327548 +2.161287 0.398475 -0.327548 +2.1663 0.407156 -0.327548 +numsurf 116 +SURF 0x00 +mat 1 +refs 3 +1 0.486860752106 0.494513183832 +0 0.480470865965 0.491351991892 +24 0.4895645082 0.481008887291 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +12 0.678554594517 0.491356492043 +13 0.672162294388 0.494512796402 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +2 0.493975102901 0.494055867195 +1 0.486860752106 0.494513183832 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +13 0.672162294388 0.494512796402 +14 0.66504830122 0.494050085545 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +3 0.499907672405 0.49010258913 +2 0.493975102901 0.494055867195 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +14 0.66504830122 0.494050085545 +15 0.659118711948 0.490092307329 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +4 0.503068745136 0.483712762594 +3 0.499907672405 0.49010258913 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +15 0.659118711948 0.490092307329 +16 0.655962467194 0.483700066805 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +5 0.502611398697 0.476598322392 +4 0.503068745136 0.483712762594 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +16 0.655962467194 0.483700066805 +17 0.656425237656 0.476586103439 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +6 0.498658180237 0.47066578269 +5 0.502611398697 0.476598322392 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +17 0.656425237656 0.476586103439 +18 0.660382986069 0.470656454563 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +7 0.492268264294 0.467504620552 +6 0.498658180237 0.47066578269 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +18 0.660382986069 0.470656454563 +19 0.666775286198 0.467500150204 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +8 0.485153883696 0.467961937189 +7 0.492268264294 0.467504620552 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +19 0.666775286198 0.467500150204 +20 0.673889279366 0.467962861061 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +9 0.479221343994 0.471915215254 +8 0.485153883696 0.467961937189 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +20 0.673889279366 0.467962861061 +21 0.679818809032 0.471920639277 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +10 0.476060241461 0.47830504179 +9 0.479221343994 0.471915215254 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +21 0.679818809032 0.471920639277 +22 0.682975113392 0.478312879801 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +11 0.4765175879 0.485419481993 +10 0.476060241461 0.47830504179 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +22 0.682975113392 0.478312879801 +23 0.68251234293 0.485426872969 +SURF 0x00 +mat 1 +refs 3 +24 0.4895645082 0.481008887291 +0 0.480470865965 0.491351991892 +11 0.4765175879 0.485419481993 +SURF 0x00 +mat 1 +refs 3 +25 0.66946876049 0.481006473303 +23 0.68251234293 0.485426872969 +12 0.678554594517 0.491356492043 +SURF 0x00 +mat 1 +refs 4 +0 0.435921996832 0.560970246792 +1 0.429720312357 0.56098818779 +13 0.429564028978 0.51004421711 +12 0.435765713453 0.510026335716 +SURF 0x00 +mat 1 +refs 4 +1 0.429720312357 0.56098818779 +2 0.422591507435 0.561010062695 +14 0.422435224056 0.510066151619 +13 0.429564028978 0.51004421711 +SURF 0x00 +mat 1 +refs 4 +2 0.422591507435 0.561010062695 +3 0.416445702314 0.561030030251 +15 0.416289418936 0.510086119175 +14 0.422435224056 0.510066151619 +SURF 0x00 +mat 1 +refs 4 +3 0.115876801312 0.00210734270513 +4 0.115857586265 0.00836484879255 +16 0.0649136528373 0.00820853654295 +15 0.0649328306317 0.00195102090947 +SURF 0x00 +mat 1 +refs 4 +4 0.115857586265 0.00836484879255 +5 0.115835733712 0.0154918991029 +17 0.0648917779326 0.0153354946524 +16 0.0649136528373 0.00820853654295 +SURF 0x00 +mat 1 +refs 4 +7 0.490336358547 0.883322179317 +8 0.48320749402 0.883344054222 +20 0.483051240444 0.832400143147 +19 0.490180075169 0.832378268242 +SURF 0x00 +mat 1 +refs 4 +8 0.48320749402 0.883344054222 +9 0.477008223534 0.883363068104 +21 0.476851940155 0.832419157028 +20 0.483051240444 0.832400143147 +SURF 0x00 +mat 1 +refs 4 +9 0.435921996832 0.615875959396 +10 0.429682850838 0.615895152092 +22 0.429526567459 0.564951181412 +21 0.435765683651 0.564932107925 +SURF 0x00 +mat 1 +refs 4 +10 0.429682850838 0.615895152092 +11 0.422554969788 0.615917026997 +23 0.422398805618 0.564973115921 +22 0.429526567459 0.564951181412 +SURF 0x00 +mat 1 +refs 4 +11 0.422554969788 0.615917026997 +0 0.416448503733 0.615935742855 +12 0.416292220354 0.564991831779 +23 0.422398805618 0.564973115921 +SURF 0x00 +mat 1 +refs 4 +19 0.419428616762 0.451218575239 +26 0.419277638197 0.402013719082 +29 0.470221608877 0.401857405901 +7 0.47037255764 0.451062291861 +SURF 0x00 +mat 1 +refs 4 +5 0.115835733712 0.0154918991029 +31 0.115654684603 0.0744946599007 +28 0.0647107511759 0.0743383616209 +17 0.0648917779326 0.0153354946524 +SURF 0x00 +mat 1 +refs 4 +18 0.660382986069 0.470656454563 +27 0.649099349976 0.417311519384 +26 0.655260562897 0.417708218098 +19 0.666775286198 0.467500150204 +SURF 0x00 +mat 1 +refs 4 +7 0.492268264294 0.467504620552 +29 0.503820776939 0.417721450329 +30 0.509982228279 0.417329400778 +6 0.498658180237 0.47066578269 +SURF 0x00 +mat 1 +refs 4 +17 0.656425237656 0.476586103439 +28 0.645541906357 0.417087078094 +27 0.649099349976 0.417311519384 +18 0.660382986069 0.470656454563 +SURF 0x00 +mat 1 +refs 4 +6 0.498658180237 0.47066578269 +30 0.509982228279 0.417329400778 +31 0.513539850712 0.417107671499 +5 0.502611398697 0.476598322392 +SURF 0x00 +mat 1 +refs 4 +30 0.509982228279 0.417329400778 +33 0.511923789978 0.403370022774 +32 0.515757858753 0.403131037951 +31 0.513539850712 0.417107671499 +SURF 0x00 +mat 1 +refs 4 +28 0.645541906357 0.417087078094 +35 0.643334507942 0.403108745813 +36 0.647168397903 0.403350681067 +27 0.649099349976 0.417311519384 +SURF 0x00 +mat 1 +refs 4 +29 0.503820776939 0.417721450329 +34 0.505283653736 0.403792500496 +33 0.511923789978 0.403370022774 +30 0.509982228279 0.417329400778 +SURF 0x00 +mat 1 +refs 4 +27 0.649099349976 0.417311519384 +36 0.647168397903 0.403350681067 +37 0.653808236122 0.403778195381 +26 0.655260562897 0.417708218098 +SURF 0x00 +mat 1 +refs 4 +31 0.115654684603 0.0744946599007 +32 0.117591179907 0.0883730053902 +35 0.0626891702414 0.0882045552135 +28 0.0647107511759 0.0743383616209 +SURF 0x00 +mat 1 +refs 4 +26 0.419277638197 0.402013719082 +37 0.417256176472 0.388175785542 +34 0.472158193588 0.388007372618 +29 0.470221608877 0.401857405901 +SURF 0x00 +mat 1 +refs 4 +37 0.417256176472 0.388175785542 +38 0.416874736547 0.263856053352 +41 0.471776783466 0.263687580824 +34 0.472158193588 0.388007372618 +SURF 0x00 +mat 1 +refs 4 +32 0.117591179907 0.0883730053902 +43 0.117209509015 0.212770566344 +40 0.0623074807227 0.212602049112 +35 0.0626891702414 0.0882045552135 +SURF 0x00 +mat 1 +refs 4 +36 0.647168397903 0.403350681067 +39 0.638082683086 0.2784755826 +38 0.644722521305 0.278903096914 +37 0.653808236122 0.403778195381 +SURF 0x00 +mat 1 +refs 4 +34 0.505283653736 0.403792500496 +41 0.514464080334 0.27892434597 +42 0.52110427618 0.278501868248 +33 0.511923789978 0.403370022774 +SURF 0x00 +mat 1 +refs 4 +35 0.643334507942 0.403108745813 +40 0.634248793125 0.278233647346 +39 0.638082683086 0.2784755826 +36 0.647168397903 0.403350681067 +SURF 0x00 +mat 1 +refs 4 +33 0.511923789978 0.403370022774 +42 0.52110427618 0.278501868248 +43 0.524938344955 0.278262883425 +32 0.515757858753 0.403131037951 +SURF 0x00 +mat 1 +refs 4 +42 0.52110427618 0.278501868248 +48 0.518224656582 0.232775256038 +49 0.522057712078 0.232521414757 +43 0.524938344955 0.278262883425 +SURF 0x00 +mat 1 +refs 4 +40 0.634248793125 0.278233647346 +46 0.637164115906 0.232494398952 +45 0.640996992588 0.232751175761 +39 0.638082683086 0.2784755826 +SURF 0x00 +mat 1 +refs 4 +41 0.514464080334 0.27892434597 +47 0.511584997177 0.23320646584 +48 0.518224656582 0.232775256038 +42 0.52110427618 0.278501868248 +SURF 0x00 +mat 1 +refs 4 +39 0.638082683086 0.2784755826 +45 0.640996992588 0.232751175761 +44 0.647636294365 0.233187362552 +38 0.644722521305 0.278903096914 +SURF 0x00 +mat 1 +refs 4 +43 0.117209509015 0.212770566344 +49 0.117069147527 0.258590638638 +46 0.062167134136 0.258422225714 +40 0.0623074807227 0.212602049112 +SURF 0x00 +mat 1 +refs 4 +38 0.416874736547 0.263856053352 +44 0.416734397411 0.218054607511 +47 0.471636414528 0.217886149883 +41 0.471776783466 0.263687580824 +SURF 0x00 +mat 1 +refs 4 +55 0.416593879461 0.172256186604 +52 0.471495896578 0.172087714076 +47 0.471636414528 0.217886149883 +44 0.416734397411 0.218054607511 +SURF 0x00 +mat 1 +refs 4 +50 0.116928637028 0.30438375473 +53 0.0620266012847 0.304215222597 +46 0.062167134136 0.258422225714 +49 0.117069147527 0.258590638638 +SURF 0x00 +mat 1 +refs 4 +54 0.644030094147 0.187044069171 +55 0.650669395924 0.187480315566 +44 0.647636294365 0.233187362552 +45 0.640996992588 0.232751175761 +SURF 0x00 +mat 1 +refs 4 +52 0.508586645126 0.187497064471 +51 0.515226304531 0.187065929174 +48 0.518224656582 0.232775256038 +47 0.511584997177 0.23320646584 +SURF 0x00 +mat 1 +refs 4 +53 0.640197217464 0.186787232757 +54 0.644030094147 0.187044069171 +45 0.640996992588 0.232751175761 +46 0.637164115906 0.232494398952 +SURF 0x00 +mat 1 +refs 4 +51 0.515226304531 0.187065929174 +50 0.519059360027 0.186811953783 +49 0.522057712078 0.232521414757 +48 0.518224656582 0.232775256038 +SURF 0x00 +mat 1 +refs 4 +60 0.506049990654 0.0880977287889 +61 0.509883105755 0.0878437757492 +50 0.519059360027 0.186811953783 +51 0.515226304531 0.187065929174 +SURF 0x00 +mat 1 +refs 4 +58 0.649448573589 0.0878260955215 +57 0.653281450272 0.0880829691887 +54 0.644030094147 0.187044069171 +53 0.640197217464 0.186787232757 +SURF 0x00 +mat 1 +refs 4 +59 0.499410390854 0.0885288491845 +60 0.506049990654 0.0880977287889 +51 0.515226304531 0.187065929174 +52 0.508586645126 0.187497064471 +SURF 0x00 +mat 1 +refs 4 +57 0.653281450272 0.0880829691887 +56 0.659920752048 0.0885191112757 +55 0.650669395924 0.187480315566 +54 0.644030094147 0.187044069171 +SURF 0x00 +mat 1 +refs 4 +61 0.116624116898 0.403640478849 +58 0.0617221444845 0.403472065926 +53 0.0620266012847 0.304215222597 +50 0.116928637028 0.30438375473 +SURF 0x00 +mat 1 +refs 4 +56 0.416289329529 0.0729728788137 +59 0.471191346645 0.0728044658899 +52 0.471495896578 0.172087714076 +55 0.416593879461 0.172256186604 +SURF 0x00 +mat 1 +refs 4 +67 0.418228417635 0.059948284179 +64 0.469172328711 0.0597919896245 +59 0.471191346645 0.0728044658899 +56 0.416289329529 0.0729728788137 +SURF 0x00 +mat 1 +refs 4 +62 0.11460519582 0.416628181934 +65 0.0636612474918 0.416471868753 +58 0.0617221444845 0.403472065926 +61 0.116624116898 0.403640478849 +SURF 0x00 +mat 1 +refs 4 +66 0.655424535275 0.0751626715064 +67 0.661585092545 0.0755675435066 +56 0.659920752048 0.0885191112757 +57 0.653281450272 0.0880829691887 +SURF 0x00 +mat 1 +refs 4 +64 0.49775582552 0.0755760148168 +63 0.503916800022 0.0751758515835 +60 0.506049990654 0.0880977287889 +59 0.499410390854 0.0885288491845 +SURF 0x00 +mat 1 +refs 4 +65 0.651867985725 0.0749244317412 +66 0.655424535275 0.0751626715064 +57 0.653281450272 0.0880829691887 +58 0.649448573589 0.0878260955215 +SURF 0x00 +mat 1 +refs 4 +63 0.503916800022 0.0751758515835 +62 0.507473528385 0.0749403014779 +61 0.509883105755 0.0878437757492 +60 0.506049990654 0.0880977287889 +SURF 0x00 +mat 1 +refs 4 +87 0.491264313459 0.0157273951918 +88 0.493191421032 0.0118319923058 +62 0.507473528385 0.0749403014779 +63 0.503916800022 0.0751758515835 +SURF 0x00 +mat 1 +refs 4 +76 0.666197955608 0.0118269277737 +75 0.668122112751 0.0157238803804 +66 0.655424535275 0.0751626715064 +65 0.651867985725 0.0749244317412 +SURF 0x00 +mat 1 +refs 4 +86 0.487647652626 0.0181374903768 +87 0.491264313459 0.0157273951918 +63 0.503916800022 0.0751758515835 +64 0.49775582552 0.0755760148168 +SURF 0x00 +mat 1 +refs 4 +75 0.668122112751 0.0157238803804 +74 0.671736955643 0.0181366112083 +67 0.661585092545 0.0755675435066 +66 0.655424535275 0.0751626715064 +SURF 0x00 +mat 1 +refs 4 +88 0.115837663412 0.480261355639 +76 0.0620383732021 0.480096280575 +65 0.0636612474918 0.416471868753 +62 0.11460519582 0.416628181934 +SURF 0x00 +mat 1 +refs 4 +74 0.416623324156 0.00211604917422 +86 0.470422595739 0.00195102090947 +64 0.469172328711 0.0597919896245 +67 0.418228417635 0.059948284179 +SURF 0x00 +mat 1 +refs 4 +82 0.894165456295 0.653836369514 +70 0.894000351429 0.707635700703 +81 0.890196859837 0.707624018192 +93 0.890361845493 0.653824806213 +SURF 0x00 +mat 1 +refs 4 +83 0.898510754108 0.65384978056 +71 0.898345649242 0.707649052143 +70 0.894000351429 0.707635700703 +82 0.894165456295 0.653836369514 +SURF 0x00 +mat 1 +refs 4 +84 0.902233541012 0.653861165047 +72 0.902068555355 0.707660496235 +71 0.898345649242 0.707649052143 +83 0.898510754108 0.65384978056 +SURF 0x00 +mat 1 +refs 4 +85 0.687196314335 0.680849611759 +73 0.687031269073 0.62705039978 +72 0.690812051296 0.62703949213 +84 0.690977096558 0.680838704109 +SURF 0x00 +mat 1 +refs 4 +86 0.68285036087 0.6808629632 +74 0.682685315609 0.627063691616 +73 0.687031269073 0.62705039978 +85 0.687196314335 0.680849611759 +SURF 0x00 +mat 1 +refs 4 +89 0.115824341774 0.484606236219 +77 0.062025051564 0.48444122076 +76 0.0620383732021 0.480096280575 +88 0.115837663412 0.480261355639 +SURF 0x00 +mat 1 +refs 4 +90 0.115812942386 0.488316833973 +78 0.062013708055 0.488151788712 +77 0.062025051564 0.48444122076 +89 0.115824341774 0.484606236219 +SURF 0x00 +mat 1 +refs 4 +91 0.844044625759 0.653834819794 +79 0.843879580498 0.707634091377 +78 0.840131402016 0.707622528076 +90 0.840296447277 0.653823316097 +SURF 0x00 +mat 1 +refs 4 +92 0.848390579224 0.653848111629 +80 0.848225533962 0.707647383213 +79 0.843879580498 0.707634091377 +91 0.844044625759 0.653834819794 +SURF 0x00 +mat 1 +refs 4 +93 0.85216987133 0.653859674931 +81 0.852004826069 0.707658946514 +80 0.848225533962 0.707647383213 +92 0.848390579224 0.653848111629 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +81 0.680741548538 0.00464584538713 +70 0.682665705681 0.00854274630547 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +82 0.476726174355 0.00853530317545 +93 0.478653281927 0.00463990168646 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +70 0.682665705681 0.00854274630547 +71 0.682383596897 0.0128797385842 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +83 0.47700497508 0.0128723997623 +82 0.476726174355 0.00853530317545 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +71 0.682383596897 0.0128797385842 +72 0.679970860481 0.0164945460856 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +84 0.479414999485 0.0164890680462 +83 0.47700497508 0.0128723997623 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +72 0.679970860481 0.0164945460856 +73 0.676073908806 0.0184187050909 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +85 0.483310490847 0.018416274339 +84 0.479414999485 0.0164890680462 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +73 0.676073908806 0.0184187050909 +74 0.671736955643 0.0181366112083 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +86 0.487647652626 0.0181374903768 +85 0.483310490847 0.018416274339 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +74 0.671736955643 0.0181366112083 +75 0.668122112751 0.0157238803804 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +87 0.491264313459 0.0157273951918 +86 0.487647652626 0.0181374903768 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +75 0.668122112751 0.0157238803804 +76 0.666197955608 0.0118269277737 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +88 0.493191421032 0.0118319923058 +87 0.491264313459 0.0157273951918 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +76 0.666197955608 0.0118269277737 +77 0.666480064392 0.00748998625204 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +89 0.492912620306 0.00749479280785 +88 0.493191421032 0.0118319923058 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +77 0.666480064392 0.00748998625204 +78 0.668892860413 0.0038753345143 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +90 0.490502595901 0.00387822883204 +89 0.492912620306 0.00749479280785 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +78 0.668892860413 0.0038753345143 +79 0.672789812088 0.00195102090947 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +91 0.486607044935 0.00195102090947 +90 0.490502595901 0.00387822883204 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +79 0.672789812088 0.00195102090947 +80 0.677126705647 0.00223311432637 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +92 0.482269912958 0.00222985818982 +91 0.486607044935 0.00195102090947 +SURF 0x00 +mat 1 +refs 3 +68 0.674431860447 0.0101849138737 +80 0.677126705647 0.00223311432637 +81 0.680741548538 0.00464584538713 +SURF 0x00 +mat 1 +refs 3 +69 0.484958767891 0.0101836221293 +93 0.478653281927 0.00463990168646 +92 0.482269912958 0.00222985818982 +kids 0 +OBJECT poly +name "rscrews.L" +data 8 +Cylinder +crease 30 +numvert 70 +2.597304 0.397752 0.703386 +2.593655 0.411367 0.703386 +2.603622 0.421334 0.703386 +2.617238 0.417686 0.703386 +2.620886 0.404071 0.703386 +2.610919 0.394104 0.703386 +2.597304 0.397752 0.675194 +2.593655 0.411367 0.675194 +2.603622 0.421334 0.675194 +2.617238 0.417686 0.675194 +2.620886 0.404071 0.675194 +2.610919 0.394104 0.675194 +2.60727 0.407719 0.703386 +2.60727 0.407719 0.675194 +2.668893 0.492535 0.675194 +2.668893 0.492535 0.703386 +2.657071 0.484858 0.675194 +2.66963 0.478458 0.675194 +2.681452 0.486135 0.675194 +2.680714 0.500212 0.675194 +2.668155 0.506611 0.675194 +2.656333 0.498934 0.675194 +2.657071 0.484858 0.703386 +2.66963 0.478458 0.703386 +2.681452 0.486135 0.703386 +2.680714 0.500212 0.703386 +2.668155 0.506611 0.703386 +2.656333 0.498934 0.703386 +2.770804 0.47406 0.703386 +2.781759 0.465189 0.703386 +2.779554 0.451267 0.703386 +2.766394 0.446216 0.703386 +2.75544 0.455087 0.703386 +2.757645 0.469009 0.703386 +2.770804 0.47406 0.675194 +2.781759 0.465189 0.675194 +2.779554 0.451267 0.675194 +2.766394 0.446216 0.675194 +2.75544 0.455087 0.675194 +2.757645 0.469009 0.675194 +2.768599 0.460138 0.703386 +2.768599 0.460138 0.675194 +2.7686 0.3553 0.675194 +2.7686 0.3553 0.703386 +2.773651 0.368459 0.675194 +2.759729 0.366254 0.675194 +2.754677 0.353095 0.675194 +2.763548 0.342141 0.675194 +2.77747 0.344346 0.675194 +2.782521 0.357505 0.675194 +2.773651 0.368459 0.703386 +2.759729 0.366254 0.703386 +2.754677 0.353095 0.703386 +2.763548 0.342141 0.703386 +2.77747 0.344346 0.703386 +2.782521 0.357505 0.703386 +2.675292 0.310344 0.703386 +2.661216 0.311082 0.703386 +2.654816 0.323641 0.703386 +2.662493 0.335463 0.703386 +2.67657 0.334725 0.703386 +2.682969 0.322166 0.703386 +2.675292 0.310344 0.675194 +2.661216 0.311082 0.675194 +2.654817 0.323641 0.675194 +2.662493 0.335463 0.675194 +2.67657 0.334725 0.675194 +2.682969 0.322166 0.675194 +2.668893 0.322903 0.703386 +2.668893 0.322903 0.675194 +numsurf 90 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +0 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +7 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +1 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +8 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +2 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +9 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +3 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +10 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +4 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +6 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +6 0 0 +7 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +7 0 0 +8 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +10 0 0 +11 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +6 0 0 +0 0 0 +5 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +22 0 0 +16 0 0 +21 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 4 +23 0 0 +17 0 0 +16 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 4 +24 0 0 +18 0 0 +17 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 4 +25 0 0 +19 0 0 +18 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 4 +26 0 0 +20 0 0 +19 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +21 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +22 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +16 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +23 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +17 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +24 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +18 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +25 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +19 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +26 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +27 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +28 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +35 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +29 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +36 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +30 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +37 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +31 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +38 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +32 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +39 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +33 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +34 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 4 +28 0 0 +34 0 0 +35 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 4 +29 0 0 +35 0 0 +36 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 4 +30 0 0 +36 0 0 +37 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 4 +31 0 0 +37 0 0 +38 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 4 +32 0 0 +38 0 0 +39 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 4 +33 0 0 +39 0 0 +34 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 4 +50 0 0 +44 0 0 +49 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 4 +51 0 0 +45 0 0 +44 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 4 +52 0 0 +46 0 0 +45 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 4 +53 0 0 +47 0 0 +46 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 4 +54 0 0 +48 0 0 +47 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 4 +55 0 0 +49 0 0 +48 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +49 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +50 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +44 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +51 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +45 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +52 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +46 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +53 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +47 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +54 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +48 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +55 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +56 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +63 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +57 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +64 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +58 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +65 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +59 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +66 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +60 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +67 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +61 0 0 +56 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +62 0 0 +67 0 0 +SURF 0x00 +mat 1 +refs 4 +56 0 0 +62 0 0 +63 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 4 +57 0 0 +63 0 0 +64 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 4 +58 0 0 +64 0 0 +65 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 4 +59 0 0 +65 0 0 +66 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 4 +60 0 0 +66 0 0 +67 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 4 +61 0 0 +67 0 0 +62 0 0 +56 0 0 +kids 0 +OBJECT poly +name "rscrews.R" +data 12 +Cylinder.007 +crease 30 +numvert 70 +2.597303 0.397752 -0.703393 +2.593655 0.411367 -0.703393 +2.603622 0.421334 -0.703393 +2.617238 0.417686 -0.703393 +2.620886 0.404071 -0.703393 +2.610919 0.394104 -0.703393 +2.597303 0.397752 -0.675202 +2.593655 0.411367 -0.675202 +2.603622 0.421334 -0.675202 +2.617238 0.417686 -0.675202 +2.620886 0.404071 -0.675202 +2.610919 0.394104 -0.675202 +2.607271 0.407719 -0.703393 +2.607271 0.407719 -0.675202 +2.668893 0.492535 -0.675202 +2.668893 0.492535 -0.703393 +2.657071 0.484858 -0.675202 +2.66963 0.478458 -0.675202 +2.681452 0.486135 -0.675202 +2.680714 0.500212 -0.675202 +2.668155 0.506611 -0.675202 +2.656333 0.498934 -0.675202 +2.657071 0.484858 -0.703393 +2.66963 0.478458 -0.703393 +2.681452 0.486135 -0.703393 +2.680714 0.500212 -0.703393 +2.668155 0.506611 -0.703393 +2.656333 0.498934 -0.703393 +2.770804 0.47406 -0.703393 +2.781759 0.465189 -0.703393 +2.779554 0.451267 -0.703393 +2.766394 0.446216 -0.703393 +2.75544 0.455087 -0.703393 +2.757645 0.469009 -0.703393 +2.770804 0.47406 -0.675202 +2.781759 0.465189 -0.675202 +2.779554 0.451267 -0.675202 +2.766394 0.446216 -0.675202 +2.75544 0.455087 -0.675202 +2.757645 0.469009 -0.675202 +2.768599 0.460138 -0.703393 +2.768599 0.460138 -0.675202 +2.7686 0.3553 -0.675202 +2.7686 0.3553 -0.703393 +2.773651 0.368459 -0.675202 +2.759729 0.366254 -0.675202 +2.754677 0.353095 -0.675202 +2.763548 0.342141 -0.675202 +2.77747 0.344346 -0.675202 +2.782521 0.357505 -0.675202 +2.773651 0.368459 -0.703393 +2.759729 0.366254 -0.703393 +2.754677 0.353095 -0.703393 +2.763548 0.342141 -0.703393 +2.77747 0.344346 -0.703393 +2.782521 0.357505 -0.703393 +2.675292 0.310344 -0.703393 +2.661216 0.311082 -0.703393 +2.654817 0.323641 -0.703393 +2.662493 0.335463 -0.703393 +2.67657 0.334725 -0.703393 +2.682969 0.322166 -0.703393 +2.675292 0.310344 -0.675202 +2.661216 0.311082 -0.675202 +2.654817 0.323641 -0.675202 +2.662493 0.335463 -0.675202 +2.67657 0.334725 -0.675202 +2.682969 0.322166 -0.675202 +2.668893 0.322903 -0.703393 +2.668893 0.322903 -0.675202 +numsurf 90 +SURF 0x00 +mat 1 +refs 3 +1 0 0 +0 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +6 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +2 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +7 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +3 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +8 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +4 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +9 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +5 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +10 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +0 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +11 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +1 0 0 +7 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +2 0 0 +8 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +3 0 0 +9 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +4 0 0 +10 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +5 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 4 +5 0 0 +0 0 0 +6 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +22 0 0 +27 0 0 +21 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 4 +23 0 0 +22 0 0 +16 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 4 +24 0 0 +23 0 0 +17 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 4 +25 0 0 +24 0 0 +18 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 4 +26 0 0 +25 0 0 +19 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 4 +27 0 0 +26 0 0 +20 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +16 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +27 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +17 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +22 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +18 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +23 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +19 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +24 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +20 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +25 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +21 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +26 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +29 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +34 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +30 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +35 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +31 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +36 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +32 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +37 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +33 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +38 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +28 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +39 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 4 +28 0 0 +29 0 0 +35 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 4 +29 0 0 +30 0 0 +36 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 4 +30 0 0 +31 0 0 +37 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 4 +31 0 0 +32 0 0 +38 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 4 +32 0 0 +33 0 0 +39 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 4 +33 0 0 +28 0 0 +34 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 4 +50 0 0 +55 0 0 +49 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 4 +51 0 0 +50 0 0 +44 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 4 +52 0 0 +51 0 0 +45 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 4 +53 0 0 +52 0 0 +46 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 4 +54 0 0 +53 0 0 +47 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 4 +55 0 0 +54 0 0 +48 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +44 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +55 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +45 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +50 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +46 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +51 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +47 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +52 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +48 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +53 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +49 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +54 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +57 0 0 +56 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +62 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +58 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +63 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +59 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +64 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +60 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +65 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +61 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +66 0 0 +67 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +56 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +67 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 4 +56 0 0 +57 0 0 +63 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 4 +57 0 0 +58 0 0 +64 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 4 +58 0 0 +59 0 0 +65 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 4 +59 0 0 +60 0 0 +66 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 4 +60 0 0 +61 0 0 +67 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 4 +61 0 0 +56 0 0 +62 0 0 +67 0 0 +kids 0 +OBJECT poly +name "hinge.L.001" +data 9 +Plane.007 +crease 30 +numvert 8 +2.283465 1.167867 -0.731509 +2.283465 1.167867 -0.765043 +2.34581 1.167867 -0.765043 +2.34581 1.167867 -0.731509 +2.283465 1.027411 -0.731509 +2.283465 1.027411 -0.765043 +2.34581 1.027411 -0.765043 +2.34581 1.027411 -0.731509 +numsurf 6 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +0 0 0 +4 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +1 0 0 +5 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 4 +6 0 0 +5 0 0 +1 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 4 +7 0 0 +6 0 0 +2 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +0 0 0 +3 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 4 +5 0 0 +6 0 0 +7 0 0 +4 0 0 +kids 0 +OBJECT poly +name "sparewheel2" +data 10 +Circle.040 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 288 +3.393257 1.421787 -0.536305 +3.393257 1.474359 -0.445248 +3.393257 1.501572 -0.343687 +3.393257 1.501572 -0.238543 +3.393257 1.474358 -0.136981 +3.393257 1.421786 -0.045924 +3.393257 1.347438 0.028424 +3.393257 1.256381 0.080996 +3.393257 1.15482 0.108209 +3.393257 1.049676 0.108209 +3.393257 0.948115 0.080996 +3.393257 0.857057 0.028424 +3.393257 0.782709 -0.045925 +3.393257 0.730137 -0.136982 +3.393257 0.702924 -0.238543 +3.393257 0.702924 -0.343687 +3.393257 0.730137 -0.445248 +3.393257 0.782709 -0.536305 +3.393257 0.857057 -0.610653 +3.393257 0.948115 -0.663225 +3.393257 1.049676 -0.690439 +3.393257 1.15482 -0.690439 +3.393257 1.256381 -0.663225 +3.393257 1.347438 -0.610653 +3.461783 1.421786 -0.536305 +3.393257 1.454067 -0.494237 +3.461783 1.474358 -0.445248 +3.393257 1.49465 -0.396259 +3.461783 1.501572 -0.343687 +3.393257 1.508493 -0.291115 +3.461783 1.501572 -0.238543 +3.393257 1.49465 -0.185971 +3.461783 1.474358 -0.136981 +3.393257 1.454066 -0.087992 +3.461783 1.421786 -0.045924 +3.393257 1.389506 -0.003856 +3.461783 1.347438 0.028424 +3.393257 1.30537 0.060704 +3.461783 1.256381 0.080996 +3.393257 1.207392 0.101288 +3.461783 1.15482 0.108209 +3.393257 1.102248 0.11513 +3.461783 1.049676 0.108209 +3.393257 0.997104 0.101288 +3.461783 0.948115 0.080996 +3.393257 0.899125 0.060704 +3.461783 0.857057 0.028424 +3.461783 0.782709 -0.045925 +3.393257 0.814989 -0.003856 +3.393257 0.750429 -0.087993 +3.461783 0.730137 -0.136982 +3.393257 0.709845 -0.185971 +3.461783 0.702924 -0.238543 +3.393257 0.696003 -0.291115 +3.461783 0.702924 -0.343687 +3.461783 0.730137 -0.445248 +3.393257 0.709845 -0.396259 +3.393257 0.750429 -0.494237 +3.461783 0.782709 -0.536305 +3.393257 0.814989 -0.578373 +3.461783 0.857057 -0.610653 +3.393257 0.899126 -0.642933 +3.461783 0.948115 -0.663225 +3.461783 1.049676 -0.690439 +3.393257 0.997104 -0.683517 +3.393257 1.102248 -0.69736 +3.461783 1.15482 -0.690439 +3.461783 1.256381 -0.663225 +3.393257 1.207392 -0.683517 +3.393257 1.389506 -0.578373 +3.461783 1.347438 -0.610653 +3.393257 1.30537 -0.642933 +3.324731 1.421787 -0.536305 +3.324731 1.474359 -0.445248 +3.324731 1.501572 -0.343687 +3.324731 1.501572 -0.238543 +3.324731 1.474358 -0.136981 +3.324731 1.421786 -0.045924 +3.324731 1.347438 0.028424 +3.324731 1.256381 0.080996 +3.324731 1.15482 0.108209 +3.32473 1.049676 0.108209 +3.324731 0.948115 0.080996 +3.324731 0.857057 0.028424 +3.324731 0.782709 -0.045925 +3.324731 0.730137 -0.136982 +3.324731 0.702924 -0.238543 +3.324731 0.702924 -0.343687 +3.324731 0.730137 -0.445248 +3.324731 0.782709 -0.536305 +3.324731 0.857057 -0.610653 +3.324731 0.948115 -0.663225 +3.32473 1.049676 -0.690439 +3.324731 1.15482 -0.690439 +3.324731 1.256381 -0.663225 +3.324731 1.347438 -0.610653 +3.292107 1.334991 -0.425489 +3.292107 1.361838 -0.360672 +3.292107 1.370996 -0.291115 +3.292107 1.361838 -0.221558 +3.292107 1.33499 -0.156741 +3.292107 1.292281 -0.101081 +3.292107 1.236622 -0.058372 +3.292107 1.171805 -0.031524 +3.292107 1.102248 -0.022367 +3.292107 1.032691 -0.031524 +3.292107 0.967874 -0.058372 +3.292107 0.912214 -0.101082 +3.292107 0.869505 -0.156741 +3.292107 0.842657 -0.221558 +3.292107 0.8335 -0.291115 +3.292107 0.842657 -0.360672 +3.292107 0.869505 -0.425489 +3.292107 0.912215 -0.481148 +3.292107 0.967874 -0.523857 +3.292107 1.032691 -0.550705 +3.292107 1.102248 -0.559863 +3.292107 1.171805 -0.550705 +3.292107 1.292281 -0.481148 +3.292107 1.236622 -0.523857 +3.292107 1.367567 -0.444297 +3.292107 1.398173 -0.370408 +3.292107 1.408612 -0.291115 +3.292107 1.398173 -0.211822 +3.292107 1.367567 -0.137933 +3.292107 1.31888 -0.074483 +3.292107 1.25543 -0.025796 +3.292107 1.181541 0.00481 +3.292107 1.102248 0.015249 +3.292107 1.022955 0.00481 +3.292107 0.949066 -0.025796 +3.292107 0.885616 -0.074483 +3.292107 0.836929 -0.137933 +3.292107 0.806323 -0.211822 +3.292107 0.795884 -0.291115 +3.292107 0.806323 -0.370408 +3.292107 0.836929 -0.444297 +3.292107 0.885616 -0.507747 +3.292107 0.949066 -0.556434 +3.292107 1.022955 -0.58704 +3.292107 1.102248 -0.597479 +3.292107 1.181541 -0.58704 +3.292107 1.31888 -0.507747 +3.292107 1.25543 -0.556434 +3.317144 1.423191 -0.476411 +3.317144 1.460213 -0.387031 +3.317144 1.47284 -0.291115 +3.317144 1.460213 -0.195198 +3.317144 1.42319 -0.105818 +3.317144 1.364296 -0.029066 +3.317144 1.287544 0.029828 +3.317144 1.198164 0.06685 +3.317144 1.102248 0.079478 +3.317144 1.006331 0.06685 +3.317144 0.916952 0.029828 +3.317144 0.840199 -0.029067 +3.317144 0.781305 -0.105819 +3.317144 0.744283 -0.195199 +3.317144 0.731655 -0.291115 +3.317144 0.744283 -0.387031 +3.317144 0.781305 -0.476411 +3.317144 0.8402 -0.553163 +3.317144 0.916952 -0.612057 +3.317144 1.006332 -0.64908 +3.317144 1.102248 -0.661707 +3.317144 1.198164 -0.64908 +3.317144 1.287544 -0.612057 +3.317144 1.364296 -0.553163 +3.473543 1.333683 -0.424734 +3.473543 1.36038 -0.360281 +3.473543 1.369486 -0.291115 +3.473543 1.36038 -0.221948 +3.473543 1.333683 -0.157496 +3.473543 1.291214 -0.102149 +3.473543 1.235867 -0.05968 +3.473543 1.171414 -0.032982 +3.473543 1.102248 -0.023877 +3.473543 1.033081 -0.032983 +3.473543 0.968629 -0.05968 +3.473543 0.913282 -0.102149 +3.473543 0.870813 -0.157496 +3.473543 0.844115 -0.221949 +3.473543 0.83501 -0.291115 +3.473543 0.844115 -0.360281 +3.473543 0.870813 -0.424734 +3.473543 0.913282 -0.480081 +3.473543 0.968629 -0.52255 +3.473543 1.033082 -0.549247 +3.473543 1.102248 -0.558353 +3.473543 1.171414 -0.549247 +3.473543 1.291214 -0.480081 +3.473543 1.235867 -0.52255 +3.486062 1.374454 -0.448273 +3.486062 1.405854 -0.372466 +3.486062 1.416564 -0.291115 +3.486062 1.405854 -0.209764 +3.486062 1.374453 -0.133957 +3.486062 1.324503 -0.06886 +3.486062 1.259406 -0.018909 +3.486062 1.183599 0.012491 +3.486062 1.102248 0.023201 +3.486062 1.020897 0.012491 +3.486062 0.94509 -0.018909 +3.486062 0.879993 -0.06886 +3.486062 0.830042 -0.133957 +3.486062 0.798642 -0.209764 +3.486062 0.787932 -0.291115 +3.486062 0.798642 -0.372466 +3.486062 0.830042 -0.448273 +3.486062 0.879993 -0.51337 +3.486062 0.94509 -0.563321 +3.486062 1.020897 -0.594721 +3.486062 1.102248 -0.605431 +3.486062 1.183599 -0.594721 +3.486062 1.324503 -0.51337 +3.486062 1.259406 -0.56332 +3.465198 1.423081 -0.476348 +3.465198 1.460091 -0.386998 +3.465198 1.472714 -0.291115 +3.465198 1.460091 -0.195231 +3.465198 1.423081 -0.105882 +3.465198 1.364207 -0.029155 +3.465198 1.287481 0.029718 +3.465198 1.198131 0.066728 +3.465198 1.102248 0.079351 +3.465198 1.006364 0.066728 +3.465198 0.917015 0.029718 +3.465198 0.840288 -0.029156 +3.465198 0.781415 -0.105882 +3.465198 0.744405 -0.195231 +3.465198 0.731782 -0.291115 +3.465198 0.744405 -0.386999 +3.465198 0.781415 -0.476348 +3.465198 0.840289 -0.553074 +3.465198 0.917015 -0.611948 +3.465198 1.006364 -0.648958 +3.465198 1.102248 -0.661581 +3.465198 1.198132 -0.648958 +3.465198 1.287481 -0.611948 +3.465198 1.364207 -0.553074 +3.444333 1.454067 -0.494237 +3.444333 1.49465 -0.396259 +3.444333 1.508493 -0.291115 +3.444333 1.49465 -0.185971 +3.444333 1.454066 -0.087992 +3.444333 1.389506 -0.003856 +3.444333 1.30537 0.060704 +3.444333 1.207392 0.101288 +3.444333 1.102248 0.11513 +3.444333 0.997104 0.101288 +3.444333 0.899125 0.060704 +3.444333 0.814989 -0.003856 +3.444333 0.750429 -0.087993 +3.444333 0.709845 -0.185971 +3.444333 0.696003 -0.291115 +3.444333 0.709845 -0.396259 +3.444333 0.750429 -0.494238 +3.444333 0.814989 -0.578373 +3.444333 0.899125 -0.642933 +3.444333 0.997104 -0.683517 +3.444333 1.102248 -0.69736 +3.444333 1.207392 -0.683517 +3.444333 1.30537 -0.642933 +3.444333 1.389506 -0.578373 +3.34218 1.454067 -0.494237 +3.34218 1.49465 -0.396259 +3.34218 1.508493 -0.291115 +3.34218 1.49465 -0.185971 +3.34218 1.454066 -0.087992 +3.34218 1.389506 -0.003856 +3.34218 1.30537 0.060704 +3.34218 1.207392 0.101288 +3.34218 1.102248 0.11513 +3.34218 0.997104 0.101288 +3.34218 0.899125 0.060704 +3.34218 0.814989 -0.003856 +3.34218 0.750429 -0.087993 +3.34218 0.709845 -0.185971 +3.34218 0.696003 -0.291115 +3.34218 0.709845 -0.396259 +3.34218 0.750429 -0.494237 +3.34218 0.814989 -0.578373 +3.34218 0.899126 -0.642933 +3.34218 0.997104 -0.683517 +3.34218 1.102248 -0.69736 +3.34218 1.207392 -0.683517 +3.34218 1.30537 -0.642933 +3.34218 1.389506 -0.578373 +numsurf 336 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +287 0.178452908993 0.524567306042 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +264 0.165624529123 0.534410893917 +72 0.172038733959 0.529489099979 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +167 0.174609094858 0.520723462105 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +264 0.165624529123 0.534410893917 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +265 0.150685578585 0.540598809719 +73 0.158155053854 0.537504851818 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +144 0.162906527519 0.529703140259 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +265 0.150685578585 0.540598809719 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +266 0.134654119611 0.542709350586 +74 0.142669856548 0.54165405035 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +145 0.149278670549 0.535348057747 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +266 0.134654119611 0.542709350586 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +267 0.118622675538 0.540598809719 +75 0.126638397574 0.54165405035 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +146 0.134654119611 0.537273347378 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +267 0.118622675538 0.540598809719 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +268 0.103683710098 0.534410893917 +76 0.111153200269 0.537504792213 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +147 0.120029598475 0.535347998142 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +268 0.103683710098 0.534410893917 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +269 0.0908553749323 0.524567246437 +77 0.0972695350647 0.529489040375 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +148 0.106401756406 0.529703140259 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +269 0.0908553749323 0.524567246437 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +270 0.0810118317604 0.511738836765 +78 0.0859335958958 0.518153131008 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +149 0.0946992188692 0.520723462105 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +270 0.0810118317604 0.511738836765 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +271 0.0748239308596 0.496799945831 +79 0.0779178887606 0.504269421101 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +150 0.0857195258141 0.509020864964 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +271 0.0748239308596 0.496799945831 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +272 0.0727133601904 0.480768471956 +80 0.0737686306238 0.488784253597 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +151 0.0800746977329 0.495393037796 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +272 0.0727133601904 0.480768471956 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +273 0.0748239308596 0.464737027884 +81 0.0737686306238 0.47275274992 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +152 0.0781493484974 0.480768471956 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +273 0.0748239308596 0.464737027884 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +274 0.0810118466616 0.449798107147 +82 0.0779178887606 0.457267582417 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +153 0.0800746977329 0.466143995523 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +274 0.0810118466616 0.449798107147 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +275 0.0908554345369 0.436969727278 +83 0.0859336405993 0.443383902311 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +154 0.0857195854187 0.452516138554 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +275 0.0908554345369 0.436969727278 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +276 0.103683769703 0.427126199007 +84 0.0972696095705 0.43204793334 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +155 0.0946992486715 0.440813541412 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +276 0.103683769703 0.427126199007 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +277 0.118622720242 0.420938313007 +85 0.111153259873 0.424032241106 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +156 0.106401786208 0.431833893061 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +277 0.118622720242 0.420938313007 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +278 0.134654194117 0.418827682734 +86 0.12663847208 0.419883012772 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +157 0.120029658079 0.42618906498 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +278 0.134654194117 0.418827682734 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +279 0.15068565309 0.420938313007 +87 0.142669931054 0.419883012772 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +158 0.134654179215 0.424263685942 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +279 0.15068565309 0.420938313007 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +280 0.165624588728 0.427126228809 +88 0.15815512836 0.424032270908 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +159 0.149278700352 0.42618906498 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +280 0.165624588728 0.427126228809 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +281 0.178452938795 0.436969786882 +89 0.17203874886 0.432047963142 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +160 0.162906616926 0.431833952665 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +281 0.178452938795 0.436969786882 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +282 0.188296467066 0.44979813695 +90 0.18337470293 0.443383932114 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +161 0.17460912466 0.440813601017 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +282 0.188296467066 0.44979813695 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +283 0.194484397769 0.464737057686 +91 0.191390439868 0.457267612219 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +162 0.183588787913 0.452516138554 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +283 0.194484397769 0.464737057686 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +284 0.196594953537 0.480768531561 +92 0.195539683104 0.472752779722 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +163 0.189233630896 0.466143995523 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +284 0.196594953537 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +285 0.194484397769 0.496799975634 +93 0.195539683104 0.488784253597 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +164 0.191158980131 0.480768531561 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +285 0.194484397769 0.496799975634 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +286 0.188296467066 0.51173889637 +94 0.191390439868 0.504269480705 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +165 0.189233630896 0.495393067598 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +286 0.188296467066 0.51173889637 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +287 0.178452908993 0.524567306042 +95 0.183374688029 0.518153131008 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +166 0.183588787913 0.509020924568 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +240 0.165624529123 0.534410893917 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +263 0.178452908993 0.524567306042 +24 0.172038733959 0.529489099979 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +216 0.162896901369 0.529686510563 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +241 0.150685578585 0.540598809719 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +240 0.165624529123 0.534410893917 +26 0.158155053854 0.537504851818 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +217 0.149273663759 0.535329461098 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +242 0.134654119611 0.542709350586 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +241 0.150685578585 0.540598809719 +28 0.142669856548 0.54165405035 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +218 0.134654119611 0.537254154682 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +243 0.118622675538 0.540598809719 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +242 0.134654119611 0.542709350586 +30 0.126638397574 0.54165405035 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +219 0.120034605265 0.535329401493 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +244 0.103683710098 0.534410834312 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +243 0.118622675538 0.540598809719 +32 0.111153200269 0.537504792213 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +220 0.106411337852 0.529686450958 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +245 0.0908553749323 0.524567246437 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +244 0.103683710098 0.534410834312 +34 0.0972695350647 0.529489040375 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +221 0.0947128087282 0.520709812641 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +246 0.0810118317604 0.511738836765 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +245 0.0908553749323 0.524567246437 +36 0.0859335958958 0.518153131008 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +222 0.0857362151146 0.509011268616 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +247 0.0748239308596 0.496799916029 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +246 0.0810118317604 0.511738836765 +38 0.0779178887606 0.504269421101 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +223 0.0800932794809 0.495388031006 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +248 0.0727133601904 0.480768471956 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +247 0.0748239308596 0.496799916029 +40 0.0737686306238 0.488784193993 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +224 0.0781685709953 0.480768471956 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +249 0.0748239308596 0.464737027884 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +248 0.0727133601904 0.480768471956 +42 0.0737686306238 0.47275274992 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +225 0.0800932794809 0.466148912907 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +250 0.0810118466616 0.449798107147 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +249 0.0748239308596 0.464737027884 +44 0.0779178887606 0.457267582417 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +226 0.0857362300158 0.452525675297 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +251 0.0908554345369 0.436969727278 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +250 0.0810118466616 0.449798107147 +46 0.0859336405993 0.443383902311 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +227 0.0947128683329 0.440827161074 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +252 0.103683769703 0.427126199007 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +251 0.0908554345369 0.436969727278 +47 0.0972696095705 0.43204793334 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +228 0.106411382556 0.431850552559 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +253 0.118622720242 0.420938313007 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +252 0.103683769703 0.427126199007 +50 0.111153259873 0.424032241106 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +229 0.120034620166 0.426207602024 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +254 0.134654194117 0.418827682734 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +253 0.118622720242 0.420938313007 +52 0.12663847208 0.419883012772 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +230 0.134654179215 0.424282938242 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +255 0.15068565309 0.420938313007 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +254 0.134654194117 0.418827682734 +54 0.142669931054 0.419883012772 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +231 0.149273738265 0.426207602024 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +256 0.165624588728 0.427126228809 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +255 0.15068565309 0.420938313007 +55 0.15815512836 0.424032270908 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +232 0.162896946073 0.431850552559 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +257 0.178452938795 0.436969786882 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +256 0.165624588728 0.427126228809 +58 0.17203874886 0.432047963142 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +233 0.1745955199 0.440827220678 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +258 0.188296467066 0.44979813695 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +257 0.178452938795 0.436969786882 +60 0.18337470293 0.443383932114 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +234 0.183572113514 0.452525734901 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +259 0.194484397769 0.464737057686 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +258 0.188296467066 0.44979813695 +62 0.191390439868 0.457267612219 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +235 0.189215064049 0.466149002314 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +260 0.196594953537 0.480768531561 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +259 0.194484397769 0.464737057686 +63 0.195539683104 0.472752779722 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +236 0.191139742732 0.480768531561 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +261 0.194484397769 0.496799975634 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +260 0.196594953537 0.480768531561 +66 0.195539683104 0.488784253597 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +237 0.189215064049 0.495388060808 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +262 0.188296467066 0.51173889637 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +261 0.194484397769 0.496799975634 +67 0.191390439868 0.504269480705 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +238 0.183572113514 0.50901132822 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +263 0.178452908993 0.524567306042 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +262 0.188296467066 0.51173889637 +70 0.183374688029 0.518153131008 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +239 0.174595504999 0.520709872246 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 4 +24 0.00655085407197 0.452727437019 +0 0.0154595961794 0.452727437019 +25 0.0154596110806 0.458196461201 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +72 0.0243683308363 0.452727437019 +264 0.022099763155 0.458196461201 +25 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +24 0.00655085407197 0.452727437019 +263 0.00881944410503 0.447258412838 +69 0.0154596073553 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +72 0.0243683308363 0.452727437019 +0 0.0154595961794 0.452727437019 +69 0.0154596073553 0.447258412838 +287 0.022099763155 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +1 0.0154595961794 0.464565306902 +26 0.00655088014901 0.464565306902 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +1 0.0154595961794 0.464565306902 +27 0.0154596110806 0.470934122801 +241 0.00881944410503 0.470934122801 +26 0.00655088014901 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +264 0.022099763155 0.458196461201 +73 0.0243683308363 0.464565306902 +1 0.0154595961794 0.464565306902 +25 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +73 0.0243683308363 0.464565306902 +265 0.022099763155 0.470934122801 +27 0.0154596110806 0.470934122801 +1 0.0154595961794 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +27 0.0154596110806 0.470934122801 +2 0.0154595961794 0.477768719196 +28 0.00655088014901 0.477768719196 +241 0.00881944410503 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +2 0.0154595961794 0.477768719196 +29 0.0154596110806 0.484603285789 +242 0.00881944410503 0.484603285789 +28 0.00655088014901 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +265 0.022099763155 0.470934122801 +74 0.0243683308363 0.477768719196 +2 0.0154595961794 0.477768719196 +27 0.0154596110806 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +74 0.0243683308363 0.477768719196 +266 0.022099763155 0.484603285789 +29 0.0154596110806 0.484603285789 +2 0.0154595961794 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +29 0.0154596110806 0.484603285789 +3 0.0154595961794 0.491437911987 +30 0.00655088014901 0.491437911987 +242 0.00881944410503 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +3 0.0154595961794 0.491437911987 +31 0.0154596110806 0.49827247858 +243 0.00881944410503 0.49827247858 +30 0.00655088014901 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +266 0.022099763155 0.484603285789 +75 0.0243683308363 0.491437911987 +3 0.0154595961794 0.491437911987 +29 0.0154596110806 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +75 0.0243683308363 0.491437911987 +267 0.022099763155 0.49827247858 +31 0.0154596110806 0.49827247858 +3 0.0154595961794 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +31 0.0154596110806 0.49827247858 +4 0.0154595961794 0.504641294479 +32 0.00655088014901 0.504641294479 +243 0.00881944410503 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +4 0.0154595961794 0.504641294479 +33 0.0154596110806 0.511010169983 +244 0.00881944410503 0.511010169983 +32 0.00655088014901 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +267 0.022099763155 0.49827247858 +76 0.0243683308363 0.504641294479 +4 0.0154595961794 0.504641294479 +31 0.0154596110806 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +76 0.0243683308363 0.504641294479 +268 0.022099763155 0.511010169983 +33 0.0154596110806 0.511010169983 +4 0.0154595961794 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +33 0.0154596110806 0.511010169983 +5 0.0154595999047 0.516479194164 +34 0.00655085407197 0.516479194164 +244 0.00881944410503 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +5 0.0154595999047 0.516479194164 +35 0.0154596110806 0.521948158741 +245 0.00881944410503 0.521948158741 +34 0.00655085407197 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +268 0.022099763155 0.511010169983 +77 0.0243683308363 0.516479194164 +5 0.0154595999047 0.516479194164 +33 0.0154596110806 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +77 0.0243683308363 0.516479194164 +269 0.022099763155 0.521948158741 +35 0.0154596110806 0.521948158741 +5 0.0154595999047 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +35 0.0154596110806 0.521948158741 +6 0.015459577553 0.526144683361 +36 0.00655085779727 0.526144683361 +245 0.00881944410503 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +6 0.015459577553 0.526144683361 +37 0.0154595999047 0.530341267586 +246 0.0088194347918 0.530341267586 +36 0.00655085779727 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +269 0.022099763155 0.521948158741 +78 0.0243683084846 0.526144683361 +6 0.015459577553 0.526144683361 +35 0.0154596110806 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +78 0.0243683084846 0.526144683361 +270 0.022099763155 0.530341267586 +37 0.0154595999047 0.530341267586 +6 0.015459577553 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +37 0.0154595999047 0.530341267586 +7 0.015459577553 0.532979309559 +38 0.00655085779727 0.532979309559 +246 0.0088194347918 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +7 0.015459577553 0.532979309559 +39 0.0154595999047 0.535617351532 +247 0.0088194347918 0.535617351532 +38 0.00655085779727 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +270 0.022099763155 0.530341267586 +79 0.0243683084846 0.532979309559 +7 0.015459577553 0.532979309559 +37 0.0154595999047 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +79 0.0243683084846 0.532979309559 +271 0.022099763155 0.535617351532 +39 0.0154595999047 0.535617351532 +7 0.015459577553 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +39 0.0154595999047 0.535617351532 +8 0.0154595999047 0.53651714325 +40 0.00655088014901 0.53651714325 +247 0.0088194347918 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +8 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +248 0.0088194552809 0.537416934967 +40 0.00655088014901 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +271 0.022099763155 0.535617351532 +80 0.0243683308363 0.53651714325 +8 0.0154595999047 0.53651714325 +39 0.0154595999047 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +80 0.0243683308363 0.53651714325 +272 0.022099789232 0.537416934967 +41 0.0154596222565 0.537416934967 +8 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +41 0.0154596222565 0.537416934967 +9 0.0154595999047 0.53651714325 +42 0.00655088014901 0.53651714325 +248 0.0088194552809 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +9 0.0428032502532 0.53651714325 +43 0.0428032390773 0.535617351532 +249 0.0494434013963 0.535617351532 +42 0.0517119690776 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +272 0.022099789232 0.537416934967 +81 0.0243683308363 0.53651714325 +9 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +81 0.0338945165277 0.53651714325 +273 0.036163084209 0.535617351532 +43 0.0428032390773 0.535617351532 +9 0.0428032502532 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +43 0.0428032390773 0.535617351532 +10 0.0428032502532 0.532979249954 +44 0.0517119690776 0.532979249954 +249 0.0494434013963 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +10 0.0428032502532 0.532979249954 +45 0.0428032390773 0.530341207981 +250 0.0494434013963 0.530341207981 +44 0.0517119690776 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +273 0.036163084209 0.535617351532 +82 0.0338945165277 0.532979249954 +10 0.0428032502532 0.532979249954 +43 0.0428032390773 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +82 0.0338945165277 0.532979249954 +274 0.036163084209 0.530341207981 +45 0.0428032390773 0.530341207981 +10 0.0428032502532 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +45 0.0428032390773 0.530341207981 +11 0.0428032502532 0.526144683361 +46 0.0517119690776 0.526144683361 +250 0.0494434013963 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +11 0.0428032502532 0.526144683361 +48 0.0428032390773 0.521948158741 +251 0.0494434051216 0.521948158741 +46 0.0517119690776 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +274 0.036163084209 0.530341207981 +83 0.0338945165277 0.526144683361 +11 0.0428032502532 0.526144683361 +45 0.0428032390773 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +83 0.0338945165277 0.526144683361 +275 0.036163084209 0.521948158741 +48 0.0428032390773 0.521948158741 +11 0.0428032502532 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +84 0.0338945165277 0.51647913456 +12 0.0428032502532 0.51647913456 +48 0.0428032390773 0.521948158741 +275 0.036163084209 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +12 0.0428032502532 0.51647913456 +47 0.0517119690776 0.51647913456 +251 0.0494434051216 0.521948158741 +48 0.0428032390773 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +49 0.0428032390773 0.511010050774 +12 0.0428032502532 0.51647913456 +84 0.0338945165277 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +252 0.0494434051216 0.511010050774 +47 0.0517119690776 0.51647913456 +12 0.0428032502532 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +13 0.0428032539785 0.504641294479 +50 0.0517119690776 0.504641294479 +252 0.0494434051216 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +13 0.0428032539785 0.504641294479 +51 0.0428032390773 0.498272418976 +253 0.0494434051216 0.498272418976 +50 0.0517119690776 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +85 0.0338945165277 0.504641294479 +13 0.0428032539785 0.504641294479 +49 0.0428032390773 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +85 0.0338945165277 0.504641294479 +277 0.036163084209 0.498272418976 +51 0.0428032390773 0.498272418976 +13 0.0428032539785 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +51 0.0428032390773 0.498272418976 +14 0.0428032539785 0.491437852383 +52 0.0517119690776 0.491437852383 +253 0.0494434051216 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +14 0.0428032539785 0.491437852383 +53 0.0428032390773 0.484603226185 +254 0.0494434051216 0.484603226185 +52 0.0517119690776 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +277 0.036163084209 0.498272418976 +86 0.0338945165277 0.491437852383 +14 0.0428032539785 0.491437852383 +51 0.0428032390773 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +86 0.0338945165277 0.491437852383 +278 0.036163084209 0.484603226185 +53 0.0428032390773 0.484603226185 +14 0.0428032539785 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +53 0.0428032390773 0.484603226185 +15 0.0428032539785 0.477768689394 +54 0.0517119690776 0.477768689394 +254 0.0494434051216 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +15 0.0428032539785 0.477768689394 +56 0.0428032390773 0.470934063196 +255 0.0494434051216 0.470934063196 +54 0.0517119690776 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +278 0.036163084209 0.484603226185 +87 0.0338945165277 0.477768689394 +15 0.0428032539785 0.477768689394 +53 0.0428032390773 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +87 0.0338945165277 0.477768689394 +279 0.036163084209 0.470934063196 +56 0.0428032390773 0.470934063196 +15 0.0428032539785 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +88 0.0338945165277 0.4645652771 +16 0.0428032539785 0.4645652771 +56 0.0428032390773 0.470934063196 +279 0.036163084209 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +16 0.0428032539785 0.4645652771 +55 0.0517119690776 0.4645652771 +255 0.0494434051216 0.470934063196 +56 0.0428032390773 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +57 0.0428032390773 0.458196431398 +16 0.0428032539785 0.4645652771 +88 0.0338945165277 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +256 0.0494434051216 0.458196431398 +55 0.0517119690776 0.4645652771 +16 0.0428032539785 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +17 0.0428032539785 0.452727407217 +58 0.0517119690776 0.452727407217 +256 0.0494434051216 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +17 0.0428032539785 0.452727407217 +59 0.0428032428026 0.447258353233 +257 0.0494434051216 0.447258353233 +58 0.0517119690776 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +89 0.0338945165277 0.452727407217 +17 0.0428032539785 0.452727407217 +57 0.0428032390773 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +89 0.0338945165277 0.452727407217 +281 0.036163084209 0.447258353233 +59 0.0428032428026 0.447258353233 +17 0.0428032539785 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +59 0.0428032428026 0.447258353233 +18 0.0428032539785 0.443061828613 +60 0.0517119728029 0.443061828613 +257 0.0494434051216 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +18 0.0428032539785 0.443061828613 +61 0.0428032428026 0.438865333796 +258 0.0494434088469 0.438865333796 +60 0.0517119728029 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +281 0.036163084209 0.447258353233 +90 0.0338945239782 0.443061828613 +18 0.0428032539785 0.443061828613 +59 0.0428032428026 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +90 0.0338945239782 0.443061828613 +282 0.0361630916595 0.438865333796 +61 0.0428032428026 0.438865333796 +18 0.0428032539785 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +61 0.0428032428026 0.438865333796 +19 0.0428032539785 0.43622726202 +62 0.0517119728029 0.43622726202 +258 0.0494434088469 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +19 0.0428032539785 0.43622726202 +64 0.0428032428026 0.433589220047 +259 0.0494434088469 0.433589220047 +62 0.0517119728029 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +282 0.0361630916595 0.438865333796 +91 0.0338945239782 0.43622726202 +19 0.0428032539785 0.43622726202 +61 0.0428032428026 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +91 0.0338945239782 0.43622726202 +283 0.0361630916595 0.433589220047 +64 0.0428032428026 0.433589220047 +19 0.0428032539785 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +92 0.0338945239782 0.432689428329 +20 0.0428032539785 0.432689428329 +64 0.0428032428026 0.433589220047 +283 0.0361630916595 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +20 0.0428032539785 0.432689428329 +63 0.0517119728029 0.432689428329 +259 0.0494434088469 0.433589220047 +64 0.0428032428026 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +284 0.0361630693078 0.431789666414 +65 0.0428032316267 0.431789666414 +20 0.0428032539785 0.432689428329 +92 0.0338945239782 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +65 0.0428032316267 0.431789666414 +260 0.049443397671 0.431789666414 +63 0.0517119728029 0.432689428329 +20 0.0428032539785 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +65 0.0154596185312 0.431789666414 +21 0.0154595961794 0.432689428329 +66 0.00655087642372 0.432689428329 +260 0.00881945155561 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +21 0.0154595961794 0.432689428329 +68 0.0154595961794 0.433589220047 +261 0.00881942920387 0.433589220047 +66 0.00655087642372 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +284 0.0220997817814 0.431789666414 +93 0.024368327111 0.432689428329 +21 0.0154595961794 0.432689428329 +65 0.0154596185312 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +93 0.024368327111 0.432689428329 +285 0.0220997594297 0.433589220047 +68 0.0154595961794 0.433589220047 +21 0.0154595961794 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +94 0.0243683047593 0.43622726202 +22 0.0154595738277 0.43622726202 +68 0.0154595961794 0.433589220047 +285 0.0220997594297 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +22 0.0154595738277 0.43622726202 +67 0.00655085407197 0.43622726202 +261 0.00881942920387 0.433589220047 +68 0.0154595961794 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +286 0.0220997594297 0.438865333796 +71 0.0154595961794 0.438865333796 +22 0.0154595738277 0.43622726202 +94 0.0243683047593 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +71 0.0154595961794 0.438865333796 +262 0.00881942920387 0.438865333796 +67 0.00655085407197 0.43622726202 +22 0.0154595738277 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +95 0.0243683047593 0.443061858416 +23 0.0154595738277 0.443061858416 +71 0.0154595961794 0.438865333796 +286 0.0220997594297 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +23 0.0154595738277 0.443061858416 +70 0.00655085407197 0.443061858416 +262 0.00881942920387 0.438865333796 +71 0.0154595961794 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +287 0.022099763155 0.447258412838 +69 0.0154596073553 0.447258412838 +23 0.0154595738277 0.443061858416 +95 0.0243683047593 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +263 0.00881944410503 0.447258412838 +70 0.00655085407197 0.443061858416 +23 0.0154595738277 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +142 0.167684406042 0.513798773289 +118 0.163628861308 0.509743213654 +96 0.155142366886 0.516255199909 +120 0.158010050654 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +121 0.146744042635 0.525888681412 +120 0.158010050654 0.521222114563 +96 0.155142366886 0.516255199909 +97 0.145259618759 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +122 0.134654119611 0.527480363846 +121 0.146744042635 0.525888681412 +97 0.145259618759 0.520348727703 +98 0.134654119611 0.521744906902 +SURF 0x10 +mat 10 +refs 4 +123 0.122564211488 0.525888621807 +122 0.134654119611 0.527480363846 +98 0.134654119611 0.521744906902 +99 0.124048650265 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +124 0.111298218369 0.521222114563 +123 0.122564211488 0.525888621807 +99 0.124048650265 0.520348727703 +100 0.114165946841 0.516255140305 +SURF 0x10 +mat 10 +refs 4 +125 0.101623922586 0.513798773289 +124 0.111298218369 0.521222114563 +100 0.114165946841 0.516255140305 +101 0.105679437518 0.509743213654 +SURF 0x10 +mat 10 +refs 4 +126 0.0942005366087 0.504124403 +125 0.101623922586 0.513798773289 +101 0.105679437518 0.509743213654 +102 0.0991675406694 0.50125670433 +SURF 0x10 +mat 10 +refs 4 +127 0.0895339995623 0.492858439684 +126 0.0942005366087 0.504124403 +102 0.0991675406694 0.50125670433 +103 0.0950739830732 0.491373956203 +SURF 0x10 +mat 10 +refs 4 +128 0.0879423320293 0.480768471956 +127 0.0895339995623 0.492858439684 +103 0.0950739830732 0.491373956203 +104 0.0936777442694 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +129 0.0895340144634 0.468678593636 +128 0.0879423320293 0.480768471956 +104 0.0936777442694 0.480768471956 +105 0.0950739979744 0.470163017511 +SURF 0x10 +mat 10 +refs 4 +130 0.0942005366087 0.457412600517 +129 0.0895340144634 0.468678593636 +105 0.0950739979744 0.470163017511 +106 0.0991675704718 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +130 0.0942005366087 0.457412600517 +106 0.0991675704718 0.460280328989 +107 0.105679482222 0.451793789864 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +107 0.105679482222 0.451793789864 +108 0.114166006446 0.445281893015 +132 0.111298263073 0.440314859152 +SURF 0x10 +mat 10 +refs 4 +133 0.12256424129 0.435648351908 +132 0.111298263073 0.440314859152 +108 0.114166006446 0.445281893015 +109 0.124048694968 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +134 0.134654179215 0.434056699276 +133 0.12256424129 0.435648351908 +109 0.124048694968 0.441188365221 +110 0.134654179215 0.439792096615 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +134 0.134654179215 0.434056699276 +110 0.134654179215 0.439792096615 +111 0.145259648561 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +111 0.145259648561 0.441188365221 +112 0.155142381787 0.445281893015 +136 0.158010080457 0.440314888954 +SURF 0x10 +mat 10 +refs 4 +137 0.167684406042 0.447738260031 +136 0.158010080457 0.440314888954 +112 0.155142381787 0.445281893015 +113 0.163628861308 0.451793819666 +SURF 0x10 +mat 10 +refs 4 +138 0.17510779202 0.45741263032 +137 0.167684406042 0.447738260031 +113 0.163628861308 0.451793819666 +114 0.17014080286 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +138 0.17510779202 0.45741263032 +114 0.17014080286 0.460280328989 +115 0.174234315753 0.470163047314 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +115 0.174234315753 0.470163047314 +116 0.175630584359 0.480768531561 +140 0.181365996599 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +140 0.181365996599 0.480768531561 +116 0.175630584359 0.480768531561 +117 0.174234315753 0.491374015808 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +117 0.174234315753 0.491374015808 +119 0.17014080286 0.501256763935 +143 0.17510779202 0.504124403 +SURF 0x10 +mat 10 +refs 4 +143 0.17510779202 0.504124403 +119 0.17014080286 0.501256763935 +118 0.163628861308 0.509743213654 +142 0.167684406042 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +167 0.174609094858 0.520723462105 +142 0.167684406042 0.513798773289 +120 0.158010050654 0.521222114563 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +145 0.149278670549 0.535348057747 +144 0.162906527519 0.529703140259 +120 0.158010050654 0.521222114563 +121 0.146744042635 0.525888681412 +SURF 0x10 +mat 10 +refs 4 +146 0.134654119611 0.537273347378 +145 0.149278670549 0.535348057747 +121 0.146744042635 0.525888681412 +122 0.134654119611 0.527480363846 +SURF 0x10 +mat 10 +refs 4 +147 0.120029598475 0.535347998142 +146 0.134654119611 0.537273347378 +122 0.134654119611 0.527480363846 +123 0.122564211488 0.525888621807 +SURF 0x10 +mat 10 +refs 4 +148 0.106401756406 0.529703140259 +147 0.120029598475 0.535347998142 +123 0.122564211488 0.525888621807 +124 0.111298218369 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +149 0.0946992188692 0.520723462105 +148 0.106401756406 0.529703140259 +124 0.111298218369 0.521222114563 +125 0.101623922586 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +150 0.0857195258141 0.509020864964 +149 0.0946992188692 0.520723462105 +125 0.101623922586 0.513798773289 +126 0.0942005366087 0.504124403 +SURF 0x10 +mat 10 +refs 4 +151 0.0800746977329 0.495393037796 +150 0.0857195258141 0.509020864964 +126 0.0942005366087 0.504124403 +127 0.0895339995623 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +152 0.0781493484974 0.480768471956 +151 0.0800746977329 0.495393037796 +127 0.0895339995623 0.492858439684 +128 0.0879423320293 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +153 0.0800746977329 0.466143995523 +152 0.0781493484974 0.480768471956 +128 0.0879423320293 0.480768471956 +129 0.0895340144634 0.468678593636 +SURF 0x10 +mat 10 +refs 4 +154 0.0857195854187 0.452516138554 +153 0.0800746977329 0.466143995523 +129 0.0895340144634 0.468678593636 +130 0.0942005366087 0.457412600517 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +154 0.0857195854187 0.452516138554 +130 0.0942005366087 0.457412600517 +131 0.101623937488 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +131 0.101623937488 0.447738260031 +132 0.111298263073 0.440314859152 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 4 +157 0.120029658079 0.42618906498 +156 0.106401786208 0.431833893061 +132 0.111298263073 0.440314859152 +133 0.12256424129 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +158 0.134654179215 0.424263685942 +157 0.120029658079 0.42618906498 +133 0.12256424129 0.435648351908 +134 0.134654179215 0.434056699276 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +158 0.134654179215 0.424263685942 +134 0.134654179215 0.434056699276 +135 0.146744087338 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +135 0.146744087338 0.435648351908 +136 0.158010080457 0.440314888954 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 4 +161 0.17460912466 0.440813601017 +160 0.162906616926 0.431833952665 +136 0.158010080457 0.440314888954 +137 0.167684406042 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +162 0.183588787913 0.452516138554 +161 0.17460912466 0.440813601017 +137 0.167684406042 0.447738260031 +138 0.17510779202 0.45741263032 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +162 0.183588787913 0.452516138554 +138 0.17510779202 0.45741263032 +139 0.179774314165 0.468678623438 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +139 0.179774314165 0.468678623438 +140 0.181365996599 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +164 0.191158980131 0.480768531561 +140 0.181365996599 0.480768531561 +141 0.179774314165 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +141 0.179774314165 0.492858439684 +143 0.17510779202 0.504124403 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 4 +166 0.183588787913 0.509020924568 +143 0.17510779202 0.504124403 +142 0.167684406042 0.513798773289 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +168 0.155027270317 0.516055822372 +190 0.163466095924 0.509580433369 +214 0.16854172945 0.514656126499 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +193 0.147057831287 0.527059793472 +169 0.145200058818 0.520126402378 +168 0.155027270317 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +193 0.147057831287 0.527059793472 +194 0.134654119611 0.528692781925 +170 0.134654119611 0.521514713764 +169 0.145200058818 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +194 0.134654119611 0.528692781925 +195 0.122250407934 0.527059793472 +171 0.124108210206 0.520126402378 +170 0.134654119611 0.521514713764 +SURF 0x10 +mat 10 +refs 4 +195 0.122250407934 0.527059793472 +196 0.11069200933 0.52227216959 +172 0.114281013608 0.516055822372 +171 0.124108210206 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +196 0.11069200933 0.52227216959 +197 0.100766569376 0.514656066895 +173 0.105842202902 0.509580433369 +172 0.114281013608 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +197 0.100766569376 0.514656066895 +198 0.0931505560875 0.504730641842 +174 0.0993668884039 0.501141607761 +173 0.105842202902 0.509580433369 +SURF 0x10 +mat 10 +refs 4 +198 0.0931505560875 0.504730641842 +199 0.0883629024029 0.493172168732 +175 0.0952962934971 0.491314411163 +174 0.0993668884039 0.501141607761 +SURF 0x10 +mat 10 +refs 4 +199 0.0883629024029 0.493172168732 +200 0.0867298841476 0.480768471956 +176 0.093907892704 0.480768471956 +175 0.0952962934971 0.491314411163 +SURF 0x10 +mat 10 +refs 4 +200 0.0867298841476 0.480768471956 +201 0.0883629024029 0.468364775181 +177 0.0952963232994 0.470222562551 +176 0.093907892704 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +201 0.0883629024029 0.468364775181 +202 0.0931505560875 0.456806391478 +178 0.0993668884039 0.460395395756 +177 0.0952963232994 0.470222562551 +SURF 0x10 +mat 10 +refs 4 +202 0.0931505560875 0.456806391478 +203 0.100766628981 0.446880936623 +179 0.105842217803 0.451956540346 +178 0.0993668884039 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +180 0.114281058311 0.445481210947 +179 0.105842217803 0.451956540346 +203 0.100766628981 0.446880936623 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +205 0.122250497341 0.434477210045 +181 0.124108269811 0.441410690546 +180 0.114281058311 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +205 0.122250497341 0.434477210045 +206 0.134654179215 0.432844251394 +182 0.134654179215 0.440022289753 +181 0.124108269811 0.441410690546 +SURF 0x10 +mat 10 +refs 4 +206 0.134654179215 0.432844251394 +207 0.147057905793 0.434477210045 +183 0.145200103521 0.441410690546 +182 0.134654179215 0.440022289753 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +184 0.155027285218 0.445481210947 +183 0.145200103521 0.441410690546 +207 0.147057905793 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +209 0.168541744351 0.446880996227 +185 0.163466125727 0.451956599951 +184 0.155027285218 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +209 0.168541744351 0.446880996227 +210 0.176157802343 0.456806391478 +186 0.169941455126 0.460395395756 +185 0.163466125727 0.451956599951 +SURF 0x10 +mat 10 +refs 4 +210 0.176157802343 0.456806391478 +211 0.180945426226 0.468364834785 +187 0.174012005329 0.470222622156 +186 0.169941455126 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +188 0.175400406122 0.480768531561 +187 0.174012005329 0.470222622156 +211 0.180945426226 0.468364834785 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +213 0.180945426226 0.493172228336 +189 0.174012005329 0.491314411163 +188 0.175400406122 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +215 0.176157772541 0.504730641842 +191 0.169941455126 0.501141607761 +189 0.174012005329 0.491314411163 +213 0.180945426226 0.493172228336 +SURF 0x10 +mat 10 +refs 4 +214 0.16854172945 0.514656126499 +190 0.163466095924 0.509580433369 +191 0.169941455126 0.501141607761 +215 0.176157772541 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +192 0.158616274595 0.52227216959 +214 0.16854172945 0.514656126499 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +217 0.149273663759 0.535329461098 +193 0.147057831287 0.527059793472 +192 0.158616274595 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +217 0.149273663759 0.535329461098 +218 0.134654119611 0.537254154682 +194 0.134654119611 0.528692781925 +193 0.147057831287 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +218 0.134654119611 0.537254154682 +219 0.120034605265 0.535329401493 +195 0.122250407934 0.527059793472 +194 0.134654119611 0.528692781925 +SURF 0x10 +mat 10 +refs 4 +219 0.120034605265 0.535329401493 +220 0.106411337852 0.529686450958 +196 0.11069200933 0.52227216959 +195 0.122250407934 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +220 0.106411337852 0.529686450958 +221 0.0947128087282 0.520709812641 +197 0.100766569376 0.514656066895 +196 0.11069200933 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +221 0.0947128087282 0.520709812641 +222 0.0857362151146 0.509011268616 +198 0.0931505560875 0.504730641842 +197 0.100766569376 0.514656066895 +SURF 0x10 +mat 10 +refs 4 +222 0.0857362151146 0.509011268616 +223 0.0800932794809 0.495388031006 +199 0.0883629024029 0.493172168732 +198 0.0931505560875 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +223 0.0800932794809 0.495388031006 +224 0.0781685709953 0.480768471956 +200 0.0867298841476 0.480768471956 +199 0.0883629024029 0.493172168732 +SURF 0x10 +mat 10 +refs 4 +224 0.0781685709953 0.480768471956 +225 0.0800932794809 0.466148912907 +201 0.0883629024029 0.468364775181 +200 0.0867298841476 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +225 0.0800932794809 0.466148912907 +226 0.0857362300158 0.452525675297 +202 0.0931505560875 0.456806391478 +201 0.0883629024029 0.468364775181 +SURF 0x10 +mat 10 +refs 4 +226 0.0857362300158 0.452525675297 +227 0.0947128683329 0.440827161074 +203 0.100766628981 0.446880936623 +202 0.0931505560875 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +204 0.110692054033 0.439264863729 +203 0.100766628981 0.446880936623 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +229 0.120034620166 0.426207602024 +205 0.122250497341 0.434477210045 +204 0.110692054033 0.439264863729 +SURF 0x10 +mat 10 +refs 4 +229 0.120034620166 0.426207602024 +230 0.134654179215 0.424282938242 +206 0.134654179215 0.432844251394 +205 0.122250497341 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +230 0.134654179215 0.424282938242 +231 0.149273738265 0.426207602024 +207 0.147057905793 0.434477210045 +206 0.134654179215 0.432844251394 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +208 0.158616304398 0.439264893532 +207 0.147057905793 0.434477210045 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +233 0.1745955199 0.440827220678 +209 0.168541744351 0.446880996227 +208 0.158616304398 0.439264893532 +SURF 0x10 +mat 10 +refs 4 +233 0.1745955199 0.440827220678 +234 0.183572113514 0.452525734901 +210 0.176157802343 0.456806391478 +209 0.168541744351 0.446880996227 +SURF 0x10 +mat 10 +refs 4 +234 0.183572113514 0.452525734901 +235 0.189215064049 0.466149002314 +211 0.180945426226 0.468364834785 +210 0.176157802343 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +212 0.182578399777 0.480768531561 +211 0.180945426226 0.468364834785 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +237 0.189215064049 0.495388060808 +213 0.180945426226 0.493172228336 +212 0.182578399777 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +238 0.183572113514 0.50901132822 +215 0.176157772541 0.504730641842 +213 0.180945426226 0.493172228336 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 4 +239 0.174595504999 0.520709872246 +214 0.16854172945 0.514656126499 +215 0.176157772541 0.504730641842 +238 0.183572113514 0.50901132822 +kids 0 +OBJECT poly +name "hinge.L" +data 9 +Plane.005 +crease 30 +numvert 8 +2.283465 1.167867 0.731264 +2.283465 1.167867 0.764798 +2.34581 1.167867 0.764798 +2.34581 1.167867 0.731264 +2.283465 1.027411 0.731264 +2.283465 1.027411 0.764798 +2.34581 1.027411 0.764798 +2.34581 1.027411 0.731264 +numsurf 6 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +0 0 0 +3 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +4 0 0 +5 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 4 +6 0 0 +2 0 0 +1 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +7 0 0 +3 0 0 +2 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +0 0 0 +1 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 4 +5 0 0 +4 0 0 +7 0 0 +6 0 0 +kids 0 +OBJECT poly +name "rwheel2.R" +data 10 +Circle.037 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 288 +2.941645 0.727265 -0.639958 +2.850588 0.779837 -0.639958 +2.749027 0.80705 -0.639958 +2.643883 0.80705 -0.639958 +2.542322 0.779837 -0.639958 +2.451264 0.727265 -0.639958 +2.376916 0.652917 -0.639958 +2.324344 0.561859 -0.639958 +2.297131 0.460298 -0.639957 +2.297131 0.355154 -0.639957 +2.324345 0.253593 -0.639957 +2.376917 0.162536 -0.639957 +2.451265 0.088188 -0.639957 +2.542322 0.035616 -0.639957 +2.643883 0.008403 -0.639957 +2.749027 0.008403 -0.639957 +2.850588 0.035616 -0.639957 +2.941646 0.088188 -0.639957 +3.015994 0.162536 -0.639957 +3.068566 0.253593 -0.639957 +3.095779 0.355155 -0.639957 +3.095779 0.460298 -0.639957 +3.068566 0.56186 -0.639958 +3.015994 0.652917 -0.639958 +2.941645 0.727265 -0.708484 +2.899577 0.759545 -0.639957 +2.850588 0.779837 -0.708484 +2.801599 0.800129 -0.639957 +2.749027 0.80705 -0.708484 +2.696455 0.813972 -0.639957 +2.643883 0.80705 -0.708484 +2.591311 0.800129 -0.639957 +2.542322 0.779837 -0.708484 +2.493332 0.759545 -0.639957 +2.451264 0.727265 -0.708484 +2.409196 0.694985 -0.639957 +2.376916 0.652917 -0.708484 +2.344636 0.610849 -0.639957 +2.324344 0.561859 -0.708484 +2.304053 0.51287 -0.639957 +2.297131 0.460298 -0.708484 +2.29021 0.407726 -0.639957 +2.297131 0.355154 -0.708484 +2.304053 0.302582 -0.639957 +2.324345 0.253593 -0.708484 +2.344637 0.204604 -0.639957 +2.376917 0.162536 -0.708484 +2.451265 0.088188 -0.708484 +2.409197 0.120468 -0.639957 +2.493333 0.055908 -0.639957 +2.542322 0.035616 -0.708484 +2.591311 0.015324 -0.639957 +2.643883 0.008403 -0.708484 +2.696455 0.001481 -0.639957 +2.749027 0.008403 -0.708484 +2.850588 0.035616 -0.708484 +2.801599 0.015324 -0.639957 +2.899578 0.055908 -0.639957 +2.941646 0.088188 -0.708484 +2.983714 0.120468 -0.639957 +3.015994 0.162536 -0.708484 +3.048274 0.204604 -0.639957 +3.068566 0.253593 -0.708484 +3.095779 0.355155 -0.708484 +3.088858 0.302583 -0.639957 +3.1027 0.407726 -0.639957 +3.095779 0.460298 -0.708484 +3.068566 0.56186 -0.708484 +3.088858 0.51287 -0.639957 +2.983714 0.694985 -0.639957 +3.015994 0.652917 -0.708484 +3.048274 0.610849 -0.639957 +2.941645 0.727265 -0.571431 +2.850588 0.779837 -0.571431 +2.749027 0.80705 -0.571431 +2.643883 0.80705 -0.571431 +2.542322 0.779837 -0.571431 +2.451264 0.727265 -0.571431 +2.376916 0.652917 -0.571431 +2.324344 0.561859 -0.571431 +2.297131 0.460298 -0.571431 +2.297131 0.355154 -0.571431 +2.324345 0.253593 -0.571431 +2.376917 0.162536 -0.571431 +2.451265 0.088188 -0.571431 +2.542322 0.035616 -0.571431 +2.643883 0.008403 -0.571431 +2.749027 0.008403 -0.571431 +2.850588 0.035616 -0.571431 +2.941646 0.088188 -0.571431 +3.015994 0.162536 -0.571431 +3.068566 0.253593 -0.571431 +3.095779 0.355155 -0.571431 +3.095779 0.460299 -0.571431 +3.068566 0.56186 -0.571431 +3.015994 0.652917 -0.571431 +2.830829 0.640469 -0.538808 +2.766012 0.667317 -0.538808 +2.696455 0.676474 -0.538808 +2.626898 0.667317 -0.538808 +2.562081 0.640469 -0.538808 +2.506422 0.59776 -0.538808 +2.463712 0.5421 -0.538808 +2.436864 0.477284 -0.538808 +2.427707 0.407726 -0.538808 +2.436865 0.338169 -0.538808 +2.463713 0.273353 -0.538808 +2.506422 0.217693 -0.538808 +2.562081 0.174984 -0.538808 +2.626898 0.148136 -0.538808 +2.696455 0.138979 -0.538808 +2.766012 0.148136 -0.538808 +2.830829 0.174984 -0.538808 +2.886489 0.217693 -0.538808 +2.929198 0.273353 -0.538808 +2.956046 0.338169 -0.538808 +2.965203 0.407727 -0.538808 +2.956046 0.477284 -0.538808 +2.886488 0.59776 -0.538808 +2.929198 0.5421 -0.538808 +2.849637 0.673046 -0.538808 +2.775748 0.703652 -0.538808 +2.696455 0.714091 -0.538808 +2.617162 0.703651 -0.538808 +2.543273 0.673046 -0.538808 +2.479823 0.624359 -0.538808 +2.431136 0.560908 -0.538808 +2.40053 0.487019 -0.538808 +2.390091 0.407726 -0.538808 +2.40053 0.328434 -0.538808 +2.431136 0.254544 -0.538808 +2.479823 0.191094 -0.538808 +2.543273 0.142407 -0.538808 +2.617162 0.111801 -0.538808 +2.696455 0.101362 -0.538808 +2.775748 0.111801 -0.538808 +2.849637 0.142407 -0.538808 +2.913087 0.191094 -0.538808 +2.961774 0.254545 -0.538808 +2.99238 0.328434 -0.538808 +3.002819 0.407727 -0.538808 +2.99238 0.487019 -0.538808 +2.913087 0.624359 -0.538808 +2.961774 0.560908 -0.538808 +2.881751 0.728669 -0.563844 +2.792371 0.765691 -0.563844 +2.696455 0.778319 -0.563844 +2.600538 0.765691 -0.563844 +2.511159 0.728669 -0.563844 +2.434407 0.669775 -0.563844 +2.375512 0.593023 -0.563844 +2.33849 0.503643 -0.563844 +2.325863 0.407726 -0.563844 +2.33849 0.31181 -0.563844 +2.375513 0.22243 -0.563844 +2.434407 0.145678 -0.563844 +2.511159 0.086784 -0.563844 +2.600539 0.049762 -0.563844 +2.696455 0.037134 -0.563844 +2.792372 0.049762 -0.563844 +2.881752 0.086784 -0.563844 +2.958503 0.145678 -0.563844 +3.017398 0.22243 -0.563844 +3.05442 0.31181 -0.563844 +3.067048 0.407727 -0.563844 +3.05442 0.503643 -0.563844 +3.017398 0.593023 -0.563844 +2.958503 0.669775 -0.563844 +2.830074 0.639162 -0.720244 +2.765621 0.665859 -0.720244 +2.696455 0.674965 -0.720244 +2.627289 0.665859 -0.720244 +2.562836 0.639162 -0.720244 +2.507489 0.596692 -0.720244 +2.46502 0.541345 -0.720244 +2.438323 0.476893 -0.720244 +2.429217 0.407726 -0.720244 +2.438323 0.33856 -0.720244 +2.46502 0.274107 -0.720244 +2.507489 0.21876 -0.720244 +2.562836 0.176291 -0.720244 +2.627289 0.149594 -0.720244 +2.696455 0.140488 -0.720244 +2.765622 0.149594 -0.720244 +2.830074 0.176291 -0.720244 +2.885421 0.21876 -0.720244 +2.92789 0.274107 -0.720244 +2.954587 0.33856 -0.720244 +2.963693 0.407726 -0.720244 +2.954587 0.476893 -0.720244 +2.885421 0.596692 -0.720244 +2.92789 0.541346 -0.720244 +2.853613 0.679932 -0.732763 +2.777806 0.711332 -0.732763 +2.696455 0.722043 -0.732763 +2.615104 0.711332 -0.732763 +2.539297 0.679932 -0.732763 +2.4742 0.629981 -0.732763 +2.424249 0.564884 -0.732763 +2.392849 0.489077 -0.732763 +2.382139 0.407726 -0.732763 +2.392849 0.326375 -0.732763 +2.424249 0.250568 -0.732763 +2.4742 0.185471 -0.732763 +2.539297 0.135521 -0.732763 +2.615104 0.104121 -0.732763 +2.696455 0.09341 -0.732763 +2.777806 0.104121 -0.732763 +2.853613 0.135521 -0.732763 +2.91871 0.185472 -0.732763 +2.968661 0.250569 -0.732763 +3.000061 0.326376 -0.732763 +3.010771 0.407726 -0.732763 +3.000061 0.489077 -0.732763 +2.91871 0.629981 -0.732763 +2.968661 0.564884 -0.732763 +2.881688 0.72856 -0.711898 +2.792339 0.76557 -0.711898 +2.696455 0.778193 -0.711898 +2.600571 0.765569 -0.711898 +2.511222 0.72856 -0.711898 +2.434496 0.669686 -0.711898 +2.375622 0.592959 -0.711898 +2.338612 0.50361 -0.711898 +2.325989 0.407726 -0.711898 +2.338612 0.311843 -0.711898 +2.375622 0.222493 -0.711898 +2.434496 0.145767 -0.711898 +2.511222 0.086893 -0.711898 +2.600571 0.049883 -0.711898 +2.696455 0.03726 -0.711898 +2.792339 0.049883 -0.711898 +2.881688 0.086893 -0.711898 +2.958414 0.145767 -0.711898 +3.017288 0.222493 -0.711898 +3.054298 0.311843 -0.711898 +3.066921 0.407726 -0.711898 +3.054298 0.50361 -0.711898 +3.017288 0.59296 -0.711898 +2.958414 0.669686 -0.711898 +2.899577 0.759545 -0.691034 +2.801599 0.800129 -0.691034 +2.696455 0.813971 -0.691034 +2.591311 0.800129 -0.691034 +2.493332 0.759545 -0.691034 +2.409196 0.694985 -0.691034 +2.344636 0.610849 -0.691034 +2.304053 0.51287 -0.691034 +2.29021 0.407726 -0.691034 +2.304053 0.302582 -0.691034 +2.344637 0.204604 -0.691034 +2.409197 0.120468 -0.691034 +2.493333 0.055908 -0.691034 +2.591311 0.015324 -0.691034 +2.696455 0.001481 -0.691034 +2.801599 0.015324 -0.691034 +2.899578 0.055908 -0.691034 +2.983714 0.120468 -0.691034 +3.048274 0.204604 -0.691034 +3.088858 0.302583 -0.691034 +3.1027 0.407726 -0.691034 +3.088858 0.51287 -0.691034 +3.048274 0.610849 -0.691034 +2.983714 0.694985 -0.691034 +2.899577 0.759545 -0.588881 +2.801599 0.800129 -0.588881 +2.696455 0.813972 -0.588881 +2.591311 0.800129 -0.588881 +2.493332 0.759545 -0.588881 +2.409196 0.694985 -0.588881 +2.344636 0.610849 -0.588881 +2.304053 0.51287 -0.588881 +2.29021 0.407726 -0.588881 +2.304053 0.302582 -0.588881 +2.344637 0.204604 -0.588881 +2.409197 0.120468 -0.588881 +2.493333 0.055908 -0.588881 +2.591311 0.015324 -0.588881 +2.696455 0.001481 -0.588881 +2.801599 0.015324 -0.588881 +2.899578 0.055908 -0.588881 +2.983714 0.120468 -0.588881 +3.048274 0.204604 -0.588881 +3.088858 0.302583 -0.588881 +3.1027 0.407726 -0.588881 +3.088858 0.51287 -0.588881 +3.048274 0.610849 -0.588881 +2.983714 0.694985 -0.588881 +numsurf 336 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +167 0.174609094858 0.520723462105 +287 0.178452908993 0.524567306042 +SURF 0x10 +mat 10 +refs 3 +264 0.165624529123 0.534410893917 +144 0.162906527519 0.529703140259 +72 0.172038733959 0.529489099979 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +144 0.162906527519 0.529703140259 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +144 0.162906527519 0.529703140259 +264 0.165624529123 0.534410893917 +SURF 0x10 +mat 10 +refs 3 +265 0.150685578585 0.540598809719 +145 0.149278670549 0.535348057747 +73 0.158155053854 0.537504851818 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +145 0.149278670549 0.535348057747 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +145 0.149278670549 0.535348057747 +265 0.150685578585 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +266 0.134654119611 0.542709350586 +146 0.134654119611 0.537273347378 +74 0.142669856548 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +146 0.134654119611 0.537273347378 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +146 0.134654119611 0.537273347378 +266 0.134654119611 0.542709350586 +SURF 0x10 +mat 10 +refs 3 +267 0.118622675538 0.540598809719 +147 0.120029598475 0.535347998142 +75 0.126638397574 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +147 0.120029598475 0.535347998142 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +147 0.120029598475 0.535347998142 +267 0.118622675538 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +268 0.103683710098 0.534410893917 +148 0.106401756406 0.529703140259 +76 0.111153200269 0.537504792213 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +148 0.106401756406 0.529703140259 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +148 0.106401756406 0.529703140259 +268 0.103683710098 0.534410893917 +SURF 0x10 +mat 10 +refs 3 +269 0.0908553749323 0.524567246437 +149 0.0946992188692 0.520723462105 +77 0.0972695350647 0.529489040375 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +149 0.0946992188692 0.520723462105 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +149 0.0946992188692 0.520723462105 +269 0.0908553749323 0.524567246437 +SURF 0x10 +mat 10 +refs 3 +270 0.0810118317604 0.511738836765 +150 0.0857195258141 0.509020864964 +78 0.0859335958958 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +150 0.0857195258141 0.509020864964 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +150 0.0857195258141 0.509020864964 +270 0.0810118317604 0.511738836765 +SURF 0x10 +mat 10 +refs 3 +271 0.0748239308596 0.496799945831 +151 0.0800746977329 0.495393037796 +79 0.0779178887606 0.504269421101 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +151 0.0800746977329 0.495393037796 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +151 0.0800746977329 0.495393037796 +271 0.0748239308596 0.496799945831 +SURF 0x10 +mat 10 +refs 3 +272 0.0727133601904 0.480768471956 +152 0.0781493484974 0.480768471956 +80 0.0737686306238 0.488784253597 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +152 0.0781493484974 0.480768471956 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +152 0.0781493484974 0.480768471956 +272 0.0727133601904 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +273 0.0748239308596 0.464737027884 +153 0.0800746977329 0.466143995523 +81 0.0737686306238 0.47275274992 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +153 0.0800746977329 0.466143995523 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +153 0.0800746977329 0.466143995523 +273 0.0748239308596 0.464737027884 +SURF 0x10 +mat 10 +refs 3 +274 0.0810118466616 0.449798107147 +154 0.0857195854187 0.452516138554 +82 0.0779178887606 0.457267582417 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +154 0.0857195854187 0.452516138554 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +154 0.0857195854187 0.452516138554 +274 0.0810118466616 0.449798107147 +SURF 0x10 +mat 10 +refs 3 +275 0.0908554345369 0.436969727278 +155 0.0946992486715 0.440813541412 +83 0.0859336405993 0.443383902311 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +155 0.0946992486715 0.440813541412 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +155 0.0946992486715 0.440813541412 +275 0.0908554345369 0.436969727278 +SURF 0x10 +mat 10 +refs 3 +276 0.103683769703 0.427126199007 +156 0.106401786208 0.431833893061 +84 0.0972696095705 0.43204793334 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +156 0.106401786208 0.431833893061 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +156 0.106401786208 0.431833893061 +276 0.103683769703 0.427126199007 +SURF 0x10 +mat 10 +refs 3 +277 0.118622720242 0.420938313007 +157 0.120029658079 0.42618906498 +85 0.111153259873 0.424032241106 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +157 0.120029658079 0.42618906498 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +157 0.120029658079 0.42618906498 +277 0.118622720242 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +278 0.134654194117 0.418827682734 +158 0.134654179215 0.424263685942 +86 0.12663847208 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +158 0.134654179215 0.424263685942 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +158 0.134654179215 0.424263685942 +278 0.134654194117 0.418827682734 +SURF 0x10 +mat 10 +refs 3 +279 0.15068565309 0.420938313007 +159 0.149278700352 0.42618906498 +87 0.142669931054 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +159 0.149278700352 0.42618906498 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +159 0.149278700352 0.42618906498 +279 0.15068565309 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +280 0.165624588728 0.427126228809 +160 0.162906616926 0.431833952665 +88 0.15815512836 0.424032270908 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +160 0.162906616926 0.431833952665 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +160 0.162906616926 0.431833952665 +280 0.165624588728 0.427126228809 +SURF 0x10 +mat 10 +refs 3 +281 0.178452938795 0.436969786882 +161 0.17460912466 0.440813601017 +89 0.17203874886 0.432047963142 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +161 0.17460912466 0.440813601017 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +161 0.17460912466 0.440813601017 +281 0.178452938795 0.436969786882 +SURF 0x10 +mat 10 +refs 3 +282 0.188296467066 0.44979813695 +162 0.183588787913 0.452516138554 +90 0.18337470293 0.443383932114 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +162 0.183588787913 0.452516138554 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +162 0.183588787913 0.452516138554 +282 0.188296467066 0.44979813695 +SURF 0x10 +mat 10 +refs 3 +283 0.194484397769 0.464737057686 +163 0.189233630896 0.466143995523 +91 0.191390439868 0.457267612219 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +163 0.189233630896 0.466143995523 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +163 0.189233630896 0.466143995523 +283 0.194484397769 0.464737057686 +SURF 0x10 +mat 10 +refs 3 +284 0.196594953537 0.480768531561 +164 0.191158980131 0.480768531561 +92 0.195539683104 0.472752779722 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +164 0.191158980131 0.480768531561 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +164 0.191158980131 0.480768531561 +284 0.196594953537 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +285 0.194484397769 0.496799975634 +165 0.189233630896 0.495393067598 +93 0.195539683104 0.488784253597 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +165 0.189233630896 0.495393067598 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +165 0.189233630896 0.495393067598 +285 0.194484397769 0.496799975634 +SURF 0x10 +mat 10 +refs 3 +286 0.188296467066 0.51173889637 +166 0.183588787913 0.509020924568 +94 0.191390439868 0.504269480705 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +166 0.183588787913 0.509020924568 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +166 0.183588787913 0.509020924568 +286 0.188296467066 0.51173889637 +SURF 0x10 +mat 10 +refs 3 +287 0.178452908993 0.524567306042 +167 0.174609094858 0.520723462105 +95 0.183374688029 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +167 0.174609094858 0.520723462105 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +216 0.162896901369 0.529686510563 +240 0.165624529123 0.534410893917 +SURF 0x10 +mat 10 +refs 3 +263 0.178452908993 0.524567306042 +239 0.174595504999 0.520709872246 +24 0.172038733959 0.529489099979 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +239 0.174595504999 0.520709872246 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +217 0.149273663759 0.535329461098 +241 0.150685578585 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +240 0.165624529123 0.534410893917 +216 0.162896901369 0.529686510563 +26 0.158155053854 0.537504851818 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +216 0.162896901369 0.529686510563 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +218 0.134654119611 0.537254154682 +242 0.134654119611 0.542709350586 +SURF 0x10 +mat 10 +refs 3 +241 0.150685578585 0.540598809719 +217 0.149273663759 0.535329461098 +28 0.142669856548 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +217 0.149273663759 0.535329461098 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +219 0.120034605265 0.535329401493 +243 0.118622675538 0.540598809719 +SURF 0x10 +mat 10 +refs 3 +242 0.134654119611 0.542709350586 +218 0.134654119611 0.537254154682 +30 0.126638397574 0.54165405035 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +218 0.134654119611 0.537254154682 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +220 0.106411337852 0.529686450958 +244 0.103683710098 0.534410834312 +SURF 0x10 +mat 10 +refs 3 +243 0.118622675538 0.540598809719 +219 0.120034605265 0.535329401493 +32 0.111153200269 0.537504792213 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +219 0.120034605265 0.535329401493 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +221 0.0947128087282 0.520709812641 +245 0.0908553749323 0.524567246437 +SURF 0x10 +mat 10 +refs 3 +244 0.103683710098 0.534410834312 +220 0.106411337852 0.529686450958 +34 0.0972695350647 0.529489040375 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +220 0.106411337852 0.529686450958 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +222 0.0857362151146 0.509011268616 +246 0.0810118317604 0.511738836765 +SURF 0x10 +mat 10 +refs 3 +245 0.0908553749323 0.524567246437 +221 0.0947128087282 0.520709812641 +36 0.0859335958958 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +221 0.0947128087282 0.520709812641 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +223 0.0800932794809 0.495388031006 +247 0.0748239308596 0.496799916029 +SURF 0x10 +mat 10 +refs 3 +246 0.0810118317604 0.511738836765 +222 0.0857362151146 0.509011268616 +38 0.0779178887606 0.504269421101 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +222 0.0857362151146 0.509011268616 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +224 0.0781685709953 0.480768471956 +248 0.0727133601904 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +247 0.0748239308596 0.496799916029 +223 0.0800932794809 0.495388031006 +40 0.0737686306238 0.488784193993 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +223 0.0800932794809 0.495388031006 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +225 0.0800932794809 0.466148912907 +249 0.0748239308596 0.464737027884 +SURF 0x10 +mat 10 +refs 3 +248 0.0727133601904 0.480768471956 +224 0.0781685709953 0.480768471956 +42 0.0737686306238 0.47275274992 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +224 0.0781685709953 0.480768471956 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +226 0.0857362300158 0.452525675297 +250 0.0810118466616 0.449798107147 +SURF 0x10 +mat 10 +refs 3 +249 0.0748239308596 0.464737027884 +225 0.0800932794809 0.466148912907 +44 0.0779178887606 0.457267582417 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +225 0.0800932794809 0.466148912907 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +227 0.0947128683329 0.440827161074 +251 0.0908554345369 0.436969727278 +SURF 0x10 +mat 10 +refs 3 +250 0.0810118466616 0.449798107147 +226 0.0857362300158 0.452525675297 +46 0.0859336405993 0.443383902311 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +226 0.0857362300158 0.452525675297 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +228 0.106411382556 0.431850552559 +252 0.103683769703 0.427126199007 +SURF 0x10 +mat 10 +refs 3 +251 0.0908554345369 0.436969727278 +227 0.0947128683329 0.440827161074 +47 0.0972696095705 0.43204793334 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +227 0.0947128683329 0.440827161074 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +229 0.120034620166 0.426207602024 +253 0.118622720242 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +252 0.103683769703 0.427126199007 +228 0.106411382556 0.431850552559 +50 0.111153259873 0.424032241106 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +228 0.106411382556 0.431850552559 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +230 0.134654179215 0.424282938242 +254 0.134654194117 0.418827682734 +SURF 0x10 +mat 10 +refs 3 +253 0.118622720242 0.420938313007 +229 0.120034620166 0.426207602024 +52 0.12663847208 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +229 0.120034620166 0.426207602024 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +231 0.149273738265 0.426207602024 +255 0.15068565309 0.420938313007 +SURF 0x10 +mat 10 +refs 3 +254 0.134654194117 0.418827682734 +230 0.134654179215 0.424282938242 +54 0.142669931054 0.419883012772 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +230 0.134654179215 0.424282938242 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +232 0.162896946073 0.431850552559 +256 0.165624588728 0.427126228809 +SURF 0x10 +mat 10 +refs 3 +255 0.15068565309 0.420938313007 +231 0.149273738265 0.426207602024 +55 0.15815512836 0.424032270908 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +231 0.149273738265 0.426207602024 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +233 0.1745955199 0.440827220678 +257 0.178452938795 0.436969786882 +SURF 0x10 +mat 10 +refs 3 +256 0.165624588728 0.427126228809 +232 0.162896946073 0.431850552559 +58 0.17203874886 0.432047963142 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +232 0.162896946073 0.431850552559 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +234 0.183572113514 0.452525734901 +258 0.188296467066 0.44979813695 +SURF 0x10 +mat 10 +refs 3 +257 0.178452938795 0.436969786882 +233 0.1745955199 0.440827220678 +60 0.18337470293 0.443383932114 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +233 0.1745955199 0.440827220678 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +235 0.189215064049 0.466149002314 +259 0.194484397769 0.464737057686 +SURF 0x10 +mat 10 +refs 3 +258 0.188296467066 0.44979813695 +234 0.183572113514 0.452525734901 +62 0.191390439868 0.457267612219 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +234 0.183572113514 0.452525734901 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +236 0.191139742732 0.480768531561 +260 0.196594953537 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +259 0.194484397769 0.464737057686 +235 0.189215064049 0.466149002314 +63 0.195539683104 0.472752779722 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +235 0.189215064049 0.466149002314 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +237 0.189215064049 0.495388060808 +261 0.194484397769 0.496799975634 +SURF 0x10 +mat 10 +refs 3 +260 0.196594953537 0.480768531561 +236 0.191139742732 0.480768531561 +66 0.195539683104 0.488784253597 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +236 0.191139742732 0.480768531561 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +238 0.183572113514 0.50901132822 +262 0.188296467066 0.51173889637 +SURF 0x10 +mat 10 +refs 3 +261 0.194484397769 0.496799975634 +237 0.189215064049 0.495388060808 +67 0.191390439868 0.504269480705 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +237 0.189215064049 0.495388060808 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +239 0.174595504999 0.520709872246 +263 0.178452908993 0.524567306042 +SURF 0x10 +mat 10 +refs 3 +262 0.188296467066 0.51173889637 +238 0.183572113514 0.50901132822 +70 0.183374688029 0.518153131008 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +238 0.183572113514 0.50901132822 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +0 0.0154595961794 0.452727437019 +24 0.00655085407197 0.452727437019 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +25 0.0154596110806 0.458196461201 +264 0.022099763155 0.458196461201 +72 0.0243683308363 0.452727437019 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +69 0.0154596073553 0.447258412838 +263 0.00881944410503 0.447258412838 +24 0.00655085407197 0.452727437019 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +0 0.0154595961794 0.452727437019 +72 0.0243683308363 0.452727437019 +287 0.022099763155 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +240 0.00881944410503 0.458196461201 +26 0.00655088014901 0.464565306902 +1 0.0154595961794 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +1 0.0154595961794 0.464565306902 +26 0.00655088014901 0.464565306902 +241 0.00881944410503 0.470934122801 +27 0.0154596110806 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +264 0.022099763155 0.458196461201 +25 0.0154596110806 0.458196461201 +1 0.0154595961794 0.464565306902 +73 0.0243683308363 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +73 0.0243683308363 0.464565306902 +1 0.0154595961794 0.464565306902 +27 0.0154596110806 0.470934122801 +265 0.022099763155 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +27 0.0154596110806 0.470934122801 +241 0.00881944410503 0.470934122801 +28 0.00655088014901 0.477768719196 +2 0.0154595961794 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +2 0.0154595961794 0.477768719196 +28 0.00655088014901 0.477768719196 +242 0.00881944410503 0.484603285789 +29 0.0154596110806 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +265 0.022099763155 0.470934122801 +27 0.0154596110806 0.470934122801 +2 0.0154595961794 0.477768719196 +74 0.0243683308363 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +74 0.0243683308363 0.477768719196 +2 0.0154595961794 0.477768719196 +29 0.0154596110806 0.484603285789 +266 0.022099763155 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +29 0.0154596110806 0.484603285789 +242 0.00881944410503 0.484603285789 +30 0.00655088014901 0.491437911987 +3 0.0154595961794 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +3 0.0154595961794 0.491437911987 +30 0.00655088014901 0.491437911987 +243 0.00881944410503 0.49827247858 +31 0.0154596110806 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +266 0.022099763155 0.484603285789 +29 0.0154596110806 0.484603285789 +3 0.0154595961794 0.491437911987 +75 0.0243683308363 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +75 0.0243683308363 0.491437911987 +3 0.0154595961794 0.491437911987 +31 0.0154596110806 0.49827247858 +267 0.022099763155 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +31 0.0154596110806 0.49827247858 +243 0.00881944410503 0.49827247858 +32 0.00655088014901 0.504641294479 +4 0.0154595961794 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +4 0.0154595961794 0.504641294479 +32 0.00655088014901 0.504641294479 +244 0.00881944410503 0.511010169983 +33 0.0154596110806 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +267 0.022099763155 0.49827247858 +31 0.0154596110806 0.49827247858 +4 0.0154595961794 0.504641294479 +76 0.0243683308363 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +76 0.0243683308363 0.504641294479 +4 0.0154595961794 0.504641294479 +33 0.0154596110806 0.511010169983 +268 0.022099763155 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +33 0.0154596110806 0.511010169983 +244 0.00881944410503 0.511010169983 +34 0.00655085407197 0.516479194164 +5 0.0154595999047 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +5 0.0154595999047 0.516479194164 +34 0.00655085407197 0.516479194164 +245 0.00881944410503 0.521948158741 +35 0.0154596110806 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +268 0.022099763155 0.511010169983 +33 0.0154596110806 0.511010169983 +5 0.0154595999047 0.516479194164 +77 0.0243683308363 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +77 0.0243683308363 0.516479194164 +5 0.0154595999047 0.516479194164 +35 0.0154596110806 0.521948158741 +269 0.022099763155 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +35 0.0154596110806 0.521948158741 +245 0.00881944410503 0.521948158741 +36 0.00655085779727 0.526144683361 +6 0.015459577553 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +6 0.015459577553 0.526144683361 +36 0.00655085779727 0.526144683361 +246 0.0088194347918 0.530341267586 +37 0.0154595999047 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +269 0.022099763155 0.521948158741 +35 0.0154596110806 0.521948158741 +6 0.015459577553 0.526144683361 +78 0.0243683084846 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +78 0.0243683084846 0.526144683361 +6 0.015459577553 0.526144683361 +37 0.0154595999047 0.530341267586 +270 0.022099763155 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +37 0.0154595999047 0.530341267586 +246 0.0088194347918 0.530341267586 +38 0.00655085779727 0.532979309559 +7 0.015459577553 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +7 0.015459577553 0.532979309559 +38 0.00655085779727 0.532979309559 +247 0.0088194347918 0.535617351532 +39 0.0154595999047 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +270 0.022099763155 0.530341267586 +37 0.0154595999047 0.530341267586 +7 0.015459577553 0.532979309559 +79 0.0243683084846 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +79 0.0243683084846 0.532979309559 +7 0.015459577553 0.532979309559 +39 0.0154595999047 0.535617351532 +271 0.022099763155 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +39 0.0154595999047 0.535617351532 +247 0.0088194347918 0.535617351532 +40 0.00655088014901 0.53651714325 +8 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +8 0.0154595999047 0.53651714325 +40 0.00655088014901 0.53651714325 +248 0.0088194552809 0.537416934967 +41 0.0154596222565 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +271 0.022099763155 0.535617351532 +39 0.0154595999047 0.535617351532 +8 0.0154595999047 0.53651714325 +80 0.0243683308363 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +80 0.0243683308363 0.53651714325 +8 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +272 0.022099789232 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +41 0.0154596222565 0.537416934967 +248 0.0088194552809 0.537416934967 +42 0.00655088014901 0.53651714325 +9 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +9 0.0428032502532 0.53651714325 +42 0.0517119690776 0.53651714325 +249 0.0494434013963 0.535617351532 +43 0.0428032390773 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +272 0.022099789232 0.537416934967 +41 0.0154596222565 0.537416934967 +9 0.0154595999047 0.53651714325 +81 0.0243683308363 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +81 0.0338945165277 0.53651714325 +9 0.0428032502532 0.53651714325 +43 0.0428032390773 0.535617351532 +273 0.036163084209 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +43 0.0428032390773 0.535617351532 +249 0.0494434013963 0.535617351532 +44 0.0517119690776 0.532979249954 +10 0.0428032502532 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +10 0.0428032502532 0.532979249954 +44 0.0517119690776 0.532979249954 +250 0.0494434013963 0.530341207981 +45 0.0428032390773 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +273 0.036163084209 0.535617351532 +43 0.0428032390773 0.535617351532 +10 0.0428032502532 0.532979249954 +82 0.0338945165277 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +82 0.0338945165277 0.532979249954 +10 0.0428032502532 0.532979249954 +45 0.0428032390773 0.530341207981 +274 0.036163084209 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +45 0.0428032390773 0.530341207981 +250 0.0494434013963 0.530341207981 +46 0.0517119690776 0.526144683361 +11 0.0428032502532 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +11 0.0428032502532 0.526144683361 +46 0.0517119690776 0.526144683361 +251 0.0494434051216 0.521948158741 +48 0.0428032390773 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +274 0.036163084209 0.530341207981 +45 0.0428032390773 0.530341207981 +11 0.0428032502532 0.526144683361 +83 0.0338945165277 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +83 0.0338945165277 0.526144683361 +11 0.0428032502532 0.526144683361 +48 0.0428032390773 0.521948158741 +275 0.036163084209 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +84 0.0338945165277 0.51647913456 +275 0.036163084209 0.521948158741 +48 0.0428032390773 0.521948158741 +12 0.0428032502532 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +12 0.0428032502532 0.51647913456 +48 0.0428032390773 0.521948158741 +251 0.0494434051216 0.521948158741 +47 0.0517119690776 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +84 0.0338945165277 0.51647913456 +12 0.0428032502532 0.51647913456 +49 0.0428032390773 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +12 0.0428032502532 0.51647913456 +47 0.0517119690776 0.51647913456 +252 0.0494434051216 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +252 0.0494434051216 0.511010050774 +50 0.0517119690776 0.504641294479 +13 0.0428032539785 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +13 0.0428032539785 0.504641294479 +50 0.0517119690776 0.504641294479 +253 0.0494434051216 0.498272418976 +51 0.0428032390773 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +49 0.0428032390773 0.511010050774 +13 0.0428032539785 0.504641294479 +85 0.0338945165277 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +85 0.0338945165277 0.504641294479 +13 0.0428032539785 0.504641294479 +51 0.0428032390773 0.498272418976 +277 0.036163084209 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +51 0.0428032390773 0.498272418976 +253 0.0494434051216 0.498272418976 +52 0.0517119690776 0.491437852383 +14 0.0428032539785 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +14 0.0428032539785 0.491437852383 +52 0.0517119690776 0.491437852383 +254 0.0494434051216 0.484603226185 +53 0.0428032390773 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +277 0.036163084209 0.498272418976 +51 0.0428032390773 0.498272418976 +14 0.0428032539785 0.491437852383 +86 0.0338945165277 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +86 0.0338945165277 0.491437852383 +14 0.0428032539785 0.491437852383 +53 0.0428032390773 0.484603226185 +278 0.036163084209 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +53 0.0428032390773 0.484603226185 +254 0.0494434051216 0.484603226185 +54 0.0517119690776 0.477768689394 +15 0.0428032539785 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +15 0.0428032539785 0.477768689394 +54 0.0517119690776 0.477768689394 +255 0.0494434051216 0.470934063196 +56 0.0428032390773 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +278 0.036163084209 0.484603226185 +53 0.0428032390773 0.484603226185 +15 0.0428032539785 0.477768689394 +87 0.0338945165277 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +87 0.0338945165277 0.477768689394 +15 0.0428032539785 0.477768689394 +56 0.0428032390773 0.470934063196 +279 0.036163084209 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +88 0.0338945165277 0.4645652771 +279 0.036163084209 0.470934063196 +56 0.0428032390773 0.470934063196 +16 0.0428032539785 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +16 0.0428032539785 0.4645652771 +56 0.0428032390773 0.470934063196 +255 0.0494434051216 0.470934063196 +55 0.0517119690776 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +88 0.0338945165277 0.4645652771 +16 0.0428032539785 0.4645652771 +57 0.0428032390773 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +16 0.0428032539785 0.4645652771 +55 0.0517119690776 0.4645652771 +256 0.0494434051216 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +256 0.0494434051216 0.458196431398 +58 0.0517119690776 0.452727407217 +17 0.0428032539785 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +17 0.0428032539785 0.452727407217 +58 0.0517119690776 0.452727407217 +257 0.0494434051216 0.447258353233 +59 0.0428032428026 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +57 0.0428032390773 0.458196431398 +17 0.0428032539785 0.452727407217 +89 0.0338945165277 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +89 0.0338945165277 0.452727407217 +17 0.0428032539785 0.452727407217 +59 0.0428032428026 0.447258353233 +281 0.036163084209 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +59 0.0428032428026 0.447258353233 +257 0.0494434051216 0.447258353233 +60 0.0517119728029 0.443061828613 +18 0.0428032539785 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +18 0.0428032539785 0.443061828613 +60 0.0517119728029 0.443061828613 +258 0.0494434088469 0.438865333796 +61 0.0428032428026 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +281 0.036163084209 0.447258353233 +59 0.0428032428026 0.447258353233 +18 0.0428032539785 0.443061828613 +90 0.0338945239782 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +90 0.0338945239782 0.443061828613 +18 0.0428032539785 0.443061828613 +61 0.0428032428026 0.438865333796 +282 0.0361630916595 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +61 0.0428032428026 0.438865333796 +258 0.0494434088469 0.438865333796 +62 0.0517119728029 0.43622726202 +19 0.0428032539785 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +19 0.0428032539785 0.43622726202 +62 0.0517119728029 0.43622726202 +259 0.0494434088469 0.433589220047 +64 0.0428032428026 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +282 0.0361630916595 0.438865333796 +61 0.0428032428026 0.438865333796 +19 0.0428032539785 0.43622726202 +91 0.0338945239782 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +91 0.0338945239782 0.43622726202 +19 0.0428032539785 0.43622726202 +64 0.0428032428026 0.433589220047 +283 0.0361630916595 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +92 0.0338945239782 0.432689428329 +283 0.0361630916595 0.433589220047 +64 0.0428032428026 0.433589220047 +20 0.0428032539785 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +20 0.0428032539785 0.432689428329 +64 0.0428032428026 0.433589220047 +259 0.0494434088469 0.433589220047 +63 0.0517119728029 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +284 0.0361630693078 0.431789666414 +92 0.0338945239782 0.432689428329 +20 0.0428032539785 0.432689428329 +65 0.0428032316267 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +65 0.0428032316267 0.431789666414 +20 0.0428032539785 0.432689428329 +63 0.0517119728029 0.432689428329 +260 0.049443397671 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +65 0.0154596185312 0.431789666414 +260 0.00881945155561 0.431789666414 +66 0.00655087642372 0.432689428329 +21 0.0154595961794 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +21 0.0154595961794 0.432689428329 +66 0.00655087642372 0.432689428329 +261 0.00881942920387 0.433589220047 +68 0.0154595961794 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +284 0.0220997817814 0.431789666414 +65 0.0154596185312 0.431789666414 +21 0.0154595961794 0.432689428329 +93 0.024368327111 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +93 0.024368327111 0.432689428329 +21 0.0154595961794 0.432689428329 +68 0.0154595961794 0.433589220047 +285 0.0220997594297 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +94 0.0243683047593 0.43622726202 +285 0.0220997594297 0.433589220047 +68 0.0154595961794 0.433589220047 +22 0.0154595738277 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +22 0.0154595738277 0.43622726202 +68 0.0154595961794 0.433589220047 +261 0.00881942920387 0.433589220047 +67 0.00655085407197 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +286 0.0220997594297 0.438865333796 +94 0.0243683047593 0.43622726202 +22 0.0154595738277 0.43622726202 +71 0.0154595961794 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +71 0.0154595961794 0.438865333796 +22 0.0154595738277 0.43622726202 +67 0.00655085407197 0.43622726202 +262 0.00881942920387 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +95 0.0243683047593 0.443061858416 +286 0.0220997594297 0.438865333796 +71 0.0154595961794 0.438865333796 +23 0.0154595738277 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +23 0.0154595738277 0.443061858416 +71 0.0154595961794 0.438865333796 +262 0.00881942920387 0.438865333796 +70 0.00655085407197 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +287 0.022099763155 0.447258412838 +95 0.0243683047593 0.443061858416 +23 0.0154595738277 0.443061858416 +69 0.0154596073553 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +23 0.0154595738277 0.443061858416 +70 0.00655085407197 0.443061858416 +263 0.00881944410503 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +142 0.167684406042 0.513798773289 +120 0.158010050654 0.521222114563 +96 0.155142366886 0.516255199909 +118 0.163628861308 0.509743213654 +SURF 0x10 +mat 10 +refs 4 +121 0.146744042635 0.525888681412 +97 0.145259618759 0.520348727703 +96 0.155142366886 0.516255199909 +120 0.158010050654 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +122 0.134654119611 0.527480363846 +98 0.134654119611 0.521744906902 +97 0.145259618759 0.520348727703 +121 0.146744042635 0.525888681412 +SURF 0x10 +mat 10 +refs 4 +123 0.122564211488 0.525888621807 +99 0.124048650265 0.520348727703 +98 0.134654119611 0.521744906902 +122 0.134654119611 0.527480363846 +SURF 0x10 +mat 10 +refs 4 +124 0.111298218369 0.521222114563 +100 0.114165946841 0.516255140305 +99 0.124048650265 0.520348727703 +123 0.122564211488 0.525888621807 +SURF 0x10 +mat 10 +refs 4 +125 0.101623922586 0.513798773289 +101 0.105679437518 0.509743213654 +100 0.114165946841 0.516255140305 +124 0.111298218369 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +126 0.0942005366087 0.504124403 +102 0.0991675406694 0.50125670433 +101 0.105679437518 0.509743213654 +125 0.101623922586 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +127 0.0895339995623 0.492858439684 +103 0.0950739830732 0.491373956203 +102 0.0991675406694 0.50125670433 +126 0.0942005366087 0.504124403 +SURF 0x10 +mat 10 +refs 4 +128 0.0879423320293 0.480768471956 +104 0.0936777442694 0.480768471956 +103 0.0950739830732 0.491373956203 +127 0.0895339995623 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +129 0.0895340144634 0.468678593636 +105 0.0950739979744 0.470163017511 +104 0.0936777442694 0.480768471956 +128 0.0879423320293 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +130 0.0942005366087 0.457412600517 +106 0.0991675704718 0.460280328989 +105 0.0950739979744 0.470163017511 +129 0.0895340144634 0.468678593636 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +107 0.105679482222 0.451793789864 +106 0.0991675704718 0.460280328989 +130 0.0942005366087 0.457412600517 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +132 0.111298263073 0.440314859152 +108 0.114166006446 0.445281893015 +107 0.105679482222 0.451793789864 +SURF 0x10 +mat 10 +refs 4 +133 0.12256424129 0.435648351908 +109 0.124048694968 0.441188365221 +108 0.114166006446 0.445281893015 +132 0.111298263073 0.440314859152 +SURF 0x10 +mat 10 +refs 4 +134 0.134654179215 0.434056699276 +110 0.134654179215 0.439792096615 +109 0.124048694968 0.441188365221 +133 0.12256424129 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +111 0.145259648561 0.441188365221 +110 0.134654179215 0.439792096615 +134 0.134654179215 0.434056699276 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +136 0.158010080457 0.440314888954 +112 0.155142381787 0.445281893015 +111 0.145259648561 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +137 0.167684406042 0.447738260031 +113 0.163628861308 0.451793819666 +112 0.155142381787 0.445281893015 +136 0.158010080457 0.440314888954 +SURF 0x10 +mat 10 +refs 4 +138 0.17510779202 0.45741263032 +114 0.17014080286 0.460280328989 +113 0.163628861308 0.451793819666 +137 0.167684406042 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +115 0.174234315753 0.470163047314 +114 0.17014080286 0.460280328989 +138 0.17510779202 0.45741263032 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +140 0.181365996599 0.480768531561 +116 0.175630584359 0.480768531561 +115 0.174234315753 0.470163047314 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +117 0.174234315753 0.491374015808 +116 0.175630584359 0.480768531561 +140 0.181365996599 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +143 0.17510779202 0.504124403 +119 0.17014080286 0.501256763935 +117 0.174234315753 0.491374015808 +SURF 0x10 +mat 10 +refs 4 +143 0.17510779202 0.504124403 +142 0.167684406042 0.513798773289 +118 0.163628861308 0.509743213654 +119 0.17014080286 0.501256763935 +SURF 0x10 +mat 10 +refs 4 +167 0.174609094858 0.520723462105 +144 0.162906527519 0.529703140259 +120 0.158010050654 0.521222114563 +142 0.167684406042 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +145 0.149278670549 0.535348057747 +121 0.146744042635 0.525888681412 +120 0.158010050654 0.521222114563 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +146 0.134654119611 0.537273347378 +122 0.134654119611 0.527480363846 +121 0.146744042635 0.525888681412 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 4 +147 0.120029598475 0.535347998142 +123 0.122564211488 0.525888621807 +122 0.134654119611 0.527480363846 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 4 +148 0.106401756406 0.529703140259 +124 0.111298218369 0.521222114563 +123 0.122564211488 0.525888621807 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 4 +149 0.0946992188692 0.520723462105 +125 0.101623922586 0.513798773289 +124 0.111298218369 0.521222114563 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +150 0.0857195258141 0.509020864964 +126 0.0942005366087 0.504124403 +125 0.101623922586 0.513798773289 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 4 +151 0.0800746977329 0.495393037796 +127 0.0895339995623 0.492858439684 +126 0.0942005366087 0.504124403 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 4 +152 0.0781493484974 0.480768471956 +128 0.0879423320293 0.480768471956 +127 0.0895339995623 0.492858439684 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 4 +153 0.0800746977329 0.466143995523 +129 0.0895340144634 0.468678593636 +128 0.0879423320293 0.480768471956 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +154 0.0857195854187 0.452516138554 +130 0.0942005366087 0.457412600517 +129 0.0895340144634 0.468678593636 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +131 0.101623937488 0.447738260031 +130 0.0942005366087 0.457412600517 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +156 0.106401786208 0.431833893061 +132 0.111298263073 0.440314859152 +131 0.101623937488 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +157 0.120029658079 0.42618906498 +133 0.12256424129 0.435648351908 +132 0.111298263073 0.440314859152 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 4 +158 0.134654179215 0.424263685942 +134 0.134654179215 0.434056699276 +133 0.12256424129 0.435648351908 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +135 0.146744087338 0.435648351908 +134 0.134654179215 0.434056699276 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +160 0.162906616926 0.431833952665 +136 0.158010080457 0.440314888954 +135 0.146744087338 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +161 0.17460912466 0.440813601017 +137 0.167684406042 0.447738260031 +136 0.158010080457 0.440314888954 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 4 +162 0.183588787913 0.452516138554 +138 0.17510779202 0.45741263032 +137 0.167684406042 0.447738260031 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +139 0.179774314165 0.468678623438 +138 0.17510779202 0.45741263032 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +164 0.191158980131 0.480768531561 +140 0.181365996599 0.480768531561 +139 0.179774314165 0.468678623438 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +141 0.179774314165 0.492858439684 +140 0.181365996599 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +166 0.183588787913 0.509020924568 +143 0.17510779202 0.504124403 +141 0.179774314165 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +166 0.183588787913 0.509020924568 +167 0.174609094858 0.520723462105 +142 0.167684406042 0.513798773289 +143 0.17510779202 0.504124403 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +214 0.16854172945 0.514656126499 +190 0.163466095924 0.509580433369 +168 0.155027270317 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +168 0.155027270317 0.516055822372 +169 0.145200058818 0.520126402378 +193 0.147057831287 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +193 0.147057831287 0.527059793472 +169 0.145200058818 0.520126402378 +170 0.134654119611 0.521514713764 +194 0.134654119611 0.528692781925 +SURF 0x10 +mat 10 +refs 4 +194 0.134654119611 0.528692781925 +170 0.134654119611 0.521514713764 +171 0.124108210206 0.520126402378 +195 0.122250407934 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +195 0.122250407934 0.527059793472 +171 0.124108210206 0.520126402378 +172 0.114281013608 0.516055822372 +196 0.11069200933 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +196 0.11069200933 0.52227216959 +172 0.114281013608 0.516055822372 +173 0.105842202902 0.509580433369 +197 0.100766569376 0.514656066895 +SURF 0x10 +mat 10 +refs 4 +197 0.100766569376 0.514656066895 +173 0.105842202902 0.509580433369 +174 0.0993668884039 0.501141607761 +198 0.0931505560875 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +198 0.0931505560875 0.504730641842 +174 0.0993668884039 0.501141607761 +175 0.0952962934971 0.491314411163 +199 0.0883629024029 0.493172168732 +SURF 0x10 +mat 10 +refs 4 +199 0.0883629024029 0.493172168732 +175 0.0952962934971 0.491314411163 +176 0.093907892704 0.480768471956 +200 0.0867298841476 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +200 0.0867298841476 0.480768471956 +176 0.093907892704 0.480768471956 +177 0.0952963232994 0.470222562551 +201 0.0883629024029 0.468364775181 +SURF 0x10 +mat 10 +refs 4 +201 0.0883629024029 0.468364775181 +177 0.0952963232994 0.470222562551 +178 0.0993668884039 0.460395395756 +202 0.0931505560875 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +202 0.0931505560875 0.456806391478 +178 0.0993668884039 0.460395395756 +179 0.105842217803 0.451956540346 +203 0.100766628981 0.446880936623 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +203 0.100766628981 0.446880936623 +179 0.105842217803 0.451956540346 +180 0.114281058311 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +180 0.114281058311 0.445481210947 +181 0.124108269811 0.441410690546 +205 0.122250497341 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +205 0.122250497341 0.434477210045 +181 0.124108269811 0.441410690546 +182 0.134654179215 0.440022289753 +206 0.134654179215 0.432844251394 +SURF 0x10 +mat 10 +refs 4 +206 0.134654179215 0.432844251394 +182 0.134654179215 0.440022289753 +183 0.145200103521 0.441410690546 +207 0.147057905793 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +207 0.147057905793 0.434477210045 +183 0.145200103521 0.441410690546 +184 0.155027285218 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +184 0.155027285218 0.445481210947 +185 0.163466125727 0.451956599951 +209 0.168541744351 0.446880996227 +SURF 0x10 +mat 10 +refs 4 +209 0.168541744351 0.446880996227 +185 0.163466125727 0.451956599951 +186 0.169941455126 0.460395395756 +210 0.176157802343 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +210 0.176157802343 0.456806391478 +186 0.169941455126 0.460395395756 +187 0.174012005329 0.470222622156 +211 0.180945426226 0.468364834785 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +211 0.180945426226 0.468364834785 +187 0.174012005329 0.470222622156 +188 0.175400406122 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +188 0.175400406122 0.480768531561 +189 0.174012005329 0.491314411163 +213 0.180945426226 0.493172228336 +SURF 0x10 +mat 10 +refs 4 +215 0.176157772541 0.504730641842 +213 0.180945426226 0.493172228336 +189 0.174012005329 0.491314411163 +191 0.169941455126 0.501141607761 +SURF 0x10 +mat 10 +refs 4 +214 0.16854172945 0.514656126499 +215 0.176157772541 0.504730641842 +191 0.169941455126 0.501141607761 +190 0.163466095924 0.509580433369 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +239 0.174595504999 0.520709872246 +214 0.16854172945 0.514656126499 +192 0.158616274595 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +192 0.158616274595 0.52227216959 +193 0.147057831287 0.527059793472 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 4 +217 0.149273663759 0.535329461098 +193 0.147057831287 0.527059793472 +194 0.134654119611 0.528692781925 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 4 +218 0.134654119611 0.537254154682 +194 0.134654119611 0.528692781925 +195 0.122250407934 0.527059793472 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 4 +219 0.120034605265 0.535329401493 +195 0.122250407934 0.527059793472 +196 0.11069200933 0.52227216959 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 4 +220 0.106411337852 0.529686450958 +196 0.11069200933 0.52227216959 +197 0.100766569376 0.514656066895 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 4 +221 0.0947128087282 0.520709812641 +197 0.100766569376 0.514656066895 +198 0.0931505560875 0.504730641842 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 4 +222 0.0857362151146 0.509011268616 +198 0.0931505560875 0.504730641842 +199 0.0883629024029 0.493172168732 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 4 +223 0.0800932794809 0.495388031006 +199 0.0883629024029 0.493172168732 +200 0.0867298841476 0.480768471956 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +224 0.0781685709953 0.480768471956 +200 0.0867298841476 0.480768471956 +201 0.0883629024029 0.468364775181 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 4 +225 0.0800932794809 0.466148912907 +201 0.0883629024029 0.468364775181 +202 0.0931505560875 0.456806391478 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 4 +226 0.0857362300158 0.452525675297 +202 0.0931505560875 0.456806391478 +203 0.100766628981 0.446880936623 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +227 0.0947128683329 0.440827161074 +203 0.100766628981 0.446880936623 +204 0.110692054033 0.439264863729 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +204 0.110692054033 0.439264863729 +205 0.122250497341 0.434477210045 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +229 0.120034620166 0.426207602024 +205 0.122250497341 0.434477210045 +206 0.134654179215 0.432844251394 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 4 +230 0.134654179215 0.424282938242 +206 0.134654179215 0.432844251394 +207 0.147057905793 0.434477210045 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +231 0.149273738265 0.426207602024 +207 0.147057905793 0.434477210045 +208 0.158616304398 0.439264893532 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +208 0.158616304398 0.439264893532 +209 0.168541744351 0.446880996227 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 4 +233 0.1745955199 0.440827220678 +209 0.168541744351 0.446880996227 +210 0.176157802343 0.456806391478 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 4 +234 0.183572113514 0.452525734901 +210 0.176157802343 0.456806391478 +211 0.180945426226 0.468364834785 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +235 0.189215064049 0.466149002314 +211 0.180945426226 0.468364834785 +212 0.182578399777 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +212 0.182578399777 0.480768531561 +213 0.180945426226 0.493172228336 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 4 +238 0.183572113514 0.50901132822 +237 0.189215064049 0.495388060808 +213 0.180945426226 0.493172228336 +215 0.176157772541 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +239 0.174595504999 0.520709872246 +238 0.183572113514 0.50901132822 +215 0.176157772541 0.504730641842 +214 0.16854172945 0.514656126499 +kids 0 +OBJECT poly +name "rscrews.L.001" +data 12 +Cylinder.010 +crease 30 +numvert 70 +3.456686 1.092273 -0.191961 +3.456686 1.105889 -0.188313 +3.456686 1.115856 -0.19828 +3.456686 1.112208 -0.211896 +3.456686 1.098592 -0.215544 +3.456686 1.088625 -0.205577 +3.428495 1.092273 -0.191961 +3.428495 1.105889 -0.188313 +3.428495 1.115856 -0.19828 +3.428495 1.112208 -0.211896 +3.428495 1.098592 -0.215544 +3.428495 1.088625 -0.205577 +3.456686 1.102241 -0.201928 +3.428495 1.102241 -0.201928 +3.428495 1.187056 -0.263551 +3.456686 1.187056 -0.263551 +3.428495 1.179379 -0.251729 +3.428495 1.17298 -0.264288 +3.428495 1.180657 -0.27611 +3.428495 1.194733 -0.275372 +3.428495 1.201132 -0.262813 +3.428495 1.193455 -0.250991 +3.456686 1.179379 -0.251729 +3.456686 1.17298 -0.264288 +3.456686 1.180657 -0.27611 +3.456686 1.194733 -0.275372 +3.456686 1.201132 -0.262813 +3.456686 1.193455 -0.250991 +3.456686 1.168581 -0.365462 +3.456686 1.159711 -0.376417 +3.456686 1.145789 -0.374212 +3.456686 1.140738 -0.361052 +3.456686 1.149608 -0.350098 +3.456686 1.16353 -0.352303 +3.428495 1.168581 -0.365462 +3.428495 1.159711 -0.376417 +3.428495 1.145789 -0.374212 +3.428495 1.140738 -0.361052 +3.428495 1.149608 -0.350098 +3.428495 1.16353 -0.352303 +3.456686 1.15466 -0.363257 +3.428495 1.15466 -0.363257 +3.428495 1.049822 -0.363257 +3.456686 1.049822 -0.363257 +3.428495 1.062981 -0.368309 +3.428495 1.060776 -0.354387 +3.428495 1.047617 -0.349335 +3.428495 1.036662 -0.358206 +3.428495 1.038867 -0.372128 +3.428495 1.052027 -0.377179 +3.456686 1.062981 -0.368309 +3.456686 1.060776 -0.354387 +3.456686 1.047617 -0.349335 +3.456686 1.036662 -0.358206 +3.456686 1.038867 -0.372128 +3.456686 1.052027 -0.377179 +3.456686 1.004866 -0.26995 +3.456686 1.005603 -0.255874 +3.456686 1.018163 -0.249474 +3.456686 1.029984 -0.257151 +3.456686 1.029246 -0.271228 +3.456686 1.016687 -0.277627 +3.428495 1.004866 -0.26995 +3.428495 1.005603 -0.255874 +3.428495 1.018163 -0.249474 +3.428495 1.029984 -0.257151 +3.428495 1.029246 -0.271228 +3.428495 1.016687 -0.277627 +3.456686 1.017425 -0.263551 +3.428495 1.017425 -0.263551 +numsurf 90 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +0 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +7 0 0 +6 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +1 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +8 0 0 +7 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +2 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +9 0 0 +8 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +3 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +10 0 0 +9 0 0 +SURF 0x00 +mat 1 +refs 3 +12 0 0 +4 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +11 0 0 +10 0 0 +SURF 0x00 +mat 1 +refs 3 +5 0 0 +0 0 0 +12 0 0 +SURF 0x00 +mat 1 +refs 3 +13 0 0 +6 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +0 0 0 +6 0 0 +7 0 0 +1 0 0 +SURF 0x00 +mat 1 +refs 4 +1 0 0 +7 0 0 +8 0 0 +2 0 0 +SURF 0x00 +mat 1 +refs 4 +2 0 0 +8 0 0 +9 0 0 +3 0 0 +SURF 0x00 +mat 1 +refs 4 +3 0 0 +9 0 0 +10 0 0 +4 0 0 +SURF 0x00 +mat 1 +refs 4 +4 0 0 +10 0 0 +11 0 0 +5 0 0 +SURF 0x00 +mat 1 +refs 4 +6 0 0 +0 0 0 +5 0 0 +11 0 0 +SURF 0x00 +mat 1 +refs 4 +22 0 0 +16 0 0 +21 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 4 +23 0 0 +17 0 0 +16 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 4 +24 0 0 +18 0 0 +17 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 4 +25 0 0 +19 0 0 +18 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 4 +26 0 0 +20 0 0 +19 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 4 +27 0 0 +21 0 0 +20 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +21 0 0 +16 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +22 0 0 +27 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +16 0 0 +17 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +23 0 0 +22 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +17 0 0 +18 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +24 0 0 +23 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +18 0 0 +19 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +25 0 0 +24 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +19 0 0 +20 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +26 0 0 +25 0 0 +SURF 0x00 +mat 1 +refs 3 +14 0 0 +20 0 0 +21 0 0 +SURF 0x00 +mat 1 +refs 3 +15 0 0 +27 0 0 +26 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +28 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +35 0 0 +34 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +29 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +36 0 0 +35 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +30 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +37 0 0 +36 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +31 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +38 0 0 +37 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +32 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +39 0 0 +38 0 0 +SURF 0x00 +mat 1 +refs 3 +40 0 0 +33 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 3 +41 0 0 +34 0 0 +39 0 0 +SURF 0x00 +mat 1 +refs 4 +28 0 0 +34 0 0 +35 0 0 +29 0 0 +SURF 0x00 +mat 1 +refs 4 +29 0 0 +35 0 0 +36 0 0 +30 0 0 +SURF 0x00 +mat 1 +refs 4 +30 0 0 +36 0 0 +37 0 0 +31 0 0 +SURF 0x00 +mat 1 +refs 4 +31 0 0 +37 0 0 +38 0 0 +32 0 0 +SURF 0x00 +mat 1 +refs 4 +32 0 0 +38 0 0 +39 0 0 +33 0 0 +SURF 0x00 +mat 1 +refs 4 +33 0 0 +39 0 0 +34 0 0 +28 0 0 +SURF 0x00 +mat 1 +refs 4 +50 0 0 +44 0 0 +49 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 4 +51 0 0 +45 0 0 +44 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 4 +52 0 0 +46 0 0 +45 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 4 +53 0 0 +47 0 0 +46 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 4 +54 0 0 +48 0 0 +47 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 4 +55 0 0 +49 0 0 +48 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +49 0 0 +44 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +50 0 0 +55 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +44 0 0 +45 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +51 0 0 +50 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +45 0 0 +46 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +52 0 0 +51 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +46 0 0 +47 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +53 0 0 +52 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +47 0 0 +48 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +54 0 0 +53 0 0 +SURF 0x00 +mat 1 +refs 3 +42 0 0 +48 0 0 +49 0 0 +SURF 0x00 +mat 1 +refs 3 +43 0 0 +55 0 0 +54 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +56 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +63 0 0 +62 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +57 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +64 0 0 +63 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +58 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +65 0 0 +64 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +59 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +66 0 0 +65 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +60 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +67 0 0 +66 0 0 +SURF 0x00 +mat 1 +refs 3 +68 0 0 +61 0 0 +56 0 0 +SURF 0x00 +mat 1 +refs 3 +69 0 0 +62 0 0 +67 0 0 +SURF 0x00 +mat 1 +refs 4 +56 0 0 +62 0 0 +63 0 0 +57 0 0 +SURF 0x00 +mat 1 +refs 4 +57 0 0 +63 0 0 +64 0 0 +58 0 0 +SURF 0x00 +mat 1 +refs 4 +58 0 0 +64 0 0 +65 0 0 +59 0 0 +SURF 0x00 +mat 1 +refs 4 +59 0 0 +65 0 0 +66 0 0 +60 0 0 +SURF 0x00 +mat 1 +refs 4 +60 0 0 +66 0 0 +67 0 0 +61 0 0 +SURF 0x00 +mat 1 +refs 4 +61 0 0 +67 0 0 +62 0 0 +56 0 0 +kids 0 +OBJECT poly +name "canister.HR" +data 9 +Plane.019 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +1.123723 1.259156 -0.039596 +1.129116 1.262619 -0.047236 +1.129651 1.259219 -0.047615 +1.12947 1.255811 -0.047027 +1.128597 1.252806 -0.045543 +1.127136 1.250568 -0.043341 +1.125263 1.249365 -0.040688 +1.123205 1.249343 -0.037903 +1.121209 1.250505 -0.035323 +1.119516 1.25271 -0.033258 +1.118331 1.255693 -0.031957 +1.117796 1.259093 -0.031578 +1.117976 1.262501 -0.032166 +1.118849 1.265506 -0.03365 +1.12031 1.267745 -0.035852 +1.122183 1.268948 -0.038505 +1.124242 1.268969 -0.04129 +1.126238 1.267807 -0.04387 +1.12793 1.265602 -0.045935 +1.1377 1.271593 -0.072549 +1.139691 1.258934 -0.073961 +1.13902 1.246246 -0.071772 +1.135769 1.23506 -0.066246 +1.130329 1.226726 -0.05805 +1.123357 1.222248 -0.048173 +1.115693 1.222167 -0.037805 +1.108263 1.226492 -0.028198 +1.101961 1.234702 -0.02051 +1.097548 1.245806 -0.015668 +1.095557 1.258466 -0.014256 +1.096228 1.271154 -0.016445 +1.099479 1.28234 -0.021971 +1.104919 1.290674 -0.030167 +1.111891 1.295152 -0.040044 +1.119555 1.295233 -0.050412 +1.126986 1.290908 -0.060019 +1.133287 1.282698 -0.067707 +1.119867 1.271389 -0.090033 +1.122056 1.257474 -0.091584 +1.121319 1.243528 -0.089178 +1.117745 1.231234 -0.083104 +1.111767 1.222073 -0.074096 +1.104103 1.217152 -0.06324 +1.09568 1.217062 -0.051845 +1.087512 1.221816 -0.041285 +1.080586 1.23084 -0.032835 +1.075736 1.243046 -0.027513 +1.073548 1.256961 -0.025961 +1.074285 1.270906 -0.028367 +1.077858 1.283201 -0.034441 +1.083837 1.292361 -0.043449 +1.0915 1.297283 -0.054306 +1.099924 1.297372 -0.065701 +1.108091 1.292618 -0.076261 +1.115017 1.283594 -0.084711 +1.108908 1.267811 -0.087659 +1.110614 1.256961 -0.088869 +1.110039 1.246088 -0.086992 +1.107253 1.236501 -0.082257 +1.102591 1.229359 -0.075233 +1.096616 1.225521 -0.066768 +1.090048 1.225452 -0.057883 +1.08368 1.229158 -0.049649 +1.078279 1.236194 -0.04306 +1.074497 1.245711 -0.038911 +1.072791 1.256561 -0.037701 +1.073366 1.267434 -0.039577 +1.076152 1.277021 -0.044313 +1.080814 1.284163 -0.051337 +1.086789 1.288001 -0.059802 +1.093357 1.288071 -0.068687 +1.105126 1.277328 -0.083509 +1.099725 1.284364 -0.076921 +1.110242 1.274725 -0.112567 +1.11314 1.256303 -0.114621 +1.112164 1.23784 -0.111435 +1.107433 1.221563 -0.103394 +1.099517 1.209435 -0.091468 +1.089372 1.202919 -0.077095 +1.07822 1.202801 -0.062008 +1.067407 1.209095 -0.048028 +1.058237 1.221042 -0.036841 +1.051816 1.237201 -0.029795 +1.048918 1.255623 -0.027741 +1.049894 1.274086 -0.030927 +1.054625 1.290362 -0.038968 +1.062541 1.30249 -0.050894 +1.072687 1.309006 -0.065267 +1.083838 1.309125 -0.080353 +1.094651 1.302831 -0.094334 +1.103822 1.290884 -0.105521 +1.084474 1.319182 -0.349865 +1.084474 1.135866 -0.331331 +1.093521 1.317574 -0.365767 +1.093521 1.134259 -0.347232 +1.12578 1.296884 -0.347611 +1.12578 1.314514 -0.173239 +1.084474 1.153497 -0.156959 +1.092794 1.155587 -0.136287 +1.092794 1.338902 -0.154821 +1.084474 1.336812 -0.175493 +1.12578 1.175794 -0.159213 +1.12578 1.158165 -0.333585 +1.11746 1.160794 -0.136814 +1.107536 1.155587 -0.136287 +1.114925 1.155587 -0.136287 +1.13579 1.198832 -0.1368 +1.13579 1.29643 -0.146668 +1.13579 1.267949 -0.42836 +1.13579 1.170351 -0.418491 +1.114925 1.159324 -0.099318 +0.600289 1.307456 -0.465841 +0.600289 1.352229 -0.023012 +1.045375 1.352229 -0.023013 +1.045375 1.307456 -0.465841 +1.045375 1.168913 -0.004478 +0.600289 1.168913 -0.004478 +0.600289 1.124141 -0.447306 +1.045375 1.124141 -0.447306 +1.11746 1.333695 -0.154295 +1.116733 1.313861 -0.365391 +1.116233 1.314886 -0.365495 +1.116733 1.137972 -0.347608 +1.114925 1.134259 -0.347232 +1.114925 1.124141 -0.447306 +1.102765 1.317574 -0.365767 +1.114925 1.317574 -0.365767 +1.114925 1.307456 -0.465841 +1.116751 1.335151 -0.154442 +1.114925 1.338902 -0.154822 +1.114925 1.34264 -0.117853 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +14 0.720553219318 0.925439238548 +SURF 0x10 +mat 9 +refs 3 +14 0.0138833634555 0.386543720961 +0 0.0146232433617 0.387093901634 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 3 +15 0.72085505724 0.925845265388 +0 0.72110337019 0.926179170609 +16 0.721186935902 0.926291584969 +SURF 0x10 +mat 9 +refs 3 +16 0.0147356744856 0.387177467346 +0 0.0146232433617 0.387093901634 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 3 +17 0.721508681774 0.92672431469 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +1 0.0157923176885 0.387963145971 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +2 0.0159082766622 0.38804936409 +20 0.0201382674277 0.389667838812 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +2 0.722058951855 0.92746424675 +3 0.722029745579 0.927425146103 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +4 0.721888959408 0.927235841751 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +5 0.721653521061 0.926918983459 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +6 0.72135168314 0.926512956619 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +7 0.721019804478 0.926066756248 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +8 0.720698058605 0.925634026527 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +9 0.720425188541 0.925267100334 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +10 0.72023409605 0.925010085106 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +11 0.720147907734 0.924894213676 +29 0.716563045979 0.922126293182 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +12 0.720176875591 0.924933195114 +30 0.716671168804 0.922271609306 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +12 0.0133772883564 0.386167436838 +13 0.0135666038841 0.386308133602 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +14 0.0138833634555 0.386543720961 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +15 0.0142893865705 0.386845588684 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +16 0.0147356744856 0.387177467346 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +17 0.0151683967561 0.387499213219 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +18 0.0155353546143 0.38777205348 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +38 0.0229883790016 0.386825114489 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +47 0.713015139103 0.924027919769 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +29 0.0105703622103 0.382553577423 +30 0.0107157044113 0.382661700249 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +55 0.0221912320703 0.384705603123 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +56 0.0225611738861 0.384980678558 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +66 0.0144859515131 0.378976285458 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +73 0.0260738730431 0.38492077589 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +55 0.718715131283 0.933747172356 +56 0.718990147114 0.934117078781 +74 0.719397246838 0.938257932663 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +75 0.719240009785 0.938046455383 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +76 0.718477427959 0.937020778656 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +77 0.717201411724 0.935304641724 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +78 0.715565979481 0.933105111122 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +79 0.713768184185 0.930687427521 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +80 0.712025225163 0.928343296051 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +81 0.710547029972 0.926355242729 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +82 0.70951205492 0.924963235855 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +83 0.709044992924 0.924335122108 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +66 0.712985813618 0.926041841507 +84 0.709202229977 0.924546599388 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +67 0.713434994221 0.926645874977 +85 0.709964811802 0.925572276115 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +86 0.0157324578613 0.377231329679 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +87 0.0179319903255 0.378866791725 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +88 0.0203496366739 0.380664467812 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +89 0.0226938482374 0.382407516241 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +90 0.0246818736196 0.383885681629 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +93 0.0659876763821 0.382225304842 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +91 0.0634112805128 0.380766808987 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +95 0.0634113550186 0.387425422668 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +129 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +99 0.0318100675941 0.38210812211 +113 0.0104542709887 0.374464154243 +130 0.0258204042912 0.385675609112 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +96 0.721435010433 0.94671523571 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +122 0.719976484776 0.977543592453 +124 0.719685137272 0.993757665157 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +100 0.0351593159139 0.380766808987 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +121 0.719896018505 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +126 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +105 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +106 0.723048508167 0.94274699688 +110 0.719685137272 0.937376379967 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +107 0.723048388958 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +130 0.719685137272 0.937376379967 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +110 0.719685137272 0.937376379967 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +112 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +111 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +114 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +111 0.0822017341852 0.302716642618 +112 0.0104542300105 0.302716702223 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +115 0.708473742008 0.922010183334 +116 0.636726200581 0.922010183334 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +128 0.0318100675941 0.385969936848 +130 0.0258204042912 0.385675609112 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +125 0.0659876763821 0.383715420961 +126 0.0659876763821 0.385675609112 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +129 0.0318100675941 0.385675609112 +kids 0 +OBJECT poly +name "canister.R" +data 9 +Plane.013 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +2.464633 1.161144 -0.103133 +2.46954 1.165915 -0.110386 +2.466299 1.166899 -0.111105 +2.462856 1.167189 -0.110863 +2.459628 1.166749 -0.109688 +2.457004 1.165634 -0.107723 +2.455299 1.163977 -0.105204 +2.454721 1.161979 -0.102436 +2.455338 1.159879 -0.099752 +2.457077 1.157933 -0.097475 +2.459726 1.156374 -0.095881 +2.462968 1.15539 -0.095162 +2.46641 1.1551 -0.095404 +2.469638 1.155539 -0.096578 +2.472263 1.156654 -0.098543 +2.473967 1.158311 -0.101062 +2.474545 1.16031 -0.103831 +2.473928 1.162409 -0.106515 +2.47219 1.164356 -0.108792 +2.482074 1.172862 -0.134668 +2.470006 1.176525 -0.137346 +2.45719 1.177604 -0.136444 +2.445172 1.175968 -0.132071 +2.435401 1.171816 -0.124756 +2.429057 1.165648 -0.115379 +2.426903 1.158208 -0.105072 +2.429201 1.150393 -0.095078 +2.435673 1.143146 -0.086603 +2.445537 1.137341 -0.080669 +2.457605 1.133678 -0.077991 +2.470421 1.132599 -0.078893 +2.482439 1.134235 -0.083265 +2.49221 1.138387 -0.090581 +2.498554 1.144555 -0.099958 +2.500708 1.151995 -0.110265 +2.49841 1.15981 -0.120258 +2.491938 1.167057 -0.128734 +2.481195 1.154984 -0.152083 +2.46793 1.15901 -0.155026 +2.453844 1.160195 -0.154035 +2.440634 1.158398 -0.149229 +2.429896 1.153834 -0.141188 +2.422922 1.147054 -0.130882 +2.420555 1.138877 -0.119554 +2.423081 1.130287 -0.108569 +2.430194 1.122322 -0.099254 +2.441036 1.115941 -0.092731 +2.454301 1.111915 -0.089788 +2.468387 1.11073 -0.090779 +2.481596 1.112527 -0.095585 +2.492335 1.117091 -0.103626 +2.499309 1.123871 -0.113933 +2.501676 1.132049 -0.125261 +2.49915 1.140638 -0.136246 +2.492037 1.148603 -0.145561 +2.475944 1.144641 -0.150081 +2.465601 1.14778 -0.152376 +2.454618 1.148705 -0.151603 +2.444319 1.147303 -0.147856 +2.435945 1.143744 -0.141586 +2.430508 1.138458 -0.13355 +2.428663 1.132082 -0.124717 +2.430631 1.125384 -0.116153 +2.436177 1.119173 -0.108889 +2.444632 1.114199 -0.103804 +2.454974 1.11106 -0.101509 +2.465957 1.110135 -0.102281 +2.476257 1.111537 -0.106029 +2.484631 1.115095 -0.112299 +2.490068 1.120381 -0.120335 +2.491913 1.126758 -0.129168 +2.484398 1.139666 -0.144995 +2.489944 1.133455 -0.137732 +2.485422 1.14469 -0.174167 +2.467861 1.150019 -0.178064 +2.449212 1.151589 -0.176752 +2.431724 1.149209 -0.170389 +2.417507 1.143167 -0.159743 +2.408275 1.134192 -0.146099 +2.405141 1.123365 -0.131101 +2.408484 1.111993 -0.116558 +2.417902 1.101447 -0.104226 +2.432256 1.093 -0.09559 +2.449817 1.087671 -0.091694 +2.468466 1.086101 -0.093006 +2.485954 1.088481 -0.099368 +2.500172 1.094523 -0.110014 +2.509404 1.103498 -0.123659 +2.512537 1.114325 -0.138657 +2.509194 1.125697 -0.153199 +2.499777 1.136243 -0.165532 +2.549398 1.109917 -0.40579 +2.366853 1.134922 -0.40579 +2.550626 1.118881 -0.421773 +2.36808 1.143885 -0.421773 +2.532799 1.153883 -0.405791 +2.532799 1.153883 -0.230529 +2.366853 1.134922 -0.230529 +2.367981 1.143165 -0.209752 +2.550527 1.118161 -0.209752 +2.549398 1.109917 -0.230529 +2.394662 1.172805 -0.230529 +2.394662 1.172804 -0.40579 +2.376514 1.166893 -0.209752 +2.369982 1.157771 -0.209752 +2.370985 1.165091 -0.209752 +2.416495 1.179917 -0.205912 +2.513683 1.166605 -0.205912 +2.513683 1.166605 -0.48904 +2.416495 1.179917 -0.48904 +2.370985 1.165091 -0.172595 +2.48369 0.630212 -0.522357 +2.48369 0.630212 -0.077271 +2.544092 1.07118 -0.077271 +2.544092 1.07118 -0.522357 +2.361547 1.096185 -0.077271 +2.301145 0.655216 -0.077271 +2.301145 0.655216 -0.522357 +2.361546 1.096185 -0.522357 +2.548689 1.143309 -0.209752 +2.550078 1.142384 -0.421773 +2.551031 1.14175 -0.421773 +2.374928 1.166376 -0.421773 +2.370985 1.165091 -0.421773 +2.370985 1.165091 -0.522357 +2.55188 1.128039 -0.421773 +2.55353 1.140087 -0.421773 +2.55353 1.140087 -0.522357 +2.550043 1.142408 -0.209752 +2.55353 1.140087 -0.209752 +2.55353 1.140087 -0.172595 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +14 0.720553219318 0.925439238548 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +15 0.0142893865705 0.386845588684 +0 0.0146232433617 0.387093901634 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 3 +16 0.721186935902 0.926291584969 +0 0.72110337019 0.926179170609 +15 0.72085505724 0.925845265388 +SURF 0x10 +mat 9 +refs 3 +17 0.0151683967561 0.387499213219 +0 0.0146232433617 0.387093901634 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +17 0.721508681774 0.92672431469 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +18 0.0155353546143 0.38777205348 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +2 0.0159082766622 0.38804936409 +1 0.0157923176885 0.387963145971 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +30 0.716671168804 0.922271609306 +12 0.720176875591 0.924933195114 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +12 0.0133772883564 0.386167436838 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +13 0.0135666038841 0.386308133602 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +20 0.0201382674277 0.389667838812 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +20 0.723677396774 0.931694149971 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +29 0.716563045979 0.922126293182 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +29 0.0105703622103 0.382553577423 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +30 0.0107157044113 0.382661700249 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +56 0.0225611738861 0.384980678558 +38 0.0229883790016 0.386825114489 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +38 0.720834553242 0.934544324875 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +47 0.713015139103 0.924027919769 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +47 0.0124720484018 0.379005610943 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +73 0.0260738730431 0.38492077589 +55 0.0221912320703 0.384705603123 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +55 0.718715131283 0.933747172356 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +56 0.718990147114 0.934117078781 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +85 0.709964811802 0.925572276115 +67 0.713434994221 0.926645874977 +66 0.712985813618 0.926041841507 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +91 0.0634112805128 0.380766808987 +114 0.0822017341852 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +91 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +100 0.0351593159139 0.380766808987 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +93 0.0659876763821 0.382225304842 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +93 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +130 0.0258204042912 0.385675609112 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +98 0.716117560863 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +95 0.0634113550186 0.387425422668 +108 0.0768311172724 0.389038980007 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +130 0.0258204042912 0.385675609112 +119 0.0318100675941 0.386084258556 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +101 0.721435010433 0.94671523571 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +126 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +119 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +129 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +105 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +130 0.719685137272 0.937376379967 +107 0.723048388958 0.94274699688 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +118 0.708473622799 0.993757665157 +124 0.719685137272 0.993757665157 +127 0.719685018063 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +112 0.636726200581 0.922010183334 +116 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +114 0.708473622799 0.993757665157 +111 0.636726200581 0.993757665157 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +112 0.0104542300105 0.302716702223 +111 0.0822017341852 0.302716642618 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +127 0.0822017341852 0.385675519705 +121 0.0659876763821 0.385886520147 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +122 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +126 0.0659876763821 0.385675609112 +125 0.0659876763821 0.383715420961 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +129 0.0318100675941 0.385675609112 +128 0.0318100675941 0.385969936848 +kids 0 +OBJECT poly +name "rearaxle" +data 12 +Cylinder.017 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 220 +2.728403 0.426172 0.033155 +2.732089 0.417275 0.033155 +2.733346 0.407726 0.033155 +2.732089 0.398178 0.033155 +2.728403 0.389281 0.033155 +2.722541 0.381641 0.033155 +2.7149 0.375778 0.033155 +2.706003 0.372093 0.033155 +2.696455 0.370836 0.033155 +2.686907 0.372093 0.033155 +2.67801 0.375778 0.033155 +2.670369 0.381641 0.033155 +2.664506 0.389281 0.033155 +2.660821 0.398178 0.033155 +2.659564 0.407726 0.033155 +2.660821 0.417274 0.033155 +2.664506 0.426172 0.033155 +2.670369 0.433812 0.033155 +2.67801 0.439675 0.033155 +2.686907 0.44336 0.033155 +2.696455 0.444617 0.033155 +2.706003 0.44336 0.033155 +2.722541 0.433812 0.033155 +2.7149 0.439675 0.033155 +2.738869 0.432214 -0.510068 +2.743762 0.420402 -0.510068 +2.74543 0.407726 -0.510068 +2.743762 0.395051 -0.510068 +2.738869 0.383239 -0.510068 +2.731086 0.373096 -0.510068 +2.720943 0.365312 -0.510068 +2.709131 0.36042 -0.510068 +2.696455 0.358751 -0.510068 +2.683779 0.36042 -0.510068 +2.671967 0.365312 -0.510068 +2.661824 0.373095 -0.510068 +2.654041 0.383239 -0.510068 +2.649148 0.395051 -0.510068 +2.647479 0.407726 -0.510068 +2.649148 0.420402 -0.510068 +2.654041 0.432214 -0.510068 +2.661824 0.442357 -0.510068 +2.671967 0.45014 -0.510068 +2.683779 0.455033 -0.510068 +2.696455 0.456702 -0.510068 +2.709131 0.455033 -0.510068 +2.731086 0.442357 -0.510068 +2.720942 0.45014 -0.510068 +2.791042 0.462336 -0.517089 +2.801953 0.435995 -0.517089 +2.805674 0.407726 -0.517089 +2.801953 0.379458 -0.517089 +2.791042 0.353117 -0.517089 +2.773685 0.330497 -0.517089 +2.751065 0.31314 -0.517089 +2.724723 0.302229 -0.517089 +2.696455 0.298507 -0.517089 +2.668187 0.302229 -0.517089 +2.641845 0.31314 -0.517089 +2.619225 0.330497 -0.517089 +2.601868 0.353117 -0.517089 +2.590957 0.379458 -0.517089 +2.587235 0.407726 -0.517089 +2.590957 0.435994 -0.517089 +2.601868 0.462336 -0.517089 +2.619225 0.484956 -0.517089 +2.641845 0.502313 -0.517089 +2.668187 0.513224 -0.517089 +2.696455 0.516946 -0.517089 +2.724723 0.513224 -0.517089 +2.773685 0.484956 -0.517089 +2.751065 0.502313 -0.517089 +2.791042 0.462336 -0.541074 +2.773685 0.484956 -0.541074 +2.801953 0.435995 -0.541074 +2.805674 0.407726 -0.541074 +2.801953 0.379458 -0.541074 +2.791042 0.353117 -0.541074 +2.773685 0.330497 -0.541074 +2.751065 0.31314 -0.541074 +2.724723 0.302229 -0.541074 +2.696455 0.298507 -0.541074 +2.668187 0.302229 -0.541074 +2.641845 0.31314 -0.541074 +2.619225 0.330497 -0.541074 +2.601868 0.353117 -0.541074 +2.590957 0.379458 -0.541074 +2.587235 0.407726 -0.541074 +2.590957 0.435994 -0.541074 +2.601868 0.462336 -0.541074 +2.619225 0.484956 -0.541074 +2.641845 0.502313 -0.541074 +2.668187 0.513224 -0.541074 +2.696455 0.516946 -0.541074 +2.724723 0.513224 -0.541074 +2.751065 0.502313 -0.541074 +2.696455 0.407726 -0.541074 +2.637274 0.478666 0.04839 +2.637274 0.447921 0.006888 +2.637274 0.351154 0.006888 +2.637274 0.320409 0.04839 +2.637274 0.291445 0.120275 +2.637274 0.291445 0.20328 +2.637274 0.320409 0.275165 +2.637274 0.351154 0.316668 +2.637274 0.44792 0.316668 +2.637274 0.478666 0.275165 +2.637274 0.507629 0.203281 +2.637274 0.507629 0.120275 +2.759371 0.478666 0.04839 +2.759371 0.447921 0.006888 +2.759371 0.351154 0.006888 +2.759371 0.320409 0.04839 +2.759371 0.291446 0.120275 +2.759371 0.291445 0.20328 +2.759371 0.320408 0.275165 +2.759371 0.351153 0.316668 +2.759371 0.44792 0.316668 +2.759371 0.478666 0.275165 +2.759371 0.507629 0.203281 +2.759371 0.507629 0.120275 +2.569854 0.399537 0.161778 +2.790396 0.399537 0.161778 +2.696455 0.407726 0.541067 +2.751065 0.502313 0.541066 +2.724723 0.513224 0.541066 +2.696455 0.516946 0.541066 +2.668187 0.513224 0.541066 +2.641845 0.502313 0.541066 +2.619225 0.484956 0.541066 +2.601868 0.462336 0.541066 +2.590957 0.435995 0.541066 +2.587236 0.407726 0.541066 +2.590957 0.379458 0.541066 +2.601868 0.353117 0.541066 +2.619226 0.330497 0.541066 +2.641845 0.31314 0.541066 +2.668187 0.302229 0.541066 +2.696455 0.298507 0.541066 +2.724723 0.302229 0.541066 +2.751065 0.31314 0.541066 +2.773685 0.330497 0.541066 +2.791042 0.353117 0.541066 +2.801953 0.379459 0.541066 +2.805675 0.407727 0.541066 +2.801953 0.435995 0.541066 +2.773685 0.484956 0.541066 +2.791042 0.462336 0.541066 +2.751065 0.502313 0.517081 +2.773685 0.484956 0.517081 +2.724723 0.513224 0.517081 +2.696455 0.516946 0.517081 +2.668187 0.513224 0.517081 +2.641845 0.502313 0.517081 +2.619225 0.484956 0.517081 +2.601868 0.462336 0.517081 +2.590957 0.435995 0.517081 +2.587236 0.407726 0.517081 +2.590957 0.379458 0.517081 +2.601868 0.353117 0.517081 +2.619226 0.330497 0.517081 +2.641845 0.31314 0.517081 +2.668187 0.302229 0.517081 +2.696455 0.298507 0.517081 +2.724723 0.302229 0.517081 +2.751065 0.31314 0.517081 +2.773685 0.330497 0.517081 +2.791042 0.353117 0.517081 +2.801953 0.379459 0.517081 +2.805675 0.407727 0.517081 +2.801953 0.435995 0.517081 +2.791042 0.462336 0.517081 +2.720943 0.450141 0.51006 +2.731086 0.442357 0.51006 +2.709131 0.455033 0.51006 +2.696455 0.456702 0.51006 +2.683779 0.455033 0.51006 +2.671967 0.450141 0.51006 +2.661824 0.442357 0.51006 +2.654041 0.432214 0.51006 +2.649148 0.420402 0.51006 +2.64748 0.407726 0.51006 +2.649148 0.395051 0.51006 +2.654041 0.383239 0.51006 +2.661824 0.373096 0.51006 +2.671968 0.365312 0.51006 +2.683779 0.36042 0.51006 +2.696455 0.358751 0.51006 +2.709131 0.36042 0.51006 +2.720943 0.365312 0.51006 +2.731086 0.373096 0.51006 +2.738869 0.383239 0.51006 +2.743762 0.395051 0.51006 +2.745431 0.407726 0.51006 +2.743762 0.420402 0.51006 +2.738869 0.432214 0.51006 +2.7149 0.439675 0.300415 +2.722541 0.433812 0.300415 +2.706003 0.44336 0.300415 +2.696455 0.444617 0.300415 +2.686907 0.44336 0.300415 +2.67801 0.439675 0.300415 +2.670369 0.433812 0.300415 +2.664507 0.426172 0.300415 +2.660821 0.417274 0.300415 +2.659564 0.407726 0.300415 +2.660821 0.398178 0.300415 +2.664507 0.389281 0.300415 +2.670369 0.381641 0.300415 +2.67801 0.375778 0.300415 +2.686907 0.372093 0.300415 +2.696455 0.370836 0.300415 +2.706003 0.372093 0.300415 +2.7149 0.375778 0.300415 +2.722541 0.381641 0.300415 +2.728404 0.389281 0.300415 +2.732089 0.398178 0.300415 +2.733346 0.407726 0.300415 +2.732089 0.417275 0.300415 +2.728404 0.426172 0.300415 +numsurf 228 +SURF 0x10 +mat 1 +refs 4 +22 0.386757433414 0.455120652914 +0 0.390089780092 0.455131679773 +24 0.386783152819 0.690643787384 +46 0.382359176874 0.690629124641 +SURF 0x10 +mat 1 +refs 4 +0 0.390089780092 0.455131679773 +1 0.393959701061 0.455144047737 +25 0.391920775175 0.690660178661 +24 0.386783152819 0.690643787384 +SURF 0x10 +mat 1 +refs 4 +26 0.397422015667 0.690677285194 +25 0.391920775175 0.690660178661 +1 0.393959701061 0.455144047737 +2 0.398103505373 0.45515692234 +SURF 0x10 +mat 1 +refs 4 +27 0.402911871672 0.69069391489 +26 0.397422015667 0.690677285194 +2 0.398103505373 0.45515692234 +3 0.402238726616 0.455169409513 +SURF 0x10 +mat 1 +refs 4 +28 0.408016264439 0.690708875656 +27 0.402911871672 0.69069391489 +3 0.402238726616 0.455169409513 +4 0.406083613634 0.455180704594 +SURF 0x10 +mat 1 +refs 4 +29 0.412387281656 0.690721273422 +28 0.408016264439 0.690708875656 +4 0.406083613634 0.455180704594 +5 0.409376114607 0.455190002918 +SURF 0x10 +mat 1 +refs 4 +30 0.386844038963 0.930144548416 +29 0.382366836071 0.930130779743 +5 0.386704385281 0.694623291492 +6 0.390076845884 0.694633603096 +SURF 0x10 +mat 1 +refs 4 +31 0.392014533281 0.930160403252 +30 0.386844038963 0.930144548416 +6 0.390076845884 0.694633603096 +7 0.393971592188 0.69464558363 +SURF 0x10 +mat 1 +refs 4 +32 0.397525966167 0.930177330971 +31 0.392014533281 0.930160403252 +7 0.393971592188 0.69464558363 +8 0.398123025894 0.694658279419 +SURF 0x10 +mat 1 +refs 4 +33 0.40300282836 0.930194139481 +32 0.397525966167 0.930177330971 +8 0.398123025894 0.694658279419 +9 0.402248442173 0.694670975208 +SURF 0x10 +mat 1 +refs 4 +34 0.408071577549 0.930209636688 +33 0.40300282836 0.930194139481 +9 0.402248442173 0.694670975208 +10 0.406066596508 0.694682657719 +SURF 0x10 +mat 1 +refs 4 +35 0.412387281656 0.930222928524 +34 0.408071577549 0.930209636688 +10 0.406066596508 0.694682657719 +11 0.40931725502 0.694692671299 +SURF 0x10 +mat 1 +refs 4 +36 0.501715123653 0.498428672552 +35 0.506088495255 0.498415231705 +11 0.503079712391 0.733945310116 +12 0.499785482883 0.733955442905 +SURF 0x10 +mat 1 +refs 4 +37 0.496609210968 0.498444408178 +36 0.501715123653 0.498428672552 +12 0.499785482883 0.733955442905 +13 0.495939463377 0.733967244625 +SURF 0x10 +mat 1 +refs 4 +38 0.491118848324 0.498461216688 +37 0.496609210968 0.498444408178 +13 0.495939463377 0.733967244625 +14 0.491803854704 0.733979940414 +SURF 0x10 +mat 1 +refs 4 +39 0.485618114471 0.498478114605 +38 0.491118848324 0.498461216688 +14 0.491803854704 0.733979940414 +15 0.487660437822 0.733992636204 +SURF 0x10 +mat 1 +refs 4 +40 0.480481863022 0.498493909836 +39 0.485618114471 0.498478114605 +15 0.487660437822 0.733992636204 +16 0.483791559935 0.734004497528 +SURF 0x10 +mat 1 +refs 4 +41 0.476060241461 0.498507410288 +40 0.480481863022 0.498493909836 +16 0.483791559935 0.734004497528 +17 0.480460941792 0.734014749527 +SURF 0x10 +mat 1 +refs 4 +42 0.229235604405 0.840261101723 +41 0.224776014686 0.840247392654 +17 0.229133889079 0.604739904404 +18 0.232493162155 0.604750216007 +SURF 0x10 +mat 1 +refs 4 +43 0.23439539969 0.840276896954 +42 0.229235604405 0.840261101723 +18 0.232493162155 0.604750216007 +19 0.236379697919 0.604762136936 +SURF 0x10 +mat 1 +refs 4 +44 0.239903599024 0.840293765068 +43 0.23439539969 0.840276896954 +19 0.236379697919 0.604762136936 +20 0.240528687835 0.60477489233 +SURF 0x10 +mat 1 +refs 4 +45 0.245384857059 0.840310633183 +44 0.239903599024 0.840293765068 +20 0.240528687835 0.60477489233 +21 0.244657546282 0.604787528515 +SURF 0x10 +mat 1 +refs 4 +47 0.250465750694 0.840326189995 +45 0.245384857059 0.840310633183 +21 0.244657546282 0.604787528515 +23 0.248484656215 0.60479927063 +SURF 0x10 +mat 1 +refs 4 +46 0.254799813032 0.840339481831 +47 0.250465750694 0.840326189995 +23 0.248484656215 0.60479927063 +22 0.251749277115 0.604809343815 +SURF 0x10 +mat 1 +refs 4 +48 0.026875641197 0.757240414619 +70 0.0330479331315 0.746529996395 +46 0.053788986057 0.762421011925 +24 0.0510212108493 0.767223715782 +SURF 0x10 +mat 1 +refs 4 +49 0.0236856546253 0.769183337688 +48 0.026875641197 0.757240414619 +24 0.0510212108493 0.767223715782 +25 0.0495907664299 0.772579073906 +SURF 0x10 +mat 1 +refs 4 +50 0.023695345968 0.781544923782 +49 0.0236856546253 0.769183337688 +25 0.0495907664299 0.772579073906 +26 0.0495950840414 0.778122246265 +SURF 0x10 +mat 1 +refs 4 +51 0.0269042365253 0.793482780457 +50 0.023695345968 0.781544923782 +26 0.0495950840414 0.778122246265 +27 0.0510340556502 0.783475339413 +SURF 0x10 +mat 1 +refs 4 +52 0.0330934412777 0.804183363914 +51 0.0269042365253 0.793482780457 +27 0.0510340556502 0.783475339413 +28 0.0538093522191 0.788273632526 +SURF 0x10 +mat 1 +refs 4 +53 0.0418412610888 0.812917411327 +52 0.0330934412777 0.804183363914 +28 0.0538093522191 0.788273632526 +29 0.0577320940793 0.792190074921 +SURF 0x10 +mat 1 +refs 4 +54 0.052551664412 0.819089770317 +53 0.0418412610888 0.812917411327 +29 0.0577320940793 0.792190074921 +30 0.0625346824527 0.794957876205 +SURF 0x10 +mat 1 +refs 4 +55 0.0644946098328 0.822279751301 +54 0.052551664412 0.819089770317 +30 0.0625346824527 0.794957876205 +31 0.0678901225328 0.796388268471 +SURF 0x10 +mat 1 +refs 4 +56 0.0768562033772 0.822269976139 +55 0.0644946098328 0.822279751301 +31 0.0678901225328 0.796388268471 +32 0.0734332203865 0.796383857727 +SURF 0x10 +mat 1 +refs 4 +57 0.0887940824032 0.819061040878 +56 0.0768562033772 0.822269976139 +32 0.0734332203865 0.796383857727 +33 0.0787864029408 0.794945001602 +SURF 0x10 +mat 1 +refs 4 +58 0.0994947403669 0.812871754169 +57 0.0887940824032 0.819061040878 +33 0.0787864029408 0.794945001602 +34 0.0835846066475 0.792169630527 +SURF 0x10 +mat 1 +refs 4 +59 0.108228757977 0.804123818874 +58 0.0994947403669 0.812871754169 +34 0.0835846066475 0.792169630527 +35 0.0875011458993 0.788246929646 +SURF 0x10 +mat 1 +refs 4 +60 0.114401221275 0.793413460255 +59 0.108228757977 0.804123818874 +35 0.0875011458993 0.788246929646 +36 0.0902689471841 0.783444225788 +SURF 0x10 +mat 1 +refs 4 +61 0.117591179907 0.781470537186 +60 0.114401221275 0.793413460255 +36 0.0902689471841 0.783444225788 +37 0.0916993692517 0.77808880806 +SURF 0x10 +mat 1 +refs 4 +62 0.117581516504 0.769108891487 +61 0.117591179907 0.781470537186 +37 0.0916993692517 0.77808880806 +38 0.0916950255632 0.772545695305 +SURF 0x10 +mat 1 +refs 4 +63 0.114372745156 0.757171034813 +62 0.117581516504 0.769108891487 +38 0.0916950255632 0.772545695305 +39 0.0902561321855 0.767192602158 +SURF 0x10 +mat 1 +refs 4 +64 0.108183406293 0.746470451355 +63 0.114372745156 0.757171034813 +39 0.0902561321855 0.767192602158 +40 0.0874807834625 0.762394309044 +SURF 0x10 +mat 1 +refs 4 +65 0.0994355678558 0.737736403942 +64 0.108183406293 0.746470451355 +40 0.0874807834625 0.762394309044 +41 0.0835581421852 0.75847786665 +SURF 0x10 +mat 1 +refs 4 +66 0.0887252911925 0.731564044952 +65 0.0994355678558 0.737736403942 +41 0.0835581421852 0.75847786665 +42 0.0787554979324 0.755710065365 +SURF 0x10 +mat 1 +refs 4 +67 0.0767823159695 0.728374063969 +66 0.0887252911925 0.731564044952 +42 0.0787554979324 0.755710065365 +43 0.0734001398087 0.7542796731 +SURF 0x10 +mat 1 +refs 4 +68 0.0644206479192 0.728383898735 +67 0.0767823159695 0.728374063969 +43 0.0734001398087 0.7542796731 +44 0.067857041955 0.754284083843 +SURF 0x10 +mat 1 +refs 4 +69 0.0524827428162 0.731592774391 +68 0.0644206479192 0.728383898735 +44 0.067857041955 0.754284083843 +45 0.0625038817525 0.755722939968 +SURF 0x10 +mat 1 +refs 4 +71 0.0417821072042 0.7377820611 +69 0.0524827428162 0.731592774391 +45 0.0625038817525 0.755722939968 +47 0.0577055290341 0.758498370647 +SURF 0x10 +mat 1 +refs 4 +70 0.0330479331315 0.746529996395 +71 0.0417821072042 0.7377820611 +47 0.0577055290341 0.758498370647 +46 0.053788986057 0.762421011925 +SURF 0x10 +mat 1 +refs 4 +72 0.668351829052 0.50828063488 +73 0.668384432793 0.498414814472 +70 0.678783357143 0.498446732759 +48 0.678750753403 0.50831258297 +SURF 0x10 +mat 1 +refs 4 +74 0.668315172195 0.519738018513 +72 0.668351829052 0.50828063488 +48 0.678750753403 0.50831258297 +49 0.678714096546 0.519769906998 +SURF 0x10 +mat 1 +refs 4 +75 0.668277084827 0.532006084919 +74 0.668315172195 0.519738018513 +49 0.678714096546 0.519769906998 +50 0.678676068783 0.532037973404 +SURF 0x10 +mat 1 +refs 4 +76 0.668240010738 0.54424893856 +75 0.668277084827 0.532006084919 +50 0.678676068783 0.532037973404 +51 0.678638994694 0.544280827045 +SURF 0x10 +mat 1 +refs 4 +77 0.668206632137 0.55563211441 +76 0.668240010738 0.54424893856 +51 0.678638994694 0.544280827045 +52 0.678605556488 0.555664002895 +SURF 0x10 +mat 1 +refs 4 +78 0.668179094791 0.565379917622 +77 0.668206632137 0.55563211441 +52 0.678605556488 0.555664002895 +53 0.678578019142 0.565411865711 +SURF 0x10 +mat 1 +refs 4 +79 0.365721434355 0.755617618561 +78 0.36575204134 0.745633006096 +53 0.376151025295 0.745664894581 +54 0.37612041831 0.755649507046 +SURF 0x10 +mat 1 +refs 4 +80 0.365686029196 0.767148375511 +79 0.365721434355 0.755617618561 +54 0.37612041831 0.755649507046 +55 0.376084983349 0.767180204391 +SURF 0x10 +mat 1 +refs 4 +81 0.36564835906 0.779439270496 +80 0.365686029196 0.767148375511 +55 0.376084983349 0.767180204391 +56 0.376047313213 0.779471099377 +SURF 0x10 +mat 1 +refs 4 +82 0.365610867739 0.791652977467 +81 0.36564835906 0.779439270496 +56 0.376047313213 0.779471099377 +57 0.376009821892 0.791684865952 +SURF 0x10 +mat 1 +refs 4 +83 0.365576177835 0.802956998348 +82 0.365610867739 0.791652977467 +57 0.376009821892 0.791684865952 +58 0.375975131989 0.802988886833 +SURF 0x10 +mat 1 +refs 4 +84 0.365546703339 0.812581002712 +83 0.365576177835 0.802956998348 +58 0.375975131989 0.802988886833 +59 0.375945597887 0.812612831593 +SURF 0x10 +mat 1 +refs 4 +85 0.510166168213 0.579067707062 +84 0.510195970535 0.569314658642 +59 0.520594954491 0.569346547127 +60 0.520564973354 0.579099595547 +SURF 0x10 +mat 1 +refs 4 +86 0.510131239891 0.590454161167 +85 0.510166168213 0.579067707062 +60 0.520564973354 0.579099595547 +61 0.520530164242 0.590486049652 +SURF 0x10 +mat 1 +refs 4 +87 0.51009362936 0.602698147297 +86 0.510131239891 0.590454161167 +61 0.520530164242 0.590486049652 +62 0.520492553711 0.602730035782 +SURF 0x10 +mat 1 +refs 4 +88 0.510056018829 0.614965200424 +87 0.51009362936 0.602698147297 +62 0.520492553711 0.602730035782 +63 0.520454883575 0.614997088909 +SURF 0x10 +mat 1 +refs 4 +89 0.510020852089 0.626419365406 +88 0.510056018829 0.614965200424 +63 0.520454883575 0.614997088909 +64 0.52041977644 0.626451313496 +SURF 0x10 +mat 1 +refs 4 +90 0.509990632534 0.636280119419 +89 0.510020852089 0.626419365406 +64 0.52041977644 0.626451313496 +65 0.520389437675 0.636312067509 +SURF 0x10 +mat 1 +refs 4 +91 0.510165452957 0.650159358978 +90 0.510195910931 0.640214085579 +65 0.520594894886 0.640245974064 +66 0.520564377308 0.650191366673 +SURF 0x10 +mat 1 +refs 4 +92 0.510130167007 0.661666214466 +91 0.510165452957 0.650159358978 +66 0.520564377308 0.650191366673 +67 0.520529031754 0.661698043346 +SURF 0x10 +mat 1 +refs 4 +93 0.510092437267 0.673949897289 +92 0.510130167007 0.661666214466 +67 0.520529031754 0.661698043346 +68 0.520491421223 0.673981845379 +SURF 0x10 +mat 1 +refs 4 +94 0.510054886341 0.68617361784 +93 0.510092437267 0.673949897289 +68 0.520491421223 0.673981845379 +69 0.520453870296 0.686205565929 +SURF 0x10 +mat 1 +refs 4 +95 0.510020136833 0.697504401207 +94 0.510054886341 0.68617361784 +69 0.520453870296 0.686205565929 +71 0.520419120789 0.697536289692 +SURF 0x10 +mat 1 +refs 4 +73 0.509990513325 0.70716971159 +95 0.510020136833 0.697504401207 +71 0.520419120789 0.697536289692 +70 0.520389437675 0.707201659679 +SURF 0x10 +mat 1 +refs 3 +72 0.088821426034 0.721235573292 +96 0.0706338435411 0.677514612675 +73 0.0995175391436 0.715038597584 +SURF 0x10 +mat 1 +refs 3 +74 0.0768858864903 0.724453151226 +96 0.0706338435411 0.677514612675 +72 0.088821426034 0.721235573292 +SURF 0x10 +mat 1 +refs 3 +75 0.0645242705941 0.724472045898 +96 0.0706338435411 0.677514612675 +74 0.0768858864903 0.724453151226 +SURF 0x10 +mat 1 +refs 3 +76 0.0525790601969 0.721290707588 +96 0.0706338435411 0.677514612675 +75 0.0645242705941 0.724472045898 +SURF 0x10 +mat 1 +refs 3 +77 0.0418642051518 0.715126216412 +96 0.0706338435411 0.677514612675 +76 0.0525790601969 0.721290707588 +SURF 0x10 +mat 1 +refs 3 +78 0.0331099741161 0.7063986063 +96 0.0706338435411 0.677514612675 +77 0.0418642051518 0.715126216412 +SURF 0x10 +mat 1 +refs 3 +79 0.0269129164517 0.695702552795 +96 0.0706338435411 0.677514612675 +78 0.0331099741161 0.7063986063 +SURF 0x10 +mat 1 +refs 3 +80 0.0236953906715 0.683766901493 +96 0.0706338435411 0.677514612675 +79 0.0269129164517 0.695702552795 +SURF 0x10 +mat 1 +refs 3 +81 0.0236766356975 0.671405375004 +96 0.0706338435411 0.677514612675 +80 0.0236953906715 0.683766901493 +SURF 0x10 +mat 1 +refs 3 +82 0.0268579535186 0.659460067749 +96 0.0706338435411 0.677514612675 +81 0.0236766356975 0.671405375004 +SURF 0x10 +mat 1 +refs 3 +83 0.0330225154757 0.648745179176 +96 0.0706338435411 0.677514612675 +82 0.0268579535186 0.659460067749 +SURF 0x10 +mat 1 +refs 3 +84 0.0417502373457 0.639990985394 +96 0.0706338435411 0.677514612675 +83 0.0330225154757 0.648745179176 +SURF 0x10 +mat 1 +refs 3 +85 0.0524463690817 0.633793830872 +96 0.0706338435411 0.677514612675 +84 0.0417502373457 0.639990985394 +SURF 0x10 +mat 1 +refs 3 +86 0.0643819123507 0.630576252937 +96 0.0706338435411 0.677514612675 +85 0.0524463690817 0.633793830872 +SURF 0x10 +mat 1 +refs 3 +87 0.0767435207963 0.630557358265 +96 0.0706338435411 0.677514612675 +86 0.0643819123507 0.630576252937 +SURF 0x10 +mat 1 +refs 3 +88 0.088688775897 0.633738577366 +96 0.0706338435411 0.677514612675 +87 0.0767435207963 0.630557358265 +SURF 0x10 +mat 1 +refs 3 +89 0.0994035750628 0.639903187752 +96 0.0706338435411 0.677514612675 +88 0.088688775897 0.633738577366 +SURF 0x10 +mat 1 +refs 3 +90 0.10815782845 0.648630797863 +96 0.0706338435411 0.677514612675 +89 0.0994035750628 0.639903187752 +SURF 0x10 +mat 1 +refs 3 +91 0.114354908466 0.659326851368 +96 0.0706338435411 0.677514612675 +90 0.10815782845 0.648630797863 +SURF 0x10 +mat 1 +refs 3 +92 0.117572419345 0.671262443066 +96 0.0706338435411 0.677514612675 +91 0.114354908466 0.659326851368 +SURF 0x10 +mat 1 +refs 3 +93 0.117591187358 0.683624088764 +96 0.0706338435411 0.677514612675 +92 0.117572419345 0.671262443066 +SURF 0x10 +mat 1 +refs 3 +94 0.114409871399 0.695569336414 +96 0.0706338435411 0.677514612675 +93 0.117591187358 0.683624088764 +SURF 0x10 +mat 1 +refs 3 +95 0.108245305717 0.706284224987 +96 0.0706338435411 0.677514612675 +94 0.114409871399 0.695569336414 +SURF 0x10 +mat 1 +refs 3 +73 0.0995175391436 0.715038597584 +96 0.0706338435411 0.677514612675 +95 0.108245305717 0.706284224987 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +97 0.0362164154649 0.510382294655 +98 0.0494906269014 0.492347568274 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +110 0.189181387424 0.500544428825 +109 0.202565908432 0.518497347832 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +98 0.0494906269014 0.492347568274 +99 0.0914436429739 0.492218852043 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +111 0.147228628397 0.500673174858 +110 0.189181387424 0.500544428825 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +99 0.0914436429739 0.492218852043 +100 0.104828305542 0.510171771049 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +112 0.133954390883 0.518707931042 +111 0.147228628397 0.500673174858 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +100 0.104828305542 0.510171771049 +101 0.117480762303 0.541299462318 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +113 0.12149322778 0.549912631512 +112 0.133954390883 0.518707931042 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +101 0.117480762303 0.541299462318 +102 0.117591187358 0.577287137508 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +114 0.121603541076 0.585900306702 +113 0.12149322778 0.549912631512 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +102 0.117591187358 0.577287137508 +103 0.1051299721 0.608491837978 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +115 0.134255900979 0.617027997971 +114 0.121603541076 0.585900306702 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +103 0.1051299721 0.608491837978 +104 0.091855764389 0.626526594162 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +116 0.147640421987 0.634980976582 +115 0.134255900979 0.617027997971 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +104 0.091855764389 0.626526594162 +105 0.0499027594924 0.62665528059 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +117 0.189593195915 0.634852230549 +116 0.147640421987 0.634980976582 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +105 0.0499027594924 0.62665528059 +106 0.0365180782974 0.608702421188 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +118 0.20286744833 0.61681753397 +117 0.189593195915 0.634852230549 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +106 0.0365180782974 0.608702421188 +107 0.0238655935973 0.577574729919 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +119 0.215328663588 0.585612773895 +118 0.20286744833 0.61681753397 +SURF 0x10 +mat 1 +refs 3 +121 0.0708824247122 0.559436500072 +107 0.0238655935973 0.577574729919 +108 0.0237551704049 0.541587054729 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +120 0.215218290687 0.549625098705 +119 0.215328663588 0.585612773895 +SURF 0x10 +mat 1 +refs 3 +108 0.0237551704049 0.541587054729 +97 0.0362164154649 0.510382294655 +121 0.0708824247122 0.559436500072 +SURF 0x10 +mat 1 +refs 3 +122 0.168305471539 0.567758798599 +109 0.202565908432 0.518497347832 +120 0.215218290687 0.549625098705 +SURF 0x10 +mat 1 +refs 4 +97 0.906608819962 0.856199979782 +109 0.959535598755 0.85636228323 +110 0.959232449532 0.874355435371 +98 0.906305611134 0.874193072319 +SURF 0x10 +mat 1 +refs 4 +98 0.518042266369 0.737938761711 +110 0.51801431179 0.790874958038 +111 0.476060241461 0.79085290432 +99 0.476088136435 0.737916767597 +SURF 0x10 +mat 1 +refs 4 +99 0.687169551849 0.872386395931 +111 0.634248793125 0.872224032879 +112 0.634623289108 0.854231238365 +100 0.687544107437 0.854393541813 +SURF 0x10 +mat 1 +refs 4 +100 0.687544107437 0.854393541813 +112 0.634623289108 0.854231238365 +113 0.635019779205 0.823065936565 +101 0.68794053793 0.823228240013 +SURF 0x10 +mat 1 +refs 4 +101 0.68794053793 0.823228240013 +113 0.635019779205 0.823065936565 +114 0.635130167007 0.78707832098 +102 0.688050985336 0.787240564823 +SURF 0x10 +mat 1 +refs 4 +102 0.688050985336 0.787240564823 +114 0.635130167007 0.78707832098 +115 0.63492500782 0.755911171436 +103 0.687845766544 0.756073474884 +SURF 0x10 +mat 1 +refs 4 +103 0.687845766544 0.756073474884 +115 0.63492500782 0.755911171436 +116 0.634660840034 0.73791629076 +104 0.687581539154 0.738078594208 +SURF 0x10 +mat 1 +refs 4 +104 0.169539526105 0.909516811371 +116 0.169527441263 0.962452888489 +117 0.12757332623 0.962443113327 +105 0.127585411072 0.909506976604 +SURF 0x10 +mat 1 +refs 4 +105 0.906717658043 0.7398853302 +117 0.959644496441 0.740047633648 +118 0.959837257862 0.758042156696 +106 0.906910538673 0.757879853249 +SURF 0x10 +mat 1 +refs 4 +106 0.906910538673 0.757879853249 +118 0.959837257862 0.758042156696 +119 0.959975302219 0.789209008217 +107 0.907048523426 0.789046764374 +SURF 0x10 +mat 1 +refs 4 +107 0.907048523426 0.789046764374 +119 0.959975302219 0.789209008217 +120 0.959864974022 0.825196683407 +108 0.906938076019 0.825034439564 +SURF 0x10 +mat 1 +refs 4 +109 0.959535598755 0.85636228323 +97 0.906608819962 0.856199979782 +108 0.906938076019 0.825034439564 +120 0.959864974022 0.825196683407 +SURF 0x10 +mat 1 +refs 3 +146 0.604602336884 0.72123503685 +123 0.575718641281 0.683711111546 +124 0.613330066204 0.712480723858 +SURF 0x10 +mat 1 +refs 3 +124 0.613330066204 0.712480723858 +123 0.575718641281 0.683711111546 +125 0.61949467659 0.701765775681 +SURF 0x10 +mat 1 +refs 3 +125 0.61949467659 0.701765775681 +123 0.575718641281 0.683711111546 +126 0.622675955296 0.68982052803 +SURF 0x10 +mat 1 +refs 3 +126 0.622675955296 0.68982052803 +123 0.575718641281 0.683711111546 +127 0.622657179832 0.677458882332 +SURF 0x10 +mat 1 +refs 3 +127 0.622657179832 0.677458882332 +123 0.575718641281 0.683711111546 +128 0.619439661503 0.665523350239 +SURF 0x10 +mat 1 +refs 3 +128 0.619439661503 0.665523350239 +123 0.575718641281 0.683711111546 +129 0.61324262619 0.654827296734 +SURF 0x10 +mat 1 +refs 3 +129 0.61324262619 0.654827296734 +123 0.575718641281 0.683711111546 +130 0.604488372803 0.646099686623 +SURF 0x10 +mat 1 +refs 3 +130 0.604488372803 0.646099686623 +123 0.575718641281 0.683711111546 +131 0.593773543835 0.639935135841 +SURF 0x10 +mat 1 +refs 3 +131 0.593773543835 0.639935135841 +123 0.575718641281 0.683711111546 +132 0.581828296185 0.63675391674 +SURF 0x10 +mat 1 +refs 3 +132 0.581828296185 0.63675391674 +123 0.575718641281 0.683711111546 +133 0.569466710091 0.636772751808 +SURF 0x10 +mat 1 +refs 3 +133 0.569466710091 0.636772751808 +123 0.575718641281 0.683711111546 +134 0.557531177998 0.639990270138 +SURF 0x10 +mat 1 +refs 3 +134 0.557531177998 0.639990270138 +123 0.575718641281 0.683711111546 +135 0.546835005283 0.64618742466 +SURF 0x10 +mat 1 +refs 3 +135 0.546835005283 0.64618742466 +123 0.575718641281 0.683711111546 +136 0.538107335567 0.654941678047 +SURF 0x10 +mat 1 +refs 3 +136 0.538107335567 0.654941678047 +123 0.575718641281 0.683711111546 +137 0.531942784786 0.66565656662 +SURF 0x10 +mat 1 +refs 3 +137 0.531942784786 0.66565656662 +123 0.575718641281 0.683711111546 +138 0.528761446476 0.677601873875 +SURF 0x10 +mat 1 +refs 3 +138 0.528761446476 0.677601873875 +123 0.575718641281 0.683711111546 +139 0.528780162334 0.689963340759 +SURF 0x10 +mat 1 +refs 3 +139 0.528780162334 0.689963340759 +123 0.575718641281 0.683711111546 +140 0.531997680664 0.701898932457 +SURF 0x10 +mat 1 +refs 3 +140 0.531997680664 0.701898932457 +123 0.575718641281 0.683711111546 +141 0.538194775581 0.712595045567 +SURF 0x10 +mat 1 +refs 3 +141 0.538194775581 0.712595045567 +123 0.575718641281 0.683711111546 +142 0.546949028969 0.721322715282 +SURF 0x10 +mat 1 +refs 3 +142 0.546949028969 0.721322715282 +123 0.575718641281 0.683711111546 +143 0.557663857937 0.727487206459 +SURF 0x10 +mat 1 +refs 3 +143 0.557663857937 0.727487206459 +123 0.575718641281 0.683711111546 +144 0.569609045982 0.730668544769 +SURF 0x10 +mat 1 +refs 3 +144 0.569609045982 0.730668544769 +123 0.575718641281 0.683711111546 +145 0.581970691681 0.730649650097 +SURF 0x10 +mat 1 +refs 3 +145 0.581970691681 0.730649650097 +123 0.575718641281 0.683711111546 +147 0.593906223774 0.727432072163 +SURF 0x10 +mat 1 +refs 3 +147 0.593906223774 0.727432072163 +123 0.575718641281 0.683711111546 +146 0.604602336884 0.72123503685 +SURF 0x10 +mat 1 +refs 4 +146 0.435716569424 0.745632946491 +124 0.435746133327 0.755256950855 +148 0.42534711957 0.75528883934 +149 0.425317645073 0.745664834976 +SURF 0x10 +mat 1 +refs 4 +124 0.435746133327 0.755256950855 +125 0.435780763626 0.766561031342 +150 0.425381839275 0.766592919827 +148 0.42534711957 0.75528883934 +SURF 0x10 +mat 1 +refs 4 +125 0.435780763626 0.766561031342 +126 0.435818254948 0.778774678707 +151 0.425419300795 0.778806686401 +150 0.425381839275 0.766592919827 +SURF 0x10 +mat 1 +refs 4 +126 0.435818254948 0.778774678707 +127 0.435855984688 0.791065633297 +152 0.425457030535 0.791097581387 +151 0.425419300795 0.778806686401 +SURF 0x10 +mat 1 +refs 4 +127 0.435855984688 0.791065633297 +128 0.435891330242 0.802596449852 +153 0.425492376089 0.802628338337 +152 0.425457030535 0.791097581387 +SURF 0x10 +mat 1 +refs 4 +128 0.435891330242 0.802596449852 +129 0.435921996832 0.812581002712 +154 0.425523012877 0.812612831593 +153 0.425492376089 0.802628338337 +SURF 0x10 +mat 1 +refs 4 +129 0.0125553933904 0.634049415588 +130 0.0125279230997 0.6437972188 +155 0.00212902203202 0.643765330315 +154 0.00215651816688 0.634017467499 +SURF 0x10 +mat 1 +refs 4 +130 0.0125279230997 0.6437972188 +131 0.0124945091084 0.65518039465 +156 0.00209558219649 0.655148506165 +155 0.00212902203202 0.643765330315 +SURF 0x10 +mat 1 +refs 4 +131 0.0124945091084 0.65518039465 +132 0.0124575030059 0.667423248291 +157 0.00205855024979 0.667391300201 +156 0.00209558219649 0.655148506165 +SURF 0x10 +mat 1 +refs 4 +132 0.0124575030059 0.667423248291 +133 0.0124193597585 0.679691314697 +158 0.00202043307945 0.679659426212 +157 0.00205855024979 0.667391300201 +SURF 0x10 +mat 1 +refs 4 +133 0.0124193597585 0.679691314697 +134 0.0123827932402 0.69114869833 +159 0.00198384048417 0.69111675024 +158 0.00202043307945 0.679659426212 +SURF 0x10 +mat 1 +refs 4 +134 0.0123827932402 0.69114869833 +135 0.0123501550406 0.701014518738 +160 0.00195122766308 0.700982630253 +159 0.00198384048417 0.69111675024 +SURF 0x10 +mat 1 +refs 4 +135 0.435921996832 0.674775362015 +136 0.435892254114 0.684440672398 +161 0.425493389368 0.684408783913 +160 0.425523012877 0.67474347353 +SURF 0x10 +mat 1 +refs 4 +136 0.435892254114 0.684440672398 +137 0.435857534409 0.695771336555 +162 0.42545863986 0.695739388466 +161 0.425493389368 0.684408783913 +SURF 0x10 +mat 1 +refs 4 +137 0.435857534409 0.695771336555 +138 0.435820072889 0.707995057106 +163 0.425421088934 0.707963168621 +162 0.42545863986 0.695739388466 +SURF 0x10 +mat 1 +refs 4 +138 0.435820072889 0.707995057106 +139 0.435782343149 0.720278739929 +164 0.425383448601 0.720246851444 +163 0.425421088934 0.707963168621 +SURF 0x10 +mat 1 +refs 4 +139 0.435782343149 0.720278739929 +140 0.435747057199 0.731785476208 +165 0.425348103046 0.731753468513 +164 0.425383448601 0.720246851444 +SURF 0x10 +mat 1 +refs 4 +140 0.435747057199 0.731785476208 +141 0.435716539621 0.741730928421 +166 0.425317674875 0.741698980331 +165 0.425348103046 0.731753468513 +SURF 0x10 +mat 1 +refs 4 +141 0.0125553933904 0.492250651121 +142 0.012525158003 0.502111375332 +167 0.0021262052469 0.502079486847 +166 0.00215638894588 0.492218732834 +SURF 0x10 +mat 1 +refs 4 +142 0.012525158003 0.502111375332 +143 0.0124899605289 0.513565599918 +168 0.00209095631726 0.513533711433 +167 0.0021262052469 0.502079486847 +SURF 0x10 +mat 1 +refs 4 +143 0.0124899605289 0.513565599918 +144 0.0124523602426 0.525832653046 +169 0.00205335603096 0.525800764561 +168 0.00209095631726 0.513533711433 +SURF 0x10 +mat 1 +refs 4 +144 0.0124523602426 0.525832653046 +145 0.0124147599563 0.538076639175 +170 0.00201580720022 0.538044691086 +169 0.00205335603096 0.525800764561 +SURF 0x10 +mat 1 +refs 4 +145 0.0124147599563 0.538076639175 +147 0.012379873544 0.549463093281 +171 0.00198092032224 0.549431204796 +170 0.00201580720022 0.538044691086 +SURF 0x10 +mat 1 +refs 4 +147 0.012379873544 0.549463093281 +146 0.0123499734327 0.559216082096 +149 0.00195102090947 0.559184193611 +171 0.00198092032224 0.549431204796 +SURF 0x10 +mat 1 +refs 4 +149 0.538132727146 0.752726495266 +148 0.546866893768 0.743978500366 +172 0.562776982784 0.764680743217 +173 0.558860480785 0.768603384495 +SURF 0x10 +mat 1 +refs 4 +148 0.546866893768 0.743978500366 +150 0.557567536831 0.737789213657 +174 0.567575335503 0.761905312538 +172 0.562776982784 0.764680743217 +SURF 0x10 +mat 1 +refs 4 +150 0.557567536831 0.737789213657 +151 0.56950545311 0.734580397606 +175 0.57292842865 0.760466456413 +174 0.567575335503 0.761905312538 +SURF 0x10 +mat 1 +refs 4 +151 0.56950545311 0.734580397606 +152 0.581867098808 0.73457056284 +176 0.578471541405 0.76046204567 +175 0.57292842865 0.760466456413 +SURF 0x10 +mat 1 +refs 4 +152 0.581867098808 0.73457056284 +153 0.593810081482 0.737760543823 +177 0.583826959133 0.761892437935 +176 0.578471541405 0.76046204567 +SURF 0x10 +mat 1 +refs 4 +153 0.593810081482 0.737760543823 +154 0.604520320892 0.743932843208 +178 0.588629543781 0.76466023922 +177 0.583826959133 0.761892437935 +SURF 0x10 +mat 1 +refs 4 +154 0.604520320892 0.743932843208 +155 0.613268196583 0.752666890621 +179 0.592552244663 0.768576681614 +178 0.588629543781 0.76466023922 +SURF 0x10 +mat 1 +refs 4 +155 0.613268196583 0.752666890621 +156 0.619457483292 0.763367474079 +180 0.595327615738 0.773374974728 +179 0.592552244663 0.768576681614 +SURF 0x10 +mat 1 +refs 4 +156 0.619457483292 0.763367474079 +157 0.622666299343 0.775305390358 +181 0.596766471863 0.778728067875 +180 0.595327615738 0.773374974728 +SURF 0x10 +mat 1 +refs 4 +157 0.622666299343 0.775305390358 +158 0.622675955296 0.787666976452 +182 0.596770882607 0.78427118063 +181 0.596766471863 0.778728067875 +SURF 0x10 +mat 1 +refs 4 +158 0.622675955296 0.787666976452 +159 0.619486033916 0.799609899521 +183 0.595340430737 0.789626598358 +182 0.596770882607 0.78427118063 +SURF 0x10 +mat 1 +refs 4 +159 0.619486033916 0.799609899521 +160 0.613313496113 0.810320317745 +184 0.592572629452 0.794429302216 +183 0.595340430737 0.789626598358 +SURF 0x10 +mat 1 +refs 4 +160 0.613313496113 0.810320317745 +161 0.6045794487 0.81906825304 +185 0.588656067848 0.798352003098 +184 0.592572629452 0.794429302216 +SURF 0x10 +mat 1 +refs 4 +161 0.6045794487 0.81906825304 +162 0.593878865242 0.825257539749 +186 0.583857834339 0.801127374172 +185 0.588656067848 0.798352003098 +SURF 0x10 +mat 1 +refs 4 +162 0.593878865242 0.825257539749 +163 0.581940948963 0.828466415405 +187 0.578504621983 0.802566230297 +186 0.583857834339 0.801127374172 +SURF 0x10 +mat 1 +refs 4 +163 0.581940948963 0.828466415405 +164 0.569579422474 0.828476190567 +188 0.572961509228 0.802570641041 +187 0.578504621983 0.802566230297 +SURF 0x10 +mat 1 +refs 4 +164 0.569579422474 0.828476190567 +165 0.5576364398 0.825286209583 +189 0.567606151104 0.801140248775 +188 0.572961509228 0.802570641041 +SURF 0x10 +mat 1 +refs 4 +165 0.5576364398 0.825286209583 +166 0.546926021576 0.819113910198 +190 0.562803506851 0.798372447491 +189 0.567606151104 0.801140248775 +SURF 0x10 +mat 1 +refs 4 +166 0.546926021576 0.819113910198 +167 0.538178265095 0.810379803181 +191 0.558880805969 0.794456005096 +190 0.562803506851 0.798372447491 +SURF 0x10 +mat 1 +refs 4 +167 0.538178265095 0.810379803181 +168 0.531989037991 0.799679279327 +192 0.556105494499 0.789657711983 +191 0.558880805969 0.794456005096 +SURF 0x10 +mat 1 +refs 4 +168 0.531989037991 0.799679279327 +169 0.52878010273 0.787741422653 +193 0.554666519165 0.784304618835 +192 0.556105494499 0.789657711983 +SURF 0x10 +mat 1 +refs 4 +169 0.52878010273 0.787741422653 +170 0.528770446777 0.775379776955 +194 0.554662227631 0.778761446476 +193 0.554666519165 0.784304618835 +SURF 0x10 +mat 1 +refs 4 +170 0.528770446777 0.775379776955 +171 0.531960427761 0.763436853886 +195 0.556092679501 0.773406088352 +194 0.554662227631 0.778761446476 +SURF 0x10 +mat 1 +refs 4 +171 0.531960427761 0.763436853886 +149 0.538132727146 0.752726495266 +173 0.558860480785 0.768603384495 +195 0.556092679501 0.773406088352 +SURF 0x10 +mat 1 +refs 4 +173 0.940228044987 0.645008742809 +172 0.944543659687 0.64502197504 +196 0.946992456913 0.735923886299 +197 0.943741679192 0.735913932323 +SURF 0x10 +mat 1 +refs 4 +172 0.944543659687 0.64502197504 +174 0.949612557888 0.645037531853 +198 0.950810551643 0.73593556881 +196 0.946992456913 0.735923886299 +SURF 0x10 +mat 1 +refs 4 +174 0.949612557888 0.645037531853 +175 0.955089330673 0.645054340363 +199 0.954935967922 0.735948204994 +198 0.950810551643 0.73593556881 +SURF 0x10 +mat 1 +refs 4 +175 0.955089330673 0.645054340363 +176 0.960600793362 0.645071268082 +200 0.959087431431 0.735960960388 +199 0.954935967922 0.735948204994 +SURF 0x10 +mat 1 +refs 4 +176 0.960600793362 0.645071268082 +177 0.965771317482 0.645087122917 +201 0.96298211813 0.735972940922 +200 0.959087431431 0.735960960388 +SURF 0x10 +mat 1 +refs 4 +177 0.965771317482 0.645087122917 +178 0.97024846077 0.64510089159 +202 0.96635466814 0.735983252525 +201 0.96298211813 0.735972940922 +SURF 0x10 +mat 1 +refs 4 +178 0.21923071146 0.500544428825 +179 0.223601743579 0.500556766987 +203 0.22597810626 0.591459870338 +202 0.22268563509 0.591450572014 +SURF 0x10 +mat 1 +refs 4 +179 0.223601743579 0.500556766987 +180 0.228706151247 0.500571727753 +204 0.22982300818 0.591471135616 +203 0.22597810626 0.591459870338 +SURF 0x10 +mat 1 +refs 4 +180 0.228706151247 0.500571727753 +181 0.234195992351 0.500588297844 +205 0.233958229423 0.591483652592 +204 0.22982300818 0.591471135616 +SURF 0x10 +mat 1 +refs 4 +181 0.234195992351 0.500588297844 +182 0.239697188139 0.500605463982 +206 0.238102003932 0.591496527195 +205 0.233958229423 0.591483652592 +SURF 0x10 +mat 1 +refs 4 +182 0.239697188139 0.500605463982 +183 0.244834855199 0.500621914864 +207 0.241971939802 0.591508865356 +206 0.238102003932 0.591496527195 +SURF 0x10 +mat 1 +refs 4 +183 0.244834855199 0.500621914864 +184 0.249258801341 0.500636518002 +208 0.245304301381 0.591519892216 +207 0.241971939802 0.591508865356 +SURF 0x10 +mat 1 +refs 4 +184 0.937298297882 0.310630887747 +185 0.941632449627 0.310644119978 +209 0.944057285786 0.401545882225 +208 0.940792500973 0.401535928249 +SURF 0x10 +mat 1 +refs 4 +185 0.941632449627 0.310644119978 +186 0.946713149548 0.310659766197 +210 0.947884321213 0.40155762434 +209 0.944057285786 0.401545882225 +SURF 0x10 +mat 1 +refs 4 +186 0.946713149548 0.310659766197 +187 0.952194571495 0.3106764853 +211 0.952013194561 0.401570320129 +210 0.947884321213 0.40155762434 +SURF 0x10 +mat 1 +refs 4 +187 0.952194571495 0.3106764853 +188 0.957702696323 0.310693413019 +212 0.956162154675 0.401583015919 +211 0.952013194561 0.401570320129 +SURF 0x10 +mat 1 +refs 4 +188 0.957702696323 0.310693413019 +189 0.962862491608 0.310709297657 +213 0.960048675537 0.40159496665 +212 0.956162154675 0.401583015919 +SURF 0x10 +mat 1 +refs 4 +189 0.962862491608 0.310709297657 +190 0.96732211113 0.310723006725 +214 0.963407993317 0.401605248451 +213 0.960048675537 0.40159496665 +SURF 0x10 +mat 1 +refs 4 +190 0.967326521873 0.496389508247 +191 0.96290487051 0.496403068304 +215 0.960038840771 0.405517548323 +214 0.963369488716 0.405507296324 +SURF 0x10 +mat 1 +refs 4 +191 0.96290487051 0.496403068304 +192 0.957768619061 0.496418863535 +216 0.956169962883 0.405529379845 +215 0.960038840771 0.405517548323 +SURF 0x10 +mat 1 +refs 4 +192 0.957768619061 0.496418863535 +193 0.952267944813 0.496435701847 +217 0.952026605606 0.405542105436 +216 0.956169962883 0.405529379845 +SURF 0x10 +mat 1 +refs 4 +193 0.952267944813 0.496435701847 +194 0.946777522564 0.496452569962 +218 0.947890937328 0.405554771423 +217 0.952026605606 0.405542105436 +SURF 0x10 +mat 1 +refs 4 +194 0.946777522564 0.496452569962 +195 0.941671669483 0.496468216181 +219 0.944044947624 0.405566573143 +218 0.947890937328 0.405554771423 +SURF 0x10 +mat 1 +refs 4 +195 0.941671669483 0.496468216181 +173 0.937298297882 0.496481597424 +197 0.940750718117 0.405576735735 +219 0.944044947624 0.405566573143 +kids 0 +OBJECT poly +name "frontaxle" +data 12 +Cylinder.015 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 220 +0.524173 0.426172 -0.010387 +0.520487 0.417275 -0.010387 +0.51923 0.407726 -0.010387 +0.520487 0.398178 -0.010387 +0.524173 0.389281 -0.010387 +0.530035 0.381641 -0.010387 +0.537676 0.375778 -0.010387 +0.546573 0.372093 -0.010387 +0.556121 0.370836 -0.010387 +0.565669 0.372093 -0.010387 +0.574567 0.375778 -0.010387 +0.582207 0.381641 -0.010387 +0.588069 0.389281 -0.010387 +0.591755 0.398178 -0.010387 +0.593012 0.407726 -0.010387 +0.591755 0.417275 -0.010387 +0.588069 0.426172 -0.010387 +0.582207 0.433812 -0.010387 +0.574567 0.439675 -0.010387 +0.565669 0.44336 -0.010387 +0.556121 0.444617 -0.010387 +0.546573 0.44336 -0.010387 +0.530035 0.433812 -0.010387 +0.537676 0.439675 -0.010387 +0.513707 0.432214 0.532836 +0.508814 0.420402 0.532836 +0.507146 0.407726 0.532836 +0.508814 0.395051 0.532836 +0.513707 0.383239 0.532836 +0.52149 0.373096 0.532836 +0.531633 0.365312 0.532836 +0.543445 0.36042 0.532836 +0.556121 0.358751 0.532836 +0.568797 0.36042 0.532836 +0.580609 0.365312 0.532836 +0.590752 0.373096 0.532836 +0.598535 0.383239 0.532836 +0.603428 0.395051 0.532836 +0.605097 0.407726 0.532836 +0.603428 0.420402 0.532836 +0.598535 0.432214 0.532836 +0.590752 0.442357 0.532836 +0.580609 0.450141 0.532836 +0.568797 0.455033 0.532836 +0.556121 0.456702 0.532836 +0.543445 0.455033 0.532836 +0.52149 0.442357 0.532836 +0.531633 0.450141 0.532836 +0.461534 0.462336 0.539857 +0.450623 0.435995 0.539857 +0.446902 0.407727 0.539857 +0.450623 0.379459 0.539857 +0.461534 0.353117 0.539857 +0.478891 0.330497 0.539857 +0.501511 0.31314 0.539857 +0.527853 0.302229 0.539857 +0.556121 0.298507 0.539857 +0.584389 0.302229 0.539857 +0.610731 0.31314 0.539857 +0.633351 0.330497 0.539857 +0.650708 0.353117 0.539857 +0.661619 0.379458 0.539857 +0.665341 0.407726 0.539857 +0.661619 0.435995 0.539857 +0.650708 0.462336 0.539857 +0.633351 0.484956 0.539857 +0.610731 0.502313 0.539857 +0.584389 0.513224 0.539857 +0.556121 0.516946 0.539857 +0.527853 0.513224 0.539857 +0.478891 0.484956 0.539857 +0.501512 0.502313 0.539857 +0.461534 0.462336 0.563842 +0.478891 0.484956 0.563842 +0.450623 0.435995 0.563842 +0.446902 0.407726 0.563842 +0.450623 0.379458 0.563842 +0.461534 0.353117 0.563842 +0.478891 0.330497 0.563842 +0.501511 0.31314 0.563842 +0.527853 0.302229 0.563842 +0.556121 0.298507 0.563842 +0.584389 0.302229 0.563842 +0.610731 0.31314 0.563842 +0.633351 0.330497 0.563842 +0.650708 0.353117 0.563842 +0.661619 0.379458 0.563842 +0.665341 0.407726 0.563842 +0.661619 0.435995 0.563842 +0.650708 0.462336 0.563842 +0.633351 0.484956 0.563842 +0.610731 0.502313 0.563842 +0.584389 0.513224 0.563842 +0.556121 0.516946 0.563842 +0.527853 0.513224 0.563842 +0.501512 0.502313 0.563842 +0.556121 0.407726 0.563842 +0.615302 0.478666 -0.025622 +0.615302 0.447921 0.01588 +0.615302 0.351154 0.01588 +0.615302 0.320409 -0.025622 +0.615302 0.291445 -0.097507 +0.615302 0.291445 -0.180512 +0.615302 0.320409 -0.252397 +0.615302 0.351154 -0.2939 +0.615302 0.447921 -0.2939 +0.615302 0.478666 -0.252397 +0.615302 0.507629 -0.180513 +0.615302 0.507629 -0.097507 +0.493205 0.478666 -0.025622 +0.493205 0.447921 0.01588 +0.493205 0.351154 0.01588 +0.493205 0.320409 -0.025622 +0.493205 0.291446 -0.097507 +0.493205 0.291445 -0.180512 +0.493205 0.320409 -0.252397 +0.493205 0.351153 -0.2939 +0.493205 0.44792 -0.2939 +0.493205 0.478666 -0.252398 +0.493205 0.507629 -0.180513 +0.493205 0.507629 -0.097507 +0.682721 0.399537 -0.13901 +0.46218 0.399537 -0.13901 +0.556121 0.407726 -0.518299 +0.501511 0.502313 -0.518298 +0.527853 0.513224 -0.518298 +0.556121 0.516946 -0.518298 +0.584389 0.513224 -0.518298 +0.610731 0.502313 -0.518298 +0.633351 0.484956 -0.518298 +0.650708 0.462336 -0.518298 +0.661619 0.435994 -0.518298 +0.66534 0.407726 -0.518298 +0.661619 0.379458 -0.518298 +0.650708 0.353117 -0.518298 +0.633351 0.330497 -0.518298 +0.610731 0.31314 -0.518298 +0.584389 0.302229 -0.518298 +0.556121 0.298507 -0.518298 +0.527853 0.302229 -0.518298 +0.501511 0.31314 -0.518298 +0.478891 0.330497 -0.518298 +0.461534 0.353117 -0.518298 +0.450623 0.379458 -0.518298 +0.446902 0.407726 -0.518298 +0.450623 0.435995 -0.518298 +0.478891 0.484956 -0.518298 +0.461534 0.462336 -0.518298 +0.501511 0.502313 -0.494313 +0.478891 0.484956 -0.494313 +0.527853 0.513224 -0.494313 +0.556121 0.516946 -0.494313 +0.584389 0.513224 -0.494313 +0.610731 0.502313 -0.494313 +0.633351 0.484956 -0.494313 +0.650708 0.462336 -0.494313 +0.661619 0.435994 -0.494313 +0.66534 0.407726 -0.494313 +0.661619 0.379458 -0.494313 +0.650708 0.353117 -0.494313 +0.633351 0.330497 -0.494313 +0.610731 0.31314 -0.494313 +0.584389 0.302229 -0.494313 +0.556121 0.298507 -0.494313 +0.527853 0.302229 -0.494313 +0.501511 0.31314 -0.494313 +0.478891 0.330497 -0.494313 +0.461534 0.353117 -0.494313 +0.450623 0.379458 -0.494313 +0.446902 0.407726 -0.494313 +0.450623 0.435995 -0.494313 +0.461534 0.462336 -0.494313 +0.531633 0.45014 -0.487292 +0.52149 0.442357 -0.487292 +0.543445 0.455033 -0.487292 +0.556121 0.456702 -0.487292 +0.568797 0.455033 -0.487292 +0.580609 0.45014 -0.487292 +0.590752 0.442357 -0.487292 +0.598535 0.432214 -0.487292 +0.603428 0.420402 -0.487292 +0.605096 0.407726 -0.487292 +0.603428 0.395051 -0.487292 +0.598535 0.383239 -0.487292 +0.590752 0.373095 -0.487292 +0.580609 0.365312 -0.487292 +0.568797 0.36042 -0.487292 +0.556121 0.358751 -0.487292 +0.543445 0.36042 -0.487292 +0.531633 0.365312 -0.487292 +0.52149 0.373096 -0.487292 +0.513707 0.383239 -0.487292 +0.508814 0.395051 -0.487292 +0.507145 0.407726 -0.487292 +0.508814 0.420402 -0.487292 +0.513707 0.432214 -0.487292 +0.537676 0.439675 -0.277647 +0.530035 0.433812 -0.277647 +0.546573 0.44336 -0.277647 +0.556121 0.444617 -0.277647 +0.565669 0.44336 -0.277647 +0.574566 0.439675 -0.277647 +0.582207 0.433812 -0.277647 +0.588069 0.426172 -0.277647 +0.591755 0.417274 -0.277647 +0.593012 0.407726 -0.277647 +0.591755 0.398178 -0.277647 +0.588069 0.389281 -0.277647 +0.582207 0.381641 -0.277647 +0.574566 0.375778 -0.277647 +0.565669 0.372093 -0.277647 +0.556121 0.370836 -0.277647 +0.546573 0.372093 -0.277647 +0.537676 0.375778 -0.277647 +0.530035 0.381641 -0.277647 +0.524173 0.389281 -0.277647 +0.520487 0.398178 -0.277647 +0.51923 0.407726 -0.277647 +0.520487 0.417275 -0.277647 +0.524173 0.426172 -0.277647 +numsurf 228 +SURF 0x10 +mat 1 +refs 4 +22 0.659876286983 0.73401427269 +0 0.656545639038 0.734004080296 +24 0.659855365753 0.498493373394 +46 0.664277076721 0.498506993055 +SURF 0x10 +mat 1 +refs 4 +0 0.656545639038 0.734004080296 +1 0.65267676115 0.733992218971 +25 0.654719114304 0.498477607965 +24 0.659855365753 0.498493373394 +SURF 0x10 +mat 1 +refs 4 +26 0.649218380451 0.498460739851 +25 0.654719114304 0.498477607965 +1 0.65267676115 0.733992218971 +2 0.648533344269 0.733979463577 +SURF 0x10 +mat 1 +refs 4 +27 0.643728077412 0.498443901539 +26 0.649218380451 0.498460739851 +2 0.648533344269 0.733979463577 +3 0.644397735596 0.733966827393 +SURF 0x10 +mat 1 +refs 4 +28 0.638622164726 0.49842825532 +27 0.643728077412 0.498443901539 +3 0.644397735596 0.733966827393 +4 0.640551745892 0.733955025673 +SURF 0x10 +mat 1 +refs 4 +29 0.634248793125 0.498414814472 +28 0.638622164726 0.49842825532 +4 0.640551745892 0.733955025673 +5 0.637257516384 0.733944892883 +SURF 0x10 +mat 1 +refs 4 +30 0.910621404648 0.73596996069 +29 0.906305611134 0.735983252525 +5 0.909375667572 0.50045311451 +6 0.912626087666 0.50044298172 +SURF 0x10 +mat 1 +refs 4 +31 0.915690302849 0.735954403877 +30 0.910621404648 0.73596996069 +6 0.912626087666 0.50044298172 +7 0.916444659233 0.500431358814 +SURF 0x10 +mat 1 +refs 4 +32 0.921166837215 0.735937714577 +31 0.915690302849 0.735954403877 +7 0.916444659233 0.500431358814 +8 0.920570015907 0.50041872263 +SURF 0x10 +mat 1 +refs 4 +33 0.926678359509 0.735920786858 +32 0.921166837215 0.735937714577 +8 0.920570015907 0.50041872263 +9 0.924721181393 0.500405967236 +SURF 0x10 +mat 1 +refs 4 +34 0.931849002838 0.735904932022 +33 0.926678359509 0.735920786858 +9 0.924721181393 0.500405967236 +10 0.92861610651 0.500394046307 +SURF 0x10 +mat 1 +refs 4 +35 0.936325967312 0.735891222954 +34 0.931849002838 0.735904932022 +10 0.92861610651 0.500394046307 +11 0.931988716125 0.500383615494 +SURF 0x10 +mat 1 +refs 4 +36 0.810572326183 0.707644581795 +35 0.806201279163 0.707659006119 +11 0.809212505817 0.472130149603 +12 0.81250500679 0.472119241953 +SURF 0x10 +mat 1 +refs 4 +37 0.815676748753 0.707628190517 +36 0.810572326183 0.707644581795 +12 0.81250500679 0.472119241953 +13 0.816349923611 0.472106933594 +SURF 0x10 +mat 1 +refs 4 +38 0.821166574955 0.707611143589 +37 0.815676748753 0.707628190517 +13 0.816349923611 0.472106933594 +14 0.820485115051 0.47209405899 +SURF 0x10 +mat 1 +refs 4 +39 0.82666772604 0.707594513893 +38 0.821166574955 0.707611143589 +14 0.820485115051 0.47209405899 +15 0.824628889561 0.472081512213 +SURF 0x10 +mat 1 +refs 4 +40 0.831805408001 0.707579374313 +39 0.82666772604 0.707594513893 +15 0.824628889561 0.472081512213 +16 0.828498840332 0.472070127726 +SURF 0x10 +mat 1 +refs 4 +41 0.836229324341 0.707566797733 +40 0.831805408001 0.707579374313 +16 0.828498840332 0.472070127726 +17 0.831831157207 0.472060680389 +SURF 0x10 +mat 1 +refs 4 +42 0.860605120659 0.707647144794 +41 0.856271147728 0.707660496235 +17 0.859321475029 0.472130149603 +18 0.862586259842 0.472120285034 +SURF 0x10 +mat 1 +refs 4 +43 0.865686058998 0.707631528378 +42 0.860605120659 0.707647144794 +18 0.862586259842 0.472120285034 +19 0.866413295269 0.47210842371 +SURF 0x10 +mat 1 +refs 4 +44 0.871167123318 0.707614719868 +43 0.865686058998 0.707631528378 +19 0.866413295269 0.47210842371 +20 0.870542049408 0.472095817327 +SURF 0x10 +mat 1 +refs 4 +45 0.87667542696 0.707597851753 +44 0.871167123318 0.707614719868 +20 0.870542049408 0.472095817327 +21 0.874691069126 0.472083121538 +SURF 0x10 +mat 1 +refs 4 +47 0.881835103035 0.707581996918 +45 0.87667542696 0.707597851753 +21 0.874691069126 0.472083121538 +23 0.878577709198 0.472071200609 +SURF 0x10 +mat 1 +refs 4 +46 0.886294841766 0.707568287849 +47 0.881835103035 0.707581996918 +23 0.878577709198 0.472071200609 +22 0.881937026978 0.472060889006 +SURF 0x10 +mat 1 +refs 4 +48 0.197220221162 0.648228764534 +70 0.20597435534 0.656956493855 +46 0.185269623995 0.67288172245 +24 0.181344181299 0.668968200684 +SURF 0x10 +mat 1 +refs 4 +49 0.186505302787 0.642064154148 +48 0.197220221162 0.648228764534 +24 0.181344181299 0.668968200684 +25 0.176539465785 0.666203916073 +SURF 0x10 +mat 1 +refs 4 +50 0.174560114741 0.638882994652 +49 0.186505302787 0.642064154148 +25 0.176539465785 0.666203916073 +26 0.171183139086 0.6647772789 +SURF 0x10 +mat 1 +refs 4 +51 0.162198424339 0.63890182972 +50 0.174560114741 0.638882994652 +26 0.171183139086 0.6647772789 +27 0.165639966726 0.664785683155 +SURF 0x10 +mat 1 +refs 4 +52 0.150262951851 0.642119288445 +51 0.162198424339 0.63890182972 +27 0.165639966726 0.664785683155 +28 0.160287886858 0.66622877121 +SURF 0x10 +mat 1 +refs 4 +53 0.139566838741 0.648316442966 +52 0.150262951851 0.642119288445 +28 0.160287886858 0.66622877121 +29 0.155491575599 0.669007480145 +SURF 0x10 +mat 1 +refs 4 +54 0.130839109421 0.657070755959 +53 0.139566838741 0.648316442966 +29 0.155491575599 0.669007480145 +30 0.151577934623 0.672932863235 +SURF 0x10 +mat 1 +refs 4 +55 0.124674461782 0.667785644531 +54 0.130839109421 0.657070755959 +30 0.151577934623 0.672932863235 +31 0.148813650012 0.677737653255 +SURF 0x10 +mat 1 +refs 4 +56 0.12149322778 0.679731011391 +55 0.124674461782 0.667785644531 +31 0.148813650012 0.677737653255 +32 0.14738714695 0.683094024658 +SURF 0x10 +mat 1 +refs 4 +57 0.121511869133 0.692092418671 +56 0.12149322778 0.679731011391 +32 0.14738714695 0.683094024658 +33 0.147395521402 0.688637197018 +SURF 0x10 +mat 1 +refs 4 +58 0.124729432166 0.704027950764 +57 0.121511869133 0.692092418671 +33 0.147395521402 0.688637197018 +34 0.148838326335 0.693989217281 +SURF 0x10 +mat 1 +refs 4 +59 0.130926474929 0.714724183083 +58 0.124729432166 0.704027950764 +34 0.148838326335 0.693989217281 +35 0.151617079973 0.698785424232 +SURF 0x10 +mat 1 +refs 4 +60 0.139680743217 0.723451793194 +59 0.130926474929 0.714724183083 +35 0.151617079973 0.698785424232 +36 0.155542686582 0.702699065208 +SURF 0x10 +mat 1 +refs 4 +61 0.150395587087 0.729616105556 +60 0.139680743217 0.723451793194 +36 0.155542686582 0.702699065208 +37 0.160347387195 0.705463349819 +SURF 0x10 +mat 1 +refs 4 +62 0.162340804935 0.732797563076 +61 0.150395587087 0.729616105556 +37 0.160347387195 0.705463349819 +38 0.165703758597 0.706889927387 +SURF 0x10 +mat 1 +refs 4 +63 0.174702391028 0.732778847218 +62 0.162340804935 0.732797563076 +38 0.165703758597 0.706889927387 +39 0.171246781945 0.706881582737 +SURF 0x10 +mat 1 +refs 4 +64 0.186638012528 0.729561209679 +63 0.174702391028 0.732778847218 +39 0.171246781945 0.706881582737 +40 0.176598995924 0.705438733101 +SURF 0x10 +mat 1 +refs 4 +65 0.19733402133 0.723364174366 +64 0.186638012528 0.729561209679 +40 0.176598995924 0.705438733101 +41 0.181395158172 0.702659785748 +SURF 0x10 +mat 1 +refs 4 +66 0.20606175065 0.714609861374 +65 0.19733402133 0.723364174366 +41 0.181395158172 0.702659785748 +42 0.185308903456 0.698734283447 +SURF 0x10 +mat 1 +refs 4 +67 0.212226316333 0.703894972801 +66 0.20606175065 0.714609861374 +42 0.185308903456 0.698734283447 +43 0.188073128462 0.693929553032 +SURF 0x10 +mat 1 +refs 4 +68 0.215407758951 0.691949546337 +67 0.212226316333 0.703894972801 +43 0.188073128462 0.693929553032 +44 0.189499661326 0.688573122025 +SURF 0x10 +mat 1 +refs 4 +69 0.215388953686 0.679588198662 +68 0.215407758951 0.691949546337 +44 0.189499661326 0.688573122025 +45 0.189491286874 0.683030068874 +SURF 0x10 +mat 1 +refs 4 +71 0.212171435356 0.667652606964 +69 0.215388953686 0.679588198662 +45 0.189491286874 0.683030068874 +47 0.188048541546 0.677677929401 +SURF 0x10 +mat 1 +refs 4 +70 0.20597435534 0.656956493855 +71 0.212171435356 0.667652606964 +47 0.188048541546 0.677677929401 +46 0.185269623995 0.67288172245 +SURF 0x10 +mat 1 +refs 4 +72 0.0123802870512 0.620254695415 +73 0.0123499734327 0.630115449429 +70 0.00195107259788 0.630083560944 +48 0.00198133382946 0.620222806931 +SURF 0x10 +mat 1 +refs 4 +74 0.0124154062942 0.608800470829 +72 0.0123802870512 0.620254695415 +48 0.00198133382946 0.620222806931 +49 0.00201650499366 0.608768582344 +SURF 0x10 +mat 1 +refs 4 +75 0.0124530326575 0.596533417702 +74 0.0124154062942 0.608800470829 +49 0.00201650499366 0.608768582344 +50 0.0020541055128 0.596501529217 +SURF 0x10 +mat 1 +refs 4 +76 0.0124906068668 0.584289431572 +75 0.0124530326575 0.596533417702 +50 0.0020541055128 0.596501529217 +51 0.0020916541107 0.584257543087 +SURF 0x10 +mat 1 +refs 4 +77 0.0125254942104 0.572902977467 +76 0.0124906068668 0.584289431572 +51 0.0020916541107 0.584257543087 +52 0.00212659267709 0.572871088982 +SURF 0x10 +mat 1 +refs 4 +78 0.0125553933904 0.563149988651 +77 0.0125254942104 0.572902977467 +52 0.00212659267709 0.572871088982 +53 0.00215644063428 0.563118100166 +SURF 0x10 +mat 1 +refs 4 +79 0.816629707813 0.768916547298 +78 0.816600203514 0.778540611267 +53 0.806201279163 0.778508841991 +54 0.806230783463 0.768884897232 +SURF 0x10 +mat 1 +refs 4 +80 0.816664457321 0.757612764835 +79 0.816629707813 0.768916547298 +54 0.806230783463 0.768884897232 +55 0.806265413761 0.757580637932 +SURF 0x10 +mat 1 +refs 4 +81 0.816701769829 0.745398938656 +80 0.816664457321 0.757612764835 +55 0.806265413761 0.757580637932 +56 0.806302905083 0.745367050171 +SURF 0x10 +mat 1 +refs 4 +82 0.816739559174 0.73310816288 +81 0.816701769829 0.745398938656 +56 0.806302905083 0.745367050171 +57 0.806340634823 0.73307621479 +SURF 0x10 +mat 1 +refs 4 +83 0.816774964333 0.721577465534 +82 0.816739559174 0.73310816288 +57 0.806340634823 0.73307621479 +58 0.806375980377 0.721545338631 +SURF 0x10 +mat 1 +refs 4 +84 0.81680560112 0.711592853069 +83 0.816774964333 0.721577465534 +58 0.806375980377 0.721545338631 +59 0.806406676769 0.711561024189 +SURF 0x10 +mat 1 +refs 4 +85 0.678605556488 0.697462141514 +84 0.678578019142 0.707209944725 +59 0.668179094791 0.70717805624 +60 0.668206632137 0.697430193424 +SURF 0x10 +mat 1 +refs 4 +86 0.678638935089 0.686078906059 +85 0.678605556488 0.697462141514 +60 0.668206632137 0.697430193424 +61 0.668239891529 0.686047017574 +SURF 0x10 +mat 1 +refs 4 +87 0.678676009178 0.673836112022 +86 0.678638935089 0.686078906059 +61 0.668239891529 0.686047017574 +62 0.668277025223 0.673804163933 +SURF 0x10 +mat 1 +refs 4 +88 0.678714156151 0.661567986012 +87 0.678676009178 0.673836112022 +62 0.668277025223 0.673804163933 +63 0.668315172195 0.661536097527 +SURF 0x10 +mat 1 +refs 4 +89 0.678750693798 0.650110661983 +88 0.678714156151 0.661567986012 +63 0.668315172195 0.661536097527 +64 0.668351829052 0.650078713894 +SURF 0x10 +mat 1 +refs 4 +90 0.678783297539 0.640244841576 +89 0.678750693798 0.650110661983 +64 0.668351829052 0.650078713894 +65 0.668384373188 0.640212953091 +SURF 0x10 +mat 1 +refs 4 +91 0.375975102186 0.732065677643 +90 0.375945627689 0.741730988026 +65 0.365546643734 0.741699159145 +66 0.365576267242 0.732033729553 +SURF 0x10 +mat 1 +refs 4 +92 0.376010000706 0.720735132694 +91 0.375975102186 0.732065677643 +66 0.365576267242 0.732033729553 +67 0.365610957146 0.720702946186 +SURF 0x10 +mat 1 +refs 4 +93 0.376047462225 0.70851111412 +92 0.376010000706 0.720735132694 +67 0.365610957146 0.720702946186 +68 0.365648627281 0.708479583263 +SURF 0x10 +mat 1 +refs 4 +94 0.376085072756 0.696227729321 +93 0.376047462225 0.70851111412 +68 0.365648627281 0.708479583263 +69 0.365686297417 0.696195781231 +SURF 0x10 +mat 1 +refs 4 +95 0.376120477915 0.684720933437 +94 0.376085072756 0.696227729321 +69 0.365686297417 0.696195781231 +71 0.365721493959 0.684688985348 +SURF 0x10 +mat 1 +refs 4 +73 0.376151025295 0.674775481224 +95 0.376120477915 0.684720933437 +71 0.365721493959 0.684688985348 +70 0.365751981735 0.674743413925 +SURF 0x10 +mat 1 +refs 3 +72 0.206000179052 0.754795968533 +96 0.16845497489 0.783652544022 +73 0.197252184153 0.746061861515 +SURF 0x10 +mat 1 +refs 3 +74 0.212189182639 0.765496551991 +96 0.16845497489 0.783652544022 +72 0.206000179052 0.754795968533 +SURF 0x10 +mat 1 +refs 3 +75 0.215398162603 0.777434408665 +96 0.16845497489 0.783652544022 +74 0.212189182639 0.765496551991 +SURF 0x10 +mat 1 +refs 3 +76 0.215407773852 0.789795994759 +96 0.16845497489 0.783652544022 +75 0.215398162603 0.777434408665 +SURF 0x10 +mat 1 +refs 3 +77 0.212218016386 0.801738977432 +96 0.16845497489 0.783652544022 +76 0.215407773852 0.789795994759 +SURF 0x10 +mat 1 +refs 3 +78 0.206045553088 0.812449216843 +96 0.16845497489 0.783652544022 +77 0.212218016386 0.801738977432 +SURF 0x10 +mat 1 +refs 3 +79 0.19731131196 0.821197271347 +96 0.16845497489 0.783652544022 +78 0.206045553088 0.812449216843 +SURF 0x10 +mat 1 +refs 3 +80 0.186610877514 0.827386617661 +96 0.16845497489 0.783652544022 +79 0.19731131196 0.821197271347 +SURF 0x10 +mat 1 +refs 3 +81 0.174672916532 0.830595493317 +96 0.16845497489 0.783652544022 +80 0.186610877514 0.827386617661 +SURF 0x10 +mat 1 +refs 3 +82 0.162311464548 0.830605208874 +96 0.16845497489 0.783652544022 +81 0.174672916532 0.830595493317 +SURF 0x10 +mat 1 +refs 3 +83 0.150368437171 0.827415347099 +96 0.16845497489 0.783652544022 +82 0.162311464548 0.830605208874 +SURF 0x10 +mat 1 +refs 3 +84 0.139657869935 0.821243047714 +96 0.16845497489 0.783652544022 +83 0.150368437171 0.827415347099 +SURF 0x10 +mat 1 +refs 3 +85 0.130910083652 0.812509000301 +96 0.16845497489 0.783652544022 +84 0.139657869935 0.821243047714 +SURF 0x10 +mat 1 +refs 3 +86 0.124720774591 0.801808416843 +96 0.16845497489 0.783652544022 +85 0.130910083652 0.812509000301 +SURF 0x10 +mat 1 +refs 3 +87 0.121512003243 0.789870500565 +96 0.16845497489 0.783652544022 +86 0.124720774591 0.801808416843 +SURF 0x10 +mat 1 +refs 3 +88 0.121502280235 0.777508914471 +96 0.16845497489 0.783652544022 +87 0.121512003243 0.789870500565 +SURF 0x10 +mat 1 +refs 3 +89 0.124692454934 0.765565931797 +96 0.16845497489 0.783652544022 +88 0.121502280235 0.777508914471 +SURF 0x10 +mat 1 +refs 3 +90 0.130864709616 0.754855632782 +96 0.16845497489 0.783652544022 +89 0.124692454934 0.765565931797 +SURF 0x10 +mat 1 +refs 3 +91 0.139598742127 0.746107637882 +96 0.16845497489 0.783652544022 +90 0.130864709616 0.754855632782 +SURF 0x10 +mat 1 +refs 3 +92 0.150299489498 0.739918291569 +96 0.16845497489 0.783652544022 +91 0.139598742127 0.746107637882 +SURF 0x10 +mat 1 +refs 3 +93 0.16223745048 0.736709475517 +96 0.16845497489 0.783652544022 +92 0.150299489498 0.739918291569 +SURF 0x10 +mat 1 +refs 3 +94 0.174598798156 0.736699640751 +96 0.16845497489 0.783652544022 +93 0.16223745048 0.736709475517 +SURF 0x10 +mat 1 +refs 3 +95 0.186541721225 0.73988956213 +96 0.16845497489 0.783652544022 +94 0.174598798156 0.736699640751 +SURF 0x10 +mat 1 +refs 3 +73 0.197252184153 0.746061861515 +96 0.16845497489 0.783652544022 +95 0.186541721225 0.73988956213 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +97 0.610214710236 0.614688277245 +98 0.59694057703 0.632723033428 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +110 0.326880902052 0.46653008461 +109 0.340155094862 0.484564840794 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +98 0.59694057703 0.632723033428 +99 0.5549877882 0.632851839066 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +111 0.284927934408 0.46640136838 +110 0.326880902052 0.46653008461 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +99 0.5549877882 0.632851839066 +100 0.541603207588 0.614898920059 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +112 0.271543234587 0.484354227781 +111 0.284927934408 0.46640136838 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +100 0.541603207588 0.614898920059 +101 0.528950810432 0.583771288395 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +113 0.258890748024 0.515481889248 +112 0.271543234587 0.484354227781 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +101 0.528950810432 0.583771288395 +102 0.52884042263 0.547783613205 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +114 0.258780300617 0.551469564438 +113 0.258890748024 0.515481889248 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +102 0.52884042263 0.547783613205 +103 0.541301548481 0.51657885313 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +115 0.271241545677 0.582674324512 +114 0.258780300617 0.551469564438 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +103 0.541301548481 0.51657885313 +104 0.554575741291 0.498544067144 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +116 0.284515678883 0.600709080696 +115 0.271241545677 0.582674324512 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +104 0.554575741291 0.498544067144 +105 0.596528470516 0.498415231705 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +117 0.326468706131 0.600837886333 +116 0.284515678883 0.600709080696 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +105 0.596528470516 0.498415231705 +106 0.609913110733 0.516368091106 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +118 0.33985337615 0.582884967327 +117 0.326468706131 0.600837886333 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +106 0.609913110733 0.516368091106 +107 0.622565448284 0.547495782375 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +119 0.352505862713 0.551757335663 +118 0.33985337615 0.582884967327 +SURF 0x10 +mat 1 +refs 3 +121 0.575528979301 0.565625071526 +107 0.622565448284 0.547495782375 +108 0.622675895691 0.583483457565 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +120 0.35261631012 0.515769660473 +119 0.352505862713 0.551757335663 +SURF 0x10 +mat 1 +refs 3 +108 0.622675895691 0.583483457565 +97 0.610214710236 0.614688277245 +121 0.575528979301 0.565625071526 +SURF 0x10 +mat 1 +refs 3 +122 0.305602014065 0.53361928463 +109 0.340155094862 0.484564840794 +120 0.35261631012 0.515769660473 +SURF 0x10 +mat 1 +refs 4 +97 0.833065032959 0.828039586544 +109 0.885991513729 0.827877342701 +110 0.886294782162 0.845870316029 +98 0.833368420601 0.846032679081 +SURF 0x10 +mat 1 +refs 4 +98 0.173441573977 0.962443172932 +110 0.173453718424 0.909506976604 +111 0.215407773852 0.909516870975 +99 0.215395748615 0.962453067303 +SURF 0x10 +mat 1 +refs 4 +99 0.35261631012 0.934672296047 +111 0.299695730209 0.934834718704 +112 0.29932102561 0.916841924191 +100 0.352241694927 0.916679441929 +SURF 0x10 +mat 1 +refs 4 +100 0.352241694927 0.916679441929 +112 0.29932102561 0.916841924191 +113 0.298924386501 0.885676622391 +101 0.351845294237 0.885514199734 +SURF 0x10 +mat 1 +refs 4 +101 0.351845294237 0.885514199734 +113 0.298924386501 0.885676622391 +114 0.298814207315 0.849688947201 +102 0.351734995842 0.849526524544 +SURF 0x10 +mat 1 +refs 4 +102 0.351734995842 0.849526524544 +114 0.298814207315 0.849688947201 +115 0.299019485712 0.818521857262 +103 0.351940274239 0.818359434605 +SURF 0x10 +mat 1 +refs 4 +103 0.351940274239 0.818359434605 +115 0.299019485712 0.818521857262 +116 0.299283802509 0.80052703619 +104 0.352204173803 0.800364613533 +SURF 0x10 +mat 1 +refs 4 +104 0.501765668392 0.960234701633 +116 0.501793503761 0.907298505306 +117 0.543747663498 0.90732049942 +105 0.54371970892 0.960256695747 +SURF 0x10 +mat 1 +refs 4 +105 0.832956075668 0.711724877357 +117 0.885882616043 0.711562514305 +118 0.88569009304 0.729557037354 +106 0.832763254642 0.729719519615 +SURF 0x10 +mat 1 +refs 4 +106 0.832763254642 0.729719519615 +118 0.88569009304 0.729557037354 +119 0.885551989079 0.760724067688 +107 0.832625091076 0.760886490345 +SURF 0x10 +mat 1 +refs 4 +107 0.832625091076 0.760886490345 +119 0.885551989079 0.760724067688 +120 0.885662257671 0.796711742878 +108 0.832735598087 0.796874165535 +SURF 0x10 +mat 1 +refs 4 +109 0.885991513729 0.827877342701 +97 0.833065032959 0.828039586544 +108 0.832735598087 0.796874165535 +120 0.885662257671 0.796711742878 +SURF 0x10 +mat 1 +refs 3 +146 0.268072932959 0.720712661743 +123 0.305663585663 0.749509513378 +124 0.261900544167 0.731422781944 +SURF 0x10 +mat 1 +refs 3 +124 0.261900544167 0.731422781944 +123 0.305663585663 0.749509513378 +125 0.25871065259 0.743365705013 +SURF 0x10 +mat 1 +refs 3 +125 0.25871065259 0.743365705013 +123 0.305663585663 0.749509513378 +126 0.258720397949 0.75572758913 +SURF 0x10 +mat 1 +refs 3 +126 0.258720397949 0.75572758913 +123 0.305663585663 0.749509513378 +127 0.261929363012 0.767665505409 +SURF 0x10 +mat 1 +refs 3 +127 0.261929363012 0.767665505409 +123 0.305663585663 0.749509513378 +128 0.268118619919 0.778366088867 +SURF 0x10 +mat 1 +refs 3 +128 0.268118619919 0.778366088867 +123 0.305663585663 0.749509513378 +129 0.276866614819 0.787100195885 +SURF 0x10 +mat 1 +refs 3 +129 0.276866614819 0.787100195885 +123 0.305663585663 0.749509513378 +130 0.287576943636 0.793272554874 +SURF 0x10 +mat 1 +refs 3 +130 0.287576943636 0.793272554874 +123 0.305663585663 0.749509513378 +131 0.299519956112 0.796462535858 +SURF 0x10 +mat 1 +refs 3 +131 0.299519956112 0.796462535858 +123 0.305663585663 0.749509513378 +132 0.311881542206 0.79645293951 +SURF 0x10 +mat 1 +refs 3 +132 0.311881542206 0.79645293951 +123 0.305663585663 0.749509513378 +133 0.32381939888 0.793243944645 +SURF 0x10 +mat 1 +refs 3 +133 0.32381939888 0.793243944645 +123 0.305663585663 0.749509513378 +134 0.334519982338 0.787054717541 +SURF 0x10 +mat 1 +refs 3 +134 0.334519982338 0.787054717541 +123 0.305663585663 0.749509513378 +135 0.343254059553 0.778306603432 +SURF 0x10 +mat 1 +refs 3 +135 0.343254059553 0.778306603432 +123 0.305663585663 0.749509513378 +136 0.349426388741 0.76759660244 +SURF 0x10 +mat 1 +refs 3 +136 0.349426388741 0.76759660244 +123 0.305663585663 0.749509513378 +137 0.35261631012 0.755653440952 +SURF 0x10 +mat 1 +refs 3 +137 0.35261631012 0.755653440952 +123 0.305663585663 0.749509513378 +138 0.352606534958 0.743291795254 +SURF 0x10 +mat 1 +refs 3 +138 0.352606534958 0.743291795254 +123 0.305663585663 0.749509513378 +139 0.349397569895 0.73135381937 +SURF 0x10 +mat 1 +refs 3 +139 0.349397569895 0.73135381937 +123 0.305663585663 0.749509513378 +140 0.343208283186 0.720653295517 +SURF 0x10 +mat 1 +refs 3 +140 0.343208283186 0.720653295517 +123 0.305663585663 0.749509513378 +141 0.334460288286 0.711919248104 +SURF 0x10 +mat 1 +refs 3 +141 0.334460288286 0.711919248104 +123 0.305663585663 0.749509513378 +142 0.323749959469 0.705746889114 +SURF 0x10 +mat 1 +refs 3 +142 0.323749959469 0.705746889114 +123 0.305663585663 0.749509513378 +143 0.3118070364 0.702556729317 +SURF 0x10 +mat 1 +refs 3 +143 0.3118070364 0.702556729317 +123 0.305663585663 0.749509513378 +144 0.299445420504 0.702566444874 +SURF 0x10 +mat 1 +refs 3 +144 0.299445420504 0.702566444874 +123 0.305663585663 0.749509513378 +145 0.287507504225 0.705775558949 +SURF 0x10 +mat 1 +refs 3 +145 0.287507504225 0.705775558949 +123 0.305663585663 0.749509513378 +147 0.276807039976 0.711964726448 +SURF 0x10 +mat 1 +refs 3 +147 0.276807039976 0.711964726448 +123 0.305663585663 0.749509513378 +146 0.268072932959 0.720712661743 +SURF 0x10 +mat 1 +refs 4 +146 0.806406736374 0.849422633648 +124 0.806376099586 0.839437782764 +148 0.816774964333 0.839405834675 +149 0.81680560112 0.849390745163 +SURF 0x10 +mat 1 +refs 4 +124 0.806376099586 0.839437782764 +125 0.806340754032 0.827907323837 +150 0.816739618778 0.827875196934 +148 0.816774964333 0.839405834675 +SURF 0x10 +mat 1 +refs 4 +125 0.806340754032 0.827907323837 +126 0.806303024292 0.815616071224 +151 0.816701948643 0.815584123135 +150 0.816739618778 0.827875196934 +SURF 0x10 +mat 1 +refs 4 +126 0.806303024292 0.815616071224 +127 0.806265592575 0.803402423859 +152 0.816664457321 0.803370773792 +151 0.816701948643 0.815584123135 +SURF 0x10 +mat 1 +refs 4 +127 0.806265592575 0.803402423859 +128 0.806230843067 0.792098581791 +153 0.816629827023 0.792066752911 +152 0.816664457321 0.803370773792 +SURF 0x10 +mat 1 +refs 4 +128 0.806230843067 0.792098581791 +129 0.806201398373 0.782474458218 +154 0.816600263119 0.782442629337 +153 0.816629827023 0.792066752911 +SURF 0x10 +mat 1 +refs 4 +129 0.509990513325 0.565380692482 +130 0.510020375252 0.555627703667 +155 0.520419359207 0.555659592152 +154 0.520389437675 0.565412580967 +SURF 0x10 +mat 1 +refs 4 +130 0.510020375252 0.555627703667 +131 0.510055363178 0.544241249561 +156 0.520454227924 0.544273138046 +155 0.520419359207 0.555659592152 +SURF 0x10 +mat 1 +refs 4 +131 0.510055363178 0.544241249561 +132 0.510092914104 0.531997263432 +157 0.520491778851 0.532029151917 +156 0.520454227924 0.544273138046 +SURF 0x10 +mat 1 +refs 4 +132 0.510092914104 0.531997263432 +133 0.510130524635 0.519730210304 +158 0.520529448986 0.519762098789 +157 0.520491778851 0.532029151917 +SURF 0x10 +mat 1 +refs 4 +133 0.510130524635 0.519730210304 +134 0.510165691376 0.508275985718 +159 0.520564615726 0.508307933807 +158 0.520529448986 0.519762098789 +SURF 0x10 +mat 1 +refs 4 +134 0.510165691376 0.508275985718 +135 0.510195970535 0.498415231705 +160 0.520594894886 0.498447149992 +159 0.520564615726 0.508307933807 +SURF 0x10 +mat 1 +refs 4 +135 0.00195109844208 0.771871805191 +136 0.00198161811568 0.761926829815 +161 0.012380531989 0.761958777905 +160 0.0123499995098 0.77190387249 +SURF 0x10 +mat 1 +refs 4 +136 0.00198161811568 0.761926829815 +137 0.00201686681248 0.750419914722 +162 0.0124158710241 0.750451743603 +161 0.012380531989 0.761958777905 +SURF 0x10 +mat 1 +refs 4 +137 0.00201686681248 0.750419914722 +138 0.0020546480082 0.738136351109 +163 0.012453484349 0.738168239594 +162 0.0124158710241 0.750451743603 +SURF 0x10 +mat 1 +refs 4 +138 0.0020546480082 0.738136351109 +139 0.00209206761792 0.725912511349 +164 0.0124910073355 0.725944340229 +163 0.012453484349 0.738168239594 +SURF 0x10 +mat 1 +refs 4 +139 0.00209206761792 0.725912511349 +140 0.0021269028075 0.714581906796 +165 0.0125257391483 0.71461379528 +164 0.0124910073355 0.725944340229 +SURF 0x10 +mat 1 +refs 4 +140 0.0021269028075 0.714581906796 +141 0.00215654401109 0.704916536808 +166 0.0125553933904 0.704948365688 +165 0.0125257391483 0.71461379528 +SURF 0x10 +mat 1 +refs 4 +141 0.668179094791 0.636278986931 +142 0.668211698532 0.626413166523 +167 0.678610622883 0.626445114613 +166 0.678577959538 0.63631093502 +SURF 0x10 +mat 1 +refs 4 +142 0.668211698532 0.626413166523 +143 0.668248355389 0.614955842495 +168 0.678647220135 0.61498773098 +167 0.678610622883 0.626445114613 +SURF 0x10 +mat 1 +refs 4 +143 0.668248355389 0.614955842495 +144 0.668286502361 0.602687716484 +169 0.678685367107 0.602719604969 +168 0.678647220135 0.61498773098 +SURF 0x10 +mat 1 +refs 4 +144 0.668286502361 0.602687716484 +145 0.668323457241 0.590444922447 +170 0.678722381592 0.590476810932 +169 0.678685367107 0.602719604969 +SURF 0x10 +mat 1 +refs 4 +145 0.668323457241 0.590444922447 +147 0.668356835842 0.579061746597 +171 0.678755819798 0.579093635082 +170 0.678722381592 0.590476810932 +SURF 0x10 +mat 1 +refs 4 +147 0.668356835842 0.579061746597 +146 0.668384432793 0.569313883781 +149 0.678783297539 0.569345772266 +171 0.678755819798 0.579093635082 +SURF 0x10 +mat 1 +refs 4 +149 0.343183010817 0.622813522816 +148 0.349380105734 0.633509635925 +172 0.32527127862 0.643548369408 +173 0.322492390871 0.638751983643 +SURF 0x10 +mat 1 +refs 4 +148 0.349380105734 0.633509635925 +150 0.352597624063 0.645445108414 +174 0.326714038849 0.648900330067 +172 0.32527127862 0.643548369408 +SURF 0x10 +mat 1 +refs 4 +150 0.352597624063 0.645445108414 +151 0.352616339922 0.657806754112 +175 0.326722413301 0.654443562031 +174 0.326714038849 0.648900330067 +SURF 0x10 +mat 1 +refs 4 +151 0.352616339922 0.657806754112 +152 0.349435091019 0.669752299786 +176 0.32529592514 0.659799933434 +175 0.326722413301 0.654443562031 +SURF 0x10 +mat 1 +refs 4 +152 0.349435091019 0.669752299786 +153 0.34327045083 0.680466890335 +177 0.32253164053 0.66460442543 +176 0.32529592514 0.659799933434 +SURF 0x10 +mat 1 +refs 4 +153 0.34327045083 0.680466890335 +154 0.33454272151 0.689221262932 +178 0.318617969751 0.66853004694 +177 0.32253164053 0.66460442543 +SURF 0x10 +mat 1 +refs 4 +154 0.33454272151 0.689221262932 +155 0.323846668005 0.69541823864 +179 0.3138217628 0.671308934689 +178 0.318617969751 0.66853004694 +SURF 0x10 +mat 1 +refs 4 +155 0.323846668005 0.69541823864 +156 0.311911046505 0.698635816574 +180 0.308469474316 0.672752022743 +179 0.3138217628 0.671308934689 +SURF 0x10 +mat 1 +refs 4 +156 0.311911046505 0.698635816574 +157 0.299549520016 0.698654711246 +181 0.302926510572 0.67276018858 +180 0.308469474316 0.672752022743 +SURF 0x10 +mat 1 +refs 4 +157 0.299549520016 0.698654711246 +158 0.287604212761 0.695473313332 +182 0.297570079565 0.67133384943 +181 0.302926510572 0.67276018858 +SURF 0x10 +mat 1 +refs 4 +158 0.287604212761 0.695473313332 +159 0.276889443398 0.689308822155 +183 0.292765378952 0.668569505215 +182 0.297570079565 0.67133384943 +SURF 0x10 +mat 1 +refs 4 +159 0.276889443398 0.689308822155 +160 0.268135100603 0.680581271648 +184 0.288839876652 0.664655864239 +183 0.292765378952 0.668569505215 +SURF 0x10 +mat 1 +refs 4 +160 0.268135100603 0.680581271648 +161 0.26193806529 0.66988492012 +185 0.286061108112 0.659859597683 +184 0.288839876652 0.664655864239 +SURF 0x10 +mat 1 +refs 4 +161 0.26193806529 0.66988492012 +162 0.258720546961 0.657949447632 +186 0.284618258476 0.65450745821 +185 0.286061108112 0.659859597683 +SURF 0x10 +mat 1 +refs 4 +162 0.258720546961 0.657949447632 +163 0.258701860905 0.645587980747 +187 0.284609884024 0.64896440506 +186 0.284618258476 0.65450745821 +SURF 0x10 +mat 1 +refs 4 +163 0.258701860905 0.645587980747 +164 0.261883169413 0.633642792702 +188 0.286036431789 0.643608033657 +187 0.284609884024 0.64896440506 +SURF 0x10 +mat 1 +refs 4 +164 0.261883169413 0.633642792702 +165 0.268047749996 0.62292778492 +189 0.288800746202 0.638803362846 +188 0.286036431789 0.643608033657 +SURF 0x10 +mat 1 +refs 4 +165 0.268047749996 0.62292778492 +166 0.276775419712 0.614173650742 +190 0.292714327574 0.63487803936 +189 0.288800746202 0.638803362846 +SURF 0x10 +mat 1 +refs 4 +166 0.276775419712 0.614173650742 +167 0.287471652031 0.60797649622 +191 0.297510564327 0.632098853588 +190 0.292714327574 0.63487803936 +SURF 0x10 +mat 1 +refs 4 +167 0.287471652031 0.60797649622 +168 0.299407094717 0.604758918285 +192 0.302862673998 0.630656123161 +191 0.297510564327 0.632098853588 +SURF 0x10 +mat 1 +refs 4 +168 0.299407094717 0.604758918285 +169 0.311768740416 0.604739904404 +193 0.308405816555 0.630647659302 +192 0.302862673998 0.630656123161 +SURF 0x10 +mat 1 +refs 4 +169 0.311768740416 0.604739904404 +170 0.323713958263 0.607921302319 +194 0.313762277365 0.63207423687 +193 0.308405816555 0.630647659302 +SURF 0x10 +mat 1 +refs 4 +170 0.323713958263 0.607921302319 +171 0.334428846836 0.614085793495 +195 0.318566918373 0.634838521481 +194 0.313762277365 0.63207423687 +SURF 0x10 +mat 1 +refs 4 +171 0.334428846836 0.614085793495 +149 0.343183010817 0.622813522816 +173 0.322492390871 0.638751983643 +195 0.318566918373 0.634838521481 +SURF 0x10 +mat 1 +refs 4 +173 0.940228044987 0.500475764275 +172 0.944705367088 0.500462055206 +196 0.947494387627 0.591347813606 +197 0.944121956825 0.591358184814 +SURF 0x10 +mat 1 +refs 4 +172 0.944705367088 0.500462055206 +174 0.949875771999 0.500446200371 +198 0.951389312744 0.591335833073 +196 0.947494387627 0.591347813606 +SURF 0x10 +mat 1 +refs 4 +174 0.949875771999 0.500446200371 +175 0.955387294292 0.500429213047 +199 0.955540597439 0.591323196888 +198 0.951389312744 0.591335833073 +SURF 0x10 +mat 1 +refs 4 +175 0.955387294292 0.500429213047 +176 0.960864067078 0.500412464142 +200 0.959666132927 0.591310381889 +199 0.955540597439 0.591323196888 +SURF 0x10 +mat 1 +refs 4 +176 0.960864067078 0.500412464142 +177 0.965932965279 0.500396966934 +201 0.963483870029 0.591298758984 +200 0.959666132927 0.591310381889 +SURF 0x10 +mat 1 +refs 4 +177 0.965932965279 0.500396966934 +178 0.970248401165 0.500383615494 +202 0.966734945774 0.591288805008 +201 0.963483870029 0.591298758984 +SURF 0x10 +mat 1 +refs 4 +178 0.967326521873 0.0929253697395 +179 0.962953209877 0.0929119437933 +203 0.960579931736 0.00201035453938 +202 0.963874161243 0.00202044588514 +SURF 0x10 +mat 1 +refs 4 +179 0.962953209877 0.0929119437933 +180 0.957847297192 0.0928963124752 +204 0.956733942032 0.00199855770916 +203 0.960579931736 0.00201035453938 +SURF 0x10 +mat 1 +refs 4 +180 0.957847297192 0.0928963124752 +181 0.952356934547 0.0928794890642 +205 0.952598333359 0.00198585609905 +204 0.956733942032 0.00199855770916 +SURF 0x10 +mat 1 +refs 4 +181 0.952356934547 0.0928794890642 +182 0.946856200695 0.0928625762463 +206 0.948454916477 0.0019731419161 +205 0.952598333359 0.00198585609905 +SURF 0x10 +mat 1 +refs 4 +182 0.946856200695 0.0928625762463 +183 0.94172000885 0.0928468108177 +207 0.944586038589 0.00196126732044 +206 0.948454916477 0.0019731419161 +SURF 0x10 +mat 1 +refs 4 +183 0.94172000885 0.0928468108177 +184 0.937298297882 0.0928332731128 +208 0.941255390644 0.00195102090947 +207 0.944586038589 0.00196126732044 +SURF 0x10 +mat 1 +refs 4 +184 0.937298297882 0.191794678569 +185 0.941758155823 0.191781103611 +209 0.944571733475 0.282666742802 +208 0.941212117672 0.282677054405 +SURF 0x10 +mat 1 +refs 4 +185 0.941758155823 0.191781103611 +186 0.946918010712 0.191765144467 +210 0.948458313942 0.282654941082 +209 0.944571733475 0.282666742802 +SURF 0x10 +mat 1 +refs 4 +186 0.946918010712 0.191765144467 +187 0.952426075935 0.191748425364 +211 0.952607214451 0.282642185688 +210 0.948458313942 0.282654941082 +SURF 0x10 +mat 1 +refs 4 +187 0.952426075935 0.191748425364 +188 0.957907319069 0.191731616855 +212 0.95673596859 0.282629519701 +211 0.952607214451 0.282642185688 +SURF 0x10 +mat 1 +refs 4 +188 0.957907319069 0.191731616855 +189 0.96298801899 0.191715881228 +213 0.960563182831 0.282617777586 +212 0.95673596859 0.282629519701 +SURF 0x10 +mat 1 +refs 4 +189 0.96298801899 0.191715881228 +190 0.967322051525 0.1917026788 +214 0.96382778883 0.282607704401 +213 0.960563182831 0.282617777586 +SURF 0x10 +mat 1 +refs 4 +190 0.937298297882 0.096919618547 +191 0.941722214222 0.0969070717692 +215 0.94458514452 0.187791228294 +214 0.941252827644 0.187800645828 +SURF 0x10 +mat 1 +refs 4 +191 0.941722214222 0.0969070717692 +192 0.946859896183 0.0968919545412 +216 0.948455095291 0.187779814005 +215 0.94458514452 0.187791228294 +SURF 0x10 +mat 1 +refs 4 +192 0.946859896183 0.0968919545412 +193 0.952361047268 0.0968753248453 +217 0.952598869801 0.187767282128 +216 0.948455095291 0.187779814005 +SURF 0x10 +mat 1 +refs 4 +193 0.952361047268 0.0968753248453 +194 0.957850933075 0.0968582332134 +218 0.956734120846 0.187754392624 +217 0.952598869801 0.187767282128 +SURF 0x10 +mat 1 +refs 4 +194 0.957850933075 0.0968582332134 +195 0.96295529604 0.0968418866396 +219 0.960578978062 0.187742114067 +218 0.956734120846 0.187754392624 +SURF 0x10 +mat 1 +refs 4 +195 0.96295529604 0.0968418866396 +173 0.96732634306 0.0968274176121 +197 0.963871479034 0.187731206417 +219 0.960578978062 0.187742114067 +kids 0 +OBJECT poly +name "rwheel.L" +data 10 +Circle.029 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 218 +2.696454 0.407726 0.538809 +2.830828 0.640469 0.538809 +2.766011 0.667317 0.538809 +2.696454 0.676475 0.538809 +2.626897 0.667317 0.538809 +2.56208 0.640469 0.538809 +2.50642 0.59776 0.538809 +2.463711 0.5421 0.538809 +2.436863 0.477284 0.538809 +2.427706 0.407726 0.538809 +2.436863 0.338169 0.538809 +2.463712 0.273353 0.538809 +2.506421 0.217693 0.538809 +2.56208 0.174984 0.538809 +2.626897 0.148136 0.538809 +2.696454 0.138979 0.538809 +2.766011 0.148136 0.538809 +2.830828 0.174984 0.538809 +2.886487 0.217693 0.538809 +2.929196 0.273353 0.538809 +2.956044 0.33817 0.538809 +2.965202 0.407727 0.538809 +2.956044 0.477284 0.538809 +2.886487 0.59776 0.538809 +2.929196 0.542101 0.538809 +2.696454 0.407726 0.746253 +2.706867 0.425763 0.741594 +2.701844 0.427843 0.741594 +2.696454 0.428553 0.741594 +2.691064 0.427843 0.741594 +2.686041 0.425763 0.741594 +2.681727 0.422453 0.741594 +2.678418 0.41814 0.741594 +2.676337 0.413117 0.741594 +2.675628 0.407726 0.741594 +2.676337 0.402336 0.741594 +2.678418 0.397313 0.741594 +2.681727 0.393 0.741594 +2.686041 0.38969 0.741594 +2.691064 0.38761 0.741594 +2.696454 0.3869 0.741594 +2.701844 0.38761 0.741594 +2.706867 0.38969 0.741594 +2.71118 0.393 0.741594 +2.71449 0.397313 0.741594 +2.71657 0.402336 0.741594 +2.71728 0.407726 0.741594 +2.71657 0.413117 0.741594 +2.71449 0.41814 0.741594 +2.71118 0.422453 0.741594 +2.715106 0.440034 0.720245 +2.706109 0.443761 0.720245 +2.696454 0.445032 0.720245 +2.686799 0.443761 0.720245 +2.677801 0.440034 0.720245 +2.670075 0.434106 0.720245 +2.664146 0.426379 0.720245 +2.660419 0.417382 0.720245 +2.659148 0.407726 0.720245 +2.660419 0.398071 0.720245 +2.664146 0.389074 0.720245 +2.670075 0.381347 0.720245 +2.677801 0.375419 0.720245 +2.686799 0.371692 0.720245 +2.696454 0.370421 0.720245 +2.706109 0.371692 0.720245 +2.715107 0.375419 0.720245 +2.722833 0.381347 0.720245 +2.728761 0.389074 0.720245 +2.732488 0.398071 0.720245 +2.733759 0.407726 0.720245 +2.732488 0.417382 0.720245 +2.728761 0.426379 0.720245 +2.722833 0.434106 0.720245 +2.715106 0.440034 0.682689 +2.706109 0.443761 0.682689 +2.696454 0.445032 0.682689 +2.686799 0.443761 0.682689 +2.677801 0.440034 0.682689 +2.670075 0.434106 0.682689 +2.664146 0.426379 0.682689 +2.660419 0.417382 0.682689 +2.659148 0.407726 0.682689 +2.660419 0.398071 0.682689 +2.664146 0.389074 0.682689 +2.670075 0.381347 0.682689 +2.677801 0.375419 0.682689 +2.686799 0.371692 0.682689 +2.696454 0.370421 0.682689 +2.706109 0.371692 0.682689 +2.715107 0.375419 0.682689 +2.722833 0.381347 0.682689 +2.728761 0.389074 0.682689 +2.732488 0.398071 0.682689 +2.733759 0.407726 0.682689 +2.732488 0.417382 0.682689 +2.722833 0.434106 0.682689 +2.728761 0.426379 0.682689 +2.756274 0.511339 0.682689 +2.727419 0.523291 0.682689 +2.696454 0.527368 0.682689 +2.665488 0.523291 0.682689 +2.636633 0.511339 0.682689 +2.611855 0.492326 0.682689 +2.592842 0.467547 0.682689 +2.580889 0.438692 0.682689 +2.576813 0.407726 0.682689 +2.580889 0.376761 0.682689 +2.592842 0.347906 0.682689 +2.611855 0.323127 0.682689 +2.636633 0.304114 0.682689 +2.665488 0.292162 0.682689 +2.696454 0.288085 0.682689 +2.727419 0.292162 0.682689 +2.756275 0.304114 0.682689 +2.781053 0.323127 0.682689 +2.800066 0.347906 0.682689 +2.812018 0.376761 0.682689 +2.816095 0.407727 0.682689 +2.812018 0.438692 0.682689 +2.781053 0.492326 0.682689 +2.800066 0.467547 0.682689 +2.787745 0.565848 0.665997 +2.74371 0.584088 0.665997 +2.696454 0.59031 0.665997 +2.649198 0.584088 0.665997 +2.605162 0.565848 0.665997 +2.567348 0.536832 0.665997 +2.538332 0.499018 0.665997 +2.520092 0.454982 0.665997 +2.513871 0.407726 0.665997 +2.520092 0.360471 0.665997 +2.538332 0.316435 0.665997 +2.567348 0.278621 0.665997 +2.605163 0.249605 0.665997 +2.649198 0.231365 0.665997 +2.696454 0.225143 0.665997 +2.74371 0.231365 0.665997 +2.787745 0.249605 0.665997 +2.82556 0.278621 0.665997 +2.854575 0.316435 0.665997 +2.872816 0.360471 0.665997 +2.879037 0.407727 0.665997 +2.872816 0.454983 0.665997 +2.854575 0.499018 0.665997 +2.82556 0.536832 0.665997 +2.818703 0.619468 0.665997 +2.759735 0.643894 0.665997 +2.696454 0.652225 0.665997 +2.633173 0.643894 0.665997 +2.574204 0.619468 0.665997 +2.523567 0.580613 0.665997 +2.484712 0.529976 0.665997 +2.460287 0.471007 0.665997 +2.451956 0.407726 0.665997 +2.460287 0.344446 0.665997 +2.484712 0.285477 0.665997 +2.523568 0.23484 0.665997 +2.574205 0.195985 0.665997 +2.633173 0.171559 0.665997 +2.696454 0.163228 0.665997 +2.759735 0.171559 0.665997 +2.818703 0.195985 0.665997 +2.86934 0.23484 0.665997 +2.908196 0.285477 0.665997 +2.932621 0.344446 0.665997 +2.940952 0.407727 0.665997 +2.932621 0.471007 0.665997 +2.86934 0.580613 0.665997 +2.908196 0.529976 0.665997 +2.818703 0.619468 0.720245 +2.759735 0.643894 0.720245 +2.696454 0.652225 0.720245 +2.633173 0.643894 0.720245 +2.574204 0.619468 0.720245 +2.523567 0.580613 0.720245 +2.484712 0.529976 0.720245 +2.460287 0.471007 0.720245 +2.451956 0.407726 0.720245 +2.460287 0.344446 0.720245 +2.484712 0.285477 0.720245 +2.523568 0.23484 0.720245 +2.574205 0.195985 0.720245 +2.633173 0.171559 0.720245 +2.696454 0.163228 0.720245 +2.759735 0.171559 0.720245 +2.818703 0.195985 0.720245 +2.86934 0.23484 0.720245 +2.908196 0.285477 0.720245 +2.932621 0.344446 0.720245 +2.940952 0.407727 0.720245 +2.932621 0.471007 0.720245 +2.86934 0.580613 0.720245 +2.908196 0.529976 0.720245 +2.830073 0.639162 0.720245 +2.76562 0.665859 0.720245 +2.696454 0.674965 0.720245 +2.627287 0.665859 0.720245 +2.562835 0.639162 0.720245 +2.507488 0.596692 0.720245 +2.465019 0.541346 0.720245 +2.438322 0.476893 0.720245 +2.429215 0.407726 0.720245 +2.438322 0.33856 0.720245 +2.465019 0.274107 0.720245 +2.507488 0.21876 0.720245 +2.562835 0.176291 0.720245 +2.627288 0.149594 0.720245 +2.696454 0.140488 0.720245 +2.76562 0.149594 0.720245 +2.830073 0.176291 0.720245 +2.88542 0.218761 0.720245 +2.927889 0.274107 0.720245 +2.954586 0.33856 0.720245 +2.963692 0.407727 0.720245 +2.954586 0.476893 0.720245 +2.88542 0.596693 0.720245 +2.927889 0.541346 0.720245 +numsurf 216 +SURF 0x10 +mat 9 +refs 3 +23 0.163628667593 0.509743213654 +0 0.1346539855 0.480768471956 +1 0.155142173171 0.516255199909 +SURF 0x10 +mat 9 +refs 3 +1 0.155142173171 0.516255199909 +0 0.1346539855 0.480768471956 +2 0.145259439945 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +2 0.145259439945 0.520348727703 +0 0.1346539855 0.480768471956 +3 0.134653955698 0.521744906902 +SURF 0x10 +mat 9 +refs 3 +3 0.134653955698 0.521744906902 +0 0.1346539855 0.480768471956 +4 0.124048486352 0.520348727703 +SURF 0x10 +mat 9 +refs 3 +4 0.124048486352 0.520348727703 +0 0.1346539855 0.480768471956 +5 0.114165768027 0.516255140305 +SURF 0x10 +mat 9 +refs 3 +5 0.114165768027 0.516255140305 +0 0.1346539855 0.480768471956 +6 0.105679303408 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +6 0.105679303408 0.509743213654 +0 0.1346539855 0.480768471956 +7 0.0991673767567 0.50125670433 +SURF 0x10 +mat 9 +refs 3 +7 0.0991673767567 0.50125670433 +0 0.1346539855 0.480768471956 +8 0.0950738191605 0.491373956203 +SURF 0x10 +mat 9 +refs 3 +8 0.0950738191605 0.491373956203 +0 0.1346539855 0.480768471956 +9 0.0936775803566 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +9 0.0936775803566 0.480768471956 +0 0.1346539855 0.480768471956 +10 0.0950738340616 0.470163017511 +SURF 0x10 +mat 9 +refs 3 +10 0.0950738340616 0.470163017511 +0 0.1346539855 0.480768471956 +11 0.099167406559 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +11 0.099167406559 0.460280328989 +0 0.1346539855 0.480768471956 +12 0.105679303408 0.451793789864 +SURF 0x10 +mat 9 +refs 3 +12 0.105679303408 0.451793789864 +0 0.1346539855 0.480768471956 +13 0.114165812731 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +13 0.114165812731 0.445281893015 +0 0.1346539855 0.480768471956 +14 0.124048545957 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +14 0.124048545957 0.441188365221 +0 0.1346539855 0.480768471956 +15 0.134654000401 0.439792096615 +SURF 0x10 +mat 9 +refs 3 +15 0.134654000401 0.439792096615 +0 0.1346539855 0.480768471956 +16 0.14525949955 0.441188365221 +SURF 0x10 +mat 9 +refs 3 +16 0.14525949955 0.441188365221 +0 0.1346539855 0.480768471956 +17 0.155142202973 0.445281893015 +SURF 0x10 +mat 9 +refs 3 +17 0.155142202973 0.445281893015 +0 0.1346539855 0.480768471956 +18 0.163628727198 0.451793819666 +SURF 0x10 +mat 9 +refs 3 +18 0.163628727198 0.451793819666 +0 0.1346539855 0.480768471956 +19 0.170140609145 0.460280328989 +SURF 0x10 +mat 9 +refs 3 +19 0.170140609145 0.460280328989 +0 0.1346539855 0.480768471956 +20 0.174234181643 0.470163047314 +SURF 0x10 +mat 9 +refs 3 +20 0.174234181643 0.470163047314 +0 0.1346539855 0.480768471956 +21 0.175630405545 0.480768531561 +SURF 0x10 +mat 9 +refs 3 +21 0.175630405545 0.480768531561 +0 0.1346539855 0.480768471956 +22 0.174234181643 0.491374015808 +SURF 0x10 +mat 9 +refs 3 +22 0.174234181643 0.491374015808 +0 0.1346539855 0.480768471956 +24 0.170140609145 0.501256763935 +SURF 0x10 +mat 9 +refs 3 +24 0.170140609145 0.501256763935 +0 0.1346539855 0.480768471956 +23 0.163628667593 0.509743213654 +SURF 0x10 +mat 9 +refs 3 +26 0.136241689324 0.483518511057 +25 0.1346539855 0.480768471956 +49 0.136899352074 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +27 0.135475844145 0.483835697174 +25 0.1346539855 0.480768471956 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +28 0.1346539855 0.483943879604 +25 0.1346539855 0.480768471956 +27 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +29 0.133832126856 0.483835697174 +25 0.1346539855 0.480768471956 +28 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 3 +30 0.133066281676 0.483518511057 +25 0.1346539855 0.480768471956 +29 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 3 +31 0.132408633828 0.48301383853 +25 0.1346539855 0.480768471956 +30 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 3 +32 0.131904020905 0.482356220484 +25 0.1346539855 0.480768471956 +31 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 3 +33 0.131586790085 0.481590390205 +25 0.1346539855 0.480768471956 +32 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 3 +34 0.131478577852 0.480768471956 +25 0.1346539855 0.480768471956 +33 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +35 0.131586790085 0.479946613312 +25 0.1346539855 0.480768471956 +34 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +36 0.131904020905 0.479180753231 +25 0.1346539855 0.480768471956 +35 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +37 0.132408633828 0.478523135185 +25 0.1346539855 0.480768471956 +36 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +38 0.133066281676 0.478018462658 +25 0.1346539855 0.480768471956 +37 0.132408633828 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +39 0.133832126856 0.477701276541 +25 0.1346539855 0.480768471956 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +40 0.1346539855 0.47759309411 +25 0.1346539855 0.480768471956 +39 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +41 0.135475844145 0.477701276541 +25 0.1346539855 0.480768471956 +40 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 3 +42 0.136241689324 0.478018462658 +25 0.1346539855 0.480768471956 +41 0.135475844145 0.477701276541 +SURF 0x10 +mat 9 +refs 3 +43 0.136899352074 0.478523135185 +25 0.1346539855 0.480768471956 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 3 +44 0.137403979897 0.479180753231 +25 0.1346539855 0.480768471956 +43 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 3 +45 0.137721210718 0.479946613312 +25 0.1346539855 0.480768471956 +44 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 3 +46 0.13782940805 0.480768471956 +25 0.1346539855 0.480768471956 +45 0.137721210718 0.479946613312 +SURF 0x10 +mat 9 +refs 3 +47 0.137721210718 0.481590390205 +25 0.1346539855 0.480768471956 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 3 +48 0.137403979897 0.482356220484 +25 0.1346539855 0.480768471956 +47 0.137721210718 0.481590390205 +SURF 0x10 +mat 9 +refs 3 +49 0.136899352074 0.48301383853 +25 0.1346539855 0.480768471956 +48 0.137403979897 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +26 0.136241689324 0.483518511057 +49 0.136899352074 0.48301383853 +73 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +50 0.137498006225 0.485694468021 +51 0.136126160622 0.486262708902 +27 0.135475844145 0.483835697174 +26 0.136241689324 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +51 0.136126160622 0.486262708902 +52 0.1346539855 0.486456543207 +28 0.1346539855 0.483943879604 +27 0.135475844145 0.483835697174 +SURF 0x10 +mat 9 +refs 4 +52 0.1346539855 0.486456543207 +53 0.133181810379 0.486262708902 +29 0.133832126856 0.483835697174 +28 0.1346539855 0.483943879604 +SURF 0x10 +mat 9 +refs 4 +53 0.133181810379 0.486262708902 +54 0.131809994578 0.485694468021 +30 0.133066281676 0.483518511057 +29 0.133832126856 0.483835697174 +SURF 0x10 +mat 9 +refs 4 +54 0.131809994578 0.485694468021 +55 0.130631938577 0.484790533781 +31 0.132408633828 0.48301383853 +30 0.133066281676 0.483518511057 +SURF 0x10 +mat 9 +refs 4 +55 0.130631938577 0.484790533781 +56 0.129728004336 0.483612507582 +32 0.131904020905 0.482356220484 +31 0.132408633828 0.48301383853 +SURF 0x10 +mat 9 +refs 4 +56 0.129728004336 0.483612507582 +57 0.129159763455 0.482240647078 +33 0.131586790085 0.481590390205 +32 0.131904020905 0.482356220484 +SURF 0x10 +mat 9 +refs 4 +57 0.129159763455 0.482240647078 +58 0.128965958953 0.480768471956 +34 0.131478577852 0.480768471956 +33 0.131586790085 0.481590390205 +SURF 0x10 +mat 9 +refs 4 +58 0.128965958953 0.480768471956 +59 0.129159763455 0.479296296835 +35 0.131586790085 0.479946613312 +34 0.131478577852 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +59 0.129159763455 0.479296296835 +60 0.129728004336 0.477924466133 +36 0.131904020905 0.479180753231 +35 0.131586790085 0.479946613312 +SURF 0x10 +mat 9 +refs 4 +60 0.129728004336 0.477924466133 +61 0.130631968379 0.476746439934 +37 0.132408633828 0.478523135185 +36 0.131904020905 0.479180753231 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +38 0.133066281676 0.478018462658 +37 0.132408633828 0.478523135185 +61 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +62 0.131809994578 0.475842505693 +63 0.133181810379 0.475274294615 +39 0.133832126856 0.477701276541 +38 0.133066281676 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +63 0.133181810379 0.475274294615 +64 0.1346539855 0.47508046031 +40 0.1346539855 0.47759309411 +39 0.133832126856 0.477701276541 +SURF 0x10 +mat 9 +refs 4 +64 0.1346539855 0.47508046031 +65 0.136126160622 0.475274294615 +41 0.135475844145 0.477701276541 +40 0.1346539855 0.47759309411 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +42 0.136241689324 0.478018462658 +41 0.135475844145 0.477701276541 +65 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +66 0.137498021126 0.475842505693 +67 0.138676047325 0.476746439934 +43 0.136899352074 0.478523135185 +42 0.136241689324 0.478018462658 +SURF 0x10 +mat 9 +refs 4 +67 0.138676047325 0.476746439934 +68 0.139579966664 0.477924466133 +44 0.137403979897 0.479180753231 +43 0.136899352074 0.478523135185 +SURF 0x10 +mat 9 +refs 4 +68 0.139579966664 0.477924466133 +69 0.140148207545 0.479296296835 +45 0.137721210718 0.479946613312 +44 0.137403979897 0.479180753231 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +46 0.13782940805 0.480768471956 +45 0.137721210718 0.479946613312 +69 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +70 0.140342026949 0.480768471956 +71 0.140148207545 0.482240706682 +47 0.137721210718 0.481590390205 +46 0.13782940805 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +72 0.139579966664 0.483612507582 +48 0.137403979897 0.482356220484 +47 0.137721210718 0.481590390205 +71 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +73 0.138676047325 0.484790533781 +49 0.136899352074 0.48301383853 +48 0.137403979897 0.482356220484 +72 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +50 0.137498006225 0.485694468021 +73 0.138676047325 0.484790533781 +96 0.138676047325 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +74 0.137498006225 0.485694468021 +75 0.136126160622 0.486262708902 +51 0.136126160622 0.486262708902 +50 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +75 0.136126160622 0.486262708902 +76 0.1346539855 0.486456543207 +52 0.1346539855 0.486456543207 +51 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +76 0.1346539855 0.486456543207 +77 0.133181810379 0.486262708902 +53 0.133181810379 0.486262708902 +52 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +77 0.133181810379 0.486262708902 +78 0.131809994578 0.485694468021 +54 0.131809994578 0.485694468021 +53 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +78 0.131809994578 0.485694468021 +79 0.130631938577 0.484790533781 +55 0.130631938577 0.484790533781 +54 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +79 0.130631938577 0.484790533781 +80 0.129728004336 0.483612507582 +56 0.129728004336 0.483612507582 +55 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +80 0.129728004336 0.483612507582 +81 0.129159763455 0.482240647078 +57 0.129159763455 0.482240647078 +56 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +81 0.129159763455 0.482240647078 +82 0.128965958953 0.480768471956 +58 0.128965958953 0.480768471956 +57 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +82 0.128965958953 0.480768471956 +83 0.129159763455 0.479296296835 +59 0.129159763455 0.479296296835 +58 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +83 0.129159763455 0.479296296835 +84 0.129728004336 0.477924466133 +60 0.129728004336 0.477924466133 +59 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +84 0.129728004336 0.477924466133 +85 0.130631968379 0.476746439934 +61 0.130631968379 0.476746439934 +60 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +62 0.131809994578 0.475842505693 +61 0.130631968379 0.476746439934 +85 0.130631968379 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +86 0.131809994578 0.475842505693 +87 0.133181810379 0.475274294615 +63 0.133181810379 0.475274294615 +62 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +87 0.133181810379 0.475274294615 +88 0.1346539855 0.47508046031 +64 0.1346539855 0.47508046031 +63 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +88 0.1346539855 0.47508046031 +89 0.136126160622 0.475274294615 +65 0.136126160622 0.475274294615 +64 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +66 0.137498021126 0.475842505693 +65 0.136126160622 0.475274294615 +89 0.136126160622 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +90 0.137498021126 0.475842505693 +91 0.138676047325 0.476746439934 +67 0.138676047325 0.476746439934 +66 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +91 0.138676047325 0.476746439934 +92 0.139579966664 0.477924466133 +68 0.139579966664 0.477924466133 +67 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +92 0.139579966664 0.477924466133 +93 0.140148207545 0.479296296835 +69 0.140148207545 0.479296296835 +68 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +70 0.140342026949 0.480768471956 +69 0.140148207545 0.479296296835 +93 0.140148207545 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +94 0.140342026949 0.480768471956 +95 0.140148207545 0.482240706682 +71 0.140148207545 0.482240706682 +70 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +97 0.139579966664 0.483612507582 +72 0.139579966664 0.483612507582 +71 0.140148207545 0.482240706682 +95 0.140148207545 0.482240706682 +SURF 0x10 +mat 9 +refs 4 +96 0.138676047325 0.484790533781 +73 0.138676047325 0.484790533781 +72 0.139579966664 0.483612507582 +97 0.139579966664 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +74 0.137498006225 0.485694468021 +96 0.138676047325 0.484790533781 +120 0.147552967072 0.49366748333 +SURF 0x10 +mat 9 +refs 4 +98 0.143774926662 0.496566444635 +99 0.139375329018 0.498388826847 +75 0.136126160622 0.486262708902 +74 0.137498006225 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +99 0.139375329018 0.498388826847 +100 0.1346539855 0.499010413885 +76 0.1346539855 0.486456543207 +75 0.136126160622 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +100 0.1346539855 0.499010413885 +101 0.129932641983 0.498388797045 +77 0.133181810379 0.486262708902 +76 0.1346539855 0.486456543207 +SURF 0x10 +mat 9 +refs 4 +101 0.129932641983 0.498388797045 +102 0.125533029437 0.496566444635 +78 0.131809994578 0.485694468021 +77 0.133181810379 0.486262708902 +SURF 0x10 +mat 9 +refs 4 +102 0.125533029437 0.496566444635 +103 0.12175501883 0.493667453527 +79 0.130631938577 0.484790533781 +78 0.131809994578 0.485694468021 +SURF 0x10 +mat 9 +refs 4 +103 0.12175501883 0.493667453527 +104 0.118856042624 0.489889442921 +80 0.129728004336 0.483612507582 +79 0.130631938577 0.484790533781 +SURF 0x10 +mat 9 +refs 4 +104 0.118856042624 0.489889442921 +105 0.117033675313 0.485489815474 +81 0.129159763455 0.482240647078 +80 0.129728004336 0.483612507582 +SURF 0x10 +mat 9 +refs 4 +105 0.117033675313 0.485489815474 +106 0.116412103176 0.480768471956 +82 0.128965958953 0.480768471956 +81 0.129159763455 0.482240647078 +SURF 0x10 +mat 9 +refs 4 +106 0.116412103176 0.480768471956 +107 0.117033675313 0.476047158241 +83 0.129159763455 0.479296296835 +82 0.128965958953 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +107 0.117033675313 0.476047158241 +108 0.118856057525 0.471647530794 +84 0.129728004336 0.477924466133 +83 0.129159763455 0.479296296835 +SURF 0x10 +mat 9 +refs 4 +108 0.118856057525 0.471647530794 +109 0.12175501883 0.467869520187 +85 0.130631968379 0.476746439934 +84 0.129728004336 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +86 0.131809994578 0.475842505693 +85 0.130631968379 0.476746439934 +109 0.12175501883 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +110 0.125533074141 0.464970588684 +111 0.129932656884 0.463148206472 +87 0.133181810379 0.475274294615 +86 0.131809994578 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +111 0.129932656884 0.463148206472 +112 0.1346539855 0.462526619434 +88 0.1346539855 0.47508046031 +87 0.133181810379 0.475274294615 +SURF 0x10 +mat 9 +refs 4 +112 0.1346539855 0.462526619434 +113 0.13937535882 0.463148206472 +89 0.136126160622 0.475274294615 +88 0.1346539855 0.47508046031 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +90 0.137498021126 0.475842505693 +89 0.136126160622 0.475274294615 +113 0.13937535882 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +114 0.143774926662 0.464970588684 +115 0.147552967072 0.467869520187 +91 0.138676047325 0.476746439934 +90 0.137498021126 0.475842505693 +SURF 0x10 +mat 9 +refs 4 +115 0.147552967072 0.467869520187 +116 0.150451913476 0.471647560596 +92 0.139579966664 0.477924466133 +91 0.138676047325 0.476746439934 +SURF 0x10 +mat 9 +refs 4 +116 0.150451913476 0.471647560596 +117 0.152274280787 0.476047158241 +93 0.140148207545 0.479296296835 +92 0.139579966664 0.477924466133 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +94 0.140342026949 0.480768471956 +93 0.140148207545 0.479296296835 +117 0.152274280787 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +118 0.152895867825 0.480768471956 +119 0.152274280787 0.485489845276 +95 0.140148207545 0.482240706682 +94 0.140342026949 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +121 0.150451913476 0.489889442921 +97 0.139579966664 0.483612507582 +95 0.140148207545 0.482240706682 +119 0.152274280787 0.485489845276 +SURF 0x10 +mat 9 +refs 4 +120 0.147552967072 0.49366748333 +96 0.138676047325 0.484790533781 +97 0.139579966664 0.483612507582 +121 0.150451913476 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +98 0.143774926662 0.496566444635 +120 0.147552967072 0.49366748333 +145 0.154338926077 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +122 0.148573309183 0.504877567291 +123 0.141859173775 0.507658600807 +99 0.139375329018 0.498388826847 +98 0.143774926662 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +123 0.141859173775 0.507658600807 +124 0.1346539855 0.508607268333 +100 0.1346539855 0.499010413885 +99 0.139375329018 0.498388826847 +SURF 0x10 +mat 9 +refs 4 +124 0.1346539855 0.508607268333 +125 0.127448782325 0.507658600807 +101 0.129932641983 0.498388797045 +100 0.1346539855 0.499010413885 +SURF 0x10 +mat 9 +refs 4 +125 0.127448782325 0.507658600807 +126 0.120734617114 0.504877567291 +102 0.125533029437 0.496566444635 +101 0.129932641983 0.498388797045 +SURF 0x10 +mat 9 +refs 4 +126 0.120734617114 0.504877567291 +127 0.114969015121 0.500453472137 +103 0.12175501883 0.493667453527 +102 0.125533029437 0.496566444635 +SURF 0x10 +mat 9 +refs 4 +127 0.114969015121 0.500453472137 +128 0.11054494977 0.494687855244 +104 0.118856042624 0.489889442921 +103 0.12175501883 0.493667453527 +SURF 0x10 +mat 9 +refs 4 +128 0.11054494977 0.494687855244 +129 0.107763856649 0.487973690033 +105 0.117033675313 0.485489815474 +104 0.118856042624 0.489889442921 +SURF 0x10 +mat 9 +refs 4 +129 0.107763856649 0.487973690033 +130 0.106815263629 0.480768471956 +106 0.116412103176 0.480768471956 +105 0.117033675313 0.485489815474 +SURF 0x10 +mat 9 +refs 4 +130 0.106815263629 0.480768471956 +131 0.107763856649 0.473563283682 +107 0.117033675313 0.476047158241 +106 0.116412103176 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +131 0.107763856649 0.473563283682 +132 0.11054494977 0.466849118471 +108 0.118856057525 0.471647530794 +107 0.117033675313 0.476047158241 +SURF 0x10 +mat 9 +refs 4 +132 0.11054494977 0.466849118471 +133 0.114969074726 0.461083561182 +109 0.12175501883 0.467869520187 +108 0.118856057525 0.471647530794 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +110 0.125533074141 0.464970588684 +109 0.12175501883 0.467869520187 +133 0.114969074726 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +134 0.120734632015 0.456659436226 +135 0.127448827028 0.453878372908 +111 0.129932656884 0.463148206472 +110 0.125533074141 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +135 0.127448827028 0.453878372908 +136 0.134654000401 0.452929794788 +112 0.1346539855 0.462526619434 +111 0.129932656884 0.463148206472 +SURF 0x10 +mat 9 +refs 4 +136 0.134654000401 0.452929794788 +137 0.141859203577 0.453878372908 +113 0.13937535882 0.463148206472 +112 0.1346539855 0.462526619434 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +114 0.143774926662 0.464970588684 +113 0.13937535882 0.463148206472 +137 0.141859203577 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +138 0.148573338985 0.456659466028 +139 0.154338926077 0.461083561182 +115 0.147552967072 0.467869520187 +114 0.143774926662 0.464970588684 +SURF 0x10 +mat 9 +refs 4 +139 0.154338926077 0.461083561182 +140 0.158763021231 0.466849148273 +116 0.150451913476 0.471647560596 +115 0.147552967072 0.467869520187 +SURF 0x10 +mat 9 +refs 4 +140 0.158763021231 0.466849148273 +141 0.161544129252 0.473563283682 +117 0.152274280787 0.476047158241 +116 0.150451913476 0.471647560596 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +118 0.152895867825 0.480768471956 +117 0.152274280787 0.476047158241 +141 0.161544129252 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +142 0.162492707372 0.480768471956 +143 0.161544129252 0.487973719835 +119 0.152274280787 0.485489845276 +118 0.152895867825 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +144 0.158763021231 0.494687855244 +121 0.150451913476 0.489889442921 +119 0.152274280787 0.485489845276 +143 0.161544129252 0.487973719835 +SURF 0x10 +mat 9 +refs 4 +145 0.154338926077 0.500453472137 +120 0.147552967072 0.49366748333 +121 0.150451913476 0.489889442921 +144 0.158763021231 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +122 0.148573309183 0.504877567291 +145 0.154338926077 0.500453472137 +168 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +146 0.15329349041 0.513053119183 +147 0.144302502275 0.516777276993 +123 0.141859173775 0.507658600807 +122 0.148573309183 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +147 0.144302502275 0.516777276993 +148 0.1346539855 0.518047630787 +124 0.1346539855 0.508607268333 +123 0.141859173775 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +148 0.1346539855 0.518047630787 +149 0.125005453825 0.516777276993 +125 0.127448782325 0.507658600807 +124 0.1346539855 0.508607268333 +SURF 0x10 +mat 9 +refs 4 +149 0.125005453825 0.516777276993 +150 0.116014450788 0.513053119183 +126 0.120734617114 0.504877567291 +125 0.127448782325 0.507658600807 +SURF 0x10 +mat 9 +refs 4 +150 0.116014450788 0.513053119183 +151 0.108293712139 0.50712877512 +127 0.114969015121 0.500453472137 +126 0.120734617114 0.504877567291 +SURF 0x10 +mat 9 +refs 4 +151 0.108293712139 0.50712877512 +152 0.10236941278 0.499408006668 +128 0.11054494977 0.494687855244 +127 0.114969015121 0.500453472137 +SURF 0x10 +mat 9 +refs 4 +152 0.10236941278 0.499408006668 +153 0.0986452102661 0.490417033434 +129 0.107763856649 0.487973690033 +128 0.11054494977 0.494687855244 +SURF 0x10 +mat 9 +refs 4 +153 0.0986452102661 0.490417033434 +154 0.0973749309778 0.480768471956 +130 0.106815263629 0.480768471956 +129 0.107763856649 0.487973690033 +SURF 0x10 +mat 9 +refs 4 +154 0.0973749309778 0.480768471956 +155 0.0986452102661 0.471119970083 +131 0.107763856649 0.473563283682 +130 0.106815263629 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +155 0.0986452102661 0.471119970083 +156 0.10236941278 0.462128996849 +132 0.11054494977 0.466849118471 +131 0.107763856649 0.473563283682 +SURF 0x10 +mat 9 +refs 4 +156 0.10236941278 0.462128996849 +157 0.108293741941 0.454408228397 +133 0.114969074726 0.461083561182 +132 0.11054494977 0.466849118471 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +134 0.120734632015 0.456659436226 +133 0.114969074726 0.461083561182 +157 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +158 0.116014495492 0.448483914137 +159 0.125005483627 0.444759726524 +135 0.127448827028 0.453878372908 +134 0.120734632015 0.456659436226 +SURF 0x10 +mat 9 +refs 4 +159 0.125005483627 0.444759726524 +160 0.134654000401 0.443489462137 +136 0.134654000401 0.452929794788 +135 0.127448827028 0.453878372908 +SURF 0x10 +mat 9 +refs 4 +160 0.134654000401 0.443489462137 +161 0.144302561879 0.444759726524 +137 0.141859203577 0.453878372908 +136 0.134654000401 0.452929794788 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +138 0.148573338985 0.456659466028 +137 0.141859203577 0.453878372908 +161 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +162 0.153293505311 0.448483914137 +163 0.161014273763 0.454408228397 +139 0.154338926077 0.461083561182 +138 0.148573338985 0.456659466028 +SURF 0x10 +mat 9 +refs 4 +163 0.161014273763 0.454408228397 +164 0.166938588023 0.462128996849 +140 0.158763021231 0.466849148273 +139 0.154338926077 0.461083561182 +SURF 0x10 +mat 9 +refs 4 +164 0.166938588023 0.462128996849 +165 0.170662805438 0.471119970083 +141 0.161544129252 0.473563283682 +140 0.158763021231 0.466849148273 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +142 0.162492707372 0.480768471956 +141 0.161544129252 0.473563283682 +165 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +166 0.171933025122 0.480768531561 +167 0.170662805438 0.490417033434 +143 0.161544129252 0.487973719835 +142 0.162492707372 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +169 0.166938588023 0.499408066273 +144 0.158763021231 0.494687855244 +143 0.161544129252 0.487973719835 +167 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +168 0.16101424396 0.50712877512 +145 0.154338926077 0.500453472137 +144 0.158763021231 0.494687855244 +169 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +146 0.15329349041 0.513053119183 +168 0.16101424396 0.50712877512 +192 0.16101424396 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +170 0.15329349041 0.513053119183 +171 0.144302502275 0.516777276993 +147 0.144302502275 0.516777276993 +146 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +171 0.144302502275 0.516777276993 +172 0.1346539855 0.518047630787 +148 0.1346539855 0.518047630787 +147 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +172 0.1346539855 0.518047630787 +173 0.125005453825 0.516777276993 +149 0.125005453825 0.516777276993 +148 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +173 0.125005453825 0.516777276993 +174 0.116014450788 0.513053119183 +150 0.116014450788 0.513053119183 +149 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +174 0.116014450788 0.513053119183 +175 0.108293712139 0.50712877512 +151 0.108293712139 0.50712877512 +150 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +175 0.108293712139 0.50712877512 +176 0.10236941278 0.499408006668 +152 0.10236941278 0.499408006668 +151 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +176 0.10236941278 0.499408006668 +177 0.0986452102661 0.490417033434 +153 0.0986452102661 0.490417033434 +152 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +177 0.0986452102661 0.490417033434 +178 0.0973749309778 0.480768471956 +154 0.0973749309778 0.480768471956 +153 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +178 0.0973749309778 0.480768471956 +179 0.0986452102661 0.471119970083 +155 0.0986452102661 0.471119970083 +154 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +179 0.0986452102661 0.471119970083 +180 0.10236941278 0.462128996849 +156 0.10236941278 0.462128996849 +155 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +180 0.10236941278 0.462128996849 +181 0.108293741941 0.454408228397 +157 0.108293741941 0.454408228397 +156 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +158 0.116014495492 0.448483914137 +157 0.108293741941 0.454408228397 +181 0.108293741941 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +182 0.116014495492 0.448483914137 +183 0.125005483627 0.444759726524 +159 0.125005483627 0.444759726524 +158 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +183 0.125005483627 0.444759726524 +184 0.134654000401 0.443489462137 +160 0.134654000401 0.443489462137 +159 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +184 0.134654000401 0.443489462137 +185 0.144302561879 0.444759726524 +161 0.144302561879 0.444759726524 +160 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +162 0.153293505311 0.448483914137 +161 0.144302561879 0.444759726524 +185 0.144302561879 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +186 0.153293505311 0.448483914137 +187 0.161014273763 0.454408228397 +163 0.161014273763 0.454408228397 +162 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +187 0.161014273763 0.454408228397 +188 0.166938588023 0.462128996849 +164 0.166938588023 0.462128996849 +163 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +188 0.166938588023 0.462128996849 +189 0.170662805438 0.471119970083 +165 0.170662805438 0.471119970083 +164 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +166 0.171933025122 0.480768531561 +165 0.170662805438 0.471119970083 +189 0.170662805438 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +190 0.171933025122 0.480768531561 +191 0.170662805438 0.490417033434 +167 0.170662805438 0.490417033434 +166 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +193 0.166938588023 0.499408066273 +169 0.166938588023 0.499408066273 +167 0.170662805438 0.490417033434 +191 0.170662805438 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +192 0.16101424396 0.50712877512 +168 0.16101424396 0.50712877512 +169 0.166938588023 0.499408066273 +193 0.166938588023 0.499408066273 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +170 0.15329349041 0.513053119183 +192 0.16101424396 0.50712877512 +216 0.163465932012 0.509580433369 +SURF 0x10 +mat 9 +refs 4 +194 0.155027061701 0.516055822372 +195 0.145199865103 0.520126402378 +171 0.144302502275 0.516777276993 +170 0.15329349041 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +195 0.145199865103 0.520126402378 +196 0.134653955698 0.521514713764 +172 0.1346539855 0.518047630787 +171 0.144302502275 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +196 0.134653955698 0.521514713764 +197 0.124108076096 0.520126402378 +173 0.125005453825 0.516777276993 +172 0.1346539855 0.518047630787 +SURF 0x10 +mat 9 +refs 4 +197 0.124108076096 0.520126402378 +198 0.114280834794 0.516055822372 +174 0.116014450788 0.513053119183 +173 0.125005453825 0.516777276993 +SURF 0x10 +mat 9 +refs 4 +198 0.114280834794 0.516055822372 +199 0.105842024088 0.509580433369 +175 0.108293712139 0.50712877512 +174 0.116014450788 0.513053119183 +SURF 0x10 +mat 9 +refs 4 +199 0.105842024088 0.509580433369 +200 0.09936670959 0.501141607761 +176 0.10236941278 0.499408006668 +175 0.108293712139 0.50712877512 +SURF 0x10 +mat 9 +refs 4 +200 0.09936670959 0.501141607761 +201 0.0952961295843 0.491314411163 +177 0.0986452102661 0.490417033434 +176 0.10236941278 0.499408006668 +SURF 0x10 +mat 9 +refs 4 +201 0.0952961295843 0.491314411163 +202 0.0939077436924 0.480768471956 +178 0.0973749309778 0.480768471956 +177 0.0986452102661 0.490417033434 +SURF 0x10 +mat 9 +refs 4 +202 0.0939077436924 0.480768471956 +203 0.0952961593866 0.470222562551 +179 0.0986452102661 0.471119970083 +178 0.0973749309778 0.480768471956 +SURF 0x10 +mat 9 +refs 4 +203 0.0952961593866 0.470222562551 +204 0.09936670959 0.460395395756 +180 0.10236941278 0.462128996849 +179 0.0986452102661 0.471119970083 +SURF 0x10 +mat 9 +refs 4 +204 0.09936670959 0.460395395756 +205 0.10584205389 0.451956540346 +181 0.108293741941 0.454408228397 +180 0.10236941278 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +182 0.116014495492 0.448483914137 +181 0.108293741941 0.454408228397 +205 0.10584205389 0.451956540346 +SURF 0x10 +mat 9 +refs 4 +206 0.114280894399 0.445481210947 +207 0.124108105898 0.441410690546 +183 0.125005483627 0.444759726524 +182 0.116014495492 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +207 0.124108105898 0.441410690546 +208 0.134654000401 0.440022289753 +184 0.134654000401 0.443489462137 +183 0.125005483627 0.444759726524 +SURF 0x10 +mat 9 +refs 4 +208 0.134654000401 0.440022289753 +209 0.145199909806 0.441410690546 +185 0.144302561879 0.444759726524 +184 0.134654000401 0.443489462137 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +186 0.153293505311 0.448483914137 +185 0.144302561879 0.444759726524 +209 0.145199909806 0.441410690546 +SURF 0x10 +mat 9 +refs 4 +210 0.155027121305 0.445481210947 +211 0.163465932012 0.451956599951 +187 0.161014273763 0.454408228397 +186 0.153293505311 0.448483914137 +SURF 0x10 +mat 9 +refs 4 +211 0.163465932012 0.451956599951 +212 0.169941276312 0.460395395756 +188 0.166938588023 0.462128996849 +187 0.161014273763 0.454408228397 +SURF 0x10 +mat 9 +refs 4 +212 0.169941276312 0.460395395756 +213 0.174011841416 0.470222622156 +189 0.170662805438 0.471119970083 +188 0.166938588023 0.462128996849 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +190 0.171933025122 0.480768531561 +189 0.170662805438 0.471119970083 +213 0.174011841416 0.470222622156 +SURF 0x10 +mat 9 +refs 4 +214 0.175400227308 0.480768531561 +215 0.174011841416 0.491314411163 +191 0.170662805438 0.490417033434 +190 0.171933025122 0.480768531561 +SURF 0x10 +mat 9 +refs 4 +217 0.169941276312 0.501141607761 +193 0.166938588023 0.499408066273 +191 0.170662805438 0.490417033434 +215 0.174011841416 0.491314411163 +SURF 0x10 +mat 9 +refs 4 +216 0.163465932012 0.509580433369 +192 0.16101424396 0.50712877512 +193 0.166938588023 0.499408066273 +217 0.169941276312 0.501141607761 +kids 0 +OBJECT poly +name "spring.R" +data 12 +Cylinder.011 +texture "jeep-2.png" +texrep 1 1 +crease 30 +numvert 94 +0.020054 0.416423 -0.448343 +0.011832 0.402183 -0.448343 +0.011832 0.38574 -0.448343 +0.020054 0.3715 -0.448343 +0.034293 0.363279 -0.448343 +0.050737 0.363279 -0.448343 +0.064977 0.3715 -0.448343 +0.073199 0.38574 -0.448343 +0.073199 0.402183 -0.448343 +0.064977 0.416423 -0.448343 +0.050737 0.424645 -0.448343 +0.034294 0.424645 -0.448343 +0.020054 0.416424 -0.330841 +0.011832 0.402183 -0.330841 +0.011832 0.38574 -0.330841 +0.020054 0.3715 -0.330841 +0.034293 0.363279 -0.330841 +0.050737 0.363279 -0.330841 +0.064977 0.3715 -0.330841 +0.073199 0.38574 -0.330841 +0.073199 0.402183 -0.330841 +0.064977 0.416423 -0.330841 +0.050737 0.424645 -0.330841 +0.034294 0.424645 -0.330841 +0.042515 0.393962 -0.448343 +0.042515 0.393962 -0.330841 +0.208991 0.362477 -0.330841 +0.208982 0.348236 -0.330841 +0.208966 0.340015 -0.330841 +0.208991 0.362477 -0.448343 +0.208982 0.348236 -0.448343 +0.208966 0.340015 -0.448343 +0.2408 0.332853 -0.452908 +0.240817 0.341714 -0.452908 +0.240827 0.35706 -0.452908 +0.2408 0.332853 -0.326277 +0.240817 0.341714 -0.326277 +0.240827 0.35706 -0.326276 +0.44541 0.340876 -0.326277 +0.4454 0.325529 -0.326277 +0.445382 0.316669 -0.326277 +0.44541 0.340876 -0.452908 +0.4454 0.32553 -0.452908 +0.445382 0.316669 -0.452908 +0.551066 0.336495 -0.326277 +0.551076 0.321148 -0.326277 +0.551094 0.312288 -0.326277 +0.551066 0.336495 -0.452908 +0.551076 0.321149 -0.452908 +0.551094 0.312288 -0.452908 +0.656748 0.316669 -0.452908 +0.656731 0.32553 -0.452908 +0.656721 0.340876 -0.452908 +0.656748 0.316669 -0.326277 +0.656731 0.325529 -0.326277 +0.656721 0.340876 -0.326277 +0.885878 0.371795 -0.326277 +0.885888 0.356448 -0.326277 +0.885905 0.347588 -0.326277 +0.885878 0.371795 -0.452908 +0.885888 0.356448 -0.452908 +0.885905 0.347588 -0.452908 +0.91597 0.351213 -0.448344 +0.915954 0.359435 -0.448344 +0.915945 0.373675 -0.448344 +0.91597 0.351213 -0.330842 +0.915954 0.359434 -0.330842 +0.915945 0.373675 -0.330842 +1.068348 0.393463 -0.327549 +1.068348 0.393463 -0.451637 +1.07336 0.412168 -0.327549 +1.063336 0.412168 -0.327549 +1.054655 0.407156 -0.327549 +1.049643 0.398475 -0.327549 +1.049643 0.38845 -0.327549 +1.054655 0.379769 -0.327549 +1.063336 0.374757 -0.327549 +1.07336 0.374757 -0.327549 +1.082042 0.379769 -0.327549 +1.087054 0.38845 -0.327549 +1.087054 0.398475 -0.327549 +1.082042 0.407156 -0.327549 +1.07336 0.412168 -0.451637 +1.063336 0.412168 -0.451637 +1.054655 0.407156 -0.451637 +1.049643 0.398475 -0.451637 +1.049643 0.38845 -0.451637 +1.054655 0.379769 -0.451637 +1.063336 0.374757 -0.451637 +1.07336 0.374757 -0.451637 +1.082042 0.379769 -0.451637 +1.087054 0.38845 -0.451637 +1.087054 0.398475 -0.451637 +1.082042 0.407156 -0.451637 +numsurf 116 +SURF 0x00 +mat 1 +refs 3 +1 0.792363405228 0.429307699203 +0 0.798578739166 0.432799488306 +24 0.788955271244 0.442651689053 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +12 0.700365126133 0.432795137167 +13 0.706583142281 0.429307997227 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +2 0.785234868526 0.429391413927 +1 0.792363405228 0.429307699203 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +13 0.706583142281 0.429307997227 +14 0.713711559772 0.429397195578 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +3 0.7791031003 0.433028250933 +2 0.785234868526 0.429391413927 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +14 0.713711559772 0.429397195578 +15 0.719840526581 0.433038800955 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +4 0.775611400604 0.439243614674 +3 0.7791031003 0.433028250933 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +15 0.719840526581 0.433038800955 +16 0.723327636719 0.439256519079 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +5 0.775695085526 0.446372121572 +4 0.775611400604 0.439243614674 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +16 0.723327636719 0.439256519079 +17 0.723238527775 0.446385264397 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +6 0.779331922531 0.452503949404 +5 0.775695085526 0.446372121572 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +17 0.723238527775 0.446385264397 +18 0.719597041607 0.452513992786 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +7 0.785547196865 0.455995649099 +6 0.779331922531 0.452503949404 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +18 0.719597041607 0.452513992786 +19 0.713379085064 0.456001341343 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +8 0.792675793171 0.455911934376 +7 0.785547196865 0.455995649099 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +19 0.713379085064 0.456001341343 +20 0.706250607967 0.455912023783 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +9 0.798807442188 0.45227509737 +8 0.792675793171 0.455911934376 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +20 0.706250607967 0.455912023783 +21 0.700121641159 0.452270448208 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +10 0.802299201488 0.446059644222 +9 0.798807442188 0.45227509737 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +21 0.700121641159 0.452270448208 +22 0.696634590626 0.446052521467 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +11 0.802215516567 0.438930928707 +10 0.802299201488 0.446059644222 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +22 0.696634590626 0.446052521467 +23 0.69672369957 0.438923984766 +SURF 0x00 +mat 1 +refs 3 +24 0.788955271244 0.442651689053 +0 0.798578739166 0.432799488306 +11 0.802215516567 0.438930928707 +SURF 0x00 +mat 1 +refs 3 +25 0.70998108387 0.442654669285 +23 0.69672369957 0.438923984766 +12 0.700365126133 0.432795137167 +SURF 0x00 +mat 1 +refs 4 +0 0.356518357992 0.45518040657 +1 0.362717658281 0.455161392689 +13 0.362873911858 0.506105363369 +12 0.356674641371 0.506124317646 +SURF 0x00 +mat 1 +refs 4 +1 0.362717658281 0.455161392689 +2 0.369846493006 0.455139547586 +14 0.370002776384 0.506083488464 +13 0.362873911858 0.506105363369 +SURF 0x00 +mat 1 +refs 4 +2 0.369846493006 0.455139547586 +3 0.375994771719 0.455120652914 +15 0.376151025295 0.506064593792 +14 0.370002776384 0.506083488464 +SURF 0x00 +mat 1 +refs 4 +3 0.238881096244 0.462342828512 +4 0.238899499178 0.456256061792 +16 0.289843529463 0.45641246438 +15 0.289825052023 0.4624992311 +SURF 0x00 +mat 1 +refs 4 +4 0.238899499178 0.456256061792 +5 0.238921374083 0.449129104614 +17 0.289865374565 0.449285387993 +16 0.289843529463 0.45641246438 +SURF 0x00 +mat 1 +refs 4 +7 0.362664222717 0.816554665565 +8 0.369793057442 0.816532790661 +20 0.36994934082 0.867476701736 +19 0.362820506096 0.867498576641 +SURF 0x00 +mat 1 +refs 4 +8 0.369793057442 0.816532790661 +9 0.375994741917 0.816514909267 +21 0.376151025295 0.867458760738 +20 0.36994934082 0.867476701736 +SURF 0x00 +mat 1 +refs 4 +9 0.356521487236 0.619897425175 +10 0.362627893686 0.619878709316 +22 0.362784296274 0.670822620392 +21 0.356677889824 0.670841395855 +SURF 0x00 +mat 1 +refs 4 +10 0.362627893686 0.619878709316 +11 0.369755893946 0.619856894016 +23 0.369911968708 0.670800864697 +22 0.362784296274 0.670822620392 +SURF 0x00 +mat 1 +refs 4 +11 0.369755893946 0.619856894016 +0 0.375994920731 0.61983782053 +12 0.376151025295 0.670781612396 +23 0.369911968708 0.670800864697 +SURF 0x00 +mat 1 +refs 4 +19 0.7992400527 0.00195102090947 +26 0.799420058727 0.0606270805001 +29 0.748476147652 0.0607833713293 +7 0.748296201229 0.0021069010254 +SURF 0x00 +mat 1 +refs 4 +5 0.238921374083 0.449129104614 +31 0.239131137729 0.380788683891 +28 0.290074974298 0.380945175886 +17 0.289865374565 0.449285387993 +SURF 0x00 +mat 1 +refs 4 +18 0.719597041607 0.452513992786 +27 0.728901982307 0.515070199966 +26 0.72272837162 0.514997005463 +19 0.713379085064 0.456001341343 +SURF 0x00 +mat 1 +refs 4 +7 0.785547196865 0.455995649099 +29 0.776153028011 0.514984488487 +30 0.769979476929 0.515052855015 +6 0.779331922531 0.452503949404 +SURF 0x00 +mat 1 +refs 4 +17 0.723238527775 0.446385264397 +28 0.73246628046 0.515107750893 +27 0.728901982307 0.515070199966 +18 0.719597041607 0.452513992786 +SURF 0x00 +mat 1 +refs 4 +6 0.779331922531 0.452503949404 +30 0.769979476929 0.515052855015 +31 0.76641523838 0.515087544918 +5 0.775695085526 0.446372121572 +SURF 0x00 +mat 1 +refs 4 +30 0.769979476929 0.515052855015 +33 0.767308592796 0.528883993626 +32 0.763467252254 0.528921425343 +31 0.76641523838 0.515087544918 +SURF 0x00 +mat 1 +refs 4 +28 0.73246628046 0.515107750893 +35 0.735403716564 0.528943657875 +36 0.731562376022 0.528903245926 +27 0.728901982307 0.515070199966 +SURF 0x00 +mat 1 +refs 4 +29 0.776153028011 0.514984488487 +34 0.773961782455 0.528810083866 +33 0.767308592796 0.528883993626 +30 0.769979476929 0.515052855015 +SURF 0x00 +mat 1 +refs 4 +27 0.728901982307 0.515070199966 +36 0.731562376022 0.528903245926 +37 0.724909186363 0.528824329376 +26 0.72272837162 0.514997005463 +SURF 0x00 +mat 1 +refs 4 +31 0.239131137729 0.380788683891 +32 0.237194225192 0.367059230804 +35 0.292096167803 0.367227524519 +28 0.290074974298 0.380945175886 +SURF 0x00 +mat 1 +refs 4 +26 0.799420058727 0.0606270805001 +37 0.801441133022 0.0743774026632 +34 0.746539235115 0.0745458975434 +29 0.748476147652 0.0607833713293 +SURF 0x00 +mat 1 +refs 4 +37 0.801441133022 0.0743774026632 +38 0.801712989807 0.16293014586 +41 0.746810913086 0.163098528981 +34 0.746539235115 0.0745458975434 +SURF 0x00 +mat 1 +refs 4 +32 0.237194225192 0.367059230804 +43 0.237465664744 0.278554350138 +40 0.29236766696 0.278722643852 +35 0.292096167803 0.367227524519 +SURF 0x00 +mat 1 +refs 4 +36 0.731562376022 0.528903245926 +39 0.737469732761 0.617682874203 +38 0.730816543102 0.617603778839 +37 0.724909186363 0.528824329376 +SURF 0x00 +mat 1 +refs 4 +34 0.773961782455 0.528810083866 +41 0.767987072468 0.617585062981 +42 0.761333942413 0.61765897274 +33 0.767308592796 0.528883993626 +SURF 0x00 +mat 1 +refs 4 +35 0.735403716564 0.528943657875 +40 0.741310954094 0.617723405361 +39 0.737469732761 0.617682874203 +36 0.731562376022 0.528903245926 +SURF 0x00 +mat 1 +refs 4 +33 0.767308592796 0.528883993626 +42 0.761333942413 0.61765897274 +43 0.757492661476 0.617696523666 +32 0.763467252254 0.528921425343 +SURF 0x00 +mat 1 +refs 4 +42 0.761333942413 0.61765897274 +48 0.759972631931 0.663495004177 +49 0.756131410599 0.663547813892 +43 0.757492661476 0.617696523666 +SURF 0x00 +mat 1 +refs 4 +40 0.741310954094 0.617723405361 +46 0.74263715744 0.663575589657 +45 0.738796174526 0.663519978523 +39 0.737469732761 0.617682874203 +SURF 0x00 +mat 1 +refs 4 +41 0.767987072468 0.617585062981 +47 0.766625761986 0.663412511349 +48 0.759972631931 0.663495004177 +42 0.761333942413 0.61765897274 +SURF 0x00 +mat 1 +refs 4 +39 0.737469732761 0.617682874203 +45 0.738796174526 0.663519978523 +44 0.732143163681 0.6634324193 +38 0.730816543102 0.617603778839 +SURF 0x00 +mat 1 +refs 4 +43 0.237465664744 0.278554350138 +49 0.237605988979 0.232780992985 +46 0.292507916689 0.232949584723 +40 0.29236766696 0.278722643852 +SURF 0x00 +mat 1 +refs 4 +38 0.801712989807 0.16293014586 +44 0.801853179932 0.208695024252 +47 0.74695110321 0.208863422275 +41 0.746810913086 0.163098528981 +SURF 0x00 +mat 1 +refs 4 +55 0.801993787289 0.254529893398 +52 0.747091710567 0.254698187113 +47 0.74695110321 0.208863422275 +44 0.801853179932 0.208695024252 +SURF 0x00 +mat 1 +refs 4 +50 0.237746581435 0.18694126606 +53 0.292648524046 0.187109664083 +46 0.292507916689 0.232949584723 +49 0.237605988979 0.232780992985 +SURF 0x00 +mat 1 +refs 4 +54 0.736324310303 0.709300160408 +55 0.729671180248 0.709212720394 +44 0.732143163681 0.6634324193 +45 0.738796174526 0.663519978523 +SURF 0x00 +mat 1 +refs 4 +52 0.769062817097 0.709194719791 +51 0.762409865856 0.70927721262 +48 0.759972631931 0.663495004177 +47 0.766625761986 0.663412511349 +SURF 0x00 +mat 1 +refs 4 +53 0.740165352821 0.709355890751 +54 0.736324310303 0.709300160408 +45 0.738796174526 0.663519978523 +46 0.74263715744 0.663575589657 +SURF 0x00 +mat 1 +refs 4 +51 0.762409865856 0.70927721262 +50 0.758568704128 0.709329843521 +49 0.756131410599 0.663547813892 +48 0.759972631931 0.663495004177 +SURF 0x00 +mat 1 +refs 4 +60 0.776980578899 0.808466017246 +61 0.773139476776 0.808518528938 +50 0.758568704128 0.709329843521 +51 0.762409865856 0.70927721262 +SURF 0x00 +mat 1 +refs 4 +58 0.725519239902 0.80853331089 +57 0.721678197384 0.80847799778 +54 0.736324310303 0.709300160408 +53 0.740165352821 0.709355890751 +SURF 0x00 +mat 1 +refs 4 +59 0.783633649349 0.808383405209 +60 0.776980578899 0.808466017246 +51 0.762409865856 0.70927721262 +52 0.769062817097 0.709194719791 +SURF 0x00 +mat 1 +refs 4 +57 0.721678197384 0.80847799778 +56 0.715025126934 0.808390438557 +55 0.729671180248 0.709212720394 +54 0.736324310303 0.709300160408 +SURF 0x00 +mat 1 +refs 4 +61 0.238052263856 0.0872960239649 +58 0.292954266071 0.0874643102288 +53 0.292648524046 0.187109664083 +50 0.237746581435 0.18694126606 +SURF 0x00 +mat 1 +refs 4 +56 0.802299201488 0.354114979506 +59 0.747397243977 0.354283571243 +52 0.747091710567 0.254698187113 +55 0.801993787289 0.254529893398 +SURF 0x00 +mat 1 +refs 4 +67 0.800360321999 0.367169827223 +64 0.749416351318 0.367326021194 +59 0.747397243977 0.354283571243 +56 0.802299201488 0.354114979506 +SURF 0x00 +mat 1 +refs 4 +62 0.240071460605 0.0742334127426 +65 0.291015326977 0.0743892937899 +58 0.292954266071 0.0874643102288 +61 0.238052263856 0.0872960239649 +SURF 0x00 +mat 1 +refs 4 +66 0.720215439796 0.821499764919 +67 0.714042067528 0.821418702602 +56 0.715025126934 0.808390438557 +57 0.721678197384 0.80847799778 +SURF 0x00 +mat 1 +refs 4 +64 0.784606933594 0.821412622929 +63 0.778433442116 0.821489036083 +60 0.776980578899 0.808466017246 +59 0.783633649349 0.808383405209 +SURF 0x00 +mat 1 +refs 4 +65 0.723779559135 0.821551561356 +66 0.720215439796 0.821499764919 +57 0.721678197384 0.80847799778 +58 0.725519239902 0.80853331089 +SURF 0x00 +mat 1 +refs 4 +63 0.778433442116 0.821489036083 +62 0.774869263172 0.821538031101 +61 0.773139476776 0.808518528938 +60 0.776980578899 0.808466017246 +SURF 0x00 +mat 1 +refs 4 +87 0.787951588631 0.88151371479 +88 0.785822808743 0.885302841663 +62 0.774869263172 0.821538031101 +63 0.778433442116 0.821489036083 +SURF 0x00 +mat 1 +refs 4 +76 0.712777554989 0.885307967663 +75 0.710651814938 0.881517529488 +66 0.720215439796 0.821499764919 +65 0.723779559135 0.821551561356 +SURF 0x00 +mat 1 +refs 4 +86 0.791689574718 0.879296660423 +87 0.787951588631 0.88151371479 +63 0.778433442116 0.821489036083 +64 0.784606933594 0.821412622929 +SURF 0x00 +mat 1 +refs 4 +75 0.710651814938 0.881517529488 +74 0.706915438175 0.879297494888 +67 0.714042067528 0.821418702602 +66 0.720215439796 0.821499764919 +SURF 0x00 +mat 1 +refs 4 +88 0.238840416074 0.0101105403155 +76 0.292639702559 0.0102758267894 +65 0.291015326977 0.0743892937899 +62 0.240071460605 0.0742334127426 +SURF 0x00 +mat 1 +refs 4 +74 0.801966130733 0.425240367651 +86 0.74816685915 0.425405651331 +64 0.749416351318 0.367326021194 +67 0.800360321999 0.367169827223 +SURF 0x00 +mat 1 +refs 4 +82 0.893919348717 0.472085893154 +70 0.894084513187 0.525885164738 +81 0.890361845493 0.525896549225 +93 0.890196859837 0.472097307444 +SURF 0x00 +mat 1 +refs 4 +83 0.898265004158 0.472072482109 +71 0.898430049419 0.525871753693 +70 0.894084513187 0.525885164738 +82 0.893919348717 0.472085893154 +SURF 0x00 +mat 1 +refs 4 +84 0.902068555355 0.472060889006 +72 0.902233839035 0.525860071182 +71 0.898430049419 0.525871753693 +83 0.898265004158 0.472072482109 +SURF 0x00 +mat 1 +refs 4 +85 0.894542813301 0.823112905025 +73 0.894707858562 0.769313633442 +72 0.898487150669 0.769325256348 +84 0.898322105408 0.823124527931 +SURF 0x00 +mat 1 +refs 4 +86 0.890196859837 0.823099553585 +74 0.890361905098 0.769300282001 +73 0.894707858562 0.769313633442 +85 0.894542813301 0.823112905025 +SURF 0x00 +mat 1 +refs 4 +89 0.238853827119 0.00576605321839 +77 0.292653024197 0.0059309261851 +76 0.292639702559 0.0102758267894 +88 0.238840416074 0.0101105403155 +SURF 0x00 +mat 1 +refs 4 +90 0.238865584135 0.00195102090947 +78 0.292664885521 0.00211610086262 +77 0.292653024197 0.0059309261851 +89 0.238853827119 0.00576605321839 +SURF 0x00 +mat 1 +refs 4 +91 0.848258137703 0.649910449982 +79 0.848423182964 0.596111178398 +78 0.852169811726 0.596121966839 +90 0.852004826069 0.649921238422 +SURF 0x00 +mat 1 +refs 4 +92 0.843912184238 0.649897158146 +80 0.8440772295 0.596097826958 +79 0.848423182964 0.596111178398 +91 0.848258137703 0.649910449982 +SURF 0x00 +mat 1 +refs 4 +93 0.840131402016 0.649884819984 +81 0.840296447277 0.596085548401 +80 0.8440772295 0.596097826958 +92 0.843912184238 0.649897158146 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +81 0.698630452156 0.893241941929 +70 0.696504712105 0.889451026917 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +82 0.80209261179 0.889458119869 +93 0.799963951111 0.893247306347 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +70 0.696504712105 0.889451026917 +71 0.696559011936 0.885105192661 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +83 0.802041530609 0.885112285614 +82 0.80209261179 0.889458119869 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +71 0.696559011936 0.885105192661 +72 0.698778927326 0.881368815899 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +84 0.799824535847 0.881374299526 +83 0.802041530609 0.885112285614 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +72 0.698778927326 0.881368815899 +73 0.702569723129 0.879243254662 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +85 0.796035289764 0.879245519638 +84 0.799824535847 0.881374299526 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +73 0.702569723129 0.879243254662 +74 0.706915438175 0.879297494888 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +86 0.791689574718 0.879296660423 +85 0.796035289764 0.879245519638 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +74 0.706915438175 0.879297494888 +75 0.710651814938 0.881517529488 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +87 0.787951588631 0.88151371479 +86 0.791689574718 0.879296660423 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +75 0.710651814938 0.881517529488 +76 0.712777554989 0.885307967663 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +88 0.785822808743 0.885302841663 +87 0.787951588631 0.88151371479 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +76 0.712777554989 0.885307967663 +77 0.712723255157 0.889653921127 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +89 0.785873889923 0.889648675919 +88 0.785822808743 0.885302841663 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +77 0.712723255157 0.889653921127 +78 0.710503339767 0.893390417099 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +90 0.788091003895 0.893386781216 +89 0.785873889923 0.889648675919 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +78 0.710503339767 0.893390417099 +79 0.706712663174 0.895515978336 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +91 0.791880071163 0.895515441895 +90 0.788091003895 0.893386781216 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +79 0.706712663174 0.895515978336 +80 0.702366888523 0.895461797714 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +92 0.796225845814 0.895464301109 +91 0.791880071163 0.895515441895 +SURF 0x00 +mat 1 +refs 3 +68 0.704641163349 0.887379527092 +80 0.702366888523 0.895461797714 +81 0.698630452156 0.893241941929 +SURF 0x00 +mat 1 +refs 3 +69 0.793957710266 0.88738065958 +93 0.799963951111 0.893247306347 +92 0.796225845814 0.895464301109 +kids 0 +OBJECT poly +name "chassis.001" +data 9 +Plane.012 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 112 +0.981533 0.935652 0.765693 +0.963285 0.90034 0.765693 +0.487583 0.90034 0.765693 +0.487583 0.935652 0.765693 +0.981533 0.935652 0.569461 +0.963284 0.90034 0.569461 +0.487583 0.90034 0.520587 +0.487583 0.935652 0.520587 +0.428451 0.935652 0.51363 +0.428451 0.90034 0.51363 +0.428451 0.935652 0.758612 +0.428451 0.90034 0.758612 +0.376276 0.90034 0.734387 +0.376276 0.935652 0.734387 +0.376276 0.90034 0.506673 +0.376276 0.935652 0.506673 +0.349437 0.935652 0.501641 +0.349437 0.90034 0.501641 +0.349437 0.935652 0.714258 +0.349437 0.90034 0.714258 +0.320921 0.90034 0.68071 +0.320921 0.935652 0.68071 +0.320921 0.90034 0.496609 +0.320921 0.935652 0.496609 +0.300792 0.935652 0.493254 +0.300792 0.90034 0.493254 +0.300792 0.935652 0.650516 +0.300792 0.90034 0.650516 +0.28234 0.90034 0.595161 +0.28234 0.935652 0.595161 +0.277308 0.90034 0.489899 +0.277308 0.935652 0.489899 +1.154887 0.542225 0.569461 +1.18454 0.566132 0.569461 +1.154887 0.542225 0.765693 +1.18454 0.566132 0.765693 +1.34649 0.566132 0.765693 +1.346862 0.542225 0.765693 +1.34649 0.566132 0.569461 +1.346861 0.542225 0.569461 +1.387119 0.542225 0.569461 +1.386748 0.566132 0.569461 +1.387119 0.542225 0.753615 +1.386748 0.566132 0.753615 +1.409027 0.566132 0.7355 +1.409399 0.542225 0.7355 +1.409027 0.566132 0.569461 +1.409399 0.542225 0.569461 +1.427965 0.542225 0.569461 +1.427594 0.566132 0.569461 +1.427965 0.542225 0.713358 +1.427594 0.566132 0.713358 +1.451748 0.566132 0.654985 +1.452119 0.542225 0.654985 +1.449735 0.566132 0.569461 +1.450107 0.542225 0.569461 +1.450107 0.542225 -0.569466 +1.449735 0.566132 -0.569466 +1.452119 0.542225 -0.65499 +1.451748 0.566132 -0.65499 +1.427594 0.566132 -0.713364 +1.427965 0.542225 -0.713364 +1.427594 0.566132 -0.569466 +1.427965 0.542225 -0.569466 +1.409399 0.542225 -0.569466 +1.409027 0.566132 -0.569466 +1.409399 0.542225 -0.735505 +1.409027 0.566132 -0.735505 +1.386748 0.566132 -0.753621 +1.387119 0.542225 -0.753621 +1.386748 0.566132 -0.569466 +1.387119 0.542225 -0.569466 +1.346861 0.542225 -0.569466 +1.34649 0.566132 -0.569466 +1.346862 0.542225 -0.765698 +1.34649 0.566132 -0.765698 +1.18454 0.566132 -0.765698 +1.154887 0.542225 -0.765698 +1.18454 0.566132 -0.569466 +1.154887 0.542225 -0.569466 +0.277308 0.935652 -0.489905 +0.277308 0.90034 -0.489905 +0.28234 0.935652 -0.595167 +0.28234 0.90034 -0.595167 +0.300792 0.90034 -0.650522 +0.300792 0.935652 -0.650522 +0.300792 0.90034 -0.49326 +0.300792 0.935652 -0.49326 +0.320921 0.935652 -0.496614 +0.320921 0.90034 -0.496614 +0.320921 0.935652 -0.680716 +0.320921 0.90034 -0.680716 +0.349437 0.90034 -0.714264 +0.349437 0.935652 -0.714264 +0.349437 0.90034 -0.501647 +0.349437 0.935652 -0.501647 +0.376276 0.935652 -0.506679 +0.376276 0.90034 -0.506679 +0.376276 0.935652 -0.734393 +0.376276 0.90034 -0.734393 +0.428451 0.90034 -0.758618 +0.428451 0.935652 -0.758618 +0.428451 0.90034 -0.513636 +0.428451 0.935652 -0.513636 +0.487583 0.935652 -0.520592 +0.487583 0.90034 -0.520592 +0.963284 0.90034 -0.569466 +0.981533 0.935652 -0.569466 +0.487583 0.935652 -0.765698 +0.487583 0.90034 -0.765698 +0.963285 0.90034 -0.765698 +0.981533 0.935652 -0.765698 +numsurf 82 +SURF 0x10 +mat 9 +refs 4 +0 0.499499022961 0.128109067678 +3 0.399223417044 0.128109067678 +2 0.399223417044 0.120940238237 +1 0.495794564486 0.120940238237 +SURF 0x10 +mat 9 +refs 4 +1 0.495552659035 0.168408095837 +2 0.398981571198 0.168408095837 +6 0.398981571198 0.218166559935 +5 0.495552659035 0.208244681358 +SURF 0x10 +mat 9 +refs 4 +3 0.92893576622 0.517487406731 +0 0.82866024971 0.517487406731 +4 0.82866024971 0.557323992252 +7 0.92893576622 0.567245841026 +SURF 0x10 +mat 9 +refs 4 +7 0.92893576622 0.567245841026 +8 0.940940022469 0.56865811348 +10 0.940940022469 0.518924713135 +3 0.92893576622 0.517487406731 +SURF 0x10 +mat 9 +refs 4 +2 0.398981571198 0.168408095837 +11 0.386977314949 0.169845372438 +9 0.386977314949 0.219578772783 +6 0.398981571198 0.218166559935 +SURF 0x10 +mat 9 +refs 4 +3 0.399223417044 0.128109067678 +10 0.387219190598 0.128109067678 +11 0.387219071388 0.120940238237 +2 0.399223417044 0.120940238237 +SURF 0x10 +mat 9 +refs 4 +10 0.387219190598 0.128109067678 +13 0.376627147198 0.128109067678 +12 0.376627147198 0.120940238237 +11 0.387219071388 0.120940238237 +SURF 0x10 +mat 9 +refs 4 +11 0.386977314949 0.169845372438 +12 0.376385331154 0.174763292074 +14 0.376385331154 0.220991015434 +9 0.386977314949 0.219578772783 +SURF 0x10 +mat 9 +refs 4 +8 0.940940022469 0.56865811348 +15 0.951532125473 0.570070326328 +13 0.951532125473 0.523842692375 +10 0.940940022469 0.518924713135 +SURF 0x10 +mat 9 +refs 4 +15 0.951532125473 0.570070326328 +16 0.956980586052 0.571092009544 +18 0.956980586052 0.527929008007 +13 0.951532125473 0.523842692375 +SURF 0x10 +mat 9 +refs 4 +12 0.376385331154 0.174763292074 +19 0.37093681097 0.178849637508 +17 0.37093681097 0.222012668848 +14 0.376385331154 0.220991015434 +SURF 0x10 +mat 9 +refs 4 +13 0.376627147198 0.128109067678 +18 0.371178716421 0.128109067678 +19 0.371178716421 0.120940238237 +12 0.376627147198 0.120940238237 +SURF 0x10 +mat 9 +refs 4 +18 0.371178716421 0.128109067678 +21 0.365389704704 0.128109067678 +20 0.365389704704 0.120940238237 +19 0.371178716421 0.120940238237 +SURF 0x10 +mat 9 +refs 4 +19 0.37093681097 0.178849637508 +20 0.365147769451 0.185660243034 +22 0.365147769451 0.223034232855 +17 0.37093681097 0.222012668848 +SURF 0x10 +mat 9 +refs 4 +16 0.956980586052 0.571092009544 +23 0.962769627571 0.572113513947 +21 0.962769627571 0.534739553928 +18 0.956980586052 0.527929008007 +SURF 0x10 +mat 9 +refs 4 +23 0.962769627571 0.572113513947 +24 0.966855883598 0.572794735432 +26 0.966855883598 0.540869057178 +21 0.962769627571 0.534739553928 +SURF 0x10 +mat 9 +refs 4 +20 0.365147769451 0.185660243034 +27 0.361061453819 0.191789716482 +25 0.361061453819 0.223715305328 +22 0.365147769451 0.223034232855 +SURF 0x10 +mat 9 +refs 4 +21 0.365389704704 0.128109067678 +26 0.361303389072 0.128109067678 +27 0.361303269863 0.120940238237 +20 0.365389704704 0.120940238237 +SURF 0x10 +mat 9 +refs 4 +26 0.0910842716694 0.127547889948 +29 0.102321773767 0.127547889948 +28 0.102321773767 0.120379060507 +27 0.0910842716694 0.120379060507 +SURF 0x10 +mat 9 +refs 4 +27 0.361061453819 0.191789716482 +28 0.357315599918 0.203027248383 +30 0.356294095516 0.224396348 +25 0.361061453819 0.223715305328 +SURF 0x10 +mat 9 +refs 4 +24 0.966855883598 0.572794735432 +31 0.971623301506 0.573475718498 +29 0.970601797104 0.552106678486 +26 0.966855883598 0.540869057178 +SURF 0x10 +mat 9 +refs 4 +28 0.102321773767 0.120379060507 +29 0.102321773767 0.127547889948 +31 0.123690903187 0.127547889948 +30 0.123690903187 0.120379060507 +SURF 0x10 +mat 9 +refs 4 +0 0.82866024971 0.517487406731 +35 0.787448108196 0.517487406731 +33 0.787447988987 0.557323992252 +4 0.82866024971 0.557323992252 +SURF 0x10 +mat 9 +refs 4 +5 0.495552659035 0.208244681358 +32 0.534449517727 0.208244681358 +34 0.534449517727 0.168408095837 +1 0.495552659035 0.168408095837 +SURF 0x10 +mat 9 +refs 4 +35 0.540711224079 0.0530935823917 +0 0.499499022961 0.128109067678 +1 0.495794564486 0.120940238237 +34 0.53469145298 0.0482401251793 +SURF 0x10 +mat 9 +refs 4 +34 0.53469145298 0.0482401251793 +37 0.573663711548 0.0482401251793 +36 0.573588311672 0.0530935823917 +35 0.540711224079 0.0530935823917 +SURF 0x10 +mat 9 +refs 4 +32 0.534449517727 0.208244681358 +39 0.573421835899 0.208244681358 +37 0.573421835899 0.168408095837 +34 0.534449517727 0.168408095837 +SURF 0x10 +mat 9 +refs 4 +35 0.787448108196 0.517487406731 +36 0.754570960999 0.517487406731 +38 0.754570960999 0.557323992252 +33 0.787447988987 0.557323992252 +SURF 0x10 +mat 9 +refs 4 +36 0.754570960999 0.517487406731 +43 0.746398389339 0.519939243793 +41 0.746398329735 0.557323992252 +38 0.754570960999 0.557323992252 +SURF 0x10 +mat 9 +refs 4 +39 0.573421835899 0.208244681358 +40 0.581594407558 0.208244681358 +42 0.581594526768 0.170859903097 +37 0.573421835899 0.168408095837 +SURF 0x10 +mat 9 +refs 4 +37 0.573663711548 0.0482401251793 +42 0.581836223602 0.0482401251793 +43 0.581760942936 0.0530935823917 +36 0.573588311672 0.0530935823917 +SURF 0x10 +mat 9 +refs 4 +42 0.581836223602 0.0482401251793 +45 0.586359262466 0.0482401251793 +44 0.586283802986 0.0530935823917 +43 0.581760942936 0.0530935823917 +SURF 0x10 +mat 9 +refs 4 +40 0.581594407558 0.208244681358 +47 0.586117386818 0.208244681358 +45 0.586117386818 0.17453750968 +42 0.581594526768 0.170859903097 +SURF 0x10 +mat 9 +refs 4 +43 0.746398389339 0.519939243793 +44 0.741875529289 0.523616850376 +46 0.741875529289 0.557323992252 +41 0.746398329735 0.557323992252 +SURF 0x10 +mat 9 +refs 4 +44 0.741875529289 0.523616850376 +51 0.738106250763 0.528111696243 +49 0.738106250763 0.557323992252 +46 0.741875529289 0.557323992252 +SURF 0x10 +mat 9 +refs 4 +47 0.586117386818 0.208244681358 +48 0.58988648653 0.208244681358 +50 0.58988648653 0.179032355547 +45 0.586117386818 0.17453750968 +SURF 0x10 +mat 9 +refs 4 +45 0.586359262466 0.0482401251793 +50 0.590128302574 0.0482401251793 +51 0.590052962303 0.0530935823917 +44 0.586283802986 0.0530935823917 +SURF 0x10 +mat 9 +refs 4 +50 0.590128302574 0.0482401251793 +53 0.595031857491 0.0482401251793 +52 0.594956457615 0.0530935823917 +51 0.590052962303 0.0530935823917 +SURF 0x10 +mat 9 +refs 4 +48 0.58988648653 0.208244681358 +55 0.594381511211 0.208244681358 +53 0.594789981842 0.190882652998 +50 0.58988648653 0.179032355547 +SURF 0x10 +mat 9 +refs 4 +51 0.590052962303 0.0530935823917 +52 0.594956457615 0.0530935823917 +54 0.59454792738 0.0530935823917 +49 0.590052962303 0.0530935823917 +SURF 0x10 +mat 9 +refs 4 +52 0.595087766647 0.0525552332401 +53 0.595163106918 0.047701716423 +55 0.594754576683 0.047701716423 +54 0.594679236412 0.0525552332401 +SURF 0x10 +mat 9 +refs 4 +59 0.595087766647 0.0525552332401 +57 0.594679236412 0.0525552332401 +56 0.594754576683 0.047701716423 +58 0.595163106918 0.047701716423 +SURF 0x10 +mat 9 +refs 4 +60 0.738106250763 0.817747414112 +62 0.738106250763 0.788535118103 +57 0.733611345291 0.788535118103 +59 0.733202755451 0.805897295475 +SURF 0x10 +mat 9 +refs 4 +63 0.58988648653 0.439455837011 +61 0.58988648653 0.468668162823 +58 0.594789981842 0.456817895174 +56 0.594381511211 0.439455837011 +SURF 0x10 +mat 9 +refs 4 +61 0.735855340958 0.855563402176 +60 0.735930681229 0.860416889191 +59 0.731027245522 0.860416889191 +58 0.730951786041 0.855563402176 +SURF 0x10 +mat 9 +refs 4 +66 0.73962444067 0.855563402176 +67 0.739699840546 0.860416889191 +60 0.735930681229 0.860416889191 +61 0.735855340958 0.855563402176 +SURF 0x10 +mat 9 +refs 4 +64 0.586117386818 0.439455837011 +66 0.586117386818 0.473162949085 +61 0.58988648653 0.468668162823 +63 0.58988648653 0.439455837011 +SURF 0x10 +mat 9 +refs 4 +67 0.741875529289 0.822242379189 +65 0.741875529289 0.788535118103 +62 0.738106250763 0.788535118103 +60 0.738106250763 0.817747414112 +SURF 0x10 +mat 9 +refs 4 +68 0.746398389339 0.825920045376 +70 0.746398329735 0.788535118103 +65 0.741875529289 0.788535118103 +67 0.741875529289 0.822242379189 +SURF 0x10 +mat 9 +refs 4 +71 0.581594407558 0.439455837011 +69 0.581594526768 0.476840764284 +66 0.586117386818 0.473162949085 +64 0.586117386818 0.439455837011 +SURF 0x10 +mat 9 +refs 4 +69 0.74414741993 0.855563402176 +68 0.744222760201 0.860416889191 +67 0.739699840546 0.860416889191 +66 0.73962444067 0.855563402176 +SURF 0x10 +mat 9 +refs 4 +74 0.752319991589 0.855563402176 +75 0.752395391464 0.860416889191 +68 0.744222760201 0.860416889191 +69 0.74414741993 0.855563402176 +SURF 0x10 +mat 9 +refs 4 +72 0.573421835899 0.439455837011 +74 0.573421835899 0.479292452335 +69 0.581594526768 0.476840764284 +71 0.581594407558 0.439455837011 +SURF 0x10 +mat 9 +refs 4 +75 0.754570960999 0.828371882439 +73 0.754570960999 0.788535118103 +70 0.746398329735 0.788535118103 +68 0.746398389339 0.825920045376 +SURF 0x10 +mat 9 +refs 4 +76 0.787448108196 0.828371882439 +78 0.787447988987 0.788535118103 +73 0.754570960999 0.788535118103 +75 0.754570960999 0.828371882439 +SURF 0x10 +mat 9 +refs 4 +79 0.534449517727 0.439455837011 +77 0.534449517727 0.479292452335 +74 0.573421835899 0.479292452335 +72 0.573421835899 0.439455837011 +SURF 0x10 +mat 9 +refs 4 +77 0.791292309761 0.855563402176 +76 0.785272479057 0.860416889191 +75 0.752395391464 0.860416889191 +74 0.752319991589 0.855563402176 +SURF 0x10 +mat 9 +refs 4 +110 0.830189108849 0.928263485432 +111 0.826484560966 0.935432195663 +76 0.785272479057 0.860416889191 +77 0.791292309761 0.855563402176 +SURF 0x10 +mat 9 +refs 4 +106 0.495552659035 0.439455837011 +110 0.495552659035 0.479292452335 +77 0.534449517727 0.479292452335 +79 0.534449517727 0.439455837011 +SURF 0x10 +mat 9 +refs 4 +111 0.82866024971 0.828371882439 +107 0.82866024971 0.788535118103 +78 0.787447988987 0.788535118103 +76 0.787448108196 0.828371882439 +SURF 0x10 +mat 9 +refs 4 +83 0.34396776557 0.120379060507 +81 0.322598695755 0.120379060507 +80 0.322598695755 0.127547889948 +82 0.34396776557 0.127547889948 +SURF 0x10 +mat 9 +refs 4 +87 0.323279678822 0.127547889948 +85 0.355205208063 0.127547889948 +82 0.34396776557 0.127547889948 +80 0.322598695755 0.127547889948 +SURF 0x10 +mat 9 +refs 4 +84 0.361061453819 0.455910861492 +86 0.361061453819 0.423985302448 +81 0.356294095516 0.423304200172 +83 0.357315599918 0.444673359394 +SURF 0x10 +mat 9 +refs 4 +85 0.355205208063 0.127547889948 +84 0.355205208063 0.120379060507 +83 0.34396776557 0.120379060507 +82 0.34396776557 0.127547889948 +SURF 0x10 +mat 9 +refs 4 +90 0.960594058037 0.935432195663 +91 0.960594058037 0.928263485432 +84 0.964680433273 0.928263485432 +85 0.964680433273 0.935432195663 +SURF 0x10 +mat 9 +refs 4 +91 0.365147769451 0.462040275335 +89 0.365147769451 0.424666315317 +86 0.361061453819 0.423985302448 +84 0.361061453819 0.455910861492 +SURF 0x10 +mat 9 +refs 4 +88 0.962769627571 0.773745656013 +90 0.962769627571 0.811119794846 +85 0.966855883598 0.804990291595 +87 0.966855883598 0.773064613342 +SURF 0x10 +mat 9 +refs 4 +95 0.956980586052 0.77476733923 +93 0.956980586052 0.817930281162 +90 0.962769627571 0.811119794846 +88 0.962769627571 0.773745656013 +SURF 0x10 +mat 9 +refs 4 +92 0.37093681097 0.468851000071 +94 0.37093681097 0.425687909126 +89 0.365147769451 0.424666315317 +91 0.365147769451 0.462040275335 +SURF 0x10 +mat 9 +refs 4 +93 0.954805016518 0.935432195663 +92 0.954805016518 0.928263485432 +91 0.960594058037 0.928263485432 +90 0.960594058037 0.935432195663 +SURF 0x10 +mat 9 +refs 4 +98 0.949356496334 0.935432195663 +99 0.949356496334 0.928263485432 +92 0.954805016518 0.928263485432 +93 0.954805016518 0.935432195663 +SURF 0x10 +mat 9 +refs 4 +99 0.376385331154 0.472937315702 +97 0.376385331154 0.426709502935 +94 0.37093681097 0.425687909126 +92 0.37093681097 0.468851000071 +SURF 0x10 +mat 9 +refs 4 +96 0.951532125473 0.775788784027 +98 0.951532125473 0.822016596794 +93 0.956980586052 0.817930281162 +95 0.956980586052 0.77476733923 +SURF 0x10 +mat 9 +refs 4 +103 0.940940022469 0.77720117569 +101 0.940940022469 0.826934456825 +98 0.951532125473 0.822016596794 +96 0.951532125473 0.775788784027 +SURF 0x10 +mat 9 +refs 4 +100 0.386977314949 0.477855205536 +102 0.386977314949 0.428121805191 +97 0.376385331154 0.426709502935 +99 0.376385331154 0.472937315702 +SURF 0x10 +mat 9 +refs 4 +101 0.938764452934 0.935432195663 +100 0.938764452934 0.928263485432 +99 0.949356496334 0.928263485432 +98 0.949356496334 0.935432195663 +SURF 0x10 +mat 9 +refs 4 +108 0.926760196686 0.935432195663 +109 0.926760196686 0.928263485432 +100 0.938764452934 0.928263485432 +101 0.938764452934 0.935432195663 +SURF 0x10 +mat 9 +refs 4 +109 0.398981571198 0.479292452335 +105 0.398981571198 0.429534077644 +102 0.386977314949 0.428121805191 +100 0.386977314949 0.477855205536 +SURF 0x10 +mat 9 +refs 4 +104 0.92893576622 0.778613328934 +108 0.92893576622 0.828371882439 +101 0.940940022469 0.826934456825 +103 0.940940022469 0.77720117569 +SURF 0x10 +mat 9 +refs 4 +108 0.92893576622 0.828371882439 +104 0.92893576622 0.778613328934 +107 0.82866024971 0.788535118103 +111 0.82866024971 0.828371882439 +SURF 0x10 +mat 9 +refs 4 +110 0.495552659035 0.479292452335 +106 0.495552659035 0.439455837011 +105 0.398981571198 0.429534077644 +109 0.398981571198 0.479292452335 +SURF 0x10 +mat 9 +refs 4 +109 0.926760196686 0.928263485432 +108 0.926760196686 0.935432195663 +111 0.826484560966 0.935432195663 +110 0.830189108849 0.928263485432 +kids 0 +OBJECT poly +name "canister.L" +data 9 +Plane.001 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +2.464633 1.161144 0.468633 +2.46954 1.165915 0.461381 +2.466299 1.166899 0.460661 +2.462856 1.167189 0.460904 +2.459628 1.166749 0.462078 +2.457004 1.165634 0.464043 +2.455299 1.163977 0.466562 +2.454721 1.161979 0.46933 +2.455338 1.159879 0.472015 +2.457077 1.157933 0.474291 +2.459726 1.156374 0.475885 +2.462968 1.15539 0.476604 +2.46641 1.1551 0.476362 +2.469638 1.155539 0.475188 +2.472263 1.156654 0.473223 +2.473967 1.158311 0.470704 +2.474545 1.16031 0.467935 +2.473928 1.162409 0.465251 +2.47219 1.164356 0.462975 +2.482074 1.172862 0.437098 +2.470006 1.176525 0.43442 +2.45719 1.177604 0.435322 +2.445172 1.175968 0.439695 +2.435401 1.171816 0.447011 +2.429057 1.165648 0.456387 +2.426903 1.158208 0.466694 +2.429201 1.150393 0.476688 +2.435673 1.143146 0.485163 +2.445537 1.137341 0.491097 +2.457605 1.133678 0.493775 +2.470421 1.132599 0.492873 +2.482439 1.134235 0.488501 +2.49221 1.138387 0.481185 +2.498554 1.144555 0.471808 +2.500708 1.151995 0.461501 +2.49841 1.15981 0.451508 +2.491938 1.167057 0.443033 +2.481195 1.154984 0.419683 +2.46793 1.15901 0.41674 +2.453844 1.160195 0.417731 +2.440634 1.158398 0.422537 +2.429896 1.153834 0.430578 +2.422922 1.147054 0.440884 +2.420555 1.138877 0.452213 +2.423081 1.130287 0.463197 +2.430194 1.122322 0.472512 +2.441036 1.115941 0.479035 +2.454301 1.111915 0.481978 +2.468387 1.11073 0.480987 +2.481596 1.112527 0.476181 +2.492335 1.117091 0.46814 +2.499309 1.123871 0.457834 +2.501676 1.132049 0.446505 +2.49915 1.140638 0.435521 +2.492037 1.148603 0.426206 +2.475944 1.144641 0.421685 +2.465601 1.14778 0.41939 +2.454618 1.148705 0.420163 +2.444319 1.147303 0.42391 +2.435945 1.143744 0.43018 +2.430508 1.138458 0.438216 +2.428663 1.132082 0.447049 +2.430631 1.125384 0.455614 +2.436177 1.119173 0.462877 +2.444632 1.114199 0.467963 +2.454974 1.11106 0.470258 +2.465957 1.110135 0.469485 +2.476257 1.111537 0.465737 +2.484631 1.115095 0.459468 +2.490068 1.120381 0.451432 +2.491913 1.126758 0.442599 +2.484398 1.139666 0.426771 +2.489944 1.133455 0.434034 +2.485422 1.14469 0.397599 +2.467861 1.150019 0.393702 +2.449212 1.151589 0.395014 +2.431724 1.149209 0.401377 +2.417507 1.143167 0.412023 +2.408275 1.134192 0.425668 +2.405141 1.123365 0.440666 +2.408484 1.111993 0.455208 +2.417902 1.101447 0.467541 +2.432256 1.093 0.476176 +2.449817 1.087671 0.480072 +2.468466 1.086101 0.47876 +2.485954 1.088481 0.472398 +2.500172 1.094523 0.461752 +2.509404 1.103498 0.448107 +2.512537 1.114325 0.433109 +2.509194 1.125697 0.418567 +2.499777 1.136243 0.406234 +2.549398 1.109917 0.165976 +2.366853 1.134922 0.165976 +2.550626 1.118881 0.149993 +2.36808 1.143885 0.149993 +2.532799 1.153883 0.165976 +2.532799 1.153883 0.341237 +2.366853 1.134922 0.341237 +2.367981 1.143165 0.362014 +2.550527 1.118161 0.362014 +2.549398 1.109917 0.341237 +2.394662 1.172805 0.341237 +2.394662 1.172804 0.165976 +2.376514 1.166893 0.362014 +2.369982 1.157771 0.362014 +2.370985 1.165091 0.362014 +2.416495 1.179917 0.365854 +2.513683 1.166605 0.365854 +2.513683 1.166605 0.082726 +2.416495 1.179917 0.082726 +2.370985 1.165091 0.399171 +2.48369 0.630212 0.049409 +2.48369 0.630212 0.494495 +2.544092 1.07118 0.494495 +2.544092 1.07118 0.049409 +2.361547 1.096185 0.494495 +2.301145 0.655216 0.494495 +2.301145 0.655216 0.049409 +2.361546 1.096185 0.049409 +2.548689 1.143309 0.362014 +2.550078 1.142384 0.149993 +2.551031 1.14175 0.149993 +2.374928 1.166376 0.149993 +2.370985 1.165091 0.149993 +2.370985 1.165091 0.049409 +2.55188 1.128039 0.149993 +2.55353 1.140087 0.149993 +2.55353 1.140087 0.049409 +2.550043 1.142408 0.362014 +2.55353 1.140087 0.362014 +2.55353 1.140087 0.399171 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +14 0.720553219318 0.925439238548 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +15 0.0142893865705 0.386845588684 +0 0.0146232433617 0.387093901634 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 3 +16 0.721186935902 0.926291584969 +0 0.72110337019 0.926179170609 +15 0.72085505724 0.925845265388 +SURF 0x10 +mat 9 +refs 3 +17 0.0151683967561 0.387499213219 +0 0.0146232433617 0.387093901634 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +17 0.721508681774 0.92672431469 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +18 0.0155353546143 0.38777205348 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +2 0.0159082766622 0.38804936409 +1 0.0157923176885 0.387963145971 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +30 0.716671168804 0.922271609306 +12 0.720176875591 0.924933195114 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +12 0.0133772883564 0.386167436838 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +13 0.0135666038841 0.386308133602 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +20 0.0201382674277 0.389667838812 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +20 0.723677396774 0.931694149971 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +29 0.716563045979 0.922126293182 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +29 0.0105703622103 0.382553577423 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +30 0.0107157044113 0.382661700249 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +56 0.0225611738861 0.384980678558 +38 0.0229883790016 0.386825114489 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +38 0.720834553242 0.934544324875 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +47 0.713015139103 0.924027919769 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +47 0.0124720484018 0.379005610943 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +73 0.0260738730431 0.38492077589 +55 0.0221912320703 0.384705603123 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +55 0.718715131283 0.933747172356 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +56 0.718990147114 0.934117078781 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +85 0.709964811802 0.925572276115 +67 0.713434994221 0.926645874977 +66 0.712985813618 0.926041841507 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +91 0.0634112805128 0.380766808987 +114 0.0822017341852 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +91 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +100 0.0351593159139 0.380766808987 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +93 0.0659876763821 0.382225304842 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +93 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +130 0.0258204042912 0.385675609112 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +98 0.716117560863 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +95 0.0634113550186 0.387425422668 +108 0.0768311172724 0.389038980007 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +130 0.0258204042912 0.385675609112 +119 0.0318100675941 0.386084258556 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +101 0.721435010433 0.94671523571 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +126 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +119 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +129 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +105 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +130 0.719685137272 0.937376379967 +107 0.723048388958 0.94274699688 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +118 0.708473622799 0.993757665157 +124 0.719685137272 0.993757665157 +127 0.719685018063 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +112 0.636726200581 0.922010183334 +116 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +114 0.708473622799 0.993757665157 +111 0.636726200581 0.993757665157 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +112 0.0104542300105 0.302716702223 +111 0.0822017341852 0.302716642618 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +127 0.0822017341852 0.385675519705 +121 0.0659876763821 0.385886520147 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +122 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +126 0.0659876763821 0.385675609112 +125 0.0659876763821 0.383715420961 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +129 0.0318100675941 0.385675609112 +128 0.0318100675941 0.385969936848 +kids 0 +OBJECT poly +name "canister.M" +data 9 +Plane.014 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +1.858037 1.069768 0.005389 +1.86529 1.07516 0.009603 +1.866009 1.075695 0.006258 +1.865767 1.075515 0.002808 +1.864592 1.074642 -0.000331 +1.862627 1.073181 -0.00278 +1.860109 1.071308 -0.004243 +1.85734 1.069249 -0.004545 +1.854656 1.067253 -0.003649 +1.852379 1.065561 -0.001662 +1.850785 1.064375 0.001175 +1.850066 1.063841 0.00452 +1.850308 1.064021 0.00797 +1.851483 1.064894 0.011108 +1.853448 1.066355 0.013557 +1.855966 1.068228 0.015021 +1.858735 1.070286 0.015323 +1.861419 1.072282 0.014426 +1.863696 1.073975 0.01244 +1.889572 1.083744 0.021078 +1.89225 1.085735 0.008624 +1.891348 1.085065 -0.00422 +1.886976 1.081814 -0.015904 +1.87966 1.076374 -0.025021 +1.870283 1.069402 -0.03047 +1.859976 1.061738 -0.031593 +1.849983 1.054307 -0.028256 +1.841508 1.048006 -0.020861 +1.835573 1.043593 -0.0103 +1.832895 1.041602 0.002153 +1.833797 1.042273 0.014997 +1.83817 1.045524 0.026682 +1.845485 1.050963 0.035799 +1.854862 1.057936 0.041247 +1.865169 1.065599 0.042371 +1.875163 1.07303 0.039034 +1.883638 1.079332 0.031639 +1.906988 1.065912 0.022633 +1.909931 1.0681 0.008945 +1.90894 1.067364 -0.005172 +1.904134 1.06379 -0.018015 +1.896093 1.057811 -0.028035 +1.885786 1.050148 -0.034024 +1.874458 1.041724 -0.035259 +1.863474 1.033557 -0.031592 +1.854158 1.026631 -0.023464 +1.847636 1.021781 -0.011855 +1.844692 1.019592 0.001833 +1.845684 1.020329 0.015949 +1.850489 1.023903 0.028793 +1.858531 1.029882 0.038813 +1.868837 1.037545 0.044802 +1.880165 1.045968 0.046037 +1.89115 1.054136 0.042369 +1.900465 1.061062 0.034241 +1.904986 1.054952 0.018835 +1.90728 1.056659 0.008162 +1.906508 1.056084 -0.002846 +1.90276 1.053298 -0.01286 +1.896491 1.048636 -0.020673 +1.888455 1.04266 -0.025342 +1.879622 1.036093 -0.026305 +1.871057 1.029724 -0.023446 +1.863793 1.024324 -0.017108 +1.858708 1.020542 -0.008057 +1.856413 1.018836 0.002616 +1.857186 1.01941 0.013623 +1.860933 1.022197 0.023637 +1.867203 1.026859 0.03145 +1.875239 1.032834 0.03612 +1.884072 1.039402 0.037083 +1.8999 1.051171 0.027886 +1.892637 1.04577 0.034223 +1.929072 1.056287 0.028219 +1.932968 1.059184 0.010097 +1.931656 1.058208 -0.008593 +1.925293 1.053478 -0.025596 +1.914648 1.045562 -0.038862 +1.901003 1.035416 -0.046791 +1.886005 1.024264 -0.048426 +1.871462 1.013451 -0.04357 +1.85913 1.004281 -0.032809 +1.850495 0.997861 -0.017441 +1.846598 0.994963 0.000681 +1.84791 0.995939 0.01937 +1.854273 1.00067 0.036374 +1.864918 1.008585 0.04964 +1.878563 1.018731 0.057569 +1.893561 1.029883 0.059204 +1.908104 1.040696 0.054348 +1.920436 1.049866 0.043587 +2.160694 1.030518 0.096321 +2.160694 1.030518 -0.087929 +2.176677 1.039566 0.096321 +2.176677 1.039566 -0.087929 +2.160695 1.071825 0.07391 +1.985433 1.071825 0.07391 +1.985433 1.030518 -0.087929 +1.964656 1.038838 -0.087929 +1.964656 1.038839 0.096321 +1.985433 1.030518 0.096321 +1.985433 1.071825 -0.065517 +2.160694 1.071825 -0.065517 +1.964656 1.063504 -0.082695 +1.964656 1.053581 -0.087929 +1.964656 1.060969 -0.087929 +1.960816 1.081834 -0.044851 +1.960816 1.081834 0.053244 +2.243944 1.081834 0.053244 +2.243944 1.081834 -0.044851 +1.927499 1.060969 -0.087929 +2.277261 0.546334 0.096321 +1.832175 0.546334 0.096321 +1.832175 0.991419 0.096321 +2.277261 0.991419 0.096321 +1.832175 0.99142 -0.087929 +1.832175 0.546334 -0.087929 +2.277261 0.546334 -0.087929 +2.277261 0.991419 -0.087929 +1.964656 1.063504 0.091087 +2.176677 1.062777 0.092589 +2.176677 1.062278 0.09362 +2.176677 1.062777 -0.084196 +2.176677 1.060969 -0.087929 +2.277261 1.060969 -0.087929 +2.176677 1.048809 0.096321 +2.176677 1.060969 0.096321 +2.277261 1.060969 0.096321 +1.964656 1.062796 0.092551 +1.964656 1.060969 0.096321 +1.927499 1.060969 0.096321 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +14 0.720553219318 0.925439238548 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +15 0.0142893865705 0.386845588684 +0 0.0146232433617 0.387093901634 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 3 +16 0.721186935902 0.926291584969 +0 0.72110337019 0.926179170609 +15 0.72085505724 0.925845265388 +SURF 0x10 +mat 9 +refs 3 +17 0.0151683967561 0.387499213219 +0 0.0146232433617 0.387093901634 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +17 0.721508681774 0.92672431469 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +18 0.0155353546143 0.38777205348 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +2 0.0159082766622 0.38804936409 +1 0.0157923176885 0.387963145971 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +30 0.716671168804 0.922271609306 +12 0.720176875591 0.924933195114 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +12 0.0133772883564 0.386167436838 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +13 0.0135666038841 0.386308133602 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +20 0.0201382674277 0.389667838812 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +20 0.723677396774 0.931694149971 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +29 0.716563045979 0.922126293182 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +29 0.0105703622103 0.382553577423 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +30 0.0107157044113 0.382661700249 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +56 0.0225611738861 0.384980678558 +38 0.0229883790016 0.386825114489 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +38 0.720834553242 0.934544324875 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +47 0.713015139103 0.924027919769 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +47 0.0124720484018 0.379005610943 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +73 0.0260738730431 0.38492077589 +55 0.0221912320703 0.384705603123 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +55 0.718715131283 0.933747172356 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +56 0.718990147114 0.934117078781 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +85 0.709964811802 0.925572276115 +67 0.713434994221 0.926645874977 +66 0.712985813618 0.926041841507 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +91 0.0634112805128 0.380766808987 +114 0.0822017341852 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +91 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +100 0.0351593159139 0.380766808987 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +93 0.0659876763821 0.382225304842 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +93 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +130 0.0258204042912 0.385675609112 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +98 0.716117560863 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +95 0.0634113550186 0.387425422668 +108 0.0768311172724 0.389038980007 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +130 0.0258204042912 0.385675609112 +119 0.0318100675941 0.386084258556 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +101 0.721435010433 0.94671523571 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +126 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +119 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +129 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +105 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +130 0.719685137272 0.937376379967 +107 0.723048388958 0.94274699688 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +118 0.708473622799 0.993757665157 +124 0.719685137272 0.993757665157 +127 0.719685018063 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +112 0.636726200581 0.922010183334 +116 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +114 0.708473622799 0.993757665157 +111 0.636726200581 0.993757665157 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +112 0.0104542300105 0.302716702223 +111 0.0822017341852 0.302716642618 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +127 0.0822017341852 0.385675519705 +121 0.0659876763821 0.385886520147 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +122 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +126 0.0659876763821 0.385675609112 +125 0.0659876763821 0.383715420961 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +129 0.0318100675941 0.385675609112 +128 0.0318100675941 0.385969936848 +kids 0 +OBJECT poly +name "clutch" +data 8 +Cube.006 +texture "cabin.png" +texrep 1 1 +crease 30 +numvert 526 +2.155369 0.634609 0.073737 +2.146455 0.629629 0.085371 +2.154814 0.620597 0.094603 +2.168895 0.619996 0.088675 +2.169238 0.628656 0.07578 +2.155369 0.634609 0.598749 +2.146455 0.629629 0.587116 +2.154814 0.620597 0.577883 +2.168895 0.619996 0.583811 +2.169238 0.628656 0.596707 +2.350332 1.227071 0.075301 +2.341418 1.22209 0.086865 +2.349777 1.213059 0.096043 +2.363858 1.212458 0.090151 +2.364201 1.221117 0.077331 +2.350332 1.227071 0.597185 +2.341418 1.22209 0.585621 +2.349777 1.213059 0.576444 +2.364201 1.221117 0.595155 +2.363858 1.212458 0.582336 +2.355967 1.244194 0.101302 +2.34556 1.234678 0.107034 +2.352735 1.222047 0.111583 +2.367577 1.223757 0.108662 +2.369574 1.237444 0.102308 +2.355967 1.244194 0.571185 +2.34556 1.234678 0.565453 +2.352735 1.222047 0.560904 +2.369574 1.237444 0.570178 +2.367577 1.223757 0.563824 +2.393611 1.214609 0.483909 +2.396049 1.229635 0.483909 +2.378567 1.212285 0.483909 +2.371707 1.225873 0.483909 +2.382512 1.236597 0.483909 +2.396049 1.229635 0.188578 +2.393611 1.214609 0.188578 +2.378567 1.212285 0.188578 +2.371707 1.225873 0.188578 +2.382512 1.236597 0.188578 +2.391247 1.233722 0.413591 +2.380443 1.222999 0.413591 +2.387303 1.20941 0.413591 +2.404784 1.226761 0.413591 +2.402347 1.211735 0.413591 +2.391247 1.233722 0.258895 +2.380443 1.222999 0.258895 +2.387303 1.20941 0.258895 +2.402347 1.211735 0.258895 +2.404784 1.226761 0.258895 +2.155369 0.634609 -0.0737 +2.146455 0.629629 -0.085333 +2.154814 0.620597 -0.094566 +2.168895 0.619996 -0.088638 +2.169238 0.628656 -0.075742 +2.155369 0.634609 -0.598712 +2.146455 0.629629 -0.587079 +2.154814 0.620597 -0.577846 +2.168895 0.619996 -0.583774 +2.169238 0.628656 -0.59667 +2.350332 1.227071 -0.075264 +2.341418 1.22209 -0.086828 +2.349777 1.213059 -0.096006 +2.363858 1.212457 -0.090113 +2.364201 1.221117 -0.077294 +2.350332 1.227071 -0.597148 +2.341418 1.22209 -0.585584 +2.349777 1.213059 -0.576407 +2.364201 1.221117 -0.595118 +2.363858 1.212458 -0.582299 +2.355967 1.244194 -0.101264 +2.34556 1.234678 -0.106997 +2.352735 1.222047 -0.111546 +2.367577 1.223757 -0.108625 +2.369574 1.237444 -0.102271 +2.355967 1.244194 -0.571148 +2.34556 1.234678 -0.565416 +2.352735 1.222047 -0.560867 +2.369574 1.237444 -0.570141 +2.367577 1.223757 -0.563787 +2.393611 1.214609 -0.483872 +2.396049 1.229635 -0.483872 +2.378567 1.212285 -0.483872 +2.371707 1.225873 -0.483872 +2.382512 1.236597 -0.483872 +2.396049 1.229635 -0.18854 +2.393611 1.214609 -0.18854 +2.378567 1.212285 -0.18854 +2.371707 1.225873 -0.18854 +2.382512 1.236597 -0.18854 +2.391247 1.233722 -0.413554 +2.380443 1.222999 -0.413554 +2.387303 1.20941 -0.413554 +2.404784 1.226761 -0.413554 +2.402347 1.211735 -0.413554 +2.391247 1.233722 -0.258858 +2.380443 1.222999 -0.258858 +2.387303 1.20941 -0.258858 +2.402347 1.211735 -0.258858 +2.404784 1.226761 -0.258858 +2.152721 0.843089 -0.090657 +2.152721 0.730338 -0.090657 +1.763815 0.730338 -0.090657 +1.763815 0.843089 -0.090657 +2.152721 0.843089 -0.561976 +2.15272 0.730338 -0.561976 +1.763815 0.730338 -0.561976 +1.763815 0.843089 -0.561976 +1.741941 0.73332 -0.1297 +1.741941 0.82739 -0.1297 +1.741941 0.73332 -0.522933 +1.741941 0.82739 -0.522933 +2.379163 1.202389 -0.258859 +2.257544 0.832808 -0.258859 +2.199307 0.851973 -0.258859 +2.320926 1.221553 -0.258859 +2.379163 1.202389 -0.413553 +2.257544 0.832808 -0.413552 +2.199307 0.851973 -0.413552 +2.320926 1.221553 -0.413553 +2.345091 1.241233 -0.413553 +2.371408 1.232573 -0.413553 +2.345091 1.241233 -0.258859 +2.371408 1.232573 -0.258859 +2.362672 1.235448 -0.188541 +2.336355 1.244108 -0.188541 +2.312191 1.224428 -0.188541 +2.190572 0.854847 -0.188541 +2.248809 0.835683 -0.188541 +2.370428 1.205263 -0.188541 +2.362672 1.235448 -0.483871 +2.336355 1.244108 -0.483871 +2.312191 1.224428 -0.483871 +2.190572 0.854847 -0.483871 +2.248809 0.835683 -0.483871 +2.370428 1.205263 -0.483871 +2.344221 1.213887 -0.566271 +2.222602 0.844307 -0.566271 +2.164365 0.863471 -0.566271 +2.285984 1.233052 -0.566271 +2.310148 1.252732 -0.566271 +2.336466 1.244071 -0.566271 +2.344221 1.213887 -0.106141 +2.222602 0.844307 -0.106141 +2.164365 0.863471 -0.106141 +2.285984 1.233052 -0.106141 +2.310148 1.252732 -0.106141 +2.336466 1.244071 -0.106141 +2.321062 1.235149 -0.584675 +2.302816 1.241153 -0.584675 +2.283546 1.219863 -0.584675 +2.173295 0.860532 -0.584675 +2.213671 0.847246 -0.584675 +2.323922 1.206576 -0.584675 +2.321062 1.235149 -0.087736 +2.302816 1.241153 -0.087736 +2.283546 1.219862 -0.087736 +2.173295 0.860532 -0.087736 +2.213671 0.847246 -0.087736 +2.323922 1.206576 -0.087736 +2.152721 0.843089 0.090694 +2.152721 0.730338 0.090694 +1.763815 0.730338 0.090694 +1.763815 0.843089 0.090694 +2.152721 0.843089 0.562014 +2.15272 0.730338 0.562014 +1.763815 0.730338 0.562014 +1.763815 0.843089 0.562014 +1.741941 0.733319 0.129737 +1.741941 0.82739 0.129737 +1.741941 0.73332 0.52297 +1.741941 0.82739 0.52297 +2.379163 1.202389 0.258896 +2.257544 0.832808 0.258896 +2.199307 0.851973 0.258896 +2.320926 1.221553 0.258896 +2.379163 1.202389 0.41359 +2.257544 0.832808 0.41359 +2.199307 0.851973 0.41359 +2.320926 1.221553 0.41359 +2.345091 1.241233 0.41359 +2.371408 1.232573 0.41359 +2.345091 1.241233 0.258896 +2.371408 1.232573 0.258896 +2.362672 1.235448 0.188578 +2.336355 1.244108 0.188578 +2.312191 1.224428 0.188578 +2.190572 0.854847 0.188578 +2.248809 0.835683 0.188578 +2.370428 1.205263 0.188578 +2.362672 1.235448 0.483908 +2.336355 1.244108 0.483908 +2.312191 1.224428 0.483908 +2.190572 0.854847 0.483908 +2.248809 0.835683 0.483908 +2.370428 1.205263 0.483908 +2.344221 1.213887 0.566308 +2.222602 0.844307 0.566308 +2.164365 0.863471 0.566308 +2.285984 1.233052 0.566308 +2.310148 1.252732 0.566308 +2.336466 1.244071 0.566308 +2.344221 1.213887 0.106178 +2.222602 0.844307 0.106178 +2.164365 0.863471 0.106178 +2.285984 1.233052 0.106178 +2.310148 1.252732 0.106178 +2.336466 1.244071 0.106178 +2.321062 1.235149 0.584712 +2.302816 1.241153 0.584712 +2.283546 1.219862 0.584712 +2.173295 0.860532 0.584712 +2.213671 0.847246 0.584712 +2.323922 1.206576 0.584712 +2.321062 1.235149 0.087773 +2.302816 1.241153 0.087773 +2.283546 1.219862 0.087773 +2.173295 0.860532 0.087773 +2.213671 0.847246 0.087773 +2.323922 1.206576 0.087773 +1.379936 0.659936 0.191825 +1.460429 0.517657 0.191825 +1.460429 0.517657 0.234839 +1.379936 0.659936 0.234839 +1.391743 0.66827 0.191825 +1.472237 0.525991 0.191825 +1.472237 0.525991 0.234839 +1.391743 0.66827 0.234839 +1.386548 0.67563 0.22843 +1.386548 0.67563 0.198233 +1.374741 0.667296 0.22843 +1.374741 0.667296 0.198233 +1.392601 0.640276 0.203938 +1.401703 0.627382 0.203938 +1.302064 0.557055 0.206547 +1.292963 0.56995 0.203938 +1.392601 0.640276 0.222725 +1.401703 0.627382 0.222725 +1.302064 0.557055 0.220117 +1.292962 0.56995 0.222725 +1.381518 0.678926 0.44103 +1.415857 0.630274 0.44103 +1.415857 0.630274 0.500579 +1.381518 0.678926 0.500579 +1.393326 0.687259 0.44103 +1.427665 0.638608 0.44103 +1.427665 0.638608 0.500579 +1.393326 0.687259 0.500579 +1.388131 0.69462 0.491707 +1.388131 0.69462 0.449903 +1.376323 0.686286 0.491707 +1.376323 0.686286 0.449903 +1.431035 0.633833 0.491707 +1.431035 0.633833 0.449903 +1.419227 0.625499 0.491707 +1.419227 0.625499 0.449903 +1.394184 0.659266 0.461412 +1.403285 0.646371 0.461412 +1.303646 0.576045 0.461412 +1.294545 0.58894 0.461412 +1.394184 0.659266 0.480198 +1.403285 0.646371 0.480198 +1.303646 0.576045 0.480198 +1.294545 0.58894 0.480198 +1.381518 0.678926 0.302236 +1.415857 0.630274 0.302236 +1.415857 0.630274 0.361785 +1.381518 0.678926 0.361785 +1.393326 0.687259 0.302236 +1.427665 0.638608 0.302236 +1.427665 0.638608 0.361785 +1.393326 0.687259 0.361785 +1.388131 0.69462 0.352913 +1.388131 0.69462 0.311108 +1.376323 0.686286 0.352913 +1.376323 0.686286 0.311108 +1.431035 0.633833 0.352913 +1.431035 0.633833 0.311108 +1.419227 0.625499 0.352913 +1.419227 0.625499 0.311108 +1.394184 0.659266 0.322617 +1.403285 0.646371 0.322617 +1.303646 0.576045 0.322617 +1.294545 0.58894 0.322617 +1.394184 0.659266 0.341404 +1.403285 0.646371 0.341404 +1.303646 0.576045 0.341404 +1.294545 0.58894 0.341404 +1.610179 0.623441 -0.152695 +1.604755 0.623441 -0.144349 +1.60927 0.623441 -0.135479 +1.619209 0.623441 -0.134954 +1.624634 0.623441 -0.143299 +1.620119 0.623441 -0.15217 +1.599621 0.602551 -0.173438 +1.581512 0.602551 -0.145577 +1.596585 0.602551 -0.115964 +1.629767 0.602551 -0.114211 +1.632804 0.602551 -0.171684 +1.647876 0.602551 -0.142071 +1.590281 0.526942 -0.191788 +1.56095 0.526942 -0.146664 +1.585363 0.526942 -0.0987 +1.639107 0.526942 -0.09586 +1.668439 0.526942 -0.140985 +1.644026 0.526942 -0.188949 +1.629156 0.928269 -0.144254 +1.639207 0.922417 -0.144254 +1.64665 0.913481 -0.144254 +1.650588 0.902538 -0.144254 +1.650546 0.890909 -0.144254 +1.646529 0.879995 -0.144254 +1.639021 0.871113 -0.144254 +1.628928 0.865334 -0.144254 +1.626248 0.865344 -0.136892 +1.633985 0.871131 -0.130418 +1.639744 0.880019 -0.125613 +1.64283 0.890937 -0.123056 +1.642873 0.902566 -0.123056 +1.639865 0.913506 -0.125613 +1.634171 0.922436 -0.130418 +1.626477 0.928279 -0.136892 +1.619692 0.928303 -0.132975 +1.62142 0.922482 -0.123056 +1.622685 0.913568 -0.115694 +1.623337 0.902637 -0.111777 +1.623294 0.891007 -0.111777 +1.622564 0.880082 -0.115694 +1.621234 0.871177 -0.123056 +1.619464 0.865369 -0.132975 +1.611748 0.865397 -0.134335 +1.606734 0.87123 -0.125613 +1.603028 0.880152 -0.119139 +1.601079 0.891088 -0.115694 +1.601121 0.902718 -0.115694 +1.603149 0.913639 -0.119139 +1.60692 0.922534 -0.125613 +1.611976 0.928331 -0.134335 +1.606941 0.928349 -0.140337 +1.597455 0.922569 -0.136892 +1.590398 0.913685 -0.134335 +1.586621 0.90277 -0.132975 +1.586579 0.891141 -0.132975 +1.590277 0.880199 -0.134335 +1.597269 0.871264 -0.136892 +1.606712 0.865415 -0.140337 +1.617468 0.863356 -0.144254 +1.606712 0.865415 -0.148171 +1.597269 0.871264 -0.151616 +1.590277 0.880199 -0.154173 +1.586579 0.891141 -0.155533 +1.586621 0.90277 -0.155533 +1.590398 0.913685 -0.154173 +1.597455 0.922569 -0.151616 +1.606941 0.928349 -0.148171 +1.611976 0.928331 -0.154173 +1.60692 0.922534 -0.162895 +1.603149 0.913639 -0.169369 +1.601121 0.902718 -0.172814 +1.601079 0.891088 -0.172814 +1.603028 0.880152 -0.169369 +1.606734 0.87123 -0.162895 +1.611748 0.865397 -0.154173 +1.619464 0.865369 -0.155533 +1.621234 0.871177 -0.165452 +1.622564 0.880081 -0.172814 +1.623294 0.891007 -0.176731 +1.623337 0.902637 -0.176731 +1.622685 0.913568 -0.172814 +1.62142 0.922482 -0.165452 +1.619692 0.928303 -0.155533 +1.626477 0.928279 -0.151616 +1.634171 0.922436 -0.15809 +1.639865 0.913506 -0.162895 +1.642873 0.902566 -0.165452 +1.64283 0.890937 -0.165452 +1.639744 0.880019 -0.162895 +1.633985 0.871131 -0.15809 +1.626248 0.865344 -0.151616 +1.61771 0.93033 -0.144254 +1.610179 0.623441 -0.047255 +1.604755 0.623441 -0.03891 +1.60927 0.623441 -0.03004 +1.619209 0.623441 -0.029515 +1.624634 0.623441 -0.03786 +1.620119 0.623441 -0.04673 +1.599621 0.602551 -0.067998 +1.581512 0.602551 -0.040138 +1.596585 0.602551 -0.010525 +1.629767 0.602551 -0.008772 +1.632804 0.602551 -0.066245 +1.647876 0.602551 -0.036632 +1.590281 0.526942 -0.086349 +1.56095 0.526942 -0.041225 +1.585363 0.526942 0.006739 +1.639107 0.526942 0.009579 +1.668439 0.526942 -0.035545 +1.644026 0.526942 -0.083509 +1.629156 0.928269 -0.038815 +1.639207 0.922417 -0.038815 +1.64665 0.913481 -0.038815 +1.650588 0.902538 -0.038815 +1.650546 0.890909 -0.038815 +1.646529 0.879995 -0.038815 +1.639021 0.871113 -0.038815 +1.628928 0.865334 -0.038815 +1.626248 0.865344 -0.031453 +1.633985 0.871131 -0.024979 +1.639744 0.880019 -0.020174 +1.64283 0.890937 -0.017617 +1.642873 0.902566 -0.017617 +1.639865 0.913506 -0.020174 +1.634171 0.922436 -0.024979 +1.626477 0.928279 -0.031453 +1.619692 0.928303 -0.027536 +1.62142 0.922482 -0.017617 +1.622685 0.913568 -0.010255 +1.623337 0.902637 -0.006338 +1.623294 0.891007 -0.006338 +1.622564 0.880082 -0.010255 +1.621234 0.871177 -0.017617 +1.619464 0.865369 -0.027536 +1.611748 0.865397 -0.028896 +1.606734 0.87123 -0.020174 +1.603028 0.880152 -0.0137 +1.601079 0.891088 -0.010255 +1.601121 0.902718 -0.010255 +1.603149 0.913639 -0.0137 +1.60692 0.922534 -0.020174 +1.611976 0.928331 -0.028896 +1.606941 0.928349 -0.034898 +1.597455 0.922569 -0.031453 +1.590398 0.913685 -0.028896 +1.586621 0.90277 -0.027536 +1.586579 0.891141 -0.027536 +1.590277 0.880199 -0.028896 +1.597269 0.871264 -0.031453 +1.606712 0.865415 -0.034898 +1.617468 0.863356 -0.038815 +1.606712 0.865415 -0.042732 +1.597269 0.871264 -0.046177 +1.590277 0.880199 -0.048734 +1.586579 0.891141 -0.050094 +1.586621 0.90277 -0.050094 +1.590398 0.913685 -0.048734 +1.597455 0.922569 -0.046177 +1.606941 0.928349 -0.042732 +1.611976 0.928331 -0.048734 +1.60692 0.922534 -0.057456 +1.603149 0.913639 -0.06393 +1.601121 0.902718 -0.067375 +1.601079 0.891088 -0.067375 +1.603028 0.880152 -0.06393 +1.606734 0.87123 -0.057456 +1.611748 0.865397 -0.048734 +1.619464 0.865369 -0.050094 +1.621234 0.871177 -0.060013 +1.622564 0.880081 -0.067375 +1.623294 0.891007 -0.071292 +1.623337 0.902637 -0.071292 +1.622685 0.913568 -0.067375 +1.62142 0.922482 -0.060013 +1.619692 0.928303 -0.050094 +1.626477 0.928279 -0.046177 +1.634171 0.922436 -0.052651 +1.639865 0.913506 -0.057456 +1.642873 0.902566 -0.060013 +1.64283 0.890937 -0.060013 +1.639744 0.880019 -0.057456 +1.633985 0.871131 -0.052651 +1.626248 0.865344 -0.046177 +1.61771 0.93033 -0.038815 +1.620119 0.623441 -0.15217 +1.624634 0.623441 -0.143299 +1.619209 0.623441 -0.134954 +1.60927 0.623441 -0.135479 +1.604755 0.623441 -0.144349 +1.610179 0.623441 -0.152695 +1.62722 0.87332 -0.143299 +1.622773 0.874097 -0.15217 +1.621876 0.874253 -0.134954 +1.612085 0.875963 -0.135479 +1.607638 0.87674 -0.144349 +1.612981 0.875807 -0.152695 +1.620119 0.623441 -0.04673 +1.624634 0.623441 -0.03786 +1.619209 0.623441 -0.029515 +1.60927 0.623441 -0.03004 +1.604755 0.623441 -0.03891 +1.610179 0.623441 -0.047255 +1.62722 0.87332 -0.03786 +1.622773 0.874097 -0.04673 +1.621876 0.874253 -0.029515 +1.612085 0.875963 -0.03004 +1.607638 0.87674 -0.03891 +1.612981 0.875807 -0.047255 +1.457167 0.623441 0.033787 +1.461682 0.623441 0.042657 +1.456257 0.623441 0.051003 +1.446318 0.623441 0.050478 +1.441803 0.623441 0.041607 +1.447228 0.623441 0.033262 +1.464269 0.87332 0.042657 +1.459821 0.874097 0.033787 +1.458925 0.874253 0.051003 +1.449134 0.875963 0.050478 +1.444686 0.87674 0.041607 +1.45003 0.875807 0.033262 +1.474877 0.904801 0.042657 +1.47058 0.906184 0.033787 +1.469714 0.906463 0.051003 +1.460252 0.909508 0.050478 +1.455954 0.910891 0.041607 +1.461118 0.909229 0.033262 +1.486669 0.938223 0.033787 +1.490702 0.936192 0.042657 +1.485857 0.938632 0.051003 +1.476979 0.943101 0.050478 +1.472946 0.945132 0.041607 +1.477791 0.942692 0.033262 +1.612464 1.080425 0.033787 +1.616496 1.078395 0.042657 +1.611651 1.080834 0.051003 +1.602773 1.085304 0.050478 +1.598741 1.087335 0.041607 +1.603586 1.084895 0.033262 +numsurf 479 +SURF 0x10 +mat 9 +refs 4 +0 0.98056191206 0.674109697342 +10 0.980259299278 0.415110081434 +14 0.986536800861 0.415644228458 +4 0.986839652061 0.674643874168 +SURF 0x10 +mat 9 +refs 4 +10 0.443821549416 0.0101492991671 +0 0.443934440613 0.26814982295 +1 0.439011991024 0.2710095644 +11 0.438927859068 0.0130090406165 +SURF 0x10 +mat 9 +refs 4 +11 0.964527189732 0.674643874168 +1 0.964837431908 0.415645450354 +2 0.969116032124 0.413147419691 +12 0.968806922436 0.672145903111 +SURF 0x10 +mat 9 +refs 4 +13 0.974550962448 0.673756182194 +12 0.968806922436 0.672145903111 +2 0.969116032124 0.413147419691 +3 0.974860846996 0.414757788181 +SURF 0x10 +mat 9 +refs 4 +14 0.226772218943 0.2836574018 +13 0.232098981738 0.287207961082 +3 0.231374755502 0.54448890686 +4 0.22601608932 0.54093837738 +SURF 0x10 +mat 9 +refs 4 +15 0.982433497906 0.361841827631 +5 0.982681334019 0.1028354913 +9 0.988959491253 0.102297544479 +18 0.988711476326 0.361303836107 +SURF 0x10 +mat 9 +refs 4 +16 0.231907948852 0.013136042282 +6 0.230751186609 0.271137356758 +5 0.22601608932 0.268283486366 +15 0.227201625705 0.0102821420878 +SURF 0x10 +mat 9 +refs 4 +16 0.950913667679 0.68004232645 +17 0.955198228359 0.682556688786 +7 0.955560803413 0.94154304266 +6 0.951277375221 0.939028441906 +SURF 0x10 +mat 9 +refs 4 +19 0.960939645767 0.680935740471 +8 0.961302936077 0.939921915531 +7 0.955560803413 0.94154304266 +17 0.955198228359 0.682556688786 +SURF 0x10 +mat 9 +refs 4 +19 0.436483860016 0.287176400423 +18 0.441803604364 0.283624231815 +9 0.442336350679 0.540904998779 +8 0.436984717846 0.544457197189 +SURF 0x10 +mat 9 +refs 4 +24 0.917324900627 0.259893536568 +14 0.915351331234 0.270279109478 +10 0.909515798092 0.27113738656 +20 0.91158592701 0.260325938463 +SURF 0x10 +mat 9 +refs 4 +20 0.433044940233 0.00269922427833 +10 0.443821549416 0.0101492991671 +11 0.438927859068 0.0130090406165 +21 0.430567979813 0.00753269437701 +SURF 0x10 +mat 9 +refs 4 +21 0.430567979813 0.00753269437701 +11 0.438927859068 0.0130090406165 +12 0.435249239206 0.0158728174865 +22 0.428807228804 0.0119628095999 +SURF 0x10 +mat 9 +refs 4 +23 0.928695201874 0.49803045392 +22 0.92256218195 0.499224454165 +12 0.921505451202 0.492767989635 +13 0.927365422249 0.490339159966 +SURF 0x10 +mat 9 +refs 4 +24 0.237147048116 0.276565730572 +23 0.23978818953 0.282300055027 +13 0.232098981738 0.287207961082 +14 0.226772218943 0.2836574018 +SURF 0x10 +mat 9 +refs 4 +25 0.910994529724 0.0652007684112 +15 0.908858954906 0.0544181056321 +18 0.914699554443 0.0552460812032 +28 0.916736066341 0.0656042024493 +SURF 0x10 +mat 9 +refs 4 +26 0.240290656686 0.00764942355454 +16 0.231907948852 0.013136042282 +15 0.227201625705 0.0102821420878 +25 0.238009214401 0.00281892367639 +SURF 0x10 +mat 9 +refs 4 +26 0.240290656686 0.00764942355454 +27 0.242306217551 0.0120772365481 +17 0.235847920179 0.0159951895475 +16 0.231907948852 0.013136042282 +SURF 0x10 +mat 9 +refs 4 +29 0.928115427494 0.687042713165 +19 0.926738500595 0.694725632668 +17 0.92089343071 0.692260921001 +27 0.921989738941 0.685811042786 +SURF 0x10 +mat 9 +refs 4 +29 0.428798884153 0.282270997763 +28 0.431434869766 0.27653580904 +18 0.441803604364 0.283624231815 +19 0.436483860016 0.287176400423 +SURF 0x10 +mat 9 +refs 4 +35 0.928311824799 0.224038541317 +24 0.917324900627 0.259893536568 +20 0.91158592701 0.260325938463 +39 0.922597646713 0.224052831531 +SURF 0x10 +mat 9 +refs 4 +39 0.397168070078 0.00328334071673 +20 0.433044940233 0.00269922427833 +21 0.430567979813 0.00753269437701 +38 0.397069245577 0.00864100269973 +SURF 0x10 +mat 9 +refs 4 +38 0.397069245577 0.00864100269973 +21 0.430567979813 0.00753269437701 +22 0.428807228804 0.0119628095999 +37 0.397195726633 0.0134871210903 +SURF 0x10 +mat 9 +refs 4 +36 0.939549207687 0.531250059605 +37 0.933346152306 0.531230986118 +22 0.92256218195 0.499224454165 +23 0.928695201874 0.49803045392 +SURF 0x10 +mat 9 +refs 4 +35 0.273029386997 0.277526974678 +36 0.273031681776 0.283842861652 +23 0.23978818953 0.282300055027 +24 0.237147048116 0.276565730572 +SURF 0x10 +mat 9 +refs 4 +34 0.922225952148 0.10141261667 +25 0.910994529724 0.0652007684112 +28 0.916736066341 0.0656042024493 +31 0.927940130234 0.101398311555 +SURF 0x10 +mat 9 +refs 4 +33 0.274485170841 0.00871617347002 +26 0.240290656686 0.00764942355454 +25 0.238009214401 0.00281892367639 +34 0.274584054947 0.00335863535292 +SURF 0x10 +mat 9 +refs 4 +33 0.274485170841 0.00871617347002 +32 0.274611711502 0.0135623663664 +27 0.242306217551 0.0120772365481 +26 0.240290656686 0.00764942355454 +SURF 0x10 +mat 9 +refs 4 +30 0.939172923565 0.653890311718 +29 0.928115427494 0.687042713165 +27 0.921989738941 0.685811042786 +32 0.932969927788 0.653871297836 +SURF 0x10 +mat 9 +refs 4 +30 0.395670980215 0.28382396698 +31 0.395668685436 0.277508080006 +28 0.431434869766 0.27653580904 +29 0.428798884153 0.282270997763 +SURF 0x10 +mat 9 +refs 4 +43 0.366487771273 0.277952849865 +31 0.395668685436 0.277508080006 +30 0.395670980215 0.28382396698 +44 0.366490095854 0.28426861763 +SURF 0x10 +mat 9 +refs 4 +42 0.93673235178 0.624682128429 +44 0.942935287952 0.624701201916 +30 0.939172923565 0.653890311718 +32 0.932969927788 0.653871297836 +SURF 0x10 +mat 9 +refs 4 +42 0.303914755583 0.0138807967305 +32 0.274611711502 0.0135623663664 +33 0.274485170841 0.00871617347002 +41 0.303788214922 0.00903470348567 +SURF 0x10 +mat 9 +refs 4 +40 0.303887069225 0.0036770417355 +41 0.303788214922 0.00903470348567 +33 0.274485170841 0.00871617347002 +34 0.274584054947 0.00335863535292 +SURF 0x10 +mat 9 +refs 4 +43 0.931693851948 0.130588799715 +40 0.925979614258 0.13060310483 +34 0.922225952148 0.10141261667 +31 0.927940130234 0.101398311555 +SURF 0x10 +mat 9 +refs 4 +48 0.302251189947 0.284278571606 +36 0.273031681776 0.283842861652 +35 0.273029386997 0.277526974678 +49 0.302248865366 0.277962744236 +SURF 0x10 +mat 9 +refs 4 +47 0.936929404736 0.560442686081 +37 0.933346152306 0.531230986118 +36 0.939549207687 0.531250059605 +48 0.943132400513 0.560461699963 +SURF 0x10 +mat 9 +refs 4 +47 0.368124723434 0.0138413673267 +46 0.367998182774 0.00899527408183 +38 0.397069245577 0.00864100269973 +37 0.397195726633 0.0134871210903 +SURF 0x10 +mat 9 +refs 4 +46 0.367998182774 0.00899527408183 +45 0.368097007275 0.00363768660463 +39 0.397168070078 0.00328334071673 +38 0.397069245577 0.00864100269973 +SURF 0x10 +mat 9 +refs 4 +45 0.926174283028 0.194842517376 +49 0.931888461113 0.194828227162 +35 0.928311824799 0.224038541317 +39 0.922597646713 0.224052831531 +SURF 0x10 +mat 9 +refs 4 +49 0.931888461113 0.194828227162 +45 0.926174283028 0.194842517376 +40 0.925979614258 0.13060310483 +43 0.931693851948 0.130588799715 +SURF 0x10 +mat 9 +refs 4 +45 0.368097007275 0.00363768660463 +46 0.367998182774 0.00899527408183 +41 0.303788214922 0.00903470348567 +40 0.303887069225 0.0036770417355 +SURF 0x10 +mat 9 +refs 4 +46 0.367998182774 0.00899527408183 +47 0.368124723434 0.0138413673267 +42 0.303914755583 0.0138807967305 +41 0.303788214922 0.00903470348567 +SURF 0x10 +mat 9 +refs 4 +47 0.936929404736 0.560442686081 +48 0.943132400513 0.560461699963 +44 0.942935287952 0.624701201916 +42 0.93673235178 0.624682128429 +SURF 0x10 +mat 9 +refs 4 +48 0.302251189947 0.284278571606 +49 0.302248865366 0.277962744236 +43 0.366487771273 0.277952849865 +44 0.366490095854 0.28426861763 +SURF 0x10 +mat 9 +refs 4 +50 0.991022646427 0.680580258369 +54 0.997300803661 0.68004232645 +64 0.997052788734 0.939048588276 +60 0.990774810314 0.939586520195 +SURF 0x10 +mat 9 +refs 4 +51 0.00743430620059 0.271137356758 +50 0.00269922427833 0.268283516169 +60 0.00388470874168 0.0102822901681 +61 0.00859110336751 0.0131361158565 +SURF 0x10 +mat 9 +refs 4 +61 0.950913667679 0.100341118872 +62 0.955198228359 0.102855443954 +52 0.955560803413 0.361841827631 +51 0.951277375221 0.359327197075 +SURF 0x10 +mat 9 +refs 4 +63 0.960939586163 0.101234555244 +53 0.961302936077 0.360220730305 +52 0.955560803413 0.361841827631 +62 0.955198228359 0.102855443954 +SURF 0x10 +mat 9 +refs 4 +64 0.22008484602 0.283624261618 +54 0.220617637038 0.540904998779 +53 0.215265989304 0.544457197189 +63 0.214765056968 0.287176400423 +SURF 0x10 +mat 9 +refs 4 +65 0.978796005249 0.68004232645 +68 0.985073506832 0.680576562881 +59 0.985376358032 0.939576089382 +55 0.979098677635 0.939041912556 +SURF 0x10 +mat 9 +refs 4 +66 0.215611040592 0.013008967042 +65 0.220504567027 0.0101492246613 +55 0.220617637038 0.268149763346 +56 0.215695098042 0.2710095644 +SURF 0x10 +mat 9 +refs 4 +66 0.966701388359 0.361841827631 +56 0.967011630535 0.102843426168 +57 0.971290230751 0.100345373154 +67 0.970981121063 0.359343886375 +SURF 0x10 +mat 9 +refs 4 +69 0.976725161076 0.360954254866 +67 0.970981121063 0.359343886375 +57 0.971290230751 0.100345373154 +58 0.977034986019 0.101955786347 +SURF 0x10 +mat 9 +refs 4 +69 0.0103801833466 0.287207841873 +58 0.009655947797 0.544488847256 +59 0.00429734494537 0.540938317776 +68 0.00505341170356 0.283657371998 +SURF 0x10 +mat 9 +refs 4 +74 0.928770363331 0.711310267448 +70 0.923028886318 0.710906803608 +60 0.92089343071 0.700124144554 +64 0.926733970642 0.700952112675 +SURF 0x10 +mat 9 +refs 4 +70 0.0146923819557 0.00281892367639 +71 0.0169738233089 0.00764947291464 +61 0.00859110336751 0.0131361158565 +60 0.00388470874168 0.0102822901681 +SURF 0x10 +mat 9 +refs 4 +71 0.0169738233089 0.00764947291464 +72 0.0189894568175 0.0120772365481 +62 0.0125311091542 0.0159951895475 +61 0.00859110336751 0.0131361158565 +SURF 0x10 +mat 9 +refs 4 +73 0.915151238441 0.475263029337 +63 0.913774311543 0.482946008444 +62 0.907929301262 0.480481237173 +72 0.909025669098 0.47403138876 +SURF 0x10 +mat 9 +refs 4 +74 0.209716126323 0.27653580904 +64 0.22008484602 0.283624261618 +63 0.214765056968 0.287176400423 +73 0.207080110908 0.282270908356 +SURF 0x10 +mat 9 +refs 4 +75 0.923620283604 0.906032025814 +78 0.929359376431 0.905599474907 +68 0.927385747433 0.915985167027 +65 0.921550154686 0.916843354702 +SURF 0x10 +mat 9 +refs 4 +76 0.207251042128 0.0075326692313 +75 0.209728047252 0.00269922427833 +65 0.220504567027 0.0101492246613 +66 0.215611040592 0.013008967042 +SURF 0x10 +mat 9 +refs 4 +76 0.207251042128 0.0075326692313 +66 0.215611040592 0.013008967042 +67 0.211932346225 0.0158727914095 +77 0.205490365624 0.0119627853855 +SURF 0x10 +mat 9 +refs 4 +79 0.915731072426 0.286250650883 +77 0.909598171711 0.287444770336 +67 0.908541381359 0.280988246202 +69 0.91440141201 0.27855938673 +SURF 0x10 +mat 9 +refs 4 +79 0.0180694106966 0.282300084829 +69 0.0103801833466 0.287207841873 +68 0.00505341170356 0.283657371998 +78 0.0154283000156 0.276565730572 +SURF 0x10 +mat 9 +refs 4 +85 0.939974486828 0.747104287148 +89 0.934260308743 0.747118651867 +70 0.923028886318 0.710906803608 +74 0.928770363331 0.711310267448 +SURF 0x10 +mat 9 +refs 4 +89 0.0512672066689 0.00335858599283 +88 0.0511683002114 0.00871622283012 +71 0.0169738233089 0.00764947291464 +70 0.0146923819557 0.00281892367639 +SURF 0x10 +mat 9 +refs 4 +88 0.0511683002114 0.00871622283012 +87 0.0512949302793 0.0135622918606 +72 0.0189894568175 0.0120772365481 +71 0.0169738233089 0.00764947291464 +SURF 0x10 +mat 9 +refs 4 +86 0.926208794117 0.442110687494 +73 0.915151238441 0.475263029337 +72 0.909025669098 0.47403138876 +87 0.92000579834 0.442091614008 +SURF 0x10 +mat 9 +refs 4 +85 0.173949882388 0.277508050203 +74 0.209716126323 0.27653580904 +73 0.207080110908 0.282270908356 +86 0.173952162266 0.283823877573 +SURF 0x10 +mat 9 +refs 4 +84 0.934632062912 0.86975890398 +81 0.940346240997 0.869744598866 +78 0.929359376431 0.905599474907 +75 0.923620283604 0.906032025814 +SURF 0x10 +mat 9 +refs 4 +83 0.173752397299 0.00864102784544 +84 0.1738512218 0.00328336539678 +75 0.209728047252 0.00269922427833 +76 0.207251042128 0.0075326692313 +SURF 0x10 +mat 9 +refs 4 +83 0.173752397299 0.00864102784544 +76 0.207251042128 0.0075326692313 +77 0.205490365624 0.0119627853855 +82 0.173878878355 0.0134870959446 +SURF 0x10 +mat 9 +refs 4 +80 0.926585078239 0.319470345974 +82 0.920382082462 0.319451242685 +77 0.909598171711 0.287444770336 +79 0.915731072426 0.286250650883 +SURF 0x10 +mat 9 +refs 4 +80 0.0513128750026 0.28384283185 +79 0.0180694106966 0.282300084829 +78 0.0154283000156 0.276565730572 +81 0.0513105727732 0.27752700448 +SURF 0x10 +mat 9 +refs 4 +93 0.0805300697684 0.277962714434 +94 0.0805323496461 0.284278541803 +80 0.0513128750026 0.28384283185 +81 0.0513105727732 0.27752700448 +SURF 0x10 +mat 9 +refs 4 +92 0.923965334892 0.34866297245 +82 0.920382082462 0.319451242685 +80 0.926585078239 0.319470345974 +94 0.930168271065 0.348681986332 +SURF 0x10 +mat 9 +refs 4 +92 0.144807904959 0.0138414418325 +91 0.144681409001 0.00899527408183 +83 0.173752397299 0.00864102784544 +82 0.173878878355 0.0134870959446 +SURF 0x10 +mat 9 +refs 4 +90 0.144780188799 0.00363758741878 +84 0.1738512218 0.00328336539678 +83 0.173752397299 0.00864102784544 +91 0.144681409001 0.00899527408183 +SURF 0x10 +mat 9 +refs 4 +93 0.943922936916 0.840534329414 +81 0.940346240997 0.869744598866 +84 0.934632062912 0.86975890398 +90 0.938208818436 0.840548634529 +SURF 0x10 +mat 9 +refs 4 +98 0.144771248102 0.284268647432 +99 0.144768953323 0.277952849865 +85 0.173949882388 0.277508050203 +86 0.173952162266 0.283823877573 +SURF 0x10 +mat 9 +refs 4 +97 0.923768162727 0.412902384996 +98 0.929971218109 0.412921398878 +86 0.926208794117 0.442110687494 +87 0.92000579834 0.442091614008 +SURF 0x10 +mat 9 +refs 4 +97 0.0805979445577 0.0138807967305 +87 0.0512949302793 0.0135622918606 +88 0.0511683002114 0.00871622283012 +96 0.0804714635015 0.00903465412557 +SURF 0x10 +mat 9 +refs 4 +96 0.0804714635015 0.00903465412557 +88 0.0511683002114 0.00871622283012 +89 0.0512672066689 0.00335858599283 +95 0.0805702731013 0.00367699214257 +SURF 0x10 +mat 9 +refs 4 +95 0.938013970852 0.776309251785 +89 0.934260308743 0.747118651867 +85 0.939974486828 0.747104287148 +99 0.943728208542 0.776294887066 +SURF 0x10 +mat 9 +refs 4 +99 0.943728208542 0.776294887066 +93 0.943922936916 0.840534329414 +90 0.938208818436 0.840548634529 +95 0.938013970852 0.776309251785 +SURF 0x10 +mat 9 +refs 4 +95 0.0805702731013 0.00367699214257 +90 0.144780188799 0.00363758741878 +91 0.144681409001 0.00899527408183 +96 0.0804714635015 0.00903465412557 +SURF 0x10 +mat 9 +refs 4 +96 0.0804714635015 0.00903465412557 +91 0.144681409001 0.00899527408183 +92 0.144807904959 0.0138414418325 +97 0.0805979445577 0.0138807967305 +SURF 0x10 +mat 9 +refs 4 +97 0.923768162727 0.412902384996 +92 0.923965334892 0.34866297245 +94 0.930168271065 0.348681986332 +98 0.929971218109 0.412921398878 +SURF 0x10 +mat 9 +refs 4 +98 0.144771248102 0.284268647432 +94 0.0805323496461 0.284278541803 +93 0.0805300697684 0.277962714434 +99 0.144768953323 0.277952849865 +SURF 0x10 +mat 8 +refs 4 +100 0.442336350679 0.751624822617 +103 0.441841512918 0.912931799889 +102 0.395022243261 0.912809669971 +101 0.395517110825 0.751502633095 +SURF 0x10 +mat 8 +refs 4 +104 0.903460502625 0.271005213261 +105 0.856639742851 0.27113738656 +106 0.856144964695 0.10983312875 +107 0.902965664864 0.109700925648 +SURF 0x10 +mat 8 +refs 4 +100 0.850746512413 0.271082639694 +101 0.804880619049 0.271137356758 +105 0.80485033989 0.0754172280431 +104 0.850716292858 0.0753623843193 +SURF 0x10 +mat 8 +refs 4 +101 0.796184897423 0.684561252594 +102 0.634818196297 0.684066176414 +106 0.635418653488 0.488344460726 +105 0.79678529501 0.488839477301 +SURF 0x10 +mat 8 +refs 4 +103 0.635851264 0.287224322557 +100 0.797260761261 0.286729067564 +104 0.79785400629 0.48245087266 +107 0.636444449425 0.482946008444 +SURF 0x10 +mat 8 +refs 4 +102 0.803036510944 0.488696992397 +103 0.848627984524 0.488344460726 +109 0.840221762657 0.504331469536 +108 0.802183687687 0.504625558853 +SURF 0x10 +mat 8 +refs 4 +107 0.848748028278 0.683976471424 +106 0.803156614304 0.684328913689 +110 0.802283883095 0.667845726013 +111 0.84032189846 0.667551636696 +SURF 0x10 +mat 8 +refs 4 +106 0.635418653488 0.488344460726 +102 0.634818196297 0.684066176414 +108 0.625742018223 0.667824864388 +110 0.626242995262 0.504529833794 +SURF 0x10 +mat 8 +refs 4 +103 0.635851264 0.287224322557 +107 0.636444449425 0.482946008444 +111 0.627533197403 0.466767221689 +109 0.627038300037 0.303472131491 +SURF 0x10 +mat 8 +refs 4 +112 0.608237862587 0.412000864744 +113 0.447744756937 0.411931216717 +117 0.447734773159 0.34769308567 +116 0.608227968216 0.347762733698 +SURF 0x10 +mat 8 +refs 4 +113 0.0424132794142 0.685295462608 +114 0.017928019166 0.685220479965 +118 0.0181251037866 0.620981812477 +117 0.0426103882492 0.62105691433 +SURF 0x10 +mat 8 +refs 4 +114 0.0480088405311 0.621261060238 +115 0.208951115608 0.621595680714 +119 0.208990558982 0.685804784298 +118 0.0480482801795 0.685470223427 +SURF 0x10 +mat 8 +refs 4 +115 0.208951115608 0.621595680714 +122 0.219193935394 0.621830224991 +120 0.219233319163 0.68603938818 +119 0.208990558982 0.685804784298 +SURF 0x10 +mat 8 +refs 4 +116 0.608227968216 0.347762733698 +121 0.619859218597 0.34773221612 +123 0.619869172573 0.411970287561 +112 0.608237862587 0.412000864744 +SURF 0x10 +mat 8 +refs 4 +122 0.904258430004 0.559372365475 +123 0.915300309658 0.559342503548 +121 0.915494978428 0.623580992222 +120 0.904453158379 0.623610913754 +SURF 0x10 +mat 8 +refs 4 +122 0.904258430004 0.559372365475 +125 0.900504767895 0.530181765556 +124 0.911546647549 0.530151903629 +123 0.915300309658 0.559342503548 +SURF 0x10 +mat 8 +refs 4 +123 0.619869172573 0.411970287561 +124 0.620314002037 0.441151201725 +129 0.608682632446 0.441181778908 +112 0.608237862587 0.412000864744 +SURF 0x10 +mat 8 +refs 4 +115 0.208951115608 0.621595680714 +126 0.209269627929 0.592292666435 +125 0.21951238811 0.592527151108 +122 0.219193935394 0.621830224991 +SURF 0x10 +mat 8 +refs 4 +114 0.0480088405311 0.621261060238 +127 0.0483272969723 0.591957986355 +126 0.209269627929 0.592292666435 +115 0.208951115608 0.621595680714 +SURF 0x10 +mat 8 +refs 4 +112 0.608237862587 0.412000864744 +129 0.608682632446 0.441181778908 +128 0.448189496994 0.44111213088 +113 0.447744756937 0.411931216717 +SURF 0x10 +mat 8 +refs 4 +113 0.0424132794142 0.685295462608 +128 0.038650829345 0.714484751225 +127 0.0141656557098 0.714409649372 +114 0.017928019166 0.685220479965 +SURF 0x10 +mat 8 +refs 4 +121 0.915494978428 0.623580992222 +130 0.911918401718 0.652791380882 +131 0.90087646246 0.652821362019 +120 0.904453158379 0.623610913754 +SURF 0x10 +mat 8 +refs 4 +116 0.608227968216 0.347762733698 +135 0.608663678169 0.318543165922 +130 0.620294928551 0.318512678146 +121 0.619859218597 0.34773221612 +SURF 0x10 +mat 8 +refs 4 +120 0.219233319163 0.68603938818 +131 0.219587638974 0.71511054039 +132 0.209344804287 0.714875936508 +119 0.208990558982 0.685804784298 +SURF 0x10 +mat 8 +refs 4 +119 0.208990558982 0.685804784298 +132 0.209344804287 0.714875936508 +133 0.0484025143087 0.714541316032 +118 0.0480482801795 0.685470223427 +SURF 0x10 +mat 8 +refs 4 +118 0.0181251037866 0.620981812477 +133 0.0145418699831 0.591770112514 +134 0.0390271432698 0.591845154762 +117 0.0426103882492 0.62105691433 +SURF 0x10 +mat 8 +refs 4 +117 0.447734773159 0.34769308567 +134 0.448170512915 0.318473517895 +135 0.608663678169 0.318543165922 +116 0.608227968216 0.347762733698 +SURF 0x10 +mat 8 +refs 4 +134 0.448170512915 0.318473517895 +137 0.449485957623 0.284198105335 +136 0.609979093075 0.284267812967 +135 0.608663678169 0.318543165922 +SURF 0x10 +mat 8 +refs 4 +133 0.0145418699831 0.591770112514 +138 0.00362850679085 0.557518541813 +137 0.0281137414277 0.557593643665 +134 0.0390271432698 0.591845154762 +SURF 0x10 +mat 8 +refs 4 +132 0.209344804287 0.714875936508 +139 0.210374861956 0.748729884624 +138 0.0494325459003 0.748395323753 +133 0.0484025143087 0.714541316032 +SURF 0x10 +mat 8 +refs 4 +131 0.219587638974 0.71511054039 +140 0.220617637038 0.748964428902 +139 0.210374861956 0.748729884624 +132 0.209344804287 0.714875936508 +SURF 0x10 +mat 8 +refs 4 +135 0.608663678169 0.318543165922 +136 0.609979093075 0.284267812967 +141 0.621610403061 0.284237205982 +130 0.620294928551 0.318512678146 +SURF 0x10 +mat 8 +refs 4 +130 0.911918401718 0.652791380882 +141 0.90102660656 0.687038779259 +140 0.889984667301 0.687068760395 +131 0.90087646246 0.652821362019 +SURF 0x10 +mat 8 +refs 4 +128 0.038650829345 0.714484751225 +143 0.0275275222957 0.748668670654 +144 0.0030422618147 0.748593568802 +127 0.0141656557098 0.714409649372 +SURF 0x10 +mat 8 +refs 4 +129 0.608682632446 0.441181778908 +142 0.610008537769 0.475341409445 +143 0.449515432119 0.475271642208 +128 0.448189496994 0.44111213088 +SURF 0x10 +mat 8 +refs 4 +127 0.0483272969723 0.591957986355 +144 0.0493153706193 0.557407975197 +145 0.210257664323 0.557742595673 +126 0.209269627929 0.592292666435 +SURF 0x10 +mat 8 +refs 4 +126 0.209269627929 0.592292666435 +145 0.210257664323 0.557742595673 +146 0.220500424504 0.55797713995 +125 0.21951238811 0.592527151108 +SURF 0x10 +mat 8 +refs 4 +124 0.620314002037 0.441151201725 +147 0.621639847755 0.475310772657 +142 0.610008537769 0.475341409445 +129 0.608682632446 0.441181778908 +SURF 0x10 +mat 8 +refs 4 +125 0.900504767895 0.530181765556 +146 0.889405548573 0.495993793011 +147 0.900447428226 0.495963901281 +124 0.911546647549 0.530151903629 +SURF 0x10 +mat 8 +refs 4 +141 0.90102660656 0.687038779259 +148 0.894779503345 0.694704949856 +149 0.887124180794 0.694725692272 +140 0.889984667301 0.687068760395 +SURF 0x10 +mat 8 +refs 4 +136 0.0426103882492 0.7724173069 +153 0.035340026021 0.778202950954 +148 0.0302283149213 0.767429947853 +141 0.0353619530797 0.761698365211 +SURF 0x10 +mat 8 +refs 4 +140 0.220617637038 0.748964428902 +149 0.215247154236 0.756549954414 +150 0.204815924168 0.756380498409 +139 0.210374861956 0.748729884624 +SURF 0x10 +mat 8 +refs 4 +139 0.210374861956 0.748729884624 +150 0.204815924168 0.756380498409 +151 0.0490934103727 0.756153106689 +138 0.0494325459003 0.748395323753 +SURF 0x10 +mat 8 +refs 4 +138 0.00362850679085 0.557518541813 +151 0.0074066738598 0.549887299538 +152 0.0243824310601 0.549939453602 +137 0.0281137414277 0.557593643665 +SURF 0x10 +mat 8 +refs 4 +137 0.449485957623 0.284198105335 +152 0.449934780598 0.27653580904 +153 0.605309307575 0.276587098837 +136 0.609979093075 0.284267812967 +SURF 0x10 +mat 8 +refs 4 +153 0.035340026021 0.778202950954 +152 0.0425196141005 0.934113681316 +151 0.0248944759369 0.934560000896 +150 0.0177148934454 0.778649330139 +SURF 0x10 +mat 8 +refs 4 +150 0.0177148934454 0.778649330139 +149 0.0222635027021 0.767631649971 +148 0.0302283149213 0.767429947853 +153 0.035340026021 0.778202950954 +SURF 0x10 +mat 8 +refs 4 +146 0.889405548573 0.495993793011 +155 0.886498630047 0.488365232944 +154 0.894154012203 0.488344460726 +147 0.900447428226 0.495963901281 +SURF 0x10 +mat 8 +refs 4 +147 0.341664195061 0.924338400364 +154 0.336520642042 0.918639719486 +159 0.341629832983 0.907866120338 +142 0.348909914494 0.913618981838 +SURF 0x10 +mat 8 +refs 4 +145 0.210257664323 0.557742595673 +156 0.204689338803 0.550114691257 +155 0.215120613575 0.550284206867 +146 0.220500424504 0.55797713995 +SURF 0x10 +mat 8 +refs 4 +144 0.0493153706193 0.557407975197 +157 0.0489668175578 0.549887299538 +156 0.204689338803 0.550114691257 +145 0.210257664323 0.557742595673 +SURF 0x10 +mat 8 +refs 4 +142 0.610008537769 0.475341409445 +159 0.605341076851 0.482946038246 +158 0.44996663928 0.48289462924 +143 0.449515432119 0.475271642208 +SURF 0x10 +mat 8 +refs 4 +143 0.0275275222957 0.748668670654 +158 0.0237493310124 0.75629991293 +157 0.0067735738121 0.756247878075 +144 0.0030422618147 0.748593568802 +SURF 0x10 +mat 8 +refs 4 +157 0.331152558327 0.751502633095 +158 0.348776817322 0.751948952675 +159 0.341629832983 0.907866120338 +156 0.32400560379 0.907419860363 +SURF 0x10 +mat 8 +refs 4 +159 0.341629832983 0.907866120338 +154 0.336520642042 0.918639719486 +155 0.328556269407 0.918438017368 +156 0.32400560379 0.907419860363 +SURF 0x10 +mat 8 +refs 4 +108 0.802183687687 0.504625558853 +109 0.840221762657 0.504331469536 +111 0.84032189846 0.667551636696 +110 0.802283883095 0.667845726013 +SURF 0x10 +mat 8 +refs 4 +160 0.902530789375 0.482813745737 +161 0.855710089207 0.482946008444 +162 0.855215191841 0.321641713381 +163 0.902035951614 0.321509510279 +SURF 0x10 +mat 8 +refs 4 +164 0.318607151508 0.751624643803 +167 0.318112283945 0.912931740284 +166 0.271293073893 0.912809610367 +165 0.271787852049 0.751502633095 +SURF 0x10 +mat 8 +refs 4 +160 0.848049640656 0.689727365971 +164 0.848079800606 0.885447561741 +165 0.802213847637 0.885502338409 +161 0.802183687687 0.689782142639 +SURF 0x10 +mat 8 +refs 4 +161 0.441735893488 0.549887359142 +165 0.442336320877 0.745609164238 +166 0.280969709158 0.746104240417 +162 0.280369251966 0.550382435322 +SURF 0x10 +mat 8 +refs 4 +164 0.798858821392 0.0749204605818 +160 0.799451947212 0.270642191172 +163 0.638042509556 0.271137356758 +167 0.637449264526 0.0754156708717 +SURF 0x10 +mat 8 +refs 4 +162 0.804225325584 0.482946008444 +168 0.80335265398 0.466462790966 +169 0.841390669346 0.466168671846 +163 0.849816799164 0.482593476772 +SURF 0x10 +mat 8 +refs 4 +167 0.849696695805 0.286961525679 +171 0.841290473938 0.302948445082 +170 0.803252518177 0.303242594004 +166 0.80410528183 0.28731405735 +SURF 0x10 +mat 8 +refs 4 +166 0.280969709158 0.746104240417 +170 0.271794080734 0.729918897152 +168 0.271293073893 0.566623747349 +162 0.280369251966 0.550382435322 +SURF 0x10 +mat 8 +refs 4 +163 0.638042509556 0.271137356758 +169 0.629131197929 0.254958510399 +171 0.628636240959 0.0916634276509 +167 0.637449264526 0.0754156708717 +SURF 0x10 +mat 8 +refs 4 +172 0.609825968742 0.135954111814 +176 0.609835922718 0.20019222796 +177 0.449342697859 0.200122565031 +173 0.44933283329 0.135884463787 +SURF 0x10 +mat 8 +refs 4 +173 0.265584141016 0.62105691433 +177 0.265387028456 0.685295581818 +178 0.240901827812 0.685220479965 +174 0.241098895669 0.620981872082 +SURF 0x10 +mat 8 +refs 4 +174 0.447774142027 0.623927474022 +178 0.447734773159 0.559718310833 +179 0.608677089214 0.560052871704 +175 0.608716547489 0.624262034893 +SURF 0x10 +mat 8 +refs 4 +175 0.608716547489 0.624262034893 +179 0.608677089214 0.560052871704 +180 0.618919849396 0.560287415981 +182 0.618959307671 0.624496519566 +SURF 0x10 +mat 8 +refs 4 +176 0.609835922718 0.20019222796 +172 0.609825968742 0.135954111814 +183 0.621457278728 0.135923579335 +181 0.621467113495 0.200161650777 +SURF 0x10 +mat 8 +refs 4 +182 0.904453098774 0.835390508175 +180 0.904258430004 0.771151959896 +181 0.915300190449 0.771122038364 +183 0.915494978428 0.835360646248 +SURF 0x10 +mat 8 +refs 4 +182 0.904453098774 0.835390508175 +183 0.915494978428 0.835360646248 +184 0.911918342113 0.864570975304 +185 0.900876402855 0.864600896835 +SURF 0x10 +mat 8 +refs 4 +183 0.621457278728 0.135923579335 +172 0.609825968742 0.135954111814 +189 0.6102617383 0.106734566391 +184 0.621892988682 0.106704033911 +SURF 0x10 +mat 8 +refs 4 +175 0.608716547489 0.624262034893 +182 0.618959307671 0.624496519566 +185 0.619313538074 0.653567671776 +186 0.609070777893 0.653333067894 +SURF 0x10 +mat 8 +refs 4 +174 0.447774142027 0.623927474022 +175 0.608716547489 0.624262034893 +186 0.609070777893 0.653333067894 +187 0.448128402233 0.652998566628 +SURF 0x10 +mat 8 +refs 4 +172 0.609825968742 0.135954111814 +173 0.44933283329 0.135884463787 +188 0.449768573046 0.106664948165 +189 0.6102617383 0.106734566391 +SURF 0x10 +mat 8 +refs 4 +173 0.265584141016 0.62105691433 +174 0.241098895669 0.620981872082 +187 0.237515673041 0.591770112514 +188 0.262000948191 0.591845214367 +SURF 0x10 +mat 8 +refs 4 +181 0.915300190449 0.771122038364 +180 0.904258430004 0.771151959896 +191 0.90050470829 0.741961359978 +190 0.911546647549 0.741931438446 +SURF 0x10 +mat 8 +refs 4 +176 0.609835922718 0.20019222796 +181 0.621467113495 0.200161650777 +190 0.621911883354 0.229342654347 +195 0.610280632973 0.229373186827 +SURF 0x10 +mat 8 +refs 4 +180 0.618919849396 0.560287415981 +179 0.608677089214 0.560052871704 +192 0.608995497227 0.530749738216 +191 0.619238317013 0.530984282494 +SURF 0x10 +mat 8 +refs 4 +179 0.608677089214 0.560052871704 +178 0.447734773159 0.559718310833 +193 0.448053210974 0.530415177345 +192 0.608995497227 0.530749738216 +SURF 0x10 +mat 8 +refs 4 +178 0.240901827812 0.685220479965 +177 0.265387028456 0.685295581818 +194 0.261624664068 0.714484810829 +193 0.237139433622 0.714409708977 +SURF 0x10 +mat 8 +refs 4 +177 0.449342697859 0.200122565031 +176 0.609835922718 0.20019222796 +195 0.610280632973 0.229373186827 +194 0.449787437916 0.229303538799 +SURF 0x10 +mat 8 +refs 4 +194 0.449787437916 0.229303538799 +195 0.610280632973 0.229373186827 +196 0.611606538296 0.263532757759 +197 0.451113402843 0.263463050127 +SURF 0x10 +mat 8 +refs 4 +193 0.237139433622 0.714409708977 +194 0.261624664068 0.714484810829 +197 0.250501304865 0.748668730259 +198 0.22601608932 0.748593628407 +SURF 0x10 +mat 8 +refs 4 +192 0.608995497227 0.530749738216 +193 0.448053210974 0.530415177345 +198 0.449041306973 0.495865136385 +199 0.609983563423 0.496199697256 +SURF 0x10 +mat 8 +refs 4 +191 0.619238317013 0.530984282494 +192 0.608995497227 0.530749738216 +199 0.609983563423 0.496199697256 +200 0.620226383209 0.496434241533 +SURF 0x10 +mat 8 +refs 4 +195 0.610280632973 0.229373186827 +190 0.621911883354 0.229342654347 +201 0.623237788677 0.263502180576 +196 0.611606538296 0.263532757759 +SURF 0x10 +mat 8 +refs 4 +190 0.911546647549 0.741931438446 +191 0.90050470829 0.741961359978 +200 0.889405548573 0.707773387432 +201 0.900447428226 0.707743525505 +SURF 0x10 +mat 8 +refs 4 +188 0.262000948191 0.591845214367 +187 0.237515673041 0.591770112514 +204 0.2266022861 0.557518661022 +203 0.251087516546 0.55759370327 +SURF 0x10 +mat 8 +refs 4 +189 0.6102617383 0.106734566391 +188 0.449768573046 0.106664948165 +203 0.451083958149 0.0723896324635 +202 0.611577153206 0.0724592879415 +SURF 0x10 +mat 8 +refs 4 +187 0.448128402233 0.652998566628 +186 0.609070777893 0.653333067894 +205 0.610100746155 0.68718701601 +204 0.449158430099 0.686852455139 +SURF 0x10 +mat 8 +refs 4 +186 0.609070777893 0.653333067894 +185 0.619313538074 0.653567671776 +206 0.620343565941 0.687421560287 +205 0.610100746155 0.68718701601 +SURF 0x10 +mat 8 +refs 4 +184 0.621892988682 0.106704033911 +189 0.6102617383 0.106734566391 +202 0.611577153206 0.0724592879415 +207 0.623208343983 0.072428740561 +SURF 0x10 +mat 8 +refs 4 +185 0.900876402855 0.864600896835 +184 0.911918342113 0.864570975304 +207 0.90102648735 0.898818433285 +206 0.889984726906 0.898848295212 +SURF 0x10 +mat 8 +refs 4 +201 0.900447428226 0.707743525505 +200 0.889405548573 0.707773387432 +209 0.886498630047 0.700144827366 +208 0.894154012203 0.700124144554 +SURF 0x10 +mat 8 +refs 4 +196 0.389623790979 0.913618862629 +201 0.38237798214 0.924338340759 +208 0.377234488726 0.918639600277 +213 0.382343620062 0.907866060734 +SURF 0x10 +mat 8 +refs 4 +200 0.620226383209 0.496434241533 +199 0.609983563423 0.496199697256 +210 0.604415297508 0.488571792841 +209 0.614846527576 0.488741338253 +SURF 0x10 +mat 8 +refs 4 +199 0.609983563423 0.496199697256 +198 0.449041306973 0.495865136385 +211 0.448692768812 0.488344460726 +210 0.604415297508 0.488571792841 +SURF 0x10 +mat 8 +refs 4 +198 0.22601608932 0.748593628407 +197 0.250501304865 0.748668730259 +212 0.246723115444 0.756299972534 +211 0.229747399688 0.756247937679 +SURF 0x10 +mat 8 +refs 4 +197 0.451113402843 0.263463050127 +196 0.611606538296 0.263532757759 +213 0.606939136982 0.27113738656 +212 0.451564639807 0.271086066961 +SURF 0x10 +mat 8 +refs 4 +213 0.382343620062 0.907866060734 +210 0.364719390869 0.907419860363 +211 0.371866375208 0.751502633095 +212 0.389490604401 0.751948833466 +SURF 0x10 +mat 8 +refs 4 +210 0.364719390869 0.907419860363 +213 0.382343620062 0.907866060734 +208 0.377234488726 0.918639600277 +209 0.369270056486 0.918437957764 +SURF 0x10 +mat 8 +refs 4 +206 0.889984726906 0.898848295212 +207 0.90102648735 0.898818433285 +214 0.894779503345 0.906484544277 +215 0.887124061584 0.906505286694 +SURF 0x10 +mat 8 +refs 4 +207 0.258335739374 0.761698484421 +202 0.265584141016 0.772417426109 +219 0.258313804865 0.778203070164 +214 0.253202080727 0.767430007458 +SURF 0x10 +mat 8 +refs 4 +205 0.610100746155 0.68718701601 +206 0.620343565941 0.687421560287 +215 0.614973068237 0.695007145405 +216 0.604541838169 0.6948376894 +SURF 0x10 +mat 8 +refs 4 +204 0.449158430099 0.686852455139 +205 0.610100746155 0.68718701601 +216 0.604541838169 0.6948376894 +217 0.448819249868 0.694610357285 +SURF 0x10 +mat 8 +refs 4 +202 0.611577153206 0.0724592879415 +203 0.451083958149 0.0723896324635 +218 0.451532870531 0.0647271797061 +219 0.606907367706 0.0647785365582 +SURF 0x10 +mat 8 +refs 4 +203 0.251087516546 0.55759370327 +204 0.2266022861 0.557518661022 +217 0.230380490422 0.549887359142 +218 0.247356206179 0.549939453602 +SURF 0x10 +mat 8 +refs 4 +217 0.247868284583 0.934560120106 +216 0.240688696504 0.778649449348 +219 0.258313804865 0.778203070164 +218 0.265493422747 0.934113740921 +SURF 0x10 +mat 8 +refs 4 +219 0.258313804865 0.778203070164 +216 0.240688696504 0.778649449348 +215 0.245237335563 0.76763176918 +214 0.253202080727 0.767430007458 +SURF 0x10 +mat 8 +refs 4 +168 0.80335265398 0.466462790966 +170 0.803252518177 0.303242594004 +171 0.841290473938 0.302948445082 +169 0.841390669346 0.466168671846 +SURF 0x00 +mat 7 +refs 4 +220 0.740479826927 0.0195814613253 +221 0.740532159805 0.0695220082998 +222 0.722684681416 0.0690400451422 +223 0.722632348537 0.0190994907171 +SURF 0x00 +mat 7 +refs 4 +224 0.679042696953 0.0183104816824 +227 0.696904599667 0.0183625165373 +226 0.696981668472 0.0695220157504 +225 0.679119825363 0.0694699734449 +SURF 0x00 +mat 7 +refs 4 +220 0.626002728939 0.859049677849 +224 0.631970405579 0.858452916145 +225 0.631884634495 0.926308870316 +221 0.625916957855 0.926905691624 +SURF 0x00 +mat 7 +refs 4 +222 0.895382702351 0.0322228185833 +226 0.901351094246 0.0328191332519 +227 0.901446580887 0.100667446852 +223 0.895478188992 0.100071117282 +SURF 0x00 +mat 7 +refs 4 +223 0.895478188992 0.100071117282 +227 0.901446580887 0.100667446852 +228 0.901179671288 0.104302473366 +230 0.895211338997 0.103706158698 +SURF 0x00 +mat 7 +refs 4 +224 0.631970405579 0.858452916145 +220 0.626002728939 0.859049677849 +231 0.625742018223 0.855404436588 +229 0.631709754467 0.85480761528 +SURF 0x00 +mat 7 +refs 4 +227 0.696904599667 0.0183625165373 +224 0.679042696953 0.0183104816824 +229 0.681697547436 0.0157576836646 +228 0.694236934185 0.0157942101359 +SURF 0x00 +mat 7 +refs 4 +220 0.740479826927 0.0195814613253 +223 0.722632348537 0.0190994907171 +230 0.725273430347 0.0166848599911 +231 0.737802684307 0.0170232076198 +SURF 0x00 +mat 7 +refs 4 +230 0.885900259018 0.278218835592 +228 0.890686094761 0.278229653835 +229 0.890647172928 0.290769189596 +231 0.885861337185 0.290758341551 +SURF 0x00 +mat 7 +refs 4 +234 0.191243708134 0.933715760708 +235 0.184657841921 0.933737754822 +232 0.184737131 0.883128046989 +233 0.191287890077 0.883146166801 +SURF 0x00 +mat 7 +refs 4 +236 0.0846290960908 0.926303684711 +239 0.0845450386405 0.87568873167 +238 0.0911338254809 0.875706851482 +237 0.0911790877581 0.926284730434 +SURF 0x00 +mat 7 +refs 4 +232 0.0524946600199 0.899960696697 +236 0.0524958744645 0.907761931419 +237 0.0480100437999 0.907786846161 +233 0.0480088405311 0.899985611439 +SURF 0x00 +mat 7 +refs 4 +233 0.620343625546 0.935457706451 +237 0.612542271614 0.935481607914 +238 0.613502323627 0.895314574242 +234 0.619137406349 0.895297288895 +SURF 0x00 +mat 7 +refs 4 +234 0.470317900181 0.914985835552 +238 0.470314443111 0.90935331583 +239 0.474667280912 0.908118903637 +235 0.474672079086 0.91591656208 +SURF 0x00 +mat 7 +refs 4 +235 0.144450247288 0.931421458721 +239 0.136648952961 0.931397259235 +236 0.136740297079 0.891011953354 +232 0.144541606307 0.891036212444 +SURF 0x00 +mat 7 +refs 4 +240 0.542795419693 0.889990210533 +241 0.526368319988 0.890512645245 +242 0.526428937912 0.865795433521 +243 0.542856097221 0.86527299881 +SURF 0x00 +mat 7 +refs 4 +244 0.14197781682 0.860791087151 +247 0.141981646419 0.885519444942 +246 0.125056967139 0.885613501072 +245 0.125053152442 0.860885083675 +SURF 0x00 +mat 7 +refs 4 +240 0.596417367458 0.898945391178 +244 0.602414786816 0.898917973042 +245 0.6024979949 0.923633635044 +241 0.596500575542 0.923660993576 +SURF 0x00 +mat 7 +refs 4 +242 0.163853645325 0.899314880371 +246 0.169851645827 0.899341702461 +247 0.169771447778 0.924054503441 +243 0.163773417473 0.924027621746 +SURF 0x00 +mat 7 +refs 4 +243 0.163773417473 0.924027621746 +247 0.169771447778 0.924054503441 +248 0.169886246324 0.927661955357 +250 0.16388823092 0.927635133266 +SURF 0x00 +mat 7 +refs 4 +244 0.602414786816 0.898917973042 +240 0.596417367458 0.898945391178 +251 0.596542179585 0.895324707031 +249 0.602539598942 0.895297288895 +SURF 0x00 +mat 7 +refs 4 +247 0.141981646419 0.885519444942 +244 0.14197781682 0.860791087151 +249 0.144538924098 0.864461183548 +248 0.144541606307 0.88182091713 +SURF 0x00 +mat 7 +refs 4 +240 0.542795419693 0.889990210533 +243 0.542856097221 0.86527299881 +250 0.545332312584 0.868876636028 +251 0.545289754868 0.886228501797 +SURF 0x00 +mat 7 +refs 4 +250 0.065813228488 0.899960696697 +248 0.0705990120769 0.899971544743 +249 0.0705451443791 0.917331397533 +251 0.0657593160868 0.917320549488 +SURF 0x00 +mat 7 +refs 4 +246 0.113810159266 0.924043476582 +242 0.109050609171 0.92405807972 +254 0.110517658293 0.920369148254 +252 0.115277245641 0.920354545116 +SURF 0x00 +mat 7 +refs 4 +241 0.108974717557 0.899329483509 +245 0.113734297454 0.899314880371 +253 0.115223966539 0.902994692326 +255 0.11046436429 0.903009235859 +SURF 0x00 +mat 7 +refs 4 +245 0.125053152442 0.860885083675 +246 0.125056967139 0.885613501072 +252 0.123395383358 0.881938397884 +253 0.1233927086 0.864578604698 +SURF 0x00 +mat 7 +refs 4 +242 0.526428937912 0.865795433521 +241 0.526368319988 0.890512645245 +255 0.524765133858 0.886881232262 +254 0.524807751179 0.869529366493 +SURF 0x00 +mat 7 +refs 4 +255 0.11046436429 0.903009235859 +253 0.115223966539 0.902994692326 +252 0.115277245641 0.920354545116 +254 0.110517658293 0.920369148254 +SURF 0x00 +mat 7 +refs 4 +258 0.643995642662 0.935457825661 +259 0.637444853783 0.935459733009 +256 0.637368857861 0.884850025177 +257 0.64391964674 0.884848058224 +SURF 0x00 +mat 7 +refs 4 +260 0.684796214104 0.935995817184 +263 0.684867441654 0.885380864143 +262 0.691417455673 0.885381996632 +261 0.691346287727 0.935996949673 +SURF 0x00 +mat 7 +refs 4 +256 0.737003684044 0.00346025521867 +260 0.737004876137 0.0112614985555 +261 0.732519090176 0.0112864114344 +257 0.732517898083 0.00348516786471 +SURF 0x00 +mat 7 +refs 4 +257 0.867958843708 0.93273049593 +261 0.860157549381 0.932754397392 +262 0.86003446579 0.89259070158 +258 0.867835760117 0.892566740513 +SURF 0x00 +mat 7 +refs 4 +258 0.447739541531 0.916068434715 +262 0.447734773159 0.908270716667 +263 0.452088266611 0.908118903637 +259 0.452093064785 0.915916621685 +SURF 0x00 +mat 7 +refs 4 +259 0.929951369762 0.0490196533501 +263 0.922150015831 0.0489954352379 +260 0.922241389751 0.00861011538655 +256 0.930042684078 0.00863434746861 +SURF 0x00 +mat 7 +refs 4 +264 0.588482022285 0.889990210533 +265 0.572054922581 0.890512645245 +266 0.572115600109 0.865795433521 +267 0.588542699814 0.86527299881 +SURF 0x00 +mat 7 +refs 4 +268 0.516802966595 0.86527299881 +271 0.516806781292 0.890001416206 +270 0.49988207221 0.890095412731 +269 0.499878257513 0.865366995335 +SURF 0x00 +mat 7 +refs 4 +264 0.490240544081 0.899142026901 +268 0.496237933636 0.899114608765 +269 0.49632114172 0.923830211163 +265 0.490323722363 0.923857629299 +SURF 0x00 +mat 7 +refs 4 +266 0.151266723871 0.899314880371 +270 0.157264739275 0.899341702461 +271 0.157184526324 0.924054503441 +267 0.151186510921 0.924027621746 +SURF 0x00 +mat 7 +refs 4 +267 0.151186510921 0.924027621746 +271 0.157184526324 0.924054503441 +272 0.157299339771 0.927661955357 +274 0.151301309466 0.927635133266 +SURF 0x00 +mat 7 +refs 4 +268 0.496237933636 0.899114608765 +264 0.490240544081 0.899142026901 +275 0.490365356207 0.895521342754 +273 0.496362745762 0.895493924618 +SURF 0x00 +mat 7 +refs 4 +271 0.516806781292 0.890001416206 +268 0.516802966595 0.86527299881 +273 0.519364058971 0.868943095207 +272 0.51936674118 0.886302888393 +SURF 0x00 +mat 7 +refs 4 +264 0.588482022285 0.889990210533 +267 0.588542699814 0.86527299881 +274 0.591018915176 0.868876636028 +275 0.59097635746 0.886228501797 +SURF 0x00 +mat 7 +refs 4 +274 0.885915219784 0.296167641878 +272 0.890700995922 0.296178489923 +273 0.890647113323 0.313538372517 +275 0.885861337185 0.313527554274 +SURF 0x00 +mat 7 +refs 4 +270 0.101337097585 0.924058139324 +266 0.0965775325894 0.924043476582 +278 0.0980671644211 0.920363664627 +276 0.102826744318 0.920378267765 +SURF 0x00 +mat 7 +refs 4 +265 0.0966533869505 0.899314880371 +269 0.101412944496 0.899329543114 +277 0.10288002342 0.903018414974 +279 0.0981204360723 0.903003752232 +SURF 0x00 +mat 7 +refs 4 +269 0.499878257513 0.865366995335 +270 0.49988207221 0.890095412731 +276 0.49822050333 0.886420309544 +277 0.498217821121 0.869060575962 +SURF 0x00 +mat 7 +refs 4 +266 0.572115600109 0.865795433521 +265 0.572054922581 0.890512645245 +279 0.57045173645 0.886881232262 +278 0.570494353771 0.869529366493 +SURF 0x00 +mat 7 +refs 4 +279 0.0981204360723 0.903003752232 +277 0.10288002342 0.903018414974 +276 0.102826744318 0.920378267765 +278 0.0980671644211 0.920363664627 +SURF 0x00 +mat 7 +refs 4 +282 0.661449372768 0.935457825661 +283 0.654898524284 0.935459792614 +280 0.654822587967 0.884850025177 +281 0.661373317242 0.884848058224 +SURF 0x00 +mat 7 +refs 4 +284 0.701682507992 0.935995817184 +287 0.701753675938 0.885380864143 +286 0.708303749561 0.885381996632 +285 0.708232522011 0.935996949673 +SURF 0x00 +mat 7 +refs 4 +280 0.727118194103 0.00346025219187 +284 0.727119386196 0.0112614920363 +285 0.722633600235 0.0112864114344 +281 0.722632348537 0.00348516483791 +SURF 0x00 +mat 7 +refs 4 +281 0.13125051558 0.931175649166 +285 0.123449198902 0.931199610233 +286 0.12332611531 0.891035854816 +282 0.131127417088 0.891011953354 +SURF 0x00 +mat 7 +refs 4 +282 0.480075329542 0.916068434715 +286 0.480070531368 0.908270716667 +287 0.48442402482 0.908118903637 +283 0.484428852797 0.915916621685 +SURF 0x00 +mat 7 +refs 4 +283 0.916660249233 0.0490196533501 +287 0.908858954906 0.0489954575896 +284 0.908950328827 0.00861011538655 +280 0.916751623154 0.00863437261432 +SURF 0x10 +mat 11 +refs 4 +288 0.755111575127 0.0294840391725 +293 0.759244799614 0.0294978059828 +298 0.764080345631 0.0381470322609 +294 0.750281870365 0.0381010882556 +SURF 0x10 +mat 11 +refs 4 +289 0.473892778158 0.00364059954882 +288 0.477460503578 0.00363817228936 +294 0.484561085701 0.0142081538215 +295 0.472650408745 0.014216247946 +SURF 0x10 +mat 11 +refs 4 +295 0.472650408745 0.014216247946 +296 0.460872799158 0.0110735138878 +290 0.470364898443 0.00269922427833 +289 0.473892778158 0.00364059954882 +SURF 0x10 +mat 11 +refs 4 +296 0.127229064703 0.793292582035 +297 0.140956625342 0.793341577053 +291 0.136974304914 0.801922440529 +290 0.132862299681 0.801907777786 +SURF 0x10 +mat 11 +refs 4 +297 0.88946378231 0.00614550476894 +299 0.901421129704 0.0130270821974 +292 0.892802834511 0.0179935432971 +291 0.889221131802 0.0159321688116 +SURF 0x10 +mat 11 +refs 4 +299 0.901421129704 0.0130270821974 +298 0.901446640491 0.0268243681639 +293 0.892810463905 0.022126365453 +292 0.892802834511 0.0179935432971 +SURF 0x10 +mat 11 +refs 4 +305 0.768279671669 0.0695220157504 +300 0.745930612087 0.0694475695491 +294 0.750281870365 0.0381010882556 +298 0.764080345631 0.0381470322609 +SURF 0x10 +mat 11 +refs 4 +300 0.487700134516 0.0464454703033 +301 0.468408823013 0.0464586056769 +295 0.472650408745 0.014216247946 +294 0.484561085701 0.0142081538215 +SURF 0x10 +mat 11 +refs 4 +301 0.468408823013 0.0464586056769 +302 0.44933283329 0.041368406266 +296 0.460872799158 0.0110735138878 +295 0.472650408745 0.014216247946 +SURF 0x10 +mat 11 +refs 4 +302 0.122307293117 0.761948406696 +303 0.144541591406 0.762027800083 +297 0.140956625342 0.793341577053 +296 0.127229064703 0.793292582035 +SURF 0x10 +mat 11 +refs 4 +303 0.573570787907 0.0464586094022 +304 0.575844168663 0.0277586970478 +299 0.604878842831 0.0269613936543 +297 0.603475272655 0.0385068915784 +SURF 0x10 +mat 11 +refs 4 +304 0.575844168663 0.0277586970478 +305 0.573619663715 0.00781077705324 +298 0.603505432606 0.0146454498172 +299 0.604878842831 0.0269613936543 +SURF 0x10 +mat 7 +refs 3 +321 0.585282206535 0.907877326012 +306 0.58222848177 0.908998847008 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 4 +306 0.58222848177 0.908998847008 +321 0.585282206535 0.907877326012 +320 0.587977945805 0.911143064499 +307 0.582238793373 0.913250803947 +SURF 0x10 +mat 7 +refs 4 +319 0.589976906776 0.913623332977 +308 0.582244515419 0.916463077068 +307 0.582238793373 0.913250803947 +320 0.587977945805 0.911143064499 +SURF 0x10 +mat 7 +refs 4 +318 0.790665924549 0.902608692646 +309 0.781879007816 0.901977419853 +308 0.781865656376 0.897854745388 +319 0.789592683315 0.898409843445 +SURF 0x10 +mat 7 +refs 4 +317 0.790671408176 0.907343149185 +310 0.781884551048 0.906711816788 +309 0.781879007816 0.901977419853 +318 0.790665924549 0.902608692646 +SURF 0x10 +mat 7 +refs 4 +316 0.789608716965 0.912041962147 +311 0.781881630421 0.911486923695 +310 0.781884551048 0.906711816788 +317 0.790671408176 0.907343149185 +SURF 0x10 +mat 7 +refs 4 +315 0.787605762482 0.916138589382 +312 0.781870603561 0.915726602077 +311 0.781881630421 0.911486923695 +316 0.789608716965 0.912041962147 +SURF 0x10 +mat 7 +refs 4 +314 0.758239269257 0.0200242251158 +313 0.761058449745 0.0184008814394 +312 0.76418864727 0.0210347399116 +315 0.758890390396 0.0240855887532 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +313 0.761058449745 0.0184008814394 +314 0.758239269257 0.0200242251158 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +314 0.758239269257 0.0200242251158 +329 0.755037546158 0.0194561481476 +SURF 0x10 +mat 7 +refs 4 +329 0.755037546158 0.0194561481476 +314 0.758239269257 0.0200242251158 +315 0.758890390396 0.0240855887532 +328 0.752873122692 0.0230179466307 +SURF 0x10 +mat 7 +refs 4 +328 0.739694416523 0.888702630997 +315 0.74513220787 0.888687908649 +316 0.747402667999 0.892411589622 +327 0.740076303482 0.892431378365 +SURF 0x10 +mat 7 +refs 4 +327 0.740076303482 0.892431378365 +316 0.747402667999 0.892411589622 +317 0.748605430126 0.896962463856 +326 0.740274190903 0.896984994411 +SURF 0x10 +mat 7 +refs 4 +326 0.740274190903 0.896984994411 +317 0.748605430126 0.896962463856 +318 0.748595476151 0.901791751385 +325 0.740264296532 0.90181428194 +SURF 0x10 +mat 7 +refs 4 +325 0.740264296532 0.90181428194 +318 0.748595476151 0.901791751385 +319 0.74737405777 0.906316876411 +324 0.740047752857 0.906336724758 +SURF 0x10 +mat 7 +refs 4 +324 0.740047752857 0.906336724758 +319 0.74737405777 0.906316876411 +320 0.745088458061 0.909992098808 +323 0.739650607109 0.910006821156 +SURF 0x10 +mat 7 +refs 4 +323 0.591018915176 0.905840992928 +320 0.587977945805 0.911143064499 +321 0.585282206535 0.907877326012 +322 0.586900353432 0.90505617857 +SURF 0x10 +mat 7 +refs 3 +322 0.586900353432 0.90505617857 +321 0.585282206535 0.907877326012 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 3 +337 0.586325585842 0.901855349541 +322 0.586900353432 0.90505617857 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 4 +336 0.589938759804 0.899825394154 +323 0.591018915176 0.905840992928 +322 0.586900353432 0.90505617857 +337 0.586325585842 0.901855349541 +SURF 0x10 +mat 7 +refs 4 +335 0.732014358044 0.906303346157 +324 0.740047752857 0.906336724758 +323 0.739650607109 0.910006821156 +336 0.733688116074 0.909982025623 +SURF 0x10 +mat 7 +refs 4 +334 0.731129109859 0.901776313782 +325 0.740264296532 0.90181428194 +324 0.740047752857 0.906336724758 +335 0.732014358044 0.906303346157 +SURF 0x10 +mat 7 +refs 4 +333 0.731139063835 0.896947026253 +326 0.740274190903 0.896984994411 +325 0.740264296532 0.90181428194 +334 0.731129109859 0.901776313782 +SURF 0x10 +mat 7 +refs 4 +332 0.732042968273 0.892397999763 +327 0.740076303482 0.892431378365 +326 0.740274190903 0.896984994411 +333 0.731139063835 0.896947026253 +SURF 0x10 +mat 7 +refs 4 +331 0.733731865883 0.888677895069 +328 0.739694416523 0.888702630997 +327 0.740076303482 0.892431378365 +332 0.732042968273 0.892397999763 +SURF 0x10 +mat 7 +refs 4 +330 0.752951383591 0.0169624350965 +329 0.755037546158 0.0194561481476 +328 0.752873122692 0.0230179466307 +331 0.748952388763 0.0183313302696 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +329 0.755037546158 0.0194561481476 +330 0.752951383591 0.0169624350965 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +330 0.752951383591 0.0169624350965 +345 0.752956926823 0.0137099577114 +SURF 0x10 +mat 7 +refs 4 +345 0.752956926823 0.0137099577114 +330 0.752951383591 0.0169624350965 +331 0.748952388763 0.0183313302696 +344 0.748962759972 0.0122186904773 +SURF 0x10 +mat 7 +refs 4 +344 0.748962759972 0.0122186904773 +331 0.748952388763 0.0183313302696 +332 0.745930612087 0.01930231601 +343 0.745944559574 0.011066744104 +SURF 0x10 +mat 7 +refs 4 +343 0.0965775325894 0.87784665823 +332 0.0977606400847 0.871695280075 +333 0.10199739784 0.870207488537 +342 0.100651957095 0.877202451229 +SURF 0x10 +mat 7 +refs 4 +342 0.100651957095 0.877202451229 +333 0.10199739784 0.870207488537 +334 0.106703966856 0.870171666145 +341 0.105358473957 0.877166628838 +SURF 0x10 +mat 7 +refs 4 +341 0.105358473957 0.877166628838 +334 0.106703966856 0.870171666145 +335 0.111312687397 0.87159216404 +340 0.110129497945 0.877743422985 +SURF 0x10 +mat 7 +refs 4 +340 0.110129497945 0.877743422985 +335 0.111312687397 0.87159216404 +336 0.115267731249 0.874297738075 +339 0.114389568567 0.878863453865 +SURF 0x10 +mat 7 +refs 4 +339 0.585242927074 0.895911097527 +336 0.589938759804 0.899825394154 +337 0.586325585842 0.901855349541 +338 0.583826899529 0.899772584438 +SURF 0x10 +mat 7 +refs 3 +338 0.583826899529 0.899772584438 +337 0.586325585842 0.901855349541 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 3 +354 0.580573558807 0.899782478809 +338 0.583826899529 0.899772584438 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 4 +353 0.579128503799 0.895929634571 +339 0.585242927074 0.895911097527 +338 0.583826899529 0.899772584438 +354 0.580573558807 0.899782478809 +SURF 0x10 +mat 7 +refs 4 +352 0.110134541988 0.885977387428 +340 0.110129497945 0.877743422985 +339 0.114389568567 0.878863453865 +353 0.11439333111 0.884974956512 +SURF 0x10 +mat 7 +refs 4 +351 0.105364225805 0.886530041695 +341 0.105358473957 0.877166628838 +340 0.110129497945 0.877743422985 +352 0.110134541988 0.885977387428 +SURF 0x10 +mat 7 +refs 4 +350 0.100657694042 0.886565804482 +342 0.100651957095 0.877202451229 +341 0.105358473957 0.877166628838 +351 0.105364225805 0.886530041695 +SURF 0x10 +mat 7 +refs 4 +349 0.0965825468302 0.886080622673 +343 0.0965775325894 0.87784665823 +342 0.100651957095 0.877202451229 +350 0.100657694042 0.886565804482 +SURF 0x10 +mat 7 +refs 4 +348 0.75289940834 0.00754021573812 +344 0.748962759972 0.0122186904773 +343 0.745944559574 0.011066744104 +349 0.75124835968 0.00476339226589 +SURF 0x10 +mat 7 +refs 4 +347 0.755051553249 0.0112206013873 +345 0.752956926823 0.0137099577114 +344 0.748962759972 0.0122186904773 +348 0.75289940834 0.00754021573812 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +345 0.752956926823 0.0137099577114 +347 0.755051553249 0.0112206013873 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +347 0.755051553249 0.0112206013873 +362 0.758255183697 0.0106591321528 +SURF 0x10 +mat 7 +refs 4 +362 0.758255183697 0.0106591321528 +347 0.755051553249 0.0112206013873 +348 0.75289940834 0.00754021573812 +361 0.758920311928 0.00648497464135 +SURF 0x10 +mat 7 +refs 4 +361 0.758920311928 0.00648497464135 +348 0.75289940834 0.00754021573812 +349 0.75124835968 0.00476339226589 +360 0.759360253811 0.00334167736582 +SURF 0x10 +mat 7 +refs 4 +360 0.0977734401822 0.892544686794 +349 0.0965825468302 0.886080622673 +350 0.100657694042 0.886565804482 +359 0.102011941373 0.893916428089 +SURF 0x10 +mat 7 +refs 4 +359 0.102011941373 0.893916428089 +350 0.100657694042 0.886565804482 +351 0.105364225805 0.886530041695 +358 0.106718495488 0.893880486488 +SURF 0x10 +mat 7 +refs 4 +358 0.106718495488 0.893880486488 +351 0.105364225805 0.886530041695 +352 0.110134541988 0.885977387428 +357 0.111325532198 0.89244145155 +SURF 0x10 +mat 7 +refs 4 +357 0.111325532198 0.89244145155 +352 0.110134541988 0.885977387428 +353 0.11439333111 0.884974956512 +356 0.115277245641 0.88977265358 +SURF 0x10 +mat 7 +refs 4 +356 0.574456691742 0.899872303009 +353 0.579128503799 0.895929634571 +354 0.580573558807 0.899782478809 +355 0.578087747097 0.901880323887 +SURF 0x10 +mat 7 +refs 3 +355 0.578087747097 0.901880323887 +354 0.580573558807 0.899782478809 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 3 +370 0.577532589436 0.905084550381 +355 0.578087747097 0.901880323887 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 4 +369 0.573413491249 0.905894339085 +356 0.574456691742 0.899872303009 +355 0.578087747097 0.901880323887 +370 0.577532589436 0.905084550381 +SURF 0x10 +mat 7 +refs 4 +368 0.839544057846 0.894585847855 +357 0.831511318684 0.894588172436 +356 0.833196341991 0.890902519226 +369 0.839158535004 0.890900790691 +SURF 0x10 +mat 7 +refs 4 +367 0.839747190475 0.899116337299 +358 0.830612659454 0.899119019508 +357 0.831511318684 0.894588172436 +368 0.839544057846 0.894585847855 +SURF 0x10 +mat 7 +refs 4 +366 0.839743375778 0.903945863247 +359 0.830608785152 0.903948485851 +358 0.830612659454 0.899119019508 +367 0.839747190475 0.899116337299 +SURF 0x10 +mat 7 +refs 4 +365 0.839533030987 0.908491671085 +360 0.83150023222 0.908493995667 +359 0.830608785152 0.903948485851 +366 0.839743375778 0.903945863247 +SURF 0x10 +mat 7 +refs 4 +364 0.83914154768 0.912205636501 +361 0.833179354668 0.912207365036 +360 0.83150023222 0.908493995667 +365 0.839533030987 0.908491671085 +SURF 0x10 +mat 7 +refs 4 +363 0.761068820953 0.0122881932184 +362 0.758255183697 0.0106591321528 +361 0.758920311928 0.00648497464135 +364 0.764208137989 0.00954671483487 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +362 0.758255183697 0.0106591321528 +363 0.761068820953 0.0122881932184 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +363 0.761068820953 0.0122881932184 +378 0.762175917625 0.0153457010165 +SURF 0x10 +mat 7 +refs 4 +378 0.762175917625 0.0153457010165 +363 0.761068820953 0.0122881932184 +364 0.764208137989 0.00954671483487 +377 0.766288816929 0.0152929304168 +SURF 0x10 +mat 7 +refs 4 +377 0.844580173492 0.912223339081 +364 0.83914154768 0.912205636501 +365 0.839533030987 0.908491671085 +376 0.846860527992 0.908515512943 +SURF 0x10 +mat 7 +refs 4 +376 0.846860527992 0.908515512943 +365 0.839533030987 0.908491671085 +366 0.839743375778 0.903945863247 +375 0.848075926304 0.903972923756 +SURF 0x10 +mat 7 +refs 4 +375 0.848075926304 0.903972923756 +366 0.839743375778 0.903945863247 +367 0.839747190475 0.899116337299 +374 0.848079800606 0.899143517017 +SURF 0x10 +mat 7 +refs 4 +374 0.848079800606 0.899143517017 +367 0.839747190475 0.899116337299 +368 0.839544057846 0.894585847855 +373 0.846871614456 0.894609749317 +SURF 0x10 +mat 7 +refs 4 +373 0.846871614456 0.894609749317 +368 0.839544057846 0.894585847855 +369 0.839158535004 0.890900790691 +372 0.844597160816 0.890918552876 +SURF 0x10 +mat 7 +refs 4 +372 0.576486825943 0.911177933216 +369 0.573413491249 0.905894339085 +370 0.577532589436 0.905084550381 +371 0.57916790247 0.907895922661 +SURF 0x10 +mat 7 +refs 3 +371 0.57916790247 0.907895922661 +370 0.577532589436 0.905084550381 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 3 +306 0.58222848177 0.908998847008 +371 0.57916790247 0.907895922661 +379 0.582214772701 0.904220044613 +SURF 0x10 +mat 7 +refs 4 +371 0.57916790247 0.907895922661 +306 0.58222848177 0.908998847008 +307 0.582238793373 0.913250803947 +372 0.576486825943 0.911177933216 +SURF 0x10 +mat 7 +refs 4 +308 0.582244515419 0.916463077068 +373 0.574494898319 0.913670241833 +372 0.576486825943 0.911177933216 +307 0.582238793373 0.913250803947 +SURF 0x10 +mat 7 +refs 4 +309 0.781879007816 0.901977419853 +374 0.773060560226 0.90261143446 +373 0.774110794067 0.898412227631 +308 0.781865656376 0.897854745388 +SURF 0x10 +mat 7 +refs 4 +310 0.781884551048 0.906711816788 +375 0.773066103458 0.907345831394 +374 0.773060560226 0.90261143446 +309 0.781879007816 0.901977419853 +SURF 0x10 +mat 7 +refs 4 +311 0.781881630421 0.911486923695 +376 0.774126827717 0.912044405937 +375 0.773066103458 0.907345831394 +310 0.781884551048 0.906711816788 +SURF 0x10 +mat 7 +refs 4 +312 0.781870603561 0.915726602077 +377 0.776114702225 0.916140377522 +376 0.774126827717 0.912044405937 +311 0.781881630421 0.911486923695 +SURF 0x10 +mat 7 +refs 4 +313 0.761058449745 0.0184008814394 +378 0.762175917625 0.0153457010165 +377 0.766288816929 0.0152929304168 +312 0.76418864727 0.0210347399116 +SURF 0x10 +mat 7 +refs 3 +346 0.757445275784 0.0153606506065 +378 0.762175917625 0.0153457010165 +313 0.761058449745 0.0184008814394 +SURF 0x10 +mat 11 +refs 4 +380 0.782859146595 0.0294840410352 +385 0.786992371082 0.0294978134334 +390 0.791827917099 0.0381470434368 +386 0.778029441833 0.0381010845304 +SURF 0x10 +mat 11 +refs 4 +381 0.517658472061 0.00364059954882 +380 0.521226227283 0.00363817834295 +386 0.528326690197 0.0142081510276 +387 0.51641613245 0.0142162712291 +SURF 0x10 +mat 11 +refs 4 +387 0.51641613245 0.0142162712291 +388 0.50463861227 0.0110735492781 +382 0.514130532742 0.00269922427833 +381 0.517658472061 0.00364059954882 +SURF 0x10 +mat 11 +refs 4 +388 0.806347429752 0.0608921349049 +389 0.820075035095 0.0609411373734 +383 0.816092669964 0.0695220157504 +382 0.81198066473 0.0695073381066 +SURF 0x10 +mat 11 +refs 4 +389 0.754246592522 0.897854745388 +391 0.76620388031 0.904736399651 +384 0.757585585117 0.909702837467 +383 0.754003882408 0.907641470432 +SURF 0x10 +mat 11 +refs 4 +391 0.76620388031 0.904736399651 +390 0.766229391098 0.918533623219 +385 0.757593274117 0.913835644722 +384 0.757585585117 0.909702837467 +SURF 0x10 +mat 11 +refs 4 +397 0.796027183533 0.0695220157504 +392 0.773678123951 0.0694475769997 +386 0.778029441833 0.0381010845304 +390 0.791827917099 0.0381470434368 +SURF 0x10 +mat 11 +refs 4 +392 0.531465768814 0.046445492655 +393 0.512174546719 0.0464586094022 +387 0.51641613245 0.0142162712291 +386 0.528326690197 0.0142081510276 +SURF 0x10 +mat 11 +refs 4 +393 0.512174546719 0.0464586094022 +394 0.493098556995 0.0413684211671 +388 0.50463861227 0.0110735492781 +387 0.51641613245 0.0142162712291 +SURF 0x10 +mat 11 +refs 4 +394 0.801425695419 0.0295479949564 +395 0.823659956455 0.0296273510903 +389 0.820075035095 0.0609411373734 +388 0.806347429752 0.0608921349049 +SURF 0x10 +mat 11 +refs 4 +395 0.536864221096 0.0464586094022 +396 0.539137601852 0.0277586486191 +391 0.568172335625 0.02696136944 +389 0.566768705845 0.0385068282485 +SURF 0x10 +mat 11 +refs 4 +396 0.539137601852 0.0277586486191 +397 0.536913096905 0.00781072722748 +390 0.566798865795 0.0146454246715 +391 0.568172335625 0.02696136944 +SURF 0x10 +mat 7 +refs 3 +413 0.51362991333 0.907460153103 +398 0.510576188564 0.908581674099 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 4 +398 0.510576188564 0.908581674099 +413 0.51362991333 0.907460153103 +412 0.516325771809 0.91072589159 +399 0.510586559772 0.912833631039 +SURF 0x10 +mat 7 +refs 4 +411 0.518324613571 0.913206100464 +400 0.510592281818 0.916045844555 +399 0.510586559772 0.912833631039 +412 0.516325771809 0.91072589159 +SURF 0x10 +mat 7 +refs 4 +410 0.545326769352 0.900665104389 +401 0.536539912224 0.900033831596 +400 0.536526560783 0.895911097527 +411 0.544253528118 0.896466255188 +SURF 0x10 +mat 7 +refs 4 +409 0.545332312584 0.905399501324 +402 0.536545455456 0.904768288136 +401 0.536539912224 0.900033831596 +410 0.545326769352 0.900665104389 +SURF 0x10 +mat 7 +refs 4 +408 0.544269561768 0.910098433495 +403 0.536542534828 0.909543275833 +402 0.536545455456 0.904768288136 +409 0.545332312584 0.905399501324 +SURF 0x10 +mat 7 +refs 4 +407 0.542266607285 0.914195001125 +404 0.536531448364 0.913783013821 +403 0.536542534828 0.909543275833 +408 0.544269561768 0.910098433495 +SURF 0x10 +mat 7 +refs 4 +406 0.787932515144 0.0120815280825 +405 0.786815106869 0.00902635976672 +404 0.789945304394 0.00639250222594 +407 0.792045474052 0.012134373188 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +405 0.786815106869 0.00902635976672 +406 0.787932515144 0.0120815280825 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +406 0.787932515144 0.0120815280825 +421 0.786825418472 0.0151389986277 +SURF 0x10 +mat 7 +refs 4 +421 0.786825418472 0.0151389986277 +406 0.787932515144 0.0120815280825 +407 0.792045474052 0.012134373188 +420 0.789964795113 0.0178805384785 +SURF 0x10 +mat 7 +refs 4 +420 0.806009232998 0.00278139696456 +407 0.811447024345 0.00276666972786 +408 0.81371742487 0.00649033347145 +419 0.806391119957 0.00651014735922 +SURF 0x10 +mat 7 +refs 4 +419 0.806391119957 0.00651014735922 +408 0.81371742487 0.00649033347145 +409 0.814920246601 0.0110412379727 +418 0.806589007378 0.0110637741163 +SURF 0x10 +mat 7 +refs 4 +418 0.806589007378 0.0110637741163 +409 0.814920246601 0.0110412379727 +410 0.814910292625 0.015870500356 +417 0.806579053402 0.0158930476755 +SURF 0x10 +mat 7 +refs 4 +417 0.806579053402 0.0158930476755 +410 0.814910292625 0.015870500356 +411 0.813688874245 0.0203956365585 +416 0.806362509727 0.0204154886305 +SURF 0x10 +mat 7 +refs 4 +416 0.806362509727 0.0204154886305 +411 0.813688874245 0.0203956365585 +412 0.811403214931 0.0240708738565 +415 0.805965423584 0.0240855887532 +SURF 0x10 +mat 7 +refs 4 +415 0.51936674118 0.905423760414 +412 0.516325771809 0.91072589159 +413 0.51362991333 0.907460153103 +414 0.515248000622 0.904638946056 +SURF 0x10 +mat 7 +refs 3 +414 0.515248000622 0.904638946056 +413 0.51362991333 0.907460153103 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 3 +429 0.514673233032 0.901438117027 +414 0.515248000622 0.904638946056 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 4 +428 0.518286526203 0.899408221245 +415 0.51936674118 0.905423760414 +414 0.515248000622 0.904638946056 +429 0.514673233032 0.901438117027 +SURF 0x10 +mat 7 +refs 4 +427 0.798329174519 0.020382059738 +416 0.806362509727 0.0204154886305 +415 0.805965423584 0.0240855887532 +428 0.800002872944 0.0240608006716 +SURF 0x10 +mat 7 +refs 4 +426 0.797443926334 0.0158550553024 +417 0.806579053402 0.0158930476755 +416 0.806362509727 0.0204154886305 +427 0.798329174519 0.020382059738 +SURF 0x10 +mat 7 +refs 4 +425 0.797453820705 0.0110257919878 +418 0.806589007378 0.0110637741163 +417 0.806579053402 0.0158930476755 +426 0.797443926334 0.0158550553024 +SURF 0x10 +mat 7 +refs 4 +424 0.798357784748 0.00647676968947 +419 0.806391119957 0.00651014735922 +418 0.806589007378 0.0110637741163 +425 0.797453820705 0.0110257919878 +SURF 0x10 +mat 7 +refs 4 +423 0.800046682358 0.00275662052445 +420 0.806009232998 0.00278139696456 +419 0.806391119957 0.00651014735922 +424 0.798357784748 0.00647676968947 +SURF 0x10 +mat 7 +refs 4 +422 0.784011781216 0.0167681463063 +421 0.786825418472 0.0151389986277 +420 0.789964795113 0.0178805384785 +423 0.784676849842 0.0209422670305 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +421 0.786825418472 0.0151389986277 +422 0.784011781216 0.0167681463063 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +422 0.784011781216 0.0167681463063 +437 0.780808150768 0.0162066649646 +SURF 0x10 +mat 7 +refs 4 +437 0.780808150768 0.0162066649646 +422 0.784011781216 0.0167681463063 +423 0.784676849842 0.0209422670305 +436 0.778656005859 0.0198870636523 +SURF 0x10 +mat 7 +refs 4 +436 0.778656005859 0.0198870636523 +423 0.784676849842 0.0209422670305 +424 0.785116910934 0.0240855887532 +435 0.777005016804 0.0226638745517 +SURF 0x10 +mat 7 +refs 4 +435 0.151186510921 0.87784665823 +424 0.152369663119 0.871695399284 +425 0.156606391072 0.870207488537 +434 0.155260920525 0.877202451229 +SURF 0x10 +mat 7 +refs 4 +434 0.155260920525 0.877202451229 +425 0.156606391072 0.870207488537 +426 0.161312952638 0.870171666145 +433 0.15996748209 0.877166569233 +SURF 0x10 +mat 7 +refs 4 +433 0.15996748209 0.877166569233 +426 0.161312952638 0.870171666145 +427 0.165921717882 0.87159216404 +432 0.164738506079 0.877743422985 +SURF 0x10 +mat 7 +refs 4 +432 0.164738506079 0.877743422985 +427 0.165921717882 0.87159216404 +428 0.169876754284 0.874297738075 +431 0.168998539448 0.87886339426 +SURF 0x10 +mat 7 +refs 4 +431 0.513590633869 0.895493924618 +428 0.518286526203 0.899408221245 +429 0.514673233032 0.901438117027 +430 0.512174606323 0.89935541153 +SURF 0x10 +mat 7 +refs 3 +430 0.512174606323 0.89935541153 +429 0.514673233032 0.901438117027 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 3 +446 0.508921384811 0.899365246296 +430 0.512174606323 0.89935541153 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 4 +445 0.507476389408 0.895512461662 +431 0.513590633869 0.895493924618 +430 0.512174606323 0.89935541153 +446 0.508921384811 0.899365246296 +SURF 0x10 +mat 7 +refs 4 +444 0.164743587375 0.885977447033 +432 0.164738506079 0.877743422985 +431 0.168998539448 0.87886339426 +445 0.169002339244 0.884974896908 +SURF 0x10 +mat 7 +refs 4 +443 0.159973219037 0.88652998209 +433 0.15996748209 0.877166569233 +432 0.164738506079 0.877743422985 +444 0.164743587375 0.885977447033 +SURF 0x10 +mat 7 +refs 4 +442 0.155266672373 0.886565804482 +434 0.155260920525 0.877202451229 +433 0.15996748209 0.877166569233 +443 0.159973219037 0.88652998209 +SURF 0x10 +mat 7 +refs 4 +441 0.151191562414 0.886080682278 +435 0.151186510921 0.87784665823 +434 0.155260920525 0.877202451229 +442 0.155266672373 0.886565804482 +SURF 0x10 +mat 7 +refs 4 +440 0.774719417095 0.0152085516602 +436 0.778656005859 0.0198870636523 +435 0.777005016804 0.0226638745517 +441 0.771701216698 0.016360534355 +SURF 0x10 +mat 7 +refs 4 +439 0.778713524342 0.0137172844261 +437 0.780808150768 0.0162066649646 +436 0.778656005859 0.0198870636523 +440 0.774719417095 0.0152085516602 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +437 0.780808150768 0.0162066649646 +439 0.778713524342 0.0137172844261 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +439 0.778713524342 0.0137172844261 +454 0.778708040714 0.0104648191482 +SURF 0x10 +mat 7 +refs 4 +454 0.778708040714 0.0104648191482 +439 0.778713524342 0.0137172844261 +440 0.774719417095 0.0152085516602 +453 0.774709045887 0.00909589976072 +SURF 0x10 +mat 7 +refs 4 +453 0.774709045887 0.00909589976072 +440 0.774719417095 0.0152085516602 +441 0.771701216698 0.016360534355 +452 0.771687269211 0.00812501274049 +SURF 0x10 +mat 7 +refs 4 +452 0.152382418513 0.892544746399 +441 0.151191562414 0.886080682278 +442 0.155266672373 0.886565804482 +451 0.156620919704 0.893916428089 +SURF 0x10 +mat 7 +refs 4 +451 0.156620919704 0.893916428089 +442 0.155266672373 0.886565804482 +443 0.159973219037 0.88652998209 +450 0.161327496171 0.893880605698 +SURF 0x10 +mat 7 +refs 4 +450 0.161327496171 0.893880605698 +443 0.159973219037 0.88652998209 +444 0.164743587375 0.885977447033 +449 0.165934503078 0.892441511154 +SURF 0x10 +mat 7 +refs 4 +449 0.165934503078 0.892441511154 +444 0.164743587375 0.885977447033 +445 0.169002339244 0.884974896908 +448 0.169886246324 0.889772713184 +SURF 0x10 +mat 7 +refs 4 +448 0.502804517746 0.8994551301 +445 0.507476389408 0.895512461662 +446 0.508921384811 0.899365246296 +447 0.506435513496 0.901463091373 +SURF 0x10 +mat 7 +refs 3 +447 0.506435513496 0.901463091373 +446 0.508921384811 0.899365246296 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 3 +462 0.505880355835 0.904667377472 +447 0.506435513496 0.901463091373 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 4 +461 0.501761198044 0.905477106571 +448 0.502804517746 0.8994551301 +447 0.506435513496 0.901463091373 +462 0.505880355835 0.904667377472 +SURF 0x10 +mat 7 +refs 4 +460 0.811119019985 0.894585847855 +449 0.803086221218 0.89458823204 +448 0.804771244526 0.890902519226 +461 0.810733377934 0.890900790691 +SURF 0x10 +mat 7 +refs 4 +459 0.811322152615 0.899116337299 +450 0.802187561989 0.899119019508 +449 0.803086221218 0.89458823204 +460 0.811119019985 0.894585847855 +SURF 0x10 +mat 7 +refs 4 +458 0.811318278313 0.903945803642 +451 0.802183687687 0.903948485851 +450 0.802187561989 0.899119019508 +459 0.811322152615 0.899116337299 +SURF 0x10 +mat 7 +refs 4 +457 0.811107933521 0.908491671085 +452 0.803075134754 0.908493995667 +451 0.802183687687 0.903948485851 +458 0.811318278313 0.903945803642 +SURF 0x10 +mat 7 +refs 4 +456 0.81071639061 0.912205636501 +453 0.804754257202 0.912207365036 +452 0.803075134754 0.908493995667 +457 0.811107933521 0.908491671085 +SURF 0x10 +mat 7 +refs 4 +455 0.780794203281 0.00797114335001 +454 0.778708040714 0.0104648191482 +453 0.774709045887 0.00909589976072 +456 0.778629779816 0.00440930621698 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +454 0.778708040714 0.0104648191482 +455 0.780794203281 0.00797114335001 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +455 0.780794203281 0.00797114335001 +470 0.78399592638 0.00740304170176 +SURF 0x10 +mat 7 +refs 4 +470 0.78399592638 0.00740304170176 +455 0.780794203281 0.00797114335001 +456 0.778629779816 0.00440930621698 +469 0.78464704752 0.0033416650258 +SURF 0x10 +mat 7 +refs 4 +469 0.816155135632 0.912223398685 +456 0.81071639061 0.912205636501 +457 0.811107933521 0.908491671085 +468 0.818435430527 0.908515572548 +SURF 0x10 +mat 7 +refs 4 +468 0.818435430527 0.908515572548 +457 0.811107933521 0.908491671085 +458 0.811318278313 0.903945803642 +467 0.819650828838 0.90397298336 +SURF 0x10 +mat 7 +refs 4 +467 0.819650828838 0.90397298336 +458 0.811318278313 0.903945803642 +459 0.811322152615 0.899116337299 +466 0.819654643536 0.899143457413 +SURF 0x10 +mat 7 +refs 4 +466 0.819654643536 0.899143457413 +459 0.811322152615 0.899116337299 +460 0.811119019985 0.894585847855 +465 0.818446516991 0.894609749317 +SURF 0x10 +mat 7 +refs 4 +465 0.818446516991 0.894609749317 +460 0.811119019985 0.894585847855 +461 0.810733377934 0.890900790691 +464 0.816172122955 0.890918493271 +SURF 0x10 +mat 7 +refs 4 +464 0.504834532738 0.910760700703 +461 0.501761198044 0.905477106571 +462 0.505880355835 0.904667377472 +463 0.507515728474 0.907478690147 +SURF 0x10 +mat 7 +refs 3 +463 0.507515728474 0.907478690147 +462 0.505880355835 0.904667377472 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 3 +398 0.510576188564 0.908581674099 +463 0.507515728474 0.907478690147 +471 0.510562479496 0.903802871704 +SURF 0x10 +mat 7 +refs 4 +463 0.507515728474 0.907478690147 +398 0.510576188564 0.908581674099 +399 0.510586559772 0.912833631039 +464 0.504834532738 0.910760700703 +SURF 0x10 +mat 7 +refs 4 +400 0.510592281818 0.916045844555 +465 0.502842664719 0.913253068924 +464 0.504834532738 0.910760700703 +399 0.510586559772 0.912833631039 +SURF 0x10 +mat 7 +refs 4 +401 0.536539912224 0.900033831596 +466 0.527721405029 0.900667846203 +465 0.52877163887 0.896468698978 +400 0.536526560783 0.895911097527 +SURF 0x10 +mat 7 +refs 4 +402 0.536545455456 0.904768288136 +467 0.527726948261 0.905402183533 +466 0.527721405029 0.900667846203 +401 0.536539912224 0.900033831596 +SURF 0x10 +mat 7 +refs 4 +403 0.536542534828 0.909543275833 +468 0.52878767252 0.910100758076 +467 0.527726948261 0.905402183533 +402 0.536545455456 0.904768288136 +SURF 0x10 +mat 7 +refs 4 +404 0.536531448364 0.913783013821 +469 0.530775547028 0.914196848869 +468 0.52878767252 0.910100758076 +403 0.536542534828 0.909543275833 +SURF 0x10 +mat 7 +refs 4 +405 0.786815106869 0.00902635976672 +470 0.78399592638 0.00740304170176 +469 0.78464704752 0.0033416650258 +404 0.789945304394 0.00639250222594 +SURF 0x10 +mat 7 +refs 3 +438 0.783201873302 0.0120666157454 +470 0.78399592638 0.00740304170176 +405 0.786815106869 0.00902635976672 +SURF 0x10 +mat 9 +refs 4 +473 0.113069310784 0.863812744617 +472 0.109376549721 0.864190161228 +479 0.109260194004 0.762004315853 +478 0.112953230739 0.761948406696 +SURF 0x10 +mat 9 +refs 4 +474 0.11652366817 0.864264965057 +473 0.113069310784 0.863812744617 +478 0.112953230739 0.761948406696 +480 0.116407334805 0.762014329433 +SURF 0x10 +mat 9 +refs 4 +475 0.863847136497 0.782302200794 +474 0.867958843708 0.782354712486 +480 0.867834866047 0.886510133743 +481 0.86377620697 0.887168288231 +SURF 0x10 +mat 9 +refs 4 +476 0.100328311324 0.864773213863 +475 0.0967044085264 0.864326298237 +481 0.0965775325894 0.761948406696 +482 0.100201807916 0.762074947357 +SURF 0x10 +mat 9 +refs 4 +477 0.103861749172 0.864279806614 +476 0.100328311324 0.864773213863 +482 0.100201807916 0.762074947357 +483 0.103734821081 0.761966526508 +SURF 0x10 +mat 9 +refs 4 +472 0.858377754688 0.887056708336 +477 0.854244828224 0.887106359005 +483 0.854146420956 0.782302200794 +479 0.8582264781 0.782963275909 +SURF 0x10 +mat 9 +refs 4 +485 0.153749167919 0.863812744617 +484 0.150056362152 0.864190161228 +491 0.149940043688 0.762004256248 +490 0.153633102775 0.761948406696 +SURF 0x10 +mat 9 +refs 4 +486 0.157203540206 0.864265024662 +485 0.153749167919 0.863812744617 +490 0.153633102775 0.761948406696 +492 0.157087132335 0.762014329433 +SURF 0x10 +mat 9 +refs 4 +487 0.873428106308 0.782302200794 +486 0.877539813519 0.782354712486 +492 0.877415895462 0.886510133743 +493 0.873357236385 0.887168288231 +SURF 0x10 +mat 9 +refs 4 +488 0.166352763772 0.864773213863 +487 0.162728846073 0.864326357841 +493 0.162601992488 0.761948406696 +494 0.166226252913 0.762074947357 +SURF 0x10 +mat 9 +refs 4 +489 0.169886246324 0.864279866219 +488 0.166352763772 0.864773213863 +494 0.166226252913 0.762074947357 +495 0.16975928843 0.761966526508 +SURF 0x10 +mat 9 +refs 4 +484 0.35932096839 0.856257200241 +489 0.355188012123 0.85630685091 +495 0.355089604855 0.751502633095 +491 0.359169691801 0.75216370821 +SURF 0x10 +mat 9 +refs 4 +497 0.229825183749 0.960279941559 +496 0.226132392883 0.96065735817 +503 0.22601608932 0.858471512794 +502 0.229709088802 0.858415603638 +SURF 0x10 +mat 9 +refs 4 +498 0.233279570937 0.960732161999 +497 0.229825183749 0.960279941559 +502 0.229709088802 0.858415603638 +504 0.233163177967 0.858481526375 +SURF 0x10 +mat 9 +refs 4 +499 0.7867795825 0.689959704876 +498 0.790671408176 0.691287457943 +504 0.758185505867 0.79024720192 +505 0.754123270512 0.789611518383 +SURF 0x10 +mat 9 +refs 4 +500 0.00775275239721 0.964116930962 +499 0.00412491522729 0.963703393936 +505 0.00305580091663 0.861330986023 +506 0.00668107671663 0.861424088478 +SURF 0x10 +mat 9 +refs 4 +501 0.0112815331668 0.963590979576 +500 0.00775275239721 0.964116930962 +506 0.00668107671663 0.861424088478 +507 0.0102129271254 0.861283183098 +SURF 0x10 +mat 9 +refs 4 +496 0.484428852797 0.901388883591 +501 0.480515956879 0.902720451355 +507 0.447852760553 0.803136110306 +503 0.451936244965 0.802496492863 +SURF 0x10 +mat 9 +refs 4 +502 0.229709088802 0.858415603638 +503 0.22601608932 0.858471512794 +509 0.226022511721 0.844520688057 +508 0.229715555906 0.844724059105 +SURF 0x10 +mat 9 +refs 4 +504 0.233163177967 0.858481526375 +502 0.229709088802 0.858415603638 +508 0.229715555906 0.844724059105 +510 0.233169645071 0.844478487968 +SURF 0x10 +mat 9 +refs 4 +505 0.754123270512 0.789611518383 +504 0.758185505867 0.79024720192 +510 0.758115112782 0.804352581501 +511 0.754003882408 0.804285943508 +SURF 0x10 +mat 9 +refs 4 +506 0.00668107671663 0.861424088478 +505 0.00305580091663 0.861330986023 +511 0.0030422618147 0.846715629101 +512 0.00666670827195 0.846549332142 +SURF 0x10 +mat 9 +refs 4 +507 0.0102129271254 0.861283183098 +506 0.00668107671663 0.861424088478 +512 0.00666670827195 0.846549332142 +513 0.0101995980367 0.846720039845 +SURF 0x10 +mat 9 +refs 4 +503 0.451936244965 0.802496492863 +507 0.447852760553 0.803136110306 +513 0.447734773159 0.788514316082 +509 0.451867431402 0.788443744183 +SURF 0x10 +mat 9 +refs 4 +508 0.229715555906 0.844724059105 +509 0.226022511721 0.844520688057 +514 0.226039916277 0.830144762993 +515 0.229732736945 0.83063352108 +SURF 0x10 +mat 9 +refs 4 +510 0.233169645071 0.844478487968 +508 0.229715555906 0.844724059105 +515 0.229732736945 0.83063352108 +516 0.233187094331 0.830045104027 +SURF 0x10 +mat 9 +refs 4 +511 0.754003882408 0.804285943508 +510 0.758115112782 0.804352581501 +516 0.760152220726 0.819157958031 +517 0.756079733372 0.819729506969 +SURF 0x10 +mat 9 +refs 4 +512 0.00666670827195 0.846549332142 +511 0.0030422618147 0.846715629101 +517 0.00309565127827 0.831549942493 +518 0.00672039482743 0.831096947193 +SURF 0x10 +mat 9 +refs 4 +513 0.0101995980367 0.846720039845 +512 0.00666670827195 0.846549332142 +518 0.00672039482743 0.831096947193 +519 0.0102528762072 0.831612229347 +SURF 0x10 +mat 9 +refs 4 +509 0.451867431402 0.788443744183 +513 0.447734773159 0.788514316082 +519 0.449804037809 0.773129761219 +514 0.453898072243 0.773697257042 +SURF 0x10 +mat 9 +refs 4 +515 0.229732736945 0.83063352108 +514 0.226039916277 0.830144762993 +520 0.22622859478 0.761798202991 +521 0.229921400547 0.762286901474 +SURF 0x10 +mat 9 +refs 4 +516 0.233187094331 0.830045104027 +515 0.229732736945 0.83063352108 +521 0.229921400547 0.762286901474 +522 0.233375772834 0.761698484421 +SURF 0x10 +mat 9 +refs 4 +517 0.756079733372 0.819729506969 +516 0.760152220726 0.819157958031 +522 0.790530085564 0.891884744167 +523 0.786457598209 0.892456293106 +SURF 0x10 +mat 9 +refs 4 +518 0.00672039482743 0.831096947193 +517 0.00309565127827 0.831549942493 +523 0.00397941190749 0.762151420116 +524 0.00760415568948 0.761698365211 +SURF 0x10 +mat 9 +refs 4 +519 0.0102528762072 0.831612229347 +518 0.00672039482743 0.831096947193 +524 0.00760415568948 0.761698365211 +525 0.0111366249621 0.762213647366 +SURF 0x10 +mat 9 +refs 4 +514 0.453898072243 0.773697257042 +519 0.449804037809 0.773129761219 +525 0.480168402195 0.700405597687 +520 0.484262436628 0.700973153114 +kids 0 +OBJECT poly +name "canister.HL" +data 9 +Plane.015 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 131 +1.123723 1.259156 0.039591 +1.129116 1.262619 0.047231 +1.129651 1.259219 0.04761 +1.12947 1.255811 0.047022 +1.128597 1.252806 0.045538 +1.127136 1.250568 0.043336 +1.125263 1.249365 0.040683 +1.123205 1.249343 0.037898 +1.121209 1.250505 0.035318 +1.119516 1.25271 0.033252 +1.118331 1.255693 0.031952 +1.117796 1.259093 0.031573 +1.117976 1.262501 0.032161 +1.118849 1.265506 0.033645 +1.12031 1.267745 0.035847 +1.122183 1.268948 0.0385 +1.124242 1.268969 0.041285 +1.126238 1.267807 0.043865 +1.12793 1.265602 0.04593 +1.1377 1.271593 0.072544 +1.139691 1.258934 0.073956 +1.13902 1.246246 0.071767 +1.135769 1.23506 0.066241 +1.130329 1.226726 0.058045 +1.123357 1.222248 0.048168 +1.115693 1.222167 0.0378 +1.108263 1.226492 0.028193 +1.101961 1.234702 0.020505 +1.097548 1.245806 0.015663 +1.095557 1.258466 0.014251 +1.096228 1.271154 0.01644 +1.099479 1.28234 0.021966 +1.104919 1.290674 0.030162 +1.111891 1.295152 0.040039 +1.119555 1.295233 0.050407 +1.126986 1.290908 0.060014 +1.133287 1.282698 0.067702 +1.119867 1.271389 0.090028 +1.122056 1.257474 0.091579 +1.121319 1.243528 0.089173 +1.117745 1.231234 0.083099 +1.111767 1.222073 0.074091 +1.104103 1.217152 0.063235 +1.09568 1.217062 0.051839 +1.087512 1.221816 0.04128 +1.080586 1.23084 0.032829 +1.075736 1.243046 0.027508 +1.073548 1.256961 0.025956 +1.074285 1.270906 0.028362 +1.077858 1.283201 0.034436 +1.083837 1.292361 0.043444 +1.0915 1.297283 0.054301 +1.099924 1.297372 0.065696 +1.108091 1.292618 0.076256 +1.115017 1.283594 0.084706 +1.108908 1.267811 0.087654 +1.110614 1.256961 0.088863 +1.110039 1.246088 0.086987 +1.107253 1.236501 0.082252 +1.102591 1.229359 0.075228 +1.096616 1.225521 0.066763 +1.090048 1.225452 0.057878 +1.08368 1.229158 0.049644 +1.078279 1.236194 0.043055 +1.074497 1.245711 0.038906 +1.072791 1.256561 0.037696 +1.073366 1.267434 0.039572 +1.076152 1.277021 0.044308 +1.080814 1.284163 0.051332 +1.086789 1.288001 0.059797 +1.093357 1.288071 0.068682 +1.105126 1.277328 0.083504 +1.099725 1.284364 0.076915 +1.110242 1.274725 0.112562 +1.11314 1.256303 0.114616 +1.112164 1.23784 0.11143 +1.107433 1.221563 0.103389 +1.099517 1.209435 0.091463 +1.089372 1.202919 0.07709 +1.07822 1.202801 0.062003 +1.067407 1.209095 0.048023 +1.058237 1.221042 0.036836 +1.051816 1.237201 0.02979 +1.048918 1.255623 0.027736 +1.049894 1.274086 0.030922 +1.054625 1.290362 0.038963 +1.062541 1.30249 0.050889 +1.072687 1.309006 0.065262 +1.083838 1.309125 0.080348 +1.094651 1.302831 0.094329 +1.103822 1.290884 0.105516 +1.084474 1.319182 0.34986 +1.084474 1.135866 0.331326 +1.093521 1.317574 0.365762 +1.093521 1.134259 0.347227 +1.12578 1.296884 0.347606 +1.12578 1.314514 0.173234 +1.084474 1.153497 0.156954 +1.092794 1.155587 0.136282 +1.092794 1.338902 0.154816 +1.084474 1.336812 0.175488 +1.12578 1.175794 0.159208 +1.12578 1.158165 0.33358 +1.11746 1.160794 0.136809 +1.107536 1.155587 0.136282 +1.114925 1.155587 0.136282 +1.13579 1.198832 0.136795 +1.13579 1.29643 0.146663 +1.13579 1.267949 0.428355 +1.13579 1.170351 0.418486 +1.114925 1.159324 0.099313 +0.600289 1.307456 0.465836 +0.600289 1.352229 0.023007 +1.045375 1.352229 0.023008 +1.045375 1.307456 0.465836 +1.045375 1.168913 0.004473 +0.600289 1.168913 0.004473 +0.600289 1.124141 0.447301 +1.045375 1.124141 0.447301 +1.11746 1.333695 0.15429 +1.116733 1.313861 0.365386 +1.116233 1.314886 0.36549 +1.116733 1.137972 0.347603 +1.114925 1.134259 0.347227 +1.114925 1.124141 0.447301 +1.102765 1.317574 0.365762 +1.114925 1.317574 0.365762 +1.114925 1.307456 0.465836 +1.116751 1.335151 0.154437 +1.114925 1.338902 0.154816 +1.114925 1.34264 0.117848 +numsurf 136 +SURF 0x10 +mat 9 +refs 3 +1 0.721972644329 0.927348256111 +0 0.72110337019 0.926179170609 +18 0.721781551838 0.927091240883 +SURF 0x10 +mat 9 +refs 3 +2 0.722058951855 0.92746424675 +0 0.72110337019 0.926179170609 +1 0.721972644329 0.927348256111 +SURF 0x10 +mat 9 +refs 3 +3 0.722029745579 0.927425146103 +0 0.72110337019 0.926179170609 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 3 +4 0.721888959408 0.927235841751 +0 0.72110337019 0.926179170609 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 3 +5 0.721653521061 0.926918983459 +0 0.72110337019 0.926179170609 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 3 +6 0.72135168314 0.926512956619 +0 0.72110337019 0.926179170609 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 3 +7 0.721019804478 0.926066756248 +0 0.72110337019 0.926179170609 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 3 +8 0.720698058605 0.925634026527 +0 0.72110337019 0.926179170609 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 3 +9 0.720425188541 0.925267100334 +0 0.72110337019 0.926179170609 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 3 +10 0.72023409605 0.925010085106 +0 0.72110337019 0.926179170609 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 3 +11 0.720147907734 0.924894213676 +0 0.72110337019 0.926179170609 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 3 +12 0.720176875591 0.924933195114 +0 0.72110337019 0.926179170609 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 3 +13 0.720317661762 0.925122499466 +0 0.72110337019 0.926179170609 +12 0.720176875591 0.924933195114 +SURF 0x10 +mat 9 +refs 3 +14 0.720553219318 0.925439238548 +0 0.72110337019 0.926179170609 +13 0.720317661762 0.925122499466 +SURF 0x10 +mat 9 +refs 3 +15 0.0142893865705 0.386845588684 +0 0.0146232433617 0.387093901634 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 3 +16 0.721186935902 0.926291584969 +0 0.72110337019 0.926179170609 +15 0.72085505724 0.925845265388 +SURF 0x10 +mat 9 +refs 3 +17 0.0151683967561 0.387499213219 +0 0.0146232433617 0.387093901634 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 3 +18 0.721781551838 0.927091240883 +0 0.72110337019 0.926179170609 +17 0.721508681774 0.92672431469 +SURF 0x10 +mat 9 +refs 4 +36 0.0187499970198 0.388635545969 +19 0.019706601277 0.389346837997 +1 0.0157923176885 0.387963145971 +18 0.0155353546143 0.38777205348 +SURF 0x10 +mat 9 +refs 4 +19 0.019706601277 0.389346837997 +20 0.0201382674277 0.389667838812 +2 0.0159082766622 0.38804936409 +1 0.0157923176885 0.387963145971 +SURF 0x10 +mat 9 +refs 4 +20 0.723677396774 0.931694149971 +21 0.723569214344 0.931548833847 +3 0.722029745579 0.927425146103 +2 0.722058951855 0.92746424675 +SURF 0x10 +mat 9 +refs 4 +21 0.723569214344 0.931548833847 +22 0.723045170307 0.930843949318 +4 0.721888959408 0.927235841751 +3 0.722029745579 0.927425146103 +SURF 0x10 +mat 9 +refs 4 +22 0.723045170307 0.930843949318 +23 0.722168266773 0.929664611816 +5 0.721653521061 0.926918983459 +4 0.721888959408 0.927235841751 +SURF 0x10 +mat 9 +refs 4 +23 0.722168266773 0.929664611816 +24 0.721044361591 0.928153157234 +6 0.72135168314 0.926512956619 +5 0.721653521061 0.926918983459 +SURF 0x10 +mat 9 +refs 4 +24 0.721044361591 0.928153157234 +25 0.719808995724 0.926491737366 +7 0.721019804478 0.926066756248 +6 0.72135168314 0.926512956619 +SURF 0x10 +mat 9 +refs 4 +25 0.719808995724 0.926491737366 +26 0.718611180782 0.924880743027 +8 0.720698058605 0.925634026527 +7 0.721019804478 0.926066756248 +SURF 0x10 +mat 9 +refs 4 +26 0.718611180782 0.924880743027 +27 0.717595279217 0.923514604568 +9 0.720425188541 0.925267100334 +8 0.720698058605 0.925634026527 +SURF 0x10 +mat 9 +refs 4 +27 0.717595279217 0.923514604568 +28 0.716884076595 0.92255795002 +10 0.72023409605 0.925010085106 +9 0.720425188541 0.925267100334 +SURF 0x10 +mat 9 +refs 4 +28 0.716884076595 0.92255795002 +29 0.716563045979 0.922126293182 +11 0.720147907734 0.924894213676 +10 0.72023409605 0.925010085106 +SURF 0x10 +mat 9 +refs 4 +29 0.716563045979 0.922126293182 +30 0.716671168804 0.922271609306 +12 0.720176875591 0.924933195114 +11 0.720147907734 0.924894213676 +SURF 0x10 +mat 9 +refs 4 +30 0.0107157044113 0.382661700249 +31 0.0114205479622 0.383185744286 +13 0.0135666038841 0.386308133602 +12 0.0133772883564 0.386167436838 +SURF 0x10 +mat 9 +refs 4 +31 0.0114205479622 0.383185744286 +32 0.0125998761505 0.384062618017 +14 0.0138833634555 0.386543720961 +13 0.0135666038841 0.386308133602 +SURF 0x10 +mat 9 +refs 4 +32 0.0125998761505 0.384062618017 +33 0.014111418277 0.385186553001 +15 0.0142893865705 0.386845588684 +14 0.0138833634555 0.386543720961 +SURF 0x10 +mat 9 +refs 4 +33 0.014111418277 0.385186553001 +34 0.0157728604972 0.386421918869 +16 0.0147356744856 0.387177467346 +15 0.0142893865705 0.386845588684 +SURF 0x10 +mat 9 +refs 4 +34 0.0157728604972 0.386421918869 +35 0.0173838306218 0.38761973381 +17 0.0151683967561 0.387499213219 +16 0.0147356744856 0.387177467346 +SURF 0x10 +mat 9 +refs 4 +35 0.0173838306218 0.38761973381 +36 0.0187499970198 0.388635545969 +18 0.0155353546143 0.38777205348 +17 0.0151683967561 0.387499213219 +SURF 0x10 +mat 9 +refs 4 +54 0.0214624963701 0.385690540075 +37 0.0225139483809 0.386472344398 +19 0.019706601277 0.389346837997 +36 0.0187499970198 0.388635545969 +SURF 0x10 +mat 9 +refs 4 +37 0.0225139483809 0.386472344398 +38 0.0229883790016 0.386825114489 +20 0.0201382674277 0.389667838812 +19 0.019706601277 0.389346837997 +SURF 0x10 +mat 9 +refs 4 +38 0.720834553242 0.934544324875 +39 0.720715820789 0.934384584427 +21 0.723569214344 0.931548833847 +20 0.723677396774 0.931694149971 +SURF 0x10 +mat 9 +refs 4 +39 0.720715820789 0.934384584427 +40 0.720139801502 0.933609843254 +22 0.723045170307 0.930843949318 +21 0.723569214344 0.931548833847 +SURF 0x10 +mat 9 +refs 4 +40 0.720139801502 0.933609843254 +41 0.719175994396 0.932313680649 +23 0.722168266773 0.929664611816 +22 0.723045170307 0.930843949318 +SURF 0x10 +mat 9 +refs 4 +41 0.719175994396 0.932313680649 +42 0.717940628529 0.93065226078 +24 0.721044361591 0.928153157234 +23 0.722168266773 0.929664611816 +SURF 0x10 +mat 9 +refs 4 +42 0.717940628529 0.93065226078 +43 0.716582834721 0.928826093674 +25 0.719808995724 0.926491737366 +24 0.721044361591 0.928153157234 +SURF 0x10 +mat 9 +refs 4 +43 0.716582834721 0.928826093674 +44 0.715266168118 0.927055478096 +26 0.718611180782 0.924880743027 +25 0.719808995724 0.926491737366 +SURF 0x10 +mat 9 +refs 4 +44 0.715266168118 0.927055478096 +45 0.714149653912 0.925553798676 +27 0.717595279217 0.923514604568 +26 0.718611180782 0.924880743027 +SURF 0x10 +mat 9 +refs 4 +45 0.714149653912 0.925553798676 +46 0.713367879391 0.924502372742 +28 0.716884076595 0.92255795002 +27 0.717595279217 0.923514604568 +SURF 0x10 +mat 9 +refs 4 +46 0.713367879391 0.924502372742 +47 0.713015139103 0.924027919769 +29 0.716563045979 0.922126293182 +28 0.716884076595 0.92255795002 +SURF 0x10 +mat 9 +refs 4 +47 0.0124720484018 0.379005610943 +48 0.0126318112016 0.379124432802 +30 0.0107157044113 0.382661700249 +29 0.0105703622103 0.382553577423 +SURF 0x10 +mat 9 +refs 4 +48 0.0126318112016 0.379124432802 +49 0.0134065207094 0.379700422287 +31 0.0114205479622 0.383185744286 +30 0.0107157044113 0.382661700249 +SURF 0x10 +mat 9 +refs 4 +49 0.0134065207094 0.379700422287 +50 0.0147027168423 0.380664259195 +32 0.0125998761505 0.384062618017 +31 0.0114205479622 0.383185744286 +SURF 0x10 +mat 9 +refs 4 +50 0.0147027168423 0.380664259195 +51 0.0163641050458 0.381899565458 +33 0.014111418277 0.385186553001 +32 0.0125998761505 0.384062618017 +SURF 0x10 +mat 9 +refs 4 +51 0.0163641050458 0.381899565458 +52 0.0181902591139 0.383257448673 +34 0.0157728604972 0.386421918869 +33 0.014111418277 0.385186553001 +SURF 0x10 +mat 9 +refs 4 +52 0.0181902591139 0.383257448673 +53 0.0199609138072 0.384573966265 +35 0.0173838306218 0.38761973381 +34 0.0157728604972 0.386421918869 +SURF 0x10 +mat 9 +refs 4 +53 0.0199609138072 0.384573966265 +54 0.0214624963701 0.385690540075 +36 0.0187499970198 0.388635545969 +35 0.0173838306218 0.38761973381 +SURF 0x10 +mat 9 +refs 4 +71 0.021371409297 0.384096026421 +55 0.0221912320703 0.384705603123 +37 0.0225139483809 0.386472344398 +54 0.0214624963701 0.385690540075 +SURF 0x10 +mat 9 +refs 4 +55 0.0221912320703 0.384705603123 +56 0.0225611738861 0.384980678558 +38 0.0229883790016 0.386825114489 +37 0.0225139483809 0.386472344398 +SURF 0x10 +mat 9 +refs 4 +56 0.718990147114 0.934117078781 +57 0.718897521496 0.933992505074 +39 0.720715820789 0.934384584427 +38 0.720834553242 0.934544324875 +SURF 0x10 +mat 9 +refs 4 +57 0.718897521496 0.933992505074 +58 0.718448460102 0.933388471603 +40 0.720139801502 0.933609843254 +39 0.720715820789 0.934384584427 +SURF 0x10 +mat 9 +refs 4 +58 0.718448460102 0.933388471603 +59 0.717696964741 0.932377696037 +41 0.719175994396 0.932313680649 +40 0.720139801502 0.933609843254 +SURF 0x10 +mat 9 +refs 4 +59 0.717696964741 0.932377696037 +60 0.716733753681 0.931082367897 +42 0.717940628529 0.93065226078 +41 0.719175994396 0.932313680649 +SURF 0x10 +mat 9 +refs 4 +60 0.716733753681 0.931082367897 +61 0.715675055981 0.929658532143 +43 0.716582834721 0.928826093674 +42 0.717940628529 0.93065226078 +SURF 0x10 +mat 9 +refs 4 +61 0.715675055981 0.929658532143 +62 0.714648425579 0.928277850151 +44 0.715266168118 0.927055478096 +43 0.716582834721 0.928826093674 +SURF 0x10 +mat 9 +refs 4 +62 0.714648425579 0.928277850151 +63 0.713777840137 0.927106976509 +45 0.714149653912 0.925553798676 +44 0.715266168118 0.927055478096 +SURF 0x10 +mat 9 +refs 4 +63 0.713777840137 0.927106976509 +64 0.713168203831 0.926287174225 +46 0.713367879391 0.924502372742 +45 0.714149653912 0.925553798676 +SURF 0x10 +mat 9 +refs 4 +64 0.713168203831 0.926287174225 +65 0.712893188 0.925917267799 +47 0.713015139103 0.924027919769 +46 0.713367879391 0.924502372742 +SURF 0x10 +mat 9 +refs 4 +65 0.0143613610417 0.378883689642 +66 0.0144859515131 0.378976285458 +48 0.0126318112016 0.379124432802 +47 0.0124720484018 0.379005610943 +SURF 0x10 +mat 9 +refs 4 +66 0.0144859515131 0.378976285458 +67 0.01508997567 0.379425436258 +49 0.0134065207094 0.379700422287 +48 0.0126318112016 0.379124432802 +SURF 0x10 +mat 9 +refs 4 +67 0.01508997567 0.379425436258 +68 0.0161006748676 0.380176991224 +50 0.0147027168423 0.380664259195 +49 0.0134065207094 0.379700422287 +SURF 0x10 +mat 9 +refs 4 +68 0.0161006748676 0.380176991224 +69 0.0173960793763 0.381140112877 +51 0.0163641050458 0.381899565458 +50 0.0147027168423 0.380664259195 +SURF 0x10 +mat 9 +refs 4 +69 0.0173960793763 0.381140112877 +70 0.0188199579716 0.382198870182 +52 0.0181902591139 0.383257448673 +51 0.0163641050458 0.381899565458 +SURF 0x10 +mat 9 +refs 4 +70 0.0188199579716 0.382198870182 +72 0.020200598985 0.383225470781 +53 0.0199609138072 0.384573966265 +52 0.0181902591139 0.383257448673 +SURF 0x10 +mat 9 +refs 4 +72 0.020200598985 0.383225470781 +71 0.021371409297 0.384096026421 +54 0.0214624963701 0.385690540075 +53 0.0199609138072 0.384573966265 +SURF 0x10 +mat 9 +refs 4 +90 0.0246818736196 0.383885681629 +73 0.0260738730431 0.38492077589 +55 0.0221912320703 0.384705603123 +71 0.021371409297 0.384096026421 +SURF 0x10 +mat 9 +refs 4 +73 0.718930184841 0.937629818916 +74 0.719397246838 0.938257932663 +56 0.718990147114 0.934117078781 +55 0.718715131283 0.933747172356 +SURF 0x10 +mat 9 +refs 4 +74 0.719397246838 0.938257932663 +75 0.719240009785 0.938046455383 +57 0.718897521496 0.933992505074 +56 0.718990147114 0.934117078781 +SURF 0x10 +mat 9 +refs 4 +75 0.719240009785 0.938046455383 +76 0.718477427959 0.937020778656 +58 0.718448460102 0.933388471603 +57 0.718897521496 0.933992505074 +SURF 0x10 +mat 9 +refs 4 +76 0.718477427959 0.937020778656 +77 0.717201411724 0.935304641724 +59 0.717696964741 0.932377696037 +58 0.718448460102 0.933388471603 +SURF 0x10 +mat 9 +refs 4 +77 0.717201411724 0.935304641724 +78 0.715565979481 0.933105111122 +60 0.716733753681 0.931082367897 +59 0.717696964741 0.932377696037 +SURF 0x10 +mat 9 +refs 4 +78 0.715565979481 0.933105111122 +79 0.713768184185 0.930687427521 +61 0.715675055981 0.929658532143 +60 0.716733753681 0.931082367897 +SURF 0x10 +mat 9 +refs 4 +79 0.713768184185 0.930687427521 +80 0.712025225163 0.928343296051 +62 0.714648425579 0.928277850151 +61 0.715675055981 0.929658532143 +SURF 0x10 +mat 9 +refs 4 +80 0.712025225163 0.928343296051 +81 0.710547029972 0.926355242729 +63 0.713777840137 0.927106976509 +62 0.714648425579 0.928277850151 +SURF 0x10 +mat 9 +refs 4 +81 0.710547029972 0.926355242729 +82 0.70951205492 0.924963235855 +64 0.713168203831 0.926287174225 +63 0.713777840137 0.927106976509 +SURF 0x10 +mat 9 +refs 4 +82 0.70951205492 0.924963235855 +83 0.709044992924 0.924335122108 +65 0.712893188 0.925917267799 +64 0.713168203831 0.926287174225 +SURF 0x10 +mat 9 +refs 4 +83 0.709044992924 0.924335122108 +84 0.709202229977 0.924546599388 +66 0.712985813618 0.926041841507 +65 0.712893188 0.925917267799 +SURF 0x10 +mat 9 +refs 4 +84 0.709202229977 0.924546599388 +85 0.709964811802 0.925572276115 +67 0.713434994221 0.926645874977 +66 0.712985813618 0.926041841507 +SURF 0x10 +mat 9 +refs 4 +85 0.0140163693577 0.375955313444 +86 0.0157324578613 0.377231329679 +68 0.0161006748676 0.380176991224 +67 0.01508997567 0.379425436258 +SURF 0x10 +mat 9 +refs 4 +86 0.0157324578613 0.377231329679 +87 0.0179319903255 0.378866791725 +69 0.0173960793763 0.381140112877 +68 0.0161006748676 0.380176991224 +SURF 0x10 +mat 9 +refs 4 +87 0.0179319903255 0.378866791725 +88 0.0203496366739 0.380664467812 +70 0.0188199579716 0.382198870182 +69 0.0173960793763 0.381140112877 +SURF 0x10 +mat 9 +refs 4 +88 0.0203496366739 0.380664467812 +89 0.0226938482374 0.382407516241 +72 0.020200598985 0.383225470781 +70 0.0188199579716 0.382198870182 +SURF 0x10 +mat 9 +refs 4 +89 0.0226938482374 0.382407516241 +90 0.0246818736196 0.383885681629 +71 0.021371409297 0.384096026421 +72 0.020200598985 0.383225470781 +SURF 0x10 +mat 9 +refs 4 +127 0.0822017341852 0.385675519705 +93 0.0659876763821 0.382225304842 +91 0.0634112805128 0.380766808987 +114 0.0822017341852 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +93 0.716234862804 0.977543592453 +94 0.716234862804 0.977543592453 +92 0.714776337147 0.974967241287 +91 0.714776337147 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +124 0.719685137272 0.993757665157 +118 0.708473622799 0.993757665157 +92 0.714776337147 0.974967241287 +94 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +91 0.0634112805128 0.380766808987 +100 0.0351593159139 0.380766808987 +113 0.0104542709887 0.374464154243 +SURF 0x10 +mat 9 +refs 4 +91 0.714776337147 0.974967241287 +92 0.714776337147 0.974967241287 +97 0.714776337147 0.94671523571 +100 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +115 0.708473742008 0.922010183334 +97 0.714776337147 0.94671523571 +92 0.714776337147 0.974967241287 +118 0.708473622799 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +120 0.719976484776 0.977543592453 +95 0.721435010433 0.974967241287 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 4 +108 0.0768311172724 0.389038980007 +95 0.0634113550186 0.387425422668 +120 0.0659876763821 0.38596701622 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 3 +125 0.0659876763821 0.383715420961 +93 0.0659876763821 0.382225304842 +127 0.0822017341852 0.385675519705 +SURF 0x10 +mat 9 +refs 4 +125 0.717724859715 0.977543592453 +123 0.719685137272 0.977543592453 +94 0.716234862804 0.977543592453 +93 0.716234862804 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +94 0.716234862804 0.977543592453 +123 0.719685137272 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +104 0.718493998051 0.943365931511 +129 0.719685137272 0.943365931511 +99 0.716117680073 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +129 0.0318100675941 0.385675609112 +130 0.0258204042912 0.385675609112 +113 0.0104542709887 0.374464154243 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 3 +115 0.708473742008 0.922010183334 +104 0.718493998051 0.943365931511 +98 0.716117560863 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +101 0.721435010433 0.94671523571 +102 0.721435010433 0.974967241287 +95 0.721435010433 0.974967241287 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +96 0.0351593159139 0.387425422668 +95 0.0634113550186 0.387425422668 +108 0.0768311172724 0.389038980007 +SURF 0x10 +mat 9 +refs 4 +107 0.0311910770833 0.389038980007 +130 0.0258204042912 0.385675609112 +119 0.0318100675941 0.386084258556 +96 0.0351593159139 0.387425422668 +SURF 0x10 +mat 9 +refs 4 +119 0.720093667507 0.943365931511 +103 0.720093667507 0.943365931511 +101 0.721435010433 0.94671523571 +96 0.721435010433 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +106 0.723048508167 0.94274699688 +101 0.721435010433 0.94671523571 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +124 0.719685137272 0.993757665157 +122 0.719976484776 0.977543592453 +102 0.721435010433 0.974967241287 +SURF 0x10 +mat 9 +refs 3 +98 0.716117560863 0.943365931511 +97 0.714776337147 0.94671523571 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +98 0.716117560863 0.943365931511 +99 0.716117680073 0.943365931511 +100 0.714776337147 0.94671523571 +97 0.714776337147 0.94671523571 +SURF 0x10 +mat 9 +refs 3 +113 0.0104542709887 0.374464154243 +100 0.0351593159139 0.380766808987 +99 0.0318100675941 0.38210812211 +SURF 0x10 +mat 9 +refs 4 +109 0.723048388958 0.98838698864 +102 0.721435010433 0.974967241287 +101 0.721435010433 0.94671523571 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +122 0.719976484776 0.977543592453 +123 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +120 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +123 0.719685137272 0.977543592453 +125 0.717724859715 0.977543592453 +126 0.719685137272 0.977543592453 +121 0.719896018505 0.977543592453 +SURF 0x10 +mat 9 +refs 4 +128 0.719979465008 0.943365931511 +105 0.719685137272 0.943365931511 +103 0.720093667507 0.943365931511 +119 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +104 0.718493998051 0.943365931511 +105 0.719685137272 0.943365931511 +128 0.719979465008 0.943365931511 +129 0.719685137272 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +105 0.719685137272 0.943365931511 +110 0.719685137272 0.937376379967 +106 0.723048508167 0.94274699688 +103 0.720093667507 0.943365931511 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +105 0.719685137272 0.943365931511 +104 0.718493998051 0.943365931511 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +106 0.723048508167 0.94274699688 +107 0.723048388958 0.94274699688 +108 0.723048388958 0.988387048244 +109 0.723048388958 0.98838698864 +SURF 0x10 +mat 9 +refs 4 +110 0.719685137272 0.937376379967 +130 0.719685137272 0.937376379967 +107 0.723048388958 0.94274699688 +106 0.723048508167 0.94274699688 +SURF 0x10 +mat 9 +refs 4 +127 0.719685018063 0.993757665157 +124 0.719685137272 0.993757665157 +109 0.723048388958 0.98838698864 +108 0.723048388958 0.988387048244 +SURF 0x10 +mat 9 +refs 4 +114 0.708473622799 0.993757665157 +118 0.708473622799 0.993757665157 +124 0.719685137272 0.993757665157 +127 0.719685018063 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +130 0.719685137272 0.937376379967 +110 0.719685137272 0.937376379967 +115 0.708473742008 0.922010183334 +113 0.708473622799 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +116 0.636726200581 0.922010183334 +112 0.636726200581 0.922010183334 +113 0.708473622799 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +117 0.636726200581 0.993757665157 +111 0.636726200581 0.993757665157 +112 0.636726200581 0.922010183334 +116 0.636726200581 0.922010183334 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +114 0.708473622799 0.993757665157 +111 0.636726200581 0.993757665157 +117 0.636726200581 0.993757665157 +SURF 0x10 +mat 9 +refs 4 +114 0.0822017341852 0.374464154243 +113 0.0104542709887 0.374464154243 +112 0.0104542300105 0.302716702223 +111 0.0822017341852 0.302716642618 +SURF 0x10 +mat 9 +refs 4 +118 0.708473622799 0.993757665157 +117 0.636726200581 0.993757665157 +116 0.636726200581 0.922010183334 +115 0.708473742008 0.922010183334 +SURF 0x10 +mat 9 +refs 3 +119 0.0318100675941 0.386084258556 +130 0.0258204042912 0.385675609112 +128 0.0318100675941 0.385969936848 +SURF 0x10 +mat 9 +refs 3 +121 0.0659876763821 0.385886520147 +127 0.0822017341852 0.385675519705 +120 0.0659876763821 0.38596701622 +SURF 0x10 +mat 9 +refs 3 +126 0.0659876763821 0.385675609112 +127 0.0822017341852 0.385675519705 +121 0.0659876763821 0.385886520147 +SURF 0x10 +mat 9 +refs 3 +124 0.719685137272 0.993757665157 +123 0.719685137272 0.977543592453 +122 0.719976484776 0.977543592453 +SURF 0x10 +mat 9 +refs 3 +127 0.0822017341852 0.385675519705 +126 0.0659876763821 0.385675609112 +125 0.0659876763821 0.383715420961 +SURF 0x10 +mat 9 +refs 3 +130 0.0258204042912 0.385675609112 +129 0.0318100675941 0.385675609112 +128 0.0318100675941 0.385969936848 +kids 0 +OBJECT poly +name "screenglass" +data 8 +Cube.008 +crease 30 +numvert 8 +1.546748 1.634888 -0.02227 +1.546748 1.634888 0.022271 +1.444319 1.324749 0.022271 +1.444319 1.324749 -0.02227 +1.546748 1.634888 -0.620687 +1.546748 1.634889 0.620687 +1.444319 1.324749 0.620687 +1.444319 1.324749 -0.620687 +numsurf 2 +SURF 0x00 +mat 13 +refs 4 +1 0 0 +2 0 0 +6 0 0 +5 0 0 +SURF 0x00 +mat 13 +refs 4 +0 0 0 +4 0 0 +7 0 0 +3 0 0 +kids 0 +OBJECT poly +name "rwheel2.L" +data 10 +Circle.024 +texture "jeep-1.png" +texrep 1 1 +crease 30 +numvert 288 +2.941645 0.727265 0.639958 +2.850588 0.779837 0.639958 +2.749027 0.80705 0.639958 +2.643883 0.80705 0.639958 +2.542322 0.779837 0.639958 +2.451264 0.727265 0.639958 +2.376916 0.652917 0.639958 +2.324344 0.56186 0.639958 +2.297131 0.460298 0.639958 +2.297131 0.355155 0.639958 +2.324345 0.253593 0.639958 +2.376917 0.162536 0.639958 +2.451265 0.088188 0.639958 +2.542322 0.035616 0.639958 +2.643883 0.008403 0.639958 +2.749027 0.008403 0.639958 +2.850588 0.035616 0.639958 +2.941646 0.088188 0.639958 +3.015994 0.162536 0.639958 +3.068566 0.253594 0.639958 +3.095779 0.355155 0.639958 +3.095779 0.460299 0.639958 +3.068566 0.56186 0.639958 +3.015994 0.652917 0.639958 +2.941645 0.727265 0.708485 +2.899577 0.759545 0.639958 +2.850588 0.779837 0.708485 +2.801599 0.800129 0.639958 +2.749027 0.80705 0.708485 +2.696455 0.813972 0.639958 +2.643883 0.80705 0.708485 +2.591311 0.800129 0.639958 +2.542322 0.779837 0.708485 +2.493332 0.759545 0.639958 +2.451264 0.727265 0.708485 +2.409196 0.694985 0.639958 +2.376916 0.652917 0.708485 +2.344636 0.610849 0.639958 +2.324344 0.56186 0.708485 +2.304053 0.51287 0.639958 +2.297131 0.460298 0.708485 +2.29021 0.407726 0.639958 +2.297131 0.355154 0.708485 +2.304053 0.302583 0.639958 +2.324345 0.253593 0.708485 +2.344637 0.204604 0.639958 +2.376917 0.162536 0.708485 +2.451265 0.088188 0.708485 +2.409197 0.120468 0.639958 +2.493333 0.055908 0.639958 +2.542322 0.035616 0.708485 +2.591311 0.015324 0.639958 +2.643883 0.008403 0.708485 +2.696455 0.001482 0.639958 +2.749027 0.008403 0.708485 +2.850588 0.035616 0.708485 +2.801599 0.015324 0.639958 +2.899578 0.055908 0.639958 +2.941646 0.088188 0.708485 +2.983714 0.120468 0.639958 +3.015994 0.162536 0.708485 +3.048274 0.204604 0.639958 +3.068566 0.253593 0.708485 +3.095779 0.355155 0.708485 +3.088858 0.302583 0.639958 +3.1027 0.407727 0.639958 +3.095779 0.460299 0.708485 +3.068566 0.56186 0.708485 +3.088858 0.512871 0.639958 +2.983714 0.694985 0.639958 +3.015994 0.652917 0.708485 +3.048274 0.610849 0.639958 +2.941645 0.727265 0.571432 +2.850588 0.779837 0.571432 +2.749027 0.80705 0.571432 +2.643883 0.80705 0.571432 +2.542322 0.779837 0.571432 +2.451264 0.727265 0.571432 +2.376916 0.652917 0.571432 +2.324344 0.56186 0.571432 +2.297131 0.460298 0.571432 +2.297131 0.355154 0.571432 +2.324345 0.253593 0.571432 +2.376917 0.162536 0.571432 +2.451265 0.088188 0.571432 +2.542322 0.035616 0.571432 +2.643883 0.008403 0.571432 +2.749027 0.008403 0.571432 +2.850588 0.035616 0.571432 +2.941646 0.088188 0.571432 +3.015994 0.162536 0.571432 +3.068566 0.253593 0.571432 +3.095779 0.355155 0.571432 +3.095779 0.460299 0.571432 +3.068566 0.56186 0.571432 +3.015994 0.652917 0.571432 +2.830829 0.640469 0.538809 +2.766012 0.667317 0.538809 +2.696455 0.676475 0.538809 +2.626898 0.667317 0.538809 +2.562081 0.640469 0.538809 +2.506422 0.59776 0.538809 +2.463712 0.5421 0.538809 +2.436864 0.477284 0.538809 +2.427707 0.407726 0.538809 +2.436865 0.338169 0.538809 +2.463713 0.273353 0.538809 +2.506422 0.217693 0.538809 +2.562081 0.174984 0.538809 +2.626898 0.148136 0.538809 +2.696455 0.138979 0.538809 +2.766012 0.148136 0.538809 +2.830829 0.174984 0.538809 +2.886489 0.217693 0.538809 +2.929198 0.273353 0.538809 +2.956046 0.33817 0.538809 +2.965203 0.407727 0.538809 +2.956046 0.477284 0.538809 +2.886488 0.59776 0.538809 +2.929198 0.542101 0.538809 +2.849637 0.673046 0.538809 +2.775748 0.703652 0.538809 +2.696455 0.714091 0.538809 +2.617162 0.703652 0.538809 +2.543273 0.673046 0.538809 +2.479823 0.624359 0.538809 +2.431136 0.560908 0.538809 +2.40053 0.487019 0.538809 +2.390091 0.407726 0.538809 +2.40053 0.328434 0.538809 +2.431136 0.254544 0.538809 +2.479823 0.191094 0.538809 +2.543273 0.142407 0.538809 +2.617162 0.111802 0.538809 +2.696455 0.101362 0.538809 +2.775748 0.111802 0.538809 +2.849637 0.142407 0.538809 +2.913087 0.191095 0.538809 +2.961774 0.254545 0.538809 +2.99238 0.328434 0.538809 +3.002819 0.407727 0.538809 +2.99238 0.487019 0.538809 +2.913087 0.624359 0.538809 +2.961774 0.560909 0.538809 +2.881751 0.728669 0.563845 +2.792371 0.765692 0.563845 +2.696455 0.778319 0.563845 +2.600538 0.765691 0.563845 +2.511159 0.728669 0.563845 +2.434407 0.669775 0.563845 +2.375512 0.593023 0.563845 +2.33849 0.503643 0.563845 +2.325863 0.407726 0.563845 +2.33849 0.31181 0.563845 +2.375513 0.22243 0.563845 +2.434407 0.145678 0.563845 +2.511159 0.086784 0.563845 +2.600539 0.049762 0.563845 +2.696455 0.037134 0.563845 +2.792372 0.049762 0.563845 +2.881752 0.086784 0.563845 +2.958503 0.145678 0.563845 +3.017398 0.22243 0.563845 +3.05442 0.31181 0.563845 +3.067048 0.407727 0.563845 +3.05442 0.503643 0.563845 +3.017398 0.593023 0.563845 +2.958503 0.669775 0.563845 +2.830074 0.639162 0.720245 +2.765621 0.665859 0.720245 +2.696455 0.674965 0.720245 +2.627289 0.665859 0.720245 +2.562836 0.639162 0.720245 +2.507489 0.596692 0.720245 +2.46502 0.541346 0.720245 +2.438323 0.476893 0.720245 +2.429217 0.407726 0.720245 +2.438323 0.33856 0.720245 +2.46502 0.274107 0.720245 +2.507489 0.21876 0.720245 +2.562836 0.176291 0.720245 +2.627289 0.149594 0.720245 +2.696455 0.140488 0.720245 +2.765622 0.149594 0.720245 +2.830074 0.176291 0.720245 +2.885421 0.218761 0.720245 +2.92789 0.274107 0.720245 +2.954587 0.33856 0.720245 +2.963693 0.407727 0.720245 +2.954587 0.476893 0.720245 +2.885421 0.596693 0.720245 +2.92789 0.541346 0.720245 +2.853613 0.679932 0.732764 +2.777806 0.711333 0.732764 +2.696455 0.722043 0.732764 +2.615104 0.711332 0.732764 +2.539297 0.679932 0.732764 +2.4742 0.629981 0.732764 +2.424249 0.564884 0.732764 +2.392849 0.489077 0.732763 +2.382139 0.407726 0.732763 +2.392849 0.326375 0.732764 +2.424249 0.250569 0.732764 +2.4742 0.185471 0.732764 +2.539297 0.135521 0.732764 +2.615104 0.104121 0.732764 +2.696455 0.093411 0.732764 +2.777806 0.104121 0.732764 +2.853613 0.135521 0.732764 +2.91871 0.185472 0.732764 +2.968661 0.250569 0.732764 +3.000061 0.326376 0.732764 +3.010771 0.407727 0.732763 +3.000061 0.489078 0.732763 +2.91871 0.629982 0.732764 +2.968661 0.564885 0.732764 +2.881688 0.72856 0.711899 +2.792339 0.76557 0.711899 +2.696455 0.778193 0.711899 +2.600571 0.76557 0.711899 +2.511222 0.72856 0.711899 +2.434496 0.669686 0.711899 +2.375622 0.59296 0.711899 +2.338612 0.50361 0.711899 +2.325989 0.407726 0.711899 +2.338612 0.311843 0.711899 +2.375622 0.222493 0.711899 +2.434496 0.145767 0.711899 +2.511222 0.086893 0.711899 +2.600571 0.049884 0.711899 +2.696455 0.03726 0.711899 +2.792339 0.049884 0.711899 +2.881688 0.086893 0.711899 +2.958414 0.145767 0.711899 +3.017288 0.222493 0.711899 +3.054298 0.311843 0.711899 +3.066921 0.407727 0.711899 +3.054298 0.50361 0.711899 +3.017288 0.59296 0.711899 +2.958414 0.669686 0.711899 +2.899577 0.759545 0.691035 +2.801599 0.800129 0.691035 +2.696455 0.813972 0.691035 +2.591311 0.800129 0.691035 +2.493332 0.759545 0.691035 +2.409196 0.694985 0.691035 +2.344636 0.610849 0.691035 +2.304053 0.51287 0.691035 +2.29021 0.407726 0.691035 +2.304053 0.302583 0.691035 +2.344637 0.204604 0.691035 +2.409197 0.120468 0.691035 +2.493333 0.055908 0.691035 +2.591311 0.015324 0.691035 +2.696455 0.001482 0.691035 +2.801599 0.015324 0.691035 +2.899578 0.055908 0.691035 +2.983714 0.120468 0.691035 +3.048274 0.204604 0.691035 +3.088858 0.302583 0.691035 +3.1027 0.407727 0.691035 +3.088858 0.512871 0.691035 +3.048274 0.610849 0.691035 +2.983714 0.694985 0.691035 +2.899577 0.759545 0.588882 +2.801599 0.800129 0.588882 +2.696455 0.813972 0.588882 +2.591311 0.800129 0.588882 +2.493332 0.759545 0.588882 +2.409196 0.694985 0.588882 +2.344636 0.610849 0.588882 +2.304053 0.51287 0.588882 +2.29021 0.407726 0.588882 +2.304053 0.302583 0.588882 +2.344637 0.204604 0.588882 +2.409197 0.120468 0.588882 +2.493333 0.055908 0.588882 +2.591311 0.015324 0.588882 +2.696455 0.001482 0.588882 +2.801599 0.015324 0.588882 +2.899578 0.055908 0.588882 +2.983714 0.120468 0.588882 +3.048274 0.204604 0.588882 +3.088858 0.302583 0.588882 +3.1027 0.407727 0.588882 +3.088858 0.512871 0.588882 +3.048274 0.610849 0.588882 +2.983714 0.694985 0.588882 +numsurf 336 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +287 0.178452908993 0.524567306042 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +264 0.165624529123 0.534410893917 +72 0.172038733959 0.529489099979 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +72 0.172038733959 0.529489099979 +167 0.174609094858 0.520723462105 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +264 0.165624529123 0.534410893917 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +265 0.150685578585 0.540598809719 +73 0.158155053854 0.537504851818 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +73 0.158155053854 0.537504851818 +144 0.162906527519 0.529703140259 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +265 0.150685578585 0.540598809719 +145 0.149278670549 0.535348057747 +SURF 0x10 +mat 10 +refs 3 +266 0.134654119611 0.542709350586 +74 0.142669856548 0.54165405035 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +74 0.142669856548 0.54165405035 +145 0.149278670549 0.535348057747 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +266 0.134654119611 0.542709350586 +146 0.134654119611 0.537273347378 +SURF 0x10 +mat 10 +refs 3 +267 0.118622675538 0.540598809719 +75 0.126638397574 0.54165405035 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +75 0.126638397574 0.54165405035 +146 0.134654119611 0.537273347378 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +267 0.118622675538 0.540598809719 +147 0.120029598475 0.535347998142 +SURF 0x10 +mat 10 +refs 3 +268 0.103683710098 0.534410893917 +76 0.111153200269 0.537504792213 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +76 0.111153200269 0.537504792213 +147 0.120029598475 0.535347998142 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +268 0.103683710098 0.534410893917 +148 0.106401756406 0.529703140259 +SURF 0x10 +mat 10 +refs 3 +269 0.0908553749323 0.524567246437 +77 0.0972695350647 0.529489040375 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +77 0.0972695350647 0.529489040375 +148 0.106401756406 0.529703140259 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +269 0.0908553749323 0.524567246437 +149 0.0946992188692 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +270 0.0810118317604 0.511738836765 +78 0.0859335958958 0.518153131008 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +78 0.0859335958958 0.518153131008 +149 0.0946992188692 0.520723462105 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +270 0.0810118317604 0.511738836765 +150 0.0857195258141 0.509020864964 +SURF 0x10 +mat 10 +refs 3 +271 0.0748239308596 0.496799945831 +79 0.0779178887606 0.504269421101 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +79 0.0779178887606 0.504269421101 +150 0.0857195258141 0.509020864964 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +271 0.0748239308596 0.496799945831 +151 0.0800746977329 0.495393037796 +SURF 0x10 +mat 10 +refs 3 +272 0.0727133601904 0.480768471956 +80 0.0737686306238 0.488784253597 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +80 0.0737686306238 0.488784253597 +151 0.0800746977329 0.495393037796 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +272 0.0727133601904 0.480768471956 +152 0.0781493484974 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +273 0.0748239308596 0.464737027884 +81 0.0737686306238 0.47275274992 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +81 0.0737686306238 0.47275274992 +152 0.0781493484974 0.480768471956 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +273 0.0748239308596 0.464737027884 +153 0.0800746977329 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +274 0.0810118466616 0.449798107147 +82 0.0779178887606 0.457267582417 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +82 0.0779178887606 0.457267582417 +153 0.0800746977329 0.466143995523 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +274 0.0810118466616 0.449798107147 +154 0.0857195854187 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +275 0.0908554345369 0.436969727278 +83 0.0859336405993 0.443383902311 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +83 0.0859336405993 0.443383902311 +154 0.0857195854187 0.452516138554 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +275 0.0908554345369 0.436969727278 +155 0.0946992486715 0.440813541412 +SURF 0x10 +mat 10 +refs 3 +276 0.103683769703 0.427126199007 +84 0.0972696095705 0.43204793334 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +84 0.0972696095705 0.43204793334 +155 0.0946992486715 0.440813541412 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +276 0.103683769703 0.427126199007 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 3 +277 0.118622720242 0.420938313007 +85 0.111153259873 0.424032241106 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +85 0.111153259873 0.424032241106 +156 0.106401786208 0.431833893061 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +277 0.118622720242 0.420938313007 +157 0.120029658079 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +278 0.134654194117 0.418827682734 +86 0.12663847208 0.419883012772 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +86 0.12663847208 0.419883012772 +157 0.120029658079 0.42618906498 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +278 0.134654194117 0.418827682734 +158 0.134654179215 0.424263685942 +SURF 0x10 +mat 10 +refs 3 +279 0.15068565309 0.420938313007 +87 0.142669931054 0.419883012772 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +87 0.142669931054 0.419883012772 +158 0.134654179215 0.424263685942 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +279 0.15068565309 0.420938313007 +159 0.149278700352 0.42618906498 +SURF 0x10 +mat 10 +refs 3 +280 0.165624588728 0.427126228809 +88 0.15815512836 0.424032270908 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +88 0.15815512836 0.424032270908 +159 0.149278700352 0.42618906498 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +280 0.165624588728 0.427126228809 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 3 +281 0.178452938795 0.436969786882 +89 0.17203874886 0.432047963142 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +89 0.17203874886 0.432047963142 +160 0.162906616926 0.431833952665 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +281 0.178452938795 0.436969786882 +161 0.17460912466 0.440813601017 +SURF 0x10 +mat 10 +refs 3 +282 0.188296467066 0.44979813695 +90 0.18337470293 0.443383932114 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +90 0.18337470293 0.443383932114 +161 0.17460912466 0.440813601017 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +282 0.188296467066 0.44979813695 +162 0.183588787913 0.452516138554 +SURF 0x10 +mat 10 +refs 3 +283 0.194484397769 0.464737057686 +91 0.191390439868 0.457267612219 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +91 0.191390439868 0.457267612219 +162 0.183588787913 0.452516138554 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +283 0.194484397769 0.464737057686 +163 0.189233630896 0.466143995523 +SURF 0x10 +mat 10 +refs 3 +284 0.196594953537 0.480768531561 +92 0.195539683104 0.472752779722 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +92 0.195539683104 0.472752779722 +163 0.189233630896 0.466143995523 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +284 0.196594953537 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +285 0.194484397769 0.496799975634 +93 0.195539683104 0.488784253597 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +93 0.195539683104 0.488784253597 +164 0.191158980131 0.480768531561 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +285 0.194484397769 0.496799975634 +165 0.189233630896 0.495393067598 +SURF 0x10 +mat 10 +refs 3 +286 0.188296467066 0.51173889637 +94 0.191390439868 0.504269480705 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +94 0.191390439868 0.504269480705 +165 0.189233630896 0.495393067598 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +286 0.188296467066 0.51173889637 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 3 +287 0.178452908993 0.524567306042 +95 0.183374688029 0.518153131008 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +95 0.183374688029 0.518153131008 +166 0.183588787913 0.509020924568 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +240 0.165624529123 0.534410893917 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +263 0.178452908993 0.524567306042 +24 0.172038733959 0.529489099979 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +24 0.172038733959 0.529489099979 +216 0.162896901369 0.529686510563 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +241 0.150685578585 0.540598809719 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +240 0.165624529123 0.534410893917 +26 0.158155053854 0.537504851818 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +26 0.158155053854 0.537504851818 +217 0.149273663759 0.535329461098 +216 0.162896901369 0.529686510563 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +242 0.134654119611 0.542709350586 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +241 0.150685578585 0.540598809719 +28 0.142669856548 0.54165405035 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +28 0.142669856548 0.54165405035 +218 0.134654119611 0.537254154682 +217 0.149273663759 0.535329461098 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +243 0.118622675538 0.540598809719 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +242 0.134654119611 0.542709350586 +30 0.126638397574 0.54165405035 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +30 0.126638397574 0.54165405035 +219 0.120034605265 0.535329401493 +218 0.134654119611 0.537254154682 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +244 0.103683710098 0.534410834312 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +243 0.118622675538 0.540598809719 +32 0.111153200269 0.537504792213 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +32 0.111153200269 0.537504792213 +220 0.106411337852 0.529686450958 +219 0.120034605265 0.535329401493 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +245 0.0908553749323 0.524567246437 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +244 0.103683710098 0.534410834312 +34 0.0972695350647 0.529489040375 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +34 0.0972695350647 0.529489040375 +221 0.0947128087282 0.520709812641 +220 0.106411337852 0.529686450958 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +246 0.0810118317604 0.511738836765 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +245 0.0908553749323 0.524567246437 +36 0.0859335958958 0.518153131008 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +36 0.0859335958958 0.518153131008 +222 0.0857362151146 0.509011268616 +221 0.0947128087282 0.520709812641 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +247 0.0748239308596 0.496799916029 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +246 0.0810118317604 0.511738836765 +38 0.0779178887606 0.504269421101 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +38 0.0779178887606 0.504269421101 +223 0.0800932794809 0.495388031006 +222 0.0857362151146 0.509011268616 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +248 0.0727133601904 0.480768471956 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +247 0.0748239308596 0.496799916029 +40 0.0737686306238 0.488784193993 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +40 0.0737686306238 0.488784193993 +224 0.0781685709953 0.480768471956 +223 0.0800932794809 0.495388031006 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +249 0.0748239308596 0.464737027884 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +248 0.0727133601904 0.480768471956 +42 0.0737686306238 0.47275274992 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +42 0.0737686306238 0.47275274992 +225 0.0800932794809 0.466148912907 +224 0.0781685709953 0.480768471956 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +250 0.0810118466616 0.449798107147 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +249 0.0748239308596 0.464737027884 +44 0.0779178887606 0.457267582417 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +44 0.0779178887606 0.457267582417 +226 0.0857362300158 0.452525675297 +225 0.0800932794809 0.466148912907 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +251 0.0908554345369 0.436969727278 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +250 0.0810118466616 0.449798107147 +46 0.0859336405993 0.443383902311 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +46 0.0859336405993 0.443383902311 +227 0.0947128683329 0.440827161074 +226 0.0857362300158 0.452525675297 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +252 0.103683769703 0.427126199007 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +251 0.0908554345369 0.436969727278 +47 0.0972696095705 0.43204793334 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +47 0.0972696095705 0.43204793334 +228 0.106411382556 0.431850552559 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +253 0.118622720242 0.420938313007 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +252 0.103683769703 0.427126199007 +50 0.111153259873 0.424032241106 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +50 0.111153259873 0.424032241106 +229 0.120034620166 0.426207602024 +228 0.106411382556 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +254 0.134654194117 0.418827682734 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +253 0.118622720242 0.420938313007 +52 0.12663847208 0.419883012772 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +52 0.12663847208 0.419883012772 +230 0.134654179215 0.424282938242 +229 0.120034620166 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +255 0.15068565309 0.420938313007 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +254 0.134654194117 0.418827682734 +54 0.142669931054 0.419883012772 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +54 0.142669931054 0.419883012772 +231 0.149273738265 0.426207602024 +230 0.134654179215 0.424282938242 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +256 0.165624588728 0.427126228809 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +255 0.15068565309 0.420938313007 +55 0.15815512836 0.424032270908 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +55 0.15815512836 0.424032270908 +232 0.162896946073 0.431850552559 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +257 0.178452938795 0.436969786882 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +256 0.165624588728 0.427126228809 +58 0.17203874886 0.432047963142 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +58 0.17203874886 0.432047963142 +233 0.1745955199 0.440827220678 +232 0.162896946073 0.431850552559 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +258 0.188296467066 0.44979813695 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +257 0.178452938795 0.436969786882 +60 0.18337470293 0.443383932114 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +60 0.18337470293 0.443383932114 +234 0.183572113514 0.452525734901 +233 0.1745955199 0.440827220678 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +259 0.194484397769 0.464737057686 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +258 0.188296467066 0.44979813695 +62 0.191390439868 0.457267612219 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +62 0.191390439868 0.457267612219 +235 0.189215064049 0.466149002314 +234 0.183572113514 0.452525734901 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +260 0.196594953537 0.480768531561 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +259 0.194484397769 0.464737057686 +63 0.195539683104 0.472752779722 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +63 0.195539683104 0.472752779722 +236 0.191139742732 0.480768531561 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +261 0.194484397769 0.496799975634 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +260 0.196594953537 0.480768531561 +66 0.195539683104 0.488784253597 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +66 0.195539683104 0.488784253597 +237 0.189215064049 0.495388060808 +236 0.191139742732 0.480768531561 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +262 0.188296467066 0.51173889637 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +261 0.194484397769 0.496799975634 +67 0.191390439868 0.504269480705 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +67 0.191390439868 0.504269480705 +238 0.183572113514 0.50901132822 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +263 0.178452908993 0.524567306042 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 3 +262 0.188296467066 0.51173889637 +70 0.183374688029 0.518153131008 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 3 +70 0.183374688029 0.518153131008 +239 0.174595504999 0.520709872246 +238 0.183572113514 0.50901132822 +SURF 0x10 +mat 10 +refs 4 +24 0.00655085407197 0.452727437019 +0 0.0154595961794 0.452727437019 +25 0.0154596110806 0.458196461201 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +72 0.0243683308363 0.452727437019 +264 0.022099763155 0.458196461201 +25 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +0 0.0154595961794 0.452727437019 +24 0.00655085407197 0.452727437019 +263 0.00881944410503 0.447258412838 +69 0.0154596073553 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +72 0.0243683308363 0.452727437019 +0 0.0154595961794 0.452727437019 +69 0.0154596073553 0.447258412838 +287 0.022099763155 0.447258412838 +SURF 0x10 +mat 10 +refs 4 +25 0.0154596110806 0.458196461201 +1 0.0154595961794 0.464565306902 +26 0.00655088014901 0.464565306902 +240 0.00881944410503 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +1 0.0154595961794 0.464565306902 +27 0.0154596110806 0.470934122801 +241 0.00881944410503 0.470934122801 +26 0.00655088014901 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +264 0.022099763155 0.458196461201 +73 0.0243683308363 0.464565306902 +1 0.0154595961794 0.464565306902 +25 0.0154596110806 0.458196461201 +SURF 0x10 +mat 10 +refs 4 +73 0.0243683308363 0.464565306902 +265 0.022099763155 0.470934122801 +27 0.0154596110806 0.470934122801 +1 0.0154595961794 0.464565306902 +SURF 0x10 +mat 10 +refs 4 +27 0.0154596110806 0.470934122801 +2 0.0154595961794 0.477768719196 +28 0.00655088014901 0.477768719196 +241 0.00881944410503 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +2 0.0154595961794 0.477768719196 +29 0.0154596110806 0.484603285789 +242 0.00881944410503 0.484603285789 +28 0.00655088014901 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +265 0.022099763155 0.470934122801 +74 0.0243683308363 0.477768719196 +2 0.0154595961794 0.477768719196 +27 0.0154596110806 0.470934122801 +SURF 0x10 +mat 10 +refs 4 +74 0.0243683308363 0.477768719196 +266 0.022099763155 0.484603285789 +29 0.0154596110806 0.484603285789 +2 0.0154595961794 0.477768719196 +SURF 0x10 +mat 10 +refs 4 +29 0.0154596110806 0.484603285789 +3 0.0154595961794 0.491437911987 +30 0.00655088014901 0.491437911987 +242 0.00881944410503 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +3 0.0154595961794 0.491437911987 +31 0.0154596110806 0.49827247858 +243 0.00881944410503 0.49827247858 +30 0.00655088014901 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +266 0.022099763155 0.484603285789 +75 0.0243683308363 0.491437911987 +3 0.0154595961794 0.491437911987 +29 0.0154596110806 0.484603285789 +SURF 0x10 +mat 10 +refs 4 +75 0.0243683308363 0.491437911987 +267 0.022099763155 0.49827247858 +31 0.0154596110806 0.49827247858 +3 0.0154595961794 0.491437911987 +SURF 0x10 +mat 10 +refs 4 +31 0.0154596110806 0.49827247858 +4 0.0154595961794 0.504641294479 +32 0.00655088014901 0.504641294479 +243 0.00881944410503 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +4 0.0154595961794 0.504641294479 +33 0.0154596110806 0.511010169983 +244 0.00881944410503 0.511010169983 +32 0.00655088014901 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +267 0.022099763155 0.49827247858 +76 0.0243683308363 0.504641294479 +4 0.0154595961794 0.504641294479 +31 0.0154596110806 0.49827247858 +SURF 0x10 +mat 10 +refs 4 +76 0.0243683308363 0.504641294479 +268 0.022099763155 0.511010169983 +33 0.0154596110806 0.511010169983 +4 0.0154595961794 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +33 0.0154596110806 0.511010169983 +5 0.0154595999047 0.516479194164 +34 0.00655085407197 0.516479194164 +244 0.00881944410503 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +5 0.0154595999047 0.516479194164 +35 0.0154596110806 0.521948158741 +245 0.00881944410503 0.521948158741 +34 0.00655085407197 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +268 0.022099763155 0.511010169983 +77 0.0243683308363 0.516479194164 +5 0.0154595999047 0.516479194164 +33 0.0154596110806 0.511010169983 +SURF 0x10 +mat 10 +refs 4 +77 0.0243683308363 0.516479194164 +269 0.022099763155 0.521948158741 +35 0.0154596110806 0.521948158741 +5 0.0154595999047 0.516479194164 +SURF 0x10 +mat 10 +refs 4 +35 0.0154596110806 0.521948158741 +6 0.015459577553 0.526144683361 +36 0.00655085779727 0.526144683361 +245 0.00881944410503 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +6 0.015459577553 0.526144683361 +37 0.0154595999047 0.530341267586 +246 0.0088194347918 0.530341267586 +36 0.00655085779727 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +269 0.022099763155 0.521948158741 +78 0.0243683084846 0.526144683361 +6 0.015459577553 0.526144683361 +35 0.0154596110806 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +78 0.0243683084846 0.526144683361 +270 0.022099763155 0.530341267586 +37 0.0154595999047 0.530341267586 +6 0.015459577553 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +37 0.0154595999047 0.530341267586 +7 0.015459577553 0.532979309559 +38 0.00655085779727 0.532979309559 +246 0.0088194347918 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +7 0.015459577553 0.532979309559 +39 0.0154595999047 0.535617351532 +247 0.0088194347918 0.535617351532 +38 0.00655085779727 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +270 0.022099763155 0.530341267586 +79 0.0243683084846 0.532979309559 +7 0.015459577553 0.532979309559 +37 0.0154595999047 0.530341267586 +SURF 0x10 +mat 10 +refs 4 +79 0.0243683084846 0.532979309559 +271 0.022099763155 0.535617351532 +39 0.0154595999047 0.535617351532 +7 0.015459577553 0.532979309559 +SURF 0x10 +mat 10 +refs 4 +39 0.0154595999047 0.535617351532 +8 0.0154595999047 0.53651714325 +40 0.00655088014901 0.53651714325 +247 0.0088194347918 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +8 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +248 0.0088194552809 0.537416934967 +40 0.00655088014901 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +271 0.022099763155 0.535617351532 +80 0.0243683308363 0.53651714325 +8 0.0154595999047 0.53651714325 +39 0.0154595999047 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +80 0.0243683308363 0.53651714325 +272 0.022099789232 0.537416934967 +41 0.0154596222565 0.537416934967 +8 0.0154595999047 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +41 0.0154596222565 0.537416934967 +9 0.0154595999047 0.53651714325 +42 0.00655088014901 0.53651714325 +248 0.0088194552809 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +9 0.0428032502532 0.53651714325 +43 0.0428032390773 0.535617351532 +249 0.0494434013963 0.535617351532 +42 0.0517119690776 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +272 0.022099789232 0.537416934967 +81 0.0243683308363 0.53651714325 +9 0.0154595999047 0.53651714325 +41 0.0154596222565 0.537416934967 +SURF 0x10 +mat 10 +refs 4 +81 0.0338945165277 0.53651714325 +273 0.036163084209 0.535617351532 +43 0.0428032390773 0.535617351532 +9 0.0428032502532 0.53651714325 +SURF 0x10 +mat 10 +refs 4 +43 0.0428032390773 0.535617351532 +10 0.0428032502532 0.532979249954 +44 0.0517119690776 0.532979249954 +249 0.0494434013963 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +10 0.0428032502532 0.532979249954 +45 0.0428032390773 0.530341207981 +250 0.0494434013963 0.530341207981 +44 0.0517119690776 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +273 0.036163084209 0.535617351532 +82 0.0338945165277 0.532979249954 +10 0.0428032502532 0.532979249954 +43 0.0428032390773 0.535617351532 +SURF 0x10 +mat 10 +refs 4 +82 0.0338945165277 0.532979249954 +274 0.036163084209 0.530341207981 +45 0.0428032390773 0.530341207981 +10 0.0428032502532 0.532979249954 +SURF 0x10 +mat 10 +refs 4 +45 0.0428032390773 0.530341207981 +11 0.0428032502532 0.526144683361 +46 0.0517119690776 0.526144683361 +250 0.0494434013963 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +11 0.0428032502532 0.526144683361 +48 0.0428032390773 0.521948158741 +251 0.0494434051216 0.521948158741 +46 0.0517119690776 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +274 0.036163084209 0.530341207981 +83 0.0338945165277 0.526144683361 +11 0.0428032502532 0.526144683361 +45 0.0428032390773 0.530341207981 +SURF 0x10 +mat 10 +refs 4 +83 0.0338945165277 0.526144683361 +275 0.036163084209 0.521948158741 +48 0.0428032390773 0.521948158741 +11 0.0428032502532 0.526144683361 +SURF 0x10 +mat 10 +refs 4 +84 0.0338945165277 0.51647913456 +12 0.0428032502532 0.51647913456 +48 0.0428032390773 0.521948158741 +275 0.036163084209 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +12 0.0428032502532 0.51647913456 +47 0.0517119690776 0.51647913456 +251 0.0494434051216 0.521948158741 +48 0.0428032390773 0.521948158741 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +49 0.0428032390773 0.511010050774 +12 0.0428032502532 0.51647913456 +84 0.0338945165277 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +252 0.0494434051216 0.511010050774 +47 0.0517119690776 0.51647913456 +12 0.0428032502532 0.51647913456 +SURF 0x10 +mat 10 +refs 4 +49 0.0428032390773 0.511010050774 +13 0.0428032539785 0.504641294479 +50 0.0517119690776 0.504641294479 +252 0.0494434051216 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +13 0.0428032539785 0.504641294479 +51 0.0428032390773 0.498272418976 +253 0.0494434051216 0.498272418976 +50 0.0517119690776 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +276 0.036163084209 0.511010050774 +85 0.0338945165277 0.504641294479 +13 0.0428032539785 0.504641294479 +49 0.0428032390773 0.511010050774 +SURF 0x10 +mat 10 +refs 4 +85 0.0338945165277 0.504641294479 +277 0.036163084209 0.498272418976 +51 0.0428032390773 0.498272418976 +13 0.0428032539785 0.504641294479 +SURF 0x10 +mat 10 +refs 4 +51 0.0428032390773 0.498272418976 +14 0.0428032539785 0.491437852383 +52 0.0517119690776 0.491437852383 +253 0.0494434051216 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +14 0.0428032539785 0.491437852383 +53 0.0428032390773 0.484603226185 +254 0.0494434051216 0.484603226185 +52 0.0517119690776 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +277 0.036163084209 0.498272418976 +86 0.0338945165277 0.491437852383 +14 0.0428032539785 0.491437852383 +51 0.0428032390773 0.498272418976 +SURF 0x10 +mat 10 +refs 4 +86 0.0338945165277 0.491437852383 +278 0.036163084209 0.484603226185 +53 0.0428032390773 0.484603226185 +14 0.0428032539785 0.491437852383 +SURF 0x10 +mat 10 +refs 4 +53 0.0428032390773 0.484603226185 +15 0.0428032539785 0.477768689394 +54 0.0517119690776 0.477768689394 +254 0.0494434051216 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +15 0.0428032539785 0.477768689394 +56 0.0428032390773 0.470934063196 +255 0.0494434051216 0.470934063196 +54 0.0517119690776 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +278 0.036163084209 0.484603226185 +87 0.0338945165277 0.477768689394 +15 0.0428032539785 0.477768689394 +53 0.0428032390773 0.484603226185 +SURF 0x10 +mat 10 +refs 4 +87 0.0338945165277 0.477768689394 +279 0.036163084209 0.470934063196 +56 0.0428032390773 0.470934063196 +15 0.0428032539785 0.477768689394 +SURF 0x10 +mat 10 +refs 4 +88 0.0338945165277 0.4645652771 +16 0.0428032539785 0.4645652771 +56 0.0428032390773 0.470934063196 +279 0.036163084209 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +16 0.0428032539785 0.4645652771 +55 0.0517119690776 0.4645652771 +255 0.0494434051216 0.470934063196 +56 0.0428032390773 0.470934063196 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +57 0.0428032390773 0.458196431398 +16 0.0428032539785 0.4645652771 +88 0.0338945165277 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +256 0.0494434051216 0.458196431398 +55 0.0517119690776 0.4645652771 +16 0.0428032539785 0.4645652771 +SURF 0x10 +mat 10 +refs 4 +57 0.0428032390773 0.458196431398 +17 0.0428032539785 0.452727407217 +58 0.0517119690776 0.452727407217 +256 0.0494434051216 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +17 0.0428032539785 0.452727407217 +59 0.0428032428026 0.447258353233 +257 0.0494434051216 0.447258353233 +58 0.0517119690776 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +280 0.036163084209 0.458196431398 +89 0.0338945165277 0.452727407217 +17 0.0428032539785 0.452727407217 +57 0.0428032390773 0.458196431398 +SURF 0x10 +mat 10 +refs 4 +89 0.0338945165277 0.452727407217 +281 0.036163084209 0.447258353233 +59 0.0428032428026 0.447258353233 +17 0.0428032539785 0.452727407217 +SURF 0x10 +mat 10 +refs 4 +59 0.0428032428026 0.447258353233 +18 0.0428032539785 0.443061828613 +60 0.0517119728029 0.443061828613 +257 0.0494434051216 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +18 0.0428032539785 0.443061828613 +61 0.0428032428026 0.438865333796 +258 0.0494434088469 0.438865333796 +60 0.0517119728029 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +281 0.036163084209 0.447258353233 +90 0.0338945239782 0.443061828613 +18 0.0428032539785 0.443061828613 +59 0.0428032428026 0.447258353233 +SURF 0x10 +mat 10 +refs 4 +90 0.0338945239782 0.443061828613 +282 0.0361630916595 0.438865333796 +61 0.0428032428026 0.438865333796 +18 0.0428032539785 0.443061828613 +SURF 0x10 +mat 10 +refs 4 +61 0.0428032428026 0.438865333796 +19 0.0428032539785 0.43622726202 +62 0.0517119728029 0.43622726202 +258 0.0494434088469 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +19 0.0428032539785 0.43622726202 +64 0.0428032428026 0.433589220047 +259 0.0494434088469 0.433589220047 +62 0.0517119728029 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +282 0.0361630916595 0.438865333796 +91 0.0338945239782 0.43622726202 +19 0.0428032539785 0.43622726202 +61 0.0428032428026 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +91 0.0338945239782 0.43622726202 +283 0.0361630916595 0.433589220047 +64 0.0428032428026 0.433589220047 +19 0.0428032539785 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +92 0.0338945239782 0.432689428329 +20 0.0428032539785 0.432689428329 +64 0.0428032428026 0.433589220047 +283 0.0361630916595 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +20 0.0428032539785 0.432689428329 +63 0.0517119728029 0.432689428329 +259 0.0494434088469 0.433589220047 +64 0.0428032428026 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +284 0.0361630693078 0.431789666414 +65 0.0428032316267 0.431789666414 +20 0.0428032539785 0.432689428329 +92 0.0338945239782 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +65 0.0428032316267 0.431789666414 +260 0.049443397671 0.431789666414 +63 0.0517119728029 0.432689428329 +20 0.0428032539785 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +65 0.0154596185312 0.431789666414 +21 0.0154595961794 0.432689428329 +66 0.00655087642372 0.432689428329 +260 0.00881945155561 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +21 0.0154595961794 0.432689428329 +68 0.0154595961794 0.433589220047 +261 0.00881942920387 0.433589220047 +66 0.00655087642372 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +284 0.0220997817814 0.431789666414 +93 0.024368327111 0.432689428329 +21 0.0154595961794 0.432689428329 +65 0.0154596185312 0.431789666414 +SURF 0x10 +mat 10 +refs 4 +93 0.024368327111 0.432689428329 +285 0.0220997594297 0.433589220047 +68 0.0154595961794 0.433589220047 +21 0.0154595961794 0.432689428329 +SURF 0x10 +mat 10 +refs 4 +94 0.0243683047593 0.43622726202 +22 0.0154595738277 0.43622726202 +68 0.0154595961794 0.433589220047 +285 0.0220997594297 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +22 0.0154595738277 0.43622726202 +67 0.00655085407197 0.43622726202 +261 0.00881942920387 0.433589220047 +68 0.0154595961794 0.433589220047 +SURF 0x10 +mat 10 +refs 4 +286 0.0220997594297 0.438865333796 +71 0.0154595961794 0.438865333796 +22 0.0154595738277 0.43622726202 +94 0.0243683047593 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +71 0.0154595961794 0.438865333796 +262 0.00881942920387 0.438865333796 +67 0.00655085407197 0.43622726202 +22 0.0154595738277 0.43622726202 +SURF 0x10 +mat 10 +refs 4 +95 0.0243683047593 0.443061858416 +23 0.0154595738277 0.443061858416 +71 0.0154595961794 0.438865333796 +286 0.0220997594297 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +23 0.0154595738277 0.443061858416 +70 0.00655085407197 0.443061858416 +262 0.00881942920387 0.438865333796 +71 0.0154595961794 0.438865333796 +SURF 0x10 +mat 10 +refs 4 +287 0.022099763155 0.447258412838 +69 0.0154596073553 0.447258412838 +23 0.0154595738277 0.443061858416 +95 0.0243683047593 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +69 0.0154596073553 0.447258412838 +263 0.00881944410503 0.447258412838 +70 0.00655085407197 0.443061858416 +23 0.0154595738277 0.443061858416 +SURF 0x10 +mat 10 +refs 4 +142 0.167684406042 0.513798773289 +118 0.163628861308 0.509743213654 +96 0.155142366886 0.516255199909 +120 0.158010050654 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +121 0.146744042635 0.525888681412 +120 0.158010050654 0.521222114563 +96 0.155142366886 0.516255199909 +97 0.145259618759 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +122 0.134654119611 0.527480363846 +121 0.146744042635 0.525888681412 +97 0.145259618759 0.520348727703 +98 0.134654119611 0.521744906902 +SURF 0x10 +mat 10 +refs 4 +123 0.122564211488 0.525888621807 +122 0.134654119611 0.527480363846 +98 0.134654119611 0.521744906902 +99 0.124048650265 0.520348727703 +SURF 0x10 +mat 10 +refs 4 +124 0.111298218369 0.521222114563 +123 0.122564211488 0.525888621807 +99 0.124048650265 0.520348727703 +100 0.114165946841 0.516255140305 +SURF 0x10 +mat 10 +refs 4 +125 0.101623922586 0.513798773289 +124 0.111298218369 0.521222114563 +100 0.114165946841 0.516255140305 +101 0.105679437518 0.509743213654 +SURF 0x10 +mat 10 +refs 4 +126 0.0942005366087 0.504124403 +125 0.101623922586 0.513798773289 +101 0.105679437518 0.509743213654 +102 0.0991675406694 0.50125670433 +SURF 0x10 +mat 10 +refs 4 +127 0.0895339995623 0.492858439684 +126 0.0942005366087 0.504124403 +102 0.0991675406694 0.50125670433 +103 0.0950739830732 0.491373956203 +SURF 0x10 +mat 10 +refs 4 +128 0.0879423320293 0.480768471956 +127 0.0895339995623 0.492858439684 +103 0.0950739830732 0.491373956203 +104 0.0936777442694 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +129 0.0895340144634 0.468678593636 +128 0.0879423320293 0.480768471956 +104 0.0936777442694 0.480768471956 +105 0.0950739979744 0.470163017511 +SURF 0x10 +mat 10 +refs 4 +130 0.0942005366087 0.457412600517 +129 0.0895340144634 0.468678593636 +105 0.0950739979744 0.470163017511 +106 0.0991675704718 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +130 0.0942005366087 0.457412600517 +106 0.0991675704718 0.460280328989 +107 0.105679482222 0.451793789864 +SURF 0x10 +mat 10 +refs 4 +131 0.101623937488 0.447738260031 +107 0.105679482222 0.451793789864 +108 0.114166006446 0.445281893015 +132 0.111298263073 0.440314859152 +SURF 0x10 +mat 10 +refs 4 +133 0.12256424129 0.435648351908 +132 0.111298263073 0.440314859152 +108 0.114166006446 0.445281893015 +109 0.124048694968 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +134 0.134654179215 0.434056699276 +133 0.12256424129 0.435648351908 +109 0.124048694968 0.441188365221 +110 0.134654179215 0.439792096615 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +134 0.134654179215 0.434056699276 +110 0.134654179215 0.439792096615 +111 0.145259648561 0.441188365221 +SURF 0x10 +mat 10 +refs 4 +135 0.146744087338 0.435648351908 +111 0.145259648561 0.441188365221 +112 0.155142381787 0.445281893015 +136 0.158010080457 0.440314888954 +SURF 0x10 +mat 10 +refs 4 +137 0.167684406042 0.447738260031 +136 0.158010080457 0.440314888954 +112 0.155142381787 0.445281893015 +113 0.163628861308 0.451793819666 +SURF 0x10 +mat 10 +refs 4 +138 0.17510779202 0.45741263032 +137 0.167684406042 0.447738260031 +113 0.163628861308 0.451793819666 +114 0.17014080286 0.460280328989 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +138 0.17510779202 0.45741263032 +114 0.17014080286 0.460280328989 +115 0.174234315753 0.470163047314 +SURF 0x10 +mat 10 +refs 4 +139 0.179774314165 0.468678623438 +115 0.174234315753 0.470163047314 +116 0.175630584359 0.480768531561 +140 0.181365996599 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +140 0.181365996599 0.480768531561 +116 0.175630584359 0.480768531561 +117 0.174234315753 0.491374015808 +SURF 0x10 +mat 10 +refs 4 +141 0.179774314165 0.492858439684 +117 0.174234315753 0.491374015808 +119 0.17014080286 0.501256763935 +143 0.17510779202 0.504124403 +SURF 0x10 +mat 10 +refs 4 +143 0.17510779202 0.504124403 +119 0.17014080286 0.501256763935 +118 0.163628861308 0.509743213654 +142 0.167684406042 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +167 0.174609094858 0.520723462105 +142 0.167684406042 0.513798773289 +120 0.158010050654 0.521222114563 +144 0.162906527519 0.529703140259 +SURF 0x10 +mat 10 +refs 4 +145 0.149278670549 0.535348057747 +144 0.162906527519 0.529703140259 +120 0.158010050654 0.521222114563 +121 0.146744042635 0.525888681412 +SURF 0x10 +mat 10 +refs 4 +146 0.134654119611 0.537273347378 +145 0.149278670549 0.535348057747 +121 0.146744042635 0.525888681412 +122 0.134654119611 0.527480363846 +SURF 0x10 +mat 10 +refs 4 +147 0.120029598475 0.535347998142 +146 0.134654119611 0.537273347378 +122 0.134654119611 0.527480363846 +123 0.122564211488 0.525888621807 +SURF 0x10 +mat 10 +refs 4 +148 0.106401756406 0.529703140259 +147 0.120029598475 0.535347998142 +123 0.122564211488 0.525888621807 +124 0.111298218369 0.521222114563 +SURF 0x10 +mat 10 +refs 4 +149 0.0946992188692 0.520723462105 +148 0.106401756406 0.529703140259 +124 0.111298218369 0.521222114563 +125 0.101623922586 0.513798773289 +SURF 0x10 +mat 10 +refs 4 +150 0.0857195258141 0.509020864964 +149 0.0946992188692 0.520723462105 +125 0.101623922586 0.513798773289 +126 0.0942005366087 0.504124403 +SURF 0x10 +mat 10 +refs 4 +151 0.0800746977329 0.495393037796 +150 0.0857195258141 0.509020864964 +126 0.0942005366087 0.504124403 +127 0.0895339995623 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +152 0.0781493484974 0.480768471956 +151 0.0800746977329 0.495393037796 +127 0.0895339995623 0.492858439684 +128 0.0879423320293 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +153 0.0800746977329 0.466143995523 +152 0.0781493484974 0.480768471956 +128 0.0879423320293 0.480768471956 +129 0.0895340144634 0.468678593636 +SURF 0x10 +mat 10 +refs 4 +154 0.0857195854187 0.452516138554 +153 0.0800746977329 0.466143995523 +129 0.0895340144634 0.468678593636 +130 0.0942005366087 0.457412600517 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +154 0.0857195854187 0.452516138554 +130 0.0942005366087 0.457412600517 +131 0.101623937488 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +155 0.0946992486715 0.440813541412 +131 0.101623937488 0.447738260031 +132 0.111298263073 0.440314859152 +156 0.106401786208 0.431833893061 +SURF 0x10 +mat 10 +refs 4 +157 0.120029658079 0.42618906498 +156 0.106401786208 0.431833893061 +132 0.111298263073 0.440314859152 +133 0.12256424129 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +158 0.134654179215 0.424263685942 +157 0.120029658079 0.42618906498 +133 0.12256424129 0.435648351908 +134 0.134654179215 0.434056699276 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +158 0.134654179215 0.424263685942 +134 0.134654179215 0.434056699276 +135 0.146744087338 0.435648351908 +SURF 0x10 +mat 10 +refs 4 +159 0.149278700352 0.42618906498 +135 0.146744087338 0.435648351908 +136 0.158010080457 0.440314888954 +160 0.162906616926 0.431833952665 +SURF 0x10 +mat 10 +refs 4 +161 0.17460912466 0.440813601017 +160 0.162906616926 0.431833952665 +136 0.158010080457 0.440314888954 +137 0.167684406042 0.447738260031 +SURF 0x10 +mat 10 +refs 4 +162 0.183588787913 0.452516138554 +161 0.17460912466 0.440813601017 +137 0.167684406042 0.447738260031 +138 0.17510779202 0.45741263032 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +162 0.183588787913 0.452516138554 +138 0.17510779202 0.45741263032 +139 0.179774314165 0.468678623438 +SURF 0x10 +mat 10 +refs 4 +163 0.189233630896 0.466143995523 +139 0.179774314165 0.468678623438 +140 0.181365996599 0.480768531561 +164 0.191158980131 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +164 0.191158980131 0.480768531561 +140 0.181365996599 0.480768531561 +141 0.179774314165 0.492858439684 +SURF 0x10 +mat 10 +refs 4 +165 0.189233630896 0.495393067598 +141 0.179774314165 0.492858439684 +143 0.17510779202 0.504124403 +166 0.183588787913 0.509020924568 +SURF 0x10 +mat 10 +refs 4 +166 0.183588787913 0.509020924568 +143 0.17510779202 0.504124403 +142 0.167684406042 0.513798773289 +167 0.174609094858 0.520723462105 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +168 0.155027270317 0.516055822372 +190 0.163466095924 0.509580433369 +214 0.16854172945 0.514656126499 +SURF 0x10 +mat 10 +refs 4 +192 0.158616274595 0.52227216959 +193 0.147057831287 0.527059793472 +169 0.145200058818 0.520126402378 +168 0.155027270317 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +193 0.147057831287 0.527059793472 +194 0.134654119611 0.528692781925 +170 0.134654119611 0.521514713764 +169 0.145200058818 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +194 0.134654119611 0.528692781925 +195 0.122250407934 0.527059793472 +171 0.124108210206 0.520126402378 +170 0.134654119611 0.521514713764 +SURF 0x10 +mat 10 +refs 4 +195 0.122250407934 0.527059793472 +196 0.11069200933 0.52227216959 +172 0.114281013608 0.516055822372 +171 0.124108210206 0.520126402378 +SURF 0x10 +mat 10 +refs 4 +196 0.11069200933 0.52227216959 +197 0.100766569376 0.514656066895 +173 0.105842202902 0.509580433369 +172 0.114281013608 0.516055822372 +SURF 0x10 +mat 10 +refs 4 +197 0.100766569376 0.514656066895 +198 0.0931505560875 0.504730641842 +174 0.0993668884039 0.501141607761 +173 0.105842202902 0.509580433369 +SURF 0x10 +mat 10 +refs 4 +198 0.0931505560875 0.504730641842 +199 0.0883629024029 0.493172168732 +175 0.0952962934971 0.491314411163 +174 0.0993668884039 0.501141607761 +SURF 0x10 +mat 10 +refs 4 +199 0.0883629024029 0.493172168732 +200 0.0867298841476 0.480768471956 +176 0.093907892704 0.480768471956 +175 0.0952962934971 0.491314411163 +SURF 0x10 +mat 10 +refs 4 +200 0.0867298841476 0.480768471956 +201 0.0883629024029 0.468364775181 +177 0.0952963232994 0.470222562551 +176 0.093907892704 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +201 0.0883629024029 0.468364775181 +202 0.0931505560875 0.456806391478 +178 0.0993668884039 0.460395395756 +177 0.0952963232994 0.470222562551 +SURF 0x10 +mat 10 +refs 4 +202 0.0931505560875 0.456806391478 +203 0.100766628981 0.446880936623 +179 0.105842217803 0.451956540346 +178 0.0993668884039 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +180 0.114281058311 0.445481210947 +179 0.105842217803 0.451956540346 +203 0.100766628981 0.446880936623 +SURF 0x10 +mat 10 +refs 4 +204 0.110692054033 0.439264863729 +205 0.122250497341 0.434477210045 +181 0.124108269811 0.441410690546 +180 0.114281058311 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +205 0.122250497341 0.434477210045 +206 0.134654179215 0.432844251394 +182 0.134654179215 0.440022289753 +181 0.124108269811 0.441410690546 +SURF 0x10 +mat 10 +refs 4 +206 0.134654179215 0.432844251394 +207 0.147057905793 0.434477210045 +183 0.145200103521 0.441410690546 +182 0.134654179215 0.440022289753 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +184 0.155027285218 0.445481210947 +183 0.145200103521 0.441410690546 +207 0.147057905793 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +208 0.158616304398 0.439264893532 +209 0.168541744351 0.446880996227 +185 0.163466125727 0.451956599951 +184 0.155027285218 0.445481210947 +SURF 0x10 +mat 10 +refs 4 +209 0.168541744351 0.446880996227 +210 0.176157802343 0.456806391478 +186 0.169941455126 0.460395395756 +185 0.163466125727 0.451956599951 +SURF 0x10 +mat 10 +refs 4 +210 0.176157802343 0.456806391478 +211 0.180945426226 0.468364834785 +187 0.174012005329 0.470222622156 +186 0.169941455126 0.460395395756 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +188 0.175400406122 0.480768531561 +187 0.174012005329 0.470222622156 +211 0.180945426226 0.468364834785 +SURF 0x10 +mat 10 +refs 4 +212 0.182578399777 0.480768531561 +213 0.180945426226 0.493172228336 +189 0.174012005329 0.491314411163 +188 0.175400406122 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +215 0.176157772541 0.504730641842 +191 0.169941455126 0.501141607761 +189 0.174012005329 0.491314411163 +213 0.180945426226 0.493172228336 +SURF 0x10 +mat 10 +refs 4 +214 0.16854172945 0.514656126499 +190 0.163466095924 0.509580433369 +191 0.169941455126 0.501141607761 +215 0.176157772541 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +192 0.158616274595 0.52227216959 +214 0.16854172945 0.514656126499 +239 0.174595504999 0.520709872246 +SURF 0x10 +mat 10 +refs 4 +216 0.162896901369 0.529686510563 +217 0.149273663759 0.535329461098 +193 0.147057831287 0.527059793472 +192 0.158616274595 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +217 0.149273663759 0.535329461098 +218 0.134654119611 0.537254154682 +194 0.134654119611 0.528692781925 +193 0.147057831287 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +218 0.134654119611 0.537254154682 +219 0.120034605265 0.535329401493 +195 0.122250407934 0.527059793472 +194 0.134654119611 0.528692781925 +SURF 0x10 +mat 10 +refs 4 +219 0.120034605265 0.535329401493 +220 0.106411337852 0.529686450958 +196 0.11069200933 0.52227216959 +195 0.122250407934 0.527059793472 +SURF 0x10 +mat 10 +refs 4 +220 0.106411337852 0.529686450958 +221 0.0947128087282 0.520709812641 +197 0.100766569376 0.514656066895 +196 0.11069200933 0.52227216959 +SURF 0x10 +mat 10 +refs 4 +221 0.0947128087282 0.520709812641 +222 0.0857362151146 0.509011268616 +198 0.0931505560875 0.504730641842 +197 0.100766569376 0.514656066895 +SURF 0x10 +mat 10 +refs 4 +222 0.0857362151146 0.509011268616 +223 0.0800932794809 0.495388031006 +199 0.0883629024029 0.493172168732 +198 0.0931505560875 0.504730641842 +SURF 0x10 +mat 10 +refs 4 +223 0.0800932794809 0.495388031006 +224 0.0781685709953 0.480768471956 +200 0.0867298841476 0.480768471956 +199 0.0883629024029 0.493172168732 +SURF 0x10 +mat 10 +refs 4 +224 0.0781685709953 0.480768471956 +225 0.0800932794809 0.466148912907 +201 0.0883629024029 0.468364775181 +200 0.0867298841476 0.480768471956 +SURF 0x10 +mat 10 +refs 4 +225 0.0800932794809 0.466148912907 +226 0.0857362300158 0.452525675297 +202 0.0931505560875 0.456806391478 +201 0.0883629024029 0.468364775181 +SURF 0x10 +mat 10 +refs 4 +226 0.0857362300158 0.452525675297 +227 0.0947128683329 0.440827161074 +203 0.100766628981 0.446880936623 +202 0.0931505560875 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +204 0.110692054033 0.439264863729 +203 0.100766628981 0.446880936623 +227 0.0947128683329 0.440827161074 +SURF 0x10 +mat 10 +refs 4 +228 0.106411382556 0.431850552559 +229 0.120034620166 0.426207602024 +205 0.122250497341 0.434477210045 +204 0.110692054033 0.439264863729 +SURF 0x10 +mat 10 +refs 4 +229 0.120034620166 0.426207602024 +230 0.134654179215 0.424282938242 +206 0.134654179215 0.432844251394 +205 0.122250497341 0.434477210045 +SURF 0x10 +mat 10 +refs 4 +230 0.134654179215 0.424282938242 +231 0.149273738265 0.426207602024 +207 0.147057905793 0.434477210045 +206 0.134654179215 0.432844251394 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +208 0.158616304398 0.439264893532 +207 0.147057905793 0.434477210045 +231 0.149273738265 0.426207602024 +SURF 0x10 +mat 10 +refs 4 +232 0.162896946073 0.431850552559 +233 0.1745955199 0.440827220678 +209 0.168541744351 0.446880996227 +208 0.158616304398 0.439264893532 +SURF 0x10 +mat 10 +refs 4 +233 0.1745955199 0.440827220678 +234 0.183572113514 0.452525734901 +210 0.176157802343 0.456806391478 +209 0.168541744351 0.446880996227 +SURF 0x10 +mat 10 +refs 4 +234 0.183572113514 0.452525734901 +235 0.189215064049 0.466149002314 +211 0.180945426226 0.468364834785 +210 0.176157802343 0.456806391478 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +212 0.182578399777 0.480768531561 +211 0.180945426226 0.468364834785 +235 0.189215064049 0.466149002314 +SURF 0x10 +mat 10 +refs 4 +236 0.191139742732 0.480768531561 +237 0.189215064049 0.495388060808 +213 0.180945426226 0.493172228336 +212 0.182578399777 0.480768531561 +SURF 0x10 +mat 10 +refs 4 +238 0.183572113514 0.50901132822 +215 0.176157772541 0.504730641842 +213 0.180945426226 0.493172228336 +237 0.189215064049 0.495388060808 +SURF 0x10 +mat 10 +refs 4 +239 0.174595504999 0.520709872246 +214 0.16854172945 0.514656126499 +215 0.176157772541 0.504730641842 +238 0.183572113514 0.50901132822 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/pilot-b.ac b/resources/flightgear/Aircraft/jeep/Models/pilot-b.ac new file mode 100755 index 0000000000000000000000000000000000000000..381ae82c8b3b21f1a71128153af5b035968998e9 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/pilot-b.ac @@ -0,0 +1,19379 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "Material" rgb 0.8 0.8 0.8 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +OBJECT world +kids 1 +OBJECT group +name "Armature" +kids 15 +OBJECT poly +name "leg1.R" +data 8 +Mesh.008 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 123 +0.117026 -0.00397 -0.177862 +-0.082874 -0.039479 -0.163533 +-0.059895 -0.196277 -0.182828 +0.104259 -0.181826 -0.18111 +-0.062844 -0.174002 -0.045363 +-0.035999 -0.398353 -0.072218 +0.073555 -0.388167 -0.177199 +-0.036034 -0.398358 -0.17717 +0.07359 -0.388162 -0.072247 +-0.026487 -0.43773 -0.077074 +-0.026525 -0.437734 -0.171693 +0.068793 -0.42732 -0.077099 +0.068733 -0.427325 -0.171718 +0.091844 -0.386466 -0.124728 +0.084781 -0.298064 -0.17813 +0.018755 -0.393264 -0.194676 +-0.046912 -0.304257 -0.178094 +-0.054266 -0.400054 -0.124689 +-0.046881 -0.304252 -0.05987 +0.018802 -0.393257 -0.054741 +0.084812 -0.298058 -0.059906 +-0.079678 -0.109419 -0.099763 +-0.069186 -0.193121 -0.117993 +0.014284 -0.190319 -0.202187 +-0.066213 -0.107987 -0.188104 +0.022056 -0.01529 -0.196724 +0.09811 0.049098 -0.167816 +0.134422 -0.022435 -0.114897 +0.108276 -0.084683 -0.181115 +0.114966 -0.174322 -0.111961 +0.021149 -0.432525 -0.061316 +-0.00255 0.042041 -0.181947 +0.123916 0.020091 -0.125354 +0.133249 -0.094745 -0.111969 +0.020646 -0.093478 -0.202192 +-0.076954 -0.129175 -0.136224 +0.013325 -0.301214 -0.037853 +-0.066951 -0.305267 -0.111989 +0.013284 -0.301221 -0.200143 +0.104869 -0.297049 -0.112036 +0.084657 -0.425588 -0.124413 +0.021119 -0.432531 -0.187476 +-0.042367 -0.439467 -0.124379 +0.095269 -0.16263 -0.027499 +0.00659 -0.199846 -0.025288 +0.04322 -0.468053 -0.096894 +0.015554 -0.471078 -0.087717 +-0.012172 -0.474105 -0.096879 +0.043214 -0.468055 -0.151907 +0.052456 -0.467045 -0.124403 +-0.012178 -0.474108 -0.151892 +0.01551 -0.471082 -0.161069 +-0.021392 -0.475115 -0.124383 +0.031869 -0.48775 -0.11563 +0.023031 -0.488714 -0.112706 +0.014216 -0.489679 -0.115626 +0.031852 -0.487751 -0.133163 +0.034803 -0.487428 -0.124397 +0.014199 -0.489679 -0.133158 +0.023016 -0.488715 -0.136083 +0.011265 -0.49 -0.124391 +-0.057743 0.002741 -0.116941 +-0.054429 -0.054688 -0.086181 +-0.042065 -0.102147 -0.041373 +0.076883 0.057783 -0.123309 +0.000959 0.064657 -0.153017 +0.095812 0.036467 -0.103377 +0.101932 0.015265 -0.090862 +0.096933 -0.011743 -0.075827 +0.074141 -0.09379 -0.023415 +-0.001794 0.030551 -0.090787 +-0.000711 0.012407 -0.081069 +0.003171 -0.002588 -0.066912 +0.016774 0.050112 -0.102185 +0.040743 0.04794 -0.092799 +0.046756 0.041206 -0.086502 +0.048687 0.034507 -0.082548 +0.047101 0.025975 -0.077798 +0.039887 5.3e-05 -0.061238 +-0.031243 -0.418042 -0.074646 +-0.031279 -0.418047 -0.174432 +-0.022806 -0.193298 -0.192507 +0.019975 -0.412891 -0.058029 +0.02134 -0.054384 -0.199458 +-0.07307 -0.161149 -0.127108 +-0.071583 -0.118581 -0.162164 +-0.078305 -0.119297 -0.117993 +-0.016767 -0.302733 -0.048861 +-0.056905 -0.304759 -0.085929 +-0.056931 -0.304762 -0.145041 +-0.016814 -0.30274 -0.189118 +0.019948 -0.412897 -0.191076 +-0.048317 -0.419761 -0.124534 +-0.028127 -0.186924 -0.035325 +0.029365 -0.469565 -0.092305 +0.00168 -0.472592 -0.092298 +0.001677 -0.472594 -0.156481 +0.029362 -0.469568 -0.156488 +-0.016771 -0.474609 -0.110631 +-0.03188 -0.457291 -0.124381 +-0.016807 -0.474611 -0.138138 +0.027439 -0.488232 -0.114168 +0.018623 -0.489196 -0.114166 +0.033306 -0.487589 -0.12878 +0.04364 -0.477237 -0.1244 +0.033325 -0.48759 -0.120014 +0.018607 -0.489197 -0.13462 +0.027423 -0.488233 -0.134623 +0.01274 -0.489839 -0.120008 +0.012721 -0.48984 -0.128775 +0.031871 -0.48775 -0.124397 +0.027441 -0.488232 -0.122934 +0.023034 -0.488714 -0.124394 +0.018626 -0.489197 -0.125854 +0.014218 -0.489679 -0.124392 +-0.052466 -0.138074 -0.043368 +-0.075677 -0.140223 -0.122551 +-0.072326 -0.139865 -0.144636 +-0.074955 -0.118939 -0.140079 +-0.024325 -0.46595 -0.117506 +-0.024343 -0.465951 -0.13126 +0.038495 -0.482413 -0.12659 +0.038493 -0.482413 -0.122207 +numsurf 157 +SURF 0x10 +mat 1 +refs 4 +26 0.599528133869 0.373209059238 +0 0.589010059834 0.407281309366 +25 0.578931689262 0.402289062738 +31 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +27 0.578931689262 0.402289062738 +0 0.548696875572 0.383870124817 +26 0.541251242161 0.359280019999 +32 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +28 0.541251242161 0.359280019999 +0 0.539168715477 0.31915846467 +27 0.588401973248 0.32696723938 +33 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +28 0.588401973248 0.32696723938 +33 0.539168715477 0.31915846467 +29 0.539168715477 0.276508003473 +3 0.588401973248 0.2732809484 +SURF 0x10 +mat 1 +refs 4 +23 0.603423774242 0.276528000832 +34 0.603423774242 0.329838395119 +28 0.588401973248 0.32696723938 +3 0.588401973248 0.2732809484 +SURF 0x10 +mat 1 +refs 4 +44 0.477480530739 0.271907866001 +36 0.481458067894 0.214921340346 +20 0.498604416847 0.210343569517 +43 0.477445542812 0.282367378473 +SURF 0x10 +mat 1 +refs 4 +20 0.498604416847 0.210343569517 +36 0.481458067894 0.214921340346 +19 0.482054710388 0.163231790066 +8 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +14 0.590607583523 0.210343569517 +38 0.607753813267 0.214921340346 +23 0.603423774242 0.276528000832 +3 0.588401973248 0.2732809484 +SURF 0x10 +mat 1 +refs 4 +15 0.59628278017 0.163231790066 +38 0.607753813267 0.214921340346 +14 0.590607583523 0.210343569517 +6 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +20 0.498604416847 0.210343569517 +39 0.539168715477 0.209129929543 +29 0.539168715477 0.276508003473 +43 0.477445542812 0.282367378473 +SURF 0x10 +mat 1 +refs 4 +29 0.539168715477 0.276508003473 +39 0.539168715477 0.209129929543 +14 0.590607583523 0.210343569517 +3 0.588401973248 0.2732809484 +SURF 0x10 +mat 1 +refs 4 +14 0.590607583523 0.210343569517 +39 0.539168715477 0.209129929543 +13 0.539168715477 0.160539582372 +6 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +13 0.539168715477 0.160539582372 +39 0.539168715477 0.209129929543 +20 0.498604416847 0.210343569517 +8 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +11 0.500295937061 0.139854937792 +40 0.538914561272 0.139413490891 +13 0.539168715477 0.160539582372 +8 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +13 0.539168715477 0.160539582372 +40 0.538914561272 0.139413490891 +12 0.577533185482 0.139854937792 +6 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +40 0.539168715477 0.160539582372 +49 0.538914561272 0.139413490891 +48 0.577533185482 0.139854937792 +12 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +11 0.500295937061 0.139854937792 +45 0.538914561272 0.139413490891 +49 0.539168715477 0.160539582372 +40 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +1 0.487395375967 0.502017498016 +31 0.492738872766 0.517620682716 +25 0.497031360865 0.503715693951 +SURF 0x10 +mat 1 +refs 3 +29 0.538230419159 0.274268805981 +33 0.538230419159 0.316360235214 +43 0.47888764739 0.28240865469 +SURF 0x10 +mat 1 +refs 4 +21 0.26407328248 0.329356998205 +62 0.227524667978 0.318633466959 +61 0.201836943626 0.329748123884 +1 0.246763408184 0.368531852961 +SURF 0x10 +mat 1 +refs 4 +31 0.599528133869 0.373209059238 +65 0.589010059834 0.407281309366 +64 0.578931689262 0.402289062738 +26 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +26 0.578931689262 0.402289062738 +64 0.548696875572 0.383870124817 +66 0.541251242161 0.359280019999 +32 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +32 0.578931689262 0.402289062738 +66 0.548696875572 0.383870124817 +67 0.541251242161 0.359280019999 +27 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +27 0.541251242161 0.359280019999 +67 0.539168715477 0.31915846467 +68 0.588401973248 0.32696723938 +33 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +1 0.487395375967 0.502017498016 +61 0.473855555058 0.510693669319 +65 0.484332859516 0.522627949715 +31 0.492738872766 0.517620682716 +SURF 0x10 +mat 1 +refs 4 +33 0.538230419159 0.316360235214 +68 0.512840092182 0.365104287863 +69 0.476019591093 0.322050601244 +43 0.47888764739 0.28240865469 +SURF 0x10 +mat 1 +refs 4 +62 0.26407328248 0.329356998205 +71 0.227524667978 0.318633466959 +70 0.201836943626 0.329748123884 +61 0.246763408184 0.368531852961 +SURF 0x10 +mat 1 +refs 4 +63 0.201836943626 0.329748123884 +72 0.227524667978 0.318633466959 +71 0.214680880308 0.282752305269 +62 0.149327963591 0.29350939393 +SURF 0x10 +mat 1 +refs 4 +65 0.599528133869 0.373209059238 +73 0.589010059834 0.407281309366 +74 0.578931689262 0.402289062738 +64 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +64 0.578931689262 0.402289062738 +74 0.548696875572 0.383870124817 +75 0.541251242161 0.359280019999 +66 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +66 0.578931689262 0.402289062738 +75 0.548696875572 0.383870124817 +76 0.541251242161 0.359280019999 +67 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +67 0.541251242161 0.359280019999 +76 0.539168715477 0.31915846467 +77 0.588401973248 0.32696723938 +68 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +61 0.473855555058 0.510693669319 +70 0.466252148151 0.51498401165 +73 0.469562351704 0.518754482269 +65 0.484332859516 0.522627949715 +SURF 0x10 +mat 1 +refs 4 +69 0.0 1.0 +78 1.0 1.0 +72 1.0 0.0 +63 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +68 0.512840092182 0.365104287863 +77 0.514232039452 0.390168070793 +78 0.502599000931 0.376565724611 +69 0.476019591093 0.322050601244 +SURF 0x10 +mat 1 +refs 4 +9 0.171932861209 0.144353494048 +30 0.159194618464 0.143043458462 +82 0.156538441777 0.153954744339 +79 0.169972240925 0.155608743429 +SURF 0x10 +mat 1 +refs 4 +79 0.169972240925 0.155608743429 +82 0.156538441777 0.153954744339 +19 0.153882279992 0.164866045117 +5 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +82 0.484738916159 0.15220528841 +11 0.500295937061 0.139854937792 +8 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +30 0.487423121929 0.141178801656 +11 0.500295937061 0.139854937792 +82 0.484738916159 0.15220528841 +SURF 0x10 +mat 1 +refs 3 +82 0.484738916159 0.15220528841 +8 0.496333241463 0.161212667823 +19 0.482054710388 0.163231790066 +SURF 0x10 +mat 1 +refs 3 +83 0.588401973248 0.32696723938 +0 0.601475954056 0.351523697376 +28 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 3 +25 0.601475954056 0.351523697376 +0 0.599528133869 0.373209059238 +83 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 3 +83 0.601475954056 0.351523697376 +28 0.588401973248 0.32696723938 +34 0.603423774242 0.329838395119 +SURF 0x10 +mat 1 +refs 3 +83 0.272055804729 0.351190686226 +24 0.26407328248 0.329356998205 +1 0.246763408184 0.368531852961 +SURF 0x10 +mat 1 +refs 3 +34 0.27398326993 0.329731911421 +24 0.26407328248 0.329356998205 +83 0.272055804729 0.351190686226 +SURF 0x10 +mat 1 +refs 3 +83 0.272055804729 0.351190686226 +1 0.246763408184 0.368531852961 +25 0.270128339529 0.372649490833 +SURF 0x10 +mat 1 +refs 3 +81 0.267170190811 0.278588950634 +24 0.26407328248 0.329356998205 +34 0.27398326993 0.329731911421 +SURF 0x10 +mat 1 +refs 3 +2 0.260357141495 0.280199378729 +24 0.26407328248 0.329356998205 +81 0.267170190811 0.278588950634 +SURF 0x10 +mat 1 +refs 3 +81 0.267170190811 0.278588950634 +34 0.27398326993 0.329731911421 +23 0.27398326993 0.276978522539 +SURF 0x10 +mat 1 +refs 4 +35 0.227524667978 0.318633466959 +84 0.221102774143 0.300692915916 +116 0.217891782522 0.312441885471 +86 0.214680805802 0.324190795422 +SURF 0x10 +mat 1 +refs 4 +22 0.214680880308 0.282752305269 +4 0.149327963591 0.29350939393 +116 0.217891782522 0.312441885471 +84 0.221102774143 0.300692915916 +SURF 0x10 +mat 1 +refs 4 +4 0.149327963591 0.29350939393 +21 0.201836943626 0.329748123884 +86 0.214680805802 0.324190795422 +116 0.217891782522 0.312441885471 +SURF 0x10 +mat 1 +refs 4 +35 0.227524667978 0.318633466959 +85 0.245798975229 0.323995232582 +117 0.233450874686 0.312344074249 +84 0.221102774143 0.300692886114 +SURF 0x10 +mat 1 +refs 4 +24 0.26407328248 0.329356998205 +2 0.260357141495 0.280199378729 +117 0.233450874686 0.312344074249 +85 0.245798975229 0.323995232582 +SURF 0x10 +mat 1 +refs 4 +2 0.260357141495 0.280199378729 +22 0.214680880308 0.282752305269 +84 0.221102774143 0.300692886114 +117 0.233450874686 0.312344074249 +SURF 0x10 +mat 1 +refs 4 +35 0.227524667978 0.318633466959 +86 0.214680805802 0.324190795422 +118 0.230239897966 0.324093014002 +85 0.245798960328 0.323995232582 +SURF 0x10 +mat 1 +refs 4 +21 0.201836943626 0.329748123884 +1 0.246763408184 0.368531852961 +118 0.230239897966 0.324093014002 +86 0.214680805802 0.324190795422 +SURF 0x10 +mat 1 +refs 4 +1 0.246763408184 0.368531852961 +24 0.26407328248 0.329356998205 +85 0.245798960328 0.323995232582 +118 0.230239897966 0.324093014002 +SURF 0x10 +mat 1 +refs 4 +4 0.149327963591 0.29350939393 +18 0.170258998871 0.219618678093 +87 0.161775439978 0.217817097902 +93 0.149341896176 0.282958030701 +SURF 0x10 +mat 1 +refs 4 +93 0.149341896176 0.282958030701 +87 0.161775439978 0.217817097902 +36 0.153291866183 0.216015517712 +44 0.149355828762 0.272406667471 +SURF 0x10 +mat 1 +refs 3 +87 0.161775439978 0.217817097902 +5 0.168011620641 0.166864037514 +19 0.153882279992 0.164866045117 +SURF 0x10 +mat 1 +refs 3 +18 0.170258998871 0.219618678093 +5 0.168011620641 0.166864037514 +87 0.161775439978 0.217817097902 +SURF 0x10 +mat 1 +refs 3 +87 0.161775439978 0.217817097902 +19 0.153882279992 0.164866045117 +36 0.153291866183 0.216015517712 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.22021920979 +22 0.214680880308 0.282752305269 +2 0.260357141495 0.280199378729 +SURF 0x10 +mat 1 +refs 3 +37 0.210399508476 0.22081977129 +22 0.214680880308 0.282752305269 +89 0.235850214958 0.22021920979 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.22021920979 +2 0.260357141495 0.280199378729 +16 0.26130092144 0.219618678093 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.22021920979 +4 0.149327963591 0.29350939393 +22 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 3 +18 0.170258998871 0.219618678093 +4 0.149327963591 0.29350939393 +88 0.190329253674 0.22021920979 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.22021920979 +22 0.214680880308 0.282752305269 +37 0.210399508476 0.22081977129 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.220219224691 +17 0.210399508476 0.167529985309 +5 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +37 0.210399508476 0.22081977129 +17 0.210399508476 0.167529985309 +88 0.190329253674 0.220219224691 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.220219224691 +5 0.168011620641 0.166864037514 +18 0.170258998871 0.219618678093 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.220219224691 +7 0.252787560225 0.166864037514 +17 0.210399508476 0.167529985309 +SURF 0x10 +mat 1 +refs 3 +16 0.26130092144 0.219618678093 +7 0.252787560225 0.166864037514 +89 0.235850214958 0.220219224691 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.220219224691 +17 0.210399508476 0.167529985309 +37 0.210399508476 0.22081977129 +SURF 0x10 +mat 1 +refs 4 +23 0.27398326993 0.276978522539 +38 0.278268098831 0.216015517712 +90 0.269784510136 0.217817097902 +81 0.267170190811 0.278588950634 +SURF 0x10 +mat 1 +refs 4 +81 0.267170190811 0.278588950634 +90 0.269784510136 0.217817097902 +16 0.26130092144 0.219618678093 +2 0.260357141495 0.280199378729 +SURF 0x10 +mat 1 +refs 3 +90 0.269784510136 0.217817097902 +15 0.266916900873 0.164866045117 +7 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +38 0.278268098831 0.216015517712 +15 0.266916900873 0.164866045117 +90 0.269784510136 0.217817097902 +SURF 0x10 +mat 1 +refs 3 +90 0.269784510136 0.217817097902 +7 0.252787560225 0.166864037514 +16 0.26130092144 0.219618678093 +SURF 0x10 +mat 1 +refs 3 +91 0.593344390392 0.15220528841 +6 0.582004249096 0.161212667823 +12 0.577533185482 0.139854937792 +SURF 0x10 +mat 1 +refs 3 +15 0.59628278017 0.163231790066 +6 0.582004249096 0.161212667823 +91 0.593344390392 0.15220528841 +SURF 0x10 +mat 1 +refs 3 +91 0.593344390392 0.15220528841 +12 0.577533185482 0.139854937792 +41 0.590406000614 0.141178801656 +SURF 0x10 +mat 1 +refs 4 +7 0.252787560225 0.166864037514 +15 0.266916900873 0.164866045117 +91 0.264009177685 0.153954744339 +80 0.250575363636 0.155608743429 +SURF 0x10 +mat 1 +refs 4 +80 0.250575363636 0.155608743429 +91 0.264009177685 0.153954744339 +41 0.261101514101 0.143043458462 +10 0.248363167048 0.144353494048 +SURF 0x10 +mat 1 +refs 4 +10 0.248363167048 0.144353494048 +42 0.210148066282 0.144790023565 +92 0.210273787379 0.156159982085 +80 0.250575363636 0.155608743429 +SURF 0x10 +mat 1 +refs 4 +80 0.250575363636 0.155608743429 +92 0.210273787379 0.156159982085 +17 0.210399508476 0.167529985309 +7 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 4 +5 0.168011620641 0.166864037514 +17 0.210399508476 0.167529985309 +92 0.210273787379 0.156159982085 +79 0.169972240925 0.155608743429 +SURF 0x10 +mat 1 +refs 4 +79 0.169972240925 0.155608743429 +92 0.210273787379 0.156159982085 +42 0.210148066282 0.144790023565 +9 0.171932861209 0.144353494048 +SURF 0x10 +mat 1 +refs 3 +94 0.493859529495 0.140516862273 +11 0.496333241463 0.161212667823 +30 0.482054710388 0.163231790066 +SURF 0x10 +mat 1 +refs 3 +45 0.500295937061 0.139854937792 +11 0.496333241463 0.161212667823 +94 0.493859529495 0.140516862273 +SURF 0x10 +mat 1 +refs 3 +94 0.493859529495 0.140516862273 +30 0.482054710388 0.163231790066 +46 0.487423121929 0.141178801656 +SURF 0x10 +mat 1 +refs 3 +95 0.156538456678 0.153954744339 +30 0.168011620641 0.166864037514 +9 0.171932861209 0.144353494048 +SURF 0x10 +mat 1 +refs 3 +46 0.153882279992 0.164866045117 +30 0.168011620641 0.166864037514 +95 0.156538456678 0.153954744339 +SURF 0x10 +mat 1 +refs 3 +95 0.156538456678 0.153954744339 +9 0.171932861209 0.144353494048 +47 0.159194618464 0.143043458462 +SURF 0x10 +mat 1 +refs 3 +96 0.254732340574 0.143698483706 +10 0.252787560225 0.166864037514 +41 0.266916900873 0.164866045117 +SURF 0x10 +mat 1 +refs 3 +50 0.248363167048 0.144353494048 +10 0.252787560225 0.166864037514 +96 0.254732340574 0.143698483706 +SURF 0x10 +mat 1 +refs 3 +96 0.254732340574 0.143698483706 +41 0.266916900873 0.164866045117 +51 0.261101514101 0.143043458462 +SURF 0x10 +mat 1 +refs 3 +97 0.593344390392 0.15220528841 +41 0.582004249096 0.161212667823 +12 0.577533185482 0.139854937792 +SURF 0x10 +mat 1 +refs 3 +51 0.59628278017 0.163231790066 +41 0.582004249096 0.161212667823 +97 0.593344390392 0.15220528841 +SURF 0x10 +mat 1 +refs 3 +97 0.593344390392 0.15220528841 +12 0.577533185482 0.139854937792 +48 0.590406000614 0.141178801656 +SURF 0x10 +mat 1 +refs 4 +52 0.210148066282 0.144790023565 +98 0.191040456295 0.144571781158 +119 0.200657129288 0.150365918875 +99 0.21027380228 0.156160026789 +SURF 0x10 +mat 1 +refs 4 +47 0.171932861209 0.144353494048 +9 0.168011620641 0.166864037514 +119 0.200657129288 0.150365918875 +98 0.191040456295 0.144571781158 +SURF 0x10 +mat 1 +refs 4 +9 0.168011620641 0.166864037514 +42 0.210399508476 0.167529985309 +99 0.21027380228 0.156160026789 +119 0.200657129288 0.150365918875 +SURF 0x10 +mat 1 +refs 4 +52 0.210399508476 0.167529985309 +99 0.231593579054 0.167197018862 +120 0.220353469253 0.16409149766 +100 0.210273832083 0.156160026789 +SURF 0x10 +mat 1 +refs 4 +42 0.252787560225 0.166864037514 +10 0.248363167048 0.144353494048 +120 0.220353469253 0.16409149766 +99 0.231593579054 0.167197018862 +SURF 0x10 +mat 1 +refs 4 +10 0.248363167048 0.144353494048 +50 0.210148066282 0.144790023565 +100 0.210273832083 0.156160026789 +120 0.220353469253 0.16409149766 +SURF 0x10 +mat 1 +refs 4 +46 0.482054710388 0.163231790066 +54 0.487423121929 0.141178801656 +101 0.493859529495 0.140516877174 +94 0.489193975925 0.162222221494 +SURF 0x10 +mat 1 +refs 4 +94 0.489193975925 0.162222221494 +101 0.493859529495 0.140516877174 +53 0.500295937061 0.139854937792 +45 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +47 0.171932861209 0.144353494048 +55 0.159194618464 0.143043458462 +102 0.156538456678 0.153954744339 +95 0.169972240925 0.15560875833 +SURF 0x10 +mat 1 +refs 4 +95 0.169972240925 0.15560875833 +102 0.156538456678 0.153954744339 +54 0.153882279992 0.164866045117 +46 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 4 +57 0.538914561272 0.139413490891 +103 0.558223843575 0.139634221792 +121 0.548632740974 0.144805371761 +104 0.539041638374 0.149976536632 +SURF 0x10 +mat 1 +refs 4 +56 0.577533185482 0.139854937792 +48 0.582004249096 0.161212667823 +121 0.548632740974 0.144805371761 +103 0.558223843575 0.139634221792 +SURF 0x10 +mat 1 +refs 4 +48 0.582004249096 0.161212667823 +49 0.539168715477 0.160539582372 +104 0.539041638374 0.149976536632 +121 0.548632740974 0.144805371761 +SURF 0x10 +mat 1 +refs 4 +57 0.539168715477 0.160539582372 +104 0.51775097847 0.160876125097 +122 0.528775572777 0.15900619328 +105 0.539041638374 0.149976551533 +SURF 0x10 +mat 1 +refs 4 +49 0.496333241463 0.161212667823 +45 0.500295937061 0.139854937792 +122 0.528775572777 0.15900619328 +104 0.51775097847 0.160876125097 +SURF 0x10 +mat 1 +refs 4 +45 0.500295937061 0.139854937792 +53 0.538914561272 0.139413490891 +105 0.539041638374 0.149976551533 +122 0.528775572777 0.15900619328 +SURF 0x10 +mat 1 +refs 4 +51 0.266916900873 0.164866045117 +59 0.261101514101 0.143043458462 +106 0.254732340574 0.143698468804 +96 0.259852230549 0.165865033865 +SURF 0x10 +mat 1 +refs 4 +96 0.259852230549 0.165865033865 +106 0.254732340574 0.143698468804 +58 0.248363167048 0.144353494048 +50 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 4 +48 0.577533185482 0.139854937792 +56 0.590406000614 0.141178801656 +107 0.593344390392 0.15220528841 +97 0.579768717289 0.150533795357 +SURF 0x10 +mat 1 +refs 4 +97 0.579768717289 0.150533795357 +107 0.593344390392 0.15220528841 +59 0.59628278017 0.163231790066 +51 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +52 0.210399508476 0.167529985309 +60 0.210148066282 0.144790023565 +108 0.191040441394 0.144571751356 +98 0.189205557108 0.167197018862 +SURF 0x10 +mat 1 +refs 4 +98 0.189205557108 0.167197018862 +108 0.191040441394 0.144571751356 +55 0.171932861209 0.144353494048 +47 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 4 +50 0.248363167048 0.144353494048 +58 0.210148066282 0.144790023565 +109 0.210273787379 0.156159996986 +100 0.250575363636 0.155608773232 +SURF 0x10 +mat 1 +refs 4 +100 0.250575363636 0.155608773232 +109 0.210273787379 0.156159996986 +60 0.210399508476 0.167529985309 +52 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +110 0.500000417233 0.500000417233 +103 -6.55651092529e-07 0.499999821186 +56 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +103 -6.55651092529e-07 0.499999821186 +110 0.500000417233 0.500000417233 +105 0.499999791384 2.08616256714e-07 +SURF 0x10 +mat 1 +refs 3 +53 1.0 0.0 +105 0.499999791384 2.08616256714e-07 +110 0.500000417233 0.500000417233 +SURF 0x10 +mat 1 +refs 3 +105 0.499999791384 2.08616256714e-07 +57 0.0 0.0 +103 -6.55651092529e-07 0.499999821186 +SURF 0x10 +mat 1 +refs 3 +111 0.499999821186 0.499999642372 +110 3.27825546265e-07 0.499999970198 +56 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +110 3.27825546265e-07 0.499999970198 +111 0.499999821186 0.499999642372 +101 0.5 -2.45869159698e-07 +SURF 0x10 +mat 1 +refs 3 +54 1.0 0.0 +101 0.5 -2.45869159698e-07 +111 0.499999821186 0.499999642372 +SURF 0x10 +mat 1 +refs 3 +101 0.5 -2.45869159698e-07 +53 0.0 0.0 +110 3.27825546265e-07 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +112 0.5 0.5 +107 1.78813934326e-07 0.499999582767 +59 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +107 1.78813934326e-07 0.499999582767 +112 0.5 0.5 +111 0.500000178814 -4.17232513428e-07 +SURF 0x10 +mat 1 +refs 3 +54 1.0 0.0 +111 0.500000178814 -4.17232513428e-07 +112 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +111 0.500000178814 -4.17232513428e-07 +56 0.0 0.0 +107 1.78813934326e-07 0.499999582767 +SURF 0x10 +mat 1 +refs 3 +113 0.500000357628 0.500000119209 +112 0.0 0.5 +59 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +112 0.0 0.5 +113 0.500000357628 0.500000119209 +102 0.500000298023 1.4528632164e-07 +SURF 0x10 +mat 1 +refs 3 +55 1.0 0.0 +102 0.500000298023 1.4528632164e-07 +113 0.500000357628 0.500000119209 +SURF 0x10 +mat 1 +refs 3 +102 0.500000298023 1.4528632164e-07 +54 0.0 0.0 +112 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +114 0.499999910593 0.500000357628 +106 1.78813934326e-07 0.499999821186 +58 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +106 1.78813934326e-07 0.499999821186 +114 0.499999910593 0.500000357628 +113 0.499999672174 5.96046447754e-07 +SURF 0x10 +mat 1 +refs 3 +55 1.0 0.0 +113 0.499999672174 5.96046447754e-07 +114 0.499999910593 0.500000357628 +SURF 0x10 +mat 1 +refs 3 +113 0.499999672174 5.96046447754e-07 +59 0.0 0.0 +106 1.78813934326e-07 0.499999821186 +SURF 0x10 +mat 1 +refs 3 +109 0.499999254942 0.500000596046 +114 8.34465026855e-07 0.499999582767 +58 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +114 8.34465026855e-07 0.499999582767 +109 0.499999254942 0.500000596046 +108 0.5 -2.38418579102e-07 +SURF 0x10 +mat 1 +refs 3 +60 1.0 0.0 +108 0.5 -2.38418579102e-07 +109 0.499999254942 0.500000596046 +SURF 0x10 +mat 1 +refs 3 +108 0.5 -2.38418579102e-07 +55 0.0 0.0 +114 8.34465026855e-07 0.499999582767 +SURF 0x10 +mat 1 +refs 3 +44 1.0 0.0 +43 0.0 0.0 +93 0.500000059605 0.499999940395 +SURF 0x10 +mat 1 +refs 3 +93 0.500000059605 0.499999940395 +43 0.0 0.0 +4 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +115 0.214680820704 0.324190795422 +62 0.214680880308 0.282752305269 +21 0.149327963591 0.29350939393 +SURF 0x10 +mat 1 +refs 3 +63 0.227524667978 0.318633466959 +62 0.214680880308 0.282752305269 +115 0.214680820704 0.324190795422 +SURF 0x10 +mat 1 +refs 3 +115 0.214680820704 0.324190795422 +21 0.149327963591 0.29350939393 +4 0.201836943626 0.329748123884 +SURF 0x10 +mat 1 +refs 3 +115 0.500000298023 -5.96046447754e-08 +43 0.0 1.0 +69 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +43 0.0 1.0 +115 0.500000298023 -5.96046447754e-08 +SURF 0x10 +mat 1 +refs 3 +115 0.500000298023 -5.96046447754e-08 +69 1.0 1.0 +63 1.0 0.0 +kids 0 +OBJECT group +name "leg2.L" +kids 2 +OBJECT poly +name "leg2.L_0" +data 8 +Mesh.006 +crease 30 +numvert 21 +0.03864 -0.404156 0.103968 +0.020508 -0.403389 0.097942 +0.002373 -0.402622 0.103958 +-0.003677 -0.402366 0.122018 +0.002362 -0.399523 0.152478 +0.020494 -0.40029 0.158504 +0.038629 -0.401057 0.152488 +0.044679 -0.404412 0.122031 +0.029574 -0.403772 0.100955 +0.01144 -0.403005 0.10095 +-0.000652 -0.402494 0.112988 +-0.000658 -0.400944 0.137248 +0.011428 -0.399906 0.155491 +0.029561 -0.400673 0.155496 +0.041654 -0.402734 0.13726 +0.04166 -0.404284 0.113 +0.038635 -0.402606 0.128228 +0.029569 -0.402223 0.125215 +0.020501 -0.401839 0.128223 +0.011433 -0.401456 0.131231 +0.002367 -0.401072 0.128218 +numsurf 24 +SURF 0x10 +mat 1 +refs 3 +16 0.500000357628 0.500000059605 +6 0.0 1.0 +14 -1.19209289551e-07 0.499999940395 +SURF 0x10 +mat 1 +refs 3 +14 -1.19209289551e-07 0.499999940395 +15 0.500000238419 -1.49011611938e-08 +16 0.500000357628 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +0 1.0 0.0 +16 0.500000357628 0.500000059605 +15 0.500000238419 -1.49011611938e-08 +SURF 0x10 +mat 1 +refs 3 +15 0.500000238419 -1.49011611938e-08 +14 -1.19209289551e-07 0.499999940395 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +17 0.5 0.499999880791 +6 0.0 1.0 +16 1.49011611938e-07 0.499999910593 +SURF 0x10 +mat 1 +refs 3 +16 1.49011611938e-07 0.499999910593 +8 0.499999850988 -1.86264514923e-08 +17 0.5 0.499999880791 +SURF 0x10 +mat 1 +refs 3 +1 1.0 0.0 +17 0.5 0.499999880791 +8 0.499999850988 -1.86264514923e-08 +SURF 0x10 +mat 1 +refs 3 +8 0.499999850988 -1.86264514923e-08 +16 1.49011611938e-07 0.499999910593 +0 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +18 0.499999880791 0.500000119209 +5 0.0 1.0 +13 2.98023223877e-08 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +13 2.98023223877e-08 0.499999970198 +17 0.500000059605 -1.19209289551e-07 +18 0.499999880791 0.500000119209 +SURF 0x10 +mat 1 +refs 3 +1 1.0 0.0 +18 0.499999880791 0.500000119209 +17 0.500000059605 -1.19209289551e-07 +SURF 0x10 +mat 1 +refs 3 +17 0.500000059605 -1.19209289551e-07 +13 2.98023223877e-08 0.499999970198 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +19 0.5 0.499999910593 +5 0.0 1.0 +18 0.0 0.500000119209 +SURF 0x10 +mat 1 +refs 3 +18 0.0 0.500000119209 +9 0.5 0.0 +19 0.5 0.499999910593 +SURF 0x10 +mat 1 +refs 3 +2 1.0 0.0 +19 0.5 0.499999910593 +9 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +9 0.5 0.0 +18 0.0 0.500000119209 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.499999880791 0.499999970198 +4 0.0 1.0 +12 -5.96046447754e-08 0.499999880791 +SURF 0x10 +mat 1 +refs 3 +12 -5.96046447754e-08 0.499999880791 +19 0.500000119209 -1.19209289551e-07 +20 0.499999880791 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +2 1.0 0.0 +20 0.499999880791 0.499999970198 +19 0.500000119209 -1.19209289551e-07 +SURF 0x10 +mat 1 +refs 3 +19 0.500000119209 -1.19209289551e-07 +12 -5.96046447754e-08 0.499999880791 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +11 0.500000476837 0.499999821186 +4 0.0 1.0 +20 -4.17232513428e-07 0.500000238419 +SURF 0x10 +mat 1 +refs 3 +20 -4.17232513428e-07 0.500000238419 +10 0.499999165535 4.32133674622e-07 +11 0.500000476837 0.499999821186 +SURF 0x10 +mat 1 +refs 3 +3 1.0 0.0 +11 0.500000476837 0.499999821186 +10 0.499999165535 4.32133674622e-07 +SURF 0x10 +mat 1 +refs 3 +10 0.499999165535 4.32133674622e-07 +20 -4.17232513428e-07 0.500000238419 +2 0.0 0.0 +kids 0 +OBJECT poly +name "leg2.L_1" +data 8 +Mesh.006 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 122 +0.092696 -0.489453 0.178186 +-0.019998 -0.481585 0.068971 +-0.00414 -0.641331 0.066721 +0.09273 -0.486354 0.069002 +-0.020032 -0.484684 0.178156 +0.012852 -0.764341 0.081589 +0.00529 -0.76404 0.16555 +0.099453 -0.767806 0.081613 +0.106964 -0.768108 0.165577 +0.108994 -0.552974 0.182126 +-0.017428 -0.554162 0.182092 +-0.017392 -0.554162 0.062666 +0.052594 -0.643534 0.049445 +0.10903 -0.552974 0.0627 +0.036371 -0.483969 0.050272 +-0.038803 -0.483889 0.122009 +0.036326 -0.487068 0.196885 +0.111501 -0.490247 0.12205 +0.045014 -0.545025 0.048607 +-0.03848 -0.553317 0.122373 +0.045777 -0.550438 0.202013 +0.130083 -0.55382 0.122419 +0.123924 -0.768786 0.117684 +0.056122 -0.766074 0.18153 +-0.011641 -0.763362 0.117647 +0.056157 -0.766074 0.068002 +0.111331 -0.71032 0.169287 +0.129748 -0.711057 0.117278 +0.103175 -0.709993 0.078108 +0.000921 -0.705903 0.169257 +0.056121 -0.708111 0.18661 +0.009132 -0.70623 0.078083 +-0.017465 -0.705166 0.117239 +0.056158 -0.708111 0.063328 +0.122191 -0.694452 0.117804 +0.105665 -0.693792 0.164473 +0.098346 -0.693498 0.082655 +0.00659 -0.689827 0.164447 +0.056123 -0.691809 0.180018 +0.013958 -0.690121 0.082633 +-0.009908 -0.689167 0.117768 +0.056156 -0.691809 0.069392 +0.109163 -0.64564 0.166695 +0.136625 -0.651426 0.113365 +0.119023 -0.646562 0.073201 +-0.004056 -0.641109 0.166665 +0.052544 -0.649758 0.19863 +-0.02291 -0.640354 0.113322 +0.100348 -0.902605 0.073887 +0.012377 -0.892714 0.171126 +0.100319 -0.902605 0.17115 +0.012406 -0.892714 0.073864 +0.056382 -0.89766 0.057665 +-0.002266 -0.891066 0.122491 +0.056343 -0.89766 0.187349 +0.114991 -0.904254 0.122523 +0.086978 -0.995245 0.060401 +-0.017262 -0.9643 0.08321 +0.004568 -0.964299 0.172714 +0.108808 -0.995245 0.149905 +0.031885 -0.978468 0.068971 +-0.022998 -0.959577 0.131606 +0.05816 -0.978468 0.176701 +0.114544 -0.999968 0.10151 +0.071783 -0.442413 0.078864 +0.028442 -0.44058 0.064461 +-0.014908 -0.438746 0.078841 +-0.029369 -0.438135 0.122011 +-0.014934 -0.435647 0.177586 +0.028407 -0.437481 0.191989 +0.071757 -0.439314 0.177609 +0.086219 -0.443025 0.122043 +0.03864 -0.404156 0.103968 +0.020508 -0.403389 0.097942 +0.002373 -0.402622 0.103958 +-0.003677 -0.402366 0.122018 +0.002362 -0.399523 0.152478 +0.020494 -0.40029 0.158504 +0.038629 -0.401057 0.152488 +0.044679 -0.404412 0.122031 +0.040693 -0.514497 0.049439 +-0.027936 -0.55374 0.09252 +-0.027954 -0.55374 0.152232 +0.041052 -0.518753 0.199449 +0.030706 -0.765057 0.17354 +0.000605 -0.763851 0.099618 +-0.003175 -0.763701 0.141598 +0.034504 -0.765207 0.074795 +0.056122 -0.69996 0.183314 +0.003756 -0.697865 0.166852 +-0.013686 -0.697166 0.117503 +0.011545 -0.698176 0.080358 +0.056157 -0.69996 0.06636 +0.054333 -0.670784 0.189324 +0.001267 -0.665468 0.165556 +0.054375 -0.667672 0.059418 +-0.013525 -0.640842 0.090022 +0.034394 -0.895187 0.065764 +0.00507 -0.89189 0.098177 +0.005056 -0.89189 0.146809 +0.03436 -0.895187 0.179237 +0.007312 -0.971384 0.076091 +-0.02013 -0.961938 0.107408 +-0.009215 -0.961938 0.15216 +0.031364 -0.971384 0.174708 +-0.017453 -0.460166 0.073906 +0.006767 -0.439663 0.071651 +-0.017483 -0.460166 0.177871 +0.006737 -0.436564 0.184787 +0.029574 -0.403772 0.100955 +0.01144 -0.403005 0.10095 +-0.016523 -0.420251 0.122015 +-0.000652 -0.402494 0.112988 +-0.000658 -0.400944 0.137248 +0.011428 -0.399906 0.155491 +0.029561 -0.400673 0.155496 +0.041654 -0.402734 0.13726 +0.04166 -0.404284 0.113 +-0.005343 -0.449914 0.072778 +-0.005373 -0.448365 0.181329 +-0.008588 -0.411372 0.117502 +-0.00859 -0.410598 0.129632 +numsurf 144 +SURF 0x10 +mat 1 +refs 4 +13 0.497498810291 0.092508725822 +44 0.504824519157 0.0397899076343 +12 0.488259077072 0.0414954945445 +18 0.487675845623 0.09698664397 +SURF 0x10 +mat 1 +refs 4 +12 0.160021752119 0.0444016754627 +2 0.17196290195 0.0456298589706 +11 0.169165045023 0.0942196249962 +18 0.159444600344 0.0993130207062 +SURF 0x10 +mat 1 +refs 4 +10 0.251634001732 0.0942196249962 +45 0.240978479385 0.0457531511784 +46 0.263041824102 0.0409319996834 +20 0.265378892422 0.0962954759598 +SURF 0x10 +mat 1 +refs 4 +46 0.592366755009 0.0379891917109 +42 0.570070505142 0.0403093025088 +9 0.580838561058 0.092508725822 +20 0.594728529453 0.093937240541 +SURF 0x10 +mat 1 +refs 4 +13 0.497498810291 0.092508725822 +3 0.499736607075 0.128291428089 +17 0.538914561272 0.127843603492 +21 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 4 +17 0.538914561272 0.127843603492 +0 0.578092515469 0.128291428089 +9 0.580838561058 0.092508725822 +21 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 4 +9 0.580838561058 0.092508725822 +42 0.570070505142 0.0403093025088 +43 0.532849371433 0.0370499417186 +21 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 4 +43 0.532849371433 0.0370499417186 +44 0.504824519157 0.0397899076343 +13 0.497498810291 0.092508725822 +21 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 4 +8 0.979705572128 0.160481497645 +22 0.988856136799 0.160169497132 +27 0.992000997066 0.186736986041 +26 0.982064247131 0.187075808644 +SURF 0x10 +mat 1 +refs 4 +22 0.988856136799 0.38135266304 +7 0.975636065006 0.381803452969 +28 0.977645039558 0.408409684896 +27 0.992000937462 0.407920122147 +SURF 0x10 +mat 1 +refs 4 +23 0.952253818512 0.161417603493 +8 0.979705572128 0.160481497645 +26 0.982064247131 0.187075808644 +30 0.952253818512 0.188092395663 +SURF 0x10 +mat 1 +refs 4 +7 0.975636065006 0.381803452969 +25 0.952253699303 0.382600843906 +33 0.952253699303 0.409275591373 +28 0.977645039558 0.408409684896 +SURF 0x10 +mat 1 +refs 4 +26 0.982064247131 0.187075808644 +27 0.992000997066 0.186736986041 +34 0.987920284271 0.194378420711 +35 0.979003667831 0.194682493806 +SURF 0x10 +mat 1 +refs 4 +27 0.992000937462 0.407920122147 +28 0.977645039558 0.408409684896 +36 0.975038170815 0.416000843048 +34 0.987920284271 0.415561586618 +SURF 0x10 +mat 1 +refs 4 +35 0.568520605564 0.0131846610457 +34 0.535949885845 0.0128124896437 +43 0.532849371433 0.0370499417186 +42 0.570070505142 0.0403093025088 +SURF 0x10 +mat 1 +refs 4 +34 0.535949885845 0.0128124896437 +36 0.511426270008 0.0133501831442 +44 0.504824519157 0.0397899076343 +43 0.532849371433 0.0370499417186 +SURF 0x10 +mat 1 +refs 4 +8 0.979705572128 0.160481497645 +50 0.976118206978 0.0985847264528 +55 0.984032869339 0.0978260487318 +22 0.988856136799 0.160169497132 +SURF 0x10 +mat 1 +refs 4 +55 0.984032869339 0.31900921464 +48 0.976118087769 0.319767892361 +7 0.975636065006 0.381803452969 +22 0.988856136799 0.38135266304 +SURF 0x10 +mat 1 +refs 4 +54 0.952373862267 0.100860729814 +50 0.976118206978 0.0985847264528 +8 0.979705572128 0.160481497645 +23 0.952253818512 0.161417603493 +SURF 0x10 +mat 1 +refs 4 +7 0.975636065006 0.381803452969 +48 0.976118087769 0.319767892361 +52 0.952373862267 0.322043955326 +25 0.952253699303 0.382600843906 +SURF 0x10 +mat 1 +refs 4 +52 0.952373862267 0.322043955326 +48 0.976118087769 0.319767892361 +56 0.96889591217 0.277134358883 +60 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +59 0.98069870472 0.0559511892498 +50 0.976118206978 0.0985847264528 +54 0.952373862267 0.100860729814 +62 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +56 0.96889591217 0.277134358883 +48 0.976118087769 0.319767892361 +55 0.984032869339 0.31900921464 +63 0.983788251877 0.274960786104 +SURF 0x10 +mat 1 +refs 4 +55 0.984032869339 0.0978260487318 +50 0.976118206978 0.0985847264528 +59 0.98069870472 0.0559511892498 +63 0.983788371086 0.0537776015699 +SURF 0x10 +mat 1 +refs 4 +3 0.486677229404 0.129634410143 +14 0.499736607075 0.128291428089 +65 0.497498810291 0.092508725822 +64 0.487675845623 0.09698664397 +SURF 0x10 +mat 1 +refs 4 +16 0.580838561058 0.092508725822 +0 0.578092515469 0.128291428089 +70 0.591151893139 0.129634410143 +69 0.594728529453 0.093937240541 +SURF 0x10 +mat 1 +refs 4 +0 0.538914561272 0.127843603492 +17 0.578092515469 0.128291428089 +71 0.580838561058 0.092508725822 +70 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 4 +17 0.497498810291 0.092508725822 +3 0.499736607075 0.128291428089 +64 0.538914561272 0.127843603492 +71 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 3 +80 0.158950537443 0.115466326475 +11 0.169165045023 0.0942196249962 +1 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +14 0.158456459641 0.131619676948 +80 0.158950537443 0.115466326475 +1 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +80 0.158950537443 0.115466326475 +18 0.159444600344 0.0993130207062 +11 0.169165045023 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +80 0.487176537514 0.113310500979 +3 0.499736607075 0.128291428089 +13 0.497498810291 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +18 0.487675845623 0.09698664397 +80 0.487176537514 0.113310500979 +13 0.497498810291 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +80 0.487176537514 0.113310500979 +14 0.486677229404 0.129634410143 +3 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +82 0.231016740203 0.0944552347064 +4 0.248916655779 0.132948637009 +15 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 3 +19 0.210399508476 0.0946908891201 +82 0.231016740203 0.0944552347064 +15 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 3 +82 0.231016740203 0.0944552347064 +10 0.251634001732 0.0942196249962 +4 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +81 0.189782291651 0.0944552347064 +15 0.210148066282 0.13339163363 +1 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +11 0.169165045023 0.0942196249962 +81 0.189782291651 0.0944552347064 +1 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +81 0.189782291651 0.0944552347064 +19 0.210399508476 0.0946908891201 +15 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 4 +2 0.17196290195 0.0456298589706 +96 0.188054591417 0.0459019318223 +81 0.18978227675 0.0944552272558 +11 0.169165045023 0.0942196249962 +SURF 0x10 +mat 1 +refs 4 +96 0.188054591417 0.0459019318223 +47 0.204146265984 0.0461739599705 +19 0.210399508476 0.0946908891201 +81 0.18978227675 0.0944552272558 +SURF 0x10 +mat 1 +refs 3 +82 0.231016755104 0.0944552347064 +47 0.204146265984 0.0461739599705 +45 0.240978479385 0.0457531511784 +SURF 0x10 +mat 1 +refs 3 +10 0.251634001732 0.0942196249962 +82 0.231016755104 0.0944552347064 +45 0.240978479385 0.0457531511784 +SURF 0x10 +mat 1 +refs 3 +82 0.231016755104 0.0944552347064 +19 0.210399508476 0.0946908891201 +47 0.204146265984 0.0461739599705 +SURF 0x10 +mat 1 +refs 3 +9 0.580838561058 0.092508725822 +0 0.578092515469 0.128291428089 +83 0.592940211296 0.111785814166 +SURF 0x10 +mat 1 +refs 3 +83 0.592940211296 0.111785814166 +0 0.578092515469 0.128291428089 +16 0.591151893139 0.129634410143 +SURF 0x10 +mat 1 +refs 3 +83 0.592940211296 0.111785814166 +20 0.594728529453 0.093937240541 +9 0.580838561058 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +83 0.263609230518 0.113957576454 +4 0.248916655779 0.132948637009 +10 0.251634001732 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +20 0.265378892422 0.0962954759598 +83 0.263609230518 0.113957576454 +10 0.251634001732 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +83 0.263609230518 0.113957576454 +16 0.261839598417 0.131619676948 +4 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +84 0.938527941704 0.16188570857 +30 0.952253818512 0.188092395663 +29 0.922443330288 0.189108937979 +SURF 0x10 +mat 1 +refs 3 +6 0.924802005291 0.162353783846 +84 0.938527941704 0.16188570857 +29 0.922443330288 0.189108937979 +SURF 0x10 +mat 1 +refs 3 +84 0.938527941704 0.16188570857 +23 0.952253818512 0.161417603493 +30 0.952253818512 0.188092395663 +SURF 0x10 +mat 1 +refs 3 +85 0.922261416912 0.383623600006 +32 0.912506580353 0.410630941391 +31 0.926862478256 0.410141408443 +SURF 0x10 +mat 1 +refs 3 +5 0.928871452808 0.383398205042 +85 0.922261416912 0.383623600006 +31 0.926862478256 0.410141408443 +SURF 0x10 +mat 1 +refs 3 +85 0.922261416912 0.383623600006 +24 0.915651381016 0.383849024773 +32 0.912506580353 0.410630941391 +SURF 0x10 +mat 1 +refs 3 +86 0.920226693153 0.162509813905 +29 0.922443330288 0.189108937979 +32 0.912506580353 0.189447790384 +SURF 0x10 +mat 1 +refs 3 +24 0.915651381016 0.162665843964 +86 0.920226693153 0.162509813905 +32 0.912506580353 0.189447790384 +SURF 0x10 +mat 1 +refs 3 +86 0.920226693153 0.162509813905 +6 0.924802005291 0.162353783846 +29 0.922443330288 0.189108937979 +SURF 0x10 +mat 1 +refs 3 +87 0.940562605858 0.382999539375 +31 0.926862478256 0.410141408443 +33 0.952253699303 0.409275591373 +SURF 0x10 +mat 1 +refs 3 +25 0.952253699303 0.382600843906 +87 0.940562605858 0.382999539375 +33 0.952253699303 0.409275591373 +SURF 0x10 +mat 1 +refs 3 +87 0.940562605858 0.382999539375 +5 0.928871452808 0.383398205042 +31 0.926862478256 0.410141408443 +SURF 0x10 +mat 1 +refs 4 +30 0.952253818512 0.188092395663 +88 0.952253818512 0.191843539476 +89 0.923973560333 0.192807912827 +29 0.922443330288 0.189108937979 +SURF 0x10 +mat 1 +refs 4 +88 0.952253818512 0.191843539476 +38 0.952253818512 0.195594623685 +37 0.925503849983 0.196506842971 +89 0.923973560333 0.192807912827 +SURF 0x10 +mat 1 +refs 3 +88 0.952253818512 0.191843524575 +26 0.982064247131 0.187075808644 +35 0.979003667831 0.194682493806 +SURF 0x10 +mat 1 +refs 3 +38 0.952253818512 0.195594623685 +88 0.952253818512 0.191843524575 +35 0.979003667831 0.194682493806 +SURF 0x10 +mat 1 +refs 3 +88 0.952253818512 0.191843524575 +30 0.952253818512 0.188092395663 +26 0.982064247131 0.187075808644 +SURF 0x10 +mat 1 +refs 4 +32 0.912506580353 0.410630941391 +90 0.914546966553 0.414312511683 +91 0.928165853024 0.413848102093 +31 0.926862478256 0.410141408443 +SURF 0x10 +mat 1 +refs 4 +90 0.914546966553 0.414312511683 +40 0.916587233543 0.417994052172 +39 0.929469227791 0.417554795742 +91 0.928165853024 0.413848102093 +SURF 0x10 +mat 1 +refs 4 +29 0.922443330288 0.189108937979 +89 0.923973560333 0.192807897925 +90 0.914546906948 0.193129330873 +32 0.912506580353 0.189447790384 +SURF 0x10 +mat 1 +refs 4 +89 0.923973560333 0.192807897925 +37 0.925503849983 0.196506842971 +40 0.916587233543 0.196810886264 +90 0.914546906948 0.193129330873 +SURF 0x10 +mat 1 +refs 3 +92 0.952253699303 0.413026690483 +36 0.975038170815 0.416000843048 +28 0.977645039558 0.408409684896 +SURF 0x10 +mat 1 +refs 3 +33 0.952253699303 0.409275591373 +92 0.952253699303 0.413026690483 +28 0.977645039558 0.408409684896 +SURF 0x10 +mat 1 +refs 3 +92 0.952253699303 0.413026690483 +41 0.952253699303 0.416777849197 +36 0.975038170815 0.416000843048 +SURF 0x10 +mat 1 +refs 4 +31 0.926862478256 0.410141408443 +91 0.928165853024 0.413848102093 +92 0.952253699303 0.413026690483 +33 0.952253699303 0.409275591373 +SURF 0x10 +mat 1 +refs 4 +91 0.928165853024 0.413848102093 +39 0.929469227791 0.417554795742 +41 0.952253699303 0.416777849197 +92 0.952253699303 0.413026690483 +SURF 0x10 +mat 1 +refs 4 +38 0.250188320875 0.0174915492535 +93 0.256615042686 0.0292117521167 +94 0.240211635828 0.032174821943 +37 0.239444792271 0.0185964405537 +SURF 0x10 +mat 1 +refs 4 +93 0.256615042686 0.0292117521167 +46 0.263041824102 0.0409319996834 +45 0.240978479385 0.0457531511784 +94 0.240211635828 0.032174821943 +SURF 0x10 +mat 1 +refs 3 +93 0.585872173309 0.0261452011764 +35 0.568520605564 0.0131846610457 +42 0.570070505142 0.0403093025088 +SURF 0x10 +mat 1 +refs 3 +46 0.592366755009 0.0379891917109 +93 0.585872173309 0.0261452011764 +42 0.570070505142 0.0403093025088 +SURF 0x10 +mat 1 +refs 3 +93 0.585872173309 0.0261452011764 +38 0.57937759161 0.0143012646586 +35 0.568520605564 0.0131846610457 +SURF 0x10 +mat 1 +refs 3 +96 0.188054576516 0.0459019318223 +39 0.182946905494 0.0184326171875 +40 0.20721437037 0.0189647078514 +SURF 0x10 +mat 1 +refs 3 +47 0.204146265984 0.0461739599705 +96 0.188054576516 0.0459019318223 +40 0.20721437037 0.0189647078514 +SURF 0x10 +mat 1 +refs 3 +96 0.188054576516 0.0459019318223 +2 0.17196290195 0.0456298589706 +39 0.182946905494 0.0184326171875 +SURF 0x10 +mat 1 +refs 3 +94 0.240211620927 0.0321748182178 +47 0.204146265984 0.0461739599705 +40 0.20721437037 0.0189647078514 +SURF 0x10 +mat 1 +refs 3 +37 0.239444792271 0.0185964405537 +94 0.240211620927 0.0321748182178 +40 0.20721437037 0.0189647078514 +SURF 0x10 +mat 1 +refs 3 +94 0.240211620927 0.0321748182178 +45 0.240978479385 0.0457531511784 +47 0.204146265984 0.0461739599705 +SURF 0x10 +mat 1 +refs 3 +95 0.495218962431 0.0278983786702 +44 0.504824519157 0.0397899076343 +36 0.511426270008 0.0133501831442 +SURF 0x10 +mat 1 +refs 3 +41 0.50217884779 0.0143012646586 +95 0.495218962431 0.0278983786702 +36 0.511426270008 0.0133501831442 +SURF 0x10 +mat 1 +refs 3 +95 0.495218962431 0.0278983786702 +12 0.488259077072 0.0414954945445 +44 0.504824519157 0.0397899076343 +SURF 0x10 +mat 1 +refs 3 +95 0.166908919811 0.0309466160834 +39 0.182946905494 0.0184326171875 +2 0.17196290195 0.0456298589706 +SURF 0x10 +mat 1 +refs 3 +12 0.160021752119 0.0444016754627 +95 0.166908919811 0.0309466160834 +2 0.17196290195 0.0456298589706 +SURF 0x10 +mat 1 +refs 3 +95 0.166908919811 0.0309466160834 +41 0.173796087503 0.0174915492535 +39 0.182946905494 0.0184326171875 +SURF 0x10 +mat 1 +refs 4 +49 0.928629636765 0.103136658669 +100 0.940501749516 0.101998694241 +84 0.938527941704 0.16188570857 +6 0.924802005291 0.162353783846 +SURF 0x10 +mat 1 +refs 4 +100 0.940501749516 0.101998694241 +54 0.952373862267 0.100860729814 +23 0.952253818512 0.161417603493 +84 0.938527941704 0.16188570857 +SURF 0x10 +mat 1 +refs 4 +51 0.92862957716 0.324319839478 +98 0.924672245979 0.324699223042 +85 0.922261416912 0.383623600006 +5 0.928871452808 0.383398205042 +SURF 0x10 +mat 1 +refs 4 +98 0.924672245979 0.324699223042 +53 0.920714855194 0.325078606606 +24 0.915651381016 0.383849024773 +85 0.922261416912 0.383623600006 +SURF 0x10 +mat 1 +refs 4 +53 0.920714855194 0.103895410895 +99 0.924672245979 0.103516034782 +86 0.920226693153 0.162509828806 +24 0.915651381016 0.162665843964 +SURF 0x10 +mat 1 +refs 4 +99 0.924672245979 0.103516034782 +49 0.928629636765 0.103136658669 +6 0.924802005291 0.162353783846 +86 0.920226693153 0.162509828806 +SURF 0x10 +mat 1 +refs 4 +52 0.952373862267 0.322043955326 +97 0.940501749516 0.323181867599 +87 0.940562605858 0.382999539375 +25 0.952253699303 0.382600843906 +SURF 0x10 +mat 1 +refs 4 +97 0.940501749516 0.323181867599 +51 0.92862957716 0.324319839478 +5 0.928871452808 0.383398205042 +87 0.940562605858 0.382999539375 +SURF 0x10 +mat 1 +refs 4 +51 0.92862957716 0.324319839478 +97 0.940501689911 0.323181867599 +101 0.925878942013 0.288115501404 +57 0.912610471249 0.291375726461 +SURF 0x10 +mat 1 +refs 4 +97 0.940501689911 0.323181867599 +52 0.952373862267 0.322043955326 +60 0.939147412777 0.284855306149 +101 0.925878942013 0.288115501404 +SURF 0x10 +mat 1 +refs 4 +49 0.928629636765 0.103136658669 +99 0.924672245979 0.103516034782 +103 0.916967093945 0.0712793767452 +58 0.924413323402 0.070192605257 +SURF 0x10 +mat 1 +refs 4 +99 0.924672245979 0.103516034782 +53 0.920714855194 0.103895410895 +61 0.909520804882 0.0723661482334 +103 0.916967093945 0.0712793767452 +SURF 0x10 +mat 1 +refs 4 +53 0.920714855194 0.325078606606 +98 0.924672245979 0.324699223042 +102 0.911065638065 0.292462527752 +61 0.909520804882 0.293549329042 +SURF 0x10 +mat 1 +refs 4 +98 0.924672245979 0.324699223042 +51 0.92862957716 0.324319839478 +57 0.912610471249 0.291375726461 +102 0.911065638065 0.292462527752 +SURF 0x10 +mat 1 +refs 4 +54 0.952373862267 0.100860729814 +100 0.940501749516 0.10199868679 +104 0.93888348341 0.0669323652983 +62 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +100 0.940501749516 0.10199868679 +49 0.928629636765 0.103136658669 +58 0.924413323402 0.070192605257 +104 0.93888348341 0.0669323652983 +SURF 0x10 +mat 1 +refs 4 +66 0.158456459641 0.131619676948 +106 0.158950537443 0.115466341376 +118 0.161261484027 0.124506019056 +105 0.164917930961 0.132284164429 +SURF 0x10 +mat 1 +refs 4 +1 0.171379372478 0.132948637009 +105 0.164917930961 0.132284164429 +118 0.161261484027 0.124506019056 +14 0.169165045023 0.0942196249962 +SURF 0x10 +mat 1 +refs 4 +14 0.169165045023 0.0942196249962 +118 0.161261484027 0.124506019056 +106 0.158950537443 0.115466341376 +65 0.159444600344 0.0993130207062 +SURF 0x10 +mat 1 +refs 3 +105 0.210273772478 0.114041298628 +15 0.171379372478 0.132948637009 +67 0.169165045023 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +66 0.210399508476 0.0946908891201 +105 0.210273772478 0.114041298628 +67 0.169165045023 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +105 0.210273772478 0.114041298628 +1 0.210148066282 0.13339163363 +15 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +107 0.229532390833 0.133170127869 +67 0.210399508476 0.0946908891201 +15 0.251634001732 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +4 0.248916655779 0.132948637009 +107 0.229532390833 0.133170127869 +15 0.251634001732 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +107 0.229532390833 0.133170127869 +68 0.210148066282 0.13339163363 +67 0.210399508476 0.0946908891201 +SURF 0x10 +mat 1 +refs 4 +68 0.265378892422 0.0962954759598 +107 0.263609230518 0.113957613707 +119 0.261057853699 0.104607567191 +108 0.258506447077 0.0952575206757 +SURF 0x10 +mat 1 +refs 4 +69 0.251634001732 0.0942196249962 +108 0.258506447077 0.0952575206757 +119 0.261057853699 0.104607567191 +16 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 4 +16 0.248916655779 0.132948637009 +119 0.261057853699 0.104607567191 +107 0.263609230518 0.113957613707 +4 0.261839598417 0.131619676948 +SURF 0x10 +mat 1 +refs 3 +109 0.492587357759 0.0947477146983 +64 0.486677229404 0.129634410143 +65 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +73 0.497498810291 0.092508725822 +109 0.492587357759 0.0947477146983 +65 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +109 0.492587357759 0.0947477146983 +72 0.487675845623 0.09698664397 +64 0.486677229404 0.129634410143 +SURF 0x10 +mat 1 +refs 4 +65 0.169165045023 0.0942196249962 +106 0.170272231102 0.113584116101 +110 0.158950522542 0.115466333926 +73 0.159444600344 0.0993130207062 +SURF 0x10 +mat 1 +refs 4 +106 0.170272231102 0.113584116101 +66 0.171379372478 0.132948637009 +74 0.158456459641 0.131619676948 +110 0.158950522542 0.115466333926 +SURF 0x10 +mat 1 +refs 4 +75 0.169165045023 0.0942196249962 +112 0.189782202244 0.0944553017616 +120 0.173773348331 0.103948272765 +111 0.1702722013 0.113584175706 +SURF 0x10 +mat 1 +refs 4 +67 0.171379372478 0.132948637009 +111 0.1702722013 0.113584175706 +120 0.173773348331 0.103948272765 +66 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 4 +66 0.210148066282 0.13339163363 +120 0.173773348331 0.103948272765 +112 0.189782202244 0.0944553017616 +74 0.210399508476 0.0946908891201 +SURF 0x10 +mat 1 +refs 4 +75 0.210399508476 0.0946908891201 +111 0.231016799808 0.0944552570581 +121 0.220645338297 0.104248255491 +113 0.210273787379 0.114041261375 +SURF 0x10 +mat 1 +refs 4 +76 0.210148066282 0.13339163363 +113 0.210273787379 0.114041261375 +121 0.220645338297 0.104248255491 +68 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 4 +68 0.248916655779 0.132948637009 +121 0.220645338297 0.104248255491 +111 0.231016799808 0.0944552570581 +67 0.251634001732 0.0942196249962 +SURF 0x10 +mat 1 +refs 4 +68 0.261839598417 0.131619676948 +108 0.255378127098 0.132284104824 +114 0.258506417274 0.0952575877309 +76 0.265378892422 0.0962954759598 +SURF 0x10 +mat 1 +refs 4 +108 0.255378127098 0.132284104824 +69 0.248916655779 0.132948637009 +77 0.251634001732 0.0942196249962 +114 0.258506417274 0.0952575877309 +SURF 0x10 +mat 1 +refs 3 +115 0.592940211296 0.111785843968 +69 0.580838561058 0.092508725822 +70 0.578092515469 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +78 0.591151893139 0.129634410143 +115 0.592940211296 0.111785843968 +70 0.578092515469 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +115 0.592940211296 0.111785843968 +77 0.594728529453 0.093937240541 +69 0.580838561058 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +116 0.560003638268 0.0922706499696 +70 0.538914561272 0.127843603492 +71 0.578092515469 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +79 0.580838561058 0.092508725822 +116 0.560003638268 0.0922706499696 +71 0.578092515469 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +116 0.560003638268 0.0922706499696 +78 0.539168715477 0.0920325741172 +70 0.538914561272 0.127843603492 +SURF 0x10 +mat 1 +refs 3 +117 0.539041638374 0.10993809998 +71 0.497498810291 0.092508725822 +64 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +72 0.538914561272 0.127843603492 +117 0.539041638374 0.10993809998 +64 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +117 0.539041638374 0.10993809998 +79 0.539168715477 0.0920325741172 +71 0.497498810291 0.092508725822 +kids 0 +OBJECT group +name "hip" +kids 2 +OBJECT poly +name "hip_0" +data 8 +Mesh.014 +crease 30 +numvert 11 +0.129868 -0.001723 0.101362 +0.070686 -0.123931 -3.8e-05 +0.001297 -0.111755 0.08596 +0.039904 -0.109106 0.085969 +0.069573 -0.047841 0.136802 +-0.037311 -0.100451 0.085952 +-0.03726 -0.100451 -0.085906 +0.069655 -0.047841 -0.136695 +0.039956 -0.109106 -0.085879 +0.001348 -0.111755 -0.085892 +0.129927 -0.001723 -0.10122 +numsurf 4 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +1 0.0 0.0 +3 1.0 0.0 +4 1.0 1.0 +SURF 0x10 +mat 1 +refs 3 +3 0.0 1.0 +5 0.0 0.0 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +8 0.0 1.0 +9 1.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +10 0.541611254215 0.353963375092 +7 0.564295530319 0.324459403753 +8 0.531780183315 0.285264790058 +1 0.476869493723 0.275780588388 +kids 0 +OBJECT poly +name "hip_1" +data 8 +Mesh.014 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 69 +0.033729 0.320152 0.11214 +-0.07374 0.334363 0.112265 +-0.093962 0.146296 0.134572 +0.091314 0.131376 0.127504 +-0.082012 0.013798 0.156382 +0.139619 0.01204 7.3e-05 +-0.083338 -0.106666 -7.1e-05 +-0.089641 -0.048477 0.084241 +0.081033 0.234871 0.14288 +-0.019005 0.316442 0.133073 +-0.095339 0.332363 2.3e-05 +-0.107022 0.252841 0.142826 +0.004398 0.144144 0.16695 +-0.086481 0.075134 0.129144 +0.105882 0.066616 0.161226 +0.129868 -0.001723 0.101362 +0.126134 0.065358 0.07004 +-0.01301 0.243856 0.195965 +0.007853 0.074548 0.177212 +0.126254 0.037349 0.113191 +0.070686 -0.123931 -3.8e-05 +0.063827 0.319167 4.4e-05 +-0.103818 -0.038736 0 +-0.012898 0.243856 -0.195866 +-0.131707 0.237697 -3e-06 +0.100495 0.236722 4.1e-05 +0.127401 -0.062231 6.6e-05 +-0.103473 0.010695 0 +0.004494 0.144144 -0.166848 +-0.10694 0.252841 -0.142781 +-0.018929 0.316442 -0.13298 +0.081114 0.234871 -0.142727 +0.109019 0.140904 -4.9e-05 +-0.113053 0.120808 -0.000113 +0.091386 0.131376 -0.127352 +-0.093885 0.146296 -0.134526 +-0.073676 0.334363 -0.112204 +0.033793 0.320152 -0.112017 +-0.006326 -0.129215 -5.5e-05 +0.001297 -0.111755 0.08596 +0.068337 -0.078175 0.086021 +0.039904 -0.109106 0.085969 +0.067762 -0.028253 0.142733 +0.008405 -0.009605 0.174828 +0.069573 -0.047841 0.136802 +0.057549 -0.013581 0.166814 +-0.040471 -0.07128 0.12822 +-0.037311 -0.100451 0.085952 +-0.036646 -0.04006 0.164385 +-0.03655 -0.04006 -0.164339 +-0.03726 -0.100451 -0.085906 +-0.040394 -0.07128 -0.128175 +0.057648 -0.013581 -0.166714 +0.069655 -0.047841 -0.136695 +0.008506 -0.009605 -0.174756 +0.067847 -0.028253 -0.142627 +0.039956 -0.109106 -0.085879 +0.068389 -0.078175 -0.085914 +0.001348 -0.111755 -0.085892 +0.120028 0.084073 5e-05 +0.126321 0.037349 -0.113052 +-0.108715 0.064904 -1.5e-05 +0.007955 0.074548 -0.17714 +0.126177 0.065358 -0.069901 +0.129927 -0.001723 -0.10122 +0.105976 0.066616 -0.161099 +-0.086406 0.075134 -0.129126 +-0.089589 -0.048477 -0.084225 +-0.081921 0.013798 -0.156361 +numsurf 74 +SURF 0x10 +mat 1 +refs 4 +21 0.477488577366 0.538216471672 +0 0.588466286659 0.539192080498 +8 0.570933878422 0.492245584726 +25 0.477485835552 0.491156965494 +SURF 0x10 +mat 1 +refs 4 +8 0.570933878422 0.492245584726 +3 0.561115026474 0.442864924669 +32 0.477428913116 0.449115723372 +25 0.477485835552 0.491156965494 +SURF 0x10 +mat 1 +refs 4 +11 0.241832822561 0.502074539661 +1 0.259334743023 0.550819754601 +10 0.149388030171 0.548860371113 +24 0.149377435446 0.492271602154 +SURF 0x10 +mat 1 +refs 4 +33 0.149304747581 0.434716522694 +2 0.236739188433 0.451263666153 +11 0.241832822561 0.502074539661 +24 0.149377435446 0.492271602154 +SURF 0x10 +mat 1 +refs 4 +8 0.570933878422 0.492245584726 +0 0.588466286659 0.539192080498 +9 0.609203577042 0.535518825054 +17 0.605678677559 0.498123198748 +SURF 0x10 +mat 1 +refs 4 +9 0.279702723026 0.533263504505 +1 0.259334743023 0.550819754601 +11 0.241832822561 0.502074539661 +17 0.276214629412 0.496258497238 +SURF 0x10 +mat 1 +refs 4 +11 0.241832822561 0.502074539661 +2 0.236739188433 0.451263666153 +12 0.25774115324 0.449866533279 +17 0.276214629412 0.496258497238 +SURF 0x10 +mat 1 +refs 4 +12 0.587010145187 0.45124143362 +3 0.561115026474 0.442864924669 +8 0.570933878422 0.492245584726 +17 0.605678677559 0.498123198748 +SURF 0x10 +mat 1 +refs 4 +14 0.373707354069 0.397682666779 +3 0.391818284988 0.438928365707 +12 0.365495502949 0.447443276644 +18 0.363462686539 0.402757287025 +SURF 0x10 +mat 1 +refs 4 +12 0.256501913071 0.446879982948 +2 0.235390692949 0.448284357786 +13 0.228416740894 0.403520137072 +18 0.258491098881 0.403153330088 +SURF 0x10 +mat 1 +refs 4 +13 0.228416740894 0.403520137072 +2 0.235390692949 0.448284357786 +33 0.147502318025 0.431651204824 +61 0.147565379739 0.39711612463 +SURF 0x10 +mat 1 +refs 4 +27 0.147573694587 0.363180428743 +4 0.245467081666 0.365122884512 +13 0.228416740894 0.403520137072 +61 0.147565379739 0.39711612463 +SURF 0x10 +mat 1 +refs 4 +16 0.432047069073 0.396877706051 +3 0.391818284988 0.438928365707 +14 0.373707354069 0.397682666779 +19 0.404441535473 0.378959447145 +SURF 0x10 +mat 1 +refs 4 +15 0.412010192871 0.353963375092 +5 0.47681081295 0.362768054008 +16 0.432047069073 0.396877706051 +19 0.404441535473 0.378959447145 +SURF 0x10 +mat 1 +refs 4 +32 0.476886361837 0.445282399654 +3 0.391818284988 0.438928365707 +16 0.432047069073 0.396877706051 +59 0.476821929216 0.408850640059 +SURF 0x10 +mat 1 +refs 4 +7 0.20030733943 0.326137751341 +4 0.245467081666 0.365122884512 +27 0.147573694587 0.363180428743 +22 0.147573694587 0.332235902548 +SURF 0x10 +mat 1 +refs 3 +6 0.147525563836 0.289710849524 +7 0.20030733943 0.326137751341 +22 0.147573694587 0.332235902548 +SURF 0x10 +mat 1 +refs 3 +5 0.47681081295 0.362768054008 +59 0.476821929216 0.408850640059 +16 0.432047069073 0.396877706051 +SURF 0x10 +mat 1 +refs 3 +5 0.47681081295 0.362768054008 +63 0.521574378014 0.396877706051 +59 0.476821929216 0.408850640059 +SURF 0x10 +mat 1 +refs 4 +32 0.476886361837 0.445282399654 +59 0.476821929216 0.408850640059 +63 0.521574378014 0.396877706051 +34 0.561780393124 0.438928365707 +SURF 0x10 +mat 1 +refs 4 +66 0.066736035049 0.403520137072 +61 0.147565379739 0.39711612463 +33 0.147502318025 0.431651204824 +35 0.0597842335701 0.448284357786 +SURF 0x10 +mat 1 +refs 4 +28 0.0386731177568 0.446879982948 +62 0.0366616845131 0.403153330088 +66 0.066736035049 0.403520137072 +35 0.0597842335701 0.448284357786 +SURF 0x10 +mat 1 +refs 4 +65 0.579914093018 0.397682666779 +62 0.590158760548 0.402757287025 +28 0.588103175163 0.447443276644 +34 0.561780393124 0.438928365707 +SURF 0x10 +mat 1 +refs 4 +28 0.368018776178 0.45124143362 +23 0.349350273609 0.498123198748 +31 0.384095132351 0.492245584726 +34 0.393913984299 0.442864924669 +SURF 0x10 +mat 1 +refs 4 +29 0.0569461509585 0.502074539661 +23 0.022564297542 0.496258497238 +28 0.0410377681255 0.449866533279 +35 0.0620398595929 0.451263666153 +SURF 0x10 +mat 1 +refs 4 +30 0.019076263532 0.533263504505 +23 0.022564297542 0.496258497238 +29 0.0569461509585 0.502074539661 +36 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +31 0.384095132351 0.492245584726 +23 0.349350273609 0.498123198748 +30 0.345825403929 0.535518825054 +37 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 4 +33 0.149304747581 0.434716522694 +24 0.149377435446 0.492271602154 +29 0.0569461509585 0.502074539661 +35 0.0620398595929 0.451263666153 +SURF 0x10 +mat 1 +refs 4 +29 0.0569461509585 0.502074539661 +24 0.149377435446 0.492271602154 +10 0.149388030171 0.548860371113 +36 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +31 0.384095132351 0.492245584726 +25 0.477485835552 0.491156965494 +32 0.477428913116 0.449115723372 +34 0.393913984299 0.442864924669 +SURF 0x10 +mat 1 +refs 4 +21 0.477488577366 0.538216471672 +25 0.477485835552 0.491156965494 +31 0.384095132351 0.492245584726 +37 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 3 +4 0.245467081666 0.365122884512 +18 0.258491098881 0.403153330088 +13 0.228416740894 0.403520137072 +SURF 0x10 +mat 1 +refs 3 +5 0.47681081295 0.362768054008 +15 0.412010192871 0.353963375092 +26 0.476813435555 0.315253406763 +SURF 0x10 +mat 1 +refs 4 +38 0.4777354002 0.287952244282 +20 0.477732360363 0.290956437588 +41 0.52664244175 0.299386203289 +39 0.526643931866 0.297880113125 +SURF 0x10 +mat 1 +refs 4 +6 0.147525563836 0.289710849524 +38 0.147522211075 0.275595039129 +39 0.20136743784 0.286525011063 +47 0.201369166374 0.293601632118 +SURF 0x10 +mat 1 +refs 4 +26 0.476813435555 0.315253406763 +15 0.412010192871 0.353963375092 +44 0.389325916767 0.324459403753 +40 0.421813189983 0.305053383112 +SURF 0x10 +mat 1 +refs 4 +4 0.237220570445 0.357863038778 +48 0.242675840855 0.321152806282 +43 0.249793663621 0.341911584139 +18 0.251418828964 0.399271219969 +SURF 0x10 +mat 1 +refs 4 +20 0.476869493723 0.275780588388 +26 0.476813435555 0.315253406763 +40 0.421813189983 0.305053383112 +41 0.421841263771 0.285264790058 +SURF 0x10 +mat 1 +refs 4 +15 0.412010192871 0.353963375092 +19 0.404441535473 0.378959447145 +42 0.385531663895 0.336990475655 +44 0.389325916767 0.324459403753 +SURF 0x10 +mat 1 +refs 4 +14 0.373707354069 0.397682666779 +45 0.37012398243 0.3463768363 +42 0.385531663895 0.336990475655 +19 0.404441535473 0.378959447145 +SURF 0x10 +mat 1 +refs 4 +14 0.578931689262 0.402289062738 +18 0.561115026474 0.442864924669 +43 0.587010145187 0.45124143362 +45 0.589010059834 0.407281309366 +SURF 0x10 +mat 1 +refs 4 +6 0.147525563836 0.289710849524 +47 0.201369166374 0.293601632118 +46 0.227829754353 0.311863124371 +7 0.20030733943 0.326137751341 +SURF 0x10 +mat 1 +refs 4 +4 0.245467081666 0.365122884512 +7 0.20030733943 0.326137751341 +46 0.227829754353 0.311863124371 +48 0.250469237566 0.331407189369 +SURF 0x10 +mat 1 +refs 3 +44 0.389325916767 0.324459403753 +41 0.421841263771 0.285264790058 +40 0.421813189983 0.305053383112 +SURF 0x10 +mat 1 +refs 3 +45 0.244331255555 0.33920109272 +43 0.249793663621 0.341911584139 +48 0.242675840855 0.321152806282 +SURF 0x10 +mat 1 +refs 3 +42 0.227917268872 0.329200476408 +45 0.244331255555 0.33920109272 +48 0.242675840855 0.321152806282 +SURF 0x10 +mat 1 +refs 3 +44 0.223875001073 0.315849334002 +42 0.227917268872 0.329200476408 +48 0.242675840855 0.321152806282 +SURF 0x10 +mat 1 +refs 3 +44 0.236307442188 0.337973564863 +48 0.251227319241 0.342177689075 +46 0.231686860323 0.325308918953 +SURF 0x10 +mat 1 +refs 3 +41 0.52664244175 0.299386203289 +44 0.555542588234 0.334223031998 +46 0.550680041313 0.320895135403 +SURF 0x10 +mat 1 +refs 3 +41 0.201365754008 0.288183152676 +46 0.227829754353 0.311863124371 +47 0.201369166374 0.293601632118 +SURF 0x10 +mat 1 +refs 3 +56 0.0937869846821 0.288183152676 +50 0.0937836244702 0.293601632118 +51 0.0673230364919 0.311863124371 +SURF 0x10 +mat 1 +refs 3 +56 0.52664244175 0.299386203289 +51 0.550680041313 0.320895135403 +53 0.555542588234 0.334223031998 +SURF 0x10 +mat 1 +refs 3 +53 0.236307442188 0.337973564863 +51 0.231686860323 0.325308918953 +49 0.251227319241 0.342177689075 +SURF 0x10 +mat 1 +refs 3 +53 0.41557982564 0.309599339962 +49 0.39673769474 0.314902812243 +55 0.411536931992 0.322950482368 +SURF 0x10 +mat 1 +refs 3 +55 0.411536931992 0.322950482368 +49 0.39673769474 0.314902812243 +52 0.395118921995 0.33295109868 +SURF 0x10 +mat 1 +refs 3 +52 0.395118921995 0.33295109868 +49 0.39673769474 0.314902812243 +54 0.389637380838 0.335661590099 +SURF 0x10 +mat 1 +refs 3 +53 0.564295530319 0.324459403753 +57 0.531808257103 0.305053383112 +56 0.531780183315 0.285264790058 +SURF 0x10 +mat 1 +refs 4 +68 0.049685664475 0.365122884512 +49 0.0446835458279 0.331407189369 +51 0.0673230364919 0.311863124371 +67 0.094845443964 0.326137751341 +SURF 0x10 +mat 1 +refs 4 +6 0.147525563836 0.289710849524 +67 0.094845443964 0.326137751341 +51 0.0673230364919 0.311863124371 +50 0.0937836244702 0.293601632118 +SURF 0x10 +mat 1 +refs 4 +65 0.579914093018 0.397682666779 +52 0.583497464657 0.3463768363 +54 0.588633358479 0.348920822144 +62 0.590158760548 0.402757287025 +SURF 0x10 +mat 1 +refs 4 +65 0.579914093018 0.397682666779 +60 0.549179911613 0.378959357738 +55 0.568089842796 0.336990475655 +52 0.583497464657 0.3463768363 +SURF 0x10 +mat 1 +refs 4 +64 0.541611254215 0.353963375092 +53 0.564295530319 0.324459403753 +55 0.568089842796 0.336990475655 +60 0.549179911613 0.378959357738 +SURF 0x10 +mat 1 +refs 4 +20 0.476869493723 0.275780588388 +56 0.531780183315 0.285264790058 +57 0.531808257103 0.305053383112 +26 0.476813435555 0.315253406763 +SURF 0x10 +mat 1 +refs 4 +68 0.049685664475 0.365122884512 +62 0.0366616845131 0.403153330088 +54 0.0381543412805 0.350472599268 +49 0.0446835458279 0.331407189369 +SURF 0x10 +mat 1 +refs 4 +26 0.476813435555 0.315253406763 +57 0.531808257103 0.305053383112 +53 0.564295530319 0.324459403753 +64 0.541611254215 0.353963375092 +SURF 0x10 +mat 1 +refs 4 +6 0.147525563836 0.289710849524 +50 0.0937836244702 0.293601632118 +58 0.0937853008509 0.286525011063 +38 0.147522211075 0.275595039129 +SURF 0x10 +mat 1 +refs 4 +38 0.4777354002 0.287952244282 +58 0.526643931866 0.297880113125 +56 0.52664244175 0.299386203289 +20 0.477732360363 0.290956437588 +SURF 0x10 +mat 1 +refs 3 +5 0.47681081295 0.362768054008 +26 0.476813435555 0.315253406763 +64 0.541611254215 0.353963375092 +SURF 0x10 +mat 1 +refs 3 +68 0.049685664475 0.365122884512 +66 0.066736035049 0.403520137072 +62 0.0366616845131 0.403153330088 +SURF 0x10 +mat 1 +refs 3 +6 0.147525563836 0.289710849524 +22 0.147573694587 0.332235902548 +67 0.094845443964 0.326137751341 +SURF 0x10 +mat 1 +refs 4 +67 0.094845443964 0.326137751341 +22 0.147573694587 0.332235902548 +27 0.147573694587 0.363180428743 +68 0.049685664475 0.365122884512 +SURF 0x10 +mat 1 +refs 4 +64 0.541611254215 0.353963375092 +60 0.549179911613 0.378959357738 +63 0.521574378014 0.396877706051 +5 0.47681081295 0.362768054008 +SURF 0x10 +mat 1 +refs 4 +27 0.147573694587 0.363180428743 +61 0.147565379739 0.39711612463 +66 0.066736035049 0.403520137072 +68 0.049685664475 0.365122884512 +SURF 0x10 +mat 1 +refs 4 +60 0.549179911613 0.378959357738 +65 0.579914093018 0.397682666779 +34 0.561780393124 0.438928365707 +63 0.521574378014 0.396877706051 +kids 0 +OBJECT group +name "hand.L" +kids 2 +OBJECT poly +name "hand.L_0" +data 8 +Mesh.007 +crease 30 +numvert 8 +-0.006117 0.467113 0.808638 +-0.003186 0.461048 0.808637 +-0.003186 0.4733 0.808604 +0.010842 0.473423 0.807553 +0.014511 0.467605 0.807539 +0.010842 0.462078 0.80756 +0.00563 0.475362 0.808555 +0.00563 0.459355 0.808581 +numsurf 6 +SURF 0x10 +mat 1 +refs 3 +3 0.0 1.0 +6 0.0 0.0 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +3 0.0 0.0 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +2 0.0 0.0 +0 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +4 0.0 0.0 +0 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +0 0.0 0.0 +1 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +7 0.0 1.0 +5 0.0 0.0 +1 1.0 0.0 +kids 0 +OBJECT poly +name "hand.L_1" +data 8 +Mesh.007 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 142 +-0.024721 0.490108 0.86888 +0.044153 0.468232 0.951344 +0.029347 0.490582 0.86483 +-0.043417 0.448373 0.946554 +-0.024721 0.442891 0.869005 +0.04413 0.491736 0.954056 +0.029347 0.44686 0.864854 +-0.056468 0.464036 0.950293 +-0.036034 0.466262 0.86901 +0.043439 0.46816 0.864774 +0.009239 0.498056 0.868689 +0.009239 0.436366 0.868789 +0.041492 0.457764 0.914959 +-0.009242 0.473917 0.953086 +-0.038109 0.447131 0.913319 +-0.03811 0.489265 0.914982 +-0.008309 0.498867 0.956279 +0.041492 0.491162 0.914859 +0.060916 0.482118 0.951341 +-0.057396 0.445776 0.931884 +0.001692 0.454318 0.912152 +0.001691 0.499607 0.914871 +0.055672 0.465829 0.912082 +-0.05435 0.45824 0.909291 +0.018487 0.472551 0.952955 +0.018334 0.496209 0.954446 +-0.040874 0.49347 0.938803 +-0.031321 0.469496 0.940973 +0.048333 0.485157 0.987265 +0.059452 0.484109 0.983323 +0.048444 0.478457 0.979131 +0.040214 0.476991 0.979663 +0.02634 0.476338 0.976586 +0.040038 0.483125 0.988092 +0.024187 0.484373 0.989969 +-0.001562 0.47498 0.977719 +0.013768 0.475601 0.977482 +-0.00187 0.483562 0.991397 +0.013743 0.483204 0.989559 +-0.010555 0.483905 0.991485 +-0.031032 0.476042 0.992091 +-0.010812 0.474677 0.977045 +-0.031049 0.468181 0.97812 +-0.048633 0.441158 0.963262 +-0.067024 0.437778 0.960833 +-0.059164 0.452215 0.962913 +0.04946 0.470558 0.995965 +0.058037 0.470416 0.993448 +0.049462 0.467456 0.98899 +0.037843 0.459919 0.996241 +0.025033 0.459742 0.992894 +0.037819 0.457118 1.002893 +0.024682 0.455192 1.003802 +0.001257 0.45604 0.9914 +0.012309 0.456161 0.991526 +-0.000896 0.45144 1.002581 +0.012133 0.452043 1.00136 +-0.011948 0.449154 1.002792 +-0.028124 0.446775 1.000462 +-0.012009 0.454892 0.988552 +-0.028077 0.452385 0.986911 +0.050589 0.454357 0.99663 +0.056429 0.458111 0.998625 +0.049961 0.453225 0.991 +0.035435 0.446057 0.986578 +0.026121 0.446931 0.985319 +0.035434 0.442004 0.991059 +0.026097 0.441098 0.991654 +0.000717 0.442817 0.982313 +0.008685 0.442817 0.982422 +0.000194 0.436687 0.98912 +0.008488 0.437212 0.98862 +-0.014614 0.434443 0.98614 +-0.026209 0.431915 0.983728 +-0.016176 0.441634 0.978537 +-0.024969 0.440634 0.977114 +-0.048986 0.440837 0.981923 +-0.060344 0.438386 0.988605 +-0.058301 0.450641 0.98314 +-0.018976 0.447735 0.823262 +-0.028052 0.466489 0.823266 +-0.018976 0.485624 0.823162 +0.024387 0.486004 0.819911 +0.0357 0.468012 0.819866 +0.024387 0.45092 0.819931 +0.008297 0.492002 0.823009 +0.008297 0.442499 0.823089 +-0.006117 0.467113 0.808638 +-0.003186 0.461048 0.808637 +-0.003186 0.4733 0.808604 +0.010842 0.473423 0.807553 +0.014511 0.467605 0.807539 +0.010842 0.462078 0.80756 +0.00563 0.475362 0.808555 +0.00563 0.459355 0.808581 +0.054033 0.487459 0.947685 +0.054034 0.473074 0.946479 +0.032927 0.468018 0.949121 +0.003657 0.470381 0.949888 +0.032753 0.495845 0.951314 +0.003678 0.501478 0.951633 +-0.022854 0.500679 0.9465 +0.054283 0.484963 0.985533 +0.05435 0.481035 0.980616 +0.044129 0.480129 0.958346 +0.047705 0.481668 0.983403 +0.033419 0.476147 0.977311 +0.032091 0.484098 0.989647 +0.040951 0.480074 0.984114 +0.023972 0.481103 0.980856 +0.006081 0.47467 0.976693 +0.005882 0.483852 0.991238 +0.014874 0.48029 0.98109 +-0.003062 0.480312 0.982233 +-0.020935 0.482385 0.994143 +-0.009897 0.477977 0.965897 +-0.019801 0.471211 0.976307 +0.05402 0.47063 0.99506 +0.054021 0.468781 0.990909 +0.048918 0.468912 0.992449 +0.031351 0.458694 0.99358 +0.031197 0.454225 1.003055 +0.038645 0.458588 0.999607 +0.024032 0.457415 0.998131 +0.006686 0.454986 0.990291 +0.005423 0.449687 1.001637 +0.012959 0.454155 0.996277 +-0.00059 0.453755 0.99689 +-0.020026 0.447295 1.003047 +-0.019999 0.452992 0.985763 +-0.029273 0.451408 0.993373 +0.053455 0.455291 0.997695 +0.05313 0.454807 0.995033 +0.050416 0.452874 0.993929 +0.036022 0.442348 0.98714 +0.025404 0.44234 0.98677 +0.008902 0.438388 0.983739 +-0.000348 0.438089 0.983959 +-0.020715 0.431777 0.984715 +-0.026663 0.43473 0.979322 +-0.008638 0.472707 0.967274 +-0.015632 0.435664 0.97592 +numsurf 166 +SURF 0x10 +mat 1 +refs 4 +14 0.84022539854 0.507817029953 +4 0.853307306767 0.537954211235 +11 0.87620472908 0.535124897957 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 4 +11 0.87620472908 0.535124897957 +6 0.890085279942 0.536015510559 +12 0.893884718418 0.501197993755 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 3 +13 0.859799325466 0.479333460331 +27 0.842861533165 0.476667225361 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 4 +17 0.893893361092 0.501265108585 +2 0.890087366104 0.536032259464 +10 0.876213371754 0.535192131996 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 4 +10 0.840269207954 0.508153378963 +0 0.867085576057 0.504742860794 +15 0.876213371754 0.535192131996 +21 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 3 +15 0.840269207954 0.508153378963 +7 0.830979704857 0.483685195446 +26 0.842920362949 0.477121174335 +SURF 0x10 +mat 1 +refs 4 +12 0.893884718418 0.501197993755 +6 0.890085279942 0.536015510559 +9 0.899586796761 0.53483569622 +22 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 4 +9 0.899586796761 0.53483569622 +2 0.890087366104 0.536032259464 +17 0.893893361092 0.501265108585 +22 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 4 +15 0.845680773258 0.538942217827 +0 0.831306993961 0.509110808372 +8 0.840269207954 0.508153378963 +23 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +8 0.845680773258 0.538942217827 +4 0.853307306767 0.537954211235 +14 0.84022539854 0.507817029953 +23 0.831306993961 0.509110808372 +SURF 0x10 +mat 1 +refs 4 +14 0.84022539854 0.507817029953 +3 0.830914318562 0.483180642128 +19 0.81484991312 0.485469847918 +23 0.831306993961 0.509110808372 +SURF 0x10 +mat 1 +refs 4 +19 0.81484991312 0.485469847918 +7 0.830979704857 0.483685195446 +15 0.840269207954 0.508153378963 +23 0.831306993961 0.509110808372 +SURF 0x10 +mat 1 +refs 3 +24 0.874306678772 0.477910578251 +20 0.867323338985 0.506574332714 +12 0.893884718418 0.501197993755 +SURF 0x10 +mat 1 +refs 3 +25 0.874339342117 0.478162705898 +17 0.893893361092 0.501265108585 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 3 +26 0.842920362949 0.477121174335 +21 0.867085576057 0.504742860794 +15 0.840269207954 0.508153378963 +SURF 0x10 +mat 1 +refs 3 +27 0.842861533165 0.476667225361 +3 0.830914318562 0.483180642128 +14 0.84022539854 0.507817029953 +SURF 0x10 +mat 1 +refs 3 +27 0.842861533165 0.476667225361 +14 0.84022539854 0.507817029953 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 4 +26 0.842920362949 0.477121174335 +27 0.842861533165 0.476667225361 +42 0.840253353119 0.43072733283 +40 0.84029173851 0.431024163961 +SURF 0x10 +mat 1 +refs 4 +19 0.81484991312 0.485469847918 +3 0.830914318562 0.483180642128 +43 0.822963297367 0.468091130257 +44 0.807065308094 0.467715829611 +SURF 0x10 +mat 1 +refs 4 +7 0.830979704857 0.483685195446 +19 0.81484991312 0.485469847918 +44 0.807065308094 0.467715829611 +45 0.822993755341 0.468326240778 +SURF 0x10 +mat 1 +refs 4 +3 0.830914318562 0.483180642128 +27 0.842861533165 0.476667225361 +26 0.842920362949 0.477121174335 +7 0.830979704857 0.483685195446 +SURF 0x10 +mat 1 +refs 4 +41 0.85267919302 0.432982087135 +39 0.852713346481 0.433245837688 +57 0.849303364754 0.411840498447 +59 0.849269032478 0.411576777697 +SURF 0x10 +mat 1 +refs 4 +59 0.849269032478 0.411576777697 +57 0.849303364754 0.411840498447 +72 0.845561206341 0.397640317678 +74 0.845899045467 0.400244146585 +SURF 0x10 +mat 1 +refs 4 +44 0.807065308094 0.467715829611 +43 0.822963297367 0.468091130257 +76 0.818320572376 0.450661599636 +77 0.810667157173 0.444116652012 +SURF 0x10 +mat 1 +refs 4 +45 0.822993755341 0.468326240778 +44 0.807065308094 0.467715829611 +77 0.810667157173 0.444116652012 +78 0.818340063095 0.450812846422 +SURF 0x10 +mat 1 +refs 3 +76 0.818320572376 0.450661599636 +78 0.818340063095 0.450812846422 +77 0.810667157173 0.444116652012 +SURF 0x10 +mat 1 +refs 4 +43 0.822963297367 0.468091130257 +45 0.822993755341 0.468326240778 +78 0.818340063095 0.450812846422 +76 0.818320572376 0.450661599636 +SURF 0x10 +mat 1 +refs 4 +3 0.830914318562 0.483180642128 +7 0.830979704857 0.483685195446 +45 0.822993755341 0.468326240778 +43 0.822963297367 0.468091130257 +SURF 0x10 +mat 1 +refs 4 +4 0.845680773258 0.538942217827 +8 0.853307306767 0.537954211235 +80 0.84022539854 0.507817029953 +79 0.831306993961 0.509110808372 +SURF 0x10 +mat 1 +refs 4 +8 0.845680773258 0.538942217827 +0 0.831306993961 0.509110808372 +81 0.840269207954 0.508153378963 +80 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +2 0.899586796761 0.53483569622 +9 0.890087366104 0.536032259464 +83 0.893893361092 0.501265108585 +82 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 4 +9 0.893884718418 0.501197993755 +6 0.890085279942 0.536015510559 +84 0.899586796761 0.53483569622 +83 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 4 +0 0.876213371754 0.535192131996 +10 0.853318214417 0.538038313389 +85 0.840269207954 0.508153378963 +81 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 4 +10 0.893893361092 0.501265108585 +2 0.890087366104 0.536032259464 +82 0.876213371754 0.535192131996 +85 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 4 +6 0.87620472908 0.535124897957 +11 0.890085279942 0.536015510559 +86 0.893884718418 0.501197993755 +84 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 4 +11 0.84022539854 0.507817029953 +4 0.853307306767 0.537954211235 +79 0.87620472908 0.535124897957 +86 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 4 +79 0.845680773258 0.538942217827 +80 0.853307306767 0.537954211235 +87 0.84022539854 0.507817029953 +88 0.831306993961 0.509110808372 +SURF 0x10 +mat 1 +refs 4 +80 0.840269207954 0.508153378963 +81 0.853318214417 0.538038313389 +89 0.845680773258 0.538942217827 +87 0.831306993961 0.509110808372 +SURF 0x10 +mat 1 +refs 4 +82 0.899586796761 0.53483569622 +83 0.890087366104 0.536032259464 +91 0.893893361092 0.501265108585 +90 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 4 +83 0.893884718418 0.501197993755 +84 0.890085279942 0.536015510559 +92 0.899586796761 0.53483569622 +91 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 4 +81 0.876213371754 0.535192131996 +85 0.853318214417 0.538038313389 +93 0.840269207954 0.508153378963 +89 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 4 +85 0.893893361092 0.501265108585 +82 0.890087366104 0.536032259464 +90 0.876213371754 0.535192131996 +93 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 4 +84 0.87620472908 0.535124897957 +86 0.890085279942 0.536015510559 +94 0.893884718418 0.501197993755 +92 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 4 +86 0.84022539854 0.507817029953 +79 0.853307306767 0.537954211235 +88 0.87620472908 0.535124897957 +94 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 3 +24 0.874306678772 0.477910578251 +12 0.893884718418 0.501197993755 +97 0.881618797779 0.477649211884 +SURF 0x10 +mat 1 +refs 3 +97 0.881618797779 0.477649211884 +12 0.893884718418 0.501197993755 +1 0.888930916786 0.477387905121 +SURF 0x10 +mat 1 +refs 3 +25 0.874339342117 0.478162705898 +21 0.867085576057 0.504742860794 +100 0.867115020752 0.47909989953 +SURF 0x10 +mat 1 +refs 3 +100 0.867115020752 0.47909989953 +21 0.867085576057 0.504742860794 +16 0.859890639782 0.480037093163 +SURF 0x10 +mat 1 +refs 3 +95 0.893816709518 0.47485858202 +22 0.903694629669 0.501893639565 +17 0.893893361092 0.501265108585 +SURF 0x10 +mat 1 +refs 3 +18 0.89884531498 0.473428934813 +22 0.903694629669 0.501893639565 +95 0.893816709518 0.47485858202 +SURF 0x10 +mat 1 +refs 3 +95 0.893816709518 0.47485858202 +17 0.893893361092 0.501265108585 +5 0.888788223267 0.476288288832 +SURF 0x10 +mat 1 +refs 3 +96 0.893888115883 0.475408434868 +12 0.893884718418 0.501197993755 +22 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 3 +1 0.888930916786 0.477387905121 +12 0.893884718418 0.501197993755 +96 0.893888115883 0.475408434868 +SURF 0x10 +mat 1 +refs 3 +96 0.893888115883 0.475408434868 +22 0.903694629669 0.501893639565 +18 0.89884531498 0.473428934813 +SURF 0x10 +mat 1 +refs 3 +13 0.859799325466 0.479333460331 +20 0.867323338985 0.506574332714 +98 0.867052972317 0.478622078896 +SURF 0x10 +mat 1 +refs 3 +98 0.867052972317 0.478622078896 +20 0.867323338985 0.506574332714 +24 0.874306678772 0.477910578251 +SURF 0x10 +mat 1 +refs 3 +5 0.888788223267 0.476288288832 +17 0.893893361092 0.501265108585 +99 0.881563782692 0.477225482464 +SURF 0x10 +mat 1 +refs 3 +99 0.881563782692 0.477225482464 +17 0.893893361092 0.501265108585 +25 0.874339342117 0.478162705898 +SURF 0x10 +mat 1 +refs 3 +16 0.859890639782 0.480037093163 +21 0.867085576057 0.504742860794 +101 0.851405501366 0.478579103947 +SURF 0x10 +mat 1 +refs 3 +101 0.851405501366 0.478579103947 +21 0.867085576057 0.504742860794 +26 0.842920362949 0.477121174335 +SURF 0x10 +mat 1 +refs 4 +29 0.892277479172 0.439557313919 +18 0.89884531498 0.473428934813 +95 0.893816709518 0.47485858202 +102 0.88866430521 0.439249098301 +SURF 0x10 +mat 1 +refs 4 +102 0.88866430521 0.439249098301 +95 0.893816709518 0.47485858202 +5 0.888788223267 0.476288288832 +28 0.885051071644 0.438940823078 +SURF 0x10 +mat 1 +refs 4 +30 0.885121703148 0.438902616501 +1 0.888930916786 0.477387905121 +96 0.893888115883 0.475408494473 +103 0.88869959116 0.439229905605 +SURF 0x10 +mat 1 +refs 4 +103 0.88869959116 0.439229905605 +96 0.893888115883 0.475408494473 +18 0.89884531498 0.473428934813 +29 0.892277479172 0.439557313919 +SURF 0x10 +mat 1 +refs 4 +1 0.888930916786 0.477387905121 +30 0.885121703148 0.438902616501 +105 0.8855702281 0.444089382887 +104 0.888859570026 0.476838111877 +SURF 0x10 +mat 1 +refs 4 +104 0.888859570026 0.476838111877 +105 0.8855702281 0.444089382887 +28 0.885051071644 0.438940823078 +5 0.888788223267 0.476288288832 +SURF 0x10 +mat 1 +refs 4 +32 0.87262237072 0.431150317192 +24 0.874306678772 0.477910578251 +97 0.881618797779 0.477649152279 +106 0.876334786415 0.430708169937 +SURF 0x10 +mat 1 +refs 4 +106 0.876334786415 0.430708169937 +97 0.881618797779 0.477649152279 +1 0.888930916786 0.477387905121 +31 0.880047261715 0.430266231298 +SURF 0x10 +mat 1 +refs 4 +33 0.880053937435 0.430317848921 +5 0.888788223267 0.476288288832 +99 0.881563782692 0.477225482464 +107 0.875412344933 0.430920004845 +SURF 0x10 +mat 1 +refs 4 +107 0.875412344933 0.430920004845 +99 0.881563782692 0.477225482464 +25 0.874339342117 0.478162705898 +34 0.87077075243 0.431522041559 +SURF 0x10 +mat 1 +refs 4 +31 0.880047261715 0.430266231298 +1 0.888930916786 0.477387905121 +104 0.829120635986 0.159812927246 +108 0.880050480366 0.43029153347 +SURF 0x10 +mat 1 +refs 4 +108 0.880050480366 0.43029153347 +104 0.829120635986 0.159812927246 +5 0.888788223267 0.476288288832 +33 0.880053937435 0.430317848921 +SURF 0x10 +mat 1 +refs 3 +109 0.871696591377 0.431335866451 +25 0.874339342117 0.478162705898 +24 0.874306678772 0.477910578251 +SURF 0x10 +mat 1 +refs 3 +34 0.87077075243 0.431522041559 +25 0.874339342117 0.478162705898 +109 0.871696591377 0.431335866451 +SURF 0x10 +mat 1 +refs 3 +109 0.871696591377 0.431335866451 +24 0.874306678772 0.477910578251 +32 0.87262237072 0.431150317192 +SURF 0x10 +mat 1 +refs 4 +35 0.856655836105 0.432027548552 +13 0.859799325466 0.479333460331 +98 0.867053031921 0.478622108698 +110 0.861150562763 0.431795328856 +SURF 0x10 +mat 1 +refs 4 +110 0.861150562763 0.431795328856 +98 0.867053031921 0.478622108698 +24 0.874306678772 0.477910578251 +36 0.865645229816 0.431563079357 +SURF 0x10 +mat 1 +refs 4 +38 0.865659713745 0.431674838066 +25 0.874339342117 0.478162705898 +100 0.867115020752 0.47909989953 +111 0.861169397831 0.431940764189 +SURF 0x10 +mat 1 +refs 4 +111 0.861169397831 0.431940764189 +100 0.867115020752 0.47909989953 +16 0.859890639782 0.480037093163 +37 0.856679081917 0.432206690311 +SURF 0x10 +mat 1 +refs 3 +112 0.865652501583 0.43161919713 +24 0.874306678772 0.477910578251 +25 0.874339342117 0.478162705898 +SURF 0x10 +mat 1 +refs 3 +36 0.865645229816 0.431563079357 +24 0.874306678772 0.477910578251 +112 0.865652501583 0.43161919713 +SURF 0x10 +mat 1 +refs 3 +112 0.865652501583 0.43161919713 +25 0.874339342117 0.478162705898 +38 0.865659713745 0.431674838066 +SURF 0x10 +mat 1 +refs 3 +113 0.856667399406 0.432116955519 +16 0.859890639782 0.480037093163 +13 0.859799325466 0.479333460331 +SURF 0x10 +mat 1 +refs 3 +37 0.856679081917 0.432206690311 +16 0.859890639782 0.480037093163 +113 0.856667399406 0.432116955519 +SURF 0x10 +mat 1 +refs 3 +113 0.856667399406 0.432116955519 +13 0.859799325466 0.479333460331 +35 0.856655836105 0.432027548552 +SURF 0x10 +mat 1 +refs 4 +39 0.852713346481 0.433245837688 +16 0.859890639782 0.480037093163 +101 0.851405501366 0.478579103947 +114 0.846502542496 0.432135045528 +SURF 0x10 +mat 1 +refs 4 +114 0.846502542496 0.432135045528 +101 0.851405501366 0.478579103947 +26 0.842920362949 0.477121174335 +40 0.84029173851 0.431024163961 +SURF 0x10 +mat 1 +refs 4 +41 0.85267919302 0.432982087135 +116 0.846466302872 0.431854784489 +140 0.850734889507 0.438282251358 +115 0.856239318848 0.456157892942 +SURF 0x10 +mat 1 +refs 4 +42 0.840253353119 0.43072733283 +27 0.842861533165 0.476667225361 +140 0.850734889507 0.438282251358 +116 0.846466302872 0.431854784489 +SURF 0x10 +mat 1 +refs 4 +27 0.842861533165 0.476667225361 +13 0.859799325466 0.479333460331 +115 0.856239318848 0.456157892942 +140 0.850734889507 0.438282251358 +SURF 0x10 +mat 1 +refs 3 +115 0.856239318848 0.456157982349 +16 0.859890639782 0.480037093163 +39 0.852713346481 0.433245837688 +SURF 0x10 +mat 1 +refs 3 +13 0.859799325466 0.479333460331 +16 0.859890639782 0.480037093163 +115 0.856239318848 0.456157982349 +SURF 0x10 +mat 1 +refs 3 +115 0.856239318848 0.456157982349 +39 0.852713346481 0.433245837688 +41 0.85267919302 0.432982087135 +SURF 0x10 +mat 1 +refs 4 +47 0.888839542866 0.420055538416 +29 0.892277479172 0.439557313919 +102 0.888664245605 0.439249068499 +117 0.885973453522 0.420283585787 +SURF 0x10 +mat 1 +refs 4 +117 0.885973453522 0.420283585787 +102 0.888664245605 0.439249068499 +28 0.885051071644 0.438940823078 +46 0.883107423782 0.420511633158 +SURF 0x10 +mat 1 +refs 4 +48 0.883191406727 0.420471578836 +30 0.885121703148 0.438902616501 +103 0.88869959116 0.43922996521 +118 0.886015534401 0.420263558626 +SURF 0x10 +mat 1 +refs 4 +118 0.886015534401 0.420263558626 +103 0.88869959116 0.43922996521 +29 0.892277479172 0.439557313919 +47 0.888839542866 0.420055538416 +SURF 0x10 +mat 1 +refs 4 +46 0.883107423782 0.420511633158 +28 0.885051071644 0.438940823078 +105 0.885086417198 0.438921689987 +119 0.883149385452 0.420491635799 +SURF 0x10 +mat 1 +refs 4 +119 0.883149385452 0.420491635799 +105 0.885086417198 0.438921689987 +30 0.885121703148 0.438902616501 +48 0.883191406727 0.420471578836 +SURF 0x10 +mat 1 +refs 4 +50 0.868370652199 0.413020610809 +32 0.87262237072 0.431150317192 +106 0.876334786415 0.430708229542 +120 0.872475147247 0.413160979748 +SURF 0x10 +mat 1 +refs 4 +120 0.872475147247 0.413160979748 +106 0.876334786415 0.430708229542 +31 0.880047261715 0.430266231298 +49 0.876579761505 0.413301289082 +SURF 0x10 +mat 1 +refs 4 +51 0.876586556435 0.413353055716 +33 0.880053937435 0.430317848921 +107 0.875412344933 0.43091994524 +121 0.872486948967 0.413251549006 +SURF 0x10 +mat 1 +refs 4 +121 0.872486948967 0.413251549006 +107 0.875412344933 0.43091994524 +34 0.87077075243 0.431522041559 +52 0.868387401104 0.413150042295 +SURF 0x10 +mat 1 +refs 4 +49 0.876579761505 0.413301289082 +31 0.880047261715 0.430266231298 +108 0.880050599575 0.43029204011 +122 0.876583099365 0.413327097893 +SURF 0x10 +mat 1 +refs 4 +122 0.876583099365 0.413327097893 +108 0.880050599575 0.43029204011 +33 0.880053937435 0.430317848921 +51 0.876586556435 0.413353055716 +SURF 0x10 +mat 1 +refs 4 +52 0.868387401104 0.413150042295 +34 0.87077075243 0.431522041559 +109 0.871696591377 0.431336164474 +123 0.868378996849 0.413085341454 +SURF 0x10 +mat 1 +refs 4 +123 0.868378996849 0.413085341454 +109 0.871696591377 0.431336164474 +32 0.87262237072 0.431150317192 +50 0.868370652199 0.413020610809 +SURF 0x10 +mat 1 +refs 4 +53 0.855979323387 0.412167519331 +35 0.856655836105 0.432027548552 +110 0.861150503159 0.431795299053 +124 0.859187960625 0.411785423756 +SURF 0x10 +mat 1 +refs 4 +124 0.859187960625 0.411785423756 +110 0.861150503159 0.431795299053 +36 0.865645229816 0.431563079357 +54 0.862396657467 0.411403298378 +SURF 0x10 +mat 1 +refs 4 +56 0.862411260605 0.411515206099 +38 0.865659713745 0.431674838066 +111 0.861169397831 0.431940764189 +125 0.8582726717 0.412052094936 +SURF 0x10 +mat 1 +refs 4 +125 0.8582726717 0.412052094936 +111 0.861169397831 0.431940764189 +37 0.856679081917 0.432206690311 +55 0.854134142399 0.412588983774 +SURF 0x10 +mat 1 +refs 4 +54 0.862396657467 0.411403298378 +36 0.865645229816 0.431563079357 +112 0.865652441978 0.431618988514 +126 0.862403988838 0.411459207535 +SURF 0x10 +mat 1 +refs 4 +126 0.862403988838 0.411459207535 +112 0.865652441978 0.431618988514 +38 0.865659713745 0.431674838066 +56 0.862411260605 0.411515206099 +SURF 0x10 +mat 1 +refs 4 +55 0.854134142399 0.412588983774 +37 0.856679081917 0.432206690311 +113 0.856667459011 0.43211710453 +127 0.855056703091 0.412378251553 +SURF 0x10 +mat 1 +refs 4 +127 0.855056703091 0.412378251553 +113 0.856667459011 0.43211710453 +35 0.856655836105 0.432027548552 +53 0.855979323387 0.412167519331 +SURF 0x10 +mat 1 +refs 4 +57 0.849303364754 0.411840498447 +39 0.852713346481 0.433245837688 +114 0.846502542496 0.432134985924 +128 0.844147861004 0.411542654037 +SURF 0x10 +mat 1 +refs 4 +128 0.844147861004 0.411542654037 +114 0.846502542496 0.432134985924 +40 0.84029173851 0.431024163961 +58 0.838992357254 0.41124483943 +SURF 0x10 +mat 1 +refs 4 +60 0.838953852654 0.410948097706 +42 0.840253353119 0.43072733283 +116 0.846466302872 0.431854724884 +129 0.844111442566 0.411262452602 +SURF 0x10 +mat 1 +refs 4 +129 0.844111442566 0.411262452602 +116 0.846466302872 0.431854724884 +41 0.85267919302 0.432982087135 +59 0.849269032478 0.411576777697 +SURF 0x10 +mat 1 +refs 3 +130 0.838973104954 0.411096453667 +40 0.84029173851 0.431024163961 +42 0.840253353119 0.43072733283 +SURF 0x10 +mat 1 +refs 3 +58 0.838992357254 0.41124483943 +40 0.84029173851 0.431024163961 +130 0.838973104954 0.411096453667 +SURF 0x10 +mat 1 +refs 3 +130 0.838973104954 0.411096453667 +42 0.840253353119 0.43072733283 +60 0.838953852654 0.410948097706 +SURF 0x10 +mat 1 +refs 4 +62 0.886557519436 0.410769611597 +47 0.888839542866 0.420055538416 +117 0.885973513126 0.420283585787 +131 0.88439309597 0.408880352974 +SURF 0x10 +mat 1 +refs 4 +131 0.88439309597 0.408880352974 +117 0.885973513126 0.420283585787 +46 0.883107423782 0.420511633158 +61 0.882228791714 0.406991124153 +SURF 0x10 +mat 1 +refs 4 +63 0.881319403648 0.404483109713 +48 0.883191406727 0.420471578836 +118 0.886015415192 0.420263588428 +132 0.88393843174 0.407626360655 +SURF 0x10 +mat 1 +refs 4 +132 0.88393843174 0.407626360655 +118 0.886015415192 0.420263588428 +47 0.888839542866 0.420055538416 +62 0.886557519436 0.410769611597 +SURF 0x10 +mat 1 +refs 4 +61 0.882228791714 0.406991124153 +46 0.883107423782 0.420511633158 +119 0.883149385452 0.420491635799 +133 0.881774067879 0.405737131834 +SURF 0x10 +mat 1 +refs 4 +133 0.881774067879 0.405737131834 +119 0.883149385452 0.420491635799 +48 0.883191406727 0.420471578836 +63 0.881319403648 0.404483109713 +SURF 0x10 +mat 1 +refs 3 +120 0.872475206852 0.413160949945 +64 0.874148845673 0.399443209171 +65 0.866789519787 0.400832414627 +SURF 0x10 +mat 1 +refs 3 +49 0.876579761505 0.413301289082 +64 0.874148845673 0.399443209171 +120 0.872475206852 0.413160949945 +SURF 0x10 +mat 1 +refs 3 +120 0.872475206852 0.413160949945 +65 0.866789519787 0.400832414627 +50 0.868370652199 0.413020610809 +SURF 0x10 +mat 1 +refs 3 +121 0.872486948967 0.413251578808 +67 0.866554439068 0.399020075798 +66 0.874014437199 0.39840683341 +SURF 0x10 +mat 1 +refs 3 +52 0.868387401104 0.413150042295 +67 0.866554439068 0.399020075798 +121 0.872486948967 0.413251578808 +SURF 0x10 +mat 1 +refs 3 +121 0.872486948967 0.413251578808 +66 0.874014437199 0.39840683341 +51 0.876586556435 0.413353055716 +SURF 0x10 +mat 1 +refs 4 +64 0.874148845673 0.399443209171 +49 0.876579761505 0.413301289082 +122 0.87658315897 0.413327157497 +134 0.874081611633 0.39892500639 +SURF 0x10 +mat 1 +refs 4 +134 0.874081611633 0.39892500639 +122 0.87658315897 0.413327157497 +51 0.876586556435 0.413353055716 +66 0.874014437199 0.39840683341 +SURF 0x10 +mat 1 +refs 4 +67 0.866554439068 0.399020075798 +52 0.868387401104 0.413150042295 +123 0.868378996849 0.413085311651 +135 0.866671919823 0.39992621541 +SURF 0x10 +mat 1 +refs 4 +135 0.866671919823 0.39992621541 +123 0.868378996849 0.413085311651 +50 0.868370652199 0.413020610809 +65 0.866789519787 0.400832414627 +SURF 0x10 +mat 1 +refs 3 +124 0.859187960625 0.411785423756 +69 0.858855724335 0.398752123117 +68 0.852444171906 0.399561583996 +SURF 0x10 +mat 1 +refs 3 +54 0.862396657467 0.411403298378 +69 0.858855724335 0.398752123117 +124 0.859187960625 0.411785423756 +SURF 0x10 +mat 1 +refs 3 +124 0.859187960625 0.411785423756 +68 0.852444171906 0.399561583996 +53 0.855979323387 0.412167519331 +SURF 0x10 +mat 1 +refs 3 +125 0.8582726717 0.412052094936 +70 0.852214932442 0.397794276476 +71 0.858652412891 0.397185921669 +SURF 0x10 +mat 1 +refs 3 +55 0.854134142399 0.412588983774 +70 0.852214932442 0.397794276476 +125 0.8582726717 0.412052094936 +SURF 0x10 +mat 1 +refs 3 +125 0.8582726717 0.412052094936 +71 0.858652412891 0.397185921669 +56 0.862411260605 0.411515206099 +SURF 0x10 +mat 1 +refs 4 +69 0.858855724335 0.398752123117 +54 0.862396657467 0.411403298378 +126 0.862403988838 0.411459237337 +136 0.858754038811 0.397969007492 +SURF 0x10 +mat 1 +refs 4 +136 0.858754038811 0.397969007492 +126 0.862403988838 0.411459237337 +56 0.862411260605 0.411515206099 +71 0.858652412891 0.397185921669 +SURF 0x10 +mat 1 +refs 4 +70 0.852214932442 0.397794276476 +55 0.854134142399 0.412588983774 +127 0.855056762695 0.412378251553 +137 0.852329492569 0.398677945137 +SURF 0x10 +mat 1 +refs 4 +137 0.852329492569 0.398677945137 +127 0.855056762695 0.412378251553 +53 0.855979323387 0.412167519331 +68 0.852444171906 0.399561583996 +SURF 0x10 +mat 1 +refs 4 +72 0.845561206341 0.397640317678 +57 0.849303364754 0.411840498447 +128 0.844147861004 0.411542654037 +138 0.841950535774 0.397045850754 +SURF 0x10 +mat 1 +refs 4 +138 0.841950535774 0.397045850754 +128 0.844147861004 0.411542654037 +58 0.838992357254 0.41124483943 +73 0.838339805603 0.396451354027 +SURF 0x10 +mat 1 +refs 3 +129 0.844111442566 0.411262452602 +74 0.845899045467 0.400244146585 +75 0.838601589203 0.398469626904 +SURF 0x10 +mat 1 +refs 3 +59 0.849269032478 0.411576777697 +74 0.845899045467 0.400244146585 +129 0.844111442566 0.411262452602 +SURF 0x10 +mat 1 +refs 3 +129 0.844111442566 0.411262452602 +75 0.838601589203 0.398469626904 +60 0.838953852654 0.410948097706 +SURF 0x10 +mat 1 +refs 4 +73 0.838339805603 0.396451354027 +58 0.838992357254 0.41124483943 +130 0.838973104954 0.411096453667 +139 0.838470697403 0.397460490465 +SURF 0x10 +mat 1 +refs 4 +139 0.838470697403 0.397460490465 +130 0.838973104954 0.411096453667 +60 0.838953852654 0.410948097706 +75 0.838601589203 0.398469626904 +SURF 0x10 +mat 1 +refs 4 +73 0.838339805603 0.396451354027 +139 0.838470697403 0.397460490465 +141 0.840210616589 0.397253155708 +138 0.841950535774 0.397045850754 +SURF 0x10 +mat 1 +refs 4 +75 0.838601589203 0.398469626904 +74 0.845899045467 0.400244146585 +141 0.840210616589 0.397253155708 +139 0.838470697403 0.397460490465 +SURF 0x10 +mat 1 +refs 4 +74 0.845899045467 0.400244146585 +72 0.845561206341 0.397640317678 +138 0.841950535774 0.397045850754 +141 0.840210616589 0.397253155708 +SURF 0x10 +mat 1 +refs 4 +68 0.852444171906 0.399561583996 +69 0.858855724335 0.398752123117 +136 0.858754038811 0.397969007492 +137 0.852329552174 0.398677945137 +SURF 0x10 +mat 1 +refs 4 +137 0.852329552174 0.398677945137 +136 0.858754038811 0.397969007492 +71 0.858652412891 0.397185921669 +70 0.852214932442 0.397794276476 +SURF 0x10 +mat 1 +refs 4 +65 0.866789519787 0.400832414627 +64 0.874148845673 0.399443209171 +134 0.874081611633 0.39892500639 +135 0.866671979427 0.399926245213 +SURF 0x10 +mat 1 +refs 4 +135 0.866671979427 0.399926245213 +134 0.874081611633 0.39892500639 +66 0.874014437199 0.39840683341 +67 0.866554439068 0.399020075798 +SURF 0x10 +mat 1 +refs 3 +133 0.881774127483 0.405737131834 +131 0.884393155575 0.408880352974 +61 0.882228791714 0.406991124153 +SURF 0x10 +mat 1 +refs 3 +131 0.884393155575 0.408880352974 +133 0.881774127483 0.405737131834 +132 0.88393843174 0.407626330853 +SURF 0x10 +mat 1 +refs 3 +63 0.881319403648 0.404483109713 +132 0.88393843174 0.407626330853 +133 0.881774127483 0.405737131834 +SURF 0x10 +mat 1 +refs 3 +132 0.88393843174 0.407626330853 +62 0.886557519436 0.410769611597 +131 0.884393155575 0.408880352974 +kids 0 +OBJECT group +name "arm2.R" +kids 2 +OBJECT poly +name "arm2.R_0" +data 8 +Mesh.012 +crease 30 +numvert 21 +0.005976 0.445766 -0.50404 +-0.002933 0.44284 -0.505112 +-0.011766 0.445766 -0.506806 +-0.011541 0.463321 -0.508678 +-0.002633 0.466247 -0.507607 +0.006201 0.463321 -0.505912 +0.009044 0.454544 -0.504516 +-0.01461 0.454544 -0.508203 +0.001521 0.444303 -0.504576 +-0.007349 0.444303 -0.505959 +-0.007087 0.464784 -0.508143 +0.001784 0.464784 -0.50676 +0.007622 0.458933 -0.505214 +0.00751 0.450155 -0.504278 +-0.013188 0.450155 -0.507505 +-0.013076 0.458933 -0.508441 +-0.00267 0.463321 -0.507295 +-0.004205 0.458933 -0.507058 +-0.002783 0.454544 -0.50636 +-0.001361 0.450155 -0.505661 +-0.002895 0.445766 -0.505423 +numsurf 24 +SURF 0x10 +mat 1 +refs 3 +11 0.0 0.5 +5 0.0 1.0 +16 0.5 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +16 0.5 0.500000059605 +10 0.5 1.49011611938e-08 +11 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +11 0.0 0.5 +10 0.5 1.49011611938e-08 +SURF 0x10 +mat 1 +refs 3 +10 0.5 1.49011611938e-08 +16 0.5 0.500000059605 +3 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +16 0.0 0.5 +5 0.0 1.0 +17 0.499999970198 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +17 0.499999970198 0.499999970198 +15 0.499999970198 0.0 +16 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +3 0.0 0.0 +16 0.0 0.5 +15 0.499999970198 0.0 +SURF 0x10 +mat 1 +refs 3 +15 0.499999970198 0.0 +17 0.499999970198 0.499999970198 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +12 3.72529029846e-09 0.499999970198 +6 0.0 1.0 +18 0.5 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +18 0.5 0.499999970198 +17 0.5 0.0 +12 3.72529029846e-09 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +5 0.0 0.0 +12 3.72529029846e-09 0.499999970198 +17 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +17 0.5 0.0 +18 0.5 0.499999970198 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +18 0.0 0.5 +6 0.0 1.0 +19 0.500000059605 0.5 +SURF 0x10 +mat 1 +refs 3 +19 0.500000059605 0.5 +14 0.500000059605 0.0 +18 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +7 0.0 0.0 +18 0.0 0.5 +14 0.500000059605 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.500000059605 0.0 +19 0.500000059605 0.5 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 0.5 +0 0.0 1.0 +20 0.5 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +20 0.5 0.500000059605 +19 0.5 0.0 +13 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +6 0.0 0.0 +13 0.0 0.5 +19 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +19 0.5 0.0 +20 0.5 0.500000059605 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 0.5 +0 0.0 1.0 +8 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +8 0.5 0.5 +9 0.5 0.0 +20 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +2 0.0 0.0 +20 0.0 0.5 +9 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +9 0.5 0.0 +8 0.5 0.5 +1 1.0 0.0 +kids 0 +OBJECT poly +name "arm2.R_1" +data 8 +Mesh.012 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 166 +-0.027939 0.48588 -0.565482 +0.035395 0.48588 -0.555609 +-0.028742 0.423208 -0.558799 +0.034592 0.423208 -0.548926 +0.047568 0.417924 -0.674272 +-0.040593 0.417924 -0.690193 +0.047568 0.498829 -0.674272 +-0.040593 0.498829 -0.690193 +-0.025166 0.490108 -0.847602 +0.023206 0.490582 -0.843042 +-0.025169 0.442892 -0.847727 +0.023205 0.44686 -0.843067 +0.003487 0.40444 -0.682232 +0.039567 0.419113 -0.59453 +0.00279 0.412762 -0.552749 +0.003861 0.496325 -0.561659 +0.045548 0.454544 -0.550622 +-0.038895 0.454544 -0.563786 +-0.034247 0.419113 -0.607197 +-0.034247 0.493913 -0.607197 +0.003487 0.512313 -0.682232 +0.039567 0.493913 -0.59453 +0.062261 0.458377 -0.671619 +-0.055289 0.458377 -0.692846 +-0.039327 0.424693 -0.74264 +-0.035283 0.466262 -0.84784 +-0.039327 0.503241 -0.74264 +0.045281 0.503241 -0.741203 +0.035799 0.46816 -0.842851 +0.045281 0.424693 -0.741202 +0.00518 0.498056 -0.847086 +0.005178 0.436366 -0.847186 +0.002661 0.406646 -0.600863 +0.002661 0.50638 -0.600863 +0.051869 0.456513 -0.592419 +-0.046549 0.456513 -0.609308 +-0.055366 0.463967 -0.743141 +0.061317 0.463967 -0.740702 +0.008787 0.516333 -0.741138 +0.008787 0.411601 -0.741138 +-0.046721 0.470336 -0.829148 +0.054958 0.472364 -0.824941 +0.009959 0.515018 -0.837437 +0.01033 0.427269 -0.818404 +-0.032363 0.437305 -0.821651 +-0.032643 0.50377 -0.836032 +0.038876 0.504741 -0.832352 +0.039147 0.44067 -0.81842 +0.025114 0.429228 -0.521627 +-0.000578 0.420789 -0.524716 +-0.026051 0.429228 -0.529604 +-0.025403 0.479859 -0.535003 +0.000287 0.488298 -0.531915 +0.025763 0.479859 -0.527026 +0.033966 0.454544 -0.522997 +-0.034255 0.454544 -0.533633 +0.005976 0.445766 -0.50404 +-0.002933 0.44284 -0.505112 +-0.011766 0.445766 -0.506806 +-0.011541 0.463321 -0.508678 +-0.002633 0.466247 -0.507607 +0.006201 0.463321 -0.505912 +0.009044 0.454544 -0.504516 +-0.01461 0.454544 -0.508203 +0.025528 0.411182 -0.678252 +-0.018553 0.411182 -0.686213 +-0.018553 0.505571 -0.686213 +0.025528 0.505571 -0.678252 +0.054915 0.478603 -0.672945 +0.054915 0.43815 -0.672945 +-0.047941 0.43815 -0.69152 +-0.047941 0.478603 -0.69152 +-0.030226 0.454577 -0.847784 +-0.030224 0.478185 -0.847721 +0.029502 0.479371 -0.842947 +0.029502 0.45751 -0.842959 +-0.009993 0.494082 -0.847344 +0.014193 0.494319 -0.845064 +0.014191 0.441613 -0.845127 +-0.009995 0.439629 -0.847456 +0.021114 0.412879 -0.597696 +-0.015793 0.412879 -0.60403 +-0.015793 0.500147 -0.60403 +0.021114 0.500147 -0.597697 +0.045718 0.475213 -0.593474 +0.045718 0.437813 -0.593474 +-0.040398 0.437813 -0.608253 +-0.040398 0.475213 -0.608253 +-0.047347 0.44433 -0.74289 +-0.047347 0.483604 -0.742891 +0.053299 0.483604 -0.740952 +0.053299 0.44433 -0.740952 +-0.01527 0.509787 -0.741889 +0.027034 0.509787 -0.74117 +0.027034 0.418147 -0.74117 +-0.01527 0.418147 -0.741889 +-0.041002 0.468299 -0.838494 +-0.046744 0.467151 -0.795175 +0.045378 0.470262 -0.833896 +0.059942 0.468165 -0.791905 +0.007569 0.506537 -0.842262 +0.0123 0.514556 -0.798361 +0.007754 0.431818 -0.832795 +0.012485 0.420555 -0.788845 +-0.039068 0.448354 -0.794936 +-0.035945 0.456614 -0.838437 +-0.035943 0.480222 -0.838375 +-0.039068 0.485949 -0.794936 +0.052266 0.486963 -0.792145 +0.039082 0.481473 -0.833992 +0.039082 0.459612 -0.834004 +0.052266 0.449368 -0.792144 +-0.010728 0.50829 -0.79908 +-0.007603 0.502563 -0.84252 +0.016582 0.5028 -0.84024 +0.029767 0.50829 -0.798392 +0.029952 0.426821 -0.788876 +0.016767 0.437065 -0.830735 +-0.007419 0.43508 -0.833065 +-0.010543 0.426821 -0.789564 +-0.028766 0.440098 -0.834689 +-0.031889 0.431839 -0.791187 +-0.028905 0.496939 -0.841817 +-0.032029 0.502666 -0.798378 +0.031041 0.497661 -0.837697 +0.044225 0.503151 -0.79585 +0.031176 0.443765 -0.830744 +0.044361 0.433521 -0.788884 +-0.039542 0.45382 -0.825399 +-0.039682 0.487053 -0.83259 +0.046917 0.488552 -0.828646 +0.047053 0.456517 -0.821681 +-0.011342 0.509394 -0.836735 +0.024418 0.509879 -0.834894 +0.024738 0.43397 -0.818412 +-0.011017 0.432287 -0.820027 +-0.00098 0.490345 -0.845322 +0.005316 0.479134 -0.845227 +0.000258 0.467211 -0.845346 +-0.006039 0.456561 -0.845454 +-0.000982 0.444876 -0.845397 +0.001106 0.416776 -0.538732 +0.029853 0.426218 -0.535277 +-0.027397 0.426218 -0.544202 +0.002074 0.492312 -0.546787 +-0.012558 0.484079 -0.533459 +0.013025 0.484079 -0.52947 +0.029864 0.467202 -0.525012 +0.02954 0.441886 -0.522312 +-0.030153 0.441886 -0.531618 +-0.029829 0.467202 -0.534318 +-0.001756 0.431815 -0.514914 +0.001521 0.444303 -0.504576 +-0.007349 0.444303 -0.505959 +-0.007087 0.464784 -0.508143 +0.001784 0.464784 -0.50676 +0.007622 0.458933 -0.505214 +0.00751 0.450155 -0.504278 +-0.013188 0.450155 -0.507505 +-0.013076 0.458933 -0.508441 +0.011096 0.488195 -0.540317 +0.02401 0.488195 -0.540254 +0.047069 0.434052 -0.534315 +-0.011964 0.434052 -0.534605 +0.019785 0.438059 -0.510977 +0.015307 0.438059 -0.510999 +numsurf 248 +SURF 0x10 +mat 1 +refs 3 +81 0.90032851696 0.699469804764 +14 0.926753878593 0.737024903297 +2 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +18 0.886189460754 0.701048374176 +81 0.90032851696 0.699469804764 +2 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +81 0.90032851696 0.699469804764 +32 0.914467632771 0.697891294956 +14 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +80 0.928606688976 0.696312785149 +3 0.955941557884 0.732427597046 +14 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +32 0.914467632771 0.697891294956 +80 0.928606688976 0.696312785149 +14 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +80 0.928606688976 0.696312785149 +13 0.942745745182 0.694734215736 +3 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 4 +13 0.942745745182 0.694734215736 +80 0.928606688976 0.696312785149 +64 0.917627990246 0.642596483231 +4 0.93455016613 0.640841007233 +SURF 0x10 +mat 1 +refs 4 +80 0.928606688976 0.696312785149 +32 0.914467632771 0.697891294956 +12 0.900705814362 0.644352018833 +64 0.917627990246 0.642596483231 +SURF 0x10 +mat 1 +refs 4 +32 0.914467632771 0.697891294956 +81 0.90032851696 0.699469804764 +65 0.883783578873 0.64610761404 +12 0.900705814362 0.644352018833 +SURF 0x10 +mat 1 +refs 4 +81 0.90032851696 0.699469804764 +18 0.886189460754 0.701048374176 +5 0.866861343384 0.647863209248 +65 0.883783578873 0.64610761404 +SURF 0x10 +mat 1 +refs 3 +83 0.928606688976 0.696312725544 +15 0.92580139637 0.729682266712 +1 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 3 +21 0.942745745182 0.694734156132 +83 0.928606688976 0.696312725544 +1 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 3 +83 0.928606688976 0.696312725544 +33 0.914467632771 0.697891294956 +15 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 3 +82 0.90032851696 0.699469804764 +0 0.896613895893 0.734279572964 +15 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 3 +33 0.914467632771 0.697891294956 +82 0.90032851696 0.699469804764 +15 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 3 +19 0.886189460754 0.701048374176 +0 0.896613895893 0.734279572964 +82 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +19 0.886189460754 0.701048374176 +82 0.90032851696 0.699469804764 +66 0.883783578873 0.64610761404 +7 0.866861343384 0.647863209248 +SURF 0x10 +mat 1 +refs 4 +82 0.90032851696 0.699469804764 +33 0.914467632771 0.697891294956 +20 0.900705814362 0.644352018833 +66 0.883783578873 0.64610761404 +SURF 0x10 +mat 1 +refs 4 +33 0.914467632771 0.697891294956 +83 0.928606688976 0.696312725544 +67 0.917627930641 0.642596483231 +20 0.900705814362 0.644352018833 +SURF 0x10 +mat 1 +refs 4 +83 0.928606688976 0.696312725544 +21 0.942745745182 0.694734156132 +6 0.934550106525 0.640840888023 +67 0.917627930641 0.642596483231 +SURF 0x10 +mat 1 +refs 3 +85 0.947458744049 0.694207906723 +16 0.965353190899 0.728447496891 +3 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +13 0.942745745182 0.694734215736 +85 0.947458744049 0.694207906723 +3 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +85 0.947458744049 0.694207906723 +34 0.952171802521 0.693681657314 +16 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +84 0.947458744049 0.694207906723 +1 0.955227017403 0.726920366287 +16 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +34 0.952171802521 0.693681657314 +84 0.947458744049 0.694207906723 +16 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +84 0.947458744049 0.694207906723 +21 0.942745745182 0.694734156132 +1 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 4 +21 0.942745745182 0.694734156132 +84 0.947458744049 0.694207906723 +68 0.940190911293 0.640255749226 +6 0.934550106525 0.640840888023 +SURF 0x10 +mat 1 +refs 4 +84 0.947458744049 0.694207906723 +34 0.952171802521 0.693681657314 +22 0.945831775665 0.639670610428 +68 0.940190911293 0.640255749226 +SURF 0x10 +mat 1 +refs 4 +34 0.952171802521 0.693681657314 +85 0.947458744049 0.694207906723 +69 0.940190970898 0.64025580883 +22 0.945831775665 0.639670610428 +SURF 0x10 +mat 1 +refs 4 +85 0.947458744049 0.694207906723 +13 0.942745745182 0.694734215736 +4 0.93455016613 0.640841007233 +69 0.940190970898 0.64025580883 +SURF 0x10 +mat 1 +refs 3 +17 0.88720202446 0.738259613514 +0 0.896613895893 0.734279572964 +87 0.881476461887 0.70157456398 +SURF 0x10 +mat 1 +refs 3 +87 0.881476461887 0.70157456398 +0 0.896613895893 0.734279572964 +19 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 3 +87 0.881476461887 0.70157456398 +35 0.876763522625 0.702100872993 +17 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +86 0.881476461887 0.70157456398 +2 0.897328317165 0.739786684513 +17 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +35 0.876763522625 0.702100872993 +86 0.881476461887 0.70157456398 +17 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +86 0.881476461887 0.70157456398 +18 0.886189460754 0.701048374176 +2 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +18 0.886189460754 0.701048374176 +86 0.881476521492 0.701574623585 +70 0.861220598221 0.64844840765 +5 0.866861343384 0.647863209248 +SURF 0x10 +mat 1 +refs 4 +86 0.881476521492 0.701574623585 +35 0.876763522625 0.702100872993 +23 0.855579793453 0.649033606052 +70 0.861220598221 0.64844840765 +SURF 0x10 +mat 1 +refs 4 +35 0.876763522625 0.702100872993 +87 0.881476521492 0.701574623585 +71 0.861220598221 0.64844840765 +23 0.855579793453 0.649033606052 +SURF 0x10 +mat 1 +refs 4 +87 0.881476521492 0.701574623585 +19 0.886189460754 0.701048374176 +7 0.866861343384 0.647863209248 +71 0.861220598221 0.64844840765 +SURF 0x10 +mat 1 +refs 4 +26 0.854944527149 0.59752124548 +89 0.849144816399 0.59816724062 +71 0.861220538616 0.648448348045 +7 0.866861343384 0.647863209248 +SURF 0x10 +mat 1 +refs 4 +89 0.849144816399 0.59816724062 +36 0.843345105648 0.598813295364 +23 0.855579793453 0.649033606052 +71 0.861220538616 0.648448348045 +SURF 0x10 +mat 1 +refs 4 +36 0.843345105648 0.598813295364 +88 0.849144816399 0.598167300224 +70 0.861220598221 0.64844840765 +23 0.855579793453 0.649033606052 +SURF 0x10 +mat 1 +refs 4 +88 0.849144816399 0.598167300224 +24 0.854944527149 0.597521364689 +5 0.866861343384 0.647863209248 +70 0.861220598221 0.64844840765 +SURF 0x10 +mat 1 +refs 4 +29 0.916051208973 0.589925348759 +91 0.921850979328 0.589279294014 +69 0.940190970898 0.64025580883 +4 0.93455016613 0.640841007233 +SURF 0x10 +mat 1 +refs 4 +91 0.921850979328 0.589279294014 +37 0.927650749683 0.58863312006 +22 0.945831775665 0.639670610428 +69 0.940190970898 0.64025580883 +SURF 0x10 +mat 1 +refs 4 +37 0.927650749683 0.58863312006 +90 0.921850979328 0.589279174805 +68 0.940190911293 0.640255749226 +22 0.945831775665 0.639670610428 +SURF 0x10 +mat 1 +refs 4 +90 0.921850979328 0.589279174805 +27 0.916051208973 0.589925169945 +6 0.934550106525 0.640840888023 +68 0.940190911293 0.640255749226 +SURF 0x10 +mat 1 +refs 4 +27 0.916051208973 0.589925169945 +93 0.902896881104 0.59178519249 +67 0.917627930641 0.642596483231 +6 0.934550106525 0.640840888023 +SURF 0x10 +mat 1 +refs 4 +93 0.902896881104 0.59178519249 +38 0.889742612839 0.593645393848 +20 0.900705814362 0.644352018833 +67 0.917627930641 0.642596483231 +SURF 0x10 +mat 1 +refs 4 +38 0.889742612839 0.593645393848 +92 0.872343540192 0.595583319664 +66 0.883783578873 0.64610761404 +20 0.900705814362 0.644352018833 +SURF 0x10 +mat 1 +refs 4 +92 0.872343540192 0.595583319664 +26 0.854944527149 0.59752124548 +7 0.866861343384 0.647863209248 +66 0.883783578873 0.64610761404 +SURF 0x10 +mat 1 +refs 4 +24 0.854944527149 0.597521364689 +95 0.872343659401 0.595583438873 +65 0.883783578873 0.64610761404 +5 0.866861343384 0.647863209248 +SURF 0x10 +mat 1 +refs 4 +95 0.872343659401 0.595583438873 +39 0.889742851257 0.593645453453 +12 0.900705814362 0.644352018833 +65 0.883783578873 0.64610761404 +SURF 0x10 +mat 1 +refs 4 +39 0.889742851257 0.593645453453 +94 0.902897000313 0.591785430908 +64 0.917627990246 0.642596483231 +12 0.900705814362 0.644352018833 +SURF 0x10 +mat 1 +refs 4 +94 0.902897000313 0.591785430908 +29 0.916051208973 0.589925348759 +4 0.93455016613 0.640841007233 +64 0.917627990246 0.642596483231 +SURF 0x10 +mat 1 +refs 3 +96 0.842054486275 0.545872688293 +25 0.845680773258 0.538942217827 +72 0.849494040012 0.538448214531 +SURF 0x10 +mat 1 +refs 3 +72 0.849494040012 0.538448214531 +105 0.845867693424 0.545378565788 +96 0.842054486275 0.545872688293 +SURF 0x10 +mat 1 +refs 3 +40 0.838428139687 0.552802979946 +96 0.842054486275 0.545872688293 +105 0.845867693424 0.545378565788 +SURF 0x10 +mat 1 +refs 3 +105 0.845867693424 0.545378565788 +72 0.849494040012 0.538448214531 +10 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 3 +97 0.840886592865 0.575808167458 +40 0.838428139687 0.552802979946 +104 0.846686303616 0.575162172318 +SURF 0x10 +mat 1 +refs 3 +104 0.846686303616 0.575162172318 +88 0.849144816399 0.598167300224 +97 0.840886592865 0.575808167458 +SURF 0x10 +mat 1 +refs 3 +36 0.843345105648 0.598813295364 +97 0.840886592865 0.575808167458 +88 0.849144816399 0.598167300224 +SURF 0x10 +mat 1 +refs 3 +88 0.849144816399 0.598167300224 +104 0.846686303616 0.575162172318 +24 0.854944527149 0.597521364689 +SURF 0x10 +mat 1 +refs 3 +97 0.840886592865 0.575808167458 +36 0.843345105648 0.598813295364 +89 0.849144816399 0.59816724062 +SURF 0x10 +mat 1 +refs 3 +89 0.849144816399 0.59816724062 +107 0.84668636322 0.575162053108 +97 0.840886592865 0.575808167458 +SURF 0x10 +mat 1 +refs 3 +40 0.838428139687 0.552802979946 +97 0.840886592865 0.575808167458 +107 0.84668636322 0.575162053108 +SURF 0x10 +mat 1 +refs 3 +107 0.84668636322 0.575162053108 +89 0.849144816399 0.59816724062 +26 0.854944527149 0.59752124548 +SURF 0x10 +mat 1 +refs 3 +96 0.842054367065 0.545872628689 +40 0.838428139687 0.552802979946 +106 0.845873177052 0.545420706272 +SURF 0x10 +mat 1 +refs 3 +106 0.845873177052 0.545420706272 +73 0.849499464035 0.53849029541 +96 0.842054367065 0.545872628689 +SURF 0x10 +mat 1 +refs 3 +25 0.845680773258 0.538942217827 +96 0.842054367065 0.545872628689 +73 0.849499464035 0.53849029541 +SURF 0x10 +mat 1 +refs 3 +73 0.849499464035 0.53849029541 +106 0.845873177052 0.545420706272 +8 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 3 +98 0.907455325127 0.539890408516 +28 0.899586796761 0.53483569622 +74 0.894837081432 0.53543394804 +SURF 0x10 +mat 1 +refs 3 +74 0.894837081432 0.53543394804 +109 0.902705550194 0.54048871994 +98 0.907455325127 0.539890408516 +SURF 0x10 +mat 1 +refs 3 +41 0.915323793888 0.544945120811 +98 0.907455325127 0.539890408516 +109 0.902705550194 0.54048871994 +SURF 0x10 +mat 1 +refs 3 +109 0.902705550194 0.54048871994 +74 0.894837081432 0.53543394804 +9 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 3 +99 0.921487271786 0.566789090633 +41 0.915323793888 0.544945120811 +108 0.915687441826 0.567435145378 +SURF 0x10 +mat 1 +refs 3 +108 0.915687441826 0.567435145378 +90 0.921850919724 0.5892791152 +99 0.921487271786 0.566789090633 +SURF 0x10 +mat 1 +refs 3 +37 0.927650749683 0.58863312006 +99 0.921487271786 0.566789090633 +90 0.921850919724 0.5892791152 +SURF 0x10 +mat 1 +refs 3 +90 0.921850919724 0.5892791152 +108 0.915687441826 0.567435145378 +27 0.916051208973 0.589925169945 +SURF 0x10 +mat 1 +refs 3 +99 0.92148733139 0.566789209843 +37 0.927650749683 0.58863312006 +91 0.921850979328 0.589279294014 +SURF 0x10 +mat 1 +refs 3 +91 0.921850979328 0.589279294014 +111 0.915687501431 0.567435264587 +99 0.92148733139 0.566789209843 +SURF 0x10 +mat 1 +refs 3 +41 0.915323793888 0.544945120811 +99 0.92148733139 0.566789209843 +111 0.915687501431 0.567435264587 +SURF 0x10 +mat 1 +refs 3 +111 0.915687501431 0.567435264587 +91 0.921850979328 0.589279294014 +29 0.916051208973 0.589925348759 +SURF 0x10 +mat 1 +refs 3 +98 0.907455325127 0.539890408516 +41 0.915323793888 0.544945120811 +110 0.902704536915 0.540480315685 +SURF 0x10 +mat 1 +refs 3 +110 0.902704536915 0.540480315685 +75 0.894836068153 0.535425543785 +98 0.907455325127 0.539890408516 +SURF 0x10 +mat 1 +refs 3 +28 0.899586796761 0.53483569622 +98 0.907455325127 0.539890408516 +75 0.894836068153 0.535425543785 +SURF 0x10 +mat 1 +refs 3 +75 0.894836068153 0.535425543785 +110 0.902704536915 0.540480315685 +11 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 3 +100 0.878365635872 0.538207292557 +30 0.876213371754 0.535192131996 +76 0.864765763283 0.536615252495 +SURF 0x10 +mat 1 +refs 3 +76 0.864765763283 0.536615252495 +113 0.866918087006 0.539630413055 +100 0.878365635872 0.538207292557 +SURF 0x10 +mat 1 +refs 3 +42 0.880517959595 0.541222453117 +100 0.878365635872 0.538207292557 +113 0.866918087006 0.539630413055 +SURF 0x10 +mat 1 +refs 3 +113 0.866918087006 0.539630413055 +76 0.864765763283 0.536615252495 +8 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 3 +101 0.885130286217 0.567433893681 +42 0.880517959595 0.541222453117 +112 0.86773121357 0.569371819496 +SURF 0x10 +mat 1 +refs 3 +112 0.86773121357 0.569371819496 +92 0.872343540192 0.595583319664 +101 0.885130286217 0.567433893681 +SURF 0x10 +mat 1 +refs 3 +38 0.889742612839 0.593645393848 +101 0.885130286217 0.567433893681 +92 0.872343540192 0.595583319664 +SURF 0x10 +mat 1 +refs 3 +92 0.872343540192 0.595583319664 +112 0.86773121357 0.569371819496 +26 0.854944527149 0.59752124548 +SURF 0x10 +mat 1 +refs 3 +101 0.885130286217 0.567433893681 +38 0.889742612839 0.593645393848 +93 0.902896881104 0.591785252094 +SURF 0x10 +mat 1 +refs 3 +93 0.902896881104 0.591785252094 +115 0.898284554482 0.565573811531 +101 0.885130286217 0.567433893681 +SURF 0x10 +mat 1 +refs 3 +42 0.880517959595 0.541222453117 +101 0.885130286217 0.567433893681 +115 0.898284554482 0.565573811531 +SURF 0x10 +mat 1 +refs 3 +115 0.898284554482 0.565573811531 +93 0.902896881104 0.591785252094 +27 0.916051208973 0.589925169945 +SURF 0x10 +mat 1 +refs 3 +100 0.878365635872 0.538207292557 +42 0.880517959595 0.541222453117 +114 0.885302662849 0.538627386093 +SURF 0x10 +mat 1 +refs 3 +114 0.885302662849 0.538627386093 +77 0.883150339127 0.535612225533 +100 0.878365635872 0.538207292557 +SURF 0x10 +mat 1 +refs 3 +30 0.876213371754 0.535192131996 +100 0.878365635872 0.538207292557 +77 0.883150339127 0.535612225533 +SURF 0x10 +mat 1 +refs 3 +77 0.883150339127 0.535612225533 +114 0.885302662849 0.538627386093 +9 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 3 +102 0.879194736481 0.544597864151 +31 0.87620472908 0.535124897957 +78 0.883144974709 0.535570204258 +SURF 0x10 +mat 1 +refs 3 +78 0.883144974709 0.535570204258 +117 0.886134982109 0.545043110847 +102 0.879194736481 0.544597864151 +SURF 0x10 +mat 1 +refs 3 +43 0.882184684277 0.554070830345 +102 0.879194736481 0.544597864151 +117 0.886134982109 0.545043110847 +SURF 0x10 +mat 1 +refs 3 +117 0.886134982109 0.545043110847 +78 0.883144974709 0.535570204258 +11 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 3 +103 0.885963737965 0.573858141899 +43 0.882184684277 0.554070830345 +116 0.899117946625 0.571998119354 +SURF 0x10 +mat 1 +refs 3 +116 0.899117946625 0.571998119354 +94 0.902897000313 0.591785430908 +103 0.885963737965 0.573858141899 +SURF 0x10 +mat 1 +refs 3 +39 0.889742851257 0.593645453453 +103 0.885963737965 0.573858141899 +94 0.902897000313 0.591785430908 +SURF 0x10 +mat 1 +refs 3 +94 0.902897000313 0.591785430908 +116 0.899117946625 0.571998119354 +29 0.916051208973 0.589925348759 +SURF 0x10 +mat 1 +refs 3 +103 0.885963737965 0.573858141899 +39 0.889742851257 0.593645453453 +95 0.872343659401 0.595583438873 +SURF 0x10 +mat 1 +refs 3 +95 0.872343659401 0.595583438873 +119 0.868564605713 0.575796127319 +103 0.885963737965 0.573858141899 +SURF 0x10 +mat 1 +refs 3 +43 0.882184684277 0.554070830345 +103 0.885963737965 0.573858141899 +119 0.868564605713 0.575796127319 +SURF 0x10 +mat 1 +refs 3 +119 0.868564605713 0.575796127319 +95 0.872343659401 0.595583438873 +24 0.854944527149 0.597521364689 +SURF 0x10 +mat 1 +refs 3 +102 0.879194736481 0.544597864151 +43 0.882184684277 0.554070830345 +118 0.867745995522 0.54601252079 +SURF 0x10 +mat 1 +refs 3 +118 0.867745995522 0.54601252079 +79 0.864756047726 0.536539554596 +102 0.879194736481 0.544597864151 +SURF 0x10 +mat 1 +refs 3 +31 0.87620472908 0.535124897957 +102 0.879194736481 0.544597864151 +79 0.864756047726 0.536539554596 +SURF 0x10 +mat 1 +refs 3 +79 0.864756047726 0.536539554596 +118 0.867745995522 0.54601252079 +10 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 3 +121 0.852366507053 0.576944589615 +24 0.854944527149 0.597521364689 +104 0.84668636322 0.575162172318 +SURF 0x10 +mat 1 +refs 3 +104 0.84668636322 0.575162172318 +128 0.844108343124 0.554585456848 +121 0.852366507053 0.576944589615 +SURF 0x10 +mat 1 +refs 3 +44 0.849788486958 0.556367874146 +121 0.852366507053 0.576944589615 +128 0.844108343124 0.554585456848 +SURF 0x10 +mat 1 +refs 3 +128 0.844108343124 0.554585456848 +104 0.84668636322 0.575162172318 +40 0.838428139687 0.552802979946 +SURF 0x10 +mat 1 +refs 3 +120 0.851547896862 0.54716104269 +44 0.849788486958 0.556367874146 +128 0.844108343124 0.554585397243 +SURF 0x10 +mat 1 +refs 3 +128 0.844108343124 0.554585397243 +105 0.845867693424 0.545378625393 +120 0.851547896862 0.54716104269 +SURF 0x10 +mat 1 +refs 3 +10 0.853307306767 0.537954211235 +120 0.851547896862 0.54716104269 +105 0.845867693424 0.545378625393 +SURF 0x10 +mat 1 +refs 3 +105 0.845867693424 0.545378625393 +128 0.844108343124 0.554585397243 +40 0.838428139687 0.552802979946 +SURF 0x10 +mat 1 +refs 3 +122 0.850923657417 0.542349040508 +8 0.853318214417 0.538038313389 +106 0.845873177052 0.545420646667 +SURF 0x10 +mat 1 +refs 3 +106 0.845873177052 0.545420646667 +129 0.843478679657 0.549731373787 +122 0.850923657417 0.542349040508 +SURF 0x10 +mat 1 +refs 3 +45 0.848529160023 0.546659767628 +122 0.850923657417 0.542349040508 +129 0.843478679657 0.549731373787 +SURF 0x10 +mat 1 +refs 3 +129 0.843478679657 0.549731373787 +106 0.845873177052 0.545420646667 +40 0.838428139687 0.552802979946 +SURF 0x10 +mat 1 +refs 3 +123 0.851736783981 0.572090506554 +45 0.848529160023 0.546659767628 +129 0.843478679657 0.549731373787 +SURF 0x10 +mat 1 +refs 3 +129 0.843478679657 0.549731373787 +107 0.84668636322 0.575162053108 +123 0.851736783981 0.572090506554 +SURF 0x10 +mat 1 +refs 3 +26 0.854944527149 0.59752124548 +123 0.851736783981 0.572090506554 +107 0.84668636322 0.575162053108 +SURF 0x10 +mat 1 +refs 3 +107 0.84668636322 0.575162053108 +129 0.843478679657 0.549731373787 +40 0.838428139687 0.552802979946 +SURF 0x10 +mat 1 +refs 3 +125 0.909360766411 0.565773129463 +27 0.916051208973 0.589925169945 +108 0.915687561035 0.567435145378 +SURF 0x10 +mat 1 +refs 3 +108 0.915687561035 0.567435145378 +130 0.908997058868 0.543283104897 +125 0.909360766411 0.565773129463 +SURF 0x10 +mat 1 +refs 3 +46 0.902670264244 0.541621029377 +125 0.909360766411 0.565773129463 +130 0.908997058868 0.543283104897 +SURF 0x10 +mat 1 +refs 3 +130 0.908997058868 0.543283104897 +108 0.915687561035 0.567435145378 +41 0.915323793888 0.544945120811 +SURF 0x10 +mat 1 +refs 3 +124 0.896378755569 0.538826584816 +46 0.902670264244 0.541621029377 +130 0.908997058868 0.543283104897 +SURF 0x10 +mat 1 +refs 3 +130 0.908997058868 0.543283104897 +109 0.902705550194 0.540488660336 +124 0.896378755569 0.538826584816 +SURF 0x10 +mat 1 +refs 3 +9 0.890087366104 0.536032259464 +124 0.896378755569 0.538826584816 +109 0.902705550194 0.540488660336 +SURF 0x10 +mat 1 +refs 3 +109 0.902705550194 0.540488660336 +130 0.908997058868 0.543283104897 +41 0.915323793888 0.544945120811 +SURF 0x10 +mat 1 +refs 3 +126 0.896987736225 0.543520510197 +11 0.890085279942 0.536015510559 +110 0.902704536915 0.540480315685 +SURF 0x10 +mat 1 +refs 3 +110 0.902704536915 0.540480315685 +131 0.909606933594 0.547985315323 +126 0.896987736225 0.543520510197 +SURF 0x10 +mat 1 +refs 3 +47 0.903890192509 0.551025509834 +126 0.896987736225 0.543520510197 +131 0.909606933594 0.547985315323 +SURF 0x10 +mat 1 +refs 3 +131 0.909606933594 0.547985315323 +110 0.902704536915 0.540480315685 +41 0.915323793888 0.544945120811 +SURF 0x10 +mat 1 +refs 3 +127 0.909970700741 0.570475399494 +47 0.903890192509 0.551025509834 +131 0.909606993198 0.547985315323 +SURF 0x10 +mat 1 +refs 3 +131 0.909606993198 0.547985315323 +111 0.915687501431 0.567435264587 +127 0.909970700741 0.570475399494 +SURF 0x10 +mat 1 +refs 3 +29 0.916051208973 0.589925348759 +127 0.909970700741 0.570475399494 +111 0.915687501431 0.567435264587 +SURF 0x10 +mat 1 +refs 3 +111 0.915687501431 0.567435264587 +131 0.909606993198 0.547985315323 +41 0.915323793888 0.544945120811 +SURF 0x10 +mat 1 +refs 3 +123 0.851736783981 0.572090506554 +26 0.854944527149 0.59752124548 +112 0.86773121357 0.569371819496 +SURF 0x10 +mat 1 +refs 3 +112 0.86773121357 0.569371819496 +132 0.864523530006 0.54394108057 +123 0.851736783981 0.572090506554 +SURF 0x10 +mat 1 +refs 3 +45 0.848529160023 0.546659767628 +123 0.851736783981 0.572090506554 +132 0.864523530006 0.54394108057 +SURF 0x10 +mat 1 +refs 3 +132 0.864523530006 0.54394108057 +112 0.86773121357 0.569371819496 +42 0.880517959595 0.541222453117 +SURF 0x10 +mat 1 +refs 3 +122 0.850923657417 0.542349040508 +45 0.848529160023 0.546659767628 +132 0.864523530006 0.543941140175 +SURF 0x10 +mat 1 +refs 3 +132 0.864523530006 0.543941140175 +113 0.866918087006 0.539630413055 +122 0.850923657417 0.542349040508 +SURF 0x10 +mat 1 +refs 3 +8 0.853318214417 0.538038313389 +122 0.850923657417 0.542349040508 +113 0.866918087006 0.539630413055 +SURF 0x10 +mat 1 +refs 3 +113 0.866918087006 0.539630413055 +132 0.864523530006 0.543941140175 +42 0.880517959595 0.541222453117 +SURF 0x10 +mat 1 +refs 3 +124 0.896378815174 0.538826644421 +9 0.890087366104 0.536032259464 +114 0.885302662849 0.538627386093 +SURF 0x10 +mat 1 +refs 3 +114 0.885302662849 0.538627386093 +133 0.891594111919 0.541421771049 +124 0.896378815174 0.538826644421 +SURF 0x10 +mat 1 +refs 3 +46 0.902670264244 0.541621029377 +124 0.896378815174 0.538826644421 +133 0.891594111919 0.541421771049 +SURF 0x10 +mat 1 +refs 3 +133 0.891594111919 0.541421771049 +114 0.885302662849 0.538627386093 +42 0.880517959595 0.541222453117 +SURF 0x10 +mat 1 +refs 3 +125 0.909360706806 0.565773010254 +46 0.902670264244 0.541621029377 +133 0.891594111919 0.541421771049 +SURF 0x10 +mat 1 +refs 3 +133 0.891594111919 0.541421771049 +115 0.898284554482 0.565573811531 +125 0.909360706806 0.565773010254 +SURF 0x10 +mat 1 +refs 3 +27 0.916051208973 0.589925169945 +125 0.909360706806 0.565773010254 +115 0.898284554482 0.565573811531 +SURF 0x10 +mat 1 +refs 3 +115 0.898284554482 0.565573811531 +133 0.891594111919 0.541421771049 +42 0.880517959595 0.541222453117 +SURF 0x10 +mat 1 +refs 3 +127 0.909970700741 0.570475399494 +29 0.916051208973 0.589925348759 +116 0.899117946625 0.571998119354 +SURF 0x10 +mat 1 +refs 3 +116 0.899117946625 0.571998119354 +134 0.893037438393 0.55254817009 +127 0.909970700741 0.570475399494 +SURF 0x10 +mat 1 +refs 3 +47 0.903890192509 0.551025509834 +127 0.909970700741 0.570475399494 +134 0.893037438393 0.55254817009 +SURF 0x10 +mat 1 +refs 3 +134 0.893037438393 0.55254817009 +116 0.899117946625 0.571998119354 +43 0.882184684277 0.554070830345 +SURF 0x10 +mat 1 +refs 3 +126 0.896987736225 0.543520510197 +47 0.903890192509 0.551025509834 +134 0.893037438393 0.55254817009 +SURF 0x10 +mat 1 +refs 3 +134 0.893037438393 0.55254817009 +117 0.886134982109 0.545043170452 +126 0.896987736225 0.543520510197 +SURF 0x10 +mat 1 +refs 3 +11 0.890085279942 0.536015510559 +126 0.896987736225 0.543520510197 +117 0.886134982109 0.545043170452 +SURF 0x10 +mat 1 +refs 3 +117 0.886134982109 0.545043170452 +134 0.893037438393 0.55254817009 +43 0.882184684277 0.554070830345 +SURF 0x10 +mat 1 +refs 3 +120 0.851547896862 0.54716104269 +10 0.853307306767 0.537954211235 +118 0.867745995522 0.54601252079 +SURF 0x10 +mat 1 +refs 3 +118 0.867745995522 0.54601252079 +135 0.865986585617 0.555219292641 +120 0.851547896862 0.54716104269 +SURF 0x10 +mat 1 +refs 3 +44 0.849788486958 0.556367874146 +120 0.851547896862 0.54716104269 +135 0.865986585617 0.555219292641 +SURF 0x10 +mat 1 +refs 3 +135 0.865986585617 0.555219292641 +118 0.867745995522 0.54601252079 +43 0.882184684277 0.554070830345 +SURF 0x10 +mat 1 +refs 3 +121 0.852366507053 0.576944589615 +44 0.849788486958 0.556367874146 +135 0.865986585617 0.555219292641 +SURF 0x10 +mat 1 +refs 3 +135 0.865986585617 0.555219292641 +119 0.868564605713 0.575796127319 +121 0.852366507053 0.576944589615 +SURF 0x10 +mat 1 +refs 3 +24 0.854944527149 0.597521364689 +121 0.852366507053 0.576944589615 +119 0.868564605713 0.575796127319 +SURF 0x10 +mat 1 +refs 3 +119 0.868564605713 0.575796127319 +135 0.865986585617 0.555219292641 +43 0.882184684277 0.554070830345 +SURF 0x10 +mat 1 +refs 3 +77 0.727968990803 0.182866573334 +9 0.735686302185 0.181877017021 +136 0.714978039265 0.181814193726 +SURF 0x10 +mat 1 +refs 3 +136 0.714978039265 0.181814193726 +76 0.707260608673 0.18280377984 +77 0.727968990803 0.182866573334 +SURF 0x10 +mat 1 +refs 3 +30 0.720251619816 0.183856129646 +77 0.727968990803 0.182866573334 +76 0.707260608673 0.18280377984 +SURF 0x10 +mat 1 +refs 3 +76 0.707260608673 0.18280377984 +136 0.714978039265 0.181814193726 +8 0.69426971674 0.181751400232 +SURF 0x10 +mat 1 +refs 3 +74 0.7410774827 0.178908288479 +28 0.746468603611 0.175939589739 +137 0.720369160175 0.178845494986 +SURF 0x10 +mat 1 +refs 3 +137 0.720369160175 0.178845494986 +136 0.714978039265 0.181814193726 +74 0.7410774827 0.178908288479 +SURF 0x10 +mat 1 +refs 3 +9 0.735686302185 0.181877017021 +74 0.7410774827 0.178908288479 +136 0.714978039265 0.181814193726 +SURF 0x10 +mat 1 +refs 3 +136 0.714978039265 0.181814193726 +137 0.720369160175 0.178845494986 +8 0.69426971674 0.181751400232 +SURF 0x10 +mat 1 +refs 3 +137 0.720369160175 0.178845494986 +28 0.746468603611 0.175939589739 +138 0.716038286686 0.175688385963 +SURF 0x10 +mat 1 +refs 3 +138 0.716038286686 0.175688385963 +73 0.68993884325 0.17859429121 +137 0.720369160175 0.178845494986 +SURF 0x10 +mat 1 +refs 3 +8 0.69426971674 0.181751400232 +137 0.720369160175 0.178845494986 +73 0.68993884325 0.17859429121 +SURF 0x10 +mat 1 +refs 3 +73 0.68993884325 0.17859429121 +138 0.716038286686 0.175688385963 +25 0.685607969761 0.17543721199 +SURF 0x10 +mat 1 +refs 3 +75 0.741077303886 0.173119544983 +11 0.735685884953 0.170299470425 +139 0.710646927357 0.172868341208 +SURF 0x10 +mat 1 +refs 3 +139 0.710646927357 0.172868341208 +138 0.716038286686 0.175688385963 +75 0.741077303886 0.173119544983 +SURF 0x10 +mat 1 +refs 3 +28 0.746468603611 0.175939589739 +75 0.741077303886 0.173119544983 +138 0.716038286686 0.175688385963 +SURF 0x10 +mat 1 +refs 3 +138 0.716038286686 0.175688385963 +139 0.710646927357 0.172868341208 +25 0.685607969761 0.17543721199 +SURF 0x10 +mat 1 +refs 3 +139 0.710646927357 0.172868341208 +11 0.735685884953 0.170299470425 +140 0.714976727962 0.169774055481 +SURF 0x10 +mat 1 +refs 3 +140 0.714976727962 0.216876029968 +72 0.689937770367 0.219444870949 +139 0.710646927357 0.219970345497 +SURF 0x10 +mat 1 +refs 3 +25 0.685607969761 0.17543721199 +139 0.710646927357 0.172868341208 +72 0.689937770367 0.172342896461 +SURF 0x10 +mat 1 +refs 3 +72 0.689937770367 0.172342896461 +140 0.714976727962 0.169774055481 +10 0.694267570972 0.169248610735 +SURF 0x10 +mat 1 +refs 3 +78 0.727967917919 0.21601203084 +31 0.720249891281 0.214622616768 +79 0.707258760929 0.215486615896 +SURF 0x10 +mat 1 +refs 3 +79 0.707258760929 0.215486615896 +140 0.714976727962 0.216876029968 +78 0.727967917919 0.21601203084 +SURF 0x10 +mat 1 +refs 3 +11 0.735685884953 0.217401444912 +78 0.727967917919 0.21601203084 +140 0.714976727962 0.216876029968 +SURF 0x10 +mat 1 +refs 3 +140 0.714976727962 0.216876029968 +79 0.707258760929 0.215486615896 +10 0.694267570972 0.216350615025 +SURF 0x10 +mat 1 +refs 4 +3 0.926753878593 0.737024903297 +142 0.920610785484 0.717458128929 +141 0.949343681335 0.713580965996 +14 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 4 +142 0.920610785484 0.717458128929 +48 0.914467632771 0.697891294956 +49 0.942745745182 0.694734215736 +141 0.949343681335 0.713580965996 +SURF 0x10 +mat 1 +refs 4 +14 0.886189460754 0.701048374176 +141 0.90032851696 0.699469804764 +143 0.912041068077 0.738405823708 +2 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +141 0.90032851696 0.699469804764 +49 0.914467632771 0.697891294956 +50 0.926753878593 0.737024903297 +143 0.912041068077 0.738405823708 +SURF 0x10 +mat 1 +refs 4 +52 0.886189460754 0.701048374176 +144 0.891401648521 0.717664003372 +160 0.894690334797 0.708427727222 +145 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +160 0.894690334797 0.708427727222 +0 0.92580139637 0.729682266712 +51 0.914467632771 0.697891294956 +145 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +0 0.92580139637 0.729682266712 +160 0.894690334797 0.708427727222 +144 0.891401648521 0.717664003372 +15 0.896613895893 0.734279572964 +SURF 0x10 +mat 1 +refs 4 +52 0.914467632771 0.697891294956 +146 0.920134544373 0.713786780834 +161 0.924370646477 0.705049753189 +144 0.928606748581 0.696312665939 +SURF 0x10 +mat 1 +refs 4 +15 0.942745745182 0.694734156132 +144 0.928606748581 0.696312665939 +161 0.924370646477 0.705049753189 +1 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 4 +1 0.955227017403 0.726920366287 +161 0.924370646477 0.705049753189 +146 0.920134544373 0.713786780834 +53 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 3 +147 0.947458744049 0.694207906723 +16 0.955227017403 0.726920366287 +1 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +53 0.952171802521 0.693681657314 +147 0.947458744049 0.694207906723 +1 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +147 0.947458744049 0.694207906723 +54 0.942745745182 0.694734156132 +16 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 4 +48 0.965353190899 0.728447496891 +142 0.960647344589 0.730437517166 +162 0.960335195065 0.721829533577 +148 0.958762526512 0.711064577103 +SURF 0x10 +mat 1 +refs 4 +54 0.952171802521 0.693681657314 +148 0.958762526512 0.711064577103 +162 0.960335195065 0.721829533577 +16 0.942745745182 0.694734215736 +SURF 0x10 +mat 1 +refs 4 +16 0.942745745182 0.694734215736 +162 0.960335195065 0.721829533577 +142 0.960647344589 0.730437517166 +3 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 4 +50 0.876763522625 0.702100872993 +149 0.881476521492 0.70157456398 +163 0.881729602814 0.710877418518 +143 0.881982803345 0.720180273056 +SURF 0x10 +mat 1 +refs 4 +2 0.88720202446 0.738259613514 +143 0.881982803345 0.720180273056 +163 0.881729602814 0.710877418518 +17 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +17 0.897328317165 0.739786684513 +163 0.881729602814 0.710877418518 +149 0.881476521492 0.70157456398 +55 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 3 +150 0.881982803345 0.720180273056 +0 0.896613895893 0.734279572964 +17 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 3 +55 0.876763522625 0.702100872993 +150 0.881982803345 0.720180273056 +17 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 3 +51 0.88720202446 0.738259613514 +0 0.896613895893 0.734279572964 +150 0.881982803345 0.720180273056 +SURF 0x10 +mat 1 +refs 4 +57 0.942745745182 0.694734215736 +151 0.949343681335 0.713580906391 +164 0.943514347076 0.704556286335 +152 0.928606688976 0.696312785149 +SURF 0x10 +mat 1 +refs 4 +56 0.914467632771 0.697891294956 +152 0.928606688976 0.696312785149 +164 0.943514347076 0.704556286335 +48 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 4 +48 0.926753878593 0.737024903297 +164 0.943514347076 0.704556286335 +151 0.949343681335 0.713580906391 +49 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 4 +57 0.914467632771 0.697891294956 +153 0.920610785484 0.717458128929 +165 0.910469651222 0.708463966846 +151 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +49 0.886189460754 0.701048374176 +151 0.90032851696 0.699469804764 +165 0.910469651222 0.708463966846 +50 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +50 0.897328317165 0.739786684513 +165 0.910469651222 0.708463966846 +153 0.920610785484 0.717458128929 +58 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 4 +59 0.914467632771 0.697891294956 +154 0.90032851696 0.699469864368 +145 0.911207675934 0.731980919838 +51 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 4 +154 0.90032851696 0.699469864368 +60 0.886189460754 0.701048374176 +52 0.896613895893 0.734279572964 +145 0.911207675934 0.731980919838 +SURF 0x10 +mat 1 +refs 4 +60 0.914467632771 0.697891294956 +155 0.920134544373 0.713786780834 +146 0.948986411095 0.710827231407 +52 0.942745745182 0.694734156132 +SURF 0x10 +mat 1 +refs 4 +155 0.920134544373 0.713786780834 +61 0.92580139637 0.729682266712 +53 0.955227017403 0.726920366287 +146 0.948986411095 0.710827231407 +SURF 0x10 +mat 1 +refs 4 +61 0.952171802521 0.693681657314 +156 0.947458744049 0.694207906723 +147 0.960290074348 0.727683901787 +53 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 4 +156 0.947458744049 0.694207906723 +62 0.942745745182 0.694734156132 +54 0.955227017403 0.726920366287 +147 0.960290074348 0.727683901787 +SURF 0x10 +mat 1 +refs 4 +62 0.952171802521 0.693681657314 +157 0.958762526512 0.711064577103 +148 0.949343681335 0.713580965996 +54 0.942745745182 0.694734215736 +SURF 0x10 +mat 1 +refs 4 +157 0.958762526512 0.711064577103 +56 0.965353190899 0.728447496891 +48 0.955941557884 0.732427597046 +148 0.949343681335 0.713580965996 +SURF 0x10 +mat 1 +refs 4 +58 0.876763522625 0.702100872993 +158 0.881476521492 0.701574623585 +149 0.892265200615 0.739023149014 +50 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 4 +158 0.881476521492 0.701574623585 +63 0.886189460754 0.701048374176 +55 0.897328317165 0.739786684513 +149 0.892265200615 0.739023149014 +SURF 0x10 +mat 1 +refs 4 +63 0.876763522625 0.702100872993 +159 0.881982803345 0.720180273056 +150 0.891401648521 0.717664003372 +55 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 4 +159 0.881982803345 0.720180273056 +59 0.88720202446 0.738259613514 +51 0.896613895893 0.734279572964 +150 0.891401648521 0.717664003372 +kids 0 +OBJECT group +name "arm1.R" +kids 2 +OBJECT poly +name "arm1.R_0" +data 8 +Mesh.011 +crease 30 +numvert 42 +0.005791 0.443116 -0.567227 +-0.002687 0.440214 -0.567011 +-0.011163 0.443116 -0.567297 +-0.011163 0.460529 -0.568801 +-0.002687 0.463432 -0.569016 +0.005792 0.460529 -0.56873 +0.008618 0.451823 -0.567967 +-0.013989 0.451823 -0.56806 +-0.01527 0.429113 -0.187657 +0.000144 0.433942 -0.188001 +-0.030307 0.434875 -0.188624 +-0.02884 0.466291 -0.192579 +-0.01376 0.471479 -0.192902 +0.000943 0.466074 -0.191915 +0.005562 0.449913 -0.189851 +-0.034592 0.450679 -0.190709 +0.001552 0.441665 -0.567119 +-0.006925 0.441665 -0.567154 +-0.006925 0.461981 -0.568908 +0.001553 0.461981 -0.568873 +0.007205 0.456176 -0.568348 +0.007205 0.447469 -0.567597 +-0.012576 0.447469 -0.567679 +-0.012576 0.456176 -0.56843 +-0.002685 0.460529 -0.568765 +-0.004099 0.456176 -0.568395 +-0.002686 0.451823 -0.568014 +-0.001273 0.447469 -0.567632 +-0.002686 0.443116 -0.567262 +-0.007563 0.431528 -0.187829 +-0.022788 0.431994 -0.188141 +-0.0213 0.468885 -0.19274 +-0.006408 0.468777 -0.192408 +0.003252 0.457994 -0.190883 +0.002853 0.441928 -0.188926 +-0.032449 0.442777 -0.189666 +-0.031716 0.458485 -0.191644 +-0.013948 0.466183 -0.192247 +-0.016824 0.458377 -0.191312 +-0.014515 0.450296 -0.19028 +-0.012372 0.442394 -0.189237 +-0.015081 0.434409 -0.188313 +numsurf 48 +SURF 0x10 +mat 1 +refs 3 +19 0.0 0.5 +5 0.0 1.0 +24 0.500000059605 0.5 +SURF 0x10 +mat 1 +refs 3 +24 0.500000059605 0.5 +18 0.5 0.0 +19 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +19 0.0 0.5 +18 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +18 0.5 0.0 +24 0.500000059605 0.5 +3 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +24 0.0 0.499999970198 +5 0.0 1.0 +25 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +25 0.5 0.5 +23 0.5 7.45058059692e-09 +24 0.0 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +3 0.0 0.0 +24 0.0 0.499999970198 +23 0.5 7.45058059692e-09 +SURF 0x10 +mat 1 +refs 3 +23 0.5 7.45058059692e-09 +25 0.5 0.5 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +20 0.0 0.5 +6 0.0 1.0 +26 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +26 0.5 0.5 +25 0.499999970198 2.98023223877e-08 +20 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +5 0.0 0.0 +20 0.0 0.5 +25 0.499999970198 2.98023223877e-08 +SURF 0x10 +mat 1 +refs 3 +25 0.499999970198 2.98023223877e-08 +26 0.5 0.5 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +26 0.0 0.5 +6 0.0 1.0 +27 0.5 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +27 0.5 0.500000059605 +22 0.5 0.0 +26 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +7 0.0 0.0 +26 0.0 0.5 +22 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +22 0.5 0.0 +27 0.5 0.500000059605 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +21 0.0 0.499999970198 +0 0.0 1.0 +28 0.5 0.499999940395 +SURF 0x10 +mat 1 +refs 3 +28 0.5 0.499999940395 +27 0.499999970198 0.0 +21 0.0 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +6 0.0 0.0 +21 0.0 0.499999970198 +27 0.499999970198 0.0 +SURF 0x10 +mat 1 +refs 3 +27 0.499999970198 0.0 +28 0.5 0.499999940395 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +28 0.0 0.5 +0 0.0 1.0 +16 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +16 0.5 0.5 +17 0.5 0.0 +28 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +2 0.0 0.0 +28 0.0 0.5 +17 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +17 0.5 0.0 +16 0.5 0.5 +1 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +32 -2.98023223877e-08 0.5 +13 0.0 1.0 +37 0.499999970198 0.5 +SURF 0x10 +mat 1 +refs 3 +37 0.499999970198 0.5 +31 0.5 1.49011611938e-08 +32 -2.98023223877e-08 0.5 +SURF 0x10 +mat 1 +refs 3 +12 0.0 0.0 +32 -2.98023223877e-08 0.5 +31 0.5 1.49011611938e-08 +SURF 0x10 +mat 1 +refs 3 +31 0.5 1.49011611938e-08 +37 0.499999970198 0.5 +11 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +37 4.65661287308e-10 0.499999970198 +13 0.0 1.0 +38 0.5 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +38 0.5 0.499999970198 +36 0.499999970198 -7.45058059692e-09 +37 4.65661287308e-10 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +11 0.0 0.0 +37 4.65661287308e-10 0.499999970198 +36 0.499999970198 -7.45058059692e-09 +SURF 0x10 +mat 1 +refs 3 +36 0.499999970198 -7.45058059692e-09 +38 0.5 0.499999970198 +15 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +33 -3.72529029846e-09 0.5 +14 0.0 1.0 +39 0.500000059605 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +39 0.500000059605 0.499999970198 +38 0.5 0.0 +33 -3.72529029846e-09 0.5 +SURF 0x10 +mat 1 +refs 3 +13 0.0 0.0 +33 -3.72529029846e-09 0.5 +38 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +38 0.5 0.0 +39 0.500000059605 0.499999970198 +15 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.499999970198 +14 0.0 1.0 +40 0.5 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +40 0.5 0.499999970198 +35 0.499999970198 0.0 +39 0.0 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +15 0.0 0.0 +39 0.0 0.499999970198 +35 0.499999970198 0.0 +SURF 0x10 +mat 1 +refs 3 +35 0.499999970198 0.0 +40 0.5 0.499999970198 +10 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +34 7.45058059692e-09 0.5 +9 0.0 1.0 +41 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +41 0.5 0.5 +40 0.5 0.0 +34 7.45058059692e-09 0.5 +SURF 0x10 +mat 1 +refs 3 +14 0.0 0.0 +34 7.45058059692e-09 0.5 +40 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +40 0.5 0.0 +41 0.5 0.5 +10 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +41 7.45058059692e-09 0.5 +9 0.0 1.0 +29 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +29 0.5 0.5 +30 0.5 0.0 +41 7.45058059692e-09 0.5 +SURF 0x10 +mat 1 +refs 3 +10 0.0 0.0 +41 7.45058059692e-09 0.5 +30 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +30 0.5 0.0 +29 0.5 0.5 +8 1.0 0.0 +kids 0 +OBJECT poly +name "arm1.R_1" +data 8 +Mesh.011 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 137 +0.04422 0.390932 -0.379657 +-0.063227 0.390932 -0.380145 +-0.072866 0.508725 -0.262405 +0.044236 0.498076 -0.435739 +0.048488 0.507996 -0.259653 +-0.063211 0.498076 -0.436227 +-0.039684 0.492638 -0.534011 +-0.078849 0.381843 -0.238963 +0.034292 0.492638 -0.533705 +0.045232 0.378194 -0.236209 +-0.039686 0.416662 -0.527451 +0.03429 0.416662 -0.527144 +-0.002699 0.403999 -0.526204 +-0.002697 0.5053 -0.534952 +0.042861 0.404396 -0.465787 +0.046619 0.45465 -0.530374 +0.04287 0.493723 -0.499402 +-0.047917 0.493723 -0.499428 +-0.052013 0.45465 -0.530782 +-0.047927 0.404396 -0.465813 +-0.081127 0.444504 -0.408267 +0.062137 0.444504 -0.407616 +0.046315 0.505785 -0.34857 +-0.009486 0.515933 -0.44533 +-0.067258 0.505785 -0.350461 +-0.067272 0.385707 -0.300911 +-0.009505 0.373075 -0.370554 +0.046301 0.385707 -0.299021 +-0.017578 0.358628 -0.233679 +-0.011418 0.529751 -0.264937 +0.067313 0.44273 -0.247472 +-0.096309 0.445649 -0.251143 +-0.010488 0.365694 -0.291708 +-0.010469 0.525798 -0.357774 +0.065239 0.445746 -0.323481 +-0.086193 0.445746 -0.326001 +-0.063054 0.449059 -0.482625 +0.042089 0.449059 -0.498187 +-0.002521 0.508611 -0.505018 +-0.002533 0.389508 -0.460197 +0.025334 0.425867 -0.551799 +-0.002692 0.416273 -0.551087 +-0.030715 0.425867 -0.552031 +-0.030714 0.483432 -0.557002 +-0.00269 0.493026 -0.557714 +0.025336 0.483432 -0.55677 +0.034675 0.45465 -0.554246 +-0.040054 0.45465 -0.554555 +0.005791 0.443116 -0.567227 +-0.002687 0.440214 -0.567011 +-0.011163 0.443116 -0.567297 +-0.011163 0.460529 -0.568801 +-0.002687 0.463432 -0.569016 +0.005792 0.460529 -0.56873 +0.008618 0.451823 -0.567967 +-0.013989 0.451823 -0.56806 +0.020993 0.412724 -0.20308 +-0.016341 0.401026 -0.202246 +-0.052757 0.414981 -0.204589 +-0.049201 0.491073 -0.214167 +-0.012678 0.503636 -0.214951 +0.022929 0.490547 -0.212559 +0.034118 0.451403 -0.207559 +-0.063137 0.453259 -0.209638 +-0.01527 0.429113 -0.187657 +0.000144 0.433942 -0.188001 +-0.030307 0.434875 -0.188624 +-0.02884 0.466291 -0.192579 +-0.01376 0.471479 -0.192902 +0.000943 0.466074 -0.191915 +0.005562 0.449913 -0.189851 +-0.034592 0.450679 -0.190709 +0.031057 0.49318 -0.518497 +-0.044547 0.49318 -0.518661 +-0.072177 0.417718 -0.394206 +-0.072169 0.47129 -0.422247 +0.053186 0.47129 -0.421677 +0.053178 0.417718 -0.393636 +-0.036348 0.507005 -0.440778 +0.017375 0.507005 -0.440534 +0.017358 0.382003 -0.375105 +-0.036366 0.382003 -0.375349 +-0.014033 0.362161 -0.262693 +0.017906 0.375701 -0.295364 +-0.03888 0.375701 -0.29631 +-0.038863 0.515792 -0.354117 +0.017923 0.515792 -0.353172 +0.055777 0.475766 -0.336025 +0.05577 0.415727 -0.311251 +-0.076726 0.475766 -0.338231 +-0.05549 0.426727 -0.474219 +0.050429 0.426727 -0.474189 +-0.006744 0.506955 -0.521374 +0.020164 0.396952 -0.462992 +-0.02523 0.396952 -0.463005 +-0.002696 0.410136 -0.538646 +-0.035199 0.488035 -0.545507 +-0.002693 0.499163 -0.546333 +0.029814 0.488035 -0.545237 +0.030005 0.469041 -0.555508 +0.030004 0.440259 -0.553022 +-0.035385 0.440259 -0.553293 +-0.035384 0.469041 -0.555779 +0.001552 0.441665 -0.567119 +-0.00269 0.428243 -0.559049 +-0.006925 0.441665 -0.567154 +-0.006925 0.461981 -0.568908 +-0.002688 0.478229 -0.563365 +0.001553 0.461981 -0.568873 +0.007205 0.456176 -0.568348 +0.007205 0.447469 -0.567597 +-0.012576 0.447469 -0.567679 +-0.012576 0.456176 -0.56843 +-0.016959 0.379827 -0.217963 +-0.03094 0.497355 -0.214559 +0.005125 0.497092 -0.213755 +0.050715 0.447067 -0.227516 +-0.079723 0.449454 -0.23039 +-0.015805 0.41507 -0.194952 +-0.007563 0.431528 -0.187829 +-0.022788 0.431994 -0.188141 +-0.0213 0.468885 -0.19274 +-0.006408 0.468777 -0.192408 +0.003252 0.457994 -0.190883 +0.002853 0.441928 -0.188926 +-0.032449 0.442777 -0.189666 +-0.031716 0.458485 -0.191644 +-0.026456 0.368931 -0.279501 +0.001937 0.368931 -0.279029 +0.02991 0.478538 -0.550373 +-0.035292 0.478538 -0.550643 +-0.000569 0.434954 -0.563084 +-0.004807 0.434954 -0.563101 +-0.004806 0.470105 -0.566137 +-0.000568 0.470105 -0.566119 +-0.011684 0.423299 -0.19139 +-0.019297 0.423532 -0.191546 +numsurf 169 +SURF 0x10 +mat 1 +refs 4 +31 0.88264465332 0.942071378231 +35 0.882902145386 0.890756726265 +25 0.897846519947 0.906001329422 +7 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +32 0.936906099319 0.907227694988 +82 0.937058866024 0.927084088326 +127 0.92721760273 0.916849315166 +84 0.917376279831 0.906614542007 +SURF 0x10 +mat 1 +refs 4 +25 0.897846519947 0.906001329422 +84 0.917376279831 0.906614542007 +127 0.92721760273 0.916849315166 +7 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +7 0.895474016666 0.948747456074 +127 0.92721760273 0.916849315166 +82 0.937058866024 0.927084088326 +28 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 4 +32 0.936906099319 0.907227694988 +83 0.95571398735 0.90227752924 +128 0.94638645649 0.914680838585 +82 0.937058866024 0.927084088326 +SURF 0x10 +mat 1 +refs 4 +28 0.937211632729 0.946940541267 +82 0.937058866024 0.927084088326 +128 0.94638645649 0.914680838585 +9 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 4 +9 0.979302406311 0.939734578133 +128 0.94638645649 0.914680838585 +83 0.95571398735 0.90227752924 +27 0.974521994591 0.897327423096 +SURF 0x10 +mat 1 +refs 4 +26 0.930661559105 0.854026854038 +80 0.94835960865 0.848607897758 +83 0.955714046955 0.902277588844 +32 0.936906099319 0.907227694988 +SURF 0x10 +mat 1 +refs 4 +80 0.94835960865 0.848607897758 +0 0.966057658195 0.843189001083 +27 0.974521994591 0.897327423096 +83 0.955714046955 0.902277588844 +SURF 0x10 +mat 1 +refs 4 +32 0.936906099319 0.907227694988 +84 0.917376279831 0.906614542007 +81 0.912146508694 0.853148937225 +26 0.930661559105 0.854026854038 +SURF 0x10 +mat 1 +refs 4 +84 0.917376279831 0.906614542007 +25 0.897846519947 0.906001329422 +1 0.893631458282 0.852271080017 +81 0.912146508694 0.853148937225 +SURF 0x10 +mat 1 +refs 3 +86 0.950661897659 0.863333582878 +29 0.938624203205 0.925343990326 +4 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +22 0.970191538334 0.863946735859 +86 0.950661897659 0.863333582878 +4 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +86 0.950661897659 0.863333582878 +33 0.93113219738 0.862720370293 +29 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +85 0.912324249744 0.867670655251 +2 0.897451877594 0.93243086338 +29 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +33 0.93113219738 0.862720370293 +85 0.912324249744 0.867670655251 +29 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +85 0.912324249744 0.867670655251 +24 0.893516302109 0.872620940208 +2 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 4 +24 0.893516302109 0.872620940208 +85 0.912324249744 0.867670655251 +78 0.906428277493 0.809070825577 +5 0.888730049133 0.814489841461 +SURF 0x10 +mat 1 +refs 4 +85 0.912324249744 0.867670655251 +33 0.93113219738 0.862720370293 +23 0.924126505852 0.803651869297 +78 0.906428277493 0.809070825577 +SURF 0x10 +mat 1 +refs 4 +33 0.93113219738 0.862720370293 +86 0.950661838055 0.863333523273 +79 0.942641437054 0.80452978611 +23 0.924126505852 0.803651869297 +SURF 0x10 +mat 1 +refs 4 +86 0.950661838055 0.863333523273 +22 0.970191538334 0.863946735859 +3 0.961156368256 0.805407702923 +79 0.942641437054 0.80452978611 +SURF 0x10 +mat 1 +refs 3 +88 0.979828953743 0.888259410858 +30 0.993191123009 0.930212914944 +9 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +27 0.974521994591 0.897327423096 +88 0.979828953743 0.888259410858 +9 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +88 0.979828953743 0.888259410858 +34 0.9851359725 0.879191398621 +30 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +87 0.977663755417 0.871569037437 +4 0.979443311691 0.923656105995 +30 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +34 0.9851359725 0.879191398621 +87 0.977663755417 0.871569037437 +30 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +87 0.977663755417 0.871569037437 +22 0.970191538334 0.863946735859 +4 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 4 +22 0.970191538334 0.863946735859 +87 0.977663755417 0.871569097042 +76 0.968417286873 0.814096212387 +3 0.961156368256 0.805407702923 +SURF 0x10 +mat 1 +refs 4 +87 0.977663755417 0.871569097042 +34 0.9851359725 0.879191398621 +21 0.975678145885 0.822784662247 +76 0.968417286873 0.814096212387 +SURF 0x10 +mat 1 +refs 4 +0 0.966057658195 0.843189001083 +77 0.970867872238 0.832986831665 +88 0.979828953743 0.888259410858 +27 0.974521994591 0.897327423096 +SURF 0x10 +mat 1 +refs 4 +77 0.970867872238 0.832986831665 +21 0.975678145885 0.822784662247 +34 0.9851359725 0.879191398621 +88 0.979828953743 0.888259410858 +SURF 0x10 +mat 1 +refs 3 +89 0.888209223747 0.881688833237 +31 0.88264465332 0.942071378231 +2 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +24 0.893516302109 0.872620940208 +89 0.888209223747 0.881688833237 +2 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +89 0.888209223747 0.881688833237 +35 0.882902145386 0.890756726265 +31 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +74 0.88637059927 0.843582570553 +25 0.897846519947 0.906001329422 +35 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 3 +20 0.879109799862 0.834894120693 +74 0.88637059927 0.843582570553 +35 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 3 +74 0.88637059927 0.843582570553 +1 0.893631458282 0.852271080017 +25 0.897846519947 0.906001329422 +SURF 0x10 +mat 1 +refs 4 +35 0.882902145386 0.890756726265 +89 0.888209223747 0.881688833237 +75 0.8839199543 0.82469201088 +20 0.879109799862 0.834894120693 +SURF 0x10 +mat 1 +refs 4 +89 0.888209223747 0.881688833237 +24 0.893516302109 0.872620940208 +5 0.888730049133 0.814489841461 +75 0.8839199543 0.82469201088 +SURF 0x10 +mat 1 +refs 3 +75 0.8839199543 0.82469201088 +17 0.893497467041 0.770574569702 +36 0.884772658348 0.783219873905 +SURF 0x10 +mat 1 +refs 3 +20 0.879109799862 0.834894120693 +75 0.8839199543 0.82469201088 +36 0.884772658348 0.783219873905 +SURF 0x10 +mat 1 +refs 3 +75 0.8839199543 0.82469201088 +5 0.888730049133 0.814489841461 +17 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 4 +36 0.884772658348 0.783219873905 +90 0.890604019165 0.788220107555 +74 0.886370658875 0.843582570553 +20 0.879109799862 0.834894120693 +SURF 0x10 +mat 1 +refs 4 +90 0.890604019165 0.788220107555 +19 0.896435379982 0.79322040081 +1 0.893631458282 0.852271080017 +74 0.886370658875 0.843582570553 +SURF 0x10 +mat 1 +refs 3 +90 0.890604019165 0.78822016716 +18 0.88720202446 0.738259613514 +10 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +19 0.896435379982 0.79322040081 +90 0.890604019165 0.78822016716 +10 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +90 0.890604019165 0.78822016716 +36 0.884772658348 0.783219873905 +18 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +73 0.895055711269 0.752427101135 +18 0.88720202446 0.738259613514 +36 0.884772658348 0.783219873905 +SURF 0x10 +mat 1 +refs 3 +17 0.893497467041 0.770574569702 +73 0.895055711269 0.752427101135 +36 0.884772658348 0.783219873905 +SURF 0x10 +mat 1 +refs 3 +73 0.895055711269 0.752427101135 +6 0.896613895893 0.734279572964 +18 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 4 +21 0.975678145885 0.822784662247 +77 0.970867872238 0.832986831665 +91 0.961960077286 0.778963446617 +37 0.966322541237 0.772640824318 +SURF 0x10 +mat 1 +refs 4 +77 0.970867872238 0.832986831665 +0 0.966057658195 0.843189001083 +14 0.957597613335 0.785286009312 +91 0.961960077286 0.778963446617 +SURF 0x10 +mat 1 +refs 3 +76 0.968417286873 0.814096212387 +37 0.966322541237 0.772640824318 +16 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 3 +3 0.961156368256 0.805407702923 +76 0.968417286873 0.814096212387 +16 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 3 +76 0.968417286873 0.814096212387 +21 0.975678145885 0.822784662247 +37 0.966322541237 0.772640824318 +SURF 0x10 +mat 1 +refs 3 +72 0.954943478107 0.744780242443 +37 0.966322541237 0.772640824318 +15 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +8 0.955227017403 0.726920366287 +72 0.954943478107 0.744780242443 +15 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +72 0.954943478107 0.744780242443 +16 0.954659938812 0.762640118599 +37 0.966322541237 0.772640824318 +SURF 0x10 +mat 1 +refs 3 +91 0.961960077286 0.778963446617 +11 0.955941557884 0.732427597046 +15 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +37 0.966322541237 0.772640824318 +91 0.961960077286 0.778963446617 +15 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +91 0.961960077286 0.778963446617 +14 0.957597613335 0.785286009312 +11 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +79 0.942641437054 0.80452978611 +16 0.954659938812 0.762640118599 +38 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 3 +23 0.924126505852 0.803651869297 +79 0.942641437054 0.80452978611 +38 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 3 +79 0.942641437054 0.80452978611 +3 0.961156368256 0.805407702923 +16 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 3 +78 0.906428277493 0.809070825577 +38 0.923588991165 0.762833058834 +17 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 3 +5 0.888730049133 0.814489841461 +78 0.906428277493 0.809070825577 +17 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 3 +78 0.906428277493 0.809070825577 +23 0.924126505852 0.803651869297 +38 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 4 +38 0.923588991165 0.762833058834 +92 0.924695193768 0.746257662773 +73 0.895055651665 0.752427101135 +17 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 4 +92 0.924695193768 0.746257662773 +13 0.92580139637 0.729682266712 +6 0.896613895893 0.734279572964 +73 0.895055651665 0.752427101135 +SURF 0x10 +mat 1 +refs 4 +13 0.92580139637 0.729682266712 +92 0.924695193768 0.746257662773 +72 0.954943478107 0.744780242443 +8 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 4 +92 0.924695193768 0.746257662773 +38 0.923588991165 0.762833058834 +16 0.954659938812 0.762640118599 +72 0.954943478107 0.744780242443 +SURF 0x10 +mat 1 +refs 4 +19 0.896435379982 0.79322040081 +94 0.911970734596 0.793123960495 +81 0.912146508694 0.853148937225 +1 0.893631458282 0.852271080017 +SURF 0x10 +mat 1 +refs 4 +94 0.911970734596 0.793123960495 +39 0.927506089211 0.793027460575 +26 0.930661559105 0.854026854038 +81 0.912146508694 0.853148937225 +SURF 0x10 +mat 1 +refs 4 +0 0.966057658195 0.843189001083 +80 0.94835960865 0.848607897758 +93 0.942551851273 0.789156734943 +14 0.957597613335 0.785286009312 +SURF 0x10 +mat 1 +refs 4 +80 0.94835960865 0.848607897758 +26 0.930661559105 0.854026854038 +39 0.927506089211 0.793027460575 +93 0.942551851273 0.789156734943 +SURF 0x10 +mat 1 +refs 3 +93 0.942551851273 0.789156794548 +12 0.926753878593 0.737024903297 +11 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +14 0.957597613335 0.785286009312 +93 0.942551851273 0.789156794548 +11 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +93 0.942551851273 0.789156794548 +39 0.927506089211 0.793027460575 +12 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +94 0.911970734596 0.793123960495 +10 0.897328317165 0.739786684513 +12 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +39 0.927506089211 0.793027460575 +94 0.911970734596 0.793123960495 +12 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +94 0.911970734596 0.793123960495 +19 0.896435379982 0.79322040081 +10 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +95 0.942551851273 0.789156734943 +40 0.926753878593 0.737024903297 +11 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +12 0.957597613335 0.785286009312 +95 0.942551851273 0.789156734943 +11 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +95 0.942551851273 0.789156734943 +41 0.927506089211 0.793027460575 +40 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +95 0.896881818771 0.766503512859 +10 0.926753878593 0.737024903297 +42 0.927506089211 0.793027460575 +SURF 0x10 +mat 1 +refs 3 +41 0.896435379982 0.79322040081 +95 0.896881818771 0.766503512859 +42 0.927506089211 0.793027460575 +SURF 0x10 +mat 1 +refs 3 +95 0.896881818771 0.766503512859 +12 0.897328317165 0.739786684513 +10 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 4 +13 0.893497467041 0.770574569702 +97 0.908543229103 0.76670384407 +96 0.911207675934 0.731980919838 +6 0.896613895893 0.734279572964 +SURF 0x10 +mat 1 +refs 4 +97 0.908543229103 0.76670384407 +44 0.923588991165 0.762833058834 +43 0.92580139637 0.729682266712 +96 0.911207675934 0.731980919838 +SURF 0x10 +mat 1 +refs 4 +8 0.92580139637 0.729682266712 +98 0.924695193768 0.746257662773 +97 0.954943478107 0.744780302048 +13 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 4 +98 0.924695193768 0.746257662773 +45 0.923588991165 0.762833058834 +44 0.954659938812 0.762640118599 +97 0.954943478107 0.744780302048 +SURF 0x10 +mat 1 +refs 4 +45 0.965353190899 0.728447496891 +98 0.960290074348 0.727683901787 +129 0.962714254856 0.734831571579 +99 0.965837836266 0.750544130802 +SURF 0x10 +mat 1 +refs 4 +46 0.966322541237 0.772640824318 +99 0.965837836266 0.750544130802 +129 0.962714254856 0.734831571579 +15 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 4 +15 0.954659938812 0.762640118599 +129 0.962714254856 0.734831571579 +98 0.960290074348 0.727683901787 +8 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 3 +100 0.961960077286 0.778963446617 +15 0.955941557884 0.732427597046 +11 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +40 0.966322541237 0.772640824318 +100 0.961960077286 0.778963446617 +11 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +100 0.961960077286 0.778963446617 +46 0.957597613335 0.785286009312 +15 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +101 0.885987341404 0.76073974371 +10 0.897328317165 0.739786684513 +18 0.896435379982 0.79322040081 +SURF 0x10 +mat 1 +refs 3 +47 0.884772658348 0.783219873905 +101 0.885987341404 0.76073974371 +18 0.896435379982 0.79322040081 +SURF 0x10 +mat 1 +refs 3 +101 0.885987341404 0.76073974371 +42 0.88720202446 0.738259613514 +10 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +43 0.884772658348 0.783219873905 +102 0.889135122299 0.776897192001 +130 0.887561202049 0.768818497658 +96 0.885987341404 0.76073974371 +SURF 0x10 +mat 1 +refs 4 +6 0.88720202446 0.738259613514 +96 0.885987341404 0.76073974371 +130 0.887561202049 0.768818497658 +18 0.896613895893 0.734279572964 +SURF 0x10 +mat 1 +refs 4 +18 0.896613895893 0.734279572964 +130 0.887561202049 0.768818497658 +102 0.889135122299 0.776897192001 +47 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 4 +49 0.927506089211 0.793027460575 +103 0.927129983902 0.765026211739 +131 0.934840917587 0.777091443539 +104 0.942551851273 0.789156734943 +SURF 0x10 +mat 1 +refs 4 +41 0.957597613335 0.785286009312 +104 0.942551851273 0.789156734943 +131 0.934840917587 0.777091443539 +40 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 4 +40 0.955941557884 0.732427597046 +131 0.934840917587 0.777091443539 +103 0.927129983902 0.765026211739 +48 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 4 +49 0.896435379982 0.79322040081 +104 0.896881818771 0.766503512859 +132 0.898883700371 0.77965337038 +105 0.911970734596 0.793123960495 +SURF 0x10 +mat 1 +refs 4 +50 0.927506089211 0.793027460575 +105 0.911970734596 0.793123960495 +132 0.898883700371 0.77965337038 +42 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 4 +42 0.926753878593 0.737024903297 +132 0.898883700371 0.77965337038 +104 0.896881818771 0.766503512859 +41 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +52 0.923588991165 0.762833058834 +106 0.924695193768 0.746257662773 +133 0.916619181633 0.756480693817 +107 0.908543229103 0.76670384407 +SURF 0x10 +mat 1 +refs 4 +44 0.893497467041 0.770574569702 +107 0.908543229103 0.76670384407 +133 0.916619181633 0.756480693817 +43 0.896613895893 0.734279572964 +SURF 0x10 +mat 1 +refs 4 +43 0.896613895893 0.734279572964 +133 0.916619181633 0.756480693817 +106 0.924695193768 0.746257662773 +51 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 4 +52 0.954659938812 0.762640118599 +107 0.954943478107 0.744780242443 +134 0.952576220036 0.753919005394 +108 0.939124464989 0.762736558914 +SURF 0x10 +mat 1 +refs 4 +53 0.923588991165 0.762833058834 +108 0.939124464989 0.762736558914 +134 0.952576220036 0.753919005394 +45 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 4 +45 0.92580139637 0.729682266712 +134 0.952576220036 0.753919005394 +107 0.954943478107 0.744780242443 +44 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 4 +54 0.966322541237 0.772640824318 +109 0.965837836266 0.750544190407 +99 0.954943478107 0.744780182838 +46 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 4 +109 0.965837836266 0.750544190407 +53 0.965353190899 0.728447496891 +45 0.955227017403 0.726920366287 +99 0.954943478107 0.744780182838 +SURF 0x10 +mat 1 +refs 4 +48 0.966322541237 0.772640824318 +110 0.961960077286 0.778963387012 +100 0.960647344589 0.730437517166 +40 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 4 +110 0.961960077286 0.778963387012 +54 0.957597613335 0.785286009312 +46 0.955941557884 0.732427597046 +100 0.960647344589 0.730437517166 +SURF 0x10 +mat 1 +refs 4 +55 0.884772658348 0.783219873905 +111 0.885987341404 0.76073974371 +101 0.896881818771 0.766503572464 +47 0.896435379982 0.79322040081 +SURF 0x10 +mat 1 +refs 4 +111 0.885987341404 0.76073974371 +50 0.88720202446 0.738259613514 +42 0.897328317165 0.739786684513 +101 0.896881818771 0.766503572464 +SURF 0x10 +mat 1 +refs 4 +51 0.884772658348 0.783219873905 +112 0.889135062695 0.776897192001 +102 0.891907930374 0.736269593239 +43 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 4 +112 0.889135062695 0.776897192001 +55 0.893497467041 0.770574569702 +47 0.896613895893 0.734279572964 +102 0.891907930374 0.736269593239 +SURF 0x10 +mat 1 +refs 3 +113 0.976912200451 0.918531000614 +9 0.937211632729 0.946940541267 +56 0.936906099319 0.907227694988 +SURF 0x10 +mat 1 +refs 3 +57 0.974521994591 0.897327423096 +113 0.976912200451 0.918531000614 +56 0.936906099319 0.907227694988 +SURF 0x10 +mat 1 +refs 3 +113 0.976912200451 0.918531000614 +28 0.979302406311 0.939734578133 +9 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 3 +113 0.917376279831 0.906614542007 +58 0.937211632729 0.946940541267 +7 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 3 +28 0.897846519947 0.906001329422 +113 0.917376279831 0.906614542007 +7 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 3 +113 0.917376279831 0.906614542007 +57 0.936906099319 0.907227694988 +58 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 3 +114 0.912324249744 0.867670655251 +29 0.897451877594 0.93243086338 +2 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +59 0.93113219738 0.862720370293 +114 0.912324249744 0.867670655251 +2 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +114 0.912324249744 0.867670655251 +60 0.893516302109 0.872620940208 +29 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +115 0.934878230095 0.894032180309 +4 0.979443311691 0.923656105995 +29 0.970191538334 0.863946735859 +SURF 0x10 +mat 1 +refs 3 +60 0.93113219738 0.862720370293 +115 0.934878230095 0.894032180309 +29 0.970191538334 0.863946735859 +SURF 0x10 +mat 1 +refs 3 +115 0.934878230095 0.894032180309 +61 0.938624203205 0.925343990326 +4 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +116 0.97481739521 0.893801391125 +4 0.993191123009 0.930212914944 +61 0.9851359725 0.879191398621 +SURF 0x10 +mat 1 +refs 3 +62 0.970191538334 0.863946735859 +116 0.97481739521 0.893801391125 +61 0.9851359725 0.879191398621 +SURF 0x10 +mat 1 +refs 3 +116 0.97481739521 0.893801391125 +30 0.979443311691 0.923656105995 +4 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +116 0.979828953743 0.888259410858 +56 0.993191123009 0.930212914944 +9 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +30 0.974521994591 0.897327423096 +116 0.979828953743 0.888259410858 +9 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +116 0.979828953743 0.888259410858 +62 0.9851359725 0.879191398621 +56 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +117 0.896660268307 0.927374362946 +7 0.88264465332 0.942071378231 +58 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 3 +63 0.897846519947 0.906001329422 +117 0.896660268307 0.927374362946 +58 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 3 +117 0.896660268307 0.927374362946 +31 0.895474016666 0.948747456074 +7 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +117 0.888209223747 0.881688833237 +59 0.88264465332 0.942071378231 +2 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +31 0.893516302109 0.872620940208 +117 0.888209223747 0.881688833237 +2 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +117 0.888209223747 0.881688833237 +63 0.882902145386 0.890756726265 +59 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 4 +64 0.974521994591 0.897327423096 +118 0.976912200451 0.918531000614 +135 0.97137260437 0.90867292881 +119 0.95571410656 0.902277588844 +SURF 0x10 +mat 1 +refs 4 +65 0.936906099319 0.907227694988 +119 0.95571410656 0.902277588844 +135 0.97137260437 0.90867292881 +56 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 4 +56 0.937211632729 0.946940541267 +135 0.97137260437 0.90867292881 +118 0.976912200451 0.918531000614 +57 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 4 +64 0.936906099319 0.907227694988 +120 0.937058806419 0.927084088326 +136 0.92721760273 0.916849315166 +118 0.917376279831 0.906614542007 +SURF 0x10 +mat 1 +refs 4 +57 0.897846519947 0.906001329422 +118 0.917376279831 0.906614542007 +136 0.92721760273 0.916849315166 +58 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +58 0.895474016666 0.948747456074 +136 0.92721760273 0.916849315166 +120 0.937058806419 0.927084088326 +66 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 4 +67 0.93113219738 0.862720370293 +121 0.91232419014 0.867670655251 +114 0.918038010597 0.928887426853 +59 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 4 +121 0.91232419014 0.867670655251 +68 0.893516302109 0.872620940208 +60 0.897451877594 0.93243086338 +114 0.918038010597 0.928887426853 +SURF 0x10 +mat 1 +refs 4 +68 0.93113219738 0.862720370293 +122 0.934878230095 0.894032180309 +115 0.97481739521 0.893801450729 +60 0.970191538334 0.863946735859 +SURF 0x10 +mat 1 +refs 4 +122 0.934878230095 0.894032180309 +69 0.938624203205 0.925343990326 +61 0.979443311691 0.923656105995 +115 0.97481739521 0.893801450729 +SURF 0x10 +mat 1 +refs 3 +123 0.977663755417 0.871569037437 +62 0.979443311691 0.923656105995 +61 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +69 0.9851359725 0.879191398621 +123 0.977663755417 0.871569037437 +61 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +123 0.977663755417 0.871569037437 +70 0.970191538334 0.863946735859 +62 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +124 0.989163517952 0.904702186584 +56 0.979302406311 0.939734578133 +62 0.974521994591 0.897327423096 +SURF 0x10 +mat 1 +refs 3 +70 0.9851359725 0.879191398621 +124 0.989163517952 0.904702186584 +62 0.974521994591 0.897327423096 +SURF 0x10 +mat 1 +refs 3 +124 0.989163517952 0.904702186584 +65 0.993191123009 0.930212914944 +56 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +125 0.890374302864 0.898379027843 +63 0.895474016666 0.948747456074 +58 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +66 0.882902145386 0.890756726265 +125 0.890374302864 0.898379027843 +58 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +125 0.890374302864 0.898379027843 +71 0.897846519947 0.906001329422 +63 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 3 +126 0.882773399353 0.916414022446 +59 0.897451877594 0.93243086338 +63 0.893516302109 0.872620940208 +SURF 0x10 +mat 1 +refs 3 +71 0.882902145386 0.890756726265 +126 0.882773399353 0.916414022446 +63 0.893516302109 0.872620940208 +SURF 0x10 +mat 1 +refs 3 +126 0.882773399353 0.916414022446 +67 0.88264465332 0.942071378231 +59 0.897451877594 0.93243086338 +kids 0 +OBJECT group +name "foot.R" +kids 2 +OBJECT poly +name "foot.R_0" +data 8 +Mesh.010 +crease 30 +numvert 8 +0.052417 -0.925896 -0.112168 +0.062492 -0.928482 -0.112524 +0.043167 -0.923712 -0.113084 +0.040325 -0.922984 -0.12194 +0.04365 -0.923712 -0.130617 +0.053009 -0.925896 -0.133271 +0.062996 -0.928482 -0.130057 +0.065838 -0.92921 -0.121201 +numsurf 6 +SURF 0x10 +mat 1 +refs 3 +6 0.0 1.0 +1 1.0 0.0 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +1 1.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +0 1.0 0.0 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +0 1.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +2 1.0 0.0 +0 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +3 0.0 1.0 +2 1.0 0.0 +4 0.0 0.0 +kids 0 +OBJECT poly +name "foot.R_1" +data 8 +Mesh.010 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 67 +-0.144363 -1.031304 -0.15051 +-0.139522 -1.005464 -0.146363 +-0.154366 -1.028069 -0.09657 +-0.027934 -0.979308 -0.075402 +0.105912 -1.035329 -0.164882 +-0.025303 -0.979308 -0.166253 +0.103018 -1.035329 -0.065483 +-0.094707 -1.043302 -0.064385 +-0.094135 -0.995431 -0.166335 +-0.091702 -1.038329 -0.168586 +-0.096657 -0.995431 -0.079303 +-0.145161 -1.004294 -0.093607 +0.094182 -0.984048 -0.071867 +0.021221 -0.997394 -0.061183 +-0.006047 -0.959333 -0.074769 +-0.043121 -0.973279 -0.121306 +-0.003415 -0.959333 -0.16562 +0.024664 -0.997394 -0.179961 +0.096814 -0.984048 -0.162719 +0.121945 -1.041686 -0.116476 +-0.001068 -1.038234 -0.172708 +-0.091824 -1.043755 -0.122664 +-0.003744 -1.043206 -0.079881 +-0.059566 -0.99243 -0.167245 +-0.090352 -1.010867 -0.180743 +-0.062176 -0.99243 -0.076394 +-0.096536 -0.990286 -0.122852 +-0.093708 -1.010867 -0.0647 +-0.140976 -1.043291 -0.07177 +-0.152763 -1.012608 -0.084991 +-0.124079 -0.99958 -0.08583 +-0.145761 -1.001575 -0.120924 +-0.116373 -0.99958 -0.155558 +-0.142298 -1.014869 -0.157978 +-0.138301 -1.038319 -0.163891 +-0.158179 -1.03472 -0.128121 +-0.155748 -1.014073 -0.124566 +-0.140961 -1.038763 -0.124087 +-0.154703 -1.018595 -0.134534 +-0.154623 -1.009552 -0.111122 +0.041874 -0.970649 -0.07002 +-0.020734 -0.955561 -0.120658 +0.045053 -0.970649 -0.179371 +0.111501 -0.98782 -0.11683 +0.007255 -1.042193 -0.119796 +-0.031139 -1.010767 -0.181577 +-0.070197 -0.986317 -0.122089 +-0.033212 -1.010767 -0.070639 +-0.128708 -1.012331 -0.073357 +-0.121571 -0.99533 -0.123577 +-0.120277 -1.012331 -0.168277 +0.076925 -0.950235 -0.091183 +0.045093 -0.942074 -0.090058 +0.015889 -0.935182 -0.092949 +0.006951 -0.932885 -0.120898 +0.01749 -0.935182 -0.148281 +0.047023 -0.942074 -0.156657 +0.078526 -0.950235 -0.146514 +0.087486 -0.952532 -0.118566 +0.052417 -0.925896 -0.112168 +0.062492 -0.928482 -0.112524 +0.043167 -0.923712 -0.113084 +0.040325 -0.922984 -0.12194 +0.04365 -0.923712 -0.130617 +0.053009 -0.925896 -0.133271 +0.062996 -0.928482 -0.130057 +0.065838 -0.92921 -0.121201 +numsurf 62 +SURF 0x10 +mat 1 +refs 4 +28 0.836045265198 0.0218145959079 +37 0.841997742653 0.0244237296283 +21 0.869592308998 0.0215475670993 +7 0.861349523067 0.02180859074 +SURF 0x10 +mat 1 +refs 4 +21 0.869592308998 0.0215475670993 +37 0.841997742653 0.0244237296283 +34 0.848012924194 0.0246799550951 +9 0.874886631966 0.0246737860143 +SURF 0x10 +mat 1 +refs 4 +35 0.832723975182 0.0267536006868 +0 0.843079447746 0.0287219695747 +34 0.848012924194 0.0246799550951 +37 0.841997742653 0.0244237296283 +SURF 0x10 +mat 1 +refs 4 +35 0.832723975182 0.0267536006868 +37 0.841997742653 0.0244237296283 +28 0.836045265198 0.0218145959079 +2 0.831303298473 0.0305859409273 +SURF 0x10 +mat 1 +refs 4 +36 0.833698570728 0.0386506579816 +38 0.835427165031 0.0360452793539 +35 0.832723975182 0.0267536006868 +2 0.831303298473 0.0305859409273 +SURF 0x10 +mat 1 +refs 4 +33 0.845082938671 0.0381920002401 +0 0.843079447746 0.0287219695747 +35 0.832723975182 0.0267536006868 +38 0.835427165031 0.0360452793539 +SURF 0x10 +mat 1 +refs 4 +33 0.845082938671 0.0381920002401 +38 0.835427165031 0.0360452793539 +36 0.833698570728 0.0386506579816 +1 0.845345437527 0.0436111353338 +SURF 0x10 +mat 1 +refs 4 +29 0.830885827541 0.0394947789609 +39 0.832803726196 0.0412559770048 +36 0.833698570728 0.0386506579816 +2 0.831303298473 0.0305859409273 +SURF 0x10 +mat 1 +refs 4 +36 0.833698570728 0.0386506579816 +39 0.832803726196 0.0412559770048 +31 0.838917315006 0.045851778239 +1 0.845345437527 0.0436111353338 +SURF 0x10 +mat 1 +refs 4 +31 0.838917315006 0.045851778239 +39 0.832803726196 0.0412559770048 +29 0.830885827541 0.0394947789609 +11 0.836167156696 0.0442851148546 +SURF 0x10 +mat 1 +refs 4 +12 0.96889591217 0.277134358883 +40 0.939147412777 0.284855306149 +13 0.926474273205 0.26944449544 +6 0.973175644875 0.247585937381 +SURF 0x10 +mat 1 +refs 4 +13 0.926474273205 0.26944449544 +40 0.939147412777 0.284855306149 +14 0.912610471249 0.291375726461 +3 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +14 0.912610471249 0.291375726461 +41 0.909520804882 0.293549329042 +15 0.896946251392 0.283339589834 +3 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +15 0.896946370602 0.0621564202011 +41 0.909520804882 0.0723661482334 +16 0.924413323402 0.070192605257 +5 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +16 0.924413323402 0.070192605257 +42 0.953353583813 0.0636721253395 +17 0.941905081272 0.0482613109052 +5 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +17 0.941905081272 0.0482613109052 +42 0.953353583813 0.0636721253395 +18 0.98069870472 0.0559511892498 +4 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +18 0.98069870472 0.0559511892498 +43 0.983788371086 0.0537776015699 +19 0.98964381218 0.0227397195995 +4 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +19 0.98964369297 0.243922904134 +43 0.983788251877 0.274960786104 +12 0.96889591217 0.277134358883 +6 0.973175644875 0.247585937381 +SURF 0x10 +mat 1 +refs 4 +22 0.914487481117 0.0218636058271 +44 0.925233006477 0.0224475823343 +19 0.98964381218 0.0227397195995 +6 0.973175704479 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +19 0.98964381218 0.0227397195995 +44 0.925233006477 0.0224475823343 +20 0.926546931267 0.0247289054096 +4 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +20 0.926546931267 0.0247289054096 +44 0.925233006477 0.0224475823343 +21 0.869592308998 0.0215475670993 +9 0.874886631966 0.0246737860143 +SURF 0x10 +mat 1 +refs 4 +21 0.869592308998 0.0215475670993 +44 0.925233006477 0.0224475823343 +22 0.914487481117 0.0218636058271 +7 0.861349523067 0.02180859074 +SURF 0x10 +mat 1 +refs 4 +20 0.926546931267 0.0247289054096 +45 0.910562634468 0.0405559055507 +17 0.941905081272 0.0482613109052 +4 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +17 0.941905081272 0.0482613109052 +45 0.910562634468 0.0405559055507 +23 0.892883181572 0.0511217676103 +5 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +23 0.892883181572 0.0511217676103 +45 0.910562634468 0.0405559055507 +24 0.877019882202 0.0404979847372 +8 0.873237669468 0.049392234534 +SURF 0x10 +mat 1 +refs 4 +24 0.877019882202 0.0404979847372 +45 0.910562634468 0.0405559055507 +20 0.926546931267 0.0247289054096 +9 0.874886631966 0.0246737860143 +SURF 0x10 +mat 1 +refs 4 +23 0.892883181572 0.0511217676103 +46 0.881744325161 0.0546436868608 +15 0.896946370602 0.0621564202011 +5 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +15 0.896946251392 0.283339589834 +46 0.881744265556 0.275826871395 +25 0.881080329418 0.272304952145 +3 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +25 0.881080329418 0.272304952145 +46 0.881744265556 0.275826871395 +26 0.86695176363 0.273540198803 +10 0.861931025982 0.270575404167 +SURF 0x10 +mat 1 +refs 4 +26 0.86695176363 0.0523569993675 +46 0.881744325161 0.0546436868608 +23 0.892883181572 0.0511217676103 +8 0.873237669468 0.049392234534 +SURF 0x10 +mat 1 +refs 4 +25 0.881080329418 0.272304952145 +47 0.896792948246 0.261739075184 +13 0.926474273205 0.26944449544 +3 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +13 0.926474273205 0.26944449544 +47 0.896792948246 0.261739075184 +22 0.914487481117 0.243046805263 +6 0.973175644875 0.247585937381 +SURF 0x10 +mat 1 +refs 4 +22 0.914487481117 0.243046805263 +47 0.896792948246 0.261739075184 +27 0.861944317818 0.261681169271 +7 0.861349403858 0.242991790175 +SURF 0x10 +mat 1 +refs 4 +27 0.861944317818 0.261681169271 +47 0.896792948246 0.261739075184 +25 0.881080329418 0.272304952145 +10 0.861931025982 0.270575404167 +SURF 0x10 +mat 1 +refs 4 +30 0.847181379795 0.268184661865 +48 0.843159377575 0.260837554932 +27 0.861944317818 0.261681169271 +10 0.861931025982 0.270575404167 +SURF 0x10 +mat 1 +refs 4 +27 0.861944317818 0.261681169271 +48 0.843159377575 0.260837554932 +28 0.836045205593 0.242997780442 +7 0.861349403858 0.242991790175 +SURF 0x10 +mat 1 +refs 4 +28 0.836045205593 0.242997780442 +48 0.843159377575 0.260837554932 +29 0.830885827541 0.260677963495 +2 0.831303238869 0.251769125462 +SURF 0x10 +mat 1 +refs 4 +29 0.830885827541 0.260677963495 +48 0.843159377575 0.260837554932 +30 0.847181379795 0.268184661865 +11 0.836167156696 0.265468299389 +SURF 0x10 +mat 1 +refs 4 +32 0.85945302248 0.0470014624298 +49 0.852885782719 0.0494504384696 +26 0.86695176363 0.0523569993675 +8 0.873237669468 0.049392234534 +SURF 0x10 +mat 1 +refs 4 +26 0.86695176363 0.273540198803 +49 0.852885723114 0.270633637905 +30 0.847181379795 0.268184661865 +10 0.861931025982 0.270575404167 +SURF 0x10 +mat 1 +refs 4 +30 0.847181379795 0.268184661865 +49 0.852885723114 0.270633637905 +31 0.838917255402 0.267034947872 +11 0.836167156696 0.265468299389 +SURF 0x10 +mat 1 +refs 4 +31 0.838917315006 0.045851778239 +49 0.852885782719 0.0494504384696 +32 0.85945302248 0.0470014624298 +1 0.845345437527 0.0436111353338 +SURF 0x10 +mat 1 +refs 4 +34 0.848012924194 0.0246799550951 +50 0.858703792095 0.0396543107927 +24 0.877019882202 0.0404979847372 +9 0.874886631966 0.0246737860143 +SURF 0x10 +mat 1 +refs 4 +24 0.877019882202 0.0404979847372 +50 0.858703792095 0.0396543107927 +32 0.85945302248 0.0470014624298 +8 0.873237669468 0.049392234534 +SURF 0x10 +mat 1 +refs 4 +32 0.85945302248 0.0470014624298 +50 0.858703792095 0.0396543107927 +33 0.845082938671 0.0381920002401 +1 0.845345437527 0.0436111353338 +SURF 0x10 +mat 1 +refs 4 +34 0.848012924194 0.0246799550951 +0 0.843079447746 0.0287219695747 +33 0.845082938671 0.0381920002401 +50 0.858703792095 0.0396543107927 +SURF 0x10 +mat 1 +refs 4 +12 0.96889591217 0.277134358883 +51 0.939147412777 0.284855306149 +52 0.926474273205 0.26944449544 +40 0.973175644875 0.247585937381 +SURF 0x10 +mat 1 +refs 4 +40 0.926474273205 0.26944449544 +52 0.939147412777 0.284855306149 +53 0.912610471249 0.291375726461 +14 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +14 0.912610471249 0.291375726461 +53 0.909520804882 0.293549329042 +54 0.896946251392 0.283339589834 +41 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +41 0.896946370602 0.0621564202011 +54 0.909520804882 0.0723661482334 +55 0.924413323402 0.070192605257 +16 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +16 0.924413323402 0.070192605257 +55 0.953353583813 0.0636721253395 +56 0.941905081272 0.0482613109052 +42 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +42 0.941905081272 0.0482613109052 +56 0.953353583813 0.0636721253395 +57 0.98069870472 0.0559511892498 +18 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +18 0.98069870472 0.0559511892498 +57 0.983788371086 0.0537776015699 +58 0.98964381218 0.0227397195995 +43 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +43 0.98964369297 0.243922904134 +58 0.983788251877 0.274960786104 +51 0.96889591217 0.277134358883 +12 0.973175644875 0.247585937381 +SURF 0x10 +mat 1 +refs 4 +51 0.96889591217 0.277134358883 +60 0.939147412777 0.284855306149 +59 0.926474273205 0.26944449544 +52 0.973175644875 0.247585937381 +SURF 0x10 +mat 1 +refs 4 +52 0.926474273205 0.26944449544 +59 0.939147412777 0.284855306149 +61 0.912610471249 0.291375726461 +53 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +53 0.912610471249 0.291375726461 +61 0.909520804882 0.293549329042 +62 0.896946251392 0.283339589834 +54 0.900317490101 0.279865831137 +SURF 0x10 +mat 1 +refs 4 +54 0.896946370602 0.0621564202011 +62 0.909520804882 0.0723661482334 +63 0.924413323402 0.070192605257 +55 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +55 0.924413323402 0.070192605257 +63 0.953353583813 0.0636721253395 +64 0.941905081272 0.0482613109052 +56 0.912120223045 0.0586826466024 +SURF 0x10 +mat 1 +refs 4 +56 0.941905081272 0.0482613109052 +64 0.953353583813 0.0636721253395 +65 0.98069870472 0.0559511892498 +57 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +57 0.98069870472 0.0559511892498 +65 0.983788371086 0.0537776015699 +66 0.98964381218 0.0227397195995 +58 0.986088812351 0.0264027528465 +SURF 0x10 +mat 1 +refs 4 +58 0.98964369297 0.243922904134 +66 0.983788251877 0.274960786104 +60 0.96889591217 0.277134358883 +51 0.973175644875 0.247585937381 +kids 0 +OBJECT group +name "foot.L" +kids 2 +OBJECT poly +name "foot.L_0" +data 8 +Mesh.005 +crease 30 +numvert 8 +0.052388 -0.925896 0.112172 +0.062479 -0.928482 0.112528 +0.043138 -0.923712 0.113088 +0.040303 -0.922984 0.121944 +0.043646 -0.923712 0.130621 +0.052999 -0.925896 0.133275 +0.062986 -0.928482 0.130061 +0.065822 -0.92921 0.121205 +numsurf 6 +SURF 0x10 +mat 1 +refs 3 +6 0.0 1.0 +7 0.0 0.0 +1 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +6 0.0 0.0 +1 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +1 0.0 0.0 +0 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +5 0.0 0.0 +0 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +0 0.0 0.0 +2 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +3 0.0 1.0 +4 0.0 0.0 +2 1.0 0.0 +kids 0 +OBJECT poly +name "foot.L_1" +data 8 +Mesh.005 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 67 +-0.144376 -1.031304 0.150514 +-0.139531 -1.005464 0.146367 +-0.154379 -1.028069 0.096574 +-0.027955 -0.979308 0.075406 +0.10589 -1.035329 0.164886 +-0.025325 -0.979308 0.166257 +0.103013 -1.035329 0.065487 +-0.094721 -1.043302 0.064389 +-0.094171 -0.995431 0.166339 +-0.091705 -1.038329 0.16859 +-0.09669 -0.995431 0.079307 +-0.145173 -1.004294 0.093611 +0.094153 -0.984048 0.071871 +0.021206 -0.997394 0.061187 +-0.006066 -0.959333 0.074772 +-0.04315 -0.973279 0.12131 +-0.003436 -0.959333 0.165624 +0.024645 -0.997394 0.179965 +0.096783 -0.984048 0.162723 +0.121914 -1.041686 0.11648 +-0.001084 -1.038234 0.172711 +-0.091845 -1.043755 0.122668 +-0.003771 -1.043206 0.079885 +-0.059578 -0.99243 0.167249 +-0.090372 -1.010867 0.180747 +-0.062207 -0.99243 0.076398 +-0.096557 -0.990286 0.122856 +-0.093731 -1.010867 0.064704 +-0.140999 -1.043291 0.071774 +-0.15279 -1.012608 0.084995 +-0.124112 -0.99958 0.085834 +-0.145796 -1.001575 0.120928 +-0.116406 -0.99958 0.155562 +-0.14233 -1.014869 0.157981 +-0.138332 -1.038319 0.163894 +-0.158206 -1.03472 0.128125 +-0.155766 -1.014073 0.12457 +-0.140979 -1.038763 0.12409 +-0.15471 -1.018595 0.134537 +-0.154648 -1.009552 0.111126 +0.041864 -0.970649 0.070024 +-0.02076 -0.955561 0.120661 +0.045029 -0.970649 0.179375 +0.111477 -0.98782 0.116834 +0.007226 -1.042193 0.1198 +-0.031162 -1.010767 0.181581 +-0.070218 -0.986317 0.122093 +-0.033236 -1.010767 0.070642 +-0.128725 -1.012331 0.073361 +-0.121602 -0.99533 0.123581 +-0.120289 -1.012331 0.168281 +0.076912 -0.950235 0.091186 +0.045066 -0.942074 0.090061 +0.015874 -0.935182 0.092953 +0.006925 -0.932885 0.120901 +0.017476 -0.935182 0.148285 +0.046994 -0.942074 0.15666 +0.078514 -0.950235 0.146518 +0.087463 -0.952532 0.11857 +0.052388 -0.925896 0.112172 +0.062479 -0.928482 0.112528 +0.043138 -0.923712 0.113088 +0.040303 -0.922984 0.121944 +0.043646 -0.923712 0.130621 +0.052999 -0.925896 0.133275 +0.062986 -0.928482 0.130061 +0.065822 -0.92921 0.121205 +numsurf 62 +SURF 0x10 +mat 1 +refs 4 +28 0.836045265198 0.0218145959079 +7 0.861349523067 0.02180859074 +21 0.869592308998 0.0215475670993 +37 0.841997742653 0.0244237296283 +SURF 0x10 +mat 1 +refs 4 +21 0.869592308998 0.0215475670993 +9 0.874886631966 0.0246737860143 +34 0.848012924194 0.0246799550951 +37 0.841997742653 0.0244237296283 +SURF 0x10 +mat 1 +refs 4 +34 0.848012924194 0.0246799550951 +0 0.843079447746 0.0287219695747 +35 0.832723975182 0.0267536006868 +37 0.841997742653 0.0244237296283 +SURF 0x10 +mat 1 +refs 4 +35 0.832723975182 0.0267536006868 +2 0.831303298473 0.0305859409273 +28 0.836045265198 0.0218145959079 +37 0.841997742653 0.0244237296283 +SURF 0x10 +mat 1 +refs 4 +36 0.833698570728 0.0386506579816 +2 0.831303298473 0.0305859409273 +35 0.832723975182 0.0267536006868 +38 0.835427165031 0.0360452793539 +SURF 0x10 +mat 1 +refs 4 +35 0.832723975182 0.0267536006868 +0 0.843079447746 0.0287219695747 +33 0.845082938671 0.0381920002401 +38 0.835427165031 0.0360452793539 +SURF 0x10 +mat 1 +refs 4 +33 0.845082938671 0.0381920002401 +1 0.845345437527 0.0436111353338 +36 0.833698570728 0.0386506579816 +38 0.835427165031 0.0360452793539 +SURF 0x10 +mat 1 +refs 4 +29 0.830885827541 0.0394947789609 +2 0.831303298473 0.0305859409273 +36 0.833698570728 0.0386506579816 +39 0.832803726196 0.0412559770048 +SURF 0x10 +mat 1 +refs 4 +36 0.833698570728 0.0386506579816 +1 0.845345437527 0.0436111353338 +31 0.838917315006 0.045851778239 +39 0.832803726196 0.0412559770048 +SURF 0x10 +mat 1 +refs 4 +31 0.838917315006 0.045851778239 +11 0.836167156696 0.0442851148546 +29 0.830885827541 0.0394947789609 +39 0.832803726196 0.0412559770048 +SURF 0x10 +mat 1 +refs 4 +12 0.96889591217 0.277134358883 +6 0.973175644875 0.247585937381 +13 0.926474273205 0.26944449544 +40 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +13 0.926474273205 0.26944449544 +3 0.900317490101 0.279865831137 +14 0.912610471249 0.291375726461 +40 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +14 0.912610471249 0.291375726461 +3 0.900317490101 0.279865831137 +15 0.896946251392 0.283339589834 +41 0.909520804882 0.293549329042 +SURF 0x10 +mat 1 +refs 4 +15 0.896946370602 0.0621564202011 +5 0.912120223045 0.0586826466024 +16 0.924413323402 0.070192605257 +41 0.909520804882 0.0723661482334 +SURF 0x10 +mat 1 +refs 4 +16 0.924413323402 0.070192605257 +5 0.912120223045 0.0586826466024 +17 0.941905081272 0.0482613109052 +42 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +17 0.941905081272 0.0482613109052 +4 0.986088812351 0.0264027528465 +18 0.98069870472 0.0559511892498 +42 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +18 0.98069870472 0.0559511892498 +4 0.986088812351 0.0264027528465 +19 0.98964381218 0.0227397195995 +43 0.983788371086 0.0537776015699 +SURF 0x10 +mat 1 +refs 4 +19 0.98964369297 0.243922904134 +6 0.973175644875 0.247585937381 +12 0.96889591217 0.277134358883 +43 0.983788251877 0.274960786104 +SURF 0x10 +mat 1 +refs 4 +22 0.914487481117 0.0218636058271 +6 0.973175704479 0.0264027528465 +19 0.98964381218 0.0227397195995 +44 0.925233006477 0.0224475823343 +SURF 0x10 +mat 1 +refs 4 +19 0.98964381218 0.0227397195995 +4 0.986088812351 0.0264027528465 +20 0.926546931267 0.0247289054096 +44 0.925233006477 0.0224475823343 +SURF 0x10 +mat 1 +refs 4 +20 0.926546931267 0.0247289054096 +9 0.874886631966 0.0246737860143 +21 0.869592308998 0.0215475670993 +44 0.925233006477 0.0224475823343 +SURF 0x10 +mat 1 +refs 4 +21 0.869592308998 0.0215475670993 +7 0.861349523067 0.02180859074 +22 0.914487481117 0.0218636058271 +44 0.925233006477 0.0224475823343 +SURF 0x10 +mat 1 +refs 4 +20 0.926546931267 0.0247289054096 +4 0.986088812351 0.0264027528465 +17 0.941905081272 0.0482613109052 +45 0.910562634468 0.0405559055507 +SURF 0x10 +mat 1 +refs 4 +17 0.941905081272 0.0482613109052 +5 0.912120223045 0.0586826466024 +23 0.892883181572 0.0511217676103 +45 0.910562634468 0.0405559055507 +SURF 0x10 +mat 1 +refs 4 +23 0.892883181572 0.0511217676103 +8 0.873237669468 0.049392234534 +24 0.877019882202 0.0404979847372 +45 0.910562634468 0.0405559055507 +SURF 0x10 +mat 1 +refs 4 +24 0.877019882202 0.0404979847372 +9 0.874886631966 0.0246737860143 +20 0.926546931267 0.0247289054096 +45 0.910562634468 0.0405559055507 +SURF 0x10 +mat 1 +refs 4 +23 0.892883181572 0.0511217676103 +5 0.912120223045 0.0586826466024 +15 0.896946370602 0.0621564202011 +46 0.881744325161 0.0546436868608 +SURF 0x10 +mat 1 +refs 4 +15 0.896946251392 0.283339589834 +3 0.900317490101 0.279865831137 +25 0.881080329418 0.272304952145 +46 0.881744265556 0.275826871395 +SURF 0x10 +mat 1 +refs 4 +25 0.881080329418 0.272304952145 +10 0.861931025982 0.270575404167 +26 0.86695176363 0.273540198803 +46 0.881744265556 0.275826871395 +SURF 0x10 +mat 1 +refs 4 +26 0.86695176363 0.0523569993675 +8 0.873237669468 0.049392234534 +23 0.892883181572 0.0511217676103 +46 0.881744325161 0.0546436868608 +SURF 0x10 +mat 1 +refs 4 +25 0.881080329418 0.272304952145 +3 0.900317490101 0.279865831137 +13 0.926474273205 0.26944449544 +47 0.896792948246 0.261739075184 +SURF 0x10 +mat 1 +refs 4 +13 0.926474273205 0.26944449544 +6 0.973175644875 0.247585937381 +22 0.914487481117 0.243046805263 +47 0.896792948246 0.261739075184 +SURF 0x10 +mat 1 +refs 4 +22 0.914487481117 0.243046805263 +7 0.861349403858 0.242991790175 +27 0.861944317818 0.261681169271 +47 0.896792948246 0.261739075184 +SURF 0x10 +mat 1 +refs 4 +27 0.861944317818 0.261681169271 +10 0.861931025982 0.270575404167 +25 0.881080329418 0.272304952145 +47 0.896792948246 0.261739075184 +SURF 0x10 +mat 1 +refs 4 +30 0.847181379795 0.268184661865 +10 0.861931025982 0.270575404167 +27 0.861944317818 0.261681169271 +48 0.843159377575 0.260837554932 +SURF 0x10 +mat 1 +refs 4 +27 0.861944317818 0.261681169271 +7 0.861349403858 0.242991790175 +28 0.836045205593 0.242997780442 +48 0.843159377575 0.260837554932 +SURF 0x10 +mat 1 +refs 4 +28 0.836045205593 0.242997780442 +2 0.831303238869 0.251769125462 +29 0.830885827541 0.260677963495 +48 0.843159377575 0.260837554932 +SURF 0x10 +mat 1 +refs 4 +29 0.830885827541 0.260677963495 +11 0.836167156696 0.265468299389 +30 0.847181379795 0.268184661865 +48 0.843159377575 0.260837554932 +SURF 0x10 +mat 1 +refs 4 +32 0.85945302248 0.0470014624298 +8 0.873237669468 0.049392234534 +26 0.86695176363 0.0523569993675 +49 0.852885782719 0.0494504384696 +SURF 0x10 +mat 1 +refs 4 +26 0.86695176363 0.273540198803 +10 0.861931025982 0.270575404167 +30 0.847181379795 0.268184661865 +49 0.852885723114 0.270633637905 +SURF 0x10 +mat 1 +refs 4 +30 0.847181379795 0.268184661865 +11 0.836167156696 0.265468299389 +31 0.838917255402 0.267034947872 +49 0.852885723114 0.270633637905 +SURF 0x10 +mat 1 +refs 4 +31 0.838917315006 0.045851778239 +1 0.845345437527 0.0436111353338 +32 0.85945302248 0.0470014624298 +49 0.852885782719 0.0494504384696 +SURF 0x10 +mat 1 +refs 4 +34 0.848012924194 0.0246799550951 +9 0.874886631966 0.0246737860143 +24 0.877019882202 0.0404979847372 +50 0.858703792095 0.0396543107927 +SURF 0x10 +mat 1 +refs 4 +24 0.877019882202 0.0404979847372 +8 0.873237669468 0.049392234534 +32 0.85945302248 0.0470014624298 +50 0.858703792095 0.0396543107927 +SURF 0x10 +mat 1 +refs 4 +32 0.85945302248 0.0470014624298 +1 0.845345437527 0.0436111353338 +33 0.845082938671 0.0381920002401 +50 0.858703792095 0.0396543107927 +SURF 0x10 +mat 1 +refs 4 +33 0.845082938671 0.0381920002401 +0 0.843079447746 0.0287219695747 +34 0.848012924194 0.0246799550951 +50 0.858703792095 0.0396543107927 +SURF 0x10 +mat 1 +refs 4 +12 0.96889591217 0.277134358883 +40 0.973175644875 0.247585937381 +52 0.926474273205 0.26944449544 +51 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +40 0.926474273205 0.26944449544 +14 0.900317490101 0.279865831137 +53 0.912610471249 0.291375726461 +52 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +14 0.912610471249 0.291375726461 +41 0.900317490101 0.279865831137 +54 0.896946251392 0.283339589834 +53 0.909520804882 0.293549329042 +SURF 0x10 +mat 1 +refs 4 +41 0.896946370602 0.0621564202011 +16 0.912120223045 0.0586826466024 +55 0.924413323402 0.070192605257 +54 0.909520804882 0.0723661482334 +SURF 0x10 +mat 1 +refs 4 +16 0.924413323402 0.070192605257 +42 0.912120223045 0.0586826466024 +56 0.941905081272 0.0482613109052 +55 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +42 0.941905081272 0.0482613109052 +18 0.986088812351 0.0264027528465 +57 0.98069870472 0.0559511892498 +56 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +18 0.98069870472 0.0559511892498 +43 0.986088812351 0.0264027528465 +58 0.98964381218 0.0227397195995 +57 0.983788371086 0.0537776015699 +SURF 0x10 +mat 1 +refs 4 +43 0.98964369297 0.243922904134 +12 0.973175644875 0.247585937381 +51 0.96889591217 0.277134358883 +58 0.983788251877 0.274960786104 +SURF 0x10 +mat 1 +refs 4 +51 0.96889591217 0.277134358883 +52 0.973175644875 0.247585937381 +59 0.926474273205 0.26944449544 +60 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +52 0.926474273205 0.26944449544 +53 0.900317490101 0.279865831137 +61 0.912610471249 0.291375726461 +59 0.939147412777 0.284855306149 +SURF 0x10 +mat 1 +refs 4 +53 0.912610471249 0.291375726461 +54 0.900317490101 0.279865831137 +62 0.896946251392 0.283339589834 +61 0.909520804882 0.293549329042 +SURF 0x10 +mat 1 +refs 4 +54 0.896946370602 0.0621564202011 +55 0.912120223045 0.0586826466024 +63 0.924413323402 0.070192605257 +62 0.909520804882 0.0723661482334 +SURF 0x10 +mat 1 +refs 4 +55 0.924413323402 0.070192605257 +56 0.912120223045 0.0586826466024 +64 0.941905081272 0.0482613109052 +63 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +56 0.941905081272 0.0482613109052 +57 0.986088812351 0.0264027528465 +65 0.98069870472 0.0559511892498 +64 0.953353583813 0.0636721253395 +SURF 0x10 +mat 1 +refs 4 +57 0.98069870472 0.0559511892498 +58 0.986088812351 0.0264027528465 +66 0.98964381218 0.0227397195995 +65 0.983788371086 0.0537776015699 +SURF 0x10 +mat 1 +refs 4 +58 0.98964369297 0.243922904134 +51 0.973175644875 0.247585937381 +60 0.96889591217 0.277134358883 +66 0.983788251877 0.274960786104 +kids 0 +OBJECT group +name "arm1.L" +kids 2 +OBJECT poly +name "arm1.L_0" +data 8 +Mesh.002 +crease 30 +numvert 42 +0.005807 0.443116 0.567231 +-0.002661 0.440214 0.567015 +-0.011129 0.443116 0.567301 +-0.01113 0.460529 0.568804 +-0.002662 0.463432 0.56902 +0.005807 0.460529 0.568734 +0.008652 0.451823 0.567971 +-0.013974 0.451823 0.568064 +-0.015255 0.429113 0.187661 +0.000161 0.433942 0.188005 +-0.030281 0.434875 0.188628 +-0.028828 0.466291 0.192582 +-0.013737 0.471479 0.192906 +0.000964 0.466074 0.191918 +0.005589 0.449913 0.189854 +-0.034559 0.450679 0.190713 +0.001573 0.441665 0.567123 +-0.006895 0.441665 0.567158 +-0.006896 0.461981 0.568912 +0.001573 0.461981 0.568877 +0.007218 0.456176 0.568352 +0.007219 0.447469 0.5676 +-0.012563 0.447469 0.567683 +-0.012563 0.456176 0.568434 +-0.002661 0.460529 0.568769 +-0.004073 0.456176 0.568399 +-0.002661 0.451823 0.568017 +-0.00125 0.447469 0.567636 +-0.002661 0.443116 0.567266 +-0.007547 0.431528 0.187833 +-0.022768 0.431994 0.188144 +-0.021271 0.468885 0.192744 +-0.006397 0.468777 0.192412 +0.003266 0.457994 0.190886 +0.002875 0.441928 0.18893 +-0.032431 0.442777 0.18967 +-0.031693 0.458485 0.191648 +-0.013932 0.466183 0.19225 +-0.016798 0.458377 0.191315 +-0.014496 0.450296 0.190283 +-0.012346 0.442394 0.189241 +-0.01506 0.434409 0.188316 +numsurf 48 +SURF 0x10 +mat 1 +refs 3 +19 0.0 0.5 +24 0.500000059605 0.5 +5 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +24 0.500000059605 0.5 +19 0.0 0.5 +18 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +18 0.5 0.0 +19 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +18 0.5 0.0 +3 1.0 0.0 +24 0.500000059605 0.5 +SURF 0x10 +mat 1 +refs 3 +24 0.0 0.499999970198 +25 0.5 0.5 +5 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +25 0.5 0.5 +24 0.0 0.499999970198 +23 0.5 7.45058059692e-09 +SURF 0x10 +mat 1 +refs 3 +3 0.0 0.0 +23 0.5 7.45058059692e-09 +24 0.0 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +23 0.5 7.45058059692e-09 +7 1.0 0.0 +25 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +20 0.0 0.5 +26 0.5 0.5 +6 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +26 0.5 0.5 +20 0.0 0.5 +25 0.499999970198 2.98023223877e-08 +SURF 0x10 +mat 1 +refs 3 +5 0.0 0.0 +25 0.499999970198 2.98023223877e-08 +20 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +25 0.499999970198 2.98023223877e-08 +7 1.0 0.0 +26 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +26 0.0 0.5 +27 0.5 0.500000059605 +6 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +27 0.5 0.500000059605 +26 0.0 0.5 +22 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +7 0.0 0.0 +22 0.5 0.0 +26 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +22 0.5 0.0 +2 1.0 0.0 +27 0.5 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +21 0.0 0.499999970198 +28 0.5 0.499999940395 +0 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +28 0.5 0.499999940395 +21 0.0 0.499999970198 +27 0.499999970198 0.0 +SURF 0x10 +mat 1 +refs 3 +6 0.0 0.0 +27 0.499999970198 0.0 +21 0.0 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +27 0.499999970198 0.0 +2 1.0 0.0 +28 0.5 0.499999940395 +SURF 0x10 +mat 1 +refs 3 +28 0.0 0.5 +16 0.5 0.5 +0 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +16 0.5 0.5 +28 0.0 0.5 +17 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +2 0.0 0.0 +17 0.5 0.0 +28 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +17 0.5 0.0 +1 1.0 0.0 +16 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +32 -2.98023223877e-08 0.5 +37 0.499999970198 0.5 +13 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +37 0.499999970198 0.5 +32 -2.98023223877e-08 0.5 +31 0.5 1.49011611938e-08 +SURF 0x10 +mat 1 +refs 3 +12 0.0 0.0 +31 0.5 1.49011611938e-08 +32 -2.98023223877e-08 0.5 +SURF 0x10 +mat 1 +refs 3 +31 0.5 1.49011611938e-08 +11 1.0 0.0 +37 0.499999970198 0.5 +SURF 0x10 +mat 1 +refs 3 +37 4.65661287308e-10 0.499999970198 +38 0.5 0.499999970198 +13 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +38 0.5 0.499999970198 +37 4.65661287308e-10 0.499999970198 +36 0.499999970198 -7.45058059692e-09 +SURF 0x10 +mat 1 +refs 3 +11 0.0 0.0 +36 0.499999970198 -7.45058059692e-09 +37 4.65661287308e-10 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +36 0.499999970198 -7.45058059692e-09 +15 1.0 0.0 +38 0.5 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +33 -3.72529029846e-09 0.5 +39 0.500000059605 0.499999970198 +14 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +39 0.500000059605 0.499999970198 +33 -3.72529029846e-09 0.5 +38 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 0.0 +38 0.5 0.0 +33 -3.72529029846e-09 0.5 +SURF 0x10 +mat 1 +refs 3 +38 0.5 0.0 +15 1.0 0.0 +39 0.500000059605 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +39 0.0 0.499999970198 +40 0.5 0.499999970198 +14 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +40 0.5 0.499999970198 +39 0.0 0.499999970198 +35 0.499999970198 0.0 +SURF 0x10 +mat 1 +refs 3 +15 0.0 0.0 +35 0.499999970198 0.0 +39 0.0 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +35 0.499999970198 0.0 +10 1.0 0.0 +40 0.5 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +34 7.45058059692e-09 0.5 +41 0.5 0.5 +9 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +41 0.5 0.5 +34 7.45058059692e-09 0.5 +40 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.0 0.0 +40 0.5 0.0 +34 7.45058059692e-09 0.5 +SURF 0x10 +mat 1 +refs 3 +40 0.5 0.0 +10 1.0 0.0 +41 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +41 7.45058059692e-09 0.5 +29 0.5 0.5 +9 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +29 0.5 0.5 +41 7.45058059692e-09 0.5 +30 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +10 0.0 0.0 +30 0.5 0.0 +41 7.45058059692e-09 0.5 +SURF 0x10 +mat 1 +refs 3 +30 0.5 0.0 +8 1.0 0.0 +29 0.5 0.5 +kids 0 +OBJECT poly +name "arm1.L_1" +data 8 +Mesh.002 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 137 +0.044251 0.390932 0.37966 +-0.06321 0.390932 0.380149 +-0.072839 0.508725 0.262409 +0.044256 0.498076 0.435742 +0.048519 0.507996 0.259657 +-0.063205 0.498076 0.436231 +-0.039673 0.492638 0.534015 +-0.078826 0.381843 0.238966 +0.034305 0.492638 0.533709 +0.045247 0.378194 0.236213 +-0.039671 0.416662 0.527455 +0.034307 0.416662 0.527148 +-0.002671 0.403999 0.526208 +-0.002674 0.5053 0.534956 +0.04288 0.404396 0.465791 +0.046639 0.45465 0.530377 +0.042892 0.493723 0.499406 +-0.047893 0.493723 0.499432 +-0.051984 0.45465 0.530786 +-0.047905 0.404396 0.465817 +-0.081089 0.444504 0.408271 +0.062156 0.444504 0.40762 +0.046344 0.505785 0.348574 +-0.009466 0.515933 0.445334 +-0.067241 0.505785 0.350465 +-0.067248 0.385707 0.300915 +-0.009488 0.373075 0.370558 +0.046336 0.385707 0.299025 +-0.01757 0.358628 0.233682 +-0.01139 0.529751 0.26494 +0.067326 0.44273 0.247476 +-0.096308 0.445649 0.251147 +-0.010464 0.365694 0.291712 +-0.010462 0.525798 0.357778 +0.065242 0.445746 0.323484 +-0.08619 0.445746 0.326005 +-0.063022 0.449059 0.482629 +0.04211 0.449059 0.498191 +-0.002513 0.508611 0.505022 +-0.002522 0.389508 0.460201 +0.025354 0.425867 0.551803 +-0.002678 0.416273 0.551091 +-0.030711 0.425867 0.552035 +-0.03069 0.483432 0.557006 +-0.002658 0.493026 0.557718 +0.025374 0.483432 0.556774 +0.03469 0.45465 0.55425 +-0.040048 0.45465 0.554559 +0.005807 0.443116 0.567231 +-0.002661 0.440214 0.567015 +-0.011129 0.443116 0.567301 +-0.01113 0.460529 0.568804 +-0.002662 0.463432 0.56902 +0.005807 0.460529 0.568734 +0.008652 0.451823 0.567971 +-0.013974 0.451823 0.568064 +0.021002 0.412724 0.203084 +-0.016323 0.401026 0.20225 +-0.052738 0.414981 0.204593 +-0.049179 0.491073 0.214171 +-0.012657 0.503636 0.214955 +0.022932 0.490547 0.212562 +0.034138 0.451403 0.207563 +-0.063118 0.453259 0.209642 +-0.015255 0.429113 0.187661 +0.000161 0.433942 0.188005 +-0.030281 0.434875 0.188628 +-0.028828 0.466291 0.192582 +-0.013737 0.471479 0.192906 +0.000964 0.466074 0.191918 +0.005589 0.449913 0.189854 +-0.034559 0.450679 0.190713 +0.031096 0.49318 0.518501 +-0.044511 0.49318 0.518665 +-0.07216 0.417718 0.39421 +-0.072147 0.47129 0.422251 +0.053206 0.47129 0.421681 +0.053193 0.417718 0.39364 +-0.036346 0.507005 0.440782 +0.017395 0.507005 0.440538 +0.017392 0.382003 0.375109 +-0.036349 0.382003 0.375353 +-0.014017 0.362161 0.262697 +0.017936 0.375701 0.295368 +-0.038845 0.375701 0.296313 +-0.03884 0.515792 0.354121 +0.017941 0.515792 0.353176 +0.055793 0.475766 0.336029 +0.055778 0.415727 0.311255 +-0.076704 0.475766 0.338235 +-0.055485 0.426727 0.474223 +0.050434 0.426727 0.474193 +-0.006708 0.506955 0.521378 +0.02019 0.396952 0.462996 +-0.025213 0.396952 0.463009 +-0.002675 0.410136 0.538649 +-0.035182 0.488035 0.545511 +-0.002677 0.499163 0.546337 +0.029829 0.488035 0.545241 +0.030021 0.469041 0.555512 +0.030022 0.440259 0.553026 +-0.035379 0.440259 0.553297 +-0.03538 0.469041 0.555783 +0.001573 0.441665 0.567123 +-0.002659 0.428243 0.559053 +-0.006895 0.441665 0.567158 +-0.006896 0.461981 0.568912 +-0.00266 0.478229 0.563369 +0.001573 0.461981 0.568877 +0.007218 0.456176 0.568352 +0.007219 0.447469 0.5676 +-0.012563 0.447469 0.567683 +-0.012563 0.456176 0.568434 +-0.016936 0.379827 0.217966 +-0.030918 0.497355 0.214563 +0.005127 0.497092 0.213759 +0.050743 0.447067 0.22752 +-0.079713 0.449454 0.230394 +-0.015778 0.41507 0.194955 +-0.007547 0.431528 0.187833 +-0.022768 0.431994 0.188144 +-0.021271 0.468885 0.192744 +-0.006397 0.468777 0.192412 +0.003266 0.457994 0.190886 +0.002875 0.441928 0.18893 +-0.032431 0.442777 0.18967 +-0.031693 0.458485 0.191648 +-0.026442 0.368931 0.279505 +0.001959 0.368931 0.279033 +0.029914 0.478538 0.550376 +-0.03527 0.478538 0.550647 +-0.000554 0.434954 0.563088 +-0.004788 0.434954 0.563105 +-0.004789 0.470105 0.566141 +-0.000533 0.470105 0.566123 +-0.011673 0.423299 0.191394 +-0.019273 0.423532 0.19155 +numsurf 169 +SURF 0x10 +mat 1 +refs 4 +31 0.88264465332 0.942071378231 +7 0.895474016666 0.948747456074 +25 0.897846519947 0.906001329422 +35 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 4 +32 0.936906099319 0.907227694988 +84 0.917376279831 0.906614542007 +127 0.92721760273 0.916849315166 +82 0.937058866024 0.927084088326 +SURF 0x10 +mat 1 +refs 4 +25 0.897846519947 0.906001329422 +7 0.895474016666 0.948747456074 +127 0.92721760273 0.916849315166 +84 0.917376279831 0.906614542007 +SURF 0x10 +mat 1 +refs 4 +7 0.895474016666 0.948747456074 +28 0.937211632729 0.946940541267 +82 0.937058866024 0.927084088326 +127 0.92721760273 0.916849315166 +SURF 0x10 +mat 1 +refs 4 +32 0.936906099319 0.907227694988 +82 0.937058866024 0.927084088326 +128 0.94638645649 0.914680838585 +83 0.95571398735 0.90227752924 +SURF 0x10 +mat 1 +refs 4 +28 0.937211632729 0.946940541267 +9 0.979302406311 0.939734578133 +128 0.94638645649 0.914680838585 +82 0.937058866024 0.927084088326 +SURF 0x10 +mat 1 +refs 4 +9 0.979302406311 0.939734578133 +27 0.974521994591 0.897327423096 +83 0.95571398735 0.90227752924 +128 0.94638645649 0.914680838585 +SURF 0x10 +mat 1 +refs 4 +26 0.930661559105 0.854026854038 +32 0.936906099319 0.907227694988 +83 0.955714046955 0.902277588844 +80 0.94835960865 0.848607897758 +SURF 0x10 +mat 1 +refs 4 +27 0.974521994591 0.897327423096 +0 0.966057658195 0.843189001083 +80 0.94835960865 0.848607897758 +83 0.955714046955 0.902277588844 +SURF 0x10 +mat 1 +refs 4 +32 0.936906099319 0.907227694988 +26 0.930661559105 0.854026854038 +81 0.912146508694 0.853148937225 +84 0.917376279831 0.906614542007 +SURF 0x10 +mat 1 +refs 4 +84 0.917376279831 0.906614542007 +81 0.912146508694 0.853148937225 +1 0.893631458282 0.852271080017 +25 0.897846519947 0.906001329422 +SURF 0x10 +mat 1 +refs 3 +86 0.950661897659 0.863333582878 +4 0.979443311691 0.923656105995 +29 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +22 0.970191538334 0.863946735859 +4 0.979443311691 0.923656105995 +86 0.950661897659 0.863333582878 +SURF 0x10 +mat 1 +refs 3 +86 0.950661897659 0.863333582878 +29 0.938624203205 0.925343990326 +33 0.93113219738 0.862720370293 +SURF 0x10 +mat 1 +refs 3 +85 0.912324249744 0.867670655251 +29 0.938624203205 0.925343990326 +2 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +33 0.93113219738 0.862720370293 +29 0.938624203205 0.925343990326 +85 0.912324249744 0.867670655251 +SURF 0x10 +mat 1 +refs 3 +85 0.912324249744 0.867670655251 +2 0.897451877594 0.93243086338 +24 0.893516302109 0.872620940208 +SURF 0x10 +mat 1 +refs 4 +24 0.893516302109 0.872620940208 +5 0.888730049133 0.814489841461 +78 0.906428277493 0.809070825577 +85 0.912324249744 0.867670655251 +SURF 0x10 +mat 1 +refs 4 +85 0.912324249744 0.867670655251 +78 0.906428277493 0.809070825577 +23 0.924126505852 0.803651869297 +33 0.93113219738 0.862720370293 +SURF 0x10 +mat 1 +refs 4 +33 0.93113219738 0.862720370293 +23 0.924126505852 0.803651869297 +79 0.942641437054 0.80452978611 +86 0.950661838055 0.863333523273 +SURF 0x10 +mat 1 +refs 4 +86 0.950661838055 0.863333523273 +79 0.942641437054 0.80452978611 +3 0.961156368256 0.805407702923 +22 0.970191538334 0.863946735859 +SURF 0x10 +mat 1 +refs 3 +88 0.979828953743 0.888259410858 +9 0.979302406311 0.939734578133 +30 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +27 0.974521994591 0.897327423096 +9 0.979302406311 0.939734578133 +88 0.979828953743 0.888259410858 +SURF 0x10 +mat 1 +refs 3 +88 0.979828953743 0.888259410858 +30 0.993191123009 0.930212914944 +34 0.9851359725 0.879191398621 +SURF 0x10 +mat 1 +refs 3 +87 0.977663755417 0.871569037437 +30 0.993191123009 0.930212914944 +4 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +34 0.9851359725 0.879191398621 +30 0.993191123009 0.930212914944 +87 0.977663755417 0.871569037437 +SURF 0x10 +mat 1 +refs 3 +87 0.977663755417 0.871569037437 +4 0.979443311691 0.923656105995 +22 0.970191538334 0.863946735859 +SURF 0x10 +mat 1 +refs 4 +22 0.970191538334 0.863946735859 +3 0.961156368256 0.805407702923 +76 0.968417286873 0.814096212387 +87 0.977663755417 0.871569097042 +SURF 0x10 +mat 1 +refs 4 +87 0.977663755417 0.871569097042 +76 0.968417286873 0.814096212387 +21 0.975678145885 0.822784662247 +34 0.9851359725 0.879191398621 +SURF 0x10 +mat 1 +refs 4 +0 0.966057658195 0.843189001083 +27 0.974521994591 0.897327423096 +88 0.979828953743 0.888259410858 +77 0.970867872238 0.832986831665 +SURF 0x10 +mat 1 +refs 4 +77 0.970867872238 0.832986831665 +88 0.979828953743 0.888259410858 +34 0.9851359725 0.879191398621 +21 0.975678145885 0.822784662247 +SURF 0x10 +mat 1 +refs 3 +89 0.888209223747 0.881688833237 +2 0.897451877594 0.93243086338 +31 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +24 0.893516302109 0.872620940208 +2 0.897451877594 0.93243086338 +89 0.888209223747 0.881688833237 +SURF 0x10 +mat 1 +refs 3 +89 0.888209223747 0.881688833237 +31 0.88264465332 0.942071378231 +35 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 3 +74 0.88637059927 0.843582570553 +35 0.882902145386 0.890756726265 +25 0.897846519947 0.906001329422 +SURF 0x10 +mat 1 +refs 3 +20 0.879109799862 0.834894120693 +35 0.882902145386 0.890756726265 +74 0.88637059927 0.843582570553 +SURF 0x10 +mat 1 +refs 3 +74 0.88637059927 0.843582570553 +25 0.897846519947 0.906001329422 +1 0.893631458282 0.852271080017 +SURF 0x10 +mat 1 +refs 4 +35 0.882902145386 0.890756726265 +20 0.879109799862 0.834894120693 +75 0.8839199543 0.82469201088 +89 0.888209223747 0.881688833237 +SURF 0x10 +mat 1 +refs 4 +89 0.888209223747 0.881688833237 +75 0.8839199543 0.82469201088 +5 0.888730049133 0.814489841461 +24 0.893516302109 0.872620940208 +SURF 0x10 +mat 1 +refs 3 +75 0.8839199543 0.82469201088 +36 0.884772658348 0.783219873905 +17 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 3 +20 0.879109799862 0.834894120693 +36 0.884772658348 0.783219873905 +75 0.8839199543 0.82469201088 +SURF 0x10 +mat 1 +refs 3 +75 0.8839199543 0.82469201088 +17 0.893497467041 0.770574569702 +5 0.888730049133 0.814489841461 +SURF 0x10 +mat 1 +refs 4 +36 0.884772658348 0.783219873905 +20 0.879109799862 0.834894120693 +74 0.886370658875 0.843582570553 +90 0.890604019165 0.788220107555 +SURF 0x10 +mat 1 +refs 4 +90 0.890604019165 0.788220107555 +74 0.886370658875 0.843582570553 +1 0.893631458282 0.852271080017 +19 0.896435379982 0.79322040081 +SURF 0x10 +mat 1 +refs 3 +90 0.890604019165 0.78822016716 +10 0.897328317165 0.739786684513 +18 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +19 0.896435379982 0.79322040081 +10 0.897328317165 0.739786684513 +90 0.890604019165 0.78822016716 +SURF 0x10 +mat 1 +refs 3 +90 0.890604019165 0.78822016716 +18 0.88720202446 0.738259613514 +36 0.884772658348 0.783219873905 +SURF 0x10 +mat 1 +refs 3 +73 0.895055711269 0.752427101135 +36 0.884772658348 0.783219873905 +18 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +17 0.893497467041 0.770574569702 +36 0.884772658348 0.783219873905 +73 0.895055711269 0.752427101135 +SURF 0x10 +mat 1 +refs 3 +73 0.895055711269 0.752427101135 +18 0.88720202446 0.738259613514 +6 0.896613895893 0.734279572964 +SURF 0x10 +mat 1 +refs 4 +21 0.975678145885 0.822784662247 +37 0.966322541237 0.772640824318 +91 0.961960077286 0.778963446617 +77 0.970867872238 0.832986831665 +SURF 0x10 +mat 1 +refs 4 +14 0.957597613335 0.785286009312 +0 0.966057658195 0.843189001083 +77 0.970867872238 0.832986831665 +91 0.961960077286 0.778963446617 +SURF 0x10 +mat 1 +refs 3 +76 0.968417286873 0.814096212387 +16 0.954659938812 0.762640118599 +37 0.966322541237 0.772640824318 +SURF 0x10 +mat 1 +refs 3 +3 0.961156368256 0.805407702923 +16 0.954659938812 0.762640118599 +76 0.968417286873 0.814096212387 +SURF 0x10 +mat 1 +refs 3 +76 0.968417286873 0.814096212387 +37 0.966322541237 0.772640824318 +21 0.975678145885 0.822784662247 +SURF 0x10 +mat 1 +refs 3 +72 0.954943478107 0.744780242443 +15 0.965353190899 0.728447496891 +37 0.966322541237 0.772640824318 +SURF 0x10 +mat 1 +refs 3 +8 0.955227017403 0.726920366287 +15 0.965353190899 0.728447496891 +72 0.954943478107 0.744780242443 +SURF 0x10 +mat 1 +refs 3 +72 0.954943478107 0.744780242443 +37 0.966322541237 0.772640824318 +16 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 3 +91 0.961960077286 0.778963446617 +15 0.965353190899 0.728447496891 +11 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +37 0.966322541237 0.772640824318 +15 0.965353190899 0.728447496891 +91 0.961960077286 0.778963446617 +SURF 0x10 +mat 1 +refs 3 +91 0.961960077286 0.778963446617 +11 0.955941557884 0.732427597046 +14 0.957597613335 0.785286009312 +SURF 0x10 +mat 1 +refs 3 +79 0.942641437054 0.80452978611 +38 0.923588991165 0.762833058834 +16 0.954659938812 0.762640118599 +SURF 0x10 +mat 1 +refs 3 +23 0.924126505852 0.803651869297 +38 0.923588991165 0.762833058834 +79 0.942641437054 0.80452978611 +SURF 0x10 +mat 1 +refs 3 +79 0.942641437054 0.80452978611 +16 0.954659938812 0.762640118599 +3 0.961156368256 0.805407702923 +SURF 0x10 +mat 1 +refs 3 +78 0.906428277493 0.809070825577 +17 0.893497467041 0.770574569702 +38 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 3 +5 0.888730049133 0.814489841461 +17 0.893497467041 0.770574569702 +78 0.906428277493 0.809070825577 +SURF 0x10 +mat 1 +refs 3 +78 0.906428277493 0.809070825577 +38 0.923588991165 0.762833058834 +23 0.924126505852 0.803651869297 +SURF 0x10 +mat 1 +refs 4 +38 0.923588991165 0.762833058834 +17 0.893497467041 0.770574569702 +73 0.895055651665 0.752427101135 +92 0.924695193768 0.746257662773 +SURF 0x10 +mat 1 +refs 4 +92 0.924695193768 0.746257662773 +73 0.895055651665 0.752427101135 +6 0.896613895893 0.734279572964 +13 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 4 +13 0.92580139637 0.729682266712 +8 0.955227017403 0.726920366287 +72 0.954943478107 0.744780242443 +92 0.924695193768 0.746257662773 +SURF 0x10 +mat 1 +refs 4 +92 0.924695193768 0.746257662773 +72 0.954943478107 0.744780242443 +16 0.954659938812 0.762640118599 +38 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 4 +19 0.896435379982 0.79322040081 +1 0.893631458282 0.852271080017 +81 0.912146508694 0.853148937225 +94 0.911970734596 0.793123960495 +SURF 0x10 +mat 1 +refs 4 +94 0.911970734596 0.793123960495 +81 0.912146508694 0.853148937225 +26 0.930661559105 0.854026854038 +39 0.927506089211 0.793027460575 +SURF 0x10 +mat 1 +refs 4 +0 0.966057658195 0.843189001083 +14 0.957597613335 0.785286009312 +93 0.942551851273 0.789156734943 +80 0.94835960865 0.848607897758 +SURF 0x10 +mat 1 +refs 4 +80 0.94835960865 0.848607897758 +93 0.942551851273 0.789156734943 +39 0.927506089211 0.793027460575 +26 0.930661559105 0.854026854038 +SURF 0x10 +mat 1 +refs 3 +93 0.942551851273 0.789156794548 +11 0.955941557884 0.732427597046 +12 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +14 0.957597613335 0.785286009312 +11 0.955941557884 0.732427597046 +93 0.942551851273 0.789156794548 +SURF 0x10 +mat 1 +refs 3 +93 0.942551851273 0.789156794548 +12 0.926753878593 0.737024903297 +39 0.927506089211 0.793027460575 +SURF 0x10 +mat 1 +refs 3 +94 0.911970734596 0.793123960495 +12 0.926753878593 0.737024903297 +10 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +39 0.927506089211 0.793027460575 +12 0.926753878593 0.737024903297 +94 0.911970734596 0.793123960495 +SURF 0x10 +mat 1 +refs 3 +94 0.911970734596 0.793123960495 +10 0.897328317165 0.739786684513 +19 0.896435379982 0.79322040081 +SURF 0x10 +mat 1 +refs 3 +95 0.942551851273 0.789156734943 +11 0.955941557884 0.732427597046 +40 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +12 0.957597613335 0.785286009312 +11 0.955941557884 0.732427597046 +95 0.942551851273 0.789156734943 +SURF 0x10 +mat 1 +refs 3 +95 0.942551851273 0.789156734943 +40 0.926753878593 0.737024903297 +41 0.927506089211 0.793027460575 +SURF 0x10 +mat 1 +refs 3 +95 0.896881818771 0.766503512859 +42 0.927506089211 0.793027460575 +10 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +41 0.896435379982 0.79322040081 +42 0.927506089211 0.793027460575 +95 0.896881818771 0.766503512859 +SURF 0x10 +mat 1 +refs 3 +95 0.896881818771 0.766503512859 +10 0.926753878593 0.737024903297 +12 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 4 +13 0.893497467041 0.770574569702 +6 0.896613895893 0.734279572964 +96 0.911207675934 0.731980919838 +97 0.908543229103 0.76670384407 +SURF 0x10 +mat 1 +refs 4 +97 0.908543229103 0.76670384407 +96 0.911207675934 0.731980919838 +43 0.92580139637 0.729682266712 +44 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 4 +8 0.92580139637 0.729682266712 +13 0.955227017403 0.726920366287 +97 0.954943478107 0.744780302048 +98 0.924695193768 0.746257662773 +SURF 0x10 +mat 1 +refs 4 +98 0.924695193768 0.746257662773 +97 0.954943478107 0.744780302048 +44 0.954659938812 0.762640118599 +45 0.923588991165 0.762833058834 +SURF 0x10 +mat 1 +refs 4 +45 0.965353190899 0.728447496891 +99 0.965837836266 0.750544130802 +129 0.962714254856 0.734831571579 +98 0.960290074348 0.727683901787 +SURF 0x10 +mat 1 +refs 4 +46 0.966322541237 0.772640824318 +15 0.954659938812 0.762640118599 +129 0.962714254856 0.734831571579 +99 0.965837836266 0.750544130802 +SURF 0x10 +mat 1 +refs 4 +15 0.954659938812 0.762640118599 +8 0.955227017403 0.726920366287 +98 0.960290074348 0.727683901787 +129 0.962714254856 0.734831571579 +SURF 0x10 +mat 1 +refs 3 +100 0.961960077286 0.778963446617 +11 0.965353190899 0.728447496891 +15 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +40 0.966322541237 0.772640824318 +11 0.965353190899 0.728447496891 +100 0.961960077286 0.778963446617 +SURF 0x10 +mat 1 +refs 3 +100 0.961960077286 0.778963446617 +15 0.955941557884 0.732427597046 +46 0.957597613335 0.785286009312 +SURF 0x10 +mat 1 +refs 3 +101 0.885987341404 0.76073974371 +18 0.896435379982 0.79322040081 +10 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +47 0.884772658348 0.783219873905 +18 0.896435379982 0.79322040081 +101 0.885987341404 0.76073974371 +SURF 0x10 +mat 1 +refs 3 +101 0.885987341404 0.76073974371 +10 0.897328317165 0.739786684513 +42 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 4 +43 0.884772658348 0.783219873905 +96 0.885987341404 0.76073974371 +130 0.887561202049 0.768818497658 +102 0.889135122299 0.776897192001 +SURF 0x10 +mat 1 +refs 4 +6 0.88720202446 0.738259613514 +18 0.896613895893 0.734279572964 +130 0.887561202049 0.768818497658 +96 0.885987341404 0.76073974371 +SURF 0x10 +mat 1 +refs 4 +18 0.896613895893 0.734279572964 +47 0.893497467041 0.770574569702 +102 0.889135122299 0.776897192001 +130 0.887561202049 0.768818497658 +SURF 0x10 +mat 1 +refs 4 +49 0.927506089211 0.793027460575 +104 0.942551851273 0.789156734943 +131 0.934840917587 0.777091443539 +103 0.927129983902 0.765026211739 +SURF 0x10 +mat 1 +refs 4 +41 0.957597613335 0.785286009312 +40 0.955941557884 0.732427597046 +131 0.934840917587 0.777091443539 +104 0.942551851273 0.789156734943 +SURF 0x10 +mat 1 +refs 4 +40 0.955941557884 0.732427597046 +48 0.926753878593 0.737024903297 +103 0.927129983902 0.765026211739 +131 0.934840917587 0.777091443539 +SURF 0x10 +mat 1 +refs 4 +49 0.896435379982 0.79322040081 +105 0.911970734596 0.793123960495 +132 0.898883700371 0.77965337038 +104 0.896881818771 0.766503512859 +SURF 0x10 +mat 1 +refs 4 +50 0.927506089211 0.793027460575 +42 0.926753878593 0.737024903297 +132 0.898883700371 0.77965337038 +105 0.911970734596 0.793123960495 +SURF 0x10 +mat 1 +refs 4 +42 0.926753878593 0.737024903297 +41 0.897328317165 0.739786684513 +104 0.896881818771 0.766503512859 +132 0.898883700371 0.77965337038 +SURF 0x10 +mat 1 +refs 4 +52 0.923588991165 0.762833058834 +107 0.908543229103 0.76670384407 +133 0.916619181633 0.756480693817 +106 0.924695193768 0.746257662773 +SURF 0x10 +mat 1 +refs 4 +44 0.893497467041 0.770574569702 +43 0.896613895893 0.734279572964 +133 0.916619181633 0.756480693817 +107 0.908543229103 0.76670384407 +SURF 0x10 +mat 1 +refs 4 +43 0.896613895893 0.734279572964 +51 0.92580139637 0.729682266712 +106 0.924695193768 0.746257662773 +133 0.916619181633 0.756480693817 +SURF 0x10 +mat 1 +refs 4 +52 0.954659938812 0.762640118599 +108 0.939124464989 0.762736558914 +134 0.952576220036 0.753919005394 +107 0.954943478107 0.744780242443 +SURF 0x10 +mat 1 +refs 4 +53 0.923588991165 0.762833058834 +45 0.92580139637 0.729682266712 +134 0.952576220036 0.753919005394 +108 0.939124464989 0.762736558914 +SURF 0x10 +mat 1 +refs 4 +45 0.92580139637 0.729682266712 +44 0.955227017403 0.726920366287 +107 0.954943478107 0.744780242443 +134 0.952576220036 0.753919005394 +SURF 0x10 +mat 1 +refs 4 +54 0.966322541237 0.772640824318 +46 0.954659938812 0.762640118599 +99 0.954943478107 0.744780182838 +109 0.965837836266 0.750544190407 +SURF 0x10 +mat 1 +refs 4 +109 0.965837836266 0.750544190407 +99 0.954943478107 0.744780182838 +45 0.955227017403 0.726920366287 +53 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 4 +48 0.966322541237 0.772640824318 +40 0.965353190899 0.728447496891 +100 0.960647344589 0.730437517166 +110 0.961960077286 0.778963387012 +SURF 0x10 +mat 1 +refs 4 +110 0.961960077286 0.778963387012 +100 0.960647344589 0.730437517166 +46 0.955941557884 0.732427597046 +54 0.957597613335 0.785286009312 +SURF 0x10 +mat 1 +refs 4 +55 0.884772658348 0.783219873905 +47 0.896435379982 0.79322040081 +101 0.896881818771 0.766503572464 +111 0.885987341404 0.76073974371 +SURF 0x10 +mat 1 +refs 4 +111 0.885987341404 0.76073974371 +101 0.896881818771 0.766503572464 +42 0.897328317165 0.739786684513 +50 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 4 +51 0.884772658348 0.783219873905 +43 0.88720202446 0.738259613514 +102 0.891907930374 0.736269593239 +112 0.889135062695 0.776897192001 +SURF 0x10 +mat 1 +refs 4 +112 0.889135062695 0.776897192001 +102 0.891907930374 0.736269593239 +47 0.896613895893 0.734279572964 +55 0.893497467041 0.770574569702 +SURF 0x10 +mat 1 +refs 3 +113 0.976912200451 0.918531000614 +56 0.936906099319 0.907227694988 +9 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 3 +57 0.974521994591 0.897327423096 +56 0.936906099319 0.907227694988 +113 0.976912200451 0.918531000614 +SURF 0x10 +mat 1 +refs 3 +113 0.976912200451 0.918531000614 +9 0.937211632729 0.946940541267 +28 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +113 0.917376279831 0.906614542007 +7 0.895474016666 0.948747456074 +58 0.937211632729 0.946940541267 +SURF 0x10 +mat 1 +refs 3 +28 0.897846519947 0.906001329422 +7 0.895474016666 0.948747456074 +113 0.917376279831 0.906614542007 +SURF 0x10 +mat 1 +refs 3 +113 0.917376279831 0.906614542007 +58 0.937211632729 0.946940541267 +57 0.936906099319 0.907227694988 +SURF 0x10 +mat 1 +refs 3 +114 0.912324249744 0.867670655251 +2 0.938624203205 0.925343990326 +29 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +59 0.93113219738 0.862720370293 +2 0.938624203205 0.925343990326 +114 0.912324249744 0.867670655251 +SURF 0x10 +mat 1 +refs 3 +114 0.912324249744 0.867670655251 +29 0.897451877594 0.93243086338 +60 0.893516302109 0.872620940208 +SURF 0x10 +mat 1 +refs 3 +115 0.934878230095 0.894032180309 +29 0.970191538334 0.863946735859 +4 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +60 0.93113219738 0.862720370293 +29 0.970191538334 0.863946735859 +115 0.934878230095 0.894032180309 +SURF 0x10 +mat 1 +refs 3 +115 0.934878230095 0.894032180309 +4 0.979443311691 0.923656105995 +61 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +116 0.97481739521 0.893801391125 +61 0.9851359725 0.879191398621 +4 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +62 0.970191538334 0.863946735859 +61 0.9851359725 0.879191398621 +116 0.97481739521 0.893801391125 +SURF 0x10 +mat 1 +refs 3 +116 0.97481739521 0.893801391125 +4 0.993191123009 0.930212914944 +30 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +116 0.979828953743 0.888259410858 +9 0.979302406311 0.939734578133 +56 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +30 0.974521994591 0.897327423096 +9 0.979302406311 0.939734578133 +116 0.979828953743 0.888259410858 +SURF 0x10 +mat 1 +refs 3 +116 0.979828953743 0.888259410858 +56 0.993191123009 0.930212914944 +62 0.9851359725 0.879191398621 +SURF 0x10 +mat 1 +refs 3 +117 0.896660268307 0.927374362946 +58 0.882902145386 0.890756726265 +7 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +63 0.897846519947 0.906001329422 +58 0.882902145386 0.890756726265 +117 0.896660268307 0.927374362946 +SURF 0x10 +mat 1 +refs 3 +117 0.896660268307 0.927374362946 +7 0.88264465332 0.942071378231 +31 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 3 +117 0.888209223747 0.881688833237 +2 0.897451877594 0.93243086338 +59 0.88264465332 0.942071378231 +SURF 0x10 +mat 1 +refs 3 +31 0.893516302109 0.872620940208 +2 0.897451877594 0.93243086338 +117 0.888209223747 0.881688833237 +SURF 0x10 +mat 1 +refs 3 +117 0.888209223747 0.881688833237 +59 0.88264465332 0.942071378231 +63 0.882902145386 0.890756726265 +SURF 0x10 +mat 1 +refs 4 +64 0.974521994591 0.897327423096 +119 0.95571410656 0.902277588844 +135 0.97137260437 0.90867292881 +118 0.976912200451 0.918531000614 +SURF 0x10 +mat 1 +refs 4 +65 0.936906099319 0.907227694988 +56 0.937211632729 0.946940541267 +135 0.97137260437 0.90867292881 +119 0.95571410656 0.902277588844 +SURF 0x10 +mat 1 +refs 4 +56 0.937211632729 0.946940541267 +57 0.979302406311 0.939734578133 +118 0.976912200451 0.918531000614 +135 0.97137260437 0.90867292881 +SURF 0x10 +mat 1 +refs 4 +64 0.936906099319 0.907227694988 +118 0.917376279831 0.906614542007 +136 0.92721760273 0.916849315166 +120 0.937058806419 0.927084088326 +SURF 0x10 +mat 1 +refs 4 +57 0.897846519947 0.906001329422 +58 0.895474016666 0.948747456074 +136 0.92721760273 0.916849315166 +118 0.917376279831 0.906614542007 +SURF 0x10 +mat 1 +refs 4 +58 0.895474016666 0.948747456074 +66 0.937211632729 0.946940541267 +120 0.937058806419 0.927084088326 +136 0.92721760273 0.916849315166 +SURF 0x10 +mat 1 +refs 4 +67 0.93113219738 0.862720370293 +59 0.938624203205 0.925343990326 +114 0.918038010597 0.928887426853 +121 0.91232419014 0.867670655251 +SURF 0x10 +mat 1 +refs 4 +121 0.91232419014 0.867670655251 +114 0.918038010597 0.928887426853 +60 0.897451877594 0.93243086338 +68 0.893516302109 0.872620940208 +SURF 0x10 +mat 1 +refs 4 +68 0.93113219738 0.862720370293 +60 0.970191538334 0.863946735859 +115 0.97481739521 0.893801450729 +122 0.934878230095 0.894032180309 +SURF 0x10 +mat 1 +refs 4 +122 0.934878230095 0.894032180309 +115 0.97481739521 0.893801450729 +61 0.979443311691 0.923656105995 +69 0.938624203205 0.925343990326 +SURF 0x10 +mat 1 +refs 3 +123 0.977663755417 0.871569037437 +61 0.993191123009 0.930212914944 +62 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 3 +69 0.9851359725 0.879191398621 +61 0.993191123009 0.930212914944 +123 0.977663755417 0.871569037437 +SURF 0x10 +mat 1 +refs 3 +123 0.977663755417 0.871569037437 +62 0.979443311691 0.923656105995 +70 0.970191538334 0.863946735859 +SURF 0x10 +mat 1 +refs 3 +124 0.989163517952 0.904702186584 +62 0.974521994591 0.897327423096 +56 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 3 +70 0.9851359725 0.879191398621 +62 0.974521994591 0.897327423096 +124 0.989163517952 0.904702186584 +SURF 0x10 +mat 1 +refs 3 +124 0.989163517952 0.904702186584 +56 0.979302406311 0.939734578133 +65 0.993191123009 0.930212914944 +SURF 0x10 +mat 1 +refs 3 +125 0.890374302864 0.898379027843 +58 0.88264465332 0.942071378231 +63 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 3 +66 0.882902145386 0.890756726265 +58 0.88264465332 0.942071378231 +125 0.890374302864 0.898379027843 +SURF 0x10 +mat 1 +refs 3 +125 0.890374302864 0.898379027843 +63 0.895474016666 0.948747456074 +71 0.897846519947 0.906001329422 +SURF 0x10 +mat 1 +refs 3 +126 0.882773399353 0.916414022446 +63 0.893516302109 0.872620940208 +59 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 3 +71 0.882902145386 0.890756726265 +63 0.893516302109 0.872620940208 +126 0.882773399353 0.916414022446 +SURF 0x10 +mat 1 +refs 3 +126 0.882773399353 0.916414022446 +59 0.897451877594 0.93243086338 +67 0.88264465332 0.942071378231 +kids 0 +OBJECT group +name "torso" +kids 2 +OBJECT poly +name "torso_0" +data 4 +Mesh +crease 30 +numvert 24 +0.03557 0.608212 0.009358 +0.02818 0.608327 0.013493 +0.017649 0.608088 0.010644 +0.040131 0.608738 4.9e-05 +0.035576 0.608212 -0.009246 +0.015824 0.608345 4.2e-05 +0.017655 0.608088 -0.010542 +0.028188 0.608327 -0.013385 +0.001556 0.440572 0.275781 +-0.010505 0.436815 0.275388 +-0.02227 0.441272 0.276192 +-0.021123 0.465636 0.279783 +-0.009325 0.469673 0.280177 +0.002179 0.465495 0.279373 +0.005794 0.452964 0.277509 +-0.025624 0.453524 0.278056 +-0.025435 0.453524 -0.291811 +0.005982 0.452964 -0.291248 +0.002368 0.465495 -0.293114 +-0.009137 0.469673 -0.293923 +-0.020935 0.465636 -0.293536 +-0.022083 0.441272 -0.289945 +-0.010319 0.436815 -0.289135 +0.001744 0.440572 -0.289523 +numsurf 18 +SURF 0x10 +mat 1 +refs 3 +0 0.0 1.0 +3 0.0 0.0 +4 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +1 0.0 1.0 +0 0.0 0.0 +4 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +1 0.0 1.0 +4 0.0 0.0 +7 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +1 0.0 1.0 +7 0.0 0.0 +6 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +2 0.0 1.0 +1 0.0 0.0 +6 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +2 0.0 1.0 +6 0.0 0.0 +5 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +12 0.0 0.0 +11 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +13 0.0 1.0 +11 0.0 0.0 +15 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.0 1.0 +13 0.0 0.0 +15 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +14 0.0 1.0 +15 0.0 0.0 +10 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +8 0.0 1.0 +14 0.0 0.0 +10 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +8 0.0 1.0 +10 0.0 0.0 +9 1.0 0.0 +SURF 0x10 +mat 1 +refs 3 +23 0.0 1.0 +22 1.0 0.0 +21 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +23 0.0 1.0 +21 1.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +17 0.0 1.0 +21 1.0 0.0 +16 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +17 0.0 1.0 +16 1.0 0.0 +18 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +18 0.0 1.0 +16 1.0 0.0 +20 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +18 0.0 1.0 +20 1.0 0.0 +19 0.0 0.0 +kids 0 +OBJECT poly +name "torso_1" +data 4 +Mesh +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 148 +0.073413 0.317101 0.169205 +-0.11545 0.342076 0.169397 +0.094188 0.512365 0.130758 +-0.074629 0.517778 0.130316 +-0.030458 0.532857 0.072422 +-0.063662 0.498541 0.242431 +0.048106 0.497869 0.240398 +-0.069162 0.381682 0.224655 +0.045118 0.378322 0.222623 +0.076717 0.240164 0.136275 +-0.012729 0.360301 0.220677 +-0.019261 0.31058 0.201428 +-0.007071 0.517905 0.244377 +0.059574 0.364467 0.217176 +0.065449 0.437759 0.231172 +0.071679 0.502623 0.209927 +-0.070162 0.50534 0.211369 +-0.085249 0.440447 0.233882 +-0.09242 0.378051 0.218615 +0.099529 0.408844 0.1437 +-0.112041 0.425654 0.144147 +-0.153407 0.33856 8e-06 +0.014926 0.530678 0.184739 +0.093485 0.529293 0.10417 +0.032835 0.54563 0.107508 +-0.055928 0.5282 0.099563 +-0.102642 0.244317 0.136224 +0.085463 0.546935 0.057824 +-0.012805 0.562802 0.051845 +0.059165 0.594074 0.036059 +-0.010176 0.593596 0.041034 +0.036324 0.554869 0.072631 +0.022391 0.537803 0.13776 +0.030571 0.59452 0.05206 +-0.105777 0.443054 0.215232 +0.090113 0.432187 0.213311 +0.003622 0.526101 0.20944 +-0.019287 0.349139 0.219104 +-0.012977 0.242241 0.186905 +0.089474 0.594262 0.080997 +0.03458 0.606397 0.090069 +0.002061 0.603135 0.081246 +-0.037745 0.59607 0.076827 +-0.037701 0.59607 -0.07674 +0.002107 0.603135 -0.081136 +0.034631 0.606397 -0.089941 +0.117684 0.57685 6.6e-05 +0.08952 0.594262 -0.080837 +0.126306 0.315369 4.4e-05 +-0.01287 0.242241 -0.186807 +-0.126186 0.240817 -1e-06 +0.105337 0.23978 4.1e-05 +0.076813 0.596111 4.3e-05 +-0.017235 0.594588 1.6e-05 +0.030601 0.59452 -0.051939 +0.13351 0.506356 9.2e-05 +0.101858 0.535049 8e-05 +-0.079594 0.525426 1.7e-05 +-0.029168 0.565446 2.5e-05 +0.022469 0.537803 -0.137638 +0.036365 0.554869 -0.072501 +0.13768 0.401526 -4.7e-05 +-0.132976 0.422192 -0.000139 +-0.010152 0.593596 -0.040937 +0.059186 0.594074 -0.035922 +-0.012775 0.562802 -0.051744 +0.085496 0.546935 -0.057666 +-0.102564 0.244317 -0.136177 +-0.051539 0.537111 1.7e-05 +-0.055871 0.5282 -0.099486 +0.032897 0.54563 -0.10738 +0.093544 0.529293 -0.104008 +0.015049 0.530678 -0.191422 +-0.105472 0.486167 -0.000131 +-0.111945 0.425654 -0.150894 +0.099625 0.408844 -0.150341 +0.140245 0.469677 1e-05 +-0.088683 0.440511 -0.247701 +0.069195 0.437695 -0.244784 +-0.006772 0.521661 -0.258656 +-0.019128 0.31058 -0.208129 +-0.012716 0.356546 -0.233829 +0.076795 0.240164 -0.136126 +0.047889 0.375425 -0.235838 +-0.071835 0.378945 -0.238027 +0.051031 0.500669 -0.254459 +-0.066062 0.501373 -0.256647 +-0.030417 0.532857 -0.07233 +-0.074542 0.517778 -0.137044 +0.094275 0.512365 -0.137401 +-0.115338 0.342076 -0.176146 +0.073526 0.317101 -0.175859 +0.03557 0.608212 0.009358 +0.02818 0.608327 0.013493 +0.017649 0.608088 0.010644 +0.040131 0.608738 4.9e-05 +0.035576 0.608212 -0.009246 +0.015824 0.608345 4.2e-05 +0.017655 0.608088 -0.010542 +0.028188 0.608327 -0.013385 +0.023448 0.416394 0.251282 +-0.011623 0.405468 0.250138 +-0.045837 0.418431 0.252476 +-0.042503 0.489279 0.26292 +-0.008193 0.501019 0.264064 +0.025259 0.488872 0.261726 +0.035774 0.452429 0.256305 +-0.05559 0.454059 0.257897 +0.001556 0.440572 0.275781 +-0.010505 0.436815 0.275388 +-0.02227 0.441272 0.276192 +-0.021123 0.465636 0.279783 +-0.009325 0.469673 0.280177 +0.002179 0.465495 0.279373 +0.005794 0.452964 0.277509 +-0.025624 0.453524 0.278056 +-0.025435 0.453524 -0.291811 +0.005982 0.452964 -0.291248 +0.002368 0.465495 -0.293114 +-0.009137 0.469673 -0.293923 +-0.020935 0.465636 -0.293536 +-0.022083 0.441272 -0.289945 +-0.010319 0.436815 -0.289135 +0.001744 0.440572 -0.289523 +-0.055415 0.454059 -0.271667 +0.035948 0.452429 -0.27003 +0.025438 0.488872 -0.275456 +-0.008013 0.501019 -0.27781 +-0.042324 0.489279 -0.276683 +-0.045666 0.418431 -0.266241 +-0.011454 0.405468 -0.263886 +0.023619 0.416394 -0.265013 +-0.019138 0.349139 -0.22583 +0.003764 0.526101 -0.216154 +0.090256 0.432187 -0.219983 +-0.105633 0.443054 -0.222001 +-0.092273 0.378051 -0.225378 +-0.085089 0.440447 -0.247667 +-0.070019 0.505339 -0.21812 +0.071822 0.502623 -0.216607 +0.065607 0.437759 -0.244882 +0.059719 0.364467 -0.223863 +-0.006904 0.517905 -0.258123 +-0.012579 0.360301 -0.234425 +0.045271 0.378322 -0.236343 +-0.069007 0.381682 -0.238432 +0.04827 0.497869 -0.254117 +-0.063496 0.498541 -0.256205 +numsurf 150 +SURF 0x10 +mat 1 +refs 4 +21 0.149388030171 0.548860371113 +1 0.259334743023 0.550819754601 +20 0.243265807629 0.597408533096 +62 0.149302750826 0.595478713512 +SURF 0x10 +mat 1 +refs 4 +20 0.243265807629 0.597408533096 +3 0.2344584167 0.648760735989 +73 0.149302750826 0.631139874458 +62 0.149302750826 0.595478713512 +SURF 0x10 +mat 1 +refs 4 +76 0.477467000484 0.625140070915 +2 0.563738584518 0.649186491966 +19 0.572060346603 0.590871870518 +61 0.477435410023 0.58674967289 +SURF 0x10 +mat 1 +refs 4 +19 0.572060346603 0.590871870518 +0 0.588466286659 0.539192080498 +48 0.477488577366 0.538216471672 +61 0.477435410023 0.58674967289 +SURF 0x10 +mat 1 +refs 4 +25 0.204867243767 0.654570579529 +3 0.2344584167 0.648760735989 +22 0.269076645374 0.655951738358 +32 0.226146548986 0.659923195839 +SURF 0x10 +mat 1 +refs 4 +22 0.598465323448 0.659502446651 +2 0.563738584518 0.649186491966 +23 0.536148905754 0.658722400665 +32 0.555081963539 0.663515806198 +SURF 0x10 +mat 1 +refs 4 +24 0.209281459451 0.664286732674 +4 0.189733847976 0.657166659832 +25 0.204867243767 0.654570579529 +32 0.226146548986 0.659923195839 +SURF 0x10 +mat 1 +refs 4 +68 0.149376913905 0.659537672997 +4 0.189733847976 0.657166659832 +28 0.178261265159 0.67225843668 +58 0.149377539754 0.675332427025 +SURF 0x10 +mat 1 +refs 4 +73 0.149302750826 0.631139874458 +3 0.2344584167 0.648760735989 +25 0.204867243767 0.654570579529 +57 0.149381145835 0.653024196625 +SURF 0x10 +mat 1 +refs 4 +25 0.204867243767 0.654570579529 +4 0.189733847976 0.657166659832 +68 0.149376913905 0.659537672997 +57 0.149381145835 0.653024196625 +SURF 0x10 +mat 1 +refs 4 +23 0.536148905754 0.658722400665 +2 0.563738584518 0.649186491966 +76 0.477467000484 0.625140070915 +55 0.477514147758 0.645801663399 +SURF 0x10 +mat 1 +refs 4 +16 0.286033540964 0.641827404499 +3 0.2344584167 0.648760735989 +20 0.243265807629 0.597408533096 +34 0.288497716188 0.607107520103 +SURF 0x10 +mat 1 +refs 4 +20 0.243265807629 0.597408533096 +1 0.259334743023 0.550819754601 +18 0.290648728609 0.570873498917 +34 0.288497716188 0.607107520103 +SURF 0x10 +mat 1 +refs 4 +18 0.874304771423 0.97726213932 +7 0.895474016666 0.948747456074 +17 0.88264465332 0.942071378231 +34 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +17 0.88264465332 0.942071378231 +5 0.897451877594 0.93243086338 +16 0.890021681786 0.980894684792 +34 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +13 0.619315028191 0.565874040127 +0 0.588466286659 0.539192080498 +19 0.572060346603 0.590871870518 +35 0.616824746132 0.604021191597 +SURF 0x10 +mat 1 +refs 4 +19 0.572060346603 0.590871870518 +2 0.563738584518 0.649186491966 +15 0.614651203156 0.643698573112 +35 0.616824746132 0.604021191597 +SURF 0x10 +mat 1 +refs 4 +15 0.985724270344 0.969634771347 +6 0.979443311691 0.923656105995 +14 0.993191123009 0.930212914944 +35 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +14 0.993191123009 0.930212914944 +8 0.979302406311 0.939734578133 +13 0.976847290993 0.965115070343 +35 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +15 0.614651203156 0.643698573112 +2 0.563738584518 0.649186491966 +22 0.598465323448 0.659502446651 +36 0.614348948002 0.656924366951 +SURF 0x10 +mat 1 +refs 4 +22 0.269076645374 0.655951738358 +3 0.2344584167 0.648760735989 +16 0.286033540964 0.641827404499 +36 0.284794300795 0.653400599957 +SURF 0x10 +mat 1 +refs 4 +16 0.890021681786 0.980894684792 +5 0.897451877594 0.93243086338 +12 0.938624203205 0.925343990326 +36 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +12 0.938624203205 0.925343990326 +6 0.979443311691 0.923656105995 +15 0.985724270344 0.969634771347 +36 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +18 0.290648728609 0.570873498917 +1 0.259334743023 0.550819754601 +11 0.279702723026 0.533263504505 +37 0.290947765112 0.55475705862 +SURF 0x10 +mat 1 +refs 4 +11 0.609203577042 0.535518825054 +0 0.588466286659 0.539192080498 +13 0.619315028191 0.565874040127 +37 0.620567381382 0.557239353657 +SURF 0x10 +mat 1 +refs 4 +13 0.976847290993 0.965115070343 +8 0.979302406311 0.939734578133 +10 0.937211632729 0.946940541267 +37 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +10 0.937211632729 0.946940541267 +7 0.895474016666 0.948747456074 +18 0.874304771423 0.97726213932 +37 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +48 0.477488577366 0.538216471672 +0 0.588466286659 0.539192080498 +9 0.570933878422 0.492245584726 +51 0.477485835552 0.491156965494 +SURF 0x10 +mat 1 +refs 4 +26 0.241832822561 0.502074539661 +1 0.259334743023 0.550819754601 +21 0.149388030171 0.548860371113 +50 0.149377435446 0.492271602154 +SURF 0x10 +mat 1 +refs 4 +9 0.570933878422 0.492245584726 +0 0.588466286659 0.539192080498 +11 0.609203577042 0.535518825054 +38 0.605678677559 0.498123198748 +SURF 0x10 +mat 1 +refs 4 +11 0.279702723026 0.533263504505 +1 0.259334743023 0.550819754601 +26 0.241832822561 0.502074539661 +38 0.276214629412 0.496258497238 +SURF 0x10 +mat 1 +refs 4 +28 0.182204097509 0.735109984875 +30 0.186645239592 0.772843182087 +53 0.118110433221 0.774500489235 +58 0.118135713041 0.738379716873 +SURF 0x10 +mat 1 +refs 4 +28 0.182204097509 0.735109984875 +31 0.207887083292 0.725300908089 +33 0.205047726631 0.774386405945 +30 0.186645239592 0.772843182087 +SURF 0x10 +mat 1 +refs 4 +27 0.424785256386 0.723994016647 +29 0.411193162203 0.766271114349 +33 0.37646239996 0.764855146408 +31 0.380615919828 0.72916841507 +SURF 0x10 +mat 1 +refs 4 +27 0.424785256386 0.723994016647 +56 0.439508378506 0.713309168816 +52 0.432618618011 0.768745303154 +29 0.411193162203 0.766271114349 +SURF 0x10 +mat 1 +refs 3 +23 0.536148905754 0.658722400665 +24 0.538038790226 0.667925477028 +32 0.555081963539 0.663515806198 +SURF 0x10 +mat 1 +refs 3 +23 0.536148905754 0.658722400665 +39 0.52309602499 0.695319890976 +24 0.538038790226 0.667925477028 +SURF 0x10 +mat 1 +refs 3 +39 0.52309602499 0.695319890976 +27 0.510043025017 0.668660521507 +31 0.51839184761 0.671529352665 +SURF 0x10 +mat 1 +refs 3 +27 0.181578204036 0.665014147758 +39 0.194494828582 0.691394925117 +56 0.149387657642 0.658388495445 +SURF 0x10 +mat 1 +refs 3 +39 0.52309602499 0.695319890976 +23 0.536148905754 0.658722400665 +55 0.477514147758 0.645801663399 +SURF 0x10 +mat 1 +refs 3 +55 0.477514147758 0.645801663399 +46 0.47750210762 0.685511827469 +39 0.52309602499 0.695319890976 +SURF 0x10 +mat 1 +refs 3 +46 0.149377241731 0.681689381599 +56 0.149387657642 0.658388495445 +39 0.194494828582 0.691394925117 +SURF 0x10 +mat 1 +refs 3 +40 0.199560552835 0.698159515858 +31 0.189839735627 0.667836248875 +28 0.178261265159 0.67225843668 +SURF 0x10 +mat 1 +refs 3 +31 0.51839184761 0.671529352665 +40 0.528215289116 0.702155947685 +39 0.52309602499 0.695319890976 +SURF 0x10 +mat 1 +refs 3 +40 0.528215289116 0.702155947685 +24 0.538038790226 0.667925477028 +39 0.52309602499 0.695319890976 +SURF 0x10 +mat 1 +refs 3 +41 0.194647237659 0.696340918541 +40 0.199560552835 0.698159515858 +28 0.178261265159 0.67225843668 +SURF 0x10 +mat 1 +refs 3 +40 0.199560552835 0.698159515858 +41 0.194647237659 0.696340918541 +24 0.209281459451 0.664286732674 +SURF 0x10 +mat 1 +refs 3 +4 0.189733847976 0.657166659832 +42 0.192190647125 0.69240295887 +28 0.178261265159 0.67225843668 +SURF 0x10 +mat 1 +refs 3 +42 0.192190647125 0.69240295887 +41 0.194647237659 0.696340918541 +28 0.178261265159 0.67225843668 +SURF 0x10 +mat 1 +refs 3 +41 0.194647237659 0.696340918541 +42 0.192190647125 0.69240295887 +24 0.209281459451 0.664286732674 +SURF 0x10 +mat 1 +refs 3 +42 0.192190647125 0.69240295887 +4 0.189733847976 0.657166659832 +24 0.209281459451 0.664286732674 +SURF 0x10 +mat 1 +refs 3 +43 0.106588371098 0.69240295887 +70 0.0894975140691 0.664286732674 +87 0.109045125544 0.657166659832 +SURF 0x10 +mat 1 +refs 3 +44 0.104131735861 0.696340918541 +70 0.0894975140691 0.664286732674 +43 0.106588371098 0.69240295887 +SURF 0x10 +mat 1 +refs 3 +43 0.106588371098 0.69240295887 +65 0.120517857373 0.673858344555 +44 0.104131735861 0.696340918541 +SURF 0x10 +mat 1 +refs 3 +87 0.109045125544 0.657166659832 +65 0.120517857373 0.673858344555 +43 0.106588371098 0.69240295887 +SURF 0x10 +mat 1 +refs 3 +45 0.0992184057832 0.698159694672 +70 0.0894975140691 0.664286732674 +44 0.104131735861 0.696340918541 +SURF 0x10 +mat 1 +refs 3 +44 0.104131735861 0.696340918541 +65 0.120517857373 0.673858344555 +45 0.0992184057832 0.698159694672 +SURF 0x10 +mat 1 +refs 3 +45 0.426813721657 0.702156066895 +47 0.43193295598 0.695320010185 +70 0.416990190744 0.667925477028 +SURF 0x10 +mat 1 +refs 3 +60 0.436637252569 0.673129320145 +47 0.43193295598 0.695320010185 +45 0.426813721657 0.702156066895 +SURF 0x10 +mat 1 +refs 3 +45 0.0992184057832 0.698159694672 +65 0.120517857373 0.673858344555 +60 0.108939297497 0.669436216354 +SURF 0x10 +mat 1 +refs 3 +46 0.149377241731 0.681689381599 +47 0.104284234345 0.691395103931 +56 0.149387657642 0.658388495445 +SURF 0x10 +mat 1 +refs 3 +55 0.477514147758 0.645801663399 +47 0.43193295598 0.695320010185 +46 0.47750210762 0.685511827469 +SURF 0x10 +mat 1 +refs 3 +47 0.43193295598 0.695320010185 +55 0.477514147758 0.645801663399 +71 0.418880105019 0.658722400665 +SURF 0x10 +mat 1 +refs 3 +66 0.117200769484 0.665014147758 +56 0.149387657642 0.658388495445 +47 0.104284234345 0.691395103931 +SURF 0x10 +mat 1 +refs 3 +47 0.43193295598 0.695320010185 +60 0.436637252569 0.673129320145 +66 0.444985955954 0.668660521507 +SURF 0x10 +mat 1 +refs 3 +71 0.418880105019 0.658722400665 +70 0.416990190744 0.667925477028 +47 0.43193295598 0.695320010185 +SURF 0x10 +mat 1 +refs 3 +71 0.418880105019 0.658722400665 +59 0.399947106838 0.663515806198 +70 0.416990190744 0.667925477028 +SURF 0x10 +mat 1 +refs 4 +66 0.424785256386 0.723994016647 +64 0.411193162203 0.766271114349 +52 0.432618618011 0.768745303154 +56 0.439508378506 0.713309168816 +SURF 0x10 +mat 1 +refs 4 +66 0.424785256386 0.723994016647 +60 0.380615919828 0.731125473976 +54 0.37646239996 0.766812205315 +64 0.411193162203 0.766271114349 +SURF 0x10 +mat 1 +refs 4 +65 0.0541202798486 0.735109984875 +63 0.0496791303158 0.772843122482 +54 0.0312766954303 0.774386405945 +60 0.0284372791648 0.725300788879 +SURF 0x10 +mat 1 +refs 4 +65 0.0541202798486 0.735109984875 +58 0.118135713041 0.738379716873 +53 0.118110433221 0.774500489235 +63 0.0496791303158 0.772843122482 +SURF 0x10 +mat 1 +refs 4 +80 0.019076263532 0.533263504505 +49 0.022564297542 0.496258497238 +67 0.0569461509585 0.502074539661 +90 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +82 0.384095132351 0.492245584726 +49 0.349350273609 0.498123198748 +80 0.345825403929 0.535518825054 +91 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 4 +67 0.0569461509585 0.502074539661 +50 0.149377435446 0.492271602154 +21 0.149388030171 0.548860371113 +90 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +48 0.477488577366 0.538216471672 +51 0.477485835552 0.491156965494 +82 0.384095132351 0.492245584726 +91 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 4 +81 0.715656280518 0.569719791412 +132 0.732654035091 0.59095209837 +136 0.782231450081 0.590324044228 +84 0.757114887238 0.565319240093 +SURF 0x10 +mat 1 +refs 4 +141 0.679232656956 0.593528568745 +132 0.732654035091 0.59095209837 +81 0.715656280518 0.569719791412 +83 0.673049211502 0.568844079971 +SURF 0x10 +mat 1 +refs 4 +80 0.345825403929 0.535518825054 +132 0.334461688995 0.557239353657 +141 0.335714071989 0.565874040127 +91 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 4 +136 0.00813040696084 0.570873498917 +132 0.00783128105104 0.55475705862 +80 0.019076263532 0.533263504505 +90 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +79 0.71106249094 0.548615336418 +133 0.717277944088 0.598745048046 +139 0.671141386032 0.599304318428 +85 0.670527994633 0.552997291088 +SURF 0x10 +mat 1 +refs 4 +138 0.767258703709 0.59623759985 +133 0.717277944088 0.598745048046 +79 0.71106249094 0.548615336418 +86 0.752745330334 0.549509346485 +SURF 0x10 +mat 1 +refs 4 +72 0.0297024827451 0.655951738358 +133 0.0139847304672 0.653400599957 +138 0.012745430693 0.641827404499 +88 0.0643206238747 0.648760735989 +SURF 0x10 +mat 1 +refs 4 +139 0.340377807617 0.643698573112 +133 0.340680122375 0.656924366951 +72 0.356563806534 0.659502446651 +89 0.391290545464 0.649186491966 +SURF 0x10 +mat 1 +refs 4 +78 0.657931745052 0.561505198479 +134 0.65859401226 0.596939086914 +141 0.679232656956 0.593528568745 +83 0.673049211502 0.568844079971 +SURF 0x10 +mat 1 +refs 4 +139 0.671141386032 0.599304318428 +134 0.65859401226 0.596939086914 +78 0.657931745052 0.561505198479 +85 0.670527994633 0.552997291088 +SURF 0x10 +mat 1 +refs 4 +75 0.382968634367 0.590871870518 +134 0.338204264641 0.604021191597 +139 0.340377807617 0.643698573112 +89 0.391290545464 0.649186491966 +SURF 0x10 +mat 1 +refs 4 +141 0.335714071989 0.565874040127 +134 0.338204264641 0.604021191597 +75 0.382968634367 0.590871870518 +91 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 4 +77 0.76878708601 0.556829929352 +135 0.791338086128 0.592758238316 +138 0.767258703709 0.59623759985 +86 0.752745330334 0.549509346485 +SURF 0x10 +mat 1 +refs 4 +136 0.782231450081 0.590324044228 +135 0.791338086128 0.592758238316 +77 0.76878708601 0.556829929352 +84 0.757114887238 0.565319240093 +SURF 0x10 +mat 1 +refs 4 +74 0.0555131956935 0.597408533096 +135 0.0102812405676 0.607107520103 +136 0.00813040696084 0.570873498917 +90 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +138 0.012745430693 0.641827404499 +135 0.0102812405676 0.607107520103 +74 0.0555131956935 0.597408533096 +88 0.0643206238747 0.648760735989 +SURF 0x10 +mat 1 +refs 4 +71 0.418880105019 0.658722400665 +55 0.477514147758 0.645801663399 +76 0.477467000484 0.625140070915 +89 0.391290545464 0.649186491966 +SURF 0x10 +mat 1 +refs 4 +69 0.0939118117094 0.654570579529 +57 0.149381145835 0.653024196625 +68 0.149376913905 0.659537672997 +87 0.109045125544 0.657166659832 +SURF 0x10 +mat 1 +refs 4 +73 0.149302750826 0.631139874458 +57 0.149381145835 0.653024196625 +69 0.0939118117094 0.654570579529 +88 0.0643206238747 0.648760735989 +SURF 0x10 +mat 1 +refs 4 +68 0.149376913905 0.659537672997 +58 0.149377539754 0.675332427025 +65 0.120517857373 0.673858344555 +87 0.109045125544 0.657166659832 +SURF 0x10 +mat 1 +refs 4 +70 0.0894975140691 0.664286732674 +59 0.0726325139403 0.659923195839 +69 0.0939118117094 0.654570579529 +87 0.109045125544 0.657166659832 +SURF 0x10 +mat 1 +refs 4 +72 0.356563806534 0.659502446651 +59 0.399947106838 0.663515806198 +71 0.418880105019 0.658722400665 +89 0.391290545464 0.649186491966 +SURF 0x10 +mat 1 +refs 4 +69 0.0939118117094 0.654570579529 +59 0.0726325139403 0.659923195839 +72 0.0297024827451 0.655951738358 +88 0.0643206238747 0.648760735989 +SURF 0x10 +mat 1 +refs 4 +75 0.382968634367 0.590871870518 +61 0.477435410023 0.58674967289 +48 0.477488577366 0.538216471672 +91 0.366562783718 0.539192080498 +SURF 0x10 +mat 1 +refs 4 +76 0.477467000484 0.625140070915 +61 0.477435410023 0.58674967289 +75 0.382968634367 0.590871870518 +89 0.391290545464 0.649186491966 +SURF 0x10 +mat 1 +refs 4 +74 0.0555131956935 0.597408533096 +62 0.149302750826 0.595478713512 +73 0.149302750826 0.631139874458 +88 0.0643206238747 0.648760735989 +SURF 0x10 +mat 1 +refs 4 +21 0.149388030171 0.548860371113 +62 0.149302750826 0.595478713512 +74 0.0555131956935 0.597408533096 +90 0.0394442230463 0.550819754601 +SURF 0x10 +mat 1 +refs 4 +33 0.424785256386 0.723994016647 +29 0.411193162203 0.766271114349 +92 0.37646239996 0.764855146408 +93 0.380615919828 0.72916841507 +SURF 0x10 +mat 1 +refs 4 +30 0.182204097509 0.735109984875 +33 0.207887083292 0.725300908089 +93 0.205047726631 0.774386405945 +94 0.186645239592 0.772843182087 +SURF 0x10 +mat 1 +refs 4 +52 0.424785256386 0.723994016647 +64 0.411193162203 0.766271114349 +96 0.432618618011 0.768745303154 +95 0.439508378506 0.713309168816 +SURF 0x10 +mat 1 +refs 4 +63 0.0541202798486 0.735109984875 +53 0.118135713041 0.738379716873 +97 0.118110433221 0.774500489235 +98 0.0496791303158 0.772843122482 +SURF 0x10 +mat 1 +refs 4 +54 0.0541202798486 0.735109984875 +63 0.0496791303158 0.772843122482 +98 0.0312766954303 0.774386405945 +99 0.0284372791648 0.725300788879 +SURF 0x10 +mat 1 +refs 4 +64 0.424785256386 0.723994016647 +54 0.380615919828 0.731125473976 +99 0.37646239996 0.766812205315 +96 0.411193162203 0.766271114349 +SURF 0x10 +mat 1 +refs 4 +29 0.424785256386 0.723994016647 +52 0.439508378506 0.713309168816 +95 0.432618618011 0.768745303154 +92 0.411193162203 0.766271114349 +SURF 0x10 +mat 1 +refs 4 +53 0.182204097509 0.735109984875 +30 0.186645239592 0.772843182087 +94 0.118110433221 0.774500489235 +97 0.118135713041 0.738379716873 +SURF 0x10 +mat 1 +refs 4 +10 0.976847290993 0.965115070343 +8 0.979302406311 0.939734578133 +100 0.937211632729 0.946940541267 +101 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +7 0.937211632729 0.946940541267 +10 0.895474016666 0.948747456074 +101 0.874304771423 0.97726213932 +102 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +12 0.890021681786 0.980894684792 +5 0.897451877594 0.93243086338 +103 0.938624203205 0.925343990326 +104 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +6 0.938624203205 0.925343990326 +12 0.979443311691 0.923656105995 +104 0.985724270344 0.969634771347 +105 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +14 0.985724270344 0.969634771347 +6 0.979443311691 0.923656105995 +105 0.993191123009 0.930212914944 +106 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +8 0.993191123009 0.930212914944 +14 0.979302406311 0.939734578133 +106 0.976847290993 0.965115070343 +100 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +17 0.874304771423 0.97726213932 +7 0.895474016666 0.948747456074 +102 0.88264465332 0.942071378231 +107 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +5 0.88264465332 0.942071378231 +17 0.897451877594 0.93243086338 +107 0.890021681786 0.980894684792 +103 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +101 0.976847290993 0.965115070343 +100 0.979302406311 0.939734578133 +108 0.937211632729 0.946940541267 +109 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +102 0.937211632729 0.946940541267 +101 0.895474016666 0.948747456074 +109 0.874304771423 0.97726213932 +110 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +104 0.890021681786 0.980894684792 +103 0.897451877594 0.93243086338 +111 0.938624203205 0.925343990326 +112 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +105 0.938624203205 0.925343990326 +104 0.979443311691 0.923656105995 +112 0.985724270344 0.969634771347 +113 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +106 0.985724270344 0.969634771347 +105 0.979443311691 0.923656105995 +113 0.993191123009 0.930212914944 +114 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +100 0.993191123009 0.930212914944 +106 0.979302406311 0.939734578133 +114 0.976847290993 0.965115070343 +108 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +107 0.874304771423 0.97726213932 +102 0.895474016666 0.948747456074 +110 0.88264465332 0.942071378231 +115 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +103 0.88264465332 0.942071378231 +107 0.897451877594 0.93243086338 +115 0.890021681786 0.980894684792 +111 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +128 0.88264465332 0.942071378231 +120 0.865642786026 0.981029093266 +116 0.890021681786 0.980894684792 +124 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 4 +124 0.874304771423 0.97726213932 +116 0.865642786026 0.981029093266 +121 0.88264465332 0.942071378231 +129 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +131 0.993191123009 0.930212914944 +123 0.997806370258 0.965424358845 +117 0.976847290993 0.965115070343 +125 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 4 +125 0.985724270344 0.969634771347 +117 0.997806370258 0.965424358845 +118 0.993191123009 0.930212914944 +126 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 4 +126 0.938624203205 0.925343990326 +118 0.939922690392 0.975944161415 +119 0.985724270344 0.969634771347 +127 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 4 +127 0.890021681786 0.980894684792 +119 0.939922690392 0.975944161415 +120 0.938624203205 0.925343990326 +128 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 4 +129 0.937211632729 0.946940541267 +121 0.923526644707 0.970509171486 +122 0.874304771423 0.97726213932 +130 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +130 0.976847290993 0.965115070343 +122 0.923526644707 0.970509171486 +123 0.937211632729 0.946940541267 +131 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 4 +147 0.88264465332 0.942071378231 +128 0.865642786026 0.981029093266 +124 0.890021681786 0.980894684792 +137 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 4 +137 0.874304771423 0.97726213932 +124 0.865642786026 0.981029093266 +129 0.88264465332 0.942071378231 +145 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +144 0.993191123009 0.930212914944 +131 0.997806370258 0.965424358845 +125 0.976847290993 0.965115070343 +140 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 4 +140 0.985724270344 0.969634771347 +125 0.997806370258 0.965424358845 +126 0.993191123009 0.930212914944 +146 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 4 +146 0.938624203205 0.925343990326 +126 0.939922690392 0.975944161415 +127 0.985724270344 0.969634771347 +142 0.979443311691 0.923656105995 +SURF 0x10 +mat 1 +refs 4 +142 0.890021681786 0.980894684792 +127 0.939922690392 0.975944161415 +128 0.938624203205 0.925343990326 +147 0.897451877594 0.93243086338 +SURF 0x10 +mat 1 +refs 4 +145 0.937211632729 0.946940541267 +129 0.923526644707 0.970509171486 +130 0.874304771423 0.97726213932 +143 0.895474016666 0.948747456074 +SURF 0x10 +mat 1 +refs 4 +143 0.976847290993 0.965115070343 +130 0.923526644707 0.970509171486 +131 0.937211632729 0.946940541267 +144 0.979302406311 0.939734578133 +SURF 0x10 +mat 1 +refs 4 +143 0.937211632729 0.946940541267 +145 0.895474016666 0.948747456074 +136 0.874304771423 0.97726213932 +132 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +141 0.976847290993 0.965115070343 +144 0.979302406311 0.939734578133 +143 0.937211632729 0.946940541267 +132 0.923526644707 0.970509171486 +SURF 0x10 +mat 1 +refs 4 +142 0.938624203205 0.925343990326 +146 0.979443311691 0.923656105995 +139 0.985724270344 0.969634771347 +133 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +138 0.890021681786 0.980894684792 +147 0.897451877594 0.93243086338 +142 0.938624203205 0.925343990326 +133 0.939922690392 0.975944161415 +SURF 0x10 +mat 1 +refs 4 +140 0.993191123009 0.930212914944 +144 0.979302406311 0.939734578133 +141 0.976847290993 0.965115070343 +134 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +139 0.985724270344 0.969634771347 +146 0.979443311691 0.923656105995 +140 0.993191123009 0.930212914944 +134 0.997806370258 0.965424358845 +SURF 0x10 +mat 1 +refs 4 +137 0.88264465332 0.942071378231 +147 0.897451877594 0.93243086338 +138 0.890021681786 0.980894684792 +135 0.865642786026 0.981029093266 +SURF 0x10 +mat 1 +refs 4 +136 0.874304771423 0.97726213932 +145 0.895474016666 0.948747456074 +137 0.88264465332 0.942071378231 +135 0.865642786026 0.981029093266 +kids 0 +OBJECT poly +name "head" +data 8 +Mesh.001 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 183 +0.055575 0.642251 0.034317 +-0.035174 0.620882 0.045111 +0.05507 0.805791 0.075086 +-0.056257 0.801361 0.06237 +0.012403 0.844952 0.015434 +0.038147 0.844971 0.013483 +-0.08372 0.748003 0.048503 +-0.083547 0.665703 0.037826 +0.055012 0.589755 0.040424 +-0.011973 0.657949 0.071982 +-0.015174 0.589151 0.046002 +0.069504 0.696378 0.072096 +0.007554 0.804163 0.078625 +-0.030669 0.694393 0.082636 +0.056328 0.827072 0.055661 +0.025274 0.844962 0.016855 +-0.024914 0.828035 0.049757 +-0.090627 0.748465 0.00282 +-0.065984 0.768347 0.063746 +-0.084557 0.704979 0.045125 +-0.053809 0.634143 0.059608 +0.018881 0.590318 0.058364 +0.022848 0.681942 0.079155 +0.011423 0.832723 0.055073 +-0.061851 0.829697 3.2e-05 +-0.069539 0.70133 0.066964 +-0.092415 0.6801 0.021408 +-0.086005 0.747853 0.028942 +-0.066695 0.737894 0.057236 +-0.083302 0.718513 0.026749 +-0.080405 0.735147 0.013176 +-0.076141 0.726398 0.011935 +-0.078903 0.74053 0.036613 +-0.079759 0.739468 0.024273 +-0.088412 0.618322 0.016568 +-0.08154 0.660483 0.033871 +0.026234 0.745305 0.091545 +0.050749 0.734431 0.092463 +0.088773 0.809308 0.050637 +0.113782 0.738015 0.043564 +-0.080834 0.733299 0.027755 +-0.08164 0.728538 0.026529 +-0.079897 0.735854 0.037565 +-0.080349 0.735293 0.032474 +-0.079916 0.731692 0.041624 +-0.079364 0.723364 0.030294 +-0.081319 0.726092 0.038273 +-0.082662 0.779903 0.029505 +-0.065332 0.811118 0.031473 +0.000402 0.713183 0.092363 +-0.059977 0.730201 0.070435 +-0.042876 0.75283 0.080194 +-0.02996 0.778799 0.075899 +0.00258 0.798802 0.080225 +-0.058119 0.767628 0.06929 +-0.050156 0.776299 0.071842 +0.050305 0.706843 0.092164 +0.009003 0.739394 0.092033 +0.026106 0.694987 0.092439 +0.025959 0.630476 0.053151 +0.082274 0.752004 0.079766 +0.026231 0.745305 0.094209 +0.050748 0.734431 0.095435 +0.050303 0.706843 0.095139 +0.008999 0.739394 0.099005 +0.000398 0.713183 0.097537 +0.026105 0.694987 0.096288 +0.02617 0.694987 -0.096174 +0.000465 0.713183 -0.097435 +0.009067 0.739394 -0.098899 +0.050365 0.706843 -0.095012 +0.05081 0.734431 -0.095308 +0.026296 0.745305 -0.094095 +0.082325 0.752004 -0.079613 +0.025993 0.630476 -0.053027 +0.026169 0.694987 -0.092325 +0.009062 0.739394 -0.091927 +0.050364 0.706843 -0.092037 +-0.050107 0.776299 -0.071766 +-0.058071 0.767628 -0.069219 +0.002632 0.798802 -0.080122 +-0.029908 0.778799 -0.075815 +-0.042825 0.75283 -0.080114 +-0.059931 0.730201 -0.070364 +0.000461 0.713183 -0.092262 +-0.06531 0.811118 -0.031405 +-0.082641 0.779903 -0.029445 +-0.081294 0.726092 -0.038212 +-0.079345 0.723364 -0.030232 +-0.079889 0.731692 -0.041563 +-0.080328 0.735293 -0.032413 +-0.079873 0.735854 -0.037504 +-0.081623 0.728538 -0.026468 +-0.080816 0.733299 -0.027694 +0.11381 0.738015 -0.043402 +0.088805 0.809308 -0.050476 +0.132142 0.746402 6.2e-05 +0.050809 0.734431 -0.092336 +0.026293 0.745305 -0.09143 +-0.099429 0.656061 -1.2e-05 +-0.093577 0.644242 -1e-05 +-0.086323 0.659882 -0.033813 +-0.088402 0.618322 -0.016512 +-0.093096 0.666526 -1e-05 +-0.079743 0.739468 -0.024212 +-0.07888 0.74053 -0.036551 +-0.076133 0.726398 -0.011871 +-0.080396 0.735147 -0.013115 +-0.083284 0.718513 -0.02669 +-0.066658 0.737894 -0.057174 +-0.085986 0.747853 -0.028884 +-0.092401 0.6801 -0.021353 +-0.092408 0.675678 -1e-05 +-0.116242 0.68723 -1.4e-05 +-0.090683 0.727872 -9e-06 +-0.092074 0.61772 -1e-05 +-0.069496 0.70133 -0.066892 +-0.089045 0.779498 1.8e-05 +0.095218 0.830378 5.4e-05 +0.011458 0.832723 -0.054951 +0.121704 0.67075 5.3e-05 +0.022899 0.681942 -0.079042 +0.077311 0.592329 4.1e-05 +-0.024093 0.590404 1e-05 +0.018918 0.590318 -0.058242 +-0.053771 0.634143 -0.059534 +-0.084528 0.704979 -0.045065 +-0.06594 0.768347 -0.063677 +-0.090625 0.748465 -0.002764 +0.042442 0.844974 5.7e-05 +-0.001597 0.845119 3.8e-05 +-0.076254 0.809585 -3.5e-05 +-0.02488 0.828035 -0.04967 +0.025285 0.844962 -0.016725 +0.056364 0.827072 -0.055516 +0.111422 0.81405 3.8e-05 +-0.030616 0.694393 -0.08255 +0.007605 0.804163 -0.078511 +0.06955 0.696377 -0.071957 +0.091966 0.635201 5e-05 +-0.036136 0.607358 4e-06 +-0.015144 0.589151 -0.045907 +-0.011926 0.657949 -0.071887 +0.055038 0.589755 -0.040284 +-0.083523 0.665703 -0.037767 +-0.083689 0.748003 -0.048443 +0.038156 0.844971 -0.013347 +0.012413 0.844952 -0.015311 +-0.056214 0.801361 -0.062297 +0.055119 0.805791 -0.074946 +-0.035145 0.620882 -0.045027 +0.055598 0.642251 -0.034172 +0.055376 0.563117 0.028196 +0.030187 0.563509 0.040703 +-0.005707 0.562696 0.032085 +0.070922 0.564911 4.4e-05 +0.055394 0.563117 -0.028068 +-0.011926 0.563569 2.3e-05 +-0.005687 0.562696 -0.031988 +0.030213 0.563509 -0.040588 +0.021006 0.548425 0.00713 +0.014668 0.548524 0.010278 +0.005635 0.548319 0.008109 +0.024919 0.548877 4.6e-05 +0.021011 0.548425 -0.007029 +0.00407 0.548539 4e-05 +0.00564 0.548319 -0.008015 +0.014674 0.548524 -0.01018 +0.093887 0.712466 0.055842 +0.124804 0.778967 4.4e-05 +0.120237 0.701085 -0.023151 +0.127276 0.736924 -0.01811 +0.093923 0.712466 -0.055691 +0.129599 0.709223 6e-05 +0.098199 0.680606 -0.036794 +0.110915 0.651443 4.8e-05 +0.120222 0.701085 0.023285 +0.127264 0.736924 0.01825 +0.098176 0.680606 0.036917 +0.092573 0.660517 0.019264 +0.114378 0.7612 0.010444 +0.114385 0.7612 -0.010331 +0.092585 0.660517 -0.019158 +numsurf 274 +SURF 0x10 +mat 1 +refs 4 +9 0.218398869038 0.851009249687 +1 0.180963546038 0.805178046227 +10 0.186645239592 0.772843182087 +21 0.205047726631 0.774386405945 +SURF 0x10 +mat 1 +refs 4 +10 0.186645239592 0.772843182087 +1 0.180963546038 0.805178046227 +140 0.118110433221 0.788455665112 +123 0.118110433221 0.774500489235 +SURF 0x10 +mat 1 +refs 4 +139 0.44458052516 0.801257491112 +0 0.416451245546 0.808407723904 +8 0.411193162203 0.766271114349 +122 0.432618618011 0.768745303154 +SURF 0x10 +mat 1 +refs 4 +13 0.31151008606 0.855280399323 +1 0.307449609041 0.789198696613 +9 0.32831415534 0.822519540787 +22 0.359618246555 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +2 0.406866937876 0.952373862267 +12 0.362630009651 0.953957617283 +36 0.362665653229 0.901047587395 +SURF 0x10 +mat 1 +refs 4 +16 0.316675305367 0.975417852402 +3 0.289561390877 0.950381398201 +12 0.362630009651 0.953957617283 +23 0.376766562462 0.979632139206 +SURF 0x10 +mat 1 +refs 4 +12 0.362630009651 0.953957617283 +2 0.406866937876 0.952373862267 +14 0.417133897543 0.97455227375 +23 0.376766562462 0.979632139206 +SURF 0x10 +mat 1 +refs 4 +14 0.417133897543 0.97455227375 +5 0.400777935982 0.990642249584 +15 0.389207154512 0.990633666515 +23 0.376766562462 0.979632139206 +SURF 0x10 +mat 1 +refs 4 +15 0.389207154512 0.990633666515 +4 0.377636313438 0.990625143051 +16 0.316675305367 0.975417852402 +23 0.376766562462 0.979632139206 +SURF 0x10 +mat 1 +refs 3 +131 0.271566152573 0.957773983479 +48 0.28139436245 0.95915210247 +24 0.284513086081 0.97585350275 +SURF 0x10 +mat 1 +refs 4 +16 0.316675305367 0.975417852402 +4 0.377636313438 0.990625143051 +130 0.337620407343 0.990774929523 +24 0.284513086081 0.97585350275 +SURF 0x10 +mat 1 +refs 3 +135 0.473882973194 0.964791893959 +118 0.452077835798 0.977524220943 +38 0.446298629045 0.958582818508 +SURF 0x10 +mat 1 +refs 4 +14 0.417133897543 0.97455227375 +118 0.452077835798 0.977524220943 +129 0.404634833336 0.990645110607 +5 0.400777935982 0.990642249584 +SURF 0x10 +mat 1 +refs 3 +131 0.271566152573 0.957773983479 +117 0.262399971485 0.924507200718 +47 0.268147498369 0.923316538334 +SURF 0x10 +mat 1 +refs 3 +17 0.122052676976 0.952579438686 +27 0.158451244235 0.960716187954 +117 0.118145793676 0.991288721561 +SURF 0x10 +mat 1 +refs 3 +18 0.213110819459 0.986056566238 +6 0.185706973076 0.960902452469 +28 0.197874635458 0.948402225971 +SURF 0x10 +mat 1 +refs 4 +19 0.180999964476 0.892077207565 +7 0.1708291471 0.859111905098 +20 0.201171845198 0.821574509144 +25 0.221290886402 0.895874321461 +SURF 0x10 +mat 1 +refs 3 +1 0.180963546038 0.805178046227 +20 0.201171845198 0.821574509144 +34 0.141209945083 0.797734022141 +SURF 0x10 +mat 1 +refs 3 +26 0.147954702377 0.877655744553 +114 0.118110485375 0.936010181904 +113 0.118110485375 0.88373708725 +SURF 0x10 +mat 1 +refs 3 +26 0.147954702377 0.877655744553 +7 0.1708291471 0.859111905098 +19 0.180999964476 0.892077207565 +SURF 0x10 +mat 1 +refs 3 +26 0.147954702377 0.877655744553 +19 0.180999964476 0.892077207565 +29 0.155394092202 0.920725345612 +SURF 0x10 +mat 1 +refs 3 +113 0.118110485375 0.88373708725 +112 0.118110485375 0.872187852859 +26 0.147954702377 0.877655744553 +SURF 0x10 +mat 1 +refs 3 +27 0.158451244235 0.960716187954 +6 0.185706973076 0.960902452469 +18 0.213110819459 0.986056566238 +SURF 0x10 +mat 1 +refs 3 +27 0.158451244235 0.960716187954 +18 0.213110819459 0.986056566238 +47 0.162088871002 0.989650905132 +SURF 0x10 +mat 1 +refs 3 +28 0.197874635458 0.948402225971 +19 0.180999964476 0.892077207565 +25 0.221290886402 0.895874321461 +SURF 0x10 +mat 1 +refs 4 +114 0.118110485375 0.936010181904 +31 0.134748190641 0.93418866396 +30 0.136479228735 0.945006251335 +17 0.122052676976 0.952579438686 +SURF 0x10 +mat 1 +refs 4 +6 0.185706973076 0.960902452469 +27 0.158451244235 0.960716187954 +33 0.15194286406 0.950348258018 +32 0.169137448072 0.951661765575 +SURF 0x10 +mat 1 +refs 4 +27 0.158451244235 0.960716187954 +17 0.122052676976 0.952579438686 +30 0.136479228735 0.945006251335 +33 0.15194286406 0.950348258018 +SURF 0x10 +mat 1 +refs 3 +6 0.185706973076 0.960902452469 +32 0.169137448072 0.951661765575 +28 0.197874635458 0.948402225971 +SURF 0x10 +mat 1 +refs 3 +19 0.180999964476 0.892077207565 +28 0.197874635458 0.948402225971 +29 0.155394092202 0.920725345612 +SURF 0x10 +mat 1 +refs 3 +114 0.118110485375 0.936010181904 +26 0.147954702377 0.877655744553 +31 0.134748190641 0.93418866396 +SURF 0x10 +mat 1 +refs 3 +26 0.147954702377 0.877655744553 +29 0.155394092202 0.920725345612 +31 0.134748190641 0.93418866396 +SURF 0x10 +mat 1 +refs 3 +35 0.165318533778 0.853399336338 +20 0.201171845198 0.821574509144 +7 0.1708291471 0.859111905098 +SURF 0x10 +mat 1 +refs 3 +34 0.141209945083 0.797734022141 +115 0.118110433221 0.796990275383 +140 0.118110433221 0.788455665112 +SURF 0x10 +mat 1 +refs 3 +34 0.141209945083 0.797734022141 +140 0.118110433221 0.788455665112 +1 0.180963546038 0.805178046227 +SURF 0x10 +mat 1 +refs 4 +7 0.1708291471 0.859111905098 +26 0.147954702377 0.877655744553 +112 0.118110485375 0.872187852859 +103 0.118110485375 0.860872030258 +SURF 0x10 +mat 1 +refs 3 +35 0.165318533778 0.853399336338 +34 0.141209945083 0.797734022141 +20 0.201171845198 0.821574509144 +SURF 0x10 +mat 1 +refs 3 +100 0.118110433221 0.833317995071 +115 0.118110433221 0.796990275383 +34 0.141209945083 0.797734022141 +SURF 0x10 +mat 1 +refs 3 +7 0.1708291471 0.859111905098 +103 0.118110485375 0.860872030258 +35 0.165318533778 0.853399336338 +SURF 0x10 +mat 1 +refs 3 +34 0.141209945083 0.797734022141 +35 0.165318533778 0.853399336338 +100 0.118110433221 0.833317995071 +SURF 0x10 +mat 1 +refs 3 +103 0.118110485375 0.860872030258 +99 0.118110485375 0.847932100296 +35 0.165318533778 0.853399336338 +SURF 0x10 +mat 1 +refs 3 +99 0.118110485375 0.847932100296 +100 0.118110433221 0.833317995071 +35 0.165318533778 0.853399336338 +SURF 0x10 +mat 1 +refs 3 +36 0.362665653229 0.901047587395 +37 0.384703606367 0.891273140907 +2 0.406866937876 0.952373862267 +SURF 0x10 +mat 1 +refs 3 +17 0.122052676976 0.952579438686 +117 0.118145793676 0.991288721561 +114 0.118110485375 0.936010181904 +SURF 0x10 +mat 1 +refs 3 +38 0.446298629045 0.958582818508 +14 0.417133897543 0.97455227375 +2 0.406866937876 0.952373862267 +SURF 0x10 +mat 1 +refs 3 +38 0.446298629045 0.958582818508 +118 0.452077835798 0.977524220943 +14 0.417133897543 0.97455227375 +SURF 0x10 +mat 1 +refs 4 +31 0.134748190641 0.93418866396 +41 0.155086606741 0.936834037304 +40 0.156794562936 0.942720890045 +30 0.136479228735 0.945006251335 +SURF 0x10 +mat 1 +refs 4 +32 0.169137448072 0.951661765575 +33 0.15194286406 0.950348258018 +43 0.163370996714 0.945186316967 +42 0.170464381576 0.945879757404 +SURF 0x10 +mat 1 +refs 4 +33 0.15194286406 0.950348258018 +30 0.136479228735 0.945006251335 +40 0.156794562936 0.942720890045 +43 0.163370996714 0.945186316967 +SURF 0x10 +mat 1 +refs 4 +28 0.197874635458 0.948402225971 +32 0.169137448072 0.951661765575 +42 0.170464381576 0.945879757404 +44 0.176121026278 0.940733909607 +SURF 0x10 +mat 1 +refs 3 +28 0.197874635458 0.948402225971 +44 0.176121026278 0.940733909607 +46 0.171451002359 0.933810114861 +SURF 0x10 +mat 1 +refs 4 +31 0.134748190641 0.93418866396 +29 0.155394092202 0.920725345612 +45 0.160332128406 0.930436372757 +41 0.155086606741 0.936834037304 +SURF 0x10 +mat 1 +refs 3 +46 0.171451002359 0.933810114861 +45 0.160332128406 0.930436372757 +29 0.155394092202 0.920725345612 +SURF 0x10 +mat 1 +refs 3 +46 0.171451002359 0.933810114861 +29 0.155394092202 0.920725345612 +28 0.197874635458 0.948402225971 +SURF 0x10 +mat 1 +refs 4 +4 0.377636313438 0.990625143051 +5 0.400777935982 0.990642249584 +129 0.404634833336 0.990645110607 +130 0.337620407343 0.990774929523 +SURF 0x10 +mat 1 +refs 3 +4 0.377636313438 0.990625143051 +15 0.389207154512 0.990633666515 +5 0.400777935982 0.990642249584 +SURF 0x10 +mat 1 +refs 3 +13 0.31151008606 0.855280399323 +25 0.287548393011 0.855137884617 +20 0.290701985359 0.801119506359 +SURF 0x10 +mat 1 +refs 3 +1 0.307449609041 0.789198696613 +13 0.31151008606 0.855280399323 +20 0.290701985359 0.801119506359 +SURF 0x10 +mat 1 +refs 3 +47 0.162088871002 0.989650905132 +117 0.118145793676 0.991288721561 +27 0.158451244235 0.960716187954 +SURF 0x10 +mat 1 +refs 3 +47 0.268147498369 0.923316538334 +18 0.280818164349 0.920703291893 +3 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +47 0.268147498369 0.923316538334 +3 0.289561390877 0.950381398201 +48 0.28139436245 0.95915210247 +SURF 0x10 +mat 1 +refs 3 +48 0.28139436245 0.95915210247 +131 0.271566152573 0.957773983479 +47 0.268147498369 0.923316538334 +SURF 0x10 +mat 1 +refs 3 +48 0.28139436245 0.95915210247 +3 0.289561390877 0.950381398201 +16 0.316675305367 0.975417852402 +SURF 0x10 +mat 1 +refs 3 +48 0.28139436245 0.95915210247 +16 0.316675305367 0.975417852402 +24 0.284513086081 0.97585350275 +SURF 0x10 +mat 1 +refs 3 +13 0.31151008606 0.855280399323 +22 0.359618246555 0.844088196754 +49 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 3 +50 0.286218762398 0.886411964893 +25 0.287548393011 0.855137884617 +13 0.31151008606 0.855280399323 +SURF 0x10 +mat 1 +refs 3 +25 0.221290886402 0.895874321461 +50 0.22026604414 0.938890337944 +28 0.197874635458 0.948402225971 +SURF 0x10 +mat 1 +refs 3 +50 0.22026604414 0.938890337944 +18 0.213110819459 0.986056566238 +28 0.197874635458 0.948402225971 +SURF 0x10 +mat 1 +refs 3 +51 0.300535708666 0.907812356949 +13 0.31151008606 0.855280399323 +49 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 3 +13 0.31151008606 0.855280399323 +51 0.300535708666 0.907812356949 +50 0.286218762398 0.886411964893 +SURF 0x10 +mat 1 +refs 3 +49 0.339443683624 0.872171998024 +52 0.31214672327 0.931157112122 +51 0.300535708666 0.907812356949 +SURF 0x10 +mat 1 +refs 3 +3 0.289561390877 0.950381398201 +53 0.341398507357 0.949139118195 +12 0.362630009651 0.953957617283 +SURF 0x10 +mat 1 +refs 3 +53 0.341398507357 0.949139118195 +36 0.362665653229 0.901047587395 +12 0.362630009651 0.953957617283 +SURF 0x10 +mat 1 +refs 3 +36 0.362665653229 0.901047587395 +53 0.341398507357 0.949139118195 +52 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +53 0.341398507357 0.949139118195 +3 0.289561390877 0.950381398201 +52 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +50 0.286218762398 0.886411964893 +54 0.287890046835 0.920057177544 +18 0.280818164349 0.920703291893 +SURF 0x10 +mat 1 +refs 3 +54 0.287890046835 0.920057177544 +3 0.289561390877 0.950381398201 +18 0.280818164349 0.920703291893 +SURF 0x10 +mat 1 +refs 3 +54 0.287890046835 0.920057177544 +50 0.286218762398 0.886411964893 +51 0.300535708666 0.907812356949 +SURF 0x10 +mat 1 +refs 3 +3 0.289561390877 0.950381398201 +55 0.295048564672 0.927851438522 +52 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +55 0.295048564672 0.927851438522 +51 0.300535708666 0.907812356949 +52 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +51 0.300535708666 0.907812356949 +55 0.295048564672 0.927851438522 +54 0.287890046835 0.920057177544 +SURF 0x10 +mat 1 +refs 3 +55 0.295048564672 0.927851438522 +3 0.289561390877 0.950381398201 +54 0.287890046835 0.920057177544 +SURF 0x10 +mat 1 +refs 3 +37 0.384703606367 0.891273140907 +56 0.384303838015 0.866472363472 +11 0.412697792053 0.852349877357 +SURF 0x10 +mat 1 +refs 3 +56 0.384303838015 0.866472363472 +22 0.359618246555 0.844088196754 +11 0.412697792053 0.852349877357 +SURF 0x10 +mat 1 +refs 3 +49 0.339443683624 0.872171998024 +57 0.347176134586 0.895734369755 +52 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +57 0.347176134586 0.895734369755 +36 0.362665653229 0.901047587395 +52 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +56 0.384303838015 0.866472363472 +58 0.36255222559 0.855814933777 +22 0.359618246555 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +58 0.36255222559 0.855814933777 +49 0.339443683624 0.872171998024 +22 0.359618246555 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +59 0.379167675972 0.797822773457 +21 0.37646239996 0.764855146408 +8 0.411193162203 0.766271114349 +SURF 0x10 +mat 1 +refs 3 +0 0.416451245546 0.808407723904 +59 0.379167675972 0.797822773457 +8 0.411193162203 0.766271114349 +SURF 0x10 +mat 1 +refs 3 +59 0.379167675972 0.797822773457 +9 0.32831415534 0.822519540787 +21 0.37646239996 0.764855146408 +SURF 0x10 +mat 1 +refs 3 +59 0.379167675972 0.797822773457 +11 0.412697792053 0.852349877357 +22 0.359618246555 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +9 0.32831415534 0.822519540787 +59 0.379167675972 0.797822773457 +22 0.359618246555 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +59 0.379167675972 0.797822773457 +0 0.416451245546 0.808407723904 +11 0.412697792053 0.852349877357 +SURF 0x10 +mat 1 +refs 3 +11 0.412697792053 0.852349877357 +60 0.431322872639 0.904022395611 +37 0.384703606367 0.891273140907 +SURF 0x10 +mat 1 +refs 3 +60 0.431322872639 0.904022395611 +2 0.406866937876 0.952373862267 +37 0.384703606367 0.891273140907 +SURF 0x10 +mat 1 +refs 3 +60 0.431322872639 0.904022395611 +39 0.463865160942 0.889750778675 +38 0.446298629045 0.958582818508 +SURF 0x10 +mat 1 +refs 3 +2 0.406866937876 0.952373862267 +60 0.431322872639 0.904022395611 +38 0.446298629045 0.958582818508 +SURF 0x10 +mat 1 +refs 4 +37 0.384703606367 0.891273140907 +36 0.362665653229 0.901047587395 +61 0.362665653229 0.901047587395 +62 0.384703606367 0.891273140907 +SURF 0x10 +mat 1 +refs 4 +56 0.384303838015 0.866472363472 +37 0.384703606367 0.891273140907 +62 0.384703606367 0.891273140907 +63 0.384303838015 0.866472363472 +SURF 0x10 +mat 1 +refs 4 +57 0.347176134586 0.895734369755 +49 0.339443683624 0.872171998024 +65 0.339443683624 0.872171998024 +64 0.347176134586 0.895734369755 +SURF 0x10 +mat 1 +refs 4 +36 0.362665653229 0.901047587395 +57 0.347176134586 0.895734369755 +64 0.347176134586 0.895734369755 +61 0.362665653229 0.901047587395 +SURF 0x10 +mat 1 +refs 4 +49 0.339443683624 0.872171998024 +58 0.36255222559 0.855814933777 +66 0.36255222559 0.855814933777 +65 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 4 +58 0.36255222559 0.855814933777 +56 0.384303838015 0.866472363472 +63 0.384303838015 0.866472363472 +66 0.36255222559 0.855814933777 +SURF 0x10 +mat 1 +refs 3 +62 0.384703606367 0.891273140907 +61 0.362665653229 0.901047587395 +64 0.347176134586 0.895734369755 +SURF 0x10 +mat 1 +refs 3 +62 0.384703606367 0.891273140907 +64 0.347176134586 0.895734369755 +65 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 3 +63 0.384303838015 0.866472363472 +62 0.384703606367 0.891273140907 +65 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 3 +63 0.384303838015 0.866472363472 +65 0.339443683624 0.872171998024 +66 0.36255222559 0.855814933777 +SURF 0x10 +mat 1 +refs 3 +70 0.38430377841 0.866472303867 +67 0.36255222559 0.855814933777 +68 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 3 +70 0.38430377841 0.866472303867 +68 0.339443683624 0.872171998024 +71 0.384703606367 0.891273140907 +SURF 0x10 +mat 1 +refs 3 +71 0.384703606367 0.891273140907 +68 0.339443683624 0.872171998024 +69 0.347176134586 0.895734369755 +SURF 0x10 +mat 1 +refs 3 +71 0.384703606367 0.891273140907 +69 0.347176134586 0.895734369755 +72 0.362665653229 0.901047587395 +SURF 0x10 +mat 1 +refs 4 +75 0.36255222559 0.855814933777 +67 0.36255222559 0.855814933777 +70 0.38430377841 0.866472303867 +77 0.38430377841 0.866472303867 +SURF 0x10 +mat 1 +refs 4 +84 0.339443683624 0.872171998024 +68 0.339443683624 0.872171998024 +67 0.36255222559 0.855814933777 +75 0.36255222559 0.855814933777 +SURF 0x10 +mat 1 +refs 4 +98 0.362665653229 0.901047587395 +72 0.362665653229 0.901047587395 +69 0.347176134586 0.895734369755 +76 0.347176134586 0.895734369755 +SURF 0x10 +mat 1 +refs 4 +76 0.347176134586 0.895734369755 +69 0.347176134586 0.895734369755 +68 0.339443683624 0.872171998024 +84 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 4 +77 0.38430377841 0.866472303867 +70 0.38430377841 0.866472303867 +71 0.384703606367 0.891273140907 +97 0.384703606367 0.891273140907 +SURF 0x10 +mat 1 +refs 4 +97 0.384703606367 0.891273140907 +71 0.384703606367 0.891273140907 +72 0.362665653229 0.901047587395 +98 0.362665653229 0.901047587395 +SURF 0x10 +mat 1 +refs 3 +149 0.406866937876 0.952373862267 +95 0.446298629045 0.958582818508 +73 0.431322872639 0.904022395611 +SURF 0x10 +mat 1 +refs 3 +73 0.431322872639 0.904022395611 +95 0.446298629045 0.958582818508 +94 0.463865160942 0.88975083828 +SURF 0x10 +mat 1 +refs 3 +73 0.431322872639 0.904022395611 +97 0.384703606367 0.891273140907 +149 0.406866937876 0.952373862267 +SURF 0x10 +mat 1 +refs 3 +138 0.412697792053 0.852349996567 +97 0.384703606367 0.891273140907 +73 0.431322872639 0.904022395611 +SURF 0x10 +mat 1 +refs 3 +74 0.379167675972 0.797822773457 +138 0.412697792053 0.852349996567 +151 0.416451245546 0.808407723904 +SURF 0x10 +mat 1 +refs 3 +142 0.32831415534 0.822519421577 +121 0.35961830616 0.844088196754 +74 0.379167675972 0.797822773457 +SURF 0x10 +mat 1 +refs 3 +74 0.379167675972 0.797822773457 +121 0.35961830616 0.844088196754 +138 0.412697792053 0.852349996567 +SURF 0x10 +mat 1 +refs 3 +74 0.379167675972 0.797822773457 +124 0.37646239996 0.766812205315 +142 0.32831415534 0.822519421577 +SURF 0x10 +mat 1 +refs 3 +151 0.416451245546 0.808407723904 +143 0.411193162203 0.766271114349 +74 0.379167675972 0.797822773457 +SURF 0x10 +mat 1 +refs 3 +74 0.379167675972 0.797822773457 +143 0.411193162203 0.766271114349 +124 0.37646239996 0.766812205315 +SURF 0x10 +mat 1 +refs 3 +75 0.36255222559 0.855814933777 +121 0.35961830616 0.844088196754 +84 0.339443683624 0.872171998024 +SURF 0x10 +mat 1 +refs 3 +77 0.38430377841 0.866472303867 +121 0.35961830616 0.844088196754 +75 0.36255222559 0.855814933777 +SURF 0x10 +mat 1 +refs 3 +76 0.347176134586 0.895734369755 +81 0.31214672327 0.931157112122 +98 0.362665653229 0.901047587395 +SURF 0x10 +mat 1 +refs 3 +84 0.339443683624 0.872171998024 +81 0.31214672327 0.931157112122 +76 0.347176134586 0.895734369755 +SURF 0x10 +mat 1 +refs 3 +77 0.38430377841 0.866472303867 +138 0.412697792053 0.852349996567 +121 0.35961830616 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +97 0.384703606367 0.891273140907 +138 0.412697792053 0.852349996567 +77 0.38430377841 0.866472303867 +SURF 0x10 +mat 1 +refs 3 +78 0.295048564672 0.927851438522 +79 0.287890046835 0.920057117939 +148 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +82 0.300535708666 0.907812356949 +79 0.287890046835 0.920057117939 +78 0.295048564672 0.927851438522 +SURF 0x10 +mat 1 +refs 3 +78 0.295048564672 0.927851438522 +81 0.31214672327 0.931157112122 +82 0.300535708666 0.907812356949 +SURF 0x10 +mat 1 +refs 3 +148 0.289561390877 0.950381398201 +81 0.31214672327 0.931157112122 +78 0.295048564672 0.927851438522 +SURF 0x10 +mat 1 +refs 3 +79 0.287890046835 0.920057117939 +82 0.300535708666 0.907812356949 +83 0.286218762398 0.886411964893 +SURF 0x10 +mat 1 +refs 3 +79 0.287890046835 0.920057117939 +127 0.280818164349 0.920703411102 +148 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +83 0.286218762398 0.886411964893 +127 0.280818164349 0.920703411102 +79 0.287890046835 0.920057117939 +SURF 0x10 +mat 1 +refs 3 +80 0.341398507357 0.949139118195 +81 0.31214672327 0.931157112122 +148 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +98 0.362665653229 0.901047587395 +81 0.31214672327 0.931157112122 +80 0.341398507357 0.949139118195 +SURF 0x10 +mat 1 +refs 3 +80 0.341398507357 0.949139118195 +137 0.362630009651 0.953957617283 +98 0.362665653229 0.901047587395 +SURF 0x10 +mat 1 +refs 3 +148 0.289561390877 0.950381398201 +137 0.362630009651 0.953957617283 +80 0.341398507357 0.949139118195 +SURF 0x10 +mat 1 +refs 3 +84 0.339443683624 0.872171998024 +82 0.300535708666 0.907812356949 +81 0.31214672327 0.931157112122 +SURF 0x10 +mat 1 +refs 3 +136 0.31151008606 0.855280458927 +83 0.286218762398 0.886411964893 +82 0.300535708666 0.907812356949 +SURF 0x10 +mat 1 +refs 3 +82 0.300535708666 0.907812356949 +84 0.339443683624 0.872171998024 +136 0.31151008606 0.855280458927 +SURF 0x10 +mat 1 +refs 3 +83 0.0160583332181 0.938890337944 +109 0.0384497419 0.948402225971 +127 0.0232134982944 0.986056685448 +SURF 0x10 +mat 1 +refs 3 +116 0.0150334835052 0.895874321461 +109 0.0384497419 0.948402225971 +83 0.0160583332181 0.938890337944 +SURF 0x10 +mat 1 +refs 3 +83 0.286218762398 0.886411964893 +136 0.31151008606 0.855280458927 +116 0.287548393011 0.855137884617 +SURF 0x10 +mat 1 +refs 3 +136 0.31151008606 0.855280458927 +84 0.339443683624 0.872171998024 +121 0.35961830616 0.844088196754 +SURF 0x10 +mat 1 +refs 3 +85 0.28139436245 0.95915210247 +24 0.284513086081 0.97585350275 +132 0.316675305367 0.975417852402 +SURF 0x10 +mat 1 +refs 3 +85 0.28139436245 0.95915210247 +132 0.316675305367 0.975417852402 +148 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +85 0.28139436245 0.95915210247 +86 0.268147498369 0.923316538334 +131 0.271566152573 0.957773983479 +SURF 0x10 +mat 1 +refs 3 +86 0.268147498369 0.923316538334 +85 0.28139436245 0.95915210247 +148 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +86 0.268147498369 0.923316538334 +148 0.289561390877 0.950381398201 +127 0.280818164349 0.920703411102 +SURF 0x10 +mat 1 +refs 3 +86 0.0742354989052 0.989650905132 +110 0.0778730735183 0.960716187954 +117 0.118145793676 0.991288721561 +SURF 0x10 +mat 1 +refs 3 +150 0.307449609041 0.789198696613 +125 0.290701985359 0.801119506359 +136 0.31151008606 0.855280458927 +SURF 0x10 +mat 1 +refs 3 +136 0.31151008606 0.855280458927 +125 0.290701985359 0.801119506359 +116 0.287548393011 0.855137884617 +SURF 0x10 +mat 1 +refs 3 +147 0.377636313438 0.990625143051 +146 0.400777935982 0.99064218998 +133 0.389207154512 0.990633666515 +SURF 0x10 +mat 1 +refs 4 +147 0.377636313438 0.990625143051 +130 0.337620407343 0.990774929523 +129 0.404634833336 0.990645110607 +146 0.400777935982 0.99064218998 +SURF 0x10 +mat 1 +refs 3 +87 0.064873367548 0.933810114861 +109 0.0384497419 0.948402225971 +108 0.0809302330017 0.920725345612 +SURF 0x10 +mat 1 +refs 3 +87 0.064873367548 0.933810114861 +108 0.0809302330017 0.920725345612 +88 0.0759922415018 0.930436372757 +SURF 0x10 +mat 1 +refs 4 +106 0.101576171815 0.93418866396 +92 0.0812377631664 0.936834037304 +88 0.0759922415018 0.930436372757 +108 0.0809302330017 0.920725345612 +SURF 0x10 +mat 1 +refs 3 +109 0.0384497419 0.948402225971 +87 0.064873367548 0.933810114861 +89 0.0602034367621 0.940733909607 +SURF 0x10 +mat 1 +refs 4 +109 0.0384497419 0.948402225971 +89 0.0602034367621 0.940733909607 +91 0.0658599883318 0.945879757404 +105 0.0671869218349 0.951661765575 +SURF 0x10 +mat 1 +refs 4 +104 0.084381505847 0.950348258018 +90 0.0729533806443 0.945186316967 +93 0.0795298069715 0.942720890045 +107 0.0998450890183 0.945006251335 +SURF 0x10 +mat 1 +refs 4 +105 0.0671869218349 0.951661765575 +91 0.0658599883318 0.945879757404 +90 0.0729533806443 0.945186316967 +104 0.084381505847 0.950348258018 +SURF 0x10 +mat 1 +refs 4 +106 0.101576171815 0.93418866396 +107 0.0998450890183 0.945006251335 +93 0.0795298069715 0.942720890045 +92 0.0812377631664 0.936834037304 +SURF 0x10 +mat 1 +refs 3 +95 0.446298629045 0.958582818508 +134 0.417133897543 0.97455227375 +118 0.452077835798 0.977524220943 +SURF 0x10 +mat 1 +refs 3 +95 0.446298629045 0.958582818508 +149 0.406866937876 0.952373862267 +134 0.417133897543 0.97455227375 +SURF 0x10 +mat 1 +refs 3 +128 0.114271596074 0.952579438686 +114 0.118110485375 0.936010181904 +117 0.118145793676 0.991288721561 +SURF 0x10 +mat 1 +refs 3 +98 0.362665653229 0.901047587395 +149 0.406866937876 0.952373862267 +97 0.384703606367 0.891273140907 +SURF 0x10 +mat 1 +refs 3 +99 0.118110485375 0.847932100296 +101 0.0710058361292 0.853399336338 +100 0.118110433221 0.833317995071 +SURF 0x10 +mat 1 +refs 3 +103 0.118110485375 0.860872030258 +101 0.0710058361292 0.853399336338 +99 0.118110485375 0.847932100296 +SURF 0x10 +mat 1 +refs 3 +102 0.0951144248247 0.797734022141 +100 0.118110433221 0.833317995071 +101 0.0710058361292 0.853399336338 +SURF 0x10 +mat 1 +refs 3 +144 0.0654952153563 0.859112083912 +101 0.0710058361292 0.853399336338 +103 0.118110485375 0.860872030258 +SURF 0x10 +mat 1 +refs 3 +100 0.118110433221 0.833317995071 +102 0.0951144248247 0.797734022141 +115 0.118110433221 0.796990275383 +SURF 0x10 +mat 1 +refs 3 +101 0.0710058361292 0.853399336338 +125 0.0351525247097 0.821574509144 +102 0.0951144248247 0.797734022141 +SURF 0x10 +mat 1 +refs 4 +144 0.0654952153563 0.859112083912 +103 0.118110485375 0.860872030258 +112 0.118110485375 0.872187852859 +111 0.088369615376 0.877655744553 +SURF 0x10 +mat 1 +refs 3 +102 0.0951144248247 0.797734022141 +150 0.0553608238697 0.805178046227 +140 0.118110433221 0.788455665112 +SURF 0x10 +mat 1 +refs 3 +102 0.0951144248247 0.797734022141 +140 0.118110433221 0.788455665112 +115 0.118110433221 0.796990275383 +SURF 0x10 +mat 1 +refs 3 +101 0.0710058361292 0.853399336338 +144 0.0654952153563 0.859112083912 +125 0.0351525247097 0.821574509144 +SURF 0x10 +mat 1 +refs 3 +111 0.088369615376 0.877655744553 +106 0.101576171815 0.93418866396 +108 0.0809302330017 0.920725345612 +SURF 0x10 +mat 1 +refs 3 +114 0.118110485375 0.936010181904 +106 0.101576171815 0.93418866396 +111 0.088369615376 0.877655744553 +SURF 0x10 +mat 1 +refs 3 +126 0.0553244575858 0.892077207565 +108 0.0809302330017 0.920725345612 +109 0.0384497419 0.948402225971 +SURF 0x10 +mat 1 +refs 3 +145 0.050617352128 0.960902452469 +109 0.0384497419 0.948402225971 +105 0.0671869218349 0.951661765575 +SURF 0x10 +mat 1 +refs 4 +110 0.0778730735183 0.960716187954 +104 0.084381505847 0.950348258018 +107 0.0998450890183 0.945006251335 +128 0.114271596074 0.952579438686 +SURF 0x10 +mat 1 +refs 4 +145 0.050617352128 0.960902452469 +105 0.0671869218349 0.951661765575 +104 0.084381505847 0.950348258018 +110 0.0778730735183 0.960716187954 +SURF 0x10 +mat 1 +refs 4 +114 0.118110485375 0.936010181904 +128 0.114271596074 0.952579438686 +107 0.0998450890183 0.945006251335 +106 0.101576171815 0.93418866396 +SURF 0x10 +mat 1 +refs 3 +109 0.0384497419 0.948402225971 +116 0.0150334835052 0.895874321461 +126 0.0553244575858 0.892077207565 +SURF 0x10 +mat 1 +refs 3 +110 0.0778730735183 0.960716187954 +86 0.0742354989052 0.989650905132 +127 0.0232134982944 0.986056685448 +SURF 0x10 +mat 1 +refs 3 +110 0.0778730735183 0.960716187954 +127 0.0232134982944 0.986056685448 +145 0.050617352128 0.960902452469 +SURF 0x10 +mat 1 +refs 3 +113 0.118110485375 0.88373708725 +111 0.088369615376 0.877655744553 +112 0.118110485375 0.872187852859 +SURF 0x10 +mat 1 +refs 3 +111 0.088369615376 0.877655744553 +108 0.0809302330017 0.920725345612 +126 0.0553244575858 0.892077207565 +SURF 0x10 +mat 1 +refs 3 +111 0.088369615376 0.877655744553 +126 0.0553244575858 0.892077207565 +144 0.0654952153563 0.859112083912 +SURF 0x10 +mat 1 +refs 3 +111 0.088369615376 0.877655744553 +113 0.118110485375 0.88373708725 +114 0.118110485375 0.936010181904 +SURF 0x10 +mat 1 +refs 3 +150 0.0553608238697 0.805178046227 +102 0.0951144248247 0.797734022141 +125 0.0351525247097 0.821574509144 +SURF 0x10 +mat 1 +refs 4 +126 0.0553244575858 0.892077207565 +116 0.0150334835052 0.895874321461 +125 0.0351525247097 0.821574509144 +144 0.0654952153563 0.859112083912 +SURF 0x10 +mat 1 +refs 3 +127 0.0232134982944 0.986056685448 +109 0.0384497419 0.948402225971 +145 0.050617352128 0.960902452469 +SURF 0x10 +mat 1 +refs 3 +128 0.114271596074 0.952579438686 +117 0.118145793676 0.991288721561 +110 0.0778730735183 0.960716187954 +SURF 0x10 +mat 1 +refs 3 +131 0.271566152573 0.957773983479 +86 0.268147498369 0.923316538334 +117 0.262399971485 0.924507200718 +SURF 0x10 +mat 1 +refs 4 +134 0.417133897543 0.97455227375 +146 0.400777935982 0.99064218998 +129 0.404634833336 0.990645110607 +118 0.452077835798 0.977524220943 +SURF 0x10 +mat 1 +refs 3 +135 0.473882973194 0.964791893959 +95 0.446298629045 0.958582818508 +118 0.452077835798 0.977524220943 +SURF 0x10 +mat 1 +refs 4 +132 0.316675305367 0.975417852402 +24 0.284513086081 0.97585350275 +130 0.337620407343 0.990774929523 +147 0.377636313438 0.990625143051 +SURF 0x10 +mat 1 +refs 3 +131 0.271566152573 0.957773983479 +24 0.284513086081 0.97585350275 +85 0.28139436245 0.95915210247 +SURF 0x10 +mat 1 +refs 4 +133 0.389207154512 0.990633666515 +119 0.376766502857 0.979632198811 +132 0.316675305367 0.975417852402 +147 0.377636313438 0.990625143051 +SURF 0x10 +mat 1 +refs 4 +134 0.417133897543 0.97455227375 +119 0.376766502857 0.979632198811 +133 0.389207154512 0.990633666515 +146 0.400777935982 0.99064218998 +SURF 0x10 +mat 1 +refs 4 +137 0.362630009651 0.953957617283 +119 0.376766502857 0.979632198811 +134 0.417133897543 0.97455227375 +149 0.406866937876 0.952373862267 +SURF 0x10 +mat 1 +refs 4 +132 0.316675305367 0.975417852402 +119 0.376766502857 0.979632198811 +137 0.362630009651 0.953957617283 +148 0.289561390877 0.950381398201 +SURF 0x10 +mat 1 +refs 3 +149 0.406866937876 0.952373862267 +98 0.362665653229 0.901047587395 +137 0.362630009651 0.953957617283 +SURF 0x10 +mat 1 +refs 4 +136 0.31151008606 0.855280458927 +121 0.35961830616 0.844088196754 +142 0.32831415534 0.822519421577 +150 0.307449609041 0.789198696613 +SURF 0x10 +mat 1 +refs 4 +143 0.411193162203 0.766271114349 +151 0.416451245546 0.808407723904 +139 0.44458052516 0.801257491112 +122 0.432618618011 0.768745303154 +SURF 0x10 +mat 1 +refs 4 +141 0.0496791303158 0.772843122482 +123 0.118110433221 0.774500489235 +140 0.118110433221 0.788455665112 +150 0.0553608238697 0.805178046227 +SURF 0x10 +mat 1 +refs 4 +142 0.0179254561663 0.851009130478 +124 0.0312766954303 0.774386405945 +141 0.0496791303158 0.772843122482 +150 0.0553608238697 0.805178046227 +SURF 0x10 +mat 1 +refs 3 +90 0.0729533806443 0.945186316967 +91 0.0658599883318 0.945879757404 +89 0.0602034367621 0.940733909607 +SURF 0x10 +mat 1 +refs 3 +93 0.0795298069715 0.942720890045 +90 0.0729533806443 0.945186316967 +89 0.0602034367621 0.940733909607 +SURF 0x10 +mat 1 +refs 3 +92 0.0812377631664 0.936834037304 +93 0.0795298069715 0.942720890045 +89 0.0602034367621 0.940733909607 +SURF 0x10 +mat 1 +refs 3 +92 0.0812377631664 0.936834037304 +89 0.0602034367621 0.940733909607 +87 0.064873367548 0.933810114861 +SURF 0x10 +mat 1 +refs 3 +88 0.0759922415018 0.930436372757 +92 0.0812377631664 0.936834037304 +87 0.064873367548 0.933810114861 +SURF 0x10 +mat 1 +refs 3 +44 0.176121026278 0.940733909607 +42 0.170464381576 0.945879757404 +43 0.163370996714 0.945186316967 +SURF 0x10 +mat 1 +refs 3 +44 0.176121026278 0.940733909607 +43 0.163370996714 0.945186316967 +40 0.156794562936 0.942720890045 +SURF 0x10 +mat 1 +refs 3 +44 0.176121026278 0.940733909607 +40 0.156794562936 0.942720890045 +41 0.155086606741 0.936834037304 +SURF 0x10 +mat 1 +refs 3 +46 0.171451002359 0.933810114861 +44 0.176121026278 0.940733909607 +41 0.155086606741 0.936834037304 +SURF 0x10 +mat 1 +refs 3 +46 0.171451002359 0.933810114861 +41 0.155086606741 0.936834037304 +45 0.160332128406 0.930436372757 +SURF 0x10 +mat 1 +refs 4 +8 0.379167675972 0.797822773457 +21 0.37646239996 0.764855146408 +153 0.411193162203 0.766271114349 +152 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +21 0.218398869038 0.851009249687 +10 0.180963546038 0.805178046227 +154 0.186645239592 0.772843182087 +153 0.205047726631 0.774386405945 +SURF 0x10 +mat 1 +refs 4 +143 0.411193162203 0.766271114349 +122 0.416451245546 0.808407723904 +155 0.44458052516 0.801257491112 +156 0.432618618011 0.768745303154 +SURF 0x10 +mat 1 +refs 4 +123 0.0496791303158 0.772843122482 +141 0.118110433221 0.774500489235 +158 0.118110433221 0.788455665112 +157 0.0553608238697 0.805178046227 +SURF 0x10 +mat 1 +refs 4 +141 0.0179254561663 0.851009130478 +124 0.0312766954303 0.774386405945 +159 0.0496791303158 0.772843122482 +158 0.0553608238697 0.805178046227 +SURF 0x10 +mat 1 +refs 4 +124 0.379167675972 0.797822773457 +143 0.411193162203 0.766271114349 +156 0.37646239996 0.766812205315 +159 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +122 0.411193162203 0.766271114349 +8 0.432618618011 0.768745303154 +152 0.44458052516 0.801257491112 +155 0.416451245546 0.808407723904 +SURF 0x10 +mat 1 +refs 4 +10 0.186645239592 0.772843182087 +123 0.180963546038 0.805178046227 +157 0.118110433221 0.788455665112 +154 0.118110433221 0.774500489235 +SURF 0x10 +mat 1 +refs 4 +152 0.379167675972 0.797822773457 +153 0.37646239996 0.764855146408 +161 0.411193162203 0.766271114349 +160 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +153 0.218398869038 0.851009249687 +154 0.180963546038 0.805178046227 +162 0.186645239592 0.772843182087 +161 0.205047726631 0.774386405945 +SURF 0x10 +mat 1 +refs 4 +156 0.411193162203 0.766271114349 +155 0.416451245546 0.808407723904 +163 0.44458052516 0.801257491112 +164 0.432618618011 0.768745303154 +SURF 0x10 +mat 1 +refs 4 +157 0.0496791303158 0.772843122482 +158 0.118110433221 0.774500489235 +166 0.118110433221 0.788455665112 +165 0.0553608238697 0.805178046227 +SURF 0x10 +mat 1 +refs 4 +158 0.0179254561663 0.851009130478 +159 0.0312766954303 0.774386405945 +167 0.0496791303158 0.772843122482 +166 0.0553608238697 0.805178046227 +SURF 0x10 +mat 1 +refs 4 +159 0.379167675972 0.797822773457 +156 0.411193162203 0.766271114349 +164 0.37646239996 0.766812205315 +167 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +155 0.411193162203 0.766271114349 +152 0.432618618011 0.768745303154 +160 0.44458052516 0.801257491112 +163 0.416451245546 0.808407723904 +SURF 0x10 +mat 1 +refs 4 +154 0.186645239592 0.772843182087 +157 0.180963546038 0.805178046227 +165 0.118110433221 0.788455665112 +162 0.118110433221 0.774500489235 +SURF 0x10 +mat 1 +refs 4 +120 0.463153779507 0.818280816078 +178 0.43792578578 0.835315346718 +179 0.445896476507 0.822542250156 +175 0.453867137432 0.809769153595 +SURF 0x10 +mat 1 +refs 4 +179 0.44458052516 0.801257491112 +0 0.453867137432 0.809769153595 +139 0.445896476507 0.822542250156 +175 0.416451245546 0.808407723904 +SURF 0x10 +mat 1 +refs 4 +0 0.416451245546 0.808407723904 +179 0.445896476507 0.822542250156 +178 0.43792578578 0.835315346718 +11 0.412697792053 0.852349877357 +SURF 0x10 +mat 1 +refs 3 +176 0.463509470224 0.854015827179 +39 0.463865160942 0.889750778675 +168 0.438281476498 0.871050357819 +SURF 0x10 +mat 1 +refs 3 +168 0.438281476498 0.871050357819 +178 0.437925755978 0.835315346718 +176 0.463509470224 0.854015827179 +SURF 0x10 +mat 1 +refs 3 +120 0.463153779507 0.818280816078 +176 0.463509470224 0.854015827179 +178 0.437925755978 0.835315346718 +SURF 0x10 +mat 1 +refs 3 +178 0.437925755978 0.835315346718 +168 0.438281476498 0.871050357819 +11 0.412697792053 0.852349877357 +SURF 0x10 +mat 1 +refs 3 +177 0.473535180092 0.896576702595 +39 0.463865160942 0.889750778675 +176 0.463509470224 0.854015827179 +SURF 0x10 +mat 1 +refs 3 +176 0.463509470224 0.854015827179 +173 0.473179489374 0.860841751099 +177 0.473535180092 0.896576702595 +SURF 0x10 +mat 1 +refs 3 +96 0.483205199242 0.903402686119 +177 0.473535180092 0.896576702595 +173 0.473179489374 0.860841751099 +SURF 0x10 +mat 1 +refs 3 +173 0.473179489374 0.860841751099 +176 0.463509470224 0.854015827179 +120 0.463153779507 0.818280816078 +SURF 0x10 +mat 1 +refs 4 +96 0.483205199242 0.903402686119 +169 0.478544086218 0.934097290039 +180 0.476039618254 0.915337026119 +177 0.473535180092 0.896576762199 +SURF 0x10 +mat 1 +refs 4 +39 0.463865160942 0.889750778675 +177 0.473535180092 0.896576762199 +180 0.476039618254 0.915337026119 +38 0.446298629045 0.958582818508 +SURF 0x10 +mat 1 +refs 4 +38 0.446298629045 0.958582818508 +180 0.476039618254 0.915337026119 +169 0.478544086218 0.934097290039 +135 0.473882973194 0.964791893959 +SURF 0x10 +mat 1 +refs 3 +11 0.412697792053 0.852349877357 +168 0.438281476498 0.871050357819 +60 0.431322872639 0.904022395611 +SURF 0x10 +mat 1 +refs 3 +168 0.438281476498 0.871050357819 +39 0.463865160942 0.889750778675 +60 0.431322872639 0.904022395611 +SURF 0x10 +mat 1 +refs 3 +94 0.463865160942 0.88975083828 +172 0.438281476498 0.871050417423 +73 0.431322872639 0.904022395611 +SURF 0x10 +mat 1 +refs 3 +172 0.438281476498 0.871050417423 +138 0.412697792053 0.852349996567 +73 0.431322872639 0.904022395611 +SURF 0x10 +mat 1 +refs 4 +96 0.483205199242 0.903402686119 +171 0.473535180092 0.896576762199 +181 0.476039648056 0.915337026119 +169 0.478544086218 0.934097290039 +SURF 0x10 +mat 1 +refs 4 +135 0.473882973194 0.964791893959 +169 0.478544086218 0.934097290039 +181 0.476039648056 0.915337026119 +95 0.446298629045 0.958582818508 +SURF 0x10 +mat 1 +refs 4 +95 0.446298629045 0.958582818508 +181 0.476039648056 0.915337026119 +171 0.473535180092 0.896576762199 +94 0.463865160942 0.88975083828 +SURF 0x10 +mat 1 +refs 3 +170 0.463509470224 0.854015827179 +94 0.463865160942 0.88975083828 +171 0.473535180092 0.896576762199 +SURF 0x10 +mat 1 +refs 3 +171 0.473535180092 0.896576762199 +173 0.473179489374 0.860841751099 +170 0.463509470224 0.854015827179 +SURF 0x10 +mat 1 +refs 3 +120 0.463153779507 0.818280816078 +170 0.463509470224 0.854015827179 +173 0.473179489374 0.860841751099 +SURF 0x10 +mat 1 +refs 3 +173 0.473179489374 0.860841751099 +171 0.473535180092 0.896576762199 +96 0.483205199242 0.903402686119 +SURF 0x10 +mat 1 +refs 3 +172 0.4382815063 0.871050417423 +94 0.463865160942 0.88975083828 +170 0.463509470224 0.854015827179 +SURF 0x10 +mat 1 +refs 3 +170 0.463509470224 0.854015827179 +174 0.437925755978 0.835315346718 +172 0.4382815063 0.871050417423 +SURF 0x10 +mat 1 +refs 3 +138 0.412697792053 0.852349996567 +172 0.4382815063 0.871050417423 +174 0.437925755978 0.835315346718 +SURF 0x10 +mat 1 +refs 3 +174 0.437925755978 0.835315346718 +170 0.463509470224 0.854015827179 +120 0.463153779507 0.818280816078 +SURF 0x10 +mat 1 +refs 4 +120 0.463153779507 0.818280816078 +175 0.453867167234 0.809769153595 +182 0.445896446705 0.822542309761 +174 0.43792578578 0.835315406322 +SURF 0x10 +mat 1 +refs 4 +138 0.412697792053 0.852349996567 +174 0.43792578578 0.835315406322 +182 0.445896446705 0.822542309761 +151 0.416451245546 0.808407723904 +SURF 0x10 +mat 1 +refs 4 +151 0.416451245546 0.808407723904 +182 0.445896446705 0.822542309761 +175 0.453867167234 0.809769153595 +139 0.44458052516 0.801257491112 +kids 0 +OBJECT group +name "hand.R" +kids 2 +OBJECT poly +name "hand.R_0" +data 8 +Mesh.023 +crease 30 +numvert 8 +-0.006133 0.467113 -0.808634 +-0.003196 0.461048 -0.808633 +-0.003196 0.4733 -0.808601 +0.01083 0.473423 -0.807549 +0.014486 0.467605 -0.807535 +0.01083 0.462078 -0.807556 +0.005617 0.475362 -0.808551 +0.005617 0.459355 -0.808577 +numsurf 6 +SURF 0x10 +mat 1 +refs 3 +3 0.0 1.0 +2 1.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +2 1.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 1.0 +0 1.0 0.0 +2 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +0 1.0 0.0 +4 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 1.0 +1 1.0 0.0 +0 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +7 0.0 1.0 +1 1.0 0.0 +5 0.0 0.0 +kids 0 +OBJECT poly +name "hand.R_1" +data 8 +Mesh.023 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 142 +-0.024747 0.490108 -0.868876 +0.044126 0.468232 -0.95134 +0.02931 0.490582 -0.864826 +-0.043448 0.448373 -0.94655 +-0.024744 0.442891 -0.869001 +0.044108 0.491736 -0.954053 +0.02931 0.44686 -0.86485 +-0.056496 0.464036 -0.950289 +-0.036065 0.466262 -0.869006 +0.043405 0.46816 -0.86477 +0.009216 0.498056 -0.868685 +0.009216 0.436366 -0.868785 +0.041465 0.457764 -0.914955 +-0.009255 0.473917 -0.953082 +-0.038121 0.447131 -0.913315 +-0.03812 0.489265 -0.914978 +-0.008328 0.498867 -0.956275 +0.041465 0.491162 -0.914855 +0.0609 0.482118 -0.951337 +-0.057397 0.445776 -0.93188 +0.001672 0.454318 -0.912148 +0.001672 0.499607 -0.914867 +0.055654 0.465829 -0.912078 +-0.054383 0.45824 -0.909287 +0.01846 0.472551 -0.952951 +0.018313 0.496209 -0.954443 +-0.040906 0.49347 -0.938799 +-0.031357 0.469496 -0.940969 +0.048317 0.485157 -0.987261 +0.059419 0.484109 -0.983319 +0.048414 0.478457 -0.979128 +0.040188 0.476991 -0.979659 +0.026306 0.476338 -0.976582 +0.040012 0.483125 -0.988088 +0.024169 0.484373 -0.989965 +-0.001581 0.47498 -0.977715 +0.013743 0.475601 -0.977478 +-0.001884 0.483562 -0.991394 +0.013722 0.483204 -0.989555 +-0.010574 0.483905 -0.991481 +-0.03106 0.476042 -0.992087 +-0.010849 0.474677 -0.977041 +-0.031087 0.468181 -0.978116 +-0.048657 0.441158 -0.963258 +-0.06703 0.437778 -0.960829 +-0.059174 0.452215 -0.962909 +0.04944 0.470558 -0.995961 +0.058013 0.470416 -0.993445 +0.04945 0.467456 -0.988986 +0.037825 0.459919 -0.996238 +0.025007 0.459742 -0.99289 +0.037811 0.457118 -1.002889 +0.024669 0.455192 -1.003798 +0.001234 0.45604 -0.991396 +0.01229 0.456161 -0.991522 +-0.000913 0.45144 -1.002578 +0.012108 0.452043 -1.001356 +-0.011961 0.449154 -1.002788 +-0.028137 0.446775 -1.000458 +-0.012035 0.454892 -0.988548 +-0.028092 0.452385 -0.986907 +0.050582 0.454357 -0.996626 +0.056421 0.458111 -0.998621 +0.049932 0.453225 -0.990996 +0.035407 0.446057 -0.986574 +0.026097 0.446931 -0.985316 +0.035403 0.442004 -0.991056 +0.026077 0.441098 -0.99165 +0.000681 0.442817 -0.982309 +0.008664 0.442817 -0.982418 +0.00017 0.436687 -0.989116 +0.008463 0.437212 -0.988616 +-0.014645 0.434443 -0.986137 +-0.026229 0.431915 -0.983724 +-0.016206 0.441634 -0.978533 +-0.024996 0.440634 -0.977111 +-0.049002 0.440837 -0.981919 +-0.060369 0.438386 -0.988601 +-0.058327 0.450641 -0.983136 +-0.018997 0.447735 -0.823258 +-0.028081 0.466489 -0.823262 +-0.018997 0.485624 -0.823158 +0.02438 0.486004 -0.819908 +0.035688 0.468012 -0.819863 +0.02438 0.45092 -0.819928 +0.008256 0.492002 -0.823005 +0.008256 0.442499 -0.823085 +-0.006133 0.467113 -0.808634 +-0.003196 0.461048 -0.808633 +-0.003196 0.4733 -0.808601 +0.01083 0.473423 -0.807549 +0.014486 0.467605 -0.807535 +0.01083 0.462078 -0.807556 +0.005617 0.475362 -0.808551 +0.005617 0.459355 -0.808577 +0.054003 0.487459 -0.947681 +0.054009 0.473074 -0.946475 +0.032908 0.468018 -0.949117 +0.003627 0.470381 -0.949884 +0.032726 0.495845 -0.95131 +0.003647 0.501478 -0.951629 +-0.022884 0.500679 -0.946496 +0.05426 0.484963 -0.98553 +0.05432 0.481035 -0.980612 +0.044119 0.480129 -0.958342 +0.047684 0.481668 -0.983399 +0.033391 0.476147 -0.977307 +0.032071 0.484098 -0.989643 +0.040935 0.480074 -0.98411 +0.023951 0.481103 -0.980852 +0.00605 0.47467 -0.976689 +0.005863 0.483852 -0.991235 +0.014851 0.48029 -0.981086 +-0.003098 0.480312 -0.982229 +-0.020949 0.482385 -0.994139 +-0.009909 0.477977 -0.965893 +-0.019837 0.471211 -0.976303 +0.053996 0.47063 -0.995056 +0.05401 0.468781 -0.990905 +0.048897 0.468912 -0.992445 +0.03133 0.458694 -0.993576 +0.031177 0.454225 -1.003051 +0.038628 0.458588 -0.999603 +0.024011 0.457415 -0.998128 +0.006675 0.454986 -0.990287 +0.005406 0.449687 -1.001633 +0.012948 0.454155 -0.996274 +-0.000608 0.453755 -0.996886 +-0.020048 0.447295 -1.003043 +-0.02003 0.452992 -0.985759 +-0.029298 0.451408 -0.993369 +0.05344 0.455291 -0.997691 +0.053106 0.454807 -0.995029 +0.050389 0.452874 -0.993926 +0.035991 0.442348 -0.987137 +0.02538 0.44234 -0.986766 +0.00888 0.438388 -0.983735 +-0.000381 0.438089 -0.983956 +-0.020738 0.431777 -0.984711 +-0.026687 0.43473 -0.979319 +-0.008645 0.472707 -0.96727 +-0.015665 0.435664 -0.975916 +numsurf 166 +SURF 0x10 +mat 1 +refs 4 +14 0.84022539854 0.507817029953 +20 0.867323338985 0.506574332714 +11 0.87620472908 0.535124897957 +4 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 4 +11 0.87620472908 0.535124897957 +20 0.867323338985 0.506574332714 +12 0.893884718418 0.501197993755 +6 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 3 +13 0.859799325466 0.479333460331 +20 0.867323338985 0.506574332714 +27 0.842861533165 0.476667225361 +SURF 0x10 +mat 1 +refs 4 +17 0.893893361092 0.501265108585 +21 0.867085576057 0.504742860794 +10 0.876213371754 0.535192131996 +2 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 4 +15 0.876213371754 0.535192131996 +0 0.867085576057 0.504742860794 +10 0.840269207954 0.508153378963 +21 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 3 +15 0.840269207954 0.508153378963 +26 0.842920362949 0.477121174335 +7 0.830979704857 0.483685195446 +SURF 0x10 +mat 1 +refs 4 +12 0.893884718418 0.501197993755 +22 0.903694629669 0.501893639565 +9 0.899586796761 0.53483569622 +6 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 4 +9 0.899586796761 0.53483569622 +22 0.903694629669 0.501893639565 +17 0.893893361092 0.501265108585 +2 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 4 +8 0.840269207954 0.508153378963 +0 0.831306993961 0.509110808372 +15 0.845680773258 0.538942217827 +23 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +8 0.845680773258 0.538942217827 +23 0.831306993961 0.509110808372 +14 0.84022539854 0.507817029953 +4 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 4 +14 0.84022539854 0.507817029953 +23 0.831306993961 0.509110808372 +19 0.81484991312 0.485469847918 +3 0.830914318562 0.483180642128 +SURF 0x10 +mat 1 +refs 4 +19 0.81484991312 0.485469847918 +23 0.831306993961 0.509110808372 +15 0.840269207954 0.508153378963 +7 0.830979704857 0.483685195446 +SURF 0x10 +mat 1 +refs 3 +24 0.874306678772 0.477910578251 +12 0.893884718418 0.501197993755 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 3 +25 0.874339342117 0.478162705898 +21 0.867085576057 0.504742860794 +17 0.893893361092 0.501265108585 +SURF 0x10 +mat 1 +refs 3 +26 0.842920362949 0.477121174335 +15 0.840269207954 0.508153378963 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 3 +27 0.842861533165 0.476667225361 +14 0.84022539854 0.507817029953 +3 0.830914318562 0.483180642128 +SURF 0x10 +mat 1 +refs 3 +27 0.842861533165 0.476667225361 +20 0.867323338985 0.506574332714 +14 0.84022539854 0.507817029953 +SURF 0x10 +mat 1 +refs 4 +26 0.842920362949 0.477121174335 +40 0.84029173851 0.431024163961 +42 0.840253353119 0.43072733283 +27 0.842861533165 0.476667225361 +SURF 0x10 +mat 1 +refs 4 +19 0.81484991312 0.485469847918 +44 0.807065308094 0.467715829611 +43 0.822963297367 0.468091130257 +3 0.830914318562 0.483180642128 +SURF 0x10 +mat 1 +refs 4 +7 0.830979704857 0.483685195446 +45 0.822993755341 0.468326240778 +44 0.807065308094 0.467715829611 +19 0.81484991312 0.485469847918 +SURF 0x10 +mat 1 +refs 4 +3 0.830914318562 0.483180642128 +7 0.830979704857 0.483685195446 +26 0.842920362949 0.477121174335 +27 0.842861533165 0.476667225361 +SURF 0x10 +mat 1 +refs 4 +41 0.85267919302 0.432982087135 +59 0.849269032478 0.411576777697 +57 0.849303364754 0.411840498447 +39 0.852713346481 0.433245837688 +SURF 0x10 +mat 1 +refs 4 +59 0.849269032478 0.411576777697 +74 0.845899045467 0.400244146585 +72 0.845561206341 0.397640317678 +57 0.849303364754 0.411840498447 +SURF 0x10 +mat 1 +refs 4 +44 0.807065308094 0.467715829611 +77 0.810667157173 0.444116652012 +76 0.818320572376 0.450661599636 +43 0.822963297367 0.468091130257 +SURF 0x10 +mat 1 +refs 4 +45 0.822993755341 0.468326240778 +78 0.818340063095 0.450812846422 +77 0.810667157173 0.444116652012 +44 0.807065308094 0.467715829611 +SURF 0x10 +mat 1 +refs 3 +76 0.818320572376 0.450661599636 +77 0.810667157173 0.444116652012 +78 0.818340063095 0.450812846422 +SURF 0x10 +mat 1 +refs 4 +43 0.822963297367 0.468091130257 +76 0.818320572376 0.450661599636 +78 0.818340063095 0.450812846422 +45 0.822993755341 0.468326240778 +SURF 0x10 +mat 1 +refs 4 +3 0.830914318562 0.483180642128 +43 0.822963297367 0.468091130257 +45 0.822993755341 0.468326240778 +7 0.830979704857 0.483685195446 +SURF 0x10 +mat 1 +refs 4 +4 0.845680773258 0.538942217827 +79 0.831306993961 0.509110808372 +80 0.84022539854 0.507817029953 +8 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 4 +81 0.840269207954 0.508153378963 +0 0.831306993961 0.509110808372 +8 0.845680773258 0.538942217827 +80 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +2 0.899586796761 0.53483569622 +82 0.903694629669 0.501893639565 +83 0.893893361092 0.501265108585 +9 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 4 +9 0.893884718418 0.501197993755 +83 0.903694629669 0.501893639565 +84 0.899586796761 0.53483569622 +6 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 4 +0 0.876213371754 0.535192131996 +81 0.867085576057 0.504742860794 +85 0.840269207954 0.508153378963 +10 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +10 0.893893361092 0.501265108585 +85 0.867085576057 0.504742860794 +82 0.876213371754 0.535192131996 +2 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 4 +6 0.87620472908 0.535124897957 +84 0.867323338985 0.506574332714 +86 0.893884718418 0.501197993755 +11 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 4 +11 0.84022539854 0.507817029953 +86 0.867323338985 0.506574332714 +79 0.87620472908 0.535124897957 +4 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 4 +79 0.845680773258 0.538942217827 +88 0.831306993961 0.509110808372 +87 0.84022539854 0.507817029953 +80 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 4 +80 0.840269207954 0.508153378963 +87 0.831306993961 0.509110808372 +89 0.845680773258 0.538942217827 +81 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +82 0.899586796761 0.53483569622 +90 0.903694629669 0.501893639565 +91 0.893893361092 0.501265108585 +83 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 4 +83 0.893884718418 0.501197993755 +91 0.903694629669 0.501893639565 +92 0.899586796761 0.53483569622 +84 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 4 +81 0.876213371754 0.535192131996 +89 0.867085576057 0.504742860794 +93 0.840269207954 0.508153378963 +85 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 4 +85 0.893893361092 0.501265108585 +93 0.867085576057 0.504742860794 +90 0.876213371754 0.535192131996 +82 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 4 +84 0.87620472908 0.535124897957 +92 0.867323338985 0.506574332714 +94 0.893884718418 0.501197993755 +86 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 4 +86 0.84022539854 0.507817029953 +94 0.867323338985 0.506574332714 +88 0.87620472908 0.535124897957 +79 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 3 +24 0.874306678772 0.477910578251 +97 0.881618797779 0.477649211884 +12 0.893884718418 0.501197993755 +SURF 0x10 +mat 1 +refs 3 +97 0.881618797779 0.477649211884 +1 0.888930916786 0.477387905121 +12 0.893884718418 0.501197993755 +SURF 0x10 +mat 1 +refs 3 +25 0.874339342117 0.478162705898 +100 0.867115020752 0.47909989953 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 3 +100 0.867115020752 0.47909989953 +16 0.859890639782 0.480037093163 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 3 +95 0.893816709518 0.47485858202 +17 0.893893361092 0.501265108585 +22 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 3 +18 0.89884531498 0.473428934813 +95 0.893816709518 0.47485858202 +22 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 3 +95 0.893816709518 0.47485858202 +5 0.888788223267 0.476288288832 +17 0.893893361092 0.501265108585 +SURF 0x10 +mat 1 +refs 3 +96 0.893888115883 0.475408434868 +22 0.903694629669 0.501893639565 +12 0.893884718418 0.501197993755 +SURF 0x10 +mat 1 +refs 3 +1 0.888930916786 0.477387905121 +96 0.893888115883 0.475408434868 +12 0.893884718418 0.501197993755 +SURF 0x10 +mat 1 +refs 3 +96 0.893888115883 0.475408434868 +18 0.89884531498 0.473428934813 +22 0.903694629669 0.501893639565 +SURF 0x10 +mat 1 +refs 3 +13 0.859799325466 0.479333460331 +98 0.867052972317 0.478622078896 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 3 +98 0.867052972317 0.478622078896 +24 0.874306678772 0.477910578251 +20 0.867323338985 0.506574332714 +SURF 0x10 +mat 1 +refs 3 +5 0.888788223267 0.476288288832 +99 0.881563782692 0.477225482464 +17 0.893893361092 0.501265108585 +SURF 0x10 +mat 1 +refs 3 +99 0.881563782692 0.477225482464 +25 0.874339342117 0.478162705898 +17 0.893893361092 0.501265108585 +SURF 0x10 +mat 1 +refs 3 +16 0.859890639782 0.480037093163 +101 0.851405501366 0.478579103947 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 3 +101 0.851405501366 0.478579103947 +26 0.842920362949 0.477121174335 +21 0.867085576057 0.504742860794 +SURF 0x10 +mat 1 +refs 4 +29 0.892277479172 0.439557313919 +102 0.88866430521 0.439249098301 +95 0.893816709518 0.47485858202 +18 0.89884531498 0.473428934813 +SURF 0x10 +mat 1 +refs 4 +102 0.88866430521 0.439249098301 +28 0.885051071644 0.438940823078 +5 0.888788223267 0.476288288832 +95 0.893816709518 0.47485858202 +SURF 0x10 +mat 1 +refs 4 +30 0.885121703148 0.438902616501 +103 0.88869959116 0.439229905605 +96 0.893888115883 0.475408494473 +1 0.888930916786 0.477387905121 +SURF 0x10 +mat 1 +refs 4 +103 0.88869959116 0.439229905605 +29 0.892277479172 0.439557313919 +18 0.89884531498 0.473428934813 +96 0.893888115883 0.475408494473 +SURF 0x10 +mat 1 +refs 4 +1 0.888930916786 0.477387905121 +104 0.888859570026 0.476838111877 +105 0.8855702281 0.444089382887 +30 0.885121703148 0.438902616501 +SURF 0x10 +mat 1 +refs 4 +104 0.888859570026 0.476838111877 +5 0.888788223267 0.476288288832 +28 0.885051071644 0.438940823078 +105 0.8855702281 0.444089382887 +SURF 0x10 +mat 1 +refs 4 +32 0.87262237072 0.431150317192 +106 0.876334786415 0.430708169937 +97 0.881618797779 0.477649152279 +24 0.874306678772 0.477910578251 +SURF 0x10 +mat 1 +refs 4 +106 0.876334786415 0.430708169937 +31 0.880047261715 0.430266231298 +1 0.888930916786 0.477387905121 +97 0.881618797779 0.477649152279 +SURF 0x10 +mat 1 +refs 4 +33 0.880053937435 0.430317848921 +107 0.875412344933 0.430920004845 +99 0.881563782692 0.477225482464 +5 0.888788223267 0.476288288832 +SURF 0x10 +mat 1 +refs 4 +107 0.875412344933 0.430920004845 +34 0.87077075243 0.431522041559 +25 0.874339342117 0.478162705898 +99 0.881563782692 0.477225482464 +SURF 0x10 +mat 1 +refs 4 +31 0.880047261715 0.430266231298 +108 0.880050480366 0.43029153347 +104 0.829120635986 0.159812927246 +1 0.888930916786 0.477387905121 +SURF 0x10 +mat 1 +refs 4 +108 0.880050480366 0.43029153347 +33 0.880053937435 0.430317848921 +5 0.888788223267 0.476288288832 +104 0.829120635986 0.159812927246 +SURF 0x10 +mat 1 +refs 3 +109 0.871696591377 0.431335866451 +24 0.874306678772 0.477910578251 +25 0.874339342117 0.478162705898 +SURF 0x10 +mat 1 +refs 3 +34 0.87077075243 0.431522041559 +109 0.871696591377 0.431335866451 +25 0.874339342117 0.478162705898 +SURF 0x10 +mat 1 +refs 3 +109 0.871696591377 0.431335866451 +32 0.87262237072 0.431150317192 +24 0.874306678772 0.477910578251 +SURF 0x10 +mat 1 +refs 4 +35 0.856655836105 0.432027548552 +110 0.861150562763 0.431795328856 +98 0.867053031921 0.478622108698 +13 0.859799325466 0.479333460331 +SURF 0x10 +mat 1 +refs 4 +110 0.861150562763 0.431795328856 +36 0.865645229816 0.431563079357 +24 0.874306678772 0.477910578251 +98 0.867053031921 0.478622108698 +SURF 0x10 +mat 1 +refs 4 +38 0.865659713745 0.431674838066 +111 0.861169397831 0.431940764189 +100 0.867115020752 0.47909989953 +25 0.874339342117 0.478162705898 +SURF 0x10 +mat 1 +refs 4 +111 0.861169397831 0.431940764189 +37 0.856679081917 0.432206690311 +16 0.859890639782 0.480037093163 +100 0.867115020752 0.47909989953 +SURF 0x10 +mat 1 +refs 3 +112 0.865652501583 0.43161919713 +25 0.874339342117 0.478162705898 +24 0.874306678772 0.477910578251 +SURF 0x10 +mat 1 +refs 3 +36 0.865645229816 0.431563079357 +112 0.865652501583 0.43161919713 +24 0.874306678772 0.477910578251 +SURF 0x10 +mat 1 +refs 3 +112 0.865652501583 0.43161919713 +38 0.865659713745 0.431674838066 +25 0.874339342117 0.478162705898 +SURF 0x10 +mat 1 +refs 3 +113 0.856667399406 0.432116955519 +13 0.859799325466 0.479333460331 +16 0.859890639782 0.480037093163 +SURF 0x10 +mat 1 +refs 3 +37 0.856679081917 0.432206690311 +113 0.856667399406 0.432116955519 +16 0.859890639782 0.480037093163 +SURF 0x10 +mat 1 +refs 3 +113 0.856667399406 0.432116955519 +35 0.856655836105 0.432027548552 +13 0.859799325466 0.479333460331 +SURF 0x10 +mat 1 +refs 4 +39 0.852713346481 0.433245837688 +114 0.846502542496 0.432135045528 +101 0.851405501366 0.478579103947 +16 0.859890639782 0.480037093163 +SURF 0x10 +mat 1 +refs 4 +114 0.846502542496 0.432135045528 +40 0.84029173851 0.431024163961 +26 0.842920362949 0.477121174335 +101 0.851405501366 0.478579103947 +SURF 0x10 +mat 1 +refs 4 +41 0.85267919302 0.432982087135 +115 0.856239318848 0.456157892942 +140 0.850734889507 0.438282251358 +116 0.846466302872 0.431854784489 +SURF 0x10 +mat 1 +refs 4 +42 0.840253353119 0.43072733283 +116 0.846466302872 0.431854784489 +140 0.850734889507 0.438282251358 +27 0.842861533165 0.476667225361 +SURF 0x10 +mat 1 +refs 4 +27 0.842861533165 0.476667225361 +140 0.850734889507 0.438282251358 +115 0.856239318848 0.456157892942 +13 0.859799325466 0.479333460331 +SURF 0x10 +mat 1 +refs 3 +115 0.856239318848 0.456157982349 +39 0.852713346481 0.433245837688 +16 0.859890639782 0.480037093163 +SURF 0x10 +mat 1 +refs 3 +13 0.859799325466 0.479333460331 +115 0.856239318848 0.456157982349 +16 0.859890639782 0.480037093163 +SURF 0x10 +mat 1 +refs 3 +115 0.856239318848 0.456157982349 +41 0.85267919302 0.432982087135 +39 0.852713346481 0.433245837688 +SURF 0x10 +mat 1 +refs 4 +47 0.888839542866 0.420055538416 +117 0.885973453522 0.420283585787 +102 0.888664245605 0.439249068499 +29 0.892277479172 0.439557313919 +SURF 0x10 +mat 1 +refs 4 +117 0.885973453522 0.420283585787 +46 0.883107423782 0.420511633158 +28 0.885051071644 0.438940823078 +102 0.888664245605 0.439249068499 +SURF 0x10 +mat 1 +refs 4 +48 0.883191406727 0.420471578836 +118 0.886015534401 0.420263558626 +103 0.88869959116 0.43922996521 +30 0.885121703148 0.438902616501 +SURF 0x10 +mat 1 +refs 4 +118 0.886015534401 0.420263558626 +47 0.888839542866 0.420055538416 +29 0.892277479172 0.439557313919 +103 0.88869959116 0.43922996521 +SURF 0x10 +mat 1 +refs 4 +46 0.883107423782 0.420511633158 +119 0.883149385452 0.420491635799 +105 0.885086417198 0.438921689987 +28 0.885051071644 0.438940823078 +SURF 0x10 +mat 1 +refs 4 +119 0.883149385452 0.420491635799 +48 0.883191406727 0.420471578836 +30 0.885121703148 0.438902616501 +105 0.885086417198 0.438921689987 +SURF 0x10 +mat 1 +refs 4 +50 0.868370652199 0.413020610809 +120 0.872475147247 0.413160979748 +106 0.876334786415 0.430708229542 +32 0.87262237072 0.431150317192 +SURF 0x10 +mat 1 +refs 4 +120 0.872475147247 0.413160979748 +49 0.876579761505 0.413301289082 +31 0.880047261715 0.430266231298 +106 0.876334786415 0.430708229542 +SURF 0x10 +mat 1 +refs 4 +51 0.876586556435 0.413353055716 +121 0.872486948967 0.413251549006 +107 0.875412344933 0.43091994524 +33 0.880053937435 0.430317848921 +SURF 0x10 +mat 1 +refs 4 +121 0.872486948967 0.413251549006 +52 0.868387401104 0.413150042295 +34 0.87077075243 0.431522041559 +107 0.875412344933 0.43091994524 +SURF 0x10 +mat 1 +refs 4 +49 0.876579761505 0.413301289082 +122 0.876583099365 0.413327097893 +108 0.880050599575 0.43029204011 +31 0.880047261715 0.430266231298 +SURF 0x10 +mat 1 +refs 4 +122 0.876583099365 0.413327097893 +51 0.876586556435 0.413353055716 +33 0.880053937435 0.430317848921 +108 0.880050599575 0.43029204011 +SURF 0x10 +mat 1 +refs 4 +52 0.868387401104 0.413150042295 +123 0.868378996849 0.413085341454 +109 0.871696591377 0.431336164474 +34 0.87077075243 0.431522041559 +SURF 0x10 +mat 1 +refs 4 +123 0.868378996849 0.413085341454 +50 0.868370652199 0.413020610809 +32 0.87262237072 0.431150317192 +109 0.871696591377 0.431336164474 +SURF 0x10 +mat 1 +refs 4 +53 0.855979323387 0.412167519331 +124 0.859187960625 0.411785423756 +110 0.861150503159 0.431795299053 +35 0.856655836105 0.432027548552 +SURF 0x10 +mat 1 +refs 4 +124 0.859187960625 0.411785423756 +54 0.862396657467 0.411403298378 +36 0.865645229816 0.431563079357 +110 0.861150503159 0.431795299053 +SURF 0x10 +mat 1 +refs 4 +56 0.862411260605 0.411515206099 +125 0.8582726717 0.412052094936 +111 0.861169397831 0.431940764189 +38 0.865659713745 0.431674838066 +SURF 0x10 +mat 1 +refs 4 +125 0.8582726717 0.412052094936 +55 0.854134142399 0.412588983774 +37 0.856679081917 0.432206690311 +111 0.861169397831 0.431940764189 +SURF 0x10 +mat 1 +refs 4 +54 0.862396657467 0.411403298378 +126 0.862403988838 0.411459207535 +112 0.865652441978 0.431618988514 +36 0.865645229816 0.431563079357 +SURF 0x10 +mat 1 +refs 4 +126 0.862403988838 0.411459207535 +56 0.862411260605 0.411515206099 +38 0.865659713745 0.431674838066 +112 0.865652441978 0.431618988514 +SURF 0x10 +mat 1 +refs 4 +55 0.854134142399 0.412588983774 +127 0.855056703091 0.412378251553 +113 0.856667459011 0.43211710453 +37 0.856679081917 0.432206690311 +SURF 0x10 +mat 1 +refs 4 +127 0.855056703091 0.412378251553 +53 0.855979323387 0.412167519331 +35 0.856655836105 0.432027548552 +113 0.856667459011 0.43211710453 +SURF 0x10 +mat 1 +refs 4 +57 0.849303364754 0.411840498447 +128 0.844147861004 0.411542654037 +114 0.846502542496 0.432134985924 +39 0.852713346481 0.433245837688 +SURF 0x10 +mat 1 +refs 4 +128 0.844147861004 0.411542654037 +58 0.838992357254 0.41124483943 +40 0.84029173851 0.431024163961 +114 0.846502542496 0.432134985924 +SURF 0x10 +mat 1 +refs 4 +60 0.838953852654 0.410948097706 +129 0.844111442566 0.411262452602 +116 0.846466302872 0.431854724884 +42 0.840253353119 0.43072733283 +SURF 0x10 +mat 1 +refs 4 +129 0.844111442566 0.411262452602 +59 0.849269032478 0.411576777697 +41 0.85267919302 0.432982087135 +116 0.846466302872 0.431854724884 +SURF 0x10 +mat 1 +refs 3 +130 0.838973104954 0.411096453667 +42 0.840253353119 0.43072733283 +40 0.84029173851 0.431024163961 +SURF 0x10 +mat 1 +refs 3 +58 0.838992357254 0.41124483943 +130 0.838973104954 0.411096453667 +40 0.84029173851 0.431024163961 +SURF 0x10 +mat 1 +refs 3 +130 0.838973104954 0.411096453667 +60 0.838953852654 0.410948097706 +42 0.840253353119 0.43072733283 +SURF 0x10 +mat 1 +refs 4 +62 0.886557519436 0.410769611597 +131 0.88439309597 0.408880352974 +117 0.885973513126 0.420283585787 +47 0.888839542866 0.420055538416 +SURF 0x10 +mat 1 +refs 4 +131 0.88439309597 0.408880352974 +61 0.882228791714 0.406991124153 +46 0.883107423782 0.420511633158 +117 0.885973513126 0.420283585787 +SURF 0x10 +mat 1 +refs 4 +63 0.881319403648 0.404483109713 +132 0.88393843174 0.407626360655 +118 0.886015415192 0.420263588428 +48 0.883191406727 0.420471578836 +SURF 0x10 +mat 1 +refs 4 +132 0.88393843174 0.407626360655 +62 0.886557519436 0.410769611597 +47 0.888839542866 0.420055538416 +118 0.886015415192 0.420263588428 +SURF 0x10 +mat 1 +refs 4 +61 0.882228791714 0.406991124153 +133 0.881774067879 0.405737131834 +119 0.883149385452 0.420491635799 +46 0.883107423782 0.420511633158 +SURF 0x10 +mat 1 +refs 4 +133 0.881774067879 0.405737131834 +63 0.881319403648 0.404483109713 +48 0.883191406727 0.420471578836 +119 0.883149385452 0.420491635799 +SURF 0x10 +mat 1 +refs 3 +120 0.872475206852 0.413160949945 +65 0.866789519787 0.400832414627 +64 0.874148845673 0.399443209171 +SURF 0x10 +mat 1 +refs 3 +49 0.876579761505 0.413301289082 +120 0.872475206852 0.413160949945 +64 0.874148845673 0.399443209171 +SURF 0x10 +mat 1 +refs 3 +120 0.872475206852 0.413160949945 +50 0.868370652199 0.413020610809 +65 0.866789519787 0.400832414627 +SURF 0x10 +mat 1 +refs 3 +121 0.872486948967 0.413251578808 +66 0.874014437199 0.39840683341 +67 0.866554439068 0.399020075798 +SURF 0x10 +mat 1 +refs 3 +52 0.868387401104 0.413150042295 +121 0.872486948967 0.413251578808 +67 0.866554439068 0.399020075798 +SURF 0x10 +mat 1 +refs 3 +121 0.872486948967 0.413251578808 +51 0.876586556435 0.413353055716 +66 0.874014437199 0.39840683341 +SURF 0x10 +mat 1 +refs 4 +64 0.874148845673 0.399443209171 +134 0.874081611633 0.39892500639 +122 0.87658315897 0.413327157497 +49 0.876579761505 0.413301289082 +SURF 0x10 +mat 1 +refs 4 +134 0.874081611633 0.39892500639 +66 0.874014437199 0.39840683341 +51 0.876586556435 0.413353055716 +122 0.87658315897 0.413327157497 +SURF 0x10 +mat 1 +refs 4 +67 0.866554439068 0.399020075798 +135 0.866671919823 0.39992621541 +123 0.868378996849 0.413085311651 +52 0.868387401104 0.413150042295 +SURF 0x10 +mat 1 +refs 4 +135 0.866671919823 0.39992621541 +65 0.866789519787 0.400832414627 +50 0.868370652199 0.413020610809 +123 0.868378996849 0.413085311651 +SURF 0x10 +mat 1 +refs 3 +124 0.859187960625 0.411785423756 +68 0.852444171906 0.399561583996 +69 0.858855724335 0.398752123117 +SURF 0x10 +mat 1 +refs 3 +54 0.862396657467 0.411403298378 +124 0.859187960625 0.411785423756 +69 0.858855724335 0.398752123117 +SURF 0x10 +mat 1 +refs 3 +124 0.859187960625 0.411785423756 +53 0.855979323387 0.412167519331 +68 0.852444171906 0.399561583996 +SURF 0x10 +mat 1 +refs 3 +125 0.8582726717 0.412052094936 +71 0.858652412891 0.397185921669 +70 0.852214932442 0.397794276476 +SURF 0x10 +mat 1 +refs 3 +55 0.854134142399 0.412588983774 +125 0.8582726717 0.412052094936 +70 0.852214932442 0.397794276476 +SURF 0x10 +mat 1 +refs 3 +125 0.8582726717 0.412052094936 +56 0.862411260605 0.411515206099 +71 0.858652412891 0.397185921669 +SURF 0x10 +mat 1 +refs 4 +69 0.858855724335 0.398752123117 +136 0.858754038811 0.397969007492 +126 0.862403988838 0.411459237337 +54 0.862396657467 0.411403298378 +SURF 0x10 +mat 1 +refs 4 +136 0.858754038811 0.397969007492 +71 0.858652412891 0.397185921669 +56 0.862411260605 0.411515206099 +126 0.862403988838 0.411459237337 +SURF 0x10 +mat 1 +refs 4 +70 0.852214932442 0.397794276476 +137 0.852329492569 0.398677945137 +127 0.855056762695 0.412378251553 +55 0.854134142399 0.412588983774 +SURF 0x10 +mat 1 +refs 4 +137 0.852329492569 0.398677945137 +68 0.852444171906 0.399561583996 +53 0.855979323387 0.412167519331 +127 0.855056762695 0.412378251553 +SURF 0x10 +mat 1 +refs 4 +72 0.845561206341 0.397640317678 +138 0.841950535774 0.397045850754 +128 0.844147861004 0.411542654037 +57 0.849303364754 0.411840498447 +SURF 0x10 +mat 1 +refs 4 +138 0.841950535774 0.397045850754 +73 0.838339805603 0.396451354027 +58 0.838992357254 0.41124483943 +128 0.844147861004 0.411542654037 +SURF 0x10 +mat 1 +refs 3 +129 0.844111442566 0.411262452602 +75 0.838601589203 0.398469626904 +74 0.845899045467 0.400244146585 +SURF 0x10 +mat 1 +refs 3 +59 0.849269032478 0.411576777697 +129 0.844111442566 0.411262452602 +74 0.845899045467 0.400244146585 +SURF 0x10 +mat 1 +refs 3 +129 0.844111442566 0.411262452602 +60 0.838953852654 0.410948097706 +75 0.838601589203 0.398469626904 +SURF 0x10 +mat 1 +refs 4 +73 0.838339805603 0.396451354027 +139 0.838470697403 0.397460490465 +130 0.838973104954 0.411096453667 +58 0.838992357254 0.41124483943 +SURF 0x10 +mat 1 +refs 4 +139 0.838470697403 0.397460490465 +75 0.838601589203 0.398469626904 +60 0.838953852654 0.410948097706 +130 0.838973104954 0.411096453667 +SURF 0x10 +mat 1 +refs 4 +73 0.838339805603 0.396451354027 +138 0.841950535774 0.397045850754 +141 0.840210616589 0.397253155708 +139 0.838470697403 0.397460490465 +SURF 0x10 +mat 1 +refs 4 +75 0.838601589203 0.398469626904 +139 0.838470697403 0.397460490465 +141 0.840210616589 0.397253155708 +74 0.845899045467 0.400244146585 +SURF 0x10 +mat 1 +refs 4 +74 0.845899045467 0.400244146585 +141 0.840210616589 0.397253155708 +138 0.841950535774 0.397045850754 +72 0.845561206341 0.397640317678 +SURF 0x10 +mat 1 +refs 4 +68 0.852444171906 0.399561583996 +137 0.852329552174 0.398677945137 +136 0.858754038811 0.397969007492 +69 0.858855724335 0.398752123117 +SURF 0x10 +mat 1 +refs 4 +137 0.852329552174 0.398677945137 +70 0.852214932442 0.397794276476 +71 0.858652412891 0.397185921669 +136 0.858754038811 0.397969007492 +SURF 0x10 +mat 1 +refs 4 +65 0.866789519787 0.400832414627 +135 0.866671979427 0.399926245213 +134 0.874081611633 0.39892500639 +64 0.874148845673 0.399443209171 +SURF 0x10 +mat 1 +refs 4 +135 0.866671979427 0.399926245213 +67 0.866554439068 0.399020075798 +66 0.874014437199 0.39840683341 +134 0.874081611633 0.39892500639 +SURF 0x10 +mat 1 +refs 3 +133 0.881774127483 0.405737131834 +61 0.882228791714 0.406991124153 +131 0.884393155575 0.408880352974 +SURF 0x10 +mat 1 +refs 3 +131 0.884393155575 0.408880352974 +132 0.88393843174 0.407626330853 +133 0.881774127483 0.405737131834 +SURF 0x10 +mat 1 +refs 3 +63 0.881319403648 0.404483109713 +133 0.881774127483 0.405737131834 +132 0.88393843174 0.407626330853 +SURF 0x10 +mat 1 +refs 3 +132 0.88393843174 0.407626330853 +131 0.884393155575 0.408880352974 +62 0.886557519436 0.410769611597 +kids 0 +OBJECT group +name "arm2.L" +kids 2 +OBJECT poly +name "arm2.L_0" +data 8 +Mesh.003 +crease 30 +numvert 21 +0.005999 0.445766 0.504044 +-0.002926 0.44284 0.505115 +-0.011742 0.445766 0.50681 +-0.011525 0.463321 0.508682 +-0.002622 0.466247 0.507611 +0.006216 0.463321 0.505916 +0.009061 0.454544 0.50452 +-0.014587 0.454544 0.508207 +0.001548 0.444303 0.50458 +-0.007334 0.444303 0.505963 +-0.007074 0.464784 0.508147 +0.001808 0.464784 0.506764 +0.007627 0.458933 0.505218 +0.007519 0.450155 0.504282 +-0.013175 0.450155 0.507509 +-0.013067 0.458933 0.508445 +-0.002666 0.463321 0.507299 +-0.004185 0.458933 0.507062 +-0.002774 0.454544 0.506363 +-0.001341 0.450155 0.505665 +-0.002882 0.445766 0.505427 +numsurf 24 +SURF 0x10 +mat 1 +refs 3 +11 0.0 0.5 +16 0.5 0.500000059605 +5 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +16 0.5 0.500000059605 +11 0.0 0.5 +10 0.5 1.49011611938e-08 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +10 0.5 1.49011611938e-08 +11 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +10 0.5 1.49011611938e-08 +3 1.0 0.0 +16 0.5 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +16 0.0 0.5 +17 0.499999970198 0.499999970198 +5 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +17 0.499999970198 0.499999970198 +16 0.0 0.5 +15 0.499999970198 0.0 +SURF 0x10 +mat 1 +refs 3 +3 0.0 0.0 +15 0.499999970198 0.0 +16 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +15 0.499999970198 0.0 +7 1.0 0.0 +17 0.499999970198 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +12 3.72529029846e-09 0.499999970198 +18 0.5 0.499999970198 +6 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +18 0.5 0.499999970198 +12 3.72529029846e-09 0.499999970198 +17 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +5 0.0 0.0 +17 0.5 0.0 +12 3.72529029846e-09 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +17 0.5 0.0 +7 1.0 0.0 +18 0.5 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +18 0.0 0.5 +19 0.500000059605 0.5 +6 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +19 0.500000059605 0.5 +18 0.0 0.5 +14 0.500000059605 0.0 +SURF 0x10 +mat 1 +refs 3 +7 0.0 0.0 +14 0.500000059605 0.0 +18 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +14 0.500000059605 0.0 +2 1.0 0.0 +19 0.500000059605 0.5 +SURF 0x10 +mat 1 +refs 3 +13 0.0 0.5 +20 0.5 0.500000059605 +0 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +20 0.5 0.500000059605 +13 0.0 0.5 +19 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +6 0.0 0.0 +19 0.5 0.0 +13 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +19 0.5 0.0 +2 1.0 0.0 +20 0.5 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +20 0.0 0.5 +8 0.5 0.5 +0 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +8 0.5 0.5 +20 0.0 0.5 +9 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +2 0.0 0.0 +9 0.5 0.0 +20 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +9 0.5 0.0 +1 1.0 0.0 +8 0.5 0.5 +kids 0 +OBJECT poly +name "arm2.L_1" +data 8 +Mesh.003 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 166 +-0.027913 0.48588 0.565486 +0.035406 0.48588 0.555613 +-0.028715 0.423208 0.558803 +0.034605 0.423208 0.54893 +0.047597 0.417924 0.674276 +-0.040565 0.417924 0.690197 +0.047597 0.498829 0.674276 +-0.040565 0.498829 0.690197 +-0.025149 0.490108 0.847606 +0.02323 0.490582 0.843046 +-0.02515 0.442892 0.847731 +0.02323 0.44686 0.843071 +0.003516 0.40444 0.682236 +0.039608 0.419113 0.594534 +0.002793 0.412762 0.552753 +0.003898 0.496325 0.561663 +0.04557 0.454544 0.550626 +-0.038878 0.454544 0.56379 +-0.034222 0.419113 0.607201 +-0.034222 0.493913 0.607201 +0.003516 0.512313 0.682236 +0.039608 0.493913 0.594534 +0.062298 0.458377 0.671622 +-0.055266 0.458377 0.69285 +-0.03932 0.424693 0.742644 +-0.035268 0.466262 0.847844 +-0.03932 0.503241 0.742644 +0.045298 0.503241 0.741206 +0.035824 0.46816 0.842855 +0.045298 0.424693 0.741206 +0.005206 0.498056 0.84709 +0.005185 0.436366 0.84719 +0.002693 0.406646 0.600867 +0.002693 0.50638 0.600867 +0.051876 0.456513 0.592423 +-0.046535 0.456513 0.609312 +-0.055367 0.463967 0.743145 +0.061323 0.463967 0.740706 +0.008798 0.516333 0.741142 +0.008798 0.411601 0.741142 +-0.046684 0.470336 0.829152 +0.05498 0.472364 0.824945 +0.009986 0.515018 0.837441 +0.010339 0.427269 0.818408 +-0.032351 0.437305 0.821654 +-0.032616 0.50377 0.836036 +0.03891 0.504741 0.832355 +0.039153 0.44067 0.818424 +0.025145 0.429228 0.521631 +-0.000543 0.420789 0.52472 +-0.026036 0.429228 0.529608 +-0.025386 0.479859 0.535007 +0.000302 0.488298 0.531918 +0.025795 0.479859 0.52703 +0.034004 0.454544 0.523001 +-0.034245 0.454544 0.533637 +0.005999 0.445766 0.504044 +-0.002926 0.44284 0.505115 +-0.011742 0.445766 0.50681 +-0.011525 0.463321 0.508682 +-0.002622 0.466247 0.507611 +0.006216 0.463321 0.505916 +0.009061 0.454544 0.50452 +-0.014587 0.454544 0.508207 +0.025557 0.411182 0.678256 +-0.018524 0.411182 0.686216 +-0.018524 0.505571 0.686216 +0.025557 0.505571 0.678256 +0.054937 0.478603 0.672949 +0.054937 0.43815 0.672949 +-0.047926 0.43815 0.691524 +-0.047926 0.478603 0.691524 +-0.030209 0.454577 0.847787 +-0.030209 0.478185 0.847725 +0.029527 0.479371 0.842951 +0.029527 0.45751 0.842963 +-0.009972 0.494082 0.847348 +0.014218 0.494319 0.845068 +0.014218 0.441613 0.84513 +-0.009972 0.439629 0.84746 +0.02115 0.412879 0.5977 +-0.015765 0.412879 0.604034 +-0.015765 0.500147 0.604034 +0.02115 0.500147 0.5977 +0.045731 0.475213 0.593478 +0.045731 0.437813 0.593478 +-0.040368 0.437813 0.608256 +-0.040368 0.475213 0.608256 +-0.047333 0.44433 0.742894 +-0.047333 0.483604 0.742894 +0.053311 0.483604 0.740956 +0.053311 0.44433 0.740956 +-0.015261 0.509787 0.741893 +0.027037 0.509787 0.741174 +0.027037 0.418147 0.741174 +-0.015261 0.418147 0.741893 +-0.040976 0.468299 0.838498 +-0.046718 0.467151 0.795179 +0.045402 0.470262 0.8339 +0.059962 0.468165 0.791909 +0.007596 0.506537 0.842266 +0.012321 0.514556 0.798365 +0.007773 0.431818 0.832799 +0.012519 0.420555 0.788849 +-0.039053 0.448354 0.79494 +-0.035917 0.456614 0.838441 +-0.035917 0.480222 0.838379 +-0.039053 0.485949 0.79494 +0.052297 0.486963 0.792148 +0.039105 0.481473 0.833996 +0.039105 0.459612 0.834008 +0.052297 0.449368 0.792148 +-0.010696 0.50829 0.799084 +-0.007582 0.502563 0.842524 +0.016608 0.5028 0.840244 +0.029778 0.50829 0.798396 +0.029976 0.426821 0.78888 +0.016784 0.437065 0.830739 +-0.007405 0.43508 0.833069 +-0.01052 0.426821 0.789568 +-0.02875 0.440098 0.834692 +-0.031865 0.431839 0.791191 +-0.028883 0.496939 0.841821 +-0.031997 0.502666 0.798382 +0.03107 0.497661 0.837701 +0.04424 0.503151 0.795854 +0.031202 0.443765 0.830748 +0.044394 0.433521 0.788888 +-0.039518 0.45382 0.825403 +-0.03965 0.487053 0.832594 +0.046945 0.488552 0.82865 +0.047056 0.456517 0.821685 +-0.011315 0.509394 0.836739 +0.024448 0.509879 0.834898 +0.024757 0.43397 0.818416 +-0.011006 0.432287 0.820031 +-0.00096 0.490345 0.845326 +0.005337 0.479134 0.845231 +0.000278 0.467211 0.84535 +-0.006019 0.456561 0.845458 +-0.00096 0.444876 0.845401 +0.001125 0.416776 0.538736 +0.029875 0.426218 0.535281 +-0.027386 0.426218 0.544205 +0.002078 0.492312 0.546791 +-0.012531 0.484079 0.533463 +0.013049 0.484079 0.529474 +0.0299 0.467202 0.525016 +0.029575 0.441886 0.522316 +-0.03014 0.441886 0.531622 +-0.029815 0.467202 0.534322 +-0.001756 0.431815 0.514918 +0.001548 0.444303 0.50458 +-0.007334 0.444303 0.505963 +-0.007074 0.464784 0.508147 +0.001808 0.464784 0.506764 +0.007627 0.458933 0.505218 +0.007519 0.450155 0.504282 +-0.013175 0.450155 0.507509 +-0.013067 0.458933 0.508445 +0.011113 0.488195 0.540321 +0.024033 0.488195 0.540258 +0.047094 0.434052 0.534318 +-0.011945 0.434052 0.534609 +0.019807 0.438059 0.510981 +0.015312 0.438059 0.511003 +numsurf 248 +SURF 0x10 +mat 1 +refs 3 +81 0.90032851696 0.699469804764 +2 0.897328317165 0.739786684513 +14 0.926753878593 0.737024903297 +SURF 0x10 +mat 1 +refs 3 +18 0.886189460754 0.701048374176 +2 0.897328317165 0.739786684513 +81 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 3 +81 0.90032851696 0.699469804764 +14 0.926753878593 0.737024903297 +32 0.914467632771 0.697891294956 +SURF 0x10 +mat 1 +refs 3 +80 0.928606688976 0.696312785149 +14 0.926753878593 0.737024903297 +3 0.955941557884 0.732427597046 +SURF 0x10 +mat 1 +refs 3 +32 0.914467632771 0.697891294956 +14 0.926753878593 0.737024903297 +80 0.928606688976 0.696312785149 +SURF 0x10 +mat 1 +refs 3 +80 0.928606688976 0.696312785149 +3 0.955941557884 0.732427597046 +13 0.942745745182 0.694734215736 +SURF 0x10 +mat 1 +refs 4 +13 0.942745745182 0.694734215736 +4 0.93455016613 0.640841007233 +64 0.917627990246 0.642596483231 +80 0.928606688976 0.696312785149 +SURF 0x10 +mat 1 +refs 4 +80 0.928606688976 0.696312785149 +64 0.917627990246 0.642596483231 +12 0.900705814362 0.644352018833 +32 0.914467632771 0.697891294956 +SURF 0x10 +mat 1 +refs 4 +32 0.914467632771 0.697891294956 +12 0.900705814362 0.644352018833 +65 0.883783578873 0.64610761404 +81 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +81 0.90032851696 0.699469804764 +65 0.883783578873 0.64610761404 +5 0.866861343384 0.647863209248 +18 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 3 +83 0.928606688976 0.696312725544 +1 0.955227017403 0.726920366287 +15 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 3 +21 0.942745745182 0.694734156132 +1 0.955227017403 0.726920366287 +83 0.928606688976 0.696312725544 +SURF 0x10 +mat 1 +refs 3 +83 0.928606688976 0.696312725544 +15 0.92580139637 0.729682266712 +33 0.914467632771 0.697891294956 +SURF 0x10 +mat 1 +refs 3 +15 0.92580139637 0.729682266712 +0 0.896613895893 0.734279572964 +82 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 3 +33 0.914467632771 0.697891294956 +15 0.92580139637 0.729682266712 +82 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 3 +82 0.90032851696 0.699469804764 +0 0.896613895893 0.734279572964 +19 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 4 +19 0.886189460754 0.701048374176 +7 0.866861343384 0.647863209248 +66 0.883783578873 0.64610761404 +82 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +82 0.90032851696 0.699469804764 +66 0.883783578873 0.64610761404 +20 0.900705814362 0.644352018833 +33 0.914467632771 0.697891294956 +SURF 0x10 +mat 1 +refs 4 +33 0.914467632771 0.697891294956 +20 0.900705814362 0.644352018833 +67 0.917627930641 0.642596483231 +83 0.928606688976 0.696312725544 +SURF 0x10 +mat 1 +refs 4 +83 0.928606688976 0.696312725544 +67 0.917627930641 0.642596483231 +6 0.934550106525 0.640840888023 +21 0.942745745182 0.694734156132 +SURF 0x10 +mat 1 +refs 3 +85 0.947458744049 0.694207906723 +3 0.955941557884 0.732427597046 +16 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 3 +13 0.942745745182 0.694734215736 +3 0.955941557884 0.732427597046 +85 0.947458744049 0.694207906723 +SURF 0x10 +mat 1 +refs 3 +85 0.947458744049 0.694207906723 +16 0.965353190899 0.728447496891 +34 0.952171802521 0.693681657314 +SURF 0x10 +mat 1 +refs 3 +84 0.947458744049 0.694207906723 +16 0.965353190899 0.728447496891 +1 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 3 +34 0.952171802521 0.693681657314 +16 0.965353190899 0.728447496891 +84 0.947458744049 0.694207906723 +SURF 0x10 +mat 1 +refs 3 +84 0.947458744049 0.694207906723 +1 0.955227017403 0.726920366287 +21 0.942745745182 0.694734156132 +SURF 0x10 +mat 1 +refs 4 +21 0.942745745182 0.694734156132 +6 0.934550106525 0.640840888023 +68 0.940190911293 0.640255749226 +84 0.947458744049 0.694207906723 +SURF 0x10 +mat 1 +refs 4 +84 0.947458744049 0.694207906723 +68 0.940190911293 0.640255749226 +22 0.945831775665 0.639670610428 +34 0.952171802521 0.693681657314 +SURF 0x10 +mat 1 +refs 4 +34 0.952171802521 0.693681657314 +22 0.945831775665 0.639670610428 +69 0.940190970898 0.64025580883 +85 0.947458744049 0.694207906723 +SURF 0x10 +mat 1 +refs 4 +85 0.947458744049 0.694207906723 +69 0.940190970898 0.64025580883 +4 0.93455016613 0.640841007233 +13 0.942745745182 0.694734215736 +SURF 0x10 +mat 1 +refs 3 +87 0.881476461887 0.70157456398 +0 0.896613895893 0.734279572964 +17 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 3 +19 0.886189460754 0.701048374176 +0 0.896613895893 0.734279572964 +87 0.881476461887 0.70157456398 +SURF 0x10 +mat 1 +refs 3 +87 0.881476461887 0.70157456398 +17 0.88720202446 0.738259613514 +35 0.876763522625 0.702100872993 +SURF 0x10 +mat 1 +refs 3 +86 0.881476461887 0.70157456398 +17 0.88720202446 0.738259613514 +2 0.897328317165 0.739786684513 +SURF 0x10 +mat 1 +refs 3 +35 0.876763522625 0.702100872993 +17 0.88720202446 0.738259613514 +86 0.881476461887 0.70157456398 +SURF 0x10 +mat 1 +refs 3 +86 0.881476461887 0.70157456398 +2 0.897328317165 0.739786684513 +18 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 4 +18 0.886189460754 0.701048374176 +5 0.866861343384 0.647863209248 +70 0.861220598221 0.64844840765 +86 0.881476521492 0.701574623585 +SURF 0x10 +mat 1 +refs 4 +86 0.881476521492 0.701574623585 +70 0.861220598221 0.64844840765 +23 0.855579793453 0.649033606052 +35 0.876763522625 0.702100872993 +SURF 0x10 +mat 1 +refs 4 +35 0.876763522625 0.702100872993 +23 0.855579793453 0.649033606052 +71 0.861220598221 0.64844840765 +87 0.881476521492 0.701574623585 +SURF 0x10 +mat 1 +refs 4 +87 0.881476521492 0.701574623585 +71 0.861220598221 0.64844840765 +7 0.866861343384 0.647863209248 +19 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 4 +26 0.854944527149 0.59752124548 +7 0.866861343384 0.647863209248 +71 0.861220538616 0.648448348045 +89 0.849144816399 0.59816724062 +SURF 0x10 +mat 1 +refs 4 +89 0.849144816399 0.59816724062 +71 0.861220538616 0.648448348045 +23 0.855579793453 0.649033606052 +36 0.843345105648 0.598813295364 +SURF 0x10 +mat 1 +refs 4 +36 0.843345105648 0.598813295364 +23 0.855579793453 0.649033606052 +70 0.861220598221 0.64844840765 +88 0.849144816399 0.598167300224 +SURF 0x10 +mat 1 +refs 4 +88 0.849144816399 0.598167300224 +70 0.861220598221 0.64844840765 +5 0.866861343384 0.647863209248 +24 0.854944527149 0.597521364689 +SURF 0x10 +mat 1 +refs 4 +29 0.916051208973 0.589925348759 +4 0.93455016613 0.640841007233 +69 0.940190970898 0.64025580883 +91 0.921850979328 0.589279294014 +SURF 0x10 +mat 1 +refs 4 +91 0.921850979328 0.589279294014 +69 0.940190970898 0.64025580883 +22 0.945831775665 0.639670610428 +37 0.927650749683 0.58863312006 +SURF 0x10 +mat 1 +refs 4 +37 0.927650749683 0.58863312006 +22 0.945831775665 0.639670610428 +68 0.940190911293 0.640255749226 +90 0.921850979328 0.589279174805 +SURF 0x10 +mat 1 +refs 4 +90 0.921850979328 0.589279174805 +68 0.940190911293 0.640255749226 +6 0.934550106525 0.640840888023 +27 0.916051208973 0.589925169945 +SURF 0x10 +mat 1 +refs 4 +27 0.916051208973 0.589925169945 +6 0.934550106525 0.640840888023 +67 0.917627930641 0.642596483231 +93 0.902896881104 0.59178519249 +SURF 0x10 +mat 1 +refs 4 +93 0.902896881104 0.59178519249 +67 0.917627930641 0.642596483231 +20 0.900705814362 0.644352018833 +38 0.889742612839 0.593645393848 +SURF 0x10 +mat 1 +refs 4 +38 0.889742612839 0.593645393848 +20 0.900705814362 0.644352018833 +66 0.883783578873 0.64610761404 +92 0.872343540192 0.595583319664 +SURF 0x10 +mat 1 +refs 4 +92 0.872343540192 0.595583319664 +66 0.883783578873 0.64610761404 +7 0.866861343384 0.647863209248 +26 0.854944527149 0.59752124548 +SURF 0x10 +mat 1 +refs 4 +24 0.854944527149 0.597521364689 +5 0.866861343384 0.647863209248 +65 0.883783578873 0.64610761404 +95 0.872343659401 0.595583438873 +SURF 0x10 +mat 1 +refs 4 +95 0.872343659401 0.595583438873 +65 0.883783578873 0.64610761404 +12 0.900705814362 0.644352018833 +39 0.889742851257 0.593645453453 +SURF 0x10 +mat 1 +refs 4 +39 0.889742851257 0.593645453453 +12 0.900705814362 0.644352018833 +64 0.917627990246 0.642596483231 +94 0.902897000313 0.591785430908 +SURF 0x10 +mat 1 +refs 4 +94 0.902897000313 0.591785430908 +64 0.917627990246 0.642596483231 +4 0.93455016613 0.640841007233 +29 0.916051208973 0.589925348759 +SURF 0x10 +mat 1 +refs 3 +96 0.842054486275 0.545872688293 +72 0.849494040012 0.538448214531 +25 0.845680773258 0.538942217827 +SURF 0x10 +mat 1 +refs 3 +72 0.849494040012 0.538448214531 +96 0.842054486275 0.545872688293 +105 0.845867693424 0.545378565788 +SURF 0x10 +mat 1 +refs 3 +40 0.838428139687 0.552802979946 +105 0.845867693424 0.545378565788 +96 0.842054486275 0.545872688293 +SURF 0x10 +mat 1 +refs 3 +105 0.845867693424 0.545378565788 +10 0.853307306767 0.537954211235 +72 0.849494040012 0.538448214531 +SURF 0x10 +mat 1 +refs 3 +97 0.840886592865 0.575808167458 +104 0.846686303616 0.575162172318 +40 0.838428139687 0.552802979946 +SURF 0x10 +mat 1 +refs 3 +104 0.846686303616 0.575162172318 +97 0.840886592865 0.575808167458 +88 0.849144816399 0.598167300224 +SURF 0x10 +mat 1 +refs 3 +36 0.843345105648 0.598813295364 +88 0.849144816399 0.598167300224 +97 0.840886592865 0.575808167458 +SURF 0x10 +mat 1 +refs 3 +88 0.849144816399 0.598167300224 +24 0.854944527149 0.597521364689 +104 0.846686303616 0.575162172318 +SURF 0x10 +mat 1 +refs 3 +97 0.840886592865 0.575808167458 +89 0.849144816399 0.59816724062 +36 0.843345105648 0.598813295364 +SURF 0x10 +mat 1 +refs 3 +89 0.849144816399 0.59816724062 +97 0.840886592865 0.575808167458 +107 0.84668636322 0.575162053108 +SURF 0x10 +mat 1 +refs 3 +40 0.838428139687 0.552802979946 +107 0.84668636322 0.575162053108 +97 0.840886592865 0.575808167458 +SURF 0x10 +mat 1 +refs 3 +107 0.84668636322 0.575162053108 +26 0.854944527149 0.59752124548 +89 0.849144816399 0.59816724062 +SURF 0x10 +mat 1 +refs 3 +96 0.842054367065 0.545872628689 +106 0.845873177052 0.545420706272 +40 0.838428139687 0.552802979946 +SURF 0x10 +mat 1 +refs 3 +106 0.845873177052 0.545420706272 +96 0.842054367065 0.545872628689 +73 0.849499464035 0.53849029541 +SURF 0x10 +mat 1 +refs 3 +25 0.845680773258 0.538942217827 +73 0.849499464035 0.53849029541 +96 0.842054367065 0.545872628689 +SURF 0x10 +mat 1 +refs 3 +73 0.849499464035 0.53849029541 +8 0.853318214417 0.538038313389 +106 0.845873177052 0.545420706272 +SURF 0x10 +mat 1 +refs 3 +98 0.907455325127 0.539890408516 +74 0.894837081432 0.53543394804 +28 0.899586796761 0.53483569622 +SURF 0x10 +mat 1 +refs 3 +74 0.894837081432 0.53543394804 +98 0.907455325127 0.539890408516 +109 0.902705550194 0.54048871994 +SURF 0x10 +mat 1 +refs 3 +41 0.915323793888 0.544945120811 +109 0.902705550194 0.54048871994 +98 0.907455325127 0.539890408516 +SURF 0x10 +mat 1 +refs 3 +109 0.902705550194 0.54048871994 +9 0.890087366104 0.536032259464 +74 0.894837081432 0.53543394804 +SURF 0x10 +mat 1 +refs 3 +99 0.921487271786 0.566789090633 +108 0.915687441826 0.567435145378 +41 0.915323793888 0.544945120811 +SURF 0x10 +mat 1 +refs 3 +108 0.915687441826 0.567435145378 +99 0.921487271786 0.566789090633 +90 0.921850919724 0.5892791152 +SURF 0x10 +mat 1 +refs 3 +37 0.927650749683 0.58863312006 +90 0.921850919724 0.5892791152 +99 0.921487271786 0.566789090633 +SURF 0x10 +mat 1 +refs 3 +90 0.921850919724 0.5892791152 +27 0.916051208973 0.589925169945 +108 0.915687441826 0.567435145378 +SURF 0x10 +mat 1 +refs 3 +99 0.92148733139 0.566789209843 +91 0.921850979328 0.589279294014 +37 0.927650749683 0.58863312006 +SURF 0x10 +mat 1 +refs 3 +91 0.921850979328 0.589279294014 +99 0.92148733139 0.566789209843 +111 0.915687501431 0.567435264587 +SURF 0x10 +mat 1 +refs 3 +41 0.915323793888 0.544945120811 +111 0.915687501431 0.567435264587 +99 0.92148733139 0.566789209843 +SURF 0x10 +mat 1 +refs 3 +111 0.915687501431 0.567435264587 +29 0.916051208973 0.589925348759 +91 0.921850979328 0.589279294014 +SURF 0x10 +mat 1 +refs 3 +98 0.907455325127 0.539890408516 +110 0.902704536915 0.540480315685 +41 0.915323793888 0.544945120811 +SURF 0x10 +mat 1 +refs 3 +110 0.902704536915 0.540480315685 +98 0.907455325127 0.539890408516 +75 0.894836068153 0.535425543785 +SURF 0x10 +mat 1 +refs 3 +28 0.899586796761 0.53483569622 +75 0.894836068153 0.535425543785 +98 0.907455325127 0.539890408516 +SURF 0x10 +mat 1 +refs 3 +75 0.894836068153 0.535425543785 +11 0.890085279942 0.536015510559 +110 0.902704536915 0.540480315685 +SURF 0x10 +mat 1 +refs 3 +100 0.878365635872 0.538207292557 +76 0.864765763283 0.536615252495 +30 0.876213371754 0.535192131996 +SURF 0x10 +mat 1 +refs 3 +76 0.864765763283 0.536615252495 +100 0.878365635872 0.538207292557 +113 0.866918087006 0.539630413055 +SURF 0x10 +mat 1 +refs 3 +42 0.880517959595 0.541222453117 +113 0.866918087006 0.539630413055 +100 0.878365635872 0.538207292557 +SURF 0x10 +mat 1 +refs 3 +113 0.866918087006 0.539630413055 +8 0.853318214417 0.538038313389 +76 0.864765763283 0.536615252495 +SURF 0x10 +mat 1 +refs 3 +101 0.885130286217 0.567433893681 +112 0.86773121357 0.569371819496 +42 0.880517959595 0.541222453117 +SURF 0x10 +mat 1 +refs 3 +112 0.86773121357 0.569371819496 +101 0.885130286217 0.567433893681 +92 0.872343540192 0.595583319664 +SURF 0x10 +mat 1 +refs 3 +38 0.889742612839 0.593645393848 +92 0.872343540192 0.595583319664 +101 0.885130286217 0.567433893681 +SURF 0x10 +mat 1 +refs 3 +92 0.872343540192 0.595583319664 +26 0.854944527149 0.59752124548 +112 0.86773121357 0.569371819496 +SURF 0x10 +mat 1 +refs 3 +101 0.885130286217 0.567433893681 +93 0.902896881104 0.591785252094 +38 0.889742612839 0.593645393848 +SURF 0x10 +mat 1 +refs 3 +93 0.902896881104 0.591785252094 +101 0.885130286217 0.567433893681 +115 0.898284554482 0.565573811531 +SURF 0x10 +mat 1 +refs 3 +42 0.880517959595 0.541222453117 +115 0.898284554482 0.565573811531 +101 0.885130286217 0.567433893681 +SURF 0x10 +mat 1 +refs 3 +115 0.898284554482 0.565573811531 +27 0.916051208973 0.589925169945 +93 0.902896881104 0.591785252094 +SURF 0x10 +mat 1 +refs 3 +100 0.878365635872 0.538207292557 +114 0.885302662849 0.538627386093 +42 0.880517959595 0.541222453117 +SURF 0x10 +mat 1 +refs 3 +114 0.885302662849 0.538627386093 +100 0.878365635872 0.538207292557 +77 0.883150339127 0.535612225533 +SURF 0x10 +mat 1 +refs 3 +30 0.876213371754 0.535192131996 +77 0.883150339127 0.535612225533 +100 0.878365635872 0.538207292557 +SURF 0x10 +mat 1 +refs 3 +77 0.883150339127 0.535612225533 +9 0.890087366104 0.536032259464 +114 0.885302662849 0.538627386093 +SURF 0x10 +mat 1 +refs 3 +102 0.879194736481 0.544597864151 +78 0.883144974709 0.535570204258 +31 0.87620472908 0.535124897957 +SURF 0x10 +mat 1 +refs 3 +78 0.883144974709 0.535570204258 +102 0.879194736481 0.544597864151 +117 0.886134982109 0.545043110847 +SURF 0x10 +mat 1 +refs 3 +43 0.882184684277 0.554070830345 +117 0.886134982109 0.545043110847 +102 0.879194736481 0.544597864151 +SURF 0x10 +mat 1 +refs 3 +117 0.886134982109 0.545043110847 +11 0.890085279942 0.536015510559 +78 0.883144974709 0.535570204258 +SURF 0x10 +mat 1 +refs 3 +103 0.885963737965 0.573858141899 +116 0.899117946625 0.571998119354 +43 0.882184684277 0.554070830345 +SURF 0x10 +mat 1 +refs 3 +116 0.899117946625 0.571998119354 +103 0.885963737965 0.573858141899 +94 0.902897000313 0.591785430908 +SURF 0x10 +mat 1 +refs 3 +39 0.889742851257 0.593645453453 +94 0.902897000313 0.591785430908 +103 0.885963737965 0.573858141899 +SURF 0x10 +mat 1 +refs 3 +94 0.902897000313 0.591785430908 +29 0.916051208973 0.589925348759 +116 0.899117946625 0.571998119354 +SURF 0x10 +mat 1 +refs 3 +103 0.885963737965 0.573858141899 +95 0.872343659401 0.595583438873 +39 0.889742851257 0.593645453453 +SURF 0x10 +mat 1 +refs 3 +95 0.872343659401 0.595583438873 +103 0.885963737965 0.573858141899 +119 0.868564605713 0.575796127319 +SURF 0x10 +mat 1 +refs 3 +43 0.882184684277 0.554070830345 +119 0.868564605713 0.575796127319 +103 0.885963737965 0.573858141899 +SURF 0x10 +mat 1 +refs 3 +119 0.868564605713 0.575796127319 +24 0.854944527149 0.597521364689 +95 0.872343659401 0.595583438873 +SURF 0x10 +mat 1 +refs 3 +102 0.879194736481 0.544597864151 +118 0.867745995522 0.54601252079 +43 0.882184684277 0.554070830345 +SURF 0x10 +mat 1 +refs 3 +118 0.867745995522 0.54601252079 +102 0.879194736481 0.544597864151 +79 0.864756047726 0.536539554596 +SURF 0x10 +mat 1 +refs 3 +31 0.87620472908 0.535124897957 +79 0.864756047726 0.536539554596 +102 0.879194736481 0.544597864151 +SURF 0x10 +mat 1 +refs 3 +79 0.864756047726 0.536539554596 +10 0.853307306767 0.537954211235 +118 0.867745995522 0.54601252079 +SURF 0x10 +mat 1 +refs 3 +121 0.852366507053 0.576944589615 +104 0.84668636322 0.575162172318 +24 0.854944527149 0.597521364689 +SURF 0x10 +mat 1 +refs 3 +104 0.84668636322 0.575162172318 +121 0.852366507053 0.576944589615 +128 0.844108343124 0.554585456848 +SURF 0x10 +mat 1 +refs 3 +44 0.849788486958 0.556367874146 +128 0.844108343124 0.554585456848 +121 0.852366507053 0.576944589615 +SURF 0x10 +mat 1 +refs 3 +128 0.844108343124 0.554585456848 +40 0.838428139687 0.552802979946 +104 0.84668636322 0.575162172318 +SURF 0x10 +mat 1 +refs 3 +120 0.851547896862 0.54716104269 +128 0.844108343124 0.554585397243 +44 0.849788486958 0.556367874146 +SURF 0x10 +mat 1 +refs 3 +128 0.844108343124 0.554585397243 +120 0.851547896862 0.54716104269 +105 0.845867693424 0.545378625393 +SURF 0x10 +mat 1 +refs 3 +10 0.853307306767 0.537954211235 +105 0.845867693424 0.545378625393 +120 0.851547896862 0.54716104269 +SURF 0x10 +mat 1 +refs 3 +105 0.845867693424 0.545378625393 +40 0.838428139687 0.552802979946 +128 0.844108343124 0.554585397243 +SURF 0x10 +mat 1 +refs 3 +122 0.850923657417 0.542349040508 +106 0.845873177052 0.545420646667 +8 0.853318214417 0.538038313389 +SURF 0x10 +mat 1 +refs 3 +106 0.845873177052 0.545420646667 +122 0.850923657417 0.542349040508 +129 0.843478679657 0.549731373787 +SURF 0x10 +mat 1 +refs 3 +45 0.848529160023 0.546659767628 +129 0.843478679657 0.549731373787 +122 0.850923657417 0.542349040508 +SURF 0x10 +mat 1 +refs 3 +129 0.843478679657 0.549731373787 +40 0.838428139687 0.552802979946 +106 0.845873177052 0.545420646667 +SURF 0x10 +mat 1 +refs 3 +123 0.851736783981 0.572090506554 +129 0.843478679657 0.549731373787 +45 0.848529160023 0.546659767628 +SURF 0x10 +mat 1 +refs 3 +129 0.843478679657 0.549731373787 +123 0.851736783981 0.572090506554 +107 0.84668636322 0.575162053108 +SURF 0x10 +mat 1 +refs 3 +26 0.854944527149 0.59752124548 +107 0.84668636322 0.575162053108 +123 0.851736783981 0.572090506554 +SURF 0x10 +mat 1 +refs 3 +107 0.84668636322 0.575162053108 +40 0.838428139687 0.552802979946 +129 0.843478679657 0.549731373787 +SURF 0x10 +mat 1 +refs 3 +125 0.909360766411 0.565773129463 +108 0.915687561035 0.567435145378 +27 0.916051208973 0.589925169945 +SURF 0x10 +mat 1 +refs 3 +108 0.915687561035 0.567435145378 +125 0.909360766411 0.565773129463 +130 0.908997058868 0.543283104897 +SURF 0x10 +mat 1 +refs 3 +46 0.902670264244 0.541621029377 +130 0.908997058868 0.543283104897 +125 0.909360766411 0.565773129463 +SURF 0x10 +mat 1 +refs 3 +130 0.908997058868 0.543283104897 +41 0.915323793888 0.544945120811 +108 0.915687561035 0.567435145378 +SURF 0x10 +mat 1 +refs 3 +124 0.896378755569 0.538826584816 +130 0.908997058868 0.543283104897 +46 0.902670264244 0.541621029377 +SURF 0x10 +mat 1 +refs 3 +130 0.908997058868 0.543283104897 +124 0.896378755569 0.538826584816 +109 0.902705550194 0.540488660336 +SURF 0x10 +mat 1 +refs 3 +9 0.890087366104 0.536032259464 +109 0.902705550194 0.540488660336 +124 0.896378755569 0.538826584816 +SURF 0x10 +mat 1 +refs 3 +109 0.902705550194 0.540488660336 +41 0.915323793888 0.544945120811 +130 0.908997058868 0.543283104897 +SURF 0x10 +mat 1 +refs 3 +126 0.896987736225 0.543520510197 +110 0.902704536915 0.540480315685 +11 0.890085279942 0.536015510559 +SURF 0x10 +mat 1 +refs 3 +110 0.902704536915 0.540480315685 +126 0.896987736225 0.543520510197 +131 0.909606933594 0.547985315323 +SURF 0x10 +mat 1 +refs 3 +47 0.903890192509 0.551025509834 +131 0.909606933594 0.547985315323 +126 0.896987736225 0.543520510197 +SURF 0x10 +mat 1 +refs 3 +131 0.909606933594 0.547985315323 +41 0.915323793888 0.544945120811 +110 0.902704536915 0.540480315685 +SURF 0x10 +mat 1 +refs 3 +127 0.909970700741 0.570475399494 +131 0.909606993198 0.547985315323 +47 0.903890192509 0.551025509834 +SURF 0x10 +mat 1 +refs 3 +131 0.909606993198 0.547985315323 +127 0.909970700741 0.570475399494 +111 0.915687501431 0.567435264587 +SURF 0x10 +mat 1 +refs 3 +29 0.916051208973 0.589925348759 +111 0.915687501431 0.567435264587 +127 0.909970700741 0.570475399494 +SURF 0x10 +mat 1 +refs 3 +111 0.915687501431 0.567435264587 +41 0.915323793888 0.544945120811 +131 0.909606993198 0.547985315323 +SURF 0x10 +mat 1 +refs 3 +123 0.851736783981 0.572090506554 +112 0.86773121357 0.569371819496 +26 0.854944527149 0.59752124548 +SURF 0x10 +mat 1 +refs 3 +112 0.86773121357 0.569371819496 +123 0.851736783981 0.572090506554 +132 0.864523530006 0.54394108057 +SURF 0x10 +mat 1 +refs 3 +45 0.848529160023 0.546659767628 +132 0.864523530006 0.54394108057 +123 0.851736783981 0.572090506554 +SURF 0x10 +mat 1 +refs 3 +132 0.864523530006 0.54394108057 +42 0.880517959595 0.541222453117 +112 0.86773121357 0.569371819496 +SURF 0x10 +mat 1 +refs 3 +122 0.850923657417 0.542349040508 +132 0.864523530006 0.543941140175 +45 0.848529160023 0.546659767628 +SURF 0x10 +mat 1 +refs 3 +132 0.864523530006 0.543941140175 +122 0.850923657417 0.542349040508 +113 0.866918087006 0.539630413055 +SURF 0x10 +mat 1 +refs 3 +8 0.853318214417 0.538038313389 +113 0.866918087006 0.539630413055 +122 0.850923657417 0.542349040508 +SURF 0x10 +mat 1 +refs 3 +113 0.866918087006 0.539630413055 +42 0.880517959595 0.541222453117 +132 0.864523530006 0.543941140175 +SURF 0x10 +mat 1 +refs 3 +124 0.896378815174 0.538826644421 +114 0.885302662849 0.538627386093 +9 0.890087366104 0.536032259464 +SURF 0x10 +mat 1 +refs 3 +114 0.885302662849 0.538627386093 +124 0.896378815174 0.538826644421 +133 0.891594111919 0.541421771049 +SURF 0x10 +mat 1 +refs 3 +46 0.902670264244 0.541621029377 +133 0.891594111919 0.541421771049 +124 0.896378815174 0.538826644421 +SURF 0x10 +mat 1 +refs 3 +133 0.891594111919 0.541421771049 +42 0.880517959595 0.541222453117 +114 0.885302662849 0.538627386093 +SURF 0x10 +mat 1 +refs 3 +125 0.909360706806 0.565773010254 +133 0.891594111919 0.541421771049 +46 0.902670264244 0.541621029377 +SURF 0x10 +mat 1 +refs 3 +133 0.891594111919 0.541421771049 +125 0.909360706806 0.565773010254 +115 0.898284554482 0.565573811531 +SURF 0x10 +mat 1 +refs 3 +27 0.916051208973 0.589925169945 +115 0.898284554482 0.565573811531 +125 0.909360706806 0.565773010254 +SURF 0x10 +mat 1 +refs 3 +115 0.898284554482 0.565573811531 +42 0.880517959595 0.541222453117 +133 0.891594111919 0.541421771049 +SURF 0x10 +mat 1 +refs 3 +127 0.909970700741 0.570475399494 +116 0.899117946625 0.571998119354 +29 0.916051208973 0.589925348759 +SURF 0x10 +mat 1 +refs 3 +116 0.899117946625 0.571998119354 +127 0.909970700741 0.570475399494 +134 0.893037438393 0.55254817009 +SURF 0x10 +mat 1 +refs 3 +47 0.903890192509 0.551025509834 +134 0.893037438393 0.55254817009 +127 0.909970700741 0.570475399494 +SURF 0x10 +mat 1 +refs 3 +134 0.893037438393 0.55254817009 +43 0.882184684277 0.554070830345 +116 0.899117946625 0.571998119354 +SURF 0x10 +mat 1 +refs 3 +126 0.896987736225 0.543520510197 +134 0.893037438393 0.55254817009 +47 0.903890192509 0.551025509834 +SURF 0x10 +mat 1 +refs 3 +134 0.893037438393 0.55254817009 +126 0.896987736225 0.543520510197 +117 0.886134982109 0.545043170452 +SURF 0x10 +mat 1 +refs 3 +11 0.890085279942 0.536015510559 +117 0.886134982109 0.545043170452 +126 0.896987736225 0.543520510197 +SURF 0x10 +mat 1 +refs 3 +117 0.886134982109 0.545043170452 +43 0.882184684277 0.554070830345 +134 0.893037438393 0.55254817009 +SURF 0x10 +mat 1 +refs 3 +120 0.851547896862 0.54716104269 +118 0.867745995522 0.54601252079 +10 0.853307306767 0.537954211235 +SURF 0x10 +mat 1 +refs 3 +118 0.867745995522 0.54601252079 +120 0.851547896862 0.54716104269 +135 0.865986585617 0.555219292641 +SURF 0x10 +mat 1 +refs 3 +44 0.849788486958 0.556367874146 +135 0.865986585617 0.555219292641 +120 0.851547896862 0.54716104269 +SURF 0x10 +mat 1 +refs 3 +135 0.865986585617 0.555219292641 +43 0.882184684277 0.554070830345 +118 0.867745995522 0.54601252079 +SURF 0x10 +mat 1 +refs 3 +121 0.852366507053 0.576944589615 +135 0.865986585617 0.555219292641 +44 0.849788486958 0.556367874146 +SURF 0x10 +mat 1 +refs 3 +135 0.865986585617 0.555219292641 +121 0.852366507053 0.576944589615 +119 0.868564605713 0.575796127319 +SURF 0x10 +mat 1 +refs 3 +24 0.854944527149 0.597521364689 +119 0.868564605713 0.575796127319 +121 0.852366507053 0.576944589615 +SURF 0x10 +mat 1 +refs 3 +119 0.868564605713 0.575796127319 +43 0.882184684277 0.554070830345 +135 0.865986585617 0.555219292641 +SURF 0x10 +mat 1 +refs 3 +77 0.727968990803 0.182866573334 +136 0.714978039265 0.181814193726 +9 0.735686302185 0.181877017021 +SURF 0x10 +mat 1 +refs 3 +136 0.714978039265 0.181814193726 +77 0.727968990803 0.182866573334 +76 0.707260608673 0.18280377984 +SURF 0x10 +mat 1 +refs 3 +30 0.720251619816 0.183856129646 +76 0.707260608673 0.18280377984 +77 0.727968990803 0.182866573334 +SURF 0x10 +mat 1 +refs 3 +76 0.707260608673 0.18280377984 +8 0.69426971674 0.181751400232 +136 0.714978039265 0.181814193726 +SURF 0x10 +mat 1 +refs 3 +74 0.7410774827 0.178908288479 +137 0.720369160175 0.178845494986 +28 0.746468603611 0.175939589739 +SURF 0x10 +mat 1 +refs 3 +137 0.720369160175 0.178845494986 +74 0.7410774827 0.178908288479 +136 0.714978039265 0.181814193726 +SURF 0x10 +mat 1 +refs 3 +9 0.735686302185 0.181877017021 +136 0.714978039265 0.181814193726 +74 0.7410774827 0.178908288479 +SURF 0x10 +mat 1 +refs 3 +136 0.714978039265 0.181814193726 +8 0.69426971674 0.181751400232 +137 0.720369160175 0.178845494986 +SURF 0x10 +mat 1 +refs 3 +137 0.720369160175 0.178845494986 +138 0.716038286686 0.175688385963 +28 0.746468603611 0.175939589739 +SURF 0x10 +mat 1 +refs 3 +138 0.716038286686 0.175688385963 +137 0.720369160175 0.178845494986 +73 0.68993884325 0.17859429121 +SURF 0x10 +mat 1 +refs 3 +8 0.69426971674 0.181751400232 +73 0.68993884325 0.17859429121 +137 0.720369160175 0.178845494986 +SURF 0x10 +mat 1 +refs 3 +73 0.68993884325 0.17859429121 +25 0.685607969761 0.17543721199 +138 0.716038286686 0.175688385963 +SURF 0x10 +mat 1 +refs 3 +75 0.741077303886 0.173119544983 +139 0.710646927357 0.172868341208 +11 0.735685884953 0.170299470425 +SURF 0x10 +mat 1 +refs 3 +139 0.710646927357 0.172868341208 +75 0.741077303886 0.173119544983 +138 0.716038286686 0.175688385963 +SURF 0x10 +mat 1 +refs 3 +28 0.746468603611 0.175939589739 +138 0.716038286686 0.175688385963 +75 0.741077303886 0.173119544983 +SURF 0x10 +mat 1 +refs 3 +138 0.716038286686 0.175688385963 +25 0.685607969761 0.17543721199 +139 0.710646927357 0.172868341208 +SURF 0x10 +mat 1 +refs 3 +139 0.710646927357 0.172868341208 +140 0.714976727962 0.169774055481 +11 0.735685884953 0.170299470425 +SURF 0x10 +mat 1 +refs 3 +140 0.714976727962 0.216876029968 +139 0.710646927357 0.219970345497 +72 0.689937770367 0.219444870949 +SURF 0x10 +mat 1 +refs 3 +25 0.685607969761 0.17543721199 +72 0.689937770367 0.172342896461 +139 0.710646927357 0.172868341208 +SURF 0x10 +mat 1 +refs 3 +72 0.689937770367 0.172342896461 +10 0.694267570972 0.169248610735 +140 0.714976727962 0.169774055481 +SURF 0x10 +mat 1 +refs 3 +78 0.727967917919 0.21601203084 +79 0.707258760929 0.215486615896 +31 0.720249891281 0.214622616768 +SURF 0x10 +mat 1 +refs 3 +79 0.707258760929 0.215486615896 +78 0.727967917919 0.21601203084 +140 0.714976727962 0.216876029968 +SURF 0x10 +mat 1 +refs 3 +11 0.735685884953 0.217401444912 +140 0.714976727962 0.216876029968 +78 0.727967917919 0.21601203084 +SURF 0x10 +mat 1 +refs 3 +140 0.714976727962 0.216876029968 +10 0.694267570972 0.216350615025 +79 0.707258760929 0.215486615896 +SURF 0x10 +mat 1 +refs 4 +3 0.926753878593 0.737024903297 +14 0.955941557884 0.732427597046 +141 0.949343681335 0.713580965996 +142 0.920610785484 0.717458128929 +SURF 0x10 +mat 1 +refs 4 +142 0.920610785484 0.717458128929 +141 0.949343681335 0.713580965996 +49 0.942745745182 0.694734215736 +48 0.914467632771 0.697891294956 +SURF 0x10 +mat 1 +refs 4 +14 0.886189460754 0.701048374176 +2 0.897328317165 0.739786684513 +143 0.912041068077 0.738405823708 +141 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +141 0.90032851696 0.699469804764 +143 0.912041068077 0.738405823708 +50 0.926753878593 0.737024903297 +49 0.914467632771 0.697891294956 +SURF 0x10 +mat 1 +refs 4 +52 0.886189460754 0.701048374176 +145 0.90032851696 0.699469804764 +160 0.894690334797 0.708427727222 +144 0.891401648521 0.717664003372 +SURF 0x10 +mat 1 +refs 4 +51 0.914467632771 0.697891294956 +0 0.92580139637 0.729682266712 +160 0.894690334797 0.708427727222 +145 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +0 0.92580139637 0.729682266712 +15 0.896613895893 0.734279572964 +144 0.891401648521 0.717664003372 +160 0.894690334797 0.708427727222 +SURF 0x10 +mat 1 +refs 4 +52 0.914467632771 0.697891294956 +144 0.928606748581 0.696312665939 +161 0.924370646477 0.705049753189 +146 0.920134544373 0.713786780834 +SURF 0x10 +mat 1 +refs 4 +15 0.942745745182 0.694734156132 +1 0.955227017403 0.726920366287 +161 0.924370646477 0.705049753189 +144 0.928606748581 0.696312665939 +SURF 0x10 +mat 1 +refs 4 +1 0.955227017403 0.726920366287 +53 0.92580139637 0.729682266712 +146 0.920134544373 0.713786780834 +161 0.924370646477 0.705049753189 +SURF 0x10 +mat 1 +refs 3 +147 0.947458744049 0.694207906723 +1 0.965353190899 0.728447496891 +16 0.955227017403 0.726920366287 +SURF 0x10 +mat 1 +refs 3 +53 0.952171802521 0.693681657314 +1 0.965353190899 0.728447496891 +147 0.947458744049 0.694207906723 +SURF 0x10 +mat 1 +refs 3 +147 0.947458744049 0.694207906723 +16 0.955227017403 0.726920366287 +54 0.942745745182 0.694734156132 +SURF 0x10 +mat 1 +refs 4 +48 0.965353190899 0.728447496891 +148 0.958762526512 0.711064577103 +162 0.960335195065 0.721829533577 +142 0.960647344589 0.730437517166 +SURF 0x10 +mat 1 +refs 4 +54 0.952171802521 0.693681657314 +16 0.942745745182 0.694734215736 +162 0.960335195065 0.721829533577 +148 0.958762526512 0.711064577103 +SURF 0x10 +mat 1 +refs 4 +16 0.942745745182 0.694734215736 +3 0.955941557884 0.732427597046 +142 0.960647344589 0.730437517166 +162 0.960335195065 0.721829533577 +SURF 0x10 +mat 1 +refs 4 +50 0.876763522625 0.702100872993 +143 0.881982803345 0.720180273056 +163 0.881729602814 0.710877418518 +149 0.881476521492 0.70157456398 +SURF 0x10 +mat 1 +refs 4 +2 0.88720202446 0.738259613514 +17 0.897328317165 0.739786684513 +163 0.881729602814 0.710877418518 +143 0.881982803345 0.720180273056 +SURF 0x10 +mat 1 +refs 4 +17 0.897328317165 0.739786684513 +55 0.886189460754 0.701048374176 +149 0.881476521492 0.70157456398 +163 0.881729602814 0.710877418518 +SURF 0x10 +mat 1 +refs 3 +17 0.886189460754 0.701048374176 +0 0.896613895893 0.734279572964 +150 0.881982803345 0.720180273056 +SURF 0x10 +mat 1 +refs 3 +55 0.876763522625 0.702100872993 +17 0.886189460754 0.701048374176 +150 0.881982803345 0.720180273056 +SURF 0x10 +mat 1 +refs 3 +150 0.881982803345 0.720180273056 +0 0.896613895893 0.734279572964 +51 0.88720202446 0.738259613514 +SURF 0x10 +mat 1 +refs 4 +57 0.942745745182 0.694734215736 +152 0.928606688976 0.696312785149 +164 0.943514347076 0.704556286335 +151 0.949343681335 0.713580906391 +SURF 0x10 +mat 1 +refs 4 +56 0.914467632771 0.697891294956 +48 0.926753878593 0.737024903297 +164 0.943514347076 0.704556286335 +152 0.928606688976 0.696312785149 +SURF 0x10 +mat 1 +refs 4 +48 0.926753878593 0.737024903297 +49 0.955941557884 0.732427597046 +151 0.949343681335 0.713580906391 +164 0.943514347076 0.704556286335 +SURF 0x10 +mat 1 +refs 4 +57 0.914467632771 0.697891294956 +151 0.90032851696 0.699469804764 +165 0.910469651222 0.708463966846 +153 0.920610785484 0.717458128929 +SURF 0x10 +mat 1 +refs 4 +49 0.886189460754 0.701048374176 +50 0.897328317165 0.739786684513 +165 0.910469651222 0.708463966846 +151 0.90032851696 0.699469804764 +SURF 0x10 +mat 1 +refs 4 +50 0.897328317165 0.739786684513 +58 0.926753878593 0.737024903297 +153 0.920610785484 0.717458128929 +165 0.910469651222 0.708463966846 +SURF 0x10 +mat 1 +refs 4 +59 0.914467632771 0.697891294956 +51 0.92580139637 0.729682266712 +145 0.911207675934 0.731980919838 +154 0.90032851696 0.699469864368 +SURF 0x10 +mat 1 +refs 4 +154 0.90032851696 0.699469864368 +145 0.911207675934 0.731980919838 +52 0.896613895893 0.734279572964 +60 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 4 +60 0.914467632771 0.697891294956 +52 0.942745745182 0.694734156132 +146 0.948986411095 0.710827231407 +155 0.920134544373 0.713786780834 +SURF 0x10 +mat 1 +refs 4 +155 0.920134544373 0.713786780834 +146 0.948986411095 0.710827231407 +53 0.955227017403 0.726920366287 +61 0.92580139637 0.729682266712 +SURF 0x10 +mat 1 +refs 4 +61 0.952171802521 0.693681657314 +53 0.965353190899 0.728447496891 +147 0.960290074348 0.727683901787 +156 0.947458744049 0.694207906723 +SURF 0x10 +mat 1 +refs 4 +156 0.947458744049 0.694207906723 +147 0.960290074348 0.727683901787 +54 0.955227017403 0.726920366287 +62 0.942745745182 0.694734156132 +SURF 0x10 +mat 1 +refs 4 +62 0.952171802521 0.693681657314 +54 0.942745745182 0.694734215736 +148 0.949343681335 0.713580965996 +157 0.958762526512 0.711064577103 +SURF 0x10 +mat 1 +refs 4 +157 0.958762526512 0.711064577103 +148 0.949343681335 0.713580965996 +48 0.955941557884 0.732427597046 +56 0.965353190899 0.728447496891 +SURF 0x10 +mat 1 +refs 4 +58 0.876763522625 0.702100872993 +50 0.88720202446 0.738259613514 +149 0.892265200615 0.739023149014 +158 0.881476521492 0.701574623585 +SURF 0x10 +mat 1 +refs 4 +158 0.881476521492 0.701574623585 +149 0.892265200615 0.739023149014 +55 0.897328317165 0.739786684513 +63 0.886189460754 0.701048374176 +SURF 0x10 +mat 1 +refs 4 +63 0.876763522625 0.702100872993 +55 0.886189460754 0.701048374176 +150 0.891401648521 0.717664003372 +159 0.881982803345 0.720180273056 +SURF 0x10 +mat 1 +refs 4 +159 0.881982803345 0.720180273056 +150 0.891401648521 0.717664003372 +51 0.896613895893 0.734279572964 +59 0.88720202446 0.738259613514 +kids 0 +OBJECT poly +name "leg1.L" +data 8 +Mesh.022 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 123 +0.117007 -0.00397 0.177866 +-0.082912 -0.039479 0.163537 +-0.059908 -0.196277 0.182832 +0.104248 -0.181826 0.181114 +-0.062877 -0.174002 0.045366 +-0.03602 -0.398353 0.072222 +0.073541 -0.388167 0.177203 +-0.036052 -0.398358 0.177174 +0.073574 -0.388162 0.072251 +-0.026509 -0.43773 0.077077 +-0.026535 -0.437734 0.171697 +0.068761 -0.42732 0.077103 +0.068732 -0.427325 0.171722 +0.091821 -0.386466 0.124732 +0.084763 -0.298064 0.178134 +0.018737 -0.393264 0.19468 +-0.046924 -0.304257 0.178097 +-0.0543 -0.400054 0.124693 +-0.046891 -0.304252 0.059873 +0.018782 -0.393257 0.054745 +0.084796 -0.298058 0.05991 +-0.079697 -0.109419 0.099767 +-0.069217 -0.193121 0.117996 +0.014256 -0.190319 0.202191 +-0.066237 -0.107987 0.188108 +0.022027 -0.01529 0.196728 +0.098105 0.049098 0.16782 +0.134403 -0.022435 0.114901 +0.108255 -0.084683 0.181118 +0.114949 -0.174322 0.111965 +0.02113 -0.432525 0.06132 +-0.002573 0.042041 0.181951 +0.123877 0.020091 0.125358 +0.133222 -0.094745 0.111973 +0.020607 -0.093478 0.202196 +-0.076969 -0.129175 0.136228 +0.013297 -0.301214 0.037857 +-0.066967 -0.305267 0.111993 +0.013254 -0.301221 0.200147 +0.10484 -0.297049 0.11204 +0.084622 -0.425588 0.124417 +0.021089 -0.432531 0.18748 +-0.042401 -0.439467 0.124383 +0.095263 -0.16263 0.027503 +0.006579 -0.199846 0.025292 +0.043206 -0.468053 0.096897 +0.015517 -0.471078 0.087721 +-0.012183 -0.474105 0.096883 +0.043191 -0.468055 0.151911 +0.052432 -0.467045 0.124407 +-0.012202 -0.474108 0.151896 +0.015493 -0.471082 0.161073 +-0.021422 -0.475115 0.124387 +0.031839 -0.48775 0.115634 +0.023012 -0.488714 0.11271 +0.014186 -0.489679 0.115629 +0.031832 -0.487751 0.133167 +0.034781 -0.487428 0.124401 +0.014181 -0.489679 0.133162 +0.023008 -0.488715 0.136087 +0.011241 -0.49 0.124395 +-0.05777 0.002741 0.116945 +-0.054452 -0.054688 0.086185 +-0.042089 -0.102147 0.041377 +0.076853 0.057783 0.123313 +0.000947 0.064657 0.153021 +0.09579 0.036467 0.103381 +0.101926 0.015265 0.090865 +0.096903 -0.011743 0.075831 +0.074126 -0.09379 0.023418 +-0.001797 0.030551 0.090791 +-0.000747 0.012407 0.081073 +0.003156 -0.002588 0.066916 +0.016753 0.050112 0.102189 +0.040735 0.04794 0.092803 +0.046718 0.041206 0.086506 +0.048657 0.034507 0.082551 +0.047071 0.025975 0.077801 +0.039874 5.3e-05 0.061242 +-0.031264 -0.418042 0.07465 +-0.031295 -0.418047 0.174435 +-0.022826 -0.193298 0.192511 +0.019956 -0.412891 0.058032 +0.021315 -0.054384 0.199462 +-0.073096 -0.161149 0.127112 +-0.071603 -0.118581 0.162168 +-0.078331 -0.119297 0.117997 +-0.016796 -0.302733 0.048865 +-0.056929 -0.304759 0.085933 +-0.056946 -0.304762 0.145045 +-0.016838 -0.30274 0.189122 +0.019915 -0.412897 0.19108 +-0.04835 -0.419761 0.124538 +-0.028146 -0.186924 0.035329 +0.029363 -0.469565 0.092309 +0.001665 -0.472592 0.092302 +0.001647 -0.472594 0.156484 +0.029342 -0.469568 0.156492 +-0.016801 -0.474609 0.110635 +-0.031911 -0.457291 0.124385 +-0.016812 -0.474611 0.138142 +0.027425 -0.488232 0.114172 +0.0186 -0.489196 0.11417 +0.033308 -0.487589 0.128784 +0.043608 -0.477237 0.124404 +0.033307 -0.48759 0.120018 +0.018594 -0.489197 0.134624 +0.02742 -0.488233 0.134627 +0.012715 -0.489839 0.120012 +0.012712 -0.48984 0.128779 +0.031837 -0.48775 0.1244 +0.027423 -0.488232 0.122938 +0.023011 -0.488714 0.124398 +0.018597 -0.489197 0.125858 +0.014186 -0.489679 0.124396 +-0.05248 -0.138074 0.043372 +-0.075712 -0.140223 0.122555 +-0.072348 -0.139865 0.14464 +-0.074967 -0.118939 0.140083 +-0.024358 -0.46595 0.11751 +-0.024361 -0.465951 0.131263 +0.038456 -0.482413 0.126594 +0.038458 -0.482413 0.122211 +numsurf 157 +SURF 0x10 +mat 1 +refs 4 +25 0.578931689262 0.402289062738 +0 0.589010059834 0.407281309366 +26 0.599528133869 0.373209059238 +31 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +26 0.541251242161 0.359280019999 +0 0.548696875572 0.383870124817 +27 0.578931689262 0.402289062738 +32 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +27 0.588401973248 0.32696723938 +0 0.539168715477 0.31915846467 +28 0.541251242161 0.359280019999 +33 0.586082696915 0.37109297514 +SURF 0x10 +mat 1 +refs 4 +28 0.588401973248 0.32696723938 +3 0.588401973248 0.2732809484 +29 0.539168715477 0.276508003473 +33 0.539168715477 0.31915846467 +SURF 0x10 +mat 1 +refs 4 +23 0.603423774242 0.276528000832 +3 0.588401973248 0.2732809484 +28 0.588401973248 0.32696723938 +34 0.603423774242 0.329838395119 +SURF 0x10 +mat 1 +refs 4 +44 0.477480530739 0.271907866001 +43 0.477445542812 0.282367378473 +20 0.498604416847 0.210343569517 +36 0.481458067894 0.214921340346 +SURF 0x10 +mat 1 +refs 4 +20 0.498604416847 0.210343569517 +8 0.496333241463 0.161212667823 +19 0.482054710388 0.163231790066 +36 0.481458067894 0.214921340346 +SURF 0x10 +mat 1 +refs 4 +14 0.590607583523 0.210343569517 +3 0.588401973248 0.2732809484 +23 0.603423774242 0.276528000832 +38 0.607753813267 0.214921340346 +SURF 0x10 +mat 1 +refs 4 +15 0.59628278017 0.163231790066 +6 0.582004249096 0.161212667823 +14 0.590607583523 0.210343569517 +38 0.607753813267 0.214921340346 +SURF 0x10 +mat 1 +refs 4 +20 0.498604416847 0.210343569517 +43 0.477445542812 0.282367378473 +29 0.539168715477 0.276508003473 +39 0.539168715477 0.209129929543 +SURF 0x10 +mat 1 +refs 4 +29 0.539168715477 0.276508003473 +3 0.588401973248 0.2732809484 +14 0.590607583523 0.210343569517 +39 0.539168715477 0.209129929543 +SURF 0x10 +mat 1 +refs 4 +14 0.590607583523 0.210343569517 +6 0.582004249096 0.161212667823 +13 0.539168715477 0.160539582372 +39 0.539168715477 0.209129929543 +SURF 0x10 +mat 1 +refs 4 +13 0.539168715477 0.160539582372 +8 0.496333241463 0.161212667823 +20 0.498604416847 0.210343569517 +39 0.539168715477 0.209129929543 +SURF 0x10 +mat 1 +refs 4 +11 0.500295937061 0.139854937792 +8 0.496333241463 0.161212667823 +13 0.539168715477 0.160539582372 +40 0.538914561272 0.139413490891 +SURF 0x10 +mat 1 +refs 4 +13 0.539168715477 0.160539582372 +6 0.582004249096 0.161212667823 +12 0.577533185482 0.139854937792 +40 0.538914561272 0.139413490891 +SURF 0x10 +mat 1 +refs 4 +40 0.539168715477 0.160539582372 +12 0.582004249096 0.161212667823 +48 0.577533185482 0.139854937792 +49 0.538914561272 0.139413490891 +SURF 0x10 +mat 1 +refs 4 +11 0.500295937061 0.139854937792 +40 0.496333241463 0.161212667823 +49 0.539168715477 0.160539582372 +45 0.538914561272 0.139413490891 +SURF 0x10 +mat 1 +refs 3 +1 0.487395375967 0.502017498016 +25 0.497031360865 0.503715693951 +31 0.492738872766 0.517620682716 +SURF 0x10 +mat 1 +refs 3 +29 0.538230419159 0.274268805981 +43 0.47888764739 0.28240865469 +33 0.538230419159 0.316360235214 +SURF 0x10 +mat 1 +refs 4 +21 0.26407328248 0.329356998205 +1 0.246763408184 0.368531852961 +61 0.201836943626 0.329748123884 +62 0.227524667978 0.318633466959 +SURF 0x10 +mat 1 +refs 4 +31 0.599528133869 0.373209059238 +26 0.586082696915 0.37109297514 +64 0.578931689262 0.402289062738 +65 0.589010059834 0.407281309366 +SURF 0x10 +mat 1 +refs 4 +26 0.578931689262 0.402289062738 +32 0.586082696915 0.37109297514 +66 0.541251242161 0.359280019999 +64 0.548696875572 0.383870124817 +SURF 0x10 +mat 1 +refs 4 +32 0.578931689262 0.402289062738 +27 0.586082696915 0.37109297514 +67 0.541251242161 0.359280019999 +66 0.548696875572 0.383870124817 +SURF 0x10 +mat 1 +refs 4 +27 0.541251242161 0.359280019999 +33 0.586082696915 0.37109297514 +68 0.588401973248 0.32696723938 +67 0.539168715477 0.31915846467 +SURF 0x10 +mat 1 +refs 4 +1 0.487395375967 0.502017498016 +31 0.492738872766 0.517620682716 +65 0.484332859516 0.522627949715 +61 0.473855555058 0.510693669319 +SURF 0x10 +mat 1 +refs 4 +33 0.538230419159 0.316360235214 +43 0.47888764739 0.28240865469 +69 0.476019591093 0.322050601244 +68 0.512840092182 0.365104287863 +SURF 0x10 +mat 1 +refs 4 +62 0.26407328248 0.329356998205 +61 0.246763408184 0.368531852961 +70 0.201836943626 0.329748123884 +71 0.227524667978 0.318633466959 +SURF 0x10 +mat 1 +refs 4 +63 0.201836943626 0.329748123884 +62 0.149327963591 0.29350939393 +71 0.214680880308 0.282752305269 +72 0.227524667978 0.318633466959 +SURF 0x10 +mat 1 +refs 4 +65 0.599528133869 0.373209059238 +64 0.586082696915 0.37109297514 +74 0.578931689262 0.402289062738 +73 0.589010059834 0.407281309366 +SURF 0x10 +mat 1 +refs 4 +64 0.578931689262 0.402289062738 +66 0.586082696915 0.37109297514 +75 0.541251242161 0.359280019999 +74 0.548696875572 0.383870124817 +SURF 0x10 +mat 1 +refs 4 +66 0.578931689262 0.402289062738 +67 0.586082696915 0.37109297514 +76 0.541251242161 0.359280019999 +75 0.548696875572 0.383870124817 +SURF 0x10 +mat 1 +refs 4 +67 0.541251242161 0.359280019999 +68 0.586082696915 0.37109297514 +77 0.588401973248 0.32696723938 +76 0.539168715477 0.31915846467 +SURF 0x10 +mat 1 +refs 4 +61 0.473855555058 0.510693669319 +65 0.484332859516 0.522627949715 +73 0.469562351704 0.518754482269 +70 0.466252148151 0.51498401165 +SURF 0x10 +mat 1 +refs 4 +69 0.0 1.0 +63 0.0 0.0 +72 1.0 0.0 +78 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +68 0.512840092182 0.365104287863 +69 0.476019591093 0.322050601244 +78 0.502599000931 0.376565724611 +77 0.514232039452 0.390168070793 +SURF 0x10 +mat 1 +refs 4 +9 0.171932861209 0.144353494048 +79 0.169972240925 0.155608743429 +82 0.156538441777 0.153954744339 +30 0.159194618464 0.143043458462 +SURF 0x10 +mat 1 +refs 4 +79 0.169972240925 0.155608743429 +5 0.168011620641 0.166864037514 +19 0.153882279992 0.164866045117 +82 0.156538441777 0.153954744339 +SURF 0x10 +mat 1 +refs 3 +82 0.484738916159 0.15220528841 +8 0.496333241463 0.161212667823 +11 0.500295937061 0.139854937792 +SURF 0x10 +mat 1 +refs 3 +30 0.487423121929 0.141178801656 +82 0.484738916159 0.15220528841 +11 0.500295937061 0.139854937792 +SURF 0x10 +mat 1 +refs 3 +82 0.484738916159 0.15220528841 +19 0.482054710388 0.163231790066 +8 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +28 0.586082696915 0.37109297514 +0 0.601475954056 0.351523697376 +83 0.588401973248 0.32696723938 +SURF 0x10 +mat 1 +refs 3 +83 0.586082696915 0.37109297514 +0 0.599528133869 0.373209059238 +25 0.601475954056 0.351523697376 +SURF 0x10 +mat 1 +refs 3 +83 0.601475954056 0.351523697376 +34 0.603423774242 0.329838395119 +28 0.588401973248 0.32696723938 +SURF 0x10 +mat 1 +refs 3 +83 0.272055804729 0.351190686226 +1 0.246763408184 0.368531852961 +24 0.26407328248 0.329356998205 +SURF 0x10 +mat 1 +refs 3 +34 0.27398326993 0.329731911421 +83 0.272055804729 0.351190686226 +24 0.26407328248 0.329356998205 +SURF 0x10 +mat 1 +refs 3 +83 0.272055804729 0.351190686226 +25 0.270128339529 0.372649490833 +1 0.246763408184 0.368531852961 +SURF 0x10 +mat 1 +refs 3 +81 0.267170190811 0.278588950634 +34 0.27398326993 0.329731911421 +24 0.26407328248 0.329356998205 +SURF 0x10 +mat 1 +refs 3 +2 0.260357141495 0.280199378729 +81 0.267170190811 0.278588950634 +24 0.26407328248 0.329356998205 +SURF 0x10 +mat 1 +refs 3 +81 0.267170190811 0.278588950634 +23 0.27398326993 0.276978522539 +34 0.27398326993 0.329731911421 +SURF 0x10 +mat 1 +refs 4 +35 0.227524667978 0.318633466959 +86 0.214680805802 0.324190795422 +116 0.217891782522 0.312441885471 +84 0.221102774143 0.300692915916 +SURF 0x10 +mat 1 +refs 4 +22 0.214680880308 0.282752305269 +84 0.221102774143 0.300692915916 +116 0.217891782522 0.312441885471 +4 0.149327963591 0.29350939393 +SURF 0x10 +mat 1 +refs 4 +4 0.149327963591 0.29350939393 +116 0.217891782522 0.312441885471 +86 0.214680805802 0.324190795422 +21 0.201836943626 0.329748123884 +SURF 0x10 +mat 1 +refs 4 +35 0.227524667978 0.318633466959 +84 0.221102774143 0.300692886114 +117 0.233450874686 0.312344074249 +85 0.245798975229 0.323995232582 +SURF 0x10 +mat 1 +refs 4 +24 0.26407328248 0.329356998205 +85 0.245798975229 0.323995232582 +117 0.233450874686 0.312344074249 +2 0.260357141495 0.280199378729 +SURF 0x10 +mat 1 +refs 4 +2 0.260357141495 0.280199378729 +117 0.233450874686 0.312344074249 +84 0.221102774143 0.300692886114 +22 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 4 +35 0.227524667978 0.318633466959 +85 0.245798960328 0.323995232582 +118 0.230239897966 0.324093014002 +86 0.214680805802 0.324190795422 +SURF 0x10 +mat 1 +refs 4 +21 0.201836943626 0.329748123884 +86 0.214680805802 0.324190795422 +118 0.230239897966 0.324093014002 +1 0.246763408184 0.368531852961 +SURF 0x10 +mat 1 +refs 4 +1 0.246763408184 0.368531852961 +118 0.230239897966 0.324093014002 +85 0.245798960328 0.323995232582 +24 0.26407328248 0.329356998205 +SURF 0x10 +mat 1 +refs 4 +4 0.149327963591 0.29350939393 +93 0.149341896176 0.282958030701 +87 0.161775439978 0.217817097902 +18 0.170258998871 0.219618678093 +SURF 0x10 +mat 1 +refs 4 +93 0.149341896176 0.282958030701 +44 0.149355828762 0.272406667471 +36 0.153291866183 0.216015517712 +87 0.161775439978 0.217817097902 +SURF 0x10 +mat 1 +refs 3 +87 0.161775439978 0.217817097902 +19 0.153882279992 0.164866045117 +5 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +18 0.170258998871 0.219618678093 +87 0.161775439978 0.217817097902 +5 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +87 0.161775439978 0.217817097902 +36 0.153291866183 0.216015517712 +19 0.153882279992 0.164866045117 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.22021920979 +2 0.260357141495 0.280199378729 +22 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 3 +37 0.210399508476 0.22081977129 +89 0.235850214958 0.22021920979 +22 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.22021920979 +16 0.26130092144 0.219618678093 +2 0.260357141495 0.280199378729 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.22021920979 +22 0.214680880308 0.282752305269 +4 0.149327963591 0.29350939393 +SURF 0x10 +mat 1 +refs 3 +18 0.170258998871 0.219618678093 +88 0.190329253674 0.22021920979 +4 0.149327963591 0.29350939393 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.22021920979 +37 0.210399508476 0.22081977129 +22 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.220219224691 +5 0.168011620641 0.166864037514 +17 0.210399508476 0.167529985309 +SURF 0x10 +mat 1 +refs 3 +37 0.210399508476 0.22081977129 +88 0.190329253674 0.220219224691 +17 0.210399508476 0.167529985309 +SURF 0x10 +mat 1 +refs 3 +88 0.190329253674 0.220219224691 +18 0.170258998871 0.219618678093 +5 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.220219224691 +17 0.210399508476 0.167529985309 +7 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +16 0.26130092144 0.219618678093 +89 0.235850214958 0.220219224691 +7 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +89 0.235850214958 0.220219224691 +37 0.210399508476 0.22081977129 +17 0.210399508476 0.167529985309 +SURF 0x10 +mat 1 +refs 4 +23 0.27398326993 0.276978522539 +81 0.267170190811 0.278588950634 +90 0.269784510136 0.217817097902 +38 0.278268098831 0.216015517712 +SURF 0x10 +mat 1 +refs 4 +81 0.267170190811 0.278588950634 +2 0.260357141495 0.280199378729 +16 0.26130092144 0.219618678093 +90 0.269784510136 0.217817097902 +SURF 0x10 +mat 1 +refs 3 +90 0.269784510136 0.217817097902 +7 0.252787560225 0.166864037514 +15 0.266916900873 0.164866045117 +SURF 0x10 +mat 1 +refs 3 +38 0.278268098831 0.216015517712 +90 0.269784510136 0.217817097902 +15 0.266916900873 0.164866045117 +SURF 0x10 +mat 1 +refs 3 +90 0.269784510136 0.217817097902 +16 0.26130092144 0.219618678093 +7 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +91 0.593344390392 0.15220528841 +12 0.577533185482 0.139854937792 +6 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +15 0.59628278017 0.163231790066 +91 0.593344390392 0.15220528841 +6 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +91 0.593344390392 0.15220528841 +41 0.590406000614 0.141178801656 +12 0.577533185482 0.139854937792 +SURF 0x10 +mat 1 +refs 4 +7 0.252787560225 0.166864037514 +80 0.250575363636 0.155608743429 +91 0.264009177685 0.153954744339 +15 0.266916900873 0.164866045117 +SURF 0x10 +mat 1 +refs 4 +80 0.250575363636 0.155608743429 +10 0.248363167048 0.144353494048 +41 0.261101514101 0.143043458462 +91 0.264009177685 0.153954744339 +SURF 0x10 +mat 1 +refs 4 +10 0.248363167048 0.144353494048 +80 0.250575363636 0.155608743429 +92 0.210273787379 0.156159982085 +42 0.210148066282 0.144790023565 +SURF 0x10 +mat 1 +refs 4 +80 0.250575363636 0.155608743429 +7 0.252787560225 0.166864037514 +17 0.210399508476 0.167529985309 +92 0.210273787379 0.156159982085 +SURF 0x10 +mat 1 +refs 4 +5 0.168011620641 0.166864037514 +79 0.169972240925 0.155608743429 +92 0.210273787379 0.156159982085 +17 0.210399508476 0.167529985309 +SURF 0x10 +mat 1 +refs 4 +79 0.169972240925 0.155608743429 +9 0.171932861209 0.144353494048 +42 0.210148066282 0.144790023565 +92 0.210273787379 0.156159982085 +SURF 0x10 +mat 1 +refs 3 +94 0.493859529495 0.140516862273 +30 0.482054710388 0.163231790066 +11 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +45 0.500295937061 0.139854937792 +94 0.493859529495 0.140516862273 +11 0.496333241463 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +94 0.493859529495 0.140516862273 +46 0.487423121929 0.141178801656 +30 0.482054710388 0.163231790066 +SURF 0x10 +mat 1 +refs 3 +95 0.156538456678 0.153954744339 +9 0.171932861209 0.144353494048 +30 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +46 0.153882279992 0.164866045117 +95 0.156538456678 0.153954744339 +30 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +95 0.156538456678 0.153954744339 +47 0.159194618464 0.143043458462 +9 0.171932861209 0.144353494048 +SURF 0x10 +mat 1 +refs 3 +96 0.254732340574 0.143698483706 +41 0.266916900873 0.164866045117 +10 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +50 0.248363167048 0.144353494048 +96 0.254732340574 0.143698483706 +10 0.252787560225 0.166864037514 +SURF 0x10 +mat 1 +refs 3 +96 0.254732340574 0.143698483706 +51 0.261101514101 0.143043458462 +41 0.266916900873 0.164866045117 +SURF 0x10 +mat 1 +refs 3 +97 0.593344390392 0.15220528841 +12 0.577533185482 0.139854937792 +41 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +51 0.59628278017 0.163231790066 +97 0.593344390392 0.15220528841 +41 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 3 +97 0.593344390392 0.15220528841 +48 0.590406000614 0.141178801656 +12 0.577533185482 0.139854937792 +SURF 0x10 +mat 1 +refs 4 +52 0.210148066282 0.144790023565 +99 0.21027380228 0.156160026789 +119 0.200657129288 0.150365918875 +98 0.191040456295 0.144571781158 +SURF 0x10 +mat 1 +refs 4 +47 0.171932861209 0.144353494048 +98 0.191040456295 0.144571781158 +119 0.200657129288 0.150365918875 +9 0.168011620641 0.166864037514 +SURF 0x10 +mat 1 +refs 4 +9 0.168011620641 0.166864037514 +119 0.200657129288 0.150365918875 +99 0.21027380228 0.156160026789 +42 0.210399508476 0.167529985309 +SURF 0x10 +mat 1 +refs 4 +52 0.210399508476 0.167529985309 +100 0.210273832083 0.156160026789 +120 0.220353469253 0.16409149766 +99 0.231593579054 0.167197018862 +SURF 0x10 +mat 1 +refs 4 +42 0.252787560225 0.166864037514 +99 0.231593579054 0.167197018862 +120 0.220353469253 0.16409149766 +10 0.248363167048 0.144353494048 +SURF 0x10 +mat 1 +refs 4 +10 0.248363167048 0.144353494048 +120 0.220353469253 0.16409149766 +100 0.210273832083 0.156160026789 +50 0.210148066282 0.144790023565 +SURF 0x10 +mat 1 +refs 4 +46 0.482054710388 0.163231790066 +94 0.489193975925 0.162222221494 +101 0.493859529495 0.140516877174 +54 0.487423121929 0.141178801656 +SURF 0x10 +mat 1 +refs 4 +94 0.489193975925 0.162222221494 +45 0.496333241463 0.161212667823 +53 0.500295937061 0.139854937792 +101 0.493859529495 0.140516877174 +SURF 0x10 +mat 1 +refs 4 +47 0.171932861209 0.144353494048 +95 0.169972240925 0.15560875833 +102 0.156538456678 0.153954744339 +55 0.159194618464 0.143043458462 +SURF 0x10 +mat 1 +refs 4 +95 0.169972240925 0.15560875833 +46 0.168011620641 0.166864037514 +54 0.153882279992 0.164866045117 +102 0.156538456678 0.153954744339 +SURF 0x10 +mat 1 +refs 4 +57 0.538914561272 0.139413490891 +104 0.539041638374 0.149976536632 +121 0.548632740974 0.144805371761 +103 0.558223843575 0.139634221792 +SURF 0x10 +mat 1 +refs 4 +56 0.577533185482 0.139854937792 +103 0.558223843575 0.139634221792 +121 0.548632740974 0.144805371761 +48 0.582004249096 0.161212667823 +SURF 0x10 +mat 1 +refs 4 +48 0.582004249096 0.161212667823 +121 0.548632740974 0.144805371761 +104 0.539041638374 0.149976536632 +49 0.539168715477 0.160539582372 +SURF 0x10 +mat 1 +refs 4 +57 0.539168715477 0.160539582372 +105 0.539041638374 0.149976551533 +122 0.528775572777 0.15900619328 +104 0.51775097847 0.160876125097 +SURF 0x10 +mat 1 +refs 4 +49 0.496333241463 0.161212667823 +104 0.51775097847 0.160876125097 +122 0.528775572777 0.15900619328 +45 0.500295937061 0.139854937792 +SURF 0x10 +mat 1 +refs 4 +45 0.500295937061 0.139854937792 +122 0.528775572777 0.15900619328 +105 0.539041638374 0.149976551533 +53 0.538914561272 0.139413490891 +SURF 0x10 +mat 1 +refs 4 +51 0.266916900873 0.164866045117 +96 0.259852230549 0.165865033865 +106 0.254732340574 0.143698468804 +59 0.261101514101 0.143043458462 +SURF 0x10 +mat 1 +refs 4 +96 0.259852230549 0.165865033865 +50 0.252787560225 0.166864037514 +58 0.248363167048 0.144353494048 +106 0.254732340574 0.143698468804 +SURF 0x10 +mat 1 +refs 4 +48 0.577533185482 0.139854937792 +97 0.579768717289 0.150533795357 +107 0.593344390392 0.15220528841 +56 0.590406000614 0.141178801656 +SURF 0x10 +mat 1 +refs 4 +97 0.579768717289 0.150533795357 +51 0.582004249096 0.161212667823 +59 0.59628278017 0.163231790066 +107 0.593344390392 0.15220528841 +SURF 0x10 +mat 1 +refs 4 +52 0.210399508476 0.167529985309 +98 0.189205557108 0.167197018862 +108 0.191040441394 0.144571751356 +60 0.210148066282 0.144790023565 +SURF 0x10 +mat 1 +refs 4 +98 0.189205557108 0.167197018862 +47 0.168011620641 0.166864037514 +55 0.171932861209 0.144353494048 +108 0.191040441394 0.144571751356 +SURF 0x10 +mat 1 +refs 4 +50 0.248363167048 0.144353494048 +100 0.250575363636 0.155608773232 +109 0.210273787379 0.156159996986 +58 0.210148066282 0.144790023565 +SURF 0x10 +mat 1 +refs 4 +100 0.250575363636 0.155608773232 +52 0.252787560225 0.166864037514 +60 0.210399508476 0.167529985309 +109 0.210273787379 0.156159996986 +SURF 0x10 +mat 1 +refs 3 +110 0.500000417233 0.500000417233 +56 0.0 1.0 +103 -6.55651092529e-07 0.499999821186 +SURF 0x10 +mat 1 +refs 3 +103 -6.55651092529e-07 0.499999821186 +105 0.499999791384 2.08616256714e-07 +110 0.500000417233 0.500000417233 +SURF 0x10 +mat 1 +refs 3 +53 1.0 0.0 +110 0.500000417233 0.500000417233 +105 0.499999791384 2.08616256714e-07 +SURF 0x10 +mat 1 +refs 3 +105 0.499999791384 2.08616256714e-07 +103 -6.55651092529e-07 0.499999821186 +57 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +111 0.499999821186 0.499999642372 +56 0.0 1.0 +110 3.27825546265e-07 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +110 3.27825546265e-07 0.499999970198 +101 0.5 -2.45869159698e-07 +111 0.499999821186 0.499999642372 +SURF 0x10 +mat 1 +refs 3 +54 1.0 0.0 +111 0.499999821186 0.499999642372 +101 0.5 -2.45869159698e-07 +SURF 0x10 +mat 1 +refs 3 +101 0.5 -2.45869159698e-07 +110 3.27825546265e-07 0.499999970198 +53 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +112 0.5 0.5 +59 0.0 1.0 +107 1.78813934326e-07 0.499999582767 +SURF 0x10 +mat 1 +refs 3 +107 1.78813934326e-07 0.499999582767 +111 0.500000178814 -4.17232513428e-07 +112 0.5 0.5 +SURF 0x10 +mat 1 +refs 3 +54 1.0 0.0 +112 0.5 0.5 +111 0.500000178814 -4.17232513428e-07 +SURF 0x10 +mat 1 +refs 3 +111 0.500000178814 -4.17232513428e-07 +107 1.78813934326e-07 0.499999582767 +56 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +113 0.500000357628 0.500000119209 +59 0.0 1.0 +112 0.0 0.5 +SURF 0x10 +mat 1 +refs 3 +112 0.0 0.5 +102 0.500000298023 1.4528632164e-07 +113 0.500000357628 0.500000119209 +SURF 0x10 +mat 1 +refs 3 +55 1.0 0.0 +113 0.500000357628 0.500000119209 +102 0.500000298023 1.4528632164e-07 +SURF 0x10 +mat 1 +refs 3 +102 0.500000298023 1.4528632164e-07 +112 0.0 0.5 +54 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +114 0.499999910593 0.500000357628 +58 0.0 1.0 +106 1.78813934326e-07 0.499999821186 +SURF 0x10 +mat 1 +refs 3 +106 1.78813934326e-07 0.499999821186 +113 0.499999672174 5.96046447754e-07 +114 0.499999910593 0.500000357628 +SURF 0x10 +mat 1 +refs 3 +55 1.0 0.0 +114 0.499999910593 0.500000357628 +113 0.499999672174 5.96046447754e-07 +SURF 0x10 +mat 1 +refs 3 +113 0.499999672174 5.96046447754e-07 +106 1.78813934326e-07 0.499999821186 +59 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +109 0.499999254942 0.500000596046 +58 0.0 1.0 +114 8.34465026855e-07 0.499999582767 +SURF 0x10 +mat 1 +refs 3 +114 8.34465026855e-07 0.499999582767 +108 0.5 -2.38418579102e-07 +109 0.499999254942 0.500000596046 +SURF 0x10 +mat 1 +refs 3 +60 1.0 0.0 +109 0.499999254942 0.500000596046 +108 0.5 -2.38418579102e-07 +SURF 0x10 +mat 1 +refs 3 +108 0.5 -2.38418579102e-07 +114 8.34465026855e-07 0.499999582767 +55 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +44 1.0 0.0 +93 0.500000059605 0.499999940395 +43 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +93 0.500000059605 0.499999940395 +4 0.0 1.0 +43 0.0 0.0 +SURF 0x10 +mat 1 +refs 3 +115 0.214680820704 0.324190795422 +21 0.149327963591 0.29350939393 +62 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 3 +63 0.227524667978 0.318633466959 +115 0.214680820704 0.324190795422 +62 0.214680880308 0.282752305269 +SURF 0x10 +mat 1 +refs 3 +115 0.214680820704 0.324190795422 +4 0.201836943626 0.329748123884 +21 0.149327963591 0.29350939393 +SURF 0x10 +mat 1 +refs 3 +115 0.500000298023 -5.96046447754e-08 +69 1.0 1.0 +43 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +4 0.0 0.0 +115 0.500000298023 -5.96046447754e-08 +43 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +115 0.500000298023 -5.96046447754e-08 +63 1.0 0.0 +69 1.0 1.0 +kids 0 +OBJECT group +name "leg2.R" +kids 2 +OBJECT poly +name "leg2.R_0" +data 8 +Mesh.009 +crease 30 +numvert 21 +0.038648 -0.404156 -0.103964 +0.020515 -0.403389 -0.097938 +0.002386 -0.402622 -0.103954 +-0.003645 -0.402366 -0.122015 +0.002378 -0.399523 -0.152474 +0.020511 -0.40029 -0.1585 +0.038662 -0.401057 -0.152484 +0.044711 -0.404412 -0.122028 +0.029593 -0.403772 -0.100951 +0.011462 -0.403005 -0.100946 +-0.000629 -0.402494 -0.112984 +-0.000644 -0.400944 -0.137244 +0.011456 -0.399906 -0.155487 +0.029586 -0.400673 -0.155492 +0.041676 -0.402734 -0.137256 +0.04169 -0.404284 -0.112996 +0.038655 -0.402606 -0.128224 +0.029599 -0.402223 -0.125211 +0.020524 -0.401839 -0.128219 +0.011449 -0.401456 -0.131227 +0.002393 -0.401072 -0.128214 +numsurf 24 +SURF 0x10 +mat 1 +refs 3 +16 0.500000357628 0.500000059605 +14 -1.19209289551e-07 0.499999940395 +6 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +14 -1.19209289551e-07 0.499999940395 +16 0.500000357628 0.500000059605 +15 0.500000238419 -1.49011611938e-08 +SURF 0x10 +mat 1 +refs 3 +0 1.0 0.0 +15 0.500000238419 -1.49011611938e-08 +16 0.500000357628 0.500000059605 +SURF 0x10 +mat 1 +refs 3 +15 0.500000238419 -1.49011611938e-08 +7 0.0 0.0 +14 -1.19209289551e-07 0.499999940395 +SURF 0x10 +mat 1 +refs 3 +17 0.5 0.499999880791 +16 1.49011611938e-07 0.499999910593 +6 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +16 1.49011611938e-07 0.499999910593 +17 0.5 0.499999880791 +8 0.499999850988 -1.86264514923e-08 +SURF 0x10 +mat 1 +refs 3 +1 1.0 0.0 +8 0.499999850988 -1.86264514923e-08 +17 0.5 0.499999880791 +SURF 0x10 +mat 1 +refs 3 +8 0.499999850988 -1.86264514923e-08 +0 0.0 0.0 +16 1.49011611938e-07 0.499999910593 +SURF 0x10 +mat 1 +refs 3 +18 0.499999880791 0.500000119209 +13 2.98023223877e-08 0.499999970198 +5 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +13 2.98023223877e-08 0.499999970198 +18 0.499999880791 0.500000119209 +17 0.500000059605 -1.19209289551e-07 +SURF 0x10 +mat 1 +refs 3 +1 1.0 0.0 +17 0.500000059605 -1.19209289551e-07 +18 0.499999880791 0.500000119209 +SURF 0x10 +mat 1 +refs 3 +17 0.500000059605 -1.19209289551e-07 +6 0.0 0.0 +13 2.98023223877e-08 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +19 0.5 0.499999910593 +18 0.0 0.500000119209 +5 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +18 0.0 0.500000119209 +19 0.5 0.499999910593 +9 0.5 0.0 +SURF 0x10 +mat 1 +refs 3 +2 1.0 0.0 +9 0.5 0.0 +19 0.5 0.499999910593 +SURF 0x10 +mat 1 +refs 3 +9 0.5 0.0 +1 0.0 0.0 +18 0.0 0.500000119209 +SURF 0x10 +mat 1 +refs 3 +20 0.499999880791 0.499999970198 +12 -5.96046447754e-08 0.499999880791 +4 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +12 -5.96046447754e-08 0.499999880791 +20 0.499999880791 0.499999970198 +19 0.500000119209 -1.19209289551e-07 +SURF 0x10 +mat 1 +refs 3 +2 1.0 0.0 +19 0.500000119209 -1.19209289551e-07 +20 0.499999880791 0.499999970198 +SURF 0x10 +mat 1 +refs 3 +19 0.500000119209 -1.19209289551e-07 +5 0.0 0.0 +12 -5.96046447754e-08 0.499999880791 +SURF 0x10 +mat 1 +refs 3 +11 0.500000476837 0.499999821186 +20 -4.17232513428e-07 0.500000238419 +4 0.0 1.0 +SURF 0x10 +mat 1 +refs 3 +20 -4.17232513428e-07 0.500000238419 +11 0.500000476837 0.499999821186 +10 0.499999165535 4.32133674622e-07 +SURF 0x10 +mat 1 +refs 3 +3 1.0 0.0 +10 0.499999165535 4.32133674622e-07 +11 0.500000476837 0.499999821186 +SURF 0x10 +mat 1 +refs 3 +10 0.499999165535 4.32133674622e-07 +2 0.0 0.0 +20 -4.17232513428e-07 0.500000238419 +kids 0 +OBJECT poly +name "leg2.R_1" +data 8 +Mesh.009 +texture "pilot1.rgb" +texrep 1 1 +crease 30 +numvert 122 +0.092714 -0.489453 -0.178183 +-0.019989 -0.481585 -0.068967 +-0.004117 -0.641331 -0.066718 +0.092748 -0.486354 -0.068998 +-0.020023 -0.484684 -0.178152 +0.012868 -0.764341 -0.081585 +0.005313 -0.76404 -0.165546 +0.099483 -0.767806 -0.081609 +0.106998 -0.768108 -0.165573 +0.109001 -0.552974 -0.182122 +-0.017416 -0.554162 -0.182088 +-0.017385 -0.554162 -0.062662 +0.052616 -0.643534 -0.049441 +0.109053 -0.552974 -0.062697 +0.036396 -0.483969 -0.050268 +-0.038778 -0.483889 -0.122005 +0.036351 -0.487068 -0.196881 +0.111524 -0.490247 -0.122046 +0.045038 -0.545025 -0.048603 +-0.038452 -0.553317 -0.122369 +0.045798 -0.550438 -0.202009 +0.130111 -0.55382 -0.122415 +0.123943 -0.768786 -0.11768 +0.05615 -0.766074 -0.181526 +-0.011615 -0.763362 -0.117643 +0.056182 -0.766074 -0.067998 +0.111342 -0.71032 -0.169283 +0.129762 -0.711057 -0.117275 +0.103195 -0.709993 -0.078104 +0.000928 -0.705903 -0.169253 +0.056151 -0.708111 -0.186606 +0.009153 -0.70623 -0.078079 +-0.017435 -0.705166 -0.117235 +0.056181 -0.708111 -0.063324 +0.122206 -0.694452 -0.1178 +0.105695 -0.693792 -0.164469 +0.098376 -0.693498 -0.082652 +0.006616 -0.689827 -0.164443 +0.056149 -0.691809 -0.180014 +0.013975 -0.690121 -0.082629 +-0.009878 -0.689167 -0.117764 +0.056183 -0.691809 -0.069389 +0.10917 -0.64564 -0.166691 +0.136644 -0.651426 -0.113361 +0.119045 -0.646562 -0.073197 +-0.004045 -0.641109 -0.166661 +0.052572 -0.649758 -0.198626 +-0.022886 -0.640354 -0.113318 +0.100371 -0.902605 -0.073883 +0.012394 -0.892714 -0.171122 +0.100334 -0.902605 -0.171146 +0.012431 -0.892714 -0.07386 +0.056396 -0.89766 -0.057661 +-0.002233 -0.891066 -0.122487 +0.056368 -0.89766 -0.187345 +0.11502 -0.904254 -0.122519 +0.086992 -0.995245 -0.060397 +-0.017227 -0.9643 -0.083206 +0.004577 -0.964299 -0.17271 +0.108818 -0.995245 -0.149901 +0.031907 -0.978468 -0.068968 +-0.022989 -0.959577 -0.131602 +0.058168 -0.978468 -0.176697 +0.114558 -0.999968 -0.101506 +0.071797 -0.442413 -0.07886 +0.028453 -0.44058 -0.064457 +-0.014883 -0.438746 -0.078837 +-0.029332 -0.438135 -0.122008 +-0.01492 -0.435647 -0.177582 +0.028424 -0.437481 -0.191985 +0.071782 -0.439314 -0.177605 +0.086249 -0.443025 -0.122039 +0.038648 -0.404156 -0.103964 +0.020515 -0.403389 -0.097938 +0.002386 -0.402622 -0.103954 +-0.003645 -0.402366 -0.122015 +0.002378 -0.399523 -0.152474 +0.020511 -0.40029 -0.1585 +0.038662 -0.401057 -0.152484 +0.044711 -0.404412 -0.122028 +0.040717 -0.514497 -0.049436 +-0.027929 -0.55374 -0.092516 +-0.027934 -0.55374 -0.152229 +0.041085 -0.518753 -0.199445 +0.030721 -0.765057 -0.173536 +0.000626 -0.763851 -0.099614 +-0.003162 -0.763701 -0.141594 +0.034536 -0.765207 -0.074791 +0.05615 -0.69996 -0.18331 +0.003772 -0.697865 -0.166848 +-0.013656 -0.697166 -0.1175 +0.011564 -0.698176 -0.080354 +0.056182 -0.69996 -0.066356 +0.05435 -0.670784 -0.18932 +0.001296 -0.665468 -0.165552 +0.054378 -0.667672 -0.059415 +-0.01349 -0.640842 -0.090018 +0.034403 -0.895187 -0.06576 +0.005077 -0.89189 -0.098173 +0.005069 -0.89189 -0.146805 +0.03437 -0.895187 -0.179234 +0.007329 -0.971384 -0.076087 +-0.020108 -0.961938 -0.107404 +-0.009195 -0.961938 -0.152156 +0.031372 -0.971384 -0.174704 +-0.017425 -0.460166 -0.073902 +0.006785 -0.439663 -0.071647 +-0.017461 -0.460166 -0.177867 +0.006752 -0.436564 -0.184784 +0.029593 -0.403772 -0.100951 +0.011462 -0.403005 -0.100946 +-0.016499 -0.420251 -0.122011 +-0.000629 -0.402494 -0.112984 +-0.000644 -0.400944 -0.137244 +0.011456 -0.399906 -0.155487 +0.029586 -0.400673 -0.155492 +0.041676 -0.402734 -0.137256 +0.04169 -0.404284 -0.112996 +-0.005331 -0.449914 -0.072775 +-0.005365 -0.448365 -0.181325 +-0.008554 -0.411372 -0.117498 +-0.008572 -0.410598 -0.129628 +numsurf 144 +SURF 0x10 +mat 1 +refs 4 +13 0.497498810291 0.092508725822 +18 0.487675845623 0.09698664397 +12 0.488259077072 0.0414954945445 +44 0.504824519157 0.0397899076343 +SURF 0x10 +mat 1 +refs 4 +12 0.160021752119 0.0444016754627 +18 0.159444600344 0.0993130207062 +11 0.169165045023 0.0942196249962 +2 0.17196290195 0.0456298589706 +SURF 0x10 +mat 1 +refs 4 +10 0.251634001732 0.0942196249962 +20 0.265378892422 0.0962954759598 +46 0.263041824102 0.0409319996834 +45 0.240978479385 0.0457531511784 +SURF 0x10 +mat 1 +refs 4 +46 0.592366755009 0.0379891917109 +20 0.594728529453 0.093937240541 +9 0.580838561058 0.092508725822 +42 0.570070505142 0.0403093025088 +SURF 0x10 +mat 1 +refs 4 +13 0.497498810291 0.092508725822 +21 0.539168715477 0.0920325741172 +17 0.538914561272 0.127843603492 +3 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 4 +9 0.580838561058 0.092508725822 +0 0.578092515469 0.128291428089 +17 0.538914561272 0.127843603492 +21 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 4 +9 0.580838561058 0.092508725822 +21 0.539168715477 0.0920325741172 +43 0.532849371433 0.0370499417186 +42 0.570070505142 0.0403093025088 +SURF 0x10 +mat 1 +refs 4 +43 0.532849371433 0.0370499417186 +21 0.539168715477 0.0920325741172 +13 0.497498810291 0.092508725822 +44 0.504824519157 0.0397899076343 +SURF 0x10 +mat 1 +refs 4 +8 0.979705572128 0.160481497645 +26 0.982064247131 0.187075808644 +27 0.992000997066 0.186736986041 +22 0.988856136799 0.160169497132 +SURF 0x10 +mat 1 +refs 4 +22 0.988856136799 0.38135266304 +27 0.992000937462 0.407920122147 +28 0.977645039558 0.408409684896 +7 0.975636065006 0.381803452969 +SURF 0x10 +mat 1 +refs 4 +23 0.952253818512 0.161417603493 +30 0.952253818512 0.188092395663 +26 0.982064247131 0.187075808644 +8 0.979705572128 0.160481497645 +SURF 0x10 +mat 1 +refs 4 +7 0.975636065006 0.381803452969 +28 0.977645039558 0.408409684896 +33 0.952253699303 0.409275591373 +25 0.952253699303 0.382600843906 +SURF 0x10 +mat 1 +refs 4 +26 0.982064247131 0.187075808644 +35 0.979003667831 0.194682493806 +34 0.987920284271 0.194378420711 +27 0.992000997066 0.186736986041 +SURF 0x10 +mat 1 +refs 4 +27 0.992000937462 0.407920122147 +34 0.987920284271 0.415561586618 +36 0.975038170815 0.416000843048 +28 0.977645039558 0.408409684896 +SURF 0x10 +mat 1 +refs 4 +35 0.568520605564 0.0131846610457 +42 0.570070505142 0.0403093025088 +43 0.532849371433 0.0370499417186 +34 0.535949885845 0.0128124896437 +SURF 0x10 +mat 1 +refs 4 +34 0.535949885845 0.0128124896437 +43 0.532849371433 0.0370499417186 +44 0.504824519157 0.0397899076343 +36 0.511426270008 0.0133501831442 +SURF 0x10 +mat 1 +refs 4 +8 0.979705572128 0.160481497645 +22 0.988856136799 0.160169497132 +55 0.984032869339 0.0978260487318 +50 0.976118206978 0.0985847264528 +SURF 0x10 +mat 1 +refs 4 +55 0.984032869339 0.31900921464 +22 0.988856136799 0.38135266304 +7 0.975636065006 0.381803452969 +48 0.976118087769 0.319767892361 +SURF 0x10 +mat 1 +refs 4 +54 0.952373862267 0.100860729814 +23 0.952253818512 0.161417603493 +8 0.979705572128 0.160481497645 +50 0.976118206978 0.0985847264528 +SURF 0x10 +mat 1 +refs 4 +7 0.975636065006 0.381803452969 +25 0.952253699303 0.382600843906 +52 0.952373862267 0.322043955326 +48 0.976118087769 0.319767892361 +SURF 0x10 +mat 1 +refs 4 +52 0.952373862267 0.322043955326 +60 0.939147412777 0.284855306149 +56 0.96889591217 0.277134358883 +48 0.976118087769 0.319767892361 +SURF 0x10 +mat 1 +refs 4 +59 0.98069870472 0.0559511892498 +62 0.953353583813 0.0636721253395 +54 0.952373862267 0.100860729814 +50 0.976118206978 0.0985847264528 +SURF 0x10 +mat 1 +refs 4 +56 0.96889591217 0.277134358883 +63 0.983788251877 0.274960786104 +55 0.984032869339 0.31900921464 +48 0.976118087769 0.319767892361 +SURF 0x10 +mat 1 +refs 4 +55 0.984032869339 0.0978260487318 +63 0.983788371086 0.0537776015699 +59 0.98069870472 0.0559511892498 +50 0.976118206978 0.0985847264528 +SURF 0x10 +mat 1 +refs 4 +3 0.486677229404 0.129634410143 +64 0.487675845623 0.09698664397 +65 0.497498810291 0.092508725822 +14 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 4 +70 0.591151893139 0.129634410143 +0 0.578092515469 0.128291428089 +16 0.580838561058 0.092508725822 +69 0.594728529453 0.093937240541 +SURF 0x10 +mat 1 +refs 4 +0 0.538914561272 0.127843603492 +70 0.539168715477 0.0920325741172 +71 0.580838561058 0.092508725822 +17 0.578092515469 0.128291428089 +SURF 0x10 +mat 1 +refs 4 +17 0.497498810291 0.092508725822 +71 0.539168715477 0.0920325741172 +64 0.538914561272 0.127843603492 +3 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +80 0.158950537443 0.115466326475 +1 0.171379372478 0.132948637009 +11 0.169165045023 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +14 0.158456459641 0.131619676948 +1 0.171379372478 0.132948637009 +80 0.158950537443 0.115466326475 +SURF 0x10 +mat 1 +refs 3 +80 0.158950537443 0.115466326475 +11 0.169165045023 0.0942196249962 +18 0.159444600344 0.0993130207062 +SURF 0x10 +mat 1 +refs 3 +80 0.487176537514 0.113310500979 +13 0.497498810291 0.092508725822 +3 0.499736607075 0.128291428089 +SURF 0x10 +mat 1 +refs 3 +18 0.487675845623 0.09698664397 +13 0.497498810291 0.092508725822 +80 0.487176537514 0.113310500979 +SURF 0x10 +mat 1 +refs 3 +80 0.487176537514 0.113310500979 +3 0.499736607075 0.128291428089 +14 0.486677229404 0.129634410143 +SURF 0x10 +mat 1 +refs 3 +82 0.231016740203 0.0944552347064 +15 0.210148066282 0.13339163363 +4 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +19 0.210399508476 0.0946908891201 +15 0.210148066282 0.13339163363 +82 0.231016740203 0.0944552347064 +SURF 0x10 +mat 1 +refs 3 +82 0.231016740203 0.0944552347064 +4 0.248916655779 0.132948637009 +10 0.251634001732 0.0942196249962 +SURF 0x10 +mat 1 +refs 3 +81 0.189782291651 0.0944552347064 +1 0.171379372478 0.132948637009 +15 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 3 +11 0.169165045023 0.0942196249962 +1 0.171379372478 0.132948637009 +81 0.189782291651 0.0944552347064 +SURF 0x10 +mat 1 +refs 3 +81 0.189782291651 0.0944552347064 +15 0.210148066282 0.13339163363 +19 0.210399508476 0.0946908891201 +SURF 0x10 +mat 1 +refs 4 +2 0.17196290195 0.0456298589706 +11 0.169165045023 0.0942196249962 +81 0.18978227675 0.0944552272558 +96 0.188054591417 0.0459019318223 +SURF 0x10 +mat 1 +refs 4 +96 0.188054591417 0.0459019318223 +81 0.18978227675 0.0944552272558 +19 0.210399508476 0.0946908891201 +47 0.204146265984 0.0461739599705 +SURF 0x10 +mat 1 +refs 3 +82 0.231016755104 0.0944552347064 +45 0.240978479385 0.0457531511784 +47 0.204146265984 0.0461739599705 +SURF 0x10 +mat 1 +refs 3 +10 0.251634001732 0.0942196249962 +45 0.240978479385 0.0457531511784 +82 0.231016755104 0.0944552347064 +SURF 0x10 +mat 1 +refs 3 +82 0.231016755104 0.0944552347064 +47 0.204146265984 0.0461739599705 +19 0.210399508476 0.0946908891201 +SURF 0x10 +mat 1 +refs 3 +83 0.592940211296 0.111785814166 +0 0.578092515469 0.128291428089 +9 0.580838561058 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +16 0.591151893139 0.129634410143 +0 0.578092515469 0.128291428089 +83 0.592940211296 0.111785814166 +SURF 0x10 +mat 1 +refs 3 +83 0.592940211296 0.111785814166 +9 0.580838561058 0.092508725822 +20 0.594728529453 0.093937240541 +SURF 0x10 +mat 1 +refs 3 +83 0.263609230518 0.113957576454 +10 0.251634001732 0.0942196249962 +4 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +20 0.265378892422 0.0962954759598 +10 0.251634001732 0.0942196249962 +83 0.263609230518 0.113957576454 +SURF 0x10 +mat 1 +refs 3 +83 0.263609230518 0.113957576454 +4 0.248916655779 0.132948637009 +16 0.261839598417 0.131619676948 +SURF 0x10 +mat 1 +refs 3 +84 0.938527941704 0.16188570857 +29 0.922443330288 0.189108937979 +30 0.952253818512 0.188092395663 +SURF 0x10 +mat 1 +refs 3 +6 0.924802005291 0.162353783846 +29 0.922443330288 0.189108937979 +84 0.938527941704 0.16188570857 +SURF 0x10 +mat 1 +refs 3 +84 0.938527941704 0.16188570857 +30 0.952253818512 0.188092395663 +23 0.952253818512 0.161417603493 +SURF 0x10 +mat 1 +refs 3 +85 0.922261416912 0.383623600006 +31 0.926862478256 0.410141408443 +32 0.912506580353 0.410630941391 +SURF 0x10 +mat 1 +refs 3 +5 0.928871452808 0.383398205042 +31 0.926862478256 0.410141408443 +85 0.922261416912 0.383623600006 +SURF 0x10 +mat 1 +refs 3 +85 0.922261416912 0.383623600006 +32 0.912506580353 0.410630941391 +24 0.915651381016 0.383849024773 +SURF 0x10 +mat 1 +refs 3 +86 0.920226693153 0.162509813905 +32 0.912506580353 0.189447790384 +29 0.922443330288 0.189108937979 +SURF 0x10 +mat 1 +refs 3 +24 0.915651381016 0.162665843964 +32 0.912506580353 0.189447790384 +86 0.920226693153 0.162509813905 +SURF 0x10 +mat 1 +refs 3 +86 0.920226693153 0.162509813905 +29 0.922443330288 0.189108937979 +6 0.924802005291 0.162353783846 +SURF 0x10 +mat 1 +refs 3 +87 0.940562605858 0.382999539375 +33 0.952253699303 0.409275591373 +31 0.926862478256 0.410141408443 +SURF 0x10 +mat 1 +refs 3 +25 0.952253699303 0.382600843906 +33 0.952253699303 0.409275591373 +87 0.940562605858 0.382999539375 +SURF 0x10 +mat 1 +refs 3 +87 0.940562605858 0.382999539375 +31 0.926862478256 0.410141408443 +5 0.928871452808 0.383398205042 +SURF 0x10 +mat 1 +refs 4 +30 0.952253818512 0.188092395663 +29 0.922443330288 0.189108937979 +89 0.923973560333 0.192807912827 +88 0.952253818512 0.191843539476 +SURF 0x10 +mat 1 +refs 4 +88 0.952253818512 0.191843539476 +89 0.923973560333 0.192807912827 +37 0.925503849983 0.196506842971 +38 0.952253818512 0.195594623685 +SURF 0x10 +mat 1 +refs 3 +88 0.952253818512 0.191843524575 +35 0.979003667831 0.194682493806 +26 0.982064247131 0.187075808644 +SURF 0x10 +mat 1 +refs 3 +38 0.952253818512 0.195594623685 +35 0.979003667831 0.194682493806 +88 0.952253818512 0.191843524575 +SURF 0x10 +mat 1 +refs 3 +88 0.952253818512 0.191843524575 +26 0.982064247131 0.187075808644 +30 0.952253818512 0.188092395663 +SURF 0x10 +mat 1 +refs 4 +32 0.912506580353 0.410630941391 +31 0.926862478256 0.410141408443 +91 0.928165853024 0.413848102093 +90 0.914546966553 0.414312511683 +SURF 0x10 +mat 1 +refs 4 +90 0.914546966553 0.414312511683 +91 0.928165853024 0.413848102093 +39 0.929469227791 0.417554795742 +40 0.916587233543 0.417994052172 +SURF 0x10 +mat 1 +refs 4 +29 0.922443330288 0.189108937979 +32 0.912506580353 0.189447790384 +90 0.914546906948 0.193129330873 +89 0.923973560333 0.192807897925 +SURF 0x10 +mat 1 +refs 4 +89 0.923973560333 0.192807897925 +90 0.914546906948 0.193129330873 +40 0.916587233543 0.196810886264 +37 0.925503849983 0.196506842971 +SURF 0x10 +mat 1 +refs 3 +92 0.952253699303 0.413026690483 +28 0.977645039558 0.408409684896 +36 0.975038170815 0.416000843048 +SURF 0x10 +mat 1 +refs 3 +33 0.952253699303 0.409275591373 +28 0.977645039558 0.408409684896 +92 0.952253699303 0.413026690483 +SURF 0x10 +mat 1 +refs 3 +92 0.952253699303 0.413026690483 +36 0.975038170815 0.416000843048 +41 0.952253699303 0.416777849197 +SURF 0x10 +mat 1 +refs 4 +31 0.926862478256 0.410141408443 +33 0.952253699303 0.409275591373 +92 0.952253699303 0.413026690483 +91 0.928165853024 0.413848102093 +SURF 0x10 +mat 1 +refs 4 +91 0.928165853024 0.413848102093 +92 0.952253699303 0.413026690483 +41 0.952253699303 0.416777849197 +39 0.929469227791 0.417554795742 +SURF 0x10 +mat 1 +refs 4 +38 0.250188320875 0.0174915492535 +37 0.239444792271 0.0185964405537 +94 0.240211635828 0.032174821943 +93 0.256615042686 0.0292117521167 +SURF 0x10 +mat 1 +refs 4 +93 0.256615042686 0.0292117521167 +94 0.240211635828 0.032174821943 +45 0.240978479385 0.0457531511784 +46 0.263041824102 0.0409319996834 +SURF 0x10 +mat 1 +refs 3 +93 0.585872173309 0.0261452011764 +42 0.570070505142 0.0403093025088 +35 0.568520605564 0.0131846610457 +SURF 0x10 +mat 1 +refs 3 +46 0.592366755009 0.0379891917109 +42 0.570070505142 0.0403093025088 +93 0.585872173309 0.0261452011764 +SURF 0x10 +mat 1 +refs 3 +93 0.585872173309 0.0261452011764 +35 0.568520605564 0.0131846610457 +38 0.57937759161 0.0143012646586 +SURF 0x10 +mat 1 +refs 3 +96 0.188054576516 0.0459019318223 +40 0.20721437037 0.0189647078514 +39 0.182946905494 0.0184326171875 +SURF 0x10 +mat 1 +refs 3 +47 0.204146265984 0.0461739599705 +40 0.20721437037 0.0189647078514 +96 0.188054576516 0.0459019318223 +SURF 0x10 +mat 1 +refs 3 +96 0.188054576516 0.0459019318223 +39 0.182946905494 0.0184326171875 +2 0.17196290195 0.0456298589706 +SURF 0x10 +mat 1 +refs 3 +94 0.240211620927 0.0321748182178 +40 0.20721437037 0.0189647078514 +47 0.204146265984 0.0461739599705 +SURF 0x10 +mat 1 +refs 3 +37 0.239444792271 0.0185964405537 +40 0.20721437037 0.0189647078514 +94 0.240211620927 0.0321748182178 +SURF 0x10 +mat 1 +refs 3 +94 0.240211620927 0.0321748182178 +47 0.204146265984 0.0461739599705 +45 0.240978479385 0.0457531511784 +SURF 0x10 +mat 1 +refs 3 +95 0.495218962431 0.0278983786702 +36 0.511426270008 0.0133501831442 +44 0.504824519157 0.0397899076343 +SURF 0x10 +mat 1 +refs 3 +41 0.50217884779 0.0143012646586 +36 0.511426270008 0.0133501831442 +95 0.495218962431 0.0278983786702 +SURF 0x10 +mat 1 +refs 3 +95 0.495218962431 0.0278983786702 +44 0.504824519157 0.0397899076343 +12 0.488259077072 0.0414954945445 +SURF 0x10 +mat 1 +refs 3 +95 0.166908919811 0.0309466160834 +2 0.17196290195 0.0456298589706 +39 0.182946905494 0.0184326171875 +SURF 0x10 +mat 1 +refs 3 +12 0.160021752119 0.0444016754627 +2 0.17196290195 0.0456298589706 +95 0.166908919811 0.0309466160834 +SURF 0x10 +mat 1 +refs 3 +95 0.166908919811 0.0309466160834 +39 0.182946905494 0.0184326171875 +41 0.173796087503 0.0174915492535 +SURF 0x10 +mat 1 +refs 4 +49 0.928629636765 0.103136658669 +6 0.924802005291 0.162353783846 +84 0.938527941704 0.16188570857 +100 0.940501749516 0.101998694241 +SURF 0x10 +mat 1 +refs 4 +100 0.940501749516 0.101998694241 +84 0.938527941704 0.16188570857 +23 0.952253818512 0.161417603493 +54 0.952373862267 0.100860729814 +SURF 0x10 +mat 1 +refs 4 +51 0.92862957716 0.324319839478 +5 0.928871452808 0.383398205042 +85 0.922261416912 0.383623600006 +98 0.924672245979 0.324699223042 +SURF 0x10 +mat 1 +refs 4 +98 0.924672245979 0.324699223042 +85 0.922261416912 0.383623600006 +24 0.915651381016 0.383849024773 +53 0.920714855194 0.325078606606 +SURF 0x10 +mat 1 +refs 4 +53 0.920714855194 0.103895410895 +24 0.915651381016 0.162665843964 +86 0.920226693153 0.162509828806 +99 0.924672245979 0.103516034782 +SURF 0x10 +mat 1 +refs 4 +99 0.924672245979 0.103516034782 +86 0.920226693153 0.162509828806 +6 0.924802005291 0.162353783846 +49 0.928629636765 0.103136658669 +SURF 0x10 +mat 1 +refs 4 +52 0.952373862267 0.322043955326 +25 0.952253699303 0.382600843906 +87 0.940562605858 0.382999539375 +97 0.940501749516 0.323181867599 +SURF 0x10 +mat 1 +refs 4 +97 0.940501749516 0.323181867599 +87 0.940562605858 0.382999539375 +5 0.928871452808 0.383398205042 +51 0.92862957716 0.324319839478 +SURF 0x10 +mat 1 +refs 4 +51 0.92862957716 0.324319839478 +57 0.912610471249 0.291375726461 +101 0.925878942013 0.288115501404 +97 0.940501689911 0.323181867599 +SURF 0x10 +mat 1 +refs 4 +97 0.940501689911 0.323181867599 +101 0.925878942013 0.288115501404 +60 0.939147412777 0.284855306149 +52 0.952373862267 0.322043955326 +SURF 0x10 +mat 1 +refs 4 +49 0.928629636765 0.103136658669 +58 0.924413323402 0.070192605257 +103 0.916967093945 0.0712793767452 +99 0.924672245979 0.103516034782 +SURF 0x10 +mat 1 +refs 4 +99 0.924672245979 0.103516034782 +103 0.916967093945 0.0712793767452 +61 0.909520804882 0.0723661482334 +53 0.920714855194 0.103895410895 +SURF 0x10 +mat 1 +refs 4 +53 0.920714855194 0.325078606606 +61 0.909520804882 0.293549329042 +102 0.911065638065 0.292462527752 +98 0.924672245979 0.324699223042 +SURF 0x10 +mat 1 +refs 4 +98 0.924672245979 0.324699223042 +102 0.911065638065 0.292462527752 +57 0.912610471249 0.291375726461 +51 0.92862957716 0.324319839478 +SURF 0x10 +mat 1 +refs 4 +54 0.952373862267 0.100860729814 +62 0.953353583813 0.0636721253395 +104 0.93888348341 0.0669323652983 +100 0.940501749516 0.10199868679 +SURF 0x10 +mat 1 +refs 4 +100 0.940501749516 0.10199868679 +104 0.93888348341 0.0669323652983 +58 0.924413323402 0.070192605257 +49 0.928629636765 0.103136658669 +SURF 0x10 +mat 1 +refs 4 +66 0.158456459641 0.131619676948 +105 0.164917930961 0.132284164429 +118 0.161261484027 0.124506019056 +106 0.158950537443 0.115466341376 +SURF 0x10 +mat 1 +refs 4 +1 0.171379372478 0.132948637009 +14 0.169165045023 0.0942196249962 +118 0.161261484027 0.124506019056 +105 0.164917930961 0.132284164429 +SURF 0x10 +mat 1 +refs 4 +14 0.169165045023 0.0942196249962 +65 0.159444600344 0.0993130207062 +106 0.158950537443 0.115466341376 +118 0.161261484027 0.124506019056 +SURF 0x10 +mat 1 +refs 3 +105 0.210273772478 0.114041298628 +67 0.169165045023 0.0942196249962 +15 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +66 0.210399508476 0.0946908891201 +67 0.169165045023 0.0942196249962 +105 0.210273772478 0.114041298628 +SURF 0x10 +mat 1 +refs 3 +105 0.210273772478 0.114041298628 +15 0.171379372478 0.132948637009 +1 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 3 +107 0.229532390833 0.133170127869 +15 0.251634001732 0.0942196249962 +67 0.210399508476 0.0946908891201 +SURF 0x10 +mat 1 +refs 3 +4 0.248916655779 0.132948637009 +15 0.251634001732 0.0942196249962 +107 0.229532390833 0.133170127869 +SURF 0x10 +mat 1 +refs 3 +107 0.229532390833 0.133170127869 +67 0.210399508476 0.0946908891201 +68 0.210148066282 0.13339163363 +SURF 0x10 +mat 1 +refs 4 +68 0.265378892422 0.0962954759598 +108 0.258506447077 0.0952575206757 +119 0.261057853699 0.104607567191 +107 0.263609230518 0.113957613707 +SURF 0x10 +mat 1 +refs 4 +69 0.251634001732 0.0942196249962 +16 0.248916655779 0.132948637009 +119 0.261057853699 0.104607567191 +108 0.258506447077 0.0952575206757 +SURF 0x10 +mat 1 +refs 4 +16 0.248916655779 0.132948637009 +4 0.261839598417 0.131619676948 +107 0.263609230518 0.113957613707 +119 0.261057853699 0.104607567191 +SURF 0x10 +mat 1 +refs 3 +109 0.492587357759 0.0947477146983 +65 0.499736607075 0.128291428089 +64 0.486677229404 0.129634410143 +SURF 0x10 +mat 1 +refs 3 +73 0.497498810291 0.092508725822 +65 0.499736607075 0.128291428089 +109 0.492587357759 0.0947477146983 +SURF 0x10 +mat 1 +refs 3 +109 0.492587357759 0.0947477146983 +64 0.486677229404 0.129634410143 +72 0.487675845623 0.09698664397 +SURF 0x10 +mat 1 +refs 4 +65 0.169165045023 0.0942196249962 +73 0.159444600344 0.0993130207062 +110 0.158950522542 0.115466333926 +106 0.170272231102 0.113584116101 +SURF 0x10 +mat 1 +refs 4 +106 0.170272231102 0.113584116101 +110 0.158950522542 0.115466333926 +74 0.158456459641 0.131619676948 +66 0.171379372478 0.132948637009 +SURF 0x10 +mat 1 +refs 4 +75 0.169165045023 0.0942196249962 +111 0.1702722013 0.113584175706 +120 0.173773348331 0.103948272765 +112 0.189782202244 0.0944553017616 +SURF 0x10 +mat 1 +refs 4 +67 0.171379372478 0.132948637009 +66 0.210148066282 0.13339163363 +120 0.173773348331 0.103948272765 +111 0.1702722013 0.113584175706 +SURF 0x10 +mat 1 +refs 4 +66 0.210148066282 0.13339163363 +74 0.210399508476 0.0946908891201 +112 0.189782202244 0.0944553017616 +120 0.173773348331 0.103948272765 +SURF 0x10 +mat 1 +refs 4 +75 0.210399508476 0.0946908891201 +113 0.210273787379 0.114041261375 +121 0.220645338297 0.104248255491 +111 0.231016799808 0.0944552570581 +SURF 0x10 +mat 1 +refs 4 +76 0.210148066282 0.13339163363 +68 0.248916655779 0.132948637009 +121 0.220645338297 0.104248255491 +113 0.210273787379 0.114041261375 +SURF 0x10 +mat 1 +refs 4 +68 0.248916655779 0.132948637009 +67 0.251634001732 0.0942196249962 +111 0.231016799808 0.0944552570581 +121 0.220645338297 0.104248255491 +SURF 0x10 +mat 1 +refs 4 +68 0.261839598417 0.131619676948 +76 0.265378892422 0.0962954759598 +114 0.258506417274 0.0952575877309 +108 0.255378127098 0.132284104824 +SURF 0x10 +mat 1 +refs 4 +108 0.255378127098 0.132284104824 +114 0.258506417274 0.0952575877309 +77 0.251634001732 0.0942196249962 +69 0.248916655779 0.132948637009 +SURF 0x10 +mat 1 +refs 3 +115 0.592940211296 0.111785843968 +70 0.578092515469 0.128291428089 +69 0.580838561058 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +78 0.591151893139 0.129634410143 +70 0.578092515469 0.128291428089 +115 0.592940211296 0.111785843968 +SURF 0x10 +mat 1 +refs 3 +115 0.592940211296 0.111785843968 +69 0.580838561058 0.092508725822 +77 0.594728529453 0.093937240541 +SURF 0x10 +mat 1 +refs 3 +116 0.560003638268 0.0922706499696 +71 0.578092515469 0.128291428089 +70 0.538914561272 0.127843603492 +SURF 0x10 +mat 1 +refs 3 +79 0.580838561058 0.092508725822 +71 0.578092515469 0.128291428089 +116 0.560003638268 0.0922706499696 +SURF 0x10 +mat 1 +refs 3 +116 0.560003638268 0.0922706499696 +70 0.538914561272 0.127843603492 +78 0.539168715477 0.0920325741172 +SURF 0x10 +mat 1 +refs 3 +117 0.539041638374 0.10993809998 +64 0.499736607075 0.128291428089 +71 0.497498810291 0.092508725822 +SURF 0x10 +mat 1 +refs 3 +72 0.538914561272 0.127843603492 +64 0.499736607075 0.128291428089 +117 0.539041638374 0.10993809998 +SURF 0x10 +mat 1 +refs 3 +117 0.539041638374 0.10993809998 +71 0.497498810291 0.092508725822 +79 0.539168715477 0.0920325741172 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/pilot.xml b/resources/flightgear/Aircraft/jeep/Models/pilot.xml new file mode 100755 index 0000000000000000000000000000000000000000..4f5429fead40f0a2c9bf5e9150f9766ad731595e --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/pilot.xml @@ -0,0 +1,272 @@ + + + pilot-b.ac + + + + + + rotate + arm1.R + arm2.R + hand.R + sim/model/crew/pilot/visible + 90 +
+ -0.015 + 0.23 + 0.45 +
+ + -1.0 + 0.03 + 0.25 + +
+ + + rotate + arm2.R + hand.R + sim/model/crew/pilot/visible + 75 +
+ 0.007 + 0.533 + 0.455 +
+ + 0.0 + 0.0 + 1.0 + +
+ + + rotate + arm1.L + arm2.L + hand.L + sim/model/crew/pilot/visible + 90 +
+ -0.015 + -0.23 + 0.45 +
+ + 1.0 + -0.13 + -0.15 + +
+ + rotate + arm2.L + hand.L + sim/model/crew/pilot/visible + 85 +
+ 0.007 + -0.533 + 0.455 +
+ + 0.0 + 0.0 + -1.0 + +
+ + + rotate + leg1.R + leg2.R + foot.R + sim/model/crew/pilot/visible + 80 +
+ 0.012 + 0.199 + -0.016 +
+ + 0.0 + 0.6 + 0.0 + +
+ + + rotate + leg2.R + foot.R + sim/model/crew/pilot/visible + 40 +
+ -0.064 + 0.109 + -0.35 +
+ + 0.0 + -0.1 + 0.0 + +
+ + + rotate + leg1.L + leg2.L + foot.L + sim/model/crew/pilot/visible + 80 +
+ 0.012 + -0.199 + -0.016 +
+ + 0.0 + 0.6 + 0.0 + +
+ + + rotate + leg2.L + foot.L + sim/model/crew/pilot/visible + 40 +
+ -0.064 + -0.109 + -0.35 +
+ + 0.0 + -0.1 + 0.0 + +
+ + + + rotate + head + sim/model/crew/pilot/visible + 10 +
+ 0.055 + 0.0 + 0.563 +
+ + 0.0 + -1.0 + 0.0 + +
+ + + + + + + +
diff --git a/resources/flightgear/Aircraft/jeep/Models/pilot1.rgb b/resources/flightgear/Aircraft/jeep/Models/pilot1.rgb new file mode 100755 index 0000000000000000000000000000000000000000..cc0ba6cd2e3b50cfbbbdfb34e6a7b68ea0e3bfec Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/pilot1.rgb differ diff --git a/resources/flightgear/Aircraft/jeep/Models/roof.ac b/resources/flightgear/Aircraft/jeep/Models/roof.ac new file mode 100755 index 0000000000000000000000000000000000000000..a27272dc196f58d858708ff4d404c3f826cb6ea8 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/roof.ac @@ -0,0 +1,2850 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "glass" rgb 0.1 0.1 0.1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0.601077 +MATERIAL "black" rgb 1.0 1.0 1.0 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "seat" rgb 0.5 0.5 0.5 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +OBJECT world +kids 4 +OBJECT poly +name "noshadow.roofwdw" +data 8 +Mesh.002 +crease 30.000000 +numvert 12 +3.283452 1.420011 0.267455 +3.298111 1.73778 -0.306071 +3.299451 1.76674 -0.267453 +3.283452 1.420011 -0.267453 +3.29945 1.76674 0.267455 +3.298111 1.73778 0.306072 +3.290565 1.574021 0.306072 +3.284789 1.448971 0.306072 +3.284789 1.448971 -0.306071 +3.290577 1.574273 -0.306071 +3.299467 1.76674 -0.140183 +3.299467 1.766741 0.140483 +numsurf 9 +SURF 0x30 +mat 1 +refs 3 +6 0 0 +0 0 0 +11 0 0 +SURF 0x30 +mat 1 +refs 3 +11 0 0 +4 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 3 +10 0 0 +9 0 0 +2 0 0 +SURF 0x30 +mat 1 +refs 3 +10 0 0 +3 0 0 +9 0 0 +SURF 0x30 +mat 1 +refs 4 +11 0 0 +0 0 0 +3 0 0 +10 0 0 +SURF 0x30 +mat 1 +refs 3 +7 0 0 +0 0 0 +6 0 0 +SURF 0x30 +mat 1 +refs 3 +6 0 0 +4 0 0 +5 0 0 +SURF 0x30 +mat 1 +refs 3 +9 0 0 +3 0 0 +8 0 0 +SURF 0x30 +mat 1 +refs 3 +9 0 0 +1 0 0 +2 0 0 +kids 0 +OBJECT poly +name "roof" +data 8 +Mesh.001 +texture "softroof.png" +texrep 1 1 +crease 30.000000 +numvert 122 +3.269268 1.112928 -0.688735 +3.244511 1.869895 -0.76745 +3.273244 1.90236 -0.763716 +3.296807 1.925095 -0.729778 +3.293978 1.936957 -0.74017 +3.307514 1.942962 -0.689362 +3.269268 1.112928 0.688573 +3.307515 1.942962 0.689116 +3.296807 1.925095 0.729533 +3.273244 1.90236 0.763471 +3.293978 1.936957 0.739925 +2.336132 1.96713 0.685816 +3.280915 1.94613 0.741299 +3.293703 1.967468 0.695608 +2.336132 1.96713 -0.686062 +3.293703 1.967468 -0.695853 +3.280915 1.94613 -0.741544 +1.570386 1.700385 0.665806 +2.355806 1.914238 0.745775 +2.336096 1.943114 0.725403 +1.570386 1.700384 0.02227 +1.570386 1.700385 0.620687 +2.324144 1.960624 0.686462 +2.323359 1.961774 -0.000122 +1.570386 1.700384 -0.02227 +2.324144 1.960624 -0.686708 +1.570386 1.700384 -0.620687 +1.570386 1.700384 -0.665805 +2.336096 1.943114 -0.725648 +2.355806 1.914238 -0.74602 +2.391874 1.875588 0.751035 +2.367236 1.92156 0.744298 +3.244506 1.869899 0.768998 +2.367236 1.92156 -0.744543 +2.391874 1.875589 -0.749793 +3.299467 1.766741 0.140483 +3.307614 1.943128 -0.000123 +3.299467 1.76674 -0.140183 +3.290577 1.574273 -0.306071 +3.284789 1.448971 -0.306071 +3.284789 1.448971 0.306072 +3.290565 1.574021 0.306072 +3.298111 1.73778 0.306072 +3.29945 1.76674 0.267455 +3.283452 1.420011 -0.267453 +2.347857 1.949952 -0.724477 +2.335428 1.96816 -0.000122 +2.347857 1.949952 0.724231 +3.306523 1.957889 0.69485 +3.307276 1.959146 -0.000123 +3.294542 1.968868 -0.000123 +3.259827 1.910942 0.765203 +3.259827 1.910942 -0.765449 +3.306523 1.957889 -0.695095 +3.299451 1.76674 -0.267453 +3.298111 1.73778 -0.306071 +3.283452 1.420011 0.267455 +2.459133 1.781148 0.751949 +3.153124 1.706261 0.769898 +3.153129 1.706257 -0.768361 +2.459133 1.781148 -0.750695 +2.459133 1.781148 -0.750695 +3.153129 1.706257 -0.768361 +3.153124 1.706261 0.769898 +2.459133 1.781148 0.751949 +3.283452 1.420011 0.267455 +3.298111 1.73778 -0.306071 +3.299451 1.76674 -0.267453 +3.306523 1.957889 -0.695095 +3.259827 1.910942 -0.765449 +3.259827 1.910942 0.765203 +3.294542 1.968868 -0.000123 +3.307276 1.959146 -0.000123 +3.306523 1.957889 0.69485 +2.347857 1.949952 0.724231 +2.335428 1.96816 -0.000122 +2.347857 1.949952 -0.724477 +3.283452 1.420011 -0.267453 +3.29945 1.76674 0.267455 +3.298111 1.73778 0.306072 +3.290565 1.574021 0.306072 +3.284789 1.448971 0.306072 +3.284789 1.448971 -0.306071 +3.290577 1.574273 -0.306071 +3.299467 1.76674 -0.140183 +3.307614 1.943128 -0.000123 +3.299467 1.766741 0.140483 +2.391874 1.875589 -0.749793 +2.367236 1.92156 -0.744543 +3.244506 1.869899 0.768998 +2.367236 1.92156 0.744298 +2.391874 1.875588 0.751035 +2.355806 1.914238 -0.74602 +2.336096 1.943114 -0.725648 +1.570386 1.700384 -0.665805 +1.570386 1.700384 -0.620687 +2.324144 1.960624 -0.686708 +1.570386 1.700384 -0.02227 +2.323359 1.961774 -0.000122 +2.324144 1.960624 0.686462 +1.570386 1.700385 0.620687 +1.570386 1.700384 0.02227 +2.336096 1.943114 0.725403 +2.355806 1.914238 0.745775 +1.570386 1.700385 0.665806 +3.280915 1.94613 -0.741544 +3.293703 1.967468 -0.695853 +2.336132 1.96713 -0.686062 +3.293703 1.967468 0.695608 +3.280915 1.94613 0.741299 +2.336132 1.96713 0.685816 +3.293978 1.936957 0.739925 +3.273244 1.90236 0.763471 +3.296807 1.925095 0.729533 +3.307515 1.942962 0.689116 +3.269268 1.112928 0.688573 +3.307514 1.942962 -0.689362 +3.293978 1.936957 -0.74017 +3.296807 1.925095 -0.729778 +3.273244 1.90236 -0.763716 +3.244511 1.869895 -0.76745 +3.269268 1.112928 -0.688735 +numsurf 134 +SURF 0x10 +mat 2 +refs 3 +0 0.477181553841 0.528897881508 +1 0.711368024349 0.514719545841 +2 0.721797585487 0.523264288902 +SURF 0x10 +mat 2 +refs 3 +0 0.736021399498 0.552096188068 +2 0.981950342655 0.529225826263 +3 0.989353120327 0.539594471455 +SURF 0x10 +mat 2 +refs 3 +2 0.981950342655 0.529225826263 +4 0.993009567261 0.536406993866 +3 0.989353120327 0.539594471455 +SURF 0x10 +mat 2 +refs 3 +0 0.736021399498 0.552096188068 +3 0.989353120327 0.539594471455 +5 0.995060324669 0.552013516426 +SURF 0x10 +mat 2 +refs 3 +6 0.735826671124 0.976668298244 +7 0.994865477085 0.976946592331 +8 0.989146828651 0.989445269108 +SURF 0x10 +mat 2 +refs 3 +6 0.735826671124 0.976668298244 +8 0.989146828651 0.989445269108 +9 0.981734633446 0.999999940395 +SURF 0x10 +mat 2 +refs 3 +6 0.735826671124 0.000355219613994 +9 0.980197906494 0.00599828874692 +32 0.969735860825 0.0145424492657 +SURF 0x10 +mat 2 +refs 3 +8 0.989146828651 0.989445269108 +10 0.992800474167 0.992664635181 +9 0.981734633446 0.999999940395 +SURF 0x10 +mat 2 +refs 3 +11 0.0256139859557 0.296572417021 +12 0.00742717133835 0.00971200689673 +13 0.0216562524438 0.00477391947061 +SURF 0x10 +mat 2 +refs 3 +14 0.453297615051 0.295274913311 +15 0.455444902182 0.00345785543323 +16 0.469704329967 0.0083096139133 +SURF 0x10 +mat 2 +refs 3 +17 0.903212547302 0.529225826263 +18 0.975673139095 0.288866102695 +19 0.984824717045 0.295268058777 +SURF 0x10 +mat 2 +refs 3 +20 0.233237370849 0.541761934757 +21 0.0466807670891 0.542327880859 +22 0.0254248417914 0.300530344248 +SURF 0x10 +mat 2 +refs 3 +20 0.233237370849 0.541761934757 +22 0.0254248417914 0.300530344248 +23 0.239468470216 0.300066202879 +SURF 0x10 +mat 2 +refs 3 +24 0.247123017907 0.541719794273 +20 0.233237370849 0.541761934757 +23 0.239468470216 0.300066202879 +SURF 0x10 +mat 2 +refs 3 +24 0.247123017907 0.541719794273 +23 0.239468470216 0.300066202879 +25 0.453511297703 0.299231618643 +SURF 0x10 +mat 2 +refs 3 +24 0.247123017907 0.541719794273 +25 0.453511297703 0.299231618643 +26 0.433679640293 0.541153788567 +SURF 0x10 +mat 2 +refs 3 +27 0.644488334656 0.0 +28 0.726294398308 0.233977451921 +29 0.717184245586 0.240393057466 +SURF 0x10 +mat 2 +refs 3 +17 0.903212547302 0.529225826263 +30 0.963892161846 0.277385860682 +18 0.975673139095 0.288866102695 +SURF 0x10 +mat 2 +refs 3 +31 0.978082895279 0.285414963961 +30 0.963892161846 0.277385860682 +32 0.969735860825 0.0145424492657 +SURF 0x10 +mat 2 +refs 3 +33 0.719592154026 0.243842869997 +1 0.711368024349 0.514719545841 +34 0.705434918404 0.251872211695 +SURF 0x10 +mat 2 +refs 3 +27 0.644488334656 0.0 +29 0.717184245586 0.240393057466 +34 0.705434918404 0.251872211695 +SURF 0x10 +mat 2 +refs 3 +35 0.939948558807 0.807799696922 +37 0.939988255501 0.721281051636 +36 0.995015978813 0.764479637146 +SURF 0x10 +mat 2 +refs 3 +0 0.736021399498 0.552096188068 +38 0.879945516586 0.670118391514 +39 0.840840876102 0.670101761818 +SURF 0x10 +mat 2 +refs 3 +6 0.735826671124 0.976668298244 +40 0.840754508972 0.858802258968 +41 0.879780292511 0.858818888664 +SURF 0x10 +mat 2 +refs 3 +42 0.930886864662 0.858840763569 +43 0.939930260181 0.846940279007 +7 0.994865477085 0.976946592331 +SURF 0x10 +mat 2 +refs 3 +44 0.831797242165 0.682002127171 +0 0.736021399498 0.552096188068 +39 0.840840876102 0.670101761818 +SURF 0x10 +mat 2 +refs 4 +29 0.717184245586 0.240393057466 +28 0.726294398308 0.233977451921 +45 0.728550076485 0.237534821033 +33 0.719592154026 0.243842869997 +SURF 0x10 +mat 2 +refs 4 +14 0.453297615051 0.295274913311 +45 0.465264946222 0.292469322681 +28 0.465642184019 0.296371906996 +25 0.453511297703 0.299231618643 +SURF 0x10 +mat 2 +refs 4 +46 0.239456132054 0.296089947224 +14 0.453297615051 0.295274913311 +25 0.453511297703 0.299231618643 +23 0.239468470216 0.300066202879 +SURF 0x10 +mat 2 +refs 4 +46 0.239456132054 0.296089947224 +23 0.239468470216 0.300066202879 +22 0.0254248417914 0.300530344248 +11 0.0256139859557 0.296572417021 +SURF 0x10 +mat 2 +refs 4 +11 0.0256139859557 0.296572417021 +22 0.0254248417914 0.300530344248 +19 0.0132764820009 0.297744274139 +47 0.0136295007542 0.293839484453 +SURF 0x10 +mat 2 +refs 4 +47 0.98708152771 0.291709542274 +19 0.984824717045 0.295268058777 +18 0.975673139095 0.288866102695 +31 0.978082895279 0.285414963961 +SURF 0x10 +mat 2 +refs 4 +48 0.99949991703 0.978723168373 +7 0.994865477085 0.976946592331 +36 0.995015978813 0.764479637146 +49 1.0 0.764486432076 +SURF 0x10 +mat 2 +refs 4 +49 0.238538920879 0.000369129964383 +50 0.238549560308 0.00379471783526 +13 0.0216562524438 0.00477391947061 +48 0.0218818187714 0.00131466716994 +SURF 0x10 +mat 2 +refs 4 +7 0.994865477085 0.976946592331 +48 0.99949991703 0.978723168373 +10 0.992800474167 0.992664635181 +8 0.989146828651 0.989445269108 +SURF 0x10 +mat 2 +refs 4 +48 0.0218818187714 0.00131466716994 +13 0.0216562524438 0.00477391947061 +12 0.00742717133835 0.00971200689673 +10 0.00784455705434 0.0061592226848 +SURF 0x10 +mat 2 +refs 4 +10 0.9915599823 0.0 +12 0.994269132614 0.00410346547142 +51 0.982713639736 0.0102044371888 +9 0.980197906494 0.00599828874692 +SURF 0x10 +mat 2 +refs 3 +9 0.980197906494 0.00599828874692 +51 0.982713639736 0.0102044371888 +32 0.969735860825 0.0145424492657 +SURF 0x10 +mat 2 +refs 3 +2 0.721797585487 0.523264288902 +1 0.711368024349 0.514719545841 +52 0.724317252636 0.519058942795 +SURF 0x10 +mat 2 +refs 4 +4 0.733114480972 0.529246389866 +2 0.721797585487 0.523264288902 +52 0.724317252636 0.519058942795 +16 0.735826671124 0.525143444538 +SURF 0x10 +mat 2 +refs 4 +53 0.455197811127 0.0 +4 0.469264894724 0.00475932890549 +16 0.469704329967 0.0083096139133 +15 0.455444902182 0.00345785543323 +SURF 0x10 +mat 2 +refs 4 +5 0.995060324669 0.552013516426 +3 0.989353120327 0.539594471455 +4 0.993009567261 0.536406993866 +53 0.99969637394 0.550255298615 +SURF 0x10 +mat 2 +refs 4 +49 0.238538920879 0.000369129964383 +53 0.455197811127 0.0 +15 0.455444902182 0.00345785543323 +50 0.238549560308 0.00379471783526 +SURF 0x10 +mat 2 +refs 4 +53 0.99969637394 0.550255298615 +49 1.0 0.764486432076 +36 0.995015978813 0.764479637146 +5 0.995060324669 0.552013516426 +SURF 0x10 +mat 2 +refs 4 +47 0.98708152771 0.291709542274 +31 0.978082895279 0.285414963961 +32 0.969735860825 0.0145424492657 +51 0.982713639736 0.0102044371888 +SURF 0x10 +mat 2 +refs 4 +11 0.0256139859557 0.296572417021 +47 0.0136295007542 0.293839484453 +51 0.0 0.0178066249937 +12 0.00742717133835 0.00971200689673 +SURF 0x10 +mat 2 +refs 4 +46 0.239456132054 0.296089947224 +11 0.0256139859557 0.296572417021 +13 0.0216562524438 0.00477391947061 +50 0.238549560308 0.00379471783526 +SURF 0x10 +mat 2 +refs 4 +46 0.239456132054 0.296089947224 +50 0.238549560308 0.00379471783526 +15 0.455444902182 0.00345785543323 +14 0.453297615051 0.295274913311 +SURF 0x10 +mat 2 +refs 4 +45 0.465264946222 0.292469322681 +14 0.453297615051 0.295274913311 +16 0.469704329967 0.0083096139133 +52 0.477181553841 0.016358954832 +SURF 0x10 +mat 2 +refs 4 +33 0.719592154026 0.243842869997 +45 0.728550076485 0.237534821033 +52 0.724317252636 0.519058942795 +1 0.711368024349 0.514719545841 +SURF 0x10 +mat 2 +refs 4 +21 0.0466807670891 0.542327880859 +17 0.0326149836183 0.54237049818 +19 0.0132764820009 0.297744274139 +22 0.0254248417914 0.300530344248 +SURF 0x10 +mat 2 +refs 4 +26 0.433679640293 0.541153788567 +25 0.453511297703 0.299231618643 +28 0.465642184019 0.296371906996 +27 0.447745352983 0.541111111641 +SURF 0x10 +mat 2 +refs 3 +29 0.717184245586 0.240393057466 +33 0.719592154026 0.243842869997 +34 0.705434918404 0.251872211695 +SURF 0x10 +mat 2 +refs 3 +31 0.978082895279 0.285414963961 +18 0.975673139095 0.288866102695 +30 0.963892161846 0.277385860682 +SURF 0x10 +mat 2 +refs 4 +36 0.995015978813 0.764479637146 +37 0.939988255501 0.721281051636 +54 0.940006017685 0.682048261166 +5 0.995060324669 0.552013516426 +SURF 0x10 +mat 2 +refs 4 +36 0.995015978813 0.764479637146 +7 0.994865477085 0.976946592331 +43 0.939930260181 0.846940279007 +35 0.939948558807 0.807799696922 +SURF 0x10 +mat 2 +refs 4 +0 0.736021399498 0.552096188068 +5 0.995060324669 0.552013516426 +55 0.930973529816 0.670140087605 +38 0.879945516586 0.670118391514 +SURF 0x10 +mat 2 +refs 4 +6 0.735826671124 0.976668298244 +41 0.879780292511 0.858818888664 +42 0.930886864662 0.858840763569 +7 0.994865477085 0.976946592331 +SURF 0x10 +mat 2 +refs 3 +5 0.995060324669 0.552013516426 +54 0.940006017685 0.682048261166 +55 0.930973529816 0.670140087605 +SURF 0x10 +mat 2 +refs 4 +0 0.736021399498 0.552096188068 +44 0.831797242165 0.682002127171 +56 0.831721842289 0.846894204617 +6 0.735826671124 0.976668298244 +SURF 0x10 +mat 2 +refs 3 +6 0.735826671124 0.976668298244 +56 0.831721842289 0.846894204617 +40 0.840754508972 0.858802258968 +SURF 0x10 +mat 2 +refs 4 +32 0.969735860825 0.0145424492657 +30 0.963892161846 0.277385860682 +57 0.935117483139 0.255805969238 +58 0.917956829071 0.0412226207554 +SURF 0x10 +mat 2 +refs 4 +34 0.705434918404 0.251872211695 +1 0.711368024349 0.514719545841 +59 0.65956813097 0.488048404455 +60 0.676655948162 0.273456394672 +SURF 0x10 +mat 2 +refs 3 +27 0.644488334656 0.0 +34 0.705434918404 0.251872211695 +60 0.676655948162 0.273456394672 +SURF 0x10 +mat 2 +refs 3 +0 0.477181553841 0.528897881508 +59 0.65956813097 0.488048404455 +1 0.711368024349 0.514719545841 +SURF 0x10 +mat 2 +refs 3 +6 0.735826671124 0.000355219613994 +32 0.969735860825 0.0145424492657 +58 0.917956829071 0.0412226207554 +SURF 0x10 +mat 2 +refs 3 +17 0.903212547302 0.529225826263 +57 0.935117483139 0.255805969238 +30 0.963892161846 0.277385860682 +SURF 0x10 +mat 2 +refs 3 +104 0.903212547302 0.529225826263 +91 0.963892161846 0.277385860682 +64 0.935117483139 0.255805969238 +SURF 0x10 +mat 2 +refs 3 +115 0.735826671124 0.000355219613994 +63 0.917956829071 0.0412226207554 +89 0.969735860825 0.0145424492657 +SURF 0x10 +mat 2 +refs 3 +121 0.477181553841 0.528897881508 +120 0.711368024349 0.514719545841 +62 0.65956813097 0.488048404455 +SURF 0x10 +mat 2 +refs 3 +94 0.644488334656 0.0 +61 0.676655948162 0.273456394672 +87 0.705434918404 0.251872211695 +SURF 0x10 +mat 2 +refs 4 +87 0.705434918404 0.251872211695 +61 0.676655948162 0.273456394672 +62 0.65956813097 0.488048404455 +120 0.711368024349 0.514719545841 +SURF 0x10 +mat 2 +refs 4 +89 0.969735860825 0.0145424492657 +63 0.917956829071 0.0412226207554 +64 0.935117483139 0.255805969238 +91 0.963892161846 0.277385860682 +SURF 0x10 +mat 2 +refs 3 +115 0.735826671124 0.976668298244 +81 0.840754508972 0.858802258968 +65 0.831721842289 0.846894204617 +SURF 0x10 +mat 2 +refs 4 +121 0.736021399498 0.552096188068 +115 0.735826671124 0.976668298244 +65 0.831721842289 0.846894204617 +77 0.831797242165 0.682002127171 +SURF 0x10 +mat 2 +refs 3 +116 0.995060324669 0.552013516426 +66 0.930973529816 0.670140087605 +67 0.940006017685 0.682048261166 +SURF 0x10 +mat 2 +refs 4 +115 0.735826671124 0.976668298244 +114 0.994865477085 0.976946592331 +79 0.930886864662 0.858840763569 +80 0.879780292511 0.858818888664 +SURF 0x10 +mat 2 +refs 4 +121 0.736021399498 0.552096188068 +83 0.879945516586 0.670118391514 +66 0.930973529816 0.670140087605 +116 0.995060324669 0.552013516426 +SURF 0x10 +mat 2 +refs 4 +85 0.995015978813 0.764479637146 +86 0.939948558807 0.807799696922 +78 0.939930260181 0.846940279007 +114 0.994865477085 0.976946592331 +SURF 0x10 +mat 2 +refs 4 +85 0.995015978813 0.764479637146 +116 0.995060324669 0.552013516426 +67 0.940006017685 0.682048261166 +84 0.939988255501 0.721281051636 +SURF 0x10 +mat 2 +refs 3 +90 0.978082895279 0.285414963961 +91 0.963892161846 0.277385860682 +103 0.975673139095 0.288866102695 +SURF 0x10 +mat 2 +refs 3 +92 0.717184245586 0.240393057466 +87 0.705434918404 0.251872211695 +88 0.719592154026 0.243842869997 +SURF 0x10 +mat 2 +refs 4 +95 0.433679640293 0.541153788567 +94 0.447745352983 0.541111111641 +93 0.465642184019 0.296371906996 +96 0.453511297703 0.299231618643 +SURF 0x10 +mat 2 +refs 4 +100 0.0466807670891 0.542327880859 +99 0.0254248417914 0.300530344248 +102 0.0132764820009 0.297744274139 +104 0.0326149836183 0.54237049818 +SURF 0x10 +mat 2 +refs 4 +88 0.719592154026 0.243842869997 +120 0.711368024349 0.514719545841 +69 0.724317252636 0.519058942795 +76 0.728550076485 0.237534821033 +SURF 0x10 +mat 2 +refs 4 +76 0.465264946222 0.292469322681 +69 0.477181553841 0.016358954832 +105 0.469704329967 0.0083096139133 +107 0.453297615051 0.295274913311 +SURF 0x10 +mat 2 +refs 4 +75 0.239456132054 0.296089947224 +107 0.453297615051 0.295274913311 +106 0.455444902182 0.00345785543323 +71 0.238549560308 0.00379471783526 +SURF 0x10 +mat 2 +refs 4 +75 0.239456132054 0.296089947224 +71 0.238549560308 0.00379471783526 +108 0.0216562524438 0.00477391947061 +110 0.0256139859557 0.296572417021 +SURF 0x10 +mat 2 +refs 4 +110 0.0256139859557 0.296572417021 +109 0.00742717133835 0.00971200689673 +70 0.0 0.0178066249937 +74 0.0136295007542 0.293839484453 +SURF 0x10 +mat 2 +refs 4 +74 0.98708152771 0.291709542274 +70 0.982713639736 0.0102044371888 +89 0.969735860825 0.0145424492657 +90 0.978082895279 0.285414963961 +SURF 0x10 +mat 2 +refs 4 +68 0.99969637394 0.550255298615 +116 0.995060324669 0.552013516426 +85 0.995015978813 0.764479637146 +72 1.0 0.764486432076 +SURF 0x10 +mat 2 +refs 4 +72 0.238538920879 0.000369129964383 +71 0.238549560308 0.00379471783526 +106 0.455444902182 0.00345785543323 +68 0.455197811127 0.0 +SURF 0x10 +mat 2 +refs 4 +116 0.995060324669 0.552013516426 +68 0.99969637394 0.550255298615 +117 0.993009567261 0.536406993866 +118 0.989353120327 0.539594471455 +SURF 0x10 +mat 2 +refs 4 +68 0.455197811127 0.0 +106 0.455444902182 0.00345785543323 +105 0.469704329967 0.0083096139133 +117 0.469264894724 0.00475932890549 +SURF 0x10 +mat 2 +refs 4 +117 0.733114480972 0.529246389866 +105 0.735826671124 0.525143444538 +69 0.724317252636 0.519058942795 +119 0.721797585487 0.523264288902 +SURF 0x10 +mat 2 +refs 3 +119 0.721797585487 0.523264288902 +69 0.724317252636 0.519058942795 +120 0.711368024349 0.514719545841 +SURF 0x10 +mat 2 +refs 3 +112 0.980197906494 0.00599828874692 +89 0.969735860825 0.0145424492657 +70 0.982713639736 0.0102044371888 +SURF 0x10 +mat 2 +refs 4 +111 0.9915599823 0.0 +112 0.980197906494 0.00599828874692 +70 0.982713639736 0.0102044371888 +109 0.994269132614 0.00410346547142 +SURF 0x10 +mat 2 +refs 4 +73 0.0218818187714 0.00131466716994 +111 0.00784455705434 0.0061592226848 +109 0.00742717133835 0.00971200689673 +108 0.0216562524438 0.00477391947061 +SURF 0x10 +mat 2 +refs 4 +114 0.994865477085 0.976946592331 +113 0.989146828651 0.989445269108 +111 0.992800474167 0.992664635181 +73 0.99949991703 0.978723168373 +SURF 0x10 +mat 2 +refs 4 +72 0.238538920879 0.000369129964383 +73 0.0218818187714 0.00131466716994 +108 0.0216562524438 0.00477391947061 +71 0.238549560308 0.00379471783526 +SURF 0x10 +mat 2 +refs 4 +73 0.99949991703 0.978723168373 +72 1.0 0.764486432076 +85 0.995015978813 0.764479637146 +114 0.994865477085 0.976946592331 +SURF 0x10 +mat 2 +refs 4 +74 0.98708152771 0.291709542274 +90 0.978082895279 0.285414963961 +103 0.975673139095 0.288866102695 +102 0.984824717045 0.295268058777 +SURF 0x10 +mat 2 +refs 4 +110 0.0256139859557 0.296572417021 +74 0.0136295007542 0.293839484453 +102 0.0132764820009 0.297744274139 +99 0.0254248417914 0.300530344248 +SURF 0x10 +mat 2 +refs 4 +75 0.239456132054 0.296089947224 +110 0.0256139859557 0.296572417021 +99 0.0254248417914 0.300530344248 +98 0.239468470216 0.300066202879 +SURF 0x10 +mat 2 +refs 4 +75 0.239456132054 0.296089947224 +98 0.239468470216 0.300066202879 +96 0.453511297703 0.299231618643 +107 0.453297615051 0.295274913311 +SURF 0x10 +mat 2 +refs 4 +107 0.453297615051 0.295274913311 +96 0.453511297703 0.299231618643 +93 0.465642184019 0.296371906996 +76 0.465264946222 0.292469322681 +SURF 0x10 +mat 2 +refs 4 +92 0.717184245586 0.240393057466 +88 0.719592154026 0.243842869997 +76 0.728550076485 0.237534821033 +93 0.726294398308 0.233977451921 +SURF 0x10 +mat 2 +refs 3 +77 0.831797242165 0.682002127171 +82 0.840840876102 0.670101761818 +121 0.736021399498 0.552096188068 +SURF 0x10 +mat 2 +refs 3 +79 0.930886864662 0.858840763569 +114 0.994865477085 0.976946592331 +78 0.939930260181 0.846940279007 +SURF 0x10 +mat 2 +refs 3 +115 0.735826671124 0.976668298244 +80 0.879780292511 0.858818888664 +81 0.840754508972 0.858802258968 +SURF 0x10 +mat 2 +refs 3 +121 0.736021399498 0.552096188068 +82 0.840840876102 0.670101761818 +83 0.879945516586 0.670118391514 +SURF 0x10 +mat 2 +refs 3 +86 0.939948558807 0.807799696922 +85 0.995015978813 0.764479637146 +84 0.939988255501 0.721281051636 +SURF 0x10 +mat 2 +refs 3 +94 0.644488334656 0.0 +87 0.705434918404 0.251872211695 +92 0.717184245586 0.240393057466 +SURF 0x10 +mat 2 +refs 3 +88 0.719592154026 0.243842869997 +87 0.705434918404 0.251872211695 +120 0.711368024349 0.514719545841 +SURF 0x10 +mat 2 +refs 3 +90 0.978082895279 0.285414963961 +89 0.969735860825 0.0145424492657 +91 0.963892161846 0.277385860682 +SURF 0x10 +mat 2 +refs 3 +104 0.903212547302 0.529225826263 +103 0.975673139095 0.288866102695 +91 0.963892161846 0.277385860682 +SURF 0x10 +mat 2 +refs 3 +94 0.644488334656 0.0 +92 0.717184245586 0.240393057466 +93 0.726294398308 0.233977451921 +SURF 0x10 +mat 2 +refs 3 +97 0.247123017907 0.541719794273 +95 0.433679640293 0.541153788567 +96 0.453511297703 0.299231618643 +SURF 0x10 +mat 2 +refs 3 +97 0.247123017907 0.541719794273 +96 0.453511297703 0.299231618643 +98 0.239468470216 0.300066202879 +SURF 0x10 +mat 2 +refs 3 +97 0.247123017907 0.541719794273 +98 0.239468470216 0.300066202879 +101 0.233237370849 0.541761934757 +SURF 0x10 +mat 2 +refs 3 +101 0.233237370849 0.541761934757 +98 0.239468470216 0.300066202879 +99 0.0254248417914 0.300530344248 +SURF 0x10 +mat 2 +refs 3 +101 0.233237370849 0.541761934757 +99 0.0254248417914 0.300530344248 +100 0.0466807670891 0.542327880859 +SURF 0x10 +mat 2 +refs 3 +104 0.903212547302 0.529225826263 +102 0.984824717045 0.295268058777 +103 0.975673139095 0.288866102695 +SURF 0x10 +mat 2 +refs 3 +107 0.453297615051 0.295274913311 +105 0.469704329967 0.0083096139133 +106 0.455444902182 0.00345785543323 +SURF 0x10 +mat 2 +refs 3 +110 0.0256139859557 0.296572417021 +108 0.0216562524438 0.00477391947061 +109 0.00742717133835 0.00971200689673 +SURF 0x10 +mat 2 +refs 3 +113 0.989146828651 0.989445269108 +112 0.981734633446 0.999999940395 +111 0.992800474167 0.992664635181 +SURF 0x10 +mat 2 +refs 3 +115 0.735826671124 0.000355219613994 +89 0.969735860825 0.0145424492657 +112 0.980197906494 0.00599828874692 +SURF 0x10 +mat 2 +refs 3 +115 0.735826671124 0.976668298244 +112 0.981734633446 0.999999940395 +113 0.989146828651 0.989445269108 +SURF 0x10 +mat 2 +refs 3 +115 0.735826671124 0.976668298244 +113 0.989146828651 0.989445269108 +114 0.994865477085 0.976946592331 +SURF 0x10 +mat 2 +refs 3 +121 0.736021399498 0.552096188068 +116 0.995060324669 0.552013516426 +118 0.989353120327 0.539594471455 +SURF 0x10 +mat 2 +refs 3 +119 0.981950342655 0.529225826263 +118 0.989353120327 0.539594471455 +117 0.993009567261 0.536406993866 +SURF 0x10 +mat 2 +refs 3 +121 0.736021399498 0.552096188068 +118 0.989353120327 0.539594471455 +119 0.981950342655 0.529225826263 +SURF 0x10 +mat 2 +refs 3 +121 0.477181553841 0.528897881508 +119 0.721797585487 0.523264288902 +120 0.711368024349 0.514719545841 +kids 0 +OBJECT poly +name "roof1.U" +data 9 +Plane.009 +crease 30.000000 +numvert 93 +3.307514 1.942962 0.689116 +3.306523 1.95789 0.69485 +3.293703 1.967469 0.695608 +3.278707 1.964485 0.69082 +3.272829 1.951186 0.684092 +3.280493 1.937586 0.680489 +3.29593 1.933926 0.682725 +3.307614 1.943128 -0.000123 +3.307276 1.959146 -0.000123 +3.294542 1.968869 -0.000123 +3.279001 1.964975 -0.000123 +3.272355 1.950397 -0.000123 +3.27961 1.936112 -0.000123 +3.295301 1.932877 -0.000123 +3.296807 1.925096 0.729533 +3.287271 1.919478 0.717948 +3.293978 1.936957 0.739925 +3.280915 1.946131 0.741299 +3.267454 1.945708 0.732621 +3.263732 1.936008 0.720425 +3.272552 1.924335 0.713895 +3.2722 1.89433 0.73576 +3.278751 1.894967 0.750367 +3.273244 1.90236 0.763471 +3.259827 1.910943 0.765203 +3.248602 1.914251 0.754261 +3.248023 1.909795 0.738882 +3.258524 1.900929 0.730649 +3.25411 1.864144 0.738516 +3.258648 1.861423 0.753638 +3.251337 1.865805 0.767204 +3.237681 1.87399 0.768998 +3.227963 1.879813 0.757669 +3.229502 1.878891 0.741748 +3.241138 1.871917 0.733225 +2.810004 1.123101 0.738516 +2.814543 1.120381 0.753638 +2.807231 1.124763 0.767204 +2.793575 1.132947 0.768998 +2.783857 1.13877 0.757669 +2.785396 1.137848 0.741748 +2.797032 1.130875 0.733225 +2.797548 1.118646 0.752097 +2.796395 1.119337 0.748254 +2.79569 1.119759 0.755543 +2.792221 1.121838 0.755999 +2.789751 1.123318 0.753121 +2.790142 1.123084 0.749075 +2.793099 1.121312 0.74691 +2.792564 1.119398 0.751571 +2.792564 1.119397 -0.751817 +2.793099 1.121312 -0.747155 +2.790142 1.123084 -0.749321 +2.789751 1.123318 -0.753366 +2.79222 1.121838 -0.756245 +2.79569 1.119759 -0.755789 +2.796395 1.119337 -0.748499 +2.797548 1.118646 -0.752342 +2.797032 1.130875 -0.73347 +2.785396 1.137848 -0.741994 +2.783857 1.13877 -0.757915 +2.793575 1.132947 -0.769244 +2.807231 1.124762 -0.76745 +2.814543 1.120381 -0.753884 +2.810004 1.123101 -0.738761 +3.241138 1.871917 -0.73347 +3.229502 1.878891 -0.741994 +3.227963 1.879813 -0.757915 +3.237681 1.873989 -0.769244 +3.251337 1.865805 -0.76745 +3.258648 1.861423 -0.753884 +3.25411 1.864144 -0.738761 +3.258524 1.900928 -0.730894 +3.248023 1.909795 -0.739127 +3.248602 1.914251 -0.754506 +3.259827 1.910943 -0.765449 +3.273244 1.90236 -0.763716 +3.278751 1.894967 -0.750612 +3.2722 1.89433 -0.736005 +3.272552 1.924335 -0.71414 +3.263732 1.936008 -0.72067 +3.267454 1.945708 -0.732866 +3.280915 1.946131 -0.741544 +3.293978 1.936957 -0.74017 +3.287271 1.919478 -0.718194 +3.296807 1.925096 -0.729778 +3.29593 1.933926 -0.682971 +3.280493 1.937586 -0.680735 +3.272828 1.951186 -0.684337 +3.278707 1.964485 -0.691065 +3.293703 1.967468 -0.695853 +3.306523 1.95789 -0.695095 +3.307514 1.942962 -0.689362 +numsurf 98 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +6 0 0 +13 0 0 +7 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +0 0 0 +7 0 0 +8 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +9 0 0 +2 0 0 +1 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +10 0 0 +3 0 0 +2 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +11 0 0 +4 0 0 +3 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +12 0 0 +5 0 0 +4 0 0 +SURF 0x20 +mat 3 +refs 4 +12 0 0 +13 0 0 +6 0 0 +5 0 0 +SURF 0x20 +mat 3 +refs 4 +6 0 0 +0 0 0 +14 0 0 +15 0 0 +SURF 0x20 +mat 3 +refs 4 +0 0 0 +1 0 0 +16 0 0 +14 0 0 +SURF 0x20 +mat 3 +refs 4 +1 0 0 +2 0 0 +17 0 0 +16 0 0 +SURF 0x20 +mat 3 +refs 4 +2 0 0 +3 0 0 +18 0 0 +17 0 0 +SURF 0x20 +mat 3 +refs 4 +3 0 0 +4 0 0 +19 0 0 +18 0 0 +SURF 0x20 +mat 3 +refs 4 +4 0 0 +5 0 0 +20 0 0 +19 0 0 +SURF 0x20 +mat 3 +refs 4 +5 0 0 +6 0 0 +15 0 0 +20 0 0 +SURF 0x20 +mat 3 +refs 4 +15 0 0 +14 0 0 +22 0 0 +21 0 0 +SURF 0x20 +mat 3 +refs 4 +14 0 0 +16 0 0 +23 0 0 +22 0 0 +SURF 0x20 +mat 3 +refs 4 +16 0 0 +17 0 0 +24 0 0 +23 0 0 +SURF 0x20 +mat 3 +refs 4 +17 0 0 +18 0 0 +25 0 0 +24 0 0 +SURF 0x20 +mat 3 +refs 4 +18 0 0 +19 0 0 +26 0 0 +25 0 0 +SURF 0x20 +mat 3 +refs 4 +19 0 0 +20 0 0 +27 0 0 +26 0 0 +SURF 0x20 +mat 3 +refs 4 +20 0 0 +15 0 0 +21 0 0 +27 0 0 +SURF 0x20 +mat 3 +refs 4 +21 0 0 +22 0 0 +29 0 0 +28 0 0 +SURF 0x20 +mat 3 +refs 4 +22 0 0 +23 0 0 +30 0 0 +29 0 0 +SURF 0x20 +mat 3 +refs 4 +23 0 0 +24 0 0 +31 0 0 +30 0 0 +SURF 0x20 +mat 3 +refs 4 +24 0 0 +25 0 0 +32 0 0 +31 0 0 +SURF 0x20 +mat 3 +refs 4 +25 0 0 +26 0 0 +33 0 0 +32 0 0 +SURF 0x20 +mat 3 +refs 4 +26 0 0 +27 0 0 +34 0 0 +33 0 0 +SURF 0x20 +mat 3 +refs 4 +27 0 0 +21 0 0 +28 0 0 +34 0 0 +SURF 0x20 +mat 3 +refs 4 +28 0 0 +29 0 0 +36 0 0 +35 0 0 +SURF 0x20 +mat 3 +refs 4 +29 0 0 +30 0 0 +37 0 0 +36 0 0 +SURF 0x20 +mat 3 +refs 4 +30 0 0 +31 0 0 +38 0 0 +37 0 0 +SURF 0x20 +mat 3 +refs 4 +31 0 0 +32 0 0 +39 0 0 +38 0 0 +SURF 0x20 +mat 3 +refs 4 +32 0 0 +33 0 0 +40 0 0 +39 0 0 +SURF 0x20 +mat 3 +refs 4 +33 0 0 +34 0 0 +41 0 0 +40 0 0 +SURF 0x20 +mat 3 +refs 4 +34 0 0 +28 0 0 +35 0 0 +41 0 0 +SURF 0x20 +mat 3 +refs 4 +35 0 0 +36 0 0 +42 0 0 +43 0 0 +SURF 0x20 +mat 3 +refs 4 +36 0 0 +37 0 0 +44 0 0 +42 0 0 +SURF 0x20 +mat 3 +refs 4 +37 0 0 +38 0 0 +45 0 0 +44 0 0 +SURF 0x20 +mat 3 +refs 4 +38 0 0 +39 0 0 +46 0 0 +45 0 0 +SURF 0x20 +mat 3 +refs 4 +39 0 0 +40 0 0 +47 0 0 +46 0 0 +SURF 0x20 +mat 3 +refs 4 +40 0 0 +41 0 0 +48 0 0 +47 0 0 +SURF 0x20 +mat 3 +refs 4 +41 0 0 +35 0 0 +43 0 0 +48 0 0 +SURF 0x20 +mat 3 +refs 3 +43 0 0 +42 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +42 0 0 +44 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +44 0 0 +45 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +45 0 0 +46 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +46 0 0 +47 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +47 0 0 +48 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +48 0 0 +43 0 0 +49 0 0 +SURF 0x20 +mat 3 +refs 3 +51 0 0 +50 0 0 +56 0 0 +SURF 0x20 +mat 3 +refs 3 +52 0 0 +50 0 0 +51 0 0 +SURF 0x20 +mat 3 +refs 3 +53 0 0 +50 0 0 +52 0 0 +SURF 0x20 +mat 3 +refs 3 +54 0 0 +50 0 0 +53 0 0 +SURF 0x20 +mat 3 +refs 3 +55 0 0 +50 0 0 +54 0 0 +SURF 0x20 +mat 3 +refs 3 +57 0 0 +50 0 0 +55 0 0 +SURF 0x20 +mat 3 +refs 3 +56 0 0 +50 0 0 +57 0 0 +SURF 0x20 +mat 3 +refs 4 +58 0 0 +51 0 0 +56 0 0 +64 0 0 +SURF 0x20 +mat 3 +refs 4 +59 0 0 +52 0 0 +51 0 0 +58 0 0 +SURF 0x20 +mat 3 +refs 4 +60 0 0 +53 0 0 +52 0 0 +59 0 0 +SURF 0x20 +mat 3 +refs 4 +61 0 0 +54 0 0 +53 0 0 +60 0 0 +SURF 0x20 +mat 3 +refs 4 +62 0 0 +55 0 0 +54 0 0 +61 0 0 +SURF 0x20 +mat 3 +refs 4 +63 0 0 +57 0 0 +55 0 0 +62 0 0 +SURF 0x20 +mat 3 +refs 4 +64 0 0 +56 0 0 +57 0 0 +63 0 0 +SURF 0x20 +mat 3 +refs 4 +65 0 0 +58 0 0 +64 0 0 +71 0 0 +SURF 0x20 +mat 3 +refs 4 +66 0 0 +59 0 0 +58 0 0 +65 0 0 +SURF 0x20 +mat 3 +refs 4 +67 0 0 +60 0 0 +59 0 0 +66 0 0 +SURF 0x20 +mat 3 +refs 4 +68 0 0 +61 0 0 +60 0 0 +67 0 0 +SURF 0x20 +mat 3 +refs 4 +69 0 0 +62 0 0 +61 0 0 +68 0 0 +SURF 0x20 +mat 3 +refs 4 +70 0 0 +63 0 0 +62 0 0 +69 0 0 +SURF 0x20 +mat 3 +refs 4 +71 0 0 +64 0 0 +63 0 0 +70 0 0 +SURF 0x20 +mat 3 +refs 4 +72 0 0 +65 0 0 +71 0 0 +78 0 0 +SURF 0x20 +mat 3 +refs 4 +73 0 0 +66 0 0 +65 0 0 +72 0 0 +SURF 0x20 +mat 3 +refs 4 +74 0 0 +67 0 0 +66 0 0 +73 0 0 +SURF 0x20 +mat 3 +refs 4 +75 0 0 +68 0 0 +67 0 0 +74 0 0 +SURF 0x20 +mat 3 +refs 4 +76 0 0 +69 0 0 +68 0 0 +75 0 0 +SURF 0x20 +mat 3 +refs 4 +77 0 0 +70 0 0 +69 0 0 +76 0 0 +SURF 0x20 +mat 3 +refs 4 +78 0 0 +71 0 0 +70 0 0 +77 0 0 +SURF 0x20 +mat 3 +refs 4 +79 0 0 +72 0 0 +78 0 0 +84 0 0 +SURF 0x20 +mat 3 +refs 4 +80 0 0 +73 0 0 +72 0 0 +79 0 0 +SURF 0x20 +mat 3 +refs 4 +81 0 0 +74 0 0 +73 0 0 +80 0 0 +SURF 0x20 +mat 3 +refs 4 +82 0 0 +75 0 0 +74 0 0 +81 0 0 +SURF 0x20 +mat 3 +refs 4 +83 0 0 +76 0 0 +75 0 0 +82 0 0 +SURF 0x20 +mat 3 +refs 4 +85 0 0 +77 0 0 +76 0 0 +83 0 0 +SURF 0x20 +mat 3 +refs 4 +84 0 0 +78 0 0 +77 0 0 +85 0 0 +SURF 0x20 +mat 3 +refs 4 +87 0 0 +79 0 0 +84 0 0 +86 0 0 +SURF 0x20 +mat 3 +refs 4 +88 0 0 +80 0 0 +79 0 0 +87 0 0 +SURF 0x20 +mat 3 +refs 4 +89 0 0 +81 0 0 +80 0 0 +88 0 0 +SURF 0x20 +mat 3 +refs 4 +90 0 0 +82 0 0 +81 0 0 +89 0 0 +SURF 0x20 +mat 3 +refs 4 +91 0 0 +83 0 0 +82 0 0 +90 0 0 +SURF 0x20 +mat 3 +refs 4 +92 0 0 +85 0 0 +83 0 0 +91 0 0 +SURF 0x20 +mat 3 +refs 4 +86 0 0 +84 0 0 +85 0 0 +92 0 0 +SURF 0x20 +mat 3 +refs 4 +12 0 0 +87 0 0 +86 0 0 +13 0 0 +SURF 0x20 +mat 3 +refs 4 +11 0 0 +88 0 0 +87 0 0 +12 0 0 +SURF 0x20 +mat 3 +refs 4 +10 0 0 +89 0 0 +88 0 0 +11 0 0 +SURF 0x20 +mat 3 +refs 4 +9 0 0 +90 0 0 +89 0 0 +10 0 0 +SURF 0x20 +mat 3 +refs 4 +8 0 0 +91 0 0 +90 0 0 +9 0 0 +SURF 0x20 +mat 3 +refs 4 +91 0 0 +8 0 0 +7 0 0 +92 0 0 +SURF 0x20 +mat 3 +refs 4 +92 0 0 +7 0 0 +13 0 0 +86 0 0 +kids 0 +OBJECT poly +name "roof2.U" +data 9 +Plane.008 +crease 30.000000 +numvert 121 +2.773411 1.308516 -0.718766 +2.763862 1.301998 -0.726031 +2.762599 1.301136 -0.739599 +2.770573 1.306579 -0.749254 +2.78178 1.314229 -0.747725 +2.78778 1.318324 -0.736164 +2.784055 1.315781 -0.723276 +2.379342 1.88585 -0.718766 +2.369793 1.879332 -0.726031 +2.36853 1.87847 -0.739599 +2.376504 1.883914 -0.749254 +2.387711 1.891563 -0.747725 +2.393711 1.895658 -0.736164 +2.389987 1.893116 -0.723276 +2.363092 1.909658 -0.716571 +2.352483 1.904693 -0.723588 +2.34924 1.906731 -0.736694 +2.355806 1.914239 -0.74602 +2.367236 1.921561 -0.744543 +2.374923 1.923185 -0.733376 +2.373078 1.917887 -0.720927 +2.349981 1.928865 -0.702293 +2.3378 1.926204 -0.707858 +2.33162 1.932546 -0.718252 +2.336096 1.943115 -0.725648 +2.347857 1.949952 -0.724477 +2.358992 1.938525 -0.705747 +2.358046 1.94791 -0.71562 +2.351487 1.94952 -0.000122 +2.343384 1.93853 -0.000122 +2.32974 1.938012 -0.000122 +2.320828 1.948357 -0.000122 +2.323359 1.961775 -0.000122 +2.335428 1.968161 -0.000122 +2.347946 1.962707 -0.000122 +2.350899 1.950381 -0.675729 +2.342558 1.93974 -0.673823 +2.329298 1.93866 -0.676893 +2.321102 1.947955 -0.682627 +2.324144 1.960625 -0.686708 +2.336132 1.96713 -0.686062 +2.348039 1.962571 -0.681176 +2.77827 1.300228 -0.718766 +2.792894 1.31021 -0.723276 +2.765152 1.291273 -0.726031 +2.763417 1.290089 -0.739599 +2.774372 1.297567 -0.749254 +2.789769 1.308076 -0.747725 +2.798012 1.313702 -0.736164 +2.815736 1.245339 -0.718766 +2.83036 1.25532 -0.723276 +2.802617 1.236384 -0.726031 +2.800882 1.2352 -0.739599 +2.811838 1.242678 -0.749254 +2.827234 1.253187 -0.747725 +2.835477 1.258813 -0.736164 +2.829897 1.241853 -0.723276 +2.822903 1.237078 -0.718766 +2.816628 1.232795 -0.726031 +2.815799 1.232229 -0.739599 +2.821038 1.235806 -0.749254 +2.828403 1.240832 -0.747725 +2.832345 1.243523 -0.736164 +2.82566 1.235092 -0.734402 +2.82566 1.235092 0.734157 +2.832345 1.243523 0.735919 +2.828403 1.240832 0.74748 +2.821038 1.235806 0.749009 +2.815799 1.232229 0.739354 +2.816628 1.232795 0.725786 +2.822903 1.237078 0.718521 +2.829898 1.241853 0.723031 +2.835477 1.258813 0.735919 +2.827234 1.253187 0.74748 +2.811838 1.242678 0.749009 +2.800882 1.2352 0.739354 +2.802617 1.236384 0.725786 +2.83036 1.255321 0.723031 +2.815736 1.245339 0.718521 +2.798012 1.313702 0.735919 +2.789769 1.308076 0.74748 +2.774372 1.297567 0.749009 +2.763417 1.290089 0.739354 +2.765152 1.291273 0.725786 +2.792894 1.31021 0.723031 +2.77827 1.300228 0.718521 +2.348039 1.962571 0.68093 +2.336132 1.96713 0.685816 +2.324144 1.960625 0.686462 +2.321102 1.947955 0.682382 +2.329298 1.93866 0.676648 +2.342558 1.93974 0.673578 +2.350899 1.950381 0.675484 +2.358046 1.94791 0.715375 +2.358992 1.938525 0.705502 +2.347857 1.949952 0.724231 +2.336096 1.943115 0.725403 +2.33162 1.932546 0.718006 +2.3378 1.926204 0.707612 +2.349981 1.928865 0.702048 +2.373078 1.917887 0.720682 +2.374923 1.923185 0.733131 +2.367236 1.921561 0.744298 +2.355806 1.914239 0.745775 +2.34924 1.906732 0.736449 +2.352483 1.904693 0.723343 +2.363092 1.909658 0.716326 +2.389987 1.893116 0.723031 +2.393712 1.895658 0.735919 +2.387712 1.891563 0.74748 +2.376505 1.883914 0.749009 +2.36853 1.87847 0.739354 +2.369793 1.879332 0.725786 +2.379342 1.88585 0.718521 +2.784055 1.315781 0.723031 +2.78778 1.318324 0.735919 +2.78178 1.314229 0.74748 +2.770573 1.306579 0.749009 +2.762599 1.301136 0.739354 +2.763862 1.301998 0.725786 +2.773411 1.308516 0.718521 +numsurf 126 +SURF 0x30 +mat 3 +refs 4 +7 0 0 +0 0 0 +6 0 0 +13 0 0 +SURF 0x30 +mat 3 +refs 4 +0 0 0 +7 0 0 +8 0 0 +1 0 0 +SURF 0x30 +mat 3 +refs 4 +9 0 0 +2 0 0 +1 0 0 +8 0 0 +SURF 0x30 +mat 3 +refs 4 +10 0 0 +3 0 0 +2 0 0 +9 0 0 +SURF 0x30 +mat 3 +refs 4 +11 0 0 +4 0 0 +3 0 0 +10 0 0 +SURF 0x30 +mat 3 +refs 4 +12 0 0 +5 0 0 +4 0 0 +11 0 0 +SURF 0x30 +mat 3 +refs 4 +13 0 0 +6 0 0 +5 0 0 +12 0 0 +SURF 0x30 +mat 3 +refs 4 +14 0 0 +7 0 0 +13 0 0 +20 0 0 +SURF 0x30 +mat 3 +refs 4 +15 0 0 +8 0 0 +7 0 0 +14 0 0 +SURF 0x30 +mat 3 +refs 4 +16 0 0 +9 0 0 +8 0 0 +15 0 0 +SURF 0x30 +mat 3 +refs 4 +17 0 0 +10 0 0 +9 0 0 +16 0 0 +SURF 0x30 +mat 3 +refs 4 +18 0 0 +11 0 0 +10 0 0 +17 0 0 +SURF 0x30 +mat 3 +refs 4 +19 0 0 +12 0 0 +11 0 0 +18 0 0 +SURF 0x30 +mat 3 +refs 4 +20 0 0 +13 0 0 +12 0 0 +19 0 0 +SURF 0x30 +mat 3 +refs 4 +21 0 0 +14 0 0 +20 0 0 +26 0 0 +SURF 0x30 +mat 3 +refs 4 +22 0 0 +15 0 0 +14 0 0 +21 0 0 +SURF 0x30 +mat 3 +refs 4 +23 0 0 +16 0 0 +15 0 0 +22 0 0 +SURF 0x30 +mat 3 +refs 4 +24 0 0 +17 0 0 +16 0 0 +23 0 0 +SURF 0x30 +mat 3 +refs 4 +25 0 0 +18 0 0 +17 0 0 +24 0 0 +SURF 0x30 +mat 3 +refs 4 +27 0 0 +19 0 0 +18 0 0 +25 0 0 +SURF 0x30 +mat 3 +refs 4 +26 0 0 +20 0 0 +19 0 0 +27 0 0 +SURF 0x30 +mat 3 +refs 4 +36 0 0 +21 0 0 +26 0 0 +35 0 0 +SURF 0x30 +mat 3 +refs 4 +37 0 0 +22 0 0 +21 0 0 +36 0 0 +SURF 0x30 +mat 3 +refs 4 +38 0 0 +23 0 0 +22 0 0 +37 0 0 +SURF 0x30 +mat 3 +refs 4 +39 0 0 +24 0 0 +23 0 0 +38 0 0 +SURF 0x30 +mat 3 +refs 4 +40 0 0 +25 0 0 +24 0 0 +39 0 0 +SURF 0x30 +mat 3 +refs 4 +41 0 0 +27 0 0 +25 0 0 +40 0 0 +SURF 0x30 +mat 3 +refs 4 +35 0 0 +26 0 0 +27 0 0 +41 0 0 +SURF 0x30 +mat 3 +refs 4 +29 0 0 +36 0 0 +35 0 0 +28 0 0 +SURF 0x30 +mat 3 +refs 4 +30 0 0 +37 0 0 +36 0 0 +29 0 0 +SURF 0x30 +mat 3 +refs 4 +31 0 0 +38 0 0 +37 0 0 +30 0 0 +SURF 0x30 +mat 3 +refs 4 +32 0 0 +39 0 0 +38 0 0 +31 0 0 +SURF 0x30 +mat 3 +refs 4 +33 0 0 +40 0 0 +39 0 0 +32 0 0 +SURF 0x30 +mat 3 +refs 4 +40 0 0 +33 0 0 +34 0 0 +41 0 0 +SURF 0x30 +mat 3 +refs 4 +41 0 0 +34 0 0 +28 0 0 +35 0 0 +SURF 0x30 +mat 3 +refs 4 +0 0 0 +42 0 0 +43 0 0 +6 0 0 +SURF 0x30 +mat 3 +refs 4 +42 0 0 +0 0 0 +1 0 0 +44 0 0 +SURF 0x30 +mat 3 +refs 4 +2 0 0 +45 0 0 +44 0 0 +1 0 0 +SURF 0x30 +mat 3 +refs 4 +3 0 0 +46 0 0 +45 0 0 +2 0 0 +SURF 0x30 +mat 3 +refs 4 +4 0 0 +47 0 0 +46 0 0 +3 0 0 +SURF 0x30 +mat 3 +refs 4 +5 0 0 +48 0 0 +47 0 0 +4 0 0 +SURF 0x30 +mat 3 +refs 4 +6 0 0 +43 0 0 +48 0 0 +5 0 0 +SURF 0x30 +mat 3 +refs 4 +42 0 0 +49 0 0 +50 0 0 +43 0 0 +SURF 0x30 +mat 3 +refs 4 +44 0 0 +51 0 0 +49 0 0 +42 0 0 +SURF 0x30 +mat 3 +refs 4 +45 0 0 +52 0 0 +51 0 0 +44 0 0 +SURF 0x30 +mat 3 +refs 4 +46 0 0 +53 0 0 +52 0 0 +45 0 0 +SURF 0x30 +mat 3 +refs 4 +47 0 0 +54 0 0 +53 0 0 +46 0 0 +SURF 0x30 +mat 3 +refs 4 +48 0 0 +55 0 0 +54 0 0 +47 0 0 +SURF 0x30 +mat 3 +refs 4 +43 0 0 +50 0 0 +55 0 0 +48 0 0 +SURF 0x30 +mat 3 +refs 4 +49 0 0 +57 0 0 +56 0 0 +50 0 0 +SURF 0x30 +mat 3 +refs 4 +51 0 0 +58 0 0 +57 0 0 +49 0 0 +SURF 0x30 +mat 3 +refs 4 +52 0 0 +59 0 0 +58 0 0 +51 0 0 +SURF 0x30 +mat 3 +refs 4 +53 0 0 +60 0 0 +59 0 0 +52 0 0 +SURF 0x30 +mat 3 +refs 4 +54 0 0 +61 0 0 +60 0 0 +53 0 0 +SURF 0x30 +mat 3 +refs 4 +55 0 0 +62 0 0 +61 0 0 +54 0 0 +SURF 0x30 +mat 3 +refs 4 +50 0 0 +56 0 0 +62 0 0 +55 0 0 +SURF 0x30 +mat 3 +refs 3 +57 0 0 +63 0 0 +56 0 0 +SURF 0x30 +mat 3 +refs 3 +58 0 0 +63 0 0 +57 0 0 +SURF 0x30 +mat 3 +refs 3 +59 0 0 +63 0 0 +58 0 0 +SURF 0x30 +mat 3 +refs 3 +60 0 0 +63 0 0 +59 0 0 +SURF 0x30 +mat 3 +refs 3 +61 0 0 +63 0 0 +60 0 0 +SURF 0x30 +mat 3 +refs 3 +62 0 0 +63 0 0 +61 0 0 +SURF 0x30 +mat 3 +refs 3 +56 0 0 +63 0 0 +62 0 0 +SURF 0x30 +mat 3 +refs 3 +71 0 0 +65 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 3 +65 0 0 +66 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 3 +66 0 0 +67 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 3 +67 0 0 +68 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 3 +68 0 0 +69 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 3 +69 0 0 +70 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 3 +70 0 0 +71 0 0 +64 0 0 +SURF 0x30 +mat 3 +refs 4 +77 0 0 +72 0 0 +65 0 0 +71 0 0 +SURF 0x30 +mat 3 +refs 4 +72 0 0 +73 0 0 +66 0 0 +65 0 0 +SURF 0x30 +mat 3 +refs 4 +73 0 0 +74 0 0 +67 0 0 +66 0 0 +SURF 0x30 +mat 3 +refs 4 +74 0 0 +75 0 0 +68 0 0 +67 0 0 +SURF 0x30 +mat 3 +refs 4 +75 0 0 +76 0 0 +69 0 0 +68 0 0 +SURF 0x30 +mat 3 +refs 4 +76 0 0 +78 0 0 +70 0 0 +69 0 0 +SURF 0x30 +mat 3 +refs 4 +78 0 0 +77 0 0 +71 0 0 +70 0 0 +SURF 0x30 +mat 3 +refs 4 +84 0 0 +79 0 0 +72 0 0 +77 0 0 +SURF 0x30 +mat 3 +refs 4 +79 0 0 +80 0 0 +73 0 0 +72 0 0 +SURF 0x30 +mat 3 +refs 4 +80 0 0 +81 0 0 +74 0 0 +73 0 0 +SURF 0x30 +mat 3 +refs 4 +81 0 0 +82 0 0 +75 0 0 +74 0 0 +SURF 0x30 +mat 3 +refs 4 +82 0 0 +83 0 0 +76 0 0 +75 0 0 +SURF 0x30 +mat 3 +refs 4 +83 0 0 +85 0 0 +78 0 0 +76 0 0 +SURF 0x30 +mat 3 +refs 4 +85 0 0 +84 0 0 +77 0 0 +78 0 0 +SURF 0x30 +mat 3 +refs 4 +114 0 0 +115 0 0 +79 0 0 +84 0 0 +SURF 0x30 +mat 3 +refs 4 +115 0 0 +116 0 0 +80 0 0 +79 0 0 +SURF 0x30 +mat 3 +refs 4 +116 0 0 +117 0 0 +81 0 0 +80 0 0 +SURF 0x30 +mat 3 +refs 4 +117 0 0 +118 0 0 +82 0 0 +81 0 0 +SURF 0x30 +mat 3 +refs 4 +118 0 0 +119 0 0 +83 0 0 +82 0 0 +SURF 0x30 +mat 3 +refs 4 +119 0 0 +120 0 0 +85 0 0 +83 0 0 +SURF 0x30 +mat 3 +refs 4 +120 0 0 +114 0 0 +84 0 0 +85 0 0 +SURF 0x30 +mat 3 +refs 4 +86 0 0 +92 0 0 +28 0 0 +34 0 0 +SURF 0x30 +mat 3 +refs 4 +87 0 0 +86 0 0 +34 0 0 +33 0 0 +SURF 0x30 +mat 3 +refs 4 +33 0 0 +32 0 0 +88 0 0 +87 0 0 +SURF 0x30 +mat 3 +refs 4 +32 0 0 +31 0 0 +89 0 0 +88 0 0 +SURF 0x30 +mat 3 +refs 4 +31 0 0 +30 0 0 +90 0 0 +89 0 0 +SURF 0x30 +mat 3 +refs 4 +30 0 0 +29 0 0 +91 0 0 +90 0 0 +SURF 0x30 +mat 3 +refs 4 +29 0 0 +28 0 0 +92 0 0 +91 0 0 +SURF 0x30 +mat 3 +refs 4 +92 0 0 +86 0 0 +93 0 0 +94 0 0 +SURF 0x30 +mat 3 +refs 4 +86 0 0 +87 0 0 +95 0 0 +93 0 0 +SURF 0x30 +mat 3 +refs 4 +87 0 0 +88 0 0 +96 0 0 +95 0 0 +SURF 0x30 +mat 3 +refs 4 +88 0 0 +89 0 0 +97 0 0 +96 0 0 +SURF 0x30 +mat 3 +refs 4 +89 0 0 +90 0 0 +98 0 0 +97 0 0 +SURF 0x30 +mat 3 +refs 4 +90 0 0 +91 0 0 +99 0 0 +98 0 0 +SURF 0x30 +mat 3 +refs 4 +91 0 0 +92 0 0 +94 0 0 +99 0 0 +SURF 0x30 +mat 3 +refs 4 +94 0 0 +93 0 0 +101 0 0 +100 0 0 +SURF 0x30 +mat 3 +refs 4 +93 0 0 +95 0 0 +102 0 0 +101 0 0 +SURF 0x30 +mat 3 +refs 4 +95 0 0 +96 0 0 +103 0 0 +102 0 0 +SURF 0x30 +mat 3 +refs 4 +96 0 0 +97 0 0 +104 0 0 +103 0 0 +SURF 0x30 +mat 3 +refs 4 +97 0 0 +98 0 0 +105 0 0 +104 0 0 +SURF 0x30 +mat 3 +refs 4 +98 0 0 +99 0 0 +106 0 0 +105 0 0 +SURF 0x30 +mat 3 +refs 4 +99 0 0 +94 0 0 +100 0 0 +106 0 0 +SURF 0x30 +mat 3 +refs 4 +100 0 0 +101 0 0 +108 0 0 +107 0 0 +SURF 0x30 +mat 3 +refs 4 +101 0 0 +102 0 0 +109 0 0 +108 0 0 +SURF 0x30 +mat 3 +refs 4 +102 0 0 +103 0 0 +110 0 0 +109 0 0 +SURF 0x30 +mat 3 +refs 4 +103 0 0 +104 0 0 +111 0 0 +110 0 0 +SURF 0x30 +mat 3 +refs 4 +104 0 0 +105 0 0 +112 0 0 +111 0 0 +SURF 0x30 +mat 3 +refs 4 +105 0 0 +106 0 0 +113 0 0 +112 0 0 +SURF 0x30 +mat 3 +refs 4 +106 0 0 +100 0 0 +107 0 0 +113 0 0 +SURF 0x30 +mat 3 +refs 4 +107 0 0 +108 0 0 +115 0 0 +114 0 0 +SURF 0x30 +mat 3 +refs 4 +108 0 0 +109 0 0 +116 0 0 +115 0 0 +SURF 0x30 +mat 3 +refs 4 +109 0 0 +110 0 0 +117 0 0 +116 0 0 +SURF 0x30 +mat 3 +refs 4 +110 0 0 +111 0 0 +118 0 0 +117 0 0 +SURF 0x30 +mat 3 +refs 4 +111 0 0 +112 0 0 +119 0 0 +118 0 0 +SURF 0x30 +mat 3 +refs 4 +112 0 0 +113 0 0 +120 0 0 +119 0 0 +SURF 0x30 +mat 3 +refs 4 +113 0 0 +107 0 0 +114 0 0 +120 0 0 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/softroof.png b/resources/flightgear/Aircraft/jeep/Models/softroof.png new file mode 100755 index 0000000000000000000000000000000000000000..905a70d7291ca44c34f682b15cf149d6d8abf9c4 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/softroof.png differ diff --git a/resources/flightgear/Aircraft/jeep/Models/speedometer.ac b/resources/flightgear/Aircraft/jeep/Models/speedometer.ac new file mode 100755 index 0000000000000000000000000000000000000000..e578e80c058faa532acf44bb2b1eaf4d878c89e3 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/speedometer.ac @@ -0,0 +1,1718 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "Material" rgb 0.15 0.15 0.15 amb 0.8 0.8 0.8 emis 0 0 0 spec 0.25 0.25 0.25 shi 32 trans 0 +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +OBJECT world +kids 10 +OBJECT poly +name "back" +data 5 +Plane +crease 30.000000 +numvert 4 +0.001404 -0.028309 0.025885 +0.001404 -0.009111 0.025885 +0.001404 -0.009111 -0.026634 +0.001404 -0.028309 -0.026634 +numsurf 1 +SURF 0x00 +mat 1 +refs 4 +0 0.0 1.0 +3 0.0 0.0 +2 1.0 0.0 +1 1.0 1.0 +kids 0 +OBJECT poly +name "case" +data 4 +Cube +crease 30.000000 +numvert 144 +1e-06 0.042348 0.042348 +1e-06 0.029944 0.051865 +1e-06 0.0155 0.057848 +1e-06 0 0.059888 +1e-06 -0.0155 0.057848 +1e-06 -0.029944 0.051865 +1e-06 -0.042348 0.042348 +1e-06 -0.051865 0.029944 +1e-06 -0.057848 0.0155 +1e-06 -0.059888 0 +1e-06 -0.057848 -0.0155 +1e-06 -0.051865 -0.029944 +1e-06 -0.042348 -0.042348 +1e-06 -0.029944 -0.051865 +1e-06 -0.0155 -0.057848 +1e-06 0 -0.059888 +1e-06 0.0155 -0.057848 +1e-06 0.029944 -0.051865 +1e-06 0.042348 -0.042348 +1e-06 0.051865 -0.029944 +1e-06 0.057848 -0.0155 +1e-06 0.059888 0 +1e-06 0.057848 0.0155 +1e-06 0.051865 0.029944 +0.001941 0.02896 0.050161 +0.001941 0.040956 0.040956 +0.001941 0.014991 0.055947 +0.001941 0 0.057921 +0.001941 -0.014991 0.055947 +0.001941 -0.02896 0.050161 +0.001941 -0.040956 0.040956 +0.001941 -0.050161 0.02896 +0.001941 -0.055947 0.014991 +0.001941 -0.057921 0 +0.001941 -0.055947 -0.014991 +0.001941 -0.050161 -0.02896 +0.001941 -0.040956 -0.040956 +0.001941 -0.02896 -0.050161 +0.001941 -0.014991 -0.055947 +0.001941 0 -0.057921 +0.001941 0.014991 -0.055947 +0.001941 0.02896 -0.050161 +0.001941 0.040956 -0.040956 +0.001941 0.050161 -0.02896 +0.001941 0.055947 -0.014991 +0.001941 0.057921 0 +0.001941 0.055947 0.014991 +0.001941 0.050161 0.02896 +0.002911 0.027714 0.048002 +0.002911 0.039193 0.039193 +0.002911 0.014346 0.053539 +0.002911 0 0.055428 +0.002911 -0.014346 0.053539 +0.002911 -0.027714 0.048002 +0.002911 -0.039193 0.039193 +0.002911 -0.048002 0.027714 +0.002911 -0.053539 0.014346 +0.002911 -0.055428 0 +0.002911 -0.053539 -0.014346 +0.002911 -0.048002 -0.027714 +0.002911 -0.039193 -0.039193 +0.002911 -0.027714 -0.048002 +0.002911 -0.014346 -0.053539 +0.002911 0 -0.055428 +0.002911 0.014346 -0.053539 +0.002911 0.027714 -0.048002 +0.002911 0.039193 -0.039193 +0.002911 0.048002 -0.027714 +0.002911 0.053539 -0.014346 +0.002911 0.055428 0 +0.002911 0.053539 0.014346 +0.002911 0.048002 0.027714 +0.010183 0.039193 0.039193 +0.010183 0.027714 0.048002 +0.010183 0.014346 0.053539 +0.010183 0 0.055428 +0.010183 -0.014346 0.053539 +0.010183 -0.027714 0.048002 +0.010183 -0.039193 0.039193 +0.010183 -0.048002 0.027714 +0.010183 -0.053539 0.014346 +0.010183 -0.055428 0 +0.010183 -0.053539 -0.014346 +0.010183 -0.048002 -0.027714 +0.010183 -0.039193 -0.039193 +0.010183 -0.027714 -0.048002 +0.010183 -0.014346 -0.053539 +0.010183 0 -0.055428 +0.010183 0.014346 -0.053539 +0.010183 0.027714 -0.048002 +0.010183 0.039193 -0.039193 +0.010183 0.048002 -0.027714 +0.010183 0.053539 -0.014346 +0.010183 0.055428 0 +0.010183 0.053539 0.014346 +0.010183 0.048002 0.027714 +0.010183 0.034427 0.034427 +0.010183 0.024344 0.042165 +0.010183 0.012601 0.047028 +0.010183 0 0.048687 +0.010183 -0.012601 0.047028 +0.010183 -0.024344 0.042165 +0.010183 -0.034427 0.034427 +0.010183 -0.042165 0.024344 +0.010183 -0.047028 0.012601 +0.010183 -0.048687 0 +0.010183 -0.047028 -0.012601 +0.010183 -0.042165 -0.024344 +0.010183 -0.034427 -0.034427 +0.010183 -0.024344 -0.042165 +0.010183 -0.012601 -0.047028 +0.010183 0 -0.048687 +0.010183 0.012601 -0.047028 +0.010183 0.024344 -0.042165 +0.010183 0.034427 -0.034427 +0.010183 0.042164 -0.024344 +0.010183 0.047028 -0.012601 +0.010183 0.048687 0 +0.010183 0.047028 0.012601 +0.010183 0.042165 0.024344 +0.005334 0.024344 0.042165 +0.005334 0.034427 0.034427 +0.005334 0.012601 0.047028 +0.005334 0 0.048687 +0.005334 -0.012601 0.047028 +0.005334 -0.024344 0.042165 +0.005334 -0.034427 0.034427 +0.005334 -0.042165 0.024344 +0.005334 -0.047028 0.012601 +0.005334 -0.048687 0 +0.005334 -0.047028 -0.012601 +0.005334 -0.042165 -0.024344 +0.005334 -0.034427 -0.034427 +0.005334 -0.024344 -0.042165 +0.005334 -0.012601 -0.047028 +0.005334 0 -0.048687 +0.005334 0.012601 -0.047028 +0.005334 0.024344 -0.042165 +0.005334 0.034427 -0.034427 +0.005334 0.042164 -0.024344 +0.005334 0.047028 -0.012601 +0.005334 0.048687 0 +0.005334 0.047028 0.012601 +0.005334 0.042165 0.024344 +numsurf 120 +SURF 0x10 +mat 1 +refs 4 +25 1.0 0.0 +0 0.0 0.0 +1 0.0 1.0 +24 1.0 1.0 +SURF 0x10 +mat 1 +refs 4 +2 0.0 1.0 +26 1.0 1.0 +24 1.0 0.0 +1 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +3 0.0 1.0 +27 1.0 1.0 +26 1.0 0.0 +2 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +4 0.0 1.0 +28 1.0 1.0 +27 1.0 0.0 +3 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +5 0.0 1.0 +29 1.0 1.0 +28 1.0 0.0 +4 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +6 0.0 1.0 +30 1.0 1.0 +29 1.0 0.0 +5 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +7 0.0 1.0 +31 1.0 1.0 +30 1.0 0.0 +6 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +8 0.0 1.0 +32 1.0 1.0 +31 1.0 0.0 +7 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +9 0.0 1.0 +33 1.0 1.0 +32 1.0 0.0 +8 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +10 0.0 1.0 +34 1.0 1.0 +33 1.0 0.0 +9 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +11 0.0 1.0 +35 1.0 1.0 +34 1.0 0.0 +10 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +12 0.0 1.0 +36 1.0 1.0 +35 1.0 0.0 +11 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +13 0.0 1.0 +37 1.0 1.0 +36 1.0 0.0 +12 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +14 0.0 1.0 +38 1.0 1.0 +37 1.0 0.0 +13 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +15 0.0 1.0 +39 1.0 1.0 +38 1.0 0.0 +14 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +16 0.0 1.0 +40 1.0 1.0 +39 1.0 0.0 +15 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +17 0.0 1.0 +41 1.0 1.0 +40 1.0 0.0 +16 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +18 0.0 1.0 +42 1.0 1.0 +41 1.0 0.0 +17 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +19 0.0 1.0 +43 1.0 1.0 +42 1.0 0.0 +18 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +20 0.0 1.0 +44 1.0 1.0 +43 1.0 0.0 +19 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +21 0.0 1.0 +45 1.0 1.0 +44 1.0 0.0 +20 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +22 0.0 1.0 +46 1.0 1.0 +45 1.0 0.0 +21 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +23 0.0 1.0 +47 1.0 1.0 +46 1.0 0.0 +22 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +0 0.0 1.0 +25 1.0 1.0 +47 1.0 0.0 +23 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +24 0.0 1.0 +48 1.0 1.0 +49 1.0 0.0 +25 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +26 0.0 1.0 +50 1.0 1.0 +48 1.0 0.0 +24 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +27 0.0 1.0 +51 1.0 1.0 +50 1.0 0.0 +26 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +28 0.0 1.0 +52 1.0 1.0 +51 1.0 0.0 +27 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +29 0.0 1.0 +53 1.0 1.0 +52 1.0 0.0 +28 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +30 0.0 1.0 +54 1.0 1.0 +53 1.0 0.0 +29 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +31 0.0 1.0 +55 1.0 1.0 +54 1.0 0.0 +30 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +32 0.0 1.0 +56 1.0 1.0 +55 1.0 0.0 +31 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +33 0.0 1.0 +57 1.0 1.0 +56 1.0 0.0 +32 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +34 0.0 1.0 +58 1.0 1.0 +57 1.0 0.0 +33 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +35 0.0 1.0 +59 1.0 1.0 +58 1.0 0.0 +34 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +36 0.0 1.0 +60 1.0 1.0 +59 1.0 0.0 +35 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +37 0.0 1.0 +61 1.0 1.0 +60 1.0 0.0 +36 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +38 0.0 1.0 +62 1.0 1.0 +61 1.0 0.0 +37 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +39 0.0 1.0 +63 1.0 1.0 +62 1.0 0.0 +38 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +40 0.0 1.0 +64 1.0 1.0 +63 1.0 0.0 +39 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +41 0.0 1.0 +65 1.0 1.0 +64 1.0 0.0 +40 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +42 0.0 1.0 +66 1.0 1.0 +65 1.0 0.0 +41 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +43 0.0 1.0 +67 1.0 1.0 +66 1.0 0.0 +42 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +44 0.0 1.0 +68 1.0 1.0 +67 1.0 0.0 +43 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +45 0.0 1.0 +69 1.0 1.0 +68 1.0 0.0 +44 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +46 0.0 1.0 +70 1.0 1.0 +69 1.0 0.0 +45 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +47 0.0 1.0 +71 1.0 1.0 +70 1.0 0.0 +46 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +25 0.0 1.0 +49 1.0 1.0 +71 1.0 0.0 +47 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +48 0.0 1.0 +73 1.0 1.0 +72 1.0 0.0 +49 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +50 0.0 1.0 +74 1.0 1.0 +73 1.0 0.0 +48 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +51 0.0 1.0 +75 1.0 1.0 +74 1.0 0.0 +50 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +52 0.0 1.0 +76 1.0 1.0 +75 1.0 0.0 +51 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +53 0.0 1.0 +77 1.0 1.0 +76 1.0 0.0 +52 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +54 0.0 1.0 +78 1.0 1.0 +77 1.0 0.0 +53 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +55 0.0 1.0 +79 1.0 1.0 +78 1.0 0.0 +54 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +56 0.0 1.0 +80 1.0 1.0 +79 1.0 0.0 +55 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +57 0.0 1.0 +81 1.0 1.0 +80 1.0 0.0 +56 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +58 0.0 1.0 +82 1.0 1.0 +81 1.0 0.0 +57 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +59 0.0 1.0 +83 1.0 1.0 +82 1.0 0.0 +58 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +60 0.0 1.0 +84 1.0 1.0 +83 1.0 0.0 +59 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +61 0.0 1.0 +85 1.0 1.0 +84 1.0 0.0 +60 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +62 0.0 1.0 +86 1.0 1.0 +85 1.0 0.0 +61 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +63 0.0 1.0 +87 1.0 1.0 +86 1.0 0.0 +62 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +64 0.0 1.0 +88 1.0 1.0 +87 1.0 0.0 +63 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +65 0.0 1.0 +89 1.0 1.0 +88 1.0 0.0 +64 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +66 0.0 1.0 +90 1.0 1.0 +89 1.0 0.0 +65 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +67 0.0 1.0 +91 1.0 1.0 +90 1.0 0.0 +66 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +68 0.0 1.0 +92 1.0 1.0 +91 1.0 0.0 +67 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +69 0.0 1.0 +93 1.0 1.0 +92 1.0 0.0 +68 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +70 0.0 1.0 +94 1.0 1.0 +93 1.0 0.0 +69 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +71 0.0 1.0 +95 1.0 1.0 +94 1.0 0.0 +70 0.0 0.0 +SURF 0x10 +mat 1 +refs 4 +49 0.0 1.0 +72 1.0 1.0 +95 1.0 0.0 +71 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +73 0.0 1.0 +97 1.0 1.0 +96 1.0 0.0 +72 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +74 0.0 1.0 +98 1.0 1.0 +97 1.0 0.0 +73 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +75 0.0 1.0 +99 1.0 1.0 +98 1.0 0.0 +74 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +76 0.0 1.0 +100 1.0 1.0 +99 1.0 0.0 +75 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +77 0.0 1.0 +101 1.0 1.0 +100 1.0 0.0 +76 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +78 0.0 1.0 +102 1.0 1.0 +101 1.0 0.0 +77 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +79 0.0 1.0 +103 1.0 1.0 +102 1.0 0.0 +78 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +80 0.0 1.0 +104 1.0 1.0 +103 1.0 0.0 +79 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +81 0.0 1.0 +105 1.0 1.0 +104 1.0 0.0 +80 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +82 0.0 1.0 +106 1.0 1.0 +105 1.0 0.0 +81 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +83 0.0 1.0 +107 1.0 1.0 +106 1.0 0.0 +82 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +84 0.0 1.0 +108 1.0 1.0 +107 1.0 0.0 +83 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +85 0.0 1.0 +109 1.0 1.0 +108 1.0 0.0 +84 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +86 0.0 1.0 +110 1.0 1.0 +109 1.0 0.0 +85 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +87 0.0 1.0 +111 1.0 1.0 +110 1.0 0.0 +86 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +88 0.0 1.0 +112 1.0 1.0 +111 1.0 0.0 +87 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +89 0.0 1.0 +113 1.0 1.0 +112 1.0 0.0 +88 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +90 0.0 1.0 +114 1.0 1.0 +113 1.0 0.0 +89 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +91 0.0 1.0 +115 1.0 1.0 +114 1.0 0.0 +90 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +92 0.0 1.0 +116 1.0 1.0 +115 1.0 0.0 +91 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +93 0.0 1.0 +117 1.0 1.0 +116 1.0 0.0 +92 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +94 0.0 1.0 +118 1.0 1.0 +117 1.0 0.0 +93 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +95 0.0 1.0 +119 1.0 1.0 +118 1.0 0.0 +94 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +72 0.0 1.0 +96 1.0 1.0 +119 1.0 0.0 +95 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +97 0.0 1.0 +120 1.0 1.0 +121 1.0 0.0 +96 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +98 0.0 1.0 +122 1.0 1.0 +120 1.0 0.0 +97 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +99 0.0 1.0 +123 1.0 1.0 +122 1.0 0.0 +98 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +100 0.0 1.0 +124 1.0 1.0 +123 1.0 0.0 +99 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +101 0.0 1.0 +125 1.0 1.0 +124 1.0 0.0 +100 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +102 0.0 1.0 +126 1.0 1.0 +125 1.0 0.0 +101 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +103 0.0 1.0 +127 1.0 1.0 +126 1.0 0.0 +102 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +104 0.0 1.0 +128 1.0 1.0 +127 1.0 0.0 +103 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +105 0.0 1.0 +129 1.0 1.0 +128 1.0 0.0 +104 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +106 0.0 1.0 +130 1.0 1.0 +129 1.0 0.0 +105 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +107 0.0 1.0 +131 1.0 1.0 +130 1.0 0.0 +106 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +108 0.0 1.0 +132 1.0 1.0 +131 1.0 0.0 +107 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +109 0.0 1.0 +133 1.0 1.0 +132 1.0 0.0 +108 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +110 0.0 1.0 +134 1.0 1.0 +133 1.0 0.0 +109 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +111 0.0 1.0 +135 1.0 1.0 +134 1.0 0.0 +110 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +112 0.0 1.0 +136 1.0 1.0 +135 1.0 0.0 +111 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +113 0.0 1.0 +137 1.0 1.0 +136 1.0 0.0 +112 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +114 0.0 1.0 +138 1.0 1.0 +137 1.0 0.0 +113 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +115 0.0 1.0 +139 1.0 1.0 +138 1.0 0.0 +114 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +116 0.0 1.0 +140 1.0 1.0 +139 1.0 0.0 +115 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +117 0.0 1.0 +141 1.0 1.0 +140 1.0 0.0 +116 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +118 0.0 1.0 +142 1.0 1.0 +141 1.0 0.0 +117 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +119 0.0 1.0 +143 1.0 1.0 +142 1.0 0.0 +118 0.0 0.0 +SURF 0x00 +mat 1 +refs 4 +96 0.0 1.0 +121 1.0 1.0 +143 1.0 0.0 +119 0.0 0.0 +kids 0 +OBJECT poly +name "digit.1" +data 10 +Circle.010 +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 4 +0.002246 -0.024482 0.014915 +0.002246 -0.024482 0.022607 +0.002246 -0.010981 0.014915 +0.002246 -0.010981 0.022607 +numsurf 1 +SURF 0x10 +mat 2 +refs 4 +0 0.99681687355 0.209146365523 +2 0.99681687355 0.273775935173 +3 0.959995985031 0.273775935173 +1 0.959995985031 0.209146365523 +kids 0 +OBJECT poly +name "digit.2" +data 10 +Circle.009 +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 4 +0.002246 -0.024482 0.007099 +0.002246 -0.024482 0.014791 +0.002246 -0.010981 0.007099 +0.002246 -0.010981 0.014791 +numsurf 1 +SURF 0x10 +mat 2 +refs 4 +0 0.99681687355 0.209146365523 +2 0.99681687355 0.273775935173 +3 0.959995985031 0.273775935173 +1 0.959995985031 0.209146365523 +kids 0 +OBJECT poly +name "digit.3" +data 10 +Circle.008 +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 4 +0.002246 -0.024482 -0.000716 +0.002246 -0.024482 0.006976 +0.002246 -0.010981 -0.000716 +0.002246 -0.010981 0.006976 +numsurf 1 +SURF 0x10 +mat 2 +refs 4 +0 0.99681687355 0.209146365523 +2 0.99681687355 0.273775935173 +3 0.959995985031 0.273775935173 +1 0.959995985031 0.209146365523 +kids 0 +OBJECT poly +name "digit.4" +data 10 +Circle.007 +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 4 +0.002246 -0.024482 -0.008532 +0.002246 -0.024482 -0.00084 +0.002246 -0.010981 -0.008532 +0.002246 -0.010981 -0.00084 +numsurf 1 +SURF 0x10 +mat 2 +refs 4 +0 0.99681687355 0.209146365523 +2 0.99681687355 0.273775935173 +3 0.959995985031 0.273775935173 +1 0.959995985031 0.209146365523 +kids 0 +OBJECT poly +name "digit.5" +data 10 +Circle.003 +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 4 +0.002246 -0.024482 -0.016293 +0.002246 -0.024482 -0.008601 +0.002246 -0.010981 -0.016293 +0.002246 -0.010981 -0.008601 +numsurf 1 +SURF 0x10 +mat 2 +refs 4 +0 0.99681687355 0.209146365523 +2 0.99681687355 0.273775935173 +3 0.959995985031 0.273775935173 +1 0.959995985031 0.209146365523 +kids 0 +OBJECT poly +name "digit.6" +data 10 +Circle.002 +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 4 +0.002246 -0.024482 -0.016293 +0.002246 -0.010981 -0.016293 +0.002246 -0.010981 -0.024153 +0.002246 -0.024482 -0.024153 +numsurf 1 +SURF 0x10 +mat 2 +refs 4 +1 0.899010241032 0.271515846252 +0 0.899010241032 0.210911661386 +3 0.934293270111 0.210911661386 +2 0.934293270111 0.271515846252 +kids 0 +OBJECT poly +name "face" +data 6 +Circle +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 22 +0.003368 0.037805 -0.037805 +0.003368 0.013838 -0.051642 +0.003368 -0.013838 -0.051642 +0.003368 -0.037805 -0.037805 +0.003368 -0.051642 -0.013838 +0.003368 -0.051642 0.013838 +0.003368 -0.037805 0.037805 +0.003368 -0.013838 0.051642 +0.003368 0.013838 0.051642 +0.003368 0.037805 0.037805 +0.003368 0.051642 0.013838 +0.003368 0.051643 -0.013838 +0.003368 0 0 +0.003368 -0.051642 0 +0.003368 -0.011566 0.023407 +0.003368 -0.011566 -0.023407 +0.003368 -0.023898 0.023407 +0.003368 -0.023898 -0.023407 +0.002246 -0.012299 0.022737 +0.002246 -0.023164 0.022737 +0.002246 -0.023164 -0.022737 +0.002246 -0.012299 -0.022737 +numsurf 23 +SURF 0x00 +mat 2 +refs 3 +1 0.907380640507 0.605141162872 +0 0.782954871655 0.820652246475 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +2 0.907380640507 0.356290012598 +1 0.907380640507 0.605141162872 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +8 -0.0213442426175 0.605141043663 +7 -0.0213442426175 0.356290012598 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +9 0.103080876172 0.820652246475 +8 -0.0213442426175 0.605141043663 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +10 0.318592071533 0.945077776909 +9 0.103080876172 0.820652246475 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +11 0.567443132401 0.945078194141 +10 0.318592071533 0.945077776909 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +0 0.782954871655 0.820652246475 +11 0.567443132401 0.945078194141 +12 0.443018049002 0.480715692043 +SURF 0x00 +mat 2 +refs 3 +12 0.443018049002 0.480715692043 +15 0.653495311737 0.376720160246 +2 0.907380640507 0.356290012598 +SURF 0x00 +mat 2 +refs 3 +15 0.653495311737 0.376720160246 +3 0.782954871655 0.140778973699 +2 0.907380640507 0.356290012598 +SURF 0x00 +mat 2 +refs 3 +6 0.103081226349 0.140778616071 +14 0.232540860772 0.376720160246 +7 -0.0213442426175 0.356290012598 +SURF 0x00 +mat 2 +refs 3 +14 0.232540860772 0.376720160246 +12 0.443018049002 0.480715692043 +7 -0.0213442426175 0.356290012598 +SURF 0x00 +mat 2 +refs 3 +12 0.443018049002 0.480715692043 +14 0.232540860772 0.376720160246 +15 0.653495311737 0.376720160246 +SURF 0x00 +mat 2 +refs 3 +6 0.103081226349 0.140778616071 +16 0.232540860772 0.265828937292 +14 0.232540860772 0.376720160246 +SURF 0x00 +mat 2 +refs 3 +5 0.318592637777 0.0163532979786 +16 0.232540860772 0.265828937292 +6 0.103081226349 0.140778616071 +SURF 0x00 +mat 2 +refs 3 +5 0.318592637777 0.0163532979786 +13 0.443018049002 0.0163532979786 +16 0.232540860772 0.265828937292 +SURF 0x00 +mat 2 +refs 3 +13 0.443018049002 0.0163532979786 +17 0.653495311737 0.265828937292 +16 0.232540860772 0.265828937292 +SURF 0x00 +mat 2 +refs 3 +4 0.567443728447 0.0163532979786 +17 0.653495311737 0.265828937292 +13 0.443018049002 0.0163532979786 +SURF 0x00 +mat 2 +refs 3 +3 0.782954871655 0.140778973699 +17 0.653495311737 0.265828937292 +4 0.567443728447 0.0163532979786 +SURF 0x00 +mat 2 +refs 3 +3 0.782954871655 0.140778973699 +15 0.653495311737 0.376720160246 +17 0.653495311737 0.265828937292 +SURF 0x00 +mat 2 +refs 4 +14 0.232540860772 0.376720160246 +16 0.232540860772 0.265828937292 +19 0.238566219807 0.272429555655 +18 0.238566219807 0.370119601488 +SURF 0x00 +mat 2 +refs 4 +17 0.653495311737 0.265828937292 +15 0.653495311737 0.376720160246 +21 0.647469937801 0.370119601488 +20 0.647469937801 0.272429555655 +SURF 0x00 +mat 2 +refs 4 +15 0.653495311737 0.376720160246 +14 0.232540860772 0.376720160246 +18 0.238566219807 0.370119601488 +21 0.647469937801 0.370119601488 +SURF 0x00 +mat 2 +refs 4 +16 0.232540860772 0.265828937292 +17 0.653495311737 0.265828937292 +20 0.647469937801 0.272429555655 +19 0.238566219807 0.272429555655 +kids 0 +OBJECT poly +name "needle" +data 8 +Cylinder +texture "speedometer.rgb" +texrep 1 1 +crease 30.000000 +numvert 40 +0.002882 0.002122 0.005114 +0.002882 0.004395 0.003368 +0.002882 0.005489 0.000719 +0.002882 0.005113 -0.002122 +0.002882 0.003368 -0.004395 +0.002882 0.000719 -0.005489 +0.002882 -0.002122 -0.005113 +0.002882 -0.004395 -0.003368 +0.002882 -0.005489 -0.000719 +0.002882 -0.005114 0.002122 +0.002882 -0.004398 0.003396 +0.002882 0.000715 0.005511 +0.007221 0.002122 0.005114 +0.007221 0.004395 0.003368 +0.007221 0.005489 0.000719 +0.007221 0.005113 -0.002122 +0.007221 0.003368 -0.004395 +0.007221 0.000719 -0.005489 +0.007221 -0.002122 -0.005113 +0.007221 -0.004395 -0.003368 +0.007221 -0.005489 -0.000719 +0.007221 -0.005114 0.002122 +0.007221 -0.004398 0.003396 +0.007221 0.000715 0.005511 +0.002882 0 0 +0.007221 0 0 +0.00451 -0.004398 0.003396 +0.00451 0.000715 0.005511 +0.004944 -4.4e-05 0.006075 +0.004944 -0.004259 0.004332 +0.006787 -4.4e-05 0.006075 +0.006787 -0.004259 0.004332 +0.006787 -0.012725 0.024809 +0.006787 -0.00851 0.026551 +0.004944 -0.012725 0.024809 +0.004944 -0.00851 0.026551 +0.004944 -0.015869 0.040261 +0.004944 -0.017197 0.039712 +0.006787 -0.015869 0.040261 +0.006787 -0.017197 0.039712 +numsurf 55 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +0 0.596536338329 0.0285219792277 +1 0.577365994453 0.0174538567662 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +13 0.577365994453 0.0174538567662 +12 0.596536338329 0.0285219792277 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +1 0.577365994453 0.0174538567662 +2 0.555229723454 0.0174538567662 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +14 0.555229723454 0.0174538567662 +13 0.577365994453 0.0174538567662 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +2 0.555229723454 0.0174538567662 +3 0.536059260368 0.0285219792277 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +15 0.536059260368 0.0285219792277 +14 0.555229723454 0.0174538567662 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +3 0.536059260368 0.0285219792277 +4 0.524991512299 0.0476922690868 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +16 0.524991512299 0.0476922690868 +15 0.536059260368 0.0285219792277 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +4 0.524991512299 0.0476922690868 +5 0.524991512299 0.0698284134269 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +17 0.524991512299 0.0698284134269 +16 0.524991512299 0.0476922690868 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +5 0.524991512299 0.0698284134269 +6 0.536059260368 0.0889987275004 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +18 0.536059260368 0.0889987275004 +17 0.524991512299 0.0698284134269 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +6 0.536059260368 0.0889987275004 +7 0.555229723454 0.10006685555 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +19 0.555229723454 0.10006685555 +18 0.536059260368 0.0889987275004 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +7 0.555229723454 0.10006685555 +8 0.577365994453 0.100066944957 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +20 0.577365994453 0.100066944957 +19 0.555229723454 0.10006685555 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +8 0.577365994453 0.100066944957 +9 0.596536338329 0.0889990329742 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +21 0.596536338329 0.0889987275004 +20 0.577365994453 0.100066944957 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +9 0.596536338329 0.0889990329742 +10 0.603522717953 0.0801303237677 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +22 0.603522717953 0.0801305100322 +21 0.596536338329 0.0889987275004 +SURF 0x00 +mat 2 +refs 3 +24 0.566297829151 0.0587604939938 +10 0.603522717953 0.0801303237677 +11 0.603522717953 0.0373905822635 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +23 0.603522717953 0.0373906902969 +22 0.603522717953 0.0801305100322 +SURF 0x00 +mat 2 +refs 3 +11 0.603522717953 0.0373905822635 +0 0.596536338329 0.0285219792277 +24 0.566297829151 0.0587604939938 +SURF 0x00 +mat 2 +refs 3 +25 0.566297829151 0.0587604939938 +12 0.596536338329 0.0285219792277 +23 0.603522717953 0.0373906902969 +SURF 0x00 +mat 2 +refs 4 +0 0.596536338329 0.0285219792277 +12 0.596536338329 0.0285219792277 +13 0.577365994453 0.0174538567662 +1 0.577365994453 0.0174538567662 +SURF 0x00 +mat 2 +refs 4 +1 0.577365994453 0.0174538567662 +13 0.577365994453 0.0174538567662 +14 0.555229723454 0.0174538567662 +2 0.555229723454 0.0174538567662 +SURF 0x00 +mat 2 +refs 4 +2 0.555229723454 0.0174538567662 +14 0.555229723454 0.0174538567662 +15 0.536059260368 0.0285219792277 +3 0.536059260368 0.0285219792277 +SURF 0x00 +mat 2 +refs 4 +3 0.536059260368 0.0285219792277 +15 0.536059260368 0.0285219792277 +16 0.524991512299 0.0476922690868 +4 0.524991512299 0.0476922690868 +SURF 0x00 +mat 2 +refs 4 +4 0.524991512299 0.0476922690868 +16 0.524991512299 0.0476922690868 +17 0.524991512299 0.0698284134269 +5 0.524991512299 0.0698284134269 +SURF 0x00 +mat 2 +refs 4 +5 0.524991512299 0.0698284134269 +17 0.524991512299 0.0698284134269 +18 0.536059260368 0.0889987275004 +6 0.536059260368 0.0889987275004 +SURF 0x00 +mat 2 +refs 4 +6 0.536059260368 0.0889987275004 +18 0.536059260368 0.0889987275004 +19 0.555229723454 0.10006685555 +7 0.555229723454 0.10006685555 +SURF 0x00 +mat 2 +refs 4 +7 0.555229723454 0.10006685555 +19 0.555229723454 0.10006685555 +20 0.577365994453 0.100066944957 +8 0.577365994453 0.100066944957 +SURF 0x00 +mat 2 +refs 4 +8 0.577365994453 0.100066944957 +20 0.577365994453 0.100066944957 +21 0.596536338329 0.0889987275004 +9 0.596536338329 0.0889990329742 +SURF 0x00 +mat 2 +refs 3 +26 0.603522717953 0.0801303237677 +9 0.596536338329 0.0889990329742 +21 0.596536338329 0.0889987275004 +SURF 0x00 +mat 2 +refs 3 +22 0.603522717953 0.0801305100322 +26 0.603522717953 0.0801303237677 +21 0.596536338329 0.0889987275004 +SURF 0x00 +mat 2 +refs 3 +26 0.603522717953 0.0801303237677 +10 0.603522717953 0.0801303237677 +9 0.596536338329 0.0889990329742 +SURF 0x00 +mat 2 +refs 3 +10 0.603522717953 0.0801303237677 +26 0.603522717953 0.0801303237677 +11 0.603522717953 0.0373905822635 +SURF 0x00 +mat 2 +refs 3 +12 0.596536338329 0.0285219792277 +0 0.596536338329 0.0285219792277 +27 0.603522717953 0.0373906902969 +SURF 0x00 +mat 2 +refs 3 +27 0.603522717953 0.0373906902969 +0 0.596536338329 0.0285219792277 +11 0.603522717953 0.0373905822635 +SURF 0x00 +mat 2 +refs 3 +27 0.603522717953 0.0373906902969 +23 0.603522717953 0.0373906902969 +12 0.596536338329 0.0285219792277 +SURF 0x00 +mat 2 +refs 3 +27 0.603522717953 0.0373906902969 +11 0.603522717953 0.0373905822635 +26 0.603522717953 0.0801303237677 +SURF 0x00 +mat 2 +refs 4 +27 0.603522717953 0.0373906902969 +26 0.603522717953 0.0801303237677 +29 0.609793245792 0.0763750076294 +28 0.609793245792 0.0411458015442 +SURF 0x00 +mat 2 +refs 4 +23 0.603522717953 0.0373906902969 +27 0.603522717953 0.0373906902969 +28 0.609793245792 0.0411458015442 +30 0.609793245792 0.0411458015442 +SURF 0x00 +mat 2 +refs 4 +26 0.603522717953 0.0801303237677 +22 0.603522717953 0.0801305100322 +31 0.609793245792 0.0763750076294 +29 0.609793245792 0.0763750076294 +SURF 0x00 +mat 2 +refs 4 +22 0.603522717953 0.0801305100322 +23 0.603522717953 0.0373906902969 +30 0.609793245792 0.0411458015442 +31 0.609793245792 0.0763750076294 +SURF 0x00 +mat 2 +refs 4 +31 0.609793245792 0.0763750076294 +30 0.609793245792 0.0411458015442 +33 0.780941128731 0.0411458015442 +32 0.780941128731 0.0763750076294 +SURF 0x00 +mat 2 +refs 4 +29 0.609793245792 0.0763750076294 +31 0.609793245792 0.0763750076294 +32 0.780941128731 0.0763750076294 +34 0.780941128731 0.0763750076294 +SURF 0x00 +mat 2 +refs 4 +30 0.609793245792 0.0411458015442 +28 0.609793245792 0.0411458015442 +35 0.780941128731 0.0411458015442 +33 0.780941128731 0.0411458015442 +SURF 0x00 +mat 2 +refs 4 +28 0.609793245792 0.0411458015442 +29 0.609793245792 0.0763750076294 +34 0.780941128731 0.0763750076294 +35 0.780941128731 0.0411458015442 +SURF 0x00 +mat 2 +refs 4 +35 0.780941128731 0.0411458015442 +34 0.780941128731 0.0763750076294 +37 0.900523364544 0.0643083974719 +36 0.900523364544 0.0532127097249 +SURF 0x00 +mat 2 +refs 4 +33 0.780941128731 0.0411458015442 +35 0.780941128731 0.0411458015442 +36 0.900523364544 0.0532127097249 +38 0.900523364544 0.0532127097249 +SURF 0x00 +mat 2 +refs 4 +34 0.780941128731 0.0763750076294 +32 0.780941128731 0.0763750076294 +39 0.900523364544 0.0643083974719 +37 0.900523364544 0.0643083974719 +SURF 0x00 +mat 2 +refs 4 +32 0.780941128731 0.0763750076294 +33 0.780941128731 0.0411458015442 +38 0.900523364544 0.0532127097249 +39 0.900523364544 0.0643083974719 +SURF 0x00 +mat 2 +refs 3 +37 0.900523364544 0.0643083974719 +39 0.900523364544 0.0643083974719 +38 0.900523364544 0.0532127097249 +SURF 0x00 +mat 2 +refs 3 +38 0.900523364544 0.0532127097249 +36 0.900523364544 0.0532127097249 +37 0.900523364544 0.0643083974719 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/speedometer.rgb b/resources/flightgear/Aircraft/jeep/Models/speedometer.rgb new file mode 100755 index 0000000000000000000000000000000000000000..cf5b7cef2a959f59985314e9c315fdb9df03ae29 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/Models/speedometer.rgb differ diff --git a/resources/flightgear/Aircraft/jeep/Models/speedometer.xml b/resources/flightgear/Aircraft/jeep/Models/speedometer.xml new file mode 100755 index 0000000000000000000000000000000000000000..a2ff31150b8d64a5a0487870ff8f608bb1ffc9a6 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/speedometer.xml @@ -0,0 +1,29 @@ + + + + + + + + + + speedometer.ac + + rotate + needle + velocities/groundspeed-kt + -4.23 +
+ 0.0 + 0.0 + 0.0 +
+ + 1.0 + 0.0 + 0.0 + +
+ + +
diff --git a/resources/flightgear/Aircraft/jeep/Models/transparent.ac b/resources/flightgear/Aircraft/jeep/Models/transparent.ac new file mode 100755 index 0000000000000000000000000000000000000000..bd8c24118168fddf1f7092f1671a9ee64006edbe --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/transparent.ac @@ -0,0 +1,35 @@ +AC3Db +MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 +MATERIAL "glass" rgb 0.1 0.1 0.1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0.601077 +OBJECT world +kids 1 +OBJECT poly +name "noshadow.screenglass" +data 8 +Cube.008 +crease 30.000000 +numvert 8 +1.546748 1.634888 -0.02227 +1.546748 1.634888 0.022271 +1.444319 1.324749 0.022271 +1.444319 1.324749 -0.02227 +1.546748 1.634888 -0.620687 +1.546748 1.634889 0.620687 +1.444319 1.324749 0.620687 +1.444319 1.324749 -0.620687 +numsurf 2 +SURF 0x00 +mat 1 +refs 4 +1 0.0 1.0 +2 0.0 0.0 +6 1.0 0.0 +5 1.0 1.0 +SURF 0x00 +mat 1 +refs 4 +0 0.0 1.0 +4 1.0 1.0 +7 1.0 0.0 +3 0.0 0.0 +kids 0 diff --git a/resources/flightgear/Aircraft/jeep/Models/transparent.xml b/resources/flightgear/Aircraft/jeep/Models/transparent.xml new file mode 100755 index 0000000000000000000000000000000000000000..565b57c5885a3eb4cc173f826527203a190ed020 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Models/transparent.xml @@ -0,0 +1,29 @@ + + + + + + + + + + transparent.ac + + rotate + noshadow.screenglass + controls/gear//screen + -108 +
+ 1.167 + 0.0 + 0.992 +
+ + 0.0 + 1.0 + 0.0 + +
+ + +
diff --git a/resources/flightgear/Aircraft/jeep/Nasal/failure.nas b/resources/flightgear/Aircraft/jeep/Nasal/failure.nas new file mode 100755 index 0000000000000000000000000000000000000000..6055e061542353f3d07a45dd02583482390a43f6 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Nasal/failure.nas @@ -0,0 +1,10 @@ +var nofuel = props.globals.getNode("engines/engine[0]/out-of-fuel",1 ); + + +var kill_engine = func { + nofuel.setValue(1); + nofuel.setAttribute("writable", 0); +# interpolate ("/engines/engine[0]/fuel-press", 0, 1); +# interpolate ("/engines/engine[0]/mp-osi", 0, 1.5); + +} diff --git a/resources/flightgear/Aircraft/jeep/Nasal/jeep.nas b/resources/flightgear/Aircraft/jeep/Nasal/jeep.nas new file mode 100755 index 0000000000000000000000000000000000000000..58d3d53bf0e08ae01c3e340bc99561f1ba010df5 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Nasal/jeep.nas @@ -0,0 +1 @@ +aircraft.livery.init("Aircraft/jeep/Models/Liveries", "sim/model/livery/name"); diff --git a/resources/flightgear/Aircraft/jeep/Nasal/walk.nas b/resources/flightgear/Aircraft/jeep/Nasal/walk.nas new file mode 100755 index 0000000000000000000000000000000000000000..6c46ab082684105bb6392f99fb8da1f0d0fce86e --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/Nasal/walk.nas @@ -0,0 +1,101 @@ +var sin = func(a) { math.sin(a * math.pi / 180.0) } +var cos = func(a) { math.cos(a * math.pi / 180.0) } +var posx= 0; +var posy= 0; +var posz= 0; + + setlistener("sim/walker/walking", func { + walk(); + }); + +var main_loop = func { + if (getprop ("sim/walker/outside") == 0) { + setprop ("sim/walker/latitude-deg" , (getprop ("position/latitude-deg"))); + setprop ("sim/walker/longitude-deg" , (getprop ("position/longitude-deg"))); + setprop ("sim/walker/altitude-ft" , (getprop ("position/altitude-ft"))); + setprop ("sim/walker/roll-deg" , (getprop ("orientation/roll-deg"))); + setprop ("sim/walker/pitch-deg" , (getprop ("orientation/pitch-deg"))); + setprop ("sim/walker/heading-deg" , (getprop ("orientation/heading-deg"))); + } + settimer(main_loop, 0.008) +} +var walk = func { + + + if (getprop ("sim/current-view/view-number") == view.indexof("Walk View")) { + if (getprop ("devices/status/mice/mouse/mode") == 2){ + + + if (getprop ("sim/walker/outside") == 1) { + ext_mov(); + } else { + int_mov(); + } + } + } +} + +var ext_mov = func { + speed = getprop ("sim/walker/speed"); + head = getprop ("sim/current-view/heading-offset-deg"); + posy = getprop ("sim/walker/latitude-deg"); + posx = getprop ("sim/walker/longitude-deg"); + posz1 = getprop ("sim/walker/altitude-ft"); + posx1 = posx - speed*sin(head); + if (posy < 0 ) { + # southern hemisphere + posy1 = posy + (speed+0.000001*sin(posy))*cos(head); +# print ("south"); + } else { + # northern hemisphere +# print ("north"); + posy1 = posy + (speed-0.000001*sin(posy))*cos(head); + } +# print (head," ",speed," ",speed+0.0000001*sin(posy)); +# print (cos(head)," ",sin(head)); +# print (posy," ",speed+0.000001*sin(posy)); + posz2 = geo.elevation (posy1,posx1); + + if ((posz2 * 3.28084) < (posz1+10)) { + interpolate ("sim/walker/latitude-deg", posy1,0.25,0.3); +# print (posy); + interpolate ("sim/walker/longitude-deg", posx1,0.25,0.3); +# print (posx); + +# print (posz1," ", posz2 * 3.28084); + if ((posz1+0.4) > (posz2 * 3.28084) or (posz1-0.4) < posz2 * 3.28084) { + interpolate ("sim/walker/altitude-ft", posz2 * 3.28084 ,0.25,0.3); + } + } +if (getprop ("sim/walker/walking") == 1) { + settimer(ext_mov, 0.25); + } +} +var get_out = func { + if (getprop ("sim/current-view/view-number") == view.indexof("Walk View")) { + posx = getprop ("position/longitude-deg"); + posy = getprop ("sim/walker/latitude-deg"); + head = getprop ("orientation/heading-deg"); + posy1 = posy + (0.000001*sin(posy))*sin(head); + + setprop ("sim/walker/heading-deg", 0); + setprop ("sim/walker/outside", 1); + setprop ("sim/current-view/x-offset-m", 0); + setprop ("sim/current-view/y-offset-m", 1.87); + setprop ("sim/current-view/z-offset-m", 0); + setprop ("sim/current-view/roll-offset-deg", 0); + } +} + +var get_in = func { + if (getprop ("sim/current-view/view-number") == view.indexof("Walk View")) { + setprop ("sim/walker/outside", 0); + setprop ("sim/current-view/x-offset-m", 0.35); + setprop ("sim/current-view/y-offset-m", 1.5); + setprop ("sim/current-view/z-offset-m", 2.295); + setprop ("sim/current-view/roll-offset-deg", 0); + } +} +var int_mov = func { +print ("Not yet implemented"); +} diff --git a/resources/flightgear/Aircraft/jeep/README b/resources/flightgear/Aircraft/jeep/README new file mode 100755 index 0000000000000000000000000000000000000000..61ea6b1ec1abe6fdbd504a3b2dfbd065c1c75728 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/README @@ -0,0 +1,15 @@ +A Willys Jeep for Flightgear + +by Detlef Faber +don@sol2500.net + +This model is released under the terms of the GPLv2 + +Steer the car with aileron control. "," is Brake and "." is Accelerator. + +If you have rudder pedals with Toebrakes, the left pedal is Brake and +the right is Accelerator. + +The Jeep also had a hand throttle, so you can use normal throttle control too. + +M (Shift-m) engages Reverse, m disengages reverse. \ No newline at end of file diff --git a/resources/flightgear/Aircraft/jeep/gpa-set.xml b/resources/flightgear/Aircraft/jeep/gpa-set.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2c7a72e297d9633cae7afe7200154630cb00633 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/gpa-set.xml @@ -0,0 +1,239 @@ + + + + + + + + GPA amphibious Jeep + Detlef Faber + alpha + yasim + gpa-yasim + + + true + true + + + Aircraft/Generic/generic-sound.xml + + + + Aircraft/jeep/Models/GPA.xml + + + 1 + + + + + false + false + 0.000006 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + -14.0 + + true + + -0.35 + 1.5 + 2.295 + -15.0 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + Walk View + lookfrom + + sim/walker/latitude-deg + sim/walker/longitude-deg + sim/walker/altitude-ft + sim/walker/heading-deg + sim/walker/roll-deg + sim/walker/pitch-deg + + + 10.0 + 55.0 + + 0.35 + 1.5 + 2.295 + + + + + + + false + + + + + , + Brakes + + + . + Accelerator + + + o + Walker gets outside + + + o + Walker gets back in + + + w + Walk forward while in Walk View + + + + + + + true + + + + property-toggle + /controls/gear/screen + + + + + + property-toggle + /controls/gear/shield + + + + + + + + + + 700 + + + + + + 3 + + + + false + false + + + + + + M + engage Reverse + + property-assign + controls/engines/engine[0]/mixture + 0.0 + + + + m + disengage Reverse + + property-assign + controls/engines/engine[0]/mixture + 1.0 + + + + o + get Walker out + + nasal + + + + + O + get Walker in + + nasal + + + + + w + walk forward + + property-toggle + /sim/walker/walking + + + + property-toggle + /sim/walker/walking + + + + + + + + Aircraft/jeep/Nasal/walk.nas + + + + + + + + diff --git a/resources/flightgear/Aircraft/jeep/gpa-yasim.xml b/resources/flightgear/Aircraft/jeep/gpa-yasim.xml new file mode 100644 index 0000000000000000000000000000000000000000..922db30eb7ea66eab0a60d878c79735f760d4c60 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/gpa-yasim.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/flightgear/Aircraft/jeep/jeep-set.xml b/resources/flightgear/Aircraft/jeep/jeep-set.xml new file mode 100755 index 0000000000000000000000000000000000000000..4ab66f15edae4d6654e239a1a36fcca9297b51f1 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/jeep-set.xml @@ -0,0 +1,269 @@ + + + + +true +0 +5 + + + + Willys Jeep + Detlef Faber + alpha + yasim + jeep-yasim + + + true + true + + + Aircraft/Generic/generic-sound.xml + + + + Aircraft/jeep/Models/Jeep.xml + + + 1 + + + + + + + + + + + false + false + 0.000006 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + -14.0 + + true + + -0.35 + 1.5 + 2.295 + -15.0 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + + 1.6 + + + + + Walk View + lookfrom + + sim/walker/latitude-deg + sim/walker/longitude-deg + sim/walker/altitude-ft + sim/walker/heading-deg + sim/walker/roll-deg + sim/walker/pitch-deg + + + 10.0 + 55.0 + + 0.35 + 1.5 + 2.295 + + + + + + + false + + + + + , + Brakes + + + . + Accelerator + + + o + Walker gets outside + + + o + Walker gets back in + + + w + Walk forward while in Walk View + + + + + + + true + + + + property-toggle + /controls/gear/screen + + + + + + property-toggle + /controls/gear/roof + + + + + + nasal + + + + + + + + + 0 + 0 + 0 + + + + + + + 700 + + + + + + 3 + + + + false + false + + + + + + M + engage Reverse + + property-assign + controls/engines/engine[0]/mixture + 0.0 + + + + + m + disengage Reverse + + property-assign + controls/engines/engine[0]/mixture + 1.0 + + + + o + get Walker out + + nasal + + + + + O + get Walker in + + nasal + + + + + w + walk forward + + property-toggle + /sim/walker/walking + + + + property-toggle + /sim/walker/walking + + + + + + + + Aircraft/jeep/Nasal/jeep.nas + + + Aircraft/jeep/Nasal/walk.nas + + + + Aircraft/jeep/Nasal/failure.nas + + + + + + + diff --git a/resources/flightgear/Aircraft/jeep/jeep-yasim.xml b/resources/flightgear/Aircraft/jeep/jeep-yasim.xml new file mode 100755 index 0000000000000000000000000000000000000000..2923e6840a7c4314a057bf5c587812762541d461 --- /dev/null +++ b/resources/flightgear/Aircraft/jeep/jeep-yasim.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/flightgear/Aircraft/jeep/thumbnail.jpg b/resources/flightgear/Aircraft/jeep/thumbnail.jpg new file mode 100755 index 0000000000000000000000000000000000000000..819724a16e9e87587a47857988fde99730ea14c1 Binary files /dev/null and b/resources/flightgear/Aircraft/jeep/thumbnail.jpg differ diff --git a/resources/flightgear/Protocol/qgroundcontrol-fixed-wing.xml b/resources/flightgear/Protocol/qgroundcontrol-fixed-wing.xml new file mode 100644 index 0000000000000000000000000000000000000000..5ecb9966bc1e3283c91b3c1d961ba1a57dda120c --- /dev/null +++ b/resources/flightgear/Protocol/qgroundcontrol-fixed-wing.xml @@ -0,0 +1,231 @@ + + + + + + + newline + tab + + + time (sec) + float + %.4f + /sim/time/elapsed-sec + + + + + latitude-deg + double + %.18f + /position/latitude-deg + + + + longitude-deg + double + %.18f + /position/longitude-deg + + + + altitiude (m) + double + %.5f + /position/altitude-ft + 0.3048 + + + + + + roll angle + float + %.5f + /orientation/roll-deg + 0.01745329251994329576 + + + + pitch angle (rad) + float + %.5f + /orientation/pitch-deg + 0.01745329251994329576 + + + + yaw angle + float + %.5f + /orientation/heading-deg + 0.01745329251994329576 + + + + roll rate ("p" rad/sec) + float + %.6f + /fdm/jsbsim/velocities/pi-rad_sec + + + + pitch rate ("q" rad/sec) + float + %.6f + /fdm/jsbsim/velocities/qi-rad_sec + + + + yaw rate ("r" rad/sec) + float + %.6f + /fdm/jsbsim/velocities/ri-rad_sec + + + + X accel (body axis) (mps) + float + %.5f + /accelerations/pilot/x-accel-fps_sec + 0.3048 + + + + Y accel (body axis) (mps) + float + %.5f + /accelerations/pilot/y-accel-fps_sec + 0.3048 + + + + Z accel (body axis) (mps) + float + %.5f + /accelerations/pilot/z-accel-fps_sec + 0.3048 + + + + + + Velocity North ("vn" mps) + float + %.8f + /velocities/speed-north-fps + 0.3048 + + + + Velocity East ("ve" mps) + float + %.8f + /velocities/speed-east-fps + 0.3048 + + + + Velocity Down ("vd" mps) + float + %.8f + /velocities/speed-down-fps + 0.3048 + + + + airspeed-mps + float + %.8f + /velocities/airspeed-kt + 0.514444444444444 + + + + + Magnetic Variation (rad) + float + %.8f + /environment/magnetic-variation-deg + 0.01745329251994329576 + + + + Magnetic Dip (rad) + float + %.8f + /environment/magnetic-dip-deg + 0.01745329251994329576 + + + + + Temperature (deg C) + float + %.8f + /environment/temperature-degc + 1 + + + + + Pressure (hPa) + float + %.8f + /environment/pressure-inhg + 33.86389 + + + + + Altitude AGL (m) + float + %.5f + /position/altitude-agl-ft + 0.3048 + + + + + + newline + tab + + + + aileron + float + /controls/flight/aileron + + + + elevator + float + /controls/flight/elevator + + + + rudder + float + /controls/flight/rudder + + + + running + bool + /engines/engine/running + + + + throttle + float + /controls/engines/engine/throttle + + + + + + + + diff --git a/resources/flightgear/Protocol/qgroundcontrol-quadrotor.xml b/resources/flightgear/Protocol/qgroundcontrol-quadrotor.xml new file mode 100644 index 0000000000000000000000000000000000000000..ddd2809a950799258e5bee8ac700f27a2017d7ae --- /dev/null +++ b/resources/flightgear/Protocol/qgroundcontrol-quadrotor.xml @@ -0,0 +1,228 @@ + + + + + + + newline + tab + + + time (sec) + float + %.4f + /sim/time/elapsed-sec + + + + + latitude-deg + double + %.18f + /position/latitude-deg + + + + longitude-deg + double + %.18f + /position/longitude-deg + + + + altitiude (m) + double + %.5f + /position/altitude-ft + 0.3048 + + + + + + roll angle + float + %.5f + /orientation/roll-deg + 0.01745329251994329576 + + + + pitch angle (rad) + float + %.5f + /orientation/pitch-deg + 0.01745329251994329576 + + + + yaw angle + float + %.5f + /orientation/heading-deg + 0.01745329251994329576 + + + + roll rate ("p" rad/sec) + float + %.6f + /fdm/jsbsim/velocities/pi-rad_sec + + + + pitch rate ("q" rad/sec) + float + %.6f + /fdm/jsbsim/velocities/qi-rad_sec + + + + yaw rate ("r" rad/sec) + float + %.6f + /fdm/jsbsim/velocities/ri-rad_sec + + + + X accel (body axis) (mps) + float + %.5f + /accelerations/pilot/x-accel-fps_sec + 0.3048 + + + + Y accel (body axis) (mps) + float + %.5f + /accelerations/pilot/y-accel-fps_sec + 0.3048 + + + + Z accel (body axis) (mps) + float + %.5f + /accelerations/pilot/z-accel-fps_sec + 0.3048 + + + + + + Velocity North ("vn" mps) + float + %.8f + /velocities/speed-north-fps + 0.3048 + + + + Velocity East ("ve" mps) + float + %.8f + /velocities/speed-east-fps + 0.3048 + + + + Velocity Down ("vd" mps) + float + %.8f + /velocities/speed-down-fps + 0.3048 + + + + airspeed-mps + float + %.8f + /velocities/airspeed-kt + 0.514444444444444 + + + + + Magnetic Variation (rad) + float + %.8f + /environment/magnetic-variation-deg + 0.01745329251994329576 + + + + Magnetic Dip (rad) + float + %.8f + /environment/magnetic-dip-deg + 0.01745329251994329576 + + + + + Temperature (deg C) + float + %.8f + /environment/temperature-degc + 1 + + + + + Pressure (hPa) + float + %.8f + /environment/pressure-inhg + 33.86389 + + + + + Altitude AGL (m) + float + %.5f + /position/altitude-agl-ft + 0.3048 + + + + + + newline + tab + + + + + throttle0 + float + /controls/engines/engine[0]/throttle + + + throttle1 + float + /controls/engines/engine[1]/throttle + + + throttle2 + float + /controls/engines/engine[2]/throttle + + + running + bool + /engines/engine/running + + + throttle3 + float + /controls/engines/engine[3]/throttle + + + + + + + + diff --git a/resources/flightgear/Protocol/quadhil.xml b/resources/flightgear/Protocol/quadhil.xml new file mode 100755 index 0000000000000000000000000000000000000000..a666b6e1a5d511dd0383f9fce5907114bc99b8a7 --- /dev/null +++ b/resources/flightgear/Protocol/quadhil.xml @@ -0,0 +1,120 @@ + + + + + + + + + true + + + + + throttle0 + double + /controls/engines/engine[0]/throttle + + + throttle1 + double + /controls/engines/engine[1]/throttle + + + throttle2 + double + /controls/engines/engine[2]/throttle + + + throttle3 + double + /controls/engines/engine[3]/throttle + + + + + latitude-deg + double + /position/latitude-deg + + + + longitude-deg + double + /position/longitude-deg + + + + altitude-ft + double + /position/altitude-ft + + + + altitude-agl-ft + double + /position/altitude-agl-ft + + + + + roll-deg + double + /orientation/roll-deg + + + + pitch-deg + double + /orientation/pitch-deg + + + + heading-deg + double + /orientation/heading-deg + + + + + + + true + magic,0xc465414e + + + + ground-elev-m + double + /position/ground-elev-m + + + + + latitude-deg + double + /position/latitude-deg + + + + longitude-deg + double + /position/longitude-deg + + + + heading-deg + double + /orientation/heading-deg + + + + + + + diff --git a/files/images/icons/macx.icns b/resources/icons/macx.icns similarity index 100% rename from files/images/icons/macx.icns rename to resources/icons/macx.icns diff --git a/files/images/icons/macx_128x128x32.png b/resources/icons/macx_128x128x32.png similarity index 100% rename from files/images/icons/macx_128x128x32.png rename to resources/icons/macx_128x128x32.png diff --git a/files/images/icons/macx_16x16x1.png b/resources/icons/macx_16x16x1.png similarity index 100% rename from files/images/icons/macx_16x16x1.png rename to resources/icons/macx_16x16x1.png diff --git a/files/images/icons/macx_16x16x32.png b/resources/icons/macx_16x16x32.png similarity index 100% rename from files/images/icons/macx_16x16x32.png rename to resources/icons/macx_16x16x32.png diff --git a/files/images/icons/macx_32x32x1.png b/resources/icons/macx_32x32x1.png similarity index 100% rename from files/images/icons/macx_32x32x1.png rename to resources/icons/macx_32x32x1.png diff --git a/files/images/icons/macx_32x32x32.png b/resources/icons/macx_32x32x32.png similarity index 100% rename from files/images/icons/macx_32x32x32.png rename to resources/icons/macx_32x32x32.png diff --git a/files/images/icons/macx_48x48x1.png b/resources/icons/macx_48x48x1.png similarity index 100% rename from files/images/icons/macx_48x48x1.png rename to resources/icons/macx_48x48x1.png diff --git a/files/images/icons/macx_48x48x32.png b/resources/icons/macx_48x48x32.png similarity index 100% rename from files/images/icons/macx_48x48x32.png rename to resources/icons/macx_48x48x32.png diff --git a/files/images/icons/qgroundcontrol.ico b/resources/icons/qgroundcontrol.ico similarity index 100% rename from files/images/icons/qgroundcontrol.ico rename to resources/icons/qgroundcontrol.ico diff --git a/resources/icons/qgroundcontrol.png b/resources/icons/qgroundcontrol.png new file mode 100644 index 0000000000000000000000000000000000000000..0cc381c8d040aa2f1442c2140c241563405d9841 Binary files /dev/null and b/resources/icons/qgroundcontrol.png differ diff --git a/files/images/mapproviders/google.png b/resources/mapproviders/google.png similarity index 100% rename from files/images/mapproviders/google.png rename to resources/mapproviders/google.png diff --git a/files/images/mapproviders/googleearth.svg b/resources/mapproviders/googleearth.svg similarity index 100% rename from files/images/mapproviders/googleearth.svg rename to resources/mapproviders/googleearth.svg diff --git a/files/images/mapproviders/openstreetmap.png b/resources/mapproviders/openstreetmap.png similarity index 100% rename from files/images/mapproviders/openstreetmap.png rename to resources/mapproviders/openstreetmap.png diff --git a/files/images/mapproviders/yahoo.png b/resources/mapproviders/yahoo.png similarity index 100% rename from files/images/mapproviders/yahoo.png rename to resources/mapproviders/yahoo.png diff --git a/files/images/mavs/airship.svg b/resources/mavs/airship.svg similarity index 100% rename from files/images/mavs/airship.svg rename to resources/mavs/airship.svg diff --git a/files/images/mavs/antenna-tracker.svg b/resources/mavs/antenna-tracker.svg similarity index 100% rename from files/images/mavs/antenna-tracker.svg rename to resources/mavs/antenna-tracker.svg diff --git a/files/images/mavs/coaxial.svg b/resources/mavs/coaxial.svg similarity index 100% rename from files/images/mavs/coaxial.svg rename to resources/mavs/coaxial.svg diff --git a/files/images/mavs/fixed-wing.svg b/resources/mavs/fixed-wing.svg similarity index 100% rename from files/images/mavs/fixed-wing.svg rename to resources/mavs/fixed-wing.svg diff --git a/files/images/mavs/flapping-wing.svg b/resources/mavs/flapping-wing.svg similarity index 100% rename from files/images/mavs/flapping-wing.svg rename to resources/mavs/flapping-wing.svg diff --git a/files/images/mavs/free-balloon.svg b/resources/mavs/free-balloon.svg similarity index 100% rename from files/images/mavs/free-balloon.svg rename to resources/mavs/free-balloon.svg diff --git a/files/images/mavs/generic.svg b/resources/mavs/generic.svg similarity index 100% rename from files/images/mavs/generic.svg rename to resources/mavs/generic.svg diff --git a/files/images/mavs/ground-rover.svg b/resources/mavs/ground-rover.svg similarity index 100% rename from files/images/mavs/ground-rover.svg rename to resources/mavs/ground-rover.svg diff --git a/files/images/mavs/groundstation.svg b/resources/mavs/groundstation.svg similarity index 100% rename from files/images/mavs/groundstation.svg rename to resources/mavs/groundstation.svg diff --git a/files/images/mavs/helicopter.svg b/resources/mavs/helicopter.svg similarity index 100% rename from files/images/mavs/helicopter.svg rename to resources/mavs/helicopter.svg diff --git a/files/images/mavs/hexarotor.svg b/resources/mavs/hexarotor.svg similarity index 100% rename from files/images/mavs/hexarotor.svg rename to resources/mavs/hexarotor.svg diff --git a/files/images/mavs/kite.svg b/resources/mavs/kite.svg similarity index 100% rename from files/images/mavs/kite.svg rename to resources/mavs/kite.svg diff --git a/files/images/mavs/octorotor.svg b/resources/mavs/octorotor.svg similarity index 100% rename from files/images/mavs/octorotor.svg rename to resources/mavs/octorotor.svg diff --git a/files/images/mavs/quadrotor.svg b/resources/mavs/quadrotor.svg similarity index 100% rename from files/images/mavs/quadrotor.svg rename to resources/mavs/quadrotor.svg diff --git a/files/images/mavs/rocket.svg b/resources/mavs/rocket.svg similarity index 100% rename from files/images/mavs/rocket.svg rename to resources/mavs/rocket.svg diff --git a/files/images/mavs/submarine.svg b/resources/mavs/submarine.svg similarity index 100% rename from files/images/mavs/submarine.svg rename to resources/mavs/submarine.svg diff --git a/files/images/mavs/surface-boat.svg b/resources/mavs/surface-boat.svg similarity index 100% rename from files/images/mavs/surface-boat.svg rename to resources/mavs/surface-boat.svg diff --git a/files/images/mavs/tricopter.svg b/resources/mavs/tricopter.svg similarity index 100% rename from files/images/mavs/tricopter.svg rename to resources/mavs/tricopter.svg diff --git a/files/images/mavs/unknown.svg b/resources/mavs/unknown.svg similarity index 100% rename from files/images/mavs/unknown.svg rename to resources/mavs/unknown.svg diff --git a/files/styles/Vera.ttf b/resources/styles/Vera.ttf similarity index 100% rename from files/styles/Vera.ttf rename to resources/styles/Vera.ttf diff --git a/files/styles/style-dark.css b/resources/styles/style-dark.css similarity index 82% rename from files/styles/style-dark.css rename to resources/styles/style-dark.css index ad246f437140269aef8cd3f7564a8dc6f43e1e82..ae439e8a87b052056efcd11328949d856be477b9 100644 --- a/files/styles/style-dark.css +++ b/resources/styles/style-dark.css @@ -7,7 +7,7 @@ * { background-color: #222; color: #FFF; - font-size: 11px; + font-size: 12pt; } QWidget#viewModeWidget { @@ -105,138 +105,6 @@ QGCMAVLinkLogPlayer QLabel:disabled { color: #AAA; } -QGCToolBar { - border-top-color: #969696; - border-bottom-color: #484848; - background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4B4B4B, stop: 0.3 #404040, stop: 0.34 #383838, stop:1 #181818); - padding: 0; - margin: 0; -} - -QGCToolBar QLabel { - font-size: 12pt; - font-weight: bold; - margin: 4px 2px; - padding: 0 2px; - border-radius: 4px; -} - -QGCToolBar QLabel#toolBarBatteryBar { - color: #0F0; -} - -QGCToolBar QLabel#toolBarTimeoutLabel { - color: #FFFFFF; - background-color: #FF0037; - font-size: 15pt; -} - -QGCToolBar QLabel#toolBarSafetyLabel { - /* color is for this label defined within the code */ - font-size: 15pt; -} - -QGCToolBar QLabel#toolBarModeLabel { - color: #ACEBFE; - font-size: 15pt; -} - -QGCToolBar QLabel#toolBarStateLabel { - color: #FEC654; - font-size: 15pt; -} - -QGCToolBar QLabel#toolBarBatteryVoltageLabel { - color: #0F0; - font-size: 15pt; -} - -QGCToolBar QLabel#toolBarWpLabel { - color: #ACEBFE; - font-size: 15pt; -} - -QGCToolBar QLabel#toolBarMessageLabel { - color: #ACEBFE; -} - -QGCToolBar QProgressBar { - margin: 4px 2px; -} - -QGCToolBar QToolButton { - margin: 0; - padding: 0 2px; - border: none; - border-top: 1px solid #333; - border-bottom: 1px solid #333; - border-radius: 0; - height: 24px; - min-width: 30px; - margin-bottom: 4px; - text-align: left; - font-weight: bold; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #AAA, stop: 1 #BBB); - color: #000; -} - -QGCToolBar QToolButton:checked, QGCToolBar QToolButton:pressed, QGCToolBar QToolButton:checked:hover { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #555, stop: 1 #777); - color: #FFF; -} - -QGCToolBar QToolButton:hover { - color: #FFF; -} - -QGCToolBar QToolButton#advancedButton { - margin-left: 0; - margin-right: 13px; - padding-right: 10px; - border-radius: 0; - border-bottom-right-radius: 6px; - border-top-right-radius: 6px; - border-left: none; -} - -QGCToolBar QToolButton#firstAction { - margin-left: 2px; - border-bottom-left-radius: 6px; - border-top-left-radius: 6px; - border-right: none; -} - -QGCToolBar .QWidget { - margin: 0; - background-color: transparent; -} - -QGCPX4SensorCalibration QLabel#magLabel { - font-size: 15pt; - font-weight: bold; - border-radius: 4px; - min-height: 25px; -} - -QGCPX4SensorCalibration QLabel#gyroLabel { - font-size: 15pt; - font-weight: bold; - border-radius: 4px; - min-height: 25px; -} - -QGCPX4SensorCalibration QLabel#accelLabel { - font-size: 15pt; - font-weight: bold; - border-radius: 4px; - min-height: 25px; -} - -QGCPX4VehicleConfig QLabel#rcLabel { - color: #FEC654; - font-size: 18pt; -} - QGCToolWidgetItem { border: 1px solid #666; border-radius: 3px; @@ -284,19 +152,11 @@ QLabel#noUas { font-size: 30pt; } -QMessageBox QLabel { - font-size: 14pt; -} - QMessageBox { min-width: 400px; min-height: 300px; } -QLabel#calibrationExplanationLabel { - font-size: 20pt; -} - QLabel#tabTitleLabel { font-size: 28pt; font-weight: lighter; @@ -595,7 +455,7 @@ QSpinBox, QDoubleSpinBox { } QSpinBox::down-arrow, QDoubleSpinBox::down-arrow { - image: url(:/files/images/actions/go-down.svg); + image: url(:/res/DownArrow); width: 16px; } @@ -604,7 +464,7 @@ QSpinBox::down-button, QDoubleSpinBox::down-button { } QSpinBox::up-arrow, QDoubleSpinBox::up-arrow { - image: url(:/files/images/actions/go-up.svg); + image: url(:/res/UpArrow); width: 16px; } diff --git a/files/styles/style-light.css b/resources/styles/style-light.css similarity index 88% rename from files/styles/style-light.css rename to resources/styles/style-light.css index 8e80798864fa112618cc04b3772fa3863419aa6e..9e4e1dbf9771dde394593c74b06eb63f089dfa59 100644 --- a/files/styles/style-light.css +++ b/resources/styles/style-light.css @@ -88,61 +88,6 @@ QGCMAVLinkLogPlayer QLabel:disabled { color: #666; } -QGCToolBar { - border-top-color: #969696; - border-bottom-color: #484848; - background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #DDD, stop: 1 #999); -} - -QGCToolBar QLabel#toolBarBatteryBar { - color: #008000; -} - -QGCToolBar QLabel#toolBarTimeoutLabel { - color: #FFFFFF; - background-color: #FF0037; -} - -QGCToolBar QLabel#toolBarModeLabel { - color: #475E66; -} - -QGCToolBar QLabel#toolBarStateLabel { - color: #80632A; -} - -QGCToolBar QLabel#toolBarBatteryVoltageLabel { - color: #008000; -} - -QGCToolBar QLabel#toolBarWpLabel { - color: #475E66; -} - -QGCToolBar QLabel#toolBarMessageLabel { - color: #475E66; -} - -QGCToolBar QToolButton { - border-top: #DDD; - border-bottom: #DDD; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #333, stop: 1 #444); - color: #FFF; -} - -QGCToolBar QToolButton:checked, QGCToolBar QToolButton:pressed, QGCToolBar QToolButton:checked:hover { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #777, stop: 1 #999); - color: #FFF; -} - -QGCToolBar QToolButton:hover { - color: #000; -} - -QGCToolBar .QWidget { - background-color: transparent; -} - QGCToolWidgetItem { border-color: #666; } diff --git a/src/AutoPilotPlugins/AutoPilotPlugin.cc b/src/AutoPilotPlugins/AutoPilotPlugin.cc index 4e73549701bcdbd4d6d62d8bbecd15896b8139b8..932b430d9c0793cf25186f70e55d0eacf93fc84c 100644 --- a/src/AutoPilotPlugins/AutoPilotPlugin.cc +++ b/src/AutoPilotPlugins/AutoPilotPlugin.cc @@ -25,50 +25,145 @@ /// @author Don Gagne #include "AutoPilotPlugin.h" +#include "SetupView.h" +#include "QGCApplication.h" +#include "QGCMessageBox.h" +#include "MainWindow.h" +#include "ParameterLoader.h" AutoPilotPlugin::AutoPilotPlugin(UASInterface* uas, QObject* parent) : QObject(parent), - _uas(uas) + _uas(uas), + _pluginReady(false), + _setupComplete(false) { Q_ASSERT(_uas); + + connect(_uas, &UASInterface::disconnected, this, &AutoPilotPlugin::_uasDisconnected); + connect(this, &AutoPilotPlugin::pluginReadyChanged, this, &AutoPilotPlugin::_pluginReadyChanged); +} + +void AutoPilotPlugin::_uasDisconnected(void) +{ + _pluginReady = false; + emit pluginReadyChanged(_pluginReady); +} + +void AutoPilotPlugin::_pluginReadyChanged(bool pluginReady) +{ + if (pluginReady) { + _recalcSetupComplete(); + if (!_setupComplete) { + QGCMessageBox::warning("Setup", "One or more vehicle components require setup prior to flight."); + + // Take the user to Vehicle Summary + MainWindow* mainWindow = MainWindow::instance(); + Q_ASSERT(mainWindow); + mainWindow->getMainToolBar()->onSetupView(); + qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + QWidget* setupViewWidget = mainWindow->getCurrentViewWidget(); + Q_ASSERT(setupViewWidget); + SetupView* setupView = qobject_cast(setupViewWidget); + Q_ASSERT(setupView); + setupView->summaryButtonClicked(); + qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + } + } +} + +void AutoPilotPlugin::_recalcSetupComplete(void) +{ + bool newSetupComplete = true; + + foreach(const QVariant componentVariant, vehicleComponents()) { + VehicleComponent* component = qobject_cast(qvariant_cast(componentVariant)); + Q_ASSERT(component); + + if (!component->setupComplete()) { + newSetupComplete = false; + break; + } + } + + if (_setupComplete != newSetupComplete) { + _setupComplete = newSetupComplete; + emit setupCompleteChanged(_setupComplete); + } +} + +bool AutoPilotPlugin::setupComplete(void) +{ + Q_ASSERT(_pluginReady); + return _setupComplete; } void AutoPilotPlugin::refreshAllParameters(void) { - Q_ASSERT(_uas); - QGCUASParamManagerInterface* paramMgr = _uas->getParamManager(); - Q_ASSERT(paramMgr); - paramMgr->requestParameterList(); + _getParameterLoader()->refreshAllParameters(); } -void AutoPilotPlugin::refreshParameter(const QString& param) +void AutoPilotPlugin::refreshParameter(int componentId, const QString& name) { - Q_ASSERT(_uas); - QGCUASParamManagerInterface* paramMgr = _uas->getParamManager(); - Q_ASSERT(paramMgr); + _getParameterLoader()->refreshParameter(componentId, name); +} + +void AutoPilotPlugin::refreshParametersPrefix(int componentId, const QString& namePrefix) +{ + _getParameterLoader()->refreshParametersPrefix(componentId, namePrefix); +} + +bool AutoPilotPlugin::parameterExists(const QString& name) +{ + return _getParameterLoader()->parameterExists(FactSystem::defaultComponentId, name); +} + +Fact* AutoPilotPlugin::getParameterFact(const QString& name) +{ + return _getParameterLoader()->getFact(FactSystem::defaultComponentId, name); +} + +bool AutoPilotPlugin::factExists(FactSystem::Provider_t provider, int componentId, const QString& name) +{ + switch (provider) { + case FactSystem::ParameterProvider: + return _getParameterLoader()->parameterExists(componentId, name); + + // Other providers will go here once they come online + } - QList compIdList = paramMgr->getComponentForParam(param); - Q_ASSERT(compIdList.count() > 0); - paramMgr->requestParameterUpdate(compIdList[0], param); + Q_ASSERT(false); + return false; } -void AutoPilotPlugin::refreshParametersPrefix(const QString& paramPrefix) +Fact* AutoPilotPlugin::getFact(FactSystem::Provider_t provider, int componentId, const QString& name) { - foreach(QVariant varFact, parameters()) { - Fact* fact = qvariant_cast(varFact); - Q_ASSERT(fact); - if (fact->name().startsWith(paramPrefix)) { - refreshParameter(fact->name()); - } + switch (provider) { + case FactSystem::ParameterProvider: + return _getParameterLoader()->getFact(componentId, name); + + // Other providers will go here once they come online } + + Q_ASSERT(false); + return NULL; +} + +QStringList AutoPilotPlugin::parameterNames(void) +{ + return _getParameterLoader()->parameterNames(); +} + +const QMap >& AutoPilotPlugin::getGroupMap(void) +{ + return _getParameterLoader()->getGroupMap(); } -bool AutoPilotPlugin::factExists(const QString& param) +void AutoPilotPlugin::writeParametersToStream(QTextStream &stream) { - return parameters().contains(param); + _getParameterLoader()->writeParametersToStream(stream, _uas->getUASName()); } -Fact* AutoPilotPlugin::getFact(const QString& name) +void AutoPilotPlugin::readParametersFromStream(QTextStream &stream) { - return parameters()[name].value(); + _getParameterLoader()->readParametersFromStream(stream); } diff --git a/src/AutoPilotPlugins/AutoPilotPlugin.h b/src/AutoPilotPlugins/AutoPilotPlugin.h index 01842495cb512308fe314cbd3b15b2fea8244323..4f635afb96528d743f2736de63686d8c7d0e282a 100644 --- a/src/AutoPilotPlugins/AutoPilotPlugin.h +++ b/src/AutoPilotPlugins/AutoPilotPlugin.h @@ -36,6 +36,8 @@ #include "VehicleComponent.h" #include "FactSystem.h" +class ParameterLoader; + /// This is the base class for AutoPilot plugins /// /// The AutoPilotPlugin class is an abstract base class which represent the methods and objects @@ -50,44 +52,89 @@ class AutoPilotPlugin : public QObject public: AutoPilotPlugin(UASInterface* uas, QObject* parent); - Q_PROPERTY(QVariantList components READ components CONSTANT) - Q_PROPERTY(QUrl setupBackgroundImage READ setupBackgroundImage CONSTANT) - + /// true: plugin is ready for use, plugin should no longer be used + Q_PROPERTY(bool pluginReady READ pluginReady NOTIFY pluginReadyChanged) + + /// List of VehicleComponent objects + Q_PROPERTY(QVariantList vehicleComponents READ vehicleComponents CONSTANT) + + /// false: One or more vehicle components require setup + Q_PROPERTY(bool setupComplete READ setupComplete NOTIFY setupCompleteChanged) + /// Re-request the full set of parameters from the autopilot - Q_INVOKABLE void refreshAllParameters(void); + Q_INVOKABLE void refreshAllParameters(void); /// Request a refresh on the specific parameter - Q_INVOKABLE void refreshParameter(const QString& param); + Q_INVOKABLE void refreshParameter(int componentId, const QString& name); - // Request a refresh on all parameters that begin with the specified prefix - Q_INVOKABLE void refreshParametersPrefix(const QString& paramPrefix); + /// Request a refresh on all parameters that begin with the specified prefix + Q_INVOKABLE void refreshParametersPrefix(int componentId, const QString& namePrefix); - Q_INVOKABLE bool factExists(const QString& param); + /// Returns true if the specifed parameter exists from the default component + Q_INVOKABLE bool parameterExists(const QString& name); + + /// Returns all parameter names + /// FIXME: component id missing, generic to fact + QStringList parameterNames(void); + + /// Returns the specified parameter Fact from the default component + /// WARNING: Will assert if fact does not exists. If that possibility exists, check for existince first with + /// factExists. + Fact* getParameterFact(const QString& name); + + /// Writes the parameter facts to the specified stream + void writeParametersToStream(QTextStream &stream); + + /// Reads the parameters from the stream and updates values + void readParametersFromStream(QTextStream &stream); + + /// Returns true if the specifed fact exists + Q_INVOKABLE bool factExists(FactSystem::Provider_t provider, ///< fact provider + int componentId, ///< fact component, -1=default component + const QString& name); ///< fact name - Fact* getFact(const QString& name); - - // Property accessors - virtual const QVariantList& components(void) = 0; - virtual const QVariantMap& parameters(void) = 0; - virtual QUrl setupBackgroundImage(void) = 0; + /// Returns the specified Fact. + /// WARNING: Will assert if fact does not exists. If that possibility exists, check for existince first with + /// factExists. + Fact* getFact(FactSystem::Provider_t provider, ///< fact provider + int componentId, ///< fact component, -1=default component + const QString& name); ///< fact name - /// Returns true if the plugin is ready for use - virtual bool pluginIsReady(void) const = 0; + const QMap >& getGroupMap(void); + + // Must be implemented by derived class + virtual const QVariantList& vehicleComponents(void) = 0; - /// FIXME: Kind of hacky static void clearStaticData(void); - + + // Property accessors + bool pluginReady(void) { return _pluginReady; } + bool setupComplete(void); + UASInterface* uas(void) { return _uas; } signals: - /// Signalled when plugin is ready for use - void pluginReady(void); - + void pluginReadyChanged(bool pluginReady); + void setupCompleteChanged(bool setupComplete); + void parameterListProgress(float value); + protected: /// All access to AutoPilotPugin objects is through getInstanceForAutoPilotPlugin AutoPilotPlugin(QObject* parent = NULL) : QObject(parent) { } - UASInterface* _uas; + /// Returns the ParameterLoader + virtual ParameterLoader* _getParameterLoader(void) = 0; + + UASInterface* _uas; + bool _pluginReady; + bool _setupComplete; + +private slots: + void _uasDisconnected(void); + void _pluginReadyChanged(bool pluginReady); + +private: + void _recalcSetupComplete(void); }; #endif diff --git a/src/AutoPilotPlugins/AutoPilotPluginManager.cc b/src/AutoPilotPlugins/AutoPilotPluginManager.cc index 097198218d7ba6feaff553a04757aefc9ada1651..624f0073806fc060cdaa7450ed550654f6ce2b7d 100644 --- a/src/AutoPilotPlugins/AutoPilotPluginManager.cc +++ b/src/AutoPilotPlugins/AutoPilotPluginManager.cc @@ -93,10 +93,10 @@ void AutoPilotPluginManager::_uasDeleted(UASInterface* uas) int uasId = uas->getUASID(); Q_ASSERT(uasId != 0); - Q_ASSERT(_pluginMap.contains(autopilotType)); - Q_ASSERT(_pluginMap[autopilotType].contains(uasId)); - delete _pluginMap[autopilotType][uasId]; - _pluginMap[autopilotType].remove(uasId); + if (_pluginMap.contains(autopilotType) && _pluginMap[autopilotType].contains(uasId)) { + delete _pluginMap[autopilotType][uasId]; + _pluginMap[autopilotType].remove(uasId); + } } AutoPilotPlugin* AutoPilotPluginManager::getInstanceForAutoPilotPlugin(UASInterface* uas) diff --git a/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc b/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc index bdd97ef10c27188f1edb18ba81cda7998b89f831..f2ddfac47d791dfdd2bfa41789ddd7dfc87c0446 100644 --- a/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc +++ b/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.cc @@ -31,11 +31,11 @@ GenericAutoPilotPlugin::GenericAutoPilotPlugin(UASInterface* uas, QObject* paren { Q_ASSERT(uas); - _parameterFacts = new GenericParameterFacts(uas, this); + _parameterFacts = new GenericParameterFacts(this, uas, this); Q_CHECK_PTR(_parameterFacts); - connect(_parameterFacts, &GenericParameterFacts::factsReady, this, &GenericAutoPilotPlugin::pluginReady); - + connect(_parameterFacts, &GenericParameterFacts::parametersReady, this, &GenericAutoPilotPlugin::_parametersReady); + connect(_parameterFacts, &GenericParameterFacts::parameterListProgress, this, &GenericAutoPilotPlugin::parameterListProgress); } QList GenericAutoPilotPlugin::getModes(void) @@ -88,19 +88,15 @@ void GenericAutoPilotPlugin::clearStaticData(void) // No Static data yet } -const QVariantList& GenericAutoPilotPlugin::components(void) +const QVariantList& GenericAutoPilotPlugin::vehicleComponents(void) { static QVariantList emptyList; return emptyList; } -const QVariantMap& GenericAutoPilotPlugin::parameters(void) -{ - return _parameterFacts->factMap(); -} - -QUrl GenericAutoPilotPlugin::setupBackgroundImage(void) +void GenericAutoPilotPlugin::_parametersReady(void) { - return QUrl::fromUserInput("qrc:/qml/px4fmu_2.x.png"); + _pluginReady = true; + emit pluginReadyChanged(_pluginReady); } diff --git a/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h b/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h index 5a2262b1e6ba90a72a97b912410c8a147dfc801c..87f37de0880c17be7fdee1c3c3edb8edd481655d 100644 --- a/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h +++ b/src/AutoPilotPlugins/Generic/GenericAutoPilotPlugin.h @@ -41,16 +41,19 @@ public: GenericAutoPilotPlugin(UASInterface* uas, QObject* parent = NULL); // Overrides from AutoPilotPlugin - virtual bool pluginIsReady(void) const { return _parameterFacts->factsAreReady(); } - virtual QUrl setupBackgroundImage(void); - virtual const QVariantList& components(void); - virtual const QVariantMap& parameters(void); + virtual const QVariantList& vehicleComponents(void); static QList getModes(void); static QString getShortModeText(uint8_t baseMode, uint32_t customMode); static void clearStaticData(void); +private slots: + void _parametersReady(void); + private: + // Overrides from AutoPilotPlugin + virtual ParameterLoader* _getParameterLoader(void) { return _parameterFacts; } + GenericParameterFacts* _parameterFacts; }; diff --git a/src/AutoPilotPlugins/Generic/GenericParameterFacts.cc b/src/AutoPilotPlugins/Generic/GenericParameterFacts.cc index c37d05dc5fec7d71b7511e5f16188d9a32c77268..fb1e1d18a0b633b41f18ade6c58515dc2e0bc440 100644 --- a/src/AutoPilotPlugins/Generic/GenericParameterFacts.cc +++ b/src/AutoPilotPlugins/Generic/GenericParameterFacts.cc @@ -25,13 +25,11 @@ /// @author Don Gagne #include "GenericParameterFacts.h" -#include "QGCApplication.h" -#include #include -GenericParameterFacts::GenericParameterFacts(UASInterface* uas, QObject* parent) : - FactLoader(uas, parent) +GenericParameterFacts::GenericParameterFacts(AutoPilotPlugin* autopilot, UASInterface* uas, QObject* parent) : + ParameterLoader(autopilot, uas, parent) { Q_ASSERT(uas); } diff --git a/src/AutoPilotPlugins/Generic/GenericParameterFacts.h b/src/AutoPilotPlugins/Generic/GenericParameterFacts.h index ae363b432494de6efc8492949cacd7485173fc87..dd5d10ed8b86468936a6d4dde180c0f9e95b373d 100644 --- a/src/AutoPilotPlugins/Generic/GenericParameterFacts.h +++ b/src/AutoPilotPlugins/Generic/GenericParameterFacts.h @@ -25,25 +25,26 @@ #define GenericParameterFacts_h #include -#include -#include -#include -#include "FactSystem.h" +#include "ParameterLoader.h" #include "UASInterface.h" +#include "AutoPilotPlugin.h" /// @file /// @author Don Gagne /// Collection of Parameter Facts for Generic AutoPilot -class GenericParameterFacts : public FactLoader +class GenericParameterFacts : public ParameterLoader { Q_OBJECT public: /// @param uas Uas which this set of facts is associated with - GenericParameterFacts(UASInterface* uas, QObject* parent = NULL); + GenericParameterFacts(AutoPilotPlugin* autopilot, UASInterface* uas, QObject* parent = NULL); + + /// Override from ParameterLoader + virtual QString getDefaultComponentIdParam(void) const { return QString(); } }; #endif \ No newline at end of file diff --git a/src/AutoPilotPlugins/PX4/AirframeComponent.cc b/src/AutoPilotPlugins/PX4/AirframeComponent.cc index 04b757afc7cb4a97e0459b27d826f1c9a616d0b6..e9e4cd7db6dc503bae186d8f5663f02be3ebd705 100644 --- a/src/AutoPilotPlugins/PX4/AirframeComponent.cc +++ b/src/AutoPilotPlugins/PX4/AirframeComponent.cc @@ -25,7 +25,7 @@ /// @author Don Gagne #include "AirframeComponent.h" -#include "QGCPX4AirframeConfig.h" +#include "QGCQmlWidgetHolder.h" #if 0 // Broken by latest mavlink module changes. Not used yet. Comment out for now. @@ -142,13 +142,7 @@ bool AirframeComponent::requiresSetup(void) const bool AirframeComponent::setupComplete(void) const { - QVariant value; - if (_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), "SYS_AUTOSTART", value)) { - return value.toInt() != 0; - } else { - Q_ASSERT(false); - return false; - } + return _autopilot->getParameterFact("SYS_AUTOSTART")->value().toInt() != 0; } QString AirframeComponent::setupStateDescription(void) const @@ -179,7 +173,14 @@ QStringList AirframeComponent::paramFilterList(void) const QWidget* AirframeComponent::setupWidget(void) const { - return new QGCPX4AirframeConfig; + QGCQmlWidgetHolder* holder = new QGCQmlWidgetHolder(); + Q_CHECK_PTR(holder); + + holder->setAutoPilot(_autopilot); + + holder->setSource(QUrl::fromUserInput("qrc:/qml/AirframeComponent.qml")); + + return holder; } QUrl AirframeComponent::summaryQmlSource(void) const diff --git a/src/AutoPilotPlugins/PX4/AirframeComponent.qml b/src/AutoPilotPlugins/PX4/AirframeComponent.qml new file mode 100644 index 0000000000000000000000000000000000000000..96ea119466f74195ae5d092b7d9416558b562b0e --- /dev/null +++ b/src/AutoPilotPlugins/PX4/AirframeComponent.qml @@ -0,0 +1,155 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 + +import QGroundControl.FactSystem 1.0 +import QGroundControl.FactControls 1.0 +import QGroundControl.Palette 1.0 +import QGroundControl.Controls 1.0 +import QGroundControl.Controllers 1.0 + +Rectangle { + AirframeComponentController { id: controller } + QGCPalette { id: qgcPal; colorGroupEnabled: true } + + color: qgcPal.window + + Column { + anchors.fill: parent + + QGCLabel { + text: "AIRFRAME CONFIG" + font.pointSize: 20 + } + + Item { height: 20; width: 10 } // spacer + + Row { + width: parent.width + + QGCLabel { + width: parent.width - applyButton.width + text: "Select you airframe type and specific vehicle bellow. Click 'Apply and Restart' when ready and your vehicle will be disconnected, rebooted to the new settings and re-connected." + wrapMode: Text.WordWrap + } + + QGCButton { + id: applyButton + text: "Apply and Restart" + onClicked: { controller.changeAutostart() } + } + } + + Item { height: 20; width: 10 } // spacer + + Flow { + width: parent.width + spacing: 10 + + ExclusiveGroup { + id: airframeTypeExclusive + } + + Repeater { + model: controller.airframeTypes + + // Outer summary item rectangle + Rectangle { + readonly property real titleHeight: 30 + readonly property real innerMargin: 10 + + width: 250 + height: 200 + color: qgcPal.windowShade + + Rectangle { + id: title + width: parent.width + height: parent.titleHeight + color: qgcPal.windowShadeDark + + Text { + anchors.fill: parent + + color: qgcPal.buttonText + font.pixelSize: 12 + text: modelData.name + + verticalAlignment: TextEdit.AlignVCenter + horizontalAlignment: TextEdit.AlignHCenter + } + } + + Image { + id: image + x: innerMargin + width: parent.width - (innerMargin * 2) + height: parent.height - title.height - combo.height - (innerMargin * 3) + anchors.topMargin: innerMargin + anchors.top: title.bottom + + source: modelData.imageResource + fillMode: Image.PreserveAspectFit + smooth: true + + } + + QGCCheckBox { + id: airframeCheckBox + anchors.bottom: image.bottom + anchors.right: image.right + checked: modelData.name == controller.currentAirframeType + exclusiveGroup: airframeTypeExclusive + + onCheckedChanged: { + if (checked && combo.currentIndex != -1) { + controller.autostartId = modelData.airframes[combo.currentIndex].autostartId + } + } + } + + QGCComboBox { + id: combo + objectName: modelData.airframeType + "ComboBox" + x: innerMargin + anchors.topMargin: innerMargin + anchors.top: image.bottom + width: parent.width - (innerMargin * 2) + model: modelData.airframes + currentIndex: (modelData.name == controller.currentAirframeType) ? controller.currentVehicleIndex : 0 + + onCurrentIndexChanged: { + if (airframeCheckBox.checked) { + controller.autostartId = modelData.airframes[currentIndex].autostartId + } + } + } + } + } + } + + } +} diff --git a/src/AutoPilotPlugins/PX4/AirframeComponentAirframes.cc b/src/AutoPilotPlugins/PX4/AirframeComponentAirframes.cc new file mode 100644 index 0000000000000000000000000000000000000000..46cf2368bf6ca7611ad25cc4627737959ee2d47b --- /dev/null +++ b/src/AutoPilotPlugins/PX4/AirframeComponentAirframes.cc @@ -0,0 +1,110 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#include "AirframeComponentAirframes.h" + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoStandardPlane[] = { + { "Multiplex Easystar 1/2", 2100 }, + { "Hobbyking Bixler 1/2", 2101 }, + { "3DR Skywalker", 2102 }, + { "Skyhunter (1800 mm)", 2103 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoSimulation[] = { + { "Plane (HilStar, X-Plane)", 1000 }, + { "Plane (Rascal, FlightGear)", 1004 }, + { "Quad X HIL", 1001 }, + { "Quad + HIL", 1003 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoFlyingWing[] = { + { "Z-84 Wing Wing (845 mm)", 3033 }, + { "TBS Caipirinha (850 mm)", 3100 }, + { "Bormatec Camflyer Q (800 mm)", 3030 }, + { "FX-61 Phantom FPV (1550 mm)", 3031 }, + { "FX-79 Buffalo (2000 mm)", 3034 }, + { "Skywalker X5 (1180 mm)", 3032 }, + { "Viper v2 (3000 mm)", 3035 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoQuadRotorX[] = { + { "DJI F330 8\" Quad", 4010 }, + { "DJI F450 10\" Quad", 4011 }, + { "X frame Quad UAVCAN", 4012 }, + { "AR.Drone Frame Quad", 4008 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoQuadRotorPlus[] = { + { "Generic 10\" Quad +", 5001 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoHexaRotorX[] = { + { "Standard 10\" Hexa X", 6001 }, + { "Coaxial 10\" Hexa X", 11001 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoHexaRotorPlus[] = { + { "Standard 10\" Hexa", 7001 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoOctoRotorX[] = { + { "Standard 10\" Octo", 8001 }, + { "Coaxial 10\" Octo", 12001 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoOctoRotorPlus[] = { + { "Standard 10\" Octo", 9001 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeInfo_t AirframeComponentAirframes::_rgAirframeInfoQuadRotorH[] = { + { "3DR Iris", 10016 }, + { "TBS Discovery", 10015 }, + { "SteadiDrone QU4D", 10017 }, + { NULL, 0 } +}; + +const AirframeComponentAirframes::AirframeType_t AirframeComponentAirframes::rgAirframeTypes[] = { + { "Standard Airplane", "qrc:/qml/AirframeStandardPlane.png", AirframeComponentAirframes::_rgAirframeInfoStandardPlane }, + { "Flying Wing", "qrc:/qml/AirframeFlyingWing.png", AirframeComponentAirframes::_rgAirframeInfoFlyingWing }, + { "QuadRotor X", "qrc:/qml/AirframeQuadRotorX.png", AirframeComponentAirframes::_rgAirframeInfoQuadRotorX }, + { "QuadRotor +", "qrc:/qml/AirframeQuadRotorPlus.png", AirframeComponentAirframes::_rgAirframeInfoQuadRotorPlus }, + { "HexaRotor X", "qrc:/qml/AirframeHexaRotorX.png", AirframeComponentAirframes::_rgAirframeInfoHexaRotorX }, + { "HexaRotor +", "qrc:/qml/AirframeHexaRotorPlus.png", AirframeComponentAirframes::_rgAirframeInfoHexaRotorPlus }, + { "OctoRotor X", "qrc:/qml/AirframeOctoRotorX.png", AirframeComponentAirframes::_rgAirframeInfoOctoRotorX }, + { "OctoRotor +", "qrc:/qml/AirframeOctoRotorPlus.png", AirframeComponentAirframes::_rgAirframeInfoOctoRotorPlus }, + { "QuadRotor H", "qrc:/qml/AirframeQuadRotorH.png", AirframeComponentAirframes::_rgAirframeInfoQuadRotorH }, + { "Simulation", "qrc:/qml/AirframeSimulation.png", AirframeComponentAirframes::_rgAirframeInfoSimulation }, + { NULL, NULL, NULL } +}; diff --git a/src/AutoPilotPlugins/PX4/AirframeComponentAirframes.h b/src/AutoPilotPlugins/PX4/AirframeComponentAirframes.h new file mode 100644 index 0000000000000000000000000000000000000000..8c20e90b1ef11d9530fd4a2c823b866954ac1b56 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/AirframeComponentAirframes.h @@ -0,0 +1,68 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#ifndef AIRFRAMECOMPONENTAIRFRAMES_H +#define AIRFRAMECOMPONENTAIRFRAMES_H + +#include +#include +#include + +#include "UASInterface.h" +#include "AutoPilotPlugin.h" + +/// MVC Controller for AirframeComponent.qml. +class AirframeComponentAirframes +{ +public: + typedef struct { + const char* name; + int autostartId; + } AirframeInfo_t; + + typedef struct { + const char* name; + const char* imageResource; + const AirframeInfo_t* rgAirframeInfo; + } AirframeType_t; + +public: + static const AirframeType_t rgAirframeTypes[]; + +private: + static const AirframeInfo_t _rgAirframeInfoStandardPlane[]; + static const AirframeInfo_t _rgAirframeInfoFlyingWing[]; + static const AirframeInfo_t _rgAirframeInfoQuadRotorX[]; + static const AirframeInfo_t _rgAirframeInfoQuadRotorPlus[]; + static const AirframeInfo_t _rgAirframeInfoOctoRotorX[]; + static const AirframeInfo_t _rgAirframeInfoOctoRotorPlus[]; + static const AirframeInfo_t _rgAirframeInfoHexaRotorX[]; + static const AirframeInfo_t _rgAirframeInfoHexaRotorPlus[]; + static const AirframeInfo_t _rgAirframeInfoQuadRotorH[]; + static const AirframeInfo_t _rgAirframeInfoSimulation[]; +}; + +#endif diff --git a/src/AutoPilotPlugins/PX4/AirframeComponentController.cc b/src/AutoPilotPlugins/PX4/AirframeComponentController.cc new file mode 100644 index 0000000000000000000000000000000000000000..6e367f175a4c5ade2c3ee906876584c6c15e98a7 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/AirframeComponentController.cc @@ -0,0 +1,156 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#include "AirframeComponentController.h" +#include "AirframeComponentAirframes.h" +#include "QGCMAVLink.h" +#include "UASManager.h" +#include "AutoPilotPluginManager.h" +#include "QGCApplication.h" +#include "QGCMessageBox.h" + +#include +#include + +bool AirframeComponentController::_typesRegistered = false; + +AirframeComponentController::AirframeComponentController(QObject* parent) : + QObject(parent), + _uas(NULL), + _autoPilotPlugin(NULL), + _currentVehicleIndex(0), + _autostartId(0) +{ + _uas = UASManager::instance()->getActiveUAS(); + Q_ASSERT(_uas); + + _autoPilotPlugin = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uas); + Q_ASSERT(_autoPilotPlugin); + Q_ASSERT(_autoPilotPlugin->pluginReady()); + + if (!_typesRegistered) { + _typesRegistered = true; + qmlRegisterUncreatableType("QGroundControl.Controllers", 1, 0, "AiframeType", "Can only reference AirframeType"); + qmlRegisterUncreatableType("QGroundControl.Controllers", 1, 0, "Aiframe", "Can only reference Airframe"); + } + + // Load up member variables + + bool autostartFound = false; + _autostartId = _autoPilotPlugin->getParameterFact("SYS_AUTOSTART")->value().toInt(); + + for (const AirframeComponentAirframes::AirframeType_t* pType=&AirframeComponentAirframes::rgAirframeTypes[0]; pType->name != NULL; pType++) { + AirframeType* airframeType = new AirframeType(pType->name, pType->imageResource, this); + Q_CHECK_PTR(airframeType); + + int index = 0; + for (const AirframeComponentAirframes::AirframeInfo_t* pInfo=&pType->rgAirframeInfo[0]; pInfo->name != NULL; pInfo++) { + if (_autostartId == pInfo->autostartId) { + Q_ASSERT(!autostartFound); + autostartFound = true; + _currentAirframeType = pType->name; + _currentVehicleName = pInfo->name; + _currentVehicleIndex = index; + } + airframeType->addAirframe(pInfo->name, pInfo->autostartId); + index++; + } + + _airframeTypes.append(QVariant::fromValue(airframeType)); + } + + if (_autostartId != 0) { + // FIXME: Should be a user error + Q_UNUSED(autostartFound); + Q_ASSERT(autostartFound); + } +} + +AirframeComponentController::~AirframeComponentController() +{ + +} + +void AirframeComponentController::changeAutostart(void) +{ + if (UASManager::instance()->getUASList().count() > 1) { + QGCMessageBox::warning("Airframe Config", "You cannot change airframe configuration while connected to multiple vehicles."); + return; + } + + _autoPilotPlugin->getParameterFact("SYS_AUTOSTART")->setValue(_autostartId); + _autoPilotPlugin->getParameterFact("SYS_AUTOCONFIG")->setValue(1); + + qgcApp()->setOverrideCursor(Qt::WaitCursor); + + // Wait for the parameters to flow through system + qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + QGC::SLEEP::sleep(1); + qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + + // Reboot board and reconnect + + _uas->executeCommand(MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN, 1, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); + qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + QGC::SLEEP::sleep(1); + qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + + qgcApp()->reconnectAfterWait(5); +} + +AirframeType::AirframeType(const QString& name, const QString& imageResource, QObject* parent) : + QObject(parent), + _name(name), + _imageResource(imageResource) +{ + +} + +AirframeType::~AirframeType() +{ + +} + +void AirframeType::addAirframe(const QString& name, int autostartId) +{ + Airframe* airframe = new Airframe(name, autostartId); + Q_CHECK_PTR(airframe); + + _airframes.append(QVariant::fromValue(airframe)); +} + +Airframe::Airframe(const QString& name, int autostartId, QObject* parent) : + QObject(parent), + _name(name), + _autostartId(autostartId) +{ + +} + +Airframe::~Airframe() +{ + +} diff --git a/src/AutoPilotPlugins/PX4/AirframeComponentController.h b/src/AutoPilotPlugins/PX4/AirframeComponentController.h new file mode 100644 index 0000000000000000000000000000000000000000..25ac266a348e1100d4e1418583140a1c2ebe657b --- /dev/null +++ b/src/AutoPilotPlugins/PX4/AirframeComponentController.h @@ -0,0 +1,110 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#ifndef AIRFRAMECOMPONENTCONTROLLER_H +#define AIRFRAMECOMPONENTCONTROLLER_H + +#include +#include +#include + +#include "UASInterface.h" +#include "AutoPilotPlugin.h" + +/// MVC Controller for AirframeComponent.qml. +class AirframeComponentController : public QObject +{ + Q_OBJECT + +public: + AirframeComponentController(QObject* parent = NULL); + ~AirframeComponentController(); + + Q_PROPERTY(QVariantList airframeTypes MEMBER _airframeTypes CONSTANT) + + Q_PROPERTY(QString currentAirframeType MEMBER _currentAirframeType CONSTANT) + Q_PROPERTY(QString currentVehicleName MEMBER _currentVehicleName CONSTANT) + Q_PROPERTY(int currentVehicleIndex MEMBER _currentVehicleIndex CONSTANT) + + Q_PROPERTY(int autostartId MEMBER _autostartId NOTIFY autostartIdChanged) + + Q_INVOKABLE void changeAutostart(void); + + int currentAirframeIndex(void); + void setCurrentAirframeIndex(int newIndex); + +signals: + void autostartIdChanged(int newAutostartId); + +private: + static bool _typesRegistered; + + UASInterface* _uas; + AutoPilotPlugin* _autoPilotPlugin; + QVariantList _airframeTypes; + QString _currentAirframeType; + QString _currentVehicleName; + int _currentVehicleIndex; + int _autostartId; +}; + +class Airframe : public QObject +{ + Q_OBJECT + +public: + Airframe(const QString& name, int autostartId, QObject* parent = NULL); + ~Airframe(); + + Q_PROPERTY(QString text MEMBER _name CONSTANT) + Q_PROPERTY(int autostartId MEMBER _autostartId CONSTANT) + +private: + QString _name; + int _autostartId; +}; + +class AirframeType : public QObject +{ + Q_OBJECT + +public: + AirframeType(const QString& name, const QString& imageResource, QObject* parent = NULL); + ~AirframeType(); + + Q_PROPERTY(QString name MEMBER _name CONSTANT) + Q_PROPERTY(QString imageResource MEMBER _imageResource CONSTANT) + Q_PROPERTY(QVariantList airframes MEMBER _airframes CONSTANT) + + void addAirframe(const QString& name, int autostartId); + +private: + QString _name; + QString _imageResource; + QVariantList _airframes; +}; + +#endif diff --git a/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml b/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml index c7f67f233d4df39c21477f78ed2ae29959940600..7677cb66775490f6f1dd4059a447c14c560829c2 100644 --- a/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml +++ b/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml @@ -5,31 +5,31 @@ import QtQuick.Controls.Styles 1.2 import QGroundControl.FactSystem 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Controls 1.0 +import QGroundControl.Controllers 1.0 Column { + Fact { id: sysIdFact; name: "MAV_SYS_ID" } + Fact { id: sysAutoStartFact; name: "SYS_AUTOSTART" } + + property bool autoStartSet: sysAutoStartFact.value != 0 + anchors.fill: parent anchors.margins: 8 - Row { - width: parent.width + AirframeComponentController { id: controller } - QGCLabel { id: systemId; text: "System ID:" } - FactLabel { - horizontalAlignment: Text.AlignRight - width: parent.width - systemId.contentWidth - fact: Fact { name: "MAV_SYS_ID" } - } + VehicleSummaryRow { + labelText: "System ID:" + valueText: sysIdFact.valueString } - Row { - width: parent.width + VehicleSummaryRow { + labelText: "Airframe type:" + valueText: autoStartSet ? controller.currentAirframeType : "Setup required" + } - QGCLabel { id: airframe; text: "Airframe:" } - QGCLabel { - property Fact fact: Fact { name: "SYS_AUTOSTART" } - horizontalAlignment: Text.AlignRight - width: parent.width - airframe.contentWidth - text: fact.value == 0 ? "Setup required" : fact.value - } + VehicleSummaryRow { + labelText: "Vehicle:" + valueText: autoStartSet ? controller.currentVehicleName : "Setup required" } } diff --git a/src/AutoPilotPlugins/PX4/FlightModeConfig.cc b/src/AutoPilotPlugins/PX4/FlightModeConfig.cc deleted file mode 100644 index 792b067b86d954344d02e1156e695e8395af8695..0000000000000000000000000000000000000000 --- a/src/AutoPilotPlugins/PX4/FlightModeConfig.cc +++ /dev/null @@ -1,247 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009, 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @brief Flight Mode Configuration -/// @author Don Gagne setupUi(this); - - // Expectation is that we have an active uas, it is connected and the parameters are ready - _mav = UASManager::instance()->getActiveUAS(); - Q_ASSERT(_mav); - - _paramMgr = _mav->getParamManager(); - Q_ASSERT(_paramMgr); - Q_ASSERT(_paramMgr->parametersReady()); - - _componentId = _paramMgr->getDefaultComponentId(); - - connect(_paramMgr, SIGNAL(parameterUpdated(int, QString, QVariant)), this, SLOT(_parameterUpdated(int, QString, QVariant))); - - _initUi(); -} - -/// @brief Intialize the UI elements -void FlightModeConfig::_initUi(void) { - struct Combo2Param { - QGCComboBox* combo; - QButtonGroup* buttonGroup; - const char* param; - const char* description; - }; - - struct Combo2Param rgCombo2ParamMap[] = { - { _ui->modeSwitchChannel, _ui->modeSwitchGroup, _modeSwitchParam, "Mode Switch" }, - { _ui->manualSwitchChannel, _ui->manualSwitchGroup, _manualSwitchParam, "Manual Switch" }, - { _ui->assistSwitchChannel, _ui->assistSwitchGroup, _assistSwitchParam, "Assist Switch" }, - { _ui->returnSwitchChannel, _ui->returnSwitchGroup, _returnSwitchParam, "Return Switch" }, - { _ui->loiterSwitchChannel, _ui->loiterSwitchGroup, _loiterSwitchParam, "Loiter Switch" }, - { NULL, NULL, "RC_MAP_THROTTLE", "Throttle" }, - { NULL, NULL, "RC_MAP_YAW", "Rudder" }, - { NULL, NULL, "RC_MAP_ROLL", "Aileron" }, - { NULL, NULL, "RC_MAP_PITCH", "Elevator" }, - { NULL, NULL, "RC_MAP_AUX1", "Aux1" }, - { NULL, NULL, "RC_MAP_AUX2", "Aux2" }, - { NULL, NULL, "RC_MAP_AUX3", "Aux3" } - }; - - // Setup up maps - for (size_t i=0; icombo) { - Q_ASSERT(!_mapChannelCombo2Param.contains(map->combo)); - _mapChannelCombo2Param[map->combo] = map->param; - - Q_ASSERT(!_mapChannelCombo2ButtonGroup.contains(map->combo)); - _mapChannelCombo2ButtonGroup[map->combo] = map->buttonGroup; - - // We connect to activated because we only want signals from user initiated changes - connect(map->combo, SIGNAL(activated(int)), this, SLOT(_channelSelected(int))); - } - - Q_ASSERT(!_mapParam2FunctionInfo.contains(map->param)); - _mapParam2FunctionInfo[map->param] = map->description; - } - - _updateAllSwitches(); -} - -void FlightModeConfig::_updateAllSwitches(void) -{ - foreach(QGCComboBox* combo, _mapChannelCombo2Param.keys()) { - _updateSwitchUiGroup(combo); - } -} - -/// @brief Selects the channel in the combo for the given parameter -void FlightModeConfig::_selectChannelForParam(QGCComboBox* combo, const QString& parameter) -{ - int channel = _getChannelMapForParam(parameter); - - int index = combo->findData(channel); - Q_ASSERT(index != -1); - - combo->setCurrentIndex(index); -} - -/// @brief Fills a channel selection combo box with channel values -void FlightModeConfig::_updateSwitchUiGroup(QGCComboBox* combo) -{ - QMap mapChannelUsed2Description; - - // Make a map of all channels currently mapped - foreach(QString paramId, _mapParam2FunctionInfo.keys()) { - int channel = _getChannelMapForParam(paramId); - if (channel != 0) { - mapChannelUsed2Description[channel] = _mapParam2FunctionInfo[paramId]; - } - } - - combo->clear(); - combo->addItem("Disabled", 0); - for (int i=1; i<=_maxChannels; i++) { - QString comboText = QString("Channel %1").arg(i); - - if (mapChannelUsed2Description.contains(i)) { - comboText += QString(" (%1)").arg(mapChannelUsed2Description[i]); - } - - combo->addItem(comboText, i); - } - - _selectChannelForParam(combo, _mapChannelCombo2Param[combo]); - - // Enable/Disable radio buttons appropriately - - int channelMap = _getChannelMapForParam(_mapChannelCombo2Param[combo]); - - Q_ASSERT(_mapChannelCombo2ButtonGroup.contains(combo)); - Q_ASSERT(_mapChannelCombo2ButtonGroup[combo]->buttons().count() > 0); - - foreach(QAbstractButton* button, _mapChannelCombo2ButtonGroup[combo]->buttons()) { - QRadioButton* radio = qobject_cast(button); - - Q_ASSERT(radio); - - radio->setEnabled(channelMap != 0); - } -} - -/// @brief Returns channel mapping for the specified parameters -int FlightModeConfig::_getChannelMapForParam(const QString& paramId) -{ - QVariant value; - bool found = _paramMgr->getParameterValue(_componentId, paramId, value); - Q_UNUSED(found); - Q_ASSERT(found); - - bool conversionOk; - int channel = value.toInt(&conversionOk); - Q_UNUSED(conversionOk); - Q_ASSERT(conversionOk); - - return channel; -} - -/// @brief Called when a selection occurs in one of the channel combo boxes -void FlightModeConfig::_channelSelected(int requestedMapping) -{ - QGCComboBox* combo = qobject_cast(sender()); - Q_ASSERT(combo); - Q_ASSERT(_mapChannelCombo2Param.contains(combo)); - - // Check for no-op - - int currentMapping = _getChannelMapForParam(_mapChannelCombo2Param[combo]); - if (currentMapping == requestedMapping) { - return; - } - - // Make sure that channel is not already mapped - - if (requestedMapping == 0) { - // Channel was disabled - if (combo == _ui->modeSwitchChannel) { - // Mode switch is not allowed to be disabled. - QGCMessageBox::warning(tr("Flight Mode"), "Mode Switch is a required switch and cannot be disabled."); - _selectChannelForParam(combo, _mapChannelCombo2Param[combo]); - return; - } - } else { - // Channel was remapped to a non-disabled channel - foreach(QString paramId, _mapParam2FunctionInfo.keys()) { - int usedChannelMap = _getChannelMapForParam(paramId); - - if (requestedMapping == usedChannelMap) { - QGCMessageBox::warning(tr("Flight Mode"), "You cannot use a channel which is already mapped."); - _selectChannelForParam(combo, _mapChannelCombo2Param[combo]); - return; - } - } - } - - // Save the new setting to the parameter - _paramMgr->setParameter(_componentId, _mapChannelCombo2Param[combo], requestedMapping); - _paramMgr->sendPendingParameters(true, false); -} - -void FlightModeConfig::_parameterUpdated(int componentId, QString parameter, QVariant value) -{ - Q_UNUSED(componentId); - Q_UNUSED(value); - - // If this is a function mapping parameter update the combos - if (_mapParam2FunctionInfo.contains(parameter)) { - _updateAllSwitches(); - } - - // Finally if RC Calibration suddenly needs to be re-done disable the entire widget and inform user - if (parameter == _modeSwitchParam) { - // FIXME: Do something more than disable - if (isEnabled() == false && value.toInt() != 0) { - setEnabled(true); - } else if (isEnabled() == true && value.toInt() == 0) { - setEnabled(false); - } - } -} \ No newline at end of file diff --git a/src/AutoPilotPlugins/PX4/FlightModeConfig.h b/src/AutoPilotPlugins/PX4/FlightModeConfig.h deleted file mode 100644 index 891d5ce32a3f636e0b879de4d9a2a5376400ddf4..0000000000000000000000000000000000000000 --- a/src/AutoPilotPlugins/PX4/FlightModeConfig.h +++ /dev/null @@ -1,81 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009, 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - - -/// @file -/// @brief Flight Mode Configuration -/// @author Don Gagne - -#include "UASInterface.h" -#include "ui_FlightModeConfig.h" - -namespace Ui { - class FlightModeConfig; -} - - -class FlightModeConfig : public QWidget -{ - Q_OBJECT - - friend class FlightModeConfigTest; ///< This allows our unit test to access internal information needed. - -public: - explicit FlightModeConfig(QWidget *parent = 0); - -private slots: - void _channelSelected(int index); - void _parameterUpdated(int componentId, QString parameter, QVariant value); - -private: - void _initUi(void); - void _updateSwitchUiGroup(QGCComboBox* combo); - void _selectChannelForParam(QGCComboBox* combo, const QString& parameter); - void _updateAllSwitches(void); - int _getChannelMapForParam(const QString& parameter); - - UASInterface* _mav; ///< The current MAV - int _componentId; ///< Default component id - QGCUASParamManagerInterface* _paramMgr; - - static const int _maxChannels = 18; - - QMap _mapChannelCombo2Param; - QMap _mapChannelCombo2ButtonGroup; - QMap _mapParam2FunctionInfo; - - static const char* _modeSwitchParam; - static const char* _manualSwitchParam; - static const char* _assistSwitchParam; - static const char* _returnSwitchParam; - static const char* _loiterSwitchParam; - - Ui::FlightModeConfig* _ui; -}; - -#endif diff --git a/src/AutoPilotPlugins/PX4/FlightModeConfig.ui b/src/AutoPilotPlugins/PX4/FlightModeConfig.ui deleted file mode 100644 index fce5fc124f90853fbff5986a68d52151b994881a..0000000000000000000000000000000000000000 --- a/src/AutoPilotPlugins/PX4/FlightModeConfig.ui +++ /dev/null @@ -1,380 +0,0 @@ - - - FlightModeConfig - - - - 0 - 0 - 642 - 645 - - - - - 0 - 0 - - - - - 642 - 645 - - - - Form - - - - - - This implementation is a work in progress. Visuals are meant to be functional only. Active display of switch positions is not yet implemented. If this entire screen is disabled, you must do a Radio Calibration before settings Flight Modes. - - - true - - - - - - - - - Flight Modes on multiple channels - - - true - - - modeSwitchGroup - - - - - - - false - - - Flight Modes on single channel (coming soon) - - - modeSwitchGroup - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - 0 - 0 - - - - 1 - - - - - - - - - - Main Mode Switch - - - - - - - - - - Current switch position: - - - - - - - Manual Mode - - - mainSwitchGroup - - - - - - - Assist Mode - - - mainSwitchGroup - - - - - - - Mission Mode - - - mainSwitchGroup - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - Manual Mode Switch - - - - - - - - - - Current switch position: - - - - - - - Acro - - - manualSwitchGroup - - - - - - - Manual - - - manualSwitchGroup - - - - - - - Stabilize - - - manualSwitchGroup - - - - - - - - - - - Assist Mode Switch - - - - - - - - - - Altitude Control - - - assistSwitchGroup - - - - - - - Position Control - - - assistSwitchGroup - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - - - - - - Loiter Switch - - - - - - - - - - Current switch position - - - - - - - Loiter - - - loiterSwitchGroup - - - - - - - Off - - - loiterSwitchGroup - - - - - - - - - - - Return to Home Switch - - - - - - - - - - Current switch position - - - - - - - Return to Home - - - returnSwitchGroup - - - - - - - Off - - - returnSwitchGroup - - - - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - QGCComboBox - QComboBox -
QGCComboBox.h
-
-
- - - - - - - - - - -
diff --git a/src/AutoPilotPlugins/PX4/FlightModesComponent.cc b/src/AutoPilotPlugins/PX4/FlightModesComponent.cc index e573a26c218d3e67d923c3286a144ef755459a54..c03f66c1b7b9979f1be166d9a553c20304b086a1 100644 --- a/src/AutoPilotPlugins/PX4/FlightModesComponent.cc +++ b/src/AutoPilotPlugins/PX4/FlightModesComponent.cc @@ -72,13 +72,7 @@ bool FlightModesComponent::requiresSetup(void) const bool FlightModesComponent::setupComplete(void) const { - QVariant value; - if (_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), "RC_MAP_MODE_SW", value)) { - return value.toInt() != 0; - } else { - Q_ASSERT(false); - return false; - } + return _autopilot->getParameterFact("RC_MAP_MODE_SW")->value().toInt() != 0; } QString FlightModesComponent::setupStateDescription(void) const diff --git a/src/AutoPilotPlugins/PX4/FlightModesComponent.qml b/src/AutoPilotPlugins/PX4/FlightModesComponent.qml index ce09311832ad0c9f0f0630ed937e82cb94cfee46..2e55283abfaafe006b565760cd57463027807522 100644 --- a/src/AutoPilotPlugins/PX4/FlightModesComponent.qml +++ b/src/AutoPilotPlugins/PX4/FlightModesComponent.qml @@ -1,3 +1,26 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 @@ -7,6 +30,7 @@ import QGroundControl.FactControls 1.0 import QGroundControl.Palette 1.0 import QGroundControl.Controls 1.0 import QGroundControl.Controllers 1.0 +import QGroundControl.ScreenTools 1.0 Item { Loader { @@ -35,6 +59,7 @@ Item { Fact { id: rc_map_mode_sw; name: "RC_MAP_MODE_SW" } Fact { id: rc_map_posctl_sw; name: "RC_MAP_POSCTL_SW" } Fact { id: rc_map_return_sw; name: "RC_MAP_RETURN_SW" } + Fact { id: rc_map_offboard_sw; name: "RC_MAP_OFFB_SW" } Fact { id: rc_map_loiter_sw; name: "RC_MAP_LOITER_SW" } Fact { id: rc_assist_th; name: "RC_ASSIST_TH" } @@ -42,6 +67,7 @@ Item { Fact { id: rc_auto_th; name: "RC_AUTO_TH" } Fact { id: rc_loiter_th; name: "RC_LOITER_TH" } Fact { id: rc_return_th; name: "RC_RETURN_TH" } + Fact { id: rc_offboard_th; name: "RC_OFFB_TH" } Fact { id: rc_th_user; name: "RC_TH_USER" } @@ -56,6 +82,7 @@ Item { property int modeChannel: rc_map_mode_sw.value property int posCtlChannel: rc_map_posctl_sw.value property int returnChannel: rc_map_return_sw.value + property int offboardChannel: rc_map_offboard_sw.value property int loiterChannel: rc_map_loiter_sw.value property real rcThUserValue: rc_th_user.value @@ -162,15 +189,19 @@ Item { // If dropped over a channel target remap switch if (parent.Drag.target && parent.Drag.target.dropAllowed) { - fact.value = parent.Drag.target.channel + if (!singleSwitchRequired || parent.Drag.target.unassignedChannel) { + fact.value = parent.Drag.target.channel + } } } } DropArea { // This will cause to tile to go back to unassigned if dropped here - readonly property int channel: 0 - property bool dropAllowed: true + readonly property int channel: 0 + property bool dropAllowed: true + property bool unassignedChannel: true + id: dropArea width: parent.width @@ -233,7 +264,9 @@ Item { // If dropped over a channel target remap switch if (parent.Drag.target && parent.Drag.target.dropAllowed) { - fact.value = parent.Drag.target.channel + if (!singleSwitchRequired || parent.Drag.target.unassignedChannel) { + fact.value = parent.Drag.target.channel + } } } } @@ -242,6 +275,7 @@ Item { onModeChannelChanged: if (!inRedistribution) redistributeThresholds() onReturnChannelChanged: if (!inRedistribution) redistributeThresholds() + onOffboardChannelChanged: if (!inRedistribution) redistributeThresholds() onLoiterChannelChanged: if (!inRedistribution) redistributeThresholds() onPosCtlChannelChanged: if (!inRedistribution) redistributeThresholds() onRcThUserValue: if (!inRedistribution) redistributeThresholds() @@ -255,11 +289,9 @@ Item { if (modeChannel != 0) { var positions = 3 // Manual/Assist/Auto always exist - var returnOnModeSwitch = modeChannel == returnChannel var loiterOnModeSwitch = modeChannel == loiterChannel var posCtlOnModeSwitch = modeChannel == posCtlChannel - positions += returnOnModeSwitch ? 1 : 0 positions += loiterOnModeSwitch ? 1 : 0 positions += posCtlOnModeSwitch ? 1 : 0 @@ -281,75 +313,49 @@ Item { currentThreshold += increment rc_loiter_th.value = currentThreshold } - if (returnOnModeSwitch) { - currentThreshold += increment - rc_return_th.value = currentThreshold - } inRedistribution = false } - if (returnChannel != 0 && returnChannel != modeChannel) { - var positions = 2 // On/off always exist - - var loiterOnReturnSwitch = returnChannel == loiterChannel - - positions += loiterOnReturnSwitch ? 1 : 0 - - var increment = 1.0 / positions - var currentThreshold = 0.0 - - if (positions == 2) { - // If only two positions don't set threshold at midrange. Setting to 0.25 - // allows for this channel to work with either two or three position switch - increment = 0.25 - } - - // Make sure we don't re-enter + if (returnChannel != 0) { inRedistribution = true - if (loiterOnReturnSwitch) { - currentThreshold += increment - rc_loiter_th.value = currentThreshold - } - currentThreshold += increment - rc_return_th.value = currentThreshold + // If only two positions don't set threshold at midrange. Setting to 0.25 + // allows for this channel to work with either two or three position switch + rc_return_th.value = 0.25 inRedistribution = false } - if (loiterChannel != 0 && loiterChannel != modeChannel && loiterChannel != returnChannel) { + if (offboardChannel != 0) { + inRedistribution = true + // If only two positions don't set threshold at midrange. Setting to 0.25 // allows for this channel to work with either two or three position switch - var increment = 0.25 + rc_offboard_th.value = 0.25 - var currentThreshold = 0.0 + inRedistribution = false + } - // Make sure we don't re-enter + if (loiterChannel != 0 && loiterChannel != modeChannel) { inRedistribution = true - currentThreshold += increment - rc_loiter_th.value = currentThreshold + // If only two positions don't set threshold at midrange. Setting to 0.25 + // allows for this channel to work with either two or three position switch + rc_loiter_th.value = 0.25 inRedistribution = false } if (posCtlChannel != 0 & posCtlChannel != modeChannel) { - // If only two positions don't set threshold at midrange. Setting to 0.25 - // allows for this channel to work with either two or three position switch - var increment = 0.25 - - var currentThreshold = 0.0 - - // Make sure we don't re-enter inRedistribution = true - currentThreshold += increment - rc_posctl_th.value = currentThreshold + // If only two positions don't set threshold at midrange. Setting to 0.25 + // allows for this channel to work with either two or three position switch + rc_posctl_th.value = 0.25 inRedistribution = false } - } Column { @@ -357,16 +363,17 @@ Item { QGCLabel { text: "FLIGHT MODES CONFIG" - font.pointSize: 20 + font.pointSize: ScreenTools.fontPointFactor * (20); } Item { height: 20; width: 10 } // spacer QGCLabel { width: parent.width - text: "Flight Mode switches can be assigned to any channel which is not currently being used for attitude control. All channels are displayed below. " + - "You can drag Flight Modes from the Flight Modes section below to a channel and drop it there. You can also drag switches assigned to a channel " + - "to another channel or back to the Unassigned Switches section. The Switch Display section at the very bottom will show you the results of your Flight Mode setup." + text: "The Main Mode, Loiter and PostCtl switches can be assigned to any channel which is not currently being used for attitude control. The Return and Offboard switches must be assigned to their seperate channel. " + + "All channels are displayed below. " + + "You can drag Flight Modes from the Flight Modes section below to a channel and drop it there. You can also drag switches assigned to a channel " + + "to another channel or back to the Unassigned Switches section. The Switch Display section at the very bottom will show you the results of your Flight Mode setup." wrapMode: Text.WordWrap } @@ -395,10 +402,12 @@ Item { property bool modeMapped: channel == modeChannel property bool posCtlMapped: channel == posCtlChannel property bool returnMapped: channel == returnChannel + property bool offboardMapped: channel == offboardChannel property bool loiterMapped: channel == loiterChannel property bool nonFlightModeMapping: throttleMapped | yawMapped | pitchMapped | rollMapped | flapsMapped | aux1Mapped | aux2Mapped - property bool unassignedMapping: !(nonFlightModeMapping | modeMapped | posCtlMapped | returnMapped | loiterMapped) + property bool unassignedMapping: !(nonFlightModeMapping | modeMapped | posCtlMapped | returnMapped | offboardMapped | loiterMapped) + property bool singleSwitchMapping: returnMapped | offboardMapped id: channelTarget width: tileWidth @@ -408,7 +417,7 @@ Item { states: [ State { - when: dropArea.containsDrag && dropArea.dropAllowed + when: dropArea.containsDrag && dropArea.dropAllowed && (!dropArea.drag.source.singleSwitchRequired || dropArea.unassignedChannel) PropertyChanges { target: channelHeader color: "red" @@ -497,37 +506,51 @@ Item { sourceComponent: assignedModeTileComponent } Loader { - property string tileLabel: "Main Mode" - property bool tileVisible: visible - property bool tileDragEnabled: true - property string tileParam: "RC_MAP_MODE_SW" + property string tileLabel: "Main Mode" + property bool tileVisible: visible + property bool tileDragEnabled: true + property string tileParam: "RC_MAP_MODE_SW" + property bool singleSwitchRequired: false visible: modeMapped sourceComponent: assignedModeTileComponent } Loader { - property string tileLabel: "Return" - property bool tileVisible: visible - property bool tileDragEnabled: true - property string tileParam: "RC_MAP_RETURN_SW" + property string tileLabel: "Return" + property bool tileVisible: visible + property bool tileDragEnabled: true + property string tileParam: "RC_MAP_RETURN_SW" + property bool singleSwitchRequired: true visible: returnMapped sourceComponent: assignedModeTileComponent } Loader { - property string tileLabel: "Loiter" - property bool tileVisible: visible - property bool tileDragEnabled: true - property string tileParam: "RC_MAP_LOITER_SW" + property string tileLabel: "Offboard" + property bool tileVisible: visible + property bool tileDragEnabled: true + property string tileParam: "RC_MAP_OFFB_SW" + property bool singleSwitchRequired: true + + visible: offboardMapped + sourceComponent: assignedModeTileComponent + } + Loader { + property string tileLabel: "Loiter" + property bool tileVisible: visible + property bool tileDragEnabled: true + property string tileParam: "RC_MAP_LOITER_SW" + property bool singleSwitchRequired: false visible: loiterMapped sourceComponent: assignedModeTileComponent } Loader { - property string tileLabel: "PosCtl" - property bool tileVisible: visible - property bool tileDragEnabled: true - property string tileParam: "RC_MAP_POSCTL_SW" + property string tileLabel: "PosCtl" + property bool tileVisible: visible + property bool tileDragEnabled: true + property string tileParam: "RC_MAP_POSCTL_SW" + property bool singleSwitchRequired: false visible: posCtlMapped sourceComponent: assignedModeTileComponent @@ -536,7 +559,8 @@ Item { DropArea { // Drops are not allowed on channels which are mapped to non-flight mode switches - property bool dropAllowed: !nonFlightModeMapping + property bool dropAllowed: !nonFlightModeMapping && !singleSwitchMapping + property bool unassignedChannel: unassignedMapping property int channel: parent.channel id: dropArea @@ -567,24 +591,34 @@ Item { spacing: 5 Loader { - property string tileLabel: "Main Mode" - property string tileParam: "RC_MAP_MODE_SW" - sourceComponent: unassignedModeTileComponent + property string tileLabel: "Main Mode" + property string tileParam: "RC_MAP_MODE_SW" + property bool singleSwitchRequired: false + sourceComponent: unassignedModeTileComponent + } + Loader { + property string tileLabel: "Loiter" + property string tileParam: "RC_MAP_LOITER_SW" + property bool singleSwitchRequired: false + sourceComponent: unassignedModeTileComponent } Loader { - property string tileLabel: "Return" - property string tileParam: "RC_MAP_RETURN_SW" - sourceComponent: unassignedModeTileComponent + property string tileLabel: "PosCtl" + property string tileParam: "RC_MAP_POSCTL_SW" + property bool singleSwitchRequired: false + sourceComponent: unassignedModeTileComponent } Loader { - property string tileLabel: "Loiter" - property string tileParam: "RC_MAP_LOITER_SW" - sourceComponent: unassignedModeTileComponent + property string tileLabel: "Return" + property string tileParam: "RC_MAP_RETURN_SW" + property bool singleSwitchRequired: true + sourceComponent: unassignedModeTileComponent } Loader { - property string tileLabel: "PosCtl" - property string tileParam: "RC_MAP_POSCTL_SW" - sourceComponent: unassignedModeTileComponent + property string tileLabel: "Offboard" + property string tileParam: "RC_MAP_OFFB_SW" + property bool singleSwitchRequired: true + sourceComponent: unassignedModeTileComponent } } @@ -618,9 +652,10 @@ Item { Row { property bool modeSwitchVisible: modeChannel != 0 - property bool returnSwitchVisible: returnChannel != 0 && returnChannel != modeChannel property bool loiterSwitchVisible: loiterChannel != 0 && loiterChannel != modeChannel && loiterChannel != returnChannel property bool posCtlSwitchVisible: posCtlChannel != 0 && posCtlChannel != modeChannel + property bool returnSwitchVisible: returnChannel != 0 + property bool offboardSwitchVisible: offboardChannel != 0 width: parent.width spacing: 20 @@ -643,14 +678,6 @@ Item { text: "Auto" } - QGCLabel { - width: parent.width - y: (parent.height * (1.0 - rc_return_th.value)) - (implicitHeight / 2) - visible: modeChannel == returnChannel - horizontalAlignment: Text.AlignRight - text: "Auto: Return" - } - QGCLabel { width: parent.width y: (parent.height * (1.0 - rc_loiter_th.value)) - (implicitHeight / 2) @@ -716,9 +743,9 @@ Item { } Column { - visible: parent.returnSwitchVisible + visible: parent.loiterSwitchVisible - QGCLabel { text: "Return Switch" } + QGCLabel { text: "Loiter Switch" } Row { Item { @@ -727,48 +754,64 @@ Item { QGCLabel { width: parent.width - y: (parent.height * (1.0 - rc_return_th.value)) - (implicitHeight / 2) + y: (parent.height * (1.0 - rc_loiter_th.value)) - (implicitHeight / 2) horizontalAlignment: Text.AlignRight - text: "Auto: Return" + text: "Auto: Loiter" } QGCLabel { width: parent.width - y: (parent.height * (1.0 - rc_loiter_th.value)) - (implicitHeight / 2) - visible: returnChannel == loiterChannel + y: parent.height - (implicitHeight / 2) horizontalAlignment: Text.AlignRight - text: "Auto: Loiter" + text: "Auto: Mission" } + } + + ProgressBar { + height: progressBarHeight + orientation: Qt.Vertical + value: controller.loiterSwitchLiveRange + } + } + } + + Column { + visible: parent.posCtlSwitchVisible + + QGCLabel { text: "PosCtl Switch" } + + Row { + Item { + height: progressBarHeight + width: 150 QGCLabel { width: parent.width - y: parent.height - (implicitHeight / 2) - visible: returnChannel == loiterChannel + y: (parent.height * (1.0 - rc_posctl_th.value)) - (implicitHeight / 2) horizontalAlignment: Text.AlignRight - text: "Auto: Mission" + text: "Assist: PosCtl" } QGCLabel { width: parent.width y: parent.height - (implicitHeight / 2) - visible: returnChannel != loiterChannel horizontalAlignment: Text.AlignRight - text: "Auto: Return Off" + text: "Assist: AltCtl" } } ProgressBar { height: progressBarHeight orientation: Qt.Vertical - value: controller.returnSwitchLiveRange + value: controller.posCtlSwitchLiveRange } } } Column { - visible: parent.loiterSwitchVisible + visible: parent.returnSwitchVisible - QGCLabel { text: "Loiter Switch" } + QGCLabel { text: "Return Switch" } Row { Item { @@ -777,31 +820,32 @@ Item { QGCLabel { width: parent.width - y: (parent.height * (1.0 - rc_loiter_th.value)) - (implicitHeight / 2) + y: (parent.height * (1.0 - rc_return_th.value)) - (implicitHeight / 2) horizontalAlignment: Text.AlignRight - text: "Auto: Loiter" + text: "Return" } QGCLabel { width: parent.width y: parent.height - (implicitHeight / 2) + visible: returnChannel != loiterChannel horizontalAlignment: Text.AlignRight - text: "Auto: Mission" + text: "Return Off" } } ProgressBar { height: progressBarHeight orientation: Qt.Vertical - value: controller.loiterSwitchLiveRange + value: controller.returnSwitchLiveRange } } } Column { - visible: parent.posCtlSwitchVisible + visible: parent.offboardSwitchVisible - QGCLabel { text: "PosCtl Switch" } + QGCLabel { text: "Offboard Switch" } Row { Item { @@ -810,23 +854,24 @@ Item { QGCLabel { width: parent.width - y: (parent.height * (1.0 - rc_posctl_th.value)) - (implicitHeight / 2) + y: (parent.height * (1.0 - rc_return_th.value)) - (implicitHeight / 2) horizontalAlignment: Text.AlignRight - text: "Assist: PosCtl" + text: "Offboad" } QGCLabel { width: parent.width y: parent.height - (implicitHeight / 2) + visible: returnChannel != loiterChannel horizontalAlignment: Text.AlignRight - text: "Assist: AltCtl" + text: "Offboard Off" } } ProgressBar { height: progressBarHeight orientation: Qt.Vertical - value: controller.posCtlSwitchLiveRange + value: controller.offboardSwitchLiveRange } } } @@ -848,7 +893,7 @@ Item { QGCLabel { text: "FLIGHT MODES CONFIG" - font.pointSize: 20 + font.pointSize: ScreenTools.fontPointFactor * (20); } QGCLabel { diff --git a/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc b/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc index ef5c346f8f176395f11d54fa4b22fb986ac8a0ae..90f78113aa9a5da65199ab0afb757534f0afd2d4 100644 --- a/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc +++ b/src/AutoPilotPlugins/PX4/FlightModesComponentController.cc @@ -44,7 +44,7 @@ FlightModesComponentController::FlightModesComponentController(QObject* parent) _autoPilotPlugin = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uas); Q_ASSERT(_autoPilotPlugin); - Q_ASSERT(_autoPilotPlugin->pluginIsReady()); + Q_ASSERT(_autoPilotPlugin->pluginReady()); _initRcValues(); _validateConfiguration(); @@ -69,18 +69,24 @@ void FlightModesComponentController::_validateConfiguration(void) { _validConfiguration = true; - _channelCount = _autoPilotPlugin->factExists("RC_CHAN_CNT") ? _autoPilotPlugin->getFact("RC_CHAN_CNT")->value().toInt() : 18; + _channelCount = _autoPilotPlugin->parameterExists("RC_CHAN_CNT") ? + _autoPilotPlugin->getParameterFact("RC_CHAN_CNT")->value().toInt() : + _chanMax; + if (_channelCount <= 0 || _channelCount > _chanMax) { + // Parameter exists, but has not yet been set or is invalid. Use default + _channelCount = _chanMax; + } // Make sure switches are valid and within channel range QStringList switchParams, switchNames; QList switchMappings; - switchParams << "RC_MAP_MODE_SW" << "RC_MAP_RETURN_SW" << "RC_MAP_LOITER_SW" << "RC_MAP_POSCTL_SW"; - switchNames << "Mode Switch" << "Return Switch" << "Loiter Switch" << "PosCtl Switch"; + switchParams << "RC_MAP_MODE_SW" << "RC_MAP_RETURN_SW" << "RC_MAP_LOITER_SW" << "RC_MAP_POSCTL_SW" << "RC_MAP_OFFB_SW"; + switchNames << "Mode Switch" << "Return Switch" << "Loiter Switch" << "PosCtl Switch" << "Offboard Switch"; for(int i=0; igetFact(switchParams[i])->value().toInt(); + int map = _autoPilotPlugin->getParameterFact(switchParams[i])->value().toInt(); switchMappings << map; if (map < 0 || map > _channelCount) { @@ -89,15 +95,15 @@ void FlightModesComponentController::_validateConfiguration(void) } } - // Make sure switches are not mapped to attitude control channels + // Make sure switches are not double-mapped QStringList attitudeParams, attitudeNames; - attitudeParams << "RC_MAP_THROTTLE" << "RC_MAP_YAW" << "RC_MAP_PITCH" << "RC_MAP_ROLL" << "RC_MAP_FLAPS" << "RC_MAP_AUX1" << "RC_MAP_AUX2"; - attitudeNames << "Throttle" << "Yaw" << "Pitch" << "Roll" << "Flaps" << "Aux1" << "Aux2"; + attitudeParams << "RC_MAP_THROTTLE" << "RC_MAP_YAW" << "RC_MAP_PITCH" << "RC_MAP_ROLL" << "RC_MAP_FLAPS" << "RC_MAP_AUX1" << "RC_MAP_AUX2" << "RC_MAP_ACRO_SW"; + attitudeNames << "Throttle" << "Yaw" << "Pitch" << "Roll" << "Flaps" << "Aux1" << "Aux2" << "Acro"; for (int i=0; igetFact(attitudeParams[i])->value().toInt(); + int map = _autoPilotPlugin->getParameterFact(attitudeParams[i])->value().toInt(); for (int j=0; jgetParameterFact(singleSwitchParams[i])->value().toInt(); + + for (int j=0; jgetFact(rcMinParam)->value().toInt(); - _rgRCMax[i] = _autoPilotPlugin->getFact(rcMaxParam)->value().toInt(); + _rgRCMin[i] = _autoPilotPlugin->getParameterFact(rcMinParam)->value().toInt(); + _rgRCMax[i] = _autoPilotPlugin->getParameterFact(rcMaxParam)->value().toInt(); - float floatReversed = _autoPilotPlugin->getFact(rcRevParam)->value().toFloat(); + float floatReversed = _autoPilotPlugin->getParameterFact(rcRevParam)->value().toFloat(); _rgRCReversed[i] = floatReversed == -1.0f; } - _uas->startRadioControlCalibration(); + _uas->startCalibration(UASInterface::StartCalibrationRadio); connect(_uas, &UASInterface::remoteControlChannelRawChanged, this, &FlightModesComponentController::_remoteControlChannelRawChanged); } else { disconnect(_uas, &UASInterface::remoteControlChannelRawChanged, this, &FlightModesComponentController::_remoteControlChannelRawChanged); - _uas->endRadioControlCalibration(); + _uas->stopCalibration(); _initRcValues(); emit switchLiveRangeChanged(); } @@ -166,7 +190,7 @@ double FlightModesComponentController::_switchLiveRange(const QString& param) { QVariant value; - int channel = _autoPilotPlugin->getFact(param)->value().toInt(); + int channel = _autoPilotPlugin->getParameterFact(param)->value().toInt(); if (channel == 0) { return 1.0; } else { @@ -184,6 +208,11 @@ double FlightModesComponentController::returnSwitchLiveRange(void) return _switchLiveRange("RC_MAP_RETURN_SW"); } +double FlightModesComponentController::offboardSwitchLiveRange(void) +{ + return _switchLiveRange("RC_MAP_OFFB_SW"); +} + double FlightModesComponentController::loiterSwitchLiveRange(void) { return _switchLiveRange("RC_MAP_LOITER_SW"); diff --git a/src/AutoPilotPlugins/PX4/FlightModesComponentController.h b/src/AutoPilotPlugins/PX4/FlightModesComponentController.h index ccc27715fa6d182e04b11894a6fe0c783d4ea138..8fa0448b4d24604ca03fbfc9f83d6d846edaa265 100644 --- a/src/AutoPilotPlugins/PX4/FlightModesComponentController.h +++ b/src/AutoPilotPlugins/PX4/FlightModesComponentController.h @@ -49,16 +49,18 @@ public: Q_PROPERTY(int channelCount MEMBER _channelCount CONSTANT) Q_PROPERTY(double modeSwitchLiveRange READ modeSwitchLiveRange NOTIFY switchLiveRangeChanged) - Q_PROPERTY(double returnSwitchLiveRange READ returnSwitchLiveRange NOTIFY switchLiveRangeChanged) Q_PROPERTY(double loiterSwitchLiveRange READ loiterSwitchLiveRange NOTIFY switchLiveRangeChanged) Q_PROPERTY(double posCtlSwitchLiveRange READ posCtlSwitchLiveRange NOTIFY switchLiveRangeChanged) + Q_PROPERTY(double returnSwitchLiveRange READ returnSwitchLiveRange NOTIFY switchLiveRangeChanged) + Q_PROPERTY(double offboardSwitchLiveRange READ offboardSwitchLiveRange NOTIFY switchLiveRangeChanged) Q_PROPERTY(bool sendLiveRCSwitchRanges READ sendLiveRCSwitchRanges WRITE setSendLiveRCSwitchRanges NOTIFY liveRCSwitchRangesChanged) double modeSwitchLiveRange(void); - double returnSwitchLiveRange(void); double loiterSwitchLiveRange(void); double posCtlSwitchLiveRange(void); + double returnSwitchLiveRange(void); + double offboardSwitchLiveRange(void); bool sendLiveRCSwitchRanges(void) { return _liveRCValues; } void setSendLiveRCSwitchRanges(bool start); diff --git a/src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml b/src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml index dfd4af9cdd2ff1ac08fbd5a137672ee859c3a97a..a61aa64575dddf9fd50821eb483ae18abfc1deff 100644 --- a/src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml +++ b/src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml @@ -6,54 +6,31 @@ import QGroundControl.FactSystem 1.0 import QGroundControl.Controls 1.0 Column { - anchors.fill: parent - anchors.margins: 8 + Fact { id: modeSwFact; name: "RC_MAP_MODE_SW" } + Fact { id: posCtlSwFact; name: "RC_MAP_POSCTL_SW" } + Fact { id: loiterSwFact; name: "RC_MAP_LOITER_SW" } + Fact { id: returnSwFact; name: "RC_MAP_RETURN_SW" } - Component { - id: component + anchors.fill: parent + anchors.margins: 8 - Row { - width: parent.width - - QGCLabel { id: label; text: labelText } - QGCLabel { - property Fact fact: Fact { name: factName } - horizontalAlignment: Text.AlignRight - width: parent.width - label.contentWidth - text: fact.value == 0 ? zeroText : fact.value - } - } - } - - Loader { - property string labelText: "Mode switch:" - property string zeroText: "Setup required" - property string factName: "RC_MAP_MODE_SW" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Mode switch:" + valueText: modeSwFact.value == 0 ? "Setup required" : modeSwFact.valueString } - Loader { - property string labelText: "Position Ctl switch:" - property string zeroText: "Disabled" - property string factName: "RC_MAP_POSCTL_SW" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Position Ctl switch:" + valueText: posCtlSwFact.value == 0 ? "Disabled" : posCtlSwFact.valueString } - Loader { - property string labelText: "Position Ctl switch:" - property string zeroText: "Disabled" - property string factName: "RC_MAP_LOITER_SW" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Loiter switch:" + valueText: loiterSwFact.value == 0 ? "Disabled" : loiterSwFact.valueString } - Loader { - property string labelText: "Return switch:" - property string zeroText: "Disabled" - property string factName: "RC_MAP_RETURN_SW" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Return switch:" + valueText: returnSwFact.value == 0 ? "Disabled" : returnSwFact.valueString } } diff --git a/files/images/px4/airframes/flying_wing.png b/src/AutoPilotPlugins/PX4/Images/AirframeFlyingWing.png similarity index 100% rename from files/images/px4/airframes/flying_wing.png rename to src/AutoPilotPlugins/PX4/Images/AirframeFlyingWing.png diff --git a/files/images/px4/airframes/hexa_+.png b/src/AutoPilotPlugins/PX4/Images/AirframeHexaRotorPlus.png similarity index 100% rename from files/images/px4/airframes/hexa_+.png rename to src/AutoPilotPlugins/PX4/Images/AirframeHexaRotorPlus.png diff --git a/files/images/px4/airframes/hexa_x.png b/src/AutoPilotPlugins/PX4/Images/AirframeHexaRotorX.png similarity index 100% rename from files/images/px4/airframes/hexa_x.png rename to src/AutoPilotPlugins/PX4/Images/AirframeHexaRotorX.png diff --git a/files/images/px4/airframes/octo_+.png b/src/AutoPilotPlugins/PX4/Images/AirframeOctoRotorPlus.png similarity index 100% rename from files/images/px4/airframes/octo_+.png rename to src/AutoPilotPlugins/PX4/Images/AirframeOctoRotorPlus.png diff --git a/files/images/px4/airframes/octo_x.png b/src/AutoPilotPlugins/PX4/Images/AirframeOctoRotorX.png similarity index 100% rename from files/images/px4/airframes/octo_x.png rename to src/AutoPilotPlugins/PX4/Images/AirframeOctoRotorX.png diff --git a/files/images/px4/airframes/quad_h.png b/src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorH.png similarity index 100% rename from files/images/px4/airframes/quad_h.png rename to src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorH.png diff --git a/files/images/px4/airframes/quad_+.png b/src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorPlus.png similarity index 100% rename from files/images/px4/airframes/quad_+.png rename to src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorPlus.png diff --git a/files/images/px4/airframes/quad_x.png b/src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorX.png similarity index 100% rename from files/images/px4/airframes/quad_x.png rename to src/AutoPilotPlugins/PX4/Images/AirframeQuadRotorX.png diff --git a/files/images/px4/airframes/plane_aert.png b/src/AutoPilotPlugins/PX4/Images/AirframeSimulation.png similarity index 100% rename from files/images/px4/airframes/plane_aert.png rename to src/AutoPilotPlugins/PX4/Images/AirframeSimulation.png diff --git a/src/AutoPilotPlugins/PX4/Images/AirframeStandardPlane.png b/src/AutoPilotPlugins/PX4/Images/AirframeStandardPlane.png new file mode 100644 index 0000000000000000000000000000000000000000..583d08d01d25dea95eff062b8eef00ba35668d53 Binary files /dev/null and b/src/AutoPilotPlugins/PX4/Images/AirframeStandardPlane.png differ diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_01cell.svg b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_01cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..c026fe3f82a0d6843f3a425f7aace1ad0f24345b --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_01cell.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_02cell.svg b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_02cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd2b371cf9909ccfc60d190316464f7b366f7ace --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_02cell.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_03cell.svg b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_03cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..54859ffa16a9908275142041ece91f6fc3ce1f11 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_03cell.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_04cell.svg b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_04cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..2d0dda8ec05742853bab5253ab387ad02ac46007 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_04cell.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_05cell.svg b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_05cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..150bc0b897dcc6b11c97ebb55cfdc7f065a6af93 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_05cell.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_06cell.svg b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_06cell.svg new file mode 100644 index 0000000000000000000000000000000000000000..1d8d9f26f6d57ecffc80cde65c87d9a3fa279136 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/PowerComponentBattery_06cell.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/PowerComponentIcon.png b/src/AutoPilotPlugins/PX4/Images/PowerComponentIcon.png new file mode 100644 index 0000000000000000000000000000000000000000..cba13b67525fa2e315ea53d7ac3e0eb3474cb834 Binary files /dev/null and b/src/AutoPilotPlugins/PX4/Images/PowerComponentIcon.png differ diff --git a/src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.png b/src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.png deleted file mode 100644 index 9c618a3060326f456f2cb2ac7aee2cdb466e1025..0000000000000000000000000000000000000000 Binary files a/src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.png and /dev/null differ diff --git a/src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.svg b/src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.svg new file mode 100644 index 0000000000000000000000000000000000000000..2b9645a77667f8399f68fe47fe043787526e7b39 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/Images/SafetyComponentTree.svg @@ -0,0 +1,19 @@ + + + + + Layer 1 + + + + + + + + + + diff --git a/src/AutoPilotPlugins/PX4/Images/VehicleDownRotate.png b/src/AutoPilotPlugins/PX4/Images/VehicleDownRotate.png new file mode 100644 index 0000000000000000000000000000000000000000..4dbf238223c44aa386e3faa6ce364999f5e2035c Binary files /dev/null and b/src/AutoPilotPlugins/PX4/Images/VehicleDownRotate.png differ diff --git a/src/AutoPilotPlugins/PX4/Images/VehicleLeftRotate.png b/src/AutoPilotPlugins/PX4/Images/VehicleLeftRotate.png new file mode 100644 index 0000000000000000000000000000000000000000..eaeb62d2cf35a9904508b8062138ec2839c8020e Binary files /dev/null and b/src/AutoPilotPlugins/PX4/Images/VehicleLeftRotate.png differ diff --git a/src/AutoPilotPlugins/PX4/Images/VehicleNoseDownRotate.png b/src/AutoPilotPlugins/PX4/Images/VehicleNoseDownRotate.png new file mode 100644 index 0000000000000000000000000000000000000000..45f9650bf924e0bbc2aef4e598f49c4ed7d1e09c Binary files /dev/null and b/src/AutoPilotPlugins/PX4/Images/VehicleNoseDownRotate.png differ diff --git a/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc b/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc index e9e553efe25e97edaf7450477ee8923dc85786a7..41204218075490efc67c74d40934e51ce2479ce7 100644 --- a/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc +++ b/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.cc @@ -24,9 +24,9 @@ #include "PX4AutoPilotPlugin.h" #include "AutoPilotPluginManager.h" #include "UASManager.h" -#include "QGCUASParamManagerInterface.h" -#include "PX4ParameterFacts.h" +#include "PX4ParameterLoader.h" #include "FlightModesComponentController.h" +#include "AirframeComponentController.h" #include "QGCMessageBox.h" /// @file @@ -70,24 +70,26 @@ PX4AutoPilotPlugin::PX4AutoPilotPlugin(UASInterface* uas, QObject* parent) : _flightModesComponent(NULL), _sensorsComponent(NULL), _safetyComponent(NULL), + _powerComponent(NULL), _incorrectParameterVersion(false) { Q_ASSERT(uas); qmlRegisterType("QGroundControl.Controllers", 1, 0, "FlightModesComponentController"); + qmlRegisterType("QGroundControl.Controllers", 1, 0, "AirframeComponentController"); - _parameterFacts = new PX4ParameterFacts(uas, this); + _parameterFacts = new PX4ParameterLoader(this, uas, this); Q_CHECK_PTR(_parameterFacts); - connect(_parameterFacts, &PX4ParameterFacts::factsReady, this, &PX4AutoPilotPlugin::_checkForIncorrectParameterVersion); + connect(_parameterFacts, &PX4ParameterLoader::parametersReady, this, &PX4AutoPilotPlugin::_pluginReadyPreChecks); + connect(_parameterFacts, &PX4ParameterLoader::parameterListProgress, this, &PX4AutoPilotPlugin::parameterListProgress); - PX4ParameterFacts::loadParameterFactMetaData(); + PX4ParameterLoader::loadParameterFactMetaData(); } PX4AutoPilotPlugin::~PX4AutoPilotPlugin() { delete _parameterFacts; - PX4ParameterFacts::deleteParameterFactMetaData(); } QList PX4AutoPilotPlugin::getModes(void) @@ -185,59 +187,60 @@ QString PX4AutoPilotPlugin::getShortModeText(uint8_t baseMode, uint32_t customMo void PX4AutoPilotPlugin::clearStaticData(void) { - PX4ParameterFacts::clearStaticData(); + PX4ParameterLoader::clearStaticData(); } -bool PX4AutoPilotPlugin::pluginIsReady(void) const -{ - return _parameterFacts->factsAreReady(); -} - -const QVariantList& PX4AutoPilotPlugin::components(void) +const QVariantList& PX4AutoPilotPlugin::vehicleComponents(void) { if (_components.count() == 0 && !_incorrectParameterVersion) { Q_ASSERT(_uas); _airframeComponent = new AirframeComponent(_uas, this); Q_CHECK_PTR(_airframeComponent); + _airframeComponent->setupTriggerSignals(); _components.append(QVariant::fromValue((VehicleComponent*)_airframeComponent)); _radioComponent = new RadioComponent(_uas, this); Q_CHECK_PTR(_radioComponent); + _radioComponent->setupTriggerSignals(); _components.append(QVariant::fromValue((VehicleComponent*)_radioComponent)); _flightModesComponent = new FlightModesComponent(_uas, this); Q_CHECK_PTR(_flightModesComponent); + _flightModesComponent->setupTriggerSignals(); _components.append(QVariant::fromValue((VehicleComponent*)_flightModesComponent)); _sensorsComponent = new SensorsComponent(_uas, this); Q_CHECK_PTR(_sensorsComponent); + _sensorsComponent->setupTriggerSignals(); _components.append(QVariant::fromValue((VehicleComponent*)_sensorsComponent)); + _powerComponent = new PowerComponent(_uas, this); + Q_CHECK_PTR(_powerComponent); + _powerComponent->setupTriggerSignals(); + _components.append(QVariant::fromValue((VehicleComponent*)_powerComponent)); + _safetyComponent = new SafetyComponent(_uas, this); Q_CHECK_PTR(_safetyComponent); + _safetyComponent->setupTriggerSignals(); _components.append(QVariant::fromValue((VehicleComponent*)_safetyComponent)); } return _components; } -const QVariantMap& PX4AutoPilotPlugin::parameters(void) +/// This will perform various checks prior to signalling that the plug in ready +void PX4AutoPilotPlugin::_pluginReadyPreChecks(void) { - return _parameterFacts->factMap(); -} - -QUrl PX4AutoPilotPlugin::setupBackgroundImage(void) -{ - return QUrl::fromUserInput("qrc:/qml/px4fmu_2.x.png"); -} - -void PX4AutoPilotPlugin::_checkForIncorrectParameterVersion(void) -{ - if (parameters().contains("SENS_GYRO_XOFF")) { + // Check for older parameter version set + // FIXME: Firmware is moving to version stamp parameter set. Once that is complete the version stamp + // should be used instead. + if (parameterExists("SENS_GYRO_XOFF")) { _incorrectParameterVersion = true; - QGCMessageBox::warning(tr("Setup"), tr("This version of GroundControl can only perform vehicle setup on a newer version of firmware. " - "Please perform a Firmware Upgrade if you wish to use Vehicle Setup.")); - } - emit pluginReady(); + QGCMessageBox::warning("Setup", "This version of GroundControl can only perform vehicle setup on a newer version of firmware. " + "Please perform a Firmware Upgrade if you wish to use Vehicle Setup."); + } + + _pluginReady = true; + emit pluginReadyChanged(_pluginReady); } diff --git a/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h b/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h index 92e1499c033d6e8f18606bf9e1c2f90ea1cc521c..e757900d452541536a7390649492c4c44a033671 100644 --- a/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h +++ b/src/AutoPilotPlugins/PX4/PX4AutoPilotPlugin.h @@ -27,12 +27,13 @@ #include "AutoPilotPlugin.h" #include "AutoPilotPluginManager.h" #include "UASInterface.h" -#include "PX4ParameterFacts.h" +#include "PX4ParameterLoader.h" #include "AirframeComponent.h" #include "RadioComponent.h" #include "FlightModesComponent.h" #include "SensorsComponent.h" #include "SafetyComponent.h" +#include "PowerComponent.h" #include @@ -49,33 +50,35 @@ public: ~PX4AutoPilotPlugin(); // Overrides from AutoPilotPlugin - virtual bool pluginIsReady(void) const; - virtual const QVariantList& components(void); - virtual const QVariantMap& parameters(void); - virtual QUrl setupBackgroundImage(void); + virtual const QVariantList& vehicleComponents(void); static QList getModes(void); static QString getShortModeText(uint8_t baseMode, uint32_t customMode); static void clearStaticData(void); // These methods should only be used by objects within the plugin - AirframeComponent* airframeComponent(void) { return _airframeComponent; } - RadioComponent* radioComponent(void) { return _radioComponent; } - FlightModesComponent* flightModesComponent(void) { return _flightModesComponent; } - SensorsComponent* sensorsComponent(void) { return _sensorsComponent; } - SafetyComponent* safetyComponent(void) { return _safetyComponent; } - + AirframeComponent* airframeComponent(void) { return _airframeComponent; } + RadioComponent* radioComponent(void) { return _radioComponent; } + FlightModesComponent* flightModesComponent(void) { return _flightModesComponent; } + SensorsComponent* sensorsComponent(void) { return _sensorsComponent; } + SafetyComponent* safetyComponent(void) { return _safetyComponent; } + PowerComponent* powerComponent(void) { return _powerComponent; } + private slots: - void _checkForIncorrectParameterVersion(void); + void _pluginReadyPreChecks(void); private: - PX4ParameterFacts* _parameterFacts; + // Overrides from AutoPilotPlugin + virtual ParameterLoader* _getParameterLoader(void) { return _parameterFacts; } + + PX4ParameterLoader* _parameterFacts; QVariantList _components; AirframeComponent* _airframeComponent; RadioComponent* _radioComponent; FlightModesComponent* _flightModesComponent; SensorsComponent* _sensorsComponent; SafetyComponent* _safetyComponent; + PowerComponent* _powerComponent; bool _incorrectParameterVersion; ///< true: parameter version incorrect, setup not allowed }; diff --git a/src/AutoPilotPlugins/PX4/PX4Component.cc b/src/AutoPilotPlugins/PX4/PX4Component.cc index d43a2644ad3708287a1f91eb9a9e9181a8e0cdd8..81072833ab7a6ffb213d915c8122416ce480b7b4 100644 --- a/src/AutoPilotPlugins/PX4/PX4Component.cc +++ b/src/AutoPilotPlugins/PX4/PX4Component.cc @@ -25,26 +25,29 @@ /// @author Don Gagne #include "PX4Component.h" +#include "Fact.h" +#include "AutoPilotPlugin.h" PX4Component::PX4Component(UASInterface* uas, AutoPilotPlugin* autopilot, QObject* parent) : VehicleComponent(uas, autopilot, parent) { - bool fSuccess = connect(_paramMgr, SIGNAL(parameterUpdated(int, QString, QVariant)), this, SLOT(_parameterUpdated(int, QString, QVariant))); - Q_ASSERT(fSuccess); - Q_UNUSED(fSuccess); + Q_ASSERT(uas); + Q_ASSERT(autopilot); } -void PX4Component::_parameterUpdated(int compId, QString paramName, QVariant value) +void PX4Component::setupTriggerSignals(void) { - Q_UNUSED(value); - - if (compId == _paramMgr->getDefaultComponentId()) { - QStringList triggerList = setupCompleteChangedTriggerList(); - foreach(QString triggerParam, triggerList) { - if (paramName == triggerParam) { - emit setupCompleteChanged(setupComplete()); - return; - } - } + // Watch for changed on trigger list params + foreach (QString paramName, setupCompleteChangedTriggerList()) { + Fact* fact = _autopilot->getParameterFact(paramName); + + connect(fact, &Fact::valueChanged, this, &PX4Component::_triggerUpdated); } } + + +void PX4Component::_triggerUpdated(QVariant value) +{ + Q_UNUSED(value); + emit setupCompleteChanged(setupComplete()); +} diff --git a/src/AutoPilotPlugins/PX4/PX4Component.h b/src/AutoPilotPlugins/PX4/PX4Component.h index c84ca2ab1d1f7561eb7edf49b21dadfa7aec19c7..74455ceda59946efb651c0b80d0fc01644abb4e7 100644 --- a/src/AutoPilotPlugins/PX4/PX4Component.h +++ b/src/AutoPilotPlugins/PX4/PX4Component.h @@ -43,10 +43,12 @@ public: /// signal to be emitted. Last element is signalled by NULL. virtual QStringList setupCompleteChangedTriggerList(void) const = 0; + /// Should be called after the component is created (but not in constructor) to setup the + /// signals which are used to track parameter changes which affect setupComplete state. + void setupTriggerSignals(void); + private slots: - /// @brief Connected to QGCUASParamManagerInterface::parameterUpdated signal in order to signal - /// setupCompleteChanged at appropriate times. - void _parameterUpdated(int compId, QString paramName, QVariant value); + void _triggerUpdated(QVariant value); }; #endif diff --git a/src/AutoPilotPlugins/PX4/PX4ParameterFacts.cc b/src/AutoPilotPlugins/PX4/PX4ParameterFacts.cc deleted file mode 100644 index a7fdf87ac74cf1624840a34bcccedeaac6f0d932..0000000000000000000000000000000000000000 --- a/src/AutoPilotPlugins/PX4/PX4ParameterFacts.cc +++ /dev/null @@ -1,277 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @author Don Gagne - -#include "PX4ParameterFacts.h" -#include "QGCApplication.h" - -#include -#include - -Q_LOGGING_CATEGORY(PX4ParameterFactsMetaDataLog, "PX4ParameterFactsMetaDataLog") - -bool PX4ParameterFacts::_parameterMetaDataLoaded = false; -QMap PX4ParameterFacts::_mapParameterName2FactMetaData; - -PX4ParameterFacts::PX4ParameterFacts(UASInterface* uas, QObject* parent) : - FactLoader(uas, parent) -{ - Q_ASSERT(uas); -} - -void PX4ParameterFacts::deleteParameterFactMetaData(void) -{ - foreach (QString param, _mapParameterName2FactMetaData.keys()) { - delete _mapParameterName2FactMetaData[param]; - } - _mapParameterName2FactMetaData.clear(); -} - -/// Parse the Parameter element of parameter xml meta data -/// @param[in] xml stream reader -/// @param[in] group fact group associated with this Param element -/// @return Returns the meta data object for this parameter -FactMetaData* PX4ParameterFacts::_parseParameter(QXmlStreamReader& xml, const QString& group) -{ - Q_UNUSED(group); - - QString name = xml.attributes().value("name").toString(); - QString type = xml.attributes().value("type").toString(); - - qCDebug(PX4ParameterFactsMetaDataLog) << "Parsed parameter: " << name << type; - - Q_ASSERT(!name.isEmpty()); - Q_ASSERT(!type.isEmpty()); - - FactMetaData* metaData = new FactMetaData(); - Q_CHECK_PTR(metaData); - - // Convert type from string to FactMetaData::ValueType_t - - struct String2Type { - const char* strType; - FactMetaData::ValueType_t type; - }; - - static const struct String2Type rgString2Type[] = { - { "FLOAT", FactMetaData::valueTypeFloat }, - { "INT32", FactMetaData::valueTypeInt32 }, - }; - static const size_t crgString2Type = sizeof(rgString2Type) / sizeof(rgString2Type[0]); - - bool found = false; - for (size_t i=0; istrType) { - found = true; - metaData->type = info->type; - break; - } - } - Q_UNUSED(found); - Q_ASSERT(found); - - _initMetaData(metaData); - - // FIXME: Change to change the parameter build scheme in Firmware to get rid of ifdef dup problem - if (!_mapParameterName2FactMetaData.contains(name)) { - _mapParameterName2FactMetaData[name] = metaData; - } - - return metaData; -} - -/// This will fill in missing meta data such as range info -void PX4ParameterFacts::_initMetaData(FactMetaData* metaData) -{ - switch (metaData->type) { - case FactMetaData::valueTypeUint8: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeInt8: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeUint16: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeInt16: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeUint32: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeInt32: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeFloat: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - case FactMetaData::valueTypeDouble: - metaData->min = QVariant(std::numeric_limits::min()); - metaData->max = QVariant(std::numeric_limits::max()); - break; - } -} - -/// Converts a string to a typed QVariant -/// @param type Type for Fact which dictates the QVariant type as well -/// @param failOk - true: Don't assert if convert fails -/// @return Returns the correctly type QVariant -QVariant PX4ParameterFacts::_stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool failOk) -{ - QVariant var(string); - bool convertOk; - - Q_UNUSED(convertOk); - - switch (type) { - case FactMetaData::valueTypeUint8: - case FactMetaData::valueTypeUint16: - case FactMetaData::valueTypeUint32: - convertOk = var.convert(QVariant::UInt); - if (!failOk) { - Q_ASSERT(convertOk); - } - break; - case FactMetaData::valueTypeInt8: - case FactMetaData::valueTypeInt16: - case FactMetaData::valueTypeInt32: - convertOk = var.convert(QVariant::Int); - if (!failOk) { - Q_ASSERT(convertOk); - } - break; - case FactMetaData::valueTypeFloat: - case FactMetaData::valueTypeDouble: - convertOk = var.convert(QVariant::Double); - if (!failOk) { - Q_ASSERT(convertOk); - } - break; - } - - return var; -} - -/// Load Parameter Fact meta data -/// -/// The meta data comes from firmware parameters.xml file. -void PX4ParameterFacts::loadParameterFactMetaData(void) -{ - if (_parameterMetaDataLoaded) { - return; - } - _parameterMetaDataLoaded = true; - - qCDebug(PX4ParameterFactsMetaDataLog) << "Loading PX4 parameter fact meta data"; - - Q_ASSERT(_mapParameterName2FactMetaData.count() == 0); - - QFile xmlFile(":/AutoPilotPlugins/PX4/ParameterFactMetaData.xml"); - - Q_ASSERT(xmlFile.exists()); - - bool success = xmlFile.open(QIODevice::ReadOnly); - Q_UNUSED(success); - Q_ASSERT(success); - - QXmlStreamReader xml(xmlFile.readAll()); - xmlFile.close(); - - QString factGroup; - FactMetaData* metaData = NULL; - - while (!xml.atEnd()) { - if (xml.isStartElement()) { - QString elementName = xml.name().toString(); - if (elementName == "parameters") { - // Just move to next state - } else if (elementName == "group") { - factGroup = xml.attributes().value("name").toString(); - qCDebug(PX4ParameterFactsMetaDataLog) << "Found group: " << factGroup; - } else if (elementName == "parameter") { - metaData = _parseParameter(xml, factGroup); - } else if (elementName == "short_desc") { - Q_ASSERT(metaData); - QString text = xml.readElementText(); - metaData->shortDescription = text; - } else if (elementName == "long_desc") { - Q_ASSERT(metaData); - QString text = xml.readElementText(); - metaData->longDescription = text; - } else if (elementName == "default") { - Q_ASSERT(metaData); - QString text = xml.readElementText(); - // FIXME: failOk=true Is a hack to handle enum values in default value. Need - // to implement enums in the meta data. - metaData->defaultValue = _stringToTypedVariant(text, metaData->type, true /* failOk */); - } else if (elementName == "min") { - Q_ASSERT(metaData); - QString text = xml.readElementText(); - metaData->min = _stringToTypedVariant(text, metaData->type); - } else if (elementName == "max") { - Q_ASSERT(metaData); - QString text = xml.readElementText(); - metaData->max = _stringToTypedVariant(text, metaData->type); - metaData->shortDescription = text; - } else if (elementName == "unit") { - Q_ASSERT(metaData); - QString text = xml.readElementText(); - metaData->units = text; - } - } else if (xml.isEndElement() && xml.name() == "parameter") { - metaData = NULL; - } - xml.readNext(); - } -} - -void PX4ParameterFacts::clearStaticData(void) -{ - foreach(QString parameterName, _mapParameterName2FactMetaData.keys()) { - delete _mapParameterName2FactMetaData[parameterName]; - } - _mapParameterName2FactMetaData.clear(); - _parameterMetaDataLoaded = false; -} - -/// Override from FactLoad which connects the meta data to the fact -void PX4ParameterFacts::_addMetaDataToFact(Fact* fact) -{ - if (_mapParameterName2FactMetaData.contains(fact->name())) { - fact->setMetaData(_mapParameterName2FactMetaData[fact->name()]); - } else { - // Use generic meta data - FactLoader::_addMetaDataToFact(fact); - } -} diff --git a/src/AutoPilotPlugins/PX4/PX4ParameterLoader.cc b/src/AutoPilotPlugins/PX4/PX4ParameterLoader.cc new file mode 100644 index 0000000000000000000000000000000000000000..36e16035ab65c82ec5a5f6250d152c5039cb8cff --- /dev/null +++ b/src/AutoPilotPlugins/PX4/PX4ParameterLoader.cc @@ -0,0 +1,337 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2014 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#include "PX4ParameterLoader.h" +#include "QGCApplication.h" +#include "QGCLoggingCategory.h" + +#include +#include +#include +#include + +QGC_LOGGING_CATEGORY(PX4ParameterLoaderLog, "PX4ParameterLoaderLog") + +bool PX4ParameterLoader::_parameterMetaDataLoaded = false; +QMap PX4ParameterLoader::_mapParameterName2FactMetaData; + +PX4ParameterLoader::PX4ParameterLoader(AutoPilotPlugin* autopilot, UASInterface* uas, QObject* parent) : + ParameterLoader(autopilot, uas, parent) +{ + Q_ASSERT(uas); +} + +/// Converts a string to a typed QVariant +/// @param string String to convert +/// @param type Type for Fact which dictates the QVariant type as well +/// @param convertOk Returned: true: conversion success, false: conversion failure +/// @return Returns the correctly type QVariant +QVariant PX4ParameterLoader::_stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool* convertOk) +{ + QVariant var(string); + + int convertTo = QVariant::Int; // keep compiler warning happy + switch (type) { + case FactMetaData::valueTypeUint8: + case FactMetaData::valueTypeUint16: + case FactMetaData::valueTypeUint32: + convertTo = QVariant::UInt; + break; + case FactMetaData::valueTypeInt8: + case FactMetaData::valueTypeInt16: + case FactMetaData::valueTypeInt32: + convertTo = QVariant::Int; + break; + case FactMetaData::valueTypeFloat: + convertTo = QMetaType::Float; + break; + case FactMetaData::valueTypeDouble: + convertTo = QVariant::Double; + break; + } + + *convertOk = var.convert(convertTo); + + return var; +} + +/// Load Parameter Fact meta data +/// +/// The meta data comes from firmware parameters.xml file. +void PX4ParameterLoader::loadParameterFactMetaData(void) +{ + if (_parameterMetaDataLoaded) { + return; + } + _parameterMetaDataLoaded = true; + + qCDebug(PX4ParameterLoaderLog) << "Loading PX4 parameter fact meta data"; + + Q_ASSERT(_mapParameterName2FactMetaData.count() == 0); + + // First look for meta data that comes from a firmware download. Fall back to resource if not there. + QSettings settings; + QDir parameterDir = QFileInfo(settings.fileName()).dir(); + QString parameterFilename = parameterDir.filePath("PX4ParameterFactMetaData.xml"); + if (!QFile(parameterFilename).exists()) { + parameterFilename = ":/AutoPilotPlugins/PX4/ParameterFactMetaData.xml"; + } + + qCDebug(PX4ParameterLoaderLog) << "Loading parameter meta data:" << parameterFilename; + + QFile xmlFile(parameterFilename); + Q_ASSERT(xmlFile.exists()); + + bool success = xmlFile.open(QIODevice::ReadOnly); + Q_UNUSED(success); + Q_ASSERT(success); + + QXmlStreamReader xml(xmlFile.readAll()); + xmlFile.close(); + if (xml.hasError()) { + qWarning() << "Badly formed XML" << xml.errorString(); + return; + } + + QString factGroup; + FactMetaData* metaData = NULL; + int xmlState = XmlStateNone; + bool badMetaData = true; + + while (!xml.atEnd()) { + if (xml.isStartElement()) { + QString elementName = xml.name().toString(); + + if (elementName == "parameters") { + if (xmlState != XmlStateNone) { + qWarning() << "Badly formed XML"; + return; + } + xmlState = XmlStateFoundParameters; + + } else if (elementName == "version") { + if (xmlState != XmlStateFoundParameters) { + qWarning() << "Badly formed XML"; + return; + } + xmlState = XmlStateFoundVersion; + + bool convertOk; + QString strVersion = xml.readElementText(); + int intVersion = strVersion.toInt(&convertOk); + if (!convertOk) { + qWarning() << "Badly formed XML"; + return; + } + if (intVersion <= 2) { + // We can't read these old files + qDebug() << "Parameter version stamp too old, skipping load. Found:" << intVersion << "Want: 3 File:" << parameterFilename; + return; + } + + + } else if (elementName == "group") { + if (xmlState != XmlStateFoundVersion) { + // We didn't get a version stamp, assume older version we can't read + qDebug() << "Parameter version stamp not found, skipping load" << parameterFilename; + return; + } + xmlState = XmlStateFoundGroup; + + if (!xml.attributes().hasAttribute("name")) { + qWarning() << "Badly formed XML"; + return; + } + factGroup = xml.attributes().value("name").toString(); + qCDebug(PX4ParameterLoaderLog) << "Found group: " << factGroup; + + } else if (elementName == "parameter") { + if (xmlState != XmlStateFoundGroup) { + qWarning() << "Badly formed XML"; + return; + } + xmlState = XmlStateFoundParameter; + + if (!xml.attributes().hasAttribute("name") || !xml.attributes().hasAttribute("type")) { + qWarning() << "Badly formed XML"; + return; + } + + QString name = xml.attributes().value("name").toString(); + QString type = xml.attributes().value("type").toString(); + QString strDefault = xml.attributes().value("default").toString(); + + qCDebug(PX4ParameterLoaderLog) << "Found parameter name:" << name << " type:" << type << " default:" << strDefault; + + // Convert type from string to FactMetaData::ValueType_t + + struct String2Type { + const char* strType; + FactMetaData::ValueType_t type; + }; + + static const struct String2Type rgString2Type[] = { + { "FLOAT", FactMetaData::valueTypeFloat }, + { "INT32", FactMetaData::valueTypeInt32 }, + }; + static const size_t crgString2Type = sizeof(rgString2Type) / sizeof(rgString2Type[0]); + + bool found = false; + FactMetaData::ValueType_t foundType; + for (size_t i=0; istrType) { + found = true; + foundType = info->type; + break; + } + } + if (!found) { + qWarning() << "Parameter meta data with bad type:" << type << " name:" << name; + return; + } + + // Now that we know type we can create meta data object and add it to the system + + metaData = new FactMetaData(foundType); + Q_CHECK_PTR(metaData); + if (_mapParameterName2FactMetaData.contains(name)) { + // We can't trust the meta dafa since we have dups + qCDebug(PX4ParameterLoaderLog) << "Duplicate parameter found:" << name; + badMetaData = true; + // Reset to default meta data + _mapParameterName2FactMetaData[name] = metaData; + } else { + _mapParameterName2FactMetaData[name] = metaData; + metaData->setGroup(factGroup); + + if (xml.attributes().hasAttribute("default")) { + bool convertOk; + QVariant varDefault = _stringToTypedVariant(strDefault, metaData->type(), &convertOk); + if (convertOk) { + metaData->setDefaultValue(varDefault); + } else { + // Non-fatal + qCDebug(PX4ParameterLoaderLog) << "Parameter meta data with bad default value, name:" << name << " type:" << type << " default:" << strDefault; + } + } + } + + } else { + // We should be getting meta data now + if (xmlState != XmlStateFoundParameter) { + qWarning() << "Badly formed XML"; + return; + } + + if (!badMetaData) { + if (elementName == "short_desc") { + Q_ASSERT(metaData); + QString text = xml.readElementText(); + qCDebug(PX4ParameterLoaderLog) << "Short description:" << text; + metaData->setShortDescription(text); + + } else if (elementName == "long_desc") { + Q_ASSERT(metaData); + QString text = xml.readElementText(); + qCDebug(PX4ParameterLoaderLog) << "Long description:" << text; + metaData->setLongDescription(text); + + } else if (elementName == "min") { + Q_ASSERT(metaData); + QString text = xml.readElementText(); + qCDebug(PX4ParameterLoaderLog) << "Min:" << text; + bool convertOk; + QVariant varMin = _stringToTypedVariant(text, metaData->type(), &convertOk); + if (convertOk) { + metaData->setMin(varMin); + } else { + // Non-fatal + qDebug() << "Parameter meta data with bad min value:" << text; + } + + } else if (elementName == "max") { + Q_ASSERT(metaData); + QString text = xml.readElementText(); + qCDebug(PX4ParameterLoaderLog) << "Max:" << text; + bool convertOk; + QVariant varMax = _stringToTypedVariant(text, metaData->type(), &convertOk); + if (convertOk) { + metaData->setMax(varMax); + } else { + // Non-fatal + qDebug() << "Parameter meta data with bad max value:" << text; + } + + } else if (elementName == "unit") { + Q_ASSERT(metaData); + QString text = xml.readElementText(); + qCDebug(PX4ParameterLoaderLog) << "Unit:" << text; + metaData->setUnits(text); + + } else { + qDebug() << "Unknown element in XML: " << elementName; + } + } + } + } else if (xml.isEndElement()) { + QString elementName = xml.name().toString(); + + if (elementName == "parameter") { + // Done loading this one parameter + metaData = NULL; + badMetaData = false; + xmlState = XmlStateFoundGroup; + } else if (elementName == "group") { + xmlState = XmlStateFoundVersion; + } else if (elementName == "parameters") { + xmlState = XmlStateFoundParameters; + } + } + xml.readNext(); + } +} + +void PX4ParameterLoader::clearStaticData(void) +{ + foreach(QString parameterName, _mapParameterName2FactMetaData.keys()) { + delete _mapParameterName2FactMetaData[parameterName]; + } + _mapParameterName2FactMetaData.clear(); + _parameterMetaDataLoaded = false; +} + +/// Override from FactLoad which connects the meta data to the fact +void PX4ParameterLoader::_addMetaDataToFact(Fact* fact) +{ + if (_mapParameterName2FactMetaData.contains(fact->name())) { + fact->setMetaData(_mapParameterName2FactMetaData[fact->name()]); + } else { + // Use generic meta data + ParameterLoader::_addMetaDataToFact(fact); + } +} diff --git a/src/AutoPilotPlugins/PX4/PX4ParameterFacts.h b/src/AutoPilotPlugins/PX4/PX4ParameterLoader.h similarity index 71% rename from src/AutoPilotPlugins/PX4/PX4ParameterFacts.h rename to src/AutoPilotPlugins/PX4/PX4ParameterLoader.h index e39ba6eac9c8ba72a7a4dc9165e9c3a877b46ccb..c90631c0ec2a4286fa347cddd4fd3ea341eba0bf 100644 --- a/src/AutoPilotPlugins/PX4/PX4ParameterFacts.h +++ b/src/AutoPilotPlugins/PX4/PX4ParameterLoader.h @@ -21,44 +21,55 @@ ======================================================================*/ -#ifndef PX4ParameterFacts_h -#define PX4ParameterFacts_h +#ifndef PX4PARAMETERLOADER_H +#define PX4PARAMETERLOADER_H #include #include #include #include +#include "ParameterLoader.h" #include "FactSystem.h" #include "UASInterface.h" +#include "AutoPilotPlugin.h" /// @file /// @author Don Gagne -Q_DECLARE_LOGGING_CATEGORY(PX4ParameterFactsMetaDataLog) +Q_DECLARE_LOGGING_CATEGORY(PX4ParameterLoaderLog) /// Collection of Parameter Facts for PX4 AutoPilot -class PX4ParameterFacts : public FactLoader +class PX4ParameterLoader : public ParameterLoader { Q_OBJECT public: /// @param uas Uas which this set of facts is associated with - PX4ParameterFacts(UASInterface* uas, QObject* parent = NULL); + PX4ParameterLoader(AutoPilotPlugin* autpilot,UASInterface* uas, QObject* parent = NULL); + + /// Override from ParameterLoader + virtual QString getDefaultComponentIdParam(void) const { return QString("SYS_AUTOSTART"); } static void loadParameterFactMetaData(void); - static void deleteParameterFactMetaData(void); static void clearStaticData(void); private: - // Overrides from FactLoader + enum { + XmlStateNone, + XmlStateFoundParameters, + XmlStateFoundVersion, + XmlStateFoundGroup, + XmlStateFoundParameter, + XmlStateDone + }; + + // Overrides from ParameterLoader virtual void _addMetaDataToFact(Fact* fact); // Class methods - static FactMetaData* _parseParameter(QXmlStreamReader& xml, const QString& group); - static void _initMetaData(FactMetaData* metaData); - static QVariant _stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool failOk = false); + static QVariant _stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool* convertOk); static bool _parameterMetaDataLoaded; ///< true: parameter meta data already loaded static QMap _mapParameterName2FactMetaData; ///< Maps from a parameter name to FactMetaData diff --git a/src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml b/src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml index bde8da849f57ed7ade9be84fc6dd7d161e76737b..409dd51805876e354c429e0ca943a22298f1775d 100644 --- a/src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml +++ b/src/AutoPilotPlugins/PX4/ParameterFactMetaData.xml @@ -1,481 +1,506 @@ - + 3 + + + Body angular rate process noise + + + Body angular acceleration process noise + + + Acceleration process noise + + + Magnet field vector process noise + + + Gyro measurement noise + + + Accel measurement noise + + + Mag measurement noise + + + Moment of inertia matrix diagonal entry (1, 1) + kg*m^2 + + + Moment of inertia matrix diagonal entry (2, 2) + kg*m^2 + + + Moment of inertia matrix diagonal entry (3, 3) + kg*m^2 + + + Moment of inertia enabled in estimator + If set to != 0 the moment of inertia will be used in the estimator + 0 + 1 + + - + Empty cell voltage Defines the voltage where a single cell of the battery is considered empty. - 3.4 + V - + Full cell voltage Defines the voltage where a single cell of the battery is considered full. - 4.2 + V - + Voltage drop per cell on 100% load This implicitely defines the internal resistance to maximum current ratio and assumes linearity. - 0.07 + V - + Number of cells Defines the number of cells the attached battery consists of. - 3 + S - + Battery capacity Defines the capacity of the attached battery. - -1.0 + mA - + Scaling factor for battery voltage sensor on PX4IO - 10000 - + + CONFIG_ARCH_BOARD_PX4FMU_V2 Scaling factor for battery voltage sensor on FMU v2 - 0.0082 - - - Scaling factor for battery voltage sensor on AeroCore - For R70 = 133K, R71 = 10K --> scale = 1.8 * 143 / (4096*10) = 0.0063 - 0.0063 - - Scaling factor for battery voltage sensor on FMU v1 - FMUv1 standalone: 1/(10 / (47+10)) * (3.3 / 4095) = 0.00459340659 - FMUv1 with PX4IO: 0.00459340659 - FMUv1 with PX4IOAR: (3.3f * 52.0f / 5.0f / 4095.0f) = 0.00838095238 - 0.00459340659 - - + Scaling factor for battery current sensor - 0.0124 - + Circuit breaker for power supply check Setting this parameter to 894281 will disable the power valid checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 0 0 894281 - + Circuit breaker for rate controller output Setting this parameter to 140253 will disable the rate controller uORB publication. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 0 0 140253 - + Circuit breaker for IO safety Setting this parameter to 894281 will disable IO safety. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 0 0 22027 - + Circuit breaker for airspeed sensor Setting this parameter to 162128 will disable the check for an airspeed sensor. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 0 0 162128 - + Circuit breaker for flight termination Setting this parameter to 121212 will disable the flight termination action. --> The IO driver will not do flight termination if requested by the FMU WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 121212 0 121212 - + Circuit breaker for engine failure detection Setting this parameter to 284953 will disable the engine failure detection. If the aircraft is in engine failure mode the enine failure flag will be set to healthy WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 284953 0 284953 - - Circuit breaker for gps failure detection - Setting this parameter to 240024 will disable the gps failure detection. - If the aircraft is in gps failure mode the gps failure flag will be - set to healthy - WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK - 240024 + + + + Datalink loss mode enabled + Set to 1 to enable actions triggered when the datalink is lost. + 0 + 1 + + + After this amount of seconds without datalink the data link lost mode triggers + 0 + 30 + second + + + After a data link loss: after this this amount of seconds with a healthy datalink the 'datalink loss' + flag is set back to false + 0 + 30 + second + + + Engine failure triggers only above this throttle value + 0.0 + 1.0 + + + Engine failure triggers only below this current/throttle value + 0.0 + 7.0 + + + Engine failure triggers only if the throttle threshold and the + current to throttle threshold are violated for this time + 0.0 + 7.0 + second + + + After this amount of seconds without RC connection the rc lost flag is set to true + 0 + 35 + second + + + If not equal to zero the commander will automatically save parameters to persistent storage once changed. + Default is on, as the interoperability with currently deployed GCS solutions depends on parameters + being sticky. Developers can default it to off 0 - 240024 + 1 - - + + Comms hold wait time The amount of time in seconds the system should wait at the comms hold waypoint - 120.0 0.0 seconds - + Comms hold Lat Latitude of comms hold waypoint - -266072120 0 degrees * 1e7 - + Comms hold Lon Longitude of comms hold waypoint - 1518453890 0 degrees * 1e7 - + Comms hold alt Altitude of comms hold waypoint - 600.0 0.0 m - + Aifield hole wait time The amount of time in seconds the system should wait at the airfield home waypoint - 120.0 0.0 seconds - + Number of allowed Datalink timeouts After more than this number of data link timeouts the aircraft returns home directly - 2 0 1000 - timeouts - + Skip comms hold wp If set to 1 the system will skip the comms hold wp on data link loss and will directly fly to airfield home - 0 0 1 - + Airfield home Lat Latitude of airfield home waypoint - -265847810 0 degrees * 1e7 - + Airfield home Lon Longitude of airfield home waypoint - 1518423250 0 degrees * 1e7 - + Airfield home alt Altitude of airfield home waypoint - 600.0 0.0 m - + Attitude Time Constant This defines the latency between a step input and the achieved setpoint (inverse to a P gain). Half a second is a good start value and fits for most average systems. Smaller systems may require smaller values, but as this will wear out servos faster, the value should only be decreased as needed. - 0.5 0.4 1.0 seconds - + Pitch rate proportional gain This defines how much the elevator input will be commanded depending on the current body angular rate error. - 0.05 - + Pitch rate integrator gain This gain defines how much control response will result out of a steady state error. It trims any constant error. - 0.0 0.0 50.0 - + Maximum positive / up pitch rate This limits the maximum pitch up angular rate the controller will output (in degrees per second). Setting a value of zero disables the limit. - 0.0 0.0 90.0 deg/s - + Maximum negative / down pitch rate This limits the maximum pitch down up angular rate the controller will output (in degrees per second). Setting a value of zero disables the limit. - 0.0 0.0 90.0 deg/s - + Pitch rate integrator limit The portion of the integrator part in the control surface deflection is limited to this value - 0.2 0.0 1.0 - + Roll to Pitch feedforward gain This compensates during turns and ensures the nose stays level. - 0.0 0.0 2.0 - + Roll rate proportional Gain This defines how much the aileron input will be commanded depending on the current body angular rate error. - 0.05 - + Roll rate integrator Gain This gain defines how much control response will result out of a steady state error. It trims any constant error. - 0.0 0.0 100.0 - + Roll Integrator Anti-Windup The portion of the integrator part in the control surface deflection is limited to this value. - 0.2 0.0 1.0 - + Maximum Roll Rate This limits the maximum roll rate the controller will output (in degrees per second). Setting a value of zero disables the limit. - 0.0 0.0 90.0 deg/s - + Yaw rate proportional gain This defines how much the rudder input will be commanded depending on the current body angular rate error. - 0.05 - + Yaw rate integrator gain This gain defines how much control response will result out of a steady state error. It trims any constant error. - 0.0 0.0 50.0 - + Yaw rate integrator limit The portion of the integrator part in the control surface deflection is limited to this value - 0.2 0.0 1.0 - + Maximum Yaw Rate This limits the maximum yaw rate the controller will output (in degrees per second). Setting a value of zero disables the limit. - 0.0 0.0 90.0 deg/s - + Roll rate feed forward Direct feed forward from rate setpoint to control surface output - 0.3 0.0 10.0 - + Pitch rate feed forward Direct feed forward from rate setpoint to control surface output - 0.4 0.0 10.0 - + Yaw rate feed forward Direct feed forward from rate setpoint to control surface output - 0.3 0.0 10.0 - + Minimal speed for yaw coordination For airspeeds above this value, the yaw rate is calculated for a coordinated turn. Set to a very high value to disable. - 1000.0 m/s - + + Method used for yaw coordination + The param value sets the method used to calculate the yaw rate + 0: open-loop zero lateral acceleration based on kinematic constraints + 1: closed-loop: try to reduce lateral acceleration to 0 by measuring the acceleration + 0 + 1 + m/s + + Minimum Airspeed If the airspeed falls below this value, the TECS controller will try to increase airspeed more aggressively. - 13.0 0.0 - 30.0 + 40 m/s - + Trim Airspeed The TECS controller tries to fly at this airspeed. - 20.0 0.0 - 30.0 + 40 m/s - + Maximum Airspeed If the airspeed is above this value, the TECS controller will try to decrease airspeed more aggressively. - 50.0 0.0 - 30.0 + 40 m/s - + Roll Setpoint Offset An airframe specific offset of the roll setpoint in degrees, the value is added to the roll setpoint and should correspond to the typical cruise speed of the airframe. - 0.0 -90.0 90.0 deg - + Pitch Setpoint Offset An airframe specific offset of the pitch setpoint in degrees, the value is added to the pitch setpoint and should correspond to the typical cruise speed of the airframe. - 0.0 -90.0 90.0 deg - + Max Manual Roll Max roll for manual control in attitude stabilized mode - 45.0 0.0 90.0 deg - + Max Manual Pitch Max pitch for manual control in attitude stabilized mode - 45.0 0.0 90.0 deg - + Minimum descent rate This is the sink rate of the aircraft with the throttle set to THR_MIN and flown at the same airspeed as used to measure FW_T_CLMB_MAX. - 2.0 - + Maximum descent rate This sets the maximum descent rate that the controller will use. If this value is too large, the aircraft can over-speed on descent. This should be set to a value that can be achieved without exceeding the lower pitch angle limit and without over-speeding the aircraft. - 5.0 - + TECS time constant This is the time constant of the TECS control algorithm (in seconds). Smaller values make it faster to respond, larger values make it slower to respond. - 5.0 - + TECS Throttle time constant This is the time constant of the TECS throttle control algorithm (in seconds). Smaller values make it faster to respond, larger values make it slower to respond. - 8.0 - + Throttle damping factor This is the damping gain for the throttle demand loop. Increase to add damping to correct for oscillations in speed and height. - 0.5 - + Integrator gain This is the integrator gain on the control loop. Increasing this gain increases the speed at which speed and height offsets are trimmed out, but reduces damping and increases overshoot. - 0.1 - + Maximum vertical acceleration This is the maximum vertical acceleration (in metres/second square) either up or down that the controller will use to correct speed or height errors. The default value of 7 m/s/s (equivalent to +- 0.7 g) allows for reasonably aggressive pitch changes if required to recover from under-speed conditions. - 7.0 - - Complementary filter "omega" parameter for height + + Complementary filter "omega" parameter for height This is the cross-over frequency (in radians/second) of the complementary filter used to fuse vertical acceleration and barometric height to obtain an estimate of height rate and height. Increasing this frequency weights the solution more towards use of the barometer, whilst reducing it weights the solution more towards use of the accelerometer data. - 3.0 - - Complementary filter "omega" parameter for speed + + Complementary filter "omega" parameter for speed This is the cross-over frequency (in radians/second) of the complementary filter used to fuse longitudinal acceleration and airspeed to obtain an improved airspeed estimate. Increasing this frequency weights the solution more towards use of the arispeed sensor, whilst reducing it weights the solution more towards use of the accelerometer data. - 2.0 - + Roll -> Throttle feedforward Increasing this gain turn increases the amount of throttle that will be used to compensate for the additional drag created by turning. @@ -485,9 +510,8 @@ aircraft initially gains energy in turns. Efficient high aspect-ratio aircraft (eg powered sailplanes) can use a lower value, whereas inefficient low aspect-ratio models (eg delta wings) can use a higher value. - 10.0 - + Speed <--> Altitude priority This parameter adjusts the amount of weighting that the pitch control applies to speed vs height errors. Setting it to 0.0 will cause the @@ -499,159 +523,145 @@ control to simultaneously control height and speed. Note to Glider Pilots - set this parameter to 2.0 (The glider will adjust its pitch angle to maintain airspeed, ignoring changes in height). - 1.0 - + Pitch damping factor This is the damping gain for the pitch demand loop. Increase to add damping to correct for oscillations in height. The default value of 0.0 will work well provided the pitch to servo controller has been tuned properly. - 0.0 - + Height rate P factor - 0.05 - + Height rate FF factor - 0.0 - + Speed rate P factor - 0.05 - - + + Loiter time The amount of time in seconds the system should do open loop loiter and wait for gps recovery before it goes into flight termination. - 30.0 0.0 seconds - + Open loop loiter roll Roll in degrees during the open loop loiter - 15.0 0.0 30.0 deg - + Open loop loiter pitch Pitch in degrees during the open loop loiter - 0.0 -30.0 30.0 deg - + Open loop loiter thrust Thrust value which is set during the open loop loiter - 0.7 0.0 1.0 - - Enable geofence - Set to 1 to enable geofence. - Defaults to 1 because geofence is only enabled when the geofence.txt file is present. - 1 + + Geofence mode + 0 = disabled, 1 = geofence file only, 2 = max horizontal (GF_MAX_HOR_DIST) and vertical (GF_MAX_VER_DIST) distances, 3 = both 0 - 1 + 3 - + Geofence altitude mode Select which altitude reference should be used 0 = WGS84, 1 = AMSL - 0 0 1 - + Geofence source Select which position source should be used. Selecting GPS instead of global position makes sure that there is no dependence on the position estimator 0 = global position, 1 = GPS - 0 0 1 - + Geofence counter limit Set how many subsequent position measurements outside of the fence are needed before geofence violation is triggered - -1 -1 10 + + Max horizontal distance in meters + Set to > 0 to activate RTL if horizontal distance to home exceeds this value. + + + Max vertical distance in meters + Set to > 0 to activate RTL if vertical distance to home exceeds this value. + - + L1 period This is the L1 distance and defines the tracking point ahead of the aircraft its following. A value of 25 meters works for most aircraft. Shorten slowly during tuning until response is sharp without oscillation. - 25.0 1.0 100.0 - + L1 damping Damping factor for L1 control. - 0.75 0.6 0.9 - + Cruise throttle This is the throttle setting required to achieve the desired cruise speed. Most airframes have a value of 0.5-0.7. - 0.7 0.0 1.0 - + Throttle max slew rate Maximum slew rate for the commanded throttle - 0.0 0.0 1.0 - + Negative pitch limit The minimum negative pitch the controller will output. - -45.0 -60.0 0.0 degrees - + Positive pitch limit The maximum positive pitch the controller will output. - 45.0 0.0 60.0 degrees - + Controller roll limit The maximum roll the controller will output. - 45.0 0.0 degrees - + Throttle limit max This is the maximum throttle % that can be used by the controller. For overpowered aircraft, this should be reduced to a value that provides sufficient thrust to climb at the maximum pitch angle PTCH_MAX. - 1.0 - + Throttle limit min This is the minimum throttle % that can be used by the controller. For electric aircraft this will normally be set to zero, but can be set @@ -660,23 +670,20 @@ some aerodynamic drag from a turning prop to improve the descent rate. For aircraft with internal combustion engine this parameter should be set for desired idle rpm. - 0.0 - + Throttle limit value before flare This throttle value will be set as throttle limit at FW_LND_TLALT, before arcraft will flare. - 1.0 - + Climbout Altitude difference If the altitude error exceeds this parameter, the system will climb out with maximum throttle and minimum airspeed until it is closer than this distance to the desired altitude. Mostly used for takeoff waypoints / modes. Set to zero to disable climbout mode (not recommended). - 25.0 - + Maximum climb rate This is the best climb rate that the aircraft can achieve with the throttle set to THR_MAX and the airspeed set to the @@ -690,2349 +697,2733 @@ demand required to climb and maintain speed is noticeably less than FW_THR_MAX, then either FW_T_CLMB_MAX should be increased or FW_THR_MAX reduced. - 5.0 - + Landing slope angle - 5.0 - + FW_LND_HVIRT - 10.0 - + Landing flare altitude (relative to landing altitude) - 8.0 meter - + Landing throttle limit altitude (relative landing altitude) Default of -1.0f lets the system default to applying throttle limiting at 2/3 of the flare altitude. - -1.0 meter - + Landing heading hold horizontal distance - 15.0 - + Enable or disable usage of terrain estimate during landing 0: disabled, 1: enabled - 0 + + + + + Multicopter max climb rate + Maximum vertical velocity allowed to trigger a land (m/s up and down) + + + Multicopter max horizontal velocity + Maximum horizontal velocity allowed to trigger a land (m/s) + + + Multicopter max rotation + Maximum allowed around each axis to trigger a land (degrees per second) + + + Multicopter max throttle + Maximum actuator output on throttle before triggering a land + + + Fixedwing max horizontal velocity + Maximum horizontal velocity allowed to trigger a land (m/s) + + + Fixedwing max climb rate + Maximum vertical velocity allowed to trigger a land (m/s up and down) + + + Airspeed max + Maximum airspeed allowed to trigger a land (m/s) - + Enable launch detection - 0 0 1 - + Catapult accelerometer theshold LAUN_CAT_A * LAUN_CAT_T serves as threshold to trigger launch detection. - 30.0 0 - + Catapult time theshold LAUN_CAT_A * LAUN_CAT_T serves as threshold to trigger launch detection. - 0.05 0 - + Motor delay Delay between starting attitude control and powering up the throttle (giving throttle control to the controller) Before this timespan is up the throttle will be set to LAUN_THR_PRE, set to 0 to deactivate - 0.0 0 seconds - + Maximum pitch before the throttle is powered up (during motor delay phase) This is an extra limit for the maximum pitch which is imposed in the phase before the throttle turns on. This allows to limit the maximum pitch angle during a bungee launch (make the launch less steep). - 30.0 0 45 deg - + Throttle setting while detecting launch The throttle is set to this value while the system is waiting for the take-off. - 0.0 0 1 - + MAVLink system ID - 1 - + MAVLink component ID - 50 - + MAVLink type - MAV_TYPE_FIXED_WING - - Use/Accept HIL GPS message (even if not in HIL mode) - If set to 1 incomming HIL GPS messages are parsed - 0 + + Use/Accept HIL GPS message (even if not in HIL mode) + If set to 1 incomming HIL GPS messages are parsed. - - Forward external setpoint messages - If set to 1 incomming external setpoint messages will be directly forwarded to the controllers if in offboard - control mode - 1 + + Forward external setpoint messages + If set to 1 incomming external setpoint messages will be directly forwarded to the controllers if in offboard + control mode + + + + + Enables testmode (Identify) of MKBLCTRL Driver - + Take-off altitude Even if first waypoint has altitude less then MIS_TAKEOFF_ALT above home position, system will climb to MIS_TAKEOFF_ALT on takeoff, then go to waypoint. - 10.0 meters - + Enable persistent onboard mission storage When enabled, missions that have been uploaded by the GCS are stored and reloaded after reboot persistently. - 1 0 1 - + Maximal horizontal distance from home to first waypoint Failsafe check to prevent running mission stored from previous flight at a new takeoff location. Set a value of zero or less to disable. The mission will not be started if the current waypoint is more distant than MIS_DIS_1WP from the current position. - 500 0 1000 - + Altitude setpoint mode 0: the system will follow a zero order hold altitude setpoint 1: the system will follow a first order hold altitude setpoint values follow the definition in enum mission_altitude_mode - 0 0 1 - + + Multirotor only. Yaw setpoint mode + 0: Set the yaw heading to the yaw value specified for the destination waypoint. + 1: Maintain a yaw heading pointing towards the next waypoint. + 2: Maintain a yaw heading that always points to the home location. + 3: Maintain a yaw heading that always points away from the home location (ie: back always faces home). + The values are defined in the enum mission_altitude_mode + 0 + 3 + + Loiter radius (FW only) Default value of loiter radius for missions, loiter, RTL, etc. (fixedwing only). - 50.0 - 0.0 + 20 + 200 meters - + Acceptance Radius Default acceptance radius, overridden by acceptance radius of waypoint if set. - 25.0 - 1.0 + 0.05 + 200 meters - + Set OBC mode for data link loss If set to 1 the behaviour on data link loss is set to a mode according to the OBC rules - 0 0 - + Set OBC mode for rc loss If set to 1 the behaviour on data link loss is set to a mode according to the OBC rules - 0 0 - + Roll P gain Roll proportional gain, i.e. desired angular speed in rad/s for error 1 rad. - 6.0 0.0 - + Roll rate P gain Roll rate proportional gain, i.e. control output for angular speed error 1 rad/s. - 0.1 0.0 - + Roll rate I gain Roll rate integral gain. Can be set to compensate static thrust difference or gravity center offset. - 0.0 0.0 - + Roll rate D gain Roll rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again. - 0.002 0.0 - + + Roll rate feedforward + Improves tracking performance. + 0.0 + + Pitch P gain Pitch proportional gain, i.e. desired angular speed in rad/s for error 1 rad. - 6.0 0.0 1/s - + Pitch rate P gain Pitch rate proportional gain, i.e. control output for angular speed error 1 rad/s. - 0.1 0.0 - + Pitch rate I gain Pitch rate integral gain. Can be set to compensate static thrust difference or gravity center offset. - 0.0 0.0 - + Pitch rate D gain Pitch rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again. - 0.002 0.0 - + + Pitch rate feedforward + Improves tracking performance. + 0.0 + + Yaw P gain Yaw proportional gain, i.e. desired angular speed in rad/s for error 1 rad. - 2.0 0.0 1/s - + Yaw rate P gain Yaw rate proportional gain, i.e. control output for angular speed error 1 rad/s. - 0.3 0.0 - + Yaw rate I gain Yaw rate integral gain. Can be set to compensate static thrust difference or gravity center offset. - 0.0 0.0 - + Yaw rate D gain Yaw rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again. - 0.0 0.0 - + + Yaw rate feedforward + Improves tracking performance. + 0.0 + + Yaw feed forward Feed forward weight for manual yaw control. 0 will give slow responce and no overshot, 1 - fast responce and big overshot. - 0.5 0.0 1.0 - + + Max roll rate + Limit for roll rate, has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. + 0.0 + 360.0 + deg/s + + + Max pitch rate + Limit for pitch rate, has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. + 0.0 + 360.0 + deg/s + + Max yaw rate Limit for yaw rate, has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. - 120.0 0.0 360.0 deg/s - - Max manual roll - 35.0 + + Max acro roll rate 0.0 - 90.0 - deg + 360.0 + deg/s - - Max manual pitch - 35.0 + + Max acro pitch rate 0.0 - 90.0 - deg + 360.0 + deg/s - - Max manual yaw rate - 120.0 + + Max acro yaw rate + 0.0 + deg/s + + + Roll P gain + Roll proportional gain, i.e. desired angular speed in rad/s for error 1 rad. 0.0 + + + Roll rate P gain + Roll rate proportional gain, i.e. control output for angular speed error 1 rad/s. + 0.0 + + + Roll rate I gain + Roll rate integral gain. Can be set to compensate static thrust difference or gravity center offset. + 0.0 + + + Roll rate D gain + Roll rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again. + 0.0 + + + Pitch P gain + Pitch proportional gain, i.e. desired angular speed in rad/s for error 1 rad. + 0.0 + 1/s + + + Pitch rate P gain + Pitch rate proportional gain, i.e. control output for angular speed error 1 rad/s. + 0.0 + + + Pitch rate I gain + Pitch rate integral gain. Can be set to compensate static thrust difference or gravity center offset. + 0.0 + + + Pitch rate D gain + Pitch rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again. + 0.0 + + + Yaw P gain + Yaw proportional gain, i.e. desired angular speed in rad/s for error 1 rad. + 0.0 + 1/s + + + Yaw rate P gain + Yaw rate proportional gain, i.e. control output for angular speed error 1 rad/s. + 0.0 + + + Yaw rate I gain + Yaw rate integral gain. Can be set to compensate static thrust difference or gravity center offset. + 0.0 + + + Yaw rate D gain + Yaw rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again. + 0.0 + + + Yaw feed forward + Feed forward weight for manual yaw control. 0 will give slow responce and no overshot, 1 - fast responce and big overshot. + 0.0 + 1.0 + + + Max yaw rate + Limit for yaw rate, has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. + 0.0 + 360.0 deg/s - + Max acro roll rate - 90.0 0.0 360.0 deg/s - + Max acro pitch rate - 90.0 0.0 360.0 deg/s - + Max acro yaw rate - 120.0 + 0.0 + deg/s + + + Max manual roll + 0.0 + 90.0 + deg + + + Max manual pitch + 0.0 + 90.0 + deg + + + Max manual yaw rate 0.0 deg/s - + Minimum thrust Minimum vertical thrust. It's recommended to set it > 0 to avoid free fall with zero thrust. - 0.1 0.0 1.0 - + Maximum thrust Limit max allowed thrust. - 1.0 0.0 1.0 - + Proportional gain for vertical position error - 1.0 0.0 - + Proportional gain for vertical velocity error - 0.1 0.0 - + Integral gain for vertical velocity error Non zero value allows hovering thrust estimation on stabilized or autonomous takeoff. - 0.02 0.0 - + Differential gain for vertical velocity error - 0.0 0.0 - + Maximum vertical velocity Maximum vertical velocity in AUTO mode and endpoint for stabilized modes (ALTCTRL, POSCTRL). - 5.0 0.0 m/s - + Vertical velocity feed forward Feed forward weight for altitude control in stabilized modes (ALTCTRL, POSCTRL). 0 will give slow responce and no overshot, 1 - fast responce and big overshot. - 0.5 0.0 1.0 - + Proportional gain for horizontal position error - 1.0 0.0 - + Proportional gain for horizontal velocity error - 0.1 0.0 - + Integral gain for horizontal velocity error Non-zero value allows to resist wind. - 0.02 0.0 - + Differential gain for horizontal velocity error. Small values help reduce fast oscillations. If value is too big oscillations will appear again - 0.01 0.0 - + Maximum horizontal velocity Maximum horizontal velocity in AUTO mode and endpoint for position stabilized mode (POSCTRL). - 5.0 0.0 m/s - + Horizontal velocity feed forward Feed forward weight for position control in position control mode (POSCTRL). 0 will give slow responce and no overshot, 1 - fast responce and big overshot. - 0.5 0.0 1.0 - + Maximum tilt angle in air Limits maximum tilt in AUTO and POSCTRL modes during flight. - 45.0 0.0 90.0 deg - + Maximum tilt during landing Limits maximum tilt angle on landing. - 15.0 0.0 90.0 deg - + Landing descend rate - 1.0 0.0 m/s - - - - Ground drag property - This parameter encodes the ground drag coefficient and the corresponding - decrease in wind speed from the plane altitude to ground altitude. - 0.03 - 0.001 - 0.1 - unknown + + Max manual roll + 0.0 + 90.0 + deg - - Plane turn radius - The planes known minimal turn radius - use a higher value - to make the plane maneuver more distant from the actual drop - position. This is to ensure the wings are level during the drop. - 120.0 - 30.0 - 500.0 - meter + + Max manual pitch + 0.0 + 90.0 + deg - - Drop precision - If the system is closer than this distance on passing over the - drop position, it will release the payload. This is a safeguard - to prevent a drop out of the required accuracy. - 30.0 - 1.0 - 80.0 - meter + + Max manual yaw rate + 0.0 + deg/s - - Payload drag coefficient of the dropped object - The drag coefficient (cd) is the typical drag - constant for air. It is in general object specific, - but the closest primitive shape to the actual object - should give good results: - http://en.wikipedia.org/wiki/Drag_coefficient - 0.1 - 0.08 - 1.5 - meter + + Minimum thrust + Minimum vertical thrust. It's recommended to set it > 0 to avoid free fall with zero thrust. + 0.0 + 1.0 - - Payload mass - A typical small toy ball: - 0.025 kg - OBC water bottle: - 0.6 kg - 0.6 - 0.001 - 5.0 - kilogram + + Maximum thrust + Limit max allowed thrust. + 0.0 + 1.0 - + + Proportional gain for vertical position error + 0.0 + + + Proportional gain for vertical velocity error + 0.0 + + + Integral gain for vertical velocity error + Non zero value allows hovering thrust estimation on stabilized or autonomous takeoff. + 0.0 + + + Differential gain for vertical velocity error + 0.0 + + + Maximum vertical velocity + Maximum vertical velocity in AUTO mode and endpoint for stabilized modes (ALTCTRL). + 0.0 + m/s + + + Vertical velocity feed forward + Feed forward weight for altitude control in stabilized modes (ALTCTRL). 0 will give slow responce and no overshot, 1 - fast responce and big overshot. + 0.0 + 1.0 + + + Proportional gain for horizontal position error + 0.0 + + + Proportional gain for horizontal velocity error + 0.0 + + + Integral gain for horizontal velocity error + Non-zero value allows to resist wind. + 0.0 + + + Differential gain for horizontal velocity error. Small values help reduce fast oscillations. If value is too big oscillations will appear again + 0.0 + + + Maximum horizontal velocity + Maximum horizontal velocity in AUTO mode and endpoint for position stabilized mode (POSCTRL). + 0.0 + m/s + + + Horizontal velocity feed forward + Feed forward weight for position control in position control mode (POSCTRL). 0 will give slow responce and no overshot, 1 - fast responce and big overshot. + 0.0 + 1.0 + + + Maximum tilt angle in air + Limits maximum tilt in AUTO and POSCTRL modes during flight. + 0.0 + 90.0 + deg + + + Maximum tilt during landing + Limits maximum tilt angle on landing. + 0.0 + 90.0 + deg + + + Landing descend rate + 0.0 + m/s + + + + + Ground drag property + This parameter encodes the ground drag coefficient and the corresponding + decrease in wind speed from the plane altitude to ground altitude. + 0.001 + 0.1 + unknown + + + Plane turn radius + The planes known minimal turn radius - use a higher value + to make the plane maneuver more distant from the actual drop + position. This is to ensure the wings are level during the drop. + 30.0 + 500.0 + meter + + + Drop precision + If the system is closer than this distance on passing over the + drop position, it will release the payload. This is a safeguard + to prevent a drop out of the required accuracy. + 1.0 + 80.0 + meter + + + Payload drag coefficient of the dropped object + The drag coefficient (cd) is the typical drag + constant for air. It is in general object specific, + but the closest primitive shape to the actual object + should give good results: + http://en.wikipedia.org/wiki/Drag_coefficient + 0.08 + 1.5 + meter + + + Payload mass + A typical small toy ball: + 0.025 kg + OBC water bottle: + 0.6 kg + 0.001 + 5.0 + kilogram + + Payload front surface area A typical small toy ball: (0.045 * 0.045) / 4.0 * pi = 0.001590 m^2 OBC water bottle: (0.063 * 0.063) / 4.0 * pi = 0.003117 m^2 - 0.00311724531 0.001 0.5 m^2 - + Velocity estimate delay The delay in milliseconds of the velocity estimate from GPS. - 230 0 1000 - + Position estimate delay The delay in milliseconds of the position estimate from GPS. - 210 0 1000 - + Height estimate delay The delay in milliseconds of the height estimate from the barometer. - 350 0 1000 - + Mag estimate delay The delay in milliseconds of the magnetic field estimate from the magnetometer. - 30 0 1000 - + True airspeeed estimate delay The delay in milliseconds of the airspeed estimate. - 210 0 1000 - + GPS vs. barometric altitude update weight RE-CHECK this. - 0.9 0.0 1.0 - + Airspeed measurement noise Increasing this value will make the filter trust this sensor less and trust other sensors more. - 1.4 0.5 5.0 - + Velocity measurement noise in north-east (horizontal) direction Generic default: 0.3, multicopters: 0.5, ground vehicles: 0.5 - 0.3 0.05 5.0 - + Velocity noise in down (vertical) direction Generic default: 0.5, multicopters: 0.7, ground vehicles: 0.7 - 0.5 0.05 5.0 - + Position noise in north-east (horizontal) direction Generic defaults: 0.5, multicopters: 0.5, ground vehicles: 0.5 - 0.5 0.1 10.0 - + Position noise in down (vertical) direction Generic defaults: 0.5, multicopters: 1.0, ground vehicles: 1.0 - 0.5 0.1 10.0 - + Magnetometer measurement noise Generic defaults: 0.05, multicopters: 0.05, ground vehicles: 0.05 - 0.05 0.1 10.0 - + Gyro process noise Generic defaults: 0.015, multicopters: 0.015, ground vehicles: 0.015. This noise controls how much the filter trusts the gyro measurements. Increasing it makes the filter trust the gyro less and other sensors more. - 0.015 0.001 0.05 - + Accelerometer process noise Generic defaults: 0.25, multicopters: 0.25, ground vehicles: 0.25. Increasing this value makes the filter trust the accelerometer less and other sensors more. - 0.25 0.05 1.0 - + Gyro bias estimate process noise Generic defaults: 1e-07f, multicopters: 1e-07f, ground vehicles: 1e-07f. Increasing this value will make the gyro bias converge faster but noisier. - 1e-07 0.0000001 0.00001 - + Accelerometer bias estimate process noise Generic defaults: 0.0001f, multicopters: 0.0001f, ground vehicles: 0.0001f. Increasing this value makes the bias estimation faster and noisier. - 0.00005 0.00001 0.001 - + Magnetometer earth frame offsets process noise Generic defaults: 0.0001, multicopters: 0.0001, ground vehicles: 0.0001. Increasing this value makes the magnetometer earth bias estimate converge faster but also noisier. - 0.0003 0.0001 0.01 - + Magnetometer body frame offsets process noise Generic defaults: 0.0003, multicopters: 0.0003, ground vehicles: 0.0003. Increasing this value makes the magnetometer body bias estimate converge faster but also noisier. - 0.0003 0.0001 0.01 - + Threshold for filter initialization If the standard deviation of the GPS position estimate is below this threshold in meters, the filter will initialize. - 5.0 0.3 10.0 - + Z axis weight for barometer Weight (cutoff frequency) for barometer altitude measurements. - 0.5 0.0 10.0 - + Z axis weight for GPS Weight (cutoff frequency) for GPS altitude measurements. GPS altitude data is very noisy and should be used only as slow correction for baro offset. - 0.005 0.0 10.0 - + + Z velocity weight for GPS + Weight (cutoff frequency) for GPS altitude velocity measurements. + 0.0 + 10.0 + + Z axis weight for vision Weight (cutoff frequency) for vision altitude measurements. vision altitude data is very noisy and should be used only as slow correction for baro offset. - 0.5 0.0 10.0 - + Z axis weight for sonar Weight (cutoff frequency) for sonar measurements. - 3.0 0.0 10.0 - + XY axis weight for GPS position Weight (cutoff frequency) for GPS position measurements. - 1.0 0.0 10.0 - + XY axis weight for GPS velocity Weight (cutoff frequency) for GPS velocity measurements. - 2.0 0.0 10.0 - + XY axis weight for vision position Weight (cutoff frequency) for vision position measurements. - 5.0 0.0 10.0 - + XY axis weight for vision velocity Weight (cutoff frequency) for vision velocity measurements. - 0.0 0.0 10.0 - + XY axis weight for optical flow Weight (cutoff frequency) for optical flow (velocity) measurements. - 5.0 0.0 10.0 - + XY axis weight for resetting velocity When velocity sources lost slowly decrease estimated horizontal velocity with this weight. - 0.5 0.0 10.0 - + XY axis weight factor for GPS when optical flow available When optical flow data available, multiply GPS weights (for position and velocity) by this factor. - 0.1 0.0 1.0 - + Accelerometer bias estimation weight Weight (cutoff frequency) for accelerometer bias estimation. 0 to disable. - 0.05 0.0 0.1 - + Optical flow scale factor Factor to convert raw optical flow (in pixels) to radians [rad/px]. - 0.15 0.0 1.0 rad/px - + Minimal acceptable optical flow quality 0 - lowest quality, 1 - best quality. - 0.5 0.0 1.0 - + Weight for sonar filter Sonar filter detects spikes on sonar measurements and used to detect new surface level. - 0.05 0.0 1.0 - + Sonar maximal error for new surface If sonar measurement error is larger than this value it skiped (spike) or accepted as new surface level (if offset is stable). - 0.5 0.0 1.0 m - + Land detector time Vehicle assumed landed if no altitude changes happened during this time on low throttle. - 3.0 0.0 10.0 s - + Land detector altitude dispersion threshold Dispersion threshold for triggering land detector. - 0.7 0.0 10.0 m - + Land detector throttle threshold Value should be lower than minimal hovering thrust. Half of it is good choice. - 0.2 0.0 1.0 - + GPS delay GPS delay compensation - 0.2 0.0 1.0 s - + Disable vision input Set to the appropriate key (328754) to disable vision input. - 0 0 1 - - - - Loiter Time - The amount of time in seconds the system should loiter at current position before termination - Set to -1 to make the system skip loitering - 120.0 - -1.0 - seconds - - - - - Loiter radius after RTL (FW only) - Default value of loiter radius after RTL (fixedwing only). - 50.0 - 0.0 - meters - - - RTL altitude - Altitude to fly back in RTL in meters - 100 + + INAV enabled + If set to 1, use INAV for position estimation + the system uses the combined attitude / position + filter framework. 0 1 - meters - - - RTL loiter altitude - Stay at this altitude above home position after RTL descending. - Land (i.e. slowly descend) from this altitude if autolanding allowed. - 20 - 0 - 100 - meters - - - RTL delay - Delay after descend before landing in RTL mode. - If set to -1 the system will not land but loiter at NAV_LAND_ALT. - -1.0 - -1.0 - seconds - + RC Channel 1 Minimum Minimum value for RC channel 1 - 1000.0 800.0 1500.0 - + RC Channel 1 Trim Mid point value (same as min for throttle) - 1500.0 800.0 2200.0 - + RC Channel 1 Maximum Maximum value for RC channel 1 - 2000.0 1500.0 2200.0 - + RC Channel 1 Reverse Set to -1 to reverse channel. - 1.0 -1.0 1.0 - + RC Channel 1 dead zone The +- range of this value around the trim value will be considered as zero. - 10.0 0.0 100.0 - + RC Channel 2 Minimum Minimum value for RC channel 2 - 1000.0 800.0 1500.0 - + RC Channel 2 Trim Mid point value (same as min for throttle) - 1500.0 800.0 2200.0 - + RC Channel 2 Maximum Maximum value for RC channel 2 - 2000.0 1500.0 2200.0 - + RC Channel 2 Reverse Set to -1 to reverse channel. - 1.0 -1.0 1.0 - + RC Channel 2 dead zone The +- range of this value around the trim value will be considered as zero. - 10.0 0.0 100.0 - - DSM binding trigger - -1 = Idle, 0 = Start DSM2 bind, 1 = Start DSMX bind - -1 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Roll control channel mapping - The channel index (starting from 1 for channel 1) indicates - which channel should be used for reading roll inputs from. - A value of zero indicates the switch is not assigned. - 1 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Pitch control channel mapping - The channel index (starting from 1 for channel 1) indicates - which channel should be used for reading pitch inputs from. - A value of zero indicates the switch is not assigned. - 2 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Throttle control channel mapping - The channel index (starting from 1 for channel 1) indicates - which channel should be used for reading throttle inputs from. - A value of zero indicates the switch is not assigned. - 3 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Yaw control channel mapping - The channel index (starting from 1 for channel 1) indicates - which channel should be used for reading yaw inputs from. - A value of zero indicates the switch is not assigned. - 4 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Mode switch channel mapping - This is the main flight mode selector. - The channel index (starting from 1 for channel 1) indicates - which channel should be used for deciding about the main mode. - A value of zero indicates the switch is not assigned. - 0 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Return switch channel mapping - 0 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 - - Posctl switch channel mapping - 0 - 0 - 18 + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + RC Channel 2 dead zone + The +- range of this value around the trim value will be considered as zero. + 0.0 + 100.0 + + + DSM binding trigger + -1 = Idle, 0 = Start DSM2 bind, 1 = Start DSMX bind + + + RC channel count + This parameter is used by Ground Station software to save the number + of channels which were used during RC calibration. It is only meant + for ground station use. + 0 + 18 + + + RC mode switch threshold automaic distribution + This parameter is used by Ground Station software to specify whether + the threshold values for flight mode switches were automatically calculated. + 0 indicates that the threshold values were set by the user. Any other value + indicates that the threshold value where automatically set by the ground + station software. It is only meant for ground station use. + 0 + 1 + + + Roll control channel mapping + The channel index (starting from 1 for channel 1) indicates + which channel should be used for reading roll inputs from. + A value of zero indicates the switch is not assigned. + 0 + 18 + + + Pitch control channel mapping + The channel index (starting from 1 for channel 1) indicates + which channel should be used for reading pitch inputs from. + A value of zero indicates the switch is not assigned. + 0 + 18 + + + Throttle control channel mapping + The channel index (starting from 1 for channel 1) indicates + which channel should be used for reading throttle inputs from. + A value of zero indicates the switch is not assigned. + 0 + 18 + + + Yaw control channel mapping + The channel index (starting from 1 for channel 1) indicates + which channel should be used for reading yaw inputs from. + A value of zero indicates the switch is not assigned. + 0 + 18 + + + Auxiliary switch 1 channel mapping + Default function: Camera pitch + 0 + 18 + + + Auxiliary switch 2 channel mapping + Default function: Camera roll + 0 + 18 + + + Auxiliary switch 3 channel mapping + Default function: Camera azimuth / yaw + 0 + 18 + + + Channel which changes a parameter + Can be used for parameter tuning with the RC. This one is further referenced as the 1st parameter channel. + Set to 0 to deactivate * + 0 + 18 + + + Channel which changes a parameter + Can be used for parameter tuning with the RC. This one is further referenced as the 2nd parameter channel. + Set to 0 to deactivate * + 0 + 18 + + + Channel which changes a parameter + Can be used for parameter tuning with the RC. This one is further referenced as the 3th parameter channel. + Set to 0 to deactivate * + 0 + 18 + + + Failsafe channel PWM threshold + 800 + 2200 + + + PWM input channel that provides RSSI + 0: do not read RSSI from input channel + 1-18: read RSSI from specified input channel + Specify the range for RSSI input with RC_RSSI_PWM_MIN and RC_RSSI_PWM_MAX parameters. + 0 + 18 + + + Max input value for RSSI reading + Only used if RC_RSSI_PWM_CHAN > 0 + 0 + 2000 + + + Min input value for RSSI reading + Only used if RC_RSSI_PWM_CHAN > 0 + 0 + 2000 + + + + + Loiter Time + The amount of time in seconds the system should loiter at current position before termination + Set to -1 to make the system skip loitering + -1.0 + seconds + + + + + Mode switch channel mapping + This is the main flight mode selector. + The channel index (starting from 1 for channel 1) indicates + which channel should be used for deciding about the main mode. + A value of zero indicates the switch is not assigned. + 0 + 18 + + + Return switch channel mapping + 0 + 18 + + + Posctl switch channel mapping + 0 + 18 + + + Loiter switch channel mapping + 0 + 18 + + + Acro switch channel mapping + 0 + 18 + + + Offboard switch channel mapping + 0 + 18 + + + Flaps channel mapping + 0 + 18 + + + Threshold for selecting assist mode + 0-1 indicate where in the full channel range the threshold sits + 0 : min + 1 : max + sign indicates polarity of comparison + positive : true when channel>th + negative : true when channel<th + -1 + 1 + + + Threshold for selecting auto mode + 0-1 indicate where in the full channel range the threshold sits + 0 : min + 1 : max + sign indicates polarity of comparison + positive : true when channel>th + negative : true when channel<th + -1 + 1 + + + Threshold for selecting return to launch mode + 0-1 indicate where in the full channel range the threshold sits + 0 : min + 1 : max + sign indicates polarity of comparison + positive : true when channel>th + negative : true when channel<th + -1 + 1 + + + Threshold for selecting loiter mode + 0-1 indicate where in the full channel range the threshold sits + 0 : min + 1 : max + sign indicates polarity of comparison + positive : true when channel>th + negative : true when channel<th + -1 + 1 + + + Threshold for selecting acro mode + 0-1 indicate where in the full channel range the threshold sits + 0 : min + 1 : max + sign indicates polarity of comparison + positive : true when channel>th + negative : true when channel<th + -1 + 1 + + + Threshold for selecting offboard mode + 0-1 indicate where in the full channel range the threshold sits + 0 : min + 1 : max + sign indicates polarity of comparison + positive : true when channel>th + negative : true when channel<th + -1 + 1 + + + + + RTL altitude + Altitude to fly back in RTL in meters + 0 + 150 + meters + + + RTL loiter altitude + Stay at this altitude above home position after RTL descending. + Land (i.e. slowly descend) from this altitude if autolanding allowed. + 2 + 100 + meters + + + RTL delay + Delay after descend before landing in RTL mode. + If set to -1 the system will not land but loiter at NAV_LAND_ALT. + -1 + 300 + seconds + + + + + Logging rate + A value of -1 indicates the commandline argument + should be obeyed. A value of 0 sets the minimum rate, + any other value is interpreted as rate in Hertz. This + parameter is only read out before logging starts (which + commonly is before arming). + -1 + 1 + + + Enable extended logging mode + A value of -1 indicates the commandline argument + should be obeyed. A value of 0 disables extended + logging mode, a value of 1 enables it. This + parameter is only read out before logging starts + (which commonly is before arming). + -1 + 1 + + + + + ID of the board this parameter set was calibrated on + + + ID of the Gyro that the calibration is for + + + Gyro X-axis offset + -10.0 + 10.0 + + + Gyro Y-axis offset + -10.0 + 10.0 + + + Gyro Z-axis offset + -5.0 + 5.0 + + + Gyro X-axis scaling factor + -1.5 + 1.5 + + + Gyro Y-axis scaling factor + -1.5 + 1.5 + + + Gyro Z-axis scaling factor + -1.5 + 1.5 + + + ID of Magnetometer the calibration is for + + + Rotation of magnetometer 0 relative to airframe + An internal magnetometer will force a value of -1, so a GCS + should only attempt to configure the rotation if the value is + greater than or equal to zero. + -1 + 30 + + + Magnetometer X-axis offset + -500.0 + 500.0 + + + Magnetometer Y-axis offset + -500.0 + 500.0 + + + Magnetometer Z-axis offset + -500.0 + 500.0 + + + Magnetometer X-axis scaling factor + + + Magnetometer Y-axis scaling factor + + + Magnetometer Z-axis scaling factor + + + ID of the Accelerometer that the calibration is for + + + Accelerometer X-axis offset + + + Accelerometer Y-axis offset + + + Accelerometer Z-axis offset + + + Accelerometer X-axis scaling factor + + + Accelerometer Y-axis scaling factor + + + Accelerometer Z-axis scaling factor + + + ID of the Gyro that the calibration is for + + + Gyro X-axis offset + -10.0 + 10.0 + + + Gyro Y-axis offset + -10.0 + 10.0 + + + Gyro Z-axis offset + -5.0 + 5.0 + + + Gyro X-axis scaling factor + -1.5 + 1.5 + + + Gyro Y-axis scaling factor + -1.5 + 1.5 + + + Gyro Z-axis scaling factor + -1.5 + 1.5 + + + ID of Magnetometer the calibration is for + + + Rotation of magnetometer 1 relative to airframe + An internal magnetometer will force a value of -1, so a GCS + should only attempt to configure the rotation if the value is + greater than or equal to zero. + -1 + 30 + + + Magnetometer X-axis offset + -500.0 + 500.0 + + + Magnetometer Y-axis offset + -500.0 + 500.0 + + + Magnetometer Z-axis offset + -500.0 + 500.0 - - Loiter switch channel mapping - 0 - 0 - 18 + + Magnetometer X-axis scaling factor - - Acro switch channel mapping - 0 - 0 - 18 + + Magnetometer Y-axis scaling factor - - Offboard switch channel mapping - 0 - 0 - 18 + + Magnetometer Z-axis scaling factor - - Flaps channel mapping - 0 - 0 - 18 + + ID of the Accelerometer that the calibration is for - - Auxiliary switch 1 channel mapping - Default function: Camera pitch - 0 - 0 - 18 + + Accelerometer X-axis offset - - Auxiliary switch 2 channel mapping - Default function: Camera roll - 0 - 0 - 18 + + Accelerometer Y-axis offset - - Auxiliary switch 3 channel mapping - Default function: Camera azimuth / yaw - 0 - 0 - 18 + + Accelerometer Z-axis offset - - Failsafe channel PWM threshold - 0 - 800 - 2200 + + Accelerometer X-axis scaling factor - - - - Logging rate - A value of -1 indicates the commandline argument - should be obeyed. A value of 0 sets the minimum rate, - any other value is interpreted as rate in Hertz. This - parameter is only read out before logging starts (which - commonly is before arming). - -1 - -1 - 1 + + Accelerometer Y-axis scaling factor - - Enable extended logging mode - A value of -1 indicates the commandline argument - should be obeyed. A value of 0 disables extended - logging mode, a value of 1 enables it. This - parameter is only read out before logging starts - (which commonly is before arming). - -1 - -1 - 1 + + Accelerometer Z-axis scaling factor - - - + + ID of the Gyro that the calibration is for + + Gyro X-axis offset - 0.0 -10.0 10.0 - + Gyro Y-axis offset - 0.0 -10.0 10.0 - + Gyro Z-axis offset - 0.0 -5.0 5.0 - + Gyro X-axis scaling factor - 1.0 -1.5 1.5 - + Gyro Y-axis scaling factor - 1.0 -1.5 1.5 - + Gyro Z-axis scaling factor - 1.0 -1.5 1.5 - + + ID of Magnetometer the calibration is for + + + Rotation of magnetometer 2 relative to airframe + An internal magnetometer will force a value of -1, so a GCS + should only attempt to configure the rotation if the value is + greater than or equal to zero. + -1 + 30 + + Magnetometer X-axis offset - 0.0 -500.0 500.0 - + Magnetometer Y-axis offset - 0.0 -500.0 500.0 - + Magnetometer Z-axis offset - 0.0 -500.0 500.0 - + Magnetometer X-axis scaling factor - 1.0 - + Magnetometer Y-axis scaling factor - 1.0 - + Magnetometer Z-axis scaling factor - 1.0 - + + ID of the Accelerometer that the calibration is for + + Accelerometer X-axis offset - 0.0 - + Accelerometer Y-axis offset - 0.0 - + Accelerometer Z-axis offset - 0.0 - + Accelerometer X-axis scaling factor - 1.0 - + Accelerometer Y-axis scaling factor - 1.0 - + Accelerometer Z-axis scaling factor - 1.0 - + Differential pressure sensor offset The offset (zero-reading) in Pascal - 0.0 - + Differential pressure sensor analog scaling Pick the appropriate scaling from the datasheet. this number defines the (linear) conversion from voltage to Pascal (pa). For the MPXV7002DP this is 1000. NOTE: If the sensor always registers zero, try switching the static and dynamic tubes. - 0 - + QNH for barometer - 1013.25 500 1500 hPa - + Board rotation This parameter defines the rotation of the FMU board relative to the platform. Possible values are: 0 = No rotation - 1 = Yaw 45° - 2 = Yaw 90° - 3 = Yaw 135° - 4 = Yaw 180° - 5 = Yaw 225° - 6 = Yaw 270° - 7 = Yaw 315° - 8 = Roll 180° - 9 = Roll 180°, Yaw 45° - 10 = Roll 180°, Yaw 90° - 11 = Roll 180°, Yaw 135° - 12 = Pitch 180° - 13 = Roll 180°, Yaw 225° - 14 = Roll 180°, Yaw 270° - 15 = Roll 180°, Yaw 315° - 16 = Roll 90° - 17 = Roll 90°, Yaw 45° - 18 = Roll 90°, Yaw 90° - 19 = Roll 90°, Yaw 135° - 20 = Roll 270° - 21 = Roll 270°, Yaw 45° - 22 = Roll 270°, Yaw 90° - 23 = Roll 270°, Yaw 135° - 24 = Pitch 90° - 25 = Pitch 270° - 0 - - + 1 = Yaw 45° + 2 = Yaw 90° + 3 = Yaw 135° + 4 = Yaw 180° + 5 = Yaw 225° + 6 = Yaw 270° + 7 = Yaw 315° + 8 = Roll 180° + 9 = Roll 180°, Yaw 45° + 10 = Roll 180°, Yaw 90° + 11 = Roll 180°, Yaw 135° + 12 = Pitch 180° + 13 = Roll 180°, Yaw 225° + 14 = Roll 180°, Yaw 270° + 15 = Roll 180°, Yaw 315° + 16 = Roll 90° + 17 = Roll 90°, Yaw 45° + 18 = Roll 90°, Yaw 90° + 19 = Roll 90°, Yaw 135° + 20 = Roll 270° + 21 = Roll 270°, Yaw 45° + 22 = Roll 270°, Yaw 90° + 23 = Roll 270°, Yaw 135° + 24 = Pitch 90° + 25 = Pitch 270° + + + PX4Flow board rotation + This parameter defines the rotation of the PX4FLOW board relative to the platform. + Zero rotation is defined as Y on flow board pointing towards front of vehicle + Possible values are: + 0 = No rotation + 1 = Yaw 45° + 2 = Yaw 90° + 3 = Yaw 135° + 4 = Yaw 180° + 5 = Yaw 225° + 6 = Yaw 270° + 7 = Yaw 315° + + Board rotation Y (Pitch) offset This parameter defines a rotational offset in degrees around the Y (Pitch) axis. It allows the user to fine tune the board offset in the event of misalignment. - 0.0 - + Board rotation X (Roll) offset This parameter defines a rotational offset in degrees around the X (Roll) axis It allows the user to fine tune the board offset in the event of misalignment. - 0.0 - + Board rotation Z (YAW) offset This parameter defines a rotational offset in degrees around the Z (Yaw) axis. It allows the user to fine tune the board offset in the event of misalignment. - 0.0 - + External magnetometer rotation This parameter defines the rotation of the external magnetometer relative to the platform (not relative to the FMU). See SENS_BOARD_ROT for possible values. - 0 - + Set usage of external magnetometer * Set to 0 (default) to auto-detect (will try to get the external as primary) * Set to 1 to force the external magnetometer as primary * Set to 2 to force the internal magnetometer as primary - 0 0 2 + + + Interval of one subscriber in the example in ms + + + Float Demonstration Parameter in the Example + + - + Auto-start script index Defines the auto-start script used to bootstrap the system. - 0 - + Automatically configure default values - Set to 1 to set platform-specific parameters to their default - values on next system startup. - 0 + Set to 1 to reset parameters on next system startup (setting defaults). + Platform-specific values are used if available. + RC* parameters are preserved. 0 1 - + Set usage of IO board Can be used to use a standard startup script but with a FMU only set-up. Set to 0 to force the FMU only set-up. - 1 0 1 - + Set restart type Set by px4io to indicate type of restart - 2 0 2 + + Companion computer interface + Configures the baud rate of the companion computer interface. + Set to zero to disable, set to 921600 to enable. + CURRENTLY ONLY SUPPORTS 921600 BAUD! Use extras.txt for + other baud rates. + 0 + 921600 + + + Parameter version + This monotonically increasing number encodes the parameter compatibility set. + whenever it increases parameters might not be backwards compatible and + ground control stations should suggest a fresh configuration. + 0 + - + Enable UAVCAN Enables support for UAVCAN-interfaced actuators and sensors. - 0 0 1 - + UAVCAN Node ID Read the specs at http://uavcan.org to learn more about Node ID. - 1 1 125 - + UAVCAN CAN bus bitrate - 1000000 20000 1000000 - - - Body angular rate process noise - 1e-4 - - - Body angular acceleration process noise - 0.08 - - - Acceleration process noise - 0.009 - - - Magnet field vector process noise - 0.005 - - - Gyro measurement noise - 0.0008 - - - Accel measurement noise - 10000.0 + + + VTOL number of engines + 1 - - Mag measurement noise - 100.0 + + Idle speed of VTOL when in multicopter mode + 900 - - Moment of inertia matrix diagonal entry (1, 1) - 0.0018 - kg*m^2 + + Minimum airspeed in multicopter mode + This is the minimum speed of the air flowing over the control surfaces. + 0.0 - - Moment of inertia matrix diagonal entry (2, 2) - 0.0018 - kg*m^2 + + Maximum airspeed in multicopter mode + This is the maximum speed of the air flowing over the control surfaces. + 0.0 - - Moment of inertia matrix diagonal entry (3, 3) - 0.0037 - kg*m^2 + + Trim airspeed when in multicopter mode + This is the airflow over the control surfaces for which no airspeed scaling is applied in multicopter mode. + 0.0 - - Moment of inertia enabled in estimator - If set to != 0 the moment of inertia will be used in the estimator - 0 + + Permanent stabilization in fw mode + If set to one this parameter will cause permanent attitude stabilization in fw mode. + This parameter has been introduced for pure convenience sake. 0 1 - - - - Datalink loss mode enabled - Set to 1 to enable actions triggered when the datalink is lost. - 0 - 0 + + Fixed wing pitch trim + This parameter allows to adjust the neutral elevon position in fixed wing mode. + -1 1 - - After this amount of seconds without datalink the data link lost mode triggers - 10 - 0 - 30 - second - - - After a data link loss: after this this amount of seconds with a healthy datalink the 'datalink loss' - flag is set back to false - 0 - 0 - 30 - second - - - Engine failure triggers only above this throttle value - 0.5 - 0.0 - 1.0 + + Motor max power + Indicates the maximum power the motor is able to produce. Used to calculate + propeller efficiency map. + 1 - - Engine failure triggers only below this current/throttle value - 5.0 - 0.0 - 7.0 + + Propeller efficiency parameter + Influences propeller efficiency at different power settings. Should be tuned beforehand. + 0.5 + 0.9 - - Engine failure triggers only if the throttle threshold and the - current to throttle threshold are violated for this time - 10.0 + + Total airspeed estimate low-pass filter gain + Gain for tuning the low-pass filter for the total airspeed estimate 0.0 - 7.0 - second - - - After this amount of seconds without RC connection the rc lost flag is set to true - 0.5 - 0 - 35 - seconds + 0.99 - + mTECS enabled Set to 1 to enable mTECS - 0 0 1 - + Total Energy Rate Control Feedforward Maps the total energy rate setpoint to the throttle setpoint - 0.7 0.0 10.0 - + Total Energy Rate Control P Maps the total energy rate error to the throttle setpoint - 0.1 0.0 10.0 - + Total Energy Rate Control I Maps the integrated total energy rate to the throttle setpoint - 0.25 0.0 10.0 - + Total Energy Rate Control Offset (Cruise throttle sp) - 0.7 0.0 10.0 - + Energy Distribution Rate Control Feedforward Maps the energy distribution rate setpoint to the pitch setpoint - 0.4 0.0 10.0 - + Energy Distribution Rate Control P Maps the energy distribution rate error to the pitch setpoint - 0.03 0.0 10.0 - + Energy Distribution Rate Control I Maps the integrated energy distribution rate error to the pitch setpoint - 0.03 0.0 10.0 - + Total Energy Distribution Offset (Cruise pitch sp) - 0.0 0.0 10.0 - + Minimal Throttle Setpoint - 0.0 0.0 1.0 - + Maximal Throttle Setpoint - 1.0 0.0 1.0 - + Minimal Pitch Setpoint in Degrees - -45.0 -90.0 90.0 deg - + Maximal Pitch Setpoint in Degrees - 20.0 -90.0 90.0 deg - + Lowpass (cutoff freq.) for altitude - 1.0 - + Lowpass (cutoff freq.) for the flight path angle - 1.0 - + P gain for the altitude control Maps the altitude error to the flight path angle setpoint - 0.3 0.0 10.0 - + D gain for the altitude control Maps the change of altitude error to the flight path angle setpoint - 0.0 0.0 10.0 - + Lowpass for FPA error derivative calculation (see MT_FPA_D) - 1.0 - + Minimal flight path angle setpoint - -20.0 -90.0 90.0 deg - + Maximal flight path angle setpoint - 30.0 -90.0 90.0 deg - + Lowpass (cutoff freq.) for airspeed - 0.5 - + Airspeed derivative calculation lowpass - 0.5 - + P gain for the airspeed control Maps the airspeed error to the acceleration setpoint - 0.3 0.0 10.0 - + D gain for the airspeed control Maps the change of airspeed error to the acceleration setpoint - 0.0 0.0 10.0 - + Lowpass for ACC error derivative calculation (see MT_ACC_D) - 0.5 - + Minimal acceleration (air) - -40.0 m/s^2 - + Maximal acceleration (air) - 40.0 m/s^2 - + Minimal throttle during takeoff - 1.0 0.0 1.0 - + Maximal throttle during takeoff - 1.0 0.0 1.0 - + Minimal pitch during takeoff - 0.0 -90.0 90.0 deg - + Maximal pitch during takeoff - 45.0 -90.0 90.0 deg - + Minimal throttle in underspeed mode - 1.0 0.0 1.0 - + Maximal throttle in underspeed mode - 1.0 0.0 1.0 - + Minimal pitch in underspeed mode - -45.0 -90.0 90.0 deg - + Maximal pitch in underspeed mode - 0.0 -90.0 90.0 deg - + Minimal throttle in landing mode (only last phase of landing) - 0.0 0.0 1.0 - + Maximal throttle in landing mode (only last phase of landing) - 0.0 0.0 1.0 - + Minimal pitch in landing mode - -5.0 -90.0 90.0 deg - + Maximal pitch in landing mode - 15.0 -90.0 90.0 deg - + Integrator Limit for Total Energy Rate Control - 10.0 0.0 10.0 - + Integrator Limit for Energy Distribution Rate Control - 10.0 0.0 10.0 - + EXFW_HDNG_P - 0.1 - + EXFW_ROLL_P - 0.2 - + EXFW_PITCH_P - 0.2 - + FPE_LO_THRUST - 0.4 - + FPE_SONAR_LP_U - 0.5 - + FPE_SONAR_LP_L - 0.2 - + FPE_DEBUG - 0 - - - FSC_S_P - 0.1 - - - FSC_L_PITCH - 0.4 - - FSC_L_ROLL - 0.4 + + RV_YAW_P - + ATT_MAG_DECL - 0.0 - + ATT_ACC_COMP - 2 - + SO3_COMP_KP - 1.0 - + SO3_COMP_KI - 0.05 - + SO3_ROLL_OFFS - 0.0 - + SO3_PITCH_OFFS - 0.0 - + SO3_YAW_OFFS - 0.0 - + TRIM_ROLL - 0.0 - + TRIM_PITCH - 0.0 - + TRIM_YAW - 0.0 - + TEST_MIN - -1.0 - + TEST_MAX - 1.0 - + TEST_TRIM - 0.5 - + TEST_HP - 10.0 - + TEST_LP - 10.0 - + TEST_P - 0.2 - + TEST_I - 0.1 - + TEST_I_MAX - 1.0 - + TEST_D - 0.01 - + TEST_D_LP - 10.0 - + TEST_MEAN - 1.0 - + TEST_DEV - 2.0 - + FWB_P_LP - 300.0 - + FWB_Q_LP - 300.0 - + FWB_R_LP - 300.0 - + FWB_R_HP - 1.0 - + FWB_P2AIL - 0.3 - + FWB_Q2ELV - 0.1 - + FWB_R2RDR - 0.1 - + FWB_PSI2PHI - 0.5 - + FWB_PHI2P - 1.0 - + FWB_PHI_LIM_MAX - 0.3 - + FWB_V2THE_P - 1.0 - + FWB_V2THE_I - 0.0 - + FWB_V2THE_D - 0.0 - + FWB_V2THE_D_LP - 0.0 - + FWB_V2THE_I_MAX - 0.0 - + FWB_THE_MIN - -0.5 - + FWB_THE_MAX - 0.5 - + FWB_THE2Q_P - 1.0 - + FWB_THE2Q_I - 0.0 - + FWB_THE2Q_D - 0.0 - + FWB_THE2Q_D_LP - 0.0 - + FWB_THE2Q_I_MAX - 0.0 - + FWB_H2THR_P - 0.01 - + FWB_H2THR_I - 0.0 - + FWB_H2THR_D - 0.0 - + FWB_H2THR_D_LP - 0.0 - + FWB_H2THR_I_MAX - 0.0 - + FWB_XT2YAW_MAX - 1.57 - + FWB_XT2YAW - 0.005 - + FWB_V_MIN - 10.0 - + FWB_V_CMD - 12.0 - + FWB_V_MAX - 16.0 - + FWB_CR_MAX - 1.0 - + FWB_CR2THR_P - 0.01 - + FWB_CR2THR_I - 0.0 - + FWB_CR2THR_D - 0.0 - + FWB_CR2THR_D_LP - 0.0 - + FWB_CR2THR_I_MAX - 0.0 - + FWB_TRIM_THR - 0.8 - + FWB_TRIM_V - 12.0 - + Flare, minimum pitch Minimum pitch during flare, a positive sign means nose up Applied once FW_LND_TLALT is reached - 2.5 - + Flare, maximum pitch Maximum pitch during flare, a positive sign means nose up Applied once FW_LND_TLALT is reached - 15.0 - + SEG_TH2V_P - 10.0 - + SEG_TH2V_I - 0.0 - + SEG_TH2V_I_MAX - 0.0 - + SEG_Q2V - 1.0 - - - RC3_MIN - 1000 - - - RC3_TRIM - 1500 - - - RC3_MAX - 2000 - - - RC3_REV - 1.0 - - - RC3_DZ - 10.0 - - - RC4_MIN - 1000 - - - RC4_TRIM - 1500 - - - RC4_MAX - 2000 - - - RC4_REV - 1.0 - - - RC4_DZ - 10.0 - - - RC5_MIN - 1000 - - - RC5_TRIM - 1500 - - - RC5_MAX - 2000 - - - RC5_REV - 1.0 - - - RC5_DZ - 10.0 - - - RC6_MIN - 1000 - - - RC6_TRIM - 1500 - - - RC6_MAX - 2000 - - - RC6_REV - 1.0 - - - RC6_DZ - 10.0 - - - RC7_MIN - 1000 - - - RC7_TRIM - 1500 - - - RC7_MAX - 2000 - - - RC7_REV - 1.0 - - - RC7_DZ - 10.0 - - - RC8_MIN - 1000 - - - RC8_TRIM - 1500 - - - RC8_MAX - 2000 - - - RC8_REV - 1.0 - - - RC8_DZ - 10.0 - - - RC9_MIN - 1000 - - - RC9_TRIM - 1500 - - - RC9_MAX - 2000 - - - RC9_REV - 1.0 - - - RC9_DZ - 0.0 - - - RC10_MIN - 1000 - - - RC10_TRIM - 1500 - - - RC10_MAX - 2000 - - - RC10_REV - 1.0 - - - RC10_DZ - 0.0 - - - RC11_MIN - 1000 - - - RC11_TRIM - 1500 - - - RC11_MAX - 2000 - - - RC11_REV - 1.0 - - - RC11_DZ - 0.0 - - - RC12_MIN - 1000 - - - RC12_TRIM - 1500 - - - RC12_MAX - 2000 - - - RC12_REV - 1.0 - - - RC12_DZ - 0.0 - - - RC13_MIN - 1000 - - - RC13_TRIM - 1500 - - - RC13_MAX - 2000 - - - RC13_REV - 1.0 - - - RC13_DZ - 0.0 - - - RC14_MIN - 1000 - - - RC14_TRIM - 1500 - - - RC14_MAX - 2000 - - - RC14_REV - 1.0 - - - RC14_DZ - 0.0 - - RC15_MIN - 1000 - - - RC15_TRIM - 1500 - - - RC15_MAX - 2000 - - - RC15_REV - 1.0 - - - RC15_DZ - 0.0 - - - RC16_MIN - 1000 - - - RC16_TRIM - 1500 - - - RC16_MAX - 2000 - - - RC16_REV - 1.0 - - - RC16_DZ - 0.0 - - - RC17_MIN - 1000 - - - RC17_TRIM - 1500 - - - RC17_MAX - 2000 - - - RC17_REV - 1.0 - - - RC17_DZ - 0.0 - - - RC18_MIN - 1000 - - - RC18_TRIM - 1500 - - - RC18_MAX - 2000 - - - RC18_REV - 1.0 - - - RC18_DZ - 0.0 - - + RC_RL1_DSM_VCC - 0 - + Failsafe channel mapping The RC mapping index indicates which channel is used for failsafe If 0, whichever channel is mapped to throttle is used otherwise the value indicates the specific rc channel to use - 0 0 18 - - Threshold for selecting assist mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits - 0 : min - 1 : max - sign indicates polarity of comparison - positive : true when channel>th - negative : true when channel<th - 0.25 - - - Threshold for selecting auto mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits - 0 : min - 1 : max - sign indicates polarity of comparison - positive : true when channel>th - negative : true when channel<th - 0.75 - - + Threshold for selecting posctl mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits - 0 : min - 1 : max - sign indicates polarity of comparison - positive : true when channel>th - negative : true when channel<th - 0.5 - - - Threshold for selecting return to launch mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits - 0 : min - 1 : max - sign indicates polarity of comparison - positive : true when channel>th - negative : true when channel<th - 0.5 - - - Threshold for selecting loiter mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits + 0-1 indicate where in the full channel range the threshold sits 0 : min 1 : max sign indicates polarity of comparison positive : true when channel>th negative : true when channel<th - 0.5 - - - Threshold for selecting acro mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits - 0 : min - 1 : max - sign indicates polarity of comparison - positive : true when channel>th - negative : true when channel<th - 0.5 - - - Threshold for selecting offboard mode - min:-1 - max:+1 - 0-1 indicate where in the full channel range the threshold sits - 0 : min - 1 : max - sign indicates polarity of comparison - positive : true when channel>th - negative : true when channel<th - 0.5 + -1 + 1 diff --git a/src/AutoPilotPlugins/PX4/PowerComponent.cc b/src/AutoPilotPlugins/PX4/PowerComponent.cc new file mode 100644 index 0000000000000000000000000000000000000000..d1bf8fef201d5dcaf588073ebc3f7d2eefdce2a3 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/PowerComponent.cc @@ -0,0 +1,112 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Gus Grubba + +#include "PowerComponent.h" +#include "PX4RCCalibration.h" +#include "QGCQmlWidgetHolder.h" +#include "PX4AutoPilotPlugin.h" + +PowerComponent::PowerComponent(UASInterface* uas, AutoPilotPlugin* autopilot, QObject* parent) : + PX4Component(uas, autopilot, parent), + _name(tr("Power")) +{ +} + +QString PowerComponent::name(void) const +{ + return _name; +} + +QString PowerComponent::description(void) const +{ + return tr("The Power Component is used to setup battery parameters as well as advanced settings for propellers and magnetometer."); +} + +QString PowerComponent::iconResource(void) const +{ + return "PowerComponentIcon.png"; +} + +bool PowerComponent::requiresSetup(void) const +{ + return true; +} + +bool PowerComponent::setupComplete(void) const +{ + QVariant cvalue, evalue, nvalue; + return _autopilot->getParameterFact("BAT_V_CHARGED")->value().toFloat() != 0.0f && + _autopilot->getParameterFact("BAT_V_EMPTY")->value().toFloat() != 0.0f && + _autopilot->getParameterFact("BAT_N_CELLS")->value().toInt() != 0; +} + +QString PowerComponent::setupStateDescription(void) const +{ + const char* stateDescription; + + if (requiresSetup()) { + stateDescription = "Requires setup"; + } else { + stateDescription = "Setup complete"; + } + return QString(stateDescription); +} + +QStringList PowerComponent::setupCompleteChangedTriggerList(void) const +{ + return QStringList(); +} + +QStringList PowerComponent::paramFilterList(void) const +{ + QStringList list; + + return list; +} + +QWidget* PowerComponent::setupWidget(void) const +{ + QGCQmlWidgetHolder* holder = new QGCQmlWidgetHolder(); + Q_CHECK_PTR(holder); + holder->setAutoPilot(_autopilot); + holder->setSource(QUrl::fromUserInput("qrc:/qml/PowerComponent.qml")); + return holder; +} + +QUrl PowerComponent::summaryQmlSource(void) const +{ + return QUrl::fromUserInput("qrc:/qml/PowerComponentSummary.qml"); +} + +QString PowerComponent::prerequisiteSetup(void) const +{ + PX4AutoPilotPlugin* plugin = dynamic_cast(_autopilot); + Q_ASSERT(plugin); + if (!plugin->airframeComponent()->setupComplete()) { + return plugin->airframeComponent()->name(); + } + return QString(); +} diff --git a/src/AutoPilotPlugins/PX4/PowerComponent.h b/src/AutoPilotPlugins/PX4/PowerComponent.h new file mode 100644 index 0000000000000000000000000000000000000000..a89ef9a4acd611d827f65817cccec95dad74b595 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/PowerComponent.h @@ -0,0 +1,60 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +#ifndef PowerComponent_H +#define PowerComponent_H + +#include "PX4Component.h" + +/// @file +/// @brief Battery, propeller and magnetometer settings +/// @author Gus Grubba + +class PowerComponent : public PX4Component +{ + Q_OBJECT + +public: + PowerComponent(UASInterface* uas, AutoPilotPlugin* autopilot, QObject* parent = NULL); + + // Virtuals from PX4Component + virtual QStringList setupCompleteChangedTriggerList(void) const; + + // Virtuals from VehicleComponent + virtual QString name (void) const; + virtual QString description (void) const; + virtual QString iconResource (void) const; + virtual bool requiresSetup (void) const; + virtual bool setupComplete (void) const; + virtual QString setupStateDescription (void) const; + virtual QWidget* setupWidget (void) const; + virtual QStringList paramFilterList (void) const; + virtual QUrl summaryQmlSource (void) const; + virtual QString prerequisiteSetup (void) const; + +private: + const QString _name; + QVariantList _summaryItems; +}; + +#endif diff --git a/src/AutoPilotPlugins/PX4/PowerComponent.qml b/src/AutoPilotPlugins/PX4/PowerComponent.qml new file mode 100644 index 0000000000000000000000000000000000000000..61378e93c0ca0b6eaa1cdbeb7a90627526920385 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/PowerComponent.qml @@ -0,0 +1,292 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @brief Battery, propeller and magnetometer settings +/// @author Gus Grubba + +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 + +import QGroundControl.FactSystem 1.0 +import QGroundControl.FactControls 1.0 +import QGroundControl.Palette 1.0 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +Rectangle { + QGCPalette { id: palette; colorGroupEnabled: true } + + id: powerSettings + width: 600 + height: 600 + color: palette.window + + property int firstColumnWidth: 220 + property int textEditWidth: 80 + + property Fact battNumCells: Fact { name: "BAT_N_CELLS" } + property Fact battHighVolt: Fact { name: "BAT_V_CHARGED" } + property Fact battLowVolt: Fact { name: "BAT_V_EMPTY" } + + property alias battHigh: battHighRow + property alias battLow: battLowRow + + function getBatteryImage() + { + switch(battNumCells.value) { + case 1: return "/qml/PowerComponentBattery_01cell.svg"; + case 2: return "/qml/PowerComponentBattery_02cell.svg" + case 3: return "/qml/PowerComponentBattery_03cell.svg" + case 4: return "/qml/PowerComponentBattery_04cell.svg" + case 5: return "/qml/PowerComponentBattery_05cell.svg" + case 6: return "/qml/PowerComponentBattery_06cell.svg" + default: return "/qml/PowerComponentBattery_01cell.svg"; + } + } + + function drawArrowhead(ctx, x, y, radians) + { + ctx.save(); + ctx.beginPath(); + ctx.translate(x,y); + ctx.rotate(radians); + ctx.moveTo(0,0); + ctx.lineTo(5,10); + ctx.lineTo(-5,10); + ctx.closePath(); + ctx.restore(); + ctx.fill(); + } + + function drawLineWithArrow(ctx, x1, y1, x2, y2) + { + ctx.beginPath(); + ctx.moveTo(x1, y1); + ctx.lineTo(x2, y2); + ctx.stroke(); + var rd = Math.atan((y2 - y1) / (x2 - x1)); + rd += ((x2 > x1) ? 90 : -90) * Math.PI/180; + drawArrowhead(ctx, x2, y2, rd); + } + + Column { + anchors.fill: parent + spacing: 10 + + QGCLabel { + text: "POWER CONFIG" + font.pointSize: ScreenTools.fontPointFactor * (20); + } + + QGCLabel { + text: "Battery" + color: palette.text + font.pointSize: ScreenTools.fontPointFactor * (20); + } + + Rectangle { + width: parent.width + height: 120 + color: palette.windowShade + + Column { + id: batteryColumn + spacing: 10 + anchors.verticalCenter: parent.verticalCenter + x: (parent.x + 20) + + Row { + spacing: 10 + Column { + id: voltageCol + spacing: 10 + Row { + spacing: 10 + QGCLabel { text: "Number of Cells (in Series)"; width: firstColumnWidth; anchors.baseline: cellsField.baseline} + FactTextField { + id: cellsField + width: textEditWidth + fact: Fact { name: "BAT_N_CELLS" } + showUnits: true + } + } + Row { + id: battHighRow + spacing: 10 + QGCLabel { text: "Full Voltage (per cell)"; width: firstColumnWidth; anchors.baseline: battHighField.baseline} + FactTextField { + id: battHighField + width: textEditWidth + fact: Fact { name: "BAT_V_CHARGED" } + showUnits: true + } + } + Row { + id: battLowRow + spacing: 10 + QGCLabel { text: "Empty Voltage (per cell)"; width: firstColumnWidth; anchors.baseline: battLowField.baseline} + FactTextField { + id: battLowField + width: textEditWidth + fact: Fact { name: "BAT_V_EMPTY" } + showUnits: true + } + } + } + Canvas { + id: arrows + height: voltageCol.height + width: 40 + antialiasing: true + Connections { + target: ScreenTools + onRepaintRequestedChanged: { + arrows.requestPaint(); + } + } + onPaint: { + var y0 = voltageCol.mapFromItem(battHigh, 0, battHigh.height / 2).y; + var y1 = voltageCol.mapFromItem(battLow, 0, battLow.height / 2).y; + var context = getContext("2d"); + context.reset(); + context.strokeStyle = palette.button; + context.fillStyle = palette.button; + drawLineWithArrow(context, 0, y0, width, height * 0.25); + drawLineWithArrow(context, 0, y1, width, height * 0.85); + } + } + QGCColoredImage { + height: voltageCol.height + width: voltageCol.height * 0.75 + source: getBatteryImage(); + fillMode: Image.PreserveAspectFit + smooth: true + color: palette.button + cache: false + } + Item { width: 20; height: 1; } + Column { + spacing: 10 + anchors.verticalCenter: parent.verticalCenter + Row { + spacing: 10 + QGCLabel { + text: "Battery Max:" + color: palette.text + width: 80 + } + QGCLabel { + text: (battNumCells.value * battHighVolt.value).toFixed(1) + ' V' + color: palette.text + } + } + Row { + spacing: 10 + QGCLabel { + text: "Battery Min:" + color: palette.text + width: 80 + } + QGCLabel { + text: (battNumCells.value * battLowVolt.value).toFixed(1) + ' V' + color: palette.text + } + } + } + } + } + } + /* + * This is disabled for now + Row { + width: parent.width + spacing: 30 + visible: showAdvanced.checked + Column { + spacing: 10 + width: (parent.width / 2) - 5 + QGCLabel { + text: "Propeller Function" + color: palette.text + font.pointSize: ScreenTools.fontPointFactor * (20); + } + Rectangle { + width: parent.width + height: 160 + color: palette.windowShade + } + } + Column { + spacing: 10 + width: (parent.width / 2) - 5 + QGCLabel { + text: "Magnetometer Distortion" + color: palette.text + font.pointSize: ScreenTools.fontPointFactor * (20); + } + Rectangle { + width: parent.width + height: 160 + color: palette.windowShade + } + + } + } + */ + //-- Advanced Settings + QGCCheckBox { + id: showAdvanced + text: "Show Advanced Settings" + } + QGCLabel { + text: "Advanced Power Settings" + color: palette.text + font.pointSize: ScreenTools.fontPointFactor * (20); + visible: showAdvanced.checked + } + Rectangle { + width: parent.width + height: 40 + color: palette.windowShade + visible: showAdvanced.checked + Column { + id: advBatteryColumn + spacing: 10 + anchors.verticalCenter: parent.verticalCenter + x: (parent.x + 20) + Row { + spacing: 10 + QGCLabel { text: "Voltage Drop on Full Load (per cell)"; width: firstColumnWidth; anchors.baseline: battDropField.baseline} + FactTextField { + id: battDropField + width: textEditWidth + fact: Fact { name: "BAT_V_LOAD_DROP" } + showUnits: true + } + } + } + } + } +} diff --git a/src/AutoPilotPlugins/PX4/PowerComponentSummary.qml b/src/AutoPilotPlugins/PX4/PowerComponentSummary.qml new file mode 100644 index 0000000000000000000000000000000000000000..6577fe9bcc435221d49770852ae2f83aedc19531 --- /dev/null +++ b/src/AutoPilotPlugins/PX4/PowerComponentSummary.qml @@ -0,0 +1,58 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @brief Battery, propeller and magnetometer summary +/// @author Gus Grubba + +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 + +import QGroundControl.FactSystem 1.0 +import QGroundControl.FactControls 1.0 +import QGroundControl.Controls 1.0 + +Column { + Fact { id: batVChargedFact; name: "BAT_V_CHARGED" } + Fact { id: batVEmptyFact; name: "BAT_V_EMPTY" } + Fact { id: batCellsFact; name: "BAT_N_CELLS" } + + anchors.fill: parent + anchors.margins: 8 + + VehicleSummaryRow { + labelText: "Battery Full:" + valueText: batVChargedFact.valueString + } + + VehicleSummaryRow { + labelText: "Battery Empty:" + valueText: batVEmptyFact.valueString + } + + VehicleSummaryRow { + labelText: "Number of Cells:" + valueText: batCellsFact.valueString + } +} diff --git a/src/AutoPilotPlugins/PX4/RadioComponent.cc b/src/AutoPilotPlugins/PX4/RadioComponent.cc index 1a3536d8827dff5f7421945bd2a8ae79aa878ed0..275cc813968df5b093299d3c468e99763a655370 100644 --- a/src/AutoPilotPlugins/PX4/RadioComponent.cc +++ b/src/AutoPilotPlugins/PX4/RadioComponent.cc @@ -62,13 +62,7 @@ bool RadioComponent::setupComplete(void) const QStringList attitudeMappings; attitudeMappings << "RC_MAP_ROLL" << "RC_MAP_PITCH" << "RC_MAP_YAW" << "RC_MAP_THROTTLE"; foreach(QString mapParam, attitudeMappings) { - QVariant value; - if (_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), mapParam, value)) { - if (value.toInt() == 0) { - return false; - } - } else { - Q_ASSERT(false); + if (_autopilot->getParameterFact(mapParam)->value().toInt() == 0) { return false; } } @@ -86,28 +80,13 @@ bool RadioComponent::setupComplete(void) const QString param; param = QString("RC%1_MIN").arg(i); - if (_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), param, value)) { - rcMin = value.toInt(); - } else { - Q_ASSERT(false); - return false; - } + rcMin = _autopilot->getParameterFact(param)->value().toInt(); param = QString("RC%1_MAX").arg(i); - if (_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), param, value)) { - rcMax = value.toInt(); - } else { - Q_ASSERT(false); - return false; - } + rcMax = _autopilot->getParameterFact(param)->value().toInt(); param = QString("RC%1_TRIM").arg(i); - if (_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), param, value)) { - rcTrim = value.toInt(); - } else { - Q_ASSERT(false); - return false; - } + rcTrim = _autopilot->getParameterFact(param)->value().toInt(); if (rcMin == rcMinDefault && rcMax == rcMaxDefault && rcTrim == rcTrimDefault) { return false; diff --git a/src/AutoPilotPlugins/PX4/RadioComponentSummary.qml b/src/AutoPilotPlugins/PX4/RadioComponentSummary.qml index d6951d5860d8b7fadf5b1ce3c61c9a6ea0e7dd7b..4038a6161b21980a18938dce14a704616652fe0e 100644 --- a/src/AutoPilotPlugins/PX4/RadioComponentSummary.qml +++ b/src/AutoPilotPlugins/PX4/RadioComponentSummary.qml @@ -6,78 +6,49 @@ import QGroundControl.FactSystem 1.0 import QGroundControl.Controls 1.0 Column { - anchors.fill: parent - anchors.margins: 8 + Fact { id: mapRollFact; name: "RC_MAP_ROLL" } + Fact { id: mapPitchFact; name: "RC_MAP_PITCH" } + Fact { id: mapYawFact; name: "RC_MAP_YAW" } + Fact { id: mapThrottleFact; name: "RC_MAP_THROTTLE" } + Fact { id: mapFlapsFact; name: "RC_MAP_FLAPS" } + Fact { id: mapAux1Fact; name: "RC_MAP_AUX1" } + Fact { id: mapAux2Fact; name: "RC_MAP_AUX2" } - Component { - id: component + anchors.fill: parent + anchors.margins: 8 - Row { - width: parent.width - - QGCLabel { id: label; text: labelText } - QGCLabel { - Fact { id: fact; name: factName } - horizontalAlignment: Text.AlignRight - width: parent.width - label.contentWidth - text: fact.value == 0 ? zeroText : fact.value - } - } - } - - Loader { - property string labelText: "Roll:" - property string zeroText: "Setup required" - property string factName: "RC_MAP_ROLL" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Roll:" + valueText: mapRollFact.value == 0 ? "Setup required" : mapRollFact.valueString } - Loader { - property string labelText: "Pitch:" - property string zeroText: "Setup required" - property string factName: "RC_MAP_PITCH" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Pitch:" + valueText: mapPitchFact.value == 0 ? "Setup required" : mapPitchFact.valueString } - Loader { - property string labelText: "Yaw:" - property string zeroText: "Setup required" - property string factName: "RC_MAP_YAW" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Yaw:" + valueText: mapYawFact.value == 0 ? "Setup required" : mapYawFact.valueString } - Loader { - property string labelText: "Throttle:" - property string zeroText: "Setup required" - property string factName: "RC_MAP_THROTTLE" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Throttle:" + valueText: mapThrottleFact.value == 0 ? "Setup required" : mapThrottleFact.valueString } - Loader { - property string labelText: "Flaps:" - property string zeroText: "Disabled" - property string factName: "RC_MAP_FLAPS" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Flaps:" + valueText: mapFlapsFact.value == 0 ? "Disabled" : mapFlapsFact.valueString } - Loader { - property string labelText: "Aux1:" - property string zeroText: "Disabled" - property string factName: "RC_MAP_AUX1" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Aux1:" + valueText: mapAux1Fact.value == 0 ? "Disabled" : mapAux1Fact.valueString } - Loader { - property string labelText: "Aux2:" - property string zeroText: "Disabled" - property string factName: "RC_MAP_AUX2" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Aux2:" + valueText: mapAux2Fact.value == 0 ? "Disabled" : mapAux2Fact.valueString } } diff --git a/src/AutoPilotPlugins/PX4/SafetyComponent.qml b/src/AutoPilotPlugins/PX4/SafetyComponent.qml index 42ca8cc0ecbfa9ca85e7cf0eb6db265a78083226..a955a4d2bf281a3f10a2babe2f8cf559b34e227d 100644 --- a/src/AutoPilotPlugins/PX4/SafetyComponent.qml +++ b/src/AutoPilotPlugins/PX4/SafetyComponent.qml @@ -1,3 +1,26 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 @@ -6,6 +29,7 @@ import QGroundControl.FactSystem 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Palette 1.0 import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 Rectangle { QGCPalette { id: palette; colorGroupEnabled: true } @@ -29,7 +53,7 @@ Rectangle { QGCLabel { text: "SAFETY CONFIG" - font.pointSize: 20 + font.pointSize: ScreenTools.fontPointFactor * (20); } Item { height: 20; width: 10 } // spacer @@ -37,7 +61,7 @@ Rectangle { //----------------------------------------------------------------- //-- Return Home Triggers - QGCLabel { text: "Triggers For Return Home"; color: palette.text; font.pointSize: 20 } + QGCLabel { text: "Triggers For Return Home"; color: palette.text; font.pointSize: ScreenTools.fontPointFactor * (20); } Item { height: 10; width: 10 } // spacer @@ -96,7 +120,7 @@ Rectangle { //----------------------------------------------------------------- //-- Return Home Settings - QGCLabel { text: "Return Home Settings"; font.pointSize: 20 } + QGCLabel { text: "Return Home Settings"; font.pointSize: ScreenTools.fontPointFactor * (20); } Item { height: 10; width: 10 } // spacer @@ -201,7 +225,7 @@ Rectangle { y: parent.height - height - 20 width: 80 height: parent.height / 2 - source: "/qml/SafetyComponentTree.png" + source: "/qml/SafetyComponentTree.svg" fillMode: Image.Stretch smooth: true color: palette.windowShadeDark @@ -212,8 +236,8 @@ Rectangle { y: parent.height - height width: 100 height: parent.height * .75 - source: "/qml/SafetyComponentTree.png" - fillMode: Image.Stretch + source: "/qml/SafetyComponentTree.svg" + fillMode: Image.PreserveAspectFit smooth: true color: palette.button } @@ -248,12 +272,12 @@ Rectangle { QGCLabel { text: "Home loiter altitude"; color: palette.text; - enabled: homeLoiterCheckbox.checked == true + enabled: homeLoiterCheckbox.checked === true } FactTextField { id: descendField; fact: Fact { name: "RTL_DESCEND_ALT" } - enabled: homeLoiterCheckbox.checked == true + enabled: homeLoiterCheckbox.checked === true showUnits: true } } @@ -266,17 +290,17 @@ Rectangle { QGCLabel { property Fact fact: Fact { name: "NAV_RCL_OBC" } width: parent.width - font.pointSize: 14 + font.pointSize: ScreenTools.fontPointFactor * (14); text: "Warning: You have an advanced safety configuration set using the NAV_RCL_OBC parameter. The above settings may not apply."; - visible: fact.value != 0 + visible: fact.value !== 0 wrapMode: Text.Wrap } QGCLabel { property Fact fact: Fact { name: "NAV_DLL_OBC" } width: parent.width - font.pointSize: 14 + font.pointSize: ScreenTools.fontPointFactor * (14); text: "Warning: You have an advanced safety configuration set using the NAV_DLL_OBC parameter. The above settings may not apply."; - visible: fact.value != 0 + visible: fact.value !== 0 wrapMode: Text.Wrap } } diff --git a/src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml b/src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml index ab50fbb2228dee6c61ce90376050b0fd6b2ef8f6..f55be12b61ed816b7b5615245f2ed3945b7221df 100644 --- a/src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml +++ b/src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml @@ -7,63 +7,37 @@ import QGroundControl.FactControls 1.0 import QGroundControl.Controls 1.0 Column { - anchors.fill: parent - anchors.margins: 8 - - Row { - width: parent.width - - QGCLabel { id: rtlMinAlt; text: "RTL min alt:" } - FactLabel { - fact: Fact { name: "RTL_RETURN_ALT" } - horizontalAlignment: Text.AlignRight; - width: parent.width - rtlMinAlt.contentWidth; - } + Fact { id: returnAltFact; name: "RTL_RETURN_ALT" } + Fact { id: descendAltFact; name: "RTL_DESCEND_ALT" } + Fact { id: landDelayFact; name: "RTL_LAND_DELAY" } + Fact { id: commDLLossFact; name: "COM_DL_LOSS_EN" } + Fact { id: commRCLossFact; name: "COM_RC_LOSS_T" } + + anchors.fill: parent + anchors.margins: 8 + + VehicleSummaryRow { + labelText: "RTL min alt:" + valueText: returnAltFact.valueString } - Row { - width: parent.width - - QGCLabel { id: rtlHomeAlt; text: "RTL home alt:" } - FactLabel { - fact: Fact { name: "RTL_DESCEND_ALT" } - horizontalAlignment: Text.AlignRight; - width: parent.width - rtlHomeAlt.contentWidth; - } + VehicleSummaryRow { + labelText: "RTL home alt:" + valueText: descendAltFact.valueString } - Row { - width: parent.width - - QGCLabel { id: rtlLoiter; text: "RTL loiter delay:" } - QGCLabel { - property Fact fact: Fact { name: "RTL_LAND_DELAY" } - horizontalAlignment: Text.AlignRight; - width: parent.width - rtlLoiter.contentWidth; - text: fact.value < 0 ? "Disabled" : fact.valueString - } + VehicleSummaryRow { + labelText: "RTL loiter delay:" + valueText: landDelayFact.value < 0 ? "Disabled" : landDelayFact.valueString } - Row { - width: parent.width - - QGCLabel { id: commLoss; text: "Telemetry loss RTL:" } - QGCLabel { - property Fact fact: Fact { name: "COM_DL_LOSS_EN" } - horizontalAlignment: Text.AlignRight; - width: parent.width - commLoss.contentWidth; - text: fact.value != 1 ? "Disabled" : fact.valueString - } + VehicleSummaryRow { + labelText: "Telemetry loss RTL:" + valueText: commDLLossFact.value != -1 ? "Disabled" : commDLLossFact.valueString } - Row { - width: parent.width - - QGCLabel { id: rcLoss; text: "RC loss RTL (seconds):" } - FactLabel { - fact: Fact { name: "COM_RC_LOSS_T" } - horizontalAlignment: Text.AlignRight; - width: parent.width - rcLoss.contentWidth; - } + VehicleSummaryRow { + labelText: "RC loss RTL (seconds):" + valueText: commRCLossFact.valueString } } diff --git a/src/AutoPilotPlugins/PX4/SensorsComponent.cc b/src/AutoPilotPlugins/PX4/SensorsComponent.cc index 4c14ba7c32bf97e85f298913c7bb505fb38de232..60caa24922d363f8fab50804b43c8ffc9cf04566 100644 --- a/src/AutoPilotPlugins/PX4/SensorsComponent.cc +++ b/src/AutoPilotPlugins/PX4/SensorsComponent.cc @@ -62,14 +62,7 @@ bool SensorsComponent::requiresSetup(void) const bool SensorsComponent::setupComplete(void) const { foreach(QString triggerParam, setupCompleteChangedTriggerList()) { - QVariant value; - - if (!_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), triggerParam, value)) { - Q_ASSERT(false); - return false; - } - - if (value.toFloat() == 0.0f) { + if (_autopilot->getParameterFact(triggerParam)->value().toFloat() == 0.0f) { return false; } } diff --git a/src/AutoPilotPlugins/PX4/SensorsComponent.qml b/src/AutoPilotPlugins/PX4/SensorsComponent.qml index ad8159738f41607baa6b23b6c0754ceca70c6580..619de30c583f5868d57a372e0df8f0f8dd403352 100644 --- a/src/AutoPilotPlugins/PX4/SensorsComponent.qml +++ b/src/AutoPilotPlugins/PX4/SensorsComponent.qml @@ -1,11 +1,36 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 +import QtQuick.Dialogs 1.2 import QGroundControl.FactSystem 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Palette 1.0 import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 Rectangle { property QGCPalette qgcPal: QGCPalette { colorGroupEnabled: true } @@ -41,6 +66,25 @@ Rectangle { "ROTATION_ROLL_270_YAW_270" ] + readonly property string statusTextAreaDefaultText: "Sensor config is a work in progress. Not all visuals for all calibration types fully implemented.\n\n" + + "For Compass calibration you will need to rotate your vehicle through a number of positions. For this calibration is is best " + + "to be connected to you vehicle via radio instead of USB since the USB cable will likely get in the way.\n\n" + + "For Gyroscope calibration you will need to place your vehicle right side up on solid surface and leave it still.\n\n" + + "For Accelerometer calibration you will need to place your vehicle on all six sides and hold it there for a few seconds.\n\n" + + "For Airspeed calibration you will need to keep your airspeed sensor out of any wind.\n\n" + + Fact { id: cal_mag0_id; name: "CAL_MAG0_ID" } + Fact { id: cal_mag1_id; name: "CAL_MAG1_ID" } + Fact { id: cal_mag2_id; name: "CAL_MAG2_ID" } + Fact { id: cal_mag0_rot; name: "CAL_MAG0_ROT" } + Fact { id: cal_mag1_rot; name: "CAL_MAG1_ROT" } + Fact { id: cal_mag2_rot; name: "CAL_MAG2_ROT" } + + // Id > = signals compass available, rot < 0 signals internal compass + property bool showCompass0Rot: cal_mag0_id.value > 0 && cal_mag0_rot.value >= 0 + property bool showCompass1Rot: cal_mag1_id.value > 0 && cal_mag1_rot.value >= 0 + property bool showCompass2Rot: cal_mag2_id.value > 0 && cal_mag2_rot.value >= 0 + color: qgcPal.window // We use this bogus loader just so we can get an onLoaded signal to hook to in order to @@ -54,6 +98,231 @@ Rectangle { onLoaded: { controller.statusLog = statusTextArea controller.progressBar = progressBar + controller.compassButton = compassButton + controller.gyroButton = gyroButton + controller.accelButton = accelButton + controller.airspeedButton = airspeedButton + controller.cancelButton = cancelButton + controller.orientationCalAreaHelpText = orientationCalAreaHelpText + } + } + + Connections { + target: controller + + onResetStatusTextArea: statusTextArea.text = statusTextAreaDefaultText + onSetCompassRotations: showCompassRotationOverlay() + } + + Rectangle { + id: overlay + anchors.fill: parent + color: qgcPal.window + opacity: 0.75 + z: 100 + visible: false + } + + Rectangle { + width: 300 + height: 100 + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + color: qgcPal.window + border.width: 1 + border.color: qgcPal.text + visible: controller.waitingForCancel + z: overlay.z + 1 + + onVisibleChanged: { + overlay.visible = visible + } + + QGCLabel { + anchors.fill: parent + verticalAlignment: Text.AlignVCenter + horizontalAlignment: Text.AlignHCenter + text: "Waiting for Cancel (may take a few seconds)" + } + } + + Rectangle { + property string calibrationType + + id: boardRotationOverlay + width: 300 + height: boardRotationOverlayColumn.height + 11 + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + color: qgcPal.window + border.width: 1 + border.color: qgcPal.text + visible: false + z: overlay.z + 1 + + Column { + id: boardRotationOverlayColumn + anchors.topMargin: 10 + anchors.top: parent.top + width: parent.width + spacing: 10 + + Column { + anchors.leftMargin: 10 + anchors.rightMargin: 10 + anchors.left: parent.left + anchors.right: parent.right + spacing: 10 + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + text: "Please check and/or update board rotation before calibrating" + } + + FactComboBox { + width: rotationColumnWidth + model: rotations + fact: Fact { name: "SENS_BOARD_ROT" } + } + } + + QGCButton { + x: 1 + width: parent.width - 2 + primary: true + text: "OK" + + onClicked: { + boardRotationOverlay.visible = false + overlay.visible = false + + if (boardRotationOverlay.calibrationType == "gyro") { + controller.calibrateGyro() + } else if (boardRotationOverlay.calibrationType == "accel") { + controller.calibrateAccel() + } else if (boardRotationOverlay.calibrationType == "compass") { + controller.calibrateCompass() + } + } + } + } + } + + function showBoardRotationOverlay(calibrationType) { + boardRotationOverlay.calibrationType = calibrationType + boardRotationOverlay.visible = true + overlay.visible = true + } + + Rectangle { + id: compassRotationOverlay + width: 300 + height: compassRotationOverlayColumn.height + 11 + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + color: qgcPal.window + border.width: 1 + border.color: qgcPal.text + visible: false + z: overlay.z + 1 + + Column { + id: compassRotationOverlayColumn + anchors.topMargin: 10 + anchors.top: parent.top + width: parent.width + spacing: 10 + + Column { + anchors.leftMargin: 10 + anchors.rightMargin: 10 + anchors.left: parent.left + anchors.right: parent.right + spacing: 10 + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + text: "Please check and/or update compass rotation(s)" + } + + // Compass 0 rotation + Component { + id: compass0ComponentLabel + + QGCLabel { text: "Compass Orientation" } + } + Component { + id: compass0ComponentCombo + + FactComboBox { + id: compass0RotationCombo + width: rotationColumnWidth + model: rotations + fact: Fact { name: "CAL_MAG0_ROT" } + } + } + Loader { sourceComponent: showCompass0Rot ? compass0ComponentLabel : null } + Loader { sourceComponent: showCompass0Rot ? compass0ComponentCombo : null } + + // Compass 1 rotation + Component { + id: compass1ComponentLabel + + QGCLabel { text: "Compass 1 Orientation" } + } + Component { + id: compass1ComponentCombo + + FactComboBox { + id: compass1RotationCombo + width: rotationColumnWidth + model: rotations + fact: Fact { name: "CAL_MAG1_ROT" } + } + } + Loader { sourceComponent: showCompass1Rot ? compass1ComponentLabel : null } + Loader { sourceComponent: showCompass1Rot ? compass1ComponentCombo : null } + + // Compass 2 rotation + Component { + id: compass2ComponentLabel + + QGCLabel { text: "Compass 2 Orientation" } + } + Component { + id: compass2ComponentCombo + + FactComboBox { + id: compass1RotationCombo + width: rotationColumnWidth + model: rotations + fact: Fact { name: "CAL_MAG2_ROT" } + } + } + Loader { sourceComponent: showCompass2Rot ? compass2ComponentLabel : null } + Loader { sourceComponent: showCompass2Rot ? compass2ComponentCombo : null } + } + + QGCButton { + x: 1 + width: parent.width - 2 + primary: true + text: "OK" + + onClicked: { + compassRotationOverlay.visible = false + overlay.visible = false + } + } + } + } + + function showCompassRotationOverlay() { + if (showCompass0Rot || showCompass1Rot || showCompass2Rot) { + compassRotationOverlay.visible = true + overlay.visible = true } } @@ -62,7 +331,7 @@ Rectangle { QGCLabel { text: "SENSORS CONFIG" - font.pointSize: 20 + font.pointSize: ScreenTools.fontPointFactor * (20); } Item { height: 20; width: 10 } // spacer @@ -72,45 +341,58 @@ Rectangle { spacing: 20 - QGCLabel { text: "Calibrate:"; anchors.baseline: firstButton.baseline } + QGCLabel { text: "Calibrate:"; anchors.baseline: compassButton.baseline } IndicatorButton { property Fact fact: Fact { name: "CAL_MAG0_ID" } - id: firstButton + id: compassButton width: parent.buttonWidth text: "Compass" indicatorGreen: fact.value != 0 - onClicked: controller.calibrateCompass() + + onClicked: showBoardRotationOverlay("compass") } IndicatorButton { property Fact fact: Fact { name: "CAL_GYRO0_ID" } + id: gyroButton width: parent.buttonWidth text: "Gyroscope" indicatorGreen: fact.value != 0 - onClicked: controller.calibrateGyro() + + onClicked: showBoardRotationOverlay("gyro") } IndicatorButton { property Fact fact: Fact { name: "CAL_ACC0_ID" } + id: accelButton width: parent.buttonWidth text: "Accelerometer" indicatorGreen: fact.value != 0 - onClicked: controller.calibrateAccel() + + onClicked: showBoardRotationOverlay("accel") } IndicatorButton { property Fact fact: Fact { name: "SENS_DPRES_OFF" } + id: airspeedButton width: parent.buttonWidth text: "Airspeed" visible: controller.fixedWing indicatorGreen: fact.value != 0 onClicked: controller.calibrateAirspeed() } + + QGCButton { + id: cancelButton + text: "Cancel" + enabled: false + onClicked: controller.cancelCalibration() + } } Item { height: 20; width: 10 } // spacer @@ -135,12 +417,7 @@ Rectangle { height: parent.height readOnly: true frameVisible: false - text: "Sensor config is a work in progress. Not all visuals for all calibration types fully implemented.\n\n" + - "For Compass calibration you will need to rotate your vehicle through a number of positions. For this calibration is is best " + - "to be connected to you vehicle via radio instead of USB since the USB cable will likely get in the way.\n\n" + - "For Gyroscope calibration you will need to place your vehicle right side up on solid surface and leave it still.\n\n" + - "For Accelerometer calibration you will need to place your vehicle on all six sides and hold it there for a few seconds.\n\n" + - "For Airspeed calibration you will need to keep your airspeed sensor out of any wind.\n\n" + text: statusTextAreaDefaultText style: TextAreaStyle { textColor: qgcPal.text @@ -149,112 +426,77 @@ Rectangle { } Rectangle { - id: gyroCalArea - width: parent.calDisplayAreaWidth - height: parent.height - visible: controller.showGyroCalArea - color: qgcPal.windowShade - - Column { - width: parent.width - - QGCLabel { - text: "Place your vehicle upright on a solid surface and hold it still." - } - - VehicleRotationCal { - width: 200 - height: 200 - calValid: true - calInProgress: controller.gyroCalInProgress - imageSource: "qrc:///qml/VehicleDown.png" - } - - } - } - - Rectangle { - id: accelCalArea + id: orientationCalArea width: parent.calDisplayAreaWidth height: parent.height - visible: controller.showAccelCalArea + visible: controller.showOrientationCalArea color: qgcPal.windowShade QGCLabel { - id: calAreaLabel - width: parent.width - wrapMode: Text.WordWrap - - text: "Place your vehicle into each of the positions below and hold still. Once that position is completed you can move to another." + id: orientationCalAreaHelpText + width: parent.width + wrapMode: Text.WordWrap + font.pointSize: ScreenTools.fontPointFactor * (17); } Flow { - y: calAreaLabel.height + y: orientationCalAreaHelpText.height width: parent.width - height: parent.height - calAreaLabel.implicitHeight + height: parent.height - orientationCalAreaHelpText.implicitHeight spacing: 5 VehicleRotationCal { - width: 200 - height: 200 - calValid: controller.accelCalDownSideDone - calInProgress: controller.accelCalDownSideInProgress - imageSource: "qrc:///qml/VehicleDown.png" + visible: controller.orientationCalDownSideVisible + calValid: controller.orientationCalDownSideDone + calInProgress: controller.orientationCalDownSideInProgress + calInProgressText: controller.orientationCalDownSideRotate ? "Rotate" : "Hold Still" + imageSource: controller.orientationCalDownSideRotate ? "qrc:///qml/VehicleDownRotate.png" : "qrc:///qml/VehicleDown.png" } VehicleRotationCal { - width: 200 - height: 200 - calValid: controller.accelCalUpsideDownSideDone - calInProgress: controller.accelCalUpsideDownSideInProgress - imageSource: "qrc:///qml/VehicleUpsideDown.png" + visible: controller.orientationCalUpsideDownSideVisible + calValid: controller.orientationCalUpsideDownSideDone + calInProgress: controller.orientationCalUpsideDownSideInProgress + calInProgressText: "Hold Still" + imageSource: "qrc:///qml/VehicleUpsideDown.png" } VehicleRotationCal { - width: 200 - height: 200 - calValid: controller.accelCalNoseDownSideDone - calInProgress: controller.accelCalNoseDownSideInProgress - imageSource: "qrc:///qml/VehicleNoseDown.png" + visible: controller.orientationCalNoseDownSideVisible + calValid: controller.orientationCalNoseDownSideDone + calInProgress: controller.orientationCalNoseDownSideInProgress + calInProgressText: controller.orientationCalNoseDownSideRotate ? "Rotate" : "Hold Still" + imageSource: controller.orientationCalNoseDownSideRotate ? "qrc:///qml/VehicleNoseDownRotate.png" : "qrc:///qml/VehicleNoseDown.png" } VehicleRotationCal { - width: 200 - height: 200 - calValid: controller.accelCalTailDownSideDone - calInProgress: controller.accelCalTailDownSideInProgress - imageSource: "qrc:///qml/VehicleTailDown.png" + visible: controller.orientationCalTailDownSideVisible + calValid: controller.orientationCalTailDownSideDone + calInProgress: controller.orientationCalTailDownSideInProgress + calInProgressText: "Hold Still" + imageSource: "qrc:///qml/VehicleTailDown.png" } VehicleRotationCal { - width: 200 - height: 200 - calValid: controller.accelCalLeftSideDone - calInProgress: controller.accelCalLeftSideInProgress - imageSource: "qrc:///qml/VehicleLeft.png" + visible: controller.orientationCalLeftSideVisible + calValid: controller.orientationCalLeftSideDone + calInProgress: controller.orientationCalLeftSideInProgress + calInProgressText: controller.orientationCalLeftSideRotate ? "Rotate" : "Hold Still" + imageSource: controller.orientationCalLeftSideRotate ? "qrc:///qml/VehicleLeftRotate.png" : "qrc:///qml/VehicleLeft.png" } VehicleRotationCal { - width: 200 - height: 200 - calValid: controller.accelCalRightSideDone - calInProgress: controller.accelCalRightSideInProgress - imageSource: "qrc:///qml/VehicleRight.png" + visible: controller.orientationCalRightSideVisible + calValid: controller.orientationCalRightSideDone + calInProgress: controller.orientationCalRightSideInProgress + calInProgressText: "Hold Still" + imageSource: "qrc:///qml/VehicleRight.png" } } } Column { - property Fact cal_mag0_rot: Fact { name: "CAL_MAG0_ROT" } - property Fact cal_mag1_rot: Fact { name: "CAL_MAG1_ROT" } - property Fact cal_mag2_rot: Fact { name: "CAL_MAG2_ROT" } - - // Compass rotation parameter < 0 indicates either internal compass, or no compass. So in - // both those cases we do not show a rotation combo. - property bool showCompass0: cal_mag0_rot.value >= 0 - property bool showCompass1: cal_mag1_rot.value >= 0 - property bool showCompass2: cal_mag2_rot.value >= 0 - x: parent.width - rotationColumnWidth QGCLabel { text: "Autpilot Orientation" } FactComboBox { + id: boardRotationCombo width: rotationColumnWidth; model: rotations fact: Fact { name: "SENS_BOARD_ROT" } @@ -262,57 +504,60 @@ Rectangle { // Compass 0 rotation Component { - id: compass0ComponentLabel + id: compass0ComponentLabel2 QGCLabel { text: "Compass Orientation" } } Component { - id: compass0ComponentCombo + id: compass0ComponentCombo2 FactComboBox { + id: compass0RotationCombo width: rotationColumnWidth model: rotations fact: Fact { name: "CAL_MAG0_ROT" } } } - Loader { sourceComponent: parent.showCompass0 ? compass0ComponentLabel : null } - Loader { sourceComponent: parent.showCompass0 ? compass0ComponentCombo : null } + Loader { sourceComponent: showCompass0Rot ? compass0ComponentLabel2 : null } + Loader { sourceComponent: showCompass0Rot ? compass0ComponentCombo2 : null } // Compass 1 rotation Component { - id: compass1ComponentLabel + id: compass1ComponentLabel2 QGCLabel { text: "Compass 1 Orientation" } } Component { - id: compass1ComponentCombo + id: compass1ComponentCombo2 FactComboBox { + id: compass1RotationCombo width: rotationColumnWidth model: rotations fact: Fact { name: "CAL_MAG1_ROT" } } } - Loader { sourceComponent: parent.showCompass1 ? compass1ComponentLabel : null } - Loader { sourceComponent: parent.showCompass1 ? compass1ComponentCombo : null } + Loader { sourceComponent: showCompass1Rot ? compass1ComponentLabel2 : null } + Loader { sourceComponent: showCompass1Rot ? compass1ComponentCombo2 : null } // Compass 2 rotation Component { - id: compass2ComponentLabel + id: compass2ComponentLabel2 QGCLabel { text: "Compass 2 Orientation" } } Component { - id: compass2ComponentCombo + id: compass2ComponentCombo2 FactComboBox { + id: compass1RotationCombo width: rotationColumnWidth model: rotations fact: Fact { name: "CAL_MAG2_ROT" } } } - Loader { sourceComponent: parent.showCompass2 ? compass2ComponentLabel : null } - Loader { sourceComponent: parent.showCompass2 ? compass2ComponentCombo : null } + Loader { sourceComponent: showCompass2Rot ? compass2ComponentLabel2 : null } + Loader { sourceComponent: showCompass2Rot ? compass2ComponentCombo2 : null } } } } diff --git a/src/AutoPilotPlugins/PX4/SensorsComponentController.cc b/src/AutoPilotPlugins/PX4/SensorsComponentController.cc index 6b44d110e31968f9fb17ceb83e19e205e4ca789a..c3d8ac7575943defd72853d9d8bf4f56b6986f58 100644 --- a/src/AutoPilotPlugins/PX4/SensorsComponentController.cc +++ b/src/AutoPilotPlugins/PX4/SensorsComponentController.cc @@ -36,24 +36,53 @@ SensorsComponentController::SensorsComponentController(AutoPilotPlugin* autopilo QObject(parent), _statusLog(NULL), _progressBar(NULL), - _showGyroCalArea(false), - _showAccelCalArea(false), + _compassButton(NULL), + _gyroButton(NULL), + _accelButton(NULL), + _airspeedButton(NULL), + _cancelButton(NULL), + _showOrientationCalArea(false), _gyroCalInProgress(false), - _accelCalDownSideDone(false), - _accelCalUpsideDownSideDone(false), - _accelCalLeftSideDone(false), - _accelCalRightSideDone(false), - _accelCalNoseDownSideDone(false), - _accelCalTailDownSideDone(false), - _accelCalDownSideInProgress(false), - _accelCalUpsideDownSideInProgress(false), - _accelCalLeftSideInProgress(false), - _accelCalRightSideInProgress(false), - _accelCalNoseDownSideInProgress(false), - _accelCalTailDownSideInProgress(false), + _magCalInProgress(false), + _accelCalInProgress(false), + _orientationCalDownSideDone(false), + _orientationCalUpsideDownSideDone(false), + _orientationCalLeftSideDone(false), + _orientationCalRightSideDone(false), + _orientationCalNoseDownSideDone(false), + _orientationCalTailDownSideDone(false), + _orientationCalDownSideVisible(false), + _orientationCalUpsideDownSideVisible(false), + _orientationCalLeftSideVisible(false), + _orientationCalRightSideVisible(false), + _orientationCalNoseDownSideVisible(false), + _orientationCalTailDownSideVisible(false), + _orientationCalDownSideInProgress(false), + _orientationCalUpsideDownSideInProgress(false), + _orientationCalLeftSideInProgress(false), + _orientationCalRightSideInProgress(false), + _orientationCalNoseDownSideInProgress(false), + _orientationCalTailDownSideInProgress(false), + _orientationCalDownSideRotate(false), + _orientationCalLeftSideRotate(false), + _orientationCalNoseDownSideRotate(false), + _unknownFirmwareVersion(false), + _waitingForCancel(false), _autopilot(autopilot) { - Q_ASSERT(autopilot); + Q_ASSERT(_autopilot); + Q_ASSERT(_autopilot->pluginReady()); + + _uas = _autopilot->uas(); + Q_ASSERT(_uas); + + // Mag rotation parameters are optional + _showCompass0 = _autopilot->parameterExists("CAL_MAG0_ROT") && + _autopilot->getParameterFact("CAL_MAG0_ROT")->value().toInt() >= 0; + _showCompass1 = _autopilot->parameterExists("CAL_MAG1_ROT") && + _autopilot->getParameterFact("CAL_MAG1_ROT")->value().toInt() >= 0; + _showCompass2 = _autopilot->parameterExists("CAL_MAG2_ROT") && + _autopilot->getParameterFact("CAL_MAG2_ROT")->value().toInt() >= 0; } /// Appends the specified text to the status log area in the ui @@ -69,56 +98,115 @@ void SensorsComponentController::_appendStatusLog(const QString& text) Q_ARG(QVariant, varText)); } -void SensorsComponentController::calibrateGyro(void) +void SensorsComponentController::_startLogCalibration(void) { - _beginTextLogging(); + _unknownFirmwareVersion = false; + _hideAllCalAreas(); - UASInterface* uas = _autopilot->uas(); - Q_ASSERT(uas); - uas->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); + connect(_uas, &UASInterface::textMessageReceived, this, &SensorsComponentController::_handleUASTextMessage); + + _cancelButton->setEnabled(false); } -void SensorsComponentController::calibrateCompass(void) +void SensorsComponentController::_startVisualCalibration(void) { - _hideAllCalAreas(); - _beginTextLogging(); - - UASInterface* uas = _autopilot->uas(); - Q_ASSERT(uas); - uas->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); + _compassButton->setEnabled(false); + _gyroButton->setEnabled(false); + _accelButton->setEnabled(false); + _airspeedButton->setEnabled(false); + _cancelButton->setEnabled(true); + + _progressBar->setProperty("value", 0); } -void SensorsComponentController::calibrateAccel(void) +void SensorsComponentController::_stopCalibration(SensorsComponentController::StopCalibrationCode code) { - _beginTextLogging(); + disconnect(_uas, &UASInterface::textMessageReceived, this, &SensorsComponentController::_handleUASTextMessage); + + _compassButton->setEnabled(true); + _gyroButton->setEnabled(true); + _accelButton->setEnabled(true); + _airspeedButton->setEnabled(true); + _cancelButton->setEnabled(false); + + if (code == StopCalibrationSuccess) { + _orientationCalDownSideDone = true; + _orientationCalUpsideDownSideDone = true; + _orientationCalLeftSideDone = true; + _orientationCalRightSideDone = true; + _orientationCalTailDownSideDone = true; + _orientationCalNoseDownSideDone = true; + _orientationCalDownSideInProgress = false; + _orientationCalUpsideDownSideInProgress = false; + _orientationCalLeftSideInProgress = false; + _orientationCalRightSideInProgress = false; + _orientationCalNoseDownSideInProgress = false; + _orientationCalTailDownSideInProgress = false; + emit orientationCalSidesDoneChanged(); + emit orientationCalSidesInProgressChanged(); + + _progressBar->setProperty("value", 1); + } else { + _progressBar->setProperty("value", 0); + } + + _waitingForCancel = false; + emit waitingForCancelChanged(); - UASInterface* uas = _autopilot->uas(); - Q_ASSERT(uas); - uas->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0); + _refreshParams(); + + switch (code) { + case StopCalibrationSuccess: + _orientationCalAreaHelpText->setProperty("text", "Calibration complete"); + emit resetStatusTextArea(); + if (_magCalInProgress) { + emit setCompassRotations(); + } + break; + + case StopCalibrationCancelled: + emit resetStatusTextArea(); + _hideAllCalAreas(); + break; + + default: + // Assume failed + _hideAllCalAreas(); + QGCMessageBox::warning("Calibration", "Calibration failed. Calibration log will be displayed."); + break; + } + + _magCalInProgress = false; + _accelCalInProgress = false; + _gyroCalInProgress = false; } -void SensorsComponentController::calibrateAirspeed(void) +void SensorsComponentController::calibrateGyro(void) { - _hideAllCalAreas(); - _beginTextLogging(); + _startLogCalibration(); + _uas->startCalibration(UASInterface::StartCalibrationGyro); +} - UASInterface* uas = _autopilot->uas(); - Q_ASSERT(uas); - uas->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0); +void SensorsComponentController::calibrateCompass(void) +{ + _startLogCalibration(); + _uas->startCalibration(UASInterface::StartCalibrationMag); } -void SensorsComponentController::_beginTextLogging(void) +void SensorsComponentController::calibrateAccel(void) { - UASInterface* uas = _autopilot->uas(); - Q_ASSERT(uas); - connect(uas, &UASInterface::textMessageReceived, this, &SensorsComponentController::_handleUASTextMessage); + _startLogCalibration(); + _uas->startCalibration(UASInterface::StartCalibrationAccel); +} + +void SensorsComponentController::calibrateAirspeed(void) +{ + _startLogCalibration(); + _uas->startCalibration(UASInterface::StartCalibrationAirspeed); } void SensorsComponentController::_handleUASTextMessage(int uasId, int compId, int severity, QString text) { - QString startingSidePrefix("Hold still, starting to measure "); - QString sideDoneSuffix(" side done, rotate to a different side"); - Q_UNUSED(compId); Q_UNUSED(severity); @@ -128,14 +216,6 @@ void SensorsComponentController::_handleUASTextMessage(int uasId, int compId, in return; } - QStringList ignorePrefixList; - ignorePrefixList << "[cmd]" << "[mavlink pm]" << "[ekf check]" << "[pm]" << "[inav]"; - foreach (QString ignorePrefix, ignorePrefixList) { - if (text.startsWith(ignorePrefix)) { - return; - } - } - if (text.contains("progress <")) { QString percent = text.split("<").last().split(">").first(); bool ok; @@ -148,113 +228,180 @@ void SensorsComponentController::_handleUASTextMessage(int uasId, int compId, in } _appendStatusLog(text); + + if (_unknownFirmwareVersion) { + // We don't know how to do visual cal with the version of firwmare + return; + } + + // All calibration messages start with [cal] + QString calPrefix("[cal] "); + if (!text.startsWith(calPrefix)) { + return; + } + text = text.right(text.length() - calPrefix.length()); - if (text == "gyro calibration: started") { - _hideAllCalAreas(); - _updateAndEmitShowGyroCalArea(true); - _updateAndEmitGyroCalInProgress(true); - } else if (text == "accel calibration: started") { - _hideAllCalAreas(); - _accelCalDownSideDone = false; - _accelCalUpsideDownSideDone = false; - _accelCalLeftSideDone = false; - _accelCalRightSideDone = false; - _accelCalTailDownSideDone = false; - _accelCalNoseDownSideDone = false; - _accelCalDownSideInProgress = false; - _accelCalUpsideDownSideInProgress = false; - _accelCalLeftSideInProgress = false; - _accelCalRightSideInProgress = false; - _accelCalNoseDownSideInProgress = false; - _accelCalTailDownSideInProgress = false; - emit accelCalSidesDoneChanged(); - emit accelCalSidesInProgressChanged(); - _updateAndEmitShowAccelCalArea(true); - } else if (text.startsWith(startingSidePrefix)) { - QString side = text.right(text.length() - startingSidePrefix.length()).section(" ", 0, 0); + QString calStartPrefix("calibration started: "); + if (text.startsWith(calStartPrefix)) { + text = text.right(text.length() - calStartPrefix.length()); + + // Split version number and cal type + QStringList parts = text.split(" "); + if (parts.count() != 2 && parts[0].toInt() != 1) { + _unknownFirmwareVersion = true; + qDebug() << "Unknown cal firmware version, using log"; + return; + } + + _startVisualCalibration(); + + text = parts[1]; + if (text == "accel" || text == "mag" || text == "gyro") { + // Reset all progress indication + _orientationCalDownSideDone = false; + _orientationCalUpsideDownSideDone = false; + _orientationCalLeftSideDone = false; + _orientationCalRightSideDone = false; + _orientationCalTailDownSideDone = false; + _orientationCalNoseDownSideDone = false; + _orientationCalDownSideInProgress = false; + _orientationCalUpsideDownSideInProgress = false; + _orientationCalLeftSideInProgress = false; + _orientationCalRightSideInProgress = false; + _orientationCalNoseDownSideInProgress = false; + _orientationCalTailDownSideInProgress = false; + + // Reset all visibility + _orientationCalDownSideVisible = false; + _orientationCalUpsideDownSideVisible = false; + _orientationCalLeftSideVisible = false; + _orientationCalRightSideVisible = false; + _orientationCalTailDownSideVisible = false; + _orientationCalNoseDownSideVisible = false; + + _orientationCalAreaHelpText->setProperty("text", "Place your vehicle into one of the Incomplete orientations shown below and hold it still"); + + if (text == "accel") { + _accelCalInProgress = true; + _orientationCalDownSideVisible = true; + _orientationCalUpsideDownSideVisible = true; + _orientationCalLeftSideVisible = true; + _orientationCalRightSideVisible = true; + _orientationCalTailDownSideVisible = true; + _orientationCalNoseDownSideVisible = true; + } else if (text == "mag") { + _magCalInProgress = true; + _orientationCalDownSideVisible = true; + _orientationCalLeftSideVisible = true; + _orientationCalNoseDownSideVisible = true; + } else if (text == "gyro") { + _gyroCalInProgress = true; + _orientationCalDownSideVisible = true; + } else { + Q_ASSERT(false); + } + emit orientationCalSidesDoneChanged(); + emit orientationCalSidesVisibleChanged(); + emit orientationCalSidesInProgressChanged(); + _updateAndEmitShowOrientationCalArea(true); + } + return; + } + + if (text.endsWith("orientation detected")) { + QString side = text.section(" ", 0, 0); qDebug() << "Side started" << side; + if (side == "down") { - _accelCalDownSideInProgress = true; + _orientationCalDownSideInProgress = true; + if (_magCalInProgress) { + _orientationCalDownSideRotate = true; + } } else if (side == "up") { - _accelCalUpsideDownSideInProgress = true; + _orientationCalUpsideDownSideInProgress = true; } else if (side == "left") { - _accelCalLeftSideInProgress = true; + _orientationCalLeftSideInProgress = true; + if (_magCalInProgress) { + _orientationCalLeftSideRotate = true; + } } else if (side == "right") { - _accelCalRightSideInProgress = true; + _orientationCalRightSideInProgress = true; } else if (side == "front") { - _accelCalNoseDownSideInProgress = true; + _orientationCalNoseDownSideInProgress = true; + if (_magCalInProgress) { + _orientationCalNoseDownSideRotate = true; + } } else if (side == "back") { - _accelCalTailDownSideInProgress = true; + _orientationCalTailDownSideInProgress = true; } - emit accelCalSidesInProgressChanged(); - } else if (text.endsWith(sideDoneSuffix)) { + + if (_magCalInProgress) { + _orientationCalAreaHelpText->setProperty("text", "Rotate the vehicle continuously as shown in the diagram until marked as Completed"); + } else { + _orientationCalAreaHelpText->setProperty("text", "Hold still in the current orientation"); + } + + emit orientationCalSidesInProgressChanged(); + emit orientationCalSidesRotateChanged(); + return; + } + + if (text.endsWith("side done, rotate to a different side")) { QString side = text.section(" ", 0, 0); qDebug() << "Side finished" << side; + if (side == "down") { - _accelCalDownSideInProgress = false; - _accelCalDownSideDone = true; + _orientationCalDownSideInProgress = false; + _orientationCalDownSideDone = true; + _orientationCalDownSideRotate = false; } else if (side == "up") { - _accelCalUpsideDownSideInProgress = false; - _accelCalUpsideDownSideDone = true; + _orientationCalUpsideDownSideInProgress = false; + _orientationCalUpsideDownSideDone = true; } else if (side == "left") { - _accelCalLeftSideInProgress = false; - _accelCalLeftSideDone = true; + _orientationCalLeftSideInProgress = false; + _orientationCalLeftSideDone = true; + _orientationCalLeftSideRotate = false; } else if (side == "right") { - _accelCalRightSideInProgress = false; - _accelCalRightSideDone = true; + _orientationCalRightSideInProgress = false; + _orientationCalRightSideDone = true; } else if (side == "front") { - _accelCalNoseDownSideInProgress = false; - _accelCalNoseDownSideDone = true; + _orientationCalNoseDownSideInProgress = false; + _orientationCalNoseDownSideDone = true; + _orientationCalNoseDownSideRotate = false; } else if (side == "back") { - _accelCalTailDownSideInProgress = false; - _accelCalTailDownSideDone = true; + _orientationCalTailDownSideInProgress = false; + _orientationCalTailDownSideDone = true; } - emit accelCalSidesInProgressChanged(); - emit accelCalSidesDoneChanged(); - } else if (text == "accel calibration: done") { - _progressBar->setProperty("value", 1); - _accelCalDownSideDone = true; - _accelCalUpsideDownSideDone = true; - _accelCalLeftSideDone = true; - _accelCalRightSideDone = true; - _accelCalTailDownSideDone = true; - _accelCalNoseDownSideDone = true; - _accelCalDownSideInProgress = false; - _accelCalUpsideDownSideInProgress = false; - _accelCalLeftSideInProgress = false; - _accelCalRightSideInProgress = false; - _accelCalNoseDownSideInProgress = false; - _accelCalTailDownSideInProgress = false; - emit accelCalSidesDoneChanged(); - emit accelCalSidesInProgressChanged(); - _refreshParams(); - } else if (text == "gyro calibration: done") { - _progressBar->setProperty("value", 1); - _updateAndEmitGyroCalInProgress(false); - _refreshParams(); - } else if (text == "mag calibration: done" || text == "dpress calibration: done") { - _progressBar->setProperty("value", 1); - _refreshParams(); - } else if (text.endsWith(" calibration: failed")) { - QGCMessageBox::warning("Calibration", "Calibration failed. Calibration log will be displayed."); - _hideAllCalAreas(); - _progressBar->setProperty("value", 0); - _updateAndEmitGyroCalInProgress(false); - _refreshParams(); + + _orientationCalAreaHelpText->setProperty("text", "Place you vehicle into one of the orientations shown below and hold it still"); + + emit orientationCalSidesInProgressChanged(); + emit orientationCalSidesDoneChanged(); + emit orientationCalSidesRotateChanged(); + return; + } + + QString calCompletePrefix("calibration done:"); + if (text.startsWith(calCompletePrefix)) { + _stopCalibration(StopCalibrationSuccess); + return; + } + + if (text.startsWith("calibration cancelled")) { + _stopCalibration(_waitingForCancel ? StopCalibrationCancelled : StopCalibrationFailed); + return; + } + + if (text.startsWith("calibration failed")) { + _stopCalibration(StopCalibrationFailed); + return; } } void SensorsComponentController::_refreshParams(void) { -#if 0 - // FIXME: Not sure if firmware issue yet - _autopilot->refreshParametersPrefix("CAL_"); - _autopilot->refreshParametersPrefix("SENS_"); -#else - // Sending too many parameter requests like above doesn't seem to work. So for now, - // ask for everything back - _autopilot->refreshAllParameters(); -#endif + _autopilot->refreshParametersPrefix(FactSystem::defaultComponentId, "CAL_"); + _autopilot->refreshParametersPrefix(FactSystem::defaultComponentId, "SENS_"); } bool SensorsComponentController::fixedWing(void) @@ -264,26 +411,23 @@ bool SensorsComponentController::fixedWing(void) return uas->getSystemType() == MAV_TYPE_FIXED_WING; } -void SensorsComponentController::_updateAndEmitGyroCalInProgress(bool inProgress) -{ - _gyroCalInProgress = inProgress; - emit gyroCalInProgressChanged(); -} - -void SensorsComponentController::_updateAndEmitShowGyroCalArea(bool show) +void SensorsComponentController::_updateAndEmitShowOrientationCalArea(bool show) { - _showGyroCalArea = show; - emit showGyroCalAreaChanged(); + _showOrientationCalArea = show; + emit showOrientationCalAreaChanged(); } -void SensorsComponentController::_updateAndEmitShowAccelCalArea(bool show) +void SensorsComponentController::_hideAllCalAreas(void) { - _showAccelCalArea = show; - emit showAccelCalAreaChanged(); + _updateAndEmitShowOrientationCalArea(false); } -void SensorsComponentController::_hideAllCalAreas(void) +void SensorsComponentController::cancelCalibration(void) { - _updateAndEmitShowGyroCalArea(false); - _updateAndEmitShowAccelCalArea(false); -} + // The firmware doesn't allow us to cancel calibration. The best we can do is wait + // for it to timeout. + _waitingForCancel = true; + emit waitingForCancelChanged(); + _cancelButton->setEnabled(false); + _uas->stopCalibration(); +} \ No newline at end of file diff --git a/src/AutoPilotPlugins/PX4/SensorsComponentController.h b/src/AutoPilotPlugins/PX4/SensorsComponentController.h index 44d096a33362301a4863f65e0778f883d3689d7f..dd5c62c7875bf6b322724d87380e70d329e3425c 100644 --- a/src/AutoPilotPlugins/PX4/SensorsComponentController.h +++ b/src/AutoPilotPlugins/PX4/SensorsComponentController.h @@ -46,76 +46,130 @@ public: Q_PROPERTY(QQuickItem* statusLog MEMBER _statusLog) Q_PROPERTY(QQuickItem* progressBar MEMBER _progressBar) - Q_PROPERTY(bool showGyroCalArea MEMBER _showGyroCalArea NOTIFY showGyroCalAreaChanged) - Q_PROPERTY(bool showAccelCalArea MEMBER _showAccelCalArea NOTIFY showAccelCalAreaChanged) - - Q_PROPERTY(bool gyroCalInProgress MEMBER _gyroCalInProgress NOTIFY gyroCalInProgressChanged) - - Q_PROPERTY(bool accelCalDownSideDone MEMBER _accelCalDownSideDone NOTIFY accelCalSidesDoneChanged) - Q_PROPERTY(bool accelCalUpsideDownSideDone MEMBER _accelCalUpsideDownSideDone NOTIFY accelCalSidesDoneChanged) - Q_PROPERTY(bool accelCalLeftSideDone MEMBER _accelCalLeftSideDone NOTIFY accelCalSidesDoneChanged) - Q_PROPERTY(bool accelCalRightSideDone MEMBER _accelCalRightSideDone NOTIFY accelCalSidesDoneChanged) - Q_PROPERTY(bool accelCalNoseDownSideDone MEMBER _accelCalNoseDownSideDone NOTIFY accelCalSidesDoneChanged) - Q_PROPERTY(bool accelCalTailDownSideDone MEMBER _accelCalTailDownSideDone NOTIFY accelCalSidesDoneChanged) - - Q_PROPERTY(bool accelCalDownSideInProgress MEMBER _accelCalDownSideInProgress NOTIFY accelCalSidesInProgressChanged) - Q_PROPERTY(bool accelCalUpsideDownSideInProgress MEMBER _accelCalUpsideDownSideInProgress NOTIFY accelCalSidesInProgressChanged) - Q_PROPERTY(bool accelCalLeftSideInProgress MEMBER _accelCalLeftSideInProgress NOTIFY accelCalSidesInProgressChanged) - Q_PROPERTY(bool accelCalRightSideInProgress MEMBER _accelCalRightSideInProgress NOTIFY accelCalSidesInProgressChanged) - Q_PROPERTY(bool accelCalNoseDownSideInProgress MEMBER _accelCalNoseDownSideInProgress NOTIFY accelCalSidesInProgressChanged) - Q_PROPERTY(bool accelCalTailDownSideInProgress MEMBER _accelCalTailDownSideInProgress NOTIFY accelCalSidesInProgressChanged) + Q_PROPERTY(QQuickItem* compassButton MEMBER _compassButton) + Q_PROPERTY(QQuickItem* gyroButton MEMBER _gyroButton) + Q_PROPERTY(QQuickItem* accelButton MEMBER _accelButton) + Q_PROPERTY(QQuickItem* airspeedButton MEMBER _airspeedButton) + Q_PROPERTY(QQuickItem* cancelButton MEMBER _cancelButton) + Q_PROPERTY(QQuickItem* orientationCalAreaHelpText MEMBER _orientationCalAreaHelpText) + + Q_PROPERTY(bool showOrientationCalArea MEMBER _showOrientationCalArea NOTIFY showOrientationCalAreaChanged) + + Q_PROPERTY(bool orientationCalDownSideDone MEMBER _orientationCalDownSideDone NOTIFY orientationCalSidesDoneChanged) + Q_PROPERTY(bool orientationCalUpsideDownSideDone MEMBER _orientationCalUpsideDownSideDone NOTIFY orientationCalSidesDoneChanged) + Q_PROPERTY(bool orientationCalLeftSideDone MEMBER _orientationCalLeftSideDone NOTIFY orientationCalSidesDoneChanged) + Q_PROPERTY(bool orientationCalRightSideDone MEMBER _orientationCalRightSideDone NOTIFY orientationCalSidesDoneChanged) + Q_PROPERTY(bool orientationCalNoseDownSideDone MEMBER _orientationCalNoseDownSideDone NOTIFY orientationCalSidesDoneChanged) + Q_PROPERTY(bool orientationCalTailDownSideDone MEMBER _orientationCalTailDownSideDone NOTIFY orientationCalSidesDoneChanged) + + Q_PROPERTY(bool orientationCalDownSideVisible MEMBER _orientationCalDownSideVisible NOTIFY orientationCalSidesVisibleChanged) + Q_PROPERTY(bool orientationCalUpsideDownSideVisible MEMBER _orientationCalUpsideDownSideVisible NOTIFY orientationCalSidesVisibleChanged) + Q_PROPERTY(bool orientationCalLeftSideVisible MEMBER _orientationCalLeftSideVisible NOTIFY orientationCalSidesVisibleChanged) + Q_PROPERTY(bool orientationCalRightSideVisible MEMBER _orientationCalRightSideVisible NOTIFY orientationCalSidesVisibleChanged) + Q_PROPERTY(bool orientationCalNoseDownSideVisible MEMBER _orientationCalNoseDownSideVisible NOTIFY orientationCalSidesVisibleChanged) + Q_PROPERTY(bool orientationCalTailDownSideVisible MEMBER _orientationCalTailDownSideVisible NOTIFY orientationCalSidesVisibleChanged) + + Q_PROPERTY(bool orientationCalDownSideInProgress MEMBER _orientationCalDownSideInProgress NOTIFY orientationCalSidesInProgressChanged) + Q_PROPERTY(bool orientationCalUpsideDownSideInProgress MEMBER _orientationCalUpsideDownSideInProgress NOTIFY orientationCalSidesInProgressChanged) + Q_PROPERTY(bool orientationCalLeftSideInProgress MEMBER _orientationCalLeftSideInProgress NOTIFY orientationCalSidesInProgressChanged) + Q_PROPERTY(bool orientationCalRightSideInProgress MEMBER _orientationCalRightSideInProgress NOTIFY orientationCalSidesInProgressChanged) + Q_PROPERTY(bool orientationCalNoseDownSideInProgress MEMBER _orientationCalNoseDownSideInProgress NOTIFY orientationCalSidesInProgressChanged) + Q_PROPERTY(bool orientationCalTailDownSideInProgress MEMBER _orientationCalTailDownSideInProgress NOTIFY orientationCalSidesInProgressChanged) + + Q_PROPERTY(bool orientationCalDownSideRotate MEMBER _orientationCalDownSideRotate NOTIFY orientationCalSidesRotateChanged) + Q_PROPERTY(bool orientationCalLeftSideRotate MEMBER _orientationCalLeftSideRotate NOTIFY orientationCalSidesRotateChanged) + Q_PROPERTY(bool orientationCalNoseDownSideRotate MEMBER _orientationCalNoseDownSideRotate NOTIFY orientationCalSidesRotateChanged) + + Q_PROPERTY(bool waitingForCancel MEMBER _waitingForCancel NOTIFY waitingForCancelChanged) Q_INVOKABLE void calibrateCompass(void); Q_INVOKABLE void calibrateGyro(void); Q_INVOKABLE void calibrateAccel(void); Q_INVOKABLE void calibrateAirspeed(void); + Q_INVOKABLE void cancelCalibration(void); bool fixedWing(void); signals: void showGyroCalAreaChanged(void); - void showAccelCalAreaChanged(void); - void gyroCalInProgressChanged(void); - void accelCalSidesDoneChanged(void); - void accelCalSidesInProgressChanged(void); + void showOrientationCalAreaChanged(void); + void orientationCalSidesDoneChanged(void); + void orientationCalSidesVisibleChanged(void); + void orientationCalSidesInProgressChanged(void); + void orientationCalSidesRotateChanged(void); + void resetStatusTextArea(void); + void waitingForCancelChanged(void); + void setCompassRotations(void); private slots: void _handleUASTextMessage(int uasId, int compId, int severity, QString text); private: - void _beginTextLogging(void); + void _startLogCalibration(void); + void _startVisualCalibration(void); void _appendStatusLog(const QString& text); void _refreshParams(void); void _hideAllCalAreas(void); - void _updateAndEmitGyroCalInProgress(bool inProgress); + enum StopCalibrationCode { + StopCalibrationSuccess, + StopCalibrationFailed, + StopCalibrationCancelled + }; + void _stopCalibration(StopCalibrationCode code); - void _updateAndEmitShowGyroCalArea(bool show); - void _updateAndEmitShowAccelCalArea(bool show); + void _updateAndEmitShowOrientationCalArea(bool show); - QQuickItem* _statusLog; - QQuickItem* _progressBar; + QQuickItem* _statusLog; + QQuickItem* _progressBar; + QQuickItem* _compassButton; + QQuickItem* _gyroButton; + QQuickItem* _accelButton; + QQuickItem* _airspeedButton; + QQuickItem* _cancelButton; + QQuickItem* _orientationCalAreaHelpText; bool _showGyroCalArea; - bool _showAccelCalArea; + bool _showOrientationCalArea; - bool _gyroCalInProgress; - - bool _accelCalDownSideDone; - bool _accelCalUpsideDownSideDone; - bool _accelCalLeftSideDone; - bool _accelCalRightSideDone; - bool _accelCalNoseDownSideDone; - bool _accelCalTailDownSideDone; + bool _showCompass0; + bool _showCompass1; + bool _showCompass2; - bool _accelCalDownSideInProgress; - bool _accelCalUpsideDownSideInProgress; - bool _accelCalLeftSideInProgress; - bool _accelCalRightSideInProgress; - bool _accelCalNoseDownSideInProgress; - bool _accelCalTailDownSideInProgress; + bool _gyroCalInProgress; + bool _magCalInProgress; + bool _accelCalInProgress; + + bool _orientationCalDownSideDone; + bool _orientationCalUpsideDownSideDone; + bool _orientationCalLeftSideDone; + bool _orientationCalRightSideDone; + bool _orientationCalNoseDownSideDone; + bool _orientationCalTailDownSideDone; + + bool _orientationCalDownSideVisible; + bool _orientationCalUpsideDownSideVisible; + bool _orientationCalLeftSideVisible; + bool _orientationCalRightSideVisible; + bool _orientationCalNoseDownSideVisible; + bool _orientationCalTailDownSideVisible; + + bool _orientationCalDownSideInProgress; + bool _orientationCalUpsideDownSideInProgress; + bool _orientationCalLeftSideInProgress; + bool _orientationCalRightSideInProgress; + bool _orientationCalNoseDownSideInProgress; + bool _orientationCalTailDownSideInProgress; + + bool _orientationCalDownSideRotate; + bool _orientationCalLeftSideRotate; + bool _orientationCalNoseDownSideRotate; + + bool _unknownFirmwareVersion; + bool _waitingForCancel; AutoPilotPlugin* _autopilot; + UASInterface* _uas; }; #endif diff --git a/src/AutoPilotPlugins/PX4/SensorsComponentSummary.qml b/src/AutoPilotPlugins/PX4/SensorsComponentSummary.qml index 56b53115fc5fa4bde7fa7cca4c543564323ddcbd..3fabc547a18722c97237e55d7ca5e8b3f606580a 100644 --- a/src/AutoPilotPlugins/PX4/SensorsComponentSummary.qml +++ b/src/AutoPilotPlugins/PX4/SensorsComponentSummary.qml @@ -6,47 +6,29 @@ import QGroundControl.FactSystem 1.0 import QGroundControl.Controls 1.0 /* - IMPORTANT NOTE: Any changes made here must also be made to SensorsComponentSummaryFixedWing.qml + IMPORTANT NOTE: Any changes made here must also be made to SensorsComponentSummary.qml */ Column { - anchors.fill: parent - anchors.margins: 8 + Fact { id: mag0IdFact; name: "CAL_MAG0_ID" } + Fact { id: gyro0IdFact; name: "CAL_GYRO0_ID" } + Fact { id: accel0IdFact; name: "CAL_ACC0_ID" } - Component { - id: component + anchors.fill: parent + anchors.margins: 8 - Row { - width: parent.width - - QGCLabel { id: label; text: labelText } - QGCLabel { - property Fact fact: Fact { name: factName } - horizontalAlignment: Text.AlignRight; - width: parent.width - label.contentWidth; - text: fact.value == 0 ? "Setup required" : "Ready" - } - } - } - - Loader { - property string labelText: "Compass:" - property string factName: "CAL_MAG0_ID" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Compass:" + valueText: mag0IdFact.value == 0 ? "Setup required" : "Ready" } - Loader { - property string labelText: "Gyro:" - property string factName: "CAL_GYRO0_ID" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Gyro:" + valueText: gyro0IdFact.value == 0 ? "Setup required" : "Ready" } - Loader { - property string labelText: "Accelerometer:" - property string factName: "CAL_ACC0_ID" - width: parent.width - sourceComponent: component + VehicleSummaryRow { + labelText: "Accelerometer:" + valueText: accel0IdFact.value == 0 ? "Setup required" : "Ready" } } diff --git a/src/AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml b/src/AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml index 680ffed87aad8df7a2556c5b019814de50a935e2..7705086747fff718f256f4369494166726c98713 100644 --- a/src/AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml +++ b/src/AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml @@ -10,54 +10,31 @@ import QGroundControl.Controls 1.0 */ Column { - anchors.fill: parent - anchors.margins: 8 - - Row { - width: parent.width - - QGCLabel { id: compass; text: "Compass:" } - QGCLabel { - property Fact fact: Fact { name: "CAL_MAG0_ID" } - horizontalAlignment: Text.AlignRight; - width: parent.width - compass.contentWidth; - text: fact.value == 0 ? "Setup required" : "Ready" - } - } + Fact { id: mag0IdFact; name: "CAL_MAG0_ID" } + Fact { id: gyro0IdFact; name: "CAL_GYRO0_ID" } + Fact { id: accel0IdFact; name: "CAL_ACC0_ID" } + Fact { id: dPressOffFact; name: "SENS_DPRES_OFF" } - Row { - width: parent.width + anchors.fill: parent + anchors.margins: 8 - QGCLabel { id: gyro; text: "Gyro:" } - QGCLabel { - property Fact fact: Fact { name: "CAL_GYRO0_ID" } - horizontalAlignment: Text.AlignRight; - width: parent.width - compass.contentWidth; - text: fact.value == 0 ? "Setup required" : "Ready" - } + VehicleSummaryRow { + labelText: "Compass:" + valueText: mag0IdFact.value == 0 ? "Setup required" : "Ready" } - Row { - width: parent.width - - QGCLabel { id: accel; text: "Accelerometer:" } - QGCLabel { - property Fact fact: Fact { name: "CAL_ACC0_ID" } - horizontalAlignment: Text.AlignRight; - width: parent.width - compass.contentWidth; - text: fact.value == 0 ? "Setup required" : "Ready" - } + VehicleSummaryRow { + labelText: "Gyro:" + valueText: gyro0IdFact.value == 0 ? "Setup required" : "Ready" } - Row { - width: parent.width + VehicleSummaryRow { + labelText: "Accelerometer:" + valueText: accel0IdFact.value == 0 ? "Setup required" : "Ready" + } - QGCLabel { id: airspeed; text: "Airspeed:" } - QGCLabel { - property Fact fact: Fact { name: "SENS_DPRES_OFF" } - horizontalAlignment: Text.AlignRight; - width: parent.width - airspeed.contentWidth; - text: fact.value == 0.0 ? "Setup required" : "Ready" - } + VehicleSummaryRow { + labelText: "Airspeed:" + valueText: dPressOffFact.value == 0 ? "Setup required" : "Ready" } } diff --git a/src/AutoPilotPlugins/PX4/Tests/FlightModeConfigTest.cc b/src/AutoPilotPlugins/PX4/Tests/FlightModeConfigTest.cc deleted file mode 100644 index c8a10edcd477b78f350fa5a81fdaac380f6ec387..0000000000000000000000000000000000000000 --- a/src/AutoPilotPlugins/PX4/Tests/FlightModeConfigTest.cc +++ /dev/null @@ -1,305 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#include "FlightModeConfigTest.h" -#include "UASManager.h" -#include "MockQGCUASParamManager.h" -#include "QGCMessageBox.h" - -/// @file -/// @brief FlightModeConfig Widget unit test -/// -/// @author Don Gagne - -// Turned off due to signletonn shutdown sequencing problem. Also since FlightMode config is -// being re-written this test will need to be re-written as well. -//UT_REGISTER_TEST(FlightModeConfigTest) - -FlightModeConfigTest::FlightModeConfigTest(void) : - _mockUASManager(NULL), - _paramMgr(NULL), - _configWidget(NULL), - _defaultComponentId(0) -{ - -} - -void FlightModeConfigTest::initTestCase(void) -{ - -} - -void FlightModeConfigTest::init(void) -{ - UnitTest::init(); - - _mockUASManager = new MockUASManager(); - Q_ASSERT(_mockUASManager); - - UASManager::setMockInstance(_mockUASManager); - - _mockUAS = new MockUAS(); - Q_CHECK_PTR(_mockUAS); - _paramMgr = _mockUAS->getParamManager(); - _defaultComponentId = _paramMgr->getDefaultComponentId(); - - _mockUASManager->setMockActiveUAS(_mockUAS); - - struct SetupParamInfo { - const char* param; - int mappedChannel; - }; - - struct SetupParamInfo rgSetupParamInfo[] = { - { "RC_MAP_MODE_SW", 5 }, - { "RC_MAP_ACRO_SW", 0 }, - { "RC_MAP_POSCTL_SW", 0 }, - { "RC_MAP_RETURN_SW", 0 }, - { "RC_MAP_LOITER_SW", 0 }, - { "RC_MAP_THROTTLE", 1 }, - { "RC_MAP_YAW", 2 }, - { "RC_MAP_ROLL", 3 }, - { "RC_MAP_PITCH", 4 }, - { "RC_MAP_AUX1", 0 }, - { "RC_MAP_AUX2", 0 }, - { "RC_MAP_AUX3", 0 } - }; - size_t crgSetupParamInfo = sizeof(rgSetupParamInfo) / sizeof(rgSetupParamInfo[0]); - - // Set initial parameter values - for (size_t i=0; isetParameter(_defaultComponentId, info->param, info->mappedChannel); - } - - _configWidget = new FlightModeConfig; - Q_CHECK_PTR(_configWidget); - - // Setup combo maps - - struct SetupComboInfo { - QGCComboBox* combo; - QButtonGroup* buttonGroup; - const char* param; - }; - - struct SetupComboInfo rgSetupComboInfo[] = { - { _configWidget->_ui->modeSwitchChannel, _configWidget->_ui->modeSwitchGroup, "RC_MAP_MODE_SW" }, - { _configWidget->_ui->manualSwitchChannel, _configWidget->_ui->manualSwitchGroup, "RC_MAP_ACRO_SW" }, - { _configWidget->_ui->assistSwitchChannel, _configWidget->_ui->assistSwitchGroup, "RC_MAP_POSCTL_SW" }, - { _configWidget->_ui->returnSwitchChannel, _configWidget->_ui->returnSwitchGroup, "RC_MAP_RETURN_SW" }, - { _configWidget->_ui->loiterSwitchChannel, _configWidget->_ui->loiterSwitchGroup, "RC_MAP_LOITER_SW" } - }; - size_t crgSetupComboInfo = sizeof(rgSetupComboInfo) / sizeof(rgSetupComboInfo[0]); - - Q_ASSERT(_mapChannelCombo2Param.count() == 0); - for (size_t i=0; icombo)); - _mapChannelCombo2Param[info->combo] = info->param; - - Q_ASSERT(!_mapChannelCombo2ButtonGroup.contains(info->combo)); - _mapChannelCombo2ButtonGroup[info->combo] = info->buttonGroup; - } -} - -void FlightModeConfigTest::cleanup(void) -{ - Q_ASSERT(_configWidget); - delete _configWidget; - - Q_ASSERT(_mockUAS); - delete _mockUAS; - - UASManager::setMockInstance(NULL); - - Q_ASSERT(_mockUASManager); - delete _mockUASManager; - - _mapChannelCombo2Param.clear(); - _mapChannelCombo2ButtonGroup.clear(); - - UnitTest::cleanup(); -} - -/// @brief Returns channel mapping for the specified parameters -int FlightModeConfigTest::_getChannelMapForParam(const QString& paramId) -{ - QVariant value; - bool found = _paramMgr->getParameterValue(_defaultComponentId, paramId, value); - Q_UNUSED(found); - Q_ASSERT(found); - - bool conversionOk; - int channel = value.toInt(&conversionOk); - Q_UNUSED(conversionOk); - Q_ASSERT(conversionOk); - - return channel; -} - -void FlightModeConfigTest::_create_test(void) -{ - // This just test widget creation which is handled in init -} - -void FlightModeConfigTest::_validateInitialState_test(void) -{ - // Make sure that the combo boxes are set to the correct selections - foreach(QGCComboBox* combo, _mapChannelCombo2Param.keys()) { - QVariant value; - - Q_ASSERT(_mapChannelCombo2Param.contains(combo)); - int expectedMappedChannel = _getChannelMapForParam(_mapChannelCombo2Param[combo]); - - int currentIndex = combo->currentIndex(); - QVERIFY(currentIndex != -1); - - int comboMappedChannel = combo->itemData(currentIndex).toInt(); - - QCOMPARE(comboMappedChannel, expectedMappedChannel); - } - - QGCComboBox* combo = _configWidget->_ui->modeSwitchChannel; - - // combo should have entry for each channel plus disabled - QCOMPARE(combo->count(), _availableChannels + 1); - - for (int i=0; icount(); i++) { - // Combo data equates to channel mapping value. These are one-base channel values with - // 0 meaning disabled. The channel should match the index. - QCOMPARE(i, combo->itemData(i).toInt()); - - // Channels which are mapped are displayed after the channel number in the form "(name)". - // Check for the ending parentheses to indicate mapped channels - QString text = combo->itemText(i); - if (text.endsWith(")")) { - // Channels 1-5 are mapped - QVERIFY(i >= 1 && i <= 5); - } else { - QVERIFY(!(i >= 1 && i <= 5)); - } - } -} - -void FlightModeConfigTest::_validateRCCalCheck_test(void) -{ - // Mode switch mapped is used to signal RC Calibration not complete. You must complete RC Cal before - // doing Flight Mode Config. - - // Set mode switch mapping to not set - Q_ASSERT(_mapChannelCombo2Param.contains(_configWidget->_ui->modeSwitchChannel)); - _paramMgr->setParameter(_defaultComponentId, _mapChannelCombo2Param[_configWidget->_ui->modeSwitchChannel], 0); - - // Widget should disable - QCOMPARE(_configWidget->isEnabled(), false); - - // Set mode switch mapping to mapped - Q_ASSERT(_mapChannelCombo2Param.contains(_configWidget->_ui->modeSwitchChannel)); - _paramMgr->setParameter(_defaultComponentId, _mapChannelCombo2Param[_configWidget->_ui->modeSwitchChannel], 5); - - // Widget should re-enable - QCOMPARE(_configWidget->isEnabled(), true); -} - -void FlightModeConfigTest::_attempChannelReuse_test(void) -{ - // Attempt to select a channel that is already in use for a switch mapping - foreach(QGCComboBox* combo, _mapChannelCombo2Param.keys()) { - - Q_ASSERT(_mapChannelCombo2Param.contains(combo)); - int beforeMapping = _getChannelMapForParam(_mapChannelCombo2Param[combo]); - - setExpectedMessageBox(QMessageBox::Ok); - - // Channel 1 mapped to throttle. This should pop a message box and the parameter value should - // not change. - combo->simulateUserSetCurrentIndex(1); - - checkExpectedMessageBox(); - - int afterMapping = _getChannelMapForParam(_mapChannelCombo2Param[combo]); - - QCOMPARE(beforeMapping, afterMapping); - } -} - -void FlightModeConfigTest::_validateRadioButtonEnableDisable_test(void) -{ - // Radio button should enable/disable according to selection - foreach(QGCComboBox* combo, _mapChannelCombo2Param.keys()) { - // Mode switch can't be disabled - if (combo == _configWidget->_ui->modeSwitchChannel) { - continue; - } - - // Index 0 is disabled - combo->simulateUserSetCurrentIndex(0); - - Q_ASSERT(_mapChannelCombo2ButtonGroup.contains(combo)); - QButtonGroup* buttonGroup = _mapChannelCombo2ButtonGroup[combo]; - - foreach(QAbstractButton* button, buttonGroup->buttons()) { - QRadioButton* radio = qobject_cast(button); - Q_ASSERT(radio); - - QCOMPARE(radio->isEnabled(), false); - } - - // Index 6 should be a valid mapping - combo->simulateUserSetCurrentIndex(6); - - foreach(QAbstractButton* button, buttonGroup->buttons()) { - QRadioButton* radio = qobject_cast(button); - Q_ASSERT(radio); - - QCOMPARE(radio->isEnabled(), true); - } - - // Set back to disabled for next iteration through loop. Otherwise we'll error out - // with the channel already in use - combo->simulateUserSetCurrentIndex(0); - } -} - -void FlightModeConfigTest::_validateModeSwitchMustBeEnabled_test(void) -{ - QGCComboBox* modeCombo = _configWidget->_ui->modeSwitchChannel; - - Q_ASSERT(_mapChannelCombo2Param.contains(modeCombo)); - int beforeMapping = _getChannelMapForParam(_mapChannelCombo2Param[modeCombo]); - - setExpectedMessageBox(QMessageBox::Ok); - - // Index 0 is disabled. This should pop a message box and the parameter value should - // not change. - modeCombo->simulateUserSetCurrentIndex(0); - - checkExpectedMessageBox(); - - int afterMapping = _getChannelMapForParam(_mapChannelCombo2Param[modeCombo]); - - QCOMPARE(beforeMapping, afterMapping); -} diff --git a/src/AutoPilotPlugins/PX4/Tests/FlightModeConfigTest.h b/src/AutoPilotPlugins/PX4/Tests/FlightModeConfigTest.h deleted file mode 100644 index c6cb77eeafd3aabfeaaaf3544413fc943e2af40d..0000000000000000000000000000000000000000 --- a/src/AutoPilotPlugins/PX4/Tests/FlightModeConfigTest.h +++ /dev/null @@ -1,71 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#ifndef FlightModeConfigTest_H -#define FlightModeConfigTest_H - -#include "UnitTest.h" -#include "MockUASManager.h" -#include "MockUAS.h" -#include "AutoPilotPlugins/PX4/FlightModeConfig.h" - -/// @file -/// @brief FlightModeConfig Widget unit test -/// -/// @author Don Gagne - -class FlightModeConfigTest : public UnitTest -{ - Q_OBJECT - -public: - FlightModeConfigTest(void); - -private slots: - void initTestCase(void); - void init(void); - void cleanup(void); - - void _create_test(void); - void _validateInitialState_test(void); - void _validateRCCalCheck_test(void); - void _attempChannelReuse_test(void); - void _validateRadioButtonEnableDisable_test(void); - void _validateModeSwitchMustBeEnabled_test(void); - -private: - int _getChannelMapForParam(const QString& parameter); - - MockUASManager* _mockUASManager; - MockUAS* _mockUAS; - QGCUASParamManagerInterface* _paramMgr; - FlightModeConfig* _configWidget; - int _defaultComponentId; - - QMap _mapChannelCombo2Param; - QMap _mapChannelCombo2ButtonGroup; - - static const int _availableChannels = 18; ///< Simulate 18 channel RC Transmitter -}; - -#endif diff --git a/src/FactSystem/Fact.cc b/src/FactSystem/Fact.cc index 860fd1c5ee72f38390e93b833522ae4b08d9d675..356b3493e797cb80142520a3ed707bc07e4d74ce 100644 --- a/src/FactSystem/Fact.cc +++ b/src/FactSystem/Fact.cc @@ -28,9 +28,10 @@ #include -Fact::Fact(QString name, FactMetaData::ValueType_t type, QObject* parent) : +Fact::Fact(int componentId, QString name, FactMetaData::ValueType_t type, QObject* parent) : QObject(parent), _name(name), + _componentId(componentId), _type(type), _metaData(NULL) { @@ -39,9 +40,35 @@ Fact::Fact(QString name, FactMetaData::ValueType_t type, QObject* parent) : void Fact::setValue(const QVariant& value) { - _value = value; - emit valueChanged(_value); - emit _containerValueChanged(_value); + QVariant newValue; + + switch (type()) { + case FactMetaData::valueTypeInt8: + case FactMetaData::valueTypeInt16: + case FactMetaData::valueTypeInt32: + newValue = QVariant(value.toInt()); + break; + + case FactMetaData::valueTypeUint8: + case FactMetaData::valueTypeUint16: + case FactMetaData::valueTypeUint32: + newValue = QVariant(value.toUInt()); + break; + + case FactMetaData::valueTypeFloat: + newValue = QVariant(value.toFloat()); + break; + + case FactMetaData::valueTypeDouble: + newValue = QVariant(value.toDouble()); + break; + } + + if (newValue != _value) { + _value.setValue(newValue); + emit valueChanged(_value); + emit _containerValueChanged(_value); + } } void Fact::_containerSetValue(const QVariant& value) @@ -55,6 +82,11 @@ QString Fact::name(void) const return _name; } +int Fact::componentId(void) const +{ + return _componentId; +} + QVariant Fact::value(void) const { return _value; @@ -68,7 +100,10 @@ QString Fact::valueString(void) const QVariant Fact::defaultValue(void) { Q_ASSERT(_metaData); - return _metaData->defaultValue; + if (!_metaData->defaultValueAvailable()) { + qDebug() << "Access to unavailable default value"; + } + return _metaData->defaultValue(); } FactMetaData::ValueType_t Fact::type(void) @@ -78,44 +113,57 @@ FactMetaData::ValueType_t Fact::type(void) QString Fact::shortDescription(void) { - if (_metaData) { - return _metaData->shortDescription; - } else { - return QString(); - } + Q_ASSERT(_metaData); + return _metaData->shortDescription(); } QString Fact::longDescription(void) { - if (_metaData) { - return _metaData->longDescription; - } else { - return QString(); - } + Q_ASSERT(_metaData); + return _metaData->longDescription(); } QString Fact::units(void) { - if (_metaData) { - return _metaData->units; - } else { - return QString(); - } + Q_ASSERT(_metaData); + return _metaData->units(); } QVariant Fact::min(void) { Q_ASSERT(_metaData); - return _metaData->min; + return _metaData->min(); } QVariant Fact::max(void) { Q_ASSERT(_metaData); - return _metaData->max; + return _metaData->max(); +} + +QString Fact::group(void) +{ + Q_ASSERT(_metaData); + return _metaData->group(); } void Fact::setMetaData(FactMetaData* metaData) { _metaData = metaData; } + +bool Fact::valueEqualsDefault(void) +{ + Q_ASSERT(_metaData); + if (_metaData->defaultValueAvailable()) { + return _metaData->defaultValue() == value(); + } else { + return false; + } +} + +bool Fact::defaultValueAvailable(void) +{ + Q_ASSERT(_metaData); + return _metaData->defaultValueAvailable(); +} \ No newline at end of file diff --git a/src/FactSystem/Fact.h b/src/FactSystem/Fact.h index 2398a98b5e619e984cde7ade23101c243a301792..5ba11139500c74d778851970dcff5143e7195d9e 100644 --- a/src/FactSystem/Fact.h +++ b/src/FactSystem/Fact.h @@ -43,56 +43,27 @@ class Fact : public QObject { Q_OBJECT - Q_PROPERTY(QString name READ name CONSTANT) - Q_PROPERTY(QVariant value READ value WRITE setValue NOTIFY valueChanged USER true) - Q_PROPERTY(QVariant valueString READ valueString NOTIFY valueChanged) - Q_PROPERTY(QVariant defaultValue READ defaultValue CONSTANT) - Q_PROPERTY(FactMetaData::ValueType_t type READ type CONSTANT) - Q_PROPERTY(QString shortDescription READ shortDescription CONSTANT) - Q_PROPERTY(QString longDescription READ longDescription CONSTANT) - Q_PROPERTY(QString units READ units CONSTANT) - Q_PROPERTY(QVariant min READ min CONSTANT) - Q_PROPERTY(QVariant max READ max CONSTANT) - - Q_ENUMS(FactMetaData::ValueType_t) - public: - Fact(QString name = "", FactMetaData::ValueType_t type = FactMetaData::valueTypeInt32, QObject* parent = NULL); + //Fact(int componentId, QString name = "", FactMetaData::ValueType_t type = FactMetaData::valueTypeInt32, QObject* parent = NULL); + Fact(int componentId, QString name, FactMetaData::ValueType_t type, QObject* parent = NULL); // Property system methods - /// Read accessor or name property QString name(void) const; - - /// Read accessor for value property + int componentId(void) const; QVariant value(void) const; - - /// Read accessor for valueString property QString valueString(void) const; - - /// Write accessor for value property void setValue(const QVariant& value); - - /// Read accesor for defaultValue property QVariant defaultValue(void); - - /// Read accesor for type property + bool defaultValueAvailable(void); + bool valueEqualsDefault(void); FactMetaData::ValueType_t type(void); - - /// Read accesor for shortDescription property QString shortDescription(void); - - /// Read accesor for longDescription property QString longDescription(void); - - /// Read accesor for units property QString units(void); - - /// Read accesor for min property QVariant min(void); - - /// Read accesor for max property - QVariant max(void); + QVariant max(void); + QString group(void); /// Sets the meta data associated with the Fact. void setMetaData(FactMetaData* metaData); @@ -112,6 +83,7 @@ signals: private: QString _name; + int _componentId; QVariant _value; FactMetaData::ValueType_t _type; FactMetaData* _metaData; diff --git a/src/FactSystem/FactBinder.cc b/src/FactSystem/FactBinder.cc index 16976fca77db50562b997329fdadb79d945f21e1..d0979c390974ef87f6a266f792f75f006b8d6b2d 100644 --- a/src/FactSystem/FactBinder.cc +++ b/src/FactSystem/FactBinder.cc @@ -27,18 +27,21 @@ #include "FactBinder.h" #include "UASManager.h" #include "AutoPilotPluginManager.h" +#include "QGCApplication.h" + #include FactBinder::FactBinder(void) : _autopilotPlugin(NULL), - _fact(NULL) + _fact(NULL), + _componentId(FactSystem::defaultComponentId) { UASInterface* uas = UASManager::instance()->getActiveUAS(); Q_ASSERT(uas); _autopilotPlugin = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(uas); Q_ASSERT(_autopilotPlugin); - Q_ASSERT(_autopilotPlugin->pluginIsReady()); + Q_ASSERT(_autopilotPlugin->pluginReady()); } QString FactBinder::name(void) const @@ -50,6 +53,11 @@ QString FactBinder::name(void) const } } +int FactBinder::componentId(void) const +{ + return _componentId; +} + void FactBinder::setName(const QString& name) { if (_fact) { @@ -58,14 +66,27 @@ void FactBinder::setName(const QString& name) } if (!name.isEmpty()) { - if (_autopilotPlugin->factExists(name)) { - _fact = _autopilotPlugin->getFact(name); + QString parsedName = name; + + // Component id + name combination? + if (name.contains(":")) { + QStringList parts = name.split(":"); + if (parts.count() == 2) { + parsedName = parts[0]; + _componentId = parts[1].toInt(); + } + } + + if (_autopilotPlugin->factExists(FactSystem::ParameterProvider, _componentId, parsedName)) { + _fact = _autopilotPlugin->getFact(FactSystem::ParameterProvider, _componentId, parsedName); connect(_fact, &Fact::valueChanged, this, &FactBinder::valueChanged); emit valueChanged(); emit nameChanged(); - } else { - qDebug() << "FAILED BINDING PARAM" << name << ": PARAM DOES NOT EXIST ON SYSTEM!"; + emit metaDataChanged(); + } else { + QString panicMessage("Required parameter (component id: %1, name: %2), is missing from vehicle. QGroundControl cannot operate with this firmware revision. QGroundControl will now shut down."); + qgcApp()->panicShutdown(panicMessage.arg(_componentId).arg(parsedName)); } } } @@ -84,7 +105,8 @@ void FactBinder::setValue(const QVariant& value) if (_fact) { _fact->setValue(value); } else { - qDebug() << "FAILED SETTING PARAM VALUE" << value.toString() << ": PARAM DOES NOT EXIST ON SYSTEM!"; + qWarning() << "FAILED SETTING PARAM VALUE" << _fact->name() << ": PARAM DOES NOT EXIST ON SYSTEM!"; + Q_ASSERT(false); } } @@ -105,3 +127,84 @@ QString FactBinder::units(void) const return QString(); } } + +QVariant FactBinder::defaultValue(void) +{ + if (_fact) { + return _fact->defaultValue(); + } else { + return QVariant(0); + } +} + +FactMetaData::ValueType_t FactBinder::type(void) +{ + if (_fact) { + return _fact->type(); + } else { + return FactMetaData::valueTypeUint32; + } +} + +QString FactBinder::shortDescription(void) +{ + if (_fact) { + return _fact->shortDescription(); + } else { + return QString(); + } +} + +QString FactBinder::longDescription(void) +{ + if (_fact) { + return _fact->longDescription(); + } else { + return QString(); + } +} + +QVariant FactBinder::min(void) +{ + if (_fact) { + return _fact->min(); + } else { + return QVariant(0); + } +} + +QVariant FactBinder::max(void) +{ + if (_fact) { + return _fact->max(); + } else { + return QVariant(0); + } +} + +QString FactBinder::group(void) +{ + if (_fact) { + return _fact->group(); + } else { + return QString(); + } +} + +bool FactBinder::defaultValueAvailable(void) +{ + if (_fact) { + return _fact->defaultValueAvailable(); + } else { + return false; + } +} + +bool FactBinder::valueEqualsDefault(void) +{ + if (_fact) { + return _fact->valueEqualsDefault(); + } else { + return false; + } +} diff --git a/src/FactSystem/FactBinder.h b/src/FactSystem/FactBinder.h index 897396429b58f9b6093806eaab3558e2e3e91c8a..8cac12080c063a35a41c0d771b1ca656363e9717 100644 --- a/src/FactSystem/FactBinder.h +++ b/src/FactSystem/FactBinder.h @@ -38,14 +38,26 @@ class FactBinder : public QObject { Q_OBJECT + Q_PROPERTY(int componentId READ componentId NOTIFY nameChanged) Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged) Q_PROPERTY(QVariant value READ value WRITE setValue NOTIFY valueChanged USER true) Q_PROPERTY(QVariant valueString READ valueString NOTIFY valueChanged) - Q_PROPERTY(QString units READ units CONSTANT) - + Q_PROPERTY(QString units READ units NOTIFY metaDataChanged) + Q_PROPERTY(QVariant defaultValue READ defaultValue NOTIFY metaDataChanged) + Q_PROPERTY(bool defaultValueAvailable READ defaultValueAvailable NOTIFY metaDataChanged) + Q_PROPERTY(bool valueEqualsDefault READ valueEqualsDefault NOTIFY valueChanged) + Q_PROPERTY(FactMetaData::ValueType_t type READ type NOTIFY metaDataChanged) + Q_PROPERTY(QString shortDescription READ shortDescription NOTIFY metaDataChanged) + Q_PROPERTY(QString longDescription READ longDescription NOTIFY metaDataChanged) + Q_PROPERTY(QVariant min READ min NOTIFY metaDataChanged) + Q_PROPERTY(QVariant max READ max NOTIFY metaDataChanged) + Q_PROPERTY(QString group READ group NOTIFY metaDataChanged) + public: FactBinder(void); + int componentId(void) const; + QString name(void) const; void setName(const QString& name); @@ -54,16 +66,26 @@ public: QString valueString(void) const; - /// Read accesor for units property - QString units(void) const; - + QString units(void) const; + QVariant defaultValue(void); + bool defaultValueAvailable(void); + bool valueEqualsDefault(void); + FactMetaData::ValueType_t type(void); + QString shortDescription(void); + QString longDescription(void); + QVariant min(void); + QVariant max(void); + QString group(void); + signals: void nameChanged(void); void valueChanged(void); + void metaDataChanged(void); private: AutoPilotPlugin* _autopilotPlugin; Fact* _fact; + int _componentId; }; #endif \ No newline at end of file diff --git a/src/FactSystem/FactLoader.cc b/src/FactSystem/FactLoader.cc deleted file mode 100644 index 394d7fb374ace5ddedc0af62e897e2e1e3e6c942..0000000000000000000000000000000000000000 --- a/src/FactSystem/FactLoader.cc +++ /dev/null @@ -1,199 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @author Don Gagne - -#include "FactLoader.h" -#include "QGCApplication.h" - -#include -#include - -Q_LOGGING_CATEGORY(FactLoaderLog, "FactLoaderLog") - -FactLoader::FactLoader(UASInterface* uas, QObject* parent) : - QObject(parent), - _lastSeenComponent(-1), - _paramMgr(NULL), - _factsReady(false) -{ - Q_ASSERT(uas); - - _uasId = uas->getUASID(); - - _paramMgr = uas->getParamManager(); - Q_ASSERT(_paramMgr); - - // We need to be initialized before param mgr starts sending parameters so we catch each one - Q_ASSERT(!_paramMgr->parametersReady()); - - // We need to know when the param mgr is done sending the initial set of paramters - connect(_paramMgr, SIGNAL(parameterListUpToDate()), this, SLOT(_paramMgrParameterListUpToDate())); - - // We track parameters changes to keep Facts up to date. - connect(uas, &UASInterface::parameterUpdate, this, &FactLoader::_parameterUpdate); -} - -FactLoader::~FactLoader() -{ - -} - -/// Called whenever a parameter is updated or first seen. -void FactLoader::_parameterUpdate(int uas, int component, QString parameterName, int mavType, QVariant value) -{ - // Is this for our uas? - if (uas != _uasId) { - return; - } - - if (_lastSeenComponent == -1) { - _lastSeenComponent = component; - } else { - // Code cannot handle parameters coming form different components yets - Q_ASSERT(component == _lastSeenComponent); - } - - bool setMetaData = false; - if (!_mapParameterName2Variant.contains(parameterName)) { - qCDebug(FactLoaderLog) << "Adding new fact" << parameterName; - - FactMetaData::ValueType_t factType; - switch (mavType) { - case MAV_PARAM_TYPE_UINT8: - factType = FactMetaData::valueTypeUint8; - break; - case MAV_PARAM_TYPE_INT8: - factType = FactMetaData::valueTypeUint8; - break; - case MAV_PARAM_TYPE_UINT16: - factType = FactMetaData::valueTypeUint16; - break; - case MAV_PARAM_TYPE_INT16: - factType = FactMetaData::valueTypeInt16; - break; - case MAV_PARAM_TYPE_UINT32: - factType = FactMetaData::valueTypeUint32; - break; - case MAV_PARAM_TYPE_INT32: - factType = FactMetaData::valueTypeInt32; - break; - case MAV_PARAM_TYPE_REAL32: - factType = FactMetaData::valueTypeFloat; - break; - case MAV_PARAM_TYPE_REAL64: - factType = FactMetaData::valueTypeDouble; - break; - default: - factType = FactMetaData::valueTypeInt32; - qCritical() << "Unsupported fact type" << mavType; - break; - } - - Fact* fact = new Fact(parameterName, factType, this); - setMetaData = true; - - _mapParameterName2Variant[parameterName] = QVariant::fromValue(fact); - _mapFact2ParameterName[fact] = parameterName; - - // We need to know when the fact changes from QML so that we can send the new value to the parameter manager - connect(fact, &Fact::_containerValueChanged, this, &FactLoader::_valueUpdated); - } - - Q_ASSERT(_mapParameterName2Variant.contains(parameterName)); - - qCDebug(FactLoaderLog) << "Updating fact value" << parameterName << value; - - Fact* fact = _mapParameterName2Variant[parameterName].value(); - Q_ASSERT(fact); - fact->_containerSetValue(value); - - if (setMetaData) { - _addMetaDataToFact(fact); - } -} - -/// Connected to Fact::valueUpdated -/// -/// Sets the new value into the Parameter Manager. Parameter is persisted after send. -void FactLoader::_valueUpdated(const QVariant& value) -{ - Fact* fact = qobject_cast(sender()); - Q_ASSERT(fact); - - Q_ASSERT(_lastSeenComponent != -1); - Q_ASSERT(_paramMgr); - Q_ASSERT(_mapFact2ParameterName.contains(fact)); - - QVariant typedValue; - switch (fact->type()) { - case FactMetaData::valueTypeInt8: - case FactMetaData::valueTypeInt16: - case FactMetaData::valueTypeInt32: - typedValue.setValue(QVariant(value.toInt())); - break; - - case FactMetaData::valueTypeUint8: - case FactMetaData::valueTypeUint16: - case FactMetaData::valueTypeUint32: - typedValue.setValue(value.toUInt()); - break; - - case FactMetaData::valueTypeFloat: - typedValue.setValue(value.toFloat()); - break; - - case FactMetaData::valueTypeDouble: - typedValue.setValue(value.toDouble()); - break; - } - - qCDebug(FactLoaderLog) << "Set parameter" << fact->name() << typedValue; - - _paramMgr->setParameter(_lastSeenComponent, _mapFact2ParameterName[fact], typedValue); - _paramMgr->sendPendingParameters(true /* persistAfterSend */, false /* forceSend */); -} - -// Called when param mgr list is up to date -void FactLoader::_paramMgrParameterListUpToDate(void) -{ - if (!_factsReady) { - _factsReady = true; - - // We don't need this any more - disconnect(_paramMgr, SIGNAL(parameterListUpToDate()), this, SLOT(_paramMgrParameterListUpToDate())); - - // There may be parameterUpdated signals still in our queue. Flush them out. - qgcApp()->processEvents(); - - // We should have all paramters now so we can signal ready - emit factsReady(); - } -} - -void FactLoader::_addMetaDataToFact(Fact* fact) -{ - FactMetaData* metaData = new FactMetaData(this); - metaData->initFromTypeOnly(fact->type()); -} diff --git a/src/FactSystem/FactLoader.h b/src/FactSystem/FactLoader.h deleted file mode 100644 index a61b147543b943d2841ff0f63fcf026265ee8402..0000000000000000000000000000000000000000 --- a/src/FactSystem/FactLoader.h +++ /dev/null @@ -1,86 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#ifndef FactLoader_h -#define FactLoader_h - -#include -#include -#include -#include - -#include "Fact.h" -#include "UASInterface.h" - -/// @file -/// @author Don Gagne - -Q_DECLARE_LOGGING_CATEGORY(FactLoaderLog) - -/// Connects to Parameter Manager to load/update Facts -class FactLoader : public QObject -{ - Q_OBJECT - -public: - /// @param uas Uas which this set of facts is associated with - FactLoader(UASInterface* uas, QObject* parent = NULL); - - ~FactLoader(); - - /// Returns true if the full set of facts are ready - bool factsAreReady(void) { return _factsReady; } - - /// Returns the fact QVariantMap - const QVariantMap& factMap(void) { return _mapParameterName2Variant; } - -signals: - /// Signalled when the full set of facts are ready - void factsReady(void); - -protected: - /// Base implementation adds generic meta data based on variant type. Derived class can override to provide - /// more details meta data. - virtual void _addMetaDataToFact(Fact* fact); - -private slots: - void _parameterUpdate(int uas, int component, QString parameterName, int mavType, QVariant value); - void _valueUpdated(const QVariant& value); - void _paramMgrParameterListUpToDate(void); - -private: - static QVariant _stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool failOk = false); - - QMap _mapFact2ParameterName; ///< Maps from a Fact to a parameter name - - int _uasId; ///< Id for uas which this set of Facts are associated with - int _lastSeenComponent; - - QGCUASParamManagerInterface* _paramMgr; - - QVariantMap _mapParameterName2Variant; - - bool _factsReady; ///< All facts received from param mgr -}; - -#endif \ No newline at end of file diff --git a/src/FactSystem/FactMetaData.cc b/src/FactSystem/FactMetaData.cc index 5de76f6a68a1ed4b8421b29bb2f55c8ac9e76fc4..ea46a6d3979974791b6ce6d31df2e05baaa29cde 100644 --- a/src/FactSystem/FactMetaData.cc +++ b/src/FactSystem/FactMetaData.cc @@ -28,13 +28,108 @@ #include "FactMetaData.h" -FactMetaData::FactMetaData(QObject* parent) : - QObject(parent) +#include + +#include + +FactMetaData::FactMetaData(ValueType_t type, QObject* parent) : + QObject(parent), + _group("Default Group"), + _type(type), + _defaultValue(0), + _defaultValueAvailable(false), + _min(_minForType()), + _max(_maxForType()) +{ + +} + +QVariant FactMetaData::defaultValue(void) +{ + if (_defaultValueAvailable) { + return _defaultValue; + } else { + qWarning() << "Attempt to access unavailable default value"; + return QVariant(0); + } +} + +void FactMetaData::setDefaultValue(const QVariant& defaultValue) +{ + if (_min <= defaultValue && defaultValue <= _max) { + _defaultValue = defaultValue; + _defaultValueAvailable = true; + } else { + qWarning() << "Attempt to set default value which is outside min/max range"; + } +} + +void FactMetaData::setMin(const QVariant& min) +{ + if (min > _minForType()) { + _min = min; + } else { + qWarning() << "Attempt to set min below allowable value"; + _min = _minForType(); + } +} + +void FactMetaData::setMax(const QVariant& max) +{ + if (max > _maxForType()) { + qWarning() << "Attempt to set max above allowable value"; + _max = _maxForType(); + } else { + _max = max; + } +} + +QVariant FactMetaData::_minForType(void) { - initFromTypeOnly(valueTypeInt32); + switch (_type) { + case valueTypeUint8: + return QVariant(std::numeric_limits::min()); + case valueTypeInt8: + return QVariant(std::numeric_limits::min()); + case valueTypeUint16: + return QVariant(std::numeric_limits::min()); + case valueTypeInt16: + return QVariant(std::numeric_limits::min()); + case valueTypeUint32: + return QVariant(std::numeric_limits::min()); + case valueTypeInt32: + return QVariant(std::numeric_limits::min()); + case valueTypeFloat: + return QVariant(-std::numeric_limits::max()); + case valueTypeDouble: + return QVariant(-std::numeric_limits::max()); + } + + // Make windows compiler happy, even switch is full cased + return QVariant(); } -void FactMetaData::initFromTypeOnly(ValueType_t initType) +QVariant FactMetaData::_maxForType(void) { - type = initType; + switch (_type) { + case valueTypeUint8: + return QVariant(std::numeric_limits::max()); + case valueTypeInt8: + return QVariant(std::numeric_limits::max()); + case valueTypeUint16: + return QVariant(std::numeric_limits::max()); + case valueTypeInt16: + return QVariant(std::numeric_limits::max()); + case valueTypeUint32: + return QVariant(std::numeric_limits::max()); + case valueTypeInt32: + return QVariant(std::numeric_limits::max()); + case valueTypeFloat: + return QVariant(std::numeric_limits::max()); + case valueTypeDouble: + return QVariant(std::numeric_limits::max()); + } + + // Make windows compiler happy, even switch is full cased + return QVariant(); } diff --git a/src/FactSystem/FactMetaData.h b/src/FactSystem/FactMetaData.h index 47924be5ee81e5a1fcde420f35c4f129874e9ac9..2d218b06e77f75f52c562e3f0092d1f58064c444 100644 --- a/src/FactSystem/FactMetaData.h +++ b/src/FactSystem/FactMetaData.h @@ -41,8 +41,6 @@ class FactMetaData : public QObject Q_OBJECT public: - FactMetaData(QObject* parent = NULL); - typedef enum { valueTypeUint8, valueTypeInt8, @@ -54,17 +52,41 @@ public: valueTypeDouble } ValueType_t; - /// Initialize the meta data given only the type. - void initFromTypeOnly(ValueType_t initType); + FactMetaData(ValueType_t type, QObject* parent = NULL); + + // Property accessors + QString group(void) { return _group; } + ValueType_t type(void) { return _type; } + QVariant defaultValue(void); + bool defaultValueAvailable(void) { return _defaultValueAvailable; } + QString shortDescription(void) { return _shortDescription; } + QString longDescription(void) { return _longDescription;} + QString units(void) { return _units; } + QVariant min(void) { return _min; } + QVariant max(void) { return _max; } + + // Property setters + void setGroup(const QString& group) { _group = group; } + void setDefaultValue(const QVariant& defaultValue); + void setShortDescription(const QString& shortDescription) { _shortDescription = shortDescription; } + void setLongDescription(const QString& longDescription) { _longDescription = longDescription;} + void setUnits(const QString& units) { _units = units; } + void setMin(const QVariant& max); + void setMax(const QVariant& max); - // FIXME: This needs to switch over to Q_PROPERTY mechanism - ValueType_t type; - QVariant defaultValue; - QString shortDescription; - QString longDescription; - QString units; - QVariant min; - QVariant max; +private: + QVariant _minForType(void); + QVariant _maxForType(void); + + QString _group; + ValueType_t _type; + QVariant _defaultValue; + bool _defaultValueAvailable; + QString _shortDescription; + QString _longDescription; + QString _units; + QVariant _min; + QVariant _max; }; #endif \ No newline at end of file diff --git a/src/FactSystem/FactSystem.cc b/src/FactSystem/FactSystem.cc index 528f75bdba3fcef5e5539aae4b53de9d8ebc01fb..450b0b8e354e85a52fa35fd9f54c3c72f6b5257e 100644 --- a/src/FactSystem/FactSystem.cc +++ b/src/FactSystem/FactSystem.cc @@ -40,9 +40,7 @@ FactSystem::FactSystem(QObject* parent) : QGCSingleton(parent) { qmlRegisterType(_factSystemQmlUri, 1, 0, "Fact"); - - // FIXME: Where should these go? - qmlRegisterUncreatableType(_factSystemQmlUri, 1, 0, "VehicleComponent", "Can only reference VehicleComponent"); + qmlRegisterUncreatableType(_factSystemQmlUri, 1, 0, "VehicleComponent", "Can only reference, cannot create"); } FactSystem::~FactSystem() diff --git a/src/FactSystem/FactSystem.h b/src/FactSystem/FactSystem.h index 8a9b533ac685fc66adde0cee9c0a46c27ce34c3d..91daf249e951590964b38241baad1c7e6d0bbda1 100644 --- a/src/FactSystem/FactSystem.h +++ b/src/FactSystem/FactSystem.h @@ -24,15 +24,12 @@ /// @file /// @author Don Gagne -#ifndef FactSystem_h -#define FactSystem_h +#ifndef FACTSYSTEM_H +#define FACTSYSTEM_H #include "Fact.h" -#include "FactLoader.h" #include "FactMetaData.h" -#include "UASInterface.h" #include "QGCSingleton.h" -#include "FactValidator.h" /// FactSystem is a singleton which provides access to the Facts in the system /// @@ -40,14 +37,22 @@ /// additional meta data associated with a Fact such as description, min/max ranges and so forth. /// The FactValidator object is a QML validator which validates input according to the FactMetaData /// settings. Client code can then use this system to expose sets of Facts to QML code. An example -/// of this is the PX4ParameterFacts onbject which is part of the PX4 AutoPilot plugin. It exposes +/// of this is the PX4ParameterLoader onbject which is part of the PX4 AutoPilot plugin. It exposes /// the firmware parameters to QML such that you can bind QML ui elements directly to parameters. + class FactSystem : public QGCSingleton { Q_OBJECT DECLARE_QGC_SINGLETON(FactSystem, FactSystem) +public: + typedef enum { + ParameterProvider, + } Provider_t; + + static const int defaultComponentId = -1; + private: /// All access to FactSystem is through FactSystem::instance, so constructor is private FactSystem(QObject* parent = NULL); diff --git a/src/FactSystem/FactSystemTest.qml b/src/FactSystem/FactSystemTest.qml index 7693ada3121f685014d85e44ae4d1f2b41796c03..885b4b22ff6f24d824777265d1684034a85c486b 100644 --- a/src/FactSystem/FactSystemTest.qml +++ b/src/FactSystem/FactSystemTest.qml @@ -1,16 +1,44 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.2 import QtQuick.Controls 1.2 import QGroundControl.FactSystem 1.0 Item { + // Use default component id + TextInput { + objectName: "testControl" + Fact { id: fact1; name: "RC_MAP_THROTTLE" } + text: fact1.value + onAccepted: { fact1.value = text; } + } + + // Use specific component id TextInput { objectName: "testControl" - Fact { id: fact; name: "RC_MAP_THROTTLE" } - text: fact.value - font.family: "Helvetica" - font.pointSize: 24 - color: "red" - focus: true - onAccepted: { fact.value = text; } + Fact { id: fact2; name: "COMPONENT_51:51" } + text: fact2.value + onAccepted: { fact2.value = text; } } -} \ No newline at end of file +} diff --git a/src/FactSystem/FactSystemTestBase.cc b/src/FactSystem/FactSystemTestBase.cc index d8bf606b56e682aa3b5829760936adc6d1989b0f..b0944b722e4e2b0561c6010bcad274343c16ed48 100644 --- a/src/FactSystem/FactSystemTestBase.cc +++ b/src/FactSystem/FactSystemTestBase.cc @@ -48,7 +48,7 @@ void FactSystemTestBase::_init(MAV_AUTOPILOT autopilot) MockLink* link = new MockLink(); link->setAutopilotType(autopilot); - _linkMgr->addLink(link); + _linkMgr->_addLink(link); _linkMgr->connectLink(link); // Wait for the uas to work it's way through the various threads @@ -59,9 +59,6 @@ void FactSystemTestBase::_init(MAV_AUTOPILOT autopilot) _uas = UASManager::instance()->getActiveUAS(); Q_ASSERT(_uas); - _paramMgr = _uas->getParamManager(); - Q_ASSERT(_paramMgr); - // Get the plugin for the uas AutoPilotPluginManager* pluginMgr = AutoPilotPluginManager::instance(); @@ -72,11 +69,11 @@ void FactSystemTestBase::_init(MAV_AUTOPILOT autopilot) // Wait for the plugin to be ready - QSignalSpy spyPlugin(_plugin, SIGNAL(pluginReady())); - if (!_plugin->pluginIsReady()) { - QCOMPARE(spyPlugin.wait(5000), true); + QSignalSpy spyPlugin(_plugin, SIGNAL(pluginReadyChanged(bool))); + if (!_plugin->pluginReady()) { + QCOMPARE(spyPlugin.wait(10000), true); } - Q_ASSERT(_plugin->pluginIsReady()); + Q_ASSERT(_plugin->pluginReady()); } void FactSystemTestBase::_cleanup(void) @@ -85,23 +82,36 @@ void FactSystemTestBase::_cleanup(void) } /// Basic test of parameter values in Fact System -void FactSystemTestBase::_parameter_test(void) +void FactSystemTestBase::_parameter_default_component_id_test(void) { - // Get the parameter facts from the AutoPilot - - const QVariantMap& parameterFacts = _plugin->parameters(); - - // Compare the value in the Parameter Manager with the value from the FactSystem + QVERIFY(_plugin->factExists(FactSystem::ParameterProvider, FactSystem::defaultComponentId, "RC_MAP_THROTTLE")); + Fact* fact = _plugin->getFact(FactSystem::ParameterProvider, FactSystem::defaultComponentId, "RC_MAP_THROTTLE"); + QVERIFY(fact != NULL); + QVariant factValue = fact->value(); + QCOMPARE(factValue.isValid(), true); - Fact* fact = parameterFacts["RC_MAP_THROTTLE"].value(); + QCOMPARE(factValue.toInt(), 3); +} + +void FactSystemTestBase::_parameter_specific_component_id_test(void) +{ + QVERIFY(_plugin->factExists(FactSystem::ParameterProvider, 50, "RC_MAP_THROTTLE")); + Fact* fact = _plugin->getFact(FactSystem::ParameterProvider, 50, "RC_MAP_THROTTLE"); QVERIFY(fact != NULL); QVariant factValue = fact->value(); QCOMPARE(factValue.isValid(), true); - QVariant paramValue; - Q_ASSERT(_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), "RC_MAP_THROTTLE", paramValue)); - QCOMPARE(factValue.toInt(), paramValue.toInt()); + QCOMPARE(factValue.toInt(), 3); + + // Test another component id + QVERIFY(_plugin->factExists(FactSystem::ParameterProvider, 51, "COMPONENT_51")); + fact = _plugin->getFact(FactSystem::ParameterProvider, 51, "COMPONENT_51"); + QVERIFY(fact != NULL); + factValue = fact->value(); + QCOMPARE(factValue.isValid(), true); + + QCOMPARE(factValue.toInt(), 51); } /// Test that QML can reference a Fact @@ -118,40 +128,7 @@ void FactSystemTestBase::_qml_test(void) QVERIFY(control != NULL); QVariant qmlValue = control->property("text").toInt(); - QVariant paramMgrValue; - Q_ASSERT(_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), "RC_MAP_THROTTLE", paramMgrValue)); - - QCOMPARE(qmlValue.toInt(), paramMgrValue.toInt()); -} - -// Test correct behavior when the Param Manager gets a parameter update -void FactSystemTestBase::_paramMgrSignal_test(void) -{ - // Get the parameter Fact from the AutoPilot - - const QVariantMap& parameterFacts = _plugin->parameters(); - - Fact* fact = parameterFacts["RC_MAP_THROTTLE"].value(); - QVERIFY(fact != NULL); - - // Setting a new value into the parameter should trigger a valueChanged signal on the Fact - - QSignalSpy spyFact(fact, SIGNAL(valueChanged(QVariant))); - - QVariant paramValue = 12; - _paramMgr->setParameter(_paramMgr->getDefaultComponentId(), "RC_MAP_THROTTLE", paramValue); - _paramMgr->sendPendingParameters(true, false); - - // Wait for the Fact::valueChanged signal to come through - QCOMPARE(spyFact.wait(5000), true); - - // Make sure the signal has the right value - QList arguments = spyFact.takeFirst(); - qDebug() << arguments.at(0).type(); - QCOMPARE(arguments.at(0).toInt(), 12); - - // Make sure the Fact has the new value - QCOMPARE(fact->value().toInt(), 12); + QCOMPARE(qmlValue.toInt(), 3); } /// Test QML getting an updated Fact value @@ -163,11 +140,10 @@ void FactSystemTestBase::_qmlUpdate_test(void) widget->setSource(QUrl::fromUserInput("qrc:unittest/FactSystemTest.qml")); - // Change the value using param manager + // Change the value QVariant paramValue = 12; - _paramMgr->setParameter(_paramMgr->getDefaultComponentId(), "RC_MAP_THROTTLE", paramValue); - _paramMgr->sendPendingParameters(true, false); + _plugin->getParameterFact("RC_MAP_THROTTLE")->setValue(paramValue); QTest::qWait(500); // Let the signals flow through diff --git a/src/FactSystem/FactSystemTestBase.h b/src/FactSystem/FactSystemTestBase.h index 818f765cd174d20a51eaa0203e58fc687f043af8..0a6cf311939d81143bf7f9a238523ae9f67d9bdb 100644 --- a/src/FactSystem/FactSystemTestBase.h +++ b/src/FactSystem/FactSystemTestBase.h @@ -43,13 +43,12 @@ protected: void _init(MAV_AUTOPILOT autopilot); void _cleanup(void); - void _parameter_test(void); + void _parameter_default_component_id_test(void); + void _parameter_specific_component_id_test(void); void _qml_test(void); - void _paramMgrSignal_test(void); void _qmlUpdate_test(void); UASInterface* _uas; - QGCUASParamManagerInterface* _paramMgr; AutoPilotPlugin* _plugin; LinkManager* _linkMgr; }; diff --git a/src/FactSystem/FactSystemTestGeneric.h b/src/FactSystem/FactSystemTestGeneric.h index 0435ccf6510adcaccad8c35343f44bfd064d3d08..df0c1199b973a6772e1b9f6af6194b71d4b6ebe8 100644 --- a/src/FactSystem/FactSystemTestGeneric.h +++ b/src/FactSystem/FactSystemTestGeneric.h @@ -43,9 +43,9 @@ private slots: void init(void); void cleanup(void) { _cleanup(); } - void parameter_test(void) { _parameter_test(); } + void parameter_default_component_id_test(void) { _parameter_default_component_id_test(); } + void parameter_specific_component_id_test(void) { _parameter_specific_component_id_test(); } void qml_test(void) { _qml_test(); } - void paramMgrSignal_test(void) { _paramMgrSignal_test(); } void qmlUpdate_test(void) { _qmlUpdate_test(); } }; diff --git a/src/FactSystem/FactSystemTestPX4.h b/src/FactSystem/FactSystemTestPX4.h index 54118e9070c3861ea8c07cda2ad1bbf3952b39ca..929e6a306eccdfcf4329be84fa94f59844f64da6 100644 --- a/src/FactSystem/FactSystemTestPX4.h +++ b/src/FactSystem/FactSystemTestPX4.h @@ -43,9 +43,9 @@ private slots: void init(void); void cleanup(void) { _cleanup(); } - void parameter_test(void) { _parameter_test(); } + void parameter_default_component_id_test(void) { _parameter_default_component_id_test(); } + void parameter_specific_component_id_test(void) { _parameter_specific_component_id_test(); } void qml_test(void) { _qml_test(); } - void paramMgrSignal_test(void) { _paramMgrSignal_test(); } void qmlUpdate_test(void) { _qmlUpdate_test(); } }; diff --git a/src/FactSystem/ParameterLoader.cc b/src/FactSystem/ParameterLoader.cc new file mode 100644 index 0000000000000000000000000000000000000000..27d235fe3de1dc799a411d276251ea7805aad234 --- /dev/null +++ b/src/FactSystem/ParameterLoader.cc @@ -0,0 +1,706 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2014 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#include "ParameterLoader.h" +#include "QGCApplication.h" +#include "QGCLoggingCategory.h" +#include "QGCApplication.h" +#include "QGCMessageBox.h" + +#include +#include + +QGC_LOGGING_CATEGORY(ParameterLoaderLog, "ParameterLoaderLog") + +ParameterLoader::ParameterLoader(AutoPilotPlugin* autopilot, UASInterface* uas, QObject* parent) : + QObject(parent), + _autopilot(autopilot), + _uas(uas), + _mavlink(MAVLinkProtocol::instance()), + _parametersReady(false), + _defaultComponentId(FactSystem::defaultComponentId), + _totalParamCount(0), + _fullRefresh(false) +{ + Q_ASSERT(_autopilot); + Q_ASSERT(_uas); + Q_ASSERT(_mavlink); + + // We signal this to ouselves in order to start timer on our thread + connect(this, &ParameterLoader::restartWaitingParamTimer, this, &ParameterLoader::_restartWaitingParamTimer); + + _waitingParamTimeoutTimer.setSingleShot(true); + _waitingParamTimeoutTimer.setInterval(100); + connect(&_waitingParamTimeoutTimer, &QTimer::timeout, this, &ParameterLoader::_waitingParamTimeout); + + // FIXME: Why not direct connect? + connect(_uas, SIGNAL(parameterUpdate(int, int, QString, int, int, int, QVariant)), this, SLOT(_parameterUpdate(int, int, QString, int, int, int, QVariant))); + + // Request full param list + refreshAllParameters(); +} + +ParameterLoader::~ParameterLoader() +{ + +} + +/// Called whenever a parameter is updated or first seen. +void ParameterLoader::_parameterUpdate(int uasId, int componentId, QString parameterName, int parameterCount, int parameterId, int mavType, QVariant value) +{ + bool setMetaData = false; + + // Is this for our uas? + if (uasId != _uas->getUASID()) { + return; + } + + qCDebug(ParameterLoaderLog) << "_parameterUpdate (usaId:" << uasId << + "componentId:" << componentId << + "name:" << parameterName << + "count:" << parameterCount << + "index:" << parameterId << + "mavType:" << mavType << + "value:" << value << + ")"; + + _dataMutex.lock(); + + // Restart our waiting for param timer + _waitingParamTimeoutTimer.start(); + + // Update our total parameter counts + if (!_paramCountMap.contains(componentId)) { + _paramCountMap[componentId] = parameterCount; + _totalParamCount += parameterCount; + } + + // If we've never seen this component id before, setup the wait lists. + if (!_waitingReadParamIndexMap.contains(componentId)) { + QStringList paramNameList; + QList paramIndexList; + + // Parameter index is 0-based + for (int i=0; i(); + Q_ASSERT(fact); + fact->_containerSetValue(value); + + if (setMetaData) { + _addMetaDataToFact(fact); + } + + _dataMutex.unlock(); + + if (waitingParamCount == 0) { + // Now that we know vehicle is up to date persist + _saveToEEPROM(); + } + + // Check to see if we have the full param list for the first time + + if (_fullRefresh) { + if (waitingParamCount == 0) { + if (!_parametersReady) { + _parametersReady = true; + _determineDefaultComponentId(); + _setupGroupMap(); + emit parametersReady(); + } + } + } +} + +/// Connected to Fact::valueUpdated +/// +/// Writes the parameter to mavlink, sets up for write wait +void ParameterLoader::_valueUpdated(const QVariant& value) +{ + Fact* fact = qobject_cast(sender()); + Q_ASSERT(fact); + + int componentId = fact->componentId(); + QString name = fact->name(); + + _dataMutex.lock(); + + Q_ASSERT(_waitingWriteParamNameMap.contains(componentId)); + _waitingWriteParamNameMap[componentId].removeOne(name); + _waitingWriteParamNameMap[componentId] << name; + _waitingParamTimeoutTimer.start(); + + _dataMutex.unlock(); + + _writeParameterRaw(componentId, fact->name(), value); + qCDebug(ParameterLoaderLog) << "Set parameter (componentId:" << componentId << "name:" << name << value << ")"; +} + +void ParameterLoader::_addMetaDataToFact(Fact* fact) +{ + FactMetaData* metaData = new FactMetaData(fact->type(), this); + fact->setMetaData(metaData); +} + +void ParameterLoader::refreshAllParameters(void) +{ + _dataMutex.lock(); + + _fullRefresh = true; + + // Reset index wait lists + foreach (int componentId, _paramCountMap.keys()) { + QList paramIndexList; + + // Parameter index is 0-based + for (int i=0; i<_paramCountMap[componentId]; i++) { + paramIndexList << i; + } + + _waitingReadParamIndexMap[componentId] = paramIndexList; + } + + _dataMutex.unlock(); + + MAVLinkProtocol* mavlink = MAVLinkProtocol::instance(); + Q_ASSERT(mavlink); + + mavlink_message_t msg; + mavlink_msg_param_request_list_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, _uas->getUASID(), MAV_COMP_ID_ALL); + _uas->sendMessage(msg); + + qCDebug(ParameterLoaderLog) << "Request to refresh all parameters"; +} + +void ParameterLoader::_determineDefaultComponentId(void) +{ + if (_defaultComponentId == FactSystem::defaultComponentId) { + // We don't have a default component id yet. That means the plugin can't provide + // the param to trigger off of. Instead we use the most prominent component id in + // the set of parameters. Better than nothing! + + _defaultComponentId = -1; + foreach(int componentId, _mapParameterName2Variant.keys()) { + if (_mapParameterName2Variant[componentId].count() > _defaultComponentId) { + _defaultComponentId = componentId; + } + } + Q_ASSERT(_defaultComponentId != -1); + } +} + +/// Translates FactSystem::defaultComponentId to real component id if needed +int ParameterLoader::_actualComponentId(int componentId) +{ + if (componentId == FactSystem::defaultComponentId) { + componentId = _defaultComponentId; + Q_ASSERT(componentId != FactSystem::defaultComponentId); + } + + return componentId; +} + +void ParameterLoader::refreshParameter(int componentId, const QString& name) +{ + componentId = _actualComponentId(componentId); + qCDebug(ParameterLoaderLog) << "refreshParameter (component id:" << componentId << "name:" << name << ")"; + + _dataMutex.lock(); + + Q_ASSERT(_waitingReadParamNameMap.contains(componentId)); + + if (_waitingReadParamNameMap.contains(componentId)) { + _waitingReadParamNameMap[componentId].removeOne(name); + _waitingReadParamNameMap[componentId] << name; + emit restartWaitingParamTimer(); + } + + _dataMutex.unlock(); + + _readParameterRaw(componentId, name, -1); +} + +void ParameterLoader::refreshParametersPrefix(int componentId, const QString& namePrefix) +{ + componentId = _actualComponentId(componentId); + qCDebug(ParameterLoaderLog) << "refreshParametersPrefix (component id:" << componentId << "name:" << namePrefix << ")"; + + foreach(QString name, _mapParameterName2Variant[componentId].keys()) { + if (name.startsWith(namePrefix)) { + refreshParameter(componentId, name); + } + } +} + +bool ParameterLoader::parameterExists(int componentId, const QString& name) +{ + bool ret = false; + + componentId = _actualComponentId(componentId); + if (_mapParameterName2Variant.contains(componentId)) { + ret = _mapParameterName2Variant[componentId].contains(name); + } + + return ret; +} + +Fact* ParameterLoader::getFact(int componentId, const QString& name) +{ + componentId = _actualComponentId(componentId); + + if (!_mapParameterName2Variant.contains(componentId) || !_mapParameterName2Variant[componentId].contains(name)) { + QString panicMessage("Required parameter (component id: %1, name: %2), is missing from vehicle. QGroundControl cannot operate with this firmware revision. QGroundControl will now shut down."); + qgcApp()->panicShutdown(panicMessage.arg(componentId).arg(name)); + } + + Fact* fact = _mapParameterName2Variant[componentId][name].value(); + Q_ASSERT(fact); + + return fact; +} + +QStringList ParameterLoader::parameterNames(void) +{ + QStringList names; + + foreach(QString paramName, _mapParameterName2Variant[_defaultComponentId].keys()) { + names << paramName; + } + + return names; +} + +void ParameterLoader::_setupGroupMap(void) +{ + foreach (int componentId, _mapParameterName2Variant.keys()) { + foreach (QString name, _mapParameterName2Variant[componentId].keys()) { + Fact* fact = _mapParameterName2Variant[componentId][name].value(); + _mapGroup2ParameterName[componentId][fact->group()] += name; + } + } +} + +const QMap >& ParameterLoader::getGroupMap(void) +{ + return _mapGroup2ParameterName; +} + +void ParameterLoader::_waitingParamTimeout(void) +{ + bool paramsRequested = false; + const int maxBatchSize = 10; + int batchCount = 0; + + // We timed out waiting for some parameters from the initial set. Re-request those. + + batchCount = 0; + foreach(int componentId, _waitingReadParamIndexMap.keys()) { + foreach(int paramIndex, _waitingReadParamIndexMap[componentId]) { + paramsRequested = true; + _readParameterRaw(componentId, "", paramIndex); + qCDebug(ParameterLoaderLog) << "Read re-request for (componentId:" << componentId << "paramIndex:" << paramIndex << ")"; + + if (++batchCount > maxBatchSize) { + goto Out; + } + } + } + + if (!paramsRequested) { + foreach(int componentId, _waitingWriteParamNameMap.keys()) { + foreach(QString paramName, _waitingWriteParamNameMap[componentId]) { + paramsRequested = true; + _writeParameterRaw(componentId, paramName, _autopilot->getFact(FactSystem::ParameterProvider, componentId, paramName)->value()); + qCDebug(ParameterLoaderLog) << "Write resend for (componentId:" << componentId << "paramName:" << paramName << ")"; + + if (++batchCount > maxBatchSize) { + goto Out; + } + } + } + } + + if (!paramsRequested) { + foreach(int componentId, _waitingReadParamNameMap.keys()) { + foreach(QString paramName, _waitingReadParamNameMap[componentId]) { + paramsRequested = true; + _readParameterRaw(componentId, paramName, -1); + qCDebug(ParameterLoaderLog) << "Read re-request for (componentId:" << componentId << "paramName:" << paramName << ")"; + + if (++batchCount > maxBatchSize) { + goto Out; + } + } + } + } + +Out: + if (paramsRequested) { + _waitingParamTimeoutTimer.start(); + } +} + +void ParameterLoader::_readParameterRaw(int componentId, const QString& paramName, int paramIndex) +{ + mavlink_message_t msg; + char fixedParamName[MAVLINK_MSG_PARAM_REQUEST_READ_FIELD_PARAM_ID_LEN]; + + strncpy(fixedParamName, paramName.toStdString().c_str(), sizeof(fixedParamName)); + mavlink_msg_param_request_read_pack(_mavlink->getSystemId(), // Our system id + _mavlink->getComponentId(), // Our component id + &msg, // Pack into this mavlink_message_t + _uas->getUASID(), // Target system id + componentId, // Target component id + fixedParamName, // Named parameter being requested + paramIndex); // Parameter index being requested, -1 for named + _uas->sendMessage(msg); +} + +void ParameterLoader::_writeParameterRaw(int componentId, const QString& paramName, const QVariant& value) +{ + bool floatHack = _uas->getAutopilotType() == MAV_AUTOPILOT_ARDUPILOTMEGA; + + mavlink_param_set_t p; + mavlink_param_union_t union_value; + + FactMetaData::ValueType_t factType = _autopilot->getFact(FactSystem::ParameterProvider, componentId, paramName)->type(); + p.param_type = _factTypeToMavType(factType); + + switch (factType) { + case FactMetaData::valueTypeUint8: + if (floatHack) { + union_value.param_float = (uint8_t)value.toUInt(); + } else { + union_value.param_uint8 = (uint8_t)value.toUInt(); + } + break; + + case FactMetaData::valueTypeInt8: + if (floatHack) { + union_value.param_float = (int8_t)value.toInt(); + } else { + union_value.param_int8 = (int8_t)value.toInt(); + } + break; + + case FactMetaData::valueTypeUint16: + if (floatHack) { + union_value.param_float = (uint16_t)value.toUInt(); + } else { + union_value.param_uint16 = (uint16_t)value.toUInt(); + } + break; + + case FactMetaData::valueTypeInt16: + if (floatHack) { + union_value.param_float = (int16_t)value.toInt(); + } else { + union_value.param_int16 = (int16_t)value.toInt(); + } + break; + + case FactMetaData::valueTypeUint32: + if (floatHack) { + union_value.param_float = (uint32_t)value.toUInt(); + } else { + union_value.param_uint32 = (uint32_t)value.toUInt(); + } + break; + + case FactMetaData::valueTypeFloat: + union_value.param_float = value.toFloat(); + break; + + default: + qCritical() << "Unsupported fact type" << factType; + // fall through + + case FactMetaData::valueTypeInt32: + if (floatHack) { + union_value.param_float = (int32_t)value.toInt(); + } else { + union_value.param_int32 = (int32_t)value.toInt(); + } + break; + } + + p.param_value = union_value.param_float; + p.target_system = (uint8_t)_uas->getUASID(); + p.target_component = (uint8_t)componentId; + + strncpy(p.param_id, paramName.toStdString().c_str(), sizeof(p.param_id)); + + mavlink_message_t msg; + mavlink_msg_param_set_encode(_mavlink->getSystemId(), _mavlink->getComponentId(), &msg, &p); + _uas->sendMessage(msg); +} + +void ParameterLoader::_saveToEEPROM(void) +{ + mavlink_message_t msg; + mavlink_msg_command_long_pack(_mavlink->getSystemId(), _mavlink->getComponentId(), &msg, _uas->getUASID(), 0, MAV_CMD_PREFLIGHT_STORAGE, 1, 1, -1, -1, -1, 0, 0, 0); + _uas->sendMessage(msg); + qCDebug(ParameterLoaderLog) << "_saveToEEPROM"; +} + +void ParameterLoader::readParametersFromStream(QTextStream& stream) +{ + bool userWarned = false; + + while (!stream.atEnd()) { + QString line = stream.readLine(); + if (!line.startsWith("#")) { + QStringList wpParams = line.split("\t"); + int lineMavId = wpParams.at(0).toInt(); + if (wpParams.size() == 5) { + if (!userWarned && (_uas->getUASID() != lineMavId)) { + userWarned = true; + QString msg("The parameters in the stream have been saved from System Id %1, but the current vehicle has the System Id %2."); + QGCMessageBox::StandardButton button = QGCMessageBox::warning("Parameter Load", + msg.arg(lineMavId).arg(_uas->getUASID()), + QGCMessageBox::Ok | QGCMessageBox::Cancel, + QGCMessageBox::Cancel); + if (button == QGCMessageBox::Cancel) { + return; + } + } + + int componentId = wpParams.at(1).toInt(); + QString paramName = wpParams.at(2); + QString valStr = wpParams.at(3); + uint mavType = wpParams.at(4).toUInt(); + + if (!_autopilot->factExists(FactSystem::ParameterProvider, componentId, paramName)) { + continue; + } + + Fact* fact = _autopilot->getFact(FactSystem::ParameterProvider, componentId, paramName); + if (fact->type() != _mavTypeToFactType((MAV_PARAM_TYPE)mavType)) { + continue; + } + + fact->setValue(valStr); + } + } + } +} + +void ParameterLoader::writeParametersToStream(QTextStream &stream, const QString& name) +{ + stream << "# Onboard parameters for system " << name << "\n"; + stream << "#\n"; + stream << "# MAV ID COMPONENT ID PARAM NAME VALUE (FLOAT)\n"; + + foreach (int componentId, _mapParameterName2Variant.keys()) { + foreach (QString paramName, _mapParameterName2Variant[componentId].keys()) { + Fact* fact = _mapParameterName2Variant[componentId][paramName].value(); + Q_ASSERT(fact); + + stream << _uas->getUASID() << "\t" << componentId << "\t" << paramName << "\t" << fact->valueString() << "\t" << QString("%1").arg(_factTypeToMavType(fact->type())) << "\n"; + } + } + + stream.flush(); +} + +MAV_PARAM_TYPE ParameterLoader::_factTypeToMavType(FactMetaData::ValueType_t factType) +{ + switch (factType) { + case FactMetaData::valueTypeUint8: + return MAV_PARAM_TYPE_UINT8; + + case FactMetaData::valueTypeInt8: + return MAV_PARAM_TYPE_INT8; + + case FactMetaData::valueTypeUint16: + return MAV_PARAM_TYPE_UINT16; + + case FactMetaData::valueTypeInt16: + return MAV_PARAM_TYPE_INT16; + + case FactMetaData::valueTypeUint32: + return MAV_PARAM_TYPE_UINT32; + + case FactMetaData::valueTypeFloat: + return MAV_PARAM_TYPE_REAL32; + + default: + qWarning() << "Unsupported fact type" << factType; + // fall through + + case FactMetaData::valueTypeInt32: + return MAV_PARAM_TYPE_INT32; + } +} + +FactMetaData::ValueType_t ParameterLoader::_mavTypeToFactType(MAV_PARAM_TYPE mavType) +{ + switch (mavType) { + case MAV_PARAM_TYPE_UINT8: + return FactMetaData::valueTypeUint8; + + case MAV_PARAM_TYPE_INT8: + return FactMetaData::valueTypeInt8; + + case MAV_PARAM_TYPE_UINT16: + return FactMetaData::valueTypeUint16; + + case MAV_PARAM_TYPE_INT16: + return FactMetaData::valueTypeInt16; + + case MAV_PARAM_TYPE_UINT32: + return FactMetaData::valueTypeUint32; + + case MAV_PARAM_TYPE_REAL32: + return FactMetaData::valueTypeFloat; + + default: + qWarning() << "Unsupported mav param type" << mavType; + // fall through + + case MAV_PARAM_TYPE_INT32: + return FactMetaData::valueTypeInt32; + } +} + +void ParameterLoader::_restartWaitingParamTimer(void) +{ + _waitingParamTimeoutTimer.start(); +} diff --git a/src/FactSystem/ParameterLoader.h b/src/FactSystem/ParameterLoader.h new file mode 100644 index 0000000000000000000000000000000000000000..925faaebc7b779275b6d986dd77a5783758cf089 --- /dev/null +++ b/src/FactSystem/ParameterLoader.h @@ -0,0 +1,152 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2014 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +#ifndef PARAMETERLOADER_H +#define PARAMETERLOADER_H + +#include +#include +#include +#include +#include + +#include "FactSystem.h" +#include "UASInterface.h" +#include "MAVLinkProtocol.h" +#include "AutoPilotPlugin.h" +#include "QGCMAVLink.h" + +/// @file +/// @author Don Gagne + +Q_DECLARE_LOGGING_CATEGORY(ParameterLoaderLog) + +/// Connects to Parameter Manager to load/update Facts +class ParameterLoader : public QObject +{ + Q_OBJECT + +public: + /// @param uas Uas which this set of facts is associated with + ParameterLoader(AutoPilotPlugin* autopilot, UASInterface* uas, QObject* parent = NULL); + + ~ParameterLoader(); + + /// Returns true if the full set of facts are ready + bool parametersAreReady(void) { return _parametersReady; } + + /// Re-request the full set of parameters from the autopilot + void refreshAllParameters(void); + + /// Request a refresh on the specific parameter + void refreshParameter(int componentId, const QString& name); + + /// Request a refresh on all parameters that begin with the specified prefix + void refreshParametersPrefix(int componentId, const QString& namePrefix); + + /// Returns true if the specifed parameter exists + bool parameterExists(int componentId, ///< fact component, -1=default component + const QString& name); ///< fact name + + /// Returns all parameter names + /// FIXME: component id missing + QStringList parameterNames(void); + + /// Returns the specified Fact. + /// WARNING: Will assert if parameter does not exists. If that possibily exists, check for existince first with + /// parameterExists. + Fact* getFact(int componentId, ///< fact component, -1=default component + const QString& name); ///< fact name + + const QMap >& getGroupMap(void); + + void readParametersFromStream(QTextStream& stream); + void writeParametersToStream(QTextStream &stream, const QString& name); + + /// Return the parameter for which the default component id is derived from. Return an empty + /// string is this is not available. + virtual QString getDefaultComponentIdParam(void) const = 0; + +signals: + /// Signalled when the full set of facts are ready + void parametersReady(void); + + /// Signalled to update progress of full parameter list request + void parameterListProgress(float value); + + /// Signalled to ourselves in order to get call on our own thread + void restartWaitingParamTimer(void); + +protected: + /// Base implementation adds generic meta data based on variant type. Derived class can override to provide + /// more details meta data. + virtual void _addMetaDataToFact(Fact* fact); + +private slots: + void _parameterUpdate(int uasId, int componentId, QString parameterName, int parameterCount, int parameterId, int mavType, QVariant value); + void _valueUpdated(const QVariant& value); + void _restartWaitingParamTimer(void); + void _waitingParamTimeout(void); + +private: + static QVariant _stringToTypedVariant(const QString& string, FactMetaData::ValueType_t type, bool failOk = false); + int _actualComponentId(int componentId); + void _determineDefaultComponentId(void); + void _setupGroupMap(void); + void _readParameterRaw(int componentId, const QString& paramName, int paramIndex); + void _writeParameterRaw(int componentId, const QString& paramName, const QVariant& value); + MAV_PARAM_TYPE _factTypeToMavType(FactMetaData::ValueType_t factType); + FactMetaData::ValueType_t _mavTypeToFactType(MAV_PARAM_TYPE mavType); + void _saveToEEPROM(void); + + AutoPilotPlugin* _autopilot; + UASInterface* _uas; + MAVLinkProtocol* _mavlink; + + /// First mapping is by component id + /// Second mapping is parameter name, to Fact* in QVariant + QMap _mapParameterName2Variant; + + /// First mapping is by component id + /// Second mapping is group name, to Fact + QMap > _mapGroup2ParameterName; + + bool _parametersReady; ///< All params received from param mgr + int _defaultComponentId; + QString _defaultComponentIdParam; + + QMap _paramCountMap; ///< Map of total known parameter count, keyed by component id + QMap > _waitingReadParamIndexMap; ///< Map of param indices waiting for initial first time read, keyed by component id + QMap _waitingReadParamNameMap; ///< Map of param names we are waiting to hear a read response from, keyed by component id + QMap _waitingWriteParamNameMap; ///< Map of param names we are waiting to hear a write response from, keyed by component id + + int _totalParamCount; ///< Number of parameters across all components + + QTimer _waitingParamTimeoutTimer; + + bool _fullRefresh; + + QMutex _dataMutex; +}; + +#endif \ No newline at end of file diff --git a/src/GAudioOutput.cc b/src/GAudioOutput.cc index 6d1e2fff66c07660512536a694393bfc414466b4..2e48dbc16669a13987440d2e97cb0348afc033dd 100644 --- a/src/GAudioOutput.cc +++ b/src/GAudioOutput.cc @@ -54,8 +54,8 @@ GAudioOutput::GAudioOutput(QObject *parent) : muted |= qgcApp()->runningUnitTests(); worker->moveToThread(thread); - connect(this, SIGNAL(textToSpeak(QString,int)), worker, SLOT(say(QString,int))); - connect(this, SIGNAL(beepOnce()), worker, SLOT(beep())); + connect(this, &GAudioOutput::textToSpeak, worker, &QGCAudioWorker::say); + connect(this, &GAudioOutput::beepOnce, worker, &QGCAudioWorker::beep); thread->start(); } @@ -103,69 +103,6 @@ bool GAudioOutput::alert(QString text) return true; } -void GAudioOutput::notifyPositive() -{ - if (!muted) - { - // Use QFile to transform path for all OS - // FIXME: Get working with Qt5's QtMultimedia module - //QFile f(QCoreApplication::applicationDirPath() + QString("/files/audio/double_notify.wav")); - //m_media->setCurrentSource(Phonon::MediaSource(f.fileName().toStdString().c_str())); - //m_media->play(); - } -} - -void GAudioOutput::notifyNegative() -{ - if (!muted) - { - // Use QFile to transform path for all OS - // FIXME: Get working with Qt5's QtMultimedia module - //QFile f(QCoreApplication::applicationDirPath() + QString("/files/audio/flat_notify.wav")); - //m_media->setCurrentSource(Phonon::MediaSource(f.fileName().toStdString().c_str())); - //m_media->play(); - } -} - -/** - * The emergency sound will be played continously during the emergency. - * call stopEmergency() to disable it again. No speech synthesis or other - * audio output is available during the emergency. - * - * @return true if the emergency could be started, false else - */ -bool GAudioOutput::startEmergency() -{ -// if (!emergency) -// { -// emergency = true; - -// // Beep immediately and then start timer - -// emergencyTimer->start(1500); -// QTimer::singleShot(5000, this, SLOT(stopEmergency())); -// } - - return true; -} - -/** - * Stops the continous emergency sound. Use startEmergency() to start - * the emergency sound. - * - * @return true if the emergency could be stopped, false else - */ -bool GAudioOutput::stopEmergency() -{ -// if (emergency) -// { -// emergency = false; -// emergencyTimer->stop(); -// } - - return true; -} - void GAudioOutput::beep() { if (!muted) { diff --git a/src/GAudioOutput.h b/src/GAudioOutput.h index ee97e8515c838224a8342d65a96bee1c9abb8b20..ffbd49dbf26000cee0416fef79a98aa55ab35260 100644 --- a/src/GAudioOutput.h +++ b/src/GAudioOutput.h @@ -80,20 +80,8 @@ public slots: bool say(QString text, int severity = 6); /** @brief Play alert sound and say notification message */ bool alert(QString text); - /** @brief Start emergency sound */ - bool startEmergency(); - /** @brief Stop emergency sound */ - bool stopEmergency(); -// /** @brief Select female voice */ -// void selectFemaleVoice(); -// /** @brief Select male voice */ -// void selectMaleVoice(); /** @brief Play emergency sound once */ void beep(); - /** @brief Notify about positive event */ - void notifyPositive(); - /** @brief Notify about negative event */ - void notifyNegative(); /** @brief Mute/unmute sound */ void mute(bool mute); diff --git a/src/MG.h b/src/MG.h index 8bc9426028092e8cf3df148f176c0150dde7adc8..f5b4cf9d3e7b47dd525a1d93850fa38bac00442f 100644 --- a/src/MG.h +++ b/src/MG.h @@ -341,64 +341,6 @@ public: } }; - -class DIR -{ - -public: - /** - * @brief Get the current support file directory. - * - * The support files are files like icons or fonts and are typically found in the - * same directory as the main executable. - * - * @return The absolute path of the directory - **/ - static QString getSupportFilesDirectory() { - - // Checks if the software is executed in the development environment - QString path = QDir::current().absolutePath(); - QDir currentDir = QDir::current(); - - if (QDir::current().dirName().toLower() == "debug") { - // Debug folder of development environment - path.append("/.."); - } else if (QDir::current().dirName().toLower() == "release") { - // Release folder of development environment - path.append("/.."); - } else if (QDir::current().dirName().toLower() == "bin") { - // Release folder of development environment - path.append("/.."); - } else if (QDir::current().dirName().toLower() == "macos") { - // Mac application bundle in development environment - path.append("/../../../../.."); - } - - // Check if we are still in a development folder - if(currentDir.cdUp()) { - if(currentDir.dirName().toLower() == "build") { - path.append("/.."); - } - } - //TODO The Mac application bundle in distribution is not yet included here - //qDebug() << "MG::supportfilesdirectory" << path; - return path; - } - - /** - * @brief Get the current icon directory. - * - * The icon directory is typically a subdirectory of the main directory, - * but depends on the platform. For example in OS X it is part of the bundle. - * - * @return The absolute path of the icon directory - **/ - static QString getIconDirectory() { - return MG::DIR::getSupportFilesDirectory() + "/files/images/"; - } - -}; - } #endif // _MG_H_ diff --git a/src/QGC.h b/src/QGC.h index 2ffca0600b2f428b388703fa77075fbae2d54f86..35f58e14ede8136a4d21ff2edb64c3ca60bfa14e 100644 --- a/src/QGC.h +++ b/src/QGC.h @@ -60,6 +60,9 @@ inline bool isinf(T value) #define isinf(x) std::isinf(x) #endif #endif +#ifdef __android__ +#define isinf(x) std::isinf(x) +#endif namespace QGC { diff --git a/src/QGCApplication.cc b/src/QGCApplication.cc index 631649ba496558b333130b48a36b258fc83bff74..90c5e5a2ba39a38e05e4da4fc7e73c86cec770e7 100644 --- a/src/QGCApplication.cc +++ b/src/QGCApplication.cc @@ -49,7 +49,6 @@ #include "QGCMessageBox.h" #include "MainWindow.h" #include "UDPLink.h" -#include "MAVLinkSimulationLink.h" #include "SerialLink.h" #include "QGCSingleton.h" #include "LinkManager.h" @@ -59,7 +58,10 @@ #include "QGCTemporaryFile.h" #include "QGCFileDialog.h" #include "QGCPalette.h" -#include "MousePosition.h" +#include "ScreenTools.h" +#include "QGCLoggingCategory.h" +#include "ViewWidgetController.h" +#include "ParameterEditorController.h" #ifdef QGC_RTLAB_ENABLED #include "OpalLink.h" @@ -78,8 +80,20 @@ const char* QGCApplication::_defaultSavedFileDirectoryName = "QGroundControl"; const char* QGCApplication::_savedFileMavlinkLogDirectoryName = "FlightData"; const char* QGCApplication::_savedFileParameterDirectoryName = "SavedParameters"; -const char* QGCApplication::_darkStyleFile = ":files/styles/style-dark.css"; -const char* QGCApplication::_lightStyleFile = ":files/styles/style-light.css"; +const char* QGCApplication::_darkStyleFile = ":/res/styles/style-dark.css"; +const char* QGCApplication::_lightStyleFile = ":/res/styles/style-light.css"; + +/** + * @brief ScreenTools creation callback + * + * This is called by the QtQuick engine for creating the singleton + **/ + +static QObject* screenToolsSingletonFactory(QQmlEngine*, QJSEngine*) +{ + ScreenTools* screenTools = new ScreenTools; + return screenTools; +} /** * @brief Constructor for the main application. @@ -101,8 +115,15 @@ QGCApplication::QGCApplication(int &argc, char* argv[], bool unitTesting) : _app = this; // This prevents usage of QQuickWidget to fail since it doesn't support native widget siblings +#ifndef __android__ setAttribute(Qt::AA_DontCreateNativeWidgetSiblings); +#endif +#ifdef __android__ + QLoggingCategory::setFilterRules(QStringLiteral("*Log.debug=false")); +#endif + +#ifndef __android__ #ifdef QT_DEBUG // First thing we want to do is set up the qtlogging.ini file. If it doesn't already exist we copy // it to the correct location. This way default debug builds will have logging turned off. @@ -128,13 +149,23 @@ QGCApplication::QGCApplication(int &argc, char* argv[], bool unitTesting) : if (loggingDirectoryOk) { qDebug () << iniFileLocation; if (!iniFileLocation.exists(qtLoggingFile)) { - if (!QFile::copy(":QLoggingCategory/qtlogging.ini", iniFileLocation.filePath(qtLoggingFile))) { - qDebug() << "Unable to copy" << QString(qtLoggingFile) << "to" << iniFileLocation; + QFile loggingFile(iniFileLocation.filePath(qtLoggingFile)); + if (loggingFile.open(QIODevice::WriteOnly | QIODevice::Text)) { + QTextStream out(&loggingFile); + out << "[Rules]\n"; + out << "*Log.debug=false\n"; + foreach(QString category, QGCLoggingCategoryRegister::instance()->registeredCategories()) { + out << category << ".debug=false\n"; + } + } else { + qDebug() << "Unable to create logging file" << QString(qtLoggingFile) << "in" << iniFileLocation; } } } #endif +#endif + // Set application information if (_runningUnitTests) { // We don't want unit tests to use the same QSettings space as the normal app. So we tweak the app @@ -242,7 +273,7 @@ void QGCApplication::_initCommon(void) // Load application font QFontDatabase fontDatabase = QFontDatabase(); - const QString fontFileName = ":/general/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app + const QString fontFileName = ":/res/fonts/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app //const QString fontFamilyName = "Bitstream Vera Sans"; if(!QFile::exists(fontFileName)) printf("ERROR! font file: %s DOES NOT EXIST!\n", fontFileName.toStdString().c_str()); fontDatabase.addApplicationFont(fontFileName); @@ -252,7 +283,11 @@ void QGCApplication::_initCommon(void) // Register our Qml objects qmlRegisterType("QGroundControl.Palette", 1, 0, "QGCPalette"); - qmlRegisterType("QGroundControl.MousePosition", 1, 0, "MousePosition"); + qmlRegisterType("QGroundControl.Controllers", 1, 0, "ViewWidgetController"); + qmlRegisterType("QGroundControl.Controllers", 1, 0, "ParameterEditorController"); + //-- Create QML Singleton Interfaces + qmlRegisterSingletonType("QGroundControl.ScreenTools", 1, 0, "ScreenTools", screenToolsSingletonFactory); + } bool QGCApplication::_initForNormalAppBoot(void) @@ -262,7 +297,7 @@ bool QGCApplication::_initForNormalAppBoot(void) _createSingletons(); // Show splash screen - QPixmap splashImage(":/files/images/splash.png"); + QPixmap splashImage(":/res/SplashScreen"); QSplashScreen* splashScreen = new QSplashScreen(splashImage); // Delete splash screen after mainWindow was displayed splashScreen->setAttribute(Qt::WA_DeleteOnClose); @@ -443,6 +478,7 @@ void QGCApplication::_createSingletons(void) MAVLinkProtocol* mavlink = MAVLinkProtocol::_createSingleton(); Q_UNUSED(mavlink); Q_ASSERT(mavlink); + } void QGCApplication::_destroySingletons(void) @@ -557,9 +593,33 @@ void QGCApplication::_loadCurrentStyle(void) success = false; } } + + // Now that we have the styles loaded we need to dpi adjust the font point sizes + + QString dpiAdjustedStyles; + if (success) { + QTextStream styleStream(&styles, QIODevice::ReadOnly); + QRegularExpression regex("font-size:.+(\\d\\d)pt;"); + + while (!styleStream.atEnd()) { + QString adjustedLine; + QString line = styleStream.readLine(); + + QRegularExpressionMatch match = regex.match(line); + if (match.hasMatch()) { + //qDebug() << "found:" << line << match.captured(1); + adjustedLine = QString("font-size: %1pt;").arg(ScreenTools::adjustFontPointSize_s(match.captured(1).toDouble())); + //qDebug() << "adjusted:" << adjustedLine; + } else { + adjustedLine = line; + } + + dpiAdjustedStyles += adjustedLine; + } + } - if (!styles.isEmpty()) { - setStyleSheet(styles); + if (!dpiAdjustedStyles.isEmpty()) { + setStyleSheet(dpiAdjustedStyles); } if (!success) { @@ -572,3 +632,35 @@ void QGCApplication::_loadCurrentStyle(void) // Finally restore the cursor before returning. restoreOverrideCursor(); } + +void QGCApplication::reconnectAfterWait(int waitSeconds) +{ + LinkManager* linkManager = LinkManager::instance(); + Q_ASSERT(linkManager); + + Q_ASSERT(linkManager->getLinks().count() == 1); + LinkInterface* link = linkManager->getLinks()[0]; + + // Save the link configuration so we can restart the link laster + _reconnectLinkConfig = LinkConfiguration::duplicateSettings(linkManager->getLinks()[0]->getLinkConfiguration()); + + // Disconnect and wait + + linkManager->disconnectLink(link); + QTimer::singleShot(waitSeconds * 1000, this, &QGCApplication::_reconnect); +} + +void QGCApplication::_reconnect(void) +{ + Q_ASSERT(_reconnectLinkConfig); + + qgcApp()->restoreOverrideCursor(); + LinkManager::instance()->createConnectedLink(_reconnectLinkConfig); + _reconnectLinkConfig = NULL; +} + +void QGCApplication::panicShutdown(const QString& panicMessage) +{ + QGCMessageBox::critical("Panic Shutdown", panicMessage); + ::exit(0); +} diff --git a/src/QGCApplication.h b/src/QGCApplication.h index 5b75acfed0cd29757c6d8a244890f1ea3d5ec3a9..695d3d7d404ed73797d96cb6bef4f486b0d1019a 100644 --- a/src/QGCApplication.h +++ b/src/QGCApplication.h @@ -34,6 +34,8 @@ #include +#include "LinkConfiguration.h" + #ifdef QGC_RTLAB_ENABLED #include "OpalLink.h" #endif @@ -93,6 +95,13 @@ public: /// Set the current UI style void setStyle(bool styleIsDark); + /// Disconnects the current link and waits for the specified number of seconds before reconnecting. + void reconnectAfterWait(int waitSeconds); + + /// Used to shutdown the app if a fatal condition occurs from which it cannot recover + /// @param panicMessage Message to display to user + void panicShutdown(const QString& panicMessage); + public slots: /// You can connect to this slot to show an information message box from a different thread. void informationMessageBoxOnMainThread(const QString& title, const QString& msg); @@ -132,6 +141,9 @@ public: static QGCApplication* _app; ///< Our own singleton. Should be reference directly by qgcApp +private slots: + void _reconnect(void); + private: void _createSingletons(void); void _destroySingletons(void); @@ -153,6 +165,8 @@ private: static const char* _lightStyleFile; bool _styleIsDark; ///< true: dark style, false: light style + LinkConfiguration* _reconnectLinkConfig; ///< Configuration to reconnect for reconnectAfterWai + /// Unit Test have access to creating and destroying singletons friend class UnitTest; }; diff --git a/src/QGCConfig.h b/src/QGCConfig.h index a119bc823a921ce09dccd48f344422223752e6d4..0d8f0754f669caea32357ec5a6db28b09cbbb9e7 100644 --- a/src/QGCConfig.h +++ b/src/QGCConfig.h @@ -12,14 +12,14 @@ // If you need to make an incompatible changes to stored settings, bump this version number // up by 1. This will caused store settings to be cleared on next boot. -#define QGC_SETTINGS_VERSION 3 +#define QGC_SETTINGS_VERSION 6 #define QGC_APPLICATION_NAME "QGroundControl" #define QGC_ORG_NAME "QGroundControl.org" #define QGC_ORG_DOMAIN "org.qgroundcontrol" #define QGC_APPLICATION_VERSION_MAJOR 2 -#define QGC_APPLICATION_VERSION_MINOR 3 +#define QGC_APPLICATION_VERSION_MINOR 4 // The following #definess can be overriden from the command line so that automated build systems can // add additional build identification. @@ -32,7 +32,7 @@ #endif #ifndef QGC_APPLICATION_VERSION_BUILDTYPE -#define QGC_APPLICATION_VERSION_BUILDTYPE "(Developer Build)" +#define QGC_APPLICATION_VERSION_BUILDTYPE "(Development)" #endif #endif // QGC_CONFIGURATION_H diff --git a/src/QGCDockWidget.cc b/src/QGCDockWidget.cc index b087abbbaa70742ac87249e48dca6d326d56dd35..7fce8d78564fcb092879e10f12a7bd5c2ae5f9da 100644 --- a/src/QGCDockWidget.cc +++ b/src/QGCDockWidget.cc @@ -25,15 +25,23 @@ #include -QGCDockWidget::QGCDockWidget(const QString& title, QWidget *parent, Qt::WindowFlags flags) : - QDockWidget(title, parent, flags) +QGCDockWidget::QGCDockWidget(const QString& title, QAction* action, QWidget *parent, Qt::WindowFlags flags) : + QDockWidget(title, parent, flags), + _action(action) { - + QDockWidget::DockWidgetFeatures features = QDockWidget::DockWidgetMovable; + + if (action) { + features |= QDockWidget::DockWidgetClosable; + } + setFeatures(features); } // Instead of destroying the widget just hide it void QGCDockWidget::closeEvent(QCloseEvent* event) { + Q_ASSERT(_action); + event->ignore(); - setVisible(false); + _action->trigger(); } diff --git a/src/QGCDockWidget.h b/src/QGCDockWidget.h index ffc2fb1352b59f28a88bda264475849a50d11241..24f6e6a771a46010745f7306191ee12e9ca2caf9 100644 --- a/src/QGCDockWidget.h +++ b/src/QGCDockWidget.h @@ -25,6 +25,7 @@ #define QGCDockWidget_h #include +#include /// @file /// @brief Subclass of QDockWidget so we can intercept the closeEvent. @@ -35,9 +36,12 @@ class QGCDockWidget : public QDockWidget { Q_OBJECT public: - QGCDockWidget(const QString& title, QWidget *parent = 0, Qt::WindowFlags flags = 0); + QGCDockWidget(const QString& title, QAction* action, QWidget *parent = 0, Qt::WindowFlags flags = 0); void closeEvent(QCloseEvent* event); + +private: + QAction* _action; }; diff --git a/src/QGCFileDialog.cc b/src/QGCFileDialog.cc index 25c667ea928685dd4ffa8a46cef47e300d70ab07..398017bb1a3baf91fa117161d7e44b07a9fd8720 100644 --- a/src/QGCFileDialog.cc +++ b/src/QGCFileDialog.cc @@ -26,8 +26,10 @@ #include #include "MainWindow.h" #ifdef QT_DEBUG +#ifndef __android__ #include "UnitTest.h" #endif +#endif QString QGCFileDialog::getExistingDirectory( QWidget* parent, @@ -38,9 +40,11 @@ QString QGCFileDialog::getExistingDirectory( _validate(options); #ifdef QT_DEBUG +#ifndef __android__ if (qgcApp()->runningUnitTests()) { return UnitTest::_getExistingDirectory(parent, caption, dir, options); } else +#endif #endif { return QFileDialog::getExistingDirectory(parent, caption, dir, options); @@ -57,9 +61,11 @@ QString QGCFileDialog::getOpenFileName( _validate(options); #ifdef QT_DEBUG +#ifndef __android__ if (qgcApp()->runningUnitTests()) { return UnitTest::_getOpenFileName(parent, caption, dir, filter, options); } else +#endif #endif { return QFileDialog::getOpenFileName(parent, caption, dir, filter, NULL, options); @@ -76,9 +82,11 @@ QStringList QGCFileDialog::getOpenFileNames( _validate(options); #ifdef QT_DEBUG +#ifndef __android__ if (qgcApp()->runningUnitTests()) { return UnitTest::_getOpenFileNames(parent, caption, dir, filter, options); } else +#endif #endif { return QFileDialog::getOpenFileNames(parent, caption, dir, filter, NULL, options); @@ -97,9 +105,11 @@ QString QGCFileDialog::getSaveFileName( _validate(options); #ifdef QT_DEBUG +#ifndef __android__ if (qgcApp()->runningUnitTests()) { return UnitTest::_getSaveFileName(parent, caption, dir, filter, defaultSuffix, options); } else +#endif #endif { QString defaultSuffixCopy(defaultSuffix); @@ -207,10 +217,12 @@ void QGCFileDialog::_validate(Options& options) Q_ASSERT(qgcApp()); Q_ASSERT_X(QThread::currentThread() == qgcApp()->thread(), "Threading issue", "QGCFileDialog can only be called from main thread"); - +#ifdef __android__ + Q_UNUSED(options) +#else // On OSX native dialog can hang so we always use Qt dialogs options |= DontUseNativeDialog; - +#endif if (MainWindow::instance()) { MainWindow::instance()->hideSplashScreen(); } diff --git a/src/VehicleSetup/ParameterEditor.cc b/src/QGCLoggingCategory.cc similarity index 61% rename from src/VehicleSetup/ParameterEditor.cc rename to src/QGCLoggingCategory.cc index ed43081d2c03ced9d81cace5f896a937005e157f..7a7c3cdaeb62ad7056e963391913212f4fc6744c 100644 --- a/src/VehicleSetup/ParameterEditor.cc +++ b/src/QGCLoggingCategory.cc @@ -2,7 +2,7 @@ QGroundControl Open Source Ground Control Station - (c) 2009 - 2014 QGROUNDCONTROL PROJECT + (c) 2009 - 2015 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project @@ -24,23 +24,19 @@ /// @file /// @author Don Gagne -#include "ParameterEditor.h" -#include "ui_ParameterEditor.h" +#include "QGCLoggingCategory.h" -ParameterEditor::ParameterEditor(UASInterface* uas, const QStringList& filterList, QWidget* parent) : - QWidget(parent), - _ui(new Ui::ParameterEditor) -{ - _ui->setupUi(this); +// Add Global logging categories (not class specific) here using QGC_LOGGING_CATEGORY + // There currently are no global categories - _ui->paramTreeWidget->setFilterList(filterList); - _ui->paramTreeWidget->setUAS(uas); - _ui->paramTreeWidget->handleOnboardParameterListUpToDate(); - _ui->pendingCommitsWidget->setUAS(uas); - _ui->pendingCommitsWidget->update(); -} +QGCLoggingCategoryRegister* _instance = NULL; -ParameterEditor::~ParameterEditor() +QGCLoggingCategoryRegister* QGCLoggingCategoryRegister::instance(void) { - delete _ui; + if (!_instance) { + _instance = new QGCLoggingCategoryRegister(); + Q_CHECK_PTR(_instance); + } + + return _instance; } diff --git a/src/QGCLoggingCategory.h b/src/QGCLoggingCategory.h new file mode 100644 index 0000000000000000000000000000000000000000..e059f833dd0567c8edbc82e8fd152e30e968ec51 --- /dev/null +++ b/src/QGCLoggingCategory.h @@ -0,0 +1,63 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#ifndef QGC_LOGGING_CATEGORY_H +#define QGC_LOGGING_CATEGORY_H + +#include +#include + +// Add Global logging categories (not class specific) here using Q_DECLARE_LOGGING_CATEGORY + // There currently are no global categories + +/// @def QGC_LOGGING_CATEGORY +/// This is a QGC specific replacement for Q_LOGGING_CATEGORY. It will register the category name into a +/// global list. It's usage is the same as Q_LOGGING_CATEOGRY. +#define QGC_LOGGING_CATEGORY(name, ...) \ + static QGCLoggingCategory qgcCategory(__VA_ARGS__); \ + Q_LOGGING_CATEGORY(name, __VA_ARGS__) + +class QGCLoggingCategoryRegister +{ +public: + static QGCLoggingCategoryRegister* instance(void); + + void registerCategory(const char* category) { _registeredCategories << category; } + const QStringList& registeredCategories(void) { return _registeredCategories; } + +private: + QGCLoggingCategoryRegister(void) { } + + QStringList _registeredCategories; +}; + +class QGCLoggingCategory +{ +public: + QGCLoggingCategory(const char* category) { QGCLoggingCategoryRegister::instance()->registerCategory(category); } +}; + +#endif diff --git a/src/QGCMessageBox.h b/src/QGCMessageBox.h index dfda32d18a7bac8e3721784d09ee07f9deb60b63..91402a9d033711b930b8230e4cfba2ca4f3459e5 100644 --- a/src/QGCMessageBox.h +++ b/src/QGCMessageBox.h @@ -29,8 +29,10 @@ #include "MainWindow.h" #include "QGCApplication.h" #ifdef QT_DEBUG +#ifndef __android__ #include "UnitTest.h" #endif +#endif /// @file /// @brief Subclass of QMessageBox which re-implements the static public functions. There are two reasons for this: @@ -104,10 +106,12 @@ private: } #ifdef QT_DEBUG +#ifndef __android__ if (qgcApp()->runningUnitTests()) { qDebug() << "QGCMessageBox (unit testing)" << title << text; return UnitTest::_messageBox(icon, title, text, buttons, defaultButton); } else +#endif #endif { #ifdef Q_OS_MAC diff --git a/src/QGCPalette.cc b/src/QGCPalette.cc index 61e2fba42f80e976e5c1d8048f73b4241f556666..dfc6deb0c88e4e81dbbb7e7841210cceea0e8ec4 100644 --- a/src/QGCPalette.cc +++ b/src/QGCPalette.cc @@ -25,6 +25,7 @@ /// @author Don Gagne #include "QGCPalette.h" +#include "ScreenTools.h" #include #include @@ -34,12 +35,12 @@ QList QGCPalette::_paletteObjects; QGCPalette::Theme QGCPalette::_theme = QGCPalette::Dark; QColor QGCPalette::_window[QGCPalette::_cThemes][QGCPalette::_cColorGroups] = { - { QColor(0xF6, 0xF6, 0xF6), QColor(0xF6, 0xF6, 0xF6) }, + { QColor(0xDD, 0xDD, 0xDD), QColor(0xDD, 0xDD, 0xDD) }, { QColor(0x22, 0x22, 0x22), QColor(0x22, 0x22, 0x22) } }; QColor QGCPalette::_windowShade[QGCPalette::_cThemes][QGCPalette::_cColorGroups] = { - { QColor(255, 235, 211), QColor(255, 235, 211) }, + { QColor(204, 204, 204), QColor(204, 204, 204) }, { QColor(51, 51, 51), QColor(51, 51, 51) } }; @@ -130,3 +131,4 @@ void QGCPalette::_themeChanged(void) { emit paletteChanged(); } + diff --git a/src/QGCPalette.h b/src/QGCPalette.h index 219c8b6b45320f97abcf79123d777edd9b00d21c..6f703e5282e514603a2e3b9dc4d89bf116d675e2 100644 --- a/src/QGCPalette.h +++ b/src/QGCPalette.h @@ -82,7 +82,7 @@ class QGCPalette : public QObject // Text color for TextFields Q_PROPERTY(QColor textFieldText READ textFieldText NOTIFY paletteChanged) - + public: enum ColorGroup { Disabled = 0, @@ -119,7 +119,7 @@ public: static Theme globalTheme(void) { return _theme; } static void setGlobalTheme(Theme newTheme); - + signals: void paletteChanged(void); diff --git a/src/QmlControls/ParameterEditor.qml b/src/QmlControls/ParameterEditor.qml new file mode 100644 index 0000000000000000000000000000000000000000..d40f849b2df4277505bcbd73badc3d8a3a99f2b3 --- /dev/null +++ b/src/QmlControls/ParameterEditor.qml @@ -0,0 +1,419 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +import QtQuick 2.3 +import QtQuick.Controls 1.3 +import QtQuick.Controls.Styles 1.2 +import QtQuick.Dialogs 1.2 + +import QGroundControl.Controls 1.0 +import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 +import QGroundControl.Controllers 1.0 +import QGroundControl.FactSystem 1.0 +import QGroundControl.FactControls 1.0 + +Rectangle { + /// true: show full information, false: for use in smaller widgets + property bool fullMode: true + + QGCPalette { id: __qgcPal; colorGroupEnabled: true } + ParameterEditorController { id: __controller } + QGCLabel { id: __textControl; text: "X"; visible: false } + + readonly property real __leftMargin: 10 + readonly property real __rightMargin: 20 + readonly property int __maxParamChars: 16 + + color: __qgcPal.window + + // We use an ExclusiveGroup to maintain the visibility of a single editing control at a time + ExclusiveGroup { + id: __exclusiveEditorGroup + } + + property Fact __editorOverlayFact: Fact { } + property real __textHeight: __textControl.contentHeight + property real __textWidth: __textControl.contentWidth + + Item { + id: __editorOverlay + + anchors.fill: parent + visible: false + z: 100 + + Rectangle { + width: __textWidth * 75 + height: parent.height + anchors.left: parent.left + anchors.right: editorDialog.left + opacity: 0.80 + color: __qgcPal.window + } + + Rectangle { + id: editorDialog + width: fullMode ? __textWidth * 50 : parent.width + height: parent.height + anchors.right: parent.right + color: __qgcPal.windowShadeDark + + Column { + spacing: __textHeight + anchors.fill: parent + + Rectangle { + width: parent.width + height: saveButton.height + color: __qgcPal.windowShade + + QGCLabel { + x: __textWidth + height: parent.height + verticalAlignment: Text.AlignVCenter + text: "Edit Parameter" + } + + QGCButton { + anchors.right: saveButton.left + anchors.bottom: parent.bottom + text: "Cancel" + + onClicked: { + __editorOverlay.visible = false + } + } + + QGCButton { + id: saveButton + anchors.right: parent.right + primary: true + text: "Save" + + onClicked: { + __editorOverlayFact.value = valueField.text + __editorOverlay.visible = false + } + } + } + + Column { + spacing: __textHeight + anchors.leftMargin: __textWidth * 2 + anchors.rightMargin: __textWidth + anchors.left: parent.left + anchors.right: parent.right + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + text: __editorOverlayFact.shortDescription ? __editorOverlayFact.shortDescription : "Description missing" + } + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + visible: __editorOverlayFact.longDescription + text: __editorOverlayFact.longDescription + } + + QGCTextField { + id: valueField + text: __editorOverlayFact.valueString + } + + QGCLabel { text: __editorOverlayFact.name } + + Row { + spacing: __textWidth + + QGCLabel { text: "Units:" } + QGCLabel { text: __editorOverlayFact.units ? __editorOverlayFact.units : "none" } + } + + Row { + spacing: __textWidth + + QGCLabel { text: "Minimum value:" } + QGCLabel { text: __editorOverlayFact.min } + } + + Row { + spacing: __textWidth + + QGCLabel { text: "Maxmimum value:" } + QGCLabel { text: __editorOverlayFact.max } + } + + Row { + spacing: __textWidth + + QGCLabel { text: "Default value:" } + QGCLabel { text: __editorOverlayFact.defaultValueAvailable ? __editorOverlayFact.defaultValue : "none" } + } + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + text: "Warning: Modifying parameters while vehicle is in flight can lead to vehicle instability and possible vehicle loss. " + + "Make sure you know what you are doing and double-check your values before Save!" + } + } // Column - Fact information + } // Column - Header + Fact information + + + QGCButton { + anchors.rightMargin: __textWidth + anchors.right: rcButton.left + anchors.bottom: parent.bottom + visible: __editorOverlayFact.defaultValueAvailable + text: "Reset to default" + + onClicked: { + __editorOverlayFact.value = __editorOverlayFact.defaultValue + __editorOverlay.visible = false + } + } + + QGCButton { + id: rcButton + anchors.right: parent.right + anchors.bottom: parent.bottom + visible: __editorOverlayFact.defaultValueAvailable + text: "Set RC to Param..." + onClicked: __controller.setRCToParam(__editorOverlayFact.name) + } + } // Rectangle - editorDialog + } // Item - editorOverlay + + Component { + id: factRowsComponent + + Column { + id: factColumn + x: __leftMargin + + QGCLabel { + height: __textHeight + (ScreenTools.pixelSizeFactor * (9)) + text: group + verticalAlignment: Text.AlignVCenter + font.pointSize: ScreenTools.fontPointFactor * (16); + } + + Rectangle { + width: parent.width + height: 1 + color: __qgcPal.text + } + + Repeater { + model: __controller.getFactsForGroup(componentId, group) + + Column { + Item { + x: __leftMargin + width: parent.width + height: __textHeight + (ScreenTools.pixelSizeFactor * (9)) + + Fact { + id: modelFact + + Component.onCompleted: { + name = modelData + ":" + componentId + } + } + + QGCLabel { + id: nameLabel + width: __textWidth * (__maxParamChars + 1) + height: parent.height + verticalAlignment: Text.AlignVCenter + text: modelFact.name + } + + QGCLabel { + id: valueLabel + width: __textWidth * 20 + height: parent.height + anchors.left: nameLabel.right + verticalAlignment: Text.AlignVCenter + color: modelFact.valueEqualsDefault ? __qgcPal.text : "orange" + text: modelFact.valueString + " " + modelFact.units + } + + QGCLabel { + height: parent.height + anchors.left: valueLabel.right + verticalAlignment: Text.AlignVCenter + visible: fullMode + text: modelFact.shortDescription + } + + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.LeftButton + + onClicked: { + __editorOverlayFact = modelFact + __editorOverlay.visible = true + } + } + } + + Rectangle { + x: __leftMargin + width: factColumn.width - __leftMargin - __rightMargin + height: 1 + color: __qgcPal.windowShade + } + } // Column - Fact + } // Repeater - Facts + } // Column - Facts + } // Component - factRowsComponent + + Column { + anchors.fill: parent + + Item { + width: parent.width + height: firstButton.height + + QGCLabel { + font.pointSize: ScreenTools.fontPointFactor * (20) + visible: fullMode + text: "PARAMETER EDITOR" + } + + Row { + spacing: 10 + layoutDirection: Qt.RightToLeft + width: parent.width + + QGCButton { + text: "Clear RC to Param" + onClicked: __controller.clearRCToParam() + } + QGCButton { + text: "Save to file" + visible: fullMode + onClicked: __controller.saveToFile() + } + QGCButton { + text: "Load from file" + visible: fullMode + onClicked: __controller.loadFromFile() + } + QGCButton { + id: firstButton + text: "Refresh" + onClicked: __controller.refresh() + } + } + } + + Item { + id: lastSpacer + height: 10 + width: 5 + } + + Item { + width: parent.width + height: parent.height - (lastSpacer.y + lastSpacer.height) + + ScrollView { + id : groupScroll + width: __textWidth * 25 + height: parent.height + + Column { + Repeater { + model: __controller.componentIds + + Column { + id: componentColumn + + readonly property int componentId: parseInt(modelData) + + QGCLabel { + height: contentHeight + (ScreenTools.pixelSizeFactor * (9)) + text: "Component #: " + componentId.toString() + verticalAlignment: Text.AlignVCenter + font.pointSize: ScreenTools.fontPointFactor * (16); + } + + Repeater { + model: __controller.getGroupsForComponent(componentColumn.componentId) + + Column { + QGCButton { + x: __leftMargin + width: groupScroll.width - __leftMargin - __rightMargin + text: modelData + + onClicked: { + factRowsLoader.sourceComponent = null + factRowsLoader.componentId = componentId + factRowsLoader.group = modelData + factRowsLoader.sourceComponent = factRowsComponent + } + } + + Item { + width: 1 + height: ScreenTools.pixelSizeFactor * (3) + } + } // Column - Group + } // Repeater - Groups + + Item { + height: 10 + width: 10 + } + } // Column - Component + } // Repeater - Components + } // Column - Component + } // ScrollView - Groups + + ScrollView { + id: factScrollView + anchors.left: groupScroll.right + anchors.right: parent.right + height: parent.height + + Loader { + id: factRowsLoader + width: factScrollView.width + + property int componentId: __controller.componentIds[0] + property string group: __controller.getGroupsForComponent(__controller.componentIds[0])[0] + sourceComponent: factRowsComponent + } + } // ScrollView - Facts + } // Item - Group ScrollView + Facts + } // Column - Outer +} diff --git a/src/QmlControls/ParameterEditorController.cc b/src/QmlControls/ParameterEditorController.cc new file mode 100644 index 0000000000000000000000000000000000000000..03e000f2bd46089b7ec30a5464d761e4f522a80e --- /dev/null +++ b/src/QmlControls/ParameterEditorController.cc @@ -0,0 +1,134 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Don Gagne + +#include "ParameterEditorController.h" +#include "UASManager.h" +#include "AutoPilotPluginManager.h" +#include "QGCFileDialog.h" +#include "QGCMessageBox.h" +#include "QGCMapRCToParamDialog.h" +#include "MainWindow.h" + +/// @Brief Constructs a new ParameterEditorController Widget. This widget is used within the PX4VehicleConfig set of screens. +ParameterEditorController::ParameterEditorController(void) : + _uas(NULL), + _autopilot(NULL) +{ + _uas = UASManager::instance()->getActiveUAS(); + Q_ASSERT(_uas); + + _autopilot = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uas); + Q_ASSERT(_autopilot); + Q_ASSERT(_autopilot->pluginReady()); + + const QMap >& groupMap = _autopilot->getGroupMap(); + + foreach (int componentId, groupMap.keys()) { + _componentIds += QString("%1").arg(componentId); + } +} + +QStringList ParameterEditorController::getGroupsForComponent(int componentId) +{ + const QMap >& groupMap = _autopilot->getGroupMap(); + + return groupMap[componentId].keys(); +} + +QStringList ParameterEditorController::getFactsForGroup(int componentId, QString group) +{ + const QMap >& groupMap = _autopilot->getGroupMap(); + + return groupMap[componentId][group]; +} + +void ParameterEditorController::clearRCToParam(void) +{ + Q_ASSERT(_uas); + _uas->unsetRCToParameterMap(); +} + +void ParameterEditorController::saveToFile(void) +{ + Q_ASSERT(_autopilot); + + QString msgTitle("Save Parameters"); + + QString fileName = QGCFileDialog::getSaveFileName(NULL, + msgTitle, + qgcApp()->savedParameterFilesLocation(), + "Parameter Files (*.params)", + "params", + true); + if (!fileName.isEmpty()) { + QFile file(fileName); + + if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { + QGCMessageBox::critical(msgTitle, "Unable to create file"); + return; + } + + QTextStream stream(&file); + _autopilot->writeParametersToStream(stream); + file.close(); + } +} + +void ParameterEditorController::loadFromFile(void) +{ + Q_ASSERT(_autopilot); + + QString msgTitle("Load Parameters"); + + QString fileName = QGCFileDialog::getOpenFileName(NULL, + msgTitle, + qgcApp()->savedParameterFilesLocation(), + "Parameter Files (*.params);;All Files (*)"); + if (!fileName.isEmpty()) { + QFile file(fileName); + + if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { + QGCMessageBox::critical(msgTitle, "Unable to open file"); + return; + } + + QTextStream stream(&file); + _autopilot->readParametersFromStream(stream); + file.close(); + } +} + +void ParameterEditorController::refresh(void) +{ + _autopilot->refreshAllParameters(); +} + +void ParameterEditorController::setRCToParam(const QString& paramName) +{ + Q_ASSERT(_uas); + QGCMapRCToParamDialog * d = new QGCMapRCToParamDialog(paramName, _uas, MainWindow::instance()); + d->exec(); +} diff --git a/src/QmlControls/MousePosition.h b/src/QmlControls/ParameterEditorController.h similarity index 58% rename from src/QmlControls/MousePosition.h rename to src/QmlControls/ParameterEditorController.h index 64c7a3a4f5e72dee6a22b6d17f7349bddc278e50..3f38266712e2a54576a32afd34fdc2f63940ec60 100644 --- a/src/QmlControls/MousePosition.h +++ b/src/QmlControls/ParameterEditorController.h @@ -24,27 +24,39 @@ /// @file /// @author Don Gagne -#ifndef MOUSEPOSITION_H -#define MOUSEPOSITION_H +#ifndef PARAMETEREDITORCONTROLLER_H +#define PARAMETEREDITORCONTROLLER_H #include -#include +#include -/// This Qml control is used to return global mouse positions. It is needed to fix -/// a problem with hover state of buttons not being updated correctly if the mouse -/// moves out of a QQuickWidget control. -class MousePosition : public QObject +#include "AutoPilotPlugin.h" +#include "UASInterface.h" + +class ParameterEditorController : public QObject { Q_OBJECT public: - MousePosition(void); - - Q_PROPERTY(int mouseX READ mouseX) - Q_PROPERTY(int mouseY READ mouseY) - - int mouseX(void) { return QCursor::pos().x(); } - int mouseY(void) { return QCursor::pos().y(); } + ParameterEditorController(void); + + Q_PROPERTY(QStringList componentIds MEMBER _componentIds CONSTANT) + + Q_INVOKABLE QStringList getGroupsForComponent(int componentId); + Q_INVOKABLE QStringList getFactsForGroup(int componentId, QString group); + + Q_INVOKABLE void clearRCToParam(void); + Q_INVOKABLE void saveToFile(void); + Q_INVOKABLE void loadFromFile(void); + Q_INVOKABLE void refresh(void); + Q_INVOKABLE void setRCToParam(const QString& paramName); + + QList model(void); + +private: + UASInterface* _uas; + AutoPilotPlugin* _autopilot; + QStringList _componentIds; }; #endif diff --git a/src/QmlControls/QGCButton.qml b/src/QmlControls/QGCButton.qml index a3d31b2670236c2b44baa9fb7347caf2acfb2aea..716549a3c4a9ac0f5f041d9cee0d08c8c8477d9c 100644 --- a/src/QmlControls/QGCButton.qml +++ b/src/QmlControls/QGCButton.qml @@ -4,7 +4,7 @@ import QtQuick.Controls.Styles 1.2 import QtQuick.Controls.Private 1.0 import QGroundControl.Palette 1.0 -import QGroundControl.MousePosition 1.0 +import QGroundControl.ScreenTools 1.0 Button { // primary: true - this is the primary button for this group of buttons @@ -23,17 +23,15 @@ Button { property int __lastGlobalMouseX: 0 property int __lastGlobalMouseY: 0 - property MousePosition __globalMousePosition: MousePosition { } - Connections { target: __behavior onMouseXChanged: { - __lastGlobalMouseX = __globalMousePosition.mouseX - __lastGlobalMouseY = __globalMousePosition.mouseY + __lastGlobalMouseX = ScreenTools.mouseX + __lastGlobalMouseY = ScreenTools.mouseY } onMouseYChanged: { - __lastGlobalMouseX = __globalMousePosition.mouseX - __lastGlobalMouseY = __globalMousePosition.mouseY + __lastGlobalMouseX = ScreenTools.mouseX + __lastGlobalMouseY = ScreenTools.mouseY } onEntered: { __forceHoverOff; false; hoverTimer.start() } onExited: { __forceHoverOff; false; hoverTimer.stop() } @@ -45,7 +43,7 @@ Button { repeat: true onTriggered: { - if (__lastGlobalMouseX != __globalMousePosition.mouseX || __lastGlobalMouseY != __globalMousePosition.mouseY) { + if (__lastGlobalMouseX != ScreenTools.mouseX || __lastGlobalMouseY != ScreenTools.mouseY) { __forceHoverOff = true } else { __forceHoverOff = false @@ -103,10 +101,13 @@ Button { } Text { - id: text - renderType: Text.NativeRendering + id: text + antialiasing: true + text: control.text + font.pointSize: ScreenTools.defaultFontPointSize + anchors.verticalCenter: parent.verticalCenter - text: control.text + color: __showHighlight ? control.__qgcPal.buttonHighlightText : (primary ? control.__qgcPal.primaryButtonText : control.__qgcPal.buttonText) diff --git a/src/QmlControls/QGCCheckBox.qml b/src/QmlControls/QGCCheckBox.qml index 356c4ddf0056b51c965b860ec953ef39c14d8c82..6403ccdf7b5092470919d8a451829b167e7ead4a 100644 --- a/src/QmlControls/QGCCheckBox.qml +++ b/src/QmlControls/QGCCheckBox.qml @@ -3,6 +3,7 @@ import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 CheckBox { property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } @@ -25,9 +26,13 @@ CheckBox { opacity: 0.6 } Text { - id: text - text: control.text + id: text + text: control.text + antialiasing: true + font.pointSize: ScreenTools.defaultFontPointSize + anchors.centerIn: parent + color: control.__qgcPal.text } } diff --git a/src/QmlControls/QGCColoredImage.qml b/src/QmlControls/QGCColoredImage.qml index 72e4ee77580ddd6aab3504edf31e2b5e4e179b44..716ccf7181301d0981327ae3002b9cd8b38a4fc3 100644 --- a/src/QmlControls/QGCColoredImage.qml +++ b/src/QmlControls/QGCColoredImage.qml @@ -1,4 +1,4 @@ -import QtQuick 2.2 +import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 import QtGraphicalEffects 1.0 @@ -17,24 +17,27 @@ Item { property alias paintedWidth: image.paintedWidth property alias progress: image.progress property alias smooth: image.smooth + property alias mipmap: image.mipmap property alias source: image.source property alias sourceSize: image.sourceSize property alias status: image.status property alias verticalAlignment: image.verticalAlignment - width: image.width + width: image.width height: image.height Image { - id: image - smooth: true - visible: false - anchors.fill: parent + id: image + smooth: true + mipmap: true + antialiasing: true + visible: false + anchors.fill: parent } ColorOverlay { - anchors.fill: image - source: image - color: parent.color + anchors.fill: image + source: image + color: parent.color } -} \ No newline at end of file +} diff --git a/src/QmlControls/QGCComboBox.qml b/src/QmlControls/QGCComboBox.qml index a8f3555c3545579d00078a8da14b7351380ab58a..efdc83cc140b0e04f52c841fee9e5858606fd599 100644 --- a/src/QmlControls/QGCComboBox.qml +++ b/src/QmlControls/QGCComboBox.qml @@ -4,13 +4,14 @@ import QtQuick.Controls.Styles 1.2 import QtQuick.Controls.Private 1.0 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 ComboBox { property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } - property bool __showHighlight: pressed | hovered style: ComboBoxStyle { + font.pointSize: ScreenTools.defaultFontPointSize textColor: __showHighlight ? control.__qgcPal.buttonHighlightText : control.__qgcPal.buttonText diff --git a/src/QmlControls/QGCLabel.qml b/src/QmlControls/QGCLabel.qml index 2afa5cda90cc9e8d88f4287a46ba11252ad09d30..ab9261d8716a51cceec324381992a1a104df003d 100644 --- a/src/QmlControls/QGCLabel.qml +++ b/src/QmlControls/QGCLabel.qml @@ -3,10 +3,14 @@ import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 Text { - property var __palette: QGCPalette { colorGroupEnabled: enabled } + QGCPalette { id: __qgcPal; colorGroupEnabled: enabled } + property bool enabled: true - color: __palette.text + font.pointSize: ScreenTools.defaultFontPointSize + color: __qgcPal.text + antialiasing: true } diff --git a/src/QmlControls/QGCMovableItem.qml b/src/QmlControls/QGCMovableItem.qml new file mode 100644 index 0000000000000000000000000000000000000000..b16f20c7ca281510ed10a543a38d1b7c93e0364a --- /dev/null +++ b/src/QmlControls/QGCMovableItem.qml @@ -0,0 +1,64 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QGroundControl.ScreenTools 1.0 + +// This item can be dragged around within its parent. +// Double click issues a signal the parent can use to +// reset its default position. + +Item { + id: root + property bool allowDragging: true + property real minimumWidth: ScreenTools.pixelSizeFactor * (60) + property real minimumHeight: ScreenTools.pixelSizeFactor * (60) + property alias tForm: tform + signal resetRequested() + transform: Scale { + id: tform + } + MouseArea { + property double factor: 25 + enabled: root.allowDragging + cursorShape: Qt.OpenHandCursor + anchors.fill: parent + drag.target: parent + drag.axis: Drag.XAndYAxis + drag.minimumX: 0 + drag.minimumY: 0 + drag.maximumX: root.parent.width - (root.width * tform.xScale) + drag.maximumY: root.parent.height - (root.height * tform.yScale) + drag.filterChildren: true + onPressed: { + root.anchors.left = undefined + root.anchors.right = undefined + } + onDoubleClicked: { + root.resetRequested(); + } + onWheel: + { + var zoomFactor = 1; + if(wheel.angleDelta.y > 0) + zoomFactor = 1 + (1/factor) + else + zoomFactor = 1 - (1/factor) + var realX = wheel.x * tform.xScale + var realY = wheel.y * tform.yScale + var tx = root.x + (1-zoomFactor)*realX + var ty = root.y + (1-zoomFactor)*realY + if(tx < 0) tx = 0 + if(ty < 0) ty = 0 + var ts = tform.xScale * zoomFactor + if(root.width * ts >= root.minimumWidth) { + if(root.height * ts >= root.minimumHeight) { + if(((root.width * ts) + tx) < root.parent.width && ((root.height * ts) + ty) < root.parent.height) { + root.x = tx + root.y = ty + tform.xScale = ts + tform.yScale = ts + } + } + } + } + } +} diff --git a/src/QmlControls/QGCRadioButton.qml b/src/QmlControls/QGCRadioButton.qml index f1f9b8656f2c4dcfa286f743829f7e848924b83a..3f2bad99a58e4e2c81e2acaaabacdc6eaea99019 100644 --- a/src/QmlControls/QGCRadioButton.qml +++ b/src/QmlControls/QGCRadioButton.qml @@ -3,6 +3,7 @@ import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 RadioButton { property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } @@ -25,9 +26,13 @@ RadioButton { opacity: 0.6 } Text { - id: text - text: control.text + id: text + text: control.text + font.pointSize: ScreenTools.defaultFontPointSize + antialiasing: true + anchors.centerIn: parent + color: control.__qgcPal.text } } diff --git a/src/QmlControls/QGCTextField.qml b/src/QmlControls/QGCTextField.qml index 0b5dec2fcf13e069fb61ac61f9fb94c965ccdbd6..96a6caa95212064859d6fdd4b20f25563222c3ec 100644 --- a/src/QmlControls/QGCTextField.qml +++ b/src/QmlControls/QGCTextField.qml @@ -3,6 +3,7 @@ import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 TextField { property bool showUnits: false @@ -17,6 +18,7 @@ TextField { text: unitsLabel width: contentWidth + ((parent.__contentHeight/3)*2) visible: false + antialiasing: true } style: TextFieldStyle { @@ -31,7 +33,6 @@ TextField { Rectangle { anchors.fill: parent - border.color: control.activeFocus ? "#47b" : "#999" color: __qgcPal.textField } @@ -49,6 +50,9 @@ TextField { width: unitsLabelWidthGenerator.width text: control.unitsLabel + font.pointSize: ScreenTools.defaultFontPointSize + antialiasing: true + color: control.textColor visible: control.showUnits } diff --git a/src/QmlControls/QGCToolBarButton.qml b/src/QmlControls/QGCToolBarButton.qml index 0bfa181400d566c7d8115951b9773bd49b698e02..c14b4f42827b1e6ad591b834a57595e5c1d94e18 100644 --- a/src/QmlControls/QGCToolBarButton.qml +++ b/src/QmlControls/QGCToolBarButton.qml @@ -13,7 +13,7 @@ QGCButton { property bool showHighlight: __showHighlight style: ButtonStyle { background: Item { - anchors.margins: 3 + anchors.margins: height * 0.1 // 3 Canvas { id: chevron anchors.fill: parent @@ -34,14 +34,17 @@ QGCButton { onPaint: { var vMiddle = height / 2; var context = getContext("2d"); + var w12 = button.height * 0.4 // 12 + var w3 = button.height * 0.1 // 3 + var w15 = w12 + w3 context.reset(); context.beginPath(); - context.lineWidth = 6; + context.lineWidth = button.height * 0.2; // 6 context.beginPath(); context.moveTo(0, 0); - context.lineTo(width - 12 - 3, 0); - context.lineTo(width - 3, vMiddle); - context.lineTo(width - 12 - 3, height); + context.lineTo(width - w15, 0); + context.lineTo(width - w3, vMiddle); + context.lineTo(width - w15, height); context.lineTo(0, height); context.closePath(); context.strokeStyle = __qgcPal.windowShade @@ -51,10 +54,10 @@ QGCButton { } } } - label: Label { + label: QGCLabel { text: button.text horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter + verticalAlignment: Text.AlignVCenter color: showHighlight ? __qgcPal.buttonHighlightText : (button.checked ? __qgcPal.primaryButtonText : __qgcPal.buttonText) } } diff --git a/src/QmlControls/ScreenTools.cc b/src/QmlControls/ScreenTools.cc new file mode 100644 index 0000000000000000000000000000000000000000..000afe0a17b8c8f0975f8439a674cfbd54bf6d5b --- /dev/null +++ b/src/QmlControls/ScreenTools.cc @@ -0,0 +1,111 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Gus Grubba + +#include "ScreenTools.h" +#include "MainWindow.h" + +#include +#include + +const double ScreenTools::_defaultFontPointSize = 12; + +ScreenTools::ScreenTools() +{ + connect(MainWindow::instance(), &MainWindow::repaintCanvas, this, &ScreenTools::_updateCanvas); + connect(MainWindow::instance(), &MainWindow::pixelSizeChanged, this, &ScreenTools::_updatePixelSize); + connect(MainWindow::instance(), &MainWindow::fontSizeChanged, this, &ScreenTools::_updateFontSize); +} + +qreal ScreenTools::adjustFontPointSize(qreal pointSize) +{ + return adjustFontPointSize_s(pointSize); +} + +qreal ScreenTools::adjustFontPointSize_s(qreal pointSize) +{ + return pointSize * MainWindow::fontPointFactor(); +} + +qreal ScreenTools::adjustPixelSize(qreal pixelSize) +{ + return adjustPixelSize_s(pixelSize); +} + +qreal ScreenTools::adjustPixelSize_s(qreal pixelSize) +{ + return pixelSize * MainWindow::pixelSizeFactor(); +} + +void ScreenTools::increasePixelSize() +{ + MainWindow::instance()->setPixelSizeFactor(MainWindow::pixelSizeFactor() + 0.025); +} + +void ScreenTools::decreasePixelSize() +{ + MainWindow::instance()->setPixelSizeFactor(MainWindow::pixelSizeFactor() - 0.025); +} + +void ScreenTools::increaseFontSize() +{ + MainWindow::instance()->setFontSizeFactor(MainWindow::fontPointFactor() + 0.025); +} + +void ScreenTools::decreaseFontSize() +{ + MainWindow::instance()->setFontSizeFactor(MainWindow::fontPointFactor() - 0.025); +} + +void ScreenTools::_updateCanvas() +{ + emit repaintRequestedChanged(); +} + +void ScreenTools::_updatePixelSize() +{ + emit pixelSizeFactorChanged(); +} + +void ScreenTools::_updateFontSize() +{ + emit fontPointFactorChanged(); + emit defaultFontPointSizeChanged(); +} + +double ScreenTools::fontPointFactor() +{ + return MainWindow::fontPointFactor(); +} + +double ScreenTools::pixelSizeFactor() +{ + return MainWindow::pixelSizeFactor(); +} + +double ScreenTools::defaultFontPointSize(void) +{ + return _defaultFontPointSize * MainWindow::fontPointFactor(); +} diff --git a/src/QmlControls/ScreenTools.h b/src/QmlControls/ScreenTools.h new file mode 100644 index 0000000000000000000000000000000000000000..e3908e478f399493b3b4cf1a9dfd2fd622455168 --- /dev/null +++ b/src/QmlControls/ScreenTools.h @@ -0,0 +1,129 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009, 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +/// @file +/// @author Gus Grubba + +#ifndef SCREENTOOLS_H +#define SCREENTOOLS_H + +#include +#include + +/*! + @brief Screen helper tools for QML widgets + To use its functions, you need to import the module with the following line: + @code + import QGroundControl.ScreenTools 1.0 + @endcode +*/ + +/// This Qml control is used to return screen parameters +class ScreenTools : public QObject +{ + Q_OBJECT +public: + ScreenTools(); + + //! Returns the global mouse X position + Q_PROPERTY(int mouseX READ mouseX) + //! Returns the global mouse Y position + Q_PROPERTY(int mouseY READ mouseY) + //! Used to trigger a \c Canvas element repaint. + /*! + There is a bug as of Qt 5.4 where a Canvas element defined within a QQuickWidget does not receive + repaint events. QGC's main window will emit these signals when a \c Canvas element needs to be + repainted. + If you use a \c Canvas element inside some QML widget, you can use this code to handle repaint: + @code + import QGroundControl.ScreenTools 1.0 + ... + Canvas { + id: myCanvas + height: 40 + width: 40 + Connections { + target: ScreenTools + onRepaintRequestedChanged: { + myCanvas.requestPaint(); + } + } + onPaint: { + var context = getContext("2d"); + ... + } + } + @endcode + */ + + Q_PROPERTY(bool repaintRequested READ repaintRequested NOTIFY repaintRequestedChanged) + //! Returns the font point size factor + Q_PROPERTY(double fontPointFactor READ fontPointFactor NOTIFY fontPointFactorChanged) + //! Returns the pixel size factor + Q_PROPERTY(double pixelSizeFactor READ pixelSizeFactor NOTIFY pixelSizeFactorChanged) + //! Returns the system wide default font point size (properly scaled) + Q_PROPERTY(double defaultFontPointSize READ defaultFontPointSize NOTIFY defaultFontPointSizeChanged) + + //! Utility for adjusting font point size. Not dynamic (no signals) + Q_INVOKABLE qreal adjustFontPointSize(qreal pointSize); + //! Utility for adjusting pixel size. Not dynamic (no signals) + Q_INVOKABLE qreal adjustPixelSize(qreal pixelSize); + + //! Utility for increasing pixel size. + Q_INVOKABLE void increasePixelSize(); + //! Utility for decreasing pixel size. + Q_INVOKABLE void decreasePixelSize(); + //! Utility for increasing font size. + Q_INVOKABLE void increaseFontSize(); + //! Utility for decreasing font size. + Q_INVOKABLE void decreaseFontSize(); + + /// Static version of adjustFontPointSize of use in C++ code + static qreal adjustFontPointSize_s(qreal pointSize); + /// Static version of adjustPixelSize of use in C++ code + static qreal adjustPixelSize_s(qreal pixelSize); + + int mouseX () { return QCursor::pos().x(); } + int mouseY () { return QCursor::pos().y(); } + bool repaintRequested () { return true; } + double fontPointFactor (); + double pixelSizeFactor (); + double defaultFontPointSize(void); + +signals: + void repaintRequestedChanged(); + void pixelSizeFactorChanged(); + void fontPointFactorChanged(); + void defaultFontPointSizeChanged(); + +private slots: + void _updateCanvas(); + void _updatePixelSize(); + void _updateFontSize(); + +private: + static const double _defaultFontPointSize; + +}; + +#endif diff --git a/src/QmlControls/SubMenuButton.qml b/src/QmlControls/SubMenuButton.qml index 5282d3d6a4fe3bdc6036fb440d871a6048804799..9c5ef6db44af94361eee0981a5dff7aee8722922 100644 --- a/src/QmlControls/SubMenuButton.qml +++ b/src/QmlControls/SubMenuButton.qml @@ -4,6 +4,7 @@ import QtQuick.Controls.Styles 1.2 import QtGraphicalEffects 1.0 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 Button { checkable: true @@ -39,7 +40,8 @@ Button { horizontalAlignment: TextEdit.AlignHCenter text: control.text - font.pixelSize: 12 + font.pointSize: ScreenTools.defaultFontPointSize + antialiasing: true color: __showHighlight ? __qgcPal.buttonHighlightText : __qgcPal.buttonText Rectangle { diff --git a/src/QmlControls/VehicleRotationCal.qml b/src/QmlControls/VehicleRotationCal.qml index b65a76256fd23db2768ff5d7072a6eb2a5450646..d1e2e3e06025cdbb905c6b8ef12cc6b5f1dd94de 100644 --- a/src/QmlControls/VehicleRotationCal.qml +++ b/src/QmlControls/VehicleRotationCal.qml @@ -1,28 +1,55 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 Rectangle { - property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } - // Indicates whether calibration is valid for this control property bool calValid: false // Indicates whether the control is currently being calibrated property bool calInProgress: false + // Text to show while calibration is in progress + property string calInProgressText: "Hold Still" + // Image source property var imageSource: "" + property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } + width: 200 height: 200 color: calInProgress ? "yellow" : (calValid ? "green" : "red") Rectangle { readonly property int inset: 5 - property string calText: calInProgress ? "Hold Still" : (calValid ? "Completed" : "Incomplete") + property string calText: calInProgress ? calInProgressText : (calValid ? "Completed" : "Incomplete") x: inset y: inset @@ -38,23 +65,23 @@ Rectangle { smooth: true } - Label { + QGCLabel { width: parent.width height: parent.height horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignBottom - font.pointSize: 25 + font.pointSize: ScreenTools.fontPointFactor * (25); font.bold: true color: "black" text: parent.calText } - Label { + QGCLabel { width: parent.width height: parent.height horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignBottom - font.pointSize: 25 + font.pointSize: ScreenTools.fontPointFactor * (25); color: calInProgress ? "yellow" : "white" text: parent.calText diff --git a/src/QmlControls/VehicleSummaryRow.qml b/src/QmlControls/VehicleSummaryRow.qml new file mode 100644 index 0000000000000000000000000000000000000000..cc2a035fb947c55fd4c912d3f7ba7d324d465c95 --- /dev/null +++ b/src/QmlControls/VehicleSummaryRow.qml @@ -0,0 +1,20 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 + +Row { + property string labelText: "Label" + property string valueText: "value" + + width: parent.width + + QGCLabel { + id: label + text: labelText + } + QGCLabel { + width: parent.width - label.contentWidth + text: valueText + horizontalAlignment: Text.AlignRight; + } +} diff --git a/src/QmlControls/qmldir b/src/QmlControls/qmldir index ea2f99def55251bce11451dc0d81001ed83a32c5..b62af1bcbd73ebb6588a628c0514fd3f90f65902 100644 --- a/src/QmlControls/qmldir +++ b/src/QmlControls/qmldir @@ -8,8 +8,12 @@ QGCTextField 1.0 QGCTextField.qml QGCComboBox 1.0 QGCComboBox.qml QGCColoredImage 1.0 QGCColoredImage.qml QGCToolBarButton 1.0 QGCToolBarButton.qml +QGCMovableItem 1.0 QGCMovableItem.qml SubMenuButton 1.0 SubMenuButton.qml IndicatorButton 1.0 IndicatorButton.qml VehicleRotationCal 1.0 VehicleRotationCal.qml +VehicleSummaryRow 1.0 VehicleSummaryRow.qml +ParameterEditor 1.0 ParameterEditor.qml +ViewWidget 1.0 ViewWidget.qml diff --git a/src/QtLocationPlugin/OpenPilotMaps.cc b/src/QtLocationPlugin/OpenPilotMaps.cc new file mode 100644 index 0000000000000000000000000000000000000000..c3a46959e81c8b2dab7eeb9adf94262d51048366 --- /dev/null +++ b/src/QtLocationPlugin/OpenPilotMaps.cc @@ -0,0 +1,503 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Open Pilot Mapping Tools + * @author Gus Grubba + * Original work: The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012. + */ + +#include +#include +#include +#include + +#include "OpenPilotMaps.h" + +namespace OpenPilot { + +const QString ProviderStrings::kLevelsForSigPacSpainMap[] = + { "0", "1", "2", "3", "4", + "MTNSIGPAC", + "MTN2000", "MTN2000", "MTN2000", "MTN2000", "MTN2000", + "MTN200", "MTN200", "MTN200", + "MTN25", "MTN25", + "ORTOFOTOS", "ORTOFOTOS", "ORTOFOTOS", "ORTOFOTOS" }; + +ProviderStrings::ProviderStrings() +{ + // Google version strings + VersionGoogleMap = "m@296306248"; + VersionGoogleSatellite = "s@168"; + VersionGoogleLabels = "h@296000000"; + VersionGoogleTerrain = "t@132,r@296000000"; + SecGoogleWord = "Galileo"; + + // Google (China) version strings + VersionGoogleMapChina = "m@132"; + VersionGoogleSatelliteChina = "s@71"; + VersionGoogleLabelsChina = "h@132"; + VersionGoogleTerrainChina = "t@125,r@132"; + + // Google (Korea) version strings + VersionGoogleMapKorea = "kr1.12"; + VersionGoogleSatelliteKorea = "66"; + VersionGoogleLabelsKorea = "kr1t.12"; + + /// + /// Google Maps API generated using http://greatmaps.codeplex.com/ + /// from http://code.google.com/intl/en-us/apis/maps/signup.html + /// + GoogleMapsAPIKey = "ABQIAAAAWaQgWiEBF3lW97ifKnAczhRAzBk5Igf8Z5n2W3hNnMT0j2TikxTLtVIGU7hCLLHMAuAMt-BO5UrEWA"; + + // Yahoo version strings + VersionYahooMap = "4.3"; + VersionYahooSatellite = "1.9"; + VersionYahooLabels = "4.3"; + + // BingMaps + VersionBingMaps = "563"; + + // YandexMap + VersionYandexMap = "2.16.0"; + + /// + /// Bing Maps Customer Identification, more info here + /// http://msdn.microsoft.com/en-us/library/bb924353.aspx + /// + BingMapsClientToken = ""; +} + +UrlFactory::UrlFactory(QNetworkAccessManager *network) + : _timeout(5 * 1000) + , _googleVersionRetrieved(false) + , _network(network) + , _googleReply(NULL) +{ +} + +UrlFactory::~UrlFactory() +{ + if(_googleReply) + _googleReply->deleteLater(); +} + +QString UrlFactory::_tileXYToQuadKey(const int& tileX, const int& tileY, const int& levelOfDetail) const +{ + QString quadKey; + for (int i = levelOfDetail; i > 0; i--) { + char digit = '0'; + int mask = 1 << (i - 1); + if ((tileX & mask) != 0) { + digit++; + } + if ((tileY & mask) != 0) { + digit++; + digit++; + } + quadKey.append(digit); + } + return quadKey; +} + +int UrlFactory::_getServerNum(const QPoint &pos, const int &max) const +{ + return (pos.x() + 2 * pos.y()) % max; +} + +void UrlFactory::_networkReplyError(QNetworkReply::NetworkError error) +{ + qWarning() << "Could not connect to google maps. Error:" << error; + if(_googleReply) + { + _googleReply->deleteLater(); + _googleReply = NULL; + } +} + +void UrlFactory::_replyDestroyed() +{ + _googleReply = NULL; +} + +void UrlFactory::_googleVersionCompleted() +{ + if (!_googleReply || (_googleReply->error() != QNetworkReply::NoError)) { + qDebug() << "Error collecting Google maps version info"; + return; + } + QString html = QString(_googleReply->readAll()); + QRegExp reg("\"*http://mts0.google.com/vt/lyrs=m@(\\d*)", Qt::CaseInsensitive); + if (reg.indexIn(html) != -1) { + QStringList gc = reg.capturedTexts(); + VersionGoogleMap = QString("m@%1").arg(gc[1]); + VersionGoogleMapChina = VersionGoogleMap; + VersionGoogleMapKorea = VersionGoogleMap; + } + reg = QRegExp("\"*http://mts0.google.com/vt/lyrs=h@(\\d*)", Qt::CaseInsensitive); + if (reg.indexIn(html) != -1) { + QStringList gc = reg.capturedTexts(); + VersionGoogleLabels = QString("h@%1").arg(gc[1]); + VersionGoogleLabelsChina = VersionGoogleLabels; + VersionGoogleLabelsKorea = VersionGoogleLabels; + } + reg = QRegExp("\"*http://khms0.google.com/kh/v=(\\d*)", Qt::CaseInsensitive); + if (reg.indexIn(html) != -1) { + QStringList gc = reg.capturedTexts(); + VersionGoogleSatellite = "s@" + gc[1]; + VersionGoogleSatelliteKorea = VersionGoogleSatellite; + VersionGoogleSatelliteChina = VersionGoogleSatellite; + } + reg = QRegExp("\"*http://mts0.google.com/vt/lyrs=t@(\\d*),r@(\\d*)", Qt::CaseInsensitive); + if (reg.indexIn(html) != -1) { + QStringList gc = reg.capturedTexts(); + VersionGoogleTerrain = QString("t@%1,r@%2").arg(gc[1]).arg(gc[2]); + VersionGoogleTerrainChina = VersionGoogleTerrain; + VersionGoogleTerrainChina = VersionGoogleTerrain; + } + _googleReply->deleteLater(); + _googleReply = NULL; +} + +void UrlFactory::_tryCorrectGoogleVersions() +{ + QMutexLocker locker(&_googleVersionMutex); + if (_googleVersionRetrieved) { + return; + } + _googleVersionRetrieved = true; + if(_network) + { + QNetworkRequest qheader; + QNetworkProxy proxy = _network->proxy(); + QNetworkProxy tProxy; + tProxy.setType(QNetworkProxy::NoProxy); + _network->setProxy(tProxy); + QString url = "http://maps.google.com/maps?output=classic"; + qheader.setUrl(QUrl(url)); + QByteArray userAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7"; + qheader.setRawHeader("User-Agent", userAgent); + _googleReply = _network->get(qheader); + connect(_googleReply, SIGNAL(finished()), this, SLOT(_googleVersionCompleted())); + connect(_googleReply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(_networkReplyError(QNetworkReply::NetworkError))); + connect(_googleReply, SIGNAL(destroyed()), this, SLOT(_replyDestroyed())); + _network->setProxy(proxy); + } +} + +QString UrlFactory::makeImageUrl(const MapType &type, const QPoint& pos, const int &zoom, const QString &language) +{ + switch (type) { + case GoogleMap: + { + // http://mt1.google.com/vt/lyrs=m + QString server = "mt"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + return QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10&scale=2").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleMap).arg(language).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleSatellite: + { + // http://mt1.google.com/vt/lyrs=s + QString server = "mt"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + return QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10&scale=2").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleSatellite).arg(language).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleLabels: + { + QString server = "mts"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + return QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleLabels).arg(language).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleTerrain: + { + QString server = "mts"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + return QString("http://%1%2.google.com/%3/v=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10&scale=2").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleTerrain).arg(language).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleMapChina: + { + QString server = "mt"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://mt0.google.cn/vt/v=w2.101&hl=zh-CN&gl=cn&x=12&y=6&z=4&s=Ga + return QString("http://%1%2.google.cn/%3/lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleMapChina).arg("zh-CN").arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleSatelliteChina: + { + QString server = "mt"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://khm0.google.cn/kh/v=46&x=12&y=6&z=4&s=Ga + return QString("http://%1%2.google.cn/%3/lyrs=%4&gl=cn&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleSatelliteChina).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleLabelsChina: + { + QString server = "mt"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://mt0.google.cn/vt/v=w2t.110&hl=zh-CN&gl=cn&x=12&y=6&z=4&s=Ga + return QString("http://%1%2.google.cn/%3/imgtp=png32&lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsChina).arg("zh-CN").arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleTerrainChina: + { + QString server = "mt"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://mt0.google.cn/vt/v=w2p.110&hl=zh-CN&gl=cn&x=12&y=6&z=4&s=Ga + return QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleTerrainChina).arg("zh-CN").arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleMapKorea: + { + QString server = "mts"; + QString request = "vt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://mts0.google.com/vt/lyrs=m@224000000&hl=ko&gl=KR&src=app&x=107&y=50&z=7&s=Gal + // http://mts0.google.com/mt/v=kr1.11&hl=ko&x=109&y=49&z=7&s= + QString ret = QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleMapKorea).arg(language).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + return ret; + } + break; + case GoogleSatelliteKorea: + { + QString server = "khms"; + QString request = "kh"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://khm1.google.co.kr/kh/v=54&x=109&y=49&z=7&s= + return QString("http://%1%2.google.co.kr/%3/v=%4&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleSatelliteKorea).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case GoogleLabelsKorea: + { + QString server = "mts"; + QString request = "mt"; + QString sec1 = ""; // after &x=... + QString sec2 = ""; // after &zoom=... + _getSecGoogleWords(pos, sec1, sec2); + _tryCorrectGoogleVersions(); + // http://mts1.gmaptiles.co.kr/mt/v=kr1t.11&hl=lt&x=109&y=50&z=7&s=G + return QString("http://%1%2.gmaptiles.co.kr/%3/v=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(_getServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsKorea).arg(language).arg(pos.x()).arg(sec1).arg(pos.y()).arg(zoom).arg(sec2); + } + break; + case YahooMap: + { + return QString("http://maps%1.yimg.com/hx/tl?v=%2&.intl=%3&x=%4&y=%5&z=%6&r=1").arg(((_getServerNum(pos, 2)) + 1)).arg(VersionYahooMap).arg(language).arg(pos.x()).arg((((1 << zoom) >> 1) - 1 - pos.y())).arg((zoom + 1)); + } + case YahooSatellite: + { + return QString("http://maps%1.yimg.com/ae/ximg?v=%2&t=a&s=256&.intl=%3&x=%4&y=%5&z=%6&r=1").arg("3").arg(VersionYahooSatellite).arg(language).arg(pos.x()).arg(((1 << zoom) >> 1) - 1 - pos.y()).arg(zoom + 1); + } + break; + case YahooLabels: + { + return QString("http://maps%1.yimg.com/hx/tl?v=%2&t=h&.intl=%3&x=%4&y=%5&z=%6&r=1").arg("1").arg(VersionYahooLabels).arg(language).arg(pos.x()).arg(((1 << zoom) >> 1) - 1 - pos.y()).arg(zoom + 1); + } + break; + case OpenStreetMap: + { + char letter = "abc"[_getServerNum(pos, 3)]; + return QString("http://%1.tile.openstreetmap.org/%2/%3/%4.png").arg(letter).arg(zoom).arg(pos.x()).arg(pos.y()); + } + break; + case OpenStreetOsm: + { + char letter = "abc"[_getServerNum(pos, 3)]; + return QString("http://%1.tah.openstreetmap.org/Tiles/tile/%2/%3/%4.png").arg(letter).arg(zoom).arg(pos.x()).arg(pos.y()); + } + break; + case OpenStreetMapSurfer: + { + // http://tiles1.mapsurfer.net/tms_r.ashx?x=37378&y=20826&z=16 + return QString("http://tiles1.mapsurfer.net/tms_r.ashx?x=%1&y=%2&z=%3").arg(pos.x()).arg(pos.y()).arg(zoom); + } + break; + case OpenStreetMapSurferTerrain: + { + // http://tiles2.mapsurfer.net/tms_t.ashx?x=9346&y=5209&z=14 + return QString("http://tiles2.mapsurfer.net/tms_t.ashx?x=%1&y=%2&z=%3").arg(pos.x()).arg(pos.y()).arg(zoom); + } + break; + case BingMap: + { + QString key = _tileXYToQuadKey(pos.x(), pos.y(), zoom); + return QString("http://ecn.t%1.tiles.virtualearth.net/tiles/r%2.png?g=%3&mkt=%4%5").arg(_getServerNum(pos, 4)).arg(key).arg(VersionBingMaps).arg(language).arg(!(BingMapsClientToken.isNull() | BingMapsClientToken.isEmpty()) ? "&token=" + BingMapsClientToken : QString("")); + } + break; + case BingSatellite: + { + QString key = _tileXYToQuadKey(pos.x(), pos.y(), zoom); + return QString("http://ecn.t%1.tiles.virtualearth.net/tiles/a%2.jpeg?g=%3&mkt=%4%5").arg(_getServerNum(pos, 4)).arg(key).arg(VersionBingMaps).arg(language).arg(!(BingMapsClientToken.isNull() | BingMapsClientToken.isEmpty()) ? "&token=" + BingMapsClientToken : QString("")); + } + break; + case BingHybrid: + { + QString key = _tileXYToQuadKey(pos.x(), pos.y(), zoom); + return QString("http://ecn.t%1.tiles.virtualearth.net/tiles/h%2.jpeg?g=%3&mkt=%4%5").arg(_getServerNum(pos, 4)).arg(key).arg(VersionBingMaps).arg(language).arg(!(BingMapsClientToken.isNull() | BingMapsClientToken.isEmpty()) ? "&token=" + BingMapsClientToken : QString("")); + } + case ArcGIS_Map: + { + // http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer/tile/0/0/0.jpg + return QString("http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.y()).arg(pos.x()); + } + break; + case ArcGIS_Satellite: + { + // http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer/tile/1/0/1.jpg + return QString("http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_Imagery_World_2D/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.y()).arg(pos.x()); + } + break; + case ArcGIS_ShadedRelief: + { + // http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_ShadedRelief_World_2D/MapServer/tile/1/0/1.jpg + return QString("http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_ShadedRelief_World_2D/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.y()).arg(pos.x()); + } + break; + case ArcGIS_Terrain: + { + // http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer/tile/4/3/15 + return QString("http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.y()).arg(pos.x()); + } + break; + case ArcGIS_MapsLT_OrtoFoto: + { + // http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L02/R0000001b/C00000028.jpg + // http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto/MapServer/tile/0/9/13 + // return string.Format("http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L{0:00}/R{1:x8}/C{2:x8}.jpg", zoom, pos.y(), pos.x()); + // http://dc1.maps.lt/cache/mapslt_ortofoto_512/map/_alllayers/L03/R0000001c/C00000029.jpg + // return string.Format("http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto/MapServer/tile/{0}/{1}/{2}", zoom, pos.y(), pos.x()); + // http://dc1.maps.lt/cache/mapslt_ortofoto_512/map/_alllayers/L03/R0000001d/C0000002a.jpg + // TODO verificar + return QString("http://dc1.maps.lt/cache/mapslt_ortofoto/map/_alllayers/L%1/R%2/C%3.jpg").arg(zoom, 2, 10, (QChar)'0').arg(pos.y(), 8, 16, (QChar)'0').arg(pos.x(), 8, 16, (QChar)'0'); + } + break; + case ArcGIS_MapsLT_Map: + { + // http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L02/R0000001b/C00000028.jpg + // http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto/MapServer/tile/0/9/13 + // return string.Format("http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L{0:00}/R{1:x8}/C{2:x8}.jpg", zoom, pos.y(), pos.x()); + // http://arcgis.maps.lt/ArcGIS/rest/services/mapslt/MapServer/tile/7/1162/1684.png + // http://dc1.maps.lt/cache/mapslt_512/map/_alllayers/L03/R0000001b/C00000029.png + // TODO verificar + // http://dc1.maps.lt/cache/mapslt/map/_alllayers/L02/R0000001c/C00000029.png + return QString("http://dc1.maps.lt/cache/mapslt/map/_alllayers/L%1/R%2/C%3.png").arg(zoom, 2, 10, (QChar)'0').arg(pos.y(), 8, 16, (QChar)'0').arg(pos.x(), 8, 16, (QChar)'0'); + } + break; + case ArcGIS_MapsLT_Map_Labels: + { + // http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto_overlay/MapServer/tile/0/9/13 + // return string.Format("http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto_overlay/MapServer/tile/{0}/{1}/{2}", zoom, pos.y(), pos.x()); + // http://dc1.maps.lt/cache/mapslt_ortofoto_overlay_512/map/_alllayers/L03/R0000001d/C00000029.png + // TODO verificar + return QString("http://dc1.maps.lt/cache/mapslt_ortofoto_overlay/map/_alllayers/L%1/R%2/C%3.png").arg(zoom, 2, 10, (QChar)'0').arg(pos.y(), 8, 16, (QChar)'0').arg(pos.x(), 8, 16, (QChar)'0'); + } + break; + case PergoTurkeyMap: + { + // http://{domain}/{layerName}/{zoomLevel}/{first3LetterOfTileX}/{second3LetterOfTileX}/{third3LetterOfTileX}/{first3LetterOfTileY}/{second3LetterOfTileY}/{third3LetterOfTileXY}.png + // http://map3.pergo.com.tr/tile/00/000/000/001/000/000/000.png + // That means: Zoom Level: 0 TileX: 1 TileY: 0 + // http://domain/tile/14/000/019/371/000/011/825.png + // That means: Zoom Level: 14 TileX: 19371 TileY:11825 + // string x = pos.x().ToString("000000000").Insert(3, "/").Insert(7, "/"); // - 000/000/001 + // string y = pos.y().ToString("000000000").Insert(3, "/").Insert(7, "/"); // - 000/000/000 + QString x = QString("%1").arg(QString::number(pos.x()), 9, (QChar)'0'); + x.insert(3, "/").insert(7, "/"); + QString y = QString("%1").arg(QString::number(pos.y()), 9, (QChar)'0'); + y.insert(3, "/").insert(7, "/"); + // "http://map03.pergo.com.tr/tile/2/000/000/003/000/000/002.png" + return QString("http://map%1.pergo.com.tr/tile/%2/%3/%4.png").arg(_getServerNum(pos, 4)).arg(zoom, 2, 10, (QChar)'0').arg(x).arg(y); + } + break; + case SigPacSpainMap: + { + return QString("http://sigpac.mapa.es/kmlserver/raster/%1@3785/%2.%3.%4.img").arg(kLevelsForSigPacSpainMap[zoom]).arg(zoom).arg(pos.x()).arg((2 << (zoom - 1)) - pos.y() - 1); + } + break; + case YandexMapRu: + { + QString server = "vec"; + // http://vec01.maps.yandex.ru/tiles?l=map&v=2.10.2&x=1494&y=650&z=11 + return QString("http://%1").arg(server) + QString("0%2.maps.yandex.ru/tiles?l=map&v=%3&x=%4&y=%5&z=%6").arg(_getServerNum(pos, 4) + 1).arg(VersionYandexMap).arg(pos.x()).arg(pos.y()).arg(zoom); + } + break; + default: + qWarning("Unknown map id %d\n", type); + break; + } + return QString::null; +} + +void UrlFactory::_getSecGoogleWords(const QPoint &pos, QString &sec1, QString &sec2) +{ + sec1 = ""; // after &x=... + sec2 = ""; // after &zoom=... + int seclen = ((pos.x() * 3) + pos.y()) % 8; + sec2 = SecGoogleWord.left(seclen); + if (pos.y() >= 10000 && pos.y() < 100000) { + sec1 = "&s="; + } +} + +} diff --git a/src/QtLocationPlugin/OpenPilotMaps.h b/src/QtLocationPlugin/OpenPilotMaps.h new file mode 100644 index 0000000000000000000000000000000000000000..a8fc609ded8214c5c5fc3b0acda5bb61fab851bf --- /dev/null +++ b/src/QtLocationPlugin/OpenPilotMaps.h @@ -0,0 +1,164 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Open Pilot Mapping Tools + * @author Gus Grubba + * Original work: The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012. + */ + +#ifndef OPENPILOTTOOLS_H +#define OPENPILOTTOOLS_H + +#include +#include +#include +#include +#include +#include + +#define MAX_MAP_ZOOM (20.0) + +namespace OpenPilot { + +enum MapType +{ + GoogleMap = 1, + GoogleSatellite = 4, + GoogleLabels = 8, + GoogleTerrain = 16, + GoogleHybrid = 20, + + GoogleMapChina = 22, + GoogleSatelliteChina = 24, + GoogleLabelsChina = 26, + GoogleTerrainChina = 28, + GoogleHybridChina = 29, + + OpenStreetMap = 32, + OpenStreetOsm = 33, + OpenStreetMapSurfer = 34, + OpenStreetMapSurferTerrain=35, + + YahooMap = 64, + YahooSatellite = 128, + YahooLabels = 256, + YahooHybrid = 333, + + BingMap = 444, + BingSatellite = 555, + BingHybrid = 666, + + ArcGIS_Map = 777, + ArcGIS_Satellite = 788, + ArcGIS_ShadedRelief = 799, + ArcGIS_Terrain = 811, + + ArcGIS_MapsLT_Map = 1000, + ArcGIS_MapsLT_OrtoFoto = 1001, + ArcGIS_MapsLT_Map_Labels= 1002, + ArcGIS_MapsLT_Map_Hybrid= 1003, + + PergoTurkeyMap = 2001, + SigPacSpainMap = 3001, + + GoogleMapKorea = 4001, + GoogleSatelliteKorea = 4002, + GoogleLabelsKorea = 4003, + GoogleHybridKorea = 4005, + + YandexMapRu = 5000 +}; + +class ProviderStrings : public QObject { + Q_OBJECT +public: + ProviderStrings(); + static const QString kLevelsForSigPacSpainMap[]; + QString GoogleMapsAPIKey; + // Google version strings + QString VersionGoogleMap; + QString VersionGoogleSatellite; + QString VersionGoogleLabels; + QString VersionGoogleTerrain; + QString SecGoogleWord; + // Google (China) version strings + QString VersionGoogleMapChina; + QString VersionGoogleSatelliteChina; + QString VersionGoogleLabelsChina; + QString VersionGoogleTerrainChina; + // Google (Korea) version strings + QString VersionGoogleMapKorea; + QString VersionGoogleSatelliteKorea; + QString VersionGoogleLabelsKorea; + /// + /// Google Maps API generated using http://greatmaps.codeplex.com/ + /// from http://code.google.com/intl/en-us/apis/maps/signup.html + /// + // Yahoo version strings + QString VersionYahooMap; + QString VersionYahooSatellite; + QString VersionYahooLabels; + // BingMaps + QString VersionBingMaps; + // YandexMap + QString VersionYandexMap; + /// + /// Bing Maps Customer Identification, more info here + /// http://msdn.microsoft.com/en-us/library/bb924353.aspx + /// + QString BingMapsClientToken; +}; + +class UrlFactory : public ProviderStrings { + Q_OBJECT +public: + + UrlFactory(QNetworkAccessManager* network); + ~UrlFactory(); + + QString makeImageUrl (const MapType &type, const QPoint &pos, const int &zoom, const QString &language); + +private slots: + void _networkReplyError (QNetworkReply::NetworkError error); + void _googleVersionCompleted (); + void _replyDestroyed (); + +private: + void _getSecGoogleWords (const QPoint &pos, QString &sec1, QString &sec2); + int _getServerNum (const QPoint& pos, const int &max) const; + void _tryCorrectGoogleVersions (); + QString _tileXYToQuadKey (const int &tileX, const int &tileY, const int &levelOfDetail) const; + + int _timeout; + bool _googleVersionRetrieved; + QNetworkAccessManager* _network; + QNetworkReply* _googleReply; + QMutex _googleVersionMutex; + QByteArray _userAgent; +}; + +} + +#endif // FOO_H diff --git a/src/QtLocationPlugin/qgc_maps_plugin.json b/src/QtLocationPlugin/qgc_maps_plugin.json new file mode 100644 index 0000000000000000000000000000000000000000..dd52d9feede3a77ff58625511e7f901758338153 --- /dev/null +++ b/src/QtLocationPlugin/qgc_maps_plugin.json @@ -0,0 +1,11 @@ +{ + "Keys": ["qgc-maps"], + "Provider": "QGroundControl", + "Version": 101, + "Experimental": false, + "Features": [ + "OnlineMappingFeature", + "OnlineGeocodingFeature", + "ReverseGeocodingFeature" + ] +} diff --git a/src/QtLocationPlugin/qgeocodereplyqgc.cpp b/src/QtLocationPlugin/qgeocodereplyqgc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..3c0348faa0cf9b8f8b7b272292af366e0d274d83 --- /dev/null +++ b/src/QtLocationPlugin/qgeocodereplyqgc.cpp @@ -0,0 +1,296 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include + +#include "qgeocodereplyqgc.h" + +enum QGeoCodeTypeGoogle { + GeoCodeTypeUnknown, + StreetAddress, // indicates a precise street address. + Route, // indicates a named route (such as "US 101"). + Intersection, // indicates a major intersection, usually of two major roads. + Political, // indicates a political entity. Usually, this type indicates a polygon of some civil administration. + Country, // indicates the national political entity, and is typically the highest order type returned by the Geocoder. + AdministrativeAreaLevel1, // indicates a first-order civil entity below the country level. Within the United States, these administrative levels are states. + AdministrativeAreaLevel2, // indicates a second-order civil entity below the country level. Within the United States, these administrative levels are counties. + AdministrativeAreaLevel3, // indicates a third-order civil entity below the country level. This type indicates a minor civil division. + ColloquialArea, // indicates a commonly-used alternative name for the entity. + Locality, // indicates an incorporated city or town political entity. + Sublocality, // indicates a first-order civil entity below a locality. For some locations may receive one of the additional types: sublocality_level_1 through to sublocality_level_5. Each sublocality level is a civil entity. Larger numbers indicate a smaller geographic area. + SublocalityLevel1, + SublocalityLevel2, + SublocalityLevel3, + SublocalityLevel4, + SublocalityLevel5, + Neighborhood, // indicates a named neighborhood + Premise, // indicates a named location, usually a building or collection of buildings with a common name + Subpremise, // indicates a first-order entity below a named location, usually a singular building within a collection of buildings with a common name + PostalCode, // indicates a postal code as used to address postal mail within the country. + NaturalFeature, // indicates a prominent natural feature. + Airport, // indicates an airport. + Park, // indicates a named park. + PointOfInterest, // indicates a named point of interest. Typically, these "POI"s are prominent local entities that don't easily fit in another category such as "Empire State Building" or "Statue of Liberty." + Floor, // indicates the floor of a building address. + Establishment, // typically indicates a place that has not yet been categorized. + Parking, // indicates a parking lot or parking structure. + PostBox, // indicates a specific postal box. + PostalTown, // indicates a grouping of geographic areas, such as locality and sublocality, used for mailing addresses in some countries. + RoomIndicates, // the room of a building address. + StreetNumber, // indicates the precise street number. + BusStation, // indicate the location of a bus stop. + TrainStation, // indicate the location of a train stop. + TransitStation, // indicate the location of a public transit stop. +}; + +class JasonMonger { +public: + JasonMonger(); + QSet json2QGeoCodeTypeGoogle(const QJsonArray &types); +private: + int _getCode(const QString &key); + QMap _m; +}; + +JasonMonger::JasonMonger() +{ + _m[QStringLiteral("street_address")] = StreetAddress; + _m[QStringLiteral("route")] = Route; + _m[QStringLiteral("intersection")] = Intersection; + _m[QStringLiteral("political")] = Political; + _m[QStringLiteral("country")] = Country; + _m[QStringLiteral("administrative_area_level_1")] = AdministrativeAreaLevel1; + _m[QStringLiteral("administrative_area_level_2")] = AdministrativeAreaLevel2; + _m[QStringLiteral("administrative_area_level_3")] = AdministrativeAreaLevel3; + _m[QStringLiteral("colloquial_area")] = ColloquialArea; + _m[QStringLiteral("locality")] = Locality; + _m[QStringLiteral("sublocality")] = Sublocality; + _m[QStringLiteral("sublocality_level_1")] = SublocalityLevel1; + _m[QStringLiteral("sublocality_level_2")] = SublocalityLevel2; + _m[QStringLiteral("sublocality_level_3")] = SublocalityLevel3; + _m[QStringLiteral("sublocality_level_4")] = SublocalityLevel4; + _m[QStringLiteral("sublocality_level_5")] = SublocalityLevel5; + _m[QStringLiteral("neighborhood")] = Neighborhood; + _m[QStringLiteral("premise")] = Premise; + _m[QStringLiteral("subpremise")] = Subpremise; + _m[QStringLiteral("postal_code")] = PostalCode; + _m[QStringLiteral("natural_feature")] = NaturalFeature; + _m[QStringLiteral("airport")] = Airport; + _m[QStringLiteral("park")] = Park; + _m[QStringLiteral("point_of_interest")] = PointOfInterest; + _m[QStringLiteral("floor")] = Floor; + _m[QStringLiteral("establishment")] = Establishment; + _m[QStringLiteral("parking")] = Parking; + _m[QStringLiteral("post_box")] = PostBox; + _m[QStringLiteral("postal_town")] = PostalTown; + _m[QStringLiteral("room indicates")] = RoomIndicates; + _m[QStringLiteral("street_number")] = StreetNumber; + _m[QStringLiteral("bus_station")] = BusStation; + _m[QStringLiteral("train_station")] = TrainStation; + _m[QStringLiteral("transit_station")] = TransitStation; +} + +int JasonMonger::_getCode(const QString &key) { + return _m.value(key, GeoCodeTypeUnknown); +} + +QSet JasonMonger::json2QGeoCodeTypeGoogle(const QJsonArray &types) { + QSet result; + for (int i=0; ideleteLater(); +} + +void QGeoCodeReplyQGC::abort() +{ + if (!m_reply) + return; + + m_reply->abort(); + + m_reply->deleteLater(); + m_reply = 0; +} + +void QGeoCodeReplyQGC::networkReplyFinished() +{ + if (!m_reply) + return; + + if (m_reply->error() != QNetworkReply::NoError) + return; + + QJsonDocument document = QJsonDocument::fromJson(m_reply->readAll()); + QJsonObject object = document.object(); + + if (object.value(QStringLiteral("status")) != QStringLiteral("OK")) { + QString error = object.value(QStringLiteral("status")).toString(); + qWarning() << m_reply->url() << "returned" << error; + setError(QGeoCodeReply::CommunicationError, error); + m_reply->deleteLater(); + m_reply = 0; + return; + } + + QList locations; + QJsonArray results = object.value(QStringLiteral("results")).toArray(); + for (int i=0; i types = kMonger.json2QGeoCodeTypeGoogle(c[QStringLiteral("types")].toArray()); + QString long_name = c[QStringLiteral("long_name")].toString(); + QString short_name = c[QStringLiteral("short_name")].toString(); + if (types.contains(Country)) { + address.setCountry(long_name); + address.setCountryCode(short_name); + } else if (types.contains(AdministrativeAreaLevel1)) { + address.setState(long_name); + } else if (types.contains(AdministrativeAreaLevel2)) { + address.setCounty(long_name); + } else if (types.contains(Locality)) { + address.setCity(long_name); + } else if (types.contains(Sublocality)) { + address.setDistrict(long_name); + } else if (types.contains(PostalCode)) { + address.setPostalCode(long_name); + } else if (types.contains(StreetAddress) || types.contains(Route) || types.contains(Intersection)) { + address.setStreet(long_name); + } + } + } + + QGeoCoordinate coordinate; + QGeoRectangle boundingBox; + if (geocode.contains(QStringLiteral("geometry"))) { + QJsonObject geom = geocode.value(QStringLiteral("geometry")).toObject(); + if (geom.contains(QStringLiteral("location"))) { + QJsonObject location = geom.value(QStringLiteral("location")).toObject(); + coordinate.setLatitude(location.value(QStringLiteral("lat")).toDouble()); + coordinate.setLongitude(location.value(QStringLiteral("lng")).toDouble()); + } + if (geom.contains(QStringLiteral("bounds"))) { + QJsonObject bounds = geom.value(QStringLiteral("bounds")).toObject(); + QJsonObject northeast = bounds.value(QStringLiteral("northeast")).toObject(); + QJsonObject southwest = bounds.value(QStringLiteral("southwest")).toObject(); + QGeoCoordinate topRight(northeast.value(QStringLiteral("lat")).toDouble(), + northeast.value(QStringLiteral("lng")).toDouble()); + QGeoCoordinate bottomLeft(southwest.value(QStringLiteral("lat")).toDouble(), + southwest.value(QStringLiteral("lng")).toDouble()); + boundingBox.setTopRight(topRight); + boundingBox.setBottomLeft(bottomLeft); + } + } + + QGeoLocation location; + location.setAddress(address); + location.setCoordinate(coordinate); + location.setBoundingBox(boundingBox); + + locations << location; + } + + setLocations(locations); + setFinished(true); + + m_reply->deleteLater(); + m_reply = 0; +} + +void QGeoCodeReplyQGC::networkReplyError(QNetworkReply::NetworkError error) +{ + Q_UNUSED(error) + if (!m_reply) + return; + setError(QGeoCodeReply::CommunicationError, m_reply->errorString()); + m_reply->deleteLater(); + m_reply = 0; +} diff --git a/src/QtLocationPlugin/qgeocodereplyqgc.h b/src/QtLocationPlugin/qgeocodereplyqgc.h new file mode 100644 index 0000000000000000000000000000000000000000..b53b1726c85f6a04c15bb31fe56189ff8e3cf62f --- /dev/null +++ b/src/QtLocationPlugin/qgeocodereplyqgc.h @@ -0,0 +1,71 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#ifndef QGEOCODEREPLYGOOGLE_H +#define QGEOCODEREPLYGOOGLE_H + +#include +#include + +class QGeoCodeReplyQGC : public QGeoCodeReply +{ + Q_OBJECT + +public: + explicit QGeoCodeReplyQGC(QNetworkReply *reply, QObject *parent = 0); + ~QGeoCodeReplyQGC(); + + void abort(); + +private Q_SLOTS: + void networkReplyFinished(); + void networkReplyError(QNetworkReply::NetworkError error); + +private: + QNetworkReply *m_reply; +}; + +#endif // QGEOCODEREPLYGOOGLE_H diff --git a/src/QtLocationPlugin/qgeocodingmanagerengineqgc.cpp b/src/QtLocationPlugin/qgeocodingmanagerengineqgc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..59f7fdd43942d699648e33100467761f9a891e0c --- /dev/null +++ b/src/QtLocationPlugin/qgeocodingmanagerengineqgc.cpp @@ -0,0 +1,177 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "qgeocodingmanagerengineqgc.h" +#include "qgeocodereplyqgc.h" + +static QString addressToQuery(const QGeoAddress &address) +{ + return address.street() + QStringLiteral(", ") + + address.district() + QStringLiteral(", ") + + address.city() + QStringLiteral(", ") + + address.state() + QStringLiteral(", ") + + address.country(); +} + +static QString boundingBoxToLtrb(const QGeoRectangle &rect) +{ + return QString::number(rect.topLeft().longitude()) + QLatin1Char(',') + + QString::number(rect.topLeft().latitude()) + QLatin1Char(',') + + QString::number(rect.bottomRight().longitude()) + QLatin1Char(',') + + QString::number(rect.bottomRight().latitude()); +} + +QGeoCodingManagerEngineQGC::QGeoCodingManagerEngineQGC( + const QVariantMap ¶meters, + QGeoServiceProvider::Error *error, + QString *errorString) + : QGeoCodingManagerEngine(parameters), m_networkManager(new QNetworkAccessManager(this)) +{ + if (parameters.contains(QStringLiteral("useragent"))) + m_userAgent = parameters.value(QStringLiteral("useragent")).toString().toLatin1(); + else + m_userAgent = "Qt Location based application"; + *error = QGeoServiceProvider::NoError; + errorString->clear(); +} + +QGeoCodingManagerEngineQGC::~QGeoCodingManagerEngineQGC() +{ +} + +QGeoCodeReply *QGeoCodingManagerEngineQGC::geocode(const QGeoAddress &address, const QGeoShape &bounds) +{ + return geocode(addressToQuery(address), -1, -1, bounds); +} + +QGeoCodeReply *QGeoCodingManagerEngineQGC::geocode(const QString &address, int limit, int offset, const QGeoShape &bounds) +{ + Q_UNUSED(limit); + Q_UNUSED(offset); + + QNetworkRequest request; + request.setRawHeader("User-Agent", m_userAgent); + + QUrl url(QStringLiteral("http://maps.googleapis.com/maps/api/geocode/json")); + QUrlQuery query; + query.addQueryItem(QStringLiteral("sensor"), QStringLiteral("false")); + query.addQueryItem(QStringLiteral("language"), locale().name().left(2)); + query.addQueryItem(QStringLiteral("address"), address); + if (bounds.type() == QGeoShape::RectangleType) { + query.addQueryItem(QStringLiteral("bounds"), boundingBoxToLtrb(bounds)); + } + + url.setQuery(query); + request.setUrl(url); + qDebug() << url; + + QNetworkReply *reply = m_networkManager->get(request); + reply->setParent(0); + + QGeoCodeReplyQGC *geocodeReply = new QGeoCodeReplyQGC(reply); + + connect(geocodeReply, SIGNAL(finished()), this, SLOT(replyFinished())); + connect(geocodeReply, SIGNAL(error(QGeoCodeReply::Error,QString)), + this, SLOT(replyError(QGeoCodeReply::Error,QString))); + + return geocodeReply; +} + +QGeoCodeReply *QGeoCodingManagerEngineQGC::reverseGeocode(const QGeoCoordinate &coordinate, const QGeoShape &bounds) +{ + Q_UNUSED(bounds) + + QNetworkRequest request; + request.setRawHeader("User-Agent", m_userAgent); + + QUrl url(QStringLiteral("http://maps.googleapis.com/maps/api/geocode/json")); + QUrlQuery query; + query.addQueryItem(QStringLiteral("sensor"), QStringLiteral("false")); + query.addQueryItem(QStringLiteral("language"), locale().name().left(2)); + query.addQueryItem(QStringLiteral("latlng"), QStringLiteral("%1,%2") + .arg(coordinate.latitude()) + .arg(coordinate.longitude())); + + url.setQuery(query); + request.setUrl(url); + qDebug() << url; + + QNetworkReply *reply = m_networkManager->get(request); + reply->setParent(0); + + QGeoCodeReplyQGC *geocodeReply = new QGeoCodeReplyQGC(reply); + + connect(geocodeReply, SIGNAL(finished()), this, SLOT(replyFinished())); + connect(geocodeReply, SIGNAL(error(QGeoCodeReply::Error,QString)), + this, SLOT(replyError(QGeoCodeReply::Error,QString))); + + return geocodeReply; +} + +void QGeoCodingManagerEngineQGC::replyFinished() +{ + QGeoCodeReply *reply = qobject_cast(sender()); + if (reply) + emit finished(reply); +} + +void QGeoCodingManagerEngineQGC::replyError(QGeoCodeReply::Error errorCode, const QString &errorString) +{ + QGeoCodeReply *reply = qobject_cast(sender()); + if (reply) + emit error(reply, errorCode, errorString); +} diff --git a/src/QtLocationPlugin/qgeocodingmanagerengineqgc.h b/src/QtLocationPlugin/qgeocodingmanagerengineqgc.h new file mode 100644 index 0000000000000000000000000000000000000000..56040f4cdbf5eaf360573f10aed755c6cbe48023 --- /dev/null +++ b/src/QtLocationPlugin/qgeocodingmanagerengineqgc.h @@ -0,0 +1,81 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#ifndef QGEOCODINGMANAGERENGINEGOOGLE_H +#define QGEOCODINGMANAGERENGINEGOOGLE_H + +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class QNetworkAccessManager; + +class QGeoCodingManagerEngineQGC : public QGeoCodingManagerEngine +{ + Q_OBJECT + +public: + QGeoCodingManagerEngineQGC(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString); + ~QGeoCodingManagerEngineQGC(); + + QGeoCodeReply* geocode (const QGeoAddress &address, const QGeoShape &bounds) Q_DECL_OVERRIDE; + QGeoCodeReply* geocode (const QString &address, int limit, int offset, const QGeoShape &bounds) Q_DECL_OVERRIDE; + QGeoCodeReply* reverseGeocode (const QGeoCoordinate &coordinate, const QGeoShape &bounds) Q_DECL_OVERRIDE; + +private Q_SLOTS: + void replyFinished (); + void replyError (QGeoCodeReply::Error errorCode, const QString &errorString); + +private: + QNetworkAccessManager *m_networkManager; + QByteArray m_userAgent; +}; + +QT_END_NAMESPACE + +#endif // QGEOCODINGMANAGERENGINEGOOGLE_H diff --git a/src/QtLocationPlugin/qgeomapreplyqgc.cpp b/src/QtLocationPlugin/qgeomapreplyqgc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0801de86a172a7cfc59e392d003b54517d2e73e4 --- /dev/null +++ b/src/QtLocationPlugin/qgeomapreplyqgc.cpp @@ -0,0 +1,162 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#include + +#include "qgeomapreplyqgc.h" +#include "OpenPilotMaps.h" + +QGeoMapReplyQGC::QGeoMapReplyQGC(QNetworkReply *reply, const QGeoTileSpec &spec, QObject *parent) + : QGeoTiledMapReply(spec, parent) + , m_reply(reply) +{ + if(!reply) + { + setError(QGeoTiledMapReply::UnknownError, "Invalid tile request"); + setFinished(true); + } + else + { + connect(m_reply, SIGNAL(finished()), this, SLOT(networkReplyFinished())); + connect(m_reply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(networkReplyError(QNetworkReply::NetworkError))); + connect(m_reply, SIGNAL(destroyed()), this, SLOT(replyDestroyed())); + } +} + +QGeoMapReplyQGC::~QGeoMapReplyQGC() +{ + if (m_reply) { + m_reply->deleteLater(); + m_reply = 0; + } +} + +void QGeoMapReplyQGC::abort() +{ + if (!m_reply) + return; + m_reply->abort(); +} + +QNetworkReply *QGeoMapReplyQGC::networkReply() const +{ + return m_reply; +} + +void QGeoMapReplyQGC::replyDestroyed() +{ + m_reply = 0; +} + +void QGeoMapReplyQGC::networkReplyFinished() +{ + if (!m_reply) + { + qWarning() << "NULL Map request reply"; + return; + } + + if (m_reply->error() != QNetworkReply::NoError) + { + qWarning() << "Map request reply error:" << m_reply->error(); + return; + } + + QByteArray a = m_reply->readAll(); + setMapImageData(a); + + if(a.size() > 2) + { + if((char)a[0] == (char)0xff && (char)a[1] == (char)0xd8) + setMapImageFormat("jpg"); + else if((char)a[0] == (char)0x89 && (char)a[1] == (char)0x50) + setMapImageFormat("png"); + else + { + switch ((OpenPilot::MapType)tileSpec().mapId()) { + case OpenPilot::GoogleMap: + case OpenPilot::GoogleLabels: + case OpenPilot::GoogleTerrain: + case OpenPilot::GoogleHybrid: + case OpenPilot::BingMap: + case OpenPilot::OpenStreetMap: + setMapImageFormat("png"); + break; + case OpenPilot::GoogleSatellite: + case OpenPilot::BingSatellite: + case OpenPilot::BingHybrid: + setMapImageFormat("jpg"); + break; + default: + qWarning("Unknown map id %d", tileSpec().mapId()); + break; + } + } + } + + setFinished(true); + m_reply->deleteLater(); + m_reply = 0; +} + +void QGeoMapReplyQGC::networkReplyError(QNetworkReply::NetworkError error) +{ + if (!m_reply) + { + qWarning() << "NULL Map request error"; + return; + } + + if (error != QNetworkReply::OperationCanceledError) + { + setError(QGeoTiledMapReply::CommunicationError, m_reply->errorString()); + qWarning() << "Map request reply error:" << m_reply->errorString(); + } + + setFinished(true); + m_reply->deleteLater(); + m_reply = 0; +} diff --git a/src/QtLocationPlugin/qgeomapreplyqgc.h b/src/QtLocationPlugin/qgeomapreplyqgc.h new file mode 100644 index 0000000000000000000000000000000000000000..90d85583cd18a0bc37e1cec472e2f60a5c08c980 --- /dev/null +++ b/src/QtLocationPlugin/qgeomapreplyqgc.h @@ -0,0 +1,74 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#ifndef QGEOMAPREPLYGOOGLE_H +#define QGEOMAPREPLYGOOGLE_H + +#include +#include + +class QGeoMapReplyQGC : public QGeoTiledMapReply +{ + Q_OBJECT + +public: + explicit QGeoMapReplyQGC(QNetworkReply *reply, const QGeoTileSpec &spec, QObject *parent = 0); + ~QGeoMapReplyQGC(); + + void abort(); + + QNetworkReply *networkReply() const; + +private Q_SLOTS: + void replyDestroyed (); + void networkReplyFinished (); + void networkReplyError (QNetworkReply::NetworkError error); + +private: + QNetworkReply* m_reply; +}; + +#endif // QGEOMAPREPLYGOOGLE_H diff --git a/src/QtLocationPlugin/qgeoserviceproviderpluginqgc.cpp b/src/QtLocationPlugin/qgeoserviceproviderpluginqgc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..446ea2f9aaaeac44232806d14a6c867c07ee80c3 --- /dev/null +++ b/src/QtLocationPlugin/qgeoserviceproviderpluginqgc.cpp @@ -0,0 +1,78 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#include + +#include "qdebug.h" +#include "qgeoserviceproviderpluginqgc.h" +#include "qgeotiledmappingmanagerengineqgc.h" +#include "qgeocodingmanagerengineqgc.h" + +QGeoCodingManagerEngine *QGeoServiceProviderFactoryQGC::createGeocodingManagerEngine( + const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const +{ + return new QGeoCodingManagerEngineQGC(parameters, error, errorString); +} + +QGeoMappingManagerEngine *QGeoServiceProviderFactoryQGC::createMappingManagerEngine( + const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const +{ + return new QGeoTiledMappingManagerEngineQGC(parameters, error, errorString); +} + +QGeoRoutingManagerEngine *QGeoServiceProviderFactoryQGC::createRoutingManagerEngine( + const QVariantMap &, QGeoServiceProvider::Error *, QString *) const +{ + // Not implemented for QGC + return NULL; +} + +QPlaceManagerEngine *QGeoServiceProviderFactoryQGC::createPlaceManagerEngine( + const QVariantMap &, QGeoServiceProvider::Error *, QString *) const +{ + // Not implemented for QGC + return NULL; +} diff --git a/src/QtLocationPlugin/qgeoserviceproviderpluginqgc.h b/src/QtLocationPlugin/qgeoserviceproviderpluginqgc.h new file mode 100644 index 0000000000000000000000000000000000000000..a4d86e8fe23270bf887023af16593a49de178701 --- /dev/null +++ b/src/QtLocationPlugin/qgeoserviceproviderpluginqgc.h @@ -0,0 +1,67 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#ifndef QGEOSERVICEPROVIDER_GOOGLE_H +#define QGEOSERVICEPROVIDER_GOOGLE_H + +#include +#include +#include + +class QGeoServiceProviderFactoryQGC: public QObject, public QGeoServiceProviderFactory +{ + Q_OBJECT + Q_INTERFACES(QGeoServiceProviderFactory) + Q_PLUGIN_METADATA(IID "org.qt-project.qt.geoservice.serviceproviderfactory/5.0" FILE "qgc_maps_plugin.json") + +public: + QGeoCodingManagerEngine* createGeocodingManagerEngine(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const; + QGeoMappingManagerEngine* createMappingManagerEngine(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const; + QGeoRoutingManagerEngine* createRoutingManagerEngine(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const; + QPlaceManagerEngine* createPlaceManagerEngine(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) const; +}; + +#endif // QGEOSERVICEPROVIDER_GOOGLE_H diff --git a/src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.cpp b/src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..51b613d70125105c896aa34a836f72261d6d432f --- /dev/null +++ b/src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.cpp @@ -0,0 +1,163 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#include +#include +#include +#include +#include + +#include "qgeotiledmappingmanagerengineqgc.h" +#include "qgeotilefetcherqgc.h" +#include "OpenPilotMaps.h" + +QGeoTiledMappingManagerEngineQGC::QGeoTiledMappingManagerEngineQGC(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString) +: QGeoTiledMappingManagerEngine() +{ + QGeoCameraCapabilities cameraCaps; + cameraCaps.setMinimumZoomLevel(2.0); + cameraCaps.setMaximumZoomLevel(MAX_MAP_ZOOM); + cameraCaps.setSupportsBearing(true); + setCameraCapabilities(cameraCaps); + + setTileSize(QSize(256, 256)); + + QList mapTypes; + mapTypes << QGeoMapType(QGeoMapType::StreetMap, tr("Google Street Map"), tr("Google street map"), false, false, OpenPilot::GoogleMap); + mapTypes << QGeoMapType(QGeoMapType::SatelliteMapDay, tr("Google Satellite Map"),tr("Google satellite map"), false, false, OpenPilot::GoogleSatellite); + mapTypes << QGeoMapType(QGeoMapType::TerrainMap, tr("Google Terrain Map"), tr("Google terrain map"), false, false, OpenPilot::GoogleTerrain); + // TODO: + // Proper hybrid maps requires collecting two separate bimaps and overlaying them. + //mapTypes << QGeoMapType(QGeoMapType::HybridMap, tr("Google Hybrid Map"), tr("Google hybrid map"), false, false, OpenPilot::GoogleHybrid); + // Bing + mapTypes << QGeoMapType(QGeoMapType::StreetMap, tr("Bing Street Map"), tr("Bing street map"), false, false, OpenPilot::BingMap); + mapTypes << QGeoMapType(QGeoMapType::SatelliteMapDay, tr("Bing Satellite Map"), tr("Bing satellite map"), false, false, OpenPilot::BingSatellite); + mapTypes << QGeoMapType(QGeoMapType::HybridMap, tr("Bing Hybrid Map"), tr("Bing hybrid map"), false, false, OpenPilot::BingHybrid); + mapTypes << QGeoMapType(QGeoMapType::StreetMap, tr("Open Street Map"), tr("Open Street map"), false, false, OpenPilot::OpenStreetMap); + setSupportedMapTypes(mapTypes); + + QGeoTileFetcherQGC *tileFetcher = new QGeoTileFetcherQGC(this); + if (parameters.contains(QStringLiteral("useragent"))) { + const QByteArray ua = parameters.value(QStringLiteral("useragent")).toString().toLatin1(); + tileFetcher->setUserAgent(ua); + } else + // QGC Default + tileFetcher->setUserAgent("Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7"); + + setTileFetcher(tileFetcher); + + QString cacheDir; + if (parameters.contains(QStringLiteral("mapping.cache.directory"))) + cacheDir = parameters.value(QStringLiteral("mapping.cache.directory")).toString(); + else { + cacheDir = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QLatin1String("/QGCMapCache"); + if(!QDir::root().mkpath(cacheDir)) { + qWarning() << "Could not create mapping disk cache directory: " << cacheDir; + cacheDir = QDir::homePath() + QLatin1String("/.qgcmapscache/"); + } + } + + if(!QDir::root().mkpath(cacheDir)) + { + qWarning() << "Could not create mapping disk cache directory: " << cacheDir; + cacheDir.clear(); + } + //else { + // qDebug() << "Mapping cache directory:" << cacheDir; + //} + + QGeoTileCache *tileCache = createTileCacheWithDir(cacheDir); + + int cacheLimit = 0; + if (parameters.contains(QStringLiteral("mapping.cache.disk.size"))) { + bool ok = false; + cacheLimit = parameters.value(QStringLiteral("mapping.cache.disk.size")).toString().toInt(&ok); + if (!ok) + cacheLimit = 0; + } + if(!cacheLimit) + // QGC Default + cacheLimit = 1024 * 1024 * 1024; + tileCache->setMaxDiskUsage(cacheLimit); + //qDebug() << "Disk caching limit:" << cacheLimit; + + cacheLimit = 0; + if (parameters.contains(QStringLiteral("mapping.cache.memory.size"))) { + bool ok = false; + cacheLimit = parameters.value(QStringLiteral("mapping.cache.memory.size")).toString().toInt(&ok); + if (!ok) + cacheLimit = 0; + } + if(!cacheLimit) + // QGC Default + cacheLimit = 10 * 1024 * 1024; + tileCache->setMaxMemoryUsage(cacheLimit); + //qDebug() << "Memory caching limit:" << cacheLimit; + + cacheLimit = 0; + if (parameters.contains(QStringLiteral("mapping.cache.texture.size"))) { + bool ok = false; + cacheLimit = parameters.value(QStringLiteral("mapping.cache.texture.size")).toString().toInt(&ok); + if (!ok) + cacheLimit = 0; + } + if(!cacheLimit) + // QGC Default + cacheLimit = 10 * 1024 * 1024; + tileCache->setExtraTextureUsage(cacheLimit); + + *error = QGeoServiceProvider::NoError; + errorString->clear(); +} + +QGeoTiledMappingManagerEngineQGC::~QGeoTiledMappingManagerEngineQGC() +{ +} + +QGeoMapData *QGeoTiledMappingManagerEngineQGC::createMapData() +{ + return new QGeoTiledMapData(this, 0); +} diff --git a/src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.h b/src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.h new file mode 100644 index 0000000000000000000000000000000000000000..0bee02cd40300b4def0353a4cf82c1f7b35f19d9 --- /dev/null +++ b/src/QtLocationPlugin/qgeotiledmappingmanagerengineqgc.h @@ -0,0 +1,62 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#ifndef QGEOTILEDMAPPINGMANAGERENGINEGOOGLE_H +#define QGEOTILEDMAPPINGMANAGERENGINEGOOGLE_H + +#include +#include + +class QGeoTiledMappingManagerEngineQGC : public QGeoTiledMappingManagerEngine +{ + Q_OBJECT +public: + QGeoTiledMappingManagerEngineQGC(const QVariantMap ¶meters, QGeoServiceProvider::Error *error, QString *errorString); + ~QGeoTiledMappingManagerEngineQGC(); + QGeoMapData *createMapData(); +}; + +#endif // QGEOTILEDMAPPINGMANAGERENGINEGOOGLE_H diff --git a/src/QtLocationPlugin/qgeotilefetcherqgc.cpp b/src/QtLocationPlugin/qgeotilefetcherqgc.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5d69be6624f3451f62c1c6001b5037a921251daa --- /dev/null +++ b/src/QtLocationPlugin/qgeotilefetcherqgc.cpp @@ -0,0 +1,154 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#include +#include +#include +#include + +#include "qgeotilefetcherqgc.h" +#include "qgeomapreplyqgc.h" + +QGeoTileFetcherQGC::QGeoTileFetcherQGC(QGeoTiledMappingManagerEngine *parent) + : QGeoTileFetcher(parent) + , m_networkManager(new QNetworkAccessManager(this)) + , m_userAgent("Qt Application") + , m_UrlFactory(NULL) +{ + QStringList langs = QLocale::system().uiLanguages(); + if (langs.length() > 0) { + m_Language = langs[0]; + } + m_UrlFactory = new OpenPilot::UrlFactory(m_networkManager); +} + +QGeoTileFetcherQGC::~QGeoTileFetcherQGC() +{ + if(m_UrlFactory) + delete m_UrlFactory; +} + +void QGeoTileFetcherQGC::setUserAgent(const QByteArray &userAgent) +{ + m_userAgent = userAgent; +} + +QGeoTiledMapReply *QGeoTileFetcherQGC::getTileImage(const QGeoTileSpec &spec) +{ + QNetworkRequest request; + QString url = m_UrlFactory->makeImageUrl((OpenPilot::MapType)spec.mapId(), QPoint(spec.x(), spec.y()), spec.zoom(), m_Language); + + request.setUrl(QUrl(url)); + request.setRawHeader("User-Agent", m_userAgent); + request.setRawHeader("Accept", "*/*"); + switch ((OpenPilot::MapType)spec.mapId()) { + case OpenPilot::GoogleMap: + case OpenPilot::GoogleSatellite: + case OpenPilot::GoogleLabels: + case OpenPilot::GoogleTerrain: + case OpenPilot::GoogleHybrid: + { + request.setRawHeader("Referrer", "http://maps.google.com/"); + } + break; + case OpenPilot::GoogleMapChina: + case OpenPilot::GoogleSatelliteChina: + case OpenPilot::GoogleLabelsChina: + case OpenPilot::GoogleTerrainChina: + case OpenPilot::GoogleHybridChina: + { + request.setRawHeader("Referrer", "http://ditu.google.cn/"); + } + break; + case OpenPilot::BingHybrid: + case OpenPilot::BingMap: + case OpenPilot::BingSatellite: + { + request.setRawHeader("Referrer", "http://www.bing.com/maps/"); + } + break; + case OpenPilot::YahooHybrid: + case OpenPilot::YahooLabels: + case OpenPilot::YahooMap: + case OpenPilot::YahooSatellite: + { + request.setRawHeader("Referrer", "http://maps.yahoo.com/"); + } + break; + case OpenPilot::ArcGIS_MapsLT_Map_Labels: + case OpenPilot::ArcGIS_MapsLT_Map: + case OpenPilot::ArcGIS_MapsLT_OrtoFoto: + case OpenPilot::ArcGIS_MapsLT_Map_Hybrid: + { + request.setRawHeader("Referrer", "http://www.maps.lt/map_beta/"); + } + break; + case OpenPilot::OpenStreetMapSurfer: + case OpenPilot::OpenStreetMapSurferTerrain: + { + request.setRawHeader("Referrer", "http://www.mapsurfer.net/"); + } + break; + case OpenPilot::OpenStreetMap: + case OpenPilot::OpenStreetOsm: + { + request.setRawHeader("Referrer", "http://www.openstreetmap.org/"); + } + break; + case OpenPilot::YandexMapRu: + { + request.setRawHeader("Referrer", "http://maps.yandex.ru/"); + } + break; + default: + break; + } + + QNetworkReply *reply = m_networkManager->get(request); + reply->setParent(0); + return new QGeoMapReplyQGC(reply, spec); + +} diff --git a/src/QtLocationPlugin/qgeotilefetcherqgc.h b/src/QtLocationPlugin/qgeotilefetcherqgc.h new file mode 100644 index 0000000000000000000000000000000000000000..5f3dfab8df9ab1ff0a5ad681dfb5c39837e86b9a --- /dev/null +++ b/src/QtLocationPlugin/qgeotilefetcherqgc.h @@ -0,0 +1,75 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Aaron McCarthy +** Contact: http://www.qt-project.org/legal +** +** This file is part of the QtLocation module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +** 2015.4.4 +** Adapted for use with QGroundControl +** +** Gus Grubba +** +****************************************************************************/ + +#ifndef QGEOTILEFETCHERGOOGLE_H +#define QGEOTILEFETCHERGOOGLE_H + +#include +#include +#include "OpenPilotMaps.h" + +class QGeoTiledMappingManagerEngine; +class QNetworkAccessManager; + +class QGeoTileFetcherQGC : public QGeoTileFetcher +{ + Q_OBJECT + +public: + explicit QGeoTileFetcherQGC(QGeoTiledMappingManagerEngine *parent = 0); + ~QGeoTileFetcherQGC(); + + void setUserAgent(const QByteArray &userAgent); + +private: + QGeoTiledMapReply* getTileImage(const QGeoTileSpec &spec); + QNetworkAccessManager* m_networkManager; + QByteArray m_userAgent; + OpenPilot::UrlFactory* m_UrlFactory; + QString m_Language; +}; + +#endif // QGEOTILEFETCHERGOOGLE_H diff --git a/src/VehicleSetup/FirmwareUpgrade.qml b/src/VehicleSetup/FirmwareUpgrade.qml index 740142124b091f2b65da425dfab66be97f6719e0..74170c2ff354f57c6b240de71cb57fc71d3ec592 100644 --- a/src/VehicleSetup/FirmwareUpgrade.qml +++ b/src/VehicleSetup/FirmwareUpgrade.qml @@ -1,3 +1,26 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 @@ -5,7 +28,8 @@ import QtQuick.Controls.Styles 1.2 import QGroundControl.Controls 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Palette 1.0 -import QGroundControl.FirmwareUpgradeController 1.0 +import QGroundControl.Controllers 1.0 +import QGroundControl.ScreenTools 1.0 Rectangle { width: 600 @@ -26,7 +50,7 @@ Rectangle { QGCLabel { text: "FIRMWARE UPDATE" - font.pointSize: 20 + font.pointSize: ScreenTools.fontPointFactor * (20); } Item { @@ -89,11 +113,15 @@ Rectangle { TextArea { id: statusTextArea - width: parent.width - height: 300 - readOnly: true - frameVisible: false - text: qsTr("Please disconnect all connections and unplug board from USB before selecting Upgrade.") + + width: parent.width + height: 300 + readOnly: true + frameVisible: false + font.pointSize: ScreenTools.defaultFontPointSize + + text: qsTr("Please disconnect all vehicles from QGroundControl before selecting Upgrade.") + style: TextAreaStyle { textColor: qgcPal.text backgroundColor: qgcPal.windowShade diff --git a/src/VehicleSetup/FirmwareUpgradeController.cc b/src/VehicleSetup/FirmwareUpgradeController.cc index 6b16a21049b344cbd4cd613f5c7f25aefa9b2674..94d518ba8bca31babf7c72d1c42f470f4c4d018a 100644 --- a/src/VehicleSetup/FirmwareUpgradeController.cc +++ b/src/VehicleSetup/FirmwareUpgradeController.cc @@ -146,40 +146,6 @@ void FirmwareUpgradeController::_findTimeout(void) _cancel(); } -/// @brief Sets the board image into the icon label according to the board id. -void FirmwareUpgradeController::_setBoardIcon(int boardID) -{ - QString imageFile; - - switch (boardID) { - case _boardIDPX4FMUV1: - imageFile = ":/files/images/px4/boards/px4fmu_1.x.png"; - break; - - case _boardIDPX4Flow: - imageFile = ":/files/images/px4/boards/px4flow_1.x.png"; - break; - - case _boardIDPX4FMUV2: - imageFile = ":/files/images/px4/boards/px4fmu_2.x.png"; - break; - } - - if (!imageFile.isEmpty()) { - bool success = _boardIcon.load(imageFile); - Q_ASSERT(success); - Q_UNUSED(success); - /* - // FIXME: NYI - - int w = _ui->icon->width(); - int h = _ui->icon->height(); - - _ui->icon->setPixmap(_boardIcon.scaled(w, h, Qt::KeepAspectRatio)); - */ - } -} - /// @brief Prompts the user to select a firmware file if needed and moves the state machine to the next state. void FirmwareUpgradeController::_getFirmwareFile(void) { @@ -378,55 +344,51 @@ void FirmwareUpgradeController::_downloadFinished(void) return; } - _imageSize = px4Json.value(QString("image_size")).toInt(); - if (_imageSize == 0) { - _appendStatusLog(tr("Image size of 0 in .px4 file %1").arg(downloadFilename)); - _cancel(); - return; + // Decompress the parameter xml and save to file + QByteArray decompressedBytes; + bool success = _decompressJsonValue(px4Json, // JSON object + bytes, // Raw bytes of JSON document + "parameter_xml_size", // key which holds byte size + "parameter_xml", // key which holds compress bytes + decompressedBytes); // Returned decompressed bytes + if (success) { + QSettings settings; + QDir parameterDir = QFileInfo(settings.fileName()).dir(); + QString parameterFilename = parameterDir.filePath("PX4ParameterFactMetaData.xml"); + qDebug() << parameterFilename; + QFile parameterFile(parameterFilename); + if (parameterFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) { + qint64 bytesWritten = parameterFile.write(decompressedBytes); + if (bytesWritten != decompressedBytes.count()) { + _appendStatusLog(tr("Write failed for parameter meta data file, error: %1").arg(parameterFile.errorString())); + parameterFile.close(); + QFile::remove(parameterFilename); + } else { + parameterFile.close(); + } + } else { + _appendStatusLog(tr("Unable to open parameter meta data file %1 for writing, error: %2").arg(parameterFilename).arg(parameterFile.errorString())); + } + } - qDebug() << "Image size from px4:" << _imageSize; - - // Convert image from base-64 and decompress - // XXX Qt's JSON string handling is terribly broken, strings - // with some length (18K / 25K) are just weirdly cut. - // The code below works around this by manually 'parsing' - // for the image string. Since its compressed / checksummed - // this should be fine. + // FIXME: Save NYI - QStringList list = QString(bytes).split("\"image\": \""); - list = list.last().split("\""); - - // Convert String to QByteArray and unzip it - QByteArray raw; - - // Store image size - raw.append((unsigned char)((_imageSize >> 24) & 0xFF)); - raw.append((unsigned char)((_imageSize >> 16) & 0xFF)); - raw.append((unsigned char)((_imageSize >> 8) & 0xFF)); - raw.append((unsigned char)((_imageSize >> 0) & 0xFF)); - - QByteArray raw64 = list.first().toUtf8(); - - raw.append(QByteArray::fromBase64(raw64)); - QByteArray uncompressed = qUncompress(raw); - - QByteArray b = uncompressed; - - if (b.count() == 0) { - _appendStatusLog(tr("Firmware file has 0 length image")); - _cancel(); - return; - } - if (b.count() != (int)_imageSize) { - _appendStatusLog(tr("Image size for decompressed image does not match stored image size: Expected(%1) Actual(%2)").arg(_imageSize).arg(b.count())); + // Decompress the image and save to file + _imageSize = px4Json.value(QString("image_size")).toInt(); + success = _decompressJsonValue(px4Json, // JSON object + bytes, // Raw bytes of JSON document + "image_size", // key which holds byte size + "image", // key which holds compress bytes + decompressedBytes); // Returned decompressed bytes + if (!success) { _cancel(); return; } - + // Pad image to 4-byte boundary - while ((b.count() % 4) != 0) { - b.append(static_cast(static_cast(0xFF))); + while ((decompressedBytes.count() % 4) != 0) { + decompressedBytes.append(static_cast(static_cast(0xFF))); } // Store decompressed image file in same location as original download file @@ -440,8 +402,8 @@ void FirmwareUpgradeController::_downloadFinished(void) return; } - qint64 bytesWritten = decompressFile.write(b); - if (bytesWritten != b.count()) { + qint64 bytesWritten = decompressFile.write(decompressedBytes); + if (bytesWritten != decompressedBytes.count()) { _appendStatusLog(tr("Write failed for decompressed image file, error: %1").arg(decompressFile.errorString())); _cancel(); return; @@ -493,6 +455,65 @@ void FirmwareUpgradeController::_downloadFinished(void) _erase(); } +/// Decompress a set of bytes stored in a Json document. +bool FirmwareUpgradeController::_decompressJsonValue(const QJsonObject& jsonObject, ///< JSON object + const QByteArray& jsonDocBytes, ///< Raw bytes of JSON document + const QString& sizeKey, ///< key which holds byte size + const QString& bytesKey, ///< key which holds compress bytes + QByteArray& decompressedBytes) ///< Returned decompressed bytes +{ + // Validate decompressed size key + if (!jsonObject.contains(sizeKey)) { + _appendStatusLog(QString("Firmware file missing %1 key").arg(sizeKey)); + return false; + } + int decompressedSize = jsonObject.value(QString(sizeKey)).toInt(); + if (decompressedSize == 0) { + _appendStatusLog(QString("Firmware file has invalid decompressed size for %1").arg(sizeKey)); + return false; + } + + // XXX Qt's JSON string handling is terribly broken, strings + // with some length (18K / 25K) are just weirdly cut. + // The code below works around this by manually 'parsing' + // for the image string. Since its compressed / checksummed + // this should be fine. + + QStringList parts = QString(jsonDocBytes).split(QString("\"%1\": \"").arg(bytesKey)); + if (parts.count() == 1) { + _appendStatusLog(QString("Could not find compressed bytes for %1 in Firmware file").arg(bytesKey)); + return false; + } + parts = parts.last().split("\""); + if (parts.count() == 1) { + _appendStatusLog(QString("Incorrectly formed compressed bytes section for %1 in Firmware file").arg(bytesKey)); + return false; + } + + // Store decompressed size as first four bytes. This is required by qUncompress routine. + QByteArray raw; + raw.append((unsigned char)((decompressedSize >> 24) & 0xFF)); + raw.append((unsigned char)((decompressedSize >> 16) & 0xFF)); + raw.append((unsigned char)((decompressedSize >> 8) & 0xFF)); + raw.append((unsigned char)((decompressedSize >> 0) & 0xFF)); + + QByteArray raw64 = parts.first().toUtf8(); + raw.append(QByteArray::fromBase64(raw64)); + decompressedBytes = qUncompress(raw); + + if (decompressedBytes.count() == 0) { + _appendStatusLog(QString("Firmware file has 0 length %1").arg(bytesKey)); + return false; + } + if (decompressedBytes.count() != decompressedSize) { + _appendStatusLog(QString("Size for decompressed %1 does not match stored size: Expected(%1) Actual(%2)").arg(decompressedSize).arg(decompressedBytes.count())); + return false; + } + + _appendStatusLog(QString("Succesfully decompressed %1").arg(bytesKey)); + return true; +} + /// @brief Called when an error occurs during download void FirmwareUpgradeController::_downloadError(QNetworkReply::NetworkError code) { diff --git a/src/VehicleSetup/FirmwareUpgradeController.h b/src/VehicleSetup/FirmwareUpgradeController.h index f3d3cce9f8c27a162d4cc24e18ddcb2c0f5de73d..de90c18369768dcdec9a434e6e6ca844989dcfeb 100644 --- a/src/VehicleSetup/FirmwareUpgradeController.h +++ b/src/VehicleSetup/FirmwareUpgradeController.h @@ -105,14 +105,14 @@ private: void _findBootloader(void); void _cancel(void); void _getFirmwareFile(void); - - void _setBoardIcon(int boardID); - void _downloadFirmware(void); - void _erase(void); - void _appendStatusLog(const QString& text); + bool _decompressJsonValue(const QJsonObject& jsonObject, + const QByteArray& jsonDocBytes, + const QString& sizeKey, + const QString& bytesKey, + QByteArray& decompressedBytes); QString _portName; QString _portDescription; diff --git a/src/VehicleSetup/PX4Bootloader.cc b/src/VehicleSetup/PX4Bootloader.cc index deab12ea492b22da07ec10be313e206825f72268..62c69c75d7a07a777d75478203d7508e297cafb8 100644 --- a/src/VehicleSetup/PX4Bootloader.cc +++ b/src/VehicleSetup/PX4Bootloader.cc @@ -28,7 +28,11 @@ #include "PX4Bootloader.h" #include +#ifdef __android__ +#include "qserialportinfo.h" +#else #include +#endif #include #include @@ -439,10 +443,6 @@ bool PX4Bootloader::getBoardInfo(QextSerialPort* port, uint32_t& bootloaderVersi if (!getBoardInfo(port, INFO_BOARD_ID, _boardID)) { goto Error; } - if (_boardID != _boardIDPX4Flow && _boardID != _boardIDPX4FMUV1 && _boardID != _boardIDPX4FMUV2 && _boardID != _boardIDuNode) { - _errorString = tr("Unsupported board: %1").arg(_boardID); - goto Error; - } if (!getBoardInfo(port, INFO_FLASH_SIZE, _boardFlashSize)) { qWarning() << _errorString; diff --git a/src/VehicleSetup/PX4Bootloader.h b/src/VehicleSetup/PX4Bootloader.h index 12c95b2ca534403cf9f838f5b454b7b689a04698..dcf35d5c9fa204f250b729cd379938b696372a4d 100644 --- a/src/VehicleSetup/PX4Bootloader.h +++ b/src/VehicleSetup/PX4Bootloader.h @@ -142,11 +142,6 @@ private: bool _bootloaderVerifyRev2(QextSerialPort* port, const QString firmwareFilename); bool _bootloaderVerifyRev3(QextSerialPort* port); - static const int _boardIDPX4FMUV1 = 5; ///< Board ID for PX4 V1 board - static const int _boardIDPX4FMUV2 = 9; ///< Board ID for PX4 V2 board - static const int _boardIDPX4Flow = 6; ///< Board ID for PX4 Floaw board - static const int _boardIDuNode = 29; ///< Board ID for uNode board - uint32_t _boardID; ///< board id for currently connected board uint32_t _boardFlashSize; ///< flash size for currently connected board uint32_t _imageCRC; ///< CRC for image in currently selected firmware file diff --git a/src/VehicleSetup/PX4FirmwareUpgradeThread.cc b/src/VehicleSetup/PX4FirmwareUpgradeThread.cc index 784948eb239a612e1abb0d6c266519242357bf57..0f581facf9834551e9778c1aa5b025fc3558cac8 100644 --- a/src/VehicleSetup/PX4FirmwareUpgradeThread.cc +++ b/src/VehicleSetup/PX4FirmwareUpgradeThread.cc @@ -29,7 +29,11 @@ #include "PX4Bootloader.h" #include +#ifdef __android__ +#include "qserialportinfo.h" +#else #include +#endif #include PX4FirmwareUpgradeThreadWorker::PX4FirmwareUpgradeThreadWorker(QObject* parent) : diff --git a/src/VehicleSetup/ParameterEditor.ui b/src/VehicleSetup/ParameterEditor.ui deleted file mode 100644 index ba61c7fa684f36aa3677ce9e608fe1fdf50dd3c8..0000000000000000000000000000000000000000 --- a/src/VehicleSetup/ParameterEditor.ui +++ /dev/null @@ -1,191 +0,0 @@ - - - ParameterEditor - - - - 0 - 0 - 750 - 600 - - - - - 0 - 0 - - - - - 802 - 471 - - - - Form - - - - - - - - - 3 - 1 - - - - Onboard Configuration - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - - - 0 - 0 - - - - true - - - - - - - - - - - - - - Qt::Horizontal - - - - 10 - 20 - - - - - - - - - 2 - 0 - - - - - 329 - 400 - - - - Changes Pending - - - - - - -1 - - - - - - 0 - 0 - - - - true - - - - - - - - - - - - Qt::Horizontal - - - - 10 - 20 - - - - - - - - - - - 0 - 0 - - - - Status - - - - - - - - QGCPendingParamWidget - QWidget -
ui/QGCPendingParamWidget.h
- 1 -
- - QGCParamWidget - QWidget -
ui/QGCParamWidget.h
- 1 -
-
- - -
diff --git a/src/QmlControls/MousePosition.cc b/src/VehicleSetup/SetupParameterEditor.qml similarity index 76% rename from src/QmlControls/MousePosition.cc rename to src/VehicleSetup/SetupParameterEditor.qml index 594f313e1068a0c7d01655728154c044906664f8..5856f086b8046d16831e7ab8b48fcbb921e9d57c 100644 --- a/src/QmlControls/MousePosition.cc +++ b/src/VehicleSetup/SetupParameterEditor.qml @@ -1,32 +1,33 @@ /*===================================================================== - + QGroundControl Open Source Ground Control Station - - (c) 2009, 2015 QGROUNDCONTROL PROJECT - + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + This file is part of the QGROUNDCONTROL project - + QGROUNDCONTROL is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + QGROUNDCONTROL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ -/// @file -/// @author Don Gagne + ======================================================================*/ -#include "MousePosition.h" +import QtQuick 2.3 +import QtQuick.Controls 1.2 -MousePosition::MousePosition(void) -{ +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 +import QGroundControl.Palette 1.0 +ParameterEditor { + fullMode: true } diff --git a/src/VehicleSetup/SetupView.cc b/src/VehicleSetup/SetupView.cc index 1ba00d1c8cfe1d7bcb205ca9ea021f5aa0370770..31fc188cb1571c8e1e8ff6148f9730c7eb7010ce 100644 --- a/src/VehicleSetup/SetupView.cc +++ b/src/VehicleSetup/SetupView.cc @@ -30,11 +30,13 @@ #include "UASManager.h" #include "AutoPilotPluginManager.h" #include "VehicleComponent.h" -#include "ParameterEditor.h" #include "QGCQmlWidgetHolder.h" #include "MainWindow.h" #include "QGCMessageBox.h" +#ifndef __android__ #include "FirmwareUpgradeController.h" +#endif +#include "ParameterEditorController.h" #include #include @@ -54,12 +56,13 @@ SetupView::SetupView(QWidget* parent) : Q_UNUSED(fSucceeded); Q_ASSERT(fSucceeded); - _ui->buttonHolder->setAutoPilot(NULL); - _ui->buttonHolder->setSource(QUrl::fromUserInput("qrc:/qml/SetupViewButtons.qml")); - +#ifndef __android__ + qmlRegisterType("QGroundControl.Controllers", 1, 0, "FirmwareUpgradeController"); +#endif + _ui->buttonHolder->rootContext()->setContextProperty("controller", this); - - qmlRegisterType("QGroundControl.FirmwareUpgradeController", 1, 0, "FirmwareUpgradeController"); + _ui->buttonHolder->setAutoPilot(NULL); + _ui->buttonHolder->setSource(QUrl::fromUserInput("qrc:/qml/SetupViewButtonsDisconnected.qml")); _setActiveUAS(UASManager::instance()->getActiveUAS()); } @@ -73,35 +76,37 @@ void SetupView::_setActiveUAS(UASInterface* uas) { if (_uasCurrent) { Q_ASSERT(_autoPilotPlugin); - disconnect(_autoPilotPlugin, &AutoPilotPlugin::pluginReady, this, &SetupView::_pluginReady); + disconnect(_autoPilotPlugin, &AutoPilotPlugin::pluginReadyChanged, this, &SetupView::_pluginReadyChanged); } - _autoPilotPlugin = NULL; - _ui->buttonHolder->setAutoPilot(NULL); - firmwareButtonClicked(); - QObject* button = _ui->buttonHolder->rootObject()->findChild("firmwareButton"); - Q_ASSERT(button); - button->setProperty("checked", true); + _pluginReadyChanged(false); _uasCurrent = uas; if (_uasCurrent) { _autoPilotPlugin = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uasCurrent); - - connect(_autoPilotPlugin, &AutoPilotPlugin::pluginReady, this, &SetupView::_pluginReady); - if (_autoPilotPlugin->pluginIsReady()) { - _pluginReady(); - } + _pluginReadyChanged(_autoPilotPlugin->pluginReady()); + connect(_autoPilotPlugin, &AutoPilotPlugin::pluginReadyChanged, this, &SetupView::_pluginReadyChanged); } } -void SetupView::_pluginReady(void) +void SetupView::_pluginReadyChanged(bool pluginReady) { - _ui->buttonHolder->setAutoPilot(_autoPilotPlugin); - summaryButtonClicked(); - QObject* button = _ui->buttonHolder->rootObject()->findChild("summaryButton"); - Q_ASSERT(button); - button->setProperty("checked", true); + if (pluginReady) { + _ui->buttonHolder->setAutoPilot(_autoPilotPlugin); + _ui->buttonHolder->setSource(QUrl::fromUserInput("qrc:/qml/SetupViewButtonsConnected.qml")); + summaryButtonClicked(); + QObject* button = _ui->buttonHolder->rootObject()->findChild("summaryButton"); + Q_ASSERT(button); + button->setProperty("checked", true); + } else { + _ui->buttonHolder->setSource(QUrl::fromUserInput("qrc:/qml/SetupViewButtonsDisconnected.qml")); + _ui->buttonHolder->setAutoPilot(NULL); + firmwareButtonClicked(); + QObject* button = _ui->buttonHolder->rootObject()->findChild("firmwareButton"); + Q_ASSERT(button); + button->setProperty("checked", true); + } } void SetupView::_changeSetupWidget(QWidget* newWidget) @@ -115,6 +120,8 @@ void SetupView::_changeSetupWidget(QWidget* newWidget) void SetupView::firmwareButtonClicked(void) { +#ifndef __android__ + //FIXME: Hack out for android for now if (_uasCurrent && _uasCurrent->isArmed()) { QGCMessageBox::warning("Setup", "Firmware Update cannot be performed while vehicle is armed."); return; @@ -126,12 +133,19 @@ void SetupView::firmwareButtonClicked(void) setup->setSource(QUrl::fromUserInput("qrc:/qml/FirmwareUpgrade.qml")); _changeSetupWidget(setup); +#endif } void SetupView::parametersButtonClicked(void) { - ParameterEditor* setup = new ParameterEditor(_uasCurrent, QStringList(), this); - _changeSetupWidget(setup); + QGCQmlWidgetHolder* setup = new QGCQmlWidgetHolder; + Q_CHECK_PTR(setup); + + Q_ASSERT(_autoPilotPlugin); + setup->setAutoPilot(_autoPilotPlugin); + setup->setSource(QUrl::fromUserInput("qrc:/qml/SetupParameterEditor.qml")); + + _changeSetupWidget(setup); } void SetupView::summaryButtonClicked(void) diff --git a/src/VehicleSetup/SetupView.h b/src/VehicleSetup/SetupView.h index 40809ac05fdac60cdba6f43a32f6be205179bcb4..0a931ca0390a69cfbc2a46df2a2281e8422acc80 100644 --- a/src/VehicleSetup/SetupView.h +++ b/src/VehicleSetup/SetupView.h @@ -25,7 +25,6 @@ #define SETUPVIEW_H #include "UASInterface.h" -#include "ParameterEditor.h" #include "VehicleComponent.h" #include "AutoPilotPlugin.h" @@ -54,7 +53,7 @@ public: private slots: void _setActiveUAS(UASInterface* uas); - void _pluginReady(void); + void _pluginReadyChanged(bool pluginReady); private: void _changeSetupWidget(QWidget* newWidget); diff --git a/src/VehicleSetup/SetupViewButtons.qml b/src/VehicleSetup/SetupViewButtons.qml deleted file mode 100644 index c810ff38c08bc219c9b7c1183c8fb95a6e0d1467..0000000000000000000000000000000000000000 --- a/src/VehicleSetup/SetupViewButtons.qml +++ /dev/null @@ -1,99 +0,0 @@ -import QtQuick 2.3 -import QtQuick.Controls 1.2 -import QtQuick.Controls.Styles 1.2 -import QtGraphicalEffects 1.0 - -import QGroundControl.FactSystem 1.0 -import QGroundControl.Palette 1.0 -import QGroundControl.Controls 1.0 - -Rectangle { - id: topLevel - - QGCPalette { id: palette; colorGroupEnabled: true } - color: palette.window - - ExclusiveGroup { id: setupButtonGroup } - - Component { - id: disconnectedButtons - - Column { - anchors.fill: parent - - SubMenuButton { - id: firmwareButton; objectName: "firmwareButton" - width: parent.width - text: "FIRMWARE" - imageResource: "FirmwareUpgradeIcon.png" - setupIndicator: false - exclusiveGroup: setupButtonGroup - onClicked: controller.firmwareButtonClicked() - } - - Item { width: parent.width; height: 10 } // spacer - - QGCLabel { - width: parent.width - text: "You must be connected to your board to use all available setup options." - wrapMode: Text.WordWrap - horizontalAlignment: Text.AlignHCenter - } - } - } - - Component { - id: connectedButtons - - Column { - anchors.fill: parent - - SubMenuButton { - id: summaryButton; objectName: "summaryButton" - width: parent.width - text: "SUMMARY" - imageResource: "VehicleSummaryIcon.png" - setupIndicator: false - exclusiveGroup: setupButtonGroup - onClicked: controller.summaryButtonClicked() - } - - SubMenuButton { - id: firmwareButton; objectName: "firmwareButton" - width: parent.width - text: "FIRMWARE" - imageResource: "FirmwareUpgradeIcon.png" - setupIndicator: false - exclusiveGroup: setupButtonGroup - onClicked: controller.firmwareButtonClicked() - } - - Repeater { - model: autopilot.components - - SubMenuButton { - width: parent.width - text: modelData.name.toUpperCase() - imageResource: modelData.iconResource - setupComplete: modelData.setupComplete - exclusiveGroup: setupButtonGroup - onClicked: controller.setupButtonClicked(modelData) - } - } - - SubMenuButton { - width: parent.width - text: "PARAMETERS" - setupIndicator: false - exclusiveGroup: setupButtonGroup - onClicked: controller.parametersButtonClicked() - } - } - } - - - Loader { - anchors.fill: parent - sourceComponent: autopilot ? connectedButtons : disconnectedButtons - } -} diff --git a/src/VehicleSetup/SetupViewButtonsConnected.qml b/src/VehicleSetup/SetupViewButtonsConnected.qml new file mode 100644 index 0000000000000000000000000000000000000000..df5514e4c861f905795904b40a2a53deade80dd4 --- /dev/null +++ b/src/VehicleSetup/SetupViewButtonsConnected.qml @@ -0,0 +1,62 @@ +import QtQuick 2.3 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 +import QtGraphicalEffects 1.0 + +import QGroundControl.FactSystem 1.0 +import QGroundControl.Palette 1.0 +import QGroundControl.Controls 1.0 + +Rectangle { + id: topLevel + + QGCPalette { id: palette; colorGroupEnabled: true } + color: palette.window + + ExclusiveGroup { id: setupButtonGroup } + + Column { + anchors.fill: parent + + SubMenuButton { + id: summaryButton; objectName: "summaryButton" + width: parent.width + text: "SUMMARY" + imageResource: "VehicleSummaryIcon.png" + setupIndicator: false + exclusiveGroup: setupButtonGroup + onClicked: controller.summaryButtonClicked() + } + + SubMenuButton { + id: firmwareButton; objectName: "firmwareButton" + width: parent.width + text: "FIRMWARE" + imageResource: "FirmwareUpgradeIcon.png" + setupIndicator: false + exclusiveGroup: setupButtonGroup + onClicked: controller.firmwareButtonClicked() + } + + Repeater { + model: autopilot ? autopilot.vehicleComponents : 0 + + SubMenuButton { + width: parent.width + text: modelData.name.toUpperCase() + imageResource: modelData.iconResource + setupComplete: modelData.setupComplete + exclusiveGroup: setupButtonGroup + onClicked: controller.setupButtonClicked(modelData) + } + } + + SubMenuButton { + width: parent.width + text: "PARAMETERS" + setupIndicator: false + exclusiveGroup: setupButtonGroup + onClicked: controller.parametersButtonClicked() + } + } +} diff --git a/src/VehicleSetup/SetupViewButtonsDisconnected.qml b/src/VehicleSetup/SetupViewButtonsDisconnected.qml new file mode 100644 index 0000000000000000000000000000000000000000..e5634ccbf77750a9da7356ca800a9ecea74c3a08 --- /dev/null +++ b/src/VehicleSetup/SetupViewButtonsDisconnected.qml @@ -0,0 +1,40 @@ +import QtQuick 2.3 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 +import QtGraphicalEffects 1.0 + +import QGroundControl.FactSystem 1.0 +import QGroundControl.Palette 1.0 +import QGroundControl.Controls 1.0 + +Rectangle { + id: topLevel + + QGCPalette { id: palette; colorGroupEnabled: true } + color: palette.window + + ExclusiveGroup { id: setupButtonGroup } + + Column { + anchors.fill: parent + + SubMenuButton { + id: firmwareButton; objectName: "firmwareButton" + width: parent.width + text: "FIRMWARE" + imageResource: "FirmwareUpgradeIcon.png" + setupIndicator: false + exclusiveGroup: setupButtonGroup + onClicked: controller.firmwareButtonClicked() + } + + Item { width: parent.width; height: 10 } // spacer + + QGCLabel { + width: parent.width + text: "Full setup options are only available when connected to vehicle and full parameter list has completed downloading." + wrapMode: Text.WordWrap + horizontalAlignment: Text.AlignHCenter + } + } +} diff --git a/src/VehicleSetup/SetupViewTest.cc b/src/VehicleSetup/SetupViewTest.cc index 113072edbdd36ba75e46bc857618823651398aa3..7f6b2583f4439b2e818f5ca52081c0ed31cb7ffb 100644 --- a/src/VehicleSetup/SetupViewTest.cc +++ b/src/VehicleSetup/SetupViewTest.cc @@ -27,6 +27,9 @@ #include "SetupViewTest.h" #include "MockLink.h" #include "QGCMessageBox.h" +#include "SetupView.h" +#include "UASManager.h" +#include "AutoPilotPluginManager.h" UT_REGISTER_TEST(SetupViewTest) @@ -64,17 +67,43 @@ void SetupViewTest::_clickThrough_test(void) MockLink* link = new MockLink(); Q_CHECK_PTR(link); link->setAutopilotType(MAV_AUTOPILOT_PX4); - LinkManager::instance()->addLink(link); + LinkManager::instance()->_addLink(link); linkMgr->connectLink(link); QTest::qWait(5000); // Give enough time for UI to settle and heartbeats to go through + + AutoPilotPlugin* autopilot = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(UASManager::instance()->getActiveUAS()); + Q_ASSERT(autopilot); + + QSignalSpy spyPlugin(autopilot, SIGNAL(pluginReadyChanged(bool))); + if (!autopilot->pluginReady()) { + QCOMPARE(spyPlugin.wait(10000), true); + } + Q_ASSERT(autopilot->pluginReady()); // Switch to the Setup view _mainToolBar->onSetupView(); QTest::qWait(1000); - // Click through all the setup buttons - // FIXME: NYI + MainWindow* mainWindow = MainWindow::instance(); + Q_ASSERT(mainWindow); + QWidget* setupViewWidget = mainWindow->getCurrentViewWidget(); + Q_ASSERT(setupViewWidget); + SetupView* setupView = qobject_cast(setupViewWidget); + Q_ASSERT(setupView); + + // Click through fixed buttons + setupView->firmwareButtonClicked(); + QTest::qWait(1000); + setupView->parametersButtonClicked(); + QTest::qWait(1000); + setupView->summaryButtonClicked(); + QTest::qWait(1000); + const QVariantList& components = autopilot->vehicleComponents(); + foreach(QVariant varComponent, components) { + setupView->setupButtonClicked(varComponent); + } + // On MainWindow close we should get a message box telling the user to disconnect first. Disconnect will then pop // the log file save dialog. diff --git a/src/VehicleSetup/VehicleComponent.cc b/src/VehicleSetup/VehicleComponent.cc index 956e6076fbc56a5a72049c6bf2f5103a2ea23810..d9cf5f0d205f1df730a0811d19a18886a996d906 100644 --- a/src/VehicleSetup/VehicleComponent.cc +++ b/src/VehicleSetup/VehicleComponent.cc @@ -34,9 +34,6 @@ VehicleComponent::VehicleComponent(UASInterface* uas, AutoPilotPlugin* autopilot { Q_ASSERT(uas); Q_ASSERT(autopilot); - - _paramMgr = _uas->getParamManager(); - Q_ASSERT(_paramMgr); } VehicleComponent::~VehicleComponent() diff --git a/src/VehicleSetup/VehicleComponent.h b/src/VehicleSetup/VehicleComponent.h index 397f3c6c882ee0a2756bcf2e28c18eb07ccbf119..5d928cfc43d54df7b8f71694fd255b494d5dfeb7 100644 --- a/src/VehicleSetup/VehicleComponent.h +++ b/src/VehicleSetup/VehicleComponent.h @@ -75,7 +75,6 @@ signals: protected: UASInterface* _uas; AutoPilotPlugin* _autopilot; - QGCUASParamManagerInterface* _paramMgr; }; #endif diff --git a/src/VehicleSetup/VehicleSummary.qml b/src/VehicleSetup/VehicleSummary.qml index f9105eb267c8960a1ecf0b1ae6e90c947126c48a..e5b38f64daa83510834753c352578ec56855f43b 100644 --- a/src/VehicleSetup/VehicleSummary.qml +++ b/src/VehicleSetup/VehicleSummary.qml @@ -1,3 +1,26 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2015 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + import QtQuick 2.2 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 @@ -5,6 +28,7 @@ import QtQuick.Controls.Styles 1.2 import QGroundControl.FactSystem 1.0 import QGroundControl.Palette 1.0 import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 Rectangle { width: 600 @@ -22,7 +46,25 @@ Rectangle { QGCLabel { text: "VEHICLE SUMMARY" - font.pointSize: 20 + font.pointSize: ScreenTools.fontPointFactor * (20); + } + + Item { + // Just used as a spacer + height: 15 + width: 10 + } + + QGCLabel { + width: parent.width + wrapMode: Text.WordWrap + color: autopilot.setupComplete ? qgcPal.text : "red" + font.pointSize: autopilot.setupComplete ? ScreenTools.defaultFontPointSize : ScreenTools.fontPointFactor * (20) + text: autopilot.setupComplete ? + "Below you will find a summary of the settings for your vehicle. To the left are the setup buttons for deatiled settings for each component." : + "WARNING: One or more of your vehicle's components require setup prior to flight. It will be shown with a red circular indicator below. " + + "Find the matching setup button to the left and click it to get to the setup screen you need to complete. " + + "Once all indicators go green you will be ready to fly." } Item { @@ -36,7 +78,7 @@ Rectangle { spacing: 10 Repeater { - model: autopilot.components + model: autopilot.vehicleComponents // Outer summary item rectangle Rectangle { @@ -54,11 +96,10 @@ Rectangle { color: qgcPal.windowShadeDark // Title text - Text { + QGCLabel { anchors.fill: parent color: qgcPal.buttonText - font.pixelSize: 12 text: modelData.name.toUpperCase() verticalAlignment: TextEdit.AlignVCenter diff --git a/src/ui/AudioOutputWidget.h b/src/ViewWidgets/ParameterEditorWidget.cc similarity index 68% rename from src/ui/AudioOutputWidget.h rename to src/ViewWidgets/ParameterEditorWidget.cc index 4fd439872016d9eebcfed0aca8007ae7a1e84c91..a1151c038cc68c652dde1aaa40aa98c5203736e1 100644 --- a/src/ui/AudioOutputWidget.h +++ b/src/ViewWidgets/ParameterEditorWidget.cc @@ -23,36 +23,15 @@ This file is part of the QGROUNDCONTROL project /** * @file - * @brief Definition of class AudioOutputWidget + * @brief Definition of class ParameterEditorWidget * @author Lorenz Meier * */ -#ifndef AUDIOOUTPUTWIDGET_H -#define AUDIOOUTPUTWIDGET_H +#include "ParameterEditorWidget.h" -#include - -namespace Ui +ParameterEditorWidget::ParameterEditorWidget(QWidget *parent) : + QGCQmlWidgetHolder(parent) { -class AudioOutputWidget; + setSource(QUrl::fromUserInput("qrc:/qml/ParameterEditorWidget.qml")); } - -/** - * @brief Widget to control audio/volume/mute - */ -class AudioOutputWidget : public QWidget -{ - Q_OBJECT -public: - AudioOutputWidget(QWidget *parent = 0); - ~AudioOutputWidget(); - -protected: - void changeEvent(QEvent *e); - -private: - Ui::AudioOutputWidget *m_ui; -}; - -#endif // AUDIOOUTPUTWIDGET_H diff --git a/src/ui/map3D/ObstacleGroupNode.h b/src/ViewWidgets/ParameterEditorWidget.h similarity index 62% rename from src/ui/map3D/ObstacleGroupNode.h rename to src/ViewWidgets/ParameterEditorWidget.h index 8a0715ebe566fa67ff97e4e298c724e1b1cdd6df..809d647e6d68b48b8f574d1a13f5886034f59028 100644 --- a/src/ui/map3D/ObstacleGroupNode.h +++ b/src/ViewWidgets/ParameterEditorWidget.h @@ -2,7 +2,7 @@ QGroundControl Open Source Ground Control Station -(c) 2009, 2010 QGROUNDCONTROL PROJECT +(c) 2009, 2015 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project @@ -21,30 +21,20 @@ This file is part of the QGROUNDCONTROL project ======================================================================*/ -/** - * @file - * @brief Definition of the class ObstacleGroupNode. - * - * @author Lionel Heng - * - */ +/// @file +/// @author Don Gagne -#ifndef OBSTACLEGROUPNODE_H -#define OBSTACLEGROUPNODE_H +#ifndef PARAMETEREDITORWIDGET_H +#define PARAMETEREDITORWIDGET_H -#include +#include "QGCQmlWidgetHolder.h" -#include "UASInterface.h" - -class ObstacleGroupNode : public osg::Group +class ParameterEditorWidget : public QGCQmlWidgetHolder { + Q_OBJECT + public: - ObstacleGroupNode(); - - void init(void); - void clear(void); - void update(double robotX, double robotY, double robotZ, - const px::ObstacleList& obstacleList); + ParameterEditorWidget(QWidget *parent = 0); }; -#endif // OBSTACLEGROUPNODE_H +#endif diff --git a/src/ViewWidgets/ParameterEditorWidget.qml b/src/ViewWidgets/ParameterEditorWidget.qml new file mode 100644 index 0000000000000000000000000000000000000000..234dee17ab79a6de8dd9d061a01c64e1527df879 --- /dev/null +++ b/src/ViewWidgets/ParameterEditorWidget.qml @@ -0,0 +1,42 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + +QGROUNDCONTROL is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +QGROUNDCONTROL is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/// @file +/// @author Don Gagne + +import QtQuick 2.2 + +import QGroundControl.Palette 1.0 +import QGroundControl.Controls 1.0 + +ViewWidget { + connectedComponent: editorComponent + + Component { + id: editorComponent + + ParameterEditor { + fullMode: false + } + } +} diff --git a/src/ViewWidgets/ViewWidget.qml b/src/ViewWidgets/ViewWidget.qml new file mode 100644 index 0000000000000000000000000000000000000000..aab2e57cca8ffa22466aecb5466b9f78c4124dad --- /dev/null +++ b/src/ViewWidgets/ViewWidget.qml @@ -0,0 +1,82 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 + +import QGroundControl.Palette 1.0 +import QGroundControl.Controllers 1.0 + +Rectangle { + property Component connectedComponent: __componentConnected + property Component disconnectedComponent: __componentDisconnected + + QGCPalette { id: __qgcPal; colorGroupEnabled: enabled } + ViewWidgetController { id: __controller } + + color: __qgcPal.window + + Component.onCompleted: __controller.checkForVehicle() + + Connections { + target: __controller + + onPluginConnected: { + pageLoader.autopilot = autopilot + pageLoader.sourceComponent = connectedComponent + } + + onPluginDisconnected: { + pageLoader.sourceComponent = disconnectedComponent + pageLoader.autopilot = {} + } + } + + Loader { + id: pageLoader + + anchors.fill: parent + + property var autopilot + + sourceComponent: __componentDisconnected + } + + Component { + id: __componentConnected + + Rectangle { + QGCPalette { id: __qgcPal; colorGroupEnabled: enabled } + + anchors.fill: parent + color: __qgcPal.window + + QGCLabel { + anchors.fill: parent + + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + + text: "missing connected implementation" + } + } + } + + Component { + id: __componentDisconnected + + Rectangle { + QGCPalette { id: __qgcPal; colorGroupEnabled: enabled } + + anchors.fill: parent + color: __qgcPal.window + + QGCLabel { + anchors.fill: parent + + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + + text: "no vehicle connected" + } + } + } +} diff --git a/src/ViewWidgets/ViewWidgetController.cc b/src/ViewWidgets/ViewWidgetController.cc new file mode 100644 index 0000000000000000000000000000000000000000..095bb4db34b2fb5ab1d0437be248389ad33fe5d9 --- /dev/null +++ b/src/ViewWidgets/ViewWidgetController.cc @@ -0,0 +1,75 @@ +/*===================================================================== + + QGroundControl Open Source Ground Control Station + + (c) 2009 - 2014 QGROUNDCONTROL PROJECT + + This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + + ======================================================================*/ + +#include "ViewWidgetController.h" +#include "UASManager.h" +#include "AutoPilotPluginManager.h" + +ViewWidgetController::ViewWidgetController(void) : + _autopilot(NULL), + _uas(NULL) +{ + _uasManager = UASManager::instance(); + Q_ASSERT(_uasManager); + + connect(_uasManager, &UASManagerInterface::activeUASSet, this, &ViewWidgetController::_activeUasChanged); +} + +void ViewWidgetController::_activeUasChanged(UASInterface* currentUas) +{ + if (currentUas != _uas) { + if (_uas) { + disconnect(_autopilot, &AutoPilotPlugin::pluginReadyChanged, this, &ViewWidgetController::_pluginReadyChanged); + _uas = NULL; + _autopilot = NULL; + emit pluginDisconnected(); + } + + if (currentUas) { + _uas = currentUas; + _autopilot = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(currentUas); + Q_ASSERT(_autopilot); + + connect(_autopilot, &AutoPilotPlugin::pluginReadyChanged, this, &ViewWidgetController::_pluginReadyChanged); + if (_autopilot->pluginReady()) { + _pluginReadyChanged(true); + } + } + } +} + +void ViewWidgetController::_pluginReadyChanged(bool pluginReady) +{ + Q_ASSERT(_autopilot); + + if (pluginReady) { + emit pluginConnected(QVariant::fromValue(_autopilot)); + } else { + _activeUasChanged(NULL); + } +} + +Q_INVOKABLE void ViewWidgetController::checkForVehicle(void) +{ + _activeUasChanged(_uasManager->getActiveUAS()); +} diff --git a/src/VehicleSetup/ParameterEditor.h b/src/ViewWidgets/ViewWidgetController.h similarity index 64% rename from src/VehicleSetup/ParameterEditor.h rename to src/ViewWidgets/ViewWidgetController.h index 55d349265281f4d16deae0c70543f462444ceeeb..63a73f00dc3db8973f112f229016153692d1f305 100644 --- a/src/VehicleSetup/ParameterEditor.h +++ b/src/ViewWidgets/ViewWidgetController.h @@ -21,31 +21,36 @@ ======================================================================*/ -#ifndef PARAMETEREDITOR_H -#define PARAMETEREDITOR_H +#ifndef VIEWWIDGETCONTROLLER_H +#define VIEWWIDGETCONTROLLER_H -#include +#include #include "UASInterface.h" +#include "AutoPilotPlugin.h" +#include "UASManagerInterface.h" -/// @file -/// @brief This is the Parameter Editor widget which is used in the Parameters tab of Vehicle Setup. -/// @author Don Gagne - -namespace Ui { - class ParameterEditor; -} - -class ParameterEditor : public QWidget +class ViewWidgetController : public QObject { - Q_OBJECT - + Q_OBJECT + public: - explicit ParameterEditor(UASInterface* uas, const QStringList& filterList, QWidget* parent = 0); - ~ParameterEditor(); + ViewWidgetController(void); + + Q_INVOKABLE void checkForVehicle(void); + +signals: + void pluginConnected(QVariant autopilot); + void pluginDisconnected(void); + +private slots: + void _activeUasChanged(UASInterface* UAS); + void _pluginReadyChanged(bool pluginReady); private: - Ui::ParameterEditor* _ui; + AutoPilotPlugin* _autopilot; + UASManagerInterface* _uasManager; + UASInterface* _uas; }; -#endif +#endif \ No newline at end of file diff --git a/src/apps/qgcvideo/QGCVideoApp.cc b/src/apps/qgcvideo/QGCVideoApp.cc index 6695e48e91127256dbc84a17f95fcee9ed5fa747..4830ebc049bfad1a47c9f01dc483d51dfc21687c 100644 --- a/src/apps/qgcvideo/QGCVideoApp.cc +++ b/src/apps/qgcvideo/QGCVideoApp.cc @@ -71,7 +71,7 @@ QGCVideoApp::QGCVideoApp(int &argc, char* argv[]) : QApplication(argc, argv) // Set application font QFontDatabase fontDatabase = QFontDatabase(); - const QString fontFileName = ":/general/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app + const QString fontFileName = ":/res/fonts/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app const QString fontFamilyName = "Bitstream Vera Sans"; if(!QFile::exists(fontFileName)) printf("ERROR! font file: %s DOES NOT EXIST!\n", fontFileName.toStdString().c_str()); fontDatabase.addApplicationFont(fontFileName); diff --git a/src/apps/qgcvideo/QGCVideoWidget.cc b/src/apps/qgcvideo/QGCVideoWidget.cc index fdb10bd7898a04aeb35d924227474033b2cb4c20..59327fd11803707752b23a6edf3da58fbb7f3f03 100644 --- a/src/apps/qgcvideo/QGCVideoWidget.cc +++ b/src/apps/qgcvideo/QGCVideoWidget.cc @@ -177,7 +177,7 @@ QGCVideoWidget::QGCVideoWidget(QWidget* parent) //setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed)); fontDatabase = QFontDatabase(); - const QString fontFileName = ":/general/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app + const QString fontFileName = ":/res/fonts/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app const QString fontFamilyName = "Bitstream Vera Sans"; if(!QFile::exists(fontFileName)) qDebug() << "ERROR! font file: " << fontFileName << " DOES NOT EXIST!"; diff --git a/src/audio/QGCAudioWorker.cpp b/src/audio/QGCAudioWorker.cpp index 9738e29e3c8477f277aa15405076150008cc01e7..4425a7908725de69f00159264cb6106cbe5405d3 100644 --- a/src/audio/QGCAudioWorker.cpp +++ b/src/audio/QGCAudioWorker.cpp @@ -45,7 +45,7 @@ QGCAudioWorker::QGCAudioWorker(QObject *parent) : void QGCAudioWorker::init() { #ifdef QGC_NOTIFY_TUNES_ENABLED - sound = new QSound(":/files/audio/alert.wav"); + sound = new QSound(":/res/Alert"); #endif #if defined Q_OS_LINUX && defined QGC_SPEECH_ENABLED @@ -100,7 +100,7 @@ void QGCAudioWorker::say(QString inText, int severity) if (!muted) { - QString text = _fixMillisecondString(inText); + QString text = _fixTextMessageForAudio(inText); // Prepend high priority text with alert beep if (severity < GAudioOutput::AUDIO_SEVERITY_CRITICAL) { beep(); @@ -163,7 +163,7 @@ void QGCAudioWorker::beep() if (!muted) { #ifdef QGC_NOTIFY_TUNES_ENABLED - sound->play(":/files/audio/alert.wav"); + sound->play(":/res/Alert"); #endif } } @@ -187,10 +187,18 @@ bool QGCAudioWorker::_getMillisecondString(const QString& string, QString& match return false; } -QString QGCAudioWorker::_fixMillisecondString(const QString& string) { +QString QGCAudioWorker::_fixTextMessageForAudio(const QString& string) { QString match; QString newNumber; QString result = string; + //-- Look for modes + if(result.contains("POSCTL", Qt::CaseInsensitive)) { + result.replace("POSCTL", "Position Control", Qt::CaseInsensitive); + } else if(result.contains("ALTCTL", Qt::CaseInsensitive)) { + result.replace("ALTCTL", "Altitude Control", Qt::CaseInsensitive); + } else if(result.contains("RTL", Qt::CaseInsensitive)) { + result.replace("RTL", "Return To Land", Qt::CaseInsensitive); + } int number; if(_getMillisecondString(string, match, number) && number > 1000) { if(number < 60000) { diff --git a/src/audio/QGCAudioWorker.h b/src/audio/QGCAudioWorker.h index beafe429e7329040576ba11728787def41dcad60..1d40322912c976340feb02b4cbc6c7049ab1ecbe 100644 --- a/src/audio/QGCAudioWorker.h +++ b/src/audio/QGCAudioWorker.h @@ -51,7 +51,7 @@ protected: QTimer *emergencyTimer; bool muted; private: - QString _fixMillisecondString(const QString& string); + QString _fixTextMessageForAudio(const QString& string); bool _getMillisecondString(const QString& string, QString& match, int& number); }; diff --git a/src/comm/LinkConfiguration.cc b/src/comm/LinkConfiguration.cc index 57ee6c929496a9ede30825fd3b12c79f185d718c..2b793a4ffe95e383a4127a47b7802a898954e5b0 100644 --- a/src/comm/LinkConfiguration.cc +++ b/src/comm/LinkConfiguration.cc @@ -32,7 +32,7 @@ This file is part of the QGROUNDCONTROL project #include "UDPLink.h" #include "TCPLink.h" -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG #include "MockLink.h" #endif @@ -40,6 +40,7 @@ This file is part of the QGROUNDCONTROL project LinkConfiguration::LinkConfiguration(const QString& name) : _preferred(false) + , _dynamic(false) { _link = NULL; _name = name; @@ -48,18 +49,20 @@ LinkConfiguration::LinkConfiguration(const QString& name) LinkConfiguration::LinkConfiguration(LinkConfiguration* copy) { - _link = copy->getLink(); - _name = copy->name(); - _preferred = copy->isPreferred(); + _link = copy->getLink(); + _name = copy->name(); + _preferred = copy->isPreferred(); + _dynamic = copy->isDynamic(); Q_ASSERT(!_name.isEmpty()); } void LinkConfiguration::copyFrom(LinkConfiguration* source) { Q_ASSERT(source != NULL); - _link = source->getLink(); - _name = source->name(); - _preferred = source->isPreferred(); + _link = source->getLink(); + _name = source->name(); + _preferred = source->isPreferred(); + _dynamic = source->isDynamic(); } /*! @@ -88,7 +91,7 @@ LinkConfiguration* LinkConfiguration::createSettings(int type, const QString& na case LinkConfiguration::TypeTcp: config = new TCPConfiguration(name); break; -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG case LinkConfiguration::TypeMock: config = new MockConfiguration(name); break; @@ -114,7 +117,7 @@ LinkConfiguration* LinkConfiguration::duplicateSettings(LinkConfiguration* sourc case TypeTcp: dupe = new TCPConfiguration(dynamic_cast(source)); break; -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG case TypeMock: dupe = new MockConfiguration(dynamic_cast(source)); break; diff --git a/src/comm/LinkConfiguration.h b/src/comm/LinkConfiguration.h index 1216d40487d8e1d9ca36a04ce184594e59249de8..34639bc60d44f3936adfe1552aaa0dae60c40d18 100644 --- a/src/comm/LinkConfiguration.h +++ b/src/comm/LinkConfiguration.h @@ -44,14 +44,11 @@ public: TypeTcp, ///< TCP Link // TODO Below is not yet implemented #if 0 - TypeSimulation, ///< Simulation Link TypeForwarding, ///< Forwarding Link TypeXbee, ///< XBee Proprietary Link TypeOpal, ///< Opal-RT Link #endif -#ifdef UNITTEST_BUILD TypeMock, ///< Mock Link for Unitesting -#endif TypeLast // Last type value (type >= TypeLast == invalid) }; @@ -97,6 +94,18 @@ public: */ void setPreferred(bool preferred = true) { _preferred = preferred; } + /*! + * + * Is this a dynamic configuration? (non persistent) + * @return True if this is an automatically added configuration. + */ + bool isDynamic() { return _dynamic; } + + /*! + * Set if this is this a dynamic configuration. (decided at runtime) + */ + void setDynamic(bool dynamic = true) { _dynamic = dynamic; } + /// Virtual Methods /*! @@ -171,6 +180,7 @@ protected: private: QString _name; bool _preferred; ///< Determined internally if this is a preferred connection. It comes up first in the drop down box. + bool _dynamic; ///< A connection added automatically and not persistent (unless it's edited). }; #endif // LINKCONFIGURATION_H diff --git a/src/comm/LinkInterface.h b/src/comm/LinkInterface.h index ac0cd704ea1b373e8251051c25593150c9d7f04a..04bd5a2a9a2be545e8de1f1c36396e2efe1db8ef 100644 --- a/src/comm/LinkInterface.h +++ b/src/comm/LinkInterface.h @@ -37,6 +37,9 @@ along with PIXHAWK. If not, see . #include #include #include +#include + +#include "QGCMAVLink.h" class LinkManager; class LinkConfiguration; @@ -50,38 +53,10 @@ class LinkInterface : public QThread { Q_OBJECT - // Only LinkManager is allowed to _connect, _disconnect or delete a link + // Only LinkManager is allowed to create/delete or _connect/_disconnect a link friend class LinkManager; public: - LinkInterface() : - QThread(0), - _ownedByLinkManager(false), - _deletedByLinkManager(false), - _flaggedForDeletion(false) - { - // Initialize everything for the data rate calculation buffers. - inDataIndex = 0; - outDataIndex = 0; - - // Initialize our data rate buffers. - memset(inDataWriteAmounts, 0, sizeof(inDataWriteAmounts)); - memset(inDataWriteTimes, 0, sizeof(inDataWriteTimes)); - memset(outDataWriteAmounts,0, sizeof(outDataWriteAmounts)); - memset(outDataWriteTimes, 0, sizeof(outDataWriteTimes)); - - qRegisterMetaType("LinkInterface*"); - } - - /** - * @brief Destructor - * LinkManager take ownership of Links once they are added to it. Once added to LinkManager - * use LinkManager::deleteLink to remove if necessary. - **/ - virtual ~LinkInterface() { - Q_ASSERT(!_ownedByLinkManager || _deletedByLinkManager); - } - /** * @brief Get link configuration (if used) * @return A pointer to the instance of LinkConfiguration if supported. NULL otherwise. @@ -90,14 +65,6 @@ public: /* Connection management */ - /** - * @brief Get the ID of this link - * - * The ID is an unsigned integer, starting at 0 - * @return ID of this link - **/ - virtual int getId() const = 0; - /** * @brief Get the human readable name of this link */ @@ -150,6 +117,10 @@ public: { return getCurrentDataRate(outDataIndex, outDataWriteTimes, outDataWriteAmounts); } + + /// mavlink channel to use for this link, as used by mavlink_parse_char. The mavlink channel is only + /// set into the link when it is added to LinkManager + uint8_t getMavlinkChannel(void) const { Q_ASSERT(_mavlinkChannelSet); return _mavlinkChannel; } // These are left unimplemented in order to cause linker errors which indicate incorrect usage of // connect/disconnect on link directly. All connect/disconnect calls should be made through LinkManager. @@ -169,7 +140,26 @@ public slots: * @param length The length of the data array **/ virtual void writeBytes(const char *bytes, qint64 length) = 0; - + +protected: + // Links are only created by LinkManager so constructor is not public + LinkInterface() : + QThread(0), + _mavlinkChannelSet(false) + { + // Initialize everything for the data rate calculation buffers. + inDataIndex = 0; + outDataIndex = 0; + + // Initialize our data rate buffers. + memset(inDataWriteAmounts, 0, sizeof(inDataWriteAmounts)); + memset(inDataWriteTimes, 0, sizeof(inDataWriteTimes)); + memset(outDataWriteAmounts,0, sizeof(outDataWriteAmounts)); + memset(outDataWriteTimes, 0, sizeof(outDataWriteTimes)); + + qRegisterMetaType("LinkInterface*"); + } + signals: /** @@ -309,11 +299,6 @@ protected: return dataRate; } - static int getNextLinkId() { - static int nextId = 1; - return nextId++; - } - protected slots: /** @@ -338,10 +323,14 @@ private: * @return True if connection could be terminated, false otherwise **/ virtual bool _disconnect(void) = 0; - - bool _ownedByLinkManager; ///< true: This link has been added to LinkManager, false: Link not added to LinkManager - bool _deletedByLinkManager; ///< true: Link being deleted from LinkManager, false: error, Links should only be deleted from LinkManager - bool _flaggedForDeletion; ///< true: Garbage colletion ready + + /// Sets the mavlink channel to use for this link + void _setMavlinkChannel(uint8_t channel) { Q_ASSERT(!_mavlinkChannelSet); _mavlinkChannelSet = true; _mavlinkChannel = channel; } + + bool _mavlinkChannelSet; ///< true: _mavlinkChannel has been set + uint8_t _mavlinkChannel; ///< mavlink channel to use for this link, as used by mavlink_parse_char }; +typedef QSharedPointer SharedLinkInterface; + #endif // _LINKINTERFACE_H_ diff --git a/src/comm/LinkManager.cc b/src/comm/LinkManager.cc index f8ba9d11f50115ebe88a8b3d1e29dae8e172c41e..78caa91cc8cb14fb153cc75f0c3dc3213774ca2a 100644 --- a/src/comm/LinkManager.cc +++ b/src/comm/LinkManager.cc @@ -32,7 +32,11 @@ This file is part of the QGROUNDCONTROL project #include #include #include +#ifdef __android__ +#include "qserialportinfo.h" +#else #include +#endif #include "LinkManager.h" #include "MainWindow.h" @@ -52,6 +56,8 @@ LinkManager::LinkManager(QObject* parent) , _configUpdateSuspended(false) , _configurationsLoaded(false) , _connectionsSuspended(false) + , _mavlinkChannelsUsedBitMask(0) + , _nullSharedLink(NULL) { connect(&_portListTimer, &QTimer::timeout, this, &LinkManager::_updateConfigurationList); _portListTimer.start(1000); @@ -68,7 +74,7 @@ LinkManager::~LinkManager() Q_ASSERT_X(_links.count() == 0, "LinkManager", "LinkManager::_shutdown should have been called previously"); } -LinkInterface* LinkManager::createLink(LinkConfiguration* config) +LinkInterface* LinkManager::createConnectedLink(LinkConfiguration* config) { Q_ASSERT(config); LinkInterface* pLink = NULL; @@ -82,40 +88,48 @@ LinkInterface* LinkManager::createLink(LinkConfiguration* config) case LinkConfiguration::TypeTcp: pLink = new TCPLink(dynamic_cast(config)); break; -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG case LinkConfiguration::TypeMock: pLink = new MockLink(dynamic_cast(config)); break; #endif } if(pLink) { - addLink(pLink); + _addLink(pLink); + connectLink(pLink); } return pLink; } -LinkInterface* LinkManager::createLink(const QString& name) +LinkInterface* LinkManager::createConnectedLink(const QString& name) { Q_ASSERT(name.isEmpty() == false); for(int i = 0; i < _linkConfigurations.count(); i++) { LinkConfiguration* conf = _linkConfigurations.at(i); if(conf && conf->name() == name) - return createLink(conf); + return createConnectedLink(conf); } return NULL; } -void LinkManager::addLink(LinkInterface* link) +void LinkManager::_addLink(LinkInterface* link) { Q_ASSERT(link); - // Take ownership for delete - link->_ownedByLinkManager = true; - _linkListMutex.lock(); - if (!_links.contains(link)) { - _links.append(link); + if (!containsLink(link)) { + // Find a mavlink channel to use for this link + for (int i=0; i<32; i++) { + if (!(_mavlinkChannelsUsedBitMask && 1 << i)) { + mavlink_reset_channel_status(i); + link->_setMavlinkChannel(i); + _mavlinkChannelsUsedBitMask |= i << i; + break; + } + } + + _links.append(QSharedPointer(link)); _linkListMutex.unlock(); emit newLink(link); } else { @@ -145,14 +159,12 @@ bool LinkManager::connectAll() bool allConnected = true; - _linkListMutex.lock(); - foreach (LinkInterface* link, _links) { - Q_ASSERT(link); - if (!link->_connect()) { + foreach (SharedLinkInterface sharedLink, _links) { + Q_ASSERT(sharedLink.data()); + if (!sharedLink.data()->_connect()) { allConnected = false; } } - _linkListMutex.unlock(); return allConnected; } @@ -161,15 +173,15 @@ bool LinkManager::disconnectAll() { bool allDisconnected = true; - _linkListMutex.lock(); - foreach (LinkInterface* link, _links) - { - Q_ASSERT(link); - if (!link->_disconnect()) { + // Make a copy so the list is modified out from under us + QList links = _links; + + foreach (SharedLinkInterface sharedLink, links) { + Q_ASSERT(sharedLink.data()); + if (!disconnectLink(sharedLink.data())) { allDisconnected = false; } } - _linkListMutex.unlock(); return allDisconnected; } @@ -197,51 +209,37 @@ bool LinkManager::disconnectLink(LinkInterface* link) if(config) { config->setLink(NULL); } - // Link is now done and over with. We can't yet delete it because it - // takes a while for the MAVLink protocol to take notice of it. We - // flag it for delayed deletion for final clean up. - link->_flaggedForDeletion = true; - QTimer::singleShot(1000, this, &LinkManager::_delayedDeleteLink); + _deleteLink(link); return true; } else { return false; } } -void LinkManager::_delayedDeleteLink() -{ - _linkListMutex.lock(); - foreach (LinkInterface* link, _links) - { - Q_ASSERT(link); - if (link->_flaggedForDeletion) { - qDebug() << "Link deleted: " << link->getName(); - _linkListMutex.unlock(); - deleteLink(link); - return; - } - } - _linkListMutex.unlock(); -} - -void LinkManager::deleteLink(LinkInterface* link) +void LinkManager::_deleteLink(LinkInterface* link) { Q_ASSERT(link); _linkListMutex.lock(); - - Q_ASSERT(_links.contains(link)); - _links.removeOne(link); - Q_ASSERT(!_links.contains(link)); + + // Free up the mavlink channel associated with this link + _mavlinkChannelsUsedBitMask &= ~(1 << link->getMavlinkChannel()); + + bool found = false; + for (int i=0; i<_links.count(); i++) { + if (_links[i].data() == link) { + _links.removeAt(i); + found = true; + break; + } + } + Q_UNUSED(found); + Q_ASSERT(found); _linkListMutex.unlock(); // Emit removal of link emit linkDeleted(link); - - Q_ASSERT(link->_ownedByLinkManager); - link->_deletedByLinkManager = true; // Signal that this is a valid delete - delete link; } /** @@ -249,29 +247,13 @@ void LinkManager::deleteLink(LinkInterface* link) */ const QList LinkManager::getLinks() { - _linkListMutex.lock(); - QList ret(_links); - _linkListMutex.unlock(); - return ret; -} - -const QList LinkManager::getSerialLinks() -{ - _linkListMutex.lock(); - QList s; - - foreach (LinkInterface* link, _links) - { - Q_ASSERT(link); - - SerialLink* serialLink = qobject_cast(link); - - if (serialLink) - s.append(serialLink); + QList list; + + foreach (SharedLinkInterface sharedLink, _links) { + list << sharedLink.data(); } - _linkListMutex.unlock(); - - return s; + + return list; } /// @brief If all new connections should be suspended a message is displayed to the user and true @@ -296,10 +278,8 @@ void LinkManager::setConnectionsSuspended(QString reason) void LinkManager::_shutdown(void) { - QList links = _links; - foreach(LinkInterface* link, links) { - disconnectLink(link); - deleteLink(link); + while (_links.count() != 0) { + disconnectLink(_links[0].data()); } } @@ -349,19 +329,22 @@ void LinkManager::saveLinkConfigurationList() { QSettings settings; settings.remove(LinkConfiguration::settingsRoot()); - QString root(LinkConfiguration::settingsRoot()); - settings.setValue(root + "/count", _linkConfigurations.count()); int index = 0; foreach (LinkConfiguration* pLink, _linkConfigurations) { Q_ASSERT(pLink != NULL); - root = LinkConfiguration::settingsRoot(); - root += QString("/Link%1").arg(index++); - settings.setValue(root + "/name", pLink->name()); - settings.setValue(root + "/type", pLink->type()); - settings.setValue(root + "/preferred", pLink->isPreferred()); - // Have the instance save its own values - pLink->saveSettings(settings, root); + if(!pLink->isDynamic()) + { + QString root = LinkConfiguration::settingsRoot(); + root += QString("/Link%1").arg(index++); + settings.setValue(root + "/name", pLink->name()); + settings.setValue(root + "/type", pLink->type()); + settings.setValue(root + "/preferred", pLink->isPreferred()); + // Have the instance save its own values + pLink->saveSettings(settings, root); + } } + QString root(LinkConfiguration::settingsRoot()); + settings.setValue(root + "/count", index); emit linkConfigurationChanged(); } @@ -399,7 +382,7 @@ void LinkManager::loadLinkConfigurationList() pLink = (LinkConfiguration*)new TCPConfiguration(name); pLink->setPreferred(preferred); break; -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG case LinkConfiguration::TypeMock: pLink = (LinkConfiguration*)new MockConfiguration(name); pLink->setPreferred(false); @@ -426,6 +409,15 @@ void LinkManager::loadLinkConfigurationList() } emit linkConfigurationChanged(); } + + // Debug buids always add MockLink automatically +#ifdef QT_DEBUG + MockConfiguration* pMock = new MockConfiguration("Mock Link"); + pMock->setDynamic(true); + addLinkConfiguration(pMock); + emit linkConfigurationChanged(); +#endif + // Enable automatic PX4 hunting _configurationsLoaded = true; } @@ -451,6 +443,7 @@ void LinkManager::_updateConfigurationList(void) return; } bool saveList = false; + QStringList currentPorts; QList portList = QSerialPortInfo::availablePorts(); // Iterate Comm Ports foreach (QSerialPortInfo portInfo, portList) { @@ -463,9 +456,11 @@ void LinkManager::_updateConfigurationList(void) qDebug() << "serialNumber: " << portInfo.serialNumber(); qDebug() << "vendorIdentifier: " << portInfo.vendorIdentifier(); #endif + // Save port name + currentPorts << portInfo.systemLocation(); // Is this a PX4? if (portInfo.vendorIdentifier() == 9900) { - SerialConfiguration* pSerial = _findSerialConfiguration(portInfo.portName()); + SerialConfiguration* pSerial = _findSerialConfiguration(portInfo.systemLocation()); if (pSerial) { //-- If this port is configured make sure it has the preferred flag set if(!pSerial->isPreferred()) { @@ -475,17 +470,92 @@ void LinkManager::_updateConfigurationList(void) } else { // Lets create a new Serial configuration automatically pSerial = new SerialConfiguration(QString("Pixhawk on %1").arg(portInfo.portName().trimmed())); + pSerial->setDynamic(true); pSerial->setPreferred(true); pSerial->setBaud(115200); - pSerial->setPortName(portInfo.portName()); + pSerial->setPortName(portInfo.systemLocation()); + addLinkConfiguration(pSerial); + saveList = true; + } + } + // Is this an FTDI Chip? It could be a 3DR Modem + if (portInfo.vendorIdentifier() == 1027) { + SerialConfiguration* pSerial = _findSerialConfiguration(portInfo.systemLocation()); + if (pSerial) { + //-- If this port is configured make sure it has the preferred flag set, unless someone else already has it set. + if(!pSerial->isPreferred() && !saveList) { + pSerial->setPreferred(true); + saveList = true; + } + } else { + // Lets create a new Serial configuration automatically (an assumption at best) + pSerial = new SerialConfiguration(QString("3DR Radio on %1").arg(portInfo.portName().trimmed())); + pSerial->setDynamic(true); + pSerial->setPreferred(true); + pSerial->setBaud(57600); + pSerial->setPortName(portInfo.systemLocation()); addLinkConfiguration(pSerial); saveList = true; } } } + // Now we go through the current configuration list and make sure any dynamic config has gone away + QList _confToDelete; + foreach (LinkConfiguration* pLink, _linkConfigurations) { + Q_ASSERT(pLink != NULL); + // We only care about dynamic links + if(pLink->isDynamic()) { + if(pLink->type() == LinkConfiguration::TypeSerial) { + SerialConfiguration* pSerial = dynamic_cast(pLink); + if(!currentPorts.contains(pSerial->portName())) { + _confToDelete.append(pSerial); + } + } + } + } + // Now remove all links that are gone + foreach (LinkConfiguration* pDelete, _confToDelete) { + removeLinkConfiguration(pDelete); + saveList = true; + } // Save configuration list, which will also trigger a signal for the UI if(saveList) { saveLinkConfigurationList(); } } +bool LinkManager::containsLink(LinkInterface* link) +{ + bool found = false; + foreach (SharedLinkInterface sharedLink, _links) { + if (sharedLink.data() == link) { + found = true; + break; + } + } + return found; +} + +bool LinkManager::anyConnectedLinks(void) +{ + bool found = false; + foreach (SharedLinkInterface sharedLink, _links) { + if (sharedLink.data()->isConnected()) { + found = true; + break; + } + } + return found; +} + +SharedLinkInterface& LinkManager::sharedPointerForLink(LinkInterface* link) +{ + for (int i=0; i<_links.count(); i++) { + if (_links[i].data() == link) { + return _links[i]; + } + } + // This should never happen + Q_ASSERT(false); + return _nullSharedLink; +} diff --git a/src/comm/LinkManager.h b/src/comm/LinkManager.h index 1553f07a6bef5c3e1e6376c3cdfd463310d89516..4cbab25798f3473cd620e1ce65bd0f166ff0870e 100644 --- a/src/comm/LinkManager.h +++ b/src/comm/LinkManager.h @@ -39,7 +39,7 @@ This file is part of the PIXHAWK project #include "UDPLink.h" #include "TCPLink.h" -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG #include "MockLink.h" #endif @@ -103,21 +103,18 @@ public: /// Sets the flag to allow new connections to be made void setConnectionsAllowed(void) { _connectionsSuspended = false; } - /// Creates (and adds) a link based on the given configuration instance. LinkManager takes ownership of this object. To delete - /// it, call LinkManager::deleteLink. - LinkInterface* createLink(LinkConfiguration* config); + /// Creates, connects (and adds) a link based on the given configuration instance. + LinkInterface* createConnectedLink(LinkConfiguration* config); - /// Creates (and adds) a link based on the given configuration name. LinkManager takes ownership of this object. To delete - /// it, call LinkManager::deleteLink. - LinkInterface* createLink(const QString& name); + /// Creates, connects (and adds) a link based on the given configuration name. + LinkInterface* createConnectedLink(const QString& name); - /// Adds the link to the LinkManager. LinkManager takes ownership of this object. To delete - /// it, call LinkManager::deleteLink. - void addLink(LinkInterface* link); - - /// Deletes the specified link. Will disconnect if connected. - // TODO Will also crash if called. MAVLink protocol is not handling the disconnect properly. - void deleteLink(LinkInterface* link); + /// Returns true if the link manager is holding this link + bool containsLink(LinkInterface* link); + + /// Returns the QSharedPointer for this link. You must use SharedLinkInterface if you are going to + /// keep references to a link in a thread other than the main ui thread. + SharedLinkInterface& sharedPointerForLink(LinkInterface* link); /// Re-connects all existing links bool connectAll(); @@ -130,6 +127,14 @@ public: /// Disconnect the specified link bool disconnectLink(LinkInterface* link); + + /// Returns true if there are any connected links + bool anyConnectedLinks(void); + + // The following APIs are public but should not be called in normal use. The are mainly exposed + // here for unit test code. + void _deleteLink(LinkInterface* link); + void _addLink(LinkInterface* link); signals: void newLink(LinkInterface* link); @@ -141,13 +146,12 @@ signals: private slots: void _linkConnected(void); void _linkDisconnected(void); - void _delayedDeleteLink(); private: /// All access to LinkManager is through LinkManager::instance LinkManager(QObject* parent = NULL); ~LinkManager(); - + virtual void _shutdown(void); bool _connectionsSuspendedMsg(void); @@ -155,7 +159,12 @@ private: SerialConfiguration* _findSerialConfiguration(const QString& portName); QList _linkConfigurations; ///< List of configured links - QList _links; ///< List of available links + + /// List of available links kept as QSharedPointers. We use QSharedPointer since + /// there are other objects that maintain copies of these links in other threads. + /// The reference counting allows for orderly deletion. + QList _links; + QMutex _linkListMutex; ///< Mutex for thread safe access to _links list bool _configUpdateSuspended; ///< true: stop updating configuration list @@ -163,6 +172,10 @@ private: bool _connectionsSuspended; ///< true: all new connections should not be allowed QString _connectionsSuspendedReason; ///< User visible reason for suspension QTimer _portListTimer; + + uint32_t _mavlinkChannelsUsedBitMask; + + SharedLinkInterface _nullSharedLink; }; #endif diff --git a/src/comm/MAVLinkProtocol.cc b/src/comm/MAVLinkProtocol.cc index 5922b558560f1ecdfa6bca388cdd56ff8eb33eee..c4af745c401d88910c2021c66a716d43091bdd07 100644 --- a/src/comm/MAVLinkProtocol.cc +++ b/src/comm/MAVLinkProtocol.cc @@ -29,10 +29,11 @@ #include "QGCMAVLinkUASFactory.h" #include "QGC.h" #include "QGCApplication.h" +#include "QGCLoggingCategory.h" Q_DECLARE_METATYPE(mavlink_message_t) IMPLEMENT_QGC_SINGLETON(MAVLinkProtocol, MAVLinkProtocol) -Q_LOGGING_CATEGORY(MAVLinkProtocolLog, "MAVLinkProtocolLog") +QGC_LOGGING_CATEGORY(MAVLinkProtocolLog, "MAVLinkProtocolLog") const char* MAVLinkProtocol::_tempLogFileTemplate = "FlightDataXXXXXX"; ///< Template for temporary log file const char* MAVLinkProtocol::_logFileExtension = "mavlink"; ///< Extension for log files @@ -144,12 +145,12 @@ void MAVLinkProtocol::storeSettings() void MAVLinkProtocol::resetMetadataForLink(const LinkInterface *link) { - int linkId = link->getId(); - totalReceiveCounter[linkId] = 0; - totalLossCounter[linkId] = 0; - totalErrorCounter[linkId] = 0; - currReceiveCounter[linkId] = 0; - currLossCounter[linkId] = 0; + int channel = link->getMavlinkChannel(); + totalReceiveCounter[channel] = 0; + totalLossCounter[channel] = 0; + totalErrorCounter[channel] = 0; + currReceiveCounter[channel] = 0; + currLossCounter[channel] = 0; } void MAVLinkProtocol::linkConnected(void) @@ -174,8 +175,12 @@ void MAVLinkProtocol::_linkStatusChanged(LinkInterface* link, bool connected) Q_ASSERT(link); if (connected) { - Q_ASSERT(!_connectedLinks.contains(link)); - _connectedLinks.append(link); + foreach (SharedLinkInterface sharedLink, _connectedLinks) { + Q_ASSERT(sharedLink.data() != link); + } + + // Use the same shared pointer as LinkManager + _connectedLinks.append(LinkManager::instance()->sharedPointerForLink(link)); if (_connectedLinks.count() == 1) { // This is the first link, we need to start logging @@ -191,8 +196,16 @@ void MAVLinkProtocol::_linkStatusChanged(LinkInterface* link, bool connected) link->writeBytes(cmd, strlen(cmd)); link->writeBytes(init, 4); } else { - Q_ASSERT(_connectedLinks.contains(link)); - _connectedLinks.removeOne(link); + bool found = false; + for (int i=0; i<_connectedLinks.count(); i++) { + if (_connectedLinks[i].data() == link) { + found = true; + _connectedLinks.removeAt(i); + break; + } + } + Q_UNUSED(found); + Q_ASSERT(found); if (_connectedLinks.count() == 0) { // Last link is gone, close out logging @@ -210,12 +223,18 @@ void MAVLinkProtocol::_linkStatusChanged(LinkInterface* link, bool connected) **/ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b) { + // Since receiveBytes signals cross threads we can end up with signals in the queue + // that come through after the link is disconnected. For these we just drop the data + // since the link is closed. + if (!LinkManager::instance()->containsLink(link)) { + return; + } + // receiveMutex.lock(); mavlink_message_t message; mavlink_status_t status; - // Cache the link ID for common use. - int linkId = link->getId(); + int mavlinkChannel = link->getMavlinkChannel(); static int mavlink09Count = 0; static int nonmavlinkCount = 0; @@ -224,9 +243,8 @@ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b) static bool checkedUserNonMavlink = false; static bool warnedUserNonMavlink = false; - // FIXME: Add check for if link->getId() >= MAVLINK_COMM_NUM_BUFFERS for (int position = 0; position < b.size(); position++) { - unsigned int decodeState = mavlink_parse_char(linkId, (uint8_t)(b[position]), &message, &status); + unsigned int decodeState = mavlink_parse_char(mavlinkChannel, (uint8_t)(b[position]), &message, &status); if ((uint8_t)b[position] == 0x55) mavlink09Count++; if ((mavlink09Count > 100) && !decodedFirstPacket && !warnedUser) @@ -368,8 +386,8 @@ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b) } // Increase receive counter - totalReceiveCounter[linkId]++; - currReceiveCounter[linkId]++; + totalReceiveCounter[mavlinkChannel]++; + currReceiveCounter[mavlinkChannel]++; // Determine what the next expected sequence number is, accounting for // never having seen a message for this system/component pair. @@ -390,22 +408,22 @@ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b) } // And log how many were lost for all time and just this timestep - totalLossCounter[linkId] += lostMessages; - currLossCounter[linkId] += lostMessages; + totalLossCounter[mavlinkChannel] += lostMessages; + currLossCounter[mavlinkChannel] += lostMessages; } // And update the last sequence number for this system/component pair lastIndex[message.sysid][message.compid] = expectedSeq; // Update on every 32th packet - if ((totalReceiveCounter[linkId] & 0x1F) == 0) + if ((totalReceiveCounter[mavlinkChannel] & 0x1F) == 0) { // Calculate new loss ratio // Receive loss - float receiveLoss = (double)currLossCounter[linkId]/(double)(currReceiveCounter[linkId]+currLossCounter[linkId]); + float receiveLoss = (double)currLossCounter[mavlinkChannel]/(double)(currReceiveCounter[mavlinkChannel]+currLossCounter[mavlinkChannel]); receiveLoss *= 100.0f; - currLossCounter[linkId] = 0; - currReceiveCounter[linkId] = 0; + currLossCounter[mavlinkChannel] = 0; + currReceiveCounter[mavlinkChannel] = 0; emit receiveLossChanged(message.sysid, receiveLoss); } @@ -484,7 +502,7 @@ void MAVLinkProtocol::sendMessage(LinkInterface* link, mavlink_message_t message static uint8_t buffer[MAVLINK_MAX_PACKET_LEN]; // Rewriting header to ensure correct link ID is set static uint8_t messageKeys[256] = MAVLINK_MESSAGE_CRCS; - if (link->getId() != 0) mavlink_finalize_message_chan(&message, this->getSystemId(), this->getComponentId(), link->getId(), message.len, messageKeys[message.msgid]); + mavlink_finalize_message_chan(&message, this->getSystemId(), this->getComponentId(), link->getMavlinkChannel(), message.len, messageKeys[message.msgid]); // Write message into buffer, prepending start sign int len = mavlink_msg_to_send_buffer(buffer, &message); // If link is connected @@ -507,7 +525,7 @@ void MAVLinkProtocol::sendMessage(LinkInterface* link, mavlink_message_t message static uint8_t buffer[MAVLINK_MAX_PACKET_LEN]; // Rewriting header to ensure correct link ID is set static uint8_t messageKeys[256] = MAVLINK_MESSAGE_CRCS; - if (link->getId() != 0) mavlink_finalize_message_chan(&message, systemid, componentid, link->getId(), message.len, messageKeys[message.msgid]); + mavlink_finalize_message_chan(&message, systemid, componentid, link->getMavlinkChannel(), message.len, messageKeys[message.msgid]); // Write message into buffer, prepending start sign int len = mavlink_msg_to_send_buffer(buffer, &message); // If link is connected diff --git a/src/comm/MAVLinkProtocol.h b/src/comm/MAVLinkProtocol.h index efdd4e4a553905dc6f6b04c62445c29881aaf14f..b190008f6351bad9f71b6c46c3ba854d6972d0f0 100644 --- a/src/comm/MAVLinkProtocol.h +++ b/src/comm/MAVLinkProtocol.h @@ -121,21 +121,21 @@ public: * @returns -1 if this is not available for this protocol, # of packets otherwise. */ qint32 getReceivedPacketCount(const LinkInterface *link) const { - return totalReceiveCounter[link->getId()]; + return totalReceiveCounter[link->getMavlinkChannel()]; } /** * Retrieve a total of all parsing errors for the specified link. * @returns -1 if this is not available for this protocol, # of errors otherwise. */ qint32 getParsingErrorCount(const LinkInterface *link) const { - return totalErrorCounter[link->getId()]; + return totalErrorCounter[link->getMavlinkChannel()]; } /** * Retrieve a total of all dropped packets for the specified link. * @returns -1 if this is not available for this protocol, # of packets otherwise. */ qint32 getDroppedPacketCount(const LinkInterface *link) const { - return totalLossCounter[link->getId()]; + return totalLossCounter[link->getMavlinkChannel()]; } /** * Reset the counters for all metadata for this link. @@ -254,7 +254,7 @@ signals: void paramRewriteTimeoutChanged(int ms); /** @brief Emitted if action guard status changed */ void actionGuardChanged(bool enabled); - /** @brief Emitted if actiion request timeout changed */ + /** @brief Emitted if action request timeout changed */ void actionRetransmissionTimeoutChanged(int ms); /** @brief Update the packet loss from one system */ void receiveLossChanged(int uasId, float loss); @@ -285,7 +285,10 @@ private: void _startLogging(void); void _stopLogging(void); - QList _connectedLinks; ///< List of all links connected to protocol + /// List of all links connected to protocol. We keep SharedLinkInterface objects + /// which are QSharedPointer's in order to maintain reference counts across threads. + /// This way Link deletion works correctly. + QList _connectedLinks; bool _logSuspendError; ///< true: Logging suspended due to error bool _logSuspendReplay; ///< true: Logging suspended due to replay diff --git a/src/comm/MAVLinkSimulationLink.cc b/src/comm/MAVLinkSimulationLink.cc deleted file mode 100644 index 0403823767f4cfbc1ca35f8d94d9e44757381ddd..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSimulationLink.cc +++ /dev/null @@ -1,866 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Implementation of simulated system link - * - * @author Lorenz Meier - * - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "LinkManager.h" -#include "MAVLinkProtocol.h" -#include "MAVLinkSimulationLink.h" -#include "QGCMAVLink.h" -#include "QGC.h" -#include "MAVLinkSimulationMAV.h" - -/** - * Create a simulated link. This link is connected to an input and output file. - * The link sends one line at a time at the specified sendrate. The timing of - * the sendrate is free of drift, which means it is stable on the long run. - * However, small deviations are mixed in to vary the sendrate slightly - * in order to simulate disturbances on a real communication link. - * - * @param readFile The file with the messages to read (must be in ASCII format, line breaks can be Unix or Windows style) - * @param writeFile The received messages are written to that file - * @param rate The rate at which the messages are sent (in intervals of milliseconds) - **/ -MAVLinkSimulationLink::MAVLinkSimulationLink(QString readFile, QString writeFile, int rate) : - readyBytes(0), - timeOffset(0) -{ - this->rate = rate; - _isConnected = false; - - onboardParams = QMap(); - onboardParams.insert("PID_ROLL_K_P", 0.5f); - onboardParams.insert("PID_PITCH_K_P", 0.5f); - onboardParams.insert("PID_YAW_K_P", 0.5f); - onboardParams.insert("PID_XY_K_P", 100.0f); - onboardParams.insert("PID_ALT_K_P", 0.5f); - onboardParams.insert("SYS_TYPE", 1); - onboardParams.insert("SYS_ID", systemId); - onboardParams.insert("RC4_REV", 0); - onboardParams.insert("RC5_REV", 1); - onboardParams.insert("HDNG2RLL_P", 0.7f); - onboardParams.insert("HDNG2RLL_I", 0.01f); - onboardParams.insert("HDNG2RLL_D", 0.02f); - onboardParams.insert("HDNG2RLL_IMAX", 500.0f); - onboardParams.insert("RLL2SRV_P", 0.4f); - onboardParams.insert("RLL2SRV_I", 0.0f); - onboardParams.insert("RLL2SRV_D", 0.0f); - onboardParams.insert("RLL2SRV_IMAX", 500.0f); - - // Comments on the variables can be found in the header file - - simulationFile = new QFile(readFile, this); - if (simulationFile->exists() && simulationFile->open(QIODevice::ReadOnly | QIODevice::Text)) - { - simulationHeader = simulationFile->readLine(); - } - receiveFile = new QFile(writeFile, this); - lastSent = QGC::groundTimeMilliseconds(); - - if (simulationFile->exists()) - { - this->name = "Simulation: " + QFileInfo(simulationFile->fileName()).fileName(); - } - else - { - this->name = "MAVLink simulation link"; - } - - - - // Initialize the pseudo-random number generator - srand(QTime::currentTime().msec()); - maxTimeNoise = 0; - this->id = getNextLinkId(); - LinkManager::instance()->addLink(this); -} - -MAVLinkSimulationLink::~MAVLinkSimulationLink() -{ - //TODO Check destructor - // fileStream->flush(); - // outStream->flush(); - // Force termination, there is no - // need for cleanup since - // this thread is not manipulating - // any relevant data - terminate(); - delete simulationFile; -} - -void MAVLinkSimulationLink::run() -{ - - status.voltage_battery = 0; - status.errors_comm = 0; - - system.base_mode = MAV_MODE_PREFLIGHT; - system.custom_mode = MAV_MODE_FLAG_MANUAL_INPUT_ENABLED | MAV_MODE_FLAG_SAFETY_ARMED; - system.system_status = MAV_STATE_UNINIT; - - forever - { - static quint64 last = 0; - - if (QGC::groundTimeMilliseconds() - last >= rate) - { - if (_isConnected) - { - mainloop(); - readBytes(); - } - else - { - // Sleep for substantially longer - // if not connected - QGC::SLEEP::msleep(500); - } - last = QGC::groundTimeMilliseconds(); - } - QGC::SLEEP::msleep(3); - } -} - -void MAVLinkSimulationLink::sendMAVLinkMessage(const mavlink_message_t* msg) -{ - // Allocate buffer with packet data - uint8_t buf[MAVLINK_MAX_PACKET_LEN]; - unsigned int bufferlength = mavlink_msg_to_send_buffer(buf, msg); - - // Pack to link buffer - readyBufferMutex.lock(); - for (unsigned int i = 0; i < bufferlength; i++) - { - readyBuffer.enqueue(*(buf + i)); - } - readyBufferMutex.unlock(); -} - -void MAVLinkSimulationLink::enqueue(uint8_t* stream, uint8_t* index, mavlink_message_t* msg) -{ - // Allocate buffer with packet data - uint8_t buf[MAVLINK_MAX_PACKET_LEN]; - unsigned int bufferlength = mavlink_msg_to_send_buffer(buf, msg); - //add data into datastream - memcpy(stream+(*index),buf, bufferlength); - (*index) += bufferlength; -} - -void MAVLinkSimulationLink::mainloop() -{ - - // Test for encoding / decoding packets - - // Test data stream - streampointer = 0; - - // Fake system values - - static float fullVoltage = 4.2f * 3.0f; - static float emptyVoltage = 3.35f * 3.0f; - static float voltage = fullVoltage; - static float drainRate = 0.025f; // x.xx% of the capacity is linearly drained per second - - mavlink_attitude_t attitude; - memset(&attitude, 0, sizeof(mavlink_attitude_t)); - mavlink_raw_imu_t rawImuValues; - memset(&rawImuValues, 0, sizeof(mavlink_raw_imu_t)); - - uint8_t buffer[MAVLINK_MAX_PACKET_LEN]; - int bufferlength; - mavlink_message_t msg; - - // Timers - static unsigned int rate1hzCounter = 1; - static unsigned int rate10hzCounter = 1; - static unsigned int rate50hzCounter = 1; - static unsigned int circleCounter = 0; - - // Vary values - - // VOLTAGE - // The battery is drained constantly - voltage = voltage - ((fullVoltage - emptyVoltage) * drainRate / rate); - if (voltage < 3.550f * 3.0f) voltage = 3.550f * 3.0f; - - static int state = 0; - - if (state == 0) - { - state++; - } - - - // 50 HZ TASKS - if (rate50hzCounter == 1000 / rate / 40) - { - if (simulationFile->isOpen()) - { - if (simulationFile->atEnd()) { - // We reached the end of the file, start from scratch - simulationFile->reset(); - simulationHeader = simulationFile->readLine(); - } - - // Data was made available, read one line - // first entry is the timestamp - QString values = QString(simulationFile->readLine()); - QStringList parts = values.split("\t"); - QStringList keys = simulationHeader.split("\t"); - //qDebug() << simulationHeader; - //qDebug() << values; - bool ok; - static quint64 lastTime = 0; - static quint64 baseTime = 0; - quint64 time = QString(parts.first()).toLongLong(&ok, 10); - // FIXME Remove multiplicaton by 1000 - time *= 1000; - - if (ok) { - if (timeOffset == 0) { - timeOffset = time; - baseTime = time; - } - - if (lastTime > time) { - // We have wrapped around in the logfile - // Add the measurement time interval to the base time - baseTime += lastTime - timeOffset; - } - lastTime = time; - - time = time - timeOffset + baseTime; - - // Gather individual measurement values - for (int i = 1; i < (parts.size() - 1); ++i) { - // Get one data field - bool res; - double d = QString(parts.at(i)).toDouble(&res); - if (!res) d = 0; - - if (keys.value(i, "") == "Accel._X") { - rawImuValues.xacc = d; - } - - if (keys.value(i, "") == "Accel._Y") { - rawImuValues.yacc = d; - } - - if (keys.value(i, "") == "Accel._Z") { - rawImuValues.zacc = d; - } - if (keys.value(i, "") == "Gyro_Phi") { - rawImuValues.xgyro = d; - attitude.rollspeed = ((d-29.000)/15000.0)*2.7-2.7-2.65; - } - - if (keys.value(i, "") == "Gyro_Theta") { - rawImuValues.ygyro = d; - attitude.pitchspeed = ((d-29.000)/15000.0)*2.7-2.7-2.65; - } - - if (keys.value(i, "") == "Gyro_Psi") { - rawImuValues.zgyro = d; - attitude.yawspeed = ((d-29.000)/3000.0)*2.7-2.7-2.65; - } - if (keys.value(i, "") == "roll_IMU") { - attitude.roll = d; - } - - if (keys.value(i, "") == "pitch_IMU") { - attitude.pitch = d; - } - - if (keys.value(i, "") == "yaw_IMU") { - attitude.yaw = d; - } - - //Accel._X Accel._Y Accel._Z Battery Bottom_Rotor CPU_Load Ground_Dist. Gyro_Phi Gyro_Psi Gyro_Theta Left_Servo Mag._X Mag._Y Mag._Z Pressure Right_Servo Temperature Top_Rotor pitch_IMU roll_IMU yaw_IMU - - } - // Send out packets - - - // ATTITUDE - attitude.time_boot_ms = time/1000; - // Pack message and get size of encoded byte string - mavlink_msg_attitude_encode(systemId, componentId, &msg, &attitude); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - // IMU - rawImuValues.time_usec = time; - rawImuValues.xmag = 0; - rawImuValues.ymag = 0; - rawImuValues.zmag = 0; - // Pack message and get size of encoded byte string - mavlink_msg_raw_imu_encode(systemId, componentId, &msg, &rawImuValues); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - //qDebug() << "ATTITUDE" << "BUF LEN" << bufferlength << "POINTER" << streampointer; - - //qDebug() << "REALTIME" << QGC::groundTimeMilliseconds() << "ONBOARDTIME" << attitude.msec << "ROLL" << attitude.roll; - - } - - } - - rate50hzCounter = 1; - } - - - // 10 HZ TASKS - if (rate10hzCounter == 1000 / rate / 9) { - rate10hzCounter = 1; - - double lastX = x; - double lastY = y; - double lastZ = z; - double hackDt = 0.1f; // 100 ms - - // Move X Position - x = 12.0*sin(((double)circleCounter)/200.0); - y = 5.0*cos(((double)circleCounter)/200.0); - z = 1.8 + 1.2*sin(((double)circleCounter)/200.0); - - double xSpeed = (x - lastX)/hackDt; - double ySpeed = (y - lastY)/hackDt; - double zSpeed = (z - lastZ)/hackDt; - - - - circleCounter++; - - -// x = (x > 5.0f) ? 5.0f : x; -// y = (y > 5.0f) ? 5.0f : y; -// z = (z > 3.0f) ? 3.0f : z; - -// x = (x < -5.0f) ? -5.0f : x; -// y = (y < -5.0f) ? -5.0f : y; -// z = (z < -3.0f) ? -3.0f : z; - - mavlink_message_t ret; - - // Send back new position - mavlink_msg_local_position_ned_pack(systemId, componentId, &ret, 0, x, y, -fabs(z), xSpeed, ySpeed, zSpeed); - bufferlength = mavlink_msg_to_send_buffer(buffer, &ret); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - -// // GPS RAW -// mavlink_msg_gps_raw_pack(systemId, componentId, &ret, 0, 3, 47.376417+(x*0.00001), 8.548103+(y*0.00001), z, 0, 0, 2.5f, 0.1f); -// bufferlength = mavlink_msg_to_send_buffer(buffer, &ret); -// //add data into datastream -// memcpy(stream+streampointer,buffer, bufferlength); -// streampointer += bufferlength; - - // GLOBAL POSITION - mavlink_msg_global_position_int_pack(systemId, componentId, &ret, 0, (473780.28137103+(x))*1E3, (85489.9892510421+(y))*1E3, (z+550.0)*1000.0, (z+550.0)*1000.0-1, xSpeed, ySpeed, zSpeed, yaw); - bufferlength = mavlink_msg_to_send_buffer(buffer, &ret); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - // GLOBAL POSITION VEHICLE 2 - mavlink_msg_global_position_int_pack(systemId+1, componentId+1, &ret, 0, (473780.28137103+(x+0.00001))*1E3, (85489.9892510421+((y/2)+0.00001))*1E3, (z+550.0)*1000.0, (z+550.0)*1000.0-1, xSpeed, ySpeed, zSpeed, yaw); - bufferlength = mavlink_msg_to_send_buffer(buffer, &ret); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - -// // ATTITUDE VEHICLE 2 -// mavlink_msg_attitude_pack(54, MAV_COMP_ID_IMU, &ret, 0, 0, 0, atan2((y/2)+0.3, (x+0.002)), 0, 0, 0); -// sendMAVLinkMessage(&ret); - - -// // GLOBAL POSITION VEHICLE 3 -// mavlink_msg_global_position_int_pack(60, componentId, &ret, 0, (473780.28137103+(x/2+0.002))*1E3, (85489.9892510421+((y*2)+0.3))*1E3, (z+590.0)*1000.0, 0*100.0, 0*100.0, 0*100.0); -// bufferlength = mavlink_msg_to_send_buffer(buffer, &ret); -// //add data into datastream -// memcpy(stream+streampointer,buffer, bufferlength); -// streampointer += bufferlength; - - static int rcCounter = 0; - if (rcCounter == 2) { - mavlink_rc_channels_t chan; - chan.time_boot_ms = 0; - chan.chan1_raw = 1000 + ((int)(fabs(x) * 1000) % 2000); - chan.chan2_raw = 1000 + ((int)(fabs(y) * 1000) % 2000); - chan.chan3_raw = 1000 + ((int)(fabs(z) * 1000) % 2000); - chan.chan4_raw = (chan.chan1_raw + chan.chan2_raw) / 2.0f; - chan.chan5_raw = (chan.chan3_raw + chan.chan4_raw) / 2.0f; - chan.chan6_raw = (chan.chan3_raw + chan.chan2_raw) / 2.0f; - chan.chan7_raw = (chan.chan4_raw + chan.chan2_raw) / 2.0f; - chan.chan8_raw = 0; - chan.rssi = 100; - mavlink_msg_rc_channels_encode(systemId, componentId, &msg, &chan); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - rcCounter = 0; - } - rcCounter++; - - } - - // 1 HZ TASKS - if (rate1hzCounter == 1000 / rate / 1) { - // STATE - static int statusCounter = 0; - if (statusCounter == 100) { - system.base_mode = (system.base_mode + 1) % MAV_MODE_ENUM_END; - statusCounter = 0; - } - statusCounter++; - - static int detectionCounter = 6; - if (detectionCounter % 10 == 0) { - } - detectionCounter++; - - status.voltage_battery = voltage * 1000; // millivolts - status.load = 33 * detectionCounter % 1000; - - // Pack message and get size of encoded byte string - mavlink_msg_sys_status_encode(systemId, componentId, &msg, &status); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - // Pack debug text message - mavlink_statustext_t text; - text.severity = 0; - strcpy((char*)(text.text), "Text message from system 32"); - mavlink_msg_statustext_encode(systemId, componentId, &msg, &text); - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - memcpy(stream+streampointer, buffer, bufferlength); - streampointer += bufferlength; - - /* - // Pack message and get size of encoded byte string - mavlink_msg_boot_pack(systemId, componentId, &msg, version); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength;*/ - - // HEARTBEAT - - static int typeCounter = 0; - uint8_t mavType; - if (typeCounter < 10) - { - mavType = MAV_TYPE_QUADROTOR; - } - else - { - mavType = typeCounter % (MAV_TYPE_GCS); - } - typeCounter++; - - // Pack message and get size of encoded byte string - mavlink_msg_heartbeat_pack(systemId, componentId, &msg, mavType, MAV_AUTOPILOT_PIXHAWK, system.base_mode, system.custom_mode, system.system_status); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //qDebug() << "CRC:" << msg.ck_a << msg.ck_b; - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - // Pack message and get size of encoded byte string - mavlink_msg_heartbeat_pack(systemId+1, componentId+1, &msg, mavType, MAV_AUTOPILOT_GENERIC, system.base_mode, system.custom_mode, system.system_status); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //qDebug() << "CRC:" << msg.ck_a << msg.ck_b; - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - - // Send controller states - - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - memcpy(stream+streampointer, buffer, bufferlength); - streampointer += bufferlength; - - // Pack message and get size of encoded byte string - mavlink_msg_sys_status_encode(54, componentId, &msg, &status); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - rate1hzCounter = 1; - } - - // FULL RATE TASKS - // Default is 50 Hz - - /* - // 50 HZ TASKS - if (rate50hzCounter == 1000 / rate / 50) - { - - //streampointer = 0; - - // Attitude - - // Pack message and get size of encoded byte string - mavlink_msg_attitude_pack(systemId, componentId, &msg, usec, roll, pitch, yaw, 0, 0, 0); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer += bufferlength; - - rate50hzCounter = 1; - }*/ - - readyBufferMutex.lock(); - for (unsigned int i = 0; i < streampointer; i++) { - readyBuffer.enqueue(*(stream + i)); - } - readyBufferMutex.unlock(); - - // Increment counters after full main loop - rate1hzCounter++; - rate10hzCounter++; - rate50hzCounter++; -} - - -void MAVLinkSimulationLink::writeBytes(const char* data, qint64 size) -{ - // Parse bytes - mavlink_message_t msg; - mavlink_status_t comm; - - uint8_t stream[2048]; - int streampointer = 0; - uint8_t buffer[MAVLINK_MAX_PACKET_LEN]; - int bufferlength = 0; - - // Initialize drop count to 0 so it isn't referenced uninitialized when returned at the bottom of this function - comm.packet_rx_drop_count = 0; - - // Output all bytes as hex digits - for (int i=0; iid, data[i], &msg, &comm)) - { - // MESSAGE RECEIVED! -// qDebug() << "SIMULATION LINK RECEIVED MESSAGE!"; - emit messageReceived(msg); - - switch (msg.msgid) - { - // SET THE SYSTEM MODE - case MAVLINK_MSG_ID_SET_MODE: - { - mavlink_set_mode_t mode; - mavlink_msg_set_mode_decode(&msg, &mode); - // Set mode indepent of mode.target - system.base_mode = mode.base_mode; - } - break; - // EXECUTE OPERATOR ACTIONS - case MAVLINK_MSG_ID_COMMAND_LONG: - { - mavlink_command_long_t action; - mavlink_msg_command_long_decode(&msg, &action); - -// qDebug() << "SIM" << "received action" << action.command << "for system" << action.target_system; - - // FIXME MAVLINKV10PORTINGNEEDED -// switch (action.action) { -// case MAV_ACTION_LAUNCH: -// status.status = MAV_STATE_ACTIVE; -// status.mode = MAV_MODE_AUTO; -// break; -// case MAV_ACTION_RETURN: -// status.status = MAV_STATE_ACTIVE; -// break; -// case MAV_ACTION_MOTORS_START: -// status.status = MAV_STATE_ACTIVE; -// status.mode = MAV_MODE_LOCKED; -// break; -// case MAV_ACTION_MOTORS_STOP: -// status.status = MAV_STATE_STANDBY; -// status.mode = MAV_MODE_LOCKED; -// break; -// case MAV_ACTION_EMCY_KILL: -// status.status = MAV_STATE_EMERGENCY; -// status.mode = MAV_MODE_MANUAL; -// break; -// case MAV_ACTION_SHUTDOWN: -// status.status = MAV_STATE_POWEROFF; -// status.mode = MAV_MODE_LOCKED; -// break; -// } - } - break; - case MAVLINK_MSG_ID_PARAM_REQUEST_LIST: - { -// qDebug() << "GCS REQUESTED PARAM LIST FROM SIMULATION"; - mavlink_param_request_list_t read; - mavlink_msg_param_request_list_decode(&msg, &read); - if (read.target_system == systemId) - { - // Output all params - // Iterate through all components, through all parameters and emit them - QMap::iterator i; - // Iterate through all components / subsystems - int j = 0; - for (i = onboardParams.begin(); i != onboardParams.end(); ++i) { - if (j != 5) { - // Pack message and get size of encoded byte string - mavlink_msg_param_value_pack(read.target_system, componentId, &msg, i.key().toStdString().c_str(), i.value(), MAV_PARAM_TYPE_REAL32, onboardParams.size(), j); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer+=bufferlength; - } - j++; - } - -// qDebug() << "SIMULATION SENT PARAMETERS TO GCS"; - } - } - break; - case MAVLINK_MSG_ID_PARAM_SET: - { - // Drop on even milliseconds - if (QGC::groundTimeMilliseconds() % 2 == 0) - { -// qDebug() << "SIMULATION RECEIVED COMMAND TO SET PARAMETER"; - mavlink_param_set_t set; - mavlink_msg_param_set_decode(&msg, &set); - // if (set.target_system == systemId) - // { - QString key = QString((char*)set.param_id); - if (onboardParams.contains(key)) - { - onboardParams.remove(key); - onboardParams.insert(key, set.param_value); - - // Pack message and get size of encoded byte string - mavlink_msg_param_value_pack(set.target_system, componentId, &msg, key.toStdString().c_str(), set.param_value, MAV_PARAM_TYPE_REAL32, onboardParams.size(), onboardParams.keys().indexOf(key)); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer+=bufferlength; - } - // } - } - } - break; - case MAVLINK_MSG_ID_PARAM_REQUEST_READ: - { -// qDebug() << "SIMULATION RECEIVED COMMAND TO SEND PARAMETER"; - mavlink_param_request_read_t read; - mavlink_msg_param_request_read_decode(&msg, &read); - QByteArray bytes((char*)read.param_id, MAVLINK_MSG_PARAM_REQUEST_READ_FIELD_PARAM_ID_LEN); - QString key = QString(bytes); - if (onboardParams.contains(key)) - { - float paramValue = onboardParams.value(key); - - // Pack message and get size of encoded byte string - mavlink_msg_param_value_pack(read.target_system, componentId, &msg, key.toStdString().c_str(), paramValue, MAV_PARAM_TYPE_REAL32, onboardParams.size(), onboardParams.keys().indexOf(key)); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer+=bufferlength; - //qDebug() << "Sending PARAM" << key; - } - else if (read.param_index >= 0 && read.param_index < onboardParams.keys().size()) - { - key = onboardParams.keys().at(read.param_index); - float paramValue = onboardParams.value(key); - - // Pack message and get size of encoded byte string - mavlink_msg_param_value_pack(read.target_system, componentId, &msg, key.toStdString().c_str(), paramValue, MAV_PARAM_TYPE_REAL32, onboardParams.size(), onboardParams.keys().indexOf(key)); - // Allocate buffer with packet data - bufferlength = mavlink_msg_to_send_buffer(buffer, &msg); - //add data into datastream - memcpy(stream+streampointer,buffer, bufferlength); - streampointer+=bufferlength; - //qDebug() << "Sending PARAM #ID" << (read.param_index) << "KEY:" << key; - } - } - break; - } - } - } - - // Log the amount and time written out for future data rate calculations. - // While this interface doesn't actually write any data to external systems, - // this data "transmit" here should still count towards the outgoing data rate. - QMutexLocker dataRateLocker(&dataRateMutex); - logDataRateToBuffer(outDataWriteAmounts, outDataWriteTimes, &outDataIndex, size, QDateTime::currentMSecsSinceEpoch()); - - readyBufferMutex.lock(); - for (int i = 0; i < streampointer; i++) - { - readyBuffer.enqueue(*(stream + i)); - } - readyBufferMutex.unlock(); - - // Update comm status - status.errors_comm = comm.packet_rx_drop_count; - -} - - -void MAVLinkSimulationLink::readBytes() -{ - // Lock concurrent resource readyBuffer - readyBufferMutex.lock(); - const qint64 maxLength = 2048; - char data[maxLength]; - qint64 len = qMin((qint64)readyBuffer.size(), maxLength); - - for (unsigned int i = 0; i < len; i++) { - *(data + i) = readyBuffer.takeFirst(); - } - - QByteArray b(data, len); - emit bytesReceived(this, b); - readyBufferMutex.unlock(); - - // Log the amount and time received for future data rate calculations. - QMutexLocker dataRateLocker(&dataRateMutex); - logDataRateToBuffer(inDataWriteAmounts, inDataWriteTimes, &inDataIndex, len, QDateTime::currentMSecsSinceEpoch()); - -} - -/** - * Disconnect the connection. - * - * @return True if connection has been disconnected, false if connection - * couldn't be disconnected. - **/ -bool MAVLinkSimulationLink::_disconnect(void) -{ - - if(isConnected()) - { - // timer->stop(); - - _isConnected = false; - - emit disconnected(); - - //exit(); - } - - return true; -} - -/** - * Connect the link. - * - * @return True if connection has been established, false if connection - * couldn't be established. - **/ -bool MAVLinkSimulationLink::_connect(void) -{ - _isConnected = true; - emit connected(); - - start(LowPriority); - MAVLinkSimulationMAV* mav1 = new MAVLinkSimulationMAV(this, 1, 37.480391, -122.282883); - Q_UNUSED(mav1); -// MAVLinkSimulationMAV* mav2 = new MAVLinkSimulationMAV(this, 2, 47.375, 8.548, 1); -// Q_UNUSED(mav2); - // timer->start(rate); - return true; -} - -/** - * Check if connection is active. - * - * @return True if link is connected, false otherwise. - **/ -bool MAVLinkSimulationLink::isConnected() const -{ - return _isConnected; -} - -int MAVLinkSimulationLink::getId() const -{ - return id; -} - -QString MAVLinkSimulationLink::getName() const -{ - return name; -} - -qint64 MAVLinkSimulationLink::getConnectionSpeed() const -{ - /* 100 Mbit is reasonable fast and sufficient for all embedded applications */ - return 100000000; -} - -qint64 MAVLinkSimulationLink::getCurrentInDataRate() const -{ - return 0; -} - -qint64 MAVLinkSimulationLink::getCurrentOutDataRate() const -{ - return 0; -} diff --git a/src/comm/MAVLinkSimulationLink.h b/src/comm/MAVLinkSimulationLink.h deleted file mode 100644 index 1c35a69fc3aec2dd2adaeb835802b7e578eec4f3..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSimulationLink.h +++ /dev/null @@ -1,140 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of MAVLinkSimulationLink - * - * @author Lorenz Meier - * - */ - -#ifndef MAVLINKSIMULATIONLINK_H -#define MAVLINKSIMULATIONLINK_H - -#include -#include -#include -#include -#include -#include -#include -#include -#include "QGCMAVLink.h" - -#include "LinkInterface.h" - -class MAVLinkSimulationLink : public LinkInterface -{ - Q_OBJECT -public: - MAVLinkSimulationLink(QString readFile="", QString writeFile="", int rate=5); - ~MAVLinkSimulationLink(); - bool isConnected() const; - - void run(); - void requestReset() { } - - // Extensive statistics for scientific purposes - qint64 getConnectionSpeed() const; - qint64 getCurrentInDataRate() const; - qint64 getCurrentOutDataRate() const; - - QString getName() const; - int getId() const; - int getBaudRate() const; - int getBaudRateType() const; - int getFlowType() const; - int getParityType() const; - int getDataBitsType() const; - int getStopBitsType() const; - - // These are left unimplemented in order to cause linker errors which indicate incorrect usage of - // connect/disconnect on link directly. All connect/disconnect calls should be made through LinkManager. - bool connect(void); - bool disconnect(void); - -public slots: - void writeBytes(const char* data, qint64 size); - void readBytes(); - /** @brief Mainloop simulating the mainloop of the MAV */ - virtual void mainloop(); - void sendMAVLinkMessage(const mavlink_message_t* msg); - - -protected: - - // UAS properties - float roll, pitch, yaw; - double x, y, z; - double spX, spY, spZ, spYaw; - int battery; - - QTimer* timer; - /** File which contains the input data (simulated robot messages) **/ - QFile* simulationFile; - QFile* mavlinkLogFile; - QString simulationHeader; - /** File where the commands sent by the groundstation are stored **/ - QFile* receiveFile; - QTextStream textStream; - QTextStream* fileStream; - QTextStream* outStream; - /** Buffer which can be read from connected protocols through readBytes(). **/ - QMutex readyBufferMutex; - bool _isConnected; - quint64 rate; - int maxTimeNoise; - quint64 lastSent; - static const int streamlength = 4096; - unsigned int streampointer; - //const int testoffset = 0; - uint8_t stream[streamlength]; - - int readyBytes; - QQueue readyBuffer; - - int id; - QString name; - qint64 timeOffset; - mavlink_sys_status_t status; - mavlink_heartbeat_t system; - QMap onboardParams; - - void enqueue(uint8_t* stream, uint8_t* index, mavlink_message_t* msg); - - static const uint8_t systemId = 220; - static const uint8_t componentId = 200; - static const uint16_t version = 1000; - -signals: - void valueChanged(int uasId, QString curve, double value, quint64 usec); - void messageReceived(const mavlink_message_t& message); - -private: - // From LinkInterface - virtual bool _connect(void); - virtual bool _disconnect(void); -}; - -#endif // MAVLINKSIMULATIONLINK_H diff --git a/src/comm/MAVLinkSimulationMAV.cc b/src/comm/MAVLinkSimulationMAV.cc deleted file mode 100644 index af12867dd26344cabe9c49d8a5feb62fb068bc4b..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSimulationMAV.cc +++ /dev/null @@ -1,522 +0,0 @@ -#include -#include -#include -#include - -#include "MAVLinkSimulationMAV.h" - -MAVLinkSimulationMAV::MAVLinkSimulationMAV(MAVLinkSimulationLink *parent, int systemid, double lat, double lon, int version) : - QObject(parent), - link(parent), - planner(parent, systemid), - systemid(systemid), - timer25Hz(0), - timer10Hz(0), - timer1Hz(0), - latitude(lat), - longitude(lon), - altitude(550.0), - x(lat), - y(lon), - z(altitude), - roll(0.0), - pitch(0.0), - yaw(0.0), - rollspeed(0.0), - pitchspeed(0.0), - yawspeed(0.0), - globalNavigation(true), - firstWP(false), - // previousSPX(8.548056), - // previousSPY(47.376389), - // previousSPZ(550), - // previousSPYaw(0.0), - // nextSPX(8.548056), - // nextSPY(47.376389), - // nextSPZ(550), - previousSPX(37.480391), - previousSPY(122.282883), - previousSPZ(550), - previousSPYaw(0.0), - nextSPX(37.480391), - nextSPY(122.282883), - nextSPZ(550), - nextSPYaw(0.0), - sys_mode(MAV_MODE_PREFLIGHT), - sys_state(MAV_STATE_STANDBY), - nav_mode(0), - flying(false), - mavlink_version(version) -{ - // Please note: The waypoint planner is running - connect(&mainloopTimer, SIGNAL(timeout()), this, SLOT(mainloop())); - connect(&planner, SIGNAL(messageSent(mavlink_message_t)), this, SLOT(handleMessage(mavlink_message_t))); - connect(link, SIGNAL(messageReceived(mavlink_message_t)), this, SLOT(handleMessage(mavlink_message_t))); - mainloopTimer.start(20); - mainloop(); -} - -void MAVLinkSimulationMAV::mainloop() -{ - // Calculate new simulator values - // double maxSpeed = 0.0001; // rad/s in earth coordinate frame - - // double xNew = // (nextSPX - previousSPX) - - if (flying) { - sys_state = MAV_STATE_ACTIVE; - sys_mode = MAV_MODE_AUTO_ARMED; - nav_mode = 0; - } - - // 1 Hz execution - if (timer1Hz <= 0) { - mavlink_message_t msg; - mavlink_msg_heartbeat_pack(systemid, MAV_COMP_ID_IMU, &msg, MAV_TYPE_FIXED_WING, MAV_AUTOPILOT_PIXHAWK, MAV_MODE_GUIDED_ARMED, 0, MAV_STATE_ACTIVE); - link->sendMAVLinkMessage(&msg); - planner.handleMessage(msg); - - mavlink_servo_output_raw_t servos; - servos.time_usec = 0; - servos.servo1_raw = 1000; - servos.servo2_raw = 1250; - servos.servo3_raw = 1400; - servos.servo4_raw = 1500; - servos.servo5_raw = 1800; - servos.servo6_raw = 1500; - servos.servo7_raw = 1500; - servos.servo8_raw = 2000; - servos.port = 1; // set a fake port number - - mavlink_msg_servo_output_raw_encode(systemid, MAV_COMP_ID_IMU, &msg, &servos); - link->sendMAVLinkMessage(&msg); - timer1Hz = 50; - } - - // 10 Hz execution - if (timer10Hz <= 0) { - double radPer100ms = 0.00006; - double altPer100ms = 0.4; - double xm = (nextSPX - x); - double ym = (nextSPY - y); - double zm = (nextSPZ - z); - - float zsign = (zm < 0) ? -1.0f : 1.0f; - - if (!(sys_mode & MAV_MODE_FLAG_DECODE_POSITION_HIL)) - { - if (!firstWP) { - //float trueyaw = atan2f(xm, ym); - - float newYaw = atan2f(ym, xm); - - if (fabs(yaw - newYaw) < 90) { - yaw = yaw*0.7 + 0.3*newYaw; - } else { - yaw = newYaw; - } - - //qDebug() << "SIMULATION MAV: x:" << xm << "y:" << ym << "z:" << zm << "yaw:" << yaw; - - //if (sqrt(xm*xm+ym*ym) > 0.0000001) - if (flying) { - x += cos(yaw)*radPer100ms; - y += sin(yaw)*radPer100ms; - z += altPer100ms*zsign; - } - - //if (xm < 0.001) xm - } else { - x = nextSPX; - y = nextSPY; - z = nextSPZ; - firstWP = false; -// qDebug() << "INIT STEP"; - } - } - else - { - // FIXME Implement heading and altitude controller - - } - - // GLOBAL POSITION - mavlink_message_t msg; - mavlink_global_position_int_t pos; - pos.alt = altitude*1000.0; - pos.lat = longitude*1E7; - pos.lon = longitude*1E7; - pos.vx = sin(yaw)*10.0f*100.0f; - pos.vy = 0; - pos.vz = altPer100ms*10.0f*100.0f*zsign*-1.0f; - mavlink_msg_global_position_int_encode(systemid, MAV_COMP_ID_IMU, &msg, &pos); - link->sendMAVLinkMessage(&msg); - planner.handleMessage(msg); - - // ATTITUDE - mavlink_attitude_t attitude; - attitude.time_boot_ms = 0; - attitude.roll = roll; - attitude.pitch = pitch; - attitude.yaw = yaw; - attitude.rollspeed = rollspeed; - attitude.pitchspeed = pitchspeed; - attitude.yawspeed = yawspeed; - - mavlink_msg_attitude_encode(systemid, MAV_COMP_ID_IMU, &msg, &attitude); - link->sendMAVLinkMessage(&msg); - - // SYSTEM STATUS - mavlink_sys_status_t status; - - // Since the simulation outputs global position, attitude and raw pressure we specify that the - // sensors that would be collecting this information are present, enabled and healthy. - - status.onboard_control_sensors_present = MAV_SYS_STATUS_SENSOR_3D_GYRO | - MAV_SYS_STATUS_SENSOR_3D_ACCEL | - MAV_SYS_STATUS_SENSOR_3D_MAG | - MAV_SYS_STATUS_SENSOR_ABSOLUTE_PRESSURE | - MAV_SYS_STATUS_SENSOR_GPS; - - status.onboard_control_sensors_enabled = status.onboard_control_sensors_present; - status.onboard_control_sensors_health = status.onboard_control_sensors_present; - status.load = 300; - status.voltage_battery = 10500; - status.current_battery = -1; // -1: autopilot does not measure the current - status.drop_rate_comm = 0; - status.errors_comm = 0; - status.errors_count1 = 0; - status.errors_count2 = 0; - status.errors_count3 = 0; - status.errors_count4 = 0; - status.battery_remaining = 90; - mavlink_msg_sys_status_encode(systemid, MAV_COMP_ID_IMU, &msg, &status); - link->sendMAVLinkMessage(&msg); - timer10Hz = 5; - - // VFR HUD - mavlink_vfr_hud_t hud; - hud.airspeed = pos.vx/100.0f; - hud.groundspeed = pos.vx/100.0f; - hud.alt = altitude; - hud.heading = static_cast((yaw/M_PI)*180.0f+180.0f) % 360; - hud.climb = pos.vz/100.0f; - hud.throttle = 90; - mavlink_msg_vfr_hud_encode(systemid, MAV_COMP_ID_IMU, &msg, &hud); - link->sendMAVLinkMessage(&msg); - - // NAV CONTROLLER - mavlink_nav_controller_output_t nav; - nav.nav_roll = roll; - nav.nav_pitch = pitch; - nav.nav_bearing = yaw; - nav.target_bearing = yaw; - nav.wp_dist = 2.0f; - nav.alt_error = 0.5f; - nav.xtrack_error = 0.2f; - nav.aspd_error = 0.0f; - mavlink_msg_nav_controller_output_encode(systemid, MAV_COMP_ID_IMU, &msg, &nav); - link->sendMAVLinkMessage(&msg); - - // RAW PRESSURE - mavlink_raw_pressure_t pressure; - pressure.press_abs = 1000; - pressure.press_diff1 = 2000; - pressure.press_diff2 = 5000; - pressure.temperature = 18150; // 18.15 deg Celsius - pressure.time_usec = 0; // Works also with zero timestamp - mavlink_msg_raw_pressure_encode(systemid, MAV_COMP_ID_IMU, &msg, &pressure); - link->sendMAVLinkMessage(&msg); - } - - // 25 Hz execution - if (timer25Hz <= 0) { - // The message container to be used for sending - mavlink_message_t ret; - - if (sys_mode & MAV_MODE_FLAG_DECODE_POSITION_HIL) - { - mavlink_hil_controls_t hil; - hil.roll_ailerons = 0.0f; - hil.pitch_elevator = 0.05f; - hil.yaw_rudder = 0.05f; - hil.throttle = 0.6f; - hil.aux1 = 0.0f; - hil.aux2 = 0.0f; - hil.aux3 = 0.0f; - hil.aux4 = 0.0f; - hil.mode = MAV_MODE_FLAG_HIL_ENABLED; - hil.nav_mode = 0; // not currently used by any HIL consumers - - // Encode the data (adding header and checksums, etc.) - mavlink_msg_hil_controls_encode(systemid, MAV_COMP_ID_IMU, &ret, &hil); - // And send it - link->sendMAVLinkMessage(&ret); - } - - // Send actual controller outputs - // This message just shows the direction - // and magnitude of the control output - // mavlink_position_controller_output_t pos; - // pos.x = sin(yaw)*127.0f; - // pos.y = cos(yaw)*127.0f; - // pos.z = 0; - // mavlink_msg_position_controller_output_encode(systemid, MAV_COMP_ID_IMU, &ret, &pos); - // link->sendMAVLinkMessage(&ret); - - // Send a named value with name "FLOAT" and 0.5f as value - - // The message container to be used for sending - //mavlink_message_t ret; - // The C-struct holding the data to be sent - mavlink_named_value_float_t val; - - // Fill in the data - // Name of the value, maximum 10 characters - // see full message specs at: - // http://pixhawk.ethz.ch/wiki/mavlink/ - strcpy((char *)val.name, "FLOAT"); - // Value, in this case 0.5 - val.value = 0.5f; - - // Encode the data (adding header and checksums, etc.) - mavlink_msg_named_value_float_encode(systemid, MAV_COMP_ID_IMU, &ret, &val); - // And send it - link->sendMAVLinkMessage(&ret); - - // MICROCONTROLLER SEND CODE: - - // uint8_t buf[MAVLINK_MAX_PACKET_LEN]; - // int16_t len = mavlink_msg_to_send_buffer(buf, &ret); - // uart0_transmit(buf, len); - - - // SEND INTEGER VALUE - - // We are reusing the "mavlink_message_t ret" - // message buffer - - // The C-struct holding the data to be sent - mavlink_named_value_int_t valint; - - // Fill in the data - // Name of the value, maximum 10 characters - // see full message specs at: - // http://pixhawk.ethz.ch/wiki/mavlink/ - strcpy((char *)valint.name, "INTEGER"); - // Value, in this case 18000 - valint.value = 18000; - - // Encode the data (adding header and checksums, etc.) - mavlink_msg_named_value_int_encode(systemid, MAV_COMP_ID_IMU, &ret, &valint); - // And send it - link->sendMAVLinkMessage(&ret); - - // MICROCONTROLLER SEND CODE: - - // uint8_t buf[MAVLINK_MAX_PACKET_LEN]; - // int16_t len = mavlink_msg_to_send_buffer(buf, &ret); - // uart0_transmit(buf, len); - - timer25Hz = 2; - } - - timer1Hz--; - timer10Hz--; - timer25Hz--; -} - -// Uncomment to turn on debug message printing -//#define DEBUG_PRINT_MESSAGE - -#ifdef DEBUG_PRINT_MESSAGE - -//static unsigned chan_counts[MAVLINK_COMM_NUM_BUFFERS]; - -static const unsigned message_lengths[] = MAVLINK_MESSAGE_LENGTHS; -//static unsigned error_count; - -mavlink_message_info_t message_info[256] = MAVLINK_MESSAGE_INFO; - -static void print_one_field(const mavlink_message_t *msg, const mavlink_field_info_t *f, int idx) -{ -#define PRINT_FORMAT(f, def) (f->print_format?f->print_format:def) - switch (f->type) { - case MAVLINK_TYPE_CHAR: - qDebug(PRINT_FORMAT(f, "%c"), _MAV_RETURN_char(msg, f->wire_offset+idx*1)); - break; - case MAVLINK_TYPE_UINT8_T: - qDebug(PRINT_FORMAT(f, "%u"), _MAV_RETURN_uint8_t(msg, f->wire_offset+idx*1)); - break; - case MAVLINK_TYPE_INT8_T: - qDebug(PRINT_FORMAT(f, "%d"), _MAV_RETURN_int8_t(msg, f->wire_offset+idx*1)); - break; - case MAVLINK_TYPE_UINT16_T: - qDebug(PRINT_FORMAT(f, "%u"), _MAV_RETURN_uint16_t(msg, f->wire_offset+idx*2)); - break; - case MAVLINK_TYPE_INT16_T: - qDebug(PRINT_FORMAT(f, "%d"), _MAV_RETURN_int16_t(msg, f->wire_offset+idx*2)); - break; - case MAVLINK_TYPE_UINT32_T: - qDebug(PRINT_FORMAT(f, "%lu"), (unsigned long)_MAV_RETURN_uint32_t(msg, f->wire_offset+idx*4)); - break; - case MAVLINK_TYPE_INT32_T: - qDebug(PRINT_FORMAT(f, "%ld"), (long)_MAV_RETURN_int32_t(msg, f->wire_offset+idx*4)); - break; - case MAVLINK_TYPE_UINT64_T: - qDebug(PRINT_FORMAT(f, "%llu"), (unsigned long long)_MAV_RETURN_uint64_t(msg, f->wire_offset+idx*8)); - break; - case MAVLINK_TYPE_INT64_T: - qDebug(PRINT_FORMAT(f, "%lld"), (long long)_MAV_RETURN_int64_t(msg, f->wire_offset+idx*8)); - break; - case MAVLINK_TYPE_FLOAT: - qDebug(PRINT_FORMAT(f, "%f"), (double)_MAV_RETURN_float(msg, f->wire_offset+idx*4)); - break; - case MAVLINK_TYPE_DOUBLE: - qDebug(PRINT_FORMAT(f, "%f"), _MAV_RETURN_double(msg, f->wire_offset+idx*8)); - break; - } -} - -static void print_field(const mavlink_message_t *msg, const mavlink_field_info_t *f) -{ - qDebug("%s: ", f->name); - if (f->array_length == 0) { - print_one_field(msg, f, 0); - qDebug(" "); - } else { - unsigned i; - /* print an array */ - if (f->type == MAVLINK_TYPE_CHAR) { - qDebug("'%.*s'", f->array_length, - f->wire_offset+(const char *)_MAV_PAYLOAD(msg)); - - } else { - qDebug("[ "); - for (i=0; iarray_length; i++) { - print_one_field(msg, f, i); - if (i < f->array_length) { - qDebug(", "); - } - } - qDebug("]"); - } - } - qDebug(" "); -} -#endif - -static void print_message(const mavlink_message_t *msg) -{ -#ifdef DEBUG_PRINT_MESSAGE - const mavlink_message_info_t *m = &message_info[msg->msgid]; - const mavlink_field_info_t *f = m->fields; - unsigned i; - qDebug("%s { ", m->name); - for (i=0; inum_fields; i++) { - print_field(msg, &f[i]); - } - qDebug("}\n"); -#else - Q_UNUSED(msg); -#endif -} - -void MAVLinkSimulationMAV::handleMessage(const mavlink_message_t& msg) -{ - if (msg.sysid != systemid) - { - print_message(&msg); -// qDebug() << "MAV:" << systemid << "RECEIVED MESSAGE FROM" << msg.sysid << "COMP" << msg.compid; - } - - switch(msg.msgid) { - case MAVLINK_MSG_ID_ATTITUDE: - break; - case MAVLINK_MSG_ID_SET_MODE: { - mavlink_set_mode_t mode; - mavlink_msg_set_mode_decode(&msg, &mode); - if (systemid == mode.target_system) sys_mode = mode.base_mode; - } - break; - case MAVLINK_MSG_ID_HIL_STATE_QUATERNION: - { - mavlink_hil_state_quaternion_t state; - mavlink_msg_hil_state_quaternion_decode(&msg, &state); - - double a = state.attitude_quaternion[0]; - double b = state.attitude_quaternion[1]; - double c = state.attitude_quaternion[2]; - double d = state.attitude_quaternion[3]; - double aSq = a * a; - double bSq = b * b; - double cSq = c * c; - double dSq = d * d; - float dcm[3][3]; - dcm[0][0] = aSq + bSq - cSq - dSq; - dcm[0][1] = 2.0 * (b * c - a * d); - dcm[0][2] = 2.0 * (a * c + b * d); - dcm[1][0] = 2.0 * (b * c + a * d); - dcm[1][1] = aSq - bSq + cSq - dSq; - dcm[1][2] = 2.0 * (c * d - a * b); - dcm[2][0] = 2.0 * (b * d - a * c); - dcm[2][1] = 2.0 * (a * b + c * d); - dcm[2][2] = aSq - bSq - cSq + dSq; - - float phi, theta, psi; - theta = asin(-dcm[2][0]); - - if (fabs(theta - M_PI_2) < 1.0e-3f) { - phi = 0.0f; - psi = (atan2(dcm[1][2] - dcm[0][1], - dcm[0][2] + dcm[1][1]) + phi); - - } else if (fabs(theta + M_PI_2) < 1.0e-3f) { - phi = 0.0f; - psi = atan2f(dcm[1][2] - dcm[0][1], - dcm[0][2] + dcm[1][1] - phi); - - } else { - phi = atan2f(dcm[2][1], dcm[2][2]); - psi = atan2f(dcm[1][0], dcm[0][0]); - } - - roll = phi; - pitch = theta; - yaw = psi; - rollspeed = state.rollspeed; - pitchspeed = state.pitchspeed; - yawspeed = state.yawspeed; - latitude = state.lat; - longitude = state.lon; - altitude = state.alt; - } - break; - // FIXME MAVLINKV10PORTINGNEEDED - // case MAVLINK_MSG_ID_ACTION: { - // mavlink_action_t action; - // mavlink_msg_action_decode(&msg, &action); - // if (systemid == action.target && (action.target_component == 0 || action.target_component == MAV_COMP_ID_IMU)) { - // mavlink_action_ack_t ack; - // ack.action = action.action; - //// switch (action.action) { - //// case MAV_ACTION_TAKEOFF: - //// flying = true; - //// nav_mode = MAV_NAV_LIFTOFF; - //// ack.result = 1; - //// break; - //// default: { - //// ack.result = 0; - //// } - //// break; - //// } - - // // Give feedback about action - // mavlink_message_t r_msg; - // mavlink_msg_action_ack_encode(systemid, MAV_COMP_ID_IMU, &r_msg, &ack); - // link->sendMAVLinkMessage(&r_msg); - // } - // } - break; - } -} diff --git a/src/comm/MAVLinkSimulationMAV.h b/src/comm/MAVLinkSimulationMAV.h deleted file mode 100644 index 3b7bea63e3fcb4ffa62e8d4d94f716aae8e57cff..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSimulationMAV.h +++ /dev/null @@ -1,75 +0,0 @@ -#ifndef MAVLINKSIMULATIONMAV_H -#define MAVLINKSIMULATIONMAV_H - -#include -#include - -#include "MAVLinkSimulationLink.h" -#include "MAVLinkSimulationWaypointPlanner.h" - -class MAVLinkSimulationMAV : public QObject -{ - Q_OBJECT -public: - explicit MAVLinkSimulationMAV(MAVLinkSimulationLink *parent, int systemid, double lat=47.376389, double lon=8.548056, int version=MAVLINK_VERSION); - -signals: - -public slots: - void mainloop(); - void handleMessage(const mavlink_message_t& msg); - -protected: - MAVLinkSimulationLink* link; - MAVLinkSimulationWaypointPlanner planner; - int systemid; - QTimer mainloopTimer; - int timer25Hz; - int timer10Hz; - int timer1Hz; - double latitude; - double longitude; - double altitude; - double x; - double y; - double z; - double roll; - double pitch; - double yaw; - double rollspeed; - double pitchspeed; - double yawspeed; - - bool globalNavigation; - bool firstWP; - - double previousSPX; - double previousSPY; - double previousSPZ; - double previousSPYaw; - - double nextSPX; - double nextSPY; - double nextSPZ; - double nextSPYaw; - uint8_t sys_mode; - uint8_t sys_state; - uint8_t nav_mode; - bool flying; - int mavlink_version; - - // FIXME MAVLINKV10PORTINGNEEDED -// static inline uint16_t mavlink_msg_heartbeat_pack_version_free(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, uint8_t type, uint8_t autopilot, uint8_t version) { -// uint16_t i = 0; -// msg->msgid = MAVLINK_MSG_ID_HEARTBEAT; - -// i += put_uint8_t_by_index(type, i, msg->payload); // Type of the MAV (quadrotor, helicopter, etc., up to 15 types, defined in MAV_TYPE ENUM) -// i += put_uint8_t_by_index(autopilot, i, msg->payload); // Type of the Autopilot: 0: Generic, 1: PIXHAWK, 2: SLUGS, 3: Ardupilot (up to 15 types), defined in MAV_AUTOPILOT_TYPE ENUM -// i += put_uint8_t_by_index(version, i, msg->payload); // MAVLink version - -// return mavlink_finalize_message(msg, system_id, component_id, i); -// } - -}; - -#endif // MAVLINKSIMULATIONMAV_H diff --git a/src/comm/MAVLinkSimulationWaypointPlanner.cc b/src/comm/MAVLinkSimulationWaypointPlanner.cc deleted file mode 100644 index aa6384166c947a50cb5761233cbcbeaf72f56efe..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSimulationWaypointPlanner.cc +++ /dev/null @@ -1,1131 +0,0 @@ -/*====================================================================== - -PIXHAWK Micro Air Vehicle Flying Robotics Toolkit - -(c) 2009-2011 PIXHAWK PROJECT - -This file is part of the PIXHAWK project - - PIXHAWK is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - PIXHAWK is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with PIXHAWK. If not, see . - -========================================================================*/ - -/** -* @file -* @brief a program to manage waypoints and exchange them with the ground station -* -* @author Petri Tanskanen -* @author Benjamin Knecht -* @author Christian Schluchter -*/ - -#include - -#include "MAVLinkSimulationWaypointPlanner.h" -#include "QGC.h" -#include - -#ifndef M_PI -#define M_PI 3.14159265358979323846 -#endif - -class PxMatrix3x3; - - -/** - * @brief Pixhawk 3D vector class, can be cast to a local OpenCV CvMat. - * - */ -class PxVector3 -{ -public: - /** @brief standard constructor */ - PxVector3(void) {} - /** @brief copy constructor */ - PxVector3(const PxVector3 &v) { - for (int i=0; i < 3; i++) { - m_vec[i] = v.m_vec[i]; - } - } - /** @brief x,y,z constructor */ - PxVector3(const float _x, const float _y, const float _z) { - m_vec[0] = _x; - m_vec[1] = _y; - m_vec[2] = _z; - } - /** @brief broadcast constructor */ - PxVector3(const float _f) { - for (int i=0; i < 3; i++) { - m_vec[i] = _f; - } - } - -private: - /** @brief private constructor (not used here, for SSE compatibility) */ - PxVector3(const float (&_vec)[3]) { - for (int i=0; i < 3; i++) { - m_vec[i] = _vec[i]; - } - } - -public: - /** @brief assignment operator */ - void operator= (const PxVector3 &r) { - for (int i=0; i < 3; i++) { - m_vec[i] = r.m_vec[i]; - } - } - /** @brief const element access */ - float operator[] (const int i) const { - return m_vec[i]; - } - /** @brief element access */ - float &operator[] (const int i) { - return m_vec[i]; - } - - // === arithmetic operators === - /** @brief element-wise negation */ - friend PxVector3 operator- (const PxVector3 &v) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = -v.m_vec[i]; - } - return ret; - } - friend PxVector3 operator+ (const PxVector3 &l, const PxVector3 &r) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] + r.m_vec[i]; - } - return ret; - } - friend PxVector3 operator- (const PxVector3 &l, const PxVector3 &r) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] - r.m_vec[i]; - } - return ret; - } - friend PxVector3 operator* (const PxVector3 &l, const PxVector3 &r) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] * r.m_vec[i]; - } - return ret; - } - friend PxVector3 operator/ (const PxVector3 &l, const PxVector3 &r) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] / r.m_vec[i]; - } - return ret; - } - - friend void operator+= (PxVector3 &l, const PxVector3 &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] + r.m_vec[i]; - } - } - friend void operator-= (PxVector3 &l, const PxVector3 &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] - r.m_vec[i]; - } - } - friend void operator*= (PxVector3 &l, const PxVector3 &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] * r.m_vec[i]; - } - } - friend void operator/= (PxVector3 &l, const PxVector3 &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] / r.m_vec[i]; - } - } - - friend PxVector3 operator+ (const PxVector3 &l, float f) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] + f; - } - return ret; - } - friend PxVector3 operator- (const PxVector3 &l, float f) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] - f; - } - return ret; - } - friend PxVector3 operator* (const PxVector3 &l, float f) { - PxVector3 ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] * f; - } - return ret; - } - friend PxVector3 operator/ (const PxVector3 &l, float f) { - PxVector3 ret; - float inv = 1.f/f; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] * inv; - } - return ret; - } - - friend void operator+= (PxVector3 &l, float f) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] + f; - } - } - friend void operator-= (PxVector3 &l, float f) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] - f; - } - } - friend void operator*= (PxVector3 &l, float f) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] * f; - } - } - friend void operator/= (PxVector3 &l, float f) { - float inv = 1.f/f; - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] * inv; - } - } - - // === vector operators === - /** @brief dot product */ - float dot(const PxVector3 &v) const { - return m_vec[0]*v.m_vec[0] + m_vec[1]*v.m_vec[1] + m_vec[2]*v.m_vec[2]; - } - /** @brief length squared of the vector */ - float lengthSquared(void) const { - return m_vec[0]*m_vec[0] + m_vec[1]*m_vec[1] + m_vec[2]*m_vec[2]; - } - /** @brief length of the vector */ - float length(void) const { - return sqrt(lengthSquared()); - } - /** @brief cross product */ - PxVector3 cross(const PxVector3 &v) const { - return PxVector3(m_vec[1]*v.m_vec[2] - m_vec[2]*v.m_vec[1], m_vec[2]*v.m_vec[0] - m_vec[0]*v.m_vec[2], m_vec[0]*v.m_vec[1] - m_vec[1]*v.m_vec[0]); - } - /** @brief normalizes the vector */ - PxVector3 &normalize(void) { - const float l = 1.f / length(); - for (int i=0; i < 3; i++) { - m_vec[i] *= l; - } - return *this; - } - - friend class PxMatrix3x3; -protected: - float m_vec[3]; -}; - -/** - * @brief Pixhawk 3D vector class in double precision, can be cast to a local OpenCV CvMat. - * - */ -class PxVector3Double -{ -public: - /** @brief standard constructor */ - PxVector3Double(void) {} - /** @brief copy constructor */ - PxVector3Double(const PxVector3Double &v) { - for (int i=0; i < 3; i++) { - m_vec[i] = v.m_vec[i]; - } - } - /** @brief x,y,z constructor */ - PxVector3Double(const double _x, const double _y, const double _z) { - m_vec[0] = _x; - m_vec[1] = _y; - m_vec[2] = _z; - } - /** @brief broadcast constructor */ - PxVector3Double(const double _f) { - for (int i=0; i < 3; i++) { - m_vec[i] = _f; - } - } - -private: - /** @brief private constructor (not used here, for SSE compatibility) */ - PxVector3Double(const double (&_vec)[3]) { - for (int i=0; i < 3; i++) { - m_vec[i] = _vec[i]; - } - } - -public: - /** @brief assignment operator */ - void operator= (const PxVector3Double &r) { - for (int i=0; i < 3; i++) { - m_vec[i] = r.m_vec[i]; - } - } - /** @brief const element access */ - double operator[] (const int i) const { - return m_vec[i]; - } - /** @brief element access */ - double &operator[] (const int i) { - return m_vec[i]; - } - - // === arithmetic operators === - /** @brief element-wise negation */ - friend PxVector3Double operator- (const PxVector3Double &v) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = -v.m_vec[i]; - } - return ret; - } - friend PxVector3Double operator+ (const PxVector3Double &l, const PxVector3Double &r) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] + r.m_vec[i]; - } - return ret; - } - friend PxVector3Double operator- (const PxVector3Double &l, const PxVector3Double &r) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] - r.m_vec[i]; - } - return ret; - } - friend PxVector3Double operator* (const PxVector3Double &l, const PxVector3Double &r) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] * r.m_vec[i]; - } - return ret; - } - friend PxVector3Double operator/ (const PxVector3Double &l, const PxVector3Double &r) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] / r.m_vec[i]; - } - return ret; - } - - friend void operator+= (PxVector3Double &l, const PxVector3Double &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] + r.m_vec[i]; - } - } - friend void operator-= (PxVector3Double &l, const PxVector3Double &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] - r.m_vec[i]; - } - } - friend void operator*= (PxVector3Double &l, const PxVector3Double &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] * r.m_vec[i]; - } - } - friend void operator/= (PxVector3Double &l, const PxVector3Double &r) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] / r.m_vec[i]; - } - } - - friend PxVector3Double operator+ (const PxVector3Double &l, double f) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] + f; - } - return ret; - } - friend PxVector3Double operator- (const PxVector3Double &l, double f) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] - f; - } - return ret; - } - friend PxVector3Double operator* (const PxVector3Double &l, double f) { - PxVector3Double ret; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] * f; - } - return ret; - } - friend PxVector3Double operator/ (const PxVector3Double &l, double f) { - PxVector3Double ret; - double inv = 1.f/f; - for (int i=0; i < 3; i++) { - ret.m_vec[i] = l.m_vec[i] * inv; - } - return ret; - } - - friend void operator+= (PxVector3Double &l, double f) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] + f; - } - } - friend void operator-= (PxVector3Double &l, double f) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] - f; - } - } - friend void operator*= (PxVector3Double &l, double f) { - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] * f; - } - } - friend void operator/= (PxVector3Double &l, double f) { - double inv = 1.f/f; - for (int i=0; i < 3; i++) { - l.m_vec[i] = l.m_vec[i] * inv; - } - } - - // === vector operators === - /** @brief dot product */ - double dot(const PxVector3Double &v) const { - return m_vec[0]*v.m_vec[0] + m_vec[1]*v.m_vec[1] + m_vec[2]*v.m_vec[2]; - } - /** @brief length squared of the vector */ - double lengthSquared(void) const { - return m_vec[0]*m_vec[0] + m_vec[1]*m_vec[1] + m_vec[2]*m_vec[2]; - } - /** @brief length of the vector */ - double length(void) const { - return sqrt(lengthSquared()); - } - /** @brief cross product */ - PxVector3Double cross(const PxVector3Double &v) const { - return PxVector3Double(m_vec[1]*v.m_vec[2] - m_vec[2]*v.m_vec[1], m_vec[2]*v.m_vec[0] - m_vec[0]*v.m_vec[2], m_vec[0]*v.m_vec[1] - m_vec[1]*v.m_vec[0]); - } - /** @brief normalizes the vector */ - PxVector3Double &normalize(void) { - const double l = 1.f / length(); - for (int i=0; i < 3; i++) { - m_vec[i] *= l; - } - return *this; - } - - friend class PxMatrix3x3; -protected: - double m_vec[3]; -}; - -MAVLinkSimulationWaypointPlanner::MAVLinkSimulationWaypointPlanner(MAVLinkSimulationLink *parent, int sysid) : - QObject(parent), - link(parent), - idle(false), - current_active_wp_id(-1), - yawReached(false), - posReached(false), - timestamp_lastoutside_orbit(0), - timestamp_firstinside_orbit(0), - waypoints(&waypoints1), - waypoints_receive_buffer(&waypoints2), - current_state(PX_WPP_IDLE), - protocol_current_wp_id(0), - protocol_current_count(0), - protocol_current_partner_systemid(0), - protocol_current_partner_compid(0), - protocol_timestamp_lastaction(0), - protocol_timeout(1000), - timestamp_last_send_setpoint(0), - systemid(sysid), - compid(MAV_COMP_ID_MISSIONPLANNER), - setpointDelay(10), - yawTolerance(0.4f), - verbose(true), - debug(false), - silent(false) -{ - connect(parent, SIGNAL(messageReceived(mavlink_message_t)), this, SLOT(handleMessage(mavlink_message_t))); - qDebug() << "PLANNER FOR SYSTEM" << systemid << "INITIALIZED"; -} - - - -/* -* @brief Sends an waypoint ack message -*/ -void MAVLinkSimulationWaypointPlanner::send_waypoint_ack(uint8_t target_systemid, uint8_t target_compid, uint8_t type) -{ - mavlink_message_t msg; - mavlink_mission_ack_t wpa; - - wpa.target_system = target_systemid; - wpa.target_component = target_compid; - wpa.type = type; - - mavlink_msg_mission_ack_encode(systemid, compid, &msg, &wpa); - link->sendMAVLinkMessage(&msg); - - - - if (verbose) qDebug("Sent waypoint ack (%u) to ID %u\n", wpa.type, wpa.target_system); -} - -/* -* @brief Broadcasts the new target waypoint and directs the MAV to fly there -* -* This function broadcasts its new active waypoint sequence number and -* sends a message to the controller, advising it to fly to the coordinates -* of the waypoint with a given orientation -* -* @param seq The waypoint sequence number the MAV should fly to. -*/ -void MAVLinkSimulationWaypointPlanner::send_waypoint_current(uint16_t seq) -{ - if(seq < waypoints->size()) { - mavlink_mission_item_t *cur = waypoints->at(seq); - - mavlink_message_t msg; - mavlink_mission_current_t wpc; - - wpc.seq = cur->seq; - - mavlink_msg_mission_current_encode(systemid, compid, &msg, &wpc); - link->sendMAVLinkMessage(&msg); - - - - if (verbose) qDebug("Broadcasted new current waypoint %u\n", wpc.seq); - } -} - -/* -* @brief Directs the MAV to fly to a position -* -* Sends a message to the controller, advising it to fly to the coordinates -* of the waypoint with a given orientation -* -* @param seq The waypoint sequence number the MAV should fly to. -*/ -void MAVLinkSimulationWaypointPlanner::send_setpoint(uint16_t seq) -{ - Q_UNUSED(seq); -} - -void MAVLinkSimulationWaypointPlanner::send_waypoint_count(uint8_t target_systemid, uint8_t target_compid, uint16_t count) -{ - mavlink_message_t msg; - mavlink_mission_count_t wpc; - - wpc.target_system = target_systemid; - wpc.target_component = target_compid; - wpc.count = count; - - mavlink_msg_mission_count_encode(systemid, compid, &msg, &wpc); - link->sendMAVLinkMessage(&msg); - - if (verbose) qDebug("Sent waypoint count (%u) to ID %u\n", wpc.count, wpc.target_system); - - -} - -void MAVLinkSimulationWaypointPlanner::send_waypoint(uint8_t target_systemid, uint8_t target_compid, uint16_t seq) -{ - if (seq < waypoints->size()) { - mavlink_message_t msg; - mavlink_mission_item_t *wp = waypoints->at(seq); - wp->target_system = target_systemid; - wp->target_component = target_compid; - - if (verbose) qDebug("Sent waypoint %u (%u / %u / %u / %u / %u / %f / %f / %f / %u / %f / %f / %f / %f / %u)\n", wp->seq, wp->target_system, wp->target_component, wp->seq, wp->frame, wp->command, wp->param3, wp->param1, wp->param2, wp->current, wp->x, wp->y, wp->z, wp->param4, wp->autocontinue); - - mavlink_msg_mission_item_encode(systemid, compid, &msg, wp); - link->sendMAVLinkMessage(&msg); - if (verbose) qDebug("Sent waypoint %u to ID %u\n", wp->seq, wp->target_system); - - - } else { - if (verbose) qDebug("ERROR: index out of bounds\n"); - } -} - -void MAVLinkSimulationWaypointPlanner::send_waypoint_request(uint8_t target_systemid, uint8_t target_compid, uint16_t seq) -{ - mavlink_message_t msg; - mavlink_mission_request_t wpr; - wpr.target_system = target_systemid; - wpr.target_component = target_compid; - wpr.seq = seq; - mavlink_msg_mission_request_encode(systemid, compid, &msg, &wpr); - link->sendMAVLinkMessage(&msg); - if (verbose) qDebug("Sent waypoint request %u to ID %u\n", wpr.seq, wpr.target_system); - - -} - -/* -* @brief emits a message that a waypoint reached -* -* This function broadcasts a message that a waypoint is reached. -* -* @param seq The waypoint sequence number the MAV has reached. -*/ -void MAVLinkSimulationWaypointPlanner::send_waypoint_reached(uint16_t seq) -{ - mavlink_message_t msg; - mavlink_mission_item_reached_t wp_reached; - - wp_reached.seq = seq; - - mavlink_msg_mission_item_reached_encode(systemid, compid, &msg, &wp_reached); - link->sendMAVLinkMessage(&msg); - - if (verbose) qDebug("Sent waypoint %u reached message\n", wp_reached.seq); - - -} - -float MAVLinkSimulationWaypointPlanner::distanceToSegment(uint16_t seq, float x, float y, float z) -{ - if (seq < waypoints->size()) { - mavlink_mission_item_t *cur = waypoints->at(seq); - - const PxVector3 A(cur->x, cur->y, cur->z); - const PxVector3 C(x, y, z); - - // seq not the second last waypoint - if ((uint16_t)(seq+1) < waypoints->size()) { - mavlink_mission_item_t *next = waypoints->at(seq+1); - const PxVector3 B(next->x, next->y, next->z); - const float r = (B-A).dot(C-A) / (B-A).lengthSquared(); - if (r >= 0 && r <= 1) { - const PxVector3 P(A + r*(B-A)); - return (P-C).length(); - } else if (r < 0.f) { - return (C-A).length(); - } else { - return (C-B).length(); - } - } else { - return (C-A).length(); - } - } - return -1.f; -} - -float MAVLinkSimulationWaypointPlanner::distanceToPoint(uint16_t seq, float x, float y, float z) -{ - if (seq < waypoints->size()) { - mavlink_mission_item_t *cur = waypoints->at(seq); - - const PxVector3 A(cur->x, cur->y, cur->z); - const PxVector3 C(x, y, z); - - return (C-A).length(); - } - return -1.f; -} - -float MAVLinkSimulationWaypointPlanner::distanceToPoint(uint16_t seq, float x, float y) -{ - if (seq < waypoints->size()) { - mavlink_mission_item_t *cur = waypoints->at(seq); - - const PxVector3 A(cur->x, cur->y, 0); - const PxVector3 C(x, y, 0); - - return (C-A).length(); - } - return -1.f; -} - -void MAVLinkSimulationWaypointPlanner::handleMessage(const mavlink_message_t& msg) -{ - mavlink_handler(&msg); -} - -void MAVLinkSimulationWaypointPlanner::mavlink_handler (const mavlink_message_t* msg) -{ - // Handle param messages -// paramClient->handleMAVLinkPacket(msg); - - //check for timed-out operations - - //qDebug() << "MAV: %d WAYPOINTPLANNER GOT MESSAGE" << systemid; - - uint64_t now = QGC::groundTimeMilliseconds(); - if (now-protocol_timestamp_lastaction > protocol_timeout && current_state != PX_WPP_IDLE) { - if (verbose) qDebug() << "Last operation (state=%u) timed out, changing state to PX_WPP_IDLE" << current_state; - current_state = PX_WPP_IDLE; - protocol_current_count = 0; - protocol_current_partner_systemid = 0; - protocol_current_partner_compid = 0; - protocol_current_wp_id = -1; - - if(waypoints->size() == 0) { - current_active_wp_id = -1; - } - } - - if(now-timestamp_last_send_setpoint > setpointDelay) { - send_setpoint(current_active_wp_id); - } - - switch(msg->msgid) { - case MAVLINK_MSG_ID_ATTITUDE: { - if(msg->sysid == systemid && current_active_wp_id < waypoints->size()) { - mavlink_mission_item_t *wp = waypoints->at(current_active_wp_id); - if(wp->frame == 1) { - mavlink_attitude_t att; - mavlink_msg_attitude_decode(msg, &att); - float yaw_tolerance = yawTolerance; - //compare current yaw - if (att.yaw - yaw_tolerance >= 0.0f && att.yaw + yaw_tolerance < 2.f*M_PI) { - if (att.yaw - yaw_tolerance <= wp->param4 && att.yaw + yaw_tolerance >= wp->param4) - yawReached = true; - } else if(att.yaw - yaw_tolerance < 0.0f) { - float lowerBound = 360.0f + att.yaw - yaw_tolerance; - if (lowerBound < wp->param4 || wp->param4 < att.yaw + yaw_tolerance) - yawReached = true; - } else { - float upperBound = att.yaw + yaw_tolerance - 2.f*M_PI; - if (att.yaw - yaw_tolerance < wp->param4 || wp->param4 < upperBound) - yawReached = true; - } - - // FIXME HACK: Ignore yaw: - - yawReached = true; - } - } - break; - } - - case MAVLINK_MSG_ID_LOCAL_POSITION_NED: { - if(msg->sysid == systemid && current_active_wp_id < waypoints->size()) { - mavlink_mission_item_t *wp = waypoints->at(current_active_wp_id); - - if(wp->frame == 1) { - mavlink_local_position_ned_t pos; - mavlink_msg_local_position_ned_decode(msg, &pos); - //qDebug() << "Received new position: x:" << pos.x << "| y:" << pos.y << "| z:" << pos.z; - - posReached = false; - - // compare current position (given in message) with current waypoint - float orbit = wp->param1; - - float dist; - if (wp->param2 == 0) { - dist = distanceToSegment(current_active_wp_id, pos.x, pos.y, pos.z); - } else { - dist = distanceToPoint(current_active_wp_id, pos.x, pos.y, pos.z); - } - - if (dist >= 0.f && dist <= orbit && yawReached) { - posReached = true; - } - } - } - break; - } - - case MAVLINK_MSG_ID_GLOBAL_POSITION_INT: { - if(msg->sysid == systemid && current_active_wp_id < waypoints->size()) { - mavlink_mission_item_t *wp = waypoints->at(current_active_wp_id); - - if(wp->frame == 0) { - mavlink_global_position_int_t pos; - mavlink_msg_global_position_int_decode(msg, &pos); - - float x = static_cast(pos.lat)/1E7; - float y = static_cast(pos.lon)/1E7; - //float z = static_cast(pos.alt)/1000; - - //qDebug() << "Received new position: x:" << x << "| y:" << y << "| z:" << z; - - posReached = false; - yawReached = true; - - // FIXME big hack for simulation! - //float oneDegreeOfLatMeters = 111131.745f; - float orbit = 0.00008f; - - // compare current position (given in message) with current waypoint - //float orbit = wp->param1; - - // Convert to degrees - - - float dist; - dist = distanceToPoint(current_active_wp_id, x, y); - - if (dist >= 0.f && dist <= orbit && yawReached) { - posReached = true; - qDebug() << "WP PLANNER: REACHED POSITION"; - } - } - } - break; - } - - case MAVLINK_MSG_ID_COMMAND_LONG: - { // special action from ground station - mavlink_command_long_t action; - mavlink_msg_command_long_decode(msg, &action); - if(action.target_system == systemid) { - if (verbose) qDebug("Waypoint: received message with action %d\n", action.command); -// switch (action.action) { -// case MAV_ACTION_LAUNCH: -// if (verbose) std::cerr << "Launch received" << std::endl; -// current_active_wp_id = 0; -// if (waypoints->size()>0) -// { -// setActive(waypoints[current_active_wp_id]); -// } -// else -// if (verbose) std::cerr << "No launch, waypointList empty" << std::endl; -// break; - -// case MAV_ACTION_CONTINUE: -// if (verbose) std::c -// err << "Continue received" << std::endl; -// idle = false; -// setActive(waypoints[current_active_wp_id]); -// break; - -// case MAV_ACTION_HALT: -// if (verbose) std::cerr << "Halt received" << std::endl; -// idle = true; -// break; - -// default: -// if (verbose) std::cerr << "Unknown action received with id " << action.action << ", no action taken" << std::endl; -// break; -// } - } - break; - } - - case MAVLINK_MSG_ID_MISSION_ACK: { - mavlink_mission_ack_t wpa; - mavlink_msg_mission_ack_decode(msg, &wpa); - - if((msg->sysid == protocol_current_partner_systemid && msg->compid == protocol_current_partner_compid) && (wpa.target_system == systemid && wpa.target_component == compid)) { - protocol_timestamp_lastaction = now; - - if (current_state == PX_WPP_SENDLIST || current_state == PX_WPP_SENDLIST_SENDWPS) { - if (protocol_current_wp_id == waypoints->size()-1) { - if (verbose) qDebug("Received Ack after having sent last waypoint, going to state PX_WPP_IDLE\n"); - current_state = PX_WPP_IDLE; - protocol_current_wp_id = 0; - } - } - } - break; - } - - case MAVLINK_MSG_ID_MISSION_SET_CURRENT: { - mavlink_mission_set_current_t wpc; - mavlink_msg_mission_set_current_decode(msg, &wpc); - - if(wpc.target_system == systemid && wpc.target_component == compid) { - protocol_timestamp_lastaction = now; - - if (current_state == PX_WPP_IDLE) { - if (wpc.seq < waypoints->size()) { - if (verbose) qDebug("Received MAVLINK_MSG_ID_MISSION_ITEM_SET_CURRENT\n"); - current_active_wp_id = wpc.seq; - uint32_t i; - for(i = 0; i < waypoints->size(); i++) { - if (i == current_active_wp_id) { - waypoints->at(i)->current = true; - } else { - waypoints->at(i)->current = false; - } - } - if (verbose) qDebug("New current waypoint %u\n", current_active_wp_id); - yawReached = false; - posReached = false; - send_waypoint_current(current_active_wp_id); - send_setpoint(current_active_wp_id); - timestamp_firstinside_orbit = 0; - } else { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_SET_CURRENT: Index out of bounds\n"); - } - } - } else { - qDebug() << "SYSTEM / COMPONENT ID MISMATCH: target sys:" << wpc.target_system << "this system:" << systemid << "target comp:" << wpc.target_component << "this comp:" << compid; - } - break; - } - - case MAVLINK_MSG_ID_MISSION_REQUEST_LIST: { - mavlink_mission_request_list_t wprl; - mavlink_msg_mission_request_list_decode(msg, &wprl); - if(wprl.target_system == systemid && wprl.target_component == compid) { - protocol_timestamp_lastaction = now; - - if (current_state == PX_WPP_IDLE || current_state == PX_WPP_SENDLIST) { - if (waypoints->size() > 0) { - if (verbose && current_state == PX_WPP_IDLE) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_REQUEST_LIST from %u changing state to PX_WPP_SENDLIST\n", msg->sysid); - if (verbose && current_state == PX_WPP_SENDLIST) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_REQUEST_LIST again from %u staying in state PX_WPP_SENDLIST\n", msg->sysid); - current_state = PX_WPP_SENDLIST; - protocol_current_wp_id = 0; - protocol_current_partner_systemid = msg->sysid; - protocol_current_partner_compid = msg->compid; - } else { - if (verbose) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_REQUEST_LIST from %u but have no waypoints, staying in \n", msg->sysid); - } - protocol_current_count = static_cast(waypoints->size()); - send_waypoint_count(msg->sysid,msg->compid, protocol_current_count); - } else { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST_LIST because i'm doing something else already (state=%i).\n", current_state); - } - } else { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST_LIST because not my systemid or compid.\n"); - } - break; - } - - case MAVLINK_MSG_ID_MISSION_REQUEST: { - mavlink_mission_request_t wpr; - mavlink_msg_mission_request_decode(msg, &wpr); - if(msg->sysid == protocol_current_partner_systemid && msg->compid == protocol_current_partner_compid && wpr.target_system == systemid && wpr.target_component == compid) { - protocol_timestamp_lastaction = now; - - //ensure that we are in the correct state and that the first request has id 0 and the following requests have either the last id (re-send last waypoint) or last_id+1 (next waypoint) - if ((current_state == PX_WPP_SENDLIST && wpr.seq == 0) || (current_state == PX_WPP_SENDLIST_SENDWPS && (wpr.seq == protocol_current_wp_id || wpr.seq == protocol_current_wp_id + 1) && wpr.seq < waypoints->size())) { - if (verbose && current_state == PX_WPP_SENDLIST) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_REQUEST of waypoint %u from %u changing state to PX_WPP_SENDLIST_SENDWPS\n", wpr.seq, msg->sysid); - if (verbose && current_state == PX_WPP_SENDLIST_SENDWPS && wpr.seq == protocol_current_wp_id + 1) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_REQUEST of waypoint %u from %u staying in state PX_WPP_SENDLIST_SENDWPS\n", wpr.seq, msg->sysid); - if (verbose && current_state == PX_WPP_SENDLIST_SENDWPS && wpr.seq == protocol_current_wp_id) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_REQUEST of waypoint %u (again) from %u staying in state PX_WPP_SENDLIST_SENDWPS\n", wpr.seq, msg->sysid); - - current_state = PX_WPP_SENDLIST_SENDWPS; - protocol_current_wp_id = wpr.seq; - send_waypoint(protocol_current_partner_systemid, protocol_current_partner_compid, wpr.seq); - } else { - if (verbose) { - if (!(current_state == PX_WPP_SENDLIST || current_state == PX_WPP_SENDLIST_SENDWPS)) { - qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST because i'm doing something else already (state=%i).\n", current_state); - break; - } else if (current_state == PX_WPP_SENDLIST) { - if (wpr.seq != 0) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST because the first requested waypoint ID (%u) was not 0.\n", wpr.seq); - } else if (current_state == PX_WPP_SENDLIST_SENDWPS) { - if (wpr.seq != protocol_current_wp_id && wpr.seq != protocol_current_wp_id + 1) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST because the requested waypoint ID (%u) was not the expected (%u or %u).\n", wpr.seq, protocol_current_wp_id, protocol_current_wp_id+1); - else if (wpr.seq >= waypoints->size()) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST because the requested waypoint ID (%u) was out of bounds.\n", wpr.seq); - } else qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST - FIXME: missed error description\n"); - } - } - } else { - //we we're target but already communicating with someone else - if((wpr.target_system == systemid && wpr.target_component == compid) && !(msg->sysid == protocol_current_partner_systemid && msg->compid == protocol_current_partner_compid)) { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_REQUEST from ID %u because i'm already talking to ID %u.\n", msg->sysid, protocol_current_partner_systemid); - } - } - break; - } - - case MAVLINK_MSG_ID_MISSION_COUNT: { - mavlink_mission_count_t wpc; - mavlink_msg_mission_count_decode(msg, &wpc); - if(wpc.target_system == systemid && wpc.target_component == compid) { - protocol_timestamp_lastaction = now; - - if (current_state == PX_WPP_IDLE || (current_state == PX_WPP_GETLIST && protocol_current_wp_id == 0)) { - if (wpc.count > 0) { - if (verbose && current_state == PX_WPP_IDLE) qDebug("Got MAVLINK_MSG_ID_MISSION_COUNT (%u) from %u changing state to PX_WPP_GETLIST\n", wpc.count, msg->sysid); - if (verbose && current_state == PX_WPP_GETLIST) qDebug("Got MAVLINK_MSG_ID_MISSION_COUNT (%u) again from %u\n", wpc.count, msg->sysid); - - current_state = PX_WPP_GETLIST; - protocol_current_wp_id = 0; - protocol_current_partner_systemid = msg->sysid; - protocol_current_partner_compid = msg->compid; - protocol_current_count = wpc.count; - - qDebug("clearing receive buffer and readying for receiving waypoints\n"); - while(waypoints_receive_buffer->size() > 0) { - delete waypoints_receive_buffer->back(); - waypoints_receive_buffer->pop_back(); - } - - send_waypoint_request(protocol_current_partner_systemid, protocol_current_partner_compid, protocol_current_wp_id); - } else { - if (verbose) qDebug("Ignoring MAVLINK_MSG_ID_MISSION_COUNT from %u with count of %u\n", msg->sysid, wpc.count); - } - } else { - if (verbose && !(current_state == PX_WPP_IDLE || current_state == PX_WPP_GETLIST)) qDebug("Ignored MAVLINK_MSG_ID_MISSION_COUNT because i'm doing something else already (state=%i).\n", current_state); - else if (verbose && current_state == PX_WPP_GETLIST && protocol_current_wp_id != 0) qDebug("Ignored MAVLINK_MSG_ID_MISSION_COUNT because i'm already receiving waypoint %u.\n", protocol_current_wp_id); - else qDebug("Ignored MAVLINK_MSG_ID_MISSION_COUNT - FIXME: missed error description\n"); - } - } - break; - } - - case MAVLINK_MSG_ID_MISSION_ITEM: { - mavlink_mission_item_t wp; - mavlink_msg_mission_item_decode(msg, &wp); - - if((msg->sysid == protocol_current_partner_systemid && msg->compid == protocol_current_partner_compid) && (wp.target_system == systemid && wp.target_component == compid)) { - protocol_timestamp_lastaction = now; - - //ensure that we are in the correct state and that the first waypoint has id 0 and the following waypoints have the correct ids - if ((current_state == PX_WPP_GETLIST && wp.seq == 0) || (current_state == PX_WPP_GETLIST_GETWPS && wp.seq == protocol_current_wp_id && wp.seq < protocol_current_count)) { - if (verbose && current_state == PX_WPP_GETLIST) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM %u from %u changing state to PX_WPP_GETLIST_GETWPS\n", wp.seq, msg->sysid); - if (verbose && current_state == PX_WPP_GETLIST_GETWPS && wp.seq == protocol_current_wp_id) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM %u from %u\n", wp.seq, msg->sysid); - if (verbose && current_state == PX_WPP_GETLIST_GETWPS && wp.seq-1 == protocol_current_wp_id) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM %u (again) from %u\n", wp.seq, msg->sysid); - - current_state = PX_WPP_GETLIST_GETWPS; - protocol_current_wp_id = wp.seq + 1; - mavlink_mission_item_t* newwp = new mavlink_mission_item_t; - memcpy(newwp, &wp, sizeof(mavlink_mission_item_t)); - waypoints_receive_buffer->push_back(newwp); - - if(protocol_current_wp_id == protocol_current_count && current_state == PX_WPP_GETLIST_GETWPS) { - if (verbose) qDebug("Got all %u waypoints, changing state to PX_WPP_IDLE\n", protocol_current_count); - - send_waypoint_ack(protocol_current_partner_systemid, protocol_current_partner_compid, 0); - - if (current_active_wp_id > waypoints_receive_buffer->size()-1) { - current_active_wp_id = static_cast(waypoints_receive_buffer->size()) - 1; - } - - // switch the waypoints list - std::vector* waypoints_temp = waypoints; - waypoints = waypoints_receive_buffer; - waypoints_receive_buffer = waypoints_temp; - - //get the new current waypoint - uint32_t i; - for(i = 0; i < waypoints->size(); i++) { - if (waypoints->at(i)->current == 1) { - current_active_wp_id = i; - //if (verbose) qDebug("New current waypoint %u\n", current_active_wp_id); - yawReached = false; - posReached = false; - send_waypoint_current(current_active_wp_id); - send_setpoint(current_active_wp_id); - timestamp_firstinside_orbit = 0; - break; - } - } - - if (i == waypoints->size()) { - current_active_wp_id = -1; - yawReached = false; - posReached = false; - timestamp_firstinside_orbit = 0; - } - - current_state = PX_WPP_IDLE; - } else { - send_waypoint_request(protocol_current_partner_systemid, protocol_current_partner_compid, protocol_current_wp_id); - } - } else { - if (current_state == PX_WPP_IDLE) { - //we're done receiving waypoints, answer with ack. - send_waypoint_ack(protocol_current_partner_systemid, protocol_current_partner_compid, 0); - qDebug("Received MAVLINK_MSG_ID_MISSION_ITEM while state=PX_WPP_IDLE, answered with WAYPOINT_ACK.\n"); - } - if (verbose) { - if (!(current_state == PX_WPP_GETLIST || current_state == PX_WPP_GETLIST_GETWPS)) { - qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM %u because i'm doing something else already (state=%i).\n", wp.seq, current_state); - break; - } else if (current_state == PX_WPP_GETLIST) { - if(!(wp.seq == 0)) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM because the first waypoint ID (%u) was not 0.\n", wp.seq); - else qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM %u - FIXME: missed error description\n", wp.seq); - } else if (current_state == PX_WPP_GETLIST_GETWPS) { - if (!(wp.seq == protocol_current_wp_id)) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM because the waypoint ID (%u) was not the expected %u.\n", wp.seq, protocol_current_wp_id); - else if (!(wp.seq < protocol_current_count)) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM because the waypoint ID (%u) was out of bounds.\n", wp.seq); - else qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM %u - FIXME: missed error description\n", wp.seq); - } else qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM %u - FIXME: missed error description\n", wp.seq); - } - } - } else { - // We're target but already communicating with someone else - if((wp.target_system == systemid && wp.target_component == compid) && !(msg->sysid == protocol_current_partner_systemid && msg->compid == protocol_current_partner_compid) && current_state != PX_WPP_IDLE) { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM %u from ID %u because i'm already talking to ID %u.\n", wp.seq, msg->sysid, protocol_current_partner_systemid); - } else if(wp.target_system == systemid && wp.target_component == compid) { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM %u from ID %u because i have no idea what to do with it\n", wp.seq, msg->sysid); - } - } - break; - } - - case MAVLINK_MSG_ID_MISSION_CLEAR_ALL: { - mavlink_mission_clear_all_t wpca; - mavlink_msg_mission_clear_all_decode(msg, &wpca); - - if(wpca.target_system == systemid && wpca.target_component == compid && current_state == PX_WPP_IDLE) { - protocol_timestamp_lastaction = now; - - if (verbose) qDebug("Got MAVLINK_MSG_ID_MISSION_ITEM_CLEAR_LIST from %u deleting all waypoints\n", msg->sysid); - while(waypoints->size() > 0) { - delete waypoints->back(); - waypoints->pop_back(); - } - current_active_wp_id = -1; - } else if (wpca.target_system == systemid && wpca.target_component == compid && current_state != PX_WPP_IDLE) { - if (verbose) qDebug("Ignored MAVLINK_MSG_ID_MISSION_ITEM_CLEAR_LIST from %u because i'm doing something else already (state=%i).\n", msg->sysid, current_state); - } - break; - } - - default: { - if (debug) qDebug("Waypoint: received message of unknown type\n"); - break; - } - } - - //check if the current waypoint was reached - if ((posReached && /*yawReached &&*/ !idle)) { - if (current_active_wp_id < waypoints->size()) { - mavlink_mission_item_t *cur_wp = waypoints->at(current_active_wp_id); - - if (timestamp_firstinside_orbit == 0) { - // Announce that last waypoint was reached - if (verbose) qDebug("*** Reached waypoint %u ***\n", cur_wp->seq); - send_waypoint_reached(cur_wp->seq); - timestamp_firstinside_orbit = now; - } - - // check if the MAV was long enough inside the waypoint orbit - //if (now-timestamp_lastoutside_orbit > (cur_wp->hold_time*1000)) - if(now-timestamp_firstinside_orbit >= cur_wp->param2*1000) { - if (cur_wp->autocontinue) { - cur_wp->current = 0; - if (current_active_wp_id == waypoints->size() - 1 && waypoints->size() > 0) { - //the last waypoint was reached, if auto continue is - //activated restart the waypoint list from the beginning - current_active_wp_id = 0; - } else { - current_active_wp_id++; - } - - // Fly to next waypoint - timestamp_firstinside_orbit = 0; - send_waypoint_current(current_active_wp_id); - send_setpoint(current_active_wp_id); - waypoints->at(current_active_wp_id)->current = true; - posReached = false; - //yawReached = false; - if (verbose) qDebug("Set new waypoint (%u)\n", current_active_wp_id); - } - } - } - } else { - timestamp_lastoutside_orbit = now; - } -} diff --git a/src/comm/MAVLinkSimulationWaypointPlanner.h b/src/comm/MAVLinkSimulationWaypointPlanner.h deleted file mode 100644 index 03ba4490909b5c23a698466918348b77a5ff7c24..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSimulationWaypointPlanner.h +++ /dev/null @@ -1,75 +0,0 @@ -#ifndef MAVLINKSIMULATIONWAYPOINTPLANNER_H -#define MAVLINKSIMULATIONWAYPOINTPLANNER_H - -#include -#include - -#include "MAVLinkSimulationLink.h" -#include "QGCMAVLink.h" - -enum PX_WAYPOINTPLANNER_STATES { - PX_WPP_IDLE = 0, - PX_WPP_SENDLIST, - PX_WPP_SENDLIST_SENDWPS, - PX_WPP_GETLIST, - PX_WPP_GETLIST_GETWPS, - PX_WPP_GETLIST_GOTALL -}; - -class MAVLinkSimulationWaypointPlanner : public QObject -{ - Q_OBJECT -public: - explicit MAVLinkSimulationWaypointPlanner(MAVLinkSimulationLink *parent, int systemid); - -signals: - void messageSent(const mavlink_message_t& msg); - -public slots: - void handleMessage(const mavlink_message_t& msg); - -protected: - MAVLinkSimulationLink* link; - bool idle; ///< indicates if the system is following the waypoints or is waiting - uint16_t current_active_wp_id; ///< id of current waypoint - bool yawReached; ///< boolean for yaw attitude reached - bool posReached; ///< boolean for position reached - uint64_t timestamp_lastoutside_orbit;///< timestamp when the MAV was last outside the orbit or had the wrong yaw value - uint64_t timestamp_firstinside_orbit;///< timestamp when the MAV was the first time after a waypoint change inside the orbit and had the correct yaw value - - std::vector waypoints1; ///< vector1 that holds the waypoints - std::vector waypoints2; ///< vector2 that holds the waypoints - - std::vector* waypoints; ///< pointer to the currently active waypoint vector - std::vector* waypoints_receive_buffer; ///< pointer to the receive buffer waypoint vector - PX_WAYPOINTPLANNER_STATES current_state; - uint16_t protocol_current_wp_id; - uint16_t protocol_current_count; - uint8_t protocol_current_partner_systemid; - uint8_t protocol_current_partner_compid; - uint64_t protocol_timestamp_lastaction; - unsigned int protocol_timeout; - uint64_t timestamp_last_send_setpoint; - uint8_t systemid; - uint8_t compid; - unsigned int setpointDelay; - float yawTolerance; - bool verbose; - bool debug; - bool silent; - - void send_waypoint_ack(uint8_t target_systemid, uint8_t target_compid, uint8_t type); - void send_waypoint_current(uint16_t seq); - void send_setpoint(uint16_t seq); - void send_waypoint_count(uint8_t target_systemid, uint8_t target_compid, uint16_t count); - void send_waypoint(uint8_t target_systemid, uint8_t target_compid, uint16_t seq); - void send_waypoint_request(uint8_t target_systemid, uint8_t target_compid, uint16_t seq); - void send_waypoint_reached(uint16_t seq); - float distanceToSegment(uint16_t seq, float x, float y, float z); - float distanceToPoint(uint16_t seq, float x, float y, float z); - float distanceToPoint(uint16_t seq, float x, float y); - void mavlink_handler(const mavlink_message_t* msg); - -}; - -#endif // MAVLINKSIMULATIONWAYPOINTPLANNER_H diff --git a/src/comm/MAVLinkSwarmSimulationLink.cc b/src/comm/MAVLinkSwarmSimulationLink.cc deleted file mode 100644 index e6cc882759b76f0f1081190ad21074e34f4e4d8d..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSwarmSimulationLink.cc +++ /dev/null @@ -1,12 +0,0 @@ -#include "MAVLinkSwarmSimulationLink.h" - -MAVLinkSwarmSimulationLink::MAVLinkSwarmSimulationLink(QString readFile, QString writeFile, int rate) : - MAVLinkSimulationLink(readFile, writeFile, rate) -{ -} - - -void MAVLinkSwarmSimulationLink::mainloop() -{ - -} diff --git a/src/comm/MAVLinkSwarmSimulationLink.h b/src/comm/MAVLinkSwarmSimulationLink.h deleted file mode 100644 index 25e206535da45170501fc3700d0767f8dfd4efb7..0000000000000000000000000000000000000000 --- a/src/comm/MAVLinkSwarmSimulationLink.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef MAVLINKSWARMSIMULATIONLINK_H -#define MAVLINKSWARMSIMULATIONLINK_H - -#include "MAVLinkSimulationLink.h" - -class MAVLinkSwarmSimulationLink : public MAVLinkSimulationLink -{ - Q_OBJECT -public: - MAVLinkSwarmSimulationLink(QString readFile="", QString writeFile="", int rate=5); - -signals: - -public slots: - void mainloop(); - -}; - -#endif // MAVLINKSWARMSIMULATIONLINK_H diff --git a/src/qgcunittest/MockLink.cc b/src/comm/MockLink.cc similarity index 62% rename from src/qgcunittest/MockLink.cc rename to src/comm/MockLink.cc index d348aac67a7fb9de91e5746acbc1fc1be1b7f0e9..c6d682eb10b2016060e4d6b43207b6eb7f3c75df 100644 --- a/src/qgcunittest/MockLink.cc +++ b/src/comm/MockLink.cc @@ -22,6 +22,7 @@ ======================================================================*/ #include "MockLink.h" +#include "QGCLoggingCategory.h" #include #include @@ -29,7 +30,7 @@ #include -Q_LOGGING_CATEGORY(MockLinkLog, "MockLinkLog") +QGC_LOGGING_CATEGORY(MockLinkLog, "MockLinkLog") /// @file /// @brief Mock implementation of a Link. @@ -66,7 +67,6 @@ union px4_custom_mode { }; MockLink::MockLink(MockConfiguration* config) : - _linkId(getNextLinkId()), _name("MockLink"), _connected(false), _vehicleSystemId(128), // FIXME: Pull from eventual parameter manager @@ -166,7 +166,7 @@ void MockLink::_run50HzTasks(void) void MockLink::_loadParams(void) { - QFile paramFile(":/unittest/MockLink.param"); + QFile paramFile(":/unittest/MockLink.params"); bool success = paramFile.open(QFile::ReadOnly); Q_UNUSED(success); @@ -184,6 +184,7 @@ void MockLink::_loadParams(void) QStringList paramData = line.split("\t"); Q_ASSERT(paramData.count() == 5); + int componentId = paramData.at(1).toInt(); QString paramName = paramData.at(2); QString valStr = paramData.at(3); uint paramType = paramData.at(4).toUInt(); @@ -209,7 +210,7 @@ void MockLink::_loadParams(void) qCDebug(MockLinkLog) << "Loading param" << paramName << paramValue; - _mapParamName2Value[paramName] = paramValue; + _mapParamName2Value[componentId][paramName] = paramValue; _mapParamName2MavParamType[paramName] = static_cast(paramType); } } @@ -286,7 +287,7 @@ void MockLink::_handleIncomingMavlinkBytes(const uint8_t* bytes, int cBytes) for (qint64 i=0; i= 0 && request.param_index < _mapParamName2Value.count()); + Q_ASSERT(request.param_index >= 0 && request.param_index < _mapParamName2Value[componentId].count()); - QString key = _mapParamName2Value.keys().at(request.param_index); + QString key = _mapParamName2Value[componentId].keys().at(request.param_index); Q_ASSERT(key.length() <= MAVLINK_MSG_PARAM_REQUEST_READ_FIELD_PARAM_ID_LEN); strcpy(paramId, key.toLocal8Bit().constData()); } - Q_ASSERT(_mapParamName2Value.contains(paramId)); + Q_ASSERT(_mapParamName2Value[componentId].contains(paramId)); Q_ASSERT(_mapParamName2MavParamType.contains(paramId)); mavlink_message_t responseMsg; mavlink_msg_param_value_pack(_vehicleSystemId, - _vehicleComponentId, - &responseMsg, // Outgoing message - paramId, // Parameter name - _floatUnionForParam(paramId), // Parameter value - _mapParamName2MavParamType[paramId], // Parameter type - _mapParamName2Value.count(), // Total number of parameters - _mapParamName2Value.keys().indexOf(paramId)); // Index of this parameter + componentId, // component id + &responseMsg, // Outgoing message + paramId, // Parameter name + _floatUnionForParam(componentId, paramId), // Parameter value + _mapParamName2MavParamType[paramId], // Parameter type + _mapParamName2Value[componentId].count(), // Total number of parameters + _mapParamName2Value[componentId].keys().indexOf(paramId)); // Index of this parameter _emitMavlinkMessage(responseMsg); } @@ -607,3 +676,40 @@ void MockLink::_handleMissionItem(const mavlink_message_t& msg) _missionItems[request.seq] = request; } + +void MockLink::emitRemoteControlChannelRawChanged(int channel, uint16_t raw) +{ + uint16_t chanRaw[18]; + + for (int i=0; i<18; i++) { + chanRaw[i] = UINT16_MAX; + } + chanRaw[channel] = raw; + + mavlink_message_t responseMsg; + mavlink_msg_rc_channels_pack(_vehicleSystemId, + _vehicleComponentId, + &responseMsg, // Outgoing message + 0, // time since boot, ignored + 18, // channel count + chanRaw[0], // channel raw value + chanRaw[1], // channel raw value + chanRaw[2], // channel raw value + chanRaw[3], // channel raw value + chanRaw[4], // channel raw value + chanRaw[5], // channel raw value + chanRaw[6], // channel raw value + chanRaw[7], // channel raw value + chanRaw[8], // channel raw value + chanRaw[9], // channel raw value + chanRaw[10], // channel raw value + chanRaw[11], // channel raw value + chanRaw[12], // channel raw value + chanRaw[13], // channel raw value + chanRaw[14], // channel raw value + chanRaw[15], // channel raw value + chanRaw[16], // channel raw value + chanRaw[17], // channel raw value + 0); // rss + _emitMavlinkMessage(responseMsg); +} diff --git a/src/qgcunittest/MockLink.h b/src/comm/MockLink.h similarity index 92% rename from src/qgcunittest/MockLink.h rename to src/comm/MockLink.h index dad2286657e33476e4a9f368121a0b3997385197..9db0d5b4d98966fb2e6175340154d494b731c865 100644 --- a/src/qgcunittest/MockLink.h +++ b/src/comm/MockLink.h @@ -61,7 +61,6 @@ public: ~MockLink(void); // Virtuals from LinkInterface - virtual int getId(void) const { return _linkId; } virtual QString getName(void) const { return _name; } virtual void requestReset(void){ } virtual bool isConnected(void) const { return _connected; } @@ -71,6 +70,7 @@ public: // MockLink methods MAV_AUTOPILOT getAutopilotType(void) { return _autopilotType; } void setAutopilotType(MAV_AUTOPILOT autopilot) { _autopilotType = autopilot; } + void emitRemoteControlChannelRawChanged(int channel, uint16_t raw); // These are left unimplemented in order to cause linker errors which indicate incorrect usage of // connect/disconnect on link directly. All connect/disconnect calls should be made through LinkManager. @@ -118,12 +118,11 @@ private: void _handleMissionRequestList(const mavlink_message_t& msg); void _handleMissionRequest(const mavlink_message_t& msg); void _handleMissionItem(const mavlink_message_t& msg); - float _floatUnionForParam(const QString& paramName); - void _setParamFloatUnionIntoMap(const QString& paramName, float paramFloat); + float _floatUnionForParam(int componentId, const QString& paramName); + void _setParamFloatUnionIntoMap(int componentId, const QString& paramName, float paramFloat); MockLinkMissionItemHandler* _missionItemHandler; - int _linkId; QString _name; bool _connected; @@ -133,8 +132,8 @@ private: bool _inNSH; bool _mavlinkStarted; - QMap _mapParamName2Value; - QMap _mapParamName2MavParamType; + QMap > _mapParamName2Value; + QMap _mapParamName2MavParamType; typedef QMap MissionList_t; MissionList_t _missionItems; diff --git a/src/qgcunittest/MockLink.param b/src/comm/MockLink.params similarity index 91% rename from src/qgcunittest/MockLink.param rename to src/comm/MockLink.params index 6fc11ee57c64ac2cfb6f9d07d926651c0a618bc1..36588f4d55be98b7e8cb91a728997f8879890f63 100644 --- a/src/qgcunittest/MockLink.param +++ b/src/comm/MockLink.params @@ -21,20 +21,20 @@ 1 50 BD_OBJ_SURFACE 0.00311725 9 1 50 BD_PRECISION 30 9 1 50 BD_TURNRADIUS 120 9 -1 50 CAL_ACC0_ID 0 6 -1 50 CAL_ACC0_XOFF 0 9 -1 50 CAL_ACC0_XSCALE 1 9 -1 50 CAL_ACC0_YOFF 0 9 -1 50 CAL_ACC0_YSCALE 1 9 -1 50 CAL_ACC0_ZOFF 0 9 -1 50 CAL_ACC0_ZSCALE 1 9 -1 50 CAL_ACC1_ID 0 6 -1 50 CAL_ACC1_XOFF 0 9 -1 50 CAL_ACC1_XSCALE 1 9 -1 50 CAL_ACC1_YOFF 0 9 -1 50 CAL_ACC1_YSCALE 1 9 -1 50 CAL_ACC1_ZOFF 0 9 -1 50 CAL_ACC1_ZSCALE 1 9 +1 50 CAL_ACC0_ID 1246218 6 +1 50 CAL_ACC0_XOFF 0.0657825 9 +1 50 CAL_ACC0_XSCALE 0.99657 9 +1 50 CAL_ACC0_YOFF -0.0470138 9 +1 50 CAL_ACC0_YSCALE 1.00066 9 +1 50 CAL_ACC0_ZOFF 0.2244 9 +1 50 CAL_ACC0_ZSCALE 0.985475 9 +1 50 CAL_ACC1_ID 1114634 6 +1 50 CAL_ACC1_XOFF 0.976983 9 +1 50 CAL_ACC1_XSCALE 0.978487 9 +1 50 CAL_ACC1_YOFF 0.92215 9 +1 50 CAL_ACC1_YSCALE 1.01181 9 +1 50 CAL_ACC1_ZOFF 1.07291 9 +1 50 CAL_ACC1_ZSCALE 1.00673 9 1 50 CAL_ACC2_ID 0 6 1 50 CAL_ACC2_XOFF 0 9 1 50 CAL_ACC2_XSCALE 1 9 @@ -42,20 +42,20 @@ 1 50 CAL_ACC2_YSCALE 1 9 1 50 CAL_ACC2_ZOFF 0 9 1 50 CAL_ACC2_ZSCALE 1 9 -1 50 CAL_BOARD_ID 0 6 -1 50 CAL_GYRO0_ID 0 6 -1 50 CAL_GYRO0_XOFF 0 9 +1 50 CAL_BOARD_ID 825374003 6 +1 50 CAL_GYRO0_ID 2163722 6 +1 50 CAL_GYRO0_XOFF 0.0102227 9 1 50 CAL_GYRO0_XSCALE 1 9 -1 50 CAL_GYRO0_YOFF 0 9 +1 50 CAL_GYRO0_YOFF 0.0485427 9 1 50 CAL_GYRO0_YSCALE 1 9 -1 50 CAL_GYRO0_ZOFF 0 9 +1 50 CAL_GYRO0_ZOFF -0.00950837 9 1 50 CAL_GYRO0_ZSCALE 1 9 -1 50 CAL_GYRO1_ID 0 6 -1 50 CAL_GYRO1_XOFF 0 9 +1 50 CAL_GYRO1_ID 2228490 6 +1 50 CAL_GYRO1_XOFF 0.012822 9 1 50 CAL_GYRO1_XSCALE 1 9 -1 50 CAL_GYRO1_YOFF 0 9 +1 50 CAL_GYRO1_YOFF 0.00126972 9 1 50 CAL_GYRO1_YSCALE 1 9 -1 50 CAL_GYRO1_ZOFF 0 9 +1 50 CAL_GYRO1_ZOFF -0.0285923 9 1 50 CAL_GYRO1_ZSCALE 1 9 1 50 CAL_GYRO2_ID 0 6 1 50 CAL_GYRO2_XOFF 0 9 @@ -64,21 +64,21 @@ 1 50 CAL_GYRO2_YSCALE 1 9 1 50 CAL_GYRO2_ZOFF 0 9 1 50 CAL_GYRO2_ZSCALE 1 9 -1 50 CAL_MAG0_ID 0 6 -1 50 CAL_MAG0_ROT -1 6 -1 50 CAL_MAG0_XOFF 0 9 -1 50 CAL_MAG0_XSCALE 1 9 -1 50 CAL_MAG0_YOFF 0 9 -1 50 CAL_MAG0_YSCALE 1 9 -1 50 CAL_MAG0_ZOFF 0 9 -1 50 CAL_MAG0_ZSCALE 1 9 -1 50 CAL_MAG1_ID 0 6 +1 50 CAL_MAG0_ID 73225 6 +1 50 CAL_MAG0_ROT 0 6 +1 50 CAL_MAG0_XOFF 0.0546612 9 +1 50 CAL_MAG0_XSCALE 1.03474 9 +1 50 CAL_MAG0_YOFF -0.0299049 9 +1 50 CAL_MAG0_YSCALE 0.934338 9 +1 50 CAL_MAG0_ZOFF -0.100793 9 +1 50 CAL_MAG0_ZSCALE 0.981021 9 +1 50 CAL_MAG1_ID 131594 6 1 50 CAL_MAG1_ROT -1 6 -1 50 CAL_MAG1_XOFF 0 9 +1 50 CAL_MAG1_XOFF -0.0239289 9 1 50 CAL_MAG1_XSCALE 1 9 -1 50 CAL_MAG1_YOFF 0 9 +1 50 CAL_MAG1_YOFF 0.0811809 9 1 50 CAL_MAG1_YSCALE 1 9 -1 50 CAL_MAG1_ZOFF 0 9 +1 50 CAL_MAG1_ZOFF 0.0455695 9 1 50 CAL_MAG1_ZSCALE 1 9 1 50 CAL_MAG2_ID 0 6 1 50 CAL_MAG2_ROT -1 6 @@ -180,6 +180,7 @@ 1 50 GF_ON 1 6 1 50 GF_SOURCE 0 6 1 50 INAV_DELAY_GPS 0.2 9 +1 50 INAV_ENABLED 0 6 1 50 INAV_FLOW_K 0.15 9 1 50 INAV_FLOW_Q_MIN 0.5 9 1 50 INAV_LAND_DISP 0.7 9 @@ -433,30 +434,32 @@ 1 50 RC_ACRO_TH 0.5 9 1 50 RC_ASSIST_TH 0.25 9 1 50 RC_AUTO_TH 0.75 9 +1 50 RC_CHAN_CNT 0 6 1 50 RC_DSM_BIND -1 6 1 50 RC_FAILS_THR 0 6 1 50 RC_LOITER_TH 0.5 9 1 50 RC_MAP_ACRO_SW 0 6 -1 50 RC_MAP_AUX1 0 6 -1 50 RC_MAP_AUX2 0 6 +1 50 RC_MAP_AUX1 11 6 +1 50 RC_MAP_AUX2 12 6 1 50 RC_MAP_AUX3 0 6 1 50 RC_MAP_FAILSAFE 0 6 -1 50 RC_MAP_FLAPS 0 6 -1 50 RC_MAP_LOITER_SW 0 6 -1 50 RC_MAP_MODE_SW 0 6 +1 50 RC_MAP_FLAPS 10 6 +1 50 RC_MAP_LOITER_SW 9 6 +1 50 RC_MAP_MODE_SW 6 6 1 50 RC_MAP_OFFB_SW 0 6 1 50 RC_MAP_PARAM1 0 6 1 50 RC_MAP_PARAM2 0 6 1 50 RC_MAP_PARAM3 0 6 1 50 RC_MAP_PITCH 2 6 -1 50 RC_MAP_POSCTL_SW 0 6 -1 50 RC_MAP_RETURN_SW 0 6 +1 50 RC_MAP_POSCTL_SW 7 6 +1 50 RC_MAP_RETURN_SW 8 6 1 50 RC_MAP_ROLL 1 6 1 50 RC_MAP_THROTTLE 3 6 1 50 RC_MAP_YAW 4 6 1 50 RC_OFFB_TH 0.5 9 1 50 RC_POSCTL_TH 0.5 9 1 50 RC_RETURN_TH 0.5 9 +1 50 RC_TH_USER 1 6 1 50 RTL_DESCEND_ALT 10 9 1 50 RTL_LAND_DELAY -1 9 1 50 RTL_LOITER_RAD 50 9 @@ -507,3 +510,4 @@ 1 50 VT_MOT_COUNT 0 6 1 50 VT_POWER_MAX 120 9 1 50 VT_PROP_EFF 0 9 +1 51 COMPONENT_51 51 6 diff --git a/src/qgcunittest/MockLinkMissionItemHandler.cc b/src/comm/MockLinkMissionItemHandler.cc similarity index 100% rename from src/qgcunittest/MockLinkMissionItemHandler.cc rename to src/comm/MockLinkMissionItemHandler.cc diff --git a/src/qgcunittest/MockLinkMissionItemHandler.h b/src/comm/MockLinkMissionItemHandler.h similarity index 99% rename from src/qgcunittest/MockLinkMissionItemHandler.h rename to src/comm/MockLinkMissionItemHandler.h index 640f1fcf369380052817e0f692473efe9a2a3910..801c80e53459f80ca3b8169fb09e5aa3f53cf404 100644 --- a/src/qgcunittest/MockLinkMissionItemHandler.h +++ b/src/comm/MockLinkMissionItemHandler.h @@ -29,7 +29,6 @@ #include #include -#include "MAVLinkSimulationLink.h" #include "QGCMAVLink.h" /* Alreedy defined in MAVLinkSimulationLink.h above! diff --git a/src/comm/Parameter.cc b/src/comm/Parameter.cc deleted file mode 100644 index 9a4b66a64669b53d590acdac88c98932decddb9c..0000000000000000000000000000000000000000 --- a/src/comm/Parameter.cc +++ /dev/null @@ -1,118 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Implementation of class OpalRT::Parameter - * @author Bryan Godbolt - */ -#include "Parameter.h" -using namespace OpalRT; - -//Parameter::Parameter(char *simulinkPath, char *simulinkName, uint8_t componentID, -// QGCParamID paramID, unsigned short opalID) -// : simulinkPath(new QString(simulinkPath)), -// simulinkName(new QString(simulinkName)), -// componentID(componentID), -// paramID(new QGCParamID(paramID)), -// opalID(opalID) -// -//{ -//} -Parameter::Parameter(QString simulinkPath, QString simulinkName, uint8_t componentID, - QGCParamID paramID, unsigned short opalID) - : simulinkPath(new QString(simulinkPath)), - simulinkName(new QString(simulinkName)), - componentID(componentID), - paramID(new QGCParamID(paramID)), - opalID(opalID) - -{ -} -Parameter::Parameter(const Parameter &other) - : componentID(other.componentID), - opalID(other.opalID) -{ - simulinkPath = new QString(*other.simulinkPath); - simulinkName = new QString(*other.simulinkName); - paramID = new QGCParamID(*other.paramID); -} - -Parameter::~Parameter() -{ - delete simulinkPath; - delete simulinkName; - delete paramID; -} - -bool Parameter::operator ==(const Parameter& other) const -{ - return - (*simulinkPath) == *(other.simulinkPath) - && *simulinkName == *(other.simulinkName) - && componentID == other.componentID - && *paramID == *(other.paramID) - && opalID == other.opalID; - -} - -float Parameter::getValue() -{ - unsigned short allocatedParams = 1; - unsigned short numParams; - unsigned short numValues = 1; - unsigned short returnedNumValues; - double value; - - int returnVal = OpalGetParameters(allocatedParams, &numParams, &opalID, - numValues, &returnedNumValues, &value); - - if (returnVal != EOK) { - OpalRT::OpalErrorMsg::displayLastErrorMsg(); - return FLT_MAX; - } - - return static_cast(value); -} - -void Parameter::setValue(float val) -{ - unsigned short allocatedParams = 1; - unsigned short numParams; - unsigned short numValues = 1; - unsigned short returnedNumValues; - double value = static_cast(val); - - int returnVal = OpalSetParameters(allocatedParams, &numParams, &opalID, - numValues, &returnedNumValues, &value); - if (returnVal != EOK) { - //qDebug() << __FILE__ << ":" << __LINE__ << ": Error numer: " << QString::number(returnVal); - OpalErrorMsg::displayLastErrorMsg(); - } -} - -Parameter::operator QString() const -{ - return *simulinkPath + *simulinkName + " " + QString::number(componentID) - + " " + *paramID + " " + QString::number(opalID); -} diff --git a/src/comm/Parameter.h b/src/comm/Parameter.h deleted file mode 100644 index 8b20b55ef10e00d0f27142dde75bf90ca6b48d51..0000000000000000000000000000000000000000 --- a/src/comm/Parameter.h +++ /dev/null @@ -1,92 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Parameter Object used to intefrace with an OpalRT Simulink Parameter - \see OpalLink - \see OpalRT::ParameterList - * @author Bryan Godbolt - */ - -#ifndef PARAMETER_H -#define PARAMETER_H - -#include -#include - -#include "mavlink_types.h" -#include "QGCParamID.h" -#include "OpalApi.h" -#include "OpalRT.h" -#include - -namespace OpalRT -{ -class Parameter -{ -public: -// Parameter(char *simulinkPath = "", -// char *simulinkName = "", -// uint8_t componentID = 0, -// QGCParamID paramID = QGCParamID(), -// unsigned short opalID = 0); - Parameter(QString simulinkPath = QString(), - QString simulinkName = QString(), - uint8_t componentID = 0, - QGCParamID paramID = QGCParamID(), - unsigned short opalID = 0); - Parameter(const Parameter& other); - ~Parameter(); - - const QGCParamID& getParamID() const { - return *paramID; - } - void setOpalID(unsigned short opalID) { - this->opalID = opalID; - } - const QString& getSimulinkPath() const { - return *simulinkPath; - } - const QString& getSimulinkName() const { - return *simulinkName; - } - uint8_t getComponentID() const { - return componentID; - } - float getValue(); - void setValue(float value); - - bool operator==(const Parameter& other) const; - operator QString() const; - -protected: - QString *simulinkPath; - QString *simulinkName; - uint8_t componentID; - QGCParamID *paramID; - unsigned short opalID; -}; -} - -#endif // PARAMETER_H diff --git a/src/comm/ParameterList.cc b/src/comm/ParameterList.cc deleted file mode 100644 index ecb627e39cdbff893834aa10eb474a90d518befe..0000000000000000000000000000000000000000 --- a/src/comm/ParameterList.cc +++ /dev/null @@ -1,332 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Implementation of class OpalRT::ParameterList - * @author Bryan Godbolt - */ - -#include "ParameterList.h" -using namespace OpalRT; - -ParameterList::ParameterList() - :params(new QMap >), - paramList(new QList >()), - reqdServoParams(new QStringList()) -{ - - QDir settingsDir = QDir(qApp->applicationDirPath()); - if (settingsDir.dirName() == "bin") - settingsDir.cdUp(); - settingsDir.cd("data"); - - // Enforce a list of parameters which are necessary for flight - reqdServoParams->append("AIL_RIGHT_IN"); - reqdServoParams->append("AIL_CENTER_IN"); - reqdServoParams->append("AIL_LEFT_IN"); - reqdServoParams->append("AIL_RIGHT_OUT"); - reqdServoParams->append("AIL_CENTER_OUT"); - reqdServoParams->append("AIL_LEFT_OUT"); - reqdServoParams->append("ELE_DOWN_IN"); - reqdServoParams->append("ELE_CENTER_IN"); - reqdServoParams->append("ELE_UP_IN"); - reqdServoParams->append("ELE_DOWN_OUT"); - reqdServoParams->append("ELE_CENTER_OUT"); - reqdServoParams->append("ELE_UP_OUT"); - reqdServoParams->append("RUD_LEFT_IN"); - reqdServoParams->append("RUD_CENTER_IN"); - reqdServoParams->append("RUD_RIGHT_IN"); - - QString filename(settingsDir.path() + "/ParameterList.xml"); - if ((QFile::exists(filename)) && open(filename)) { - - /* Get a list of the available parameters from opal-rt */ - QMap *opalParams = new QMap; - getParameterList(opalParams); - - /* Iterate over the parameters we want to use in qgc and populate their ids */ - QMap >::iterator componentIter; - QMap::iterator paramIter; - QString s; - for (componentIter = params->begin(); componentIter != params->end(); ++componentIter) { - paramList->append(QList()); - for (paramIter = (*componentIter).begin(); paramIter != (*componentIter).end(); ++paramIter) { - paramList->last().append(paramIter.operator ->()); - s = (*paramIter).getSimulinkPath() + (*paramIter).getSimulinkName(); - if (opalParams->contains(s)) { - (*paramIter).setOpalID(opalParams->value(s)); - // qDebug() << __FILE__ << " Line:" << __LINE__ << ": Successfully added " << s; - } else { - qDebug() << __FILE__ << " Line:" << __LINE__ << ": " << s << " was not found in param list"; - } - } - } - delete opalParams; - } -} - -ParameterList::~ParameterList() -{ - delete params; - delete paramList; -} - -/** - Get the list of parameters in the simulink model. This function does not require - any prior knowlege of the parameters. It works by first calling OpalGetParameterList to - get the number of paramters, then allocates the required amount of memory and then gets - the paramter list using a second call to OpalGetParameterList. - */ -void ParameterList::getParameterList(QMap *opalParams) -{ - /* inputs */ - unsigned short allocatedParams=0; - unsigned short allocatedPathLen=0; - unsigned short allocatedNameLen=0; - unsigned short allocatedVarLen=0; - - /* outputs */ - unsigned short numParams; - unsigned short *idParam=NULL; - unsigned short maxPathLen; - char **paths=NULL; - unsigned short maxNameLen; - char **names=NULL; - unsigned short maxVarLen; - char **var=NULL; - - int returnValue; - - returnValue = OpalGetParameterList(allocatedParams, &numParams, idParam, - allocatedPathLen, &maxPathLen, paths, - allocatedNameLen, &maxNameLen, names, - allocatedVarLen, &maxVarLen, var); - if (returnValue!=E2BIG) { -// OpalRT::setLastErrorMsg(); - OpalRT::OpalErrorMsg::displayLastErrorMsg(); - return; - } - - // allocate memory for parameter list - - idParam = new unsigned short[numParams]; - allocatedParams = numParams; - - paths = new char*[numParams]; - for (int i=0; iinsert(path+name, idParam[i]); - else - opalParams->insert(path+'/'+name, idParam[i]); - } -// Dump out the list of parameters -// QMap::const_iterator paramPrint; -// for (paramPrint = opalParams->begin(); paramPrint != opalParams->end(); ++paramPrint) -// qDebug() << paramPrint.key(); - - -} - -int ParameterList::indexOf(const Parameter &p) -{ - // incase p is a copy of the actual parameter we want (i.e., addresses differ) - Parameter *pPtr = &((*params)[p.getComponentID()][p.getParamID()]); - - QList >::const_iterator iter; - int index = -1; - for (iter = paramList->begin(); iter != paramList->end(); ++iter) { - if ((index = (*iter).indexOf(pPtr)) != -1) - return index; - } - return index; -} - - -ParameterList::const_iterator::const_iterator(QList paramList) -{ - this->paramList = QList(paramList); - index = 0; -} - -ParameterList::const_iterator::const_iterator(const const_iterator &other) -{ - paramList = QList(other.paramList); - index = other.index; -} - -ParameterList::const_iterator ParameterList::begin() const -{ - QList > compList = params->values(); - QList paramList; - QList >::const_iterator compIter; - for (compIter = compList.begin(); compIter != compList.end(); ++compIter) - paramList.append((*compIter).values()); - return const_iterator(paramList); -} - -ParameterList::const_iterator ParameterList::end() const -{ - const_iterator iter = begin(); - return iter+=iter.paramList.size(); -} - -int ParameterList::count() -{ - int count = 0; - QList >::const_iterator iter; - for (iter = paramList->begin(); iter != paramList->end(); ++iter) - count += (*iter).count(); - return count; -} - -/* Functions related to reading the xml config file */ - -bool ParameterList::open(QString filename) -{ - QFile paramFile(filename); - if (!paramFile.exists()) { - /// \todo open dialog box (maybe: that could also go in comm config window) - return false; - } - - if (!paramFile.open(QIODevice::ReadOnly)) { - return false; - } - - read(¶mFile); - - paramFile.close(); - - return true; -} - -bool ParameterList::read(QIODevice *device) -{ - QDomDocument *paramConfig = new QDomDocument(); - - QString errorStr; - int errorLine; - int errorColumn; - - if (!paramConfig->setContent(device, true, &errorStr, &errorLine, - &errorColumn)) { - qDebug() << "Error reading XML Parameter File on line: " << errorLine << errorStr; - return false; - } - - QDomElement root = paramConfig->documentElement(); - if (root.tagName() != "ParameterList") { - qDebug() << __FILE__ << __LINE__ << "This is not a parameter list xml file"; - return false; - } - - QDomElement child = root.firstChildElement("Block"); - while (!child.isNull()) { - parseBlock(child); - child = child.nextSiblingElement("Block"); - } - - if (!reqdServoParams->empty()) { - qDebug() << __FILE__ << __LINE__ << "Missing the following required servo parameters"; - foreach(QString s, *reqdServoParams) { - qDebug() << s; - } - } - - delete paramConfig; - return true; -} - -void ParameterList::parseBlock(const QDomElement &block) -{ - - QDomNodeList paramList; - QDomElement e; - Parameter *p; - SubsystemIds id; - if (block.attribute("name") == "Navigation") - id = OpalRT::NAV; - else if (block.attribute("name") == "Controller") - id = OpalRT::CONTROLLER; - else if (block.attribute("name") == "ServoOutputs") - id = OpalRT::SERVO_OUTPUTS; - else if (block.attribute("name") == "ServoInputs") - id = OpalRT::SERVO_INPUTS; - - paramList = block.elementsByTagName("Parameter"); - for (int i=0; i < paramList.size(); ++i) { - e = paramList.item(i).toElement(); - if (e.hasAttribute("SimulinkPath") && - e.hasAttribute("SimulinkParameterName") && - e.hasAttribute("QGCParamID")) { - - p = new Parameter(e.attribute("SimulinkPath"), - e.attribute("SimulinkParameterName"), - static_cast(id), - QGCParamID(e.attribute("QGCParamID"))); - (*params)[id].insert(p->getParamID(), *p); - if (reqdServoParams->contains((QString)p->getParamID())) - reqdServoParams->removeAt(reqdServoParams->indexOf((QString)p->getParamID())); - - delete p; - - - } else { - qDebug() << __FILE__ << ":" << __LINE__ << ": error in xml doc in block" << block.attribute("name"); - } - } - - - -} diff --git a/src/comm/ParameterList.h b/src/comm/ParameterList.h deleted file mode 100644 index 6e4a2423e3a3217f6438e3ec6669aa361c47e5f6..0000000000000000000000000000000000000000 --- a/src/comm/ParameterList.h +++ /dev/null @@ -1,175 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -#ifndef PARAMETERLIST_H -#define PARAMETERLIST_H - -#include -#include -#include -#include -#include -#include -#include -#include - -#include "mavlink_types.h" -#include "QGCParamID.h" -#include "Parameter.h" -#include "OpalRT.h" - -namespace OpalRT -{ -class ParameterList -{ -public: - - class const_iterator - { - friend class ParameterList; - - public: - inline const_iterator() {} - const_iterator(const const_iterator& other); - - const_iterator& operator+=(int i) { - index += i; - return *this; - } - bool operator<(const const_iterator& other) const { - return (this->paramList == other.paramList) - &&(this->indexparamList == other.paramList) - &&(this->index==other.index); - } - bool operator!=(const const_iterator& other) const { - return !((*this) == other); - } - const Parameter& operator*() const { - return paramList[index]; - } - const Parameter* operator->() const { - return ¶mList[index]; - } - - const_iterator& operator++() { - ++index; - return *this; - } - private: - const_iterator(QList); - QList paramList; - int index; - }; - - - ParameterList(); - ~ParameterList(); - - /** Count the number of parameters in the list. - \return Total number of parameters - */ - int count(); - - /** Find p in the list and return its index. - \note In order to use this index to look up p, the component is also needed. - \return the index of p or -1 if p is not found - \example - \code - int compid = OpalRT::CONTROLLER_ID; - Parameter p("simulinkpath", "simulinkparamname", compid, QGCParamID("PID_GAIN")); - ParameterList pList; - if ((int index=pList.indexOf(p)) != -1) - qDebug() << "PID_GAIN is at index " << index; - \endcode - */ - int indexOf(const Parameter& p); - bool contains(int compid, QGCParamID paramid) const { - return (*params)[compid].contains(paramid); - } - - /// Get a parameter from the list - const Parameter getParameter(int compid, QGCParamID paramid) const { - return (*params)[compid][paramid]; - } - Parameter& getParameter(int compid, QGCParamID paramid) { - return (*params)[compid][paramid]; - } - const Parameter getParameter(int compid, int index) const { - return *((*paramList)[compid][index]); - } - - /** Convenient syntax for calling OpalRT::Parameter::getParameter() */ - Parameter& operator()(int compid, QGCParamID paramid) { - return getParameter(compid, paramid); - } - Parameter& operator()(uint8_t compid, QGCParamID paramid) { - return getParameter(static_cast(compid), paramid); - } - - const_iterator begin() const; - const_iterator end() const; - -protected: - /** Store the parameters mapped by componentid, and paramid. - \code - // Look up a parameter - int compid = 1; - QGCParamID paramid("PID_GAIN"); - Parameter p = params[compid][paramid]; - \endcode - */ - QMap > *params; - /** - Store pointers to the parameters to allow fast lookup by index. - This variable may be changed to const pointers to ensure all changes - are made through the map container. - */ - QList > *paramList; - /** - List of parameters which are necessary to control the servos. - */ - QStringList *reqdServoParams; - /** - Get the list of available parameters from Opal-RT. - \param[out] opalParams Map of parameter paths/names to ids which are valid in Opal-RT - */ - void getParameterList(QMap* opalParams); - - /** - Open a file for reading in the xml config data - */ - bool open(QString filename=QString()); - /** - Attempt to read XML configuration data from device - \param[in] the device to read the xml data from - \return true if the configuration was read successfully, false otherwise - */ - bool read(QIODevice *device); - - void parseBlock(const QDomElement &block); -}; -} -#endif // PARAMETERLIST_H diff --git a/src/comm/QGCFlightGearLink.cc b/src/comm/QGCFlightGearLink.cc index cc2de31692ae89452cfcee4d68c9b116222cb6a9..e6e234056602b168fff7311ed75e30ba326cd80e 100644 --- a/src/comm/QGCFlightGearLink.cc +++ b/src/comm/QGCFlightGearLink.cc @@ -833,7 +833,7 @@ bool QGCFlightGearLink::connectSimulation() #endif // Setup and verify directory which contains QGC provided aircraft files - QString qgcAircraftDir(QApplication::applicationDirPath() + "/files/flightgear/Aircraft"); + QString qgcAircraftDir(QApplication::applicationDirPath() + "/flightgear/Aircraft"); if (!QFileInfo(qgcAircraftDir).isDir()) { QGCMessageBox::critical(tr("FlightGear HIL"), tr("Incorrect QGroundControl installation. Aircraft directory is missing: '%1'.").arg(qgcAircraftDir)); return false; @@ -854,7 +854,7 @@ bool QGCFlightGearLink::connectSimulation() } // Verify directory which contains QGC provided FlightGear communication protocol files - QDir qgcProtocolDir(QApplication::applicationDirPath() + "/files/flightgear/Protocol/"); + QDir qgcProtocolDir(QApplication::applicationDirPath() + "/flightgear/Protocol/"); if (!qgcProtocolDir.isReadable()) { QGCMessageBox::critical(tr("FlightGear HIL"), tr("Incorrect QGroundControl installation. Protocol directory is missing (%1).").arg(qgcProtocolDir.path())); return false; diff --git a/src/comm/QGCParamID.h b/src/comm/QGCParamID.h deleted file mode 100644 index 44f9ddead9dc01d114a788a273a63fd7d81f4398..0000000000000000000000000000000000000000 --- a/src/comm/QGCParamID.h +++ /dev/null @@ -1,82 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009 - 2011 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Stores the paramid used for mavlink - * @author Bryan Godbolt - */ - -#ifndef QGCPARAMID_H -#define QGCPARAMID_H - -#include - -#include "mavlink_types.h" - -//namespace OpalRT -//{ -// class QGCParamID; -//} -// -//QDataStream& operator<<(QDataStream&, const OpalRT::QGCParamID&); - -namespace OpalRT -{ -/** Stores a param_id for the mavlink parameter packets. This class adds the convenience - of storing the id as a string (e.g., easy comparison). - - \todo Fix: warning: deprecated conversion from string constant to 'char*' - */ -class QGCParamID -{ -// friend QDataStream& operator<<(QDataStream& stream, const QGCParamID& paramid); -public: - - QGCParamID(const char[]); - QGCParamID(const QString); - QGCParamID() {} - QGCParamID(const QGCParamID& other); - - bool operator<(const QGCParamID& other) const { - return data(data); - } - int8_t* toInt8_t() const { - return (int8_t*)data.toLatin1().data(); - } - -protected: - QString data; -}; -} -#endif // QGCPARAMID_H diff --git a/src/comm/SerialLink.cc b/src/comm/SerialLink.cc index 2641edd68823521abfc498c03663e47bf8956bc2..d998badb0ec74a791185d1e16e1b8b5bc90a1889 100644 --- a/src/comm/SerialLink.cc +++ b/src/comm/SerialLink.cc @@ -12,14 +12,21 @@ #include #include #include + +#ifdef __android__ +#include "qserialport.h" +#include "qserialportinfo.h" +#else #include #include +#endif #include "SerialLink.h" #include "QGC.h" #include "MG.h" +#include "QGCLoggingCategory.h" -Q_LOGGING_CATEGORY(SerialLinkLog, "SerialLinkLog") +QGC_LOGGING_CATEGORY(SerialLinkLog, "SerialLinkLog") SerialLink::SerialLink(SerialConfiguration* config) { @@ -33,8 +40,6 @@ SerialLink::SerialLink(SerialConfiguration* config) // We're doing it wrong - because the Qt folks got the API wrong: // http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/ moveToThread(this); - // Set unique ID and add link to the list of links - _id = getNextLinkId(); qCDebug(SerialLinkLog) << "Create SerialLink " << config->portName() << config->baud() << config->flowControl() << config->parity() << config->dataBits() << config->stopBits(); @@ -62,7 +67,7 @@ SerialLink::~SerialLink() bool SerialLink::_isBootloader() { - QList portList = QSerialPortInfo::availablePorts(); + QList portList = QSerialPortInfo::availablePorts(); if( portList.count() == 0){ return false; } @@ -88,6 +93,7 @@ bool SerialLink::_isBootloader() **/ void SerialLink::run() { +#ifndef __android__ // Initialize the connection if (!_hardwareConnect(_type)) { // Need to error out here. @@ -98,6 +104,7 @@ void SerialLink::run() _emitLinkError("Error connecting: " + err); return; } +#endif qint64 msecs = QDateTime::currentMSecsSinceEpoch(); qint64 initialmsecs = QDateTime::currentMSecsSinceEpoch(); @@ -250,10 +257,13 @@ bool SerialLink::_disconnect(void) _stopp = true; } wait(); // This will terminate the thread and close the serial port - return true; + } else { + _transmitBuffer.clear(); //clear the output buffer to avoid sending garbage at next connect + qCDebug(SerialLinkLog) << "Already disconnected"; } - _transmitBuffer.clear(); //clear the output buffer to avoid sending garbage at next connect - qCDebug(SerialLinkLog) << "Already disconnected"; +#ifdef __android__ + LinkManager::instance()->suspendConfigurationUpdates(false); +#endif return true; } @@ -271,6 +281,19 @@ bool SerialLink::_connect(void) QMutexLocker locker(&this->_stoppMutex); _stopp = false; } +#ifdef __android__ + LinkManager::instance()->suspendConfigurationUpdates(true); + // Initialize the connection + if (!_hardwareConnect(_type)) { + // Need to error out here. + QString err("Could not create port."); + if (_port) { + err = _port->errorString(); + } + _emitLinkError("Error connecting: " + err); + return false; + } +#endif start(HighPriority); return true; } @@ -333,6 +356,9 @@ bool SerialLink::_hardwareConnect(QString &type) // After the bootloader times out, it still can take a second or so for the Pixhawk USB driver to come up and make // the port available for open. So we retry a few times to wait for it. +#ifdef __android__ + _port->open(QIODevice::ReadWrite); +#else for (int openRetries = 0; openRetries < 4; openRetries++) { if (!_port->open(QIODevice::ReadWrite)) { qCDebug(SerialLinkLog) << "Port open failed, retrying"; @@ -341,6 +367,7 @@ bool SerialLink::_hardwareConnect(QString &type) break; } } +#endif if (!_port->isOpen() ) { emit communicationUpdate(getName(),"Error opening port: " + _port->errorString()); _port->close(); @@ -390,11 +417,6 @@ bool SerialLink::isConnected() const return isConnected; } -int SerialLink::getId() const -{ - return _id; -} - QString SerialLink::getName() const { return _config->portName(); @@ -581,14 +603,3 @@ void SerialConfiguration::loadSettings(QSettings& settings, const QString& root) if(settings.contains("portName")) _portName = settings.value("portName").toString(); settings.endGroup(); } - -QList SerialConfiguration::getCurrentPorts() -{ - QList ports; - QList portList = QSerialPortInfo::availablePorts(); - foreach (const QSerialPortInfo &info, portList) - { - ports.append(info.portName()); - } - return ports; -} diff --git a/src/comm/SerialLink.h b/src/comm/SerialLink.h index b641d113e4daff22a3e495a24f199acdef39f409..8f2011e83b84e2bf42f738be511c5ff68274873f 100644 --- a/src/comm/SerialLink.h +++ b/src/comm/SerialLink.h @@ -40,7 +40,11 @@ class SerialLink; #include #include #include +#ifdef __android__ +#include "qserialport.h" +#else #include +#endif #include #include @@ -81,9 +85,6 @@ public: void saveSettings(QSettings& settings, const QString& root); void updateSettings(); - /*! @brief Get a list of the currently available ports */ - static QList getCurrentPorts(); - private: int _baud; int _dataBits; @@ -105,16 +106,14 @@ private: class SerialLink : public LinkInterface { Q_OBJECT + friend class SerialConfiguration; + friend class LinkManager; + public: - - SerialLink(SerialConfiguration* config); - ~SerialLink(); - // LinkInterface LinkConfiguration* getLinkConfiguration(); - int getId() const; QString getName() const; void requestReset(); bool isConnected() const; @@ -148,7 +147,6 @@ protected: QSerialPort* _port; quint64 _bytesRead; int _timeout; - int _id; QMutex _dataMutex; // Mutex for reading data from _port QMutex _writeMutex; // Mutex for accessing the _transmitBuffer. QString _type; @@ -157,9 +155,13 @@ private slots: void _rerouteDisconnected(void); private: + // Links are only created/destroyed by LinkManager so constructor/destructor is not public + SerialLink(SerialConfiguration* config); + ~SerialLink(); + // From LinkInterface - bool _connect(void); - bool _disconnect(void); + virtual bool _connect(void); + virtual bool _disconnect(void); // Internal methods void _emitLinkError(const QString& errorMsg); diff --git a/src/comm/TCPLink.cc b/src/comm/TCPLink.cc index 67cd1ded84e6fe4525f711e09f66ed2683933c48..35a0b6e69fb6511e77611e17cfe92bceb89f6368 100644 --- a/src/comm/TCPLink.cc +++ b/src/comm/TCPLink.cc @@ -46,7 +46,6 @@ TCPLink::TCPLink(TCPConfiguration *config) // We're doing it wrong - because the Qt folks got the API wrong: // http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/ moveToThread(this); - _linkId = getNextLinkId(); qDebug() << "TCP Created " << _config->name(); } @@ -200,11 +199,6 @@ bool TCPLink::isConnected() const return _socketIsConnected; } -int TCPLink::getId() const -{ - return _linkId; -} - QString TCPLink::getName() const { return _config->name(); diff --git a/src/comm/TCPLink.h b/src/comm/TCPLink.h index 36ce8815addbd509d39518ce7623a487ef439791..2d0e5a52eef1ee511a36f5290671048187a2de03 100644 --- a/src/comm/TCPLink.h +++ b/src/comm/TCPLink.h @@ -115,18 +115,17 @@ private: class TCPLink : public LinkInterface { Q_OBJECT + friend class TCPLinkUnitTest; friend class TCPConfiguration; -public: - TCPLink(TCPConfiguration* config); - ~TCPLink(); + friend class LinkManager; +public: QTcpSocket* getSocket(void) { return _socket; } void signalBytesWritten(void); // LinkInterface methods - virtual int getId(void) const; virtual QString getName(void) const; virtual bool isConnected(void) const; virtual void requestReset(void) {}; @@ -159,9 +158,13 @@ protected: virtual void run(void); private: + // Links are only created/destroyed by LinkManager so constructor/destructor is not public + TCPLink(TCPConfiguration* config); + ~TCPLink(); + // From LinkInterface - bool _connect(void); - bool _disconnect(void); + virtual bool _connect(void); + virtual bool _disconnect(void); bool _hardwareConnect(); void _restartConnection(); @@ -170,7 +173,6 @@ private: void _writeDebugBytes(const char *data, qint16 size); #endif - int _linkId; TCPConfiguration* _config; QTcpSocket* _socket; bool _socketIsConnected; diff --git a/src/comm/UDPLink.cc b/src/comm/UDPLink.cc index 2ef238b1638c7b2b60be06ea6f2783cc189669f4..327a5ce3c4c17b631c3f6b26d63dd343a6dbe2b0 100644 --- a/src/comm/UDPLink.cc +++ b/src/comm/UDPLink.cc @@ -51,8 +51,6 @@ UDPLink::UDPLink(UDPConfiguration* config) // http://blog.qt.digia.com/blog/2010/06/17/youre-doing-it-wrong/ moveToThread(this); - // Set unique ID and add link to the list of links - _id = getNextLinkId(); qDebug() << "UDP Created " << _config->name(); } @@ -94,7 +92,6 @@ QString UDPLink::getName() const void UDPLink::addHost(const QString& host) { - qDebug() << "UDP:" << "ADDING HOST:" << host; _config->addHost(host); } @@ -176,8 +173,7 @@ void UDPLink::readBytes() // added to the list and will start receiving datagrams from here. Even a port scanner // would trigger this. // Add host to broadcast list if not yet present, or update its port - QString host(sender.toString() + ":" + QString("%1").arg((int)senderPort)); - _config->addHost(host); + _config->addHost(sender.toString(), (int)senderPort); } } @@ -242,11 +238,6 @@ bool UDPLink::isConnected() const return _connectState; } -int UDPLink::getId() const -{ - return _id; -} - qint64 UDPLink::getConnectionSpeed() const { return 54000000; // 54 Mbit @@ -285,7 +276,6 @@ UDPConfiguration::UDPConfiguration(UDPConfiguration* source) : LinkConfiguration void UDPConfiguration::copyFrom(LinkConfiguration *source) { - _confMutex.lock(); LinkConfiguration::copyFrom(source); UDPConfiguration* usource = dynamic_cast(source); Q_ASSERT(usource != NULL); @@ -297,7 +287,6 @@ void UDPConfiguration::copyFrom(LinkConfiguration *source) addHost(host, port); } while(usource->nextHost(host, port)); } - _confMutex.unlock(); } /** @@ -305,7 +294,6 @@ void UDPConfiguration::copyFrom(LinkConfiguration *source) */ void UDPConfiguration::addHost(const QString& host) { - qDebug() << "UDP:" << "ADDING HOST:" << host; if (host.contains(":")) { QHostInfo info = QHostInfo::fromName(host.split(":").first()); @@ -316,33 +304,44 @@ void UDPConfiguration::addHost(const QString& host) QHostAddress address; for (int i = 0; i < hostAddresses.size(); i++) { - // Exclude loopback IPv4 and all IPv6 addresses + // Exclude all IPv6 addresses if (!hostAddresses.at(i).toString().contains(":")) { address = hostAddresses.at(i); } } + _confMutex.lock(); _hosts[address.toString()] = host.split(":").last().toInt(); + _confMutex.unlock(); + qDebug() << "UDP:" << "ADDING HOST:" << address.toString() << ":" << host.split(":").last(); } } else { - QHostInfo info = QHostInfo::fromName(host); - if (info.error() == QHostInfo::NoError) - { - // Set port according to default (same as local port) - _hosts[info.addresses().first().toString()] = (int)_localPort; - } + addHost(host, (int)_localPort); } } void UDPConfiguration::addHost(const QString& host, int port) { - _hosts[host.trimmed()] = port; + QMutexLocker locker(&_confMutex); + if(_hosts.contains(host)) { + if(_hosts[host] != port) { + _hosts[host] = port; + } + } else { + QHostInfo info = QHostInfo::fromName(host); + if (info.error() == QHostInfo::NoError) + { + _hosts[info.addresses().first().toString()] = port; + qDebug() << "UDP:" << "ADDING HOST:" << info.addresses().first().toString() << ":" << port; + } + } } void UDPConfiguration::removeHost(const QString& host) { + QMutexLocker locker(&_confMutex); QString tHost = host; if (tHost.contains(":")) { tHost = tHost.split(":").first(); @@ -356,15 +355,19 @@ void UDPConfiguration::removeHost(const QString& host) bool UDPConfiguration::firstHost(QString& host, int& port) { + _confMutex.lock(); _it = _hosts.begin(); if(_it == _hosts.end()) { + _confMutex.unlock(); return false; } + _confMutex.unlock(); return nextHost(host, port); } bool UDPConfiguration::nextHost(QString& host, int& port) { + QMutexLocker locker(&_confMutex); if(_it != _hosts.end()) { host = _it.key(); port = _it.value(); @@ -402,8 +405,9 @@ void UDPConfiguration::saveSettings(QSettings& settings, const QString& root) void UDPConfiguration::loadSettings(QSettings& settings, const QString& root) { _confMutex.lock(); - settings.beginGroup(root); _hosts.clear(); + _confMutex.unlock(); + settings.beginGroup(root); _localPort = (quint16)settings.value("port", QGC_UDP_LOCAL_PORT).toUInt(); int hostCount = settings.value("hostCount", 0).toInt(); for(int i = 0; i < hostCount; i++) { @@ -414,7 +418,6 @@ void UDPConfiguration::loadSettings(QSettings& settings, const QString& root) } } settings.endGroup(); - _confMutex.unlock(); } void UDPConfiguration::updateSettings() diff --git a/src/comm/UDPLink.h b/src/comm/UDPLink.h index 578de01c121e15f3ac0d97d80334597265d4245a..bb6b17a56f0bafc1d2f84bea0b468f52e6128566 100644 --- a/src/comm/UDPLink.h +++ b/src/comm/UDPLink.h @@ -143,11 +143,11 @@ private: class UDPLink : public LinkInterface { Q_OBJECT + friend class UDPConfiguration; + friend class LinkManager; + public: - UDPLink(UDPConfiguration* config); - ~UDPLink(); - void requestReset() { } bool isConnected() const; QString getName() const; @@ -158,7 +158,6 @@ public: qint64 getCurrentOutDataRate() const; void run(); - int getId() const; // These are left unimplemented in order to cause linker errors which indicate incorrect usage of // connect/disconnect on link directly. All connect/disconnect calls should be made through LinkManager. @@ -189,9 +188,12 @@ protected: QUdpSocket* _socket; UDPConfiguration* _config; bool _connectState; - int _id; private: + // Links are only created/destroyed by LinkManager so constructor/destructor is not public + UDPLink(UDPConfiguration* config); + ~UDPLink(); + // From LinkInterface virtual bool _connect(void); virtual bool _disconnect(void); diff --git a/src/comm/XbeeLink.cpp b/src/comm/XbeeLink.cpp index a190678e1314267946bf810dc746b49f2d54ec9b..ee3baa0c63e8bbf02637bb851d122be6892e9c3d 100644 --- a/src/comm/XbeeLink.cpp +++ b/src/comm/XbeeLink.cpp @@ -8,7 +8,6 @@ XbeeLink::XbeeLink(QString portName, int baudRate) : m_xbeeCon(NULL), - m_id(-1), m_portName(NULL), m_portNameLength(0), m_baudRate(baudRate), @@ -19,13 +18,6 @@ XbeeLink::XbeeLink(QString portName, int baudRate) : /* setup the xbee */ this->setPortName(portName); - - //this->connect(); - // Set unique ID and add link to the list of links - this->m_id = getNextLinkId(); - // set the Name - this->m_name = tr("xbee link") + QString::number(this->m_id); - emit nameChanged(this->m_name); } XbeeLink::~XbeeLink() @@ -110,11 +102,6 @@ bool XbeeLink::setBaudRate(int rate) return retVal; } -int XbeeLink::getId() const -{ - return this->m_id; -} - QString XbeeLink::getName() const { return this->m_name; diff --git a/src/comm/XbeeLink.h b/src/comm/XbeeLink.h index 167b0bb2f2c6c94223d8f13df36c6531330b96f3..04bb62aa3504ef5cc9c54a764f0ab71585dbff3c 100644 --- a/src/comm/XbeeLink.h +++ b/src/comm/XbeeLink.h @@ -35,8 +35,8 @@ public slots: // virtual functions from XbeeLinkInterface bool setRemoteAddressHigh(quint32 high); bool setRemoteAddressLow(quint32 low); -public: // virtual functions from LinkInterface - int getId() const; +public: + // virtual functions from LinkInterface QString getName() const; bool isConnected() const; @@ -56,7 +56,6 @@ public: protected: xbee_con *m_xbeeCon; - int m_id; char *m_portName; unsigned int m_portNameLength; int m_baudRate; diff --git a/src/input/Freenect.cc b/src/input/Freenect.cc deleted file mode 100644 index 3f683c3ea2b1149e82cfc9ea4bb807e1303034d2..0000000000000000000000000000000000000000 --- a/src/input/Freenect.cc +++ /dev/null @@ -1,449 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Freenect. - * - * @author Lionel Heng - * - */ - -#include "Freenect.h" - -#include -#include -#include - -Freenect::Freenect() - : context(NULL) - , device(NULL) - , tiltAngle(0) - , rgbData(new QByteArray) - , rawDepthData(new QByteArray) - , coloredDepthData(new QByteArray) - , pointCloud3D(new QVector) - , pointCloud6D(new QVector) -{ - -} - -Freenect::~Freenect() -{ - if (device != NULL) { - freenect_stop_depth(device); - freenect_stop_video(device); - } - - freenect_close_device(device); - - freenect_shutdown(context); -} - -bool -Freenect::init(int userDeviceNumber) -{ - // read in settings - readConfigFile(); - - // populate gamma lookup table - for (int i = 0; i < 2048; ++i) { - float v = static_cast(i) / 2048.0f; - v = powf(v, 3.0f) * 6.0f; - gammaTable[i] = static_cast(v * 6.0f * 256.0f); - } - - // populate depth projection matrix - for (int i = 0; i < FREENECT_FRAME_H; ++i) { - for (int j = 0; j < FREENECT_FRAME_W; ++j) { - QVector2D originalPoint(j, i); - QVector2D rectifiedPoint; - rectifyPoint(originalPoint, rectifiedPoint, depthCameraParameters); - - QVector3D rectifiedRay; - projectPixelTo3DRay(rectifiedPoint, rectifiedRay, depthCameraParameters); - - depthProjectionMatrix[i * FREENECT_FRAME_W + j] = rectifiedRay; - - rectifyPoint(originalPoint, rectifiedPoint, rgbCameraParameters); - rgbRectificationMap[i * FREENECT_FRAME_W + j] = rectifiedPoint; - } - } - - if (freenect_init(&context, NULL) < 0) { - return false; - } - - freenect_set_log_level(context, FREENECT_LOG_DEBUG); - - if (freenect_num_devices(context) < 1) { - return false; - } - - if (freenect_open_device(context, &device, userDeviceNumber) < 0) { - return false; - } - - freenect_set_user(device, this); - - memset(rgb, 0, FREENECT_VIDEO_RGB_SIZE); - memset(depth, 0, FREENECT_DEPTH_11BIT_SIZE); - - // set Kinect parameters - if (freenect_set_tilt_degs(device, tiltAngle) != 0) { - return false; - } - if (freenect_set_led(device, LED_RED) != 0) { - return false; - } - if (freenect_set_video_format(device, FREENECT_VIDEO_RGB) != 0) { - return false; - } - if (freenect_set_depth_format(device, FREENECT_DEPTH_11BIT) != 0) { - return false; - } - freenect_set_video_callback(device, videoCallback); - freenect_set_depth_callback(device, depthCallback); - - if (freenect_start_depth(device) != 0) { - return false; - } - if (freenect_start_video(device) != 0) { - return false; - } - - thread.reset(new FreenectThread(device)); - thread->start(); - - return true; -} - -bool -Freenect::process(void) -{ - if (freenect_process_events(context) < 0) { - return false; - } - - freenect_raw_tilt_state* state; - freenect_update_tilt_state(device); - state = freenect_get_tilt_state(device); - freenect_get_mks_accel(state, &ax, &ay, &az); - - return true; -} - -QSharedPointer -Freenect::getRgbData(void) -{ - QMutexLocker locker(&rgbMutex); - rgbData->clear(); - rgbData->append(rgb, FREENECT_VIDEO_RGB_SIZE); - - return rgbData; -} - -QSharedPointer -Freenect::getRawDepthData(void) -{ - QMutexLocker locker(&depthMutex); - rawDepthData->clear(); - rawDepthData->append(depth, FREENECT_DEPTH_11BIT_SIZE); - - return rawDepthData; -} - -QSharedPointer -Freenect::getColoredDepthData(void) -{ - QMutexLocker locker(&coloredDepthMutex); - coloredDepthData->clear(); - coloredDepthData->append(coloredDepth, FREENECT_VIDEO_RGB_SIZE); - - return coloredDepthData; -} - -QSharedPointer< QVector > -Freenect::get3DPointCloudData(void) -{ - QMutexLocker locker(&depthMutex); - - pointCloud3D->clear(); - unsigned short* data = reinterpret_cast(depth); - for (int i = 0; i < FREENECT_FRAME_PIX; ++i) { - if (data[i] > 0 && data[i] <= 2048) { - double range = baseline * depthCameraParameters.fx - / (1.0 / 8.0 * (disparityOffset - - static_cast(data[i]))); - - if (range > 0.0f) { - QVector3D ray = depthProjectionMatrix[i]; - ray *= range; - - pointCloud3D->push_back(QVector3D(ray.x(), ray.y(), ray.z())); - } - } - } - - return pointCloud3D; -} - -QSharedPointer< QVector > -Freenect::get6DPointCloudData(void) -{ - get3DPointCloudData(); - - pointCloud6D->clear(); - for (int i = 0; i < pointCloud3D->size(); ++i) { - Vector6D point; - - point.x = pointCloud3D->at(i).x(); - point.y = pointCloud3D->at(i).y(); - point.z = pointCloud3D->at(i).z(); - - QVector4D transformedPoint = transformMatrix * QVector4D(point.x, point.y, point.z, 1.0); - - float iz = 1.0 / transformedPoint.z(); - QVector2D rectifiedPoint(transformedPoint.x() * iz * rgbCameraParameters.fx + rgbCameraParameters.cx, - transformedPoint.y() * iz * rgbCameraParameters.fy + rgbCameraParameters.cy); - - QVector2D originalPoint; - unrectifyPoint(rectifiedPoint, originalPoint, rgbCameraParameters); - - if (originalPoint.x() >= 0.0 && originalPoint.x() < FREENECT_FRAME_W && - originalPoint.y() >= 0.0 && originalPoint.y() < FREENECT_FRAME_H) { - int x = static_cast(originalPoint.x()); - int y = static_cast(originalPoint.y()); - unsigned char* pixel = reinterpret_cast(rgb) - + (y * FREENECT_FRAME_W + x) * 3; - - point.r = pixel[0]; - point.g = pixel[1]; - point.b = pixel[2]; - - pointCloud6D->push_back(point); - } - } - - return pointCloud6D; -} - -int -Freenect::getTiltAngle(void) const -{ - return tiltAngle; -} - -void -Freenect::setTiltAngle(int angle) -{ - if (angle > 30) { - angle = 30; - } - if (angle < -30) { - angle = -30; - } - - tiltAngle = angle; -} - -Freenect::FreenectThread::FreenectThread(freenect_device* _device) -{ - device = _device; -} - -void -Freenect::FreenectThread::run(void) -{ - Freenect* freenect = static_cast(freenect_get_user(device)); - while (1) { - freenect->process(); - } -} - -void -Freenect::readConfigFile(void) -{ - QSettings settings("src/data/kinect.cal", QSettings::IniFormat, 0); - - rgbCameraParameters.cx = settings.value("rgb/principal_point/x").toDouble(); - rgbCameraParameters.cy = settings.value("rgb/principal_point/y").toDouble(); - rgbCameraParameters.fx = settings.value("rgb/focal_length/x").toDouble(); - rgbCameraParameters.fy = settings.value("rgb/focal_length/y").toDouble(); - rgbCameraParameters.k[0] = settings.value("rgb/distortion/k1").toDouble(); - rgbCameraParameters.k[1] = settings.value("rgb/distortion/k2").toDouble(); - rgbCameraParameters.k[2] = settings.value("rgb/distortion/k3").toDouble(); - rgbCameraParameters.k[3] = settings.value("rgb/distortion/k4").toDouble(); - rgbCameraParameters.k[4] = settings.value("rgb/distortion/k5").toDouble(); - - depthCameraParameters.cx = settings.value("depth/principal_point/x").toDouble(); - depthCameraParameters.cy = settings.value("depth/principal_point/y").toDouble(); - depthCameraParameters.fx = settings.value("depth/focal_length/x").toDouble(); - depthCameraParameters.fy = settings.value("depth/focal_length/y").toDouble(); - depthCameraParameters.k[0] = settings.value("depth/distortion/k1").toDouble(); - depthCameraParameters.k[1] = settings.value("depth/distortion/k2").toDouble(); - depthCameraParameters.k[2] = settings.value("depth/distortion/k3").toDouble(); - depthCameraParameters.k[3] = settings.value("depth/distortion/k4").toDouble(); - depthCameraParameters.k[4] = settings.value("depth/distortion/k5").toDouble(); - - transformMatrix = QMatrix4x4(settings.value("transform/R11").toDouble(), - settings.value("transform/R12").toDouble(), - settings.value("transform/R13").toDouble(), - settings.value("transform/Tx").toDouble(), - settings.value("transform/R21").toDouble(), - settings.value("transform/R22").toDouble(), - settings.value("transform/R23").toDouble(), - settings.value("transform/Ty").toDouble(), - settings.value("transform/R31").toDouble(), - settings.value("transform/R32").toDouble(), - settings.value("transform/R33").toDouble(), - settings.value("transform/Tz").toDouble(), - 0.0, 0.0, 0.0, 1.0); - transformMatrix = transformMatrix.inverted(); - - baseline = settings.value("transform/baseline").toDouble(); - disparityOffset = settings.value("transform/disparity_offset").toDouble(); -} - -void -Freenect::rectifyPoint(const QVector2D& originalPoint, - QVector2D& rectifiedPoint, - const IntrinsicCameraParameters& params) -{ - double x = (originalPoint.x() - params.cx) / params.fx; - double y = (originalPoint.y() - params.cy) / params.fy; - - double x0 = x; - double y0 = y; - - // eliminate lens distortion iteratively - for (int i = 0; i < 4; ++i) { - double r2 = x * x + y * y; - - // tangential distortion vector [dx dy] - double dx = 2 * params.k[2] * x * y + params.k[3] * (r2 + 2 * x * x); - double dy = params.k[2] * (r2 + 2 * y * y) + 2 * params.k[3] * x * y; - - double icdist = 1.0 / (1.0 + r2 * (params.k[0] + r2 * (params.k[1] + r2 * params.k[4]))); - x = (x0 - dx) * icdist; - y = (y0 - dy) * icdist; - } - - rectifiedPoint.setX(x * params.fx + params.cx); - rectifiedPoint.setY(y * params.fy + params.cy); -} - -void -Freenect::unrectifyPoint(const QVector2D& rectifiedPoint, - QVector2D& originalPoint, - const IntrinsicCameraParameters& params) -{ - double x = (rectifiedPoint.x() - params.cx) / params.fx; - double y = (rectifiedPoint.y() - params.cy) / params.fy; - - double r2 = x * x + y * y; - - // tangential distortion vector [dx dy] - double dx = 2 * params.k[2] * x * y + params.k[3] * (r2 + 2 * x * x); - double dy = params.k[2] * (r2 + 2 * y * y) + 2 * params.k[3] * x * y; - - double cdist = 1.0 + r2 * (params.k[0] + r2 * (params.k[1] + r2 * params.k[4])); - x = x * cdist + dx; - y = y * cdist + dy; - - originalPoint.setX(x * params.fx + params.cx); - originalPoint.setY(y * params.fy + params.cy); -} - -void -Freenect::projectPixelTo3DRay(const QVector2D& pixel, QVector3D& ray, - const IntrinsicCameraParameters& params) -{ - ray.setX((pixel.x() - params.cx) / params.fx); - ray.setY((pixel.y() - params.cy) / params.fy); - ray.setZ(1.0); -} - -void -Freenect::videoCallback(freenect_device* device, void* video, uint32_t timestamp) -{ - Freenect* freenect = static_cast(freenect_get_user(device)); - - QMutexLocker locker(&freenect->rgbMutex); - memcpy(freenect->rgb, video, FREENECT_VIDEO_RGB_SIZE); -} - -void -Freenect::depthCallback(freenect_device* device, void* depth, uint32_t timestamp) -{ - Freenect* freenect = static_cast(freenect_get_user(device)); - uint16_t* data = reinterpret_cast(depth); - - QMutexLocker depthLocker(&freenect->depthMutex); - memcpy(freenect->depth, data, FREENECT_DEPTH_11BIT_SIZE); - - QMutexLocker coloredDepthLocker(&freenect->coloredDepthMutex); - unsigned short* src = reinterpret_cast(data); - unsigned char* dst = reinterpret_cast(freenect->coloredDepth); - for (int i = 0; i < FREENECT_FRAME_PIX; ++i) { - unsigned short pval = freenect->gammaTable[src[i]]; - unsigned short lb = pval & 0xFF; - switch (pval >> 8) { - case 0: - dst[3 * i] = 255; - dst[3 * i + 1] = 255 - lb; - dst[3 * i + 2] = 255 - lb; - break; - case 1: - dst[3 * i] = 255; - dst[3 * i + 1] = lb; - dst[3 * i + 2] = 0; - break; - case 2: - dst[3 * i] = 255 - lb; - dst[3 * i + 1] = 255; - dst[3 * i + 2] = 0; - break; - case 3: - dst[3 * i] = 0; - dst[3 * i + 1] = 255; - dst[3 * i + 2] = lb; - break; - case 4: - dst[3 * i] = 0; - dst[3 * i + 1] = 255 - lb; - dst[3 * i + 2] = 255; - break; - case 5: - dst[3 * i] = 0; - dst[3 * i + 1] = 0; - dst[3 * i + 2] = 255 - lb; - break; - default: - dst[3 * i] = 0; - dst[3 * i + 1] = 0; - dst[3 * i + 2] = 0; - break; - } - } -} diff --git a/src/input/Freenect.h b/src/input/Freenect.h deleted file mode 100644 index 11f5ccfe56100775cad08a6898663a2581de5781..0000000000000000000000000000000000000000 --- a/src/input/Freenect.h +++ /dev/null @@ -1,154 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Freenect. - * - * @author Lionel Heng - * - */ - -#ifndef FREENECT_H -#define FREENECT_H - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -class Freenect -{ -public: - Freenect(); - ~Freenect(); - - bool init(int userDeviceNumber = 0); - bool process(void); - - QSharedPointer getRgbData(void); - QSharedPointer getRawDepthData(void); - QSharedPointer getColoredDepthData(void); - QSharedPointer< QVector > get3DPointCloudData(void); - - typedef struct { - double x; - double y; - double z; - unsigned char r; - unsigned char g; - unsigned char b; - } Vector6D; - QSharedPointer< QVector > get6DPointCloudData(); - - int getTiltAngle(void) const; - void setTiltAngle(int angle); - -private: - typedef struct { - // coordinates of principal point - double cx; - double cy; - - // focal length in pixels - double fx; - double fy; - - // distortion parameters - double k[5]; - - } IntrinsicCameraParameters; - - void readConfigFile(void); - - void rectifyPoint(const QVector2D& originalPoint, - QVector2D& rectifiedPoint, - const IntrinsicCameraParameters& params); - void unrectifyPoint(const QVector2D& rectifiedPoint, - QVector2D& originalPoint, - const IntrinsicCameraParameters& params); - void projectPixelTo3DRay(const QVector2D& pixel, QVector3D& ray, - const IntrinsicCameraParameters& params); - - static void videoCallback(freenect_device* device, void* video, uint32_t timestamp); - static void depthCallback(freenect_device* device, void* depth, uint32_t timestamp); - - freenect_context* context; - freenect_device* device; - - class FreenectThread : public QThread - { - public: - explicit FreenectThread(freenect_device* _device); - - protected: - virtual void run(void); - - freenect_device* device; - }; - QScopedPointer thread; - - IntrinsicCameraParameters rgbCameraParameters; - IntrinsicCameraParameters depthCameraParameters; - - QMatrix4x4 transformMatrix; - double baseline; - double disparityOffset; - - // tilt angle of Kinect camera - int tiltAngle; - - // rgbd data - char rgb[FREENECT_VIDEO_RGB_SIZE]; - QMutex rgbMutex; - - char depth[FREENECT_DEPTH_11BIT_SIZE]; - QMutex depthMutex; - - char coloredDepth[FREENECT_VIDEO_RGB_SIZE]; - QMutex coloredDepthMutex; - - // accelerometer data - double ax, ay, az; - double dx, dy, dz; - - // gamma map - unsigned short gammaTable[2048]; - - QVector3D depthProjectionMatrix[FREENECT_FRAME_PIX]; - QVector2D rgbRectificationMap[FREENECT_FRAME_PIX]; - - // variables for use outside class - QSharedPointer rgbData; - QSharedPointer rawDepthData; - QSharedPointer coloredDepthData; - QSharedPointer< QVector > pointCloud3D; - QSharedPointer< QVector > pointCloud6D; -}; - -#endif // FREENECT_H diff --git a/src/main.cc b/src/main.cc index 3435cd535a8180a49f8dfd715c38af58242e5ea7..5f6dc5f28707f8de438222e23c660205e7a34680 100644 --- a/src/main.cc +++ b/src/main.cc @@ -35,7 +35,9 @@ This file is part of the QGROUNDCONTROL project #include "MainWindow.h" #include "configuration.h" #ifdef QT_DEBUG +#ifndef __android__ #include "UnitTest.h" +#endif #include "CmdLineOptParser.h" #ifdef Q_OS_WIN #include @@ -101,6 +103,14 @@ int main(int argc, char *argv[]) // anyway to silence the debug output. qRegisterMetaType(); qRegisterMetaType(); + // We statically link to the google QtLocation plugin + +#ifdef Q_OS_WIN + // In Windows, the compiler doesn't see the use of the class created by Q_IMPORT_PLUGIN +#pragma warning( disable : 4930 4101 ) +#endif + + Q_IMPORT_PLUGIN(QGeoServiceProviderFactoryQGC) bool runUnitTests = false; // Run unit tests @@ -148,6 +158,7 @@ int main(int argc, char *argv[]) int exitCode; +#ifndef __android__ #ifdef QT_DEBUG if (runUnitTests) { if (!app->_initForUnitTests()) { @@ -163,6 +174,7 @@ int main(int argc, char *argv[]) } exitCode = -failures; } else +#endif #endif { if (!app->_initForNormalAppBoot()) { diff --git a/src/qgcunittest/LinkManagerTest.cc b/src/qgcunittest/LinkManagerTest.cc index f613683dd719d74b1934a5a073519d12af4eb347..67d143b582271a61c43f3b2da5833a9841f91223 100644 --- a/src/qgcunittest/LinkManagerTest.cc +++ b/src/qgcunittest/LinkManagerTest.cc @@ -78,7 +78,7 @@ void LinkManagerTest::_add_test(void) Q_ASSERT(_linkMgr->getLinks().count() == 0); MockLink* link = new MockLink(); - _linkMgr->addLink(link); + _linkMgr->_addLink(link); QList links = _linkMgr->getLinks(); QCOMPARE(links.count(), 1); @@ -91,8 +91,8 @@ void LinkManagerTest::_delete_test(void) Q_ASSERT(_linkMgr->getLinks().count() == 0); MockLink* link = new MockLink(); - _linkMgr->addLink(link); - _linkMgr->deleteLink(link); + _linkMgr->_addLink(link); + _linkMgr->_deleteLink(link); QCOMPARE(_linkMgr->getLinks().count(), 0); } @@ -104,7 +104,7 @@ void LinkManagerTest::_addSignals_test(void) Q_ASSERT(_multiSpy->checkNoSignals() == true); MockLink* link = new MockLink(); - _linkMgr->addLink(link); + _linkMgr->_addLink(link); QCOMPARE(_multiSpy->checkOnlySignalByMask(newLinkSignalMask), true); QSignalSpy* spy = _multiSpy->getSpyByIndex(newLinkSignalIndex); @@ -125,10 +125,10 @@ void LinkManagerTest::_deleteSignals_test(void) Q_ASSERT(_multiSpy->checkNoSignals() == true); MockLink* link = new MockLink(); - _linkMgr->addLink(link); + _linkMgr->_addLink(link); _multiSpy->clearAllSignals(); - _linkMgr->deleteLink(link); + _linkMgr->_deleteLink(link); QCOMPARE(_multiSpy->checkOnlySignalByMask(linkDeletedSignalMask), true); QSignalSpy* spy = _multiSpy->getSpyByIndex(linkDeletedSignalIndex); diff --git a/src/qgcunittest/MainWindowTest.cc b/src/qgcunittest/MainWindowTest.cc index 2b007bb6735e6615d4725cab1ae6bc592c213bb4..6e43bf1fe57fe132d8f66b4eb26d852882d32c02 100644 --- a/src/qgcunittest/MainWindowTest.cc +++ b/src/qgcunittest/MainWindowTest.cc @@ -27,7 +27,6 @@ /// @author Don Gagne #include "MainWindowTest.h" -#include "QGCToolBar.h" #include "MockLink.h" #include "QGCMessageBox.h" @@ -67,7 +66,7 @@ void MainWindowTest::_connectWindowClose_test(MAV_AUTOPILOT autopilot) MockLink* link = new MockLink(); Q_CHECK_PTR(link); link->setAutopilotType(autopilot); - LinkManager::instance()->addLink(link); + LinkManager::instance()->_addLink(link); linkMgr->connectLink(link); QTest::qWait(5000); // Give enough time for UI to settle and heartbeats to go through diff --git a/src/qgcunittest/MavlinkLogTest.cc b/src/qgcunittest/MavlinkLogTest.cc index a870b3b9dabde2ccec80e9a2ad36ac29a6175056..a34c69954590e5429f6172627fb7dc7fe866e1bb 100644 --- a/src/qgcunittest/MavlinkLogTest.cc +++ b/src/qgcunittest/MavlinkLogTest.cc @@ -140,7 +140,7 @@ void MavlinkLogTest::_connectLog_test(void) MockLink* link = new MockLink(); Q_CHECK_PTR(link); - LinkManager::instance()->addLink(link); + LinkManager::instance()->_addLink(link); linkMgr->connectLink(link); QTest::qWait(5000); // Give enough time for UI to settle and heartbeats to go through diff --git a/src/qgcunittest/MockQGCUASParamManager.cc b/src/qgcunittest/MockQGCUASParamManager.cc deleted file mode 100644 index e8e574ecbd07063e07a40044e1b2070983059a6f..0000000000000000000000000000000000000000 --- a/src/qgcunittest/MockQGCUASParamManager.cc +++ /dev/null @@ -1,115 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#include "MockQGCUASParamManager.h" -#include "mavlink.h" - -#include -#include - -Q_LOGGING_CATEGORY(MockQGCUASParamManagerLog, "MockQGCUASParamManagerLog") - -MockQGCUASParamManager::MockQGCUASParamManager(void) -{ - _loadParams(); -} - -bool MockQGCUASParamManager::getParameterValue(int component, const QString& parameter, QVariant& value) const -{ - Q_UNUSED(component); - - if (_mapParams.contains(parameter)) { - value = _mapParams[parameter]; - return true; - } - - qCDebug(MockQGCUASParamManagerLog) << QString("getParameterValue: parameter not found %1").arg(parameter); - return false; -} - -void MockQGCUASParamManager::setParameter(int component, QString parameterName, QVariant value) -{ - qCDebug(MockQGCUASParamManagerLog) << QString("setParameter: component(%1) parameter(%2) value(%3)").arg(component).arg(parameterName).arg(value.toString()); - - _mapParams[parameterName] = value; - emit parameterUpdated(_defaultComponentId, parameterName, value); -} - -void MockQGCUASParamManager::_loadParams(void) -{ - QFile paramFile(":/unittest/MockLink.param"); - - bool success = paramFile.open(QFile::ReadOnly); - Q_UNUSED(success); - Q_ASSERT(success); - - QTextStream paramStream(¶mFile); - - while (!paramStream.atEnd()) { - QString line = paramStream.readLine(); - - if (line.startsWith("#")) { - continue; - } - - QStringList paramData = line.split("\t"); - Q_ASSERT(paramData.count() == 5); - - QString paramName = paramData.at(2); - QString valStr = paramData.at(3); - uint paramType = paramData.at(4).toUInt(); - - QVariant paramValue; - switch (paramType) { - case MAV_PARAM_TYPE_REAL32: - paramValue = QVariant(valStr.toFloat()); - break; - case MAV_PARAM_TYPE_UINT32: - paramValue = QVariant(valStr.toUInt()); - break; - case MAV_PARAM_TYPE_INT32: - paramValue = QVariant(valStr.toInt()); - break; - case MAV_PARAM_TYPE_INT8: - paramValue = QVariant((unsigned char)valStr.toUInt()); - break; - default: - Q_ASSERT(false); - break; - } - - Q_ASSERT(!_mapParams.contains(paramName)); - _mapParams[paramName] = paramValue; - } -} - -QList MockQGCUASParamManager::getComponentForParam(const QString& parameter) const -{ - if (_mapParams.contains(parameter)) { - QList list; - list << 50; - return list; - } else { - return QList(); - } -} diff --git a/src/qgcunittest/MockQGCUASParamManager.h b/src/qgcunittest/MockQGCUASParamManager.h deleted file mode 100644 index 257e5fbdb392f8de70afad2efb7bffe4e646a121..0000000000000000000000000000000000000000 --- a/src/qgcunittest/MockQGCUASParamManager.h +++ /dev/null @@ -1,110 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#ifndef MOCKQGCUASPARAMMANAGER_H -#define MOCKQGCUASPARAMMANAGER_H - -#include - -#include "QGCUASParamManagerInterface.h" - -Q_DECLARE_LOGGING_CATEGORY(MockQGCUASParamManagerLog) - -/// @file -/// @brief This is a mock implementation of QGCUASParamManager for writing Unit Tests. -/// -/// @author Don Gagne - - -class MockQGCUASParamManager : public QGCUASParamManagerInterface -{ - Q_OBJECT - -signals: - // The following QGCSUASParamManagerInterface signals are supported - void parameterListUpToDate(); // You can connect to this signal, but it will never be emitted - void parameterUpdated(int compId, QString paramName, QVariant value); - -public: - // Implemented QGCSUASParamManager overrides - virtual bool getParameterValue(int component, const QString& parameter, QVariant& value) const; - virtual int getDefaultComponentId(void) { return _defaultComponentId; } - virtual int countOnboardParams(void) { return _mapParams.count(); } - -public slots: - // Implemented QGCSUASParamManager overrides - void setParameter(int component, QString parameterName, QVariant value); - virtual void setPendingParam(int componentId, const QString& key, const QVariant& value, bool forceSend = false) - { Q_UNUSED(forceSend); setParameter(componentId, key, value); } - virtual void sendPendingParameters(bool persistAfterSend = false, bool forceSend = false) - { Q_UNUSED(persistAfterSend); Q_UNUSED(forceSend); } - virtual bool parametersReady(void) { return true; } - -public: - // MockQGCUASParamManager methods - MockQGCUASParamManager(void); - - /// QMap of parameters, QString key is paremeter name, QVariant value is parameter value - typedef QMap ParamMap_t; - - /// Sets current set of parameters to support calls like getParameterValue - void setMockParameters(ParamMap_t& map) { _mapParams = map; } - - /// Returns the parameters which were set by calls to setParameter calls - ParamMap_t getMockSetParameters(void) { return _mapParams; } - /// Clears the set of parameters set by setParameter calls - void clearMockSetParameters(void) { _mapParams.clear(); } - -public: - // Unimplemented QGCUASParamManagerInterface overrides - virtual QList getComponentForParam(const QString& parameter) const; - virtual void setParamDescriptions(const QMap& paramDescs) { Q_ASSERT(false); Q_UNUSED(paramDescs); } - virtual int countPendingParams() { Q_ASSERT(false); return 0; } - virtual UASParameterDataModel* dataModel() { Q_ASSERT(false); return NULL; } - -public slots: - // Unimplemented QGCUASParamManagerInterface overrides - virtual void requestParameterList() { Q_ASSERT(false); } - virtual void requestParameterListIfEmpty() { Q_ASSERT(false); } - virtual void clearAllPendingParams() { Q_ASSERT(false); } - virtual void requestParameterUpdate(int component, const QString& parameter) - { Q_ASSERT(false); Q_UNUSED(component); Q_UNUSED(parameter); } - virtual void writeOnboardParamsToStream(QTextStream &stream, const QString& uasName) - { Q_ASSERT(false); Q_UNUSED(stream); Q_UNUSED(uasName); } - virtual void readPendingParamsFromStream(QTextStream &stream) { Q_ASSERT(false); Q_UNUSED(stream); } - virtual void requestRcCalibrationParamsUpdate() { Q_ASSERT(false); } - virtual void copyVolatileParamsToPersistent() { Q_ASSERT(false); } - virtual void copyPersistentParamsToVolatile() { Q_ASSERT(false); } - -private: - void _loadParams(void); - - ParamMap_t _mapParams; - - static const int _defaultComponentId = 50; - - // Bogus variables used for return types of NYI methods - QList _bogusQListInt; -}; - -#endif \ No newline at end of file diff --git a/src/qgcunittest/MockUAS.cc b/src/qgcunittest/MockUAS.cc deleted file mode 100644 index 82dedffc2f10f1a7ff87b4647184e4d50faa43f9..0000000000000000000000000000000000000000 --- a/src/qgcunittest/MockUAS.cc +++ /dev/null @@ -1,54 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#include "MockUAS.h" - -QString MockUAS::_bogusStaticString; - -MockUAS::MockUAS(void) : - _systemType(MAV_TYPE_QUADROTOR), - _systemId(1), - _mavlinkPlugin(NULL) -{ - -} - -void MockUAS::setMockParametersAndSignal(MockQGCUASParamManager::ParamMap_t& map) -{ - _paramManager.setMockParameters(map); - - QMapIterator i(map); - while (i.hasNext()) { - i.next(); - emit parameterChanged(_systemId, 0, i.key(), i.value()); - } -} - -void MockUAS::sendMessage(mavlink_message_t message) -{ - if (!_mavlinkPlugin) { - Q_ASSERT(false); - } - - _mavlinkPlugin->sendMessage(message); -} \ No newline at end of file diff --git a/src/qgcunittest/MockUAS.h b/src/qgcunittest/MockUAS.h deleted file mode 100644 index e20ac200558d65d48c8711cca9d4de64b6b84036..0000000000000000000000000000000000000000 --- a/src/qgcunittest/MockUAS.h +++ /dev/null @@ -1,194 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#ifndef MOCKUAS_H -#define MOCKUAS_H - -#include "UASInterface.h" -#include "MockQGCUASParamManager.h" -#include "MockMavlinkInterface.h" - -#include - -/// @file -/// @brief This is a mock implementation of a UAS used for writing Unit Tests. Normal usage is to -/// call MockUASManager::setMockActiveUAS to set it to the active mock UAS> -/// -/// @author Don Gagne - -class MockUAS : public UASInterface -{ - Q_OBJECT - -signals: - // The following UASInterface signals are supported - // void parameterChanged(int uas, int component, QString parameterName, QVariant value); - // void remoteControlChannelRawChanged(int channelId, float raw); - -public: - // Implemented UASInterface overrides - virtual int getSystemType(void) { return _systemType; } - virtual int getUASID(void) const { return _systemId; } - virtual QGCUASParamManagerInterface* getParamManager() { return &_paramManager; }; - - // sendMessage is only supported if a mavlink plugin is installed. - virtual void sendMessage(mavlink_message_t message); - -public: - // MockUAS methods - MockUAS(void); - - // Use these methods to setup/control the mock UAS - - void setMockSystemType(int systemType) { _systemType = systemType; } - void setMockSystemId(int systemId) { _systemId = systemId; } - - /// @return returns mock QGCUASParamManager associated with the UAS. This mock implementation - /// allows you to simulate parameter input and validate parameter setting - MockQGCUASParamManager* getMockQGCUASParamManager(void) { return &_paramManager; } - - /// @brief Sets the parameter map into the mock QGCUASParamManager and signals parameterChanged for - /// each param - void setMockParametersAndSignal(MockQGCUASParamManager::ParamMap_t& map); - - void emitRemoteControlChannelRawChanged(int channel, float raw) { emit remoteControlChannelRawChanged(channel, raw); } - - /// @brief Installs a mavlink plugin. Only a single mavlink plugin is supported at a time. - void setMockMavlinkPlugin(MockMavlinkInterface* mavlinkPlugin) { _mavlinkPlugin = mavlinkPlugin; }; - -public: - // Unimplemented UASInterface overrides - virtual QString getUASName() const { Q_ASSERT(false); return _bogusString; }; - virtual const QString& getShortState() const { Q_ASSERT(false); return _bogusString; }; - virtual const QString& getShortMode() const { Q_ASSERT(false); return _bogusString; }; - virtual QString getShortModeTextFor(uint8_t base_mode, uint32_t custom_mode) const { Q_UNUSED(base_mode); Q_UNUSED(custom_mode); Q_ASSERT(false); return _bogusStaticString; }; - virtual quint64 getUptime() const { Q_ASSERT(false); return 0; }; - virtual int getCommunicationStatus() const { Q_ASSERT(false); return 0; }; - virtual double getLocalX() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getLocalY() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getLocalZ() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual bool localPositionKnown() const { Q_ASSERT(false); return false; }; - virtual double getLatitude() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getLongitude() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getAltitudeAMSL() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getAltitudeRelative() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual bool globalPositionKnown() const { Q_ASSERT(false); return false; }; - virtual double getRoll() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getPitch() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual double getYaw() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); }; - virtual bool getSelected() const { Q_ASSERT(false); return false; }; - virtual bool isArmed() const { Q_ASSERT(false); return false; }; - virtual int getAirframe() const { Q_ASSERT(false); return 0; }; - virtual UASWaypointManager* getWaypointManager(void) { Q_ASSERT(false); return NULL; }; - virtual QList getLinks() { Q_ASSERT(false); return QList(); }; - virtual bool systemCanReverse() const { Q_ASSERT(false); return false; }; - virtual QString getSystemTypeName() { Q_ASSERT(false); return _bogusString; }; - virtual int getAutopilotType() { return MAV_AUTOPILOT_PX4; }; - virtual QGCUASFileManager* getFileManager() {Q_ASSERT(false); return NULL; } - - /** @brief Send a message over this link (to this or to all UAS on this link) */ - virtual void sendMessage(LinkInterface* link, mavlink_message_t message){ Q_UNUSED(link); Q_UNUSED(message); Q_ASSERT(false); } - virtual QString getAutopilotTypeName() { Q_ASSERT(false); return _bogusString; }; - virtual void setAutopilotType(int apType) { Q_UNUSED(apType); Q_ASSERT(false); }; - virtual QMap getComponents() { Q_ASSERT(false); return _bogusMapIntQString; }; - virtual QList getActions() const { Q_ASSERT(false); return _bogusQListQActionPointer; }; - -public slots: - // Unimplemented UASInterface overrides - virtual void setUASName(const QString& name) { Q_UNUSED(name); Q_ASSERT(false); }; - virtual void executeCommand(MAV_CMD command) { Q_UNUSED(command); Q_ASSERT(false); }; - virtual void executeCommand(MAV_CMD command, int confirmation, float param1, float param2, float param3, float param4, float param5, float param6, float param7, int component) { Q_UNUSED(command); Q_UNUSED(confirmation); Q_UNUSED(param1); Q_UNUSED(param2); Q_UNUSED(param3); Q_UNUSED(param4); Q_UNUSED(param5); Q_UNUSED(param6); Q_UNUSED(param7); Q_UNUSED(component); Q_ASSERT(false); }; - virtual void executeCommandAck(int num, bool success) { Q_UNUSED(num); Q_UNUSED(success); Q_ASSERT(false); }; - virtual void setAirframe(int airframe) { Q_UNUSED(airframe); Q_ASSERT(false); }; - virtual void launch() { Q_ASSERT(false); }; - virtual void home() { Q_ASSERT(false); }; - virtual void land() { Q_ASSERT(false); }; - virtual void pairRX(int rxType, int rxSubType) { Q_UNUSED(rxType); Q_UNUSED(rxSubType); Q_ASSERT(false); }; - virtual void halt() { Q_ASSERT(false); }; - virtual void go() { Q_ASSERT(false); }; - virtual void setMode(uint8_t newBaseMode, uint32_t newCustomMode) { Q_UNUSED(newBaseMode); Q_UNUSED(newCustomMode); Q_ASSERT(false); }; - virtual void emergencySTOP() { Q_ASSERT(false); }; - virtual bool emergencyKILL() { Q_ASSERT(false); return false; }; - virtual void shutdown() { Q_ASSERT(false); }; - virtual void setTargetPosition(float x, float y, float z, float yaw) { Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); Q_UNUSED(yaw); Q_ASSERT(false); }; - virtual void setLocalOriginAtCurrentGPSPosition() { Q_ASSERT(false); }; - virtual void setHomePosition(double lat, double lon, double alt) { Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); Q_ASSERT(false); }; - virtual void requestParameter(int component, const QString& parameter) { Q_UNUSED(component); Q_UNUSED(parameter); Q_ASSERT(false); }; - virtual void writeParametersToStorage() { Q_ASSERT(false); }; - virtual void readParametersFromStorage() { Q_ASSERT(false); }; - virtual void setParameter(const int component, const QString& id, const QVariant& value) - { Q_UNUSED(component); Q_UNUSED(id); Q_UNUSED(value); Q_ASSERT(false); }; - virtual void addLink(LinkInterface* link) { Q_UNUSED(link); Q_ASSERT(false); }; - virtual void setSelected() { Q_ASSERT(false); } - virtual void enableAllDataTransmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableRawSensorDataTransmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableExtendedSystemStatusTransmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableRCChannelDataTransmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableRawControllerDataTransmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enablePositionTransmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableExtra1Transmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableExtra2Transmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void enableExtra3Transmission(int rate) { Q_UNUSED(rate); Q_ASSERT(false); }; - virtual void setLocalPositionSetpoint(float x, float y, float z, float yaw) - { Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); Q_UNUSED(yaw); Q_ASSERT(false); }; - virtual void setLocalPositionOffset(float x, float y, float z, float yaw) { Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); Q_UNUSED(yaw); Q_ASSERT(false); }; - virtual void startRadioControlCalibration(int param) { Q_UNUSED(param); return; }; - virtual void endRadioControlCalibration() { return; }; - virtual void startMagnetometerCalibration() { Q_ASSERT(false); }; - virtual void startGyroscopeCalibration() { Q_ASSERT(false); }; - virtual void startPressureCalibration() { Q_ASSERT(false); }; - virtual void setBatterySpecs(const QString& specs) { Q_UNUSED(specs); Q_ASSERT(false); }; - virtual QString getBatterySpecs() { Q_ASSERT(false); return _bogusString; }; - virtual void sendHilState(quint64 time_us, float roll, float pitch, float yaw, float rollspeed, float pitchspeed, float yawspeed, double lat, double lon, double alt, float vx, float vy, float vz, float ind_airspeed, float true_airspeed, float xacc, float yacc, float zacc) - { Q_UNUSED(time_us); Q_UNUSED(roll); Q_UNUSED(pitch); Q_UNUSED(yaw); Q_UNUSED(rollspeed); Q_UNUSED(pitchspeed); Q_UNUSED(yawspeed); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); Q_UNUSED(vx); Q_UNUSED(vy); Q_UNUSED(vz); Q_UNUSED(ind_airspeed); Q_UNUSED(true_airspeed); Q_UNUSED(xacc); Q_UNUSED(yacc); Q_UNUSED(zacc); Q_ASSERT(false); }; - virtual void sendHilSensors(quint64 time_us, float xacc, float yacc, float zacc, float rollspeed, float pitchspeed, float yawspeed, float xmag, float ymag, float zmag, float abs_pressure, float diff_pressure, float pressure_alt, float temperature, quint32 fields_changed) - { Q_UNUSED(time_us); Q_UNUSED(xacc); Q_UNUSED(yacc); Q_UNUSED(zacc); Q_UNUSED(rollspeed); Q_UNUSED(pitchspeed); Q_UNUSED(yawspeed); Q_UNUSED(xmag); Q_UNUSED(ymag); Q_UNUSED(zmag); Q_UNUSED(abs_pressure); Q_UNUSED(diff_pressure); Q_UNUSED(pressure_alt); Q_UNUSED(temperature); Q_UNUSED(fields_changed); Q_ASSERT(false); }; - virtual void sendHilGps(quint64 time_us, double lat, double lon, double alt, int fix_type, float eph, float epv, float vel, float vn, float ve, float vd, float cog, int satellites) - { Q_UNUSED(time_us); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); Q_UNUSED(fix_type); Q_UNUSED(eph); Q_UNUSED(epv); Q_UNUSED(vel); Q_UNUSED(vn); Q_UNUSED(ve); Q_UNUSED(vd); Q_UNUSED(cog); Q_UNUSED(satellites); Q_ASSERT(false); }; - virtual void sendHilOpticalFlow(quint64 time_us, qint16 flow_x, qint16 flow_y, float flow_comp_m_x, - float flow_comp_m_y, quint8 quality, float ground_distance) - { Q_UNUSED(time_us); Q_UNUSED(flow_x); Q_UNUSED(flow_y); Q_UNUSED(flow_comp_m_x); Q_UNUSED(flow_comp_m_y); Q_UNUSED(quality); Q_UNUSED(ground_distance); Q_ASSERT(false);}; - virtual void sendMapRCToParam(QString param_id, float scale, float value0, quint8 param_rc_channel_index, float valueMin, float valueMax) - { Q_UNUSED(param_id); Q_UNUSED(scale); Q_UNUSED(value0); Q_UNUSED(param_rc_channel_index); Q_UNUSED(valueMin); Q_UNUSED(valueMax); } - virtual void unsetRCToParameterMap() {} - - virtual bool isRotaryWing() { Q_ASSERT(false); return false; } - virtual bool isFixedWing() { Q_ASSERT(false); return false; } - -private: - int _systemType; - int _systemId; - - MockQGCUASParamManager _paramManager; - - MockMavlinkInterface* _mavlinkPlugin; ///< Mock Mavlink plugin, NULL for none - - // Bogus variables used for return types of NYI methods - QString _bogusString; - static QString _bogusStaticString; - QMap _bogusMapIntQString; - QList _bogusQListQActionPointer; - QList _bogusQListInt; -}; - -#endif diff --git a/src/qgcunittest/MockUASManager.cc b/src/qgcunittest/MockUASManager.cc deleted file mode 100644 index 953dd9fc32328e950ad4ccb3c5244947bef4ff78..0000000000000000000000000000000000000000 --- a/src/qgcunittest/MockUASManager.cc +++ /dev/null @@ -1,57 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#include "MockUASManager.h" - -MockUASManager::MockUASManager(void) : - UASManagerInterface(NULL), - _mockUAS(NULL) -{ - -} - -UASInterface* MockUASManager::getActiveUAS(void) -{ - return _mockUAS; -} - -void MockUASManager::setMockActiveUAS(MockUAS* mockUAS) -{ - // Signal components that the last UAS is no longer active. - if (_mockUAS != NULL) { - emit activeUASStatusChanged(_mockUAS, false); - emit activeUASStatusChanged(_mockUAS->getUASID(), false); - } - _mockUAS = mockUAS; - - // And signal that a new UAS is. - emit activeUASSet(_mockUAS); - if (_mockUAS) - { - // We don't support swiching between different UAS - //_mockUAS->setSelected(); - emit activeUASStatusChanged(_mockUAS, true); - emit activeUASStatusChanged(_mockUAS->getUASID(), true); - } -} - diff --git a/src/qgcunittest/MockUASManager.h b/src/qgcunittest/MockUASManager.h deleted file mode 100644 index a1e83eca2322ffdf3393b951b7baa53a98cd165e..0000000000000000000000000000000000000000 --- a/src/qgcunittest/MockUASManager.h +++ /dev/null @@ -1,126 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -#ifndef MOCKUASMANAGER_H -#define MOCKUASMANAGER_H - -#include "UASManagerInterface.h" -#include "MockUAS.h" - -/// @file -/// @brief This is a mock implementation of a UASManager used for writing Unit Tests. In order -/// to use it you must call UASManager::setMockUASManager which will then cause all further -/// calls to UASManager::instance to return the mock UASManager instead of the normal one. -/// -/// @author Don Gagne - -class MockUASManager : public UASManagerInterface -{ - Q_OBJECT - -signals: - // The following signals from UASManager interface are supported: - // void activeUASSet(UASInterface* UAS); - // void activeUASStatusChanged(UASInterface* UAS, bool active); - // void activeUASStatusChanged(int systemId, bool active); - -public: - // Implemented UASManagerInterface overrides - virtual UASInterface* getActiveUAS(void); - -public: - // MockUASManager methods - MockUASManager(void); - - // Does not support singleton deletion - virtual void deleteInstance(void) { Q_ASSERT(false); } - - /// Sets the currently active mock UAS - /// @param mockUAS new mock uas, NULL for no active UAS - void setMockActiveUAS(MockUAS* mockUAS); - -public: - // Unimplemented UASManagerInterface overrides - virtual UASWaypointManager *getActiveUASWaypointManager() { Q_ASSERT(false); return NULL; } - virtual UASInterface* silentGetActiveUAS() { Q_ASSERT(false); return NULL; } - virtual UASInterface* getUASForId(int id) { Q_ASSERT(false); Q_UNUSED(id); return NULL; } - virtual QList getUASList() { Q_ASSERT(false); return _bogusQListUASInterface; } - virtual double getHomeLatitude() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); } - virtual double getHomeLongitude() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); } - virtual double getHomeAltitude() const { Q_ASSERT(false); return std::numeric_limits::quiet_NaN(); } - virtual int getHomeFrame() const { Q_ASSERT(false); return 0; } - virtual Eigen::Vector3d wgs84ToEcef(const double & latitude, const double & longitude, const double & altitude) - { Q_ASSERT(false); Q_UNUSED(latitude); Q_UNUSED(longitude); Q_UNUSED(altitude); return _bogusEigenVector3d; } - virtual Eigen::Vector3d ecefToEnu(const Eigen::Vector3d & ecef) - { Q_ASSERT(false); Q_UNUSED(ecef); return _bogusEigenVector3d; } - virtual void wgs84ToEnu(const double& lat, const double& lon, const double& alt, double* east, double* north, double* up) - { Q_ASSERT(false); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); Q_UNUSED(east); Q_UNUSED(north); Q_UNUSED(up); } - virtual void enuToWgs84(const double& x, const double& y, const double& z, double* lat, double* lon, double* alt) - { Q_ASSERT(false); Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); } - virtual void nedToWgs84(const double& x, const double& y, const double& z, double* lat, double* lon, double* alt) - { Q_ASSERT(false); Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); } - virtual void getLocalNEDSafetyLimits(double* x1, double* y1, double* z1, double* x2, double* y2, double* z2) - { Q_ASSERT(false); Q_UNUSED(x1); Q_UNUSED(y1); Q_UNUSED(z1); Q_UNUSED(x2); Q_UNUSED(y2); Q_UNUSED(z2); } - virtual bool isInLocalNEDSafetyLimits(double x, double y, double z) - { Q_ASSERT(false); Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); return false; } - -public slots: - // Unimplemented UASManagerInterface overrides - virtual void setActiveUAS(UASInterface* UAS) { Q_ASSERT(false); Q_UNUSED(UAS); } - virtual void addUAS(UASInterface* UAS) { Q_ASSERT(false); Q_UNUSED(UAS); } - virtual void removeUAS(UASInterface* uas) { Q_ASSERT(false); Q_UNUSED(uas);} - virtual bool launchActiveUAS() { Q_ASSERT(false); return false; } - virtual bool haltActiveUAS() { Q_ASSERT(false); return false; } - virtual bool continueActiveUAS() { Q_ASSERT(false); return false; } - virtual bool returnActiveUAS() { Q_ASSERT(false); return false; } - virtual bool stopActiveUAS() { Q_ASSERT(false); return false; } - virtual bool killActiveUAS() { Q_ASSERT(false); return false; } - virtual bool shutdownActiveUAS() { Q_ASSERT(false); return false; } - virtual bool setHomePosition(double lat, double lon, double alt) - { Q_ASSERT(false); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); return false; } - virtual bool setHomePositionAndNotify(double lat, double lon, double alt) - { Q_ASSERT(false); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); return false; } - virtual void setLocalNEDSafetyBorders(double x1, double y1, double z1, double x2, double y2, double z2) - { Q_ASSERT(false); Q_UNUSED(x1); Q_UNUSED(y1); Q_UNUSED(z1); Q_UNUSED(x2); Q_UNUSED(y2); Q_UNUSED(z2); } - virtual void uavChangedHomePosition(int uav, double lat, double lon, double alt) - { Q_ASSERT(false); Q_UNUSED(uav); Q_UNUSED(lat); Q_UNUSED(lon); Q_UNUSED(alt); } - virtual void loadSettings() { Q_ASSERT(false); } - virtual void storeSettings() { Q_ASSERT(false); } - virtual void _shutdown(void) { Q_ASSERT(false); } - -private: - MockUAS* _mockUAS; - - // Bogus variables used for return types of NYI methods - QList _bogusQListUASInterface; - Eigen::Vector3d _bogusEigenVector3d; - -public: - /* Need to align struct pointer to prevent a memory assertion: - * See http://eigen.tuxfamily.org/dox-devel/TopicUnalignedArrayAssert.html - * for details - */ - EIGEN_MAKE_ALIGNED_OPERATOR_NEW -}; - -#endif \ No newline at end of file diff --git a/src/qgcunittest/PX4RCCalibrationTest.cc b/src/qgcunittest/PX4RCCalibrationTest.cc index 19c50bcd872b10243221fee28567e2d82944c53e..966c586b6c585754812ff4ba2fea268c102d807d 100644 --- a/src/qgcunittest/PX4RCCalibrationTest.cc +++ b/src/qgcunittest/PX4RCCalibrationTest.cc @@ -23,7 +23,7 @@ #include "PX4RCCalibrationTest.h" #include "UASManager.h" -#include "MockQGCUASParamManager.h" +#include "AutoPilotPluginManager.h" /// @file /// @brief QPX4RCCalibration Widget unit test @@ -31,6 +31,7 @@ /// @author Don Gagne UT_REGISTER_TEST(PX4RCCalibrationTest) +QGC_LOGGING_CATEGORY(PX4RCCalibrationTestLog, "PX4RCCalibrationTestLog") // This will check for the wizard buttons being enabled of disabled according to the mask you pass in. // We use a macro instead of a method so that we get better line number reporting on failure. @@ -39,7 +40,7 @@ UT_REGISTER_TEST(PX4RCCalibrationTest) if (_nextButton->isEnabled() != !!((mask) & nextButtonMask) || \ _skipButton->isEnabled() != !!((mask) & skipButtonMask) || \ _cancelButton->isEnabled() != !!((mask) & cancelButtonMask) ) { \ - qDebug() << _statusLabel->text(); \ + qCDebug(PX4RCCalibrationTestLog) << _statusLabel->text(); \ } \ QCOMPARE(_nextButton->isEnabled(), !!((mask) & nextButtonMask)); \ QCOMPARE(_skipButton->isEnabled(), !!((mask) & skipButtonMask)); \ @@ -66,10 +67,6 @@ const int PX4RCCalibrationTest::_testMinValue = PX4RCCalibration::_rcCalPWMDefau const int PX4RCCalibrationTest::_testMaxValue = PX4RCCalibration::_rcCalPWMDefaultMaxValue - 10; const int PX4RCCalibrationTest::_testCenterValue = PX4RCCalibrationTest::_testMinValue + ((PX4RCCalibrationTest::_testMaxValue - PX4RCCalibrationTest::_testMinValue) / 2); -/// @brief Maps from function index to channel index. -1 signals no mapping. Channel indices are offset 1 from function index -/// to catch bugs where function index is incorrectly used as channel index. -const int PX4RCCalibrationTest::_rgFunctionChannelMap[PX4RCCalibration::rcCalFunctionMax]= { 1, 2, 3, 4, -1, -1, -1, -1, 9, 10, 11 }; - const struct PX4RCCalibrationTest::ChannelSettings PX4RCCalibrationTest::_rgChannelSettings[PX4RCCalibrationTest::_availableChannels] = { // Function Min Max # Reversed @@ -140,37 +137,28 @@ const struct PX4RCCalibrationTest::ChannelSettings PX4RCCalibrationTest::_rgChan }; PX4RCCalibrationTest::PX4RCCalibrationTest(void) : - _mockUASManager(NULL), _calWidget(NULL) { } -/// @brief Called one time before any test cases are run. -void PX4RCCalibrationTest::initTestCase(void) -{ - // Validate that our function to channel mapping is still correct. - for (int function=0; function_addLink(_mockLink); + LinkManager::instance()->connectLink(_mockLink); + QTest::qWait(5000); // Give enough time for UI to settle and heartbeats to go through - _mockUAS = new MockUAS(); - Q_CHECK_PTR(_mockUAS); + _autopilot = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(UASManager::instance()->getActiveUAS()); + Q_ASSERT(_autopilot); - _mockUASManager->setMockActiveUAS(_mockUAS); + QSignalSpy spyPlugin(_autopilot, SIGNAL(pluginReadyChanged(bool))); + if (!_autopilot->pluginReady()) { + QCOMPARE(spyPlugin.wait(10000), true); + } + Q_ASSERT(_autopilot->pluginReady()); // This will instatiate the widget with an active uas with ready parameters _calWidget = new PX4RCCalibration(); @@ -211,13 +199,10 @@ void PX4RCCalibrationTest::cleanup(void) Q_ASSERT(_calWidget); delete _calWidget; - Q_ASSERT(_mockUAS); - delete _mockUAS; - - UASManager::setMockInstance(NULL); + // Disconnecting the link will prompt for log file save + setExpectedFileDialog(getSaveFileName, QStringList()); - Q_ASSERT(_mockUASManager); - delete _mockUASManager; + LinkManager::instance()->disconnectLink(_mockLink); UnitTest::cleanup(); } @@ -227,7 +212,7 @@ void PX4RCCalibrationTest::_minRCChannels_test(void) { // Next button won't be enabled until we see the minimum number of channels. for (int chan=0; chanemitRemoteControlChannelRawChanged(chan, (float)PX4RCCalibration::_rcCalPWMCenterPoint); + _mockLink->emitRemoteControlChannelRawChanged(chan, (float)PX4RCCalibration::_rcCalPWMCenterPoint); // We use _chanCount internally so we should validate it QCOMPARE(_calWidget->_chanCount, chan+1); @@ -252,7 +237,7 @@ void PX4RCCalibrationTest::_minRCChannels_test(void) // Only available channels should have visible widget. A ui update cycle needs to have passed so we wait a little. QTest::qWait(PX4RCCalibration::_updateInterval * 2); for (int chanWidget=0; chanWidgetobjectName() << chanWidget << chan; + qCDebug(PX4RCCalibrationTestLog) << _rgValueWidget[chanWidget]->objectName() << chanWidget << chan; QCOMPARE(_rgValueWidget[chanWidget]->isVisible(), !!(chanWidget <= chan)); } #endif @@ -272,25 +257,25 @@ void PX4RCCalibrationTest::_beginCalibration(void) void PX4RCCalibrationTest::_stickMoveWaitForSettle(int channel, int value) { - //qDebug() << "_stickMoveWaitForSettle channel:value" << channel << value; + qCDebug(PX4RCCalibrationTestLog) << "_stickMoveWaitForSettle channel:value" << channel << value; // Move the stick, this will initialized the settle checker - _mockUAS->emitRemoteControlChannelRawChanged(channel, value); + _mockLink->emitRemoteControlChannelRawChanged(channel, value); // Emit the signal again to start the settle timer - _mockUAS->emitRemoteControlChannelRawChanged(channel, value); + _mockLink->emitRemoteControlChannelRawChanged(channel, value); // Wait long enough for the settle timer to expire QTest::qWait(PX4RCCalibration::_stickDetectSettleMSecs * 1.5); // Emit the signal again so that we detect stick settle - _mockUAS->emitRemoteControlChannelRawChanged(channel, value); + _mockLink->emitRemoteControlChannelRawChanged(channel, value); } void PX4RCCalibrationTest::_stickMoveAutoStep(const char* functionStr, enum PX4RCCalibration::rcCalFunctions function, enum PX4RCCalibrationTest::MoveToDirection direction, bool identifyStep) { Q_UNUSED(functionStr); - //qDebug() << "_stickMoveAutoStep function:direction:reversed:identifyStep" << functionStr << function << direction << identifyStep; + qCDebug(PX4RCCalibrationTestLog) << "_stickMoveAutoStep function:direction:reversed:identifyStep" << functionStr << function << direction << identifyStep; CHK_BUTTONS(cancelButtonMask); @@ -338,16 +323,15 @@ void PX4RCCalibrationTest::_switchMinMaxStep(void) CHK_BUTTONS(nextButtonMask | cancelButtonMask); // Try setting a min/max value that is below the threshold to make sure min/max doesn't go valid - _mockUAS->emitRemoteControlChannelRawChanged(0, (float)(PX4RCCalibration::_rcCalPWMValidMinValue + 1)); - _mockUAS->emitRemoteControlChannelRawChanged(0, (float)(PX4RCCalibration::_rcCalPWMValidMaxValue - 1)); + _mockLink->emitRemoteControlChannelRawChanged(0, (float)(PX4RCCalibration::_rcCalPWMValidMinValue + 1)); + _mockLink->emitRemoteControlChannelRawChanged(0, (float)(PX4RCCalibration::_rcCalPWMValidMaxValue - 1)); QCOMPARE(_rgValueWidget[0]->isMinValid(), false); QCOMPARE(_rgValueWidget[0]->isMaxValid(), false); // Send min/max values switch channels for (int chan=0; chan<_availableChannels; chan++) { - //qDebug() << chan << _rgChannelSettingsPreValidate[chan].rcMin << _rgChannelSettingsPreValidate[chan].rcMax; - _mockUAS->emitRemoteControlChannelRawChanged(chan, _rgChannelSettings[chan].rcMin); - _mockUAS->emitRemoteControlChannelRawChanged(chan, _rgChannelSettings[chan].rcMax); + _mockLink->emitRemoteControlChannelRawChanged(chan, _rgChannelSettings[chan].rcMin); + _mockLink->emitRemoteControlChannelRawChanged(chan, _rgChannelSettings[chan].rcMax); } _channelHomePosition(); @@ -361,7 +345,7 @@ void PX4RCCalibrationTest::_flapsDetectStep(void) { int channel = _rgFunctionChannelMap[PX4RCCalibration::rcCalFunctionFlaps]; - //qDebug() << "_flapsDetectStep channel" << channel; + qCDebug(PX4RCCalibrationTestLog) << "_flapsDetectStep channel" << channel; // Test code can't handle reversed flaps channel Q_ASSERT(!_rgChannelSettings[channel].reversed); @@ -387,7 +371,7 @@ void PX4RCCalibrationTest::_flapsDetectStep(void) void PX4RCCalibrationTest::_switchSelectAutoStep(const char* functionStr, PX4RCCalibration::rcCalFunctions function) { Q_UNUSED(functionStr); - //qDebug() << "_switchSelectAutoStep" << functionStr << "function:" << function; + ////qCDebug(PX4RCCalibrationTestLog)() << "_switchSelectAutoStep" << functionStr << "function:" << function; int buttonMask = cancelButtonMask; if (function != PX4RCCalibration::rcCalFunctionModeSwitch) { @@ -400,14 +384,55 @@ void PX4RCCalibrationTest::_switchSelectAutoStep(const char* functionStr, PX4RCC // Wiggle stick for channel int channel = _rgFunctionChannelMap[function]; - _mockUAS->emitRemoteControlChannelRawChanged(channel, _testMinValue); - _mockUAS->emitRemoteControlChannelRawChanged(channel, _testMaxValue); + _mockLink->emitRemoteControlChannelRawChanged(channel, _testMinValue); + _mockLink->emitRemoteControlChannelRawChanged(channel, _testMaxValue); QCOMPARE(_calWidget->_currentStep, saveStep + 1); } void PX4RCCalibrationTest::_fullCalibration_test(void) { + // IMPORTANT NOTE: We used channels 1-5 for attitude mapping in the test below. + // MockLink.params file cannot have flight mode switches mapped to those channels. + // If it does it will cause errors since the stick will not be detetected where + + /// _rgFunctionChannelMap maps from function index to channel index. For channels which are not part of + /// rc cal set the mapping the the previous mapping. + + for (int function=0; functiongetParameterFact(switchParam)->value().toInt() != channel + 1); + } + + _rgFunctionChannelMap[function] = channel; + found = true; + + break; + } + } + + // If we aren't mapping this function during calibration, set it to the previous setting + if (!found) { + _rgFunctionChannelMap[function] = _autopilot->getParameterFact(PX4RCCalibration::_rgFunctionInfo[function].parameterName)->value().toInt(); + qCDebug(PX4RCCalibrationTestLog) << "Assigning switch" << function << _rgFunctionChannelMap[function]; + if (_rgFunctionChannelMap[function] == 0) { + _rgFunctionChannelMap[function] = -1; // -1 signals no mapping + } else { + _rgFunctionChannelMap[function]--; // parameter is 1-based, _rgFunctionChannelMap is not + } + } + } _channelHomePosition(); QTest::mouseClick(_nextButton, Qt::LeftButton); @@ -437,19 +462,16 @@ void PX4RCCalibrationTest::_channelHomePosition(void) { // Initialize available channels to center point. for (int i=0; i<_availableChannels; i++) { - _mockUAS->emitRemoteControlChannelRawChanged(i, (float)PX4RCCalibration::_rcCalPWMCenterPoint); + _mockLink->emitRemoteControlChannelRawChanged(i, (float)PX4RCCalibration::_rcCalPWMCenterPoint); } // Throttle to min - 1 (throttle is not reversed). We do this so that the trim value is below the min value. This should end up // being validated and raised to min value. If not, something is wrong with RC Cal code. - _mockUAS->emitRemoteControlChannelRawChanged(_rgFunctionChannelMap[PX4RCCalibration::rcCalFunctionThrottle], _testMinValue - 1); + _mockLink->emitRemoteControlChannelRawChanged(_rgFunctionChannelMap[PX4RCCalibration::rcCalFunctionThrottle], _testMinValue - 1); } void PX4RCCalibrationTest::_validateParameters(void) { - MockQGCUASParamManager* paramMgr = _mockUAS->getMockQGCUASParamManager(); - MockQGCUASParamManager::ParamMap_t mapParamsSet = paramMgr->getMockSetParameters(); - QString minTpl("RC%1_MIN"); QString maxTpl("RC%1_MAX"); QString trimTpl("RC%1_TRIM"); @@ -466,8 +488,8 @@ void PX4RCCalibrationTest::_validateParameters(void) expectedParameterValue = chanIndex + 1; // 1-based parameter value } - QCOMPARE(mapParamsSet.contains(PX4RCCalibration::_rgFunctionInfo[chanFunction].parameterName), true); - QCOMPARE(mapParamsSet[PX4RCCalibration::_rgFunctionInfo[chanFunction].parameterName].toInt(), expectedParameterValue); + qCDebug(PX4RCCalibrationTestLog) << "Validate" << chanFunction << _autopilot->getParameterFact(PX4RCCalibration::_rgFunctionInfo[chanFunction].parameterName)->value().toInt(); + QCOMPARE(_autopilot->getParameterFact(PX4RCCalibration::_rgFunctionInfo[chanFunction].parameterName)->value().toInt(), expectedParameterValue); } // Validate the channel settings. Note the channels are 1-based in parameter names. @@ -481,23 +503,18 @@ void PX4RCCalibrationTest::_validateParameters(void) int rcTrimExpected = _rgChannelSettingsValidate[chan].rcTrim; bool rcReversedExpected = _rgChannelSettingsValidate[chan].reversed; - QCOMPARE(mapParamsSet.contains(minTpl.arg(oneBasedChannel)), true); - QCOMPARE(mapParamsSet.contains(maxTpl.arg(oneBasedChannel)), true); - QCOMPARE(mapParamsSet.contains(trimTpl.arg(oneBasedChannel)), true); - QCOMPARE(mapParamsSet.contains(revTpl.arg(oneBasedChannel)), true); - - int rcMinActual = mapParamsSet[minTpl.arg(oneBasedChannel)].toInt(&convertOk); + int rcMinActual = _autopilot->getParameterFact(minTpl.arg(oneBasedChannel))->value().toInt(&convertOk); QCOMPARE(convertOk, true); - int rcMaxActual = mapParamsSet[maxTpl.arg(oneBasedChannel)].toInt(&convertOk); + int rcMaxActual = _autopilot->getParameterFact(maxTpl.arg(oneBasedChannel))->value().toInt(&convertOk); QCOMPARE(convertOk, true); - int rcTrimActual = mapParamsSet[trimTpl.arg(oneBasedChannel)].toInt(&convertOk); + int rcTrimActual = _autopilot->getParameterFact(trimTpl.arg(oneBasedChannel))->value().toInt(&convertOk); QCOMPARE(convertOk, true); - float rcReversedFloat = mapParamsSet[revTpl.arg(oneBasedChannel)].toFloat(&convertOk); + float rcReversedFloat = _autopilot->getParameterFact(revTpl.arg(oneBasedChannel))->value().toFloat(&convertOk); QCOMPARE(convertOk, true); bool rcReversedActual = (rcReversedFloat == -1.0f); - //qDebug() << "_validateParemeters expected channel:min:max:trim:rev" << chan << rcMinExpected << rcMaxExpected << rcTrimExpected << rcReversedExpected; - //qDebug() << "_validateParemeters actual channel:min:max:trim:rev" << chan << rcMinActual << rcMaxActual << rcTrimActual << rcReversedActual; + qCDebug(PX4RCCalibrationTestLog) << "_validateParemeters expected channel:min:max:trim:rev" << chan << rcMinExpected << rcMaxExpected << rcTrimExpected << rcReversedExpected; + qCDebug(PX4RCCalibrationTestLog) << "_validateParemeters actual channel:min:max:trim:rev" << chan << rcMinActual << rcMaxActual << rcTrimActual << rcReversedActual; QCOMPARE(rcMinExpected, rcMinActual); QCOMPARE(rcMaxExpected, rcMaxActual); @@ -507,15 +524,13 @@ void PX4RCCalibrationTest::_validateParameters(void) // Check mapping for all fuctions for (int chanFunction=0; chanFunctiongetParameterFact(PX4RCCalibration::_rgFunctionInfo[chanFunction].parameterName)->value().toInt(), expectedValue); } } diff --git a/src/qgcunittest/PX4RCCalibrationTest.h b/src/qgcunittest/PX4RCCalibrationTest.h index 5937933bc877ca912006cdee3eb0e28347f94e21..78a879572288d11075824442cdf7e5cefaecfc35 100644 --- a/src/qgcunittest/PX4RCCalibrationTest.h +++ b/src/qgcunittest/PX4RCCalibrationTest.h @@ -25,16 +25,19 @@ #define PX4RCCALIBRATIONTEST_H #include "UnitTest.h" -#include "MockUASManager.h" -#include "MockUAS.h" +#include "MockLink.h" #include "MultiSignalSpy.h" #include "px4_configuration/PX4RCCalibration.h" +#include "QGCLoggingCategory.h" +#include "AutoPilotPlugin.h" /// @file /// @brief PX4RCCalibration Widget unit test /// /// @author Don Gagne +Q_DECLARE_LOGGING_CATEGORY(PX4RCCalibrationTestLog) + /// @brief PX4RCCalibration Widget unit test class PX4RCCalibrationTest : public UnitTest { @@ -44,7 +47,6 @@ public: PX4RCCalibrationTest(void); private slots: - void initTestCase(void); void init(void); void cleanup(void); @@ -92,8 +94,8 @@ private: void _validateParameters(void); - MockUASManager* _mockUASManager; - MockUAS* _mockUAS; + MockLink* _mockLink; + AutoPilotPlugin* _autopilot; PX4RCCalibration* _calWidget; @@ -125,7 +127,7 @@ private: static const struct ChannelSettings _rgChannelSettings[_availableChannels]; static const struct ChannelSettings _rgChannelSettingsValidate[PX4RCCalibration::_chanMax]; - static const int _rgFunctionChannelMap[PX4RCCalibration::rcCalFunctionMax]; + int _rgFunctionChannelMap[PX4RCCalibration::rcCalFunctionMax]; }; #endif diff --git a/src/qgcunittest/UASUnitTest.cc b/src/qgcunittest/UASUnitTest.cc index 8502343d708c93d75e49705f05a8a20d9bbac42d..d5cf5cd273582e71c7fda36dc903fb75403f963c 100644 --- a/src/qgcunittest/UASUnitTest.cc +++ b/src/qgcunittest/UASUnitTest.cc @@ -71,12 +71,6 @@ void UASUnitTest::getUpTime_test() delete uas2; } -void UASUnitTest::getCommunicationStatus_test() -{ - // Verify that upon construction the Comm status is disconnected - QCOMPARE(_uas->getCommunicationStatus(), static_cast(UASInterface::COMM_DISCONNECTED)); -} - void UASUnitTest::filterVoltage_test() { float verificar=_uas->filterVoltage(0.4f); diff --git a/src/qgcunittest/UASUnitTest.h b/src/qgcunittest/UASUnitTest.h index 2a66658871b1d2e1749ed9fa70eb1c78eed9e54b..ab6b8d008f74cbdc5ed8cad6c839aa1c5c1a5374 100644 --- a/src/qgcunittest/UASUnitTest.h +++ b/src/qgcunittest/UASUnitTest.h @@ -27,7 +27,6 @@ private slots: void getUASID_test(void); void getUASName_test(void); void getUpTime_test(void); - void getCommunicationStatus_test(void); void filterVoltage_test(void); void getAutopilotType_test(void); void setAutopilotType_test(void); diff --git a/src/qgcunittest/UnitTest.h b/src/qgcunittest/UnitTest.h index bbc78acb191500f23203e74edba0fb0f7569e2a1..5e46eff7fdbe777bef4809c97e7332506e6fa582 100644 --- a/src/qgcunittest/UnitTest.h +++ b/src/qgcunittest/UnitTest.h @@ -28,6 +28,7 @@ #ifndef UNITTEST_H #define UNITTEST_H +#ifndef __android__ #include #include @@ -186,4 +187,5 @@ private: QSharedPointer _unitTest; }; +#endif // Android #endif diff --git a/src/uas/QGCMAVLinkUASFactory.cc b/src/uas/QGCMAVLinkUASFactory.cc index 1957ea3c650a98646234a2f4e94832bbc9c4e5fd..34c1a697f744e20029785c509edbb7bb871e4475 100644 --- a/src/uas/QGCMAVLinkUASFactory.cc +++ b/src/uas/QGCMAVLinkUASFactory.cc @@ -1,6 +1,5 @@ #include "QGCMAVLinkUASFactory.h" #include "UASManager.h" -#include "QGXPX4UAS.h" QGCMAVLinkUASFactory::QGCMAVLinkUASFactory(QObject *parent) : QObject(parent) @@ -20,62 +19,28 @@ UASInterface* QGCMAVLinkUASFactory::createUAS(MAVLinkProtocol* mavlink, LinkInte p = mavlink; } - UASInterface* uas; + UASInterface* uasInterface; - switch (heartbeat->autopilot) - { - case MAV_AUTOPILOT_GENERIC: - { - UAS* mav = new UAS(mavlink, sysid); - // Set the system type - mav->setSystemType((int)heartbeat->type); - - // Connect this robot to the UAS object - connect(mavlink, SIGNAL(messageReceived(LinkInterface*, mavlink_message_t)), mav, SLOT(receiveMessage(LinkInterface*, mavlink_message_t))); - connect(mavlink, SIGNAL(messageReceived(LinkInterface*,mavlink_message_t)), mav->getFileManager(), SLOT(receiveMessage(LinkInterface*, mavlink_message_t))); - uas = mav; - } - break; - case MAV_AUTOPILOT_PX4: - { - QGXPX4UAS* px4 = new QGXPX4UAS(mavlink, sysid); - // Set the system type - px4->setSystemType((int)heartbeat->type); - - // Connect this robot to the UAS object - // it is IMPORTANT here to use the right object type, - // else the slot of the parent object is called (and thus the special - // packets never reach their goal) - connect(mavlink, SIGNAL(messageReceived(LinkInterface*, mavlink_message_t)), px4, SLOT(receiveMessage(LinkInterface*, mavlink_message_t))); - uas = px4; - } - break; - default: - { - UAS* mav = new UAS(mavlink, sysid); - mav->setSystemType((int)heartbeat->type); + UAS* uasObject = new UAS(mavlink, sysid); + Q_CHECK_PTR(uasObject); + uasInterface = uasObject; + + uasObject->setSystemType((int)heartbeat->type); - // Connect this robot to the UAS object - // it is IMPORTANT here to use the right object type, - // else the slot of the parent object is called (and thus the special - // packets never reach their goal) - connect(mavlink, SIGNAL(messageReceived(LinkInterface*, mavlink_message_t)), mav, SLOT(receiveMessage(LinkInterface*, mavlink_message_t))); - uas = mav; - } - break; - } + // Connect this robot to the UAS object + // It is IMPORTANT here to use the right object type, + // else the slot of the parent object is called (and thus the special + // packets never reach their goal) + connect(mavlink, &MAVLinkProtocol::messageReceived, uasObject, &UAS::receiveMessage); // Set the autopilot type - uas->setAutopilotType((int)heartbeat->autopilot); + uasInterface->setAutopilotType((int)heartbeat->autopilot); // Make UAS aware that this link can be used to communicate with the actual robot - uas->addLink(link); + uasInterface->addLink(link); - // First thing we do with a new UAS is get the parameters - uas->getParamManager()->requestParameterList(); - // Now add UAS to "official" list, which makes the whole application aware of it - UASManager::instance()->addUAS(uas); + UASManager::instance()->addUAS(uasInterface); - return uas; + return uasInterface; } diff --git a/src/uas/QGCUASParamManager.cc b/src/uas/QGCUASParamManager.cc deleted file mode 100644 index 36e9fb481e56b24acfe571b00225d6b0cda6fa04..0000000000000000000000000000000000000000 --- a/src/uas/QGCUASParamManager.cc +++ /dev/null @@ -1,224 +0,0 @@ -#include "QGCUASParamManager.h" - -#include -#include -#include - -#include "UASInterface.h" -#include "QGCMessageBox.h" - -QGCUASParamManager::QGCUASParamManager(QObject *parent) : - QGCUASParamManagerInterface(parent), - mav(NULL), - paramDataModel(this), - _parametersReady(false) -{ - - -} - -QGCUASParamManager* QGCUASParamManager::initWithUAS(UASInterface* uas) -{ - mav = uas; - - // Load default values and tooltips for data model - loadParamMetaInfoCSV(); - - paramDataModel.setUASID(mav->getUASID()); - paramCommsMgr.initWithUAS(uas); - - connectToModelAndComms(); - - return this; -} - -void QGCUASParamManager::connectToModelAndComms() -{ - // Pass along comms mgr status msgs - connect(¶mCommsMgr, SIGNAL(parameterStatusMsgUpdated(QString,int)), - this, SIGNAL(parameterStatusMsgUpdated(QString,int))); - - connect(¶mCommsMgr, SIGNAL(parameterListUpToDate()), this, SLOT(_parameterListUpToDate())); - - // Pass along data model updates - connect(¶mDataModel, SIGNAL(parameterUpdated(int, QString , QVariant )), - this, SIGNAL(parameterUpdated(int, QString , QVariant ))); - - connect(¶mDataModel, SIGNAL(pendingParamUpdate(int , const QString& , QVariant , bool )), - this, SIGNAL(pendingParamUpdate(int , const QString& , QVariant , bool ))); - - -} - - -void QGCUASParamManager::clearAllPendingParams() -{ - paramDataModel.clearAllPendingParams(); - emit parameterStatusMsgUpdated(tr("Cleared all pending params"), UASParameterCommsMgr::ParamCommsStatusLevel_OK); - -} - - -int QGCUASParamManager::getDefaultComponentId() -{ - return paramDataModel.getDefaultComponentId(); -} - -QList QGCUASParamManager::getComponentForParam(const QString& parameter) const -{ - return paramDataModel.getComponentForOnboardParam(parameter); -} - - -bool QGCUASParamManager::getParameterValue(int component, const QString& parameter, QVariant& value) const -{ - return paramDataModel.getOnboardParamValue(component,parameter,value); -} - - -void QGCUASParamManager::requestParameterUpdate(int component, const QString& parameter) -{ - if (mav) { - paramCommsMgr.requestParameterUpdate(component,parameter); - } -} - - - -/** - * Send a request to deliver the list of onboard parameters - * to the MAV. - */ -void QGCUASParamManager::requestParameterList() -{ - if (mav) { - emit parameterStatusMsgUpdated(tr("Requested param list.. waiting"), UASParameterCommsMgr::ParamCommsStatusLevel_OK); - paramCommsMgr.requestParameterList(); - } -} - -void QGCUASParamManager::requestParameterListIfEmpty() -{ - if (mav) { - int totalOnboard = paramDataModel.countOnboardParams(); - if (totalOnboard < 2) { //TODO arbitrary constant, maybe 0 is OK? - requestParameterList(); - } - } -} - - -void QGCUASParamManager::setParamDescriptions(const QMap& paramInfo) { - paramDataModel.setParamDescriptions(paramInfo); -} - - -void QGCUASParamManager::setParameter(int compId, QString paramName, QVariant value) -{ - if ((0 == compId) || (-1 == compId)) { - //attempt to get an actual component ID - compId = paramDataModel.getDefaultComponentId(); - } - paramDataModel.updatePendingParamWithValue(compId,paramName,value); -} - -void QGCUASParamManager::sendPendingParameters(bool persistAfterSend, bool forceSend) -{ - paramCommsMgr.sendPendingParameters(persistAfterSend, forceSend); -} - - - - -void QGCUASParamManager::setPendingParam(int compId, const QString& paramName, const QVariant& value, bool forceSend) -{ - if ((0 == compId) || (-1 == compId)) { - //attempt to get an actual component ID - compId = paramDataModel.getDefaultComponentId(); - } - paramDataModel.updatePendingParamWithValue(compId,paramName,value, forceSend); -} - - - -void QGCUASParamManager::loadParamMetaInfoCSV() -{ - // Load default values and tooltips - QString autopilot(mav->getAutopilotTypeName()); - - QDir appDir = QApplication::applicationDirPath(); - appDir.cd("files"); - QString fileName = QString("%1/%2/parameter_tooltips/tooltips.txt").arg(appDir.canonicalPath()).arg(autopilot.toLower()); - QFile paramMetaFile(fileName); - - qDebug() << "loadParamMetaInfoCSV for autopilot: " << autopilot << " from file: " << fileName; - - if (!paramMetaFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qDebug() << "loadParamMetaInfoCSV couldn't open:" << fileName; - return; - } - - QTextStream in(¶mMetaFile); - paramDataModel.loadParamMetaInfoFromStream(in); - paramMetaFile.close(); - -} - - -UASInterface* QGCUASParamManager::getUAS() -{ - return mav; -} - -UASParameterDataModel* QGCUASParamManager::dataModel() -{ - return ¶mDataModel; -} - - - -void QGCUASParamManager::writeOnboardParamsToStream(QTextStream &stream, const QString& uasName) -{ - paramDataModel.writeOnboardParamsToStream(stream,uasName); -} - -void QGCUASParamManager::readPendingParamsFromStream(QTextStream &stream) -{ - paramDataModel.readUpdateParamsFromStream(stream); -} - - - -void QGCUASParamManager::copyVolatileParamsToPersistent() -{ - int changedParamCount = paramDataModel.countPendingParams(); - - if (changedParamCount > 0) { - QGCMessageBox::warning(tr("Warning"), - tr("There are locally changed parameters. Please transmit them first () or update them with the onboard values () before storing onboard from RAM to ROM.")); - } - else { - paramCommsMgr.writeParamsToPersistentStorage(); - } -} - - -void QGCUASParamManager::copyPersistentParamsToVolatile() -{ - if (mav) { - mav->readParametersFromStorage(); //TODO use comms mgr instead? - } -} - - -void QGCUASParamManager::requestRcCalibrationParamsUpdate() { - paramCommsMgr.requestRcCalibrationParamsUpdate(); -} - -void QGCUASParamManager::_parameterListUpToDate(void) -{ - //qDebug() << "Emitting parameters ready, count:" << paramDataModel.countOnboardParams(); - - _parametersReady = true; - emit parameterListUpToDate(); -} diff --git a/src/uas/QGCUASParamManager.h b/src/uas/QGCUASParamManager.h deleted file mode 100644 index d10d2d79eb7181cc1eac4cc110f2cdd409a846bb..0000000000000000000000000000000000000000 --- a/src/uas/QGCUASParamManager.h +++ /dev/null @@ -1,140 +0,0 @@ -#ifndef QGCUASPARAMMANAGER_H -#define QGCUASPARAMMANAGER_H - -#include -#include -#include -#include - -#include "UASParameterDataModel.h" -#include "QGCUASParamManagerInterface.h" -#include "UASParameterCommsMgr.h" - -//forward declarations -class QTextStream; -class UASInterface; - -class QGCUASParamManager : public QGCUASParamManagerInterface -{ - Q_OBJECT -public: - QGCUASParamManager(QObject* parent = 0); - QGCUASParamManager* initWithUAS(UASInterface* uas); - - /** @brief Get the known, confirmed value of a parameter */ - virtual bool getParameterValue(int component, const QString& parameter, QVariant& value) const; - - /** @brief determine which component is the root component for the UAS and return its ID or 0 if unknown */ - virtual int getDefaultComponentId(); - - /** - * @brief Get a list of all component IDs using this parameter name - * @param parameter The string encoding the parameter name - * @return A list with all components using this parameter name. Can be empty. - */ - virtual QList getComponentForParam(const QString& parameter) const; - - /** @brief Provide tooltips / user-visible descriptions for parameters */ - virtual void setParamDescriptions(const QMap& paramDescs); - - /** - * @brief Count the pending parameters in the current transmission - * @return The number of pending parameters - */ - virtual int countPendingParams() { - return paramDataModel.countPendingParams(); - } - - /** - * @brief Count the number of onboard parameters - * @return The number of onboard parameters - */ - virtual int countOnboardParams() { - return paramDataModel.countOnboardParams(); - } - - /** @brief Get the UAS of this widget - * @return The MAV of this mgr. Unless the MAV object has been destroyed, this is never null. - */ - UASInterface* getUAS(); - - /** @return The data model managed by this class */ - virtual UASParameterDataModel* dataModel(); - - /// @return true: first full set of parameters received - virtual bool parametersReady(void) { return _parametersReady; } - -protected: - - /** @brief Load parameter meta information from appropriate CSV file */ - virtual void loadParamMetaInfoCSV(); - - void connectToModelAndComms(); - - -signals: - - /** @brief We updated the parameter status message */ - void parameterStatusMsgUpdated(QString msg, int level); - /** @brief We have received a complete list of all parameters onboard the MAV */ - void parameterListUpToDate(); - - /** @brief We've received an update of a parameter's value */ - void parameterUpdated(int compId, QString paramName, QVariant value); - - /** @brief Notifies listeners that a param was added to or removed from the pending list */ - void pendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending); - - - -public slots: - /** @brief Send one parameter to the MAV: changes value in transient memory of MAV */ - virtual void setParameter(int component, QString parameterName, QVariant value); - - /** @brief Send all pending parameters to the MAV, for storage in transient (RAM) memory - * @param persistAfterSend If true, all parameters will be written to persistent storage as well - */ - virtual void sendPendingParameters(bool persistAfterSend = false, bool forceSend = false); - - - /** @brief Request list of parameters from MAV */ - virtual void requestParameterList(); - - /** @brief Request a list of params onboard the MAV if the onboard param list we have is empty */ - virtual void requestParameterListIfEmpty(); - - /** @brief queue a pending parameter for sending to the MAV */ - virtual void setPendingParam(int componentId, const QString& key, const QVariant& value, bool forceSend = false); - - /** @brief remove all params from the pending list */ - virtual void clearAllPendingParams(); - - /** @brief Request a single parameter by name from the MAV */ - virtual void requestParameterUpdate(int component, const QString& parameter); - - - virtual void writeOnboardParamsToStream(QTextStream &stream, const QString& uasName); - virtual void readPendingParamsFromStream(QTextStream &stream); - - virtual void requestRcCalibrationParamsUpdate(); - - /** @brief Copy the current parameters in volatile RAM to persistent storage (EEPROM/HDD) */ - virtual void copyVolatileParamsToPersistent(); - /** @brief Copy the parameters from persistent storage to volatile RAM */ - virtual void copyPersistentParamsToVolatile(); - -private slots: - void _parameterListUpToDate(void); - -protected: - - // Parameter data model - UASInterface* mav; ///< The MAV this manager is controlling - UASParameterDataModel paramDataModel;///< Shared data model of parameters - UASParameterCommsMgr paramCommsMgr; ///< Shared comms mgr for parameters - - bool _parametersReady; - -}; - -#endif // QGCUASPARAMMANAGER_H diff --git a/src/uas/QGCUASParamManagerInterface.h b/src/uas/QGCUASParamManagerInterface.h deleted file mode 100644 index 2b1c41b74c857433817285103f57e80d214846ab..0000000000000000000000000000000000000000 --- a/src/uas/QGCUASParamManagerInterface.h +++ /dev/null @@ -1,59 +0,0 @@ -#ifndef QGCUASPARAMMANAGERINTERFACE_H -#define QGCUASPARAMMANAGERINTERFACE_H - -#include -#include -#include -#include -#include - -#include "UASParameterDataModel.h" - -/** - * @brief This is the abstract base class for QGCUASParamManager. Although there is - * normally only a single QGCUASParamManager we still use an abstract base interface - * since this allows us to create mock versions. - * - * See QGCUASParamManager.h for method documentation - **/ - -//forward declarations -class QTextStream; -class UASInterface; -class UASParameterCommsMgr; - -class QGCUASParamManagerInterface : public QObject -{ -public: - QGCUASParamManagerInterface(QObject* parent = NULL) : QObject(parent) { } - virtual bool getParameterValue(int component, const QString& parameter, QVariant& value) const = 0; - virtual int getDefaultComponentId() = 0; - virtual QList getComponentForParam(const QString& parameter) const = 0; - virtual void setParamDescriptions(const QMap& paramDescs) = 0; - virtual int countPendingParams() = 0; - virtual int countOnboardParams() = 0; - virtual UASParameterDataModel* dataModel() = 0; - virtual bool parametersReady(void) = 0; - -public slots: - virtual void setParameter(int component, QString parameterName, QVariant value) = 0; - virtual void sendPendingParameters(bool persistAfterSend = false, bool forceSend = false) = 0; - virtual void requestParameterList() = 0; - virtual void requestParameterListIfEmpty() = 0; - virtual void setPendingParam(int componentId, const QString& key, const QVariant& value, bool forceSend = false) = 0; - virtual void clearAllPendingParams() = 0; - virtual void requestParameterUpdate(int component, const QString& parameter) = 0; - virtual void writeOnboardParamsToStream(QTextStream &stream, const QString& uasName) = 0; - virtual void readPendingParamsFromStream(QTextStream &stream) = 0; - virtual void requestRcCalibrationParamsUpdate() = 0; - virtual void copyVolatileParamsToPersistent() = 0; - virtual void copyPersistentParamsToVolatile() = 0; - -signals: - void parameterStatusMsgUpdated(QString msg, int level); - void parameterListUpToDate(); - void parameterUpdated(int compId, QString paramName, QVariant value); - void pendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending); -}; - -#endif // QGCUASPARAMMANAGER_H diff --git a/src/uas/QGXPX4UAS.cc b/src/uas/QGXPX4UAS.cc deleted file mode 100644 index b96ca4b2e5196ba4b061e3de21dd524e55ada20a..0000000000000000000000000000000000000000 --- a/src/uas/QGXPX4UAS.cc +++ /dev/null @@ -1,40 +0,0 @@ -#include "QGXPX4UAS.h" - -QGXPX4UAS::QGXPX4UAS(MAVLinkProtocol* mavlink, int id) : - UAS(mavlink, id) -{ -} - -/** - * This function is called by MAVLink once a complete, uncorrupted (CRC check valid) - * mavlink packet is received. - * - * @param link Hardware link the message came from (e.g. /dev/ttyUSB0 or UDP port). - * messages can be sent back to the system via this link - * @param message MAVLink message, as received from the MAVLink protocol stack - */ -void QGXPX4UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) -{ - UAS::receiveMessage(link, message); -} - -void QGXPX4UAS::processParamValueMsgHook(mavlink_message_t& msg, const QString& paramName,const mavlink_param_value_t& rawValue, mavlink_param_union_t& paramValue) -{ - Q_UNUSED(rawValue); - Q_UNUSED(paramValue); - - int compId = msg.compid; - if (paramName == "SYS_AUTOSTART") { - - bool ok; - - int val = parameters.value(compId)->value(paramName).toInt(&ok); - - if (ok && val == 0) { - emit misconfigurationDetected(this); - qDebug() << "HINTING MISCONFIGURATION"; - } - - qDebug() << "SYS_AUTOSTART FOUND WITH VAL: " << val; - } -} diff --git a/src/uas/QGXPX4UAS.h b/src/uas/QGXPX4UAS.h deleted file mode 100644 index 5aaf8ab1adba7c98e39310faffbaf5c044d4f3ea..0000000000000000000000000000000000000000 --- a/src/uas/QGXPX4UAS.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef QGXPX4UAS_H -#define QGXPX4UAS_H - -#include "UAS.h" - -class QGXPX4UAS : public UAS -{ - Q_OBJECT - Q_INTERFACES(UASInterface) -public: - QGXPX4UAS(MAVLinkProtocol* mavlink, int id); - -public slots: - /** @brief Receive a MAVLink message from this MAV */ - void receiveMessage(LinkInterface* link, mavlink_message_t message); - - virtual void processParamValueMsgHook(mavlink_message_t& msg, const QString& paramName,const mavlink_param_value_t& rawValue, mavlink_param_union_t& paramValue); - -}; - -#endif // QGXPX4UAS_H diff --git a/src/uas/UAS.cc b/src/uas/UAS.cc index a155b0f8a1e8603a89660eefe5ac7d86cd6f797d..d5f380b2bab4a4c47d37a1d0dd35a81bbc550806 100644 --- a/src/uas/UAS.cc +++ b/src/uas/UAS.cc @@ -27,12 +27,12 @@ #include "QGCMAVLink.h" #include "LinkManager.h" #include "SerialLink.h" -#include "UASParameterCommsMgr.h" #include #include "AutoPilotPluginManager.h" #include "QGCMessageBox.h" +#include "QGCLoggingCategory.h" -Q_LOGGING_CATEGORY(UASLog, "UASLog") +QGC_LOGGING_CATEGORY(UASLog, "UASLog") #define UAS_DEFAULT_BATTERY_WARNLEVEL 20 @@ -49,7 +49,6 @@ UAS::UAS(MAVLinkProtocol* protocol, int id) : UASInterface(), uasId(id), unknownPackets(), mavlink(protocol), - commStatus(COMM_DISCONNECTED), receiveDropRate(0), sendDropRate(0), @@ -143,8 +142,6 @@ UAS::UAS(MAVLinkProtocol* protocol, int id) : UASInterface(), receivedMode(false), - paramsOnceRequested(false), - paramMgr(this), simulation(0), // The protected members. @@ -230,8 +227,7 @@ UAS::UAS(MAVLinkProtocol* protocol, int id) : UASInterface(), connect(this, SIGNAL(systemSpecsChanged(int)), this, SLOT(writeSettings())); statusTimeout.start(500); readSettings(); - //need to init paramMgr after readSettings have been loaded, to properly set autopilot and so forth - paramMgr.initWithUAS(this); + // Initial signals emit disarmed(); emit armingChanged(false); @@ -347,13 +343,6 @@ void UAS::updateState() { positionLock = false; } - else - { - if (((base_mode & MAV_MODE_FLAG_DECODE_POSITION_AUTO) || (base_mode & MAV_MODE_FLAG_DECODE_POSITION_GUIDED)) && positionLock) - { - GAudioOutput::instance()->notifyNegative(); - } - } } /** @@ -379,8 +368,7 @@ bool UAS::getSelected() const void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) { - if (!links.contains(link)) - { + if (!_containsLink(link)) { addLink(link); // qDebug() << __FILE__ << __LINE__ << "ADDED LINK!" << link->getName(); } @@ -561,12 +549,11 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) if (statechanged && ((int)state.system_status == (int)MAV_STATE_CRITICAL || state.system_status == (int)MAV_STATE_EMERGENCY)) { - GAudioOutput::instance()->say(QString("emergency for system %1").arg(this->getUASID()), GAudioOutput::AUDIO_SEVERITY_EMERGENCY); + GAudioOutput::instance()->say(QString("Emergency for system %1").arg(this->getUASID()), GAudioOutput::AUDIO_SEVERITY_EMERGENCY); QTimer::singleShot(3000, GAudioOutput::instance(), SLOT(startEmergency())); } else if (modechanged || statechanged) { - GAudioOutput::instance()->stopEmergency(); GAudioOutput::instance()->say(audiostring.toLower()); } } @@ -617,7 +604,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) /* warn only every 12 seconds */ && (QGC::groundTimeUsecs() - lastVoltageWarning) > 12000000) { - GAudioOutput::instance()->say(QString("voltage warning: %1 volts").arg(lpVoltage, 0, 'f', 1, QChar(' '))); + GAudioOutput::instance()->say(QString("Voltage warning for system %1: %2 volts").arg(getUASID()).arg(lpVoltage, 0, 'f', 1, QChar(' '))); lastVoltageWarning = QGC::groundTimeUsecs(); lastTickVoltageValue = tickLowpassVoltage; } @@ -817,11 +804,6 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) emit localPositionChanged(this, localX, localY, localZ, time); emit velocityChanged_NED(this, speedX, speedY, speedZ, time); - // Set internal state - if (!positionLock) { - // If position was not locked before, notify positive - GAudioOutput::instance()->notifyPositive(); - } positionLock = true; isLocalPositionKnown = true; } @@ -864,16 +846,8 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) setGroundSpeed(qSqrt(speedX*speedX+speedY*speedY)); emit speedChanged(this, groundSpeed, airSpeed, time); - // Set internal state - if (!positionLock) - { - // If position was not locked before, notify positive - GAudioOutput::instance()->notifyPositive(); - } positionLock = true; isGlobalPositionKnown = true; - //TODO fix this hack for forwarding of global position for patch antenna tracking - //forwardMessage(message); } break; case MAVLINK_MSG_ID_GPS_RAW_INT: @@ -945,10 +919,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) mavlink_rc_channels_t channels; mavlink_msg_rc_channels_decode(&message, &channels); - // UINT8_MAX indicates this value is unknown - if (channels.rssi != UINT8_MAX) { - emit remoteControlRSSIChanged(channels.rssi/100.0f); - } + emit remoteControlRSSIChanged(channels.rssi); if (channels.chan1_raw != UINT16_MAX && channels.chancount > 0) emit remoteControlChannelRawChanged(0, channels.chan1_raw); @@ -989,6 +960,8 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) } break; + + // TODO: (gg 20150420) PX4 Firmware does not seem to send this message. Don't know what to do about it. case MAVLINK_MSG_ID_RC_CHANNELS_SCALED: { mavlink_rc_channels_scaled_t channels; @@ -996,7 +969,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) const unsigned int portWidth = 8; // XXX magic number - emit remoteControlRSSIChanged(channels.rssi/255.0f); + emit remoteControlRSSIChanged(channels.rssi); if (static_cast(channels.chan1_scaled) != UINT16_MAX) emit remoteControlChannelScaledChanged(channels.port * portWidth + 0, channels.chan1_scaled/10000.0f); if (static_cast(channels.chan2_scaled) != UINT16_MAX) @@ -1028,8 +1001,6 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) paramVal.type = rawValue.param_type; processParamValueMsg(message, parameterName,rawValue,paramVal); - processParamValueMsgHook(message, parameterName,rawValue,paramVal); - } break; case MAVLINK_MSG_ID_COMMAND_ACK: @@ -1209,7 +1180,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) mavlink_mission_item_reached_t wpr; mavlink_msg_mission_item_reached_decode(&message, &wpr); waypointManager.handleWaypointReached(message.sysid, message.compid, &wpr); - QString text = QString("System %1 reached waypoint %2").arg(getUASName()).arg(wpr.seq); + QString text = QString("System %1 reached waypoint %2").arg(getUASID()).arg(wpr.seq); GAudioOutput::instance()->say(text); emit textMessageReceived(message.sysid, message.compid, MAV_SEVERITY_INFO, text); } @@ -1247,14 +1218,17 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) QByteArray b; b.resize(MAVLINK_MSG_STATUSTEXT_FIELD_TEXT_LEN+1); mavlink_msg_statustext_get_text(&message, b.data()); + // Ensure NUL-termination b[b.length()-1] = '\0'; QString text = QString(b); int severity = mavlink_msg_statustext_get_severity(&message); - if (text.startsWith("#") || severity <= MAV_SEVERITY_WARNING) + // If the message is NOTIFY or higher severity, or starts with a '#', + // then read it aloud. + if (text.startsWith("#") || severity <= MAV_SEVERITY_NOTICE) { - text.remove("#audio:"); + text.remove("#"); emit textMessageReceived(uasId, message.compid, severity, text); GAudioOutput::instance()->say(text.toLower(), severity); } @@ -1342,6 +1316,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) setDistToWaypoint(p.wp_dist); setBearingToWaypoint(p.nav_bearing); emit navigationControllerErrorsChanged(this, p.alt_error, p.aspd_error, p.xtrack_error); + emit NavigationControllerDataChanged(this, p.nav_roll, p.nav_pitch, p.nav_bearing, p.target_bearing, p.wp_dist); } break; // Messages to ignore @@ -1460,19 +1435,67 @@ void UAS::setLocalPositionOffset(float x, float y, float z, float yaw) Q_UNUSED(yaw); } -void UAS::startRadioControlCalibration(int param) +void UAS::startCalibration(UASInterface::StartCalibrationType calType) { + int gyroCal = 0; + int magCal = 0; + int airspeedCal = 0; + int radioCal = 0; + int accelCal = 0; + + switch (calType) { + case StartCalibrationGyro: + gyroCal = 1; + break; + case StartCalibrationMag: + magCal = 1; + break; + case StartCalibrationAirspeed: + airspeedCal = 1; + break; + case StartCalibrationRadio: + radioCal = 1; + break; + case StartCalibrationAccel: + accelCal = 1; + break; + } + mavlink_message_t msg; - // Param 1: gyro cal, param 2: mag cal, param 3: pressure cal, Param 4: radio - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, 0, MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0, 0, 0, param, 0, 0, 0); + mavlink_msg_command_long_pack(mavlink->getSystemId(), + mavlink->getComponentId(), + &msg, + uasId, + 0, // target component + MAV_CMD_PREFLIGHT_CALIBRATION, // command id + 0, // 0=first transmission of command + gyroCal, // gyro cal + magCal, // mag cal + 0, // ground pressure + radioCal, // radio cal + accelCal, // accel cal + airspeedCal, // airspeed cal + 0); // unused sendMessage(msg); } -void UAS::endRadioControlCalibration() +void UAS::stopCalibration(void) { mavlink_message_t msg; - // Param 1: gyro cal, param 2: mag cal, param 3: pressure cal, Param 4: radio - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, 0, MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0, 0, 0, 0, 0, 0, 0); + mavlink_msg_command_long_pack(mavlink->getSystemId(), + mavlink->getComponentId(), + &msg, + uasId, + 0, // target component + MAV_CMD_PREFLIGHT_CALIBRATION, // command id + 0, // 0=first transmission of command + 0, // gyro cal + 0, // mag cal + 0, // ground pressure + 0, // radio cal + 0, // accel cal + 0, // airspeed cal + 0); // unused sendMessage(msg); } @@ -1490,30 +1513,6 @@ void UAS::stopDataRecording() sendMessage(msg); } -void UAS::startMagnetometerCalibration() -{ - mavlink_message_t msg; - // Param 1: gyro cal, param 2: mag cal, param 3: pressure cal, Param 4: radio - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, MAV_COMP_ID_IMU, MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0, 1, 0, 0, 0, 0, 0); - sendMessage(msg); -} - -void UAS::startGyroscopeCalibration() -{ - mavlink_message_t msg; - // Param 1: gyro cal, param 2: mag cal, param 3: pressure cal, Param 4: radio - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, MAV_COMP_ID_IMU, MAV_CMD_PREFLIGHT_CALIBRATION, 1, 1, 0, 0, 0, 0, 0, 0); - sendMessage(msg); -} - -void UAS::startPressureCalibration() -{ - mavlink_message_t msg; - // Param 1: gyro cal, param 2: mag cal, param 3: pressure cal, Param 4: radio - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, MAV_COMP_ID_IMU, MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0, 0, 1, 0, 0, 0, 0); - sendMessage(msg); -} - /** * Check if time is smaller than 40 years, assuming no system without Unix * timestamp runs longer than 40 years continuously without reboot. In worst case @@ -1642,26 +1641,6 @@ quint64 UAS::getUnixTime(quint64 time) return ret; } -/** -* @param component that will be searched for in the map of parameters. -*/ -QList UAS::getParameterNames(int component) -{ - if (parameters.contains(component)) - { - return parameters.value(component)->keys(); - } - else - { - return QList(); - } -} - -QList UAS::getComponentIds() -{ - return parameters.keys(); -} - /** * @param newBaseMode that UAS is to be set to. * @param newCustomMode that UAS is to be set to. @@ -1722,49 +1701,21 @@ void UAS::sendMessage(mavlink_message_t message) return; } - if (links.count() < 1) { + if (_links.count() < 1) { qDebug() << "NO LINK AVAILABLE TO SEND!"; } // Emit message on all links that are currently connected - foreach (LinkInterface* link, links) { + foreach (SharedLinkInterface sharedLink, _links) { + LinkInterface* link = sharedLink.data(); + Q_ASSERT(link); + if (link->isConnected()) { sendMessage(link, message); } } } -/** -* Forward a message to all links that are currently connected. -* @param message that is to be forwarded -*/ -void UAS::forwardMessage(mavlink_message_t message) -{ - // Emit message on all links that are currently connected - QListlink_list = LinkManager::instance()->getLinks(); - - foreach(LinkInterface* link, link_list) - { - if (link) - { - SerialLink* serial = dynamic_cast(link); - if(serial != 0) - { - for(int i=0; iisConnected()) { - qDebug()<<"Antenna tracking: Forwarding Over link: "<getName()<<" "<getSystemId(), mavlink->getComponentId(), link->getId(), message.len, messageKeys[message.msgid]); + mavlink_finalize_message_chan(&message, mavlink->getSystemId(), mavlink->getComponentId(), link->getMavlinkChannel(), message.len, messageKeys[message.msgid]); // If link is connected if (link->isConnected()) @@ -1939,26 +1890,6 @@ quint64 UAS::getUptime() const } } -int UAS::getCommunicationStatus() const -{ - return commStatus; -} - -void UAS::writeParametersToStorage() -{ - mavlink_message_t msg; - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, 0, MAV_CMD_PREFLIGHT_STORAGE, 1, 1, -1, -1, -1, 0, 0, 0); - qDebug() << "SENT COMMAND" << MAV_CMD_PREFLIGHT_STORAGE; - sendMessage(msg); -} - -void UAS::readParametersFromStorage() -{ - mavlink_message_t msg; - mavlink_msg_command_long_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, uasId, 0, MAV_CMD_PREFLIGHT_STORAGE, 1, 0, -1, -1, -1, 0, 0, 0); - sendMessage(msg); -} - bool UAS::isRotaryWing() { switch (type) { @@ -2235,116 +2166,11 @@ void UAS::enableExtra3Transmission(int rate) sendMessage(msg); } -/** - * Set a parameter value onboard - * - * @param component The component to set the parameter - * @param id Name of the parameter - */ -void UAS::setParameter(const int compId, const QString& paramId, const QVariant& value) -{ - if (!paramId.isNull()) - { - mavlink_message_t msg; - mavlink_param_set_t p; - mavlink_param_union_t union_value; - - // Assign correct value based on QVariant - // TODO: This is a hack for MAV_AUTOPILOT_ARDUPILOTMEGA until the new version of MAVLink and a fix for their param handling. - if (getAutopilotType() == MAV_AUTOPILOT_ARDUPILOTMEGA) - { - switch ((int)value.type()) - { - case QVariant::Char: - union_value.param_float = (unsigned char)value.toChar().toLatin1(); - p.param_type = MAV_PARAM_TYPE_INT8; - break; - case QVariant::Int: - union_value.param_float = value.toInt(); - p.param_type = MAV_PARAM_TYPE_INT32; - break; - case QVariant::UInt: - union_value.param_float = value.toUInt(); - p.param_type = MAV_PARAM_TYPE_UINT32; - break; - case QMetaType::Float: - union_value.param_float = value.toFloat(); - p.param_type = MAV_PARAM_TYPE_REAL32; - break; - default: - qCritical() << "ABORTED PARAM SEND, NO VALID QVARIANT TYPE"; - return; - } - } - else - { - switch ((int)value.type()) - { - case QVariant::Char: - union_value.param_int8 = (unsigned char)value.toChar().toLatin1(); - p.param_type = MAV_PARAM_TYPE_INT8; - break; - case QVariant::Int: - union_value.param_int32 = value.toInt(); - p.param_type = MAV_PARAM_TYPE_INT32; - break; - case QVariant::UInt: - union_value.param_uint32 = value.toUInt(); - p.param_type = MAV_PARAM_TYPE_UINT32; - break; - case QMetaType::Float: - union_value.param_float = value.toFloat(); - p.param_type = MAV_PARAM_TYPE_REAL32; - break; - default: - qCritical() << "ABORTED PARAM SEND, NO VALID QVARIANT TYPE"; - return; - } - } - - p.param_value = union_value.param_float; - p.target_system = (uint8_t)uasId; - p.target_component = (uint8_t)compId; - - //qDebug() << "SENT PARAM:" << value; - - // Copy string into buffer, ensuring not to exceed the buffer size - for (unsigned int i = 0; i < sizeof(p.param_id); i++) - { - // String characters - if ((int)i < paramId.length()) - { - p.param_id[i] = paramId.toLatin1()[i]; - } - else - { - // Fill rest with zeros - p.param_id[i] = 0; - } - } - mavlink_msg_param_set_encode(mavlink->getSystemId(), mavlink->getComponentId(), &msg, &p); - sendMessage(msg); - } -} - - - - //TODO update this to use the parameter manager / param data model instead void UAS::processParamValueMsg(mavlink_message_t& msg, const QString& paramName, const mavlink_param_value_t& rawValue, mavlink_param_union_t& paramUnion) { int compId = msg.compid; - // Insert component if necessary - if (!parameters.contains(compId)) { - parameters.insert(compId, new QMap()); - } - - // Insert parameter into registry - if (parameters.value(compId)->contains(paramName)) { - parameters.value(compId)->remove(paramName); - } - QVariant paramValue; // Insert with correct type @@ -2404,50 +2230,7 @@ void UAS::processParamValueMsg(mavlink_message_t& msg, const QString& paramName, qCDebug(UASLog) << "Received PARAM_VALUE" << paramName << paramValue << rawValue.param_type; - parameters.value(compId)->insert(paramName, paramValue); - emit parameterChanged(uasId, compId, paramName, paramValue); - emit parameterUpdate(uasId, compId, paramName, rawValue.param_type, paramValue); - emit parameterChanged(uasId, compId, rawValue.param_count, rawValue.param_index, paramName, paramValue); -} - -/** -* Request parameter, use parameter name to request it. -*/ -void UAS::requestParameter(int component, int id) -{ - // Request parameter, use parameter name to request it - mavlink_message_t msg; - mavlink_param_request_read_t read; - read.param_index = id; - read.param_id[0] = '\0'; // Enforce null termination - read.target_system = uasId; - read.target_component = component; - mavlink_msg_param_request_read_encode(mavlink->getSystemId(), mavlink->getComponentId(), &msg, &read); - sendMessage(msg); - //qDebug() << __FILE__ << __LINE__ << "REQUESTING PARAM RETRANSMISSION FROM COMPONENT" << component << "FOR PARAM ID" << id; -} - -/** -* Request a parameter, use parameter name to request it. -*/ -void UAS::requestParameter(int component, const QString& parameter) -{ - // Request parameter, use parameter name to request it - mavlink_message_t msg; - mavlink_param_request_read_t read; - read.param_index = -1; - // Copy full param name or maximum max field size - if (parameter.length() > MAVLINK_MSG_PARAM_REQUEST_READ_FIELD_PARAM_ID_LEN) - { - emit textMessageReceived(uasId, 0, MAV_SEVERITY_WARNING, QString("QGC WARNING: Parameter name %1 is more than %2 bytes long. This might lead to errors and mishaps!").arg(parameter).arg(MAVLINK_MSG_PARAM_REQUEST_READ_FIELD_PARAM_ID_LEN-1)); - } - strncpy(read.param_id, parameter.toStdString().c_str(), sizeof(read.param_id)); - read.param_id[sizeof(read.param_id) - 1] = '\0'; // Enforce null termination - read.target_system = uasId; - read.target_component = component; - mavlink_msg_param_request_read_encode(mavlink->getSystemId(), mavlink->getComponentId(), &msg, &read); - sendMessage(msg); - //qDebug() << __FILE__ << __LINE__ << "REQUESTING PARAM RETRANSMISSION FROM COMPONENT" << component << "FOR PARAM NAME" << parameter; + emit parameterUpdate(uasId, compId, paramName, rawValue.param_count, rawValue.param_index, rawValue.param_type, paramValue); } /** @@ -2707,6 +2490,21 @@ int UAS::getSystemType() return this->type; } +/** @brief Is it an airplane (or like one)?,..)*/ +bool UAS::isAirplane() +{ + switch(this->type) { + case MAV_TYPE_GENERIC: + case MAV_TYPE_FIXED_WING: + case MAV_TYPE_AIRSHIP: + case MAV_TYPE_FLAPPING_WING: + return true; + default: + break; + } + return false; +} + /** * Halt the uas. */ @@ -3271,27 +3069,30 @@ const QString& UAS::getShortMode() const */ void UAS::addLink(LinkInterface* link) { - if (!links.contains(link)) + if (!_containsLink(link)) { - links.append(link); + _links.append(LinkManager::instance()->sharedPointerForLink(link)); qCDebug(UASLog) << "addLink:" << QString("%1").arg((ulong)link, 0, 16); - connect(link, SIGNAL(destroyed(QObject*)), this, SLOT(removeLink(QObject*))); + connect(LinkManager::instance(), &LinkManager::linkDisconnected, this, &UAS::_linkDisconnected); } } -void UAS::removeLink(QObject* object) +void UAS::_linkDisconnected(LinkInterface* link) { - qCDebug(UASLog) << "removeLink:" << QString("%1").arg((ulong)object, 0, 16); - qCDebug(UASLog) << "link count:" << links.count(); + qCDebug(UASLog) << "_linkDisconnected:" << link->getName(); + qCDebug(UASLog) << "link count:" << _links.count(); - // Do not dynamic cast or de-reference QObject, since object is either in destructor or may have already - // been destroyed. - - LinkInterface* link = (LinkInterface*)object; - - int index = links.indexOf(link); - Q_ASSERT(index != -1); - links.removeAt(index); + for (int i=0; i<_links.count(); i++) { + if (_links[i].data() == link) { + _links.removeAt(i); + break; + } + } + + if (_links.count() == 0) { + // Remove the UAS when all links to it close + UASManager::instance()->removeUAS(this); + } } /** @@ -3299,7 +3100,13 @@ void UAS::removeLink(QObject* object) */ QList UAS::getLinks() { - return links; + QList list; + + foreach (SharedLinkInterface sharedLink, _links) { + list << sharedLink.data(); + } + + return list; } /** @@ -3360,8 +3167,7 @@ void UAS::startLowBattAlarm() { if (!lowBattAlarm) { - GAudioOutput::instance()->alert(tr("system %1 has low battery").arg(getUASName())); - QTimer::singleShot(3000, GAudioOutput::instance(), SLOT(startEmergency())); + GAudioOutput::instance()->alert(tr("System %1 has low battery").arg(getUASID())); lowBattAlarm = true; } } @@ -3370,7 +3176,6 @@ void UAS::stopLowBattAlarm() { if (lowBattAlarm) { - GAudioOutput::instance()->stopEmergency(); lowBattAlarm = false; } } @@ -3426,3 +3231,14 @@ void UAS::unsetRCToParameterMap() sendMessage(message); } } + +bool UAS::_containsLink(LinkInterface* link) +{ + foreach (SharedLinkInterface sharedLink, _links) { + if (sharedLink.data() == link) { + return true; + } + } + + return false; +} diff --git a/src/uas/UAS.h b/src/uas/UAS.h index 519f1264e89955d97359adb3b063a97b1f535ba3..9d115fc602e6994e1968abf36d50006b645ddbd3 100644 --- a/src/uas/UAS.h +++ b/src/uas/UAS.h @@ -40,7 +40,6 @@ This file is part of the QGROUNDCONTROL project #include "QGCFlightGearLink.h" #include "QGCJSBSimLink.h" #include "QGCXPlaneLink.h" -#include "QGCUASParamManager.h" #include "QGCUASFileManager.h" Q_DECLARE_LOGGING_CATEGORY(UASLog) @@ -87,8 +86,6 @@ public: /** @brief The time interval the robot is switched on */ quint64 getUptime() const; - /** @brief Get the status flag for the communication */ - int getCommunicationStatus() const; /** @brief Add one measurement and get low-passed voltage */ float filterVoltage(float value) const; /** @brief Get the links associated with this robot */ @@ -341,10 +338,13 @@ protected: //COMMENTS FOR TEST UNIT /// LINK ID AND STATUS int uasId; ///< Unique system ID QMap components;///< IDs and names of all detected onboard components - QList links; ///< List of links this UAS can be reached by + + /// List of all links associated with this UAS. We keep SharedLinkInterface objects which are QSharedPointer's in order to + /// maintain reference counts across threads. This way Link deletion works correctly. + QList _links; + QList unknownPackets; ///< Packet IDs which are unknown and have been received MAVLinkProtocol* mavlink; ///< Reference to the MAVLink instance - CommStatus commStatus; ///< Communication status float receiveDropRate; ///< Percentage of packets that were dropped on the MAV's receiving link (from GCS and other MAVs) float sendDropRate; ///< Percentage of packets that were not received from the MAV by the GCS quint64 lastHeartbeat; ///< Time of the last heartbeat message @@ -461,11 +461,6 @@ protected: //COMMENTS FOR TEST UNIT bool blockHomePositionChanges; ///< Block changes to the home position bool receivedMode; ///< True if mode was retrieved from current conenction to UAS - /// PARAMETERS - QMap* > parameters; ///< All parameters - bool paramsOnceRequested; ///< If the parameter list has been read at least once - QGCUASParamManager paramMgr; ///< Parameter manager for this UAS - /// SIMULATION QGCHilLink* simulation; ///< Hardware in the loop simulation link @@ -492,11 +487,6 @@ public: return &waypointManager; } - /** @brief Get reference to the param manager **/ - virtual QGCUASParamManagerInterface* getParamManager() { - return ¶mMgr; - } - virtual QGCUASFileManager* getFileManager() { return &fileManager; } @@ -507,7 +497,8 @@ public: } - int getSystemType(); + int getSystemType(); + bool isAirplane(); /** * @brief Returns true for systems that can reverse. If the system has no control over position, it returns false as @@ -796,8 +787,6 @@ public slots: /** @brief Add a link associated with this robot */ void addLink(LinkInterface* link); - /** @brief Remove a link associated with this robot */ - void removeLink(QObject* object); /** @brief Receive a message from one of the communication links. */ virtual void receiveMessage(LinkInterface* link, mavlink_message_t message); @@ -812,9 +801,6 @@ public slots: /** @brief Send a message over all links this UAS can be reached with (!= all links) */ void sendMessage(mavlink_message_t message); - /** @brief Temporary Hack for sending packets to patch Antenna. Send a message over all serial links except for this UAS's */ - void forwardMessage(mavlink_message_t message); - /** @brief Set this UAS as the system currently in focus, e.g. in the main display widgets */ void setSelected(); @@ -824,25 +810,6 @@ public slots: /** @brief Set current mode of operation, e.g. auto or manual, does not check the arming status, for anything else than arming/disarming operations use setMode instead */ void setModeArm(uint8_t newBaseMode, uint32_t newCustomMode); - /** @brief Request a single parameter by name */ - void requestParameter(int component, const QString& parameter); - /** @brief Request a single parameter by index */ - void requestParameter(int component, int id); - - /** @brief Set a system parameter */ - void setParameter(const int compId, const QString& paramId, const QVariant& value); - - /** @brief Write parameters to permanent storage */ - void writeParametersToStorage(); - /** @brief Read parameters from permanent storage */ - void readParametersFromStorage(); - - /** @brief Get the names of all parameters */ - QList getParameterNames(int component); - - /** @brief Get the ids of all components */ - QList getComponentIds(); - void enableAllDataTransmission(int rate); void enableRawSensorDataTransmission(int rate); void enableExtendedSystemStatusTransmission(int rate); @@ -866,11 +833,8 @@ public slots: /** @brief Add an offset in body frame to the setpoint */ void setLocalPositionOffset(float x, float y, float z, float yaw); - void startRadioControlCalibration(int param=1); - void endRadioControlCalibration(); - void startMagnetometerCalibration(); - void startGyroscopeCalibration(); - void startPressureCalibration(); + void startCalibration(StartCalibrationType calType); + void stopCalibration(void); void startDataRecording(); void stopDataRecording(); @@ -930,7 +894,6 @@ protected: quint64 getUnixReferenceTime(quint64 time); virtual void processParamValueMsg(mavlink_message_t& msg, const QString& paramName,const mavlink_param_value_t& rawValue, mavlink_param_union_t& paramValue); - virtual void processParamValueMsgHook(mavlink_message_t& msg, const QString& paramName,const mavlink_param_value_t& rawValue, mavlink_param_union_t& paramValue) { Q_UNUSED(msg); Q_UNUSED(paramName); Q_UNUSED(rawValue); Q_UNUSED(paramValue); }; int componentID[256]; bool componentMulti[256]; @@ -952,6 +915,12 @@ protected slots: void writeSettings(); /** @brief Read settings from disk */ void readSettings(); + +private slots: + void _linkDisconnected(LinkInterface* link); + +private: + bool _containsLink(LinkInterface* link); }; diff --git a/src/uas/UASInterface.h b/src/uas/UASInterface.h index c61c81e1e6f7df2f95124fef23b5ad83690d3156..51dae58984a3b6f3bcc2cf9112196d7b24838964 100644 --- a/src/uas/UASInterface.h +++ b/src/uas/UASInterface.h @@ -40,9 +40,7 @@ This file is part of the QGROUNDCONTROL project #include "LinkInterface.h" #include "ProtocolInterface.h" -#include "UASParameterDataModel.h" #include "UASWaypointManager.h" -#include "QGCUASParamManagerInterface.h" class QGCUASFileManager; @@ -108,8 +106,6 @@ public: virtual int getUASID() const = 0; ///< Get the ID of the connected UAS /** @brief The time interval the robot is switched on **/ virtual quint64 getUptime() const = 0; - /** @brief Get the status flag for the communication **/ - virtual int getCommunicationStatus() const = 0; virtual double getLocalX() const = 0; virtual double getLocalY() const = 0; @@ -136,9 +132,6 @@ public: /** @brief Get reference to the waypoint manager **/ virtual UASWaypointManager* getWaypointManager(void) = 0; - /** @brief Get reference to the param manager **/ - virtual QGCUASParamManagerInterface* getParamManager() = 0; - virtual QGCUASFileManager* getFileManager() = 0; /** @brief Send a message over this link (to this or to all UAS on this link) */ @@ -146,21 +139,6 @@ public: /** @brief Send a message over all links this UAS can be reached with (!= all links) */ virtual void sendMessage(mavlink_message_t message) = 0; - /* COMMUNICATION FLAGS */ - - enum CommStatus { - /** Unit is disconnected, no failure state reached so far **/ - COMM_DISCONNECTED = 0, - /** The communication is established **/ - COMM_CONNECTING = 1, - /** The communication link is up **/ - COMM_CONNECTED = 2, - /** The connection is closed **/ - COMM_DISCONNECTING = 3, - COMM_FAIL = 4, - COMM_TIMEDOUT = 5///< Communication link failed - }; - enum Airframe { QGC_AIRFRAME_GENERIC = 0, QGC_AIRFRAME_EASYSTAR, @@ -230,6 +208,8 @@ public: /** @brief Get the type of the system (airplane, quadrotor, helicopter,..)*/ virtual int getSystemType() = 0; + /** @brief Is it an airplane (or like one)?,..)*/ + virtual bool isAirplane() = 0; /** @brief Indicates whether this system is capable of controlling a reverse velocity. * Used for, among other things, altering joystick input to either -1:1 or 0:1 range. */ @@ -257,6 +237,20 @@ public: static const unsigned int WAYPOINT_RADIUS_DEFAULT_FIXED_WING = 25; static const unsigned int WAYPOINT_RADIUS_DEFAULT_ROTARY_WING = 5; + + enum StartCalibrationType { + StartCalibrationRadio, + StartCalibrationGyro, + StartCalibrationMag, + StartCalibrationAirspeed, + StartCalibrationAccel + }; + + /// Starts the specified calibration + virtual void startCalibration(StartCalibrationType calType) = 0; + + /// Ends any current calibration + virtual void stopCalibration(void) = 0; public slots: @@ -315,19 +309,6 @@ public slots: virtual void setLocalOriginAtCurrentGPSPosition() = 0; /** @brief Set world frame origin / home position at this GPS position */ virtual void setHomePosition(double lat, double lon, double alt) = 0; - /** @brief Request one specific onboard parameter */ - virtual void requestParameter(int component, const QString& parameter) = 0; - /** @brief Write parameter to permanent storage */ - virtual void writeParametersToStorage() = 0; - /** @brief Read parameter from permanent storage */ - virtual void readParametersFromStorage() = 0; - /** @brief Set a system parameter - * @param component ID of the system component to write the parameter to - * @param id String identifying the parameter - * @warning The length of the ID string is limited by the MAVLink format! Take care to not exceed it - * @param value Value of the parameter, IEEE 754 single precision floating point - */ - virtual void setParameter(const int component, const QString& id, const QVariant& value) = 0; /** * @brief Add a link to the list of current links @@ -359,12 +340,6 @@ public slots: virtual void setLocalPositionSetpoint(float x, float y, float z, float yaw) = 0; virtual void setLocalPositionOffset(float x, float y, float z, float yaw) = 0; - virtual void startRadioControlCalibration(int param=1) = 0; - virtual void endRadioControlCalibration() = 0; - virtual void startMagnetometerCalibration() = 0; - virtual void startGyroscopeCalibration() = 0; - virtual void startPressureCalibration() = 0; - /** @brief Return if this a rotary wing */ virtual bool isRotaryWing() = 0; /** @brief Return if this is a fixed wing */ @@ -471,8 +446,6 @@ signals: void armingChanged(int sysId, QString armingState); /** @brief A command has been issued **/ void commandSent(int command); - /** @brief The connection status has changed **/ - void connectionChanged(CommStatus connectionFlag); /** @brief The robot is connecting **/ void connecting(); /** @brief The robot is connected **/ @@ -505,11 +478,7 @@ signals: void waypointSelected(int uasId, int id); void waypointReached(UASInterface* uas, int id); void autoModeChanged(bool autoMode); - void parameterChanged(int uas, int component, QString parameterName, QVariant value); - void parameterChanged(int uas, int component, int parameterCount, int parameterId, QString parameterName, QVariant value); - void parameterUpdate(int uas, int component, QString parameterName, int type, QVariant value); - void patternDetected(int uasId, QString patternPath, float confidence, bool detected); - void letterDetected(int uasId, QString letter, float confidence, bool detected); + void parameterUpdate(int uas, int component, QString parameterName, int parameterCount, int parameterId, int type, QVariant value); /** * @brief The battery status has been updated * @@ -544,6 +513,7 @@ signals: void velocityChanged_NED(UASInterface*, double vx, double vy, double vz, quint64 usec); void navigationControllerErrorsChanged(UASInterface*, double altitudeError, double speedError, double xtrackError); + void NavigationControllerDataChanged(UASInterface *uas, float navRoll, float navPitch, float navBearing, float targetBearing, float targetDist); void imageStarted(int imgid, int width, int height, int depth, int channels); void imageDataReceived(int imgid, const unsigned char* imageData, int length, int startIndex); @@ -586,8 +556,8 @@ signals: void remoteControlChannelRawChanged(int channelId, float raw); /** @brief Value of a remote control channel (scaled)*/ void remoteControlChannelScaledChanged(int channelId, float normalized); - /** @brief Remote control RSSI changed */ - void remoteControlRSSIChanged(float rssi); + /** @brief Remote control RSSI changed (0% - 100%)*/ + void remoteControlRSSIChanged(uint8_t rssi); /** * @brief Localization quality changed diff --git a/src/uas/UASParameterCommsMgr.cc b/src/uas/UASParameterCommsMgr.cc deleted file mode 100644 index 83ee8950f81ad4a8923c637de06991c25f836e6e..0000000000000000000000000000000000000000 --- a/src/uas/UASParameterCommsMgr.cc +++ /dev/null @@ -1,579 +0,0 @@ -#include "UASParameterCommsMgr.h" - -#include -#include - -#include "QGCUASParamManagerInterface.h" -#include "UASInterface.h" -#include "MAVLinkProtocol.h" -#include "MainWindow.h" - -#define RC_CAL_CHAN_MAX 8 - -Q_LOGGING_CATEGORY(UASParameterCommsMgrLog, "UASParameterCommsMgrLog") - -UASParameterCommsMgr::UASParameterCommsMgr(QObject *parent) : - QObject(parent), - lastReceiveTime(0), - mav(NULL), - maxSilenceTimeout(30000), - paramDataModel(NULL), - retransmitBurstLimit(5), - silenceTimeout(1000), - transmissionListMode(false) -{ - // We signal to ourselves to start/stop timer on our own thread - connect(this, SIGNAL(_startSilenceTimer(void)), this, SLOT(_startSilenceTimerOnThisThread(void))); - connect(this, SIGNAL(_stopSilenceTimer(void)), this, SLOT(_stopSilenceTimerOnThisThread(void))); -} - -UASParameterCommsMgr* UASParameterCommsMgr::initWithUAS(UASInterface* uas) -{ - mav = uas; - paramDataModel = mav->getParamManager()->dataModel(); - loadParamCommsSettings(); - - //Requesting parameters one-by-one from mav - connect(this, SIGNAL(parameterUpdateRequestedById(int,int)), - mav, SLOT(requestParameter(int,int))); - - // Sending params to the UAS - connect(this, SIGNAL(commitPendingParameter(int,QString,QVariant)), - mav, SLOT(setParameter(int,QString,QVariant))); - - // Received parameter updates from UAS - connect(mav, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), - this, SLOT(receivedParameterUpdate(int,int,int,int,QString,QVariant))); - - connect(&silenceTimer, SIGNAL(timeout()), - this,SLOT(silenceTimerExpired())); - - return this; -} - - - - -void UASParameterCommsMgr::loadParamCommsSettings() -{ - QSettings settings; - //TODO these are duplicates of MAVLinkProtocol settings...seems wrong to use them in two places - settings.beginGroup("QGC_MAVLINK_PROTOCOL"); - bool ok; - int val = settings.value("PARAMETER_RETRANSMISSION_TIMEOUT", 1000).toInt(&ok); - if (ok) { - silenceTimeout = val; - qDebug() << "silenceTimeout" << silenceTimeout; - } - - settings.endGroup(); -} - -void UASParameterCommsMgr::_sendParamRequestListMsg(void) -{ - MAVLinkProtocol* mavlink = MAVLinkProtocol::instance(); - Q_ASSERT(mavlink); - - mavlink_message_t msg; - mavlink_msg_param_request_list_pack(mavlink->getSystemId(), mavlink->getComponentId(), &msg, mav->getUASID(), MAV_COMP_ID_ALL); - mav->sendMessage(msg); -} - -/** - * Send a request to deliver the list of onboard parameters - * from the MAV. - */ -void UASParameterCommsMgr::requestParameterList() -{ - if (!mav) { - return; - } - - - if (!transmissionListMode) { - qCDebug(UASParameterCommsMgrLog) << "Requesting full parameter list"; - transmissionListMode = true;//TODO eliminate? - //we use (compId 0, paramId 0) as indicating all params for the system - markReadParamWaiting(0,0); - - _sendParamRequestListMsg(); - - updateSilenceTimer(); - } - else { - qCDebug(UASParameterCommsMgrLog) << "Ignoring requestParameterList because we're receiving params list"; - } - -} - - -void UASParameterCommsMgr::markReadParamWaiting(int compId, int paramId) -{ - if (!readsWaiting.contains(compId)) { - readsWaiting.insert(compId, new QSet()); - } - - readsWaiting.value(compId)->insert(paramId); -} - -void UASParameterCommsMgr::markWriteParamWaiting(int compId, QString paramName, QVariant value) -{ - //ensure we have a map for this compId - if (!writesWaiting.contains(compId)) { - writesWaiting.insert(compId, new QMap()); - } - - // Insert it in missing write ACK list - writesWaiting.value(compId)->insert(paramName, value); -} - -/* - Empty read retransmission list - Empty write retransmission list -*/ -void UASParameterCommsMgr::clearRetransmissionLists(int& missingReadCount, int& missingWriteCount ) -{ - qCDebug(UASParameterCommsMgrLog) << "Clearing re-transmission lists"; - - missingReadCount = 0; - QList compIds = readsWaiting.keys(); - foreach (int compId, compIds) { - missingReadCount += readsWaiting.value(compId)->count(); - readsWaiting.value(compId)->clear(); - } - - missingWriteCount = 0; - compIds = writesWaiting.keys(); - foreach (int compId, compIds) { - missingWriteCount += writesWaiting.value(compId)->count(); - writesWaiting.value(compId)->clear(); - } - -} - - -void UASParameterCommsMgr::emitPendingParameterCommit(int compId, const QString& key, QVariant& value) -{ - int paramType = (int)value.type(); - switch (paramType) - { - case QVariant::Char: - { - QVariant fixedValue(QChar((unsigned char)value.toInt())); - emit commitPendingParameter(compId, key, fixedValue); - } - break; - case QVariant::Int: - { - QVariant fixedValue(value.toInt()); - emit commitPendingParameter(compId, key, fixedValue); - } - break; - case QVariant::UInt: - { - QVariant fixedValue(value.toUInt()); - emit commitPendingParameter(compId, key, fixedValue); - } - break; - case QMetaType::Float: - { - QVariant fixedValue(value.toFloat()); - emit commitPendingParameter(compId, key, fixedValue); - } - break; - default: - qCritical() << "ABORTED PARAM SEND, INVALID QVARIANT TYPE" << paramType; - return; - } - - setParameterStatusMsg(tr("Writing %1: %2 for comp. %3").arg(key).arg(value.toDouble()).arg(compId)); - -} - - -void UASParameterCommsMgr::resendReadWriteRequests() -{ - int compId; - QList compIds; - - // Re-request at maximum retransmitBurstLimit parameters at once - // to prevent link flooding' - int requestedReadCount = 0; - compIds = readsWaiting.keys(); - foreach (compId, compIds) { - // Request n parameters from this component (at maximum) - QSet* missingReadParams = readsWaiting.value(compId, NULL); - qDebug() << "compId " << compId << "readsWaiting:" << missingReadParams->count(); - foreach (int paramId, *missingReadParams) { - if (0 == paramId && 0 == compId) { - _sendParamRequestListMsg(); - //don't request any other params individually for this component - break; - } - if (requestedReadCount < retransmitBurstLimit) { - //qDebug() << __FILE__ << __LINE__ << "RETRANSMISSION GUARD REQUESTS RETRANSMISSION OF PARAM #" << paramId << "FROM COMPONENT #" << compId; - emit parameterUpdateRequestedById(compId, paramId); - setParameterStatusMsg(tr("Requested retransmission of #%1").arg(paramId+1)); - requestedReadCount++; - } - else { - qCDebug(UASParameterCommsMgrLog) << "Throttling read retransmit requests at" << requestedReadCount; - break; - } - } - } - - // Re-request at maximum retransmitBurstLimit parameters at once - // to prevent write-request link flooding - int requestedWriteCount = 0; - compIds = writesWaiting.keys(); - foreach (compId, compIds) { - QMap * missingWriteParams = writesWaiting.value(compId); - foreach (QString key, missingWriteParams->keys()) { - if (requestedWriteCount < retransmitBurstLimit) { - // Re-request write operation - QVariant value = missingWriteParams->value(key); - emitPendingParameterCommit(compId, key, value); - requestedWriteCount++; - } - else { - qCDebug(UASParameterCommsMgrLog) << "Throttling write retransmit requests at" << requestedWriteCount; - break; - } - } - } - - updateSilenceTimer(); - -} - -void UASParameterCommsMgr::resetAfterListReceive() -{ - transmissionListMode = false; - knownParamListSize.clear(); -} - -void UASParameterCommsMgr::silenceTimerExpired() -{ - quint64 curTime = QGC::groundTimeMilliseconds(); - int elapsed = (int)(curTime - lastSilenceTimerReset); - qCDebug(UASParameterCommsMgrLog) << "silenceTimerExpired elapsed:" << elapsed; - - if (elapsed < silenceTimeout) { - //reset the guard timer: it fired prematurely - updateSilenceTimer(); - return; - } - - int totalElapsed = (int)(curTime - lastReceiveTime); - if (totalElapsed > maxSilenceTimeout) { - qCDebug(UASParameterCommsMgrLog) << "maxSilenceTimeout exceeded: " << totalElapsed; - int missingReads, missingWrites; - clearRetransmissionLists(missingReads,missingWrites); - emit _stopSilenceTimer(); // Stop timer on our thread; - lastReceiveTime = 0; - lastSilenceTimerReset = curTime; - setParameterStatusMsg(tr("TIMEOUT: Abandoning %1 reads %2 writes after %3 seconds").arg(missingReads).arg(missingWrites).arg(totalElapsed/1000)); - } - else { - resendReadWriteRequests(); - } -} - - -void UASParameterCommsMgr::requestParameterUpdate(int compId, const QString& paramName) -{ - if (mav) { - mav->requestParameter(compId, paramName); - qCDebug(UASParameterCommsMgrLog) << "Requested update for" << compId << paramName; - //TODO track these read requests with a paramName but no param ID : use index in getOnboardParamsForComponent? - //ensure we keep track of every single read request - } -} - -void UASParameterCommsMgr::requestRcCalibrationParamsUpdate() -{ - if (!transmissionListMode) { - QString minTpl("RC%1_MIN"); - QString maxTpl("RC%1_MAX"); - QString trimTpl("RC%1_TRIM"); - QString revTpl("RC%1_REV"); - - // Do not request the RC type, as these values depend on this - // active onboard parameter - - - int defCompId = paramDataModel->getDefaultComponentId(); - for (unsigned int i = 1; i < (RC_CAL_CHAN_MAX+1); ++i) { - qDebug() << "Request RC " << i; - requestParameterUpdate(defCompId, minTpl.arg(i)); - requestParameterUpdate(defCompId, trimTpl.arg(i)); - requestParameterUpdate(defCompId, maxTpl.arg(i)); - requestParameterUpdate(defCompId, revTpl.arg(i)); - QGC::SLEEP::usleep(5000); - } - } - else { - qCDebug(UASParameterCommsMgrLog) << "Ignoring requestRcCalibrationParamsUpdate because we're receiving params list"; - } -} - - -/** - * @param component the subsystem which has the parameter - * @param parameterName name of the parameter, as delivered by the system - * @param value value of the parameter - */ -void UASParameterCommsMgr::setParameter(int compId, QString paramName, QVariant value, bool forceSend) -{ - if (paramName.isEmpty()) { - return; - } - - double dblValue = value.toDouble(); - - if (paramDataModel->isValueLessThanParamMin(paramName,dblValue)) { - setParameterStatusMsg(tr("REJ. %1, %2 < min").arg(paramName).arg(dblValue), - ParamCommsStatusLevel_Error - ); - return; - } - if (paramDataModel->isValueGreaterThanParamMax(paramName,dblValue)) { - setParameterStatusMsg(tr("REJ. %1, %2 > max").arg(paramName).arg(dblValue), - ParamCommsStatusLevel_Error - ); - return; - } - - if (!forceSend) { - QVariant onboardVal; - paramDataModel->getOnboardParamValue(compId,paramName,onboardVal); - if (onboardVal == value) { - setParameterStatusMsg(tr("REJ. %1 already %2").arg(paramName).arg(dblValue), - ParamCommsStatusLevel_Warning - ); - return; - } - } - - emitPendingParameterCommit(compId, paramName, value); - - //Add this request to list of writes not yet ack'd - - markWriteParamWaiting( compId, paramName, value); - updateSilenceTimer(); - - -} - -void UASParameterCommsMgr::updateSilenceTimer() -{ - //if there are pending reads or writes, ensure we timeout in a little while - //if we hear nothing but silence from our partner - - int missReadCount = 0; - foreach (int key, readsWaiting.keys()) { - missReadCount += readsWaiting.value(key)->count(); - } - - int missWriteCount = 0; - foreach (int key, writesWaiting.keys()) { - missWriteCount += writesWaiting.value(key)->count(); - } - - - if (missReadCount > 0 || missWriteCount > 0) { - lastSilenceTimerReset = QGC::groundTimeMilliseconds(); - if (0 == lastReceiveTime) { - lastReceiveTime = lastSilenceTimerReset; - } - // We signal this to ourselves so timer is started on the right thread - emit _startSilenceTimer(); - } - else { - //all parameters have been received, broadcast to UI - qCDebug(UASParameterCommsMgrLog) << "emitting parameterListUpToDate"; - emit parameterListUpToDate(); - resetAfterListReceive(); - emit _stopSilenceTimer(); // Stop timer on our thread; - lastReceiveTime = 0; - } - - - -} - - -void UASParameterCommsMgr::setParameterStatusMsg(const QString& msg, ParamCommsStatusLevel_t level) -{ - //qDebug() << "parameterStatusMsg: " << msg; - emit parameterStatusMsgUpdated(msg,level); -} - -void UASParameterCommsMgr::receivedParameterUpdate(int uas, int compId, int paramCount, int paramId, QString paramName, QVariant value) -{ - qCDebug(UASParameterCommsMgrLog) << "Received parameter update for:" << paramName << "count" << paramCount << "index" << paramId << "value" << value; - - Q_UNUSED(uas); //this object is assigned to one UAS only - lastReceiveTime = QGC::groundTimeMilliseconds(); - // qDebug() << "compId" << compId << "receivedParameterUpdate:" << paramName; - - //notify the data model that we have an updated param - paramDataModel->handleParamUpdate(compId,paramName,value); - - - // Ensure we have missing read/write lists for this compId - if (!readsWaiting.contains(compId)) { - readsWaiting.insert(compId, new QSet()); - } - if (!writesWaiting.contains(compId) ) { - writesWaiting.insert(compId,new QMap()); - } - - QSet* compMissingReads = readsWaiting.value(compId); - // List mode is different from single parameter transfers - if (transmissionListMode) { - // Only accept the list size once on the first packet from each component - if (!knownParamListSize.contains(compId)) { - // Mark list size as known - knownParamListSize.insert(compId,paramCount); - - //remove our placeholder read request for all params - readsWaiting.value(0)->remove(0); - - qCDebug(UASParameterCommsMgrLog) << "receivedParameterUpdate: Mark all parameters as missing: " << paramCount; - for (int i = 1; i < paramCount; ++i) { //param Id 0 is "all parameters" and not valid - compMissingReads->insert(i); - } - } - } - - - // Mark this parameter as received in read list - compMissingReads->remove(paramId); - - - bool justWritten = false; - bool writeMismatch = false; - - // Mark this parameter as received in write ACK list - QMap* compMissingWrites = writesWaiting.value(compId); - if (!compMissingWrites) { - //we sometimes send a write request on compId 0 and get a response on a nonzero compId eg 50 - compMissingWrites = writesWaiting.value(0); - } - if (compMissingWrites && compMissingWrites->contains(paramName)) { - justWritten = true; - if (compMissingWrites->value(paramName) != value) { - writeMismatch = true; - } - compMissingWrites->remove(paramName); - } - - - if (justWritten) { - int waitingWritesCount = compMissingWrites->count(); - if (!writeMismatch) { - setParameterStatusMsg(tr("SUCCESS: Wrote %2 (#%1): %3").arg(paramId+1).arg(paramName).arg(value.toDouble())); - } - - if (!writeMismatch) { - if (0 == waitingWritesCount) { - setParameterStatusMsg(tr("SUCCESS: Wrote all params for component %1").arg(compId)); - if (persistParamsAfterSend) { - writeParamsToPersistentStorage(); - persistParamsAfterSend = false; - } - } - } - else { - // Mismatch, tell user - setParameterStatusMsg(tr("FAILURE: Wrote %1: sent %2 != onboard %3").arg(paramName).arg(compMissingWrites->value(paramName).toDouble()).arg(value.toDouble()), - ParamCommsStatusLevel_Warning); - } - } - else { - int waitingReadsCount = compMissingReads->count(); - - if (0 == waitingReadsCount) { - // Transmission done - QTime time = QTime::currentTime(); - QString timeString = time.toString(); - setParameterStatusMsg(tr("All received. (updated at %1)").arg(timeString)); - } - else { - // Waiting to receive more - QString val = QString("%1").arg(value.toFloat(), 5, 'f', 1, QChar(' ')); - setParameterStatusMsg(tr("OK: %1 %2 (%3/%4)").arg(paramName).arg(val).arg(paramCount-waitingReadsCount).arg(paramCount), - ParamCommsStatusLevel_OK); - } - } - - updateSilenceTimer(); - - -} - - -void UASParameterCommsMgr::writeParamsToPersistentStorage() -{ - if (mav) { - mav->writeParametersToStorage(); //TODO track timeout, retransmit etc? - persistParamsAfterSend = false; //done - } -} - - -void UASParameterCommsMgr::sendPendingParameters(bool copyToPersistent, bool forceSend) -{ - persistParamsAfterSend |= copyToPersistent; - - // Iterate through all components, through all pending parameters and send them to UAS - int parametersSent = 0; - QMap*>* changedValues = paramDataModel->getAllPendingParams(); - QMap*>::iterator i; - for (i = changedValues->begin(); i != changedValues->end(); ++i) { - // Iterate through the parameters of the component - int compId = i.key(); - QMap* paramList = i.value(); - QMap::iterator j; - setParameterStatusMsg(tr("%1 pending params for component %2").arg(paramList->count()).arg(compId)); - - for (j = paramList->begin(); j != paramList->end(); ++j) { - setParameter(compId, j.key(), j.value(), forceSend); - parametersSent++; - } - } - - // Change transmission status if necessary - if (0 == parametersSent) { - setParameterStatusMsg(tr("No transmission: No changed values."),ParamCommsStatusLevel_Warning); - } - else { - setParameterStatusMsg(tr("Transmitting %1 parameters.").arg(parametersSent)); - qCDebug(UASParameterCommsMgrLog) << "Pending parameters now:" << paramDataModel->countPendingParams(); - } - - - updateSilenceTimer(); -} - -UASParameterCommsMgr::~UASParameterCommsMgr() -{ - silenceTimer.stop(); - - QString ptrStr; - ptrStr.sprintf("%8p", this); - qCDebug(UASParameterCommsMgrLog) << "UASParameterCommsMgr destructor: " << ptrStr ; - -} - -void UASParameterCommsMgr::_startSilenceTimerOnThisThread(void) -{ - silenceTimer.start(silenceTimeout); -} - -void UASParameterCommsMgr::_stopSilenceTimerOnThisThread(void) -{ - silenceTimer.stop(); -} diff --git a/src/uas/UASParameterCommsMgr.h b/src/uas/UASParameterCommsMgr.h deleted file mode 100644 index bb68ebebd4bf6e049d5d260657967c873585a344..0000000000000000000000000000000000000000 --- a/src/uas/UASParameterCommsMgr.h +++ /dev/null @@ -1,132 +0,0 @@ -#ifndef UASPARAMETERCOMMSMGR_H -#define UASPARAMETERCOMMSMGR_H - -#include -#include -#include -#include -#include -#include - -class UASInterface; -class UASParameterDataModel; - -Q_DECLARE_LOGGING_CATEGORY(UASParameterCommsMgrLog) - -class UASParameterCommsMgr : public QObject -{ - Q_OBJECT - - -public: - explicit UASParameterCommsMgr(QObject *parent = 0); - UASParameterCommsMgr* initWithUAS(UASInterface* model);///< Two-stage constructor - - ~UASParameterCommsMgr(); - - typedef enum ParamCommsStatusLevel { - ParamCommsStatusLevel_OK = 0, - ParamCommsStatusLevel_Warning = 2, - ParamCommsStatusLevel_Error = 4, - ParamCommsStatusLevel_Count - } ParamCommsStatusLevel_t; - - -protected: - - /** @brief activate the silence timer if there are unack'd reads or writes */ - virtual void updateSilenceTimer(); - - virtual void setParameterStatusMsg(const QString& msg, ParamCommsStatusLevel_t level=ParamCommsStatusLevel_OK); - - /** @brief Load settings that control eg retransmission timeouts */ - void loadParamCommsSettings(); - - /** @brief clear transmissionMissingPackets and transmissionMissingWriteAckPackets */ - void clearRetransmissionLists(int& missingReadCount, int& missingWriteCount ); - - /** @brief we are waiting for a response to this read param request */ - virtual void markReadParamWaiting(int compId, int paramId); - - /** @brief we are waiting for a response to this write param request */ - void markWriteParamWaiting(int compId, QString paramName, QVariant value); - - void resendReadWriteRequests(); - void resetAfterListReceive(); - - void emitPendingParameterCommit(int compId, const QString& key, QVariant& value); - -signals: - void commitPendingParameter(int component, QString parameter, QVariant value); - void parameterChanged(int component, int parameterIndex, QVariant value); - void parameterValueConfirmed(int uas, int component,int paramCount, int paramId, QString parameter, QVariant value); - - /** @brief We have received a complete list of all parameters onboard the MAV */ - void parameterListUpToDate(); - - void parameterUpdateRequested(int component, const QString& parameter); - void parameterUpdateRequestedById(int componentId, int paramId); - - /** @brief We updated the parameter status message */ - void parameterStatusMsgUpdated(QString msg, int level); - - - /// @brief We signal this to ourselves in order to get timer started/stopped on our own thread. - void _startSilenceTimer(void); - void _stopSilenceTimer(void); - -public slots: - /** @brief Iterate through all components, through all pending parameters and send them to UAS */ - virtual void sendPendingParameters(bool copyToPersistent = false, bool forceSend = false); - - /** @brief Write the current onboard parameters from transient RAM into persistent storage, e.g. EEPROM or harddisk */ - virtual void writeParamsToPersistentStorage(); - - /** @brief Write one parameter to the MAV */ - virtual void setParameter(int component, QString parameterName, QVariant value, bool forceSend = false); - - /** @brief Request list of parameters from MAV */ - virtual void requestParameterList(); - - /** @brief The max silence time expired */ - virtual void silenceTimerExpired(); - - /** @brief Request a single parameter update by name */ - virtual void requestParameterUpdate(int component, const QString& parameter); - - /** @brief Request an update of RC parameters */ - virtual void requestRcCalibrationParamsUpdate(); - - virtual void receivedParameterUpdate(int uas, int compId, int paramCount, int paramId, QString paramName, QVariant value); - -protected: - - - QMap knownParamListSize;///< The known param list size for each component, by component ID - quint64 lastReceiveTime; ///< The last time we received anything from our partner - quint64 lastSilenceTimerReset; - UASInterface* mav; ///< The MAV we're talking to - - int maxSilenceTimeout; ///< If nothing received within this period of time, abandon resends - - UASParameterDataModel* paramDataModel; - - bool persistParamsAfterSend; ///< Copy all parameters to persistent storage after sending - QMap*> readsWaiting; ///< All reads that have not yet been received, by component ID - int retransmitBurstLimit; ///< Number of packets requested for retransmission per burst - int silenceTimeout; ///< If nothing received within this period of time, start resends - QTimer silenceTimer; ///< Timer handling parameter retransmission - bool transmissionListMode; ///< Currently requesting list - QMap* > writesWaiting; ///< All writes that have not yet been ack'd, by component ID - -private slots: - /// @brief We signal this to ourselves in order to get timer started/stopped on our own thread. - void _startSilenceTimerOnThisThread(void); - void _stopSilenceTimerOnThisThread(void); - -private: - void _sendParamRequestListMsg(void); -}; - - -#endif // UASPARAMETERCOMMSMGR_H diff --git a/src/uas/UASParameterDataModel.cc b/src/uas/UASParameterDataModel.cc deleted file mode 100644 index 760e6303c8379050ca0c84766132600c1bcd22cc..0000000000000000000000000000000000000000 --- a/src/uas/UASParameterDataModel.cc +++ /dev/null @@ -1,515 +0,0 @@ -#include "UASParameterDataModel.h" - -#include - -#include -#include -#include - -#include "QGCMAVLink.h" - -UASParameterDataModel::UASParameterDataModel(QObject *parent) : - QObject(parent), - defaultComponentId(-1) -{ - onboardParameters.clear(); - pendingParameters.clear(); - -} - - - -int UASParameterDataModel::countPendingParams() -{ - int total = 0; - QMap*>::iterator i; - for (i = pendingParameters.begin(); i != pendingParameters.end(); ++i) { - // Iterate through the parameters of the component - QMap* paramList = i.value(); - total += paramList->count(); - } - - return total; -} - -int UASParameterDataModel::countOnboardParams() -{ - int total = 0; - QMap*>::iterator i; - for (i = onboardParameters.begin(); i != onboardParameters.end(); ++i) { - // Iterate through the parameters of the component - QMap* paramList = i.value(); - total += paramList->count(); - } - - return total; -} - - -bool UASParameterDataModel::updatePendingParamWithValue(int compId, const QString& key, const QVariant& value, bool forceSend) -{ - bool pending = true; - //ensure we have this component in our onboard and pending lists already - addComponent(compId); - - if (!forceSend) { - QMap* existParams = getOnboardParamsForComponent(compId); - if (existParams->contains(key)) { - QVariant existValue = existParams->value(key); - if (existValue == value) { - pending = false; - } - } - } - - if (pending) { - setPendingParam(compId,key,value); - } - else { - removePendingParam(compId,key); - } - - return pending; -} - - -bool UASParameterDataModel::isParamChangePending(int compId, const QString& key) -{ - QMap* pendingParms = getPendingParamsForComponent(compId); - return ((NULL != pendingParms) && pendingParms->contains(key)); -} - -void UASParameterDataModel::setPendingParam(int compId, const QString& key, const QVariant &value) -{ - //ensure we have a placeholder map for this component - addComponent(compId); - setParamWithTypeInMap(compId,key,value,pendingParameters); - emit pendingParamUpdate(compId, key, value, true); -} - -void UASParameterDataModel::removePendingParam(int compId, const QString& key) -{ - qDebug() << "removePendingParam:" << key; - - QMap *pendParams = getPendingParamsForComponent(compId); - if (pendParams) { - pendParams->remove(key); - //broadcast the existing value - QVariant existVal; - getOnboardParamValue(compId,key,existVal); - emit pendingParamUpdate(compId, key,existVal, false); - } -} - -void UASParameterDataModel::setOnboardParam(int compId, const QString &key, const QVariant& value) -{ - //ensure we have a placeholder map for this component - addComponent(compId); - //TODO use setParamWithTypeInMap instead and verify - QMap *params = getOnboardParamsForComponent(compId); - params->insert(key,value); -} - -void UASParameterDataModel::setParamWithTypeInMap(int compId, const QString& key, const QVariant &value, QMap* >& map) -{ - - switch ((int)value.type()) - { - case QVariant::Int: - { - QVariant fixedValue(value.toInt()); - map.value(compId)->insert(key, fixedValue); - } - break; - case QVariant::UInt: - { - QVariant fixedValue(value.toUInt()); - map.value(compId)->insert(key, fixedValue); - } - break; - case QMetaType::Float: - { - QVariant fixedValue(value.toFloat()); - map.value(compId)->insert(key, fixedValue); - } - break; - case QMetaType::QChar: - { - QVariant fixedValue(QChar((unsigned char)value.toUInt())); - map.value(compId)->insert(key, fixedValue); - } - break; - case QMetaType::QString: - { - QString strVal = value.toString(); - float floatVal = strVal.toFloat(); - QVariant fixedValue( floatVal ); - //TODO track down WHY we're getting unexpected QString values here...this is a workaround - qDebug() << "Unexpected string QVariant:" << key << " val:" << value << "fixedVal:" << fixedValue; - map.value(compId)->insert(key, fixedValue); - } - break; - default: - qCritical() << "ABORTED PARAM UPDATE, NO VALID QVARIANT TYPE"; - return; - } -} - -void UASParameterDataModel::addComponent(int compId) -{ - if (!onboardParameters.contains(compId)) { - onboardParameters.insert(compId, new QMap()); - } - if (!pendingParameters.contains(compId)) { - pendingParameters.insert(compId, new QMap()); - } -} - - -void UASParameterDataModel::handleParamUpdate(int compId, const QString ¶mName, const QVariant &value) -{ - //verify that the value requested by the user matches the set value - //if it doesn't match, leave the pending parameter in the pending list! - if (pendingParameters.contains(compId)) { - QMap *pendingParams = pendingParameters.value(compId); - if ((NULL != pendingParams) && pendingParams->contains(paramName)) { - QVariant reqVal = pendingParams->value(paramName); - if (reqVal == value) { - //notify everyone that this item is being removed from the pending parameters list since it's now confirmed - removePendingParam(compId,paramName); - } - else { - qDebug() << "Pending commit for " << paramName << " want: " << reqVal << " got: " << value; - } - } - } - - setOnboardParam(compId,paramName,value); - emit parameterUpdated(compId,paramName,value); -} - -bool UASParameterDataModel::getOnboardParamValue(int componentId, const QString& key, QVariant& value) const -{ - - if (onboardParameters.contains(componentId)) { - if (onboardParameters.value(componentId)->contains(key)) { - value = onboardParameters.value(componentId)->value(key); - return true; - } - } - - return false; -} - -int UASParameterDataModel::getDefaultComponentId() -{ - int result = 0; - - if (-1 != defaultComponentId) - return defaultComponentId; - - QList components = getComponentForOnboardParam("SYS_AUTOSTART");//TODO is this the best way to find the right component? - - // Guard against multiple components responding - this will never show in practice - if (1 == components.count()) { - result = components.first(); - defaultComponentId = result; - } - - qDebug() << "Default compId: " << result; - - return result; -} - -QList UASParameterDataModel::getComponentForOnboardParam(const QString& parameter) const -{ - QList components; - // Iterate through all components - foreach (int comp, onboardParameters.keys()) - { - if (onboardParameters.value(comp)->contains(parameter)) - components.append(comp); - } - - return components; -} - -void UASParameterDataModel::forgetAllOnboardParams() -{ - onboardParameters.clear(); -} - -void UASParameterDataModel::clearAllPendingParams() -{ - QList compIds = pendingParameters.keys(); - foreach (int compId , compIds) { - QMap* compParams = pendingParameters.value(compId); - QList paramNames = compParams->keys(); - foreach (QString paramName, paramNames) { - //remove this item from pending status and broadcast update - removePendingParam(compId,paramName); - } - } - -} - -void UASParameterDataModel::readUpdateParamsFromStream( QTextStream& stream) -{ - bool userWarned = false; - - while (!stream.atEnd()) { - QString line = stream.readLine(); - if (!line.startsWith("#")) { - QStringList wpParams = line.split("\t"); - int lineMavId = wpParams.at(0).toInt(); - if (wpParams.size() == 5) { - // Only load parameters for right mav - if (!userWarned && (uasId != lineMavId)) { - //TODO warn the user somehow ?? Appears these are saved currently with mav ID 0 but mav ID is often nonzero? - QString msg = tr("The parameters in the stream have been saved from system %1, but the currently selected system has the ID %2.").arg(lineMavId).arg(uasId); - qDebug() << msg ; - //MainWindow::instance()->showCriticalMessage( - // tr("Parameter loading warning"), - // tr("The parameters from the file %1 have been saved from system %2, but the currently selected system has the ID %3. If this is unintentional, please click on to revert to the parameters that are currently onboard").arg(fileName).arg(wpParams.at(0).toInt()).arg(mav->getUASID())); - userWarned = true; - } - - bool changed = false; - int componentId = wpParams.at(1).toInt(); - QString key = wpParams.at(2); - QString valStr = wpParams.at(3); - double dblVal = wpParams.at(3).toDouble(); - uint paramType = wpParams.at(4).toUInt(); - - - if (!onboardParameters.contains(componentId)) { - addComponent(componentId); - changed = true; - } - else { - QMap* compParams = onboardParameters.value(componentId); - if (!compParams->contains(key) || - (fabs((static_cast(compParams->value(key).toDouble())) - (dblVal)) > 2.0f * FLT_EPSILON)) { - changed = true; - qDebug() << "Changed" << key << "VAL" << dblVal; - } - } - - - if (changed) { - switch (paramType) - { - case MAV_PARAM_TYPE_REAL32: - updatePendingParamWithValue(componentId,key,QVariant(valStr.toFloat())); - break; - case MAV_PARAM_TYPE_UINT32: - updatePendingParamWithValue(componentId,key, QVariant(valStr.toUInt())); - break; - case MAV_PARAM_TYPE_INT32: - updatePendingParamWithValue(componentId,key,QVariant(valStr.toInt())); - break; - case MAV_PARAM_TYPE_INT8: - updatePendingParamWithValue(componentId,key,QVariant((unsigned char) valStr.toUInt())); - break; - default: - qDebug() << "FAILED LOADING PARAM" << key << "UNKNOWN DATA TYPE"; - } - } - - - } - } - } - -} - -void UASParameterDataModel::writeOnboardParamsToStream( QTextStream &stream, const QString& name) -{ - stream << "# Onboard parameters for system " << name << "\n"; - stream << "#\n"; - stream << "# MAV ID COMPONENT ID PARAM NAME VALUE (FLOAT)\n"; - - // Iterate through all components, through all parameters and emit them - QMap*>::iterator i; - for (i = onboardParameters.begin(); i != onboardParameters.end(); ++i) { - // Iterate through the parameters of the component - int compid = i.key(); - QMap* comp = i.value(); - { - QMap::iterator j; - for (j = comp->begin(); j != comp->end(); ++j) - { - QString paramValue("%1"); - QString paramType("%1"); - switch ((int)j.value().type()) - { - case QVariant::Int: - paramValue = paramValue.arg(j.value().toInt()); - paramType = paramType.arg(MAV_PARAM_TYPE_INT32); - break; - case QVariant::UInt: - paramValue = paramValue.arg(j.value().toUInt()); - paramType = paramType.arg(MAV_PARAM_TYPE_UINT32); - break; - case QMetaType::Float: - // We store parameters as floats, with only 6 digits of precision guaranteed for decimal string conversion - // (see IEEE 754, 32 bit single-precision) - paramValue = paramValue.arg((double)j.value().toFloat(), 25, 'g', 6); - paramType = paramType.arg(MAV_PARAM_TYPE_REAL32); - break; - case QMetaType::QChar: - case QMetaType::Char: - // see UAS::setParameter() - paramValue = paramValue.arg((unsigned char)j.value().toUInt()); - paramType = paramType.arg(MAV_PARAM_TYPE_INT8); - break; - default: - qCritical() << "ABORTED PARAM WRITE TO FILE, PARAM '" << j.key() << "' NO VALID QVARIANT TYPE" << j.value(); - return; - } - stream << this->uasId << "\t" << compid << "\t" << j.key() << "\t" << paramValue << "\t" << paramType << "\n"; - stream.flush(); - } - } - } -} - - -void UASParameterDataModel::loadParamMetaInfoFromStream(QTextStream& stream) -{ - - // First line is header - // there might be more lines, but the first - // line is assumed to be at least header - QString header = stream.readLine(); - - // Ignore top-level comment lines - while (header.startsWith('#') || header.startsWith('/') - || header.startsWith('=') || header.startsWith('^')) - { - header = stream.readLine(); - } - - bool charRead = false; - QString separator = ""; - QList sepCandidates; - sepCandidates << '\t'; - sepCandidates << ','; - sepCandidates << ';'; - //sepCandidates << ' '; - sepCandidates << '~'; - sepCandidates << '|'; - - // Iterate until separator is found - // or full header is parsed - for (int i = 0; i < header.length(); i++) - { - if (sepCandidates.contains(header.at(i))) - { - // Separator found - if (charRead) - { - separator += header[i]; - } - } - else - { - // Char found - charRead = true; - // If the separator is not empty, this char - // has been read after a separator, so detection - // is now complete - if (separator != "") break; - } - } - - bool stripFirstSeparator = false; - bool stripLastSeparator = false; - - // Figure out if the lines start with the separator (e.g. wiki syntax) - if (header.startsWith(separator)) stripFirstSeparator = true; - - // Figure out if the lines end with the separator (e.g. wiki syntax) - if (header.endsWith(separator)) stripLastSeparator = true; - - QString out = separator; - out.replace("\t", ""); - //qDebug() << " Separator: \"" << out << "\""; - //qDebug() << "READING CSV:" << header; - - - // Read data - while (!stream.atEnd()) - { - QString line = stream.readLine(); - - //qDebug() << "LINE PRE-STRIP" << line; - - // Strip separtors if necessary - if (stripFirstSeparator) line.remove(0, separator.length()); - if (stripLastSeparator) line.remove(line.length()-separator.length(), line.length()-1); - - //qDebug() << "LINE POST-STRIP" << line; - - // Keep empty parts here - we still have to act on them - QStringList parts = line.split(separator, QString::KeepEmptyParts); - - // Each line is: - // variable name, Min, Max, Default, Multiplier, Enabled (0 = no, 1 = yes), Comment - - - // Fill in min, max and default values - if (parts.count() > 1) - { - // min - paramMin.insert(parts.at(0).trimmed(), parts.at(1).toDouble()); - } - if (parts.count() > 2) - { - // max - paramMax.insert(parts.at(0).trimmed(), parts.at(2).toDouble()); - } - if (parts.count() > 3) - { - // default - paramDefault.insert(parts.at(0).trimmed(), parts.at(3).toDouble()); - } - // IGNORING 4 and 5 for now - if (parts.count() > 6) - { - // tooltip - paramDescriptions.insert(parts.at(0).trimmed(), parts.at(6).trimmed()); - //qDebug() << "PARAM META:" << parts.at(0).trimmed(); - } - } -} - - void UASParameterDataModel::setParamDescriptions(const QMap& paramInfo) -{ - if (paramInfo.isEmpty()) { - qDebug() << __FILE__ << ":" << __LINE__ << "setParamDescriptions with empty"; - } - - paramDescriptions = paramInfo; -} - -bool UASParameterDataModel::isValueGreaterThanParamMax(const QString& paramName, double dblVal) -{ - if (paramMax.contains(paramName)) { - if (dblVal > paramMax.value(paramName)) - return true; - } - - return false; -} - -bool UASParameterDataModel::isValueLessThanParamMin(const QString& paramName, double dblVal) -{ - if (paramMin.contains(paramName)) { - if (dblVal < paramMin.value(paramName)) - return true; - } - - return false; - } - diff --git a/src/uas/UASParameterDataModel.h b/src/uas/UASParameterDataModel.h deleted file mode 100644 index c0b5b76379ce2185252310ae74b761c834dac60e..0000000000000000000000000000000000000000 --- a/src/uas/UASParameterDataModel.h +++ /dev/null @@ -1,136 +0,0 @@ -#ifndef UASPARAMETERDATAMODEL_H -#define UASPARAMETERDATAMODEL_H - -#include -#include -#include - -class QTextStream; - -class UASParameterDataModel : public QObject -{ - Q_OBJECT -public: - explicit UASParameterDataModel(QObject *parent = 0); - - - //Parameter meta info - bool isParamMinKnown(const QString& param) { return paramMin.contains(param); } - virtual bool isValueLessThanParamMin(const QString& param, double dblVal); - - bool isParamMaxKnown(const QString& param) { return paramMax.contains(param); } - virtual bool isValueGreaterThanParamMax(const QString& param, double dblVal); - - bool isParamDefaultKnown(const QString& param) { return paramDefault.contains(param); } - double getParamMin(const QString& param) { return paramMin.value(param, 0.0f); } - double getParamMax(const QString& param) { return paramMax.value(param, 0.0f); } - double getParamDefault(const QString& param) { return paramDefault.value(param, 0.0f); } - virtual QString getParamDescription(const QString& param) { return paramDescriptions.value(param, ""); } - virtual void setParamDescriptions(const QMap& paramInfo); - - /** @brief Get the default component ID for the UAS */ - virtual int getDefaultComponentId(); - - //TODO make this method protected? - /** @brief Ensure that the data model is aware of this component - * @param compId Id of the component - */ - virtual void addComponent(int compId); - - /** - * @brief Return a list of all components for this parameter name - * @param parameter The parameter string to search for - * @return A list with all components, can be potentially empty - */ - virtual QList getComponentForOnboardParam(const QString& parameter) const; - - - /** @brief clears every parameter for every loaded component */ - virtual void forgetAllOnboardParams(); - - - - /** @brief add this parameter to pending list iff it has changed from onboard value - * @return true if the parameter is now pending - */ - virtual bool updatePendingParamWithValue(int componentId, const QString &key, const QVariant &value, bool forceSend = false); - virtual void handleParamUpdate(int componentId, const QString& key, const QVariant& value); - virtual bool getOnboardParamValue(int componentId, const QString& key, QVariant& value) const; - - virtual bool isParamChangePending(int componentId,const QString& key); - - QMap* getPendingParamsForComponent(int componentId) { - return pendingParameters.value(componentId); - } - - QMap* getOnboardParamsForComponent(int componentId) { - return onboardParameters.value(componentId); - } - - QMap* >* getAllPendingParams() { - return &pendingParameters; - } - - QMap* >* getAllOnboardParams() { - return &onboardParameters; - } - - /** @brief return a count of all pending parameters */ - virtual int countPendingParams(); - - /** @brief return a count of all onboard parameters we've received */ - virtual int countOnboardParams(); - - virtual void writeOnboardParamsToStream(QTextStream &stream, const QString& uasName); - virtual void readUpdateParamsFromStream(QTextStream &stream); - - virtual void loadParamMetaInfoFromStream(QTextStream& stream); - - void setUASID(int anId) { this->uasId = anId; } - -protected: - /** @brief set the confirmed value of a parameter in the onboard params list */ - virtual void setOnboardParam(int componentId, const QString& key, const QVariant& value); - - /** @brief Save the parameter with a the type specified in the QVariant as fixed */ - void setParamWithTypeInMap(int compId, const QString& key, const QVariant &value, QMap* >& map); - - /** @brief Write a new pending parameter value that may be eventually sent to the UAS */ - virtual void setPendingParam(int componentId, const QString &key, const QVariant& value); - /** @brief remove a parameter from the pending list */ - virtual void removePendingParam(int compId, const QString &key); - - -signals: - - /** @brief We've received an update of a parameter's value */ - void parameterUpdated(int compId, QString paramName, QVariant value); - - /** @brief Notifies listeners that a param was added to or removed from the pending list */ - void pendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending); - - void allPendingParamsCommitted(); ///< All pending params have been committed to the MAV - -public slots: - - virtual void clearAllPendingParams(); - -protected: - int defaultComponentId; ///< Cached default component ID - - int uasId; ///< The UAS / MAV to which this data model pertains - QMap* > pendingParameters; ///< Changed values that have not yet been transmitted to the UAS, by component ID - QMap* > onboardParameters; ///< All parameters confirmed to be stored onboard the UAS, by component ID - - // Tooltip data structures - QMap paramDescriptions; ///< Tooltip values - - // Min / Default / Max data structures - QMap paramMin; ///< Minimum param values - QMap paramDefault; ///< Default param values - QMap paramMax; ///< Minimum param values - - -}; - -#endif // UASPARAMETERDATAMODEL_H diff --git a/src/uas/UASWaypointManager.cc b/src/uas/UASWaypointManager.cc index f3699489fadc15a7f8baadca3d406312c38fdd27..5a05ec7031295e3195d71d1b72b5abb16bdd6653 100644 --- a/src/uas/UASWaypointManager.cc +++ b/src/uas/UASWaypointManager.cc @@ -585,8 +585,11 @@ void UASWaypointManager::loadWaypoints(const QString &loadFile) Waypoint *t = new Waypoint(); if(t->load(in)) { - t->setId(waypointsEditable.count()); - waypointsEditable.insert(waypointsEditable.count(), t); + //Use the existing function to add waypoints to the map instead of doing it manually + //Indeed, we should connect our waypoints to the map in order to synchronize them + //t->setId(waypointsEditable.count()); + // waypointsEditable.insert(waypointsEditable.count(), t); + addWaypointEditable(t, false); } else { diff --git a/src/ui/AudioOutputWidget.cc b/src/ui/AudioOutputWidget.cc deleted file mode 100644 index bf157eb96d4272b89a4b2e49a0f958749756b11b..0000000000000000000000000000000000000000 --- a/src/ui/AudioOutputWidget.cc +++ /dev/null @@ -1,56 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Implementation of AudioOutputWidget - * @author Lorenz Meier - * - */ - -#include "AudioOutputWidget.h" -#include "ui_AudioOutputWidget.h" - -AudioOutputWidget::AudioOutputWidget(QWidget *parent) : - QWidget(parent), - m_ui(new Ui::AudioOutputWidget) -{ - m_ui->setupUi(this); -} - -AudioOutputWidget::~AudioOutputWidget() -{ - delete m_ui; -} - -void AudioOutputWidget::changeEvent(QEvent *e) -{ - QWidget::changeEvent(e); - switch (e->type()) { - case QEvent::LanguageChange: - m_ui->retranslateUi(this); - break; - default: - break; - } -} diff --git a/src/ui/AudioOutputWidget.ui b/src/ui/AudioOutputWidget.ui deleted file mode 100644 index a6b221191e41c503ceaf606a7c99b0b12f05620d..0000000000000000000000000000000000000000 --- a/src/ui/AudioOutputWidget.ui +++ /dev/null @@ -1,69 +0,0 @@ - - - AudioOutputWidget - - - - 0 - 0 - 195 - 95 - - - - Form - - - - 6 - - - - - Qt::Horizontal - - - - 53 - 20 - - - - - - - - Qt::Vertical - - - - 180 - 43 - - - - - - - - Mute - - - - :/files/images/status/audio-volume-muted.svg:/files/images/status/audio-volume-muted.svg - - - - 16 - 16 - - - - - - - - - - - diff --git a/src/ui/DebugConsole.cc b/src/ui/DebugConsole.cc index ad8b37b509b129f91848ffd1b40db84a5da1764c..dfc2997475cba6b60ac3a5f664bd987727531d7d 100644 --- a/src/ui/DebugConsole.cc +++ b/src/ui/DebugConsole.cc @@ -91,8 +91,7 @@ DebugConsole::DebugConsole(QWidget *parent) : // Connect to UAS manager to get notified about new UAS connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(uasCreated(UASInterface*))); - // Get a list of all existing links - links = QList(); + // Add all existing links foreach (LinkInterface* link, LinkManager::instance()->getLinks()) { addLink(link); } @@ -171,37 +170,52 @@ void DebugConsole::uasCreated(UASInterface* uas) */ void DebugConsole::addLink(LinkInterface* link) { - // Add link to link list - links.insert(link->getId(), link); + // Add link to list + + foreach (SharedLinkInterface sharedLink, _links) { + Q_ASSERT(sharedLink.data() != link); + } + _links.append(LinkManager::instance()->sharedPointerForLink(link)); - m_ui->linkComboBox->insertItem(link->getId(), link->getName()); + m_ui->linkComboBox->insertItem(link->getMavlinkChannel(), link->getName()); // Set new item as current - m_ui->linkComboBox->setCurrentIndex(qMax(0, links.size() - 1)); + m_ui->linkComboBox->setCurrentIndex(qMax(0, _links.size() - 1)); linkSelected(m_ui->linkComboBox->currentIndex()); // Register for name changes connect(link, SIGNAL(nameChanged(QString)), this, SLOT(updateLinkName(QString)), Qt::UniqueConnection); - connect(LinkManager::instance(), &LinkManager::linkDeleted, this, &DebugConsole::removeLink, Qt::UniqueConnection); + connect(LinkManager::instance(), &LinkManager::linkDisconnected, this, &DebugConsole::removeLink, Qt::UniqueConnection); } -void DebugConsole::removeLink(LinkInterface* const linkInterface) +void DebugConsole::removeLink(LinkInterface* const link) { - // Add link to link list - if (links.contains(linkInterface)) { - int linkIndex = links.indexOf(linkInterface); - - links.removeAt(linkIndex); - - m_ui->linkComboBox->removeItem(linkIndex); - } // Now if this was the current link, clean up some stuff. - if (linkInterface == currLink) + if (link == currLink) { + disconnect(currLink, &LinkInterface::bytesReceived, this, &DebugConsole::receiveBytes); + disconnect(currLink, &LinkInterface::connected, this, &DebugConsole::_linkConnected); + disconnect(currLink, &LinkInterface::communicationUpdate, this, &DebugConsole::linkStatusUpdate); + // Like disable the update time for the UI. snapShotTimer.stop(); - + currLink = NULL; } + + bool found = false; + int linkIndex; + for (linkIndex=0; linkIndex<_links.count(); linkIndex++) { + if (_links[linkIndex].data() == link) { + found = true; + _links.removeAt(linkIndex); + break; + } + } + Q_UNUSED(found); + Q_ASSERT(found); + + m_ui->linkComboBox->removeItem(linkIndex); + } void DebugConsole::linkStatusUpdate(const QString& name,const QString& text) { @@ -211,23 +225,14 @@ void DebugConsole::linkStatusUpdate(const QString& name,const QString& text) m_ui->receiveText->ensureCursorVisible(); } -void DebugConsole::linkSelected(int linkId) +void DebugConsole::linkSelected(int linkIndex) { - // Disconnect - if (currLink) - { - disconnect(currLink, SIGNAL(bytesReceived(LinkInterface*,QByteArray)), this, SLOT(receiveBytes(LinkInterface*, QByteArray))); - disconnect(currLink, &LinkInterface::connected, this, &DebugConsole::_linkConnected); - disconnect(currLink,SIGNAL(communicationUpdate(QString,QString)),this,SLOT(linkStatusUpdate(QString,QString))); - snapShotTimer.stop(); - } - // Clear data m_ui->receiveText->clear(); // Connect new link - if (linkId != -1) { - currLink = links[linkId]; + if (linkIndex != -1) { + currLink = _links[linkIndex].data(); connect(currLink, SIGNAL(bytesReceived(LinkInterface*,QByteArray)), this, SLOT(receiveBytes(LinkInterface*, QByteArray))); disconnect(currLink, &LinkInterface::connected, this, &DebugConsole::_linkConnected); connect(currLink,SIGNAL(communicationUpdate(QString,QString)),this,SLOT(linkStatusUpdate(QString,QString))); @@ -241,13 +246,21 @@ void DebugConsole::linkSelected(int linkId) */ void DebugConsole::updateLinkName(QString name) { - // Set name if signal came from a link LinkInterface* link = qobject_cast(sender()); - if((link != NULL) && (links.contains(link))) - { - const qint16 &linkIndex(links.indexOf(link)); - m_ui->linkComboBox->setItemText(linkIndex,name); - } + if (link != NULL) { + bool found = false; + int linkIndex; + for (linkIndex=0; linkIndex<_links.count(); linkIndex++) { + if (_links[linkIndex].data() == link) { + found = true; + break; + } + } + + if (found) { + m_ui->linkComboBox->setItemText(linkIndex, name); + } + } } void DebugConsole::setAutoHold(bool hold) diff --git a/src/ui/DebugConsole.h b/src/ui/DebugConsole.h index 6fcadf94e51795d8558e89c6aefbec96a331e332..6a4849157abf3cd4ba72667bbd99e309ede65e65 100644 --- a/src/ui/DebugConsole.h +++ b/src/ui/DebugConsole.h @@ -116,7 +116,6 @@ protected: /** @brief Cycle through the command history */ void cycleCommandHistory(bool up); - QList links; LinkInterface* currLink; bool holdOn; ///< Hold current view, ignore new data @@ -150,6 +149,11 @@ private slots: private: /** @brief Set connection state of the current link */ void _setConnectionState(bool); + + /// List of all links we are keeping track of. We keep SharedLinkInterface objects + /// which are QSharedPointer's in order to maintain reference counts. Otherwise signals + /// can get out of order and the link may be deleted before we clean up our side. + QList _links; Ui::DebugConsole *m_ui; }; diff --git a/src/ui/DebugConsole.ui b/src/ui/DebugConsole.ui index 391778a1159ab6ba02aa843c7b53575b55ced98d..68bf2ee63dec762fc5b5bda41a3baf56b03876bb 100644 --- a/src/ui/DebugConsole.ui +++ b/src/ui/DebugConsole.ui @@ -71,7 +71,7 @@ - :/files/images/actions/go-down.svg + :/res/DownArrow true @@ -97,7 +97,7 @@ - :/files/images/actions/go-up.svg + :/res/UpArrow true @@ -270,7 +270,7 @@ - :/files/images/actions/list-add.svg:/files/images/actions/list-add.svg + :/res/PlusSign:/res/PlusSign @@ -292,10 +292,6 @@ Send - - - :/files/images/devices/network-wireless.svg:/files/images/devices/network-wireless.svg - diff --git a/src/ui/HDDisplay.cc b/src/ui/HDDisplay.cc index e32d116bd36248b974541f5b355ac17e88db0c35..6a513b62bafb29c13345090c03252b8619d7ec52 100644 --- a/src/ui/HDDisplay.cc +++ b/src/ui/HDDisplay.cc @@ -117,7 +117,7 @@ HDDisplay::HDDisplay(const QStringList &plotList, QString title, QWidget *parent //connect(refreshTimer, SIGNAL(timeout()), this, SLOT(paintGL())); fontDatabase = QFontDatabase(); - const QString fontFileName = ":/general/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app + const QString fontFileName = ":/res/fonts/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app const QString fontFamilyName = "Bitstream Vera Sans"; if(!QFile::exists(fontFileName)) qDebug() << "ERROR! font file: " << fontFileName << " DOES NOT EXIST!"; @@ -473,16 +473,17 @@ void HDDisplay::renderOverlay() */ void HDDisplay::setActiveUAS(UASInterface* uas) { - if (!uas) - return; // Disconnect any previously connected active UAS if (this->uas != NULL) { removeSource(this->uas); + this->uas = NULL; } - // Now connect the new UAS - addSource(uas); - this->uas = uas; + if (uas) { + // Now connect the new UAS + addSource(uas); + this->uas = uas; + } } /** diff --git a/src/ui/HSIDisplay.cc b/src/ui/HSIDisplay.cc index d865dcb0d72809788078fe6e9515ed2b56c6992f..8b233963ee0707741b23dacaf48c35548a077b09 100644 --- a/src/ui/HSIDisplay.cc +++ b/src/ui/HSIDisplay.cc @@ -94,6 +94,7 @@ HSIDisplay::HSIDisplay(QWidget *parent) : uiZSetCoordinate(0.0f), uiYawSet(0.0f), metricWidth(4.0), + crosstrackError(std::numeric_limits::quiet_NaN()), xCenterPos(0), yCenterPos(0), positionLock(false), @@ -412,9 +413,13 @@ void HSIDisplay::renderOverlay() paintText(tr("%1 m/s").arg(speed, 5, 'f', 2, '0'), valueColor, 2.2f, 12, topMargin+2, &painter); // Draw crosstrack error to top right - float crossTrackError = 0; paintText(tr("XTRACK"), labelColor, 2.2f, 54, topMargin+2, &painter); - paintText(tr("%1 m").arg(crossTrackError, 5, 'f', 2, '0'), valueColor, 2.2f, 67, topMargin+2, &painter); + if (!isnan(crosstrackError)) { + paintText(tr("%1 m").arg(crosstrackError, 5, 'f', 2, '0'), valueColor, 2.2f, 67, topMargin+2, &painter); + } else { + paintText(tr("-- m"), valueColor, 2.2f, 67, topMargin+2, &painter); + } + // Draw position to bottom left if (localAvailable > 0) @@ -945,6 +950,8 @@ void HSIDisplay::setActiveUAS(UASInterface* uas) disconnect(this->uas, SIGNAL(laserStatusChanged(bool,bool,bool)), this, SLOT(updateLaserStatus(bool,bool,bool))); disconnect(this->uas, SIGNAL(groundTruthSensorStatusChanged(bool,bool,bool)), this, SLOT(updateGroundTruthSensorStatus(bool,bool,bool))); disconnect(this->uas, SIGNAL(actuatorStatusChanged(bool,bool,bool)), this, SLOT(updateActuatorStatus(bool,bool,bool))); + disconnect(this->uas, &UASInterface::navigationControllerErrorsChanged, + this, &HSIDisplay::UpdateNavErrors); } if (uas) @@ -1003,6 +1010,8 @@ void HSIDisplay::setActiveUAS(UASInterface* uas) this, SLOT(updateGroundTruthSensorStatus(bool,bool,bool))); connect(uas, SIGNAL(actuatorStatusChanged(bool,bool,bool)), this, SLOT(updateActuatorStatus(bool,bool,bool))); + connect(uas, &UASInterface::navigationControllerErrorsChanged, + this, &HSIDisplay::UpdateNavErrors); statusClearTimer.start(3000); } else @@ -1159,6 +1168,15 @@ void HSIDisplay::updateLocalPosition(UASInterface*, double x, double y, double z localAvailable = usec; } +void HSIDisplay::UpdateNavErrors(UASInterface *uas, double altitudeError, double airspeedError, double crosstrackError) +{ + Q_UNUSED(altitudeError); + Q_UNUSED(airspeedError); + if (this->uas == uas) { + this->crosstrackError = crosstrackError; + } +} + void HSIDisplay::updateGlobalPosition(UASInterface*, double lat, double lon, double altAMSL, double altWGS84, quint64 usec) { Q_UNUSED(altAMSL); diff --git a/src/ui/HSIDisplay.h b/src/ui/HSIDisplay.h index 4185db79e67e2a7e09180a5fd645354d6d953af4..a99eab7850a00ded1817d0c5e6a7d5f99824410a 100644 --- a/src/ui/HSIDisplay.h +++ b/src/ui/HSIDisplay.h @@ -62,6 +62,7 @@ public slots: void updateLocalPosition(UASInterface*, double x, double y, double z, quint64 usec); void updateGlobalPosition(UASInterface*, double lat, double lon, double altAMSL, double altWGS84, quint64 usec); void updateSpeed(UASInterface* uas, double vx, double vy, double vz, quint64 time); + void UpdateNavErrors(UASInterface *uas, double altitudeError, double airspeedError, double crosstrackError); void updatePositionLock(UASInterface* uas, bool lock); void updateAttitudeControllerEnabled(bool enabled); void updatePositionXYControllerEnabled(bool enabled); @@ -341,6 +342,9 @@ protected: float uiYawSet; ///< Yaw Setpoint wanted by the UI double metricWidth; ///< Width the instrument represents in meters (the width of the ground shown by the widget) + // Navigation parameters + double crosstrackError; ///< The crosstrack error (m) reported by the UAS + // float xCenterPos; ///< X center of instrument in virtual coordinates float yCenterPos; ///< Y center of instrument in virtual coordinates diff --git a/src/ui/HUD.cc b/src/ui/HUD.cc index 24dc75de233161f602cd730e9c4b5c4e51f7d04a..58c457e7f7a7fd29328ee083ba52c8cc2e0a72a4 100644 --- a/src/ui/HUD.cc +++ b/src/ui/HUD.cc @@ -141,7 +141,7 @@ HUD::HUD(int width, int height, QWidget* parent) QWidget::resize(this->width(), this->height()); fontDatabase = QFontDatabase(); - const QString fontFileName = ":/general/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app + const QString fontFileName = ":/res/fonts/vera.ttf"; ///< Font file is part of the QRC file and compiled into the app const QString fontFamilyName = "Bitstream Vera Sans"; if(!QFile::exists(fontFileName)) qDebug() << "ERROR! font file: " << fontFileName << " DOES NOT EXIST!"; diff --git a/src/ui/MainWindow.cc b/src/ui/MainWindow.cc index 5576a1de4246cf9e2bbc0fd514a49ac1b458047e..d035870866635cf8d09b80793f5cefe14bd122b7 100644 --- a/src/ui/MainWindow.cc +++ b/src/ui/MainWindow.cc @@ -40,17 +40,18 @@ This file is part of the QGROUNDCONTROL project #include #include "QGC.h" -#include "MAVLinkSimulationLink.h" #include "SerialLink.h" #include "MAVLinkProtocol.h" #include "QGCWaypointListMulti.h" #include "MainWindow.h" +#ifndef __android__ #include "JoystickWidget.h" +#endif #include "GAudioOutput.h" -#include "QGCToolWidget.h" #include "QGCMAVLinkLogPlayer.h" #include "SettingsDialog.h" #include "QGCMapTool.h" +#include "QGCMapDisplay.h" #include "MAVLinkDecoder.h" #include "QGCMAVLinkMessageSender.h" #include "QGCRGBDView.h" @@ -59,7 +60,7 @@ This file is part of the QGROUNDCONTROL project #include "Linecharts.h" #include "QGCTabbedInfoView.h" #include "UASRawStatusView.h" -#include "PrimaryFlightDisplay.h" +#include "QGCFlightDisplay.h" #include "SetupView.h" #include "SerialSettingsDialog.h" #include "terminalconsole.h" @@ -79,6 +80,26 @@ This file is part of the QGROUNDCONTROL project #include "LogCompressor.h" +// Pixel size, instead of a physical thing is actually a philosophical question when +// it comes to Qt. Fonts are that and some heavy Kabalistic Voodoo added to the mix. +// The values below came from actually measuring the elements on the screen on these +// devices. I have yet to find a constant from Qt so these things can be properly +// computed at runtime. + +#if defined(Q_OS_OSX) +double MainWindow::_pixelFactor = 1.0; +double MainWindow::_fontFactor = 1.0; +#elif defined(Q_OS_WIN) +double MainWindow::_pixelFactor = 0.86; +double MainWindow::_fontFactor = 0.63; +#elif defined(__android__) +double MainWindow::_pixelFactor = 2.0; +double MainWindow::_fontFactor = 1.23; +#elif defined(Q_OS_LINUX) +double MainWindow::_pixelFactor = 1.0; +double MainWindow::_fontFactor = 0.85; +#endif + /// The key under which the Main Window settings are saved const char* MAIN_SETTINGS_GROUP = "QGC_MAINWINDOW"; @@ -125,8 +146,8 @@ void MainWindow::deleteInstance(void) MainWindow::MainWindow(QSplashScreen* splashScreen) : _autoReconnect(false) , _lowPowerMode(false) + , _showStatusBar(false) , _centerStackActionGroup(new QActionGroup(this)) - , _simulationLink(NULL) , _centralLayout(NULL) , _currentViewWidget(NULL) , _splashScreen(splashScreen) @@ -144,11 +165,12 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) emit initStatusChanged(tr("Setting up user interface"), Qt::AlignLeft | Qt::AlignBottom, QColor(62, 93, 141)); _ui.setupUi(this); // Make sure tool bar elements all fit before changing minimum width - setMinimumWidth(926); + setMinimumWidth(1008); configureWindowName(); // Setup central widget with a layout to hold the views _centralLayout = new QVBoxLayout(); + _centralLayout->setContentsMargins(0,0,0,0); centralWidget()->setLayout(_centralLayout); // Set dock options setDockOptions(AnimatedDocks | AllowTabbedDocks | AllowNestedDocks); @@ -157,10 +179,16 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) // Qt 4 on Ubuntu does place the native menubar correctly so on Linux we revert back to in-window menu bar. // TODO: Check that this is still necessary on Qt5 on Ubuntu + #ifdef Q_OS_LINUX menuBar()->setNativeMenuBar(false); #endif - + + // On Mobile devices, we don't want any main menus at all. +#ifdef __mobile__ + menuBar()->setNativeMenuBar(false); +#endif + #ifdef UNITTEST_BUILD QAction* qmlTestAction = new QAction("Test QML palette and controls", NULL); connect(qmlTestAction, &QAction::triggered, this, &MainWindow::_showQmlTestWidget); @@ -190,8 +218,9 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) connectCommonActions(); // Connect user interface devices emit initStatusChanged(tr("Initializing joystick interface"), Qt::AlignLeft | Qt::AlignBottom, QColor(62, 93, 141)); +#ifndef __android__ joystick = new JoystickInput(); - +#endif #ifdef QGC_MOUSE_ENABLED_WIN emit initStatusChanged(tr("Initializing 3D mouse interface"), Qt::AlignLeft | Qt::AlignBottom, QColor(62, 93, 141)); mouseInput = new Mouse3DInput(this); @@ -205,6 +234,10 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) connect(this, SIGNAL(x11EventOccured(XEvent*)), mouse, SLOT(handleX11Event(XEvent*))); #endif //QGC_MOUSE_ENABLED_LINUX + // These also cause the screen to redraw so we need to update any OpenGL canvases in QML controls + connect(LinkManager::instance(), &LinkManager::linkConnected, this, &MainWindow::_linkStateChange); + connect(LinkManager::instance(), &LinkManager::linkDisconnected, this, &MainWindow::_linkStateChange); + // Connect link if (_autoReconnect) { @@ -216,6 +249,8 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) emit initStatusChanged(tr("Restoring last view state"), Qt::AlignLeft | Qt::AlignBottom, QColor(62, 93, 141)); // Restore the window setup _loadCurrentViewState(); +#ifndef __android__ + // Restore the window position and size emit initStatusChanged(tr("Restoring last window size"), Qt::AlignLeft | Qt::AlignBottom, QColor(62, 93, 141)); if (settings.contains(_getWindowGeometryKey())) @@ -225,15 +260,18 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) else { // Adjust the size - const int screenWidth = QApplication::desktop()->width(); - const int screenHeight = QApplication::desktop()->height(); - if (screenWidth < 1500) + QScreen* scr = QApplication::primaryScreen(); + QSize scrSize = scr->availableSize(); + if (scrSize.width() <= 1280) { - resize(screenWidth, screenHeight - 80); + resize(scrSize.width(), scrSize.height()); } else { - resize(screenWidth*0.67f, qMin(screenHeight, (int)(screenWidth*0.67f*0.67f))); + int w = scrSize.width() > 1600 ? 1600 : scrSize.width(); + int h = scrSize.height() > 800 ? 800 : scrSize.height(); + resize(w, h); + move((scrSize.width() - w) / 2, (scrSize.height() - h) / 2); } } @@ -250,29 +288,28 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) } // And that they will stay checked properly after user input - QObject::connect(_ui.actionFullscreen, SIGNAL(triggered()), this, SLOT(fullScreenActionItemCallback())); - QObject::connect(_ui.actionNormal, SIGNAL(triggered()), this, SLOT(normalActionItemCallback())); + connect(_ui.actionFullscreen, &QAction::triggered, this, &MainWindow::fullScreenActionItemCallback); + connect(_ui.actionNormal, &QAction::triggered, this, &MainWindow::normalActionItemCallback); +#endif + + connect(_ui.actionStatusBar, &QAction::triggered, this, &MainWindow::showStatusBarCallback); // Set OS dependent keyboard shortcuts for the main window, non OS dependent shortcuts are set in MainWindow.ui #ifdef Q_OS_MACX _ui.actionSetup->setShortcut(QApplication::translate("MainWindow", "Meta+1", 0)); - _ui.actionMissionView->setShortcut(QApplication::translate("MainWindow", "Meta+2", 0)); - _ui.actionFlightView->setShortcut(QApplication::translate("MainWindow", "Meta+3", 0)); - _ui.actionEngineersView->setShortcut(QApplication::translate("MainWindow", "Meta+4", 0)); - _ui.actionGoogleEarthView->setShortcut(QApplication::translate("MainWindow", "Meta+5", 0)); - _ui.actionLocal3DView->setShortcut(QApplication::translate("MainWindow", "Meta+6", 0)); - _ui.actionTerminalView->setShortcut(QApplication::translate("MainWindow", "Meta+7", 0)); - _ui.actionSimulationView->setShortcut(QApplication::translate("MainWindow", "Meta+8", 0)); + _ui.actionPlan->setShortcut(QApplication::translate("MainWindow", "Meta+2", 0)); + _ui.actionFlight->setShortcut(QApplication::translate("MainWindow", "Meta+3", 0)); + _ui.actionAnalyze->setShortcut(QApplication::translate("MainWindow", "Meta+4", 0)); + _ui.actionTerminalView->setShortcut(QApplication::translate("MainWindow", "Meta+5", 0)); + _ui.actionSimulationView->setShortcut(QApplication::translate("MainWindow", "Meta+6", 0)); _ui.actionFullscreen->setShortcut(QApplication::translate("MainWindow", "Meta+Return", 0)); #else _ui.actionSetup->setShortcut(QApplication::translate("MainWindow", "Ctrl+1", 0)); - _ui.actionMissionView->setShortcut(QApplication::translate("MainWindow", "Ctrl+2", 0)); - _ui.actionFlightView->setShortcut(QApplication::translate("MainWindow", "Ctrl+3", 0)); - _ui.actionEngineersView->setShortcut(QApplication::translate("MainWindow", "Ctrl+4", 0)); - _ui.actionGoogleEarthView->setShortcut(QApplication::translate("MainWindow", "Ctrl+5", 0)); - _ui.actionLocal3DView->setShortcut(QApplication::translate("MainWindow", "Ctrl+6", 0)); - _ui.actionTerminalView->setShortcut(QApplication::translate("MainWindow", "Ctrl+7", 0)); - _ui.actionSimulationView->setShortcut(QApplication::translate("MainWindow", "Ctrl+8", 0)); + _ui.actionPlan->setShortcut(QApplication::translate("MainWindow", "Ctrl+2", 0)); + _ui.actionFlight->setShortcut(QApplication::translate("MainWindow", "Ctrl+3", 0)); + _ui.actionAnalyze->setShortcut(QApplication::translate("MainWindow", "Ctrl+4", 0)); + _ui.actionTerminalView->setShortcut(QApplication::translate("MainWindow", "Ctrl+5", 0)); + _ui.actionSimulationView->setShortcut(QApplication::translate("MainWindow", "Ctrl+6", 0)); _ui.actionFullscreen->setShortcut(QApplication::translate("MainWindow", "Ctrl+Return", 0)); #endif @@ -281,6 +318,11 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) emit initStatusChanged(tr("Done"), Qt::AlignLeft | Qt::AlignBottom, QColor(62, 93, 141)); if (!qgcApp()->runningUnitTests()) { + _ui.actionStatusBar->setChecked(_showStatusBar); + showStatusBarCallback(_showStatusBar); +#ifdef __android__ + menuBar()->hide(); +#endif show(); #ifdef Q_OS_MAC // TODO HACK @@ -302,11 +344,7 @@ MainWindow::MainWindow(QSplashScreen* splashScreen) MainWindow::~MainWindow() { - if (_simulationLink) - { - delete _simulationLink; - _simulationLink = NULL; - } +#ifndef __android__ if (joystick) { joystick->shutdown(); @@ -314,6 +352,7 @@ MainWindow::~MainWindow() delete joystick; joystick = NULL; } +#endif // Delete all UAS objects for (int i=0;i<_commsWidgetList.size();i++) { @@ -329,12 +368,7 @@ void MainWindow::resizeEvent(QResizeEvent * event) QString MainWindow::_getWindowStateKey() { - if (UASManager::instance()->getActiveUAS()) - { - return QString::number(_currentView)+"_windowstate_" + UASManager::instance()->getActiveUAS()->getAutopilotTypeName(); - } - else - return QString::number(_currentView)+"_windowstate_"; + return QString::number(_currentView)+"_windowstate_"; } QString MainWindow::_getWindowGeometryKey() @@ -342,43 +376,29 @@ QString MainWindow::_getWindowGeometryKey() return "_geometry"; } -void MainWindow::_buildCustomWidgets(void) -{ - Q_ASSERT(_customWidgets.count() == 0); - // Create custom widgets - _customWidgets = QGCToolWidget::createWidgetsFromSettings(this); - if (_customWidgets.size() > 0) - { - _ui.menuTools->addSeparator(); - } - foreach(QGCToolWidget* tool, _customWidgets) { - // Check if this widget already has a parent, do not create it in this case - QDockWidget* dock = dynamic_cast(tool->parentWidget()); - if (!dock) { - _createDockWidget(tool->getTitle(), tool->objectName(), Qt::BottomDockWidgetArea, tool); - } - } -} - void MainWindow::_createDockWidget(const QString& title, const QString& name, Qt::DockWidgetArea area, QWidget* innerWidget) { Q_ASSERT(!_mapName2DockWidget.contains(name)); - QGCDockWidget* dockWidget = new QGCDockWidget(title, this); - Q_CHECK_PTR(dockWidget); - dockWidget->setObjectName(name); - dockWidget->setVisible (false); - if (innerWidget) { - // Put inner widget inside QDockWidget - innerWidget->setParent(dockWidget); - dockWidget->setWidget(innerWidget); - innerWidget->setVisible(true); - } + // Add to menu QAction* action = new QAction(title, NULL); action->setCheckable(true); action->setData(name); connect(action, &QAction::triggered, this, &MainWindow::_showDockWidgetAction); _ui.menuTools->addAction(action); + + // Create widget + QGCDockWidget* dockWidget = new QGCDockWidget(title, action, this); + Q_CHECK_PTR(dockWidget); + dockWidget->setObjectName(name); + dockWidget->setVisible (false); + if (innerWidget) { + // Put inner widget inside QDockWidget + innerWidget->setParent(dockWidget); + dockWidget->setWidget(innerWidget); + innerWidget->setVisible(true); + } + _mapName2DockWidget[name] = dockWidget; _mapDockWidget2Action[dockWidget] = action; addDockWidget(area, dockWidget); @@ -412,7 +432,7 @@ void MainWindow::_buildCommonWidgets(void) { _uasListDockWidgetName, "Unmanned Systems", Qt::RightDockWidgetArea }, { _waypointsDockWidgetName, "Mission Plan", Qt::BottomDockWidgetArea }, { _mavlinkDockWidgetName, "MAVLink Inspector", Qt::RightDockWidgetArea }, - { _parametersDockWidgetName, "Onboard Parameters", Qt::RightDockWidgetArea }, + { _parametersDockWidgetName, "Parameter Editor", Qt::RightDockWidgetArea }, { _filesDockWidgetName, "Onboard Files", Qt::RightDockWidgetArea }, { _uasStatusDetailsDockWidgetName, "Status Details", Qt::RightDockWidgetArea }, { _mapViewDockWidgetName, "Map view", Qt::RightDockWidgetArea }, @@ -422,7 +442,7 @@ void MainWindow::_buildCommonWidgets(void) { _pfdDockWidgetName, "Primary Flight Display", Qt::RightDockWidgetArea }, { _hudDockWidgetName, "Video Downlink", Qt::RightDockWidgetArea }, { _uasInfoViewDockWidgetName, "Info View", Qt::LeftDockWidgetArea }, - { _debugConsoleDockWidgetName, "Communications Console", Qt::LeftDockWidgetArea } + { _debugConsoleDockWidgetName, "Communications Console", Qt::LeftDockWidgetArea }, }; static const size_t cDockWidgetInfo = sizeof(rgDockWidgetInfo) / sizeof(rgDockWidgetInfo[0]); @@ -430,23 +450,29 @@ void MainWindow::_buildCommonWidgets(void) const struct DockWidgetInfo* pDockInfo = &rgDockWidgetInfo[i]; _createDockWidget(pDockInfo->title, pDockInfo->name, pDockInfo->area, NULL /* no inner widget yet */); } +} - _buildCustomWidgets(); +void MainWindow::_buildPlanView(void) +{ + if (!_planView) { + _planView = new QGCMapTool(this); + _planView->setVisible(false); + } } -void MainWindow::_buildPlannerView(void) +void MainWindow::_buildExperimentalPlanView(void) { - if (!_plannerView) { - _plannerView = new QGCMapTool(this); - _plannerView->setVisible(false); + if (!_experimentalPlanView) { + _experimentalPlanView = new QGCMapDisplay(this); + _experimentalPlanView->setVisible(false); } } -void MainWindow::_buildPilotView(void) +void MainWindow::_buildFlightView(void) { - if (!_pilotView) { - _pilotView = new PrimaryFlightDisplay(this); - _pilotView->setVisible(false); + if (!_flightView) { + _flightView = new QGCFlightDisplay(this); + _flightView->setVisible(false); } } @@ -458,11 +484,11 @@ void MainWindow::_buildSetupView(void) } } -void MainWindow::_buildEngineeringView(void) +void MainWindow::_buildAnalyzeView(void) { - if (!_engineeringView) { - _engineeringView = new QGCDataPlot2D(this); - _engineeringView->setVisible(false); + if (!_analyzeView) { + _analyzeView = new QGCDataPlot2D(this); + _analyzeView->setVisible(false); } } @@ -482,26 +508,6 @@ void MainWindow::_buildTerminalView(void) } } -void MainWindow::_buildGoogleEarthView(void) -{ -#ifdef QGC_GOOGLE_EARTH_ENABLED - if (!_googleEarthView) { - _googleEarthView = new QGCGoogleEarthView(this); - _googleEarthView->setVisible(false); - } -#endif -} - -void MainWindow::_buildLocal3DView(void) -{ -#ifdef QGC_OSG_ENABLED - if (!_local3DView) { - _local3DView = Q3DWidgetFactory::get("PIXHAWK", this); - _local3DView->setVisible(false); - } -#endif -} - /// Shows or hides the specified dock widget, creating if necessary void MainWindow::_showDockWidget(const QString& name, bool show) { @@ -542,7 +548,7 @@ void MainWindow::_createInnerDockWidget(const QString& widgetName) } else if (widgetName == _mavlinkDockWidgetName) { widget = new QGCMAVLinkInspector(MAVLinkProtocol::instance(),this); } else if (widgetName == _parametersDockWidgetName) { - widget = new ParameterInterface(this); + widget = new ParameterEditorWidget(this); } else if (widgetName == _filesDockWidgetName) { widget = new QGCUASFileViewMulti(this); } else if (widgetName == _uasStatusDetailsDockWidgetName) { @@ -568,11 +574,13 @@ void MainWindow::_createInnerDockWidget(const QString& widgetName) widget = hddisplay; } else if (widgetName == _pfdDockWidgetName) { - widget = new PrimaryFlightDisplay(this); + widget = new QGCFlightDisplay(this); } else if (widgetName == _hudDockWidgetName) { widget = new HUD(320,240,this); } else if (widgetName == _uasInfoViewDockWidgetName) { - widget = new QGCTabbedInfoView(this); + QGCTabbedInfoView* pInfoView = new QGCTabbedInfoView(this); + pInfoView->addSource(mavlinkDecoder); + widget = pInfoView; } else if (widgetName == _debugConsoleDockWidgetName) { widget = new DebugConsole(this); } else { @@ -603,7 +611,7 @@ void MainWindow::_showHILConfigurationWidgets(void) if (!_mapUasId2HilDockWidget.contains(uasId)) { // Create QDockWidget - QGCDockWidget* dockWidget = new QGCDockWidget(tr("HIL Config %1").arg(uasId), this); + QGCDockWidget* dockWidget = new QGCDockWidget(tr("HIL Config %1").arg(uasId), NULL, this); Q_CHECK_PTR(dockWidget); dockWidget->setObjectName(tr("HIL_CONFIG_%1").arg(uasId)); dockWidget->setVisible (false); @@ -627,28 +635,27 @@ void MainWindow::_showHILConfigurationWidgets(void) } } -void MainWindow::fullScreenActionItemCallback() +void MainWindow::fullScreenActionItemCallback(bool) { _ui.actionNormal->setChecked(false); } -void MainWindow::normalActionItemCallback() +void MainWindow::normalActionItemCallback(bool) { _ui.actionFullscreen->setChecked(false); } +void MainWindow::showStatusBarCallback(bool checked) +{ + _showStatusBar = checked; + checked ? statusBar()->show() : statusBar()->hide(); + _ui.actionStatusBar->setText(checked ? "Hide Status Bar" : "Show Status Bar"); +} + void MainWindow::closeEvent(QCloseEvent *event) { // Disallow window close if there are active connections - bool foundConnections = false; - foreach(LinkInterface* link, LinkManager::instance()->getLinks()) { - if (link->isConnected()) { - foundConnections = true; - break; - } - } - - if (foundConnections) { + if (LinkManager::instance()->anyConnectedLinks()) { QGCMessageBox::StandardButton button = QGCMessageBox::warning( tr("QGroundControl close"), @@ -656,9 +663,7 @@ void MainWindow::closeEvent(QCloseEvent *event) QMessageBox::Yes | QMessageBox::Cancel, QMessageBox::Cancel); if (button == QMessageBox::Yes) { - foreach(LinkInterface* link, LinkManager::instance()->getLinks()) { - LinkManager::instance()->disconnectLink(link); - } + LinkManager::instance()->disconnectAll(); } else { event->ignore(); return; @@ -667,79 +672,37 @@ void MainWindow::closeEvent(QCloseEvent *event) // This will process any remaining flight log save dialogs qgcApp()->processEvents(QEventLoop::ExcludeUserInputEvents); + // Should not be any active connections - foreach(LinkInterface* link, LinkManager::instance()->getLinks()) { - Q_UNUSED(link); - Q_ASSERT(!link->isConnected()); - } + Q_ASSERT(!LinkManager::instance()->anyConnectedLinks()); + _storeCurrentViewState(); storeSettings(); UASManager::instance()->storeSettings(); event->accept(); } -void MainWindow::_createNewCustomWidget(void) -{ - if (QGCToolWidget::instances()->isEmpty()) - { - // This is the first widget - _ui.menuTools->addSeparator(); - } - QString objectName; - int customToolIndex = 0; - //Find the next unique object name that we can use - do { - ++customToolIndex; - objectName = QString("CUSTOM_TOOL_%1").arg(customToolIndex) + "DOCK"; - } while(QGCToolWidget::instances()->contains(objectName)); - QString title = tr("Custom Tool %1").arg(customToolIndex ); - QGCToolWidget* tool = new QGCToolWidget(objectName, title); - tool->resize(100, 100); - _createDockWidget(title, objectName, Qt::BottomDockWidgetArea, tool); - _mapName2DockWidget[objectName]->setVisible(true); -} - -void MainWindow::_loadCustomWidgetFromFile(void) -{ - QString fileName = QGCFileDialog::getOpenFileName( - this, tr("Load Widget File"), - QStandardPaths::writableLocation(QStandardPaths::DesktopLocation), - tr("QGroundControl Widgets (*.qgw);;All Files (*)")); - if (!fileName.isEmpty()) { - QGCToolWidget* tool = new QGCToolWidget("", "", this); - if (tool->loadSettings(fileName, true)) { - QString objectName = tool->objectName() + "DOCK"; - - _createDockWidget(tool->getTitle(), objectName, Qt::LeftDockWidgetArea, tool); - _mapName2DockWidget[objectName]->widget()->setVisible(true); - } - } - // TODO Add error dialog if widget could not be loaded -} - void MainWindow::loadSettings() { // Why the screaming? QSettings settings; settings.beginGroup(MAIN_SETTINGS_GROUP); - _autoReconnect = settings.value("AUTO_RECONNECT", _autoReconnect).toBool(); - _lowPowerMode = settings.value("LOW_POWER_MODE", _lowPowerMode).toBool(); + _autoReconnect = settings.value("AUTO_RECONNECT", _autoReconnect).toBool(); + _lowPowerMode = settings.value("LOW_POWER_MODE", _lowPowerMode).toBool(); + _showStatusBar = settings.value("SHOW_STATUSBAR", _showStatusBar).toBool(); + _fontFactor = settings.value("FONT_SIZE_FACTOR", _fontFactor).toDouble(); + _pixelFactor = settings.value("PIXEL_SIZE_FACTOR", _pixelFactor).toDouble(); settings.endGroup(); // Select the proper view. Default to the flight view or load the last one used if it's supported. VIEW_SECTIONS currentViewCandidate = (VIEW_SECTIONS) settings.value("CURRENT_VIEW", _currentView).toInt(); switch (currentViewCandidate) { - case VIEW_ENGINEER: - case VIEW_MISSION: + case VIEW_ANALYZE: + case VIEW_PLAN: + case VIEW_EXPERIMENTAL_PLAN: case VIEW_FLIGHT: case VIEW_SIMULATION: case VIEW_SETUP: case VIEW_TERMINAL: -#ifdef QGC_OSG_ENABLED - case VIEW_LOCAL3D: -#endif -#ifdef QGC_GOOGLE_EARTH_ENABLED - case VIEW_GOOGLEEARTH: -#endif _currentView = currentViewCandidate; break; default: @@ -754,18 +717,17 @@ void MainWindow::storeSettings() { QSettings settings; settings.beginGroup(MAIN_SETTINGS_GROUP); - settings.setValue("AUTO_RECONNECT", _autoReconnect); - settings.setValue("LOW_POWER_MODE", _lowPowerMode); + settings.setValue("AUTO_RECONNECT", _autoReconnect); + settings.setValue("LOW_POWER_MODE", _lowPowerMode); + settings.setValue("SHOW_STATUSBAR", _showStatusBar); + settings.setValue("FONT_SIZE_FACTOR", _fontFactor); + settings.setValue("PIXEL_SIZE_FACTOR", _pixelFactor); settings.endGroup(); settings.setValue(_getWindowGeometryKey(), saveGeometry()); + // Save the last current view in any case settings.setValue("CURRENT_VIEW", _currentView); - // Save the current window state, but only if a system is connected (else no real number of widgets would be present)) - if (UASManager::instance()->getUASList().length() > 0) settings.setValue(_getWindowStateKey(), saveState()); - // Save the current UAS view if a UAS is connected - if (UASManager::instance()->getUASList().length() > 0) settings.setValue("CURRENT_VIEW_WITH_UAS_CONNECTED", _currentView); - // And save any custom weidgets - QGCToolWidget::storeWidgetsToSettings(settings); + settings.setValue(_getWindowStateKey(), saveState()); } void MainWindow::configureWindowName() @@ -788,41 +750,6 @@ void MainWindow::configureWindowName() setWindowTitle(windowname); } -// TODO: This is not used -void MainWindow::startVideoCapture() -{ - // TODO: What is this? What kind of "Video" is saved to bmp? - QString format("bmp"); - QString initialPath = QDir::currentPath() + tr("/untitled.") + format; - _screenFileName = QGCFileDialog::getSaveFileName( - this, tr("Save Video Capture"), - initialPath, - tr("%1 Files (*.%2);;All Files (*)") - .arg(format.toUpper()) - .arg(format), - format); - delete videoTimer; - videoTimer = new QTimer(this); -} - -// TODO: This is not used -void MainWindow::stopVideoCapture() -{ - videoTimer->stop(); - // TODO Convert raw images to PNG -} - -// TODO: This is not used -void MainWindow::saveScreen() -{ - QPixmap window = QPixmap::grabWindow(this->winId()); - QString format = "bmp"; - if (!_screenFileName.isEmpty()) - { - window.save(_screenFileName, format.toLatin1()); - } -} - void MainWindow::enableAutoReconnect(bool enabled) { _autoReconnect = enabled; @@ -836,44 +763,40 @@ void MainWindow::connectCommonActions() { // Bind together the perspective actions QActionGroup* perspectives = new QActionGroup(_ui.menuPerspectives); - perspectives->addAction(_ui.actionEngineersView); - perspectives->addAction(_ui.actionFlightView); + perspectives->addAction(_ui.actionAnalyze); + perspectives->addAction(_ui.actionFlight); perspectives->addAction(_ui.actionSimulationView); - perspectives->addAction(_ui.actionMissionView); + perspectives->addAction(_ui.actionPlan); perspectives->addAction(_ui.actionSetup); perspectives->addAction(_ui.actionTerminalView); - perspectives->addAction(_ui.actionGoogleEarthView); - perspectives->addAction(_ui.actionLocal3DView); + perspectives->addAction(_ui.actionExperimentalPlanView); perspectives->setExclusive(true); - /* Hide the actions that are not relevant */ -#ifndef QGC_GOOGLE_EARTH_ENABLED - _ui.actionGoogleEarthView->setVisible(false); -#endif -#ifndef QGC_OSG_ENABLED - _ui.actionLocal3DView->setVisible(false); -#endif - // Mark the right one as selected - if (_currentView == VIEW_ENGINEER) + if (_currentView == VIEW_ANALYZE) { - _ui.actionEngineersView->setChecked(true); - _ui.actionEngineersView->activate(QAction::Trigger); + _ui.actionAnalyze->setChecked(true); + _ui.actionAnalyze->activate(QAction::Trigger); } if (_currentView == VIEW_FLIGHT) { - _ui.actionFlightView->setChecked(true); - _ui.actionFlightView->activate(QAction::Trigger); + _ui.actionFlight->setChecked(true); + _ui.actionFlight->activate(QAction::Trigger); } if (_currentView == VIEW_SIMULATION) { _ui.actionSimulationView->setChecked(true); _ui.actionSimulationView->activate(QAction::Trigger); } - if (_currentView == VIEW_MISSION) + if (_currentView == VIEW_PLAN) + { + _ui.actionPlan->setChecked(true); + _ui.actionPlan->activate(QAction::Trigger); + } + if (_currentView == VIEW_EXPERIMENTAL_PLAN) { - _ui.actionMissionView->setChecked(true); - _ui.actionMissionView->activate(QAction::Trigger); + _ui.actionExperimentalPlanView->setChecked(true); + _ui.actionExperimentalPlanView->activate(QAction::Trigger); } if (_currentView == VIEW_SETUP) { @@ -885,16 +808,6 @@ void MainWindow::connectCommonActions() _ui.actionTerminalView->setChecked(true); _ui.actionTerminalView->activate(QAction::Trigger); } - if (_currentView == VIEW_GOOGLEEARTH) - { - _ui.actionGoogleEarthView->setChecked(true); - _ui.actionGoogleEarthView->activate(QAction::Trigger); - } - if (_currentView == VIEW_LOCAL3D) - { - _ui.actionLocal3DView->setChecked(true); - _ui.actionLocal3DView->activate(QAction::Trigger); - } // The UAS actions are not enabled without connection to system _ui.actionLiftoff->setEnabled(false); @@ -908,7 +821,6 @@ void MainWindow::connectCommonActions() // Connect internal actions connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(UASCreated(UASInterface*))); - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*))); // Unmanned System controls connect(_ui.actionLiftoff, SIGNAL(triggered()), UASManager::instance(), SLOT(launchActiveUAS())); @@ -918,13 +830,11 @@ void MainWindow::connectCommonActions() connect(_ui.actionShutdownMAV, SIGNAL(triggered()), UASManager::instance(), SLOT(shutdownActiveUAS())); // Views actions - connect(_ui.actionFlightView, SIGNAL(triggered()), this, SLOT(loadPilotView())); + connect(_ui.actionFlight, SIGNAL(triggered()), this, SLOT(loadFlightView())); connect(_ui.actionSimulationView, SIGNAL(triggered()), this, SLOT(loadSimulationView())); - connect(_ui.actionEngineersView, SIGNAL(triggered()), this, SLOT(loadEngineerView())); - connect(_ui.actionMissionView, SIGNAL(triggered()), this, SLOT(loadOperatorView())); - connect(_ui.actionSetup,SIGNAL(triggered()),this,SLOT(loadSetupView())); - connect(_ui.actionGoogleEarthView, SIGNAL(triggered()), this, SLOT(loadGoogleEarthView())); - connect(_ui.actionLocal3DView, SIGNAL(triggered()), this, SLOT(loadLocal3DView())); + connect(_ui.actionAnalyze, SIGNAL(triggered()), this, SLOT(loadAnalyzeView())); + connect(_ui.actionPlan, SIGNAL(triggered()), this, SLOT(loadPlanView())); + connect(_ui.actionExperimentalPlanView, SIGNAL(triggered()), this, SLOT(loadOldPlanView())); connect(_ui.actionTerminalView,SIGNAL(triggered()),this,SLOT(loadTerminalView())); // Help Actions @@ -932,10 +842,6 @@ void MainWindow::connectCommonActions() connect(_ui.actionDeveloper_Credits, SIGNAL(triggered()), this, SLOT(showCredits())); connect(_ui.actionProject_Roadmap, SIGNAL(triggered()), this, SLOT(showRoadMap())); - // Custom widget actions - connect(_ui.actionNewCustomWidget, SIGNAL(triggered()), this, SLOT(_createNewCustomWidget())); - connect(_ui.actionLoadCustomWidgetFile, SIGNAL(triggered()), this, SLOT(_loadCustomWidgetFromFile())); - // Audio output _ui.actionMuteAudioOutput->setChecked(GAudioOutput::instance()->isMuted()); connect(GAudioOutput::instance(), SIGNAL(mutedChanged(bool)), _ui.actionMuteAudioOutput, SLOT(setChecked(bool))); @@ -944,10 +850,8 @@ void MainWindow::connectCommonActions() // Application Settings connect(_ui.actionSettings, SIGNAL(triggered()), this, SLOT(showSettings())); - connect(_ui.actionSimulate, SIGNAL(triggered(bool)), this, SLOT(simulateLink(bool))); - // Update Tool Bar - _mainToolBar->setCurrentView((MainToolBar::ViewType_t)_currentView); + _mainToolBar->setCurrentView(_currentView); } void MainWindow::_openUrl(const QString& url, const QString& errorMessage) @@ -983,23 +887,14 @@ void MainWindow::showRoadMap() void MainWindow::showSettings() { +#ifndef __android__ SettingsDialog settings(joystick, this); +#else + SettingsDialog settings(this); +#endif settings.exec(); } -void MainWindow::simulateLink(bool simulate) { - if (simulate) { - if (!_simulationLink) { - _simulationLink = new MAVLinkSimulationLink(":/demo-log.txt"); - Q_CHECK_PTR(_simulationLink); - } - LinkManager::instance()->connectLink(_simulationLink); - } else { - Q_ASSERT(_simulationLink); - LinkManager::instance()->disconnectLink(_simulationLink); - } -} - void MainWindow::commsWidgetDestroyed(QObject *obj) { // Do not dynamic cast or de-reference QObject, since object is either in destructor or may have already @@ -1010,21 +905,6 @@ void MainWindow::commsWidgetDestroyed(QObject *obj) } } -void MainWindow::setActiveUAS(UASInterface* uas) -{ - Q_UNUSED(uas); - if (settings.contains(_getWindowStateKey())) - { - restoreState(settings.value(_getWindowStateKey()).toByteArray()); - } -} - -void MainWindow::UASSpecsChanged(int uas) -{ - Q_UNUSED(uas); - // TODO: Update UAS properties if its specs change -} - void MainWindow::UASCreated(UASInterface* uas) { // The UAS actions are not enabled without connection to system @@ -1034,7 +914,6 @@ void MainWindow::UASCreated(UASInterface* uas) _ui.actionEmergency_Land->setEnabled(true); _ui.actionShutdownMAV->setEnabled(true); - connect(uas, SIGNAL(systemSpecsChanged(int)), this, SLOT(UASSpecsChanged(int))); connect(uas, SIGNAL(valueChanged(int,QString,QString,QVariant,quint64)), this, SIGNAL(valueChanged(int,QString,QString,QVariant,quint64))); connect(uas, SIGNAL(misconfigurationDetected(UASInterface*)), this, SLOT(handleMisconfiguration(UASInterface*))); @@ -1048,19 +927,10 @@ void MainWindow::UASCreated(UASInterface* uas) } linechartWidget->addSource(mavlinkDecoder); - if (_engineeringView != linechartWidget) + if (_analyzeView != linechartWidget) { - _engineeringView = linechartWidget; + _analyzeView = linechartWidget; } - - // Reload view state in case new widgets were added - _loadCurrentViewState(); -} - -void MainWindow::UASDeleted(UASInterface* uas) -{ - Q_UNUSED(uas); - // TODO: Update the UI when a UAS is deleted } /// Stores the state of the toolbar, status bar and widgets associated with the current view @@ -1097,24 +967,30 @@ void MainWindow::_loadCurrentViewState(void) centerView = _setupView; break; - case VIEW_ENGINEER: - _buildEngineeringView(); - centerView = _engineeringView; + case VIEW_ANALYZE: + _buildAnalyzeView(); + centerView = _analyzeView; defaultWidgets = "MAVLINK_INSPECTOR_DOCKWIDGET,PARAMETER_INTERFACE_DOCKWIDGET,FILE_VIEW_DOCKWIDGET,HEAD_UP_DISPLAY_DOCKWIDGET"; break; case VIEW_FLIGHT: - _buildPilotView(); - centerView = _pilotView; + _buildFlightView(); + centerView = _flightView; defaultWidgets = "COMMUNICATION_CONSOLE_DOCKWIDGET,UAS_INFO_INFOVIEW_DOCKWIDGET"; break; - case VIEW_MISSION: - _buildPlannerView(); - centerView = _plannerView; + case VIEW_PLAN: + _buildPlanView(); + centerView = _planView; defaultWidgets = "UNMANNED_SYSTEM_LIST_DOCKWIDGET,WAYPOINT_LIST_DOCKWIDGET"; break; + case VIEW_EXPERIMENTAL_PLAN: + _buildExperimentalPlanView(); + centerView = _experimentalPlanView; + defaultWidgets.clear(); + break; + case VIEW_SIMULATION: _buildSimView(); centerView = _simView; @@ -1125,15 +1001,9 @@ void MainWindow::_loadCurrentViewState(void) _buildTerminalView(); centerView = _terminalView; break; - - case VIEW_GOOGLEEARTH: - _buildGoogleEarthView(); - centerView = _googleEarthView; - break; - - case VIEW_LOCAL3D: - _buildLocal3DView(); - centerView = _local3DView; + + default: + Q_ASSERT(false); break; } @@ -1151,6 +1021,7 @@ void MainWindow::_loadCurrentViewState(void) Q_ASSERT(_centralLayout->count() == 0); _currentViewWidget = centerView; _centralLayout->addWidget(_currentViewWidget); + _centralLayout->setContentsMargins(0, 0, 0, 0); _currentViewWidget->setVisible(true); // Hide all widgets from previous view @@ -1158,6 +1029,7 @@ void MainWindow::_loadCurrentViewState(void) // Restore the widgets for the new view QString widgetNames = settings.value(_getWindowStateKey() + "WIDGETS", defaultWidgets).toString(); + qDebug() << widgetNames; if (!widgetNames.isEmpty()) { QStringList split = widgetNames.split(","); foreach (QString widgetName, split) { @@ -1173,6 +1045,10 @@ void MainWindow::_loadCurrentViewState(void) // HIL dock widget are dynamic and don't take part in the saved window state, so this // need to happen after we restore state _showHILConfigurationWidgets(); + + // There is a bug in Qt where a Canvas element inside a QQuickWidget does not + // receive update requests. Here we emit a signal for them to get repainted. + emit repaintCanvas(); } void MainWindow::_hideAllHilDockWidgets(void) @@ -1225,78 +1101,68 @@ void MainWindow::handleMisconfiguration(UASInterface* uas) } } -void MainWindow::loadEngineerView() +void MainWindow::loadAnalyzeView() { - if (_currentView != VIEW_ENGINEER) + if (_currentView != VIEW_ANALYZE) { _storeCurrentViewState(); - _currentView = VIEW_ENGINEER; - _ui.actionEngineersView->setChecked(true); + _currentView = VIEW_ANALYZE; + _ui.actionAnalyze->setChecked(true); _loadCurrentViewState(); } } -void MainWindow::loadOperatorView() +void MainWindow::loadPlanView() { - if (_currentView != VIEW_MISSION) + if (_currentView != VIEW_PLAN) { _storeCurrentViewState(); - _currentView = VIEW_MISSION; - _ui.actionMissionView->setChecked(true); - _loadCurrentViewState(); - } -} -void MainWindow::loadSetupView() -{ - if (_currentView != VIEW_SETUP) - { - _storeCurrentViewState(); - _currentView = VIEW_SETUP; - _ui.actionSetup->setChecked(true); + _currentView = VIEW_PLAN; + _ui.actionPlan->setChecked(true); _loadCurrentViewState(); } } -void MainWindow::loadTerminalView() +void MainWindow::loadOldPlanView() { - if (_currentView != VIEW_TERMINAL) + if (_currentView != VIEW_EXPERIMENTAL_PLAN) { _storeCurrentViewState(); - _currentView = VIEW_TERMINAL; - _ui.actionTerminalView->setChecked(true); + _currentView = VIEW_EXPERIMENTAL_PLAN; + _ui.actionExperimentalPlanView->setChecked(true); _loadCurrentViewState(); } } -void MainWindow::loadGoogleEarthView() +void MainWindow::loadSetupView() { - if (_currentView != VIEW_GOOGLEEARTH) + if (_currentView != VIEW_SETUP) { _storeCurrentViewState(); - _currentView = VIEW_GOOGLEEARTH; - _ui.actionGoogleEarthView->setChecked(true); + _currentView = VIEW_SETUP; + _ui.actionSetup->setChecked(true); _loadCurrentViewState(); } } -void MainWindow::loadLocal3DView() +void MainWindow::loadTerminalView() { - if (_currentView != VIEW_LOCAL3D) + if (_currentView != VIEW_TERMINAL) { _storeCurrentViewState(); - _currentView = VIEW_LOCAL3D; - _ui.actionLocal3DView->setChecked(true); + _currentView = VIEW_TERMINAL; + _ui.actionTerminalView->setChecked(true); _loadCurrentViewState(); } } -void MainWindow::loadPilotView() +void MainWindow::loadFlightView() { if (_currentView != VIEW_FLIGHT) { _storeCurrentViewState(); _currentView = VIEW_FLIGHT; - _ui.actionFlightView->setChecked(true); + _ui.actionFlight->setChecked(true); _loadCurrentViewState(); } } @@ -1323,7 +1189,11 @@ void MainWindow::hideSplashScreen(void) void MainWindow::manageLinks() { +#ifndef __android__ SettingsDialog settings(joystick, this, SettingsDialog::ShowCommLinks); +#else + SettingsDialog settings(this, SettingsDialog::ShowCommLinks); +#endif settings.exec(); } @@ -1346,16 +1216,32 @@ void MainWindow::restoreLastUsedConnection() QSettings settings; QString key(MAIN_SETTINGS_GROUP); key += "/LAST_CONNECTION"; - QString connection; if(settings.contains(key)) { - connection = settings.value(connection).toString(); + QString connection = settings.value(key).toString(); // Create a link for it - LinkInterface* link = LinkManager::instance()->createLink(connection); - if(link) { - // Connect it - LinkManager::instance()->connectLink(link); - } + LinkManager::instance()->createConnectedLink(connection); + } +} + +void MainWindow::_linkStateChange(LinkInterface*) +{ + emit repaintCanvas(); +} + +void MainWindow::setPixelSizeFactor(double size) { + if(size < 0.1) { + size = 0.1; } + _pixelFactor = size; + emit pixelSizeChanged(); +} + +void MainWindow::setFontSizeFactor(double size) { + if(size < 0.1) { + size = 0.1; + } + _fontFactor = size; + emit fontSizeChanged(); } #ifdef QGC_MOUSE_ENABLED_LINUX @@ -1372,22 +1258,3 @@ void MainWindow::_showQmlTestWidget(void) new QmlTestWidget(); } #endif - -// There is a bug in Qt where a Canvas element inside a QQuickWidget does not -// receive update requests. We hook into this event and notify the tool bar -// to update its canvas elements. If other QQuickWidgets start using Canvas -// and this bug is not fixed, this should be turned into a signal emited by -// MainWindow and the various QQuickWidgets that need it should connect to it. -bool MainWindow::event(QEvent* e) -{ - bool result = true; - switch (e->type()) { - case QEvent::Paint: - result = QMainWindow::event(e); - _mainToolBar->updateCanvas(); - return result; - default: - break; - } - return QMainWindow::event(e); -} diff --git a/src/ui/MainWindow.h b/src/ui/MainWindow.h index 7ba54971c71a0a3e267b98a1ea84e965ccea5eeb..54c7023f8f587f7c3d0cab8523e9b15c698396be 100644 --- a/src/ui/MainWindow.h +++ b/src/ui/MainWindow.h @@ -47,29 +47,26 @@ This file is part of the QGROUNDCONTROL project #include "WaypointList.h" #include "CameraView.h" #include "UASListWidget.h" -#include "MAVLinkSimulationLink.h" +#ifndef __android__ #include "input/JoystickInput.h" +#endif #if (defined QGC_MOUSE_ENABLED_WIN) | (defined QGC_MOUSE_ENABLED_LINUX) #include "Mouse6dofInput.h" #endif // QGC_MOUSE_ENABLED_WIN #include "DebugConsole.h" -#include "ParameterInterface.h" +#include "ParameterEditorWidget.h" #include "HDDisplay.h" #include "HSIDisplay.h" #include "opmapcontrol.h" -#ifdef QGC_GOOGLE_EARTH_ENABLED -#include "QGCGoogleEarthView.h" -#endif #include "MainToolBar.h" -#include "QGCToolBar.h" #include "LogCompressor.h" +#include "QGCFlightDisplay.h" #include "QGCMAVLinkInspector.h" #include "QGCMAVLinkLogPlayer.h" #include "MAVLinkDecoder.h" #include "QGCUASFileViewMulti.h" #include "QGCFlightGearLink.h" -#include "QGCToolWidget.h" class QGCMapTool; class QGCMAVLinkMessageSender; @@ -79,6 +76,7 @@ class QGCStatusBar; class Linecharts; class QGCDataPlot2D; class QGCUASFileViewMulti; +class QGCFlightDisplay; /** * @brief Main Application Window @@ -129,41 +127,42 @@ public: /// @brief Gets a pointer to the Main Tool Bar MainToolBar* getMainToolBar(void) { return _mainToolBar; } + /// @brief Gets a pointer to the Main Flight Display + QGCFlightDisplay* getFlightDisplay() { return dynamic_cast(_flightView.data()); } + + QWidget* getCurrentViewWidget(void) { return _currentViewWidget; } + + //! Returns the font point size factor + static double fontPointFactor() { return _fontFactor; } + //! Returns the pixel size factor + static double pixelSizeFactor() { return _pixelFactor; } + //! Sets pixel size factor + void setPixelSizeFactor(double size); + //! Sets font size factor + void setFontSizeFactor(double size); + public slots: /** @brief Show the application settings */ void showSettings(); - /** @brief Simulate a link */ - void simulateLink(bool simulate); - /** @brief Set the currently controlled UAS */ - void setActiveUAS(UASInterface* uas); /** @brief Add a new UAS */ void UASCreated(UASInterface* uas); - /** Delete an UAS */ - void UASDeleted(UASInterface* uas); - /** @brief Update system specs of a UAS */ - void UASSpecsChanged(int uas); - void startVideoCapture(); - void stopVideoCapture(); - void saveScreen(); void handleMisconfiguration(UASInterface* uas); /** @brief Load configuration views */ void loadSetupView(); /** @brief Load view for pilot */ - void loadPilotView(); + void loadFlightView(); /** @brief Load view for simulation */ void loadSimulationView(); /** @brief Load view for engineer */ - void loadEngineerView(); - /** @brief Load view for operator */ - void loadOperatorView(); + void loadAnalyzeView(); + /** @brief Load New (QtQuick) Map View (Mission) */ + void loadPlanView(); + /** @brief Load Old (Qt Widget) Map View (Mission) */ + void loadOldPlanView(); /** @brief Load Terminal Console views */ void loadTerminalView(); - /** @brief Load Google Earth View */ - void loadGoogleEarthView(); - /** @brief Load local 3D view */ - void loadLocal3DView(); /** @brief Manage Links */ void manageLinks(); @@ -193,18 +192,28 @@ protected slots: * Used as a triggered() callback by the fullScreenAction to make sure only one of it or the * normalAction are checked at a time, as they're mutually exclusive. */ - void fullScreenActionItemCallback(); + void fullScreenActionItemCallback(bool); /** * @brief Unchecks the fullScreenActionItem. * Used as a triggered() callback by the normalAction to make sure only one of it or the * fullScreenAction are checked at a time, as they're mutually exclusive. */ - void normalActionItemCallback(); + void normalActionItemCallback(bool); + /** + * @brief Enable/Disable Status Bar + */ + void showStatusBarCallback(bool checked); signals: void initStatusChanged(const QString& message, int alignment, const QColor &color); /** Emitted when any value changes from any source */ void valueChanged(const int uasId, const QString& name, const QString& unit, const QVariant& value, const quint64 msec); + /** Emitted when any the Canvas elements within QML wudgets need updating */ + void repaintCanvas(); + /** Emitted when pixel size factor changes */ + void pixelSizeChanged(); + /** Emitted when pixel size factor changes */ + void fontSizeChanged(); #ifdef QGC_MOUSE_ENABLED_LINUX /** @brief Forward X11Event to catch 3DMouse inputs */ @@ -219,18 +228,16 @@ public: protected: - bool event(QEvent *); - typedef enum _VIEW_SECTIONS { - VIEW_ENGINEER, // Engineering/Analyze view mode. Used for analyzing data and modifying onboard parameters - VIEW_MISSION, // Mission/Map/Plan view mode. Used for setting mission waypoints and high-level system commands. - VIEW_FLIGHT, // Flight/Fly/Operate view mode. Used for 1st-person observation of the vehicle. - VIEW_SIMULATION, // HIL Simulation view. Useful overview of the entire system when doing hardware-in-the-loop simulations. - VIEW_SETUP, // Setup view. Used for initializing the system for operation. Includes UI for calibration, firmware updating/checking, and parameter modifcation. - VIEW_TERMINAL, // Terminal interface. Used for communicating with the remote system, usually in a special configuration input mode. - VIEW_LOCAL3D, // A local 3D view. Provides a local 3D view that makes visualizing 3D attitude/orientation/pose easy while in operation. - VIEW_GOOGLEEARTH // 3D Google Earth view. A 3D terrain view, though the vehicle is still 2D. + VIEW_ANALYZE, // Engineering/Analyze view mode. Used for analyzing data and modifying onboard parameters + VIEW_PLAN, // New (QtQuick) Mission/Map/Plan view mode. Used for setting mission waypoints and high-level system commands. + VIEW_FLIGHT, // Flight/Fly/Operate view mode. Used for 1st-person observation of the vehicle. + VIEW_SIMULATION, // HIL Simulation view. Useful overview of the entire system when doing hardware-in-the-loop simulations. + VIEW_SETUP, // Setup view. Used for initializing the system for operation. Includes UI for calibration, firmware updating/checking, and parameter modifcation. + VIEW_TERMINAL, // Terminal interface. Used for communicating with the remote system, usually in a special configuration input mode. + VIEW_LOCAL3D, // Unused + VIEW_EXPERIMENTAL_PLAN, // Original (Qt Widget) Mission/Map/Plan view mode. Used for setting mission waypoints and high-level system commands. } VIEW_SECTIONS; /** @brief Catch window resize events */ @@ -248,15 +255,10 @@ protected: QPointer linechartWidget; #ifdef QGC_OSG_ENABLED QPointer q3DWidget; -#endif -#ifdef QGC_GOOGLE_EARTH_ENABLED - QPointer earthWidget; #endif QPointer firmwareUpdateWidget; QPointer _mainToolBar; - QPointer toolBar; - QPointer mavlinkInspectorWidget; QPointer mavlinkDecoder; QPointer mavlinkSenderWidget; @@ -264,7 +266,9 @@ protected: QPointer fileWidget; +#ifndef __android__ JoystickInput* joystick; ///< The joystick manager for QGC +#endif #ifdef QGC_MOUSE_ENABLED_WIN /** @brief 3d Mouse support (WIN only) */ @@ -285,7 +289,6 @@ protected: QAction* returnUASAct; QAction* stopUASAct; QAction* killUASAct; - QAction* simulateUASAct; LogCompressor* comp; @@ -295,8 +298,7 @@ protected: private slots: void _showDockWidgetAction(bool show); - void _loadCustomWidgetFromFile(void); - void _createNewCustomWidget(void); + void _linkStateChange(LinkInterface*); #ifdef UNITTEST_BUILD void _showQmlTestWidget(void); #endif @@ -308,14 +310,13 @@ private: void _openUrl(const QString& url, const QString& errorMessage); // Center widgets - QPointer _plannerView; - QPointer _pilotView; + QPointer _planView; + QPointer _experimentalPlanView; + QPointer _flightView; QPointer _setupView; - QPointer _engineeringView; + QPointer _analyzeView; QPointer _simView; QPointer _terminalView; - QPointer _googleEarthView; - QPointer _local3DView; // Dock widget names static const char* _uasControlDockWidgetName; @@ -338,21 +339,19 @@ private: QMap _mapUasId2HilDockWidget; QMap _mapDockWidget2Action; - void _buildPlannerView(void); - void _buildPilotView(void); + void _buildPlanView(void); + void _buildExperimentalPlanView(void); + void _buildFlightView(void); void _buildSetupView(void); - void _buildEngineeringView(void); + void _buildAnalyzeView(void); void _buildSimView(void); void _buildTerminalView(void); - void _buildGoogleEarthView(void); - void _buildLocal3DView(void); void _storeCurrentViewState(void); void _loadCurrentViewState(void); void _createDockWidget(const QString& title, const QString& name, Qt::DockWidgetArea area, QWidget* innerWidget); void _createInnerDockWidget(const QString& widgetName); - void _buildCustomWidgets(void); void _buildCommonWidgets(void); void _hideAllHilDockWidgets(void); void _hideAllDockWidgets(void); @@ -361,9 +360,8 @@ private: bool _autoReconnect; bool _lowPowerMode; ///< If enabled, QGC reduces the update rates of all widgets + bool _showStatusBar; QActionGroup* _centerStackActionGroup; - MAVLinkSimulationLink* _simulationLink; - QList _customWidgets; QVBoxLayout* _centralLayout; QList _commsWidgetList; QWidget* _currentViewWidget; ///< Currently displayed view widget @@ -375,6 +373,9 @@ private: QString _getWindowStateKey(); QString _getWindowGeometryKey(); + // UI Dimension Factors + static double _pixelFactor; + static double _fontFactor; }; diff --git a/src/ui/MainWindow.ui b/src/ui/MainWindow.ui index 4bf75eb8046706634841b4f520aeb127f8571289..1d5edab7b69157eb6469a40ac9a9ff0ae579acf8 100644 --- a/src/ui/MainWindow.ui +++ b/src/ui/MainWindow.ui @@ -75,15 +75,17 @@ - Perspectives + View - - - + + + + + @@ -93,16 +95,12 @@ Tool Widgets - - - - + - @@ -126,8 +124,8 @@ - :/files/images/control/launch.svg - :/files/images/control/launch.svg:/files/images/control/launch.svg + :/res/Launch + :/res/Launch:/res/Launch Liftoff @@ -136,7 +134,7 @@ - :/files/images/control/land.svg:/files/images/control/land.svg + :/res/Land:/res/Land Land @@ -145,7 +143,7 @@ - :/files/images/actions/process-stop.svg:/files/images/actions/process-stop.svg + :/res/Kill:/res/Kill Emergency Land @@ -157,7 +155,7 @@ - :/files/images/actions/process-stop.svg:/files/images/actions/process-stop.svg + :/res/Kill:/res/Kill Kill UAS @@ -171,17 +169,6 @@ Manage Communication Links - - - true - - - Simulate - - - Simulate one vehicle to test and evaluate this application - - Online Documentation @@ -197,7 +184,7 @@ Developer Credits - + true @@ -205,7 +192,7 @@ Plan - + true @@ -213,7 +200,7 @@ Analyze - + true @@ -221,11 +208,6 @@ Fly - - - New Custom Widget - - true @@ -237,7 +219,7 @@ - :/files/images/actions/system-log-out.svg:/files/images/actions/system-log-out.svg + :/res/Shutdown:/res/Shutdown Shutdown MAV @@ -285,11 +267,6 @@ Esc - - - Load Custom Widget File - - true @@ -328,20 +305,17 @@ Terminal - + true - Google Earth + Status Bar - - - true - + - Local 3D View + Experimental Plan View diff --git a/src/ui/MapWidget.cc b/src/ui/MapWidget.cc index c5fceed5edd8b60612e1934732e8fcd0ec16dc40..df97f886bfab93ca2c6c18c2828ca0e225c390d3 100644 --- a/src/ui/MapWidget.cc +++ b/src/ui/MapWidget.cc @@ -123,11 +123,11 @@ void MapWidget::init() // Add controls to select map provider ///////////////////////////////////////////////// QActionGroup* mapproviderGroup = new QActionGroup(this); - osmAction = new QAction(QIcon(":/files/images/mapproviders/openstreetmap.png"), tr("OpenStreetMap"), mapproviderGroup); - yahooActionMap = new QAction(QIcon(":/files/images/mapproviders/yahoo.png"), tr("Yahoo: Map"), mapproviderGroup); - yahooActionSatellite = new QAction(QIcon(":/files/images/mapproviders/yahoo.png"), tr("Yahoo: Satellite"), mapproviderGroup); - googleActionMap = new QAction(QIcon(":/files/images/mapproviders/google.png"), tr("Google: Map"), mapproviderGroup); - googleSatAction = new QAction(QIcon(":/files/images/mapproviders/google.png"), tr("Google: Sat"), mapproviderGroup); + osmAction = new QAction(QIcon(":/res/openstreetmap.png"), tr("OpenStreetMap"), mapproviderGroup); + yahooActionMap = new QAction(QIcon(":/res/yahoo.png"), tr("Yahoo: Map"), mapproviderGroup); + yahooActionSatellite = new QAction(QIcon(":/res/yahoo.png"), tr("Yahoo: Satellite"), mapproviderGroup); + googleActionMap = new QAction(QIcon(":/res/google.png"), tr("Google: Map"), mapproviderGroup); + googleSatAction = new QAction(QIcon(":/res/google.png"), tr("Google: Sat"), mapproviderGroup); osmAction->setCheckable(true); yahooActionMap->setCheckable(true); yahooActionSatellite->setCheckable(true); @@ -163,17 +163,17 @@ void MapWidget::init() mapButton->setStyleSheet(buttonStyle); // create buttons to control the map (zoom, GPS tracking and WP capture) - QPushButton* zoomin = new QPushButton(QIcon(":/files/images/actions/list-add.svg"), "", this); + QPushButton* zoomin = new QPushButton(QIcon(":/res/PlusSign"), "", this); zoomin->setStyleSheet(buttonStyle); - QPushButton* zoomout = new QPushButton(QIcon(":/files/images/actions/list-remove.svg"), "", this); + QPushButton* zoomout = new QPushButton(QIcon(":/res/MinusSign"), "", this); zoomout->setStyleSheet(buttonStyle); - createPath = new QPushButton(QIcon(":/files/images/actions/go-bottom.svg"), "", this); + createPath = new QPushButton(QIcon(":/res/BottomArrow"), "", this); createPath->setStyleSheet(buttonStyle); createPath->setToolTip(tr("Start / end waypoint add mode")); createPath->setStatusTip(tr("Start / end waypoint add mode")); // clearTracking = new QPushButton(QIcon(""), "", this); // clearTracking->setStyleSheet(buttonStyle); - followgps = new QPushButton(QIcon(":/files/images/actions/system-lock-screen.svg"), "", this); + followgps = new QPushButton(QIcon(":/res/SystemLockScreen"), "", this); followgps->setStyleSheet(buttonStyle); followgps->setToolTip(tr("Follow the position of the current MAV with the map center")); followgps->setStatusTip(tr("Follow the position of the current MAV with the map center")); diff --git a/src/ui/OgreWidget.cc b/src/ui/OgreWidget.cc deleted file mode 100644 index 73998af834675ccc11cbc0aed179b41845ad22c0..0000000000000000000000000000000000000000 --- a/src/ui/OgreWidget.cc +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef __OGREWIDGET_H__ -#define __OGREWIDGET_H__ - -#include -#include -#include - -class OgreWidget : public QGLWidget -{ - //Q_OBJECT; - -public: - OgreWidget( QWidget *parent=0 ): - QGLWidget( parent ), - mOgreWindow(NULL) { - init( "../bin/plugins.cfg", "../bin/ogre.cfg", "../bin/ogre.log" ); - } - - virtual ~OgreWidget() { - mOgreRoot->shutdown(); - delete mOgreRoot; - destroy(); - } - -protected: - virtual void initializeGL(); - virtual void resizeGL( int, int ); - virtual void paintGL(); - - void init( std::string, std::string, std::string ); - - virtual Ogre::RenderSystem* chooseRenderer( Ogre::RenderSystemList* ); - - Ogre::Root *mOgreRoot; - Ogre::RenderWindow *mOgreWindow; - Ogre::Camera *mCamera; - Ogre::Viewport *mViewport; - Ogre::SceneManager *mSceneMgr; -}; - -#endif diff --git a/src/ui/OgreWidget.h b/src/ui/OgreWidget.h deleted file mode 100644 index cd4c67f7fd34f9cba0c7019886b87ff467b4d687..0000000000000000000000000000000000000000 --- a/src/ui/OgreWidget.h +++ /dev/null @@ -1,119 +0,0 @@ -#include "ogrewidget.h" - -#define THIS OgreWidget - -/** - * @brief init the object - * @author kito berg-taylor - */ -void THIS::init( std::string plugins_file, - std::string ogre_cfg_file, - std::string ogre_log ) -{ - - // create the main ogre object - mOgreRoot = new Ogre::Root( plugins_file, ogre_cfg_file, ogre_log ); - - // setup a renderer - Ogre::RenderSystemList *renderers = mOgreRoot->getAvailableRenderers(); - assert( !renderers->empty() ); // we need at least one renderer to do anything useful - - Ogre::RenderSystem *renderSystem; - renderSystem = chooseRenderer( renderers ); - - assert( renderSystem ); // user might pass back a null renderer, which would be bad! - - mOgreRoot->setRenderSystem( renderSystem ); - QString dimensions = QString( "%1x%2" ) - .arg(this->width()) - .arg(this->height()); - - renderSystem->setConfigOption( "Video Mode", dimensions.toStdString() ); - - // initialize without creating window - mOgreRoot->getRenderSystem()->setConfigOption( "Full Screen", "No" ); - mOgreRoot->saveConfig(); - mOgreRoot->initialise(false); // don't create a window -} - -/** - * @brief setup the rendering context - * @author Kito Berg-Taylor - */ -void THIS::initializeGL() -{ - //== Creating and Acquiring Ogre Window ==// - - // Get the parameters of the window QT created - QX11Info info = x11Info(); - Ogre::String winHandle; - winHandle = Ogre::StringConverter::toString((unsigned long)(info.display())); - winHandle += ":"; - winHandle += Ogre::StringConverter::toString((unsigned int)(info.screen())); - winHandle += ":"; - winHandle += Ogre::StringConverter::toString((unsigned long)(this->parentWidget()->winId())); - - Ogre::NameValuePairList params; - params["parentWindowHandle"] = winHandle; - - mOgreWindow = mOgreRoot->createRenderWindow( "QOgreWidget_RenderWindow", - this->width(), - this->height(), - false, - ¶ms ); - - mOgreWindow->setActive(true); - WId ogreWinId = 0x0; - mOgreWindow->getCustomAttribute( "WINDOW", &ogreWinId ); - - assert( ogreWinId ); - - this->create( ogreWinId ); - setAttribute( Qt::WA_PaintOnScreen, true ); - setAttribute( Qt::WA_NoBackground ); - - //== Ogre Initialization ==// - Ogre::SceneType scene_manager_type = Ogre::ST_EXTERIOR_CLOSE; - - mSceneMgr = mOgreRoot->createSceneManager( scene_manager_type ); - mSceneMgr->setAmbientLight( Ogre::ColourValue(1,1,1) ); - - mCamera = mSceneMgr->createCamera( "QOgreWidget_Cam" ); - mCamera->setPosition( Ogre::Vector3(0,1,0) ); - mCamera->lookAt( Ogre::Vector3(0,0,0) ); - mCamera->setNearClipDistance( 1.0 ); - - Ogre::Viewport *mViewport = mOgreWindow->addViewport( mCamera ); - mViewport->setBackgroundColour( Ogre::ColourValue( 0.8,0.8,1 ) ); -} - -/** - * @brief render a frame - * @author Kito Berg-Taylor - */ -void THIS::paintGL() -{ - assert( mOgreWindow ); - mOgreRoot->renderOneFrame(); -} - -/** - * @brief resize the GL window - * @author Kito Berg-Taylor - */ -void THIS::resizeGL( int width, int height ) -{ - assert( mOgreWindow ); - mOgreWindow->windowMovedOrResized(); -} - -/** - * @brief choose the right renderer - * @author Kito Berg-Taylor - */ -Ogre::RenderSystem* THIS::chooseRenderer( Ogre::RenderSystemList *renderers ) -{ - // It would probably be wise to do something more friendly - // that just use the first available renderer - return *renderers->begin(); -} diff --git a/src/ui/ParameterInterface.cc b/src/ui/ParameterInterface.cc deleted file mode 100644 index eedefd6c1b53eccb3aafae720309e0d069dbfe9a..0000000000000000000000000000000000000000 --- a/src/ui/ParameterInterface.cc +++ /dev/null @@ -1,125 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of class ParameterInterface - * @author Lorenz Meier - * - */ - -#include - -#include "ParameterInterface.h" -#include "UASManager.h" -#include "ui_ParameterInterface.h" -#include "QGCSensorSettingsWidget.h" - -#include -#include - -ParameterInterface::ParameterInterface(QWidget *parent) : - QWidget(parent), - paramWidgets(new QMap()), - curr(-1), - m_ui(new Ui::parameterWidget) -{ - m_ui->setupUi(this); - - QSettings settings; - - // Get current MAV list - QList systems = UASManager::instance()->getUASList(); - - // Add each of them - foreach (UASInterface* sys, systems) { - addUAS(sys); - } - - // Setup MAV connections - connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(addUAS(UASInterface*))); - connect(UASManager::instance(), SIGNAL(activeUASSetListIndex(int)), this, SLOT(selectUAS(int))); - this->setVisible(false); -} - -ParameterInterface::~ParameterInterface() -{ - delete paramWidgets; - delete m_ui; -} - -void ParameterInterface::selectUAS(int index) -{ - m_ui->stackedWidget->setCurrentIndex(index); - m_ui->sensorSettings->setCurrentIndex(index); - curr = index; -} - -/** - * - * @param uas System to add to list - */ -void ParameterInterface::addUAS(UASInterface* uas) -{ - int uasId = uas->getUASID(); - qDebug() << "ParameterInterface::addUAS : " << uasId ; - - if (paramWidgets->contains(uasId) ) { - return; - } - - QGCParamWidget* paramWidget = new QGCParamWidget(this); - paramWidget = (QGCParamWidget*)paramWidget->initWithUAS(uas); - - QString ptrStr; - ptrStr.sprintf("QGCParamWidget %8p (parent %8p)", paramWidget,this); - qDebug() << "Created " << ptrStr << " for UAS id: " << uasId << " count: " << paramWidgets->count(); - - paramWidgets->insert(uasId, paramWidget); - m_ui->stackedWidget->addWidget(paramWidget); - - QGCSensorSettingsWidget* sensor = NULL; - - sensor = new QGCSensorSettingsWidget(uas, this); - m_ui->sensorSettings->addWidget(sensor); - - // Set widgets as default - if (curr == -1) { - // Clear - if (m_ui->sensorSettings && sensor) - m_ui->sensorSettings->setCurrentWidget(sensor); - m_ui->stackedWidget->setCurrentWidget(paramWidget); - curr = 0; - } -} - -void ParameterInterface::changeEvent(QEvent *e) -{ - switch (e->type()) { - case QEvent::LanguageChange: - m_ui->retranslateUi(this); - break; - default: - break; - } -} diff --git a/src/ui/ParameterInterface.h b/src/ui/ParameterInterface.h deleted file mode 100644 index ff74e00ced168ce103dcbd19e56c66fcbf7a0440..0000000000000000000000000000000000000000 --- a/src/ui/ParameterInterface.h +++ /dev/null @@ -1,71 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of class ParameterInterface - * - * @author Lorenz Meier - * - */ - -#ifndef PARAMETERINTERFACE_H -#define PARAMETERINTERFACE_H - -#include - -#include "ui_ParameterInterface.h" -#include "UASInterface.h" -#include "QGCParamWidget.h" - -namespace Ui -{ -class ParameterInterface; -} - -/** - * @brief Container class for onboard parameter widgets - * - * @see QGCParamWidget - */ -class ParameterInterface : public QWidget -{ - Q_OBJECT -public: - explicit ParameterInterface(QWidget *parent = 0); - virtual ~ParameterInterface(); - -public slots: - void addUAS(UASInterface* uas); - void selectUAS(int index); - -protected: - virtual void changeEvent(QEvent *e); - QMap* paramWidgets; - int curr; - -private: - Ui::parameterWidget *m_ui; -}; - -#endif // PARAMETERINTERFACE_H diff --git a/src/ui/ParameterInterface.ui b/src/ui/ParameterInterface.ui deleted file mode 100644 index d911a49d8bb063152318a433d6bf7de9adc4e95e..0000000000000000000000000000000000000000 --- a/src/ui/ParameterInterface.ui +++ /dev/null @@ -1,38 +0,0 @@ - - - parameterWidget - - - - 0 - 0 - 707 - 572 - - - - Form - - - - 0 - - - - - -1 - - - - - - - -1 - - - - - - - - diff --git a/src/ui/ParameterView.ui b/src/ui/ParameterView.ui deleted file mode 100644 index 5008f1dbb3df6da07d6330ec2e0b03e6fc1bfbbb..0000000000000000000000000000000000000000 --- a/src/ui/ParameterView.ui +++ /dev/null @@ -1,506 +0,0 @@ - - - UASView - - - - 0 - 0 - 428 - 419 - - - - - 0 - 0 - - - - - 200 - 100 - - - - Form - - - QWidget#colorIcon {} - -QWidget { -background-color: #252528; -color: #DDDDDF; -border-color: #EEEEEE; -background-clip: margin; -} - -QGroupBox { - border: 1px solid #EEEEEE; - border-radius: 5px; - padding: 0px 0px 0px 0px; - margin: 0px; -} - - QGroupBox::title { - subcontrol-origin: margin; - subcontrol-position: top center; /* position at the top center */ - margin: 0 3px 0px 3px; - padding: 0 3px 0px 0px; - font: bold 8px; - } - -QGroupBox#heartbeatIcon { - background-color: red; -} - -QPushButton { - font-weight: bold; - font-size: 12px; - border: 1px solid #999999; - border-radius: 10px; - max-width: 40px; - padding: 2px; - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #777777, stop: 1 #555555); -} - -QPushButton:pressed { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #444444, stop: 1 #555555); -} - -QPushButton#landButton { - color: #000000; - background: qlineargradient(x1:0, y1:0, x2:0, y2:1, - stop:0 #ffee01, stop:1 #ae8f00) url("ICONDIR/control/emergency-button.png"); -} - -QPushButton:pressed#landButton { - color: #000000; - background: qlineargradient(x1:0, y1:0, x2:0, y2:1, - stop:0 #bbaa00, stop:1 #a05b00) url("ICONDIR/control/emergency-button.png"); -} - -QPushButton#killButton { - color: #000000; - background: qlineargradient(x1:0, y1:0, x2:0, y2:1, - stop:0 #ffb917, stop:1 #b37300) url("ICONDIR/control/emergency-button.png"); -} - -QPushButton:pressed#killButton { - color: #000000; - background: qlineargradient(x1:0, y1:0, x2:0, y2:1, - stop:0 #bb8500, stop:1 #903000) url("ICONDIR/control/emergency-button.png"); -} - -QProgressBar { - border: 1px solid white; - border-radius: 4px; - text-align: center; - padding: 2px; - color: white; - background-color: #111111; -} - -QProgressBar:horizontal { - height: 12px; -} - -QProgressBar QLabel { - font-size: 8px; -} - -QProgressBar:vertical { - width: 12px; -} - -QProgressBar::chunk { - background-color: #656565; -} - -QProgressBar::chunk#batteryBar { - background-color: green; -} - -QProgressBar::chunk#speedBar { - background-color: yellow; -} - -QProgressBar::chunk#thrustBar { - background-color: orange; -} - - - - 0 - - - - - Qt::Vertical - - - - 391 - 3 - - - - - - - - - - - - 5 - - - 2 - - - 5 - - - - - - 16777215 - 16 - - - - - 13 - 75 - true - - - - UAS001 - - - - - - - - 0 - 12 - - - - - 16777215 - 12 - - - - - 9 - - - - 00.0 00.0 00.0 m - - - - - - - - 0 - 12 - - - - - 16777215 - 12 - - - - - 9 - - - - 00 00 00 N 00 00 00 E - - - - - - - - 8 - - - - 00:00:00 - - - - - - - - 8 - - - - 00:00:00 - - - - - - - - 8 - - - - 24 - - - - - - - - 8 - - - - 24 - - - - - - - Qt::Horizontal - - - - 10 - 20 - - - - - - - - 10 - - - QLayout::SetDefaultConstraint - - - - - - 35 - 0 - - - - - - - - - - - - 35 - 0 - - - - - - - - - - - - 35 - 0 - - - - - - - - - - - - 35 - 0 - - - - - - - - - - - - 35 - 0 - - - - - - - - - - - - 35 - 0 - - - - - - - - - - - - - Qt::Horizontal - - - - 2 - 20 - - - - - - - - - 8 - 75 - true - - - - UNINIT - - - - - - - - 16777215 - 12 - - - - - 10 - - - - Unknown status - - - - - - - - 8 - - - - 00.00 m - - - - - - - - 8 - - - - 00.00 m - - - - - - - - 20 - 40 - - - - - 6 - - - - 24 - - - Qt::Vertical - - - - - - - - 20 - 40 - - - - - - - - - - - - - - Qt::Horizontal - - - - 74 - 20 - - - - - - groupBox - horizontalSpacer_3 - - - - diff --git a/src/ui/PrimaryFlightDisplay.cc b/src/ui/PrimaryFlightDisplay.cc deleted file mode 100644 index fc7fea5700faf0711ab5953ff748797b9789cada..0000000000000000000000000000000000000000 --- a/src/ui/PrimaryFlightDisplay.cc +++ /dev/null @@ -1,1307 +0,0 @@ -#include "PrimaryFlightDisplay.h" -#include "UASManager.h" - -#include -#include -#include -#include -#include -#include -#include -#include - -static const float LINEWIDTH = 0.0036f; -static const float SMALL_TEXT_SIZE = 0.028f; -static const float MEDIUM_TEXT_SIZE = SMALL_TEXT_SIZE*1.2f; -static const float LARGE_TEXT_SIZE = MEDIUM_TEXT_SIZE*1.2f; - -static const bool SHOW_ZERO_ON_SCALES = true; - -// all in units of display height -static const float ROLL_SCALE_RADIUS = 0.42f; -static const float ROLL_SCALE_TICKMARKLENGTH = 0.04f; -static const float ROLL_SCALE_MARKERWIDTH = 0.06f; -static const float ROLL_SCALE_MARKERHEIGHT = 0.04f; -// scale max. degrees -static const int ROLL_SCALE_RANGE = 60; - -// fraction of height to translate for each degree of pitch. -static const float PITCHTRANSLATION = 65; -// 5 degrees for each line -static const int PITCH_SCALE_RESOLUTION = 5; -static const float PITCH_SCALE_MAJORWIDTH = 0.1f; -static const float PITCH_SCALE_MINORWIDTH = 0.066f; - -// Beginning from PITCH_SCALE_WIDTHREDUCTION_FROM degrees of +/- pitch, the -// width of the lines is reduced, down to PITCH_SCALE_WIDTHREDUCTION times -// the normal width. This helps keep orientation in extreme attitudes. -static const int PITCH_SCALE_WIDTHREDUCTION_FROM = 30; -static const float PITCH_SCALE_WIDTHREDUCTION = 0.3f; - -static const int PITCH_SCALE_HALFRANGE = 15; - -// The number of degrees to either side of the heading to draw the compass disk. -// 180 is valid, this will draw a complete disk. If the disk is partly clipped -// away, less will do. - -static const int COMPASS_DISK_MAJORTICK = 10; -static const int COMPASS_DISK_ARROWTICK = 45; -static const int COMPASS_DISK_RESOLUTION = 10; -static const float COMPASS_DISK_MARKERWIDTH = 0.2f; -static const float COMPASS_DISK_MARKERHEIGHT = 0.133f; - -static const int CROSSTRACK_MAX = 1000; -static const float CROSSTRACK_RADIUS = 0.6f; - -static const float TAPE_GAUGES_TICKWIDTH_MAJOR = 0.25f; -static const float TAPE_GAUGES_TICKWIDTH_MINOR = 0.15f; - -// The altitude difference between top and bottom of scale -static const int ALTIMETER_LINEAR_SPAN = 50; -// every 5 meters there is a tick mark -static const int ALTIMETER_LINEAR_RESOLUTION = 5; -// every 10 meters there is a number -static const int ALTIMETER_LINEAR_MAJOR_RESOLUTION = 10; - -// min. and max. vertical velocity -static const int ALTIMETER_VVI_SPAN = 5; -static const float ALTIMETER_VVI_WIDTH = 0.2f; - -// Now the same thing for airspeed! -static const int AIRSPEED_LINEAR_SPAN = 15; -static const int AIRSPEED_LINEAR_RESOLUTION = 1; -static const int AIRSPEED_LINEAR_MAJOR_RESOLUTION = 5; - -/* - *@TODO: - * global fixed pens (and painters too?) - * repaint on demand multiple canvases - * multi implementation with shared model class - */ -double PrimaryFlightDisplay_round(double value, int digits=0) -{ - return floor(value * pow(10.0, digits) + 0.5) / pow(10.0, digits); -} - -qreal PrimaryFlightDisplay_constrain(qreal value, qreal min, qreal max) { - if (valuemax) value=max; - return value; -} - -const int PrimaryFlightDisplay::tickValues[] = {10, 20, 30, 45, 60}; -const QString PrimaryFlightDisplay::compassWindNames[] = { - QString("N"), - QString("NE"), - QString("E"), - QString("SE"), - QString("S"), - QString("SW"), - QString("W"), - QString("NW") -}; - -PrimaryFlightDisplay::PrimaryFlightDisplay(QWidget *parent) : - QWidget(parent), - - _valuesChanged(false), - _valuesLastPainted(QGC::groundTimeMilliseconds()), - - uas(NULL), - - roll(0), - pitch(0), - heading(0), - - altitudeAMSL(std::numeric_limits::quiet_NaN()), - altitudeWGS84(std::numeric_limits::quiet_NaN()), - altitudeRelative(std::numeric_limits::quiet_NaN()), - - groundSpeed(std::numeric_limits::quiet_NaN()), - airSpeed(std::numeric_limits::quiet_NaN()), - climbRate(std::numeric_limits::quiet_NaN()), - - navigationCrosstrackError(0), - navigationTargetBearing(std::numeric_limits::quiet_NaN()), - - layout(COMPASS_INTEGRATED), - style(OVERLAY_HSI), - - redColor(QColor::fromHsvF(0, 0.75, 0.9)), - amberColor(QColor::fromHsvF(0.12, 0.6, 1.0)), - greenColor(QColor::fromHsvF(0.25, 0.8, 0.8)), - - lineWidth(2), - fineLineWidth(1), - - instrumentEdgePen(QColor::fromHsvF(0, 0, 0.65, 0.5)), - instrumentBackground(QColor::fromHsvF(0, 0, 0.3, 0.3)), - instrumentOpagueBackground(QColor::fromHsvF(0, 0, 0.3, 1.0)), - - font("Bitstream Vera Sans"), - refreshTimer(new QTimer(this)) -{ - setMinimumSize(120, 80); - setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); - - setActiveUAS(UASManager::instance()->getActiveUAS()); - - // Connect with UAS signal - connect(UASManager::instance(), SIGNAL(UASDeleted(UASInterface*)), this, SLOT(forgetUAS(UASInterface*))); - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*))); - - // Refresh timer - refreshTimer->setInterval(updateInterval); - connect(refreshTimer, SIGNAL(timeout()), this, SLOT(checkUpdate())); -} - -PrimaryFlightDisplay::~PrimaryFlightDisplay() -{ - refreshTimer->stop(); -} - -QSize PrimaryFlightDisplay::sizeHint() const -{ - return QSize(width(), (int)(width() * 3.0f / 4.0f)); -} - - -void PrimaryFlightDisplay::showEvent(QShowEvent* event) -{ - // React only to internal (pre-display) events - QWidget::showEvent(event); - refreshTimer->start(updateInterval); - emit visibilityChanged(true); -} - -void PrimaryFlightDisplay::hideEvent(QHideEvent* event) -{ - // React only to internal (pre-display) events - refreshTimer->stop(); - QWidget::hideEvent(event); - emit visibilityChanged(false); -} - -void PrimaryFlightDisplay::resizeEvent(QResizeEvent *e) { - QWidget::resizeEvent(e); - - qreal size = e->size().width(); - - lineWidth = PrimaryFlightDisplay_constrain(size*LINEWIDTH, 1, 6); - fineLineWidth = PrimaryFlightDisplay_constrain(size*LINEWIDTH*2/3, 1, 2); - - instrumentEdgePen.setWidthF(fineLineWidth); - - smallTextSize = size * SMALL_TEXT_SIZE; - mediumTextSize = size * MEDIUM_TEXT_SIZE; - largeTextSize = size * LARGE_TEXT_SIZE; -} - -void PrimaryFlightDisplay::paintEvent(QPaintEvent *event) -{ - Q_UNUSED(event); - doPaint(); -} - -void PrimaryFlightDisplay::checkUpdate() -{ - if (uas && (_valuesChanged || (QGC::groundTimeMilliseconds() - _valuesLastPainted) > 260)) { - update(); - _valuesChanged = false; - _valuesLastPainted = QGC::groundTimeMilliseconds(); - } -} - -void PrimaryFlightDisplay::forgetUAS(UASInterface* uas) -{ - if (this->uas != NULL && this->uas == uas) { - // Disconnect any previously connected active MAV - disconnect(this->uas, SIGNAL(attitudeChanged(UASInterface*,double,double,double,quint64)), this, SLOT(updateAttitude(UASInterface*, double, double, double, quint64))); - disconnect(this->uas, SIGNAL(attitudeChanged(UASInterface*,int,double,double,double,quint64)), this, SLOT(updateAttitude(UASInterface*,int,double, double, double, quint64))); - disconnect(this->uas, SIGNAL(speedChanged(UASInterface*, double, double, quint64)), this, SLOT(updateSpeed(UASInterface*, double, double, quint64))); - disconnect(this->uas, SIGNAL(altitudeChanged(UASInterface*, double, double, double, double, quint64)), this, SLOT(updateAltitude(UASInterface*, double, double, double, quint64))); - disconnect(this->uas, SIGNAL(navigationControllerErrorsChanged(UASInterface*, double, double, double)), this, SLOT(updateNavigationControllerErrors(UASInterface*, double, double, double))); - } -} - -/** - * - * @param uas the UAS/MAV to monitor/display with the HUD - */ -void PrimaryFlightDisplay::setActiveUAS(UASInterface* uas) -{ - if (uas == this->uas) - return; //no need to rewire - - // Disconnect the previous one (if any) - forgetUAS(this->uas); - - if (uas) { - // Now connect the new UAS - // Setup communication - connect(uas, SIGNAL(attitudeChanged(UASInterface*,double,double,double,quint64)), this, SLOT(updateAttitude(UASInterface*, double, double, double, quint64))); - connect(uas, SIGNAL(attitudeChanged(UASInterface*,int,double,double,double,quint64)), this, SLOT(updateAttitude(UASInterface*,int,double, double, double, quint64))); - connect(uas, SIGNAL(speedChanged(UASInterface*, double, double, quint64)), this, SLOT(updateSpeed(UASInterface*, double, double, quint64))); - connect(uas, SIGNAL(altitudeChanged(UASInterface*, double, double, double, double, quint64)), this, SLOT(updateAltitude(UASInterface*, double, double, double, double, quint64))); - connect(uas, SIGNAL(navigationControllerErrorsChanged(UASInterface*, double, double, double)), this, SLOT(updateNavigationControllerErrors(UASInterface*, double, double, double))); - - // Set new UAS - this->uas = uas; - } -} - -void PrimaryFlightDisplay::updateAttitude(UASInterface* uas, double roll, double pitch, double yaw, quint64 timestamp) -{ - Q_UNUSED(uas); - Q_UNUSED(timestamp); - - if (isinf(roll)) { - this->roll = std::numeric_limits::quiet_NaN(); - } else { - - float rolldeg = roll * (180.0 / M_PI); - - if (fabsf(roll - rolldeg) > 2.5f) { - _valuesChanged = true; - } - - this->roll = rolldeg; - } - - if (isinf(pitch)) { - this->pitch = std::numeric_limits::quiet_NaN(); - } else { - - float pitchdeg = pitch * (180.0 / M_PI); - - if (fabsf(pitch - pitchdeg) > 2.5f) { - _valuesChanged = true; - } - - this->pitch = pitchdeg; - } - - if (isinf(yaw)) { - this->heading = std::numeric_limits::quiet_NaN(); - } else { - - yaw = yaw * (180.0 / M_PI); - if (yaw<0) yaw+=360; - - if (fabsf(heading - yaw) > 10.0f) { - _valuesChanged = true; - } - - this->heading = yaw; - } - -} - -void PrimaryFlightDisplay::updateAttitude(UASInterface* uas, int component, double roll, double pitch, double yaw, quint64 timestamp) -{ - Q_UNUSED(component); - this->updateAttitude(uas, roll, pitch, yaw, timestamp); -} - -void PrimaryFlightDisplay::updateSpeed(UASInterface* uas, double _groundSpeed, double _airSpeed, quint64 timestamp) -{ - Q_UNUSED(uas); - Q_UNUSED(timestamp); - - if (fabsf(groundSpeed - _groundSpeed) > 0.5f) { - _valuesChanged = true; - } - - if (fabsf(airSpeed - _airSpeed) > 1.0f) { - _valuesChanged = true; - } - - groundSpeed = _groundSpeed; - airSpeed = _airSpeed; -} - -void PrimaryFlightDisplay::updateAltitude(UASInterface* uas, double _altitudeAMSL, double _altitudeWGS84, double _altitudeRelative, double _climbRate, quint64 timestamp) { - Q_UNUSED(uas); - Q_UNUSED(timestamp); - - if (fabsf(altitudeAMSL - _altitudeAMSL) > 0.5f) { - _valuesChanged = true; - } - - if (fabsf(altitudeWGS84 - _altitudeWGS84) > 0.5f) { - _valuesChanged = true; - } - - if (fabsf(altitudeRelative - _altitudeRelative) > 0.5f) { - _valuesChanged = true; - } - - if (fabsf(climbRate - _climbRate) > 0.5f) { - _valuesChanged = true; - } - - altitudeAMSL = _altitudeAMSL; - altitudeWGS84 = _altitudeWGS84; - altitudeRelative = _altitudeRelative; - climbRate = _climbRate; -} - -void PrimaryFlightDisplay::updateNavigationControllerErrors(UASInterface* uas, double altitudeError, double speedError, double xtrackError) { - Q_UNUSED(uas); - this->navigationAltitudeError = altitudeError; - this->navigationSpeedError = speedError; - this->navigationCrosstrackError = xtrackError; -} - - -/* - * Private and such - */ - -// TODO: Move to UAS. Real working implementation. -bool PrimaryFlightDisplay::isAirplane() { - if (!this->uas) - return false; - switch(this->uas->getSystemType()) { - case MAV_TYPE_GENERIC: - case MAV_TYPE_FIXED_WING: - case MAV_TYPE_AIRSHIP: - case MAV_TYPE_FLAPPING_WING: - return true; - default: - return false; - } -} - -// TODO: Implement. Should return true when navigating. -// That would be (APM) in AUTO and RTL modes. -// This could forward to a virtual on UAS bool isNavigatingAutonomusly() or whatever. -bool PrimaryFlightDisplay::shouldDisplayNavigationData() { - return true; -} - -void PrimaryFlightDisplay::drawTextCenter ( - QPainter& painter, - QString text, - float pixelSize, - float x, - float y) -{ - font.setPixelSize(pixelSize); - painter.setFont(font); - - QFontMetrics metrics = QFontMetrics(font); - QRect bounds = metrics.boundingRect(text); - int flags = Qt::AlignCenter | Qt::TextDontClip; // For some reason the bounds rect is too small! - painter.drawText(x - bounds.width()/2, y - bounds.height()/2, bounds.width(), bounds.height(), flags, text); -} - -void PrimaryFlightDisplay::drawTextLeftCenter ( - QPainter& painter, - QString text, - float pixelSize, - float x, - float y) -{ - font.setPixelSize(pixelSize); - painter.setFont(font); - - QFontMetrics metrics = QFontMetrics(font); - QRect bounds = metrics.boundingRect(text); - int flags = Qt::AlignLeft | Qt::TextDontClip; // For some reason the bounds rect is too small! - painter.drawText(x, y - bounds.height()/2, bounds.width(), bounds.height(), flags, text); -} - -void PrimaryFlightDisplay::drawTextRightCenter ( - QPainter& painter, - QString text, - float pixelSize, - float x, - float y) -{ - font.setPixelSize(pixelSize); - painter.setFont(font); - - QFontMetrics metrics = QFontMetrics(font); - QRect bounds = metrics.boundingRect(text); - int flags = Qt::AlignRight | Qt::TextDontClip; // For some reason the bounds rect is too small! - painter.drawText(x - bounds.width(), y - bounds.height()/2, bounds.width(), bounds.height(), flags, text); -} - -void PrimaryFlightDisplay::drawTextCenterTop ( - QPainter& painter, - QString text, - float pixelSize, - float x, - float y) -{ - font.setPixelSize(pixelSize); - painter.setFont(font); - - QFontMetrics metrics = QFontMetrics(font); - QRect bounds = metrics.boundingRect(text); - int flags = Qt::AlignCenter | Qt::TextDontClip; // For some reason the bounds rect is too small! - painter.drawText(x - bounds.width()/2, y+bounds.height(), bounds.width(), bounds.height(), flags, text); -} - -void PrimaryFlightDisplay::drawTextCenterBottom ( - QPainter& painter, - QString text, - float pixelSize, - float x, - float y) -{ - font.setPixelSize(pixelSize); - painter.setFont(font); - - QFontMetrics metrics(font); - QRect bounds = metrics.boundingRect(text); - int flags = Qt::AlignCenter; - painter.drawText(x - bounds.width()/2, y, bounds.width(), bounds.height(), flags, text); -} - -void PrimaryFlightDisplay::drawInstrumentBackground(QPainter& painter, QRectF edge) { - painter.setPen(instrumentEdgePen); - painter.drawRect(edge); -} - -void PrimaryFlightDisplay::fillInstrumentBackground(QPainter& painter, QRectF edge) { - painter.setPen(instrumentEdgePen); - painter.setBrush(instrumentBackground); - painter.drawRect(edge); - painter.setBrush(Qt::NoBrush); -} - -void PrimaryFlightDisplay::fillInstrumentOpagueBackground(QPainter& painter, QRectF edge) { - painter.setPen(instrumentEdgePen); - painter.setBrush(instrumentOpagueBackground); - painter.drawRect(edge); - painter.setBrush(Qt::NoBrush); -} - -qreal pitchAngleToTranslation(qreal viewHeight, float pitch) { - if (isnan(pitch)) - return 0; - return pitch * viewHeight / PITCHTRANSLATION; -} - -void PrimaryFlightDisplay::drawAIAirframeFixedFeatures(QPainter& painter, QRectF area) { - // red line from -7/10 to -5/10 half-width - // red line from 7/10 to 5/10 half-width - // red slanted line from -2/10 half-width to 0 - // red slanted line from 2/10 half-width to 0 - // red arrow thing under roll scale - // prepareTransform(painter, width, height); - painter.resetTransform(); - painter.translate(area.center()); - - qreal w = area.width(); - qreal h = area.height(); - - QPen pen; - pen.setWidthF(lineWidth * 1.5f); - pen.setColor(redColor); - painter.setPen(pen); - - float length = 0.15f; - float side = 0.5f; - // The 2 lines at sides. - painter.drawLine(QPointF(-side*w, 0), QPointF(-(side-length)*w, 0)); - painter.drawLine(QPointF(side*w, 0), QPointF((side-length)*w, 0)); - - float rel = length/qSqrt(2.0f); - // The gull - painter.drawLine(QPointF(rel*w, rel*w/2), QPoint(0, 0)); - painter.drawLine(QPointF(-rel*w, rel*w/2), QPoint(0, 0)); - - // The roll scale marker. - QPainterPath markerPath(QPointF(0, -w*ROLL_SCALE_RADIUS+1)); - markerPath.lineTo(-h*ROLL_SCALE_MARKERWIDTH/2, -w*(ROLL_SCALE_RADIUS-ROLL_SCALE_MARKERHEIGHT)+1); - markerPath.lineTo(h*ROLL_SCALE_MARKERWIDTH/2, -w*(ROLL_SCALE_RADIUS-ROLL_SCALE_MARKERHEIGHT)+1); - markerPath.closeSubpath(); - painter.drawPath(markerPath); -} - -inline qreal min4(qreal a, qreal b, qreal c, qreal d) { - if(ba) a=b; - if(c>a) a=c; - if(d>a) a=d; - return a; -} - -void PrimaryFlightDisplay::drawAIGlobalFeatures( - QPainter& painter, - QRectF mainArea, - QRectF paintArea) { - - float displayRoll = this->roll; - if (isnan(displayRoll)) - displayRoll = 0; - - painter.resetTransform(); - painter.translate(mainArea.center()); - - qreal pitchPixels = pitchAngleToTranslation(mainArea.height(), pitch); - qreal gradientEnd = pitchAngleToTranslation(mainArea.height(), 60); - - painter.rotate(-displayRoll); - painter.translate(0, pitchPixels); - - // Calculate the radius of area we need to paint to cover all. - QTransform rtx = painter.transform().inverted(); - - QPointF topLeft = rtx.map(paintArea.topLeft()); - QPointF topRight = rtx.map(paintArea.topRight()); - QPointF bottomLeft = rtx.map(paintArea.bottomLeft()); - QPointF bottomRight = rtx.map(paintArea.bottomRight()); - - // Just KISS... make a rectangluar basis. - qreal minx = min4(topLeft.x(), topRight.x(), bottomLeft.x(), bottomRight.x()); - qreal maxx = max4(topLeft.x(), topRight.x(), bottomLeft.x(), bottomRight.x()); - qreal miny = min4(topLeft.y(), topRight.y(), bottomLeft.y(), bottomRight.y()); - qreal maxy = max4(topLeft.y(), topRight.y(), bottomLeft.y(), bottomRight.y()); - - QPointF hzonLeft = QPoint(minx, 0); - QPointF hzonRight = QPoint(maxx, 0); - - QPainterPath skyPath(hzonLeft); - skyPath.lineTo(QPointF(minx, miny)); - skyPath.lineTo(QPointF(maxx, miny)); - skyPath.lineTo(hzonRight); - skyPath.closeSubpath(); - - QLinearGradient skyGradient(0, -gradientEnd, 0, 0); - skyGradient.setColorAt(0, QColor::fromHsvF(0.6, 1.0, 0.7)); - skyGradient.setColorAt(1, QColor::fromHsvF(0.6, 0.25, 0.9)); - QBrush skyBrush(skyGradient); - painter.fillPath(skyPath, skyBrush); - - QPainterPath groundPath(hzonRight); - groundPath.lineTo(maxx, maxy); - groundPath.lineTo(minx, maxy); - groundPath.lineTo(hzonLeft); - groundPath.closeSubpath(); - - QLinearGradient groundGradient(0, gradientEnd, 0, 0); - groundGradient.setColorAt(0, QColor::fromHsvF(0.25, 1, 0.5)); - groundGradient.setColorAt(1, QColor::fromHsvF(0.25, 0.25, 0.5)); - QBrush groundBrush(groundGradient); - painter.fillPath(groundPath, groundBrush); - - QPen pen; - pen.setWidthF(lineWidth); - pen.setColor(greenColor); - painter.setPen(pen); - - QPointF start(-mainArea.width(), 0); - QPoint end(mainArea.width(), 0); - painter.drawLine(start, end); -} - -void PrimaryFlightDisplay::drawPitchScale( - QPainter& painter, - QRectF area, - float intrusion, - bool drawNumbersLeft, - bool drawNumbersRight - ) { - - Q_UNUSED(intrusion); - - float displayPitch = this->pitch; - if (isnan(displayPitch)) - displayPitch = 0; - - // The area should be quadratic but if not width is the major size. - qreal w = area.width(); - if (w PITCH_SCALE_WIDTHREDUCTION_FROM) { - // we want: 1 at PITCH_SCALE_WIDTHREDUCTION_FROM and PITCH_SCALE_WIDTHREDUCTION at 90. - // That is PITCH_SCALE_WIDTHREDUCTION + (1-PITCH_SCALE_WIDTHREDUCTION) * f(pitch) - // where f(90)=0 and f(PITCH_SCALE_WIDTHREDUCTION_FROM)=1 - // f(p) = (90-p) * 1/(90-PITCH_SCALE_WIDTHREDUCTION_FROM) - // or PITCH_SCALE_WIDTHREDUCTION + f(pitch) - f(pitch) * PITCH_SCALE_WIDTHREDUCTION - // or PITCH_SCALE_WIDTHREDUCTION (1-f(pitch)) + f(pitch) - int fromVertical = abs(pitch>=0 ? 90-pitch : -90-pitch); - float temp = fromVertical * 1/(90.0f-PITCH_SCALE_WIDTHREDUCTION_FROM); - linewidth *= (PITCH_SCALE_WIDTHREDUCTION * (1-temp) + temp); - } - - float shift = pitchAngleToTranslation(w, displayPitch-degrees); - - // TODO: Intrusion detection and evasion. That is, don't draw - // where the compass has intruded. - - painter.translate(0, shift); - QPointF start(-linewidth*w, 0); - QPointF end(linewidth*w, 0); - painter.drawLine(start, end); - - if (isMajor && (drawNumbersLeft||drawNumbersRight)) { - int displayDegrees = degrees; - if(displayDegrees>90) displayDegrees = 180-displayDegrees; - else if (displayDegrees<-90) displayDegrees = -180 - displayDegrees; - if (SHOW_ZERO_ON_SCALES || degrees) { - QString s_number; - if (isnan(this->pitch)) - s_number.sprintf("-"); - else - s_number.sprintf("%d", displayDegrees); - if (drawNumbersLeft) drawTextRightCenter(painter, s_number, mediumTextSize, -PITCH_SCALE_MAJORWIDTH * w-10, 0); - if (drawNumbersRight) drawTextLeftCenter(painter, s_number, mediumTextSize, PITCH_SCALE_MAJORWIDTH * w+10, 0); - } - } - - painter.setTransform(savedTransform); - } -} - -void PrimaryFlightDisplay::drawRollScale( - QPainter& painter, - QRectF area, - bool drawTicks, - bool drawNumbers) { - - qreal w = area.width(); - if (wlength) ?-tickValues[i-length-1] : tickValues[i]; - painter.rotate(degrees - previousRotation); - previousRotation = degrees; - - QPointF start(0, -_size/2); - QPointF end(0, -(1.0+ROLL_SCALE_TICKMARKLENGTH)*_size/2); - - painter.drawLine(start, end); - - QString s_number; - if (SHOW_ZERO_ON_SCALES || degrees) - s_number.sprintf("%d", abs(degrees)); - - if (drawNumbers) { - drawTextCenterBottom(painter, s_number, mediumTextSize, 0, -(ROLL_SCALE_RADIUS+ROLL_SCALE_TICKMARKLENGTH*1.7)*w); - } - } - } -} - -void PrimaryFlightDisplay::drawAIAttitudeScales( - QPainter& painter, - QRectF area, - float intrusion - ) { - float displayRoll = this->roll; - if (isnan(displayRoll)) - displayRoll = 0; - // To save computations, we do these transformations once for both scales: - painter.resetTransform(); - painter.translate(area.center()); - painter.rotate(-displayRoll); - QTransform saved = painter.transform(); - - drawRollScale(painter, area, true, true); - painter.setTransform(saved); - drawPitchScale(painter, area, intrusion, true, true); -} - -void PrimaryFlightDisplay::drawAICompassDisk(QPainter& painter, QRectF area, float halfspan) { - float displayHeading = this->heading; - if (isnan(displayHeading)) - displayHeading = 0; - - float start = displayHeading - halfspan; - float end = displayHeading + halfspan; - - int firstTick = ceil(start / COMPASS_DISK_RESOLUTION) * COMPASS_DISK_RESOLUTION; - int lastTick = floor(end / COMPASS_DISK_RESOLUTION) * COMPASS_DISK_RESOLUTION; - - float radius = area.width()/2; - float innerRadius = radius * 0.96; - painter.resetTransform(); - painter.setBrush(instrumentBackground); - painter.setPen(instrumentEdgePen); - painter.drawEllipse(area); - painter.setBrush(Qt::NoBrush); - - QPen scalePen(Qt::black); - scalePen.setWidthF(fineLineWidth); - - for (int tickYaw = firstTick; tickYaw <= lastTick; tickYaw += COMPASS_DISK_RESOLUTION) { - int displayTick = tickYaw; - if (displayTick < 0) displayTick+=360; - else if (displayTick>=360) displayTick-=360; - - // yaw is in center. - float off = tickYaw - displayHeading; - // wrap that to [-180..180] - if (off<=-180) off+= 360; else if (off>180) off -= 360; - - painter.translate(area.center()); - painter.rotate(off); - bool drewArrow = false; - bool isMajor = displayTick % COMPASS_DISK_MAJORTICK == 0; - - // If heading unknown, still draw marks but no numbers. - if (!isnan(this->heading) && - (displayTick==30 || displayTick==60 || - displayTick==120 || displayTick==150 || - displayTick==210 || displayTick==240 || - displayTick==300 || displayTick==330) - ) { - // draw a number - QString s_number; - s_number.sprintf("%d", displayTick/10); - painter.setPen(scalePen); - drawTextCenter(painter, s_number, smallTextSize, 0, -innerRadius*0.75); - } else { - if (displayTick % COMPASS_DISK_ARROWTICK == 0) { - if (displayTick!=0) { - QPainterPath markerPath(QPointF(0, -innerRadius*(1-COMPASS_DISK_MARKERHEIGHT/2))); - markerPath.lineTo(innerRadius*COMPASS_DISK_MARKERWIDTH/4, -innerRadius); - markerPath.lineTo(-innerRadius*COMPASS_DISK_MARKERWIDTH/4, -innerRadius); - markerPath.closeSubpath(); - painter.setPen(scalePen); - painter.setBrush(Qt::SolidPattern); - painter.drawPath(markerPath); - painter.setBrush(Qt::NoBrush); - drewArrow = true; - } - // If heading unknown, still draw marks but no N S E W. - if (!isnan(this->heading) && displayTick%90 == 0) { - // Also draw a label - QString name = compassWindNames[displayTick / 45]; - painter.setPen(scalePen); - drawTextCenter(painter, name, mediumTextSize, 0, -innerRadius*0.75); - } - } - } - // draw the scale lines. If an arrow was drawn, stay off from it. - - QPointF p_start = drewArrow ? QPoint(0, -innerRadius*0.94) : QPoint(0, -innerRadius); - QPoint p_end = isMajor ? QPoint(0, -innerRadius*0.86) : QPoint(0, -innerRadius*0.90); - - painter.setPen(scalePen); - painter.drawLine(p_start, p_end); - painter.resetTransform(); - } - - painter.setPen(scalePen); - painter.translate(area.center()); - QPainterPath markerPath(QPointF(0, -radius-2)); - markerPath.lineTo(radius*COMPASS_DISK_MARKERWIDTH/2, -radius-radius*COMPASS_DISK_MARKERHEIGHT-2); - markerPath.lineTo(-radius*COMPASS_DISK_MARKERWIDTH/2, -radius-radius*COMPASS_DISK_MARKERHEIGHT-2); - markerPath.closeSubpath(); - painter.drawPath(markerPath); - - qreal digitalCompassYCenter = -radius*0.52; - qreal digitalCompassHeight = radius*0.28; - - QPointF digitalCompassBottom(0, digitalCompassYCenter+digitalCompassHeight); - QPointF digitalCompassAbsoluteBottom = painter.transform().map(digitalCompassBottom); - - qreal digitalCompassUpshift = digitalCompassAbsoluteBottom.y()>height() ? digitalCompassAbsoluteBottom.y()-height() : 0; - - QRectF digitalCompassRect(-radius/3, -radius*0.52-digitalCompassUpshift, radius*2/3, radius*0.28); - painter.setPen(instrumentEdgePen); - painter.drawRoundedRect(digitalCompassRect, instrumentEdgePen.widthF()*2/3, instrumentEdgePen.widthF()*2/3); - - QString s_digitalCompass; - - if (isnan(this->heading)) - s_digitalCompass.sprintf("---"); - else { - /* final safeguard for really stupid systems */ - int digitalCompassValue = static_cast(qRound((double)heading)) % 360; - s_digitalCompass.sprintf("%03d", digitalCompassValue); - } - - QPen pen; - pen.setWidthF(lineWidth); - pen.setColor(Qt::white); - painter.setPen(pen); - - drawTextCenter(painter, s_digitalCompass, largeTextSize, 0, -radius*0.38-digitalCompassUpshift); - - // The CDI - if (shouldDisplayNavigationData() && !isnan(navigationTargetBearing) && !isinf(navigationCrosstrackError)) { - painter.resetTransform(); - painter.translate(area.center()); - // TODO : Sign might be wrong? - // TODO : The case where error exceeds max. Truncate to max. and make that visible somehow. - bool errorBeyondRadius = false; - if (abs(navigationCrosstrackError) > CROSSTRACK_MAX) { - errorBeyondRadius = true; - navigationCrosstrackError = navigationCrosstrackError>0 ? CROSSTRACK_MAX : -CROSSTRACK_MAX; - } - - float r = radius * CROSSTRACK_RADIUS; - float x = navigationCrosstrackError / CROSSTRACK_MAX * r; - float y = qSqrt(r*r - x*x); // the positive y, there is also a negative. - - float sillyHeading = 0; - float angle = sillyHeading - navigationTargetBearing; // TODO: sign. - painter.rotate(-angle); - - QPen pen; - pen.setWidthF(lineWidth); - pen.setColor(Qt::black); - if(errorBeyondRadius) { - pen.setStyle(Qt::DotLine); - } - painter.setPen(pen); - - painter.drawLine(QPointF(x, y), QPointF(x, -y)); - } -} - -void PrimaryFlightDisplay::drawAltimeter( - QPainter& painter, - QRectF area - ) { - - float primaryAltitude = altitudeWGS84; - float secondaryAltitude = std::numeric_limits::quiet_NaN(); - - painter.resetTransform(); - fillInstrumentBackground(painter, area); - - QPen pen; - pen.setWidthF(lineWidth); - - pen.setColor(Qt::white); - painter.setPen(pen); - - float h = area.height(); - float w = area.width(); - float secondaryAltitudeBoxHeight = mediumTextSize * 2; - // The height where we being with new tickmarks. - float effectiveHalfHeight = h*0.45; - - // not yet implemented: Display of secondary altitude. - if (!isnan(secondaryAltitude)) { - effectiveHalfHeight -= secondaryAltitudeBoxHeight; - } - - float markerHalfHeight = mediumTextSize*0.8; - float leftEdge = instrumentEdgePen.widthF()*2; - float rightEdge = w-leftEdge; - float tickmarkLeft = leftEdge; - float tickmarkRightMajor = tickmarkLeft+TAPE_GAUGES_TICKWIDTH_MAJOR*w; - float tickmarkRightMinor = tickmarkLeft+TAPE_GAUGES_TICKWIDTH_MINOR*w; - float numbersLeft = 0.42*w; - float markerTip = (tickmarkLeft*2+tickmarkRightMajor)/3; - float scaleCenterAltitude = isnan(primaryAltitude) ? 0 : primaryAltitude; - - // altitude scale - float start = scaleCenterAltitude - ALTIMETER_LINEAR_SPAN/2; - float end = scaleCenterAltitude + ALTIMETER_LINEAR_SPAN/2; - int firstTick = ceil(start / ALTIMETER_LINEAR_RESOLUTION) * ALTIMETER_LINEAR_RESOLUTION; - int lastTick = floor(end / ALTIMETER_LINEAR_RESOLUTION) * ALTIMETER_LINEAR_RESOLUTION; - for (int tickAlt = firstTick; tickAlt <= lastTick; tickAlt += ALTIMETER_LINEAR_RESOLUTION) { - float y = (tickAlt-scaleCenterAltitude)*effectiveHalfHeight/(ALTIMETER_LINEAR_SPAN/2); - bool isMajor = tickAlt % ALTIMETER_LINEAR_MAJOR_RESOLUTION == 0; - - painter.resetTransform(); - painter.translate(area.left(), area.center().y() - y); - pen.setColor(tickAlt<0 ? redColor : Qt::white); - painter.setPen(pen); - if (isMajor) { - painter.drawLine(tickmarkLeft, 0, tickmarkRightMajor, 0); - QString s_alt; - s_alt.sprintf("%d", abs(tickAlt)); - drawTextLeftCenter(painter, s_alt, mediumTextSize, numbersLeft, 0); - } else { - painter.drawLine(tickmarkLeft, 0, tickmarkRightMinor, 0); - } - } - - QPainterPath markerPath(QPoint(markerTip, 0)); - markerPath.lineTo(markerTip+markerHalfHeight, markerHalfHeight); - markerPath.lineTo(rightEdge, markerHalfHeight); - markerPath.lineTo(rightEdge, -markerHalfHeight); - markerPath.lineTo(markerTip+markerHalfHeight, -markerHalfHeight); - markerPath.closeSubpath(); - - painter.resetTransform(); - painter.translate(area.left(), area.center().y()); - - pen.setWidthF(lineWidth); - pen.setColor(Qt::white); - painter.setPen(pen); - - painter.setBrush(Qt::SolidPattern); - painter.drawPath(markerPath); - painter.setBrush(Qt::NoBrush); - - pen.setColor(Qt::white); - painter.setPen(pen); - - QString s_alt; - if (isnan(primaryAltitude)) - s_alt.sprintf("---"); - else - s_alt.sprintf("%3.0f", primaryAltitude); - - float xCenter = (markerTip+rightEdge)/2; - drawTextCenter(painter, s_alt, mediumTextSize, xCenter, 0); - - // draw simple in-tape VVI. - if (!isnan(climbRate)) { - float vvPixHeight = -climbRate/ALTIMETER_VVI_SPAN * effectiveHalfHeight; - if (abs (vvPixHeight) < markerHalfHeight) - return; // hidden behind marker. - - float vvSign = vvPixHeight>0 ? 1 : -1; // reverse y sign - - QPointF vvArrowBegin(rightEdge - w*ALTIMETER_VVI_WIDTH/2, markerHalfHeight*vvSign); - QPointF vvArrowEnd(rightEdge - w*ALTIMETER_VVI_WIDTH/2, vvPixHeight); - painter.drawLine(vvArrowBegin, vvArrowEnd); - - // Yeah this is a repetition of above code but we are going to trash it all anyway, so no fix. - float vvArowHeadSize = abs(vvPixHeight - markerHalfHeight*vvSign); - if (vvArowHeadSize > w*ALTIMETER_VVI_WIDTH/3) vvArowHeadSize = w*ALTIMETER_VVI_WIDTH/3; - - float xcenter = rightEdge-w*ALTIMETER_VVI_WIDTH/2; - - QPointF vvArrowHead(xcenter+vvArowHeadSize, vvPixHeight - vvSign *vvArowHeadSize); - painter.drawLine(vvArrowHead, vvArrowEnd); - - vvArrowHead = QPointF(xcenter-vvArowHeadSize, vvPixHeight - vvSign * vvArowHeadSize); - painter.drawLine(vvArrowHead, vvArrowEnd); - } - - // print secondary altitude - if (!isnan(secondaryAltitude)) { - QRectF saBox(area.x(), area.y()-secondaryAltitudeBoxHeight, w, secondaryAltitudeBoxHeight); - painter.resetTransform(); - painter.translate(saBox.center()); - QString s_salt; - s_salt.sprintf("%3.0f", secondaryAltitude); - drawTextCenter(painter, s_salt, mediumTextSize, 0, 0); - } -} - -void PrimaryFlightDisplay::drawVelocityMeter( - QPainter& painter, - QRectF area - ) { - - painter.resetTransform(); - fillInstrumentBackground(painter, area); - - QPen pen; - pen.setWidthF(lineWidth); - - float h = area.height(); - float w = area.width(); - float effectiveHalfHeight = h*0.45; - float markerHalfHeight = mediumTextSize; - float leftEdge = instrumentEdgePen.widthF()*2; - float tickmarkRight = w-leftEdge; - float tickmarkLeftMajor = tickmarkRight-w*TAPE_GAUGES_TICKWIDTH_MAJOR; - float tickmarkLeftMinor = tickmarkRight-w*TAPE_GAUGES_TICKWIDTH_MINOR; - float numbersRight = 0.42*w; - float markerTip = (tickmarkLeftMajor+tickmarkRight*2)/3; - - // Select between air and ground speed: - float speed = (isAirplane() && !isnan(airSpeed)) ? airSpeed : groundSpeed; - float centerScaleSpeed = isnan(speed) ? 0 : speed; - - float start = centerScaleSpeed - AIRSPEED_LINEAR_SPAN/2; - float end = centerScaleSpeed + AIRSPEED_LINEAR_SPAN/2; - - int firstTick = ceil(start / AIRSPEED_LINEAR_RESOLUTION) * AIRSPEED_LINEAR_RESOLUTION; - int lastTick = floor(end / AIRSPEED_LINEAR_RESOLUTION) * AIRSPEED_LINEAR_RESOLUTION; - for (int tickSpeed = firstTick; tickSpeed <= lastTick; tickSpeed += AIRSPEED_LINEAR_RESOLUTION) { - pen.setColor(tickSpeed<0 ? redColor : Qt::white); - painter.setPen(pen); - - float y = (tickSpeed-centerScaleSpeed)*effectiveHalfHeight/(AIRSPEED_LINEAR_SPAN/2); - bool hasText = tickSpeed % AIRSPEED_LINEAR_MAJOR_RESOLUTION == 0; - painter.resetTransform(); - - painter.translate(area.left(), area.center().y() - y); - - if (hasText) { - painter.drawLine(tickmarkLeftMajor, 0, tickmarkRight, 0); - QString s_speed; - s_speed.sprintf("%d", abs(tickSpeed)); - drawTextRightCenter(painter, s_speed, mediumTextSize, numbersRight, 0); - } else { - painter.drawLine(tickmarkLeftMinor, 0, tickmarkRight, 0); - } - } - - QPainterPath markerPath(QPoint(markerTip, 0)); - markerPath.lineTo(markerTip-markerHalfHeight, markerHalfHeight); - markerPath.lineTo(leftEdge, markerHalfHeight); - markerPath.lineTo(leftEdge, -markerHalfHeight); - markerPath.lineTo(markerTip-markerHalfHeight, -markerHalfHeight); - markerPath.closeSubpath(); - - painter.resetTransform(); - painter.translate(area.left(), area.center().y()); - - pen.setWidthF(lineWidth); - pen.setColor(Qt::white); - painter.setPen(pen); - - painter.setBrush(Qt::SolidPattern); - painter.drawPath(markerPath); - painter.setBrush(Qt::NoBrush); - - pen.setColor(Qt::white); - painter.setPen(pen); - QString s_alt; - if (isnan(speed)) - s_alt.sprintf("---"); - else - s_alt.sprintf("%3.1f", speed); - float xCenter = (markerTip+leftEdge)/2; - drawTextCenter(painter, s_alt, mediumTextSize, xCenter, 0); -} - -static const int TOP = (1<<0); -static const int BOTTOM = (1<<1); -static const int LEFT = (1<<2); -static const int RIGHT = (1<<3); - -static const int TOP_HALF = (1<<4); -static const int BOTTOM_HALF = (1<<5); -static const int LEFT_HALF = (1<<6); -static const int RIGHT_HALF = (1<<7); - -void applyMargin(QRectF& area, float margin, int where) { - if (margin < 0.01) return; - - QRectF save(area); - qreal consumed; - - if (where & LEFT) { - area.setX(save.x() + (consumed = margin)); - } else if (where & LEFT_HALF) { - area.setX(save.x() + (consumed = margin/2)); - } else { - consumed = 0; - } - - if (where & RIGHT) { - area.setWidth(save.width()-consumed-margin); - } else if (where & RIGHT_HALF) { - area.setWidth(save.width()-consumed-margin/2); - } else { - area.setWidth(save.width()-consumed); - } - - if (where & TOP) { - area.setY(save.y() + (consumed = margin)); - } else if (where & TOP_HALF) { - area.setY(save.y() + (consumed = margin/2)); - } else { - consumed = 0; - } - - if (where & BOTTOM) { - area.setHeight(save.height()-consumed-margin); - } else if (where & BOTTOM_HALF) { - area.setHeight(save.height()-consumed-margin/2); - } else { - area.setHeight(save.height()-consumed); - } -} - -void setMarginsForInlineLayout(qreal margin, QRectF& panel1, QRectF& panel2, QRectF& panel3, QRectF& panel4) { - applyMargin(panel1, margin, BOTTOM|LEFT|RIGHT_HALF); - applyMargin(panel2, margin, BOTTOM|LEFT_HALF|RIGHT_HALF); - applyMargin(panel3, margin, BOTTOM|LEFT_HALF|RIGHT_HALF); - applyMargin(panel4, margin, BOTTOM|LEFT_HALF|RIGHT); -} - -void setMarginsForCornerLayout(qreal margin, QRectF& panel1, QRectF& panel2, QRectF& panel3, QRectF& panel4) { - applyMargin(panel1, margin, BOTTOM|LEFT|RIGHT_HALF); - applyMargin(panel2, margin, BOTTOM|LEFT_HALF|RIGHT_HALF); - applyMargin(panel3, margin, BOTTOM|LEFT_HALF|RIGHT_HALF); - applyMargin(panel4, margin, BOTTOM|LEFT_HALF|RIGHT); -} - -inline qreal tapesGaugeWidthFor(qreal containerWidth, qreal preferredAIWidth) { - qreal result = (containerWidth - preferredAIWidth) / 2.0f; - qreal minimum = containerWidth / 5.5f; - if (result < minimum) result = minimum; - return result; -} - -void PrimaryFlightDisplay::doPaint() { - QPainter painter; - painter.begin(this); - painter.setRenderHint(QPainter::Antialiasing, true); - painter.setRenderHint(QPainter::HighQualityAntialiasing, true); - - qreal margin = height()/100.0f; - - // The AI centers on this area. - QRectF AIMainArea; - // The AI paints on this area. It should contain the AIMainArea. - QRectF AIPaintArea; - - QRectF compassArea; - QRectF altimeterArea; - QRectF velocityMeterArea; - QRectF sensorsStatsArea; - QRectF linkStatsArea; - QRectF sysStatsArea; - QRectF missionStatsArea; - - painter.fillRect(rect(), Qt::black); - qreal tapeGaugeWidth; - - qreal compassHalfSpan = 180; - float compassAIIntrusion = 0; - - switch(layout) { - case COMPASS_INTEGRATED: { - tapeGaugeWidth = tapesGaugeWidthFor(width(), width()); - qreal aiheight = height(); - qreal aiwidth = width()-tapeGaugeWidth*2; - if (aiheight > aiwidth) aiheight = aiwidth; - - AIMainArea = QRectF( - tapeGaugeWidth, - 0, - aiwidth, - aiheight); - - AIPaintArea = QRectF( - 0, - 0, - width(), - height()); - - // Tape gauges get so much width that the AI area not covered by them is perfectly square. - velocityMeterArea = QRectF (0, 0, tapeGaugeWidth, aiheight); - altimeterArea = QRectF(AIMainArea.right(), 0, tapeGaugeWidth, aiheight); - - if (style == NO_OVERLAYS) { - applyMargin(AIMainArea, margin, TOP|BOTTOM); - applyMargin(altimeterArea, margin, TOP|BOTTOM|RIGHT); - applyMargin(velocityMeterArea, margin, TOP|BOTTOM|LEFT); - setMarginsForInlineLayout(margin, sensorsStatsArea, linkStatsArea, sysStatsArea, missionStatsArea); - } - - qreal compassRelativeWidth = 0.75; - qreal compassBottomMargin = 0.78; - - qreal compassSize = compassRelativeWidth * AIMainArea.width(); // Diameter is this times the width. - - qreal compassCenterY; - compassCenterY = AIMainArea.bottom() + compassSize / 4; - - if (height() - compassCenterY > AIMainArea.width()/2*compassBottomMargin) - compassCenterY = height()-AIMainArea.width()/2*compassBottomMargin; - - // TODO: This is bad style... - compassCenterY = (compassCenterY * 2 + AIMainArea.bottom() + compassSize / 4) / 3; - - compassArea = QRectF(AIMainArea.x()+(1-compassRelativeWidth)/2*AIMainArea.width(), - compassCenterY-compassSize/2, - compassSize, - compassSize); - - if (height()-compassCenterY < compassSize/2) { - compassHalfSpan = acos((compassCenterY-height())*2/compassSize) * 180/M_PI + COMPASS_DISK_RESOLUTION; - if (compassHalfSpan > 180) compassHalfSpan = 180; - } - - compassAIIntrusion = compassSize/2 + AIMainArea.bottom() - compassCenterY; - if (compassAIIntrusion<0) compassAIIntrusion = 0; - - break; - } - case COMPASS_SEPARATED: { - // A layout for containers higher than their width. - tapeGaugeWidth = tapesGaugeWidthFor(width(), width()); - - qreal aiheight = width() - tapeGaugeWidth*2; - qreal panelsHeight = 0; - - AIMainArea = QRectF( - tapeGaugeWidth, - 0, - width()-tapeGaugeWidth*2, - aiheight); - - AIPaintArea = style == OVERLAY_HSI ? - QRectF( - 0, - 0, - width(), - height() - panelsHeight) : AIMainArea; - - velocityMeterArea = QRectF (0, 0, tapeGaugeWidth, aiheight); - altimeterArea = QRectF(AIMainArea.right(), 0, tapeGaugeWidth, aiheight); - - QPoint compassCenter = QPoint(width()/2, AIMainArea.bottom()+width()/2); - qreal compassDiam = width() * 0.8; - compassArea = QRectF(compassCenter.x()-compassDiam/2, compassCenter.y()-compassDiam/2, compassDiam, compassDiam); - break; - } - } - - bool hadClip = painter.hasClipping(); - - painter.setClipping(true); - painter.setClipRect(AIPaintArea); - - drawAIGlobalFeatures(painter, AIMainArea, AIPaintArea); - drawAIAttitudeScales(painter, AIMainArea, compassAIIntrusion); - drawAIAirframeFixedFeatures(painter, AIMainArea); - - drawAICompassDisk(painter, compassArea, compassHalfSpan); - - painter.setClipping(hadClip); - - drawAltimeter(painter, altimeterArea); - - drawVelocityMeter(painter, velocityMeterArea); - - painter.end(); -} diff --git a/src/ui/PrimaryFlightDisplay.h b/src/ui/PrimaryFlightDisplay.h deleted file mode 100644 index 1961bd1305dd545b5f7a7e92d6dd402ebf731aef..0000000000000000000000000000000000000000 --- a/src/ui/PrimaryFlightDisplay.h +++ /dev/null @@ -1,154 +0,0 @@ -#ifndef PRIMARYFLIGHTDISPLAY_H -#define PRIMARYFLIGHTDISPLAY_H - -#include -#include -#include "UASInterface.h" - -class PrimaryFlightDisplay : public QWidget -{ - Q_OBJECT -public: - PrimaryFlightDisplay(QWidget* parent = NULL); - ~PrimaryFlightDisplay(); - -public slots: - /** @brief Attitude from main autopilot / system state */ - void updateAttitude(UASInterface* uas, double roll, double pitch, double yaw, quint64 timestamp); - /** @brief Attitude from one specific component / redundant autopilot */ - void updateAttitude(UASInterface* uas, int component, double roll, double pitch, double yaw, quint64 timestamp); - - void updateSpeed(UASInterface* uas, double _groundSpeed, double _airSpeed, quint64 timestamp); - void updateAltitude(UASInterface* uas, double _altitudeAMSL, double _altitudeWGS84, double _altitudeRelative, double _climbRate, quint64 timestamp); - void updateNavigationControllerErrors(UASInterface* uas, double altitudeError, double speedError, double xtrackError); - - /** @brief Set the currently monitored UAS */ - void forgetUAS(UASInterface* uas); - void setActiveUAS(UASInterface* uas); - - void checkUpdate(); - -protected: - - bool _valuesChanged; - quint64 _valuesLastPainted; - - enum Layout { - COMPASS_INTEGRATED, - COMPASS_SEPARATED // For a very high container. Feature panels are at bottom. - }; - - enum Style { - NO_OVERLAYS, // Hzon not visible through tapes nor through feature panels. Frames with margins between. - OVERLAY_HORIZONTAL, // Hzon visible through tapes and (frameless) feature panels. - OVERLAY_HSI // Hzon visible through everything except bottom feature panels. - }; - - void paintEvent(QPaintEvent *event); - void resizeEvent(QResizeEvent *e); - - // from HUD.h: - - /** @brief Preferred Size */ - QSize sizeHint() const; - /** @brief Start updating widget */ - void showEvent(QShowEvent* event); - /** @brief Stop updating widget */ - void hideEvent(QHideEvent* event); - -signals: - void visibilityChanged(bool visible); - -private: - /* - * There are at least these differences between airplane and copter PDF view: - * - Airplane show absolute altutude in altimeter, copter shows relative to home - */ - bool isAirplane(); - bool shouldDisplayNavigationData(); - - void drawTextCenter(QPainter& painter, QString text, float fontSize, float x, float y); - void drawTextLeftCenter(QPainter& painter, QString text, float fontSize, float x, float y); - void drawTextRightCenter(QPainter& painter, QString text, float fontSize, float x, float y); - void drawTextCenterBottom(QPainter& painter, QString text, float fontSize, float x, float y); - void drawTextCenterTop(QPainter& painter, QString text, float fontSize, float x, float y); - void drawAIGlobalFeatures(QPainter& painter, QRectF mainArea, QRectF paintArea); - void drawAIAirframeFixedFeatures(QPainter& painter, QRectF area); - void drawPitchScale(QPainter& painter, QRectF area, float intrusion, bool drawNumbersLeft, bool drawNumbersRight); - void drawRollScale(QPainter& painter, QRectF area, bool drawTicks, bool drawNumbers); - void drawAIAttitudeScales(QPainter& painter, QRectF area, float intrusion); - void drawAICompassDisk(QPainter& painter, QRectF area, float halfspan); - void drawSeparateCompassDisk(QPainter& painter, QRectF area); - - void drawAltimeter(QPainter& painter, QRectF area); - void drawVelocityMeter(QPainter& painter, QRectF area); - void fillInstrumentBackground(QPainter& painter, QRectF edge); - void fillInstrumentOpagueBackground(QPainter& painter, QRectF edge); - void drawInstrumentBackground(QPainter& painter, QRectF edge); - - /* This information is not currently included. These headers left in as a memo for restoration later. - void drawLinkStatsPanel(QPainter& painter, QRectF area); - void drawSysStatsPanel(QPainter& painter, QRectF area); - void drawMissionStatsPanel(QPainter& painter, QRectF area); - void drawSensorsStatsPanel(QPainter& painter, QRectF area); - */ - - void doPaint(); - - UASInterface* uas; ///< The uas currently monitored - - bool didReceiveSpeed; - - float roll; - float pitch; - float heading; - - float altitudeAMSL; - float altitudeWGS84; - float altitudeRelative; - - // APM: GPS and baro mix above home (GPS) altitude. This value comes from the GLOBAL_POSITION_INT message. - // Do !!!NOT!!! ever do altitude calculations at the ground station. There are enough pitfalls already. - // If the MP "set home altitude" button is migrated to here, it must set the UAS home altitude, not a GS-local one. - float aboveHomeAltitude; - - float groundSpeed; - float airSpeed; - float climbRate; - - float navigationAltitudeError; - float navigationSpeedError; - float navigationCrosstrackError; - float navigationTargetBearing; - - Layout layout; // The display layout. - Style style; // The AI style (tapes translucent or opague) - - // TODO: Use stylesheet colors? - QColor redColor; - QColor amberColor; - QColor greenColor; - - qreal lineWidth; - qreal fineLineWidth; - - qreal smallTextSize; - qreal mediumTextSize; - qreal largeTextSize; - - // Globally used stuff only. - QPen instrumentEdgePen; - QBrush instrumentBackground; - QBrush instrumentOpagueBackground; - - QFont font; - - QTimer* refreshTimer; ///< The main timer, controls the update rate - - static const int tickValues[]; - static const QString compassWindNames[]; - - static const int updateInterval = 50; -}; - -#endif // PRIMARYFLIGHTDISPLAY_H diff --git a/src/ui/QGCBaseParamWidget.cc b/src/ui/QGCBaseParamWidget.cc deleted file mode 100644 index c3a20dcb6814a23ecdc749b1be44308d21b27f99..0000000000000000000000000000000000000000 --- a/src/ui/QGCBaseParamWidget.cc +++ /dev/null @@ -1,138 +0,0 @@ -#include "QGCBaseParamWidget.h" - -#include -#include -#include - -#include "QGCUASParamManagerInterface.h" -#include "UASInterface.h" -#include "QGCApplication.h" -#include "QGCFileDialog.h" - -QGCBaseParamWidget::QGCBaseParamWidget(QWidget *parent) : - QWidget(parent), - paramMgr(NULL), - mav(NULL), - updatingParamNameLock("") -{ -} - -QGCBaseParamWidget* QGCBaseParamWidget::initWithUAS(UASInterface *uas) -{ - setUAS(uas); - return this; -} - -void QGCBaseParamWidget::setUAS(UASInterface* uas) -{ - if (uas != mav) { - if (mav) { - //TODO disconnect any connections as needed - disconnectViewSignalsAndSlots(); - disconnectFromParamManager(); - clearOnboardParamDisplay(); - clearPendingParamDisplay(); - } - - mav = uas; - - if (mav) { - connectToParamManager(); - connectViewSignalsAndSlots(); - layoutWidget(); - } - } - -} - - -void QGCBaseParamWidget::connectToParamManager() -{ - paramMgr = mav->getParamManager(); - //TODO route via paramManager instead? - // Listen to updated param signals from the data model - connect(paramMgr, SIGNAL(parameterUpdated(int, QString , QVariant )), - this, SLOT(handleOnboardParamUpdate(int,QString,QVariant))); - - connect(paramMgr, SIGNAL(pendingParamUpdate(int , const QString&, QVariant , bool )), - this, SLOT(handlePendingParamUpdate(int , const QString& , QVariant, bool ))); - - // Listen for param list reload finished - connect(paramMgr, SIGNAL(parameterListUpToDate()), - this, SLOT(handleOnboardParameterListUpToDate())); - if (paramMgr->parametersReady()) { - handleOnboardParameterListUpToDate(); - } - - // Listen to communications status messages so we can display them - connect(paramMgr, SIGNAL(parameterStatusMsgUpdated(QString,int)), - this, SLOT(handleParamStatusMsgUpdate(QString , int ))); -} - - -void QGCBaseParamWidget::disconnectFromParamManager() -{ - disconnect(paramMgr, SIGNAL(parameterUpdated(int, QString , QVariant )), - this, SLOT(handleOnboardParamUpdate(int,QString,QVariant))); - - disconnect(paramMgr, SIGNAL(pendingParamUpdate(int , const QString&, QVariant , bool )), - this, SLOT(handlePendingParamUpdate(int , const QString& , QVariant, bool ))); - - disconnect(paramMgr, SIGNAL(parameterListUpToDate()), - this, SLOT(handleOnboardParameterListUpToDate())); - - // Listen to communications status messages so we can display them - disconnect(paramMgr, SIGNAL(parameterStatusMsgUpdated(QString,int)), - this, SLOT(handleParamStatusMsgUpdate(QString , int ))); - - paramMgr = NULL; -} - - - -void QGCBaseParamWidget::requestOnboardParamsUpdate() -{ - paramMgr->requestParameterList(); -} - -void QGCBaseParamWidget::requestOnboardParamUpdate(QString parameterName) -{ - paramMgr->requestParameterUpdate(paramMgr->getDefaultComponentId(), parameterName); -} - - -void QGCBaseParamWidget::saveParametersToFile() -{ - if (!mav) - return; - QString fileName = QGCFileDialog::getSaveFileName( - this, tr("Save Parameters"), qgcApp()->savedParameterFilesLocation(), tr("Parameter Files (*.params)"), "params", true); - if (!fileName.isEmpty()) { - QFile file(fileName); - // TODO Display error message to the user if the file can't be created - if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { - return; - } - QTextStream outstream(&file); - paramMgr->writeOnboardParamsToStream(outstream,mav->getUASName()); - file.close(); - } -} - - -void QGCBaseParamWidget::loadParametersFromFile() -{ - if (!mav) - return; - QString fileName = QGCFileDialog::getOpenFileName( - this, tr("Load Parameters"), qgcApp()->savedParameterFilesLocation(), - tr("Parameter Files (*.params);;All Files (*)")); - QFile file(fileName); - // TODO Display error message to the user if the file can't be opened - if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { - return; - } - QTextStream in(&file); - paramMgr->readPendingParamsFromStream(in); - file.close(); -} diff --git a/src/ui/QGCBaseParamWidget.h b/src/ui/QGCBaseParamWidget.h deleted file mode 100644 index 8ec34711dc9b93688dd081301ceff3fe39b0235e..0000000000000000000000000000000000000000 --- a/src/ui/QGCBaseParamWidget.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef QGCBASEPARAMWIDGET_H -#define QGCBASEPARAMWIDGET_H - -#include -#include - - - - -//forward declarations -class QGCUASParamManagerInterface; -class UASInterface; - - -class QGCBaseParamWidget : public QWidget -{ - Q_OBJECT -public: - explicit QGCBaseParamWidget(QWidget *parent = 0); - virtual QGCBaseParamWidget* initWithUAS(UASInterface* uas);///< Two-stage construction: initialize this object - virtual void setUAS(UASInterface* uas);///< Allows swapping the underlying UAS - -protected: - virtual void setParameterStatusMsg(const QString& msg) = 0; - virtual void layoutWidget() = 0;///< Layout the appearance of this widget - virtual void connectViewSignalsAndSlots() = 0;///< Connect view signals/slots as needed - virtual void disconnectViewSignalsAndSlots() = 0;///< Disconnect view signals/slots as needed - virtual void connectToParamManager(); ///>Connect to any required param manager signals - virtual void disconnectFromParamManager(); ///< Disconnect from any connected param manager signals - -signals: - -public slots: - virtual void handleOnboardParamUpdate(int component,const QString& parameterName, QVariant value) = 0; - virtual void handlePendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending) = 0; - virtual void handleOnboardParameterListUpToDate() = 0; - virtual void handleParamStatusMsgUpdate(QString msg, int level) = 0; - /** @brief Clear the rendering of onboard parameters */ - virtual void clearOnboardParamDisplay() = 0; - /** @brief Clear the rendering of pending parameters */ - virtual void clearPendingParamDisplay() = 0; - - /** @brief Request list of parameters from MAV */ - virtual void requestOnboardParamsUpdate(); - - /** @brief Request single parameter from MAV */ - virtual void requestOnboardParamUpdate(QString parameterName); - - - /** @brief Store parameters to a file */ - virtual void saveParametersToFile(); - /** @brief Load parameters from a file */ - virtual void loadParametersFromFile(); - -protected: - QGCUASParamManagerInterface* paramMgr; - UASInterface* mav; - QString updatingParamNameLock; ///< Name of param currently being updated-- used for reducing echo on param change - -}; - -#endif // QGCBASEPARAMWIDGET_H diff --git a/src/ui/QGCCommConfiguration.cc b/src/ui/QGCCommConfiguration.cc index b6339a83cf34a48c19bdb99b1584ef592b5c6fe4..39e118c227c264b2d917b1807a656e8b876a7f27 100644 --- a/src/ui/QGCCommConfiguration.cc +++ b/src/ui/QGCCommConfiguration.cc @@ -48,7 +48,7 @@ QGCCommConfiguration::QGCCommConfiguration(QWidget *parent, LinkConfiguration *c _ui->typeCombo->addItem(tr("Serial"), LinkConfiguration::TypeSerial); _ui->typeCombo->addItem(tr("UDP"), LinkConfiguration::TypeUdp); _ui->typeCombo->addItem(tr("TCP"), LinkConfiguration::TypeTcp); -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG _ui->typeCombo->addItem(tr("Mock"), LinkConfiguration::TypeMock); #endif @@ -134,7 +134,7 @@ void QGCCommConfiguration::_loadTypeConfigWidget(int type) _ui->typeCombo->setCurrentIndex(_ui->typeCombo->findData(LinkConfiguration::TypeTcp)); } break; -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG case LinkConfiguration::TypeMock: { _ui->linkScrollArea->setWidget(NULL); _ui->linkGroupBox->setTitle(tr("Mock Link")); diff --git a/src/ui/QGCCommConfiguration.h b/src/ui/QGCCommConfiguration.h index 380d9b8d35d46b2549e61cde305ba7103e2300e9..5e9cf1944b46a03b0c46b7db732641f103efd1f4 100644 --- a/src/ui/QGCCommConfiguration.h +++ b/src/ui/QGCCommConfiguration.h @@ -54,7 +54,7 @@ public: QGC_LINK_TCP, QGC_LINK_SIMULATION, QGC_LINK_FORWARDING, -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG QGC_LINK_MOCK, #endif #ifdef QGC_XBEE_ENABLED diff --git a/src/ui/QGCConfigView.cc b/src/ui/QGCConfigView.cc deleted file mode 100644 index 1c1a35429202c9b4aef26cd8b298718d866b0a9a..0000000000000000000000000000000000000000 --- a/src/ui/QGCConfigView.cc +++ /dev/null @@ -1,76 +0,0 @@ -#include "QGCConfigView.h" -#include "ui_QGCConfigView.h" -#include "UASManager.h" -#include "QGCPX4VehicleConfig.h" -#include "MainWindow.h" - -QGCConfigView::QGCConfigView(QWidget *parent) : - QWidget(parent), - ui(new Ui::QGCConfigView), - config(NULL), - mav(NULL) -{ - ui->setupUi(this); - - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(activeUASChanged(UASInterface*))); - - ui->gridLayout->removeWidget(ui->waitingLabel); - ui->waitingLabel->setVisible(false); - delete ui->waitingLabel; - ui->waitingLabel = NULL; - - config = new QGCPX4VehicleConfig(); - ui->gridLayout->addWidget(config); -} - -QGCConfigView::~QGCConfigView() -{ - delete ui; -} - -void QGCConfigView::activeUASChanged(UASInterface* uas) -{ - if (mav == uas) - return; - - int type = -1; - if (mav) - type = mav->getAutopilotType(); - - mav = uas; - if (uas && type != uas->getAutopilotType()) { - - if (ui->waitingLabel) { - ui->gridLayout->removeWidget(ui->waitingLabel); - ui->waitingLabel->setVisible(false); - } - - //remove all child widgets since they could contain stale data - //for example, when we switch from one PX4 UAS to another UAS - foreach (QObject* obj, ui->gridLayout->children()) { - QWidget* w = dynamic_cast(obj); - if (w) { - if (obj != ui->waitingLabel) { - ui->gridLayout->removeWidget(w); - delete obj; - } - } - } - - QGCPX4VehicleConfig* px4config = qobject_cast(config); - if (!px4config) { - if (config) - delete config; - config = new QGCPX4VehicleConfig(); - ui->gridLayout->addWidget(config); - } - } - else { - if (ui->waitingLabel) { - //restore waiting label if we no longer have a connection - ui->gridLayout->addWidget(ui->waitingLabel); - ui->waitingLabel->setVisible(true); - } - } - -} diff --git a/src/ui/QGCConfigView.h b/src/ui/QGCConfigView.h deleted file mode 100644 index a1bd34075e0e126a5c5989fef8c95afd5d10d7ee..0000000000000000000000000000000000000000 --- a/src/ui/QGCConfigView.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef QGCCONFIGVIEW_H -#define QGCCONFIGVIEW_H - -#include -#include - -namespace Ui { -class QGCConfigView; -} - -class QGCConfigView : public QWidget -{ - Q_OBJECT - -public: - explicit QGCConfigView(QWidget *parent = 0); - ~QGCConfigView(); - -public slots: - void activeUASChanged(UASInterface* uas); - -private: - Ui::QGCConfigView *ui; - QWidget *config; - UASInterface* mav; - -}; - -#endif // QGCCONFIGVIEW_H diff --git a/src/ui/QGCConfigView.ui b/src/ui/QGCConfigView.ui deleted file mode 100644 index 38ce1ce7774ec6d80a70474fdb36eace4d5cdb90..0000000000000000000000000000000000000000 --- a/src/ui/QGCConfigView.ui +++ /dev/null @@ -1,31 +0,0 @@ - - - QGCConfigView - - - - 0 - 0 - 400 - 300 - - - - Form - - - - 0 - - - - - Waiting for connection... - - - - - - - - diff --git a/src/ui/QGCLinkConfiguration.cc b/src/ui/QGCLinkConfiguration.cc index 27c359319a3bff58c65b43228e72d42418a2c5e2..47459da18b415ccf988adae00d14935af8aa70d2 100644 --- a/src/ui/QGCLinkConfiguration.cc +++ b/src/ui/QGCLinkConfiguration.cc @@ -104,10 +104,8 @@ void QGCLinkConfiguration::on_connectLinkButton_clicked() LinkManager::instance()->disconnectLink(link); } } else { - LinkInterface* link = LinkManager::instance()->createLink(config); + LinkInterface* link = LinkManager::instance()->createConnectedLink(config); if(link) { - // Connect it - LinkManager::instance()->connectLink(link); // Now go hunting for the parent so we can shut this down QWidget* pQw = parentWidget(); while(pQw) { @@ -137,10 +135,17 @@ void QGCLinkConfiguration::_fixUnnamed(LinkConfiguration* config) //-- Check for "Unnamed" if (config->name() == tr("Unnamed")) { switch(config->type()) { - case LinkConfiguration::TypeSerial: - config->setName( - QString("Serial Device on %1").arg(dynamic_cast(config)->portName())); + case LinkConfiguration::TypeSerial: { + QString tname = dynamic_cast(config)->portName(); +#ifdef Q_OS_WIN32 + tname.replace("\\\\.\\", ""); +#else + tname.replace("/dev/cu.", ""); + tname.replace("/dev/", ""); +#endif + config->setName(QString("Serial Device on %1").arg(tname)); break; + } case LinkConfiguration::TypeUdp: config->setName( QString("UDP Link on Port %1").arg(dynamic_cast(config)->localPort())); @@ -153,7 +158,7 @@ void QGCLinkConfiguration::_fixUnnamed(LinkConfiguration* config) } } break; -#ifdef UNITTEST_BUILD +#ifdef QT_DEBUG case LinkConfiguration::TypeMock: config->setName( QString("Mock Link")); diff --git a/src/ui/QGCMAVLinkLogPlayer.cc b/src/ui/QGCMAVLinkLogPlayer.cc index f4d12d8b8aef30d2d909c72109024fcd586a6586..45bc0479d4b28474ea22225d55fe314e22b7de92 100644 --- a/src/ui/QGCMAVLinkLogPlayer.cc +++ b/src/ui/QGCMAVLinkLogPlayer.cc @@ -113,7 +113,7 @@ void QGCMAVLinkLogPlayer::play() } isPlaying = true; ui->playButton->setChecked(true); - ui->playButton->setIcon(QIcon(":files/images/actions/media-playback-pause.svg")); + ui->playButton->setIcon(QIcon(":/res/Pause")); } void QGCMAVLinkLogPlayer::pause() @@ -123,7 +123,7 @@ void QGCMAVLinkLogPlayer::pause() loopTimer.stop(); isPlaying = false; - ui->playButton->setIcon(QIcon(":files/images/actions/media-playback-start.svg")); + ui->playButton->setIcon(QIcon(":/res/Play")); ui->playButton->setChecked(false); ui->selectFileButton->setEnabled(true); } @@ -246,18 +246,7 @@ void QGCMAVLinkLogPlayer::updatePositionSliderUi(float percent) void QGCMAVLinkLogPlayer::_selectLogFileForPlayback(void) { // Disallow replay when any links are connected - - bool foundConnection = false; - LinkManager* linkMgr = LinkManager::instance(); - QList links = linkMgr->getLinks(); - foreach(LinkInterface* link, links) { - if (link->isConnected()) { - foundConnection = true; - break; - } - } - - if (foundConnection) { + if (LinkManager::instance()->anyConnectedLinks()) { QGCMessageBox::information(tr("Log Replay"), tr("You must close all connections prior to replaying a log.")); return; } @@ -326,9 +315,10 @@ bool QGCMAVLinkLogPlayer::loadLogFile(const QString& file) // If there's an existing MAVLinkSimulationLink() being used for an old file, // we replace it. if (logLink) { - LinkManager::instance()->deleteLink(logLink); + LinkManager::instance()->_deleteLink(logLink); } - logLink = new MAVLinkSimulationLink(""); + logLink = new MockLink(); + LinkManager::instance()->_addLink(logLink); // Select if binary or MAVLink log format is used mavlinkLogFormat = file.endsWith(".mavlink"); @@ -587,7 +577,7 @@ quint64 QGCMAVLinkLogPlayer::findNextMavlinkMessage(mavlink_message_t *msg) char nextByte; mavlink_status_t comm; while (logFile.getChar(&nextByte)) { // Loop over every byte - bool messageFound = mavlink_parse_char(logLink->getId(), nextByte, msg, &comm); + bool messageFound = mavlink_parse_char(logLink->getMavlinkChannel(), nextByte, msg, &comm); // If we've found a message, jump back to the start of the message, grab the timestamp, // and go back to the end of this file. diff --git a/src/ui/QGCMAVLinkLogPlayer.h b/src/ui/QGCMAVLinkLogPlayer.h index eb4ab1ed63ae8b9830cf8b6577bf93adc29a29c6..8e49b14d8b12e637d7c662f8f4d0324e9d592efc 100644 --- a/src/ui/QGCMAVLinkLogPlayer.h +++ b/src/ui/QGCMAVLinkLogPlayer.h @@ -6,7 +6,7 @@ #include "MAVLinkProtocol.h" #include "LinkInterface.h" -#include "MAVLinkSimulationLink.h" +#include "MockLink.h" namespace Ui { @@ -67,7 +67,7 @@ protected: quint64 logEndTime; ///< The last timestamp in the current log file. In units of microseconds since epoch UTC. float accelerationFactor; MAVLinkProtocol* mavlink; - MAVLinkSimulationLink* logLink; + MockLink* logLink; QFile logFile; QTimer loopTimer; int loopCounter; diff --git a/src/ui/QGCMAVLinkLogPlayer.ui b/src/ui/QGCMAVLinkLogPlayer.ui index a173fd8936f3c4b6ffcad71f7c141c0824b07ffe..df91cde638c953cae1b954cf6ba1fb9a46eb61a9 100644 --- a/src/ui/QGCMAVLinkLogPlayer.ui +++ b/src/ui/QGCMAVLinkLogPlayer.ui @@ -49,7 +49,7 @@ - :/files/images/actions/media-playback-start.svg:/files/images/actions/media-playback-start.svg + :/res/Play:/res.Play true diff --git a/src/ui/QGCMapRCToParamDialog.cpp b/src/ui/QGCMapRCToParamDialog.cpp index 8ac5bacb90368c3acc99cadee0179a5bff01ba86..e061058e5cf04bd0547937043ed796a9ddb1275d 100644 --- a/src/ui/QGCMapRCToParamDialog.cpp +++ b/src/ui/QGCMapRCToParamDialog.cpp @@ -26,6 +26,7 @@ #include "QGCMapRCToParamDialog.h" #include "ui_QGCMapRCToParamDialog.h" +#include "AutoPilotPluginManager.h" #include #include @@ -41,6 +42,8 @@ QGCMapRCToParamDialog::QGCMapRCToParamDialog(QString param_id, ui(new Ui::QGCMapRCToParamDialog) { ui->setupUi(this); + + // only enable ok button when param was refreshed QPushButton *okButton = ui->buttonBox->button(QDialogButtonBox::Ok); @@ -92,44 +95,27 @@ void QGCMapRCToParamDialog::paramLoaded(bool success, float value, QString messa } } +ParamLoader::ParamLoader(QString paramName, UASInterface* uas, QObject* parent) : + QObject(parent), + _uas(uas), + _paramName(paramName), + _paramReceived(false) +{ + _autopilot = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uas); + Q_ASSERT(_autopilot); +} + void ParamLoader::load() { - // refresh the parameter from onboard to make sure the current value is used - paramMgr->requestParameterUpdate(paramMgr->getDefaultComponentId(), param_id); - - // wait until parameter update is received - QEventLoop loop; - QTimer timer; - connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit); - timer.start(10 * 1e3); - // overloaded signal: - connect(mav, static_cast(&UASInterface::parameterChanged), - this, &ParamLoader::handleParameterChanged); - connect(this, &ParamLoader::correctParameterChanged, - &loop, &QEventLoop::quit); - loop.exec(); - - if (!param_received == true) { - // timeout - emit paramLoaded(false, 0.0f, "Timeout"); - return; - } - - QVariant current_param_value; - bool got_param = paramMgr->getParameterValue(paramMgr->getDefaultComponentId(), - param_id, current_param_value); - - QString message = got_param ? "" : "param manager Error"; - emit paramLoaded(got_param, current_param_value.toFloat(), message); + connect(_autopilot->getParameterFact(_paramName), &Fact::valueChanged, this, &ParamLoader::_parameterUpdated); + + // refresh the parameter from onboard to make sure the current value is used + _autopilot->refreshParameter(FactSystem::defaultComponentId, _paramName); } -void ParamLoader::handleParameterChanged(int uas, int component, QString parameterName, QVariant value) +void ParamLoader::_parameterUpdated(QVariant value) { - Q_UNUSED(component); Q_UNUSED(value); - if (uas == mav->getUASID() && parameterName == param_id) { - param_received = true; - emit correctParameterChanged(); - } + + emit paramLoaded(true, _autopilot->getParameterFact(_paramName)->value().toFloat(), ""); } diff --git a/src/ui/QGCMapRCToParamDialog.h b/src/ui/QGCMapRCToParamDialog.h index 82f0d90307e43aa44fce0ec635c55ebd6527d302..0bd3d8615ff671a3ad706e5e661b12ee4fadb3cb 100644 --- a/src/ui/QGCMapRCToParamDialog.h +++ b/src/ui/QGCMapRCToParamDialog.h @@ -30,7 +30,9 @@ #include #include + #include "UASInterface.h" +#include "AutoPilotPlugin.h" namespace Ui { class QGCMapRCToParamDialog; @@ -42,27 +44,23 @@ class ParamLoader : public QObject Q_OBJECT public: - ParamLoader(QString param_id, UASInterface *mav, QObject * parent = 0): - QObject(parent), - mav(mav), - paramMgr(mav->getParamManager()), - param_id(param_id), - param_received(false) -{} + ParamLoader(QString paramName, UASInterface* uas, QObject* parent = NULL); public slots: void load(); - void handleParameterChanged(int uas, int component, QString parameterName, QVariant value); signals: void paramLoaded(bool success, float value, QString message = ""); void correctParameterChanged(); + +private slots: + void _parameterUpdated(QVariant value); -protected: - UASInterface *mav; - QGCUASParamManagerInterface* paramMgr; - QString param_id; - bool param_received; +private: + UASInterface* _uas; + AutoPilotPlugin* _autopilot; + QString _paramName; + bool _paramReceived; }; class QGCMapRCToParamDialog : public QDialog diff --git a/src/ui/QGCPX4VehicleConfig.cc b/src/ui/QGCPX4VehicleConfig.cc deleted file mode 100644 index c90d9c28a3cd4f4bfa93f863b33fc39fcfcd9e5b..0000000000000000000000000000000000000000 --- a/src/ui/QGCPX4VehicleConfig.cc +++ /dev/null @@ -1,331 +0,0 @@ -// On Windows (for VS2010) stdint.h contains the limits normally contained in limits.h -// It also needs the __STDC_LIMIT_MACROS macro defined in order to include them (done -// in qgroundcontrol.pri). -#ifdef WIN32 -#include -#else -#include -#endif - -#include -#include -#include -#include - -#include "QGCPX4VehicleConfig.h" - -#include "QGC.h" -#include "QGCToolWidget.h" -#include "UASManager.h" -#include "LinkManager.h" -#include "UASParameterCommsMgr.h" -#include "ui_QGCPX4VehicleConfig.h" -#include "px4_configuration/QGCPX4AirframeConfig.h" -#include "px4_configuration/QGCPX4SensorCalibration.h" -#include "px4_configuration/PX4RCCalibration.h" - -#include "PX4FirmwareUpgrade.h" - -#define WIDGET_INDEX_FIRMWARE 0 -#define WIDGET_INDEX_RC 1 -#define WIDGET_INDEX_SENSOR_CAL 2 -#define WIDGET_INDEX_AIRFRAME_CONFIG 3 -#define WIDGET_INDEX_GENERAL_CONFIG 4 -#define WIDGET_INDEX_ADV_CONFIG 5 - -#define MIN_PWM_VAL 800 -#define MAX_PWM_VAL 2200 - -QGCPX4VehicleConfig::QGCPX4VehicleConfig(QWidget *parent) : - QWidget(parent), - mav(NULL), - px4AirframeConfig(NULL), - planeBack(":/files/images/px4/rc/cessna_back.png"), - planeSide(":/files/images/px4/rc/cessna_side.png"), - px4SensorCalibration(NULL), - ui(new Ui::QGCPX4VehicleConfig) -{ - doneLoadingConfig = false; - - setObjectName("QGC_VEHICLECONFIG"); - ui->setupUi(this); - - ui->advancedMenuButton->setEnabled(false); - ui->airframeMenuButton->setEnabled(false); - ui->sensorMenuButton->setEnabled(false); - ui->rcMenuButton->setEnabled(false); - - px4AirframeConfig = new QGCPX4AirframeConfig(this); - ui->airframeLayout->addWidget(px4AirframeConfig); - - px4SensorCalibration = new QGCPX4SensorCalibration(this); - ui->sensorLayout->addWidget(px4SensorCalibration); - - px4RCCalibration = new PX4RCCalibration(this); - ui->rcLayout->addWidget(px4RCCalibration); - - PX4FirmwareUpgrade* firmwareUpgrade = new PX4FirmwareUpgrade(this); - ui->firmwareLayout->addWidget(firmwareUpgrade); - - connect(ui->rcMenuButton,SIGNAL(clicked()), - this,SLOT(rcMenuButtonClicked())); - connect(ui->sensorMenuButton,SIGNAL(clicked()), - this,SLOT(sensorMenuButtonClicked())); - connect(ui->flightModeMenuButton, SIGNAL(clicked()), - this, SLOT(flightModeMenuButtonClicked())); - connect(ui->safetyConfigButton, SIGNAL(clicked()), - this, SLOT(safetyConfigMenuButtonClicked())); - connect(ui->tuningMenuButton,SIGNAL(clicked()), - this,SLOT(tuningMenuButtonClicked())); - connect(ui->advancedMenuButton,SIGNAL(clicked()), - this,SLOT(advancedMenuButtonClicked())); - connect(ui->airframeMenuButton, SIGNAL(clicked()), - this, SLOT(airframeMenuButtonClicked())); - connect(ui->firmwareMenuButton, SIGNAL(clicked()), - this, SLOT(firmwareMenuButtonClicked())); - - //TODO connect buttons here to save/clear actions? - UASInterface* tmpMav = UASManager::instance()->getActiveUAS(); - if (tmpMav) { - ui->pendingCommitsWidget->initWithUAS(tmpMav); - ui->pendingCommitsWidget->update(); - setActiveUAS(tmpMav); - } - - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), - this, SLOT(setActiveUAS(UASInterface*))); - - firmwareMenuButtonClicked(); -} - -QGCPX4VehicleConfig::~QGCPX4VehicleConfig() -{ - delete ui; -} - -void QGCPX4VehicleConfig::rcMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->rcTab); - ui->tabTitleLabel->setText(tr("Radio Calibration")); -} - -void QGCPX4VehicleConfig::sensorMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->sensorTab); - ui->tabTitleLabel->setText(tr("Sensor Calibration")); -} - -void QGCPX4VehicleConfig::tuningMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->tuningTab); - ui->tabTitleLabel->setText(tr("Controller Tuning")); -} - -void QGCPX4VehicleConfig::flightModeMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->flightModeTab); - ui->tabTitleLabel->setText(tr("Flight Mode Configuration")); -} - -void QGCPX4VehicleConfig::safetyConfigMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->safetyConfigTab); - ui->tabTitleLabel->setText(tr("Safety Feature Configuration")); -} - -void QGCPX4VehicleConfig::advancedMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->advancedTab); - ui->tabTitleLabel->setText(tr("Advanced Configuration Options")); -} - -void QGCPX4VehicleConfig::airframeMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->airframeTab); - ui->tabTitleLabel->setText(tr("Airframe Configuration")); -} - -void QGCPX4VehicleConfig::firmwareMenuButtonClicked() -{ - ui->stackedWidget->setCurrentWidget(ui->firmwareTab); - ui->tabTitleLabel->setText(tr("Firmware Upgrade")); -} - -void QGCPX4VehicleConfig::menuButtonClicked() -{ - QPushButton *button = qobject_cast(sender()); - if (!button) - { - return; - } - if (buttonToWidgetMap.contains(button)) - { - ui->stackedWidget->setCurrentWidget(buttonToWidgetMap[button]); - } - -} - -void QGCPX4VehicleConfig::setActiveUAS(UASInterface* active) -{ - // Hide items if NULL and abort - if (!active) { - return; - } - - - // Do nothing if UAS is already visible - if (mav == active) - return; - - if (mav) - { - - //TODO use paramCommsMgr instead - disconnect(mav, SIGNAL(parameterChanged(int,int,QString,QVariant)), this, - SLOT(parameterChanged(int,int,QString,QVariant))); - - foreach(QWidget* child, ui->airframeLayout->findChildren()) - { - child->deleteLater(); - } - - // And then delete any custom tabs - foreach(QWidget* child, additionalTabs) { - child->deleteLater(); - } - additionalTabs.clear(); - - toolWidgets.clear(); - paramToWidgetMap.clear(); - libParamToWidgetMap.clear(); - systemTypeToParamMap.clear(); - toolToBoxMap.clear(); - paramTooltips.clear(); - } - - // Connect new system - mav = active; - - paramMgr = mav->getParamManager(); - - ui->pendingCommitsWidget->setUAS(mav); - ui->paramTreeWidget->setUAS(mav); - - //TODO eliminate the separate RC_TYPE call - mav->requestParameter(0, "RC_TYPE"); - - // Connect new system - connect(mav, SIGNAL(parameterChanged(int,int,QString,QVariant)), this, - SLOT(parameterChanged(int,int,QString,QVariant))); - - - if (systemTypeToParamMap.contains(mav->getSystemTypeName())) { - paramToWidgetMap = systemTypeToParamMap[mav->getSystemTypeName()]; - } - else { - //Indication that we have no meta data for this system type. - qDebug() << "No parameters defined for system type:" << mav->getSystemTypeName(); - paramToWidgetMap = systemTypeToParamMap[mav->getSystemTypeName()]; - } - - if (!paramTooltips.isEmpty()) { - mav->getParamManager()->setParamDescriptions(paramTooltips); - } - - qDebug() << "CALIBRATION!! System Type Name:" << mav->getSystemTypeName(); - - updateStatus(QString("Reading from system %1").arg(mav->getUASName())); - - // Since a system is now connected, enable the VehicleConfig UI. - // Enable buttons - - bool px4Firmware = mav->getAutopilotType() == MAV_AUTOPILOT_PX4; - ui->airframeMenuButton->setEnabled(px4Firmware); - ui->sensorMenuButton->setEnabled(px4Firmware); - ui->rcMenuButton->setEnabled(px4Firmware); - ui->advancedMenuButton->setEnabled(true); -} - -void QGCPX4VehicleConfig::parameterChanged(int uas, int component, QString parameterName, QVariant value) -{ - if (!doneLoadingConfig) { - //We do not want to attempt to generate any UI elements until loading of the config file is complete. - //We should re-request params later if needed, that is not implemented yet. - return; - } - - if (paramToWidgetMap.contains(parameterName)) { - //Main group of parameters of the selected airframe - paramToWidgetMap.value(parameterName)->setParameterValue(uas,component,parameterName,value); - if (toolToBoxMap.contains(paramToWidgetMap.value(parameterName))) { - toolToBoxMap[paramToWidgetMap.value(parameterName)]->show(); - } - else { - qCritical() << "Widget with no box, possible memory corruption for param:" << parameterName; - } - } - else if (libParamToWidgetMap.contains(parameterName)) { - //All the library parameters - libParamToWidgetMap.value(parameterName)->setParameterValue(uas,component,parameterName,value); - if (toolToBoxMap.contains(libParamToWidgetMap.value(parameterName))) { - toolToBoxMap[libParamToWidgetMap.value(parameterName)]->show(); - } - else { - qCritical() << "Widget with no box, possible memory corruption for param:" << parameterName; - } - } - else { - //Param recieved that we have no metadata for. Search to see if it belongs in a - //group with some other params - //bool found = false; - for (int i=0;iobjectName())) { - //It should be grouped with this one, add it. - toolWidgets[i]->addParam(uas,component,parameterName,value); - libParamToWidgetMap.insert(parameterName,toolWidgets[i]); - //found = true; - break; - } - } -// if (!found) { -// //New param type, create a QGroupBox for it. -// QWidget* parent = ui->advanceColumnContents; - -// // Create the tool, attaching it to the QGroupBox -// QGCToolWidget *tool = new QGCToolWidget("", parent); -// QString tooltitle = parameterName; -// if (parameterName.split("_").size() > 1) { -// tooltitle = parameterName.split("_")[0] + "_"; -// } -// tool->setTitle(tooltitle); -// tool->setObjectName(tooltitle); -// //tool->setSettings(set); -// libParamToWidgetMap.insert(parameterName,tool); -// toolWidgets.append(tool); -// tool->addParam(uas, component, parameterName, value); -// QGroupBox *box = new QGroupBox(parent); -// box->setTitle(tool->objectName()); -// box->setLayout(new QVBoxLayout(box)); -// box->layout()->addWidget(tool); - -// libParamToWidgetMap.insert(parameterName,tool); -// toolWidgets.append(tool); -// ui->advancedColumnLayout->addWidget(box); - -// toolToBoxMap[tool] = box; -// } - } - -} - -void QGCPX4VehicleConfig::updateStatus(const QString& str) -{ - ui->advancedStatusLabel->setText(str); - ui->advancedStatusLabel->setStyleSheet(""); -} - -void QGCPX4VehicleConfig::updateError(const QString& str) -{ - ui->advancedStatusLabel->setText(str); - ui->advancedStatusLabel->setStyleSheet(QString("QLabel { margin: 0px 2px; font: 14px; color: %1; background-color: %2; }").arg(QGC::colorDarkWhite.name()).arg(QGC::colorMagenta.name())); -} diff --git a/src/ui/QGCPX4VehicleConfig.h b/src/ui/QGCPX4VehicleConfig.h deleted file mode 100644 index 1009cab0742ece3998e8d992dd009b5b5b67efa8..0000000000000000000000000000000000000000 --- a/src/ui/QGCPX4VehicleConfig.h +++ /dev/null @@ -1,90 +0,0 @@ -#ifndef QGCPX4VehicleConfig_H -#define QGCPX4VehicleConfig_H - -#include -#include -#include -#include -#include -#include -#include - -#include "QGCToolWidget.h" -#include "UASInterface.h" -#include "px4_configuration/QGCPX4AirframeConfig.h" - -class UASParameterCommsMgr; -class QGCPX4SensorCalibration; -class PX4RCCalibration; - -namespace Ui { -class QGCPX4VehicleConfig; -} - -class QGCPX4VehicleConfig : public QWidget -{ - Q_OBJECT - -public: - explicit QGCPX4VehicleConfig(QWidget *parent = 0); - ~QGCPX4VehicleConfig(); - - enum RC_MODE { - RC_MODE_1 = 1, - RC_MODE_2 = 2, - RC_MODE_3 = 3, - RC_MODE_4 = 4, - RC_MODE_NONE = 5 - }; - -public slots: - void rcMenuButtonClicked(); - void sensorMenuButtonClicked(); - void tuningMenuButtonClicked(); - void flightModeMenuButtonClicked(); - void safetyConfigMenuButtonClicked(); - void advancedMenuButtonClicked(); - void airframeMenuButtonClicked(); - void firmwareMenuButtonClicked(); - - /** Set the MAV currently being calibrated */ - void setActiveUAS(UASInterface* active); - -protected slots: - void menuButtonClicked(); - /** Parameter changed onboard */ - void parameterChanged(int uas, int component, QString parameterName, QVariant value); - void updateStatus(const QString& str); - void updateError(const QString& str); - -protected: - - bool doneLoadingConfig; - UASInterface* mav; ///< The current MAV - QGCUASParamManagerInterface* paramMgr; ///< params mgr for the mav - QList toolWidgets; ///< Configurable widgets - QMap toolWidgetsByName; ///< - - QMap paramToWidgetMap; ///< Holds the current active MAV's parameter widgets. - QList additionalTabs; ///< Stores additional tabs loaded for this vehicle/autopilot configuration. Used for cleaning up. - QMap libParamToWidgetMap; ///< Holds the library parameter widgets - QMap > systemTypeToParamMap; ///< Holds all loaded MAV specific parameter widgets, for every MAV. - QMap toolToBoxMap; ///< Easy method of figuring out which QGroupBox is tied to which ToolWidget. - QMap paramTooltips; ///< Tooltips for the ? button next to a parameter. - - QGCPX4AirframeConfig* px4AirframeConfig; - QPixmap planeBack; - QPixmap planeSide; - QGCPX4SensorCalibration* px4SensorCalibration; - PX4RCCalibration* px4RCCalibration; - QGraphicsScene scene; - QPushButton* skipActionButton; - -private: - Ui::QGCPX4VehicleConfig *ui; - QMap buttonToWidgetMap; -signals: - void visibilityChanged(bool visible); -}; - -#endif // QGCPX4VehicleConfig_H diff --git a/src/ui/QGCPX4VehicleConfig.ui b/src/ui/QGCPX4VehicleConfig.ui deleted file mode 100644 index e49b37c0d4a76a80f97c7d33c15b67f78533d3d1..0000000000000000000000000000000000000000 --- a/src/ui/QGCPX4VehicleConfig.ui +++ /dev/null @@ -1,563 +0,0 @@ - - - QGCPX4VehicleConfig - - - - 0 - 0 - 1293 - 1132 - - - - - 0 - 0 - - - - Form - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 16 - 75 - true - - - - - - - - - - - - - 1 - - - - - - - - 16 - 75 - true - - - - - - - - 16 - 75 - true - - - - - - - - - - - 16 - 75 - true - - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'.Helvetica Neue DeskInterface'; font-size:16pt; font-weight:600; font-style:normal;"> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI';"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt; font-weight:400;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt; font-weight:400;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt; font-weight:400;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt; font-weight:400;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'.Lucida Grande UI'; font-size:24pt; font-weight:400;">Coming Soon</span></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'.Lucida Grande UI'; font-size:24pt; font-weight:400;">(Use Advanced Config instead)</span></p></body></html> - - - - - - - - - - - - - - 3 - 1 - - - - Onboard Configuration - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - true - - - - - 0 - 0 - 16 - 16 - - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - - true - - - - - - - - - - - - - - - - Qt::Horizontal - - - - 10 - 20 - - - - - - - - - 2 - 0 - - - - - 329 - 0 - - - - Changes Pending - - - - - - -1 - - - - - - 0 - 0 - - - - true - - - - - - - - - - - - Qt::Horizontal - - - - 10 - 20 - - - - - - - - - - Status - - - - - - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'.Helvetica Neue DeskInterface'; font-size:13pt; font-weight:400; font-style:normal;"> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI';"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'.Lucida Grande UI'; font-size:24pt;">Coming Soon</span></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'.Lucida Grande UI'; font-size:24pt;">(Use Radio Calibration instead)</span></p></body></html> - - - - - - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'.Helvetica Neue DeskInterface'; font-size:13pt; font-weight:400; font-style:normal;"> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI';"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'.Lucida Grande UI'; font-size:24pt;"><br /></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'.Lucida Grande UI'; font-size:24pt;">Coming Soon</span></p> -<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'.Lucida Grande UI'; font-size:24pt;">(Use Advanced Config instead)</span></p></body></html> - - - - - - - - - - - - - - 0 - - - 0 - - - 0 - - - 0 - - - - - QLayout::SetMinAndMaxSize - - - 12 - - - 12 - - - 24 - - - 12 - - - - - Firmware -Upgrade - - - - :/files/images/px4/menu/firmware_upgrade.png:/files/images/px4/menu/firmware_upgrade.png - - - - 60 - 60 - - - - - - - - Airframe -Config - - - - :/files/images/px4/menu/plane.png:/files/images/px4/menu/plane.png - - - - 60 - 60 - - - - - - - - - 100 - 75 - - - - Sensor -Calibration - - - - :/files/images/px4/menu/sensors.png:/files/images/px4/menu/sensors.png - - - - 60 - 60 - - - - - - - - - 100 - 75 - - - - - 16777215 - 16777215 - - - - Radio -Calibration - - - - :/files/images/px4/menu/remote.png:/files/images/px4/menu/remote.png - - - - 60 - 60 - - - - - - - - - 100 - 75 - - - - Flight Mode -Config - - - - :/files/images/px4/menu/toggle_switch.png:/files/images/px4/menu/toggle_switch.png - - - - 60 - 60 - - - - - - - - - 100 - 75 - - - - Safety -Config - - - - :/files/images/px4/menu/cogwheels.png:/files/images/px4/menu/cogwheels.png - - - - 60 - 60 - - - - - - - - - 100 - 75 - - - - Controller -Tuning - - - - :/files/images/px4/menu/cogwheels.png:/files/images/px4/menu/cogwheels.png - - - - 60 - 60 - - - - - - - - - 100 - 75 - - - - Advanced -Config - - - - :/files/images/px4/menu/cogwheels.png:/files/images/px4/menu/cogwheels.png - - - - 60 - 60 - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - - QGCPendingParamWidget - QWidget -
ui/QGCPendingParamWidget.h
- 1 -
- - QGCParamWidget - QWidget -
ui/QGCParamWidget.h
- 1 -
-
- - - - -
diff --git a/src/ui/QGCParamTreeWidget.cpp b/src/ui/QGCParamTreeWidget.cpp deleted file mode 100644 index 7934d2977c570d88a00c12aebf6f6ccd4aa2f9f1..0000000000000000000000000000000000000000 --- a/src/ui/QGCParamTreeWidget.cpp +++ /dev/null @@ -1,96 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @author Thomas Gubler - -#include "QGCParamTreeWidget.h" -#include -#include -#include - -QGCParamTreeWidget::QGCParamTreeWidget(QWidget *parent) : - QTreeWidget(parent) -{ - setContextMenuPolicy(Qt::CustomContextMenu); - - QObject::connect(this, &QGCParamTreeWidget::customContextMenuRequested, - this, &QGCParamTreeWidget::showContextMenu); - qDebug() << "create QGCParamTreeWidget"; - -} - -QGCParamTreeWidget::~QGCParamTreeWidget() -{ - -} - -void QGCParamTreeWidget::showContextMenu(const QPoint &pos) -{ - QMenu menu; - QTreeWidgetItem* item = itemAt(pos); - - // Only show context menu for parameter items and not for group items - // (show for TEST_P but not for TEST) - // If a context menu is needed later for the groups then move this 'if' - // to below where the actions are created and filter out certain actions - // for the outer nodes - if (indexOfTopLevelItem(item) > -1 || - indexOfTopLevelItem(item->parent()) > -1) { - return; - } - - QString param_id = item->data(0, Qt::DisplayRole).toString(); - - // Refresh single parameter - QAction* act = new QAction(tr("Refresh this param"), this); - act->setProperty("action", "refresh"); - act->setProperty("param_id", param_id); - connect(act, &QAction::triggered, this, - &QGCParamTreeWidget::contextMenuAction); - menu.addAction(act); - - // RC to parameter mapping - act = new QAction(tr("Map Parameter to RC"), this); - act->setProperty("action", "maprc"); - act->setProperty("param_id", param_id); - connect(act, &QAction::triggered, this, - &QGCParamTreeWidget::contextMenuAction); - menu.addAction(act); - menu.exec(mapToGlobal(pos)); -} - -void QGCParamTreeWidget::contextMenuAction() { - QString action = qobject_cast( - sender())->property("action").toString(); - QString param_id = qobject_cast( - sender())->property("param_id").toString(); - - if (action == "refresh") { - emit refreshParamRequest(param_id); - } else if (action == "maprc") { - emit mapRCToParamRequest(param_id); - } else { - qDebug() << "Undefined context menu action"; - } -} diff --git a/src/ui/QGCParamTreeWidget.h b/src/ui/QGCParamTreeWidget.h deleted file mode 100644 index 9c63456db98672555a5f874f2a54be5f2b40bcc9..0000000000000000000000000000000000000000 --- a/src/ui/QGCParamTreeWidget.h +++ /dev/null @@ -1,51 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009 - 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @brief A treeview with context menus for parameters -/// @author Thomas Gubler - -#ifndef QGCPARAMTREEWIDGET_H -#define QGCPARAMTREEWIDGET_H - -#include - -/// Implements individual context menus for the QTreeWidgetItems -class QGCParamTreeWidget : public QTreeWidget -{ - Q_OBJECT -public: - QGCParamTreeWidget(QWidget *parent = 0); - ~QGCParamTreeWidget(); - -signals: - void mapRCToParamRequest(QString param_id); - void refreshParamRequest(QString param_id); - -public slots: - void showContextMenu(const QPoint &pos); - void contextMenuAction(); - -}; - -#endif // QGCPARAMTREEWIDGET_H diff --git a/src/ui/QGCParamWidget.cc b/src/ui/QGCParamWidget.cc deleted file mode 100644 index 7084ba0e6c846f0f7c43279f2e797115b23b8a13..0000000000000000000000000000000000000000 --- a/src/ui/QGCParamWidget.cc +++ /dev/null @@ -1,567 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ -/** - * @file - * @brief Implementation of class QGCParamWidget - * @author Lorenz Meier - */ -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include - -#include "MainWindow.h" -#include "QGC.h" -#include "QGCParamWidget.h" -#include "UASInterface.h" -#include "UASParameterCommsMgr.h" -#include "QGCMapRCToParamDialog.h" - -/** - * @param uas MAV to set the parameters on - * @param parent Parent widget - */ -QGCParamWidget::QGCParamWidget(QWidget *parent) : - QGCBaseParamWidget(parent), - componentItems(new QMap()), - statusLabel(new QLabel(this)), - tree(new QGCParamTreeWidget(this)), - _fullParamListLoaded(false) -{ - - -} - - - -void QGCParamWidget::disconnectViewSignalsAndSlots() -{ - disconnect(tree, SIGNAL(itemChanged(QTreeWidgetItem*,int)), - this, SLOT(parameterItemChanged(QTreeWidgetItem*,int))); - disconnect(tree, &QGCParamTreeWidget::mapRCToParamRequest, this, - &QGCParamWidget::configureRCToParam); -} - - -void QGCParamWidget::connectViewSignalsAndSlots() -{ - // Listen for edits to the tree UI - connect(tree, SIGNAL(itemChanged(QTreeWidgetItem*,int)), - this, SLOT(parameterItemChanged(QTreeWidgetItem*,int))); - connect(tree, &QGCParamTreeWidget::mapRCToParamRequest, this, - &QGCParamWidget::configureRCToParam); - connect(tree, &QGCParamTreeWidget::refreshParamRequest, this, - &QGCParamWidget::requestOnboardParamUpdate); -} - - -void QGCParamWidget::addActionButtonsToLayout(QGridLayout* layout) -{ - QPushButton* refreshButton = new QPushButton(tr("Get")); - refreshButton->setToolTip(tr("Fetch parameters currently in volatile memory of aircraft.")); - refreshButton->setWhatsThis(tr("Fetch parameters currently in volatile memory of aircraft.")); - connect(refreshButton, SIGNAL(clicked()), - this, SLOT(requestOnboardParamsUpdate())); - layout->addWidget(refreshButton, 2, 0); - - QPushButton* setButton = new QPushButton(tr("Set")); - setButton->setToolTip(tr("Send pending parameters to volatile onboard memory")); - setButton->setWhatsThis(tr("Send pending parameters to volatile onboard memory")); - connect(setButton, SIGNAL(clicked()), - paramMgr, SLOT(sendPendingParameters())); - layout->addWidget(setButton, 2, 1); - - QPushButton* writeButton = new QPushButton(tr("Write (ROM)")); - writeButton->setToolTip(tr("Copy parameters in volatile memory of the aircraft to persistent memory. Transmit your parameters first to write these.")); - writeButton->setWhatsThis(tr("Copy parameters in volatile memory of the aircraft to persistent memory. Transmit your parameters first to write these.")); - connect(writeButton, SIGNAL(clicked()), - paramMgr, SLOT(copyVolatileParamsToPersistent())); - layout->addWidget(writeButton, 2, 2); - - QPushButton* loadFileButton = new QPushButton(tr("Load File")); - loadFileButton->setToolTip(tr("Load parameters from a file into qgroundcontrol. To write these to the aircraft, use transmit after loading them.")); - loadFileButton->setWhatsThis(tr("Load parameters from a file into qgroundcontrol. To write these to the aircraft, use transmit after loading them.")); - connect(loadFileButton, SIGNAL(clicked()), - this, SLOT(loadParametersFromFile())); - layout->addWidget(loadFileButton, 3, 0); - - QPushButton* saveFileButton = new QPushButton(tr("Save File")); - saveFileButton->setToolTip(tr("Save parameters in this view to a file on this computer.")); - saveFileButton->setWhatsThis(tr("Save parameters in this view to a file on this computer.")); - connect(saveFileButton, SIGNAL(clicked()), - this, SLOT(saveParametersToFile())); - layout->addWidget(saveFileButton, 3, 1); - - QPushButton* readButton = new QPushButton(tr("Read (ROM)")); - readButton->setToolTip(tr("Copy parameters from persistent onboard memory to volatile onboard memory of aircraft. DOES NOT update the parameters in this view: click refresh after copying them to get them.")); - readButton->setWhatsThis(tr("Copy parameters from persistent onboard memory to volatile onboard memory of aircraft. DOES NOT update the parameters in this view: click refresh after copying them to get them.")); - connect(readButton, SIGNAL(clicked()), - paramMgr, SLOT(copyPersistentParamsToVolatile())); - layout->addWidget(readButton, 3, 2); - - QPushButton* unsetRCToParamMapButton = new QPushButton(tr("Clear Rc to Param")); - unsetRCToParamMapButton->setToolTip(tr("Remove any bindings between RC channels and parameters.")); - unsetRCToParamMapButton->setWhatsThis(tr("Remove any bindings between RC channels and parameters.")); - connect(unsetRCToParamMapButton, &QPushButton::clicked, - mav, &UASInterface::unsetRCToParameterMap); - layout->addWidget(unsetRCToParamMapButton, 4, 1); - -} - -void QGCParamWidget::layoutWidget() -{ - - statusLabel->setAutoFillBackground(true); - - QGridLayout* layout = new QGridLayout(this); - layout->setHorizontalSpacing(6); - layout->setVerticalSpacing(6); - layout->setMargin(0); - layout->setSizeConstraint(QLayout::SetMinimumSize); - - // Parameter tree - layout->addWidget(tree, 0, 0, 1, 3); - - // Status line - statusLabel->setText(tr("Click refresh to download parameters")); - layout->addWidget(statusLabel, 1, 0, 1, 3); - - // BUTTONS - addActionButtonsToLayout(layout); - - // Set correct vertical scaling - layout->setRowStretch(0, 100); - layout->setRowStretch(1, 10); - layout->setRowStretch(2, 10); - layout->setRowStretch(3, 10); - - // Set layout - this->setLayout(layout); - - // Set header - QStringList headerItems; - headerItems.append("Parameter"); - headerItems.append("Value"); - tree->setHeaderLabels(headerItems); - tree->setColumnCount(2); - tree->setColumnWidth(0,200); - tree->setColumnWidth(1,120); - tree->setExpandsOnDoubleClick(true); - - tree->setVisible(true); -} - - -void QGCParamWidget::addComponentItem(int compId, QString compName) -{ - - QString compLine = QString("%1 (#%2)").arg(compName).arg(compId); - - //QString ptrStr = QString().sprintf("%8p", this); - //qDebug() << "QGCParamWidget" << ptrStr << "addComponentItem:" << compLine; - - if (componentItems->contains(compId)) { - // Update existing component item - componentItems->value(compId)->setData(0, Qt::DisplayRole, compLine); - //components->value(component)->setData(1, Qt::DisplayRole, QString::number(component)); - componentItems->value(compId)->setFirstColumnSpanned(true); - } else { - // Add new component item - QStringList list(compLine); - QTreeWidgetItem* compItem = new QTreeWidgetItem(list); - compItem->setFirstColumnSpanned(true); - componentItems->insert(compId, compItem); - // Create parameter grouping for this component and update maps - paramGroups.insert(compId, new QMap()); - tree->addTopLevelItem(compItem); - tree->update(); - } - -} - -void QGCParamWidget::handlePendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending) -{ - //qDebug() << "handlePendingParamUpdate:" << paramName << "with updatingParamNameLock:" << updatingParamNameLock; - - if (updatingParamNameLock == paramName) { - //qDebug() << "ignoring bounce from " << paramName; - return; - } - else { - updatingParamNameLock = paramName; - } - - QTreeWidgetItem* paramItem = updateParameterDisplay(compId,paramName,value); - if (paramItem) { - if (isPending) { - paramItem->setBackground(0, QBrush(QColor(QGC::colorOrange))); - paramItem->setBackground(1, QBrush(QColor(QGC::colorOrange))); - //ensure that the adjusted item is visible - tree->expandItem(paramItem->parent()); - } - else { - paramItem->setBackground(0, Qt::NoBrush); - paramItem->setBackground(1, Qt::NoBrush); - } - } - - updatingParamNameLock.clear(); - -} - -void QGCParamWidget::handleOnboardParamUpdate(int compId, const QString& paramName, QVariant value) -{ - //qDebug() << "handlePendingParamUpdate:" << paramName << "with updatingParamNameLock:" << updatingParamNameLock; - if (paramName == updatingParamNameLock) { - //qDebug() << "handlePendingParamUpdate ignoring bounce from " << paramName; - return; - } - updatingParamNameLock = paramName; - updateParameterDisplay(compId, paramName, value); - updatingParamNameLock.clear(); -} - - -void QGCParamWidget::handleOnboardParameterListUpToDate() -{ - // Don't load full param list more than once - if (_fullParamListLoaded) { - return; - } - - _fullParamListLoaded = true; - - //turn off updates while we refresh the entire list - tree->setUpdatesEnabled(false); - - //rewrite the component item tree after receiving the full list - QMap*>::iterator i; - QMap*>* onboardParams = paramMgr->dataModel()->getAllOnboardParams(); - - for (i = onboardParams->begin(); i != onboardParams->end(); ++i) { - int compId = i.key(); - QMap* paramPairs = onboardParams->value(compId); - QMap::iterator j; - for (j = paramPairs->begin(); j != paramPairs->end(); j++) { - updatingParamNameLock = j.key(); - updateParameterDisplay(compId, j.key(),j.value()); - updatingParamNameLock.clear(); - } - } - - // Expand visual tree - tree->expandItem(tree->topLevelItem(0)); - tree->setUpdatesEnabled(true); - tree->update(); - -} - -QTreeWidgetItem* QGCParamWidget::findChildWidgetItemForParam(QTreeWidgetItem* parentItem, const QString& paramName) -{ - QTreeWidgetItem* childItem = NULL; - - for (int i = 0; i < parentItem->childCount(); i++) { - QTreeWidgetItem* child = parentItem->child(i); - QString key = child->data(0, Qt::DisplayRole).toString(); - if (key == paramName) { - childItem = child; - break; - } - } - - return childItem; -} - -QTreeWidgetItem* QGCParamWidget::getParentWidgetItemForParam(int compId, const QString& paramName) -{ - QTreeWidgetItem* parentItem = componentItems->value(compId); - - QString splitToken = "_"; - // Check if auto-grouping can work - if (paramName.contains(splitToken)) { - QString parentStr = paramName.section(splitToken, 0, 0, QString::SectionSkipEmpty); - QMap* compParamGroups = paramGroups.value(compId); - if (!compParamGroups->contains(parentStr)) { - // Insert group item - QStringList glist; - glist.append(parentStr); - QTreeWidgetItem* groupItem = new QTreeWidgetItem(glist); - - compParamGroups->insert(parentStr, groupItem); - - // insert new group alphabetized - QList groupKeys = compParamGroups->uniqueKeys(); - int insertIdx = groupKeys.indexOf(parentStr); - componentItems->value(compId)->insertChild(insertIdx,groupItem); - } - - //parent item for this parameter item will be a group widget item - parentItem = compParamGroups->value(parentStr); - } - else { - //parent item for this parameter will be the top level (component) widget item - parentItem = componentItems->value(compId); - } - - return parentItem; -} - -void QGCParamWidget::insertParamAlphabetical(int indexLowerBound, int indexUpperBound, QTreeWidgetItem* parentItem, QTreeWidgetItem* paramItem) -{ - if (indexLowerBound >= indexUpperBound) - { - if (paramItem->text(0).compare(parentItem->child(indexLowerBound)->text(0)) < 0) { - parentItem->insertChild(indexLowerBound, paramItem); - } - else - { - if (indexLowerBound < parentItem->childCount() - 1) { - parentItem->insertChild(indexLowerBound + 1, paramItem); - } - else - { - parentItem->addChild(paramItem); - } - } - } - else - { - int midpoint = indexLowerBound + ((indexUpperBound - indexLowerBound) / 2); - - if (paramItem->text(0).compare(parentItem->child(midpoint)->text(0)) < 0) - { - insertParamAlphabetical(indexLowerBound, midpoint - 1, parentItem, paramItem); - } else - { - insertParamAlphabetical(midpoint + 1, indexUpperBound, parentItem, paramItem); - } - - } -} - -QTreeWidgetItem* QGCParamWidget::updateParameterDisplay(int compId, QString parameterName, QVariant value) -{ - //qDebug() << "QGCParamWidget::updateParameterDisplay" << parameterName; - - // Filter the parameters according to the filter list - if (_filterList.count() != 0) { - bool filterFound = false; - foreach(QString paramFilter, _filterList) { - if (paramFilter.endsWith("*") && parameterName.startsWith(paramFilter.left(paramFilter.size() - 1))) { - filterFound = true; - break; - } - if (paramFilter == parameterName) { - filterFound = true; - break; - } - } - if (!filterFound) { - return NULL; - } - } - - // Reference to item in tree - QTreeWidgetItem* paramItem = NULL; - - // Add component item if necessary - if (!componentItems->contains(compId)) { - QString componentName = tr("Component #%1").arg(compId); - addComponentItem(compId, componentName); - } - - //default parent item for this parameter widget item will be the top level component item - QTreeWidgetItem* parentItem = getParentWidgetItemForParam(compId,parameterName); - if (parentItem) { - paramItem = findChildWidgetItemForParam(parentItem,parameterName); - if (!paramItem) { - // Insert parameter into map - QStringList plist; - plist.append(parameterName); - // CREATE PARAMETER ITEM - paramItem = new QTreeWidgetItem(plist); - // CONFIGURE PARAMETER ITEM - if (value.type() == QVariant::Char) { - paramItem->setData(1, Qt::DisplayRole, value.toUInt()); - } - else { - paramItem->setData(1, Qt::DisplayRole, value); - } - paramItem->setFlags(paramItem->flags() | Qt::ItemIsEditable); - - //Insert alphabetically - if (parentItem->childCount() > 0) { - insertParamAlphabetical(0, parentItem->childCount() - 1, parentItem, paramItem); - } else - { - parentItem->addChild(paramItem); - } - - //only add the tooltip when the parameter item is first added - QString paramDesc = paramMgr->dataModel()->getParamDescription(parameterName); - if (!paramDesc.isEmpty()) { - QString tooltipFormat; - if (paramMgr->dataModel()->isParamDefaultKnown(parameterName)) { - tooltipFormat = tr("Default: %1, %2"); - double paramDefValue = paramMgr->dataModel()->getParamDefault(parameterName); - tooltipFormat = tooltipFormat.arg(paramDefValue).arg(paramDesc); - } - else { - tooltipFormat = paramDesc; - } - paramItem->setToolTip(0, tooltipFormat); - paramItem->setToolTip(1, tooltipFormat); - } - } - - //update the parameterItem's data - if (value.type() == QVariant::Char) { - paramItem->setData(1, Qt::DisplayRole, value.toUInt()); - } - else { - paramItem->setData(1, Qt::DisplayRole, value); - } - - } - - if (paramItem) { - // Reset background color - paramItem->setBackground(0, Qt::NoBrush); - paramItem->setBackground(1, Qt::NoBrush); - - paramItem->setTextColor(0, QGC::colorDarkWhite); - paramItem->setTextColor(1, QGC::colorDarkWhite); - - if (paramItem == tree->currentItem()) { - //need to unset current item to clear highlighting (green by default) - tree->setCurrentItem(NULL); //clear the selected line - } - - } - - return paramItem; -} - - - -void QGCParamWidget::parameterItemChanged(QTreeWidgetItem* paramItem, int column) -{ - if (paramItem && column > 0) { - - QString key = paramItem->data(0, Qt::DisplayRole).toString(); - //qDebug() << "parameterItemChanged:" << key << "with updatingParamNameLock:" << updatingParamNameLock; - - if (key == updatingParamNameLock) { - //qDebug() << "parameterItemChanged ignoring bounce from " << key; - return; - } - else { - updatingParamNameLock = key; - } - - QTreeWidgetItem* parent = paramItem->parent(); - while (parent->parent() != NULL) { - parent = parent->parent(); - } - // Parent is now top-level component - int componentId = componentItems->key(parent); - QVariant value = paramItem->data(1, Qt::DisplayRole); - - - bool pending = paramMgr->dataModel()->updatePendingParamWithValue(componentId,key,value); - - // If the value will result in an update - if (pending) { - // Set parameter on changed list to be transmitted to MAV - statusLabel->setText(tr("Pending: %1:%2: %3").arg(componentId).arg(key).arg(value.toFloat(), 5, 'f', 1, QChar(' '))); - - paramItem->setBackground(0, QBrush(QColor(QGC::colorOrange))); - paramItem->setBackground(1, QBrush(QColor(QGC::colorOrange))); - } - else { - QMap* pendingParams = paramMgr->dataModel()->getPendingParamsForComponent(componentId); - int pendingCount = pendingParams->count(); - statusLabel->setText(tr("Pending items: %1").arg(pendingCount)); - paramItem->setBackground(0, Qt::NoBrush); - paramItem->setBackground(1, Qt::NoBrush); - } - - - if (paramItem == tree->currentItem()) { - //need to unset current item to clear highlighting (green by default) - tree->setCurrentItem(NULL); //clear the selected line - } - - updatingParamNameLock.clear(); - } -} - -void QGCParamWidget::setParameterStatusMsg(const QString& msg) -{ - statusLabel->setText(msg); -} - - -void QGCParamWidget::clearOnboardParamDisplay() -{ - tree->clear(); - componentItems->clear(); -} - -void QGCParamWidget::clearPendingParamDisplay() -{ - tree->clear(); - componentItems->clear(); -} - - -void QGCParamWidget::handleParamStatusMsgUpdate(QString msg, int level) -{ - QColor bgColor = QGC::colorGreen; - if ((int)UASParameterCommsMgr::ParamCommsStatusLevel_Warning == level) { - bgColor = QGC::colorOrange; - } - else if ((int)UASParameterCommsMgr::ParamCommsStatusLevel_Error == level) { - bgColor = QGC::colorRed; - } - - QPalette pal = statusLabel->palette(); - pal.setColor(backgroundRole(), bgColor); - statusLabel->setPalette(pal); - statusLabel->setText(msg); -} - -void QGCParamWidget::configureRCToParam(QString param_id) { - QGCMapRCToParamDialog * d = new QGCMapRCToParamDialog(param_id, - mav, this); - d->exec(); -} diff --git a/src/ui/QGCParamWidget.h b/src/ui/QGCParamWidget.h deleted file mode 100644 index 61314bc8907bfde38ff2b61e5a5cf0d113af41b3..0000000000000000000000000000000000000000 --- a/src/ui/QGCParamWidget.h +++ /dev/null @@ -1,112 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Declaration of class QGCParamWidget - * @author Lorenz Meier - */ - -#ifndef QGCPARAMWIDGET_H -#define QGCPARAMWIDGET_H - -#include -#include -#include -#include -#include -#include "QGCParamTreeWidget.h" - -#include "QGCBaseParamWidget.h" - - -//forward declarations -class QGridLayout; -class UASInterface; - -/** - * @brief Widget to read/set onboard parameters - */ -class QGCParamWidget : public QGCBaseParamWidget -{ - Q_OBJECT -public: - QGCParamWidget(QWidget *parent = 0); - - /// @brief Sets the list of parameters which should be shown by this editor. Parameter names can be - /// wildcarded at the end such as this: "RC*". Which will filter to all parameters which begin - /// with "RC". The wildcard (*) can only be at the end of the string. - void setFilterList(const QStringList& filterList) { _filterList = filterList; } - -protected: - virtual void setParameterStatusMsg(const QString& msg); - virtual void layoutWidget();///< Layout the appearance of this widget - virtual void connectViewSignalsAndSlots();///< Connect view signals/slots as needed - virtual void disconnectViewSignalsAndSlots();///< Connect view signals/slots as needed - - virtual QTreeWidgetItem* getParentWidgetItemForParam(int compId, const QString& paramName); - virtual QTreeWidgetItem* findChildWidgetItemForParam(QTreeWidgetItem* parentItem, const QString& paramName); - - /** @brief Add a component item as a child of this widget - * @param compId Component id of the component - * @param compName Human friendly name of the component - */ - void addComponentItem(int compId, QString compName); - - virtual void addActionButtonsToLayout(QGridLayout* layout); - -public slots: - virtual void handleOnboardParamUpdate(int component,const QString& parameterName, QVariant value); - virtual void handlePendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending); - virtual void handleOnboardParameterListUpToDate(); - virtual void handleParamStatusMsgUpdate(QString msg, int level); - - virtual void clearOnboardParamDisplay(); - virtual void clearPendingParamDisplay(); - - /** @brief Adds parameter at the correct location by a alphapetical comparison of the parameter names */ - void insertParamAlphabetical(int indexLowerBound, int indexUpperBound, QTreeWidgetItem* parentItem, QTreeWidgetItem* paramItem); - - /** @brief Ensure that view of parameter matches data in the model */ - QTreeWidgetItem* updateParameterDisplay(int component, QString parameterName, QVariant value); - - /** @brief Update when user changes parameters */ - void parameterItemChanged(QTreeWidgetItem* prev, int column); - - /** Promt configuration for param map config from user */ - void configureRCToParam(QString param_id); - - - -protected: - QMap* componentItems; ///< The tree of component items, stored by component ID - QMap* > paramGroups; ///< Parameter groups to organize component items - QLabel* statusLabel; ///< User-facing parameter status label - QGCParamTreeWidget* tree; ///< The parameter tree - QStringList _filterList; - -private: - bool _fullParamListLoaded; -}; - -#endif // QGCPARAMWIDGET_H diff --git a/src/ui/QGCPendingParamWidget.cc b/src/ui/QGCPendingParamWidget.cc deleted file mode 100644 index aaafc42192cc32157000a9a12b6112a711c14eaa..0000000000000000000000000000000000000000 --- a/src/ui/QGCPendingParamWidget.cc +++ /dev/null @@ -1,130 +0,0 @@ -#include "QGCPendingParamWidget.h" - -#include -#include - -#include "UASManager.h" -#include "UASParameterCommsMgr.h" - - -QGCPendingParamWidget::QGCPendingParamWidget(QObject *parent) : - QGCParamWidget((QWidget*)parent) -{ - //this subclass doesn't display status updates - statusLabel->hide(); -} - - -void QGCPendingParamWidget::connectToParamManager() -{ - paramMgr = mav->getParamManager(); - - // Listen to updated param signals from the data model - connect(paramMgr, SIGNAL(pendingParamUpdate(int , const QString&, QVariant , bool )), - this, SLOT(handlePendingParamUpdate(int , const QString& , QVariant, bool ))); -} - - -void QGCPendingParamWidget::disconnectFromParamManager() -{ - // Listen to updated param signals from the data model - disconnect(paramMgr, SIGNAL(pendingParamUpdate(int , const QString&, QVariant , bool )), - this, SLOT(handlePendingParamUpdate(int , const QString& , QVariant, bool ))); - - paramMgr = NULL; -} - - -void QGCPendingParamWidget::disconnectViewSignalsAndSlots() -{ - //we ignore edits from the tree view -} - - -void QGCPendingParamWidget::connectViewSignalsAndSlots() -{ - //we ignore edits from the tree view -} - -void QGCPendingParamWidget::handlePendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending) -{ - // qDebug() << "handlePendingParamUpdate:" << paramName << "with updatingParamNameLock:" << updatingParamNameLock; - - if (updatingParamNameLock == paramName) { - //qDebug() << "ignoring bounce from " << paramName; - return; - } - else { - updatingParamNameLock = paramName; - } - - QTreeWidgetItem* paramItem = updateParameterDisplay(compId,paramName,value); - - if (isPending) { - QTreeWidgetItem* paramItem = updateParameterDisplay(compId,paramName,value); - paramItem->setFlags(paramItem->flags() & ~Qt::ItemIsEditable); //disallow editing - paramItem->setBackground(0, QBrush(QColor(QGC::colorOrange))); - paramItem->setBackground(1, QBrush(QColor(QGC::colorOrange))); - tree->expandAll(); - } - else { - //we don't display non-pending items - QTreeWidgetItem* groupItem = paramItem->parent(); - if (NULL != groupItem) { - tree->setUpdatesEnabled(false); - QTreeWidgetItem* componentItem = NULL; - if (1 == groupItem->childCount()) { - componentItem = groupItem->parent(); - } - - //always remove the actual paramItem from its parent - groupItem->removeChild(paramItem); - - //now we may need to remove the groupItem if it has no more children - if (NULL != componentItem) { - //remove the group from our internal data structures - QMap* compParamGroups = paramGroups.value(compId); - QString groupStr = paramName.section("_", 0, 0, QString::SectionSkipEmpty); - compParamGroups->remove(groupStr); - //remove the group item from componentItems - componentItems->value(compId)->removeChild(groupItem); - // remove the group item from the tree widget itself - componentItem->removeChild(groupItem); - - if (0 == componentItem->childCount()) { - //the component itself no longer has any pending changes: remove it - paramGroups.remove(compId); - componentItems->remove(compId); - QTreeWidgetItem* compTop = tree->takeTopLevelItem(tree->indexOfTopLevelItem(componentItem)); - delete compTop; //we own it after take - } - } - tree->setUpdatesEnabled(true); - tree->update(); - - } - } - - updatingParamNameLock.clear(); - -} - -void QGCPendingParamWidget::addActionButtonsToLayout(QGridLayout* layout) -{ - - QPushButton* setButton = new QPushButton(tr("Set")); - setButton->setToolTip(tr("Send pending parameters to volatile onboard memory")); - setButton->setWhatsThis(tr("Send pending parameters to volatile onboard memory")); - connect(setButton, SIGNAL(clicked()), - paramMgr, SLOT(sendPendingParameters())); - layout->addWidget(setButton, 2, 0); - - QPushButton* clearButton = new QPushButton(tr("Clear")); - clearButton->setToolTip(tr("Clear pending parameters without sending")); - clearButton->setWhatsThis(tr("Clear pending parameters without sending")); - connect(clearButton, SIGNAL(clicked()), - paramMgr, SLOT(clearAllPendingParams())); - layout->addWidget(clearButton, 2, 1); - - -} diff --git a/src/ui/QGCPendingParamWidget.h b/src/ui/QGCPendingParamWidget.h deleted file mode 100644 index 31b0d758d88c2b0e74a4bb8eb06c0d75f8c1b245..0000000000000000000000000000000000000000 --- a/src/ui/QGCPendingParamWidget.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef QGCPENDINGPARAMWIDGET_H -#define QGCPENDINGPARAMWIDGET_H - - -#include "QGCParamWidget.h" - -class QGridLayout; - -class QGCPendingParamWidget : public QGCParamWidget -{ - Q_OBJECT - -public: - explicit QGCPendingParamWidget(QObject* parent); - -protected: - virtual void connectToParamManager(); - virtual void disconnectFromParamManager(); - - virtual void connectViewSignalsAndSlots(); - virtual void disconnectViewSignalsAndSlots(); - - virtual void addActionButtonsToLayout(QGridLayout* layout); - - -signals: - -public slots: - virtual void handlePendingParamUpdate(int compId, const QString& paramName, QVariant value, bool isPending); - -}; - -#endif // QGCPENDINGPARAMWIDGET_H diff --git a/src/ui/QGCSensorSettingsWidget.cc b/src/ui/QGCSensorSettingsWidget.cc deleted file mode 100644 index 92307dab2431d9141ae841bced1e08d9cfd5e773..0000000000000000000000000000000000000000 --- a/src/ui/QGCSensorSettingsWidget.cc +++ /dev/null @@ -1,190 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Implementation of QGCSensorSettingsWidget - * @author Lorenz Meier - * - */ - -#include "QGCSensorSettingsWidget.h" -#include "ui_QGCSensorSettingsWidget.h" - -QGCSensorSettingsWidget::QGCSensorSettingsWidget(UASInterface* uas, QWidget *parent) : - QWidget(parent), - mav(uas), - ui(new Ui::QGCSensorSettingsWidget) -{ - ui->setupUi(this); - // Set up delay timers - delayedSendRawSensorTimer.setInterval(800); - delayedSendControllerTimer.setInterval(800); - delayedSendExtendedTimer.setInterval(800); - delayedSendRCTimer.setInterval(800); - delayedSendPositionTimer.setInterval(800); - delayedSendExtra1Timer.setInterval(800); - delayedSendExtra2Timer.setInterval(800); - delayedSendExtra3Timer.setInterval(800); - - connect(&delayedSendRawSensorTimer, SIGNAL(timeout()), this, SLOT(sendRawSensor())); - connect(&delayedSendControllerTimer, SIGNAL(timeout()), this, SLOT(sendController())); - connect(&delayedSendExtendedTimer, SIGNAL(timeout()), this, SLOT(sendExtended())); - connect(&delayedSendRCTimer, SIGNAL(timeout()), this, SLOT(sendRC())); - connect(&delayedSendPositionTimer, SIGNAL(timeout()), this, SLOT(sendPosition())); - connect(&delayedSendExtra1Timer, SIGNAL(timeout()), this, SLOT(sendExtra1())); - connect(&delayedSendExtra2Timer, SIGNAL(timeout()), this, SLOT(sendExtra2())); - connect(&delayedSendExtra3Timer, SIGNAL(timeout()), this, SLOT(sendExtra3())); - - // Connect UI - connect(ui->spinBox_rawSensor, SIGNAL(valueChanged(int)), this, SLOT(delayedSendRawSensor(int)));//mav, SLOT(enableRawSensorDataTransmission(int))); - connect(ui->spinBox_controller, SIGNAL(valueChanged(int)), this, SLOT(delayedSendController(int))); - connect(ui->spinBox_extended, SIGNAL(valueChanged(int)), this, SLOT(delayedSendExtended(int))); - connect(ui->spinBox_rc, SIGNAL(valueChanged(int)), this, SLOT(delayedSendRC(int))); - connect(ui->spinBox_position, SIGNAL(valueChanged(int)), this, SLOT(delayedSendPosition(int))); - connect(ui->spinBox_extra1, SIGNAL(valueChanged(int)), this, SLOT(delayedSendExtra1(int))); - connect(ui->spinBox_extra2, SIGNAL(valueChanged(int)), this, SLOT(delayedSendExtra2(int))); - connect(ui->spinBox_extra3, SIGNAL(valueChanged(int)), this, SLOT(delayedSendExtra3(int))); - - // Calibration - connect(ui->rcCalButton, SIGNAL(clicked()), mav, SLOT(startRadioControlCalibration())); - connect(ui->magCalButton, SIGNAL(clicked()), mav, SLOT(startMagnetometerCalibration())); - connect(ui->pressureCalButton, SIGNAL(clicked()), mav, SLOT(startPressureCalibration())); - connect(ui->gyroCalButton, SIGNAL(clicked()), mav, SLOT(startGyroscopeCalibration())); - - // Hide the calibration stuff - done in custom widgets anyway - ui->groupBox_3->hide(); -} - -void QGCSensorSettingsWidget::delayedSendRawSensor(int rate) -{ - Q_UNUSED(rate); - delayedSendRawSensorTimer.start(); -} - -void QGCSensorSettingsWidget::delayedSendController(int rate) -{ - Q_UNUSED(rate); - delayedSendControllerTimer.start(); -} - -void QGCSensorSettingsWidget::delayedSendExtended(int rate) -{ - Q_UNUSED(rate); - delayedSendExtendedTimer.start(); -} - -void QGCSensorSettingsWidget::delayedSendRC(int rate) -{ - Q_UNUSED(rate); - delayedSendRCTimer.start(); -} - -void QGCSensorSettingsWidget::delayedSendPosition(int rate) -{ - Q_UNUSED(rate); - delayedSendPositionTimer.start(); -} - -void QGCSensorSettingsWidget::delayedSendExtra1(int rate) -{ - Q_UNUSED(rate); - delayedSendExtra1Timer.start(); -} - -void QGCSensorSettingsWidget::delayedSendExtra2(int rate) -{ - Q_UNUSED(rate); - delayedSendExtra2Timer.start(); -} - -void QGCSensorSettingsWidget::delayedSendExtra3(int rate) -{ - Q_UNUSED(rate); - delayedSendExtra3Timer.start(); -} - -void QGCSensorSettingsWidget::sendRawSensor() -{ - delayedSendRawSensorTimer.stop(); - mav->enableRawSensorDataTransmission(ui->spinBox_rawSensor->value()); -} - -void QGCSensorSettingsWidget::sendController() -{ - delayedSendControllerTimer.stop(); - mav->enableRawControllerDataTransmission(ui->spinBox_controller->value()); -} - -void QGCSensorSettingsWidget::sendExtended() -{ - delayedSendExtendedTimer.stop(); - mav->enableExtendedSystemStatusTransmission(ui->spinBox_extended->value()); -} - -void QGCSensorSettingsWidget::sendRC() -{ - delayedSendRCTimer.stop(); - mav->enableRCChannelDataTransmission(ui->spinBox_rc->value()); -} - -void QGCSensorSettingsWidget::sendPosition() -{ - delayedSendPositionTimer.stop(); - mav->enablePositionTransmission(ui->spinBox_position->value()); -} - -void QGCSensorSettingsWidget::sendExtra1() -{ - delayedSendExtra1Timer.stop(); - mav->enableExtra1Transmission(ui->spinBox_extra1->value()); -} - -void QGCSensorSettingsWidget::sendExtra2() -{ - delayedSendExtra2Timer.stop(); - mav->enableExtra2Transmission(ui->spinBox_extra2->value()); -} - -void QGCSensorSettingsWidget::sendExtra3() -{ - delayedSendExtra3Timer.stop(); - mav->enableExtra3Transmission(ui->spinBox_extra3->value()); -} - -QGCSensorSettingsWidget::~QGCSensorSettingsWidget() -{ - delete ui; -} - -void QGCSensorSettingsWidget::changeEvent(QEvent *e) -{ - QWidget::changeEvent(e); - switch (e->type()) { - case QEvent::LanguageChange: - ui->retranslateUi(this); - break; - default: - break; - } -} diff --git a/src/ui/QGCSensorSettingsWidget.h b/src/ui/QGCSensorSettingsWidget.h deleted file mode 100644 index 1f78fa7954b604279e2549fd4d39a24b10152a1a..0000000000000000000000000000000000000000 --- a/src/ui/QGCSensorSettingsWidget.h +++ /dev/null @@ -1,85 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Declaration of class QGCSensorSettingsWidget - * @author Lorenz Meier - */ - -#ifndef QGCSENSORSETTINGSWIDGET_H -#define QGCSENSORSETTINGSWIDGET_H - -#include - -#include "UASInterface.h" - -namespace Ui -{ -class QGCSensorSettingsWidget; -} - -class QGCSensorSettingsWidget : public QWidget -{ - Q_OBJECT -public: - QGCSensorSettingsWidget(UASInterface* uas, QWidget *parent = 0); - ~QGCSensorSettingsWidget(); - -public slots: - void delayedSendRawSensor(int rate); - void delayedSendController(int rate); - void delayedSendExtended(int rate); - void delayedSendRC(int rate); - void delayedSendPosition(int rate); - void delayedSendExtra1(int rate); - void delayedSendExtra2(int rate); - void delayedSendExtra3(int rate); - -protected: - UASInterface* mav; - QTimer delayedSendRawSensorTimer; - QTimer delayedSendControllerTimer; - QTimer delayedSendExtendedTimer; - QTimer delayedSendRCTimer; - QTimer delayedSendPositionTimer; - QTimer delayedSendExtra1Timer; - QTimer delayedSendExtra2Timer; - QTimer delayedSendExtra3Timer; - void changeEvent(QEvent *e); - -protected slots: - void sendRawSensor(); - void sendController(); - void sendExtended(); - void sendRC(); - void sendPosition(); - void sendExtra1(); - void sendExtra2(); - void sendExtra3(); - -private: - Ui::QGCSensorSettingsWidget *ui; -}; - -#endif // QGCSENSORSETTINGSWIDGET_H diff --git a/src/ui/QGCSensorSettingsWidget.ui b/src/ui/QGCSensorSettingsWidget.ui deleted file mode 100644 index 9c8267b99ae0e1035b197aa91f2de04fe1a79505..0000000000000000000000000000000000000000 --- a/src/ui/QGCSensorSettingsWidget.ui +++ /dev/null @@ -1,218 +0,0 @@ - - - QGCSensorSettingsWidget - - - - 0 - 0 - 307 - 221 - - - - Form - - - - 0 - - - - - Calibration Wizards - - - - 6 - - - 2 - - - 6 - - - 2 - - - 12 - - - 6 - - - - - RC Cal. - - - - - - - Mag. Cal. - - - - - - - Gyro Cal. - - - - - - - Pressure Cal. - - - - - - - - - - Data Stream Rates (Hz) - - - - 6 - - - 2 - - - 6 - - - 2 - - - 5 - - - 2 - - - - - 10000 - - - - - - - Raw Sensor - - - - - - - 10000 - - - - - - - 10000 - - - - - - - 10000 - - - - - - - Ext. Status - - - - - - - Position - - - - - - - Raw Contr. - - - - - - - 10000 - - - - - - - 10000 - - - - - - - 10000 - - - - - - - 10000 - - - - - - - RC Chan. - - - - - - - Extra 1 - - - - - - - Extra 2 - - - - - - - Extra 3 - - - - - - - - - - - diff --git a/src/ui/QGCToolBar.cc b/src/ui/QGCToolBar.cc deleted file mode 100644 index 3d460488200d0589f47e944b2d677dc67135de81..0000000000000000000000000000000000000000 --- a/src/ui/QGCToolBar.cc +++ /dev/null @@ -1,766 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009 - 2011 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -#include -#include -#include -#include - -#include "SettingsDialog.h" -#include "QGCToolBar.h" -#include "UASManager.h" -#include "MainWindow.h" -#include "QGCApplication.h" -#include "UASMessageView.h" -#include "UASMessageHandler.h" - -// Label class that sends mouse hover events -class QCGHoverLabel : public QLabel -{ -public: - QCGHoverLabel(QGCToolBar* toolBar) : QLabel(toolBar) - { - _toolBar = toolBar; - } -protected: - void enterEvent(QEvent* event) - { - Q_UNUSED(event); - _toolBar->enterMessageLabel(); - } -private: - QGCToolBar* _toolBar; -}; - -QGCToolBar::QGCToolBar(QWidget *parent) : - QToolBar(parent), - mav(NULL), - changed(true), - batteryPercent(0), - batteryVoltage(0), - wpId(0), - wpDistance(0), - altitudeRel(0), - systemArmed(false), - currentLink(NULL), - firstAction(NULL), - _linkMgr(LinkManager::instance()), - _linkCombo(NULL), - _linkComboAction(NULL), - _rollDownMessages(NULL), - _linksConnected(false), - _linkSelected(false) -{ - setObjectName("QGCToolBar"); - setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); - connect(LinkManager::instance(), &LinkManager::linkConnected, this, &QGCToolBar::_linkConnected); - connect(LinkManager::instance(), &LinkManager::linkDisconnected, this, &QGCToolBar::_linkDisconnected); - connect(LinkManager::instance(), &LinkManager::linkConfigurationChanged, this, &QGCToolBar::_updateConfigurations); -} - -void QGCToolBar::heartbeatTimeout(bool timeout, unsigned int ms) -{ - // set timeout label visible - if (timeout) - { - // Alternate colors to increase visibility - if ((ms / 1000) % 2 == 0) - { - toolBarTimeoutLabel->setStyleSheet(QString("QLabel {color: #000; background-color: #FF0037;}")); - } - else - { - toolBarTimeoutLabel->setStyleSheet(QString("QLabel {color: #FFF; background-color: #6B0017;}")); - } - toolBarTimeoutLabel->setText(tr("CONNECTION LOST: %1 s").arg((ms / 1000.0f), 2, 'f', 1, ' ')); - toolBarTimeoutAction->setVisible(true); - toolBarMessageAction->setVisible(false); - toolBarBatteryBarAction->setVisible(false); - } - else - { - // Check if loss text is present, reset once - if (toolBarTimeoutAction->isVisible()) - { - toolBarTimeoutAction->setVisible(false); - toolBarMessageAction->setVisible(true); - toolBarBatteryBarAction->setVisible(true); - } - } -} - -void QGCToolBar::createUI() -{ - // CREATE TOOLBAR ITEMS - // Add internal actions - // Add MAV widget - symbolLabel = new QLabel(this); - addWidget(symbolLabel); - - toolBarNameLabel = new QLabel(this); - toolBarNameLabel->setToolTip(tr("Currently controlled vehicle")); - toolBarNameLabel->setAlignment(Qt::AlignCenter); - toolBarNameLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); - addWidget(toolBarNameLabel); - - toolBarTimeoutLabel = new QLabel(this); - toolBarTimeoutLabel->setToolTip(tr("System timed out, interval since last message")); - toolBarTimeoutLabel->setAlignment(Qt::AlignCenter); - toolBarTimeoutLabel->setObjectName("toolBarTimeoutLabel"); - toolBarTimeoutLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); - toolBarTimeoutAction = addWidget(toolBarTimeoutLabel); - - toolBarSafetyLabel = new QLabel(this); - toolBarSafetyLabel->setToolTip(tr("Vehicle safety state")); - toolBarSafetyLabel->setAlignment(Qt::AlignCenter); - addWidget(toolBarSafetyLabel); - - toolBarModeLabel = new QLabel(this); - toolBarModeLabel->setToolTip(tr("Vehicle mode")); - toolBarModeLabel->setObjectName("toolBarModeLabel"); - toolBarModeLabel->setAlignment(Qt::AlignCenter); - addWidget(toolBarModeLabel); - -// toolBarStateLabel = new QLabel(this); -// toolBarStateLabel->setToolTip(tr("Vehicle state")); -// toolBarStateLabel->setObjectName("toolBarStateLabel"); -// toolBarStateLabel->setAlignment(Qt::AlignCenter); -// addWidget(toolBarStateLabel); - - toolBarBatteryBar = new QProgressBar(this); - toolBarBatteryBar->setMinimum(0); - toolBarBatteryBar->setMaximum(100); - toolBarBatteryBar->setMinimumWidth(20); - toolBarBatteryBar->setMaximumWidth(100); - toolBarBatteryBar->setToolTip(tr("Battery charge level")); - toolBarBatteryBar->setObjectName("toolBarBatteryBar"); - toolBarBatteryBar->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::MinimumExpanding); - toolBarBatteryBarAction = addWidget(toolBarBatteryBar); - - toolBarBatteryVoltageLabel = new QLabel(this); - toolBarBatteryVoltageLabel->setToolTip(tr("Battery voltage")); - toolBarBatteryVoltageLabel->setObjectName("toolBarBatteryVoltageLabel"); - toolBarBatteryVoltageLabel->setAlignment(Qt::AlignCenter); - toolBarBatteryVoltageAction = addWidget(toolBarBatteryVoltageLabel); - - toolBarWpLabel = new QLabel(this); - toolBarWpLabel->setToolTip(tr("Current waypoint")); - toolBarWpLabel->setObjectName("toolBarWpLabel"); - toolBarWpLabel->setAlignment(Qt::AlignCenter); - toolBarWpAction = addWidget(toolBarWpLabel); - - toolBarMessageLabel = new QCGHoverLabel(this); - toolBarMessageLabel->setToolTip(tr("Most recent system message")); - toolBarMessageLabel->setObjectName("toolBarMessageLabel"); - toolBarMessageAction = addWidget(toolBarMessageLabel); - - QWidget* spacer = new QWidget(); - spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); - addWidget(spacer); - - // Links to connect to - _linkCombo = new QComboBox(this); - connect(_linkCombo, SIGNAL(activated(int)), SLOT(_linkComboActivated(int))); - _linkCombo->setToolTip(tr("Choose the link to use")); - _linkCombo->setEnabled(true); - _linkCombo->setMinimumWidth(160); - _linkComboAction = addWidget(_linkCombo); - _updateConfigurations(); - - _connectButton = new QPushButton(tr("Connect"), this); - _connectButton->setObjectName("connectButton"); - addWidget(_connectButton); - connect(_connectButton, &QPushButton::clicked, this, &QGCToolBar::_connectButtonClicked); - - resetToolbarUI(); - - // DONE INITIALIZING BUTTONS - - // Set the toolbar to be updated every 2s - connect(&updateViewTimer, SIGNAL(timeout()), this, SLOT(updateView())); - - // Configure the toolbar for the current default UAS - setActiveUAS(UASManager::instance()->getActiveUAS()); - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*))); - - toolBarMessageAction->setVisible(false); - toolBarBatteryBarAction->setVisible(false); - - changed = false; -} - -/** - * Reset all the labels and stuff for the toolbar to a pristine state. Done at startup after - * all UI has been created and also when the last UAS has been deleted. - **/ -void QGCToolBar::resetToolbarUI() -{ - toolBarNameLabel->setText("------"); - toolBarNameLabel->setStyleSheet(""); - toolBarTimeoutLabel->setText(tr("UNCONNECTED")); - //toolBarTimeoutLabel->show(); - toolBarSafetyLabel->setText("----"); - toolBarModeLabel->setText("------"); -// toolBarStateLabel->setText("------"); - toolBarBatteryBar->setValue(0); - toolBarBatteryBar->setDisabled(true); - toolBarBatteryVoltageLabel->setText("xx.x V"); - toolBarWpLabel->setText("WP--"); - toolBarMessageLabel->clear(); - lastSystemMessage = ""; - lastSystemMessageTimeMs = 0; - symbolLabel->setStyleSheet(""); - symbolLabel->clear(); - toolBarMessageAction->setVisible(false); - toolBarBatteryBarAction->setVisible(false); -} - -void QGCToolBar::setPerspectiveChangeActions(const QList &actions) -{ - if (actions.count() > 1) - { - group = new QButtonGroup(this); - group->setExclusive(true); - - // Add the first button. - QToolButton *first = new QToolButton(this); - //first->setIcon(actions.first()->icon()); - first->setText(actions.first()->text()); - first->setToolTip(actions.first()->toolTip()); - first->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - first->setCheckable(true); - - connect(first, SIGNAL(clicked(bool)), actions.first(), SIGNAL(triggered(bool))); - connect(actions.first(),SIGNAL(triggered(bool)),first,SLOT(setChecked(bool))); - - first->setObjectName("firstAction"); - - //first->setStyleSheet("QToolButton { min-height: 24px; max-height: 24px; min-width: 60px; color: #222222; background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #A2A3A4, stop: 1 #B6B7B8); margin-left: 8px; margin-right: 0px; padding-left: 4px; padding-right: 8px; border-radius: 0px; border : 0px solid blue; border-bottom-left-radius: 6px; border-top-left-radius: 6px; border-left: 1px solid #484848; border-top: 1px solid #484848; border-bottom: 1px solid #484848; } QToolButton:checked { background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #555555, stop: 1 #787878); color: #DDDDDD; }"); - addWidget(first); - group->addButton(first); - - // Add all the middle buttons. - for (int i = 1; i < actions.count(); i++) - { - QToolButton *btn = new QToolButton(this); - //btn->setIcon(actions.at(i)->icon()); - btn->setText(actions.at(i)->text()); - btn->setToolTip(actions.at(i)->toolTip()); - btn->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - btn->setCheckable(true); - connect(btn, SIGNAL(clicked(bool)), actions.at(i), SIGNAL(triggered(bool))); - connect(actions.at(i),SIGNAL(triggered(bool)),btn,SLOT(setChecked(bool))); - addWidget(btn); - group->addButton(btn); - } - - // Add last button - advancedButton = new QToolButton(this); - advancedButton->setIcon(QIcon(":/files/images/apps/utilities-system-monitor.svg")); - advancedButton->setText(tr("More")); - advancedButton->setToolTip(tr("Options for advanced users")); - advancedButton->setCheckable(true); - advancedButton->setObjectName("advancedButton"); - advancedButton->setPopupMode(QToolButton::InstantPopup); - advancedButton->setToolButtonStyle(Qt::ToolButtonTextOnly); - addWidget(advancedButton); - group->addButton(advancedButton); - } else { - qDebug() << __FILE__ << __LINE__ << "Not enough perspective change actions provided"; - } - - // Add the "rest" - createUI(); -} - -void QGCToolBar::setPerspectiveChangeAdvancedActions(const QList &actions) -{ - if (actions.count() > 1) - { - QMenu *menu = new QMenu(advancedButton); - - for (int i = 0; i < actions.count(); i++) - { - - menu->addAction(actions.at(i)); - } - - advancedButton->setMenu(menu); - connect(menu, SIGNAL(triggered(QAction*)), this, SLOT(advancedActivityTriggered(QAction*))); - - } else { - qDebug() << __FILE__ << __LINE__ << "Not enough perspective change actions provided"; - } -} - -void QGCToolBar::advancedActivityTriggered(QAction* action) -{ - if (action->isChecked()) - advancedButton->setChecked(true); -} - -void QGCToolBar::setActiveUAS(UASInterface* active) -{ - // Do nothing if system is the same - if (mav == active || active == NULL) - return; - - // If switching UASes, disconnect the only one. - if (mav) - { - disconnect(mav, SIGNAL(statusChanged(UASInterface*,QString,QString)), this, SLOT(updateState(UASInterface*,QString,QString))); - disconnect(mav, SIGNAL(modeChanged(int,QString,QString)), this, SLOT(updateMode(int,QString,QString))); - disconnect(mav, SIGNAL(nameChanged(QString)), this, SLOT(updateName(QString))); - disconnect(mav, SIGNAL(systemTypeSet(UASInterface*,uint)), this, SLOT(setSystemType(UASInterface*,uint))); - disconnect(mav, SIGNAL(textMessageReceived(int,int,int,QString)), this, SLOT(receiveTextMessage(int,int,int,QString))); - disconnect(mav, SIGNAL(batteryChanged(UASInterface*, double, double, double,int)), this, SLOT(updateBatteryRemaining(UASInterface*, double, double, double, int))); - disconnect(mav, SIGNAL(armingChanged(bool)), this, SLOT(updateArmingState(bool))); - disconnect(mav, SIGNAL(heartbeatTimeout(bool, unsigned int)), this, SLOT(heartbeatTimeout(bool,unsigned int))); - if (mav->getWaypointManager()) - { - disconnect(mav->getWaypointManager(), SIGNAL(currentWaypointChanged(quint16)), this, SLOT(updateCurrentWaypoint(quint16))); - disconnect(mav->getWaypointManager(), SIGNAL(waypointDistanceChanged(double)), this, SLOT(updateWaypointDistance(double))); - } - } - else - { - // Only update the UI once a UAS has been selected. - updateViewTimer.start(2000); - } - - // Connect new system - mav = active; - if (mav) - { - connect(mav, SIGNAL(statusChanged(UASInterface*,QString,QString)), this, SLOT(updateState(UASInterface*, QString,QString))); - connect(mav, SIGNAL(modeChanged(int,QString,QString)), this, SLOT(updateMode(int,QString,QString))); - connect(mav, SIGNAL(nameChanged(QString)), this, SLOT(updateName(QString))); - connect(mav, SIGNAL(systemTypeSet(UASInterface*,uint)), this, SLOT(setSystemType(UASInterface*,uint))); - connect(mav, SIGNAL(textMessageReceived(int,int,int,QString)), this, SLOT(receiveTextMessage(int,int,int,QString))); - connect(mav, SIGNAL(batteryChanged(UASInterface*,double,double,double,int)), this, SLOT(updateBatteryRemaining(UASInterface*,double,double,double,int))); - connect(mav, SIGNAL(armingChanged(bool)), this, SLOT(updateArmingState(bool))); - connect(mav, SIGNAL(heartbeatTimeout(bool, unsigned int)), this, SLOT(heartbeatTimeout(bool,unsigned int))); - if (mav->getWaypointManager()) - { - connect(mav->getWaypointManager(), SIGNAL(currentWaypointChanged(quint16)), this, SLOT(updateCurrentWaypoint(quint16))); - connect(mav->getWaypointManager(), SIGNAL(waypointDistanceChanged(double)), this, SLOT(updateWaypointDistance(double))); - } - - // Update all values once - systemName = mav->getUASName(); - systemArmed = mav->isArmed(); - toolBarNameLabel->setText(mav->getUASName().replace("MAV", "")); - toolBarNameLabel->setStyleSheet(QString("QLabel {color: %1;}").arg(mav->getColor().name())); - symbolLabel->setStyleSheet(QString("QWidget {background-color: %1;}").arg(mav->getColor().name())); - QString shortMode = mav->getShortMode(); - shortMode = shortMode.replace("D|", ""); - shortMode = shortMode.replace("A|", ""); - toolBarModeLabel->setText(shortMode); -// toolBarStateLabel->setText(mav->getShortState()); - toolBarTimeoutAction->setVisible(false); - toolBarMessageLabel->clear(); - lastSystemMessageTimeMs = 0; - toolBarBatteryBar->setEnabled(true); - setSystemType(mav, mav->getSystemType()); - } - else - { - updateViewTimer.stop(); - resetToolbarUI(); - } -} - -void QGCToolBar::updateArmingState(bool armed) -{ - systemArmed = armed; - changed = true; - /* important, immediately update */ - updateView(); -} - -void QGCToolBar::updateView() -{ - if (!changed) return; - if (toolBarWpAction->isVisible()) - toolBarWpLabel->setText(tr("WP%1").arg(wpId)); - - if (toolBarBatteryBarAction->isVisible()) { - toolBarBatteryBar->setValue(batteryPercent); - - if (batteryPercent < 30 && toolBarBatteryBar->value() >= 30) { - toolBarBatteryBar->setStyleSheet(qgcApp()->styleIsDark() ? - "QProgressBar {color: #000} QProgressBar QProgressBar::chunk { background-color: #0F0}" : - "QProgressBar {color: #FFF} QProgressBar::chunk { background-color: #008000}"); - } else if (batteryPercent >= 30 && toolBarBatteryBar->value() < 30){ - toolBarBatteryBar->setStyleSheet(qgcApp()->styleIsDark() ? - "QProgressBar {color: #000} QProgressBar QProgressBar::chunk { background-color: #FF0}" : - "QProgressBar {color: #FFF} QProgressBar::chunk { background-color: #808000}"); - } - - } - if (toolBarBatteryVoltageLabel->isVisible()) { - toolBarBatteryVoltageLabel->setText(tr("%1 V").arg(batteryVoltage, 4, 'f', 1, ' ')); - } - - -// toolBarStateLabel->setText(QString("%1").arg(state)); - if (mode.size() > 0) { - toolBarModeLabel->setText(QString("%1").arg(mode)); - } - toolBarNameLabel->setText(systemName); - // expire after 15 seconds - - if (toolBarMessageAction->isVisible()) { - if (QGC::groundTimeMilliseconds() - lastSystemMessageTimeMs < 15000) { - toolBarMessageLabel->setText(QString("%1").arg(lastSystemMessage)); - } else { - if(UASMessageHandler::instance()->messages().count()) { - toolBarMessageLabel->setText(tr("Messages")); - } else { - toolBarMessageLabel->setText(tr("No Messages")); - } - } - } - - // Display the system armed state with a red-on-yellow background if armed or green text if safe. - if (systemArmed) - { - toolBarSafetyLabel->setStyleSheet(QString("QLabel {color: %1; background-color: %2; font-size: 15pt;}").arg(QGC::colorRed.name()).arg(QGC::colorYellow.name())); - toolBarSafetyLabel->setText(tr("ARMED")); - } - else - { - toolBarSafetyLabel->setStyleSheet(qgcApp()->styleIsDark() ? - "QLabel {color: #14C814; font-size: 15pt;}" : - "QLabel {color: #0D820D; font-size: 15pt;}"); - toolBarSafetyLabel->setText(tr("DISARMED")); - } - - changed = false; -} - -void QGCToolBar::updateWaypointDistance(double distance) -{ - if (wpDistance != distance) changed = true; - wpDistance = distance; -} - -void QGCToolBar::updateCurrentWaypoint(quint16 id) -{ - if (wpId != id) changed = true; - wpId = id; -} - -void QGCToolBar::updateBatteryRemaining(UASInterface* uas, double voltage, double current, double percent, int seconds) -{ - Q_UNUSED(uas); - Q_UNUSED(seconds); - Q_UNUSED(current); - - if (batteryPercent != percent || batteryVoltage != voltage) changed = true; - batteryPercent = percent; - batteryVoltage = voltage; -} - -void QGCToolBar::updateState(UASInterface* system, QString name, QString description) -{ - Q_UNUSED(system); - Q_UNUSED(description); - if (state != name) changed = true; - state = name; - /* important, immediately update */ - updateView(); -} - -void QGCToolBar::updateMode(int system, QString name, QString description) -{ - Q_UNUSED(system); - Q_UNUSED(description); - if (name.size() == 0) { - qDebug() << "EMPTY MODE, RETURN"; - } - - QString shortMode = name; - shortMode = shortMode.replace("D|", ""); - shortMode = shortMode.replace("A|", ""); - - if (mode != shortMode) changed = true; - mode = shortMode; - /* important, immediately update */ - updateView(); -} - -void QGCToolBar::updateName(const QString& name) -{ - if (systemName != name) - { - changed = true; - } - systemName = name; -} - -/** - * The current system type is represented through the system icon. - * - * @param uas Source system, has to be the same as this->uas - * @param systemType type ID, following the MAVLink system type conventions - * @see http://pixhawk.ethz.ch/software/mavlink - */ -void QGCToolBar::setSystemType(UASInterface* uas, unsigned int systemType) -{ - Q_UNUSED(uas); - QPixmap newPixmap; - switch (systemType) { - case MAV_TYPE_GENERIC: - newPixmap = QPixmap(":/files/images/mavs/generic.svg"); - break; - case MAV_TYPE_FIXED_WING: - newPixmap = QPixmap(":/files/images/mavs/fixed-wing.svg"); - break; - case MAV_TYPE_QUADROTOR: - newPixmap = QPixmap(":/files/images/mavs/quadrotor.svg"); - break; - case MAV_TYPE_COAXIAL: - newPixmap = QPixmap(":/files/images/mavs/coaxial.svg"); - break; - case MAV_TYPE_HELICOPTER: - newPixmap = QPixmap(":/files/images/mavs/helicopter.svg"); - break; - case MAV_TYPE_ANTENNA_TRACKER: - newPixmap = QPixmap(":/files/images/mavs/antenna-tracker.svg"); - break; - case MAV_TYPE_GCS: - newPixmap = QPixmap(":files/images/mavs/groundstation.svg"); - break; - case MAV_TYPE_AIRSHIP: - newPixmap = QPixmap(":files/images/mavs/airship.svg"); - break; - case MAV_TYPE_FREE_BALLOON: - newPixmap = QPixmap(":files/images/mavs/free-balloon.svg"); - break; - case MAV_TYPE_ROCKET: - newPixmap = QPixmap(":files/images/mavs/rocket.svg"); - break; - case MAV_TYPE_GROUND_ROVER: - newPixmap = QPixmap(":files/images/mavs/ground-rover.svg"); - break; - case MAV_TYPE_SURFACE_BOAT: - newPixmap = QPixmap(":files/images/mavs/surface-boat.svg"); - break; - case MAV_TYPE_SUBMARINE: - newPixmap = QPixmap(":files/images/mavs/submarine.svg"); - break; - case MAV_TYPE_HEXAROTOR: - newPixmap = QPixmap(":files/images/mavs/hexarotor.svg"); - break; - case MAV_TYPE_OCTOROTOR: - newPixmap = QPixmap(":files/images/mavs/octorotor.svg"); - break; - case MAV_TYPE_TRICOPTER: - newPixmap = QPixmap(":files/images/mavs/tricopter.svg"); - break; - case MAV_TYPE_FLAPPING_WING: - newPixmap = QPixmap(":files/images/mavs/flapping-wing.svg"); - break; - case MAV_TYPE_KITE: - newPixmap = QPixmap(":files/images/mavs/kite.svg"); - break; - default: - newPixmap = QPixmap(":/files/images/mavs/unknown.svg"); - break; - } - symbolLabel->setPixmap(newPixmap.scaledToHeight(24)); -} - -void QGCToolBar::receiveTextMessage(int uasid, int componentid, int severity, QString text) -{ - Q_UNUSED(uasid); - Q_UNUSED(componentid); - Q_UNUSED(severity); - if (lastSystemMessage != text) changed = true; - lastSystemMessage = text; - lastSystemMessageTimeMs = QGC::groundTimeMilliseconds(); -} - -void QGCToolBar::_linkConnected(LinkInterface* link) -{ - Q_UNUSED(link); - _updateConnectButton(); -} - -void QGCToolBar::_linkDisconnected(LinkInterface* link) -{ - _updateConnectButton(link); -} - -void QGCToolBar::_updateConnectButton(LinkInterface *disconnectedLink) -{ - QMenu* menu = new QMenu(this); - // If there are multiple connected links add/update the connect button menu - int connectedCount = 0; - QList links = _linkMgr->getLinks(); - foreach(LinkInterface* link, links) { - if (disconnectedLink != link && link->isConnected()) { - connectedCount++; - QAction* action = menu->addAction(link->getName()); - action->setData(QVariant::fromValue((void*)link)); - connect(action, &QAction::triggered, this, &QGCToolBar::_disconnectFromMenu); - } - } - // Remove old menu - QMenu* oldMenu = _connectButton->menu(); - _connectButton->setMenu(NULL); - if (oldMenu) { - oldMenu->deleteLater(); - } - // Add new menu if needed - if (connectedCount > 1) { - _connectButton->setMenu(menu); - } else { - delete menu; - } - _linksConnected = connectedCount != 0; - _connectButton->setText(_linksConnected ? tr("Disconnect") : tr("Connect")); - _linkComboAction->setVisible(!_linksConnected); - toolBarMessageAction->setVisible(_linksConnected); - toolBarWpAction->setVisible(_linksConnected); -} - -void QGCToolBar::_connectButtonClicked(bool checked) -{ - Q_UNUSED(checked); - if (_linksConnected) { - // Disconnect - // Should be just one connected link, disconnect it - int connectedCount = 0; - LinkInterface* connectedLink = NULL; - QList links = _linkMgr->getLinks(); - foreach(LinkInterface* link, links) { - if (link->isConnected()) { - connectedCount++; - connectedLink = link; - } - } - Q_ASSERT(connectedCount == 1); - Q_ASSERT(connectedLink); - // TODO The link is "disconnected" but not deleted. On subsequent connections, - // new links are created. Why's that? - _linkMgr->disconnectLink(connectedLink); - } else { - // We don't want the combo box updating under our feet - _linkMgr->suspendConfigurationUpdates(true); - // Connect - int valid = _linkCombo->currentData().toInt(); - // Is this a valid option? - if(valid == 1) { - // Get the configuration name - QString confName = _linkCombo->currentText(); - // Create a link for it - LinkInterface* link = _linkMgr->createLink(confName); - if(link) { - // Connect it - _linkMgr->connectLink(link); - // Save last used connection - MainWindow::instance()->saveLastUsedConnection(confName); - } - _linkMgr->suspendConfigurationUpdates(false); - // Else, it must be Manage Links - } else if(valid == 0) { - _linkMgr->suspendConfigurationUpdates(false); - MainWindow::instance()->manageLinks(); - } - } -} - -void QGCToolBar::_disconnectFromMenu(bool checked) -{ - Q_UNUSED(checked); - QAction* action = qobject_cast(sender()); - Q_ASSERT(action); - LinkInterface* link = (LinkInterface*)(action->data().value()); - Q_ASSERT(link); - _linkMgr->disconnectLink(link); -} - -void QGCToolBar::_linkComboActivated(int index) -{ - int type = _linkCombo->itemData(index).toInt(); - // Check if we should "Manage Connections" - if(type == 0) { - MainWindow::instance()->manageLinks(); - } else { - _linkSelected = true; - } -} - -void QGCToolBar::_updateConfigurations() -{ - bool resetSelected = false; - QString selected = _linkCombo->currentText(); - _linkCombo->clear(); - _linkCombo->addItem("Manage Links", 0); - QList configs = LinkManager::instance()->getLinkConfigurationList(); - foreach(LinkConfiguration* conf, configs) { - if(conf) { - _linkCombo->addItem(conf->name(), 1); - if(!_linkSelected && conf->isPreferred()) { - selected = conf->name(); - resetSelected = true; - } - } - } - int index = _linkCombo->findText(selected); - if(index >= 0) { - _linkCombo->setCurrentIndex(index); - } - if(resetSelected) { - _linkSelected = false; - } -} - -/** - * @brief Mouse entered Message label area - */ -void QGCToolBar::enterMessageLabel() -{ - /* - // If not already there and messages are actually present - if(!_rollDownMessages && UASMessageHandler::instance()->messages().count()) - { - QPoint p = toolBarMessageLabel->mapToGlobal(QPoint(0,0)); - _rollDownMessages = new UASMessageViewRollDown(MainWindow::instance(),this); - _rollDownMessages->setAttribute(Qt::WA_DeleteOnClose); - _rollDownMessages->move(mapFromGlobal(p)); - _rollDownMessages->setMinimumSize(360,200); - _rollDownMessages->show(); - } - */ -} - -/** - * @brief Mouse left message drop down list area (and closed it) - */ -void QGCToolBar::leaveMessageView() -{ - _rollDownMessages = NULL; -} diff --git a/src/ui/QGCToolBar.h b/src/ui/QGCToolBar.h deleted file mode 100644 index b51d346e6eaab2e2762bed289cd8937324639308..0000000000000000000000000000000000000000 --- a/src/ui/QGCToolBar.h +++ /dev/null @@ -1,148 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009 - 2011 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -#ifndef QGCTOOLBAR_H -#define QGCTOOLBAR_H - -#include -#include -#include -#include -#include -#include -#include -#include - -#include "UASInterface.h" -#include "SerialLink.h" -#include "LinkManager.h" - -class UASMessageViewRollDown; - -class QGCToolBar : public QToolBar -{ - Q_OBJECT - -public: - explicit QGCToolBar(QWidget* parent = 0); - void setPerspectiveChangeActions(const QList &action); - void setPerspectiveChangeAdvancedActions(const QList &action); - /** - * @brief Mouse entered Message label area - */ - void enterMessageLabel(); - /** - * @brief Mouse left message drop down list area (and closed it) - */ - void leaveMessageView(); - -public slots: - /** @brief Set the system that is currently displayed by this widget */ - void setActiveUAS(UASInterface* active); - /** @brief Set the system state */ - void updateState(UASInterface* system, QString name, QString description); - /** @brief Set the system mode */ - void updateMode(int system, QString name, QString description); - /** @brief Update the system name */ - void updateName(const QString& name); - /** @brief Set the MAV system type */ - void setSystemType(UASInterface* uas, unsigned int systemType); - /** @brief Received system text message */ - void receiveTextMessage(int uasid, int componentid, int severity, QString text); - /** @brief Update battery charge state */ - void updateBatteryRemaining(UASInterface* uas, double voltage, double current, double percent, int seconds); - /** @brief Update current waypoint */ - void updateCurrentWaypoint(quint16 id); - /** @brief Update distance to current waypoint */ - void updateWaypointDistance(double distance); - /** @brief Update arming state */ - void updateArmingState(bool armed); - /** @brief Repaint widgets */ - void updateView(); - /** @brief Update connection timeout time */ - void heartbeatTimeout(bool timeout, unsigned int ms); - /** @brief Set an activity action as checked in menu */ - void advancedActivityTriggered(QAction* action); - -protected: - void createUI(); - void resetToolbarUI(); - UASInterface* mav; - QLabel* symbolLabel; - QLabel* toolBarNameLabel; - QLabel* toolBarTimeoutLabel; - QAction* toolBarTimeoutAction; ///< Needed to set label (in)visible. - QAction* toolBarMessageAction; - QAction* toolBarWpAction; - QAction* toolBarBatteryBarAction; - QAction* toolBarBatteryVoltageAction; - QLabel* toolBarSafetyLabel; - QLabel* toolBarModeLabel; - QLabel* toolBarStateLabel; - QLabel* toolBarWpLabel; - QLabel* toolBarMessageLabel; - QProgressBar* toolBarBatteryBar; - QLabel* toolBarBatteryVoltageLabel; - - bool changed; - float batteryPercent; - float batteryVoltage; - int wpId; - double wpDistance; - float altitudeRel; - QString state; - QString mode; - QString systemName; - QString lastSystemMessage; - quint64 lastSystemMessageTimeMs; - QTimer updateViewTimer; - bool systemArmed; - LinkInterface* currentLink; - QAction* firstAction; - QToolButton *advancedButton; - QButtonGroup *group; - -private slots: - void _linkConnected(LinkInterface* link); - void _linkDisconnected(LinkInterface* link); - void _disconnectFromMenu(bool checked); - void _connectButtonClicked(bool checked); - void _linkComboActivated(int index); - void _updateConfigurations(); - -private: - void _updateConnectButton(LinkInterface* disconnectedLink = NULL); - - LinkManager* _linkMgr; - - QComboBox* _linkCombo; - QAction* _linkComboAction; - - UASMessageViewRollDown* _rollDownMessages; - - QPushButton* _connectButton; - bool _linksConnected; - bool _linkSelected; // User selected a link. Stop autoselecting it. -}; - -#endif // QGCTOOLBAR_H diff --git a/src/ui/SerialConfigurationWindow.cc b/src/ui/SerialConfigurationWindow.cc index f5b2a2420a24d2ff6d0b721bf906d286a194c5a9..7f9e21cd7f7e44d24e8f6ad16f402180b93fa269 100644 --- a/src/ui/SerialConfigurationWindow.cc +++ b/src/ui/SerialConfigurationWindow.cc @@ -33,6 +33,12 @@ This file is part of the QGROUNDCONTROL project #include #include +#ifdef __android__ +#include "qserialportinfo.h" +#else +#include +#endif + #include #include @@ -42,7 +48,6 @@ This file is part of the QGROUNDCONTROL project SerialConfigurationWindow::SerialConfigurationWindow(SerialConfiguration *config, QWidget *parent, Qt::WindowFlags flags) : QWidget(parent, flags) - , _userConfigured(false) { _ui.setupUi(this); Q_ASSERT(config != NULL); @@ -112,16 +117,15 @@ SerialConfigurationWindow::SerialConfigurationWindow(SerialConfiguration *config } // Connect the individual user interface inputs - connect(_ui.portName, SIGNAL(editTextChanged(QString)), this, SLOT(setPortName(QString))); - connect(_ui.portName, SIGNAL(currentIndexChanged(QString)), this, SLOT(setPortName(QString))); - connect(_ui.baudRate, SIGNAL(activated(int)), this, SLOT(setBaudRate(int))); - connect(_ui.flowControlCheckBox,SIGNAL(toggled(bool)), this, SLOT(enableFlowControl(bool))); - connect(_ui.parNone, SIGNAL(toggled(bool)), this, SLOT(setParityNone(bool))); - connect(_ui.parOdd, SIGNAL(toggled(bool)), this, SLOT(setParityOdd(bool))); - connect(_ui.parEven, SIGNAL(toggled(bool)), this, SLOT(setParityEven(bool))); - connect(_ui.dataBitsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setDataBits(int))); - connect(_ui.stopBitsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setStopBits(int))); - connect(_ui.advCheckBox, SIGNAL(clicked(bool)), _ui.advGroupBox, SLOT(setVisible(bool))); + connect(_ui.portName, SIGNAL(currentIndexChanged(int)), this, SLOT(setPortName(int))); + connect(_ui.baudRate, SIGNAL(activated(int)), this, SLOT(setBaudRate(int))); + connect(_ui.flowControlCheckBox,SIGNAL(toggled(bool)), this, SLOT(enableFlowControl(bool))); + connect(_ui.parNone, SIGNAL(toggled(bool)), this, SLOT(setParityNone(bool))); + connect(_ui.parOdd, SIGNAL(toggled(bool)), this, SLOT(setParityOdd(bool))); + connect(_ui.parEven, SIGNAL(toggled(bool)), this, SLOT(setParityEven(bool))); + connect(_ui.dataBitsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setDataBits(int))); + connect(_ui.stopBitsSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setStopBits(int))); + connect(_ui.advCheckBox, SIGNAL(clicked(bool)), _ui.advGroupBox, SLOT(setVisible(bool))); _ui.advCheckBox->setCheckable(true); _ui.advCheckBox->setChecked(false); @@ -179,72 +183,103 @@ void SerialConfigurationWindow::hideEvent(QHideEvent* event) bool SerialConfigurationWindow::setupPortList() { - // Get the ports available on this system - QList ports = SerialConfiguration::getCurrentPorts(); - QString storedName = _config->portName(); - bool storedFound = false; - // Add the ports in reverse order, because we prepend them to the list - for (int i = ports.count() - 1; i >= 0; --i) + bool changed = false; + // Iterate found ports + QList portList = QSerialPortInfo::availablePorts(); + foreach (const QSerialPortInfo &info, portList) { - // Prepend newly found port to the list - if (_ui.portName->findText(ports[i]) < 0) + QString name = info.portName(); + // Append newly found port to the list + if (_ui.portName->findText(name) < 0) { - _ui.portName->insertItem(0, ports[i]); - if (!_userConfigured) _ui.portName->setEditText(ports[i]); + // We show the user the "short name" but store the full port name + _ui.portName->addItem(name, QVariant(info.systemLocation())); + changed = true; + } + } + // See if configured port (if any) is present + if(changed) { + int idx = _ui.portName->count() - 1; + if(!_config->portName().isEmpty()) { + idx = _ui.portName->findData(QVariant(_config->portName())); + if(idx < 0) { + idx = 0; + } + } + _ui.portName->setCurrentIndex(idx); + if(_ui.portName->count() > 0) { + _ui.portName->setEditText(_ui.portName->itemText(idx)); + } + if(_config->portName().isEmpty()) { + setPortName(idx); } - // Check if the stored link name is still present - if (ports[i].contains(storedName) || storedName.contains(ports[i])) - storedFound = true; } - if (storedFound) - _ui.portName->setEditText(storedName); - return (ports.count() > 0); + return (_ui.portName->count() > 0); } void SerialConfigurationWindow::enableFlowControl(bool flow) { _config->setFlowControl(flow ? QSerialPort::HardwareControl : QSerialPort::NoFlowControl); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); } void SerialConfigurationWindow::setParityNone(bool accept) { - if (accept) _config->setParity(QSerialPort::NoParity); + if (accept) { + _config->setParity(QSerialPort::NoParity); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); + } } void SerialConfigurationWindow::setParityOdd(bool accept) { - if (accept) _config->setParity(QSerialPort::OddParity); + if (accept) { + _config->setParity(QSerialPort::OddParity); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); + } } void SerialConfigurationWindow::setParityEven(bool accept) { - if (accept) _config->setParity(QSerialPort::EvenParity); + if (accept) { + _config->setParity(QSerialPort::EvenParity); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); + } } -void SerialConfigurationWindow::setPortName(QString port) +void SerialConfigurationWindow::setPortName(int index) { -#ifdef Q_OS_WIN - port = port.split("-").first(); -#endif - port = port.trimmed(); - if (_config->portName() != port) { - _config->setPortName(port); + // Get the full port name and store it in the config + QString pname = _ui.portName->itemData(index).toString(); + if (_config->portName() != pname) { + _config->setPortName(pname); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); } - userConfigured = true; } void SerialConfigurationWindow::setBaudRate(int index) { int baud = _ui.baudRate->itemData(index).toInt(); _config->setBaud(baud); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); } void SerialConfigurationWindow::setDataBits(int bits) { _config->setDataBits(bits); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); } void SerialConfigurationWindow::setStopBits(int bits) { _config->setStopBits(bits); + //-- If this was dynamic, it's now edited and persistent + _config->setDynamic(false); } diff --git a/src/ui/SerialConfigurationWindow.h b/src/ui/SerialConfigurationWindow.h index 60f066f22c40af7ab6a055bf2b5e81583c3b7568..ba21793c85ad15f28587efa6793469afaf8caf2e 100644 --- a/src/ui/SerialConfigurationWindow.h +++ b/src/ui/SerialConfigurationWindow.h @@ -53,7 +53,7 @@ public slots: void setParityNone(bool accept); void setParityOdd(bool accept); void setParityEven(bool accept); - void setPortName(QString port); + void setPortName(int index); void setBaudRate(int index); void setDataBits(int bits); void setStopBits(int bits); @@ -72,8 +72,6 @@ protected: bool userConfigured; ///< Switch to detect if current values are user-selected and shouldn't be overriden private: - - bool _userConfigured; Ui::serialSettings _ui; SerialConfiguration* _config; QTimer* _portCheckTimer; diff --git a/src/ui/SerialSettings.ui b/src/ui/SerialSettings.ui index 415e372e70efe5ea66e3c5eb42f817be24a6c995..4025803fa507841a68b43af39908f3ae1db95df7 100644 --- a/src/ui/SerialSettings.ui +++ b/src/ui/SerialSettings.ui @@ -32,16 +32,19 @@
- The serial port to which the system is connected. All ports listed here should work. + The serial port to which the system is connected. - The serial port to which the system is connected. All ports listed here should work. + The serial port to which the system is connected. - The serial port to which the system is connected. All ports listed here should work. + The serial port to which the system is connected. - true + false + + + 100 QComboBox::AdjustToContents diff --git a/src/ui/SettingsDialog.cc b/src/ui/SettingsDialog.cc index d8561886557ed08f743df99cb6e4a4e66ab56039..bbe196c8f28c6f9e859d28e1032a5e8c30b5213d 100644 --- a/src/ui/SettingsDialog.cc +++ b/src/ui/SettingsDialog.cc @@ -28,7 +28,9 @@ #include "MainWindow.h" #include "ui_SettingsDialog.h" +#ifndef __android__ #include "JoystickWidget.h" +#endif #include "LinkManager.h" #include "MAVLinkProtocol.h" #include "MAVLinkSettingsWidget.h" @@ -39,7 +41,11 @@ #include "QGCMessageBox.h" #include "MainToolBar.h" +#ifndef __android__ SettingsDialog::SettingsDialog(JoystickInput *joystick, QWidget *parent, int showTab, Qt::WindowFlags flags) : +#else +SettingsDialog::SettingsDialog(QWidget *parent, int showTab, Qt::WindowFlags flags) : +#endif QDialog(parent, flags), _mainWindow(MainWindow::instance()), _ui(new Ui::SettingsDialog) @@ -52,13 +58,17 @@ _ui(new Ui::SettingsDialog) move(position.topLeft()); QGCLinkConfiguration* pLinkConf = new QGCLinkConfiguration(this); +#ifndef __android__ JoystickWidget* pJoystickConf = new JoystickWidget(joystick, this); +#endif MAVLinkSettingsWidget* pMavsettings = new MAVLinkSettingsWidget(MAVLinkProtocol::instance(), this); // Add the link settings pane _ui->tabWidget->addTab(pLinkConf, "Comm Links"); +#ifndef __android__ // Add the joystick settings pane _ui->tabWidget->addTab(pJoystickConf, "Controllers"); +#endif // Add the MAVLink settings pane _ui->tabWidget->addTab(pMavsettings, "MAVLink"); @@ -71,6 +81,7 @@ _ui(new Ui::SettingsDialog) _ui->showGPS->setChecked(settings.value( TOOL_BAR_SHOW_GPS, true).toBool()); _ui->showMav->setChecked(settings.value( TOOL_BAR_SHOW_MAV, true).toBool()); _ui->showMessages->setChecked(settings.value(TOOL_BAR_SHOW_MESSAGES, true).toBool()); + _ui->showRSSI->setChecked(settings.value( TOOL_BAR_SHOW_RSSI, true).toBool()); settings.endGroup(); // Audio preferences _ui->audioMuteCheckBox->setChecked(GAudioOutput::instance()->isMuted()); @@ -102,9 +113,11 @@ _ui(new Ui::SettingsDialog) case ShowCommLinks: _ui->tabWidget->setCurrentWidget(pLinkConf); break; +#ifndef __android__ case ShowControllers: _ui->tabWidget->setCurrentWidget(pJoystickConf); break; +#endif case ShowMavlink: _ui->tabWidget->setCurrentWidget(pMavsettings); break; @@ -194,3 +207,8 @@ void SettingsDialog::on_showMav_clicked(bool checked) { _mainWindow->getMainToolBar()->viewStateChanged(TOOL_BAR_SHOW_MAV, checked); } + +void SettingsDialog::on_showRSSI_clicked(bool checked) +{ + _mainWindow->getMainToolBar()->viewStateChanged(TOOL_BAR_SHOW_RSSI, checked); +} diff --git a/src/ui/SettingsDialog.h b/src/ui/SettingsDialog.h index b8a3f8bedd287e7f0486b5f58b79844b41d5e868..cd85684306c05b02bab945071f1c79258d34b02b 100644 --- a/src/ui/SettingsDialog.h +++ b/src/ui/SettingsDialog.h @@ -45,7 +45,11 @@ public: ShowMavlink }; +#ifdef __android__ + SettingsDialog(QWidget *parent = 0, int showTab = ShowDefault, Qt::WindowFlags flags = Qt::Sheet); +#else SettingsDialog(JoystickInput *joystick, QWidget *parent = 0, int showTab = ShowDefault, Qt::WindowFlags flags = Qt::Sheet); +#endif ~SettingsDialog(); public slots: @@ -61,6 +65,8 @@ private slots: void on_showMessages_clicked(bool checked); void on_showMav_clicked(bool checked); + void on_showRSSI_clicked(bool checked); + private: MainWindow* _mainWindow; Ui::SettingsDialog* _ui; diff --git a/src/ui/SettingsDialog.ui b/src/ui/SettingsDialog.ui index 16bcdbec7fcf824741fd1b24f3b800a872a538dd..036595c8181c5e781afccf83a1b511923c1bf39a 100644 --- a/src/ui/SettingsDialog.ui +++ b/src/ui/SettingsDialog.ui @@ -7,7 +7,7 @@ 0 0 500 - 604 + 596 @@ -37,338 +37,326 @@ - - - 10 + + + + 0 + 0 + - - - - - 0 - 0 - - - - Mute all audio output - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - - Automatically reconnect last link on application startup - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - - Lowers all update rates to save battery power - - - Enable low power mode - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - - Prompt to save Flight Data Log after each flight - - - - 0 - 0 - - - - - - - - - 0 - 0 - - - - Style - - - false - - - false - - + + Mute all audio output + + + + 0 + 0 + + + + + + + + + 0 + 0 + + + + Automatically reconnect last link on application startup + + + + 0 + 0 + + + + + + + + + 0 + 0 + + + + Lowers all update rates to save battery power + + + Enable low power mode + + + + 0 + 0 + + + + + + + + + 0 + 0 + + + + Prompt to save Flight Data Log after each flight + + + + 0 + 0 + + + + + + + + + 0 + 0 + + + + Style + + + false + + + false + + + + 8 + + + 8 + + + + + 0 + + + QLayout::SetDefaultConstraint + + + 0 + + + 80 + - - - QLayout::SetMinimumSize - - - 0 + + + + 0 + 0 + - - 80 + + + 200 + 0 + - - - - 0 - 0 - - - - - 200 - 0 - - - - - Dark (for indoor use) - - - - - Light (for outdoor use) - - - + + Dark (for indoor use) + - + + + Light (for outdoor use) + + + - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - File Locations - - + + + +
+ + + + + 0 + 0 + + + + + 0 + 0 + + + + File Locations + + + + + + + 0 + 0 + + + + + 0 + 0 + + + + Specify the location you would like to save files: + + + true + + + + + - - - - 0 - 0 - - + - 0 - 0 + 200 + 21 - - Specify the location you would like to save files: + + 1024 - - true + + + + + + Browse + + + + + + + + + + 0 + 0 + + + + Tool Bar + + + + - + - + - 200 - 21 + 160 + 0 - - 1024 + + Show GPS - + - Browse + Show Messages - - - - - - - - 0 - 0 - - - - Tool Bar - - - + - - - - - - 160 - 0 - - - - Show GPS - - - - - - - Show Messages - - - - + + + + 160 + 0 + + + + Show Battery + + - - - - - - 160 - 0 - - - - Show Battery - - - - - - - Show Mav Icon - - - - + + + Show Mav Icon + + - - - - - - - Reset All Settings to Default - - - + - Delete all saved settings on next boot - - - - - - - - 11 - - - - Note: You can also use --clear-settings as a command line option to accomplish this. - - - true + Show RSSI - - - - - - Qt::Vertical - - - - 20 - 10 - - - - - + + + + + + + + Reset All Settings to Default + + + + + + Delete all saved settings on next boot + + + + + + + + 11 + + + + Note: You can also use --clear-settings as a command line option to accomplish this. + + + true + + + + + - audioMuteCheckBox - reconnectCheckBox - lowPowerCheckBox - promptFlightDataSave - groupBox - fileLocationsLayout - groupBox_2 - groupBox_3 diff --git a/src/ui/UASControl.ui b/src/ui/UASControl.ui index 70ad156a373273d0cf740c7df1e877e24c283821..446e3313a41a2bbcd85a2c84efdf39c3f44e5206 100644 --- a/src/ui/UASControl.ui +++ b/src/ui/UASControl.ui @@ -111,10 +111,6 @@ Start - - - :/files/images/control/launch.svg:/files/images/control/launch.svg - @@ -134,10 +130,6 @@ Land - - - :/files/images/control/land.svg:/files/images/control/land.svg - @@ -157,10 +149,6 @@ Halt - - - :/files/images/actions/system-log-out.svg:/files/images/actions/system-log-out.svg - @@ -198,10 +186,6 @@ Set - - - :/files/images/devices/network-wireless.svg:/files/images/devices/network-wireless.svg - @@ -273,8 +257,6 @@ - - - + diff --git a/src/ui/UASView.ui b/src/ui/UASView.ui index d7f60ca109daf2c7cf0abb94adbfcacd200df90d..c7a35466decaa58cf9659d24c2ede21ab24cebdd 100644 --- a/src/ui/UASView.ui +++ b/src/ui/UASView.ui @@ -63,7 +63,7 @@ - :/files/images/mavs/unknown.svg + :/res/mavs/Unknown @@ -176,7 +176,7 @@ - :/files/images/control/launch.svg:/files/images/control/launch.svg + :/res/Launch:/res/Launch @@ -211,7 +211,7 @@ - :/files/images/actions/media-playback-stop.svg:/files/images/actions/media-playback-stop.svg + :/res/Stop:/res/Stop @@ -240,7 +240,7 @@ - :/files/images/actions/media-playback-pause.svg:/files/images/actions/media-playback-pause.svg + :/res/Pause:/res/Pause @@ -269,7 +269,7 @@ - :/files/images/actions/media-playback-start.svg:/files/images/actions/media-playback-start.svg + :/res/Play:/res/Play @@ -298,7 +298,7 @@ - :/files/images/control/land.svg:/files/images/control/land.svg + :/res/Land:/res/Land @@ -327,7 +327,7 @@ - :/files/images/actions/process-stop.svg:/files/images/actions/process-stop.svg + :/res/Kill:/res/Kill @@ -350,7 +350,7 @@ - :/files/images/actions/system-log-out.svg:/files/images/actions/system-log-out.svg + :/res/Shutdown:/res/Shutdown diff --git a/src/ui/WaypointEditableView.cc b/src/ui/WaypointEditableView.cc index 45955cd16ca2cbfb8931bf0fde4af6f2d40f29e7..d7bf35e9df8e18637183e634ec0b87e0c714dad4 100644 --- a/src/ui/WaypointEditableView.cc +++ b/src/ui/WaypointEditableView.cc @@ -84,6 +84,7 @@ WaypointEditableView::WaypointEditableView(Waypoint* wp, QWidget* parent) : m_ui->comboBox_frame->addItem("Global/Abs. Alt",MAV_FRAME_GLOBAL); m_ui->comboBox_frame->addItem("Global/Rel. Alt", MAV_FRAME_GLOBAL_RELATIVE_ALT); m_ui->comboBox_frame->addItem("Local(NED)",MAV_FRAME_LOCAL_NED); + m_ui->comboBox_frame->addItem("Local Offset(NED)",MAV_FRAME_LOCAL_OFFSET_NED); m_ui->comboBox_frame->addItem("Mission",MAV_FRAME_MISSION); // We do not want users to mess with the current waypoint in missions - diff --git a/src/ui/WaypointEditableView.ui b/src/ui/WaypointEditableView.ui index 618842ee3983491550d5eb29554c650449cb7b25..7156a0ce107bb17ef2b39c933337675fd9e1f437 100644 --- a/src/ui/WaypointEditableView.ui +++ b/src/ui/WaypointEditableView.ui @@ -216,7 +216,7 @@ - :/files/images/actions/go-up.svg:/files/images/actions/go-up.svg + :/res/UpArrow:/res/UpArrow @@ -248,7 +248,7 @@ - :/files/images/actions/go-down.svg:/files/images/actions/go-down.svg + :/res/DownArrow:/res/DownArrow @@ -277,7 +277,7 @@ - :/files/images/actions/list-remove.svg:/files/images/actions/list-remove.svg + :/res/MinusSign:/res/MinusSign diff --git a/src/ui/WaypointList.ui b/src/ui/WaypointList.ui index b635240c563478e54f09a5e4e71108642625759c..218f5ed4ef1a06f8092dfd8ddff32bb58699ea4a 100644 --- a/src/ui/WaypointList.ui +++ b/src/ui/WaypointList.ui @@ -79,7 +79,7 @@ - :/files/images/actions/list-add.svg:/files/images/actions/list-add.svg + :/res/PlusSign:/res/PlusSign @@ -193,10 +193,6 @@ Get - - - :/files/images/status/software-update-available.svg:/files/images/status/software-update-available.svg - @@ -216,10 +212,6 @@ Set - - - :/files/images/devices/network-wireless.svg:/files/images/devices/network-wireless.svg - @@ -238,7 +230,7 @@ - :/files/images/actions/process-stop.svg:/files/images/actions/process-stop.svg + :/res/Kill:/res/Kill @@ -261,7 +253,7 @@ - :/files/images/actions/go-bottom.svg:/files/images/actions/go-bottom.svg + :/res/BottomArrow:/res/BottomArrow @@ -358,7 +350,7 @@ - :/files/images/actions/go-jump.svg:/files/images/actions/go-jump.svg + :/res/JumpArrow:/res/JumpArrow @@ -368,10 +360,6 @@ - - - :/files/images/actions/list-add.svg:/files/images/actions/list-add.svg - Add Waypoint @@ -380,10 +368,6 @@ - - - :/files/images/devices/network-wireless.svg:/files/images/devices/network-wireless.svg - Transmit @@ -392,10 +376,6 @@ - - - :/files/images/status/software-update-available.svg:/files/images/status/software-update-available.svg - Read diff --git a/src/ui/XbeeConfigurationWindow.cpp b/src/ui/XbeeConfigurationWindow.cpp index 72104bffd966b65cd69d67a0a754bf826bf202bf..847ab8e93dd22c73cfcd2962f7f775015b022e5a 100644 --- a/src/ui/XbeeConfigurationWindow.cpp +++ b/src/ui/XbeeConfigurationWindow.cpp @@ -204,8 +204,6 @@ XbeeConfigurationWindow::XbeeConfigurationWindow(LinkInterface* link, QWidget *p { this->link = xbeeLink; - action = new QAction(QIcon(":/files/images/devices/network-wireless.svg"), "", link); - baudLabel = new QLabel; baudLabel->setText(tr("Baut Rate")); baudBox = new QComboBox; @@ -402,11 +400,6 @@ void XbeeConfigurationWindow::hideEvent(QHideEvent* event) portCheckTimer->stop(); } -QAction* XbeeConfigurationWindow::getAction() -{ - return action; -} - void XbeeConfigurationWindow::configureCommunication() { this->setupPortList(); diff --git a/src/ui/XbeeConfigurationWindow.h b/src/ui/XbeeConfigurationWindow.h index afcdf4779ad9c822539cb003d36bed156f41c85f..1a6f233fd03c3fd292590f0cb413360e672a15d8 100644 --- a/src/ui/XbeeConfigurationWindow.h +++ b/src/ui/XbeeConfigurationWindow.h @@ -23,8 +23,6 @@ public: XbeeConfigurationWindow(LinkInterface* link, QWidget *parent = 0, Qt::WindowFlags flags = Qt::Sheet); ~XbeeConfigurationWindow(); - QAction* getAction(); - public slots: void configureCommunication(); void setPortName(QString port); @@ -49,7 +47,6 @@ private: QHBoxLayout *xbeeLayout; QVBoxLayout *tmpLayout; XbeeLinkInterface* link; - QAction* action; QTimer* portCheckTimer; HexSpinBox* highAddr; HexSpinBox* lowAddr; diff --git a/src/ui/configuration/SerialSettingsDialog.cc b/src/ui/configuration/SerialSettingsDialog.cc index 83418c9d992ccd9d535a94941590dbf3a6489646..2b5c6b4792174cc2365cd21a3e1dcdcb45bd7d72 100644 --- a/src/ui/configuration/SerialSettingsDialog.cc +++ b/src/ui/configuration/SerialSettingsDialog.cc @@ -37,8 +37,13 @@ This file is part of the APM_PLANNER project #include "terminalconsole.h" #include "ui_SerialSettingsDialog.h" +#ifdef __android__ +#include "qserialport.h" +#include "qserialportinfo.h" +#else #include #include +#endif #include #include diff --git a/src/ui/configuration/SerialSettingsDialog.h b/src/ui/configuration/SerialSettingsDialog.h index 79eff0e72c70f247c033a1a84c18da83a7b4648b..3aec3deca971943a2b4a51347863e2eb2e793544 100644 --- a/src/ui/configuration/SerialSettingsDialog.h +++ b/src/ui/configuration/SerialSettingsDialog.h @@ -37,7 +37,11 @@ This file is part of the APM_PLANNER project #define SERIALSETTINGSDIALOG_H #include +#ifdef __android__ +#include "qserialport.h" +#else #include +#endif namespace Ui { class SerialSettingsDialog; diff --git a/src/ui/configuration/terminalconsole.cpp b/src/ui/configuration/terminalconsole.cpp index 54a090f51620cbd48c1a89577dcd48a510a5e66a..fe1a0d7fc89740446abd2a70f3a92dd682d1f579 100644 --- a/src/ui/configuration/terminalconsole.cpp +++ b/src/ui/configuration/terminalconsole.cpp @@ -45,8 +45,13 @@ This file is part of the APM_PLANNER project #include #include #include +#ifdef __android__ +#include "qserialport.h" +#include "qserialportinfo.h" +#else #include #include +#endif TerminalConsole::TerminalConsole(QWidget *parent) : QWidget(parent), diff --git a/src/ui/configuration/terminalconsole.h b/src/ui/configuration/terminalconsole.h index f100a6ef24e83fdeed46bc8100af3f5daf65f6eb..909416edd95a613842fcc7318617347125b2aa20 100644 --- a/src/ui/configuration/terminalconsole.h +++ b/src/ui/configuration/terminalconsole.h @@ -39,7 +39,11 @@ This file is part of the APM_PLANNER project #include "SerialSettingsDialog.h" #include +#ifdef __android__ +#include "qserialport.h" +#else #include +#endif namespace Ui { class TerminalConsole; diff --git a/src/ui/designer/QGCActionButton.ui b/src/ui/designer/QGCActionButton.ui deleted file mode 100644 index 93144ae18888f48ff76c8b0408acfece6c01b178..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCActionButton.ui +++ /dev/null @@ -1,110 +0,0 @@ - - - QGCActionButton - - - - 0 - 0 - 400 - 111 - - - - Form - - - - 6 - - - 3 - - - 6 - - - 3 - - - - - - 50 - 0 - - - - Description - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - - - Refresh Actions - - - - - - - Done - - - - - - - Button name - - - - - - - Description - - - - - - - - 30 - 0 - - - - Button name - - - - - - - - - editNameLabel - textChanged(QString) - nameLabel - setText(QString) - - - 114 - 22 - - - 114 - 55 - - - - - diff --git a/src/ui/designer/QGCCommandButton.cc b/src/ui/designer/QGCCommandButton.cc deleted file mode 100644 index 70b892615ae37c7c56606833fd326a9490cb4080..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCCommandButton.cc +++ /dev/null @@ -1,348 +0,0 @@ -#include -#include - -#include "QGCCommandButton.h" -#include "ui_QGCCommandButton.h" - -#include "MAVLinkProtocol.h" -#include "UASManager.h" - -QGCCommandButton::QGCCommandButton(QWidget *parent) : - QGCToolWidgetItem("Command Button", parent), - ui(new Ui::QGCCommandButton), - uas(NULL) -{ - ui->setupUi(this); - - responsecount = 0; - responsenum = 0; - - connect(ui->commandButton, SIGNAL(clicked()), this, SLOT(sendCommand())); - connect(ui->editFinishButton, SIGNAL(clicked()), this, SLOT(endEditMode())); - connect(ui->editButtonName, SIGNAL(textChanged(QString)), this, SLOT(setCommandButtonName(QString))); - connect(ui->editCommandComboBox, SIGNAL(currentIndexChanged(QString)), ui->nameLabel, SLOT(setText(QString))); - - // Hide all edit items - ui->editCommandComboBox->hide(); - ui->editFinishButton->hide(); - ui->editNameLabel->hide(); - ui->editButtonName->hide(); - ui->editConfirmationCheckBox->hide(); - ui->editComponentSpinBox->hide(); - ui->editParamsVisibleCheckBox->hide(); - ui->editParam1SpinBox->hide(); - ui->editParam2SpinBox->hide(); - ui->editParam3SpinBox->hide(); - ui->editParam4SpinBox->hide(); - ui->editLine1->hide(); - ui->editLine2->hide(); - - // Add commands to combo box - ui->editCommandComboBox->addItem("CUSTOM 0", 0); - ui->editCommandComboBox->addItem("CUSTOM 1", 1); - ui->editCommandComboBox->addItem("CUSTOM 2", 2); - ui->editCommandComboBox->addItem("CUSTOM 3", 3); - ui->editCommandComboBox->addItem("CUSTOM 4", 4); - ui->editCommandComboBox->addItem("CUSTOM 5", 5); - ui->editCommandComboBox->addItem("CUSTOM 6", 6); - ui->editCommandComboBox->addItem("CUSTOM 7", 7); - ui->editCommandComboBox->addItem("CUSTOM 8", 8); - ui->editCommandComboBox->addItem("CUSTOM 9", 9); - ui->editCommandComboBox->addItem("CUSTOM 10", 10); - ui->editCommandComboBox->addItem("CUSTOM 11", 11); - ui->editCommandComboBox->addItem("CUSTOM 12", 12); - ui->editCommandComboBox->addItem("CUSTOM 13", 13); - ui->editCommandComboBox->addItem("CUSTOM 14", 14); - ui->editCommandComboBox->addItem("CUSTOM 15", 15); - ui->editCommandComboBox->addItem("NAV_WAYPOINT", MAV_CMD_NAV_WAYPOINT); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_LOITER_UNLIM", MAV_CMD_NAV_LOITER_UNLIM); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_LOITER_TURNS", MAV_CMD_NAV_LOITER_TURNS); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_LOITER_TIME", MAV_CMD_NAV_LOITER_TIME); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_RETURN_TO_LAUNCH", MAV_CMD_NAV_RETURN_TO_LAUNCH); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_LAND", MAV_CMD_NAV_LAND); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_TAKEOFF", MAV_CMD_NAV_TAKEOFF); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_ROI", MAV_CMD_NAV_ROI); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_PATHPLANNING", MAV_CMD_NAV_PATHPLANNING); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_SPLINE_WAYPOINT", MAV_CMD_NAV_SPLINE_WAYPOINT); - ui->editCommandComboBox->addItem("MAV_CMD_NAV_GUIDED_ENABLE", MAV_CMD_NAV_GUIDED_ENABLE); - ui->editCommandComboBox->addItem("MAV_CMD_CONDITION_DELAY", MAV_CMD_CONDITION_DELAY); - ui->editCommandComboBox->addItem("MAV_CMD_CONDITION_CHANGE_ALT", MAV_CMD_CONDITION_CHANGE_ALT); - ui->editCommandComboBox->addItem("MAV_CMD_CONDITION_DISTANCE", MAV_CMD_CONDITION_DISTANCE); - ui->editCommandComboBox->addItem("MAV_CMD_CONDITION_YAW", MAV_CMD_CONDITION_YAW); - ui->editCommandComboBox->addItem("MAV_CMD_CONDITION_LAST", MAV_CMD_CONDITION_LAST); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_MODE", MAV_CMD_DO_SET_MODE); - ui->editCommandComboBox->addItem("MAV_CMD_DO_JUMP", MAV_CMD_DO_JUMP); - ui->editCommandComboBox->addItem("MAV_CMD_DO_CHANGE_SPEED", MAV_CMD_DO_CHANGE_SPEED); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_HOME", MAV_CMD_DO_SET_HOME); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_PARAMETER", MAV_CMD_DO_SET_PARAMETER); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_RELAY", MAV_CMD_DO_SET_RELAY); - ui->editCommandComboBox->addItem("MAV_CMD_DO_REPEAT_RELAY", MAV_CMD_DO_REPEAT_RELAY); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_SERVO", MAV_CMD_DO_SET_SERVO); - ui->editCommandComboBox->addItem("MAV_CMD_DO_REPEAT_SERVO", MAV_CMD_DO_REPEAT_SERVO); - ui->editCommandComboBox->addItem("MAV_CMD_DO_FLIGHTTERMINATION", MAV_CMD_DO_FLIGHTTERMINATION); - ui->editCommandComboBox->addItem("MAV_CMD_DO_LAND_START", MAV_CMD_DO_LAND_START); - ui->editCommandComboBox->addItem("MAV_CMD_DO_RALLY_LAND", MAV_CMD_DO_RALLY_LAND); - ui->editCommandComboBox->addItem("MAV_CMD_DO_GO_AROUND", MAV_CMD_DO_GO_AROUND); - ui->editCommandComboBox->addItem("MAV_CMD_DO_CONTROL_VIDEO", MAV_CMD_DO_CONTROL_VIDEO); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_ROI", MAV_CMD_DO_SET_ROI); - ui->editCommandComboBox->addItem("MAV_CMD_DO_DIGICAM_CONFIGURE", MAV_CMD_DO_DIGICAM_CONFIGURE); - ui->editCommandComboBox->addItem("MAV_CMD_DO_DIGICAM_CONTROL", MAV_CMD_DO_DIGICAM_CONTROL); - ui->editCommandComboBox->addItem("MAV_CMD_DO_MOUNT_CONFIGURE", MAV_CMD_DO_MOUNT_CONFIGURE); - ui->editCommandComboBox->addItem("MAV_CMD_DO_MOUNT_CONTROL", MAV_CMD_DO_MOUNT_CONTROL); - ui->editCommandComboBox->addItem("MAV_CMD_DO_SET_CAM_TRIGG_DIST", MAV_CMD_DO_SET_CAM_TRIGG_DIST); - ui->editCommandComboBox->addItem("MAV_CMD_DO_FENCE_ENABLE", MAV_CMD_DO_FENCE_ENABLE); - ui->editCommandComboBox->addItem("MAV_CMD_DO_PARACHUTE", MAV_CMD_DO_PARACHUTE); - ui->editCommandComboBox->addItem("MAV_CMD_DO_INVERTED_FLIGHT", MAV_CMD_DO_INVERTED_FLIGHT); - ui->editCommandComboBox->addItem("MAV_CMD_DO_MOUNT_CONTROL_QUAT", MAV_CMD_DO_MOUNT_CONTROL_QUAT); - ui->editCommandComboBox->addItem("MAV_CMD_DO_GUIDED_MASTER", MAV_CMD_DO_GUIDED_MASTER); - ui->editCommandComboBox->addItem("MAV_CMD_DO_GUIDED_LIMITS", MAV_CMD_DO_GUIDED_LIMITS); - ui->editCommandComboBox->addItem("MAV_CMD_PREFLIGHT_CALIBRATION", MAV_CMD_PREFLIGHT_CALIBRATION); - ui->editCommandComboBox->addItem("MAV_CMD_PREFLIGHT_SET_SENSOR_OFFSETS", MAV_CMD_PREFLIGHT_SET_SENSOR_OFFSETS); - ui->editCommandComboBox->addItem("MAV_CMD_PREFLIGHT_STORAGE", MAV_CMD_PREFLIGHT_STORAGE); - ui->editCommandComboBox->addItem("MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN", MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN); - ui->editCommandComboBox->addItem("MAV_CMD_OVERRIDE_GOTO", MAV_CMD_OVERRIDE_GOTO); - ui->editCommandComboBox->addItem("MAV_CMD_MISSION_START", MAV_CMD_MISSION_START); - ui->editCommandComboBox->addItem("MAV_CMD_COMPONENT_ARM_DISARM", MAV_CMD_COMPONENT_ARM_DISARM); - ui->editCommandComboBox->addItem("MAV_CMD_START_RX_PAIR", MAV_CMD_START_RX_PAIR); - ui->editCommandComboBox->addItem("MAV_CMD_IMAGE_START_CAPTURE", MAV_CMD_IMAGE_START_CAPTURE); - ui->editCommandComboBox->addItem("MAV_CMD_IMAGE_STOP_CAPTURE", MAV_CMD_IMAGE_STOP_CAPTURE); - ui->editCommandComboBox->addItem("MAV_CMD_VIDEO_START_CAPTURE", MAV_CMD_VIDEO_START_CAPTURE); - ui->editCommandComboBox->addItem("MAV_CMD_VIDEO_STOP_CAPTURE", MAV_CMD_VIDEO_STOP_CAPTURE); - ui->editCommandComboBox->addItem("MAV_CMD_PANORAMA_CREATE", MAV_CMD_PANORAMA_CREATE); - ui->editCommandComboBox->addItem("MAV_CMD_PAYLOAD_PREPARE_DEPLOY", MAV_CMD_PAYLOAD_PREPARE_DEPLOY); - ui->editCommandComboBox->addItem("MAV_CMD_PAYLOAD_CONTROL_DEPLOY", MAV_CMD_PAYLOAD_CONTROL_DEPLOY); - ui->editCommandComboBox->setEditable(true); - - init(); -} - -QGCCommandButton::~QGCCommandButton() -{ - delete ui; -} - -void QGCCommandButton::sendCommand() -{ - if (QGCToolWidgetItem::uas) - { - if (responsenum != 0) - { - if (responsecount == 0) - { - //We're finished. Reset. - qDebug() << "Finished sequence"; - QGCToolWidgetItem::uas->executeCommandAck(responsenum-responsecount,true); - responsecount = responsenum; - return; - } - if (responsecount < responsenum) - { - qDebug() << responsecount << responsenum; - QGCToolWidgetItem::uas->executeCommandAck(responsenum-responsecount,true); - responsecount--; - return; - } - else - { - qDebug() << "No sequence yet, sending command"; - responsecount--; - } - } - // Check if command text is a number - bool ok; - int index = 0; - index = ui->editCommandComboBox->currentText().toInt(&ok); - if (!ok) - { - // Command was not a number, assume it was one of the text items - index = ui->editCommandComboBox->itemData(ui->editCommandComboBox->currentIndex()).toInt(&ok); - if (ok) - { - // Text item found, proceed - MAV_CMD command = static_cast(index); - int confirm = (ui->editConfirmationCheckBox->isChecked()) ? 1 : 0; - float param1 = ui->editParam1SpinBox->value(); - float param2 = ui->editParam2SpinBox->value(); - float param3 = ui->editParam3SpinBox->value(); - float param4 = ui->editParam4SpinBox->value(); - float param5 = ui->editParam5SpinBox->value(); - float param6 = ui->editParam6SpinBox->value(); - float param7 = ui->editParam7SpinBox->value(); - int component = ui->editComponentSpinBox->value(); - if (showlabelname != "") - { - emit showLabel(showlabelname,index); - } - QGCToolWidgetItem::uas->executeCommand(command, confirm, param1, param2, param3, param4, param5, param6, param7, component); - //qDebug() << __FILE__ << __LINE__ << "SENDING COMMAND" << index; - } - } - } - else - { - qDebug() << __FILE__ << __LINE__ << "NO UAS SET, DOING NOTHING"; - } -} - -void QGCCommandButton::setCommandButtonName(QString text) -{ - ui->commandButton->setText(text); -} - -void QGCCommandButton::setEditMode(bool editMode) -{ - // Hide elements - ui->commandButton->setVisible(!editMode); - ui->nameLabel->setVisible(!editMode); - - ui->editCommandComboBox->blockSignals(!editMode); - ui->editCommandComboBox->setVisible(editMode); - ui->editFinishButton->setVisible(editMode); - ui->editNameLabel->setVisible(editMode); - ui->editButtonName->setVisible(editMode); - ui->editConfirmationCheckBox->setVisible(editMode); - ui->editComponentSpinBox->setVisible(editMode); - ui->editParamsVisibleCheckBox->setVisible(editMode); - bool showParams = editMode || ui->editParamsVisibleCheckBox->isChecked(); - ui->editParam1SpinBox->setVisible(showParams); - ui->editParam2SpinBox->setVisible(showParams); - ui->editParam3SpinBox->setVisible(showParams); - ui->editParam4SpinBox->setVisible(showParams); - ui->editParam5SpinBox->setVisible(showParams); - ui->editParam6SpinBox->setVisible(showParams); - ui->editParam7SpinBox->setVisible(showParams); - - ui->editLine1->setVisible(editMode); - ui->editLine2->setVisible(editMode); - - QGCToolWidgetItem::setEditMode(editMode); -} - -void QGCCommandButton::writeSettings(QSettings& settings) -{ - //qDebug() << "COMMAND BUTTON WRITING SETTINGS"; - settings.setValue("TYPE", "COMMANDBUTTON"); - settings.setValue("QGC_COMMAND_BUTTON_DESCRIPTION", ui->nameLabel->text()); - settings.setValue("QGC_COMMAND_BUTTON_BUTTONTEXT", ui->commandButton->text()); - settings.setValue("QGC_COMMAND_BUTTON_COMMANDID", ui->editCommandComboBox->itemData(ui->editCommandComboBox->currentIndex()).toInt()); - settings.setValue("QGC_COMMAND_BUTTON_PARAMS_VISIBLE", ui->editParamsVisibleCheckBox->isChecked()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM1", ui->editParam1SpinBox->value()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM2", ui->editParam2SpinBox->value()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM3", ui->editParam3SpinBox->value()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM4", ui->editParam4SpinBox->value()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM5", ui->editParam5SpinBox->value()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM6", ui->editParam6SpinBox->value()); - settings.setValue("QGC_COMMAND_BUTTON_PARAM7", ui->editParam7SpinBox->value()); - settings.sync(); -} -void QGCCommandButton::readSettings(const QString& pre,const QVariantMap& settings) -{ - ui->editButtonName->setText(settings.value(pre + "QGC_COMMAND_BUTTON_BUTTONTEXT", "UNKNOWN").toString()); - ui->editCommandComboBox->setCurrentIndex(settings.value(pre + "QGC_COMMAND_BUTTON_COMMANDID", 0).toInt()); - ui->commandButton->setText(settings.value(pre + "QGC_COMMAND_BUTTON_BUTTONTEXT", "UNKNOWN").toString()); - - int commandId = settings.value(pre + "QGC_COMMAND_BUTTON_COMMANDID", 0).toInt(); - - ui->editParam1SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM1", 0.0).toDouble()); - ui->editParam2SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM2", 0.0).toDouble()); - ui->editParam3SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM3", 0.0).toDouble()); - ui->editParam4SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM4", 0.0).toDouble()); - ui->editParam5SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM5", 0.0).toDouble()); - ui->editParam6SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM6", 0.0).toDouble()); - ui->editParam7SpinBox->setValue(settings.value(pre + "QGC_COMMAND_BUTTON_PARAM7", 0.0).toDouble()); - - ui->editCommandComboBox->setCurrentIndex(0); - - // Find combobox entry for this data - for (int i = 0; i < ui->editCommandComboBox->count(); ++i) - { - if (commandId == ui->editCommandComboBox->itemData(i).toInt()) - { - ui->editCommandComboBox->setCurrentIndex(i); - } - } - - ui->editParamsVisibleCheckBox->setChecked(settings.value(pre + "QGC_COMMAND_BUTTON_PARAMS_VISIBLE").toBool()); - if (ui->editParamsVisibleCheckBox->isChecked()) - { - ui->editParam1SpinBox->show(); - ui->editParam2SpinBox->show(); - ui->editParam3SpinBox->show(); - ui->editParam4SpinBox->show(); - ui->editParam5SpinBox->show(); - ui->editParam6SpinBox->show(); - ui->editParam7SpinBox->show(); - } - else - { - ui->editParam1SpinBox->hide(); - ui->editParam2SpinBox->hide(); - ui->editParam3SpinBox->hide(); - ui->editParam4SpinBox->hide(); - ui->editParam5SpinBox->hide(); - ui->editParam6SpinBox->hide(); - ui->editParam7SpinBox->hide(); - } - - ui->editNameLabel->setText(settings.value(pre + "QGC_COMMAND_BUTTON_DESCRIPTION", "ERROR LOADING BUTTON").toString()); - ui->nameLabel->setText(settings.value(pre + "QGC_COMMAND_BUTTON_DESCRIPTION", "ERROR LOADING BUTTON").toString()); - - responsenum = settings.value(pre + "QGC_COMMAND_BUTTON_RESPONSE",0).toInt(); - responsecount = responsenum; -} -void QGCCommandButton::readSettings(const QSettings& settings) -{ - ui->editButtonName->setText(settings.value("QGC_COMMAND_BUTTON_BUTTONTEXT", "UNKNOWN").toString()); - ui->editCommandComboBox->setCurrentIndex(settings.value("QGC_COMMAND_BUTTON_COMMANDID", 0).toInt()); - ui->commandButton->setText(settings.value("QGC_COMMAND_BUTTON_BUTTONTEXT", "UNKNOWN").toString()); - - int commandId = settings.value("QGC_COMMAND_BUTTON_COMMANDID", 0).toInt(); - - ui->editParam1SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM1", 0.0).toDouble()); - ui->editParam2SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM2", 0.0).toDouble()); - ui->editParam3SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM3", 0.0).toDouble()); - ui->editParam4SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM4", 0.0).toDouble()); - ui->editParam5SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM5", 0.0).toDouble()); - ui->editParam6SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM6", 0.0).toDouble()); - ui->editParam7SpinBox->setValue(settings.value("QGC_COMMAND_BUTTON_PARAM7", 0.0).toDouble()); - - showlabelname = settings.value("QGC_COMMAND_BUTTON_LABEL","").toString(); - - ui->editCommandComboBox->setCurrentIndex(0); - - // Find combobox entry for this data - for (int i = 0; i < ui->editCommandComboBox->count(); ++i) - { - if (commandId == ui->editCommandComboBox->itemData(i).toInt()) - { - ui->editCommandComboBox->setCurrentIndex(i); - } - } - - ui->editParamsVisibleCheckBox->setChecked(settings.value("QGC_COMMAND_BUTTON_PARAMS_VISIBLE").toBool()); - if (ui->editParamsVisibleCheckBox->isChecked()) - { - ui->editParam1SpinBox->show(); - ui->editParam2SpinBox->show(); - ui->editParam3SpinBox->show(); - ui->editParam4SpinBox->show(); - ui->editParam5SpinBox->show(); - ui->editParam6SpinBox->show(); - ui->editParam7SpinBox->show(); - } - else - { - ui->editParam1SpinBox->hide(); - ui->editParam2SpinBox->hide(); - ui->editParam3SpinBox->hide(); - ui->editParam4SpinBox->hide(); - ui->editParam5SpinBox->hide(); - ui->editParam6SpinBox->hide(); - ui->editParam7SpinBox->hide(); - } - - ui->editNameLabel->setText(settings.value("QGC_COMMAND_BUTTON_DESCRIPTION", "ERROR LOADING BUTTON").toString()); - ui->nameLabel->setText(settings.value("QGC_COMMAND_BUTTON_DESCRIPTION", "ERROR LOADING BUTTON").toString()); - responsenum = settings.value("QGC_COMMAND_BUTTON_RESPONSE",0).toInt(); - responsecount = responsenum; -} diff --git a/src/ui/designer/QGCCommandButton.h b/src/ui/designer/QGCCommandButton.h deleted file mode 100644 index da47e6082c72155f145192614b2980d116d7e035..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCCommandButton.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef QGCCOMMANDBUTTON_H -#define QGCCOMMANDBUTTON_H - -#include "QGCToolWidgetItem.h" - -namespace Ui -{ -class QGCCommandButton; -} - -class UASInterface; - -class QGCCommandButton : public QGCToolWidgetItem -{ - Q_OBJECT - -public: - explicit QGCCommandButton(QWidget *parent = 0); - ~QGCCommandButton(); - - virtual void setEditMode(bool editMode); - -public slots: - void sendCommand(); - void setCommandButtonName(QString text); - void writeSettings(QSettings& settings); - void readSettings(const QSettings& settings); - void readSettings(const QString& pre,const QVariantMap& settings); -signals: - void showLabel(QString name, int num); -private: - int responsenum; - int responsecount; - QString showlabelname; - Ui::QGCCommandButton *ui; - UASInterface* uas; -}; - -#endif // QGCCOMMANDBUTTON_H diff --git a/src/ui/designer/QGCCommandButton.ui b/src/ui/designer/QGCCommandButton.ui deleted file mode 100644 index 9b17c39e563b87e44c86797548717336862dc485..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCCommandButton.ui +++ /dev/null @@ -1,288 +0,0 @@ - - - QGCCommandButton - - - - 0 - 0 - 1235 - 430 - - - - Form - - - - 6 - - - 3 - - - 6 - - - 3 - - - - - true - - - - - - - Done - - - - - - - <Button Label> - - - - - - - Button Description - - - - - - - - 60 - 0 - - - - Unnamed - - - - - - - Component ID: - - - 0 - - - 255 - - - - - - - Set the confirm flag for this button. Some commands require that first one command is sent without confirm flag and then a second, equal command with confirm flag. This ensures safety. - - - Set CONFIRM flag - - - - - - - - - PARAM1 Value as defined in MAV_CMD list - - - PARAM1 Value as defined in MAV_CMD list - - - P1 - - - -2147483647.000000000000000 - - - 2147483647.000000000000000 - - - - - - - PARAM2 Value as defined in MAV_CMD list - - - PARAM2 Value as defined in MAV_CMD list - - - P2: - - - -2147483647.000000000000000 - - - 0.000000000000000 - - - - - - - PARAM3 Value as defined in MAV_CMD list - - - PARAM3 Value as defined in MAV_CMD list - - - P3: - - - -2147483647.000000000000000 - - - 2147483647.000000000000000 - - - - - - - PARAM4 Value as defined in MAV_CMD list - - - PARAM4 Value as defined in MAV_CMD list - - - P4: - - - -2147483647.000000000000000 - - - 2147483647.000000000000000 - - - - - - - P5: - - - 7 - - - -2147483647.000000000000000 - - - 2147483647.000000000000000 - - - - - - - P6: - - - 7 - - - -2147483647.000000000000000 - - - 2147483647.000000000000000 - - - - - - - P7: - - - -2147483647.000000000000000 - - - 2147483647.000000000000000 - - - - - - - - - - 50 - 0 - - - - Description - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - Keep parameters visible - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - - editNameLabel - textChanged(QString) - nameLabel - setText(QString) - - - 114 - 22 - - - 114 - 55 - - - - - diff --git a/src/ui/designer/QGCParamSlider.cc b/src/ui/designer/QGCParamSlider.cc deleted file mode 100644 index ba19fe473dd4b2dbc77586dc8d2e489ae5d82feb..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCParamSlider.cc +++ /dev/null @@ -1,539 +0,0 @@ -#include -#include -#include -#include -#include -#include - -#include "QGCParamSlider.h" -#include "ui_QGCParamSlider.h" -#include "UASInterface.h" -#include "UASManager.h" - - -QGCParamSlider::QGCParamSlider(QWidget *parent) : - QGCToolWidgetItem("Slider", parent), - parameterName(""), - parameterValue(0.0f), - parameterScalingFactor(0.0), - parameterMin(0.0f), - parameterMax(0.0f), - componentId(0), - ui(new Ui::QGCParamSlider) -{ - valueModLock = false; - visibleEnabled = true; - valueModLockParam = false; - ui->setupUi(this); - ui->intValueSpinBox->hide(); - ui->valueSlider->setEnabled(false); - ui->doubleValueSpinBox->setEnabled(false); - uas = NULL; - - scaledInt = ui->valueSlider->maximum() - ui->valueSlider->minimum(); - - ui->editInfoCheckBox->hide(); - ui->editDoneButton->hide(); - ui->editNameLabel->hide(); - ui->editRefreshParamsButton->hide(); - ui->editSelectParamComboBox->hide(); - ui->editSelectComponentComboBox->hide(); - ui->editStatusLabel->hide(); - ui->editMinSpinBox->hide(); - ui->editMaxSpinBox->hide(); - ui->editLine1->hide(); - ui->editLine2->hide(); - ui->infoLabel->hide(); - - connect(ui->editDoneButton, SIGNAL(clicked()), this, SLOT(endEditMode())); - - // Sending actions - connect(ui->writeButton, SIGNAL(clicked()), - this, SLOT(setParamPending())); - connect(ui->editSelectComponentComboBox, SIGNAL(currentIndexChanged(int)), - this, SLOT(selectComponent(int))); - connect(ui->editSelectParamComboBox, SIGNAL(currentIndexChanged(int)), - this, SLOT(selectParameter(int))); - connect(ui->valueSlider, SIGNAL(valueChanged(int)), - this, SLOT(setSliderValue(int))); - connect(ui->doubleValueSpinBox, SIGNAL(valueChanged(double)), - this, SLOT(setParamValue(double))); - connect(ui->intValueSpinBox, SIGNAL(valueChanged(int)), - this, SLOT(setParamValue(int))); - connect(ui->editNameLabel, SIGNAL(textChanged(QString)), - ui->nameLabel, SLOT(setText(QString))); - connect(ui->readButton, SIGNAL(clicked()), this, SLOT(requestParameter())); - connect(ui->editRefreshParamsButton, SIGNAL(clicked()), - this, SLOT(refreshParamList())); - connect(ui->editInfoCheckBox, SIGNAL(clicked(bool)), - this, SLOT(showInfo(bool))); - // connect to self - connect(ui->infoLabel, SIGNAL(released()), - this, SLOT(showTooltip())); - - init(); - requestParameter(); -} - -QGCParamSlider::~QGCParamSlider() -{ - delete ui; -} - -void QGCParamSlider::showTooltip() -{ - QWidget* sender = dynamic_cast(QObject::sender()); - - if (sender) - { - QPoint point = mapToGlobal(ui->infoLabel->pos()); - QToolTip::showText(point, sender->toolTip()); - } -} - -void QGCParamSlider::refreshParamList() -{ - ui->editSelectParamComboBox->setEnabled(true); - ui->editSelectComponentComboBox->setEnabled(true); - if (uas) { - uas->getParamManager()->requestParameterList(); - ui->editStatusLabel->setText(tr("Parameter list updating..")); - } -} - -void QGCParamSlider::setActiveUAS(UASInterface* activeUas) -{ - - if (uas != activeUas) { - if (uas) { - disconnect(uas, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), - this, SLOT(setParameterValue(int,int,int,int,QString,QVariant))); - } - if (activeUas) { - connect(activeUas, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), - this, SLOT(setParameterValue(int,int,int,int,QString,QVariant)), Qt::UniqueConnection); - } - uas = activeUas; - } - - if (uas && !parameterName.isEmpty()) { - QString text = uas->getParamManager()->dataModel()->getParamDescription(parameterName); - if (!text.isEmpty()) { - ui->infoLabel->setToolTip(text); - ui->infoLabel->show(); - } - // Force-uncheck and hide label if no description is available - if (ui->editInfoCheckBox->isChecked()) { - showInfo((text.length() > 0)); - } - } - - -} - -void QGCParamSlider::requestParameter() -{ - if (uas && !parameterName.isEmpty()) { - uas->getParamManager()->requestParameterUpdate(componentId, parameterName); - } -} - -void QGCParamSlider::showInfo(bool enable) -{ - ui->editInfoCheckBox->setChecked(enable); - ui->infoLabel->setVisible(enable); -} - -void QGCParamSlider::setParamValue(double value) -{ - parameterValue = (float)value; - //disconnect(ui->valueSlider,SIGNAL(valueChanged(int))); - if (!valueModLock && !valueModLockParam) - { - valueModLock = true; - ui->valueSlider->setValue(floatToScaledInt(value)); - } - else - { - valueModLock = false; - } - //connect(ui->valueSlider, SIGNAL(valueChanged(int)), this, SLOT(setSliderValue(int))); -} - -void QGCParamSlider::setParamValue(int value) -{ - parameterValue = value; - // disconnect(ui->valueSlider,SIGNAL(valueChanged(int))); - if (!valueModLock && !valueModLockParam) - { - valueModLock = true; - ui->valueSlider->setValue(floatToScaledInt(value)); - } - else - { - valueModLock = false; - } - //connect(ui->valueSlider, SIGNAL(valueChanged(int)), this, SLOT(setSliderValue(int))); -} - -void QGCParamSlider::selectComponent(int componentIndex) -{ - this->componentId = ui->editSelectComponentComboBox->itemData(componentIndex).toInt(); -} - -void QGCParamSlider::selectParameter(int paramIndex) -{ - // Set name - parameterName = ui->editSelectParamComboBox->itemText(paramIndex); - if (parameterName.isEmpty()) { - return; - } - - // Update min and max values if available - if (uas) { - UASParameterDataModel* dataModel = uas->getParamManager()->dataModel(); - if (dataModel) { - // Minimum - if (dataModel->isParamMinKnown(parameterName)) { - parameterMin = dataModel->getParamMin(parameterName); - ui->editMinSpinBox->setValue(parameterMin); - } - - // Maximum - if (dataModel->isParamMaxKnown(parameterName)) { - parameterMax = dataModel->getParamMax(parameterName); - ui->editMaxSpinBox->setValue(parameterMax); - } - } - } -} - -void QGCParamSlider::setEditMode(bool editMode) -{ - if(!editMode) { - // Store component id - selectComponent(ui->editSelectComponentComboBox->currentIndex()); - - // Store parameter name and id - selectParameter(ui->editSelectParamComboBox->currentIndex()); - - // Min/max - parameterMin = ui->editMinSpinBox->value(); - parameterMax = ui->editMaxSpinBox->value(); - - requestParameter(); - - switch ((int)parameterValue.type()) - { - case QVariant::Char: - case QVariant::Int: - case QVariant::UInt: - ui->intValueSpinBox->show(); - break; - case QMetaType::Float: - ui->doubleValueSpinBox->show(); - break; - default: - qCritical() << "ERROR: NO VALID PARAM TYPE"; - return; - } - } else { - ui->doubleValueSpinBox->hide(); - ui->intValueSpinBox->hide(); - } - ui->valueSlider->setVisible(!editMode); - ui->nameLabel->setVisible(!editMode); - ui->writeButton->setVisible(!editMode); - ui->readButton->setVisible(!editMode); - - ui->editInfoCheckBox->setVisible(editMode); - ui->editDoneButton->setVisible(editMode); - ui->editNameLabel->setVisible(editMode); - ui->editRefreshParamsButton->setVisible(editMode); - ui->editSelectParamComboBox->setVisible(editMode); - ui->editSelectComponentComboBox->setVisible(editMode); - ui->editStatusLabel->setVisible(editMode); - ui->editMinSpinBox->setVisible(editMode); - ui->editMaxSpinBox->setVisible(editMode); - ui->writeButton->setVisible(!editMode); - ui->readButton->setVisible(!editMode); - ui->editLine1->setVisible(editMode); - ui->editLine2->setVisible(editMode); - - QGCToolWidgetItem::setEditMode(editMode); -} - -void QGCParamSlider::setParamPending() -{ - if (uas) { - uas->getParamManager()->setPendingParam(componentId, parameterName, parameterValue); - uas->getParamManager()->sendPendingParameters(true, true); - } - else { - qDebug() << __FILE__ << __LINE__ << "NO UAS SET, DOING NOTHING"; - } -} - -void QGCParamSlider::setSliderValue(int sliderValue) -{ - if (!valueModLock && !valueModLockParam) - { - valueModLock = true; - switch ((int)parameterValue.type()) - { - case QVariant::Char: - parameterValue = QVariant(QChar((unsigned char)scaledIntToFloat(sliderValue))); - ui->intValueSpinBox->setValue(parameterValue.toInt()); - break; - case QVariant::Int: - parameterValue = (int)scaledIntToFloat(sliderValue); - ui->intValueSpinBox->setValue(parameterValue.toInt()); - break; - case QVariant::UInt: - parameterValue = (unsigned int)scaledIntToFloat(sliderValue); - ui->intValueSpinBox->setValue(parameterValue.toUInt()); - break; - case QMetaType::Float: - parameterValue = scaledIntToFloat(sliderValue); - ui->doubleValueSpinBox->setValue(parameterValue.toFloat()); - break; - default: - qCritical() << "ERROR: NO VALID PARAM TYPE"; - valueModLock = false; - return; - } - } - else - { - valueModLock = false; - } -} - -/** - * @brief uas Unmanned system sending the parameter - * @brief component UAS component sending the parameter - * @brief parameterName Key/name of the parameter - * @brief value Value of the parameter - */ -void QGCParamSlider::setParameterValue(int uasId, int compId, int paramCount, int paramIndex, QString paramName, QVariant value) -{ - Q_UNUSED(paramCount); - if (uasId != this->uas->getUASID()) { - return; - } - - if (ui->nameLabel->text() == "Name") { - ui->nameLabel->setText(paramName); - } - // Check if this component and parameter are part of the list - bool found = false; - for (int i = 0; i< ui->editSelectComponentComboBox->count(); ++i) { - if (compId == ui->editSelectComponentComboBox->itemData(i).toInt()) { - found = true; - } - } - - if (!found) { - ui->editSelectComponentComboBox->addItem(tr("Component #%1").arg(compId), compId); - } - - // Parameter checking - found = false; - for (int i = 0; i < ui->editSelectParamComboBox->count(); ++i) { - if (paramName == ui->editSelectParamComboBox->itemText(i)) { - found = true; - } - } - - if (!found) { - ui->editSelectParamComboBox->addItem(paramName, paramIndex); - } - - if (visibleParam != "") { - if (paramName == visibleParam) { - if (visibleVal == value.toInt()) { - uas->getParamManager()->requestParameterUpdate(compId,paramName); - visibleEnabled = true; - this->show(); - } - else { - //Disable the component here. - ui->valueSlider->setEnabled(false); - ui->intValueSpinBox->setEnabled(false); - ui->doubleValueSpinBox->setEnabled(false); - visibleEnabled = false; - this->hide(); - } - } - } - Q_UNUSED(uas); - if (compId == this->componentId && paramName == this->parameterName) { - if (!visibleEnabled) { - return; - } - parameterValue = value; - ui->valueSlider->setEnabled(true); - valueModLockParam = true; - switch ((int)value.type()) - { - case QVariant::Char: - ui->intValueSpinBox->show(); - ui->intValueSpinBox->setEnabled(true); - ui->doubleValueSpinBox->hide(); - ui->intValueSpinBox->setValue(value.toUInt()); - ui->intValueSpinBox->setRange(0, UINT8_MAX); - if (parameterMax == 0 && parameterMin == 0) - { - ui->editMaxSpinBox->setValue(UINT8_MAX); - ui->editMinSpinBox->setValue(0); - } - ui->valueSlider->setValue(floatToScaledInt(value.toUInt())); - break; - case QVariant::Int: - ui->intValueSpinBox->show(); - ui->intValueSpinBox->setEnabled(true); - ui->doubleValueSpinBox->hide(); - ui->intValueSpinBox->setValue(value.toInt()); - ui->intValueSpinBox->setRange(INT32_MIN, INT32_MAX); - if (parameterMax == 0 && parameterMin == 0) - { - ui->editMaxSpinBox->setValue(INT32_MAX); - ui->editMinSpinBox->setValue(INT32_MIN); - } - ui->valueSlider->setValue(floatToScaledInt(value.toInt())); - break; - case QVariant::UInt: - ui->intValueSpinBox->show(); - ui->intValueSpinBox->setEnabled(true); - ui->doubleValueSpinBox->hide(); - ui->intValueSpinBox->setValue(value.toUInt()); - ui->intValueSpinBox->setRange(0, UINT32_MAX); - if (parameterMax == 0 && parameterMin == 0) - { - ui->editMaxSpinBox->setValue(UINT32_MAX); - ui->editMinSpinBox->setValue(0); - } - ui->valueSlider->setValue(floatToScaledInt(value.toUInt())); - break; - case QMetaType::Float: - ui->doubleValueSpinBox->setValue(value.toFloat()); - ui->doubleValueSpinBox->show(); - ui->doubleValueSpinBox->setEnabled(true); - ui->intValueSpinBox->hide(); - if (parameterMax == 0 && parameterMin == 0) - { - ui->editMaxSpinBox->setValue(10000); - ui->editMinSpinBox->setValue(0); - } - ui->valueSlider->setValue(floatToScaledInt(value.toFloat())); - break; - default: - qCritical() << "ERROR: NO VALID PARAM TYPE"; - valueModLockParam = false; - return; - } - valueModLockParam = false; - parameterMax = ui->editMaxSpinBox->value(); - parameterMin = ui->editMinSpinBox->value(); - } - - if (paramIndex == paramCount - 1) { - ui->editStatusLabel->setText(tr("Complete parameter list received.")); - } -} - -void QGCParamSlider::changeEvent(QEvent *e) -{ - QWidget::changeEvent(e); - switch (e->type()) { - case QEvent::LanguageChange: - ui->retranslateUi(this); - break; - default: - break; - } -} - -float QGCParamSlider::scaledIntToFloat(int sliderValue) -{ - float result = (((double)sliderValue)/(double)scaledInt)*(ui->editMaxSpinBox->value() - ui->editMinSpinBox->value()); - //qDebug() << "INT TO FLOAT: CONVERTED" << sliderValue << "TO" << result; - return result; -} - -int QGCParamSlider::floatToScaledInt(float value) -{ - int result = ((value - ui->editMinSpinBox->value())/(ui->editMaxSpinBox->value() - ui->editMinSpinBox->value()))*scaledInt; - //qDebug() << "FLOAT TO INT: CONVERTED" << value << "TO" << result << "SCALEDINT" << scaledInt; - return result; -} - -void QGCParamSlider::writeSettings(QSettings& settings) -{ - settings.setValue("TYPE", "SLIDER"); - settings.setValue("QGC_PARAM_SLIDER_DESCRIPTION", ui->nameLabel->text()); - //settings.setValue("QGC_PARAM_SLIDER_BUTTONTEXT", ui->actionButton->text()); - settings.setValue("QGC_PARAM_SLIDER_PARAMID", parameterName); - settings.setValue("QGC_PARAM_SLIDER_COMPONENTID", componentId); - settings.setValue("QGC_PARAM_SLIDER_MIN", ui->editMinSpinBox->value()); - settings.setValue("QGC_PARAM_SLIDER_MAX", ui->editMaxSpinBox->value()); - settings.setValue("QGC_PARAM_SLIDER_DISPLAY_INFO", ui->editInfoCheckBox->isChecked()); - settings.sync(); -} -void QGCParamSlider::readSettings(const QString& pre,const QVariantMap& settings) -{ - parameterName = settings.value(pre + "QGC_PARAM_SLIDER_PARAMID").toString(); - componentId = settings.value(pre + "QGC_PARAM_SLIDER_COMPONENTID").toInt(); - ui->nameLabel->setText(settings.value(pre + "QGC_PARAM_SLIDER_DESCRIPTION").toString()); - ui->editNameLabel->setText(settings.value(pre + "QGC_PARAM_SLIDER_DESCRIPTION").toString()); - //settings.setValue("QGC_PARAM_SLIDER_BUTTONTEXT", ui->actionButton->text()); - ui->editSelectParamComboBox->addItem(settings.value(pre + "QGC_PARAM_SLIDER_PARAMID").toString()); - ui->editSelectParamComboBox->setCurrentIndex(ui->editSelectParamComboBox->count()-1); - ui->editSelectComponentComboBox->addItem(tr("Component #%1").arg(settings.value(pre + "QGC_PARAM_SLIDER_COMPONENTID").toInt()), settings.value(pre + "QGC_PARAM_SLIDER_COMPONENTID").toInt()); - ui->editMinSpinBox->setValue(settings.value(pre + "QGC_PARAM_SLIDER_MIN").toFloat()); - ui->editMaxSpinBox->setValue(settings.value(pre + "QGC_PARAM_SLIDER_MAX").toFloat()); - visibleParam = settings.value(pre+"QGC_PARAM_SLIDER_VISIBLE_PARAM","").toString(); - visibleVal = settings.value(pre+"QGC_PARAM_SLIDER_VISIBLE_VAL",0).toInt(); - parameterMax = ui->editMaxSpinBox->value(); - parameterMin = ui->editMinSpinBox->value(); - //ui->valueSlider->setMaximum(parameterMax); - //ui->valueSlider->setMinimum(parameterMin); - showInfo(settings.value(pre + "QGC_PARAM_SLIDER_DISPLAY_INFO", true).toBool()); - ui->editSelectParamComboBox->setEnabled(true); - ui->editSelectComponentComboBox->setEnabled(true); - - setActiveUAS(UASManager::instance()->getActiveUAS()); -} - -void QGCParamSlider::readSettings(const QSettings& settings) -{ - QVariantMap map; - foreach (QString key,settings.allKeys()) - { - map[key] = settings.value(key); - } - - readSettings("",map); - return; - parameterName = settings.value("QGC_PARAM_SLIDER_PARAMID").toString(); - componentId = settings.value("QGC_PARAM_SLIDER_COMPONENTID").toInt(); - ui->nameLabel->setText(settings.value("QGC_PARAM_SLIDER_DESCRIPTION").toString()); - ui->editNameLabel->setText(settings.value("QGC_PARAM_SLIDER_DESCRIPTION").toString()); - //settings.setValue("QGC_PARAM_SLIDER_BUTTONTEXT", ui->actionButton->text()); - ui->editSelectParamComboBox->addItem(settings.value("QGC_PARAM_SLIDER_PARAMID").toString()); - ui->editSelectParamComboBox->setCurrentIndex(ui->editSelectParamComboBox->count()-1); - ui->editSelectComponentComboBox->addItem(tr("Component #%1").arg(settings.value("QGC_PARAM_SLIDER_COMPONENTID").toInt()), settings.value("QGC_PARAM_SLIDER_COMPONENTID").toInt()); - ui->editMinSpinBox->setValue(settings.value("QGC_PARAM_SLIDER_MIN").toFloat()); - ui->editMaxSpinBox->setValue(settings.value("QGC_PARAM_SLIDER_MAX").toFloat()); - visibleParam = settings.value("QGC_PARAM_SLIDER_VISIBLE_PARAM","").toString(); - //QGC_TOOL_WIDGET_ITEMS\1\QGC_PARAM_SLIDER_VISIBLE_PARAM=RC5_FUNCTION - visibleVal = settings.value("QGC_PARAM_SLIDER_VISIBLE_VAL",0).toInt(); - parameterMax = ui->editMaxSpinBox->value(); - parameterMin = ui->editMinSpinBox->value(); - showInfo(settings.value("QGC_PARAM_SLIDER_DISPLAY_INFO", true).toBool()); - ui->editSelectParamComboBox->setEnabled(true); - ui->editSelectComponentComboBox->setEnabled(true); - - setActiveUAS(UASManager::instance()->getActiveUAS()); - -} diff --git a/src/ui/designer/QGCParamSlider.h b/src/ui/designer/QGCParamSlider.h deleted file mode 100644 index 9ca92423bfa616b9821f00f041704e31b5499d1d..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCParamSlider.h +++ /dev/null @@ -1,78 +0,0 @@ -#ifndef QGCPARAMSLIDER_H -#define QGCPARAMSLIDER_H - -#include -#include -#include - -#include "QGCToolWidgetItem.h" - -namespace Ui -{ -class QGCParamSlider; -} - -class QGCParamSlider : public QGCToolWidgetItem -{ - Q_OBJECT - -public: - explicit QGCParamSlider(QWidget *parent = 0); - ~QGCParamSlider(); - - virtual void setEditMode(bool editMode); - -public slots: - /** @brief Queue parameter for sending to the MAV (add to pending list)*/ - void setParamPending(); - /** @brief Set the slider value as parameter value */ - void setSliderValue(int sliderValue); - /** @brief Update the UI with the new parameter value */ - void setParameterValue(int uas, int componentId, int paramCount, int paramIndex, QString parameterName, const QVariant value); - void writeSettings(QSettings& settings); - void readSettings(const QSettings& settings); - void readSettings(const QString& pre,const QVariantMap& settings); - void refreshParamList(); - void setActiveUAS(UASInterface *uas); - void selectComponent(int componentIndex); - void selectParameter(int paramIndex); - /** @brief Set a double parameter value */ - void setParamValue(double value); - /** @brief Set an integer parameter value */ - void setParamValue(int value); - /** @brief Show descriptive text next to slider */ - void showInfo(bool enable); - /** @brief Show tool tip of calling element */ - void showTooltip(); - -protected slots: - /** @brief Request the parameter of this widget from the MAV */ - void requestParameter(); - -protected: - bool visibleEnabled; - QString visibleParam; - int visibleVal; - //The below variables, and usage in QGCParamSlider.cc are a bit of a hack, since disconnect() does not seem to take effect - //immediatly (perhaps it is put into the event loop?) - MLC - bool valueModLock; ///< Used to keep the slider/spinboxes from updating each other during user input - bool valueModLockParam; ///< Used to keep the slider/spinboxes from udpating each other when a new parametervalue comes in - QString parameterName; ///< Key/Name of the parameter - QVariant parameterValue; ///< Value of the parameter - double parameterScalingFactor; ///< Factor to scale the parameter between slider and true value - float parameterMin; - float parameterMax; - int componentId; ///< ID of the MAV component to address - double scaledInt; - void changeEvent(QEvent *e); - - /** @brief Convert scaled int to float */ - - float scaledIntToFloat(int sliderValue); - int floatToScaledInt(float value); - -private: - Ui::QGCParamSlider *ui; -}; - -#endif // QGCPARAMSLIDER_H diff --git a/src/ui/designer/QGCParamSlider.ui b/src/ui/designer/QGCParamSlider.ui deleted file mode 100644 index 7a4c3806f6dd211f522360ff9eaffcdfeae59261..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCParamSlider.ui +++ /dev/null @@ -1,293 +0,0 @@ - - - QGCParamSlider - - - - 0 - 0 - 789 - 244 - - - - Form - - - - 6 - - - 3 - - - 6 - - - 3 - - - 6 - - - 12 - - - - - -999999999 - - - 999999999 - - - - - - - false - - - Select parameter - - - Select parameter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - 60 - 0 - - - - - 250 - 16777215 - - - - 1000000 - - - Qt::Horizontal - - - - - - - Done - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - Show Info - - - true - - - - - - - Qt::Horizontal - - - - 0 - 20 - - - - - - - - true - - - Refresh - - - - - - - - 0 - 0 - - - - Read the current parameter value on the system - - - Read the current parameter value on the system - - - Get - - - - - - - false - - - Select component - - - Select component - - - - - - - Parameter Name / Label - - - - - - - Please click first on refresh to update selection menus.. - - - - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - Transmit the current slider value to the system - - - Transmit the current slider value to the system - - - Set - - - - - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - MIN: - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - MAX: - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - - 60 - 0 - - - - Name - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - ? - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - diff --git a/src/ui/designer/QGCParamSliderPlugin.cc b/src/ui/designer/QGCParamSliderPlugin.cc deleted file mode 100644 index 75e0e754f02d4a62308d68c33047c83fedfebda7..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCParamSliderPlugin.cc +++ /dev/null @@ -1,81 +0,0 @@ -#include "QGCParamSliderPlugin.h" -#include "QGCParamSlider.h" - -#include - -QGCParamSliderPlugin::QGCParamSliderPlugin(QObject *parent) : - QObject(parent) -{ - initialized = false; -} - -void QGCParamSliderPlugin::initialize(QDesignerFormEditorInterface * /* core */) -{ - if (initialized) - return; - - initialized = true; -} - -bool QGCParamSliderPlugin::isInitialized() const -{ - return initialized; -} - -QWidget *QGCParamSliderPlugin::createWidget(QWidget *parent) -{ - return new QGCParamSlider(parent); -} - -QString QGCParamSliderPlugin::name() const -{ - return "QGCParamSlider"; -} - -QString QGCParamSliderPlugin::group() const -{ - return "QGroundControl"; -} - -QIcon QGCParamSliderPlugin::icon() const -{ - return QIcon(); -} - -QString QGCParamSliderPlugin::toolTip() const -{ - return ""; -} - -QString QGCParamSliderPlugin::whatsThis() const -{ - return ""; -} - -bool QGCParamSliderPlugin::isContainer() const -{ - return false; -} - -QString QGCParamSliderPlugin::domXml() const -{ - return "\n" - " \n" - " \n" - " \n" - " 0\n" - " 0\n" - " 150\n" - " 16\n" - " \n" - " \n" - " \n" - ""; -} - -QString QGCParamSliderPlugin::includeFile() const -{ - return "QGCParamSlider.h"; -} - -Q_EXPORT_PLUGIN2(qgcparamsliderplugin, QGCParamSliderPlugin) diff --git a/src/ui/designer/QGCRadioChannelDisplay.cpp b/src/ui/designer/QGCRadioChannelDisplay.cpp deleted file mode 100644 index 0f3f91b281d0fdbbedad85491bd28f5cd5cd1402..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCRadioChannelDisplay.cpp +++ /dev/null @@ -1,224 +0,0 @@ -#include "QGCRadioChannelDisplay.h" -#include - -#define DIMMEST_COLOR QColor::fromRgb(0,100,0) -#define MIDBRIGHT_COLOR QColor::fromRgb(0,180,0) -#define BRIGHTEST_COLOR QColor::fromRgb(64,255,0) - -QGCRadioChannelDisplay::QGCRadioChannelDisplay(QWidget *parent) : QWidget(parent) -{ - m_showMinMax = false; - m_min = 0; - m_max = 1; - m_value = 1500; - m_orientation = Qt::Vertical; - m_name = "Yaw"; - - m_fillBrush = QBrush(Qt::green, Qt::SolidPattern); - - - - -} -void QGCRadioChannelDisplay::setName(QString name) -{ - m_name = name; - update(); -} - -void QGCRadioChannelDisplay::setOrientation(Qt::Orientation orient) -{ - m_orientation = orient; - update(); -} - -void QGCRadioChannelDisplay::paintEvent(QPaintEvent *event) -{ - Q_UNUSED(event); - - //Values range from 0-3000. - //1500 is the middle, static servo value. - QPainter painter(this); - - - - - int fontHeight = painter.fontMetrics().height(); - int twiceFontHeight = fontHeight * 2; - - painter.setBrush(Qt::Dense4Pattern); - painter.setPen(QColor::fromRgb(128,128,64)); - - int curVal = m_value; - if (curVal > m_max) { - curVal = m_max; - } - if (curVal < m_min) { - curVal = m_min; - } - - if (m_orientation == Qt::Vertical) - { - QLinearGradient gradientBrush(0, 0, this->width(), this->height()); - gradientBrush.setColorAt(1.0,DIMMEST_COLOR); - gradientBrush.setColorAt(0.5,MIDBRIGHT_COLOR); - gradientBrush.setColorAt(0.0, BRIGHTEST_COLOR); - - //draw border - painter.drawRect(0,0,width()-1,(height()-1) - twiceFontHeight); - painter.setPen(QColor::fromRgb(50,255,50)); - painter.setBrush(Qt::SolidPattern); - - //draw the text value of the widget, and its label - painter.setPen(QColor::fromRgb(255,255,255)); - painter.drawText((width()/2.0) - (painter.fontMetrics().width(m_name)/2.0),((height()-3) - (fontHeight*1)),m_name); - - if (isEnabled()) { - QString valStr = QString::number(m_value); - painter.drawText((width()/2.0) - (painter.fontMetrics().width(valStr)/2.0),((height()-3) - (fontHeight * 0)),valStr); - - painter.setPen(QColor::fromRgb(128,128,64)); - painter.setBrush(gradientBrush); - - if (!m_showMinMax) { - //draw just the value - int newval = (height()-2-twiceFontHeight) * ((float)(curVal - m_min) / ((m_max-m_min)+1)); - int yVal = (height()-2-twiceFontHeight) - newval; - painter.drawRect(1,yVal,width()-3,((height()-2) - yVal - twiceFontHeight)); - } - else { - //draw the value - int newval = (height()-2-twiceFontHeight) * ((float)(curVal / 3001.0)); - int yVal = (height()-2-twiceFontHeight) - newval; - painter.drawRect(1,yVal,width()-3,((height()-2) - yVal - twiceFontHeight)); - - //draw min max indicator bars - painter.setPen(QColor::fromRgb(255,0,0)); - painter.setBrush(Qt::NoBrush); - - int yMax = (height()-3 - twiceFontHeight) - (((height()-3-twiceFontHeight) * ((float)m_max / 3000.0))); - int yMin = (height()-3 - twiceFontHeight) - (((height()-3-twiceFontHeight) * ((float)m_min / 3000.0))); - painter.drawRect(2,yMax,width()-3,yMin - yMax); - - //draw min and max labels - QString minstr = QString::number(m_min); - painter.drawText((width() / 2.0) - (painter.fontMetrics().width("min")/2.0),yMin,"min"); - painter.drawText((width() / 2.0) - (painter.fontMetrics().width(minstr)/2.0),yMin + fontHeight,minstr); - - QString maxstr = QString::number(m_max); - painter.drawText((width() / 2.0) - (painter.fontMetrics().width("max")/2.0),yMax,"max"); - painter.drawText((width() / 2.0) - (painter.fontMetrics().width(maxstr)/2.0),yMax + fontHeight,maxstr); - - } - } - } - else //horizontal orientation - { - QLinearGradient hGradientBrush(0, 0, this->width(), this->height()); - hGradientBrush.setColorAt(0.0,DIMMEST_COLOR); - hGradientBrush.setColorAt(0.5,MIDBRIGHT_COLOR); - hGradientBrush.setColorAt(1.0, BRIGHTEST_COLOR); - - //draw the value - painter.drawRect(0,0,width()-1,(height()-1) - twiceFontHeight); - painter.setPen(QColor::fromRgb(50,255,50)); - painter.setBrush(hGradientBrush); - - //draw the value string - painter.setPen(QColor::fromRgb(255,255,255)); - painter.drawText((width()/2.0) - (painter.fontMetrics().width(m_name)/2.0),((height()-3) - (fontHeight*1)),m_name); - - if (isEnabled()) { - QString valstr = QString::number(m_value); - painter.drawText((width()/2.0) - (painter.fontMetrics().width(valstr)/2.0),((height()-3) - (fontHeight * 0)),valstr); - - painter.setPen(QColor::fromRgb(0,128,0)); - painter.setBrush(hGradientBrush); - - if (!m_showMinMax) { - //draw just the value - painter.drawRect(1,1,(width()-3) * ((float)(curVal-m_min) / (m_max-m_min)),(height()-3) - twiceFontHeight); - } - else { - //draw the value - painter.drawRect(1,1,(width()-3) * ((float)curVal / 3000.0),(height()-3) - twiceFontHeight); - - //draw the min and max bars - painter.setBrush(Qt::NoBrush); - painter.setPen(QColor::fromRgb(255,0,0)); - painter.drawRect(width() * ((float)m_min / 3000.0),2,((width()-1) * ((float)m_max / 3000.0)) - (width() * ((float)m_min / 3000.0)),(height()-5) - twiceFontHeight); - - //draw the min and max strings - QString minstr = QString::number(m_min); - painter.drawText((width() * ((float)m_min / 3000.0)) - (painter.fontMetrics().width("min")/2.0),((height()-3) - (painter.fontMetrics().height()*1)),"min"); - painter.drawText((width() * ((float)m_min / 3000.0)) - (painter.fontMetrics().width(minstr)/2.0),((height()-3) - (painter.fontMetrics().height() * 0)),minstr); - - QString maxstr = QString::number(m_max); - painter.drawText((width() * ((float)m_max / 3000.0)) - (painter.fontMetrics().width("max")/2.0),((height()-3) - (painter.fontMetrics().height()*1)),"max"); - painter.drawText((width() * ((float)m_max / 3000.0)) - (painter.fontMetrics().width(maxstr)/2.0),((height()-3) - (painter.fontMetrics().height() * 0)),maxstr); - } - } - } -} - -void QGCRadioChannelDisplay::setValue(int value) -{ - if (value < 0) - { - m_value = 0; - } - else if (value > 3000) - { - m_value = 3000; - } - else - { - m_value = value; - } - update(); -} - -void QGCRadioChannelDisplay::showMinMax(bool show) -{ - m_showMinMax = show; - update(); -} - -void QGCRadioChannelDisplay::hideMinMax() -{ - m_showMinMax = false; - update(); -} - - -void QGCRadioChannelDisplay::setValueAndRange(int val, int min, int max) -{ - setValue(val); - setMinMax(min,max); -} - -void QGCRadioChannelDisplay::setMinMax(int min, int max) -{ - setMin(min); - setMax(max); -} - -void QGCRadioChannelDisplay::setMin(int value) -{ - m_min = value; - if (m_min == m_max) - { - m_min--; - } - update(); -} - -void QGCRadioChannelDisplay::setMax(int value) -{ - m_max = value; - if (m_min == m_max) - { - m_max++; - } - update(); -} diff --git a/src/ui/designer/QGCRadioChannelDisplay.h b/src/ui/designer/QGCRadioChannelDisplay.h deleted file mode 100644 index 9b970c55a9f06e78483002d17d02e93cd6211415..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCRadioChannelDisplay.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef QGCRADIOCHANNELDISPLAY_H -#define QGCRADIOCHANNELDISPLAY_H - -#include - -class QGCRadioChannelDisplay : public QWidget -{ - Q_OBJECT -public: - explicit QGCRadioChannelDisplay(QWidget *parent = 0); - void setOrientation(Qt::Orientation orient); - void setValue(int value); - void showMinMax(bool show = true); - void hideMinMax(); - bool isMinMaxShown() { return m_showMinMax; } - void setValueAndRange(int val, int min, int max); - void setMinMax(int min, int max); - void setMin(int value); - void setMax(int value); - void setName(QString name); - int value() { return m_value; } - int min() { return m_min; } - int max() { return m_max; } - -protected: - void paintEvent(QPaintEvent *event); -private: - Qt::Orientation m_orientation; - int m_value; - int m_min; - int m_max; - bool m_showMinMax; - QString m_name; - QBrush m_fillBrush; - -signals: - -public slots: - -}; - -#endif // QGCRADIOCHANNELDISPLAY_H diff --git a/src/ui/designer/QGCTextLabel.cc b/src/ui/designer/QGCTextLabel.cc deleted file mode 100644 index 8654b33d0cc633b5cc28853f574d3e99f72cba55..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCTextLabel.cc +++ /dev/null @@ -1,124 +0,0 @@ -#include - -#include "QGCTextLabel.h" -#include "ui_QGCTextLabel.h" - -#include "MAVLinkProtocol.h" -#include "UASManager.h" - -QGCTextLabel::QGCTextLabel(QWidget *parent) : - QGCToolWidgetItem("Text Label", parent), - ui(new Ui::QGCTextLabel) -{ - uas = 0; - enabledNum = -1; - ui->setupUi(this); - - connect(ui->editFinishButton, SIGNAL(clicked()), this, SLOT(endEditMode())); - connect(ui->isMavCommand, SIGNAL(toggled(bool)), this, SLOT(update_isMavCommand())); - - // Hide all edit items - ui->editFinishButton->hide(); - ui->editNameLabel->hide(); - ui->editLine1->hide(); - ui->editLine2->hide(); - ui->isMavCommand->hide(); - ui->textLabel->setText(QString()); - - init(); -} - -QGCTextLabel::~QGCTextLabel() -{ - delete ui; -} - -void QGCTextLabel::setEditMode(bool editMode) -{ - if(!editMode) - update_isMavCommand(); - ui->editFinishButton->setVisible(editMode); - ui->editNameLabel->setVisible(editMode); - ui->editLine1->setVisible(editMode); - ui->editLine2->setVisible(editMode); - ui->isMavCommand->setVisible(editMode); - - QGCToolWidgetItem::setEditMode(editMode); -} - -void QGCTextLabel::writeSettings(QSettings& settings) -{ - settings.setValue("TYPE", "TEXT"); - settings.setValue("QGC_TEXT_TEXT", ui->editNameLabel->text()); - settings.setValue("QGC_TEXT_SOURCE", ui->isMavCommand->isChecked()?"MAV":"NONE"); - - settings.sync(); -} -void QGCTextLabel::readSettings(const QString& pre,const QVariantMap& settings) -{ - ui->editNameLabel->setText(settings.value(pre + "QGC_TEXT_TEXT","").toString()); - ui->isMavCommand->setChecked(settings.value(pre + "QGC_TEXT_SOURCE", "NONE").toString() == "MAV"); - update_isMavCommand(); -} -void QGCTextLabel::textMessageReceived(int uasid, int component, int severity, QString message) -{ - Q_UNUSED(uasid); - Q_UNUSED(component); - Q_UNUSED(severity); - if (enabledNum != -1) - { - //SUCCESS: Executed CMD: 241 - if (message.contains("SUCCESS")) - { - if (message.trimmed().endsWith(QString::number(enabledNum))) - { - enabledNum = -1; - ui->textLabel->setText(ui->textLabel->text() + " Complete"); - } - } - else - { - ui->textLabel->setText(message); - } - } -} - -void QGCTextLabel::readSettings(const QSettings& settings) -{ - ui->editNameLabel->setText(settings.value("QGC_TEXT_TEXT","").toString()); //Place this before setting isMavCommand - ui->isMavCommand->setChecked(settings.value("QGC_TEXT_SOURCE", "NONE").toString() == "MAV"); - update_isMavCommand(); -} - -void QGCTextLabel::enableText(int num) -{ - enabledNum = num; -} - -void QGCTextLabel::setActiveUAS(UASInterface *uas) -{ - if(this->uas) - this->uas->disconnect(this); - this->uas = uas; - update_isMavCommand(); //Might need to update the signal connections -} - -void QGCTextLabel::update_isMavCommand() -{ - ui->textLabel->setText(""); - if (!ui->isMavCommand->isChecked()) - { - ui->nameLabel->setText(ui->editNameLabel->text()); - if(this->uas) - disconnect(uas,SIGNAL(textMessageReceived(int,int,int,QString)),this,SLOT(textMessageReceived(int,int,int,QString))); - if(ui->nameLabel->text().isEmpty()) - ui->nameLabel->setText(tr("Text Label")); //Show something, so that we don't end up with just an empty label - } - else - { - //MAV command text - ui->nameLabel->setText(ui->editNameLabel->text()); - if(this->uas) - connect(uas,SIGNAL(textMessageReceived(int,int,int,QString)),this,SLOT(textMessageReceived(int,int,int,QString))); - } -} diff --git a/src/ui/designer/QGCTextLabel.h b/src/ui/designer/QGCTextLabel.h deleted file mode 100644 index 8e8cd509eab313404654f370b1f171bb92b4a93e..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCTextLabel.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef QGCTEXTLABEL_H -#define QGCTEXTLABEL_H - -#include "QGCToolWidgetItem.h" - -namespace Ui -{ -class QGCTextLabel; -} - -class UASInterface; - -class QGCTextLabel : public QGCToolWidgetItem -{ - Q_OBJECT - -public: - explicit QGCTextLabel(QWidget *parent = 0); - ~QGCTextLabel(); - void setActiveUAS(UASInterface *uas); - void enableText(int num); - virtual void setEditMode(bool editMode); -public slots: - void writeSettings(QSettings& settings); - void readSettings(const QSettings& settings); - void readSettings(const QString& pre,const QVariantMap& settings); - void textMessageReceived(int uasid, int componentId, int severity, QString message); - -private slots: - void update_isMavCommand(); - -private: - int enabledNum; - Ui::QGCTextLabel *ui; -}; - -#endif // QGCTEXTLABEL_H diff --git a/src/ui/designer/QGCTextLabel.ui b/src/ui/designer/QGCTextLabel.ui deleted file mode 100644 index f5f909d1fb5d60b271a5ccaf5b8f8bc1bdf79efb..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCTextLabel.ui +++ /dev/null @@ -1,155 +0,0 @@ - - - QGCTextLabel - - - - 0 - 0 - 554 - 107 - - - - Form - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - - - - - Label Description - - - - - - - This is only for advanced use, and allows a label to display the results of a Command Button. - - - Mav Command - - - - - - - - - - - - 50 - 0 - - - - Text Label - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - mav result - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Done - - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - - editNameLabel - textChanged(QString) - nameLabel - setText(QString) - - - 280 - 32 - - - 114 - 55 - - - - - editNameLabel - returnPressed() - editFinishButton - animateClick() - - - 136 - 20 - - - 498 - 86 - - - - - diff --git a/src/ui/designer/QGCToolWidget.cc b/src/ui/designer/QGCToolWidget.cc deleted file mode 100644 index ae6353dd6f380ace45294f0453f8c735a8e28314..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidget.cc +++ /dev/null @@ -1,658 +0,0 @@ -#include "QGCToolWidget.h" -#include "ui_QGCToolWidget.h" - -#include -#include -#include -#include -#include -#include -#include - -#include "QGCParamSlider.h" -#include "QGCToolWidgetComboBox.h" -#include "QGCTextLabel.h" -#include "QGCXYPlot.h" -#include "QGCCommandButton.h" -#include "UASManager.h" -#include "QGCFileDialog.h" - -QGCToolWidget::QGCToolWidget(const QString& objectName, const QString& title, QWidget *parent, QSettings* settings) : - QWidget(parent), - mav(NULL), - mainMenuAction(NULL), - widgetTitle(title), - ui(new Ui::QGCToolWidget) -{ - isFromMetaData = false; - ui->setupUi(this); - if (settings) loadSettings(*settings); - - createActions(); - toolLayout = ui->toolLayout; - toolLayout->setAlignment(Qt::AlignTop); - toolLayout->setSpacing(8); - - this->setTitle(widgetTitle); - QList systems = UASManager::instance()->getUASList(); - foreach (UASInterface* uas, systems) - { - UAS* newMav = dynamic_cast(uas); - if (newMav) - { - addUAS(uas); - } - } - connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(addUAS(UASInterface*))); - - if(!objectName.isEmpty()) { - instances()->insert(objectName, this); - setObjectName(objectName); - } //Otherwise we must call loadSettings() immediately to set the object name -} - -QGCToolWidget::~QGCToolWidget() -{ - if (mainMenuAction) mainMenuAction->deleteLater(); - if (QGCToolWidget::instances()) QGCToolWidget::instances()->remove(objectName()); - delete ui; -} - -void QGCToolWidget::setParent(QWidget *parent) -{ - QWidget::setParent(parent); - setTitle(getTitle()); //Update titles -} - -/** - * @param parent Object later holding these widgets, usually the main window - * @return List of all widgets - */ -QList QGCToolWidget::createWidgetsFromSettings(QWidget* parent, QString settingsFile) -{ - // Load widgets from application settings - QSettings* settings; - - // Or load them from a settings file - if (!settingsFile.isEmpty()) - { - settings = new QSettings(settingsFile, QSettings::IniFormat); - //qDebug() << "LOADING SETTINGS FROM" << settingsFile; - } - else - { - settings = new QSettings(); - //qDebug() << "LOADING SETTINGS FROM DEFAULT" << settings->fileName(); - } - - QList newWidgets; - settings->beginGroup("Custom_Tool_Widgets"); - int size = settings->beginReadArray("QGC_TOOL_WIDGET_NAMES"); - for (int i = 0; i < size; i++) - { - settings->setArrayIndex(i); - QString name = settings->value("TITLE", "").toString(); - QString objname = settings->value("OBJECT_NAME", "").toString(); - - if (!instances()->contains(objname) && !objname.isEmpty()) - { - //qDebug() << "CREATED WIDGET:" << name; - QGCToolWidget* tool = new QGCToolWidget(objname, name, parent, settings); - newWidgets.append(tool); - } - else if (name.length() == 0) - { - // Silently catch empty widget name - sanity check - // to survive broken settings (e.g. from user manipulation) - } - else - { - //qDebug() << "WIDGET" << name << "DID ALREADY EXIST, REJECTING"; - } - } - settings->endArray(); - - //qDebug() << "NEW WIDGETS: " << newWidgets.size(); - - // Load individual widget items - for (int i = 0; i < newWidgets.size(); i++) - { - newWidgets.at(i)->loadSettings(*settings); - } - settings->endGroup(); - settings->sync(); - delete settings; - - return instances()->values(); -} -void QGCToolWidget::showLabel(QString name,int num) -{ - for (int i=0;iobjectName() == name) - { - QGCTextLabel *label = qobject_cast(toolItemList[i]); - if (label) - { - label->enableText(num); - } - } - } -} - -/** - * @param singleinstance If this is set to true, the widget settings will only be loaded if not another widget with the same title exists - */ -bool QGCToolWidget::loadSettings(const QString& settings, bool singleinstance) -{ - QSettings set(settings, QSettings::IniFormat); - QStringList groups = set.childGroups(); - if (groups.length() > 0) - { - QString objectName = groups.first(); - setObjectName(objectName); - if (singleinstance && QGCToolWidget::instances()->contains(objectName)) return false; - instances()->insert(objectName, this); - // Do not use setTitle() here, - // interferes with loading settings - widgetTitle = objectName; - //qDebug() << "WIDGET TITLE LOADED: " << widgetName; - loadSettings(set); - return true; - } - else - { - return false; - } -} -void QGCToolWidget::setSettings(QVariantMap& settings) -{ - isFromMetaData = true; - settingsMap = settings; - QString widgetName = getTitle(); - int size = settingsMap["count"].toInt(); - for (int j = 0; j < size; j++) - { - QString type = settings.value(widgetName + "\\" + QString::number(j) + "\\" + "TYPE", "UNKNOWN").toString(); - if (type == "SLIDER") - { - QString checkparam = settingsMap.value(widgetName + "\\" + QString::number(j) + "\\" + "QGC_PARAM_SLIDER_PARAMID").toString(); - paramList.append(checkparam); - } - else if (type == "COMBO") - { - QString checkparam = settingsMap.value(widgetName + "\\" + QString::number(j) + "\\" + "QGC_PARAM_COMBOBOX_PARAMID").toString(); - paramList.append(checkparam); - } - } -} -QList QGCToolWidget::getParamList() -{ - return paramList; -} -void QGCToolWidget::setParameterValue(int uas, int component, QString parameterName, const QVariant value) -{ - Q_UNUSED(uas); - Q_UNUSED(component); - Q_UNUSED(value); - - QString widgetName = getTitle(); - int size = settingsMap["count"].toInt(); - if (paramToItemMap.contains(parameterName)) - { - //If we already have an item for this parameter, updates are handled internally. - return; - } - - for (int j = 0; j < size; j++) - { - QString type = settingsMap.value(widgetName + "\\" + QString::number(j) + "\\" + "TYPE", "UNKNOWN").toString(); - QGCToolWidgetItem* item = NULL; - if (type == "COMMANDBUTTON") - { - //This shouldn't happen, but I'm not sure... so lets test for it. - continue; - } - else if (type == "SLIDER") - { - QString checkparam = settingsMap.value(widgetName + "\\" + QString::number(j) + "\\" + "QGC_PARAM_SLIDER_PARAMID").toString(); - if (checkparam == parameterName) - { - item = new QGCParamSlider(this); - paramToItemMap[parameterName] = item; - addToolWidget(item); - item->readSettings(widgetName + "\\" + QString::number(j) + "\\",settingsMap); - return; - } - } - else if (type == "COMBO") - { - QString checkparam = settingsMap.value(widgetName + "\\" + QString::number(j) + "\\" + "QGC_PARAM_COMBOBOX_PARAMID").toString(); - if (checkparam == parameterName) - { - item = new QGCToolWidgetComboBox(this); - addToolWidget(item); - item->readSettings(widgetName + "\\" + QString::number(j) + "\\",settingsMap); - paramToItemMap[parameterName] = item; - return; - } - } - } -} - -void QGCToolWidget::loadSettings(QVariantMap& settings) -{ - - QString widgetName = getTitle(); - //settings.beginGroup(widgetName); - qDebug() << "LOADING FOR" << widgetName; - //int size = settings.beginReadArray("QGC_TOOL_WIDGET_ITEMS"); - int size = settings["count"].toInt(); - qDebug() << "CHILDREN SIZE:" << size; - for (int j = 0; j < size; j++) - { - QApplication::processEvents(); - //settings.setArrayIndex(j); - QString type = settings.value(widgetName + "\\" + QString::number(j) + "\\" + "TYPE", "UNKNOWN").toString(); - if (type != "UNKNOWN") - { - QGCToolWidgetItem* item = NULL; - if (type == "COMMANDBUTTON") - { - item = new QGCCommandButton(this); - //qDebug() << "CREATED COMMANDBUTTON"; - } - else if (type == "TEXT") - { - item = new QGCTextLabel(this); - item->setActiveUAS(mav); - } - else if (type == "SLIDER") - { - item = new QGCParamSlider(this); - //qDebug() << "CREATED PARAM SLIDER"; - } - else if (type == "COMBO") - { - item = new QGCToolWidgetComboBox(this); - //qDebug() << "CREATED COMBOBOX"; - } - else if (type == "XYPLOT") - { - item = new QGCXYPlot(this); - //qDebug() << "CREATED XYPlot"; - } - if (item) - { - // Configure and add to layout - addToolWidget(item); - item->readSettings(widgetName + "\\" + QString::number(j) + "\\",settings); - - //qDebug() << "Created tool widget"; - } - } - else - { - qDebug() << "UNKNOWN TOOL WIDGET TYPE" << type; - } - } - //settings.endArray(); - //settings.endGroup(); -} - -void QGCToolWidget::loadSettings(QSettings& settings) -{ - QString widgetName = getTitle(); - settings.beginGroup(widgetName); - //qDebug() << "LOADING FOR" << widgetName; - int size = settings.beginReadArray("QGC_TOOL_WIDGET_ITEMS"); - //qDebug() << "CHILDREN SIZE:" << size; - for (int j = 0; j < size; j++) - { - settings.setArrayIndex(j); - QString type = settings.value("TYPE", "UNKNOWN").toString(); - if (type != "UNKNOWN") - { - QGCToolWidgetItem* item = NULL; - if (type == "COMMANDBUTTON") - { - QGCCommandButton *button = new QGCCommandButton(this); - connect(button,SIGNAL(showLabel(QString,int)),this,SLOT(showLabel(QString,int))); - item = button; - item->setActiveUAS(mav); - //qDebug() << "CREATED COMMANDBUTTON"; - } - else if (type == "SLIDER") - { - item = new QGCParamSlider(this); - item->setActiveUAS(mav); - //qDebug() << "CREATED PARAM SLIDER"; - } - else if (type == "COMBO") - { - item = new QGCToolWidgetComboBox(this); - item->setActiveUAS(mav); - qDebug() << "CREATED PARAM COMBOBOX"; - } - else if (type == "TEXT") - { - item = new QGCTextLabel(this); - item->setObjectName(settings.value("QGC_TEXT_ID").toString()); - item->setActiveUAS(mav); - } - else if (type == "XYPLOT") - { - item = new QGCXYPlot(this); - item->setActiveUAS(mav); - } - - if (item) - { - // Configure and add to layout - addToolWidget(item); - item->readSettings(settings); - - //qDebug() << "Created tool widget"; - } - } - else - { - //qDebug() << "UNKNOWN TOOL WIDGET TYPE"; - } - } - settings.endArray(); - settings.endGroup(); -} - -void QGCToolWidget::storeWidgetsToSettings(QSettings &settings) //static -{ - settings.beginGroup("Custom_Tool_Widgets"); - int preArraySize = settings.beginReadArray("QGC_TOOL_WIDGET_NAMES"); - settings.endArray(); - - settings.beginWriteArray("QGC_TOOL_WIDGET_NAMES"); - int num = 0; - for (int i = 0; i < qMax(preArraySize, instances()->size()); ++i) - { - if (i < instances()->size()) - { - // Updating value - if (!instances()->values().at(i)->fromMetaData()) - { - settings.setArrayIndex(num++); - settings.setValue("TITLE", instances()->values().at(i)->getTitle()); - settings.setValue("OBJECT_NAME", instances()->values().at(i)->objectName()); - qDebug() << "WRITING TITLE" << instances()->values().at(i)->getTitle() << "object:" << instances()->values().at(i)->objectName(); - } - } - else - { - // Deleting old value - settings.remove("TITLE"); - } - } - settings.endArray(); - - // Store individual widget items - for (int i = 0; i < instances()->size(); ++i) - { - instances()->values().at(i)->storeSettings(settings); - } - settings.endGroup(); - settings.sync(); -} - -void QGCToolWidget::storeSettings(QSettings& settings) -{ - /* This function should be called from storeWidgetsToSettings() which sets up the group etc */ - Q_ASSERT(settings.group() == "Custom_Tool_Widgets"); - - if (isFromMetaData) - { - //Refuse to store if this is loaded from metadata or dynamically generated. - return; - } - //qDebug() << "WRITING WIDGET" << widgetTitle << "TO SETTINGS"; - settings.beginGroup(widgetTitle); - settings.beginWriteArray("QGC_TOOL_WIDGET_ITEMS"); - int k = 0; // QGCToolItem counter - foreach(QGCToolWidgetItem *item, toolItemList) { - // Only count actual tool widget item children - settings.setArrayIndex(k++); - // Store the ToolWidgetItem - item->writeSettings(settings); - } - //qDebug() << "WROTE" << k << "SUB-WIDGETS TO SETTINGS"; - settings.endArray(); - settings.endGroup(); -} - -void QGCToolWidget::addUAS(UASInterface* uas) -{ - UAS* newMav = dynamic_cast(uas); - if (newMav) - { - // FIXME Convert to list - if (mav == NULL) mav = newMav; - } -} - -void QGCToolWidget::contextMenuEvent (QContextMenuEvent* event) -{ - QMenu menu(this); - menu.addAction(addParamAction); - menu.addAction(addCommandAction); - menu.addAction(addLabelAction); - menu.addAction(addPlotAction); - menu.addSeparator(); - menu.addAction(setTitleAction); - menu.addAction(exportAction); - menu.addAction(importAction); - menu.addAction(deleteAction); - menu.exec(event->globalPos()); -} - -void QGCToolWidget::hideEvent(QHideEvent* event) -{ - // Store settings - QWidget::hideEvent(event); -} - -/** - * The widgets current view and the applied dock widget area. - * Both values are only stored internally and allow an external - * widget to configure it accordingly - */ -void QGCToolWidget::setViewVisibilityAndDockWidgetArea(int view, bool visible, Qt::DockWidgetArea area) -{ - viewVisible.insert(view, visible); - dockWidgetArea.insert(view, area); -} - -void QGCToolWidget::createActions() -{ - addParamAction = new QAction(tr("New &Parameter Slider"), this); - addParamAction->setStatusTip(tr("Add a parameter setting slider widget to the tool")); - connect(addParamAction, SIGNAL(triggered()), this, SLOT(addParam())); - - addCommandAction = new QAction(tr("New MAV &Command Button"), this); - addCommandAction->setStatusTip(tr("Add a new action button to the tool")); - connect(addCommandAction, SIGNAL(triggered()), this, SLOT(addCommand())); - - addLabelAction = new QAction(tr("New &Text Label"), this); - addLabelAction->setStatusTip(tr("Add a new label to the tool")); - connect(addLabelAction, SIGNAL(triggered()), this, SLOT(addLabel())); - - addPlotAction = new QAction(tr("New &XY Plot"), this); - addPlotAction->setStatusTip(tr("Add a XY Plot to the tool")); - connect(addPlotAction, SIGNAL(triggered()), this, SLOT(addPlot())); - - setTitleAction = new QAction(tr("Set Widget Title"), this); - setTitleAction->setStatusTip(tr("Set the title caption of this tool widget")); - connect(setTitleAction, SIGNAL(triggered()), this, SLOT(setTitle())); - - deleteAction = new QAction(tr("Delete this widget"), this); - deleteAction->setStatusTip(tr("Delete this widget permanently")); - connect(deleteAction, SIGNAL(triggered()), this, SLOT(deleteWidget())); - - exportAction = new QAction(tr("Export this widget"), this); - exportAction->setStatusTip(tr("Export this widget to be reused by others")); - connect(exportAction, SIGNAL(triggered()), this, SLOT(exportWidget())); - - importAction = new QAction(tr("Import widget"), this); - importAction->setStatusTip(tr("Import this widget from a file (current content will be removed)")); - connect(importAction, SIGNAL(triggered()), this, SLOT(importWidget())); -} - -QMap* QGCToolWidget::instances() -{ - static QMap* instances; - if (!instances) instances = new QMap(); - return instances; -} - -void QGCToolWidget::addParam(int uas,int component,QString paramname,QVariant value) -{ - isFromMetaData = true; - QGCParamSlider* slider = new QGCParamSlider(this); - addToolWidget(slider); - slider->setActiveUAS(mav); - slider->setParameterValue(uas,component,0,-1,paramname,value); -} - -void QGCToolWidget::addParam() -{ - addToolWidgetAndEdit(new QGCParamSlider(this)); -} - -void QGCToolWidget::addCommand() -{ - addToolWidgetAndEdit(new QGCCommandButton(this)); -} - -void QGCToolWidget::addLabel() -{ - addToolWidgetAndEdit(new QGCTextLabel(this)); -} - -void QGCToolWidget::addPlot() -{ - addToolWidgetAndEdit(new QGCXYPlot(this)); -} - -void QGCToolWidget::addToolWidgetAndEdit(QGCToolWidgetItem* widget) -{ - addToolWidget(widget); - widget->startEditMode(); -} - -void QGCToolWidget::addToolWidget(QGCToolWidgetItem* widget) -{ - if (ui->hintLabel) - { - ui->hintLabel->deleteLater(); - ui->hintLabel = NULL; - } - connect(widget, SIGNAL(editingFinished()), this, SLOT(storeWidgetsToSettings())); - connect(widget, SIGNAL(destroyed()), this, SLOT(widgetRemoved())); - toolLayout->addWidget(widget); - toolItemList.append(widget); -} - -void QGCToolWidget::widgetRemoved() -{ - // Do not dynamic cast or de-reference QObject, since object is either in destructor or may have already - // been destroyed. - - QGCToolWidgetItem *widget = static_cast(QObject::sender()); - toolItemList.removeAll(widget); - storeWidgetsToSettings(); -} - -void QGCToolWidget::exportWidget() -{ - //-- Get file to save - QString fileName = QGCFileDialog::getSaveFileName( - this, tr("Save Widget File"), - QStandardPaths::writableLocation(QStandardPaths::DesktopLocation), - tr("QGroundControl Widget Files (*.qgw)"), - "qgw", - true); - //-- Save it if we have it - if (!fileName.isEmpty()) { - QSettings settings(fileName, QSettings::IniFormat); - storeSettings(settings); - } -} - -void QGCToolWidget::importWidget() -{ - QString fileName = QGCFileDialog::getOpenFileName( - this, tr("Load Widget File"), QStandardPaths::writableLocation(QStandardPaths::DesktopLocation), - tr("QGroundControl Widgets (*.qgw);;All Files (*)")); - if (!fileName.isEmpty()) { - // TODO There is no error checking. If the load fails, there is nothing telling the user what happened. - loadSettings(fileName); - } -} - -QString QGCToolWidget::getTitle() const -{ - return widgetTitle; -} - -void QGCToolWidget::setTitle() -{ - QDockWidget* parent = dynamic_cast(this->parentWidget()); - if (parent) - { - bool ok; - QString text = QInputDialog::getText(this, tr("Enter Widget Title"), - tr("Widget title:"), QLineEdit::Normal, - parent->windowTitle(), &ok); - if (ok && !text.isEmpty()) - { - setTitle(text); - } - } -} - -void QGCToolWidget::setTitle(const QString& title) -{ - // Sets title and calls setWindowTitle on QWidget - widgetTitle = title; - QWidget::setWindowTitle(title); - QDockWidget* dock = dynamic_cast(this->parentWidget()); - if (dock) - dock->setWindowTitle(widgetTitle); - emit titleChanged(title); - if (mainMenuAction) mainMenuAction->setText(title); - - //Do not save the settings here, because this function might be - //called while loading, and thus saving here could end up clobbering - //all of the other widgets -} - -void QGCToolWidget::setMainMenuAction(QAction* action) -{ - this->mainMenuAction = action; -} - -void QGCToolWidget::deleteWidget() -{ - // Remove from settings - - // Hide - this->hide(); - instances()->remove(objectName()); - - QSettings settings; - settings.beginGroup("QGC_MAINWINDOW"); - settings.remove(QString("TOOL_PARENT_") + objectName()); - settings.endGroup(); - - storeWidgetsToSettings(); - - // Delete - this->deleteLater(); -} diff --git a/src/ui/designer/QGCToolWidget.h b/src/ui/designer/QGCToolWidget.h deleted file mode 100644 index 847138da51f3970b8bcb5effb0a0d51bed0a43d2..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidget.h +++ /dev/null @@ -1,122 +0,0 @@ -#ifndef QGCTOOLWIDGET_H -#define QGCTOOLWIDGET_H - -#include -#include -#include -#include -#include "QGCToolWidgetItem.h" - -#include "UAS.h" - -namespace Ui -{ -class QGCToolWidget; -} - -class QGCToolWidget : public QWidget -{ - Q_OBJECT - -public: - explicit QGCToolWidget(const QString& objectName, const QString& title, QWidget *parent = 0, QSettings* settings = 0); - ~QGCToolWidget(); - - /** @brief Factory method to instantiate all tool widgets */ - static QList createWidgetsFromSettings(QWidget* parent, QString settingsFile=QString()); - /** @Give the tool widget a reference to its action in the main menu */ - void setMainMenuAction(QAction* action); - /** @brief All instances of this class */ - static QMap* instances(); - /** @brief Get title of widget */ - QString getTitle() const; - - int isVisible(int view) const { return viewVisible.value(view, false); } - Qt::DockWidgetArea getDockWidgetArea(int view) { return dockWidgetArea.value(view, Qt::BottomDockWidgetArea); } - void setParent(QWidget *parent); - - /** @brief Store all widgets of this type to QSettings */ - static void storeWidgetsToSettings(QSettings &settingsFile); - -public slots: - void addUAS(UASInterface* uas); - /** @brief Delete this widget */ - void deleteWidget(); - /** @brief Export this widget to a file */ - void exportWidget(); - /** @brief Import settings for this widget from a file */ - void importWidget(); - /** @brief Store all widgets of this type to QSettings */ - void storeWidgetsToSettings() { QSettings settings; QGCToolWidget::storeWidgetsToSettings(settings); } - void showLabel(QString name,int num); - -public: - void loadSettings(QVariantMap& settings); - /** @brief Load this widget from a QSettings object */ - void loadSettings(QSettings& settings); - /** @brief Load this widget from a settings file */ - bool loadSettings(const QString& settings, bool singleinstance=false); - /** @brief Store the view id and dock widget area */ - void setViewVisibilityAndDockWidgetArea(int view, bool visible, Qt::DockWidgetArea area); - void setSettings(QVariantMap& settings); - QList getParamList(); - void setParameterValue(int uas, int component, QString parameterName, const QVariant value); - bool fromMetaData() const { return isFromMetaData; } - -signals: - void titleChanged(const QString &title); - -protected: - bool isFromMetaData; - QMap paramToItemMap; - QList toolItemList; - QList paramList; - QVariantMap settingsMap; - QAction* addParamAction; - QAction* addCommandAction; - QAction* addPlotAction; - QAction* addLabelAction; - QAction* setTitleAction; - QAction* deleteAction; - QAction* exportAction; - QAction* importAction; - QVBoxLayout* toolLayout; - UAS* mav; - QAction* mainMenuAction; ///< Main menu action - QMap dockWidgetArea; ///< Dock widget area desired by this widget - QMap viewVisible; ///< Visibility in one view - QString widgetTitle; - - void contextMenuEvent(QContextMenuEvent* event); - void createActions(); - /** @brief Add an existing tool widget */ - void addToolWidget(QGCToolWidgetItem* widget); - /** @brief Add an existing tool widget and set it to edit mode */ - void addToolWidgetAndEdit(QGCToolWidgetItem* widget); - - void hideEvent(QHideEvent* event); -public slots: - void setTitle(const QString &title); - void addParam(int uas,int component,QString paramname,QVariant value); -protected slots: - void addParam(); - void addCommand(); - void addPlot(); - void addLabel(); - void setTitle(); - void widgetRemoved(); - -private: - /** Do not use this from outside the class to set the object name, - * because we cannot track changes to the object name, and the - * QObject::setObjectName() function is not virtual. Instead only - * pass in the object name to the constructor, or use the , then - * never change it again. */ - void setObjectName(const QString &name) { QWidget::setObjectName(name); } - /** Helper for storeWidgetsToSettings() */ - void storeSettings(QSettings& settings); - - Ui::QGCToolWidget *ui; -}; - -#endif // QGCTOOLWIDGET_H diff --git a/src/ui/designer/QGCToolWidget.ui b/src/ui/designer/QGCToolWidget.ui deleted file mode 100644 index ffff27a5b266d90453711fc9f4eee6d1e7a2f038..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidget.ui +++ /dev/null @@ -1,43 +0,0 @@ - - - QGCToolWidget - - - - 0 - 0 - 400 - 300 - - - - Form - - - - 0 - - - 6 - - - 0 - - - 6 - - - 0 - - - - - Right-click into the widget to customize - - - - - - - - diff --git a/src/ui/designer/QGCToolWidgetComboBox.cc b/src/ui/designer/QGCToolWidgetComboBox.cc deleted file mode 100644 index f4923842e96158949f8207ce3484cfab35505bd8..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidgetComboBox.cc +++ /dev/null @@ -1,450 +0,0 @@ -#include -#include -#include -#include -#include -#include - -#include "QGCToolWidgetComboBox.h" -#include "ui_QGCToolWidgetComboBox.h" -#include "UASInterface.h" -#include "UASManager.h" - - -QGCToolWidgetComboBox::QGCToolWidgetComboBox(QWidget *parent) : - QGCToolWidgetItem("Combo", parent), - parameterName(""), - parameterValue(0.0f), - parameterScalingFactor(0.0), - parameterMin(0.0f), - parameterMax(0.0f), - componentId(0), - ui(new Ui::QGCToolWidgetComboBox) -{ - ui->setupUi(this); - uas = NULL; - - ui->editInfoCheckBox->hide(); - ui->editDoneButton->hide(); - ui->editNameLabel->hide(); - ui->editRefreshParamsButton->hide(); - ui->editSelectParamComboBox->hide(); - ui->editSelectComponentComboBox->hide(); - ui->editStatusLabel->hide(); - ui->editLine1->hide(); - ui->editLine2->hide(); - ui->editAddItemButton->hide(); - ui->editRemoveItemButton->hide(); - ui->editItemValueSpinBox->hide(); - ui->editItemNameLabel->hide(); - ui->itemValueLabel->hide(); - ui->itemNameLabel->hide(); - ui->infoLabel->hide(); - ui->editOptionComboBox->setEnabled(false); - isDisabled = true; - connect(ui->editDoneButton, SIGNAL(clicked()), this, SLOT(endEditMode())); - connect(ui->editOptionComboBox,SIGNAL(currentIndexChanged(QString)),this,SLOT(comboBoxIndexChanged(QString))); - connect(ui->editAddItemButton,SIGNAL(clicked()),this,SLOT(addButtonClicked())); - connect(ui->editRemoveItemButton,SIGNAL(clicked()),this,SLOT(delButtonClicked())); - - // Sending actions - connect(ui->writeButton, SIGNAL(clicked()), this, SLOT(setParamPending())); - connect(ui->editSelectComponentComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(selectComponent(int))); - connect(ui->editSelectParamComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(selectParameter(int))); - //connect(ui->valueSlider, SIGNAL(valueChanged(int)), this, SLOT(setSliderValue(int))); - //connect(ui->doubleValueSpinBox, SIGNAL(valueChanged(double)), this, SLOT(setParamValue(double))); - //connect(ui->intValueSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setParamValue(int))); - connect(ui->editNameLabel, SIGNAL(textChanged(QString)), ui->nameLabel, SLOT(setText(QString))); - connect(ui->readButton, SIGNAL(clicked()), this, SLOT(requestParameter())); - connect(ui->editRefreshParamsButton, SIGNAL(clicked()), this, SLOT(refreshParameter())); - connect(ui->editInfoCheckBox, SIGNAL(clicked(bool)), this, SLOT(showInfo(bool))); - // connect to self - connect(ui->infoLabel, SIGNAL(released()), this, SLOT(showTooltip())); - - init(); -} - -QGCToolWidgetComboBox::~QGCToolWidgetComboBox() -{ - delete ui; -} - -void QGCToolWidgetComboBox::showTooltip() -{ - QWidget* sender = dynamic_cast(QObject::sender()); - - if (sender) - { - QPoint point = mapToGlobal(ui->infoLabel->pos()); - QToolTip::showText(point, sender->toolTip()); - } -} - -void QGCToolWidgetComboBox::refreshParameter() -{ - ui->editSelectParamComboBox->setEnabled(true); - ui->editSelectComponentComboBox->setEnabled(true); - if (uas && !parameterName.isEmpty()) { - uas->getParamManager()->requestParameterUpdate(componentId,parameterName); - ui->editStatusLabel->setText(tr("Requesting refresh...")); - } -} - -void QGCToolWidgetComboBox::setActiveUAS(UASInterface* activeUas) -{ - if (activeUas) - { - if (uas) - { - disconnect(uas, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), this, SLOT(setParameterValue(int,int,int,int,QString,QVariant))); - } - - // Connect buttons and signals - connect(activeUas, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), this, SLOT(setParameterValue(int,int,int,int,QString,QVariant)), Qt::UniqueConnection); - uas = activeUas; - paramMgr = uas->getParamManager(); - // Update current param value - //requestParameter(); - // Set param info - - QString text = paramMgr->dataModel()->getParamDescription(parameterName); - if (!text.isEmpty()) { - ui->infoLabel->setToolTip(text); - ui->infoLabel->show(); - } - // Force-uncheck and hide label if no description is available - if (ui->editInfoCheckBox->isChecked()) { - showInfo((text.length() > 0)); - } - } -} - -void QGCToolWidgetComboBox::requestParameter() -{ - if (!parameterName.isEmpty() && uas) - { - paramMgr->requestParameterUpdate(this->componentId, this->parameterName); - } -} - -void QGCToolWidgetComboBox::showInfo(bool enable) -{ - ui->editInfoCheckBox->setChecked(enable); - ui->infoLabel->setVisible(enable); -} - -void QGCToolWidgetComboBox::selectComponent(int componentIndex) -{ - this->componentId = ui->editSelectComponentComboBox->itemData(componentIndex).toInt(); -} - -void QGCToolWidgetComboBox::selectParameter(int paramIndex) -{ - // Set name - parameterName = ui->editSelectParamComboBox->itemText(paramIndex); - - // Update min and max values if available - if (uas) { - UASParameterDataModel* dataModel = paramMgr->dataModel(); - if (dataModel) { - // Minimum - if (dataModel->isParamMinKnown(parameterName)) { - parameterMin = dataModel->getParamMin(parameterName); - } - - // Maximum - if (dataModel->isParamMaxKnown(parameterName)) { - parameterMax = dataModel->getParamMax(parameterName); - } - - // Description - QString text = dataModel->getParamDescription(parameterName); - //ui->infoLabel->setText(text); - showInfo(!(text.length() > 0)); - } - } -} - -void QGCToolWidgetComboBox::setEditMode(bool editMode) -{ - if(!editMode) { - // Store component id - selectComponent(ui->editSelectComponentComboBox->currentIndex()); - // Store parameter name and id - selectParameter(ui->editSelectParamComboBox->currentIndex()); - } - - ui->nameLabel->setVisible(!editMode); - ui->writeButton->setVisible(!editMode); - ui->readButton->setVisible(!editMode); - - ui->editInfoCheckBox->setVisible(editMode); - ui->editDoneButton->setVisible(editMode); - ui->editNameLabel->setVisible(editMode); - ui->editRefreshParamsButton->setVisible(editMode); - ui->editSelectParamComboBox->setVisible(editMode); - ui->editSelectComponentComboBox->setVisible(editMode); - ui->editStatusLabel->setVisible(editMode); - ui->writeButton->setVisible(!editMode); - ui->readButton->setVisible(!editMode); - ui->editLine1->setVisible(editMode); - ui->editLine2->setVisible(editMode); - ui->editAddItemButton->setVisible(editMode); - ui->editRemoveItemButton->setVisible(editMode); - ui->editItemValueSpinBox->setVisible(editMode); - ui->editItemNameLabel->setVisible(editMode); - ui->itemValueLabel->setVisible(editMode); - ui->itemNameLabel->setVisible(editMode); - if (isDisabled) - { - ui->editOptionComboBox->setEnabled(editMode); - } - - QGCToolWidgetItem::setEditMode(editMode); -} - -void QGCToolWidgetComboBox::setParamPending() -{ - if (uas) { - uas->getParamManager()->setPendingParam(componentId, parameterName, parameterValue); - } - else { - qWarning() << __FILE__ << __LINE__ << "NO UAS SET, DOING NOTHING"; - } -} - - -/** - * @brief uas Unmanned system sending the parameter - * @brief component UAS component sending the parameter - * @brief parameterName Key/name of the parameter - * @brief value Value of the parameter - */ -void QGCToolWidgetComboBox::setParameterValue(int uas, int component, int paramCount, int paramIndex, QString parameterName, QVariant value) -{ - Q_UNUSED(paramCount); - // Check if this component and parameter are part of the list - bool found = false; - for (int i = 0; i< ui->editSelectComponentComboBox->count(); ++i) - { - if (component == ui->editSelectComponentComboBox->itemData(i).toInt()) - { - found = true; - } - } - - if (!found) - { - ui->editSelectComponentComboBox->addItem(tr("Component #%1").arg(component), component); - } - - // Parameter checking - found = false; - for (int i = 0; i < ui->editSelectParamComboBox->count(); ++i) - { - if (parameterName == ui->editSelectParamComboBox->itemText(i)) - { - found = true; - } - } - - if (!found) - { - ui->editSelectParamComboBox->addItem(parameterName, paramIndex); - } - - Q_UNUSED(uas); - - //comboBoxTextToValMap[ui->editItemNameLabel->text()] = ui->editItemValueSpinBox->value(); - if (visibleParam != "") - { - if (parameterName == visibleParam) - { - if (visibleVal == value.toInt()) - { - this->uas->requestParameter(this->componentId,this->parameterName); - visibleEnabled = true; - this->show(); - } - else - { - //Disable the component here. - //ui->valueSlider->setEnabled(false); - //ui->intValueSpinBox->setEnabled(false); - //ui->doubleValueSpinBox->setEnabled(false); - visibleEnabled = false; - this->hide(); - } - } - } - if (component == this->componentId && parameterName == this->parameterName) - { - if (!visibleEnabled) - { - return; - } - ui->editOptionComboBox->setEnabled(true); - isDisabled = false; - for (int i=0;ieditOptionComboBox->count();i++) - { - if (comboBoxTextToValMap[ui->editOptionComboBox->itemText(i)] == value.toInt()) - { - ui->editOptionComboBox->setCurrentIndex(i); - break; - } - } - } - - if (paramIndex == paramCount - 1) - { - ui->editStatusLabel->setText(tr("Complete parameter list received.")); - } -} - -void QGCToolWidgetComboBox::changeEvent(QEvent *e) -{ - QWidget::changeEvent(e); - switch (e->type()) { - case QEvent::LanguageChange: - ui->retranslateUi(this); - break; - default: - break; - } -} - - -void QGCToolWidgetComboBox::writeSettings(QSettings& settings) -{ - settings.setValue("TYPE", "COMBOBOX"); - settings.setValue("QGC_PARAM_COMBOBOX_DESCRIPTION", ui->nameLabel->text()); - //settings.setValue("QGC_PARAM_COMBOBOX_BUTTONTEXT", ui->actionButton->text()); - settings.setValue("QGC_PARAM_COMBOBOX_PARAMID", parameterName); - settings.setValue("QGC_PARAM_COMBOBOX_COMPONENTID", componentId); - settings.setValue("QGC_PARAM_COMBOBOX_DISPLAY_INFO", ui->editInfoCheckBox->isChecked()); - - settings.setValue("QGC_PARAM_COMBOBOX_COUNT", ui->editOptionComboBox->count()); - for (int i=0;ieditOptionComboBox->count();i++) - { - settings.setValue("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT",ui->editOptionComboBox->itemText(i)); - settings.setValue("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_VAL",comboBoxTextToValMap[ui->editOptionComboBox->itemText(i)]); - } - settings.sync(); -} -void QGCToolWidgetComboBox::readSettings(const QString& pre,const QVariantMap& settings) -{ - parameterName = settings.value(pre + "QGC_PARAM_COMBOBOX_PARAMID").toString(); - componentId = settings.value(pre + "QGC_PARAM_COMBOBOX_COMPONENTID").toInt(); - ui->nameLabel->setText(settings.value(pre + "QGC_PARAM_COMBOBOX_DESCRIPTION").toString()); - ui->editNameLabel->setText(settings.value(pre + "QGC_PARAM_COMBOBOX_DESCRIPTION").toString()); - //settings.setValue("QGC_PARAM_SLIDER_BUTTONTEXT", ui->actionButton->text()); - ui->editSelectParamComboBox->addItem(settings.value(pre + "QGC_PARAM_COMBOBOX_PARAMID").toString()); - ui->editSelectParamComboBox->setCurrentIndex(ui->editSelectParamComboBox->count()-1); - ui->editSelectComponentComboBox->addItem(tr("Component #%1").arg(settings.value(pre + "QGC_PARAM_COMBOBOX_COMPONENTID").toInt()), settings.value(pre + "QGC_PARAM_COMBOBOX_COMPONENTID").toInt()); - showInfo(settings.value(pre + "QGC_PARAM_COMBOBOX_DISPLAY_INFO", true).toBool()); - ui->editSelectParamComboBox->setEnabled(true); - ui->editSelectComponentComboBox->setEnabled(true); - visibleParam = settings.value(pre+"QGC_PARAM_COMBOBOX_VISIBLE_PARAM","").toString(); - visibleVal = settings.value(pre+"QGC_PARAM_COMBOBOX_VISIBLE_VAL",0).toInt(); - QString type = settings.value(pre + "QGC_PARAM_COMBOBOX_TYPE","PARAM").toString(); - int num = settings.value(pre + "QGC_PARAM_COMBOBOX_COUNT").toInt(); - for (int i=0;ieditOptionComboBox->addItem(settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT").toString()); - //qDebug() << "Adding val:" << settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT").toString() << settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_VAL").toInt(); - comboBoxTextToValMap[settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT").toString()] = settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_VAL").toInt(); - if (type == "INDIVIDUAL") - { - comboBoxTextToParamMap[settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT").toString()] = settings.value(pre + "QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_PARAM").toString(); - ui->editOptionComboBox->setEnabled(true); - } - } - - setActiveUAS(UASManager::instance()->getActiveUAS()); - - // Get param value after settings have been loaded - // requestParameter(); -} -void QGCToolWidgetComboBox::readSettings(const QSettings& settings) -{ - QVariantMap map; - foreach (QString key,settings.allKeys()) - { - map[key] = settings.value(key); - } - - readSettings("",map); - - //parameterName = settings.value("QGC_PARAM_COMBOBOX_PARAMID").toString(); - //component = settings.value("QGC_PARAM_COMBOBOX_COMPONENTID").toInt(); - //ui->nameLabel->setText(settings.value("QGC_PARAM_COMBOBOX_DESCRIPTION").toString()); - //ui->editNameLabel->setText(settings.value("QGC_PARAM_COMBOBOX_DESCRIPTION").toString()); - //ui->editSelectParamComboBox->addItem(settings.value("QGC_PARAM_COMBOBOX_PARAMID").toString()); - //ui->editSelectParamComboBox->setCurrentIndex(ui->editSelectParamComboBox->count()-1); - //ui->editSelectComponentComboBox->addItem(tr("Component #%1").arg(settings.value("QGC_PARAM_COMBOBOX_COMPONENTID").toInt()), settings.value("QGC_PARAM_COMBOBOX_COMPONENTID").toInt()); - //showInfo(settings.value("QGC_PARAM_COMBOBOX_DISPLAY_INFO", true).toBool()); - //ui->editSelectParamComboBox->setEnabled(true); - //ui->editSelectComponentComboBox->setEnabled(true); - - - /*int num = settings.value("QGC_PARAM_COMBOBOX_COUNT").toInt(); - for (int i=0;ieditOptionComboBox->addItem(settings.value("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT").toString()); - qDebug() << "Adding val:" << settings.value("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i)).toString() << settings.value("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_VAL").toInt(); - comboBoxTextToValMap[settings.value("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_TEXT").toString()] = settings.value("QGC_PARAM_COMBOBOX_ITEM_" + QString::number(i) + "_VAL").toInt(); - }*/ - - //setActiveUAS(UASManager::instance()->getActiveUAS());*/ - - // Get param value after settings have been loaded - //requestParameter(); -} -void QGCToolWidgetComboBox::addButtonClicked() -{ - ui->editOptionComboBox->addItem(ui->editItemNameLabel->text()); - comboBoxTextToValMap[ui->editItemNameLabel->text()] = ui->editItemValueSpinBox->value(); -} - -void QGCToolWidgetComboBox::delButtonClicked() -{ - int index = ui->editOptionComboBox->currentIndex(); - comboBoxTextToValMap.remove(ui->editOptionComboBox->currentText()); - ui->editOptionComboBox->removeItem(index); -} -void QGCToolWidgetComboBox::comboBoxIndexChanged(QString val) -{ - ui->imageLabel->setPixmap(comboBoxIndexToPixmap[ui->editOptionComboBox->currentIndex()]); - if (comboBoxTextToParamMap.contains(ui->editOptionComboBox->currentText())) - { - parameterName = comboBoxTextToParamMap.value(ui->editOptionComboBox->currentText()); - } - switch (static_cast(parameterValue.type())) - { - case QVariant::Char: - parameterValue = QVariant(QChar((unsigned char)comboBoxTextToValMap[val])); - break; - case QVariant::Int: - parameterValue = (int)comboBoxTextToValMap[val]; - break; - case QVariant::UInt: - parameterValue = (unsigned int)comboBoxTextToValMap[val]; - break; - case QMetaType::Float: - parameterValue =(float)comboBoxTextToValMap[val]; - break; - default: - qCritical() << "ERROR: NO VALID PARAM TYPE"; - return; - } -} diff --git a/src/ui/designer/QGCToolWidgetComboBox.h b/src/ui/designer/QGCToolWidgetComboBox.h deleted file mode 100644 index 785d606a4ec7a860097a1a51c154d8ee026d2e5a..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidgetComboBox.h +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef QGCToolWidgetComboBox_H -#define QGCToolWidgetComboBox_H - -#include -#include -#include - -#include "QGCToolWidgetItem.h" - -class QGCUASParamManagerInterface; - -namespace Ui -{ -class QGCToolWidgetComboBox; -} - -class QGCToolWidgetComboBox : public QGCToolWidgetItem -{ - Q_OBJECT - -public: - explicit QGCToolWidgetComboBox(QWidget *parent = 0); - ~QGCToolWidgetComboBox(); - - virtual void setEditMode(bool editMode); - -public slots: - /** @brief Queue parameter for sending to the MAV (add to pending list)*/ - void setParamPending(); - /** @brief Update the UI with the new parameter value */ - void setParameterValue(int uas, int componentId, int paramCount, int paramIndex, QString parameterName, const QVariant value); - void writeSettings(QSettings& settings); - void readSettings(const QString& pre,const QVariantMap& settings); - void readSettings(const QSettings& settings); - /** @brief request that the parameter for this widget be refreshed */ - void refreshParameter(); - void setActiveUAS(UASInterface *uas); - void selectComponent(int componentIndex); - void selectParameter(int paramIndex); - /** @brief Show descriptive text next to slider */ - void showInfo(bool enable); - /** @brief Show tool tip of calling element */ - void showTooltip(); - -protected slots: - /** @brief Request the parameter of this widget from the MAV */ - void requestParameter(); - /** @brief Button click to add a new item to the combobox */ - void addButtonClicked(); - /** @brief Button click to remove the currently selected item from the combobox */ - void delButtonClicked(); - /** @brief Updates current parameter based on new combobox value */ - void comboBoxIndexChanged(QString val); -protected: - QGCUASParamManagerInterface *paramMgr; ///< Access to parameter manager - bool visibleEnabled; - QString visibleParam; - int visibleVal; - QMap comboBoxTextToParamMap; - QMap comboBoxIndexToPixmap; - QMap comboBoxTextToValMap; ///< Comboboxtext/parameter value map - QString parameterName; ///< Key/Name of the parameter - QVariant parameterValue; ///< Value of the parameter - double parameterScalingFactor; ///< Factor to scale the parameter between slider and true value - float parameterMin; - bool isDisabled; - float parameterMax; - int componentId; ///< ID of the MAV component to address - //double scaledInt; - void changeEvent(QEvent *e); - -private: - Ui::QGCToolWidgetComboBox *ui; -}; - -#endif // QGCToolWidgetComboBox_H diff --git a/src/ui/designer/QGCToolWidgetComboBox.ui b/src/ui/designer/QGCToolWidgetComboBox.ui deleted file mode 100644 index 59d1fb03586fe32f5ee6a1b87bef0fea3d8c3c1e..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidgetComboBox.ui +++ /dev/null @@ -1,302 +0,0 @@ - - - QGCToolWidgetComboBox - - - - 0 - 0 - 789 - 244 - - - - Form - - - Qt::LeftToRight - - - - 6 - - - 3 - - - 6 - - - 3 - - - 6 - - - 12 - - - - - - 60 - 0 - - - - Name - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - Qt::LeftToRight - - - ? - - - QToolButton::DelayedPopup - - - Qt::ToolButtonIconOnly - - - false - - - Qt::NoArrow - - - - - - - Parameter Name - - - - - - - - - - - - - - - - Name - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - false - - - Select component - - - Select component - - - - - - - Add Item - - - - - - - Delete Item - - - - - - - Value - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - false - - - Select parameter - - - Select parameter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - - 0 - 0 - - - - Read the current parameter value on the system - - - Read the current parameter value on the system - - - Get - - - - - - - Done - - - - - - - - 0 - 0 - - - - - 16777215 - 16777215 - - - - Transmit the current slider value to the system - - - Transmit the current slider value to the system - - - Set - - - - - - - Show Info - - - true - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Qt::Horizontal - - - - 0 - 20 - - - - - - - - Please click first on refresh to update selection menus.. - - - - - - - true - - - Refresh - - - - - - - - 16777215 - 150 - - - - - - - true - - - - - - - - diff --git a/src/ui/designer/QGCToolWidgetItem.cc b/src/ui/designer/QGCToolWidgetItem.cc deleted file mode 100644 index c9f162ec45b936ee03bca50cefc1990d48043409..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidgetItem.cc +++ /dev/null @@ -1,79 +0,0 @@ -#include "QGCToolWidgetItem.h" - -#include -#include - -#include "QGCToolWidget.h" -#include "UASManager.h" -#include - -QGCToolWidgetItem::QGCToolWidgetItem(const QString& name, QWidget *parent) : - QWidget(parent), - uas(NULL), - isInEditMode(false), - qgcToolWidgetItemName(name), - _component(-1) -{ - startEditAction = new QAction(tr("Edit %1").arg(qgcToolWidgetItemName), this); - stopEditAction = new QAction(tr("Finish Editing %1").arg(qgcToolWidgetItemName), this); - deleteAction = new QAction(tr("Delete %1").arg(qgcToolWidgetItemName), this); -} - -void QGCToolWidgetItem::init() -{ - connect(startEditAction, SIGNAL(triggered()), this, SLOT(startEditMode())); - connect(stopEditAction, SIGNAL(triggered()), this, SLOT(endEditMode())); - connect(deleteAction, SIGNAL(triggered()), this, SLOT(deleteLater())); - - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), - this, SLOT(setActiveUAS(UASInterface*))); - - // Set first UAS if it exists - setActiveUAS(UASManager::instance()->getActiveUAS()); -} - -QGCToolWidgetItem::~QGCToolWidgetItem() -{ - delete startEditAction; - delete stopEditAction; - delete deleteAction; -} - -void QGCToolWidgetItem::contextMenuEvent (QContextMenuEvent* event) -{ - QMenu menu(this); - if (!isInEditMode) { - menu.addAction(startEditAction); - menu.addAction(deleteAction); - } else { - menu.addAction(stopEditAction); - } - menu.exec(event->globalPos()); -} - -void QGCToolWidgetItem::setActiveUAS(UASInterface *uas) -{ - this->uas = uas; -} - -void QGCToolWidgetItem::setEditMode(bool editMode) -{ - isInEditMode = editMode; - - // Attempt to undock the dock widget - QWidget* p = this; - QDockWidget* dock; - - do { - p = p->parentWidget(); - dock = dynamic_cast(p); - - if (dock) - { - dock->setFloating(editMode); - break; - } - } while (p && !dock); - - emit editingFinished(); -} diff --git a/src/ui/designer/QGCToolWidgetItem.h b/src/ui/designer/QGCToolWidgetItem.h deleted file mode 100644 index 69a133add6beea2b82581f142640fe860053058d..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCToolWidgetItem.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef QGCTOOLWIDGETITEM_H -#define QGCTOOLWIDGETITEM_H - -#include -#include -#include - -#include "UASInterface.h" - -class QGCToolWidgetItem : public QWidget -{ - Q_OBJECT -public: - QGCToolWidgetItem(const QString& name, QWidget *parent = 0); - ~QGCToolWidgetItem(); - - int componentId() { - return _component; - } - - virtual void setEditMode(bool editMode); - bool isEditMode() const { return isInEditMode; } -public slots: - void startEditMode() { setEditMode(true); } - void endEditMode() { setEditMode(false); } - - virtual void setComponent(int comp) { - _component = comp; - } - virtual void writeSettings(QSettings& settings) = 0; - virtual void readSettings(const QSettings& settings) = 0; - virtual void readSettings(const QString& pre,const QVariantMap& settings) = 0; - virtual void setActiveUAS(UASInterface *uas); - -signals: - void editingFinished(); - -protected: - void contextMenuEvent (QContextMenuEvent* event); - void init(); - UASInterface* uas; - -private: - QAction* startEditAction; - QAction* stopEditAction; - QAction* deleteAction; - bool isInEditMode; - QString qgcToolWidgetItemName; - int _component; ///< The MAV component (the process or device ID) - - - -}; - -#endif // QGCTOOLWIDGETITEM_H diff --git a/src/ui/designer/QGCXYPlot.cc b/src/ui/designer/QGCXYPlot.cc deleted file mode 100644 index 1f9f2f5bb82523be8a5411b5eb8808268bd4cb2d..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCXYPlot.cc +++ /dev/null @@ -1,451 +0,0 @@ -#include - -#include "QGCXYPlot.h" -#include "ui_QGCXYPlot.h" - -#include "MAVLinkProtocol.h" -#include "UASManager.h" -#include "IncrementalPlot.h" -#include "QGCApplication.h" - -#include -#include -#include -#include - -class XYPlotCurve : public QwtPlotItem -{ -public: - XYPlotCurve() { - m_maxStorePoints = 10000; - m_maxShowPoints = 15; - setItemAttribute(QwtPlotItem::AutoScale); - minMaxSet = false; - m_color = Qt::white; - m_smoothPoints = 1; - m_startIndex = -1; //Disable - } - - void setMaxDataStorePoints(int max) { m_maxStorePoints = max; itemChanged(); } - void setMaxDataShowPoints(int max) { m_maxShowPoints = max; itemChanged(); } - void setSmoothPoints(int smoothPoints) { m_smoothPoints = smoothPoints; itemChanged(); } - int maxDataStorePoints() const { return m_maxStorePoints; } - int maxDataShowPoints() const { return m_maxShowPoints; } - int smoothPoints() const { return m_smoothPoints; } - - /** Append data, returning the number of removed items */ - int appendData(const QPointF &data) { - m_data.append(data); - int removed = 0; - while (m_data.size() > m_maxShowPoints) { - ++removed; - m_data.removeFirst(); - } - if (!minMaxSet) { - xmin = xmax = data.x(); - ymin = ymax = data.y(); - minMaxSet = true; - previousTime =xmin; - } else if (m_autoScale) { - if (m_autoScaleTime) { - xmin += removed * (data.x() - previousTime); - previousTime = data.x(); - } else { - xmin = qMin(qreal(xmin), data.x()); - } - xmax = qMax(qreal(xmax), data.x()); - ymin = qMin(qreal(ymin), data.y()); - ymax = qMax(qreal(ymax), data.y()); - } - itemChanged(); - return removed; - } - void clear() { - minMaxSet = false; - m_data.clear(); - itemChanged(); - } - void setColor(const QColor &color) { - m_color = color; - } - void setTimeSerie(bool state) { - clear(); - m_autoScaleTime = state; - } - void unsetMinMax() { - if(m_autoScale) - return; - m_autoScale = true; - //Recalculate the automatic scale - if(m_data.isEmpty()) - minMaxSet = false; - else { - minMaxSet = true; - previousTime = xmax = xmin = m_data.at(0).x(); - ymax = ymin = m_data.at(0).y(); - for(int i = 1; i < m_data.size(); i++) { - xmin = qMin(qreal(xmin), m_data.at(i).x()); - xmax = qMax(qreal(xmax), m_data.at(i).x()); - ymin = qMin(qreal(ymin), m_data.at(i).y()); - ymax = qMax(qreal(ymax), m_data.at(i).y()); - } - } - } - void setMinMax(double xmin, double xmax, double ymin, double ymax ) - { - this->xmin = xmin; - this->xmax = xmax; - this->ymin = ymin; - this->ymax = ymax; - m_autoScale = false; - minMaxSet = true; - itemChanged(); - } - void setStartIndex(int time) { /** Set to -1 to just use latest */ - m_startIndex = time; - itemChanged(); - } - int dataSize() const { return m_data.size(); } - - double xMin() const { return xmin; } - double xMax() const { return xmax; } - double yMin() const { return ymin; } - double yMax() const { return ymax; } - - virtual QRectF boundingRect() const { - if(!minMaxSet) - return QRectF(1,1,-2,-2); - return QRectF(xmin,ymin,xmax-xmin,ymax-ymin); - } - - /* From QwtPlotItem. Draw the complete series */ - virtual void draw (QPainter *p, const QwtScaleMap &xMap, const QwtScaleMap &yMap, const QRectF &canvasRect) const - { - Q_UNUSED(canvasRect); - QPointF lastPoint; - if(m_data.isEmpty()) - return; - QPointF smoothTotal(0,0); - int smoothCount = 0; - int start; - int count; - if(m_startIndex >= 0) { - int end = qMin(m_startIndex, m_data.size()-1); - start = qBound(0, end - m_maxShowPoints, m_data.size()-1); - count = end - start; - } else { - start = qMax(0,m_data.size() - m_maxShowPoints); - count = qMin(m_data.size()-start, m_maxShowPoints); - } - for(int i = qMax(0,start - m_smoothPoints); i < start; ++i) { - smoothTotal += m_data.at(i); - ++smoothCount; - } - for(int i = 0; i < count; ++i) { - QPointF point = m_data.at(i+start); - if(m_smoothPoints > 1) { - smoothTotal += point; - if(smoothCount >= m_smoothPoints) { - Q_ASSERT(i + start - m_smoothPoints >= 0); - smoothTotal -= m_data.at(i + start - m_smoothPoints); - } else - ++smoothCount; - point = smoothTotal/smoothCount; - } - QPointF paintCoord = QPointF(xMap.transform(point.x()), yMap.transform(point.y())); - m_color.setAlpha((m_maxShowPoints - count + i)*255/m_maxShowPoints); - p->setPen(m_color); - if(i != 0) - p->drawLine(lastPoint, paintCoord); - if(i == count-1) { - //Draw marker for first point - const int marker_radius = 2; - QRectF marker = QRectF(paintCoord.x()-marker_radius, paintCoord.y()-marker_radius, marker_radius*2+1,marker_radius*2+1); - p->fillRect(marker,QBrush(m_color)); - } - lastPoint = paintCoord; - } - } - -private: - QList< QPointF > m_data; - int m_maxStorePoints; - int m_maxShowPoints; - int m_smoothPoints; /** Number of points to average across */ - mutable QColor m_color; - - double previousTime; - double xmin; - double xmax; - double ymin; - double ymax; - bool minMaxSet; - bool m_autoScale; - bool m_autoScaleTime; - int m_startIndex; -}; - -QGCXYPlot::QGCXYPlot(QWidget *parent) : - QGCToolWidgetItem("XY Plot", parent), - ui(new Ui::QGCXYPlot), - plot(0), - xycurve(0), - x(0), - x_timestamp_us(0), - x_valid(false), - y(0), - y_timestamp_us(0), - y_valid(false), - max_timestamp_diff_us(10000) /* Default to 10ms tolerance between x and y values */ - - -{ - uas = 0; - ui->setupUi(this); - plot = new QwtPlot(); - - ui->xyPlotLayout->addWidget(plot); - - connect(ui->editFinishButton, SIGNAL(clicked()), this, SLOT(endEditMode())); - - connect(MainWindow::instance(), SIGNAL(valueChanged(int,QString,QString,QVariant,quint64)), - this, SLOT(appendData(int,QString,QString,QVariant,quint64))); - - connect(ui->editXParam, SIGNAL(editTextChanged(QString)), this, SLOT(clearPlot())); - connect(ui->editYParam, SIGNAL(editTextChanged(QString)), this, SLOT(clearPlot())); - - plot->plotLayout()->setAlignCanvasToScales(true); - - QwtLinearScaleEngine* yScaleEngine = new QwtLinearScaleEngine(); - plot->setAxisScaleEngine(QwtPlot::yLeft, yScaleEngine); - - plot->setAxisAutoScale(QwtPlot::xBottom); - plot->setAxisAutoScale(QwtPlot::yLeft); - plot->setAutoReplot(); - xycurve = new XYPlotCurve(); - xycurve->attach(plot); - styleChanged(qgcApp()->styleIsDark()); - connect(qgcApp(), &QGCApplication::styleChanged, this, &QGCXYPlot::styleChanged); - connect(ui->minX, SIGNAL(valueChanged(double)),this, SLOT(updateMinMaxSettings())); - connect(ui->maxX, SIGNAL(valueChanged(double)),this, SLOT(updateMinMaxSettings())); - connect(ui->minY, SIGNAL(valueChanged(double)),this, SLOT(updateMinMaxSettings())); - connect(ui->maxY, SIGNAL(valueChanged(double)),this, SLOT(updateMinMaxSettings())); - connect(ui->automaticAxisRange, SIGNAL(toggled(bool)),this, SLOT(updateMinMaxSettings())); - connect(ui->timeAxisRange, SIGNAL(toggled(bool)),this, SLOT(setTimeAxis())); - connect(ui->maxDataShowSpinBox, SIGNAL(valueChanged(int)),this, SLOT(updateMinMaxSettings())); - connect(ui->maxDataStoreSpinBox, SIGNAL(valueChanged(int)),this, SLOT(updateMinMaxSettings())); - connect(ui->smoothSpinBox, SIGNAL(valueChanged(int)),this, SLOT(updateMinMaxSettings())); - setEditMode(false); -} - -QGCXYPlot::~QGCXYPlot() -{ - delete ui; -} - -void QGCXYPlot::clearPlot() -{ - xycurve->clear(); - plot->detachItems(); - ui->timeScrollBar->setMaximum(xycurve->dataSize()); - ui->timeScrollBar->setValue(ui->timeScrollBar->maximum()); -} - -void QGCXYPlot::setEditMode(bool editMode) -{ - ui->lblXParam->setVisible(editMode); - ui->lblYParam->setVisible(editMode); - ui->editXParam->setVisible(editMode); - ui->editYParam->setVisible(editMode); - ui->editFinishButton->setVisible(editMode); - ui->editLine1->setVisible(editMode); - ui->editLine2->setVisible(editMode); - ui->lblMaxDataStore->setVisible(editMode); - ui->lblMaxDataShow->setVisible(editMode); - ui->lblMaxX->setVisible(editMode); - ui->lblMaxY->setVisible(editMode); - ui->lblMinX->setVisible(editMode); - ui->lblMinY->setVisible(editMode); - ui->maxX->setVisible(editMode); - ui->maxY->setVisible(editMode); - ui->minX->setVisible(editMode); - ui->minY->setVisible(editMode); - ui->maxDataShowSpinBox->setVisible(editMode); - ui->maxDataStoreSpinBox->setVisible(editMode); - ui->automaticAxisRange->setVisible(editMode); - ui->timeAxisRange->setVisible(editMode); - ui->lblSmooth->setVisible(editMode); - ui->smoothSpinBox->setVisible(editMode); - - if(!editMode) { - plot->setAxisTitle(QwtPlot::xBottom, ui->editXParam->currentText()); - plot->setAxisTitle(QwtPlot::yLeft, ui->editYParam->currentText()); - } - - QGCToolWidgetItem::setEditMode(editMode); - updateMinMaxSettings(); //Do this after calling the parent -} - -void QGCXYPlot::writeSettings(QSettings& settings) -{ - settings.setValue("TYPE", "XYPLOT"); - settings.setValue("QGC_XYPLOT_X", ui->editXParam->currentText()); - settings.setValue("QGC_XYPLOT_Y", ui->editYParam->currentText()); - settings.setValue("QGC_XYPLOT_MINX", ui->minX->value()); - settings.setValue("QGC_XYPLOT_MAXX", ui->maxX->value()); - settings.setValue("QGC_XYPLOT_MINY", ui->minY->value()); - settings.setValue("QGC_XYPLOT_MAXY", ui->maxY->value()); - settings.setValue("QGC_XYPLOT_MAXDATA_STORE", ui->maxDataStoreSpinBox->value()); - settings.setValue("QGC_XYPLOT_MAXDATA_SHOW", ui->maxDataShowSpinBox->value()); - settings.setValue("QGC_XYPLOT_AUTO", ui->automaticAxisRange->isChecked()); - settings.setValue("QGC_XYPLOT_SMOOTH", ui->smoothSpinBox->value()); - settings.setValue("QGC_XYPLOT_TIME", ui->timeAxisRange->isChecked()); - settings.sync(); -} -void QGCXYPlot::readSettings(const QString& pre,const QVariantMap& settings) -{ - ui->editXParam->setEditText(settings.value(pre + "QGC_XYPLOT_X", "").toString()); - ui->editYParam->setEditText(settings.value(pre + "QGC_XYPLOT_Y", "").toString()); - ui->automaticAxisRange->setChecked(settings.value(pre + "QGC_XYPLOT_AUTO", true).toBool()); - ui->minX->setValue(settings.value(pre + "QGC_XYPLOT_MINX", 0).toDouble()); - ui->maxX->setValue(settings.value(pre + "QGC_XYPLOT_MAXX", 0).toDouble()); - ui->minY->setValue(settings.value(pre + "QGC_XYPLOT_MINY", 0).toDouble()); - ui->maxY->setValue(settings.value(pre + "QGC_XYPLOT_MAXY", 0).toDouble()); - ui->maxDataStoreSpinBox->setValue(settings.value(pre + "QGC_XYPLOT_MAXDATA_STORE", 10000).toInt()); - ui->maxDataShowSpinBox->setValue(settings.value(pre + "QGC_XYPLOT_MAXDATA_SHOW", 15).toInt()); - ui->smoothSpinBox->setValue(settings.value(pre + "QGC_XYPLOT_SMOOTH", 1).toInt()); - ui->timeAxisRange->setChecked(settings.value(pre + "QGC_XYPLOT_TIME", true).toBool()); - plot->setAxisTitle(QwtPlot::xBottom, ui->editXParam->currentText()); - plot->setAxisTitle(QwtPlot::yLeft, ui->editYParam->currentText()); - updateMinMaxSettings(); -} - -void QGCXYPlot::readSettings(const QSettings& settings) -{ - ui->editXParam->setEditText(settings.value("QGC_XYPLOT_X", "").toString()); - ui->editYParam->setEditText(settings.value("QGC_XYPLOT_Y", "").toString()); - ui->automaticAxisRange->setChecked(settings.value("QGC_XYPLOT_AUTO", true).toBool()); - ui->minX->setValue(settings.value("QGC_XYPLOT_MINX", 0).toDouble()); - ui->maxX->setValue(settings.value("QGC_XYPLOT_MAXX", 0).toDouble()); - ui->minY->setValue(settings.value("QGC_XYPLOT_MINY", 0).toDouble()); - ui->maxY->setValue(settings.value("QGC_XYPLOT_MAXY", 0).toDouble()); - ui->maxDataStoreSpinBox->setValue(settings.value("QGC_XYPLOT_MAXDATA_STORE", 10000).toInt()); - ui->maxDataShowSpinBox->setValue(settings.value("QGC_XYPLOT_MAXDATA_SHOW", 15).toInt()); - ui->smoothSpinBox->setValue(settings.value("QGC_XYPLOT_SMOOTH", 1).toInt()); - ui->timeAxisRange->setChecked(settings.value("QGC_XYPLOT_TIME", true).toBool()); - plot->setAxisTitle(QwtPlot::xBottom, ui->editXParam->currentText()); - plot->setAxisTitle(QwtPlot::yLeft, ui->editYParam->currentText()); - updateMinMaxSettings(); -} - -void QGCXYPlot::appendData(int uasId, const QString& curve, const QString& unit, const QVariant& variant, quint64 usec) -{ - Q_UNUSED(uasId); - Q_UNUSED(unit); - if(isEditMode()) { - //When in edit mode, add all the items to the combo box - if(ui->editXParam->findText(curve) == -1) { - ui->editXParam->blockSignals(true); - ui->editYParam->blockSignals(true); - QString oldX = ui->editXParam->currentText(); - QString oldY = ui->editYParam->currentText(); - ui->editXParam->addItem(curve); //Annoyingly this can wipe out the current text - ui->editYParam->addItem(curve); - ui->editXParam->setEditText(oldX); - ui->editYParam->setEditText(oldY); - ui->editXParam->blockSignals(false); - ui->editYParam->blockSignals(false); - } - } - - if(ui->stopStartButton->isChecked()) - return; - - bool ok; - if(curve == ui->editXParam->currentText()) { - x = variant.toDouble(&ok); - if(!ok) - return; - x_timestamp_us = usec; - x_valid = true; - } else if(curve == ui->editYParam->currentText()) { - y = variant.toDouble(&ok); - if(!ok) - return; - y_timestamp_us = usec; - y_valid = true; - } else - return; - - if(x_valid && y_valid) { - quint64 difference; - if (y_timestamp_us < x_timestamp_us) { - difference = x_timestamp_us - y_timestamp_us; - } else { - difference = y_timestamp_us - x_timestamp_us; - } - if (difference <= max_timestamp_diff_us) { - int removed = xycurve->appendData( QPointF(x,y) ); - x_valid = false; - y_valid = false; - bool atMaximum = (ui->timeScrollBar->value() == ui->timeScrollBar->maximum()); - if(ui->timeScrollBar->maximum() != xycurve->dataSize()) { - ui->timeScrollBar->setMaximum(xycurve->dataSize()); - if(atMaximum) - ui->timeScrollBar->setValue(ui->timeScrollBar->maximum()); - } else if(!atMaximum) { //Move the scrollbar to keep current value selected - int value = qMax(ui->timeScrollBar->minimum(), ui->timeScrollBar->value() - removed); - ui->timeScrollBar->setValue(value); - xycurve->setStartIndex(value); - } - } - } -} - -void QGCXYPlot::styleChanged(bool styleIsDark) -{ - xycurve->setColor(styleIsDark ? Qt::white : Qt::black); -} - -void QGCXYPlot::updateMinMaxSettings() -{ - bool automatic = ui->automaticAxisRange->isChecked(); - ui->minX->setEnabled(!automatic); - ui->maxX->setEnabled(!automatic); - ui->minY->setEnabled(!automatic); - ui->maxY->setEnabled(!automatic); - if(automatic) { - xycurve->unsetMinMax(); - } else { - xycurve->setMinMax(ui->minX->value(), ui->maxX->value(), ui->minY->value(), ui->maxY->value()); - } - xycurve->setMaxDataStorePoints(ui->maxDataStoreSpinBox->value()); - xycurve->setMaxDataShowPoints(ui->maxDataShowSpinBox->value()); - xycurve->setSmoothPoints(ui->smoothSpinBox->value()); -} - -void QGCXYPlot::setTimeAxis() -{ - xycurve->setTimeSerie(ui->timeAxisRange->isChecked()); -} - -void QGCXYPlot::on_maxDataShowSpinBox_valueChanged(int value) -{ - ui->maxDataStoreSpinBox->setMinimum(value); - if(ui->maxDataStoreSpinBox->value() < value) - ui->maxDataStoreSpinBox->setValue(value); -} - -void QGCXYPlot::on_stopStartButton_toggled(bool checked) -{ - if(!checked) - clearPlot(); -} - -void QGCXYPlot::on_timeScrollBar_valueChanged(int value) -{ - if(value == ui->timeScrollBar->maximum()) - xycurve->setStartIndex(-1); - else - xycurve->setStartIndex(value); -} diff --git a/src/ui/designer/QGCXYPlot.h b/src/ui/designer/QGCXYPlot.h deleted file mode 100644 index d6a0bc27ba00226c5610f5f99e732124ef66fb66..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCXYPlot.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef QGCXYPLOT_H -#define QGCXYPLOT_H - -#include "QGCToolWidgetItem.h" - -namespace Ui -{ -class QGCXYPlot; -} - -class UASInterface; -class QwtPlot; -class XYPlotCurve; - -class QGCXYPlot : public QGCToolWidgetItem -{ - Q_OBJECT - -public: - explicit QGCXYPlot(QWidget *parent = 0); - ~QGCXYPlot(); - virtual void setEditMode(bool editMode); - -public slots: - void writeSettings(QSettings& settings); - void readSettings(const QSettings& settings); - void readSettings(const QString& pre,const QVariantMap& settings); - void appendData(int uasId, const QString& curve, const QString& unit, const QVariant& variant, quint64 usec); - void clearPlot(); - void styleChanged(bool styleIsDark); - void updateMinMaxSettings(); - - -private slots: - void on_maxDataShowSpinBox_valueChanged(int value); - void on_stopStartButton_toggled(bool checked); - void setTimeAxis(); - void on_timeScrollBar_valueChanged(int value); - -private: - Ui::QGCXYPlot *ui; - QwtPlot *plot; - XYPlotCurve* xycurve; - - bool autoScaleTime; - double x; /**< Last unused value for the x-coordinate */ - quint64 x_timestamp_us; /**< Timestamp that we last recieved a value for x */ - bool x_valid; /**< Whether we have recieved an x value but so far no corresponding y value */ - double y; /**< Last unused value for the x-coordinate */ - quint64 y_timestamp_us; /**< Timestamp that we last recieved a value for x */ - bool y_valid; /**< Whether we have recieved an x value but so far no corresponding y value */ - quint64 max_timestamp_diff_us; /**< Only combine x and y to a data point if the timestamp for both doesn't differ by more than this */ -}; - -#endif // QGCXYPLOT_H diff --git a/src/ui/designer/QGCXYPlot.ui b/src/ui/designer/QGCXYPlot.ui deleted file mode 100644 index 6179f7c9675c5d1b5d8f294d6f920c5bd31f4c5d..0000000000000000000000000000000000000000 --- a/src/ui/designer/QGCXYPlot.ui +++ /dev/null @@ -1,480 +0,0 @@ - - - QGCXYPlot - - - - 0 - 0 - 771 - 365 - - - - Form - - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - 0 - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - 0 - - - - - - - - 50 - 0 - - - - X Parameter: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - editXParam - - - - - - - - 0 - 0 - - - - true - - - QComboBox::InsertAlphabetically - - - QComboBox::AdjustToContents - - - 10 - - - - - - - - 50 - 0 - - - - Y Parameter: - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - editYParam - - - - - - - - 0 - 0 - - - - true - - - QComboBox::InsertAlphabetically - - - QComboBox::AdjustToContents - - - 10 - - - - - - - - - - - Number of data points to &show: - - - maxDataShowSpinBox - - - - - - - 2 - - - 999 - - - 15 - - - - - - - To s&tore: - - - maxDataStoreSpinBox - - - - - - - 10 - - - 999999999 - - - 15 - - - - - - - Number of points to average, to provide a smoothing effect of the plotted values - - - S&mooth: - - - smoothSpinBox - - - - - - - Number of points to average, to provide a smoothing effect of the plotted values - - - 1 - - - 99999 - - - - - - - Automatic Axis Range - - - true - - - - - - - Time Series - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - &Min X: - - - minX - - - - - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - &Max X: - - - maxX - - - - - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - Min &Y: - - - minY - - - - - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - Ma&x Y: - - - maxY - - - - - - - -999999999.000000000000000 - - - 999999999.000000000000000 - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - 0 - - - - - - - 6 - - - - - - 0 - 0 - - - - 2 - - - true - - - Qt::Horizontal - - - - - - - - :/files/images/actions/media-playback-stop.svg - :/files/images/actions/media-playback-start.svg:/files/images/actions/media-playback-stop.svg - - - - 16 - 16 - - - - true - - - false - - - false - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Done - - - false - - - true - - - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - editXParam - editYParam - maxDataShowSpinBox - maxDataStoreSpinBox - smoothSpinBox - automaticAxisRange - minX - maxX - minY - maxY - editFinishButton - - - - - - diff --git a/src/ui/designer/RCChannelWidget.cc b/src/ui/designer/RCChannelWidget.cc deleted file mode 100644 index eb6493ab04f55a4576b76eb6736f6b2fd21b3e0b..0000000000000000000000000000000000000000 --- a/src/ui/designer/RCChannelWidget.cc +++ /dev/null @@ -1,256 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009, 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @author Don Gagne - -#include "RCChannelWidget.h" -#include - -#define DIMMEST_COLOR QColor::fromRgb(0,100,0) -#define MIDBRIGHT_COLOR QColor::fromRgb(0,180,0) -#define BRIGHTEST_COLOR QColor::fromRgb(64,255,0) - -RCChannelWidget::RCChannelWidget(QWidget *parent) : - QGroupBox(parent), - _value(_centerValue), - _min(_centerValue), - _max(_centerValue), - _trim(_centerValue), - _minValid(false), - _maxValid(false), - _showMinMax(false), - _showTrim(false) -{ - -} - -/// @brief Draws the control -void RCChannelWidget::paintEvent(QPaintEvent *event) -{ - // Let the group box draw the outer border - QGroupBox::paintEvent(event); - - // Now we draw the innner contents - - QPainter painter(this); - - int fontHeight = painter.fontMetrics().height(); - int rowHeigth = fontHeight + 2; - - painter.setBrush(Qt::Dense4Pattern); - painter.setPen(QColor::fromRgb(128,128,64)); - - int curVal = _value; - if (curVal > _maxRange) { - curVal = _maxRange; - } - if (curVal < _minRange) { - curVal = _minRange; - } - - if (isEnabled()) { - QLinearGradient hGradientBrush(0, 0, this->width(), this->height()); - hGradientBrush.setColorAt(0.0,DIMMEST_COLOR); - hGradientBrush.setColorAt(0.5,MIDBRIGHT_COLOR); - hGradientBrush.setColorAt(1.0, BRIGHTEST_COLOR); - - // Calculate how much horizontal space we need to show a min/max value. We must be able to display four numeric - // digits for the rc value, plus we add another digit for spacing. - int minMaxDisplayWidth = painter.fontMetrics().width("00000"); - - // Draw the value axis line with center and end point tick marks. We need to leave enough space on the left and the right - // for the Min/Max value displays. - QRect rcValueAxis(minMaxDisplayWidth, rowHeigth * 2, width() - (minMaxDisplayWidth * 2), rowHeigth); - int yLine = rcValueAxis.y() + rcValueAxis.height() / 2; - painter.drawLine(rcValueAxis.left(), yLine, rcValueAxis.right(), yLine); - painter.drawLine(rcValueAxis.left(), rcValueAxis.top(), rcValueAxis.left(), rcValueAxis.bottom()); - painter.drawLine(rcValueAxis.right(), rcValueAxis.top(), rcValueAxis.right(), rcValueAxis.bottom()); - painter.drawLine(rcValueAxis.left() + rcValueAxis.width() / 2, rcValueAxis.top(), rcValueAxis.left() + rcValueAxis.width() / 2, rcValueAxis.bottom()); - - painter.setPen(QColor::fromRgb(50,255,50)); - painter.setBrush(hGradientBrush); - - if (_showMinMax) { - QString text; - - // Draw the Min numeric value display to the left - painter.drawText(0, rowHeigth, minMaxDisplayWidth, fontHeight, Qt::AlignHCenter | Qt::AlignBottom, "Min"); - if (_minValid) { - text = QString::number(_min); - } else { - text = "----"; - } - painter.drawText(0, rowHeigth * 2, minMaxDisplayWidth, fontHeight, Qt::AlignHCenter | Qt::AlignBottom, text); - - // Draw the Max numeric value display to the right - painter.drawText(width() - minMaxDisplayWidth, rowHeigth, minMaxDisplayWidth, fontHeight, Qt::AlignHCenter | Qt::AlignBottom, "Max"); - if (_maxValid) { - text = QString::number(_max); - } else { - text = QString::number(_max); - } - painter.drawText(width() - minMaxDisplayWidth, rowHeigth * 2, minMaxDisplayWidth, fontHeight, Qt::AlignHCenter | Qt::AlignBottom, text); - - // Draw the Min/Max tick marks on the axis - int xTick; - if (_minValid) { - int xTick = rcValueAxis.left() + (rcValueAxis.width() * ((float)(_min-_minRange) / (_maxRange-_minRange))); - painter.drawLine(xTick, rcValueAxis.top(), xTick, rcValueAxis.bottom()); - } - if (_maxValid) { - xTick = rcValueAxis.left() + (rcValueAxis.width() * ((float)(_max-_minRange) / (_maxRange-_minRange))); - painter.drawLine(xTick, rcValueAxis.top(), xTick, rcValueAxis.bottom()); - } - } - - if (_showTrim) { - // Draw the Trim value pointer - _drawValuePointer(&painter, - rcValueAxis.left() + (rcValueAxis.width() * ((float)(_trim-_minRange) / (_maxRange-_minRange))), // x position for tip of triangle - (rowHeigth * 2) + (rowHeigth / 2) - 1, // y position for tip of triangle - rowHeigth / 2, // heigth of triangle - false); // draw upside down - - // Draw the Trim value label - QString trimStr = tr("Trim %1").arg(QString::number(_trim)); - - int trimTextWidth = painter.fontMetrics().width(trimStr); - - painter.drawText(rcValueAxis.left() + (rcValueAxis.width() * ((float)(_trim-_minRange) / (_maxRange-_minRange))) - (trimTextWidth / 2), - rowHeigth, - trimTextWidth, - fontHeight, - Qt::AlignLeft | Qt::AlignBottom, - trimStr); - } - - // Draw the RC value pointer - _drawValuePointer(&painter, - rcValueAxis.left() + (rcValueAxis.width() * ((float)(curVal-_minRange) / (_maxRange-_minRange))), // x position for tip of triangle - (rowHeigth * 2) + (rowHeigth / 2) + 1, // y position for tip of triangle - rowHeigth / 2, // heigth of triangle - true); // draw right side up - - // Draw the control value - QString valueStr = QString::number(_value); - - int valueTextWidth = painter.fontMetrics().width(valueStr); - - painter.drawText(rcValueAxis.left() + (rcValueAxis.width() * ((float)(_value-_minRange) / (_maxRange-_minRange))) - (valueTextWidth / 2), - rowHeigth * 3, - valueTextWidth, - fontHeight, - Qt::AlignLeft | Qt::AlignBottom, - valueStr); - - painter.setPen(QColor::fromRgb(0,128,0)); - painter.setBrush(hGradientBrush); - } else { - painter.setPen(QColor(Qt::gray)); - painter.drawText(0, 0, width(), height(), Qt::AlignHCenter | Qt::AlignVCenter, tr("not available")); - } -} - -void RCChannelWidget::setValue(int value) -{ - _value = value; - update(); -} - -void RCChannelWidget::showMinMax(bool show) -{ - _showMinMax = show; - update(); -} - -void RCChannelWidget::showTrim(bool show) -{ - _showTrim = show; - update(); -} - -void RCChannelWidget::setValueAndMinMax(int val, int min, int max) -{ - setValue(val); - setMinMax(min,max); -} - -void RCChannelWidget::setMinMax(int min, int max) -{ - _min = min; - _max = max; - update(); -} - -void RCChannelWidget::setTrim(int value) -{ - _trim = value; - update(); -} - -/// @brief Draw rc value pointer triangle. -/// @param painter Draw using this painter -/// @param x X position for tip of triangle -/// @param y Y position for tip of triangle -/// @param heigth Height of triangle -/// @param rightSideUp true: draw triangle right side up, false: draw triangle upside down -void RCChannelWidget::_drawValuePointer(QPainter* painter, int xTip, int yTip, int height, bool rightSideUp) -{ - QPointF trianglePoints[3]; - - // Topmost tip of triangle points to value - trianglePoints[0].setX(xTip); - trianglePoints[0].setY(yTip); - - int yBottom; - if (rightSideUp) { - yBottom = yTip + height; - } else { - yBottom = yTip - height; - } - - // Right bottom tip of triangle - trianglePoints[1].setX(xTip + (height * 0.75)); - trianglePoints[1].setY(yBottom); - - // Left bottom tip of triangle - trianglePoints[2].setX(xTip - (height * 0.75)); - trianglePoints[2].setY(yBottom); - - painter->drawPolygon (trianglePoints, 3); -} - -/// @brief Set whether the Min range value is valid or not. -void RCChannelWidget::setMinValid(bool valid) -{ - _minValid = valid; - update(); -} - -/// @brief Set whether the Max range value is valid or not. -void RCChannelWidget::setMaxValid(bool valid) -{ - _maxValid = valid; - update(); -} diff --git a/src/ui/designer/RCChannelWidget.h b/src/ui/designer/RCChannelWidget.h deleted file mode 100644 index 254cb3e46779ef1c3b30f133134adf8249e664b5..0000000000000000000000000000000000000000 --- a/src/ui/designer/RCChannelWidget.h +++ /dev/null @@ -1,94 +0,0 @@ -/*===================================================================== - - QGroundControl Open Source Ground Control Station - - (c) 2009, 2014 QGROUNDCONTROL PROJECT - - This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - - ======================================================================*/ - -/// @file -/// @author Don Gagne - -#ifndef RCChannelWidget_H -#define RCChannelWidget_H - -#include - -/// @brief RC Channel Widget - UI Widget based on QGroupBox which displays the current calibration settings -/// for an RC channel. -class RCChannelWidget : public QGroupBox -{ - Q_OBJECT - -public: - explicit RCChannelWidget(QWidget *parent = 0); - - /// @brief Set the current RC value to display - void setValue(int value); - - /// @brief Set the current RC Value, Minimum RC Value and Maximum RC Value - void setValueAndMinMax(int val, int min, int max); - - void setMinMax(int min, int max); - - /// @brief Set whether the Min range value is valid or not. - void setMinValid(bool valid); - - /// @brief Set whether the Max range value is valid or not. - void setMaxValid(bool valid); - - /// @brief Sets the Trim value for the channel - void setTrim(int value); - - int value(void) { return _value; } ///< Returns the current RC Value set in the control - int min(void) { return _min; } ///< Returns the min value set in the control - int max(void) { return _max; } ///< Returns the max values set in the control - int trim(void) { return _trim; } ///< Returns the trim value set in the control - - void showMinMax(bool show); - bool isMinMaxShown() { return _showMinMax; } - bool isMinValid(void) { return _minValid; } - bool isMaxValid(void) { return _maxValid; } - - void showTrim(bool show); - bool isTrimShown() { return _showTrim; } - -protected: - virtual void paintEvent(QPaintEvent *event); - -private: - void _drawValuePointer(QPainter* painter, int xTip, int yTip, int height, bool rightSideUp); - - int _value; ///< Current RC value - int _min; ///< Min RC value - int _max; ///< Max RC value - int _trim; ///< RC Value for Trim position - - bool _minValid; ///< true: minimum value is valid - bool _maxValid; ///< true: maximum value is valid - - bool _showMinMax; ///< true: show min max values on display - bool _showTrim; ///< true: show trim value on display - - static const int _centerValue = 1500; ///< RC Value which is at center - static const int _maxDeltaRange = 700; ///< Delta around center value which is the max range for widget - static const int _minRange = _centerValue - _maxDeltaRange; ///< Smallest value widget can display - static const int _maxRange = _centerValue + _maxDeltaRange; ///< Largest value widget can display -}; - -#endif diff --git a/src/ui/flightdisplay/FlightDisplay.qml b/src/ui/flightdisplay/FlightDisplay.qml new file mode 100644 index 0000000000000000000000000000000000000000..d697af98dc200c03de92ea5be23672dee4c1ec42 --- /dev/null +++ b/src/ui/flightdisplay/FlightDisplay.qml @@ -0,0 +1,629 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Main Flight Display + * @author Gus Grubba + */ + +import QtQuick 2.3 +import QtQuick.Controls 1.3 +import QtQuick.Controls.Styles 1.2 +import QtQuick.Dialogs 1.2 + +import QGroundControl.FlightControls 1.0 +import QGroundControl.ScreenTools 1.0 +import QGroundControl.Controls 1.0 +import QGroundControl.Palette 1.0 + +Item { + id: root + + property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } + + property real roll: isNaN(flightDisplay.roll) ? 0 : flightDisplay.roll + property real pitch: isNaN(flightDisplay.pitch) ? 0 : flightDisplay.pitch + + property bool showPitchIndicator: true + property bool showAttitudeIndicator: true + property bool showCompass: true + + function getBool(value) { + return value === '0' ? false : true; + } + + function setBool(value) { + return value ? "1" : "0"; + } + + Connections { + target: flightDisplay + onShowOptionsMenuChanged: { + contextMenu.popup(); + } + } + + Component.onCompleted: + { + mapBackground.visible = getBool(flightDisplay.loadSetting("showMapBackground", "0")); + mapBackground.alwaysNorth = getBool(flightDisplay.loadSetting("mapAlwaysPointsNorth", "0")); + showAttitudeIndicator = getBool(flightDisplay.loadSetting("showAttitudeIndicator", "1")); + showPitchIndicator = getBool(flightDisplay.loadSetting("showPitchIndicator", "1")); + showCompass = getBool(flightDisplay.loadSetting("showCompass", "1")); + altitudeWidget.visible = getBool(flightDisplay.loadSetting("showAltitudeWidget", "1")); + speedWidget.visible = getBool(flightDisplay.loadSetting("showSpeedWidget", "1")); + currentSpeed.showAirSpeed = getBool(flightDisplay.loadSetting("showCurrentAirSpeed", "1")); + currentSpeed.showGroundSpeed = getBool(flightDisplay.loadSetting("showCurrentGroundSpeed", "1")); + currentAltitude.showClimbRate = getBool(flightDisplay.loadSetting("showCurrentClimbRate", "1")); + currentAltitude.showAltitude = getBool(flightDisplay.loadSetting("showCurrentAltitude", "1")); + mapTypeMenu.update(); + } + + // TODO: This is to replace the context menu but it is not working. Not only the buttons don't show, + // the default placement is random and mostly off screen on mobile devices. + Dialog { + id: optionsDialog + modality: Qt.WindowModal + title: "Flight Display Options" + standardButtons: StandardButton.Close | StandardButton.RestoreDefaults + onReset: { + showPitchIndicator = true; + flightDisplay.saveSetting("showPitchIndicator", setBool(showPitchIndicator)); + showAttitudeIndicator = true; + flightDisplay.saveSetting("showAttitudeIndicator", setBool(showAttitudeIndicator)); + showCompass = true; + flightDisplay.saveSetting("showCompass", setBool(showCompass)); + altitudeWidget.visible = true; + flightDisplay.saveSetting("showAltitudeWidget", setBool(altitudeWidget.visible)); + currentAltitude.showAltitude = true; + flightDisplay.saveSetting("showCurrentAltitude", setBool(currentAltitude.showAltitude)); + currentAltitude.showClimbRate = true; + flightDisplay.saveSetting("showCurrentClimbRate", setBool(currentAltitude.showClimbRate)); + speedWidget.visible = true; + flightDisplay.saveSetting("showSpeedWidget", setBool(speedWidget.visible)); + currentSpeed.showAirSpeed = true; + flightDisplay.saveSetting("showCurrentAirSpeed", setBool(currentSpeed.showAirSpeed)); + currentSpeed.showGroundSpeed = true; + flightDisplay.saveSetting("showCurrentGroundSpeed", setBool(currentSpeed.showGroundSpeed)); + mapBackground.visible = false; + flightDisplay.saveSetting("showMapBackground", setBool(mapBackground.visible)); + mapBackground.alwaysNorth = false; + flightDisplay.saveSetting("mapAlwaysPointsNorth", setBool(mapBackground.alwaysNorth)); + } + contentItem: Rectangle { + color: __qgcPal.window + implicitWidth: ScreenTools.pixelSizeFactor * (360) + implicitHeight: ScreenTools.pixelSizeFactor * (300) + Column { + id: dialogColumn + anchors.centerIn: parent + spacing: ScreenTools.adjustPixelSize(10) + width: parent.width + Grid { + columns: 2 + spacing: ScreenTools.pixelSizeFactor * (8) + rowSpacing: ScreenTools.pixelSizeFactor * (10) + anchors.horizontalCenter: parent.horizontalCenter + QGCCheckBox { + text: "Map Background" + checked: mapBackground.visible + onClicked: + { + mapBackground.visible = !mapBackground.visible; + flightDisplay.saveSetting("showMapBackground", setBool(mapBackground.visible)); + } + } + QGCCheckBox { + text: "Pitch Indicator" + checked: showPitchIndicator + onClicked: + { + showPitchIndicator = !showPitchIndicator; + flightDisplay.saveSetting("showPitchIndicator", setBool(showPitchIndicator)); + } + } + QGCCheckBox { + text: "Attitude Indicator" + checked: showAttitudeIndicator + onClicked: + { + showAttitudeIndicator = !showAttitudeIndicator; + flightDisplay.saveSetting("showAttitudeIndicator", setBool(showAttitudeIndicator)); + } + } + QGCCheckBox { + text: "Compass" + checked: showCompass + onClicked: + { + showCompass = !showCompass; + flightDisplay.saveSetting("showCompass", setBool(showCompass)); + } + } + QGCCheckBox { + text: "Altitude Indicator" + checked: altitudeWidget.visible + onClicked: + { + altitudeWidget.visible = !altitudeWidget.visible; + flightDisplay.saveSetting("showAltitudeWidget", setBool(altitudeWidget.visible)); + } + } + QGCCheckBox { + text: "Current Altitude" + checked: currentAltitude.showAltitude + onClicked: + { + currentAltitude.showAltitude = !currentAltitude.showAltitude; + flightDisplay.saveSetting("showCurrentAltitude", setBool(currentAltitude.showAltitude)); + } + } + QGCCheckBox { + text: "Current Climb Rate" + checked: currentAltitude.showClimbRate + onClicked: + { + currentAltitude.showClimbRate = !currentAltitude.showClimbRate; + flightDisplay.saveSetting("showCurrentClimbRate", setBool(currentAltitude.showClimbRate)); + } + } + QGCCheckBox { + text: "Speed Indicator" + checked: speedWidget.visible + onClicked: + { + speedWidget.visible = !speedWidget.visible; + flightDisplay.saveSetting("showSpeedWidget", setBool(speedWidget.visible)); + } + } + QGCCheckBox { + text: "Current Air Speed" + checked: currentSpeed.showAirSpeed + onClicked: + { + currentSpeed.showAirSpeed = !currentSpeed.showAirSpeed; + flightDisplay.saveSetting("showCurrentAirSpeed", setBool(currentSpeed.showAirSpeed)); + } + } + QGCCheckBox { + text: "Current Ground Speed" + checked: currentSpeed.showGroundSpeed + onClicked: + { + currentSpeed.showGroundSpeed = !currentSpeed.showGroundSpeed; + flightDisplay.saveSetting("showCurrentGroundSpeed", setBool(currentSpeed.showGroundSpeed)); + } + } + } + //-- Hack tool to find optimal scale factor + Column { + id: fudgeColumn + anchors.horizontalCenter: parent.horizontalCenter + spacing: ScreenTools.adjustPixelSize(4) + width: parent.width + QGCLabel { + text: "Adjust Pixel Size Factor" + anchors.horizontalCenter: parent.horizontalCenter + } + Row { + spacing: ScreenTools.adjustPixelSize(4) + anchors.horizontalCenter: parent.horizontalCenter + Button { + text: 'Inc' + onClicked: { + ScreenTools.increasePixelSize() + } + } + Label { + text: ScreenTools.pixelSizeFactor.toFixed(2) + color: __qgcPal.text + anchors.verticalCenter: parent.verticalCenter + } + Button { + text: 'Dec' + onClicked: { + ScreenTools.decreasePixelSize() + } + } + } + QGCLabel { + text: "Adjust Font Size Factor" + anchors.horizontalCenter: parent.horizontalCenter + } + Row { + spacing: ScreenTools.adjustPixelSize(4) + anchors.horizontalCenter: parent.horizontalCenter + Button { + text: 'Inc' + onClicked: { + ScreenTools.increaseFontSize() + } + } + Label { + text: ScreenTools.fontPointFactor.toFixed(2) + color: __qgcPal.text + anchors.verticalCenter: parent.verticalCenter + } + Button { + text: 'Dec' + onClicked: { + ScreenTools.decreaseFontSize() + } + } + } + } + } + } + } + + Menu { + id: contextMenu + + MenuItem { + text: "Map Background" + checkable: true + checked: mapBackground.visible + onTriggered: + { + mapBackground.visible = !mapBackground.visible; + flightDisplay.saveSetting("showMapBackground", setBool(mapBackground.visible)); + } + } + + /* + MenuItem { + text: "Options Dialog" + onTriggered: + { + optionsDialog.open() + } + } + */ + + /* + MenuItem { + text: "Map Always Points North" + checkable: true + checked: mapBackground.alwaysNorth + onTriggered: + { + mapBackground.alwaysNorth = !mapBackground.alwaysNorth; + flightDisplay.saveSetting("mapAlwaysPointsNorth", setBool(mapBackground.alwaysNorth)); + } + } + */ + + Menu { + id: mapTypeMenu + title: "Map Type..." + ExclusiveGroup { id: currMapType } + function setCurrentMap(map) { + for (var i = 0; i < mapBackground.mapItem.supportedMapTypes.length; i++) { + if (map === mapBackground.mapItem.supportedMapTypes[i].name) { + mapBackground.mapItem.activeMapType = mapBackground.mapItem.supportedMapTypes[i] + flightDisplay.saveSetting("currentMapType", map); + return; + } + } + } + function addMap(map, checked) { + var mItem = mapTypeMenu.addItem(map); + mItem.checkable = true + mItem.checked = checked + mItem.exclusiveGroup = currMapType + var menuSlot = function() {setCurrentMap(map);}; + mItem.triggered.connect(menuSlot); + } + function update() { + clear() + var map = '' + if (mapBackground.mapItem.supportedMapTypes.length > 0) + map = mapBackground.mapItem.activeMapType.name; + map = flightDisplay.loadSetting("currentMapType", map); + for (var i = 0; i < mapBackground.mapItem.supportedMapTypes.length; i++) { + var name = mapBackground.mapItem.supportedMapTypes[i].name; + addMap(name, map === name); + } + if(map != '') + setCurrentMap(map); + } + } + + MenuSeparator {} + + MenuItem { + text: "Pitch Indicator" + checkable: true + checked: showPitchIndicator + onTriggered: + { + showPitchIndicator = !showPitchIndicator; + flightDisplay.saveSetting("showPitchIndicator", setBool(showPitchIndicator)); + } + } + + MenuItem { + text: "Attitude Indicator" + checkable: true + checked: showAttitudeIndicator + onTriggered: + { + showAttitudeIndicator = !showAttitudeIndicator; + flightDisplay.saveSetting("showAttitudeIndicator", setBool(showAttitudeIndicator)); + } + } + + MenuItem { + text: "Compass" + checkable: true + checked: showCompass + onTriggered: + { + showCompass = !showCompass; + flightDisplay.saveSetting("showCompass", setBool(showCompass)); + } + } + + MenuItem { + text: "Altitude Indicator" + checkable: true + checked: altitudeWidget.visible + onTriggered: + { + altitudeWidget.visible = !altitudeWidget.visible; + flightDisplay.saveSetting("showAltitudeWidget", setBool(altitudeWidget.visible)); + } + } + + MenuItem { + text: "Current Altitude" + checkable: true + checked: currentAltitude.showAltitude + onTriggered: + { + currentAltitude.showAltitude = !currentAltitude.showAltitude; + flightDisplay.saveSetting("showCurrentAltitude", setBool(currentAltitude.showAltitude)); + } + } + + MenuItem { + text: "Current Climb Rate" + checkable: true + checked: currentAltitude.showClimbRate + onTriggered: + { + currentAltitude.showClimbRate = !currentAltitude.showClimbRate; + flightDisplay.saveSetting("showCurrentClimbRate", setBool(currentAltitude.showClimbRate)); + } + } + + MenuItem { + text: "Speed Indicator" + checkable: true + checked: speedWidget.visible + onTriggered: + { + speedWidget.visible = !speedWidget.visible; + flightDisplay.saveSetting("showSpeedWidget", setBool(speedWidget.visible)); + } + } + + MenuItem { + text: "Current Air Speed" + checkable: true + checked: currentSpeed.showAirSpeed + onTriggered: + { + currentSpeed.showAirSpeed = !currentSpeed.showAirSpeed; + flightDisplay.saveSetting("showCurrentAirSpeed", setBool(currentSpeed.showAirSpeed)); + } + } + + MenuItem { + text: "Current Ground Speed" + checkable: true + checked: currentSpeed.showGroundSpeed + onTriggered: + { + currentSpeed.showGroundSpeed = !currentSpeed.showGroundSpeed; + flightDisplay.saveSetting("showCurrentGroundSpeed", setBool(currentSpeed.showGroundSpeed)); + } + } + + MenuSeparator {} + + MenuItem { + text: "Restore Defaults" + onTriggered: + { + showPitchIndicator = true; + flightDisplay.saveSetting("showPitchIndicator", setBool(showPitchIndicator)); + showAttitudeIndicator = true; + flightDisplay.saveSetting("showAttitudeIndicator", setBool(showAttitudeIndicator)); + showCompass = true; + flightDisplay.saveSetting("showCompass", setBool(showCompass)); + altitudeWidget.visible = true; + flightDisplay.saveSetting("showAltitudeWidget", setBool(altitudeWidget.visible)); + currentAltitude.showAltitude = true; + flightDisplay.saveSetting("showCurrentAltitude", setBool(currentAltitude.showAltitude)); + currentAltitude.showClimbRate = true; + flightDisplay.saveSetting("showCurrentClimbRate", setBool(currentAltitude.showClimbRate)); + speedWidget.visible = true; + flightDisplay.saveSetting("showSpeedWidget", setBool(speedWidget.visible)); + currentSpeed.showAirSpeed = true; + flightDisplay.saveSetting("showCurrentAirSpeed", setBool(currentSpeed.showAirSpeed)); + currentSpeed.showGroundSpeed = true; + flightDisplay.saveSetting("showCurrentGroundSpeed", setBool(currentSpeed.showGroundSpeed)); + mapBackground.visible = false; + flightDisplay.saveSetting("showMapBackground", setBool(mapBackground.visible)); + mapBackground.alwaysNorth = false; + flightDisplay.saveSetting("mapAlwaysPointsNorth", setBool(mapBackground.alwaysNorth)); + } + } + + } + + QGCMapBackground { + id: mapBackground + anchors.fill: parent + heading: 0 // isNaN(flightDisplay.heading) ? 0 : flightDisplay.heading + latitude: mapBackground.visible ? ((flightDisplay.latitude === 0) ? 37.803784 : flightDisplay.latitude) : 37.803784 + longitude: mapBackground.visible ? ((flightDisplay.longitude === 0) ? -122.462276 : flightDisplay.longitude) : -122.462276 + interactive: !flightDisplay.mavPresent + z: 10 + } + + QGCCompassInstrument { + id: compassInstrument + y: ScreenTools.pixelSizeFactor * (5) + x: ScreenTools.pixelSizeFactor * (85) + size: ScreenTools.pixelSizeFactor * (160) + heading: isNaN(flightDisplay.heading) ? 0 : flightDisplay.heading + visible: mapBackground.visible && showCompass + z: mapBackground.z + 1 + onResetRequested: { + y = ScreenTools.pixelSizeFactor * (5) + x = ScreenTools.pixelSizeFactor * (85) + size = ScreenTools.pixelSizeFactor * (160) + tForm.xScale = 1 + tForm.yScale = 1 + } + } + + QGCAttitudeInstrument { + id: attitudeInstrument + y: ScreenTools.pixelSizeFactor * (5) + size: ScreenTools.pixelSizeFactor * (160) + rollAngle: roll + pitchAngle: pitch + showPitch: showPitchIndicator + visible: mapBackground.visible && showAttitudeIndicator + anchors.right: root.right + anchors.rightMargin: ScreenTools.pixelSizeFactor * (85) + z: mapBackground.z + 1 + onResetRequested: { + y = ScreenTools.pixelSizeFactor * (5) + anchors.right = root.right + anchors.rightMargin = ScreenTools.pixelSizeFactor * (85) + size = ScreenTools.pixelSizeFactor * (160) + tForm.xScale = 1 + tForm.yScale = 1 + } + } + + QGCArtificialHorizon { + id: artificialHoriz + anchors.fill: parent + rollAngle: roll + pitchAngle: pitch + visible: !mapBackground.visible + z: 10 + } + + QGCAttitudeWidget { + id: attitudeWidget + rollAngle: roll + pitchAngle: pitch + visible: !mapBackground.visible && showAttitudeIndicator + width: ScreenTools.pixelSizeFactor * (260) + height: ScreenTools.pixelSizeFactor * (260) + z: 20 + } + + QGCPitchWidget { + id: pitchWidget + visible: showPitchIndicator && !mapBackground.visible + anchors.verticalCenter: parent.verticalCenter + pitchAngle: pitch + rollAngle: roll + color: Qt.rgba(0,0,0,0) + size: ScreenTools.pixelSizeFactor * (120) + z: 30 + } + + QGCAltitudeWidget { + id: altitudeWidget + anchors.right: parent.right + width: ScreenTools.pixelSizeFactor * (60) + height: parent.height * 0.65 > ScreenTools.pixelSizeFactor * (280) ? ScreenTools.pixelSizeFactor * (280) : parent.height * 0.65 + altitude: flightDisplay.altitudeWGS84 + z: 30 + } + + QGCSpeedWidget { + id: speedWidget + anchors.left: parent.left + width: ScreenTools.pixelSizeFactor * (60) + height: parent.height * 0.65 > ScreenTools.pixelSizeFactor * (280) ? ScreenTools.pixelSizeFactor * (280) : parent.height * 0.65 + speed: flightDisplay.groundSpeed + z: 40 + } + + QGCCurrentSpeed { + id: currentSpeed + anchors.left: parent.left + width: ScreenTools.pixelSizeFactor * (75) + airspeed: flightDisplay.airSpeed + groundspeed: flightDisplay.groundSpeed + showAirSpeed: true + showGroundSpeed: true + visible: (currentSpeed.showGroundSpeed || currentSpeed.showAirSpeed) + z: 50 + } + + QGCCurrentAltitude { + id: currentAltitude + anchors.right: parent.right + width: ScreenTools.pixelSizeFactor * (75) + altitude: flightDisplay.altitudeWGS84 + vertZ: flightDisplay.climbRate + showAltitude: true + showClimbRate: true + visible: (currentAltitude.showAltitude || currentAltitude.showClimbRate) + z: 60 + } + + QGCCompass { + id: compassIndicator + y: root.height * 0.7 + x: root.width * 0.5 - ScreenTools.pixelSizeFactor * (60) + width: ScreenTools.pixelSizeFactor * (120) + height: ScreenTools.pixelSizeFactor * (120) + heading: isNaN(flightDisplay.heading) ? 0 : flightDisplay.heading + visible: !mapBackground.visible && showCompass + z: 70 + } + + //- Context Menu + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.RightButton + onClicked: { + if (mouse.button == Qt.RightButton) + { + contextMenu.popup(); + } + } + } +} diff --git a/src/ui/flightdisplay/QGCFlightDisplay.cc b/src/ui/flightdisplay/QGCFlightDisplay.cc new file mode 100644 index 0000000000000000000000000000000000000000..bdd40b9b1dbbd0c28670d36684494bdf961c7dc1 --- /dev/null +++ b/src/ui/flightdisplay/QGCFlightDisplay.cc @@ -0,0 +1,380 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Main Flight Display + * @author Gus Grubba + */ + +#include +#include +#include + +#include "MainWindow.h" +#include "QGCFlightDisplay.h" +#include "UASManager.h" + +#define UPDATE_TIMER 500 + +const char* kMainFlightDisplayGroup = "MainFlightDisplay"; + +QGCFlightDisplay::QGCFlightDisplay(QWidget *parent) + : QGCQmlWidgetHolder(parent) + , _mav(NULL) + , _roll(0.0f) + , _pitch(0.0f) + , _heading(0.0f) + , _altitudeAMSL(0.0f) + , _altitudeWGS84(0.0f) + , _altitudeRelative(0.0f) + , _groundSpeed(0.0f) + , _airSpeed(0.0f) + , _climbRate(0.0f) + , _navigationAltitudeError(0.0f) + , _navigationSpeedError(0.0f) + , _navigationCrosstrackError(0.0f) + , _navigationTargetBearing(0.0f) + , _latitude(37.803784f) + , _longitude(-122.462276f) + , _refreshTimer(new QTimer(this)) +{ + setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); + setObjectName("MainFlightDisplay"); + // Get rid of layout default margins + QLayout* pl = layout(); + if(pl) { + pl->setContentsMargins(0,0,0,0); + } +#ifndef __android__ + setMinimumWidth( 380 * MainWindow::pixelSizeFactor()); + setMinimumHeight(400 * MainWindow::pixelSizeFactor()); +#endif + setContextPropertyObject("flightDisplay", this); + setSource(QUrl::fromUserInput("qrc:/qml/FlightDisplay.qml")); + setVisible(true); + // Connect with UAS signal + _setActiveUAS(UASManager::instance()->getActiveUAS()); + connect(UASManager::instance(), SIGNAL(UASDeleted(UASInterface*)), this, SLOT(_forgetUAS(UASInterface*))); + connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(_setActiveUAS(UASInterface*))); + // Refresh timer + _refreshTimer->setInterval(UPDATE_TIMER); + connect(_refreshTimer, SIGNAL(timeout()), this, SLOT(_checkUpdate())); +} + +QGCFlightDisplay::~QGCFlightDisplay() +{ + _refreshTimer->stop(); +} + +void QGCFlightDisplay::saveSetting(const QString &name, const QString& value) +{ + QSettings settings; + QString key(kMainFlightDisplayGroup); + key += "/" + name; + settings.setValue(key, value); +} + +QString QGCFlightDisplay::loadSetting(const QString &name, const QString& defaultValue) +{ + QSettings settings; + QString key(kMainFlightDisplayGroup); + key += "/" + name; + return settings.value(key, defaultValue).toString(); +} + +void QGCFlightDisplay::_forgetUAS(UASInterface* uas) +{ + if (_mav != NULL && _mav == uas) { + // Disconnect any previously connected active MAV + disconnect(_mav, SIGNAL(attitudeChanged (UASInterface*, double,double,double,quint64)), this, SLOT(_updateAttitude(UASInterface*, double, double, double, quint64))); + disconnect(_mav, SIGNAL(attitudeChanged (UASInterface*, int,double,double,double,quint64)), this, SLOT(_updateAttitude(UASInterface*,int,double, double, double, quint64))); + disconnect(_mav, SIGNAL(speedChanged (UASInterface*, double, double, quint64)), this, SLOT(_updateSpeed(UASInterface*, double, double, quint64))); + disconnect(_mav, SIGNAL(altitudeChanged (UASInterface*, double, double, double, double, quint64)), this, SLOT(_updateAltitude(UASInterface*, double, double, double, double, quint64))); + disconnect(_mav, SIGNAL(navigationControllerErrorsChanged(UASInterface*, double, double, double)), this, SLOT(_updateNavigationControllerErrors(UASInterface*, double, double, double))); + disconnect(_mav, &UASInterface::NavigationControllerDataChanged, this, &QGCFlightDisplay::_updateNavigationControllerData); + } + _mav = NULL; + emit mavPresentChanged(); +} + +void QGCFlightDisplay::_setActiveUAS(UASInterface* uas) +{ + if (uas == _mav) + return; + // Disconnect the previous one (if any) + if(_mav) { + _forgetUAS(_mav); + } + if (uas) { + // Now connect the new UAS + // Setup communication + connect(uas, SIGNAL(attitudeChanged (UASInterface*,double,double,double,quint64)), this, SLOT(_updateAttitude(UASInterface*, double, double, double, quint64))); + connect(uas, SIGNAL(attitudeChanged (UASInterface*,int,double,double,double,quint64)), this, SLOT(_updateAttitude(UASInterface*,int,double, double, double, quint64))); + connect(uas, SIGNAL(speedChanged (UASInterface*, double, double, quint64)), this, SLOT(_updateSpeed(UASInterface*, double, double, quint64))); + connect(uas, SIGNAL(altitudeChanged (UASInterface*, double, double, double, double, quint64)), this, SLOT(_updateAltitude(UASInterface*, double, double, double, double, quint64))); + connect(uas, SIGNAL(navigationControllerErrorsChanged (UASInterface*, double, double, double)), this, SLOT(_updateNavigationControllerErrors(UASInterface*, double, double, double))); + connect(uas, &UASInterface::NavigationControllerDataChanged, this, &QGCFlightDisplay::_updateNavigationControllerData); + // Set new UAS + _mav = uas; + } + emit mavPresentChanged(); +} + +void QGCFlightDisplay::_updateAttitude(UASInterface*, double roll, double pitch, double yaw, quint64) +{ + if (isinf(roll)) { + _roll = std::numeric_limits::quiet_NaN(); + } else { + float rolldeg = _oneDecimal(roll * (180.0 / M_PI)); + if (fabs(roll - rolldeg) > 1.0) { + _roll = rolldeg; + if(_refreshTimer->isActive()) { + emit rollChanged(); + } + } + if(_roll != rolldeg) { + _roll = rolldeg; + _addChange(ROLL_CHANGED); + } + } + if (isinf(pitch)) { + _pitch = std::numeric_limits::quiet_NaN(); + } else { + float pitchdeg = _oneDecimal(pitch * (180.0 / M_PI)); + if (fabs(pitch - pitchdeg) > 1.0) { + _pitch = pitchdeg; + if(_refreshTimer->isActive()) { + emit pitchChanged(); + } + } + if(_pitch != pitchdeg) { + _pitch = pitchdeg; + _addChange(PITCH_CHANGED); + } + } + if (isinf(yaw)) { + _heading = std::numeric_limits::quiet_NaN(); + } else { + yaw = _oneDecimal(yaw * (180.0 / M_PI)); + if (yaw < 0) yaw += 360; + if (fabs(_heading - yaw) > 1.0) { + _heading = yaw; + if(_refreshTimer->isActive()) { + emit headingChanged(); + } + } + if(_heading != yaw) { + _heading = yaw; + _addChange(HEADING_CHANGED); + } + } +} + +void QGCFlightDisplay::_updateAttitude(UASInterface* uas, int, double roll, double pitch, double yaw, quint64 timestamp) +{ + _updateAttitude(uas, roll, pitch, yaw, timestamp); +} + +void QGCFlightDisplay::_updateSpeed(UASInterface*, double groundSpeed, double airSpeed, quint64) +{ + groundSpeed = _oneDecimal(groundSpeed); + if (fabs(_groundSpeed - groundSpeed) > 0.5) { + _groundSpeed = groundSpeed; + if(_refreshTimer->isActive()) { + emit groundSpeedChanged(); + } + } + airSpeed = _oneDecimal(airSpeed); + if (fabs(_airSpeed - airSpeed) > 1.0) { + _airSpeed = airSpeed; + if(_refreshTimer->isActive()) { + emit airSpeedChanged(); + } + } + if(_groundSpeed != groundSpeed) { + _groundSpeed = groundSpeed; + _addChange(GROUNDSPEED_CHANGED); + } + if(_airSpeed != airSpeed) { + _airSpeed = airSpeed; + _addChange(AIRSPEED_CHANGED); + } +} + +void QGCFlightDisplay::_updateAltitude(UASInterface*, double altitudeAMSL, double altitudeWGS84, double altitudeRelative, double climbRate, quint64) { + altitudeAMSL = _oneDecimal(altitudeAMSL); + if (fabs(_altitudeAMSL - altitudeAMSL) > 0.5) { + _altitudeAMSL = altitudeAMSL; + if(_refreshTimer->isActive()) { + emit altitudeAMSLChanged(); + } + } + altitudeWGS84 = _oneDecimal(altitudeWGS84); + if (fabs(_altitudeWGS84 - altitudeWGS84) > 0.5) { + _altitudeWGS84 = altitudeWGS84; + if(_refreshTimer->isActive()) { + emit altitudeWGS84Changed(); + } + } + altitudeRelative = _oneDecimal(altitudeRelative); + if (fabs(_altitudeRelative - altitudeRelative) > 0.5) { + _altitudeRelative = altitudeRelative; + if(_refreshTimer->isActive()) { + emit altitudeRelativeChanged(); + } + } + climbRate = _oneDecimal(climbRate); + if (fabs(_climbRate - climbRate) > 0.5) { + _climbRate = climbRate; + if(_refreshTimer->isActive()) { + emit climbRateChanged(); + } + } + if(_altitudeAMSL != altitudeAMSL) { + _altitudeAMSL = altitudeAMSL; + _addChange(ALTITUDEAMSL_CHANGED); + } + if(_altitudeWGS84 != altitudeWGS84) { + _altitudeWGS84 = altitudeWGS84; + _addChange(ALTITUDEWGS84_CHANGED); + } + if(_altitudeRelative != altitudeRelative) { + _altitudeRelative = altitudeRelative; + _addChange(ALTITUDERELATIVE_CHANGED); + } + if(_climbRate != climbRate) { + _climbRate = climbRate; + _addChange(CLIMBRATE_CHANGED); + } +} + +void QGCFlightDisplay::_updateNavigationControllerErrors(UASInterface*, double altitudeError, double speedError, double xtrackError) { + _navigationAltitudeError = altitudeError; + _navigationSpeedError = speedError; + _navigationCrosstrackError = xtrackError; +} + +void QGCFlightDisplay::_updateNavigationControllerData(UASInterface *uas, float, float, float, float targetBearing, float) { + if (_mav == uas) { + _navigationTargetBearing = targetBearing; + } +} + +/* + * Internal + */ + +bool QGCFlightDisplay::_isAirplane() { + if (_mav) + return _mav->isAirplane(); + return false; +} + +// TODO: Implement. Should return true when navigating. +// That would be (PX4) in AUTO and RTL modes. +// This could forward to a virtual on UAS bool isNavigatingAutonomusly() or whatever. +bool QGCFlightDisplay::_shouldDisplayNavigationData() { + return true; +} + +void QGCFlightDisplay::showEvent(QShowEvent* event) +{ + // Enable updates + QWidget::showEvent(event); + _refreshTimer->start(UPDATE_TIMER); +} + +void QGCFlightDisplay::hideEvent(QHideEvent* event) +{ + // Disable updates + _refreshTimer->stop(); + QWidget::hideEvent(event); +} + +void QGCFlightDisplay::_addChange(int id) +{ + if(!_changes.contains(id)) { + _changes.append(id); + } +} + +float QGCFlightDisplay::_oneDecimal(float value) +{ + int i = (value * 10); + return (float)i / 10.0; +} + +void QGCFlightDisplay::_checkUpdate() +{ + // Update current location + if(_mav) { + if(_latitude != _mav->getLatitude()) { + _latitude = _mav->getLatitude(); + emit latitudeChanged(); + } + if(_longitude != _mav->getLongitude()) { + _longitude = _mav->getLongitude(); + emit longitudeChanged(); + } + } + // Check for changes + // Significant changes, that is, whole number changes, are updated immediatelly. + // For every message however, we set a flag for what changed and this timer updates + // them to bring everything up-to-date. This prevents an avalanche of UI updates. + foreach(int i, _changes) { + switch (i) { + case ROLL_CHANGED: + emit rollChanged(); + break; + case PITCH_CHANGED: + emit pitchChanged(); + break; + case HEADING_CHANGED: + emit headingChanged(); + break; + case GROUNDSPEED_CHANGED: + emit groundSpeedChanged(); + break; + case AIRSPEED_CHANGED: + emit airSpeedChanged(); + break; + case CLIMBRATE_CHANGED: + emit climbRateChanged(); + break; + case ALTITUDERELATIVE_CHANGED: + emit altitudeRelativeChanged(); + break; + case ALTITUDEWGS84_CHANGED: + emit altitudeWGS84Changed(); + break; + case ALTITUDEAMSL_CHANGED: + emit altitudeAMSLChanged(); + break; + default: + break; + } + } + _changes.clear(); +} + diff --git a/src/ui/flightdisplay/QGCFlightDisplay.h b/src/ui/flightdisplay/QGCFlightDisplay.h new file mode 100644 index 0000000000000000000000000000000000000000..41103c6fe316e458077bb8fc4aad2dfa0233b811 --- /dev/null +++ b/src/ui/flightdisplay/QGCFlightDisplay.h @@ -0,0 +1,160 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Main Flight Display + * @author Gus Grubba + */ + +#ifndef QGCFLIGHTDISPLAY_H +#define QGCFLIGHTDISPLAY_H + +#include "QGCQmlWidgetHolder.h" + +class UASInterface; + +class QGCFlightDisplay : public QGCQmlWidgetHolder +{ + Q_OBJECT +public: + QGCFlightDisplay(QWidget* parent = NULL); + ~QGCFlightDisplay(); + + enum { + ROLL_CHANGED, + PITCH_CHANGED, + HEADING_CHANGED, + GROUNDSPEED_CHANGED, + AIRSPEED_CHANGED, + CLIMBRATE_CHANGED, + ALTITUDERELATIVE_CHANGED, + ALTITUDEWGS84_CHANGED, + ALTITUDEAMSL_CHANGED + }; + + /// @brief Invokes the Flight Display Options menu + void showOptionsMenu() { emit showOptionsMenuChanged(); } + + Q_PROPERTY(float roll READ roll NOTIFY rollChanged) + Q_PROPERTY(float pitch READ pitch NOTIFY pitchChanged) + Q_PROPERTY(float heading READ heading NOTIFY headingChanged) + Q_PROPERTY(float groundSpeed READ groundSpeed NOTIFY groundSpeedChanged) + Q_PROPERTY(float airSpeed READ airSpeed NOTIFY airSpeedChanged) + Q_PROPERTY(float climbRate READ climbRate NOTIFY climbRateChanged) + Q_PROPERTY(float altitudeRelative READ altitudeRelative NOTIFY altitudeRelativeChanged) + Q_PROPERTY(float altitudeWGS84 READ altitudeWGS84 NOTIFY altitudeWGS84Changed) + Q_PROPERTY(float altitudeAMSL READ altitudeAMSL NOTIFY altitudeAMSLChanged) + Q_PROPERTY(bool repaintRequested READ repaintRequested NOTIFY repaintRequestedChanged) + Q_PROPERTY(float latitude READ latitude NOTIFY latitudeChanged) + Q_PROPERTY(float longitude READ longitude NOTIFY longitudeChanged) + Q_PROPERTY(bool mavPresent READ mavPresent NOTIFY mavPresentChanged) + + Q_INVOKABLE void saveSetting (const QString &key, const QString& value); + Q_INVOKABLE QString loadSetting (const QString &key, const QString& defaultValue); + + float roll () { return _roll; } + float pitch () { return _pitch; } + float heading () { return _heading; } + float groundSpeed () { return _groundSpeed; } + float airSpeed () { return _airSpeed; } + float climbRate () { return _climbRate; } + float altitudeRelative () { return _altitudeRelative; } + float altitudeWGS84 () { return _altitudeWGS84; } + float altitudeAMSL () { return _altitudeAMSL; } + float latitude () { return _latitude; } + float longitude () { return _longitude; } + bool repaintRequested () { return true; } + bool mavPresent () { return _mav != NULL; } + + /** @brief Start updating widget */ + void showEvent(QShowEvent* event); + /** @brief Stop updating widget */ + void hideEvent(QHideEvent* event); + +signals: + void rollChanged (); + void pitchChanged (); + void headingChanged (); + void groundSpeedChanged (); + void airSpeedChanged (); + void climbRateChanged (); + void altitudeRelativeChanged(); + void altitudeWGS84Changed (); + void altitudeAMSLChanged (); + void repaintRequestedChanged(); + void latitudeChanged (); + void longitudeChanged (); + void mavPresentChanged (); + void showOptionsMenuChanged (); + +private slots: + /** @brief Attitude from main autopilot / system state */ + void _updateAttitude (UASInterface* uas, double roll, double pitch, double yaw, quint64 timestamp); + /** @brief Attitude from one specific component / redundant autopilot */ + void _updateAttitude (UASInterface* uas, int component, double roll, double pitch, double yaw, quint64 timestamp); + /** @brief Speed */ + void _updateSpeed (UASInterface* uas, double _groundSpeed, double _airSpeed, quint64 timestamp); + /** @brief Altitude */ + void _updateAltitude (UASInterface* uas, double _altitudeAMSL, double _altitudeWGS84, double _altitudeRelative, double _climbRate, quint64 timestamp); + void _updateNavigationControllerErrors (UASInterface* uas, double altitudeError, double speedError, double xtrackError); + void _updateNavigationControllerData (UASInterface *uas, float navRoll, float navPitch, float navBearing, float targetBearing, float targetDistance); + void _forgetUAS (UASInterface* uas); + void _setActiveUAS (UASInterface* uas); + void _checkUpdate (); + +private: + bool _isAirplane (); + bool _shouldDisplayNavigationData (); + void _addChange (int id); + float _oneDecimal (float value); + +private: + UASInterface* _mav; + + float _roll; + float _pitch; + float _heading; + + float _altitudeAMSL; + float _altitudeWGS84; + float _altitudeRelative; + + float _groundSpeed; + float _airSpeed; + float _climbRate; + + float _navigationAltitudeError; + float _navigationSpeedError; + float _navigationCrosstrackError; + float _navigationTargetBearing; + + float _latitude; + float _longitude; + + QTimer* _refreshTimer; + QList _changes; +}; + + +#endif // QGCFLIGHTDISPLAY_H diff --git a/src/ui/linechart/LinechartWidget.cc b/src/ui/linechart/LinechartWidget.cc index 6992f1cc2031aab31804804607649b03cb28f59b..ab6291f3b884917717c05e6e3d9443398835752e 100644 --- a/src/ui/linechart/LinechartWidget.cc +++ b/src/ui/linechart/LinechartWidget.cc @@ -351,11 +351,15 @@ void LinechartWidget::appendData(int uasId, const QString& curve, const QString& { lastTimestamp = usec; } else if (usec != 0) { - // Difference larger than 5 secs, enforce ground time - if (((qint64)usec - (qint64)lastTimestamp) > 5000) + // Difference larger than 3 secs, enforce ground time + if (((qint64)usec - (qint64)lastTimestamp) > 3000) { autoGroundTimeSet = true; - if (activePlot) activePlot->groundTime(); + // Tick ground time checkbox, but avoid state switching + timeButton->blockSignals(true); + timeButton->setChecked(true); + timeButton->blockSignals(false); + if (activePlot) activePlot->enforceGroundTime(true); } } diff --git a/src/ui/map/Waypoint2DIcon.cc b/src/ui/map/Waypoint2DIcon.cc index 9a776439ce5001cb72ccb62efddfd772350bb7f7..50204777b10f5dfa498145e2b721262eb1840845 100644 --- a/src/ui/map/Waypoint2DIcon.cc +++ b/src/ui/map/Waypoint2DIcon.cc @@ -307,7 +307,7 @@ void Waypoint2DIcon::paint(QPainter *painter, const QStyleOptionGraphicsItem *op penDash.setWidth(1); //penDash.setStyle(Qt::DotLine); // A negative radius indicates counter-clockwise rotation, but we still want to draw it positive - const int loiter = map->metersToPixels(fabsf(waypoint->getLoiterOrbit()), Coord()); + const int loiter = map->metersToPixels(fabs(waypoint->getLoiterOrbit()), Coord()); if (loiter > picture.width()/2) { painter->setPen(penBlack); diff --git a/src/ui/map3D/CameraParams.cc b/src/ui/map3D/CameraParams.cc deleted file mode 100644 index 8a569df3549e01e1e1cdb1d42d2ae958c06b55a4..0000000000000000000000000000000000000000 --- a/src/ui/map3D/CameraParams.cc +++ /dev/null @@ -1,58 +0,0 @@ -#include "CameraParams.h" - -CameraParams::CameraParams() - : mMinZoomRange(2.0f) - , mFov(30.0f) - , mMinClipRange(1.0f) - , mMaxClipRange(10000.0f) -{ - -} - -float& -CameraParams::minZoomRange(void) -{ - return mMinZoomRange; -} - -float -CameraParams::minZoomRange(void) const -{ - return mMinZoomRange; -} - -float& -CameraParams::fov(void) -{ - return mFov; -} - -float -CameraParams::fov(void) const -{ - return mFov; -} - -float& -CameraParams::minClipRange(void) -{ - return mMinClipRange; -} - -float -CameraParams::minClipRange(void) const -{ - return mMinClipRange; -} - -float& -CameraParams::maxClipRange(void) -{ - return mMaxClipRange; -} - -float -CameraParams::maxClipRange(void) const -{ - return mMaxClipRange; -} diff --git a/src/ui/map3D/CameraParams.h b/src/ui/map3D/CameraParams.h deleted file mode 100644 index 51b749da91ece820996b66d33d47f83a65ad7608..0000000000000000000000000000000000000000 --- a/src/ui/map3D/CameraParams.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef CAMERAPARAMS_H -#define CAMERAPARAMS_H - -class CameraParams -{ -public: - CameraParams(); - - float& minZoomRange(void); - float minZoomRange(void) const; - - float& fov(void); - float fov(void) const; - - float& minClipRange(void); - float minClipRange(void) const; - - float& maxClipRange(void); - float maxClipRange(void) const; - -private: - float mMinZoomRange; - float mFov; - float mMinClipRange; - float mMaxClipRange; -}; - -#endif // CAMERAPARAMS_H diff --git a/src/ui/map3D/GCManipulator.cc b/src/ui/map3D/GCManipulator.cc deleted file mode 100644 index a224bfe6c48ae3927dfaba60e41d9f02dc549588..0000000000000000000000000000000000000000 --- a/src/ui/map3D/GCManipulator.cc +++ /dev/null @@ -1,276 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class GCManipulator. - * - * @author Lionel Heng - * - */ - -#include "GCManipulator.h" -#include - -GCManipulator::GCManipulator() -{ - _moveSensitivity = 0.05; - _zoomSensitivity = 1.0; - _minZoomRange = 2.0; -} - -void -GCManipulator::setMinZoomRange(double minZoomRange) -{ - _minZoomRange = minZoomRange; -} - -void -GCManipulator::move(double dx, double dy, double dz) -{ - _center += osg::Vec3d(dx, dy, dz); -} - -bool -GCManipulator::handle(const osgGA::GUIEventAdapter& ea, - osgGA::GUIActionAdapter& us) -{ - using namespace osgGA; - - switch (ea.getEventType()) { - case GUIEventAdapter::PUSH: { - flushMouseEventStack(); - addMouseEvent(ea); - if (calcMovement()) { - us.requestRedraw(); - } - us.requestContinuousUpdate(false); - _thrown = false; - return true; - } - - case GUIEventAdapter::RELEASE: { - if (ea.getButtonMask() == 0) { - if (isMouseMoving()) { - if (calcMovement()) { - us.requestRedraw(); - us.requestContinuousUpdate(false); - _thrown = false; - } - } else { - flushMouseEventStack(); - addMouseEvent(ea); - if (calcMovement()) { - us.requestRedraw(); - } - us.requestContinuousUpdate(false); - _thrown = false; - } - - } else { - flushMouseEventStack(); - addMouseEvent(ea); - if (calcMovement()) { - us.requestRedraw(); - } - us.requestContinuousUpdate(false); - _thrown = false; - } - return true; - } - - case GUIEventAdapter::DRAG: { - addMouseEvent(ea); - if (calcMovement()) { - us.requestRedraw(); - } - us.requestContinuousUpdate(false); - _thrown = false; - return true; - } - - case GUIEventAdapter::SCROLL: { - // zoom model - double scale = 1.0; - - if (ea.getScrollingMotion() == GUIEventAdapter::SCROLL_UP) { - scale -= _zoomSensitivity * 0.1; - } else { - scale += _zoomSensitivity * 0.1; - } - if (_distance * scale > _minZoomRange) { - - _distance *= scale; - - } - - return true; - } - - case GUIEventAdapter::KEYDOWN: - // pan model - switch (ea.getKey()) { - case GUIEventAdapter::KEY_Space: { - flushMouseEventStack(); - _thrown = false; - home(ea,us); - us.requestRedraw(); - us.requestContinuousUpdate(false); - return true; - } - case GUIEventAdapter::KEY_Left: { - double scale = -_moveSensitivity * _distance; - - osg::Matrix rotation_matrix; - rotation_matrix.makeRotate(_rotation); - - osg::Vec3d dv(scale, 0.0, 0.0); - - _center += dv * rotation_matrix; - - return true; - } - case GUIEventAdapter::KEY_Right: { - double scale = _moveSensitivity * _distance; - - osg::Matrix rotation_matrix; - rotation_matrix.makeRotate(_rotation); - - osg::Vec3d dv(scale, 0.0, 0.0); - - _center += dv * rotation_matrix; - - return true; - } - case GUIEventAdapter::KEY_Up: { - double scale = _moveSensitivity * _distance; - - osg::Matrix rotation_matrix; - rotation_matrix.makeRotate(_rotation); - - osg::Vec3d dv(0.0, scale, 0.0); - - _center += dv * rotation_matrix; - - return true; - } - case GUIEventAdapter::KEY_Down: { - double scale = -_moveSensitivity * _distance; - - osg::Matrix rotation_matrix; - rotation_matrix.makeRotate(_rotation); - - osg::Vec3d dv(0.0, scale, 0.0); - - _center += dv * rotation_matrix; - - return true; - } - return false; - } - - case GUIEventAdapter::FRAME: - if (_thrown) { - if (calcMovement()) { - us.requestRedraw(); - } - } - return false; - - default: - return false; - } -} - - -bool -GCManipulator::calcMovement(void) -{ - using namespace osgGA; - - // return if less then two events have been added. - if (_ga_t0.get() == NULL || _ga_t1.get() == NULL) { - return false; - } - - double dx = _ga_t0->getXnormalized() - _ga_t1->getXnormalized(); - double dy = _ga_t0->getYnormalized() - _ga_t1->getYnormalized(); - - // return if there is no movement. - if (dx == 0.0 && dy == 0.0) { - return false; - } - - unsigned int buttonMask = _ga_t1->getButtonMask(); - if (buttonMask == GUIEventAdapter::LEFT_MOUSE_BUTTON) { - // rotate camera -#if ((OPENSCENEGRAPH_MAJOR_VERSION == 2) & (OPENSCENEGRAPH_MINOR_VERSION > 8)) | (OPENSCENEGRAPH_MAJOR_VERSION > 2) - osg::Vec3d axis; -#else - osg::Vec3 axis; -#endif - float angle; - - float px0 = _ga_t0->getXnormalized(); - float py0 = _ga_t0->getYnormalized(); - - float px1 = _ga_t1->getXnormalized(); - float py1 = _ga_t1->getYnormalized(); - - trackball(axis, angle, px1, py1, px0, py0); - - osg::Quat new_rotate; - new_rotate.makeRotate(angle, axis); - - _rotation = _rotation * new_rotate; - - return true; - - } else if (buttonMask == GUIEventAdapter::MIDDLE_MOUSE_BUTTON || - buttonMask == (GUIEventAdapter::LEFT_MOUSE_BUTTON | - GUIEventAdapter::RIGHT_MOUSE_BUTTON)) { - // pan model - double scale = -_moveSensitivity * _distance; - - osg::Matrix rotation_matrix; - rotation_matrix.makeRotate(_rotation); - - osg::Vec3d dv(dx * scale, dy * scale, 0.0); - - _center += dv * rotation_matrix; - - return true; - - } else if (buttonMask == GUIEventAdapter::RIGHT_MOUSE_BUTTON) { - // zoom model - double scale = 1.0 + dy * _zoomSensitivity; - if (_distance * scale > _minZoomRange) { - - _distance *= scale; - - } - return true; - } - - return false; -} diff --git a/src/ui/map3D/GCManipulator.h b/src/ui/map3D/GCManipulator.h deleted file mode 100644 index e8291abfd85cfdb34c647170cc3843d0876872f9..0000000000000000000000000000000000000000 --- a/src/ui/map3D/GCManipulator.h +++ /dev/null @@ -1,61 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class GCManipulator. - * - * @author Lionel Heng - * - */ - -#ifndef GCMANIPULATOR_H -#define GCMANIPULATOR_H - -#include - -class GCManipulator : public osgGA::TrackballManipulator -{ -public: - GCManipulator(); - - void setMinZoomRange(double minZoomRange); - - virtual void move(double dx, double dy, double dz); - - /** - * @brief Handle events. - * @return True if event is handled; false otherwise. - */ - virtual bool handle(const osgGA::GUIEventAdapter& ea, - osgGA::GUIActionAdapter& us); - -protected: - bool calcMovement(void); - - double _moveSensitivity; - double _zoomSensitivity; - double _minZoomRange; -}; - -#endif // GCMANIPULATOR_H diff --git a/src/ui/map3D/GLOverlayGeode.cc b/src/ui/map3D/GLOverlayGeode.cc deleted file mode 100644 index c2be6e2f651a72078a339d99b7494f88274bc275..0000000000000000000000000000000000000000 --- a/src/ui/map3D/GLOverlayGeode.cc +++ /dev/null @@ -1,435 +0,0 @@ -#include "GLOverlayGeode.h" - -GLOverlayGeode::GLOverlayGeode() - : mDrawable(new GLOverlayDrawable) - , mMessageTimestamp(0.0) -{ - setCullingActive(false); - - addDrawable(mDrawable); -} - -void -GLOverlayGeode::setOverlay(px::GLOverlay &overlay) -{ - mDrawable->setOverlay(overlay); - mCoordinateFrameType = overlay.coordinateframetype(); - - dirtyBound(); -} - -px::GLOverlay::CoordinateFrameType -GLOverlayGeode::coordinateFrameType(void) const -{ - return mCoordinateFrameType; -} - -void -GLOverlayGeode::setMessageTimestamp(qreal timestamp) -{ - mMessageTimestamp = timestamp; -} - -qreal -GLOverlayGeode::messageTimestamp(void) const -{ - return mMessageTimestamp; -} - -GLOverlayGeode::GLOverlayDrawable::GLOverlayDrawable() -{ - setUseDisplayList(false); - setUseVertexBufferObjects(true); -} - -GLOverlayGeode::GLOverlayDrawable::GLOverlayDrawable(const GLOverlayDrawable& drawable, - const osg::CopyOp& copyop) - : osg::Drawable(drawable,copyop) -{ - setUseDisplayList(false); - setUseVertexBufferObjects(true); -} - -void -GLOverlayGeode::GLOverlayDrawable::setOverlay(px::GLOverlay &overlay) -{ - if (!overlay.IsInitialized()) - { - return; - } - - mOverlay = overlay; - - mBBox.init(); - - const std::string& data = mOverlay.data(); - - for (size_t i = 0; i < data.size(); ++i) - { - switch (data.at(i)) { - case px::GLOverlay::POINTS: - break; - case px::GLOverlay::LINES: - break; - case px::GLOverlay::LINE_STRIP: - break; - case px::GLOverlay::LINE_LOOP: - break; - case px::GLOverlay::TRIANGLES: - break; - case px::GLOverlay::TRIANGLE_STRIP: - break; - case px::GLOverlay::TRIANGLE_FAN: - break; - case px::GLOverlay::QUADS: - break; - case px::GLOverlay::QUAD_STRIP: - break; - case px::GLOverlay::POLYGON: - break; - case px::GLOverlay::WIRE_CIRCLE: - i += sizeof(float) * 4; - break; - case px::GLOverlay::SOLID_CIRCLE: - i += sizeof(float) * 4; - break; - case px::GLOverlay::SOLID_CUBE: - i += sizeof(float) * 5; - break; - case px::GLOverlay::WIRE_CUBE: - i += sizeof(float) * 5; - break; - case px::GLOverlay::END: - break; - case px::GLOverlay::VERTEX2F: - i += sizeof(float) * 2; - break; - case px::GLOverlay::VERTEX3F: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - - mBBox.expandBy(x, y, z); - } - break; - case px::GLOverlay::ROTATEF: - i += sizeof(float) * 4; - break; - case px::GLOverlay::TRANSLATEF: - i += sizeof(float) * 3; - break; - case px::GLOverlay::SCALEF: - i += sizeof(float) * 3; - break; - case px::GLOverlay::PUSH_MATRIX: - break; - case px::GLOverlay::POP_MATRIX: - break; - case px::GLOverlay::COLOR3F: - i += sizeof(float) * 3; - break; - case px::GLOverlay::COLOR4F: - i += sizeof(float) * 4; - break; - case px::GLOverlay::POINTSIZE: - i += sizeof(float); - break; - case px::GLOverlay::LINEWIDTH: - i += sizeof(float); - break; - } - } -} - -void -GLOverlayGeode::GLOverlayDrawable::drawImplementation(osg::RenderInfo&) const -{ - if (!mOverlay.IsInitialized()) - { - return; - } - - glMatrixMode(GL_MODELVIEW); - glDisable(GL_LIGHTING); - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glPushMatrix(); - - glScalef(-1.0f, 1.0f, -1.0f); - glRotatef(90.0f, 0.0f, 0.0f, 1.0f); - - const std::string& data = mOverlay.data(); - - for (size_t i = 0; i < data.size(); ++i) - { - switch (data.at(i)) { - case px::GLOverlay::POINTS: - glBegin(GL_POINTS); - break; - case px::GLOverlay::LINES: - glBegin(GL_LINES); - break; - case px::GLOverlay::LINE_STRIP: - glBegin(GL_LINE_STRIP); - break; - case px::GLOverlay::LINE_LOOP: - glBegin(GL_LINE_LOOP); - break; - case px::GLOverlay::TRIANGLES: - glBegin(GL_TRIANGLES); - break; - case px::GLOverlay::TRIANGLE_STRIP: - glBegin(GL_TRIANGLE_STRIP); - break; - case px::GLOverlay::TRIANGLE_FAN: - glBegin(GL_TRIANGLE_FAN); - break; - case px::GLOverlay::QUADS: - glBegin(GL_QUADS); - break; - case px::GLOverlay::QUAD_STRIP: - glBegin(GL_QUAD_STRIP); - break; - case px::GLOverlay::POLYGON: - glBegin(GL_POLYGON); - break; - case px::GLOverlay::WIRE_CIRCLE: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - float r = getFloatValue(data, i); - - glBegin(GL_LINE_LOOP); - for (int i = 0; i < 20; i++) - { - float angle = i / 20.0f * M_PI * 2.0f; - glVertex3f(x + r * cosf(angle), y + r * sinf(angle), z); - } - glEnd(); - } - break; - case px::GLOverlay::SOLID_CIRCLE: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - float r = getFloatValue(data, i); - - glBegin(GL_POLYGON); - for (int i = 0; i < 20; i++) - { - float angle = i / 20.0f * M_PI * 2.0f; - glVertex3f(x + r * cosf(angle), y + r * sinf(angle), z); - } - glEnd(); - } - break; - case px::GLOverlay::SOLID_CUBE: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - float w = getFloatValue(data, i); - float h = getFloatValue(data, i); - - float w_2 = w / 2.0f; - float h_2 = h / 2.0f; - glBegin(GL_QUADS); - // face 1 - glNormal3f(1.0f, 0.0f, 0.0f); - glVertex3f(x + w_2, y - w_2, z + h_2); - glVertex3f(x + w_2, y - w_2, z - h_2); - glVertex3f(x + w_2, y + w_2, z - h_2); - glVertex3f(x + w_2, y + w_2, z + h_2); - // face 2 - glNormal3f(0.0f, 1.0f, 0.0f); - glVertex3f(x + w_2, y + w_2, z + h_2); - glVertex3f(x + w_2, y + w_2, z - h_2); - glVertex3f(x - w_2, y + w_2, z - h_2); - glVertex3f(x - w_2, y + w_2, z + h_2); - // face 3 - glNormal3f(0.0f, 0.0f, 1.0f); - glVertex3f(x + w_2, y + w_2, z + h_2); - glVertex3f(x - w_2, y + w_2, z + h_2); - glVertex3f(x - w_2, y - w_2, z + h_2); - glVertex3f(x + w_2, y - w_2, z + h_2); - // face 4 - glNormal3f(-1.0f, 0.0f, 0.0f); - glVertex3f(x - w_2, y - w_2, z + h_2); - glVertex3f(x - w_2, y + w_2, z + h_2); - glVertex3f(x - w_2, y + w_2, z - h_2); - glVertex3f(x - w_2, y - w_2, z - h_2); - // face 5 - glNormal3f(0.0f, -1.0f, 0.0f); - glVertex3f(x - w_2, y - w_2, z + h_2); - glVertex3f(x - w_2, y - w_2, z - h_2); - glVertex3f(x + w_2, y - w_2, z - h_2); - glVertex3f(x + w_2, y - w_2, z + h_2); - // face 6 - glNormal3f(0.0f, 0.0f, -1.0f); - glVertex3f(x - w_2, y - w_2, z - h_2); - glVertex3f(x - w_2, y + w_2, z - h_2); - glVertex3f(x + w_2, y + w_2, z - h_2); - glVertex3f(x + w_2, y - w_2, z - h_2); - - glEnd(); - } - break; - case px::GLOverlay::WIRE_CUBE: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - float w = getFloatValue(data, i); - float h = getFloatValue(data, i); - - float w_2 = w / 2.0f; - float h_2 = h / 2.0f; - // face 1 - glBegin(GL_LINE_LOOP); - glVertex3f(x + w_2, y - w_2, z + h_2); - glVertex3f(x + w_2, y - w_2, z - h_2); - glVertex3f(x + w_2, y + w_2, z - h_2); - glVertex3f(x + w_2, y + w_2, z + h_2); - glEnd(); - // face 2 - glBegin(GL_LINE_LOOP); - glVertex3f(x + w_2, y + w_2, z + h_2); - glVertex3f(x + w_2, y + w_2, z - h_2); - glVertex3f(x - w_2, y + w_2, z - h_2); - glVertex3f(x - w_2, y + w_2, z + h_2); - glEnd(); - // face 3 - glBegin(GL_LINE_LOOP); - glVertex3f(x + w_2, y + w_2, z + h_2); - glVertex3f(x - w_2, y + w_2, z + h_2); - glVertex3f(x - w_2, y - w_2, z + h_2); - glVertex3f(x + w_2, y - w_2, z + h_2); - glEnd(); - // face 4 - glBegin(GL_LINE_LOOP); - glVertex3f(x - w_2, y - w_2, z + h_2); - glVertex3f(x - w_2, y + w_2, z + h_2); - glVertex3f(x - w_2, y + w_2, z - h_2); - glVertex3f(x - w_2, y - w_2, z - h_2); - glEnd(); - // face 5 - glBegin(GL_LINE_LOOP); - glVertex3f(x - w_2, y - w_2, z + h_2); - glVertex3f(x - w_2, y - w_2, z - h_2); - glVertex3f(x + w_2, y - w_2, z - h_2); - glVertex3f(x + w_2, y - w_2, z + h_2); - glEnd(); - // face 6 - glBegin(GL_LINE_LOOP); - glVertex3f(x - w_2, y - w_2, z - h_2); - glVertex3f(x - w_2, y + w_2, z - h_2); - glVertex3f(x + w_2, y + w_2, z - h_2); - glVertex3f(x + w_2, y - w_2, z - h_2); - glEnd(); - } - break; - case px::GLOverlay::END: - glEnd(); - break; - case px::GLOverlay::VERTEX2F: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - glVertex2f(x, y); - } - break; - case px::GLOverlay::VERTEX3F: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - glVertex3f(x, y, z); - } - break; - case px::GLOverlay::ROTATEF: - { - float angle = getFloatValue(data, i); - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - glRotatef(angle, x, y, z); - } - break; - case px::GLOverlay::TRANSLATEF: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - glTranslatef(x, y, z); - } - break; - case px::GLOverlay::SCALEF: - { - float x = getFloatValue(data, i); - float y = getFloatValue(data, i); - float z = getFloatValue(data, i); - glScalef(x, y, z); - } - break; - case px::GLOverlay::PUSH_MATRIX: - glPushMatrix(); - break; - case px::GLOverlay::POP_MATRIX: - glPopMatrix(); - break; - case px::GLOverlay::COLOR3F: - { - float red = getFloatValue(data, i); - float green = getFloatValue(data, i); - float blue = getFloatValue(data, i); - glColor3f(red, green, blue); - } - break; - case px::GLOverlay::COLOR4F: - { - float red = getFloatValue(data, i); - float green = getFloatValue(data, i); - float blue = getFloatValue(data, i); - float alpha = getFloatValue(data, i); - glColor4f(red, green, blue, alpha); - } - break; - case px::GLOverlay::POINTSIZE: - glPointSize(getFloatValue(data, i)); - break; - case px::GLOverlay::LINEWIDTH: - glLineWidth(getFloatValue(data, i)); - break; - } - } - - glPopMatrix(); - glEnable(GL_LIGHTING); - glDisable(GL_BLEND); -} - -osg::BoundingBox -GLOverlayGeode::GLOverlayDrawable::computeBound() const -{ - return mBBox; -} - -float -GLOverlayGeode::GLOverlayDrawable::getFloatValue(const std::string& data, - size_t& mark) const -{ - char temp[4]; - for (int i = 0; i < 4; ++i) - { - ++mark; - temp[i] = data.at(mark); - } - - char *cp = &(temp[0]); - float *fp = reinterpret_cast(cp); - - return *fp; -} diff --git a/src/ui/map3D/GLOverlayGeode.h b/src/ui/map3D/GLOverlayGeode.h deleted file mode 100644 index d70227c8d9dbf9d0001d2116b60c5cdbbe741450..0000000000000000000000000000000000000000 --- a/src/ui/map3D/GLOverlayGeode.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef GLOVERLAYGEODE_H -#define GLOVERLAYGEODE_H - -#include -#include -#include - -class GLOverlayGeode : public osg::Geode -{ -public: - GLOverlayGeode(); - - void setOverlay(px::GLOverlay& overlay); - - px::GLOverlay::CoordinateFrameType coordinateFrameType(void) const; - - void setMessageTimestamp(qreal timestamp); - qreal messageTimestamp(void) const; - -private: - class GLOverlayDrawable : public osg::Drawable - { - public: - GLOverlayDrawable(); - - GLOverlayDrawable(const GLOverlayDrawable& drawable, - const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY); - - void setOverlay(px::GLOverlay& overlay); - - META_Object(GLOverlayDrawableApp, GLOverlayDrawable) - - virtual void drawImplementation(osg::RenderInfo&) const; - - virtual osg::BoundingBox computeBound() const; - - private: - float getFloatValue(const std::string& data, size_t& mark) const; - - px::GLOverlay mOverlay; - osg::BoundingBox mBBox; - }; - - osg::ref_ptr mDrawable; - px::GLOverlay::CoordinateFrameType mCoordinateFrameType; - qreal mMessageTimestamp; -}; - -#endif // GLOVERLAYGEODE_H diff --git a/src/ui/map3D/GlobalViewParams.cc b/src/ui/map3D/GlobalViewParams.cc deleted file mode 100644 index 12b1ea5130eafe1efc6d9e1307e0657a97c652e3..0000000000000000000000000000000000000000 --- a/src/ui/map3D/GlobalViewParams.cc +++ /dev/null @@ -1,189 +0,0 @@ -#include "GlobalViewParams.h" - -#include - -GlobalViewParams::GlobalViewParams() - : mDisplayTerrain(true) - , mDisplayWorldGrid(true) - , mImageryType(Imagery::BLANK_MAP) - , mFollowCameraId(-1) - , mFrame(MAV_FRAME_LOCAL_NED) -{ - -} - -bool& -GlobalViewParams::displayTerrain(void) -{ - return mDisplayTerrain; -} - -bool -GlobalViewParams::displayTerrain(void) const -{ - return mDisplayTerrain; -} - -bool& -GlobalViewParams::displayWorldGrid(void) -{ - return mDisplayWorldGrid; -} - -bool -GlobalViewParams::displayWorldGrid(void) const -{ - return mDisplayWorldGrid; -} - -QVector3D& -GlobalViewParams::imageryOffset(void) -{ - return mImageryOffset; -} - -QVector3D -GlobalViewParams::imageryOffset(void) const -{ - return mImageryOffset; -} - -QString& -GlobalViewParams::imageryPath(void) -{ - return mImageryPath; -} - -QString -GlobalViewParams::imageryPath(void) const -{ - return mImageryPath; -} - -Imagery::Type& -GlobalViewParams::imageryType(void) -{ - return mImageryType; -} - -Imagery::Type -GlobalViewParams::imageryType(void) const -{ - return mImageryType; -} - -int& -GlobalViewParams::followCameraId(void) -{ - return mFollowCameraId; -} - -int -GlobalViewParams::followCameraId(void) const -{ - return mFollowCameraId; -} - -MAV_FRAME& -GlobalViewParams::frame(void) -{ - return mFrame; -} - -MAV_FRAME -GlobalViewParams::frame(void) const -{ - return mFrame; -} - -void -GlobalViewParams::signalImageryParamsChanged(void) -{ - emit imageryParamsChanged(); -} - -QVector3D& -GlobalViewParams::terrainPositionOffset(void) -{ - return mTerrainPositionOffset; -} - -QVector3D -GlobalViewParams::terrainPositionOffset(void) const -{ - return mTerrainPositionOffset; -} - -QVector3D& -GlobalViewParams::terrainAttitudeOffset(void) -{ - return mTerrainAttitudeOffset; -} - -QVector3D -GlobalViewParams::terrainAttitudeOffset(void) const -{ - return mTerrainAttitudeOffset; -} - -void -GlobalViewParams::followCameraChanged(const QString& text) -{ - int followCameraId = -1; - - if (text.compare("None") == 0) - { - followCameraId = -1; - } - else - { - QStringList list = text.split(" ", QString::SkipEmptyParts); - - followCameraId = list.back().toInt(); - } - - if (followCameraId != mFollowCameraId) - { - mFollowCameraId = followCameraId; - emit followCameraChanged(mFollowCameraId); - } -} - -void -GlobalViewParams::frameChanged(const QString& text) -{ - if (text.compare("Global") == 0) - { - mFrame = MAV_FRAME_GLOBAL; - } - else if (text.compare("Local") == 0) - { - mFrame = MAV_FRAME_LOCAL_NED; - } -} - -void -GlobalViewParams::toggleWorldGrid(int state) -{ - if (state == Qt::Checked) - { - mDisplayWorldGrid = true; - } - else - { - mDisplayWorldGrid = false; - } -} - -void -GlobalViewParams::toggleTerrain(int state) -{ - if (state == Qt::Checked) - { - mDisplayTerrain = true; - } - else - { - mDisplayTerrain = false; - } -} diff --git a/src/ui/map3D/GlobalViewParams.h b/src/ui/map3D/GlobalViewParams.h deleted file mode 100644 index 62b8651cd40062d4ec7d61c9ee12337062602e43..0000000000000000000000000000000000000000 --- a/src/ui/map3D/GlobalViewParams.h +++ /dev/null @@ -1,71 +0,0 @@ -#ifndef GLOBALVIEWPARAMS_H -#define GLOBALVIEWPARAMS_H - -#include -#include -#include - -#include "QGCMAVLink.h" -#include "Imagery.h" - -class GlobalViewParams : public QObject -{ - Q_OBJECT - -public: - GlobalViewParams(); - - bool& displayTerrain(void); - bool displayTerrain(void) const; - - bool& displayWorldGrid(void); - bool displayWorldGrid(void) const; - - QVector3D& imageryOffset(void); - QVector3D imageryOffset(void) const; - - QString& imageryPath(void); - QString imageryPath(void) const; - - Imagery::Type& imageryType(void); - Imagery::Type imageryType(void) const; - - int& followCameraId(void); - int followCameraId(void) const; - - MAV_FRAME& frame(void); - MAV_FRAME frame(void) const; - - void signalImageryParamsChanged(void); - - QVector3D& terrainPositionOffset(void); - QVector3D terrainPositionOffset(void) const; - - QVector3D& terrainAttitudeOffset(void); - QVector3D terrainAttitudeOffset(void) const; - -public slots: - void followCameraChanged(const QString& text); - void frameChanged(const QString &text); - void toggleTerrain(int state); - void toggleWorldGrid(int state); - -signals: - void followCameraChanged(int systemId); - void imageryParamsChanged(void); - -private: - bool mDisplayTerrain; - bool mDisplayWorldGrid; - QVector3D mImageryOffset; - QString mImageryPath; - Imagery::Type mImageryType; - int mFollowCameraId; - MAV_FRAME mFrame; - QVector3D mTerrainPositionOffset; - QVector3D mTerrainAttitudeOffset; -}; - -typedef QSharedPointer GlobalViewParamsPtr; - -#endif // GLOBALVIEWPARAMS_H diff --git a/src/ui/map3D/HUDScaleGeode.cc b/src/ui/map3D/HUDScaleGeode.cc deleted file mode 100644 index 6ece68bc83fb02d584f7d3490f1a04f38f3f8864..0000000000000000000000000000000000000000 --- a/src/ui/map3D/HUDScaleGeode.cc +++ /dev/null @@ -1,122 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class HUDScaleGeode. - * - * @author Lionel Heng - * - */ - -#include "HUDScaleGeode.h" - -#include -#include - -HUDScaleGeode::HUDScaleGeode() -{ - -} - -void -HUDScaleGeode::init(osg::ref_ptr& font) -{ - osg::ref_ptr outlineVertices(new osg::Vec2Array); - outlineVertices->push_back(osg::Vec2(20.0f, 50.0f)); - outlineVertices->push_back(osg::Vec2(20.0f, 70.0f)); - outlineVertices->push_back(osg::Vec2(20.0f, 60.0f)); - outlineVertices->push_back(osg::Vec2(100.0f, 60.0f)); - outlineVertices->push_back(osg::Vec2(100.0f, 50.0f)); - outlineVertices->push_back(osg::Vec2(100.0f, 70.0f)); - - osg::ref_ptr outlineGeometry(new osg::Geometry); - outlineGeometry->setVertexArray(outlineVertices); - - osg::ref_ptr outlineColor(new osg::Vec4Array); - outlineColor->push_back(osg::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); - outlineGeometry->setColorArray(outlineColor); - outlineGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - outlineGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, - 0, 6)); - - osg::ref_ptr outlineWidth(new osg::LineWidth()); - outlineWidth->setWidth(4.0f); - outlineGeometry->getOrCreateStateSet()-> - setAttributeAndModes(outlineWidth, osg::StateAttribute::ON); - - addDrawable(outlineGeometry); - - osg::ref_ptr markerVertices(new osg::Vec2Array); - markerVertices->push_back(osg::Vec2(20.0f, 50.0f)); - markerVertices->push_back(osg::Vec2(20.0f, 70.0f)); - markerVertices->push_back(osg::Vec2(20.0f, 60.0f)); - markerVertices->push_back(osg::Vec2(100.0f, 60.0f)); - markerVertices->push_back(osg::Vec2(100.0f, 50.0f)); - markerVertices->push_back(osg::Vec2(100.0f, 70.0f)); - - osg::ref_ptr markerGeometry(new osg::Geometry); - markerGeometry->setVertexArray(markerVertices); - - osg::ref_ptr markerColor(new osg::Vec4Array); - markerColor->push_back(osg::Vec4(0.0f, 0.0f, 0.0f, 1.0f)); - markerGeometry->setColorArray(markerColor); - markerGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - markerGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, - 0, 6)); - - osg::ref_ptr markerWidth(new osg::LineWidth()); - markerWidth->setWidth(1.5f); - markerGeometry->getOrCreateStateSet()-> - setAttributeAndModes(markerWidth, osg::StateAttribute::ON); - - addDrawable(markerGeometry); - - text = new osgText::Text; - text->setCharacterSize(11); - text->setFont(font); - text->setAxisAlignment(osgText::Text::SCREEN); - text->setColor(osg::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); - text->setPosition(osg::Vec3(40.0f, 45.0f, -1.5f)); - - addDrawable(text); -} - -void -HUDScaleGeode::update(int windowHeight, float cameraFov, float cameraDistance, - bool darkBackground) -{ - float f = static_cast(windowHeight) / 2.0f - / tanf(cameraFov / 180.0f * M_PI / 2.0f); - float dist = cameraDistance / f * 80.0f; - - if (darkBackground) { - text->setColor(osg::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); - } else { - text->setColor(osg::Vec4(0.0f, 0.0f, 0.0f, 1.0f)); - } - - text->setText(QString("%1 m").arg(dist, 0, 'f', 2).toStdString()); -} diff --git a/src/ui/map3D/HUDScaleGeode.h b/src/ui/map3D/HUDScaleGeode.h deleted file mode 100644 index 0db2809113b37ebec9474143454e0dc0cb9f96b0..0000000000000000000000000000000000000000 --- a/src/ui/map3D/HUDScaleGeode.h +++ /dev/null @@ -1,52 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class HUDScaleGeode. - * - * @author Lionel Heng - * - */ - -#ifndef HUDSCALEGEODE_H -#define HUDSCALEGEODE_H - -#include -#include -#include - -class HUDScaleGeode : public osg::Geode -{ -public: - HUDScaleGeode(); - - void init(osg::ref_ptr& font); - void update(int windowHeight, float cameraFov, float cameraDistance, - bool darkBackground); - -private: - osg::ref_ptr text; -}; - -#endif // HUDSCALEGEODE_H diff --git a/src/ui/map3D/ImageWindowGeode.cc b/src/ui/map3D/ImageWindowGeode.cc deleted file mode 100644 index 66e60d375b1e2ed8879deca551b3f5b77b8f2246..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ImageWindowGeode.cc +++ /dev/null @@ -1,127 +0,0 @@ -///*===================================================================== -// -//QGroundControl Open Source Ground Control Station -// -//(c) 2009, 2010 QGROUNDCONTROL PROJECT -// -//This file is part of the QGROUNDCONTROL project -// -// QGROUNDCONTROL is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// QGROUNDCONTROL is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with QGROUNDCONTROL. If not, see . -// -//======================================================================*/ - -/** - * @file - * @brief Definition of the class ImageWindowGeode. - * - * @author Lionel Heng - * - */ - -#include "ImageWindowGeode.h" - -ImageWindowGeode::ImageWindowGeode() - : mBorder(5) - , mImage(new osg::Image) -{ - -} - -void -ImageWindowGeode::init(const QString& caption, const osg::Vec4& backgroundColor, - osg::ref_ptr& font) -{ - // image - osg::ref_ptr imageGeometry = new osg::Geometry; - mImageVertices = new osg::Vec3Array(4); - - osg::ref_ptr textureCoords = new osg::Vec2Array; - textureCoords->push_back(osg::Vec2(0.0f, 1.0f)); - textureCoords->push_back(osg::Vec2(1.0f, 1.0f)); - textureCoords->push_back(osg::Vec2(1.0f, 0.0f)); - textureCoords->push_back(osg::Vec2(0.0f, 0.0f)); - - osg::ref_ptr imageColors(new osg::Vec4Array); - imageColors->push_back(osg::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); - imageGeometry->setColorArray(imageColors); - imageGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - imageGeometry->setVertexArray(mImageVertices); - imageGeometry->setTexCoordArray(0, textureCoords); - - imageGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::POLYGON, - 0, mImageVertices->size())); - - osg::ref_ptr texture = new osg::Texture2D; - texture->setDataVariance(osg::Object::DYNAMIC); - texture->setImage(mImage); - texture->setResizeNonPowerOfTwoHint(false); - - imageGeometry->getOrCreateStateSet()-> - setTextureAttributeAndModes(0, texture, osg::StateAttribute::ON); - imageGeometry->setUseDisplayList(false); - - // background - osg::ref_ptr backgroundGeometry = new osg::Geometry; - mBackgroundVertices = new osg::Vec3Array(4); - backgroundGeometry->setVertexArray(mBackgroundVertices); - backgroundGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::POLYGON, - 0, mBackgroundVertices->size())); - osg::ref_ptr backgroundColors(new osg::Vec4Array); - backgroundColors->push_back(backgroundColor); - backgroundGeometry->setColorArray(backgroundColors); - backgroundGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - backgroundGeometry->setUseDisplayList(false); - - // caption - mText = new osgText::Text; - mText->setText(caption.toStdString().c_str()); - mText->setCharacterSize(11); - mText->setFont(font); - mText->setAxisAlignment(osgText::Text::SCREEN); - mText->setColor(osg::Vec4(1.0f, 1.0f, 1.0f, 1.0f)); - - addDrawable(imageGeometry); - addDrawable(backgroundGeometry); - addDrawable(mText); - - setAttributes(0, 0, 0, 0); -} - -void -ImageWindowGeode::setAttributes(int x, int y, int width, int height) -{ - int imageWidth = width - mBorder * 2; - int imageHeight = height - mBorder * 2 - 15; - int imageXPosition = x + mBorder; - int imageYPosition = y + mBorder; - - mImageVertices->at(0) = osg::Vec3(imageXPosition, imageYPosition, 0); - mImageVertices->at(1) = osg::Vec3(imageXPosition + imageWidth, imageYPosition, 0); - mImageVertices->at(2) = osg::Vec3(imageXPosition + imageWidth, imageYPosition + imageHeight, 0); - mImageVertices->at(3) = osg::Vec3(imageXPosition, imageYPosition + imageHeight, 0); - - mText->setPosition(osg::Vec3(imageXPosition, imageYPosition + imageHeight + 5, 0)); - - mBackgroundVertices->at(0) = osg::Vec3(x, y, -1); - mBackgroundVertices->at(1) = osg::Vec3(x + width, y, -1); - mBackgroundVertices->at(2) = osg::Vec3(x + width, y + height, -1); - mBackgroundVertices->at(3) = osg::Vec3(x, y + height, -1); -} - -osg::ref_ptr& -ImageWindowGeode::image(void) -{ - return mImage; -} diff --git a/src/ui/map3D/ImageWindowGeode.h b/src/ui/map3D/ImageWindowGeode.h deleted file mode 100644 index 1d48525d73abc0ddbcc39489a0568515a0f1bc5e..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ImageWindowGeode.h +++ /dev/null @@ -1,59 +0,0 @@ -///*===================================================================== -// -//QGroundControl Open Source Ground Control Station -// -//(c) 2009, 2010 QGROUNDCONTROL PROJECT -// -//This file is part of the QGROUNDCONTROL project -// -// QGROUNDCONTROL is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// QGROUNDCONTROL is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with QGROUNDCONTROL. If not, see . -// -//======================================================================*/ - -/** - * @file - * @brief Definition of the class ImageWindowGeode. - * - * @author Lionel Heng - * - */ - -#ifndef IMAGEWINDOWGEODE_H -#define IMAGEWINDOWGEODE_H - -#include -#include -#include -#include - -class ImageWindowGeode : public osg::Geode -{ -public: - ImageWindowGeode(); - void init(const QString& caption, const osg::Vec4& backgroundColor, - osg::ref_ptr& font); - - void setAttributes(int x, int y, int width, int height); - osg::ref_ptr& image(void); - -private: - int mBorder; - - osg::ref_ptr mImage; - osg::ref_ptr mImageVertices; - osg::ref_ptr mBackgroundVertices; - osg::ref_ptr mText; -}; - -#endif // IMAGEWINDOWGEODE_H diff --git a/src/ui/map3D/Imagery.cc b/src/ui/map3D/Imagery.cc deleted file mode 100644 index 872977af10f684896e82ca63b01cb4c80865a4e1..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Imagery.cc +++ /dev/null @@ -1,630 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Imagery. - * - * @author Lionel Heng - * - */ - -#include "Imagery.h" - -#include -#include -#include -#include - -const double WGS84_A = 6378137.0; -const double WGS84_ECCSQ = 0.00669437999013; - -const int MAX_ZOOM_LEVEL = 20; - -Imagery::Imagery() - : mTextureCache(new TextureCache(1000)) - , mImageryType(Imagery::BLANK_MAP) - , mXOffset(0.0) - , mYOffset(0.0) - , mZOffset(0.0) -{ - setCullingActive(false); -} - -Imagery::Type -Imagery::getImageryType(void) const -{ - return mImageryType; -} - -void -Imagery::setImageryType(Imagery::Type type) -{ - mImageryType = type; -} - -void -Imagery::setOffset(double xOffset, double yOffset, double zOffset) -{ - mXOffset = xOffset; - mYOffset = yOffset; - mZOffset = zOffset; -} - -void -Imagery::setPath(const QString &path) -{ - mImageryPath = path.toStdString(); -} - -void -Imagery::prefetch2D(double windowWidth, double windowHeight, - double zoom, double xOrigin, double yOrigin, - const QString& utmZone) -{ - if (mImageryType == BLANK_MAP) - { - return; - } - - double tileResolution = 1.0; - if (mImageryType == GOOGLE_SATELLITE || - mImageryType == GOOGLE_MAP) - { - tileResolution = 1.0; - while (tileResolution * 3.0 / 2.0 < 1.0 / zoom) - { - tileResolution *= 2.0; - } - if (tileResolution > 512.0) - { - tileResolution = 512.0; - } - } - else if (mImageryType == OFFLINE_SATELLITE) - { - tileResolution = 0.25; - } - - int minTileX, minTileY, maxTileX, maxTileY; - int zoomLevel; - - tileBounds(tileResolution, - xOrigin - windowWidth / 2.0 / zoom * 1.5, - yOrigin - windowHeight / 2.0 / zoom * 1.5, - xOrigin + windowWidth / 2.0 / zoom * 1.5, - yOrigin + windowHeight / 2.0 / zoom * 1.5, utmZone, - minTileX, minTileY, maxTileX, maxTileY, zoomLevel); - - for (int r = minTileY; r <= maxTileY; ++r) - { - for (int c = minTileX; c <= maxTileX; ++c) - { - QString url = getTileLocation(c, r, zoomLevel, tileResolution); - - TexturePtr t = mTextureCache->get(url); - } - } -} - -void -Imagery::draw2D(double windowWidth, double windowHeight, - double zoom, double xOrigin, double yOrigin, - const QString& utmZone) -{ - if (getNumDrawables() > 0) - { - removeDrawables(0, getNumDrawables()); - } - - if (mImageryType == BLANK_MAP) - { - return; - } - - double tileResolution = 1.0; - if (mImageryType == GOOGLE_SATELLITE || - mImageryType == GOOGLE_MAP) - { - tileResolution = 1.0; - while (tileResolution * 3.0 / 2.0 < 1.0 / zoom) - { - tileResolution *= 2.0; - } - if (tileResolution > 512.0) - { - tileResolution = 512.0; - } - } - else if (mImageryType == OFFLINE_SATELLITE) - { - tileResolution = 0.25; - } - - int minTileX, minTileY, maxTileX, maxTileY; - int zoomLevel; - - tileBounds(tileResolution, - xOrigin - windowWidth / 2.0 / zoom * 1.5, - yOrigin - windowHeight / 2.0 / zoom * 1.5, - xOrigin + windowWidth / 2.0 / zoom * 1.5, - yOrigin + windowHeight / 2.0 / zoom * 1.5, utmZone, - minTileX, minTileY, maxTileX, maxTileY, zoomLevel); - - for (int r = minTileY; r <= maxTileY; ++r) - { - for (int c = minTileX; c <= maxTileX; ++c) - { - QString tileURL = getTileLocation(c, r, zoomLevel, tileResolution); - - double x1, y1, x2, y2, x3, y3, x4, y4; - imageBounds(c, r, tileResolution, x1, y1, x2, y2, x3, y3, x4, y4); - - TexturePtr t = mTextureCache->get(tileURL); - if (!t.isNull()) - { - addDrawable(t->draw(y1, x1, - y2, x2, - y3, x3, - y4, x4, - - mZOffset, - true)); - } - } - } -} - -void -Imagery::prefetch3D(double radius, double tileResolution, - double xOrigin, double yOrigin, - const QString& utmZone) -{ - if (mImageryType == BLANK_MAP) - { - return; - } - - int minTileX, minTileY, maxTileX, maxTileY; - int zoomLevel; - - tileBounds(tileResolution, - xOrigin + mXOffset - radius, yOrigin + mYOffset - radius, - xOrigin + mXOffset + radius, yOrigin + mYOffset + radius, utmZone, - minTileX, minTileY, maxTileX, maxTileY, zoomLevel); - - for (int r = minTileY; r <= maxTileY; ++r) - { - for (int c = minTileX; c <= maxTileX; ++c) - { - QString url = getTileLocation(c, r, zoomLevel, tileResolution); - - TexturePtr t = mTextureCache->get(url); - } - } -} - -void -Imagery::draw3D(double radius, double tileResolution, - double xOrigin, double yOrigin, - double xOffset, double yOffset, - const QString& utmZone) -{ - if (getNumDrawables() > 0) - { - removeDrawables(0, getNumDrawables()); - } - - if (mImageryType == BLANK_MAP) - { - return; - } - - int minTileX, minTileY, maxTileX, maxTileY; - int zoomLevel; - - tileBounds(tileResolution, - xOrigin + mXOffset - radius, yOrigin + mYOffset - radius, - xOrigin + mXOffset + radius, yOrigin + mYOffset + radius, utmZone, - minTileX, minTileY, maxTileX, maxTileY, zoomLevel); - - for (int r = minTileY; r <= maxTileY; ++r) - { - for (int c = minTileX; c <= maxTileX; ++c) - { - QString tileURL = getTileLocation(c, r, zoomLevel, tileResolution); - - double x1, y1, x2, y2, x3, y3, x4, y4; - imageBounds(c, r, tileResolution, x1, y1, x2, y2, x3, y3, x4, y4); - - TexturePtr t = mTextureCache->get(tileURL); - - if (!t.isNull()) - { - addDrawable(t->draw(y1 - mYOffset + yOffset, x1 - mXOffset + xOffset, - y2 - mYOffset + yOffset, x2 - mXOffset + xOffset, - y3 - mYOffset + yOffset, x3 - mXOffset + xOffset, - y4 - mYOffset + yOffset, x4 - mXOffset + xOffset, - - mZOffset, - true)); - } - } - } -} - -bool -Imagery::update(void) -{ - mTextureCache->sync(); - - return true; -} - -void -Imagery::imageBounds(int tileX, int tileY, double tileResolution, - double& x1, double& y1, double& x2, double& y2, - double& x3, double& y3, double& x4, double& y4) const -{ - if (mImageryType == GOOGLE_MAP || - mImageryType == GOOGLE_SATELLITE) - { - int zoomLevel = MAX_ZOOM_LEVEL - static_cast(rint(log2(tileResolution))); - int numTiles = static_cast(exp2(static_cast(zoomLevel))); - - double lon1 = tileXToLongitude(tileX, numTiles); - double lon2 = tileXToLongitude(tileX + 1, numTiles); - - double lat1 = tileYToLatitude(tileY, numTiles); - double lat2 = tileYToLatitude(tileY + 1, numTiles); - - QString utmZone; - LLtoUTM(lat1, lon1, x1, y1, utmZone); - LLtoUTM(lat1, lon2, x2, y2, utmZone); - LLtoUTM(lat2, lon2, x3, y3, utmZone); - LLtoUTM(lat2, lon1, x4, y4, utmZone); - } - else if (mImageryType == OFFLINE_SATELLITE) - { - double utmMultiplier = tileResolution * 200.0; - double minX = tileX * utmMultiplier; - double maxX = minX + utmMultiplier; - double minY = tileY * utmMultiplier; - double maxY = minY + utmMultiplier; - - x1 = maxX; - y1 = minY; - x2 = maxX; - y2 = maxY; - x3 = minX; - y3 = maxY; - x4 = minX; - y4 = minY; - } -} - -void -Imagery::tileBounds(double tileResolution, - double minUtmX, double minUtmY, - double maxUtmX, double maxUtmY, const QString& utmZone, - int& minTileX, int& minTileY, - int& maxTileX, int& maxTileY, - int& zoomLevel) const -{ - double centerUtmX = (maxUtmX - minUtmX) / 2.0 + minUtmX; - double centerUtmY = (maxUtmY - minUtmY) / 2.0 + minUtmY; - int centerTileX, centerTileY; - - if (mImageryType == GOOGLE_MAP || - mImageryType == GOOGLE_SATELLITE) - { - UTMtoTile(minUtmX, minUtmY, utmZone, tileResolution, - minTileX, maxTileY, zoomLevel); - UTMtoTile(centerUtmX, centerUtmY, utmZone, tileResolution, - centerTileX, centerTileY, zoomLevel); - UTMtoTile(maxUtmX, maxUtmY, utmZone, tileResolution, - maxTileX, minTileY, zoomLevel); - } - else if (mImageryType == OFFLINE_SATELLITE) - { - double utmMultiplier = tileResolution * 200; - - minTileX = static_cast(rint(minUtmX / utmMultiplier)); - minTileY = static_cast(rint(minUtmY / utmMultiplier)); - centerTileX = static_cast(rint(centerUtmX / utmMultiplier)); - centerTileY = static_cast(rint(centerUtmY / utmMultiplier)); - maxTileX = static_cast(rint(maxUtmX / utmMultiplier)); - maxTileY = static_cast(rint(maxUtmY / utmMultiplier)); - } - - if (maxTileX - minTileX + 1 > 14) - { - minTileX = centerTileX - 7; - maxTileX = centerTileX + 6; - } - if (maxTileY - minTileY + 1 > 14) - { - minTileY = centerTileY - 7; - maxTileY = centerTileY + 6; - } -} - -double -Imagery::tileXToLongitude(int tileX, int numTiles) const -{ - return 360.0 * (static_cast(tileX) - / static_cast(numTiles)) - 180.0; -} - -double -Imagery::tileYToLatitude(int tileY, int numTiles) const -{ - double unnormalizedRad = - (static_cast(tileY) / static_cast(numTiles)) - * 2.0 * M_PI - M_PI; - double rad = 2.0 * atan(exp(unnormalizedRad)) - M_PI / 2.0; - return -rad * 180.0 / M_PI; -} - -int -Imagery::longitudeToTileX(double longitude, int numTiles) const -{ - return static_cast((longitude / 180.0 + 1.0) / 2.0 * numTiles); -} - -int -Imagery::latitudeToTileY(double latitude, int numTiles) const -{ - double rad = latitude * M_PI / 180.0; - double normalizedRad = -log(tan(rad) + 1.0 / cos(rad)); - return static_cast((normalizedRad + M_PI) - / (2.0 * M_PI) * numTiles); -} - -void -Imagery::UTMtoTile(double northing, double easting, const QString& utmZone, - double tileResolution, int& tileX, int& tileY, - int& zoomLevel) const -{ - double latitude, longitude; - - UTMtoLL(northing, easting, utmZone, latitude, longitude); - - zoomLevel = MAX_ZOOM_LEVEL - static_cast(rint(log2(tileResolution))); - int numTiles = static_cast(exp2(static_cast(zoomLevel))); - - tileX = longitudeToTileX(longitude, numTiles); - tileY = latitudeToTileY(latitude, numTiles); -} - -QChar -Imagery::UTMLetterDesignator(double latitude) -{ - // This routine determines the correct UTM letter designator for the given latitude - // returns 'Z' if latitude is outside the UTM limits of 84N to 80S - // Written by Chuck Gantz- chuck.gantz@globalstar.com - char letterDesignator; - - if ((84.0 >= latitude) && (latitude >= 72.0)) letterDesignator = 'X'; - else if ((72.0 > latitude) && (latitude >= 64.0)) letterDesignator = 'W'; - else if ((64.0 > latitude) && (latitude >= 56.0)) letterDesignator = 'V'; - else if ((56.0 > latitude) && (latitude >= 48.0)) letterDesignator = 'U'; - else if ((48.0 > latitude) && (latitude >= 40.0)) letterDesignator = 'T'; - else if ((40.0 > latitude) && (latitude >= 32.0)) letterDesignator = 'S'; - else if ((32.0 > latitude) && (latitude >= 24.0)) letterDesignator = 'R'; - else if ((24.0 > latitude) && (latitude >= 16.0)) letterDesignator = 'Q'; - else if ((16.0 > latitude) && (latitude >= 8.0)) letterDesignator = 'P'; - else if (( 8.0 > latitude) && (latitude >= 0.0)) letterDesignator = 'N'; - else if (( 0.0 > latitude) && (latitude >= -8.0)) letterDesignator = 'M'; - else if ((-8.0 > latitude) && (latitude >= -16.0)) letterDesignator = 'L'; - else if ((-16.0 > latitude) && (latitude >= -24.0)) letterDesignator = 'K'; - else if ((-24.0 > latitude) && (latitude >= -32.0)) letterDesignator = 'J'; - else if ((-32.0 > latitude) && (latitude >= -40.0)) letterDesignator = 'H'; - else if ((-40.0 > latitude) && (latitude >= -48.0)) letterDesignator = 'G'; - else if ((-48.0 > latitude) && (latitude >= -56.0)) letterDesignator = 'F'; - else if ((-56.0 > latitude) && (latitude >= -64.0)) letterDesignator = 'E'; - else if ((-64.0 > latitude) && (latitude >= -72.0)) letterDesignator = 'D'; - else if ((-72.0 > latitude) && (latitude >= -80.0)) letterDesignator = 'C'; - else letterDesignator = 'Z'; //This is here as an error flag to show that the Latitude is outside the UTM limits - - return letterDesignator; -} - -void -Imagery::LLtoUTM(double latitude, double longitude, - double& utmNorthing, double& utmEasting, - QString& utmZone) -{ - // converts lat/long to UTM coords. Equations from USGS Bulletin 1532 - // East Longitudes are positive, West longitudes are negative. - // North latitudes are positive, South latitudes are negative - // Lat and Long are in decimal degrees - // Written by Chuck Gantz- chuck.gantz@globalstar.com - - double k0 = 0.9996; - - double LongOrigin; - double eccPrimeSquared; - double N, T, C, A, M; - - double LatRad = latitude * M_PI / 180.0; - double LongRad = longitude * M_PI / 180.0; - double LongOriginRad; - - int ZoneNumber = static_cast((longitude + 180.0) / 6.0) + 1; - - if (latitude >= 56.0 && latitude < 64.0 && - longitude >= 3.0 && longitude < 12.0) { - ZoneNumber = 32; - } - - // Special zones for Svalbard - if (latitude >= 72.0 && latitude < 84.0) { - if ( longitude >= 0.0 && longitude < 9.0) ZoneNumber = 31; - else if (longitude >= 9.0 && longitude < 21.0) ZoneNumber = 33; - else if (longitude >= 21.0 && longitude < 33.0) ZoneNumber = 35; - else if (longitude >= 33.0 && longitude < 42.0) ZoneNumber = 37; - } - LongOrigin = static_cast((ZoneNumber - 1) * 6 - 180 + 3); //+3 puts origin in middle of zone - LongOriginRad = LongOrigin * M_PI / 180.0; - - // compute the UTM Zone from the latitude and longitude - utmZone = QString("%1%2").arg(ZoneNumber).arg(UTMLetterDesignator(latitude)); - - eccPrimeSquared = WGS84_ECCSQ / (1.0 - WGS84_ECCSQ); - - N = WGS84_A / sqrt(1.0f - WGS84_ECCSQ * sin(LatRad) * sin(LatRad)); - T = tan(LatRad) * tan(LatRad); - C = eccPrimeSquared * cos(LatRad) * cos(LatRad); - A = cos(LatRad) * (LongRad - LongOriginRad); - - M = WGS84_A * ((1.0 - WGS84_ECCSQ / 4.0 - - 3.0 * WGS84_ECCSQ * WGS84_ECCSQ / 64.0 - - 5.0 * WGS84_ECCSQ * WGS84_ECCSQ * WGS84_ECCSQ / 256.0) - * LatRad - - (3.0 * WGS84_ECCSQ / 8.0 - + 3.0 * WGS84_ECCSQ * WGS84_ECCSQ / 32.0 - + 45.0 * WGS84_ECCSQ * WGS84_ECCSQ * WGS84_ECCSQ / 1024.0) - * sin(2.0 * LatRad) - + (15.0 * WGS84_ECCSQ * WGS84_ECCSQ / 256.0 - + 45.0 * WGS84_ECCSQ * WGS84_ECCSQ * WGS84_ECCSQ / 1024.0) - * sin(4.0 * LatRad) - - (35.0 * WGS84_ECCSQ * WGS84_ECCSQ * WGS84_ECCSQ / 3072.0) - * sin(6.0 * LatRad)); - - utmEasting = k0 * N * (A + (1.0 - T + C) * A * A * A / 6.0 - + (5.0 - 18.0 * T + T * T + 72.0 * C - - 58.0 * eccPrimeSquared) - * A * A * A * A * A / 120.0) - + 500000.0; - - utmNorthing = k0 * (M + N * tan(LatRad) * - (A * A / 2.0 + - (5.0 - T + 9.0 * C + 4.0 * C * C) * A * A * A * A / 24.0 - + (61.0 - 58.0 * T + T * T + 600.0 * C - - 330.0 * eccPrimeSquared) - * A * A * A * A * A * A / 720.0)); - if (latitude < 0.0) { - utmNorthing += 10000000.0; //10000000 meter offset for southern hemisphere - } -} - -void -Imagery::UTMtoLL(double utmNorthing, double utmEasting, const QString& utmZone, - double& latitude, double& longitude) -{ - // converts UTM coords to lat/long. Equations from USGS Bulletin 1532 - // East Longitudes are positive, West longitudes are negative. - // North latitudes are positive, South latitudes are negative - // Lat and Long are in decimal degrees. - // Written by Chuck Gantz- chuck.gantz@globalstar.com - - double k0 = 0.9996; - double eccPrimeSquared; - double e1 = (1.0 - sqrt(1.0 - WGS84_ECCSQ)) / (1.0 + sqrt(1.0 - WGS84_ECCSQ)); - double N1, T1, C1, R1, D, M; - double LongOrigin; - double mu, phi1Rad; - double x, y; - int ZoneNumber; - char ZoneLetter; - - x = utmEasting - 500000.0; //remove 500,000 meter offset for longitude - y = utmNorthing; - - std::istringstream iss(utmZone.toStdString()); - iss >> ZoneNumber >> ZoneLetter; - if ((ZoneLetter - 'N') < 0) { - y -= 10000000.0;//remove 10,000,000 meter offset used for southern hemisphere - } - - LongOrigin = (ZoneNumber - 1.0) * 6.0 - 180.0 + 3.0; //+3 puts origin in middle of zone - - eccPrimeSquared = WGS84_ECCSQ / (1.0 - WGS84_ECCSQ); - - M = y / k0; - mu = M / (WGS84_A * (1.0 - WGS84_ECCSQ / 4.0 - - 3.0 * WGS84_ECCSQ * WGS84_ECCSQ / 64.0 - - 5.0 * WGS84_ECCSQ * WGS84_ECCSQ * WGS84_ECCSQ / 256.0)); - - phi1Rad = mu + (3.0 * e1 / 2.0 - 27.0 * e1 * e1 * e1 / 32.0) * sin(2.0 * mu) - + (21.0 * e1 * e1 / 16.0 - 55.0 * e1 * e1 * e1 * e1 / 32.0) - * sin(4.0 * mu) - + (151.0 * e1 * e1 * e1 / 96.0) * sin(6.0 * mu); - - N1 = WGS84_A / sqrt(1.0 - WGS84_ECCSQ * sin(phi1Rad) * sin(phi1Rad)); - T1 = tan(phi1Rad) * tan(phi1Rad); - C1 = eccPrimeSquared * cos(phi1Rad) * cos(phi1Rad); - R1 = WGS84_A * (1.0 - WGS84_ECCSQ) / - pow(1.0 - WGS84_ECCSQ * sin(phi1Rad) * sin(phi1Rad), 1.5); - D = x / (N1 * k0); - - latitude = phi1Rad - (N1 * tan(phi1Rad) / R1) - * (D * D / 2.0 - (5.0 + 3.0 * T1 + 10.0 * C1 - 4.0 * C1 * C1 - - 9.0 * eccPrimeSquared) * D * D * D * D / 24.0 - + (61.0 + 90.0 * T1 + 298.0 * C1 + 45.0 * T1 * T1 - - 252.0 * eccPrimeSquared - 3.0 * C1 * C1) - * D * D * D * D * D * D / 720.0); - latitude *= 180.0 / M_PI; - - longitude = (D - (1.0 + 2.0 * T1 + C1) * D * D * D / 6.0 - + (5.0 - 2.0 * C1 + 28.0 * T1 - 3.0 * C1 * C1 - + 8.0 * eccPrimeSquared + 24.0 * T1 * T1) - * D * D * D * D * D / 120.0) / cos(phi1Rad); - longitude = LongOrigin + longitude / M_PI * 180.0; -} - -QString -Imagery::getTileLocation(int tileX, int tileY, int zoomLevel, - double tileResolution) const -{ - std::ostringstream oss; - - switch (mImageryType) - { - case GOOGLE_MAP: - oss << "http://mt0.google.com/vt/lyrs=m@120&x=" << tileX - << "&y=" << tileY << "&z=" << zoomLevel; - break; - case GOOGLE_SATELLITE: - oss << "http://khm.google.com/vt/lbw/lyrs=y&x=" << tileX - << "&y=" << tileY << "&z=" << zoomLevel; - break; - case OFFLINE_SATELLITE: - oss << mImageryPath.c_str() << "/200/color/" << tileY - << "/tile-"; - if (tileResolution < 1.0) - { - oss << std::fixed << std::setprecision(2) << tileResolution; - } - else - { - oss << static_cast(rint(tileResolution)); - } - oss << "-" << tileY << "-" << tileX << ".jpg"; - default: - {}; - } - - QString url(oss.str().c_str()); - - return url; -} diff --git a/src/ui/map3D/Imagery.h b/src/ui/map3D/Imagery.h deleted file mode 100644 index ab938356db90825a8156e8cdad83414b0d0314b8..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Imagery.h +++ /dev/null @@ -1,116 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Imagery. - * - * @author Lionel Heng - * - */ - -#ifndef IMAGERY_H -#define IMAGERY_H - -#include -#include -#include - -#include "TextureCache.h" - -class Imagery : public osg::Geode -{ -public: - enum Type - { - BLANK_MAP = 0, - GOOGLE_MAP = 1, - GOOGLE_SATELLITE = 2, - OFFLINE_SATELLITE = 3 - }; - - Imagery(); - - Type getImageryType(void) const; - void setImageryType(Type type); - void setOffset(double xOffset, double yOffset, double zOffset = 0.0); - void setPath(const QString& path); - - void prefetch2D(double windowWidth, double windowHeight, - double zoom, double xOrigin, double yOrigin, - const QString& utmZone); - void draw2D(double windowWidth, double windowHeight, - double zoom, double xOrigin, double yOrigin, - const QString& utmZone); - - void prefetch3D(double radius, double tileResolution, - double xOrigin, double yOrigin, - const QString& utmZone); - void draw3D(double radius, double tileResolution, - double xOrigin, double yOrigin, - double xOffset, double yOffset, - const QString& utmZone); - - bool update(void); - - static void LLtoUTM(double latitude, double longitude, - double& utmNorthing, double& utmEasting, - QString& utmZone); - static void UTMtoLL(double utmNorthing, double utmEasting, const QString& utmZone, - double& latitude, double& longitude); - -private: - void imageBounds(int tileX, int tileY, double tileResolution, - double& x1, double& y1, double& x2, double& y2, - double& x3, double& y3, double& x4, double& y4) const; - void tileBounds(double tileResolution, - double minUtmX, double minUtmY, - double maxUtmX, double maxUtmY, const QString& utmZone, - int& minTileX, int& minTileY, - int& maxTileX, int& maxTileY, - int& zoomLevel) const; - - double tileXToLongitude(int tileX, int numTiles) const; - double tileYToLatitude(int tileY, int numTiles) const; - int longitudeToTileX(double longitude, int numTiles) const; - int latitudeToTileY(double latitude, int numTiles) const; - - void UTMtoTile(double northing, double easting, const QString& utmZone, - double tileResolution, int& tileX, int& tileY, - int& zoomLevel) const; - static QChar UTMLetterDesignator(double latitude); - - QString getTileLocation(int tileX, int tileY, int zoomLevel, - double tileResolution) const; - - QScopedPointer mTextureCache; - - Type mImageryType; - std::string mImageryPath; - - double mXOffset; - double mYOffset; - double mZOffset; -}; - -#endif // IMAGERY_H diff --git a/src/ui/map3D/ImageryParamDialog.cc b/src/ui/map3D/ImageryParamDialog.cc deleted file mode 100644 index 5208247727bca313633ae8cd35e587d6ba7fba5d..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ImageryParamDialog.cc +++ /dev/null @@ -1,175 +0,0 @@ -#include "ImageryParamDialog.h" - -#include -#include -#include -#include - -#include "QGCFileDialog.h" - -ImageryParamDialog::ImageryParamDialog(QWidget* parent) - : QDialog(parent) -{ - QVBoxLayout* layout = new QVBoxLayout; - setLayout(layout); - - setWindowTitle(tr("Imagery Parameters")); - setModal(true); - - buildLayout(layout); -} - -void -ImageryParamDialog::getImageryParams(GlobalViewParamsPtr &globalViewParams) -{ - ImageryParamDialog dialog; - - switch (globalViewParams->imageryType()) - { - case Imagery::BLANK_MAP: - dialog.mImageryTypeComboBox->setCurrentIndex(0); - break; - case Imagery::GOOGLE_MAP: - dialog.mImageryTypeComboBox->setCurrentIndex(1); - break; - case Imagery::GOOGLE_SATELLITE: - dialog.mImageryTypeComboBox->setCurrentIndex(2); - break; - case Imagery::OFFLINE_SATELLITE: - dialog.mImageryTypeComboBox->setCurrentIndex(3); - break; - } - - dialog.mPathLineEdit->setText(globalViewParams->imageryPath()); - - QVector3D& imageryOffset = globalViewParams->imageryOffset(); - - dialog.mXOffsetSpinBox->setValue(imageryOffset.x()); - dialog.mYOffsetSpinBox->setValue(imageryOffset.y()); - dialog.mZOffsetSpinBox->setValue(imageryOffset.z()); - - if (dialog.exec() == QDialog::Accepted) - { - switch (dialog.mImageryTypeComboBox->currentIndex()) - { - case 0: - globalViewParams->imageryType() = Imagery::BLANK_MAP; - break; - case 1: - globalViewParams->imageryType() = Imagery::GOOGLE_MAP; - break; - case 2: - globalViewParams->imageryType() = Imagery::GOOGLE_SATELLITE; - break; - case 3: - globalViewParams->imageryType() = Imagery::OFFLINE_SATELLITE; - break; - } - - globalViewParams->imageryPath() = dialog.mPathLineEdit->text(); - - imageryOffset.setX(dialog.mXOffsetSpinBox->value()); - imageryOffset.setY(dialog.mYOffsetSpinBox->value()); - imageryOffset.setZ(dialog.mZOffsetSpinBox->value()); - - globalViewParams->signalImageryParamsChanged(); - } -} - -void -ImageryParamDialog::selectPath(void) -{ - QString filename = QGCFileDialog::getExistingDirectory(this, "Imagery path", - QStandardPaths::writableLocation(QStandardPaths::DesktopLocation)); - if (filename.isNull()) - { - return; - } - else - { - mPathLineEdit->setText(filename); - } -} - -void -ImageryParamDialog::closeWithSaving(void) -{ - done(QDialog::Accepted); -} - -void -ImageryParamDialog::closeWithoutSaving(void) -{ - done(QDialog::Rejected); -} - -void -ImageryParamDialog::buildLayout(QVBoxLayout* layout) -{ - QFormLayout* formLayout = new QFormLayout; - - mImageryTypeComboBox = new QComboBox(this); - mImageryTypeComboBox->addItem("None"); - mImageryTypeComboBox->addItem("Map (Google)"); - mImageryTypeComboBox->addItem("Satellite (Google)"); - mImageryTypeComboBox->addItem("Satellite (Offline)"); - - mPathLineEdit = new QLineEdit(this); - mPathLineEdit->setReadOnly(true); - - QPushButton* pathButton = new QPushButton(this); - pathButton->setText(tr("..")); - - QHBoxLayout* pathLayout = new QHBoxLayout; - pathLayout->addWidget(mPathLineEdit); - pathLayout->addWidget(pathButton); - - formLayout->addRow(tr("Imagery Type"), mImageryTypeComboBox); - formLayout->addRow(tr("Path"), pathLayout); - - layout->addLayout(formLayout); - - QGroupBox* offsetGroupBox = new QGroupBox(tr("Offset"), this); - - mXOffsetSpinBox = new QDoubleSpinBox(this); - mXOffsetSpinBox->setDecimals(1); - mXOffsetSpinBox->setRange(-1000.0, 1000.0); - mXOffsetSpinBox->setValue(0.0); - - mYOffsetSpinBox = new QDoubleSpinBox(this); - mYOffsetSpinBox->setDecimals(1); - mYOffsetSpinBox->setRange(-1000.0, 1000.0); - mYOffsetSpinBox->setValue(0.0); - - mZOffsetSpinBox = new QDoubleSpinBox(this); - mZOffsetSpinBox->setDecimals(1); - mZOffsetSpinBox->setRange(-1000.0, 1000.0); - mZOffsetSpinBox->setValue(0.0); - - formLayout = new QFormLayout; - formLayout->addRow(tr("x (m)"), mXOffsetSpinBox); - formLayout->addRow(tr("y (m)"), mYOffsetSpinBox); - formLayout->addRow(tr("z (m)"), mZOffsetSpinBox); - - offsetGroupBox->setLayout(formLayout); - - layout->addWidget(offsetGroupBox); - layout->addItem(new QSpacerItem(10, 0, QSizePolicy::Expanding, QSizePolicy::Expanding)); - - QPushButton* cancelButton = new QPushButton(this); - cancelButton->setText("Cancel"); - - QPushButton* saveButton = new QPushButton(this); - saveButton->setText("Save"); - - QHBoxLayout* buttonLayout = new QHBoxLayout; - buttonLayout->addWidget(cancelButton); - buttonLayout->addItem(new QSpacerItem(10, 0, QSizePolicy::Expanding, QSizePolicy::Expanding)); - buttonLayout->addWidget(saveButton); - - layout->addLayout(buttonLayout); - - connect(pathButton, SIGNAL(clicked()), this, SLOT(selectPath())); - connect(cancelButton, SIGNAL(clicked()), this, SLOT(closeWithoutSaving())); - connect(saveButton, SIGNAL(clicked()), this, SLOT(closeWithSaving())); -} diff --git a/src/ui/map3D/ImageryParamDialog.h b/src/ui/map3D/ImageryParamDialog.h deleted file mode 100644 index 0dcbfeb8a967c3d554cc259ae2fe8250ff47915d..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ImageryParamDialog.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef IMAGERYPARAMDIALOG_H -#define IMAGERYPARAMDIALOG_H - -#include -#include -#include -#include -#include - -#include "GlobalViewParams.h" - -class ImageryParamDialog : public QDialog -{ - Q_OBJECT - -public: - ImageryParamDialog(QWidget* parent = 0); - - static void getImageryParams(GlobalViewParamsPtr& globalViewParams); - -private slots: - void selectPath(void); - void closeWithSaving(void); - void closeWithoutSaving(void); - -private: - void buildLayout(QVBoxLayout* layout); - - QComboBox* mImageryTypeComboBox; - QLineEdit* mPathLineEdit; - QDoubleSpinBox* mXOffsetSpinBox; - QDoubleSpinBox* mYOffsetSpinBox; - QDoubleSpinBox* mZOffsetSpinBox; -}; - -#endif // IMAGERYPARAMDIALOG_H diff --git a/src/ui/map3D/ObstacleGroupNode.cc b/src/ui/map3D/ObstacleGroupNode.cc deleted file mode 100644 index aae78bfc4e48c647acc6d2a804833c3aa52d8ace..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ObstacleGroupNode.cc +++ /dev/null @@ -1,111 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class ObstacleGroupNode. - * - * @author Lionel Heng - * - */ - -#include "ObstacleGroupNode.h" - -#include -#include -#include - -#include "gpl.h" -#include "Imagery.h" - -ObstacleGroupNode::ObstacleGroupNode() -{ - -} - -void -ObstacleGroupNode::init(void) -{ - -} - -void -ObstacleGroupNode::clear(void) -{ - if (getNumChildren() > 0) - { - removeChild(0, getNumChildren()); - } -} - -void -ObstacleGroupNode::update(double robotX, double robotY, double robotZ, - const px::ObstacleList& obstacleList) -{ - clear(); - - osg::ref_ptr geode = new osg::Geode; - - // find minimum and maximum height - float zMin = std::numeric_limits::max(); - float zMax = std::numeric_limits::min(); - for (int i = 0; i < obstacleList.obstacles_size(); ++i) - { - const px::Obstacle& obs = obstacleList.obstacles(i); - - float z = robotZ - obs.z(); - - if (zMin > z) - { - zMin = z; - } - if (zMax < z) - { - zMax = z; - } - } - - for (int i = 0; i < obstacleList.obstacles_size(); ++i) - { - const px::Obstacle& obs = obstacleList.obstacles(i); - - osg::Vec3d obsPos(obs.y() - robotY, obs.x() - robotX, robotZ - obs.z()); - - osg::ref_ptr box = - new osg::Box(obsPos, obs.width(), obs.width(), obs.height()); - osg::ref_ptr sd = new osg::ShapeDrawable(box); - - int idx = (obsPos.z() - zMin) / (zMax - zMin) * 127.0f; - float r, g, b; - qgc::colormap("jet", idx, r, g, b); - - sd->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - sd->setColor(osg::Vec4(r, g, b, 1.0f)); - sd->setUseDisplayList(false); - - geode->addDrawable(sd); - } - - addChild(geode); -} - diff --git a/src/ui/map3D/Pixhawk3DWidget.cc b/src/ui/map3D/Pixhawk3DWidget.cc deleted file mode 100644 index dea11c6ffeda3ff26c6e368244a526e09f601ef8..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Pixhawk3DWidget.cc +++ /dev/null @@ -1,2408 +0,0 @@ -///*===================================================================== -// -//QGroundControl Open Source Ground Control Station -// -//(c) 2009, 2010 QGROUNDCONTROL PROJECT -// -//This file is part of the QGROUNDCONTROL project -// -// QGROUNDCONTROL is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// QGROUNDCONTROL is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with QGROUNDCONTROL. If not, see . -// -//======================================================================*/ - -/** - * @file - * @brief Definition of the class Pixhawk3DWidget. - * - * @author Lionel Heng - * - */ - -#include "Pixhawk3DWidget.h" - -#include - -#include -#include -#include -#include -#include -#include - -#include "MainWindow.h" -#include "PixhawkCheetahNode.h" -#include "TerrainParamDialog.h" -#include "UASManager.h" -#include "QGCFileDialog.h" -#include "QGCMessageBox.h" - -#include "QGC.h" -#include "gpl.h" - -Pixhawk3DWidget::Pixhawk3DWidget(QWidget* parent) - : kMessageTimeout(4.0) - , mMode(DEFAULT_MODE) - , mSelectedWpIndex(-1) - , mActiveSystemId(-1) - , mActiveUAS(NULL) - , mGlobalViewParams(new GlobalViewParams) - , mFollowCameraId(-1) - , mInitCameraPos(false) - , m3DWidget(new Q3DWidget(this)) - , mViewParamWidget(new ViewParamWidget(mGlobalViewParams, mSystemViewParamMap, this, parent)) -{ - connect(m3DWidget, SIGNAL(sizeChanged(int,int)), this, SLOT(sizeChanged(int,int))); - connect(m3DWidget, SIGNAL(updateWidget()), this, SLOT(updateWidget())); - - m3DWidget->setCameraParams(2.0f, 30.0f, 0.01f, 10000.0f); - m3DWidget->init(15.0f); - m3DWidget->handleDeviceEvents() = false; - - mWorldGridNode = createWorldGrid(); - m3DWidget->worldMap()->addChild(mWorldGridNode, false); - - mTerrainPAT = new osg::PositionAttitudeTransform; - m3DWidget->worldMap()->addChild(mTerrainPAT); - - // generate map model - mImageryNode = createImagery(); - mImageryNode->setName("imagery"); - m3DWidget->worldMap()->addChild(mImageryNode, false); - - setupHUD(); - - buildLayout(); - - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), - this, SLOT(activeSystemChanged(UASInterface*))); - connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), - this, SLOT(systemCreated(UASInterface*))); - connect(mGlobalViewParams.data(), SIGNAL(followCameraChanged(int)), - this, SLOT(followCameraChanged(int))); - connect(mGlobalViewParams.data(), SIGNAL(imageryParamsChanged(void)), - this, SLOT(imageryParamsChanged(void))); - - MainWindow* parentWindow = qobject_cast(parent); - parentWindow->addDockWidget(Qt::LeftDockWidgetArea, mViewParamWidget); - - mViewParamWidget->hide(); - - setFocusPolicy(Qt::StrongFocus); - setMouseTracking(true); -} - -Pixhawk3DWidget::~Pixhawk3DWidget() -{ - -} - -void -Pixhawk3DWidget::activeSystemChanged(UASInterface* uas) -{ - if (uas) - { - mActiveSystemId = uas->getUASID(); - } - - mActiveUAS = uas; - - mMode = DEFAULT_MODE; -} - -void -Pixhawk3DWidget::systemCreated(UASInterface *uas) -{ - int systemId = uas->getUASID(); - - if (mSystemContainerMap.contains(systemId)) - { - return; - } - - mSystemViewParamMap.insert(systemId, SystemViewParamsPtr(new SystemViewParams(systemId))); - mSystemContainerMap.insert(systemId, SystemContainer()); - - connect(uas, SIGNAL(localPositionChanged(UASInterface*,int,double,double,double,quint64)), - this, SLOT(localPositionChanged(UASInterface*,int,double,double,double,quint64))); - connect(uas, SIGNAL(localPositionChanged(UASInterface*,double,double,double,quint64)), - this, SLOT(localPositionChanged(UASInterface*,double,double,double,quint64))); - connect(uas, SIGNAL(attitudeChanged(UASInterface*,int,double,double,double,quint64)), - this, SLOT(attitudeChanged(UASInterface*,int,double,double,double,quint64))); - connect(uas, SIGNAL(attitudeChanged(UASInterface*,double,double,double,quint64)), - this, SLOT(attitudeChanged(UASInterface*,double,double,double,quint64))); - connect(uas, SIGNAL(userPositionSetPointsChanged(int,float,float,float,float)), - this, SLOT(setpointChanged(int,float,float,float,float))); - connect(uas, SIGNAL(homePositionChanged(int,double,double,double)), - this, SLOT(homePositionChanged(int,double,double,double))); - -// mSystemContainerMap[systemId].gpsLocalOrigin() = QVector3D(47.397786, 8.544476, 428); - initializeSystem(systemId, uas->getColor()); - - emit systemCreatedSignal(uas); -} - -void -Pixhawk3DWidget::localPositionChanged(UASInterface* uas, int component, - double x, double y, double z, - quint64 time) -{ - Q_UNUSED(time); - - int systemId = uas->getUASID(); - - if (!mSystemContainerMap.contains(systemId)) - { - return; - } - - SystemContainer& systemData = mSystemContainerMap[systemId]; - - // update trail data - if (!systemData.trailMap().contains(component)) - { - systemData.trailMap().insert(component, QVector()); - systemData.trailMap()[component].reserve(10000); - systemData.trailIndexMap().insert(component, - systemData.trailMap().size() - 1); - - // generate nice bright random color - float golden_ratio_conjugate = 0.618033988749895f; - - float h = (float)qrand() / RAND_MAX + golden_ratio_conjugate; - if (h > 1.0f) - { - h -= 1.0f; - } - - QColor colorHSV; - colorHSV.setHsvF(h, 0.99, 0.99, 0.5); - - QColor colorRGB = colorHSV.toRgb(); - - osg::Vec4f color(colorRGB.redF(), colorRGB.greenF(), colorRGB.blueF(), colorRGB.alphaF()); - - systemData.trailNode()->addDrawable(createTrail(color)); - systemData.trailNode()->addDrawable(createLink(uas->getColor())); - - double radius = 0.5; - - osg::ref_ptr group = new osg::Group; - - // cone indicates orientation - osg::ref_ptr sd = new osg::ShapeDrawable; - double coneRadius = radius / 2.0; - osg::ref_ptr cone = - new osg::Cone(osg::Vec3d(0.0, 0.0, 0.0), - coneRadius, radius * 2.0); - - sd->setShape(cone); - sd->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - sd->setColor(color); - - osg::ref_ptr geode = new osg::Geode; - geode->addDrawable(sd); - - osg::ref_ptr pat = - new osg::PositionAttitudeTransform; - pat->addChild(geode); - pat->setAttitude(osg::Quat(- M_PI_2, osg::Vec3d(1.0f, 0.0f, 0.0f), - M_PI_2, osg::Vec3d(0.0f, 1.0f, 0.0f), - 0.0, osg::Vec3d(0.0f, 0.0f, 1.0f))); - group->addChild(pat); - - // cylinder indicates position - sd = new osg::ShapeDrawable; - osg::ref_ptr cylinder = - new osg::Cylinder(osg::Vec3d(0.0, 0.0, 0.0), - radius, 0); - - sd->setShape(cylinder); - sd->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - sd->setColor(color); - - geode = new osg::Geode; - geode->addDrawable(sd); - group->addChild(geode); - - // text indicates component id - colorRGB = colorRGB.lighter(); - color = osg::Vec4(colorRGB.redF(), colorRGB.greenF(), colorRGB.blueF(), 1.0f); - - osg::ref_ptr text = new osgText::Text; - text->setFont(m3DWidget->font()); - text->setText(QString::number(component).toStdString().c_str()); - text->setColor(color); - text->setCharacterSize(0.3f); - text->setAxisAlignment(osgText::Text::XY_PLANE); - text->setAlignment(osgText::Text::CENTER_CENTER); - text->setPosition(osg::Vec3(0.0, -0.8, 0.0)); - - sd = new osg::ShapeDrawable; - osg::ref_ptr textBox = - new osg::Box(osg::Vec3(0.0, -0.8, -0.01), 0.7, 0.4, 0.01); - - sd->setShape(textBox); - sd->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - sd->setColor(osg::Vec4(0.0, 0.0, 0.0, 1.0)); - - geode = new osg::Geode; - geode->addDrawable(text); - geode->addDrawable(sd); - group->addChild(geode); - - pat = new osg::PositionAttitudeTransform; - pat->addChild(group); - systemData.orientationNode()->addChild(pat); - } - - QVector& trail = systemData.trailMap()[component]; - - bool addToTrail = false; - if (trail.size() > 0) - { - if (fabs(x - trail[trail.size() - 1].x()) > 0.01f || - fabs(y - trail[trail.size() - 1].y()) > 0.01f || - fabs(z - trail[trail.size() - 1].z()) > 0.01f) - { - addToTrail = true; - } - } - else - { - addToTrail = true; - } - - if (addToTrail) - { - osg::Vec3d p(x, y, z); - if (trail.size() == trail.capacity()) - { - memcpy(trail.data(), trail.data() + 1, - (trail.size() - 1) * sizeof(osg::Vec3d)); - trail[trail.size() - 1] = p; - } - else - { - trail.append(p); - } - } -} - -void -Pixhawk3DWidget::localPositionChanged(UASInterface* uas, - double x, double y, double z, - quint64 time) -{ - Q_UNUSED(time); - - int systemId = uas->getUASID(); - - if (!mSystemContainerMap.contains(systemId)) - { - return; - } - -// // Add offset -// UAS* mav = qobject_cast(uas); - -// float offX = mav->getNedPosGlobalOffset().x(); -// float offY = mav->getNedPosGlobalOffset().y(); -// float offZ = mav->getNedPosGlobalOffset().z(); -// float offYaw = mav->getNedAttGlobalOffset().z(); - - // update system position - m3DWidget->systemGroup(systemId)->position()->setPosition(osg::Vec3d(y, x, -z)); -} - -void -Pixhawk3DWidget::attitudeChanged(UASInterface* uas, int component, - double roll, double pitch, double yaw, - quint64 time) -{ - Q_UNUSED(roll); - Q_UNUSED(pitch); - Q_UNUSED(time); - - int systemId = uas->getUASID(); - - if (!mSystemContainerMap.contains(systemId)) - { - return; - } - - SystemContainer& systemData = mSystemContainerMap[systemId]; - - // update trail data - if (!systemData.trailMap().contains(component)) - { - return; - } - - int idx = systemData.trailIndexMap().value(component); - - osg::PositionAttitudeTransform* pat = - dynamic_cast(systemData.orientationNode()->getChild(idx)); - - pat->setAttitude(osg::Quat(-yaw, osg::Vec3d(0.0f, 0.0f, 1.0f), - 0.0, osg::Vec3d(1.0f, 0.0f, 0.0f), - 0.0, osg::Vec3d(0.0f, 1.0f, 0.0f))); -} - -void -Pixhawk3DWidget::attitudeChanged(UASInterface* uas, - double roll, double pitch, double yaw, - quint64 time) -{ - Q_UNUSED(time); - - int systemId = uas->getUASID(); - - if (!mSystemContainerMap.contains(systemId)) - { - return; - } - - // update system attitude - osg::Quat q(roll, osg::Vec3d(0.0f, 1.0f, 0.0f), - pitch, osg::Vec3d(1.0f, 0.0f, 0.0f), - -yaw, osg::Vec3d(0.0f, 0.0f, 1.0f) - ); - m3DWidget->systemGroup(systemId)->attitude()->setAttitude(q); -} - -void -Pixhawk3DWidget::homePositionChanged(int uasId, double lat, double lon, - double alt) -{ - if (!mSystemContainerMap.contains(uasId)) - { - return; - } - - SystemContainer& systemData = mSystemContainerMap[uasId]; - - systemData.gpsLocalOrigin() = QVector3D(lat, lon, alt); -} - -void -Pixhawk3DWidget::setpointChanged(int uasId, float x, float y, float z, - float yaw) -{ - if (!mSystemContainerMap.contains(uasId)) - { - return; - } - - UASInterface* uas = UASManager::instance()->getUASForId(uasId); - if (!uas) - { - return; - } - - QColor color = uas->getColor(); - const SystemViewParamsPtr& systemViewParams = mSystemViewParamMap.value(uasId); - - osg::ref_ptr pat = - new osg::PositionAttitudeTransform; - - pat->setPosition(osg::Vec3d(y, x, -z)); - pat->setAttitude(osg::Quat(osg::DegreesToRadians(yaw) - M_PI_2, osg::Vec3d(1.0f, 0.0f, 0.0f), - M_PI_2, osg::Vec3d(0.0f, 1.0f, 0.0f), - 0.0, osg::Vec3d(0.0f, 0.0f, 1.0f))); - - osg::ref_ptr cone = new osg::Cone(osg::Vec3f(0.0f, 0.0f, 0.0f), 0.1f, 0.3f); - osg::ref_ptr coneDrawable = new osg::ShapeDrawable(cone); - coneDrawable->setColor(osg::Vec4f(color.redF(), color.greenF(), color.blueF(), 1.0f)); - coneDrawable->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - osg::ref_ptr coneGeode = new osg::Geode; - coneGeode->addDrawable(coneDrawable); - - pat->addChild(coneGeode); - - osg::ref_ptr& setpointGroupNode = mSystemContainerMap[uasId].setpointGroupNode(); - - setpointGroupNode->addChild(pat); - if (setpointGroupNode->getNumChildren() > static_cast(systemViewParams->setpointHistoryLength())) - { - setpointGroupNode->removeChildren(0, setpointGroupNode->getNumChildren() - systemViewParams->setpointHistoryLength()); - } - - osg::Vec4f setpointColor(color.redF(), color.greenF(), color.blueF(), 1.0f); - int setpointCount = setpointGroupNode->getNumChildren(); - - // update colors - for (int i = 0; i < setpointCount; ++i) - { - osg::PositionAttitudeTransform* pat = - dynamic_cast(setpointGroupNode->getChild(i)); - - osg::Geode* geode = dynamic_cast(pat->getChild(0)); - osg::ShapeDrawable* sd = dynamic_cast(geode->getDrawable(0)); - - setpointColor.a() = static_cast(i + 1) / setpointCount; - sd->setColor(setpointColor); - } -} - -void -Pixhawk3DWidget::clearData(void) -{ - QMutableMapIterator it(mSystemContainerMap); - while (it.hasNext()) - { - it.next(); - - SystemContainer& systemData = it.value(); - - // clear setpoint data - systemData.setpointGroupNode()->removeChildren(0, systemData.setpointGroupNode()->getNumChildren()); - - // clear trail data - systemData.orientationNode()->removeChildren(0, systemData.orientationNode()->getNumChildren()); - systemData.trailIndexMap().clear(); - systemData.trailMap().clear(); - systemData.trailNode()->removeDrawables(0, systemData.trailNode()->getNumDrawables()); - } -} - -void -Pixhawk3DWidget::showTerrainParamWindow(void) -{ - TerrainParamDialog::getTerrainParams(mGlobalViewParams); - - const QVector3D& positionOffset = mGlobalViewParams->terrainPositionOffset(); - const QVector3D& attitudeOffset = mGlobalViewParams->terrainAttitudeOffset(); - - mTerrainPAT->setPosition(osg::Vec3d(positionOffset.y(), positionOffset.x(), -positionOffset.z())); - mTerrainPAT->setAttitude(osg::Quat(- attitudeOffset.z(), osg::Vec3d(0.0f, 0.0f, 1.0f), - attitudeOffset.y(), osg::Vec3d(1.0f, 0.0f, 0.0f), - attitudeOffset.x(), osg::Vec3d(0.0f, 1.0f, 0.0f))); -} - -void -Pixhawk3DWidget::showViewParamWindow(void) -{ - if (mViewParamWidget->isVisible()) - { - mViewParamWidget->hide(); - } - else - { - mViewParamWidget->show(); - } -} - -void -Pixhawk3DWidget::followCameraChanged(int systemId) -{ - if (systemId == -1) - { - mFollowCameraId = -1; - } - - UASInterface* uas = UASManager::instance()->getUASForId(systemId); - if (!uas) - { - return; - } - - if (mFollowCameraId != systemId) - { - double x = 0.0, y = 0.0, z = 0.0; - getPosition(uas, mGlobalViewParams->frame(), x, y, z); - - mCameraPos = QVector3D(x, y, z); - - m3DWidget->recenterCamera(y, x, -z); - - mFollowCameraId = systemId; - } -} - -void -Pixhawk3DWidget::imageryParamsChanged(void) -{ - mImageryNode->setImageryType(mGlobalViewParams->imageryType()); - mImageryNode->setPath(mGlobalViewParams->imageryPath()); - - const QVector3D& offset = mGlobalViewParams->imageryOffset(); - mImageryNode->setOffset(offset.x(), offset.y(), offset.z()); -} - -void -Pixhawk3DWidget::recenterActiveCamera(void) -{ - if (mFollowCameraId != -1) - { - UASInterface* uas = UASManager::instance()->getUASForId(mFollowCameraId); - if (!uas) - { - return; - } - - double x = 0.0, y = 0.0, z = 0.0; - getPosition(uas, mGlobalViewParams->frame(), x, y, z); - - mCameraPos = QVector3D(x, y, z); - - m3DWidget->recenterCamera(y, x, -z); - } -} - -void -Pixhawk3DWidget::modelChanged(int systemId, int index) -{ - if (!mSystemContainerMap.contains(systemId)) - { - return; - } - - SystemContainer& systemData = mSystemContainerMap[systemId]; - osg::ref_ptr& systemGroupNode = m3DWidget->systemGroup(systemId); - - systemGroupNode->egocentricMap()->removeChild(systemData.modelNode()); - systemData.modelNode() = systemData.models().at(index); - systemGroupNode->egocentricMap()->addChild(systemData.modelNode()); -} - -void -Pixhawk3DWidget::setBirdEyeView(void) -{ - mViewParamWidget->setFollowCameraId(-1); - - m3DWidget->rotateCamera(0.0, 0.0, 0.0); - m3DWidget->setCameraDistance(100.0); -} - -void -Pixhawk3DWidget::loadTerrainModel(void) -{ - QString filename = QGCFileDialog::getOpenFileName( - this, "Load Terrain Model", - QStandardPaths::writableLocation(QStandardPaths::DesktopLocation), - tr("Collada Files (*.dae)")); - - if (filename.isEmpty()) - { - return; - } - - osg::ref_ptr node = - osgDB::readNodeFile(filename.toStdString().c_str()); - - if (node) - { - if (mTerrainNode.get()) - { - mTerrainPAT->removeChild(mTerrainNode); - } - mTerrainNode = node; - mTerrainNode->setName("terrain"); - mTerrainPAT->addChild(mTerrainNode); - - mGlobalViewParams->terrainPositionOffset() = QVector3D(); - mGlobalViewParams->terrainAttitudeOffset() = QVector3D(); - - mTerrainPAT->setPosition(osg::Vec3d(0.0, 0.0, 0.0)); - mTerrainPAT->setAttitude(osg::Quat(0.0, osg::Vec3d(0.0f, 0.0f, 1.0f), - 0.0, osg::Vec3d(1.0f, 0.0f, 0.0f), - 0.0, osg::Vec3d(0.0f, 1.0f, 0.0f))); - } - else - { - QGCMessageBox::warning(tr("Error loading model"), - tr("Error: Unable to load terrain model (%1).").arg(filename)); - } -} - -void -Pixhawk3DWidget::selectTargetHeading(void) -{ - if (!mActiveUAS) - { - return; - } - - osg::Vec2d p; - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - double altitude = mActiveUAS->getAltitudeAMSL(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), altitude); - - p.set(cursorWorldCoords.x(), cursorWorldCoords.y()); - } - else if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - p.set(cursorWorldCoords.x(), cursorWorldCoords.y()); - } - - SystemContainer& systemData = mSystemContainerMap[mActiveUAS->getUASID()]; - QVector4D& target = systemData.target(); - - target.setW(atan2(p.y() - target.y(), p.x() - target.x())); -} - -void -Pixhawk3DWidget::selectTarget(void) -{ - if (!mActiveUAS) - { - return; - } - if (!mActiveUAS->getParamManager()) - { - return; - } - - SystemContainer& systemData = mSystemContainerMap[mActiveUAS->getUASID()]; - QVector4D& target = systemData.target(); - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - double altitude = mActiveUAS->getAltitudeAMSL(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(mCachedMousePos, altitude); - - QVariant zTarget; - if (!mActiveUAS->getParamManager()->getParameterValue(MAV_COMP_ID_PATHPLANNER, "TARGET-ALT", zTarget)) - { - zTarget = -altitude; - } - - target = QVector4D(cursorWorldCoords.x(), cursorWorldCoords.y(), - zTarget.toReal(), 0.0); - } - else if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(mCachedMousePos, -z); - - QVariant zTarget; - if (!mActiveUAS->getParamManager()->getParameterValue(MAV_COMP_ID_PATHPLANNER, "TARGET-ALT", zTarget)) - { - zTarget = z; - } - - target = QVector4D(cursorWorldCoords.x(), cursorWorldCoords.y(), - zTarget.toReal(), 0.0); - } - - int systemId = mActiveUAS->getUASID(); - - QMap::iterator it = mSystemViewParamMap.find(systemId); - if (it != mSystemViewParamMap.end()) - { - it.value()->displayTarget() = true; - } - - mMode = SELECT_TARGET_HEADING_MODE; -} - -void -Pixhawk3DWidget::setTarget(void) -{ - selectTargetHeading(); - - SystemContainer& systemData = mSystemContainerMap[mActiveUAS->getUASID()]; - QVector4D& target = systemData.target(); - - mActiveUAS->setTargetPosition(target.x(), target.y(), target.z(), - osg::RadiansToDegrees(target.w())); -} - -void -Pixhawk3DWidget::insertWaypoint(void) -{ - if (!mActiveUAS) - { - return; - } - - Waypoint* wp = NULL; - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - double latitude = mActiveUAS->getLatitude(); - double longitude = mActiveUAS->getLongitude(); - double altitude = mActiveUAS->getAltitudeAMSL(); - double x, y; - QString utmZone; - Imagery::LLtoUTM(latitude, longitude, x, y, utmZone); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(mCachedMousePos, altitude); - - Imagery::UTMtoLL(cursorWorldCoords.x(), cursorWorldCoords.y(), utmZone, - latitude, longitude); - - wp = new Waypoint(0, longitude, latitude, altitude, 0.0, 0.25); - } - else if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(mCachedMousePos, -z); - - wp = new Waypoint(0, cursorWorldCoords.x(), - cursorWorldCoords.y(), z, 0.0, 0.25); - } - - if (wp) - { - wp->setFrame(mGlobalViewParams->frame()); - mActiveUAS->getWaypointManager()->addWaypointEditable(wp); - } - - mSelectedWpIndex = wp->getId(); - mMode = MOVE_WAYPOINT_HEADING_MODE; -} - -void -Pixhawk3DWidget::moveWaypointPosition(void) -{ - if (mMode != MOVE_WAYPOINT_POSITION_MODE) - { - mMode = MOVE_WAYPOINT_POSITION_MODE; - return; - } - - if (!mActiveUAS) - { - return; - } - - const QList waypoints = - mActiveUAS->getWaypointManager()->getWaypointEditableList(); - Waypoint* waypoint = waypoints.at(mSelectedWpIndex); - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - double latitude = mActiveUAS->getLatitude(); - double longitude = mActiveUAS->getLongitude(); - double altitude = mActiveUAS->getAltitudeAMSL(); - double x, y; - QString utmZone; - Imagery::LLtoUTM(latitude, longitude, x, y, utmZone); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), altitude); - - Imagery::UTMtoLL(cursorWorldCoords.x(), cursorWorldCoords.y(), - utmZone, latitude, longitude); - - waypoint->setX(longitude); - waypoint->setY(latitude); - } - else if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - waypoint->setX(cursorWorldCoords.x()); - waypoint->setY(cursorWorldCoords.y()); - } -} - -void -Pixhawk3DWidget::moveWaypointHeading(void) -{ - if (mMode != MOVE_WAYPOINT_HEADING_MODE) - { - mMode = MOVE_WAYPOINT_HEADING_MODE; - return; - } - - if (!mActiveUAS) - { - return; - } - - const QList waypoints = - mActiveUAS->getWaypointManager()->getWaypointEditableList(); - Waypoint* waypoint = waypoints.at(mSelectedWpIndex); - - double x = 0.0, y = 0.0, z = 0.0; - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - double latitude = waypoint->getY(); - double longitude = waypoint->getX(); - z = -waypoint->getZ(); - QString utmZone; - Imagery::LLtoUTM(latitude, longitude, x, y, utmZone); - } - else if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - z = mActiveUAS->getLocalZ(); - } - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - double yaw = atan2(cursorWorldCoords.y() - waypoint->getY(), - cursorWorldCoords.x() - waypoint->getX()); - yaw = osg::RadiansToDegrees(yaw); - - waypoint->setYaw(yaw); -} - -void -Pixhawk3DWidget::deleteWaypoint(void) -{ - if (mActiveUAS) - { - mActiveUAS->getWaypointManager()->removeWaypoint(mSelectedWpIndex); - } -} - -void -Pixhawk3DWidget::setWaypointAltitude(void) -{ - if (!mActiveUAS) - { - return; - } - - bool ok; - const QList waypoints = - mActiveUAS->getWaypointManager()->getWaypointEditableList(); - Waypoint* waypoint = waypoints.at(mSelectedWpIndex); - - double altitude = waypoint->getZ(); - if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - altitude = -altitude; - } - - double newAltitude = - QInputDialog::getDouble(this, tr("Set altitude of waypoint %1").arg(mSelectedWpIndex), - tr("Altitude (m):"), waypoint->getZ(), -1000.0, 1000.0, 1, &ok); - if (ok) - { - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - waypoint->setZ(newAltitude); - } - else if (mGlobalViewParams->frame() == MAV_FRAME_LOCAL_NED) - { - waypoint->setZ(-newAltitude); - } - } -} - -void -Pixhawk3DWidget::clearAllWaypoints(void) -{ - if (mActiveUAS) - { - const QList waypoints = - mActiveUAS->getWaypointManager()->getWaypointEditableList(); - for (int i = waypoints.size() - 1; i >= 0; --i) - { - mActiveUAS->getWaypointManager()->removeWaypoint(i); - } - } -} - -void -Pixhawk3DWidget::moveImagery(void) -{ - if (mMode != MOVE_IMAGERY_MODE) - { - mMode = MOVE_IMAGERY_MODE; - return; - } - - if (!mActiveUAS) - { - return; - } - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - return; - } - - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - QVector3D& offset = mGlobalViewParams->imageryOffset(); - offset.setX(cursorWorldCoords.x()); - offset.setY(cursorWorldCoords.y()); - - mImageryNode->setOffset(offset.x(), offset.y(), offset.z()); -} - -void -Pixhawk3DWidget::moveTerrain(void) -{ - if (mMode != MOVE_TERRAIN_MODE) - { - mMode = MOVE_TERRAIN_MODE; - return; - } - - if (!mActiveUAS) - { - return; - } - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - return; - } - - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - QVector3D& positionOffset = mGlobalViewParams->terrainPositionOffset(); - positionOffset.setX(cursorWorldCoords.x()); - positionOffset.setY(cursorWorldCoords.y()); - - mTerrainPAT->setPosition(osg::Vec3d(positionOffset.y(), positionOffset.x(), -positionOffset.z())); -} - -void -Pixhawk3DWidget::rotateTerrain(void) -{ - if (mMode != ROTATE_TERRAIN_MODE) - { - mMode = ROTATE_TERRAIN_MODE; - return; - } - - if (!mActiveUAS) - { - return; - } - - if (mGlobalViewParams->frame() == MAV_FRAME_GLOBAL) - { - return; - } - - double z = mActiveUAS->getLocalZ(); - - QPointF cursorWorldCoords = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - const QVector3D& positionOffset = mGlobalViewParams->terrainPositionOffset(); - QVector3D& attitudeOffset = mGlobalViewParams->terrainAttitudeOffset(); - - double yaw = atan2(cursorWorldCoords.y() - positionOffset.y(), - cursorWorldCoords.x() - positionOffset.x()); - - attitudeOffset.setZ(yaw); - - mTerrainPAT->setAttitude(osg::Quat(- attitudeOffset.z(), osg::Vec3d(0.0f, 0.0f, 1.0f), - attitudeOffset.y(), osg::Vec3d(1.0f, 0.0f, 0.0f), - attitudeOffset.x(), osg::Vec3d(0.0f, 1.0f, 0.0f))); -} - -void -Pixhawk3DWidget::sizeChanged(int width, int height) -{ - resizeHUD(width, height); -} - -void -Pixhawk3DWidget::updateWidget(void) -{ - MAV_FRAME frame = mGlobalViewParams->frame(); - - // set node visibility - m3DWidget->worldMap()->setChildValue(mTerrainPAT, - mGlobalViewParams->displayTerrain()); - m3DWidget->worldMap()->setChildValue(mWorldGridNode, - mGlobalViewParams->displayWorldGrid()); - if (mGlobalViewParams->imageryType() == Imagery::BLANK_MAP) - { - m3DWidget->worldMap()->setChildValue(mImageryNode, false); - } - else - { - m3DWidget->worldMap()->setChildValue(mImageryNode, true); - } - - // set system-specific node visibility - QMutableMapIterator it(mSystemViewParamMap); - while (it.hasNext()) - { - it.next(); - - osg::ref_ptr& systemNode = m3DWidget->systemGroup(it.key()); - SystemContainer& systemData = mSystemContainerMap[it.key()]; - const SystemViewParamsPtr& systemViewParams = it.value(); - - osg::ref_ptr& allocentricMap = systemNode->allocentricMap(); - allocentricMap->setChildValue(systemData.setpointGroupNode(), - systemViewParams->displaySetpoints()); - - osg::ref_ptr& rollingMap = systemNode->rollingMap(); - rollingMap->setChildValue(systemData.localGridNode(), - systemViewParams->displayLocalGrid()); - rollingMap->setChildValue(systemData.orientationNode(), - systemViewParams->displayTrails()); - rollingMap->setChildValue(systemData.pointCloudNode(), - systemViewParams->displayPointCloud()); - rollingMap->setChildValue(systemData.targetNode(), - systemViewParams->displayTarget()); - rollingMap->setChildValue(systemData.trailNode(), - systemViewParams->displayTrails()); - rollingMap->setChildValue(systemData.waypointGroupNode(), - systemViewParams->displayWaypoints()); - } - - if (mFollowCameraId != -1) - { - UASInterface* uas = UASManager::instance()->getUASForId(mFollowCameraId); - if (uas) - { - double x = 0.0, y = 0.0, z = 0.0; - getPosition(uas, mGlobalViewParams->frame(), x, y, z); - - double dx = y - mCameraPos.y(); - double dy = x - mCameraPos.x(); - double dz = mCameraPos.z() - z; - - m3DWidget->moveCamera(dx, dy, dz); - - mCameraPos = QVector3D(x, y, z); - } - } - else - { - if (!mInitCameraPos && mActiveUAS) - { - double x = 0.0, y = 0.0, z = 0.0; - getPosition(mActiveUAS, frame, x, y, z); - m3DWidget->recenterCamera(y, x, -z); - - mCameraPos = QVector3D(x, y, z); - - setBirdEyeView(); - mInitCameraPos = true; - } - } - - // update system-specific data - it.toFront(); - while (it.hasNext()) - { - it.next(); - - int systemId = it.key(); - - UASInterface* uas = UASManager::instance()->getUASForId(systemId); - - SystemContainer& systemData = mSystemContainerMap[systemId]; - SystemViewParamsPtr& systemViewParams = it.value(); - - double x = 0.0; - double y = 0.0; - double z = 0.0; - double roll = 0.0; - double pitch = 0.0; - double yaw = 0.0; - - getPose(uas, frame, x, y, z, roll, pitch, yaw); - - if (systemViewParams->displaySetpoints()) - { - - } - else - { - systemData.setpointGroupNode()->removeChildren(0, systemData.setpointGroupNode()->getNumChildren()); - } - if (systemViewParams->displayTarget()) - { - if (systemData.target().isNull()) - { - systemViewParams->displayTarget() = false; - } - else - { - updateTarget(uas, frame, x, y, z, systemData.target(), - systemData.targetNode()); - } - } - if (systemViewParams->displayTrails()) - { - updateTrails(x, y, z, systemData.trailNode(), systemData.orientationNode(), - systemData.trailMap(), systemData.trailIndexMap()); - } - else - { - systemData.trailMap().clear(); - } - if (systemViewParams->displayWaypoints()) - { - updateWaypoints(uas, frame, systemData.waypointGroupNode()); - } - } - - if (frame == MAV_FRAME_GLOBAL && - mGlobalViewParams->imageryType() != Imagery::BLANK_MAP) - { -// updateImagery(x, y, z, utmZone); - } - - if (mActiveUAS) - { - updateHUD(mActiveUAS, frame); - } - - layout()->update(); -} - -void -Pixhawk3DWidget::addModels(QVector< osg::ref_ptr >& models, - const QColor& systemColor) -{ - QDir directory("models"); - QStringList files = directory.entryList(QStringList("*.osg"), QDir::Files); - - // add Pixhawk Bravo model - models.push_back(PixhawkCheetahNode::create(systemColor)); - - // add sphere of 0.05m radius - osg::ref_ptr sphere = new osg::Sphere(osg::Vec3f(0.0f, 0.0f, 0.0f), 0.05f); - osg::ref_ptr sphereDrawable = new osg::ShapeDrawable(sphere); - sphereDrawable->setColor(osg::Vec4f(systemColor.redF(), systemColor.greenF(), systemColor.blueF(), 1.0f)); - osg::ref_ptr sphereGeode = new osg::Geode; - sphereGeode->addDrawable(sphereDrawable); - sphereGeode->setName("Sphere (0.1m)"); - models.push_back(sphereGeode); - - // add all other models in folder - for (int i = 0; i < files.size(); ++i) - { - osg::ref_ptr node = - osgDB::readNodeFile(directory.absoluteFilePath(files[i]).toStdString().c_str()); - - if (node) - { - models.push_back(node); - } - else - { - printf("%s\n", QString("ERROR: Could not load file " + directory.absoluteFilePath(files[i]) + "\n").toStdString().c_str()); - } - } -} - -void -Pixhawk3DWidget::buildLayout(void) -{ - QPushButton* clearDataButton = new QPushButton(this); - clearDataButton->setText("Clear Data"); - - QPushButton* viewParamWindowButton = new QPushButton(this); - viewParamWindowButton->setCheckable(true); - viewParamWindowButton->setText("View Parameters"); - - QHBoxLayout* layoutTop = new QHBoxLayout; - layoutTop->addItem(new QSpacerItem(10, 0, QSizePolicy::Expanding, QSizePolicy::Expanding)); - layoutTop->addWidget(clearDataButton); - layoutTop->addWidget(viewParamWindowButton); - - QPushButton* recenterButton = new QPushButton(this); - recenterButton->setText("Recenter Camera"); - - QPushButton* birdEyeViewButton = new QPushButton(this); - birdEyeViewButton->setText("Bird's Eye View"); - - QPushButton* loadTerrainModelButton = new QPushButton(this); - loadTerrainModelButton->setText("Load Terrain Model"); - - QHBoxLayout* layoutBottom = new QHBoxLayout; - layoutBottom->addWidget(recenterButton); - layoutBottom->addWidget(birdEyeViewButton); - layoutBottom->addItem(new QSpacerItem(10, 0, QSizePolicy::Expanding, QSizePolicy::Expanding)); - layoutBottom->addWidget(loadTerrainModelButton); - - QGridLayout* layout = new QGridLayout(this); - layout->setMargin(0); - layout->setSpacing(2); - layout->addLayout(layoutTop, 0, 0); - layout->addWidget(m3DWidget, 1, 0); - layout->addLayout(layoutBottom, 2, 0); - layout->setRowStretch(0, 1); - layout->setRowStretch(1, 100); - layout->setRowStretch(2, 1); - - connect(clearDataButton, SIGNAL(clicked()), - this, SLOT(clearData())); - connect(viewParamWindowButton, SIGNAL(clicked()), - this, SLOT(showViewParamWindow())); - connect(recenterButton, SIGNAL(clicked()), - this, SLOT(recenterActiveCamera())); - connect(birdEyeViewButton, SIGNAL(clicked()), - this, SLOT(setBirdEyeView())); - connect(loadTerrainModelButton, SIGNAL(clicked()), - this, SLOT(loadTerrainModel())); -} - -void -Pixhawk3DWidget::keyPressEvent(QKeyEvent* event) -{ - QWidget::keyPressEvent(event); - if (event->isAccepted()) - { - return; - } - - m3DWidget->handleKeyPressEvent(event); -} - -void -Pixhawk3DWidget::keyReleaseEvent(QKeyEvent* event) -{ - QWidget::keyReleaseEvent(event); - if (event->isAccepted()) - { - return; - } - - m3DWidget->handleKeyReleaseEvent(event); -} - -void -Pixhawk3DWidget::mousePressEvent(QMouseEvent* event) -{ - QWidget::mousePressEvent(event); - if (event->isAccepted()) - { - return; - } - - if (event->button() == Qt::LeftButton) - { - if (mMode == SELECT_TARGET_HEADING_MODE) - { - setTarget(); - event->accept(); - } - - if (mMode != DEFAULT_MODE) - { - mMode = DEFAULT_MODE; - event->accept(); - } - } - else if (event->button() == Qt::RightButton) - { - if (m3DWidget->getSceneData() && mActiveUAS) - { - mSelectedWpIndex = -1; - bool mouseOverImagery = false; - bool mouseOverTerrain = false; - - SystemContainer& systemData = mSystemContainerMap[mActiveUAS->getUASID()]; - osg::ref_ptr& waypointGroupNode = systemData.waypointGroupNode(); - - osgUtil::LineSegmentIntersector::Intersections intersections; - - QPoint widgetMousePos = m3DWidget->mapFromParent(event->pos()); - - if (m3DWidget->computeIntersections(widgetMousePos.x(), - m3DWidget->height() - widgetMousePos.y(), - intersections)) - { - for (osgUtil::LineSegmentIntersector::Intersections::iterator - it = intersections.begin(); it != intersections.end(); it++) - { - for (uint i = 0 ; i < it->nodePath.size(); ++i) - { - osg::Node* node = it->nodePath[i]; - std::string nodeName = node->getName(); - - if (nodeName.substr(0, 2).compare("wp") == 0) - { - if (node->getParent(0)->getParent(0) == waypointGroupNode.get()) - { - mSelectedWpIndex = atoi(nodeName.substr(2).c_str()); - } - } - else if (nodeName.compare("imagery") == 0) - { - mouseOverImagery = true; - } - else if (nodeName.compare("terrain") == 0) - { - mouseOverTerrain = true; - } - } - } - } - - QMenu menu; - if (mSelectedWpIndex == -1) - { - mCachedMousePos = event->pos(); - - menu.addAction("Insert new waypoint", this, SLOT(insertWaypoint())); - } - else - { - QString text; - text = QString("Move waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(moveWaypointPosition())); - - text = QString("Change heading of waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(moveWaypointHeading())); - - text = QString("Change altitude of waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(setWaypointAltitude())); - - text = QString("Delete waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(deleteWaypoint())); - } - - menu.addAction("Clear all waypoints", this, SLOT(clearAllWaypoints())); - menu.addSeparator(); - menu.addAction("Select target", this, SLOT(selectTarget())); - - if (mouseOverImagery) - { - menu.addSeparator(); - menu.addAction("Move imagery", this, SLOT(moveImagery())); - } - if (mouseOverTerrain) - { - menu.addSeparator(); - menu.addAction("Move terrain", this, SLOT(moveTerrain())); - menu.addAction("Rotate terrain", this, SLOT(rotateTerrain())); - menu.addAction("Edit terrain parameters", this, SLOT(showTerrainParamWindow())); - } - - menu.exec(event->globalPos()); - - event->accept(); - } - } - - - m3DWidget->handleMousePressEvent(event); -} - -void -Pixhawk3DWidget::mouseReleaseEvent(QMouseEvent* event) -{ - QWidget::mouseReleaseEvent(event); - if (event->isAccepted()) - { - return; - } - - m3DWidget->handleMouseReleaseEvent(event); -} - -void -Pixhawk3DWidget::mouseMoveEvent(QMouseEvent* event) -{ - QWidget::mouseMoveEvent(event); - if (event->isAccepted()) - { - return; - } - - switch (mMode) - { - case SELECT_TARGET_HEADING_MODE: - selectTargetHeading(); - event->accept(); - break; - case MOVE_WAYPOINT_POSITION_MODE: - moveWaypointPosition(); - event->accept(); - break; - case MOVE_WAYPOINT_HEADING_MODE: - moveWaypointHeading(); - event->accept(); - break; - case MOVE_IMAGERY_MODE: - moveImagery(); - event->accept(); - break; - case MOVE_TERRAIN_MODE: - moveTerrain(); - event->accept(); - break; - case ROTATE_TERRAIN_MODE: - rotateTerrain(); - event->accept(); - break; - default: - {} - } - - m3DWidget->handleMouseMoveEvent(event); -} - -void -Pixhawk3DWidget::wheelEvent(QWheelEvent* event) -{ - QWidget::wheelEvent(event); - if (event->isAccepted()) - { - return; - } - - m3DWidget->handleWheelEvent(event); -} - -void -Pixhawk3DWidget::showEvent(QShowEvent* event) -{ - Q_UNUSED(event); - - emit visibilityChanged(true); -} - -void -Pixhawk3DWidget::hideEvent(QHideEvent* event) -{ - Q_UNUSED(event); - - emit visibilityChanged(false); -} - -void -Pixhawk3DWidget::initializeSystem(int systemId, const QColor& systemColor) -{ - SystemViewParamsPtr& systemViewParams = mSystemViewParamMap[systemId]; - SystemContainer& systemData = mSystemContainerMap[systemId]; - osg::ref_ptr& systemNode = m3DWidget->systemGroup(systemId); - - // generate grid model - systemData.localGridNode() = createLocalGrid(); - systemNode->rollingMap()->addChild(systemData.localGridNode(), false); - - // generate orientation model - systemData.orientationNode() = new osg::Group; - systemNode->rollingMap()->addChild(systemData.orientationNode(), false); - - // generate point cloud model - systemData.pointCloudNode() = createPointCloud(); - systemNode->rollingMap()->addChild(systemData.pointCloudNode(), false); - - // generate setpoint model - systemData.setpointGroupNode() = new osg::Group; - systemNode->allocentricMap()->addChild(systemData.setpointGroupNode(), false); - - // generate target model - systemData.targetNode() = createTarget(systemColor); - systemNode->rollingMap()->addChild(systemData.targetNode(), false); - - // generate empty trail model - systemData.trailNode() = new osg::Geode; - systemNode->rollingMap()->addChild(systemData.trailNode(), false); - - // generate waypoint model - systemData.waypointGroupNode() = new WaypointGroupNode(systemColor); - systemData.waypointGroupNode()->init(); - systemNode->rollingMap()->addChild(systemData.waypointGroupNode(), false); - - systemData.rgbImageNode() = new ImageWindowGeode; - systemData.rgbImageNode()->init("RGB Image", osg::Vec4(0.0f, 0.0f, 0.1f, 1.0f), - m3DWidget->font()); - m3DWidget->hudGroup()->addChild(systemData.rgbImageNode(), false); - - systemData.depthImageNode() = new ImageWindowGeode; - systemData.depthImageNode()->init("Depth Image", osg::Vec4(0.0f, 0.0f, 0.1f, 1.0f), - m3DWidget->font()); - m3DWidget->hudGroup()->addChild(systemData.depthImageNode(), false); - - // find available models - addModels(systemData.models(), systemColor); - systemViewParams->modelNames(); - for (int i = 0; i < systemData.models().size(); ++i) - { - systemViewParams->modelNames().push_back(systemData.models()[i]->getName().c_str()); - } - - systemData.modelNode() = systemData.models().front(); - systemNode->egocentricMap()->addChild(systemData.modelNode()); - - connect(systemViewParams.data(), SIGNAL(modelChangedSignal(int,int)), - this, SLOT(modelChanged(int,int))); -} - -void -Pixhawk3DWidget::getPose(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z, - double& roll, double& pitch, double& yaw, - QString& utmZone) const -{ - if (!uas) - { - return; - } - - if (frame == MAV_FRAME_GLOBAL) - { - double latitude = uas->getLatitude(); - double longitude = uas->getLongitude(); - double altitude = uas->getAltitudeAMSL(); - - Imagery::LLtoUTM(latitude, longitude, x, y, utmZone); - z = -altitude; - } - else if (frame == MAV_FRAME_LOCAL_NED) - { - x = uas->getLocalX(); - y = uas->getLocalY(); - z = uas->getLocalZ(); - } - - roll = uas->getRoll(); - pitch = uas->getPitch(); - yaw = uas->getYaw(); -} - -void -Pixhawk3DWidget::getPose(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z, - double& roll, double& pitch, double& yaw) const -{ - QString utmZone; - getPose(uas, frame, x, y, z, roll, pitch, yaw, utmZone); -} - -void -Pixhawk3DWidget::getPosition(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z, - QString& utmZone) const -{ - if (!uas) - { - return; - } - - if (frame == MAV_FRAME_GLOBAL) - { - double latitude = uas->getLatitude(); - double longitude = uas->getLongitude(); - double altitude = uas->getAltitudeAMSL(); - - Imagery::LLtoUTM(latitude, longitude, x, y, utmZone); - z = -altitude; - } - else if (frame == MAV_FRAME_LOCAL_NED) - { - x = uas->getLocalX(); - y = uas->getLocalY(); - z = uas->getLocalZ(); - } -} - -void -Pixhawk3DWidget::getPosition(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z) const -{ - QString utmZone; - getPosition(uas, frame, x, y, z, utmZone); -} - -osg::ref_ptr -Pixhawk3DWidget::createLocalGrid(void) -{ - osg::ref_ptr geode(new osg::Geode()); - osg::ref_ptr fineGeometry(new osg::Geometry()); - osg::ref_ptr coarseGeometry(new osg::Geometry()); - geode->addDrawable(fineGeometry); - geode->addDrawable(coarseGeometry); - - float radius = 5.0f; - float resolution = 0.25f; - - osg::ref_ptr fineCoords(new osg::Vec3Array); - osg::ref_ptr coarseCoords(new osg::Vec3Array); - - // draw a 10m x 10m grid with 0.25m resolution - for (float i = -radius; i <= radius; i += resolution) - { - if (fabs(i / 1.0f - floor(i / 1.0f)) < 0.01f) - { - coarseCoords->push_back(osg::Vec3(i, -radius, 0.0f)); - coarseCoords->push_back(osg::Vec3(i, radius, 0.0f)); - coarseCoords->push_back(osg::Vec3(-radius, i, 0.0f)); - coarseCoords->push_back(osg::Vec3(radius, i, 0.0f)); - } - else - { - fineCoords->push_back(osg::Vec3(i, -radius, 0.0f)); - fineCoords->push_back(osg::Vec3(i, radius, 0.0f)); - fineCoords->push_back(osg::Vec3(-radius, i, 0.0f)); - fineCoords->push_back(osg::Vec3(radius, i, 0.0f)); - } - } - - fineGeometry->setVertexArray(fineCoords); - coarseGeometry->setVertexArray(coarseCoords); - - osg::ref_ptr color(new osg::Vec4Array); - color->push_back(osg::Vec4(0.5f, 0.5f, 0.5f, 1.0f)); - fineGeometry->setColorArray(color); - coarseGeometry->setColorArray(color); - fineGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - coarseGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - fineGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, - 0, fineCoords->size())); - coarseGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, 0, - coarseCoords->size())); - - osg::ref_ptr fineStateset(new osg::StateSet); - osg::ref_ptr fineLinewidth(new osg::LineWidth()); - fineLinewidth->setWidth(0.25f); - fineStateset->setAttributeAndModes(fineLinewidth, osg::StateAttribute::ON); - fineStateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - fineStateset->setMode(GL_LINE_SMOOTH, osg::StateAttribute::ON); - fineStateset->setMode(GL_BLEND, osg::StateAttribute::ON); - fineGeometry->setStateSet(fineStateset); - - osg::ref_ptr coarseStateset(new osg::StateSet); - osg::ref_ptr coarseLinewidth(new osg::LineWidth()); - coarseLinewidth->setWidth(1.0f); - coarseStateset->setAttributeAndModes(coarseLinewidth, osg::StateAttribute::ON); - coarseStateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - coarseStateset->setMode(GL_LINE_SMOOTH, osg::StateAttribute::ON); - coarseStateset->setMode(GL_BLEND, osg::StateAttribute::ON); - coarseGeometry->setStateSet(coarseStateset); - - return geode; -} - -osg::ref_ptr -Pixhawk3DWidget::createWorldGrid(void) -{ - osg::ref_ptr geode(new osg::Geode()); - osg::ref_ptr fineGeometry(new osg::Geometry()); - osg::ref_ptr coarseGeometry(new osg::Geometry()); - osg::ref_ptr axisGeometry(new osg::Geometry()); - geode->addDrawable(fineGeometry); - geode->addDrawable(coarseGeometry); - geode->addDrawable(axisGeometry.get()); - - float radius = 20.0f; - float resolution = 1.0f; - - osg::ref_ptr fineCoords(new osg::Vec3Array); - osg::ref_ptr coarseCoords(new osg::Vec3Array); - - // draw a 40m x 40m grid with 1.0m resolution - for (float i = -radius; i <= radius; i += resolution) - { - if (fabs(i / 5.0f - floor(i / 5.0f)) < 0.01f) - { - coarseCoords->push_back(osg::Vec3(i, -radius, 0.0f)); - coarseCoords->push_back(osg::Vec3(i, radius, 0.0f)); - coarseCoords->push_back(osg::Vec3(-radius, i, 0.0f)); - coarseCoords->push_back(osg::Vec3(radius, i, 0.0f)); - } - else - { - fineCoords->push_back(osg::Vec3(i, -radius, 0.0f)); - fineCoords->push_back(osg::Vec3(i, radius, 0.0f)); - fineCoords->push_back(osg::Vec3(-radius, i, 0.0f)); - fineCoords->push_back(osg::Vec3(radius, i, 0.0f)); - } - } - - fineGeometry->setVertexArray(fineCoords); - coarseGeometry->setVertexArray(coarseCoords); - - osg::ref_ptr color(new osg::Vec4Array); - color->push_back(osg::Vec4(0.5f, 0.5f, 0.5f, 1.0f)); - fineGeometry->setColorArray(color); - coarseGeometry->setColorArray(color); - fineGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - coarseGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - fineGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, - 0, fineCoords->size())); - coarseGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, 0, - coarseCoords->size())); - - osg::ref_ptr fineStateset(new osg::StateSet); - osg::ref_ptr fineLinewidth(new osg::LineWidth()); - fineLinewidth->setWidth(0.1f); - fineStateset->setAttributeAndModes(fineLinewidth, osg::StateAttribute::ON); - fineStateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - fineStateset->setMode(GL_LINE_SMOOTH, osg::StateAttribute::ON); - fineStateset->setMode(GL_BLEND, osg::StateAttribute::ON); - fineGeometry->setStateSet(fineStateset); - - osg::ref_ptr coarseStateset(new osg::StateSet); - osg::ref_ptr coarseLinewidth(new osg::LineWidth()); - coarseLinewidth->setWidth(2.0f); - coarseStateset->setAttributeAndModes(coarseLinewidth, osg::StateAttribute::ON); - coarseStateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - coarseStateset->setMode(GL_LINE_SMOOTH, osg::StateAttribute::ON); - coarseStateset->setMode(GL_BLEND, osg::StateAttribute::ON); - coarseGeometry->setStateSet(coarseStateset); - - // add axes - osg::ref_ptr coords(new osg::Vec3Array(6)); - (*coords)[0] = (*coords)[2] = (*coords)[4] = - osg::Vec3(0.0f, 0.0f, 0.0f); - (*coords)[1] = osg::Vec3(0.0f, 1.0f, 0.0f); - (*coords)[3] = osg::Vec3(1.0f, 0.0f, 0.0f); - (*coords)[5] = osg::Vec3(0.0f, 0.0f, -1.0f); - - axisGeometry->setVertexArray(coords); - - osg::Vec4 redColor(1.0f, 0.0f, 0.0f, 0.0f); - osg::Vec4 greenColor(0.0f, 1.0f, 0.0f, 0.0f); - osg::Vec4 blueColor(0.0f, 0.0f, 1.0f, 0.0f); - - osg::ref_ptr axisColors(new osg::Vec4Array(6)); - (*axisColors)[0] = redColor; - (*axisColors)[1] = redColor; - (*axisColors)[2] = greenColor; - (*axisColors)[3] = greenColor; - (*axisColors)[4] = blueColor; - (*axisColors)[5] = blueColor; - - axisGeometry->setColorArray(axisColors); - axisGeometry->setColorBinding(osg::Geometry::BIND_PER_VERTEX); - - axisGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, 0, 6)); - - osg::ref_ptr axisStateset(new osg::StateSet); - osg::ref_ptr axisLinewidth(new osg::LineWidth()); - axisLinewidth->setWidth(4.0f); - axisStateset->setAttributeAndModes(axisLinewidth, osg::StateAttribute::ON); - axisStateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - axisGeometry->setStateSet(axisStateset); - - return geode; -} - -osg::ref_ptr -Pixhawk3DWidget::createTrail(const osg::Vec4& color) -{ - osg::ref_ptr geometry(new osg::Geometry()); - geometry->setUseDisplayList(false); - - osg::ref_ptr vertices(new osg::Vec3dArray()); - geometry->setVertexArray(vertices); - - osg::ref_ptr drawArrays(new osg::DrawArrays(osg::PrimitiveSet::LINE_STRIP)); - geometry->addPrimitiveSet(drawArrays); - - osg::ref_ptr colorArray(new osg::Vec4Array); - colorArray->push_back(color); - geometry->setColorArray(colorArray); - geometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - osg::ref_ptr stateset(new osg::StateSet); - osg::ref_ptr linewidth(new osg::LineWidth()); - linewidth->setWidth(1.0f); - stateset->setAttributeAndModes(linewidth, osg::StateAttribute::ON); - stateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - geometry->setStateSet(stateset); - - return geometry; -} - -osg::ref_ptr -Pixhawk3DWidget::createLink(const QColor& color) -{ - osg::ref_ptr geometry(new osg::Geometry()); - geometry->setUseDisplayList(false); - - osg::ref_ptr vertices(new osg::Vec3dArray()); - geometry->setVertexArray(vertices); - - osg::ref_ptr drawArrays(new osg::DrawArrays(osg::PrimitiveSet::LINES)); - geometry->addPrimitiveSet(drawArrays); - - osg::ref_ptr colorArray(new osg::Vec4Array); - colorArray->push_back(osg::Vec4(color.redF(), color.greenF(), color.blueF(), 1.0f)); - geometry->setColorArray(colorArray); - geometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - osg::ref_ptr stateset(new osg::StateSet); - osg::ref_ptr linewidth(new osg::LineWidth()); - linewidth->setWidth(3.0f); - stateset->setAttributeAndModes(linewidth, osg::StateAttribute::ON); - stateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - stateset->setMode(GL_LINE_SMOOTH, osg::StateAttribute::ON); - stateset->setMode(GL_BLEND, osg::StateAttribute::ON); - geometry->setStateSet(stateset); - - return geometry; -} - -osg::ref_ptr -Pixhawk3DWidget::createImagery(void) -{ - return osg::ref_ptr(new Imagery()); -} - -osg::ref_ptr -Pixhawk3DWidget::createPointCloud(void) -{ - int frameSize = 752 * 480; - - osg::ref_ptr geode(new osg::Geode); - osg::ref_ptr geometry(new osg::Geometry); - - osg::ref_ptr vertices(new osg::Vec3Array(frameSize)); - geometry->setVertexArray(vertices); - - osg::ref_ptr colors(new osg::Vec4Array(frameSize)); - geometry->setColorArray(colors); - geometry->setColorBinding(osg::Geometry::BIND_PER_VERTEX); - geometry->setUseDisplayList(false); - - geode->addDrawable(geometry); - - return geode; -} - -osg::ref_ptr -Pixhawk3DWidget::createTarget(const QColor& color) -{ - osg::ref_ptr pat = - new osg::PositionAttitudeTransform; - - pat->setPosition(osg::Vec3d(0.0, 0.0, 0.0)); - - osg::ref_ptr cone = new osg::Cone(osg::Vec3f(0.0f, 0.0f, 0.0f), 0.2f, 0.6f); - osg::ref_ptr coneDrawable = new osg::ShapeDrawable(cone); - coneDrawable->setColor(osg::Vec4f(color.redF(), color.greenF(), color.blueF(), 1.0f)); - coneDrawable->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - osg::ref_ptr coneGeode = new osg::Geode; - coneGeode->addDrawable(coneDrawable); - coneGeode->setName("Target"); - - pat->addChild(coneGeode); - - return pat; -} - -void -Pixhawk3DWidget::setupHUD(void) -{ - osg::ref_ptr hudColors(new osg::Vec4Array); - hudColors->push_back(osg::Vec4(0.0f, 0.0f, 0.0f, 0.5f)); - hudColors->push_back(osg::Vec4(0.0f, 0.0f, 0.0f, 1.0f)); - - mHudBackgroundGeometry = new osg::Geometry; - mHudBackgroundGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::POLYGON, - 0, 4)); - mHudBackgroundGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::POLYGON, - 4, 4)); - mHudBackgroundGeometry->setColorArray(hudColors); - mHudBackgroundGeometry->setColorBinding(osg::Geometry::BIND_PER_PRIMITIVE_SET); - mHudBackgroundGeometry->setUseDisplayList(false); - - mStatusText = new osgText::Text; - mStatusText->setCharacterSize(11); - mStatusText->setFont(m3DWidget->font()); - mStatusText->setAxisAlignment(osgText::Text::SCREEN); - mStatusText->setColor(osg::Vec4(255, 255, 255, 1)); - - osg::ref_ptr statusGeode = new osg::Geode; - statusGeode->addDrawable(mHudBackgroundGeometry); - statusGeode->addDrawable(mStatusText); - m3DWidget->hudGroup()->addChild(statusGeode); - - mScaleGeode = new HUDScaleGeode; - mScaleGeode->init(m3DWidget->font()); - m3DWidget->hudGroup()->addChild(mScaleGeode); -} - -void -Pixhawk3DWidget::resizeHUD(int width, int height) -{ - int topHUDHeight = 25; - int bottomHUDHeight = 25; - - osg::Vec3Array* vertices = static_cast(mHudBackgroundGeometry->getVertexArray()); - if (vertices == NULL || vertices->size() != 8) - { - osg::ref_ptr newVertices = new osg::Vec3Array(8); - mHudBackgroundGeometry->setVertexArray(newVertices); - - vertices = static_cast(mHudBackgroundGeometry->getVertexArray()); - } - - (*vertices)[0] = osg::Vec3(0, height, -1); - (*vertices)[1] = osg::Vec3(width, height, -1); - (*vertices)[2] = osg::Vec3(width, height - topHUDHeight, -1); - (*vertices)[3] = osg::Vec3(0, height - topHUDHeight, -1); - (*vertices)[4] = osg::Vec3(0, 0, -1); - (*vertices)[5] = osg::Vec3(width, 0, -1); - (*vertices)[6] = osg::Vec3(width, bottomHUDHeight, -1); - (*vertices)[7] = osg::Vec3(0, bottomHUDHeight, -1); - - mStatusText->setPosition(osg::Vec3(10, height - 15, -1.5)); - - QMutableMapIterator it(mSystemContainerMap); - while (it.hasNext()) - { - it.next(); - - SystemContainer& systemData = it.value(); - - if (systemData.rgbImageNode().valid() && - systemData.depthImageNode().valid()) - { - int windowWidth = (width - 20) / 2; - int windowHeight = 3 * windowWidth / 4; - systemData.rgbImageNode()->setAttributes(10, - (height - windowHeight) / 2, - windowWidth, - windowHeight); - systemData.depthImageNode()->setAttributes(width / 2, - (height - windowHeight) / 2, - windowWidth, - windowHeight); - } - } -} - -void -Pixhawk3DWidget::updateHUD(UASInterface* uas, MAV_FRAME frame) -{ - if (!uas) return; - // display pose of current system - double x = 0.0; - double y = 0.0; - double z = 0.0; - double roll = 0.0; - double pitch = 0.0; - double yaw = 0.0; - QString utmZone; - - getPose(uas, frame, x, y, z, roll, pitch, yaw, utmZone); - - QPointF cursorPosition = - m3DWidget->worldCursorPosition(m3DWidget->mouseCursorCoords(), -z); - - std::ostringstream oss; - oss.setf(std::ios::fixed, std::ios::floatfield); - oss.precision(2); - oss << "MAV " << uas->getUASID() << ": "; - - if (frame == MAV_FRAME_GLOBAL) - { - double latitude, longitude; - Imagery::UTMtoLL(x, y, utmZone, latitude, longitude); - - double cursorLatitude, cursorLongitude; - Imagery::UTMtoLL(cursorPosition.x(), cursorPosition.y(), - utmZone, cursorLatitude, cursorLongitude); - - oss.precision(6); - oss << " Lat = " << latitude << - " Lon = " << longitude; - - oss.precision(2); - oss << " Altitude = " << -z << - " r = " << roll << - " p = " << pitch << - " y = " << yaw; - - oss.precision(6); - oss << " Cursor [" << cursorLatitude << - " " << cursorLongitude << "]"; - } - else if (frame == MAV_FRAME_LOCAL_NED) - { - oss << " x = " << x << - " y = " << y << - " z = " << z << - " r = " << roll << - " p = " << pitch << - " y = " << yaw << - " Cursor [" << cursorPosition.x() << - " " << cursorPosition.y() << "]"; - } - - mStatusText->setText(oss.str()); - - bool darkBackground = true; - if (frame == MAV_FRAME_GLOBAL && - mImageryNode->getImageryType() == Imagery::GOOGLE_MAP) - { - darkBackground = false; - } - - mScaleGeode->update(height(), m3DWidget->cameraParams().fov(), - m3DWidget->cameraManipulator()->getDistance(), - darkBackground); -} - -void -Pixhawk3DWidget::updateTrails(double robotX, double robotY, double robotZ, - osg::ref_ptr& trailNode, - osg::ref_ptr& orientationNode, - QMap >& trailMap, - QMap& trailIndexMap) -{ - QMapIterator it(trailIndexMap); - - while (it.hasNext()) - { - it.next(); - - // update trail - osg::Geometry* geometry = trailNode->getDrawable(it.value() * 2)->asGeometry(); - osg::DrawArrays* drawArrays = reinterpret_cast(geometry->getPrimitiveSet(0)); - - osg::ref_ptr vertices(new osg::Vec3Array); - - const QVector& trail = trailMap.value(it.key()); - - vertices->reserve(trail.size()); - for (int i = 0; i < trail.size(); ++i) - { - vertices->push_back(osg::Vec3d(trail[i].y() - robotY, - trail[i].x() - robotX, - -(trail[i].z() - robotZ))); - } - - geometry->setVertexArray(vertices); - drawArrays->setFirst(0); - drawArrays->setCount(vertices->size()); - geometry->dirtyBound(); - - // update link - geometry = trailNode->getDrawable(it.value() * 2 + 1)->asGeometry(); - drawArrays = reinterpret_cast(geometry->getPrimitiveSet(0)); - - vertices = new osg::Vec3Array; - - if (!trail.empty()) - { - QVector3D p(trail.back().x() - robotX, - trail.back().y() - robotY, - trail.back().z() - robotZ); - - double length = p.length(); - p.normalize(); - - for (double i = 0.1; i < length - 0.1; i += 0.3) - { - QVector3D v = p * i; - - vertices->push_back(osg::Vec3d(v.y(), v.x(), -v.z())); - } - } - if (vertices->size() % 2 == 1) - { - vertices->pop_back(); - } - - geometry->setVertexArray(vertices); - drawArrays->setFirst(0); - drawArrays->setCount(vertices->size()); - geometry->dirtyBound(); - - if (!trail.empty()) - { - osg::PositionAttitudeTransform* pat = - dynamic_cast(orientationNode->getChild(it.value())); - pat->setPosition(osg::Vec3(trail.back().y() - robotY, - trail.back().x() - robotX, - -(trail.back().z() - robotZ))); - } - } -} - -void -Pixhawk3DWidget::updateImagery(double originX, double originY, - const QString& zone, MAV_FRAME frame) -{ - if (mImageryNode->getImageryType() == Imagery::BLANK_MAP) - { - return; - } - - double viewingRadius = m3DWidget->cameraManipulator()->getDistance() * 10.0; - if (viewingRadius < 200.0) - { - viewingRadius = 200.0; - } - - double minResolution = 0.25; - double centerResolution = m3DWidget->cameraManipulator()->getDistance() / 50.0; - double maxResolution = 1048576.0; - - Imagery::Type imageryType = mImageryNode->getImageryType(); - switch (imageryType) - { - case Imagery::GOOGLE_MAP: - minResolution = 0.25; - break; - case Imagery::GOOGLE_SATELLITE: - minResolution = 0.5; - break; - case Imagery::OFFLINE_SATELLITE: - minResolution = 0.5; - maxResolution = 0.5; - break; - default: - {} - } - - double resolution = minResolution; - while (resolution * 2.0 < centerResolution) - { - resolution *= 2.0; - } - - if (resolution > maxResolution) - { - resolution = maxResolution; - } - - double x = m3DWidget->cameraManipulator()->getCenter().y(); - double y = m3DWidget->cameraManipulator()->getCenter().x(); - - double xOffset = 0.0; - double yOffset = 0.0; - - if (frame == MAV_FRAME_LOCAL_NED) - { - xOffset = originX; - yOffset = originY; - } - - mImageryNode->draw3D(viewingRadius, - resolution, - x + xOffset, - y + yOffset, - -xOffset, - -yOffset, - zone); - - // prefetch map tiles - if (resolution / 2.0 >= minResolution) - { - mImageryNode->prefetch3D(viewingRadius / 2.0, - resolution / 2.0, - x + xOffset, - y + yOffset, - zone); - } - if (resolution * 2.0 <= maxResolution) - { - mImageryNode->prefetch3D(viewingRadius * 2.0, - resolution * 2.0, - x + xOffset, - y + yOffset, - zone); - } - - mImageryNode->update(); -} - -void -Pixhawk3DWidget::updateTarget(UASInterface* uas, MAV_FRAME frame, - double robotX, double robotY, double robotZ, - QVector4D& target, - osg::ref_ptr& targetNode) -{ - Q_UNUSED(uas); - Q_UNUSED(frame); - - osg::PositionAttitudeTransform* pat = - dynamic_cast(targetNode.get()); - - pat->setPosition(osg::Vec3d(target.y() - robotY, - target.x() - robotX, - -(target.z() - robotZ))); - pat->setAttitude(osg::Quat(target.w() - M_PI_2, osg::Vec3d(1.0f, 0.0f, 0.0f), - M_PI_2, osg::Vec3d(0.0f, 1.0f, 0.0f), - 0.0, osg::Vec3d(0.0f, 0.0f, 1.0f))); -} - -void -Pixhawk3DWidget::updateWaypoints(UASInterface* uas, MAV_FRAME frame, - osg::ref_ptr& waypointGroupNode) -{ - waypointGroupNode->update(uas, frame); -} - -int -Pixhawk3DWidget::findWaypoint(const QPoint& mousePos) -{ - if (!m3DWidget->getSceneData() || !mActiveUAS) - { - return -1; - } - - SystemContainer& systemData = mSystemContainerMap[mActiveUAS->getUASID()]; - osg::ref_ptr& waypointGroupNode = systemData.waypointGroupNode(); - - osgUtil::LineSegmentIntersector::Intersections intersections; - - QPoint widgetMousePos = m3DWidget->mapFromParent(mousePos); - - if (m3DWidget->computeIntersections(widgetMousePos.x(), - m3DWidget->height() - widgetMousePos.y(), - intersections)) - { - for (osgUtil::LineSegmentIntersector::Intersections::iterator - it = intersections.begin(); it != intersections.end(); it++) - { - for (uint i = 0 ; i < it->nodePath.size(); ++i) - { - osg::Node* node = it->nodePath[i]; - std::string nodeName = node->getName(); - if (nodeName.substr(0, 2).compare("wp") == 0) - { - if (node->getParent(0)->getParent(0) == waypointGroupNode.get()) - { - return atoi(nodeName.substr(2).c_str()); - } - } - } - } - } - - return -1; -} - - -bool -Pixhawk3DWidget::findTarget(int mouseX, int mouseY) -{ - if (m3DWidget->getSceneData()) - { - osgUtil::LineSegmentIntersector::Intersections intersections; - - if (m3DWidget->computeIntersections(mouseX, height() - mouseY, intersections)) - { - for (osgUtil::LineSegmentIntersector::Intersections::iterator - it = intersections.begin(); it != intersections.end(); it++) - { - for (uint i = 0 ; i < it->nodePath.size(); ++i) - { - std::string nodeName = it->nodePath[i]->getName(); - if (nodeName.compare("Target") == 0) - { - return true; - } - } - } - } - } - - return false; -} - -bool -Pixhawk3DWidget::findTerrain(const QPoint& mousePos) -{ - if (!m3DWidget->getSceneData() || !mActiveUAS) - { - return -1; - } - - osgUtil::LineSegmentIntersector::Intersections intersections; - - QPoint widgetMousePos = m3DWidget->mapFromParent(mousePos); - - if (m3DWidget->computeIntersections(widgetMousePos.x(), - m3DWidget->height() - widgetMousePos.y(), - intersections)) - { - for (osgUtil::LineSegmentIntersector::Intersections::iterator - it = intersections.begin(); it != intersections.end(); it++) - { - for (uint i = 0 ; i < it->nodePath.size(); ++i) - { - osg::Node* node = it->nodePath[i]; - std::string nodeName = node->getName(); - - if (nodeName.compare("terrain") == 0) - { - return true; - } - } - } - } - - return false; -} - -void -Pixhawk3DWidget::showInsertWaypointMenu(const QPoint &cursorPos) -{ - QMenu menu; - menu.addAction("Insert new waypoint", this, SLOT(insertWaypoint())); - menu.addAction("Clear all waypoints", this, SLOT(clearAllWaypoints())); - menu.addAction("Select target", this, SLOT(selectTarget())); - menu.exec(cursorPos); -} - -void -Pixhawk3DWidget::showEditWaypointMenu(const QPoint &cursorPos) -{ - QMenu menu; - - QString text; - text = QString("Move waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(moveWaypointPosition())); - - text = QString("Change heading of waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(moveWaypointHeading())); - - text = QString("Change altitude of waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(setWaypointAltitude())); - - text = QString("Delete waypoint %1").arg(QString::number(mSelectedWpIndex)); - menu.addAction(text, this, SLOT(deleteWaypoint())); - - menu.addAction("Clear all waypoints", this, SLOT(clearAllWaypoints())); - menu.exec(cursorPos); -} - -void -Pixhawk3DWidget::showTerrainMenu(const QPoint &cursorPos) -{ - QMenu menu; - menu.addAction("Edit terrain parameters", this, SLOT(showTerrainParamWindow())); - menu.exec(cursorPos); -} diff --git a/src/ui/map3D/Pixhawk3DWidget.h b/src/ui/map3D/Pixhawk3DWidget.h deleted file mode 100644 index 6087e6328d08acf2c455d0282e9b9ae4e4dfb081..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Pixhawk3DWidget.h +++ /dev/null @@ -1,211 +0,0 @@ -///*===================================================================== -// -//QGroundControl Open Source Ground Control Station -// -//(c) 2009, 2010 QGROUNDCONTROL PROJECT -// -//This file is part of the QGROUNDCONTROL project -// -// QGROUNDCONTROL is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// QGROUNDCONTROL is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with QGROUNDCONTROL. If not, see . -// -//======================================================================*/ - -/** - * @file - * @brief Definition of the class Pixhawk3DWidget. - * - * @author Lionel Heng - * - */ - -#ifndef PIXHAWK3DWIDGET_H -#define PIXHAWK3DWIDGET_H - -#include - -#include "HUDScaleGeode.h" -#include "Imagery.h" -#include "Q3DWidget.h" -#include "SystemContainer.h" -#include "ViewParamWidget.h" - -class UASInterface; - -/** - * @brief A 3D View widget which displays vehicle-centric information. - **/ -class Pixhawk3DWidget : public QWidget -{ - Q_OBJECT - -public: - explicit Pixhawk3DWidget(QWidget* parent = 0); - ~Pixhawk3DWidget(); - -public slots: - void activeSystemChanged(UASInterface* uas); - void systemCreated(UASInterface* uas); - void localPositionChanged(UASInterface* uas, int component, double x, double y, double z, quint64 time); - void localPositionChanged(UASInterface* uas, double x, double y, double z, quint64 time); - void attitudeChanged(UASInterface* uas, int component, double roll, double pitch, double yaw, quint64 time); - void attitudeChanged(UASInterface* uas, double roll, double pitch, double yaw, quint64 time); - void homePositionChanged(int uasId, double lat, double lon, double alt); - void setpointChanged(int uasId, float x, float y, float z, float yaw); - -signals: - void systemCreatedSignal(UASInterface* uas); - void overlayCreatedSignal(int systemId, const QString& name); - -private slots: - void clearData(void); - void showTerrainParamWindow(void); - void showViewParamWindow(void); - void followCameraChanged(int systemId); - void imageryParamsChanged(void); - void recenterActiveCamera(void); - void modelChanged(int systemId, int index); - void setBirdEyeView(void); - void loadTerrainModel(void); - - void selectTargetHeading(void); - void selectTarget(void); - void setTarget(void); - void insertWaypoint(void); - void moveWaypointPosition(void); - void moveWaypointHeading(void); - void deleteWaypoint(void); - void setWaypointAltitude(void); - void clearAllWaypoints(void); - - void moveImagery(void); - void moveTerrain(void); - void rotateTerrain(void); - - void sizeChanged(int width, int height); - void updateWidget(void); - -protected: - void addModels(QVector< osg::ref_ptr >& models, - const QColor& systemColor); - void buildLayout(void); - - void keyPressEvent(QKeyEvent* event); - void keyReleaseEvent(QKeyEvent* event); - void mousePressEvent(QMouseEvent* event); - void mouseReleaseEvent(QMouseEvent* event); - void mouseMoveEvent(QMouseEvent* event); - void wheelEvent(QWheelEvent* event); - - void showEvent(QShowEvent* event); - void hideEvent(QHideEvent* event); - -signals: - void visibilityChanged(bool visible); - -private: - void initializeSystem(int systemId, const QColor& systemColor); - - void getPose(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z, - double& roll, double& pitch, double& yaw, - QString& utmZone) const; - void getPose(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z, - double& roll, double& pitch, double& yaw) const; - void getPosition(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z, - QString& utmZone) const; - void getPosition(UASInterface* uas, - MAV_FRAME frame, - double& x, double& y, double& z) const; - - osg::ref_ptr createLocalGrid(void); - osg::ref_ptr createWorldGrid(void); - osg::ref_ptr createTrail(const osg::Vec4& color); - osg::ref_ptr createLink(const QColor& color); - osg::ref_ptr createImagery(void); - osg::ref_ptr createPointCloud(void); - osg::ref_ptr createTarget(const QColor& color); - - void setupHUD(void); - void resizeHUD(int width, int height); - - void updateHUD(UASInterface* uas, MAV_FRAME frame); - void updateImagery(double originX, double originY, - const QString& zone, MAV_FRAME frame); - void updateTarget(UASInterface* uas, MAV_FRAME frame, - double robotX, double robotY, double robotZ, - QVector4D& target, - osg::ref_ptr& targetNode); - void updateTrails(double robotX, double robotY, double robotZ, - osg::ref_ptr& trailNode, - osg::ref_ptr& orientationNode, - QMap >& trailMap, - QMap& trailIndexMap); - void updateWaypoints(UASInterface* uas, MAV_FRAME frame, - osg::ref_ptr& waypointGroupNode); - - int findWaypoint(const QPoint& mousePos); - bool findTarget(int mouseX, int mouseY); - bool findTerrain(const QPoint& mousePos); - void showInsertWaypointMenu(const QPoint& cursorPos); - void showEditWaypointMenu(const QPoint& cursorPos); - void showTerrainMenu(const QPoint& cursorPos); - - const qreal kMessageTimeout; // message timeout in seconds - - enum Mode { - DEFAULT_MODE, - MOVE_WAYPOINT_POSITION_MODE, - MOVE_WAYPOINT_HEADING_MODE, - SELECT_TARGET_HEADING_MODE, - MOVE_TERRAIN_MODE, - ROTATE_TERRAIN_MODE, - MOVE_IMAGERY_MODE - }; - Mode mMode; - int mSelectedWpIndex; - - int mActiveSystemId; - UASInterface* mActiveUAS; - - GlobalViewParamsPtr mGlobalViewParams; - - // maps system id to system-specific view parameters - QMap mSystemViewParamMap; - - // maps system id to system-specific data - QMap mSystemContainerMap; - - osg::ref_ptr mHudBackgroundGeometry; - osg::ref_ptr mImageryNode; - osg::ref_ptr mScaleGeode; - osg::ref_ptr mStatusText; - osg::ref_ptr mTerrainNode; - osg::ref_ptr mTerrainPAT; - osg::ref_ptr mWorldGridNode; - - QPoint mCachedMousePos; - int mFollowCameraId; - QVector3D mCameraPos; - bool mInitCameraPos; - - Q3DWidget* m3DWidget; - ViewParamWidget* mViewParamWidget; -}; - -#endif // PIXHAWK3DWIDGET_H diff --git a/src/ui/map3D/PixhawkCheetahNode.cc b/src/ui/map3D/PixhawkCheetahNode.cc deleted file mode 100644 index 58be1fdaeb2a6d0101f1912f3e26a68de2733bf1..0000000000000000000000000000000000000000 --- a/src/ui/map3D/PixhawkCheetahNode.cc +++ /dev/null @@ -1,59416 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Generates a OpenSceneGraph node which renders a - * Pixhawk Cheetah MAV. - * - * @author Lionel Heng - * - */ - -#include -#include - -#include "PixhawkCheetahNode.h" - -struct sample_MATERIAL { - GLfloat ambient[3]; - GLfloat diffuse[3]; - GLfloat specular[3]; - GLfloat emission[3]; - GLfloat alpha; - GLfloat phExp; - int texture; -}; - -static sample_MATERIAL materials [1] = { - {{0.117647f,0.117647f,0.117647f}, {0.596078f,0.666667f,0.686275f}, {0.301176f,0.301176f,0.301176f}, {0.0f,0.0f,0.0f}, 1.0f,8.0f,-1} //Material #1 -}; - -// 38747 Vertices -// 0 Texture Coordinates -// 22155 Normals -// 77848 Triangles - -static unsigned short face_indicies[77848][9] = { -// Battery3.prt - {0,1,2 ,0,1,0 ,0,0,0}, {3,4,5 ,2,2,3 ,0,0,0}, {3,2,4 ,2,0,2 ,0,0,0}, - {5,4,6 ,3,2,3 ,0,0,0}, {2,3,0 ,0,2,0 ,0,0,0}, {7,1,0 ,1,1,0 ,0,0,0}, - {8,7,9 ,4,1,4 ,0,0,0}, {7,8,1 ,1,4,1 ,0,0,0}, {10,11,12 ,5,6,5 ,0,0,0}, - {13,14,15 ,7,7,8 ,0,0,0}, {13,12,14 ,7,5,7 ,0,0,0}, {15,14,16 ,8,7,8 ,0,0,0}, - {12,13,10 ,5,7,5 ,0,0,0}, {17,11,10 ,9,6,5 ,0,0,0}, {18,17,19 ,10,9,11 ,0,0,0}, - {17,18,11 ,9,10,6 ,0,0,0}, {20,21,22 ,12,13,12 ,0,0,0}, {23,24,25 ,14,14,15 ,0,0,0}, - {23,22,24 ,14,12,14 ,0,0,0}, {25,24,26 ,15,14,15 ,0,0,0}, {22,23,20 ,12,14,12 ,0,0,0}, - {27,21,20 ,13,13,12 ,0,0,0}, {28,27,29 ,16,13,16 ,0,0,0}, {27,28,21 ,13,16,13 ,0,0,0}, - {30,31,32 ,17,18,17 ,0,0,0}, {33,34,35 ,19,19,20 ,0,0,0}, {33,32,34 ,19,17,19 ,0,0,0}, - {35,34,36 ,20,19,20 ,0,0,0}, {32,33,30 ,17,19,17 ,0,0,0}, {37,31,30 ,18,18,17 ,0,0,0}, - {38,37,39 ,21,18,21 ,0,0,0}, {37,38,31 ,18,21,18 ,0,0,0}, {40,41,42 ,22,23,24 ,0,0,0}, - {43,44,45 ,25,26,27 ,0,0,0}, {46,40,42 ,28,22,24 ,0,0,0}, {45,44,46 ,27,26,28 ,0,0,0}, - {44,43,47 ,26,25,29 ,0,0,0}, {42,45,46 ,24,27,28 ,0,0,0}, {48,49,50 ,30,31,32 ,0,0,0}, - {49,51,50 ,31,33,32 ,0,0,0}, {47,52,48 ,29,34,30 ,0,0,0}, {49,48,52 ,31,30,34 ,0,0,0}, - {53,54,55 ,35,36,37 ,0,0,0}, {56,57,51 ,38,39,33 ,0,0,0}, {54,57,56 ,36,39,38 ,0,0,0}, - {54,56,55 ,36,38,37 ,0,0,0}, {55,58,53 ,37,40,35 ,0,0,0}, {50,51,57 ,32,33,39 ,0,0,0}, - {47,43,52 ,29,25,34 ,0,0,0}, {40,59,41 ,22,41,23 ,0,0,0}, {60,59,61 ,42,41,43 ,0,0,0}, - {59,60,41 ,41,42,23 ,0,0,0}, {62,63,61 ,44,45,43 ,0,0,0}, {60,61,63 ,42,43,45 ,0,0,0}, - {62,64,65 ,44,46,47 ,0,0,0}, {65,63,62 ,47,45,44 ,0,0,0}, {66,64,67 ,48,46,49 ,0,0,0}, - {64,66,65 ,46,48,47 ,0,0,0}, {68,69,67 ,50,51,49 ,0,0,0}, {66,67,69 ,48,49,51 ,0,0,0}, - {68,70,71 ,50,52,53 ,0,0,0}, {71,69,68 ,53,51,50 ,0,0,0}, {72,70,73 ,54,52,54 ,0,0,0}, - {70,72,71 ,52,54,53 ,0,0,0}, {74,75,76 ,22,55,24 ,0,0,0}, {77,78,79 ,56,57,58 ,0,0,0}, - {80,74,76 ,59,22,24 ,0,0,0}, {79,78,80 ,58,57,59 ,0,0,0}, {78,77,81 ,57,56,60 ,0,0,0}, - {76,79,80 ,24,58,59 ,0,0,0}, {82,83,84 ,61,62,63 ,0,0,0}, {83,85,84 ,62,64,63 ,0,0,0}, - {81,86,82 ,60,65,61 ,0,0,0}, {83,82,86 ,62,61,65 ,0,0,0}, {87,88,89 ,66,67,68 ,0,0,0}, - {90,91,85 ,69,70,64 ,0,0,0}, {88,91,90 ,67,70,69 ,0,0,0}, {88,90,89 ,67,69,68 ,0,0,0}, - {89,92,87 ,68,66,66 ,0,0,0}, {84,85,91 ,63,64,70 ,0,0,0}, {81,77,86 ,60,56,65 ,0,0,0}, - {74,93,75 ,22,71,55 ,0,0,0}, {94,93,95 ,72,71,43 ,0,0,0}, {93,94,75 ,71,72,55 ,0,0,0}, - {96,97,95 ,73,74,43 ,0,0,0}, {94,95,97 ,72,43,74 ,0,0,0}, {96,98,99 ,73,46,75 ,0,0,0}, - {99,97,96 ,75,74,73 ,0,0,0}, {100,98,101 ,76,46,77 ,0,0,0}, {98,100,99 ,46,76,75 ,0,0,0}, - {102,103,101 ,50,78,77 ,0,0,0}, {100,101,103 ,76,77,78 ,0,0,0}, - {102,104,105 ,50,79,80 ,0,0,0}, {105,103,102 ,80,78,50 ,0,0,0}, - {106,104,107 ,81,79,82 ,0,0,0}, {104,106,105 ,79,81,80 ,0,0,0}, - {108,109,110 ,83,84,85 ,0,0,0}, {111,112,113 ,86,87,88 ,0,0,0}, - {114,108,110 ,89,83,85 ,0,0,0}, {113,112,114 ,88,87,89 ,0,0,0}, - {112,111,115 ,87,86,90 ,0,0,0}, {110,113,114 ,85,88,89 ,0,0,0}, - {116,117,118 ,91,92,93 ,0,0,0}, {117,119,118 ,92,94,93 ,0,0,0}, - {115,120,116 ,90,95,91 ,0,0,0}, {117,116,120 ,92,91,95 ,0,0,0}, - {121,122,123 ,96,97,98 ,0,0,0}, {124,125,119 ,99,100,94 ,0,0,0}, - {122,125,124 ,97,100,99 ,0,0,0}, {122,124,123 ,97,99,98 ,0,0,0}, - {123,126,121 ,98,101,96 ,0,0,0}, {118,119,125 ,93,94,100 ,0,0,0}, - {115,111,120 ,90,86,95 ,0,0,0}, {108,127,109 ,83,102,84 ,0,0,0}, - {128,127,129 ,103,102,104 ,0,0,0}, {127,128,109 ,102,103,84 ,0,0,0}, - {130,131,129 ,105,106,104 ,0,0,0}, {128,129,131 ,103,104,106 ,0,0,0}, - {130,132,133 ,105,107,108 ,0,0,0}, {133,131,130 ,108,106,105 ,0,0,0}, - {134,132,135 ,109,107,110 ,0,0,0}, {132,134,133 ,107,109,108 ,0,0,0}, - {136,137,135 ,111,112,110 ,0,0,0}, {134,135,137 ,109,110,112 ,0,0,0}, - {136,138,139 ,111,113,114 ,0,0,0}, {139,137,136 ,114,112,111 ,0,0,0}, - {140,138,141 ,54,113,54 ,0,0,0}, {138,140,139 ,113,54,114 ,0,0,0}, - {142,143,144 ,83,115,85 ,0,0,0}, {145,146,147 ,116,117,118 ,0,0,0}, - {148,142,144 ,119,83,85 ,0,0,0}, {147,146,148 ,118,117,119 ,0,0,0}, - {146,145,149 ,117,116,120 ,0,0,0}, {144,147,148 ,85,118,119 ,0,0,0}, - {150,151,152 ,121,122,123 ,0,0,0}, {151,153,152 ,122,124,123 ,0,0,0}, - {149,154,150 ,120,125,121 ,0,0,0}, {151,150,154 ,122,121,125 ,0,0,0}, - {155,156,157 ,126,127,128 ,0,0,0}, {158,159,153 ,129,130,124 ,0,0,0}, - {156,159,158 ,127,130,129 ,0,0,0}, {156,158,157 ,127,129,128 ,0,0,0}, - {157,160,155 ,128,35,126 ,0,0,0}, {152,153,159 ,123,124,130 ,0,0,0}, - {149,145,154 ,120,116,125 ,0,0,0}, {142,161,143 ,83,131,115 ,0,0,0}, - {162,161,163 ,132,131,133 ,0,0,0}, {161,162,143 ,131,132,115 ,0,0,0}, - {164,165,163 ,134,74,133 ,0,0,0}, {162,163,165 ,132,133,74 ,0,0,0}, - {164,166,167 ,134,135,108 ,0,0,0}, {167,165,164 ,108,74,134 ,0,0,0}, - {168,166,169 ,136,135,137 ,0,0,0}, {166,168,167 ,135,136,108 ,0,0,0}, - {170,171,169 ,138,139,137 ,0,0,0}, {168,169,171 ,136,137,139 ,0,0,0}, - {170,172,173 ,138,79,80 ,0,0,0}, {173,171,170 ,80,139,138 ,0,0,0}, - {174,172,175 ,140,79,140 ,0,0,0}, {172,174,173 ,79,140,80 ,0,0,0}, - {176,177,178 ,141,142,143 ,0,0,0}, {179,180,181 ,144,145,146 ,0,0,0}, - {182,176,178 ,147,141,143 ,0,0,0}, {181,180,182 ,146,145,147 ,0,0,0}, - {180,179,183 ,145,144,148 ,0,0,0}, {178,181,182 ,143,146,147 ,0,0,0}, - {184,185,186 ,149,150,151 ,0,0,0}, {185,187,186 ,150,152,151 ,0,0,0}, - {183,188,184 ,148,153,149 ,0,0,0}, {185,184,188 ,150,149,153 ,0,0,0}, - {189,190,191 ,126,154,155 ,0,0,0}, {192,193,187 ,156,157,152 ,0,0,0}, - {190,193,192 ,154,157,156 ,0,0,0}, {190,192,191 ,154,156,155 ,0,0,0}, - {191,194,189 ,155,35,126 ,0,0,0}, {186,187,193 ,151,152,157 ,0,0,0}, - {183,179,188 ,148,144,153 ,0,0,0}, {176,195,177 ,141,158,142 ,0,0,0}, - {196,195,197 ,159,158,160 ,0,0,0}, {195,196,177 ,158,159,142 ,0,0,0}, - {198,199,197 ,161,162,160 ,0,0,0}, {196,197,199 ,159,160,162 ,0,0,0}, - {198,200,201 ,161,163,164 ,0,0,0}, {201,199,198 ,164,162,161 ,0,0,0}, - {202,200,203 ,165,163,166 ,0,0,0}, {200,202,201 ,163,165,164 ,0,0,0}, - {204,205,203 ,167,168,166 ,0,0,0}, {202,203,205 ,165,166,168 ,0,0,0}, - {204,206,207 ,167,169,170 ,0,0,0}, {207,205,204 ,170,168,167 ,0,0,0}, - {208,206,209 ,140,169,140 ,0,0,0}, {206,208,207 ,169,140,170 ,0,0,0}, - {210,211,212 ,171,172,173 ,0,0,0}, {213,214,215 ,174,175,176 ,0,0,0}, - {216,210,212 ,177,171,173 ,0,0,0}, {215,214,216 ,176,175,177 ,0,0,0}, - {214,213,217 ,175,174,178 ,0,0,0}, {212,215,216 ,173,176,177 ,0,0,0}, - {218,219,220 ,179,180,181 ,0,0,0}, {219,221,220 ,180,182,181 ,0,0,0}, - {217,222,218 ,178,183,179 ,0,0,0}, {219,218,222 ,180,179,183 ,0,0,0}, - {223,224,225 ,35,184,185 ,0,0,0}, {226,227,221 ,186,187,182 ,0,0,0}, - {224,227,226 ,184,187,186 ,0,0,0}, {224,226,225 ,184,186,185 ,0,0,0}, - {225,228,223 ,185,40,35 ,0,0,0}, {220,221,227 ,181,182,187 ,0,0,0}, - {217,213,222 ,178,174,183 ,0,0,0}, {210,229,211 ,171,188,172 ,0,0,0}, - {230,229,231 ,189,188,104 ,0,0,0}, {229,230,211 ,188,189,172 ,0,0,0}, - {232,233,231 ,190,45,104 ,0,0,0}, {230,231,233 ,189,104,45 ,0,0,0}, - {232,234,235 ,190,191,192 ,0,0,0}, {235,233,232 ,192,45,190 ,0,0,0}, - {236,234,237 ,193,191,194 ,0,0,0}, {234,236,235 ,191,193,192 ,0,0,0}, - {238,239,237 ,111,195,194 ,0,0,0}, {236,237,239 ,193,194,195 ,0,0,0}, - {238,240,241 ,111,52,53 ,0,0,0}, {241,239,238 ,53,195,111 ,0,0,0}, - {242,240,243 ,54,52,54 ,0,0,0}, {240,242,241 ,52,54,53 ,0,0,0}, - {244,245,246 ,196,197,197 ,0,0,0}, {247,248,249 ,198,196,198 ,0,0,0}, - {248,244,246 ,196,196,197 ,0,0,0}, {247,249,250 ,198,198,199 ,0,0,0}, - {251,252,253 ,200,82,200 ,0,0,0}, {250,249,254 ,199,198,199 ,0,0,0}, - {254,253,250 ,199,200,199 ,0,0,0}, {253,254,251 ,200,199,200 ,0,0,0}, - {252,251,255 ,82,200,201 ,0,0,0}, {248,247,244 ,196,198,196 ,0,0,0}, - {256,246,245 ,202,197,197 ,0,0,0}, {257,256,258 ,203,202,202 ,0,0,0}, - {245,258,256 ,197,202,202 ,0,0,0}, {259,260,257 ,203,204,203 ,0,0,0}, - {257,258,259 ,203,202,203 ,0,0,0}, {260,261,262 ,204,204,205 ,0,0,0}, - {261,260,259 ,204,204,203 ,0,0,0}, {261,263,262 ,204,205,205 ,0,0,0}, - {264,265,266 ,206,207,208 ,0,0,0}, {267,264,268 ,209,206,210 ,0,0,0}, - {264,267,265 ,206,209,207 ,0,0,0}, {269,270,268 ,211,212,210 ,0,0,0}, - {267,268,270 ,209,210,212 ,0,0,0}, {269,271,272 ,211,213,214 ,0,0,0}, - {272,270,269 ,214,212,211 ,0,0,0}, {273,271,274 ,215,213,216 ,0,0,0}, - {271,273,272 ,213,215,214 ,0,0,0}, {275,276,274 ,217,218,216 ,0,0,0}, - {273,274,276 ,215,216,218 ,0,0,0}, {275,277,278 ,217,219,220 ,0,0,0}, - {278,276,275 ,220,218,217 ,0,0,0}, {279,278,277 ,221,220,219 ,0,0,0}, - {279,280,278 ,221,221,220 ,0,0,0}, {264,266,281 ,206,208,222 ,0,0,0}, - {282,283,266 ,223,224,208 ,0,0,0}, {281,266,283 ,222,208,224 ,0,0,0}, - {282,284,285 ,223,225,226 ,0,0,0}, {285,283,282 ,226,224,223 ,0,0,0}, - {286,284,287 ,227,225,228 ,0,0,0}, {284,286,285 ,225,227,226 ,0,0,0}, - {288,289,287 ,229,230,228 ,0,0,0}, {286,287,289 ,227,228,230 ,0,0,0}, - {288,290,291 ,229,231,232 ,0,0,0}, {291,289,288 ,232,230,229 ,0,0,0}, - {292,290,293 ,233,231,234 ,0,0,0}, {290,292,291 ,231,233,232 ,0,0,0}, - {293,294,292 ,234,235,233 ,0,0,0}, {292,294,295 ,233,235,235 ,0,0,0}, - {296,297,298 ,236,237,238 ,0,0,0}, {299,300,296 ,239,240,236 ,0,0,0}, - {296,298,299 ,236,238,239 ,0,0,0}, {300,301,302 ,240,241,242 ,0,0,0}, - {301,300,299 ,241,240,239 ,0,0,0}, {303,302,304 ,243,242,244 ,0,0,0}, - {301,304,302 ,241,244,242 ,0,0,0}, {305,306,303 ,245,246,243 ,0,0,0}, - {303,304,305 ,243,244,245 ,0,0,0}, {307,306,305 ,247,246,245 ,0,0,0}, - {307,308,306 ,247,126,246 ,0,0,0}, {298,297,309 ,238,237,248 ,0,0,0}, - {309,310,311 ,248,249,250 ,0,0,0}, {310,309,297 ,249,248,237 ,0,0,0}, - {312,311,313 ,251,250,252 ,0,0,0}, {310,313,311 ,249,252,250 ,0,0,0}, - {314,315,312 ,253,254,251 ,0,0,0}, {312,313,314 ,251,252,253 ,0,0,0}, - {315,316,317 ,254,255,256 ,0,0,0}, {316,315,314 ,255,254,253 ,0,0,0}, - {316,318,317 ,255,257,256 ,0,0,0}, {317,318,319 ,256,257,257 ,0,0,0}, - {320,321,322 ,258,259,260 ,0,0,0}, {323,320,324 ,261,258,262 ,0,0,0}, - {320,323,321 ,258,261,259 ,0,0,0}, {325,326,324 ,263,264,262 ,0,0,0}, - {323,324,326 ,261,262,264 ,0,0,0}, {325,327,328 ,263,265,266 ,0,0,0}, - {328,326,325 ,266,264,263 ,0,0,0}, {329,327,330 ,267,265,268 ,0,0,0}, - {327,329,328 ,265,267,266 ,0,0,0}, {331,332,330 ,269,270,268 ,0,0,0}, - {329,330,332 ,267,268,270 ,0,0,0}, {331,333,334 ,269,271,272 ,0,0,0}, - {334,332,331 ,272,270,269 ,0,0,0}, {335,334,333 ,273,272,271 ,0,0,0}, - {335,336,334 ,273,273,272 ,0,0,0}, {320,322,337 ,258,260,274 ,0,0,0}, - {338,339,322 ,275,276,260 ,0,0,0}, {337,322,339 ,274,260,276 ,0,0,0}, - {338,340,341 ,275,277,278 ,0,0,0}, {341,339,338 ,278,276,275 ,0,0,0}, - {342,340,343 ,279,277,280 ,0,0,0}, {340,342,341 ,277,279,278 ,0,0,0}, - {344,345,343 ,281,282,280 ,0,0,0}, {342,343,345 ,279,280,282 ,0,0,0}, - {344,346,347 ,281,283,284 ,0,0,0}, {347,345,344 ,284,282,281 ,0,0,0}, - {348,346,349 ,285,283,286 ,0,0,0}, {346,348,347 ,283,285,284 ,0,0,0}, - {349,350,348 ,286,257,285 ,0,0,0}, {348,350,351 ,285,257,257 ,0,0,0}, - {352,353,354 ,287,288,288 ,0,0,0}, {355,356,357 ,289,287,289 ,0,0,0}, - {356,352,354 ,287,287,288 ,0,0,0}, {355,357,358 ,289,289,290 ,0,0,0}, - {359,360,361 ,291,82,291 ,0,0,0}, {358,357,362 ,290,289,290 ,0,0,0}, - {362,361,358 ,290,291,290 ,0,0,0}, {361,362,359 ,291,290,291 ,0,0,0}, - {360,359,363 ,82,291,292 ,0,0,0}, {356,355,352 ,287,289,287 ,0,0,0}, - {364,354,353 ,293,288,288 ,0,0,0}, {365,364,366 ,203,293,293 ,0,0,0}, - {353,366,364 ,288,293,293 ,0,0,0}, {367,368,365 ,203,294,203 ,0,0,0}, - {365,366,367 ,203,293,203 ,0,0,0}, {368,369,370 ,294,294,205 ,0,0,0}, - {369,368,367 ,294,294,203 ,0,0,0}, {369,371,370 ,294,205,205 ,0,0,0}, - {372,373,374 ,295,296,295 ,0,0,0}, {375,373,376 ,296,296,297 ,0,0,0}, - {373,375,374 ,296,296,295 ,0,0,0}, {377,378,376 ,298,297,297 ,0,0,0}, - {375,376,378 ,296,297,297 ,0,0,0}, {377,379,380 ,298,299,298 ,0,0,0}, - {380,378,377 ,298,297,298 ,0,0,0}, {379,381,380 ,299,300,298 ,0,0,0}, - {382,372,374 ,301,295,295 ,0,0,0}, {383,384,382 ,302,301,301 ,0,0,0}, - {372,382,384 ,295,301,301 ,0,0,0}, {383,385,386 ,302,303,302 ,0,0,0}, - {386,384,383 ,302,301,302 ,0,0,0}, {387,385,388 ,303,303,304 ,0,0,0}, - {385,387,386 ,303,303,302 ,0,0,0}, {387,388,389 ,303,304,304 ,0,0,0}, - {390,391,392 ,305,306,305 ,0,0,0}, {393,391,394 ,306,306,307 ,0,0,0}, - {391,393,392 ,306,306,305 ,0,0,0}, {395,396,394 ,308,307,307 ,0,0,0}, - {393,394,396 ,306,307,307 ,0,0,0}, {395,397,398 ,308,309,308 ,0,0,0}, - {398,396,395 ,308,307,308 ,0,0,0}, {397,399,398 ,309,310,308 ,0,0,0}, - {400,390,392 ,311,305,305 ,0,0,0}, {401,402,400 ,312,311,311 ,0,0,0}, - {390,400,402 ,305,311,311 ,0,0,0}, {401,403,404 ,312,313,312 ,0,0,0}, - {404,402,401 ,312,311,312 ,0,0,0}, {405,403,406 ,313,313,314 ,0,0,0}, - {403,405,404 ,313,313,312 ,0,0,0}, {405,406,407 ,313,314,314 ,0,0,0}, - {408,399,397 ,315,309,309 ,0,0,0}, {409,410,411 ,316,317,317 ,0,0,0}, - {412,413,414 ,318,318,315 ,0,0,0}, {415,416,417 ,319,319,320 ,0,0,0}, - {418,419,420 ,316,321,321 ,0,0,0}, {421,422,417 ,322,320,320 ,0,0,0}, - {415,417,422 ,319,320,320 ,0,0,0}, {423,422,421 ,323,320,322 ,0,0,0}, - {419,416,420 ,321,319,321 ,0,0,0}, {420,416,415 ,321,319,319 ,0,0,0}, - {418,410,409 ,316,317,316 ,0,0,0}, {418,409,419 ,316,316,321 ,0,0,0}, - {411,413,412 ,317,318,318 ,0,0,0}, {410,413,411 ,317,318,317 ,0,0,0}, - {408,414,399 ,315,315,309 ,0,0,0}, {412,414,408 ,318,315,315 ,0,0,0}, - {424,425,426 ,324,324,324 ,0,0,0}, {424,426,427 ,324,324,324 ,0,0,0}, - {428,429,430 ,325,326,325 ,0,0,0}, {431,432,428 ,327,327,325 ,0,0,0}, - {428,430,431 ,325,325,327 ,0,0,0}, {432,433,434 ,327,328,329 ,0,0,0}, - {433,432,431 ,328,327,327 ,0,0,0}, {435,434,436 ,330,329,331 ,0,0,0}, - {433,436,434 ,328,331,329 ,0,0,0}, {437,438,435 ,332,332,330 ,0,0,0}, - {435,436,437 ,330,331,332 ,0,0,0}, {438,439,440 ,332,333,334 ,0,0,0}, - {439,438,437 ,333,332,332 ,0,0,0}, {441,440,442 ,335,334,335 ,0,0,0}, - {439,442,440 ,333,335,334 ,0,0,0}, {443,444,441 ,336,336,335 ,0,0,0}, - {441,442,443 ,335,335,336 ,0,0,0}, {430,429,445 ,325,326,337 ,0,0,0}, - {446,445,447 ,338,337,339 ,0,0,0}, {429,447,445 ,326,339,337 ,0,0,0}, - {448,449,446 ,340,341,338 ,0,0,0}, {446,447,448 ,338,339,340 ,0,0,0}, - {449,450,451 ,341,342,343 ,0,0,0}, {450,449,448 ,342,341,340 ,0,0,0}, - {452,451,453 ,344,343,345 ,0,0,0}, {450,453,451 ,342,345,343 ,0,0,0}, - {454,455,452 ,346,347,344 ,0,0,0}, {452,453,454 ,344,345,346 ,0,0,0}, - {455,456,457 ,347,348,349 ,0,0,0}, {456,455,454 ,348,347,346 ,0,0,0}, - {456,28,457 ,348,16,349 ,0,0,0}, {457,28,29 ,349,16,350 ,0,0,0}, - {458,381,379 ,351,299,299 ,0,0,0}, {459,460,461 ,352,353,353 ,0,0,0}, - {462,463,464 ,354,354,351 ,0,0,0}, {465,466,467 ,355,355,356 ,0,0,0}, - {468,469,470 ,352,357,357 ,0,0,0}, {471,472,467 ,358,356,356 ,0,0,0}, - {465,467,472 ,355,356,356 ,0,0,0}, {473,472,471 ,359,356,358 ,0,0,0}, - {469,466,470 ,357,355,357 ,0,0,0}, {470,466,465 ,357,355,355 ,0,0,0}, - {468,460,459 ,352,353,352 ,0,0,0}, {468,459,469 ,352,352,357 ,0,0,0}, - {461,463,462 ,353,354,354 ,0,0,0}, {460,463,461 ,353,354,353 ,0,0,0}, - {458,464,381 ,351,351,299 ,0,0,0}, {462,464,458 ,354,351,351 ,0,0,0}, - {474,475,476 ,360,324,360 ,0,0,0}, {475,474,477 ,324,360,324 ,0,0,0}, - {478,479,480 ,361,362,361 ,0,0,0}, {481,482,478 ,363,363,361 ,0,0,0}, - {478,480,481 ,361,361,363 ,0,0,0}, {482,483,484 ,363,364,365 ,0,0,0}, - {483,482,481 ,364,363,363 ,0,0,0}, {485,484,486 ,366,365,367 ,0,0,0}, - {483,486,484 ,364,367,365 ,0,0,0}, {487,488,485 ,368,369,366 ,0,0,0}, - {485,486,487 ,366,367,368 ,0,0,0}, {488,489,490 ,369,370,370 ,0,0,0}, - {489,488,487 ,370,369,368 ,0,0,0}, {491,490,492 ,371,370,371 ,0,0,0}, - {489,492,490 ,370,371,370 ,0,0,0}, {493,494,491 ,372,372,371 ,0,0,0}, - {491,492,493 ,371,371,372 ,0,0,0}, {480,479,495 ,361,362,373 ,0,0,0}, - {496,495,497 ,374,373,375 ,0,0,0}, {479,497,495 ,362,375,373 ,0,0,0}, - {498,499,496 ,376,377,374 ,0,0,0}, {496,497,498 ,374,375,376 ,0,0,0}, - {499,500,501 ,377,378,379 ,0,0,0}, {500,499,498 ,378,377,376 ,0,0,0}, - {502,501,503 ,380,379,381 ,0,0,0}, {500,503,501 ,378,381,379 ,0,0,0}, - {504,505,502 ,382,383,380 ,0,0,0}, {502,503,504 ,380,381,382 ,0,0,0}, - {505,506,507 ,383,384,385 ,0,0,0}, {506,505,504 ,384,383,382 ,0,0,0}, - {506,8,507 ,384,4,385 ,0,0,0}, {507,8,9 ,385,4,386 ,0,0,0}, {363,508,509 ,387,388,388 ,0,0,0}, - {510,511,512 ,389,389,390 ,0,0,0}, {513,514,515 ,390,391,391 ,0,0,0}, - {516,517,518 ,392,393,392 ,0,0,0}, {519,520,521 ,394,394,393 ,0,0,0}, - {522,523,518 ,395,395,392 ,0,0,0}, {516,518,523 ,392,392,395 ,0,0,0}, - {522,524,525 ,395,396,396 ,0,0,0}, {525,523,522 ,396,395,395 ,0,0,0}, - {516,521,517 ,392,393,393 ,0,0,0}, {515,514,508 ,391,391,388 ,0,0,0}, - {521,520,517 ,393,394,393 ,0,0,0}, {519,510,520 ,394,389,394 ,0,0,0}, - {511,513,512 ,389,390,390 ,0,0,0}, {519,511,510 ,394,389,389 ,0,0,0}, - {512,513,515 ,390,390,391 ,0,0,0}, {363,509,360 ,387,388,397 ,0,0,0}, - {508,514,509 ,388,391,388 ,0,0,0}, {526,527,528 ,398,399,400 ,0,0,0}, - {529,528,530 ,401,400,402 ,0,0,0}, {527,530,528 ,399,402,400 ,0,0,0}, - {530,531,532 ,402,403,404 ,0,0,0}, {532,529,530 ,404,401,402 ,0,0,0}, - {533,531,534 ,405,403,406 ,0,0,0}, {531,533,532 ,403,405,404 ,0,0,0}, - {535,536,534 ,407,408,406 ,0,0,0}, {533,534,536 ,405,406,408 ,0,0,0}, - {535,537,538 ,407,409,410 ,0,0,0}, {538,536,535 ,410,408,407 ,0,0,0}, - {539,537,540 ,411,409,412 ,0,0,0}, {537,539,538 ,409,411,410 ,0,0,0}, - {541,539,542 ,413,411,414 ,0,0,0}, {540,542,539 ,412,414,411 ,0,0,0}, - {543,544,541 ,415,416,413 ,0,0,0}, {541,542,543 ,413,414,415 ,0,0,0}, - {545,543,546 ,417,415,418 ,0,0,0}, {543,545,544 ,415,417,416 ,0,0,0}, - {547,548,546 ,419,420,418 ,0,0,0}, {545,546,548 ,417,418,420 ,0,0,0}, - {547,549,550 ,419,421,422 ,0,0,0}, {550,548,547 ,422,420,419 ,0,0,0}, - {551,549,552 ,423,421,424 ,0,0,0}, {549,551,550 ,421,423,422 ,0,0,0}, - {553,554,552 ,425,426,424 ,0,0,0}, {551,552,554 ,423,424,426 ,0,0,0}, - {555,556,554 ,427,427,426 ,0,0,0}, {554,553,555 ,426,425,427 ,0,0,0}, - {527,526,557 ,399,398,428 ,0,0,0}, {557,558,559 ,428,429,430 ,0,0,0}, - {558,557,526 ,429,428,398 ,0,0,0}, {560,561,558 ,431,432,429 ,0,0,0}, - {559,558,561 ,430,429,432 ,0,0,0}, {560,562,563 ,431,433,434 ,0,0,0}, - {563,561,560 ,434,432,431 ,0,0,0}, {564,562,565 ,435,433,436 ,0,0,0}, - {562,564,563 ,433,435,434 ,0,0,0}, {566,567,565 ,437,438,436 ,0,0,0}, - {564,565,567 ,435,436,438 ,0,0,0}, {566,568,569 ,437,439,440 ,0,0,0}, - {569,567,566 ,440,438,437 ,0,0,0}, {569,570,571 ,440,441,442 ,0,0,0}, - {570,569,568 ,441,440,439 ,0,0,0}, {572,571,573 ,443,442,444 ,0,0,0}, - {570,573,571 ,441,444,442 ,0,0,0}, {573,574,575 ,444,445,446 ,0,0,0}, - {575,572,573 ,446,443,444 ,0,0,0}, {576,574,577 ,447,445,448 ,0,0,0}, - {574,576,575 ,445,447,446 ,0,0,0}, {578,579,577 ,449,450,448 ,0,0,0}, - {576,577,579 ,447,448,450 ,0,0,0}, {578,580,581 ,449,451,452 ,0,0,0}, - {581,579,578 ,452,450,449 ,0,0,0}, {582,580,583 ,453,451,454 ,0,0,0}, - {580,582,581 ,451,453,452 ,0,0,0}, {583,584,582 ,454,455,453 ,0,0,0}, - {582,584,585 ,453,455,456 ,0,0,0}, {586,587,588 ,457,458,459 ,0,0,0}, - {586,588,589 ,457,459,460 ,0,0,0}, {590,336,335 ,461,273,273 ,0,0,0}, - {591,592,593 ,462,463,464 ,0,0,0}, {594,595,596 ,465,466,467 ,0,0,0}, - {597,598,599 ,468,469,470 ,0,0,0}, {600,601,602 ,471,472,473 ,0,0,0}, - {603,604,605 ,474,475,476 ,0,0,0}, {606,607,608 ,477,478,479 ,0,0,0}, - {609,610,611 ,480,481,482 ,0,0,0}, {609,612,604 ,480,483,475 ,0,0,0}, - {613,610,614 ,484,481,485 ,0,0,0}, {610,613,611 ,481,484,482 ,0,0,0}, - {615,616,614 ,486,487,485 ,0,0,0}, {613,614,616 ,484,485,487 ,0,0,0}, - {617,618,616 ,488,488,487 ,0,0,0}, {616,615,617 ,487,486,488 ,0,0,0}, - {605,604,612 ,476,475,483 ,0,0,0}, {609,611,612 ,480,482,483 ,0,0,0}, - {606,603,607 ,477,474,478 ,0,0,0}, {603,605,607 ,474,476,478 ,0,0,0}, - {599,606,597 ,470,477,468 ,0,0,0}, {606,608,597 ,477,479,468 ,0,0,0}, - {602,601,598 ,473,472,469 ,0,0,0}, {602,598,597 ,473,469,468 ,0,0,0}, - {600,592,591 ,471,463,462 ,0,0,0}, {600,591,601 ,471,462,472 ,0,0,0}, - {593,595,594 ,464,466,465 ,0,0,0}, {592,595,593 ,463,466,464 ,0,0,0}, - {590,596,619 ,461,467,489 ,0,0,0}, {594,596,590 ,465,467,461 ,0,0,0}, - {336,590,619 ,273,461,489 ,0,0,0}, {620,621,622 ,490,491,492 ,0,0,0}, - {623,624,621 ,493,494,491 ,0,0,0}, {625,626,627 ,495,496,497 ,0,0,0}, - {625,620,622 ,495,490,492 ,0,0,0}, {628,629,630 ,498,499,500 ,0,0,0}, - {627,620,625 ,497,490,495 ,0,0,0}, {626,630,629 ,496,500,499 ,0,0,0}, - {631,628,630 ,501,498,500 ,0,0,0}, {627,626,629 ,497,496,499 ,0,0,0}, - {632,633,634 ,502,503,504 ,0,0,0}, {635,632,634 ,505,502,504 ,0,0,0}, - {636,631,633 ,506,501,503 ,0,0,0}, {633,632,636 ,503,502,506 ,0,0,0}, - {634,637,635 ,504,507,505 ,0,0,0}, {631,636,628 ,501,506,498 ,0,0,0}, - {635,637,638 ,505,507,508 ,0,0,0}, {622,621,624 ,492,491,494 ,0,0,0}, - {639,638,637 ,508,508,507 ,0,0,0}, {623,640,641 ,493,509,510 ,0,0,0}, - {641,624,623 ,510,494,493 ,0,0,0}, {642,640,643 ,511,509,512 ,0,0,0}, - {640,642,641 ,509,511,510 ,0,0,0}, {644,645,643 ,513,514,512 ,0,0,0}, - {642,643,645 ,511,512,514 ,0,0,0}, {644,646,647 ,513,515,516 ,0,0,0}, - {647,645,644 ,516,514,513 ,0,0,0}, {648,646,649 ,517,515,518 ,0,0,0}, - {646,648,647 ,515,517,516 ,0,0,0}, {650,651,649 ,519,520,518 ,0,0,0}, - {648,649,651 ,517,518,520 ,0,0,0}, {650,652,653 ,519,521,522 ,0,0,0}, - {653,651,650 ,522,520,519 ,0,0,0}, {654,652,655 ,523,521,524 ,0,0,0}, - {652,654,653 ,521,523,522 ,0,0,0}, {654,655,656 ,523,524,525 ,0,0,0}, - {656,655,657 ,525,524,525 ,0,0,0}, {658,308,307 ,526,527,247 ,0,0,0}, - {659,660,661 ,528,529,530 ,0,0,0}, {662,663,664 ,531,532,533 ,0,0,0}, - {665,666,667 ,534,535,536 ,0,0,0}, {668,669,670 ,537,538,539 ,0,0,0}, - {671,672,673 ,540,541,542 ,0,0,0}, {674,671,667 ,543,540,536 ,0,0,0}, - {675,673,676 ,544,542,545 ,0,0,0}, {672,676,673 ,541,545,542 ,0,0,0}, - {677,678,675 ,546,546,544 ,0,0,0}, {675,676,677 ,544,545,546 ,0,0,0}, - {666,674,667 ,535,543,536 ,0,0,0}, {674,672,671 ,543,541,540 ,0,0,0}, - {670,669,665 ,539,538,534 ,0,0,0}, {669,666,665 ,538,535,534 ,0,0,0}, - {659,661,668 ,528,530,537 ,0,0,0}, {659,668,670 ,528,537,539 ,0,0,0}, - {660,663,662 ,529,532,531 ,0,0,0}, {660,662,661 ,529,531,530 ,0,0,0}, - {664,679,658 ,533,547,526 ,0,0,0}, {663,679,664 ,532,547,533 ,0,0,0}, - {308,658,679 ,527,526,547 ,0,0,0}, {680,681,682 ,548,549,550 ,0,0,0}, - {683,684,681 ,551,552,549 ,0,0,0}, {685,686,687 ,553,554,555 ,0,0,0}, - {685,680,682 ,553,548,550 ,0,0,0}, {688,689,690 ,556,557,558 ,0,0,0}, - {687,680,685 ,555,548,553 ,0,0,0}, {686,690,689 ,554,558,557 ,0,0,0}, - {691,688,690 ,559,556,558 ,0,0,0}, {687,686,689 ,555,554,557 ,0,0,0}, - {692,693,694 ,560,561,562 ,0,0,0}, {695,692,694 ,563,560,562 ,0,0,0}, - {696,691,693 ,564,559,561 ,0,0,0}, {693,692,696 ,561,560,564 ,0,0,0}, - {694,697,695 ,562,565,563 ,0,0,0}, {691,696,688 ,559,564,556 ,0,0,0}, - {695,697,698 ,563,565,508 ,0,0,0}, {682,681,684 ,550,549,552 ,0,0,0}, - {699,698,697 ,508,508,565 ,0,0,0}, {683,700,701 ,551,566,567 ,0,0,0}, - {701,684,683 ,567,552,551 ,0,0,0}, {702,700,703 ,568,566,569 ,0,0,0}, - {700,702,701 ,566,568,567 ,0,0,0}, {704,705,703 ,570,571,569 ,0,0,0}, - {702,703,705 ,568,569,571 ,0,0,0}, {704,706,707 ,570,572,573 ,0,0,0}, - {707,705,704 ,573,571,570 ,0,0,0}, {708,706,709 ,574,572,575 ,0,0,0}, - {706,708,707 ,572,574,573 ,0,0,0}, {710,711,709 ,576,577,575 ,0,0,0}, - {708,709,711 ,574,575,577 ,0,0,0}, {710,712,713 ,576,578,579 ,0,0,0}, - {713,711,710 ,579,577,576 ,0,0,0}, {714,712,715 ,580,578,581 ,0,0,0}, - {712,714,713 ,578,580,579 ,0,0,0}, {714,715,716 ,580,581,525 ,0,0,0}, - {716,715,717 ,525,581,525 ,0,0,0}, {718,280,279 ,582,221,221 ,0,0,0}, - {719,720,721 ,583,584,585 ,0,0,0}, {722,723,724 ,586,587,588 ,0,0,0}, - {725,726,727 ,589,590,591 ,0,0,0}, {728,729,730 ,592,593,594 ,0,0,0}, - {731,732,733 ,595,596,597 ,0,0,0}, {734,735,736 ,598,599,600 ,0,0,0}, - {737,738,739 ,601,602,603 ,0,0,0}, {737,740,732 ,601,604,596 ,0,0,0}, - {741,738,742 ,605,602,606 ,0,0,0}, {738,741,739 ,602,605,603 ,0,0,0}, - {743,744,742 ,607,608,606 ,0,0,0}, {741,742,744 ,605,606,608 ,0,0,0}, - {745,746,744 ,546,546,608 ,0,0,0}, {744,743,745 ,608,607,546 ,0,0,0}, - {733,732,740 ,597,596,604 ,0,0,0}, {737,739,740 ,601,603,604 ,0,0,0}, - {734,731,735 ,598,595,599 ,0,0,0}, {731,733,735 ,595,597,599 ,0,0,0}, - {727,734,725 ,591,598,589 ,0,0,0}, {734,736,725 ,598,600,589 ,0,0,0}, - {730,729,726 ,594,593,590 ,0,0,0}, {730,726,725 ,594,590,589 ,0,0,0}, - {728,720,719 ,592,584,583 ,0,0,0}, {728,719,729 ,592,583,593 ,0,0,0}, - {721,723,722 ,585,587,586 ,0,0,0}, {720,723,721 ,584,587,585 ,0,0,0}, - {718,724,747 ,582,588,609 ,0,0,0}, {722,724,718 ,586,588,582 ,0,0,0}, - {280,718,747 ,221,582,609 ,0,0,0}, {748,749,750 ,610,611,610 ,0,0,0}, - {749,748,751 ,611,610,611 ,0,0,0}, {752,753,754 ,612,613,614 ,0,0,0}, - {755,754,756 ,615,614,616 ,0,0,0}, {753,756,754 ,613,616,614 ,0,0,0}, - {756,757,758 ,616,617,618 ,0,0,0}, {758,755,756 ,618,615,616 ,0,0,0}, - {759,757,760 ,619,617,620 ,0,0,0}, {757,759,758 ,617,619,618 ,0,0,0}, - {761,762,760 ,621,622,620 ,0,0,0}, {759,760,762 ,619,620,622 ,0,0,0}, - {761,763,764 ,621,623,624 ,0,0,0}, {764,762,761 ,624,622,621 ,0,0,0}, - {765,763,766 ,625,623,626 ,0,0,0}, {763,765,764 ,623,625,624 ,0,0,0}, - {767,765,768 ,627,625,628 ,0,0,0}, {766,768,765 ,626,628,625 ,0,0,0}, - {769,770,767 ,629,630,627 ,0,0,0}, {767,768,769 ,627,628,629 ,0,0,0}, - {771,769,772 ,631,629,632 ,0,0,0}, {769,771,770 ,629,631,630 ,0,0,0}, - {773,774,772 ,633,634,632 ,0,0,0}, {771,772,774 ,631,632,634 ,0,0,0}, - {773,775,776 ,633,635,636 ,0,0,0}, {776,774,773 ,636,634,633 ,0,0,0}, - {777,775,778 ,637,635,638 ,0,0,0}, {775,777,776 ,635,637,636 ,0,0,0}, - {779,780,778 ,639,640,638 ,0,0,0}, {777,778,780 ,637,638,640 ,0,0,0}, - {781,782,780 ,641,641,640 ,0,0,0}, {780,779,781 ,640,639,641 ,0,0,0}, - {753,752,783 ,613,612,642 ,0,0,0}, {783,784,785 ,642,643,644 ,0,0,0}, - {784,783,752 ,643,642,612 ,0,0,0}, {786,787,784 ,645,646,643 ,0,0,0}, - {785,784,787 ,644,643,646 ,0,0,0}, {786,788,789 ,645,647,648 ,0,0,0}, - {789,787,786 ,648,646,645 ,0,0,0}, {790,788,791 ,649,647,650 ,0,0,0}, - {788,790,789 ,647,649,648 ,0,0,0}, {792,793,791 ,651,652,650 ,0,0,0}, - {790,791,793 ,649,650,652 ,0,0,0}, {792,794,795 ,651,653,654 ,0,0,0}, - {795,793,792 ,654,652,651 ,0,0,0}, {795,796,797 ,654,655,656 ,0,0,0}, - {796,795,794 ,655,654,653 ,0,0,0}, {798,797,799 ,657,656,658 ,0,0,0}, - {796,799,797 ,655,658,656 ,0,0,0}, {799,800,801 ,658,659,660 ,0,0,0}, - {801,798,799 ,660,657,658 ,0,0,0}, {802,800,803 ,661,659,662 ,0,0,0}, - {800,802,801 ,659,661,660 ,0,0,0}, {804,805,803 ,663,664,662 ,0,0,0}, - {802,803,805 ,661,662,664 ,0,0,0}, {804,806,807 ,663,665,666 ,0,0,0}, - {807,805,804 ,666,664,663 ,0,0,0}, {808,806,809 ,667,665,668 ,0,0,0}, - {806,808,807 ,665,667,666 ,0,0,0}, {809,810,808 ,668,669,667 ,0,0,0}, - {808,810,811 ,667,669,670 ,0,0,0}, {255,812,813 ,671,672,672 ,0,0,0}, - {814,815,816 ,673,674,675 ,0,0,0}, {817,818,819 ,675,676,676 ,0,0,0}, - {820,821,822 ,677,678,677 ,0,0,0}, {823,824,825 ,679,679,678 ,0,0,0}, - {826,827,822 ,680,680,677 ,0,0,0}, {820,822,827 ,677,677,680 ,0,0,0}, - {826,828,829 ,680,396,396 ,0,0,0}, {829,827,826 ,396,680,680 ,0,0,0}, - {820,825,821 ,677,678,678 ,0,0,0}, {819,818,812 ,676,676,672 ,0,0,0}, - {825,824,821 ,678,679,678 ,0,0,0}, {823,814,824 ,679,673,679 ,0,0,0}, - {815,817,816 ,674,675,675 ,0,0,0}, {823,815,814 ,679,674,673 ,0,0,0}, - {816,817,819 ,675,675,676 ,0,0,0}, {255,813,252 ,671,672,681 ,0,0,0}, - {812,818,813 ,672,676,672 ,0,0,0}, {18,19,830 ,21,21,21 ,0,0,0}, - {18,830,831 ,21,21,21 ,0,0,0}, {832,833,834 ,682,683,684 ,0,0,0}, - {835,836,834 ,685,686,684 ,0,0,0}, {832,834,836 ,682,684,686 ,0,0,0}, - {835,837,838 ,685,687,688 ,0,0,0}, {838,836,835 ,688,686,685 ,0,0,0}, - {839,837,840 ,689,687,690 ,0,0,0}, {837,839,838 ,687,689,688 ,0,0,0}, - {841,842,840 ,691,692,690 ,0,0,0}, {839,840,842 ,689,690,692 ,0,0,0}, - {841,843,844 ,691,693,694 ,0,0,0}, {844,842,841 ,694,692,691 ,0,0,0}, - {845,843,846 ,695,693,696 ,0,0,0}, {843,845,844 ,693,695,694 ,0,0,0}, - {847,848,846 ,697,698,696 ,0,0,0}, {845,846,848 ,695,696,698 ,0,0,0}, - {847,849,850 ,697,699,700 ,0,0,0}, {850,848,847 ,700,698,697 ,0,0,0}, - {851,849,852 ,701,699,702 ,0,0,0}, {849,851,850 ,699,701,700 ,0,0,0}, - {853,854,852 ,641,703,702 ,0,0,0}, {851,852,854 ,701,702,703 ,0,0,0}, - {855,854,853 ,641,703,641 ,0,0,0}, {856,833,832 ,704,683,682 ,0,0,0}, - {857,856,858 ,705,704,706 ,0,0,0}, {856,857,833 ,704,705,683 ,0,0,0}, - {859,860,858 ,707,708,706 ,0,0,0}, {857,858,860 ,705,706,708 ,0,0,0}, - {859,861,862 ,707,709,710 ,0,0,0}, {862,860,859 ,710,708,707 ,0,0,0}, - {863,861,864 ,711,709,712 ,0,0,0}, {861,863,862 ,709,711,710 ,0,0,0}, - {865,866,864 ,713,714,712 ,0,0,0}, {863,864,866 ,711,712,714 ,0,0,0}, - {865,867,868 ,713,715,716 ,0,0,0}, {868,866,865 ,716,714,713 ,0,0,0}, - {869,867,870 ,717,715,718 ,0,0,0}, {867,869,868 ,715,717,716 ,0,0,0}, - {871,872,870 ,719,720,718 ,0,0,0}, {869,870,872 ,717,718,720 ,0,0,0}, - {871,873,874 ,719,721,722 ,0,0,0}, {874,872,871 ,722,720,719 ,0,0,0}, - {875,873,876 ,723,721,456 ,0,0,0}, {873,875,874 ,721,723,722 ,0,0,0}, - {875,876,877 ,723,456,724 ,0,0,0}, {38,39,878 ,21,725,725 ,0,0,0}, - {38,878,879 ,21,725,21 ,0,0,0}, {312,41,311 ,726,726,726 ,0,0,0}, - {92,836,880 ,727,727,726 ,0,0,0}, {672,674,881 ,726,726,726 ,0,0,0}, - {856,832,92 ,727,727,727 ,0,0,0}, {89,856,92 ,726,727,727 ,0,0,0}, - {56,882,883 ,726,726,726 ,0,0,0}, {254,458,251 ,726,726,726 ,0,0,0}, - {858,89,90 ,726,726,726 ,0,0,0}, {861,85,83 ,727,726,726 ,0,0,0}, - {884,880,838 ,726,726,726 ,0,0,0}, {885,886,887 ,726,726,726 ,0,0,0}, - {774,888,889 ,727,727,727 ,0,0,0}, {545,890,891 ,726,726,727 ,0,0,0}, - {884,839,892 ,726,726,726 ,0,0,0}, {893,765,894 ,726,726,726 ,0,0,0}, - {764,893,895 ,727,726,726 ,0,0,0}, {842,896,892 ,727,726,726 ,0,0,0}, - {83,86,864 ,726,727,726 ,0,0,0}, {897,194,759 ,726,727,726 ,0,0,0}, - {803,800,196 ,726,726,726 ,0,0,0}, {898,896,844 ,727,726,726 ,0,0,0}, - {77,865,86 ,727,726,727 ,0,0,0}, {899,848,900 ,727,727,727 ,0,0,0}, - {899,898,845 ,727,727,727 ,0,0,0}, {901,900,851 ,726,727,726 ,0,0,0}, - {850,900,848 ,726,727,727 ,0,0,0}, {902,855,903 ,727,726,726 ,0,0,0}, - {902,901,854 ,727,726,726 ,0,0,0}, {903,904,905 ,726,726,726 ,0,0,0}, - {906,907,106 ,726,726,727 ,0,0,0}, {870,79,871 ,726,727,726 ,0,0,0}, - {908,909,906 ,727,727,726 ,0,0,0}, {910,904,911 ,727,726,726 ,0,0,0}, - {99,100,912 ,727,726,726 ,0,0,0}, {518,407,522 ,726,726,726 ,0,0,0}, - {913,914,524 ,727,726,726 ,0,0,0}, {907,915,916 ,726,726,727 ,0,0,0}, - {510,391,390 ,726,726,727 ,0,0,0}, {917,598,918 ,726,726,728 ,0,0,0}, - {508,363,397 ,727,726,727 ,0,0,0}, {918,601,591 ,728,726,726 ,0,0,0}, - {128,342,109 ,728,726,726 ,0,0,0}, {131,339,341 ,726,728,726 ,0,0,0}, - {348,113,110 ,726,726,726 ,0,0,0}, {919,920,604 ,726,726,726 ,0,0,0}, - {113,351,111 ,726,726,726 ,0,0,0}, {359,362,412 ,726,726,727 ,0,0,0}, - {921,124,119 ,726,726,726 ,0,0,0}, {126,123,922 ,726,726,726 ,0,0,0}, - {923,924,589 ,727,726,726 ,0,0,0}, {652,441,444 ,726,726,726 ,0,0,0}, - {925,584,162 ,726,726,726 ,0,0,0}, {926,927,928 ,727,727,726 ,0,0,0}, - {144,583,580 ,726,727,726 ,0,0,0}, {929,930,556 ,727,726,727 ,0,0,0}, - {931,550,932 ,726,726,727 ,0,0,0}, {154,573,151 ,727,726,726 ,0,0,0}, - {933,533,536 ,727,726,726 ,0,0,0}, {526,934,935 ,727,726,726 ,0,0,0}, - {160,157,562 ,727,726,726 ,0,0,0}, {160,560,558 ,727,726,727 ,0,0,0}, - {158,565,157 ,726,727,726 ,0,0,0}, {566,158,153 ,727,726,726 ,0,0,0}, - {935,558,526 ,726,727,727 ,0,0,0}, {936,934,528 ,726,726,726 ,0,0,0}, - {151,570,568 ,726,727,726 ,0,0,0}, {529,937,936 ,727,726,726 ,0,0,0}, - {933,937,532 ,727,726,727 ,0,0,0}, {145,574,154 ,727,726,727 ,0,0,0}, - {538,938,939 ,726,727,727 ,0,0,0}, {939,933,536 ,727,727,726 ,0,0,0}, - {891,940,541 ,727,726,727 ,0,0,0}, {539,940,938 ,726,726,727 ,0,0,0}, - {941,556,930 ,727,727,726 ,0,0,0}, {551,942,932 ,726,726,727 ,0,0,0}, - {554,556,942 ,726,727,726 ,0,0,0}, {942,556,941 ,726,727,727 ,0,0,0}, - {548,931,890 ,726,726,726 ,0,0,0}, {551,554,942 ,726,726,726 ,0,0,0}, - {174,930,929 ,727,726,727 ,0,0,0}, {927,943,168 ,727,726,726 ,0,0,0}, - {174,929,944 ,727,727,726 ,0,0,0}, {168,171,927 ,726,727,727 ,0,0,0}, - {943,167,168 ,726,727,726 ,0,0,0}, {926,928,945 ,727,726,726 ,0,0,0}, - {946,926,945 ,726,727,726 ,0,0,0}, {947,948,589 ,726,726,726 ,0,0,0}, - {589,946,945 ,726,726,726 ,0,0,0}, {948,370,946 ,726,726,726 ,0,0,0}, - {589,879,949 ,726,727,726 ,0,0,0}, {650,440,441 ,726,726,726 ,0,0,0}, - {950,588,951 ,726,726,726 ,0,0,0}, {655,444,952 ,726,726,726 ,0,0,0}, - {593,953,591 ,726,726,726 ,0,0,0}, {953,593,954 ,726,726,726 ,0,0,0}, - {327,139,330 ,726,726,726 ,0,0,0}, {955,333,956 ,726,726,726 ,0,0,0}, - {956,331,140 ,726,726,726 ,0,0,0}, {957,335,955 ,726,726,726 ,0,0,0}, - {335,957,590 ,726,726,726 ,0,0,0}, {333,331,956 ,726,726,726 ,0,0,0}, - {594,590,957 ,726,726,726 ,0,0,0}, {333,955,335 ,726,726,726 ,0,0,0}, - {140,331,330 ,726,726,726 ,0,0,0}, {594,957,954 ,726,726,726 ,0,0,0}, - {137,139,325 ,726,726,726 ,0,0,0}, {919,606,958 ,726,729,726 ,0,0,0}, - {324,320,134 ,726,726,726 ,0,0,0}, {345,110,109 ,726,726,726 ,0,0,0}, - {919,603,606 ,726,726,729 ,0,0,0}, {111,959,120 ,726,728,726 ,0,0,0}, - {920,960,609 ,726,726,726 ,0,0,0}, {921,961,124 ,726,726,726 ,0,0,0}, - {959,921,117 ,728,726,726 ,0,0,0}, {354,364,416 ,727,727,727 ,0,0,0}, - {416,419,354 ,727,727,727 ,0,0,0}, {356,354,419 ,726,727,727 ,0,0,0}, - {962,664,658 ,726,726,726 ,0,0,0}, {419,409,356 ,727,726,726 ,0,0,0}, - {515,508,395 ,726,727,726 ,0,0,0}, {408,359,412 ,727,726,727 ,0,0,0}, - {409,411,357 ,726,726,727 ,0,0,0}, {421,365,368 ,726,726,726 ,0,0,0}, - {614,610,963 ,726,726,726 ,0,0,0}, {363,359,408 ,726,726,727 ,0,0,0}, - {435,646,644 ,726,726,726 ,0,0,0}, {964,965,617 ,726,726,726 ,0,0,0}, - {963,610,960 ,726,726,726 ,0,0,0}, {411,362,357 ,726,726,727 ,0,0,0}, - {357,356,409 ,727,726,726 ,0,0,0}, {434,435,644 ,726,726,726 ,0,0,0}, - {615,964,617 ,726,726,726 ,0,0,0}, {961,966,967 ,726,726,726 ,0,0,0}, - {123,124,922 ,726,726,726 ,0,0,0}, {968,36,657 ,726,726,726 ,0,0,0}, - {966,950,951 ,726,726,726 ,0,0,0}, {966,951,967 ,726,726,726 ,0,0,0}, - {646,438,649 ,726,726,726 ,0,0,0}, {417,416,364 ,726,727,727 ,0,0,0}, - {628,453,629 ,726,728,728 ,0,0,0}, {629,450,627 ,728,728,726 ,0,0,0}, - {515,394,512 ,726,726,726 ,0,0,0}, {429,621,447 ,726,726,728 ,0,0,0}, - {512,394,391 ,726,726,726 ,0,0,0}, {510,512,391 ,726,726,726 ,0,0,0}, - {402,517,520 ,727,726,726 ,0,0,0}, {390,520,510 ,727,726,726 ,0,0,0}, - {494,969,715 ,726,726,726 ,0,0,0}, {520,390,402 ,726,727,727 ,0,0,0}, - {970,971,16 ,726,726,726 ,0,0,0}, {972,973,974 ,726,726,726 ,0,0,0}, - {975,974,26 ,726,726,726 ,0,0,0}, {976,676,977 ,726,726,726 ,0,0,0}, - {973,972,978 ,726,726,726 ,0,0,0}, {305,72,307 ,726,726,726 ,0,0,0}, - {51,882,56 ,726,726,726 ,0,0,0}, {979,980,662 ,726,726,726 ,0,0,0}, - {962,658,72 ,726,726,726 ,0,0,0}, {662,664,979 ,726,726,726 ,0,0,0}, - {962,979,664 ,726,726,726 ,0,0,0}, {981,661,980 ,726,726,726 ,0,0,0}, - {661,662,980 ,726,726,726 ,0,0,0}, {981,982,668 ,726,726,726 ,0,0,0}, - {658,307,72 ,726,726,726 ,0,0,0}, {71,304,69 ,726,726,726 ,0,0,0}, - {982,983,669 ,726,728,726 ,0,0,0}, {63,309,60 ,726,726,728 ,0,0,0}, - {299,66,301 ,726,726,726 ,0,0,0}, {45,319,43 ,726,726,726 ,0,0,0}, - {42,315,317 ,726,726,726 ,0,0,0}, {729,984,985 ,726,726,726 ,0,0,0}, - {882,49,986 ,726,726,728 ,0,0,0}, {986,52,43 ,728,726,726 ,0,0,0}, - {881,977,672 ,726,726,726 ,0,0,0}, {12,987,14 ,726,726,726 ,0,0,0}, - {677,988,989 ,726,726,726 ,0,0,0}, {990,991,992 ,727,727,726 ,0,0,0}, - {485,706,704 ,726,726,726 ,0,0,0}, {425,993,11 ,726,726,726 ,0,0,0}, - {715,969,717 ,726,726,726 ,0,0,0}, {16,971,994 ,726,726,726 ,0,0,0}, - {709,490,710 ,726,726,726 ,0,0,0}, {262,995,996 ,726,726,727 ,0,0,0}, - {246,459,248 ,727,727,726 ,0,0,0}, {256,469,246 ,727,727,727 ,0,0,0}, - {255,251,379 ,726,726,727 ,0,0,0}, {248,459,461 ,726,727,726 ,0,0,0}, - {373,819,376 ,726,726,727 ,0,0,0}, {681,479,683 ,726,726,726 ,0,0,0}, - {814,372,384 ,726,726,727 ,0,0,0}, {208,997,998 ,727,726,726 ,0,0,0}, - {999,748,1000 ,726,726,726 ,0,0,0}, {387,822,821 ,726,726,726 ,0,0,0}, - {389,1001,826 ,726,726,726 ,0,0,0}, {885,887,1002 ,726,726,728 ,0,0,0}, - {1003,1004,751 ,726,726,726 ,0,0,0}, {886,1005,887 ,726,726,726 ,0,0,0}, - {742,738,1006 ,726,728,726 ,0,0,0}, {228,1007,1008 ,726,726,726 ,0,0,0}, - {286,213,285 ,726,726,726 ,0,0,0}, {295,1007,225 ,726,726,726 ,0,0,0}, - {1009,1008,1005 ,726,726,726 ,0,0,0}, {275,236,277 ,726,726,726 ,0,0,0}, - {281,283,215 ,726,726,726 ,0,0,0}, {719,721,984 ,726,726,726 ,0,0,0}, - {722,242,721 ,726,726,726 ,0,0,0}, {1010,726,985 ,726,728,726 ,0,0,0}, - {729,985,726 ,726,726,728 ,0,0,0}, {727,726,1010 ,726,728,726 ,0,0,0}, - {984,729,719 ,726,726,726 ,0,0,0}, {984,721,242 ,726,726,726 ,0,0,0}, - {1010,1011,727 ,726,726,726 ,0,0,0}, {1012,731,1011 ,726,726,726 ,0,0,0}, - {1011,734,727 ,726,726,726 ,0,0,0}, {1012,1013,732 ,726,728,726 ,0,0,0}, - {722,718,241 ,726,726,726 ,0,0,0}, {269,230,271 ,726,728,726 ,0,0,0}, - {279,277,239 ,726,726,726 ,0,0,0}, {212,264,281 ,726,726,726 ,0,0,0}, - {230,268,211 ,728,726,726 ,0,0,0}, {286,222,213 ,726,726,726 ,0,0,0}, - {291,221,219 ,726,726,726 ,0,0,0}, {221,295,226 ,726,726,726 ,0,0,0}, - {1014,1006,738 ,726,726,728 ,0,0,0}, {289,219,222 ,726,726,726 ,0,0,0}, - {1015,743,1006 ,726,726,726 ,0,0,0}, {886,1016,1005 ,726,726,726 ,0,0,0}, - {1017,1018,1019 ,726,726,726 ,0,0,0}, {6,4,698 ,726,726,726 ,0,0,0}, - {8,695,1 ,726,726,726 ,0,0,0}, {799,178,177 ,726,726,727 ,0,0,0}, - {1020,782,1021 ,727,726,726 ,0,0,0}, {386,824,384 ,727,726,727 ,0,0,0}, - {1022,1002,751 ,726,728,726 ,0,0,0}, {1002,1022,885 ,728,726,726 ,0,0,0}, - {751,6,1022 ,726,726,726 ,0,0,0}, {780,1023,777 ,726,726,726 ,0,0,0}, - {791,188,179 ,726,727,727 ,0,0,0}, {759,194,758 ,726,727,726 ,0,0,0}, - {770,1024,894 ,726,727,726 ,0,0,0}, {755,758,191 ,726,726,726 ,0,0,0}, - {897,762,895 ,726,726,726 ,0,0,0}, {191,192,754 ,726,726,726 ,0,0,0}, - {784,187,185 ,726,726,726 ,0,0,0}, {185,786,784 ,726,726,726 ,0,0,0}, - {770,894,767 ,726,726,726 ,0,0,0}, {188,788,185 ,727,727,726 ,0,0,0}, - {1024,771,889 ,727,726,727 ,0,0,0}, {179,181,792 ,727,727,726 ,0,0,0}, - {888,776,1023 ,727,726,726 ,0,0,0}, {796,794,178 ,726,726,726 ,0,0,0}, - {1025,1026,1021 ,726,726,726 ,0,0,0}, {201,804,199 ,727,727,726 ,0,0,0}, - {1027,1028,1029 ,726,726,727 ,0,0,0}, {1030,1025,1028 ,727,726,726 ,0,0,0}, - {1031,1029,1032 ,726,727,727 ,0,0,0}, {1032,1029,1028 ,727,727,726 ,0,0,0}, - {814,384,824 ,726,727,726 ,0,0,0}, {998,1029,1031 ,726,727,726 ,0,0,0}, - {205,207,810 ,727,726,727 ,0,0,0}, {386,387,821 ,727,726,726 ,0,0,0}, - {208,998,1033 ,727,726,726 ,0,0,0}, {1032,1034,1031 ,727,727,726 ,0,0,0}, - {997,1029,998 ,726,727,726 ,0,0,0}, {828,1035,999 ,726,726,726 ,0,0,0}, - {1034,999,1000 ,727,726,726 ,0,0,0}, {1034,1000,1031 ,727,726,726 ,0,0,0}, - {386,821,824 ,727,726,726 ,0,0,0}, {372,816,373 ,726,726,726 ,0,0,0}, - {819,373,816 ,726,726,726 ,0,0,0}, {816,372,814 ,726,726,726 ,0,0,0}, - {377,255,379 ,727,726,727 ,0,0,0}, {376,812,377 ,727,727,727 ,0,0,0}, - {251,458,379 ,726,726,727 ,0,0,0}, {500,689,503 ,726,728,726 ,0,0,0}, - {462,458,254 ,726,726,726 ,0,0,0}, {461,462,249 ,726,726,727 ,0,0,0}, - {249,462,254 ,727,726,726 ,0,0,0}, {461,249,248 ,726,727,726 ,0,0,0}, - {991,990,1036 ,727,727,727 ,0,0,0}, {257,466,256 ,726,726,727 ,0,0,0}, - {246,469,459 ,727,727,727 ,0,0,0}, {1037,1038,916 ,727,727,727 ,0,0,0}, - {404,517,402 ,726,726,727 ,0,0,0}, {518,405,407 ,726,726,726 ,0,0,0}, - {404,518,517 ,726,726,726 ,0,0,0}, {407,913,522 ,726,727,726 ,0,0,0}, - {1039,1040,524 ,726,726,726 ,0,0,0}, {916,106,907 ,727,727,726 ,0,0,0}, - {1041,906,909 ,727,726,727 ,0,0,0}, {906,1041,907 ,726,727,726 ,0,0,0}, - {911,909,908 ,726,727,727 ,0,0,0}, {94,1042,876 ,726,726,726 ,0,0,0}, - {589,588,38 ,726,726,726 ,0,0,0}, {1043,657,655 ,726,726,726 ,0,0,0}, - {368,370,1044 ,726,726,726 ,0,0,0}, {589,38,879 ,726,726,727 ,0,0,0}, - {368,1045,421 ,726,726,726 ,0,0,0}, {589,949,923 ,726,726,727 ,0,0,0}, - {946,589,948 ,726,726,726 ,0,0,0}, {924,947,589 ,726,726,726 ,0,0,0}, - {1046,1044,370 ,726,726,726 ,0,0,0}, {948,1046,370 ,726,726,726 ,0,0,0}, - {1044,1045,368 ,726,726,726 ,0,0,0}, {417,365,421 ,726,726,726 ,0,0,0}, - {417,364,365 ,726,727,726 ,0,0,0}, {644,643,434 ,726,726,726 ,0,0,0}, - {643,640,432 ,726,726,726 ,0,0,0}, {640,623,428 ,726,726,726 ,0,0,0}, - {623,621,429 ,726,726,726 ,0,0,0}, {620,447,621 ,726,728,726 ,0,0,0}, - {411,412,362 ,726,727,726 ,0,0,0}, {434,643,432 ,726,726,726 ,0,0,0}, - {408,397,363 ,727,727,726 ,0,0,0}, {428,432,640 ,726,726,726 ,0,0,0}, - {448,620,627 ,726,726,726 ,0,0,0}, {397,395,508 ,727,726,727 ,0,0,0}, - {428,623,429 ,726,726,726 ,0,0,0}, {636,454,628 ,726,726,726 ,0,0,0}, - {395,394,515 ,726,726,726 ,0,0,0}, {447,620,448 ,728,726,726 ,0,0,0}, - {28,456,632 ,726,726,726 ,0,0,0}, {453,450,629 ,728,728,728 ,0,0,0}, - {635,638,21 ,726,726,726 ,0,0,0}, {454,453,628 ,726,728,726 ,0,0,0}, - {22,638,24 ,726,726,726 ,0,0,0}, {456,454,636 ,726,726,726 ,0,0,0}, - {907,1041,1047 ,726,727,726 ,0,0,0}, {404,405,518 ,726,726,726 ,0,0,0}, - {1040,1047,1041 ,726,726,727 ,0,0,0}, {1039,524,914 ,726,726,726 ,0,0,0}, - {913,524,522 ,727,726,726 ,0,0,0}, {1040,1039,1047 ,726,726,726 ,0,0,0}, - {1048,1036,915 ,726,727,726 ,0,0,0}, {990,992,831 ,727,726,727 ,0,0,0}, - {907,1048,915 ,726,726,726 ,0,0,0}, {105,1049,103 ,726,727,727 ,0,0,0}, - {992,426,831 ,726,727,727 ,0,0,0}, {1050,1051,262 ,726,726,726 ,0,0,0}, - {488,709,706 ,726,726,726 ,0,0,0}, {712,710,491 ,726,726,728 ,0,0,0}, - {26,1052,975 ,726,726,726 ,0,0,0}, {28,632,635 ,726,726,726 ,0,0,0}, - {717,994,971 ,726,726,726 ,0,0,0}, {978,972,1053 ,726,726,726 ,0,0,0}, - {1052,26,24 ,726,726,726 ,0,0,0}, {1052,24,638 ,726,726,726 ,0,0,0}, - {22,21,638 ,726,726,726 ,0,0,0}, {21,28,635 ,726,726,726 ,0,0,0}, - {456,636,632 ,726,726,726 ,0,0,0}, {450,448,627 ,728,726,726 ,0,0,0}, - {438,440,649 ,726,726,726 ,0,0,0}, {435,438,646 ,726,726,726 ,0,0,0}, - {650,441,652 ,726,726,726 ,0,0,0}, {649,440,650 ,726,726,726 ,0,0,0}, - {652,444,655 ,726,726,726 ,0,0,0}, {952,1043,655 ,726,726,726 ,0,0,0}, - {1043,968,657 ,726,726,726 ,0,0,0}, {950,657,36 ,726,726,726 ,0,0,0}, - {34,588,36 ,726,726,726 ,0,0,0}, {950,36,588 ,726,726,726 ,0,0,0}, - {31,588,32 ,726,726,726 ,0,0,0}, {588,34,32 ,726,726,726 ,0,0,0}, - {38,588,31 ,726,726,726 ,0,0,0}, {485,704,484 ,726,726,726 ,0,0,0}, - {426,425,18 ,727,726,726 ,0,0,0}, {257,471,467 ,726,726,726 ,0,0,0}, - {426,18,831 ,727,726,727 ,0,0,0}, {471,260,1051 ,726,726,726 ,0,0,0}, - {991,1036,1048 ,727,727,726 ,0,0,0}, {105,916,1038 ,726,727,727 ,0,0,0}, - {1037,996,995 ,727,727,726 ,0,0,0}, {1037,995,1038 ,727,726,727 ,0,0,0}, - {996,1050,262 ,727,726,726 ,0,0,0}, {1051,260,262 ,726,726,726 ,0,0,0}, - {471,257,260 ,726,726,726 ,0,0,0}, {466,257,467 ,726,726,726 ,0,0,0}, - {466,469,256 ,726,727,727 ,0,0,0}, {703,482,484 ,726,726,726 ,0,0,0}, - {700,478,482 ,726,726,726 ,0,0,0}, {683,479,478 ,726,726,726 ,0,0,0}, - {681,497,479 ,726,729,726 ,0,0,0}, {704,703,484 ,726,726,726 ,0,0,0}, - {680,498,497 ,726,726,729 ,0,0,0}, {703,700,482 ,726,726,726 ,0,0,0}, - {687,500,498 ,726,726,726 ,0,0,0}, {377,812,255 ,727,727,726 ,0,0,0}, - {700,683,478 ,726,726,726 ,0,0,0}, {688,504,503 ,726,726,726 ,0,0,0}, - {376,819,812 ,727,726,727 ,0,0,0}, {681,680,497 ,726,726,729 ,0,0,0}, - {506,504,696 ,726,726,726 ,0,0,0}, {680,687,498 ,726,726,726 ,0,0,0}, - {695,8,692 ,726,726,726 ,0,0,0}, {503,689,688 ,726,728,726 ,0,0,0}, - {475,751,748 ,727,726,726 ,0,0,0}, {688,696,504 ,726,726,726 ,0,0,0}, - {826,1054,828 ,726,726,726 ,0,0,0}, {389,822,387 ,726,726,726 ,0,0,0}, - {1001,1055,826 ,726,727,726 ,0,0,0}, {822,389,826 ,726,726,726 ,0,0,0}, - {1055,1054,826 ,727,726,726 ,0,0,0}, {999,1035,748 ,726,726,726 ,0,0,0}, - {1054,1035,828 ,726,726,726 ,0,0,0}, {1056,748,1057 ,726,726,727 ,0,0,0}, - {748,1035,1057 ,726,726,727 ,0,0,0}, {1058,748,1059 ,726,726,726 ,0,0,0}, - {748,1056,1059 ,726,726,726 ,0,0,0}, {748,1058,475 ,726,726,727 ,0,0,0}, - {477,751,475 ,726,726,727 ,0,0,0}, {2,695,698 ,726,726,726 ,0,0,0}, - {751,1060,1003 ,726,726,726 ,0,0,0}, {751,477,1060 ,726,726,726 ,0,0,0}, - {6,698,1022 ,726,726,726 ,0,0,0}, {1004,6,751 ,726,726,726 ,0,0,0}, - {4,2,698 ,726,726,726 ,0,0,0}, {2,1,695 ,726,726,726 ,0,0,0}, - {506,692,8 ,726,726,726 ,0,0,0}, {506,696,692 ,726,726,726 ,0,0,0}, - {500,687,689 ,726,726,728 ,0,0,0}, {488,490,709 ,726,726,726 ,0,0,0}, - {485,488,706 ,726,726,726 ,0,0,0}, {490,491,710 ,726,728,726 ,0,0,0}, - {491,494,712 ,728,726,726 ,0,0,0}, {715,712,494 ,726,726,726 ,0,0,0}, - {1061,717,969 ,726,726,726 ,0,0,0}, {975,972,974 ,726,726,726 ,0,0,0}, - {1061,994,717 ,726,726,726 ,0,0,0}, {58,14,1062 ,726,726,726 ,0,0,0}, - {987,12,993 ,726,726,726 ,0,0,0}, {1062,14,987 ,726,726,726 ,0,0,0}, - {425,11,18 ,726,726,726 ,0,0,0}, {993,12,11 ,726,726,726 ,0,0,0}, - {1014,737,1013 ,726,726,728 ,0,0,0}, {235,274,233 ,726,726,726 ,0,0,0}, - {215,283,213 ,726,726,726 ,0,0,0}, {731,734,1011 ,726,726,726 ,0,0,0}, - {732,731,1012 ,726,726,726 ,0,0,0}, {737,732,1013 ,726,726,728 ,0,0,0}, - {738,737,1014 ,728,726,726 ,0,0,0}, {745,743,1015 ,726,726,726 ,0,0,0}, - {743,742,1006 ,726,726,726 ,0,0,0}, {1018,1017,1016 ,726,726,726 ,0,0,0}, - {745,1063,1019 ,726,726,726 ,0,0,0}, {1063,745,1015 ,726,726,726 ,0,0,0}, - {1064,1017,1019 ,726,726,726 ,0,0,0}, {1063,1064,1019 ,726,726,726 ,0,0,0}, - {1016,886,1018 ,726,726,726 ,0,0,0}, {1005,1008,887 ,726,726,726 ,0,0,0}, - {228,1008,1009 ,726,726,726 ,0,0,0}, {225,1007,228 ,726,726,726 ,0,0,0}, - {226,295,225 ,726,726,726 ,0,0,0}, {291,292,221 ,726,726,726 ,0,0,0}, - {295,221,292 ,726,726,726 ,0,0,0}, {289,291,219 ,726,726,726 ,0,0,0}, - {286,289,222 ,726,726,726 ,0,0,0}, {283,285,213 ,726,726,726 ,0,0,0}, - {281,215,212 ,726,726,726 ,0,0,0}, {264,212,211 ,726,726,726 ,0,0,0}, - {269,268,230 ,726,726,728 ,0,0,0}, {268,264,211 ,726,726,726 ,0,0,0}, - {233,271,230 ,726,726,728 ,0,0,0}, {235,275,274 ,726,726,726 ,0,0,0}, - {233,274,271 ,726,726,726 ,0,0,0}, {236,239,277 ,726,726,726 ,0,0,0}, - {235,236,275 ,726,726,726 ,0,0,0}, {279,239,718 ,726,726,726 ,0,0,0}, - {722,241,242 ,726,726,726 ,0,0,0}, {718,239,241 ,726,726,726 ,0,0,0}, - {1023,780,1020 ,726,726,727 ,0,0,0}, {202,806,201 ,726,727,727 ,0,0,0}, - {178,794,181 ,726,726,727 ,0,0,0}, {1030,1028,1027 ,727,726,726 ,0,0,0}, - {1026,1025,1030 ,726,726,727 ,0,0,0}, {782,1025,1021 ,726,726,726 ,0,0,0}, - {780,782,1020 ,726,726,727 ,0,0,0}, {776,777,1023 ,726,726,726 ,0,0,0}, - {774,776,888 ,727,726,727 ,0,0,0}, {771,774,889 ,726,727,727 ,0,0,0}, - {770,771,1024 ,726,726,727 ,0,0,0}, {765,767,894 ,726,726,726 ,0,0,0}, - {764,765,893 ,727,726,726 ,0,0,0}, {762,764,895 ,726,727,726 ,0,0,0}, - {759,762,897 ,726,726,726 ,0,0,0}, {758,194,191 ,726,727,726 ,0,0,0}, - {754,755,191 ,726,726,726 ,0,0,0}, {752,754,192 ,727,726,726 ,0,0,0}, - {784,752,187 ,726,727,726 ,0,0,0}, {752,192,187 ,727,726,726 ,0,0,0}, - {788,786,185 ,727,726,726 ,0,0,0}, {791,788,188 ,726,727,727 ,0,0,0}, - {792,791,179 ,726,726,727 ,0,0,0}, {794,792,181 ,726,726,727 ,0,0,0}, - {799,796,178 ,726,726,726 ,0,0,0}, {800,799,177 ,726,726,727 ,0,0,0}, - {199,803,196 ,726,726,726 ,0,0,0}, {196,800,177 ,726,726,727 ,0,0,0}, - {201,806,804 ,727,727,727 ,0,0,0}, {199,804,803 ,726,727,726 ,0,0,0}, - {202,809,806 ,726,726,727 ,0,0,0}, {205,810,202 ,727,727,726 ,0,0,0}, - {809,202,810 ,726,726,727 ,0,0,0}, {810,207,1033 ,727,726,726 ,0,0,0}, - {208,1033,207 ,727,726,726 ,0,0,0}, {145,147,577 ,727,727,726 ,0,0,0}, - {545,891,544 ,726,727,727 ,0,0,0}, {144,578,147 ,726,727,727 ,0,0,0}, - {550,551,932 ,726,726,727 ,0,0,0}, {548,550,931 ,726,726,726 ,0,0,0}, - {545,548,890 ,726,726,726 ,0,0,0}, {541,544,891 ,727,727,727 ,0,0,0}, - {539,541,940 ,726,727,726 ,0,0,0}, {538,539,938 ,726,726,727 ,0,0,0}, - {536,538,939 ,726,726,727 ,0,0,0}, {532,533,933 ,727,726,727 ,0,0,0}, - {529,532,937 ,727,727,726 ,0,0,0}, {528,529,936 ,726,727,726 ,0,0,0}, - {526,528,934 ,727,726,726 ,0,0,0}, {558,935,160 ,727,726,727 ,0,0,0}, - {562,560,160 ,726,726,727 ,0,0,0}, {565,562,157 ,727,726,726 ,0,0,0}, - {566,565,158 ,727,727,726 ,0,0,0}, {568,153,151 ,726,726,726 ,0,0,0}, - {566,153,568 ,727,726,726 ,0,0,0}, {573,570,151 ,726,727,726 ,0,0,0}, - {574,573,154 ,726,726,727 ,0,0,0}, {577,574,145 ,726,726,727 ,0,0,0}, - {578,577,147 ,727,726,727 ,0,0,0}, {143,583,144 ,727,727,726 ,0,0,0}, - {580,578,144 ,726,727,726 ,0,0,0}, {584,143,162 ,726,727,726 ,0,0,0}, - {143,584,583 ,727,726,727 ,0,0,0}, {162,165,925 ,726,726,726 ,0,0,0}, - {943,925,167 ,726,726,727 ,0,0,0}, {165,167,925 ,726,727,726 ,0,0,0}, - {927,171,928 ,727,727,726 ,0,0,0}, {173,944,171 ,726,726,727 ,0,0,0}, - {928,171,944 ,726,727,726 ,0,0,0}, {174,944,173 ,727,726,726 ,0,0,0}, - {917,958,599 ,726,726,726 ,0,0,0}, {133,320,337 ,726,726,728 ,0,0,0}, - {347,348,110 ,728,726,726 ,0,0,0}, {593,594,954 ,726,726,726 ,0,0,0}, - {591,953,918 ,726,726,728 ,0,0,0}, {598,601,918 ,726,726,728 ,0,0,0}, - {599,598,917 ,726,726,726 ,0,0,0}, {606,599,958 ,729,726,726 ,0,0,0}, - {604,603,919 ,726,726,726 ,0,0,0}, {609,604,920 ,726,726,726 ,0,0,0}, - {610,609,960 ,726,726,726 ,0,0,0}, {964,615,614 ,726,726,726 ,0,0,0}, - {614,963,964 ,726,726,726 ,0,0,0}, {617,1065,1066 ,726,726,726 ,0,0,0}, - {1065,617,965 ,726,726,726 ,0,0,0}, {1066,126,922 ,726,726,726 ,0,0,0}, - {1065,126,1066 ,726,726,726 ,0,0,0}, {124,961,967 ,726,726,726 ,0,0,0}, - {124,967,922 ,726,726,726 ,0,0,0}, {117,921,119 ,726,726,726 ,0,0,0}, - {120,959,117 ,726,728,726 ,0,0,0}, {351,959,111 ,726,728,726 ,0,0,0}, - {348,351,113 ,726,726,726 ,0,0,0}, {342,345,109 ,726,726,726 ,0,0,0}, - {345,347,110 ,726,728,726 ,0,0,0}, {341,342,128 ,726,726,728 ,0,0,0}, - {131,337,339 ,726,728,728 ,0,0,0}, {131,341,128 ,726,726,728 ,0,0,0}, - {133,134,320 ,726,726,726 ,0,0,0}, {131,133,337 ,726,726,728 ,0,0,0}, - {134,137,324 ,726,726,726 ,0,0,0}, {325,139,327 ,726,726,726 ,0,0,0}, - {324,137,325 ,726,726,726 ,0,0,0}, {330,139,140 ,726,726,726 ,0,0,0}, - {873,871,76 ,726,726,726 ,0,0,0}, {867,77,870 ,727,727,726 ,0,0,0}, - {910,911,1067 ,727,726,726 ,0,0,0}, {1067,911,908 ,726,726,727 ,0,0,0}, - {905,904,910 ,726,726,727 ,0,0,0}, {855,904,903 ,726,726,726 ,0,0,0}, - {854,855,902 ,726,726,727 ,0,0,0}, {851,854,901 ,726,726,726 ,0,0,0}, - {850,851,900 ,726,726,727 ,0,0,0}, {845,848,899 ,727,727,727 ,0,0,0}, - {844,845,898 ,726,727,727 ,0,0,0}, {842,844,896 ,727,726,726 ,0,0,0}, - {839,842,892 ,726,727,726 ,0,0,0}, {838,839,884 ,726,726,726 ,0,0,0}, - {836,838,880 ,727,726,726 ,0,0,0}, {832,836,92 ,727,727,727 ,0,0,0}, - {858,856,89 ,726,727,726 ,0,0,0}, {859,858,90 ,726,726,726 ,0,0,0}, - {861,859,85 ,727,726,726 ,0,0,0}, {859,90,85 ,726,726,726 ,0,0,0}, - {864,861,83 ,726,727,726 ,0,0,0}, {865,864,86 ,726,726,727 ,0,0,0}, - {867,865,77 ,727,726,727 ,0,0,0}, {79,870,77 ,727,726,727 ,0,0,0}, - {75,873,76 ,727,726,726 ,0,0,0}, {76,871,79 ,726,726,727 ,0,0,0}, - {876,75,94 ,726,727,726 ,0,0,0}, {75,876,873 ,727,726,726 ,0,0,0}, - {94,97,1042 ,726,726,726 ,0,0,0}, {912,1042,99 ,726,726,727 ,0,0,0}, - {97,99,1042 ,726,727,726 ,0,0,0}, {912,100,1049 ,726,726,727 ,0,0,0}, - {1049,105,1038 ,727,726,727 ,0,0,0}, {1049,100,103 ,727,726,727 ,0,0,0}, - {916,105,106 ,727,726,727 ,0,0,0}, {983,674,666 ,728,726,726 ,0,0,0}, - {65,298,63 ,726,726,726 ,0,0,0}, {317,45,42 ,726,726,726 ,0,0,0}, - {668,661,981 ,726,726,726 ,0,0,0}, {669,668,982 ,726,726,726 ,0,0,0}, - {666,669,983 ,726,726,728 ,0,0,0}, {881,674,983 ,726,726,728 ,0,0,0}, - {676,672,977 ,726,726,726 ,0,0,0}, {976,988,677 ,726,726,726 ,0,0,0}, - {677,676,976 ,726,726,726 ,0,0,0}, {1068,989,988 ,726,726,726 ,0,0,0}, - {55,16,14 ,726,726,726 ,0,0,0}, {989,1069,1053 ,726,726,726 ,0,0,0}, - {1069,989,1068 ,726,726,726 ,0,0,0}, {55,14,58 ,726,726,726 ,0,0,0}, - {1069,978,1053 ,726,726,726 ,0,0,0}, {58,1062,26 ,726,726,726 ,0,0,0}, - {58,26,974 ,726,726,726 ,0,0,0}, {55,970,16 ,726,726,726 ,0,0,0}, - {55,56,883 ,726,726,726 ,0,0,0}, {55,883,970 ,726,726,726 ,0,0,0}, - {49,882,51 ,726,726,726 ,0,0,0}, {52,986,49 ,726,728,726 ,0,0,0}, - {319,986,43 ,726,728,726 ,0,0,0}, {317,319,45 ,726,726,726 ,0,0,0}, - {315,42,41 ,726,726,726 ,0,0,0}, {60,311,41 ,728,726,726 ,0,0,0}, - {312,315,41 ,726,726,726 ,0,0,0}, {63,298,309 ,726,726,726 ,0,0,0}, - {60,309,311 ,728,726,726 ,0,0,0}, {65,299,298 ,726,726,726 ,0,0,0}, - {66,69,301 ,726,726,726 ,0,0,0}, {65,66,299 ,726,726,726 ,0,0,0}, - {304,71,305 ,726,726,726 ,0,0,0}, {301,69,304 ,726,726,726 ,0,0,0}, - {72,305,71 ,726,726,726 ,0,0,0}, {1070,371,1071 ,730,730,730 ,0,0,0}, - {267,231,229 ,730,730,730 ,0,0,0}, {88,860,91 ,730,730,730 ,0,0,0}, - {1072,1073,1074 ,730,730,730 ,0,0,0}, {1075,741,744 ,730,730,730 ,0,0,0}, - {460,247,463 ,730,730,730 ,0,0,0}, {483,702,705 ,730,730,730 ,0,0,0}, - {263,1076,1077 ,730,730,730 ,0,0,0}, {1078,1079,1080 ,730,730,730 ,0,0,0}, - {1076,263,1081 ,730,730,730 ,0,0,0}, {1082,1083,104 ,730,730,730 ,0,0,0}, - {849,1084,1085 ,730,730,730 ,0,0,0}, {1082,102,101 ,730,730,730 ,0,0,0}, - {84,862,863 ,730,730,730 ,0,0,0}, {81,82,866 ,730,730,730 ,0,0,0}, - {1086,1087,843 ,730,730,730 ,0,0,0}, {93,877,95 ,730,730,730 ,0,0,0}, - {834,833,87 ,730,730,730 ,0,0,0}, {835,1088,837 ,730,730,730 ,0,0,0}, - {74,874,875 ,730,730,730 ,0,0,0}, {1089,1090,98 ,730,730,730 ,0,0,0}, - {159,156,564 ,730,730,730 ,0,0,0}, {80,78,872 ,730,730,730 ,0,0,0}, - {527,557,1091 ,730,730,730 ,0,0,0}, {875,877,93 ,730,730,730 ,0,0,0}, - {81,868,78 ,730,730,730 ,0,0,0}, {142,582,161 ,730,730,730 ,0,0,0}, - {1092,1093,535 ,730,730,730 ,0,0,0}, {833,857,87 ,730,730,730 ,0,0,0}, - {1089,96,95 ,730,730,730 ,0,0,0}, {1093,1094,537 ,730,730,730 ,0,0,0}, - {150,569,571 ,730,730,730 ,0,0,0}, {834,87,1095 ,730,730,730 ,0,0,0}, - {1090,1082,101 ,730,730,730 ,0,0,0}, {798,195,176 ,730,730,730 ,0,0,0}, - {802,198,197 ,730,730,730 ,0,0,0}, {840,837,1096 ,730,730,730 ,0,0,0}, - {837,1088,1096 ,730,730,730 ,0,0,0}, {1097,1086,841 ,730,730,730 ,0,0,0}, - {1084,849,847 ,730,730,730 ,0,0,0}, {1087,1084,846 ,730,730,730 ,0,0,0}, - {852,1085,1098 ,730,730,730 ,0,0,0}, {1099,1100,1101 ,730,730,730 ,0,0,0}, - {263,261,1081 ,730,730,730 ,0,0,0}, {1102,1103,1083 ,730,730,730 ,0,0,0}, - {261,259,473 ,730,730,730 ,0,0,0}, {1104,1105,1106 ,730,730,730 ,0,0,0}, - {1107,1108,1109 ,730,730,730 ,0,0,0}, {244,247,460 ,730,730,730 ,0,0,0}, - {381,464,253 ,730,730,730 ,0,0,0}, {711,713,492 ,730,730,730 ,0,0,0}, - {690,686,501 ,730,730,730 ,0,0,0}, {1072,1110,1111 ,730,730,730 ,0,0,0}, - {1112,1075,744 ,730,730,730 ,0,0,0}, {1113,1114,740 ,730,730,730 ,0,0,0}, - {1115,728,730 ,730,730,730 ,0,0,0}, {733,1114,1116 ,730,730,730 ,0,0,0}, - {240,238,747 ,730,730,730 ,0,0,0}, {725,1117,1118 ,730,730,730 ,0,0,0}, - {1119,1120,1121 ,730,730,730 ,0,0,0}, {1122,1123,1124 ,730,730,730 ,0,0,0}, - {507,694,693 ,730,730,730 ,0,0,0}, {1121,749,1119 ,730,730,730 ,0,0,0}, - {1125,1126,1127 ,730,730,730 ,0,0,0}, {1128,750,1129 ,730,730,730 ,0,0,0}, - {1130,775,1131 ,730,730,730 ,0,0,0}, {779,1132,781 ,730,730,730 ,0,0,0}, - {1133,1134,769 ,730,730,730 ,0,0,0}, {203,811,204 ,730,730,730 ,0,0,0}, - {1135,766,763 ,730,730,730 ,0,0,0}, {193,190,753 ,730,730,730 ,0,0,0}, - {180,790,793 ,730,730,730 ,0,0,0}, {1136,1125,1127 ,730,730,730 ,0,0,0}, - {1135,763,1137 ,730,730,730 ,0,0,0}, {760,189,1138 ,730,730,730 ,0,0,0}, - {206,811,1139 ,730,730,730 ,0,0,0}, {805,200,198 ,730,730,730 ,0,0,0}, - {176,182,795 ,730,730,730 ,0,0,0}, {787,184,785 ,730,730,730 ,0,0,0}, - {789,790,183 ,730,730,730 ,0,0,0}, {195,801,197 ,730,730,730 ,0,0,0}, - {186,783,785 ,730,730,730 ,0,0,0}, {189,760,757 ,730,730,730 ,0,0,0}, - {756,190,757 ,730,730,730 ,0,0,0}, {808,811,203 ,730,730,730 ,0,0,0}, - {203,200,807 ,730,730,730 ,0,0,0}, {209,1139,1140 ,730,730,730 ,0,0,0}, - {1137,763,761 ,730,730,730 ,0,0,0}, {1140,1136,1141 ,730,730,730 ,0,0,0}, - {216,214,282 ,730,730,730 ,0,0,0}, {195,798,801 ,730,730,730 ,0,0,0}, - {1135,1133,766 ,730,730,730 ,0,0,0}, {1142,772,1134 ,730,730,730 ,0,0,0}, - {775,1130,778 ,730,730,730 ,0,0,0}, {1131,773,1142 ,730,730,730 ,0,0,0}, - {1132,1143,781 ,730,730,730 ,0,0,0}, {1136,1127,1144 ,730,730,730 ,0,0,0}, - {1145,1144,1146 ,730,730,730 ,0,0,0}, {1126,1125,1147 ,730,730,730 ,0,0,0}, - {1148,1126,1147 ,730,730,730 ,0,0,0}, {1149,1150,750 ,730,730,730 ,0,0,0}, - {750,1148,1147 ,730,730,730 ,0,0,0}, {1150,829,1148 ,730,730,730 ,0,0,0}, - {388,827,1151 ,730,730,730 ,0,0,0}, {693,505,507 ,730,730,730 ,0,0,0}, - {7,697,9 ,730,730,730 ,0,0,0}, {1152,243,723 ,730,730,730 ,0,0,0}, - {294,227,224 ,730,730,730 ,0,0,0}, {232,272,273 ,730,730,730 ,0,0,0}, - {237,234,276 ,730,730,730 ,0,0,0}, {284,214,287 ,730,730,730 ,0,0,0}, - {218,288,217 ,730,730,730 ,0,0,0}, {267,229,265 ,730,730,730 ,0,0,0}, - {210,266,265 ,730,730,730 ,0,0,0}, {272,231,270 ,730,730,730 ,0,0,0}, - {238,280,747 ,730,730,730 ,0,0,0}, {232,273,234 ,730,730,730 ,0,0,0}, - {739,1075,1113 ,730,730,730 ,0,0,0}, {1112,746,1074 ,730,730,730 ,0,0,0}, - {735,1117,736 ,730,730,730 ,0,0,0}, {1116,735,733 ,730,730,730 ,0,0,0}, - {728,1152,720 ,730,730,730 ,0,0,0}, {730,1118,1115 ,730,730,730 ,0,0,0}, - {278,238,237 ,730,730,730 ,0,0,0}, {240,724,243 ,730,730,730 ,0,0,0}, - {385,383,825 ,730,730,730 ,0,0,0}, {685,496,499 ,730,730,730 ,0,0,0}, - {486,705,707 ,730,730,730 ,0,0,0}, {250,463,247 ,730,730,730 ,0,0,0}, - {480,701,481 ,730,730,730 ,0,0,0}, {637,29,27 ,730,730,730 ,0,0,0}, - {701,702,481 ,730,730,730 ,0,0,0}, {480,684,701 ,730,730,730 ,0,0,0}, - {682,496,685 ,730,730,730 ,0,0,0}, {690,501,502 ,730,730,730 ,0,0,0}, - {691,690,502 ,730,730,730 ,0,0,0}, {1122,1153,1154 ,730,730,730 ,0,0,0}, - {1155,223,1123 ,730,730,730 ,0,0,0}, {1122,1154,1123 ,730,730,730 ,0,0,0}, - {691,505,693 ,730,730,730 ,0,0,0}, {1124,1123,223 ,730,730,730 ,0,0,0}, - {1154,1120,1119 ,730,730,730 ,0,0,0}, {1120,1154,1153 ,730,730,730 ,0,0,0}, - {699,3,5 ,730,730,730 ,0,0,0}, {502,505,691 ,730,730,730 ,0,0,0}, - {686,499,501 ,730,730,730 ,0,0,0}, {685,499,686 ,730,730,730 ,0,0,0}, - {684,495,682 ,730,730,730 ,0,0,0}, {374,817,815 ,730,730,730 ,0,0,0}, - {818,375,378 ,730,730,730 ,0,0,0}, {253,464,250 ,730,730,730 ,0,0,0}, - {1156,716,1157 ,730,730,730 ,0,0,0}, {713,714,493 ,730,730,730 ,0,0,0}, - {424,17,1158 ,730,730,730 ,0,0,0}, {637,634,29 ,730,730,730 ,0,0,0}, - {1159,714,716 ,730,730,730 ,0,0,0}, {639,27,20 ,730,730,730 ,0,0,0}, - {1160,25,1161 ,730,730,730 ,0,0,0}, {64,62,296 ,730,730,730 ,0,0,0}, - {40,316,314 ,730,730,730 ,0,0,0}, {70,68,303 ,730,730,730 ,0,0,0}, - {1162,73,679 ,730,730,730 ,0,0,0}, {1163,670,1164 ,730,730,730 ,0,0,0}, - {313,59,314 ,730,730,730 ,0,0,0}, {1165,1166,675 ,730,730,730 ,0,0,0}, - {1167,1168,1169 ,730,730,730 ,0,0,0}, {302,68,67 ,730,730,730 ,0,0,0}, - {61,297,62 ,730,730,730 ,0,0,0}, {660,1170,1171 ,730,730,730 ,0,0,0}, - {308,73,306 ,730,730,730 ,0,0,0}, {1172,1164,665 ,730,730,730 ,0,0,0}, - {1173,1167,1174 ,730,730,730 ,0,0,0}, {1175,673,1166 ,730,730,730 ,0,0,0}, - {1172,671,1175 ,730,730,730 ,0,0,0}, {678,1169,1165 ,730,730,730 ,0,0,0}, - {671,1172,667 ,730,730,730 ,0,0,0}, {1162,663,1171 ,730,730,730 ,0,0,0}, - {1170,659,1163 ,730,730,730 ,0,0,0}, {361,414,413 ,730,730,730 ,0,0,0}, - {64,300,67 ,730,730,730 ,0,0,0}, {73,70,306 ,730,730,730 ,0,0,0}, - {310,61,59 ,730,730,730 ,0,0,0}, {633,631,455 ,730,730,730 ,0,0,0}, - {626,625,449 ,730,730,730 ,0,0,0}, {452,631,630 ,730,730,730 ,0,0,0}, - {455,631,452 ,730,730,730 ,0,0,0}, {633,457,634 ,730,730,730 ,0,0,0}, - {1176,318,44 ,730,730,730 ,0,0,0}, {1177,1160,1161 ,730,730,730 ,0,0,0}, - {451,452,630 ,730,730,730 ,0,0,0}, {457,633,455 ,730,730,730 ,0,0,0}, - {53,25,1178 ,730,730,730 ,0,0,0}, {1179,48,50 ,730,730,730 ,0,0,0}, - {27,639,637 ,730,730,730 ,0,0,0}, {20,23,639 ,730,730,730 ,0,0,0}, - {25,53,1161 ,730,730,730 ,0,0,0}, {29,634,457 ,730,730,730 ,0,0,0}, - {1180,1181,525 ,730,730,730 ,0,0,0}, {630,626,451 ,730,730,730 ,0,0,0}, - {451,626,449 ,730,730,730 ,0,0,0}, {519,400,392 ,730,730,730 ,0,0,0}, - {449,625,446 ,730,730,730 ,0,0,0}, {393,513,511 ,730,730,730 ,0,0,0}, - {445,446,622 ,730,730,730 ,0,0,0}, {431,430,641 ,730,730,730 ,0,0,0}, - {624,430,445 ,730,730,730 ,0,0,0}, {645,436,433 ,730,730,730 ,0,0,0}, - {433,431,642 ,730,730,730 ,0,0,0}, {420,352,418 ,730,730,730 ,0,0,0}, - {355,358,410 ,730,730,730 ,0,0,0}, {366,422,367 ,730,730,730 ,0,0,0}, - {423,1182,369 ,730,730,730 ,0,0,0}, {1183,125,1184 ,730,730,730 ,0,0,0}, - {654,1185,443 ,730,730,730 ,0,0,0}, {108,349,346 ,730,730,730 ,0,0,0}, - {132,321,135 ,730,730,730 ,0,0,0}, {108,344,127 ,730,730,730 ,0,0,0}, - {613,616,1186 ,730,730,730 ,0,0,0}, {1187,597,1188 ,730,730,730 ,0,0,0}, - {1189,1190,612 ,730,730,730 ,0,0,0}, {596,1191,1192 ,730,730,730 ,0,0,0}, - {328,329,138 ,730,730,730 ,0,0,0}, {616,618,1186 ,730,730,730 ,0,0,0}, - {135,323,136 ,730,730,730 ,0,0,0}, {611,1193,1189 ,730,730,730 ,0,0,0}, - {1194,334,1195 ,730,730,730 ,0,0,0}, {602,1196,600 ,730,730,730 ,0,0,0}, - {605,1197,607 ,730,730,730 ,0,0,0}, {1188,608,1197 ,730,730,730 ,0,0,0}, - {1196,602,1187 ,730,730,730 ,0,0,0}, {595,1198,1191 ,730,730,730 ,0,0,0}, - {1198,592,1196 ,730,730,730 ,0,0,0}, {612,1190,605 ,730,730,730 ,0,0,0}, - {1192,1195,336 ,730,730,730 ,0,0,0}, {596,1192,619 ,730,730,730 ,0,0,0}, - {141,138,329 ,730,730,730 ,0,0,0}, {1194,141,332 ,730,730,730 ,0,0,0}, - {618,1199,1200 ,730,730,730 ,0,0,0}, {1200,1186,618 ,730,730,730 ,0,0,0}, - {322,321,132 ,730,730,730 ,0,0,0}, {136,326,138 ,730,730,730 ,0,0,0}, - {130,129,340 ,730,730,730 ,0,0,0}, {322,130,338 ,730,730,730 ,0,0,0}, - {121,1201,1202 ,730,730,730 ,0,0,0}, {343,129,127 ,730,730,730 ,0,0,0}, - {118,125,1183 ,730,730,730 ,0,0,0}, {350,112,1203 ,730,730,730 ,0,0,0}, - {366,415,422 ,730,730,730 ,0,0,0}, {116,118,1183 ,730,730,730 ,0,0,0}, - {1204,1205,1184 ,730,730,730 ,0,0,0}, {1205,1204,1206 ,730,730,730 ,0,0,0}, - {30,33,587 ,730,730,730 ,0,0,0}, {587,1207,1206 ,730,730,730 ,0,0,0}, - {1205,1206,1207 ,730,730,730 ,0,0,0}, {1207,587,35 ,730,730,730 ,0,0,0}, - {656,35,1208 ,730,730,730 ,0,0,0}, {540,1209,542 ,730,730,730 ,0,0,0}, - {582,142,581 ,730,730,730 ,0,0,0}, {1210,546,1211 ,730,730,730 ,0,0,0}, - {542,1211,543 ,730,730,730 ,0,0,0}, {1094,1209,540 ,730,730,730 ,0,0,0}, - {530,1212,1213 ,730,730,730 ,0,0,0}, {1092,534,531 ,730,730,730 ,0,0,0}, - {559,155,1214 ,730,730,730 ,0,0,0}, {1091,1212,527 ,730,730,730 ,0,0,0}, - {1215,164,163 ,730,730,730 ,0,0,0}, {561,563,155 ,730,730,730 ,0,0,0}, - {579,142,148 ,730,730,730 ,0,0,0}, {575,576,146 ,730,730,730 ,0,0,0}, - {585,163,161 ,730,730,730 ,0,0,0}, {575,149,572 ,730,730,730 ,0,0,0}, - {166,1215,1216 ,730,730,730 ,0,0,0}, {567,152,159 ,730,730,730 ,0,0,0}, - {155,559,561 ,730,730,730 ,0,0,0}, {1217,169,1216 ,730,730,730 ,0,0,0}, - {170,169,1217 ,730,730,730 ,0,0,0}, {530,527,1212 ,730,730,730 ,0,0,0}, - {552,549,1218 ,730,730,730 ,0,0,0}, {1219,547,1210 ,730,730,730 ,0,0,0}, - {552,1220,553 ,730,730,730 ,0,0,0}, {1218,549,1219 ,730,730,730 ,0,0,0}, - {553,1220,555 ,730,730,730 ,0,0,0}, {172,1221,175 ,730,730,730 ,0,0,0}, - {1217,1222,1223 ,730,730,730 ,0,0,0}, {172,170,1221 ,730,730,730 ,0,0,0}, - {1224,1222,1070 ,730,730,730 ,0,0,0}, {1222,1224,1223 ,730,730,730 ,0,0,0}, - {353,420,415 ,730,730,730 ,0,0,0}, {1224,1070,586 ,730,730,730 ,0,0,0}, - {420,353,352 ,730,730,730 ,0,0,0}, {366,353,415 ,730,730,730 ,0,0,0}, - {352,355,418 ,730,730,730 ,0,0,0}, {410,358,413 ,730,730,730 ,0,0,0}, - {418,355,410 ,730,730,730 ,0,0,0}, {436,647,437 ,730,730,730 ,0,0,0}, - {430,624,641 ,730,730,730 ,0,0,0}, {399,414,1225 ,730,730,730 ,0,0,0}, - {399,1225,360 ,730,730,730 ,0,0,0}, {360,509,399 ,730,730,730 ,0,0,0}, - {514,396,398 ,730,730,730 ,0,0,0}, {439,437,648 ,730,730,730 ,0,0,0}, - {413,358,361 ,730,730,730 ,0,0,0}, {641,642,431 ,730,730,730 ,0,0,0}, - {439,651,442 ,730,730,730 ,0,0,0}, {642,645,433 ,730,730,730 ,0,0,0}, - {654,443,653 ,730,730,730 ,0,0,0}, {645,647,436 ,730,730,730 ,0,0,0}, - {39,586,878 ,730,730,730 ,0,0,0}, {648,651,439 ,730,730,730 ,0,0,0}, - {371,1226,1227 ,730,730,730 ,0,0,0}, {423,367,422 ,730,730,730 ,0,0,0}, - {1182,1226,369 ,730,730,730 ,0,0,0}, {367,423,369 ,730,730,730 ,0,0,0}, - {369,1226,371 ,730,730,730 ,0,0,0}, {1070,1071,586 ,730,730,730 ,0,0,0}, - {1227,1071,371 ,730,730,730 ,0,0,0}, {1228,586,1229 ,730,730,730 ,0,0,0}, - {586,1071,1229 ,730,730,730 ,0,0,0}, {1230,586,1231 ,730,730,730 ,0,0,0}, - {586,1228,1231 ,730,730,730 ,0,0,0}, {586,1230,878 ,730,730,730 ,0,0,0}, - {1232,654,656 ,730,730,730 ,0,0,0}, {586,39,587 ,730,730,730 ,0,0,0}, - {587,37,30 ,730,730,730 ,0,0,0}, {587,39,37 ,730,730,730 ,0,0,0}, - {35,656,1207 ,730,730,730 ,0,0,0}, {33,35,587 ,730,730,730 ,0,0,0}, - {1208,1232,656 ,730,730,730 ,0,0,0}, {1232,1185,654 ,730,730,730 ,0,0,0}, - {442,653,443 ,730,730,730 ,0,0,0}, {653,442,651 ,730,730,730 ,0,0,0}, - {437,647,648 ,730,730,730 ,0,0,0}, {445,622,624 ,730,730,730 ,0,0,0}, - {446,625,622 ,730,730,730 ,0,0,0}, {519,392,511 ,730,730,730 ,0,0,0}, - {399,509,398 ,730,730,730 ,0,0,0}, {521,401,400 ,730,730,730 ,0,0,0}, - {396,514,513 ,730,730,730 ,0,0,0}, {406,403,516 ,730,730,730 ,0,0,0}, - {511,392,393 ,730,730,730 ,0,0,0}, {525,1233,1234 ,730,730,730 ,0,0,0}, - {521,400,519 ,730,730,730 ,0,0,0}, {15,54,13 ,730,730,730 ,0,0,0}, - {401,521,516 ,730,730,730 ,0,0,0}, {1178,13,53 ,730,730,730 ,0,0,0}, - {1160,1235,25 ,730,730,730 ,0,0,0}, {639,23,1235 ,730,730,730 ,0,0,0}, - {25,1235,23 ,730,730,730 ,0,0,0}, {17,10,1158 ,730,730,730 ,0,0,0}, - {1236,13,1178 ,730,730,730 ,0,0,0}, {1237,54,15 ,730,730,730 ,0,0,0}, - {424,19,17 ,730,730,730 ,0,0,0}, {1238,1237,15 ,730,730,730 ,0,0,0}, - {705,486,483 ,730,730,730 ,0,0,0}, {245,470,258 ,730,730,730 ,0,0,0}, - {1239,1240,1101 ,730,730,730 ,0,0,0}, {472,259,465 ,730,730,730 ,0,0,0}, - {406,523,1234 ,730,730,730 ,0,0,0}, {1077,1241,263 ,730,730,730 ,0,0,0}, - {1109,1100,1099 ,730,730,730 ,0,0,0}, {1240,1181,1180 ,730,730,730 ,0,0,0}, - {1240,1180,1101 ,730,730,730 ,0,0,0}, {1181,1233,525 ,730,730,730 ,0,0,0}, - {1234,523,525 ,730,730,730 ,0,0,0}, {406,516,523 ,730,730,730 ,0,0,0}, - {401,516,403 ,730,730,730 ,0,0,0}, {513,393,396 ,730,730,730 ,0,0,0}, - {509,514,398 ,730,730,730 ,0,0,0}, {253,252,381 ,730,730,730 ,0,0,0}, - {252,813,380 ,730,730,730 ,0,0,0}, {707,708,487 ,730,730,730 ,0,0,0}, - {464,463,250 ,730,730,730 ,0,0,0}, {483,481,702 ,730,730,730 ,0,0,0}, - {489,708,711 ,730,730,730 ,0,0,0}, {245,244,468 ,730,730,730 ,0,0,0}, - {460,468,244 ,730,730,730 ,0,0,0}, {486,707,487 ,730,730,730 ,0,0,0}, - {470,465,258 ,730,730,730 ,0,0,0}, {489,711,492 ,730,730,730 ,0,0,0}, - {472,473,259 ,730,730,730 ,0,0,0}, {258,465,259 ,730,730,730 ,0,0,0}, - {427,830,19 ,730,730,730 ,0,0,0}, {1242,1105,1239 ,730,730,730 ,0,0,0}, - {1239,1103,1242 ,730,730,730 ,0,0,0}, {473,1081,261 ,730,730,730 ,0,0,0}, - {1109,1099,1107 ,730,730,730 ,0,0,0}, {1241,1102,1083 ,730,730,730 ,0,0,0}, - {1077,1102,1241 ,730,730,730 ,0,0,0}, {1106,1105,1242 ,730,730,730 ,0,0,0}, - {1104,1243,1244 ,730,730,730 ,0,0,0}, {1243,1104,1106 ,730,730,730 ,0,0,0}, - {1244,830,427 ,730,730,730 ,0,0,0}, {1243,830,1244 ,730,730,730 ,0,0,0}, - {424,427,19 ,730,730,730 ,0,0,0}, {10,13,1236 ,730,730,730 ,0,0,0}, - {10,1236,1158 ,730,730,730 ,0,0,0}, {1245,54,1237 ,730,730,730 ,0,0,0}, - {1238,15,1157 ,730,730,730 ,0,0,0}, {1238,1157,716 ,730,730,730 ,0,0,0}, - {1156,1159,716 ,730,730,730 ,0,0,0}, {1159,493,714 ,730,730,730 ,0,0,0}, - {713,493,492 ,730,730,730 ,0,0,0}, {489,487,708 ,730,730,730 ,0,0,0}, - {480,495,684 ,730,730,730 ,0,0,0}, {495,496,682 ,730,730,730 ,0,0,0}, - {815,382,374 ,730,730,730 ,0,0,0}, {381,252,380 ,730,730,730 ,0,0,0}, - {382,823,383 ,730,730,730 ,0,0,0}, {813,818,378 ,730,730,730 ,0,0,0}, - {820,827,388 ,730,730,730 ,0,0,0}, {374,375,817 ,730,730,730 ,0,0,0}, - {815,823,382 ,730,730,730 ,0,0,0}, {825,383,823 ,730,730,730 ,0,0,0}, - {697,694,9 ,730,730,730 ,0,0,0}, {694,507,9 ,730,730,730 ,0,0,0}, - {0,699,697 ,730,730,730 ,0,0,0}, {0,697,7 ,730,730,730 ,0,0,0}, - {5,1121,699 ,730,730,730 ,0,0,0}, {0,3,699 ,730,730,730 ,0,0,0}, - {749,1121,5 ,730,730,730 ,0,0,0}, {1246,749,1247 ,730,730,730 ,0,0,0}, - {749,5,1247 ,730,730,730 ,0,0,0}, {749,1246,1248 ,730,730,730 ,0,0,0}, - {749,474,476 ,730,730,730 ,0,0,0}, {749,1248,474 ,730,730,730 ,0,0,0}, - {1249,827,1250 ,730,730,730 ,0,0,0}, {749,476,750 ,730,730,730 ,0,0,0}, - {750,1251,1129 ,730,730,730 ,0,0,0}, {750,476,1251 ,730,730,730 ,0,0,0}, - {1148,750,1150 ,730,730,730 ,0,0,0}, {1128,1149,750 ,730,730,730 ,0,0,0}, - {829,1250,827 ,730,730,730 ,0,0,0}, {1150,1250,829 ,730,730,730 ,0,0,0}, - {1249,1151,827 ,730,730,730 ,0,0,0}, {385,820,388 ,730,730,730 ,0,0,0}, - {385,825,820 ,730,730,730 ,0,0,0}, {375,818,817 ,730,730,730 ,0,0,0}, - {378,380,813 ,730,730,730 ,0,0,0}, {1153,1122,1252 ,730,730,730 ,0,0,0}, - {290,218,220 ,730,730,730 ,0,0,0}, {1111,1110,1252 ,730,730,730 ,0,0,0}, - {1110,1153,1252 ,730,730,730 ,0,0,0}, {1073,1072,1111 ,730,730,730 ,0,0,0}, - {746,1072,1074 ,730,730,730 ,0,0,0}, {744,746,1112 ,730,730,730 ,0,0,0}, - {739,741,1075 ,730,730,730 ,0,0,0}, {740,739,1113 ,730,730,730 ,0,0,0}, - {733,740,1114 ,730,730,730 ,0,0,0}, {735,1116,1117 ,730,730,730 ,0,0,0}, - {725,736,1117 ,730,730,730 ,0,0,0}, {730,725,1118 ,730,730,730 ,0,0,0}, - {728,1115,1152 ,730,730,730 ,0,0,0}, {723,720,1152 ,730,730,730 ,0,0,0}, - {724,723,243 ,730,730,730 ,0,0,0}, {747,724,240 ,730,730,730 ,0,0,0}, - {278,280,238 ,730,730,730 ,0,0,0}, {276,278,237 ,730,730,730 ,0,0,0}, - {273,276,234 ,730,730,730 ,0,0,0}, {272,232,231 ,730,730,730 ,0,0,0}, - {267,270,231 ,730,730,730 ,0,0,0}, {265,229,210 ,730,730,730 ,0,0,0}, - {266,210,216 ,730,730,730 ,0,0,0}, {284,282,214 ,730,730,730 ,0,0,0}, - {282,266,216 ,730,730,730 ,0,0,0}, {217,287,214 ,730,730,730 ,0,0,0}, - {218,290,288 ,730,730,730 ,0,0,0}, {217,288,287 ,730,730,730 ,0,0,0}, - {220,293,290 ,730,730,730 ,0,0,0}, {227,294,220 ,730,730,730 ,0,0,0}, - {293,220,294 ,730,730,730 ,0,0,0}, {294,224,1155 ,730,730,730 ,0,0,0}, - {223,1155,224 ,730,730,730 ,0,0,0}, {1138,1137,761 ,730,730,730 ,0,0,0}, - {761,760,1138 ,730,730,730 ,0,0,0}, {769,768,1133 ,730,730,730 ,0,0,0}, - {766,1133,768 ,730,730,730 ,0,0,0}, {772,769,1134 ,730,730,730 ,0,0,0}, - {773,772,1142 ,730,730,730 ,0,0,0}, {775,773,1131 ,730,730,730 ,0,0,0}, - {1130,1132,779 ,730,730,730 ,0,0,0}, {779,778,1130 ,730,730,730 ,0,0,0}, - {1144,1253,1146 ,730,730,730 ,0,0,0}, {1253,1143,1254 ,730,730,730 ,0,0,0}, - {1143,1253,781 ,730,730,730 ,0,0,0}, {1254,1146,1253 ,730,730,730 ,0,0,0}, - {1144,1145,1136 ,730,730,730 ,0,0,0}, {1136,1140,1125 ,730,730,730 ,0,0,0}, - {209,1140,1141 ,730,730,730 ,0,0,0}, {206,1139,209 ,730,730,730 ,0,0,0}, - {204,811,206 ,730,730,730 ,0,0,0}, {807,808,203 ,730,730,730 ,0,0,0}, - {805,807,200 ,730,730,730 ,0,0,0}, {802,805,198 ,730,730,730 ,0,0,0}, - {801,802,197 ,730,730,730 ,0,0,0}, {798,176,797 ,730,730,730 ,0,0,0}, - {793,795,182 ,730,730,730 ,0,0,0}, {795,797,176 ,730,730,730 ,0,0,0}, - {183,790,180 ,730,730,730 ,0,0,0}, {180,793,182 ,730,730,730 ,0,0,0}, - {184,789,183 ,730,730,730 ,0,0,0}, {184,186,785 ,730,730,730 ,0,0,0}, - {184,787,789 ,730,730,730 ,0,0,0}, {186,193,783 ,730,730,730 ,0,0,0}, - {753,190,756 ,730,730,730 ,0,0,0}, {783,193,753 ,730,730,730 ,0,0,0}, - {757,190,189 ,730,730,730 ,0,0,0}, {1214,1091,557 ,730,730,730 ,0,0,0}, - {1214,557,559 ,730,730,730 ,0,0,0}, {531,1213,1092 ,730,730,730 ,0,0,0}, - {530,1213,531 ,730,730,730 ,0,0,0}, {535,534,1092 ,730,730,730 ,0,0,0}, - {537,535,1093 ,730,730,730 ,0,0,0}, {540,537,1094 ,730,730,730 ,0,0,0}, - {542,1209,1211 ,730,730,730 ,0,0,0}, {546,543,1211 ,730,730,730 ,0,0,0}, - {547,546,1210 ,730,730,730 ,0,0,0}, {549,547,1219 ,730,730,730 ,0,0,0}, - {1221,170,1223 ,730,730,730 ,0,0,0}, {552,1218,1220 ,730,730,730 ,0,0,0}, - {1255,555,1220 ,730,730,730 ,0,0,0}, {555,1256,1257 ,730,730,730 ,0,0,0}, - {1256,555,1255 ,730,730,730 ,0,0,0}, {1257,175,1221 ,730,730,730 ,0,0,0}, - {1256,175,1257 ,730,730,730 ,0,0,0}, {170,1217,1223 ,730,730,730 ,0,0,0}, - {166,1216,169 ,730,730,730 ,0,0,0}, {164,1215,166 ,730,730,730 ,0,0,0}, - {585,1215,163 ,730,730,730 ,0,0,0}, {582,585,161 ,730,730,730 ,0,0,0}, - {579,581,142 ,730,730,730 ,0,0,0}, {576,579,148 ,730,730,730 ,0,0,0}, - {149,575,146 ,730,730,730 ,0,0,0}, {146,576,148 ,730,730,730 ,0,0,0}, - {150,572,149 ,730,730,730 ,0,0,0}, {150,152,569 ,730,730,730 ,0,0,0}, - {150,571,572 ,730,730,730 ,0,0,0}, {567,159,564 ,730,730,730 ,0,0,0}, - {569,152,567 ,730,730,730 ,0,0,0}, {564,156,563 ,730,730,730 ,0,0,0}, - {155,563,156 ,730,730,730 ,0,0,0}, {1201,1199,618 ,730,730,730 ,0,0,0}, - {121,1199,1201 ,730,730,730 ,0,0,0}, {611,613,1193 ,730,730,730 ,0,0,0}, - {613,1186,1193 ,730,730,730 ,0,0,0}, {612,611,1189 ,730,730,730 ,0,0,0}, - {605,1190,1197 ,730,730,730 ,0,0,0}, {608,607,1197 ,730,730,730 ,0,0,0}, - {597,608,1188 ,730,730,730 ,0,0,0}, {602,597,1187 ,730,730,730 ,0,0,0}, - {592,600,1196 ,730,730,730 ,0,0,0}, {595,592,1198 ,730,730,730 ,0,0,0}, - {596,595,1191 ,730,730,730 ,0,0,0}, {336,619,1192 ,730,730,730 ,0,0,0}, - {334,336,1195 ,730,730,730 ,0,0,0}, {332,334,1194 ,730,730,730 ,0,0,0}, - {329,332,141 ,730,730,730 ,0,0,0}, {326,328,138 ,730,730,730 ,0,0,0}, - {323,326,136 ,730,730,730 ,0,0,0}, {321,323,135 ,730,730,730 ,0,0,0}, - {322,132,130 ,730,730,730 ,0,0,0}, {340,338,130 ,730,730,730 ,0,0,0}, - {343,340,129 ,730,730,730 ,0,0,0}, {344,343,127 ,730,730,730 ,0,0,0}, - {114,349,108 ,730,730,730 ,0,0,0}, {346,344,108 ,730,730,730 ,0,0,0}, - {350,114,112 ,730,730,730 ,0,0,0}, {114,350,349 ,730,730,730 ,0,0,0}, - {112,115,1203 ,730,730,730 ,0,0,0}, {1183,1203,116 ,730,730,730 ,0,0,0}, - {115,116,1203 ,730,730,730 ,0,0,0}, {1184,125,1204 ,730,730,730 ,0,0,0}, - {122,1202,125 ,730,730,730 ,0,0,0}, {1204,125,1202 ,730,730,730 ,0,0,0}, - {121,1202,122 ,730,730,730 ,0,0,0}, {1095,1088,835 ,730,730,730 ,0,0,0}, - {1095,835,834 ,730,730,730 ,0,0,0}, {841,840,1097 ,730,730,730 ,0,0,0}, - {840,1096,1097 ,730,730,730 ,0,0,0}, {843,841,1086 ,730,730,730 ,0,0,0}, - {846,843,1087 ,730,730,730 ,0,0,0}, {847,846,1084 ,730,730,730 ,0,0,0}, - {852,849,1085 ,730,730,730 ,0,0,0}, {1098,1079,853 ,730,730,730 ,0,0,0}, - {853,852,1098 ,730,730,730 ,0,0,0}, {104,1103,107 ,730,730,730 ,0,0,0}, - {1258,1078,1080 ,730,730,730 ,0,0,0}, {1079,1078,853 ,730,730,730 ,0,0,0}, - {1107,1258,1108 ,730,730,730 ,0,0,0}, {1258,1107,1078 ,730,730,730 ,0,0,0}, - {1103,1239,107 ,730,730,730 ,0,0,0}, {1100,107,1239 ,730,730,730 ,0,0,0}, - {1100,1239,1101 ,730,730,730 ,0,0,0}, {104,1083,1103 ,730,730,730 ,0,0,0}, - {104,102,1082 ,730,730,730 ,0,0,0}, {98,1090,101 ,730,730,730 ,0,0,0}, - {96,1089,98 ,730,730,730 ,0,0,0}, {877,1089,95 ,730,730,730 ,0,0,0}, - {875,93,74 ,730,730,730 ,0,0,0}, {874,74,80 ,730,730,730 ,0,0,0}, - {869,872,78 ,730,730,730 ,0,0,0}, {872,874,80 ,730,730,730 ,0,0,0}, - {81,866,868 ,730,730,730 ,0,0,0}, {78,868,869 ,730,730,730 ,0,0,0}, - {82,863,866 ,730,730,730 ,0,0,0}, {84,91,862 ,730,730,730 ,0,0,0}, - {82,84,863 ,730,730,730 ,0,0,0}, {860,88,857 ,730,730,730 ,0,0,0}, - {862,91,860 ,730,730,730 ,0,0,0}, {87,857,88 ,730,730,730 ,0,0,0}, - {1259,1177,1260 ,730,730,730 ,0,0,0}, {1177,1161,1260 ,730,730,730 ,0,0,0}, - {1173,1174,1259 ,730,730,730 ,0,0,0}, {1174,1177,1259 ,730,730,730 ,0,0,0}, - {1168,1167,1173 ,730,730,730 ,0,0,0}, {678,1167,1169 ,730,730,730 ,0,0,0}, - {675,678,1165 ,730,730,730 ,0,0,0}, {673,675,1166 ,730,730,730 ,0,0,0}, - {671,673,1175 ,730,730,730 ,0,0,0}, {665,667,1172 ,730,730,730 ,0,0,0}, - {670,665,1164 ,730,730,730 ,0,0,0}, {659,670,1163 ,730,730,730 ,0,0,0}, - {660,659,1170 ,730,730,730 ,0,0,0}, {663,660,1171 ,730,730,730 ,0,0,0}, - {679,663,1162 ,730,730,730 ,0,0,0}, {308,679,73 ,730,730,730 ,0,0,0}, - {303,306,70 ,730,730,730 ,0,0,0}, {302,303,68 ,730,730,730 ,0,0,0}, - {300,302,67 ,730,730,730 ,0,0,0}, {296,300,64 ,730,730,730 ,0,0,0}, - {297,296,62 ,730,730,730 ,0,0,0}, {310,297,61 ,730,730,730 ,0,0,0}, - {313,310,59 ,730,730,730 ,0,0,0}, {46,316,40 ,730,730,730 ,0,0,0}, - {40,314,59 ,730,730,730 ,0,0,0}, {318,46,44 ,730,730,730 ,0,0,0}, - {46,318,316 ,730,730,730 ,0,0,0}, {44,47,1176 ,730,730,730 ,0,0,0}, - {1179,1176,48 ,730,730,730 ,0,0,0}, {47,48,1176 ,730,730,730 ,0,0,0}, - {50,57,1179 ,730,730,730 ,0,0,0}, {54,1245,57 ,730,730,730 ,0,0,0}, - {1179,57,1245 ,730,730,730 ,0,0,0}, {53,13,54 ,730,730,730 ,0,0,0}, - {468,470,245 ,730,730,730 ,0,0,0}, {414,361,1225 ,730,730,730 ,0,0,0}, - {361,360,1225 ,730,730,730 ,0,0,0}, {228,1009,1124 ,731,732,733 ,0,0,0}, - {1017,1111,1016 ,734,735,736 ,0,0,0}, {1252,1122,1005 ,737,738,739 ,0,0,0}, - {1112,1015,1075 ,740,741,742 ,0,0,0}, {1064,1063,1074 ,743,744,745 ,0,0,0}, - {1013,1116,1114 ,746,747,748 ,0,0,0}, {1014,1113,1006 ,749,750,751 ,0,0,0}, - {1011,1118,1117 ,752,753,754 ,0,0,0}, {1117,1116,1012 ,754,747,755 ,0,0,0}, - {1118,1010,1115 ,753,756,757 ,0,0,0}, {1010,1118,1011 ,756,753,752 ,0,0,0}, - {1152,1115,985 ,758,757,759 ,0,0,0}, {1010,985,1115 ,756,759,757 ,0,0,0}, - {984,243,1152 ,760,761,758 ,0,0,0}, {1152,985,984 ,758,759,760 ,0,0,0}, - {242,243,984 ,761,761,760 ,0,0,0}, {1014,1013,1114 ,749,746,748 ,0,0,0}, - {1116,1013,1012 ,747,746,755 ,0,0,0}, {1011,1117,1012 ,752,754,755 ,0,0,0}, - {1014,1114,1113 ,749,748,750 ,0,0,0}, {1006,1113,1075 ,751,750,742 ,0,0,0}, - {1015,1112,1063 ,741,740,744 ,0,0,0}, {1015,1006,1075 ,741,751,742 ,0,0,0}, - {1064,1074,1073 ,743,745,762 ,0,0,0}, {1074,1063,1112 ,745,744,740 ,0,0,0}, - {1073,1111,1017 ,762,735,734 ,0,0,0}, {1073,1017,1064 ,762,734,743 ,0,0,0}, - {1005,1016,1252 ,739,736,737 ,0,0,0}, {1111,1252,1016 ,735,737,736 ,0,0,0}, - {1122,1009,1005 ,738,732,739 ,0,0,0}, {228,1124,223 ,731,733,35 ,0,0,0}, - {1009,1122,1124 ,732,738,733 ,0,0,0}, {194,897,1138 ,763,764,765 ,0,0,0}, - {894,1133,893 ,766,767,768 ,0,0,0}, {1135,1137,895 ,769,770,771 ,0,0,0}, - {1131,888,1130 ,772,773,774 ,0,0,0}, {1024,889,1142 ,775,776,777 ,0,0,0}, - {1021,1254,1143 ,778,779,780 ,0,0,0}, {1020,1132,1023 ,781,782,783 ,0,0,0}, - {1030,1145,1146 ,784,785,786 ,0,0,0}, {1146,1254,1026 ,786,779,787 ,0,0,0}, - {1145,1027,1136 ,785,788,789 ,0,0,0}, {1027,1145,1030 ,788,785,784 ,0,0,0}, - {1141,1136,1029 ,790,789,791 ,0,0,0}, {1027,1029,1136 ,788,791,789 ,0,0,0}, - {997,209,1141 ,792,793,790 ,0,0,0}, {1141,1029,997 ,790,791,792 ,0,0,0}, - {208,209,997 ,793,793,792 ,0,0,0}, {1020,1021,1143 ,781,778,780 ,0,0,0}, - {1254,1021,1026 ,779,778,787 ,0,0,0}, {1030,1146,1026 ,784,786,787 ,0,0,0}, - {1020,1143,1132 ,781,780,782 ,0,0,0}, {1023,1132,1130 ,783,782,774 ,0,0,0}, - {888,1131,889 ,773,772,776 ,0,0,0}, {888,1023,1130 ,773,783,774 ,0,0,0}, - {1024,1142,1134 ,775,777,794 ,0,0,0}, {1142,889,1131 ,777,776,772 ,0,0,0}, - {1134,1133,894 ,794,767,766 ,0,0,0}, {1134,894,1024 ,794,766,775 ,0,0,0}, - {895,893,1135 ,771,768,769 ,0,0,0}, {1133,1135,893 ,767,769,768 ,0,0,0}, - {1137,897,895 ,770,764,771 ,0,0,0}, {194,1138,189 ,763,765,126 ,0,0,0}, - {897,1137,1138 ,764,770,765 ,0,0,0}, {160,935,1214 ,763,795,796 ,0,0,0}, - {937,1213,936 ,797,798,799 ,0,0,0}, {1212,1091,934 ,800,801,802 ,0,0,0}, - {1094,938,1209 ,803,804,805 ,0,0,0}, {933,939,1093 ,806,807,808 ,0,0,0}, - {890,1219,1210 ,809,810,811 ,0,0,0}, {891,1211,940 ,812,813,814 ,0,0,0}, - {932,1220,1218 ,815,816,817 ,0,0,0}, {1218,1219,931 ,817,810,818 ,0,0,0}, - {1220,942,1255 ,816,819,820 ,0,0,0}, {942,1220,932 ,819,816,815 ,0,0,0}, - {1256,1255,941 ,821,820,822 ,0,0,0}, {942,941,1255 ,819,822,820 ,0,0,0}, - {930,175,1256 ,823,793,821 ,0,0,0}, {1256,941,930 ,821,822,823 ,0,0,0}, - {174,175,930 ,793,793,823 ,0,0,0}, {891,890,1210 ,812,809,811 ,0,0,0}, - {1219,890,931 ,810,809,818 ,0,0,0}, {932,1218,931 ,815,817,818 ,0,0,0}, - {891,1210,1211 ,812,811,813 ,0,0,0}, {940,1211,1209 ,814,813,805 ,0,0,0}, - {938,1094,939 ,804,803,807 ,0,0,0}, {938,940,1209 ,804,814,805 ,0,0,0}, - {933,1093,1092 ,806,808,824 ,0,0,0}, {1093,939,1094 ,808,807,803 ,0,0,0}, - {1092,1213,937 ,824,798,797 ,0,0,0}, {1092,937,933 ,824,797,806 ,0,0,0}, - {934,936,1212 ,802,799,800 ,0,0,0}, {1213,1212,936 ,798,800,799 ,0,0,0}, - {1091,935,934 ,801,795,802 ,0,0,0}, {160,1214,155 ,763,796,126 ,0,0,0}, - {935,1091,1214 ,795,801,796 ,0,0,0}, {126,1065,1199 ,731,795,796 ,0,0,0}, - {963,1193,964 ,825,826,799 ,0,0,0}, {1186,1200,965 ,827,828,829 ,0,0,0}, - {1197,919,1188 ,830,831,805 ,0,0,0}, {960,920,1190 ,832,833,834 ,0,0,0}, - {918,1198,1196 ,835,836,837 ,0,0,0}, {917,1187,958 ,838,839,814 ,0,0,0}, - {954,1192,1191 ,840,841,842 ,0,0,0}, {1191,1198,953 ,842,836,843 ,0,0,0}, - {1192,957,1195 ,841,844,845 ,0,0,0}, {957,1192,954 ,844,841,840 ,0,0,0}, - {1194,1195,955 ,846,845,847 ,0,0,0}, {957,955,1195 ,844,847,845 ,0,0,0}, - {956,141,1194 ,848,761,846 ,0,0,0}, {1194,955,956 ,846,847,848 ,0,0,0}, - {140,141,956 ,761,761,848 ,0,0,0}, {917,918,1196 ,838,835,837 ,0,0,0}, - {1198,918,953 ,836,835,843 ,0,0,0}, {954,1191,953 ,840,842,843 ,0,0,0}, - {917,1196,1187 ,838,837,839 ,0,0,0}, {958,1187,1188 ,814,839,805 ,0,0,0}, - {919,1197,920 ,831,830,833 ,0,0,0}, {919,958,1188 ,831,814,805 ,0,0,0}, - {960,1190,1189 ,832,834,849 ,0,0,0}, {1190,920,1197 ,834,833,830 ,0,0,0}, - {1189,1193,963 ,849,826,825 ,0,0,0}, {1189,963,960 ,849,825,832 ,0,0,0}, - {965,964,1186 ,829,799,827 ,0,0,0}, {1193,1186,964 ,826,827,799 ,0,0,0}, - {1200,1065,965 ,828,795,829 ,0,0,0}, {126,1199,121 ,731,796,35 ,0,0,0}, - {1065,1200,1199 ,795,828,796 ,0,0,0}, {92,880,1095 ,850,851,852 ,0,0,0}, - {896,1097,892 ,853,854,855 ,0,0,0}, {1096,1088,884 ,856,801,857 ,0,0,0}, - {1084,900,1085 ,830,858,859 ,0,0,0}, {898,899,1087 ,860,861,862 ,0,0,0}, - {903,1080,1079 ,863,864,865 ,0,0,0}, {902,1098,901 ,866,867,868 ,0,0,0}, - {910,1108,1258 ,869,870,871 ,0,0,0}, {1258,1080,905 ,871,864,872 ,0,0,0}, - {1108,1067,1109 ,870,873,874 ,0,0,0}, {1067,1108,910 ,873,870,869 ,0,0,0}, - {1100,1109,908 ,875,874,876 ,0,0,0}, {1067,908,1109 ,873,876,874 ,0,0,0}, - {906,107,1100 ,877,82,875 ,0,0,0}, {1100,908,906 ,875,876,877 ,0,0,0}, - {106,107,906 ,878,82,877 ,0,0,0}, {902,903,1079 ,866,863,865 ,0,0,0}, - {1080,903,905 ,864,863,872 ,0,0,0}, {910,1258,905 ,869,871,872 ,0,0,0}, - {902,1079,1098 ,866,865,867 ,0,0,0}, {901,1098,1085 ,868,867,859 ,0,0,0}, - {900,1084,899 ,858,830,861 ,0,0,0}, {900,901,1085 ,858,868,859 ,0,0,0}, - {898,1087,1086 ,860,862,879 ,0,0,0}, {1087,899,1084 ,862,861,830 ,0,0,0}, - {1086,1097,896 ,879,854,853 ,0,0,0}, {1086,896,898 ,879,853,860 ,0,0,0}, - {884,892,1096 ,857,855,856 ,0,0,0}, {1097,1096,892 ,854,856,855 ,0,0,0}, - {1088,880,884 ,801,851,857 ,0,0,0}, {92,1095,87 ,850,852,850 ,0,0,0}, - {880,1088,1095 ,851,801,852 ,0,0,0}, {58,974,1161 ,731,851,880 ,0,0,0}, - {1069,1173,978 ,881,882,855 ,0,0,0}, {1259,1260,973 ,856,801,857 ,0,0,0}, - {1165,976,1166 ,883,884,859 ,0,0,0}, {1068,988,1169 ,860,885,834 ,0,0,0}, - {983,1164,1172 ,886,887,888 ,0,0,0}, {881,1175,977 ,889,890,868 ,0,0,0}, - {981,1170,1163 ,891,892,893 ,0,0,0}, {1163,1164,982 ,893,887,894 ,0,0,0}, - {1170,980,1171 ,892,895,896 ,0,0,0}, {980,1170,981 ,895,892,891 ,0,0,0}, - {1162,1171,979 ,897,896,898 ,0,0,0}, {980,979,1171 ,895,898,896 ,0,0,0}, - {962,73,1162 ,899,761,897 ,0,0,0}, {1162,979,962 ,897,898,899 ,0,0,0}, - {72,73,962 ,761,761,899 ,0,0,0}, {881,983,1172 ,889,886,888 ,0,0,0}, - {1164,983,982 ,887,886,894 ,0,0,0}, {981,1163,982 ,891,893,894 ,0,0,0}, - {881,1172,1175 ,889,888,890 ,0,0,0}, {977,1175,1166 ,868,890,859 ,0,0,0}, - {976,1165,988 ,884,883,885 ,0,0,0}, {976,977,1166 ,884,868,859 ,0,0,0}, - {1068,1169,1168 ,860,834,849 ,0,0,0}, {1169,988,1165 ,834,885,883 ,0,0,0}, - {1168,1173,1069 ,849,882,881 ,0,0,0}, {1168,1069,1068 ,849,881,860 ,0,0,0}, - {973,978,1259 ,857,855,856 ,0,0,0}, {1173,1259,978 ,882,856,855 ,0,0,0}, - {1260,974,973 ,801,851,857 ,0,0,0}, {58,1161,53 ,731,880,35 ,0,0,0}, - {974,1260,1161 ,851,801,880 ,0,0,0}, {36,968,1208 ,20,900,900 ,0,0,0}, - {952,443,1185 ,901,336,901 ,0,0,0}, {1185,1232,1043 ,901,902,902 ,0,0,0}, - {444,443,952 ,336,336,901 ,0,0,0}, {968,1232,1208 ,900,902,900 ,0,0,0}, - {1232,968,1043 ,902,900,902 ,0,0,0}, {952,1185,1043 ,901,901,902 ,0,0,0}, - {1208,35,36 ,900,20,20 ,0,0,0}, {1229,1071,948 ,903,904,905 ,0,0,0}, - {947,924,1228 ,906,907,908 ,0,0,0}, {947,1228,1229 ,906,908,903 ,0,0,0}, - {947,1229,948 ,906,903,905 ,0,0,0}, {1230,1231,923 ,909,910,911 ,0,0,0}, - {1231,924,923 ,910,907,911 ,0,0,0}, {1228,924,1231 ,908,907,910 ,0,0,0}, - {949,879,878 ,912,21,21 ,0,0,0}, {949,878,1230 ,912,21,909 ,0,0,0}, - {923,949,1230 ,911,912,909 ,0,0,0}, {948,1071,1046 ,905,904,913 ,0,0,0}, - {1044,1046,1227 ,914,913,915 ,0,0,0}, {1071,1227,1046 ,904,915,913 ,0,0,0}, - {1226,1045,1044 ,916,917,914 ,0,0,0}, {1044,1227,1226 ,914,915,916 ,0,0,0}, - {1045,1182,421 ,917,918,322 ,0,0,0}, {1182,1045,1226 ,918,917,916 ,0,0,0}, - {1182,423,421 ,918,322,322 ,0,0,0}, {26,1062,1178 ,15,919,920 ,0,0,0}, - {993,424,1158 ,921,922,921 ,0,0,0}, {1158,1236,987 ,921,923,923 ,0,0,0}, - {425,424,993 ,924,922,921 ,0,0,0}, {1062,1236,1178 ,919,923,920 ,0,0,0}, - {1236,1062,987 ,923,919,923 ,0,0,0}, {993,1158,987 ,921,921,923 ,0,0,0}, - {1178,25,26 ,920,15,15 ,0,0,0}, {16,994,1157 ,8,925,925 ,0,0,0}, - {969,493,1159 ,926,372,926 ,0,0,0}, {1159,1156,1061 ,926,927,927 ,0,0,0}, - {494,493,969 ,372,372,926 ,0,0,0}, {994,1156,1157 ,925,927,925 ,0,0,0}, - {1156,994,1061 ,927,925,927 ,0,0,0}, {969,1159,1061 ,926,926,927 ,0,0,0}, - {1157,15,16 ,925,8,8 ,0,0,0}, {1240,1239,907 ,928,929,930 ,0,0,0}, - {1240,1047,1181 ,928,931,932 ,0,0,0}, {1047,1240,907 ,931,928,930 ,0,0,0}, - {914,1233,1039 ,933,934,935 ,0,0,0}, {1039,1233,1181 ,935,934,932 ,0,0,0}, - {406,1234,913 ,314,936,937 ,0,0,0}, {913,407,406 ,937,314,314 ,0,0,0}, - {913,1234,914 ,937,936,933 ,0,0,0}, {914,1234,1233 ,933,936,934 ,0,0,0}, - {1181,1047,1039 ,932,931,935 ,0,0,0}, {907,1239,1048 ,930,929,938 ,0,0,0}, - {991,1048,1105 ,939,938,940 ,0,0,0}, {1239,1105,1048 ,929,940,938 ,0,0,0}, - {1104,992,991 ,941,942,939 ,0,0,0}, {991,1105,1104 ,939,940,941 ,0,0,0}, - {992,1244,426 ,942,943,944 ,0,0,0}, {1244,992,1104 ,943,942,941 ,0,0,0}, - {1244,427,426 ,943,324,944 ,0,0,0}, {1103,1102,1037 ,945,946,947 ,0,0,0}, - {1103,916,1242 ,945,948,949 ,0,0,0}, {916,1103,1037 ,948,945,947 ,0,0,0}, - {1036,1106,915 ,950,951,952 ,0,0,0}, {915,1106,1242 ,952,951,949 ,0,0,0}, - {830,1243,990 ,953,954,955 ,0,0,0}, {990,831,830 ,955,21,953 ,0,0,0}, - {990,1243,1036 ,955,954,950 ,0,0,0}, {1036,1243,1106 ,950,954,951 ,0,0,0}, - {1242,916,915 ,949,948,952 ,0,0,0}, {1037,1102,996 ,947,946,956 ,0,0,0}, - {1050,996,1077 ,957,956,958 ,0,0,0}, {1102,1077,996 ,946,958,956 ,0,0,0}, - {1076,1051,1050 ,959,960,957 ,0,0,0}, {1050,1077,1076 ,957,958,959 ,0,0,0}, - {1051,1081,471 ,960,961,358 ,0,0,0}, {1081,1051,1076 ,961,960,959 ,0,0,0}, - {1081,473,471 ,961,358,358 ,0,0,0}, {1150,1149,1057 ,962,963,964 ,0,0,0}, - {1035,1054,1250 ,965,966,967 ,0,0,0}, {1035,1250,1150 ,965,967,962 ,0,0,0}, - {1035,1150,1057 ,965,962,964 ,0,0,0}, {1151,1249,1055 ,968,969,970 ,0,0,0}, - {1249,1054,1055 ,969,966,970 ,0,0,0}, {1250,1054,1249 ,967,966,969 ,0,0,0}, - {1001,389,388 ,971,304,304 ,0,0,0}, {1001,388,1151 ,971,304,968 ,0,0,0}, - {1055,1001,1151 ,970,971,968 ,0,0,0}, {1057,1149,1056 ,964,963,972 ,0,0,0}, - {1059,1056,1128 ,973,972,974 ,0,0,0}, {1149,1128,1056 ,963,974,972 ,0,0,0}, - {1129,1058,1059 ,975,976,973 ,0,0,0}, {1059,1128,1129 ,973,974,975 ,0,0,0}, - {1058,1251,475 ,976,977,324 ,0,0,0}, {1251,1058,1129 ,977,976,975 ,0,0,0}, - {1251,476,475 ,977,978,324 ,0,0,0}, {6,1004,1247 ,3,979,979 ,0,0,0}, - {1060,474,1248 ,980,324,980 ,0,0,0}, {1248,1246,1003 ,980,981,981 ,0,0,0}, - {477,474,1060 ,982,324,980 ,0,0,0}, {1004,1246,1247 ,979,981,979 ,0,0,0}, - {1246,1004,1003 ,981,979,981 ,0,0,0}, {1060,1248,1003 ,980,980,981 ,0,0,0}, - {1247,5,6 ,979,3,3 ,0,0,0}, {1154,887,1123 ,983,983,984 ,0,0,0}, - {1008,1007,1155 ,984,985,986 ,0,0,0}, {1123,1008,1155 ,984,984,986 ,0,0,0}, - {1007,295,294 ,985,235,235 ,0,0,0}, {1155,1007,294 ,986,985,235 ,0,0,0}, - {1123,887,1008 ,984,983,984 ,0,0,0}, {1002,887,1154 ,987,983,983 ,0,0,0}, - {1002,1119,751 ,987,987,988 ,0,0,0}, {1119,1002,1154 ,987,987,983 ,0,0,0}, - {1119,749,751 ,987,988,988 ,0,0,0}, {1018,886,1153 ,989,990,990 ,0,0,0}, - {885,1121,1120 ,991,992,991 ,0,0,0}, {1153,886,1120 ,990,990,991 ,0,0,0}, - {698,699,1022 ,508,508,992 ,0,0,0}, {1121,885,1022 ,992,991,992 ,0,0,0}, - {1022,699,1121 ,992,508,992 ,0,0,0}, {885,1120,886 ,991,991,990 ,0,0,0}, - {1153,1110,1018 ,990,989,989 ,0,0,0}, {1110,1072,1019 ,989,993,994 ,0,0,0}, - {1019,1018,1110 ,994,989,989 ,0,0,0}, {745,1072,746 ,546,993,546 ,0,0,0}, - {1072,745,1019 ,993,546,994 ,0,0,0}, {970,883,1245 ,995,996,996 ,0,0,0}, - {882,1176,1179 ,997,998,997 ,0,0,0}, {1245,883,1179 ,996,996,997 ,0,0,0}, - {319,318,986 ,257,257,998 ,0,0,0}, {1176,882,986 ,998,997,998 ,0,0,0}, - {986,318,1176 ,998,257,998 ,0,0,0}, {882,1179,883 ,997,997,996 ,0,0,0}, - {1245,1237,970 ,996,995,995 ,0,0,0}, {1237,1238,971 ,995,999,999 ,0,0,0}, - {971,970,1237 ,999,995,995 ,0,0,0}, {717,1238,716 ,525,999,525 ,0,0,0}, - {1238,717,971 ,999,525,999 ,0,0,0}, {1053,972,1177 ,1000,1001,1001 ,0,0,0}, - {975,1235,1160 ,1002,1003,1004 ,0,0,0}, {1177,972,1160 ,1001,1001,1004 ,0,0,0}, - {638,639,1052 ,508,508,1003 ,0,0,0}, {1235,975,1052 ,1003,1002,1003 ,0,0,0}, - {1052,639,1235 ,1003,508,1003 ,0,0,0}, {975,1160,972 ,1002,1004,1001 ,0,0,0}, - {1177,1174,1053 ,1001,1000,1000 ,0,0,0}, {1174,1167,989 ,1000,1005,1005 ,0,0,0}, - {989,1053,1174 ,1005,1000,1000 ,0,0,0}, {677,1167,678 ,546,1005,546 ,0,0,0}, - {1167,677,989 ,1005,546,1005 ,0,0,0}, {966,961,1184 ,1006,1007,1007 ,0,0,0}, - {921,1203,1183 ,1008,1009,1008 ,0,0,0}, {1184,961,1183 ,1007,1007,1008 ,0,0,0}, - {351,350,959 ,257,257,1009 ,0,0,0}, {1203,921,959 ,1009,1008,1009 ,0,0,0}, - {959,350,1203 ,1009,257,1009 ,0,0,0}, {921,1183,961 ,1008,1008,1007 ,0,0,0}, - {1184,1205,966 ,1007,1006,1006 ,0,0,0}, {1205,1207,950 ,1006,1010,1010 ,0,0,0}, - {950,966,1205 ,1010,1006,1006 ,0,0,0}, {657,1207,656 ,525,1010,525 ,0,0,0}, - {1207,657,950 ,1010,525,1010 ,0,0,0}, {1202,922,1204 ,1011,1011,1012 ,0,0,0}, - {967,951,1206 ,1012,1013,1013 ,0,0,0}, {1204,967,1206 ,1012,1012,1013 ,0,0,0}, - {951,588,587 ,1013,324,324 ,0,0,0}, {1206,951,587 ,1013,1013,324 ,0,0,0}, - {1204,922,967 ,1012,1011,1012 ,0,0,0}, {1066,922,1202 ,1014,1011,1011 ,0,0,0}, - {1066,1201,617 ,1014,1014,488 ,0,0,0}, {1201,1066,1202 ,1014,1014,1011 ,0,0,0}, - {1201,618,617 ,1014,488,488 ,0,0,0}, {1223,928,1221 ,1015,1015,1016 ,0,0,0}, - {944,929,1257 ,1016,1017,1017 ,0,0,0}, {1221,944,1257 ,1016,1016,1017 ,0,0,0}, - {929,556,555 ,1017,427,427 ,0,0,0}, {1257,929,555 ,1017,1017,427 ,0,0,0}, - {1221,928,944 ,1016,1015,1016 ,0,0,0}, {945,928,1223 ,1018,1015,1015 ,0,0,0}, - {945,1224,589 ,1018,1018,1019 ,0,0,0}, {1224,945,1223 ,1018,1018,1015 ,0,0,0}, - {1224,586,589 ,1018,324,1019 ,0,0,0}, {943,927,1217 ,1020,1021,1021 ,0,0,0}, - {926,1070,1222 ,1022,1023,1022 ,0,0,0}, {1217,927,1222 ,1021,1021,1022 ,0,0,0}, - {370,371,946 ,205,205,1023 ,0,0,0}, {1070,926,946 ,1023,1022,1023 ,0,0,0}, - {946,371,1070 ,1023,205,1023 ,0,0,0}, {926,1222,927 ,1022,1022,1021 ,0,0,0}, - {1217,1216,943 ,1021,1020,1020 ,0,0,0}, {1216,1215,925 ,1020,1024,1024 ,0,0,0}, - {925,943,1216 ,1024,1020,1020 ,0,0,0}, {584,1215,585 ,456,1024,456 ,0,0,0}, - {1215,584,925 ,1024,456,1024 ,0,0,0}, {1041,909,1099 ,1025,1026,1026 ,0,0,0}, - {911,1078,1107 ,1027,1028,1027 ,0,0,0}, {1099,909,1107 ,1026,1026,1027 ,0,0,0}, - {855,853,904 ,641,641,1028 ,0,0,0}, {1078,911,904 ,1028,1027,1028 ,0,0,0}, - {904,853,1078 ,1028,641,1028 ,0,0,0}, {911,1107,909 ,1027,1027,1026 ,0,0,0}, - {1099,1101,1041 ,1026,1025,1025 ,0,0,0}, {1101,1180,1040 ,1025,1029,1029 ,0,0,0}, - {1040,1041,1101 ,1029,1025,1025 ,0,0,0}, {524,1180,525 ,396,1029,396 ,0,0,0}, - {1180,524,1040 ,1029,396,1029 ,0,0,0}, {912,1049,1082 ,1030,1031,1031 ,0,0,0}, - {1038,1241,1083 ,1032,1033,1032 ,0,0,0}, {1082,1049,1083 ,1031,1031,1032 ,0,0,0}, - {262,263,995 ,205,205,1033 ,0,0,0}, {1241,1038,995 ,1033,1032,1033 ,0,0,0}, - {995,263,1241 ,1033,205,1033 ,0,0,0}, {1038,1083,1049 ,1032,1032,1031 ,0,0,0}, - {1082,1090,912 ,1031,1030,1030 ,0,0,0}, {1090,1089,1042 ,1030,1034,1034 ,0,0,0}, - {1042,912,1090 ,1034,1030,1030 ,0,0,0}, {876,1089,877 ,456,1034,456 ,0,0,0}, - {1089,876,1042 ,1034,456,1034 ,0,0,0}, {1034,1032,1127 ,1035,1036,1036 ,0,0,0}, - {1028,1253,1144 ,1037,1038,1037 ,0,0,0}, {1127,1032,1144 ,1036,1036,1037 ,0,0,0}, - {782,781,1025 ,641,641,1038 ,0,0,0}, {1253,1028,1025 ,1038,1037,1038 ,0,0,0}, - {1025,781,1253 ,1038,641,1038 ,0,0,0}, {1028,1144,1032 ,1037,1037,1036 ,0,0,0}, - {1127,1126,1034 ,1036,1035,1035 ,0,0,0}, {1126,1148,999 ,1035,1039,1040 ,0,0,0}, - {999,1034,1126 ,1040,1035,1035 ,0,0,0}, {828,1148,829 ,396,1039,396 ,0,0,0}, - {1148,828,999 ,1039,396,1040 ,0,0,0}, {1140,998,1125 ,1041,1041,1042 ,0,0,0}, - {1031,1000,1147 ,1042,1043,1044 ,0,0,0}, {1125,1031,1147 ,1042,1042,1044 ,0,0,0}, - {1000,748,750 ,1043,1045,1045 ,0,0,0}, {1147,1000,750 ,1044,1043,1045 ,0,0,0}, - {1125,998,1031 ,1042,1041,1042 ,0,0,0}, {1033,998,1140 ,1046,1041,1041 ,0,0,0}, - {1033,1139,810 ,1046,1046,670 ,0,0,0}, {1139,1033,1140 ,1046,1046,1041 ,0,0,0}, - {1139,811,810 ,1046,670,670 ,0,0,0} -// BladeProtector2.prt - , {1261,1262,1263 ,126,1047,1048 ,0,0,0}, {1264,1265,1266 ,1049,1050,1051 ,0,0,0}, - {1267,1261,1263 ,1052,126,1048 ,0,0,0}, {1266,1265,1267 ,1051,1050,1052 ,0,0,0}, - {1265,1264,1268 ,1050,1049,1053 ,0,0,0}, {1263,1266,1267 ,1048,1051,1052 ,0,0,0}, - {1269,1270,1271 ,1054,1055,1056 ,0,0,0}, {1270,1272,1271 ,1055,1057,1056 ,0,0,0}, - {1268,1273,1269 ,1053,1058,1054 ,0,0,0}, {1270,1269,1273 ,1055,1054,1058 ,0,0,0}, - {1274,1275,1276 ,21,1059,1060 ,0,0,0}, {1277,1278,1272 ,1061,1062,1057 ,0,0,0}, - {1275,1278,1277 ,1059,1062,1061 ,0,0,0}, {1275,1277,1276 ,1059,1061,1060 ,0,0,0}, - {1276,1279,1274 ,1060,1063,21 ,0,0,0}, {1271,1272,1278 ,1056,1057,1062 ,0,0,0}, - {1268,1264,1273 ,1053,1049,1058 ,0,0,0}, {1261,1280,1262 ,126,1064,1047 ,0,0,0}, - {1281,1280,1282 ,1065,1064,1066 ,0,0,0}, {1280,1281,1262 ,1064,1065,1047 ,0,0,0}, - {1283,1284,1282 ,1067,1068,1066 ,0,0,0}, {1281,1282,1284 ,1065,1066,1068 ,0,0,0}, - {1283,1285,1286 ,1067,1069,1070 ,0,0,0}, {1286,1284,1283 ,1070,1068,1067 ,0,0,0}, - {1287,1285,1288 ,1071,1069,1072 ,0,0,0}, {1285,1287,1286 ,1069,1071,1070 ,0,0,0}, - {1289,1290,1288 ,1073,1074,1072 ,0,0,0}, {1287,1288,1290 ,1071,1072,1074 ,0,0,0}, - {1289,1291,1292 ,1073,1075,1076 ,0,0,0}, {1292,1290,1289 ,1076,1074,1073 ,0,0,0}, - {1293,1291,1294 ,1077,1075,1078 ,0,0,0}, {1291,1293,1292 ,1075,1077,1076 ,0,0,0}, - {1295,1296,1297 ,126,1079,126 ,0,0,0}, {1298,1299,1300 ,1080,1081,1082 ,0,0,0}, - {1301,1295,1297 ,1083,126,126 ,0,0,0}, {1300,1299,1301 ,1082,1081,1083 ,0,0,0}, - {1299,1298,1302 ,1081,1080,1084 ,0,0,0}, {1297,1300,1301 ,126,1082,1083 ,0,0,0}, - {1303,1304,1305 ,1085,1086,1087 ,0,0,0}, {1304,1306,1305 ,1086,1088,1087 ,0,0,0}, - {1302,1307,1303 ,1084,1089,1085 ,0,0,0}, {1304,1303,1307 ,1086,1085,1089 ,0,0,0}, - {1308,1309,1310 ,1090,1091,1092 ,0,0,0}, {1311,1312,1306 ,1093,1094,1088 ,0,0,0}, - {1309,1312,1311 ,1091,1094,1093 ,0,0,0}, {1309,1311,1310 ,1091,1093,1092 ,0,0,0}, - {1310,1313,1308 ,1092,1095,1090 ,0,0,0}, {1305,1306,1312 ,1087,1088,1094 ,0,0,0}, - {1302,1298,1307 ,1084,1080,1089 ,0,0,0}, {1295,1314,1296 ,126,1096,1079 ,0,0,0}, - {1315,1314,1316 ,1097,1096,1098 ,0,0,0}, {1314,1315,1296 ,1096,1097,1079 ,0,0,0}, - {1317,1318,1316 ,1099,1100,1098 ,0,0,0}, {1315,1316,1318 ,1097,1098,1100 ,0,0,0}, - {1317,1319,1320 ,1099,1101,1102 ,0,0,0}, {1320,1318,1317 ,1102,1100,1099 ,0,0,0}, - {1321,1319,1322 ,1103,1101,1072 ,0,0,0}, {1319,1321,1320 ,1101,1103,1102 ,0,0,0}, - {1323,1324,1322 ,1104,1074,1072 ,0,0,0}, {1321,1322,1324 ,1103,1072,1074 ,0,0,0}, - {1323,1325,1326 ,1104,1105,1106 ,0,0,0}, {1326,1324,1323 ,1106,1074,1104 ,0,0,0}, - {1327,1325,1328 ,1107,1105,324 ,0,0,0}, {1325,1327,1326 ,1105,1107,1106 ,0,0,0}, - {1329,1330,1331 ,1108,1109,1108 ,0,0,0}, {1332,1333,1334 ,1110,1111,1112 ,0,0,0}, - {1332,1331,1333 ,1110,1108,1111 ,0,0,0}, {1334,1333,1335 ,1112,1111,1112 ,0,0,0}, - {1331,1332,1329 ,1108,1110,1108 ,0,0,0}, {1336,1330,1329 ,1109,1109,1108 ,0,0,0}, - {1337,1336,1338 ,1113,1109,1113 ,0,0,0}, {1336,1337,1330 ,1109,1113,1109 ,0,0,0}, - {1339,1340,1341 ,1114,1115,1114 ,0,0,0}, {1342,1340,1343 ,1115,1115,1116 ,0,0,0}, - {1340,1342,1341 ,1115,1115,1114 ,0,0,0}, {1344,1345,1343 ,1117,1116,1116 ,0,0,0}, - {1342,1343,1345 ,1115,1116,1116 ,0,0,0}, {1344,1346,1347 ,1117,1118,1117 ,0,0,0}, - {1347,1345,1344 ,1117,1116,1117 ,0,0,0}, {1346,1348,1347 ,1118,1119,1117 ,0,0,0}, - {1349,1339,1341 ,1120,1114,1114 ,0,0,0}, {1350,1351,1349 ,1121,1120,1120 ,0,0,0}, - {1339,1349,1351 ,1114,1120,1120 ,0,0,0}, {1350,1352,1353 ,1121,1122,1121 ,0,0,0}, - {1353,1351,1350 ,1121,1120,1121 ,0,0,0}, {1354,1352,1355 ,1122,1122,1123 ,0,0,0}, - {1352,1354,1353 ,1122,1122,1121 ,0,0,0}, {1354,1355,1356 ,1122,1123,1124 ,0,0,0}, - {1357,1358,1359 ,1125,1126,1127 ,0,0,0}, {1360,1361,1357 ,1128,1129,1125 ,0,0,0}, - {1357,1359,1360 ,1125,1127,1128 ,0,0,0}, {1361,1362,1363 ,1129,1130,1131 ,0,0,0}, - {1362,1361,1360 ,1130,1129,1128 ,0,0,0}, {1364,1363,1365 ,1132,1131,1133 ,0,0,0}, - {1362,1365,1363 ,1130,1133,1131 ,0,0,0}, {1366,1367,1364 ,1134,1135,1132 ,0,0,0}, - {1364,1365,1366 ,1132,1133,1134 ,0,0,0}, {1367,1368,1369 ,1135,1136,1137 ,0,0,0}, - {1368,1367,1366 ,1136,1135,1134 ,0,0,0}, {1370,1369,1371 ,1138,1137,1139 ,0,0,0}, - {1368,1371,1369 ,1136,1139,1137 ,0,0,0}, {1372,1373,1370 ,1140,1141,1138 ,0,0,0}, - {1370,1371,1372 ,1138,1139,1140 ,0,0,0}, {1373,1374,1375 ,1141,1142,1143 ,0,0,0}, - {1374,1373,1372 ,1142,1141,1140 ,0,0,0}, {1376,1375,1377 ,1144,1143,1145 ,0,0,0}, - {1374,1377,1375 ,1142,1145,1143 ,0,0,0}, {1378,1379,1376 ,1146,1147,1144 ,0,0,0}, - {1376,1377,1378 ,1144,1145,1146 ,0,0,0}, {1379,1380,1381 ,1147,1148,1149 ,0,0,0}, - {1380,1379,1378 ,1148,1147,1146 ,0,0,0}, {1382,1381,1383 ,1150,1149,1151 ,0,0,0}, - {1380,1383,1381 ,1148,1151,1149 ,0,0,0}, {1384,1385,1382 ,1152,1153,1150 ,0,0,0}, - {1382,1383,1384 ,1150,1151,1152 ,0,0,0}, {1385,1386,1387 ,1153,1154,1155 ,0,0,0}, - {1386,1385,1384 ,1154,1153,1152 ,0,0,0}, {1388,1387,1389 ,1156,1155,1157 ,0,0,0}, - {1386,1389,1387 ,1154,1157,1155 ,0,0,0}, {1390,1391,1388 ,1158,1159,1156 ,0,0,0}, - {1388,1389,1390 ,1156,1157,1158 ,0,0,0}, {1391,1392,1393 ,1159,1160,1161 ,0,0,0}, - {1392,1391,1390 ,1160,1159,1158 ,0,0,0}, {1394,1393,1395 ,1162,1161,1163 ,0,0,0}, - {1392,1395,1393 ,1160,1163,1161 ,0,0,0}, {1396,1397,1394 ,1164,1164,1162 ,0,0,0}, - {1394,1395,1396 ,1162,1163,1164 ,0,0,0}, {1359,1358,1398 ,1127,1126,1165 ,0,0,0}, - {1399,1398,1400 ,1166,1165,1167 ,0,0,0}, {1358,1400,1398 ,1126,1167,1165 ,0,0,0}, - {1401,1402,1399 ,1168,1169,1166 ,0,0,0}, {1399,1400,1401 ,1166,1167,1168 ,0,0,0}, - {1402,1403,1404 ,1169,1170,1171 ,0,0,0}, {1403,1402,1401 ,1170,1169,1168 ,0,0,0}, - {1405,1404,1406 ,1172,1171,1173 ,0,0,0}, {1403,1406,1404 ,1170,1173,1171 ,0,0,0}, - {1407,1408,1405 ,1174,1175,1172 ,0,0,0}, {1405,1406,1407 ,1172,1173,1174 ,0,0,0}, - {1408,1409,1410 ,1175,1176,1177 ,0,0,0}, {1409,1408,1407 ,1176,1175,1174 ,0,0,0}, - {1411,1410,1412 ,1178,1177,1179 ,0,0,0}, {1409,1412,1410 ,1176,1179,1177 ,0,0,0}, - {1413,1414,1411 ,1180,1181,1178 ,0,0,0}, {1411,1412,1413 ,1178,1179,1180 ,0,0,0}, - {1414,1415,1416 ,1181,1182,1183 ,0,0,0}, {1415,1414,1413 ,1182,1181,1180 ,0,0,0}, - {1417,1416,1418 ,1184,1183,1185 ,0,0,0}, {1415,1418,1416 ,1182,1185,1183 ,0,0,0}, - {1419,1420,1417 ,1186,1187,1184 ,0,0,0}, {1417,1418,1419 ,1184,1185,1186 ,0,0,0}, - {1420,1421,1422 ,1187,1188,1189 ,0,0,0}, {1421,1420,1419 ,1188,1187,1186 ,0,0,0}, - {1423,1422,1424 ,1190,1189,1191 ,0,0,0}, {1421,1424,1422 ,1188,1191,1189 ,0,0,0}, - {1425,1426,1423 ,1192,1193,1190 ,0,0,0}, {1423,1424,1425 ,1190,1191,1192 ,0,0,0}, - {1426,1427,1428 ,1193,1194,1195 ,0,0,0}, {1427,1426,1425 ,1194,1193,1192 ,0,0,0}, - {1429,1428,1430 ,1196,1195,1197 ,0,0,0}, {1427,1430,1428 ,1194,1197,1195 ,0,0,0}, - {1431,1432,1429 ,1198,1199,1196 ,0,0,0}, {1429,1430,1431 ,1196,1197,1198 ,0,0,0}, - {1432,1433,1434 ,1199,1200,1201 ,0,0,0}, {1433,1432,1431 ,1200,1199,1198 ,0,0,0}, - {1433,1435,1434 ,1200,1202,1201 ,0,0,0}, {1434,1435,1436 ,1201,1202,1203 ,0,0,0}, - {1437,1438,1435 ,1204,1204,1205 ,0,0,0}, {1437,1439,1438 ,1204,1206,1204 ,0,0,0}, - {1439,1437,1440 ,1206,1204,1206 ,0,0,0}, {1436,1435,1438 ,324,1205,1204 ,0,0,0}, - {1441,1442,1443 ,1207,1208,1207 ,0,0,0}, {1444,1445,1442 ,1209,1210,1208 ,0,0,0}, - {1442,1445,1443 ,1208,1210,1207 ,0,0,0}, {1446,1447,1444 ,1211,1212,1209 ,0,0,0}, - {1444,1442,1446 ,1209,1208,1211 ,0,0,0}, {1447,1448,1449 ,1212,1213,1214 ,0,0,0}, - {1448,1447,1446 ,1213,1212,1211 ,0,0,0}, {1450,1449,1451 ,1215,1214,1216 ,0,0,0}, - {1448,1451,1449 ,1213,1216,1214 ,0,0,0}, {1452,1450,1453 ,1217,1215,1218 ,0,0,0}, - {1450,1451,1453 ,1215,1216,1218 ,0,0,0}, {1454,1450,1452 ,1217,1215,1217 ,0,0,0}, - {1455,1441,1443 ,1219,1207,1207 ,0,0,0}, {1456,1455,1457 ,1220,1219,1221 ,0,0,0}, - {1456,1441,1455 ,1220,1207,1219 ,0,0,0}, {1458,1457,1459 ,1222,1221,1223 ,0,0,0}, - {1455,1459,1457 ,1219,1223,1221 ,0,0,0}, {1460,1461,1458 ,1224,1225,1222 ,0,0,0}, - {1458,1459,1460 ,1222,1223,1224 ,0,0,0}, {1461,1462,1463 ,1225,1226,1227 ,0,0,0}, - {1462,1461,1460 ,1226,1225,1224 ,0,0,0}, {1463,1464,1337 ,1227,1228,1113 ,0,0,0}, - {1462,1464,1463 ,1226,1228,1227 ,0,0,0}, {1463,1337,1338 ,1227,1113,1113 ,0,0,0}, - {1465,1466,1467 ,1229,1230,1231 ,0,0,0}, {1465,1468,1469 ,1229,1232,1233 ,0,0,0}, - {1467,1466,1470 ,1231,1230,1234 ,0,0,0}, {1470,1466,1471 ,1234,1230,1235 ,0,0,0}, - {1470,1471,1472 ,1234,1235,1236 ,0,0,0}, {1473,1472,1471 ,1237,1236,1235 ,0,0,0}, - {1472,1473,1474 ,1236,1237,1238 ,0,0,0}, {1475,1474,1473 ,1239,1238,1237 ,0,0,0}, - {1475,1476,1477 ,1239,1240,1241 ,0,0,0}, {1474,1475,1477 ,1238,1239,1241 ,0,0,0}, - {1467,1468,1465 ,1231,1232,1229 ,0,0,0}, {1477,1476,1478 ,1241,1240,1242 ,0,0,0}, - {1479,1478,1480 ,1243,1242,1244 ,0,0,0}, {1480,1478,1476 ,1244,1242,1240 ,0,0,0}, - {1479,1480,1481 ,1243,1244,1243 ,0,0,0}, {1482,1469,1483 ,1245,1233,1246 ,0,0,0}, - {1468,1483,1469 ,1232,1246,1233 ,0,0,0}, {1484,1485,1482 ,1247,1248,1245 ,0,0,0}, - {1482,1483,1484 ,1245,1246,1247 ,0,0,0}, {1485,1486,1487 ,1248,1249,1250 ,0,0,0}, - {1486,1485,1484 ,1249,1248,1247 ,0,0,0}, {1488,1487,1489 ,1251,1250,1252 ,0,0,0}, - {1486,1489,1487 ,1249,1252,1250 ,0,0,0}, {1490,1491,1488 ,1253,1254,1251 ,0,0,0}, - {1488,1489,1490 ,1251,1252,1253 ,0,0,0}, {1491,1492,1493 ,1254,1255,1256 ,0,0,0}, - {1492,1491,1490 ,1255,1254,1253 ,0,0,0}, {1494,1493,1495 ,1257,1256,1258 ,0,0,0}, - {1492,1495,1493 ,1255,1258,1256 ,0,0,0}, {1494,1495,1496 ,1257,1258,1257 ,0,0,0}, - {1497,1498,1499 ,1259,1260,1259 ,0,0,0}, {1499,1500,1497 ,1259,1261,1259 ,0,0,0}, - {1501,1502,1498 ,1260,1262,1260 ,0,0,0}, {1503,1500,1499 ,1261,1261,1259 ,0,0,0}, - {1497,1501,1498 ,1259,1260,1260 ,0,0,0}, {1501,1504,1502 ,1260,1262,1262 ,0,0,0}, - {1505,1504,1506 ,1263,1262,1263 ,0,0,0}, {1506,1494,1496 ,1263,1257,1257 ,0,0,0}, - {1505,1502,1504 ,1263,1262,1262 ,0,0,0}, {1506,1496,1505 ,1263,1257,1263 ,0,0,0}, - {1507,1503,1508 ,1264,1261,1264 ,0,0,0}, {1503,1507,1500 ,1261,1264,1261 ,0,0,0}, - {1509,1510,1508 ,1265,1265,1264 ,0,0,0}, {1507,1508,1510 ,1264,1264,1265 ,0,0,0}, - {1509,1511,1512 ,1265,1266,1266 ,0,0,0}, {1512,1510,1509 ,1266,1265,1265 ,0,0,0}, - {1513,1511,1514 ,1267,1266,1267 ,0,0,0}, {1511,1513,1512 ,1266,1267,1266 ,0,0,0}, - {1513,1514,1355 ,1267,1267,1268 ,0,0,0}, {1355,1514,1356 ,1268,1267,1269 ,0,0,0}, - {1515,1348,1346 ,1270,1271,1272 ,0,0,0}, {1516,1517,1518 ,1273,1274,1274 ,0,0,0}, - {1519,1520,1521 ,1275,1275,1270 ,0,0,0}, {1522,1523,1524 ,1276,1276,1277 ,0,0,0}, - {1525,1526,1527 ,1273,1278,1278 ,0,0,0}, {1528,1529,1524 ,1279,1277,1277 ,0,0,0}, - {1522,1524,1529 ,1276,1277,1277 ,0,0,0}, {1530,1529,1528 ,1280,1277,1279 ,0,0,0}, - {1526,1523,1527 ,1278,1276,1278 ,0,0,0}, {1527,1523,1522 ,1278,1276,1276 ,0,0,0}, - {1525,1517,1516 ,1273,1274,1273 ,0,0,0}, {1525,1516,1526 ,1273,1273,1278 ,0,0,0}, - {1518,1520,1519 ,1274,1275,1275 ,0,0,0}, {1517,1520,1518 ,1274,1275,1274 ,0,0,0}, - {1515,1521,1348 ,1270,1270,1271 ,0,0,0}, {1519,1521,1515 ,1275,1270,1270 ,0,0,0}, - {1531,1532,1533 ,1281,1281,1282 ,0,0,0}, {1533,1532,1534 ,1282,1281,1282 ,0,0,0}, - {1532,1531,1535 ,1281,1281,1283 ,0,0,0}, {1536,1535,1531 ,1284,1283,1281 ,0,0,0}, - {1537,1538,1536 ,1285,1285,1284 ,0,0,0}, {1539,1533,1534 ,1286,1282,1282 ,0,0,0}, - {1530,1528,1537 ,1287,1288,1285 ,0,0,0}, {1538,1537,1528 ,1285,1285,1288 ,0,0,0}, - {1536,1538,1535 ,1284,1285,1283 ,0,0,0}, {1540,1539,1541 ,1289,1286,1286 ,0,0,0}, - {1534,1541,1539 ,1282,1286,1286 ,0,0,0}, {1542,1543,1540 ,1289,1290,1289 ,0,0,0}, - {1540,1541,1542 ,1289,1286,1289 ,0,0,0}, {1543,1544,1545 ,1290,1290,1291 ,0,0,0}, - {1544,1543,1542 ,1290,1290,1289 ,0,0,0}, {1546,1545,1547 ,1292,1291,1291 ,0,0,0}, - {1544,1547,1545 ,1290,1291,1291 ,0,0,0}, {1546,1547,1548 ,1292,1291,1292 ,0,0,0}, - {1549,1550,1551 ,1293,1293,1294 ,0,0,0}, {1552,1553,1551 ,1295,1296,1294 ,0,0,0}, - {1549,1551,1553 ,1293,1294,1296 ,0,0,0}, {1552,1554,1555 ,1295,1297,1298 ,0,0,0}, - {1555,1553,1552 ,1298,1296,1295 ,0,0,0}, {1556,1554,1557 ,1299,1297,1300 ,0,0,0}, - {1554,1556,1555 ,1297,1299,1298 ,0,0,0}, {1558,1559,1557 ,1301,1302,1300 ,0,0,0}, - {1556,1557,1559 ,1299,1300,1302 ,0,0,0}, {1558,1560,1561 ,1301,1303,1304 ,0,0,0}, - {1561,1559,1558 ,1304,1302,1301 ,0,0,0}, {1562,1560,1563 ,1305,1303,1306 ,0,0,0}, - {1560,1562,1561 ,1303,1305,1304 ,0,0,0}, {1564,1565,1563 ,1307,1308,1306 ,0,0,0}, - {1562,1563,1565 ,1305,1306,1308 ,0,0,0}, {1564,1566,1567 ,1307,1309,1310 ,0,0,0}, - {1567,1565,1564 ,1310,1308,1307 ,0,0,0}, {1568,1566,1569 ,1311,1309,1312 ,0,0,0}, - {1566,1568,1567 ,1309,1311,1310 ,0,0,0}, {1570,1571,1569 ,1313,1314,1312 ,0,0,0}, - {1568,1569,1571 ,1311,1312,1314 ,0,0,0}, {1570,1572,1573 ,1313,1315,1316 ,0,0,0}, - {1573,1571,1570 ,1316,1314,1313 ,0,0,0}, {1574,1572,1575 ,1317,1315,1318 ,0,0,0}, - {1572,1574,1573 ,1315,1317,1316 ,0,0,0}, {1576,1577,1575 ,1319,1320,1318 ,0,0,0}, - {1574,1575,1577 ,1317,1318,1320 ,0,0,0}, {1576,1578,1579 ,1319,1321,1322 ,0,0,0}, - {1579,1577,1576 ,1322,1320,1319 ,0,0,0}, {1580,1578,1581 ,1323,1321,1324 ,0,0,0}, - {1578,1580,1579 ,1321,1323,1322 ,0,0,0}, {1546,1582,1581 ,1292,1325,1324 ,0,0,0}, - {1580,1581,1582 ,1323,1324,1325 ,0,0,0}, {1548,1582,1546 ,1292,1325,1292 ,0,0,0}, - {1583,1550,1549 ,1326,1293,1293 ,0,0,0}, {1584,1583,1585 ,1327,1326,1328 ,0,0,0}, - {1583,1584,1550 ,1326,1327,1293 ,0,0,0}, {1586,1587,1585 ,1329,1330,1328 ,0,0,0}, - {1584,1585,1587 ,1327,1328,1330 ,0,0,0}, {1586,1588,1589 ,1329,1331,1332 ,0,0,0}, - {1589,1587,1586 ,1332,1330,1329 ,0,0,0}, {1590,1588,1591 ,1333,1331,1334 ,0,0,0}, - {1588,1590,1589 ,1331,1333,1332 ,0,0,0}, {1592,1593,1591 ,1335,1336,1334 ,0,0,0}, - {1590,1591,1593 ,1333,1334,1336 ,0,0,0}, {1592,1594,1595 ,1335,1337,1338 ,0,0,0}, - {1595,1593,1592 ,1338,1336,1335 ,0,0,0}, {1596,1594,1597 ,1339,1337,1340 ,0,0,0}, - {1594,1596,1595 ,1337,1339,1338 ,0,0,0}, {1598,1599,1597 ,1341,1342,1340 ,0,0,0}, - {1596,1597,1599 ,1339,1340,1342 ,0,0,0}, {1598,1600,1601 ,1341,1343,1344 ,0,0,0}, - {1601,1599,1598 ,1344,1342,1341 ,0,0,0}, {1602,1600,1603 ,1345,1343,1346 ,0,0,0}, - {1600,1602,1601 ,1343,1345,1344 ,0,0,0}, {1604,1605,1603 ,1347,1348,1346 ,0,0,0}, - {1602,1603,1605 ,1345,1346,1348 ,0,0,0}, {1604,1606,1607 ,1347,1349,1350 ,0,0,0}, - {1607,1605,1604 ,1350,1348,1347 ,0,0,0}, {1608,1606,1609 ,1351,1349,1352 ,0,0,0}, - {1606,1608,1607 ,1349,1351,1350 ,0,0,0}, {1610,1611,1609 ,1353,1354,1352 ,0,0,0}, - {1608,1609,1611 ,1351,1352,1354 ,0,0,0}, {1610,1612,1613 ,1353,1355,1356 ,0,0,0}, - {1613,1611,1610 ,1356,1354,1353 ,0,0,0}, {1614,1612,1615 ,1357,1355,1358 ,0,0,0}, - {1612,1614,1613 ,1355,1357,1356 ,0,0,0}, {1614,1615,1616 ,1357,1358,1358 ,0,0,0}, - {1617,1615,1618 ,1359,1360,1359 ,0,0,0}, {1615,1617,1616 ,1360,1359,1360 ,0,0,0}, - {1619,1620,1621 ,1361,1362,1363 ,0,0,0}, {1622,1623,1624 ,1364,1365,1366 ,0,0,0}, - {1625,1619,1621 ,1367,1361,1363 ,0,0,0}, {1623,1621,1620 ,1365,1363,1362 ,0,0,0}, - {1626,1619,1625 ,1368,1361,1367 ,0,0,0}, {1627,1628,1629 ,1369,1370,1371 ,0,0,0}, - {1626,1625,1627 ,1368,1367,1369 ,0,0,0}, {1630,1628,1631 ,1372,1370,1373 ,0,0,0}, - {1627,1629,1626 ,1369,1371,1368 ,0,0,0}, {1628,1630,1629 ,1370,1372,1371 ,0,0,0}, - {1631,1632,1633 ,1373,1374,1375 ,0,0,0}, {1620,1624,1623 ,1362,1366,1365 ,0,0,0}, - {1634,1635,1636 ,1376,1377,1378 ,0,0,0}, {1637,1633,1632 ,1379,1375,1374 ,0,0,0}, - {1637,1638,1639 ,1379,1380,1381 ,0,0,0}, {1634,1636,1639 ,1376,1378,1381 ,0,0,0}, - {1634,1639,1638 ,1376,1381,1380 ,0,0,0}, {1636,1635,1640 ,1378,1377,1382 ,0,0,0}, - {1641,1642,1643 ,1383,1384,1385 ,0,0,0}, {1640,1641,1643 ,1382,1383,1385 ,0,0,0}, - {1641,1640,1635 ,1383,1382,1377 ,0,0,0}, {1642,1644,1643 ,1384,1386,1385 ,0,0,0}, - {1638,1637,1632 ,1380,1379,1374 ,0,0,0}, {1644,1645,1646 ,1386,1387,1388 ,0,0,0}, - {1644,1642,1645 ,1386,1384,1387 ,0,0,0}, {1647,1648,1649 ,1389,1390,1391 ,0,0,0}, - {1650,1649,1648 ,1392,1391,1390 ,0,0,0}, {1650,1651,1649 ,1392,1393,1391 ,0,0,0}, - {1651,1646,1645 ,1393,1388,1387 ,0,0,0}, {1651,1650,1646 ,1393,1392,1388 ,0,0,0}, - {1633,1630,1631 ,1375,1372,1373 ,0,0,0}, {1652,1653,1647 ,1394,1395,1389 ,0,0,0}, - {1654,1655,1652 ,1396,1397,1394 ,0,0,0}, {1618,1655,1654 ,1398,1397,1396 ,0,0,0}, - {1648,1647,1653 ,1390,1389,1395 ,0,0,0}, {1655,1653,1652 ,1397,1395,1394 ,0,0,0}, - {1617,1618,1654 ,1398,1398,1396 ,0,0,0}, {1656,1657,1622 ,1399,1400,1364 ,0,0,0}, - {1622,1624,1656 ,1364,1366,1399 ,0,0,0}, {1657,1658,1659 ,1400,1401,1402 ,0,0,0}, - {1658,1657,1656 ,1401,1400,1399 ,0,0,0}, {1660,1659,1661 ,1403,1402,1404 ,0,0,0}, - {1658,1661,1659 ,1401,1404,1402 ,0,0,0}, {1662,1663,1660 ,1405,1406,1403 ,0,0,0}, - {1660,1661,1662 ,1403,1404,1405 ,0,0,0}, {1663,1664,1665 ,1406,1407,1408 ,0,0,0}, - {1664,1663,1662 ,1407,1406,1405 ,0,0,0}, {1666,1665,1667 ,1409,1408,1410 ,0,0,0}, - {1664,1667,1665 ,1407,1410,1408 ,0,0,0}, {1668,1669,1666 ,1411,1412,1409 ,0,0,0}, - {1666,1667,1668 ,1409,1410,1411 ,0,0,0}, {1669,1670,1671 ,1412,1413,1414 ,0,0,0}, - {1670,1669,1668 ,1413,1412,1411 ,0,0,0}, {1672,1671,1673 ,1415,1414,1416 ,0,0,0}, - {1670,1673,1671 ,1413,1416,1414 ,0,0,0}, {1674,1675,1672 ,1417,1418,1415 ,0,0,0}, - {1672,1673,1674 ,1415,1416,1417 ,0,0,0}, {1675,1676,1677 ,1418,1419,1420 ,0,0,0}, - {1676,1675,1674 ,1419,1418,1417 ,0,0,0}, {1678,1677,1679 ,1421,1420,1422 ,0,0,0}, - {1676,1679,1677 ,1419,1422,1420 ,0,0,0}, {1680,1681,1678 ,1423,1424,1421 ,0,0,0}, - {1678,1679,1680 ,1421,1422,1423 ,0,0,0}, {1681,1682,1683 ,1424,1425,1426 ,0,0,0}, - {1682,1681,1680 ,1425,1424,1423 ,0,0,0}, {1684,1683,1685 ,1427,1426,1428 ,0,0,0}, - {1682,1685,1683 ,1425,1428,1426 ,0,0,0}, {1686,1687,1684 ,1429,1430,1427 ,0,0,0}, - {1684,1685,1686 ,1427,1428,1429 ,0,0,0}, {1687,1688,1689 ,1430,1431,1432 ,0,0,0}, - {1688,1687,1686 ,1431,1430,1429 ,0,0,0}, {1690,1689,1691 ,1433,1432,1434 ,0,0,0}, - {1688,1691,1689 ,1431,1434,1432 ,0,0,0}, {1690,1691,1692 ,1433,1434,1433 ,0,0,0}, - {1693,1694,1695 ,1435,1435,1435 ,0,0,0}, {1694,1693,1696 ,1435,1435,1435 ,0,0,0}, - {1697,1698,1699 ,1436,1437,1438 ,0,0,0}, {1700,1701,1702 ,1439,1440,1441 ,0,0,0}, - {1698,1703,1699 ,1437,1442,1438 ,0,0,0}, {1697,1699,1704 ,1436,1438,1443 ,0,0,0}, - {1700,1697,1704 ,1439,1436,1443 ,0,0,0}, {1705,1706,1703 ,1444,1445,1442 ,0,0,0}, - {1705,1703,1698 ,1444,1442,1437 ,0,0,0}, {1707,1708,1709 ,1446,1447,1448 ,0,0,0}, - {1706,1705,1707 ,1445,1444,1446 ,0,0,0}, {1707,1709,1706 ,1446,1448,1445 ,0,0,0}, - {1708,1710,1709 ,1447,1449,1448 ,0,0,0}, {1701,1700,1704 ,1440,1439,1443 ,0,0,0}, - {1708,1711,1710 ,1447,1450,1449 ,0,0,0}, {1712,1713,1714 ,1451,1452,1453 ,0,0,0}, - {1712,1714,1711 ,1451,1453,1450 ,0,0,0}, {1713,1712,1715 ,1452,1451,1454 ,0,0,0}, - {1716,1717,1715 ,1455,1456,1454 ,0,0,0}, {1717,1713,1715 ,1456,1452,1454 ,0,0,0}, - {1718,1719,1720 ,1457,1458,1459 ,0,0,0}, {1717,1716,1721 ,1456,1455,1460 ,0,0,0}, - {1722,1723,1721 ,1461,1462,1460 ,0,0,0}, {1719,1718,1723 ,1458,1457,1462 ,0,0,0}, - {1719,1723,1722 ,1458,1462,1461 ,0,0,0}, {1718,1720,1724 ,1457,1459,1463 ,0,0,0}, - {1716,1722,1721 ,1455,1461,1460 ,0,0,0}, {1725,1724,1726 ,1464,1463,1465 ,0,0,0}, - {1725,1726,1727 ,1464,1465,1466 ,0,0,0}, {1726,1724,1720 ,1465,1463,1459 ,0,0,0}, - {1728,1729,1730 ,1467,1468,1469 ,0,0,0}, {1714,1710,1711 ,1453,1449,1450 ,0,0,0}, - {1728,1731,1727 ,1467,1470,1466 ,0,0,0}, {1731,1728,1730 ,1470,1467,1469 ,0,0,0}, - {1729,1732,1733 ,1468,1471,1472 ,0,0,0}, {1733,1730,1729 ,1472,1469,1468 ,0,0,0}, - {1734,1735,1732 ,1473,1474,1471 ,0,0,0}, {1733,1732,1735 ,1472,1471,1474 ,0,0,0}, - {1734,1696,1693 ,1473,1475,1475 ,0,0,0}, {1734,1693,1735 ,1473,1475,1474 ,0,0,0}, - {1727,1731,1725 ,1466,1470,1464 ,0,0,0}, {1736,1702,1737 ,1476,1441,1477 ,0,0,0}, - {1701,1737,1702 ,1440,1477,1441 ,0,0,0}, {1738,1739,1736 ,1478,1479,1476 ,0,0,0}, - {1736,1737,1738 ,1476,1477,1478 ,0,0,0}, {1739,1740,1741 ,1479,1480,1481 ,0,0,0}, - {1740,1739,1738 ,1480,1479,1478 ,0,0,0}, {1742,1741,1743 ,1482,1481,1483 ,0,0,0}, - {1740,1743,1741 ,1480,1483,1481 ,0,0,0}, {1744,1745,1742 ,1484,1485,1482 ,0,0,0}, - {1742,1743,1744 ,1482,1483,1484 ,0,0,0}, {1745,1746,1747 ,1485,1486,1487 ,0,0,0}, - {1746,1745,1744 ,1486,1485,1484 ,0,0,0}, {1748,1747,1749 ,1488,1487,1489 ,0,0,0}, - {1746,1749,1747 ,1486,1489,1487 ,0,0,0}, {1750,1751,1748 ,1490,1491,1488 ,0,0,0}, - {1748,1749,1750 ,1488,1489,1490 ,0,0,0}, {1751,1752,1753 ,1491,1492,1493 ,0,0,0}, - {1752,1751,1750 ,1492,1491,1490 ,0,0,0}, {1754,1753,1755 ,1494,1493,1495 ,0,0,0}, - {1752,1755,1753 ,1492,1495,1493 ,0,0,0}, {1756,1757,1754 ,1496,1497,1494 ,0,0,0}, - {1754,1755,1756 ,1494,1495,1496 ,0,0,0}, {1757,1758,1759 ,1497,1498,1499 ,0,0,0}, - {1758,1757,1756 ,1498,1497,1496 ,0,0,0}, {1760,1759,1761 ,1500,1499,1501 ,0,0,0}, - {1758,1761,1759 ,1498,1501,1499 ,0,0,0}, {1762,1763,1760 ,1502,1503,1500 ,0,0,0}, - {1760,1761,1762 ,1500,1501,1502 ,0,0,0}, {1763,1764,1765 ,1503,1504,1505 ,0,0,0}, - {1764,1763,1762 ,1504,1503,1502 ,0,0,0}, {1766,1765,1767 ,1506,1505,1507 ,0,0,0}, - {1764,1767,1765 ,1504,1507,1505 ,0,0,0}, {1768,1769,1766 ,1508,1509,1506 ,0,0,0}, - {1766,1767,1768 ,1506,1507,1508 ,0,0,0}, {1769,1770,1771 ,1509,1510,1511 ,0,0,0}, - {1770,1769,1768 ,1510,1509,1508 ,0,0,0}, {1772,1771,1773 ,1512,1511,1513 ,0,0,0}, - {1770,1773,1771 ,1510,1513,1511 ,0,0,0}, {1772,1773,1774 ,1512,1513,1514 ,0,0,0}, - {1775,1776,1777 ,1515,1516,1517 ,0,0,0}, {1778,1779,1777 ,1518,1519,1517 ,0,0,0}, - {1775,1777,1779 ,1515,1517,1519 ,0,0,0}, {1778,1780,1781 ,1518,1520,1521 ,0,0,0}, - {1781,1779,1778 ,1521,1519,1518 ,0,0,0}, {1782,1780,1783 ,1522,1520,1523 ,0,0,0}, - {1780,1782,1781 ,1520,1522,1521 ,0,0,0}, {1784,1785,1783 ,1524,1525,1523 ,0,0,0}, - {1782,1783,1785 ,1522,1523,1525 ,0,0,0}, {1784,1786,1787 ,1524,1526,1527 ,0,0,0}, - {1787,1785,1784 ,1527,1525,1524 ,0,0,0}, {1788,1786,1789 ,1528,1526,1529 ,0,0,0}, - {1786,1788,1787 ,1526,1528,1527 ,0,0,0}, {1790,1791,1789 ,1530,1531,1529 ,0,0,0}, - {1788,1789,1791 ,1528,1529,1531 ,0,0,0}, {1790,1792,1793 ,1530,1532,1533 ,0,0,0}, - {1793,1791,1790 ,1533,1531,1530 ,0,0,0}, {1794,1792,1795 ,1534,1532,1535 ,0,0,0}, - {1792,1794,1793 ,1532,1534,1533 ,0,0,0}, {1796,1797,1795 ,1536,1537,1535 ,0,0,0}, - {1794,1795,1797 ,1534,1535,1537 ,0,0,0}, {1796,1798,1799 ,1536,1538,1539 ,0,0,0}, - {1799,1797,1796 ,1539,1537,1536 ,0,0,0}, {1800,1798,1801 ,1540,1538,1541 ,0,0,0}, - {1798,1800,1799 ,1538,1540,1539 ,0,0,0}, {1802,1803,1801 ,1542,1543,1541 ,0,0,0}, - {1800,1801,1803 ,1540,1541,1543 ,0,0,0}, {1802,1804,1805 ,1542,1544,1545 ,0,0,0}, - {1805,1803,1802 ,1545,1543,1542 ,0,0,0}, {1806,1804,1807 ,1546,1544,1547 ,0,0,0}, - {1804,1806,1805 ,1544,1546,1545 ,0,0,0}, {1808,1809,1807 ,1548,1549,1547 ,0,0,0}, - {1806,1807,1809 ,1546,1547,1549 ,0,0,0}, {1808,1810,1811 ,1548,1550,1551 ,0,0,0}, - {1811,1809,1808 ,1551,1549,1548 ,0,0,0}, {1812,1810,1813 ,1552,1550,1553 ,0,0,0}, - {1810,1812,1811 ,1550,1552,1551 ,0,0,0}, {1814,1815,1813 ,1554,1555,1553 ,0,0,0}, - {1812,1813,1815 ,1552,1553,1555 ,0,0,0}, {1814,1816,1817 ,1554,1556,1557 ,0,0,0}, - {1817,1815,1814 ,1557,1555,1554 ,0,0,0}, {1818,1816,1819 ,1558,1556,1559 ,0,0,0}, - {1816,1818,1817 ,1556,1558,1557 ,0,0,0}, {1820,1821,1819 ,1560,1561,1559 ,0,0,0}, - {1818,1819,1821 ,1558,1559,1561 ,0,0,0}, {1820,1822,1823 ,1560,1562,1563 ,0,0,0}, - {1823,1821,1820 ,1563,1561,1560 ,0,0,0}, {1824,1822,1825 ,1564,1562,1565 ,0,0,0}, - {1822,1824,1823 ,1562,1564,1563 ,0,0,0}, {1826,1827,1825 ,1566,1567,1565 ,0,0,0}, - {1824,1825,1827 ,1564,1565,1567 ,0,0,0}, {1826,1828,1829 ,1566,1568,1569 ,0,0,0}, - {1829,1827,1826 ,1569,1567,1566 ,0,0,0}, {1830,1828,1831 ,1570,1568,1571 ,0,0,0}, - {1828,1830,1829 ,1568,1570,1569 ,0,0,0}, {1772,1832,1831 ,1572,1573,1571 ,0,0,0}, - {1830,1831,1832 ,1570,1571,1573 ,0,0,0}, {1774,1832,1772 ,1574,1573,1572 ,0,0,0}, - {1833,1776,1775 ,1575,1516,1515 ,0,0,0}, {1834,1833,1835 ,1576,1575,1577 ,0,0,0}, - {1833,1834,1776 ,1575,1576,1516 ,0,0,0}, {1836,1837,1835 ,1578,1579,1577 ,0,0,0}, - {1834,1835,1837 ,1576,1577,1579 ,0,0,0}, {1836,1838,1839 ,1578,1580,1581 ,0,0,0}, - {1839,1837,1836 ,1581,1579,1578 ,0,0,0}, {1840,1838,1841 ,1582,1580,1583 ,0,0,0}, - {1838,1840,1839 ,1580,1582,1581 ,0,0,0}, {1842,1843,1841 ,1584,1585,1583 ,0,0,0}, - {1840,1841,1843 ,1582,1583,1585 ,0,0,0}, {1842,1844,1845 ,1584,1586,1587 ,0,0,0}, - {1845,1843,1842 ,1587,1585,1584 ,0,0,0}, {1846,1844,1847 ,1588,1586,1589 ,0,0,0}, - {1844,1846,1845 ,1586,1588,1587 ,0,0,0}, {1848,1849,1847 ,1590,1591,1589 ,0,0,0}, - {1846,1847,1849 ,1588,1589,1591 ,0,0,0}, {1848,1850,1851 ,1590,1592,1593 ,0,0,0}, - {1851,1849,1848 ,1593,1591,1590 ,0,0,0}, {1852,1850,1853 ,1594,1592,1595 ,0,0,0}, - {1850,1852,1851 ,1592,1594,1593 ,0,0,0}, {1854,1855,1853 ,1596,1597,1595 ,0,0,0}, - {1852,1853,1855 ,1594,1595,1597 ,0,0,0}, {1854,1856,1857 ,1596,1598,1599 ,0,0,0}, - {1857,1855,1854 ,1599,1597,1596 ,0,0,0}, {1858,1856,1859 ,1600,1598,1601 ,0,0,0}, - {1856,1858,1857 ,1598,1600,1599 ,0,0,0}, {1860,1861,1859 ,1602,1603,1601 ,0,0,0}, - {1858,1859,1861 ,1600,1601,1603 ,0,0,0}, {1860,1862,1863 ,1602,1604,1605 ,0,0,0}, - {1863,1861,1860 ,1605,1603,1602 ,0,0,0}, {1864,1862,1865 ,1606,1604,1607 ,0,0,0}, - {1862,1864,1863 ,1604,1606,1605 ,0,0,0}, {1866,1867,1865 ,1608,1609,1607 ,0,0,0}, - {1864,1865,1867 ,1606,1607,1609 ,0,0,0}, {1866,1868,1869 ,1608,1610,1611 ,0,0,0}, - {1869,1867,1866 ,1611,1609,1608 ,0,0,0}, {1870,1868,1871 ,1612,1610,1613 ,0,0,0}, - {1868,1870,1869 ,1610,1612,1611 ,0,0,0}, {1872,1873,1871 ,1614,1615,1613 ,0,0,0}, - {1870,1871,1873 ,1612,1613,1615 ,0,0,0}, {1872,1874,1875 ,1614,1616,1617 ,0,0,0}, - {1875,1873,1872 ,1617,1615,1614 ,0,0,0}, {1876,1874,1877 ,1618,1616,1619 ,0,0,0}, - {1874,1876,1875 ,1616,1618,1617 ,0,0,0}, {1878,1879,1877 ,1620,1621,1619 ,0,0,0}, - {1876,1877,1879 ,1618,1619,1621 ,0,0,0}, {1878,1880,1881 ,1620,1622,1623 ,0,0,0}, - {1881,1879,1878 ,1623,1621,1620 ,0,0,0}, {1882,1880,1883 ,1624,1622,1625 ,0,0,0}, - {1880,1882,1881 ,1622,1624,1623 ,0,0,0}, {1884,1885,1883 ,1626,1627,1625 ,0,0,0}, - {1882,1883,1885 ,1624,1625,1627 ,0,0,0}, {1884,1886,1887 ,1626,1628,1629 ,0,0,0}, - {1887,1885,1884 ,1629,1627,1626 ,0,0,0}, {1888,1886,1889 ,1630,1628,21 ,0,0,0}, - {1886,1888,1887 ,1628,1630,1629 ,0,0,0}, {1888,1889,1890 ,1630,21,1631 ,0,0,0}, - {1891,1892,1893 ,1632,1633,1634 ,0,0,0}, {1894,1895,1896 ,1635,1636,1637 ,0,0,0}, - {1892,1897,1893 ,1633,1638,1634 ,0,0,0}, {1891,1893,1898 ,1632,1634,1639 ,0,0,0}, - {1894,1891,1898 ,1635,1632,1639 ,0,0,0}, {1899,1900,1897 ,1640,1641,1638 ,0,0,0}, - {1899,1897,1892 ,1640,1638,1633 ,0,0,0}, {1901,1902,1903 ,1642,1643,1644 ,0,0,0}, - {1900,1899,1901 ,1641,1640,1642 ,0,0,0}, {1901,1903,1900 ,1642,1644,1641 ,0,0,0}, - {1902,1904,1903 ,1643,1645,1644 ,0,0,0}, {1895,1894,1898 ,1636,1635,1639 ,0,0,0}, - {1902,1905,1904 ,1643,1646,1645 ,0,0,0}, {1906,1907,1908 ,1647,1648,1649 ,0,0,0}, - {1906,1908,1905 ,1647,1649,1646 ,0,0,0}, {1907,1906,1909 ,1648,1647,1650 ,0,0,0}, - {1910,1911,1909 ,1651,1652,1650 ,0,0,0}, {1911,1907,1909 ,1652,1648,1650 ,0,0,0}, - {1912,1913,1914 ,1653,1654,1655 ,0,0,0}, {1911,1910,1915 ,1652,1651,1656 ,0,0,0}, - {1916,1917,1915 ,1657,1658,1656 ,0,0,0}, {1913,1912,1917 ,1654,1653,1658 ,0,0,0}, - {1913,1917,1916 ,1654,1658,1657 ,0,0,0}, {1912,1914,1918 ,1653,1655,1659 ,0,0,0}, - {1910,1916,1915 ,1651,1657,1656 ,0,0,0}, {1919,1918,1920 ,1660,1659,1661 ,0,0,0}, - {1919,1920,1921 ,1660,1661,1662 ,0,0,0}, {1920,1918,1914 ,1661,1659,1655 ,0,0,0}, - {1922,1923,1924 ,1663,1664,1665 ,0,0,0}, {1908,1904,1905 ,1649,1645,1646 ,0,0,0}, - {1922,1925,1921 ,1663,1666,1662 ,0,0,0}, {1925,1922,1924 ,1666,1663,1665 ,0,0,0}, - {1923,1926,1927 ,1664,1667,1668 ,0,0,0}, {1927,1924,1923 ,1668,1665,1664 ,0,0,0}, - {1928,1929,1926 ,1669,1670,1667 ,0,0,0}, {1927,1926,1929 ,1668,1667,1670 ,0,0,0}, - {1928,1890,1889 ,1669,1671,1672 ,0,0,0}, {1928,1889,1929 ,1669,1672,1670 ,0,0,0}, - {1921,1925,1919 ,1662,1666,1660 ,0,0,0}, {1930,1896,1931 ,1673,1637,1674 ,0,0,0}, - {1895,1931,1896 ,1636,1674,1637 ,0,0,0}, {1932,1933,1930 ,1675,1676,1673 ,0,0,0}, - {1930,1931,1932 ,1673,1674,1675 ,0,0,0}, {1933,1934,1935 ,1676,1677,1678 ,0,0,0}, - {1934,1933,1932 ,1677,1676,1675 ,0,0,0}, {1936,1935,1937 ,1679,1678,1680 ,0,0,0}, - {1934,1937,1935 ,1677,1680,1678 ,0,0,0}, {1938,1939,1936 ,1681,1682,1679 ,0,0,0}, - {1936,1937,1938 ,1679,1680,1681 ,0,0,0}, {1939,1940,1941 ,1682,1683,1684 ,0,0,0}, - {1940,1939,1938 ,1683,1682,1681 ,0,0,0}, {1942,1941,1943 ,1685,1684,1686 ,0,0,0}, - {1940,1943,1941 ,1683,1686,1684 ,0,0,0}, {1944,1945,1942 ,1687,1688,1685 ,0,0,0}, - {1942,1943,1944 ,1685,1686,1687 ,0,0,0}, {1945,1946,1947 ,1688,1689,1690 ,0,0,0}, - {1946,1945,1944 ,1689,1688,1687 ,0,0,0}, {1948,1947,1949 ,1691,1690,1692 ,0,0,0}, - {1946,1949,1947 ,1689,1692,1690 ,0,0,0}, {1950,1951,1948 ,1693,1694,1691 ,0,0,0}, - {1948,1949,1950 ,1691,1692,1693 ,0,0,0}, {1951,1952,1953 ,1694,1695,1696 ,0,0,0}, - {1952,1951,1950 ,1695,1694,1693 ,0,0,0}, {1954,1953,1955 ,1697,1696,1698 ,0,0,0}, - {1952,1955,1953 ,1695,1698,1696 ,0,0,0}, {1956,1957,1954 ,1699,1700,1697 ,0,0,0}, - {1954,1955,1956 ,1697,1698,1699 ,0,0,0}, {1957,1958,1959 ,1700,1701,1702 ,0,0,0}, - {1958,1957,1956 ,1701,1700,1699 ,0,0,0}, {1960,1959,1961 ,1703,1702,1704 ,0,0,0}, - {1958,1961,1959 ,1701,1704,1702 ,0,0,0}, {1962,1963,1960 ,1705,1706,1703 ,0,0,0}, - {1960,1961,1962 ,1703,1704,1705 ,0,0,0}, {1963,1964,1965 ,1706,1707,1708 ,0,0,0}, - {1964,1963,1962 ,1707,1706,1705 ,0,0,0}, {1966,1965,1967 ,1709,1708,1710 ,0,0,0}, - {1964,1967,1965 ,1707,1710,1708 ,0,0,0}, {1966,1967,1968 ,1709,1710,1709 ,0,0,0}, - {1969,1966,1968 ,1711,1711,1711 ,0,0,0}, {1966,1969,1970 ,1711,1711,1711 ,0,0,0}, - {1971,1972,1973 ,1712,1713,1714 ,0,0,0}, {1974,1975,1971 ,1715,1716,1712 ,0,0,0}, - {1971,1973,1974 ,1712,1714,1715 ,0,0,0}, {1975,1976,1977 ,1716,1717,1718 ,0,0,0}, - {1976,1975,1974 ,1717,1716,1715 ,0,0,0}, {1978,1977,1979 ,1719,1718,1720 ,0,0,0}, - {1976,1979,1977 ,1717,1720,1718 ,0,0,0}, {1980,1981,1978 ,1721,1722,1719 ,0,0,0}, - {1978,1979,1980 ,1719,1720,1721 ,0,0,0}, {1981,1982,1983 ,1722,1723,1724 ,0,0,0}, - {1982,1981,1980 ,1723,1722,1721 ,0,0,0}, {1984,1983,1985 ,1725,1724,1726 ,0,0,0}, - {1982,1985,1983 ,1723,1726,1724 ,0,0,0}, {1986,1987,1984 ,1727,1728,1725 ,0,0,0}, - {1984,1985,1986 ,1725,1726,1727 ,0,0,0}, {1987,1988,1989 ,1728,1729,1730 ,0,0,0}, - {1988,1987,1986 ,1729,1728,1727 ,0,0,0}, {1990,1989,1991 ,1731,1730,1732 ,0,0,0}, - {1988,1991,1989 ,1729,1732,1730 ,0,0,0}, {1992,1993,1990 ,1733,1734,1731 ,0,0,0}, - {1990,1991,1992 ,1731,1732,1733 ,0,0,0}, {1993,1994,1995 ,1734,1735,1736 ,0,0,0}, - {1994,1993,1992 ,1735,1734,1733 ,0,0,0}, {1996,1995,1997 ,1737,1736,1738 ,0,0,0}, - {1994,1997,1995 ,1735,1738,1736 ,0,0,0}, {1998,1999,1996 ,1739,1740,1737 ,0,0,0}, - {1996,1997,1998 ,1737,1738,1739 ,0,0,0}, {1999,2000,2001 ,1740,1741,1742 ,0,0,0}, - {2000,1999,1998 ,1741,1740,1739 ,0,0,0}, {2002,2001,2003 ,1743,1742,1744 ,0,0,0}, - {2000,2003,2001 ,1741,1744,1742 ,0,0,0}, {2004,2005,2002 ,1745,1746,1743 ,0,0,0}, - {2002,2003,2004 ,1743,1744,1745 ,0,0,0}, {2005,2006,2007 ,1746,1747,1748 ,0,0,0}, - {2006,2005,2004 ,1747,1746,1745 ,0,0,0}, {2008,2007,2009 ,1749,1748,1750 ,0,0,0}, - {2006,2009,2007 ,1747,1750,1748 ,0,0,0}, {1970,1969,2008 ,1751,1751,1749 ,0,0,0}, - {2008,2009,1970 ,1749,1750,1751 ,0,0,0}, {1973,1972,2010 ,1714,1713,1752 ,0,0,0}, - {2011,2010,2012 ,1753,1752,1754 ,0,0,0}, {1972,2012,2010 ,1713,1754,1752 ,0,0,0}, - {2013,2014,2011 ,1755,1756,1753 ,0,0,0}, {2011,2012,2013 ,1753,1754,1755 ,0,0,0}, - {2014,2015,2016 ,1756,1757,1758 ,0,0,0}, {2015,2014,2013 ,1757,1756,1755 ,0,0,0}, - {2017,2016,2018 ,1759,1758,1760 ,0,0,0}, {2015,2018,2016 ,1757,1760,1758 ,0,0,0}, - {2019,2020,2017 ,1761,1762,1759 ,0,0,0}, {2017,2018,2019 ,1759,1760,1761 ,0,0,0}, - {2020,2021,2022 ,1762,1763,1764 ,0,0,0}, {2021,2020,2019 ,1763,1762,1761 ,0,0,0}, - {2023,2022,2024 ,1765,1764,1766 ,0,0,0}, {2021,2024,2022 ,1763,1766,1764 ,0,0,0}, - {2025,2026,2023 ,1767,1768,1765 ,0,0,0}, {2023,2024,2025 ,1765,1766,1767 ,0,0,0}, - {2026,2027,2028 ,1768,1769,1770 ,0,0,0}, {2027,2026,2025 ,1769,1768,1767 ,0,0,0}, - {2029,2028,2030 ,1771,1770,1772 ,0,0,0}, {2027,2030,2028 ,1769,1772,1770 ,0,0,0}, - {2031,2032,2029 ,1773,1774,1771 ,0,0,0}, {2029,2030,2031 ,1771,1772,1773 ,0,0,0}, - {2032,2033,2034 ,1774,1775,1776 ,0,0,0}, {2033,2032,2031 ,1775,1774,1773 ,0,0,0}, - {2035,2034,2036 ,1777,1776,1778 ,0,0,0}, {2033,2036,2034 ,1775,1778,1776 ,0,0,0}, - {2037,2038,2035 ,1779,1780,1777 ,0,0,0}, {2035,2036,2037 ,1777,1778,1779 ,0,0,0}, - {2038,2039,2040 ,1780,1781,1782 ,0,0,0}, {2039,2038,2037 ,1781,1780,1779 ,0,0,0}, - {2041,2040,2042 ,1783,1782,1784 ,0,0,0}, {2039,2042,2040 ,1781,1784,1782 ,0,0,0}, - {2043,2044,2041 ,1785,1786,1783 ,0,0,0}, {2041,2042,2043 ,1783,1784,1785 ,0,0,0}, - {2044,2045,2046 ,1786,1787,1788 ,0,0,0}, {2045,2044,2043 ,1787,1786,1785 ,0,0,0}, - {2045,1695,2046 ,1787,1789,1788 ,0,0,0}, {2046,1695,1694 ,1788,1789,1789 ,0,0,0}, - {1396,1692,1397 ,1790,1791,1790 ,0,0,0}, {1692,1396,1690 ,1791,1790,1791 ,0,0,0}, - {1917,1419,1418 ,1792,1792,1792 ,0,0,0}, {1695,2045,1618 ,1792,726,726 ,0,0,0}, - {2039,1648,2042 ,726,726,726 ,0,0,0}, {1735,1693,1615 ,726,726,726 ,0,0,0}, - {1636,1640,2030 ,726,726,726 ,0,0,0}, {1644,2036,2033 ,726,726,726 ,0,0,0}, - {2015,1626,2018 ,726,726,726 ,0,0,0}, {2024,2021,1633 ,726,726,726 ,0,0,0}, - {2012,1620,1619 ,726,726,726 ,0,0,0}, {2013,2012,1619 ,726,726,726 ,0,0,0}, - {1412,1409,1908 ,1792,726,1792 ,0,0,0}, {1925,1924,1427 ,1792,726,1792 ,0,0,0}, - {1893,1897,1401 ,1792,1792,726 ,0,0,0}, {1403,1897,1900 ,726,1792,726 ,0,0,0}, - {1931,1357,1361 ,726,726,726 ,0,0,0}, {1357,1895,1358 ,726,1792,1792 ,0,0,0}, - {1934,1364,1937 ,1792,726,726 ,0,0,0}, {1363,1934,1932 ,1792,1792,1792 ,0,0,0}, - {1373,1944,1943 ,1793,1792,1792 ,0,0,0}, {1369,1940,1938 ,726,1792,1792 ,0,0,0}, - {1946,1944,1375 ,1792,1792,1792 ,0,0,0}, {1373,1375,1944 ,1793,1792,1792 ,0,0,0}, - {1950,1949,1379 ,1792,1793,726 ,0,0,0}, {1946,1375,1376 ,1792,1792,1792 ,0,0,0}, - {1952,1950,1381 ,1792,1792,1792 ,0,0,0}, {1379,1949,1376 ,726,1793,1792 ,0,0,0}, - {1382,1955,1952 ,1792,726,1792 ,0,0,0}, {1952,1381,1382 ,1792,1792,1792 ,0,0,0}, - {1955,1385,1956 ,726,726,726 ,0,0,0}, {1385,1955,1382 ,726,726,1792 ,0,0,0}, - {1958,1956,1387 ,726,726,726 ,0,0,0}, {1388,1958,1387 ,726,726,726 ,0,0,0}, - {1393,1962,1391 ,726,1792,1792 ,0,0,0}, {1961,1958,1388 ,726,726,726 ,0,0,0}, - {1394,1397,1964 ,726,726,726 ,0,0,0}, {1391,1962,1961 ,1792,1792,726 ,0,0,0}, - {1397,1967,1964 ,726,1792,726 ,0,0,0}, {1962,1394,1964 ,1792,726,726 ,0,0,0}, - {1987,1668,1984 ,726,726,726 ,0,0,0}, {1397,1968,1967 ,726,726,1792 ,0,0,0}, - {1918,1421,1912 ,1792,726,726 ,0,0,0}, {1932,1361,1363 ,1792,726,1792 ,0,0,0}, - {1940,1369,1370 ,1792,726,1792 ,0,0,0}, {1943,1370,1373 ,1792,1792,1793 ,0,0,0}, - {1367,1369,1938 ,1792,726,1792 ,0,0,0}, {1937,1364,1367 ,726,726,1792 ,0,0,0}, - {1895,1357,1931 ,1792,726,726 ,0,0,0}, {1931,1361,1932 ,726,726,1792 ,0,0,0}, - {1893,1400,1898 ,1792,1792,1792 ,0,0,0}, {1898,1358,1895 ,1792,1792,1792 ,0,0,0}, - {1561,1740,1559 ,726,726,1792 ,0,0,0}, {1400,1358,1898 ,1792,1792,1792 ,0,0,0}, - {1903,1407,1406 ,1792,1792,726 ,0,0,0}, {1900,1406,1403 ,726,726,726 ,0,0,0}, - {1904,1409,1407 ,726,726,1792 ,0,0,0}, {1903,1406,1900 ,1792,726,726 ,0,0,0}, - {1911,1415,1413 ,1792,1792,1792 ,0,0,0}, {1412,1908,1907 ,1792,1792,726 ,0,0,0}, - {1912,1419,1917 ,726,1792,1792 ,0,0,0}, {1415,1915,1418 ,1792,1792,1792 ,0,0,0}, - {1425,1424,1919 ,726,726,726 ,0,0,0}, {1421,1419,1912 ,726,1792,726 ,0,0,0}, - {1919,1424,1918 ,726,726,1792 ,0,0,0}, {1767,1764,1547 ,1792,726,726 ,0,0,0}, - {1927,1431,1430 ,1793,726,726 ,0,0,0}, {1344,1326,1346 ,1792,1793,726 ,0,0,0}, - {1433,1929,1435 ,1792,726,1792 ,0,0,0}, {1351,1353,1318 ,726,1792,726 ,0,0,0}, - {1315,1353,1354 ,726,1792,1792 ,0,0,0}, {1514,1511,1307 ,726,726,726 ,0,0,0}, - {1514,1298,1300 ,726,726,1792 ,0,0,0}, {1817,1489,1815 ,726,1792,1792 ,0,0,0}, - {1508,1503,1770 ,1792,726,726 ,0,0,0}, {1877,1874,2047 ,726,726,726 ,0,0,0}, - {1788,1472,1787 ,726,1792,1792 ,0,0,0}, {2048,2049,1838 ,1792,1792,726 ,0,0,0}, - {1293,2050,2051 ,1792,726,726 ,0,0,0}, {1844,1842,2052 ,726,1792,726 ,0,0,0}, - {2052,1842,2049 ,726,1792,1792 ,0,0,0}, {1266,1263,1335 ,726,726,1792 ,0,0,0}, - {2052,1335,1847 ,726,1792,1792 ,0,0,0}, {1333,1331,1264 ,1792,1792,1792 ,0,0,0}, - {1264,1331,1273 ,1792,1792,1792 ,0,0,0}, {1854,1853,1262 ,1792,726,726 ,0,0,0}, - {1841,1838,2049 ,1792,726,1792 ,0,0,0}, {1479,2048,1836 ,726,1792,726 ,0,0,0}, - {1454,2053,1450 ,726,1792,1792 ,0,0,0}, {2054,2055,2050 ,1792,1792,726 ,0,0,0}, - {1445,2056,2057 ,726,1792,1792 ,0,0,0}, {1833,1478,1479 ,1792,726,726 ,0,0,0}, - {1479,1836,1835 ,726,726,1792 ,0,0,0}, {1775,1478,1833 ,1792,726,1792 ,0,0,0}, - {1872,1871,2058 ,726,1792,1792 ,0,0,0}, {1477,1478,1779 ,1792,726,726 ,0,0,0}, - {1779,1781,1477 ,726,726,1792 ,0,0,0}, {1878,1877,2059 ,1792,726,1792 ,0,0,0}, - {1474,1477,1782 ,726,1792,726 ,0,0,0}, {1880,2060,1883 ,726,1792,1792 ,0,0,0}, - {1785,1474,1782 ,1792,726,726 ,0,0,0}, {1437,1884,1440 ,1792,726,1792 ,0,0,0}, - {1474,1787,1472 ,726,1792,1792 ,0,0,0}, {1797,1468,1467 ,1792,726,726 ,0,0,0}, - {1793,1467,1470 ,1792,726,1792 ,0,0,0}, {1484,1483,1805 ,1793,726,1792 ,0,0,0}, - {1468,1797,1799 ,726,1792,1792 ,0,0,0}, {1812,1486,1811 ,1792,1792,1792 ,0,0,0}, - {1486,1484,1809 ,1792,1793,1792 ,0,0,0}, {1495,1492,1823 ,1792,726,726 ,0,0,0}, - {1455,2061,1459 ,1792,726,1792 ,0,0,0}, {2062,2063,2064 ,1792,1792,1792 ,0,0,0}, - {1496,1827,1829 ,726,726,726 ,0,0,0}, {1498,1502,1774 ,1792,1792,1792 ,0,0,0}, - {2065,1516,2066 ,726,726,726 ,0,0,0}, {2067,1526,1516 ,1792,1792,726 ,0,0,0}, - {1519,1515,2068 ,726,726,726 ,0,0,0}, {1518,2069,2066 ,726,1792,726 ,0,0,0}, - {1356,1297,1296 ,726,726,1792 ,0,0,0}, {1340,1339,1320 ,1792,726,726 ,0,0,0}, - {2069,1518,1519 ,1792,726,726 ,0,0,0}, {1886,1437,1889 ,1792,1792,1792 ,0,0,0}, - {1343,1321,1324 ,726,1792,726 ,0,0,0}, {1544,1542,1767 ,1792,1792,1792 ,0,0,0}, - {1929,1889,1435 ,726,1792,1792 ,0,0,0}, {1582,1548,1764 ,1793,726,726 ,0,0,0}, - {1433,1431,1929 ,1792,726,726 ,0,0,0}, {2019,1629,1630 ,726,726,726 ,0,0,0}, - {1975,1656,1971 ,726,726,726 ,0,0,0}, {1658,1975,1977 ,726,726,726 ,0,0,0}, - {1737,1556,1738 ,1792,726,726 ,0,0,0}, {1412,1907,1413 ,1792,726,1792 ,0,0,0}, - {1929,1431,1927 ,726,726,1793 ,0,0,0}, {1924,1927,1430 ,726,1793,726 ,0,0,0}, - {1425,1925,1427 ,726,1792,1792 ,0,0,0}, {1427,1924,1430 ,1792,726,726 ,0,0,0}, - {1415,1911,1915 ,1792,1792,1792 ,0,0,0}, {1421,1918,1424 ,726,1792,726 ,0,0,0}, - {1425,1919,1925 ,726,726,1792 ,0,0,0}, {1917,1418,1915 ,1792,1792,1792 ,0,0,0}, - {1907,1911,1413 ,726,1792,1792 ,0,0,0}, {1908,1409,1904 ,1792,726,726 ,0,0,0}, - {1740,1561,1743 ,726,726,726 ,0,0,0}, {1903,1904,1407 ,1792,726,1792 ,0,0,0}, - {1971,1656,1624 ,726,726,726 ,0,0,0}, {1624,1972,1971 ,726,726,726 ,0,0,0}, - {1972,1624,1620 ,726,726,726 ,0,0,0}, {1626,2013,1619 ,726,726,726 ,0,0,0}, - {1620,2012,1972 ,726,726,726 ,0,0,0}, {1555,1556,1737 ,1792,726,1792 ,0,0,0}, - {2019,2018,1629 ,726,726,726 ,0,0,0}, {2018,1626,1629 ,726,726,726 ,0,0,0}, - {1710,1714,1591 ,726,1792,1792 ,0,0,0}, {2021,2019,1630 ,726,726,726 ,0,0,0}, - {1637,2024,1633 ,726,726,726 ,0,0,0}, {2025,1637,1639 ,726,726,726 ,0,0,0}, - {1637,2025,2024 ,726,726,726 ,0,0,0}, {1636,2027,1639 ,726,726,726 ,0,0,0}, - {2025,1639,2027 ,726,726,726 ,0,0,0}, {2027,1636,2030 ,726,726,726 ,0,0,0}, - {1640,1643,2031 ,726,726,726 ,0,0,0}, {1592,1591,1714 ,726,1792,1792 ,0,0,0}, - {2033,1643,1644 ,726,726,726 ,0,0,0}, {1643,2033,2031 ,726,726,726 ,0,0,0}, - {2037,2036,1646 ,726,726,726 ,0,0,0}, {1731,1609,1606 ,726,1792,1792 ,0,0,0}, - {1644,1646,2036 ,726,726,726 ,0,0,0}, {1650,2039,2037 ,726,726,726 ,0,0,0}, - {2037,1646,1650 ,726,726,726 ,0,0,0}, {2039,1650,1648 ,726,726,726 ,0,0,0}, - {1648,1653,2042 ,726,726,726 ,0,0,0}, {2042,1653,2043 ,726,726,726 ,0,0,0}, - {2043,1655,2045 ,726,726,726 ,0,0,0}, {1733,1612,1610 ,1792,726,1793 ,0,0,0}, - {1655,2043,1653 ,726,726,726 ,0,0,0}, {1534,1770,1768 ,726,726,1793 ,0,0,0}, - {1310,1311,1509 ,1793,726,726 ,0,0,0}, {1580,1582,1762 ,726,1793,726 ,0,0,0}, - {1768,1542,1541 ,1793,1792,1792 ,0,0,0}, {1579,1580,1761 ,1792,726,726 ,0,0,0}, - {1577,1579,1758 ,726,1792,726 ,0,0,0}, {1764,1548,1547 ,726,726,726 ,0,0,0}, - {1574,1577,1756 ,1792,726,1792 ,0,0,0}, {1764,1762,1582 ,726,726,1793 ,0,0,0}, - {1573,1574,1755 ,726,1792,1792 ,0,0,0}, {1762,1761,1580 ,726,726,726 ,0,0,0}, - {1571,1573,1752 ,1792,726,1792 ,0,0,0}, {1761,1758,1579 ,726,726,1792 ,0,0,0}, - {1568,1750,1749 ,1792,726,726 ,0,0,0}, {1758,1756,1577 ,726,1792,726 ,0,0,0}, - {1567,1749,1746 ,726,726,1792 ,0,0,0}, {1756,1755,1574 ,1792,1792,1792 ,0,0,0}, - {1565,1746,1744 ,1792,1792,726 ,0,0,0}, {1743,1562,1744 ,726,1792,726 ,0,0,0}, - {1568,1571,1750 ,1792,1792,726 ,0,0,0}, {1740,1738,1559 ,726,726,1792 ,0,0,0}, - {1568,1749,1567 ,1792,726,726 ,0,0,0}, {1977,1978,1661 ,726,726,726 ,0,0,0}, - {1746,1565,1567 ,1792,1792,726 ,0,0,0}, {1978,1981,1662 ,726,726,726 ,0,0,0}, - {1744,1562,1565 ,726,1792,1792 ,0,0,0}, {1981,1983,1664 ,726,726,726 ,0,0,0}, - {1400,1893,1401 ,1792,1792,726 ,0,0,0}, {1401,1897,1403 ,726,1792,726 ,0,0,0}, - {1738,1556,1559 ,726,726,1792 ,0,0,0}, {1667,1664,1983 ,726,726,726 ,0,0,0}, - {1658,1656,1975 ,726,726,726 ,0,0,0}, {1667,1984,1668 ,726,726,726 ,0,0,0}, - {1661,1658,1977 ,726,726,726 ,0,0,0}, {1987,1670,1668 ,726,726,726 ,0,0,0}, - {1662,1661,1978 ,726,726,726 ,0,0,0}, {1989,1673,1670 ,726,726,726 ,0,0,0}, - {1664,1662,1981 ,726,726,726 ,0,0,0}, {1364,1934,1363 ,726,1792,1792 ,0,0,0}, - {1674,1673,1990 ,726,726,726 ,0,0,0}, {1983,1984,1667 ,726,726,726 ,0,0,0}, - {1676,1674,1993 ,726,726,726 ,0,0,0}, {1676,1993,1995 ,726,726,726 ,0,0,0}, - {1367,1938,1937 ,1792,1792,726 ,0,0,0}, {1987,1989,1670 ,726,726,726 ,0,0,0}, - {1370,1943,1940 ,1792,1792,1792 ,0,0,0}, {1996,1679,1995 ,726,726,726 ,0,0,0}, - {1989,1990,1673 ,726,726,726 ,0,0,0}, {1680,1996,1999 ,726,726,726 ,0,0,0}, - {1990,1993,1674 ,726,726,726 ,0,0,0}, {1376,1949,1946 ,1792,1793,1792 ,0,0,0}, - {1995,1679,1676 ,726,726,726 ,0,0,0}, {1999,2001,1682 ,726,726,726 ,0,0,0}, - {1680,1679,1996 ,726,726,726 ,0,0,0}, {2002,1685,2001 ,726,726,726 ,0,0,0}, - {1379,1381,1950 ,726,1792,1792 ,0,0,0}, {2005,1686,2002 ,726,726,726 ,0,0,0}, - {1682,1680,1999 ,726,726,726 ,0,0,0}, {1385,1387,1956 ,726,726,726 ,0,0,0}, - {2001,1685,1682 ,726,726,726 ,0,0,0}, {1688,2005,2007 ,726,726,726 ,0,0,0}, - {1388,1391,1961 ,726,1792,726 ,0,0,0}, {2002,1686,1685 ,726,726,726 ,0,0,0}, - {1691,1688,2007 ,1792,726,726 ,0,0,0}, {1692,1691,2008 ,726,1792,726 ,0,0,0}, - {1393,1394,1962 ,726,726,1792 ,0,0,0}, {1691,2007,2008 ,1792,726,726 ,0,0,0}, - {1969,1968,1692 ,1792,726,726 ,0,0,0}, {1968,1397,1692 ,726,726,726 ,0,0,0}, - {2008,1969,1692 ,726,1792,726 ,0,0,0}, {2005,1688,1686 ,726,726,726 ,0,0,0}, - {1555,1737,1701 ,1792,1792,1792 ,0,0,0}, {1553,1701,1704 ,1792,1792,1792 ,0,0,0}, - {1549,1704,1699 ,1792,1792,1792 ,0,0,0}, {1583,1699,1703 ,726,1792,726 ,0,0,0}, - {1703,1706,1585 ,726,1792,1792 ,0,0,0}, {1626,2015,2013 ,726,726,726 ,0,0,0}, - {1701,1553,1555 ,1792,1792,1792 ,0,0,0}, {1706,1709,1586 ,1792,1792,726 ,0,0,0}, - {1704,1549,1553 ,1792,1792,1792 ,0,0,0}, {1630,1633,2021 ,726,726,726 ,0,0,0}, - {1549,1699,1583 ,1792,1792,726 ,0,0,0}, {1710,1588,1709 ,726,726,1792 ,0,0,0}, - {1703,1585,1583 ,726,1792,726 ,0,0,0}, {1592,1714,1713 ,726,1792,1792 ,0,0,0}, - {1706,1586,1585 ,1792,726,1792 ,0,0,0}, {1594,1592,1713 ,1792,726,1792 ,0,0,0}, - {1709,1588,1586 ,1792,726,726 ,0,0,0}, {1717,1597,1594 ,726,1792,1792 ,0,0,0}, - {1710,1591,1588 ,726,1792,726 ,0,0,0}, {1721,1598,1597 ,726,726,1792 ,0,0,0}, - {1723,1600,1598 ,1792,726,726 ,0,0,0}, {2030,1640,2031 ,726,726,726 ,0,0,0}, - {1594,1713,1717 ,1792,1792,726 ,0,0,0}, {1718,1603,1600 ,726,1792,726 ,0,0,0}, - {1597,1717,1721 ,1792,726,726 ,0,0,0}, {1603,1724,1604 ,1792,726,1792 ,0,0,0}, - {1598,1721,1723 ,726,726,1792 ,0,0,0}, {1606,1604,1725 ,1792,1792,726 ,0,0,0}, - {1603,1718,1724 ,1792,726,726 ,0,0,0}, {1609,1731,1730 ,1792,726,1792 ,0,0,0}, - {1604,1724,1725 ,1792,726,726 ,0,0,0}, {1733,1610,1730 ,1792,1793,1792 ,0,0,0}, - {1606,1725,1731 ,1792,726,726 ,0,0,0}, {1733,1615,1612 ,1792,726,726 ,0,0,0}, - {1610,1609,1730 ,1793,1792,1792 ,0,0,0}, {1615,1693,1618 ,726,726,726 ,0,0,0}, - {1695,1618,1693 ,1792,726,726 ,0,0,0}, {2045,1655,1618 ,726,726,726 ,0,0,0}, - {1733,1735,1615 ,1792,726,726 ,0,0,0}, {1600,1723,1718 ,726,1792,726 ,0,0,0}, - {1562,1743,1561 ,1792,726,726 ,0,0,0}, {1573,1755,1752 ,726,1792,1792 ,0,0,0}, - {1571,1752,1750 ,1792,1792,726 ,0,0,0}, {1490,1817,1818 ,1792,726,1792 ,0,0,0}, - {1544,1767,1547 ,1792,1792,726 ,0,0,0}, {1505,1496,1830 ,1792,726,726 ,0,0,0}, - {1768,1767,1542 ,1793,1792,1792 ,0,0,0}, {1532,1535,2070 ,726,1792,1792 ,0,0,0}, - {1534,1768,1541 ,726,1793,1792 ,0,0,0}, {2071,1524,1523 ,1792,1792,726 ,0,0,0}, - {1515,1346,1327 ,726,726,726 ,0,0,0}, {1526,2072,1523 ,1792,726,726 ,0,0,0}, - {1515,1327,2068 ,726,726,726 ,0,0,0}, {1773,1503,1499 ,726,726,1792 ,0,0,0}, - {1495,1823,1824 ,1792,726,726 ,0,0,0}, {2057,1455,1443 ,1792,1792,1792 ,0,0,0}, - {1812,1815,1489 ,1792,1792,1792 ,0,0,0}, {1484,1805,1806 ,1793,1792,1793 ,0,0,0}, - {1793,1794,1467 ,1792,1792,726 ,0,0,0}, {1847,1335,1848 ,1792,1792,1792 ,0,0,0}, - {1470,1788,1791 ,1792,726,1792 ,0,0,0}, {1800,1483,1468 ,726,726,726 ,0,0,0}, - {1483,1800,1803 ,726,726,1792 ,0,0,0}, {1486,1809,1811 ,1792,1792,1792 ,0,0,0}, - {1821,1490,1818 ,726,1792,1792 ,0,0,0}, {1821,1492,1490 ,726,726,1792 ,0,0,0}, - {1496,1495,1827 ,726,1792,726 ,0,0,0}, {1830,1832,1505 ,726,726,1792 ,0,0,0}, - {1505,1774,1502 ,1792,1792,1792 ,0,0,0}, {1499,1498,1773 ,1792,1792,726 ,0,0,0}, - {2071,2073,1524 ,1792,726,1792 ,0,0,0}, {2074,2075,1538 ,726,1792,726 ,0,0,0}, - {2075,2076,1538 ,1792,726,726 ,0,0,0}, {2077,2070,1535 ,726,1792,1792 ,0,0,0}, - {2070,2078,1532 ,1792,726,726 ,0,0,0}, {1503,1773,1770 ,726,726,726 ,0,0,0}, - {1774,1773,1498 ,1792,726,1792 ,0,0,0}, {1774,1505,1832 ,1792,1792,726 ,0,0,0}, - {1830,1496,1829 ,726,726,726 ,0,0,0}, {1827,1495,1824 ,726,1792,726 ,0,0,0}, - {1823,1492,1821 ,726,726,726 ,0,0,0}, {1490,1489,1817 ,1792,1792,726 ,0,0,0}, - {1489,1486,1812 ,1792,1792,1792 ,0,0,0}, {1484,1806,1809 ,1793,1793,1792 ,0,0,0}, - {1483,1803,1805 ,726,1792,1792 ,0,0,0}, {1468,1799,1800 ,726,1792,726 ,0,0,0}, - {1467,1794,1797 ,726,1792,1792 ,0,0,0}, {1470,1791,1793 ,1792,1792,1792 ,0,0,0}, - {1470,1472,1788 ,1792,1792,726 ,0,0,0}, {1474,1785,1787 ,726,1792,1792 ,0,0,0}, - {1477,1781,1782 ,1792,726,726 ,0,0,0}, {1478,1775,1779 ,726,1792,726 ,0,0,0}, - {1479,1835,1833 ,726,1792,1792 ,0,0,0}, {2048,1838,1836 ,1792,726,726 ,0,0,0}, - {2049,1842,1841 ,1792,1792,1792 ,0,0,0}, {2052,1847,1844 ,726,1792,726 ,0,0,0}, - {1266,1333,1264 ,726,1792,1792 ,0,0,0}, {1270,1273,1331 ,1792,1792,1792 ,0,0,0}, - {1850,1848,1263 ,1792,1792,726 ,0,0,0}, {1330,1272,1270 ,1792,726,1792 ,0,0,0}, - {1276,1337,1464 ,1792,726,1792 ,0,0,0}, {2079,2064,2080 ,726,1792,1792 ,0,0,0}, - {1449,2081,1447 ,726,1792,1792 ,0,0,0}, {2082,1449,1450 ,726,726,1792 ,0,0,0}, - {1444,2056,1445 ,1792,1792,726 ,0,0,0}, {1444,1447,2083 ,1792,1792,726 ,0,0,0}, - {2084,1454,2063 ,726,726,1792 ,0,0,0}, {2085,1460,1459 ,1792,1792,1792 ,0,0,0}, - {2079,2055,2054 ,726,1792,1792 ,0,0,0}, {1286,1859,1284 ,1792,1792,1792 ,0,0,0}, - {1281,1856,1854 ,1792,1792,1792 ,0,0,0}, {1290,1292,1865 ,1792,1792,726 ,0,0,0}, - {1287,1862,1860 ,726,726,726 ,0,0,0}, {1871,1293,2051 ,1792,1792,726 ,0,0,0}, - {2051,2058,1871 ,726,1792,1792 ,0,0,0}, {1868,1293,1871 ,726,1792,1792 ,0,0,0}, - {1868,1866,1292 ,726,726,1792 ,0,0,0}, {1874,1872,2058 ,726,726,1792 ,0,0,0}, - {2059,1877,2047 ,1792,726,726 ,0,0,0}, {2047,1874,2058 ,726,726,1792 ,0,0,0}, - {2059,1880,1878 ,1792,726,1792 ,0,0,0}, {2060,1440,1883 ,1792,1792,1792 ,0,0,0}, - {2059,2060,1880 ,1792,1792,726 ,0,0,0}, {1884,1883,1440 ,726,1792,1792 ,0,0,0}, - {1884,1437,1886 ,726,1792,1792 ,0,0,0}, {1889,1437,1435 ,1792,1792,1792 ,0,0,0}, - {1509,1306,1511 ,726,1792,726 ,0,0,0}, {2068,2069,1519 ,726,1792,726 ,0,0,0}, - {1300,1297,1356 ,1792,726,726 ,0,0,0}, {2066,1516,1518 ,726,726,726 ,0,0,0}, - {2067,1516,2065 ,1792,726,726 ,0,0,0}, {2072,1526,2067 ,726,1792,1792 ,0,0,0}, - {2071,1523,2072 ,1792,726,726 ,0,0,0}, {1528,1524,2073 ,1792,1792,726 ,0,0,0}, - {1528,2086,1538 ,1792,1792,726 ,0,0,0}, {2086,1528,2073 ,1792,1792,726 ,0,0,0}, - {2086,2074,1538 ,1792,726,726 ,0,0,0}, {1535,2076,2077 ,1792,726,726 ,0,0,0}, - {2076,1535,1538 ,726,1792,726 ,0,0,0}, {1534,1313,1770 ,726,726,726 ,0,0,0}, - {2078,1313,1534 ,726,726,726 ,0,0,0}, {2078,1534,1532 ,726,726,726 ,0,0,0}, - {1313,1310,1770 ,726,1793,726 ,0,0,0}, {1508,1310,1509 ,1792,1793,726 ,0,0,0}, - {1310,1508,1770 ,1793,1792,726 ,0,0,0}, {1311,1306,1509 ,726,1792,726 ,0,0,0}, - {1304,1307,1511 ,726,726,726 ,0,0,0}, {1306,1304,1511 ,1792,726,726 ,0,0,0}, - {1307,1298,1514 ,726,726,726 ,0,0,0}, {1300,1356,1514 ,1792,726,726 ,0,0,0}, - {1354,1356,1296 ,1792,726,1792 ,0,0,0}, {1318,1353,1315 ,726,1792,726 ,0,0,0}, - {1315,1354,1296 ,726,1792,1792 ,0,0,0}, {1320,1351,1318 ,726,726,726 ,0,0,0}, - {1320,1321,1340 ,726,1792,1792 ,0,0,0}, {1320,1339,1351 ,726,726,726 ,0,0,0}, - {1343,1324,1344 ,726,726,1792 ,0,0,0}, {1340,1321,1343 ,1792,1792,726 ,0,0,0}, - {1346,1326,1327 ,726,1793,726 ,0,0,0}, {1344,1324,1326 ,1792,726,1793 ,0,0,0}, - {1460,2087,1462 ,1792,726,1792 ,0,0,0}, {2051,2050,2055 ,726,726,1792 ,0,0,0}, - {1464,1462,1279 ,1792,1792,1792 ,0,0,0}, {2079,2080,2055 ,726,1792,1792 ,0,0,0}, - {2064,2063,2080 ,1792,1792,1792 ,0,0,0}, {2084,2063,2062 ,726,1792,1792 ,0,0,0}, - {2053,1454,2084 ,1792,726,726 ,0,0,0}, {2082,1450,2053 ,726,1792,1792 ,0,0,0}, - {2081,1449,2082 ,1792,726,726 ,0,0,0}, {2083,1447,2081 ,726,1792,1792 ,0,0,0}, - {2056,1444,2083 ,1792,1792,726 ,0,0,0}, {1443,1445,2057 ,1792,726,1792 ,0,0,0}, - {2061,1455,2057 ,726,1792,1792 ,0,0,0}, {2085,1459,2061 ,1792,1792,726 ,0,0,0}, - {2087,1460,2085 ,726,1792,1792 ,0,0,0}, {1279,1462,2087 ,1792,1792,726 ,0,0,0}, - {1276,1464,1279 ,1792,1792,1792 ,0,0,0}, {1277,1337,1276 ,1792,726,1792 ,0,0,0}, - {1330,1277,1272 ,1792,1792,726 ,0,0,0}, {1277,1330,1337 ,1792,1792,726 ,0,0,0}, - {1270,1331,1330 ,1792,1792,1792 ,0,0,0}, {1335,1333,1266 ,1792,1792,726 ,0,0,0}, - {1850,1263,1262 ,1792,726,726 ,0,0,0}, {1263,1848,1335 ,726,1792,1792 ,0,0,0}, - {1281,1854,1262 ,1792,1792,726 ,0,0,0}, {1853,1850,1262 ,726,1792,726 ,0,0,0}, - {1284,1856,1281 ,1792,1792,1792 ,0,0,0}, {1286,1860,1859 ,1792,726,1792 ,0,0,0}, - {1284,1859,1856 ,1792,1792,1792 ,0,0,0}, {1287,1290,1862 ,726,1792,726 ,0,0,0}, - {1286,1287,1860 ,1792,726,726 ,0,0,0}, {1865,1292,1866 ,726,1792,726 ,0,0,0}, - {1862,1290,1865 ,726,1792,726 ,0,0,0}, {1868,1292,1293 ,726,1792,1792 ,0,0,0}, - {1616,1734,1732 ,730,730,730 ,0,0,0}, {1398,1894,1359 ,730,730,730 ,0,0,0}, - {1469,1802,1801 ,730,730,730 ,0,0,0}, {1728,1611,1729 ,730,730,730 ,0,0,0}, - {1602,1605,1720 ,730,730,730 ,0,0,0}, {1607,1608,1727 ,730,730,730 ,0,0,0}, - {1593,1595,1712 ,730,730,730 ,0,0,0}, {1596,1599,1716 ,730,730,730 ,0,0,0}, - {1697,1700,1551 ,730,730,730 ,0,0,0}, {1587,1589,1707 ,730,730,730 ,0,0,0}, - {1896,1360,1359 ,730,730,730 ,0,0,0}, {1741,1558,1739 ,730,730,730 ,0,0,0}, - {1368,1936,1939 ,730,730,730 ,0,0,0}, {1942,1945,1374 ,730,730,730 ,0,0,0}, - {1930,1933,1362 ,730,730,730 ,0,0,0}, {1936,1368,1366 ,730,730,730 ,0,0,0}, - {1399,1892,1891 ,730,730,730 ,0,0,0}, {1360,1896,1930 ,730,730,730 ,0,0,0}, - {1404,1405,1901 ,730,730,730 ,0,0,0}, {1974,1657,1976 ,730,730,730 ,0,0,0}, - {1902,1408,1905 ,730,730,730 ,0,0,0}, {1405,1902,1901 ,730,730,730 ,0,0,0}, - {1417,1916,1416 ,730,730,730 ,0,0,0}, {1410,1906,1905 ,730,730,730 ,0,0,0}, - {1923,1922,1428 ,730,730,730 ,0,0,0}, {1921,1920,1423 ,730,730,730 ,0,0,0}, - {1429,1432,1926 ,730,730,730 ,0,0,0}, {2088,1840,1843 ,730,730,730 ,0,0,0}, - {1475,1473,1784 ,730,730,730 ,0,0,0}, {1278,1338,1336 ,730,730,730 ,0,0,0}, - {1288,1863,1864 ,730,730,730 ,0,0,0}, {1438,1888,1890 ,730,730,730 ,0,0,0}, - {1928,1436,1890 ,730,730,730 ,0,0,0}, {2089,2090,1882 ,730,730,730 ,0,0,0}, - {1291,1289,1867 ,730,730,730 ,0,0,0}, {2089,1882,1885 ,730,730,730 ,0,0,0}, - {1879,1881,2090 ,730,730,730 ,0,0,0}, {1441,2091,1442 ,730,730,730 ,0,0,0}, - {1890,1436,1438 ,730,730,730 ,0,0,0}, {1802,1469,1482 ,730,730,730 ,0,0,0}, - {2092,1481,1839 ,730,730,730 ,0,0,0}, {1780,1778,1476 ,730,730,730 ,0,0,0}, - {1288,1864,1289 ,730,730,730 ,0,0,0}, {1334,1849,1851 ,730,730,730 ,0,0,0}, - {1432,1434,1928 ,730,730,730 ,0,0,0}, {1332,1265,1329 ,730,730,730 ,0,0,0}, - {1268,1269,1329 ,730,730,730 ,0,0,0}, {2093,1457,1458 ,730,730,730 ,0,0,0}, - {2089,1885,1439 ,730,730,730 ,0,0,0}, {1438,1439,1887 ,730,730,730 ,0,0,0}, - {2094,1879,2090 ,730,730,730 ,0,0,0}, {1875,1876,2095 ,730,730,730 ,0,0,0}, - {2095,1876,2094 ,730,730,730 ,0,0,0}, {2094,1876,1879 ,730,730,730 ,0,0,0}, - {2090,1881,1882 ,730,730,730 ,0,0,0}, {2096,2097,2098 ,730,730,730 ,0,0,0}, - {1347,1348,1325 ,730,730,730 ,0,0,0}, {1885,1887,1439 ,730,730,730 ,0,0,0}, - {1869,1291,1867 ,730,730,730 ,0,0,0}, {1888,1438,1887 ,730,730,730 ,0,0,0}, - {2099,1453,1451 ,730,730,730 ,0,0,0}, {1458,1461,2100 ,730,730,730 ,0,0,0}, - {1463,1338,1275 ,730,730,730 ,0,0,0}, {1461,1463,1274 ,730,730,730 ,0,0,0}, - {1928,1434,1436 ,730,730,730 ,0,0,0}, {1442,2101,1446 ,730,730,730 ,0,0,0}, - {2102,1456,1457 ,730,730,730 ,0,0,0}, {1334,1851,1261 ,730,730,730 ,0,0,0}, - {1446,2103,1448 ,730,730,730 ,0,0,0}, {1285,1863,1288 ,730,730,730 ,0,0,0}, - {1863,1285,1861 ,730,730,730 ,0,0,0}, {1776,1480,1777 ,730,730,730 ,0,0,0}, - {1792,1466,1795 ,730,730,730 ,0,0,0}, {1789,1786,1471 ,730,730,730 ,0,0,0}, - {1810,1808,1485 ,730,730,730 ,0,0,0}, {1798,1465,1469 ,730,730,730 ,0,0,0}, - {1810,1485,1487 ,730,730,730 ,0,0,0}, {1428,1429,1923 ,730,730,730 ,0,0,0}, - {1432,1928,1926 ,730,730,730 ,0,0,0}, {1926,1923,1429 ,730,730,730 ,0,0,0}, - {1942,1372,1941 ,730,730,730 ,0,0,0}, {1921,1423,1426 ,730,730,730 ,0,0,0}, - {1922,1426,1428 ,730,730,730 ,0,0,0}, {1422,1423,1920 ,730,730,730 ,0,0,0}, - {1921,1426,1922 ,730,730,730 ,0,0,0}, {1422,1914,1420 ,730,730,730 ,0,0,0}, - {1913,1417,1420 ,730,730,730 ,0,0,0}, {1920,1914,1422 ,730,730,730 ,0,0,0}, - {1417,1913,1916 ,730,730,730 ,0,0,0}, {1420,1914,1913 ,730,730,730 ,0,0,0}, - {1751,1570,1569 ,730,730,730 ,0,0,0}, {1910,1414,1416 ,730,730,730 ,0,0,0}, - {1414,1909,1411 ,730,730,730 ,0,0,0}, {1909,1906,1411 ,730,730,730 ,0,0,0}, - {1906,1410,1411 ,730,730,730 ,0,0,0}, {1905,1408,1410 ,730,730,730 ,0,0,0}, - {1902,1405,1408 ,730,730,730 ,0,0,0}, {1402,1899,1892 ,730,730,730 ,0,0,0}, - {1404,1901,1899 ,730,730,730 ,0,0,0}, {1399,1891,1398 ,730,730,730 ,0,0,0}, - {1894,1896,1359 ,730,730,730 ,0,0,0}, {1362,1933,1365 ,730,730,730 ,0,0,0}, - {1366,1365,1935 ,730,730,730 ,0,0,0}, {1368,1939,1371 ,730,730,730 ,0,0,0}, - {1366,1935,1936 ,730,730,730 ,0,0,0}, {1371,1941,1372 ,730,730,730 ,0,0,0}, - {1371,1939,1941 ,730,730,730 ,0,0,0}, {1377,1945,1947 ,730,730,730 ,0,0,0}, - {1374,1372,1942 ,730,730,730 ,0,0,0}, {1378,1377,1947 ,730,730,730 ,0,0,0}, - {1378,1947,1948 ,730,730,730 ,0,0,0}, {1380,1948,1951 ,730,730,730 ,0,0,0}, - {1378,1948,1380 ,730,730,730 ,0,0,0}, {1951,1383,1380 ,730,730,730 ,0,0,0}, - {1951,1953,1383 ,730,730,730 ,0,0,0}, {1383,1953,1384 ,730,730,730 ,0,0,0}, - {1365,1933,1935 ,730,730,730 ,0,0,0}, {1386,1384,1954 ,730,730,730 ,0,0,0}, - {1384,1953,1954 ,730,730,730 ,0,0,0}, {1957,1389,1386 ,730,730,730 ,0,0,0}, - {1957,1386,1954 ,730,730,730 ,0,0,0}, {1389,1959,1390 ,730,730,730 ,0,0,0}, - {1390,1960,1392 ,730,730,730 ,0,0,0}, {1960,1390,1959 ,730,730,730 ,0,0,0}, - {1960,1963,1395 ,730,730,730 ,0,0,0}, {1687,2006,2004 ,730,730,730 ,0,0,0}, - {1396,1395,1963 ,730,730,730 ,0,0,0}, {1966,1970,1690 ,730,730,730 ,0,0,0}, - {1689,2009,2006 ,730,730,730 ,0,0,0}, {1362,1360,1930 ,730,730,730 ,0,0,0}, - {1623,2010,1621 ,730,730,730 ,0,0,0}, {2009,1689,1690 ,730,730,730 ,0,0,0}, - {1891,1894,1398 ,730,730,730 ,0,0,0}, {1745,1563,1742 ,730,730,730 ,0,0,0}, - {1566,1564,1747 ,730,730,730 ,0,0,0}, {1564,1563,1745 ,730,730,730 ,0,0,0}, - {1560,1558,1741 ,730,730,730 ,0,0,0}, {1741,1742,1560 ,730,730,730 ,0,0,0}, - {1739,1557,1736 ,730,730,730 ,0,0,0}, {1739,1558,1557 ,730,730,730 ,0,0,0}, - {1702,1736,1554 ,730,730,730 ,0,0,0}, {1557,1554,1736 ,730,730,730 ,0,0,0}, - {1552,1700,1702 ,730,730,730 ,0,0,0}, {1702,1554,1552 ,730,730,730 ,0,0,0}, - {1698,1550,1584 ,730,730,730 ,0,0,0}, {1551,1700,1552 ,730,730,730 ,0,0,0}, - {1584,1587,1705 ,730,730,730 ,0,0,0}, {1550,1698,1697 ,730,730,730 ,0,0,0}, - {1698,1584,1705 ,730,730,730 ,0,0,0}, {1711,1708,1590 ,730,730,730 ,0,0,0}, - {1632,2022,2023 ,730,730,730 ,0,0,0}, {1593,1711,1590 ,730,730,730 ,0,0,0}, - {1589,1590,1708 ,730,730,730 ,0,0,0}, {1715,1596,1716 ,730,730,730 ,0,0,0}, - {1712,1711,1593 ,730,730,730 ,0,0,0}, {1599,1722,1716 ,730,730,730 ,0,0,0}, - {1596,1715,1595 ,730,730,730 ,0,0,0}, {1602,1719,1601 ,730,730,730 ,0,0,0}, - {1601,1719,1722 ,730,730,730 ,0,0,0}, {1726,1720,1605 ,730,730,730 ,0,0,0}, - {1720,1719,1602 ,730,730,730 ,0,0,0}, {1608,1728,1727 ,730,730,730 ,0,0,0}, - {1607,1727,1726 ,730,730,730 ,0,0,0}, {1732,1613,1614 ,730,730,730 ,0,0,0}, - {1613,1729,1611 ,730,730,730 ,0,0,0}, {1732,1614,1616 ,730,730,730 ,0,0,0}, - {1963,1965,1396 ,730,730,730 ,0,0,0}, {1966,1396,1965 ,730,730,730 ,0,0,0}, - {1684,2003,1683 ,730,730,730 ,0,0,0}, {1395,1392,1960 ,730,730,730 ,0,0,0}, - {1689,2006,1687 ,730,730,730 ,0,0,0}, {1389,1957,1959 ,730,730,730 ,0,0,0}, - {1681,1683,2000 ,730,730,730 ,0,0,0}, {2004,2003,1684 ,730,730,730 ,0,0,0}, - {1678,1681,1998 ,730,730,730 ,0,0,0}, {2003,2000,1683 ,730,730,730 ,0,0,0}, - {1997,1677,1678 ,730,730,730 ,0,0,0}, {1994,1675,1677 ,730,730,730 ,0,0,0}, - {1998,1681,2000 ,730,730,730 ,0,0,0}, {1992,1672,1675 ,730,730,730 ,0,0,0}, - {1997,1678,1998 ,730,730,730 ,0,0,0}, {1374,1945,1377 ,730,730,730 ,0,0,0}, - {1997,1994,1677 ,730,730,730 ,0,0,0}, {1991,1988,1671 ,730,730,730 ,0,0,0}, - {1994,1992,1675 ,730,730,730 ,0,0,0}, {1988,1986,1669 ,730,730,730 ,0,0,0}, - {1986,1985,1666 ,730,730,730 ,0,0,0}, {1985,1982,1665 ,730,730,730 ,0,0,0}, - {1672,1991,1671 ,730,730,730 ,0,0,0}, {1982,1980,1663 ,730,730,730 ,0,0,0}, - {1671,1988,1669 ,730,730,730 ,0,0,0}, {1979,1660,1980 ,730,730,730 ,0,0,0}, - {1669,1986,1666 ,730,730,730 ,0,0,0}, {1659,1979,1976 ,730,730,730 ,0,0,0}, - {1666,1985,1665 ,730,730,730 ,0,0,0}, {1657,1974,1622 ,730,730,730 ,0,0,0}, - {1665,1982,1663 ,730,730,730 ,0,0,0}, {1623,1622,1973 ,730,730,730 ,0,0,0}, - {1980,1660,1663 ,730,730,730 ,0,0,0}, {1621,2011,1625 ,730,730,730 ,0,0,0}, - {1659,1660,1979 ,730,730,730 ,0,0,0}, {1748,1566,1747 ,730,730,730 ,0,0,0}, - {1404,1899,1402 ,730,730,730 ,0,0,0}, {1402,1892,1399 ,730,730,730 ,0,0,0}, - {1622,1974,1973 ,730,730,730 ,0,0,0}, {1748,1751,1569 ,730,730,730 ,0,0,0}, - {1623,1973,2010 ,730,730,730 ,0,0,0}, {1751,1753,1570 ,730,730,730 ,0,0,0}, - {1621,2010,2011 ,730,730,730 ,0,0,0}, {1753,1754,1572 ,730,730,730 ,0,0,0}, - {1754,1757,1575 ,730,730,730 ,0,0,0}, {1745,1747,1564 ,730,730,730 ,0,0,0}, - {1757,1759,1576 ,730,730,730 ,0,0,0}, {1569,1566,1748 ,730,730,730 ,0,0,0}, - {1759,1760,1578 ,730,730,730 ,0,0,0}, {1416,1916,1910 ,730,730,730 ,0,0,0}, - {1414,1910,1909 ,730,730,730 ,0,0,0}, {1753,1572,1570 ,730,730,730 ,0,0,0}, - {1545,1763,1765 ,730,730,730 ,0,0,0}, {1754,1575,1572 ,730,730,730 ,0,0,0}, - {1537,2104,2105 ,730,730,730 ,0,0,0}, {1757,1576,1575 ,730,730,730 ,0,0,0}, - {1342,1345,1322 ,730,730,730 ,0,0,0}, {1316,1350,1317 ,730,730,730 ,0,0,0}, - {1581,1763,1546 ,730,730,730 ,0,0,0}, {1500,1769,1771 ,730,730,730 ,0,0,0}, - {1506,1504,1772 ,730,730,730 ,0,0,0}, {1319,1341,1342 ,730,730,730 ,0,0,0}, - {1494,1828,1826 ,730,730,730 ,0,0,0}, {2106,1520,2107 ,730,730,730 ,0,0,0}, - {1769,1500,1507 ,730,730,730 ,0,0,0}, {1488,1819,1816 ,730,730,730 ,0,0,0}, - {1870,1294,1291 ,730,730,730 ,0,0,0}, {2108,1873,2095 ,730,730,730 ,0,0,0}, - {1875,2095,1873 ,730,730,730 ,0,0,0}, {1873,2108,1294 ,730,730,730 ,0,0,0}, - {2109,2110,2111 ,730,730,730 ,0,0,0}, {1873,1294,1870 ,730,730,730 ,0,0,0}, - {1869,1870,1291 ,730,730,730 ,0,0,0}, {1271,1336,1269 ,730,730,730 ,0,0,0}, - {2102,2091,1456 ,730,730,730 ,0,0,0}, {2112,2113,2114 ,730,730,730 ,0,0,0}, - {1776,1834,1480 ,730,730,730 ,0,0,0}, {1466,1790,1471 ,730,730,730 ,0,0,0}, - {1807,1482,1485 ,730,730,730 ,0,0,0}, {1820,1491,1493 ,730,730,730 ,0,0,0}, - {1820,1819,1491 ,730,730,730 ,0,0,0}, {1822,1493,1825 ,730,730,730 ,0,0,0}, - {1816,1814,1488 ,730,730,730 ,0,0,0}, {1814,1813,1487 ,730,730,730 ,0,0,0}, - {1482,1807,1804 ,730,730,730 ,0,0,0}, {1798,1796,1465 ,730,730,730 ,0,0,0}, - {1465,1795,1466 ,730,730,730 ,0,0,0}, {1790,1789,1471 ,730,730,730 ,0,0,0}, - {1784,1783,1475 ,730,730,730 ,0,0,0}, {1780,1476,1475 ,730,730,730 ,0,0,0}, - {1825,1494,1826 ,730,730,730 ,0,0,0}, {1778,1777,1476 ,730,730,730 ,0,0,0}, - {1834,1481,1480 ,730,730,730 ,0,0,0}, {1837,1839,1481 ,730,730,730 ,0,0,0}, - {1845,2115,2088 ,730,730,730 ,0,0,0}, {2115,1845,1846 ,730,730,730 ,0,0,0}, - {1334,2115,1849 ,730,730,730 ,0,0,0}, {1280,1852,1855 ,730,730,730 ,0,0,0}, - {1283,1282,1858 ,730,730,730 ,0,0,0}, {1280,1261,1852 ,730,730,730 ,0,0,0}, - {1846,1849,2115 ,730,730,730 ,0,0,0}, {1843,1845,2088 ,730,730,730 ,0,0,0}, - {1839,1840,2092 ,730,730,730 ,0,0,0}, {1840,2088,2092 ,730,730,730 ,0,0,0}, - {1834,1837,1481 ,730,730,730 ,0,0,0}, {1777,1480,1476 ,730,730,730 ,0,0,0}, - {1780,1475,1783 ,730,730,730 ,0,0,0}, {1473,1471,1786 ,730,730,730 ,0,0,0}, - {1473,1786,1784 ,730,730,730 ,0,0,0}, {1466,1792,1790 ,730,730,730 ,0,0,0}, - {1465,1796,1795 ,730,730,730 ,0,0,0}, {1469,1801,1798 ,730,730,730 ,0,0,0}, - {1482,1804,1802 ,730,730,730 ,0,0,0}, {1485,1808,1807 ,730,730,730 ,0,0,0}, - {1487,1813,1810 ,730,730,730 ,0,0,0}, {1487,1488,1814 ,730,730,730 ,0,0,0}, - {1488,1491,1819 ,730,730,730 ,0,0,0}, {1493,1822,1820 ,730,730,730 ,0,0,0}, - {1493,1494,1825 ,730,730,730 ,0,0,0}, {1494,1506,1828 ,730,730,730 ,0,0,0}, - {1506,1772,1831 ,730,730,730 ,0,0,0}, {1828,1506,1831 ,730,730,730 ,0,0,0}, - {1772,1504,1501 ,730,730,730 ,0,0,0}, {1501,1497,1771 ,730,730,730 ,0,0,0}, - {1771,1772,1501 ,730,730,730 ,0,0,0}, {1323,1322,1345 ,730,730,730 ,0,0,0}, - {1500,1771,1497 ,730,730,730 ,0,0,0}, {1302,1512,1513 ,730,730,730 ,0,0,0}, - {1323,1345,1347 ,730,730,730 ,0,0,0}, {1348,1521,1328 ,730,730,730 ,0,0,0}, - {1347,1325,1323 ,730,730,730 ,0,0,0}, {1348,1328,1325 ,730,730,730 ,0,0,0}, - {1529,2116,1522 ,730,730,730 ,0,0,0}, {1525,2117,1517 ,730,730,730 ,0,0,0}, - {2118,1530,2119 ,730,730,730 ,0,0,0}, {1537,2120,2119 ,730,730,730 ,0,0,0}, - {1352,1314,1355 ,730,730,730 ,0,0,0}, {2121,1536,2122 ,730,730,730 ,0,0,0}, - {1316,1314,1352 ,730,730,730 ,0,0,0}, {1765,1540,1543 ,730,730,730 ,0,0,0}, - {1766,1539,1540 ,730,730,730 ,0,0,0}, {1305,1512,1303 ,730,730,730 ,0,0,0}, - {1513,1299,1302 ,730,730,730 ,0,0,0}, {1305,1312,1510 ,730,730,730 ,0,0,0}, - {1533,1539,1766 ,730,730,730 ,0,0,0}, {1533,1766,1769 ,730,730,730 ,0,0,0}, - {1540,1765,1766 ,730,730,730 ,0,0,0}, {1545,1765,1543 ,730,730,730 ,0,0,0}, - {1546,1763,1545 ,730,730,730 ,0,0,0}, {1760,1763,1581 ,730,730,730 ,0,0,0}, - {1578,1760,1581 ,730,730,730 ,0,0,0}, {1576,1759,1578 ,730,730,730 ,0,0,0}, - {1625,2014,1627 ,730,730,730 ,0,0,0}, {2017,1627,2016 ,730,730,730 ,0,0,0}, - {1560,1742,1563 ,730,730,730 ,0,0,0}, {2020,1628,2017 ,730,730,730 ,0,0,0}, - {2020,1631,1628 ,730,730,730 ,0,0,0}, {2022,1632,1631 ,730,730,730 ,0,0,0}, - {2014,1625,2011 ,730,730,730 ,0,0,0}, {2023,1638,1632 ,730,730,730 ,0,0,0}, - {2016,1627,2014 ,730,730,730 ,0,0,0}, {1550,1697,1551 ,730,730,730 ,0,0,0}, - {1634,1638,2026 ,730,730,730 ,0,0,0}, {1628,1627,2017 ,730,730,730 ,0,0,0}, - {1635,1634,2028 ,730,730,730 ,0,0,0}, {2020,2022,1631 ,730,730,730 ,0,0,0}, - {1641,1635,2029 ,730,730,730 ,0,0,0}, {1589,1708,1707 ,730,730,730 ,0,0,0}, - {1587,1707,1705 ,730,730,730 ,0,0,0}, {1638,2023,2026 ,730,730,730 ,0,0,0}, - {1642,1641,2032 ,730,730,730 ,0,0,0}, {1642,2032,2034 ,730,730,730 ,0,0,0}, - {2026,2028,1634 ,730,730,730 ,0,0,0}, {1595,1715,1712 ,730,730,730 ,0,0,0}, - {1635,2028,2029 ,730,730,730 ,0,0,0}, {2034,2035,1645 ,730,730,730 ,0,0,0}, - {2038,1651,2035 ,730,730,730 ,0,0,0}, {2029,2032,1641 ,730,730,730 ,0,0,0}, - {1645,1642,2034 ,730,730,730 ,0,0,0}, {2040,1649,2038 ,730,730,730 ,0,0,0}, - {1599,1601,1722 ,730,730,730 ,0,0,0}, {2041,1647,2040 ,730,730,730 ,0,0,0}, - {1651,1645,2035 ,730,730,730 ,0,0,0}, {1605,1607,1726 ,730,730,730 ,0,0,0}, - {2038,1649,1651 ,730,730,730 ,0,0,0}, {2041,2044,1652 ,730,730,730 ,0,0,0}, - {1608,1611,1728 ,730,730,730 ,0,0,0}, {2040,1647,1649 ,730,730,730 ,0,0,0}, - {1654,1652,2044 ,730,730,730 ,0,0,0}, {1654,2046,1617 ,730,730,730 ,0,0,0}, - {1729,1613,1732 ,730,730,730 ,0,0,0}, {1654,2044,2046 ,730,730,730 ,0,0,0}, - {1696,1616,1617 ,730,730,730 ,0,0,0}, {1734,1616,1696 ,730,730,730 ,0,0,0}, - {2046,1694,1617 ,730,730,730 ,0,0,0}, {1696,1617,1694 ,730,730,730 ,0,0,0}, - {2041,1652,1647 ,730,730,730 ,0,0,0}, {1657,1659,1976 ,730,730,730 ,0,0,0}, - {1991,1672,1992 ,730,730,730 ,0,0,0}, {2004,1684,1687 ,730,730,730 ,0,0,0}, - {1966,1690,1396 ,730,730,730 ,0,0,0}, {1970,2009,1690 ,730,730,730 ,0,0,0}, - {1317,1349,1319 ,730,730,730 ,0,0,0}, {2123,1525,1527 ,730,730,730 ,0,0,0}, - {1529,2118,2116 ,730,730,730 ,0,0,0}, {1319,1342,1322 ,730,730,730 ,0,0,0}, - {1319,1349,1341 ,730,730,730 ,0,0,0}, {1317,1350,1349 ,730,730,730 ,0,0,0}, - {1316,1352,1350 ,730,730,730 ,0,0,0}, {1531,1533,2124 ,730,730,730 ,0,0,0}, - {1295,1301,1355 ,730,730,730 ,0,0,0}, {1295,1355,1314 ,730,730,730 ,0,0,0}, - {1513,1301,1299 ,730,730,730 ,0,0,0}, {1301,1513,1355 ,730,730,730 ,0,0,0}, - {1308,1533,1769 ,730,730,730 ,0,0,0}, {1305,1510,1512 ,730,730,730 ,0,0,0}, - {1302,1303,1512 ,730,730,730 ,0,0,0}, {1309,1510,1312 ,730,730,730 ,0,0,0}, - {1769,1309,1308 ,730,730,730 ,0,0,0}, {1507,1309,1769 ,730,730,730 ,0,0,0}, - {1309,1507,1510 ,730,730,730 ,0,0,0}, {1308,2124,1533 ,730,730,730 ,0,0,0}, - {1531,2122,1536 ,730,730,730 ,0,0,0}, {2124,2122,1531 ,730,730,730 ,0,0,0}, - {1536,2104,1537 ,730,730,730 ,0,0,0}, {2121,2104,1536 ,730,730,730 ,0,0,0}, - {2105,2120,1537 ,730,730,730 ,0,0,0}, {2119,1530,1537 ,730,730,730 ,0,0,0}, - {2118,1529,1530 ,730,730,730 ,0,0,0}, {2125,1522,2116 ,730,730,730 ,0,0,0}, - {1527,2125,2123 ,730,730,730 ,0,0,0}, {2125,1527,1522 ,730,730,730 ,0,0,0}, - {2123,2126,1525 ,730,730,730 ,0,0,0}, {2117,2107,1517 ,730,730,730 ,0,0,0}, - {2126,2117,1525 ,730,730,730 ,0,0,0}, {1520,2106,1521 ,730,730,730 ,0,0,0}, - {1517,2107,1520 ,730,730,730 ,0,0,0}, {1328,1521,2106 ,730,730,730 ,0,0,0}, - {1332,1334,1267 ,730,730,730 ,0,0,0}, {1864,1867,1289 ,730,730,730 ,0,0,0}, - {1451,1448,2127 ,730,730,730 ,0,0,0}, {1283,1858,1861 ,730,730,730 ,0,0,0}, - {1861,1285,1283 ,730,730,730 ,0,0,0}, {1857,1858,1282 ,730,730,730 ,0,0,0}, - {1857,1280,1855 ,730,730,730 ,0,0,0}, {1280,1857,1282 ,730,730,730 ,0,0,0}, - {1852,1261,1851 ,730,730,730 ,0,0,0}, {1261,1267,1334 ,730,730,730 ,0,0,0}, - {1267,1265,1332 ,730,730,730 ,0,0,0}, {1265,1268,1329 ,730,730,730 ,0,0,0}, - {1269,1336,1329 ,730,730,730 ,0,0,0}, {1278,1336,1271 ,730,730,730 ,0,0,0}, - {1275,1338,1278 ,730,730,730 ,0,0,0}, {1274,1463,1275 ,730,730,730 ,0,0,0}, - {2100,1461,1274 ,730,730,730 ,0,0,0}, {2093,1458,2100 ,730,730,730 ,0,0,0}, - {2102,1457,2093 ,730,730,730 ,0,0,0}, {1441,1456,2091 ,730,730,730 ,0,0,0}, - {2101,1442,2091 ,730,730,730 ,0,0,0}, {2103,1446,2101 ,730,730,730 ,0,0,0}, - {2127,1448,2103 ,730,730,730 ,0,0,0}, {2128,1453,2099 ,730,730,730 ,0,0,0}, - {2099,1451,2127 ,730,730,730 ,0,0,0}, {1452,2128,2114 ,730,730,730 ,0,0,0}, - {2128,1452,1453 ,730,730,730 ,0,0,0}, {2112,2097,2113 ,730,730,730 ,0,0,0}, - {1452,2114,2113 ,730,730,730 ,0,0,0}, {2096,2098,2109 ,730,730,730 ,0,0,0}, - {2113,2097,2096 ,730,730,730 ,0,0,0}, {2109,2111,2108 ,730,730,730 ,0,0,0}, - {2109,2098,2110 ,730,730,730 ,0,0,0}, {1294,2108,2111 ,730,730,730 ,0,0,0}, - {2108,2095,2058 ,1794,1795,1796 ,0,0,0}, {2109,2051,2055 ,1797,1798,1799 ,0,0,0}, - {2051,2108,2058 ,1798,1794,1796 ,0,0,0}, {2108,2051,2109 ,1794,1798,1797 ,0,0,0}, - {2113,2080,2063 ,1800,1801,1802 ,0,0,0}, {2109,2055,2096 ,1797,1799,1803 ,0,0,0}, - {2113,2096,2080 ,1800,1803,1801 ,0,0,0}, {2063,1454,1452 ,1802,1217,1217 ,0,0,0}, - {2063,1452,2113 ,1802,1217,1800 ,0,0,0}, {2080,2096,2055 ,1801,1803,1799 ,0,0,0}, - {2095,2047,2058 ,1795,1804,1796 ,0,0,0}, {2059,2047,2094 ,1805,1804,1806 ,0,0,0}, - {2095,2094,2047 ,1795,1806,1804 ,0,0,0}, {2090,2060,2059 ,1807,1808,1805 ,0,0,0}, - {2059,2094,2090 ,1805,1806,1807 ,0,0,0}, {2060,2089,1440 ,1808,1809,1206 ,0,0,0}, - {2089,2060,2090 ,1809,1808,1807 ,0,0,0}, {2089,1439,1440 ,1809,1206,1206 ,0,0,0}, - {1335,2052,2115 ,1112,1810,1810 ,0,0,0}, {2048,1481,2092 ,1811,1243,1812 ,0,0,0}, - {2092,2088,2049 ,1812,1813,1813 ,0,0,0}, {1479,1481,2048 ,1243,1243,1811 ,0,0,0}, - {2052,2088,2115 ,1810,1813,1810 ,0,0,0}, {2088,2052,2049 ,1813,1810,1813 ,0,0,0}, - {2048,2092,2049 ,1811,1812,1813 ,0,0,0}, {2115,1334,1335 ,1810,1112,1112 ,0,0,0}, - {1313,2078,2124 ,1814,1815,1816 ,0,0,0}, {2076,2104,2077 ,1817,1818,1819 ,0,0,0}, - {2121,2122,2070 ,1820,1821,1822 ,0,0,0}, {2119,2086,2118 ,1823,1824,82 ,0,0,0}, - {2075,2074,2120 ,1825,1826,1827 ,0,0,0}, {2072,2123,2125 ,1828,1829,1830 ,0,0,0}, - {2071,2116,2073 ,1831,1832,1833 ,0,0,0}, {2065,2117,2126 ,1834,1835,1836 ,0,0,0}, - {2126,2123,2067 ,1836,1829,1837 ,0,0,0}, {2117,2066,2107 ,1835,1838,1839 ,0,0,0}, - {2066,2117,2065 ,1838,1835,1834 ,0,0,0}, {2106,2107,2069 ,1840,1839,1841 ,0,0,0}, - {2066,2069,2107 ,1838,1841,1839 ,0,0,0}, {2068,1328,2106 ,1842,324,1840 ,0,0,0}, - {2106,2069,2068 ,1840,1841,1842 ,0,0,0}, {1327,1328,2068 ,1843,324,1842 ,0,0,0}, - {2071,2072,2125 ,1831,1828,1830 ,0,0,0}, {2123,2072,2067 ,1829,1828,1837 ,0,0,0}, - {2065,2126,2067 ,1834,1836,1837 ,0,0,0}, {2071,2125,2116 ,1831,1830,1832 ,0,0,0}, - {2073,2116,2118 ,1833,1832,82 ,0,0,0}, {2086,2119,2074 ,1824,1823,1826 ,0,0,0}, - {2086,2073,2118 ,1824,1833,82 ,0,0,0}, {2075,2120,2105 ,1825,1827,1844 ,0,0,0}, - {2120,2074,2119 ,1827,1826,1823 ,0,0,0}, {2105,2104,2076 ,1844,1818,1817 ,0,0,0}, - {2105,2076,2075 ,1844,1817,1825 ,0,0,0}, {2070,2077,2121 ,1822,1819,1820 ,0,0,0}, - {2104,2121,2077 ,1818,1820,1819 ,0,0,0}, {2122,2078,2070 ,1821,1815,1822 ,0,0,0}, - {1313,2124,1308 ,1814,1816,1845 ,0,0,0}, {2078,2122,2124 ,1815,1821,1816 ,0,0,0}, - {1279,2087,2100 ,1846,1847,1848 ,0,0,0}, {2057,2091,2061 ,1849,1850,1851 ,0,0,0}, - {2102,2093,2085 ,1820,1852,1822 ,0,0,0}, {2127,2081,2099 ,1853,1854,82 ,0,0,0}, - {2056,2083,2103 ,1855,1856,1857 ,0,0,0}, {2084,2112,2114 ,1858,1859,1860 ,0,0,0}, - {2053,2128,2082 ,1861,1862,82 ,0,0,0}, {2064,2098,2097 ,1863,1864,1865 ,0,0,0}, - {2097,2112,2062 ,1865,1859,1866 ,0,0,0}, {2098,2079,2110 ,1864,1867,1868 ,0,0,0}, - {2079,2098,2064 ,1867,1864,1863 ,0,0,0}, {2111,2110,2054 ,1869,1868,1870 ,0,0,0}, - {2079,2054,2110 ,1867,1870,1868 ,0,0,0}, {2050,1294,2111 ,1871,1872,1869 ,0,0,0}, - {2111,2054,2050 ,1869,1870,1871 ,0,0,0}, {1293,1294,2050 ,1873,1872,1871 ,0,0,0}, - {2053,2084,2114 ,1861,1858,1860 ,0,0,0}, {2112,2084,2062 ,1859,1858,1866 ,0,0,0}, - {2064,2097,2062 ,1863,1865,1866 ,0,0,0}, {2053,2114,2128 ,1861,1860,1862 ,0,0,0}, - {2082,2128,2099 ,82,1862,82 ,0,0,0}, {2081,2127,2083 ,1854,1853,1856 ,0,0,0}, - {2081,2082,2099 ,1854,82,82 ,0,0,0}, {2056,2103,2101 ,1855,1857,1874 ,0,0,0}, - {2103,2083,2127 ,1857,1856,1853 ,0,0,0}, {2101,2091,2057 ,1874,1850,1849 ,0,0,0}, - {2101,2057,2056 ,1874,1849,1855 ,0,0,0}, {2085,2061,2102 ,1822,1851,1820 ,0,0,0}, - {2091,2102,2061 ,1850,1820,1851 ,0,0,0}, {2093,2087,2085 ,1852,1847,1822 ,0,0,0}, - {1279,2100,1274 ,1846,1848,21 ,0,0,0}, {2087,2093,2100 ,1847,1852,1848 ,0,0,0} -// BladeProtector2.prt - , {2129,2130,2131 ,82,1824,1833 ,0,0,0}, {2132,2133,2134 ,1828,1830,1831 ,0,0,0}, - {2135,2129,2131 ,1832,82,1833 ,0,0,0}, {2134,2133,2135 ,1831,1830,1832 ,0,0,0}, - {2133,2132,2136 ,1830,1828,1829 ,0,0,0}, {2131,2134,2135 ,1833,1831,1832 ,0,0,0}, - {2137,2138,2139 ,1836,1834,1835 ,0,0,0}, {2138,2140,2139 ,1834,1838,1835 ,0,0,0}, - {2136,2141,2137 ,1829,1837,1836 ,0,0,0}, {2138,2137,2141 ,1834,1836,1837 ,0,0,0}, - {2142,2143,2144 ,324,1840,1842 ,0,0,0}, {2145,2146,2140 ,1841,1839,1838 ,0,0,0}, - {2143,2146,2145 ,1840,1839,1841 ,0,0,0}, {2143,2145,2144 ,1840,1841,1842 ,0,0,0}, - {2144,2147,2142 ,1842,1843,324 ,0,0,0}, {2139,2140,2146 ,1835,1838,1839 ,0,0,0}, - {2136,2132,2141 ,1829,1828,1837 ,0,0,0}, {2129,2148,2130 ,82,1823,1824 ,0,0,0}, - {2149,2148,2150 ,1826,1823,1827 ,0,0,0}, {2148,2149,2130 ,1823,1826,1824 ,0,0,0}, - {2151,2152,2150 ,1844,1825,1827 ,0,0,0}, {2149,2150,2152 ,1826,1827,1825 ,0,0,0}, - {2151,2153,2154 ,1844,1818,1817 ,0,0,0}, {2154,2152,2151 ,1817,1825,1844 ,0,0,0}, - {2155,2153,2156 ,1819,1818,1820 ,0,0,0}, {2153,2155,2154 ,1818,1819,1817 ,0,0,0}, - {2157,2158,2156 ,1821,1822,1820 ,0,0,0}, {2155,2156,2158 ,1819,1820,1822 ,0,0,0}, - {2157,2159,2160 ,1821,1816,1815 ,0,0,0}, {2160,2158,2157 ,1815,1822,1821 ,0,0,0}, - {2161,2159,2162 ,1814,1816,1845 ,0,0,0}, {2159,2161,2160 ,1816,1814,1815 ,0,0,0}, - {2163,2164,2165 ,82,1854,82 ,0,0,0}, {2166,2167,2168 ,1858,1860,1861 ,0,0,0}, - {2169,2163,2165 ,1862,82,82 ,0,0,0}, {2168,2167,2169 ,1861,1860,1862 ,0,0,0}, - {2167,2166,2170 ,1860,1858,1859 ,0,0,0}, {2165,2168,2169 ,82,1861,1862 ,0,0,0}, - {2171,2172,2173 ,1865,1863,1864 ,0,0,0}, {2172,2174,2173 ,1863,1867,1864 ,0,0,0}, - {2170,2175,2171 ,1859,1866,1865 ,0,0,0}, {2172,2171,2175 ,1863,1865,1866 ,0,0,0}, - {2176,2177,2178 ,1872,1869,1871 ,0,0,0}, {2179,2180,2174 ,1870,1868,1867 ,0,0,0}, - {2177,2180,2179 ,1869,1868,1870 ,0,0,0}, {2177,2179,2178 ,1869,1870,1871 ,0,0,0}, - {2178,2181,2176 ,1871,1873,1872 ,0,0,0}, {2173,2174,2180 ,1864,1867,1868 ,0,0,0}, - {2170,2166,2175 ,1859,1858,1866 ,0,0,0}, {2163,2182,2164 ,82,1853,1854 ,0,0,0}, - {2183,2182,2184 ,1856,1853,1857 ,0,0,0}, {2182,2183,2164 ,1853,1856,1854 ,0,0,0}, - {2185,2186,2184 ,1874,1855,1857 ,0,0,0}, {2183,2184,2186 ,1856,1857,1855 ,0,0,0}, - {2185,2187,2188 ,1874,1850,1849 ,0,0,0}, {2188,2186,2185 ,1849,1855,1874 ,0,0,0}, - {2189,2187,2190 ,1851,1850,1820 ,0,0,0}, {2187,2189,2188 ,1850,1851,1849 ,0,0,0}, - {2191,2192,2190 ,1852,1822,1820 ,0,0,0}, {2189,2190,2192 ,1851,1820,1822 ,0,0,0}, - {2191,2193,2194 ,1852,1848,1847 ,0,0,0}, {2194,2192,2191 ,1847,1822,1852 ,0,0,0}, - {2195,2193,2196 ,1846,1848,21 ,0,0,0}, {2193,2195,2194 ,1848,1846,1847 ,0,0,0}, - {2197,2198,2199 ,1875,1876,1875 ,0,0,0}, {2200,2201,2202 ,1877,1878,1879 ,0,0,0}, - {2200,2199,2201 ,1877,1875,1878 ,0,0,0}, {2202,2201,2203 ,1879,1878,1879 ,0,0,0}, - {2199,2200,2197 ,1875,1877,1875 ,0,0,0}, {2204,2198,2197 ,1876,1876,1875 ,0,0,0}, - {2205,2204,2206 ,1880,1876,1880 ,0,0,0}, {2204,2205,2198 ,1876,1880,1876 ,0,0,0}, - {2207,2208,2209 ,1207,1881,1207 ,0,0,0}, {2210,2208,2211 ,1881,1881,1882 ,0,0,0}, - {2208,2210,2209 ,1881,1881,1207 ,0,0,0}, {2212,2213,2211 ,1883,1882,1882 ,0,0,0}, - {2210,2211,2213 ,1881,1882,1882 ,0,0,0}, {2212,2214,2215 ,1883,1884,1883 ,0,0,0}, - {2215,2213,2212 ,1883,1882,1883 ,0,0,0}, {2214,2216,2215 ,1884,1885,1883 ,0,0,0}, - {2217,2207,2209 ,1886,1207,1207 ,0,0,0}, {2218,2219,2217 ,1887,1886,1886 ,0,0,0}, - {2207,2217,2219 ,1207,1886,1886 ,0,0,0}, {2218,2220,2221 ,1887,1888,1887 ,0,0,0}, - {2221,2219,2218 ,1887,1886,1887 ,0,0,0}, {2222,2220,2223 ,1888,1888,1889 ,0,0,0}, - {2220,2222,2221 ,1888,1888,1887 ,0,0,0}, {2222,2223,2224 ,1888,1889,1890 ,0,0,0}, - {2225,2226,2227 ,1891,1892,1893 ,0,0,0}, {2228,2229,2225 ,1894,1895,1891 ,0,0,0}, - {2225,2227,2228 ,1891,1893,1894 ,0,0,0}, {2229,2230,2231 ,1895,1896,1897 ,0,0,0}, - {2230,2229,2228 ,1896,1895,1894 ,0,0,0}, {2232,2231,2233 ,1898,1897,1899 ,0,0,0}, - {2230,2233,2231 ,1896,1899,1897 ,0,0,0}, {2234,2235,2232 ,1900,1901,1898 ,0,0,0}, - {2232,2233,2234 ,1898,1899,1900 ,0,0,0}, {2235,2236,2237 ,1901,1902,1903 ,0,0,0}, - {2236,2235,2234 ,1902,1901,1900 ,0,0,0}, {2238,2237,2239 ,1904,1903,1905 ,0,0,0}, - {2236,2239,2237 ,1902,1905,1903 ,0,0,0}, {2240,2241,2238 ,1906,1907,1904 ,0,0,0}, - {2238,2239,2240 ,1904,1905,1906 ,0,0,0}, {2241,2242,2243 ,1907,1908,1909 ,0,0,0}, - {2242,2241,2240 ,1908,1907,1906 ,0,0,0}, {2244,2243,2245 ,1910,1909,1911 ,0,0,0}, - {2242,2245,2243 ,1908,1911,1909 ,0,0,0}, {2246,2247,2244 ,1912,1913,1910 ,0,0,0}, - {2244,2245,2246 ,1910,1911,1912 ,0,0,0}, {2247,2248,2249 ,1913,1914,1915 ,0,0,0}, - {2248,2247,2246 ,1914,1913,1912 ,0,0,0}, {2250,2249,2251 ,1916,1915,1917 ,0,0,0}, - {2248,2251,2249 ,1914,1917,1915 ,0,0,0}, {2252,2253,2250 ,1918,1919,1916 ,0,0,0}, - {2250,2251,2252 ,1916,1917,1918 ,0,0,0}, {2253,2254,2255 ,1919,1920,1921 ,0,0,0}, - {2254,2253,2252 ,1920,1919,1918 ,0,0,0}, {2256,2255,2257 ,1922,1921,1923 ,0,0,0}, - {2254,2257,2255 ,1920,1923,1921 ,0,0,0}, {2258,2259,2256 ,1924,1925,1922 ,0,0,0}, - {2256,2257,2258 ,1922,1923,1924 ,0,0,0}, {2259,2260,2261 ,1925,1926,1927 ,0,0,0}, - {2260,2259,2258 ,1926,1925,1924 ,0,0,0}, {2262,2261,2263 ,1928,1927,1929 ,0,0,0}, - {2260,2263,2261 ,1926,1929,1927 ,0,0,0}, {2264,2265,2262 ,1930,1930,1928 ,0,0,0}, - {2262,2263,2264 ,1928,1929,1930 ,0,0,0}, {2227,2226,2266 ,1893,1892,1931 ,0,0,0}, - {2267,2266,2268 ,1932,1931,1933 ,0,0,0}, {2226,2268,2266 ,1892,1933,1931 ,0,0,0}, - {2269,2270,2267 ,1934,1935,1932 ,0,0,0}, {2267,2268,2269 ,1932,1933,1934 ,0,0,0}, - {2270,2271,2272 ,1935,1936,1937 ,0,0,0}, {2271,2270,2269 ,1936,1935,1934 ,0,0,0}, - {2273,2272,2274 ,1938,1937,1939 ,0,0,0}, {2271,2274,2272 ,1936,1939,1937 ,0,0,0}, - {2275,2276,2273 ,1940,1941,1938 ,0,0,0}, {2273,2274,2275 ,1938,1939,1940 ,0,0,0}, - {2276,2277,2278 ,1941,1942,1943 ,0,0,0}, {2277,2276,2275 ,1942,1941,1940 ,0,0,0}, - {2279,2278,2280 ,1944,1943,1945 ,0,0,0}, {2277,2280,2278 ,1942,1945,1943 ,0,0,0}, - {2281,2282,2279 ,1946,1947,1944 ,0,0,0}, {2279,2280,2281 ,1944,1945,1946 ,0,0,0}, - {2282,2283,2284 ,1947,1948,1949 ,0,0,0}, {2283,2282,2281 ,1948,1947,1946 ,0,0,0}, - {2285,2284,2286 ,1950,1949,1951 ,0,0,0}, {2283,2286,2284 ,1948,1951,1949 ,0,0,0}, - {2287,2288,2285 ,1952,1953,1950 ,0,0,0}, {2285,2286,2287 ,1950,1951,1952 ,0,0,0}, - {2288,2289,2290 ,1953,1954,1955 ,0,0,0}, {2289,2288,2287 ,1954,1953,1952 ,0,0,0}, - {2291,2290,2292 ,1956,1955,1957 ,0,0,0}, {2289,2292,2290 ,1954,1957,1955 ,0,0,0}, - {2293,2294,2291 ,1958,1959,1956 ,0,0,0}, {2291,2292,2293 ,1956,1957,1958 ,0,0,0}, - {2294,2295,2296 ,1959,1960,1961 ,0,0,0}, {2295,2294,2293 ,1960,1959,1958 ,0,0,0}, - {2297,2296,2298 ,1962,1961,1963 ,0,0,0}, {2295,2298,2296 ,1960,1963,1961 ,0,0,0}, - {2299,2300,2297 ,1964,1965,1962 ,0,0,0}, {2297,2298,2299 ,1962,1963,1964 ,0,0,0}, - {2300,2301,2302 ,1965,1966,1967 ,0,0,0}, {2301,2300,2299 ,1966,1965,1964 ,0,0,0}, - {2301,2303,2302 ,1966,1968,1967 ,0,0,0}, {2302,2303,2304 ,1967,1968,1969 ,0,0,0}, - {2305,2306,2303 ,1970,1970,1971 ,0,0,0}, {2305,2307,2306 ,1970,1972,1970 ,0,0,0}, - {2307,2305,2308 ,1972,1970,1972 ,0,0,0}, {2304,2303,2306 ,21,1971,1970 ,0,0,0}, - {2309,2310,2311 ,1114,1973,1114 ,0,0,0}, {2312,2313,2310 ,1974,1975,1973 ,0,0,0}, - {2310,2313,2311 ,1973,1975,1114 ,0,0,0}, {2314,2315,2312 ,1976,1977,1974 ,0,0,0}, - {2312,2310,2314 ,1974,1973,1976 ,0,0,0}, {2315,2316,2317 ,1977,1978,1979 ,0,0,0}, - {2316,2315,2314 ,1978,1977,1976 ,0,0,0}, {2318,2317,2319 ,1980,1979,1981 ,0,0,0}, - {2316,2319,2317 ,1978,1981,1979 ,0,0,0}, {2320,2318,2321 ,1982,1980,1983 ,0,0,0}, - {2318,2319,2321 ,1980,1981,1983 ,0,0,0}, {2322,2318,2320 ,1982,1980,1982 ,0,0,0}, - {2323,2309,2311 ,1984,1114,1114 ,0,0,0}, {2324,2323,2325 ,1985,1984,1986 ,0,0,0}, - {2324,2309,2323 ,1985,1114,1984 ,0,0,0}, {2326,2325,2327 ,1987,1986,1988 ,0,0,0}, - {2323,2327,2325 ,1984,1988,1986 ,0,0,0}, {2328,2329,2326 ,1989,1990,1987 ,0,0,0}, - {2326,2327,2328 ,1987,1988,1989 ,0,0,0}, {2329,2330,2331 ,1990,1991,1992 ,0,0,0}, - {2330,2329,2328 ,1991,1990,1989 ,0,0,0}, {2331,2332,2205 ,1992,1993,1880 ,0,0,0}, - {2330,2332,2331 ,1991,1993,1992 ,0,0,0}, {2331,2205,2206 ,1992,1880,1880 ,0,0,0}, - {2333,2334,2335 ,1994,1995,1996 ,0,0,0}, {2333,2336,2337 ,1994,1997,1998 ,0,0,0}, - {2335,2334,2338 ,1996,1995,1999 ,0,0,0}, {2338,2334,2339 ,1999,1995,2000 ,0,0,0}, - {2338,2339,2340 ,1999,2000,2001 ,0,0,0}, {2341,2340,2339 ,2002,2001,2000 ,0,0,0}, - {2340,2341,2342 ,2001,2002,2003 ,0,0,0}, {2343,2342,2341 ,2004,2003,2002 ,0,0,0}, - {2343,2344,2345 ,2004,2005,2006 ,0,0,0}, {2342,2343,2345 ,2003,2004,2006 ,0,0,0}, - {2335,2336,2333 ,1996,1997,1994 ,0,0,0}, {2345,2344,2346 ,2006,2005,2007 ,0,0,0}, - {2347,2346,2348 ,2008,2007,2009 ,0,0,0}, {2348,2346,2344 ,2009,2007,2005 ,0,0,0}, - {2347,2348,2349 ,2008,2009,2008 ,0,0,0}, {2350,2337,2351 ,2010,1998,2011 ,0,0,0}, - {2336,2351,2337 ,1997,2011,1998 ,0,0,0}, {2352,2353,2350 ,2012,2013,2010 ,0,0,0}, - {2350,2351,2352 ,2010,2011,2012 ,0,0,0}, {2353,2354,2355 ,2013,2014,2015 ,0,0,0}, - {2354,2353,2352 ,2014,2013,2012 ,0,0,0}, {2356,2355,2357 ,2016,2015,2017 ,0,0,0}, - {2354,2357,2355 ,2014,2017,2015 ,0,0,0}, {2358,2359,2356 ,2018,2019,2016 ,0,0,0}, - {2356,2357,2358 ,2016,2017,2018 ,0,0,0}, {2359,2360,2361 ,2019,2020,2021 ,0,0,0}, - {2360,2359,2358 ,2020,2019,2018 ,0,0,0}, {2362,2361,2363 ,2022,2021,2023 ,0,0,0}, - {2360,2363,2361 ,2020,2023,2021 ,0,0,0}, {2362,2363,2364 ,2022,2023,2022 ,0,0,0}, - {2365,2366,2367 ,2024,2025,2024 ,0,0,0}, {2367,2368,2365 ,2024,2026,2024 ,0,0,0}, - {2369,2370,2366 ,2025,2027,2025 ,0,0,0}, {2371,2368,2367 ,2026,2026,2024 ,0,0,0}, - {2365,2369,2366 ,2024,2025,2025 ,0,0,0}, {2369,2372,2370 ,2025,2027,2027 ,0,0,0}, - {2373,2372,2374 ,2028,2027,2028 ,0,0,0}, {2374,2362,2364 ,2028,2022,2022 ,0,0,0}, - {2373,2370,2372 ,2028,2027,2027 ,0,0,0}, {2374,2364,2373 ,2028,2022,2028 ,0,0,0}, - {2375,2371,2376 ,2029,2026,2029 ,0,0,0}, {2371,2375,2368 ,2026,2029,2026 ,0,0,0}, - {2377,2378,2376 ,2030,2030,2029 ,0,0,0}, {2375,2376,2378 ,2029,2029,2030 ,0,0,0}, - {2377,2379,2380 ,2030,2031,2031 ,0,0,0}, {2380,2378,2377 ,2031,2030,2030 ,0,0,0}, - {2381,2379,2382 ,2032,2031,2032 ,0,0,0}, {2379,2381,2380 ,2031,2032,2031 ,0,0,0}, - {2381,2382,2223 ,2032,2032,2033 ,0,0,0}, {2223,2382,2224 ,2033,2032,2034 ,0,0,0}, - {2383,2216,2214 ,2035,2036,2037 ,0,0,0}, {2384,2385,2386 ,2038,2039,2039 ,0,0,0}, - {2387,2388,2389 ,2040,2040,2035 ,0,0,0}, {2390,2391,2392 ,2041,2041,2042 ,0,0,0}, - {2393,2394,2395 ,2038,2043,2043 ,0,0,0}, {2396,2397,2392 ,2044,2042,2042 ,0,0,0}, - {2390,2392,2397 ,2041,2042,2042 ,0,0,0}, {2398,2397,2396 ,2045,2042,2044 ,0,0,0}, - {2394,2391,2395 ,2043,2041,2043 ,0,0,0}, {2395,2391,2390 ,2043,2041,2041 ,0,0,0}, - {2393,2385,2384 ,2038,2039,2038 ,0,0,0}, {2393,2384,2394 ,2038,2038,2043 ,0,0,0}, - {2386,2388,2387 ,2039,2040,2040 ,0,0,0}, {2385,2388,2386 ,2039,2040,2039 ,0,0,0}, - {2383,2389,2216 ,2035,2035,2036 ,0,0,0}, {2387,2389,2383 ,2040,2035,2035 ,0,0,0}, - {2399,2400,2401 ,2046,2046,2047 ,0,0,0}, {2401,2400,2402 ,2047,2046,2047 ,0,0,0}, - {2400,2399,2403 ,2046,2046,2048 ,0,0,0}, {2404,2403,2399 ,2049,2048,2046 ,0,0,0}, - {2405,2406,2404 ,2050,2050,2049 ,0,0,0}, {2407,2401,2402 ,2051,2047,2047 ,0,0,0}, - {2398,2396,2405 ,2052,2053,2050 ,0,0,0}, {2406,2405,2396 ,2050,2050,2053 ,0,0,0}, - {2404,2406,2403 ,2049,2050,2048 ,0,0,0}, {2408,2407,2409 ,2054,2051,2051 ,0,0,0}, - {2402,2409,2407 ,2047,2051,2051 ,0,0,0}, {2410,2411,2408 ,2054,2055,2054 ,0,0,0}, - {2408,2409,2410 ,2054,2051,2054 ,0,0,0}, {2411,2412,2413 ,2055,2055,2056 ,0,0,0}, - {2412,2411,2410 ,2055,2055,2054 ,0,0,0}, {2414,2413,2415 ,2057,2056,2056 ,0,0,0}, - {2412,2415,2413 ,2055,2056,2056 ,0,0,0}, {2414,2415,2416 ,2057,2056,2057 ,0,0,0}, - {2417,2418,2419 ,2058,2058,2059 ,0,0,0}, {2420,2421,2419 ,2060,2061,2059 ,0,0,0}, - {2417,2419,2421 ,2058,2059,2061 ,0,0,0}, {2420,2422,2423 ,2060,2062,2063 ,0,0,0}, - {2423,2421,2420 ,2063,2061,2060 ,0,0,0}, {2424,2422,2425 ,2064,2062,2065 ,0,0,0}, - {2422,2424,2423 ,2062,2064,2063 ,0,0,0}, {2426,2427,2425 ,2066,2067,2065 ,0,0,0}, - {2424,2425,2427 ,2064,2065,2067 ,0,0,0}, {2426,2428,2429 ,2066,2068,2069 ,0,0,0}, - {2429,2427,2426 ,2069,2067,2066 ,0,0,0}, {2430,2428,2431 ,2070,2068,2071 ,0,0,0}, - {2428,2430,2429 ,2068,2070,2069 ,0,0,0}, {2432,2433,2431 ,2072,2073,2071 ,0,0,0}, - {2430,2431,2433 ,2070,2071,2073 ,0,0,0}, {2432,2434,2435 ,2072,2074,2075 ,0,0,0}, - {2435,2433,2432 ,2075,2073,2072 ,0,0,0}, {2436,2434,2437 ,2076,2074,2077 ,0,0,0}, - {2434,2436,2435 ,2074,2076,2075 ,0,0,0}, {2438,2439,2437 ,2078,2079,2077 ,0,0,0}, - {2436,2437,2439 ,2076,2077,2079 ,0,0,0}, {2438,2440,2441 ,2078,2080,2081 ,0,0,0}, - {2441,2439,2438 ,2081,2079,2078 ,0,0,0}, {2442,2440,2443 ,2082,2080,2083 ,0,0,0}, - {2440,2442,2441 ,2080,2082,2081 ,0,0,0}, {2444,2445,2443 ,2084,2085,2083 ,0,0,0}, - {2442,2443,2445 ,2082,2083,2085 ,0,0,0}, {2444,2446,2447 ,2084,2086,2087 ,0,0,0}, - {2447,2445,2444 ,2087,2085,2084 ,0,0,0}, {2448,2446,2449 ,2088,2086,2089 ,0,0,0}, - {2446,2448,2447 ,2086,2088,2087 ,0,0,0}, {2414,2450,2449 ,2057,2090,2089 ,0,0,0}, - {2448,2449,2450 ,2088,2089,2090 ,0,0,0}, {2416,2450,2414 ,2057,2090,2057 ,0,0,0}, - {2451,2418,2417 ,2091,2058,2058 ,0,0,0}, {2452,2451,2453 ,2092,2091,2093 ,0,0,0}, - {2451,2452,2418 ,2091,2092,2058 ,0,0,0}, {2454,2455,2453 ,2094,2095,2093 ,0,0,0}, - {2452,2453,2455 ,2092,2093,2095 ,0,0,0}, {2454,2456,2457 ,2094,2096,2097 ,0,0,0}, - {2457,2455,2454 ,2097,2095,2094 ,0,0,0}, {2458,2456,2459 ,2098,2096,2099 ,0,0,0}, - {2456,2458,2457 ,2096,2098,2097 ,0,0,0}, {2460,2461,2459 ,2100,2101,2099 ,0,0,0}, - {2458,2459,2461 ,2098,2099,2101 ,0,0,0}, {2460,2462,2463 ,2100,2102,2103 ,0,0,0}, - {2463,2461,2460 ,2103,2101,2100 ,0,0,0}, {2464,2462,2465 ,2104,2102,2105 ,0,0,0}, - {2462,2464,2463 ,2102,2104,2103 ,0,0,0}, {2466,2467,2465 ,2106,2107,2105 ,0,0,0}, - {2464,2465,2467 ,2104,2105,2107 ,0,0,0}, {2466,2468,2469 ,2106,2108,2109 ,0,0,0}, - {2469,2467,2466 ,2109,2107,2106 ,0,0,0}, {2470,2468,2471 ,2110,2108,2111 ,0,0,0}, - {2468,2470,2469 ,2108,2110,2109 ,0,0,0}, {2472,2473,2471 ,2112,2113,2111 ,0,0,0}, - {2470,2471,2473 ,2110,2111,2113 ,0,0,0}, {2472,2474,2475 ,2112,2114,2115 ,0,0,0}, - {2475,2473,2472 ,2115,2113,2112 ,0,0,0}, {2476,2474,2477 ,2116,2114,2117 ,0,0,0}, - {2474,2476,2475 ,2114,2116,2115 ,0,0,0}, {2478,2479,2477 ,2118,2119,2117 ,0,0,0}, - {2476,2477,2479 ,2116,2117,2119 ,0,0,0}, {2478,2480,2481 ,2118,2120,2121 ,0,0,0}, - {2481,2479,2478 ,2121,2119,2118 ,0,0,0}, {2482,2480,2483 ,2122,2120,2123 ,0,0,0}, - {2480,2482,2481 ,2120,2122,2121 ,0,0,0}, {2482,2483,2484 ,2122,2123,2123 ,0,0,0}, - {2485,2483,2486 ,1435,2124,1435 ,0,0,0}, {2483,2485,2484 ,2124,1435,2124 ,0,0,0}, - {2487,2488,2489 ,2125,2126,2127 ,0,0,0}, {2490,2491,2492 ,2128,2129,2130 ,0,0,0}, - {2493,2487,2489 ,2131,2125,2127 ,0,0,0}, {2491,2489,2488 ,2129,2127,2126 ,0,0,0}, - {2494,2487,2493 ,2132,2125,2131 ,0,0,0}, {2495,2496,2497 ,2133,2134,2135 ,0,0,0}, - {2494,2493,2495 ,2132,2131,2133 ,0,0,0}, {2498,2496,2499 ,2136,2134,2137 ,0,0,0}, - {2495,2497,2494 ,2133,2135,2132 ,0,0,0}, {2496,2498,2497 ,2134,2136,2135 ,0,0,0}, - {2499,2500,2501 ,2137,2138,2139 ,0,0,0}, {2488,2492,2491 ,2126,2130,2129 ,0,0,0}, - {2502,2503,2504 ,2140,2141,2142 ,0,0,0}, {2505,2501,2500 ,2143,2139,2138 ,0,0,0}, - {2505,2506,2507 ,2143,2144,2145 ,0,0,0}, {2502,2504,2507 ,2140,2142,2145 ,0,0,0}, - {2502,2507,2506 ,2140,2145,2144 ,0,0,0}, {2504,2503,2508 ,2142,2141,2146 ,0,0,0}, - {2509,2510,2511 ,2147,2148,2149 ,0,0,0}, {2508,2509,2511 ,2146,2147,2149 ,0,0,0}, - {2509,2508,2503 ,2147,2146,2141 ,0,0,0}, {2510,2512,2511 ,2148,2150,2149 ,0,0,0}, - {2506,2505,2500 ,2144,2143,2138 ,0,0,0}, {2512,2513,2514 ,2150,2151,2152 ,0,0,0}, - {2512,2510,2513 ,2150,2148,2151 ,0,0,0}, {2515,2516,2517 ,2153,2154,2155 ,0,0,0}, - {2518,2517,2516 ,2156,2155,2154 ,0,0,0}, {2518,2519,2517 ,2156,2157,2155 ,0,0,0}, - {2519,2514,2513 ,2157,2152,2151 ,0,0,0}, {2519,2518,2514 ,2157,2156,2152 ,0,0,0}, - {2501,2498,2499 ,2139,2136,2137 ,0,0,0}, {2520,2521,2515 ,2158,2159,2153 ,0,0,0}, - {2522,2523,2520 ,2160,2161,2158 ,0,0,0}, {2486,2523,2522 ,2162,2161,2160 ,0,0,0}, - {2516,2515,2521 ,2154,2153,2159 ,0,0,0}, {2523,2521,2520 ,2161,2159,2158 ,0,0,0}, - {2485,2486,2522 ,2162,2162,2160 ,0,0,0}, {2524,2525,2490 ,2163,2164,2128 ,0,0,0}, - {2490,2492,2524 ,2128,2130,2163 ,0,0,0}, {2525,2526,2527 ,2164,2165,2166 ,0,0,0}, - {2526,2525,2524 ,2165,2164,2163 ,0,0,0}, {2528,2527,2529 ,2167,2166,2168 ,0,0,0}, - {2526,2529,2527 ,2165,2168,2166 ,0,0,0}, {2530,2531,2528 ,2169,2170,2167 ,0,0,0}, - {2528,2529,2530 ,2167,2168,2169 ,0,0,0}, {2531,2532,2533 ,2170,2171,2172 ,0,0,0}, - {2532,2531,2530 ,2171,2170,2169 ,0,0,0}, {2534,2533,2535 ,2173,2172,2174 ,0,0,0}, - {2532,2535,2533 ,2171,2174,2172 ,0,0,0}, {2536,2537,2534 ,2175,2176,2173 ,0,0,0}, - {2534,2535,2536 ,2173,2174,2175 ,0,0,0}, {2537,2538,2539 ,2176,2177,2178 ,0,0,0}, - {2538,2537,2536 ,2177,2176,2175 ,0,0,0}, {2540,2539,2541 ,2179,2178,2180 ,0,0,0}, - {2538,2541,2539 ,2177,2180,2178 ,0,0,0}, {2542,2543,2540 ,2181,2182,2179 ,0,0,0}, - {2540,2541,2542 ,2179,2180,2181 ,0,0,0}, {2543,2544,2545 ,2182,2183,2184 ,0,0,0}, - {2544,2543,2542 ,2183,2182,2181 ,0,0,0}, {2546,2545,2547 ,2185,2184,2186 ,0,0,0}, - {2544,2547,2545 ,2183,2186,2184 ,0,0,0}, {2548,2549,2546 ,2187,2188,2185 ,0,0,0}, - {2546,2547,2548 ,2185,2186,2187 ,0,0,0}, {2549,2550,2551 ,2188,2189,2190 ,0,0,0}, - {2550,2549,2548 ,2189,2188,2187 ,0,0,0}, {2552,2551,2553 ,2191,2190,2192 ,0,0,0}, - {2550,2553,2551 ,2189,2192,2190 ,0,0,0}, {2554,2555,2552 ,2193,2194,2191 ,0,0,0}, - {2552,2553,2554 ,2191,2192,2193 ,0,0,0}, {2555,2556,2557 ,2194,2195,2196 ,0,0,0}, - {2556,2555,2554 ,2195,2194,2193 ,0,0,0}, {2558,2557,2559 ,2197,2196,2198 ,0,0,0}, - {2556,2559,2557 ,2195,2198,2196 ,0,0,0}, {2558,2559,2560 ,2197,2198,2197 ,0,0,0}, - {2561,2562,2563 ,1359,1359,1359 ,0,0,0}, {2562,2561,2564 ,1359,1359,1359 ,0,0,0}, - {2565,2566,2567 ,2199,2200,2201 ,0,0,0}, {2568,2569,2570 ,2202,2203,2204 ,0,0,0}, - {2566,2571,2567 ,2200,2205,2201 ,0,0,0}, {2565,2567,2572 ,2199,2201,2206 ,0,0,0}, - {2568,2565,2572 ,2202,2199,2206 ,0,0,0}, {2573,2574,2571 ,2207,2208,2205 ,0,0,0}, - {2573,2571,2566 ,2207,2205,2200 ,0,0,0}, {2575,2576,2577 ,2209,2210,2211 ,0,0,0}, - {2574,2573,2575 ,2208,2207,2209 ,0,0,0}, {2575,2577,2574 ,2209,2211,2208 ,0,0,0}, - {2576,2578,2577 ,2210,2212,2211 ,0,0,0}, {2569,2568,2572 ,2203,2202,2206 ,0,0,0}, - {2576,2579,2578 ,2210,2213,2212 ,0,0,0}, {2580,2581,2582 ,2214,2215,2216 ,0,0,0}, - {2580,2582,2579 ,2214,2216,2213 ,0,0,0}, {2581,2580,2583 ,2215,2214,2217 ,0,0,0}, - {2584,2585,2583 ,2218,2219,2217 ,0,0,0}, {2585,2581,2583 ,2219,2215,2217 ,0,0,0}, - {2586,2587,2588 ,2220,2221,2222 ,0,0,0}, {2585,2584,2589 ,2219,2218,2223 ,0,0,0}, - {2590,2591,2589 ,2224,2225,2223 ,0,0,0}, {2587,2586,2591 ,2221,2220,2225 ,0,0,0}, - {2587,2591,2590 ,2221,2225,2224 ,0,0,0}, {2586,2588,2592 ,2220,2222,2226 ,0,0,0}, - {2584,2590,2589 ,2218,2224,2223 ,0,0,0}, {2593,2592,2594 ,2227,2226,2228 ,0,0,0}, - {2593,2594,2595 ,2227,2228,2229 ,0,0,0}, {2594,2592,2588 ,2228,2226,2222 ,0,0,0}, - {2596,2597,2598 ,2230,2231,2232 ,0,0,0}, {2582,2578,2579 ,2216,2212,2213 ,0,0,0}, - {2596,2599,2595 ,2230,2233,2229 ,0,0,0}, {2599,2596,2598 ,2233,2230,2232 ,0,0,0}, - {2597,2600,2601 ,2231,2234,2235 ,0,0,0}, {2601,2598,2597 ,2235,2232,2231 ,0,0,0}, - {2602,2603,2600 ,2236,2237,2234 ,0,0,0}, {2601,2600,2603 ,2235,2234,2237 ,0,0,0}, - {2602,2564,2561 ,2236,2238,2238 ,0,0,0}, {2602,2561,2603 ,2236,2238,2237 ,0,0,0}, - {2595,2599,2593 ,2229,2233,2227 ,0,0,0}, {2604,2570,2605 ,2239,2204,2240 ,0,0,0}, - {2569,2605,2570 ,2203,2240,2204 ,0,0,0}, {2606,2607,2604 ,2241,2242,2239 ,0,0,0}, - {2604,2605,2606 ,2239,2240,2241 ,0,0,0}, {2607,2608,2609 ,2242,2243,2244 ,0,0,0}, - {2608,2607,2606 ,2243,2242,2241 ,0,0,0}, {2610,2609,2611 ,2245,2244,2246 ,0,0,0}, - {2608,2611,2609 ,2243,2246,2244 ,0,0,0}, {2612,2613,2610 ,2247,2248,2245 ,0,0,0}, - {2610,2611,2612 ,2245,2246,2247 ,0,0,0}, {2613,2614,2615 ,2248,2249,2250 ,0,0,0}, - {2614,2613,2612 ,2249,2248,2247 ,0,0,0}, {2616,2615,2617 ,2251,2250,2252 ,0,0,0}, - {2614,2617,2615 ,2249,2252,2250 ,0,0,0}, {2618,2619,2616 ,2253,2254,2251 ,0,0,0}, - {2616,2617,2618 ,2251,2252,2253 ,0,0,0}, {2619,2620,2621 ,2254,2255,2256 ,0,0,0}, - {2620,2619,2618 ,2255,2254,2253 ,0,0,0}, {2622,2621,2623 ,2257,2256,2258 ,0,0,0}, - {2620,2623,2621 ,2255,2258,2256 ,0,0,0}, {2624,2625,2622 ,2259,2260,2257 ,0,0,0}, - {2622,2623,2624 ,2257,2258,2259 ,0,0,0}, {2625,2626,2627 ,2260,2261,2262 ,0,0,0}, - {2626,2625,2624 ,2261,2260,2259 ,0,0,0}, {2628,2627,2629 ,2263,2262,2264 ,0,0,0}, - {2626,2629,2627 ,2261,2264,2262 ,0,0,0}, {2630,2631,2628 ,2265,2266,2263 ,0,0,0}, - {2628,2629,2630 ,2263,2264,2265 ,0,0,0}, {2631,2632,2633 ,2266,2267,2268 ,0,0,0}, - {2632,2631,2630 ,2267,2266,2265 ,0,0,0}, {2634,2633,2635 ,2269,2268,2270 ,0,0,0}, - {2632,2635,2633 ,2267,2270,2268 ,0,0,0}, {2636,2637,2634 ,2271,2272,2269 ,0,0,0}, - {2634,2635,2636 ,2269,2270,2271 ,0,0,0}, {2637,2638,2639 ,2272,2273,2274 ,0,0,0}, - {2638,2637,2636 ,2273,2272,2271 ,0,0,0}, {2640,2639,2641 ,2275,2274,2276 ,0,0,0}, - {2638,2641,2639 ,2273,2276,2274 ,0,0,0}, {2640,2641,2642 ,2275,2276,2277 ,0,0,0}, - {2643,2644,2645 ,2278,2279,2280 ,0,0,0}, {2646,2647,2645 ,2281,2282,2280 ,0,0,0}, - {2643,2645,2647 ,2278,2280,2282 ,0,0,0}, {2646,2648,2649 ,2281,2283,2284 ,0,0,0}, - {2649,2647,2646 ,2284,2282,2281 ,0,0,0}, {2650,2648,2651 ,2285,2283,2286 ,0,0,0}, - {2648,2650,2649 ,2283,2285,2284 ,0,0,0}, {2652,2653,2651 ,2287,2288,2286 ,0,0,0}, - {2650,2651,2653 ,2285,2286,2288 ,0,0,0}, {2652,2654,2655 ,2287,2289,2290 ,0,0,0}, - {2655,2653,2652 ,2290,2288,2287 ,0,0,0}, {2656,2654,2657 ,2291,2289,2292 ,0,0,0}, - {2654,2656,2655 ,2289,2291,2290 ,0,0,0}, {2658,2659,2657 ,2293,2294,2292 ,0,0,0}, - {2656,2657,2659 ,2291,2292,2294 ,0,0,0}, {2658,2660,2661 ,2293,2295,2296 ,0,0,0}, - {2661,2659,2658 ,2296,2294,2293 ,0,0,0}, {2662,2660,2663 ,2297,2295,2298 ,0,0,0}, - {2660,2662,2661 ,2295,2297,2296 ,0,0,0}, {2664,2665,2663 ,2299,2300,2298 ,0,0,0}, - {2662,2663,2665 ,2297,2298,2300 ,0,0,0}, {2664,2666,2667 ,2299,2301,2302 ,0,0,0}, - {2667,2665,2664 ,2302,2300,2299 ,0,0,0}, {2668,2666,2669 ,2303,2301,2304 ,0,0,0}, - {2666,2668,2667 ,2301,2303,2302 ,0,0,0}, {2670,2671,2669 ,2305,2306,2304 ,0,0,0}, - {2668,2669,2671 ,2303,2304,2306 ,0,0,0}, {2670,2672,2673 ,2305,2307,2308 ,0,0,0}, - {2673,2671,2670 ,2308,2306,2305 ,0,0,0}, {2674,2672,2675 ,2309,2307,2310 ,0,0,0}, - {2672,2674,2673 ,2307,2309,2308 ,0,0,0}, {2676,2677,2675 ,2311,2312,2310 ,0,0,0}, - {2674,2675,2677 ,2309,2310,2312 ,0,0,0}, {2676,2678,2679 ,2311,2313,2314 ,0,0,0}, - {2679,2677,2676 ,2314,2312,2311 ,0,0,0}, {2680,2678,2681 ,2315,2313,2316 ,0,0,0}, - {2678,2680,2679 ,2313,2315,2314 ,0,0,0}, {2682,2683,2681 ,2317,2318,2316 ,0,0,0}, - {2680,2681,2683 ,2315,2316,2318 ,0,0,0}, {2682,2684,2685 ,2317,2319,2320 ,0,0,0}, - {2685,2683,2682 ,2320,2318,2317 ,0,0,0}, {2686,2684,2687 ,2321,2319,2322 ,0,0,0}, - {2684,2686,2685 ,2319,2321,2320 ,0,0,0}, {2688,2689,2687 ,2323,2324,2322 ,0,0,0}, - {2686,2687,2689 ,2321,2322,2324 ,0,0,0}, {2688,2690,2691 ,2323,2325,2326 ,0,0,0}, - {2691,2689,2688 ,2326,2324,2323 ,0,0,0}, {2692,2690,2693 ,2327,2325,2328 ,0,0,0}, - {2690,2692,2691 ,2325,2327,2326 ,0,0,0}, {2694,2695,2693 ,2329,2330,2328 ,0,0,0}, - {2692,2693,2695 ,2327,2328,2330 ,0,0,0}, {2694,2696,2697 ,2329,2331,2332 ,0,0,0}, - {2697,2695,2694 ,2332,2330,2329 ,0,0,0}, {2698,2696,2699 ,2333,2331,2334 ,0,0,0}, - {2696,2698,2697 ,2331,2333,2332 ,0,0,0}, {2640,2700,2699 ,2335,2336,2334 ,0,0,0}, - {2698,2699,2700 ,2333,2334,2336 ,0,0,0}, {2642,2700,2640 ,2337,2336,2335 ,0,0,0}, - {2701,2644,2643 ,2338,2279,2278 ,0,0,0}, {2702,2701,2703 ,2339,2338,2340 ,0,0,0}, - {2701,2702,2644 ,2338,2339,2279 ,0,0,0}, {2704,2705,2703 ,2341,2342,2340 ,0,0,0}, - {2702,2703,2705 ,2339,2340,2342 ,0,0,0}, {2704,2706,2707 ,2341,2343,2344 ,0,0,0}, - {2707,2705,2704 ,2344,2342,2341 ,0,0,0}, {2708,2706,2709 ,2345,2343,2346 ,0,0,0}, - {2706,2708,2707 ,2343,2345,2344 ,0,0,0}, {2710,2711,2709 ,2347,2348,2346 ,0,0,0}, - {2708,2709,2711 ,2345,2346,2348 ,0,0,0}, {2710,2712,2713 ,2347,2349,2350 ,0,0,0}, - {2713,2711,2710 ,2350,2348,2347 ,0,0,0}, {2714,2712,2715 ,2351,2349,2352 ,0,0,0}, - {2712,2714,2713 ,2349,2351,2350 ,0,0,0}, {2716,2717,2715 ,2353,2354,2352 ,0,0,0}, - {2714,2715,2717 ,2351,2352,2354 ,0,0,0}, {2716,2718,2719 ,2353,2355,2356 ,0,0,0}, - {2719,2717,2716 ,2356,2354,2353 ,0,0,0}, {2720,2718,2721 ,2357,2355,2358 ,0,0,0}, - {2718,2720,2719 ,2355,2357,2356 ,0,0,0}, {2722,2723,2721 ,2359,2360,2358 ,0,0,0}, - {2720,2721,2723 ,2357,2358,2360 ,0,0,0}, {2722,2724,2725 ,2359,2361,2362 ,0,0,0}, - {2725,2723,2722 ,2362,2360,2359 ,0,0,0}, {2726,2724,2727 ,2363,2361,2364 ,0,0,0}, - {2724,2726,2725 ,2361,2363,2362 ,0,0,0}, {2728,2729,2727 ,2365,2366,2364 ,0,0,0}, - {2726,2727,2729 ,2363,2364,2366 ,0,0,0}, {2728,2730,2731 ,2365,2367,2368 ,0,0,0}, - {2731,2729,2728 ,2368,2366,2365 ,0,0,0}, {2732,2730,2733 ,2369,2367,2370 ,0,0,0}, - {2730,2732,2731 ,2367,2369,2368 ,0,0,0}, {2734,2735,2733 ,2371,2372,2370 ,0,0,0}, - {2732,2733,2735 ,2369,2370,2372 ,0,0,0}, {2734,2736,2737 ,2371,2373,2374 ,0,0,0}, - {2737,2735,2734 ,2374,2372,2371 ,0,0,0}, {2738,2736,2739 ,2375,2373,2376 ,0,0,0}, - {2736,2738,2737 ,2373,2375,2374 ,0,0,0}, {2740,2741,2739 ,2377,2378,2376 ,0,0,0}, - {2738,2739,2741 ,2375,2376,2378 ,0,0,0}, {2740,2742,2743 ,2377,2379,2380 ,0,0,0}, - {2743,2741,2740 ,2380,2378,2377 ,0,0,0}, {2744,2742,2745 ,2381,2379,2382 ,0,0,0}, - {2742,2744,2743 ,2379,2381,2380 ,0,0,0}, {2746,2747,2745 ,2383,2384,2382 ,0,0,0}, - {2744,2745,2747 ,2381,2382,2384 ,0,0,0}, {2746,2748,2749 ,2383,2385,2386 ,0,0,0}, - {2749,2747,2746 ,2386,2384,2383 ,0,0,0}, {2750,2748,2751 ,2387,2385,2388 ,0,0,0}, - {2748,2750,2749 ,2385,2387,2386 ,0,0,0}, {2752,2753,2751 ,2389,2390,2388 ,0,0,0}, - {2750,2751,2753 ,2387,2388,2390 ,0,0,0}, {2752,2754,2755 ,2389,2391,2392 ,0,0,0}, - {2755,2753,2752 ,2392,2390,2389 ,0,0,0}, {2756,2754,2757 ,2393,2391,324 ,0,0,0}, - {2754,2756,2755 ,2391,2393,2392 ,0,0,0}, {2756,2757,2758 ,2393,324,2394 ,0,0,0}, - {2759,2760,2761 ,2395,2396,2397 ,0,0,0}, {2762,2763,2764 ,2398,2399,2400 ,0,0,0}, - {2760,2765,2761 ,2396,2401,2397 ,0,0,0}, {2759,2761,2766 ,2395,2397,2402 ,0,0,0}, - {2762,2759,2766 ,2398,2395,2402 ,0,0,0}, {2767,2768,2765 ,2403,2404,2401 ,0,0,0}, - {2767,2765,2760 ,2403,2401,2396 ,0,0,0}, {2769,2770,2771 ,2405,2406,2407 ,0,0,0}, - {2768,2767,2769 ,2404,2403,2405 ,0,0,0}, {2769,2771,2768 ,2405,2407,2404 ,0,0,0}, - {2770,2772,2771 ,2406,2408,2407 ,0,0,0}, {2763,2762,2766 ,2399,2398,2402 ,0,0,0}, - {2770,2773,2772 ,2406,2409,2408 ,0,0,0}, {2774,2775,2776 ,2410,2411,2412 ,0,0,0}, - {2774,2776,2773 ,2410,2412,2409 ,0,0,0}, {2775,2774,2777 ,2411,2410,2413 ,0,0,0}, - {2778,2779,2777 ,2414,2415,2413 ,0,0,0}, {2779,2775,2777 ,2415,2411,2413 ,0,0,0}, - {2780,2781,2782 ,2416,2417,2418 ,0,0,0}, {2779,2778,2783 ,2415,2414,2419 ,0,0,0}, - {2784,2785,2783 ,2420,2421,2419 ,0,0,0}, {2781,2780,2785 ,2417,2416,2421 ,0,0,0}, - {2781,2785,2784 ,2417,2421,2420 ,0,0,0}, {2780,2782,2786 ,2416,2418,2422 ,0,0,0}, - {2778,2784,2783 ,2414,2420,2419 ,0,0,0}, {2787,2786,2788 ,2423,2422,2424 ,0,0,0}, - {2787,2788,2789 ,2423,2424,2425 ,0,0,0}, {2788,2786,2782 ,2424,2422,2418 ,0,0,0}, - {2790,2791,2792 ,2426,2427,2428 ,0,0,0}, {2776,2772,2773 ,2412,2408,2409 ,0,0,0}, - {2790,2793,2789 ,2426,2429,2425 ,0,0,0}, {2793,2790,2792 ,2429,2426,2428 ,0,0,0}, - {2791,2794,2795 ,2427,2430,2431 ,0,0,0}, {2795,2792,2791 ,2431,2428,2427 ,0,0,0}, - {2796,2797,2794 ,2432,2433,2430 ,0,0,0}, {2795,2794,2797 ,2431,2430,2433 ,0,0,0}, - {2796,2758,2757 ,2432,2434,2435 ,0,0,0}, {2796,2757,2797 ,2432,2435,2433 ,0,0,0}, - {2789,2793,2787 ,2425,2429,2423 ,0,0,0}, {2798,2764,2799 ,2436,2400,2437 ,0,0,0}, - {2763,2799,2764 ,2399,2437,2400 ,0,0,0}, {2800,2801,2798 ,2438,2439,2436 ,0,0,0}, - {2798,2799,2800 ,2436,2437,2438 ,0,0,0}, {2801,2802,2803 ,2439,2440,2441 ,0,0,0}, - {2802,2801,2800 ,2440,2439,2438 ,0,0,0}, {2804,2803,2805 ,2442,2441,2443 ,0,0,0}, - {2802,2805,2803 ,2440,2443,2441 ,0,0,0}, {2806,2807,2804 ,2444,2445,2442 ,0,0,0}, - {2804,2805,2806 ,2442,2443,2444 ,0,0,0}, {2807,2808,2809 ,2445,2446,2447 ,0,0,0}, - {2808,2807,2806 ,2446,2445,2444 ,0,0,0}, {2810,2809,2811 ,2448,2447,2449 ,0,0,0}, - {2808,2811,2809 ,2446,2449,2447 ,0,0,0}, {2812,2813,2810 ,2450,2451,2448 ,0,0,0}, - {2810,2811,2812 ,2448,2449,2450 ,0,0,0}, {2813,2814,2815 ,2451,2452,2453 ,0,0,0}, - {2814,2813,2812 ,2452,2451,2450 ,0,0,0}, {2816,2815,2817 ,2454,2453,2455 ,0,0,0}, - {2814,2817,2815 ,2452,2455,2453 ,0,0,0}, {2818,2819,2816 ,2456,2457,2454 ,0,0,0}, - {2816,2817,2818 ,2454,2455,2456 ,0,0,0}, {2819,2820,2821 ,2457,2458,2459 ,0,0,0}, - {2820,2819,2818 ,2458,2457,2456 ,0,0,0}, {2822,2821,2823 ,2460,2459,2461 ,0,0,0}, - {2820,2823,2821 ,2458,2461,2459 ,0,0,0}, {2824,2825,2822 ,2462,2463,2460 ,0,0,0}, - {2822,2823,2824 ,2460,2461,2462 ,0,0,0}, {2825,2826,2827 ,2463,2464,2465 ,0,0,0}, - {2826,2825,2824 ,2464,2463,2462 ,0,0,0}, {2828,2827,2829 ,2466,2465,2467 ,0,0,0}, - {2826,2829,2827 ,2464,2467,2465 ,0,0,0}, {2830,2831,2828 ,2468,2469,2466 ,0,0,0}, - {2828,2829,2830 ,2466,2467,2468 ,0,0,0}, {2831,2832,2833 ,2469,2470,2471 ,0,0,0}, - {2832,2831,2830 ,2470,2469,2468 ,0,0,0}, {2834,2833,2835 ,2472,2471,2473 ,0,0,0}, - {2832,2835,2833 ,2470,2473,2471 ,0,0,0}, {2834,2835,2836 ,2472,2473,2472 ,0,0,0}, - {2837,2834,2836 ,1790,1790,1790 ,0,0,0}, {2834,2837,2838 ,1790,1790,1790 ,0,0,0}, - {2839,2840,2841 ,2474,2475,2476 ,0,0,0}, {2842,2843,2839 ,2477,2478,2474 ,0,0,0}, - {2839,2841,2842 ,2474,2476,2477 ,0,0,0}, {2843,2844,2845 ,2478,2479,2480 ,0,0,0}, - {2844,2843,2842 ,2479,2478,2477 ,0,0,0}, {2846,2845,2847 ,2481,2480,2482 ,0,0,0}, - {2844,2847,2845 ,2479,2482,2480 ,0,0,0}, {2848,2849,2846 ,2483,2484,2481 ,0,0,0}, - {2846,2847,2848 ,2481,2482,2483 ,0,0,0}, {2849,2850,2851 ,2484,2485,2486 ,0,0,0}, - {2850,2849,2848 ,2485,2484,2483 ,0,0,0}, {2852,2851,2853 ,2487,2486,2488 ,0,0,0}, - {2850,2853,2851 ,2485,2488,2486 ,0,0,0}, {2854,2855,2852 ,2489,2490,2487 ,0,0,0}, - {2852,2853,2854 ,2487,2488,2489 ,0,0,0}, {2855,2856,2857 ,2490,2491,2492 ,0,0,0}, - {2856,2855,2854 ,2491,2490,2489 ,0,0,0}, {2858,2857,2859 ,2493,2492,2494 ,0,0,0}, - {2856,2859,2857 ,2491,2494,2492 ,0,0,0}, {2860,2861,2858 ,2495,2496,2493 ,0,0,0}, - {2858,2859,2860 ,2493,2494,2495 ,0,0,0}, {2861,2862,2863 ,2496,2497,2498 ,0,0,0}, - {2862,2861,2860 ,2497,2496,2495 ,0,0,0}, {2864,2863,2865 ,2499,2498,2500 ,0,0,0}, - {2862,2865,2863 ,2497,2500,2498 ,0,0,0}, {2866,2867,2864 ,2501,2502,2499 ,0,0,0}, - {2864,2865,2866 ,2499,2500,2501 ,0,0,0}, {2867,2868,2869 ,2502,2503,2504 ,0,0,0}, - {2868,2867,2866 ,2503,2502,2501 ,0,0,0}, {2870,2869,2871 ,2505,2504,2506 ,0,0,0}, - {2868,2871,2869 ,2503,2506,2504 ,0,0,0}, {2872,2873,2870 ,2507,2508,2505 ,0,0,0}, - {2870,2871,2872 ,2505,2506,2507 ,0,0,0}, {2873,2874,2875 ,2508,2509,2510 ,0,0,0}, - {2874,2873,2872 ,2509,2508,2507 ,0,0,0}, {2876,2875,2877 ,2511,2510,2512 ,0,0,0}, - {2874,2877,2875 ,2509,2512,2510 ,0,0,0}, {2838,2837,2876 ,2513,2513,2511 ,0,0,0}, - {2876,2877,2838 ,2511,2512,2513 ,0,0,0}, {2841,2840,2878 ,2476,2475,2514 ,0,0,0}, - {2879,2878,2880 ,2515,2514,2516 ,0,0,0}, {2840,2880,2878 ,2475,2516,2514 ,0,0,0}, - {2881,2882,2879 ,2517,2518,2515 ,0,0,0}, {2879,2880,2881 ,2515,2516,2517 ,0,0,0}, - {2882,2883,2884 ,2518,2519,2520 ,0,0,0}, {2883,2882,2881 ,2519,2518,2517 ,0,0,0}, - {2885,2884,2886 ,2521,2520,2522 ,0,0,0}, {2883,2886,2884 ,2519,2522,2520 ,0,0,0}, - {2887,2888,2885 ,2523,2524,2521 ,0,0,0}, {2885,2886,2887 ,2521,2522,2523 ,0,0,0}, - {2888,2889,2890 ,2524,2525,2526 ,0,0,0}, {2889,2888,2887 ,2525,2524,2523 ,0,0,0}, - {2891,2890,2892 ,2527,2526,2528 ,0,0,0}, {2889,2892,2890 ,2525,2528,2526 ,0,0,0}, - {2893,2894,2891 ,2529,2530,2527 ,0,0,0}, {2891,2892,2893 ,2527,2528,2529 ,0,0,0}, - {2894,2895,2896 ,2530,2531,2532 ,0,0,0}, {2895,2894,2893 ,2531,2530,2529 ,0,0,0}, - {2897,2896,2898 ,2533,2532,2534 ,0,0,0}, {2895,2898,2896 ,2531,2534,2532 ,0,0,0}, - {2899,2900,2897 ,2535,2536,2533 ,0,0,0}, {2897,2898,2899 ,2533,2534,2535 ,0,0,0}, - {2900,2901,2902 ,2536,2537,2538 ,0,0,0}, {2901,2900,2899 ,2537,2536,2535 ,0,0,0}, - {2903,2902,2904 ,2539,2538,2540 ,0,0,0}, {2901,2904,2902 ,2537,2540,2538 ,0,0,0}, - {2905,2906,2903 ,2541,2542,2539 ,0,0,0}, {2903,2904,2905 ,2539,2540,2541 ,0,0,0}, - {2906,2907,2908 ,2542,2543,2544 ,0,0,0}, {2907,2906,2905 ,2543,2542,2541 ,0,0,0}, - {2909,2908,2910 ,2545,2544,2546 ,0,0,0}, {2907,2910,2908 ,2543,2546,2544 ,0,0,0}, - {2911,2912,2909 ,2547,2548,2545 ,0,0,0}, {2909,2910,2911 ,2545,2546,2547 ,0,0,0}, - {2912,2913,2914 ,2548,2549,2550 ,0,0,0}, {2913,2912,2911 ,2549,2548,2547 ,0,0,0}, - {2913,2563,2914 ,2549,2551,2550 ,0,0,0}, {2914,2563,2562 ,2550,2551,2551 ,0,0,0}, - {2264,2560,2265 ,1711,2552,1711 ,0,0,0}, {2560,2264,2558 ,2552,1711,2552 ,0,0,0}, - {2785,2287,2286 ,1793,1793,1793 ,0,0,0}, {2563,2913,2486 ,1793,726,726 ,0,0,0}, - {2907,2516,2910 ,726,726,726 ,0,0,0}, {2603,2561,2483 ,726,726,726 ,0,0,0}, - {2504,2508,2898 ,726,726,726 ,0,0,0}, {2512,2904,2901 ,726,726,726 ,0,0,0}, - {2883,2494,2886 ,726,726,726 ,0,0,0}, {2892,2889,2501 ,726,726,726 ,0,0,0}, - {2880,2488,2487 ,726,726,726 ,0,0,0}, {2881,2880,2487 ,726,726,726 ,0,0,0}, - {2280,2277,2776 ,1793,726,1793 ,0,0,0}, {2793,2792,2295 ,1793,726,1793 ,0,0,0}, - {2761,2765,2269 ,1793,1793,726 ,0,0,0}, {2271,2765,2768 ,726,1793,726 ,0,0,0}, - {2799,2225,2229 ,726,726,726 ,0,0,0}, {2225,2763,2226 ,726,1793,1793 ,0,0,0}, - {2802,2232,2805 ,1793,726,726 ,0,0,0}, {2231,2802,2800 ,1793,1793,1793 ,0,0,0}, - {2241,2812,2811 ,1792,1793,1793 ,0,0,0}, {2237,2808,2806 ,726,1793,1793 ,0,0,0}, - {2814,2812,2243 ,1793,1793,1793 ,0,0,0}, {2241,2243,2812 ,1792,1793,1793 ,0,0,0}, - {2818,2817,2247 ,1793,1792,726 ,0,0,0}, {2814,2243,2244 ,1793,1793,1793 ,0,0,0}, - {2820,2818,2249 ,1793,1793,1793 ,0,0,0}, {2247,2817,2244 ,726,1792,1793 ,0,0,0}, - {2250,2823,2820 ,1793,726,1793 ,0,0,0}, {2820,2249,2250 ,1793,1793,1793 ,0,0,0}, - {2823,2253,2824 ,726,726,726 ,0,0,0}, {2253,2823,2250 ,726,726,1793 ,0,0,0}, - {2826,2824,2255 ,726,726,726 ,0,0,0}, {2256,2826,2255 ,726,726,726 ,0,0,0}, - {2261,2830,2259 ,726,1793,1793 ,0,0,0}, {2829,2826,2256 ,726,726,726 ,0,0,0}, - {2262,2265,2832 ,726,726,726 ,0,0,0}, {2259,2830,2829 ,1793,1793,726 ,0,0,0}, - {2265,2835,2832 ,726,1793,726 ,0,0,0}, {2830,2262,2832 ,1793,726,726 ,0,0,0}, - {2855,2536,2852 ,726,726,726 ,0,0,0}, {2265,2836,2835 ,726,726,1793 ,0,0,0}, - {2786,2289,2780 ,1793,726,726 ,0,0,0}, {2800,2229,2231 ,1793,726,1793 ,0,0,0}, - {2808,2237,2238 ,1793,726,1793 ,0,0,0}, {2811,2238,2241 ,1793,1793,1792 ,0,0,0}, - {2235,2237,2806 ,1793,726,1793 ,0,0,0}, {2805,2232,2235 ,726,726,1793 ,0,0,0}, - {2763,2225,2799 ,1793,726,726 ,0,0,0}, {2799,2229,2800 ,726,726,1793 ,0,0,0}, - {2761,2268,2766 ,1793,1793,1793 ,0,0,0}, {2766,2226,2763 ,1793,1793,1793 ,0,0,0}, - {2429,2608,2427 ,726,726,1793 ,0,0,0}, {2268,2226,2766 ,1793,1793,1793 ,0,0,0}, - {2771,2275,2274 ,1793,1793,726 ,0,0,0}, {2768,2274,2271 ,726,726,726 ,0,0,0}, - {2772,2277,2275 ,726,726,1793 ,0,0,0}, {2771,2274,2768 ,1793,726,726 ,0,0,0}, - {2779,2283,2281 ,1793,1793,1793 ,0,0,0}, {2280,2776,2775 ,1793,1793,726 ,0,0,0}, - {2780,2287,2785 ,726,1793,1793 ,0,0,0}, {2283,2783,2286 ,1793,1793,1793 ,0,0,0}, - {2293,2292,2787 ,726,726,726 ,0,0,0}, {2289,2287,2780 ,726,1793,726 ,0,0,0}, - {2787,2292,2786 ,726,726,1793 ,0,0,0}, {2635,2632,2415 ,1793,726,726 ,0,0,0}, - {2795,2299,2298 ,1792,726,726 ,0,0,0}, {2212,2194,2214 ,1793,1792,726 ,0,0,0}, - {2301,2797,2303 ,1793,726,1793 ,0,0,0}, {2219,2221,2186 ,726,1793,726 ,0,0,0}, - {2183,2221,2222 ,726,1793,1793 ,0,0,0}, {2382,2379,2175 ,726,726,726 ,0,0,0}, - {2382,2166,2168 ,726,726,1793 ,0,0,0}, {2685,2357,2683 ,726,1793,1793 ,0,0,0}, - {2376,2371,2638 ,1793,726,726 ,0,0,0}, {2745,2742,2915 ,726,726,726 ,0,0,0}, - {2656,2340,2655 ,726,1793,1793 ,0,0,0}, {2916,2917,2706 ,1793,1793,726 ,0,0,0}, - {2161,2918,2919 ,1793,726,726 ,0,0,0}, {2712,2710,2920 ,726,1793,726 ,0,0,0}, - {2920,2710,2917 ,726,1793,1793 ,0,0,0}, {2134,2131,2203 ,726,726,1793 ,0,0,0}, - {2920,2203,2715 ,726,1793,1793 ,0,0,0}, {2201,2199,2132 ,1793,1793,1793 ,0,0,0}, - {2132,2199,2141 ,1793,1793,1793 ,0,0,0}, {2722,2721,2130 ,1793,726,726 ,0,0,0}, - {2709,2706,2917 ,1793,726,1793 ,0,0,0}, {2347,2916,2704 ,726,1793,726 ,0,0,0}, - {2322,2921,2318 ,726,1793,1793 ,0,0,0}, {2922,2923,2918 ,1793,1793,726 ,0,0,0}, - {2313,2924,2925 ,726,1793,1793 ,0,0,0}, {2701,2346,2347 ,1793,726,726 ,0,0,0}, - {2347,2704,2703 ,726,726,1793 ,0,0,0}, {2643,2346,2701 ,1793,726,1793 ,0,0,0}, - {2740,2739,2926 ,726,1793,1793 ,0,0,0}, {2345,2346,2647 ,1793,726,726 ,0,0,0}, - {2647,2649,2345 ,726,726,1793 ,0,0,0}, {2746,2745,2927 ,1793,726,1793 ,0,0,0}, - {2342,2345,2650 ,726,1793,726 ,0,0,0}, {2748,2928,2751 ,726,1793,1793 ,0,0,0}, - {2653,2342,2650 ,1793,726,726 ,0,0,0}, {2305,2752,2308 ,1793,726,1793 ,0,0,0}, - {2342,2655,2340 ,726,1793,1793 ,0,0,0}, {2665,2336,2335 ,1793,726,726 ,0,0,0}, - {2661,2335,2338 ,1793,726,1793 ,0,0,0}, {2352,2351,2673 ,1792,726,1793 ,0,0,0}, - {2336,2665,2667 ,726,1793,1793 ,0,0,0}, {2680,2354,2679 ,1793,1793,1793 ,0,0,0}, - {2354,2352,2677 ,1793,1792,1793 ,0,0,0}, {2363,2360,2691 ,1793,726,726 ,0,0,0}, - {2323,2929,2327 ,1793,726,1793 ,0,0,0}, {2930,2931,2932 ,1793,1793,1793 ,0,0,0}, - {2364,2695,2697 ,726,726,726 ,0,0,0}, {2366,2370,2642 ,1793,1793,1793 ,0,0,0}, - {2933,2384,2934 ,726,726,726 ,0,0,0}, {2935,2394,2384 ,1793,1793,726 ,0,0,0}, - {2387,2383,2936 ,726,726,726 ,0,0,0}, {2386,2937,2934 ,726,1793,726 ,0,0,0}, - {2224,2165,2164 ,726,726,1793 ,0,0,0}, {2208,2207,2188 ,1793,726,726 ,0,0,0}, - {2937,2386,2387 ,1793,726,726 ,0,0,0}, {2754,2305,2757 ,1793,1793,1793 ,0,0,0}, - {2211,2189,2192 ,726,1793,726 ,0,0,0}, {2412,2410,2635 ,1793,1793,1793 ,0,0,0}, - {2797,2757,2303 ,726,1793,1793 ,0,0,0}, {2450,2416,2632 ,1792,726,726 ,0,0,0}, - {2301,2299,2797 ,1793,726,726 ,0,0,0}, {2887,2497,2498 ,726,726,726 ,0,0,0}, - {2843,2524,2839 ,726,726,726 ,0,0,0}, {2526,2843,2845 ,726,726,726 ,0,0,0}, - {2605,2424,2606 ,1793,726,726 ,0,0,0}, {2280,2775,2281 ,1793,726,1793 ,0,0,0}, - {2797,2299,2795 ,726,726,1792 ,0,0,0}, {2792,2795,2298 ,726,1792,726 ,0,0,0}, - {2293,2793,2295 ,726,1793,1793 ,0,0,0}, {2295,2792,2298 ,1793,726,726 ,0,0,0}, - {2283,2779,2783 ,1793,1793,1793 ,0,0,0}, {2289,2786,2292 ,726,1793,726 ,0,0,0}, - {2293,2787,2793 ,726,726,1793 ,0,0,0}, {2785,2286,2783 ,1793,1793,1793 ,0,0,0}, - {2775,2779,2281 ,726,1793,1793 ,0,0,0}, {2776,2277,2772 ,1793,726,726 ,0,0,0}, - {2608,2429,2611 ,726,726,726 ,0,0,0}, {2771,2772,2275 ,1793,726,1793 ,0,0,0}, - {2839,2524,2492 ,726,726,726 ,0,0,0}, {2492,2840,2839 ,726,726,726 ,0,0,0}, - {2840,2492,2488 ,726,726,726 ,0,0,0}, {2494,2881,2487 ,726,726,726 ,0,0,0}, - {2488,2880,2840 ,726,726,726 ,0,0,0}, {2423,2424,2605 ,1793,726,1793 ,0,0,0}, - {2887,2886,2497 ,726,726,726 ,0,0,0}, {2886,2494,2497 ,726,726,726 ,0,0,0}, - {2578,2582,2459 ,726,1793,1793 ,0,0,0}, {2889,2887,2498 ,726,726,726 ,0,0,0}, - {2505,2892,2501 ,726,726,726 ,0,0,0}, {2893,2505,2507 ,726,726,726 ,0,0,0}, - {2505,2893,2892 ,726,726,726 ,0,0,0}, {2504,2895,2507 ,726,726,726 ,0,0,0}, - {2893,2507,2895 ,726,726,726 ,0,0,0}, {2895,2504,2898 ,726,726,726 ,0,0,0}, - {2508,2511,2899 ,726,726,726 ,0,0,0}, {2460,2459,2582 ,726,1793,1793 ,0,0,0}, - {2901,2511,2512 ,726,726,726 ,0,0,0}, {2511,2901,2899 ,726,726,726 ,0,0,0}, - {2905,2904,2514 ,726,726,726 ,0,0,0}, {2599,2477,2474 ,726,1793,1793 ,0,0,0}, - {2512,2514,2904 ,726,726,726 ,0,0,0}, {2518,2907,2905 ,726,726,726 ,0,0,0}, - {2905,2514,2518 ,726,726,726 ,0,0,0}, {2907,2518,2516 ,726,726,726 ,0,0,0}, - {2516,2521,2910 ,726,726,726 ,0,0,0}, {2910,2521,2911 ,726,726,726 ,0,0,0}, - {2911,2523,2913 ,726,726,726 ,0,0,0}, {2601,2480,2478 ,1793,726,1792 ,0,0,0}, - {2523,2911,2521 ,726,726,726 ,0,0,0}, {2402,2638,2636 ,726,726,1792 ,0,0,0}, - {2178,2179,2377 ,1792,726,726 ,0,0,0}, {2448,2450,2630 ,726,1792,726 ,0,0,0}, - {2636,2410,2409 ,1792,1793,1793 ,0,0,0}, {2447,2448,2629 ,1793,726,726 ,0,0,0}, - {2445,2447,2626 ,726,1793,726 ,0,0,0}, {2632,2416,2415 ,726,726,726 ,0,0,0}, - {2442,2445,2624 ,1793,726,1793 ,0,0,0}, {2632,2630,2450 ,726,726,1792 ,0,0,0}, - {2441,2442,2623 ,726,1793,1793 ,0,0,0}, {2630,2629,2448 ,726,726,726 ,0,0,0}, - {2439,2441,2620 ,1793,726,1793 ,0,0,0}, {2629,2626,2447 ,726,726,1793 ,0,0,0}, - {2436,2618,2617 ,1793,726,726 ,0,0,0}, {2626,2624,2445 ,726,1793,726 ,0,0,0}, - {2435,2617,2614 ,726,726,1793 ,0,0,0}, {2624,2623,2442 ,1793,1793,1793 ,0,0,0}, - {2433,2614,2612 ,1793,1793,726 ,0,0,0}, {2611,2430,2612 ,726,1793,726 ,0,0,0}, - {2436,2439,2618 ,1793,1793,726 ,0,0,0}, {2608,2606,2427 ,726,726,1793 ,0,0,0}, - {2436,2617,2435 ,1793,726,726 ,0,0,0}, {2845,2846,2529 ,726,726,726 ,0,0,0}, - {2614,2433,2435 ,1793,1793,726 ,0,0,0}, {2846,2849,2530 ,726,726,726 ,0,0,0}, - {2612,2430,2433 ,726,1793,1793 ,0,0,0}, {2849,2851,2532 ,726,726,726 ,0,0,0}, - {2268,2761,2269 ,1793,1793,726 ,0,0,0}, {2269,2765,2271 ,726,1793,726 ,0,0,0}, - {2606,2424,2427 ,726,726,1793 ,0,0,0}, {2535,2532,2851 ,726,726,726 ,0,0,0}, - {2526,2524,2843 ,726,726,726 ,0,0,0}, {2535,2852,2536 ,726,726,726 ,0,0,0}, - {2529,2526,2845 ,726,726,726 ,0,0,0}, {2855,2538,2536 ,726,726,726 ,0,0,0}, - {2530,2529,2846 ,726,726,726 ,0,0,0}, {2857,2541,2538 ,726,726,726 ,0,0,0}, - {2532,2530,2849 ,726,726,726 ,0,0,0}, {2232,2802,2231 ,726,1793,1793 ,0,0,0}, - {2542,2541,2858 ,726,726,726 ,0,0,0}, {2851,2852,2535 ,726,726,726 ,0,0,0}, - {2544,2542,2861 ,726,726,726 ,0,0,0}, {2544,2861,2863 ,726,726,726 ,0,0,0}, - {2235,2806,2805 ,1793,1793,726 ,0,0,0}, {2855,2857,2538 ,726,726,726 ,0,0,0}, - {2238,2811,2808 ,1793,1793,1793 ,0,0,0}, {2864,2547,2863 ,726,726,726 ,0,0,0}, - {2857,2858,2541 ,726,726,726 ,0,0,0}, {2548,2864,2867 ,726,726,726 ,0,0,0}, - {2858,2861,2542 ,726,726,726 ,0,0,0}, {2244,2817,2814 ,1793,1792,1793 ,0,0,0}, - {2863,2547,2544 ,726,726,726 ,0,0,0}, {2867,2869,2550 ,726,726,726 ,0,0,0}, - {2548,2547,2864 ,726,726,726 ,0,0,0}, {2870,2553,2869 ,726,726,726 ,0,0,0}, - {2247,2249,2818 ,726,1793,1793 ,0,0,0}, {2873,2554,2870 ,726,726,726 ,0,0,0}, - {2550,2548,2867 ,726,726,726 ,0,0,0}, {2253,2255,2824 ,726,726,726 ,0,0,0}, - {2869,2553,2550 ,726,726,726 ,0,0,0}, {2556,2873,2875 ,726,726,726 ,0,0,0}, - {2256,2259,2829 ,726,1793,726 ,0,0,0}, {2870,2554,2553 ,726,726,726 ,0,0,0}, - {2559,2556,2875 ,1793,726,726 ,0,0,0}, {2560,2559,2876 ,726,1793,726 ,0,0,0}, - {2261,2262,2830 ,726,726,1793 ,0,0,0}, {2559,2875,2876 ,1793,726,726 ,0,0,0}, - {2837,2836,2560 ,1793,726,726 ,0,0,0}, {2836,2265,2560 ,726,726,726 ,0,0,0}, - {2876,2837,2560 ,726,1793,726 ,0,0,0}, {2873,2556,2554 ,726,726,726 ,0,0,0}, - {2423,2605,2569 ,1793,1793,1793 ,0,0,0}, {2421,2569,2572 ,1793,1793,1793 ,0,0,0}, - {2417,2572,2567 ,1793,1793,1793 ,0,0,0}, {2451,2567,2571 ,726,1793,726 ,0,0,0}, - {2571,2574,2453 ,726,1793,1793 ,0,0,0}, {2494,2883,2881 ,726,726,726 ,0,0,0}, - {2569,2421,2423 ,1793,1793,1793 ,0,0,0}, {2574,2577,2454 ,1793,1793,726 ,0,0,0}, - {2572,2417,2421 ,1793,1793,1793 ,0,0,0}, {2498,2501,2889 ,726,726,726 ,0,0,0}, - {2417,2567,2451 ,1793,1793,726 ,0,0,0}, {2578,2456,2577 ,726,726,1793 ,0,0,0}, - {2571,2453,2451 ,726,1793,726 ,0,0,0}, {2460,2582,2581 ,726,1793,1793 ,0,0,0}, - {2574,2454,2453 ,1793,726,1793 ,0,0,0}, {2462,2460,2581 ,1793,726,1793 ,0,0,0}, - {2577,2456,2454 ,1793,726,726 ,0,0,0}, {2585,2465,2462 ,726,1793,1793 ,0,0,0}, - {2578,2459,2456 ,726,1793,726 ,0,0,0}, {2589,2466,2465 ,726,726,1793 ,0,0,0}, - {2591,2468,2466 ,1793,726,726 ,0,0,0}, {2898,2508,2899 ,726,726,726 ,0,0,0}, - {2462,2581,2585 ,1793,1793,726 ,0,0,0}, {2586,2471,2468 ,726,1793,726 ,0,0,0}, - {2465,2585,2589 ,1793,726,726 ,0,0,0}, {2471,2592,2472 ,1793,726,1793 ,0,0,0}, - {2466,2589,2591 ,726,726,1793 ,0,0,0}, {2474,2472,2593 ,1793,1793,726 ,0,0,0}, - {2471,2586,2592 ,1793,726,726 ,0,0,0}, {2477,2599,2598 ,1793,726,1793 ,0,0,0}, - {2472,2592,2593 ,1793,726,726 ,0,0,0}, {2601,2478,2598 ,1793,1792,1793 ,0,0,0}, - {2474,2593,2599 ,1793,726,726 ,0,0,0}, {2601,2483,2480 ,1793,726,726 ,0,0,0}, - {2478,2477,2598 ,1792,1793,1793 ,0,0,0}, {2483,2561,2486 ,726,726,726 ,0,0,0}, - {2563,2486,2561 ,1793,726,726 ,0,0,0}, {2913,2523,2486 ,726,726,726 ,0,0,0}, - {2601,2603,2483 ,1793,726,726 ,0,0,0}, {2468,2591,2586 ,726,1793,726 ,0,0,0}, - {2430,2611,2429 ,1793,726,726 ,0,0,0}, {2441,2623,2620 ,726,1793,1793 ,0,0,0}, - {2439,2620,2618 ,1793,1793,726 ,0,0,0}, {2358,2685,2686 ,1793,726,1793 ,0,0,0}, - {2412,2635,2415 ,1793,1793,726 ,0,0,0}, {2373,2364,2698 ,1793,726,726 ,0,0,0}, - {2636,2635,2410 ,1792,1793,1793 ,0,0,0}, {2400,2403,2938 ,726,1793,1793 ,0,0,0}, - {2402,2636,2409 ,726,1792,1793 ,0,0,0}, {2939,2392,2391 ,1793,1793,726 ,0,0,0}, - {2383,2214,2195 ,726,726,726 ,0,0,0}, {2394,2940,2391 ,1793,726,726 ,0,0,0}, - {2383,2195,2936 ,726,726,726 ,0,0,0}, {2641,2371,2367 ,726,726,1793 ,0,0,0}, - {2363,2691,2692 ,1793,726,726 ,0,0,0}, {2925,2323,2311 ,1793,1793,1793 ,0,0,0}, - {2680,2683,2357 ,1793,1793,1793 ,0,0,0}, {2352,2673,2674 ,1792,1793,1792 ,0,0,0}, - {2661,2662,2335 ,1793,1793,726 ,0,0,0}, {2715,2203,2716 ,1793,1793,1793 ,0,0,0}, - {2338,2656,2659 ,1793,726,1793 ,0,0,0}, {2668,2351,2336 ,726,726,726 ,0,0,0}, - {2351,2668,2671 ,726,726,1793 ,0,0,0}, {2354,2677,2679 ,1793,1793,1793 ,0,0,0}, - {2689,2358,2686 ,726,1793,1793 ,0,0,0}, {2689,2360,2358 ,726,726,1793 ,0,0,0}, - {2364,2363,2695 ,726,1793,726 ,0,0,0}, {2698,2700,2373 ,726,726,1793 ,0,0,0}, - {2373,2642,2370 ,1793,1793,1793 ,0,0,0}, {2367,2366,2641 ,1793,1793,726 ,0,0,0}, - {2939,2941,2392 ,1793,726,1793 ,0,0,0}, {2942,2943,2406 ,726,1793,726 ,0,0,0}, - {2943,2944,2406 ,1793,726,726 ,0,0,0}, {2945,2938,2403 ,726,1793,1793 ,0,0,0}, - {2938,2946,2400 ,1793,726,726 ,0,0,0}, {2371,2641,2638 ,726,726,726 ,0,0,0}, - {2642,2641,2366 ,1793,726,1793 ,0,0,0}, {2642,2373,2700 ,1793,1793,726 ,0,0,0}, - {2698,2364,2697 ,726,726,726 ,0,0,0}, {2695,2363,2692 ,726,1793,726 ,0,0,0}, - {2691,2360,2689 ,726,726,726 ,0,0,0}, {2358,2357,2685 ,1793,1793,726 ,0,0,0}, - {2357,2354,2680 ,1793,1793,1793 ,0,0,0}, {2352,2674,2677 ,1792,1792,1793 ,0,0,0}, - {2351,2671,2673 ,726,1793,1793 ,0,0,0}, {2336,2667,2668 ,726,1793,726 ,0,0,0}, - {2335,2662,2665 ,726,1793,1793 ,0,0,0}, {2338,2659,2661 ,1793,1793,1793 ,0,0,0}, - {2338,2340,2656 ,1793,1793,726 ,0,0,0}, {2342,2653,2655 ,726,1793,1793 ,0,0,0}, - {2345,2649,2650 ,1793,726,726 ,0,0,0}, {2346,2643,2647 ,726,1793,726 ,0,0,0}, - {2347,2703,2701 ,726,1793,1793 ,0,0,0}, {2916,2706,2704 ,1793,726,726 ,0,0,0}, - {2917,2710,2709 ,1793,1793,1793 ,0,0,0}, {2920,2715,2712 ,726,1793,726 ,0,0,0}, - {2134,2201,2132 ,726,1793,1793 ,0,0,0}, {2138,2141,2199 ,1793,1793,1793 ,0,0,0}, - {2718,2716,2131 ,1793,1793,726 ,0,0,0}, {2198,2140,2138 ,1793,726,1793 ,0,0,0}, - {2144,2205,2332 ,1793,726,1793 ,0,0,0}, {2947,2932,2948 ,726,1793,1793 ,0,0,0}, - {2317,2949,2315 ,726,1793,1793 ,0,0,0}, {2950,2317,2318 ,726,726,1793 ,0,0,0}, - {2312,2924,2313 ,1793,1793,726 ,0,0,0}, {2312,2315,2951 ,1793,1793,726 ,0,0,0}, - {2952,2322,2931 ,726,726,1793 ,0,0,0}, {2953,2328,2327 ,1793,1793,1793 ,0,0,0}, - {2947,2923,2922 ,726,1793,1793 ,0,0,0}, {2154,2727,2152 ,1793,1793,1793 ,0,0,0}, - {2149,2724,2722 ,1793,1793,1793 ,0,0,0}, {2158,2160,2733 ,1793,1793,726 ,0,0,0}, - {2155,2730,2728 ,726,726,726 ,0,0,0}, {2739,2161,2919 ,1793,1793,726 ,0,0,0}, - {2919,2926,2739 ,726,1793,1793 ,0,0,0}, {2736,2161,2739 ,726,1793,1793 ,0,0,0}, - {2736,2734,2160 ,726,726,1793 ,0,0,0}, {2742,2740,2926 ,726,726,1793 ,0,0,0}, - {2927,2745,2915 ,1793,726,726 ,0,0,0}, {2915,2742,2926 ,726,726,1793 ,0,0,0}, - {2927,2748,2746 ,1793,726,1793 ,0,0,0}, {2928,2308,2751 ,1793,1793,1793 ,0,0,0}, - {2927,2928,2748 ,1793,1793,726 ,0,0,0}, {2752,2751,2308 ,726,1793,1793 ,0,0,0}, - {2752,2305,2754 ,726,1793,1793 ,0,0,0}, {2757,2305,2303 ,1793,1793,1793 ,0,0,0}, - {2377,2174,2379 ,726,1793,726 ,0,0,0}, {2936,2937,2387 ,726,1793,726 ,0,0,0}, - {2168,2165,2224 ,1793,726,726 ,0,0,0}, {2934,2384,2386 ,726,726,726 ,0,0,0}, - {2935,2384,2933 ,1793,726,726 ,0,0,0}, {2940,2394,2935 ,726,1793,1793 ,0,0,0}, - {2939,2391,2940 ,1793,726,726 ,0,0,0}, {2396,2392,2941 ,1793,1793,726 ,0,0,0}, - {2396,2954,2406 ,1793,1793,726 ,0,0,0}, {2954,2396,2941 ,1793,1793,726 ,0,0,0}, - {2954,2942,2406 ,1793,726,726 ,0,0,0}, {2403,2944,2945 ,1793,726,726 ,0,0,0}, - {2944,2403,2406 ,726,1793,726 ,0,0,0}, {2402,2181,2638 ,726,726,726 ,0,0,0}, - {2946,2181,2402 ,726,726,726 ,0,0,0}, {2946,2402,2400 ,726,726,726 ,0,0,0}, - {2181,2178,2638 ,726,1792,726 ,0,0,0}, {2376,2178,2377 ,1793,1792,726 ,0,0,0}, - {2178,2376,2638 ,1792,1793,726 ,0,0,0}, {2179,2174,2377 ,726,1793,726 ,0,0,0}, - {2172,2175,2379 ,726,726,726 ,0,0,0}, {2174,2172,2379 ,1793,726,726 ,0,0,0}, - {2175,2166,2382 ,726,726,726 ,0,0,0}, {2168,2224,2382 ,1793,726,726 ,0,0,0}, - {2222,2224,2164 ,1793,726,1793 ,0,0,0}, {2186,2221,2183 ,726,1793,726 ,0,0,0}, - {2183,2222,2164 ,726,1793,1793 ,0,0,0}, {2188,2219,2186 ,726,726,726 ,0,0,0}, - {2188,2189,2208 ,726,1793,1793 ,0,0,0}, {2188,2207,2219 ,726,726,726 ,0,0,0}, - {2211,2192,2212 ,726,726,1793 ,0,0,0}, {2208,2189,2211 ,1793,1793,726 ,0,0,0}, - {2214,2194,2195 ,726,1792,726 ,0,0,0}, {2212,2192,2194 ,1793,726,1792 ,0,0,0}, - {2328,2955,2330 ,1793,726,1793 ,0,0,0}, {2919,2918,2923 ,726,726,1793 ,0,0,0}, - {2332,2330,2147 ,1793,1793,1793 ,0,0,0}, {2947,2948,2923 ,726,1793,1793 ,0,0,0}, - {2932,2931,2948 ,1793,1793,1793 ,0,0,0}, {2952,2931,2930 ,726,1793,1793 ,0,0,0}, - {2921,2322,2952 ,1793,726,726 ,0,0,0}, {2950,2318,2921 ,726,1793,1793 ,0,0,0}, - {2949,2317,2950 ,1793,726,726 ,0,0,0}, {2951,2315,2949 ,726,1793,1793 ,0,0,0}, - {2924,2312,2951 ,1793,1793,726 ,0,0,0}, {2311,2313,2925 ,1793,726,1793 ,0,0,0}, - {2929,2323,2925 ,726,1793,1793 ,0,0,0}, {2953,2327,2929 ,1793,1793,726 ,0,0,0}, - {2955,2328,2953 ,726,1793,1793 ,0,0,0}, {2147,2330,2955 ,1793,1793,726 ,0,0,0}, - {2144,2332,2147 ,1793,1793,1793 ,0,0,0}, {2145,2205,2144 ,1793,726,1793 ,0,0,0}, - {2198,2145,2140 ,1793,1793,726 ,0,0,0}, {2145,2198,2205 ,1793,1793,726 ,0,0,0}, - {2138,2199,2198 ,1793,1793,1793 ,0,0,0}, {2203,2201,2134 ,1793,1793,726 ,0,0,0}, - {2718,2131,2130 ,1793,726,726 ,0,0,0}, {2131,2716,2203 ,726,1793,1793 ,0,0,0}, - {2149,2722,2130 ,1793,1793,726 ,0,0,0}, {2721,2718,2130 ,726,1793,726 ,0,0,0}, - {2152,2724,2149 ,1793,1793,1793 ,0,0,0}, {2154,2728,2727 ,1793,726,1793 ,0,0,0}, - {2152,2727,2724 ,1793,1793,1793 ,0,0,0}, {2155,2158,2730 ,726,1793,726 ,0,0,0}, - {2154,2155,2728 ,1793,726,726 ,0,0,0}, {2733,2160,2734 ,726,1793,726 ,0,0,0}, - {2730,2158,2733 ,726,1793,726 ,0,0,0}, {2736,2160,2161 ,726,1793,1793 ,0,0,0}, - {2484,2602,2600 ,730,730,730 ,0,0,0}, {2266,2762,2227 ,730,730,730 ,0,0,0}, - {2337,2670,2669 ,730,730,730 ,0,0,0}, {2596,2479,2597 ,730,730,730 ,0,0,0}, - {2470,2473,2588 ,730,730,730 ,0,0,0}, {2475,2476,2595 ,730,730,730 ,0,0,0}, - {2461,2463,2580 ,730,730,730 ,0,0,0}, {2464,2467,2584 ,730,730,730 ,0,0,0}, - {2565,2568,2419 ,730,730,730 ,0,0,0}, {2455,2457,2575 ,730,730,730 ,0,0,0}, - {2764,2228,2227 ,730,730,730 ,0,0,0}, {2609,2426,2607 ,730,730,730 ,0,0,0}, - {2236,2804,2807 ,730,730,730 ,0,0,0}, {2810,2813,2242 ,730,730,730 ,0,0,0}, - {2798,2801,2230 ,730,730,730 ,0,0,0}, {2804,2236,2234 ,730,730,730 ,0,0,0}, - {2267,2760,2759 ,730,730,730 ,0,0,0}, {2228,2764,2798 ,730,730,730 ,0,0,0}, - {2272,2273,2769 ,730,730,730 ,0,0,0}, {2842,2525,2844 ,730,730,730 ,0,0,0}, - {2770,2276,2773 ,730,730,730 ,0,0,0}, {2273,2770,2769 ,730,730,730 ,0,0,0}, - {2285,2784,2284 ,730,730,730 ,0,0,0}, {2278,2774,2773 ,730,730,730 ,0,0,0}, - {2791,2790,2296 ,730,730,730 ,0,0,0}, {2789,2788,2291 ,730,730,730 ,0,0,0}, - {2297,2300,2794 ,730,730,730 ,0,0,0}, {2956,2708,2711 ,730,730,730 ,0,0,0}, - {2343,2341,2652 ,730,730,730 ,0,0,0}, {2146,2206,2204 ,730,730,730 ,0,0,0}, - {2156,2731,2732 ,730,730,730 ,0,0,0}, {2306,2756,2758 ,730,730,730 ,0,0,0}, - {2796,2304,2758 ,730,730,730 ,0,0,0}, {2957,2958,2750 ,730,730,730 ,0,0,0}, - {2159,2157,2735 ,730,730,730 ,0,0,0}, {2957,2750,2753 ,730,730,730 ,0,0,0}, - {2747,2749,2958 ,730,730,730 ,0,0,0}, {2309,2959,2310 ,730,730,730 ,0,0,0}, - {2758,2304,2306 ,730,730,730 ,0,0,0}, {2670,2337,2350 ,730,730,730 ,0,0,0}, - {2960,2349,2707 ,730,730,730 ,0,0,0}, {2648,2646,2344 ,730,730,730 ,0,0,0}, - {2156,2732,2157 ,730,730,730 ,0,0,0}, {2202,2717,2719 ,730,730,730 ,0,0,0}, - {2300,2302,2796 ,730,730,730 ,0,0,0}, {2200,2133,2197 ,730,730,730 ,0,0,0}, - {2136,2137,2197 ,730,730,730 ,0,0,0}, {2961,2325,2326 ,730,730,730 ,0,0,0}, - {2957,2753,2307 ,730,730,730 ,0,0,0}, {2306,2307,2755 ,730,730,730 ,0,0,0}, - {2962,2747,2958 ,730,730,730 ,0,0,0}, {2743,2744,2963 ,730,730,730 ,0,0,0}, - {2963,2744,2962 ,730,730,730 ,0,0,0}, {2962,2744,2747 ,730,730,730 ,0,0,0}, - {2958,2749,2750 ,730,730,730 ,0,0,0}, {2964,2965,2966 ,730,730,730 ,0,0,0}, - {2215,2216,2193 ,730,730,730 ,0,0,0}, {2753,2755,2307 ,730,730,730 ,0,0,0}, - {2737,2159,2735 ,730,730,730 ,0,0,0}, {2756,2306,2755 ,730,730,730 ,0,0,0}, - {2967,2321,2319 ,730,730,730 ,0,0,0}, {2326,2329,2968 ,730,730,730 ,0,0,0}, - {2331,2206,2143 ,730,730,730 ,0,0,0}, {2329,2331,2142 ,730,730,730 ,0,0,0}, - {2796,2302,2304 ,730,730,730 ,0,0,0}, {2310,2969,2314 ,730,730,730 ,0,0,0}, - {2970,2324,2325 ,730,730,730 ,0,0,0}, {2202,2719,2129 ,730,730,730 ,0,0,0}, - {2314,2971,2316 ,730,730,730 ,0,0,0}, {2153,2731,2156 ,730,730,730 ,0,0,0}, - {2731,2153,2729 ,730,730,730 ,0,0,0}, {2644,2348,2645 ,730,730,730 ,0,0,0}, - {2660,2334,2663 ,730,730,730 ,0,0,0}, {2657,2654,2339 ,730,730,730 ,0,0,0}, - {2678,2676,2353 ,730,730,730 ,0,0,0}, {2666,2333,2337 ,730,730,730 ,0,0,0}, - {2678,2353,2355 ,730,730,730 ,0,0,0}, {2296,2297,2791 ,730,730,730 ,0,0,0}, - {2300,2796,2794 ,730,730,730 ,0,0,0}, {2794,2791,2297 ,730,730,730 ,0,0,0}, - {2810,2240,2809 ,730,730,730 ,0,0,0}, {2789,2291,2294 ,730,730,730 ,0,0,0}, - {2790,2294,2296 ,730,730,730 ,0,0,0}, {2290,2291,2788 ,730,730,730 ,0,0,0}, - {2789,2294,2790 ,730,730,730 ,0,0,0}, {2290,2782,2288 ,730,730,730 ,0,0,0}, - {2781,2285,2288 ,730,730,730 ,0,0,0}, {2788,2782,2290 ,730,730,730 ,0,0,0}, - {2285,2781,2784 ,730,730,730 ,0,0,0}, {2288,2782,2781 ,730,730,730 ,0,0,0}, - {2619,2438,2437 ,730,730,730 ,0,0,0}, {2778,2282,2284 ,730,730,730 ,0,0,0}, - {2282,2777,2279 ,730,730,730 ,0,0,0}, {2777,2774,2279 ,730,730,730 ,0,0,0}, - {2774,2278,2279 ,730,730,730 ,0,0,0}, {2773,2276,2278 ,730,730,730 ,0,0,0}, - {2770,2273,2276 ,730,730,730 ,0,0,0}, {2270,2767,2760 ,730,730,730 ,0,0,0}, - {2272,2769,2767 ,730,730,730 ,0,0,0}, {2267,2759,2266 ,730,730,730 ,0,0,0}, - {2762,2764,2227 ,730,730,730 ,0,0,0}, {2230,2801,2233 ,730,730,730 ,0,0,0}, - {2234,2233,2803 ,730,730,730 ,0,0,0}, {2236,2807,2239 ,730,730,730 ,0,0,0}, - {2234,2803,2804 ,730,730,730 ,0,0,0}, {2239,2809,2240 ,730,730,730 ,0,0,0}, - {2239,2807,2809 ,730,730,730 ,0,0,0}, {2245,2813,2815 ,730,730,730 ,0,0,0}, - {2242,2240,2810 ,730,730,730 ,0,0,0}, {2246,2245,2815 ,730,730,730 ,0,0,0}, - {2246,2815,2816 ,730,730,730 ,0,0,0}, {2248,2816,2819 ,730,730,730 ,0,0,0}, - {2246,2816,2248 ,730,730,730 ,0,0,0}, {2819,2251,2248 ,730,730,730 ,0,0,0}, - {2819,2821,2251 ,730,730,730 ,0,0,0}, {2251,2821,2252 ,730,730,730 ,0,0,0}, - {2233,2801,2803 ,730,730,730 ,0,0,0}, {2254,2252,2822 ,730,730,730 ,0,0,0}, - {2252,2821,2822 ,730,730,730 ,0,0,0}, {2825,2257,2254 ,730,730,730 ,0,0,0}, - {2825,2254,2822 ,730,730,730 ,0,0,0}, {2257,2827,2258 ,730,730,730 ,0,0,0}, - {2258,2828,2260 ,730,730,730 ,0,0,0}, {2828,2258,2827 ,730,730,730 ,0,0,0}, - {2828,2831,2263 ,730,730,730 ,0,0,0}, {2555,2874,2872 ,730,730,730 ,0,0,0}, - {2264,2263,2831 ,730,730,730 ,0,0,0}, {2834,2838,2558 ,730,730,730 ,0,0,0}, - {2557,2877,2874 ,730,730,730 ,0,0,0}, {2230,2228,2798 ,730,730,730 ,0,0,0}, - {2491,2878,2489 ,730,730,730 ,0,0,0}, {2877,2557,2558 ,730,730,730 ,0,0,0}, - {2759,2762,2266 ,730,730,730 ,0,0,0}, {2613,2431,2610 ,730,730,730 ,0,0,0}, - {2434,2432,2615 ,730,730,730 ,0,0,0}, {2432,2431,2613 ,730,730,730 ,0,0,0}, - {2428,2426,2609 ,730,730,730 ,0,0,0}, {2609,2610,2428 ,730,730,730 ,0,0,0}, - {2607,2425,2604 ,730,730,730 ,0,0,0}, {2607,2426,2425 ,730,730,730 ,0,0,0}, - {2570,2604,2422 ,730,730,730 ,0,0,0}, {2425,2422,2604 ,730,730,730 ,0,0,0}, - {2420,2568,2570 ,730,730,730 ,0,0,0}, {2570,2422,2420 ,730,730,730 ,0,0,0}, - {2566,2418,2452 ,730,730,730 ,0,0,0}, {2419,2568,2420 ,730,730,730 ,0,0,0}, - {2452,2455,2573 ,730,730,730 ,0,0,0}, {2418,2566,2565 ,730,730,730 ,0,0,0}, - {2566,2452,2573 ,730,730,730 ,0,0,0}, {2579,2576,2458 ,730,730,730 ,0,0,0}, - {2500,2890,2891 ,730,730,730 ,0,0,0}, {2461,2579,2458 ,730,730,730 ,0,0,0}, - {2457,2458,2576 ,730,730,730 ,0,0,0}, {2583,2464,2584 ,730,730,730 ,0,0,0}, - {2580,2579,2461 ,730,730,730 ,0,0,0}, {2467,2590,2584 ,730,730,730 ,0,0,0}, - {2464,2583,2463 ,730,730,730 ,0,0,0}, {2470,2587,2469 ,730,730,730 ,0,0,0}, - {2469,2587,2590 ,730,730,730 ,0,0,0}, {2594,2588,2473 ,730,730,730 ,0,0,0}, - {2588,2587,2470 ,730,730,730 ,0,0,0}, {2476,2596,2595 ,730,730,730 ,0,0,0}, - {2475,2595,2594 ,730,730,730 ,0,0,0}, {2600,2481,2482 ,730,730,730 ,0,0,0}, - {2481,2597,2479 ,730,730,730 ,0,0,0}, {2600,2482,2484 ,730,730,730 ,0,0,0}, - {2831,2833,2264 ,730,730,730 ,0,0,0}, {2834,2264,2833 ,730,730,730 ,0,0,0}, - {2552,2871,2551 ,730,730,730 ,0,0,0}, {2263,2260,2828 ,730,730,730 ,0,0,0}, - {2557,2874,2555 ,730,730,730 ,0,0,0}, {2257,2825,2827 ,730,730,730 ,0,0,0}, - {2549,2551,2868 ,730,730,730 ,0,0,0}, {2872,2871,2552 ,730,730,730 ,0,0,0}, - {2546,2549,2866 ,730,730,730 ,0,0,0}, {2871,2868,2551 ,730,730,730 ,0,0,0}, - {2865,2545,2546 ,730,730,730 ,0,0,0}, {2862,2543,2545 ,730,730,730 ,0,0,0}, - {2866,2549,2868 ,730,730,730 ,0,0,0}, {2860,2540,2543 ,730,730,730 ,0,0,0}, - {2865,2546,2866 ,730,730,730 ,0,0,0}, {2242,2813,2245 ,730,730,730 ,0,0,0}, - {2865,2862,2545 ,730,730,730 ,0,0,0}, {2859,2856,2539 ,730,730,730 ,0,0,0}, - {2862,2860,2543 ,730,730,730 ,0,0,0}, {2856,2854,2537 ,730,730,730 ,0,0,0}, - {2854,2853,2534 ,730,730,730 ,0,0,0}, {2853,2850,2533 ,730,730,730 ,0,0,0}, - {2540,2859,2539 ,730,730,730 ,0,0,0}, {2850,2848,2531 ,730,730,730 ,0,0,0}, - {2539,2856,2537 ,730,730,730 ,0,0,0}, {2847,2528,2848 ,730,730,730 ,0,0,0}, - {2537,2854,2534 ,730,730,730 ,0,0,0}, {2527,2847,2844 ,730,730,730 ,0,0,0}, - {2534,2853,2533 ,730,730,730 ,0,0,0}, {2525,2842,2490 ,730,730,730 ,0,0,0}, - {2533,2850,2531 ,730,730,730 ,0,0,0}, {2491,2490,2841 ,730,730,730 ,0,0,0}, - {2848,2528,2531 ,730,730,730 ,0,0,0}, {2489,2879,2493 ,730,730,730 ,0,0,0}, - {2527,2528,2847 ,730,730,730 ,0,0,0}, {2616,2434,2615 ,730,730,730 ,0,0,0}, - {2272,2767,2270 ,730,730,730 ,0,0,0}, {2270,2760,2267 ,730,730,730 ,0,0,0}, - {2490,2842,2841 ,730,730,730 ,0,0,0}, {2616,2619,2437 ,730,730,730 ,0,0,0}, - {2491,2841,2878 ,730,730,730 ,0,0,0}, {2619,2621,2438 ,730,730,730 ,0,0,0}, - {2489,2878,2879 ,730,730,730 ,0,0,0}, {2621,2622,2440 ,730,730,730 ,0,0,0}, - {2622,2625,2443 ,730,730,730 ,0,0,0}, {2613,2615,2432 ,730,730,730 ,0,0,0}, - {2625,2627,2444 ,730,730,730 ,0,0,0}, {2437,2434,2616 ,730,730,730 ,0,0,0}, - {2627,2628,2446 ,730,730,730 ,0,0,0}, {2284,2784,2778 ,730,730,730 ,0,0,0}, - {2282,2778,2777 ,730,730,730 ,0,0,0}, {2621,2440,2438 ,730,730,730 ,0,0,0}, - {2413,2631,2633 ,730,730,730 ,0,0,0}, {2622,2443,2440 ,730,730,730 ,0,0,0}, - {2405,2972,2973 ,730,730,730 ,0,0,0}, {2625,2444,2443 ,730,730,730 ,0,0,0}, - {2210,2213,2190 ,730,730,730 ,0,0,0}, {2184,2218,2185 ,730,730,730 ,0,0,0}, - {2449,2631,2414 ,730,730,730 ,0,0,0}, {2368,2637,2639 ,730,730,730 ,0,0,0}, - {2374,2372,2640 ,730,730,730 ,0,0,0}, {2187,2209,2210 ,730,730,730 ,0,0,0}, - {2362,2696,2694 ,730,730,730 ,0,0,0}, {2974,2388,2975 ,730,730,730 ,0,0,0}, - {2637,2368,2375 ,730,730,730 ,0,0,0}, {2356,2687,2684 ,730,730,730 ,0,0,0}, - {2738,2162,2159 ,730,730,730 ,0,0,0}, {2976,2741,2963 ,730,730,730 ,0,0,0}, - {2743,2963,2741 ,730,730,730 ,0,0,0}, {2741,2976,2162 ,730,730,730 ,0,0,0}, - {2977,2978,2979 ,730,730,730 ,0,0,0}, {2741,2162,2738 ,730,730,730 ,0,0,0}, - {2737,2738,2159 ,730,730,730 ,0,0,0}, {2139,2204,2137 ,730,730,730 ,0,0,0}, - {2970,2959,2324 ,730,730,730 ,0,0,0}, {2980,2981,2982 ,730,730,730 ,0,0,0}, - {2644,2702,2348 ,730,730,730 ,0,0,0}, {2334,2658,2339 ,730,730,730 ,0,0,0}, - {2675,2350,2353 ,730,730,730 ,0,0,0}, {2688,2359,2361 ,730,730,730 ,0,0,0}, - {2688,2687,2359 ,730,730,730 ,0,0,0}, {2690,2361,2693 ,730,730,730 ,0,0,0}, - {2684,2682,2356 ,730,730,730 ,0,0,0}, {2682,2681,2355 ,730,730,730 ,0,0,0}, - {2350,2675,2672 ,730,730,730 ,0,0,0}, {2666,2664,2333 ,730,730,730 ,0,0,0}, - {2333,2663,2334 ,730,730,730 ,0,0,0}, {2658,2657,2339 ,730,730,730 ,0,0,0}, - {2652,2651,2343 ,730,730,730 ,0,0,0}, {2648,2344,2343 ,730,730,730 ,0,0,0}, - {2693,2362,2694 ,730,730,730 ,0,0,0}, {2646,2645,2344 ,730,730,730 ,0,0,0}, - {2702,2349,2348 ,730,730,730 ,0,0,0}, {2705,2707,2349 ,730,730,730 ,0,0,0}, - {2713,2983,2956 ,730,730,730 ,0,0,0}, {2983,2713,2714 ,730,730,730 ,0,0,0}, - {2202,2983,2717 ,730,730,730 ,0,0,0}, {2148,2720,2723 ,730,730,730 ,0,0,0}, - {2151,2150,2726 ,730,730,730 ,0,0,0}, {2148,2129,2720 ,730,730,730 ,0,0,0}, - {2714,2717,2983 ,730,730,730 ,0,0,0}, {2711,2713,2956 ,730,730,730 ,0,0,0}, - {2707,2708,2960 ,730,730,730 ,0,0,0}, {2708,2956,2960 ,730,730,730 ,0,0,0}, - {2702,2705,2349 ,730,730,730 ,0,0,0}, {2645,2348,2344 ,730,730,730 ,0,0,0}, - {2648,2343,2651 ,730,730,730 ,0,0,0}, {2341,2339,2654 ,730,730,730 ,0,0,0}, - {2341,2654,2652 ,730,730,730 ,0,0,0}, {2334,2660,2658 ,730,730,730 ,0,0,0}, - {2333,2664,2663 ,730,730,730 ,0,0,0}, {2337,2669,2666 ,730,730,730 ,0,0,0}, - {2350,2672,2670 ,730,730,730 ,0,0,0}, {2353,2676,2675 ,730,730,730 ,0,0,0}, - {2355,2681,2678 ,730,730,730 ,0,0,0}, {2355,2356,2682 ,730,730,730 ,0,0,0}, - {2356,2359,2687 ,730,730,730 ,0,0,0}, {2361,2690,2688 ,730,730,730 ,0,0,0}, - {2361,2362,2693 ,730,730,730 ,0,0,0}, {2362,2374,2696 ,730,730,730 ,0,0,0}, - {2374,2640,2699 ,730,730,730 ,0,0,0}, {2696,2374,2699 ,730,730,730 ,0,0,0}, - {2640,2372,2369 ,730,730,730 ,0,0,0}, {2369,2365,2639 ,730,730,730 ,0,0,0}, - {2639,2640,2369 ,730,730,730 ,0,0,0}, {2191,2190,2213 ,730,730,730 ,0,0,0}, - {2368,2639,2365 ,730,730,730 ,0,0,0}, {2170,2380,2381 ,730,730,730 ,0,0,0}, - {2191,2213,2215 ,730,730,730 ,0,0,0}, {2216,2389,2196 ,730,730,730 ,0,0,0}, - {2215,2193,2191 ,730,730,730 ,0,0,0}, {2216,2196,2193 ,730,730,730 ,0,0,0}, - {2397,2984,2390 ,730,730,730 ,0,0,0}, {2393,2985,2385 ,730,730,730 ,0,0,0}, - {2986,2398,2987 ,730,730,730 ,0,0,0}, {2405,2988,2987 ,730,730,730 ,0,0,0}, - {2220,2182,2223 ,730,730,730 ,0,0,0}, {2989,2404,2990 ,730,730,730 ,0,0,0}, - {2184,2182,2220 ,730,730,730 ,0,0,0}, {2633,2408,2411 ,730,730,730 ,0,0,0}, - {2634,2407,2408 ,730,730,730 ,0,0,0}, {2173,2380,2171 ,730,730,730 ,0,0,0}, - {2381,2167,2170 ,730,730,730 ,0,0,0}, {2173,2180,2378 ,730,730,730 ,0,0,0}, - {2401,2407,2634 ,730,730,730 ,0,0,0}, {2401,2634,2637 ,730,730,730 ,0,0,0}, - {2408,2633,2634 ,730,730,730 ,0,0,0}, {2413,2633,2411 ,730,730,730 ,0,0,0}, - {2414,2631,2413 ,730,730,730 ,0,0,0}, {2628,2631,2449 ,730,730,730 ,0,0,0}, - {2446,2628,2449 ,730,730,730 ,0,0,0}, {2444,2627,2446 ,730,730,730 ,0,0,0}, - {2493,2882,2495 ,730,730,730 ,0,0,0}, {2885,2495,2884 ,730,730,730 ,0,0,0}, - {2428,2610,2431 ,730,730,730 ,0,0,0}, {2888,2496,2885 ,730,730,730 ,0,0,0}, - {2888,2499,2496 ,730,730,730 ,0,0,0}, {2890,2500,2499 ,730,730,730 ,0,0,0}, - {2882,2493,2879 ,730,730,730 ,0,0,0}, {2891,2506,2500 ,730,730,730 ,0,0,0}, - {2884,2495,2882 ,730,730,730 ,0,0,0}, {2418,2565,2419 ,730,730,730 ,0,0,0}, - {2502,2506,2894 ,730,730,730 ,0,0,0}, {2496,2495,2885 ,730,730,730 ,0,0,0}, - {2503,2502,2896 ,730,730,730 ,0,0,0}, {2888,2890,2499 ,730,730,730 ,0,0,0}, - {2509,2503,2897 ,730,730,730 ,0,0,0}, {2457,2576,2575 ,730,730,730 ,0,0,0}, - {2455,2575,2573 ,730,730,730 ,0,0,0}, {2506,2891,2894 ,730,730,730 ,0,0,0}, - {2510,2509,2900 ,730,730,730 ,0,0,0}, {2510,2900,2902 ,730,730,730 ,0,0,0}, - {2894,2896,2502 ,730,730,730 ,0,0,0}, {2463,2583,2580 ,730,730,730 ,0,0,0}, - {2503,2896,2897 ,730,730,730 ,0,0,0}, {2902,2903,2513 ,730,730,730 ,0,0,0}, - {2906,2519,2903 ,730,730,730 ,0,0,0}, {2897,2900,2509 ,730,730,730 ,0,0,0}, - {2513,2510,2902 ,730,730,730 ,0,0,0}, {2908,2517,2906 ,730,730,730 ,0,0,0}, - {2467,2469,2590 ,730,730,730 ,0,0,0}, {2909,2515,2908 ,730,730,730 ,0,0,0}, - {2519,2513,2903 ,730,730,730 ,0,0,0}, {2473,2475,2594 ,730,730,730 ,0,0,0}, - {2906,2517,2519 ,730,730,730 ,0,0,0}, {2909,2912,2520 ,730,730,730 ,0,0,0}, - {2476,2479,2596 ,730,730,730 ,0,0,0}, {2908,2515,2517 ,730,730,730 ,0,0,0}, - {2522,2520,2912 ,730,730,730 ,0,0,0}, {2522,2914,2485 ,730,730,730 ,0,0,0}, - {2597,2481,2600 ,730,730,730 ,0,0,0}, {2522,2912,2914 ,730,730,730 ,0,0,0}, - {2564,2484,2485 ,730,730,730 ,0,0,0}, {2602,2484,2564 ,730,730,730 ,0,0,0}, - {2914,2562,2485 ,730,730,730 ,0,0,0}, {2564,2485,2562 ,730,730,730 ,0,0,0}, - {2909,2520,2515 ,730,730,730 ,0,0,0}, {2525,2527,2844 ,730,730,730 ,0,0,0}, - {2859,2540,2860 ,730,730,730 ,0,0,0}, {2872,2552,2555 ,730,730,730 ,0,0,0}, - {2834,2558,2264 ,730,730,730 ,0,0,0}, {2838,2877,2558 ,730,730,730 ,0,0,0}, - {2185,2217,2187 ,730,730,730 ,0,0,0}, {2991,2393,2395 ,730,730,730 ,0,0,0}, - {2397,2986,2984 ,730,730,730 ,0,0,0}, {2187,2210,2190 ,730,730,730 ,0,0,0}, - {2187,2217,2209 ,730,730,730 ,0,0,0}, {2185,2218,2217 ,730,730,730 ,0,0,0}, - {2184,2220,2218 ,730,730,730 ,0,0,0}, {2399,2401,2992 ,730,730,730 ,0,0,0}, - {2163,2169,2223 ,730,730,730 ,0,0,0}, {2163,2223,2182 ,730,730,730 ,0,0,0}, - {2381,2169,2167 ,730,730,730 ,0,0,0}, {2169,2381,2223 ,730,730,730 ,0,0,0}, - {2176,2401,2637 ,730,730,730 ,0,0,0}, {2173,2378,2380 ,730,730,730 ,0,0,0}, - {2170,2171,2380 ,730,730,730 ,0,0,0}, {2177,2378,2180 ,730,730,730 ,0,0,0}, - {2637,2177,2176 ,730,730,730 ,0,0,0}, {2375,2177,2637 ,730,730,730 ,0,0,0}, - {2177,2375,2378 ,730,730,730 ,0,0,0}, {2176,2992,2401 ,730,730,730 ,0,0,0}, - {2399,2990,2404 ,730,730,730 ,0,0,0}, {2992,2990,2399 ,730,730,730 ,0,0,0}, - {2404,2972,2405 ,730,730,730 ,0,0,0}, {2989,2972,2404 ,730,730,730 ,0,0,0}, - {2973,2988,2405 ,730,730,730 ,0,0,0}, {2987,2398,2405 ,730,730,730 ,0,0,0}, - {2986,2397,2398 ,730,730,730 ,0,0,0}, {2993,2390,2984 ,730,730,730 ,0,0,0}, - {2395,2993,2991 ,730,730,730 ,0,0,0}, {2993,2395,2390 ,730,730,730 ,0,0,0}, - {2991,2994,2393 ,730,730,730 ,0,0,0}, {2985,2975,2385 ,730,730,730 ,0,0,0}, - {2994,2985,2393 ,730,730,730 ,0,0,0}, {2388,2974,2389 ,730,730,730 ,0,0,0}, - {2385,2975,2388 ,730,730,730 ,0,0,0}, {2196,2389,2974 ,730,730,730 ,0,0,0}, - {2200,2202,2135 ,730,730,730 ,0,0,0}, {2732,2735,2157 ,730,730,730 ,0,0,0}, - {2319,2316,2995 ,730,730,730 ,0,0,0}, {2151,2726,2729 ,730,730,730 ,0,0,0}, - {2729,2153,2151 ,730,730,730 ,0,0,0}, {2725,2726,2150 ,730,730,730 ,0,0,0}, - {2725,2148,2723 ,730,730,730 ,0,0,0}, {2148,2725,2150 ,730,730,730 ,0,0,0}, - {2720,2129,2719 ,730,730,730 ,0,0,0}, {2129,2135,2202 ,730,730,730 ,0,0,0}, - {2135,2133,2200 ,730,730,730 ,0,0,0}, {2133,2136,2197 ,730,730,730 ,0,0,0}, - {2137,2204,2197 ,730,730,730 ,0,0,0}, {2146,2204,2139 ,730,730,730 ,0,0,0}, - {2143,2206,2146 ,730,730,730 ,0,0,0}, {2142,2331,2143 ,730,730,730 ,0,0,0}, - {2968,2329,2142 ,730,730,730 ,0,0,0}, {2961,2326,2968 ,730,730,730 ,0,0,0}, - {2970,2325,2961 ,730,730,730 ,0,0,0}, {2309,2324,2959 ,730,730,730 ,0,0,0}, - {2969,2310,2959 ,730,730,730 ,0,0,0}, {2971,2314,2969 ,730,730,730 ,0,0,0}, - {2995,2316,2971 ,730,730,730 ,0,0,0}, {2996,2321,2967 ,730,730,730 ,0,0,0}, - {2967,2319,2995 ,730,730,730 ,0,0,0}, {2320,2996,2982 ,730,730,730 ,0,0,0}, - {2996,2320,2321 ,730,730,730 ,0,0,0}, {2980,2965,2981 ,730,730,730 ,0,0,0}, - {2320,2982,2981 ,730,730,730 ,0,0,0}, {2964,2966,2977 ,730,730,730 ,0,0,0}, - {2981,2965,2964 ,730,730,730 ,0,0,0}, {2977,2979,2976 ,730,730,730 ,0,0,0}, - {2977,2966,2978 ,730,730,730 ,0,0,0}, {2162,2976,2979 ,730,730,730 ,0,0,0}, - {2976,2963,2926 ,2553,2554,2555 ,0,0,0}, {2977,2919,2923 ,2556,2557,2558 ,0,0,0}, - {2919,2976,2926 ,2557,2553,2555 ,0,0,0}, {2976,2919,2977 ,2553,2557,2556 ,0,0,0}, - {2981,2948,2931 ,2559,2560,2561 ,0,0,0}, {2977,2923,2964 ,2556,2558,2562 ,0,0,0}, - {2981,2964,2948 ,2559,2562,2560 ,0,0,0}, {2931,2322,2320 ,2561,1982,1982 ,0,0,0}, - {2931,2320,2981 ,2561,1982,2559 ,0,0,0}, {2948,2964,2923 ,2560,2562,2558 ,0,0,0}, - {2963,2915,2926 ,2554,2563,2555 ,0,0,0}, {2927,2915,2962 ,2564,2563,2565 ,0,0,0}, - {2963,2962,2915 ,2554,2565,2563 ,0,0,0}, {2958,2928,2927 ,2566,2567,2564 ,0,0,0}, - {2927,2962,2958 ,2564,2565,2566 ,0,0,0}, {2928,2957,2308 ,2567,2568,1972 ,0,0,0}, - {2957,2928,2958 ,2568,2567,2566 ,0,0,0}, {2957,2307,2308 ,2568,1972,1972 ,0,0,0}, - {2203,2920,2983 ,1879,2569,2569 ,0,0,0}, {2916,2349,2960 ,2570,2008,2571 ,0,0,0}, - {2960,2956,2917 ,2571,2572,2572 ,0,0,0}, {2347,2349,2916 ,2008,2008,2570 ,0,0,0}, - {2920,2956,2983 ,2569,2572,2569 ,0,0,0}, {2956,2920,2917 ,2572,2569,2572 ,0,0,0}, - {2916,2960,2917 ,2570,2571,2572 ,0,0,0}, {2983,2202,2203 ,2569,1879,1879 ,0,0,0}, - {2181,2946,2992 ,1077,1076,1075 ,0,0,0}, {2944,2972,2945 ,1070,1069,1071 ,0,0,0}, - {2989,2990,2938 ,1072,1073,1074 ,0,0,0}, {2987,2954,2986 ,1064,1047,126 ,0,0,0}, - {2943,2942,2988 ,1068,1065,1066 ,0,0,0}, {2940,2991,2993 ,1049,1053,1050 ,0,0,0}, - {2939,2984,2941 ,1051,1052,1048 ,0,0,0}, {2933,2985,2994 ,1055,1056,1054 ,0,0,0}, - {2994,2991,2935 ,1054,1053,1058 ,0,0,0}, {2985,2934,2975 ,1056,1057,1062 ,0,0,0}, - {2934,2985,2933 ,1057,1056,1055 ,0,0,0}, {2974,2975,2937 ,1059,1062,1061 ,0,0,0}, - {2934,2937,2975 ,1057,1061,1062 ,0,0,0}, {2936,2196,2974 ,1060,21,1059 ,0,0,0}, - {2974,2937,2936 ,1059,1061,1060 ,0,0,0}, {2195,2196,2936 ,1063,21,1060 ,0,0,0}, - {2939,2940,2993 ,1051,1049,1050 ,0,0,0}, {2991,2940,2935 ,1053,1049,1058 ,0,0,0}, - {2933,2994,2935 ,1055,1054,1058 ,0,0,0}, {2939,2993,2984 ,1051,1050,1052 ,0,0,0}, - {2941,2984,2986 ,1048,1052,126 ,0,0,0}, {2954,2987,2942 ,1047,1064,1065 ,0,0,0}, - {2954,2941,2986 ,1047,1048,126 ,0,0,0}, {2943,2988,2973 ,1068,1066,1067 ,0,0,0}, - {2988,2942,2987 ,1066,1065,1064 ,0,0,0}, {2973,2972,2944 ,1067,1069,1070 ,0,0,0}, - {2973,2944,2943 ,1067,1070,1068 ,0,0,0}, {2938,2945,2989 ,1074,1071,1072 ,0,0,0}, - {2972,2989,2945 ,1069,1072,1071 ,0,0,0}, {2990,2946,2938 ,1073,1076,1074 ,0,0,0}, - {2181,2992,2176 ,1077,1075,1078 ,0,0,0}, {2946,2990,2992 ,1076,1073,1075 ,0,0,0}, - {2147,2955,2968 ,1107,1106,1105 ,0,0,0}, {2925,2959,2929 ,1102,1101,1103 ,0,0,0}, - {2970,2961,2953 ,1072,1104,1074 ,0,0,0}, {2995,2949,2967 ,1096,1079,126 ,0,0,0}, - {2924,2951,2971 ,1100,1097,1098 ,0,0,0}, {2952,2980,2982 ,1080,1084,1081 ,0,0,0}, - {2921,2996,2950 ,1082,1083,126 ,0,0,0}, {2932,2966,2965 ,1086,1087,1085 ,0,0,0}, - {2965,2980,2930 ,1085,1084,1089 ,0,0,0}, {2966,2947,2978 ,1087,1088,1094 ,0,0,0}, - {2947,2966,2932 ,1088,1087,1086 ,0,0,0}, {2979,2978,2922 ,1091,1094,1093 ,0,0,0}, - {2947,2922,2978 ,1088,1093,1094 ,0,0,0}, {2918,2162,2979 ,1092,1090,1091 ,0,0,0}, - {2979,2922,2918 ,1091,1093,1092 ,0,0,0}, {2161,2162,2918 ,1095,1090,1092 ,0,0,0}, - {2921,2952,2982 ,1082,1080,1081 ,0,0,0}, {2980,2952,2930 ,1084,1080,1089 ,0,0,0}, - {2932,2965,2930 ,1086,1085,1089 ,0,0,0}, {2921,2982,2996 ,1082,1081,1083 ,0,0,0}, - {2950,2996,2967 ,126,1083,126 ,0,0,0}, {2949,2995,2951 ,1079,1096,1097 ,0,0,0}, - {2949,2950,2967 ,1079,126,126 ,0,0,0}, {2924,2971,2969 ,1100,1098,1099 ,0,0,0}, - {2971,2951,2995 ,1098,1097,1096 ,0,0,0}, {2969,2959,2925 ,1099,1101,1102 ,0,0,0}, - {2969,2925,2924 ,1099,1102,1100 ,0,0,0}, {2953,2929,2970 ,1074,1103,1072 ,0,0,0}, - {2959,2970,2929 ,1101,1072,1103 ,0,0,0}, {2961,2955,2953 ,1104,1106,1074 ,0,0,0}, - {2147,2968,2142 ,1107,1105,324 ,0,0,0}, {2955,2961,2968 ,1106,1104,1105 ,0,0,0} -// BladeProtector2.prt - , {2997,2998,2999 ,324,2573,2574 ,0,0,0}, {3000,3001,3002 ,2575,2576,2577 ,0,0,0}, - {3003,2997,2999 ,2578,324,2574 ,0,0,0}, {3002,3001,3003 ,2577,2576,2578 ,0,0,0}, - {3001,3000,3004 ,2576,2575,2579 ,0,0,0}, {2999,3002,3003 ,2574,2577,2578 ,0,0,0}, - {3005,3006,3007 ,2580,2581,2582 ,0,0,0}, {3006,3008,3007 ,2581,2583,2582 ,0,0,0}, - {3004,3009,3005 ,2579,2584,2580 ,0,0,0}, {3006,3005,3009 ,2581,2580,2584 ,0,0,0}, - {3010,3011,3012 ,126,2585,2586 ,0,0,0}, {3013,3014,3008 ,2587,2588,2583 ,0,0,0}, - {3011,3014,3013 ,2585,2588,2587 ,0,0,0}, {3011,3013,3012 ,2585,2587,2586 ,0,0,0}, - {3012,3015,3010 ,2586,2589,126 ,0,0,0}, {3007,3008,3014 ,2582,2583,2588 ,0,0,0}, - {3004,3000,3009 ,2579,2575,2584 ,0,0,0}, {2997,3016,2998 ,324,2590,2573 ,0,0,0}, - {3017,3016,3018 ,2591,2590,2592 ,0,0,0}, {3016,3017,2998 ,2590,2591,2573 ,0,0,0}, - {3019,3020,3018 ,2593,2594,2592 ,0,0,0}, {3017,3018,3020 ,2591,2592,2594 ,0,0,0}, - {3019,3021,3022 ,2593,2595,2596 ,0,0,0}, {3022,3020,3019 ,2596,2594,2593 ,0,0,0}, - {3023,3021,3024 ,2597,2595,2598 ,0,0,0}, {3021,3023,3022 ,2595,2597,2596 ,0,0,0}, - {3025,3026,3024 ,2599,139,2598 ,0,0,0}, {3023,3024,3026 ,2597,2598,139 ,0,0,0}, - {3025,3027,3028 ,2599,2600,53 ,0,0,0}, {3028,3026,3025 ,53,139,2599 ,0,0,0}, - {3029,3027,3030 ,2601,2600,2602 ,0,0,0}, {3027,3029,3028 ,2600,2601,53 ,0,0,0}, - {3031,3032,3033 ,324,2603,324 ,0,0,0}, {3034,3035,3036 ,2604,2605,2606 ,0,0,0}, - {3037,3031,3033 ,2607,324,324 ,0,0,0}, {3036,3035,3037 ,2606,2605,2607 ,0,0,0}, - {3035,3034,3038 ,2605,2604,2608 ,0,0,0}, {3033,3036,3037 ,324,2606,2607 ,0,0,0}, - {3039,3040,3041 ,2609,2610,2611 ,0,0,0}, {3040,3042,3041 ,2610,2612,2611 ,0,0,0}, - {3038,3043,3039 ,2608,2613,2609 ,0,0,0}, {3040,3039,3043 ,2610,2609,2613 ,0,0,0}, - {3044,3045,3046 ,2614,2615,2616 ,0,0,0}, {3047,3048,3042 ,2617,2618,2612 ,0,0,0}, - {3045,3048,3047 ,2615,2618,2617 ,0,0,0}, {3045,3047,3046 ,2615,2617,2616 ,0,0,0}, - {3046,3049,3044 ,2616,2619,2614 ,0,0,0}, {3041,3042,3048 ,2611,2612,2618 ,0,0,0}, - {3038,3034,3043 ,2608,2604,2613 ,0,0,0}, {3031,3050,3032 ,324,2620,2603 ,0,0,0}, - {3051,3050,3052 ,2621,2620,2622 ,0,0,0}, {3050,3051,3032 ,2620,2621,2603 ,0,0,0}, - {3053,3054,3052 ,2623,2624,2622 ,0,0,0}, {3051,3052,3054 ,2621,2622,2624 ,0,0,0}, - {3053,3055,3056 ,2623,2625,2626 ,0,0,0}, {3056,3054,3053 ,2626,2624,2623 ,0,0,0}, - {3057,3055,3058 ,2627,2625,2598 ,0,0,0}, {3055,3057,3056 ,2625,2627,2626 ,0,0,0}, - {3059,3060,3058 ,111,139,2598 ,0,0,0}, {3057,3058,3060 ,2627,2598,139 ,0,0,0}, - {3059,3061,3062 ,111,2628,2629 ,0,0,0}, {3062,3060,3059 ,2629,139,111 ,0,0,0}, - {3063,3061,3064 ,2630,2628,82 ,0,0,0}, {3061,3063,3062 ,2628,2630,2629 ,0,0,0}, - {3065,3066,3067 ,2631,2632,2631 ,0,0,0}, {3068,3069,3070 ,2633,2634,2635 ,0,0,0}, - {3068,3067,3069 ,2633,2631,2634 ,0,0,0}, {3070,3069,3071 ,2635,2634,2635 ,0,0,0}, - {3067,3068,3065 ,2631,2633,2631 ,0,0,0}, {3072,3066,3065 ,2632,2632,2631 ,0,0,0}, - {3073,3072,3074 ,2636,2632,2636 ,0,0,0}, {3072,3073,3066 ,2632,2636,2632 ,0,0,0}, - {3075,3076,3077 ,1273,1278,1273 ,0,0,0}, {3078,3076,3079 ,1278,1278,1276 ,0,0,0}, - {3076,3078,3077 ,1278,1278,1273 ,0,0,0}, {3080,3081,3079 ,1277,1276,1276 ,0,0,0}, - {3078,3079,3081 ,1278,1276,1276 ,0,0,0}, {3080,3082,3083 ,1277,2637,1277 ,0,0,0}, - {3083,3081,3080 ,1277,1276,1277 ,0,0,0}, {3082,3084,3083 ,2637,2638,1277 ,0,0,0}, - {3085,3075,3077 ,1274,1273,1273 ,0,0,0}, {3086,3087,3085 ,1275,1274,1274 ,0,0,0}, - {3075,3085,3087 ,1273,1274,1274 ,0,0,0}, {3086,3088,3089 ,1275,1270,1275 ,0,0,0}, - {3089,3087,3086 ,1275,1274,1275 ,0,0,0}, {3090,3088,3091 ,1270,1270,2639 ,0,0,0}, - {3088,3090,3089 ,1270,1270,1275 ,0,0,0}, {3090,3091,3092 ,1270,2639,2640 ,0,0,0}, - {3093,3094,3095 ,2641,2642,2643 ,0,0,0}, {3096,3097,3093 ,2644,2645,2641 ,0,0,0}, - {3093,3095,3096 ,2641,2643,2644 ,0,0,0}, {3097,3098,3099 ,2645,2646,2647 ,0,0,0}, - {3098,3097,3096 ,2646,2645,2644 ,0,0,0}, {3100,3099,3101 ,2648,2647,2649 ,0,0,0}, - {3098,3101,3099 ,2646,2649,2647 ,0,0,0}, {3102,3103,3100 ,2650,2651,2648 ,0,0,0}, - {3100,3101,3102 ,2648,2649,2650 ,0,0,0}, {3103,3104,3105 ,2651,2652,2653 ,0,0,0}, - {3104,3103,3102 ,2652,2651,2650 ,0,0,0}, {3106,3105,3107 ,2654,2653,2655 ,0,0,0}, - {3104,3107,3105 ,2652,2655,2653 ,0,0,0}, {3108,3109,3106 ,2656,2657,2654 ,0,0,0}, - {3106,3107,3108 ,2654,2655,2656 ,0,0,0}, {3109,3110,3111 ,2657,2658,2659 ,0,0,0}, - {3110,3109,3108 ,2658,2657,2656 ,0,0,0}, {3112,3111,3113 ,2660,2659,2661 ,0,0,0}, - {3110,3113,3111 ,2658,2661,2659 ,0,0,0}, {3114,3115,3112 ,2662,2663,2660 ,0,0,0}, - {3112,3113,3114 ,2660,2661,2662 ,0,0,0}, {3115,3116,3117 ,2663,2664,2665 ,0,0,0}, - {3116,3115,3114 ,2664,2663,2662 ,0,0,0}, {3118,3117,3119 ,2666,2665,2667 ,0,0,0}, - {3116,3119,3117 ,2664,2667,2665 ,0,0,0}, {3120,3121,3118 ,2668,2669,2666 ,0,0,0}, - {3118,3119,3120 ,2666,2667,2668 ,0,0,0}, {3121,3122,3123 ,2669,2670,2671 ,0,0,0}, - {3122,3121,3120 ,2670,2669,2668 ,0,0,0}, {3124,3123,3125 ,2672,2671,2673 ,0,0,0}, - {3122,3125,3123 ,2670,2673,2671 ,0,0,0}, {3126,3127,3124 ,2674,2675,2672 ,0,0,0}, - {3124,3125,3126 ,2672,2673,2674 ,0,0,0}, {3127,3128,3129 ,2675,2676,2677 ,0,0,0}, - {3128,3127,3126 ,2676,2675,2674 ,0,0,0}, {3130,3129,3131 ,2678,2677,2679 ,0,0,0}, - {3128,3131,3129 ,2676,2679,2677 ,0,0,0}, {3132,3133,3130 ,2680,2680,2678 ,0,0,0}, - {3130,3131,3132 ,2678,2679,2680 ,0,0,0}, {3095,3094,3134 ,2643,2642,2681 ,0,0,0}, - {3135,3134,3136 ,2682,2681,2683 ,0,0,0}, {3094,3136,3134 ,2642,2683,2681 ,0,0,0}, - {3137,3138,3135 ,2684,2685,2682 ,0,0,0}, {3135,3136,3137 ,2682,2683,2684 ,0,0,0}, - {3138,3139,3140 ,2685,2686,2687 ,0,0,0}, {3139,3138,3137 ,2686,2685,2684 ,0,0,0}, - {3141,3140,3142 ,2688,2687,2689 ,0,0,0}, {3139,3142,3140 ,2686,2689,2687 ,0,0,0}, - {3143,3144,3141 ,2690,2691,2688 ,0,0,0}, {3141,3142,3143 ,2688,2689,2690 ,0,0,0}, - {3144,3145,3146 ,2691,2692,2693 ,0,0,0}, {3145,3144,3143 ,2692,2691,2690 ,0,0,0}, - {3147,3146,3148 ,2694,2693,2695 ,0,0,0}, {3145,3148,3146 ,2692,2695,2693 ,0,0,0}, - {3149,3150,3147 ,2696,2697,2694 ,0,0,0}, {3147,3148,3149 ,2694,2695,2696 ,0,0,0}, - {3150,3151,3152 ,2697,2698,2699 ,0,0,0}, {3151,3150,3149 ,2698,2697,2696 ,0,0,0}, - {3153,3152,3154 ,2700,2699,2701 ,0,0,0}, {3151,3154,3152 ,2698,2701,2699 ,0,0,0}, - {3155,3156,3153 ,2702,2703,2700 ,0,0,0}, {3153,3154,3155 ,2700,2701,2702 ,0,0,0}, - {3156,3157,3158 ,2703,2704,2705 ,0,0,0}, {3157,3156,3155 ,2704,2703,2702 ,0,0,0}, - {3159,3158,3160 ,2706,2705,2707 ,0,0,0}, {3157,3160,3158 ,2704,2707,2705 ,0,0,0}, - {3161,3162,3159 ,2708,2709,2706 ,0,0,0}, {3159,3160,3161 ,2706,2707,2708 ,0,0,0}, - {3162,3163,3164 ,2709,2710,2711 ,0,0,0}, {3163,3162,3161 ,2710,2709,2708 ,0,0,0}, - {3165,3164,3166 ,2712,2711,2713 ,0,0,0}, {3163,3166,3164 ,2710,2713,2711 ,0,0,0}, - {3167,3168,3165 ,2714,2715,2712 ,0,0,0}, {3165,3166,3167 ,2712,2713,2714 ,0,0,0}, - {3168,3169,3170 ,2715,2716,2717 ,0,0,0}, {3169,3168,3167 ,2716,2715,2714 ,0,0,0}, - {3169,3171,3170 ,2716,2718,2717 ,0,0,0}, {3170,3171,3172 ,2717,2718,2719 ,0,0,0}, - {3173,3174,3171 ,2720,2720,2721 ,0,0,0}, {3173,3175,3174 ,2720,2722,2720 ,0,0,0}, - {3175,3173,3176 ,2722,2720,2722 ,0,0,0}, {3172,3171,3174 ,82,2721,2720 ,0,0,0}, - {3177,3178,3179 ,2038,2723,2038 ,0,0,0}, {3180,3181,3178 ,2724,2725,2723 ,0,0,0}, - {3178,3181,3179 ,2723,2725,2038 ,0,0,0}, {3182,3183,3180 ,2726,2727,2724 ,0,0,0}, - {3180,3178,3182 ,2724,2723,2726 ,0,0,0}, {3183,3184,3185 ,2727,2728,2729 ,0,0,0}, - {3184,3183,3182 ,2728,2727,2726 ,0,0,0}, {3186,3185,3187 ,2730,2729,2731 ,0,0,0}, - {3184,3187,3185 ,2728,2731,2729 ,0,0,0}, {3188,3186,3189 ,2732,2730,2733 ,0,0,0}, - {3186,3187,3189 ,2730,2731,2733 ,0,0,0}, {3190,3186,3188 ,2732,2730,2732 ,0,0,0}, - {3191,3177,3179 ,2734,2038,2038 ,0,0,0}, {3192,3191,3193 ,2735,2734,2736 ,0,0,0}, - {3192,3177,3191 ,2735,2038,2734 ,0,0,0}, {3194,3193,3195 ,2737,2736,2738 ,0,0,0}, - {3191,3195,3193 ,2734,2738,2736 ,0,0,0}, {3196,3197,3194 ,2739,2740,2737 ,0,0,0}, - {3194,3195,3196 ,2737,2738,2739 ,0,0,0}, {3197,3198,3199 ,2740,2741,2742 ,0,0,0}, - {3198,3197,3196 ,2741,2740,2739 ,0,0,0}, {3199,3200,3073 ,2742,2743,2636 ,0,0,0}, - {3198,3200,3199 ,2741,2743,2742 ,0,0,0}, {3199,3073,3074 ,2742,2636,2636 ,0,0,0}, - {3201,3202,3203 ,2744,2745,2746 ,0,0,0}, {3201,3204,3205 ,2744,2747,2748 ,0,0,0}, - {3203,3202,3206 ,2746,2745,2749 ,0,0,0}, {3206,3202,3207 ,2749,2745,2750 ,0,0,0}, - {3206,3207,3208 ,2749,2750,2751 ,0,0,0}, {3209,3208,3207 ,2752,2751,2750 ,0,0,0}, - {3208,3209,3210 ,2751,2752,2753 ,0,0,0}, {3211,3210,3209 ,2754,2753,2752 ,0,0,0}, - {3211,3212,3213 ,2754,2755,2756 ,0,0,0}, {3210,3211,3213 ,2753,2754,2756 ,0,0,0}, - {3203,3204,3201 ,2746,2747,2744 ,0,0,0}, {3213,3212,3214 ,2756,2755,2757 ,0,0,0}, - {3215,3214,3216 ,2758,2757,2759 ,0,0,0}, {3216,3214,3212 ,2759,2757,2755 ,0,0,0}, - {3215,3216,3217 ,2758,2759,2758 ,0,0,0}, {3218,3205,3219 ,2760,2748,2761 ,0,0,0}, - {3204,3219,3205 ,2747,2761,2748 ,0,0,0}, {3220,3221,3218 ,2762,2763,2760 ,0,0,0}, - {3218,3219,3220 ,2760,2761,2762 ,0,0,0}, {3221,3222,3223 ,2763,2764,2765 ,0,0,0}, - {3222,3221,3220 ,2764,2763,2762 ,0,0,0}, {3224,3223,3225 ,2766,2765,2767 ,0,0,0}, - {3222,3225,3223 ,2764,2767,2765 ,0,0,0}, {3226,3227,3224 ,2768,2769,2766 ,0,0,0}, - {3224,3225,3226 ,2766,2767,2768 ,0,0,0}, {3227,3228,3229 ,2769,2770,2771 ,0,0,0}, - {3228,3227,3226 ,2770,2769,2768 ,0,0,0}, {3230,3229,3231 ,2772,2771,2773 ,0,0,0}, - {3228,3231,3229 ,2770,2773,2771 ,0,0,0}, {3230,3231,3232 ,2772,2773,2772 ,0,0,0}, - {3233,3234,3235 ,2774,2775,2774 ,0,0,0}, {3235,3236,3233 ,2774,2776,2774 ,0,0,0}, - {3237,3238,3234 ,2775,2777,2775 ,0,0,0}, {3239,3236,3235 ,2776,2776,2774 ,0,0,0}, - {3233,3237,3234 ,2774,2775,2775 ,0,0,0}, {3237,3240,3238 ,2775,2777,2777 ,0,0,0}, - {3241,3240,3242 ,2778,2777,2778 ,0,0,0}, {3242,3230,3232 ,2778,2772,2772 ,0,0,0}, - {3241,3238,3240 ,2778,2777,2777 ,0,0,0}, {3242,3232,3241 ,2778,2772,2778 ,0,0,0}, - {3243,3239,3244 ,2779,2776,2779 ,0,0,0}, {3239,3243,3236 ,2776,2779,2776 ,0,0,0}, - {3245,3246,3244 ,2780,2780,2779 ,0,0,0}, {3243,3244,3246 ,2779,2779,2780 ,0,0,0}, - {3245,3247,3248 ,2780,2781,2781 ,0,0,0}, {3248,3246,3245 ,2781,2780,2780 ,0,0,0}, - {3249,3247,3250 ,2782,2781,2782 ,0,0,0}, {3247,3249,3248 ,2781,2782,2781 ,0,0,0}, - {3249,3250,3091 ,2782,2782,2783 ,0,0,0}, {3091,3250,3092 ,2783,2782,2784 ,0,0,0}, - {3251,3084,3082 ,1888,2785,2786 ,0,0,0}, {3252,3253,3254 ,1207,1886,1886 ,0,0,0}, - {3255,3256,3257 ,1887,1887,1888 ,0,0,0}, {3258,3259,3260 ,1882,1882,1883 ,0,0,0}, - {3261,3262,3263 ,1207,1881,1881 ,0,0,0}, {3264,3265,3260 ,2787,1883,1883 ,0,0,0}, - {3258,3260,3265 ,1882,1883,1883 ,0,0,0}, {3266,3265,3264 ,2788,1883,2787 ,0,0,0}, - {3262,3259,3263 ,1881,1882,1881 ,0,0,0}, {3263,3259,3258 ,1881,1882,1882 ,0,0,0}, - {3261,3253,3252 ,1207,1886,1207 ,0,0,0}, {3261,3252,3262 ,1207,1207,1881 ,0,0,0}, - {3254,3256,3255 ,1886,1887,1887 ,0,0,0}, {3253,3256,3254 ,1886,1887,1886 ,0,0,0}, - {3251,3257,3084 ,1888,1888,2785 ,0,0,0}, {3255,3257,3251 ,1887,1888,1888 ,0,0,0}, - {3267,3268,3269 ,2789,2789,2790 ,0,0,0}, {3269,3268,3270 ,2790,2789,2790 ,0,0,0}, - {3268,3267,3271 ,2789,2789,2791 ,0,0,0}, {3272,3271,3267 ,2792,2791,2789 ,0,0,0}, - {3273,3274,3272 ,2793,2793,2792 ,0,0,0}, {3275,3269,3270 ,2794,2790,2790 ,0,0,0}, - {3266,3264,3273 ,2795,2796,2793 ,0,0,0}, {3274,3273,3264 ,2793,2793,2796 ,0,0,0}, - {3272,3274,3271 ,2792,2793,2791 ,0,0,0}, {3276,3275,3277 ,2797,2794,2794 ,0,0,0}, - {3270,3277,3275 ,2790,2794,2794 ,0,0,0}, {3278,3279,3276 ,2797,2798,2797 ,0,0,0}, - {3276,3277,3278 ,2797,2794,2797 ,0,0,0}, {3279,3280,3281 ,2798,2798,2799 ,0,0,0}, - {3280,3279,3278 ,2798,2798,2797 ,0,0,0}, {3282,3281,3283 ,2800,2799,2799 ,0,0,0}, - {3280,3283,3281 ,2798,2799,2799 ,0,0,0}, {3282,3283,3284 ,2800,2799,2800 ,0,0,0}, - {3285,3286,3287 ,2801,2801,2802 ,0,0,0}, {3288,3289,3287 ,2803,2804,2802 ,0,0,0}, - {3285,3287,3289 ,2801,2802,2804 ,0,0,0}, {3288,3290,3291 ,2803,2805,2806 ,0,0,0}, - {3291,3289,3288 ,2806,2804,2803 ,0,0,0}, {3292,3290,3293 ,2807,2805,2808 ,0,0,0}, - {3290,3292,3291 ,2805,2807,2806 ,0,0,0}, {3294,3295,3293 ,2809,2810,2808 ,0,0,0}, - {3292,3293,3295 ,2807,2808,2810 ,0,0,0}, {3294,3296,3297 ,2809,2811,2812 ,0,0,0}, - {3297,3295,3294 ,2812,2810,2809 ,0,0,0}, {3298,3296,3299 ,2813,2811,2814 ,0,0,0}, - {3296,3298,3297 ,2811,2813,2812 ,0,0,0}, {3300,3301,3299 ,2815,2816,2814 ,0,0,0}, - {3298,3299,3301 ,2813,2814,2816 ,0,0,0}, {3300,3302,3303 ,2815,2817,2818 ,0,0,0}, - {3303,3301,3300 ,2818,2816,2815 ,0,0,0}, {3304,3302,3305 ,2819,2817,2820 ,0,0,0}, - {3302,3304,3303 ,2817,2819,2818 ,0,0,0}, {3306,3307,3305 ,2821,2822,2820 ,0,0,0}, - {3304,3305,3307 ,2819,2820,2822 ,0,0,0}, {3306,3308,3309 ,2821,2823,2824 ,0,0,0}, - {3309,3307,3306 ,2824,2822,2821 ,0,0,0}, {3310,3308,3311 ,2825,2823,2826 ,0,0,0}, - {3308,3310,3309 ,2823,2825,2824 ,0,0,0}, {3312,3313,3311 ,2827,2828,2826 ,0,0,0}, - {3310,3311,3313 ,2825,2826,2828 ,0,0,0}, {3312,3314,3315 ,2827,2829,2830 ,0,0,0}, - {3315,3313,3312 ,2830,2828,2827 ,0,0,0}, {3316,3314,3317 ,2831,2829,2832 ,0,0,0}, - {3314,3316,3315 ,2829,2831,2830 ,0,0,0}, {3282,3318,3317 ,2800,2833,2832 ,0,0,0}, - {3316,3317,3318 ,2831,2832,2833 ,0,0,0}, {3284,3318,3282 ,2800,2833,2800 ,0,0,0}, - {3319,3286,3285 ,2834,2801,2801 ,0,0,0}, {3320,3319,3321 ,2835,2834,2836 ,0,0,0}, - {3319,3320,3286 ,2834,2835,2801 ,0,0,0}, {3322,3323,3321 ,2837,2838,2836 ,0,0,0}, - {3320,3321,3323 ,2835,2836,2838 ,0,0,0}, {3322,3324,3325 ,2837,2839,2840 ,0,0,0}, - {3325,3323,3322 ,2840,2838,2837 ,0,0,0}, {3326,3324,3327 ,2841,2839,2842 ,0,0,0}, - {3324,3326,3325 ,2839,2841,2840 ,0,0,0}, {3328,3329,3327 ,2843,2844,2842 ,0,0,0}, - {3326,3327,3329 ,2841,2842,2844 ,0,0,0}, {3328,3330,3331 ,2843,2845,2846 ,0,0,0}, - {3331,3329,3328 ,2846,2844,2843 ,0,0,0}, {3332,3330,3333 ,2847,2845,2848 ,0,0,0}, - {3330,3332,3331 ,2845,2847,2846 ,0,0,0}, {3334,3335,3333 ,2849,2850,2848 ,0,0,0}, - {3332,3333,3335 ,2847,2848,2850 ,0,0,0}, {3334,3336,3337 ,2849,2851,2852 ,0,0,0}, - {3337,3335,3334 ,2852,2850,2849 ,0,0,0}, {3338,3336,3339 ,2853,2851,2854 ,0,0,0}, - {3336,3338,3337 ,2851,2853,2852 ,0,0,0}, {3340,3341,3339 ,2855,2856,2854 ,0,0,0}, - {3338,3339,3341 ,2853,2854,2856 ,0,0,0}, {3340,3342,3343 ,2855,2857,2858 ,0,0,0}, - {3343,3341,3340 ,2858,2856,2855 ,0,0,0}, {3344,3342,3345 ,2859,2857,2860 ,0,0,0}, - {3342,3344,3343 ,2857,2859,2858 ,0,0,0}, {3346,3347,3345 ,2861,2862,2860 ,0,0,0}, - {3344,3345,3347 ,2859,2860,2862 ,0,0,0}, {3346,3348,3349 ,2861,2863,2864 ,0,0,0}, - {3349,3347,3346 ,2864,2862,2861 ,0,0,0}, {3350,3348,3351 ,2865,2863,2866 ,0,0,0}, - {3348,3350,3349 ,2863,2865,2864 ,0,0,0}, {3350,3351,3352 ,2865,2866,2866 ,0,0,0}, - {3353,3351,3354 ,2162,2867,2162 ,0,0,0}, {3351,3353,3352 ,2867,2162,2867 ,0,0,0}, - {3355,3356,3357 ,2868,2869,2870 ,0,0,0}, {3358,3359,3360 ,2871,2872,2873 ,0,0,0}, - {3361,3355,3357 ,2874,2868,2870 ,0,0,0}, {3359,3357,3356 ,2872,2870,2869 ,0,0,0}, - {3362,3355,3361 ,2875,2868,2874 ,0,0,0}, {3363,3364,3365 ,2876,2877,2878 ,0,0,0}, - {3362,3361,3363 ,2875,2874,2876 ,0,0,0}, {3366,3364,3367 ,2879,2877,2880 ,0,0,0}, - {3363,3365,3362 ,2876,2878,2875 ,0,0,0}, {3364,3366,3365 ,2877,2879,2878 ,0,0,0}, - {3367,3368,3369 ,2880,2881,2882 ,0,0,0}, {3356,3360,3359 ,2869,2873,2872 ,0,0,0}, - {3370,3371,3372 ,2883,2884,2885 ,0,0,0}, {3373,3369,3368 ,2886,2882,2881 ,0,0,0}, - {3373,3374,3375 ,2886,2887,2888 ,0,0,0}, {3370,3372,3375 ,2883,2885,2888 ,0,0,0}, - {3370,3375,3374 ,2883,2888,2887 ,0,0,0}, {3372,3371,3376 ,2885,2884,2889 ,0,0,0}, - {3377,3378,3379 ,2890,2891,2892 ,0,0,0}, {3376,3377,3379 ,2889,2890,2892 ,0,0,0}, - {3377,3376,3371 ,2890,2889,2884 ,0,0,0}, {3378,3380,3379 ,2891,2893,2892 ,0,0,0}, - {3374,3373,3368 ,2887,2886,2881 ,0,0,0}, {3380,3381,3382 ,2893,2894,2895 ,0,0,0}, - {3380,3378,3381 ,2893,2891,2894 ,0,0,0}, {3383,3384,3385 ,2896,2897,2898 ,0,0,0}, - {3386,3385,3384 ,2899,2898,2897 ,0,0,0}, {3386,3387,3385 ,2899,2900,2898 ,0,0,0}, - {3387,3382,3381 ,2900,2895,2894 ,0,0,0}, {3387,3386,3382 ,2900,2899,2895 ,0,0,0}, - {3369,3366,3367 ,2882,2879,2880 ,0,0,0}, {3388,3389,3383 ,2901,2902,2896 ,0,0,0}, - {3390,3391,3388 ,2903,2904,2901 ,0,0,0}, {3354,3391,3390 ,1359,2904,2903 ,0,0,0}, - {3384,3383,3389 ,2897,2896,2902 ,0,0,0}, {3391,3389,3388 ,2904,2902,2901 ,0,0,0}, - {3353,3354,3390 ,1359,1359,2903 ,0,0,0}, {3392,3393,3358 ,2905,2906,2871 ,0,0,0}, - {3358,3360,3392 ,2871,2873,2905 ,0,0,0}, {3393,3394,3395 ,2906,2907,2908 ,0,0,0}, - {3394,3393,3392 ,2907,2906,2905 ,0,0,0}, {3396,3395,3397 ,2909,2908,2910 ,0,0,0}, - {3394,3397,3395 ,2907,2910,2908 ,0,0,0}, {3398,3399,3396 ,2911,2912,2909 ,0,0,0}, - {3396,3397,3398 ,2909,2910,2911 ,0,0,0}, {3399,3400,3401 ,2912,2913,2914 ,0,0,0}, - {3400,3399,3398 ,2913,2912,2911 ,0,0,0}, {3402,3401,3403 ,2915,2914,2916 ,0,0,0}, - {3400,3403,3401 ,2913,2916,2914 ,0,0,0}, {3404,3405,3402 ,2917,2918,2915 ,0,0,0}, - {3402,3403,3404 ,2915,2916,2917 ,0,0,0}, {3405,3406,3407 ,2918,2919,2920 ,0,0,0}, - {3406,3405,3404 ,2919,2918,2917 ,0,0,0}, {3408,3407,3409 ,2921,2920,2922 ,0,0,0}, - {3406,3409,3407 ,2919,2922,2920 ,0,0,0}, {3410,3411,3408 ,2923,2924,2921 ,0,0,0}, - {3408,3409,3410 ,2921,2922,2923 ,0,0,0}, {3411,3412,3413 ,2924,2925,2926 ,0,0,0}, - {3412,3411,3410 ,2925,2924,2923 ,0,0,0}, {3414,3413,3415 ,2927,2926,2928 ,0,0,0}, - {3412,3415,3413 ,2925,2928,2926 ,0,0,0}, {3416,3417,3414 ,2929,2930,2927 ,0,0,0}, - {3414,3415,3416 ,2927,2928,2929 ,0,0,0}, {3417,3418,3419 ,2930,2931,2932 ,0,0,0}, - {3418,3417,3416 ,2931,2930,2929 ,0,0,0}, {3420,3419,3421 ,2933,2932,2934 ,0,0,0}, - {3418,3421,3419 ,2931,2934,2932 ,0,0,0}, {3422,3423,3420 ,2935,2936,2933 ,0,0,0}, - {3420,3421,3422 ,2933,2934,2935 ,0,0,0}, {3423,3424,3425 ,2936,2937,2938 ,0,0,0}, - {3424,3423,3422 ,2937,2936,2935 ,0,0,0}, {3426,3425,3427 ,1711,2938,2939 ,0,0,0}, - {3424,3427,3425 ,2937,2939,2938 ,0,0,0}, {3426,3427,3428 ,1711,2939,1711 ,0,0,0}, - {3429,3430,3431 ,1398,1398,1398 ,0,0,0}, {3430,3429,3432 ,1398,1398,1398 ,0,0,0}, - {3433,3434,3435 ,2940,2941,2942 ,0,0,0}, {3436,3437,3438 ,2943,2944,2945 ,0,0,0}, - {3434,3439,3435 ,2941,2946,2942 ,0,0,0}, {3433,3435,3440 ,2940,2942,2947 ,0,0,0}, - {3436,3433,3440 ,2943,2940,2947 ,0,0,0}, {3441,3442,3439 ,2948,2949,2946 ,0,0,0}, - {3441,3439,3434 ,2948,2946,2941 ,0,0,0}, {3443,3444,3445 ,2950,2951,2952 ,0,0,0}, - {3442,3441,3443 ,2949,2948,2950 ,0,0,0}, {3443,3445,3442 ,2950,2952,2949 ,0,0,0}, - {3444,3446,3445 ,2951,2953,2952 ,0,0,0}, {3437,3436,3440 ,2944,2943,2947 ,0,0,0}, - {3444,3447,3446 ,2951,2954,2953 ,0,0,0}, {3448,3449,3450 ,2955,2956,2957 ,0,0,0}, - {3448,3450,3447 ,2955,2957,2954 ,0,0,0}, {3449,3448,3451 ,2956,2955,2958 ,0,0,0}, - {3452,3453,3451 ,2959,2960,2958 ,0,0,0}, {3453,3449,3451 ,2960,2956,2958 ,0,0,0}, - {3454,3455,3456 ,2961,2962,2963 ,0,0,0}, {3453,3452,3457 ,2960,2959,2964 ,0,0,0}, - {3458,3459,3457 ,2965,2966,2964 ,0,0,0}, {3455,3454,3459 ,2962,2961,2966 ,0,0,0}, - {3455,3459,3458 ,2962,2966,2965 ,0,0,0}, {3454,3456,3460 ,2961,2963,2967 ,0,0,0}, - {3452,3458,3457 ,2959,2965,2964 ,0,0,0}, {3461,3460,3462 ,2968,2967,2969 ,0,0,0}, - {3461,3462,3463 ,2968,2969,2970 ,0,0,0}, {3462,3460,3456 ,2969,2967,2963 ,0,0,0}, - {3464,3465,3466 ,2971,2972,2973 ,0,0,0}, {3450,3446,3447 ,2957,2953,2954 ,0,0,0}, - {3464,3467,3463 ,2971,2974,2970 ,0,0,0}, {3467,3464,3466 ,2974,2971,2973 ,0,0,0}, - {3465,3468,3469 ,2972,2975,2976 ,0,0,0}, {3469,3466,3465 ,2976,2973,2972 ,0,0,0}, - {3470,3471,3468 ,2977,2978,2975 ,0,0,0}, {3469,3468,3471 ,2976,2975,2978 ,0,0,0}, - {3470,3432,3429 ,2977,2979,2979 ,0,0,0}, {3470,3429,3471 ,2977,2979,2978 ,0,0,0}, - {3463,3467,3461 ,2970,2974,2968 ,0,0,0}, {3472,3438,3473 ,2980,2945,2981 ,0,0,0}, - {3437,3473,3438 ,2944,2981,2945 ,0,0,0}, {3474,3475,3472 ,2982,2983,2980 ,0,0,0}, - {3472,3473,3474 ,2980,2981,2982 ,0,0,0}, {3475,3476,3477 ,2983,2984,2985 ,0,0,0}, - {3476,3475,3474 ,2984,2983,2982 ,0,0,0}, {3478,3477,3479 ,2986,2985,2987 ,0,0,0}, - {3476,3479,3477 ,2984,2987,2985 ,0,0,0}, {3480,3481,3478 ,2988,2989,2986 ,0,0,0}, - {3478,3479,3480 ,2986,2987,2988 ,0,0,0}, {3481,3482,3483 ,2989,2990,2991 ,0,0,0}, - {3482,3481,3480 ,2990,2989,2988 ,0,0,0}, {3484,3483,3485 ,2992,2991,2993 ,0,0,0}, - {3482,3485,3483 ,2990,2993,2991 ,0,0,0}, {3486,3487,3484 ,2994,2995,2992 ,0,0,0}, - {3484,3485,3486 ,2992,2993,2994 ,0,0,0}, {3487,3488,3489 ,2995,2996,2997 ,0,0,0}, - {3488,3487,3486 ,2996,2995,2994 ,0,0,0}, {3490,3489,3491 ,2998,2997,2999 ,0,0,0}, - {3488,3491,3489 ,2996,2999,2997 ,0,0,0}, {3492,3493,3490 ,3000,3001,2998 ,0,0,0}, - {3490,3491,3492 ,2998,2999,3000 ,0,0,0}, {3493,3494,3495 ,3001,3002,3003 ,0,0,0}, - {3494,3493,3492 ,3002,3001,3000 ,0,0,0}, {3496,3495,3497 ,3004,3003,3005 ,0,0,0}, - {3494,3497,3495 ,3002,3005,3003 ,0,0,0}, {3498,3499,3496 ,3006,3007,3004 ,0,0,0}, - {3496,3497,3498 ,3004,3005,3006 ,0,0,0}, {3499,3500,3501 ,3007,3008,3009 ,0,0,0}, - {3500,3499,3498 ,3008,3007,3006 ,0,0,0}, {3502,3501,3503 ,3010,3009,3011 ,0,0,0}, - {3500,3503,3501 ,3008,3011,3009 ,0,0,0}, {3504,3505,3502 ,3012,3013,3010 ,0,0,0}, - {3502,3503,3504 ,3010,3011,3012 ,0,0,0}, {3505,3506,3507 ,3013,3014,3015 ,0,0,0}, - {3506,3505,3504 ,3014,3013,3012 ,0,0,0}, {3508,3507,3509 ,3016,3015,3017 ,0,0,0}, - {3506,3509,3507 ,3014,3017,3015 ,0,0,0}, {3508,3509,3510 ,3016,3017,3018 ,0,0,0}, - {3511,3512,3513 ,3019,3020,3021 ,0,0,0}, {3514,3515,3513 ,3022,3023,3021 ,0,0,0}, - {3511,3513,3515 ,3019,3021,3023 ,0,0,0}, {3514,3516,3517 ,3022,3024,3025 ,0,0,0}, - {3517,3515,3514 ,3025,3023,3022 ,0,0,0}, {3518,3516,3519 ,3026,3024,3027 ,0,0,0}, - {3516,3518,3517 ,3024,3026,3025 ,0,0,0}, {3520,3521,3519 ,3028,3029,3027 ,0,0,0}, - {3518,3519,3521 ,3026,3027,3029 ,0,0,0}, {3520,3522,3523 ,3028,3030,3031 ,0,0,0}, - {3523,3521,3520 ,3031,3029,3028 ,0,0,0}, {3524,3522,3525 ,3032,3030,3033 ,0,0,0}, - {3522,3524,3523 ,3030,3032,3031 ,0,0,0}, {3526,3527,3525 ,3034,3035,3033 ,0,0,0}, - {3524,3525,3527 ,3032,3033,3035 ,0,0,0}, {3526,3528,3529 ,3034,3036,3037 ,0,0,0}, - {3529,3527,3526 ,3037,3035,3034 ,0,0,0}, {3530,3528,3531 ,3038,3036,3039 ,0,0,0}, - {3528,3530,3529 ,3036,3038,3037 ,0,0,0}, {3532,3533,3531 ,3040,3041,3039 ,0,0,0}, - {3530,3531,3533 ,3038,3039,3041 ,0,0,0}, {3532,3534,3535 ,3040,3042,3043 ,0,0,0}, - {3535,3533,3532 ,3043,3041,3040 ,0,0,0}, {3536,3534,3537 ,3044,3042,3045 ,0,0,0}, - {3534,3536,3535 ,3042,3044,3043 ,0,0,0}, {3538,3539,3537 ,3046,3047,3045 ,0,0,0}, - {3536,3537,3539 ,3044,3045,3047 ,0,0,0}, {3538,3540,3541 ,3046,3048,3049 ,0,0,0}, - {3541,3539,3538 ,3049,3047,3046 ,0,0,0}, {3542,3540,3543 ,3050,3048,3051 ,0,0,0}, - {3540,3542,3541 ,3048,3050,3049 ,0,0,0}, {3544,3545,3543 ,3052,3053,3051 ,0,0,0}, - {3542,3543,3545 ,3050,3051,3053 ,0,0,0}, {3544,3546,3547 ,3052,3054,3055 ,0,0,0}, - {3547,3545,3544 ,3055,3053,3052 ,0,0,0}, {3548,3546,3549 ,3056,3054,3057 ,0,0,0}, - {3546,3548,3547 ,3054,3056,3055 ,0,0,0}, {3550,3551,3549 ,3058,3059,3057 ,0,0,0}, - {3548,3549,3551 ,3056,3057,3059 ,0,0,0}, {3550,3552,3553 ,3058,3060,3061 ,0,0,0}, - {3553,3551,3550 ,3061,3059,3058 ,0,0,0}, {3554,3552,3555 ,3062,3060,3063 ,0,0,0}, - {3552,3554,3553 ,3060,3062,3061 ,0,0,0}, {3556,3557,3555 ,3064,3065,3063 ,0,0,0}, - {3554,3555,3557 ,3062,3063,3065 ,0,0,0}, {3556,3558,3559 ,3064,3066,3067 ,0,0,0}, - {3559,3557,3556 ,3067,3065,3064 ,0,0,0}, {3560,3558,3561 ,3068,3066,3069 ,0,0,0}, - {3558,3560,3559 ,3066,3068,3067 ,0,0,0}, {3562,3563,3561 ,3070,3071,3069 ,0,0,0}, - {3560,3561,3563 ,3068,3069,3071 ,0,0,0}, {3562,3564,3565 ,3070,3072,3073 ,0,0,0}, - {3565,3563,3562 ,3073,3071,3070 ,0,0,0}, {3566,3564,3567 ,3074,3072,3075 ,0,0,0}, - {3564,3566,3565 ,3072,3074,3073 ,0,0,0}, {3508,3568,3567 ,3076,3077,3075 ,0,0,0}, - {3566,3567,3568 ,3074,3075,3077 ,0,0,0}, {3510,3568,3508 ,3078,3077,3076 ,0,0,0}, - {3569,3512,3511 ,3079,3020,3019 ,0,0,0}, {3570,3569,3571 ,3080,3079,3081 ,0,0,0}, - {3569,3570,3512 ,3079,3080,3020 ,0,0,0}, {3572,3573,3571 ,3082,3083,3081 ,0,0,0}, - {3570,3571,3573 ,3080,3081,3083 ,0,0,0}, {3572,3574,3575 ,3082,3084,3085 ,0,0,0}, - {3575,3573,3572 ,3085,3083,3082 ,0,0,0}, {3576,3574,3577 ,3086,3084,3087 ,0,0,0}, - {3574,3576,3575 ,3084,3086,3085 ,0,0,0}, {3578,3579,3577 ,3088,3089,3087 ,0,0,0}, - {3576,3577,3579 ,3086,3087,3089 ,0,0,0}, {3578,3580,3581 ,3088,3090,3091 ,0,0,0}, - {3581,3579,3578 ,3091,3089,3088 ,0,0,0}, {3582,3580,3583 ,3092,3090,3093 ,0,0,0}, - {3580,3582,3581 ,3090,3092,3091 ,0,0,0}, {3584,3585,3583 ,3094,3095,3093 ,0,0,0}, - {3582,3583,3585 ,3092,3093,3095 ,0,0,0}, {3584,3586,3587 ,3094,3096,3097 ,0,0,0}, - {3587,3585,3584 ,3097,3095,3094 ,0,0,0}, {3588,3586,3589 ,3098,3096,3099 ,0,0,0}, - {3586,3588,3587 ,3096,3098,3097 ,0,0,0}, {3590,3591,3589 ,3100,3101,3099 ,0,0,0}, - {3588,3589,3591 ,3098,3099,3101 ,0,0,0}, {3590,3592,3593 ,3100,3102,3103 ,0,0,0}, - {3593,3591,3590 ,3103,3101,3100 ,0,0,0}, {3594,3592,3595 ,3104,3102,3105 ,0,0,0}, - {3592,3594,3593 ,3102,3104,3103 ,0,0,0}, {3596,3597,3595 ,3106,3107,3105 ,0,0,0}, - {3594,3595,3597 ,3104,3105,3107 ,0,0,0}, {3596,3598,3599 ,3106,3108,3109 ,0,0,0}, - {3599,3597,3596 ,3109,3107,3106 ,0,0,0}, {3600,3598,3601 ,3110,3108,3111 ,0,0,0}, - {3598,3600,3599 ,3108,3110,3109 ,0,0,0}, {3602,3603,3601 ,3112,3113,3111 ,0,0,0}, - {3600,3601,3603 ,3110,3111,3113 ,0,0,0}, {3602,3604,3605 ,3112,3114,3115 ,0,0,0}, - {3605,3603,3602 ,3115,3113,3112 ,0,0,0}, {3606,3604,3607 ,3116,3114,3117 ,0,0,0}, - {3604,3606,3605 ,3114,3116,3115 ,0,0,0}, {3608,3609,3607 ,3118,3119,3117 ,0,0,0}, - {3606,3607,3609 ,3116,3117,3119 ,0,0,0}, {3608,3610,3611 ,3118,3120,3121 ,0,0,0}, - {3611,3609,3608 ,3121,3119,3118 ,0,0,0}, {3612,3610,3613 ,3122,3120,3123 ,0,0,0}, - {3610,3612,3611 ,3120,3122,3121 ,0,0,0}, {3614,3615,3613 ,3124,3125,3123 ,0,0,0}, - {3612,3613,3615 ,3122,3123,3125 ,0,0,0}, {3614,3616,3617 ,3124,3126,3127 ,0,0,0}, - {3617,3615,3614 ,3127,3125,3124 ,0,0,0}, {3618,3616,3619 ,3128,3126,3129 ,0,0,0}, - {3616,3618,3617 ,3126,3128,3127 ,0,0,0}, {3620,3621,3619 ,3130,3131,3129 ,0,0,0}, - {3618,3619,3621 ,3128,3129,3131 ,0,0,0}, {3620,3622,3623 ,3130,3132,3133 ,0,0,0}, - {3623,3621,3620 ,3133,3131,3130 ,0,0,0}, {3624,3622,3625 ,3134,3132,126 ,0,0,0}, - {3622,3624,3623 ,3132,3134,3133 ,0,0,0}, {3624,3625,3626 ,3134,126,3135 ,0,0,0}, - {3627,3628,3629 ,3136,3137,3138 ,0,0,0}, {3630,3631,3632 ,3139,3140,3141 ,0,0,0}, - {3628,3633,3629 ,3137,3142,3138 ,0,0,0}, {3627,3629,3634 ,3136,3138,3143 ,0,0,0}, - {3630,3627,3634 ,3139,3136,3143 ,0,0,0}, {3635,3636,3633 ,3144,3145,3142 ,0,0,0}, - {3635,3633,3628 ,3144,3142,3137 ,0,0,0}, {3637,3638,3639 ,3146,3147,3148 ,0,0,0}, - {3636,3635,3637 ,3145,3144,3146 ,0,0,0}, {3637,3639,3636 ,3146,3148,3145 ,0,0,0}, - {3638,3640,3639 ,3147,3149,3148 ,0,0,0}, {3631,3630,3634 ,3140,3139,3143 ,0,0,0}, - {3638,3641,3640 ,3147,3150,3149 ,0,0,0}, {3642,3643,3644 ,3151,3152,3153 ,0,0,0}, - {3642,3644,3641 ,3151,3153,3150 ,0,0,0}, {3643,3642,3645 ,3152,3151,3154 ,0,0,0}, - {3646,3647,3645 ,3155,3156,3154 ,0,0,0}, {3647,3643,3645 ,3156,3152,3154 ,0,0,0}, - {3648,3649,3650 ,3157,3158,3159 ,0,0,0}, {3647,3646,3651 ,3156,3155,3160 ,0,0,0}, - {3652,3653,3651 ,3161,3162,3160 ,0,0,0}, {3649,3648,3653 ,3158,3157,3162 ,0,0,0}, - {3649,3653,3652 ,3158,3162,3161 ,0,0,0}, {3648,3650,3654 ,3157,3159,3163 ,0,0,0}, - {3646,3652,3651 ,3155,3161,3160 ,0,0,0}, {3655,3654,3656 ,3164,3163,3165 ,0,0,0}, - {3655,3656,3657 ,3164,3165,3166 ,0,0,0}, {3656,3654,3650 ,3165,3163,3159 ,0,0,0}, - {3658,3659,3660 ,3167,3168,3169 ,0,0,0}, {3644,3640,3641 ,3153,3149,3150 ,0,0,0}, - {3658,3661,3657 ,3167,3170,3166 ,0,0,0}, {3661,3658,3660 ,3170,3167,3169 ,0,0,0}, - {3659,3662,3663 ,3168,3171,3172 ,0,0,0}, {3663,3660,3659 ,3172,3169,3168 ,0,0,0}, - {3664,3665,3662 ,3173,3174,3171 ,0,0,0}, {3663,3662,3665 ,3172,3171,3174 ,0,0,0}, - {3664,3626,3625 ,3173,3175,3176 ,0,0,0}, {3664,3625,3665 ,3173,3176,3174 ,0,0,0}, - {3657,3661,3655 ,3166,3170,3164 ,0,0,0}, {3666,3632,3667 ,3177,3141,3178 ,0,0,0}, - {3631,3667,3632 ,3140,3178,3141 ,0,0,0}, {3668,3669,3666 ,3179,3180,3177 ,0,0,0}, - {3666,3667,3668 ,3177,3178,3179 ,0,0,0}, {3669,3670,3671 ,3180,3181,3182 ,0,0,0}, - {3670,3669,3668 ,3181,3180,3179 ,0,0,0}, {3672,3671,3673 ,3183,3182,3184 ,0,0,0}, - {3670,3673,3671 ,3181,3184,3182 ,0,0,0}, {3674,3675,3672 ,3185,3186,3183 ,0,0,0}, - {3672,3673,3674 ,3183,3184,3185 ,0,0,0}, {3675,3676,3677 ,3186,3187,3188 ,0,0,0}, - {3676,3675,3674 ,3187,3186,3185 ,0,0,0}, {3678,3677,3679 ,3189,3188,3190 ,0,0,0}, - {3676,3679,3677 ,3187,3190,3188 ,0,0,0}, {3680,3681,3678 ,3191,3192,3189 ,0,0,0}, - {3678,3679,3680 ,3189,3190,3191 ,0,0,0}, {3681,3682,3683 ,3192,3193,3194 ,0,0,0}, - {3682,3681,3680 ,3193,3192,3191 ,0,0,0}, {3684,3683,3685 ,3195,3194,3196 ,0,0,0}, - {3682,3685,3683 ,3193,3196,3194 ,0,0,0}, {3686,3687,3684 ,3197,3198,3195 ,0,0,0}, - {3684,3685,3686 ,3195,3196,3197 ,0,0,0}, {3687,3688,3689 ,3198,3199,3200 ,0,0,0}, - {3688,3687,3686 ,3199,3198,3197 ,0,0,0}, {3690,3689,3691 ,3201,3200,3202 ,0,0,0}, - {3688,3691,3689 ,3199,3202,3200 ,0,0,0}, {3692,3693,3690 ,3203,3204,3201 ,0,0,0}, - {3690,3691,3692 ,3201,3202,3203 ,0,0,0}, {3693,3694,3695 ,3204,3205,3206 ,0,0,0}, - {3694,3693,3692 ,3205,3204,3203 ,0,0,0}, {3696,3695,3697 ,3207,3206,3208 ,0,0,0}, - {3694,3697,3695 ,3205,3208,3206 ,0,0,0}, {3698,3699,3696 ,3209,3210,3207 ,0,0,0}, - {3696,3697,3698 ,3207,3208,3209 ,0,0,0}, {3699,3700,3701 ,3210,3211,3212 ,0,0,0}, - {3700,3699,3698 ,3211,3210,3209 ,0,0,0}, {3702,3701,3703 ,3213,3212,3214 ,0,0,0}, - {3700,3703,3701 ,3211,3214,3212 ,0,0,0}, {3702,3703,3704 ,3213,3214,3213 ,0,0,0}, - {3705,3702,3704 ,2197,2197,2197 ,0,0,0}, {3702,3705,3706 ,2197,2197,2197 ,0,0,0}, - {3707,3708,3709 ,3215,3216,3217 ,0,0,0}, {3710,3711,3707 ,3218,3219,3215 ,0,0,0}, - {3707,3709,3710 ,3215,3217,3218 ,0,0,0}, {3711,3712,3713 ,3219,3220,3221 ,0,0,0}, - {3712,3711,3710 ,3220,3219,3218 ,0,0,0}, {3714,3713,3715 ,3222,3221,3223 ,0,0,0}, - {3712,3715,3713 ,3220,3223,3221 ,0,0,0}, {3716,3717,3714 ,3224,3225,3222 ,0,0,0}, - {3714,3715,3716 ,3222,3223,3224 ,0,0,0}, {3717,3718,3719 ,3225,3226,3227 ,0,0,0}, - {3718,3717,3716 ,3226,3225,3224 ,0,0,0}, {3720,3719,3721 ,3228,3227,3229 ,0,0,0}, - {3718,3721,3719 ,3226,3229,3227 ,0,0,0}, {3722,3723,3720 ,3230,3231,3228 ,0,0,0}, - {3720,3721,3722 ,3228,3229,3230 ,0,0,0}, {3723,3724,3725 ,3231,3232,3233 ,0,0,0}, - {3724,3723,3722 ,3232,3231,3230 ,0,0,0}, {3726,3725,3727 ,3234,3233,3235 ,0,0,0}, - {3724,3727,3725 ,3232,3235,3233 ,0,0,0}, {3728,3729,3726 ,3236,3237,3234 ,0,0,0}, - {3726,3727,3728 ,3234,3235,3236 ,0,0,0}, {3729,3730,3731 ,3237,3238,3239 ,0,0,0}, - {3730,3729,3728 ,3238,3237,3236 ,0,0,0}, {3732,3731,3733 ,3240,3239,3241 ,0,0,0}, - {3730,3733,3731 ,3238,3241,3239 ,0,0,0}, {3734,3735,3732 ,3242,3243,3240 ,0,0,0}, - {3732,3733,3734 ,3240,3241,3242 ,0,0,0}, {3735,3736,3737 ,3243,3244,3245 ,0,0,0}, - {3736,3735,3734 ,3244,3243,3242 ,0,0,0}, {3738,3737,3739 ,3246,3245,3247 ,0,0,0}, - {3736,3739,3737 ,3244,3247,3245 ,0,0,0}, {3740,3741,3738 ,3248,3249,3246 ,0,0,0}, - {3738,3739,3740 ,3246,3247,3248 ,0,0,0}, {3741,3742,3743 ,3249,3250,3251 ,0,0,0}, - {3742,3741,3740 ,3250,3249,3248 ,0,0,0}, {3744,3743,3745 ,3252,3251,3253 ,0,0,0}, - {3742,3745,3743 ,3250,3253,3251 ,0,0,0}, {3706,3705,3744 ,3254,3254,3252 ,0,0,0}, - {3744,3745,3706 ,3252,3253,3254 ,0,0,0}, {3709,3708,3746 ,3217,3216,3255 ,0,0,0}, - {3747,3746,3748 ,3256,3255,3257 ,0,0,0}, {3708,3748,3746 ,3216,3257,3255 ,0,0,0}, - {3749,3750,3747 ,3258,3259,3256 ,0,0,0}, {3747,3748,3749 ,3256,3257,3258 ,0,0,0}, - {3750,3751,3752 ,3259,3260,3261 ,0,0,0}, {3751,3750,3749 ,3260,3259,3258 ,0,0,0}, - {3753,3752,3754 ,3262,3261,3263 ,0,0,0}, {3751,3754,3752 ,3260,3263,3261 ,0,0,0}, - {3755,3756,3753 ,3264,3265,3262 ,0,0,0}, {3753,3754,3755 ,3262,3263,3264 ,0,0,0}, - {3756,3757,3758 ,3265,3266,3267 ,0,0,0}, {3757,3756,3755 ,3266,3265,3264 ,0,0,0}, - {3759,3758,3760 ,3268,3267,3269 ,0,0,0}, {3757,3760,3758 ,3266,3269,3267 ,0,0,0}, - {3761,3762,3759 ,3270,3271,3268 ,0,0,0}, {3759,3760,3761 ,3268,3269,3270 ,0,0,0}, - {3762,3763,3764 ,3271,3272,3273 ,0,0,0}, {3763,3762,3761 ,3272,3271,3270 ,0,0,0}, - {3765,3764,3766 ,3274,3273,3275 ,0,0,0}, {3763,3766,3764 ,3272,3275,3273 ,0,0,0}, - {3767,3768,3765 ,3276,3277,3274 ,0,0,0}, {3765,3766,3767 ,3274,3275,3276 ,0,0,0}, - {3768,3769,3770 ,3277,3278,3279 ,0,0,0}, {3769,3768,3767 ,3278,3277,3276 ,0,0,0}, - {3771,3770,3772 ,3280,3279,3281 ,0,0,0}, {3769,3772,3770 ,3278,3281,3279 ,0,0,0}, - {3773,3774,3771 ,3282,3283,3280 ,0,0,0}, {3771,3772,3773 ,3280,3281,3282 ,0,0,0}, - {3774,3775,3776 ,3283,3284,3285 ,0,0,0}, {3775,3774,3773 ,3284,3283,3282 ,0,0,0}, - {3777,3776,3778 ,3286,3285,3287 ,0,0,0}, {3775,3778,3776 ,3284,3287,3285 ,0,0,0}, - {3779,3780,3777 ,3288,3289,3286 ,0,0,0}, {3777,3778,3779 ,3286,3287,3288 ,0,0,0}, - {3780,3781,3782 ,3289,3290,3291 ,0,0,0}, {3781,3780,3779 ,3290,3289,3288 ,0,0,0}, - {3781,3431,3782 ,3290,3292,3291 ,0,0,0}, {3782,3431,3430 ,3291,3292,3292 ,0,0,0}, - {3132,3428,3133 ,1433,3293,1433 ,0,0,0}, {3428,3132,3426 ,3293,1433,3293 ,0,0,0}, - {3653,3155,3154 ,3294,3294,3294 ,0,0,0}, {3431,3781,3354 ,3294,726,726 ,0,0,0}, - {3775,3384,3778 ,726,726,726 ,0,0,0}, {3471,3429,3351 ,726,726,726 ,0,0,0}, - {3372,3376,3766 ,726,726,726 ,0,0,0}, {3380,3772,3769 ,726,726,726 ,0,0,0}, - {3751,3362,3754 ,726,726,726 ,0,0,0}, {3760,3757,3369 ,726,726,726 ,0,0,0}, - {3748,3356,3355 ,726,726,726 ,0,0,0}, {3749,3748,3355 ,726,726,726 ,0,0,0}, - {3148,3145,3644 ,3294,726,3294 ,0,0,0}, {3661,3660,3163 ,3294,726,3294 ,0,0,0}, - {3629,3633,3137 ,3294,3294,726 ,0,0,0}, {3139,3633,3636 ,726,3294,726 ,0,0,0}, - {3667,3093,3097 ,726,726,726 ,0,0,0}, {3093,3631,3094 ,726,3294,3294 ,0,0,0}, - {3670,3100,3673 ,3294,726,726 ,0,0,0}, {3099,3670,3668 ,3294,3294,3294 ,0,0,0}, - {3109,3680,3679 ,3295,3294,3294 ,0,0,0}, {3105,3676,3674 ,726,3294,3294 ,0,0,0}, - {3682,3680,3111 ,3294,3294,3294 ,0,0,0}, {3109,3111,3680 ,3295,3294,3294 ,0,0,0}, - {3686,3685,3115 ,3294,3295,726 ,0,0,0}, {3682,3111,3112 ,3294,3294,3294 ,0,0,0}, - {3688,3686,3117 ,3294,3294,3294 ,0,0,0}, {3115,3685,3112 ,726,3295,3294 ,0,0,0}, - {3118,3691,3688 ,3294,726,3294 ,0,0,0}, {3688,3117,3118 ,3294,3294,3294 ,0,0,0}, - {3691,3121,3692 ,726,726,726 ,0,0,0}, {3121,3691,3118 ,726,726,3294 ,0,0,0}, - {3694,3692,3123 ,726,726,726 ,0,0,0}, {3124,3694,3123 ,726,726,726 ,0,0,0}, - {3129,3698,3127 ,726,3294,3294 ,0,0,0}, {3697,3694,3124 ,726,726,726 ,0,0,0}, - {3130,3133,3700 ,726,726,726 ,0,0,0}, {3127,3698,3697 ,3294,3294,726 ,0,0,0}, - {3133,3703,3700 ,726,3294,726 ,0,0,0}, {3698,3130,3700 ,3294,726,726 ,0,0,0}, - {3723,3404,3720 ,726,726,726 ,0,0,0}, {3133,3704,3703 ,726,726,3294 ,0,0,0}, - {3654,3157,3648 ,3294,726,726 ,0,0,0}, {3668,3097,3099 ,3294,726,3294 ,0,0,0}, - {3676,3105,3106 ,3294,726,3294 ,0,0,0}, {3679,3106,3109 ,3294,3294,3295 ,0,0,0}, - {3103,3105,3674 ,3294,726,3294 ,0,0,0}, {3673,3100,3103 ,726,726,3294 ,0,0,0}, - {3631,3093,3667 ,3294,726,726 ,0,0,0}, {3667,3097,3668 ,726,726,3294 ,0,0,0}, - {3629,3136,3634 ,3294,3294,3294 ,0,0,0}, {3634,3094,3631 ,3294,3294,3294 ,0,0,0}, - {3297,3476,3295 ,726,726,3294 ,0,0,0}, {3136,3094,3634 ,3294,3294,3294 ,0,0,0}, - {3639,3143,3142 ,3294,3294,726 ,0,0,0}, {3636,3142,3139 ,726,726,726 ,0,0,0}, - {3640,3145,3143 ,726,726,3294 ,0,0,0}, {3639,3142,3636 ,3294,726,726 ,0,0,0}, - {3647,3151,3149 ,3294,3294,3294 ,0,0,0}, {3148,3644,3643 ,3294,3294,726 ,0,0,0}, - {3648,3155,3653 ,726,3294,3294 ,0,0,0}, {3151,3651,3154 ,3294,3294,3294 ,0,0,0}, - {3161,3160,3655 ,726,726,726 ,0,0,0}, {3157,3155,3648 ,726,3294,726 ,0,0,0}, - {3655,3160,3654 ,726,726,3294 ,0,0,0}, {3503,3500,3283 ,3294,726,726 ,0,0,0}, - {3663,3167,3166 ,3295,726,726 ,0,0,0}, {3080,3062,3082 ,3294,3295,726 ,0,0,0}, - {3169,3665,3171 ,3294,726,3294 ,0,0,0}, {3087,3089,3054 ,726,3294,726 ,0,0,0}, - {3051,3089,3090 ,726,3294,3294 ,0,0,0}, {3250,3247,3043 ,726,726,726 ,0,0,0}, - {3250,3034,3036 ,726,726,3294 ,0,0,0}, {3553,3225,3551 ,726,3294,3294 ,0,0,0}, - {3244,3239,3506 ,3294,726,726 ,0,0,0}, {3613,3610,3783 ,726,726,726 ,0,0,0}, - {3524,3208,3523 ,726,3294,3294 ,0,0,0}, {3784,3785,3574 ,3294,3294,726 ,0,0,0}, - {3029,3786,3787 ,3294,726,726 ,0,0,0}, {3580,3578,3788 ,726,3294,726 ,0,0,0}, - {3788,3578,3785 ,726,3294,3294 ,0,0,0}, {3002,2999,3071 ,726,726,3294 ,0,0,0}, - {3788,3071,3583 ,726,3294,3294 ,0,0,0}, {3069,3067,3000 ,3294,3294,3294 ,0,0,0}, - {3000,3067,3009 ,3294,3294,3294 ,0,0,0}, {3590,3589,2998 ,3294,726,726 ,0,0,0}, - {3577,3574,3785 ,3294,726,3294 ,0,0,0}, {3215,3784,3572 ,726,3294,726 ,0,0,0}, - {3190,3789,3186 ,726,3294,3294 ,0,0,0}, {3790,3791,3786 ,3294,3294,726 ,0,0,0}, - {3181,3792,3793 ,726,3294,3294 ,0,0,0}, {3569,3214,3215 ,3294,726,726 ,0,0,0}, - {3215,3572,3571 ,726,726,3294 ,0,0,0}, {3511,3214,3569 ,3294,726,3294 ,0,0,0}, - {3608,3607,3794 ,726,3294,3294 ,0,0,0}, {3213,3214,3515 ,3294,726,726 ,0,0,0}, - {3515,3517,3213 ,726,726,3294 ,0,0,0}, {3614,3613,3795 ,3294,726,3294 ,0,0,0}, - {3210,3213,3518 ,726,3294,726 ,0,0,0}, {3616,3796,3619 ,726,3294,3294 ,0,0,0}, - {3521,3210,3518 ,3294,726,726 ,0,0,0}, {3173,3620,3176 ,3294,726,3294 ,0,0,0}, - {3210,3523,3208 ,726,3294,3294 ,0,0,0}, {3533,3204,3203 ,3294,726,726 ,0,0,0}, - {3529,3203,3206 ,3294,726,3294 ,0,0,0}, {3220,3219,3541 ,3295,726,3294 ,0,0,0}, - {3204,3533,3535 ,726,3294,3294 ,0,0,0}, {3548,3222,3547 ,3294,3294,3294 ,0,0,0}, - {3222,3220,3545 ,3294,3295,3294 ,0,0,0}, {3231,3228,3559 ,3294,726,726 ,0,0,0}, - {3191,3797,3195 ,3294,726,3294 ,0,0,0}, {3798,3799,3800 ,3294,3294,3294 ,0,0,0}, - {3232,3563,3565 ,726,726,726 ,0,0,0}, {3234,3238,3510 ,3294,3294,3294 ,0,0,0}, - {3801,3252,3802 ,726,726,726 ,0,0,0}, {3803,3262,3252 ,3294,3294,726 ,0,0,0}, - {3255,3251,3804 ,726,726,726 ,0,0,0}, {3254,3805,3802 ,726,3294,726 ,0,0,0}, - {3092,3033,3032 ,726,726,3294 ,0,0,0}, {3076,3075,3056 ,3294,726,726 ,0,0,0}, - {3805,3254,3255 ,3294,726,726 ,0,0,0}, {3622,3173,3625 ,3294,3294,3294 ,0,0,0}, - {3079,3057,3060 ,726,3294,726 ,0,0,0}, {3280,3278,3503 ,3294,3294,3294 ,0,0,0}, - {3665,3625,3171 ,726,3294,3294 ,0,0,0}, {3318,3284,3500 ,3295,726,726 ,0,0,0}, - {3169,3167,3665 ,3294,726,726 ,0,0,0}, {3755,3365,3366 ,726,726,726 ,0,0,0}, - {3711,3392,3707 ,726,726,726 ,0,0,0}, {3394,3711,3713 ,726,726,726 ,0,0,0}, - {3473,3292,3474 ,3294,726,726 ,0,0,0}, {3148,3643,3149 ,3294,726,3294 ,0,0,0}, - {3665,3167,3663 ,726,726,3295 ,0,0,0}, {3660,3663,3166 ,726,3295,726 ,0,0,0}, - {3161,3661,3163 ,726,3294,3294 ,0,0,0}, {3163,3660,3166 ,3294,726,726 ,0,0,0}, - {3151,3647,3651 ,3294,3294,3294 ,0,0,0}, {3157,3654,3160 ,726,3294,726 ,0,0,0}, - {3161,3655,3661 ,726,726,3294 ,0,0,0}, {3653,3154,3651 ,3294,3294,3294 ,0,0,0}, - {3643,3647,3149 ,726,3294,3294 ,0,0,0}, {3644,3145,3640 ,3294,726,726 ,0,0,0}, - {3476,3297,3479 ,726,726,726 ,0,0,0}, {3639,3640,3143 ,3294,726,3294 ,0,0,0}, - {3707,3392,3360 ,726,726,726 ,0,0,0}, {3360,3708,3707 ,726,726,726 ,0,0,0}, - {3708,3360,3356 ,726,726,726 ,0,0,0}, {3362,3749,3355 ,726,726,726 ,0,0,0}, - {3356,3748,3708 ,726,726,726 ,0,0,0}, {3291,3292,3473 ,3294,726,3294 ,0,0,0}, - {3755,3754,3365 ,726,726,726 ,0,0,0}, {3754,3362,3365 ,726,726,726 ,0,0,0}, - {3446,3450,3327 ,726,3294,3294 ,0,0,0}, {3757,3755,3366 ,726,726,726 ,0,0,0}, - {3373,3760,3369 ,726,726,726 ,0,0,0}, {3761,3373,3375 ,726,726,726 ,0,0,0}, - {3373,3761,3760 ,726,726,726 ,0,0,0}, {3372,3763,3375 ,726,726,726 ,0,0,0}, - {3761,3375,3763 ,726,726,726 ,0,0,0}, {3763,3372,3766 ,726,726,726 ,0,0,0}, - {3376,3379,3767 ,726,726,726 ,0,0,0}, {3328,3327,3450 ,726,3294,3294 ,0,0,0}, - {3769,3379,3380 ,726,726,726 ,0,0,0}, {3379,3769,3767 ,726,726,726 ,0,0,0}, - {3773,3772,3382 ,726,726,726 ,0,0,0}, {3467,3345,3342 ,726,3294,3294 ,0,0,0}, - {3380,3382,3772 ,726,726,726 ,0,0,0}, {3386,3775,3773 ,726,726,726 ,0,0,0}, - {3773,3382,3386 ,726,726,726 ,0,0,0}, {3775,3386,3384 ,726,726,726 ,0,0,0}, - {3384,3389,3778 ,726,726,726 ,0,0,0}, {3778,3389,3779 ,726,726,726 ,0,0,0}, - {3779,3391,3781 ,726,726,726 ,0,0,0}, {3469,3348,3346 ,3294,726,3295 ,0,0,0}, - {3391,3779,3389 ,726,726,726 ,0,0,0}, {3270,3506,3504 ,726,726,3295 ,0,0,0}, - {3046,3047,3245 ,3295,726,726 ,0,0,0}, {3316,3318,3498 ,726,3295,726 ,0,0,0}, - {3504,3278,3277 ,3295,3294,3294 ,0,0,0}, {3315,3316,3497 ,3294,726,726 ,0,0,0}, - {3313,3315,3494 ,726,3294,726 ,0,0,0}, {3500,3284,3283 ,726,726,726 ,0,0,0}, - {3310,3313,3492 ,3294,726,3294 ,0,0,0}, {3500,3498,3318 ,726,726,3295 ,0,0,0}, - {3309,3310,3491 ,726,3294,3294 ,0,0,0}, {3498,3497,3316 ,726,726,726 ,0,0,0}, - {3307,3309,3488 ,3294,726,3294 ,0,0,0}, {3497,3494,3315 ,726,726,3294 ,0,0,0}, - {3304,3486,3485 ,3294,726,726 ,0,0,0}, {3494,3492,3313 ,726,3294,726 ,0,0,0}, - {3303,3485,3482 ,726,726,3294 ,0,0,0}, {3492,3491,3310 ,3294,3294,3294 ,0,0,0}, - {3301,3482,3480 ,3294,3294,726 ,0,0,0}, {3479,3298,3480 ,726,3294,726 ,0,0,0}, - {3304,3307,3486 ,3294,3294,726 ,0,0,0}, {3476,3474,3295 ,726,726,3294 ,0,0,0}, - {3304,3485,3303 ,3294,726,726 ,0,0,0}, {3713,3714,3397 ,726,726,726 ,0,0,0}, - {3482,3301,3303 ,3294,3294,726 ,0,0,0}, {3714,3717,3398 ,726,726,726 ,0,0,0}, - {3480,3298,3301 ,726,3294,3294 ,0,0,0}, {3717,3719,3400 ,726,726,726 ,0,0,0}, - {3136,3629,3137 ,3294,3294,726 ,0,0,0}, {3137,3633,3139 ,726,3294,726 ,0,0,0}, - {3474,3292,3295 ,726,726,3294 ,0,0,0}, {3403,3400,3719 ,726,726,726 ,0,0,0}, - {3394,3392,3711 ,726,726,726 ,0,0,0}, {3403,3720,3404 ,726,726,726 ,0,0,0}, - {3397,3394,3713 ,726,726,726 ,0,0,0}, {3723,3406,3404 ,726,726,726 ,0,0,0}, - {3398,3397,3714 ,726,726,726 ,0,0,0}, {3725,3409,3406 ,726,726,726 ,0,0,0}, - {3400,3398,3717 ,726,726,726 ,0,0,0}, {3100,3670,3099 ,726,3294,3294 ,0,0,0}, - {3410,3409,3726 ,726,726,726 ,0,0,0}, {3719,3720,3403 ,726,726,726 ,0,0,0}, - {3412,3410,3729 ,726,726,726 ,0,0,0}, {3412,3729,3731 ,726,726,726 ,0,0,0}, - {3103,3674,3673 ,3294,3294,726 ,0,0,0}, {3723,3725,3406 ,726,726,726 ,0,0,0}, - {3106,3679,3676 ,3294,3294,3294 ,0,0,0}, {3732,3415,3731 ,726,726,726 ,0,0,0}, - {3725,3726,3409 ,726,726,726 ,0,0,0}, {3416,3732,3735 ,726,726,726 ,0,0,0}, - {3726,3729,3410 ,726,726,726 ,0,0,0}, {3112,3685,3682 ,3294,3295,3294 ,0,0,0}, - {3731,3415,3412 ,726,726,726 ,0,0,0}, {3735,3737,3418 ,726,726,726 ,0,0,0}, - {3416,3415,3732 ,726,726,726 ,0,0,0}, {3738,3421,3737 ,726,726,726 ,0,0,0}, - {3115,3117,3686 ,726,3294,3294 ,0,0,0}, {3741,3422,3738 ,726,726,726 ,0,0,0}, - {3418,3416,3735 ,726,726,726 ,0,0,0}, {3121,3123,3692 ,726,726,726 ,0,0,0}, - {3737,3421,3418 ,726,726,726 ,0,0,0}, {3424,3741,3743 ,726,726,726 ,0,0,0}, - {3124,3127,3697 ,726,3294,726 ,0,0,0}, {3738,3422,3421 ,726,726,726 ,0,0,0}, - {3427,3424,3743 ,3294,726,726 ,0,0,0}, {3428,3427,3744 ,726,3294,726 ,0,0,0}, - {3129,3130,3698 ,726,726,3294 ,0,0,0}, {3427,3743,3744 ,3294,726,726 ,0,0,0}, - {3705,3704,3428 ,3294,726,726 ,0,0,0}, {3704,3133,3428 ,726,726,726 ,0,0,0}, - {3744,3705,3428 ,726,3294,726 ,0,0,0}, {3741,3424,3422 ,726,726,726 ,0,0,0}, - {3291,3473,3437 ,3294,3294,3294 ,0,0,0}, {3289,3437,3440 ,3294,3294,3294 ,0,0,0}, - {3285,3440,3435 ,3294,3294,3294 ,0,0,0}, {3319,3435,3439 ,726,3294,726 ,0,0,0}, - {3439,3442,3321 ,726,3294,3294 ,0,0,0}, {3362,3751,3749 ,726,726,726 ,0,0,0}, - {3437,3289,3291 ,3294,3294,3294 ,0,0,0}, {3442,3445,3322 ,3294,3294,726 ,0,0,0}, - {3440,3285,3289 ,3294,3294,3294 ,0,0,0}, {3366,3369,3757 ,726,726,726 ,0,0,0}, - {3285,3435,3319 ,3294,3294,726 ,0,0,0}, {3446,3324,3445 ,726,726,3294 ,0,0,0}, - {3439,3321,3319 ,726,3294,726 ,0,0,0}, {3328,3450,3449 ,726,3294,3294 ,0,0,0}, - {3442,3322,3321 ,3294,726,3294 ,0,0,0}, {3330,3328,3449 ,3294,726,3294 ,0,0,0}, - {3445,3324,3322 ,3294,726,726 ,0,0,0}, {3453,3333,3330 ,726,3294,3294 ,0,0,0}, - {3446,3327,3324 ,726,3294,726 ,0,0,0}, {3457,3334,3333 ,726,726,3294 ,0,0,0}, - {3459,3336,3334 ,3294,726,726 ,0,0,0}, {3766,3376,3767 ,726,726,726 ,0,0,0}, - {3330,3449,3453 ,3294,3294,726 ,0,0,0}, {3454,3339,3336 ,726,3294,726 ,0,0,0}, - {3333,3453,3457 ,3294,726,726 ,0,0,0}, {3339,3460,3340 ,3294,726,3294 ,0,0,0}, - {3334,3457,3459 ,726,726,3294 ,0,0,0}, {3342,3340,3461 ,3294,3294,726 ,0,0,0}, - {3339,3454,3460 ,3294,726,726 ,0,0,0}, {3345,3467,3466 ,3294,726,3294 ,0,0,0}, - {3340,3460,3461 ,3294,726,726 ,0,0,0}, {3469,3346,3466 ,3294,3295,3294 ,0,0,0}, - {3342,3461,3467 ,3294,726,726 ,0,0,0}, {3469,3351,3348 ,3294,726,726 ,0,0,0}, - {3346,3345,3466 ,3295,3294,3294 ,0,0,0}, {3351,3429,3354 ,726,726,726 ,0,0,0}, - {3431,3354,3429 ,3294,726,726 ,0,0,0}, {3781,3391,3354 ,726,726,726 ,0,0,0}, - {3469,3471,3351 ,3294,726,726 ,0,0,0}, {3336,3459,3454 ,726,3294,726 ,0,0,0}, - {3298,3479,3297 ,3294,726,726 ,0,0,0}, {3309,3491,3488 ,726,3294,3294 ,0,0,0}, - {3307,3488,3486 ,3294,3294,726 ,0,0,0}, {3226,3553,3554 ,3294,726,3294 ,0,0,0}, - {3280,3503,3283 ,3294,3294,726 ,0,0,0}, {3241,3232,3566 ,3294,726,726 ,0,0,0}, - {3504,3503,3278 ,3295,3294,3294 ,0,0,0}, {3268,3271,3806 ,726,3294,3294 ,0,0,0}, - {3270,3504,3277 ,726,3295,3294 ,0,0,0}, {3807,3260,3259 ,3294,3294,726 ,0,0,0}, - {3251,3082,3063 ,726,726,726 ,0,0,0}, {3262,3808,3259 ,3294,726,726 ,0,0,0}, - {3251,3063,3804 ,726,726,726 ,0,0,0}, {3509,3239,3235 ,726,726,3294 ,0,0,0}, - {3231,3559,3560 ,3294,726,726 ,0,0,0}, {3793,3191,3179 ,3294,3294,3294 ,0,0,0}, - {3548,3551,3225 ,3294,3294,3294 ,0,0,0}, {3220,3541,3542 ,3295,3294,3295 ,0,0,0}, - {3529,3530,3203 ,3294,3294,726 ,0,0,0}, {3583,3071,3584 ,3294,3294,3294 ,0,0,0}, - {3206,3524,3527 ,3294,726,3294 ,0,0,0}, {3536,3219,3204 ,726,726,726 ,0,0,0}, - {3219,3536,3539 ,726,726,3294 ,0,0,0}, {3222,3545,3547 ,3294,3294,3294 ,0,0,0}, - {3557,3226,3554 ,726,3294,3294 ,0,0,0}, {3557,3228,3226 ,726,726,3294 ,0,0,0}, - {3232,3231,3563 ,726,3294,726 ,0,0,0}, {3566,3568,3241 ,726,726,3294 ,0,0,0}, - {3241,3510,3238 ,3294,3294,3294 ,0,0,0}, {3235,3234,3509 ,3294,3294,726 ,0,0,0}, - {3807,3809,3260 ,3294,726,3294 ,0,0,0}, {3810,3811,3274 ,726,3294,726 ,0,0,0}, - {3811,3812,3274 ,3294,726,726 ,0,0,0}, {3813,3806,3271 ,726,3294,3294 ,0,0,0}, - {3806,3814,3268 ,3294,726,726 ,0,0,0}, {3239,3509,3506 ,726,726,726 ,0,0,0}, - {3510,3509,3234 ,3294,726,3294 ,0,0,0}, {3510,3241,3568 ,3294,3294,726 ,0,0,0}, - {3566,3232,3565 ,726,726,726 ,0,0,0}, {3563,3231,3560 ,726,3294,726 ,0,0,0}, - {3559,3228,3557 ,726,726,726 ,0,0,0}, {3226,3225,3553 ,3294,3294,726 ,0,0,0}, - {3225,3222,3548 ,3294,3294,3294 ,0,0,0}, {3220,3542,3545 ,3295,3295,3294 ,0,0,0}, - {3219,3539,3541 ,726,3294,3294 ,0,0,0}, {3204,3535,3536 ,726,3294,726 ,0,0,0}, - {3203,3530,3533 ,726,3294,3294 ,0,0,0}, {3206,3527,3529 ,3294,3294,3294 ,0,0,0}, - {3206,3208,3524 ,3294,3294,726 ,0,0,0}, {3210,3521,3523 ,726,3294,3294 ,0,0,0}, - {3213,3517,3518 ,3294,726,726 ,0,0,0}, {3214,3511,3515 ,726,3294,726 ,0,0,0}, - {3215,3571,3569 ,726,3294,3294 ,0,0,0}, {3784,3574,3572 ,3294,726,726 ,0,0,0}, - {3785,3578,3577 ,3294,3294,3294 ,0,0,0}, {3788,3583,3580 ,726,3294,726 ,0,0,0}, - {3002,3069,3000 ,726,3294,3294 ,0,0,0}, {3006,3009,3067 ,3294,3294,3294 ,0,0,0}, - {3586,3584,2999 ,3294,3294,726 ,0,0,0}, {3066,3008,3006 ,3294,726,3294 ,0,0,0}, - {3012,3073,3200 ,3294,726,3294 ,0,0,0}, {3815,3800,3816 ,726,3294,3294 ,0,0,0}, - {3185,3817,3183 ,726,3294,3294 ,0,0,0}, {3818,3185,3186 ,726,726,3294 ,0,0,0}, - {3180,3792,3181 ,3294,3294,726 ,0,0,0}, {3180,3183,3819 ,3294,3294,726 ,0,0,0}, - {3820,3190,3799 ,726,726,3294 ,0,0,0}, {3821,3196,3195 ,3294,3294,3294 ,0,0,0}, - {3815,3791,3790 ,726,3294,3294 ,0,0,0}, {3022,3595,3020 ,3294,3294,3294 ,0,0,0}, - {3017,3592,3590 ,3294,3294,3294 ,0,0,0}, {3026,3028,3601 ,3294,3294,726 ,0,0,0}, - {3023,3598,3596 ,726,726,726 ,0,0,0}, {3607,3029,3787 ,3294,3294,726 ,0,0,0}, - {3787,3794,3607 ,726,3294,3294 ,0,0,0}, {3604,3029,3607 ,726,3294,3294 ,0,0,0}, - {3604,3602,3028 ,726,726,3294 ,0,0,0}, {3610,3608,3794 ,726,726,3294 ,0,0,0}, - {3795,3613,3783 ,3294,726,726 ,0,0,0}, {3783,3610,3794 ,726,726,3294 ,0,0,0}, - {3795,3616,3614 ,3294,726,3294 ,0,0,0}, {3796,3176,3619 ,3294,3294,3294 ,0,0,0}, - {3795,3796,3616 ,3294,3294,726 ,0,0,0}, {3620,3619,3176 ,726,3294,3294 ,0,0,0}, - {3620,3173,3622 ,726,3294,3294 ,0,0,0}, {3625,3173,3171 ,3294,3294,3294 ,0,0,0}, - {3245,3042,3247 ,726,3294,726 ,0,0,0}, {3804,3805,3255 ,726,3294,726 ,0,0,0}, - {3036,3033,3092 ,3294,726,726 ,0,0,0}, {3802,3252,3254 ,726,726,726 ,0,0,0}, - {3803,3252,3801 ,3294,726,726 ,0,0,0}, {3808,3262,3803 ,726,3294,3294 ,0,0,0}, - {3807,3259,3808 ,3294,726,726 ,0,0,0}, {3264,3260,3809 ,3294,3294,726 ,0,0,0}, - {3264,3822,3274 ,3294,3294,726 ,0,0,0}, {3822,3264,3809 ,3294,3294,726 ,0,0,0}, - {3822,3810,3274 ,3294,726,726 ,0,0,0}, {3271,3812,3813 ,3294,726,726 ,0,0,0}, - {3812,3271,3274 ,726,3294,726 ,0,0,0}, {3270,3049,3506 ,726,726,726 ,0,0,0}, - {3814,3049,3270 ,726,726,726 ,0,0,0}, {3814,3270,3268 ,726,726,726 ,0,0,0}, - {3049,3046,3506 ,726,3295,726 ,0,0,0}, {3244,3046,3245 ,3294,3295,726 ,0,0,0}, - {3046,3244,3506 ,3295,3294,726 ,0,0,0}, {3047,3042,3245 ,726,3294,726 ,0,0,0}, - {3040,3043,3247 ,726,726,726 ,0,0,0}, {3042,3040,3247 ,3294,726,726 ,0,0,0}, - {3043,3034,3250 ,726,726,726 ,0,0,0}, {3036,3092,3250 ,3294,726,726 ,0,0,0}, - {3090,3092,3032 ,3294,726,3294 ,0,0,0}, {3054,3089,3051 ,726,3294,726 ,0,0,0}, - {3051,3090,3032 ,726,3294,3294 ,0,0,0}, {3056,3087,3054 ,726,726,726 ,0,0,0}, - {3056,3057,3076 ,726,3294,3294 ,0,0,0}, {3056,3075,3087 ,726,726,726 ,0,0,0}, - {3079,3060,3080 ,726,726,3294 ,0,0,0}, {3076,3057,3079 ,3294,3294,726 ,0,0,0}, - {3082,3062,3063 ,726,3295,726 ,0,0,0}, {3080,3060,3062 ,3294,726,3295 ,0,0,0}, - {3196,3823,3198 ,3294,726,3294 ,0,0,0}, {3787,3786,3791 ,726,726,3294 ,0,0,0}, - {3200,3198,3015 ,3294,3294,3294 ,0,0,0}, {3815,3816,3791 ,726,3294,3294 ,0,0,0}, - {3800,3799,3816 ,3294,3294,3294 ,0,0,0}, {3820,3799,3798 ,726,3294,3294 ,0,0,0}, - {3789,3190,3820 ,3294,726,726 ,0,0,0}, {3818,3186,3789 ,726,3294,3294 ,0,0,0}, - {3817,3185,3818 ,3294,726,726 ,0,0,0}, {3819,3183,3817 ,726,3294,3294 ,0,0,0}, - {3792,3180,3819 ,3294,3294,726 ,0,0,0}, {3179,3181,3793 ,3294,726,3294 ,0,0,0}, - {3797,3191,3793 ,726,3294,3294 ,0,0,0}, {3821,3195,3797 ,3294,3294,726 ,0,0,0}, - {3823,3196,3821 ,726,3294,3294 ,0,0,0}, {3015,3198,3823 ,3294,3294,726 ,0,0,0}, - {3012,3200,3015 ,3294,3294,3294 ,0,0,0}, {3013,3073,3012 ,3294,726,3294 ,0,0,0}, - {3066,3013,3008 ,3294,3294,726 ,0,0,0}, {3013,3066,3073 ,3294,3294,726 ,0,0,0}, - {3006,3067,3066 ,3294,3294,3294 ,0,0,0}, {3071,3069,3002 ,3294,3294,726 ,0,0,0}, - {3586,2999,2998 ,3294,726,726 ,0,0,0}, {2999,3584,3071 ,726,3294,3294 ,0,0,0}, - {3017,3590,2998 ,3294,3294,726 ,0,0,0}, {3589,3586,2998 ,726,3294,726 ,0,0,0}, - {3020,3592,3017 ,3294,3294,3294 ,0,0,0}, {3022,3596,3595 ,3294,726,3294 ,0,0,0}, - {3020,3595,3592 ,3294,3294,3294 ,0,0,0}, {3023,3026,3598 ,726,3294,726 ,0,0,0}, - {3022,3023,3596 ,3294,726,726 ,0,0,0}, {3601,3028,3602 ,726,3294,726 ,0,0,0}, - {3598,3026,3601 ,726,3294,726 ,0,0,0}, {3604,3028,3029 ,726,3294,3294 ,0,0,0}, - {3352,3470,3468 ,730,730,730 ,0,0,0}, {3134,3630,3095 ,730,730,730 ,0,0,0}, - {3205,3538,3537 ,730,730,730 ,0,0,0}, {3464,3347,3465 ,730,730,730 ,0,0,0}, - {3338,3341,3456 ,730,730,730 ,0,0,0}, {3343,3344,3463 ,730,730,730 ,0,0,0}, - {3329,3331,3448 ,730,730,730 ,0,0,0}, {3332,3335,3452 ,730,730,730 ,0,0,0}, - {3433,3436,3287 ,730,730,730 ,0,0,0}, {3323,3325,3443 ,730,730,730 ,0,0,0}, - {3632,3096,3095 ,730,730,730 ,0,0,0}, {3477,3294,3475 ,730,730,730 ,0,0,0}, - {3104,3672,3675 ,730,730,730 ,0,0,0}, {3678,3681,3110 ,730,730,730 ,0,0,0}, - {3666,3669,3098 ,730,730,730 ,0,0,0}, {3672,3104,3102 ,730,730,730 ,0,0,0}, - {3135,3628,3627 ,730,730,730 ,0,0,0}, {3096,3632,3666 ,730,730,730 ,0,0,0}, - {3140,3141,3637 ,730,730,730 ,0,0,0}, {3710,3393,3712 ,730,730,730 ,0,0,0}, - {3638,3144,3641 ,730,730,730 ,0,0,0}, {3141,3638,3637 ,730,730,730 ,0,0,0}, - {3153,3652,3152 ,730,730,730 ,0,0,0}, {3146,3642,3641 ,730,730,730 ,0,0,0}, - {3659,3658,3164 ,730,730,730 ,0,0,0}, {3657,3656,3159 ,730,730,730 ,0,0,0}, - {3165,3168,3662 ,730,730,730 ,0,0,0}, {3824,3576,3579 ,730,730,730 ,0,0,0}, - {3211,3209,3520 ,730,730,730 ,0,0,0}, {3014,3074,3072 ,730,730,730 ,0,0,0}, - {3024,3599,3600 ,730,730,730 ,0,0,0}, {3174,3624,3626 ,730,730,730 ,0,0,0}, - {3664,3172,3626 ,730,730,730 ,0,0,0}, {3825,3826,3618 ,730,730,730 ,0,0,0}, - {3027,3025,3603 ,730,730,730 ,0,0,0}, {3825,3618,3621 ,730,730,730 ,0,0,0}, - {3615,3617,3826 ,730,730,730 ,0,0,0}, {3177,3827,3178 ,730,730,730 ,0,0,0}, - {3626,3172,3174 ,730,730,730 ,0,0,0}, {3538,3205,3218 ,730,730,730 ,0,0,0}, - {3828,3217,3575 ,730,730,730 ,0,0,0}, {3516,3514,3212 ,730,730,730 ,0,0,0}, - {3024,3600,3025 ,730,730,730 ,0,0,0}, {3070,3585,3587 ,730,730,730 ,0,0,0}, - {3168,3170,3664 ,730,730,730 ,0,0,0}, {3068,3001,3065 ,730,730,730 ,0,0,0}, - {3004,3005,3065 ,730,730,730 ,0,0,0}, {3829,3193,3194 ,730,730,730 ,0,0,0}, - {3825,3621,3175 ,730,730,730 ,0,0,0}, {3174,3175,3623 ,730,730,730 ,0,0,0}, - {3830,3615,3826 ,730,730,730 ,0,0,0}, {3611,3612,3831 ,730,730,730 ,0,0,0}, - {3831,3612,3830 ,730,730,730 ,0,0,0}, {3830,3612,3615 ,730,730,730 ,0,0,0}, - {3826,3617,3618 ,730,730,730 ,0,0,0}, {3832,3833,3834 ,730,730,730 ,0,0,0}, - {3083,3084,3061 ,730,730,730 ,0,0,0}, {3621,3623,3175 ,730,730,730 ,0,0,0}, - {3605,3027,3603 ,730,730,730 ,0,0,0}, {3624,3174,3623 ,730,730,730 ,0,0,0}, - {3835,3189,3187 ,730,730,730 ,0,0,0}, {3194,3197,3836 ,730,730,730 ,0,0,0}, - {3199,3074,3011 ,730,730,730 ,0,0,0}, {3197,3199,3010 ,730,730,730 ,0,0,0}, - {3664,3170,3172 ,730,730,730 ,0,0,0}, {3178,3837,3182 ,730,730,730 ,0,0,0}, - {3838,3192,3193 ,730,730,730 ,0,0,0}, {3070,3587,2997 ,730,730,730 ,0,0,0}, - {3182,3839,3184 ,730,730,730 ,0,0,0}, {3021,3599,3024 ,730,730,730 ,0,0,0}, - {3599,3021,3597 ,730,730,730 ,0,0,0}, {3512,3216,3513 ,730,730,730 ,0,0,0}, - {3528,3202,3531 ,730,730,730 ,0,0,0}, {3525,3522,3207 ,730,730,730 ,0,0,0}, - {3546,3544,3221 ,730,730,730 ,0,0,0}, {3534,3201,3205 ,730,730,730 ,0,0,0}, - {3546,3221,3223 ,730,730,730 ,0,0,0}, {3164,3165,3659 ,730,730,730 ,0,0,0}, - {3168,3664,3662 ,730,730,730 ,0,0,0}, {3662,3659,3165 ,730,730,730 ,0,0,0}, - {3678,3108,3677 ,730,730,730 ,0,0,0}, {3657,3159,3162 ,730,730,730 ,0,0,0}, - {3658,3162,3164 ,730,730,730 ,0,0,0}, {3158,3159,3656 ,730,730,730 ,0,0,0}, - {3657,3162,3658 ,730,730,730 ,0,0,0}, {3158,3650,3156 ,730,730,730 ,0,0,0}, - {3649,3153,3156 ,730,730,730 ,0,0,0}, {3656,3650,3158 ,730,730,730 ,0,0,0}, - {3153,3649,3652 ,730,730,730 ,0,0,0}, {3156,3650,3649 ,730,730,730 ,0,0,0}, - {3487,3306,3305 ,730,730,730 ,0,0,0}, {3646,3150,3152 ,730,730,730 ,0,0,0}, - {3150,3645,3147 ,730,730,730 ,0,0,0}, {3645,3642,3147 ,730,730,730 ,0,0,0}, - {3642,3146,3147 ,730,730,730 ,0,0,0}, {3641,3144,3146 ,730,730,730 ,0,0,0}, - {3638,3141,3144 ,730,730,730 ,0,0,0}, {3138,3635,3628 ,730,730,730 ,0,0,0}, - {3140,3637,3635 ,730,730,730 ,0,0,0}, {3135,3627,3134 ,730,730,730 ,0,0,0}, - {3630,3632,3095 ,730,730,730 ,0,0,0}, {3098,3669,3101 ,730,730,730 ,0,0,0}, - {3102,3101,3671 ,730,730,730 ,0,0,0}, {3104,3675,3107 ,730,730,730 ,0,0,0}, - {3102,3671,3672 ,730,730,730 ,0,0,0}, {3107,3677,3108 ,730,730,730 ,0,0,0}, - {3107,3675,3677 ,730,730,730 ,0,0,0}, {3113,3681,3683 ,730,730,730 ,0,0,0}, - {3110,3108,3678 ,730,730,730 ,0,0,0}, {3114,3113,3683 ,730,730,730 ,0,0,0}, - {3114,3683,3684 ,730,730,730 ,0,0,0}, {3116,3684,3687 ,730,730,730 ,0,0,0}, - {3114,3684,3116 ,730,730,730 ,0,0,0}, {3687,3119,3116 ,730,730,730 ,0,0,0}, - {3687,3689,3119 ,730,730,730 ,0,0,0}, {3119,3689,3120 ,730,730,730 ,0,0,0}, - {3101,3669,3671 ,730,730,730 ,0,0,0}, {3122,3120,3690 ,730,730,730 ,0,0,0}, - {3120,3689,3690 ,730,730,730 ,0,0,0}, {3693,3125,3122 ,730,730,730 ,0,0,0}, - {3693,3122,3690 ,730,730,730 ,0,0,0}, {3125,3695,3126 ,730,730,730 ,0,0,0}, - {3126,3696,3128 ,730,730,730 ,0,0,0}, {3696,3126,3695 ,730,730,730 ,0,0,0}, - {3696,3699,3131 ,730,730,730 ,0,0,0}, {3423,3742,3740 ,730,730,730 ,0,0,0}, - {3132,3131,3699 ,730,730,730 ,0,0,0}, {3702,3706,3426 ,730,730,730 ,0,0,0}, - {3425,3745,3742 ,730,730,730 ,0,0,0}, {3098,3096,3666 ,730,730,730 ,0,0,0}, - {3359,3746,3357 ,730,730,730 ,0,0,0}, {3745,3425,3426 ,730,730,730 ,0,0,0}, - {3627,3630,3134 ,730,730,730 ,0,0,0}, {3481,3299,3478 ,730,730,730 ,0,0,0}, - {3302,3300,3483 ,730,730,730 ,0,0,0}, {3300,3299,3481 ,730,730,730 ,0,0,0}, - {3296,3294,3477 ,730,730,730 ,0,0,0}, {3477,3478,3296 ,730,730,730 ,0,0,0}, - {3475,3293,3472 ,730,730,730 ,0,0,0}, {3475,3294,3293 ,730,730,730 ,0,0,0}, - {3438,3472,3290 ,730,730,730 ,0,0,0}, {3293,3290,3472 ,730,730,730 ,0,0,0}, - {3288,3436,3438 ,730,730,730 ,0,0,0}, {3438,3290,3288 ,730,730,730 ,0,0,0}, - {3434,3286,3320 ,730,730,730 ,0,0,0}, {3287,3436,3288 ,730,730,730 ,0,0,0}, - {3320,3323,3441 ,730,730,730 ,0,0,0}, {3286,3434,3433 ,730,730,730 ,0,0,0}, - {3434,3320,3441 ,730,730,730 ,0,0,0}, {3447,3444,3326 ,730,730,730 ,0,0,0}, - {3368,3758,3759 ,730,730,730 ,0,0,0}, {3329,3447,3326 ,730,730,730 ,0,0,0}, - {3325,3326,3444 ,730,730,730 ,0,0,0}, {3451,3332,3452 ,730,730,730 ,0,0,0}, - {3448,3447,3329 ,730,730,730 ,0,0,0}, {3335,3458,3452 ,730,730,730 ,0,0,0}, - {3332,3451,3331 ,730,730,730 ,0,0,0}, {3338,3455,3337 ,730,730,730 ,0,0,0}, - {3337,3455,3458 ,730,730,730 ,0,0,0}, {3462,3456,3341 ,730,730,730 ,0,0,0}, - {3456,3455,3338 ,730,730,730 ,0,0,0}, {3344,3464,3463 ,730,730,730 ,0,0,0}, - {3343,3463,3462 ,730,730,730 ,0,0,0}, {3468,3349,3350 ,730,730,730 ,0,0,0}, - {3349,3465,3347 ,730,730,730 ,0,0,0}, {3468,3350,3352 ,730,730,730 ,0,0,0}, - {3699,3701,3132 ,730,730,730 ,0,0,0}, {3702,3132,3701 ,730,730,730 ,0,0,0}, - {3420,3739,3419 ,730,730,730 ,0,0,0}, {3131,3128,3696 ,730,730,730 ,0,0,0}, - {3425,3742,3423 ,730,730,730 ,0,0,0}, {3125,3693,3695 ,730,730,730 ,0,0,0}, - {3417,3419,3736 ,730,730,730 ,0,0,0}, {3740,3739,3420 ,730,730,730 ,0,0,0}, - {3414,3417,3734 ,730,730,730 ,0,0,0}, {3739,3736,3419 ,730,730,730 ,0,0,0}, - {3733,3413,3414 ,730,730,730 ,0,0,0}, {3730,3411,3413 ,730,730,730 ,0,0,0}, - {3734,3417,3736 ,730,730,730 ,0,0,0}, {3728,3408,3411 ,730,730,730 ,0,0,0}, - {3733,3414,3734 ,730,730,730 ,0,0,0}, {3110,3681,3113 ,730,730,730 ,0,0,0}, - {3733,3730,3413 ,730,730,730 ,0,0,0}, {3727,3724,3407 ,730,730,730 ,0,0,0}, - {3730,3728,3411 ,730,730,730 ,0,0,0}, {3724,3722,3405 ,730,730,730 ,0,0,0}, - {3722,3721,3402 ,730,730,730 ,0,0,0}, {3721,3718,3401 ,730,730,730 ,0,0,0}, - {3408,3727,3407 ,730,730,730 ,0,0,0}, {3718,3716,3399 ,730,730,730 ,0,0,0}, - {3407,3724,3405 ,730,730,730 ,0,0,0}, {3715,3396,3716 ,730,730,730 ,0,0,0}, - {3405,3722,3402 ,730,730,730 ,0,0,0}, {3395,3715,3712 ,730,730,730 ,0,0,0}, - {3402,3721,3401 ,730,730,730 ,0,0,0}, {3393,3710,3358 ,730,730,730 ,0,0,0}, - {3401,3718,3399 ,730,730,730 ,0,0,0}, {3359,3358,3709 ,730,730,730 ,0,0,0}, - {3716,3396,3399 ,730,730,730 ,0,0,0}, {3357,3747,3361 ,730,730,730 ,0,0,0}, - {3395,3396,3715 ,730,730,730 ,0,0,0}, {3484,3302,3483 ,730,730,730 ,0,0,0}, - {3140,3635,3138 ,730,730,730 ,0,0,0}, {3138,3628,3135 ,730,730,730 ,0,0,0}, - {3358,3710,3709 ,730,730,730 ,0,0,0}, {3484,3487,3305 ,730,730,730 ,0,0,0}, - {3359,3709,3746 ,730,730,730 ,0,0,0}, {3487,3489,3306 ,730,730,730 ,0,0,0}, - {3357,3746,3747 ,730,730,730 ,0,0,0}, {3489,3490,3308 ,730,730,730 ,0,0,0}, - {3490,3493,3311 ,730,730,730 ,0,0,0}, {3481,3483,3300 ,730,730,730 ,0,0,0}, - {3493,3495,3312 ,730,730,730 ,0,0,0}, {3305,3302,3484 ,730,730,730 ,0,0,0}, - {3495,3496,3314 ,730,730,730 ,0,0,0}, {3152,3652,3646 ,730,730,730 ,0,0,0}, - {3150,3646,3645 ,730,730,730 ,0,0,0}, {3489,3308,3306 ,730,730,730 ,0,0,0}, - {3281,3499,3501 ,730,730,730 ,0,0,0}, {3490,3311,3308 ,730,730,730 ,0,0,0}, - {3273,3840,3841 ,730,730,730 ,0,0,0}, {3493,3312,3311 ,730,730,730 ,0,0,0}, - {3078,3081,3058 ,730,730,730 ,0,0,0}, {3052,3086,3053 ,730,730,730 ,0,0,0}, - {3317,3499,3282 ,730,730,730 ,0,0,0}, {3236,3505,3507 ,730,730,730 ,0,0,0}, - {3242,3240,3508 ,730,730,730 ,0,0,0}, {3055,3077,3078 ,730,730,730 ,0,0,0}, - {3230,3564,3562 ,730,730,730 ,0,0,0}, {3842,3256,3843 ,730,730,730 ,0,0,0}, - {3505,3236,3243 ,730,730,730 ,0,0,0}, {3224,3555,3552 ,730,730,730 ,0,0,0}, - {3606,3030,3027 ,730,730,730 ,0,0,0}, {3844,3609,3831 ,730,730,730 ,0,0,0}, - {3611,3831,3609 ,730,730,730 ,0,0,0}, {3609,3844,3030 ,730,730,730 ,0,0,0}, - {3845,3846,3847 ,730,730,730 ,0,0,0}, {3609,3030,3606 ,730,730,730 ,0,0,0}, - {3605,3606,3027 ,730,730,730 ,0,0,0}, {3007,3072,3005 ,730,730,730 ,0,0,0}, - {3838,3827,3192 ,730,730,730 ,0,0,0}, {3848,3849,3850 ,730,730,730 ,0,0,0}, - {3512,3570,3216 ,730,730,730 ,0,0,0}, {3202,3526,3207 ,730,730,730 ,0,0,0}, - {3543,3218,3221 ,730,730,730 ,0,0,0}, {3556,3227,3229 ,730,730,730 ,0,0,0}, - {3556,3555,3227 ,730,730,730 ,0,0,0}, {3558,3229,3561 ,730,730,730 ,0,0,0}, - {3552,3550,3224 ,730,730,730 ,0,0,0}, {3550,3549,3223 ,730,730,730 ,0,0,0}, - {3218,3543,3540 ,730,730,730 ,0,0,0}, {3534,3532,3201 ,730,730,730 ,0,0,0}, - {3201,3531,3202 ,730,730,730 ,0,0,0}, {3526,3525,3207 ,730,730,730 ,0,0,0}, - {3520,3519,3211 ,730,730,730 ,0,0,0}, {3516,3212,3211 ,730,730,730 ,0,0,0}, - {3561,3230,3562 ,730,730,730 ,0,0,0}, {3514,3513,3212 ,730,730,730 ,0,0,0}, - {3570,3217,3216 ,730,730,730 ,0,0,0}, {3573,3575,3217 ,730,730,730 ,0,0,0}, - {3581,3851,3824 ,730,730,730 ,0,0,0}, {3851,3581,3582 ,730,730,730 ,0,0,0}, - {3070,3851,3585 ,730,730,730 ,0,0,0}, {3016,3588,3591 ,730,730,730 ,0,0,0}, - {3019,3018,3594 ,730,730,730 ,0,0,0}, {3016,2997,3588 ,730,730,730 ,0,0,0}, - {3582,3585,3851 ,730,730,730 ,0,0,0}, {3579,3581,3824 ,730,730,730 ,0,0,0}, - {3575,3576,3828 ,730,730,730 ,0,0,0}, {3576,3824,3828 ,730,730,730 ,0,0,0}, - {3570,3573,3217 ,730,730,730 ,0,0,0}, {3513,3216,3212 ,730,730,730 ,0,0,0}, - {3516,3211,3519 ,730,730,730 ,0,0,0}, {3209,3207,3522 ,730,730,730 ,0,0,0}, - {3209,3522,3520 ,730,730,730 ,0,0,0}, {3202,3528,3526 ,730,730,730 ,0,0,0}, - {3201,3532,3531 ,730,730,730 ,0,0,0}, {3205,3537,3534 ,730,730,730 ,0,0,0}, - {3218,3540,3538 ,730,730,730 ,0,0,0}, {3221,3544,3543 ,730,730,730 ,0,0,0}, - {3223,3549,3546 ,730,730,730 ,0,0,0}, {3223,3224,3550 ,730,730,730 ,0,0,0}, - {3224,3227,3555 ,730,730,730 ,0,0,0}, {3229,3558,3556 ,730,730,730 ,0,0,0}, - {3229,3230,3561 ,730,730,730 ,0,0,0}, {3230,3242,3564 ,730,730,730 ,0,0,0}, - {3242,3508,3567 ,730,730,730 ,0,0,0}, {3564,3242,3567 ,730,730,730 ,0,0,0}, - {3508,3240,3237 ,730,730,730 ,0,0,0}, {3237,3233,3507 ,730,730,730 ,0,0,0}, - {3507,3508,3237 ,730,730,730 ,0,0,0}, {3059,3058,3081 ,730,730,730 ,0,0,0}, - {3236,3507,3233 ,730,730,730 ,0,0,0}, {3038,3248,3249 ,730,730,730 ,0,0,0}, - {3059,3081,3083 ,730,730,730 ,0,0,0}, {3084,3257,3064 ,730,730,730 ,0,0,0}, - {3083,3061,3059 ,730,730,730 ,0,0,0}, {3084,3064,3061 ,730,730,730 ,0,0,0}, - {3265,3852,3258 ,730,730,730 ,0,0,0}, {3261,3853,3253 ,730,730,730 ,0,0,0}, - {3854,3266,3855 ,730,730,730 ,0,0,0}, {3273,3856,3855 ,730,730,730 ,0,0,0}, - {3088,3050,3091 ,730,730,730 ,0,0,0}, {3857,3272,3858 ,730,730,730 ,0,0,0}, - {3052,3050,3088 ,730,730,730 ,0,0,0}, {3501,3276,3279 ,730,730,730 ,0,0,0}, - {3502,3275,3276 ,730,730,730 ,0,0,0}, {3041,3248,3039 ,730,730,730 ,0,0,0}, - {3249,3035,3038 ,730,730,730 ,0,0,0}, {3041,3048,3246 ,730,730,730 ,0,0,0}, - {3269,3275,3502 ,730,730,730 ,0,0,0}, {3269,3502,3505 ,730,730,730 ,0,0,0}, - {3276,3501,3502 ,730,730,730 ,0,0,0}, {3281,3501,3279 ,730,730,730 ,0,0,0}, - {3282,3499,3281 ,730,730,730 ,0,0,0}, {3496,3499,3317 ,730,730,730 ,0,0,0}, - {3314,3496,3317 ,730,730,730 ,0,0,0}, {3312,3495,3314 ,730,730,730 ,0,0,0}, - {3361,3750,3363 ,730,730,730 ,0,0,0}, {3753,3363,3752 ,730,730,730 ,0,0,0}, - {3296,3478,3299 ,730,730,730 ,0,0,0}, {3756,3364,3753 ,730,730,730 ,0,0,0}, - {3756,3367,3364 ,730,730,730 ,0,0,0}, {3758,3368,3367 ,730,730,730 ,0,0,0}, - {3750,3361,3747 ,730,730,730 ,0,0,0}, {3759,3374,3368 ,730,730,730 ,0,0,0}, - {3752,3363,3750 ,730,730,730 ,0,0,0}, {3286,3433,3287 ,730,730,730 ,0,0,0}, - {3370,3374,3762 ,730,730,730 ,0,0,0}, {3364,3363,3753 ,730,730,730 ,0,0,0}, - {3371,3370,3764 ,730,730,730 ,0,0,0}, {3756,3758,3367 ,730,730,730 ,0,0,0}, - {3377,3371,3765 ,730,730,730 ,0,0,0}, {3325,3444,3443 ,730,730,730 ,0,0,0}, - {3323,3443,3441 ,730,730,730 ,0,0,0}, {3374,3759,3762 ,730,730,730 ,0,0,0}, - {3378,3377,3768 ,730,730,730 ,0,0,0}, {3378,3768,3770 ,730,730,730 ,0,0,0}, - {3762,3764,3370 ,730,730,730 ,0,0,0}, {3331,3451,3448 ,730,730,730 ,0,0,0}, - {3371,3764,3765 ,730,730,730 ,0,0,0}, {3770,3771,3381 ,730,730,730 ,0,0,0}, - {3774,3387,3771 ,730,730,730 ,0,0,0}, {3765,3768,3377 ,730,730,730 ,0,0,0}, - {3381,3378,3770 ,730,730,730 ,0,0,0}, {3776,3385,3774 ,730,730,730 ,0,0,0}, - {3335,3337,3458 ,730,730,730 ,0,0,0}, {3777,3383,3776 ,730,730,730 ,0,0,0}, - {3387,3381,3771 ,730,730,730 ,0,0,0}, {3341,3343,3462 ,730,730,730 ,0,0,0}, - {3774,3385,3387 ,730,730,730 ,0,0,0}, {3777,3780,3388 ,730,730,730 ,0,0,0}, - {3344,3347,3464 ,730,730,730 ,0,0,0}, {3776,3383,3385 ,730,730,730 ,0,0,0}, - {3390,3388,3780 ,730,730,730 ,0,0,0}, {3390,3782,3353 ,730,730,730 ,0,0,0}, - {3465,3349,3468 ,730,730,730 ,0,0,0}, {3390,3780,3782 ,730,730,730 ,0,0,0}, - {3432,3352,3353 ,730,730,730 ,0,0,0}, {3470,3352,3432 ,730,730,730 ,0,0,0}, - {3782,3430,3353 ,730,730,730 ,0,0,0}, {3432,3353,3430 ,730,730,730 ,0,0,0}, - {3777,3388,3383 ,730,730,730 ,0,0,0}, {3393,3395,3712 ,730,730,730 ,0,0,0}, - {3727,3408,3728 ,730,730,730 ,0,0,0}, {3740,3420,3423 ,730,730,730 ,0,0,0}, - {3702,3426,3132 ,730,730,730 ,0,0,0}, {3706,3745,3426 ,730,730,730 ,0,0,0}, - {3053,3085,3055 ,730,730,730 ,0,0,0}, {3859,3261,3263 ,730,730,730 ,0,0,0}, - {3265,3854,3852 ,730,730,730 ,0,0,0}, {3055,3078,3058 ,730,730,730 ,0,0,0}, - {3055,3085,3077 ,730,730,730 ,0,0,0}, {3053,3086,3085 ,730,730,730 ,0,0,0}, - {3052,3088,3086 ,730,730,730 ,0,0,0}, {3267,3269,3860 ,730,730,730 ,0,0,0}, - {3031,3037,3091 ,730,730,730 ,0,0,0}, {3031,3091,3050 ,730,730,730 ,0,0,0}, - {3249,3037,3035 ,730,730,730 ,0,0,0}, {3037,3249,3091 ,730,730,730 ,0,0,0}, - {3044,3269,3505 ,730,730,730 ,0,0,0}, {3041,3246,3248 ,730,730,730 ,0,0,0}, - {3038,3039,3248 ,730,730,730 ,0,0,0}, {3045,3246,3048 ,730,730,730 ,0,0,0}, - {3505,3045,3044 ,730,730,730 ,0,0,0}, {3243,3045,3505 ,730,730,730 ,0,0,0}, - {3045,3243,3246 ,730,730,730 ,0,0,0}, {3044,3860,3269 ,730,730,730 ,0,0,0}, - {3267,3858,3272 ,730,730,730 ,0,0,0}, {3860,3858,3267 ,730,730,730 ,0,0,0}, - {3272,3840,3273 ,730,730,730 ,0,0,0}, {3857,3840,3272 ,730,730,730 ,0,0,0}, - {3841,3856,3273 ,730,730,730 ,0,0,0}, {3855,3266,3273 ,730,730,730 ,0,0,0}, - {3854,3265,3266 ,730,730,730 ,0,0,0}, {3861,3258,3852 ,730,730,730 ,0,0,0}, - {3263,3861,3859 ,730,730,730 ,0,0,0}, {3861,3263,3258 ,730,730,730 ,0,0,0}, - {3859,3862,3261 ,730,730,730 ,0,0,0}, {3853,3843,3253 ,730,730,730 ,0,0,0}, - {3862,3853,3261 ,730,730,730 ,0,0,0}, {3256,3842,3257 ,730,730,730 ,0,0,0}, - {3253,3843,3256 ,730,730,730 ,0,0,0}, {3064,3257,3842 ,730,730,730 ,0,0,0}, - {3068,3070,3003 ,730,730,730 ,0,0,0}, {3600,3603,3025 ,730,730,730 ,0,0,0}, - {3187,3184,3863 ,730,730,730 ,0,0,0}, {3019,3594,3597 ,730,730,730 ,0,0,0}, - {3597,3021,3019 ,730,730,730 ,0,0,0}, {3593,3594,3018 ,730,730,730 ,0,0,0}, - {3593,3016,3591 ,730,730,730 ,0,0,0}, {3016,3593,3018 ,730,730,730 ,0,0,0}, - {3588,2997,3587 ,730,730,730 ,0,0,0}, {2997,3003,3070 ,730,730,730 ,0,0,0}, - {3003,3001,3068 ,730,730,730 ,0,0,0}, {3001,3004,3065 ,730,730,730 ,0,0,0}, - {3005,3072,3065 ,730,730,730 ,0,0,0}, {3014,3072,3007 ,730,730,730 ,0,0,0}, - {3011,3074,3014 ,730,730,730 ,0,0,0}, {3010,3199,3011 ,730,730,730 ,0,0,0}, - {3836,3197,3010 ,730,730,730 ,0,0,0}, {3829,3194,3836 ,730,730,730 ,0,0,0}, - {3838,3193,3829 ,730,730,730 ,0,0,0}, {3177,3192,3827 ,730,730,730 ,0,0,0}, - {3837,3178,3827 ,730,730,730 ,0,0,0}, {3839,3182,3837 ,730,730,730 ,0,0,0}, - {3863,3184,3839 ,730,730,730 ,0,0,0}, {3864,3189,3835 ,730,730,730 ,0,0,0}, - {3835,3187,3863 ,730,730,730 ,0,0,0}, {3188,3864,3850 ,730,730,730 ,0,0,0}, - {3864,3188,3189 ,730,730,730 ,0,0,0}, {3848,3833,3849 ,730,730,730 ,0,0,0}, - {3188,3850,3849 ,730,730,730 ,0,0,0}, {3832,3834,3845 ,730,730,730 ,0,0,0}, - {3849,3833,3832 ,730,730,730 ,0,0,0}, {3845,3847,3844 ,730,730,730 ,0,0,0}, - {3845,3834,3846 ,730,730,730 ,0,0,0}, {3030,3844,3847 ,730,730,730 ,0,0,0}, - {3844,3831,3794 ,3296,3297,3298 ,0,0,0}, {3845,3787,3791 ,3299,3300,3301 ,0,0,0}, - {3787,3844,3794 ,3300,3296,3298 ,0,0,0}, {3844,3787,3845 ,3296,3300,3299 ,0,0,0}, - {3849,3816,3799 ,3302,3303,3304 ,0,0,0}, {3845,3791,3832 ,3299,3301,3305 ,0,0,0}, - {3849,3832,3816 ,3302,3305,3303 ,0,0,0}, {3799,3190,3188 ,3304,2732,2732 ,0,0,0}, - {3799,3188,3849 ,3304,2732,3302 ,0,0,0}, {3816,3832,3791 ,3303,3305,3301 ,0,0,0}, - {3831,3783,3794 ,3297,3306,3298 ,0,0,0}, {3795,3783,3830 ,3307,3306,3308 ,0,0,0}, - {3831,3830,3783 ,3297,3308,3306 ,0,0,0}, {3826,3796,3795 ,3309,3310,3307 ,0,0,0}, - {3795,3830,3826 ,3307,3308,3309 ,0,0,0}, {3796,3825,3176 ,3310,3311,2722 ,0,0,0}, - {3825,3796,3826 ,3311,3310,3309 ,0,0,0}, {3825,3175,3176 ,3311,2722,2722 ,0,0,0}, - {3071,3788,3851 ,2635,3312,3312 ,0,0,0}, {3784,3217,3828 ,3313,2758,3314 ,0,0,0}, - {3828,3824,3785 ,3314,3315,3315 ,0,0,0}, {3215,3217,3784 ,2758,2758,3313 ,0,0,0}, - {3788,3824,3851 ,3312,3315,3312 ,0,0,0}, {3824,3788,3785 ,3315,3312,3315 ,0,0,0}, - {3784,3828,3785 ,3313,3314,3315 ,0,0,0}, {3851,3070,3071 ,3312,2635,2635 ,0,0,0}, - {3049,3814,3860 ,3316,795,3317 ,0,0,0}, {3812,3840,3813 ,3318,3319,3320 ,0,0,0}, - {3857,3858,3806 ,3321,3322,857 ,0,0,0}, {3855,3822,3854 ,3323,3324,21 ,0,0,0}, - {3811,3810,3856 ,3325,3326,3327 ,0,0,0}, {3808,3859,3861 ,3328,3329,3330 ,0,0,0}, - {3807,3852,3809 ,3331,3332,3333 ,0,0,0}, {3801,3853,3862 ,3334,3335,3336 ,0,0,0}, - {3862,3859,3803 ,3336,3329,3337 ,0,0,0}, {3853,3802,3843 ,3335,3338,3339 ,0,0,0}, - {3802,3853,3801 ,3338,3335,3334 ,0,0,0}, {3842,3843,3805 ,3340,3339,3341 ,0,0,0}, - {3802,3805,3843 ,3338,3341,3339 ,0,0,0}, {3804,3064,3842 ,3342,82,3340 ,0,0,0}, - {3842,3805,3804 ,3340,3341,3342 ,0,0,0}, {3063,3064,3804 ,3343,82,3342 ,0,0,0}, - {3807,3808,3861 ,3331,3328,3330 ,0,0,0}, {3859,3808,3803 ,3329,3328,3337 ,0,0,0}, - {3801,3862,3803 ,3334,3336,3337 ,0,0,0}, {3807,3861,3852 ,3331,3330,3332 ,0,0,0}, - {3809,3852,3854 ,3333,3332,21 ,0,0,0}, {3822,3855,3810 ,3324,3323,3326 ,0,0,0}, - {3822,3809,3854 ,3324,3333,21 ,0,0,0}, {3811,3856,3841 ,3325,3327,3344 ,0,0,0}, - {3856,3810,3855 ,3327,3326,3323 ,0,0,0}, {3841,3840,3812 ,3344,3319,3318 ,0,0,0}, - {3841,3812,3811 ,3344,3318,3325 ,0,0,0}, {3806,3813,3857 ,857,3320,3321 ,0,0,0}, - {3840,3857,3813 ,3319,3321,3320 ,0,0,0}, {3858,3814,3806 ,3322,795,857 ,0,0,0}, - {3049,3860,3044 ,3316,3317,3345 ,0,0,0}, {3814,3858,3860 ,795,3322,3317 ,0,0,0}, - {3015,3823,3836 ,3346,3347,3348 ,0,0,0}, {3793,3827,3797 ,3349,3350,3351 ,0,0,0}, - {3838,3829,3821 ,3321,801,857 ,0,0,0}, {3863,3817,3835 ,3352,3353,21 ,0,0,0}, - {3792,3819,3839 ,3354,807,3355 ,0,0,0}, {3820,3848,3850 ,3356,3357,3358 ,0,0,0}, - {3789,3864,3818 ,3359,3360,21 ,0,0,0}, {3800,3834,3833 ,3361,3362,3363 ,0,0,0}, - {3833,3848,3798 ,3363,3357,3364 ,0,0,0}, {3834,3815,3846 ,3362,3365,3366 ,0,0,0}, - {3815,3834,3800 ,3365,3362,3361 ,0,0,0}, {3847,3846,3790 ,3367,3366,3368 ,0,0,0}, - {3815,3790,3846 ,3365,3368,3366 ,0,0,0}, {3786,3030,3847 ,3369,3370,3367 ,0,0,0}, - {3847,3790,3786 ,3367,3368,3369 ,0,0,0}, {3029,3030,3786 ,3371,3370,3369 ,0,0,0}, - {3789,3820,3850 ,3359,3356,3358 ,0,0,0}, {3848,3820,3798 ,3357,3356,3364 ,0,0,0}, - {3800,3833,3798 ,3361,3363,3364 ,0,0,0}, {3789,3850,3864 ,3359,3358,3360 ,0,0,0}, - {3818,3864,3835 ,21,3360,21 ,0,0,0}, {3817,3863,3819 ,3353,3352,807 ,0,0,0}, - {3817,3818,3835 ,3353,21,21 ,0,0,0}, {3792,3839,3837 ,3354,3355,3372 ,0,0,0}, - {3839,3819,3863 ,3355,807,3352 ,0,0,0}, {3837,3827,3793 ,3372,3350,3349 ,0,0,0}, - {3837,3793,3792 ,3372,3349,3354 ,0,0,0}, {3821,3797,3838 ,857,3351,3321 ,0,0,0}, - {3827,3838,3797 ,3350,3321,3351 ,0,0,0}, {3829,3823,3821 ,801,3347,857 ,0,0,0}, - {3015,3836,3010 ,3346,3348,126 ,0,0,0}, {3823,3829,3836 ,3347,801,3348 ,0,0,0} -// BladeProtector2.prt - , {3865,3866,3867 ,21,3324,3333 ,0,0,0}, {3868,3869,3870 ,3328,3330,3331 ,0,0,0}, - {3871,3865,3867 ,3332,21,3333 ,0,0,0}, {3870,3869,3871 ,3331,3330,3332 ,0,0,0}, - {3869,3868,3872 ,3330,3328,3329 ,0,0,0}, {3867,3870,3871 ,3333,3331,3332 ,0,0,0}, - {3873,3874,3875 ,3336,3334,3335 ,0,0,0}, {3874,3876,3875 ,3334,3338,3335 ,0,0,0}, - {3872,3877,3873 ,3329,3337,3336 ,0,0,0}, {3874,3873,3877 ,3334,3336,3337 ,0,0,0}, - {3878,3879,3880 ,82,3340,3342 ,0,0,0}, {3881,3882,3876 ,3341,3339,3338 ,0,0,0}, - {3879,3882,3881 ,3340,3339,3341 ,0,0,0}, {3879,3881,3880 ,3340,3341,3342 ,0,0,0}, - {3880,3883,3878 ,3342,3343,82 ,0,0,0}, {3875,3876,3882 ,3335,3338,3339 ,0,0,0}, - {3872,3868,3877 ,3329,3328,3337 ,0,0,0}, {3865,3884,3866 ,21,3323,3324 ,0,0,0}, - {3885,3884,3886 ,3326,3323,3327 ,0,0,0}, {3884,3885,3866 ,3323,3326,3324 ,0,0,0}, - {3887,3888,3886 ,3344,3325,3327 ,0,0,0}, {3885,3886,3888 ,3326,3327,3325 ,0,0,0}, - {3887,3889,3890 ,3344,3319,3318 ,0,0,0}, {3890,3888,3887 ,3318,3325,3344 ,0,0,0}, - {3891,3889,3892 ,3320,3319,3321 ,0,0,0}, {3889,3891,3890 ,3319,3320,3318 ,0,0,0}, - {3893,3894,3892 ,3322,857,3321 ,0,0,0}, {3891,3892,3894 ,3320,3321,857 ,0,0,0}, - {3893,3895,3896 ,3322,3317,795 ,0,0,0}, {3896,3894,3893 ,795,857,3322 ,0,0,0}, - {3897,3895,3898 ,3316,3317,3345 ,0,0,0}, {3895,3897,3896 ,3317,3316,795 ,0,0,0}, - {3899,3900,3901 ,21,3353,21 ,0,0,0}, {3902,3903,3904 ,3356,3358,3359 ,0,0,0}, - {3905,3899,3901 ,3360,21,21 ,0,0,0}, {3904,3903,3905 ,3359,3358,3360 ,0,0,0}, - {3903,3902,3906 ,3358,3356,3357 ,0,0,0}, {3901,3904,3905 ,21,3359,3360 ,0,0,0}, - {3907,3908,3909 ,3363,3361,3362 ,0,0,0}, {3908,3910,3909 ,3361,3365,3362 ,0,0,0}, - {3906,3911,3907 ,3357,3364,3363 ,0,0,0}, {3908,3907,3911 ,3361,3363,3364 ,0,0,0}, - {3912,3913,3914 ,3370,3367,3369 ,0,0,0}, {3915,3916,3910 ,3368,3366,3365 ,0,0,0}, - {3913,3916,3915 ,3367,3366,3368 ,0,0,0}, {3913,3915,3914 ,3367,3368,3369 ,0,0,0}, - {3914,3917,3912 ,3369,3371,3370 ,0,0,0}, {3909,3910,3916 ,3362,3365,3366 ,0,0,0}, - {3906,3902,3911 ,3357,3356,3364 ,0,0,0}, {3899,3918,3900 ,21,3352,3353 ,0,0,0}, - {3919,3918,3920 ,807,3352,3355 ,0,0,0}, {3918,3919,3900 ,3352,807,3353 ,0,0,0}, - {3921,3922,3920 ,3372,3354,3355 ,0,0,0}, {3919,3920,3922 ,807,3355,3354 ,0,0,0}, - {3921,3923,3924 ,3372,3350,3349 ,0,0,0}, {3924,3922,3921 ,3349,3354,3372 ,0,0,0}, - {3925,3923,3926 ,3351,3350,3321 ,0,0,0}, {3923,3925,3924 ,3350,3351,3349 ,0,0,0}, - {3927,3928,3926 ,801,857,3321 ,0,0,0}, {3925,3926,3928 ,3351,3321,857 ,0,0,0}, - {3927,3929,3930 ,801,3348,3347 ,0,0,0}, {3930,3928,3927 ,3347,857,801 ,0,0,0}, - {3931,3929,3932 ,3346,3348,126 ,0,0,0}, {3929,3931,3930 ,3348,3346,3347 ,0,0,0}, - {3933,3934,3935 ,3373,3374,3373 ,0,0,0}, {3936,3937,3938 ,3375,3376,3377 ,0,0,0}, - {3936,3935,3937 ,3375,3373,3376 ,0,0,0}, {3938,3937,3939 ,3377,3376,3377 ,0,0,0}, - {3935,3936,3933 ,3373,3375,3373 ,0,0,0}, {3940,3934,3933 ,3374,3374,3373 ,0,0,0}, - {3941,3940,3942 ,3378,3374,3378 ,0,0,0}, {3940,3941,3934 ,3374,3378,3374 ,0,0,0}, - {3943,3944,3945 ,2038,2043,2038 ,0,0,0}, {3946,3944,3947 ,2043,2043,2041 ,0,0,0}, - {3944,3946,3945 ,2043,2043,2038 ,0,0,0}, {3948,3949,3947 ,2042,2041,2041 ,0,0,0}, - {3946,3947,3949 ,2043,2041,2041 ,0,0,0}, {3948,3950,3951 ,2042,3379,2042 ,0,0,0}, - {3951,3949,3948 ,2042,2041,2042 ,0,0,0}, {3950,3952,3951 ,3379,3380,2042 ,0,0,0}, - {3953,3943,3945 ,2039,2038,2038 ,0,0,0}, {3954,3955,3953 ,2040,2039,2039 ,0,0,0}, - {3943,3953,3955 ,2038,2039,2039 ,0,0,0}, {3954,3956,3957 ,2040,2035,2040 ,0,0,0}, - {3957,3955,3954 ,2040,2039,2040 ,0,0,0}, {3958,3956,3959 ,2035,2035,3381 ,0,0,0}, - {3956,3958,3957 ,2035,2035,2040 ,0,0,0}, {3958,3959,3960 ,2035,3381,3382 ,0,0,0}, - {3961,3962,3963 ,3383,3384,3385 ,0,0,0}, {3964,3965,3961 ,3386,3387,3383 ,0,0,0}, - {3961,3963,3964 ,3383,3385,3386 ,0,0,0}, {3965,3966,3967 ,3387,3388,3389 ,0,0,0}, - {3966,3965,3964 ,3388,3387,3386 ,0,0,0}, {3968,3967,3969 ,3390,3389,3391 ,0,0,0}, - {3966,3969,3967 ,3388,3391,3389 ,0,0,0}, {3970,3971,3968 ,3392,3393,3390 ,0,0,0}, - {3968,3969,3970 ,3390,3391,3392 ,0,0,0}, {3971,3972,3973 ,3393,3394,3395 ,0,0,0}, - {3972,3971,3970 ,3394,3393,3392 ,0,0,0}, {3974,3973,3975 ,3396,3395,3397 ,0,0,0}, - {3972,3975,3973 ,3394,3397,3395 ,0,0,0}, {3976,3977,3974 ,3398,3399,3396 ,0,0,0}, - {3974,3975,3976 ,3396,3397,3398 ,0,0,0}, {3977,3978,3979 ,3399,3400,3401 ,0,0,0}, - {3978,3977,3976 ,3400,3399,3398 ,0,0,0}, {3980,3979,3981 ,3402,3401,3403 ,0,0,0}, - {3978,3981,3979 ,3400,3403,3401 ,0,0,0}, {3982,3983,3980 ,3404,3405,3402 ,0,0,0}, - {3980,3981,3982 ,3402,3403,3404 ,0,0,0}, {3983,3984,3985 ,3405,3406,3407 ,0,0,0}, - {3984,3983,3982 ,3406,3405,3404 ,0,0,0}, {3986,3985,3987 ,3408,3407,3409 ,0,0,0}, - {3984,3987,3985 ,3406,3409,3407 ,0,0,0}, {3988,3989,3986 ,3410,3411,3408 ,0,0,0}, - {3986,3987,3988 ,3408,3409,3410 ,0,0,0}, {3989,3990,3991 ,3411,3412,3413 ,0,0,0}, - {3990,3989,3988 ,3412,3411,3410 ,0,0,0}, {3992,3991,3993 ,3414,3413,3415 ,0,0,0}, - {3990,3993,3991 ,3412,3415,3413 ,0,0,0}, {3994,3995,3992 ,3416,3417,3414 ,0,0,0}, - {3992,3993,3994 ,3414,3415,3416 ,0,0,0}, {3995,3996,3997 ,3417,3418,3419 ,0,0,0}, - {3996,3995,3994 ,3418,3417,3416 ,0,0,0}, {3998,3997,3999 ,3420,3419,3421 ,0,0,0}, - {3996,3999,3997 ,3418,3421,3419 ,0,0,0}, {4000,4001,3998 ,3422,3422,3420 ,0,0,0}, - {3998,3999,4000 ,3420,3421,3422 ,0,0,0}, {3963,3962,4002 ,3385,3384,3423 ,0,0,0}, - {4003,4002,4004 ,3424,3423,3425 ,0,0,0}, {3962,4004,4002 ,3384,3425,3423 ,0,0,0}, - {4005,4006,4003 ,3426,3427,3424 ,0,0,0}, {4003,4004,4005 ,3424,3425,3426 ,0,0,0}, - {4006,4007,4008 ,3427,3428,3429 ,0,0,0}, {4007,4006,4005 ,3428,3427,3426 ,0,0,0}, - {4009,4008,4010 ,3430,3429,3431 ,0,0,0}, {4007,4010,4008 ,3428,3431,3429 ,0,0,0}, - {4011,4012,4009 ,3432,3433,3430 ,0,0,0}, {4009,4010,4011 ,3430,3431,3432 ,0,0,0}, - {4012,4013,4014 ,3433,3434,3435 ,0,0,0}, {4013,4012,4011 ,3434,3433,3432 ,0,0,0}, - {4015,4014,4016 ,3436,3435,3437 ,0,0,0}, {4013,4016,4014 ,3434,3437,3435 ,0,0,0}, - {4017,4018,4015 ,3438,3439,3436 ,0,0,0}, {4015,4016,4017 ,3436,3437,3438 ,0,0,0}, - {4018,4019,4020 ,3439,3440,3441 ,0,0,0}, {4019,4018,4017 ,3440,3439,3438 ,0,0,0}, - {4021,4020,4022 ,3442,3441,3443 ,0,0,0}, {4019,4022,4020 ,3440,3443,3441 ,0,0,0}, - {4023,4024,4021 ,3444,3445,3442 ,0,0,0}, {4021,4022,4023 ,3442,3443,3444 ,0,0,0}, - {4024,4025,4026 ,3445,3446,3447 ,0,0,0}, {4025,4024,4023 ,3446,3445,3444 ,0,0,0}, - {4027,4026,4028 ,3448,3447,3449 ,0,0,0}, {4025,4028,4026 ,3446,3449,3447 ,0,0,0}, - {4029,4030,4027 ,3450,3451,3448 ,0,0,0}, {4027,4028,4029 ,3448,3449,3450 ,0,0,0}, - {4030,4031,4032 ,3451,3452,3453 ,0,0,0}, {4031,4030,4029 ,3452,3451,3450 ,0,0,0}, - {4033,4032,4034 ,3454,3453,3455 ,0,0,0}, {4031,4034,4032 ,3452,3455,3453 ,0,0,0}, - {4035,4036,4033 ,3456,3457,3454 ,0,0,0}, {4033,4034,4035 ,3454,3455,3456 ,0,0,0}, - {4036,4037,4038 ,3457,3458,3459 ,0,0,0}, {4037,4036,4035 ,3458,3457,3456 ,0,0,0}, - {4037,4039,4038 ,3458,3460,3459 ,0,0,0}, {4038,4039,4040 ,3459,3460,3461 ,0,0,0}, - {4041,4042,4039 ,3462,3462,3463 ,0,0,0}, {4041,4043,4042 ,3462,3464,3462 ,0,0,0}, - {4043,4041,4044 ,3464,3462,3464 ,0,0,0}, {4040,4039,4042 ,126,3463,3462 ,0,0,0}, - {4045,4046,4047 ,1273,3465,1273 ,0,0,0}, {4048,4049,4046 ,3466,3467,3465 ,0,0,0}, - {4046,4049,4047 ,3465,3467,1273 ,0,0,0}, {4050,4051,4048 ,3468,3469,3466 ,0,0,0}, - {4048,4046,4050 ,3466,3465,3468 ,0,0,0}, {4051,4052,4053 ,3469,3470,3471 ,0,0,0}, - {4052,4051,4050 ,3470,3469,3468 ,0,0,0}, {4054,4053,4055 ,3472,3471,3473 ,0,0,0}, - {4052,4055,4053 ,3470,3473,3471 ,0,0,0}, {4056,4054,4057 ,3474,3472,3475 ,0,0,0}, - {4054,4055,4057 ,3472,3473,3475 ,0,0,0}, {4058,4054,4056 ,3474,3472,3474 ,0,0,0}, - {4059,4045,4047 ,3476,1273,1273 ,0,0,0}, {4060,4059,4061 ,3477,3476,3478 ,0,0,0}, - {4060,4045,4059 ,3477,1273,3476 ,0,0,0}, {4062,4061,4063 ,3479,3478,3480 ,0,0,0}, - {4059,4063,4061 ,3476,3480,3478 ,0,0,0}, {4064,4065,4062 ,3481,3482,3479 ,0,0,0}, - {4062,4063,4064 ,3479,3480,3481 ,0,0,0}, {4065,4066,4067 ,3482,3483,3484 ,0,0,0}, - {4066,4065,4064 ,3483,3482,3481 ,0,0,0}, {4067,4068,3941 ,3484,3485,3378 ,0,0,0}, - {4066,4068,4067 ,3483,3485,3484 ,0,0,0}, {4067,3941,3942 ,3484,3378,3378 ,0,0,0}, - {4069,4070,4071 ,3486,3487,3488 ,0,0,0}, {4069,4072,4073 ,3486,3489,3490 ,0,0,0}, - {4071,4070,4074 ,3488,3487,3491 ,0,0,0}, {4074,4070,4075 ,3491,3487,3492 ,0,0,0}, - {4074,4075,4076 ,3491,3492,3493 ,0,0,0}, {4077,4076,4075 ,3494,3493,3492 ,0,0,0}, - {4076,4077,4078 ,3493,3494,3495 ,0,0,0}, {4079,4078,4077 ,3496,3495,3494 ,0,0,0}, - {4079,4080,4081 ,3496,3497,3498 ,0,0,0}, {4078,4079,4081 ,3495,3496,3498 ,0,0,0}, - {4071,4072,4069 ,3488,3489,3486 ,0,0,0}, {4081,4080,4082 ,3498,3497,3499 ,0,0,0}, - {4083,4082,4084 ,3500,3499,3501 ,0,0,0}, {4084,4082,4080 ,3501,3499,3497 ,0,0,0}, - {4083,4084,4085 ,3500,3501,3500 ,0,0,0}, {4086,4073,4087 ,3502,3490,3503 ,0,0,0}, - {4072,4087,4073 ,3489,3503,3490 ,0,0,0}, {4088,4089,4086 ,3504,3505,3502 ,0,0,0}, - {4086,4087,4088 ,3502,3503,3504 ,0,0,0}, {4089,4090,4091 ,3505,3506,3507 ,0,0,0}, - {4090,4089,4088 ,3506,3505,3504 ,0,0,0}, {4092,4091,4093 ,3508,3507,3509 ,0,0,0}, - {4090,4093,4091 ,3506,3509,3507 ,0,0,0}, {4094,4095,4092 ,3510,3511,3508 ,0,0,0}, - {4092,4093,4094 ,3508,3509,3510 ,0,0,0}, {4095,4096,4097 ,3511,3512,3513 ,0,0,0}, - {4096,4095,4094 ,3512,3511,3510 ,0,0,0}, {4098,4097,4099 ,3514,3513,3515 ,0,0,0}, - {4096,4099,4097 ,3512,3515,3513 ,0,0,0}, {4098,4099,4100 ,3514,3515,3514 ,0,0,0}, - {4101,4102,4103 ,3516,3517,3516 ,0,0,0}, {4103,4104,4101 ,3516,3518,3516 ,0,0,0}, - {4105,4106,4102 ,3517,3519,3517 ,0,0,0}, {4107,4104,4103 ,3518,3518,3516 ,0,0,0}, - {4101,4105,4102 ,3516,3517,3517 ,0,0,0}, {4105,4108,4106 ,3517,3519,3519 ,0,0,0}, - {4109,4108,4110 ,3520,3519,3520 ,0,0,0}, {4110,4098,4100 ,3520,3514,3514 ,0,0,0}, - {4109,4106,4108 ,3520,3519,3519 ,0,0,0}, {4110,4100,4109 ,3520,3514,3520 ,0,0,0}, - {4111,4107,4112 ,3521,3518,3521 ,0,0,0}, {4107,4111,4104 ,3518,3521,3518 ,0,0,0}, - {4113,4114,4112 ,3522,3522,3521 ,0,0,0}, {4111,4112,4114 ,3521,3521,3522 ,0,0,0}, - {4113,4115,4116 ,3522,3523,3523 ,0,0,0}, {4116,4114,4113 ,3523,3522,3522 ,0,0,0}, - {4117,4115,4118 ,3524,3523,3524 ,0,0,0}, {4115,4117,4116 ,3523,3524,3523 ,0,0,0}, - {4117,4118,3959 ,3524,3524,3525 ,0,0,0}, {3959,4118,3960 ,3525,3524,3526 ,0,0,0}, - {4119,3952,3950 ,1122,3527,3528 ,0,0,0}, {4120,4121,4122 ,1114,1120,1120 ,0,0,0}, - {4123,4124,4125 ,1121,1121,1122 ,0,0,0}, {4126,4127,4128 ,1116,1116,1117 ,0,0,0}, - {4129,4130,4131 ,1114,1115,1115 ,0,0,0}, {4132,4133,4128 ,3529,1117,1117 ,0,0,0}, - {4126,4128,4133 ,1116,1117,1117 ,0,0,0}, {4134,4133,4132 ,3530,1117,3529 ,0,0,0}, - {4130,4127,4131 ,1115,1116,1115 ,0,0,0}, {4131,4127,4126 ,1115,1116,1116 ,0,0,0}, - {4129,4121,4120 ,1114,1120,1114 ,0,0,0}, {4129,4120,4130 ,1114,1114,1115 ,0,0,0}, - {4122,4124,4123 ,1120,1121,1121 ,0,0,0}, {4121,4124,4122 ,1120,1121,1120 ,0,0,0}, - {4119,4125,3952 ,1122,1122,3527 ,0,0,0}, {4123,4125,4119 ,1121,1122,1122 ,0,0,0}, - {4135,4136,4137 ,3531,3531,3532 ,0,0,0}, {4137,4136,4138 ,3532,3531,3532 ,0,0,0}, - {4136,4135,4139 ,3531,3531,3533 ,0,0,0}, {4140,4139,4135 ,3534,3533,3531 ,0,0,0}, - {4141,4142,4140 ,3535,3535,3534 ,0,0,0}, {4143,4137,4138 ,3536,3532,3532 ,0,0,0}, - {4134,4132,4141 ,3537,3538,3535 ,0,0,0}, {4142,4141,4132 ,3535,3535,3538 ,0,0,0}, - {4140,4142,4139 ,3534,3535,3533 ,0,0,0}, {4144,4143,4145 ,3539,3536,3536 ,0,0,0}, - {4138,4145,4143 ,3532,3536,3536 ,0,0,0}, {4146,4147,4144 ,3539,3540,3539 ,0,0,0}, - {4144,4145,4146 ,3539,3536,3539 ,0,0,0}, {4147,4148,4149 ,3540,3540,3541 ,0,0,0}, - {4148,4147,4146 ,3540,3540,3539 ,0,0,0}, {4150,4149,4151 ,3542,3541,3541 ,0,0,0}, - {4148,4151,4149 ,3540,3541,3541 ,0,0,0}, {4150,4151,4152 ,3542,3541,3542 ,0,0,0}, - {4153,4154,4155 ,3543,3543,3544 ,0,0,0}, {4156,4157,4155 ,3545,3546,3544 ,0,0,0}, - {4153,4155,4157 ,3543,3544,3546 ,0,0,0}, {4156,4158,4159 ,3545,3547,3548 ,0,0,0}, - {4159,4157,4156 ,3548,3546,3545 ,0,0,0}, {4160,4158,4161 ,3549,3547,3550 ,0,0,0}, - {4158,4160,4159 ,3547,3549,3548 ,0,0,0}, {4162,4163,4161 ,3551,3552,3550 ,0,0,0}, - {4160,4161,4163 ,3549,3550,3552 ,0,0,0}, {4162,4164,4165 ,3551,3553,3554 ,0,0,0}, - {4165,4163,4162 ,3554,3552,3551 ,0,0,0}, {4166,4164,4167 ,3555,3553,3556 ,0,0,0}, - {4164,4166,4165 ,3553,3555,3554 ,0,0,0}, {4168,4169,4167 ,3557,3558,3556 ,0,0,0}, - {4166,4167,4169 ,3555,3556,3558 ,0,0,0}, {4168,4170,4171 ,3557,3559,3560 ,0,0,0}, - {4171,4169,4168 ,3560,3558,3557 ,0,0,0}, {4172,4170,4173 ,3561,3559,3562 ,0,0,0}, - {4170,4172,4171 ,3559,3561,3560 ,0,0,0}, {4174,4175,4173 ,3563,3564,3562 ,0,0,0}, - {4172,4173,4175 ,3561,3562,3564 ,0,0,0}, {4174,4176,4177 ,3563,3565,3566 ,0,0,0}, - {4177,4175,4174 ,3566,3564,3563 ,0,0,0}, {4178,4176,4179 ,3567,3565,3568 ,0,0,0}, - {4176,4178,4177 ,3565,3567,3566 ,0,0,0}, {4180,4181,4179 ,3569,3570,3568 ,0,0,0}, - {4178,4179,4181 ,3567,3568,3570 ,0,0,0}, {4180,4182,4183 ,3569,3571,3572 ,0,0,0}, - {4183,4181,4180 ,3572,3570,3569 ,0,0,0}, {4184,4182,4185 ,3573,3571,3574 ,0,0,0}, - {4182,4184,4183 ,3571,3573,3572 ,0,0,0}, {4150,4186,4185 ,3542,3575,3574 ,0,0,0}, - {4184,4185,4186 ,3573,3574,3575 ,0,0,0}, {4152,4186,4150 ,3542,3575,3542 ,0,0,0}, - {4187,4154,4153 ,3576,3543,3543 ,0,0,0}, {4188,4187,4189 ,3577,3576,3578 ,0,0,0}, - {4187,4188,4154 ,3576,3577,3543 ,0,0,0}, {4190,4191,4189 ,3579,3580,3578 ,0,0,0}, - {4188,4189,4191 ,3577,3578,3580 ,0,0,0}, {4190,4192,4193 ,3579,3581,3582 ,0,0,0}, - {4193,4191,4190 ,3582,3580,3579 ,0,0,0}, {4194,4192,4195 ,3583,3581,3584 ,0,0,0}, - {4192,4194,4193 ,3581,3583,3582 ,0,0,0}, {4196,4197,4195 ,3585,3586,3584 ,0,0,0}, - {4194,4195,4197 ,3583,3584,3586 ,0,0,0}, {4196,4198,4199 ,3585,3587,3588 ,0,0,0}, - {4199,4197,4196 ,3588,3586,3585 ,0,0,0}, {4200,4198,4201 ,3589,3587,3590 ,0,0,0}, - {4198,4200,4199 ,3587,3589,3588 ,0,0,0}, {4202,4203,4201 ,3591,3592,3590 ,0,0,0}, - {4200,4201,4203 ,3589,3590,3592 ,0,0,0}, {4202,4204,4205 ,3591,3593,3594 ,0,0,0}, - {4205,4203,4202 ,3594,3592,3591 ,0,0,0}, {4206,4204,4207 ,3595,3593,3596 ,0,0,0}, - {4204,4206,4205 ,3593,3595,3594 ,0,0,0}, {4208,4209,4207 ,3597,3598,3596 ,0,0,0}, - {4206,4207,4209 ,3595,3596,3598 ,0,0,0}, {4208,4210,4211 ,3597,3599,3600 ,0,0,0}, - {4211,4209,4208 ,3600,3598,3597 ,0,0,0}, {4212,4210,4213 ,3601,3599,3602 ,0,0,0}, - {4210,4212,4211 ,3599,3601,3600 ,0,0,0}, {4214,4215,4213 ,3603,3604,3602 ,0,0,0}, - {4212,4213,4215 ,3601,3602,3604 ,0,0,0}, {4214,4216,4217 ,3603,3605,3606 ,0,0,0}, - {4217,4215,4214 ,3606,3604,3603 ,0,0,0}, {4218,4216,4219 ,3607,3605,3608 ,0,0,0}, - {4216,4218,4217 ,3605,3607,3606 ,0,0,0}, {4218,4219,4220 ,3607,3608,3608 ,0,0,0}, - {4221,4219,4222 ,1398,3609,1398 ,0,0,0}, {4219,4221,4220 ,3609,1398,3609 ,0,0,0}, - {4223,4224,4225 ,3610,3611,3612 ,0,0,0}, {4226,4227,4228 ,3613,3614,3615 ,0,0,0}, - {4229,4223,4225 ,3616,3610,3612 ,0,0,0}, {4227,4225,4224 ,3614,3612,3611 ,0,0,0}, - {4230,4223,4229 ,3617,3610,3616 ,0,0,0}, {4231,4232,4233 ,3618,3619,3620 ,0,0,0}, - {4230,4229,4231 ,3617,3616,3618 ,0,0,0}, {4234,4232,4235 ,3621,3619,3622 ,0,0,0}, - {4231,4233,4230 ,3618,3620,3617 ,0,0,0}, {4232,4234,4233 ,3619,3621,3620 ,0,0,0}, - {4235,4236,4237 ,3622,3623,3624 ,0,0,0}, {4224,4228,4227 ,3611,3615,3614 ,0,0,0}, - {4238,4239,4240 ,3625,3626,3627 ,0,0,0}, {4241,4237,4236 ,3628,3624,3623 ,0,0,0}, - {4241,4242,4243 ,3628,3629,3630 ,0,0,0}, {4238,4240,4243 ,3625,3627,3630 ,0,0,0}, - {4238,4243,4242 ,3625,3630,3629 ,0,0,0}, {4240,4239,4244 ,3627,3626,3631 ,0,0,0}, - {4245,4246,4247 ,3632,3633,3634 ,0,0,0}, {4244,4245,4247 ,3631,3632,3634 ,0,0,0}, - {4245,4244,4239 ,3632,3631,3626 ,0,0,0}, {4246,4248,4247 ,3633,3635,3634 ,0,0,0}, - {4242,4241,4236 ,3629,3628,3623 ,0,0,0}, {4248,4249,4250 ,3635,3636,3637 ,0,0,0}, - {4248,4246,4249 ,3635,3633,3636 ,0,0,0}, {4251,4252,4253 ,3638,3639,3640 ,0,0,0}, - {4254,4253,4252 ,3641,3640,3639 ,0,0,0}, {4254,4255,4253 ,3641,3642,3640 ,0,0,0}, - {4255,4250,4249 ,3642,3637,3636 ,0,0,0}, {4255,4254,4250 ,3642,3641,3637 ,0,0,0}, - {4237,4234,4235 ,3624,3621,3622 ,0,0,0}, {4256,4257,4251 ,3643,3644,3638 ,0,0,0}, - {4258,4259,4256 ,3645,3646,3643 ,0,0,0}, {4222,4259,4258 ,1435,3646,3645 ,0,0,0}, - {4252,4251,4257 ,3639,3638,3644 ,0,0,0}, {4259,4257,4256 ,3646,3644,3643 ,0,0,0}, - {4221,4222,4258 ,1435,1435,3645 ,0,0,0}, {4260,4261,4226 ,3647,3648,3613 ,0,0,0}, - {4226,4228,4260 ,3613,3615,3647 ,0,0,0}, {4261,4262,4263 ,3648,3649,3650 ,0,0,0}, - {4262,4261,4260 ,3649,3648,3647 ,0,0,0}, {4264,4263,4265 ,3651,3650,3652 ,0,0,0}, - {4262,4265,4263 ,3649,3652,3650 ,0,0,0}, {4266,4267,4264 ,3653,3654,3651 ,0,0,0}, - {4264,4265,4266 ,3651,3652,3653 ,0,0,0}, {4267,4268,4269 ,3654,3655,3656 ,0,0,0}, - {4268,4267,4266 ,3655,3654,3653 ,0,0,0}, {4270,4269,4271 ,3657,3656,3658 ,0,0,0}, - {4268,4271,4269 ,3655,3658,3656 ,0,0,0}, {4272,4273,4270 ,3659,3660,3657 ,0,0,0}, - {4270,4271,4272 ,3657,3658,3659 ,0,0,0}, {4273,4274,4275 ,3660,3661,3662 ,0,0,0}, - {4274,4273,4272 ,3661,3660,3659 ,0,0,0}, {4276,4275,4277 ,3663,3662,3664 ,0,0,0}, - {4274,4277,4275 ,3661,3664,3662 ,0,0,0}, {4278,4279,4276 ,3665,3666,3663 ,0,0,0}, - {4276,4277,4278 ,3663,3664,3665 ,0,0,0}, {4279,4280,4281 ,3666,3667,3668 ,0,0,0}, - {4280,4279,4278 ,3667,3666,3665 ,0,0,0}, {4282,4281,4283 ,3669,3668,3670 ,0,0,0}, - {4280,4283,4281 ,3667,3670,3668 ,0,0,0}, {4284,4285,4282 ,3671,3672,3669 ,0,0,0}, - {4282,4283,4284 ,3669,3670,3671 ,0,0,0}, {4285,4286,4287 ,3672,3673,3674 ,0,0,0}, - {4286,4285,4284 ,3673,3672,3671 ,0,0,0}, {4288,4287,4289 ,3675,3674,3676 ,0,0,0}, - {4286,4289,4287 ,3673,3676,3674 ,0,0,0}, {4290,4291,4288 ,3677,3678,3675 ,0,0,0}, - {4288,4289,4290 ,3675,3676,3677 ,0,0,0}, {4291,4292,4293 ,3678,3679,3680 ,0,0,0}, - {4292,4291,4290 ,3679,3678,3677 ,0,0,0}, {4294,4293,4295 ,1790,3680,3681 ,0,0,0}, - {4292,4295,4293 ,3679,3681,3680 ,0,0,0}, {4294,4295,4296 ,1790,3681,1790 ,0,0,0}, - {4297,4298,4299 ,2162,2162,2162 ,0,0,0}, {4298,4297,4300 ,2162,2162,2162 ,0,0,0}, - {4301,4302,4303 ,3682,3683,3684 ,0,0,0}, {4304,4305,4306 ,3685,3686,3687 ,0,0,0}, - {4302,4307,4303 ,3683,3688,3684 ,0,0,0}, {4301,4303,4308 ,3682,3684,3689 ,0,0,0}, - {4304,4301,4308 ,3685,3682,3689 ,0,0,0}, {4309,4310,4307 ,3690,3691,3688 ,0,0,0}, - {4309,4307,4302 ,3690,3688,3683 ,0,0,0}, {4311,4312,4313 ,3692,3693,3694 ,0,0,0}, - {4310,4309,4311 ,3691,3690,3692 ,0,0,0}, {4311,4313,4310 ,3692,3694,3691 ,0,0,0}, - {4312,4314,4313 ,3693,3695,3694 ,0,0,0}, {4305,4304,4308 ,3686,3685,3689 ,0,0,0}, - {4312,4315,4314 ,3693,3696,3695 ,0,0,0}, {4316,4317,4318 ,3697,3698,3699 ,0,0,0}, - {4316,4318,4315 ,3697,3699,3696 ,0,0,0}, {4317,4316,4319 ,3698,3697,3700 ,0,0,0}, - {4320,4321,4319 ,3701,3702,3700 ,0,0,0}, {4321,4317,4319 ,3702,3698,3700 ,0,0,0}, - {4322,4323,4324 ,3703,3704,3705 ,0,0,0}, {4321,4320,4325 ,3702,3701,3706 ,0,0,0}, - {4326,4327,4325 ,3707,3708,3706 ,0,0,0}, {4323,4322,4327 ,3704,3703,3708 ,0,0,0}, - {4323,4327,4326 ,3704,3708,3707 ,0,0,0}, {4322,4324,4328 ,3703,3705,3709 ,0,0,0}, - {4320,4326,4325 ,3701,3707,3706 ,0,0,0}, {4329,4328,4330 ,3710,3709,3711 ,0,0,0}, - {4329,4330,4331 ,3710,3711,3712 ,0,0,0}, {4330,4328,4324 ,3711,3709,3705 ,0,0,0}, - {4332,4333,4334 ,3713,3714,3715 ,0,0,0}, {4318,4314,4315 ,3699,3695,3696 ,0,0,0}, - {4332,4335,4331 ,3713,3716,3712 ,0,0,0}, {4335,4332,4334 ,3716,3713,3715 ,0,0,0}, - {4333,4336,4337 ,3714,3717,3718 ,0,0,0}, {4337,4334,4333 ,3718,3715,3714 ,0,0,0}, - {4338,4339,4336 ,3719,3720,3717 ,0,0,0}, {4337,4336,4339 ,3718,3717,3720 ,0,0,0}, - {4338,4300,4297 ,3719,3721,3721 ,0,0,0}, {4338,4297,4339 ,3719,3721,3720 ,0,0,0}, - {4331,4335,4329 ,3712,3716,3710 ,0,0,0}, {4340,4306,4341 ,3722,3687,3723 ,0,0,0}, - {4305,4341,4306 ,3686,3723,3687 ,0,0,0}, {4342,4343,4340 ,3724,3725,3722 ,0,0,0}, - {4340,4341,4342 ,3722,3723,3724 ,0,0,0}, {4343,4344,4345 ,3725,3726,3727 ,0,0,0}, - {4344,4343,4342 ,3726,3725,3724 ,0,0,0}, {4346,4345,4347 ,3728,3727,3729 ,0,0,0}, - {4344,4347,4345 ,3726,3729,3727 ,0,0,0}, {4348,4349,4346 ,3730,3731,3728 ,0,0,0}, - {4346,4347,4348 ,3728,3729,3730 ,0,0,0}, {4349,4350,4351 ,3731,3732,3733 ,0,0,0}, - {4350,4349,4348 ,3732,3731,3730 ,0,0,0}, {4352,4351,4353 ,3734,3733,3735 ,0,0,0}, - {4350,4353,4351 ,3732,3735,3733 ,0,0,0}, {4354,4355,4352 ,3736,3737,3734 ,0,0,0}, - {4352,4353,4354 ,3734,3735,3736 ,0,0,0}, {4355,4356,4357 ,3737,3738,3739 ,0,0,0}, - {4356,4355,4354 ,3738,3737,3736 ,0,0,0}, {4358,4357,4359 ,3740,3739,3741 ,0,0,0}, - {4356,4359,4357 ,3738,3741,3739 ,0,0,0}, {4360,4361,4358 ,3742,3743,3740 ,0,0,0}, - {4358,4359,4360 ,3740,3741,3742 ,0,0,0}, {4361,4362,4363 ,3743,3744,3745 ,0,0,0}, - {4362,4361,4360 ,3744,3743,3742 ,0,0,0}, {4364,4363,4365 ,3746,3745,3747 ,0,0,0}, - {4362,4365,4363 ,3744,3747,3745 ,0,0,0}, {4366,4367,4364 ,3748,3749,3746 ,0,0,0}, - {4364,4365,4366 ,3746,3747,3748 ,0,0,0}, {4367,4368,4369 ,3749,3750,3751 ,0,0,0}, - {4368,4367,4366 ,3750,3749,3748 ,0,0,0}, {4370,4369,4371 ,3752,3751,3753 ,0,0,0}, - {4368,4371,4369 ,3750,3753,3751 ,0,0,0}, {4372,4373,4370 ,3754,3755,3752 ,0,0,0}, - {4370,4371,4372 ,3752,3753,3754 ,0,0,0}, {4373,4374,4375 ,3755,3756,3757 ,0,0,0}, - {4374,4373,4372 ,3756,3755,3754 ,0,0,0}, {4376,4375,4377 ,3758,3757,3759 ,0,0,0}, - {4374,4377,4375 ,3756,3759,3757 ,0,0,0}, {4376,4377,4378 ,3758,3759,3760 ,0,0,0}, - {4379,4380,4381 ,3761,3762,3763 ,0,0,0}, {4382,4383,4381 ,3764,3765,3763 ,0,0,0}, - {4379,4381,4383 ,3761,3763,3765 ,0,0,0}, {4382,4384,4385 ,3764,3766,3767 ,0,0,0}, - {4385,4383,4382 ,3767,3765,3764 ,0,0,0}, {4386,4384,4387 ,3768,3766,3769 ,0,0,0}, - {4384,4386,4385 ,3766,3768,3767 ,0,0,0}, {4388,4389,4387 ,3770,3771,3769 ,0,0,0}, - {4386,4387,4389 ,3768,3769,3771 ,0,0,0}, {4388,4390,4391 ,3770,3772,3773 ,0,0,0}, - {4391,4389,4388 ,3773,3771,3770 ,0,0,0}, {4392,4390,4393 ,3774,3772,3775 ,0,0,0}, - {4390,4392,4391 ,3772,3774,3773 ,0,0,0}, {4394,4395,4393 ,3776,3777,3775 ,0,0,0}, - {4392,4393,4395 ,3774,3775,3777 ,0,0,0}, {4394,4396,4397 ,3776,3778,3779 ,0,0,0}, - {4397,4395,4394 ,3779,3777,3776 ,0,0,0}, {4398,4396,4399 ,3780,3778,3781 ,0,0,0}, - {4396,4398,4397 ,3778,3780,3779 ,0,0,0}, {4400,4401,4399 ,3782,3783,3781 ,0,0,0}, - {4398,4399,4401 ,3780,3781,3783 ,0,0,0}, {4400,4402,4403 ,3782,3784,3785 ,0,0,0}, - {4403,4401,4400 ,3785,3783,3782 ,0,0,0}, {4404,4402,4405 ,3786,3784,3787 ,0,0,0}, - {4402,4404,4403 ,3784,3786,3785 ,0,0,0}, {4406,4407,4405 ,3788,3789,3787 ,0,0,0}, - {4404,4405,4407 ,3786,3787,3789 ,0,0,0}, {4406,4408,4409 ,3788,3790,3791 ,0,0,0}, - {4409,4407,4406 ,3791,3789,3788 ,0,0,0}, {4410,4408,4411 ,3792,3790,3793 ,0,0,0}, - {4408,4410,4409 ,3790,3792,3791 ,0,0,0}, {4412,4413,4411 ,3794,3795,3793 ,0,0,0}, - {4410,4411,4413 ,3792,3793,3795 ,0,0,0}, {4412,4414,4415 ,3794,3796,3797 ,0,0,0}, - {4415,4413,4412 ,3797,3795,3794 ,0,0,0}, {4416,4414,4417 ,3798,3796,3799 ,0,0,0}, - {4414,4416,4415 ,3796,3798,3797 ,0,0,0}, {4418,4419,4417 ,3800,3801,3799 ,0,0,0}, - {4416,4417,4419 ,3798,3799,3801 ,0,0,0}, {4418,4420,4421 ,3800,3802,3803 ,0,0,0}, - {4421,4419,4418 ,3803,3801,3800 ,0,0,0}, {4422,4420,4423 ,3804,3802,3805 ,0,0,0}, - {4420,4422,4421 ,3802,3804,3803 ,0,0,0}, {4424,4425,4423 ,3806,3807,3805 ,0,0,0}, - {4422,4423,4425 ,3804,3805,3807 ,0,0,0}, {4424,4426,4427 ,3806,3808,3809 ,0,0,0}, - {4427,4425,4424 ,3809,3807,3806 ,0,0,0}, {4428,4426,4429 ,3810,3808,3811 ,0,0,0}, - {4426,4428,4427 ,3808,3810,3809 ,0,0,0}, {4430,4431,4429 ,3812,3813,3811 ,0,0,0}, - {4428,4429,4431 ,3810,3811,3813 ,0,0,0}, {4430,4432,4433 ,3812,3814,3815 ,0,0,0}, - {4433,4431,4430 ,3815,3813,3812 ,0,0,0}, {4434,4432,4435 ,3816,3814,3817 ,0,0,0}, - {4432,4434,4433 ,3814,3816,3815 ,0,0,0}, {4376,4436,4435 ,3818,3819,3817 ,0,0,0}, - {4434,4435,4436 ,3816,3817,3819 ,0,0,0}, {4378,4436,4376 ,3820,3819,3818 ,0,0,0}, - {4437,4380,4379 ,3821,3762,3761 ,0,0,0}, {4438,4437,4439 ,3822,3821,3823 ,0,0,0}, - {4437,4438,4380 ,3821,3822,3762 ,0,0,0}, {4440,4441,4439 ,3824,3825,3823 ,0,0,0}, - {4438,4439,4441 ,3822,3823,3825 ,0,0,0}, {4440,4442,4443 ,3824,3826,3827 ,0,0,0}, - {4443,4441,4440 ,3827,3825,3824 ,0,0,0}, {4444,4442,4445 ,3828,3826,3829 ,0,0,0}, - {4442,4444,4443 ,3826,3828,3827 ,0,0,0}, {4446,4447,4445 ,3830,3831,3829 ,0,0,0}, - {4444,4445,4447 ,3828,3829,3831 ,0,0,0}, {4446,4448,4449 ,3830,3832,3833 ,0,0,0}, - {4449,4447,4446 ,3833,3831,3830 ,0,0,0}, {4450,4448,4451 ,3834,3832,3835 ,0,0,0}, - {4448,4450,4449 ,3832,3834,3833 ,0,0,0}, {4452,4453,4451 ,3836,3837,3835 ,0,0,0}, - {4450,4451,4453 ,3834,3835,3837 ,0,0,0}, {4452,4454,4455 ,3836,3838,3839 ,0,0,0}, - {4455,4453,4452 ,3839,3837,3836 ,0,0,0}, {4456,4454,4457 ,3840,3838,3841 ,0,0,0}, - {4454,4456,4455 ,3838,3840,3839 ,0,0,0}, {4458,4459,4457 ,3842,3843,3841 ,0,0,0}, - {4456,4457,4459 ,3840,3841,3843 ,0,0,0}, {4458,4460,4461 ,3842,3844,3845 ,0,0,0}, - {4461,4459,4458 ,3845,3843,3842 ,0,0,0}, {4462,4460,4463 ,3846,3844,3847 ,0,0,0}, - {4460,4462,4461 ,3844,3846,3845 ,0,0,0}, {4464,4465,4463 ,3848,3849,3847 ,0,0,0}, - {4462,4463,4465 ,3846,3847,3849 ,0,0,0}, {4464,4466,4467 ,3848,3850,3851 ,0,0,0}, - {4467,4465,4464 ,3851,3849,3848 ,0,0,0}, {4468,4466,4469 ,3852,3850,3853 ,0,0,0}, - {4466,4468,4467 ,3850,3852,3851 ,0,0,0}, {4470,4471,4469 ,3854,3855,3853 ,0,0,0}, - {4468,4469,4471 ,3852,3853,3855 ,0,0,0}, {4470,4472,4473 ,3854,3856,3857 ,0,0,0}, - {4473,4471,4470 ,3857,3855,3854 ,0,0,0}, {4474,4472,4475 ,3858,3856,3859 ,0,0,0}, - {4472,4474,4473 ,3856,3858,3857 ,0,0,0}, {4476,4477,4475 ,3860,3861,3859 ,0,0,0}, - {4474,4475,4477 ,3858,3859,3861 ,0,0,0}, {4476,4478,4479 ,3860,3862,3863 ,0,0,0}, - {4479,4477,4476 ,3863,3861,3860 ,0,0,0}, {4480,4478,4481 ,3864,3862,3865 ,0,0,0}, - {4478,4480,4479 ,3862,3864,3863 ,0,0,0}, {4482,4483,4481 ,3866,3867,3865 ,0,0,0}, - {4480,4481,4483 ,3864,3865,3867 ,0,0,0}, {4482,4484,4485 ,3866,3868,3869 ,0,0,0}, - {4485,4483,4482 ,3869,3867,3866 ,0,0,0}, {4486,4484,4487 ,3870,3868,3871 ,0,0,0}, - {4484,4486,4485 ,3868,3870,3869 ,0,0,0}, {4488,4489,4487 ,3872,3873,3871 ,0,0,0}, - {4486,4487,4489 ,3870,3871,3873 ,0,0,0}, {4488,4490,4491 ,3872,3874,3875 ,0,0,0}, - {4491,4489,4488 ,3875,3873,3872 ,0,0,0}, {4492,4490,4493 ,3876,3874,82 ,0,0,0}, - {4490,4492,4491 ,3874,3876,3875 ,0,0,0}, {4492,4493,4494 ,3876,82,3877 ,0,0,0}, - {4495,4496,4497 ,3878,3879,3880 ,0,0,0}, {4498,4499,4500 ,3881,3882,3883 ,0,0,0}, - {4496,4501,4497 ,3879,3884,3880 ,0,0,0}, {4495,4497,4502 ,3878,3880,3885 ,0,0,0}, - {4498,4495,4502 ,3881,3878,3885 ,0,0,0}, {4503,4504,4501 ,3886,3887,3884 ,0,0,0}, - {4503,4501,4496 ,3886,3884,3879 ,0,0,0}, {4505,4506,4507 ,3888,3889,3890 ,0,0,0}, - {4504,4503,4505 ,3887,3886,3888 ,0,0,0}, {4505,4507,4504 ,3888,3890,3887 ,0,0,0}, - {4506,4508,4507 ,3889,3891,3890 ,0,0,0}, {4499,4498,4502 ,3882,3881,3885 ,0,0,0}, - {4506,4509,4508 ,3889,3892,3891 ,0,0,0}, {4510,4511,4512 ,3893,3894,3895 ,0,0,0}, - {4510,4512,4509 ,3893,3895,3892 ,0,0,0}, {4511,4510,4513 ,3894,3893,3896 ,0,0,0}, - {4514,4515,4513 ,3897,3898,3896 ,0,0,0}, {4515,4511,4513 ,3898,3894,3896 ,0,0,0}, - {4516,4517,4518 ,3899,3900,3901 ,0,0,0}, {4515,4514,4519 ,3898,3897,3902 ,0,0,0}, - {4520,4521,4519 ,3903,3904,3902 ,0,0,0}, {4517,4516,4521 ,3900,3899,3904 ,0,0,0}, - {4517,4521,4520 ,3900,3904,3903 ,0,0,0}, {4516,4518,4522 ,3899,3901,3905 ,0,0,0}, - {4514,4520,4519 ,3897,3903,3902 ,0,0,0}, {4523,4522,4524 ,3906,3905,3907 ,0,0,0}, - {4523,4524,4525 ,3906,3907,3908 ,0,0,0}, {4524,4522,4518 ,3907,3905,3901 ,0,0,0}, - {4526,4527,4528 ,3909,3910,3911 ,0,0,0}, {4512,4508,4509 ,3895,3891,3892 ,0,0,0}, - {4526,4529,4525 ,3909,3912,3908 ,0,0,0}, {4529,4526,4528 ,3912,3909,3911 ,0,0,0}, - {4527,4530,4531 ,3910,3913,3914 ,0,0,0}, {4531,4528,4527 ,3914,3911,3910 ,0,0,0}, - {4532,4533,4530 ,3915,3916,3913 ,0,0,0}, {4531,4530,4533 ,3914,3913,3916 ,0,0,0}, - {4532,4494,4493 ,3915,3917,3918 ,0,0,0}, {4532,4493,4533 ,3915,3918,3916 ,0,0,0}, - {4525,4529,4523 ,3908,3912,3906 ,0,0,0}, {4534,4500,4535 ,3919,3883,3920 ,0,0,0}, - {4499,4535,4500 ,3882,3920,3883 ,0,0,0}, {4536,4537,4534 ,3921,3922,3919 ,0,0,0}, - {4534,4535,4536 ,3919,3920,3921 ,0,0,0}, {4537,4538,4539 ,3922,3923,3924 ,0,0,0}, - {4538,4537,4536 ,3923,3922,3921 ,0,0,0}, {4540,4539,4541 ,3925,3924,3926 ,0,0,0}, - {4538,4541,4539 ,3923,3926,3924 ,0,0,0}, {4542,4543,4540 ,3927,3928,3925 ,0,0,0}, - {4540,4541,4542 ,3925,3926,3927 ,0,0,0}, {4543,4544,4545 ,3928,3929,3930 ,0,0,0}, - {4544,4543,4542 ,3929,3928,3927 ,0,0,0}, {4546,4545,4547 ,3931,3930,3932 ,0,0,0}, - {4544,4547,4545 ,3929,3932,3930 ,0,0,0}, {4548,4549,4546 ,3933,3934,3931 ,0,0,0}, - {4546,4547,4548 ,3931,3932,3933 ,0,0,0}, {4549,4550,4551 ,3934,3935,3936 ,0,0,0}, - {4550,4549,4548 ,3935,3934,3933 ,0,0,0}, {4552,4551,4553 ,3937,3936,3938 ,0,0,0}, - {4550,4553,4551 ,3935,3938,3936 ,0,0,0}, {4554,4555,4552 ,3939,3940,3937 ,0,0,0}, - {4552,4553,4554 ,3937,3938,3939 ,0,0,0}, {4555,4556,4557 ,3940,3941,3942 ,0,0,0}, - {4556,4555,4554 ,3941,3940,3939 ,0,0,0}, {4558,4557,4559 ,3943,3942,3944 ,0,0,0}, - {4556,4559,4557 ,3941,3944,3942 ,0,0,0}, {4560,4561,4558 ,3945,3946,3943 ,0,0,0}, - {4558,4559,4560 ,3943,3944,3945 ,0,0,0}, {4561,4562,4563 ,3946,3947,3948 ,0,0,0}, - {4562,4561,4560 ,3947,3946,3945 ,0,0,0}, {4564,4563,4565 ,3949,3948,3950 ,0,0,0}, - {4562,4565,4563 ,3947,3950,3948 ,0,0,0}, {4566,4567,4564 ,3951,3952,3949 ,0,0,0}, - {4564,4565,4566 ,3949,3950,3951 ,0,0,0}, {4567,4568,4569 ,3952,3953,3954 ,0,0,0}, - {4568,4567,4566 ,3953,3952,3951 ,0,0,0}, {4570,4569,4571 ,3955,3954,3956 ,0,0,0}, - {4568,4571,4569 ,3953,3956,3954 ,0,0,0}, {4570,4571,4572 ,3955,3956,3955 ,0,0,0}, - {4573,4570,4572 ,1433,1433,1433 ,0,0,0}, {4570,4573,4574 ,1433,1433,1433 ,0,0,0}, - {4575,4576,4577 ,3957,3958,3959 ,0,0,0}, {4578,4579,4575 ,3960,3961,3957 ,0,0,0}, - {4575,4577,4578 ,3957,3959,3960 ,0,0,0}, {4579,4580,4581 ,3961,3962,3963 ,0,0,0}, - {4580,4579,4578 ,3962,3961,3960 ,0,0,0}, {4582,4581,4583 ,3964,3963,3965 ,0,0,0}, - {4580,4583,4581 ,3962,3965,3963 ,0,0,0}, {4584,4585,4582 ,3966,3967,3964 ,0,0,0}, - {4582,4583,4584 ,3964,3965,3966 ,0,0,0}, {4585,4586,4587 ,3967,3968,3969 ,0,0,0}, - {4586,4585,4584 ,3968,3967,3966 ,0,0,0}, {4588,4587,4589 ,3970,3969,3971 ,0,0,0}, - {4586,4589,4587 ,3968,3971,3969 ,0,0,0}, {4590,4591,4588 ,3972,3973,3970 ,0,0,0}, - {4588,4589,4590 ,3970,3971,3972 ,0,0,0}, {4591,4592,4593 ,3973,3974,3975 ,0,0,0}, - {4592,4591,4590 ,3974,3973,3972 ,0,0,0}, {4594,4593,4595 ,3976,3975,3977 ,0,0,0}, - {4592,4595,4593 ,3974,3977,3975 ,0,0,0}, {4596,4597,4594 ,3978,3979,3976 ,0,0,0}, - {4594,4595,4596 ,3976,3977,3978 ,0,0,0}, {4597,4598,4599 ,3979,3980,3981 ,0,0,0}, - {4598,4597,4596 ,3980,3979,3978 ,0,0,0}, {4600,4599,4601 ,3982,3981,3983 ,0,0,0}, - {4598,4601,4599 ,3980,3983,3981 ,0,0,0}, {4602,4603,4600 ,3984,3985,3982 ,0,0,0}, - {4600,4601,4602 ,3982,3983,3984 ,0,0,0}, {4603,4604,4605 ,3985,3986,3987 ,0,0,0}, - {4604,4603,4602 ,3986,3985,3984 ,0,0,0}, {4606,4605,4607 ,3988,3987,3989 ,0,0,0}, - {4604,4607,4605 ,3986,3989,3987 ,0,0,0}, {4608,4609,4606 ,3990,3991,3988 ,0,0,0}, - {4606,4607,4608 ,3988,3989,3990 ,0,0,0}, {4609,4610,4611 ,3991,3992,3993 ,0,0,0}, - {4610,4609,4608 ,3992,3991,3990 ,0,0,0}, {4612,4611,4613 ,3994,3993,3995 ,0,0,0}, - {4610,4613,4611 ,3992,3995,3993 ,0,0,0}, {4574,4573,4612 ,3996,3996,3994 ,0,0,0}, - {4612,4613,4574 ,3994,3995,3996 ,0,0,0}, {4577,4576,4614 ,3959,3958,3997 ,0,0,0}, - {4615,4614,4616 ,3998,3997,3999 ,0,0,0}, {4576,4616,4614 ,3958,3999,3997 ,0,0,0}, - {4617,4618,4615 ,4000,4001,3998 ,0,0,0}, {4615,4616,4617 ,3998,3999,4000 ,0,0,0}, - {4618,4619,4620 ,4001,4002,4003 ,0,0,0}, {4619,4618,4617 ,4002,4001,4000 ,0,0,0}, - {4621,4620,4622 ,4004,4003,4005 ,0,0,0}, {4619,4622,4620 ,4002,4005,4003 ,0,0,0}, - {4623,4624,4621 ,4006,4007,4004 ,0,0,0}, {4621,4622,4623 ,4004,4005,4006 ,0,0,0}, - {4624,4625,4626 ,4007,4008,4009 ,0,0,0}, {4625,4624,4623 ,4008,4007,4006 ,0,0,0}, - {4627,4626,4628 ,4010,4009,4011 ,0,0,0}, {4625,4628,4626 ,4008,4011,4009 ,0,0,0}, - {4629,4630,4627 ,4012,4013,4010 ,0,0,0}, {4627,4628,4629 ,4010,4011,4012 ,0,0,0}, - {4630,4631,4632 ,4013,4014,4015 ,0,0,0}, {4631,4630,4629 ,4014,4013,4012 ,0,0,0}, - {4633,4632,4634 ,4016,4015,4017 ,0,0,0}, {4631,4634,4632 ,4014,4017,4015 ,0,0,0}, - {4635,4636,4633 ,4018,4019,4016 ,0,0,0}, {4633,4634,4635 ,4016,4017,4018 ,0,0,0}, - {4636,4637,4638 ,4019,4020,4021 ,0,0,0}, {4637,4636,4635 ,4020,4019,4018 ,0,0,0}, - {4639,4638,4640 ,4022,4021,4023 ,0,0,0}, {4637,4640,4638 ,4020,4023,4021 ,0,0,0}, - {4641,4642,4639 ,4024,4025,4022 ,0,0,0}, {4639,4640,4641 ,4022,4023,4024 ,0,0,0}, - {4642,4643,4644 ,4025,4026,4027 ,0,0,0}, {4643,4642,4641 ,4026,4025,4024 ,0,0,0}, - {4645,4644,4646 ,4028,4027,4029 ,0,0,0}, {4643,4646,4644 ,4026,4029,4027 ,0,0,0}, - {4647,4648,4645 ,4030,4031,4028 ,0,0,0}, {4645,4646,4647 ,4028,4029,4030 ,0,0,0}, - {4648,4649,4650 ,4031,4032,4033 ,0,0,0}, {4649,4648,4647 ,4032,4031,4030 ,0,0,0}, - {4649,4299,4650 ,4032,4034,4033 ,0,0,0}, {4650,4299,4298 ,4033,4034,4034 ,0,0,0}, - {4000,4296,4001 ,2197,4035,2197 ,0,0,0}, {4296,4000,4294 ,4035,2197,4035 ,0,0,0}, - {4521,4023,4022 ,3295,3295,3295 ,0,0,0}, {4299,4649,4222 ,3295,726,726 ,0,0,0}, - {4643,4252,4646 ,726,726,726 ,0,0,0}, {4339,4297,4219 ,726,726,726 ,0,0,0}, - {4240,4244,4634 ,726,726,726 ,0,0,0}, {4248,4640,4637 ,726,726,726 ,0,0,0}, - {4619,4230,4622 ,726,726,726 ,0,0,0}, {4628,4625,4237 ,726,726,726 ,0,0,0}, - {4616,4224,4223 ,726,726,726 ,0,0,0}, {4617,4616,4223 ,726,726,726 ,0,0,0}, - {4016,4013,4512 ,3295,726,3295 ,0,0,0}, {4529,4528,4031 ,3295,726,3295 ,0,0,0}, - {4497,4501,4005 ,3295,3295,726 ,0,0,0}, {4007,4501,4504 ,726,3295,726 ,0,0,0}, - {4535,3961,3965 ,726,726,726 ,0,0,0}, {3961,4499,3962 ,726,3295,3295 ,0,0,0}, - {4538,3968,4541 ,3295,726,726 ,0,0,0}, {3967,4538,4536 ,3295,3295,3295 ,0,0,0}, - {3977,4548,4547 ,3294,3295,3295 ,0,0,0}, {3973,4544,4542 ,726,3295,3295 ,0,0,0}, - {4550,4548,3979 ,3295,3295,3295 ,0,0,0}, {3977,3979,4548 ,3294,3295,3295 ,0,0,0}, - {4554,4553,3983 ,3295,3294,726 ,0,0,0}, {4550,3979,3980 ,3295,3295,3295 ,0,0,0}, - {4556,4554,3985 ,3295,3295,3295 ,0,0,0}, {3983,4553,3980 ,726,3294,3295 ,0,0,0}, - {3986,4559,4556 ,3295,726,3295 ,0,0,0}, {4556,3985,3986 ,3295,3295,3295 ,0,0,0}, - {4559,3989,4560 ,726,726,726 ,0,0,0}, {3989,4559,3986 ,726,726,3295 ,0,0,0}, - {4562,4560,3991 ,726,726,726 ,0,0,0}, {3992,4562,3991 ,726,726,726 ,0,0,0}, - {3997,4566,3995 ,726,3295,3295 ,0,0,0}, {4565,4562,3992 ,726,726,726 ,0,0,0}, - {3998,4001,4568 ,726,726,726 ,0,0,0}, {3995,4566,4565 ,3295,3295,726 ,0,0,0}, - {4001,4571,4568 ,726,3295,726 ,0,0,0}, {4566,3998,4568 ,3295,726,726 ,0,0,0}, - {4591,4272,4588 ,726,726,726 ,0,0,0}, {4001,4572,4571 ,726,726,3295 ,0,0,0}, - {4522,4025,4516 ,3295,726,726 ,0,0,0}, {4536,3965,3967 ,3295,726,3295 ,0,0,0}, - {4544,3973,3974 ,3295,726,3295 ,0,0,0}, {4547,3974,3977 ,3295,3295,3294 ,0,0,0}, - {3971,3973,4542 ,3295,726,3295 ,0,0,0}, {4541,3968,3971 ,726,726,3295 ,0,0,0}, - {4499,3961,4535 ,3295,726,726 ,0,0,0}, {4535,3965,4536 ,726,726,3295 ,0,0,0}, - {4497,4004,4502 ,3295,3295,3295 ,0,0,0}, {4502,3962,4499 ,3295,3295,3295 ,0,0,0}, - {4165,4344,4163 ,726,726,3295 ,0,0,0}, {4004,3962,4502 ,3295,3295,3295 ,0,0,0}, - {4507,4011,4010 ,3295,3295,726 ,0,0,0}, {4504,4010,4007 ,726,726,726 ,0,0,0}, - {4508,4013,4011 ,726,726,3295 ,0,0,0}, {4507,4010,4504 ,3295,726,726 ,0,0,0}, - {4515,4019,4017 ,3295,3295,3295 ,0,0,0}, {4016,4512,4511 ,3295,3295,726 ,0,0,0}, - {4516,4023,4521 ,726,3295,3295 ,0,0,0}, {4019,4519,4022 ,3295,3295,3295 ,0,0,0}, - {4029,4028,4523 ,726,726,726 ,0,0,0}, {4025,4023,4516 ,726,3295,726 ,0,0,0}, - {4523,4028,4522 ,726,726,3295 ,0,0,0}, {4371,4368,4151 ,3295,726,726 ,0,0,0}, - {4531,4035,4034 ,3294,726,726 ,0,0,0}, {3948,3930,3950 ,3295,3294,726 ,0,0,0}, - {4037,4533,4039 ,3295,726,3295 ,0,0,0}, {3955,3957,3922 ,726,3295,726 ,0,0,0}, - {3919,3957,3958 ,726,3295,3295 ,0,0,0}, {4118,4115,3911 ,726,726,726 ,0,0,0}, - {4118,3902,3904 ,726,726,3295 ,0,0,0}, {4421,4093,4419 ,726,3295,3295 ,0,0,0}, - {4112,4107,4374 ,3295,726,726 ,0,0,0}, {4481,4478,4651 ,726,726,726 ,0,0,0}, - {4392,4076,4391 ,726,3295,3295 ,0,0,0}, {4652,4653,4442 ,3295,3295,726 ,0,0,0}, - {3897,4654,4655 ,3295,726,726 ,0,0,0}, {4448,4446,4656 ,726,3295,726 ,0,0,0}, - {4656,4446,4653 ,726,3295,3295 ,0,0,0}, {3870,3867,3939 ,726,726,3295 ,0,0,0}, - {4656,3939,4451 ,726,3295,3295 ,0,0,0}, {3937,3935,3868 ,3295,3295,3295 ,0,0,0}, - {3868,3935,3877 ,3295,3295,3295 ,0,0,0}, {4458,4457,3866 ,3295,726,726 ,0,0,0}, - {4445,4442,4653 ,3295,726,3295 ,0,0,0}, {4083,4652,4440 ,726,3295,726 ,0,0,0}, - {4058,4657,4054 ,726,3295,3295 ,0,0,0}, {4658,4659,4654 ,3295,3295,726 ,0,0,0}, - {4049,4660,4661 ,726,3295,3295 ,0,0,0}, {4437,4082,4083 ,3295,726,726 ,0,0,0}, - {4083,4440,4439 ,726,726,3295 ,0,0,0}, {4379,4082,4437 ,3295,726,3295 ,0,0,0}, - {4476,4475,4662 ,726,3295,3295 ,0,0,0}, {4081,4082,4383 ,3295,726,726 ,0,0,0}, - {4383,4385,4081 ,726,726,3295 ,0,0,0}, {4482,4481,4663 ,3295,726,3295 ,0,0,0}, - {4078,4081,4386 ,726,3295,726 ,0,0,0}, {4484,4664,4487 ,726,3295,3295 ,0,0,0}, - {4389,4078,4386 ,3295,726,726 ,0,0,0}, {4041,4488,4044 ,3295,726,3295 ,0,0,0}, - {4078,4391,4076 ,726,3295,3295 ,0,0,0}, {4401,4072,4071 ,3295,726,726 ,0,0,0}, - {4397,4071,4074 ,3295,726,3295 ,0,0,0}, {4088,4087,4409 ,3294,726,3295 ,0,0,0}, - {4072,4401,4403 ,726,3295,3295 ,0,0,0}, {4416,4090,4415 ,3295,3295,3295 ,0,0,0}, - {4090,4088,4413 ,3295,3294,3295 ,0,0,0}, {4099,4096,4427 ,3295,726,726 ,0,0,0}, - {4059,4665,4063 ,3295,726,3295 ,0,0,0}, {4666,4667,4668 ,3295,3295,3295 ,0,0,0}, - {4100,4431,4433 ,726,726,726 ,0,0,0}, {4102,4106,4378 ,3295,3295,3295 ,0,0,0}, - {4669,4120,4670 ,726,726,726 ,0,0,0}, {4671,4130,4120 ,3295,3295,726 ,0,0,0}, - {4123,4119,4672 ,726,726,726 ,0,0,0}, {4122,4673,4670 ,726,3295,726 ,0,0,0}, - {3960,3901,3900 ,726,726,3295 ,0,0,0}, {3944,3943,3924 ,3295,726,726 ,0,0,0}, - {4673,4122,4123 ,3295,726,726 ,0,0,0}, {4490,4041,4493 ,3295,3295,3295 ,0,0,0}, - {3947,3925,3928 ,726,3295,726 ,0,0,0}, {4148,4146,4371 ,3295,3295,3295 ,0,0,0}, - {4533,4493,4039 ,726,3295,3295 ,0,0,0}, {4186,4152,4368 ,3294,726,726 ,0,0,0}, - {4037,4035,4533 ,3295,726,726 ,0,0,0}, {4623,4233,4234 ,726,726,726 ,0,0,0}, - {4579,4260,4575 ,726,726,726 ,0,0,0}, {4262,4579,4581 ,726,726,726 ,0,0,0}, - {4341,4160,4342 ,3295,726,726 ,0,0,0}, {4016,4511,4017 ,3295,726,3295 ,0,0,0}, - {4533,4035,4531 ,726,726,3294 ,0,0,0}, {4528,4531,4034 ,726,3294,726 ,0,0,0}, - {4029,4529,4031 ,726,3295,3295 ,0,0,0}, {4031,4528,4034 ,3295,726,726 ,0,0,0}, - {4019,4515,4519 ,3295,3295,3295 ,0,0,0}, {4025,4522,4028 ,726,3295,726 ,0,0,0}, - {4029,4523,4529 ,726,726,3295 ,0,0,0}, {4521,4022,4519 ,3295,3295,3295 ,0,0,0}, - {4511,4515,4017 ,726,3295,3295 ,0,0,0}, {4512,4013,4508 ,3295,726,726 ,0,0,0}, - {4344,4165,4347 ,726,726,726 ,0,0,0}, {4507,4508,4011 ,3295,726,3295 ,0,0,0}, - {4575,4260,4228 ,726,726,726 ,0,0,0}, {4228,4576,4575 ,726,726,726 ,0,0,0}, - {4576,4228,4224 ,726,726,726 ,0,0,0}, {4230,4617,4223 ,726,726,726 ,0,0,0}, - {4224,4616,4576 ,726,726,726 ,0,0,0}, {4159,4160,4341 ,3295,726,3295 ,0,0,0}, - {4623,4622,4233 ,726,726,726 ,0,0,0}, {4622,4230,4233 ,726,726,726 ,0,0,0}, - {4314,4318,4195 ,726,3295,3295 ,0,0,0}, {4625,4623,4234 ,726,726,726 ,0,0,0}, - {4241,4628,4237 ,726,726,726 ,0,0,0}, {4629,4241,4243 ,726,726,726 ,0,0,0}, - {4241,4629,4628 ,726,726,726 ,0,0,0}, {4240,4631,4243 ,726,726,726 ,0,0,0}, - {4629,4243,4631 ,726,726,726 ,0,0,0}, {4631,4240,4634 ,726,726,726 ,0,0,0}, - {4244,4247,4635 ,726,726,726 ,0,0,0}, {4196,4195,4318 ,726,3295,3295 ,0,0,0}, - {4637,4247,4248 ,726,726,726 ,0,0,0}, {4247,4637,4635 ,726,726,726 ,0,0,0}, - {4641,4640,4250 ,726,726,726 ,0,0,0}, {4335,4213,4210 ,726,3295,3295 ,0,0,0}, - {4248,4250,4640 ,726,726,726 ,0,0,0}, {4254,4643,4641 ,726,726,726 ,0,0,0}, - {4641,4250,4254 ,726,726,726 ,0,0,0}, {4643,4254,4252 ,726,726,726 ,0,0,0}, - {4252,4257,4646 ,726,726,726 ,0,0,0}, {4646,4257,4647 ,726,726,726 ,0,0,0}, - {4647,4259,4649 ,726,726,726 ,0,0,0}, {4337,4216,4214 ,3295,726,3294 ,0,0,0}, - {4259,4647,4257 ,726,726,726 ,0,0,0}, {4138,4374,4372 ,726,726,3294 ,0,0,0}, - {3914,3915,4113 ,3294,726,726 ,0,0,0}, {4184,4186,4366 ,726,3294,726 ,0,0,0}, - {4372,4146,4145 ,3294,3295,3295 ,0,0,0}, {4183,4184,4365 ,3295,726,726 ,0,0,0}, - {4181,4183,4362 ,726,3295,726 ,0,0,0}, {4368,4152,4151 ,726,726,726 ,0,0,0}, - {4178,4181,4360 ,3295,726,3295 ,0,0,0}, {4368,4366,4186 ,726,726,3294 ,0,0,0}, - {4177,4178,4359 ,726,3295,3295 ,0,0,0}, {4366,4365,4184 ,726,726,726 ,0,0,0}, - {4175,4177,4356 ,3295,726,3295 ,0,0,0}, {4365,4362,4183 ,726,726,3295 ,0,0,0}, - {4172,4354,4353 ,3295,726,726 ,0,0,0}, {4362,4360,4181 ,726,3295,726 ,0,0,0}, - {4171,4353,4350 ,726,726,3295 ,0,0,0}, {4360,4359,4178 ,3295,3295,3295 ,0,0,0}, - {4169,4350,4348 ,3295,3295,726 ,0,0,0}, {4347,4166,4348 ,726,3295,726 ,0,0,0}, - {4172,4175,4354 ,3295,3295,726 ,0,0,0}, {4344,4342,4163 ,726,726,3295 ,0,0,0}, - {4172,4353,4171 ,3295,726,726 ,0,0,0}, {4581,4582,4265 ,726,726,726 ,0,0,0}, - {4350,4169,4171 ,3295,3295,726 ,0,0,0}, {4582,4585,4266 ,726,726,726 ,0,0,0}, - {4348,4166,4169 ,726,3295,3295 ,0,0,0}, {4585,4587,4268 ,726,726,726 ,0,0,0}, - {4004,4497,4005 ,3295,3295,726 ,0,0,0}, {4005,4501,4007 ,726,3295,726 ,0,0,0}, - {4342,4160,4163 ,726,726,3295 ,0,0,0}, {4271,4268,4587 ,726,726,726 ,0,0,0}, - {4262,4260,4579 ,726,726,726 ,0,0,0}, {4271,4588,4272 ,726,726,726 ,0,0,0}, - {4265,4262,4581 ,726,726,726 ,0,0,0}, {4591,4274,4272 ,726,726,726 ,0,0,0}, - {4266,4265,4582 ,726,726,726 ,0,0,0}, {4593,4277,4274 ,726,726,726 ,0,0,0}, - {4268,4266,4585 ,726,726,726 ,0,0,0}, {3968,4538,3967 ,726,3295,3295 ,0,0,0}, - {4278,4277,4594 ,726,726,726 ,0,0,0}, {4587,4588,4271 ,726,726,726 ,0,0,0}, - {4280,4278,4597 ,726,726,726 ,0,0,0}, {4280,4597,4599 ,726,726,726 ,0,0,0}, - {3971,4542,4541 ,3295,3295,726 ,0,0,0}, {4591,4593,4274 ,726,726,726 ,0,0,0}, - {3974,4547,4544 ,3295,3295,3295 ,0,0,0}, {4600,4283,4599 ,726,726,726 ,0,0,0}, - {4593,4594,4277 ,726,726,726 ,0,0,0}, {4284,4600,4603 ,726,726,726 ,0,0,0}, - {4594,4597,4278 ,726,726,726 ,0,0,0}, {3980,4553,4550 ,3295,3294,3295 ,0,0,0}, - {4599,4283,4280 ,726,726,726 ,0,0,0}, {4603,4605,4286 ,726,726,726 ,0,0,0}, - {4284,4283,4600 ,726,726,726 ,0,0,0}, {4606,4289,4605 ,726,726,726 ,0,0,0}, - {3983,3985,4554 ,726,3295,3295 ,0,0,0}, {4609,4290,4606 ,726,726,726 ,0,0,0}, - {4286,4284,4603 ,726,726,726 ,0,0,0}, {3989,3991,4560 ,726,726,726 ,0,0,0}, - {4605,4289,4286 ,726,726,726 ,0,0,0}, {4292,4609,4611 ,726,726,726 ,0,0,0}, - {3992,3995,4565 ,726,3295,726 ,0,0,0}, {4606,4290,4289 ,726,726,726 ,0,0,0}, - {4295,4292,4611 ,3295,726,726 ,0,0,0}, {4296,4295,4612 ,726,3295,726 ,0,0,0}, - {3997,3998,4566 ,726,726,3295 ,0,0,0}, {4295,4611,4612 ,3295,726,726 ,0,0,0}, - {4573,4572,4296 ,3295,726,726 ,0,0,0}, {4572,4001,4296 ,726,726,726 ,0,0,0}, - {4612,4573,4296 ,726,3295,726 ,0,0,0}, {4609,4292,4290 ,726,726,726 ,0,0,0}, - {4159,4341,4305 ,3295,3295,3295 ,0,0,0}, {4157,4305,4308 ,3295,3295,3295 ,0,0,0}, - {4153,4308,4303 ,3295,3295,3295 ,0,0,0}, {4187,4303,4307 ,726,3295,726 ,0,0,0}, - {4307,4310,4189 ,726,3295,3295 ,0,0,0}, {4230,4619,4617 ,726,726,726 ,0,0,0}, - {4305,4157,4159 ,3295,3295,3295 ,0,0,0}, {4310,4313,4190 ,3295,3295,726 ,0,0,0}, - {4308,4153,4157 ,3295,3295,3295 ,0,0,0}, {4234,4237,4625 ,726,726,726 ,0,0,0}, - {4153,4303,4187 ,3295,3295,726 ,0,0,0}, {4314,4192,4313 ,726,726,3295 ,0,0,0}, - {4307,4189,4187 ,726,3295,726 ,0,0,0}, {4196,4318,4317 ,726,3295,3295 ,0,0,0}, - {4310,4190,4189 ,3295,726,3295 ,0,0,0}, {4198,4196,4317 ,3295,726,3295 ,0,0,0}, - {4313,4192,4190 ,3295,726,726 ,0,0,0}, {4321,4201,4198 ,726,3295,3295 ,0,0,0}, - {4314,4195,4192 ,726,3295,726 ,0,0,0}, {4325,4202,4201 ,726,726,3295 ,0,0,0}, - {4327,4204,4202 ,3295,726,726 ,0,0,0}, {4634,4244,4635 ,726,726,726 ,0,0,0}, - {4198,4317,4321 ,3295,3295,726 ,0,0,0}, {4322,4207,4204 ,726,3295,726 ,0,0,0}, - {4201,4321,4325 ,3295,726,726 ,0,0,0}, {4207,4328,4208 ,3295,726,3295 ,0,0,0}, - {4202,4325,4327 ,726,726,3295 ,0,0,0}, {4210,4208,4329 ,3295,3295,726 ,0,0,0}, - {4207,4322,4328 ,3295,726,726 ,0,0,0}, {4213,4335,4334 ,3295,726,3295 ,0,0,0}, - {4208,4328,4329 ,3295,726,726 ,0,0,0}, {4337,4214,4334 ,3295,3294,3295 ,0,0,0}, - {4210,4329,4335 ,3295,726,726 ,0,0,0}, {4337,4219,4216 ,3295,726,726 ,0,0,0}, - {4214,4213,4334 ,3294,3295,3295 ,0,0,0}, {4219,4297,4222 ,726,726,726 ,0,0,0}, - {4299,4222,4297 ,3295,726,726 ,0,0,0}, {4649,4259,4222 ,726,726,726 ,0,0,0}, - {4337,4339,4219 ,3295,726,726 ,0,0,0}, {4204,4327,4322 ,726,3295,726 ,0,0,0}, - {4166,4347,4165 ,3295,726,726 ,0,0,0}, {4177,4359,4356 ,726,3295,3295 ,0,0,0}, - {4175,4356,4354 ,3295,3295,726 ,0,0,0}, {4094,4421,4422 ,3295,726,3295 ,0,0,0}, - {4148,4371,4151 ,3295,3295,726 ,0,0,0}, {4109,4100,4434 ,3295,726,726 ,0,0,0}, - {4372,4371,4146 ,3294,3295,3295 ,0,0,0}, {4136,4139,4674 ,726,3295,3295 ,0,0,0}, - {4138,4372,4145 ,726,3294,3295 ,0,0,0}, {4675,4128,4127 ,3295,3295,726 ,0,0,0}, - {4119,3950,3931 ,726,726,726 ,0,0,0}, {4130,4676,4127 ,3295,726,726 ,0,0,0}, - {4119,3931,4672 ,726,726,726 ,0,0,0}, {4377,4107,4103 ,726,726,3295 ,0,0,0}, - {4099,4427,4428 ,3295,726,726 ,0,0,0}, {4661,4059,4047 ,3295,3295,3295 ,0,0,0}, - {4416,4419,4093 ,3295,3295,3295 ,0,0,0}, {4088,4409,4410 ,3294,3295,3294 ,0,0,0}, - {4397,4398,4071 ,3295,3295,726 ,0,0,0}, {4451,3939,4452 ,3295,3295,3295 ,0,0,0}, - {4074,4392,4395 ,3295,726,3295 ,0,0,0}, {4404,4087,4072 ,726,726,726 ,0,0,0}, - {4087,4404,4407 ,726,726,3295 ,0,0,0}, {4090,4413,4415 ,3295,3295,3295 ,0,0,0}, - {4425,4094,4422 ,726,3295,3295 ,0,0,0}, {4425,4096,4094 ,726,726,3295 ,0,0,0}, - {4100,4099,4431 ,726,3295,726 ,0,0,0}, {4434,4436,4109 ,726,726,3295 ,0,0,0}, - {4109,4378,4106 ,3295,3295,3295 ,0,0,0}, {4103,4102,4377 ,3295,3295,726 ,0,0,0}, - {4675,4677,4128 ,3295,726,3295 ,0,0,0}, {4678,4679,4142 ,726,3295,726 ,0,0,0}, - {4679,4680,4142 ,3295,726,726 ,0,0,0}, {4681,4674,4139 ,726,3295,3295 ,0,0,0}, - {4674,4682,4136 ,3295,726,726 ,0,0,0}, {4107,4377,4374 ,726,726,726 ,0,0,0}, - {4378,4377,4102 ,3295,726,3295 ,0,0,0}, {4378,4109,4436 ,3295,3295,726 ,0,0,0}, - {4434,4100,4433 ,726,726,726 ,0,0,0}, {4431,4099,4428 ,726,3295,726 ,0,0,0}, - {4427,4096,4425 ,726,726,726 ,0,0,0}, {4094,4093,4421 ,3295,3295,726 ,0,0,0}, - {4093,4090,4416 ,3295,3295,3295 ,0,0,0}, {4088,4410,4413 ,3294,3294,3295 ,0,0,0}, - {4087,4407,4409 ,726,3295,3295 ,0,0,0}, {4072,4403,4404 ,726,3295,726 ,0,0,0}, - {4071,4398,4401 ,726,3295,3295 ,0,0,0}, {4074,4395,4397 ,3295,3295,3295 ,0,0,0}, - {4074,4076,4392 ,3295,3295,726 ,0,0,0}, {4078,4389,4391 ,726,3295,3295 ,0,0,0}, - {4081,4385,4386 ,3295,726,726 ,0,0,0}, {4082,4379,4383 ,726,3295,726 ,0,0,0}, - {4083,4439,4437 ,726,3295,3295 ,0,0,0}, {4652,4442,4440 ,3295,726,726 ,0,0,0}, - {4653,4446,4445 ,3295,3295,3295 ,0,0,0}, {4656,4451,4448 ,726,3295,726 ,0,0,0}, - {3870,3937,3868 ,726,3295,3295 ,0,0,0}, {3874,3877,3935 ,3295,3295,3295 ,0,0,0}, - {4454,4452,3867 ,3295,3295,726 ,0,0,0}, {3934,3876,3874 ,3295,726,3295 ,0,0,0}, - {3880,3941,4068 ,3295,726,3295 ,0,0,0}, {4683,4668,4684 ,726,3295,3295 ,0,0,0}, - {4053,4685,4051 ,726,3295,3295 ,0,0,0}, {4686,4053,4054 ,726,726,3295 ,0,0,0}, - {4048,4660,4049 ,3295,3295,726 ,0,0,0}, {4048,4051,4687 ,3295,3295,726 ,0,0,0}, - {4688,4058,4667 ,726,726,3295 ,0,0,0}, {4689,4064,4063 ,3295,3295,3295 ,0,0,0}, - {4683,4659,4658 ,726,3295,3295 ,0,0,0}, {3890,4463,3888 ,3295,3295,3295 ,0,0,0}, - {3885,4460,4458 ,3295,3295,3295 ,0,0,0}, {3894,3896,4469 ,3295,3295,726 ,0,0,0}, - {3891,4466,4464 ,726,726,726 ,0,0,0}, {4475,3897,4655 ,3295,3295,726 ,0,0,0}, - {4655,4662,4475 ,726,3295,3295 ,0,0,0}, {4472,3897,4475 ,726,3295,3295 ,0,0,0}, - {4472,4470,3896 ,726,726,3295 ,0,0,0}, {4478,4476,4662 ,726,726,3295 ,0,0,0}, - {4663,4481,4651 ,3295,726,726 ,0,0,0}, {4651,4478,4662 ,726,726,3295 ,0,0,0}, - {4663,4484,4482 ,3295,726,3295 ,0,0,0}, {4664,4044,4487 ,3295,3295,3295 ,0,0,0}, - {4663,4664,4484 ,3295,3295,726 ,0,0,0}, {4488,4487,4044 ,726,3295,3295 ,0,0,0}, - {4488,4041,4490 ,726,3295,3295 ,0,0,0}, {4493,4041,4039 ,3295,3295,3295 ,0,0,0}, - {4113,3910,4115 ,726,3295,726 ,0,0,0}, {4672,4673,4123 ,726,3295,726 ,0,0,0}, - {3904,3901,3960 ,3295,726,726 ,0,0,0}, {4670,4120,4122 ,726,726,726 ,0,0,0}, - {4671,4120,4669 ,3295,726,726 ,0,0,0}, {4676,4130,4671 ,726,3295,3295 ,0,0,0}, - {4675,4127,4676 ,3295,726,726 ,0,0,0}, {4132,4128,4677 ,3295,3295,726 ,0,0,0}, - {4132,4690,4142 ,3295,3295,726 ,0,0,0}, {4690,4132,4677 ,3295,3295,726 ,0,0,0}, - {4690,4678,4142 ,3295,726,726 ,0,0,0}, {4139,4680,4681 ,3295,726,726 ,0,0,0}, - {4680,4139,4142 ,726,3295,726 ,0,0,0}, {4138,3917,4374 ,726,726,726 ,0,0,0}, - {4682,3917,4138 ,726,726,726 ,0,0,0}, {4682,4138,4136 ,726,726,726 ,0,0,0}, - {3917,3914,4374 ,726,3294,726 ,0,0,0}, {4112,3914,4113 ,3295,3294,726 ,0,0,0}, - {3914,4112,4374 ,3294,3295,726 ,0,0,0}, {3915,3910,4113 ,726,3295,726 ,0,0,0}, - {3908,3911,4115 ,726,726,726 ,0,0,0}, {3910,3908,4115 ,3295,726,726 ,0,0,0}, - {3911,3902,4118 ,726,726,726 ,0,0,0}, {3904,3960,4118 ,3295,726,726 ,0,0,0}, - {3958,3960,3900 ,3295,726,3295 ,0,0,0}, {3922,3957,3919 ,726,3295,726 ,0,0,0}, - {3919,3958,3900 ,726,3295,3295 ,0,0,0}, {3924,3955,3922 ,726,726,726 ,0,0,0}, - {3924,3925,3944 ,726,3295,3295 ,0,0,0}, {3924,3943,3955 ,726,726,726 ,0,0,0}, - {3947,3928,3948 ,726,726,3295 ,0,0,0}, {3944,3925,3947 ,3295,3295,726 ,0,0,0}, - {3950,3930,3931 ,726,3294,726 ,0,0,0}, {3948,3928,3930 ,3295,726,3294 ,0,0,0}, - {4064,4691,4066 ,3295,726,3295 ,0,0,0}, {4655,4654,4659 ,726,726,3295 ,0,0,0}, - {4068,4066,3883 ,3295,3295,3295 ,0,0,0}, {4683,4684,4659 ,726,3295,3295 ,0,0,0}, - {4668,4667,4684 ,3295,3295,3295 ,0,0,0}, {4688,4667,4666 ,726,3295,3295 ,0,0,0}, - {4657,4058,4688 ,3295,726,726 ,0,0,0}, {4686,4054,4657 ,726,3295,3295 ,0,0,0}, - {4685,4053,4686 ,3295,726,726 ,0,0,0}, {4687,4051,4685 ,726,3295,3295 ,0,0,0}, - {4660,4048,4687 ,3295,3295,726 ,0,0,0}, {4047,4049,4661 ,3295,726,3295 ,0,0,0}, - {4665,4059,4661 ,726,3295,3295 ,0,0,0}, {4689,4063,4665 ,3295,3295,726 ,0,0,0}, - {4691,4064,4689 ,726,3295,3295 ,0,0,0}, {3883,4066,4691 ,3295,3295,726 ,0,0,0}, - {3880,4068,3883 ,3295,3295,3295 ,0,0,0}, {3881,3941,3880 ,3295,726,3295 ,0,0,0}, - {3934,3881,3876 ,3295,3295,726 ,0,0,0}, {3881,3934,3941 ,3295,3295,726 ,0,0,0}, - {3874,3935,3934 ,3295,3295,3295 ,0,0,0}, {3939,3937,3870 ,3295,3295,726 ,0,0,0}, - {4454,3867,3866 ,3295,726,726 ,0,0,0}, {3867,4452,3939 ,726,3295,3295 ,0,0,0}, - {3885,4458,3866 ,3295,3295,726 ,0,0,0}, {4457,4454,3866 ,726,3295,726 ,0,0,0}, - {3888,4460,3885 ,3295,3295,3295 ,0,0,0}, {3890,4464,4463 ,3295,726,3295 ,0,0,0}, - {3888,4463,4460 ,3295,3295,3295 ,0,0,0}, {3891,3894,4466 ,726,3295,726 ,0,0,0}, - {3890,3891,4464 ,3295,726,726 ,0,0,0}, {4469,3896,4470 ,726,3295,726 ,0,0,0}, - {4466,3894,4469 ,726,3295,726 ,0,0,0}, {4472,3896,3897 ,726,3295,3295 ,0,0,0}, - {4220,4338,4336 ,730,730,730 ,0,0,0}, {4002,4498,3963 ,730,730,730 ,0,0,0}, - {4073,4406,4405 ,730,730,730 ,0,0,0}, {4332,4215,4333 ,730,730,730 ,0,0,0}, - {4206,4209,4324 ,730,730,730 ,0,0,0}, {4211,4212,4331 ,730,730,730 ,0,0,0}, - {4197,4199,4316 ,730,730,730 ,0,0,0}, {4200,4203,4320 ,730,730,730 ,0,0,0}, - {4301,4304,4155 ,730,730,730 ,0,0,0}, {4191,4193,4311 ,730,730,730 ,0,0,0}, - {4500,3964,3963 ,730,730,730 ,0,0,0}, {4345,4162,4343 ,730,730,730 ,0,0,0}, - {3972,4540,4543 ,730,730,730 ,0,0,0}, {4546,4549,3978 ,730,730,730 ,0,0,0}, - {4534,4537,3966 ,730,730,730 ,0,0,0}, {4540,3972,3970 ,730,730,730 ,0,0,0}, - {4003,4496,4495 ,730,730,730 ,0,0,0}, {3964,4500,4534 ,730,730,730 ,0,0,0}, - {4008,4009,4505 ,730,730,730 ,0,0,0}, {4578,4261,4580 ,730,730,730 ,0,0,0}, - {4506,4012,4509 ,730,730,730 ,0,0,0}, {4009,4506,4505 ,730,730,730 ,0,0,0}, - {4021,4520,4020 ,730,730,730 ,0,0,0}, {4014,4510,4509 ,730,730,730 ,0,0,0}, - {4527,4526,4032 ,730,730,730 ,0,0,0}, {4525,4524,4027 ,730,730,730 ,0,0,0}, - {4033,4036,4530 ,730,730,730 ,0,0,0}, {4692,4444,4447 ,730,730,730 ,0,0,0}, - {4079,4077,4388 ,730,730,730 ,0,0,0}, {3882,3942,3940 ,730,730,730 ,0,0,0}, - {3892,4467,4468 ,730,730,730 ,0,0,0}, {4042,4492,4494 ,730,730,730 ,0,0,0}, - {4532,4040,4494 ,730,730,730 ,0,0,0}, {4693,4694,4486 ,730,730,730 ,0,0,0}, - {3895,3893,4471 ,730,730,730 ,0,0,0}, {4693,4486,4489 ,730,730,730 ,0,0,0}, - {4483,4485,4694 ,730,730,730 ,0,0,0}, {4045,4695,4046 ,730,730,730 ,0,0,0}, - {4494,4040,4042 ,730,730,730 ,0,0,0}, {4406,4073,4086 ,730,730,730 ,0,0,0}, - {4696,4085,4443 ,730,730,730 ,0,0,0}, {4384,4382,4080 ,730,730,730 ,0,0,0}, - {3892,4468,3893 ,730,730,730 ,0,0,0}, {3938,4453,4455 ,730,730,730 ,0,0,0}, - {4036,4038,4532 ,730,730,730 ,0,0,0}, {3936,3869,3933 ,730,730,730 ,0,0,0}, - {3872,3873,3933 ,730,730,730 ,0,0,0}, {4697,4061,4062 ,730,730,730 ,0,0,0}, - {4693,4489,4043 ,730,730,730 ,0,0,0}, {4042,4043,4491 ,730,730,730 ,0,0,0}, - {4698,4483,4694 ,730,730,730 ,0,0,0}, {4479,4480,4699 ,730,730,730 ,0,0,0}, - {4699,4480,4698 ,730,730,730 ,0,0,0}, {4698,4480,4483 ,730,730,730 ,0,0,0}, - {4694,4485,4486 ,730,730,730 ,0,0,0}, {4700,4701,4702 ,730,730,730 ,0,0,0}, - {3951,3952,3929 ,730,730,730 ,0,0,0}, {4489,4491,4043 ,730,730,730 ,0,0,0}, - {4473,3895,4471 ,730,730,730 ,0,0,0}, {4492,4042,4491 ,730,730,730 ,0,0,0}, - {4703,4057,4055 ,730,730,730 ,0,0,0}, {4062,4065,4704 ,730,730,730 ,0,0,0}, - {4067,3942,3879 ,730,730,730 ,0,0,0}, {4065,4067,3878 ,730,730,730 ,0,0,0}, - {4532,4038,4040 ,730,730,730 ,0,0,0}, {4046,4705,4050 ,730,730,730 ,0,0,0}, - {4706,4060,4061 ,730,730,730 ,0,0,0}, {3938,4455,3865 ,730,730,730 ,0,0,0}, - {4050,4707,4052 ,730,730,730 ,0,0,0}, {3889,4467,3892 ,730,730,730 ,0,0,0}, - {4467,3889,4465 ,730,730,730 ,0,0,0}, {4380,4084,4381 ,730,730,730 ,0,0,0}, - {4396,4070,4399 ,730,730,730 ,0,0,0}, {4393,4390,4075 ,730,730,730 ,0,0,0}, - {4414,4412,4089 ,730,730,730 ,0,0,0}, {4402,4069,4073 ,730,730,730 ,0,0,0}, - {4414,4089,4091 ,730,730,730 ,0,0,0}, {4032,4033,4527 ,730,730,730 ,0,0,0}, - {4036,4532,4530 ,730,730,730 ,0,0,0}, {4530,4527,4033 ,730,730,730 ,0,0,0}, - {4546,3976,4545 ,730,730,730 ,0,0,0}, {4525,4027,4030 ,730,730,730 ,0,0,0}, - {4526,4030,4032 ,730,730,730 ,0,0,0}, {4026,4027,4524 ,730,730,730 ,0,0,0}, - {4525,4030,4526 ,730,730,730 ,0,0,0}, {4026,4518,4024 ,730,730,730 ,0,0,0}, - {4517,4021,4024 ,730,730,730 ,0,0,0}, {4524,4518,4026 ,730,730,730 ,0,0,0}, - {4021,4517,4520 ,730,730,730 ,0,0,0}, {4024,4518,4517 ,730,730,730 ,0,0,0}, - {4355,4174,4173 ,730,730,730 ,0,0,0}, {4514,4018,4020 ,730,730,730 ,0,0,0}, - {4018,4513,4015 ,730,730,730 ,0,0,0}, {4513,4510,4015 ,730,730,730 ,0,0,0}, - {4510,4014,4015 ,730,730,730 ,0,0,0}, {4509,4012,4014 ,730,730,730 ,0,0,0}, - {4506,4009,4012 ,730,730,730 ,0,0,0}, {4006,4503,4496 ,730,730,730 ,0,0,0}, - {4008,4505,4503 ,730,730,730 ,0,0,0}, {4003,4495,4002 ,730,730,730 ,0,0,0}, - {4498,4500,3963 ,730,730,730 ,0,0,0}, {3966,4537,3969 ,730,730,730 ,0,0,0}, - {3970,3969,4539 ,730,730,730 ,0,0,0}, {3972,4543,3975 ,730,730,730 ,0,0,0}, - {3970,4539,4540 ,730,730,730 ,0,0,0}, {3975,4545,3976 ,730,730,730 ,0,0,0}, - {3975,4543,4545 ,730,730,730 ,0,0,0}, {3981,4549,4551 ,730,730,730 ,0,0,0}, - {3978,3976,4546 ,730,730,730 ,0,0,0}, {3982,3981,4551 ,730,730,730 ,0,0,0}, - {3982,4551,4552 ,730,730,730 ,0,0,0}, {3984,4552,4555 ,730,730,730 ,0,0,0}, - {3982,4552,3984 ,730,730,730 ,0,0,0}, {4555,3987,3984 ,730,730,730 ,0,0,0}, - {4555,4557,3987 ,730,730,730 ,0,0,0}, {3987,4557,3988 ,730,730,730 ,0,0,0}, - {3969,4537,4539 ,730,730,730 ,0,0,0}, {3990,3988,4558 ,730,730,730 ,0,0,0}, - {3988,4557,4558 ,730,730,730 ,0,0,0}, {4561,3993,3990 ,730,730,730 ,0,0,0}, - {4561,3990,4558 ,730,730,730 ,0,0,0}, {3993,4563,3994 ,730,730,730 ,0,0,0}, - {3994,4564,3996 ,730,730,730 ,0,0,0}, {4564,3994,4563 ,730,730,730 ,0,0,0}, - {4564,4567,3999 ,730,730,730 ,0,0,0}, {4291,4610,4608 ,730,730,730 ,0,0,0}, - {4000,3999,4567 ,730,730,730 ,0,0,0}, {4570,4574,4294 ,730,730,730 ,0,0,0}, - {4293,4613,4610 ,730,730,730 ,0,0,0}, {3966,3964,4534 ,730,730,730 ,0,0,0}, - {4227,4614,4225 ,730,730,730 ,0,0,0}, {4613,4293,4294 ,730,730,730 ,0,0,0}, - {4495,4498,4002 ,730,730,730 ,0,0,0}, {4349,4167,4346 ,730,730,730 ,0,0,0}, - {4170,4168,4351 ,730,730,730 ,0,0,0}, {4168,4167,4349 ,730,730,730 ,0,0,0}, - {4164,4162,4345 ,730,730,730 ,0,0,0}, {4345,4346,4164 ,730,730,730 ,0,0,0}, - {4343,4161,4340 ,730,730,730 ,0,0,0}, {4343,4162,4161 ,730,730,730 ,0,0,0}, - {4306,4340,4158 ,730,730,730 ,0,0,0}, {4161,4158,4340 ,730,730,730 ,0,0,0}, - {4156,4304,4306 ,730,730,730 ,0,0,0}, {4306,4158,4156 ,730,730,730 ,0,0,0}, - {4302,4154,4188 ,730,730,730 ,0,0,0}, {4155,4304,4156 ,730,730,730 ,0,0,0}, - {4188,4191,4309 ,730,730,730 ,0,0,0}, {4154,4302,4301 ,730,730,730 ,0,0,0}, - {4302,4188,4309 ,730,730,730 ,0,0,0}, {4315,4312,4194 ,730,730,730 ,0,0,0}, - {4236,4626,4627 ,730,730,730 ,0,0,0}, {4197,4315,4194 ,730,730,730 ,0,0,0}, - {4193,4194,4312 ,730,730,730 ,0,0,0}, {4319,4200,4320 ,730,730,730 ,0,0,0}, - {4316,4315,4197 ,730,730,730 ,0,0,0}, {4203,4326,4320 ,730,730,730 ,0,0,0}, - {4200,4319,4199 ,730,730,730 ,0,0,0}, {4206,4323,4205 ,730,730,730 ,0,0,0}, - {4205,4323,4326 ,730,730,730 ,0,0,0}, {4330,4324,4209 ,730,730,730 ,0,0,0}, - {4324,4323,4206 ,730,730,730 ,0,0,0}, {4212,4332,4331 ,730,730,730 ,0,0,0}, - {4211,4331,4330 ,730,730,730 ,0,0,0}, {4336,4217,4218 ,730,730,730 ,0,0,0}, - {4217,4333,4215 ,730,730,730 ,0,0,0}, {4336,4218,4220 ,730,730,730 ,0,0,0}, - {4567,4569,4000 ,730,730,730 ,0,0,0}, {4570,4000,4569 ,730,730,730 ,0,0,0}, - {4288,4607,4287 ,730,730,730 ,0,0,0}, {3999,3996,4564 ,730,730,730 ,0,0,0}, - {4293,4610,4291 ,730,730,730 ,0,0,0}, {3993,4561,4563 ,730,730,730 ,0,0,0}, - {4285,4287,4604 ,730,730,730 ,0,0,0}, {4608,4607,4288 ,730,730,730 ,0,0,0}, - {4282,4285,4602 ,730,730,730 ,0,0,0}, {4607,4604,4287 ,730,730,730 ,0,0,0}, - {4601,4281,4282 ,730,730,730 ,0,0,0}, {4598,4279,4281 ,730,730,730 ,0,0,0}, - {4602,4285,4604 ,730,730,730 ,0,0,0}, {4596,4276,4279 ,730,730,730 ,0,0,0}, - {4601,4282,4602 ,730,730,730 ,0,0,0}, {3978,4549,3981 ,730,730,730 ,0,0,0}, - {4601,4598,4281 ,730,730,730 ,0,0,0}, {4595,4592,4275 ,730,730,730 ,0,0,0}, - {4598,4596,4279 ,730,730,730 ,0,0,0}, {4592,4590,4273 ,730,730,730 ,0,0,0}, - {4590,4589,4270 ,730,730,730 ,0,0,0}, {4589,4586,4269 ,730,730,730 ,0,0,0}, - {4276,4595,4275 ,730,730,730 ,0,0,0}, {4586,4584,4267 ,730,730,730 ,0,0,0}, - {4275,4592,4273 ,730,730,730 ,0,0,0}, {4583,4264,4584 ,730,730,730 ,0,0,0}, - {4273,4590,4270 ,730,730,730 ,0,0,0}, {4263,4583,4580 ,730,730,730 ,0,0,0}, - {4270,4589,4269 ,730,730,730 ,0,0,0}, {4261,4578,4226 ,730,730,730 ,0,0,0}, - {4269,4586,4267 ,730,730,730 ,0,0,0}, {4227,4226,4577 ,730,730,730 ,0,0,0}, - {4584,4264,4267 ,730,730,730 ,0,0,0}, {4225,4615,4229 ,730,730,730 ,0,0,0}, - {4263,4264,4583 ,730,730,730 ,0,0,0}, {4352,4170,4351 ,730,730,730 ,0,0,0}, - {4008,4503,4006 ,730,730,730 ,0,0,0}, {4006,4496,4003 ,730,730,730 ,0,0,0}, - {4226,4578,4577 ,730,730,730 ,0,0,0}, {4352,4355,4173 ,730,730,730 ,0,0,0}, - {4227,4577,4614 ,730,730,730 ,0,0,0}, {4355,4357,4174 ,730,730,730 ,0,0,0}, - {4225,4614,4615 ,730,730,730 ,0,0,0}, {4357,4358,4176 ,730,730,730 ,0,0,0}, - {4358,4361,4179 ,730,730,730 ,0,0,0}, {4349,4351,4168 ,730,730,730 ,0,0,0}, - {4361,4363,4180 ,730,730,730 ,0,0,0}, {4173,4170,4352 ,730,730,730 ,0,0,0}, - {4363,4364,4182 ,730,730,730 ,0,0,0}, {4020,4520,4514 ,730,730,730 ,0,0,0}, - {4018,4514,4513 ,730,730,730 ,0,0,0}, {4357,4176,4174 ,730,730,730 ,0,0,0}, - {4149,4367,4369 ,730,730,730 ,0,0,0}, {4358,4179,4176 ,730,730,730 ,0,0,0}, - {4141,4708,4709 ,730,730,730 ,0,0,0}, {4361,4180,4179 ,730,730,730 ,0,0,0}, - {3946,3949,3926 ,730,730,730 ,0,0,0}, {3920,3954,3921 ,730,730,730 ,0,0,0}, - {4185,4367,4150 ,730,730,730 ,0,0,0}, {4104,4373,4375 ,730,730,730 ,0,0,0}, - {4110,4108,4376 ,730,730,730 ,0,0,0}, {3923,3945,3946 ,730,730,730 ,0,0,0}, - {4098,4432,4430 ,730,730,730 ,0,0,0}, {4710,4124,4711 ,730,730,730 ,0,0,0}, - {4373,4104,4111 ,730,730,730 ,0,0,0}, {4092,4423,4420 ,730,730,730 ,0,0,0}, - {4474,3898,3895 ,730,730,730 ,0,0,0}, {4712,4477,4699 ,730,730,730 ,0,0,0}, - {4479,4699,4477 ,730,730,730 ,0,0,0}, {4477,4712,3898 ,730,730,730 ,0,0,0}, - {4713,4714,4715 ,730,730,730 ,0,0,0}, {4477,3898,4474 ,730,730,730 ,0,0,0}, - {4473,4474,3895 ,730,730,730 ,0,0,0}, {3875,3940,3873 ,730,730,730 ,0,0,0}, - {4706,4695,4060 ,730,730,730 ,0,0,0}, {4716,4717,4718 ,730,730,730 ,0,0,0}, - {4380,4438,4084 ,730,730,730 ,0,0,0}, {4070,4394,4075 ,730,730,730 ,0,0,0}, - {4411,4086,4089 ,730,730,730 ,0,0,0}, {4424,4095,4097 ,730,730,730 ,0,0,0}, - {4424,4423,4095 ,730,730,730 ,0,0,0}, {4426,4097,4429 ,730,730,730 ,0,0,0}, - {4420,4418,4092 ,730,730,730 ,0,0,0}, {4418,4417,4091 ,730,730,730 ,0,0,0}, - {4086,4411,4408 ,730,730,730 ,0,0,0}, {4402,4400,4069 ,730,730,730 ,0,0,0}, - {4069,4399,4070 ,730,730,730 ,0,0,0}, {4394,4393,4075 ,730,730,730 ,0,0,0}, - {4388,4387,4079 ,730,730,730 ,0,0,0}, {4384,4080,4079 ,730,730,730 ,0,0,0}, - {4429,4098,4430 ,730,730,730 ,0,0,0}, {4382,4381,4080 ,730,730,730 ,0,0,0}, - {4438,4085,4084 ,730,730,730 ,0,0,0}, {4441,4443,4085 ,730,730,730 ,0,0,0}, - {4449,4719,4692 ,730,730,730 ,0,0,0}, {4719,4449,4450 ,730,730,730 ,0,0,0}, - {3938,4719,4453 ,730,730,730 ,0,0,0}, {3884,4456,4459 ,730,730,730 ,0,0,0}, - {3887,3886,4462 ,730,730,730 ,0,0,0}, {3884,3865,4456 ,730,730,730 ,0,0,0}, - {4450,4453,4719 ,730,730,730 ,0,0,0}, {4447,4449,4692 ,730,730,730 ,0,0,0}, - {4443,4444,4696 ,730,730,730 ,0,0,0}, {4444,4692,4696 ,730,730,730 ,0,0,0}, - {4438,4441,4085 ,730,730,730 ,0,0,0}, {4381,4084,4080 ,730,730,730 ,0,0,0}, - {4384,4079,4387 ,730,730,730 ,0,0,0}, {4077,4075,4390 ,730,730,730 ,0,0,0}, - {4077,4390,4388 ,730,730,730 ,0,0,0}, {4070,4396,4394 ,730,730,730 ,0,0,0}, - {4069,4400,4399 ,730,730,730 ,0,0,0}, {4073,4405,4402 ,730,730,730 ,0,0,0}, - {4086,4408,4406 ,730,730,730 ,0,0,0}, {4089,4412,4411 ,730,730,730 ,0,0,0}, - {4091,4417,4414 ,730,730,730 ,0,0,0}, {4091,4092,4418 ,730,730,730 ,0,0,0}, - {4092,4095,4423 ,730,730,730 ,0,0,0}, {4097,4426,4424 ,730,730,730 ,0,0,0}, - {4097,4098,4429 ,730,730,730 ,0,0,0}, {4098,4110,4432 ,730,730,730 ,0,0,0}, - {4110,4376,4435 ,730,730,730 ,0,0,0}, {4432,4110,4435 ,730,730,730 ,0,0,0}, - {4376,4108,4105 ,730,730,730 ,0,0,0}, {4105,4101,4375 ,730,730,730 ,0,0,0}, - {4375,4376,4105 ,730,730,730 ,0,0,0}, {3927,3926,3949 ,730,730,730 ,0,0,0}, - {4104,4375,4101 ,730,730,730 ,0,0,0}, {3906,4116,4117 ,730,730,730 ,0,0,0}, - {3927,3949,3951 ,730,730,730 ,0,0,0}, {3952,4125,3932 ,730,730,730 ,0,0,0}, - {3951,3929,3927 ,730,730,730 ,0,0,0}, {3952,3932,3929 ,730,730,730 ,0,0,0}, - {4133,4720,4126 ,730,730,730 ,0,0,0}, {4129,4721,4121 ,730,730,730 ,0,0,0}, - {4722,4134,4723 ,730,730,730 ,0,0,0}, {4141,4724,4723 ,730,730,730 ,0,0,0}, - {3956,3918,3959 ,730,730,730 ,0,0,0}, {4725,4140,4726 ,730,730,730 ,0,0,0}, - {3920,3918,3956 ,730,730,730 ,0,0,0}, {4369,4144,4147 ,730,730,730 ,0,0,0}, - {4370,4143,4144 ,730,730,730 ,0,0,0}, {3909,4116,3907 ,730,730,730 ,0,0,0}, - {4117,3903,3906 ,730,730,730 ,0,0,0}, {3909,3916,4114 ,730,730,730 ,0,0,0}, - {4137,4143,4370 ,730,730,730 ,0,0,0}, {4137,4370,4373 ,730,730,730 ,0,0,0}, - {4144,4369,4370 ,730,730,730 ,0,0,0}, {4149,4369,4147 ,730,730,730 ,0,0,0}, - {4150,4367,4149 ,730,730,730 ,0,0,0}, {4364,4367,4185 ,730,730,730 ,0,0,0}, - {4182,4364,4185 ,730,730,730 ,0,0,0}, {4180,4363,4182 ,730,730,730 ,0,0,0}, - {4229,4618,4231 ,730,730,730 ,0,0,0}, {4621,4231,4620 ,730,730,730 ,0,0,0}, - {4164,4346,4167 ,730,730,730 ,0,0,0}, {4624,4232,4621 ,730,730,730 ,0,0,0}, - {4624,4235,4232 ,730,730,730 ,0,0,0}, {4626,4236,4235 ,730,730,730 ,0,0,0}, - {4618,4229,4615 ,730,730,730 ,0,0,0}, {4627,4242,4236 ,730,730,730 ,0,0,0}, - {4620,4231,4618 ,730,730,730 ,0,0,0}, {4154,4301,4155 ,730,730,730 ,0,0,0}, - {4238,4242,4630 ,730,730,730 ,0,0,0}, {4232,4231,4621 ,730,730,730 ,0,0,0}, - {4239,4238,4632 ,730,730,730 ,0,0,0}, {4624,4626,4235 ,730,730,730 ,0,0,0}, - {4245,4239,4633 ,730,730,730 ,0,0,0}, {4193,4312,4311 ,730,730,730 ,0,0,0}, - {4191,4311,4309 ,730,730,730 ,0,0,0}, {4242,4627,4630 ,730,730,730 ,0,0,0}, - {4246,4245,4636 ,730,730,730 ,0,0,0}, {4246,4636,4638 ,730,730,730 ,0,0,0}, - {4630,4632,4238 ,730,730,730 ,0,0,0}, {4199,4319,4316 ,730,730,730 ,0,0,0}, - {4239,4632,4633 ,730,730,730 ,0,0,0}, {4638,4639,4249 ,730,730,730 ,0,0,0}, - {4642,4255,4639 ,730,730,730 ,0,0,0}, {4633,4636,4245 ,730,730,730 ,0,0,0}, - {4249,4246,4638 ,730,730,730 ,0,0,0}, {4644,4253,4642 ,730,730,730 ,0,0,0}, - {4203,4205,4326 ,730,730,730 ,0,0,0}, {4645,4251,4644 ,730,730,730 ,0,0,0}, - {4255,4249,4639 ,730,730,730 ,0,0,0}, {4209,4211,4330 ,730,730,730 ,0,0,0}, - {4642,4253,4255 ,730,730,730 ,0,0,0}, {4645,4648,4256 ,730,730,730 ,0,0,0}, - {4212,4215,4332 ,730,730,730 ,0,0,0}, {4644,4251,4253 ,730,730,730 ,0,0,0}, - {4258,4256,4648 ,730,730,730 ,0,0,0}, {4258,4650,4221 ,730,730,730 ,0,0,0}, - {4333,4217,4336 ,730,730,730 ,0,0,0}, {4258,4648,4650 ,730,730,730 ,0,0,0}, - {4300,4220,4221 ,730,730,730 ,0,0,0}, {4338,4220,4300 ,730,730,730 ,0,0,0}, - {4650,4298,4221 ,730,730,730 ,0,0,0}, {4300,4221,4298 ,730,730,730 ,0,0,0}, - {4645,4256,4251 ,730,730,730 ,0,0,0}, {4261,4263,4580 ,730,730,730 ,0,0,0}, - {4595,4276,4596 ,730,730,730 ,0,0,0}, {4608,4288,4291 ,730,730,730 ,0,0,0}, - {4570,4294,4000 ,730,730,730 ,0,0,0}, {4574,4613,4294 ,730,730,730 ,0,0,0}, - {3921,3953,3923 ,730,730,730 ,0,0,0}, {4727,4129,4131 ,730,730,730 ,0,0,0}, - {4133,4722,4720 ,730,730,730 ,0,0,0}, {3923,3946,3926 ,730,730,730 ,0,0,0}, - {3923,3953,3945 ,730,730,730 ,0,0,0}, {3921,3954,3953 ,730,730,730 ,0,0,0}, - {3920,3956,3954 ,730,730,730 ,0,0,0}, {4135,4137,4728 ,730,730,730 ,0,0,0}, - {3899,3905,3959 ,730,730,730 ,0,0,0}, {3899,3959,3918 ,730,730,730 ,0,0,0}, - {4117,3905,3903 ,730,730,730 ,0,0,0}, {3905,4117,3959 ,730,730,730 ,0,0,0}, - {3912,4137,4373 ,730,730,730 ,0,0,0}, {3909,4114,4116 ,730,730,730 ,0,0,0}, - {3906,3907,4116 ,730,730,730 ,0,0,0}, {3913,4114,3916 ,730,730,730 ,0,0,0}, - {4373,3913,3912 ,730,730,730 ,0,0,0}, {4111,3913,4373 ,730,730,730 ,0,0,0}, - {3913,4111,4114 ,730,730,730 ,0,0,0}, {3912,4728,4137 ,730,730,730 ,0,0,0}, - {4135,4726,4140 ,730,730,730 ,0,0,0}, {4728,4726,4135 ,730,730,730 ,0,0,0}, - {4140,4708,4141 ,730,730,730 ,0,0,0}, {4725,4708,4140 ,730,730,730 ,0,0,0}, - {4709,4724,4141 ,730,730,730 ,0,0,0}, {4723,4134,4141 ,730,730,730 ,0,0,0}, - {4722,4133,4134 ,730,730,730 ,0,0,0}, {4729,4126,4720 ,730,730,730 ,0,0,0}, - {4131,4729,4727 ,730,730,730 ,0,0,0}, {4729,4131,4126 ,730,730,730 ,0,0,0}, - {4727,4730,4129 ,730,730,730 ,0,0,0}, {4721,4711,4121 ,730,730,730 ,0,0,0}, - {4730,4721,4129 ,730,730,730 ,0,0,0}, {4124,4710,4125 ,730,730,730 ,0,0,0}, - {4121,4711,4124 ,730,730,730 ,0,0,0}, {3932,4125,4710 ,730,730,730 ,0,0,0}, - {3936,3938,3871 ,730,730,730 ,0,0,0}, {4468,4471,3893 ,730,730,730 ,0,0,0}, - {4055,4052,4731 ,730,730,730 ,0,0,0}, {3887,4462,4465 ,730,730,730 ,0,0,0}, - {4465,3889,3887 ,730,730,730 ,0,0,0}, {4461,4462,3886 ,730,730,730 ,0,0,0}, - {4461,3884,4459 ,730,730,730 ,0,0,0}, {3884,4461,3886 ,730,730,730 ,0,0,0}, - {4456,3865,4455 ,730,730,730 ,0,0,0}, {3865,3871,3938 ,730,730,730 ,0,0,0}, - {3871,3869,3936 ,730,730,730 ,0,0,0}, {3869,3872,3933 ,730,730,730 ,0,0,0}, - {3873,3940,3933 ,730,730,730 ,0,0,0}, {3882,3940,3875 ,730,730,730 ,0,0,0}, - {3879,3942,3882 ,730,730,730 ,0,0,0}, {3878,4067,3879 ,730,730,730 ,0,0,0}, - {4704,4065,3878 ,730,730,730 ,0,0,0}, {4697,4062,4704 ,730,730,730 ,0,0,0}, - {4706,4061,4697 ,730,730,730 ,0,0,0}, {4045,4060,4695 ,730,730,730 ,0,0,0}, - {4705,4046,4695 ,730,730,730 ,0,0,0}, {4707,4050,4705 ,730,730,730 ,0,0,0}, - {4731,4052,4707 ,730,730,730 ,0,0,0}, {4732,4057,4703 ,730,730,730 ,0,0,0}, - {4703,4055,4731 ,730,730,730 ,0,0,0}, {4056,4732,4718 ,730,730,730 ,0,0,0}, - {4732,4056,4057 ,730,730,730 ,0,0,0}, {4716,4701,4717 ,730,730,730 ,0,0,0}, - {4056,4718,4717 ,730,730,730 ,0,0,0}, {4700,4702,4713 ,730,730,730 ,0,0,0}, - {4717,4701,4700 ,730,730,730 ,0,0,0}, {4713,4715,4712 ,730,730,730 ,0,0,0}, - {4713,4702,4714 ,730,730,730 ,0,0,0}, {3898,4712,4715 ,730,730,730 ,0,0,0}, - {4712,4699,4662 ,4036,4037,4038 ,0,0,0}, {4713,4655,4659 ,4039,4040,4041 ,0,0,0}, - {4655,4712,4662 ,4040,4036,4038 ,0,0,0}, {4712,4655,4713 ,4036,4040,4039 ,0,0,0}, - {4717,4684,4667 ,4042,4043,4044 ,0,0,0}, {4713,4659,4700 ,4039,4041,4045 ,0,0,0}, - {4717,4700,4684 ,4042,4045,4043 ,0,0,0}, {4667,4058,4056 ,4044,3474,3474 ,0,0,0}, - {4667,4056,4717 ,4044,3474,4042 ,0,0,0}, {4684,4700,4659 ,4043,4045,4041 ,0,0,0}, - {4699,4651,4662 ,4037,4046,4038 ,0,0,0}, {4663,4651,4698 ,4047,4046,4048 ,0,0,0}, - {4699,4698,4651 ,4037,4048,4046 ,0,0,0}, {4694,4664,4663 ,4049,4050,4047 ,0,0,0}, - {4663,4698,4694 ,4047,4048,4049 ,0,0,0}, {4664,4693,4044 ,4050,4051,3464 ,0,0,0}, - {4693,4664,4694 ,4051,4050,4049 ,0,0,0}, {4693,4043,4044 ,4051,3464,3464 ,0,0,0}, - {3939,4656,4719 ,3377,4052,4052 ,0,0,0}, {4652,4085,4696 ,4053,3500,4054 ,0,0,0}, - {4696,4692,4653 ,4054,4055,4055 ,0,0,0}, {4083,4085,4652 ,3500,3500,4053 ,0,0,0}, - {4656,4692,4719 ,4052,4055,4052 ,0,0,0}, {4692,4656,4653 ,4055,4052,4055 ,0,0,0}, - {4652,4696,4653 ,4053,4054,4055 ,0,0,0}, {4719,3938,3939 ,4052,3377,3377 ,0,0,0}, - {3917,4682,4728 ,2601,53,2600 ,0,0,0}, {4680,4708,4681 ,2596,2595,2597 ,0,0,0}, - {4725,4726,4674 ,2598,2599,139 ,0,0,0}, {4723,4690,4722 ,2590,2573,324 ,0,0,0}, - {4679,4678,4724 ,2594,2591,2592 ,0,0,0}, {4676,4727,4729 ,2575,2579,2576 ,0,0,0}, - {4675,4720,4677 ,2577,2578,2574 ,0,0,0}, {4669,4721,4730 ,2581,2582,2580 ,0,0,0}, - {4730,4727,4671 ,2580,2579,2584 ,0,0,0}, {4721,4670,4711 ,2582,2583,2588 ,0,0,0}, - {4670,4721,4669 ,2583,2582,2581 ,0,0,0}, {4710,4711,4673 ,2585,2588,2587 ,0,0,0}, - {4670,4673,4711 ,2583,2587,2588 ,0,0,0}, {4672,3932,4710 ,2586,126,2585 ,0,0,0}, - {4710,4673,4672 ,2585,2587,2586 ,0,0,0}, {3931,3932,4672 ,2589,126,2586 ,0,0,0}, - {4675,4676,4729 ,2577,2575,2576 ,0,0,0}, {4727,4676,4671 ,2579,2575,2584 ,0,0,0}, - {4669,4730,4671 ,2581,2580,2584 ,0,0,0}, {4675,4729,4720 ,2577,2576,2578 ,0,0,0}, - {4677,4720,4722 ,2574,2578,324 ,0,0,0}, {4690,4723,4678 ,2573,2590,2591 ,0,0,0}, - {4690,4677,4722 ,2573,2574,324 ,0,0,0}, {4679,4724,4709 ,2594,2592,2593 ,0,0,0}, - {4724,4678,4723 ,2592,2591,2590 ,0,0,0}, {4709,4708,4680 ,2593,2595,2596 ,0,0,0}, - {4709,4680,4679 ,2593,2596,2594 ,0,0,0}, {4674,4681,4725 ,139,2597,2598 ,0,0,0}, - {4708,4725,4681 ,2595,2598,2597 ,0,0,0}, {4726,4682,4674 ,2599,53,139 ,0,0,0}, - {3917,4728,3912 ,2601,2600,2602 ,0,0,0}, {4682,4726,4728 ,53,2599,2600 ,0,0,0}, - {3883,4691,4704 ,2630,2629,2628 ,0,0,0}, {4661,4695,4665 ,2626,2625,2627 ,0,0,0}, - {4706,4697,4689 ,2598,111,139 ,0,0,0}, {4731,4685,4703 ,2620,2603,324 ,0,0,0}, - {4660,4687,4707 ,2624,2621,2622 ,0,0,0}, {4688,4716,4718 ,2604,2608,2605 ,0,0,0}, - {4657,4732,4686 ,2606,2607,324 ,0,0,0}, {4668,4702,4701 ,2610,2611,2609 ,0,0,0}, - {4701,4716,4666 ,2609,2608,2613 ,0,0,0}, {4702,4683,4714 ,2611,2612,2618 ,0,0,0}, - {4683,4702,4668 ,2612,2611,2610 ,0,0,0}, {4715,4714,4658 ,2615,2618,2617 ,0,0,0}, - {4683,4658,4714 ,2612,2617,2618 ,0,0,0}, {4654,3898,4715 ,2616,2614,2615 ,0,0,0}, - {4715,4658,4654 ,2615,2617,2616 ,0,0,0}, {3897,3898,4654 ,2619,2614,2616 ,0,0,0}, - {4657,4688,4718 ,2606,2604,2605 ,0,0,0}, {4716,4688,4666 ,2608,2604,2613 ,0,0,0}, - {4668,4701,4666 ,2610,2609,2613 ,0,0,0}, {4657,4718,4732 ,2606,2605,2607 ,0,0,0}, - {4686,4732,4703 ,324,2607,324 ,0,0,0}, {4685,4731,4687 ,2603,2620,2621 ,0,0,0}, - {4685,4686,4703 ,2603,324,324 ,0,0,0}, {4660,4707,4705 ,2624,2622,2623 ,0,0,0}, - {4707,4687,4731 ,2622,2621,2620 ,0,0,0}, {4705,4695,4661 ,2623,2625,2626 ,0,0,0}, - {4705,4661,4660 ,2623,2626,2624 ,0,0,0}, {4689,4665,4706 ,139,2627,2598 ,0,0,0}, - {4695,4706,4665 ,2625,2598,2627 ,0,0,0}, {4697,4691,4689 ,111,2629,139 ,0,0,0}, - {3883,4704,3878 ,2630,2628,82 ,0,0,0}, {4691,4697,4704 ,2629,111,2628 ,0,0,0} -// MotorHacker.prt - , {4733,4734,4735 ,4056,4057,4058 ,0,0,0}, {4736,4737,4735 ,4059,4060,4058 ,0,0,0}, - {4733,4735,4737 ,4056,4058,4060 ,0,0,0}, {4738,4736,4739 ,4061,4059,4062 ,0,0,0}, - {4738,4737,4736 ,4061,4060,4059 ,0,0,0}, {4740,4739,4741 ,4063,4062,4064 ,0,0,0}, - {4736,4741,4739 ,4059,4064,4062 ,0,0,0}, {4742,4743,4740 ,4065,4066,4063 ,0,0,0}, - {4740,4741,4742 ,4063,4064,4065 ,0,0,0}, {4743,4744,4745 ,4066,4067,4068 ,0,0,0}, - {4744,4743,4742 ,4067,4066,4065 ,0,0,0}, {4746,4745,4747 ,4069,4068,4070 ,0,0,0}, - {4744,4747,4745 ,4067,4070,4068 ,0,0,0}, {4748,4749,4746 ,4071,4072,4069 ,0,0,0}, - {4746,4747,4748 ,4069,4070,4071 ,0,0,0}, {4750,4751,4749 ,4073,81,4072 ,0,0,0}, - {4750,4749,4748 ,4073,4072,4071 ,0,0,0}, {4751,4752,4749 ,81,81,4072 ,0,0,0}, - {4753,4734,4733 ,4074,4057,4056 ,0,0,0}, {4753,4754,4755 ,4074,4075,4076 ,0,0,0}, - {4755,4734,4753 ,4076,4057,4074 ,0,0,0}, {4756,4757,4754 ,4077,4078,4075 ,0,0,0}, - {4754,4757,4755 ,4075,4078,4076 ,0,0,0}, {4758,4759,4756 ,4079,4080,4077 ,0,0,0}, - {4756,4754,4758 ,4077,4075,4079 ,0,0,0}, {4759,4760,4761 ,4080,4081,4082 ,0,0,0}, - {4760,4759,4758 ,4081,4080,4079 ,0,0,0}, {4762,4761,4763 ,4083,4082,4084 ,0,0,0}, - {4760,4763,4761 ,4081,4084,4082 ,0,0,0}, {4764,4765,4762 ,4085,4086,4083 ,0,0,0}, - {4762,4763,4764 ,4083,4084,4085 ,0,0,0}, {4765,4766,4767 ,4086,4087,4088 ,0,0,0}, - {4766,4765,4764 ,4087,4086,4085 ,0,0,0}, {4767,4768,4769 ,4088,4089,4090 ,0,0,0}, - {4766,4768,4767 ,4087,4089,4088 ,0,0,0}, {4767,4769,4770 ,4088,4090,4091 ,0,0,0}, - {4771,4772,4773 ,2394,2394,4092 ,0,0,0}, {4774,4775,4773 ,4093,4094,4092 ,0,0,0}, - {4771,4773,4775 ,2394,4092,4094 ,0,0,0}, {4774,4776,4777 ,4093,4095,4096 ,0,0,0}, - {4777,4775,4774 ,4096,4094,4093 ,0,0,0}, {4778,4776,4779 ,4097,4095,4098 ,0,0,0}, - {4776,4778,4777 ,4095,4097,4096 ,0,0,0}, {4780,4781,4779 ,4099,4100,4098 ,0,0,0}, - {4778,4779,4781 ,4097,4098,4100 ,0,0,0}, {4780,4782,4783 ,4099,4101,4102 ,0,0,0}, - {4783,4781,4780 ,4102,4100,4099 ,0,0,0}, {4784,4782,4785 ,4103,4101,4104 ,0,0,0}, - {4782,4784,4783 ,4101,4103,4102 ,0,0,0}, {4786,4787,4785 ,4105,4106,4104 ,0,0,0}, - {4784,4785,4787 ,4103,4104,4106 ,0,0,0}, {4786,4788,4789 ,4105,4107,4108 ,0,0,0}, - {4789,4787,4786 ,4108,4106,4105 ,0,0,0}, {4790,4791,4788 ,4109,4110,4107 ,0,0,0}, - {4788,4791,4789 ,4107,4110,4108 ,0,0,0}, {4792,4793,4790 ,4111,4112,4109 ,0,0,0}, - {4790,4788,4792 ,4109,4107,4111 ,0,0,0}, {4793,4794,4795 ,4112,4113,4114 ,0,0,0}, - {4794,4793,4792 ,4113,4112,4111 ,0,0,0}, {4794,4796,4795 ,4113,4114,4114 ,0,0,0}, - {4797,4772,4771 ,4115,2394,2394 ,0,0,0}, {4797,4798,4799 ,4115,4116,4117 ,0,0,0}, - {4799,4772,4797 ,4117,2394,4115 ,0,0,0}, {4800,4798,4801 ,4118,4116,4119 ,0,0,0}, - {4798,4800,4799 ,4116,4118,4117 ,0,0,0}, {4802,4803,4801 ,4120,4121,4119 ,0,0,0}, - {4800,4801,4803 ,4118,4119,4121 ,0,0,0}, {4802,4804,4805 ,4120,4122,4123 ,0,0,0}, - {4805,4803,4802 ,4123,4121,4120 ,0,0,0}, {4806,4804,4807 ,4124,4122,4125 ,0,0,0}, - {4804,4806,4805 ,4122,4124,4123 ,0,0,0}, {4808,4809,4807 ,4126,4127,4125 ,0,0,0}, - {4806,4807,4809 ,4124,4125,4127 ,0,0,0}, {4808,4810,4811 ,4126,4128,4129 ,0,0,0}, - {4811,4809,4808 ,4129,4127,4126 ,0,0,0}, {4812,4810,4813 ,4130,4128,4131 ,0,0,0}, - {4810,4812,4811 ,4128,4130,4129 ,0,0,0}, {4813,4814,4815 ,4131,4132,4133 ,0,0,0}, - {4812,4813,4815 ,4130,4131,4133 ,0,0,0}, {4814,4816,4817 ,4132,4134,4135 ,0,0,0}, - {4816,4814,4813 ,4134,4132,4131 ,0,0,0}, {4818,4817,4819 ,126,4135,4136 ,0,0,0}, - {4816,4819,4817 ,4134,4136,4135 ,0,0,0}, {4818,4819,4820 ,126,4136,126 ,0,0,0}, - {4821,4822,4823 ,4137,4138,4139 ,0,0,0}, {4821,4824,4825 ,4137,4140,4141 ,0,0,0}, - {4824,4826,4825 ,4140,4142,4141 ,0,0,0}, {4823,4824,4821 ,4139,4140,4137 ,0,0,0}, - {4827,4828,4829 ,4143,4144,4145 ,0,0,0}, {4826,4827,4829 ,4142,4143,4145 ,0,0,0}, - {4828,4830,4831 ,4144,4146,4147 ,0,0,0}, {4830,4828,4827 ,4146,4144,4143 ,0,0,0}, - {4831,4830,4832 ,4147,4146,4148 ,0,0,0}, {4833,4831,4832 ,4149,4147,4148 ,0,0,0}, - {4833,4834,4835 ,4149,4150,4151 ,0,0,0}, {4833,4832,4834 ,4149,4148,4150 ,0,0,0}, - {4829,4825,4826 ,4145,4141,4142 ,0,0,0}, {4836,4837,4838 ,4152,1711,1711 ,0,0,0}, - {4836,4838,4835 ,4152,1711,4151 ,0,0,0}, {4834,4836,4835 ,4150,4152,4151 ,0,0,0}, - {4823,4822,4839 ,4139,4138,4153 ,0,0,0}, {4840,4839,4841 ,4154,4153,4155 ,0,0,0}, - {4822,4841,4839 ,4138,4155,4153 ,0,0,0}, {4842,4843,4840 ,4156,4157,4154 ,0,0,0}, - {4840,4841,4842 ,4154,4155,4156 ,0,0,0}, {4843,4844,4845 ,4157,4158,4159 ,0,0,0}, - {4844,4843,4842 ,4158,4157,4156 ,0,0,0}, {4846,4845,4847 ,4160,4159,4161 ,0,0,0}, - {4844,4847,4845 ,4158,4161,4159 ,0,0,0}, {4848,4849,4846 ,4162,4163,4160 ,0,0,0}, - {4846,4847,4848 ,4160,4161,4162 ,0,0,0}, {4849,4850,4851 ,4163,4164,1790 ,0,0,0}, - {4850,4849,4848 ,4164,4163,4162 ,0,0,0}, {4850,4852,4851 ,4164,1790,1790 ,0,0,0}, - {4853,4854,4855 ,4165,4166,4167 ,0,0,0}, {4856,4857,4858 ,4168,4169,4170 ,0,0,0}, - {4857,4853,4855 ,4169,4165,4167 ,0,0,0}, {4859,4856,4858 ,4171,4168,4170 ,0,0,0}, - {4857,4856,4853 ,4169,4168,4165 ,0,0,0}, {4859,4858,4860 ,4171,4170,4172 ,0,0,0}, - {4860,4861,4862 ,4172,4173,4174 ,0,0,0}, {4863,4862,4861 ,4175,4174,4173 ,0,0,0}, - {4864,4865,4866 ,4176,4177,4178 ,0,0,0}, {4861,4867,4863 ,4173,4179,4175 ,0,0,0}, - {4866,4868,4869 ,4178,4180,4181 ,0,0,0}, {4868,4867,4869 ,4180,4179,4181 ,0,0,0}, - {4863,4867,4868 ,4175,4179,4180 ,0,0,0}, {4866,4869,4864 ,4178,4181,4176 ,0,0,0}, - {4865,4864,4870 ,4177,4176,4182 ,0,0,0}, {4865,4870,4871 ,4177,4182,4183 ,0,0,0}, - {4872,4871,4870 ,4184,4183,4182 ,0,0,0}, {4873,4874,4875 ,4185,1711,4186 ,0,0,0}, - {4875,4871,4872 ,4186,4183,4184 ,0,0,0}, {4873,4875,4872 ,4185,4186,4184 ,0,0,0}, - {4873,4876,4874 ,4185,1711,1711 ,0,0,0}, {4859,4860,4862 ,4171,4172,4174 ,0,0,0}, - {4855,4854,4877 ,4167,4166,4187 ,0,0,0}, {4878,4877,4879 ,4188,4187,4189 ,0,0,0}, - {4854,4879,4877 ,4166,4189,4187 ,0,0,0}, {4880,4881,4878 ,4190,4191,4188 ,0,0,0}, - {4878,4879,4880 ,4188,4189,4190 ,0,0,0}, {4881,4882,4883 ,4191,4192,4193 ,0,0,0}, - {4882,4881,4880 ,4192,4191,4190 ,0,0,0}, {4884,4883,4885 ,4194,4193,4195 ,0,0,0}, - {4882,4885,4883 ,4192,4195,4193 ,0,0,0}, {4886,4887,4884 ,4196,4197,4194 ,0,0,0}, - {4884,4885,4886 ,4194,4195,4196 ,0,0,0}, {4887,4888,4889 ,4197,4198,4199 ,0,0,0}, - {4888,4887,4886 ,4198,4197,4196 ,0,0,0}, {4890,4889,4891 ,4200,4199,4201 ,0,0,0}, - {4888,4891,4889 ,4198,4201,4199 ,0,0,0}, {4892,4893,4890 ,4202,4203,4200 ,0,0,0}, - {4890,4891,4892 ,4200,4201,4202 ,0,0,0}, {4893,4894,4895 ,4203,4204,1790 ,0,0,0}, - {4894,4893,4892 ,4204,4203,4202 ,0,0,0}, {4894,4896,4895 ,4204,1790,1790 ,0,0,0}, - {4897,4898,4899 ,4205,4206,4207 ,0,0,0}, {4897,4900,4901 ,4205,4208,4209 ,0,0,0}, - {4900,4902,4901 ,4208,4210,4209 ,0,0,0}, {4899,4900,4897 ,4207,4208,4205 ,0,0,0}, - {4903,4904,4905 ,4211,4212,4213 ,0,0,0}, {4902,4903,4905 ,4210,4211,4213 ,0,0,0}, - {4904,4906,4907 ,4212,4214,4215 ,0,0,0}, {4906,4904,4903 ,4214,4212,4211 ,0,0,0}, - {4907,4906,4908 ,4215,4214,4216 ,0,0,0}, {4909,4907,4908 ,4217,4215,4216 ,0,0,0}, - {4909,4910,4911 ,4217,4218,4219 ,0,0,0}, {4909,4908,4910 ,4217,4216,4218 ,0,0,0}, - {4905,4901,4902 ,4213,4209,4210 ,0,0,0}, {4912,4913,4914 ,4220,1359,1359 ,0,0,0}, - {4912,4914,4911 ,4220,1359,4219 ,0,0,0}, {4910,4912,4911 ,4218,4220,4219 ,0,0,0}, - {4899,4898,4915 ,4207,4206,4221 ,0,0,0}, {4916,4915,4917 ,4222,4221,4223 ,0,0,0}, - {4898,4917,4915 ,4206,4223,4221 ,0,0,0}, {4918,4919,4916 ,4224,4225,4222 ,0,0,0}, - {4916,4917,4918 ,4222,4223,4224 ,0,0,0}, {4919,4920,4921 ,4225,4226,4227 ,0,0,0}, - {4920,4919,4918 ,4226,4225,4224 ,0,0,0}, {4922,4921,4923 ,4228,4227,4229 ,0,0,0}, - {4920,4923,4921 ,4226,4229,4227 ,0,0,0}, {4924,4925,4922 ,4230,4231,4228 ,0,0,0}, - {4922,4923,4924 ,4228,4229,4230 ,0,0,0}, {4925,4926,4927 ,4231,4232,1435 ,0,0,0}, - {4926,4925,4924 ,4232,4231,4230 ,0,0,0}, {4926,4928,4927 ,4232,1435,1435 ,0,0,0}, - {4929,4930,4931 ,4233,4234,4235 ,0,0,0}, {4932,4933,4934 ,4236,4237,4238 ,0,0,0}, - {4933,4929,4931 ,4237,4233,4235 ,0,0,0}, {4935,4932,4934 ,4239,4236,4238 ,0,0,0}, - {4933,4932,4929 ,4237,4236,4233 ,0,0,0}, {4935,4934,4936 ,4239,4238,4240 ,0,0,0}, - {4936,4937,4938 ,4240,4241,4242 ,0,0,0}, {4939,4938,4937 ,4243,4242,4241 ,0,0,0}, - {4940,4941,4942 ,4244,4245,4246 ,0,0,0}, {4937,4943,4939 ,4241,4247,4243 ,0,0,0}, - {4942,4944,4945 ,4246,4248,4249 ,0,0,0}, {4944,4943,4945 ,4248,4247,4249 ,0,0,0}, - {4939,4943,4944 ,4243,4247,4248 ,0,0,0}, {4942,4945,4940 ,4246,4249,4244 ,0,0,0}, - {4941,4940,4946 ,4245,4244,4250 ,0,0,0}, {4941,4946,4947 ,4245,4250,4251 ,0,0,0}, - {4948,4947,4946 ,4252,4251,4250 ,0,0,0}, {4949,4950,4951 ,4253,1359,4254 ,0,0,0}, - {4951,4947,4948 ,4254,4251,4252 ,0,0,0}, {4949,4951,4948 ,4253,4254,4252 ,0,0,0}, - {4949,4952,4950 ,4253,1359,1359 ,0,0,0}, {4935,4936,4938 ,4239,4240,4242 ,0,0,0}, - {4931,4930,4953 ,4235,4234,4255 ,0,0,0}, {4954,4953,4955 ,4256,4255,4257 ,0,0,0}, - {4930,4955,4953 ,4234,4257,4255 ,0,0,0}, {4956,4957,4954 ,4258,4259,4256 ,0,0,0}, - {4954,4955,4956 ,4256,4257,4258 ,0,0,0}, {4957,4958,4959 ,4259,4260,4261 ,0,0,0}, - {4958,4957,4956 ,4260,4259,4258 ,0,0,0}, {4960,4959,4961 ,4262,4261,4263 ,0,0,0}, - {4958,4961,4959 ,4260,4263,4261 ,0,0,0}, {4962,4963,4960 ,4264,4265,4262 ,0,0,0}, - {4960,4961,4962 ,4262,4263,4264 ,0,0,0}, {4963,4964,4965 ,4265,4266,4267 ,0,0,0}, - {4964,4963,4962 ,4266,4265,4264 ,0,0,0}, {4966,4965,4967 ,4268,4267,4269 ,0,0,0}, - {4964,4967,4965 ,4266,4269,4267 ,0,0,0}, {4968,4969,4966 ,4270,4271,4268 ,0,0,0}, - {4966,4967,4968 ,4268,4269,4270 ,0,0,0}, {4969,4970,4971 ,4271,4272,1435 ,0,0,0}, - {4970,4969,4968 ,4272,4271,4270 ,0,0,0}, {4970,4972,4971 ,4272,1435,1435 ,0,0,0}, - {4973,4974,4975 ,4273,4274,4275 ,0,0,0}, {4973,4976,4977 ,4273,4276,4277 ,0,0,0}, - {4976,4978,4977 ,4276,4278,4277 ,0,0,0}, {4975,4976,4973 ,4275,4276,4273 ,0,0,0}, - {4979,4980,4981 ,4279,4280,4281 ,0,0,0}, {4978,4979,4981 ,4278,4279,4281 ,0,0,0}, - {4980,4982,4983 ,4280,4282,4283 ,0,0,0}, {4982,4980,4979 ,4282,4280,4279 ,0,0,0}, - {4983,4982,4984 ,4283,4282,4284 ,0,0,0}, {4985,4983,4984 ,4285,4283,4284 ,0,0,0}, - {4985,4986,4987 ,4285,4286,4287 ,0,0,0}, {4985,4984,4986 ,4285,4284,4286 ,0,0,0}, - {4981,4977,4978 ,4281,4277,4278 ,0,0,0}, {4988,4989,4990 ,4288,126,4289 ,0,0,0}, - {4988,4990,4987 ,4288,4289,4287 ,0,0,0}, {4986,4988,4987 ,4286,4288,4287 ,0,0,0}, - {4975,4974,4991 ,4275,4274,4290 ,0,0,0}, {4992,4991,4993 ,4291,4290,4292 ,0,0,0}, - {4974,4993,4991 ,4274,4292,4290 ,0,0,0}, {4994,4995,4992 ,4293,4294,4291 ,0,0,0}, - {4992,4993,4994 ,4291,4292,4293 ,0,0,0}, {4995,4996,4997 ,4294,4295,4296 ,0,0,0}, - {4996,4995,4994 ,4295,4294,4293 ,0,0,0}, {4998,4997,4999 ,4297,4296,4298 ,0,0,0}, - {4996,4999,4997 ,4295,4298,4296 ,0,0,0}, {5000,5001,4998 ,4299,4300,4297 ,0,0,0}, - {4998,4999,5000 ,4297,4298,4299 ,0,0,0}, {5001,5002,5003 ,4300,4301,4302 ,0,0,0}, - {5002,5001,5000 ,4301,4300,4299 ,0,0,0}, {5002,5004,5003 ,4301,4303,4302 ,0,0,0}, - {5005,5006,5007 ,4304,4305,4306 ,0,0,0}, {5008,5009,5010 ,4307,4308,4309 ,0,0,0}, - {5009,5005,5007 ,4308,4304,4306 ,0,0,0}, {5011,5008,5010 ,4310,4307,4309 ,0,0,0}, - {5009,5008,5005 ,4308,4307,4304 ,0,0,0}, {5011,5010,5012 ,4310,4309,4311 ,0,0,0}, - {5012,5013,5014 ,4311,4312,4313 ,0,0,0}, {5015,5014,5013 ,4314,4313,4312 ,0,0,0}, - {5016,5017,5018 ,4315,4316,4317 ,0,0,0}, {5013,5019,5015 ,4312,4318,4314 ,0,0,0}, - {5018,5020,5021 ,4317,4319,4320 ,0,0,0}, {5020,5019,5021 ,4319,4318,4320 ,0,0,0}, - {5015,5019,5020 ,4314,4318,4319 ,0,0,0}, {5018,5021,5016 ,4317,4320,4315 ,0,0,0}, - {5017,5016,5022 ,4316,4315,4321 ,0,0,0}, {5017,5022,5023 ,4316,4321,4322 ,0,0,0}, - {5024,5023,5022 ,4323,4322,4321 ,0,0,0}, {5025,5026,5027 ,4324,126,4325 ,0,0,0}, - {5027,5023,5024 ,4325,4322,4323 ,0,0,0}, {5025,5027,5024 ,4324,4325,4323 ,0,0,0}, - {5025,5028,5026 ,4324,4326,126 ,0,0,0}, {5011,5012,5014 ,4310,4311,4313 ,0,0,0}, - {5007,5006,5029 ,4306,4305,4327 ,0,0,0}, {5030,5029,5031 ,4328,4327,4329 ,0,0,0}, - {5006,5031,5029 ,4305,4329,4327 ,0,0,0}, {5032,5033,5030 ,4330,4331,4328 ,0,0,0}, - {5030,5031,5032 ,4328,4329,4330 ,0,0,0}, {5033,5034,5035 ,4331,4332,4333 ,0,0,0}, - {5034,5033,5032 ,4332,4331,4330 ,0,0,0}, {5036,5035,5037 ,4334,4333,4335 ,0,0,0}, - {5034,5037,5035 ,4332,4335,4333 ,0,0,0}, {5038,5039,5036 ,4336,4337,4334 ,0,0,0}, - {5036,5037,5038 ,4334,4335,4336 ,0,0,0}, {5039,5040,5041 ,4337,4338,4339 ,0,0,0}, - {5040,5039,5038 ,4338,4337,4336 ,0,0,0}, {5042,5041,5043 ,4340,4339,4341 ,0,0,0}, - {5040,5043,5041 ,4338,4341,4339 ,0,0,0}, {5044,5045,5042 ,4342,4343,4340 ,0,0,0}, - {5042,5043,5044 ,4340,4341,4342 ,0,0,0}, {5045,5046,5047 ,4343,4344,4345 ,0,0,0}, - {5046,5045,5044 ,4344,4343,4342 ,0,0,0}, {5046,5048,5047 ,4344,4346,4345 ,0,0,0}, - {5049,5050,5051 ,4347,4348,4349 ,0,0,0}, {5049,5052,5053 ,4347,4350,4351 ,0,0,0}, - {5052,5054,5053 ,4350,4352,4351 ,0,0,0}, {5051,5052,5049 ,4349,4350,4347 ,0,0,0}, - {5055,5056,5057 ,4353,4354,4355 ,0,0,0}, {5054,5055,5057 ,4352,4353,4355 ,0,0,0}, - {5056,5058,5059 ,4354,4356,4357 ,0,0,0}, {5058,5056,5055 ,4356,4354,4353 ,0,0,0}, - {5059,5058,5060 ,4357,4356,4358 ,0,0,0}, {5061,5059,5060 ,4359,4357,4358 ,0,0,0}, - {5061,5062,5063 ,4359,4360,4361 ,0,0,0}, {5061,5060,5062 ,4359,4358,4360 ,0,0,0}, - {5057,5053,5054 ,4355,4351,4352 ,0,0,0}, {5064,5065,5066 ,4362,1790,1790 ,0,0,0}, - {5064,5066,5063 ,4362,1790,4361 ,0,0,0}, {5062,5064,5063 ,4360,4362,4361 ,0,0,0}, - {5051,5050,5067 ,4349,4348,4363 ,0,0,0}, {5068,5067,5069 ,4364,4363,4365 ,0,0,0}, - {5050,5069,5067 ,4348,4365,4363 ,0,0,0}, {5070,5071,5068 ,4366,4367,4364 ,0,0,0}, - {5068,5069,5070 ,4364,4365,4366 ,0,0,0}, {5071,5072,5073 ,4367,4368,4369 ,0,0,0}, - {5072,5071,5070 ,4368,4367,4366 ,0,0,0}, {5074,5073,5075 ,4370,4369,4371 ,0,0,0}, - {5072,5075,5073 ,4368,4371,4369 ,0,0,0}, {5076,5077,5074 ,4372,4373,4370 ,0,0,0}, - {5074,5075,5076 ,4370,4371,4372 ,0,0,0}, {5077,5078,5079 ,4373,4374,1711 ,0,0,0}, - {5078,5077,5076 ,4374,4373,4372 ,0,0,0}, {5078,5080,5079 ,4374,1711,1711 ,0,0,0}, - {5081,5082,5083 ,4375,4376,4377 ,0,0,0}, {5084,5085,5086 ,4378,4379,4380 ,0,0,0}, - {5085,5081,5083 ,4379,4375,4377 ,0,0,0}, {5087,5084,5086 ,4381,4378,4380 ,0,0,0}, - {5085,5084,5081 ,4379,4378,4375 ,0,0,0}, {5087,5086,5088 ,4381,4380,4382 ,0,0,0}, - {5088,5089,5090 ,4382,4383,4384 ,0,0,0}, {5091,5090,5089 ,4385,4384,4383 ,0,0,0}, - {5092,5093,5094 ,4386,4387,4388 ,0,0,0}, {5089,5095,5091 ,4383,4389,4385 ,0,0,0}, - {5094,5096,5097 ,4388,4390,4391 ,0,0,0}, {5096,5095,5097 ,4390,4389,4391 ,0,0,0}, - {5091,5095,5096 ,4385,4389,4390 ,0,0,0}, {5094,5097,5092 ,4388,4391,4386 ,0,0,0}, - {5093,5092,5098 ,4387,4386,4392 ,0,0,0}, {5093,5098,5099 ,4387,4392,4393 ,0,0,0}, - {5100,5099,5098 ,4394,4393,4392 ,0,0,0}, {5101,5102,5103 ,4395,1790,4396 ,0,0,0}, - {5103,5099,5100 ,4396,4393,4394 ,0,0,0}, {5101,5103,5100 ,4395,4396,4394 ,0,0,0}, - {5101,5104,5102 ,4395,1790,1790 ,0,0,0}, {5087,5088,5090 ,4381,4382,4384 ,0,0,0}, - {5083,5082,5105 ,4377,4376,4397 ,0,0,0}, {5106,5105,5107 ,4398,4397,4399 ,0,0,0}, - {5082,5107,5105 ,4376,4399,4397 ,0,0,0}, {5108,5109,5106 ,4400,4401,4398 ,0,0,0}, - {5106,5107,5108 ,4398,4399,4400 ,0,0,0}, {5109,5110,5111 ,4401,4402,4403 ,0,0,0}, - {5110,5109,5108 ,4402,4401,4400 ,0,0,0}, {5112,5111,5113 ,4404,4403,4405 ,0,0,0}, - {5110,5113,5111 ,4402,4405,4403 ,0,0,0}, {5114,5115,5112 ,4406,4407,4404 ,0,0,0}, - {5112,5113,5114 ,4404,4405,4406 ,0,0,0}, {5115,5116,5117 ,4407,4408,4409 ,0,0,0}, - {5116,5115,5114 ,4408,4407,4406 ,0,0,0}, {5118,5117,5119 ,4410,4409,4411 ,0,0,0}, - {5116,5119,5117 ,4408,4411,4409 ,0,0,0}, {5120,5121,5118 ,4412,4413,4410 ,0,0,0}, - {5118,5119,5120 ,4410,4411,4412 ,0,0,0}, {5121,5122,5123 ,4413,4414,1711 ,0,0,0}, - {5122,5121,5120 ,4414,4413,4412 ,0,0,0}, {5122,5124,5123 ,4414,1711,1711 ,0,0,0}, - {5125,5126,5127 ,4415,4416,4417 ,0,0,0}, {5125,5128,5129 ,4415,4418,4419 ,0,0,0}, - {5128,5130,5129 ,4418,4420,4419 ,0,0,0}, {5127,5128,5125 ,4417,4418,4415 ,0,0,0}, - {5131,5132,5133 ,4421,4422,4423 ,0,0,0}, {5130,5131,5133 ,4420,4421,4423 ,0,0,0}, - {5132,5134,5135 ,4422,4424,4425 ,0,0,0}, {5134,5132,5131 ,4424,4422,4421 ,0,0,0}, - {5135,5134,5136 ,4425,4424,4426 ,0,0,0}, {5137,5135,5136 ,4427,4425,4426 ,0,0,0}, - {5137,5138,5139 ,4427,4428,4429 ,0,0,0}, {5137,5136,5138 ,4427,4426,4428 ,0,0,0}, - {5133,5129,5130 ,4423,4419,4420 ,0,0,0}, {5140,5141,5142 ,4430,1435,1435 ,0,0,0}, - {5140,5142,5139 ,4430,1435,4429 ,0,0,0}, {5138,5140,5139 ,4428,4430,4429 ,0,0,0}, - {5127,5126,5143 ,4417,4416,4431 ,0,0,0}, {5144,5143,5145 ,4432,4431,4433 ,0,0,0}, - {5126,5145,5143 ,4416,4433,4431 ,0,0,0}, {5146,5147,5144 ,4434,4435,4432 ,0,0,0}, - {5144,5145,5146 ,4432,4433,4434 ,0,0,0}, {5147,5148,5149 ,4435,4436,4437 ,0,0,0}, - {5148,5147,5146 ,4436,4435,4434 ,0,0,0}, {5150,5149,5151 ,4438,4437,4439 ,0,0,0}, - {5148,5151,5149 ,4436,4439,4437 ,0,0,0}, {5152,5153,5150 ,4440,4441,4438 ,0,0,0}, - {5150,5151,5152 ,4438,4439,4440 ,0,0,0}, {5153,5154,5155 ,4441,4442,1359 ,0,0,0}, - {5154,5153,5152 ,4442,4441,4440 ,0,0,0}, {5154,5156,5155 ,4442,1359,1359 ,0,0,0}, - {5157,5158,5159 ,4443,4444,4445 ,0,0,0}, {5160,5161,5162 ,4446,4447,4448 ,0,0,0}, - {5161,5157,5159 ,4447,4443,4445 ,0,0,0}, {5163,5160,5162 ,4449,4446,4448 ,0,0,0}, - {5161,5160,5157 ,4447,4446,4443 ,0,0,0}, {5163,5162,5164 ,4449,4448,4450 ,0,0,0}, - {5164,5165,5166 ,4450,4451,4452 ,0,0,0}, {5167,5166,5165 ,4453,4452,4451 ,0,0,0}, - {5168,5169,5170 ,4454,4455,4456 ,0,0,0}, {5165,5171,5167 ,4451,4457,4453 ,0,0,0}, - {5170,5172,5173 ,4456,4458,4459 ,0,0,0}, {5172,5171,5173 ,4458,4457,4459 ,0,0,0}, - {5167,5171,5172 ,4453,4457,4458 ,0,0,0}, {5170,5173,5168 ,4456,4459,4454 ,0,0,0}, - {5169,5168,5174 ,4455,4454,4460 ,0,0,0}, {5169,5174,5175 ,4455,4460,4461 ,0,0,0}, - {5176,5175,5174 ,4462,4461,4460 ,0,0,0}, {5177,5178,5179 ,4463,1435,4464 ,0,0,0}, - {5179,5175,5176 ,4464,4461,4462 ,0,0,0}, {5177,5179,5176 ,4463,4464,4462 ,0,0,0}, - {5177,5180,5178 ,4463,1435,1435 ,0,0,0}, {5163,5164,5166 ,4449,4450,4452 ,0,0,0}, - {5159,5158,5181 ,4445,4444,4465 ,0,0,0}, {5182,5181,5183 ,4466,4465,4467 ,0,0,0}, - {5158,5183,5181 ,4444,4467,4465 ,0,0,0}, {5184,5185,5182 ,4468,4469,4466 ,0,0,0}, - {5182,5183,5184 ,4466,4467,4468 ,0,0,0}, {5185,5186,5187 ,4469,4470,4471 ,0,0,0}, - {5186,5185,5184 ,4470,4469,4468 ,0,0,0}, {5188,5187,5189 ,4472,4471,4473 ,0,0,0}, - {5186,5189,5187 ,4470,4473,4471 ,0,0,0}, {5190,5191,5188 ,4474,4475,4472 ,0,0,0}, - {5188,5189,5190 ,4472,4473,4474 ,0,0,0}, {5191,5192,5193 ,4475,4476,4477 ,0,0,0}, - {5192,5191,5190 ,4476,4475,4474 ,0,0,0}, {5194,5193,5195 ,4478,4477,4479 ,0,0,0}, - {5192,5195,5193 ,4476,4479,4477 ,0,0,0}, {5196,5197,5194 ,4480,4481,4478 ,0,0,0}, - {5194,5195,5196 ,4478,4479,4480 ,0,0,0}, {5197,5198,5199 ,4481,4482,1359 ,0,0,0}, - {5198,5197,5196 ,4482,4481,4480 ,0,0,0}, {5198,5200,5199 ,4482,1359,1359 ,0,0,0}, - {5201,5202,5203 ,4483,4484,4485 ,0,0,0}, {5201,5204,5205 ,4483,4486,4487 ,0,0,0}, - {5204,5206,5205 ,4486,4488,4487 ,0,0,0}, {5203,5204,5201 ,4485,4486,4483 ,0,0,0}, - {5207,5208,5209 ,4489,4490,4491 ,0,0,0}, {5206,5207,5209 ,4488,4489,4491 ,0,0,0}, - {5208,5210,5211 ,4490,4492,4493 ,0,0,0}, {5210,5208,5207 ,4492,4490,4489 ,0,0,0}, - {5211,5210,5212 ,4493,4492,4494 ,0,0,0}, {5213,5211,5212 ,4495,4493,4494 ,0,0,0}, - {5213,5214,5215 ,4495,4496,4497 ,0,0,0}, {5213,5212,5214 ,4495,4494,4496 ,0,0,0}, - {5209,5205,5206 ,4491,4487,4488 ,0,0,0}, {5216,5217,5218 ,4498,4499,82 ,0,0,0}, - {5216,5218,5215 ,4498,82,4497 ,0,0,0}, {5214,5216,5215 ,4496,4498,4497 ,0,0,0}, - {5203,5202,5219 ,4485,4484,4500 ,0,0,0}, {5220,5219,5221 ,4501,4500,4502 ,0,0,0}, - {5202,5221,5219 ,4484,4502,4500 ,0,0,0}, {5222,5223,5220 ,4503,4504,4501 ,0,0,0}, - {5220,5221,5222 ,4501,4502,4503 ,0,0,0}, {5223,5224,5225 ,4504,4505,4506 ,0,0,0}, - {5224,5223,5222 ,4505,4504,4503 ,0,0,0}, {5226,5225,5227 ,4507,4506,4508 ,0,0,0}, - {5224,5227,5225 ,4505,4508,4506 ,0,0,0}, {5228,5229,5226 ,4509,4510,4507 ,0,0,0}, - {5226,5227,5228 ,4507,4508,4509 ,0,0,0}, {5229,5230,5231 ,4510,4511,4512 ,0,0,0}, - {5230,5229,5228 ,4511,4510,4509 ,0,0,0}, {5230,5232,5231 ,4511,4513,4512 ,0,0,0}, - {5233,5234,5235 ,4514,4515,4516 ,0,0,0}, {5236,5237,5238 ,4517,4518,4519 ,0,0,0}, - {5237,5233,5235 ,4518,4514,4516 ,0,0,0}, {5239,5236,5238 ,4520,4517,4519 ,0,0,0}, - {5237,5236,5233 ,4518,4517,4514 ,0,0,0}, {5239,5238,5240 ,4520,4519,4521 ,0,0,0}, - {5240,5241,5242 ,4521,4522,4523 ,0,0,0}, {5243,5242,5241 ,4524,4523,4522 ,0,0,0}, - {5244,5245,5246 ,4525,4526,4527 ,0,0,0}, {5241,5247,5243 ,4522,4528,4524 ,0,0,0}, - {5246,5248,5249 ,4527,4529,4530 ,0,0,0}, {5248,5247,5249 ,4529,4528,4530 ,0,0,0}, - {5243,5247,5248 ,4524,4528,4529 ,0,0,0}, {5246,5249,5244 ,4527,4530,4525 ,0,0,0}, - {5245,5244,5250 ,4526,4525,4531 ,0,0,0}, {5245,5250,5251 ,4526,4531,4532 ,0,0,0}, - {5252,5251,5250 ,4533,4532,4531 ,0,0,0}, {5253,5254,5255 ,4534,4535,4536 ,0,0,0}, - {5255,5251,5252 ,4536,4532,4533 ,0,0,0}, {5253,5255,5252 ,4534,4536,4533 ,0,0,0}, - {5253,5256,5254 ,4534,4537,4535 ,0,0,0}, {5239,5240,5242 ,4520,4521,4523 ,0,0,0}, - {5235,5234,5257 ,4516,4515,4538 ,0,0,0}, {5258,5257,5259 ,4539,4538,4540 ,0,0,0}, - {5234,5259,5257 ,4515,4540,4538 ,0,0,0}, {5260,5261,5258 ,4541,4542,4539 ,0,0,0}, - {5258,5259,5260 ,4539,4540,4541 ,0,0,0}, {5261,5262,5263 ,4542,4543,4544 ,0,0,0}, - {5262,5261,5260 ,4543,4542,4541 ,0,0,0}, {5264,5263,5265 ,4545,4544,4546 ,0,0,0}, - {5262,5265,5263 ,4543,4546,4544 ,0,0,0}, {5266,5267,5264 ,4547,4548,4545 ,0,0,0}, - {5264,5265,5266 ,4545,4546,4547 ,0,0,0}, {5267,5268,5269 ,4548,4549,4550 ,0,0,0}, - {5268,5267,5266 ,4549,4548,4547 ,0,0,0}, {5270,5269,5271 ,4551,4550,4552 ,0,0,0}, - {5268,5271,5269 ,4549,4552,4550 ,0,0,0}, {5272,5273,5270 ,4553,4554,4551 ,0,0,0}, - {5270,5271,5272 ,4551,4552,4553 ,0,0,0}, {5273,5274,5275 ,4554,4555,4556 ,0,0,0}, - {5274,5273,5272 ,4555,4554,4553 ,0,0,0}, {5274,5276,5275 ,4555,126,4556 ,0,0,0}, - {5277,5278,5279 ,4557,4558,4559 ,0,0,0}, {5280,5281,5279 ,4560,4561,4559 ,0,0,0}, - {5277,5279,5281 ,4557,4559,4561 ,0,0,0}, {5282,5280,5283 ,4562,4560,4563 ,0,0,0}, - {5282,5281,5280 ,4562,4561,4560 ,0,0,0}, {5284,5283,5285 ,4564,4563,4565 ,0,0,0}, - {5280,5285,5283 ,4560,4565,4563 ,0,0,0}, {5286,5287,5284 ,4081,4566,4564 ,0,0,0}, - {5284,5285,5286 ,4564,4565,4081 ,0,0,0}, {5287,5288,5289 ,4566,4567,4568 ,0,0,0}, - {5288,5287,5286 ,4567,4566,4081 ,0,0,0}, {5290,5289,5291 ,4569,4568,4570 ,0,0,0}, - {5288,5291,5289 ,4567,4570,4568 ,0,0,0}, {5292,5293,5290 ,4571,4572,4569 ,0,0,0}, - {5290,5291,5292 ,4569,4570,4571 ,0,0,0}, {5294,5295,5293 ,4573,763,4572 ,0,0,0}, - {5294,5293,5292 ,4573,4572,4571 ,0,0,0}, {5295,5296,5293 ,763,763,4572 ,0,0,0}, - {5297,5278,5277 ,4574,4558,4557 ,0,0,0}, {5297,5298,5299 ,4574,4575,4576 ,0,0,0}, - {5299,5278,5297 ,4576,4558,4574 ,0,0,0}, {5300,5301,5298 ,4577,4578,4575 ,0,0,0}, - {5298,5301,5299 ,4575,4578,4576 ,0,0,0}, {5302,5303,5300 ,4579,4580,4577 ,0,0,0}, - {5300,5298,5302 ,4577,4575,4579 ,0,0,0}, {5303,5304,5305 ,4580,4065,4581 ,0,0,0}, - {5304,5303,5302 ,4065,4580,4579 ,0,0,0}, {5306,5305,5307 ,4582,4581,4583 ,0,0,0}, - {5304,5307,5305 ,4065,4583,4581 ,0,0,0}, {5308,5309,5306 ,4584,4585,4582 ,0,0,0}, - {5306,5307,5308 ,4582,4583,4584 ,0,0,0}, {5309,5310,5311 ,4585,4586,4587 ,0,0,0}, - {5310,5309,5308 ,4586,4585,4584 ,0,0,0}, {5311,5312,5313 ,4587,4588,54 ,0,0,0}, - {5310,5312,5311 ,4586,4588,4587 ,0,0,0}, {5311,5313,5314 ,4587,54,4589 ,0,0,0}, - {5315,5316,5317 ,4590,4591,4557 ,0,0,0}, {5318,5316,5319 ,4592,4591,4593 ,0,0,0}, - {5316,5318,5317 ,4591,4592,4557 ,0,0,0}, {5320,5321,5319 ,4594,4595,4593 ,0,0,0}, - {5318,5319,5321 ,4592,4593,4595 ,0,0,0}, {5320,5322,5323 ,4594,4596,4597 ,0,0,0}, - {5323,5321,5320 ,4597,4595,4594 ,0,0,0}, {5324,5322,5325 ,4598,4596,4599 ,0,0,0}, - {5322,5324,5323 ,4596,4598,4597 ,0,0,0}, {5326,5327,5325 ,4600,4601,4599 ,0,0,0}, - {5324,5325,5327 ,4598,4599,4601 ,0,0,0}, {5326,5328,5329 ,4600,4602,4603 ,0,0,0}, - {5329,5327,5326 ,4603,4601,4600 ,0,0,0}, {5330,5328,5331 ,4604,4602,4605 ,0,0,0}, - {5328,5330,5329 ,4602,4604,4603 ,0,0,0}, {5332,5333,5331 ,4606,4607,4605 ,0,0,0}, - {5330,5331,5333 ,4604,4605,4607 ,0,0,0}, {5332,5334,5335 ,4606,4608,4609 ,0,0,0}, - {5335,5333,5332 ,4609,4607,4606 ,0,0,0}, {5336,5334,5337 ,4610,4608,4611 ,0,0,0}, - {5334,5336,5335 ,4608,4610,4609 ,0,0,0}, {5338,5339,5337 ,4612,4613,4611 ,0,0,0}, - {5336,5337,5339 ,4610,4611,4613 ,0,0,0}, {5338,5340,5341 ,4612,4614,4615 ,0,0,0}, - {5341,5339,5338 ,4615,4613,4612 ,0,0,0}, {5342,5340,5343 ,4616,4614,4617 ,0,0,0}, - {5340,5342,5341 ,4614,4616,4615 ,0,0,0}, {5344,5345,5343 ,4618,4619,4617 ,0,0,0}, - {5342,5343,5345 ,4616,4617,4619 ,0,0,0}, {5344,5346,5347 ,4618,4620,4621 ,0,0,0}, - {5347,5345,5344 ,4621,4619,4618 ,0,0,0}, {5346,5348,5347 ,4620,4620,4621 ,0,0,0}, - {5349,5315,5317 ,4622,4590,4557 ,0,0,0}, {5350,5351,5349 ,4623,4624,4622 ,0,0,0}, - {5315,5349,5351 ,4590,4622,4624 ,0,0,0}, {5350,5352,5353 ,4623,4625,4626 ,0,0,0}, - {5353,5351,5350 ,4626,4624,4623 ,0,0,0}, {5354,5352,5355 ,4627,4625,4628 ,0,0,0}, - {5352,5354,5353 ,4625,4627,4626 ,0,0,0}, {5356,5357,5355 ,4629,4630,4628 ,0,0,0}, - {5354,5355,5357 ,4627,4628,4630 ,0,0,0}, {5356,5358,5359 ,4629,4631,4632 ,0,0,0}, - {5359,5357,5356 ,4632,4630,4629 ,0,0,0}, {5360,5358,5361 ,4633,4631,4634 ,0,0,0}, - {5358,5360,5359 ,4631,4633,4632 ,0,0,0}, {5362,5363,5361 ,4635,4636,4634 ,0,0,0}, - {5360,5361,5363 ,4633,4634,4636 ,0,0,0}, {5362,5364,5365 ,4635,4637,4638 ,0,0,0}, - {5365,5363,5362 ,4638,4636,4635 ,0,0,0}, {5366,5364,5367 ,4639,4637,4640 ,0,0,0}, - {5364,5366,5365 ,4637,4639,4638 ,0,0,0}, {5368,5369,5367 ,4641,4642,4640 ,0,0,0}, - {5366,5367,5369 ,4639,4640,4642 ,0,0,0}, {5368,5370,5371 ,4641,4643,4644 ,0,0,0}, - {5371,5369,5368 ,4644,4642,4641 ,0,0,0}, {5372,5370,5373 ,4645,4643,4646 ,0,0,0}, - {5370,5372,5371 ,4643,4645,4644 ,0,0,0}, {5374,5375,5373 ,4647,4648,4646 ,0,0,0}, - {5372,5373,5375 ,4645,4646,4648 ,0,0,0}, {5374,5376,5377 ,4647,4649,4650 ,0,0,0}, - {5377,5375,5374 ,4650,4648,4647 ,0,0,0}, {5378,5376,5379 ,4651,4649,82 ,0,0,0}, - {5376,5378,5377 ,4649,4651,4650 ,0,0,0}, {5378,5379,5380 ,4651,82,4652 ,0,0,0}, - {5381,5382,5383 ,4653,4654,4655 ,0,0,0}, {5384,5385,5386 ,4656,4657,4658 ,0,0,0}, - {5383,5386,5385 ,4655,4658,4657 ,0,0,0}, {5387,5388,5389 ,4659,4660,4661 ,0,0,0}, - {5390,5391,5384 ,4662,4663,4656 ,0,0,0}, {5387,5391,5390 ,4659,4663,4662 ,0,0,0}, - {5390,5388,5387 ,4662,4660,4659 ,0,0,0}, {5391,5385,5384 ,4663,4657,4656 ,0,0,0}, - {5392,5393,5394 ,4664,4665,4666 ,0,0,0}, {5393,5395,5394 ,4665,4667,4666 ,0,0,0}, - {5396,5397,5398 ,4668,4669,4670 ,0,0,0}, {5396,5398,5395 ,4668,4670,4667 ,0,0,0}, - {5393,5396,5395 ,4665,4668,4667 ,0,0,0}, {5388,5392,5389 ,4660,4664,4661 ,0,0,0}, - {5392,5394,5389 ,4664,4666,4661 ,0,0,0}, {5399,5400,5401 ,4671,4672,4673 ,0,0,0}, - {5402,5403,5404 ,4674,4675,4676 ,0,0,0}, {5401,5400,5402 ,4673,4672,4674 ,0,0,0}, - {5405,5406,5407 ,4677,4678,4679 ,0,0,0}, {5401,5402,5404 ,4673,4674,4676 ,0,0,0}, - {5407,5406,5403 ,4679,4678,4675 ,0,0,0}, {5406,5404,5403 ,4678,4676,4675 ,0,0,0}, - {5397,5400,5399 ,4669,4672,4671 ,0,0,0}, {5408,5405,5407 ,4677,4677,4679 ,0,0,0}, - {5398,5397,5399 ,4670,4669,4671 ,0,0,0}, {5382,5386,5383 ,4654,4658,4655 ,0,0,0}, - {5409,5382,5381 ,4680,4654,4653 ,0,0,0}, {5409,5410,5411 ,4680,4681,4682 ,0,0,0}, - {5410,5409,5381 ,4681,4680,4653 ,0,0,0}, {5412,5411,5413 ,4683,4682,4684 ,0,0,0}, - {5410,5413,5411 ,4681,4684,4682 ,0,0,0}, {5414,5415,5412 ,4685,4686,4683 ,0,0,0}, - {5412,5413,5414 ,4683,4684,4685 ,0,0,0}, {5415,5416,5417 ,4686,4687,4688 ,0,0,0}, - {5416,5415,5414 ,4687,4686,4685 ,0,0,0}, {5418,5417,5419 ,4689,4688,4690 ,0,0,0}, - {5416,5419,5417 ,4687,4690,4688 ,0,0,0}, {5420,5421,5418 ,4691,4692,4689 ,0,0,0}, - {5418,5419,5420 ,4689,4690,4691 ,0,0,0}, {5421,5422,5423 ,4692,4693,4694 ,0,0,0}, - {5422,5421,5420 ,4693,4692,4691 ,0,0,0}, {5424,5423,5425 ,4695,4694,4696 ,0,0,0}, - {5422,5425,5423 ,4693,4696,4694 ,0,0,0}, {5426,5427,5424 ,4697,4698,4695 ,0,0,0}, - {5424,5425,5426 ,4695,4696,4697 ,0,0,0}, {5427,5428,5429 ,4698,4699,4700 ,0,0,0}, - {5428,5427,5426 ,4699,4698,4697 ,0,0,0}, {5428,5430,5429 ,4699,4701,4700 ,0,0,0}, - {5431,5432,5433 ,4702,4703,4704 ,0,0,0}, {5434,5435,5436 ,4705,4706,4707 ,0,0,0}, - {5432,5436,5435 ,4703,4707,4706 ,0,0,0}, {5437,5438,5439 ,4708,4709,4710 ,0,0,0}, - {5440,5434,5441 ,4711,4705,4712 ,0,0,0}, {5437,5440,5441 ,4708,4711,4712 ,0,0,0}, - {5440,5437,5439 ,4711,4708,4710 ,0,0,0}, {5441,5434,5436 ,4712,4705,4707 ,0,0,0}, - {5442,5443,5444 ,4713,4714,4715 ,0,0,0}, {5444,5443,5445 ,4715,4714,4716 ,0,0,0}, - {5446,5447,5448 ,4717,4718,4719 ,0,0,0}, {5446,5445,5447 ,4717,4716,4718 ,0,0,0}, - {5444,5445,5446 ,4715,4716,4717 ,0,0,0}, {5439,5438,5442 ,4710,4709,4713 ,0,0,0}, - {5442,5438,5443 ,4713,4709,4714 ,0,0,0}, {5449,5450,5451 ,4720,4721,4722 ,0,0,0}, - {5452,5453,5454 ,4723,4724,4725 ,0,0,0}, {5450,5452,5451 ,4721,4723,4722 ,0,0,0}, - {5455,5456,5457 ,4726,4727,4728 ,0,0,0}, {5450,5453,5452 ,4721,4724,4723 ,0,0,0}, - {5456,5454,5457 ,4727,4725,4728 ,0,0,0}, {5457,5454,5453 ,4728,4725,4724 ,0,0,0}, - {5448,5449,5451 ,4719,4720,4722 ,0,0,0}, {5458,5456,5455 ,4726,4727,4726 ,0,0,0}, - {5447,5449,5448 ,4718,4720,4719 ,0,0,0}, {5433,5432,5435 ,4704,4703,4706 ,0,0,0}, - {5459,5431,5433 ,4729,4702,4704 ,0,0,0}, {5459,5460,5461 ,4729,4730,4731 ,0,0,0}, - {5461,5431,5459 ,4731,4702,4729 ,0,0,0}, {5462,5463,5460 ,4732,4733,4730 ,0,0,0}, - {5461,5460,5463 ,4731,4730,4733 ,0,0,0}, {5464,5462,5465 ,4734,4732,4735 ,0,0,0}, - {5462,5464,5463 ,4732,4734,4733 ,0,0,0}, {5465,5466,5467 ,4735,4736,4737 ,0,0,0}, - {5467,5464,5465 ,4737,4734,4735 ,0,0,0}, {5468,5469,5466 ,4738,4739,4736 ,0,0,0}, - {5467,5466,5469 ,4737,4736,4739 ,0,0,0}, {5470,5468,5471 ,4740,4738,4741 ,0,0,0}, - {5468,5470,5469 ,4738,4740,4739 ,0,0,0}, {5471,5472,5473 ,4741,4742,4743 ,0,0,0}, - {5473,5470,5471 ,4743,4740,4741 ,0,0,0}, {5474,5475,5472 ,4744,4745,4742 ,0,0,0}, - {5473,5472,5475 ,4743,4742,4745 ,0,0,0}, {5476,5474,5477 ,4746,4744,4747 ,0,0,0}, - {5474,5476,5475 ,4744,4746,4745 ,0,0,0}, {5477,5478,5479 ,4747,4748,4749 ,0,0,0}, - {5479,5476,5477 ,4749,4746,4747 ,0,0,0}, {5479,5478,5480 ,4749,4748,4750 ,0,0,0}, - {5481,5482,5483 ,4751,4752,4753 ,0,0,0}, {5484,5485,5486 ,4754,4755,4756 ,0,0,0}, - {5482,5486,5485 ,4752,4756,4755 ,0,0,0}, {5487,5488,5489 ,4757,4758,4759 ,0,0,0}, - {5490,5484,5491 ,4760,4754,4761 ,0,0,0}, {5490,5491,5487 ,4760,4761,4757 ,0,0,0}, - {5487,5489,5490 ,4757,4759,4760 ,0,0,0}, {5484,5486,5491 ,4754,4756,4761 ,0,0,0}, - {5492,5493,5494 ,4762,4763,4764 ,0,0,0}, {5495,5493,5492 ,4765,4763,4762 ,0,0,0}, - {5496,5497,5498 ,4766,4767,4768 ,0,0,0}, {5496,5498,5495 ,4766,4768,4765 ,0,0,0}, - {5495,5498,5493 ,4765,4768,4763 ,0,0,0}, {5488,5494,5489 ,4758,4764,4759 ,0,0,0}, - {5492,5494,5488 ,4762,4764,4758 ,0,0,0}, {5499,5500,5501 ,4769,4770,4771 ,0,0,0}, - {5502,5503,5504 ,4772,4773,4774 ,0,0,0}, {5501,5500,5504 ,4771,4770,4774 ,0,0,0}, - {5505,5506,5507 ,4775,4776,4777 ,0,0,0}, {5500,5502,5504 ,4770,4772,4774 ,0,0,0}, - {5505,5503,5506 ,4775,4773,4776 ,0,0,0}, {5503,5502,5506 ,4773,4772,4776 ,0,0,0}, - {5499,5501,5497 ,4769,4771,4767 ,0,0,0}, {5508,5505,5507 ,4777,4775,4777 ,0,0,0}, - {5496,5499,5497 ,4766,4769,4767 ,0,0,0}, {5482,5485,5483 ,4752,4755,4753 ,0,0,0}, - {5481,5483,5509 ,4751,4753,4778 ,0,0,0}, {5509,5510,5511 ,4778,4779,4780 ,0,0,0}, - {5511,5481,5509 ,4780,4751,4778 ,0,0,0}, {5512,5510,5513 ,4781,4779,4782 ,0,0,0}, - {5510,5512,5511 ,4779,4781,4780 ,0,0,0}, {5514,5515,5513 ,4783,4784,4782 ,0,0,0}, - {5512,5513,5515 ,4781,4782,4784 ,0,0,0}, {5514,5516,5517 ,4783,4785,4786 ,0,0,0}, - {5517,5515,5514 ,4786,4784,4783 ,0,0,0}, {5518,5516,5519 ,4787,4785,4788 ,0,0,0}, - {5516,5518,5517 ,4785,4787,4786 ,0,0,0}, {5520,5521,5519 ,4789,4790,4788 ,0,0,0}, - {5518,5519,5521 ,4787,4788,4790 ,0,0,0}, {5520,5522,5523 ,4789,4791,4792 ,0,0,0}, - {5523,5521,5520 ,4792,4790,4789 ,0,0,0}, {5524,5522,5525 ,4793,4791,4794 ,0,0,0}, - {5522,5524,5523 ,4791,4793,4792 ,0,0,0}, {5526,5527,5525 ,4795,4796,4794 ,0,0,0}, - {5524,5525,5527 ,4793,4794,4796 ,0,0,0}, {5526,5528,5529 ,4795,4797,4798 ,0,0,0}, - {5529,5527,5526 ,4798,4796,4795 ,0,0,0}, {5528,5530,5529 ,4797,4799,4798 ,0,0,0}, - {5528,5531,5530 ,4797,324,4799 ,0,0,0}, {5532,5533,5534 ,82,4800,4801 ,0,0,0}, - {5534,5535,5536 ,4801,4802,4803 ,0,0,0}, {5535,5537,5536 ,4802,4804,4803 ,0,0,0}, - {5534,5536,5532 ,4801,4803,82 ,0,0,0}, {5538,5539,5540 ,4805,4806,4807 ,0,0,0}, - {5540,5539,5537 ,4807,4806,4804 ,0,0,0}, {5538,5541,5542 ,4805,4808,4809 ,0,0,0}, - {5542,5539,5538 ,4809,4806,4805 ,0,0,0}, {5542,5541,5543 ,4809,4808,4810 ,0,0,0}, - {5543,5541,5544 ,4810,4808,4811 ,0,0,0}, {5544,5545,5546 ,4811,4812,4813 ,0,0,0}, - {5543,5544,5546 ,4810,4811,4813 ,0,0,0}, {5537,5535,5540 ,4804,4802,4807 ,0,0,0}, - {5547,5548,5549 ,4814,4815,4816 ,0,0,0}, {5547,5549,5545 ,4814,4816,4812 ,0,0,0}, - {5545,5549,5546 ,4812,4816,4813 ,0,0,0}, {5532,5550,5533 ,82,4817,4800 ,0,0,0}, - {5551,5550,5552 ,4818,4817,4819 ,0,0,0}, {5550,5551,5533 ,4817,4818,4800 ,0,0,0}, - {5553,5554,5552 ,4820,4821,4819 ,0,0,0}, {5551,5552,5554 ,4818,4819,4821 ,0,0,0}, - {5553,5555,5556 ,4820,4822,4823 ,0,0,0}, {5556,5554,5553 ,4823,4821,4820 ,0,0,0}, - {5557,5555,5558 ,4824,4822,4825 ,0,0,0}, {5555,5557,5556 ,4822,4824,4823 ,0,0,0}, - {5559,5560,5558 ,4826,4827,4825 ,0,0,0}, {5557,5558,5560 ,4824,4825,4827 ,0,0,0}, - {5559,5561,5562 ,4826,4828,4829 ,0,0,0}, {5562,5560,5559 ,4829,4827,4826 ,0,0,0}, - {5563,5561,5564 ,4830,4828,4831 ,0,0,0}, {5561,5563,5562 ,4828,4830,4829 ,0,0,0}, - {5559,5558,5565 ,4832,4833,4834 ,0,0,0}, {5565,5561,5559 ,4834,4835,4832 ,0,0,0}, - {5565,5564,5561 ,4834,4836,4835 ,0,0,0}, {5565,5555,5553 ,4834,4837,4838 ,0,0,0}, - {5558,5555,5565 ,4833,4837,4834 ,0,0,0}, {5565,5552,5550 ,4834,4839,4840 ,0,0,0}, - {5553,5552,5565 ,4838,4839,4834 ,0,0,0}, {5550,5532,5565 ,4840,4841,4834 ,0,0,0}, - {5537,5565,5536 ,4842,4834,4843 ,0,0,0}, {5565,5532,5536 ,4834,4841,4843 ,0,0,0}, - {5542,5565,5539 ,4844,4834,4845 ,0,0,0}, {5565,5537,5539 ,4834,4842,4845 ,0,0,0}, - {5546,5565,5543 ,4846,4834,4847 ,0,0,0}, {5565,5542,5543 ,4834,4844,4847 ,0,0,0}, - {5548,5565,5549 ,4848,4834,4849 ,0,0,0}, {5565,5546,5549 ,4834,4846,4849 ,0,0,0}, - {5566,5567,5568 ,82,4850,4851 ,0,0,0}, {5568,5569,5570 ,4851,4852,4853 ,0,0,0}, - {5569,5571,5570 ,4852,4854,4853 ,0,0,0}, {5568,5570,5566 ,4851,4853,82 ,0,0,0}, - {5572,5573,5574 ,4855,4856,4857 ,0,0,0}, {5574,5573,5571 ,4857,4856,4854 ,0,0,0}, - {5572,5575,5576 ,4855,4858,4859 ,0,0,0}, {5576,5573,5572 ,4859,4856,4855 ,0,0,0}, - {5576,5575,5577 ,4859,4858,4860 ,0,0,0}, {5577,5575,5578 ,4860,4858,4861 ,0,0,0}, - {5578,5579,5580 ,4861,4862,4863 ,0,0,0}, {5577,5578,5580 ,4860,4861,4863 ,0,0,0}, - {5571,5569,5574 ,4854,4852,4857 ,0,0,0}, {5581,5582,5583 ,4864,4865,4866 ,0,0,0}, - {5581,5583,5579 ,4864,4866,4862 ,0,0,0}, {5579,5583,5580 ,4862,4866,4863 ,0,0,0}, - {5566,5584,5567 ,82,4867,4850 ,0,0,0}, {5585,5584,5586 ,4868,4867,4869 ,0,0,0}, - {5584,5585,5567 ,4867,4868,4850 ,0,0,0}, {5587,5588,5586 ,4870,4871,4869 ,0,0,0}, - {5585,5586,5588 ,4868,4869,4871 ,0,0,0}, {5587,5589,5590 ,4870,4872,4873 ,0,0,0}, - {5590,5588,5587 ,4873,4871,4870 ,0,0,0}, {5591,5589,5592 ,4874,4872,4875 ,0,0,0}, - {5589,5591,5590 ,4872,4874,4873 ,0,0,0}, {5593,5594,5592 ,4876,4877,4875 ,0,0,0}, - {5591,5592,5594 ,4874,4875,4877 ,0,0,0}, {5593,5595,5596 ,4876,4878,4829 ,0,0,0}, - {5596,5594,5593 ,4829,4877,4876 ,0,0,0}, {5597,5595,5598 ,4879,4878,4831 ,0,0,0}, - {5595,5597,5596 ,4878,4879,4829 ,0,0,0}, {5593,5592,5599 ,4832,4833,4880 ,0,0,0}, - {5599,5595,5593 ,4880,4835,4832 ,0,0,0}, {5599,5598,5595 ,4880,4881,4835 ,0,0,0}, - {5599,5589,5587 ,4880,4837,4838 ,0,0,0}, {5592,5589,5599 ,4833,4837,4880 ,0,0,0}, - {5599,5586,5584 ,4880,4839,4840 ,0,0,0}, {5587,5586,5599 ,4838,4839,4880 ,0,0,0}, - {5584,5566,5599 ,4840,4882,4880 ,0,0,0}, {5571,5599,5570 ,4842,4880,4843 ,0,0,0}, - {5599,5566,5570 ,4880,4882,4843 ,0,0,0}, {5576,5599,5573 ,4844,4880,4845 ,0,0,0}, - {5599,5571,5573 ,4880,4842,4845 ,0,0,0}, {5580,5599,5577 ,4846,4880,4847 ,0,0,0}, - {5599,5576,5577 ,4880,4844,4847 ,0,0,0}, {5582,5599,5583 ,4883,4880,4849 ,0,0,0}, - {5599,5580,5583 ,4880,4846,4849 ,0,0,0}, {5600,5601,5602 ,4884,4885,4886 ,0,0,0}, - {5602,5603,5604 ,4886,4887,4888 ,0,0,0}, {5603,5605,5604 ,4887,4889,4888 ,0,0,0}, - {5602,5604,5600 ,4886,4888,4884 ,0,0,0}, {5606,5607,5608 ,4890,4891,4857 ,0,0,0}, - {5608,5607,5605 ,4857,4891,4889 ,0,0,0}, {5606,5609,5610 ,4890,4892,4893 ,0,0,0}, - {5610,5607,5606 ,4893,4891,4890 ,0,0,0}, {5610,5609,5611 ,4893,4892,4894 ,0,0,0}, - {5611,5609,5612 ,4894,4892,4895 ,0,0,0}, {5612,5613,5614 ,4895,4896,4897 ,0,0,0}, - {5611,5612,5614 ,4894,4895,4897 ,0,0,0}, {5605,5603,5608 ,4889,4887,4857 ,0,0,0}, - {5615,5616,5617 ,4898,4899,4900 ,0,0,0}, {5615,5617,5613 ,4898,4900,4896 ,0,0,0}, - {5613,5617,5614 ,4896,4900,4897 ,0,0,0}, {5600,5618,5601 ,4884,4901,4885 ,0,0,0}, - {5619,5618,5620 ,4868,4901,4902 ,0,0,0}, {5618,5619,5601 ,4901,4868,4885 ,0,0,0}, - {5621,5622,5620 ,4820,4903,4902 ,0,0,0}, {5619,5620,5622 ,4868,4902,4903 ,0,0,0}, - {5621,5623,5624 ,4820,4904,4905 ,0,0,0}, {5624,5622,5621 ,4905,4903,4820 ,0,0,0}, - {5625,5623,5626 ,4906,4904,4907 ,0,0,0}, {5623,5625,5624 ,4904,4906,4905 ,0,0,0}, - {5627,5628,5626 ,4826,4877,4907 ,0,0,0}, {5625,5626,5628 ,4906,4907,4877 ,0,0,0}, - {5627,5629,5630 ,4826,4828,4908 ,0,0,0}, {5630,5628,5627 ,4908,4877,4826 ,0,0,0}, - {5631,5629,5632 ,4909,4828,4910 ,0,0,0}, {5629,5631,5630 ,4828,4909,4908 ,0,0,0}, - {5627,5626,5633 ,4832,4833,4880 ,0,0,0}, {5633,5629,5627 ,4880,4835,4832 ,0,0,0}, - {5633,5632,5629 ,4880,4911,4835 ,0,0,0}, {5633,5623,5621 ,4880,4837,4838 ,0,0,0}, - {5626,5623,5633 ,4833,4837,4880 ,0,0,0}, {5633,5620,5618 ,4880,4839,4840 ,0,0,0}, - {5621,5620,5633 ,4838,4839,4880 ,0,0,0}, {5618,5600,5633 ,4840,4912,4880 ,0,0,0}, - {5605,5633,5604 ,4842,4880,4843 ,0,0,0}, {5633,5600,5604 ,4880,4912,4843 ,0,0,0}, - {5610,5633,5607 ,4844,4880,4845 ,0,0,0}, {5633,5605,5607 ,4880,4842,4845 ,0,0,0}, - {5614,5633,5611 ,4846,4880,4847 ,0,0,0}, {5633,5610,5611 ,4880,4844,4847 ,0,0,0}, - {5616,5633,5617 ,4913,4880,4849 ,0,0,0}, {5633,5614,5617 ,4880,4846,4849 ,0,0,0}, - {5634,5635,5636 ,4914,4915,4916 ,0,0,0}, {5636,5637,5638 ,4916,4917,4918 ,0,0,0}, - {5637,5639,5638 ,4917,4919,4918 ,0,0,0}, {5636,5638,5634 ,4916,4918,4914 ,0,0,0}, - {5640,5641,5642 ,4920,4921,4922 ,0,0,0}, {5642,5641,5639 ,4922,4921,4919 ,0,0,0}, - {5640,5643,5644 ,4920,4923,4924 ,0,0,0}, {5644,5641,5640 ,4924,4921,4920 ,0,0,0}, - {5644,5643,5645 ,4924,4923,4925 ,0,0,0}, {5645,5643,5646 ,4925,4923,4926 ,0,0,0}, - {5646,5647,5648 ,4926,4927,4928 ,0,0,0}, {5645,5646,5648 ,4925,4926,4928 ,0,0,0}, - {5639,5637,5642 ,4919,4917,4922 ,0,0,0}, {5649,5650,5651 ,4929,4815,4930 ,0,0,0}, - {5649,5651,5647 ,4929,4930,4927 ,0,0,0}, {5647,5651,5648 ,4927,4930,4928 ,0,0,0}, - {5634,5652,5635 ,4914,4931,4915 ,0,0,0}, {5653,5652,5654 ,4932,4931,4933 ,0,0,0}, - {5652,5653,5635 ,4931,4932,4915 ,0,0,0}, {5655,5656,5654 ,4934,4821,4933 ,0,0,0}, - {5653,5654,5656 ,4932,4933,4821 ,0,0,0}, {5655,5657,5658 ,4934,4935,4936 ,0,0,0}, - {5658,5656,5655 ,4936,4821,4934 ,0,0,0}, {5659,5657,5660 ,4937,4935,4938 ,0,0,0}, - {5657,5659,5658 ,4935,4937,4936 ,0,0,0}, {5661,5662,5660 ,4826,4877,4938 ,0,0,0}, - {5659,5660,5662 ,4937,4938,4877 ,0,0,0}, {5661,5663,5664 ,4826,4939,4940 ,0,0,0}, - {5664,5662,5661 ,4940,4877,4826 ,0,0,0}, {5665,5663,5666 ,4941,4939,4942 ,0,0,0}, - {5663,5665,5664 ,4939,4941,4940 ,0,0,0}, {5661,5660,5667 ,4832,4833,4943 ,0,0,0}, - {5667,5663,5661 ,4943,4835,4832 ,0,0,0}, {5667,5666,5663 ,4943,4944,4835 ,0,0,0}, - {5667,5657,5655 ,4943,4837,4838 ,0,0,0}, {5660,5657,5667 ,4833,4837,4943 ,0,0,0}, - {5667,5654,5652 ,4943,4839,4840 ,0,0,0}, {5655,5654,5667 ,4838,4839,4943 ,0,0,0}, - {5652,5634,5667 ,4840,4945,4943 ,0,0,0}, {5639,5667,5638 ,4842,4943,4843 ,0,0,0}, - {5667,5634,5638 ,4943,4945,4843 ,0,0,0}, {5644,5667,5641 ,4844,4943,4845 ,0,0,0}, - {5667,5639,5641 ,4943,4842,4845 ,0,0,0}, {5648,5667,5645 ,4846,4943,4847 ,0,0,0}, - {5667,5644,5645 ,4943,4844,4847 ,0,0,0}, {5650,5667,5651 ,4946,4943,4849 ,0,0,0}, - {5667,5648,5651 ,4943,4846,4849 ,0,0,0}, {5668,5669,5670 ,4947,4948,4949 ,0,0,0}, - {5671,5672,5673 ,4950,4951,4952 ,0,0,0}, {5670,5673,5672 ,4949,4952,4951 ,0,0,0}, - {5674,5675,5676 ,4953,4954,4955 ,0,0,0}, {5677,5678,5671 ,4956,4957,4950 ,0,0,0}, - {5674,5678,5677 ,4953,4957,4956 ,0,0,0}, {5677,5675,5674 ,4956,4954,4953 ,0,0,0}, - {5678,5672,5671 ,4957,4951,4950 ,0,0,0}, {5679,5680,5681 ,4958,4959,4960 ,0,0,0}, - {5680,5682,5681 ,4959,4961,4960 ,0,0,0}, {5683,5684,5685 ,4962,4963,4964 ,0,0,0}, - {5683,5685,5682 ,4962,4964,4961 ,0,0,0}, {5680,5683,5682 ,4959,4962,4961 ,0,0,0}, - {5675,5679,5676 ,4954,4958,4955 ,0,0,0}, {5679,5681,5676 ,4958,4960,4955 ,0,0,0}, - {5686,5687,5688 ,4965,4966,4967 ,0,0,0}, {5689,5690,5691 ,4968,4969,4970 ,0,0,0}, - {5688,5687,5689 ,4967,4966,4968 ,0,0,0}, {5692,5693,5694 ,4726,4971,4972 ,0,0,0}, - {5688,5689,5691 ,4967,4968,4970 ,0,0,0}, {5694,5693,5690 ,4972,4971,4969 ,0,0,0}, - {5693,5691,5690 ,4971,4970,4969 ,0,0,0}, {5684,5687,5686 ,4963,4966,4965 ,0,0,0}, - {5695,5692,5694 ,4726,4726,4972 ,0,0,0}, {5685,5684,5686 ,4964,4963,4965 ,0,0,0}, - {5669,5673,5670 ,4948,4952,4949 ,0,0,0}, {5696,5669,5668 ,4973,4948,4947 ,0,0,0}, - {5696,5697,5698 ,4973,4974,4975 ,0,0,0}, {5697,5696,5668 ,4974,4973,4947 ,0,0,0}, - {5699,5698,5700 ,4976,4975,4977 ,0,0,0}, {5697,5700,5698 ,4974,4977,4975 ,0,0,0}, - {5701,5702,5699 ,4978,4979,4976 ,0,0,0}, {5699,5700,5701 ,4976,4977,4978 ,0,0,0}, - {5702,5703,5704 ,4979,4980,4981 ,0,0,0}, {5703,5702,5701 ,4980,4979,4978 ,0,0,0}, - {5705,5704,5706 ,4982,4981,4983 ,0,0,0}, {5703,5706,5704 ,4980,4983,4981 ,0,0,0}, - {5707,5708,5705 ,4984,4985,4982 ,0,0,0}, {5705,5706,5707 ,4982,4983,4984 ,0,0,0}, - {5708,5709,5710 ,4985,4986,4987 ,0,0,0}, {5709,5708,5707 ,4986,4985,4984 ,0,0,0}, - {5711,5710,5712 ,4988,4987,4989 ,0,0,0}, {5709,5712,5710 ,4986,4989,4987 ,0,0,0}, - {5713,5714,5711 ,4990,4991,4988 ,0,0,0}, {5711,5712,5713 ,4988,4989,4990 ,0,0,0}, - {5714,5715,5716 ,4991,4992,4748 ,0,0,0}, {5715,5714,5713 ,4992,4991,4990 ,0,0,0}, - {5715,5717,5716 ,4992,4750,4748 ,0,0,0}, {5718,5719,5720 ,4993,4994,4995 ,0,0,0}, - {5721,5722,5723 ,4996,4997,4998 ,0,0,0}, {5719,5724,5725 ,4994,4999,5000 ,0,0,0}, - {5724,5719,5718 ,4999,4994,4993 ,0,0,0}, {5724,5726,5725 ,4999,5001,5000 ,0,0,0}, - {5720,5727,5718 ,4995,5002,4993 ,0,0,0}, {5721,5727,5728 ,4996,5002,5003 ,0,0,0}, - {5720,5728,5727 ,4995,5003,5002 ,0,0,0}, {5729,5730,5731 ,5004,5005,5006 ,0,0,0}, - {5721,5728,5722 ,4996,5003,4997 ,0,0,0}, {5732,5733,5734 ,5007,5008,5009 ,0,0,0}, - {5735,5736,5737 ,5010,5011,5012 ,0,0,0}, {5738,5739,5740 ,5013,5014,5015 ,0,0,0}, - {5741,5742,5743 ,5016,5017,5018 ,0,0,0}, {5744,5745,5746 ,5019,5020,5021 ,0,0,0}, - {5747,5748,5739 ,5022,5023,5014 ,0,0,0}, {5749,5750,5751 ,5024,5025,5026 ,0,0,0}, - {5750,5745,5752 ,5025,5020,5027 ,0,0,0}, {5753,5754,5755 ,5028,5029,5030 ,0,0,0}, - {5756,5757,5749 ,5031,5032,5024 ,0,0,0}, {5758,5759,5760 ,5033,5034,5035 ,0,0,0}, - {5761,5755,5762 ,5036,5030,5037 ,0,0,0}, {5763,5764,5765 ,5038,5039,5040 ,0,0,0}, - {5766,5764,5767 ,5041,5039,5042 ,0,0,0}, {5768,5769,5770 ,5043,5044,5045 ,0,0,0}, - {5765,5771,5768 ,5040,5046,5043 ,0,0,0}, {5772,5773,5774 ,5047,5048,5049 ,0,0,0}, - {5772,5775,5776 ,5047,5050,5051 ,0,0,0}, {5777,5778,5779 ,5052,5053,5054 ,0,0,0}, - {5780,5781,5779 ,5055,5056,5054 ,0,0,0}, {5782,5783,5784 ,5057,5058,5059 ,0,0,0}, - {5783,5777,5785 ,5058,5052,5060 ,0,0,0}, {5786,5787,5788 ,5061,5062,5063 ,0,0,0}, - {5782,5789,5786 ,5057,5064,5061 ,0,0,0}, {5790,5791,5792 ,5065,5066,5067 ,0,0,0}, - {5790,5793,5794 ,5065,5068,5069 ,0,0,0}, {5795,5796,5797 ,5070,5071,5072 ,0,0,0}, - {5795,5798,5791 ,5070,5073,5066 ,0,0,0}, {5799,5796,5800 ,5074,5071,5075 ,0,0,0}, - {5796,5799,5797 ,5071,5074,5072 ,0,0,0}, {5801,5802,5800 ,5076,5077,5075 ,0,0,0}, - {5799,5800,5802 ,5074,5075,5077 ,0,0,0}, {5803,5804,5802 ,5078,5079,5077 ,0,0,0}, - {5802,5801,5803 ,5077,5076,5078 ,0,0,0}, {5804,5805,5806 ,5079,5080,5081 ,0,0,0}, - {5805,5804,5803 ,5080,5079,5078 ,0,0,0}, {5807,5806,5808 ,5082,5081,5083 ,0,0,0}, - {5805,5808,5806 ,5080,5083,5081 ,0,0,0}, {5809,5810,5807 ,5084,5085,5082 ,0,0,0}, - {5807,5808,5809 ,5082,5083,5084 ,0,0,0}, {5810,5811,5812 ,5085,5086,5087 ,0,0,0}, - {5811,5810,5809 ,5086,5085,5084 ,0,0,0}, {5813,5812,5814 ,5088,5087,5089 ,0,0,0}, - {5811,5814,5812 ,5086,5089,5087 ,0,0,0}, {5815,5813,5816 ,5090,5088,5091 ,0,0,0}, - {5813,5814,5816 ,5088,5089,5091 ,0,0,0}, {5815,5817,5818 ,5090,5092,5093 ,0,0,0}, - {5818,5813,5815 ,5093,5088,5090 ,0,0,0}, {5819,5817,5820 ,5094,5092,5095 ,0,0,0}, - {5817,5819,5818 ,5092,5094,5093 ,0,0,0}, {5821,5822,5820 ,126,5096,5095 ,0,0,0}, - {5819,5820,5822 ,5094,5095,5096 ,0,0,0}, {5823,5822,5821 ,126,5096,126 ,0,0,0}, - {5792,5791,5798 ,5067,5066,5073 ,0,0,0}, {5795,5797,5798 ,5070,5072,5073 ,0,0,0}, - {5788,5793,5786 ,5063,5068,5061 ,0,0,0}, {5790,5792,5793 ,5065,5067,5068 ,0,0,0}, - {5788,5794,5793 ,5063,5069,5068 ,0,0,0}, {5784,5789,5782 ,5059,5064,5057 ,0,0,0}, - {5786,5789,5787 ,5061,5064,5062 ,0,0,0}, {5778,5777,5783 ,5053,5052,5058 ,0,0,0}, - {5783,5785,5784 ,5058,5060,5059 ,0,0,0}, {5780,5773,5781 ,5055,5048,5056 ,0,0,0}, - {5778,5780,5779 ,5053,5055,5054 ,0,0,0}, {5772,5774,5775 ,5047,5049,5050 ,0,0,0}, - {5773,5780,5774 ,5048,5055,5049 ,0,0,0}, {5769,5776,5770 ,5044,5051,5045 ,0,0,0}, - {5776,5775,5770 ,5051,5050,5045 ,0,0,0}, {5765,5768,5763 ,5040,5043,5038 ,0,0,0}, - {5771,5769,5768 ,5046,5044,5043 ,0,0,0}, {5758,5766,5759 ,5033,5041,5034 ,0,0,0}, - {5767,5764,5763 ,5042,5039,5038 ,0,0,0}, {5759,5766,5767 ,5034,5041,5042 ,0,0,0}, - {5760,5761,5762 ,5035,5036,5037 ,0,0,0}, {5759,5761,5760 ,5034,5036,5035 ,0,0,0}, - {5755,5757,5753 ,5030,5032,5028 ,0,0,0}, {5762,5755,5754 ,5037,5030,5029 ,0,0,0}, - {5824,5756,5749 ,5097,5031,5024 ,0,0,0}, {5756,5753,5757 ,5031,5028,5032 ,0,0,0}, - {5825,5750,5752 ,5098,5025,5027 ,0,0,0}, {5749,5751,5824 ,5024,5026,5097 ,0,0,0}, - {5750,5825,5751 ,5025,5098,5026 ,0,0,0}, {5746,5747,5744 ,5021,5022,5019 ,0,0,0}, - {5752,5745,5744 ,5027,5020,5019 ,0,0,0}, {5740,5743,5738 ,5015,5018,5013 ,0,0,0}, - {5747,5746,5748 ,5022,5021,5023 ,0,0,0}, {5739,5748,5740 ,5014,5023,5015 ,0,0,0}, - {5732,5741,5743 ,5007,5016,5018 ,0,0,0}, {5742,5738,5743 ,5017,5013,5018 ,0,0,0}, - {5733,5737,5734 ,5008,5012,5009 ,0,0,0}, {5732,5734,5741 ,5007,5009,5016 ,0,0,0}, - {5735,5729,5736 ,5010,5004,5011 ,0,0,0}, {5733,5735,5737 ,5008,5010,5012 ,0,0,0}, - {5731,5730,5723 ,5006,5005,4998 ,0,0,0}, {5736,5729,5731 ,5011,5004,5006 ,0,0,0}, - {5721,5723,5730 ,4996,4998,5005 ,0,0,0}, {5826,5827,5828 ,5099,5100,5101 ,0,0,0}, - {5829,5830,5831 ,5102,5103,5104 ,0,0,0}, {5832,5830,5829 ,5105,5103,5102 ,0,0,0}, - {5833,5829,5831 ,5106,5102,5104 ,0,0,0}, {5834,5835,5836 ,5107,5108,5109 ,0,0,0}, - {5837,5838,5833 ,5110,5108,5106 ,0,0,0}, {5835,5839,5836 ,5108,5111,5109 ,0,0,0}, - {5835,5838,5839 ,5108,5108,5111 ,0,0,0}, {5839,5840,5841 ,5111,5112,5113 ,0,0,0}, - {5840,5842,5841 ,5112,5114,5113 ,0,0,0}, {5841,5842,5843 ,5113,5114,5115 ,0,0,0}, - {5842,5844,5843 ,5114,5116,5115 ,0,0,0}, {5845,5846,5844 ,5117,5118,5116 ,0,0,0}, - {5845,5847,5848 ,5117,5119,5120 ,0,0,0}, {5849,5848,5847 ,5121,5120,5119 ,0,0,0}, - {5849,5847,5850 ,5121,5119,5122 ,0,0,0}, {5850,5851,5849 ,5122,5123,5121 ,0,0,0}, - {5846,5843,5844 ,5118,5115,5116 ,0,0,0}, {5848,5846,5845 ,5120,5118,5117 ,0,0,0}, - {5851,5852,5853 ,5123,5124,5125 ,0,0,0}, {5852,5851,5850 ,5124,5123,5122 ,0,0,0}, - {5430,5853,5852 ,5126,5125,5124 ,0,0,0}, {5832,5829,5854 ,5105,5102,5127 ,0,0,0}, - {5855,5856,5857 ,5128,5129,5130 ,0,0,0}, {5855,5854,5856 ,5128,5127,5129 ,0,0,0}, - {5856,5858,5857 ,5129,5131,5130 ,0,0,0}, {5858,5856,5859 ,5131,5129,5132 ,0,0,0}, - {5860,5861,5862 ,5133,5134,5135 ,0,0,0}, {5860,5859,5861 ,5133,5132,5134 ,0,0,0}, - {5863,5862,5861 ,5136,5135,5134 ,0,0,0}, {5862,5863,5864 ,5135,5136,5137 ,0,0,0}, - {5865,5866,5867 ,5138,5139,5140 ,0,0,0}, {5868,5869,5863 ,5141,5142,5136 ,0,0,0}, - {5870,5871,5868 ,5143,5144,5141 ,0,0,0}, {5871,5870,5872 ,5144,5143,5145 ,0,0,0}, - {5873,5874,5870 ,5146,5147,5143 ,0,0,0}, {5827,5826,5875 ,5100,5099,5148 ,0,0,0}, - {5876,5877,5873 ,5149,5150,5146 ,0,0,0}, {5878,5879,5880 ,5151,5152,5153 ,0,0,0}, - {5881,5882,5883 ,5154,5155,5156 ,0,0,0}, {5884,5885,5886 ,5157,5158,5159 ,0,0,0}, - {5887,5888,5889 ,5160,5161,5162 ,0,0,0}, {5890,5891,5892 ,5163,5164,5165 ,0,0,0}, - {5893,5894,5895 ,5166,5167,5168 ,0,0,0}, {5893,5896,5897 ,5166,5169,5170 ,0,0,0}, - {5898,5899,5900 ,5171,5172,5173 ,0,0,0}, {5901,5902,5903 ,5174,5175,5176 ,0,0,0}, - {5904,5905,5906 ,5177,5178,5179 ,0,0,0}, {5907,5899,5898 ,5180,5172,5171 ,0,0,0}, - {5908,5909,5910 ,5179,5181,5182 ,0,0,0}, {5908,5906,5905 ,5179,5179,5178 ,0,0,0}, - {5911,5912,5913 ,5183,5184,5185 ,0,0,0}, {5914,5911,5910 ,5186,5183,5182 ,0,0,0}, - {5915,5916,5917 ,5187,5188,5189 ,0,0,0}, {5918,5915,5913 ,5190,5187,5185 ,0,0,0}, - {5919,5920,5921 ,5191,5192,5193 ,0,0,0}, {5920,5919,5917 ,5192,5191,5189 ,0,0,0}, - {5922,5923,5921 ,5194,5195,5193 ,0,0,0}, {5919,5921,5923 ,5191,5193,5195 ,0,0,0}, - {5922,5924,5925 ,5194,5196,5197 ,0,0,0}, {5925,5923,5922 ,5197,5195,5194 ,0,0,0}, - {5918,5916,5915 ,5190,5188,5187 ,0,0,0}, {5916,5920,5917 ,5188,5192,5189 ,0,0,0}, - {5912,5918,5913 ,5184,5190,5185 ,0,0,0}, {5914,5912,5911 ,5186,5184,5183 ,0,0,0}, - {5909,5914,5910 ,5181,5186,5182 ,0,0,0}, {5909,5908,5905 ,5181,5179,5178 ,0,0,0}, - {5905,5926,5909 ,5178,5198,5181 ,0,0,0}, {5898,5926,5907 ,5171,5198,5180 ,0,0,0}, - {5926,5905,5907 ,5198,5178,5180 ,0,0,0}, {5927,5928,5929 ,5199,5200,5201 ,0,0,0}, - {5900,5899,5901 ,5173,5172,5174 ,0,0,0}, {5927,5930,5931 ,5199,5202,5203 ,0,0,0}, - {5931,5928,5927 ,5203,5200,5199 ,0,0,0}, {5932,5930,5933 ,5204,5202,5205 ,0,0,0}, - {5930,5932,5931 ,5202,5204,5203 ,0,0,0}, {5934,5528,5933 ,5206,5207,5205 ,0,0,0}, - {5932,5933,5528 ,5204,5205,5207 ,0,0,0}, {5531,5528,5934 ,5197,5207,5206 ,0,0,0}, - {5929,5928,5935 ,5201,5200,5208 ,0,0,0}, {5936,5937,5938 ,5209,5210,5211 ,0,0,0}, - {5929,5935,5938 ,5201,5208,5211 ,0,0,0}, {5936,5939,5937 ,5209,5212,5210 ,0,0,0}, - {5938,5935,5936 ,5211,5208,5209 ,0,0,0}, {5902,5894,5903 ,5175,5167,5176 ,0,0,0}, - {5939,5940,5937 ,5212,5213,5210 ,0,0,0}, {5906,5940,5904 ,5179,5213,5177 ,0,0,0}, - {5939,5904,5940 ,5212,5177,5213 ,0,0,0}, {5901,5903,5900 ,5174,5176,5173 ,0,0,0}, - {5892,5881,5890 ,5165,5154,5163 ,0,0,0}, {5893,5895,5896 ,5166,5168,5169 ,0,0,0}, - {5894,5902,5895 ,5167,5175,5168 ,0,0,0}, {5896,5889,5897 ,5169,5162,5170 ,0,0,0}, - {5891,5888,5887 ,5164,5161,5160 ,0,0,0}, {5888,5897,5889 ,5161,5170,5162 ,0,0,0}, - {5892,5891,5887 ,5165,5164,5160 ,0,0,0}, {5878,5885,5884 ,5151,5158,5157 ,0,0,0}, - {5881,5883,5890 ,5154,5156,5163 ,0,0,0}, {5882,5886,5883 ,5155,5159,5156 ,0,0,0}, - {5880,5885,5878 ,5153,5158,5151 ,0,0,0}, {5882,5884,5886 ,5155,5157,5159 ,0,0,0}, - {5828,5880,5879 ,5101,5153,5152 ,0,0,0}, {5879,5480,5876 ,5152,5214,5149 ,0,0,0}, - {5834,5941,5835 ,5107,5215,5108 ,0,0,0}, {5840,5839,5838 ,5112,5111,5108 ,0,0,0}, - {5837,5942,5838 ,5110,5216,5108 ,0,0,0}, {5840,5838,5942 ,5112,5108,5216 ,0,0,0}, - {5943,5941,5944 ,5217,5215,5218 ,0,0,0}, {5831,5837,5833 ,5104,5110,5106 ,0,0,0}, - {5945,5943,5946 ,5219,5217,5220 ,0,0,0}, {5945,5947,5943 ,5219,5221,5217 ,0,0,0}, - {5948,5947,5949 ,5222,5221,5223 ,0,0,0}, {5855,5832,5854 ,5128,5105,5127 ,0,0,0}, - {5950,5948,5951 ,5224,5222,5225 ,0,0,0}, {5950,5952,5948 ,5224,5226,5222 ,0,0,0}, - {5953,5952,5954 ,5227,5226,5228 ,0,0,0}, {5860,5858,5859 ,5133,5131,5132 ,0,0,0}, - {5955,5956,5953 ,5229,5230,5227 ,0,0,0}, {5957,5956,5955 ,5231,5230,5229 ,0,0,0}, - {5958,5956,5959 ,5232,5230,5233 ,0,0,0}, {5869,5864,5863 ,5142,5137,5136 ,0,0,0}, - {5867,5958,5865 ,5140,5232,5138 ,0,0,0}, {5871,5869,5868 ,5144,5142,5141 ,0,0,0}, - {5960,5867,5961 ,5234,5140,5235 ,0,0,0}, {5874,5872,5870 ,5147,5145,5143 ,0,0,0}, - {5826,5960,5875 ,5099,5234,5148 ,0,0,0}, {5877,5874,5873 ,5150,5147,5146 ,0,0,0}, - {5877,5876,5480 ,5150,5149,5214 ,0,0,0}, {5879,5876,5828 ,5152,5149,5101 ,0,0,0}, - {5828,5876,5826 ,5101,5149,5099 ,0,0,0}, {5961,5875,5960 ,5235,5148,5234 ,0,0,0}, - {5866,5961,5867 ,5139,5235,5140 ,0,0,0}, {5959,5865,5958 ,5233,5138,5232 ,0,0,0}, - {5957,5959,5956 ,5231,5233,5230 ,0,0,0}, {5954,5955,5953 ,5228,5229,5227 ,0,0,0}, - {5950,5954,5952 ,5224,5228,5226 ,0,0,0}, {5949,5951,5948 ,5223,5225,5222 ,0,0,0}, - {5945,5949,5947 ,5219,5223,5221 ,0,0,0}, {5944,5946,5943 ,5218,5220,5217 ,0,0,0}, - {5834,5944,5941 ,5107,5218,5215 ,0,0,0}, {5962,5963,5964 ,5236,5237,5238 ,0,0,0}, - {5965,5966,5964 ,5239,5240,5238 ,0,0,0}, {5962,5964,5966 ,5236,5238,5240 ,0,0,0}, - {5965,5967,5968 ,5239,5241,5242 ,0,0,0}, {5968,5966,5965 ,5242,5240,5239 ,0,0,0}, - {5969,5967,5970 ,5243,5241,5244 ,0,0,0}, {5967,5969,5968 ,5241,5243,5242 ,0,0,0}, - {5971,5972,5970 ,5245,5246,5244 ,0,0,0}, {5969,5970,5972 ,5243,5244,5246 ,0,0,0}, - {5971,5973,5974 ,5245,5247,5248 ,0,0,0}, {5974,5972,5971 ,5248,5246,5245 ,0,0,0}, - {5975,5973,5976 ,5249,5247,5250 ,0,0,0}, {5973,5975,5974 ,5247,5249,5248 ,0,0,0}, - {5977,5978,5976 ,5251,5252,5250 ,0,0,0}, {5975,5976,5978 ,5249,5250,5252 ,0,0,0}, - {5977,5979,5980 ,5251,5253,5254 ,0,0,0}, {5980,5978,5977 ,5254,5252,5251 ,0,0,0}, - {5981,5979,5982 ,5255,5253,5256 ,0,0,0}, {5979,5981,5980 ,5253,5255,5254 ,0,0,0}, - {5983,5984,5982 ,5257,5258,5256 ,0,0,0}, {5981,5982,5984 ,5255,5256,5258 ,0,0,0}, - {5983,5985,5986 ,5257,5259,5260 ,0,0,0}, {5986,5984,5983 ,5260,5258,5257 ,0,0,0}, - {5987,5985,5988 ,5261,5259,5262 ,0,0,0}, {5985,5987,5986 ,5259,5261,5260 ,0,0,0}, - {5989,5990,5988 ,5263,5264,5262 ,0,0,0}, {5987,5988,5990 ,5261,5262,5264 ,0,0,0}, - {5989,5991,5992 ,5263,5265,5266 ,0,0,0}, {5992,5990,5989 ,5266,5264,5263 ,0,0,0}, - {5993,5991,5994 ,5267,5265,5268 ,0,0,0}, {5991,5993,5992 ,5265,5267,5266 ,0,0,0}, - {5995,5996,5994 ,5269,5270,5268 ,0,0,0}, {5993,5994,5996 ,5267,5268,5270 ,0,0,0}, - {5995,5997,5998 ,5269,5271,5272 ,0,0,0}, {5998,5996,5995 ,5272,5270,5269 ,0,0,0}, - {5999,5997,6000 ,5273,5271,5274 ,0,0,0}, {5997,5999,5998 ,5271,5273,5272 ,0,0,0}, - {6001,6002,6000 ,5275,5276,5274 ,0,0,0}, {5999,6000,6002 ,5273,5274,5276 ,0,0,0}, - {6001,6003,6004 ,5275,5277,5278 ,0,0,0}, {6004,6002,6001 ,5278,5276,5275 ,0,0,0}, - {6005,6003,6006 ,5279,5277,5280 ,0,0,0}, {6003,6005,6004 ,5277,5279,5278 ,0,0,0}, - {6007,6008,6006 ,5281,5282,5280 ,0,0,0}, {6005,6006,6008 ,5279,5280,5282 ,0,0,0}, - {6009,6007,6010 ,5283,5281,5284 ,0,0,0}, {6009,6008,6007 ,5283,5282,5281 ,0,0,0}, - {6011,6010,6012 ,5285,5284,5286 ,0,0,0}, {6007,6012,6010 ,5281,5286,5284 ,0,0,0}, - {6013,6011,6014 ,5287,5285,5288 ,0,0,0}, {6011,6012,6014 ,5285,5286,5288 ,0,0,0}, - {6013,6015,6016 ,5287,5289,5290 ,0,0,0}, {6016,6011,6013 ,5290,5285,5287 ,0,0,0}, - {6015,6017,6016 ,5289,5291,5290 ,0,0,0}, {6018,5963,5962 ,5292,5237,5236 ,0,0,0}, - {6018,6019,6020 ,5292,5293,5294 ,0,0,0}, {6020,5963,6018 ,5294,5237,5292 ,0,0,0}, - {6021,6019,6022 ,5295,5293,5296 ,0,0,0}, {6019,6021,6020 ,5293,5295,5294 ,0,0,0}, - {6023,6024,6022 ,5297,5298,5296 ,0,0,0}, {6021,6022,6024 ,5295,5296,5298 ,0,0,0}, - {6023,6025,6026 ,5297,5299,5300 ,0,0,0}, {6026,6024,6023 ,5300,5298,5297 ,0,0,0}, - {6027,6025,6028 ,5301,5299,5302 ,0,0,0}, {6025,6027,6026 ,5299,5301,5300 ,0,0,0}, - {6029,6030,6028 ,5303,5304,5302 ,0,0,0}, {6027,6028,6030 ,5301,5302,5304 ,0,0,0}, - {6029,6031,6032 ,5303,5305,5306 ,0,0,0}, {6032,6030,6029 ,5306,5304,5303 ,0,0,0}, - {6033,6031,6034 ,5307,5305,5308 ,0,0,0}, {6031,6033,6032 ,5305,5307,5306 ,0,0,0}, - {6035,6036,6034 ,5309,5310,5308 ,0,0,0}, {6033,6034,6036 ,5307,5308,5310 ,0,0,0}, - {6035,6037,6038 ,5309,5311,5312 ,0,0,0}, {6038,6036,6035 ,5312,5310,5309 ,0,0,0}, - {6039,6037,6040 ,5313,5311,5314 ,0,0,0}, {6037,6039,6038 ,5311,5313,5312 ,0,0,0}, - {6041,6042,6040 ,5315,5316,5314 ,0,0,0}, {6039,6040,6042 ,5313,5314,5316 ,0,0,0}, - {6041,6043,6044 ,5315,5317,5318 ,0,0,0}, {6044,6042,6041 ,5318,5316,5315 ,0,0,0}, - {6045,6043,6046 ,5319,5317,5320 ,0,0,0}, {6043,6045,6044 ,5317,5319,5318 ,0,0,0}, - {6047,6048,6046 ,5321,5322,5320 ,0,0,0}, {6045,6046,6048 ,5319,5320,5322 ,0,0,0}, - {6047,6049,6050 ,5321,5323,5324 ,0,0,0}, {6050,6048,6047 ,5324,5322,5321 ,0,0,0}, - {6051,6049,6052 ,5325,5323,5326 ,0,0,0}, {6049,6051,6050 ,5323,5325,5324 ,0,0,0}, - {6053,6054,6052 ,5327,5328,5326 ,0,0,0}, {6051,6052,6054 ,5325,5326,5328 ,0,0,0}, - {6053,6055,6056 ,5327,5329,5330 ,0,0,0}, {6056,6054,6053 ,5330,5328,5327 ,0,0,0}, - {6057,6055,6058 ,5331,5329,5332 ,0,0,0}, {6055,6057,6056 ,5329,5331,5330 ,0,0,0}, - {6059,6060,6058 ,5333,5334,5332 ,0,0,0}, {6057,6058,6060 ,5331,5332,5334 ,0,0,0}, - {6059,6061,6062 ,5333,5335,5336 ,0,0,0}, {6062,6060,6059 ,5336,5334,5333 ,0,0,0}, - {6063,6064,6061 ,5337,5338,5335 ,0,0,0}, {6061,6064,6062 ,5335,5338,5336 ,0,0,0}, - {6065,6066,6063 ,5339,5340,5337 ,0,0,0}, {6063,6061,6065 ,5337,5335,5339 ,0,0,0}, - {6067,6068,6066 ,5341,5342,5340 ,0,0,0}, {6067,6066,6065 ,5341,5340,5339 ,0,0,0}, - {6069,6068,6070 ,5343,5342,5344 ,0,0,0}, {6068,6069,6066 ,5342,5343,5340 ,0,0,0}, - {6069,6070,6071 ,5343,5344,5345 ,0,0,0}, {6072,6073,6074 ,5346,5347,5348 ,0,0,0}, - {6075,6076,6074 ,5349,5350,5348 ,0,0,0}, {6072,6074,6076 ,5346,5348,5350 ,0,0,0}, - {6075,6077,6078 ,5349,5351,5352 ,0,0,0}, {6078,6076,6075 ,5352,5350,5349 ,0,0,0}, - {6079,6077,6080 ,5353,5351,5354 ,0,0,0}, {6077,6079,6078 ,5351,5353,5352 ,0,0,0}, - {6081,6082,6080 ,5355,5356,5354 ,0,0,0}, {6079,6080,6082 ,5353,5354,5356 ,0,0,0}, - {6081,6083,6084 ,5355,5357,5358 ,0,0,0}, {6084,6082,6081 ,5358,5356,5355 ,0,0,0}, - {6085,6083,6086 ,5359,5357,5360 ,0,0,0}, {6083,6085,6084 ,5357,5359,5358 ,0,0,0}, - {6087,6088,6086 ,5361,5362,5360 ,0,0,0}, {6085,6086,6088 ,5359,5360,5362 ,0,0,0}, - {6087,6089,6090 ,5361,5363,5364 ,0,0,0}, {6090,6088,6087 ,5364,5362,5361 ,0,0,0}, - {6091,6089,6092 ,5365,5363,5366 ,0,0,0}, {6089,6091,6090 ,5363,5365,5364 ,0,0,0}, - {6093,6094,6092 ,5367,5368,5366 ,0,0,0}, {6091,6092,6094 ,5365,5366,5368 ,0,0,0}, - {6093,6095,6096 ,5367,5369,5370 ,0,0,0}, {6096,6094,6093 ,5370,5368,5367 ,0,0,0}, - {6097,6095,6098 ,5371,5369,5372 ,0,0,0}, {6095,6097,6096 ,5369,5371,5370 ,0,0,0}, - {6099,6100,6098 ,5373,5374,5372 ,0,0,0}, {6097,6098,6100 ,5371,5372,5374 ,0,0,0}, - {6099,6101,6102 ,5373,5375,5376 ,0,0,0}, {6102,6100,6099 ,5376,5374,5373 ,0,0,0}, - {6103,6101,6104 ,5377,5375,5378 ,0,0,0}, {6101,6103,6102 ,5375,5377,5376 ,0,0,0}, - {6105,6106,6104 ,5379,5380,5378 ,0,0,0}, {6103,6104,6106 ,5377,5378,5380 ,0,0,0}, - {6105,6107,6108 ,5379,5381,5382 ,0,0,0}, {6108,6106,6105 ,5382,5380,5379 ,0,0,0}, - {6109,6107,6110 ,5383,5381,5384 ,0,0,0}, {6107,6109,6108 ,5381,5383,5382 ,0,0,0}, - {6111,6112,6110 ,5385,5386,5384 ,0,0,0}, {6109,6110,6112 ,5383,5384,5386 ,0,0,0}, - {6111,6113,6114 ,5385,5387,5388 ,0,0,0}, {6114,6112,6111 ,5388,5386,5385 ,0,0,0}, - {6115,6113,6116 ,5389,5387,5390 ,0,0,0}, {6113,6115,6114 ,5387,5389,5388 ,0,0,0}, - {6117,6118,6116 ,5391,5392,5390 ,0,0,0}, {6115,6116,6118 ,5389,5390,5392 ,0,0,0}, - {6117,6119,6120 ,5391,5393,5394 ,0,0,0}, {6120,6118,6117 ,5394,5392,5391 ,0,0,0}, - {6121,6119,6122 ,5395,5393,5396 ,0,0,0}, {6119,6121,6120 ,5393,5395,5394 ,0,0,0}, - {6123,6124,6122 ,5397,5398,5396 ,0,0,0}, {6121,6122,6124 ,5395,5396,5398 ,0,0,0}, - {6123,6125,6126 ,5397,5399,5400 ,0,0,0}, {6126,6124,6123 ,5400,5398,5397 ,0,0,0}, - {6127,6125,6128 ,5401,5399,5402 ,0,0,0}, {6125,6127,6126 ,5399,5401,5400 ,0,0,0}, - {6129,6130,6128 ,5403,5404,5402 ,0,0,0}, {6127,6128,6130 ,5401,5402,5404 ,0,0,0}, - {6129,6131,6132 ,5403,5405,5406 ,0,0,0}, {6132,6130,6129 ,5406,5404,5403 ,0,0,0}, - {6131,6133,6132 ,5405,5407,5406 ,0,0,0}, {6134,6073,6072 ,5408,5347,5346 ,0,0,0}, - {6134,6135,6136 ,5408,5409,5410 ,0,0,0}, {6136,6073,6134 ,5410,5347,5408 ,0,0,0}, - {6137,6135,6138 ,5411,5409,5412 ,0,0,0}, {6135,6137,6136 ,5409,5411,5410 ,0,0,0}, - {6139,6140,6138 ,5413,5414,5412 ,0,0,0}, {6137,6138,6140 ,5411,5412,5414 ,0,0,0}, - {6139,6141,6142 ,5413,5415,5416 ,0,0,0}, {6142,6140,6139 ,5416,5414,5413 ,0,0,0}, - {6143,6141,6144 ,5417,5415,5418 ,0,0,0}, {6141,6143,6142 ,5415,5417,5416 ,0,0,0}, - {6145,6146,6144 ,5419,5420,5418 ,0,0,0}, {6143,6144,6146 ,5417,5418,5420 ,0,0,0}, - {6145,6147,6148 ,5419,5421,5422 ,0,0,0}, {6148,6146,6145 ,5422,5420,5419 ,0,0,0}, - {6149,6147,6150 ,5423,5421,5424 ,0,0,0}, {6147,6149,6148 ,5421,5423,5422 ,0,0,0}, - {6151,6152,6150 ,5425,5426,5424 ,0,0,0}, {6149,6150,6152 ,5423,5424,5426 ,0,0,0}, - {6151,6153,6154 ,5425,5427,5428 ,0,0,0}, {6154,6152,6151 ,5428,5426,5425 ,0,0,0}, - {6155,6153,6156 ,5429,5427,5430 ,0,0,0}, {6153,6155,6154 ,5427,5429,5428 ,0,0,0}, - {6157,6158,6156 ,5431,5432,5430 ,0,0,0}, {6155,6156,6158 ,5429,5430,5432 ,0,0,0}, - {6157,6159,6160 ,5431,5433,5434 ,0,0,0}, {6160,6158,6157 ,5434,5432,5431 ,0,0,0}, - {6161,6159,6162 ,5435,5433,5436 ,0,0,0}, {6159,6161,6160 ,5433,5435,5434 ,0,0,0}, - {6163,6164,6162 ,5437,5438,5436 ,0,0,0}, {6161,6162,6164 ,5435,5436,5438 ,0,0,0}, - {6163,6165,6166 ,5437,5439,5440 ,0,0,0}, {6166,6164,6163 ,5440,5438,5437 ,0,0,0}, - {6167,6165,6168 ,5441,5439,5442 ,0,0,0}, {6165,6167,6166 ,5439,5441,5440 ,0,0,0}, - {6169,6170,6168 ,5443,5444,5442 ,0,0,0}, {6167,6168,6170 ,5441,5442,5444 ,0,0,0}, - {6169,6171,6172 ,5443,5445,5446 ,0,0,0}, {6172,6170,6169 ,5446,5444,5443 ,0,0,0}, - {6173,6171,6174 ,5447,5445,5448 ,0,0,0}, {6171,6173,6172 ,5445,5447,5446 ,0,0,0}, - {6175,6176,6174 ,5449,5450,5448 ,0,0,0}, {6173,6174,6176 ,5447,5448,5450 ,0,0,0}, - {6175,6177,6178 ,5449,5451,5452 ,0,0,0}, {6178,6176,6175 ,5452,5450,5449 ,0,0,0}, - {6179,6177,6180 ,5453,5451,5454 ,0,0,0}, {6177,6179,6178 ,5451,5453,5452 ,0,0,0}, - {6181,6182,6180 ,5455,5456,5454 ,0,0,0}, {6179,6180,6182 ,5453,5454,5456 ,0,0,0}, - {6181,6183,6184 ,5455,5457,5458 ,0,0,0}, {6184,6182,6181 ,5458,5456,5455 ,0,0,0}, - {6185,6183,6186 ,5459,5457,5460 ,0,0,0}, {6183,6185,6184 ,5457,5459,5458 ,0,0,0}, - {6187,6188,6186 ,5461,5462,5460 ,0,0,0}, {6185,6186,6188 ,5459,5460,5462 ,0,0,0}, - {6187,6189,6190 ,5461,5463,5464 ,0,0,0}, {6190,6188,6187 ,5464,5462,5461 ,0,0,0}, - {6191,6189,6192 ,5465,5463,5466 ,0,0,0}, {6189,6191,6190 ,5463,5465,5464 ,0,0,0}, - {6191,6192,6193 ,5465,5466,5467 ,0,0,0}, {6194,5228,5227 ,5468,5469,5469 ,0,0,0}, - {6195,6196,6197 ,726,726,726 ,0,0,0}, {6198,4961,4958 ,726,5470,726 ,0,0,0}, - {6199,6200,6201 ,5471,726,726 ,0,0,0}, {6202,6203,6204 ,726,726,726 ,0,0,0}, - {6205,5183,6206 ,5468,5471,5469 ,0,0,0}, {6207,6208,6209 ,5470,726,726 ,0,0,0}, - {6210,6211,6212 ,5471,5469,5469 ,0,0,0}, {6213,6212,5156 ,5468,5469,5469 ,0,0,0}, - {6214,6215,5262 ,5469,5472,5468 ,0,0,0}, {6216,6217,6218 ,5469,5468,5471 ,0,0,0}, - {6219,6220,6221 ,5473,5474,726 ,0,0,0}, {6222,6223,6224 ,5475,5476,5471 ,0,0,0}, - {6225,6226,6227 ,5477,5478,5469 ,0,0,0}, {6220,6219,6228 ,5474,5473,5479 ,0,0,0}, - {6229,6230,6231 ,5471,5469,726 ,0,0,0}, {6232,6233,5221 ,5468,5469,5471 ,0,0,0}, - {6234,6235,6236 ,726,5480,5481 ,0,0,0}, {6227,6237,6238 ,5469,726,5468 ,0,0,0}, - {6239,6240,6241 ,5475,5475,5482 ,0,0,0}, {6242,4896,6239 ,5468,5483,5475 ,0,0,0}, - {6241,6243,6244 ,5482,5482,5482 ,0,0,0}, {6240,6243,6241 ,5475,5482,5482 ,0,0,0}, - {6244,6245,6241 ,5482,5475,5482 ,0,0,0}, {6236,6230,6246 ,5481,5469,5475 ,0,0,0}, - {6247,5276,6248 ,726,5471,5484 ,0,0,0}, {6220,6228,6238 ,5474,5479,5468 ,0,0,0}, - {6249,6250,6251 ,5475,5485,5468 ,0,0,0}, {6252,6253,6254 ,5486,5483,5468 ,0,0,0}, - {6237,6220,6238 ,726,5474,5468 ,0,0,0}, {5221,6233,5222 ,5471,5469,726 ,0,0,0}, - {5228,6194,5230 ,5469,5468,726 ,0,0,0}, {5234,5233,6255 ,5471,5471,726 ,0,0,0}, - {5262,5232,6214 ,5468,5468,5469 ,0,0,0}, {5260,5232,5262 ,5471,5468,5468 ,0,0,0}, - {5234,6256,5259 ,5471,5471,5469 ,0,0,0}, {6257,5266,5265 ,5468,5478,726 ,0,0,0}, - {5233,6258,6255 ,5471,726,726 ,0,0,0}, {5189,6259,6260 ,5471,5468,726 ,0,0,0}, - {6261,5276,5274 ,5475,5471,726 ,0,0,0}, {6262,6263,6264 ,5469,5482,5483 ,0,0,0}, - {6265,6263,6266 ,5468,5482,5475 ,0,0,0}, {6267,6268,6269 ,726,5468,5468 ,0,0,0}, - {6270,6218,6271 ,726,5471,5469 ,0,0,0}, {6272,6273,6274 ,5475,5475,726 ,0,0,0}, - {6268,6267,6275 ,5468,726,5483 ,0,0,0}, {6276,6277,6278 ,5480,5487,5475 ,0,0,0}, - {6275,6279,6262 ,5483,5478,5469 ,0,0,0}, {6280,6281,6282 ,5475,5479,5474 ,0,0,0}, - {6282,6248,6280 ,5474,5484,5475 ,0,0,0}, {6283,6284,6282 ,5473,726,5474 ,0,0,0}, - {6283,6282,6281 ,5473,5474,5479 ,0,0,0}, {6265,6264,6263 ,5468,5483,5482 ,0,0,0}, - {6277,6272,6285 ,5487,5475,726 ,0,0,0}, {6263,6262,6279 ,5482,5469,5478 ,0,0,0}, - {6286,6287,6247 ,5486,5478,726 ,0,0,0}, {6270,6271,6269 ,726,5469,5468 ,0,0,0}, - {5186,6259,5189 ,726,5468,5471 ,0,0,0}, {6280,6248,5276 ,5475,5484,5471 ,0,0,0}, - {6288,6289,6290 ,726,726,726 ,0,0,0}, {6291,6292,5192 ,5468,5469,726 ,0,0,0}, - {6261,5274,6293 ,5475,726,5482 ,0,0,0}, {6294,5198,6295 ,726,726,5470 ,0,0,0}, - {5271,6296,6297 ,5475,5485,5475 ,0,0,0}, {6298,6299,5116 ,5471,726,5471 ,0,0,0}, - {5020,6300,5015 ,726,5470,726 ,0,0,0}, {6301,6302,6303 ,5470,5471,5471 ,0,0,0}, - {6304,6305,6306 ,726,726,5470 ,0,0,0}, {6306,6207,6304 ,5470,5470,726 ,0,0,0}, - {6288,6209,6289 ,726,726,726 ,0,0,0}, {6307,6308,6309 ,726,726,5470 ,0,0,0}, - {6201,6301,6303 ,726,5470,5471 ,0,0,0}, {6305,6310,6311 ,726,726,726 ,0,0,0}, - {5200,6312,6313 ,726,5470,726 ,0,0,0}, {6314,6315,6316 ,5470,726,726 ,0,0,0}, - {6289,6209,6208 ,726,726,726 ,0,0,0}, {6312,6317,6318 ,5470,726,5468 ,0,0,0}, - {6289,6319,6290 ,726,726,726 ,0,0,0}, {6318,6320,6321 ,5468,5468,726 ,0,0,0}, - {6317,6320,6318 ,726,5468,5468 ,0,0,0}, {6321,6322,6318 ,726,5471,5468 ,0,0,0}, - {6323,6324,6325 ,726,726,5471 ,0,0,0}, {5200,6317,6312 ,726,726,5470 ,0,0,0}, - {6313,6326,6327 ,726,726,726 ,0,0,0}, {6328,6329,6330 ,726,5488,5489 ,0,0,0}, - {5158,6331,6332 ,5471,5470,726 ,0,0,0}, {5186,6212,6259 ,726,5469,5468 ,0,0,0}, - {6333,5113,5110 ,726,726,5471 ,0,0,0}, {6334,5037,5034 ,726,726,726 ,0,0,0}, - {6335,4970,6336 ,726,5470,726 ,0,0,0}, {6337,5113,6333 ,726,726,726 ,0,0,0}, - {6338,6339,6340 ,726,726,726 ,0,0,0}, {6341,6342,6343 ,5489,726,726 ,0,0,0}, - {5107,6344,5108 ,726,5471,726 ,0,0,0}, {6345,6339,6346 ,726,726,726 ,0,0,0}, - {6347,6348,6349 ,726,726,5489 ,0,0,0}, {6350,6351,6352 ,726,726,726 ,0,0,0}, - {6353,6339,6345 ,726,726,726 ,0,0,0}, {6195,6197,6352 ,726,726,726 ,0,0,0}, - {6354,6355,6356 ,726,726,5489 ,0,0,0}, {6196,6338,6340 ,726,726,726 ,0,0,0}, - {6357,6358,6359 ,726,726,726 ,0,0,0}, {6355,6360,6357 ,726,5488,726 ,0,0,0}, - {6353,6340,6339 ,726,726,726 ,0,0,0}, {6204,6341,5124 ,726,5489,726 ,0,0,0}, - {6361,6362,6363 ,5489,726,726 ,0,0,0}, {6361,6364,6362 ,5489,5488,726 ,0,0,0}, - {6365,6366,6367 ,726,5471,726 ,0,0,0}, {6362,6364,6368 ,726,5488,726 ,0,0,0}, - {6369,6362,6368 ,726,726,726 ,0,0,0}, {6370,5082,6371 ,726,726,726 ,0,0,0}, - {5040,6372,6373 ,726,726,726 ,0,0,0}, {5198,5196,6295 ,726,726,5470 ,0,0,0}, - {6204,5120,6374 ,726,726,726 ,0,0,0}, {6366,6375,6376 ,5471,5471,726 ,0,0,0}, - {6377,4938,6378 ,726,5470,726 ,0,0,0}, {6367,6379,6365 ,726,5471,726 ,0,0,0}, - {5048,6380,6381 ,5489,726,726 ,0,0,0}, {6382,6383,6384 ,726,726,726 ,0,0,0}, - {6385,6386,6384 ,726,5471,726 ,0,0,0}, {6349,6348,6387 ,5489,726,5488 ,0,0,0}, - {6334,6388,5037 ,726,726,726 ,0,0,0}, {6342,6204,6363 ,726,726,726 ,0,0,0}, - {6389,6334,6387 ,726,726,5488 ,0,0,0}, {4964,6390,6391 ,726,5471,726 ,0,0,0}, - {6392,6393,6383 ,726,5488,726 ,0,0,0}, {6384,6394,6395 ,726,5471,726 ,0,0,0}, - {6396,6397,6398 ,726,726,5488 ,0,0,0}, {6399,6400,6396 ,726,726,726 ,0,0,0}, - {6401,6400,6402 ,726,726,726 ,0,0,0}, {6403,5048,6381 ,726,5489,726 ,0,0,0}, - {6404,6384,6405 ,726,726,726 ,0,0,0}, {6381,6380,6406 ,726,726,726 ,0,0,0}, - {6383,6407,6392 ,726,726,726 ,0,0,0}, {6408,6406,6380 ,726,726,726 ,0,0,0}, - {6383,6393,6384 ,726,5488,726 ,0,0,0}, {6408,6409,6406 ,726,5488,726 ,0,0,0}, - {6410,6407,6383 ,726,726,726 ,0,0,0}, {6406,6409,6411 ,726,5488,726 ,0,0,0}, - {6384,6412,6394 ,726,726,5471 ,0,0,0}, {5243,6413,5242 ,5469,5468,5468 ,0,0,0}, - {5243,5248,6414 ,5469,726,726 ,0,0,0}, {6415,4955,6416 ,726,5471,5471 ,0,0,0}, - {6417,4862,6418 ,5470,5468,5468 ,0,0,0}, {4972,6419,6420 ,5470,726,726 ,0,0,0}, - {6421,6422,6423 ,5468,726,5469 ,0,0,0}, {6424,6425,6426 ,5471,5468,726 ,0,0,0}, - {6427,6421,6428 ,5468,5468,726 ,0,0,0}, {6429,6430,6431 ,726,5470,5469 ,0,0,0}, - {6432,6433,6434 ,726,5469,726 ,0,0,0}, {6435,6436,6437 ,5471,5469,726 ,0,0,0}, - {6438,5259,6439 ,726,5469,5470 ,0,0,0}, {6403,6440,6441 ,726,5489,726 ,0,0,0}, - {6384,6386,6442 ,726,5471,726 ,0,0,0}, {6443,5146,5145 ,5468,726,5469 ,0,0,0}, - {6444,6445,6334 ,5470,5471,726 ,0,0,0}, {6198,6446,4961 ,726,726,5470 ,0,0,0}, - {6447,5006,5005 ,5471,726,726 ,0,0,0}, {6448,5248,5246 ,726,726,5468 ,0,0,0}, - {6449,6450,6451 ,726,5470,5471 ,0,0,0}, {6452,6453,6454 ,5471,726,5470 ,0,0,0}, - {6455,6456,6457 ,726,5470,726 ,0,0,0}, {6419,6458,6420 ,726,726,726 ,0,0,0}, - {6458,6419,6459 ,726,726,726 ,0,0,0}, {6420,6450,4972 ,726,5470,5470 ,0,0,0}, - {6458,6459,6460 ,726,726,726 ,0,0,0}, {6432,6426,6425 ,726,726,5468 ,0,0,0}, - {6458,6460,6461 ,726,726,726 ,0,0,0}, {6462,6463,6464 ,5471,5471,5468 ,0,0,0}, - {6430,6437,6431 ,5470,726,5469 ,0,0,0}, {6465,6429,6466 ,726,726,726 ,0,0,0}, - {6467,6468,6436 ,5468,5469,5469 ,0,0,0}, {6436,6435,6467 ,5469,5471,5468 ,0,0,0}, - {6469,6470,6467 ,5471,726,5468 ,0,0,0}, {6467,6470,6468 ,5468,726,5469 ,0,0,0}, - {5266,6471,5268 ,5478,5487,5468 ,0,0,0}, {5200,5198,6294 ,726,726,726 ,0,0,0}, - {6293,5274,5272 ,5482,726,5468 ,0,0,0}, {6292,5195,5192 ,5469,726,726 ,0,0,0}, - {6213,6210,6212 ,5468,5471,5469 ,0,0,0}, {6472,6211,6210 ,5468,5469,5471 ,0,0,0}, - {6217,6216,6473 ,5468,5469,5469 ,0,0,0}, {6211,6472,6474 ,5469,5468,5470 ,0,0,0}, - {6216,6218,6270 ,5469,5471,726 ,0,0,0}, {6473,6474,6475 ,5469,5470,5469 ,0,0,0}, - {6269,6271,6267 ,5468,5469,726 ,0,0,0}, {6275,6262,6268 ,5483,5469,5468 ,0,0,0}, - {6273,6279,6274 ,5475,5478,726 ,0,0,0}, {6279,6275,6274 ,5478,5483,726 ,0,0,0}, - {6286,6276,6287 ,5486,5480,5478 ,0,0,0}, {6277,6273,6272 ,5487,5475,5475 ,0,0,0}, - {6276,6278,6287 ,5480,5475,5478 ,0,0,0}, {6278,6277,6285 ,5475,5487,726 ,0,0,0}, - {6248,6286,6247 ,5484,5486,726 ,0,0,0}, {6261,6280,5276 ,5475,5475,5471 ,0,0,0}, - {6293,5272,6297 ,5482,5468,5475 ,0,0,0}, {6297,5272,5271 ,5475,5468,5475 ,0,0,0}, - {5268,6471,6296 ,5468,5487,5485 ,0,0,0}, {6296,5271,5268 ,5485,5475,5468 ,0,0,0}, - {6257,6471,5266 ,5468,5487,5478 ,0,0,0}, {6215,6257,5265 ,5472,5468,726 ,0,0,0}, - {6439,5259,6256 ,5470,5469,5471 ,0,0,0}, {5262,6215,5265 ,5468,5472,726 ,0,0,0}, - {6476,6477,5242 ,5471,5470,5468 ,0,0,0}, {5239,6477,6478 ,726,5470,726 ,0,0,0}, - {6224,6479,6222 ,5471,5468,5475 ,0,0,0}, {6233,6480,5222 ,5469,5469,726 ,0,0,0}, - {6481,6482,6242 ,5472,5482,5468 ,0,0,0}, {5205,4874,5201 ,5468,5468,5468 ,0,0,0}, - {4882,4880,6421 ,5471,726,5468 ,0,0,0}, {5137,4784,5135 ,5471,726,5469 ,0,0,0}, - {5148,6483,5151 ,5471,726,726 ,0,0,0}, {6333,5110,6199 ,726,5471,5471 ,0,0,0}, - {4804,6484,6485 ,726,726,5470 ,0,0,0}, {6486,6487,5046 ,726,726,726 ,0,0,0}, - {6488,5166,6489 ,726,726,5471 ,0,0,0}, {4781,6490,4778 ,5471,5471,5471 ,0,0,0}, - {4793,6491,6492 ,726,5469,5469 ,0,0,0}, {5132,5245,5251 ,5471,5469,5469 ,0,0,0}, - {5239,5242,6477 ,726,5468,5470 ,0,0,0}, {5255,5133,5251 ,5468,726,5469 ,0,0,0}, - {5245,4789,5246 ,5469,5471,5468 ,0,0,0}, {6448,6414,5248 ,726,726,726 ,0,0,0}, - {6414,6413,5243 ,726,5468,5469 ,0,0,0}, {6413,6476,5242 ,5468,5471,5468 ,0,0,0}, - {5236,5239,6478 ,726,726,726 ,0,0,0}, {5232,5260,6438 ,5468,5471,726 ,0,0,0}, - {5236,6258,5233 ,726,726,5471 ,0,0,0}, {6258,5236,6478 ,726,726,726 ,0,0,0}, - {6255,6256,5234 ,726,5471,5471 ,0,0,0}, {5259,6438,5260 ,5469,726,5471 ,0,0,0}, - {5230,6493,5232 ,726,5468,5468 ,0,0,0}, {6223,6214,6494 ,5476,5469,5468 ,0,0,0}, - {6493,6214,5232 ,5468,5469,5468 ,0,0,0}, {5222,6480,5224 ,726,5469,5470 ,0,0,0}, - {5227,5224,6495 ,5469,5470,726 ,0,0,0}, {6480,6495,5224 ,5469,726,5470 ,0,0,0}, - {6226,6225,6250 ,5478,5477,5485 ,0,0,0}, {5202,4874,6232 ,726,5468,5468 ,0,0,0}, - {5202,6232,5221 ,726,5468,5471 ,0,0,0}, {6496,6497,4894 ,5470,5470,5468 ,0,0,0}, - {4896,6240,6239 ,5483,5475,5475 ,0,0,0}, {6498,4880,4879 ,5468,726,5468 ,0,0,0}, - {6499,4854,6500 ,5469,5468,5471 ,0,0,0}, {4968,6336,4970 ,726,726,5470 ,0,0,0}, - {6501,6502,4930 ,5471,5471,5471 ,0,0,0}, {6503,5018,6504 ,726,726,5471 ,0,0,0}, - {6505,6506,6507 ,5471,5470,5471 ,0,0,0}, {5014,5015,6508 ,726,726,726 ,0,0,0}, - {4958,6375,6198 ,726,5471,726 ,0,0,0}, {6388,6334,6509 ,726,726,726 ,0,0,0}, - {5254,6510,5126 ,726,5468,5469 ,0,0,0}, {5151,6511,5152 ,726,726,5468 ,0,0,0}, - {5120,6204,5122 ,726,726,726 ,0,0,0}, {6299,5119,5116 ,726,5471,5471 ,0,0,0}, - {5080,6200,6199 ,726,726,5471 ,0,0,0}, {6201,6200,6301 ,726,726,5470 ,0,0,0}, - {6310,6323,6311 ,726,726,726 ,0,0,0}, {6325,6512,6302 ,5471,726,5471 ,0,0,0}, - {6303,6302,6512 ,5471,5471,726 ,0,0,0}, {6324,6323,6310 ,726,726,726 ,0,0,0}, - {6324,6512,6325 ,726,726,5471 ,0,0,0}, {6311,6306,6305 ,726,5470,726 ,0,0,0}, - {6207,6209,6304 ,5470,726,726 ,0,0,0}, {6308,6208,6309 ,726,726,5470 ,0,0,0}, - {6208,6207,6309 ,726,5470,5470 ,0,0,0}, {6315,6327,6326 ,726,726,726 ,0,0,0}, - {6307,6316,6513 ,726,726,5471 ,0,0,0}, {6513,6308,6307 ,5471,726,726 ,0,0,0}, - {6315,6314,6327 ,726,5470,726 ,0,0,0}, {6316,6315,6513 ,726,726,5471 ,0,0,0}, - {6312,6326,6313 ,5470,726,726 ,0,0,0}, {6294,6317,5200 ,726,726,726 ,0,0,0}, - {5186,5184,6212 ,726,726,5469 ,0,0,0}, {6295,5196,6514 ,5470,726,5470 ,0,0,0}, - {5195,6292,6514 ,726,5469,5470 ,0,0,0}, {6514,5196,5195 ,5470,726,726 ,0,0,0}, - {6291,5190,6260 ,5468,726,726 ,0,0,0}, {5190,6291,5192 ,726,5468,726 ,0,0,0}, - {5189,6260,5190 ,5471,726,726 ,0,0,0}, {6332,5183,5158 ,726,5471,5471 ,0,0,0}, - {5158,5157,6331 ,5471,5471,5470 ,0,0,0}, {6206,5183,6332 ,5469,5471,726 ,0,0,0}, - {6515,6516,5160 ,5470,5470,726 ,0,0,0}, {6488,5163,5166 ,726,5470,726 ,0,0,0}, - {6516,5157,5160 ,5470,5471,726 ,0,0,0}, {5167,5172,6517 ,726,726,726 ,0,0,0}, - {5167,6518,5166 ,726,5470,726 ,0,0,0}, {6519,5172,5170 ,726,726,5470 ,0,0,0}, - {5059,5061,4798 ,726,726,726 ,0,0,0}, {5175,5056,5169 ,726,726,5471 ,0,0,0}, - {5072,6520,5075 ,726,726,5470 ,0,0,0}, {5146,6521,5148 ,726,5471,5471 ,0,0,0}, - {6522,4904,4907 ,5471,5470,726 ,0,0,0}, {6523,4777,6524 ,726,726,5470 ,0,0,0}, - {5094,4808,6525 ,5471,5470,5470 ,0,0,0}, {6526,6527,5090 ,726,5471,726 ,0,0,0}, - {4784,5137,4783 ,726,5471,726 ,0,0,0}, {5255,5254,5129 ,5468,726,5471 ,0,0,0}, - {5179,5057,5175 ,5470,5471,726 ,0,0,0}, {5070,5069,6528 ,726,726,726 ,0,0,0}, - {4797,4771,5169 ,5470,5471,5471 ,0,0,0}, {6519,6517,5172 ,726,726,726 ,0,0,0}, - {6517,6518,5167 ,726,5470,726 ,0,0,0}, {6518,6489,5166 ,5470,5471,726 ,0,0,0}, - {5163,6515,5160 ,5470,5470,726 ,0,0,0}, {6515,5163,6488 ,5470,5470,726 ,0,0,0}, - {6213,5156,5154 ,5468,5469,726 ,0,0,0}, {6516,6331,5157 ,5470,5470,5471 ,0,0,0}, - {5184,5156,6212 ,726,5469,5469 ,0,0,0}, {6205,5184,5183 ,5468,726,5471 ,0,0,0}, - {6205,5156,5184 ,5468,5469,726 ,0,0,0}, {5154,5152,6511 ,726,5468,726 ,0,0,0}, - {5154,6511,6213 ,726,726,5468 ,0,0,0}, {5151,6483,6511 ,726,726,726 ,0,0,0}, - {5148,6521,6483 ,5471,5471,726 ,0,0,0}, {5145,6510,6443 ,5469,5468,5468 ,0,0,0}, - {5146,6443,6521 ,726,5468,5471 ,0,0,0}, {5126,5125,5254 ,5469,5468,726 ,0,0,0}, - {5145,5126,6510 ,5469,5469,5468 ,0,0,0}, {5129,5133,5255 ,5471,726,5468 ,0,0,0}, - {5125,5129,5254 ,5468,5471,726 ,0,0,0}, {5133,5132,5251 ,726,5471,5469 ,0,0,0}, - {4784,4787,5135 ,726,726,5469 ,0,0,0}, {4783,5137,5139 ,726,5471,5470 ,0,0,0}, - {6490,6524,4778 ,5471,5470,5471 ,0,0,0}, {4781,4783,5139 ,5471,726,5470 ,0,0,0}, - {6523,6519,4775 ,726,726,5470 ,0,0,0}, {5178,6529,5050 ,5470,5470,726 ,0,0,0}, - {5075,6530,5076 ,5470,5470,5470 ,0,0,0}, {6487,5048,5046 ,726,5489,726 ,0,0,0}, - {6373,5043,5040 ,726,726,726 ,0,0,0}, {6531,6387,6334 ,5489,5488,726 ,0,0,0}, - {6387,6531,6349 ,5488,5489,5489 ,0,0,0}, {6350,6328,6351 ,726,726,726 ,0,0,0}, - {6330,6532,6347 ,5489,726,726 ,0,0,0}, {6348,6347,6532 ,726,726,726 ,0,0,0}, - {6329,6328,6350 ,5488,726,726 ,0,0,0}, {6329,6532,6330 ,5488,726,5489 ,0,0,0}, - {6351,6195,6352 ,726,726,726 ,0,0,0}, {6196,6340,6197 ,726,726,726 ,0,0,0}, - {6356,6338,6354 ,5489,726,726 ,0,0,0}, {6338,6196,6354 ,726,726,726 ,0,0,0}, - {6342,6359,6343 ,726,726,726 ,0,0,0}, {6357,6356,6355 ,726,5489,726 ,0,0,0}, - {6359,6358,6343 ,726,726,726 ,0,0,0}, {6358,6357,6360 ,726,726,5488 ,0,0,0}, - {6342,6341,6204 ,726,5489,726 ,0,0,0}, {6363,6204,6361 ,726,726,5489 ,0,0,0}, - {5110,5108,6199 ,5471,726,5471 ,0,0,0}, {6204,6374,6202 ,726,726,726 ,0,0,0}, - {5119,6299,6374 ,5471,726,726 ,0,0,0}, {6374,5120,5119 ,726,726,5471 ,0,0,0}, - {6298,5114,6337 ,5471,726,726 ,0,0,0}, {5114,6298,5116 ,726,5471,5471 ,0,0,0}, - {5113,6337,5114 ,726,726,726 ,0,0,0}, {6533,5082,6370 ,5471,726,726 ,0,0,0}, - {5082,5081,6371 ,726,726,726 ,0,0,0}, {5107,5082,6533 ,726,726,5471 ,0,0,0}, - {6534,6535,5084 ,726,726,726 ,0,0,0}, {6527,5087,5090 ,5471,726,726 ,0,0,0}, - {6535,5081,5084 ,726,726,726 ,0,0,0}, {5091,5096,6536 ,726,726,726 ,0,0,0}, - {5091,6537,5090 ,726,5471,726 ,0,0,0}, {6525,5096,5094 ,5470,726,5471 ,0,0,0}, - {4813,4980,4983 ,5471,5471,726 ,0,0,0}, {5099,4980,5093 ,726,5471,726 ,0,0,0}, - {6538,4808,4807 ,5471,5470,726 ,0,0,0}, {5072,5070,6539 ,726,726,726 ,0,0,0}, - {4813,4810,5093 ,5471,726,726 ,0,0,0}, {4994,6540,4996 ,726,5470,726 ,0,0,0}, - {4901,5027,5026 ,5470,726,726 ,0,0,0}, {5014,6541,5011 ,726,726,5471 ,0,0,0}, - {5061,4801,4798 ,726,726,726 ,0,0,0}, {5179,5178,5053 ,5470,5470,726 ,0,0,0}, - {5103,4981,5099 ,5471,726,726 ,0,0,0}, {6503,5020,5018 ,726,726,726 ,0,0,0}, - {5093,4810,5094 ,726,726,5471 ,0,0,0}, {6525,6536,5096 ,5470,726,726 ,0,0,0}, - {6536,6537,5091 ,726,5471,726 ,0,0,0}, {6537,6526,5090 ,5471,726,726 ,0,0,0}, - {5087,6534,5084 ,726,726,726 ,0,0,0}, {6534,5087,6527 ,726,726,5471 ,0,0,0}, - {6542,5080,5078 ,5470,726,726 ,0,0,0}, {6535,6371,5081 ,726,726,726 ,0,0,0}, - {5108,5080,6199 ,726,726,5471 ,0,0,0}, {5080,5108,6344 ,726,726,5471 ,0,0,0}, - {6533,6344,5107 ,5471,5471,726 ,0,0,0}, {5080,6542,6200 ,726,5470,726 ,0,0,0}, - {5078,5076,6530 ,726,5470,5470 ,0,0,0}, {5078,6530,6542 ,726,5470,5470 ,0,0,0}, - {5075,6520,6530 ,5470,726,5470 ,0,0,0}, {5072,6539,6520 ,726,726,726 ,0,0,0}, - {5069,6529,6528 ,726,5470,726 ,0,0,0}, {5070,6528,6539 ,726,726,726 ,0,0,0}, - {5050,5049,5178 ,726,5470,5470 ,0,0,0}, {5069,5050,6529 ,726,726,5470 ,0,0,0}, - {5053,5057,5179 ,726,5471,5470 ,0,0,0}, {5049,5053,5178 ,5470,726,5470 ,0,0,0}, - {5057,5056,5175 ,5471,726,726 ,0,0,0}, {4798,4797,5059 ,726,5470,726 ,0,0,0}, - {4801,5063,4802 ,726,726,5471 ,0,0,0}, {4804,4802,6484 ,726,5471,726 ,0,0,0}, - {5061,5063,4801 ,726,726,726 ,0,0,0}, {6525,4808,6538 ,5470,5470,5471 ,0,0,0}, - {5044,6486,5046 ,5488,726,726 ,0,0,0}, {5246,4791,6448 ,5468,5470,726 ,0,0,0}, - {4970,6335,4972 ,5470,726,5470 ,0,0,0}, {6391,4967,4964 ,726,726,726 ,0,0,0}, - {6375,6543,6376 ,5471,726,726 ,0,0,0}, {6366,6376,6367 ,5471,726,726 ,0,0,0}, - {6412,6544,6379 ,726,5471,5471 ,0,0,0}, {6365,6379,6544 ,726,5471,5471 ,0,0,0}, - {6384,6442,6412 ,726,726,726 ,0,0,0}, {6442,6544,6412 ,726,5471,726 ,0,0,0}, - {6395,6405,6384 ,726,726,726 ,0,0,0}, {6545,6385,6384 ,726,726,726 ,0,0,0}, - {6382,6384,6397 ,726,726,726 ,0,0,0}, {6398,6397,6384 ,5488,726,726 ,0,0,0}, - {6440,6401,6441 ,5489,726,726 ,0,0,0}, {6400,6397,6396 ,726,726,726 ,0,0,0}, - {6401,6402,6441 ,726,726,726 ,0,0,0}, {6402,6400,6399 ,726,726,726 ,0,0,0}, - {6381,6440,6403 ,726,5489,726 ,0,0,0}, {6487,6380,5048 ,726,726,5489 ,0,0,0}, - {5032,5031,6334 ,726,5471,726 ,0,0,0}, {5043,6546,5044 ,726,726,5488 ,0,0,0}, - {6486,5044,6546 ,726,5488,726 ,0,0,0}, {6372,5038,6388 ,726,726,726 ,0,0,0}, - {6373,6546,5043 ,726,726,726 ,0,0,0}, {5038,6372,5040 ,726,726,726 ,0,0,0}, - {5037,6388,5038 ,726,726,726 ,0,0,0}, {6444,6334,6547 ,5470,726,5471 ,0,0,0}, - {6547,5006,6447 ,5471,726,5471 ,0,0,0}, {6547,6334,5006 ,5471,726,726 ,0,0,0}, - {5008,6548,5005 ,5471,726,726 ,0,0,0}, {5014,6549,6541 ,726,726,726 ,0,0,0}, - {5008,6550,6548 ,5471,726,726 ,0,0,0}, {6551,4999,4996 ,5471,726,726 ,0,0,0}, - {4999,6552,5000 ,726,726,726 ,0,0,0}, {6553,4994,4993 ,726,726,5471 ,0,0,0}, - {5102,6554,4974 ,5471,5471,5471 ,0,0,0}, {4977,5103,5102 ,726,5471,5471 ,0,0,0}, - {4813,5093,4980 ,5471,726,5471 ,0,0,0}, {6555,6556,6557 ,5470,726,726 ,0,0,0}, - {6558,4820,4990 ,726,5470,5471 ,0,0,0}, {5026,6559,4898 ,726,726,726 ,0,0,0}, - {6560,4924,4923 ,5471,5470,5471 ,0,0,0}, {4923,4920,6561 ,5471,726,726 ,0,0,0}, - {5023,4904,5017 ,726,5470,726 ,0,0,0}, {4816,4983,4985 ,5471,726,726 ,0,0,0}, - {5027,4905,5023 ,726,5471,726 ,0,0,0}, {4917,6562,4918 ,726,726,5471 ,0,0,0}, - {5017,6563,5018 ,726,726,726 ,0,0,0}, {6503,6300,5020 ,726,5470,726 ,0,0,0}, - {6300,6508,5015 ,5470,726,726 ,0,0,0}, {6508,6549,5014 ,726,726,726 ,0,0,0}, - {5011,6550,5008 ,5471,726,5471 ,0,0,0}, {6550,5011,6541 ,726,5471,726 ,0,0,0}, - {6552,6564,5002 ,726,726,726 ,0,0,0}, {5002,6564,6334 ,726,726,726 ,0,0,0}, - {6548,6447,5005 ,726,5471,726 ,0,0,0}, {5034,5032,6334 ,726,726,726 ,0,0,0}, - {6334,5031,5006 ,726,5471,726 ,0,0,0}, {5004,6334,6445 ,5471,726,5471 ,0,0,0}, - {6564,6531,6334 ,726,5489,726 ,0,0,0}, {5002,5000,6552 ,726,726,726 ,0,0,0}, - {4999,6551,6552 ,726,5471,726 ,0,0,0}, {4996,6540,6551 ,726,5470,5471 ,0,0,0}, - {4993,6554,6553 ,5471,5471,726 ,0,0,0}, {4994,6553,6540 ,726,726,5470 ,0,0,0}, - {4974,4973,5102 ,5471,726,5471 ,0,0,0}, {4993,4974,6554 ,5471,5471,5471 ,0,0,0}, - {4977,4981,5103 ,726,726,5471 ,0,0,0}, {4973,4977,5102 ,726,726,5471 ,0,0,0}, - {4981,4980,5099 ,726,5471,726 ,0,0,0}, {4816,4813,4983 ,5471,5471,726 ,0,0,0}, - {4816,4985,4819 ,5471,726,726 ,0,0,0}, {4987,4820,4819 ,726,5470,726 ,0,0,0}, - {4987,4819,4985 ,726,726,726 ,0,0,0}, {4987,4990,4820 ,726,5471,5470 ,0,0,0}, - {6565,4863,4868 ,5468,5469,5470 ,0,0,0}, {6421,6433,6428 ,5468,5469,726 ,0,0,0}, - {5208,4871,5209 ,5468,5471,5469 ,0,0,0}, {4891,4888,6421 ,5469,5471,5468 ,0,0,0}, - {4852,6434,6433 ,5469,726,5469 ,0,0,0}, {6432,6434,6426 ,726,726,726 ,0,0,0}, - {6466,6463,6465 ,726,5471,726 ,0,0,0}, {6462,6566,6424 ,5471,5468,5471 ,0,0,0}, - {6425,6424,6566 ,5468,5471,5468 ,0,0,0}, {6464,6463,6466 ,5468,5471,726 ,0,0,0}, - {6464,6566,6462 ,5468,5468,5471 ,0,0,0}, {6465,6430,6429 ,726,5470,726 ,0,0,0}, - {6437,6436,6431 ,726,5469,5469 ,0,0,0}, {6456,6435,6457 ,5470,5471,726 ,0,0,0}, - {6435,6437,6457 ,5471,726,726 ,0,0,0}, {6453,6449,6451 ,726,726,5471 ,0,0,0}, - {6455,6454,6567 ,726,5470,726 ,0,0,0}, {6567,6456,6455 ,726,5470,726 ,0,0,0}, - {6453,6452,6449 ,726,5471,726 ,0,0,0}, {6454,6453,6567 ,5470,726,726 ,0,0,0}, - {6420,6451,6450 ,726,5471,5470 ,0,0,0}, {6335,6419,4972 ,726,726,5470 ,0,0,0}, - {4958,4956,6375 ,726,5470,5471 ,0,0,0}, {4967,6568,4968 ,726,726,726 ,0,0,0}, - {6336,4968,6568 ,726,726,726 ,0,0,0}, {6390,4962,6446 ,5471,5470,726 ,0,0,0}, - {6391,6568,4967 ,726,726,726 ,0,0,0}, {4962,6390,4964 ,5470,5471,726 ,0,0,0}, - {4961,6446,4962 ,5470,726,5470 ,0,0,0}, {6502,4955,4930 ,5471,5471,5471 ,0,0,0}, - {4930,4929,6501 ,5471,726,5471 ,0,0,0}, {6416,4955,6502 ,5471,5471,5471 ,0,0,0}, - {6569,6570,4932 ,5471,726,726 ,0,0,0}, {6377,4935,4938 ,726,5470,5470 ,0,0,0}, - {6570,4929,4932 ,726,726,726 ,0,0,0}, {4939,4944,6571 ,5470,726,726 ,0,0,0}, - {4939,6572,4938 ,5470,726,5470 ,0,0,0}, {6573,4944,4942 ,726,726,726 ,0,0,0}, - {4831,4833,6574 ,726,5471,5471 ,0,0,0}, {4918,6575,4920 ,5471,726,726 ,0,0,0}, - {6576,6577,6578 ,5471,726,726 ,0,0,0}, {4866,6576,6579 ,5471,5471,5471 ,0,0,0}, - {6448,4791,6580 ,726,5470,5469 ,0,0,0}, {5208,5211,6581 ,5468,5468,5470 ,0,0,0}, - {4847,6582,4848 ,726,726,5471 ,0,0,0}, {4866,6579,4868 ,5471,5471,5470 ,0,0,0}, - {4947,4828,4941 ,726,5470,5470 ,0,0,0}, {4909,6583,6584 ,5470,5471,726 ,0,0,0}, - {4951,4829,4947 ,726,5471,726 ,0,0,0}, {6585,6574,4833 ,5471,5471,5471 ,0,0,0}, - {6586,6587,4941 ,726,5471,5470 ,0,0,0}, {6573,6571,4944 ,726,726,726 ,0,0,0}, - {6571,6572,4939 ,726,726,5470 ,0,0,0}, {6572,6378,4938 ,726,726,5470 ,0,0,0}, - {4935,6569,4932 ,5470,5471,726 ,0,0,0}, {6569,4935,6377 ,5471,5470,726 ,0,0,0}, - {4926,6560,6543 ,5471,5471,726 ,0,0,0}, {6543,4928,4926 ,726,726,5471 ,0,0,0}, - {6570,6501,4929 ,726,5471,726 ,0,0,0}, {4956,4928,6375 ,5470,726,5471 ,0,0,0}, - {6415,4956,4955 ,726,5470,5471 ,0,0,0}, {6415,4928,4956 ,726,726,5470 ,0,0,0}, - {6375,4928,6543 ,5471,726,726 ,0,0,0}, {4926,4924,6560 ,5471,5470,5471 ,0,0,0}, - {4923,6561,6560 ,5471,726,5471 ,0,0,0}, {4920,6575,6561 ,726,726,726 ,0,0,0}, - {4917,6559,6562 ,726,726,726 ,0,0,0}, {4918,6562,6575 ,5471,726,726 ,0,0,0}, - {4898,4897,5026 ,726,5471,726 ,0,0,0}, {4917,4898,6559 ,726,726,726 ,0,0,0}, - {4901,4905,5027 ,5470,5471,726 ,0,0,0}, {4897,4901,5026 ,5471,5470,726 ,0,0,0}, - {4905,4904,5023 ,5471,5470,726 ,0,0,0}, {6584,6522,4907 ,726,5471,726 ,0,0,0}, - {5017,4904,6522 ,726,5470,5471 ,0,0,0}, {4914,6588,6589 ,726,726,726 ,0,0,0}, - {6583,4911,6589 ,5471,726,726 ,0,0,0}, {6590,6591,6592 ,5470,5470,5471 ,0,0,0}, - {4894,6497,4896 ,5468,5470,5483 ,0,0,0}, {5202,5201,4874 ,726,5468,5468 ,0,0,0}, - {4894,4892,6496 ,5468,5469,5470 ,0,0,0}, {5230,6194,6493 ,726,5468,5468 ,0,0,0}, - {5227,6495,6194 ,5469,726,5468 ,0,0,0}, {6493,6494,6214 ,5468,5468,5469 ,0,0,0}, - {6223,6494,6224 ,5476,5468,5471 ,0,0,0}, {6251,6254,6249 ,5468,5468,5475 ,0,0,0}, - {6253,6593,6479 ,5483,726,5468 ,0,0,0}, {6222,6479,6593 ,5475,5468,726 ,0,0,0}, - {6252,6254,6251 ,5486,5468,5468 ,0,0,0}, {6252,6593,6253 ,5486,726,5483 ,0,0,0}, - {6249,6226,6250 ,5475,5478,5485 ,0,0,0}, {6227,6238,6225 ,5469,5468,5477 ,0,0,0}, - {6231,6237,6229 ,726,726,5471 ,0,0,0}, {6237,6227,6229 ,726,5469,5471 ,0,0,0}, - {6481,6235,6482 ,5472,5480,5482 ,0,0,0}, {6236,6231,6230 ,5481,726,5469 ,0,0,0}, - {6235,6234,6482 ,5480,726,5482 ,0,0,0}, {6234,6236,6246 ,726,5481,5475 ,0,0,0}, - {6239,6481,6242 ,5475,5472,5468 ,0,0,0}, {6497,6240,4896 ,5470,5475,5483 ,0,0,0}, - {6421,4880,6498 ,5468,726,5468 ,0,0,0}, {4891,6423,4892 ,5469,5469,5469 ,0,0,0}, - {6496,4892,6423 ,5470,5469,5469 ,0,0,0}, {6594,6422,6421 ,5468,726,5468 ,0,0,0}, - {6423,4891,6421 ,5469,5469,5468 ,0,0,0}, {6421,4888,4886 ,5468,5471,5470 ,0,0,0}, - {6421,4885,4882 ,5468,5469,5471 ,0,0,0}, {6595,4854,6499 ,5469,5468,5469 ,0,0,0}, - {4854,4853,6500 ,5468,5471,5471 ,0,0,0}, {4879,4854,6595 ,5468,5468,5469 ,0,0,0}, - {6596,6597,4856 ,5470,5471,5468 ,0,0,0}, {6417,4859,4862 ,5470,726,5468 ,0,0,0}, - {6597,4853,4856 ,5471,5471,5468 ,0,0,0}, {5211,5213,6598 ,5468,5468,5468 ,0,0,0}, - {4825,4951,4950 ,5471,726,726 ,0,0,0}, {4863,6599,4862 ,5469,5469,5468 ,0,0,0}, - {6600,4842,4841 ,726,5471,726 ,0,0,0}, {6601,4847,4844 ,726,726,5470 ,0,0,0}, - {6602,4822,4950 ,726,5470,726 ,0,0,0}, {6603,4844,4842 ,726,5470,5471 ,0,0,0}, - {5208,4865,4871 ,5468,5469,5471 ,0,0,0}, {5211,6598,6581 ,5468,5468,5470 ,0,0,0}, - {4871,4875,5209 ,5471,726,5469 ,0,0,0}, {4874,5205,4875 ,5468,5468,726 ,0,0,0}, - {5209,4875,5205 ,5469,726,5468 ,0,0,0}, {4790,6492,6580 ,5469,5469,5469 ,0,0,0}, - {5215,4795,6604 ,5471,5470,726 ,0,0,0}, {4795,6491,4793 ,5470,5469,726 ,0,0,0}, - {4865,6605,4866 ,5469,5471,5471 ,0,0,0}, {6579,6565,4868 ,5471,5468,5470 ,0,0,0}, - {6565,6599,4863 ,5468,5469,5469 ,0,0,0}, {6599,6418,4862 ,5469,5468,5468 ,0,0,0}, - {4859,6596,4856 ,726,5470,5468 ,0,0,0}, {6596,4859,6417 ,5470,726,5470 ,0,0,0}, - {4850,6582,6606 ,726,726,5471 ,0,0,0}, {6606,4852,4850 ,5471,5469,726 ,0,0,0}, - {6597,6500,4853 ,5471,5471,5471 ,0,0,0}, {4852,6433,6421 ,5469,5469,5468 ,0,0,0}, - {6421,6498,4852 ,5468,5468,5469 ,0,0,0}, {6595,6498,4879 ,5469,5468,5468 ,0,0,0}, - {4852,6606,6434 ,5469,5471,726 ,0,0,0}, {4850,4848,6582 ,726,5471,726 ,0,0,0}, - {4847,6601,6582 ,726,726,726 ,0,0,0}, {4844,6603,6601 ,5470,726,726 ,0,0,0}, - {4841,6602,6600 ,726,726,726 ,0,0,0}, {4842,6600,6603 ,5471,726,726 ,0,0,0}, - {4822,4821,4950 ,5470,726,726 ,0,0,0}, {4841,4822,6602 ,726,5470,726 ,0,0,0}, - {4825,4829,4951 ,5471,5471,726 ,0,0,0}, {4821,4825,4950 ,726,5471,726 ,0,0,0}, - {4829,4828,4947 ,5471,5470,726 ,0,0,0}, {6574,6586,4831 ,5471,726,726 ,0,0,0}, - {6585,4835,6607 ,5471,726,726 ,0,0,0}, {6505,6607,6506 ,5471,726,5470 ,0,0,0}, - {4833,4835,6585 ,5471,726,5471 ,0,0,0}, {6579,6576,6578 ,5471,5471,726 ,0,0,0}, - {6573,4942,6608 ,726,726,5471 ,0,0,0}, {6519,5170,4775 ,726,5470,5470 ,0,0,0}, - {6573,6608,6590 ,726,5471,5470 ,0,0,0}, {4810,4808,5094 ,726,5470,5471 ,0,0,0}, - {4804,6485,4807 ,726,5470,726 ,0,0,0}, {6538,4807,6485 ,5471,726,5470 ,0,0,0}, - {5170,5169,4771 ,5470,5471,5471 ,0,0,0}, {5066,4802,5063 ,726,5471,726 ,0,0,0}, - {5066,6484,4802 ,726,726,5471 ,0,0,0}, {4797,5169,5056 ,5470,5471,726 ,0,0,0}, - {5056,5059,4797 ,726,726,5470 ,0,0,0}, {5170,4771,4775 ,5470,5471,5470 ,0,0,0}, - {6523,4775,4777 ,726,5470,726 ,0,0,0}, {4789,5245,4787 ,5471,5469,726 ,0,0,0}, - {6524,4777,4778 ,5470,726,5471 ,0,0,0}, {5142,4781,5139 ,726,5471,5470 ,0,0,0}, - {5142,6490,4781 ,726,5471,5471 ,0,0,0}, {5245,5132,4787 ,5469,5471,726 ,0,0,0}, - {5132,5135,4787 ,5471,5469,726 ,0,0,0}, {4789,4791,5246 ,5471,5470,5468 ,0,0,0}, - {6580,4791,4790 ,5469,5470,5469 ,0,0,0}, {6605,4865,6581 ,5471,5469,5470 ,0,0,0}, - {6492,4790,4793 ,5469,5469,726 ,0,0,0}, {5218,4795,5215 ,5469,5470,5471 ,0,0,0}, - {5218,6491,4795 ,5469,5469,5470 ,0,0,0}, {6581,4865,5208 ,5470,5469,5468 ,0,0,0}, - {6604,6598,5213 ,726,5468,5468 ,0,0,0}, {6604,5213,5215 ,726,5468,5471 ,0,0,0}, - {6605,6576,4866 ,5471,5471,5471 ,0,0,0}, {6505,6507,6577 ,5471,5471,726 ,0,0,0}, - {6578,6577,6507 ,726,726,5471 ,0,0,0}, {4942,4941,6587 ,726,5470,5471 ,0,0,0}, - {4838,6607,4835 ,726,726,726 ,0,0,0}, {4838,6506,6607 ,726,5470,726 ,0,0,0}, - {6586,4941,4828 ,726,5470,5470 ,0,0,0}, {4828,4831,6586 ,5470,726,726 ,0,0,0}, - {4942,6587,6608 ,726,5471,5471 ,0,0,0}, {6592,6591,6609 ,5471,5470,726 ,0,0,0}, - {6590,6608,6591 ,5470,5471,5470 ,0,0,0}, {6609,6589,6588 ,726,726,726 ,0,0,0}, - {6588,6592,6609 ,726,5471,726 ,0,0,0}, {6589,4911,4914 ,726,726,726 ,0,0,0}, - {6583,4909,4911 ,5471,5470,726 ,0,0,0}, {6584,4907,4909 ,726,726,5470 ,0,0,0}, - {5017,6522,6563 ,726,5471,726 ,0,0,0}, {6504,6610,6503 ,5471,5471,726 ,0,0,0}, - {5018,6563,6504 ,726,726,5471 ,0,0,0}, {6556,6610,6557 ,726,5471,726 ,0,0,0}, - {6504,6557,6610 ,5471,726,5471 ,0,0,0}, {6556,6555,6558 ,726,5470,726 ,0,0,0}, - {4820,6558,6555 ,5470,726,5470 ,0,0,0}, {6594,6421,6427 ,5468,5468,5468 ,0,0,0}, - {4886,4885,6421 ,5470,5469,5468 ,0,0,0}, {6384,6404,6398 ,726,726,5488 ,0,0,0}, - {6393,6545,6384 ,5488,726,726 ,0,0,0}, {6334,5004,5002 ,726,5471,726 ,0,0,0}, - {6509,6334,6389 ,726,726,726 ,0,0,0}, {6475,6474,6472 ,5469,5470,5468 ,0,0,0}, - {6475,6217,6473 ,5469,5468,5469 ,0,0,0}, {6361,6204,6203 ,5489,726,726 ,0,0,0}, - {5124,5122,6204 ,726,726,726 ,0,0,0}, {6611,6612,6613 ,5490,5491,5492 ,0,0,0}, - {6614,6615,6616 ,5493,5494,5495 ,0,0,0}, {6617,6615,6618 ,5496,5494,5497 ,0,0,0}, - {6619,6620,6621 ,5498,5499,5500 ,0,0,0}, {6622,6623,6624 ,5501,5502,5503 ,0,0,0}, - {6625,6626,6627 ,5504,5505,5506 ,0,0,0}, {6628,6629,6630 ,5507,5508,5509 ,0,0,0}, - {6241,6245,6625 ,5510,5511,5504 ,0,0,0}, {6631,6632,6633 ,5512,5513,5514 ,0,0,0}, - {6622,6627,6626 ,5501,5506,5505 ,0,0,0}, {6634,6635,6632 ,5515,5516,5513 ,0,0,0}, - {6636,6634,6632 ,5517,5515,5513 ,0,0,0}, {6636,6637,6634 ,5517,5518,5515 ,0,0,0}, - {6637,6636,6638 ,5518,5517,5519 ,0,0,0}, {6639,6635,6640 ,5520,5516,5521 ,0,0,0}, - {6641,6642,6643 ,5522,5523,5524 ,0,0,0}, {6632,6635,6639 ,5513,5516,5520 ,0,0,0}, - {6643,6642,6638 ,5524,5523,5519 ,0,0,0}, {6644,6641,6645 ,5525,5522,5526 ,0,0,0}, - {6646,6647,6648 ,5527,5528,5529 ,0,0,0}, {6646,6639,6640 ,5527,5520,5521 ,0,0,0}, - {6649,6650,6651 ,5530,5531,5532 ,0,0,0}, {6646,6640,6647 ,5527,5521,5528 ,0,0,0}, - {6647,6649,6648 ,5528,5530,5529 ,0,0,0}, {6652,6653,6651 ,5533,5534,5532 ,0,0,0}, - {6629,6654,6630 ,5508,5535,5509 ,0,0,0}, {6651,6650,6652 ,5532,5531,5533 ,0,0,0}, - {6655,6614,6656 ,5536,5493,5537 ,0,0,0}, {6650,6657,6652 ,5531,5538,5533 ,0,0,0}, - {6629,6633,6654 ,5508,5514,5535 ,0,0,0}, {6658,6633,6639 ,5539,5514,5520 ,0,0,0}, - {6659,6660,6661 ,5540,5541,5542 ,0,0,0}, {6662,6659,6663 ,5543,5540,5544 ,0,0,0}, - {6220,6237,6612 ,5545,5546,5491 ,0,0,0}, {6664,6665,6666 ,5547,5548,5549 ,0,0,0}, - {6220,6611,6221 ,5545,5490,726 ,0,0,0}, {6667,6221,6611 ,5550,726,5490 ,0,0,0}, - {6668,6653,6669 ,5551,5534,5552 ,0,0,0}, {6649,6651,6648 ,5530,5532,5529 ,0,0,0}, - {6651,6653,6668 ,5532,5534,5551 ,0,0,0}, {6669,6670,6668 ,5552,5553,5551 ,0,0,0}, - {6671,6648,6668 ,5554,5529,5551 ,0,0,0}, {6633,6658,6654 ,5514,5539,5535 ,0,0,0}, - {6671,6658,6646 ,5554,5539,5527 ,0,0,0}, {6636,6672,6638 ,5517,5555,5519 ,0,0,0}, - {6646,6658,6639 ,5527,5539,5520 ,0,0,0}, {6673,6674,6643 ,5556,5557,5524 ,0,0,0}, - {6632,6639,6633 ,5513,5520,5514 ,0,0,0}, {6672,6636,6631 ,5555,5517,5512 ,0,0,0}, - {6641,6643,6645 ,5522,5524,5526 ,0,0,0}, {6637,6638,6642 ,5518,5519,5523 ,0,0,0}, - {6638,6672,6673 ,5519,5555,5556 ,0,0,0}, {6675,6645,6643 ,5558,5526,5524 ,0,0,0}, - {6651,6668,6648 ,5532,5551,5529 ,0,0,0}, {6676,6670,6669 ,5559,5553,5552 ,0,0,0}, - {6676,6663,6670 ,5559,5544,5553 ,0,0,0}, {6648,6671,6646 ,5529,5554,5527 ,0,0,0}, - {6670,6677,6671 ,5553,5560,5554 ,0,0,0}, {6629,6618,6631 ,5508,5497,5512 ,0,0,0}, - {6677,6654,6658 ,5560,5535,5539 ,0,0,0}, {6614,6674,6673 ,5493,5557,5556 ,0,0,0}, - {6655,6674,6614 ,5536,5557,5493 ,0,0,0}, {6632,6631,6636 ,5513,5512,5517 ,0,0,0}, - {6633,6629,6631 ,5514,5508,5512 ,0,0,0}, {6638,6673,6643 ,5519,5556,5524 ,0,0,0}, - {6618,6615,6672 ,5497,5494,5555 ,0,0,0}, {6643,6674,6675 ,5524,5557,5558 ,0,0,0}, - {6673,6615,6614 ,5556,5494,5493 ,0,0,0}, {6678,6675,6674 ,5561,5558,5557 ,0,0,0}, - {6668,6670,6671 ,5551,5553,5554 ,0,0,0}, {6662,6663,6676 ,5543,5544,5559 ,0,0,0}, - {6679,6661,6680 ,5562,5542,5563 ,0,0,0}, {6671,6677,6658 ,5554,5560,5539 ,0,0,0}, - {6681,6677,6663 ,5564,5560,5544 ,0,0,0}, {6618,6629,6628 ,5497,5508,5507 ,0,0,0}, - {6681,6630,6654 ,5564,5509,5535 ,0,0,0}, {6682,6656,6616 ,5565,5537,5495 ,0,0,0}, - {6672,6615,6673 ,5555,5494,5556 ,0,0,0}, {6631,6618,6672 ,5512,5497,5555 ,0,0,0}, - {6618,6628,6617 ,5497,5507,5496 ,0,0,0}, {6655,6656,6683 ,5536,5537,5566 ,0,0,0}, - {6617,6616,6615 ,5496,5495,5494 ,0,0,0}, {6674,6655,6678 ,5557,5536,5561 ,0,0,0}, - {6614,6616,6656 ,5493,5495,5537 ,0,0,0}, {6684,6678,6655 ,5567,5561,5536 ,0,0,0}, - {6670,6663,6677 ,5553,5544,5560 ,0,0,0}, {6660,6659,6662 ,5541,5540,5543 ,0,0,0}, - {6630,6685,6628 ,5509,5568,5507 ,0,0,0}, {6677,6681,6654 ,5560,5564,5535 ,0,0,0}, - {6686,6681,6659 ,5569,5564,5540 ,0,0,0}, {6628,6687,6617 ,5507,5570,5496 ,0,0,0}, - {6686,6685,6630 ,5569,5568,5509 ,0,0,0}, {6617,6688,6616 ,5496,5571,5495 ,0,0,0}, - {6687,6628,6685 ,5570,5507,5568 ,0,0,0}, {6656,6619,6683 ,5537,5498,5566 ,0,0,0}, - {6688,6617,6687 ,5571,5496,5570 ,0,0,0}, {6689,6683,6621 ,5572,5566,5500 ,0,0,0}, - {6682,6616,6688 ,5565,5495,5571 ,0,0,0}, {6655,6683,6684 ,5536,5566,5567 ,0,0,0}, - {6656,6682,6619 ,5537,5565,5498 ,0,0,0}, {6689,6684,6683 ,5572,5567,5566 ,0,0,0}, - {6663,6659,6681 ,5544,5540,5564 ,0,0,0}, {6680,6661,6660 ,5563,5542,5541 ,0,0,0}, - {6685,6665,6687 ,5568,5548,5570 ,0,0,0}, {6681,6686,6630 ,5564,5569,5509 ,0,0,0}, - {6661,6690,6686 ,5542,5573,5569 ,0,0,0}, {6687,6664,6688 ,5570,5547,5571 ,0,0,0}, - {6690,6665,6685 ,5573,5548,5568 ,0,0,0}, {6688,6691,6682 ,5571,5574,5565 ,0,0,0}, - {6665,6664,6687 ,5548,5547,5570 ,0,0,0}, {6692,6619,6682 ,5575,5498,5565 ,0,0,0}, - {6691,6688,6664 ,5574,5571,5547 ,0,0,0}, {6693,6621,6624 ,5576,5500,5503 ,0,0,0}, - {6682,6691,6692 ,5565,5574,5575 ,0,0,0}, {6692,6620,6619 ,5575,5499,5498 ,0,0,0}, - {6689,6621,6693 ,5572,5500,5576 ,0,0,0}, {6683,6619,6621 ,5566,5498,5500 ,0,0,0}, - {6659,6661,6686 ,5540,5542,5569 ,0,0,0}, {6694,6679,6680 ,5577,5562,5563 ,0,0,0}, - {6695,6691,6664 ,5578,5574,5547 ,0,0,0}, {6686,6690,6685 ,5569,5573,5568 ,0,0,0}, - {6679,6613,6690 ,5562,5492,5573 ,0,0,0}, {6696,6692,6691 ,5579,5575,5574 ,0,0,0}, - {6613,6666,6665 ,5492,5549,5548 ,0,0,0}, {6697,6620,6692 ,5580,5499,5575 ,0,0,0}, - {6666,6695,6664 ,5549,5578,5547 ,0,0,0}, {6627,6622,6698 ,5506,5501,5581 ,0,0,0}, - {6695,6696,6691 ,5578,5579,5574 ,0,0,0}, {6624,6620,6699 ,5503,5499,5582 ,0,0,0}, - {6697,6692,6696 ,5580,5575,5579 ,0,0,0}, {6699,6620,6697 ,5582,5499,5580 ,0,0,0}, - {6693,6624,6623 ,5576,5503,5502 ,0,0,0}, {6621,6620,6624 ,5500,5499,5503 ,0,0,0}, - {6661,6679,6690 ,5542,5562,5573 ,0,0,0}, {6611,6694,6667 ,5490,5577,5550 ,0,0,0}, - {6612,6700,6666 ,5491,5583,5549 ,0,0,0}, {6690,6613,6665 ,5573,5492,5548 ,0,0,0}, - {6612,6666,6613 ,5491,5549,5492 ,0,0,0}, {6700,6701,6695 ,5583,5584,5578 ,0,0,0}, - {6700,6695,6666 ,5583,5578,5549 ,0,0,0}, {6701,6702,6696 ,5584,5585,5579 ,0,0,0}, - {6701,6696,6695 ,5584,5579,5578 ,0,0,0}, {6702,6703,6697 ,5585,5586,5580 ,0,0,0}, - {6702,6697,6696 ,5585,5580,5579 ,0,0,0}, {6703,6698,6699 ,5586,5581,5582 ,0,0,0}, - {6699,6697,6703 ,5582,5580,5586 ,0,0,0}, {6698,6622,6699 ,5581,5501,5582 ,0,0,0}, - {6623,6622,6626 ,5502,5501,5505 ,0,0,0}, {6624,6699,6622 ,5503,5582,5501 ,0,0,0}, - {6694,6611,6679 ,5577,5490,5562 ,0,0,0}, {6613,6679,6611 ,5492,5562,5490 ,0,0,0}, - {6700,6237,6231 ,5583,5546,5587 ,0,0,0}, {6220,6612,6611 ,5545,5491,5490 ,0,0,0}, - {6701,6231,6236 ,5584,5587,5588 ,0,0,0}, {6237,6700,6612 ,5546,5583,5491 ,0,0,0}, - {6702,6236,6235 ,5585,5588,5589 ,0,0,0}, {6231,6701,6700 ,5587,5584,5583 ,0,0,0}, - {6703,6235,6481 ,5586,5589,5590 ,0,0,0}, {6236,6702,6701 ,5588,5585,5584 ,0,0,0}, - {6698,6481,6239 ,5581,5590,5591 ,0,0,0}, {6235,6703,6702 ,5589,5586,5585 ,0,0,0}, - {6627,6239,6241 ,5506,5591,5510 ,0,0,0}, {6481,6698,6703 ,5590,5581,5586 ,0,0,0}, - {6241,6625,6627 ,5510,5504,5506 ,0,0,0}, {6239,6627,6698 ,5591,5506,5581 ,0,0,0}, - {6704,6705,6706 ,5592,5593,5594 ,0,0,0}, {6707,6708,6709 ,5595,5596,5597 ,0,0,0}, - {6705,6710,6706 ,5593,5598,5594 ,0,0,0}, {6711,6709,6708 ,5599,5597,5596 ,0,0,0}, - {6712,6713,6714 ,5600,5601,5602 ,0,0,0}, {6715,6716,6713 ,5603,5604,5601 ,0,0,0}, - {6717,6718,6719 ,5605,5606,5607 ,0,0,0}, {6720,6716,6715 ,5608,5604,5603 ,0,0,0}, - {6716,6714,6713 ,5604,5602,5601 ,0,0,0}, {6721,6713,6707 ,5609,5601,5595 ,0,0,0}, - {6722,6723,6724 ,5610,5611,5612 ,0,0,0}, {6725,6726,6727 ,5613,5614,5615 ,0,0,0}, - {6728,6723,6729 ,5616,5611,5617 ,0,0,0}, {6730,6731,6704 ,5618,5619,5592 ,0,0,0}, - {6718,6467,6435 ,5606,5620,5621 ,0,0,0}, {6732,6733,6734 ,5622,5623,5624 ,0,0,0}, - {6735,6469,6717 ,5625,5626,5605 ,0,0,0}, {6467,6717,6469 ,5620,5605,5626 ,0,0,0}, - {6736,6737,6738 ,5627,5628,5629 ,0,0,0}, {6710,6739,6706 ,5598,5630,5594 ,0,0,0}, - {6740,6741,6742 ,5631,5632,5633 ,0,0,0}, {6743,6744,6745 ,5634,5635,5636 ,0,0,0}, - {6734,6737,6746 ,5624,5628,5637 ,0,0,0}, {6747,6748,6749 ,5638,5639,5640 ,0,0,0}, - {6750,6704,6751 ,5641,5592,5642 ,0,0,0}, {6748,6743,6749 ,5639,5634,5640 ,0,0,0}, - {6730,6711,6708 ,5618,5599,5596 ,0,0,0}, {6458,6461,6747 ,5643,5644,5638 ,0,0,0}, - {6711,6730,6752 ,5599,5618,5645 ,0,0,0}, {6752,6730,6750 ,5645,5618,5641 ,0,0,0}, - {6753,6754,6750 ,5646,5647,5641 ,0,0,0}, {6730,6708,6731 ,5618,5596,5619 ,0,0,0}, - {6753,6755,6756 ,5646,5648,5649 ,0,0,0}, {6756,6754,6753 ,5649,5647,5646 ,0,0,0}, - {6757,6758,6759 ,5650,5651,5652 ,0,0,0}, {6758,6757,6755 ,5651,5650,5648 ,0,0,0}, - {6715,6713,6721 ,5603,5601,5609 ,0,0,0}, {6760,6712,6714 ,5653,5600,5602 ,0,0,0}, - {6760,6761,6712 ,5653,5654,5600 ,0,0,0}, {6721,6707,6709 ,5609,5595,5597 ,0,0,0}, - {6762,6707,6712 ,5655,5595,5600 ,0,0,0}, {6704,6731,6705 ,5592,5619,5593 ,0,0,0}, - {6762,6731,6708 ,5655,5619,5596 ,0,0,0}, {6753,6763,6755 ,5646,5656,5648 ,0,0,0}, - {6764,6758,6765 ,5657,5651,5658 ,0,0,0}, {6752,6750,6754 ,5645,5641,5647 ,0,0,0}, - {6750,6730,6704 ,5641,5618,5592 ,0,0,0}, {6756,6755,6757 ,5649,5648,5650 ,0,0,0}, - {6751,6763,6753 ,5642,5656,5646 ,0,0,0}, {6758,6766,6759 ,5651,5659,5652 ,0,0,0}, - {6755,6763,6765 ,5648,5656,5658 ,0,0,0}, {6767,6766,6758 ,5660,5659,5651 ,0,0,0}, - {6713,6712,6707 ,5601,5600,5595 ,0,0,0}, {6768,6761,6760 ,5661,5654,5653 ,0,0,0}, - {6768,6724,6761 ,5661,5612,5654 ,0,0,0}, {6707,6762,6708 ,5595,5655,5596 ,0,0,0}, - {6761,6769,6762 ,5654,5662,5655 ,0,0,0}, {6706,6738,6751 ,5594,5629,5642 ,0,0,0}, - {6769,6705,6731 ,5662,5593,5619 ,0,0,0}, {6734,6764,6765 ,5624,5657,5658 ,0,0,0}, - {6733,6764,6734 ,5623,5657,5624 ,0,0,0}, {6750,6751,6753 ,5641,5642,5646 ,0,0,0}, - {6704,6706,6751 ,5592,5594,5642 ,0,0,0}, {6755,6765,6758 ,5648,5658,5651 ,0,0,0}, - {6738,6737,6763 ,5629,5628,5656 ,0,0,0}, {6758,6764,6767 ,5651,5657,5660 ,0,0,0}, - {6765,6737,6734 ,5658,5628,5624 ,0,0,0}, {6770,6767,6764 ,5663,5660,5657 ,0,0,0}, - {6712,6761,6762 ,5600,5654,5655 ,0,0,0}, {6722,6724,6768 ,5610,5612,5661 ,0,0,0}, - {6771,6728,6772 ,5664,5616,5665 ,0,0,0}, {6762,6769,6731 ,5655,5662,5619 ,0,0,0}, - {6773,6769,6724 ,5666,5662,5612 ,0,0,0}, {6738,6706,6739 ,5629,5594,5630 ,0,0,0}, - {6773,6710,6705 ,5666,5598,5593 ,0,0,0}, {6774,6732,6746 ,5667,5622,5637 ,0,0,0}, - {6763,6737,6765 ,5656,5628,5658 ,0,0,0}, {6751,6738,6763 ,5642,5629,5656 ,0,0,0}, - {6738,6739,6736 ,5629,5630,5627 ,0,0,0}, {6733,6732,6775 ,5623,5622,5668 ,0,0,0}, - {6736,6746,6737 ,5627,5637,5628 ,0,0,0}, {6764,6733,6770 ,5657,5623,5663 ,0,0,0}, - {6734,6746,6732 ,5624,5637,5622 ,0,0,0}, {6776,6770,6733 ,5669,5663,5623 ,0,0,0}, - {6761,6724,6769 ,5654,5612,5662 ,0,0,0}, {6729,6723,6722 ,5617,5611,5610 ,0,0,0}, - {6710,6777,6739 ,5598,5670,5630 ,0,0,0}, {6769,6773,6705 ,5662,5666,5593 ,0,0,0}, - {6778,6773,6723 ,5671,5666,5611 ,0,0,0}, {6739,6779,6736 ,5630,5672,5627 ,0,0,0}, - {6778,6777,6710 ,5671,5670,5598 ,0,0,0}, {6736,6780,6746 ,5627,5673,5637 ,0,0,0}, - {6779,6739,6777 ,5672,5630,5670 ,0,0,0}, {6732,6741,6775 ,5622,5632,5668 ,0,0,0}, - {6780,6736,6779 ,5673,5627,5672 ,0,0,0}, {6781,6775,6740 ,5674,5668,5631 ,0,0,0}, - {6774,6746,6780 ,5667,5637,5673 ,0,0,0}, {6733,6775,6776 ,5623,5668,5669 ,0,0,0}, - {6732,6774,6741 ,5622,5667,5632 ,0,0,0}, {6781,6776,6775 ,5674,5669,5668 ,0,0,0}, - {6724,6723,6773 ,5612,5611,5666 ,0,0,0}, {6772,6728,6729 ,5665,5616,5617 ,0,0,0}, - {6777,6725,6779 ,5670,5613,5672 ,0,0,0}, {6773,6778,6710 ,5666,5671,5598 ,0,0,0}, - {6728,6782,6778 ,5616,5675,5671 ,0,0,0}, {6779,6727,6780 ,5672,5615,5673 ,0,0,0}, - {6782,6725,6777 ,5675,5613,5670 ,0,0,0}, {6780,6783,6774 ,5673,5676,5667 ,0,0,0}, - {6725,6727,6779 ,5613,5615,5672 ,0,0,0}, {6784,6741,6774 ,5677,5632,5667 ,0,0,0}, - {6783,6780,6727 ,5676,5673,5615 ,0,0,0}, {6785,6740,6745 ,5678,5631,5636 ,0,0,0}, - {6774,6783,6784 ,5667,5676,5677 ,0,0,0}, {6784,6742,6741 ,5677,5633,5632 ,0,0,0}, - {6781,6740,6785 ,5674,5631,5678 ,0,0,0}, {6775,6741,6740 ,5668,5632,5631 ,0,0,0}, - {6723,6728,6778 ,5611,5616,5671 ,0,0,0}, {6786,6771,6772 ,5679,5664,5665 ,0,0,0}, - {6787,6783,6727 ,5680,5676,5615 ,0,0,0}, {6778,6782,6777 ,5671,5675,5670 ,0,0,0}, - {6771,6719,6782 ,5664,5607,5675 ,0,0,0}, {6788,6784,6783 ,5681,5677,5676 ,0,0,0}, - {6719,6726,6725 ,5607,5614,5613 ,0,0,0}, {6789,6742,6784 ,5682,5633,5677 ,0,0,0}, - {6726,6787,6727 ,5614,5680,5615 ,0,0,0}, {6749,6743,6790 ,5640,5634,5683 ,0,0,0}, - {6787,6788,6783 ,5680,5681,5676 ,0,0,0}, {6745,6742,6791 ,5636,5633,5684 ,0,0,0}, - {6789,6784,6788 ,5682,5677,5681 ,0,0,0}, {6791,6742,6789 ,5684,5633,5682 ,0,0,0}, - {6785,6745,6744 ,5678,5636,5635 ,0,0,0}, {6740,6742,6745 ,5631,5633,5636 ,0,0,0}, - {6728,6771,6782 ,5616,5664,5675 ,0,0,0}, {6717,6786,6735 ,5605,5679,5625 ,0,0,0}, - {6718,6792,6726 ,5606,5685,5614 ,0,0,0}, {6782,6719,6725 ,5675,5607,5613 ,0,0,0}, - {6718,6726,6719 ,5606,5614,5607 ,0,0,0}, {6792,6793,6787 ,5685,5686,5680 ,0,0,0}, - {6792,6787,6726 ,5685,5680,5614 ,0,0,0}, {6793,6794,6788 ,5686,5687,5681 ,0,0,0}, - {6793,6788,6787 ,5686,5681,5680 ,0,0,0}, {6794,6795,6789 ,5687,5688,5682 ,0,0,0}, - {6794,6789,6788 ,5687,5682,5681 ,0,0,0}, {6795,6790,6791 ,5688,5683,5684 ,0,0,0}, - {6791,6789,6795 ,5684,5682,5688 ,0,0,0}, {6790,6743,6791 ,5683,5634,5684 ,0,0,0}, - {6744,6743,6748 ,5635,5634,5639 ,0,0,0}, {6745,6791,6743 ,5636,5684,5634 ,0,0,0}, - {6786,6717,6771 ,5679,5605,5664 ,0,0,0}, {6719,6771,6717 ,5607,5664,5605 ,0,0,0}, - {6792,6435,6456 ,5685,5621,5689 ,0,0,0}, {6467,6718,6717 ,5620,5606,5605 ,0,0,0}, - {6793,6456,6567 ,5686,5689,5690 ,0,0,0}, {6435,6792,6718 ,5621,5685,5606 ,0,0,0}, - {6794,6567,6453 ,5687,5690,5691 ,0,0,0}, {6456,6793,6792 ,5689,5686,5685 ,0,0,0}, - {6795,6453,6451 ,5688,5691,5692 ,0,0,0}, {6567,6794,6793 ,5690,5687,5686 ,0,0,0}, - {6790,6451,6420 ,5683,5692,5693 ,0,0,0}, {6453,6795,6794 ,5691,5688,5687 ,0,0,0}, - {6749,6420,6458 ,5640,5693,5643 ,0,0,0}, {6451,6790,6795 ,5692,5683,5688 ,0,0,0}, - {6458,6747,6749 ,5643,5638,5640 ,0,0,0}, {6420,6749,6790 ,5693,5640,5683 ,0,0,0}, - {6796,6797,6798 ,5694,5695,5696 ,0,0,0}, {6799,6800,6801 ,5697,5698,5699 ,0,0,0}, - {6798,6802,6803 ,5696,5700,5701 ,0,0,0}, {6802,6804,6803 ,5700,5702,5701 ,0,0,0}, - {6805,6806,6807 ,5703,5704,5705 ,0,0,0}, {6807,6808,6805 ,5705,5706,5703 ,0,0,0}, - {6809,6810,6811 ,5707,5708,5709 ,0,0,0}, {6812,6806,6813 ,5710,5704,5711 ,0,0,0}, - {6812,6807,6806 ,5710,5705,5704 ,0,0,0}, {6813,6814,6812 ,5711,5712,5710 ,0,0,0}, - {6815,6801,6816 ,5713,5699,5714 ,0,0,0}, {6817,6818,6819 ,5715,5716,5717 ,0,0,0}, - {6809,6383,6382 ,5707,5718,5719 ,0,0,0}, {6820,6821,6822 ,5720,5721,5722 ,0,0,0}, - {6823,6410,6811 ,5723,5724,5709 ,0,0,0}, {6824,6825,6818 ,5725,5726,5716 ,0,0,0}, - {6383,6811,6410 ,5718,5709,5724 ,0,0,0}, {6826,6827,6828 ,5727,5728,5729 ,0,0,0}, - {6829,6803,6804 ,5730,5701,5702 ,0,0,0}, {6830,6831,6832 ,5731,5732,5733 ,0,0,0}, - {6833,6834,6798 ,5734,5735,5696 ,0,0,0}, {6835,6836,6837 ,5736,5737,5738 ,0,0,0}, - {6828,6838,6839 ,5729,5739,5740 ,0,0,0}, {6840,6838,6841 ,5741,5739,5742 ,0,0,0}, - {6842,6843,6844 ,5743,5744,5745 ,0,0,0}, {6796,6800,6799 ,5694,5698,5697 ,0,0,0}, - {6843,6830,6844 ,5744,5731,5745 ,0,0,0}, {6834,6845,6796 ,5735,5746,5694 ,0,0,0}, - {6406,6411,6842 ,5747,5748,5743 ,0,0,0}, {6846,6847,6834 ,5749,5750,5735 ,0,0,0}, - {6845,6800,6796 ,5746,5698,5694 ,0,0,0}, {6846,6848,6849 ,5749,5751,5752 ,0,0,0}, - {6834,6847,6845 ,5735,5750,5746 ,0,0,0}, {6850,6851,6852 ,5753,5754,5755 ,0,0,0}, - {6847,6846,6849 ,5750,5749,5752 ,0,0,0}, {6853,6852,6854 ,5756,5755,5757 ,0,0,0}, - {6851,6850,6848 ,5754,5753,5751 ,0,0,0}, {6816,6806,6815 ,5714,5704,5713 ,0,0,0}, - {6806,6816,6813 ,5704,5714,5711 ,0,0,0}, {6808,6855,6805 ,5706,5758,5703 ,0,0,0}, - {6815,6799,6801 ,5713,5697,5699 ,0,0,0}, {6856,6815,6805 ,5759,5713,5703 ,0,0,0}, - {6798,6797,6802 ,5696,5695,5700 ,0,0,0}, {6856,6797,6799 ,5759,5695,5697 ,0,0,0}, - {6846,6857,6848 ,5749,5760,5751 ,0,0,0}, {6799,6797,6796 ,5697,5695,5694 ,0,0,0}, - {6858,6859,6851 ,5761,5762,5754 ,0,0,0}, {6834,6796,6798 ,5735,5694,5696 ,0,0,0}, - {6857,6846,6833 ,5760,5749,5734 ,0,0,0}, {6852,6851,6854 ,5755,5754,5757 ,0,0,0}, - {6849,6848,6850 ,5752,5751,5753 ,0,0,0}, {6848,6857,6858 ,5751,5760,5761 ,0,0,0}, - {6860,6854,6851 ,5763,5757,5754 ,0,0,0}, {6806,6805,6815 ,5704,5703,5713 ,0,0,0}, - {6861,6855,6808 ,5764,5758,5706 ,0,0,0}, {6861,6824,6855 ,5764,5725,5758 ,0,0,0}, - {6815,6856,6799 ,5713,5759,5697 ,0,0,0}, {6855,6862,6856 ,5758,5765,5759 ,0,0,0}, - {6803,6841,6833 ,5701,5742,5734 ,0,0,0}, {6862,6802,6797 ,5765,5700,5695 ,0,0,0}, - {6828,6859,6858 ,5729,5762,5761 ,0,0,0}, {6827,6859,6828 ,5728,5762,5729 ,0,0,0}, - {6834,6833,6846 ,5735,5734,5749 ,0,0,0}, {6798,6803,6833 ,5696,5701,5734 ,0,0,0}, - {6848,6858,6851 ,5751,5761,5754 ,0,0,0}, {6841,6838,6857 ,5742,5739,5760 ,0,0,0}, - {6851,6859,6860 ,5754,5762,5763 ,0,0,0}, {6858,6838,6828 ,5761,5739,5729 ,0,0,0}, - {6863,6860,6859 ,5766,5763,5762 ,0,0,0}, {6805,6855,6856 ,5703,5758,5759 ,0,0,0}, - {6825,6824,6861 ,5726,5725,5764 ,0,0,0}, {6864,6817,6865 ,5767,5715,5768 ,0,0,0}, - {6856,6862,6797 ,5759,5765,5695 ,0,0,0}, {6866,6862,6824 ,5769,5765,5725 ,0,0,0}, - {6841,6803,6829 ,5742,5701,5730 ,0,0,0}, {6866,6804,6802 ,5769,5702,5700 ,0,0,0}, - {6867,6826,6839 ,5770,5727,5740 ,0,0,0}, {6857,6838,6858 ,5760,5739,5761 ,0,0,0}, - {6833,6841,6857 ,5734,5742,5760 ,0,0,0}, {6841,6829,6840 ,5742,5730,5741 ,0,0,0}, - {6827,6826,6868 ,5728,5727,5771 ,0,0,0}, {6840,6839,6838 ,5741,5740,5739 ,0,0,0}, - {6859,6827,6863 ,5762,5728,5766 ,0,0,0}, {6828,6839,6826 ,5729,5740,5727 ,0,0,0}, - {6869,6863,6827 ,5772,5766,5728 ,0,0,0}, {6855,6824,6862 ,5758,5725,5765 ,0,0,0}, - {6819,6818,6825 ,5717,5716,5726 ,0,0,0}, {6804,6870,6829 ,5702,5773,5730 ,0,0,0}, - {6862,6866,6802 ,5765,5769,5700 ,0,0,0}, {6871,6866,6818 ,5774,5769,5716 ,0,0,0}, - {6829,6872,6840 ,5730,5775,5741 ,0,0,0}, {6871,6870,6804 ,5774,5773,5702 ,0,0,0}, - {6840,6873,6839 ,5741,5776,5740 ,0,0,0}, {6872,6829,6870 ,5775,5730,5773 ,0,0,0}, - {6826,6836,6868 ,5727,5737,5771 ,0,0,0}, {6873,6840,6872 ,5776,5741,5775 ,0,0,0}, - {6874,6868,6835 ,5777,5771,5736 ,0,0,0}, {6867,6839,6873 ,5770,5740,5776 ,0,0,0}, - {6827,6868,6869 ,5728,5771,5772 ,0,0,0}, {6826,6867,6836 ,5727,5770,5737 ,0,0,0}, - {6874,6869,6868 ,5777,5772,5771 ,0,0,0}, {6824,6818,6866 ,5725,5716,5769 ,0,0,0}, - {6865,6817,6819 ,5768,5715,5717 ,0,0,0}, {6870,6821,6872 ,5773,5721,5775 ,0,0,0}, - {6866,6871,6804 ,5769,5774,5702 ,0,0,0}, {6817,6875,6871 ,5715,5778,5774 ,0,0,0}, - {6872,6820,6873 ,5775,5720,5776 ,0,0,0}, {6875,6821,6870 ,5778,5721,5773 ,0,0,0}, - {6873,6876,6867 ,5776,5779,5770 ,0,0,0}, {6821,6820,6872 ,5721,5720,5775 ,0,0,0}, - {6877,6836,6867 ,5780,5737,5770 ,0,0,0}, {6876,6873,6820 ,5779,5776,5720 ,0,0,0}, - {6878,6835,6832 ,5781,5736,5733 ,0,0,0}, {6867,6876,6877 ,5770,5779,5780 ,0,0,0}, - {6877,6837,6836 ,5780,5738,5737 ,0,0,0}, {6874,6835,6878 ,5777,5736,5781 ,0,0,0}, - {6868,6836,6835 ,5771,5737,5736 ,0,0,0}, {6818,6817,6871 ,5716,5715,5774 ,0,0,0}, - {6879,6864,6865 ,5782,5767,5768 ,0,0,0}, {6880,6876,6820 ,5783,5779,5720 ,0,0,0}, - {6871,6875,6870 ,5774,5778,5773 ,0,0,0}, {6864,6810,6875 ,5767,5708,5778 ,0,0,0}, - {6881,6877,6876 ,5784,5780,5779 ,0,0,0}, {6810,6822,6821 ,5708,5722,5721 ,0,0,0}, - {6882,6837,6877 ,5785,5738,5780 ,0,0,0}, {6822,6880,6820 ,5722,5783,5720 ,0,0,0}, - {6844,6830,6883 ,5745,5731,5786 ,0,0,0}, {6880,6881,6876 ,5783,5784,5779 ,0,0,0}, - {6832,6837,6884 ,5733,5738,5787 ,0,0,0}, {6882,6877,6881 ,5785,5780,5784 ,0,0,0}, - {6884,6837,6882 ,5787,5738,5785 ,0,0,0}, {6878,6832,6831 ,5781,5733,5732 ,0,0,0}, - {6835,6837,6832 ,5736,5738,5733 ,0,0,0}, {6817,6864,6875 ,5715,5767,5778 ,0,0,0}, - {6811,6879,6823 ,5709,5782,5723 ,0,0,0}, {6809,6885,6822 ,5707,5788,5722 ,0,0,0}, - {6875,6810,6821 ,5778,5708,5721 ,0,0,0}, {6809,6822,6810 ,5707,5722,5708 ,0,0,0}, - {6885,6886,6880 ,5788,5789,5783 ,0,0,0}, {6885,6880,6822 ,5788,5783,5722 ,0,0,0}, - {6886,6887,6881 ,5789,5790,5784 ,0,0,0}, {6886,6881,6880 ,5789,5784,5783 ,0,0,0}, - {6887,6888,6882 ,5790,5791,5785 ,0,0,0}, {6887,6882,6881 ,5790,5785,5784 ,0,0,0}, - {6888,6883,6884 ,5791,5786,5787 ,0,0,0}, {6884,6882,6888 ,5787,5785,5791 ,0,0,0}, - {6883,6830,6884 ,5786,5731,5787 ,0,0,0}, {6831,6830,6843 ,5732,5731,5744 ,0,0,0}, - {6832,6884,6830 ,5733,5787,5731 ,0,0,0}, {6879,6811,6864 ,5782,5709,5767 ,0,0,0}, - {6810,6864,6811 ,5708,5767,5709 ,0,0,0}, {6885,6382,6397 ,5788,5719,5792 ,0,0,0}, - {6383,6809,6811 ,5718,5707,5709 ,0,0,0}, {6886,6397,6400 ,5789,5792,5793 ,0,0,0}, - {6382,6885,6809 ,5719,5788,5707 ,0,0,0}, {6887,6400,6401 ,5790,5793,5794 ,0,0,0}, - {6397,6886,6885 ,5792,5789,5788 ,0,0,0}, {6888,6401,6440 ,5791,5794,5795 ,0,0,0}, - {6400,6887,6886 ,5793,5790,5789 ,0,0,0}, {6883,6440,6381 ,5786,5795,5796 ,0,0,0}, - {6401,6888,6887 ,5794,5791,5790 ,0,0,0}, {6844,6381,6406 ,5745,5796,5747 ,0,0,0}, - {6440,6883,6888 ,5795,5786,5791 ,0,0,0}, {6406,6842,6844 ,5747,5743,5745 ,0,0,0}, - {6381,6844,6883 ,5796,5745,5786 ,0,0,0}, {6889,6890,6891 ,5797,5798,5799 ,0,0,0}, - {6892,5806,5807 ,5800,5801,5802 ,0,0,0}, {6891,6893,6894 ,5799,5803,5804 ,0,0,0}, - {6893,6895,6894 ,5803,5805,5804 ,0,0,0}, {6896,6897,6898 ,5806,5807,5808 ,0,0,0}, - {6898,6899,6896 ,5808,5809,5806 ,0,0,0}, {6900,6901,6902 ,5810,5811,5812 ,0,0,0}, - {6903,6897,5812 ,5813,5807,5814 ,0,0,0}, {6903,6898,6897 ,5813,5808,5807 ,0,0,0}, - {5812,5813,6903 ,5814,5815,5813 ,0,0,0}, {6904,5807,5810 ,5816,5802,5817 ,0,0,0}, - {6905,6906,6907 ,5818,5819,5820 ,0,0,0}, {6900,6339,6338 ,5810,5821,5822 ,0,0,0}, - {6908,6909,6910 ,5823,5824,5825 ,0,0,0}, {6911,6346,6902 ,5826,5827,5812 ,0,0,0}, - {6912,6913,6906 ,5828,5829,5819 ,0,0,0}, {6339,6902,6346 ,5821,5812,5827 ,0,0,0}, - {6914,6915,6916 ,5830,5831,5832 ,0,0,0}, {6917,6894,6895 ,5833,5804,5805 ,0,0,0}, - {6918,6919,6920 ,5834,5835,5836 ,0,0,0}, {6921,6922,6891 ,5837,5838,5799 ,0,0,0}, - {6923,6924,6925 ,5839,5840,5841 ,0,0,0}, {6916,6926,6927 ,5832,5842,5843 ,0,0,0}, - {6928,6926,6929 ,5844,5842,5845 ,0,0,0}, {6930,6931,6932 ,5846,5847,5848 ,0,0,0}, - {6889,5806,6892 ,5797,5801,5800 ,0,0,0}, {6931,6918,6932 ,5847,5834,5848 ,0,0,0}, - {6922,5804,6889 ,5838,5849,5797 ,0,0,0}, {6362,6369,6930 ,5850,5851,5846 ,0,0,0}, - {6933,5802,6922 ,5852,5853,5838 ,0,0,0}, {5804,5806,6889 ,5849,5801,5797 ,0,0,0}, - {6933,6934,5799 ,5852,5854,5855 ,0,0,0}, {6922,5802,5804 ,5838,5853,5849 ,0,0,0}, - {5797,6935,5798 ,5856,5857,5858 ,0,0,0}, {5802,6933,5799 ,5853,5852,5855 ,0,0,0}, - {5792,5798,6936 ,5067,5858,5859 ,0,0,0}, {6935,5797,6934 ,5857,5856,5854 ,0,0,0}, - {5810,6897,6904 ,5817,5807,5816 ,0,0,0}, {6897,5810,5812 ,5807,5817,5814 ,0,0,0}, - {6899,6937,6896 ,5809,5860,5806 ,0,0,0}, {6904,6892,5807 ,5816,5800,5802 ,0,0,0}, - {6938,6904,6896 ,5861,5816,5806 ,0,0,0}, {6891,6890,6893 ,5799,5798,5803 ,0,0,0}, - {6938,6890,6892 ,5861,5798,5800 ,0,0,0}, {6933,6939,6934 ,5852,5862,5854 ,0,0,0}, - {6892,6890,6889 ,5800,5798,5797 ,0,0,0}, {6940,6941,6935 ,5863,5864,5857 ,0,0,0}, - {6922,6889,6891 ,5838,5797,5799 ,0,0,0}, {6939,6933,6921 ,5862,5852,5837 ,0,0,0}, - {5798,6935,6936 ,5858,5857,5859 ,0,0,0}, {5799,6934,5797 ,5855,5854,5856 ,0,0,0}, - {6934,6939,6940 ,5854,5862,5863 ,0,0,0}, {6942,6936,6935 ,5865,5859,5857 ,0,0,0}, - {6897,6896,6904 ,5807,5806,5816 ,0,0,0}, {6943,6937,6899 ,5866,5860,5809 ,0,0,0}, - {6943,6912,6937 ,5866,5828,5860 ,0,0,0}, {6904,6938,6892 ,5816,5861,5800 ,0,0,0}, - {6937,6944,6938 ,5860,5867,5861 ,0,0,0}, {6894,6929,6921 ,5804,5845,5837 ,0,0,0}, - {6944,6893,6890 ,5867,5803,5798 ,0,0,0}, {6916,6941,6940 ,5832,5864,5863 ,0,0,0}, - {6915,6941,6916 ,5831,5864,5832 ,0,0,0}, {6922,6921,6933 ,5838,5837,5852 ,0,0,0}, - {6891,6894,6921 ,5799,5804,5837 ,0,0,0}, {6934,6940,6935 ,5854,5863,5857 ,0,0,0}, - {6929,6926,6939 ,5845,5842,5862 ,0,0,0}, {6935,6941,6942 ,5857,5864,5865 ,0,0,0}, - {6940,6926,6916 ,5863,5842,5832 ,0,0,0}, {6945,6942,6941 ,5868,5865,5864 ,0,0,0}, - {6896,6937,6938 ,5806,5860,5861 ,0,0,0}, {6913,6912,6943 ,5829,5828,5866 ,0,0,0}, - {6946,6905,6947 ,5869,5818,5870 ,0,0,0}, {6938,6944,6890 ,5861,5867,5798 ,0,0,0}, - {6948,6944,6912 ,5871,5867,5828 ,0,0,0}, {6929,6894,6917 ,5845,5804,5833 ,0,0,0}, - {6948,6895,6893 ,5871,5805,5803 ,0,0,0}, {6949,6914,6927 ,5872,5830,5843 ,0,0,0}, - {6939,6926,6940 ,5862,5842,5863 ,0,0,0}, {6921,6929,6939 ,5837,5845,5862 ,0,0,0}, - {6929,6917,6928 ,5845,5833,5844 ,0,0,0}, {6915,6914,6950 ,5831,5830,5873 ,0,0,0}, - {6928,6927,6926 ,5844,5843,5842 ,0,0,0}, {6941,6915,6945 ,5864,5831,5868 ,0,0,0}, - {6916,6927,6914 ,5832,5843,5830 ,0,0,0}, {6951,6945,6915 ,5874,5868,5831 ,0,0,0}, - {6937,6912,6944 ,5860,5828,5867 ,0,0,0}, {6907,6906,6913 ,5820,5819,5829 ,0,0,0}, - {6895,6952,6917 ,5805,5875,5833 ,0,0,0}, {6944,6948,6893 ,5867,5871,5803 ,0,0,0}, - {6953,6948,6906 ,5876,5871,5819 ,0,0,0}, {6917,6954,6928 ,5833,5877,5844 ,0,0,0}, - {6953,6952,6895 ,5876,5875,5805 ,0,0,0}, {6928,6955,6927 ,5844,5878,5843 ,0,0,0}, - {6954,6917,6952 ,5877,5833,5875 ,0,0,0}, {6914,6924,6950 ,5830,5840,5873 ,0,0,0}, - {6955,6928,6954 ,5878,5844,5877 ,0,0,0}, {6956,6950,6923 ,5879,5873,5839 ,0,0,0}, - {6949,6927,6955 ,5872,5843,5878 ,0,0,0}, {6915,6950,6951 ,5831,5873,5874 ,0,0,0}, - {6914,6949,6924 ,5830,5872,5840 ,0,0,0}, {6956,6951,6950 ,5879,5874,5873 ,0,0,0}, - {6912,6906,6948 ,5828,5819,5871 ,0,0,0}, {6947,6905,6907 ,5870,5818,5820 ,0,0,0}, - {6952,6909,6954 ,5875,5824,5877 ,0,0,0}, {6948,6953,6895 ,5871,5876,5805 ,0,0,0}, - {6905,6957,6953 ,5818,5880,5876 ,0,0,0}, {6954,6908,6955 ,5877,5823,5878 ,0,0,0}, - {6957,6909,6952 ,5880,5824,5875 ,0,0,0}, {6955,6958,6949 ,5878,5881,5872 ,0,0,0}, - {6909,6908,6954 ,5824,5823,5877 ,0,0,0}, {6959,6924,6949 ,5882,5840,5872 ,0,0,0}, - {6958,6955,6908 ,5881,5878,5823 ,0,0,0}, {6960,6923,6920 ,5883,5839,5836 ,0,0,0}, - {6949,6958,6959 ,5872,5881,5882 ,0,0,0}, {6959,6925,6924 ,5882,5841,5840 ,0,0,0}, - {6956,6923,6960 ,5879,5839,5883 ,0,0,0}, {6950,6924,6923 ,5873,5840,5839 ,0,0,0}, - {6906,6905,6953 ,5819,5818,5876 ,0,0,0}, {6961,6946,6947 ,5884,5869,5870 ,0,0,0}, - {6962,6958,6908 ,5885,5881,5823 ,0,0,0}, {6953,6957,6952 ,5876,5880,5875 ,0,0,0}, - {6946,6901,6957 ,5869,5811,5880 ,0,0,0}, {6963,6959,6958 ,5886,5882,5881 ,0,0,0}, - {6901,6910,6909 ,5811,5825,5824 ,0,0,0}, {6964,6925,6959 ,5887,5841,5882 ,0,0,0}, - {6910,6962,6908 ,5825,5885,5823 ,0,0,0}, {6932,6918,6965 ,5848,5834,5888 ,0,0,0}, - {6962,6963,6958 ,5885,5886,5881 ,0,0,0}, {6920,6925,6966 ,5836,5841,5889 ,0,0,0}, - {6964,6959,6963 ,5887,5882,5886 ,0,0,0}, {6966,6925,6964 ,5889,5841,5887 ,0,0,0}, - {6960,6920,6919 ,5883,5836,5835 ,0,0,0}, {6923,6925,6920 ,5839,5841,5836 ,0,0,0}, - {6905,6946,6957 ,5818,5869,5880 ,0,0,0}, {6902,6961,6911 ,5812,5884,5826 ,0,0,0}, - {6900,6967,6910 ,5810,5890,5825 ,0,0,0}, {6957,6901,6909 ,5880,5811,5824 ,0,0,0}, - {6900,6910,6901 ,5810,5825,5811 ,0,0,0}, {6967,6968,6962 ,5890,5891,5885 ,0,0,0}, - {6967,6962,6910 ,5890,5885,5825 ,0,0,0}, {6968,6969,6963 ,5891,5892,5886 ,0,0,0}, - {6968,6963,6962 ,5891,5886,5885 ,0,0,0}, {6969,6970,6964 ,5892,5893,5887 ,0,0,0}, - {6969,6964,6963 ,5892,5887,5886 ,0,0,0}, {6970,6965,6966 ,5893,5888,5889 ,0,0,0}, - {6966,6964,6970 ,5889,5887,5893 ,0,0,0}, {6965,6918,6966 ,5888,5834,5889 ,0,0,0}, - {6919,6918,6931 ,5835,5834,5847 ,0,0,0}, {6920,6966,6918 ,5836,5889,5834 ,0,0,0}, - {6961,6902,6946 ,5884,5812,5869 ,0,0,0}, {6901,6946,6902 ,5811,5869,5812 ,0,0,0}, - {6967,6338,6356 ,5890,5822,5894 ,0,0,0}, {6339,6900,6902 ,5821,5810,5812 ,0,0,0}, - {6968,6356,6357 ,5891,5894,5895 ,0,0,0}, {6338,6967,6900 ,5822,5890,5810 ,0,0,0}, - {6969,6357,6359 ,5892,5895,5896 ,0,0,0}, {6356,6968,6967 ,5894,5891,5890 ,0,0,0}, - {6970,6359,6342 ,5893,5896,5897 ,0,0,0}, {6357,6969,6968 ,5895,5892,5891 ,0,0,0}, - {6965,6342,6363 ,5888,5897,5898 ,0,0,0}, {6359,6970,6969 ,5896,5893,5892 ,0,0,0}, - {6932,6363,6362 ,5848,5898,5850 ,0,0,0}, {6342,6965,6970 ,5897,5888,5893 ,0,0,0}, - {6362,6930,6932 ,5850,5846,5848 ,0,0,0}, {6363,6932,6965 ,5898,5848,5888 ,0,0,0}, - {6971,6972,6973 ,5899,5900,5901 ,0,0,0}, {6974,6975,5775 ,5902,5903,5904 ,0,0,0}, - {6972,6976,6973 ,5900,5905,5901 ,0,0,0}, {5770,5775,6975 ,5906,5904,5903 ,0,0,0}, - {6977,6978,6979 ,5907,5908,5909 ,0,0,0}, {5780,6980,6978 ,5910,5911,5908 ,0,0,0}, - {6981,6982,6983 ,5912,5913,5914 ,0,0,0}, {5778,6980,5780 ,5915,5911,5910 ,0,0,0}, - {6980,6979,6978 ,5911,5909,5908 ,0,0,0}, {5774,6978,6974 ,5916,5908,5902 ,0,0,0}, - {6984,6985,6986 ,5917,5918,5919 ,0,0,0}, {6987,6988,6989 ,5920,5921,5922 ,0,0,0}, - {6990,6985,6991 ,5923,5918,5924 ,0,0,0}, {6992,6993,6971 ,5925,5926,5899 ,0,0,0}, - {6982,6289,6208 ,5913,5927,5928 ,0,0,0}, {6994,6995,6996 ,5929,5930,5931 ,0,0,0}, - {6997,6319,6981 ,5932,5933,5912 ,0,0,0}, {6289,6981,6319 ,5927,5912,5933 ,0,0,0}, - {6998,6999,7000 ,5934,5935,5936 ,0,0,0}, {6976,7001,6973 ,5905,5937,5901 ,0,0,0}, - {7002,7003,7004 ,5938,5939,5940 ,0,0,0}, {7005,7006,7007 ,5941,5942,5943 ,0,0,0}, - {6996,6999,7008 ,5931,5935,5944 ,0,0,0}, {7009,7010,7011 ,5945,5946,5947 ,0,0,0}, - {7012,6971,7013 ,5948,5899,5949 ,0,0,0}, {7010,7005,7011 ,5946,5941,5947 ,0,0,0}, - {6992,5770,6975 ,5925,5906,5903 ,0,0,0}, {6318,6322,7009 ,5950,5951,5945 ,0,0,0}, - {5770,6992,5768 ,5906,5925,5952 ,0,0,0}, {5768,6992,7012 ,5952,5925,5948 ,0,0,0}, - {7014,5763,7012 ,5953,5954,5948 ,0,0,0}, {6992,6975,6993 ,5925,5903,5926 ,0,0,0}, - {7014,7015,5767 ,5953,5955,5956 ,0,0,0}, {5767,5763,7014 ,5956,5954,5953 ,0,0,0}, - {5759,7016,5761 ,5957,5958,5959 ,0,0,0}, {7016,5759,7015 ,5958,5957,5955 ,0,0,0}, - {5780,6978,5774 ,5910,5908,5916 ,0,0,0}, {7017,6977,6979 ,5960,5907,5909 ,0,0,0}, - {7017,7018,6977 ,5960,5961,5907 ,0,0,0}, {5774,6974,5775 ,5916,5902,5904 ,0,0,0}, - {7019,6974,6977 ,5962,5902,5907 ,0,0,0}, {6971,6993,6972 ,5899,5926,5900 ,0,0,0}, - {7019,6993,6975 ,5962,5926,5903 ,0,0,0}, {7014,7020,7015 ,5953,5963,5955 ,0,0,0}, - {7021,7016,7022 ,5964,5958,5965 ,0,0,0}, {5768,7012,5763 ,5952,5948,5954 ,0,0,0}, - {7012,6992,6971 ,5948,5925,5899 ,0,0,0}, {5767,7015,5759 ,5956,5955,5957 ,0,0,0}, - {7013,7020,7014 ,5949,5963,5953 ,0,0,0}, {7016,7023,5761 ,5958,5966,5959 ,0,0,0}, - {7015,7020,7022 ,5955,5963,5965 ,0,0,0}, {7024,7023,7016 ,5967,5966,5958 ,0,0,0}, - {6978,6977,6974 ,5908,5907,5902 ,0,0,0}, {7025,7018,7017 ,5968,5961,5960 ,0,0,0}, - {7025,6986,7018 ,5968,5919,5961 ,0,0,0}, {6974,7019,6975 ,5902,5962,5903 ,0,0,0}, - {7018,7026,7019 ,5961,5969,5962 ,0,0,0}, {6973,7000,7013 ,5901,5936,5949 ,0,0,0}, - {7026,6972,6993 ,5969,5900,5926 ,0,0,0}, {6996,7021,7022 ,5931,5964,5965 ,0,0,0}, - {6995,7021,6996 ,5930,5964,5931 ,0,0,0}, {7012,7013,7014 ,5948,5949,5953 ,0,0,0}, - {6971,6973,7013 ,5899,5901,5949 ,0,0,0}, {7015,7022,7016 ,5955,5965,5958 ,0,0,0}, - {7000,6999,7020 ,5936,5935,5963 ,0,0,0}, {7016,7021,7024 ,5958,5964,5967 ,0,0,0}, - {7022,6999,6996 ,5965,5935,5931 ,0,0,0}, {7027,7024,7021 ,5970,5967,5964 ,0,0,0}, - {6977,7018,7019 ,5907,5961,5962 ,0,0,0}, {6984,6986,7025 ,5917,5919,5968 ,0,0,0}, - {7028,6990,7029 ,5971,5923,5972 ,0,0,0}, {7019,7026,6993 ,5962,5969,5926 ,0,0,0}, - {7030,7026,6986 ,5973,5969,5919 ,0,0,0}, {7000,6973,7001 ,5936,5901,5937 ,0,0,0}, - {7030,6976,6972 ,5973,5905,5900 ,0,0,0}, {7031,6994,7008 ,5974,5929,5944 ,0,0,0}, - {7020,6999,7022 ,5963,5935,5965 ,0,0,0}, {7013,7000,7020 ,5949,5936,5963 ,0,0,0}, - {7000,7001,6998 ,5936,5937,5934 ,0,0,0}, {6995,6994,7032 ,5930,5929,5975 ,0,0,0}, - {6998,7008,6999 ,5934,5944,5935 ,0,0,0}, {7021,6995,7027 ,5964,5930,5970 ,0,0,0}, - {6996,7008,6994 ,5931,5944,5929 ,0,0,0}, {7033,7027,6995 ,5976,5970,5930 ,0,0,0}, - {7018,6986,7026 ,5961,5919,5969 ,0,0,0}, {6991,6985,6984 ,5924,5918,5917 ,0,0,0}, - {6976,7034,7001 ,5905,5977,5937 ,0,0,0}, {7026,7030,6972 ,5969,5973,5900 ,0,0,0}, - {7035,7030,6985 ,5978,5973,5918 ,0,0,0}, {7001,7036,6998 ,5937,5979,5934 ,0,0,0}, - {7035,7034,6976 ,5978,5977,5905 ,0,0,0}, {6998,7037,7008 ,5934,5980,5944 ,0,0,0}, - {7036,7001,7034 ,5979,5937,5977 ,0,0,0}, {6994,7003,7032 ,5929,5939,5975 ,0,0,0}, - {7037,6998,7036 ,5980,5934,5979 ,0,0,0}, {7038,7032,7002 ,5981,5975,5938 ,0,0,0}, - {7031,7008,7037 ,5974,5944,5980 ,0,0,0}, {6995,7032,7033 ,5930,5975,5976 ,0,0,0}, - {6994,7031,7003 ,5929,5974,5939 ,0,0,0}, {7038,7033,7032 ,5981,5976,5975 ,0,0,0}, - {6986,6985,7030 ,5919,5918,5973 ,0,0,0}, {7029,6990,6991 ,5972,5923,5924 ,0,0,0}, - {7034,6987,7036 ,5977,5920,5979 ,0,0,0}, {7030,7035,6976 ,5973,5978,5905 ,0,0,0}, - {6990,7039,7035 ,5923,5982,5978 ,0,0,0}, {7036,6989,7037 ,5979,5922,5980 ,0,0,0}, - {7039,6987,7034 ,5982,5920,5977 ,0,0,0}, {7037,7040,7031 ,5980,5983,5974 ,0,0,0}, - {6987,6989,7036 ,5920,5922,5979 ,0,0,0}, {7041,7003,7031 ,5984,5939,5974 ,0,0,0}, - {7040,7037,6989 ,5983,5980,5922 ,0,0,0}, {7042,7002,7007 ,5985,5938,5943 ,0,0,0}, - {7031,7040,7041 ,5974,5983,5984 ,0,0,0}, {7041,7004,7003 ,5984,5940,5939 ,0,0,0}, - {7038,7002,7042 ,5981,5938,5985 ,0,0,0}, {7032,7003,7002 ,5975,5939,5938 ,0,0,0}, - {6985,6990,7035 ,5918,5923,5978 ,0,0,0}, {7043,7028,7029 ,5986,5971,5972 ,0,0,0}, - {7044,7040,6989 ,5987,5983,5922 ,0,0,0}, {7035,7039,7034 ,5978,5982,5977 ,0,0,0}, - {7028,6983,7039 ,5971,5914,5982 ,0,0,0}, {7045,7041,7040 ,5988,5984,5983 ,0,0,0}, - {6983,6988,6987 ,5914,5921,5920 ,0,0,0}, {7046,7004,7041 ,5989,5940,5984 ,0,0,0}, - {6988,7044,6989 ,5921,5987,5922 ,0,0,0}, {7011,7005,7047 ,5947,5941,5990 ,0,0,0}, - {7044,7045,7040 ,5987,5988,5983 ,0,0,0}, {7007,7004,7048 ,5943,5940,5991 ,0,0,0}, - {7046,7041,7045 ,5989,5984,5988 ,0,0,0}, {7048,7004,7046 ,5991,5940,5989 ,0,0,0}, - {7042,7007,7006 ,5985,5943,5942 ,0,0,0}, {7002,7004,7007 ,5938,5940,5943 ,0,0,0}, - {6990,7028,7039 ,5923,5971,5982 ,0,0,0}, {6981,7043,6997 ,5912,5986,5932 ,0,0,0}, - {6982,7049,6988 ,5913,5992,5921 ,0,0,0}, {7039,6983,6987 ,5982,5914,5920 ,0,0,0}, - {6982,6988,6983 ,5913,5921,5914 ,0,0,0}, {7049,7050,7044 ,5992,5993,5987 ,0,0,0}, - {7049,7044,6988 ,5992,5987,5921 ,0,0,0}, {7050,7051,7045 ,5993,5994,5988 ,0,0,0}, - {7050,7045,7044 ,5993,5988,5987 ,0,0,0}, {7051,7052,7046 ,5994,5995,5989 ,0,0,0}, - {7051,7046,7045 ,5994,5989,5988 ,0,0,0}, {7052,7047,7048 ,5995,5990,5991 ,0,0,0}, - {7048,7046,7052 ,5991,5989,5995 ,0,0,0}, {7047,7005,7048 ,5990,5941,5991 ,0,0,0}, - {7006,7005,7010 ,5942,5941,5946 ,0,0,0}, {7007,7048,7005 ,5943,5991,5941 ,0,0,0}, - {7043,6981,7028 ,5986,5912,5971 ,0,0,0}, {6983,7028,6981 ,5914,5971,5912 ,0,0,0}, - {7049,6208,6308 ,5992,5928,5996 ,0,0,0}, {6289,6982,6981 ,5927,5913,5912 ,0,0,0}, - {7050,6308,6513 ,5993,5996,5997 ,0,0,0}, {6208,7049,6982 ,5928,5992,5913 ,0,0,0}, - {7051,6513,6315 ,5994,5997,5998 ,0,0,0}, {6308,7050,7049 ,5996,5993,5992 ,0,0,0}, - {7052,6315,6326 ,5995,5998,5999 ,0,0,0}, {6513,7051,7050 ,5997,5994,5993 ,0,0,0}, - {7047,6326,6312 ,5990,5999,6000 ,0,0,0}, {6315,7052,7051 ,5998,5995,5994 ,0,0,0}, - {7011,6312,6318 ,5947,6000,5950 ,0,0,0}, {6326,7047,7052 ,5999,5990,5995 ,0,0,0}, - {6318,7009,7011 ,5950,5945,5947 ,0,0,0}, {6312,7011,7047 ,6000,5947,5990 ,0,0,0}, - {7053,7054,7055 ,6001,6002,6003 ,0,0,0}, {7056,5743,5740 ,6004,6005,6006 ,0,0,0}, - {7055,7057,7058 ,6003,6007,6008 ,0,0,0}, {7057,7059,7058 ,6007,6009,6008 ,0,0,0}, - {7060,7061,7062 ,6010,6011,6012 ,0,0,0}, {7062,7063,7060 ,6012,6013,6010 ,0,0,0}, - {7064,7065,7066 ,6014,6015,6016 ,0,0,0}, {7067,7061,5746 ,6017,6011,6018 ,0,0,0}, - {7067,7062,7061 ,6017,6012,6011 ,0,0,0}, {5746,5745,7067 ,6018,5020,6017 ,0,0,0}, - {7068,5740,5748 ,6019,6006,6020 ,0,0,0}, {7069,7070,7071 ,6021,6022,6023 ,0,0,0}, - {7064,6263,6279 ,6014,6024,6025 ,0,0,0}, {7072,7073,7074 ,6026,6027,6028 ,0,0,0}, - {7075,6266,7066 ,6029,6030,6016 ,0,0,0}, {7076,7077,7070 ,6031,6032,6022 ,0,0,0}, - {6263,7066,6266 ,6024,6016,6030 ,0,0,0}, {7078,7079,7080 ,6033,6034,6035 ,0,0,0}, - {7081,7058,7059 ,6036,6008,6009 ,0,0,0}, {7082,7083,7084 ,6037,6038,6039 ,0,0,0}, - {7085,7086,7055 ,6040,6041,6003 ,0,0,0}, {7087,7088,7089 ,6042,6043,6044 ,0,0,0}, - {7080,7090,7091 ,6035,6045,6046 ,0,0,0}, {7092,7090,7093 ,6047,6045,6048 ,0,0,0}, - {7094,7095,7096 ,6049,6050,6051 ,0,0,0}, {7053,5743,7056 ,6001,6005,6004 ,0,0,0}, - {7095,7082,7096 ,6050,6037,6051 ,0,0,0}, {7086,5732,7053 ,6041,6052,6001 ,0,0,0}, - {6282,6284,7094 ,6053,6054,6049 ,0,0,0}, {7097,5733,7086 ,6055,6056,6041 ,0,0,0}, - {5732,5743,7053 ,6052,6005,6001 ,0,0,0}, {7097,7098,5735 ,6055,6057,6058 ,0,0,0}, - {7086,5733,5732 ,6041,6056,6052 ,0,0,0}, {5729,7099,5730 ,6059,6060,6061 ,0,0,0}, - {5733,7097,5735 ,6056,6055,6058 ,0,0,0}, {5721,5730,7100 ,6062,6061,6063 ,0,0,0}, - {7099,5729,7098 ,6060,6059,6057 ,0,0,0}, {5748,7061,7068 ,6020,6011,6019 ,0,0,0}, - {7061,5748,5746 ,6011,6020,6018 ,0,0,0}, {7063,7101,7060 ,6013,6064,6010 ,0,0,0}, - {7068,7056,5740 ,6019,6004,6006 ,0,0,0}, {7102,7068,7060 ,6065,6019,6010 ,0,0,0}, - {7055,7054,7057 ,6003,6002,6007 ,0,0,0}, {7102,7054,7056 ,6065,6002,6004 ,0,0,0}, - {7097,7103,7098 ,6055,6066,6057 ,0,0,0}, {7056,7054,7053 ,6004,6002,6001 ,0,0,0}, - {7104,7105,7099 ,6067,6068,6060 ,0,0,0}, {7086,7053,7055 ,6041,6001,6003 ,0,0,0}, - {7103,7097,7085 ,6066,6055,6040 ,0,0,0}, {5730,7099,7100 ,6061,6060,6063 ,0,0,0}, - {5735,7098,5729 ,6058,6057,6059 ,0,0,0}, {7098,7103,7104 ,6057,6066,6067 ,0,0,0}, - {7106,7100,7099 ,6069,6063,6060 ,0,0,0}, {7061,7060,7068 ,6011,6010,6019 ,0,0,0}, - {7107,7101,7063 ,6070,6064,6013 ,0,0,0}, {7107,7076,7101 ,6070,6031,6064 ,0,0,0}, - {7068,7102,7056 ,6019,6065,6004 ,0,0,0}, {7101,7108,7102 ,6064,6071,6065 ,0,0,0}, - {7058,7093,7085 ,6008,6048,6040 ,0,0,0}, {7108,7057,7054 ,6071,6007,6002 ,0,0,0}, - {7080,7105,7104 ,6035,6068,6067 ,0,0,0}, {7079,7105,7080 ,6034,6068,6035 ,0,0,0}, - {7086,7085,7097 ,6041,6040,6055 ,0,0,0}, {7055,7058,7085 ,6003,6008,6040 ,0,0,0}, - {7098,7104,7099 ,6057,6067,6060 ,0,0,0}, {7093,7090,7103 ,6048,6045,6066 ,0,0,0}, - {7099,7105,7106 ,6060,6068,6069 ,0,0,0}, {7104,7090,7080 ,6067,6045,6035 ,0,0,0}, - {7109,7106,7105 ,6072,6069,6068 ,0,0,0}, {7060,7101,7102 ,6010,6064,6065 ,0,0,0}, - {7077,7076,7107 ,6032,6031,6070 ,0,0,0}, {7110,7069,7111 ,6073,6021,6074 ,0,0,0}, - {7102,7108,7054 ,6065,6071,6002 ,0,0,0}, {7112,7108,7076 ,6075,6071,6031 ,0,0,0}, - {7093,7058,7081 ,6048,6008,6036 ,0,0,0}, {7112,7059,7057 ,6075,6009,6007 ,0,0,0}, - {7113,7078,7091 ,6076,6033,6046 ,0,0,0}, {7103,7090,7104 ,6066,6045,6067 ,0,0,0}, - {7085,7093,7103 ,6040,6048,6066 ,0,0,0}, {7093,7081,7092 ,6048,6036,6047 ,0,0,0}, - {7079,7078,7114 ,6034,6033,6077 ,0,0,0}, {7092,7091,7090 ,6047,6046,6045 ,0,0,0}, - {7105,7079,7109 ,6068,6034,6072 ,0,0,0}, {7080,7091,7078 ,6035,6046,6033 ,0,0,0}, - {7115,7109,7079 ,6078,6072,6034 ,0,0,0}, {7101,7076,7108 ,6064,6031,6071 ,0,0,0}, - {7071,7070,7077 ,6023,6022,6032 ,0,0,0}, {7059,7116,7081 ,6009,6079,6036 ,0,0,0}, - {7108,7112,7057 ,6071,6075,6007 ,0,0,0}, {7117,7112,7070 ,6080,6075,6022 ,0,0,0}, - {7081,7118,7092 ,6036,6081,6047 ,0,0,0}, {7117,7116,7059 ,6080,6079,6009 ,0,0,0}, - {7092,7119,7091 ,6047,6082,6046 ,0,0,0}, {7118,7081,7116 ,6081,6036,6079 ,0,0,0}, - {7078,7088,7114 ,6033,6043,6077 ,0,0,0}, {7119,7092,7118 ,6082,6047,6081 ,0,0,0}, - {7120,7114,7087 ,6083,6077,6042 ,0,0,0}, {7113,7091,7119 ,6076,6046,6082 ,0,0,0}, - {7079,7114,7115 ,6034,6077,6078 ,0,0,0}, {7078,7113,7088 ,6033,6076,6043 ,0,0,0}, - {7120,7115,7114 ,6083,6078,6077 ,0,0,0}, {7076,7070,7112 ,6031,6022,6075 ,0,0,0}, - {7111,7069,7071 ,6074,6021,6023 ,0,0,0}, {7116,7073,7118 ,6079,6027,6081 ,0,0,0}, - {7112,7117,7059 ,6075,6080,6009 ,0,0,0}, {7069,7121,7117 ,6021,6084,6080 ,0,0,0}, - {7118,7072,7119 ,6081,6026,6082 ,0,0,0}, {7121,7073,7116 ,6084,6027,6079 ,0,0,0}, - {7119,7122,7113 ,6082,6085,6076 ,0,0,0}, {7073,7072,7118 ,6027,6026,6081 ,0,0,0}, - {7123,7088,7113 ,6086,6043,6076 ,0,0,0}, {7122,7119,7072 ,6085,6082,6026 ,0,0,0}, - {7124,7087,7084 ,6087,6042,6039 ,0,0,0}, {7113,7122,7123 ,6076,6085,6086 ,0,0,0}, - {7123,7089,7088 ,6086,6044,6043 ,0,0,0}, {7120,7087,7124 ,6083,6042,6087 ,0,0,0}, - {7114,7088,7087 ,6077,6043,6042 ,0,0,0}, {7070,7069,7117 ,6022,6021,6080 ,0,0,0}, - {7125,7110,7111 ,6088,6073,6074 ,0,0,0}, {7126,7122,7072 ,6089,6085,6026 ,0,0,0}, - {7117,7121,7116 ,6080,6084,6079 ,0,0,0}, {7110,7065,7121 ,6073,6015,6084 ,0,0,0}, - {7127,7123,7122 ,6090,6086,6085 ,0,0,0}, {7065,7074,7073 ,6015,6028,6027 ,0,0,0}, - {7128,7089,7123 ,6091,6044,6086 ,0,0,0}, {7074,7126,7072 ,6028,6089,6026 ,0,0,0}, - {7096,7082,7129 ,6051,6037,6092 ,0,0,0}, {7126,7127,7122 ,6089,6090,6085 ,0,0,0}, - {7084,7089,7130 ,6039,6044,6093 ,0,0,0}, {7128,7123,7127 ,6091,6086,6090 ,0,0,0}, - {7130,7089,7128 ,6093,6044,6091 ,0,0,0}, {7124,7084,7083 ,6087,6039,6038 ,0,0,0}, - {7087,7089,7084 ,6042,6044,6039 ,0,0,0}, {7069,7110,7121 ,6021,6073,6084 ,0,0,0}, - {7066,7125,7075 ,6016,6088,6029 ,0,0,0}, {7064,7131,7074 ,6014,6094,6028 ,0,0,0}, - {7121,7065,7073 ,6084,6015,6027 ,0,0,0}, {7064,7074,7065 ,6014,6028,6015 ,0,0,0}, - {7131,7132,7126 ,6094,6095,6089 ,0,0,0}, {7131,7126,7074 ,6094,6089,6028 ,0,0,0}, - {7132,7133,7127 ,6095,6096,6090 ,0,0,0}, {7132,7127,7126 ,6095,6090,6089 ,0,0,0}, - {7133,7134,7128 ,6096,6097,6091 ,0,0,0}, {7133,7128,7127 ,6096,6091,6090 ,0,0,0}, - {7134,7129,7130 ,6097,6092,6093 ,0,0,0}, {7130,7128,7134 ,6093,6091,6097 ,0,0,0}, - {7129,7082,7130 ,6092,6037,6093 ,0,0,0}, {7083,7082,7095 ,6038,6037,6050 ,0,0,0}, - {7084,7130,7082 ,6039,6093,6037 ,0,0,0}, {7125,7066,7110 ,6088,6016,6073 ,0,0,0}, - {7065,7110,7066 ,6015,6073,6016 ,0,0,0}, {7131,6279,6273 ,6094,6025,6098 ,0,0,0}, - {6263,7064,7066 ,6024,6014,6016 ,0,0,0}, {7132,6273,6277 ,6095,6098,6099 ,0,0,0}, - {6279,7131,7064 ,6025,6094,6014 ,0,0,0}, {7133,6277,6276 ,6096,6099,6100 ,0,0,0}, - {6273,7132,7131 ,6098,6095,6094 ,0,0,0}, {7134,6276,6286 ,6097,6100,6101 ,0,0,0}, - {6277,7133,7132 ,6099,6096,6095 ,0,0,0}, {7129,6286,6248 ,6092,6101,6102 ,0,0,0}, - {6276,7134,7133 ,6100,6097,6096 ,0,0,0}, {7096,6248,6282 ,6051,6102,6053 ,0,0,0}, - {6286,7129,7134 ,6101,6092,6097 ,0,0,0}, {6282,7094,7096 ,6053,6049,6051 ,0,0,0}, - {6248,7096,7129 ,6102,6051,6092 ,0,0,0}, {7135,7136,7137 ,730,6103,6103 ,0,0,0}, - {5365,5307,5304 ,6103,730,730 ,0,0,0}, {7138,7136,7139 ,6104,6103,6105 ,0,0,0}, - {7138,7140,7141 ,6104,6106,6103 ,0,0,0}, {7142,7137,7143 ,6107,6103,6108 ,0,0,0}, - {7140,7144,7145 ,6106,6109,6110 ,0,0,0}, {7146,7147,7143 ,6103,6111,6108 ,0,0,0}, - {7145,7148,7149 ,6110,6112,6110 ,0,0,0}, {7150,7146,7151 ,6111,6103,6103 ,0,0,0}, - {7149,7152,7153 ,6110,6113,6112 ,0,0,0}, {7153,7154,7155 ,6112,6109,6110 ,0,0,0}, - {7155,7156,7157 ,6110,6106,6114 ,0,0,0}, {7151,7158,7159 ,6103,730,6115 ,0,0,0}, - {7160,7157,7161 ,6105,6114,6104 ,0,0,0}, {7162,7163,7164 ,6111,730,6111 ,0,0,0}, - {7165,7157,7160 ,6111,6114,6105 ,0,0,0}, {7164,7166,7167 ,6111,6110,6114 ,0,0,0}, - {7168,7169,7170 ,730,6114,6108 ,0,0,0}, {5313,5378,5380 ,6110,6111,6110 ,0,0,0}, - {7171,7172,7173 ,6115,730,6111 ,0,0,0}, {5377,5312,5375 ,730,730,6114 ,0,0,0}, - {7174,7175,5296 ,6111,6110,6110 ,0,0,0}, {5308,5371,5310 ,730,6114,6103 ,0,0,0}, - {5293,5343,5340 ,730,730,6114 ,0,0,0}, {5307,5366,5369 ,730,730,6103 ,0,0,0}, - {5337,5289,5338 ,6114,730,730 ,0,0,0}, {5363,5365,5304 ,730,6103,730 ,0,0,0}, - {5287,5331,5284 ,6103,6103,730 ,0,0,0}, {5357,5359,5298 ,730,730,730 ,0,0,0}, - {5325,5322,5283 ,730,730,730 ,0,0,0}, {5351,5297,5277 ,730,730,730 ,0,0,0}, - {5281,5320,5319 ,730,730,730 ,0,0,0}, {5281,5282,5320 ,730,730,730 ,0,0,0}, - {5283,5322,5282 ,730,730,730 ,0,0,0}, {5351,5277,5315 ,730,730,730 ,0,0,0}, - {5277,5281,5316 ,730,730,730 ,0,0,0}, {5326,5284,5328 ,6103,730,730 ,0,0,0}, - {5283,5284,5326 ,730,730,6103 ,0,0,0}, {5297,5354,5298 ,730,730,730 ,0,0,0}, - {5297,5353,5354 ,730,730,730 ,0,0,0}, {5287,5289,5334 ,6103,730,6103 ,0,0,0}, - {5287,5334,5332 ,6103,6103,730 ,0,0,0}, {5304,5302,5360 ,730,730,6103 ,0,0,0}, - {5359,5302,5298 ,730,730,730 ,0,0,0}, {5293,5340,5290 ,730,6114,6103 ,0,0,0}, - {5289,5290,5338 ,730,6103,730 ,0,0,0}, {5307,5365,5366 ,730,6103,730 ,0,0,0}, - {5346,5344,5296 ,6110,6111,6110 ,0,0,0}, {5293,5296,5344 ,730,6110,6111 ,0,0,0}, - {5308,5369,5371 ,730,6103,6114 ,0,0,0}, {5307,5369,5308 ,730,6103,730 ,0,0,0}, - {7173,7176,7174 ,6111,6111,6111 ,0,0,0}, {7177,7174,7176 ,6114,6111,6111 ,0,0,0}, - {5371,5372,5310 ,6114,730,6103 ,0,0,0}, {5310,5375,5312 ,6103,6114,730 ,0,0,0}, - {5372,5375,5310 ,730,6114,6103 ,0,0,0}, {5377,5378,5312 ,730,6111,730 ,0,0,0}, - {7178,7170,7169 ,6107,6108,6114 ,0,0,0}, {5313,5312,5378 ,6110,730,6111 ,0,0,0}, - {5380,7166,5313 ,6110,6110,6110 ,0,0,0}, {7169,7165,7179 ,6114,6111,730 ,0,0,0}, - {7180,7181,7168 ,6111,6110,730 ,0,0,0}, {7181,7171,7173 ,6110,6115,6111 ,0,0,0}, - {7154,7156,7155 ,6109,6106,6110 ,0,0,0}, {5363,5304,5360 ,730,730,6103 ,0,0,0}, - {5360,5302,5359 ,6103,730,730 ,0,0,0}, {5357,5298,5354 ,730,730,730 ,0,0,0}, - {5353,5297,5351 ,730,730,730 ,0,0,0}, {5315,5277,5316 ,730,730,730 ,0,0,0}, - {5316,5281,5319 ,730,730,730 ,0,0,0}, {5320,5282,5322 ,730,730,730 ,0,0,0}, - {5325,5283,5326 ,730,730,6103 ,0,0,0}, {5328,5284,5331 ,730,730,6103 ,0,0,0}, - {5331,5287,5332 ,6103,6103,730 ,0,0,0}, {5334,5289,5337 ,6103,730,6114 ,0,0,0}, - {5338,5290,5340 ,730,6103,6114 ,0,0,0}, {5343,5293,5344 ,730,730,6111 ,0,0,0}, - {5346,5296,7175 ,6110,6110,6110 ,0,0,0}, {7175,7174,7177 ,6110,6111,6114 ,0,0,0}, - {7176,7173,7172 ,6111,6111,730 ,0,0,0}, {7171,7181,7180 ,6115,6110,6111 ,0,0,0}, - {7182,7168,7170 ,6111,730,6108 ,0,0,0}, {7168,7182,7180 ,730,6111,6111 ,0,0,0}, - {7178,7169,7179 ,6107,6114,730 ,0,0,0}, {7179,7165,7160 ,730,6111,6105 ,0,0,0}, - {7161,7157,7156 ,6104,6114,6106 ,0,0,0}, {7155,7149,7153 ,6110,6110,6112 ,0,0,0}, - {7152,7149,7148 ,6113,6110,6112 ,0,0,0}, {7148,7145,7144 ,6112,6110,6109 ,0,0,0}, - {7140,7145,7141 ,6106,6110,6103 ,0,0,0}, {7138,7141,7136 ,6104,6103,6103 ,0,0,0}, - {7135,7139,7136 ,730,6105,6103 ,0,0,0}, {7142,7135,7137 ,6107,730,6103 ,0,0,0}, - {7146,7143,7137 ,6103,6108,6103 ,0,0,0}, {7146,7150,7147 ,6103,6111,6111 ,0,0,0}, - {7151,7159,7150 ,6103,6115,6111 ,0,0,0}, {7151,7163,7158 ,6103,730,730 ,0,0,0}, - {7162,7164,7167 ,6111,6111,6114 ,0,0,0}, {7158,7163,7162 ,730,730,6111 ,0,0,0}, - {7166,7164,5313 ,6110,6111,6110 ,0,0,0}, {5349,5317,7183 ,6116,6117,6118 ,0,0,0}, - {5352,7184,7185 ,6119,6120,6121 ,0,0,0}, {7186,7187,5504 ,6122,6123,6124 ,0,0,0}, - {5594,5364,5591 ,6125,6126,6127 ,0,0,0}, {5520,5519,5931 ,6128,6129,6130 ,0,0,0}, - {5450,5453,5374 ,6131,6132,6122 ,0,0,0}, {7188,5455,7189 ,6133,6134,6135 ,0,0,0}, - {7190,7191,7192 ,6136,6137,6138 ,0,0,0}, {5321,5401,5404 ,6122,6120,6139 ,0,0,0}, - {7187,5489,5494 ,6123,6140,6141 ,0,0,0}, {7193,5572,5574 ,6139,6142,6143 ,0,0,0}, - {5844,7194,5845 ,6144,6145,6146 ,0,0,0}, {5902,7195,5895 ,6147,6148,6149 ,0,0,0}, - {5422,7196,5425 ,6150,6144,6150 ,0,0,0}, {7197,5480,5879 ,6151,6134,6152 ,0,0,0}, - {7198,5381,7199 ,6145,6153,6154 ,0,0,0}, {7197,5879,7200 ,6151,6152,6155 ,0,0,0}, - {7201,5879,5878 ,6156,6152,6157 ,0,0,0}, {7202,7203,7204 ,6158,6144,6159 ,0,0,0}, - {7205,7206,7207 ,6160,6161,6162 ,0,0,0}, {5878,7208,7201 ,6157,6163,6156 ,0,0,0}, - {7209,7210,5878 ,6158,6164,6157 ,0,0,0}, {5884,7211,7209 ,6155,6165,6158 ,0,0,0}, - {7212,5889,7213 ,6166,6167,6116 ,0,0,0}, {5884,7209,5878 ,6155,6158,6157 ,0,0,0}, - {5896,7213,5889 ,6168,6116,6167 ,0,0,0}, {7204,7192,7191 ,6159,6138,6137 ,0,0,0}, - {7214,7215,7216 ,6122,6169,6170 ,0,0,0}, {7217,5884,5882 ,6171,6155,6172 ,0,0,0}, - {5882,7218,7217 ,6172,6118,6171 ,0,0,0}, {7219,7220,5892 ,6173,6174,6175 ,0,0,0}, - {5882,5881,7218 ,6172,6176,6118 ,0,0,0}, {5881,7220,7221 ,6176,6174,6177 ,0,0,0}, - {7222,5545,5544 ,6120,6146,6154 ,0,0,0}, {5881,5892,7220 ,6176,6175,6174 ,0,0,0}, - {7219,5892,5887 ,6173,6175,6178 ,0,0,0}, {7199,5383,7223 ,6154,6120,6145 ,0,0,0}, - {7224,7225,7226 ,6177,6179,6180 ,0,0,0}, {7227,7219,5887 ,6181,6173,6178 ,0,0,0}, - {7225,7228,7214 ,6179,6182,6122 ,0,0,0}, {7202,7229,7203 ,6158,6183,6144 ,0,0,0}, - {7216,7215,7230 ,6170,6169,6184 ,0,0,0}, {5896,5895,7231 ,6168,6149,6185 ,0,0,0}, - {7232,5329,7233 ,6186,6187,6119 ,0,0,0}, {5425,7234,5426 ,6150,6144,6188 ,0,0,0}, - {7235,5847,7236 ,6145,6144,6150 ,0,0,0}, {7229,5612,7237 ,6183,6189,6190 ,0,0,0}, - {5842,7238,7239 ,6154,6120,6127 ,0,0,0}, {5579,5578,5942 ,6191,6142,6192 ,0,0,0}, - {7184,5352,5350 ,6120,6119,6122 ,0,0,0}, {5936,5510,5509 ,6193,6194,6195 ,0,0,0}, - {5581,5837,5831 ,6196,6186,6197 ,0,0,0}, {5457,5379,5376 ,6196,6134,6138 ,0,0,0}, - {7187,5608,5603 ,6123,6198,6199 ,0,0,0}, {5374,5453,5376 ,6122,6132,6138 ,0,0,0}, - {5449,5450,5373 ,6157,6131,6137 ,0,0,0}, {5449,5373,5370 ,6157,6137,6131 ,0,0,0}, - {5368,5447,5370 ,6200,6143,6131 ,0,0,0}, {5356,5567,5585 ,6117,6201,6202 ,0,0,0}, - {7190,7240,7241 ,6136,6200,6156 ,0,0,0}, {5441,7242,5436 ,6118,6203,6132 ,0,0,0}, - {7243,5443,5445 ,6133,6204,6133 ,0,0,0}, {5373,5450,5374 ,6137,6131,6122 ,0,0,0}, - {5453,5457,5376 ,6132,6196,6138 ,0,0,0}, {5443,7244,5438 ,6204,6153,6201 ,0,0,0}, - {7245,5436,7242 ,6201,6132,6203 ,0,0,0}, {5358,5356,5585 ,6187,6117,6202 ,0,0,0}, - {5370,5447,5449 ,6131,6143,6157 ,0,0,0}, {5432,5862,5864 ,6132,6144,6205 ,0,0,0}, - {5445,5597,7243 ,6133,6201,6133 ,0,0,0}, {5368,5597,5447 ,6200,6201,6143 ,0,0,0}, - {5869,5431,5864 ,6206,6116,6205 ,0,0,0}, {5463,5869,5871 ,6207,6206,6204 ,0,0,0}, - {7246,7247,5437 ,6132,6119,6207 ,0,0,0}, {5862,5432,5436 ,6144,6132,6132 ,0,0,0}, - {5431,5869,5461 ,6116,6206,6121 ,0,0,0}, {5431,5432,5864 ,6116,6132,6205 ,0,0,0}, - {5872,5467,5871 ,6208,6207,6204 ,0,0,0}, {5463,5461,5869 ,6207,6121,6206 ,0,0,0}, - {5464,5463,5871 ,6209,6207,6204 ,0,0,0}, {5872,5874,5470 ,6208,6142,6196 ,0,0,0}, - {5467,5464,5871 ,6207,6209,6204 ,0,0,0}, {5469,5467,5872 ,6133,6207,6208 ,0,0,0}, - {5872,5470,5469 ,6208,6196,6133 ,0,0,0}, {5874,5473,5470 ,6142,6134,6196 ,0,0,0}, - {5877,5475,5874 ,6148,6131,6142 ,0,0,0}, {5874,5475,5473 ,6142,6131,6134 ,0,0,0}, - {5877,5476,5475 ,6148,6205,6131 ,0,0,0}, {5476,5877,5479 ,6205,6148,6204 ,0,0,0}, - {5877,5480,5479 ,6148,6134,6204 ,0,0,0}, {7201,7200,5879 ,6156,6155,6152 ,0,0,0}, - {7217,7211,5884 ,6171,6165,6155 ,0,0,0}, {7210,7208,5878 ,6164,6163,6157 ,0,0,0}, - {7218,5881,7221 ,6118,6176,6177 ,0,0,0}, {7212,7248,5887 ,6166,6210,6178 ,0,0,0}, - {7249,5901,7250 ,6157,6190,6211 ,0,0,0}, {7227,7251,7252 ,6181,6212,6182 ,0,0,0}, - {5493,7187,5494 ,6174,6123,6141 ,0,0,0}, {7253,7254,7187 ,6213,6214,6123 ,0,0,0}, - {5939,5936,5483 ,6215,6193,6216 ,0,0,0}, {5622,5624,5484 ,6217,6218,6219 ,0,0,0}, - {5509,5483,5936 ,6195,6216,6193 ,0,0,0}, {5514,5513,5928 ,6220,6221,6222 ,0,0,0}, - {5510,5935,5513 ,6194,6223,6221 ,0,0,0}, {5931,5519,5516 ,6130,6129,6181 ,0,0,0}, - {5516,5928,5931 ,6181,6222,6130 ,0,0,0}, {5525,5932,5526 ,6224,6225,6226 ,0,0,0}, - {5522,5931,5932 ,6227,6130,6225 ,0,0,0}, {5602,7187,5603 ,6212,6123,6199 ,0,0,0}, - {5533,7255,5534 ,6203,6228,6201 ,0,0,0}, {5624,5485,5484 ,6218,6229,6219 ,0,0,0}, - {7256,7257,7258 ,6230,6231,6232 ,0,0,0}, {5624,5625,5904 ,6218,6200,6233 ,0,0,0}, - {5525,5522,5932 ,6224,6227,6225 ,0,0,0}, {5932,5528,5526 ,6225,6234,6226 ,0,0,0}, - {5522,5520,5931 ,6227,6128,6130 ,0,0,0}, {5602,5601,7187 ,6212,6235,6123 ,0,0,0}, - {5514,5928,5516 ,6220,6222,6181 ,0,0,0}, {5935,5928,5513 ,6223,6222,6221 ,0,0,0}, - {5936,5935,5510 ,6193,6223,6194 ,0,0,0}, {5485,5939,5483 ,6229,6215,6216 ,0,0,0}, - {5939,5485,5904 ,6215,6229,6233 ,0,0,0}, {7254,5609,7187 ,6214,6236,6123 ,0,0,0}, - {5612,5609,7237 ,6189,6236,6190 ,0,0,0}, {7187,7259,7260 ,6123,6170,6214 ,0,0,0}, - {5501,7187,5497 ,6237,6123,6167 ,0,0,0}, {7186,7259,7187 ,6122,6170,6123 ,0,0,0}, - {5503,7261,7262 ,6238,6180,6179 ,0,0,0}, {7263,5540,7264 ,6197,6165,6196 ,0,0,0}, - {7265,5345,7266 ,6131,6122,6132 ,0,0,0}, {5508,7267,7261 ,6239,6240,6180 ,0,0,0}, - {7268,7269,7207 ,6171,6152,6162 ,0,0,0}, {5336,7270,5335 ,6204,6208,6126 ,0,0,0}, - {7271,7230,7272 ,6241,6184,6136 ,0,0,0}, {7273,5551,5554 ,6179,6179,6202 ,0,0,0}, - {5563,7270,5562 ,6127,6208,6242 ,0,0,0}, {5688,7274,7275 ,6156,6200,6136 ,0,0,0}, - {5691,5693,7276 ,6137,6135,6133 ,0,0,0}, {7277,7278,7279 ,6207,6133,6208 ,0,0,0}, - {5649,5682,5685 ,6196,6158,6159 ,0,0,0}, {5672,5642,5637 ,6181,6243,6139 ,0,0,0}, - {5656,5658,7280 ,6244,6245,6246 ,0,0,0}, {5635,7281,7282 ,6247,6190,6136 ,0,0,0}, - {7283,7257,7284 ,6248,6231,6170 ,0,0,0}, {7285,7286,5664 ,6152,6249,6250 ,0,0,0}, - {7287,7257,7283 ,6251,6231,6248 ,0,0,0}, {7288,7289,7290 ,6252,6253,6254 ,0,0,0}, - {7289,7256,7290 ,6253,6230,6254 ,0,0,0}, {7291,7292,7293 ,6255,6256,6257 ,0,0,0}, - {7294,7295,7296 ,6258,6259,6260 ,0,0,0}, {7289,7288,7296 ,6253,6252,6260 ,0,0,0}, - {7296,7295,7289 ,6260,6259,6253 ,0,0,0}, {7295,7294,7297 ,6259,6258,6261 ,0,0,0}, - {7298,7293,7299 ,6262,6257,6263 ,0,0,0}, {7297,7299,7295 ,6261,6263,6259 ,0,0,0}, - {7293,7292,7299 ,6257,6256,6263 ,0,0,0}, {7300,7301,7292 ,6264,6265,6256 ,0,0,0}, - {7297,7298,7299 ,6261,6262,6263 ,0,0,0}, {7291,7300,7292 ,6255,6264,6256 ,0,0,0}, - {7290,7256,7258 ,6254,6230,6232 ,0,0,0}, {7302,7303,5665 ,6138,6134,6266 ,0,0,0}, - {7258,7257,7287 ,6232,6231,6251 ,0,0,0}, {7284,7303,7302 ,6170,6134,6138 ,0,0,0}, - {7304,5658,5659 ,6267,6245,6268 ,0,0,0}, {5636,7282,7305 ,6167,6136,6199 ,0,0,0}, - {5653,5656,7281 ,6235,6244,6190 ,0,0,0}, {7306,5707,7307 ,6197,6164,6191 ,0,0,0}, - {5701,5700,7308 ,6171,6118,6269 ,0,0,0}, {5646,5643,5676 ,6270,6270,6174 ,0,0,0}, - {7306,5709,5707 ,6197,6163,6164 ,0,0,0}, {5681,5646,5676 ,6127,6270,6174 ,0,0,0}, - {7309,7241,7240 ,6137,6156,6200 ,0,0,0}, {7310,7311,7312 ,6213,6271,6169 ,0,0,0}, - {5670,5672,7313 ,6173,6181,6272 ,0,0,0}, {5712,5709,7306 ,6156,6163,6197 ,0,0,0}, - {7302,7314,7284 ,6138,6273,6170 ,0,0,0}, {7315,5713,5712 ,6201,6155,6156 ,0,0,0}, - {7315,5717,5715 ,6201,6134,6151 ,0,0,0}, {7316,7270,7317 ,6214,6208,6133 ,0,0,0}, - {7316,5330,5333 ,6214,6208,6117 ,0,0,0}, {7318,7319,7320 ,6190,6214,6199 ,0,0,0}, - {5707,5706,7307 ,6164,6158,6191 ,0,0,0}, {5701,7308,7307 ,6171,6269,6191 ,0,0,0}, - {7321,7322,7323 ,6274,6118,6183 ,0,0,0}, {7324,7325,7326 ,6149,6275,6214 ,0,0,0}, - {7327,7283,7314 ,6243,6248,6273 ,0,0,0}, {7327,7314,7328 ,6243,6273,6276 ,0,0,0}, - {7326,7216,7230 ,6214,6170,6184 ,0,0,0}, {7214,7228,7215 ,6122,6182,6169 ,0,0,0}, - {7226,7329,7224 ,6180,6244,6177 ,0,0,0}, {7225,7224,7228 ,6179,6177,6182 ,0,0,0}, - {7202,7330,5613 ,6158,6127,6249 ,0,0,0}, {5508,7329,7267 ,6239,6244,6240 ,0,0,0}, - {7226,7267,7329 ,6180,6240,6244 ,0,0,0}, {5508,7261,5505 ,6239,6180,6277 ,0,0,0}, - {7202,5613,5612 ,6158,6249,6189 ,0,0,0}, {5504,5503,7262 ,6124,6238,6179 ,0,0,0}, - {5503,5505,7261 ,6238,6277,6180 ,0,0,0}, {5631,5899,5907 ,6278,6279,6280 ,0,0,0}, - {5899,7250,5901 ,6279,6211,6190 ,0,0,0}, {7186,5504,7262 ,6122,6124,6179 ,0,0,0}, - {7331,7187,7260 ,6275,6123,6214 ,0,0,0}, {5504,7187,5501 ,6124,6123,6237 ,0,0,0}, - {5905,5628,5907 ,6281,6282,6280 ,0,0,0}, {5615,7330,7332 ,6283,6127,6174 ,0,0,0}, - {5613,7330,5615 ,6249,6127,6283 ,0,0,0}, {7203,7192,7204 ,6144,6138,6159 ,0,0,0}, - {7190,7241,7191 ,6136,6156,6137 ,0,0,0}, {7309,7188,7189 ,6137,6133,6135 ,0,0,0}, - {7188,7309,7240 ,6133,6137,6200 ,0,0,0}, {7188,5379,5455 ,6133,6134,6134 ,0,0,0}, - {5862,7245,5860 ,6144,6201,6209 ,0,0,0}, {5455,5379,5457 ,6134,6134,6196 ,0,0,0}, - {5597,5368,5596 ,6201,6200,6158 ,0,0,0}, {5361,5358,5588 ,6208,6187,6284 ,0,0,0}, - {5594,5596,5367 ,6125,6158,6204 ,0,0,0}, {7333,5857,5858 ,6191,6165,6179 ,0,0,0}, - {5855,7334,5832 ,6142,6172,6197 ,0,0,0}, {5579,5837,5581 ,6191,6186,6196 ,0,0,0}, - {5942,5837,5579 ,6192,6186,6191 ,0,0,0}, {5942,5578,5840 ,6192,6142,6285 ,0,0,0}, - {7335,5575,5572 ,6192,6228,6142 ,0,0,0}, {5401,5321,5323 ,6120,6122,6119 ,0,0,0}, - {5324,5399,5323 ,6171,6202,6119 ,0,0,0}, {7336,5852,5850 ,6150,6144,6150 ,0,0,0}, - {7196,5422,5420 ,6144,6150,6187 ,0,0,0}, {5428,5426,7234 ,6150,6188,6144 ,0,0,0}, - {5420,7337,7196 ,6187,6144,6144 ,0,0,0}, {5394,7232,7338 ,6165,6186,6286 ,0,0,0}, - {7337,5416,7339 ,6144,6192,6144 ,0,0,0}, {5414,5413,7339 ,6145,6145,6144 ,0,0,0}, - {7340,7341,7270 ,6143,6133,6208 ,0,0,0}, {7222,7342,5545 ,6120,6176,6146 ,0,0,0}, - {7265,5342,5345 ,6131,6137,6122 ,0,0,0}, {5348,5693,5692 ,6134,6135,6134 ,0,0,0}, - {7264,5535,5534 ,6196,6139,6201 ,0,0,0}, {7263,5541,5538 ,6197,6286,6165 ,0,0,0}, - {7273,5554,7343 ,6179,6202,6139 ,0,0,0}, {5557,7343,5556 ,6203,6139,6228 ,0,0,0}, - {5691,7276,7274 ,6137,6133,6200 ,0,0,0}, {7274,5688,5691 ,6200,6156,6137 ,0,0,0}, - {7344,7345,7346 ,6209,6207,6166 ,0,0,0}, {7347,5686,7275 ,6138,6137,6136 ,0,0,0}, - {7342,5547,5545 ,6176,6191,6146 ,0,0,0}, {7348,7349,7350 ,6186,6228,6287 ,0,0,0}, - {5541,7263,7222 ,6286,6197,6120 ,0,0,0}, {5541,7222,5544 ,6286,6120,6154 ,0,0,0}, - {5540,7263,5538 ,6165,6197,6165 ,0,0,0}, {5535,7264,5540 ,6139,6196,6165 ,0,0,0}, - {7255,5533,5551 ,6228,6203,6179 ,0,0,0}, {7255,7264,5534 ,6228,6196,6201 ,0,0,0}, - {5339,7270,5336 ,6200,6208,6204 ,0,0,0}, {7273,7255,5551 ,6179,6228,6179 ,0,0,0}, - {7351,7343,5557 ,6133,6139,6203 ,0,0,0}, {5556,7343,5554 ,6228,6139,6202 ,0,0,0}, - {5339,5341,7270 ,6200,6131,6208 ,0,0,0}, {7270,7352,5562 ,6208,6207,6242 ,0,0,0}, - {5347,5692,7353 ,6138,6134,6196 ,0,0,0}, {7270,5341,5342 ,6208,6131,6137 ,0,0,0}, - {7270,5333,5335 ,6208,6117,6126 ,0,0,0}, {5330,7316,7233 ,6208,6214,6119 ,0,0,0}, - {7270,7316,5333 ,6208,6214,6117 ,0,0,0}, {7198,5410,5381 ,6145,6120,6153 ,0,0,0}, - {7354,7355,5385 ,6201,6121,6288 ,0,0,0}, {5329,5330,7233 ,6187,6208,6119 ,0,0,0}, - {7356,5387,5389 ,6139,6192,6131 ,0,0,0}, {7223,5385,7355 ,6145,6288,6121 ,0,0,0}, - {5420,5419,7337 ,6187,6145,6144 ,0,0,0}, {5419,5416,7337 ,6145,6192,6144 ,0,0,0}, - {5413,5410,7198 ,6145,6120,6145 ,0,0,0}, {7355,7357,7223 ,6121,6289,6145 ,0,0,0}, - {7348,7357,7358 ,6186,6289,6191 ,0,0,0}, {7355,7358,7357 ,6121,6191,6289 ,0,0,0}, - {7348,7350,7342 ,6186,6287,6176 ,0,0,0}, {7348,7358,7349 ,6186,6191,6228 ,0,0,0}, - {5547,7342,7350 ,6191,6176,6287 ,0,0,0}, {7359,5350,5349 ,6202,6122,6116 ,0,0,0}, - {7360,7361,5830 ,6165,6191,6187 ,0,0,0}, {7362,5858,5860 ,6126,6179,6209 ,0,0,0}, - {7363,7238,5840 ,6154,6120,6285 ,0,0,0}, {5567,5356,7364 ,6201,6117,6120 ,0,0,0}, - {7365,7366,5569 ,6197,6201,6207 ,0,0,0}, {7185,7364,5355 ,6121,6120,6171 ,0,0,0}, - {5318,5406,5405 ,6116,6120,6201 ,0,0,0}, {7185,5355,5352 ,6121,6171,6119 ,0,0,0}, - {5358,5585,5588 ,6187,6202,6284 ,0,0,0}, {5588,5590,5361 ,6284,6140,6208 ,0,0,0}, - {5362,5590,5591 ,6117,6140,6127 ,0,0,0}, {5362,5591,5364 ,6117,6127,6126 ,0,0,0}, - {5364,5594,5367 ,6126,6125,6204 ,0,0,0}, {5368,5367,5596 ,6200,6204,6158 ,0,0,0}, - {5445,5447,5597 ,6133,6143,6201 ,0,0,0}, {5441,5437,7247 ,6118,6207,6119 ,0,0,0}, - {5443,7243,7244 ,6204,6133,6153 ,0,0,0}, {7246,5437,5438 ,6132,6207,6201 ,0,0,0}, - {7246,5438,7244 ,6132,6201,6153 ,0,0,0}, {7242,5441,7247 ,6203,6118,6119 ,0,0,0}, - {5436,7245,5862 ,6132,6201,6144 ,0,0,0}, {7362,5860,7245 ,6126,6209,6201 ,0,0,0}, - {7367,5857,7333 ,6242,6165,6191 ,0,0,0}, {7333,5858,7362 ,6191,6179,6126 ,0,0,0}, - {5855,7367,7368 ,6142,6242,6197 ,0,0,0}, {7367,5855,5857 ,6242,6142,6165 ,0,0,0}, - {7334,7360,5832 ,6172,6165,6197 ,0,0,0}, {7368,7334,5855 ,6197,6172,6142 ,0,0,0}, - {5830,7361,5831 ,6187,6191,6197 ,0,0,0}, {5832,7360,5830 ,6197,6165,6187 ,0,0,0}, - {5581,5831,7369 ,6196,6197,6202 ,0,0,0}, {5831,7361,7369 ,6197,6191,6202 ,0,0,0}, - {7229,7202,5612 ,6183,6158,6189 ,0,0,0}, {7332,7370,7371 ,6174,6118,6273 ,0,0,0}, - {5606,7187,5609 ,6290,6123,6236 ,0,0,0}, {7254,7237,5609 ,6214,6190,6236 ,0,0,0}, - {5606,5608,7187 ,6290,6198,6123 ,0,0,0}, {5498,7187,5493 ,6152,6123,6174 ,0,0,0}, - {5619,5622,5490 ,6124,6217,6291 ,0,0,0}, {5601,5489,7187 ,6235,6140,6123 ,0,0,0}, - {5619,5490,5489 ,6124,6291,6140 ,0,0,0}, {5619,5489,5601 ,6124,6140,6235 ,0,0,0}, - {5622,5484,5490 ,6217,6219,6291 ,0,0,0}, {5624,5904,5485 ,6218,6233,6229 ,0,0,0}, - {5625,5628,5905 ,6200,6282,6281 ,0,0,0}, {5625,5905,5904 ,6200,6281,6233 ,0,0,0}, - {5630,5631,5907 ,6269,6278,6280 ,0,0,0}, {5628,5630,5907 ,6282,6269,6280 ,0,0,0}, - {5899,5631,7372 ,6279,6278,6292 ,0,0,0}, {7372,7250,5899 ,6292,6211,6279 ,0,0,0}, - {7373,5901,7249 ,6293,6190,6157 ,0,0,0}, {5902,7373,7374 ,6147,6293,6266 ,0,0,0}, - {7373,5902,5901 ,6293,6147,6190 ,0,0,0}, {7195,7375,5895 ,6148,6273,6149 ,0,0,0}, - {7374,7195,5902 ,6266,6148,6147 ,0,0,0}, {7231,7376,5896 ,6185,6294,6168 ,0,0,0}, - {7375,7231,5895 ,6273,6185,6149 ,0,0,0}, {5887,5889,7212 ,6178,6167,6166 ,0,0,0}, - {7376,7213,5896 ,6294,6116,6168 ,0,0,0}, {7248,7227,5887 ,6210,6181,6178 ,0,0,0}, - {7252,7251,7370 ,6182,6212,6118 ,0,0,0}, {7248,7251,7227 ,6210,6212,6181 ,0,0,0}, - {7332,7371,5615 ,6174,6273,6283 ,0,0,0}, {7370,7251,7371 ,6118,6212,6273 ,0,0,0}, - {5637,7305,7313 ,6139,6199,6272 ,0,0,0}, {5668,7377,5697 ,6174,6295,6177 ,0,0,0}, - {7268,7327,7328 ,6171,6243,6276 ,0,0,0}, {5703,5701,7307 ,6165,6171,6191 ,0,0,0}, - {7377,5668,7378 ,6295,6174,6162 ,0,0,0}, {7313,5672,5637 ,6272,6181,6139 ,0,0,0}, - {5636,7305,5637 ,6167,6199,6139 ,0,0,0}, {5635,7282,5636 ,6247,6136,6167 ,0,0,0}, - {5653,7281,5635 ,6235,6190,6247 ,0,0,0}, {7280,7281,5656 ,6246,6190,6244 ,0,0,0}, - {7304,7280,5658 ,6267,6246,6245 ,0,0,0}, {5659,5662,7286 ,6268,6185,6249 ,0,0,0}, - {7286,7304,5659 ,6249,6267,6268 ,0,0,0}, {5665,7285,5664 ,6266,6152,6250 ,0,0,0}, - {5664,7286,5662 ,6250,6249,6185 ,0,0,0}, {5665,7303,7285 ,6266,6134,6152 ,0,0,0}, - {7283,7284,7314 ,6248,6170,6273 ,0,0,0}, {7271,7379,7230 ,6241,6296,6184 ,0,0,0}, - {7268,7328,7269 ,6171,6276,6152 ,0,0,0}, {7271,7272,7380 ,6241,6136,6200 ,0,0,0}, - {7380,7206,7205 ,6200,6161,6160 ,0,0,0}, {7205,7207,7269 ,6160,6162,6152 ,0,0,0}, - {7380,7272,7206 ,6200,6136,6161 ,0,0,0}, {7379,7324,7326 ,6296,6149,6214 ,0,0,0}, - {7326,7230,7379 ,6214,6184,6296 ,0,0,0}, {7311,7325,7324 ,6271,6275,6149 ,0,0,0}, - {7312,7319,7310 ,6169,6214,6213 ,0,0,0}, {7311,7310,7325 ,6271,6213,6275 ,0,0,0}, - {7320,7321,7318 ,6199,6274,6190 ,0,0,0}, {7312,7320,7319 ,6169,6199,6214 ,0,0,0}, - {7323,7322,7381 ,6183,6118,6144 ,0,0,0}, {7318,7321,7323 ,6190,6274,6183 ,0,0,0}, - {5649,7381,7322 ,6196,6144,6118 ,0,0,0}, {5324,5327,5398 ,6171,6117,6139 ,0,0,0}, - {7234,5430,5428 ,6144,6150,6150 ,0,0,0}, {7234,5425,7196 ,6144,6150,6144 ,0,0,0}, - {5395,5398,5327 ,6197,6139,6117 ,0,0,0}, {5329,7232,5395 ,6187,6186,6197 ,0,0,0}, - {7198,7339,5413 ,6145,6144,6145 ,0,0,0}, {5416,5414,7339 ,6192,6145,6144 ,0,0,0}, - {5383,5385,7223 ,6120,6288,6145 ,0,0,0}, {5381,5383,7199 ,6153,6120,6154 ,0,0,0}, - {5389,5394,7338 ,6131,6165,6286 ,0,0,0}, {5391,7382,7354 ,6144,6242,6201 ,0,0,0}, - {7354,5385,5391 ,6201,6288,6144 ,0,0,0}, {7338,7356,5389 ,6286,6139,6131 ,0,0,0}, - {5387,7356,7382 ,6192,6139,6242 ,0,0,0}, {5387,7382,5391 ,6192,6242,6144 ,0,0,0}, - {5394,5395,7232 ,6165,6197,6186 ,0,0,0}, {5327,5329,5395 ,6117,6187,6197 ,0,0,0}, - {5324,5398,5399 ,6171,6139,6202 ,0,0,0}, {5323,5399,5401 ,6119,6202,6120 ,0,0,0}, - {5406,5318,5404 ,6120,6116,6139 ,0,0,0}, {5321,5404,5318 ,6122,6139,6116 ,0,0,0}, - {5318,5405,5317 ,6116,6201,6117 ,0,0,0}, {5350,7359,7184 ,6122,6202,6120 ,0,0,0}, - {5317,5405,7183 ,6117,6201,6118 ,0,0,0}, {7359,5349,7183 ,6202,6116,6118 ,0,0,0}, - {7364,5356,5355 ,6120,6117,6171 ,0,0,0}, {7365,5568,7364 ,6197,6197,6120 ,0,0,0}, - {5567,7364,5568 ,6201,6120,6197 ,0,0,0}, {5575,7383,5578 ,6228,6145,6142 ,0,0,0}, - {5574,5569,7366 ,6143,6207,6201 ,0,0,0}, {5569,5568,7365 ,6207,6197,6197 ,0,0,0}, - {7335,5572,7193 ,6192,6142,6139 ,0,0,0}, {7193,5574,7366 ,6139,6143,6201 ,0,0,0}, - {5575,7335,7383 ,6228,6192,6145 ,0,0,0}, {7363,5840,5578 ,6154,6285,6142 ,0,0,0}, - {7363,5578,7383 ,6154,6142,6145 ,0,0,0}, {7238,5842,5840 ,6120,6154,6285 ,0,0,0}, - {5844,7239,7384 ,6144,6127,6187 ,0,0,0}, {7239,5844,5842 ,6127,6144,6154 ,0,0,0}, - {7384,7194,5844 ,6187,6145,6144 ,0,0,0}, {5845,7385,7236 ,6146,6145,6150 ,0,0,0}, - {7194,7385,5845 ,6145,6145,6146 ,0,0,0}, {5845,7236,5847 ,6146,6150,6144 ,0,0,0}, - {5850,5847,7386 ,6150,6144,6146 ,0,0,0}, {7235,7386,5847 ,6145,6146,6144 ,0,0,0}, - {5850,7387,7336 ,6150,6144,6150 ,0,0,0}, {5850,7386,7387 ,6150,6146,6144 ,0,0,0}, - {7388,5852,7389 ,6150,6144,6150 ,0,0,0}, {5852,7336,7389 ,6144,6150,6150 ,0,0,0}, - {5430,5852,7388 ,6150,6144,6150 ,0,0,0}, {7390,7391,7392 ,6131,6203,6207 ,0,0,0}, - {7347,7381,5685 ,6138,6144,6159 ,0,0,0}, {7315,5712,7306 ,6201,6156,6197 ,0,0,0}, - {7315,5715,5713 ,6201,6151,6155 ,0,0,0}, {7381,5649,5685 ,6144,6196,6159 ,0,0,0}, - {5670,7378,5668 ,6173,6162,6174 ,0,0,0}, {5697,7377,5700 ,6177,6295,6118 ,0,0,0}, - {5706,5703,7307 ,6158,6165,6191 ,0,0,0}, {7377,7308,5700 ,6295,6269,6118 ,0,0,0}, - {7378,5670,7313 ,6162,6173,6272 ,0,0,0}, {5672,5678,5642 ,6181,6182,6243 ,0,0,0}, - {5681,5682,5647 ,6127,6158,6297 ,0,0,0}, {5674,5640,5678 ,6118,6155,6182 ,0,0,0}, - {5642,5678,5640 ,6243,6182,6155 ,0,0,0}, {5674,5676,5643 ,6118,6174,6270 ,0,0,0}, - {5643,5640,5674 ,6270,6155,6118 ,0,0,0}, {5646,5681,5647 ,6270,6127,6297 ,0,0,0}, - {5649,5647,5682 ,6196,6297,6158 ,0,0,0}, {7347,5685,5686 ,6138,6159,6137 ,0,0,0}, - {7275,5686,5688 ,6136,6137,6156 ,0,0,0}, {7393,7394,7395 ,6205,6132,6116 ,0,0,0}, - {7394,7351,7396 ,6132,6133,6132 ,0,0,0}, {5342,7265,7270 ,6137,6131,6208 ,0,0,0}, - {7276,5693,5348 ,6133,6135,6134 ,0,0,0}, {5347,7353,7266 ,6138,6196,6132 ,0,0,0}, - {5347,5348,5692 ,6138,6134,6134 ,0,0,0}, {7266,5345,5347 ,6132,6122,6138 ,0,0,0}, - {7270,7265,7397 ,6208,6131,6157 ,0,0,0}, {7397,7340,7270 ,6157,6143,6208 ,0,0,0}, - {7396,5560,7398 ,6132,6172,6118 ,0,0,0}, {7399,7400,7270 ,6204,6201,6208 ,0,0,0}, - {7270,7401,7402 ,6208,6172,6214 ,0,0,0}, {7270,7400,7352 ,6208,6201,6207 ,0,0,0}, - {7401,7270,5563 ,6172,6208,6127 ,0,0,0}, {5562,7352,5560 ,6242,6207,6172 ,0,0,0}, - {7398,5560,7352 ,6118,6172,6207 ,0,0,0}, {7396,7351,5557 ,6132,6133,6203 ,0,0,0}, - {5557,5560,7396 ,6203,6172,6132 ,0,0,0}, {7394,7393,7351 ,6132,6205,6133 ,0,0,0}, - {7344,7395,7403 ,6209,6116,6121 ,0,0,0}, {7395,7344,7393 ,6116,6209,6205 ,0,0,0}, - {7403,7345,7344 ,6121,6207,6209 ,0,0,0}, {7346,7404,7277 ,6166,6209,6207 ,0,0,0}, - {7345,7404,7346 ,6207,6209,6166 ,0,0,0}, {7346,7277,7279 ,6166,6207,6208 ,0,0,0}, - {7392,7279,7405 ,6207,6208,6196 ,0,0,0}, {7278,7405,7279 ,6133,6196,6208 ,0,0,0}, - {7392,7406,7390 ,6207,6134,6131 ,0,0,0}, {7392,7405,7406 ,6207,6196,6134 ,0,0,0}, - {7407,7391,7408 ,6204,6203,6205 ,0,0,0}, {7391,7390,7408 ,6203,6131,6205 ,0,0,0}, - {5717,7391,7407 ,6134,6203,6204 ,0,0,0}, {7187,5498,5497 ,6123,6152,6167 ,0,0,0}, - {7187,7331,7253 ,6123,6275,6213 ,0,0,0}, {5590,5362,5361 ,6140,6117,6208 ,0,0,0}, - {7270,7341,7399 ,6208,6133,6204 ,0,0,0}, {7270,7402,7317 ,6208,6214,6133 ,0,0,0}, - {7409,6093,6092 ,6298,6299,6299 ,0,0,0}, {6098,7410,6099 ,6298,6298,6300 ,0,0,0}, - {7411,7412,5790 ,6301,6302,6302 ,0,0,0}, {6092,6089,7413 ,6299,6300,6303 ,0,0,0}, - {5787,7414,7415 ,6304,6304,6305 ,0,0,0}, {6083,7416,6086 ,6301,6299,6306 ,0,0,0}, - {5785,7417,7418 ,6305,6307,6308 ,0,0,0}, {7419,6080,6077 ,6298,6298,6309 ,0,0,0}, - {7420,5773,7421 ,6310,6311,6312 ,0,0,0}, {7422,7423,5779 ,6308,6313,6314 ,0,0,0}, - {5769,6193,7424 ,6315,6316,6317 ,0,0,0}, {7424,7425,5776 ,6317,6318,6319 ,0,0,0}, - {5764,6188,6190 ,6320,6321,6322 ,0,0,0}, {6148,5731,6146 ,6299,6303,6323 ,0,0,0}, - {6152,6154,5734 ,6324,6298,6306 ,0,0,0}, {5754,6178,6179 ,6325,6326,6327 ,0,0,0}, - {6155,6158,5742 ,6298,6328,6324 ,0,0,0}, {6170,6172,5751 ,6301,6329,6330 ,0,0,0}, - {6170,5825,6167 ,6301,6324,6331 ,0,0,0}, {5744,6164,6166 ,6332,6328,6333 ,0,0,0}, - {6164,5747,6161 ,6328,6334,6335 ,0,0,0}, {6173,5824,6172 ,6336,6298,6329 ,0,0,0}, - {6167,5752,6166 ,6331,6337,6333 ,0,0,0}, {5753,6176,6178 ,6338,6339,6326 ,0,0,0}, - {6173,6176,5756 ,6336,6339,6324 ,0,0,0}, {6158,6160,5738 ,6328,6328,6299 ,0,0,0}, - {6160,6161,5739 ,6328,6335,6340 ,0,0,0}, {5760,6182,6184 ,6341,6342,6343 ,0,0,0}, - {5762,6179,6182 ,6344,6327,6342 ,0,0,0}, {6184,6185,5758 ,6343,6345,6346 ,0,0,0}, - {6154,6155,5741 ,6298,6298,6347 ,0,0,0}, {6149,6152,5737 ,6348,6324,6316 ,0,0,0}, - {5766,6185,6188 ,6349,6345,6321 ,0,0,0}, {5765,6190,6191 ,6350,6322,6351 ,0,0,0}, - {5736,6149,5737 ,6324,6348,6316 ,0,0,0}, {5722,6143,5723 ,6300,6352,6353 ,0,0,0}, - {5771,6191,6193 ,6354,6351,6316 ,0,0,0}, {5719,6137,5720 ,6355,6299,6298 ,0,0,0}, - {6142,5728,6140 ,6299,6356,6357 ,0,0,0}, {7422,5781,7420 ,6308,6358,6310 ,0,0,0}, - {7425,7421,5772 ,6318,6312,6359 ,0,0,0}, {6075,6074,7426 ,6316,6306,6360 ,0,0,0}, - {7426,6074,5725 ,6360,6306,6299 ,0,0,0}, {7426,7427,6075 ,6360,6298,6316 ,0,0,0}, - {7423,7417,5777 ,6313,6307,6304 ,0,0,0}, {5784,7418,7428 ,6336,6308,6311 ,0,0,0}, - {5731,6148,5736 ,6303,6299,6324 ,0,0,0}, {7428,7414,5789 ,6311,6304,6314 ,0,0,0}, - {6083,6081,7429 ,6301,6300,6340 ,0,0,0}, {7430,6081,6080 ,6301,6300,6298 ,0,0,0}, - {7431,7411,5794 ,6301,6301,6333 ,0,0,0}, {5788,7415,7431 ,6361,6305,6301 ,0,0,0}, - {7432,6089,6087 ,6300,6300,6357 ,0,0,0}, {6086,7433,6087 ,6306,6355,6357 ,0,0,0}, - {7434,7435,5795 ,6353,6311,6301 ,0,0,0}, {5791,7412,7434 ,6362,6302,6353 ,0,0,0}, - {6095,6093,7436 ,6300,6299,6300 ,0,0,0}, {5796,7435,7437 ,6300,6311,6363 ,0,0,0}, - {5800,7437,7438 ,6301,6363,6353 ,0,0,0}, {5801,7438,7439 ,6300,6353,6328 ,0,0,0}, - {6095,7440,6098 ,6300,6300,6298 ,0,0,0}, {7441,5803,7439 ,6303,6352,6328 ,0,0,0}, - {7441,7442,5805 ,6303,6352,6340 ,0,0,0}, {7443,6101,6099 ,6299,6316,6300 ,0,0,0}, - {7444,5808,7442 ,6300,6340,6352 ,0,0,0}, {7445,6104,6101 ,6298,6364,6316 ,0,0,0}, - {5809,7444,7446 ,6316,6300,6306 ,0,0,0}, {7447,6105,6104 ,6364,6298,6364 ,0,0,0}, - {7446,7448,5811 ,6306,6340,6340 ,0,0,0}, {7449,6107,6105 ,6300,6300,6298 ,0,0,0}, - {7450,5814,7448 ,6323,6340,6340 ,0,0,0}, {7451,6110,6107 ,6298,6300,6300 ,0,0,0}, - {5816,7450,7452 ,6300,6323,6340 ,0,0,0}, {7453,6111,6110 ,6364,6300,6300 ,0,0,0}, - {7452,7454,5815 ,6340,6303,6303 ,0,0,0}, {7455,6113,6111 ,6300,6365,6300 ,0,0,0}, - {7456,5817,7454 ,6300,6300,6303 ,0,0,0}, {7457,6116,6113 ,6366,6300,6365 ,0,0,0}, - {5820,7456,7458 ,6300,6300,6316 ,0,0,0}, {7459,6117,6116 ,6367,6367,6300 ,0,0,0}, - {7458,7460,5821 ,6316,6300,6300 ,0,0,0}, {7461,6119,6117 ,6300,6300,6367 ,0,0,0}, - {7462,5821,7463 ,6301,6300,6300 ,0,0,0}, {7464,6122,6119 ,6368,6300,6300 ,0,0,0}, - {7465,7462,7466 ,6300,6301,6300 ,0,0,0}, {7467,6123,6122 ,6369,6367,6300 ,0,0,0}, - {7468,7465,7469 ,6316,6300,6300 ,0,0,0}, {6123,7470,6125 ,6367,6367,6300 ,0,0,0}, - {6128,6125,7471 ,6364,6300,6370 ,0,0,0}, {7472,6131,6129 ,6300,6316,6300 ,0,0,0}, - {7473,7468,7474 ,6300,6316,6316 ,0,0,0}, {7475,7476,7477 ,6300,6371,6300 ,0,0,0}, - {7478,7479,7480 ,6306,6300,6303 ,0,0,0}, {7481,7482,7483 ,6369,6300,6367 ,0,0,0}, - {7484,7485,7486 ,6301,6301,6300 ,0,0,0}, {7487,7488,7489 ,6300,6369,6367 ,0,0,0}, - {7490,7491,7492 ,6316,6316,6300 ,0,0,0}, {7493,7494,7495 ,6364,6300,6300 ,0,0,0}, - {7496,7487,7497 ,6364,6300,6316 ,0,0,0}, {7498,7499,7500 ,6300,6364,6316 ,0,0,0}, - {7495,7501,7500 ,6300,6316,6316 ,0,0,0}, {7502,7503,7504 ,6364,6372,6364 ,0,0,0}, - {7503,7496,7505 ,6372,6364,6300 ,0,0,0}, {7490,7499,7506 ,6316,6364,6367 ,0,0,0}, - {7507,7493,7502 ,6370,6364,6364 ,0,0,0}, {7483,7508,7509 ,6367,6367,6316 ,0,0,0}, - {7510,7488,7509 ,6316,6369,6316 ,0,0,0}, {7511,7484,7512 ,6306,6301,6303 ,0,0,0}, - {7512,7492,7513 ,6303,6300,6340 ,0,0,0}, {7514,7515,7477 ,6371,6300,6300 ,0,0,0}, - {7516,7481,7515 ,6300,6369,6300 ,0,0,0}, {7517,7478,7518 ,6300,6306,6300 ,0,0,0}, - {7517,7518,7486 ,6300,6300,6300 ,0,0,0}, {7519,7520,6131 ,6300,6300,6316 ,0,0,0}, - {7475,7520,7521 ,6300,6300,6316 ,0,0,0}, {7473,7522,7523 ,6300,6303,6301 ,0,0,0}, - {7479,7523,7524 ,6300,6301,6301 ,0,0,0}, {6129,6128,7525 ,6300,6364,6369 ,0,0,0}, - {6074,6073,5725 ,6306,6298,6299 ,0,0,0}, {5725,6073,6136 ,6299,6298,6340 ,0,0,0}, - {7427,7419,6077 ,6298,6298,6309 ,0,0,0}, {7427,6077,6075 ,6298,6309,6316 ,0,0,0}, - {7419,7430,6080 ,6298,6301,6298 ,0,0,0}, {7430,7429,6081 ,6301,6340,6300 ,0,0,0}, - {7429,7416,6083 ,6340,6299,6301 ,0,0,0}, {7416,7433,6086 ,6299,6355,6306 ,0,0,0}, - {7433,7432,6087 ,6355,6300,6357 ,0,0,0}, {7432,7413,6089 ,6300,6303,6300 ,0,0,0}, - {7413,7409,6092 ,6303,6298,6299 ,0,0,0}, {7409,7436,6093 ,6298,6300,6299 ,0,0,0}, - {7436,7440,6095 ,6300,6300,6300 ,0,0,0}, {7440,7410,6098 ,6300,6298,6298 ,0,0,0}, - {7410,7443,6099 ,6298,6299,6300 ,0,0,0}, {7443,7445,6101 ,6299,6298,6316 ,0,0,0}, - {7445,7447,6104 ,6298,6364,6364 ,0,0,0}, {7447,7449,6105 ,6364,6300,6298 ,0,0,0}, - {7449,7451,6107 ,6300,6298,6300 ,0,0,0}, {7451,7453,6110 ,6298,6364,6300 ,0,0,0}, - {7453,7455,6111 ,6364,6300,6300 ,0,0,0}, {7455,7457,6113 ,6300,6366,6365 ,0,0,0}, - {7457,7459,6116 ,6366,6367,6300 ,0,0,0}, {7459,7461,6117 ,6367,6300,6367 ,0,0,0}, - {7461,7464,6119 ,6300,6368,6300 ,0,0,0}, {7464,7467,6122 ,6368,6369,6300 ,0,0,0}, - {7467,7470,6123 ,6369,6367,6367 ,0,0,0}, {7470,7471,6125 ,6367,6370,6300 ,0,0,0}, - {7471,7525,6128 ,6370,6369,6364 ,0,0,0}, {7525,7472,6129 ,6369,6300,6300 ,0,0,0}, - {7472,7519,6131 ,6300,6300,6316 ,0,0,0}, {7519,7521,7520 ,6300,6316,6300 ,0,0,0}, - {7521,7476,7475 ,6316,6371,6300 ,0,0,0}, {7476,7514,7477 ,6371,6371,6300 ,0,0,0}, - {7514,7516,7515 ,6371,6300,6300 ,0,0,0}, {7516,7482,7481 ,6300,6300,6369 ,0,0,0}, - {7482,7508,7483 ,6300,6367,6367 ,0,0,0}, {7508,7510,7509 ,6367,6316,6316 ,0,0,0}, - {7510,7489,7488 ,6316,6367,6369 ,0,0,0}, {7489,7497,7487 ,6367,6316,6300 ,0,0,0}, - {7497,7505,7496 ,6316,6300,6364 ,0,0,0}, {7505,7504,7503 ,6300,6364,6372 ,0,0,0}, - {7504,7507,7502 ,6364,6370,6364 ,0,0,0}, {7507,7494,7493 ,6370,6300,6364 ,0,0,0}, - {7494,7501,7495 ,6300,6316,6300 ,0,0,0}, {7501,7498,7500 ,6316,6300,6316 ,0,0,0}, - {7498,7506,7499 ,6300,6367,6364 ,0,0,0}, {7506,7491,7490 ,6367,6316,6316 ,0,0,0}, - {7491,7513,7492 ,6316,6340,6300 ,0,0,0}, {7513,7511,7512 ,6340,6306,6303 ,0,0,0}, - {7511,7485,7484 ,6306,6301,6301 ,0,0,0}, {7485,7517,7486 ,6301,6300,6300 ,0,0,0}, - {7478,7480,7518 ,6306,6303,6300 ,0,0,0}, {7479,7524,7480 ,6300,6301,6303 ,0,0,0}, - {7523,7522,7524 ,6301,6303,6301 ,0,0,0}, {7473,7474,7522 ,6300,6316,6303 ,0,0,0}, - {7468,7469,7474 ,6316,6300,6316 ,0,0,0}, {7465,7466,7469 ,6300,6300,6300 ,0,0,0}, - {7462,7463,7466 ,6301,6300,6300 ,0,0,0}, {5821,7460,7463 ,6300,6300,6300 ,0,0,0}, - {5821,5820,7458 ,6300,6300,6316 ,0,0,0}, {5820,5817,7456 ,6300,6300,6300 ,0,0,0}, - {5817,5815,7454 ,6300,6303,6303 ,0,0,0}, {5815,5816,7452 ,6303,6300,6340 ,0,0,0}, - {5816,5814,7450 ,6300,6340,6323 ,0,0,0}, {5814,5811,7448 ,6340,6340,6340 ,0,0,0}, - {5811,5809,7446 ,6340,6316,6306 ,0,0,0}, {5809,5808,7444 ,6316,6340,6300 ,0,0,0}, - {5808,5805,7442 ,6340,6340,6352 ,0,0,0}, {5805,5803,7441 ,6340,6352,6303 ,0,0,0}, - {5803,5801,7439 ,6352,6300,6328 ,0,0,0}, {5801,5800,7438 ,6300,6301,6353 ,0,0,0}, - {5800,5796,7437 ,6301,6300,6363 ,0,0,0}, {5796,5795,7435 ,6300,6301,6311 ,0,0,0}, - {5795,5791,7434 ,6301,6362,6353 ,0,0,0}, {5791,5790,7412 ,6362,6302,6302 ,0,0,0}, - {5790,5794,7411 ,6302,6333,6301 ,0,0,0}, {5794,5788,7431 ,6333,6361,6301 ,0,0,0}, - {5788,5787,7415 ,6361,6304,6305 ,0,0,0}, {5787,5789,7414 ,6304,6314,6304 ,0,0,0}, - {5789,5784,7428 ,6314,6336,6311 ,0,0,0}, {5784,5785,7418 ,6336,6305,6308 ,0,0,0}, - {5785,5777,7417 ,6305,6304,6307 ,0,0,0}, {5777,5779,7423 ,6304,6314,6313 ,0,0,0}, - {5779,5781,7422 ,6314,6358,6308 ,0,0,0}, {5781,5773,7420 ,6358,6311,6310 ,0,0,0}, - {5773,5772,7421 ,6311,6359,6312 ,0,0,0}, {5772,5776,7425 ,6359,6319,6318 ,0,0,0}, - {5776,5769,7424 ,6319,6315,6317 ,0,0,0}, {5769,5771,6193 ,6315,6354,6316 ,0,0,0}, - {5771,5765,6191 ,6354,6350,6351 ,0,0,0}, {5765,5764,6190 ,6350,6320,6322 ,0,0,0}, - {5764,5766,6188 ,6320,6349,6321 ,0,0,0}, {5766,5758,6185 ,6349,6346,6345 ,0,0,0}, - {5758,5760,6184 ,6346,6341,6343 ,0,0,0}, {5760,5762,6182 ,6341,6344,6342 ,0,0,0}, - {5762,5754,6179 ,6344,6325,6327 ,0,0,0}, {5754,5753,6178 ,6325,6338,6326 ,0,0,0}, - {5753,5756,6176 ,6338,6324,6339 ,0,0,0}, {5756,5824,6173 ,6324,6298,6336 ,0,0,0}, - {5824,5751,6172 ,6298,6330,6329 ,0,0,0}, {5751,5825,6170 ,6330,6324,6301 ,0,0,0}, - {5825,5752,6167 ,6324,6337,6331 ,0,0,0}, {5752,5744,6166 ,6337,6332,6333 ,0,0,0}, - {5744,5747,6164 ,6332,6334,6328 ,0,0,0}, {5747,5739,6161 ,6334,6340,6335 ,0,0,0}, - {5739,5738,6160 ,6340,6299,6328 ,0,0,0}, {5738,5742,6158 ,6299,6324,6328 ,0,0,0}, - {5742,5741,6155 ,6324,6347,6298 ,0,0,0}, {5741,5734,6154 ,6347,6306,6298 ,0,0,0}, - {5734,5737,6152 ,6306,6316,6324 ,0,0,0}, {5736,6148,6149 ,6324,6299,6348 ,0,0,0}, - {5723,6146,5731 ,6353,6323,6303 ,0,0,0}, {5722,6142,6143 ,6300,6299,6352 ,0,0,0}, - {5723,6143,6146 ,6353,6352,6323 ,0,0,0}, {5728,5720,6140 ,6356,6298,6357 ,0,0,0}, - {5722,5728,6142 ,6300,6356,6299 ,0,0,0}, {6137,5719,6136 ,6299,6355,6340 ,0,0,0}, - {6140,5720,6137 ,6357,6298,6299 ,0,0,0}, {5725,6136,5719 ,6299,6340,6355 ,0,0,0}, - {7520,6133,6131 ,6373,6374,6375 ,0,0,0}, {7526,7527,7515 ,6376,6377,6378 ,0,0,0}, - {7477,7528,7475 ,6379,6380,6381 ,0,0,0}, {7509,7488,7529 ,6382,6383,6384 ,0,0,0}, - {7481,7483,7530 ,6385,6386,6387 ,0,0,0}, {7531,7532,7503 ,6388,6389,6390 ,0,0,0}, - {7533,7534,7487 ,6391,6392,6393 ,0,0,0}, {7495,7500,7535 ,6394,6395,6396 ,0,0,0}, - {7502,7493,7536 ,6397,6398,6399 ,0,0,0}, {7537,7538,7492 ,6400,6401,6402 ,0,0,0}, - {7539,7540,7499 ,6403,6404,6405 ,0,0,0}, {7486,7518,7541 ,6406,6407,6408 ,0,0,0}, - {7512,7484,7542 ,6409,6410,6411 ,0,0,0}, {7543,7544,7522 ,6412,6413,6414 ,0,0,0}, - {7545,7546,7480 ,6415,6416,6417 ,0,0,0}, {7547,7466,7548 ,6418,6419,6420 ,0,0,0}, - {7474,7469,7549 ,6421,6422,6423 ,0,0,0}, {7458,7550,7551 ,6424,6425,6426 ,0,0,0}, - {7460,7552,7463 ,6427,6428,6429 ,0,0,0}, {7553,7554,7452 ,6430,6431,6432 ,0,0,0}, - {7555,7456,7454 ,6433,6434,6435 ,0,0,0}, {7556,7448,7446 ,6436,6437,6438 ,0,0,0}, - {7450,7448,7557 ,6439,6437,6440 ,0,0,0}, {7558,7442,7559 ,6441,6442,6443 ,0,0,0}, - {7444,7558,7560 ,6444,6441,6445 ,0,0,0}, {7439,7438,7561 ,6446,6447,6448 ,0,0,0}, - {7441,7562,7559 ,6449,6450,6443 ,0,0,0}, {7437,7435,7563 ,6451,6452,6453 ,0,0,0}, - {7437,7564,7438 ,6451,6454,6447 ,0,0,0}, {7434,7412,7565 ,6455,6456,6457 ,0,0,0}, - {7434,7566,7435 ,6455,6458,6452 ,0,0,0}, {7567,7412,7411 ,6459,6456,6460 ,0,0,0}, - {7412,7567,7565 ,6456,6459,6457 ,0,0,0}, {7431,7568,7411 ,6461,6462,6460 ,0,0,0}, - {7567,7411,7568 ,6459,6460,6462 ,0,0,0}, {7431,7415,7569 ,6461,6463,6464 ,0,0,0}, - {7569,7568,7431 ,6464,6462,6461 ,0,0,0}, {7570,7415,7414 ,6465,6463,6466 ,0,0,0}, - {7415,7570,7569 ,6463,6465,6464 ,0,0,0}, {7428,7571,7414 ,6467,6468,6466 ,0,0,0}, - {7570,7414,7571 ,6465,6466,6468 ,0,0,0}, {7428,7418,7572 ,6467,6469,6470 ,0,0,0}, - {7572,7571,7428 ,6470,6468,6467 ,0,0,0}, {7573,7418,7417 ,6471,6469,6472 ,0,0,0}, - {7418,7573,7572 ,6469,6471,6470 ,0,0,0}, {7423,7574,7417 ,6473,6474,6472 ,0,0,0}, - {7573,7417,7574 ,6471,6472,6474 ,0,0,0}, {7423,7422,7575 ,6473,6475,6476 ,0,0,0}, - {7575,7574,7423 ,6476,6474,6473 ,0,0,0}, {7576,7422,7420 ,6477,6475,6478 ,0,0,0}, - {7422,7576,7575 ,6475,6477,6476 ,0,0,0}, {7421,7577,7420 ,6479,6480,6478 ,0,0,0}, - {7576,7420,7577 ,6477,6478,6480 ,0,0,0}, {7421,7425,7578 ,6479,6481,6482 ,0,0,0}, - {7578,7577,7421 ,6482,6480,6479 ,0,0,0}, {7579,7425,7424 ,6483,6481,6484 ,0,0,0}, - {7425,7579,7578 ,6481,6483,6482 ,0,0,0}, {6193,7580,7424 ,6485,6486,6484 ,0,0,0}, - {7579,7424,7580 ,6483,6484,6486 ,0,0,0}, {6192,7580,6193 ,6487,6486,6485 ,0,0,0}, - {7566,7563,7435 ,6458,6453,6452 ,0,0,0}, {7434,7565,7566 ,6455,6457,6458 ,0,0,0}, - {7564,7561,7438 ,6454,6448,6447 ,0,0,0}, {7437,7563,7564 ,6451,6453,6454 ,0,0,0}, - {7441,7439,7562 ,6449,6446,6450 ,0,0,0}, {7439,7561,7562 ,6446,6448,6450 ,0,0,0}, - {7442,7558,7444 ,6442,6441,6444 ,0,0,0}, {7442,7441,7559 ,6442,6449,6443 ,0,0,0}, - {7556,7446,7560 ,6436,6438,6445 ,0,0,0}, {7446,7444,7560 ,6438,6444,6445 ,0,0,0}, - {7450,7557,7553 ,6439,6440,6430 ,0,0,0}, {7557,7448,7556 ,6440,6437,6436 ,0,0,0}, - {7554,7454,7452 ,6431,6435,6432 ,0,0,0}, {7553,7452,7450 ,6430,6432,6439 ,0,0,0}, - {7555,7550,7456 ,6433,6425,6434 ,0,0,0}, {7554,7555,7454 ,6431,6433,6435 ,0,0,0}, - {7458,7551,7460 ,6424,6426,6427 ,0,0,0}, {7456,7550,7458 ,6434,6425,6424 ,0,0,0}, - {7463,7552,7548 ,6429,6428,6420 ,0,0,0}, {7460,7551,7552 ,6427,6426,6428 ,0,0,0}, - {7469,7466,7547 ,6422,6419,6418 ,0,0,0}, {7466,7463,7548 ,6419,6429,6420 ,0,0,0}, - {7543,7474,7549 ,6412,6421,6423 ,0,0,0}, {7549,7469,7547 ,6423,6422,6418 ,0,0,0}, - {7544,7524,7522 ,6413,6488,6414 ,0,0,0}, {7543,7522,7474 ,6412,6414,6421 ,0,0,0}, - {7480,7524,7545 ,6417,6488,6415 ,0,0,0}, {7544,7545,7524 ,6413,6415,6488 ,0,0,0}, - {7518,7546,7541 ,6407,6416,6408 ,0,0,0}, {7480,7546,7518 ,6417,6416,6407 ,0,0,0}, - {7484,7486,7581 ,6410,6406,6489 ,0,0,0}, {7486,7541,7581 ,6406,6408,6489 ,0,0,0}, - {7537,7512,7542 ,6400,6409,6411 ,0,0,0}, {7542,7484,7581 ,6411,6410,6489 ,0,0,0}, - {7538,7490,7492 ,6401,6490,6402 ,0,0,0}, {7537,7492,7512 ,6400,6402,6409 ,0,0,0}, - {7499,7490,7539 ,6405,6490,6403 ,0,0,0}, {7538,7539,7490 ,6401,6403,6490 ,0,0,0}, - {7500,7540,7535 ,6395,6404,6396 ,0,0,0}, {7499,7540,7500 ,6405,6404,6395 ,0,0,0}, - {7493,7495,7582 ,6398,6394,6491 ,0,0,0}, {7495,7535,7582 ,6394,6396,6491 ,0,0,0}, - {7531,7502,7536 ,6388,6397,6399 ,0,0,0}, {7536,7493,7582 ,6399,6398,6491 ,0,0,0}, - {7532,7496,7503 ,6389,6492,6390 ,0,0,0}, {7531,7503,7502 ,6388,6390,6397 ,0,0,0}, - {7487,7496,7533 ,6393,6492,6391 ,0,0,0}, {7532,7533,7496 ,6389,6391,6492 ,0,0,0}, - {7488,7534,7529 ,6383,6392,6384 ,0,0,0}, {7487,7534,7488 ,6393,6392,6383 ,0,0,0}, - {7483,7509,7583 ,6386,6382,6493 ,0,0,0}, {7509,7529,7583 ,6382,6384,6493 ,0,0,0}, - {7526,7481,7530 ,6376,6385,6387 ,0,0,0}, {7530,7483,7583 ,6387,6386,6493 ,0,0,0}, - {7527,7477,7515 ,6377,6379,6378 ,0,0,0}, {7526,7515,7481 ,6376,6378,6385 ,0,0,0}, - {7528,7584,7475 ,6380,6494,6381 ,0,0,0}, {7527,7528,7477 ,6377,6380,6379 ,0,0,0}, - {6133,7520,7584 ,6374,6373,6494 ,0,0,0}, {7475,7584,7520 ,6381,6494,6373 ,0,0,0}, - {6144,6030,6145 ,6495,6495,6496 ,0,0,0}, {6151,6150,6036 ,6497,6496,6496 ,0,0,0}, - {7539,7538,7585 ,6498,6499,6500 ,0,0,0}, {6027,6144,6141 ,6501,6495,6501 ,0,0,0}, - {7536,7582,7586 ,6502,6503,6503 ,0,0,0}, {6138,6021,6024 ,6496,6504,6501 ,0,0,0}, - {7587,7529,7534 ,6498,6505,6506 ,0,0,0}, {5963,6072,6076 ,6507,6495,6495 ,0,0,0}, - {5973,5971,6085 ,6508,6509,6504 ,0,0,0}, {7588,7527,7526 ,6510,6511,6512 ,0,0,0}, - {6132,6015,6013 ,6513,6500,6514 ,0,0,0}, {6133,6015,6132 ,6515,6500,6513 ,0,0,0}, - {6127,6130,6014 ,6516,6517,6518 ,0,0,0}, {6094,6096,5979 ,6519,6520,6497 ,0,0,0}, - {6100,6102,5985 ,6521,6522,6523 ,0,0,0}, {6124,6007,6006 ,6524,6525,6526 ,0,0,0}, - {6103,5989,5988 ,6527,6500,6498 ,0,0,0}, {6120,6001,6118 ,6528,6522,6529 ,0,0,0}, - {6118,6000,6115 ,6529,6530,6531 ,0,0,0}, {5995,6112,5997 ,6532,6533,6502 ,0,0,0}, - {6109,5995,5994 ,6534,6532,6495 ,0,0,0}, {6121,6003,6120 ,6535,6502,6528 ,0,0,0}, - {6114,6115,5997 ,6533,6531,6502 ,0,0,0}, {6124,6006,6121 ,6524,6526,6535 ,0,0,0}, - {6003,6121,6006 ,6502,6535,6526 ,0,0,0}, {6106,5991,5989 ,6503,6514,6500 ,0,0,0}, - {5994,5991,6108 ,6495,6514,6530 ,0,0,0}, {6012,6007,6126 ,6536,6525,6537 ,0,0,0}, - {6007,6124,6126 ,6525,6524,6537 ,0,0,0}, {6012,6126,6127 ,6536,6537,6516 ,0,0,0}, - {6103,5988,6102 ,6527,6498,6522 ,0,0,0}, {6100,5983,6097 ,6521,6501,6509 ,0,0,0}, - {6127,6014,6012 ,6516,6518,6536 ,0,0,0}, {6014,6130,6013 ,6518,6517,6514 ,0,0,0}, - {6097,5982,6096 ,6509,6500,6520 ,0,0,0}, {5977,6091,5979 ,6508,6509,6497 ,0,0,0}, - {6132,6013,6130 ,6513,6514,6517 ,0,0,0}, {5973,6088,5976 ,6508,6508,6495 ,0,0,0}, - {5976,6090,5977 ,6495,6530,6508 ,0,0,0}, {7589,7528,7590 ,6538,6539,6540 ,0,0,0}, - {7584,6015,6133 ,6541,6500,6515 ,0,0,0}, {6084,5970,6082 ,6495,6496,6542 ,0,0,0}, - {5971,5970,6084 ,6509,6496,6495 ,0,0,0}, {6078,6079,5965 ,6542,6504,6507 ,0,0,0}, - {7583,7529,7591 ,6543,6505,6500 ,0,0,0}, {7592,7533,7593 ,6503,6533,6500 ,0,0,0}, - {6076,6078,5964 ,6495,6542,6495 ,0,0,0}, {7594,7593,7531 ,6508,6500,6538 ,0,0,0}, - {6021,6135,6020 ,6504,6542,6501 ,0,0,0}, {5963,6020,6134 ,6507,6501,6495 ,0,0,0}, - {7540,7595,7596 ,6527,6530,6498 ,0,0,0}, {7582,7535,7597 ,6503,6527,6499 ,0,0,0}, - {6027,6141,6026 ,6501,6501,6544 ,0,0,0}, {6139,6024,6026 ,6504,6501,6544 ,0,0,0}, - {7542,7598,7599 ,6508,6530,6544 ,0,0,0}, {7600,7537,7599 ,6498,6500,6544 ,0,0,0}, - {6032,6147,6145 ,6495,6495,6496 ,0,0,0}, {7581,7541,7598 ,6523,6504,6530 ,0,0,0}, - {7546,7601,7541 ,6500,6504,6504 ,0,0,0}, {7546,7545,7602 ,6500,6522,6500 ,0,0,0}, - {6150,6147,6033 ,6496,6495,6496 ,0,0,0}, {7603,7545,7544 ,6515,6522,6504 ,0,0,0}, - {7543,7604,7544 ,6508,6500,6504 ,0,0,0}, {6153,6036,6038 ,6495,6496,6508 ,0,0,0}, - {7604,7543,7605 ,6500,6508,6498 ,0,0,0}, {6156,6038,6039 ,6504,6508,6507 ,0,0,0}, - {7606,7605,7549 ,6515,6498,6545 ,0,0,0}, {6157,6039,6042 ,6507,6507,6495 ,0,0,0}, - {7607,7606,7547 ,6498,6515,6504 ,0,0,0}, {6159,6042,6044 ,6504,6495,6495 ,0,0,0}, - {7608,7607,7548 ,6504,6498,6504 ,0,0,0}, {6044,6045,6162 ,6495,6504,6504 ,0,0,0}, - {7609,7608,7552 ,6504,6504,6498 ,0,0,0}, {6163,6162,6045 ,6504,6504,6504 ,0,0,0}, - {7609,7551,7550 ,6504,6504,6504 ,0,0,0}, {6165,6163,6048 ,6546,6504,6504 ,0,0,0}, - {7610,7550,7555 ,6508,6504,6504 ,0,0,0}, {6168,6165,6050 ,6507,6546,6504 ,0,0,0}, - {7611,7555,7554 ,6508,6504,6508 ,0,0,0}, {6169,6168,6051 ,6547,6507,6548 ,0,0,0}, - {7612,7554,7553 ,6498,6508,6498 ,0,0,0}, {6171,6169,6054 ,6546,6547,6548 ,0,0,0}, - {7613,7553,7557 ,6504,6498,6498 ,0,0,0}, {6056,6174,6054 ,6549,6547,6548 ,0,0,0}, - {7557,7614,7613 ,6498,6504,6504 ,0,0,0}, {6175,6056,6057 ,6549,6549,6550 ,0,0,0}, - {7614,7556,7615 ,6504,6504,6498 ,0,0,0}, {6057,6060,6177 ,6550,6549,6504 ,0,0,0}, - {6180,6060,6062 ,6549,6549,6545 ,0,0,0}, {6183,6181,6064 ,6549,6504,6504 ,0,0,0}, - {7615,7560,7616 ,6498,6504,6504 ,0,0,0}, {6189,6187,6069 ,6551,6504,6515 ,0,0,0}, - {7561,7617,7562 ,6504,6508,6515 ,0,0,0}, {7618,7579,7619 ,6504,6545,6515 ,0,0,0}, - {7620,7563,7566 ,6508,6552,6504 ,0,0,0}, {7576,7621,7622 ,6553,6504,6554 ,0,0,0}, - {7623,7624,7567 ,6555,6504,6515 ,0,0,0}, {7571,7572,7625 ,6504,6504,6504 ,0,0,0}, - {7576,7622,7575 ,6553,6554,6504 ,0,0,0}, {7569,7626,7627 ,6504,6504,6515 ,0,0,0}, - {7625,7626,7570 ,6504,6504,6515 ,0,0,0}, {7574,7628,7573 ,6548,6504,6504 ,0,0,0}, - {7574,7575,7629 ,6548,6504,6549 ,0,0,0}, {7623,7568,7627 ,6555,6504,6515 ,0,0,0}, - {7630,7572,7573 ,6504,6504,6504 ,0,0,0}, {7631,7578,7618 ,6504,6548,6504 ,0,0,0}, - {7621,7577,7631 ,6504,6548,6504 ,0,0,0}, {7565,7632,7566 ,6504,6544,6504 ,0,0,0}, - {7565,7624,7632 ,6504,6504,6544 ,0,0,0}, {6192,6189,6071 ,6515,6551,6554 ,0,0,0}, - {6071,7619,7580 ,6554,6515,6545 ,0,0,0}, {7564,7633,7561 ,6515,6504,6504 ,0,0,0}, - {7634,7564,7563 ,6508,6515,6552 ,0,0,0}, {6186,6183,6063 ,6504,6549,6549 ,0,0,0}, - {6066,6187,6186 ,6545,6504,6504 ,0,0,0}, {7558,7635,7616 ,6508,6498,6504 ,0,0,0}, - {7617,7635,7559 ,6508,6498,6498 ,0,0,0}, {6181,6062,6064 ,6504,6545,6504 ,0,0,0}, - {6079,6082,5967 ,6504,6542,6504 ,0,0,0}, {7636,7530,7637 ,6556,6557,6558 ,0,0,0}, - {7585,7538,7600 ,6500,6499,6498 ,0,0,0}, {6001,6120,6003 ,6522,6528,6502 ,0,0,0}, - {6000,6118,6001 ,6530,6529,6522 ,0,0,0}, {5997,6115,6000 ,6502,6531,6530 ,0,0,0}, - {5997,6112,6114 ,6502,6533,6533 ,0,0,0}, {5995,6109,6112 ,6532,6534,6533 ,0,0,0}, - {5994,6108,6109 ,6495,6530,6534 ,0,0,0}, {5991,6106,6108 ,6514,6503,6530 ,0,0,0}, - {5989,6103,6106 ,6500,6527,6503 ,0,0,0}, {5985,6102,5988 ,6523,6522,6498 ,0,0,0}, - {5983,6100,5985 ,6501,6521,6523 ,0,0,0}, {5982,6097,5983 ,6500,6509,6501 ,0,0,0}, - {5979,6096,5982 ,6497,6520,6500 ,0,0,0}, {5979,6091,6094 ,6497,6509,6519 ,0,0,0}, - {5977,6090,6091 ,6508,6530,6509 ,0,0,0}, {5976,6088,6090 ,6495,6508,6530 ,0,0,0}, - {5973,6085,6088 ,6508,6504,6508 ,0,0,0}, {5971,6084,6085 ,6509,6495,6504 ,0,0,0}, - {5967,6082,5970 ,6504,6542,6496 ,0,0,0}, {5965,6079,5967 ,6507,6504,6504 ,0,0,0}, - {5964,6078,5965 ,6495,6542,6507 ,0,0,0}, {5963,6076,5964 ,6507,6495,6495 ,0,0,0}, - {5963,6134,6072 ,6507,6495,6495 ,0,0,0}, {6020,6135,6134 ,6501,6542,6495 ,0,0,0}, - {6021,6138,6135 ,6504,6496,6542 ,0,0,0}, {6024,6139,6138 ,6501,6504,6496 ,0,0,0}, - {6026,6141,6139 ,6544,6501,6504 ,0,0,0}, {6030,6144,6027 ,6495,6495,6501 ,0,0,0}, - {6032,6145,6030 ,6495,6496,6495 ,0,0,0}, {6033,6147,6032 ,6496,6495,6495 ,0,0,0}, - {6036,6150,6033 ,6496,6496,6496 ,0,0,0}, {6036,6153,6151 ,6496,6495,6497 ,0,0,0}, - {6038,6156,6153 ,6508,6504,6495 ,0,0,0}, {6039,6157,6156 ,6507,6507,6504 ,0,0,0}, - {6042,6159,6157 ,6495,6504,6507 ,0,0,0}, {6044,6162,6159 ,6495,6504,6504 ,0,0,0}, - {6048,6163,6045 ,6504,6504,6504 ,0,0,0}, {6050,6165,6048 ,6504,6546,6504 ,0,0,0}, - {6051,6168,6050 ,6548,6507,6504 ,0,0,0}, {6054,6169,6051 ,6548,6547,6548 ,0,0,0}, - {6054,6174,6171 ,6548,6547,6546 ,0,0,0}, {6056,6175,6174 ,6549,6549,6547 ,0,0,0}, - {6057,6177,6175 ,6550,6504,6549 ,0,0,0}, {6060,6180,6177 ,6549,6549,6504 ,0,0,0}, - {6062,6181,6180 ,6545,6504,6549 ,0,0,0}, {6063,6183,6064 ,6549,6549,6504 ,0,0,0}, - {6066,6186,6063 ,6545,6504,6549 ,0,0,0}, {6069,6187,6066 ,6515,6504,6545 ,0,0,0}, - {6071,6189,6069 ,6554,6551,6515 ,0,0,0}, {6071,7580,6192 ,6554,6545,6515 ,0,0,0}, - {7619,7579,7580 ,6515,6545,6545 ,0,0,0}, {7618,7578,7579 ,6504,6548,6545 ,0,0,0}, - {7631,7577,7578 ,6504,6548,6548 ,0,0,0}, {7621,7576,7577 ,6504,6553,6548 ,0,0,0}, - {7629,7575,7622 ,6549,6504,6554 ,0,0,0}, {7628,7574,7629 ,6504,6548,6549 ,0,0,0}, - {7630,7573,7628 ,6504,6504,6504 ,0,0,0}, {7625,7572,7630 ,6504,6504,6504 ,0,0,0}, - {7625,7570,7571 ,6504,6515,6504 ,0,0,0}, {7626,7569,7570 ,6504,6504,6515 ,0,0,0}, - {7627,7568,7569 ,6515,6504,6504 ,0,0,0}, {7623,7567,7568 ,6555,6515,6504 ,0,0,0}, - {7624,7565,7567 ,6504,6504,6515 ,0,0,0}, {7620,7566,7632 ,6508,6504,6544 ,0,0,0}, - {7634,7563,7620 ,6508,6552,6508 ,0,0,0}, {7633,7564,7634 ,6504,6515,6508 ,0,0,0}, - {7617,7561,7633 ,6508,6504,6504 ,0,0,0}, {7617,7559,7562 ,6508,6498,6515 ,0,0,0}, - {7635,7558,7559 ,6498,6508,6498 ,0,0,0}, {7616,7560,7558 ,6504,6504,6508 ,0,0,0}, - {7615,7556,7560 ,6498,6504,6504 ,0,0,0}, {7614,7557,7556 ,6504,6498,6504 ,0,0,0}, - {7612,7553,7613 ,6498,6498,6504 ,0,0,0}, {7611,7554,7612 ,6508,6508,6498 ,0,0,0}, - {7610,7555,7611 ,6508,6504,6508 ,0,0,0}, {7609,7550,7610 ,6504,6504,6508 ,0,0,0}, - {7609,7552,7551 ,6504,6498,6504 ,0,0,0}, {7608,7548,7552 ,6504,6504,6498 ,0,0,0}, - {7607,7547,7548 ,6498,6504,6504 ,0,0,0}, {7606,7549,7547 ,6515,6545,6504 ,0,0,0}, - {7605,7543,7549 ,6498,6508,6545 ,0,0,0}, {7603,7544,7604 ,6515,6504,6500 ,0,0,0}, - {7602,7545,7603 ,6500,6522,6515 ,0,0,0}, {7601,7546,7602 ,6504,6500,6500 ,0,0,0}, - {7598,7541,7601 ,6530,6504,6504 ,0,0,0}, {7598,7542,7581 ,6530,6508,6523 ,0,0,0}, - {7599,7537,7542 ,6544,6500,6508 ,0,0,0}, {7600,7538,7537 ,6498,6499,6500 ,0,0,0}, - {7595,7539,7585 ,6530,6498,6500 ,0,0,0}, {7596,7535,7540 ,6498,6527,6527 ,0,0,0}, - {7595,7540,7539 ,6530,6527,6498 ,0,0,0}, {7597,7586,7582 ,6499,6503,6503 ,0,0,0}, - {7596,7597,7535 ,6498,6499,6527 ,0,0,0}, {7586,7594,7536 ,6503,6508,6502 ,0,0,0}, - {7531,7593,7532 ,6538,6500,6559 ,0,0,0}, {7536,7594,7531 ,6502,6508,6538 ,0,0,0}, - {7534,7533,7592 ,6506,6533,6503 ,0,0,0}, {7533,7532,7593 ,6533,6559,6500 ,0,0,0}, - {7591,7529,7587 ,6500,6505,6498 ,0,0,0}, {7587,7534,7592 ,6498,6506,6503 ,0,0,0}, - {7637,7583,7591 ,6558,6543,6500 ,0,0,0}, {7636,7526,7530 ,6556,6512,6557 ,0,0,0}, - {7637,7530,7583 ,6558,6557,6543 ,0,0,0}, {7588,7590,7527 ,6510,6540,6511 ,0,0,0}, - {7636,7588,7526 ,6556,6510,6512 ,0,0,0}, {7528,7589,7584 ,6539,6538,6541 ,0,0,0}, - {7527,7590,7528 ,6511,6540,6539 ,0,0,0}, {6015,7584,7589 ,6500,6541,6538 ,0,0,0}, - {7589,6017,6015 ,6560,6561,6562 ,0,0,0}, {7636,7638,7588 ,6563,6564,6565 ,0,0,0}, - {7590,7639,7640 ,6566,6567,6568 ,0,0,0}, {7587,7592,7641 ,6569,6570,6571 ,0,0,0}, - {7637,7591,7642 ,6572,6573,6574 ,0,0,0}, {7643,7644,7586 ,6575,6576,6577 ,0,0,0}, - {7645,7646,7593 ,6578,6579,6580 ,0,0,0}, {7595,7585,7647 ,6581,6582,6583 ,0,0,0}, - {7597,7596,7648 ,6584,6585,6586 ,0,0,0}, {7649,7650,7598 ,6587,6588,6589 ,0,0,0}, - {7651,7600,7599 ,6590,6591,6592 ,0,0,0}, {7603,7604,7652 ,6593,6594,6595 ,0,0,0}, - {7602,7653,7654 ,6596,6597,6598 ,0,0,0}, {7655,7656,7607 ,6599,6600,6601 ,0,0,0}, - {7657,7658,7605 ,6602,6603,6604 ,0,0,0}, {7659,7610,7660 ,6605,6606,6607 ,0,0,0}, - {7608,7609,7661 ,6608,6609,6610 ,0,0,0}, {7612,7613,7662 ,6611,6612,6613 ,0,0,0}, - {7612,7663,7611 ,6611,6614,6615 ,0,0,0}, {7616,7664,7615 ,6616,6617,6618 ,0,0,0}, - {7665,7666,7614 ,6619,6620,6621 ,0,0,0}, {7617,7667,7635 ,6622,6623,6624 ,0,0,0}, - {7668,7616,7635 ,6625,6616,6624 ,0,0,0}, {7669,7670,7634 ,6626,6627,6628 ,0,0,0}, - {7671,7633,7670 ,6629,6630,6627 ,0,0,0}, {7672,7673,7632 ,6631,6632,6633 ,0,0,0}, - {7669,7620,7673 ,6626,6634,6632 ,0,0,0}, {7623,7674,7624 ,6635,6636,6637 ,0,0,0}, - {7672,7624,7674 ,6631,6637,6636 ,0,0,0}, {7623,7627,7675 ,6635,6638,6639 ,0,0,0}, - {7675,7674,7623 ,6639,6636,6635 ,0,0,0}, {7676,7627,7626 ,6640,6638,6641 ,0,0,0}, - {7627,7676,7675 ,6638,6640,6639 ,0,0,0}, {7625,7677,7626 ,6642,6643,6641 ,0,0,0}, - {7676,7626,7677 ,6640,6641,6643 ,0,0,0}, {7625,7630,7678 ,6642,6644,6645 ,0,0,0}, - {7678,7677,7625 ,6645,6643,6642 ,0,0,0}, {7679,7630,7628 ,6646,6644,6647 ,0,0,0}, - {7630,7679,7678 ,6644,6646,6645 ,0,0,0}, {7629,7680,7628 ,6648,6649,6647 ,0,0,0}, - {7679,7628,7680 ,6646,6647,6649 ,0,0,0}, {7629,7622,7681 ,6648,6650,6651 ,0,0,0}, - {7681,7680,7629 ,6651,6649,6648 ,0,0,0}, {7682,7622,7621 ,6652,6650,6653 ,0,0,0}, - {7622,7682,7681 ,6650,6652,6651 ,0,0,0}, {7621,7683,7684 ,6653,6654,6655 ,0,0,0}, - {7682,7621,7684 ,6652,6653,6655 ,0,0,0}, {7683,7631,7685 ,6654,6656,6657 ,0,0,0}, - {7631,7683,7621 ,6656,6654,6653 ,0,0,0}, {7685,7618,7619 ,6657,6658,6659 ,0,0,0}, - {7631,7618,7685 ,6656,6658,6657 ,0,0,0}, {6071,7686,7619 ,6660,6661,6659 ,0,0,0}, - {7685,7619,7686 ,6657,6659,6661 ,0,0,0}, {6070,7686,6071 ,6660,6661,6660 ,0,0,0}, - {7620,7632,7673 ,6634,6633,6632 ,0,0,0}, {7672,7632,7624 ,6631,6633,6637 ,0,0,0}, - {7633,7634,7670 ,6630,6628,6627 ,0,0,0}, {7669,7634,7620 ,6626,6628,6634 ,0,0,0}, - {7671,7667,7617 ,6629,6623,6622 ,0,0,0}, {7671,7617,7633 ,6629,6622,6630 ,0,0,0}, - {7664,7616,7668 ,6617,6616,6625 ,0,0,0}, {7667,7668,7635 ,6623,6625,6624 ,0,0,0}, - {7615,7665,7614 ,6618,6619,6621 ,0,0,0}, {7664,7665,7615 ,6617,6619,6618 ,0,0,0}, - {7613,7666,7662 ,6612,6620,6613 ,0,0,0}, {7614,7666,7613 ,6621,6620,6612 ,0,0,0}, - {7663,7660,7611 ,6614,6607,6615 ,0,0,0}, {7612,7662,7663 ,6611,6613,6614 ,0,0,0}, - {7609,7610,7659 ,6609,6606,6605 ,0,0,0}, {7610,7611,7660 ,6606,6615,6607 ,0,0,0}, - {7655,7608,7661 ,6599,6608,6610 ,0,0,0}, {7661,7609,7659 ,6610,6609,6605 ,0,0,0}, - {7656,7606,7607 ,6600,6662,6601 ,0,0,0}, {7655,7607,7608 ,6599,6601,6608 ,0,0,0}, - {7605,7606,7657 ,6604,6662,6602 ,0,0,0}, {7656,7657,7606 ,6600,6602,6662 ,0,0,0}, - {7604,7658,7652 ,6594,6603,6595 ,0,0,0}, {7605,7658,7604 ,6604,6603,6594 ,0,0,0}, - {7602,7603,7653 ,6596,6593,6597 ,0,0,0}, {7603,7652,7653 ,6593,6595,6597 ,0,0,0}, - {7649,7601,7654 ,6587,6663,6598 ,0,0,0}, {7601,7602,7654 ,6663,6596,6598 ,0,0,0}, - {7650,7599,7598 ,6588,6592,6589 ,0,0,0}, {7649,7598,7601 ,6587,6589,6663 ,0,0,0}, - {7651,7687,7600 ,6590,6664,6591 ,0,0,0}, {7650,7651,7599 ,6588,6590,6592 ,0,0,0}, - {7647,7585,7687 ,6583,6582,6664 ,0,0,0}, {7600,7687,7585 ,6591,6664,6582 ,0,0,0}, - {7596,7595,7688 ,6585,6581,6665 ,0,0,0}, {7595,7647,7688 ,6581,6583,6665 ,0,0,0}, - {7643,7597,7648 ,6575,6584,6586 ,0,0,0}, {7648,7596,7688 ,6586,6585,6665 ,0,0,0}, - {7644,7594,7586 ,6576,6666,6577 ,0,0,0}, {7643,7586,7597 ,6575,6577,6584 ,0,0,0}, - {7593,7594,7645 ,6580,6666,6578 ,0,0,0}, {7644,7645,7594 ,6576,6578,6666 ,0,0,0}, - {7592,7646,7641 ,6570,6579,6571 ,0,0,0}, {7593,7646,7592 ,6580,6579,6570 ,0,0,0}, - {7591,7587,7689 ,6573,6569,6667 ,0,0,0}, {7587,7641,7689 ,6569,6571,6667 ,0,0,0}, - {7638,7637,7642 ,6564,6572,6574 ,0,0,0}, {7642,7591,7689 ,6574,6573,6667 ,0,0,0}, - {7638,7639,7588 ,6564,6567,6565 ,0,0,0}, {7638,7636,7637 ,6564,6563,6572 ,0,0,0}, - {7640,7690,7590 ,6568,6668,6566 ,0,0,0}, {7588,7639,7590 ,6565,6567,6566 ,0,0,0}, - {6017,7589,7690 ,6561,6560,6668 ,0,0,0}, {7590,7690,7589 ,6566,6668,6560 ,0,0,0}, - {5981,5984,5888 ,6669,6670,6671 ,0,0,0}, {7643,7648,7691 ,6672,6671,6671 ,0,0,0}, - {5894,5990,5903 ,6673,6674,6671 ,0,0,0}, {5984,5986,5897 ,6670,6669,6675 ,0,0,0}, - {5996,5926,5898 ,6670,6676,6677 ,0,0,0}, {7692,7693,7661 ,6324,6298,6672 ,0,0,0}, - {7694,7653,7652 ,6671,6672,6671 ,0,0,0}, {7695,7696,7657 ,6672,6671,6671 ,0,0,0}, - {6009,5920,5916 ,6678,6671,6679 ,0,0,0}, {7654,7653,7697 ,6671,6672,6680 ,0,0,0}, - {5922,6016,5924 ,6679,6671,6671 ,0,0,0}, {7698,7699,7651 ,6672,6672,6672 ,0,0,0}, - {7700,7701,7638 ,6672,6681,6672 ,0,0,0}, {7690,7640,7702 ,6671,6681,6672 ,0,0,0}, - {7703,7645,7644 ,6672,6672,6681 ,0,0,0}, {7641,7704,7705 ,6672,6672,6672 ,0,0,0}, - {7706,7689,7705 ,6672,6671,6672 ,0,0,0}, {7643,7707,7644 ,6672,6671,6681 ,0,0,0}, - {7646,7703,7704 ,6672,6672,6672 ,0,0,0}, {7700,7642,7706 ,6672,6672,6672 ,0,0,0}, - {7708,7709,7688 ,6671,6672,6672 ,0,0,0}, {7640,7639,7710 ,6681,6671,6671 ,0,0,0}, - {7647,7711,7708 ,6671,6681,6671 ,0,0,0}, {6017,7690,5924 ,6671,6671,6671 ,0,0,0}, - {7687,7699,7711 ,6672,6672,6681 ,0,0,0}, {5920,6010,5921 ,6671,6682,6672 ,0,0,0}, - {5922,5921,6011 ,6679,6672,6298 ,0,0,0}, {7654,7712,7649 ,6671,6671,6672 ,0,0,0}, - {7712,7698,7650 ,6671,6672,6672 ,0,0,0}, {6004,6005,5912 ,6672,6681,6670 ,0,0,0}, - {5916,5918,6008 ,6679,6669,6669 ,0,0,0}, {7696,7713,7658 ,6671,6672,6671 ,0,0,0}, - {6002,6004,5914 ,6671,6672,6681 ,0,0,0}, {5909,5926,5998 ,6669,6676,6298 ,0,0,0}, - {5909,5999,6002 ,6669,6669,6671 ,0,0,0}, {7714,7655,7693 ,6672,6671,6298 ,0,0,0}, - {7714,7695,7656 ,6672,6672,6672 ,0,0,0}, {5992,5900,5903 ,6683,6669,6671 ,0,0,0}, - {5898,5900,5993 ,6677,6669,6684 ,0,0,0}, {7663,7715,7660 ,6671,6685,6686 ,0,0,0}, - {7692,7659,7660 ,6324,6687,6686 ,0,0,0}, {7663,7662,7716 ,6671,6688,6688 ,0,0,0}, - {5986,5987,5893 ,6669,6689,6684 ,0,0,0}, {7717,7718,7665 ,6672,6690,6671 ,0,0,0}, - {7718,7719,7666 ,6690,6686,6690 ,0,0,0}, {7720,7717,7664 ,6691,6672,6691 ,0,0,0}, - {5888,5891,5980 ,6671,6692,6672 ,0,0,0}, {5890,5978,5891 ,6693,6673,6692 ,0,0,0}, - {5883,5975,5890 ,6672,6689,6693 ,0,0,0}, {7668,7721,7720 ,6686,6690,6691 ,0,0,0}, - {5974,5883,5886 ,6694,6672,6695 ,0,0,0}, {7667,7722,7721 ,6690,6691,6690 ,0,0,0}, - {5886,5885,5972 ,6695,6696,6697 ,0,0,0}, {7722,7671,7670 ,6691,6672,6688 ,0,0,0}, - {5880,5968,5969 ,6698,6699,6700 ,0,0,0}, {7723,7724,7669 ,6672,6688,6688 ,0,0,0}, - {7673,7672,7725 ,6688,6691,6701 ,0,0,0}, {7726,7674,7675 ,6686,6672,6671 ,0,0,0}, - {5966,5968,5828 ,6676,6699,6702 ,0,0,0}, {7676,7727,7728 ,6672,6671,6671 ,0,0,0}, - {5966,5827,5962 ,6676,6687,6703 ,0,0,0}, {7729,7677,7678 ,6686,6704,6672 ,0,0,0}, - {5827,5875,6018 ,6687,6705,6676 ,0,0,0}, {7680,7730,7679 ,6686,6706,6672 ,0,0,0}, - {5961,6019,5875 ,6698,6699,6705 ,0,0,0}, {6023,5866,5865 ,6697,6707,6708 ,0,0,0}, - {6022,5961,5866 ,6709,6698,6707 ,0,0,0}, {7731,7683,7685 ,6690,6671,6701 ,0,0,0}, - {5865,5959,6025 ,6708,6672,6694 ,0,0,0}, {7686,5853,7732 ,6690,6690,6686 ,0,0,0}, - {6029,6028,5957 ,6673,6689,6710 ,0,0,0}, {5851,5853,6068 ,6711,6690,6690 ,0,0,0}, - {6031,6029,5955 ,6686,6673,6692 ,0,0,0}, {6065,5849,6067 ,6712,6713,6685 ,0,0,0}, - {5950,5951,6037 ,6714,6684,6669 ,0,0,0}, {6061,5846,5848 ,6715,6716,6717 ,0,0,0}, - {5946,6043,5945 ,6718,6719,6691 ,0,0,0}, {6049,6047,5834 ,6298,6670,6676 ,0,0,0}, - {6055,5839,5841 ,6686,6704,6720 ,0,0,0}, {5841,5843,6058 ,6720,6669,6715 ,0,0,0}, - {6049,5836,6052 ,6298,6718,6669 ,0,0,0}, {5836,5839,6053 ,6718,6704,6691 ,0,0,0}, - {7724,7670,7669 ,6688,6688,6688 ,0,0,0}, {5944,6047,6046 ,6676,6670,6684 ,0,0,0}, - {6061,6059,5846 ,6715,6669,6716 ,0,0,0}, {5848,5849,6065 ,6717,6713,6712 ,0,0,0}, - {5848,6065,6061 ,6717,6712,6715 ,0,0,0}, {5949,6040,5951 ,6673,6721,6684 ,0,0,0}, - {5949,5945,6041 ,6673,6691,6670 ,0,0,0}, {5851,6068,6067 ,6711,6690,6685 ,0,0,0}, - {5851,6067,5849 ,6711,6685,6713 ,0,0,0}, {5954,6034,6031 ,6691,6669,6686 ,0,0,0}, - {6035,5954,5950 ,6720,6691,6714 ,0,0,0}, {6070,6068,5853 ,6671,6690,6690 ,0,0,0}, - {7684,7733,7734 ,6686,6722,6688 ,0,0,0}, {7681,7682,7735 ,6691,6723,6706 ,0,0,0}, - {6059,6058,5843 ,6669,6715,6669 ,0,0,0}, {6059,5843,5846 ,6669,6669,6716 ,0,0,0}, - {6058,6055,5841 ,6715,6686,6720 ,0,0,0}, {6055,6053,5839 ,6686,6691,6704 ,0,0,0}, - {6053,6052,5836 ,6691,6669,6718 ,0,0,0}, {6049,5834,5836 ,6298,6676,6718 ,0,0,0}, - {6047,5944,5834 ,6670,6676,6676 ,0,0,0}, {6046,6043,5946 ,6684,6719,6718 ,0,0,0}, - {6046,5946,5944 ,6684,6718,6676 ,0,0,0}, {6043,6041,5945 ,6719,6670,6691 ,0,0,0}, - {6041,6040,5949 ,6670,6721,6673 ,0,0,0}, {6040,6037,5951 ,6721,6669,6684 ,0,0,0}, - {6037,6035,5950 ,6669,6720,6714 ,0,0,0}, {6035,6034,5954 ,6720,6669,6691 ,0,0,0}, - {6031,5955,5954 ,6686,6692,6691 ,0,0,0}, {6029,5957,5955 ,6673,6710,6692 ,0,0,0}, - {6028,6025,5959 ,6689,6694,6672 ,0,0,0}, {6028,5959,5957 ,6689,6672,6710 ,0,0,0}, - {6025,6023,5865 ,6694,6697,6708 ,0,0,0}, {6023,6022,5866 ,6697,6709,6707 ,0,0,0}, - {6022,6019,5961 ,6709,6699,6698 ,0,0,0}, {6019,6018,5875 ,6699,6676,6705 ,0,0,0}, - {6018,5962,5827 ,6676,6703,6687 ,0,0,0}, {5966,5828,5827 ,6676,6702,6687 ,0,0,0}, - {5968,5880,5828 ,6699,6698,6702 ,0,0,0}, {5969,5972,5885 ,6700,6697,6696 ,0,0,0}, - {5969,5885,5880 ,6700,6696,6698 ,0,0,0}, {5972,5974,5886 ,6697,6694,6695 ,0,0,0}, - {5974,5975,5883 ,6694,6689,6672 ,0,0,0}, {5975,5978,5890 ,6689,6673,6693 ,0,0,0}, - {5978,5980,5891 ,6673,6672,6692 ,0,0,0}, {5980,5981,5888 ,6672,6669,6671 ,0,0,0}, - {5984,5897,5888 ,6670,6675,6671 ,0,0,0}, {5986,5893,5897 ,6669,6684,6675 ,0,0,0}, - {5987,5990,5894 ,6689,6674,6673 ,0,0,0}, {5987,5894,5893 ,6689,6673,6684 ,0,0,0}, - {5990,5992,5903 ,6674,6683,6671 ,0,0,0}, {5992,5993,5900 ,6683,6684,6669 ,0,0,0}, - {5993,5996,5898 ,6684,6670,6677 ,0,0,0}, {5996,5998,5926 ,6670,6298,6676 ,0,0,0}, - {5998,5999,5909 ,6298,6669,6669 ,0,0,0}, {6002,5914,5909 ,6671,6681,6669 ,0,0,0}, - {6004,5912,5914 ,6672,6670,6681 ,0,0,0}, {6005,6008,5918 ,6681,6669,6669 ,0,0,0}, - {6005,5918,5912 ,6681,6669,6670 ,0,0,0}, {6008,6009,5916 ,6669,6678,6679 ,0,0,0}, - {6009,6010,5920 ,6678,6682,6671 ,0,0,0}, {6010,6011,5921 ,6682,6298,6672 ,0,0,0}, - {6011,6016,5922 ,6298,6671,6679 ,0,0,0}, {6016,6017,5924 ,6671,6671,6671 ,0,0,0}, - {7690,7702,5924 ,6671,6672,6671 ,0,0,0}, {7640,7710,7702 ,6681,6671,6672 ,0,0,0}, - {7639,7638,7701 ,6671,6672,6681 ,0,0,0}, {7639,7701,7710 ,6671,6681,6671 ,0,0,0}, - {7638,7642,7700 ,6672,6672,6672 ,0,0,0}, {7642,7689,7706 ,6672,6671,6672 ,0,0,0}, - {7689,7641,7705 ,6671,6672,6672 ,0,0,0}, {7641,7646,7704 ,6672,6672,6672 ,0,0,0}, - {7646,7645,7703 ,6672,6672,6672 ,0,0,0}, {7644,7707,7703 ,6681,6671,6672 ,0,0,0}, - {7643,7691,7707 ,6672,6671,6671 ,0,0,0}, {7648,7688,7709 ,6671,6672,6672 ,0,0,0}, - {7648,7709,7691 ,6671,6672,6671 ,0,0,0}, {7688,7647,7708 ,6672,6671,6671 ,0,0,0}, - {7647,7687,7711 ,6671,6672,6681 ,0,0,0}, {7687,7651,7699 ,6672,6672,6672 ,0,0,0}, - {7651,7650,7698 ,6672,6672,6672 ,0,0,0}, {7650,7649,7712 ,6672,6672,6671 ,0,0,0}, - {7654,7697,7712 ,6671,6680,6671 ,0,0,0}, {7653,7694,7697 ,6672,6671,6680 ,0,0,0}, - {7652,7658,7713 ,6671,6671,6672 ,0,0,0}, {7652,7713,7694 ,6671,6672,6671 ,0,0,0}, - {7658,7657,7696 ,6671,6671,6671 ,0,0,0}, {7657,7656,7695 ,6671,6672,6672 ,0,0,0}, - {7656,7655,7714 ,6672,6671,6672 ,0,0,0}, {7655,7661,7693 ,6671,6672,6298 ,0,0,0}, - {7661,7659,7692 ,6672,6687,6324 ,0,0,0}, {7660,7715,7692 ,6686,6685,6324 ,0,0,0}, - {7663,7716,7715 ,6671,6688,6685 ,0,0,0}, {7662,7666,7719 ,6688,6690,6686 ,0,0,0}, - {7662,7719,7716 ,6688,6686,6688 ,0,0,0}, {7666,7665,7718 ,6690,6671,6690 ,0,0,0}, - {7665,7664,7717 ,6671,6691,6672 ,0,0,0}, {7664,7668,7720 ,6691,6686,6691 ,0,0,0}, - {7668,7667,7721 ,6686,6690,6690 ,0,0,0}, {7667,7671,7722 ,6690,6672,6691 ,0,0,0}, - {7670,7724,7722 ,6688,6688,6691 ,0,0,0}, {7673,7723,7669 ,6688,6672,6688 ,0,0,0}, - {7672,7736,7725 ,6691,6691,6701 ,0,0,0}, {7673,7725,7723 ,6688,6701,6672 ,0,0,0}, - {7726,7736,7674 ,6686,6691,6672 ,0,0,0}, {7672,7674,7736 ,6691,6672,6691 ,0,0,0}, - {7726,7675,7728 ,6686,6671,6671 ,0,0,0}, {7727,7676,7677 ,6671,6672,6704 ,0,0,0}, - {7728,7675,7676 ,6671,6671,6672 ,0,0,0}, {7729,7678,7679 ,6686,6672,6672 ,0,0,0}, - {7729,7727,7677 ,6686,6671,6704 ,0,0,0}, {7737,7730,7680 ,6688,6706,6686 ,0,0,0}, - {7730,7729,7679 ,6706,6686,6672 ,0,0,0}, {7737,7681,7735 ,6688,6691,6706 ,0,0,0}, - {7681,7737,7680 ,6691,6688,6686 ,0,0,0}, {7682,7734,7735 ,6723,6688,6706 ,0,0,0}, - {7684,7683,7733 ,6686,6671,6722 ,0,0,0}, {7682,7684,7734 ,6723,6686,6688 ,0,0,0}, - {7731,7685,7732 ,6690,6701,6686 ,0,0,0}, {7733,7683,7731 ,6722,6671,6690 ,0,0,0}, - {5853,7686,6070 ,6690,6690,6671 ,0,0,0}, {7732,7685,7686 ,6686,6701,6690 ,0,0,0}, - {7732,5430,7234 ,6724,6725,6726 ,0,0,0}, {7196,7733,7731 ,6727,6728,6729 ,0,0,0}, - {7735,7198,7737 ,6730,6731,6732 ,0,0,0}, {7339,7734,7337 ,6733,6734,6735 ,0,0,0}, - {7738,7348,7739 ,6736,6737,6738 ,0,0,0}, {7223,7738,7740 ,6739,6736,6736 ,0,0,0}, - {7264,7741,7742 ,6740,6741,6742 ,0,0,0}, {7263,7743,7222 ,6743,6744,6745 ,0,0,0}, - {7346,7744,7745 ,6746,6747,6748 ,0,0,0}, {7393,7746,7351 ,6749,6750,6751 ,0,0,0}, - {7747,7748,7391 ,6752,6753,6754 ,0,0,0}, {7744,7279,7392 ,6747,6755,6756 ,0,0,0}, - {7714,7315,7306 ,6757,6758,6759 ,0,0,0}, {5717,7315,7747 ,6760,6758,6752 ,0,0,0}, - {7696,7308,7713 ,6761,6762,6763 ,0,0,0}, {7307,7696,7695 ,6764,6761,6765 ,0,0,0}, - {7378,7313,7697 ,6766,6767,6768 ,0,0,0}, {7378,7694,7377 ,6766,6769,6770 ,0,0,0}, - {7712,7305,7698 ,6771,6772,6773 ,0,0,0}, {7305,7712,7313 ,6772,6771,6767 ,0,0,0}, - {7699,7698,7282 ,6774,6773,6775 ,0,0,0}, {7305,7282,7698 ,6772,6775,6773 ,0,0,0}, - {7280,7711,7281 ,6776,6777,6778 ,0,0,0}, {7699,7282,7281 ,6774,6775,6778 ,0,0,0}, - {7286,7709,7304 ,6779,6780,6781 ,0,0,0}, {7708,7280,7304 ,6782,6776,6781 ,0,0,0}, - {7285,7707,7691 ,6783,6784,6785 ,0,0,0}, {7704,7703,7749 ,6786,6787,6788 ,0,0,0}, - {7749,7303,7750 ,6788,6789,6788 ,0,0,0}, {7703,7707,7303 ,6787,6784,6789 ,0,0,0}, - {7751,7284,7257 ,6790,6791,6792 ,0,0,0}, {7284,7751,7750 ,6791,6790,6788 ,0,0,0}, - {7256,7752,7257 ,6793,6794,6792 ,0,0,0}, {7751,7257,7752 ,6790,6792,6794 ,0,0,0}, - {7256,7289,7753 ,6793,6795,6796 ,0,0,0}, {7753,7752,7256 ,6796,6794,6793 ,0,0,0}, - {7754,7289,7295 ,6797,6795,6798 ,0,0,0}, {7289,7754,7753 ,6795,6797,6796 ,0,0,0}, - {7299,7755,7295 ,6799,6800,6798 ,0,0,0}, {7754,7295,7755 ,6797,6798,6800 ,0,0,0}, - {7299,7292,7756 ,6799,6801,6802 ,0,0,0}, {7756,7755,7299 ,6802,6800,6799 ,0,0,0}, - {7757,7292,7301 ,6803,6801,6804 ,0,0,0}, {7292,7757,7756 ,6801,6803,6802 ,0,0,0}, - {5531,5934,7301 ,6805,6806,6804 ,0,0,0}, {7757,7301,5934 ,6803,6804,6806 ,0,0,0}, - {7701,7758,7759 ,6807,6808,6809 ,0,0,0}, {7703,7303,7749 ,6787,6789,6788 ,0,0,0}, - {7750,7303,7284 ,6788,6789,6791 ,0,0,0}, {7285,7303,7707 ,6783,6789,6784 ,0,0,0}, - {7286,7285,7691 ,6779,6783,6785 ,0,0,0}, {7691,7709,7286 ,6785,6780,6779 ,0,0,0}, - {7304,7709,7708 ,6781,6780,6782 ,0,0,0}, {7280,7708,7711 ,6776,6782,6777 ,0,0,0}, - {7711,7699,7281 ,6777,6774,6778 ,0,0,0}, {7749,7760,7704 ,6788,6810,6786 ,0,0,0}, - {7758,7701,7700 ,6808,6807,6811 ,0,0,0}, {7760,7705,7704 ,6810,6812,6786 ,0,0,0}, - {7759,7761,7710 ,6809,6813,6814 ,0,0,0}, {7710,7701,7759 ,6814,6807,6809 ,0,0,0}, - {7710,7762,7702 ,6814,6815,6816 ,0,0,0}, {7762,7710,7761 ,6815,6814,6813 ,0,0,0}, - {5924,7702,5925 ,6817,6816,6818 ,0,0,0}, {7762,5925,7702 ,6815,6818,6816 ,0,0,0}, - {7700,7763,7758 ,6811,6819,6808 ,0,0,0}, {7313,7712,7697 ,6767,6771,6768 ,0,0,0}, - {7763,7700,7706 ,6819,6811,6820 ,0,0,0}, {7764,7763,7706 ,6821,6819,6820 ,0,0,0}, - {7705,7760,7764 ,6812,6810,6821 ,0,0,0}, {7705,7764,7706 ,6812,6821,6820 ,0,0,0}, - {7697,7694,7378 ,6768,6769,6766 ,0,0,0}, {7344,7745,7746 ,6822,6748,6750 ,0,0,0}, - {7377,7713,7308 ,6770,6763,6762 ,0,0,0}, {7713,7377,7694 ,6763,6770,6769 ,0,0,0}, - {7696,7307,7308 ,6761,6764,6762 ,0,0,0}, {7306,7307,7695 ,6759,6764,6765 ,0,0,0}, - {7693,7315,7714 ,6823,6758,6757 ,0,0,0}, {7695,7714,7306 ,6765,6757,6759 ,0,0,0}, - {5717,7747,7391 ,6760,6752,6754 ,0,0,0}, {7693,7747,7315 ,6823,6752,6758 ,0,0,0}, - {7744,7346,7279 ,6747,6746,6755 ,0,0,0}, {7748,7744,7392 ,6753,6747,6756 ,0,0,0}, - {7746,7393,7344 ,6750,6749,6822 ,0,0,0}, {7765,7343,7766 ,6824,6825,6826 ,0,0,0}, - {7746,7766,7351 ,6750,6826,6751 ,0,0,0}, {7765,7741,7273 ,6824,6741,6827 ,0,0,0}, - {7343,7765,7273 ,6825,6824,6827 ,0,0,0}, {7742,7743,7263 ,6742,6744,6743 ,0,0,0}, - {7273,7741,7255 ,6827,6741,6828 ,0,0,0}, {7736,7726,7767 ,6829,6830,6831 ,0,0,0}, - {7727,7729,7740 ,6832,6833,6736 ,0,0,0}, {7743,7739,7342 ,6744,6738,6834 ,0,0,0}, - {7731,7234,7196 ,6729,6726,6727 ,0,0,0}, {7735,7734,7339 ,6730,6734,6733 ,0,0,0}, - {7199,7223,7730 ,6835,6739,6836 ,0,0,0}, {7357,7738,7223 ,6837,6736,6739 ,0,0,0}, - {7737,7199,7730 ,6732,6835,6836 ,0,0,0}, {7339,7198,7735 ,6733,6731,6730 ,0,0,0}, - {7737,7198,7199 ,6732,6731,6835 ,0,0,0}, {7733,7337,7734 ,6728,6735,6734 ,0,0,0}, - {7337,7733,7196 ,6735,6728,6727 ,0,0,0}, {7234,7731,7732 ,6726,6729,6724 ,0,0,0}, - {5430,7732,5853 ,6725,6724,6838 ,0,0,0}, {7715,7768,7692 ,6839,6840,6841 ,0,0,0}, - {7693,7692,7768 ,6823,6841,6840 ,0,0,0}, {7768,7715,7769 ,6840,6839,6842 ,0,0,0}, - {7693,7768,7747 ,6823,6840,6752 ,0,0,0}, {7770,7769,7716 ,6843,6842,6844 ,0,0,0}, - {7392,7391,7748 ,6756,6754,6753 ,0,0,0}, {7718,7770,7719 ,6845,6843,6846 ,0,0,0}, - {7718,7771,7770 ,6845,6847,6843 ,0,0,0}, {7772,7771,7717 ,6848,6847,6849 ,0,0,0}, - {7344,7346,7745 ,6822,6746,6748 ,0,0,0}, {7721,7772,7720 ,6850,6848,6851 ,0,0,0}, - {7721,7773,7772 ,6850,6852,6848 ,0,0,0}, {7774,7773,7722 ,6853,6852,6854 ,0,0,0}, - {7343,7351,7766 ,6825,6751,6826 ,0,0,0}, {7724,7775,7774 ,6855,6856,6853 ,0,0,0}, - {7723,7775,7724 ,6857,6856,6855 ,0,0,0}, {7776,7775,7725 ,6858,6856,6859 ,0,0,0}, - {7264,7255,7741 ,6740,6828,6741 ,0,0,0}, {7767,7776,7736 ,6831,6858,6829 ,0,0,0}, - {7263,7264,7742 ,6743,6740,6742 ,0,0,0}, {7777,7767,7728 ,6860,6831,6861 ,0,0,0}, - {7342,7222,7743 ,6834,6745,6744 ,0,0,0}, {7740,7777,7727 ,6736,6860,6832 ,0,0,0}, - {7348,7342,7739 ,6737,6834,6738 ,0,0,0}, {7730,7223,7740 ,6836,6739,6736 ,0,0,0}, - {7348,7738,7357 ,6737,6736,6837 ,0,0,0}, {7730,7740,7729 ,6836,6736,6833 ,0,0,0}, - {7728,7727,7777 ,6861,6832,6860 ,0,0,0}, {7726,7728,7767 ,6830,6861,6831 ,0,0,0}, - {7725,7736,7776 ,6859,6829,6858 ,0,0,0}, {7723,7725,7775 ,6857,6859,6856 ,0,0,0}, - {7722,7724,7774 ,6854,6855,6853 ,0,0,0}, {7721,7722,7773 ,6850,6854,6852 ,0,0,0}, - {7717,7720,7772 ,6849,6851,6848 ,0,0,0}, {7718,7717,7771 ,6845,6849,6847 ,0,0,0}, - {7716,7719,7770 ,6844,6846,6843 ,0,0,0}, {7715,7716,7769 ,6839,6844,6842 ,0,0,0}, - {7778,5725,5726 ,6862,6863,6864 ,0,0,0}, {7430,7419,6657 ,6865,6866,6867 ,0,0,0}, - {7779,7427,7426 ,6868,6869,6870 ,0,0,0}, {7429,6650,7416 ,6871,6872,6873 ,0,0,0}, - {6635,7409,7413 ,6874,6875,6876 ,0,0,0}, {6647,7432,7433 ,6877,6878,6879 ,0,0,0}, - {7443,6642,6641 ,6880,6881,6882 ,0,0,0}, {7440,6634,6637 ,6883,6884,6885 ,0,0,0}, - {7780,7453,7451 ,6886,6887,6888 ,0,0,0}, {7781,7447,6644 ,6889,6890,5525 ,0,0,0}, - {7464,7461,6720 ,6891,6892,6893 ,0,0,0}, {7457,7782,7783 ,6894,6895,6896 ,0,0,0}, - {7471,6709,7525 ,6897,6898,6899 ,0,0,0}, {7467,6715,7470 ,6900,6901,6902 ,0,0,0}, - {6756,7476,6754 ,6903,6904,6905 ,0,0,0}, {7519,7472,6752 ,6906,6907,6908 ,0,0,0}, - {7508,7784,7510 ,6909,6910,6911 ,0,0,0}, {7516,6757,7482 ,6912,6913,6914 ,0,0,0}, - {7785,7497,7489 ,6915,6916,6917 ,0,0,0}, {7507,7786,7494 ,6918,6919,6920 ,0,0,0}, - {7787,7504,7505 ,6921,6922,6923 ,0,0,0}, {6813,6816,7498 ,6924,6925,6926 ,0,0,0}, - {6813,7501,6814 ,6924,6927,5712 ,0,0,0}, {6801,6800,7491 ,6928,6929,6930 ,0,0,0}, - {6801,7506,6816 ,6928,6931,6925 ,0,0,0}, {7511,7513,6800 ,6932,6933,6929 ,0,0,0}, - {6800,7513,7491 ,6929,6933,6930 ,0,0,0}, {7511,6800,6845 ,6932,6929,6934 ,0,0,0}, - {6845,6847,7485 ,6934,6935,6936 ,0,0,0}, {7485,7511,6845 ,6936,6932,6934 ,0,0,0}, - {7517,6847,6849 ,6937,6935,6938 ,0,0,0}, {6847,7517,7485 ,6935,6937,6936 ,0,0,0}, - {7517,6849,7478 ,6937,6938,6939 ,0,0,0}, {6850,7479,7478 ,6940,6941,6939 ,0,0,0}, - {7478,6849,6850 ,6939,6938,6940 ,0,0,0}, {7479,6852,7523 ,6941,6942,6943 ,0,0,0}, - {6852,7479,6850 ,6942,6941,6940 ,0,0,0}, {7473,7523,6853 ,6944,6943,6945 ,0,0,0}, - {6852,6853,7523 ,6942,6945,6943 ,0,0,0}, {6853,7788,7468 ,6945,6946,6947 ,0,0,0}, - {7468,7473,6853 ,6947,6944,6945 ,0,0,0}, {7465,7788,7789 ,6948,6946,6949 ,0,0,0}, - {7788,7465,7468 ,6946,6948,6947 ,0,0,0}, {7790,7462,7789 ,6950,6951,6949 ,0,0,0}, - {7465,7789,7462 ,6948,6949,6951 ,0,0,0}, {7790,5823,5821 ,6950,126,3135 ,0,0,0}, - {5821,7462,7790 ,3135,6951,6950 ,0,0,0}, {6816,7506,7498 ,6925,6931,6926 ,0,0,0}, - {6801,7491,7506 ,6928,6930,6931 ,0,0,0}, {7501,7494,6814 ,6927,6920,5712 ,0,0,0}, - {6813,7498,7501 ,6924,6926,6927 ,0,0,0}, {7786,7507,7504 ,6919,6918,6922 ,0,0,0}, - {7786,6814,7494 ,6919,5712,6920 ,0,0,0}, {7787,7505,7497 ,6921,6923,6916 ,0,0,0}, - {7787,7786,7504 ,6921,6919,6922 ,0,0,0}, {7784,7785,7489 ,6910,6915,6917 ,0,0,0}, - {7785,7787,7497 ,6915,6921,6916 ,0,0,0}, {6759,7784,7508 ,6952,6910,6909 ,0,0,0}, - {7510,7784,7489 ,6911,6910,6917 ,0,0,0}, {6759,7482,6757 ,6952,6914,6913 ,0,0,0}, - {7482,6759,7508 ,6914,6952,6909 ,0,0,0}, {7514,6756,6757 ,6953,6903,6913 ,0,0,0}, - {7514,6757,7516 ,6953,6913,6912 ,0,0,0}, {7476,7521,6754 ,6904,6954,6905 ,0,0,0}, - {7514,7476,6756 ,6953,6904,6903 ,0,0,0}, {7519,6752,7521 ,6906,6908,6954 ,0,0,0}, - {6754,7521,6752 ,6905,6954,6908 ,0,0,0}, {6711,7472,7525 ,6955,6907,6899 ,0,0,0}, - {6752,7472,6711 ,6908,6907,6955 ,0,0,0}, {6721,6709,7471 ,6956,6898,6897 ,0,0,0}, - {6709,6711,7525 ,6898,6955,6899 ,0,0,0}, {6721,7470,6715 ,6956,6902,6901 ,0,0,0}, - {7470,6721,7471 ,6902,6956,6897 ,0,0,0}, {7464,6720,6715 ,6891,6893,6901 ,0,0,0}, - {7464,6715,7467 ,6891,6901,6900 ,0,0,0}, {7461,7459,7783 ,6892,6957,6896 ,0,0,0}, - {7461,7783,6720 ,6892,6896,6893 ,0,0,0}, {7457,7455,7782 ,6894,6958,6895 ,0,0,0}, - {7459,7457,7783 ,6957,6894,6896 ,0,0,0}, {7453,7780,7455 ,6887,6886,6958 ,0,0,0}, - {7782,7455,7780 ,6895,6958,6886 ,0,0,0}, {7781,7451,7449 ,6889,6888,6959 ,0,0,0}, - {7780,7451,7781 ,6886,6888,6889 ,0,0,0}, {6644,7447,7445 ,5525,6890,6960 ,0,0,0}, - {7781,7449,7447 ,6889,6959,6890 ,0,0,0}, {7445,7443,6641 ,6960,6880,6882 ,0,0,0}, - {6641,6644,7445 ,6882,5525,6960 ,0,0,0}, {7410,6637,6642 ,6961,6885,6881 ,0,0,0}, - {7410,6642,7443 ,6961,6881,6880 ,0,0,0}, {7440,7436,6634 ,6883,6962,6884 ,0,0,0}, - {7410,7440,6637 ,6961,6883,6885 ,0,0,0}, {6635,6634,7409 ,6874,6884,6875 ,0,0,0}, - {7436,7409,6634 ,6962,6875,6884 ,0,0,0}, {6640,7413,7432 ,6963,6876,6878 ,0,0,0}, - {6635,7413,6640 ,6874,6876,6963 ,0,0,0}, {6649,6647,7433 ,6964,6877,6879 ,0,0,0}, - {6647,6640,7432 ,6877,6963,6878 ,0,0,0}, {6649,7416,6650 ,6964,6873,6872 ,0,0,0}, - {7416,6649,7433 ,6873,6964,6879 ,0,0,0}, {7429,7430,6657 ,6871,6865,6867 ,0,0,0}, - {7429,6657,6650 ,6871,6867,6872 ,0,0,0}, {7419,7427,7791 ,6866,6869,6965 ,0,0,0}, - {7419,7791,6657 ,6866,6965,6867 ,0,0,0}, {7779,7426,7778 ,6868,6870,6862 ,0,0,0}, - {7791,7427,7779 ,6965,6869,6868 ,0,0,0}, {5725,7778,7426 ,6863,6862,6870 ,0,0,0}, - {5695,7792,7353 ,6966,6967,6968 ,0,0,0}, {7793,7397,7794 ,6969,6970,6971 ,0,0,0}, - {7265,7266,7795 ,6972,6973,6974 ,0,0,0}, {7399,7796,7400 ,6975,6976,6977 ,0,0,0}, - {7797,7798,7341 ,6978,6979,6980 ,0,0,0}, {7799,7396,7800 ,6981,6982,6983 ,0,0,0}, - {7398,7352,7801 ,6984,6985,6986 ,0,0,0}, {7403,7802,7803 ,6987,6988,6989 ,0,0,0}, - {7394,7804,7395 ,6990,6991,6992 ,0,0,0}, {7404,7805,7277 ,6993,6994,6995 ,0,0,0}, - {7806,7404,7345 ,6996,6993,6997 ,0,0,0}, {7278,7807,7405 ,6998,6999,7000 ,0,0,0}, - {7808,7278,7277 ,7001,6998,6995 ,0,0,0}, {7406,7405,7809 ,7002,7000,7003 ,0,0,0}, - {7807,7809,7405 ,6999,7003,7000 ,0,0,0}, {7810,7390,7406 ,7004,7005,7002 ,0,0,0}, - {7406,7809,7810 ,7002,7003,7004 ,0,0,0}, {7390,7811,7408 ,7005,7006,7007 ,0,0,0}, - {7811,7390,7810 ,7006,7005,7004 ,0,0,0}, {7407,7408,7812 ,7008,7007,7009 ,0,0,0}, - {7811,7812,7408 ,7006,7009,7007 ,0,0,0}, {7813,5717,7407 ,7010,82,7008 ,0,0,0}, - {7407,7812,7813 ,7008,7009,7010 ,0,0,0}, {5716,5717,7813 ,7011,82,7010 ,0,0,0}, - {7345,7803,7806 ,6997,6989,6996 ,0,0,0}, {7805,7808,7277 ,6994,7001,6995 ,0,0,0}, - {7808,7807,7278 ,7001,6999,6998 ,0,0,0}, {7805,7404,7806 ,6994,6993,6996 ,0,0,0}, - {7802,7403,7395 ,6988,6987,6992 ,0,0,0}, {7803,7345,7403 ,6989,6997,6987 ,0,0,0}, - {7395,7804,7802 ,6992,6991,6988 ,0,0,0}, {7799,7804,7394 ,6981,6991,6990 ,0,0,0}, - {7814,7400,7796 ,7012,6977,6976 ,0,0,0}, {7398,7800,7396 ,6984,6983,6982 ,0,0,0}, - {7394,7396,7799 ,6990,6982,6981 ,0,0,0}, {7352,7400,7814 ,6985,6977,7012 ,0,0,0}, - {7352,7814,7801 ,6985,7012,6986 ,0,0,0}, {7800,7398,7801 ,6983,6984,6986 ,0,0,0}, - {7397,7265,7794 ,6970,6972,6971 ,0,0,0}, {7796,7399,7798 ,6976,6975,6979 ,0,0,0}, - {7797,7341,7340 ,6978,6980,7013 ,0,0,0}, {7341,7798,7399 ,6980,6979,6975 ,0,0,0}, - {7340,7397,7793 ,7013,6970,6969 ,0,0,0}, {7340,7793,7797 ,7013,6969,6978 ,0,0,0}, - {7266,7792,7795 ,6973,6967,6974 ,0,0,0}, {7794,7265,7795 ,6971,6972,6974 ,0,0,0}, - {5695,7353,5692 ,6966,6968,7014 ,0,0,0}, {7792,7266,7353 ,6967,6973,6968 ,0,0,0}, - {7814,5710,7801 ,730,730,730 ,0,0,0}, {7809,7807,7805 ,730,730,730 ,0,0,0}, - {7807,7808,7805 ,730,730,730 ,0,0,0}, {7805,7806,7810 ,730,730,730 ,0,0,0}, - {7810,7809,7805 ,730,730,730 ,0,0,0}, {7811,7806,7803 ,730,730,730 ,0,0,0}, - {7806,7811,7810 ,730,730,730 ,0,0,0}, {7802,7812,7803 ,730,730,730 ,0,0,0}, - {7811,7803,7812 ,730,730,730 ,0,0,0}, {7813,7802,5716 ,730,730,730 ,0,0,0}, - {7813,7812,7802 ,730,730,730 ,0,0,0}, {7804,7799,5714 ,730,730,730 ,0,0,0}, - {7802,7804,5716 ,730,730,730 ,0,0,0}, {7796,5705,5708 ,730,730,7015 ,0,0,0}, - {5711,5714,7800 ,730,730,730 ,0,0,0}, {7793,5699,5702 ,7016,7015,7017 ,0,0,0}, - {7798,5702,5704 ,730,7017,7017 ,0,0,0}, {5696,5698,7795 ,730,730,730 ,0,0,0}, - {5695,5671,5673 ,730,730,730 ,0,0,0}, {5669,5696,7792 ,7015,730,730 ,0,0,0}, - {5675,5689,5687 ,730,730,7017 ,0,0,0}, {5671,5690,5677 ,730,7017,7015 ,0,0,0}, - {5683,5679,5684 ,730,730,730 ,0,0,0}, {5679,5687,5684 ,730,7017,730 ,0,0,0}, - {5680,5679,5683 ,730,730,730 ,0,0,0}, {5675,5677,5689 ,730,7015,730 ,0,0,0}, - {5679,5675,5687 ,730,730,7017 ,0,0,0}, {5690,5671,5694 ,7017,730,730 ,0,0,0}, - {5689,5677,5690 ,730,7015,7017 ,0,0,0}, {5695,5694,5671 ,730,730,730 ,0,0,0}, - {7792,5673,5669 ,730,730,7015 ,0,0,0}, {7792,5695,5673 ,730,730,730 ,0,0,0}, - {5698,7794,7795 ,730,7016,730 ,0,0,0}, {7795,7792,5696 ,730,730,730 ,0,0,0}, - {7793,7794,5699 ,7016,7016,7015 ,0,0,0}, {5698,5699,7794 ,730,7015,7016 ,0,0,0}, - {5702,7798,7797 ,7017,730,730 ,0,0,0}, {5702,7797,7793 ,7017,730,7016 ,0,0,0}, - {5704,5705,7796 ,7017,730,730 ,0,0,0}, {7798,5704,7796 ,730,7017,730 ,0,0,0}, - {5708,5710,7814 ,7015,730,730 ,0,0,0}, {7796,5708,7814 ,730,7015,730 ,0,0,0}, - {7801,5711,7800 ,730,730,730 ,0,0,0}, {7801,5710,5711 ,730,730,730 ,0,0,0}, - {7804,5714,5716 ,730,730,730 ,0,0,0}, {7799,7800,5714 ,730,730,730 ,0,0,0}, - {7815,7816,5667 ,7018,7019,7020 ,0,0,0}, {5667,7817,7815 ,7020,7021,7018 ,0,0,0}, - {5667,5650,7817 ,7020,7022,7021 ,0,0,0}, {5667,7818,7819 ,7020,7023,7024 ,0,0,0}, - {7816,7818,5667 ,7019,7023,7020 ,0,0,0}, {5667,7820,7821 ,7020,7025,7026 ,0,0,0}, - {7819,7820,5667 ,7024,7025,7020 ,0,0,0}, {7821,7822,5667 ,7026,7027,7020 ,0,0,0}, - {7823,5667,7824 ,7028,7020,7029 ,0,0,0}, {5667,7822,7824 ,7020,7027,7029 ,0,0,0}, - {7825,5667,7826 ,7030,7020,7031 ,0,0,0}, {5667,7823,7826 ,7020,7028,7031 ,0,0,0}, - {7827,5667,7828 ,7032,7020,7033 ,0,0,0}, {5667,7825,7828 ,7020,7030,7033 ,0,0,0}, - {5666,5667,7827 ,7034,7020,7032 ,0,0,0}, {5649,7322,7817 ,7035,7036,7037 ,0,0,0}, - {7819,7818,7312 ,7038,7039,7040 ,0,0,0}, {7816,7815,7321 ,7041,7042,7043 ,0,0,0}, - {7821,7379,7822 ,7044,7045,7046 ,0,0,0}, {7311,7324,7820 ,7047,7048,7049 ,0,0,0}, - {7380,7205,7823 ,7050,7051,7052 ,0,0,0}, {7380,7824,7271 ,7050,7053,7054 ,0,0,0}, - {7269,7328,7825 ,7055,7056,7057 ,0,0,0}, {7825,7826,7269 ,7057,7058,7055 ,0,0,0}, - {7828,7328,7314 ,7059,7056,7060 ,0,0,0}, {7328,7828,7825 ,7056,7059,7057 ,0,0,0}, - {7302,7827,7314 ,7061,7062,7060 ,0,0,0}, {7828,7314,7827 ,7059,7060,7062 ,0,0,0}, - {7302,5665,5666 ,7061,7063,4910 ,0,0,0}, {5666,7827,7302 ,4910,7062,7061 ,0,0,0}, - {7379,7821,7324 ,7045,7044,7048 ,0,0,0}, {7205,7826,7823 ,7051,7058,7052 ,0,0,0}, - {7269,7826,7205 ,7055,7058,7051 ,0,0,0}, {7312,7818,7320 ,7040,7039,7064 ,0,0,0}, - {7271,7824,7822 ,7054,7053,7046 ,0,0,0}, {7380,7823,7824 ,7050,7052,7053 ,0,0,0}, - {7379,7271,7822 ,7045,7054,7046 ,0,0,0}, {7820,7324,7821 ,7049,7048,7044 ,0,0,0}, - {7819,7312,7311 ,7038,7040,7047 ,0,0,0}, {7311,7820,7819 ,7047,7049,7038 ,0,0,0}, - {7815,7322,7321 ,7042,7036,7043 ,0,0,0}, {7320,7816,7321 ,7064,7041,7043 ,0,0,0}, - {7818,7816,7320 ,7039,7041,7064 ,0,0,0}, {5649,7817,5650 ,7035,7037,4929 ,0,0,0}, - {7322,7815,7817 ,7036,7042,7037 ,0,0,0}, {7829,7830,5633 ,7018,7019,7065 ,0,0,0}, - {5633,7831,7829 ,7065,7021,7018 ,0,0,0}, {5633,5616,7831 ,7065,7066,7021 ,0,0,0}, - {5633,7832,7833 ,7065,7023,7024 ,0,0,0}, {7830,7832,5633 ,7019,7023,7065 ,0,0,0}, - {5633,7834,7835 ,7065,7025,7026 ,0,0,0}, {7833,7834,5633 ,7024,7025,7065 ,0,0,0}, - {7835,7836,5633 ,7026,7027,7065 ,0,0,0}, {7837,5633,7838 ,7028,7065,7029 ,0,0,0}, - {5633,7836,7838 ,7065,7027,7029 ,0,0,0}, {7839,5633,7840 ,7030,7065,7031 ,0,0,0}, - {5633,7837,7840 ,7065,7028,7031 ,0,0,0}, {7841,5633,7842 ,7032,7065,7033 ,0,0,0}, - {5633,7839,7842 ,7065,7030,7033 ,0,0,0}, {5632,5633,7841 ,7067,7065,7032 ,0,0,0}, - {5615,7371,7831 ,7068,7069,7070 ,0,0,0}, {7833,7832,7212 ,7071,7072,7073 ,0,0,0}, - {7830,7829,7251 ,7074,7075,7076 ,0,0,0}, {7835,7231,7836 ,7077,7078,7079 ,0,0,0}, - {7213,7376,7834 ,7047,7080,7081 ,0,0,0}, {7195,7374,7837 ,7082,7083,7084 ,0,0,0}, - {7195,7838,7375 ,7082,7085,7086 ,0,0,0}, {7373,7249,7839 ,7087,7088,7089 ,0,0,0}, - {7839,7840,7373 ,7089,7090,7087 ,0,0,0}, {7842,7249,7250 ,7091,7088,7092 ,0,0,0}, - {7249,7842,7839 ,7088,7091,7089 ,0,0,0}, {7372,7841,7250 ,7093,7094,7092 ,0,0,0}, - {7842,7250,7841 ,7091,7092,7094 ,0,0,0}, {7372,5631,5632 ,7093,4831,4942 ,0,0,0}, - {5632,7841,7372 ,4942,7094,7093 ,0,0,0}, {7231,7835,7376 ,7078,7077,7080 ,0,0,0}, - {7374,7840,7837 ,7083,7090,7084 ,0,0,0}, {7373,7840,7374 ,7087,7090,7083 ,0,0,0}, - {7212,7832,7248 ,7073,7072,7095 ,0,0,0}, {7375,7838,7836 ,7086,7085,7079 ,0,0,0}, - {7195,7837,7838 ,7082,7084,7085 ,0,0,0}, {7231,7375,7836 ,7078,7086,7079 ,0,0,0}, - {7834,7376,7835 ,7081,7080,7077 ,0,0,0}, {7833,7212,7213 ,7071,7073,7047 ,0,0,0}, - {7213,7834,7833 ,7047,7081,7071 ,0,0,0}, {7829,7371,7251 ,7075,7069,7076 ,0,0,0}, - {7248,7830,7251 ,7095,7074,7076 ,0,0,0}, {7832,7830,7248 ,7072,7074,7095 ,0,0,0}, - {5615,7831,5616 ,7068,7070,4899 ,0,0,0}, {7371,7829,7831 ,7069,7075,7070 ,0,0,0}, - {7843,7844,5599 ,7018,7019,7065 ,0,0,0}, {5599,7845,7843 ,7065,7021,7018 ,0,0,0}, - {5599,5582,7845 ,7065,7096,7021 ,0,0,0}, {5599,7846,7847 ,7065,7023,7024 ,0,0,0}, - {7844,7846,5599 ,7019,7023,7065 ,0,0,0}, {5599,7848,7849 ,7065,7025,7026 ,0,0,0}, - {7847,7848,5599 ,7024,7025,7065 ,0,0,0}, {7849,7850,5599 ,7026,7027,7065 ,0,0,0}, - {7851,5599,7852 ,7028,7065,7029 ,0,0,0}, {5599,7850,7852 ,7065,7027,7029 ,0,0,0}, - {7853,5599,7854 ,7030,7065,7031 ,0,0,0}, {5599,7851,7854 ,7065,7028,7031 ,0,0,0}, - {7855,5599,7856 ,7032,7065,7033 ,0,0,0}, {5599,7853,7856 ,7065,7030,7033 ,0,0,0}, - {5598,5599,7855 ,7097,7065,7032 ,0,0,0}, {5581,7369,7845 ,7098,7099,7100 ,0,0,0}, - {7847,7846,7334 ,7101,7102,7103 ,0,0,0}, {7844,7843,7361 ,7104,7105,7076 ,0,0,0}, - {7849,7333,7850 ,7106,7107,7108 ,0,0,0}, {7368,7367,7848 ,7109,7110,7111 ,0,0,0}, - {7245,7242,7851 ,7112,7113,7114 ,0,0,0}, {7245,7852,7362 ,7112,7115,7116 ,0,0,0}, - {7247,7246,7853 ,7117,7118,7119 ,0,0,0}, {7853,7854,7247 ,7119,7120,7117 ,0,0,0}, - {7856,7246,7244 ,7121,7118,7122 ,0,0,0}, {7246,7856,7853 ,7118,7121,7119 ,0,0,0}, - {7243,7855,7244 ,7123,7124,7122 ,0,0,0}, {7856,7244,7855 ,7121,7122,7124 ,0,0,0}, - {7243,5597,5598 ,7123,4831,4831 ,0,0,0}, {5598,7855,7243 ,4831,7124,7123 ,0,0,0}, - {7333,7849,7367 ,7107,7106,7110 ,0,0,0}, {7242,7854,7851 ,7113,7120,7114 ,0,0,0}, - {7247,7854,7242 ,7117,7120,7113 ,0,0,0}, {7334,7846,7360 ,7103,7102,7125 ,0,0,0}, - {7362,7852,7850 ,7116,7115,7108 ,0,0,0}, {7245,7851,7852 ,7112,7114,7115 ,0,0,0}, - {7333,7362,7850 ,7107,7116,7108 ,0,0,0}, {7848,7367,7849 ,7111,7110,7106 ,0,0,0}, - {7847,7334,7368 ,7101,7103,7109 ,0,0,0}, {7368,7848,7847 ,7109,7111,7101 ,0,0,0}, - {7843,7369,7361 ,7105,7099,7076 ,0,0,0}, {7360,7844,7361 ,7125,7104,7076 ,0,0,0}, - {7846,7844,7360 ,7102,7104,7125 ,0,0,0}, {5581,7845,5582 ,7098,7100,4865 ,0,0,0}, - {7369,7843,7845 ,7099,7105,7100 ,0,0,0}, {7857,7858,5565 ,7018,7019,7126 ,0,0,0}, - {5565,7859,7857 ,7126,7021,7018 ,0,0,0}, {5565,5548,7859 ,7126,7127,7021 ,0,0,0}, - {5565,7860,7861 ,7126,7023,7024 ,0,0,0}, {7858,7860,5565 ,7019,7023,7126 ,0,0,0}, - {5565,7862,7863 ,7126,7025,7026 ,0,0,0}, {7861,7862,5565 ,7024,7025,7126 ,0,0,0}, - {7863,7864,5565 ,7026,7027,7126 ,0,0,0}, {7865,5565,7866 ,7028,7126,7029 ,0,0,0}, - {5565,7864,7866 ,7126,7027,7029 ,0,0,0}, {7867,5565,7868 ,7030,7126,7031 ,0,0,0}, - {5565,7865,7868 ,7126,7028,7031 ,0,0,0}, {7869,5565,7870 ,7032,7126,7033 ,0,0,0}, - {5565,7867,7870 ,7126,7030,7033 ,0,0,0}, {5564,5565,7869 ,7128,7126,7032 ,0,0,0}, - {5547,7350,7859 ,7129,7099,7130 ,0,0,0}, {7861,7860,7355 ,7131,7132,7133 ,0,0,0}, - {7858,7857,7349 ,7041,7075,7134 ,0,0,0}, {7863,7356,7864 ,7135,7107,7136 ,0,0,0}, - {7354,7382,7862 ,7137,7138,7139 ,0,0,0}, {7232,7233,7865 ,7140,7141,7142 ,0,0,0}, - {7232,7866,7338 ,7140,7143,7144 ,0,0,0}, {7316,7317,7867 ,7145,7146,7147 ,0,0,0}, - {7867,7868,7316 ,7147,7148,7145 ,0,0,0}, {7870,7317,7402 ,7149,7146,7150 ,0,0,0}, - {7317,7870,7867 ,7146,7149,7147 ,0,0,0}, {7401,7869,7402 ,7151,7152,7150 ,0,0,0}, - {7870,7402,7869 ,7149,7150,7152 ,0,0,0}, {7401,5563,5564 ,7151,7153,4831 ,0,0,0}, - {5564,7869,7401 ,4831,7152,7151 ,0,0,0}, {7356,7863,7382 ,7107,7135,7138 ,0,0,0}, - {7233,7868,7865 ,7141,7148,7142 ,0,0,0}, {7316,7868,7233 ,7145,7148,7141 ,0,0,0}, - {7355,7860,7358 ,7133,7132,7154 ,0,0,0}, {7338,7866,7864 ,7144,7143,7136 ,0,0,0}, - {7232,7865,7866 ,7140,7142,7143 ,0,0,0}, {7356,7338,7864 ,7107,7144,7136 ,0,0,0}, - {7862,7382,7863 ,7139,7138,7135 ,0,0,0}, {7861,7355,7354 ,7131,7133,7137 ,0,0,0}, - {7354,7862,7861 ,7137,7139,7131 ,0,0,0}, {7857,7350,7349 ,7075,7099,7134 ,0,0,0}, - {7358,7858,7349 ,7154,7041,7134 ,0,0,0}, {7860,7858,7358 ,7132,7041,7154 ,0,0,0}, - {5547,7859,5548 ,7129,7130,4929 ,0,0,0}, {7350,7857,7859 ,7099,7075,7130 ,0,0,0}, - {5508,5507,7871 ,4777,21,7155 ,0,0,0}, {7215,7228,7872 ,7156,7157,7158 ,0,0,0}, - {7224,7873,7874 ,7159,7160,7161 ,0,0,0}, {7875,7876,7206 ,7162,7163,7164 ,0,0,0}, - {7877,7272,7230 ,7165,7166,7167 ,0,0,0}, {7283,7327,7878 ,7168,7169,7170 ,0,0,0}, - {7268,7879,7880 ,7171,7172,7173 ,0,0,0}, {7258,7881,7290 ,7174,7175,7176 ,0,0,0}, - {7882,7883,7287 ,7177,7178,7179 ,0,0,0}, {7884,7885,7296 ,7180,7181,7182 ,0,0,0}, - {7886,7288,7290 ,7183,7184,7176 ,0,0,0}, {7887,7888,7297 ,7185,7186,7187 ,0,0,0}, - {7887,7294,7885 ,7185,7188,7181 ,0,0,0}, {7298,7888,7889 ,7189,7186,7190 ,0,0,0}, - {7888,7298,7297 ,7186,7189,7187 ,0,0,0}, {7890,7293,7889 ,7191,7192,7190 ,0,0,0}, - {7298,7889,7293 ,7189,7190,7192 ,0,0,0}, {7890,7891,7291 ,7191,7193,7194 ,0,0,0}, - {7291,7293,7890 ,7194,7192,7191 ,0,0,0}, {7300,7891,7892 ,7195,7193,7196 ,0,0,0}, - {7891,7300,7291 ,7193,7195,7194 ,0,0,0}, {5530,7301,7892 ,7197,7198,7196 ,0,0,0}, - {7300,7892,7301 ,7195,7196,7198 ,0,0,0}, {5531,7301,5530 ,7199,7198,7197 ,0,0,0}, - {7258,7883,7881 ,7174,7178,7175 ,0,0,0}, {7294,7296,7885 ,7188,7182,7181 ,0,0,0}, - {7887,7297,7294 ,7185,7187,7188 ,0,0,0}, {7288,7886,7884 ,7184,7183,7180 ,0,0,0}, - {7884,7296,7288 ,7180,7182,7184 ,0,0,0}, {7886,7290,7881 ,7183,7176,7175 ,0,0,0}, - {7883,7258,7287 ,7178,7174,7179 ,0,0,0}, {7283,7878,7882 ,7168,7170,7177 ,0,0,0}, - {7283,7882,7287 ,7168,7177,7179 ,0,0,0}, {7272,7875,7206 ,7166,7162,7164 ,0,0,0}, - {7880,7327,7268 ,7173,7169,7171 ,0,0,0}, {7327,7880,7878 ,7169,7173,7170 ,0,0,0}, - {7207,7206,7876 ,7200,7164,7163 ,0,0,0}, {7268,7207,7879 ,7171,7200,7172 ,0,0,0}, - {7879,7207,7876 ,7172,7200,7163 ,0,0,0}, {7877,7875,7272 ,7165,7162,7166 ,0,0,0}, - {7893,7877,7230 ,7201,7165,7167 ,0,0,0}, {7215,7872,7893 ,7156,7158,7201 ,0,0,0}, - {7215,7893,7230 ,7156,7201,7167 ,0,0,0}, {7329,7871,7873 ,7202,7155,7160 ,0,0,0}, - {7874,7228,7224 ,7161,7157,7159 ,0,0,0}, {7228,7874,7872 ,7157,7161,7158 ,0,0,0}, - {7329,7873,7224 ,7202,7160,7159 ,0,0,0}, {7871,7329,5508 ,7155,7202,4777 ,0,0,0}, - {5496,7884,5499 ,730,7015,730 ,0,0,0}, {7874,7873,7879 ,730,730,730 ,0,0,0}, - {5506,5502,7883 ,730,730,730 ,0,0,0}, {5500,7886,7881 ,730,730,7015 ,0,0,0}, - {7880,7879,7873 ,730,730,730 ,0,0,0}, {5507,7882,7871 ,730,730,730 ,0,0,0}, - {7877,7893,7872 ,730,730,730 ,0,0,0}, {7872,7874,7876 ,730,730,730 ,0,0,0}, - {7872,7876,7875 ,730,730,730 ,0,0,0}, {7877,7872,7875 ,730,730,730 ,0,0,0}, - {7873,7871,7880 ,730,730,730 ,0,0,0}, {7876,7874,7879 ,730,730,730 ,0,0,0}, - {7871,7878,7880 ,730,730,730 ,0,0,0}, {7882,5507,7883 ,730,730,730 ,0,0,0}, - {7878,7871,7882 ,730,730,730 ,0,0,0}, {7883,5502,7881 ,730,730,7015 ,0,0,0}, - {7883,5507,5506 ,730,730,730 ,0,0,0}, {7886,5500,5499 ,730,730,730 ,0,0,0}, - {7881,5502,5500 ,7015,730,730 ,0,0,0}, {7885,7884,5496 ,730,7015,730 ,0,0,0}, - {7884,7886,5499 ,7015,730,730 ,0,0,0}, {7887,5496,5495 ,7015,730,730 ,0,0,0}, - {5496,7887,7885 ,730,7015,730 ,0,0,0}, {7887,5495,7888 ,7015,730,730 ,0,0,0}, - {5488,7888,5492 ,730,730,730 ,0,0,0}, {7888,5495,5492 ,730,730,730 ,0,0,0}, - {5488,5487,7889 ,730,730,7015 ,0,0,0}, {7889,7888,5488 ,7015,730,730 ,0,0,0}, - {7889,5487,7890 ,7015,730,7015 ,0,0,0}, {5491,7891,7890 ,730,730,7015 ,0,0,0}, - {7890,5487,5491 ,7015,730,730 ,0,0,0}, {7891,5486,7892 ,730,730,7015 ,0,0,0}, - {5486,7891,5491 ,730,730,730 ,0,0,0}, {5482,5530,5486 ,730,7015,730 ,0,0,0}, - {7892,5486,5530 ,7015,730,7015 ,0,0,0}, {5529,5511,5527 ,7015,7015,730 ,0,0,0}, - {5482,5481,5529 ,730,730,7015 ,0,0,0}, {5523,5518,5521 ,7015,7015,7015 ,0,0,0}, - {5515,5524,5512 ,7015,7015,730 ,0,0,0}, {5523,5515,5517 ,7015,7015,7015 ,0,0,0}, - {5518,5523,5517 ,7015,7015,7015 ,0,0,0}, {5527,5512,5524 ,730,730,7015 ,0,0,0}, - {5524,5515,5523 ,7015,7015,7015 ,0,0,0}, {5529,5481,5511 ,7015,730,7015 ,0,0,0}, - {5527,5511,5512 ,730,7015,730 ,0,0,0}, {5529,5530,5482 ,7015,7015,730 ,0,0,0}, - {5458,7189,7894 ,126,7203,7204 ,0,0,0}, {7895,7896,7191 ,7205,7206,7207 ,0,0,0}, - {7241,7897,7309 ,7208,7209,7210 ,0,0,0}, {7330,7332,7898 ,7211,7212,7213 ,0,0,0}, - {7899,7202,7900 ,7214,7215,7216 ,0,0,0}, {7901,7902,7227 ,7217,7218,7219 ,0,0,0}, - {7252,7903,7370 ,7220,7221,7222 ,0,0,0}, {7221,7904,7905 ,7223,7224,7225 ,0,0,0}, - {7219,7220,7906 ,7226,7227,7228 ,0,0,0}, {7217,7211,7907 ,7229,7230,7231 ,0,0,0}, - {7908,7218,7217 ,7232,7233,7229 ,0,0,0}, {7209,7210,7909 ,7234,7235,7236 ,0,0,0}, - {7910,7211,7209 ,7237,7230,7234 ,0,0,0}, {7208,7911,7210 ,7238,7239,7235 ,0,0,0}, - {7909,7210,7911 ,7236,7235,7239 ,0,0,0}, {7912,7208,7201 ,7240,7238,7241 ,0,0,0}, - {7208,7912,7911 ,7238,7240,7239 ,0,0,0}, {7201,7200,7913 ,7241,7242,7243 ,0,0,0}, - {7913,7912,7201 ,7243,7240,7241 ,0,0,0}, {7197,7914,7200 ,7244,7245,7242 ,0,0,0}, - {7913,7200,7914 ,7243,7242,7245 ,0,0,0}, {7915,7197,5480 ,7246,7244,82 ,0,0,0}, - {7197,7915,7914 ,7244,7246,7245 ,0,0,0}, {5478,7915,5480 ,7011,7246,82 ,0,0,0}, - {7218,7908,7904 ,7233,7232,7224 ,0,0,0}, {7907,7211,7910 ,7231,7230,7237 ,0,0,0}, - {7910,7209,7909 ,7237,7234,7236 ,0,0,0}, {7907,7908,7217 ,7231,7232,7229 ,0,0,0}, - {7905,7220,7221 ,7225,7227,7223 ,0,0,0}, {7904,7221,7218 ,7224,7223,7233 ,0,0,0}, - {7220,7905,7906 ,7227,7225,7228 ,0,0,0}, {7901,7219,7906 ,7217,7226,7228 ,0,0,0}, - {7916,7898,7332 ,7247,7213,7212 ,0,0,0}, {7252,7227,7902 ,7220,7219,7218 ,0,0,0}, - {7219,7901,7227 ,7226,7217,7219 ,0,0,0}, {7370,7916,7332 ,7222,7247,7212 ,0,0,0}, - {7370,7903,7916 ,7222,7221,7247 ,0,0,0}, {7902,7903,7252 ,7218,7221,7220 ,0,0,0}, - {7191,7896,7241 ,7207,7206,7208 ,0,0,0}, {7898,7900,7330 ,7213,7216,7211 ,0,0,0}, - {7899,7204,7202 ,7214,7248,7215 ,0,0,0}, {7202,7330,7900 ,7215,7211,7216 ,0,0,0}, - {7204,7895,7191 ,7248,7205,7207 ,0,0,0}, {7204,7899,7895 ,7248,7214,7205 ,0,0,0}, - {7309,7897,7894 ,7210,7209,7204 ,0,0,0}, {7896,7897,7241 ,7206,7209,7208 ,0,0,0}, - {5458,5455,7189 ,126,4726,7203 ,0,0,0}, {7894,7189,7309 ,7204,7203,7210 ,0,0,0}, - {7909,7907,7910 ,7249,7250,7251 ,0,0,0}, {5460,7896,5462 ,726,726,7252 ,0,0,0}, - {7912,7907,7911 ,7253,7250,7253 ,0,0,0}, {7907,7909,7911 ,7250,7249,7253 ,0,0,0}, - {7908,7912,7913 ,7254,7253,7249 ,0,0,0}, {7912,7908,7907 ,7253,7254,7250 ,0,0,0}, - {7913,7914,7904 ,7249,7249,7255 ,0,0,0}, {7904,7908,7913 ,7255,7254,7249 ,0,0,0}, - {7914,7905,7904 ,7249,7256,7255 ,0,0,0}, {7915,5478,7905 ,7257,7257,7256 ,0,0,0}, - {7915,7905,7914 ,7257,7256,7249 ,0,0,0}, {7906,5477,7901 ,7258,726,7259 ,0,0,0}, - {7905,5478,7906 ,7256,7257,7258 ,0,0,0}, {7916,7903,5472 ,7260,7254,7257 ,0,0,0}, - {5474,7902,5477 ,7252,7261,726 ,0,0,0}, {5465,7900,5466 ,726,7262,7252 ,0,0,0}, - {5471,5468,7898 ,726,7252,7263 ,0,0,0}, {7897,5460,5459 ,7253,726,726 ,0,0,0}, - {7895,5465,5462 ,726,726,7252 ,0,0,0}, {5458,5435,5434 ,726,726,726 ,0,0,0}, - {5433,7894,5459 ,7264,7253,726 ,0,0,0}, {5439,5451,5452 ,726,7257,726 ,0,0,0}, - {5434,5440,5454 ,726,7264,726 ,0,0,0}, {5446,5448,5442 ,7257,726,7257 ,0,0,0}, - {5448,5451,5442 ,726,7257,7257 ,0,0,0}, {5446,5442,5444 ,7257,7257,7257 ,0,0,0}, - {5452,5440,5439 ,726,7264,726 ,0,0,0}, {5451,5439,5442 ,7257,726,7257 ,0,0,0}, - {5456,5434,5454 ,726,726,726 ,0,0,0}, {5454,5440,5452 ,726,7264,726 ,0,0,0}, - {5435,5458,7894 ,726,726,7253 ,0,0,0}, {5434,5456,5458 ,726,726,726 ,0,0,0}, - {5459,7894,7897 ,726,7253,7253 ,0,0,0}, {5435,7894,5433 ,726,7253,7264 ,0,0,0}, - {5462,7896,7895 ,7252,726,726 ,0,0,0}, {7896,5460,7897 ,726,726,7253 ,0,0,0}, - {7900,5465,7899 ,7262,726,7262 ,0,0,0}, {7899,5465,7895 ,7262,726,726 ,0,0,0}, - {5468,5466,7898 ,7252,7252,7263 ,0,0,0}, {5466,7900,7898 ,7252,7262,7263 ,0,0,0}, - {7898,7916,5471 ,7263,7260,726 ,0,0,0}, {5474,5472,7903 ,7252,7257,7254 ,0,0,0}, - {5472,5471,7916 ,7257,726,7260 ,0,0,0}, {5477,7902,7901 ,726,7261,7259 ,0,0,0}, - {5474,7903,7902 ,7252,7254,7261 ,0,0,0}, {5477,7906,5478 ,726,7258,7257 ,0,0,0}, - {5408,7917,7183 ,4799,7265,7266 ,0,0,0}, {7918,7185,7919 ,7267,7268,7269 ,0,0,0}, - {7184,7359,7920 ,7270,7271,7272 ,0,0,0}, {7366,7921,7193 ,7273,7274,7275 ,0,0,0}, - {7922,7923,7365 ,7276,7277,7278 ,0,0,0}, {7924,7363,7925 ,7279,7280,7281 ,0,0,0}, - {7383,7335,7926 ,7282,7283,7284 ,0,0,0}, {7384,7927,7928 ,7285,7286,7287 ,0,0,0}, - {7238,7929,7239 ,7288,7289,7290 ,0,0,0}, {7385,7930,7236 ,7291,7292,7293 ,0,0,0}, - {7931,7385,7194 ,7294,7291,7295 ,0,0,0}, {7235,7932,7386 ,7296,7297,7298 ,0,0,0}, - {7933,7235,7236 ,7299,7296,7293 ,0,0,0}, {7387,7386,7934 ,7300,7298,7301 ,0,0,0}, - {7932,7934,7386 ,7297,7301,7298 ,0,0,0}, {7935,7336,7387 ,7302,7303,7300 ,0,0,0}, - {7387,7934,7935 ,7300,7301,7302 ,0,0,0}, {7336,7936,7389 ,7303,7304,7305 ,0,0,0}, - {7936,7336,7935 ,7304,7303,7302 ,0,0,0}, {7388,7389,7937 ,7306,7305,7307 ,0,0,0}, - {7936,7937,7389 ,7304,7307,7305 ,0,0,0}, {7938,5430,7388 ,7308,21,7306 ,0,0,0}, - {7388,7937,7938 ,7306,7307,7308 ,0,0,0}, {5429,5430,7938 ,7309,21,7308 ,0,0,0}, - {7194,7928,7931 ,7295,7287,7294 ,0,0,0}, {7930,7933,7236 ,7292,7299,7293 ,0,0,0}, - {7933,7932,7235 ,7299,7297,7296 ,0,0,0}, {7930,7385,7931 ,7292,7291,7294 ,0,0,0}, - {7927,7384,7239 ,7286,7285,7290 ,0,0,0}, {7928,7194,7384 ,7287,7295,7285 ,0,0,0}, - {7239,7929,7927 ,7290,7289,7286 ,0,0,0}, {7924,7929,7238 ,7279,7289,7288 ,0,0,0}, - {7939,7193,7921 ,7310,7275,7274 ,0,0,0}, {7383,7925,7363 ,7282,7281,7280 ,0,0,0}, - {7238,7363,7924 ,7288,7280,7279 ,0,0,0}, {7335,7193,7939 ,7283,7275,7310 ,0,0,0}, - {7335,7939,7926 ,7283,7310,7284 ,0,0,0}, {7925,7383,7926 ,7281,7282,7284 ,0,0,0}, - {7185,7184,7919 ,7268,7270,7269 ,0,0,0}, {7921,7366,7923 ,7274,7273,7277 ,0,0,0}, - {7922,7365,7364 ,7276,7278,7311 ,0,0,0}, {7365,7923,7366 ,7278,7277,7273 ,0,0,0}, - {7364,7185,7918 ,7311,7268,7267 ,0,0,0}, {7364,7918,7922 ,7311,7267,7276 ,0,0,0}, - {7359,7917,7920 ,7271,7265,7272 ,0,0,0}, {7919,7184,7920 ,7269,7270,7272 ,0,0,0}, - {5408,7183,5405 ,4799,7266,7199 ,0,0,0}, {7917,7359,7183 ,7265,7271,7266 ,0,0,0}, - {7930,5400,5397 ,730,7312,6103 ,0,0,0}, {5393,7934,5396 ,7313,730,730 ,0,0,0}, - {5403,7927,5407 ,7314,7015,7315 ,0,0,0}, {7931,7928,5402 ,730,730,7316 ,0,0,0}, - {7926,7920,7925 ,730,7317,7313 ,0,0,0}, {7929,7917,5408 ,730,7318,7319 ,0,0,0}, - {7918,7919,7939 ,7320,7316,7316 ,0,0,0}, {7921,7923,7918 ,7320,6103,7320 ,0,0,0}, - {7922,7918,7923 ,6111,7320,6103 ,0,0,0}, {7926,7939,7919 ,730,7316,7316 ,0,0,0}, - {7939,7921,7918 ,7316,7320,7320 ,0,0,0}, {7917,7925,7920 ,7318,7313,7317 ,0,0,0}, - {7920,7926,7919 ,7317,730,7316 ,0,0,0}, {7929,7924,7917 ,730,7316,7318 ,0,0,0}, - {7917,7924,7925 ,7318,7316,7313 ,0,0,0}, {5407,7927,5408 ,7315,7015,7319 ,0,0,0}, - {5408,7927,7929 ,7319,7015,730 ,0,0,0}, {5402,7928,5403 ,7316,730,7314 ,0,0,0}, - {5403,7928,7927 ,7314,730,7015 ,0,0,0}, {7931,5402,5400 ,730,7316,7312 ,0,0,0}, - {5397,7933,7930 ,6103,7017,730 ,0,0,0}, {5400,7930,7931 ,7312,730,730 ,0,0,0}, - {7933,5397,7932 ,7017,6103,7017 ,0,0,0}, {5396,7934,7932 ,730,730,7017 ,0,0,0}, - {7932,5397,5396 ,7017,6103,730 ,0,0,0}, {7934,5393,5392 ,730,7313,730 ,0,0,0}, - {5392,5388,7935 ,730,7316,730 ,0,0,0}, {7935,7934,5392 ,730,730,730 ,0,0,0}, - {7936,5388,5390 ,7016,7316,7313 ,0,0,0}, {5388,7936,7935 ,7316,7016,730 ,0,0,0}, - {5384,7937,5390 ,7015,730,7313 ,0,0,0}, {7936,5390,7937 ,7016,7313,730 ,0,0,0}, - {7938,5384,5429 ,730,7015,730 ,0,0,0}, {7938,7937,5384 ,730,730,7015 ,0,0,0}, - {5384,5386,5429 ,7015,7015,730 ,0,0,0}, {5427,5409,5424 ,730,730,730 ,0,0,0}, - {5386,5382,5427 ,7015,730,730 ,0,0,0}, {5421,5417,5418 ,730,730,7017 ,0,0,0}, - {5412,5423,5411 ,7015,7016,730 ,0,0,0}, {5421,5412,5415 ,730,7015,730 ,0,0,0}, - {5417,5421,5415 ,730,730,730 ,0,0,0}, {5424,5411,5423 ,730,730,7016 ,0,0,0}, - {5423,5412,5421 ,7016,7015,730 ,0,0,0}, {5427,5382,5409 ,730,730,730 ,0,0,0}, - {5424,5409,5411 ,730,730,730 ,0,0,0}, {5427,5429,5386 ,730,730,7015 ,0,0,0}, - {5940,7940,7941 ,7321,1711,7322 ,0,0,0}, {5930,5927,7942 ,7323,7324,7325 ,0,0,0}, - {7943,5929,5938 ,7326,7327,7328 ,0,0,0}, {7756,7944,7755 ,7329,7330,7331 ,0,0,0}, - {7945,7946,5934 ,7332,7333,7334 ,0,0,0}, {7753,7947,7752 ,7335,7336,7337 ,0,0,0}, - {7947,7754,7948 ,7336,7338,7339 ,0,0,0}, {7751,7752,7949 ,7340,7337,7341 ,0,0,0}, - {7947,7949,7752 ,7336,7341,7337 ,0,0,0}, {7950,7750,7751 ,1359,1359,7340 ,0,0,0}, - {7751,7949,7950 ,7340,7341,1359 ,0,0,0}, {7948,7754,7755 ,7339,7338,7331 ,0,0,0}, - {7947,7753,7754 ,7336,7335,7338 ,0,0,0}, {7944,7756,7757 ,7330,7329,7342 ,0,0,0}, - {7944,7948,7755 ,7330,7339,7331 ,0,0,0}, {7757,5934,7946 ,7342,7334,7333 ,0,0,0}, - {7946,7944,7757 ,7333,7330,7342 ,0,0,0}, {5933,7942,7945 ,7343,7325,7332 ,0,0,0}, - {5933,7945,5934 ,7343,7332,7334 ,0,0,0}, {5927,7951,7942 ,7324,7344,7325 ,0,0,0}, - {5933,5930,7942 ,7343,7323,7325 ,0,0,0}, {7943,7951,5929 ,7326,7344,7327 ,0,0,0}, - {5927,5929,7951 ,7324,7327,7344 ,0,0,0}, {7943,5937,7941 ,7326,7345,7322 ,0,0,0}, - {5938,5937,7943 ,7328,7345,7326 ,0,0,0}, {7940,5940,5906 ,1711,7321,1711 ,0,0,0}, - {7941,5937,5940 ,7322,7345,7321 ,0,0,0}, {7940,5908,7952 ,2197,7346,7346 ,0,0,0}, - {5908,7940,5906 ,7346,2197,2197 ,0,0,0}, {7953,7954,7760 ,1435,7347,7348 ,0,0,0}, - {7761,7759,7955 ,7349,7350,7351 ,0,0,0}, {7758,7763,7956 ,7352,7353,7354 ,0,0,0}, - {5919,7957,5917 ,7355,7356,7357 ,0,0,0}, {7958,7959,5925 ,7358,7359,7360 ,0,0,0}, - {5913,7960,5911 ,7361,7362,7363 ,0,0,0}, {5913,5915,7960 ,7361,7364,7362 ,0,0,0}, - {5910,5911,7961 ,7365,7363,7366 ,0,0,0}, {7960,7961,5911 ,7362,7366,7363 ,0,0,0}, - {7952,5908,5910 ,1790,1790,7365 ,0,0,0}, {5910,7961,7952 ,7365,7366,1790 ,0,0,0}, - {5917,7962,5915 ,7357,7367,7364 ,0,0,0}, {7960,5915,7962 ,7362,7364,7367 ,0,0,0}, - {7758,7963,7759 ,7352,7368,7350 ,0,0,0}, {5919,5923,7957 ,7355,7369,7356 ,0,0,0}, - {7957,7962,5917 ,7356,7367,7357 ,0,0,0}, {5923,5925,7959 ,7369,7360,7359 ,0,0,0}, - {7959,7957,5923 ,7359,7356,7369 ,0,0,0}, {7958,5925,7762 ,7358,7360,7370 ,0,0,0}, - {7955,7762,7761 ,7351,7370,7349 ,0,0,0}, {7762,7955,7958 ,7370,7351,7358 ,0,0,0}, - {7963,7955,7759 ,7368,7351,7350 ,0,0,0}, {7956,7764,7954 ,7354,7371,7347 ,0,0,0}, - {7764,7956,7763 ,7371,7354,7353 ,0,0,0}, {7963,7758,7956 ,7368,7352,7354 ,0,0,0}, - {7953,7760,7749 ,1435,7348,1435 ,0,0,0}, {7954,7764,7760 ,7347,7371,7348 ,0,0,0}, - {7749,7950,7953 ,1398,7372,1398 ,0,0,0}, {7950,7749,7750 ,7372,1398,7372 ,0,0,0}, - {7950,7954,7953 ,7373,730,730 ,0,0,0}, {7951,7960,7962 ,730,730,730 ,0,0,0}, - {7948,7955,7963 ,7374,7375,7375 ,0,0,0}, {7963,7956,7947 ,7375,730,7373 ,0,0,0}, - {7946,7959,7958 ,7375,7375,7375 ,0,0,0}, {7958,7955,7944 ,7375,7375,730 ,0,0,0}, - {7962,7957,7942 ,730,730,7376 ,0,0,0}, {7957,7959,7945 ,730,7375,7375 ,0,0,0}, - {7941,7961,7943 ,730,730,730 ,0,0,0}, {7960,7943,7961 ,730,730,730 ,0,0,0}, - {7941,7940,7952 ,730,730,730 ,0,0,0}, {7952,7961,7941 ,730,730,730 ,0,0,0}, - {7962,7942,7951 ,730,7376,730 ,0,0,0}, {7960,7951,7943 ,730,730,730 ,0,0,0}, - {7957,7945,7942 ,730,7375,7376 ,0,0,0}, {7959,7946,7945 ,7375,7375,7375 ,0,0,0}, - {7958,7944,7946 ,7375,730,7375 ,0,0,0}, {7955,7948,7944 ,7375,7374,730 ,0,0,0}, - {7963,7947,7948 ,7375,7373,7374 ,0,0,0}, {7956,7949,7947 ,730,730,7373 ,0,0,0}, - {7950,7949,7954 ,7373,730,730 ,0,0,0}, {7956,7954,7949 ,730,730,730 ,0,0,0}, - {7964,5838,7965 ,7377,1435,1435 ,0,0,0}, {7966,5854,7967 ,7378,7379,7379 ,0,0,0}, - {7968,5829,5833 ,7380,7380,7377 ,0,0,0}, {5861,7969,7970 ,7381,7381,7382 ,0,0,0}, - {5856,7971,5859 ,7378,7383,7383 ,0,0,0}, {5868,7972,5870 ,7384,7385,7385 ,0,0,0}, - {7973,5868,5863 ,7384,7384,7382 ,0,0,0}, {5873,5870,7974 ,7386,7385,7386 ,0,0,0}, - {7972,7974,5870 ,7385,7386,7385 ,0,0,0}, {7975,5876,5873 ,7387,7388,7386 ,0,0,0}, - {5873,7974,7975 ,7386,7386,7387 ,0,0,0}, {7970,7973,5863 ,7382,7384,7382 ,0,0,0}, - {7973,7972,5868 ,7384,7385,7384 ,0,0,0}, {5859,7969,5861 ,7383,7381,7381 ,0,0,0}, - {5861,7970,5863 ,7381,7382,7382 ,0,0,0}, {5856,7966,7971 ,7378,7378,7383 ,0,0,0}, - {5859,7971,7969 ,7383,7383,7381 ,0,0,0}, {5854,5829,7967 ,7379,7380,7379 ,0,0,0}, - {5856,5854,7966 ,7378,7379,7378 ,0,0,0}, {7968,5833,7964 ,7380,7377,7377 ,0,0,0}, - {7967,5829,7968 ,7379,7380,7380 ,0,0,0}, {5838,7964,5833 ,1435,7377,7377 ,0,0,0}, - {7965,5835,7976 ,1398,1398,1398 ,0,0,0}, {5835,7965,5838 ,1398,1398,1398 ,0,0,0}, - {7977,7978,5960 ,7389,7390,7390 ,0,0,0}, {7979,5956,7980 ,7391,7391,7392 ,0,0,0}, - {5958,5867,7981 ,7392,7393,7393 ,0,0,0}, {5948,7982,7983 ,7394,7395,7394 ,0,0,0}, - {5953,7984,5952 ,7396,7396,7395 ,0,0,0}, {5943,7985,7986 ,7397,7398,7397 ,0,0,0}, - {7985,5943,5947 ,7398,7397,7398 ,0,0,0}, {7987,5941,7986 ,7399,7399,7397 ,0,0,0}, - {5943,7986,5941 ,7397,7397,7399 ,0,0,0}, {7987,7976,5835 ,7399,1359,1359 ,0,0,0}, - {5835,5941,7987 ,1359,7399,7399 ,0,0,0}, {7980,5958,7981 ,7392,7392,7393 ,0,0,0}, - {5947,5948,7983 ,7398,7394,7394 ,0,0,0}, {7983,7985,5947 ,7394,7398,7398 ,0,0,0}, - {7982,5948,5952 ,7395,7394,7395 ,0,0,0}, {7979,7984,5953 ,7391,7396,7396 ,0,0,0}, - {5952,7984,7982 ,7395,7396,7395 ,0,0,0}, {5958,7980,5956 ,7392,7392,7391 ,0,0,0}, - {5953,5956,7979 ,7396,7391,7391 ,0,0,0}, {5960,7978,5867 ,7390,7390,7393 ,0,0,0}, - {5867,7978,7981 ,7393,7390,7393 ,0,0,0}, {7977,5960,5826 ,7389,7390,7400 ,0,0,0}, - {7975,7977,5826 ,7401,7402,7402 ,0,0,0}, {7975,5826,5876 ,7401,7402,7401 ,0,0,0}, - {7987,7968,7964 ,7403,7403,7404 ,0,0,0}, {7973,7981,7972 ,7375,7375,730 ,0,0,0}, - {7969,7979,7970 ,7375,730,730 ,0,0,0}, {7980,7973,7970 ,730,7375,730 ,0,0,0}, - {7966,7982,7971 ,7373,7375,7373 ,0,0,0}, {7984,7969,7971 ,730,7375,7373 ,0,0,0}, - {7967,7986,7985 ,7405,7406,730 ,0,0,0}, {7983,7966,7967 ,7373,7373,7405 ,0,0,0}, - {7987,7986,7968 ,7403,7406,7403 ,0,0,0}, {7964,7965,7976 ,7404,730,7407 ,0,0,0}, - {7976,7987,7964 ,7407,7403,7404 ,0,0,0}, {7986,7967,7968 ,7406,7405,7403 ,0,0,0}, - {7983,7967,7985 ,7373,7405,730 ,0,0,0}, {7982,7966,7983 ,7375,7373,7373 ,0,0,0}, - {7984,7971,7982 ,730,7373,7375 ,0,0,0}, {7979,7969,7984 ,730,7375,730 ,0,0,0}, - {7980,7970,7979 ,730,730,730 ,0,0,0}, {7981,7973,7980 ,7375,7375,730 ,0,0,0}, - {7978,7972,7981 ,730,730,7375 ,0,0,0}, {7974,7978,7977 ,7373,730,730 ,0,0,0}, - {7978,7974,7972 ,730,7373,730 ,0,0,0}, {7974,7977,7975 ,7373,730,7405 ,0,0,0}, - {7988,7747,7989 ,7408,7409,7410 ,0,0,0}, {7990,7745,7991 ,7411,7412,7412 ,0,0,0}, - {7992,7744,7748 ,7413,7413,7408 ,0,0,0}, {7765,7993,7994 ,7414,7414,7415 ,0,0,0}, - {7746,7995,7766 ,7411,7416,7416 ,0,0,0}, {7742,7996,7743 ,7417,7418,7418 ,0,0,0}, - {7997,7742,7741 ,7417,7417,7415 ,0,0,0}, {7739,7743,7998 ,7419,7418,7419 ,0,0,0}, - {7996,7998,7743 ,7418,7419,7418 ,0,0,0}, {7999,7738,7739 ,1790,1790,7419 ,0,0,0}, - {7739,7998,7999 ,7419,7419,1790 ,0,0,0}, {7994,7997,7741 ,7415,7417,7415 ,0,0,0}, - {7997,7996,7742 ,7417,7418,7417 ,0,0,0}, {7766,7993,7765 ,7416,7414,7414 ,0,0,0}, - {7765,7994,7741 ,7414,7415,7415 ,0,0,0}, {7746,7990,7995 ,7411,7411,7416 ,0,0,0}, - {7766,7995,7993 ,7416,7416,7414 ,0,0,0}, {7745,7744,7991 ,7412,7413,7412 ,0,0,0}, - {7746,7745,7990 ,7411,7412,7411 ,0,0,0}, {7992,7748,7988 ,7413,7408,7408 ,0,0,0}, - {7991,7744,7992 ,7412,7413,7413 ,0,0,0}, {7747,7988,7748 ,7409,7408,7408 ,0,0,0}, - {7768,8000,7989 ,7420,7420,7421 ,0,0,0}, {7768,7989,7747 ,7420,7421,7421 ,0,0,0}, - {8001,8002,7777 ,1711,7422,7422 ,0,0,0}, {8003,7775,8004 ,7423,7423,7424 ,0,0,0}, - {7776,7767,8005 ,7424,7425,7425 ,0,0,0}, {7772,8006,8007 ,7426,7427,7426 ,0,0,0}, - {7774,8008,7773 ,7428,7428,7427 ,0,0,0}, {7770,8009,8010 ,7429,7430,7429 ,0,0,0}, - {8009,7770,7771 ,7430,7429,7430 ,0,0,0}, {8011,7769,8010 ,7431,7431,7429 ,0,0,0}, - {7770,8010,7769 ,7429,7429,7431 ,0,0,0}, {8011,8000,7768 ,7431,7432,82 ,0,0,0}, - {7768,7769,8011 ,82,7431,7431 ,0,0,0}, {8004,7776,8005 ,7424,7424,7425 ,0,0,0}, - {7771,7772,8007 ,7430,7426,7426 ,0,0,0}, {8007,8009,7771 ,7426,7430,7430 ,0,0,0}, - {8006,7772,7773 ,7427,7426,7427 ,0,0,0}, {8003,8008,7774 ,7423,7428,7428 ,0,0,0}, - {7773,8008,8006 ,7427,7428,7427 ,0,0,0}, {7776,8004,7775 ,7424,7424,7423 ,0,0,0}, - {7774,7775,8003 ,7428,7423,7423 ,0,0,0}, {7777,8002,7767 ,7422,7422,7425 ,0,0,0}, - {7767,8002,8005 ,7425,7422,7425 ,0,0,0}, {8001,7777,7740 ,1711,7422,1711 ,0,0,0}, - {7740,7999,8001 ,2197,2197,2197 ,0,0,0}, {7999,7740,7738 ,2197,2197,2197 ,0,0,0}, - {7999,8002,8001 ,7433,730,730 ,0,0,0}, {7990,7991,8007 ,7375,7375,730 ,0,0,0}, - {7994,8004,7997 ,730,730,730 ,0,0,0}, {8004,8005,7996 ,730,7376,730 ,0,0,0}, - {7995,8008,7993 ,730,730,7376 ,0,0,0}, {8003,7994,7993 ,730,730,7376 ,0,0,0}, - {8006,7995,7990 ,7376,730,7375 ,0,0,0}, {8010,7992,7988 ,7375,7376,7376 ,0,0,0}, - {7991,7992,8009 ,7375,7376,7375 ,0,0,0}, {7989,8011,7988 ,7374,7376,7376 ,0,0,0}, - {8010,7988,8011 ,7375,7376,7376 ,0,0,0}, {8000,8011,7989 ,730,7376,7374 ,0,0,0}, - {8009,7992,8010 ,7375,7376,7375 ,0,0,0}, {8007,7991,8009 ,730,7375,7375 ,0,0,0}, - {8006,7990,8007 ,7376,7375,730 ,0,0,0}, {8008,7995,8006 ,730,730,7376 ,0,0,0}, - {8003,7993,8008 ,730,7376,730 ,0,0,0}, {8004,7994,8003 ,730,730,730 ,0,0,0}, - {8004,7996,7997 ,730,730,730 ,0,0,0}, {8005,7998,7996 ,7376,7433,730 ,0,0,0}, - {7999,7998,8002 ,7433,7433,730 ,0,0,0}, {8005,8002,7998 ,7376,730,7433 ,0,0,0}, - {7175,5348,5346 ,7434,4326,7435 ,0,0,0}, {7347,7275,7172 ,7436,7437,7438 ,0,0,0}, - {7176,7274,7177 ,7439,7440,7441 ,0,0,0}, {7182,7170,7318 ,7442,7443,7444 ,0,0,0}, - {7180,7323,7381 ,7445,7446,7447 ,0,0,0}, {7326,7325,7160 ,7448,7449,7450 ,0,0,0}, - {7310,7178,7179 ,7451,7452,7453 ,0,0,0}, {7154,7153,7225 ,7454,7455,7456 ,0,0,0}, - {7156,7214,7216 ,7457,7458,7459 ,0,0,0}, {7144,7261,7148 ,7460,7461,7462 ,0,0,0}, - {7267,7226,7152 ,7463,7464,7465 ,0,0,0}, {7259,7186,7138 ,7466,7467,7468 ,0,0,0}, - {7262,7140,7186 ,7469,7470,7467 ,0,0,0}, {7331,7135,7142 ,7471,7472,7473 ,0,0,0}, - {7139,7135,7260 ,7474,7472,7475 ,0,0,0}, {7254,7143,7147 ,7476,7477,7478 ,0,0,0}, - {7142,7143,7253 ,7473,7477,7479 ,0,0,0}, {7150,7237,7147 ,7480,7481,7478 ,0,0,0}, - {7254,7147,7237 ,7476,7478,7481 ,0,0,0}, {7150,7159,7229 ,7480,7482,7483 ,0,0,0}, - {7229,7237,7150 ,7483,7481,7480 ,0,0,0}, {7203,7159,7158 ,7484,7482,7485 ,0,0,0}, - {7159,7203,7229 ,7482,7484,7483 ,0,0,0}, {7162,7192,7158 ,7486,7487,7485 ,0,0,0}, - {7203,7158,7192 ,7484,7485,7487 ,0,0,0}, {7162,7167,7190 ,7486,7488,7489 ,0,0,0}, - {7190,7192,7162 ,7489,7487,7486 ,0,0,0}, {7240,7167,7166 ,7490,7488,7491 ,0,0,0}, - {7167,7240,7190 ,7488,7490,7489 ,0,0,0}, {5380,7188,7166 ,82,7492,7491 ,0,0,0}, - {7240,7166,7188 ,7490,7491,7492 ,0,0,0}, {5379,7188,5380 ,82,7492,82 ,0,0,0}, - {7253,7331,7142 ,7479,7471,7473 ,0,0,0}, {7253,7143,7254 ,7479,7477,7476 ,0,0,0}, - {7139,7260,7259 ,7474,7475,7466 ,0,0,0}, {7260,7135,7331 ,7475,7472,7471 ,0,0,0}, - {7186,7140,7138 ,7467,7470,7468 ,0,0,0}, {7259,7138,7139 ,7466,7468,7474 ,0,0,0}, - {7262,7261,7144 ,7469,7461,7460 ,0,0,0}, {7262,7144,7140 ,7469,7460,7470 ,0,0,0}, - {7148,7267,7152 ,7462,7463,7465 ,0,0,0}, {7261,7267,7148 ,7461,7463,7462 ,0,0,0}, - {7153,7226,7225 ,7455,7464,7456 ,0,0,0}, {7152,7226,7153 ,7465,7464,7455 ,0,0,0}, - {7156,7154,7214 ,7457,7454,7458 ,0,0,0}, {7154,7225,7214 ,7454,7456,7458 ,0,0,0}, - {7326,7161,7216 ,7448,7493,7459 ,0,0,0}, {7161,7156,7216 ,7493,7457,7459 ,0,0,0}, - {7325,7179,7160 ,7449,7453,7450 ,0,0,0}, {7326,7160,7161 ,7448,7450,7493 ,0,0,0}, - {7310,7319,7178 ,7451,7494,7452 ,0,0,0}, {7325,7310,7179 ,7449,7451,7453 ,0,0,0}, - {7318,7170,7319 ,7444,7443,7494 ,0,0,0}, {7178,7319,7170 ,7452,7494,7443 ,0,0,0}, - {7180,7182,7323 ,7445,7442,7446 ,0,0,0}, {7182,7318,7323 ,7442,7444,7446 ,0,0,0}, - {7347,7171,7381 ,7436,7495,7447 ,0,0,0}, {7171,7180,7381 ,7495,7445,7447 ,0,0,0}, - {7275,7176,7172 ,7437,7439,7438 ,0,0,0}, {7347,7172,7171 ,7436,7438,7495 ,0,0,0}, - {7274,7276,7177 ,7440,7496,7441 ,0,0,0}, {7275,7274,7176 ,7437,7440,7439 ,0,0,0}, - {5348,7175,7276 ,4326,7434,7496 ,0,0,0}, {7177,7276,7175 ,7441,7496,7434 ,0,0,0}, - {8012,5296,5295 ,7497,763,7498 ,0,0,0}, {8013,7168,8014 ,7499,7500,7501 ,0,0,0}, - {8015,7181,7173 ,7502,7503,7504 ,0,0,0}, {8016,8017,7157 ,7505,7506,7507 ,0,0,0}, - {8018,8019,7165 ,7508,7509,7510 ,0,0,0}, {8020,7145,8021 ,7511,7512,7513 ,0,0,0}, - {7149,8022,8021 ,7514,7515,7513 ,0,0,0}, {8023,7137,8024 ,7516,7517,7518 ,0,0,0}, - {7136,8020,8024 ,7519,7511,7518 ,0,0,0}, {8025,7151,7146 ,7520,7521,7522 ,0,0,0}, - {7146,8023,8025 ,7522,7516,7520 ,0,0,0}, {7151,8026,7163 ,7521,7523,7524 ,0,0,0}, - {8026,7151,8025 ,7523,7521,7520 ,0,0,0}, {7164,7163,8027 ,7525,7524,7526 ,0,0,0}, - {8026,8027,7163 ,7523,7526,7524 ,0,0,0}, {5314,7164,8028 ,761,7525,7527 ,0,0,0}, - {7164,8027,8028 ,7525,7526,7527 ,0,0,0}, {5313,7164,5314 ,761,7525,761 ,0,0,0}, - {7136,8024,7137 ,7519,7518,7517 ,0,0,0}, {7146,7137,8023 ,7522,7517,7516 ,0,0,0}, - {7141,7145,8020 ,7528,7512,7511 ,0,0,0}, {7136,7141,8020 ,7519,7528,7511 ,0,0,0}, - {7155,8022,7149 ,7529,7515,7514 ,0,0,0}, {7145,7149,8021 ,7512,7514,7513 ,0,0,0}, - {7157,8017,7155 ,7507,7506,7529 ,0,0,0}, {8022,7155,8017 ,7515,7529,7506 ,0,0,0}, - {7165,8019,7157 ,7510,7509,7507 ,0,0,0}, {8019,8016,7157 ,7509,7505,7507 ,0,0,0}, - {7169,8013,8018 ,7530,7499,7508 ,0,0,0}, {7169,8018,7165 ,7530,7508,7510 ,0,0,0}, - {7168,7181,8014 ,7500,7503,7501 ,0,0,0}, {7169,7168,8013 ,7530,7500,7499 ,0,0,0}, - {8015,7173,8012 ,7502,7504,7497 ,0,0,0}, {8014,7181,8015 ,7501,7503,7502 ,0,0,0}, - {5296,8012,7174 ,763,7497,7531 ,0,0,0}, {8012,7173,7174 ,7497,7504,7531 ,0,0,0}, - {8027,8026,8025 ,7015,7532,7017 ,0,0,0}, {5300,8014,8015 ,7016,7015,7015 ,0,0,0}, - {8020,8023,8024 ,7533,7534,7535 ,0,0,0}, {8025,8020,8027 ,7017,7533,7015 ,0,0,0}, - {8027,8020,8028 ,7015,7533,7016 ,0,0,0}, {8020,8025,8023 ,7533,7017,7534 ,0,0,0}, - {8021,8028,8020 ,7536,7016,7533 ,0,0,0}, {8028,8022,5314 ,7016,730,7015 ,0,0,0}, - {8022,8028,8021 ,730,7016,7536 ,0,0,0}, {8019,5309,8016 ,7535,730,7320 ,0,0,0}, - {8022,8017,5314 ,730,6104,7015 ,0,0,0}, {8013,5303,8018 ,730,730,7534 ,0,0,0}, - {5306,8019,8018 ,7537,7535,7534 ,0,0,0}, {8012,5295,5299 ,7016,7015,730 ,0,0,0}, - {8015,5301,5300 ,7015,730,7016 ,0,0,0}, {5292,5280,5294 ,730,730,730 ,0,0,0}, - {5294,5278,5295 ,730,7016,7015 ,0,0,0}, {5291,5288,5292 ,730,730,730 ,0,0,0}, - {5280,5286,5285 ,730,7016,7016 ,0,0,0}, {5288,5280,5292 ,730,730,730 ,0,0,0}, - {5280,5279,5294 ,730,730,730 ,0,0,0}, {5280,5288,5286 ,730,730,7016 ,0,0,0}, - {5278,5299,5295 ,7016,730,7015 ,0,0,0}, {5279,5278,5294 ,730,7016,730 ,0,0,0}, - {5301,8015,5299 ,730,7015,730 ,0,0,0}, {5299,8015,8012 ,730,7015,7016 ,0,0,0}, - {5300,5303,8014 ,7016,730,7015 ,0,0,0}, {8018,5303,5305 ,7534,730,7537 ,0,0,0}, - {8014,5303,8013 ,7015,730,730 ,0,0,0}, {8018,5305,5306 ,7534,7537,7537 ,0,0,0}, - {5309,8017,8016 ,730,6104,7320 ,0,0,0}, {8019,5306,5309 ,7535,7537,730 ,0,0,0}, - {5314,8017,5311 ,7015,6104,730 ,0,0,0}, {5309,5311,8017 ,730,730,6104 ,0,0,0}, - {6223,6222,8029 ,7538,7539,7540 ,0,0,0}, {8030,6214,6223 ,7541,7542,7538 ,0,0,0}, - {8030,8031,6214 ,7541,82,7542 ,0,0,0}, {8029,8030,6223 ,7540,7541,7538 ,0,0,0}, - {6222,6593,8032 ,7539,7543,7544 ,0,0,0}, {6252,6251,8033 ,7545,7546,7547 ,0,0,0}, - {8034,8032,6593 ,7548,7544,7543 ,0,0,0}, {6593,6252,8034 ,7543,7545,7548 ,0,0,0}, - {8033,8034,6252 ,7547,7548,7545 ,0,0,0}, {6222,8032,8029 ,7539,7544,7540 ,0,0,0}, - {8033,6251,8035 ,7547,7546,7549 ,0,0,0}, {6250,8036,8035 ,7550,7551,7549 ,0,0,0}, - {8035,6251,6250 ,7549,7546,7550 ,0,0,0}, {8036,6250,6225 ,7551,7550,7552 ,0,0,0}, - {6238,8037,6225 ,7553,7554,7552 ,0,0,0}, {6238,6228,8038 ,7553,7555,7556 ,0,0,0}, - {6238,8038,8037 ,7553,7556,7554 ,0,0,0}, {8039,6219,8040 ,7557,7558,7559 ,0,0,0}, - {8038,6228,8039 ,7556,7555,7557 ,0,0,0}, {8039,6228,6219 ,7557,7555,7558 ,0,0,0}, - {6219,6221,8040 ,7558,7559,7559 ,0,0,0}, {8036,6225,8037 ,7551,7552,7554 ,0,0,0}, - {6215,8031,8041 ,7560,82,7561 ,0,0,0}, {8031,6215,6214 ,82,7560,7542 ,0,0,0}, - {8042,6257,8041 ,7562,7563,7561 ,0,0,0}, {6215,8041,6257 ,7560,7561,7563 ,0,0,0}, - {8042,8043,6471 ,7562,7564,7565 ,0,0,0}, {6471,6257,8042 ,7565,7563,7562 ,0,0,0}, - {6296,8043,8044 ,7566,7564,7567 ,0,0,0}, {8043,6296,6471 ,7564,7566,7565 ,0,0,0}, - {8045,6297,8044 ,7568,7569,7567 ,0,0,0}, {6296,8044,6297 ,7566,7567,7569 ,0,0,0}, - {8045,8046,6293 ,7568,7570,7571 ,0,0,0}, {6293,6297,8045 ,7571,7569,7568 ,0,0,0}, - {6261,8046,8047 ,7572,7570,7573 ,0,0,0}, {8046,6261,6293 ,7570,7572,7571 ,0,0,0}, - {8048,6280,8047 ,7574,7575,7573 ,0,0,0}, {6261,8047,6280 ,7572,7573,7575 ,0,0,0}, - {8048,8049,6281 ,7574,7576,7577 ,0,0,0}, {6281,6280,8048 ,7577,7575,7574 ,0,0,0}, - {6283,8049,8050 ,7578,7576,7579 ,0,0,0}, {8049,6283,6281 ,7576,7578,7577 ,0,0,0}, - {6283,8050,6284 ,7578,7579,7580 ,0,0,0}, {6284,8050,8051 ,7580,7579,7580 ,0,0,0}, - {7109,7115,8051 ,7581,7581,7581 ,0,0,0}, {8051,5721,7100 ,7581,7581,7581 ,0,0,0}, - {7100,7106,8051 ,7581,7581,7581 ,0,0,0}, {7120,8051,7115 ,7581,7581,7581 ,0,0,0}, - {7106,7109,8051 ,7581,7581,7581 ,0,0,0}, {7124,7083,8051 ,7581,7581,7581 ,0,0,0}, - {7124,8051,7120 ,7581,7581,7581 ,0,0,0}, {7083,7095,8051 ,7581,7581,7581 ,0,0,0}, - {6284,8051,7094 ,7581,7581,7581 ,0,0,0}, {7095,7094,8051 ,7581,7581,7581 ,0,0,0}, - {8040,6221,6667 ,7582,7582,7582 ,0,0,0}, {6667,6694,8040 ,7582,7582,7582 ,0,0,0}, - {8040,6680,6660 ,7582,7582,7582 ,0,0,0}, {6694,6680,8040 ,7582,7582,7582 ,0,0,0}, - {8040,6662,6676 ,7582,7582,7582 ,0,0,0}, {6660,6662,8040 ,7582,7582,7582 ,0,0,0}, - {8040,6669,6653 ,7582,7582,7582 ,0,0,0}, {6676,6669,8040 ,7582,7582,7582 ,0,0,0}, - {6657,8040,6652 ,7582,7582,7582 ,0,0,0}, {6653,6652,8040 ,7582,7582,7582 ,0,0,0}, - {8048,5726,5724 ,726,726,726 ,0,0,0}, {8041,8031,5726 ,726,726,726 ,0,0,0}, - {8050,8049,5724 ,726,726,726 ,0,0,0}, {5724,8049,8048 ,726,726,726 ,0,0,0}, - {5724,5718,8051 ,726,726,726 ,0,0,0}, {8051,8050,5724 ,726,726,726 ,0,0,0}, - {5727,5721,8051 ,7583,7583,726 ,0,0,0}, {5727,8051,5718 ,7583,726,726 ,0,0,0}, - {8048,8047,5726 ,726,726,726 ,0,0,0}, {5726,8046,8045 ,726,726,726 ,0,0,0}, - {8047,8046,5726 ,726,726,726 ,0,0,0}, {5726,8044,8043 ,726,726,726 ,0,0,0}, - {8045,8044,5726 ,726,726,726 ,0,0,0}, {5726,8042,8041 ,726,726,726 ,0,0,0}, - {8043,8042,5726 ,726,726,726 ,0,0,0}, {8030,5726,8031 ,726,726,726 ,0,0,0}, - {8029,8032,5726 ,726,726,726 ,0,0,0}, {8029,5726,8030 ,726,726,726 ,0,0,0}, - {8034,8033,5726 ,726,726,726 ,0,0,0}, {8034,5726,8032 ,726,726,726 ,0,0,0}, - {8035,8036,5726 ,726,726,726 ,0,0,0}, {8035,5726,8033 ,726,726,726 ,0,0,0}, - {8037,8038,5726 ,726,726,726 ,0,0,0}, {8037,5726,8036 ,726,726,726 ,0,0,0}, - {5726,8038,7778 ,726,726,726 ,0,0,0}, {8040,7778,8039 ,726,726,726 ,0,0,0}, - {7778,8038,8039 ,726,726,726 ,0,0,0}, {7779,7778,8040 ,726,726,726 ,0,0,0}, - {6657,7791,8040 ,7583,726,726 ,0,0,0}, {7779,8040,7791 ,726,726,726 ,0,0,0}, - {5256,8052,6510 ,7584,7585,7586 ,0,0,0}, {8053,6483,8054 ,7587,7588,7589 ,0,0,0}, - {6521,6443,8055 ,7590,7591,7592 ,0,0,0}, {6210,8056,6472 ,7593,7594,7595 ,0,0,0}, - {8057,8058,6213 ,4334,7596,7597 ,0,0,0}, {8059,6218,8060 ,7598,7599,7600 ,0,0,0}, - {6217,6475,8061 ,7601,7602,7603 ,0,0,0}, {6275,6267,8062 ,7604,7605,7606 ,0,0,0}, - {6271,8063,6267 ,7607,7608,7605 ,0,0,0}, {6272,8064,8065 ,7609,7610,7611 ,0,0,0}, - {6275,8066,6274 ,7604,7612,7613 ,0,0,0}, {8067,6285,8065 ,7614,7615,7611 ,0,0,0}, - {6272,8065,6285 ,7609,7611,7615 ,0,0,0}, {8067,8068,6278 ,7614,7616,7617 ,0,0,0}, - {6278,6285,8067 ,7617,7615,7614 ,0,0,0}, {6287,8068,8069 ,7618,7616,7619 ,0,0,0}, - {8068,6287,6278 ,7616,7618,7617 ,0,0,0}, {8070,6247,8069 ,7620,7621,7619 ,0,0,0}, - {6287,8069,6247 ,7618,7619,7621 ,0,0,0}, {8070,5275,5276 ,7620,7622,4289 ,0,0,0}, - {5276,6247,8070 ,4289,7621,7620 ,0,0,0}, {8062,6267,8063 ,7606,7605,7608 ,0,0,0}, - {8064,6274,8066 ,7610,7613,7612 ,0,0,0}, {6274,8064,6272 ,7613,7610,7609 ,0,0,0}, - {8062,8066,6275 ,7606,7612,7604 ,0,0,0}, {8059,8063,6271 ,7598,7608,7607 ,0,0,0}, - {6217,8061,8060 ,7601,7603,7600 ,0,0,0}, {6217,8060,6218 ,7601,7600,7599 ,0,0,0}, - {6271,6218,8059 ,7607,7599,7598 ,0,0,0}, {6475,8071,8061 ,7602,7623,7603 ,0,0,0}, - {8071,6475,6472 ,7623,7602,7595 ,0,0,0}, {8058,8056,6210 ,7596,7594,7593 ,0,0,0}, - {8056,8071,6472 ,7594,7623,7595 ,0,0,0}, {6213,8058,6210 ,7597,7596,7593 ,0,0,0}, - {6511,8053,8057 ,7624,7587,4334 ,0,0,0}, {6511,8057,6213 ,7624,4334,7597 ,0,0,0}, - {6483,6521,8054 ,7588,7590,7589 ,0,0,0}, {6511,6483,8053 ,7624,7588,7587 ,0,0,0}, - {6443,8052,8055 ,7591,7585,7592 ,0,0,0}, {8054,6521,8055 ,7589,7590,7592 ,0,0,0}, - {5256,6510,5254 ,7584,7586,4535 ,0,0,0}, {8052,6443,6510 ,7585,7591,7586 ,0,0,0}, - {8058,5267,8056 ,726,7625,726 ,0,0,0}, {8067,8065,8068 ,726,726,726 ,0,0,0}, - {8070,8069,8068 ,726,726,726 ,0,0,0}, {8066,8062,8064 ,726,726,726 ,0,0,0}, - {8068,8065,8062 ,726,726,726 ,0,0,0}, {8068,8062,8063 ,726,726,726 ,0,0,0}, - {8064,8062,8065 ,726,726,726 ,0,0,0}, {8063,8059,8070 ,726,726,726 ,0,0,0}, - {8070,8068,8063 ,726,726,726 ,0,0,0}, {8059,8060,5273 ,726,726,7626 ,0,0,0}, - {8059,5275,8070 ,726,726,726 ,0,0,0}, {8071,5269,5270 ,726,726,726 ,0,0,0}, - {5270,5273,8061 ,726,7626,726 ,0,0,0}, {8054,5258,5261 ,726,7627,726 ,0,0,0}, - {5263,5264,8057 ,726,7625,726 ,0,0,0}, {8055,5257,5258 ,7626,7627,7627 ,0,0,0}, - {5253,5238,5237 ,7626,7625,726 ,0,0,0}, {5256,5237,8052 ,726,726,726 ,0,0,0}, - {5249,5240,5250 ,726,7627,7625 ,0,0,0}, {5240,5249,5247 ,7627,726,726 ,0,0,0}, - {5249,5250,5244 ,726,7625,7627 ,0,0,0}, {5250,5253,5252 ,7625,7626,7628 ,0,0,0}, - {5240,5238,5250 ,7627,7625,7625 ,0,0,0}, {5240,5247,5241 ,7627,726,726 ,0,0,0}, - {5256,5253,5237 ,726,7626,726 ,0,0,0}, {5253,5250,5238 ,7626,7625,7625 ,0,0,0}, - {5235,8052,5237 ,726,726,726 ,0,0,0}, {8055,8052,5257 ,7626,726,7627 ,0,0,0}, - {5235,5257,8052 ,726,7627,726 ,0,0,0}, {8054,5261,8053 ,726,726,726 ,0,0,0}, - {5258,8054,8055 ,7627,726,7626 ,0,0,0}, {5263,8057,8053 ,726,726,726 ,0,0,0}, - {8053,5261,5263 ,726,726,726 ,0,0,0}, {5264,5267,8058 ,7625,7625,726 ,0,0,0}, - {8057,5264,8058 ,726,7625,726 ,0,0,0}, {8056,5269,8071 ,726,726,726 ,0,0,0}, - {8056,5267,5269 ,726,7625,726 ,0,0,0}, {5273,8060,8061 ,7626,726,726 ,0,0,0}, - {8061,8071,5270 ,726,726,726 ,0,0,0}, {5273,5275,8059 ,7626,726,726 ,0,0,0}, - {5217,8072,6491 ,4303,7629,7630 ,0,0,0}, {6414,6448,8073 ,7631,7632,7633 ,0,0,0}, - {6580,6492,8074 ,7634,7635,7636 ,0,0,0}, {6476,8075,6477 ,7637,7638,7639 ,0,0,0}, - {8076,8077,6413 ,7640,7641,7642 ,0,0,0}, {8078,8079,6258 ,7643,7644,7645 ,0,0,0}, - {8078,6478,8080 ,7643,7646,7647 ,0,0,0}, {8081,8082,6256 ,7648,7649,7650 ,0,0,0}, - {6256,6255,8081 ,7650,7651,7648 ,0,0,0}, {6439,8082,8083 ,7652,7649,7653 ,0,0,0}, - {8082,6439,6256 ,7649,7652,7650 ,0,0,0}, {8084,6438,8083 ,7654,7655,7653 ,0,0,0}, - {6439,8083,6438 ,7652,7653,7655 ,0,0,0}, {8084,5231,5232 ,7654,126,7656 ,0,0,0}, - {5232,6438,8084 ,7656,7655,7654 ,0,0,0}, {8075,6476,8077 ,7638,7637,7641 ,0,0,0}, - {8079,6255,6258 ,7644,7651,7645 ,0,0,0}, {8081,6255,8079 ,7648,7651,7644 ,0,0,0}, - {8073,6448,8085 ,7633,7632,7657 ,0,0,0}, {8080,6478,6477 ,7647,7646,7639 ,0,0,0}, - {8078,6258,6478 ,7643,7645,7646 ,0,0,0}, {8075,8080,6477 ,7638,7647,7639 ,0,0,0}, - {6413,8077,6476 ,7642,7641,7637 ,0,0,0}, {6414,8073,8076 ,7631,7633,7640 ,0,0,0}, - {8076,6413,6414 ,7640,7642,7631 ,0,0,0}, {6492,8072,8074 ,7635,7629,7636 ,0,0,0}, - {8085,6580,8074 ,7657,7634,7636 ,0,0,0}, {6448,6580,8085 ,7632,7634,7657 ,0,0,0}, - {5217,6491,5218 ,4303,7630,82 ,0,0,0}, {8072,6492,6491 ,7629,7635,7630 ,0,0,0}, - {8079,8078,5214 ,726,7658,7659 ,0,0,0}, {8072,8077,8073 ,7660,7661,726 ,0,0,0}, - {8072,8075,8077 ,7660,7661,7661 ,0,0,0}, {5216,8080,5217 ,7659,726,726 ,0,0,0}, - {8076,8073,8077 ,7661,726,7661 ,0,0,0}, {8074,8072,8073 ,7659,7660,726 ,0,0,0}, - {8075,8072,5217 ,7661,7660,726 ,0,0,0}, {8085,8074,8073 ,726,7659,726 ,0,0,0}, - {8075,5217,8080 ,7661,726,726 ,0,0,0}, {5214,8078,5216 ,7659,7658,7659 ,0,0,0}, - {5216,8078,8080 ,7659,7658,726 ,0,0,0}, {5212,8081,8079 ,726,5488,726 ,0,0,0}, - {5214,5212,8079 ,7659,726,726 ,0,0,0}, {5210,8081,5212 ,726,5488,726 ,0,0,0}, - {5210,8082,8081 ,726,7662,5488 ,0,0,0}, {8083,8082,5207 ,5471,7662,7661 ,0,0,0}, - {5210,5207,8082 ,726,7661,7662 ,0,0,0}, {5206,8083,5207 ,726,5471,7661 ,0,0,0}, - {8084,5206,5204 ,7663,726,7661 ,0,0,0}, {5206,8084,8083 ,726,7663,5471 ,0,0,0}, - {5203,5231,5204 ,7658,726,7661 ,0,0,0}, {8084,5204,5231 ,7663,7661,726 ,0,0,0}, - {5223,5219,5220 ,7658,7664,726 ,0,0,0}, {5223,5229,5219 ,7658,7665,7664 ,0,0,0}, - {5226,5223,5225 ,7666,7658,7667 ,0,0,0}, {5226,5229,5223 ,7666,7665,7658 ,0,0,0}, - {5231,5203,5229 ,726,7658,7665 ,0,0,0}, {5219,5229,5203 ,7664,7665,7658 ,0,0,0}, - {8086,5757,8087 ,726,726,726 ,0,0,0}, {5757,8088,8087 ,726,726,726 ,0,0,0}, - {8089,8090,5757 ,726,726,726 ,0,0,0}, {5757,8086,8089 ,726,726,726 ,0,0,0}, - {8091,8092,5757 ,726,726,726 ,0,0,0}, {8091,5757,8090 ,726,726,726 ,0,0,0}, - {5749,8093,8094 ,7583,726,7661 ,0,0,0}, {5757,8095,8096 ,726,726,726 ,0,0,0}, - {5749,8097,8098 ,7583,7658,7661 ,0,0,0}, {8099,5749,8100 ,726,7583,726 ,0,0,0}, - {8101,8102,5749 ,726,726,7583 ,0,0,0}, {8103,8100,5749 ,726,726,7583 ,0,0,0}, - {5749,8099,8104 ,7583,726,5489 ,0,0,0}, {8101,5749,8105 ,726,7583,7583 ,0,0,0}, - {5749,8102,8103 ,7583,726,726 ,0,0,0}, {5749,8106,8097 ,7583,726,7658 ,0,0,0}, - {8098,8105,5749 ,7661,7583,7583 ,0,0,0}, {8096,8093,5749 ,726,726,7583 ,0,0,0}, - {8106,5749,8094 ,726,7583,7661 ,0,0,0}, {5757,8092,8095 ,726,726,726 ,0,0,0}, - {5757,8096,5749 ,726,726,7583 ,0,0,0}, {5750,8104,5745 ,726,5489,7668 ,0,0,0}, - {8104,5750,5749 ,5489,726,7583 ,0,0,0}, {8088,5757,8107 ,726,726,726 ,0,0,0}, - {8108,5757,5755 ,726,726,726 ,0,0,0}, {5757,8108,8107 ,726,726,726 ,0,0,0}, - {8108,5755,5761 ,726,726,726 ,0,0,0}, {6211,6474,8106 ,7669,7670,7671 ,0,0,0}, - {8094,6212,6211 ,7672,7673,7669 ,0,0,0}, {8094,8093,6212 ,7672,7673,7673 ,0,0,0}, - {8106,8094,6211 ,7671,7672,7669 ,0,0,0}, {6474,6473,8097 ,7670,7674,7675 ,0,0,0}, - {6216,6270,8105 ,7676,7677,7678 ,0,0,0}, {8098,8097,6473 ,7679,7675,7674 ,0,0,0}, - {6473,6216,8098 ,7674,7676,7679 ,0,0,0}, {8105,8098,6216 ,7678,7679,7676 ,0,0,0}, - {6474,8097,8106 ,7670,7675,7671 ,0,0,0}, {8105,6270,8101 ,7678,7677,7680 ,0,0,0}, - {6269,8102,8101 ,7681,7682,7680 ,0,0,0}, {8101,6270,6269 ,7680,7677,7681 ,0,0,0}, - {8102,6269,6268 ,7682,7681,7683 ,0,0,0}, {6262,8103,6268 ,7684,7685,7683 ,0,0,0}, - {6262,6264,8100 ,7684,7686,7687 ,0,0,0}, {6262,8100,8103 ,7684,7687,7685 ,0,0,0}, - {8099,6265,8104 ,7688,7689,7690 ,0,0,0}, {8100,6264,8099 ,7687,7686,7688 ,0,0,0}, - {8099,6264,6265 ,7688,7686,7689 ,0,0,0}, {6265,6266,8104 ,7689,7690,7690 ,0,0,0}, - {8102,6268,8103 ,7682,7683,7685 ,0,0,0}, {6259,8093,8096 ,7691,7673,7692 ,0,0,0}, - {8093,6259,6212 ,7673,7691,7673 ,0,0,0}, {8095,6260,8096 ,7693,7694,7692 ,0,0,0}, - {6259,8096,6260 ,7691,7692,7694 ,0,0,0}, {8095,8092,6291 ,7693,7695,7696 ,0,0,0}, - {6291,6260,8095 ,7696,7694,7693 ,0,0,0}, {6292,8092,8091 ,7697,7695,7698 ,0,0,0}, - {8092,6292,6291 ,7695,7697,7696 ,0,0,0}, {8090,6514,8091 ,7699,7700,7698 ,0,0,0}, - {6292,8091,6514 ,7697,7698,7700 ,0,0,0}, {8090,8089,6295 ,7699,7701,7702 ,0,0,0}, - {6295,6514,8090 ,7702,7700,7699 ,0,0,0}, {6294,8089,8086 ,7703,7701,7704 ,0,0,0}, - {8089,6294,6295 ,7701,7703,7702 ,0,0,0}, {8087,6317,8086 ,7705,7706,7704 ,0,0,0}, - {6294,8086,6317 ,7703,7704,7706 ,0,0,0}, {8087,8088,6320 ,7705,7707,7708 ,0,0,0}, - {6320,6317,8087 ,7708,7706,7705 ,0,0,0}, {6321,8088,8107 ,7709,7707,7710 ,0,0,0}, - {8088,6321,6320 ,7707,7709,7708 ,0,0,0}, {6321,8107,6322 ,7709,7710,7711 ,0,0,0}, - {6322,8107,8108 ,7711,7710,7711 ,0,0,0}, {7023,8108,5761 ,7712,7712,7712 ,0,0,0}, - {8108,7024,7027 ,7712,7712,7712 ,0,0,0}, {7023,7024,8108 ,7712,7712,7712 ,0,0,0}, - {8108,7033,7038 ,7712,7712,7712 ,0,0,0}, {7027,7033,8108 ,7712,7712,7712 ,0,0,0}, - {8108,7042,7006 ,7712,7712,7712 ,0,0,0}, {7038,7042,8108 ,7712,7712,7712 ,0,0,0}, - {8108,7010,7009 ,7712,7712,7712 ,0,0,0}, {7006,7010,8108 ,7712,7712,7712 ,0,0,0}, - {8108,7009,6322 ,7712,7712,7712 ,0,0,0}, {7075,8104,6266 ,7713,7713,7713 ,0,0,0}, - {7075,7125,8104 ,7713,7713,7713 ,0,0,0}, {8104,7125,7111 ,7713,7713,7713 ,0,0,0}, - {7071,7077,8104 ,7713,7713,7713 ,0,0,0}, {7071,8104,7111 ,7713,7713,7713 ,0,0,0}, - {7077,7107,8104 ,7713,7713,7713 ,0,0,0}, {8104,7063,7062 ,7713,7713,7713 ,0,0,0}, - {7107,7063,8104 ,7713,7713,7713 ,0,0,0}, {5745,8104,7067 ,7713,7713,7713 ,0,0,0}, - {7062,7067,8104 ,7713,7713,7713 ,0,0,0}, {5180,8109,6529 ,1435,7714,7715 ,0,0,0}, - {8110,6520,8111 ,7716,7717,7718 ,0,0,0}, {6539,6528,8112 ,7719,7720,7721 ,0,0,0}, - {6200,8113,6301 ,7722,7723,7724 ,0,0,0}, {8114,8115,6542 ,7725,7726,7727 ,0,0,0}, - {8116,6323,8117 ,7728,7729,7730 ,0,0,0}, {6325,6302,8118 ,7731,7732,7733 ,0,0,0}, - {6207,6306,8119 ,7734,7735,7736 ,0,0,0}, {6311,8120,6306 ,7737,7738,7735 ,0,0,0}, - {6307,8121,8122 ,7739,7740,7741 ,0,0,0}, {6207,8123,6309 ,7734,7742,7743 ,0,0,0}, - {8124,6316,8122 ,7744,7745,7741 ,0,0,0}, {6307,8122,6316 ,7739,7741,7745 ,0,0,0}, - {8124,8125,6314 ,7744,7746,7747 ,0,0,0}, {6314,6316,8124 ,7747,7745,7744 ,0,0,0}, - {6327,8125,8126 ,7748,7746,7749 ,0,0,0}, {8125,6327,6314 ,7746,7748,7747 ,0,0,0}, - {8127,6313,8126 ,7750,7751,7749 ,0,0,0}, {6327,8126,6313 ,7748,7749,7751 ,0,0,0}, - {8127,5199,5200 ,7750,1359,1359 ,0,0,0}, {5200,6313,8127 ,1359,7751,7750 ,0,0,0}, - {8119,6306,8120 ,7736,7735,7738 ,0,0,0}, {8121,6309,8123 ,7740,7743,7742 ,0,0,0}, - {6309,8121,6307 ,7743,7740,7739 ,0,0,0}, {8119,8123,6207 ,7736,7742,7734 ,0,0,0}, - {8116,8120,6311 ,7728,7738,7737 ,0,0,0}, {6325,8118,8117 ,7731,7733,7730 ,0,0,0}, - {6325,8117,6323 ,7731,7730,7729 ,0,0,0}, {6311,6323,8116 ,7737,7729,7728 ,0,0,0}, - {6302,8128,8118 ,7732,7752,7733 ,0,0,0}, {8128,6302,6301 ,7752,7732,7724 ,0,0,0}, - {8115,8113,6200 ,7726,7723,7722 ,0,0,0}, {8113,8128,6301 ,7723,7752,7724 ,0,0,0}, - {6542,8115,6200 ,7727,7726,7722 ,0,0,0}, {6530,8110,8114 ,7753,7716,7725 ,0,0,0}, - {6530,8114,6542 ,7753,7725,7727 ,0,0,0}, {6520,6539,8111 ,7717,7719,7718 ,0,0,0}, - {6530,6520,8110 ,7753,7717,7716 ,0,0,0}, {6528,8109,8112 ,7720,7714,7721 ,0,0,0}, - {8111,6539,8112 ,7718,7719,7721 ,0,0,0}, {5180,6529,5178 ,1435,7715,1435 ,0,0,0}, - {8109,6528,6529 ,7714,7720,7715 ,0,0,0}, {8127,8126,8125 ,726,7628,7628 ,0,0,0}, - {5182,8122,5181 ,7627,7628,726 ,0,0,0}, {5161,5159,8123 ,7754,7625,7626 ,0,0,0}, - {8122,8121,5181 ,7628,726,726 ,0,0,0}, {5164,8116,5165 ,7755,726,7756 ,0,0,0}, - {5161,8123,8119 ,7754,7626,7626 ,0,0,0}, {8118,8128,5173 ,726,7628,7757 ,0,0,0}, - {8118,5171,8117 ,726,7758,7626 ,0,0,0}, {5174,5168,8113 ,7759,7760,7628 ,0,0,0}, - {8110,8111,8112 ,7625,7754,726 ,0,0,0}, {5177,5174,8115 ,7628,7759,7627 ,0,0,0}, - {5180,5177,8109 ,7628,7628,7761 ,0,0,0}, {8109,8110,8112 ,7761,7625,726 ,0,0,0}, - {5177,8114,8110 ,7628,7628,7625 ,0,0,0}, {8109,5177,8110 ,7761,7628,7625 ,0,0,0}, - {5177,5176,5174 ,7628,7762,7759 ,0,0,0}, {5177,8115,8114 ,7628,7627,7628 ,0,0,0}, - {5173,8113,5168 ,7757,7628,7760 ,0,0,0}, {8113,8115,5174 ,7628,7627,7759 ,0,0,0}, - {5173,8128,8113 ,7757,7628,7628 ,0,0,0}, {8117,5171,5165 ,7626,7758,7756 ,0,0,0}, - {5173,5171,8118 ,7757,7758,726 ,0,0,0}, {8120,8116,5164 ,7628,726,7755 ,0,0,0}, - {8116,8117,5165 ,726,7626,7756 ,0,0,0}, {8120,5162,8119 ,7628,7628,7626 ,0,0,0}, - {5162,8120,5164 ,7628,7628,7755 ,0,0,0}, {8121,8123,5159 ,726,7626,7625 ,0,0,0}, - {5162,5161,8119 ,7628,7754,7626 ,0,0,0}, {5185,8122,5182 ,7625,7628,7627 ,0,0,0}, - {5159,5181,8121 ,7625,726,726 ,0,0,0}, {8125,8124,5185 ,7628,7628,7625 ,0,0,0}, - {5185,8124,8122 ,7625,7628,7628 ,0,0,0}, {5187,8127,8125 ,7628,726,7628 ,0,0,0}, - {8125,5185,5187 ,7628,7625,7628 ,0,0,0}, {5187,5188,8127 ,7628,7628,726 ,0,0,0}, - {5191,5194,5197 ,7628,7628,7628 ,0,0,0}, {5188,5191,8127 ,7628,7628,726 ,0,0,0}, - {5197,8127,5191 ,7628,726,7628 ,0,0,0}, {5191,5193,5194 ,7628,726,7628 ,0,0,0}, - {8127,5197,5199 ,726,7628,7628 ,0,0,0}, {5141,8129,6490 ,1435,7763,7764 ,0,0,0}, - {6517,6519,8130 ,7765,7766,7767 ,0,0,0}, {6523,6524,8131 ,7768,7769,7770 ,0,0,0}, - {6489,8132,6488 ,7771,7772,7773 ,0,0,0}, {8133,8134,6518 ,7774,4221,7775 ,0,0,0}, - {8135,8136,6516 ,7776,7777,7778 ,0,0,0}, {8135,6515,8137 ,7776,7779,7780 ,0,0,0}, - {8138,8139,6332 ,7781,7782,7783 ,0,0,0}, {6332,6331,8138 ,7783,7784,7781 ,0,0,0}, - {6206,8139,8140 ,7785,7782,7786 ,0,0,0}, {8139,6206,6332 ,7782,7785,7783 ,0,0,0}, - {8141,6205,8140 ,7787,7788,7786 ,0,0,0}, {6206,8140,6205 ,7785,7786,7788 ,0,0,0}, - {8141,5155,5156 ,7787,1359,1359 ,0,0,0}, {5156,6205,8141 ,1359,7788,7787 ,0,0,0}, - {8132,6489,8134 ,7772,7771,4221 ,0,0,0}, {8136,6331,6516 ,7777,7784,7778 ,0,0,0}, - {8138,6331,8136 ,7781,7784,7777 ,0,0,0}, {8130,6519,8142 ,7767,7766,4227 ,0,0,0}, - {8137,6515,6488 ,7780,7779,7773 ,0,0,0}, {8135,6516,6515 ,7776,7778,7779 ,0,0,0}, - {8132,8137,6488 ,7772,7780,7773 ,0,0,0}, {6518,8134,6489 ,7775,4221,7771 ,0,0,0}, - {6517,8130,8133 ,7765,7767,7774 ,0,0,0}, {8133,6518,6517 ,7774,7775,7765 ,0,0,0}, - {6524,8129,8131 ,7769,7763,7770 ,0,0,0}, {8142,6523,8131 ,4227,7768,7770 ,0,0,0}, - {6519,6523,8142 ,7766,7768,4227 ,0,0,0}, {5141,6490,5142 ,1435,7764,1435 ,0,0,0}, - {8129,6524,6490 ,7763,7769,7764 ,0,0,0}, {5140,5149,5141 ,726,5471,7661 ,0,0,0}, - {8132,8135,8137 ,726,726,726 ,0,0,0}, {8138,8136,8135 ,7658,726,726 ,0,0,0}, - {8135,8132,8138 ,726,726,7658 ,0,0,0}, {8138,8134,8139 ,7658,726,7658 ,0,0,0}, - {8134,8138,8132 ,726,7658,726 ,0,0,0}, {8140,8139,8133 ,7658,7658,726 ,0,0,0}, - {8134,8133,8139 ,726,726,7658 ,0,0,0}, {8130,8141,8140 ,7658,7661,7658 ,0,0,0}, - {8140,8133,8130 ,7658,726,7658 ,0,0,0}, {8141,8142,5155 ,7661,7661,7664 ,0,0,0}, - {8142,8141,8130 ,7661,7661,7658 ,0,0,0}, {8142,8131,5155 ,7661,726,7664 ,0,0,0}, - {8131,8129,5153 ,726,726,7662 ,0,0,0}, {5147,5140,5138 ,7789,726,7658 ,0,0,0}, - {5128,5127,5134 ,5488,7668,7661 ,0,0,0}, {5144,5136,5143 ,7790,7664,7791 ,0,0,0}, - {5128,5134,5130 ,5488,7661,7792 ,0,0,0}, {5131,5130,5134 ,5488,7792,7661 ,0,0,0}, - {5136,5134,5143 ,7664,7661,7791 ,0,0,0}, {5143,5134,5127 ,7791,7661,7668 ,0,0,0}, - {5136,5144,5138 ,7664,7790,7658 ,0,0,0}, {5149,5140,5147 ,5471,726,7789 ,0,0,0}, - {5147,5138,5144 ,7789,7658,7790 ,0,0,0}, {5141,5150,8129 ,7661,7583,726 ,0,0,0}, - {5141,5149,5150 ,7661,5471,7583 ,0,0,0}, {8131,5153,5155 ,726,7662,7664 ,0,0,0}, - {5150,5153,8129 ,7583,7662,726 ,0,0,0}, {8143,5786,8144 ,7583,726,726 ,0,0,0}, - {8145,5782,8146 ,7668,726,5470 ,0,0,0}, {8145,8147,5782 ,7668,726,726 ,0,0,0}, - {5782,8148,8146 ,726,726,5470 ,0,0,0}, {8147,8149,5782 ,726,5489,726 ,0,0,0}, - {5782,8150,8151 ,726,7793,7794 ,0,0,0}, {8149,8150,5782 ,5489,7793,726 ,0,0,0}, - {5786,8152,5782 ,726,5470,726 ,0,0,0}, {8152,8148,5782 ,5470,726,726 ,0,0,0}, - {8153,8152,5786 ,726,5470,726 ,0,0,0}, {8154,5782,8151 ,7795,726,7794 ,0,0,0}, - {5786,8155,8153 ,726,5488,726 ,0,0,0}, {8154,8156,5782 ,7795,726,726 ,0,0,0}, - {8157,5782,8158 ,5485,726,7796 ,0,0,0}, {5782,8156,8158 ,726,726,7796 ,0,0,0}, - {5786,8159,8155 ,726,7583,5488 ,0,0,0}, {8160,5782,8157 ,7583,726,5485 ,0,0,0}, - {5786,8161,8159 ,726,726,7583 ,0,0,0}, {5786,8162,8163 ,726,5488,7583 ,0,0,0}, - {5786,8163,8161 ,726,7583,726 ,0,0,0}, {5783,8160,5778 ,5489,7583,7797 ,0,0,0}, - {5786,8143,8162 ,726,7583,5488 ,0,0,0}, {8160,5783,5782 ,7583,5489,726 ,0,0,0}, - {8144,5786,8164 ,726,726,7583 ,0,0,0}, {8165,5786,5793 ,726,726,726 ,0,0,0}, - {5786,8165,8164 ,726,726,7583 ,0,0,0}, {8165,5793,5792 ,726,726,726 ,0,0,0}, - {6201,6303,8145 ,7798,7799,7800 ,0,0,0}, {8146,6199,6201 ,7801,7802,7798 ,0,0,0}, - {8146,8148,6199 ,7801,7802,7802 ,0,0,0}, {8145,8146,6201 ,7800,7801,7798 ,0,0,0}, - {6303,6512,8147 ,7799,7803,7804 ,0,0,0}, {6324,6310,8150 ,7805,7806,7807 ,0,0,0}, - {8149,8147,6512 ,7808,7804,7803 ,0,0,0}, {6512,6324,8149 ,7803,7805,7808 ,0,0,0}, - {8150,8149,6324 ,7807,7808,7805 ,0,0,0}, {6303,8147,8145 ,7799,7804,7800 ,0,0,0}, - {8150,6310,8151 ,7807,7806,7809 ,0,0,0}, {6305,8154,8151 ,7810,7811,7809 ,0,0,0}, - {8151,6310,6305 ,7809,7806,7810 ,0,0,0}, {8154,6305,6304 ,7811,7810,7812 ,0,0,0}, - {6209,8156,6304 ,7813,7814,7812 ,0,0,0}, {6209,6288,8158 ,7813,7815,7816 ,0,0,0}, - {6209,8158,8156 ,7813,7816,7814 ,0,0,0}, {8157,6290,8160 ,7817,7818,7819 ,0,0,0}, - {8158,6288,8157 ,7816,7815,7817 ,0,0,0}, {8157,6288,6290 ,7817,7815,7818 ,0,0,0}, - {6290,6319,8160 ,7818,7819,7819 ,0,0,0}, {8154,6304,8156 ,7811,7812,7814 ,0,0,0}, - {6333,8148,8152 ,7820,7802,7821 ,0,0,0}, {8148,6333,6199 ,7802,7820,7802 ,0,0,0}, - {8153,6337,8152 ,7822,7823,7821 ,0,0,0}, {6333,8152,6337 ,7820,7821,7823 ,0,0,0}, - {8153,8155,6298 ,7822,7824,7825 ,0,0,0}, {6298,6337,8153 ,7825,7823,7822 ,0,0,0}, - {6299,8155,8159 ,7826,7824,7827 ,0,0,0}, {8155,6299,6298 ,7824,7826,7825 ,0,0,0}, - {8161,6374,8159 ,7828,7829,7827 ,0,0,0}, {6299,8159,6374 ,7826,7827,7829 ,0,0,0}, - {8161,8163,6202 ,7828,7830,7831 ,0,0,0}, {6202,6374,8161 ,7831,7829,7828 ,0,0,0}, - {6203,8163,8162 ,7832,7830,7833 ,0,0,0}, {8163,6203,6202 ,7830,7832,7831 ,0,0,0}, - {8143,6361,8162 ,7834,7835,7833 ,0,0,0}, {6203,8162,6361 ,7832,7833,7835 ,0,0,0}, - {8143,8144,6364 ,7834,7836,7837 ,0,0,0}, {6364,6361,8143 ,7837,7835,7834 ,0,0,0}, - {6368,8144,8164 ,7838,7836,7839 ,0,0,0}, {8144,6368,6364 ,7836,7838,7837 ,0,0,0}, - {6368,8164,6369 ,7838,7839,7840 ,0,0,0}, {6369,8164,8165 ,7840,7839,7840 ,0,0,0}, - {6936,8165,5792 ,7841,7841,7841 ,0,0,0}, {8165,6942,6945 ,7841,7841,7841 ,0,0,0}, - {6936,6942,8165 ,7841,7841,7841 ,0,0,0}, {8165,6951,6956 ,7841,7841,7841 ,0,0,0}, - {6945,6951,8165 ,7841,7841,7841 ,0,0,0}, {8165,6960,6919 ,7841,7841,7841 ,0,0,0}, - {6956,6960,8165 ,7841,7841,7841 ,0,0,0}, {8165,6931,6930 ,7841,7841,7841 ,0,0,0}, - {6919,6931,8165 ,7841,7841,7841 ,0,0,0}, {8165,6930,6369 ,7841,7841,7841 ,0,0,0}, - {6997,8160,6319 ,7842,7842,7842 ,0,0,0}, {6997,7043,8160 ,7842,7842,7842 ,0,0,0}, - {8160,7043,7029 ,7842,7842,7842 ,0,0,0}, {6991,6984,8160 ,7842,7842,7842 ,0,0,0}, - {6991,8160,7029 ,7842,7842,7842 ,0,0,0}, {6984,7025,8160 ,7842,7842,7842 ,0,0,0}, - {8160,7017,6979 ,7842,7842,7842 ,0,0,0}, {7025,7017,8160 ,7842,7842,7842 ,0,0,0}, - {5778,8160,6980 ,7842,7842,7842 ,0,0,0}, {6979,6980,8160 ,7842,7842,7842 ,0,0,0}, - {5104,8166,6554 ,1790,7843,4204 ,0,0,0}, {8167,6551,8168 ,7844,4198,4199 ,0,0,0}, - {6540,6553,8169 ,7845,7846,7847 ,0,0,0}, {6531,8170,6349 ,7848,7849,7850 ,0,0,0}, - {8171,8172,6564 ,7851,7852,7853 ,0,0,0}, {8173,6328,8174 ,7854,7855,7856 ,0,0,0}, - {6330,6347,8175 ,7857,7858,7859 ,0,0,0}, {6196,6195,8176 ,7860,7861,7862 ,0,0,0}, - {6351,8177,6195 ,7863,7864,7861 ,0,0,0}, {6355,8178,8179 ,7865,7866,7867 ,0,0,0}, - {6196,8180,6354 ,7860,7868,7869 ,0,0,0}, {8181,6360,8179 ,7870,7871,7867 ,0,0,0}, - {6355,8179,6360 ,7865,7867,7871 ,0,0,0}, {8181,8182,6358 ,7870,7872,7873 ,0,0,0}, - {6358,6360,8181 ,7873,7871,7870 ,0,0,0}, {6343,8182,8183 ,7874,7872,7875 ,0,0,0}, - {8182,6343,6358 ,7872,7874,7873 ,0,0,0}, {8184,6341,8183 ,7876,7877,7875 ,0,0,0}, - {6343,8183,6341 ,7874,7875,7877 ,0,0,0}, {8184,5123,5124 ,7876,1711,1711 ,0,0,0}, - {5124,6341,8184 ,1711,7877,7876 ,0,0,0}, {8176,6195,8177 ,7862,7861,7864 ,0,0,0}, - {8178,6354,8180 ,7866,7869,7868 ,0,0,0}, {6354,8178,6355 ,7869,7866,7865 ,0,0,0}, - {8176,8180,6196 ,7862,7868,7860 ,0,0,0}, {8173,8177,6351 ,7854,7864,7863 ,0,0,0}, - {6330,8175,8174 ,7857,7859,7856 ,0,0,0}, {6330,8174,6328 ,7857,7856,7855 ,0,0,0}, - {6351,6328,8173 ,7863,7855,7854 ,0,0,0}, {6347,8185,8175 ,7858,7878,7859 ,0,0,0}, - {8185,6347,6349 ,7878,7858,7850 ,0,0,0}, {8172,8170,6531 ,7852,7849,7848 ,0,0,0}, - {8170,8185,6349 ,7849,7878,7850 ,0,0,0}, {6564,8172,6531 ,7853,7852,7848 ,0,0,0}, - {6552,8167,8171 ,7879,7844,7851 ,0,0,0}, {6552,8171,6564 ,7879,7851,7853 ,0,0,0}, - {6551,6540,8168 ,4198,7845,4199 ,0,0,0}, {6552,6551,8167 ,7879,4198,7844 ,0,0,0}, - {6553,8166,8169 ,7846,7843,7847 ,0,0,0}, {8168,6540,8169 ,4199,7845,7847 ,0,0,0}, - {5104,6554,5102 ,1790,4204,1790 ,0,0,0}, {8166,6553,6554 ,7843,7846,4204 ,0,0,0}, - {8176,8177,8171 ,726,7880,7881 ,0,0,0}, {8166,8181,8179 ,7882,7627,7625 ,0,0,0}, - {8172,8173,8170 ,7883,7758,726 ,0,0,0}, {8185,8170,8173 ,7884,726,7758 ,0,0,0}, - {8174,8175,8185 ,7880,7761,7884 ,0,0,0}, {8173,8172,8177 ,7758,7883,7880 ,0,0,0}, - {8174,8185,8173 ,7880,7884,7758 ,0,0,0}, {8176,8171,8167 ,726,7881,7885 ,0,0,0}, - {8177,8172,8171 ,7880,7883,7881 ,0,0,0}, {8167,8168,8180 ,7885,7886,7758 ,0,0,0}, - {8180,8176,8167 ,7758,726,7885 ,0,0,0}, {8178,8168,8169 ,726,7886,7887 ,0,0,0}, - {8168,8178,8180 ,7886,726,7758 ,0,0,0}, {8179,8178,8169 ,7625,726,7887 ,0,0,0}, - {5104,8181,8166 ,7758,7627,7882 ,0,0,0}, {8166,8179,8169 ,7882,7625,7887 ,0,0,0}, - {8182,5104,5101 ,7627,7758,7755 ,0,0,0}, {5104,8182,8181 ,7758,7627,7627 ,0,0,0}, - {5100,8183,5101 ,7625,726,7755 ,0,0,0}, {8182,5101,8183 ,7627,7755,726 ,0,0,0}, - {5100,5098,8184 ,7625,7761,726 ,0,0,0}, {8184,8183,5100 ,726,726,7625 ,0,0,0}, - {5123,5098,5092 ,7627,7761,7625 ,0,0,0}, {5098,5123,8184 ,7761,7627,726 ,0,0,0}, - {5089,5117,5095 ,726,7627,7625 ,0,0,0}, {5097,5121,5092 ,7880,726,7625 ,0,0,0}, - {5115,5088,5112 ,7625,726,726 ,0,0,0}, {5109,5085,5106 ,7627,7625,7625 ,0,0,0}, - {5111,5112,5086 ,726,726,7625 ,0,0,0}, {5106,5083,5105 ,7625,7625,726 ,0,0,0}, - {5085,5109,5111 ,7625,7627,726 ,0,0,0}, {5086,5085,5111 ,7625,7625,726 ,0,0,0}, - {5106,5085,5083 ,7625,7625,7625 ,0,0,0}, {5089,5088,5115 ,726,726,7625 ,0,0,0}, - {5086,5112,5088 ,7625,726,726 ,0,0,0}, {5118,5095,5117 ,726,7625,7627 ,0,0,0}, - {5117,5089,5115 ,7627,726,7625 ,0,0,0}, {5097,5118,5121 ,7880,726,726 ,0,0,0}, - {5118,5097,5095 ,726,7880,7625 ,0,0,0}, {5121,5123,5092 ,726,7627,7625 ,0,0,0}, - {5065,8186,6484 ,1790,7888,7889 ,0,0,0}, {6536,6525,8187 ,7890,7891,7892 ,0,0,0}, - {6538,6485,8188 ,7893,7894,7895 ,0,0,0}, {6526,8189,6527 ,7896,7897,4137 ,0,0,0}, - {8190,8191,6537 ,7898,7899,7900 ,0,0,0}, {8192,8193,6535 ,7901,7902,7903 ,0,0,0}, - {8192,6534,8194 ,7901,7904,7905 ,0,0,0}, {8195,8196,6370 ,7906,7907,7908 ,0,0,0}, - {6370,6371,8195 ,7908,7909,7906 ,0,0,0}, {6533,8196,8197 ,7910,7907,7911 ,0,0,0}, - {8196,6533,6370 ,7907,7910,7908 ,0,0,0}, {8198,6344,8197 ,7912,7913,7911 ,0,0,0}, - {6533,8197,6344 ,7910,7911,7913 ,0,0,0}, {8198,5079,5080 ,7912,1711,1711 ,0,0,0}, - {5080,6344,8198 ,1711,7913,7912 ,0,0,0}, {8189,6526,8191 ,7897,7896,7899 ,0,0,0}, - {8193,6371,6535 ,7902,7909,7903 ,0,0,0}, {8195,6371,8193 ,7906,7909,7902 ,0,0,0}, - {8187,6525,8199 ,7892,7891,7914 ,0,0,0}, {8194,6534,6527 ,7905,7904,4137 ,0,0,0}, - {8192,6535,6534 ,7901,7903,7904 ,0,0,0}, {8189,8194,6527 ,7897,7905,4137 ,0,0,0}, - {6537,8191,6526 ,7900,7899,7896 ,0,0,0}, {6536,8187,8190 ,7890,7892,7898 ,0,0,0}, - {8190,6537,6536 ,7898,7900,7890 ,0,0,0}, {6485,8186,8188 ,7894,7888,7895 ,0,0,0}, - {8199,6538,8188 ,7914,7893,7895 ,0,0,0}, {6525,6538,8199 ,7891,7893,7914 ,0,0,0}, - {5065,6484,5066 ,1790,7889,1790 ,0,0,0}, {8186,6485,6484 ,7888,7894,7889 ,0,0,0}, - {8192,5073,8193 ,726,7658,726 ,0,0,0}, {8197,8196,5077 ,726,726,7660 ,0,0,0}, - {5079,8198,8197 ,726,7660,726 ,0,0,0}, {8192,8194,5071 ,726,726,7658 ,0,0,0}, - {5074,5077,8195 ,7660,7660,7659 ,0,0,0}, {8191,8190,5051 ,7659,726,7661 ,0,0,0}, - {8191,5067,8189 ,7659,726,726 ,0,0,0}, {5054,5052,8187 ,7915,7916,726 ,0,0,0}, - {8186,5060,5058 ,7658,7917,5475 ,0,0,0}, {8188,5055,8199 ,7658,726,7659 ,0,0,0}, - {5065,5064,5060 ,7918,7918,7917 ,0,0,0}, {5062,5060,5064 ,7661,7917,7918 ,0,0,0}, - {8188,8186,5058 ,7658,7658,5475 ,0,0,0}, {8186,5065,5060 ,7658,7918,7917 ,0,0,0}, - {5055,8188,5058 ,726,7658,5475 ,0,0,0}, {8199,5055,5054 ,7659,726,7915 ,0,0,0}, - {8187,5052,8190 ,726,7916,726 ,0,0,0}, {8199,5054,8187 ,7659,7915,726 ,0,0,0}, - {8191,5051,5067 ,7659,7661,726 ,0,0,0}, {8190,5052,5051 ,726,7916,7661 ,0,0,0}, - {5068,8194,8189 ,7664,726,726 ,0,0,0}, {5067,5068,8189 ,726,7664,726 ,0,0,0}, - {5073,8192,5071 ,7658,726,7658 ,0,0,0}, {5071,8194,5068 ,7658,726,7664 ,0,0,0}, - {8193,5074,8195 ,726,7660,7659 ,0,0,0}, {8193,5073,5074 ,726,7658,7660 ,0,0,0}, - {8197,5077,5079 ,726,7660,726 ,0,0,0}, {8196,8195,5077 ,726,7659,7660 ,0,0,0}, - {5823,8200,8201 ,726,5469,7919 ,0,0,0}, {8202,5823,8203 ,7920,726,7921 ,0,0,0}, - {5823,8202,8200 ,726,7920,5469 ,0,0,0}, {5823,8204,8203 ,726,726,7921 ,0,0,0}, - {8205,5823,8201 ,7922,726,7919 ,0,0,0}, {8204,5823,8206 ,726,726,7920 ,0,0,0}, - {8205,8207,5823 ,7922,7923,726 ,0,0,0}, {5823,8208,8209 ,726,7924,7925 ,0,0,0}, - {8209,8210,5823 ,7925,7926,726 ,0,0,0}, {8207,8208,5823 ,7923,7924,726 ,0,0,0}, - {8211,8212,5823 ,5472,7927,726 ,0,0,0}, {8211,5823,8210 ,5472,726,7926 ,0,0,0}, - {8213,8214,5823 ,7928,7929,726 ,0,0,0}, {8213,5823,8212 ,7928,726,7927 ,0,0,0}, - {8215,8216,5823 ,726,5489,726 ,0,0,0}, {8215,5823,8214 ,726,726,7929 ,0,0,0}, - {5823,8217,5822 ,726,5488,7583 ,0,0,0}, {8217,5823,8216 ,5488,726,5489 ,0,0,0}, - {5822,8218,8219 ,7583,5470,5489 ,0,0,0}, {8217,8218,5822 ,5488,5470,7583 ,0,0,0}, - {5818,5819,8219 ,5489,5488,5489 ,0,0,0}, {5822,8219,5819 ,7583,5489,5488 ,0,0,0}, - {5813,5818,8219 ,5489,5489,5489 ,0,0,0}, {5823,7790,8206 ,726,5489,7920 ,0,0,0}, - {7790,8220,8221 ,5489,5470,5488 ,0,0,0}, {8206,7790,8221 ,7920,5489,5488 ,0,0,0}, - {8222,7790,7789 ,5489,5489,726 ,0,0,0}, {7790,8222,8220 ,5489,5489,5470 ,0,0,0}, - {6853,8222,7788 ,5489,5489,7583 ,0,0,0}, {7789,7788,8222 ,726,7583,5489 ,0,0,0}, - {6387,6348,8210 ,7930,7931,7932 ,0,0,0}, {8209,6389,6387 ,7933,7934,7930 ,0,0,0}, - {8209,8208,6389 ,7933,7935,7934 ,0,0,0}, {8210,8209,6387 ,7932,7933,7930 ,0,0,0}, - {6348,6532,8211 ,7931,7936,7937 ,0,0,0}, {6329,6350,8213 ,7938,7939,7940 ,0,0,0}, - {8212,8211,6532 ,7941,7937,7936 ,0,0,0}, {6532,6329,8212 ,7936,7938,7941 ,0,0,0}, - {8213,8212,6329 ,7940,7941,7938 ,0,0,0}, {6348,8211,8210 ,7931,7937,7932 ,0,0,0}, - {8213,6350,8214 ,7940,7939,7942 ,0,0,0}, {6352,8215,8214 ,7943,7944,7942 ,0,0,0}, - {8214,6350,6352 ,7942,7939,7943 ,0,0,0}, {8215,6352,6197 ,7944,7943,7945 ,0,0,0}, - {6340,8216,6197 ,7946,7947,7945 ,0,0,0}, {6340,6353,8217 ,7946,7948,7949 ,0,0,0}, - {6340,8217,8216 ,7946,7949,7947 ,0,0,0}, {8218,6345,8219 ,7950,7951,7952 ,0,0,0}, - {8217,6353,8218 ,7949,7948,7950 ,0,0,0}, {8218,6353,6345 ,7950,7948,7951 ,0,0,0}, - {6345,6346,8219 ,7951,7952,7952 ,0,0,0}, {8215,6197,8216 ,7944,7945,7947 ,0,0,0}, - {6509,8208,8207 ,7953,7935,7954 ,0,0,0}, {8208,6509,6389 ,7935,7953,7934 ,0,0,0}, - {8205,6388,8207 ,7955,7956,7954 ,0,0,0}, {6509,8207,6388 ,7953,7954,7956 ,0,0,0}, - {8205,8201,6372 ,7955,7957,7958 ,0,0,0}, {6372,6388,8205 ,7958,7956,7955 ,0,0,0}, - {6373,8201,8200 ,7959,7957,7960 ,0,0,0}, {8201,6373,6372 ,7957,7959,7958 ,0,0,0}, - {8202,6546,8200 ,7961,7962,7960 ,0,0,0}, {6373,8200,6546 ,7959,7960,7962 ,0,0,0}, - {8202,8203,6486 ,7961,7963,7964 ,0,0,0}, {6486,6546,8202 ,7964,7962,7961 ,0,0,0}, - {6487,8203,8204 ,7965,7963,7966 ,0,0,0}, {8203,6487,6486 ,7963,7965,7964 ,0,0,0}, - {8206,6380,8204 ,7967,7968,7966 ,0,0,0}, {6487,8204,6380 ,7965,7966,7968 ,0,0,0}, - {8206,8221,6408 ,7967,7969,7970 ,0,0,0}, {6408,6380,8206 ,7970,7968,7967 ,0,0,0}, - {6409,8221,8220 ,7971,7969,7972 ,0,0,0}, {8221,6409,6408 ,7969,7971,7970 ,0,0,0}, - {6409,8220,6411 ,7971,7972,7973 ,0,0,0}, {6411,8220,8222 ,7973,7972,7973 ,0,0,0}, - {6863,6869,8222 ,7974,7974,7974 ,0,0,0}, {8222,6853,6854 ,7974,7974,7974 ,0,0,0}, - {6854,6860,8222 ,7974,7974,7974 ,0,0,0}, {6874,8222,6869 ,7974,7974,7974 ,0,0,0}, - {6860,6863,8222 ,7974,7974,7974 ,0,0,0}, {6878,6831,8222 ,7974,7974,7974 ,0,0,0}, - {6878,8222,6874 ,7974,7974,7974 ,0,0,0}, {6831,6843,8222 ,7974,7974,7974 ,0,0,0}, - {6411,8222,6842 ,7974,7974,7974 ,0,0,0}, {6843,6842,8222 ,7974,7974,7974 ,0,0,0}, - {8219,6346,6911 ,7975,7975,7975 ,0,0,0}, {6911,6961,8219 ,7975,7975,7975 ,0,0,0}, - {8219,6947,6907 ,7975,7975,7975 ,0,0,0}, {6961,6947,8219 ,7975,7975,7975 ,0,0,0}, - {8219,6913,6943 ,7975,7975,7975 ,0,0,0}, {6907,6913,8219 ,7975,7975,7975 ,0,0,0}, - {8219,6899,6898 ,7975,7975,7975 ,0,0,0}, {6943,6899,8219 ,7975,7975,7975 ,0,0,0}, - {5813,8219,6903 ,7975,7975,7975 ,0,0,0}, {6898,6903,8219 ,7975,7975,7975 ,0,0,0}, - {5028,8223,6559 ,126,7976,7977 ,0,0,0}, {8224,6561,8225 ,7978,7979,7980 ,0,0,0}, - {6575,6562,8226 ,7981,7982,7983 ,0,0,0}, {6376,8227,6367 ,7984,7985,7986 ,0,0,0}, - {8228,8229,6543 ,7987,7988,7989 ,0,0,0}, {8230,6394,8231 ,7990,7991,7992 ,0,0,0}, - {6412,6379,8232 ,7993,7994,7995 ,0,0,0}, {6404,6405,8233 ,7996,7997,7998 ,0,0,0}, - {6395,8234,6405 ,7999,8000,7997 ,0,0,0}, {6396,8235,8236 ,8001,8002,8003 ,0,0,0}, - {6404,8237,6398 ,7996,8004,8005 ,0,0,0}, {8238,6399,8236 ,8006,8007,8003 ,0,0,0}, - {6396,8236,6399 ,8001,8003,8007 ,0,0,0}, {8238,8239,6402 ,8006,8008,8009 ,0,0,0}, - {6402,6399,8238 ,8009,8007,8006 ,0,0,0}, {6441,8239,8240 ,8010,8008,8011 ,0,0,0}, - {8239,6441,6402 ,8008,8010,8009 ,0,0,0}, {8241,6403,8240 ,8012,8013,8011 ,0,0,0}, - {6441,8240,6403 ,8010,8011,8013 ,0,0,0}, {8241,5047,5048 ,8012,8014,4346 ,0,0,0}, - {5048,6403,8241 ,4346,8013,8012 ,0,0,0}, {8233,6405,8234 ,7998,7997,8000 ,0,0,0}, - {8235,6398,8237 ,8002,8005,8004 ,0,0,0}, {6398,8235,6396 ,8005,8002,8001 ,0,0,0}, - {8233,8237,6404 ,7998,8004,7996 ,0,0,0}, {8230,8234,6395 ,7990,8000,7999 ,0,0,0}, - {6412,8232,8231 ,7993,7995,7992 ,0,0,0}, {6412,8231,6394 ,7993,7992,7991 ,0,0,0}, - {6395,6394,8230 ,7999,7991,7990 ,0,0,0}, {6379,8242,8232 ,7994,8015,7995 ,0,0,0}, - {8242,6379,6367 ,8015,7994,7986 ,0,0,0}, {8229,8227,6376 ,7988,7985,7984 ,0,0,0}, - {8227,8242,6367 ,7985,8015,7986 ,0,0,0}, {6543,8229,6376 ,7989,7988,7984 ,0,0,0}, - {6560,8224,8228 ,8016,7978,7987 ,0,0,0}, {6560,8228,6543 ,8016,7987,7989 ,0,0,0}, - {6561,6575,8225 ,7979,7981,7980 ,0,0,0}, {6560,6561,8224 ,8016,7979,7978 ,0,0,0}, - {6562,8223,8226 ,7982,7976,7983 ,0,0,0}, {8225,6575,8226 ,7980,7981,7983 ,0,0,0}, - {5028,6559,5026 ,126,7977,4289 ,0,0,0}, {8223,6562,6559 ,7976,7982,7977 ,0,0,0}, - {8241,8240,8239 ,7625,7880,7758 ,0,0,0}, {5033,8224,8225 ,7626,7880,726 ,0,0,0}, - {8239,8236,8233 ,7758,8017,8018 ,0,0,0}, {8239,8238,8236 ,7758,7758,8017 ,0,0,0}, - {8235,8233,8236 ,8017,8018,8017 ,0,0,0}, {8235,8237,8233 ,8017,7758,8018 ,0,0,0}, - {8234,8239,8233 ,8019,7758,8018 ,0,0,0}, {8234,8230,8241 ,8019,7884,7625 ,0,0,0}, - {8241,8239,8234 ,7625,7758,8019 ,0,0,0}, {8230,8231,5045 ,7884,8020,7625 ,0,0,0}, - {8230,5047,8241 ,7884,7625,7625 ,0,0,0}, {8242,5041,5042 ,8021,7625,726 ,0,0,0}, - {5042,5045,8232 ,726,7625,7257 ,0,0,0}, {5035,5036,8228 ,726,726,8017 ,0,0,0}, - {5039,8227,8229 ,7625,8022,7761 ,0,0,0}, {5030,8226,5029 ,7626,726,7626 ,0,0,0}, - {8225,5030,5033 ,726,7626,7626 ,0,0,0}, {5025,5010,5009 ,7625,726,726 ,0,0,0}, - {5028,5009,8223 ,7625,726,7625 ,0,0,0}, {5021,5012,5022 ,726,726,7625 ,0,0,0}, - {5012,5021,5019 ,726,726,726 ,0,0,0}, {5016,5021,5022 ,7625,726,7625 ,0,0,0}, - {5024,5022,5025 ,7625,7625,7625 ,0,0,0}, {5022,5012,5010 ,7625,726,726 ,0,0,0}, - {5013,5012,5019 ,726,726,726 ,0,0,0}, {5009,5028,5025 ,726,7625,7625 ,0,0,0}, - {5010,5025,5022 ,726,7625,7625 ,0,0,0}, {8223,5007,5029 ,7625,726,7626 ,0,0,0}, - {5007,8223,5009 ,726,7625,726 ,0,0,0}, {8226,5030,8225 ,726,7626,726 ,0,0,0}, - {8223,5029,8226 ,7625,7626,726 ,0,0,0}, {5033,5035,8224 ,7626,726,7880 ,0,0,0}, - {8228,5036,8229 ,8017,726,7761 ,0,0,0}, {8224,5035,8228 ,7880,726,8017 ,0,0,0}, - {8229,5036,5039 ,7761,726,7625 ,0,0,0}, {8227,5041,8242 ,8022,7625,8021 ,0,0,0}, - {8227,5039,5041 ,8022,7625,7625 ,0,0,0}, {5045,8231,8232 ,7625,8020,7257 ,0,0,0}, - {8232,8242,5042 ,7257,8021,726 ,0,0,0}, {5045,5047,8230 ,7625,7625,7884 ,0,0,0}, - {4989,8243,6558 ,8023,8024,8025 ,0,0,0}, {6300,6503,8244 ,8026,8027,8028 ,0,0,0}, - {6610,6556,8245 ,8029,8030,8031 ,0,0,0}, {6549,8246,6541 ,8032,8033,8034 ,0,0,0}, - {8247,8248,6508 ,8035,8036,8037 ,0,0,0}, {8249,8250,6548 ,8038,8039,8040 ,0,0,0}, - {8249,6550,8251 ,8038,8041,8042 ,0,0,0}, {8252,8253,6547 ,8043,8044,8045 ,0,0,0}, - {6547,6447,8252 ,8045,8046,8043 ,0,0,0}, {6444,8253,8254 ,8047,8044,8048 ,0,0,0}, - {8253,6444,6547 ,8044,8047,8045 ,0,0,0}, {8255,6445,8254 ,8049,8050,8048 ,0,0,0}, - {6444,8254,6445 ,8047,8048,8050 ,0,0,0}, {8255,5003,5004 ,8049,82,82 ,0,0,0}, - {5004,6445,8255 ,82,8050,8049 ,0,0,0}, {8246,6549,8248 ,8033,8032,8036 ,0,0,0}, - {8250,6447,6548 ,8039,8046,8040 ,0,0,0}, {8252,6447,8250 ,8043,8046,8039 ,0,0,0}, - {8244,6503,8256 ,8028,8027,8051 ,0,0,0}, {8251,6550,6541 ,8042,8041,8034 ,0,0,0}, - {8249,6548,6550 ,8038,8040,8041 ,0,0,0}, {8246,8251,6541 ,8033,8042,8034 ,0,0,0}, - {6508,8248,6549 ,8037,8036,8032 ,0,0,0}, {6300,8244,8247 ,8026,8028,8035 ,0,0,0}, - {8247,6508,6300 ,8035,8037,8026 ,0,0,0}, {6556,8243,8245 ,8030,8024,8031 ,0,0,0}, - {8256,6610,8245 ,8051,8029,8031 ,0,0,0}, {6503,6610,8256 ,8027,8029,8051 ,0,0,0}, - {4989,6558,4990 ,8023,8025,8052 ,0,0,0}, {8243,6556,6558 ,8024,8030,8025 ,0,0,0}, - {8249,4986,8250 ,726,726,726 ,0,0,0}, {8253,4982,4979 ,726,7661,726 ,0,0,0}, - {8246,8248,8243 ,726,7660,726 ,0,0,0}, {8251,4989,4988 ,726,726,726 ,0,0,0}, - {8245,8243,8244 ,7661,726,726 ,0,0,0}, {8244,8256,8245 ,726,7658,7661 ,0,0,0}, - {8244,8248,8247 ,726,7660,726 ,0,0,0}, {8243,4989,8246 ,726,726,726 ,0,0,0}, - {8248,8244,8243 ,7660,726,726 ,0,0,0}, {8251,4988,8249 ,726,726,726 ,0,0,0}, - {8246,4989,8251 ,726,726,726 ,0,0,0}, {8249,4988,4986 ,726,726,726 ,0,0,0}, - {8250,4984,8252 ,726,7658,726 ,0,0,0}, {8250,4986,4984 ,726,726,7658 ,0,0,0}, - {8253,8252,4982 ,726,726,7661 ,0,0,0}, {4984,4982,8252 ,7658,7661,726 ,0,0,0}, - {8253,4979,8254 ,726,726,726 ,0,0,0}, {4978,8255,8254 ,726,726,726 ,0,0,0}, - {8254,4979,4978 ,726,726,726 ,0,0,0}, {8255,4976,5003 ,726,726,726 ,0,0,0}, - {4976,8255,4978 ,726,726,726 ,0,0,0}, {4976,4975,5003 ,726,726,726 ,0,0,0}, - {4995,4991,4992 ,7659,726,726 ,0,0,0}, {4995,5001,4991 ,7659,726,726 ,0,0,0}, - {4998,4995,4997 ,726,7659,726 ,0,0,0}, {4998,5001,4995 ,726,726,7659 ,0,0,0}, - {5003,4975,5001 ,726,726,726 ,0,0,0}, {4991,5001,4975 ,726,726,726 ,0,0,0}, - {8257,8258,7785 ,726,8053,7583 ,0,0,0}, {7787,8259,7786 ,726,726,726 ,0,0,0}, - {8258,8260,7785 ,8053,7922,7583 ,0,0,0}, {8257,7785,8261 ,726,7583,5472 ,0,0,0}, - {7785,8262,8263 ,7583,7664,5488 ,0,0,0}, {8260,8262,7785 ,7922,7664,7583 ,0,0,0}, - {8264,8265,7785 ,7920,726,7583 ,0,0,0}, {8263,8266,7785 ,5488,5471,7583 ,0,0,0}, - {8267,8268,7787 ,7664,7583,726 ,0,0,0}, {7787,8269,8270 ,726,5488,7664 ,0,0,0}, - {8271,7787,8272 ,726,726,726 ,0,0,0}, {8273,8274,7787 ,7664,7664,726 ,0,0,0}, - {8275,8272,7787 ,726,726,726 ,0,0,0}, {7787,8271,8259 ,726,726,726 ,0,0,0}, - {8273,7787,8276 ,7664,726,7664 ,0,0,0}, {7787,8274,8275 ,726,7664,726 ,0,0,0}, - {7787,8268,8276 ,726,7583,7664 ,0,0,0}, {7787,8270,8277 ,726,7664,726 ,0,0,0}, - {7787,8277,8267 ,726,726,7664 ,0,0,0}, {8265,7787,7785 ,726,726,7583 ,0,0,0}, - {8265,8269,7787 ,726,5488,726 ,0,0,0}, {7785,8266,8264 ,7583,5471,7920 ,0,0,0}, - {6814,7786,8259 ,726,726,726 ,0,0,0}, {8261,7785,8278 ,5472,7583,7793 ,0,0,0}, - {8279,7785,7784 ,5471,7583,7664 ,0,0,0}, {7785,8279,8278 ,7583,5471,7793 ,0,0,0}, - {8279,7784,6759 ,5471,7664,7920 ,0,0,0}, {6366,6365,8277 ,8054,8055,8056 ,0,0,0}, - {8270,6375,6366 ,8057,8058,8054 ,0,0,0}, {8270,8269,6375 ,8057,8058,8058 ,0,0,0}, - {8277,8270,6366 ,8056,8057,8054 ,0,0,0}, {6365,6544,8267 ,8055,8059,8060 ,0,0,0}, - {6442,6386,8276 ,8061,8062,8063 ,0,0,0}, {8268,8267,6544 ,8064,8060,8059 ,0,0,0}, - {6544,6442,8268 ,8059,8061,8064 ,0,0,0}, {8276,8268,6442 ,8063,8064,8061 ,0,0,0}, - {6365,8267,8277 ,8055,8060,8056 ,0,0,0}, {8276,6386,8273 ,8063,8062,8065 ,0,0,0}, - {6385,8274,8273 ,8066,8067,8065 ,0,0,0}, {8273,6386,6385 ,8065,8062,8066 ,0,0,0}, - {8274,6385,6545 ,8067,8066,8068 ,0,0,0}, {6393,8275,6545 ,8069,8070,8068 ,0,0,0}, - {6393,6392,8272 ,8069,8071,8072 ,0,0,0}, {6393,8272,8275 ,8069,8072,8070 ,0,0,0}, - {8271,6407,8259 ,8073,8074,8075 ,0,0,0}, {8272,6392,8271 ,8072,8071,8073 ,0,0,0}, - {8271,6392,6407 ,8073,8071,8074 ,0,0,0}, {6407,6410,8259 ,8074,8075,8075 ,0,0,0}, - {8274,6545,8275 ,8067,8068,8070 ,0,0,0}, {6198,8269,8265 ,8076,8058,8077 ,0,0,0}, - {8269,6198,6375 ,8058,8076,8058 ,0,0,0}, {8264,6446,8265 ,8078,8079,8077 ,0,0,0}, - {6198,8265,6446 ,8076,8077,8079 ,0,0,0}, {8264,8266,6390 ,8078,8080,8081 ,0,0,0}, - {6390,6446,8264 ,8081,8079,8078 ,0,0,0}, {6391,8266,8263 ,8082,8080,8083 ,0,0,0}, - {8266,6391,6390 ,8080,8082,8081 ,0,0,0}, {8262,6568,8263 ,8084,8085,8083 ,0,0,0}, - {6391,8263,6568 ,8082,8083,8085 ,0,0,0}, {8262,8260,6336 ,8084,8086,8087 ,0,0,0}, - {6336,6568,8262 ,8087,8085,8084 ,0,0,0}, {6335,8260,8258 ,8088,8086,8089 ,0,0,0}, - {8260,6335,6336 ,8086,8088,8087 ,0,0,0}, {8257,6419,8258 ,8090,8091,8089 ,0,0,0}, - {6335,8258,6419 ,8088,8089,8091 ,0,0,0}, {8257,8261,6459 ,8090,8092,8093 ,0,0,0}, - {6459,6419,8257 ,8093,8091,8090 ,0,0,0}, {6460,8261,8278 ,8094,8092,8095 ,0,0,0}, - {8261,6460,6459 ,8092,8094,8093 ,0,0,0}, {6460,8278,6461 ,8094,8095,8096 ,0,0,0}, - {6461,8278,8279 ,8096,8095,8096 ,0,0,0}, {6766,8279,6759 ,8097,8098,8097 ,0,0,0}, - {8279,6767,6770 ,8098,8097,8098 ,0,0,0}, {6766,6767,8279 ,8097,8097,8098 ,0,0,0}, - {8279,6776,6781 ,8098,8098,8097 ,0,0,0}, {6770,6776,8279 ,8098,8098,8098 ,0,0,0}, - {8279,6785,6744 ,8098,8098,8097 ,0,0,0}, {6781,6785,8279 ,8097,8098,8098 ,0,0,0}, - {8279,6748,6747 ,8098,8097,8097 ,0,0,0}, {6744,6748,8279 ,8097,8097,8098 ,0,0,0}, - {8279,6747,6461 ,8098,8097,8098 ,0,0,0}, {6823,8259,6410 ,8099,8099,8099 ,0,0,0}, - {6823,6879,8259 ,8099,8099,8099 ,0,0,0}, {8259,6879,6865 ,8099,8099,8099 ,0,0,0}, - {6819,6825,8259 ,8099,8099,8099 ,0,0,0}, {6819,8259,6865 ,8099,8099,8099 ,0,0,0}, - {6825,6861,8259 ,8099,8099,8099 ,0,0,0}, {8259,6808,6807 ,8099,8099,8099 ,0,0,0}, - {6861,6808,8259 ,8099,8099,8099 ,0,0,0}, {6814,8259,6812 ,8099,8099,8099 ,0,0,0}, - {6807,6812,8259 ,8099,8099,8099 ,0,0,0}, {4952,8280,6602 ,1359,8100,4482 ,0,0,0}, - {8281,6601,8282 ,4475,8101,8102 ,0,0,0}, {6603,6600,8283 ,8103,8104,4478 ,0,0,0}, - {6434,8284,6426 ,8105,8106,8107 ,0,0,0}, {8285,8286,6606 ,4472,8108,8109 ,0,0,0}, - {8287,6463,8288 ,8110,8111,8112 ,0,0,0}, {6462,6424,8289 ,8113,8114,8115 ,0,0,0}, - {6437,6430,8290 ,8116,8117,8118 ,0,0,0}, {6465,8291,6430 ,8119,8120,8117 ,0,0,0}, - {6455,8292,8293 ,8121,8122,8123 ,0,0,0}, {6437,8294,6457 ,8116,8124,8125 ,0,0,0}, - {8295,6454,8293 ,8126,8127,8123 ,0,0,0}, {6455,8293,6454 ,8121,8123,8127 ,0,0,0}, - {8295,8296,6452 ,8126,8128,8129 ,0,0,0}, {6452,6454,8295 ,8129,8127,8126 ,0,0,0}, - {6449,8296,8297 ,8130,8128,8131 ,0,0,0}, {8296,6449,6452 ,8128,8130,8129 ,0,0,0}, - {8298,6450,8297 ,8132,8133,8131 ,0,0,0}, {6449,8297,6450 ,8130,8131,8133 ,0,0,0}, - {8298,4971,4972 ,8132,1435,1435 ,0,0,0}, {4972,6450,8298 ,1435,8133,8132 ,0,0,0}, - {8290,6430,8291 ,8118,8117,8120 ,0,0,0}, {8292,6457,8294 ,8122,8125,8124 ,0,0,0}, - {6457,8292,6455 ,8125,8122,8121 ,0,0,0}, {8290,8294,6437 ,8118,8124,8116 ,0,0,0}, - {8287,8291,6465 ,8110,8120,8119 ,0,0,0}, {6462,8289,8288 ,8113,8115,8112 ,0,0,0}, - {6462,8288,6463 ,8113,8112,8111 ,0,0,0}, {6465,6463,8287 ,8119,8111,8110 ,0,0,0}, - {6424,8299,8289 ,8114,8134,8115 ,0,0,0}, {8299,6424,6426 ,8134,8114,8107 ,0,0,0}, - {8286,8284,6434 ,8108,8106,8105 ,0,0,0}, {8284,8299,6426 ,8106,8134,8107 ,0,0,0}, - {6606,8286,6434 ,8109,8108,8105 ,0,0,0}, {6582,8281,8285 ,4474,4475,4472 ,0,0,0}, - {6582,8285,6606 ,4474,4472,8109 ,0,0,0}, {6601,6603,8282 ,8101,8103,8102 ,0,0,0}, - {6582,6601,8281 ,4474,8101,4475 ,0,0,0}, {6600,8280,8283 ,8104,8100,4478 ,0,0,0}, - {8282,6603,8283 ,8102,8103,4478 ,0,0,0}, {4952,6602,4950 ,1359,4482,1359 ,0,0,0}, - {8280,6600,6602 ,8100,8104,4482 ,0,0,0}, {4946,8284,8286 ,726,726,726 ,0,0,0}, - {8292,4953,8293 ,726,7626,7758 ,0,0,0}, {8298,8297,8296 ,7625,7625,726 ,0,0,0}, - {8294,8290,4933 ,8135,7628,7626 ,0,0,0}, {4933,4931,8294 ,7626,7626,8135 ,0,0,0}, - {4943,8288,8289 ,726,7627,726 ,0,0,0}, {4936,8287,4937 ,726,7628,726 ,0,0,0}, - {4940,8284,4946 ,726,726,726 ,0,0,0}, {8289,8299,4945 ,726,726,726 ,0,0,0}, - {8281,8282,8283 ,7628,7628,726 ,0,0,0}, {4949,4946,8286 ,726,726,726 ,0,0,0}, - {4952,4949,8280 ,726,726,726 ,0,0,0}, {8280,8281,8283 ,726,7628,726 ,0,0,0}, - {8280,4949,8281 ,726,726,7628 ,0,0,0}, {8286,8285,4949 ,726,726,726 ,0,0,0}, - {4949,8285,8281 ,726,726,7628 ,0,0,0}, {8284,4940,4945 ,726,726,726 ,0,0,0}, - {4949,4948,4946 ,726,726,726 ,0,0,0}, {4945,4943,8289 ,726,726,726 ,0,0,0}, - {4945,8299,8284 ,726,726,726 ,0,0,0}, {8287,8288,4937 ,7628,7627,726 ,0,0,0}, - {4937,8288,4943 ,726,7627,726 ,0,0,0}, {4934,8291,4936 ,726,726,726 ,0,0,0}, - {4936,8291,8287 ,726,726,7628 ,0,0,0}, {4934,4933,8290 ,726,7626,7628 ,0,0,0}, - {8290,8291,4934 ,7628,726,726 ,0,0,0}, {4931,4953,8292 ,7626,7626,726 ,0,0,0}, - {4931,8292,8294 ,7626,726,8135 ,0,0,0}, {4954,8293,4953 ,7626,7758,7626 ,0,0,0}, - {8295,8293,4957 ,8135,7758,7628 ,0,0,0}, {4954,4957,8293 ,7626,7628,7758 ,0,0,0}, - {4957,4959,8296 ,7628,726,726 ,0,0,0}, {8296,8295,4957 ,726,8135,7628 ,0,0,0}, - {8298,4959,4960 ,7625,726,7626 ,0,0,0}, {4959,8298,8296 ,726,7625,726 ,0,0,0}, - {4963,4966,4969 ,7626,726,7626 ,0,0,0}, {4960,4963,8298 ,7626,7626,7625 ,0,0,0}, - {4969,8298,4963 ,7626,7625,7626 ,0,0,0}, {4963,4965,4966 ,7626,7627,726 ,0,0,0}, - {8298,4969,4971 ,7625,7626,8135 ,0,0,0}, {4913,8300,6588 ,1359,8136,8137 ,0,0,0}, - {6571,6573,8301 ,8138,8139,8140 ,0,0,0}, {6590,6592,8302 ,8141,8142,8143 ,0,0,0}, - {6378,8303,6377 ,8144,8145,8146 ,0,0,0}, {8304,8305,6572 ,8147,8148,8149 ,0,0,0}, - {8306,8307,6570 ,8150,8151,8152 ,0,0,0}, {8306,6569,8308 ,8150,8153,8154 ,0,0,0}, - {8309,8310,6502 ,8155,8156,8157 ,0,0,0}, {6502,6501,8309 ,8157,8158,8155 ,0,0,0}, - {6416,8310,8311 ,8159,8156,8160 ,0,0,0}, {8310,6416,6502 ,8156,8159,8157 ,0,0,0}, - {8312,6415,8311 ,8161,8162,8160 ,0,0,0}, {6416,8311,6415 ,8159,8160,8162 ,0,0,0}, - {8312,4927,4928 ,8161,1435,1435 ,0,0,0}, {4928,6415,8312 ,1435,8162,8161 ,0,0,0}, - {8303,6378,8305 ,8145,8144,8148 ,0,0,0}, {8307,6501,6570 ,8151,8158,8152 ,0,0,0}, - {8309,6501,8307 ,8155,8158,8151 ,0,0,0}, {8301,6573,8313 ,8140,8139,8163 ,0,0,0}, - {8308,6569,6377 ,8154,8153,8146 ,0,0,0}, {8306,6570,6569 ,8150,8152,8153 ,0,0,0}, - {8303,8308,6377 ,8145,8154,8146 ,0,0,0}, {6572,8305,6378 ,8149,8148,8144 ,0,0,0}, - {6571,8301,8304 ,8138,8140,8147 ,0,0,0}, {8304,6572,6571 ,8147,8149,8138 ,0,0,0}, - {6592,8300,8302 ,8142,8136,8143 ,0,0,0}, {8313,6590,8302 ,8163,8141,8143 ,0,0,0}, - {6573,6590,8313 ,8139,8141,8163 ,0,0,0}, {4913,6588,4914 ,1359,8137,1359 ,0,0,0}, - {8300,6592,6588 ,8136,8142,8137 ,0,0,0}, {8310,8305,8304 ,726,7661,7661 ,0,0,0}, - {8306,8308,8309 ,7661,7658,726 ,0,0,0}, {8309,8307,8306 ,726,726,7661 ,0,0,0}, - {8303,8305,8309 ,7658,7661,726 ,0,0,0}, {8303,8309,8308 ,7658,726,7658 ,0,0,0}, - {8304,8311,8310 ,7661,726,726 ,0,0,0}, {8305,8310,8309 ,7661,726,726 ,0,0,0}, - {8311,8304,8301 ,726,7661,7658 ,0,0,0}, {8301,8313,8312 ,7658,7661,726 ,0,0,0}, - {8312,8311,8301 ,726,726,7658 ,0,0,0}, {4927,8313,8302 ,726,7661,7658 ,0,0,0}, - {8313,4927,8312 ,7661,726,726 ,0,0,0}, {4912,4921,4913 ,7658,726,726 ,0,0,0}, - {8300,4925,8302 ,7658,7660,7658 ,0,0,0}, {4919,4912,4910 ,726,7658,726 ,0,0,0}, - {4900,4899,4906 ,726,726,726 ,0,0,0}, {4916,4908,4915 ,726,726,726 ,0,0,0}, - {4906,4903,4902 ,726,726,726 ,0,0,0}, {4906,4899,4915 ,726,726,726 ,0,0,0}, - {4900,4906,4902 ,726,726,726 ,0,0,0}, {4910,4908,4916 ,726,726,726 ,0,0,0}, - {4908,4906,4915 ,726,726,726 ,0,0,0}, {4921,4912,4919 ,726,7658,726 ,0,0,0}, - {4919,4910,4916 ,726,726,726 ,0,0,0}, {4913,4922,8300 ,726,726,7658 ,0,0,0}, - {4913,4921,4922 ,726,726,726 ,0,0,0}, {8302,4925,4927 ,7658,7660,726 ,0,0,0}, - {4922,4925,8300 ,726,7660,7658 ,0,0,0}, {8314,8315,7782 ,726,726,7664 ,0,0,0}, - {8316,8314,7782 ,726,726,7664 ,0,0,0}, {8316,7782,8317 ,726,7664,726 ,0,0,0}, - {8318,7782,8315 ,726,7664,726 ,0,0,0}, {8319,8320,7782 ,726,726,7664 ,0,0,0}, - {8319,7782,8318 ,726,7664,726 ,0,0,0}, {8321,7782,7780 ,726,7664,726 ,0,0,0}, - {8317,7782,8321 ,726,7664,726 ,0,0,0}, {8322,7782,8320 ,726,7664,726 ,0,0,0}, - {7782,8322,8323 ,7664,726,726 ,0,0,0}, {8321,7780,8324 ,726,726,726 ,0,0,0}, - {8325,7782,8323 ,726,7664,726 ,0,0,0}, {8326,8324,7780 ,7583,726,726 ,0,0,0}, - {7780,8327,8326 ,726,7664,7583 ,0,0,0}, {7782,8325,8328 ,7664,726,726 ,0,0,0}, - {7782,8328,8329 ,7664,726,726 ,0,0,0}, {8330,8327,7780 ,726,7664,726 ,0,0,0}, - {8331,8332,7780 ,726,726,726 ,0,0,0}, {8332,8330,7780 ,726,726,726 ,0,0,0}, - {8333,7780,8334 ,726,726,726 ,0,0,0}, {8333,8331,7780 ,726,726,726 ,0,0,0}, - {7783,8329,6720 ,7664,726,726 ,0,0,0}, {8329,7783,7782 ,726,7664,7664 ,0,0,0}, - {8334,7780,8335 ,726,726,726 ,0,0,0}, {8336,7780,7781 ,726,726,7664 ,0,0,0}, - {7780,8336,8335 ,726,726,726 ,0,0,0}, {8336,7781,6644 ,726,7664,5488 ,0,0,0}, - {6432,6425,8314 ,8164,8165,8166 ,0,0,0}, {8316,6433,6432 ,8167,8168,8164 ,0,0,0}, - {8316,8317,6433 ,8167,8168,8168 ,0,0,0}, {8314,8316,6432 ,8166,8167,8164 ,0,0,0}, - {6425,6566,8315 ,8165,8169,8170 ,0,0,0}, {6464,6466,8319 ,8171,8172,8173 ,0,0,0}, - {8318,8315,6566 ,8174,8170,8169 ,0,0,0}, {6566,6464,8318 ,8169,8171,8174 ,0,0,0}, - {8319,8318,6464 ,8173,8174,8171 ,0,0,0}, {6425,8315,8314 ,8165,8170,8166 ,0,0,0}, - {8319,6466,8320 ,8173,8172,8175 ,0,0,0}, {6429,8322,8320 ,8176,8177,8175 ,0,0,0}, - {8320,6466,6429 ,8175,8172,8176 ,0,0,0}, {8322,6429,6431 ,8177,8176,8178 ,0,0,0}, - {6436,8323,6431 ,8179,8180,8178 ,0,0,0}, {6436,6468,8325 ,8179,8181,8182 ,0,0,0}, - {6436,8325,8323 ,8179,8182,8180 ,0,0,0}, {8328,6470,8329 ,8183,8184,8185 ,0,0,0}, - {8325,6468,8328 ,8182,8181,8183 ,0,0,0}, {8328,6468,6470 ,8183,8181,8184 ,0,0,0}, - {6470,6469,8329 ,8184,8185,8185 ,0,0,0}, {8322,6431,8323 ,8177,8178,8180 ,0,0,0}, - {6428,8317,8321 ,8186,8168,8187 ,0,0,0}, {8317,6428,6433 ,8168,8186,8168 ,0,0,0}, - {8324,6427,8321 ,8188,8189,8187 ,0,0,0}, {6428,8321,6427 ,8186,8187,8189 ,0,0,0}, - {8324,8326,6594 ,8188,8190,8191 ,0,0,0}, {6594,6427,8324 ,8191,8189,8188 ,0,0,0}, - {6422,8326,8327 ,8192,8190,8193 ,0,0,0}, {8326,6422,6594 ,8190,8192,8191 ,0,0,0}, - {8330,6423,8327 ,8194,8195,8193 ,0,0,0}, {6422,8327,6423 ,8192,8193,8195 ,0,0,0}, - {8330,8332,6496 ,8194,8196,8197 ,0,0,0}, {6496,6423,8330 ,8197,8195,8194 ,0,0,0}, - {6497,8332,8331 ,8198,8196,8199 ,0,0,0}, {8332,6497,6496 ,8196,8198,8197 ,0,0,0}, - {8333,6240,8331 ,8200,8201,8199 ,0,0,0}, {6497,8331,6240 ,8198,8199,8201 ,0,0,0}, - {8333,8334,6243 ,8200,8202,8203 ,0,0,0}, {6243,6240,8333 ,8203,8201,8200 ,0,0,0}, - {6244,8334,8335 ,8204,8202,8205 ,0,0,0}, {8334,6244,6243 ,8202,8204,8203 ,0,0,0}, - {6244,8335,6245 ,8204,8205,8206 ,0,0,0}, {6245,8335,8336 ,8206,8205,8206 ,0,0,0}, - {6645,8336,6644 ,8207,8207,8207 ,0,0,0}, {8336,6675,6678 ,8207,8207,8207 ,0,0,0}, - {6645,6675,8336 ,8207,8207,8207 ,0,0,0}, {8336,6684,6689 ,8207,8207,8207 ,0,0,0}, - {6678,6684,8336 ,8207,8207,8207 ,0,0,0}, {8336,6693,6623 ,8207,8207,8207 ,0,0,0}, - {6689,6693,8336 ,8207,8207,8207 ,0,0,0}, {8336,6626,6625 ,8207,8207,8207 ,0,0,0}, - {6623,6626,8336 ,8207,8207,8207 ,0,0,0}, {8336,6625,6245 ,8207,8207,8207 ,0,0,0}, - {6735,8329,6469 ,8208,8208,8208 ,0,0,0}, {6735,6786,8329 ,8208,8208,8208 ,0,0,0}, - {8329,6786,6772 ,8208,8208,8208 ,0,0,0}, {6729,6722,8329 ,8208,8208,8208 ,0,0,0}, - {6729,8329,6772 ,8208,8208,8208 ,0,0,0}, {6722,6768,8329 ,8208,8208,8208 ,0,0,0}, - {8329,6760,6714 ,8208,8208,8208 ,0,0,0}, {6768,6760,8329 ,8208,8208,8208 ,0,0,0}, - {6720,8329,6716 ,8208,8208,8208 ,0,0,0}, {6714,6716,8329 ,8208,8208,8208 ,0,0,0}, - {4876,8337,6232 ,1711,8209,4414 ,0,0,0}, {8338,6495,8339 ,8210,8211,8212 ,0,0,0}, - {6480,6233,8340 ,8213,8214,4410 ,0,0,0}, {6494,8341,6224 ,4402,8215,8216 ,0,0,0}, - {8342,8343,6493 ,8217,8218,8219 ,0,0,0}, {8344,6254,8345 ,8220,8221,8222 ,0,0,0}, - {6253,6479,8346 ,8223,8224,8225 ,0,0,0}, {6227,6226,8347 ,8226,8227,8228 ,0,0,0}, - {6249,8348,6226 ,8229,8230,8227 ,0,0,0}, {6230,8349,8350 ,8231,8232,8233 ,0,0,0}, - {6227,8351,6229 ,8226,8234,8235 ,0,0,0}, {8352,6246,8350 ,8236,8237,8233 ,0,0,0}, - {6230,8350,6246 ,8231,8233,8237 ,0,0,0}, {8352,8353,6234 ,8236,8238,8239 ,0,0,0}, - {6234,6246,8352 ,8239,8237,8236 ,0,0,0}, {6482,8353,8354 ,8240,8238,8241 ,0,0,0}, - {8353,6482,6234 ,8238,8240,8239 ,0,0,0}, {8355,6242,8354 ,8242,8243,8241 ,0,0,0}, - {6482,8354,6242 ,8240,8241,8243 ,0,0,0}, {8355,4895,4896 ,8242,1790,1790 ,0,0,0}, - {4896,6242,8355 ,1790,8243,8242 ,0,0,0}, {8347,6226,8348 ,8228,8227,8230 ,0,0,0}, - {8349,6229,8351 ,8232,8235,8234 ,0,0,0}, {6229,8349,6230 ,8235,8232,8231 ,0,0,0}, - {8347,8351,6227 ,8228,8234,8226 ,0,0,0}, {8344,8348,6249 ,8220,8230,8229 ,0,0,0}, - {6253,8346,8345 ,8223,8225,8222 ,0,0,0}, {6253,8345,6254 ,8223,8222,8221 ,0,0,0}, - {6249,6254,8344 ,8229,8221,8220 ,0,0,0}, {6479,8356,8346 ,8224,8244,8225 ,0,0,0}, - {8356,6479,6224 ,8244,8224,8216 ,0,0,0}, {8343,8341,6494 ,8218,8215,4402 ,0,0,0}, - {8341,8356,6224 ,8215,8244,8216 ,0,0,0}, {6493,8343,6494 ,8219,8218,4402 ,0,0,0}, - {6194,8338,8342 ,8245,8210,8217 ,0,0,0}, {6194,8342,6493 ,8245,8217,8219 ,0,0,0}, - {6495,6480,8339 ,8211,8213,8212 ,0,0,0}, {6194,6495,8338 ,8245,8211,8210 ,0,0,0}, - {6233,8337,8340 ,8214,8209,4410 ,0,0,0}, {8339,6480,8340 ,8212,8213,4410 ,0,0,0}, - {4876,6232,4874 ,1711,4414,1711 ,0,0,0}, {8337,6233,6232 ,8209,8214,4414 ,0,0,0}, - {8342,8347,8348 ,726,726,7626 ,0,0,0}, {8356,8345,8346 ,726,726,726 ,0,0,0}, - {8344,8356,8341 ,726,726,726 ,0,0,0}, {8343,8344,8341 ,726,726,726 ,0,0,0}, - {8343,8348,8344 ,726,7626,726 ,0,0,0}, {8356,8344,8345 ,726,726,726 ,0,0,0}, - {8343,8342,8348 ,726,726,7626 ,0,0,0}, {8338,8351,8347 ,726,726,726 ,0,0,0}, - {8342,8338,8347 ,726,726,726 ,0,0,0}, {8351,8339,8349 ,726,726,7626 ,0,0,0}, - {8339,8351,8338 ,726,726,726 ,0,0,0}, {8350,8349,8340 ,7628,7626,726 ,0,0,0}, - {8339,8340,8349 ,726,726,7626 ,0,0,0}, {8337,8352,8350 ,726,726,7628 ,0,0,0}, - {8350,8340,8337 ,7628,726,726 ,0,0,0}, {8352,4876,8353 ,726,726,726 ,0,0,0}, - {4876,8352,8337 ,726,726,726 ,0,0,0}, {8354,8353,4873 ,7625,726,726 ,0,0,0}, - {4876,4873,8353 ,726,726,726 ,0,0,0}, {8354,4873,4872 ,7625,726,726 ,0,0,0}, - {8355,8354,4872 ,726,7625,726 ,0,0,0}, {4872,4870,8355 ,726,726,726 ,0,0,0}, - {4864,4895,4870 ,726,726,726 ,0,0,0}, {8355,4870,4895 ,726,726,726 ,0,0,0}, - {4867,4861,4889 ,726,726,7625 ,0,0,0}, {4864,4869,4893 ,726,726,726 ,0,0,0}, - {4858,4883,4884 ,7626,726,726 ,0,0,0}, {4884,4887,4860 ,726,726,726 ,0,0,0}, - {4883,4857,4881 ,726,7625,7625 ,0,0,0}, {4857,4878,4881 ,7625,726,7625 ,0,0,0}, - {4855,4878,4857 ,726,726,7625 ,0,0,0}, {4855,4877,4878 ,726,726,726 ,0,0,0}, - {4860,4858,4884 ,726,7626,726 ,0,0,0}, {4857,4883,4858 ,7625,726,7626 ,0,0,0}, - {4887,4889,4861 ,726,7625,726 ,0,0,0}, {4860,4887,4861 ,726,726,726 ,0,0,0}, - {4867,4890,4869 ,726,726,726 ,0,0,0}, {4867,4889,4890 ,726,7625,726 ,0,0,0}, - {4864,4893,4895 ,726,726,726 ,0,0,0}, {4890,4893,4869 ,726,726,726 ,0,0,0}, - {4837,8357,6506 ,1711,8246,8247 ,0,0,0}, {6565,6579,8358 ,8248,8249,8250 ,0,0,0}, - {6578,6507,8359 ,8251,8252,8253 ,0,0,0}, {6418,8360,6417 ,8254,8255,8256 ,0,0,0}, - {8361,8362,6599 ,8257,8258,8259 ,0,0,0}, {8363,8364,6597 ,8260,8261,8262 ,0,0,0}, - {8363,6596,8365 ,8260,8263,8264 ,0,0,0}, {8366,8367,6499 ,8265,8266,8267 ,0,0,0}, - {6499,6500,8366 ,8267,8268,8265 ,0,0,0}, {6595,8367,8368 ,8269,8266,8270 ,0,0,0}, - {8367,6595,6499 ,8266,8269,8267 ,0,0,0}, {8369,6498,8368 ,8271,8272,8270 ,0,0,0}, - {6595,8368,6498 ,8269,8270,8272 ,0,0,0}, {8369,4851,4852 ,8271,1790,1790 ,0,0,0}, - {4852,6498,8369 ,1790,8272,8271 ,0,0,0}, {8360,6418,8362 ,8255,8254,8258 ,0,0,0}, - {8364,6500,6597 ,8261,8268,8262 ,0,0,0}, {8366,6500,8364 ,8265,8268,8261 ,0,0,0}, - {8358,6579,8370 ,8250,8249,8273 ,0,0,0}, {8365,6596,6417 ,8264,8263,8256 ,0,0,0}, - {8363,6597,6596 ,8260,8262,8263 ,0,0,0}, {8360,8365,6417 ,8255,8264,8256 ,0,0,0}, - {6599,8362,6418 ,8259,8258,8254 ,0,0,0}, {6565,8358,8361 ,8248,8250,8257 ,0,0,0}, - {8361,6599,6565 ,8257,8259,8248 ,0,0,0}, {6507,8357,8359 ,8252,8246,8253 ,0,0,0}, - {8370,6578,8359 ,8273,8251,8253 ,0,0,0}, {6579,6578,8370 ,8249,8251,8273 ,0,0,0}, - {4837,6506,4838 ,1711,8247,1711 ,0,0,0}, {8357,6507,6506 ,8246,8252,8247 ,0,0,0}, - {4851,8369,8368 ,726,7658,726 ,0,0,0}, {8370,4826,8358 ,726,726,726 ,0,0,0}, - {4849,8368,8367 ,7660,726,7660 ,0,0,0}, {8363,4845,8364 ,7660,726,7660 ,0,0,0}, - {4846,4849,8366 ,7660,7660,7583 ,0,0,0}, {4839,8360,8362 ,7660,7661,7661 ,0,0,0}, - {4843,8363,8365 ,726,7660,7658 ,0,0,0}, {4824,8358,4826 ,726,726,726 ,0,0,0}, - {8362,8361,4823 ,7661,726,726 ,0,0,0}, {8357,4832,4830 ,726,726,726 ,0,0,0}, - {8359,4827,8370 ,726,726,726 ,0,0,0}, {4837,4836,4832 ,726,726,726 ,0,0,0}, - {4834,4832,4836 ,726,726,726 ,0,0,0}, {4832,8357,4837 ,726,726,726 ,0,0,0}, - {8359,4830,4827 ,726,726,726 ,0,0,0}, {8359,8357,4830 ,726,726,726 ,0,0,0}, - {8361,8358,4824 ,726,726,726 ,0,0,0}, {4826,8370,4827 ,726,726,726 ,0,0,0}, - {4823,4839,8362 ,726,7660,7661 ,0,0,0}, {4824,4823,8361 ,726,726,726 ,0,0,0}, - {8365,8360,4840 ,7658,7661,7659 ,0,0,0}, {4840,8360,4839 ,7659,7661,7660 ,0,0,0}, - {4843,8365,4840 ,726,7658,7659 ,0,0,0}, {4846,8364,4845 ,7660,7660,726 ,0,0,0}, - {8363,4843,4845 ,7660,726,726 ,0,0,0}, {4849,8367,8366 ,7660,7660,7583 ,0,0,0}, - {4846,8366,8364 ,7660,7583,7660 ,0,0,0}, {4849,4851,8368 ,7660,726,726 ,0,0,0}, - {6604,4796,8371 ,8274,8275,8276 ,0,0,0}, {6605,6581,8372 ,8277,8278,8279 ,0,0,0}, - {8373,6581,6598 ,8280,8278,8281 ,0,0,0}, {8374,8375,6505 ,8282,8283,8284 ,0,0,0}, - {8376,6577,6576 ,8285,8286,8287 ,0,0,0}, {6586,6574,8377 ,8288,8289,8290 ,0,0,0}, - {6585,8378,8379 ,8291,8292,8293 ,0,0,0}, {6608,8380,6591 ,8294,8295,8296 ,0,0,0}, - {8381,8382,6587 ,1631,8297,1631 ,0,0,0}, {8383,8384,6589 ,8298,8299,8300 ,0,0,0}, - {8383,6609,8385 ,8298,8301,8302 ,0,0,0}, {8386,8387,6584 ,8303,8304,8305 ,0,0,0}, - {8386,6583,8384 ,8303,8306,8299 ,0,0,0}, {6522,8387,8388 ,8307,8304,8308 ,0,0,0}, - {8387,6522,6584 ,8304,8307,8305 ,0,0,0}, {8389,6563,8388 ,8309,8310,8308 ,0,0,0}, - {6522,8388,6563 ,8307,8308,8310 ,0,0,0}, {6504,8389,6557 ,8311,8309,8312 ,0,0,0}, - {6504,6563,8389 ,8311,8310,8309 ,0,0,0}, {6555,6557,8390 ,8313,8312,8314 ,0,0,0}, - {8389,8390,6557 ,8309,8314,8312 ,0,0,0}, {8391,4820,6555 ,8315,126,8313 ,0,0,0}, - {6555,8390,8391 ,8313,8314,8315 ,0,0,0}, {4818,4820,8391 ,126,126,8315 ,0,0,0}, - {6583,6589,8384 ,8306,8300,8299 ,0,0,0}, {8386,6584,6583 ,8303,8305,8306 ,0,0,0}, - {6609,6591,8385 ,8301,8296,8302 ,0,0,0}, {8383,6589,6609 ,8298,8300,8301 ,0,0,0}, - {8382,8380,6608 ,8297,8295,8294 ,0,0,0}, {8380,8385,6591 ,8295,8302,8296 ,0,0,0}, - {6586,8381,6587 ,8288,1631,1631 ,0,0,0}, {6587,8382,6608 ,1631,8297,8294 ,0,0,0}, - {6574,8379,8377 ,8289,8293,8290 ,0,0,0}, {6586,8377,8381 ,8288,8290,1631 ,0,0,0}, - {6585,6607,8378 ,8291,8316,8292 ,0,0,0}, {6574,6585,8379 ,8289,8291,8293 ,0,0,0}, - {6505,8375,6607 ,8284,8283,8316 ,0,0,0}, {8378,6607,8375 ,8292,8316,8283 ,0,0,0}, - {8376,8374,6577 ,8285,8282,8286 ,0,0,0}, {8374,6505,6577 ,8282,8284,8286 ,0,0,0}, - {6605,8392,6576 ,8277,8317,8287 ,0,0,0}, {8392,8376,6576 ,8317,8285,8287 ,0,0,0}, - {6581,8393,8372 ,8278,8318,8279 ,0,0,0}, {6605,8372,8392 ,8277,8279,8317 ,0,0,0}, - {8373,6598,8371 ,8280,8281,8276 ,0,0,0}, {8393,6581,8373 ,8318,8278,8280 ,0,0,0}, - {4796,6604,4795 ,8275,8274,4114 ,0,0,0}, {8371,6598,6604 ,8276,8281,8274 ,0,0,0}, - {8383,8394,8384 ,726,726,726 ,0,0,0}, {8395,4769,8391 ,726,726,726 ,0,0,0}, - {8396,8387,8397 ,726,726,726 ,0,0,0}, {4800,4754,4753 ,726,726,7661 ,0,0,0}, - {4809,4811,4763 ,726,726,726 ,0,0,0}, {8398,8390,8389 ,726,726,726 ,0,0,0}, - {4814,4817,4768 ,726,726,726 ,0,0,0}, {4818,4769,4817 ,726,726,726 ,0,0,0}, - {4766,4764,4815 ,7658,726,726 ,0,0,0}, {4814,4768,4766 ,726,726,7658 ,0,0,0}, - {8398,8395,8390 ,726,726,726 ,0,0,0}, {4811,4812,4764 ,726,726,726 ,0,0,0}, - {4809,4763,4760 ,726,726,726 ,0,0,0}, {4805,4758,4803 ,726,726,726 ,0,0,0}, - {4806,4760,4758 ,726,726,726 ,0,0,0}, {4754,4800,4803 ,726,726,726 ,0,0,0}, - {8396,8389,8388 ,726,726,726 ,0,0,0}, {8384,8399,8386 ,726,7661,726 ,0,0,0}, - {8386,8399,8397 ,726,7661,726 ,0,0,0}, {4733,4773,4772 ,7658,726,7658 ,0,0,0}, - {4799,4753,4733 ,726,7661,7658 ,0,0,0}, {8400,8394,8385 ,726,726,726 ,0,0,0}, - {4773,4737,4774 ,726,7658,726 ,0,0,0}, {4776,4738,4739 ,7661,7658,726 ,0,0,0}, - {8380,8382,8401 ,726,7661,726 ,0,0,0}, {8380,8401,8400 ,726,726,726 ,0,0,0}, - {8382,8381,8402 ,7661,7658,7658 ,0,0,0}, {4780,4779,4739 ,726,726,726 ,0,0,0}, - {4743,4782,4740 ,726,7583,726 ,0,0,0}, {8403,8404,8379 ,726,726,726 ,0,0,0}, - {8404,8402,8377 ,726,7658,726 ,0,0,0}, {4792,4746,4749 ,7664,726,7664 ,0,0,0}, - {8403,8379,8378 ,726,726,7661 ,0,0,0}, {8405,8378,8375 ,726,7661,7664 ,0,0,0}, - {4752,4796,4794 ,726,726,7664 ,0,0,0}, {8406,8371,4752 ,7664,726,726 ,0,0,0}, - {8405,8374,8407 ,726,7583,726 ,0,0,0}, {8373,8408,8393 ,7664,7664,726 ,0,0,0}, - {4774,4737,4738 ,726,7658,7658 ,0,0,0}, {8372,8393,8409 ,7664,726,7664 ,0,0,0}, - {8408,8409,8393 ,7664,7664,726 ,0,0,0}, {8373,8371,8406 ,7664,726,7664 ,0,0,0}, - {8373,8406,8408 ,7664,7664,7664 ,0,0,0}, {8410,8407,8376 ,7664,726,7583 ,0,0,0}, - {8410,8376,8392 ,7664,7583,7664 ,0,0,0}, {4796,4752,8371 ,726,726,726 ,0,0,0}, - {4745,4746,4788 ,726,726,726 ,0,0,0}, {4743,4745,4785 ,726,726,7664 ,0,0,0}, - {8410,8392,8409 ,7664,7664,7664 ,0,0,0}, {8392,8372,8409 ,7664,7664,7664 ,0,0,0}, - {8374,8376,8407 ,7583,7583,726 ,0,0,0}, {8375,8374,8405 ,7664,7583,726 ,0,0,0}, - {8403,8378,8405 ,726,7661,726 ,0,0,0}, {8377,8379,8404 ,726,726,726 ,0,0,0}, - {8381,8377,8402 ,7658,726,7658 ,0,0,0}, {8401,8382,8402 ,726,7661,7658 ,0,0,0}, - {8385,8380,8400 ,726,726,726 ,0,0,0}, {8383,8385,8394 ,726,726,726 ,0,0,0}, - {8399,8384,8394 ,7661,726,726 ,0,0,0}, {8387,8386,8397 ,726,726,726 ,0,0,0}, - {8388,8387,8396 ,726,726,726 ,0,0,0}, {8398,8389,8396 ,726,726,726 ,0,0,0}, - {8391,8390,8395 ,726,726,726 ,0,0,0}, {4818,8391,4769 ,726,726,726 ,0,0,0}, - {4768,4817,4769 ,726,726,726 ,0,0,0}, {4815,4814,4766 ,726,726,7658 ,0,0,0}, - {4812,4815,4764 ,726,726,726 ,0,0,0}, {4763,4811,4764 ,726,726,726 ,0,0,0}, - {4806,4809,4760 ,726,726,726 ,0,0,0}, {4805,4806,4758 ,726,726,726 ,0,0,0}, - {4754,4803,4758 ,726,726,726 ,0,0,0}, {4799,4800,4753 ,726,726,7661 ,0,0,0}, - {4772,4799,4733 ,7658,726,7658 ,0,0,0}, {4737,4773,4733 ,7658,726,7658 ,0,0,0}, - {4779,4776,4739 ,726,7661,726 ,0,0,0}, {4776,4774,4738 ,7661,726,7658 ,0,0,0}, - {4740,4780,4739 ,726,726,726 ,0,0,0}, {4743,4785,4782 ,726,7664,7583 ,0,0,0}, - {4740,4782,4780 ,726,7583,726 ,0,0,0}, {4745,4786,4785 ,726,7664,7664 ,0,0,0}, - {4788,4746,4792 ,726,726,7664 ,0,0,0}, {4786,4745,4788 ,7664,726,726 ,0,0,0}, - {4792,4749,4794 ,7664,7664,7664 ,0,0,0}, {4752,4794,4749 ,726,7664,7664 ,0,0,0}, - {8411,8412,4736 ,726,726,726 ,0,0,0}, {4755,4757,4765 ,726,726,726 ,0,0,0}, - {4734,4755,4770 ,726,726,726 ,0,0,0}, {4736,4735,8411 ,726,726,726 ,0,0,0}, - {4761,4762,4765 ,726,726,726 ,0,0,0}, {4756,4759,4757 ,726,726,726 ,0,0,0}, - {4761,4765,4759 ,726,726,726 ,0,0,0}, {4757,4759,4765 ,726,726,726 ,0,0,0}, - {4765,4767,4755 ,726,726,726 ,0,0,0}, {8411,4734,4770 ,726,726,726 ,0,0,0}, - {4770,4755,4767 ,726,726,726 ,0,0,0}, {4736,8412,8413 ,726,726,726 ,0,0,0}, - {8411,4735,4734 ,726,726,726 ,0,0,0}, {4741,8413,8414 ,726,726,726 ,0,0,0}, - {8413,4741,4736 ,726,726,726 ,0,0,0}, {8414,4744,4742 ,726,726,7658 ,0,0,0}, - {4741,8414,4742 ,726,726,7658 ,0,0,0}, {8415,4744,8414 ,726,726,726 ,0,0,0}, - {4744,8416,4747 ,726,726,7661 ,0,0,0}, {8416,4744,8415 ,726,726,726 ,0,0,0}, - {8416,8417,4747 ,726,726,7661 ,0,0,0}, {4748,8417,4750 ,726,726,7661 ,0,0,0}, - {4748,4747,8417 ,726,7661,726 ,0,0,0}, {4750,8418,8419 ,7661,726,726 ,0,0,0}, - {8417,8418,4750 ,726,726,7661 ,0,0,0}, {8420,4751,8419 ,726,7658,726 ,0,0,0}, - {4750,8419,4751 ,7661,726,7658 ,0,0,0}, {8421,8422,8423 ,726,726,7660 ,0,0,0}, - {8423,8424,8421 ,7660,726,726 ,0,0,0}, {8422,8425,8426 ,726,726,7658 ,0,0,0}, - {8422,8420,8423 ,726,726,7660 ,0,0,0}, {8422,8427,8420 ,726,7661,726 ,0,0,0}, - {8422,8421,8425 ,726,726,726 ,0,0,0}, {8420,8427,4751 ,726,7661,7658 ,0,0,0}, - {8427,4752,4751 ,8319,81,8320 ,0,0,0}, {8425,8410,8426 ,8321,8322,8323 ,0,0,0}, - {8422,8409,8408 ,8324,8325,8326 ,0,0,0}, {8423,8420,8403 ,8327,8328,8329 ,0,0,0}, - {8421,8424,8405 ,8330,8331,8332 ,0,0,0}, {8417,8401,8418 ,8333,8334,8335 ,0,0,0}, - {8402,8419,8418 ,8336,8337,8335 ,0,0,0}, {8415,8399,8416 ,7530,8338,8339 ,0,0,0}, - {8394,8417,8416 ,8340,8333,8339 ,0,0,0}, {8414,8396,8397 ,8341,8342,8343 ,0,0,0}, - {8397,8415,8414 ,8343,7530,8341 ,0,0,0}, {8396,8413,8398 ,8342,8344,8345 ,0,0,0}, - {8413,8396,8414 ,8344,8342,8341 ,0,0,0}, {8395,8398,8412 ,8346,8345,8347 ,0,0,0}, - {8413,8412,8398 ,8344,8347,8345 ,0,0,0}, {4770,8395,8411 ,96,8346,8348 ,0,0,0}, - {8395,8412,8411 ,8346,8347,8348 ,0,0,0}, {4769,8395,4770 ,96,8346,96 ,0,0,0}, - {8394,8416,8399 ,8340,8339,8338 ,0,0,0}, {8397,8399,8415 ,8343,8338,7530 ,0,0,0}, - {8400,8401,8417 ,8349,8334,8333 ,0,0,0}, {8394,8400,8417 ,8340,8349,8333 ,0,0,0}, - {8404,8419,8402 ,8350,8337,8336 ,0,0,0}, {8401,8402,8418 ,8334,8336,8335 ,0,0,0}, - {8403,8420,8404 ,8329,8328,8350 ,0,0,0}, {8419,8404,8420 ,8337,8350,8328 ,0,0,0}, - {8405,8424,8403 ,8332,8331,8329 ,0,0,0}, {8424,8423,8403 ,8331,8327,8329 ,0,0,0}, - {8407,8425,8421 ,7516,8321,8330 ,0,0,0}, {8407,8421,8405 ,7516,8330,8332 ,0,0,0}, - {8410,8409,8426 ,8322,8325,8323 ,0,0,0}, {8407,8410,8425 ,7516,8322,8321 ,0,0,0}, - {8422,8408,8427 ,8324,8326,8319 ,0,0,0}, {8426,8409,8422 ,8323,8325,8324 ,0,0,0}, - {4752,8427,8406 ,81,8319,8351 ,0,0,0}, {8427,8408,8406 ,8319,8326,8351 ,0,0,0} -// MotorHacker.prt - , {8428,8429,8430 ,4056,4057,4058 ,0,0,0}, {8431,8432,8430 ,4059,4060,4058 ,0,0,0}, - {8428,8430,8432 ,4056,4058,4060 ,0,0,0}, {8433,8431,8434 ,4061,4059,4062 ,0,0,0}, - {8433,8432,8431 ,4061,4060,4059 ,0,0,0}, {8435,8434,8436 ,4063,4062,4064 ,0,0,0}, - {8431,8436,8434 ,4059,4064,4062 ,0,0,0}, {8437,8438,8435 ,4065,4066,4063 ,0,0,0}, - {8435,8436,8437 ,4063,4064,4065 ,0,0,0}, {8438,8439,8440 ,4066,4067,4068 ,0,0,0}, - {8439,8438,8437 ,4067,4066,4065 ,0,0,0}, {8441,8440,8442 ,4069,4068,4070 ,0,0,0}, - {8439,8442,8440 ,4067,4070,4068 ,0,0,0}, {8443,8444,8441 ,4071,4072,4069 ,0,0,0}, - {8441,8442,8443 ,4069,4070,4071 ,0,0,0}, {8445,8446,8444 ,4073,81,4072 ,0,0,0}, - {8445,8444,8443 ,4073,4072,4071 ,0,0,0}, {8446,8447,8444 ,81,81,4072 ,0,0,0}, - {8448,8429,8428 ,4074,4057,4056 ,0,0,0}, {8448,8449,8450 ,4074,4075,4076 ,0,0,0}, - {8450,8429,8448 ,4076,4057,4074 ,0,0,0}, {8451,8452,8449 ,4077,4078,4075 ,0,0,0}, - {8449,8452,8450 ,4075,4078,4076 ,0,0,0}, {8453,8454,8451 ,4079,4080,4077 ,0,0,0}, - {8451,8449,8453 ,4077,4075,4079 ,0,0,0}, {8454,8455,8456 ,4080,4081,4082 ,0,0,0}, - {8455,8454,8453 ,4081,4080,4079 ,0,0,0}, {8457,8456,8458 ,4083,4082,4084 ,0,0,0}, - {8455,8458,8456 ,4081,4084,4082 ,0,0,0}, {8459,8460,8457 ,4085,4086,4083 ,0,0,0}, - {8457,8458,8459 ,4083,4084,4085 ,0,0,0}, {8460,8461,8462 ,4086,4087,4088 ,0,0,0}, - {8461,8460,8459 ,4087,4086,4085 ,0,0,0}, {8462,8463,8464 ,4088,4089,4090 ,0,0,0}, - {8461,8463,8462 ,4087,4089,4088 ,0,0,0}, {8462,8464,8465 ,4088,4090,4091 ,0,0,0}, - {8466,8467,8468 ,2394,2394,4092 ,0,0,0}, {8469,8470,8468 ,4093,4094,4092 ,0,0,0}, - {8466,8468,8470 ,2394,4092,4094 ,0,0,0}, {8469,8471,8472 ,4093,4095,4096 ,0,0,0}, - {8472,8470,8469 ,4096,4094,4093 ,0,0,0}, {8473,8471,8474 ,4097,4095,4098 ,0,0,0}, - {8471,8473,8472 ,4095,4097,4096 ,0,0,0}, {8475,8476,8474 ,4099,4100,4098 ,0,0,0}, - {8473,8474,8476 ,4097,4098,4100 ,0,0,0}, {8475,8477,8478 ,4099,4101,4102 ,0,0,0}, - {8478,8476,8475 ,4102,4100,4099 ,0,0,0}, {8479,8477,8480 ,4103,4101,4104 ,0,0,0}, - {8477,8479,8478 ,4101,4103,4102 ,0,0,0}, {8481,8482,8480 ,4105,4106,4104 ,0,0,0}, - {8479,8480,8482 ,4103,4104,4106 ,0,0,0}, {8481,8483,8484 ,4105,4107,4108 ,0,0,0}, - {8484,8482,8481 ,4108,4106,4105 ,0,0,0}, {8485,8486,8483 ,4109,4110,4107 ,0,0,0}, - {8483,8486,8484 ,4107,4110,4108 ,0,0,0}, {8487,8488,8485 ,4111,4112,4109 ,0,0,0}, - {8485,8483,8487 ,4109,4107,4111 ,0,0,0}, {8488,8489,8490 ,4112,4113,4114 ,0,0,0}, - {8489,8488,8487 ,4113,4112,4111 ,0,0,0}, {8489,8491,8490 ,4113,4114,4114 ,0,0,0}, - {8492,8467,8466 ,4115,2394,2394 ,0,0,0}, {8492,8493,8494 ,4115,4116,4117 ,0,0,0}, - {8494,8467,8492 ,4117,2394,4115 ,0,0,0}, {8495,8493,8496 ,4118,4116,4119 ,0,0,0}, - {8493,8495,8494 ,4116,4118,4117 ,0,0,0}, {8497,8498,8496 ,4120,4121,4119 ,0,0,0}, - {8495,8496,8498 ,4118,4119,4121 ,0,0,0}, {8497,8499,8500 ,4120,4122,4123 ,0,0,0}, - {8500,8498,8497 ,4123,4121,4120 ,0,0,0}, {8501,8499,8502 ,4124,4122,4125 ,0,0,0}, - {8499,8501,8500 ,4122,4124,4123 ,0,0,0}, {8503,8504,8502 ,4126,4127,4125 ,0,0,0}, - {8501,8502,8504 ,4124,4125,4127 ,0,0,0}, {8503,8505,8506 ,4126,4128,4129 ,0,0,0}, - {8506,8504,8503 ,4129,4127,4126 ,0,0,0}, {8507,8505,8508 ,4130,4128,4131 ,0,0,0}, - {8505,8507,8506 ,4128,4130,4129 ,0,0,0}, {8508,8509,8510 ,4131,4132,4133 ,0,0,0}, - {8507,8508,8510 ,4130,4131,4133 ,0,0,0}, {8509,8511,8512 ,4132,4134,4135 ,0,0,0}, - {8511,8509,8508 ,4134,4132,4131 ,0,0,0}, {8513,8512,8514 ,126,4135,4136 ,0,0,0}, - {8511,8514,8512 ,4134,4136,4135 ,0,0,0}, {8513,8514,8515 ,126,4136,126 ,0,0,0}, - {8516,8517,8518 ,4137,4138,4139 ,0,0,0}, {8516,8519,8520 ,4137,4140,4141 ,0,0,0}, - {8519,8521,8520 ,4140,4142,4141 ,0,0,0}, {8518,8519,8516 ,4139,4140,4137 ,0,0,0}, - {8522,8523,8524 ,4143,4144,4145 ,0,0,0}, {8521,8522,8524 ,4142,4143,4145 ,0,0,0}, - {8523,8525,8526 ,4144,4146,4147 ,0,0,0}, {8525,8523,8522 ,4146,4144,4143 ,0,0,0}, - {8526,8525,8527 ,4147,4146,4148 ,0,0,0}, {8528,8526,8527 ,4149,4147,4148 ,0,0,0}, - {8528,8529,8530 ,4149,4150,4151 ,0,0,0}, {8528,8527,8529 ,4149,4148,4150 ,0,0,0}, - {8524,8520,8521 ,4145,4141,4142 ,0,0,0}, {8531,8532,8533 ,4152,1711,1711 ,0,0,0}, - {8531,8533,8530 ,4152,1711,4151 ,0,0,0}, {8529,8531,8530 ,4150,4152,4151 ,0,0,0}, - {8518,8517,8534 ,4139,4138,4153 ,0,0,0}, {8535,8534,8536 ,4154,4153,4155 ,0,0,0}, - {8517,8536,8534 ,4138,4155,4153 ,0,0,0}, {8537,8538,8535 ,4156,4157,4154 ,0,0,0}, - {8535,8536,8537 ,4154,4155,4156 ,0,0,0}, {8538,8539,8540 ,4157,4158,4159 ,0,0,0}, - {8539,8538,8537 ,4158,4157,4156 ,0,0,0}, {8541,8540,8542 ,4160,4159,4161 ,0,0,0}, - {8539,8542,8540 ,4158,4161,4159 ,0,0,0}, {8543,8544,8541 ,4162,4163,4160 ,0,0,0}, - {8541,8542,8543 ,4160,4161,4162 ,0,0,0}, {8544,8545,8546 ,4163,4164,1790 ,0,0,0}, - {8545,8544,8543 ,4164,4163,4162 ,0,0,0}, {8545,8547,8546 ,4164,1790,1790 ,0,0,0}, - {8548,8549,8550 ,4165,4166,4167 ,0,0,0}, {8551,8552,8553 ,4168,4169,4170 ,0,0,0}, - {8552,8548,8550 ,4169,4165,4167 ,0,0,0}, {8554,8551,8553 ,4171,4168,4170 ,0,0,0}, - {8552,8551,8548 ,4169,4168,4165 ,0,0,0}, {8554,8553,8555 ,4171,4170,4172 ,0,0,0}, - {8555,8556,8557 ,4172,4173,4174 ,0,0,0}, {8558,8557,8556 ,4175,4174,4173 ,0,0,0}, - {8559,8560,8561 ,4176,4177,4178 ,0,0,0}, {8556,8562,8558 ,4173,4179,4175 ,0,0,0}, - {8561,8563,8564 ,4178,4180,4181 ,0,0,0}, {8563,8562,8564 ,4180,4179,4181 ,0,0,0}, - {8558,8562,8563 ,4175,4179,4180 ,0,0,0}, {8561,8564,8559 ,4178,4181,4176 ,0,0,0}, - {8560,8559,8565 ,4177,4176,4182 ,0,0,0}, {8560,8565,8566 ,4177,4182,4183 ,0,0,0}, - {8567,8566,8565 ,4184,4183,4182 ,0,0,0}, {8568,8569,8570 ,4185,1711,4186 ,0,0,0}, - {8570,8566,8567 ,4186,4183,4184 ,0,0,0}, {8568,8570,8567 ,4185,4186,4184 ,0,0,0}, - {8568,8571,8569 ,4185,1711,1711 ,0,0,0}, {8554,8555,8557 ,4171,4172,4174 ,0,0,0}, - {8550,8549,8572 ,4167,4166,4187 ,0,0,0}, {8573,8572,8574 ,4188,4187,4189 ,0,0,0}, - {8549,8574,8572 ,4166,4189,4187 ,0,0,0}, {8575,8576,8573 ,4190,4191,4188 ,0,0,0}, - {8573,8574,8575 ,4188,4189,4190 ,0,0,0}, {8576,8577,8578 ,4191,4192,4193 ,0,0,0}, - {8577,8576,8575 ,4192,4191,4190 ,0,0,0}, {8579,8578,8580 ,4194,4193,4195 ,0,0,0}, - {8577,8580,8578 ,4192,4195,4193 ,0,0,0}, {8581,8582,8579 ,4196,4197,4194 ,0,0,0}, - {8579,8580,8581 ,4194,4195,4196 ,0,0,0}, {8582,8583,8584 ,4197,4198,4199 ,0,0,0}, - {8583,8582,8581 ,4198,4197,4196 ,0,0,0}, {8585,8584,8586 ,4200,4199,4201 ,0,0,0}, - {8583,8586,8584 ,4198,4201,4199 ,0,0,0}, {8587,8588,8585 ,4202,4203,4200 ,0,0,0}, - {8585,8586,8587 ,4200,4201,4202 ,0,0,0}, {8588,8589,8590 ,4203,4204,1790 ,0,0,0}, - {8589,8588,8587 ,4204,4203,4202 ,0,0,0}, {8589,8591,8590 ,4204,1790,1790 ,0,0,0}, - {8592,8593,8594 ,4205,4206,4207 ,0,0,0}, {8592,8595,8596 ,4205,4208,4209 ,0,0,0}, - {8595,8597,8596 ,4208,4210,4209 ,0,0,0}, {8594,8595,8592 ,4207,4208,4205 ,0,0,0}, - {8598,8599,8600 ,4211,4212,4213 ,0,0,0}, {8597,8598,8600 ,4210,4211,4213 ,0,0,0}, - {8599,8601,8602 ,4212,4214,4215 ,0,0,0}, {8601,8599,8598 ,4214,4212,4211 ,0,0,0}, - {8602,8601,8603 ,4215,4214,4216 ,0,0,0}, {8604,8602,8603 ,4217,4215,4216 ,0,0,0}, - {8604,8605,8606 ,4217,4218,4219 ,0,0,0}, {8604,8603,8605 ,4217,4216,4218 ,0,0,0}, - {8600,8596,8597 ,4213,4209,4210 ,0,0,0}, {8607,8608,8609 ,4220,1359,1359 ,0,0,0}, - {8607,8609,8606 ,4220,1359,4219 ,0,0,0}, {8605,8607,8606 ,4218,4220,4219 ,0,0,0}, - {8594,8593,8610 ,4207,4206,4221 ,0,0,0}, {8611,8610,8612 ,4222,4221,4223 ,0,0,0}, - {8593,8612,8610 ,4206,4223,4221 ,0,0,0}, {8613,8614,8611 ,4224,4225,4222 ,0,0,0}, - {8611,8612,8613 ,4222,4223,4224 ,0,0,0}, {8614,8615,8616 ,4225,4226,4227 ,0,0,0}, - {8615,8614,8613 ,4226,4225,4224 ,0,0,0}, {8617,8616,8618 ,4228,4227,4229 ,0,0,0}, - {8615,8618,8616 ,4226,4229,4227 ,0,0,0}, {8619,8620,8617 ,4230,4231,4228 ,0,0,0}, - {8617,8618,8619 ,4228,4229,4230 ,0,0,0}, {8620,8621,8622 ,4231,4232,1435 ,0,0,0}, - {8621,8620,8619 ,4232,4231,4230 ,0,0,0}, {8621,8623,8622 ,4232,1435,1435 ,0,0,0}, - {8624,8625,8626 ,4233,4234,4235 ,0,0,0}, {8627,8628,8629 ,4236,4237,4238 ,0,0,0}, - {8628,8624,8626 ,4237,4233,4235 ,0,0,0}, {8630,8627,8629 ,4239,4236,4238 ,0,0,0}, - {8628,8627,8624 ,4237,4236,4233 ,0,0,0}, {8630,8629,8631 ,4239,4238,4240 ,0,0,0}, - {8631,8632,8633 ,4240,4241,4242 ,0,0,0}, {8634,8633,8632 ,4243,4242,4241 ,0,0,0}, - {8635,8636,8637 ,4244,4245,4246 ,0,0,0}, {8632,8638,8634 ,4241,4247,4243 ,0,0,0}, - {8637,8639,8640 ,4246,4248,4249 ,0,0,0}, {8639,8638,8640 ,4248,4247,4249 ,0,0,0}, - {8634,8638,8639 ,4243,4247,4248 ,0,0,0}, {8637,8640,8635 ,4246,4249,4244 ,0,0,0}, - {8636,8635,8641 ,4245,4244,4250 ,0,0,0}, {8636,8641,8642 ,4245,4250,4251 ,0,0,0}, - {8643,8642,8641 ,4252,4251,4250 ,0,0,0}, {8644,8645,8646 ,4253,1359,4254 ,0,0,0}, - {8646,8642,8643 ,4254,4251,4252 ,0,0,0}, {8644,8646,8643 ,4253,4254,4252 ,0,0,0}, - {8644,8647,8645 ,4253,1359,1359 ,0,0,0}, {8630,8631,8633 ,4239,4240,4242 ,0,0,0}, - {8626,8625,8648 ,4235,4234,4255 ,0,0,0}, {8649,8648,8650 ,4256,4255,4257 ,0,0,0}, - {8625,8650,8648 ,4234,4257,4255 ,0,0,0}, {8651,8652,8649 ,4258,4259,4256 ,0,0,0}, - {8649,8650,8651 ,4256,4257,4258 ,0,0,0}, {8652,8653,8654 ,4259,4260,4261 ,0,0,0}, - {8653,8652,8651 ,4260,4259,4258 ,0,0,0}, {8655,8654,8656 ,4262,4261,4263 ,0,0,0}, - {8653,8656,8654 ,4260,4263,4261 ,0,0,0}, {8657,8658,8655 ,4264,4265,4262 ,0,0,0}, - {8655,8656,8657 ,4262,4263,4264 ,0,0,0}, {8658,8659,8660 ,4265,4266,4267 ,0,0,0}, - {8659,8658,8657 ,4266,4265,4264 ,0,0,0}, {8661,8660,8662 ,4268,4267,4269 ,0,0,0}, - {8659,8662,8660 ,4266,4269,4267 ,0,0,0}, {8663,8664,8661 ,4270,4271,4268 ,0,0,0}, - {8661,8662,8663 ,4268,4269,4270 ,0,0,0}, {8664,8665,8666 ,4271,4272,1435 ,0,0,0}, - {8665,8664,8663 ,4272,4271,4270 ,0,0,0}, {8665,8667,8666 ,4272,1435,1435 ,0,0,0}, - {8668,8669,8670 ,4273,4274,4275 ,0,0,0}, {8668,8671,8672 ,4273,4276,4277 ,0,0,0}, - {8671,8673,8672 ,4276,4278,4277 ,0,0,0}, {8670,8671,8668 ,4275,4276,4273 ,0,0,0}, - {8674,8675,8676 ,4279,4280,4281 ,0,0,0}, {8673,8674,8676 ,4278,4279,4281 ,0,0,0}, - {8675,8677,8678 ,4280,4282,4283 ,0,0,0}, {8677,8675,8674 ,4282,4280,4279 ,0,0,0}, - {8678,8677,8679 ,4283,4282,4284 ,0,0,0}, {8680,8678,8679 ,4285,4283,4284 ,0,0,0}, - {8680,8681,8682 ,4285,4286,4287 ,0,0,0}, {8680,8679,8681 ,4285,4284,4286 ,0,0,0}, - {8676,8672,8673 ,4281,4277,4278 ,0,0,0}, {8683,8684,8685 ,4288,126,4289 ,0,0,0}, - {8683,8685,8682 ,4288,4289,4287 ,0,0,0}, {8681,8683,8682 ,4286,4288,4287 ,0,0,0}, - {8670,8669,8686 ,4275,4274,4290 ,0,0,0}, {8687,8686,8688 ,4291,4290,4292 ,0,0,0}, - {8669,8688,8686 ,4274,4292,4290 ,0,0,0}, {8689,8690,8687 ,4293,4294,4291 ,0,0,0}, - {8687,8688,8689 ,4291,4292,4293 ,0,0,0}, {8690,8691,8692 ,4294,4295,4296 ,0,0,0}, - {8691,8690,8689 ,4295,4294,4293 ,0,0,0}, {8693,8692,8694 ,4297,4296,4298 ,0,0,0}, - {8691,8694,8692 ,4295,4298,4296 ,0,0,0}, {8695,8696,8693 ,4299,4300,4297 ,0,0,0}, - {8693,8694,8695 ,4297,4298,4299 ,0,0,0}, {8696,8697,8698 ,4300,4301,4302 ,0,0,0}, - {8697,8696,8695 ,4301,4300,4299 ,0,0,0}, {8697,8699,8698 ,4301,4303,4302 ,0,0,0}, - {8700,8701,8702 ,4304,4305,4306 ,0,0,0}, {8703,8704,8705 ,4307,4308,4309 ,0,0,0}, - {8704,8700,8702 ,4308,4304,4306 ,0,0,0}, {8706,8703,8705 ,4310,4307,4309 ,0,0,0}, - {8704,8703,8700 ,4308,4307,4304 ,0,0,0}, {8706,8705,8707 ,4310,4309,4311 ,0,0,0}, - {8707,8708,8709 ,4311,4312,4313 ,0,0,0}, {8710,8709,8708 ,4314,4313,4312 ,0,0,0}, - {8711,8712,8713 ,4315,4316,4317 ,0,0,0}, {8708,8714,8710 ,4312,4318,4314 ,0,0,0}, - {8713,8715,8716 ,4317,4319,4320 ,0,0,0}, {8715,8714,8716 ,4319,4318,4320 ,0,0,0}, - {8710,8714,8715 ,4314,4318,4319 ,0,0,0}, {8713,8716,8711 ,4317,4320,4315 ,0,0,0}, - {8712,8711,8717 ,4316,4315,4321 ,0,0,0}, {8712,8717,8718 ,4316,4321,4322 ,0,0,0}, - {8719,8718,8717 ,4323,4322,4321 ,0,0,0}, {8720,8721,8722 ,4324,126,4325 ,0,0,0}, - {8722,8718,8719 ,4325,4322,4323 ,0,0,0}, {8720,8722,8719 ,4324,4325,4323 ,0,0,0}, - {8720,8723,8721 ,4324,4326,126 ,0,0,0}, {8706,8707,8709 ,4310,4311,4313 ,0,0,0}, - {8702,8701,8724 ,4306,4305,4327 ,0,0,0}, {8725,8724,8726 ,4328,4327,4329 ,0,0,0}, - {8701,8726,8724 ,4305,4329,4327 ,0,0,0}, {8727,8728,8725 ,4330,4331,4328 ,0,0,0}, - {8725,8726,8727 ,4328,4329,4330 ,0,0,0}, {8728,8729,8730 ,4331,4332,4333 ,0,0,0}, - {8729,8728,8727 ,4332,4331,4330 ,0,0,0}, {8731,8730,8732 ,4334,4333,4335 ,0,0,0}, - {8729,8732,8730 ,4332,4335,4333 ,0,0,0}, {8733,8734,8731 ,4336,4337,4334 ,0,0,0}, - {8731,8732,8733 ,4334,4335,4336 ,0,0,0}, {8734,8735,8736 ,4337,4338,4339 ,0,0,0}, - {8735,8734,8733 ,4338,4337,4336 ,0,0,0}, {8737,8736,8738 ,4340,4339,4341 ,0,0,0}, - {8735,8738,8736 ,4338,4341,4339 ,0,0,0}, {8739,8740,8737 ,4342,4343,4340 ,0,0,0}, - {8737,8738,8739 ,4340,4341,4342 ,0,0,0}, {8740,8741,8742 ,4343,4344,4345 ,0,0,0}, - {8741,8740,8739 ,4344,4343,4342 ,0,0,0}, {8741,8743,8742 ,4344,4346,4345 ,0,0,0}, - {8744,8745,8746 ,4347,4348,4349 ,0,0,0}, {8744,8747,8748 ,4347,4350,4351 ,0,0,0}, - {8747,8749,8748 ,4350,4352,4351 ,0,0,0}, {8746,8747,8744 ,4349,4350,4347 ,0,0,0}, - {8750,8751,8752 ,4353,4354,4355 ,0,0,0}, {8749,8750,8752 ,4352,4353,4355 ,0,0,0}, - {8751,8753,8754 ,4354,4356,4357 ,0,0,0}, {8753,8751,8750 ,4356,4354,4353 ,0,0,0}, - {8754,8753,8755 ,4357,4356,4358 ,0,0,0}, {8756,8754,8755 ,4359,4357,4358 ,0,0,0}, - {8756,8757,8758 ,4359,4360,4361 ,0,0,0}, {8756,8755,8757 ,4359,4358,4360 ,0,0,0}, - {8752,8748,8749 ,4355,4351,4352 ,0,0,0}, {8759,8760,8761 ,4362,1790,1790 ,0,0,0}, - {8759,8761,8758 ,4362,1790,4361 ,0,0,0}, {8757,8759,8758 ,4360,4362,4361 ,0,0,0}, - {8746,8745,8762 ,4349,4348,4363 ,0,0,0}, {8763,8762,8764 ,4364,4363,4365 ,0,0,0}, - {8745,8764,8762 ,4348,4365,4363 ,0,0,0}, {8765,8766,8763 ,4366,4367,4364 ,0,0,0}, - {8763,8764,8765 ,4364,4365,4366 ,0,0,0}, {8766,8767,8768 ,4367,4368,4369 ,0,0,0}, - {8767,8766,8765 ,4368,4367,4366 ,0,0,0}, {8769,8768,8770 ,4370,4369,4371 ,0,0,0}, - {8767,8770,8768 ,4368,4371,4369 ,0,0,0}, {8771,8772,8769 ,4372,4373,4370 ,0,0,0}, - {8769,8770,8771 ,4370,4371,4372 ,0,0,0}, {8772,8773,8774 ,4373,4374,1711 ,0,0,0}, - {8773,8772,8771 ,4374,4373,4372 ,0,0,0}, {8773,8775,8774 ,4374,1711,1711 ,0,0,0}, - {8776,8777,8778 ,4375,4376,4377 ,0,0,0}, {8779,8780,8781 ,4378,4379,4380 ,0,0,0}, - {8780,8776,8778 ,4379,4375,4377 ,0,0,0}, {8782,8779,8781 ,4381,4378,4380 ,0,0,0}, - {8780,8779,8776 ,4379,4378,4375 ,0,0,0}, {8782,8781,8783 ,4381,4380,4382 ,0,0,0}, - {8783,8784,8785 ,4382,4383,4384 ,0,0,0}, {8786,8785,8784 ,4385,4384,4383 ,0,0,0}, - {8787,8788,8789 ,4386,4387,4388 ,0,0,0}, {8784,8790,8786 ,4383,4389,4385 ,0,0,0}, - {8789,8791,8792 ,4388,4390,4391 ,0,0,0}, {8791,8790,8792 ,4390,4389,4391 ,0,0,0}, - {8786,8790,8791 ,4385,4389,4390 ,0,0,0}, {8789,8792,8787 ,4388,4391,4386 ,0,0,0}, - {8788,8787,8793 ,4387,4386,4392 ,0,0,0}, {8788,8793,8794 ,4387,4392,4393 ,0,0,0}, - {8795,8794,8793 ,4394,4393,4392 ,0,0,0}, {8796,8797,8798 ,4395,1790,4396 ,0,0,0}, - {8798,8794,8795 ,4396,4393,4394 ,0,0,0}, {8796,8798,8795 ,4395,4396,4394 ,0,0,0}, - {8796,8799,8797 ,4395,1790,1790 ,0,0,0}, {8782,8783,8785 ,4381,4382,4384 ,0,0,0}, - {8778,8777,8800 ,4377,4376,4397 ,0,0,0}, {8801,8800,8802 ,4398,4397,4399 ,0,0,0}, - {8777,8802,8800 ,4376,4399,4397 ,0,0,0}, {8803,8804,8801 ,4400,4401,4398 ,0,0,0}, - {8801,8802,8803 ,4398,4399,4400 ,0,0,0}, {8804,8805,8806 ,4401,4402,4403 ,0,0,0}, - {8805,8804,8803 ,4402,4401,4400 ,0,0,0}, {8807,8806,8808 ,4404,4403,4405 ,0,0,0}, - {8805,8808,8806 ,4402,4405,4403 ,0,0,0}, {8809,8810,8807 ,4406,4407,4404 ,0,0,0}, - {8807,8808,8809 ,4404,4405,4406 ,0,0,0}, {8810,8811,8812 ,4407,4408,4409 ,0,0,0}, - {8811,8810,8809 ,4408,4407,4406 ,0,0,0}, {8813,8812,8814 ,4410,4409,4411 ,0,0,0}, - {8811,8814,8812 ,4408,4411,4409 ,0,0,0}, {8815,8816,8813 ,4412,4413,4410 ,0,0,0}, - {8813,8814,8815 ,4410,4411,4412 ,0,0,0}, {8816,8817,8818 ,4413,4414,1711 ,0,0,0}, - {8817,8816,8815 ,4414,4413,4412 ,0,0,0}, {8817,8819,8818 ,4414,1711,1711 ,0,0,0}, - {8820,8821,8822 ,4415,4416,4417 ,0,0,0}, {8820,8823,8824 ,4415,4418,4419 ,0,0,0}, - {8823,8825,8824 ,4418,4420,4419 ,0,0,0}, {8822,8823,8820 ,4417,4418,4415 ,0,0,0}, - {8826,8827,8828 ,4421,4422,4423 ,0,0,0}, {8825,8826,8828 ,4420,4421,4423 ,0,0,0}, - {8827,8829,8830 ,4422,4424,4425 ,0,0,0}, {8829,8827,8826 ,4424,4422,4421 ,0,0,0}, - {8830,8829,8831 ,4425,4424,4426 ,0,0,0}, {8832,8830,8831 ,4427,4425,4426 ,0,0,0}, - {8832,8833,8834 ,4427,4428,4429 ,0,0,0}, {8832,8831,8833 ,4427,4426,4428 ,0,0,0}, - {8828,8824,8825 ,4423,4419,4420 ,0,0,0}, {8835,8836,8837 ,4430,1435,1435 ,0,0,0}, - {8835,8837,8834 ,4430,1435,4429 ,0,0,0}, {8833,8835,8834 ,4428,4430,4429 ,0,0,0}, - {8822,8821,8838 ,4417,4416,4431 ,0,0,0}, {8839,8838,8840 ,4432,4431,4433 ,0,0,0}, - {8821,8840,8838 ,4416,4433,4431 ,0,0,0}, {8841,8842,8839 ,4434,4435,4432 ,0,0,0}, - {8839,8840,8841 ,4432,4433,4434 ,0,0,0}, {8842,8843,8844 ,4435,4436,4437 ,0,0,0}, - {8843,8842,8841 ,4436,4435,4434 ,0,0,0}, {8845,8844,8846 ,4438,4437,4439 ,0,0,0}, - {8843,8846,8844 ,4436,4439,4437 ,0,0,0}, {8847,8848,8845 ,4440,4441,4438 ,0,0,0}, - {8845,8846,8847 ,4438,4439,4440 ,0,0,0}, {8848,8849,8850 ,4441,4442,1359 ,0,0,0}, - {8849,8848,8847 ,4442,4441,4440 ,0,0,0}, {8849,8851,8850 ,4442,1359,1359 ,0,0,0}, - {8852,8853,8854 ,4443,4444,4445 ,0,0,0}, {8855,8856,8857 ,4446,4447,4448 ,0,0,0}, - {8856,8852,8854 ,4447,4443,4445 ,0,0,0}, {8858,8855,8857 ,4449,4446,4448 ,0,0,0}, - {8856,8855,8852 ,4447,4446,4443 ,0,0,0}, {8858,8857,8859 ,4449,4448,4450 ,0,0,0}, - {8859,8860,8861 ,4450,4451,4452 ,0,0,0}, {8862,8861,8860 ,4453,4452,4451 ,0,0,0}, - {8863,8864,8865 ,4454,4455,4456 ,0,0,0}, {8860,8866,8862 ,4451,4457,4453 ,0,0,0}, - {8865,8867,8868 ,4456,4458,4459 ,0,0,0}, {8867,8866,8868 ,4458,4457,4459 ,0,0,0}, - {8862,8866,8867 ,4453,4457,4458 ,0,0,0}, {8865,8868,8863 ,4456,4459,4454 ,0,0,0}, - {8864,8863,8869 ,4455,4454,4460 ,0,0,0}, {8864,8869,8870 ,4455,4460,4461 ,0,0,0}, - {8871,8870,8869 ,4462,4461,4460 ,0,0,0}, {8872,8873,8874 ,4463,1435,4464 ,0,0,0}, - {8874,8870,8871 ,4464,4461,4462 ,0,0,0}, {8872,8874,8871 ,4463,4464,4462 ,0,0,0}, - {8872,8875,8873 ,4463,1435,1435 ,0,0,0}, {8858,8859,8861 ,4449,4450,4452 ,0,0,0}, - {8854,8853,8876 ,4445,4444,4465 ,0,0,0}, {8877,8876,8878 ,4466,4465,4467 ,0,0,0}, - {8853,8878,8876 ,4444,4467,4465 ,0,0,0}, {8879,8880,8877 ,4468,4469,4466 ,0,0,0}, - {8877,8878,8879 ,4466,4467,4468 ,0,0,0}, {8880,8881,8882 ,4469,4470,4471 ,0,0,0}, - {8881,8880,8879 ,4470,4469,4468 ,0,0,0}, {8883,8882,8884 ,4472,4471,4473 ,0,0,0}, - {8881,8884,8882 ,4470,4473,4471 ,0,0,0}, {8885,8886,8883 ,4474,4475,4472 ,0,0,0}, - {8883,8884,8885 ,4472,4473,4474 ,0,0,0}, {8886,8887,8888 ,4475,4476,4477 ,0,0,0}, - {8887,8886,8885 ,4476,4475,4474 ,0,0,0}, {8889,8888,8890 ,4478,4477,4479 ,0,0,0}, - {8887,8890,8888 ,4476,4479,4477 ,0,0,0}, {8891,8892,8889 ,4480,4481,4478 ,0,0,0}, - {8889,8890,8891 ,4478,4479,4480 ,0,0,0}, {8892,8893,8894 ,4481,4482,1359 ,0,0,0}, - {8893,8892,8891 ,4482,4481,4480 ,0,0,0}, {8893,8895,8894 ,4482,1359,1359 ,0,0,0}, - {8896,8897,8898 ,4483,4484,4485 ,0,0,0}, {8896,8899,8900 ,4483,4486,4487 ,0,0,0}, - {8899,8901,8900 ,4486,4488,4487 ,0,0,0}, {8898,8899,8896 ,4485,4486,4483 ,0,0,0}, - {8902,8903,8904 ,4489,4490,4491 ,0,0,0}, {8901,8902,8904 ,4488,4489,4491 ,0,0,0}, - {8903,8905,8906 ,4490,4492,4493 ,0,0,0}, {8905,8903,8902 ,4492,4490,4489 ,0,0,0}, - {8906,8905,8907 ,4493,4492,4494 ,0,0,0}, {8908,8906,8907 ,4495,4493,4494 ,0,0,0}, - {8908,8909,8910 ,4495,4496,4497 ,0,0,0}, {8908,8907,8909 ,4495,4494,4496 ,0,0,0}, - {8904,8900,8901 ,4491,4487,4488 ,0,0,0}, {8911,8912,8913 ,4498,4499,82 ,0,0,0}, - {8911,8913,8910 ,4498,82,4497 ,0,0,0}, {8909,8911,8910 ,4496,4498,4497 ,0,0,0}, - {8898,8897,8914 ,4485,4484,4500 ,0,0,0}, {8915,8914,8916 ,4501,4500,4502 ,0,0,0}, - {8897,8916,8914 ,4484,4502,4500 ,0,0,0}, {8917,8918,8915 ,4503,4504,4501 ,0,0,0}, - {8915,8916,8917 ,4501,4502,4503 ,0,0,0}, {8918,8919,8920 ,4504,4505,4506 ,0,0,0}, - {8919,8918,8917 ,4505,4504,4503 ,0,0,0}, {8921,8920,8922 ,4507,4506,4508 ,0,0,0}, - {8919,8922,8920 ,4505,4508,4506 ,0,0,0}, {8923,8924,8921 ,4509,4510,4507 ,0,0,0}, - {8921,8922,8923 ,4507,4508,4509 ,0,0,0}, {8924,8925,8926 ,4510,4511,4512 ,0,0,0}, - {8925,8924,8923 ,4511,4510,4509 ,0,0,0}, {8925,8927,8926 ,4511,4513,4512 ,0,0,0}, - {8928,8929,8930 ,4514,4515,4516 ,0,0,0}, {8931,8932,8933 ,4517,4518,4519 ,0,0,0}, - {8932,8928,8930 ,4518,4514,4516 ,0,0,0}, {8934,8931,8933 ,4520,4517,4519 ,0,0,0}, - {8932,8931,8928 ,4518,4517,4514 ,0,0,0}, {8934,8933,8935 ,4520,4519,4521 ,0,0,0}, - {8935,8936,8937 ,4521,4522,4523 ,0,0,0}, {8938,8937,8936 ,4524,4523,4522 ,0,0,0}, - {8939,8940,8941 ,4525,4526,4527 ,0,0,0}, {8936,8942,8938 ,4522,4528,4524 ,0,0,0}, - {8941,8943,8944 ,4527,4529,4530 ,0,0,0}, {8943,8942,8944 ,4529,4528,4530 ,0,0,0}, - {8938,8942,8943 ,4524,4528,4529 ,0,0,0}, {8941,8944,8939 ,4527,4530,4525 ,0,0,0}, - {8940,8939,8945 ,4526,4525,4531 ,0,0,0}, {8940,8945,8946 ,4526,4531,4532 ,0,0,0}, - {8947,8946,8945 ,4533,4532,4531 ,0,0,0}, {8948,8949,8950 ,4534,4535,4536 ,0,0,0}, - {8950,8946,8947 ,4536,4532,4533 ,0,0,0}, {8948,8950,8947 ,4534,4536,4533 ,0,0,0}, - {8948,8951,8949 ,4534,4537,4535 ,0,0,0}, {8934,8935,8937 ,4520,4521,4523 ,0,0,0}, - {8930,8929,8952 ,4516,4515,4538 ,0,0,0}, {8953,8952,8954 ,4539,4538,4540 ,0,0,0}, - {8929,8954,8952 ,4515,4540,4538 ,0,0,0}, {8955,8956,8953 ,4541,4542,4539 ,0,0,0}, - {8953,8954,8955 ,4539,4540,4541 ,0,0,0}, {8956,8957,8958 ,4542,4543,4544 ,0,0,0}, - {8957,8956,8955 ,4543,4542,4541 ,0,0,0}, {8959,8958,8960 ,4545,4544,4546 ,0,0,0}, - {8957,8960,8958 ,4543,4546,4544 ,0,0,0}, {8961,8962,8959 ,4547,4548,4545 ,0,0,0}, - {8959,8960,8961 ,4545,4546,4547 ,0,0,0}, {8962,8963,8964 ,4548,4549,4550 ,0,0,0}, - {8963,8962,8961 ,4549,4548,4547 ,0,0,0}, {8965,8964,8966 ,4551,4550,4552 ,0,0,0}, - {8963,8966,8964 ,4549,4552,4550 ,0,0,0}, {8967,8968,8965 ,4553,4554,4551 ,0,0,0}, - {8965,8966,8967 ,4551,4552,4553 ,0,0,0}, {8968,8969,8970 ,4554,4555,4556 ,0,0,0}, - {8969,8968,8967 ,4555,4554,4553 ,0,0,0}, {8969,8971,8970 ,4555,126,4556 ,0,0,0}, - {8972,8973,8974 ,4557,4558,4559 ,0,0,0}, {8975,8976,8974 ,4560,4561,4559 ,0,0,0}, - {8972,8974,8976 ,4557,4559,4561 ,0,0,0}, {8977,8975,8978 ,4562,4560,4563 ,0,0,0}, - {8977,8976,8975 ,4562,4561,4560 ,0,0,0}, {8979,8978,8980 ,4564,4563,4565 ,0,0,0}, - {8975,8980,8978 ,4560,4565,4563 ,0,0,0}, {8981,8982,8979 ,4081,4566,4564 ,0,0,0}, - {8979,8980,8981 ,4564,4565,4081 ,0,0,0}, {8982,8983,8984 ,4566,4567,4568 ,0,0,0}, - {8983,8982,8981 ,4567,4566,4081 ,0,0,0}, {8985,8984,8986 ,4569,4568,4570 ,0,0,0}, - {8983,8986,8984 ,4567,4570,4568 ,0,0,0}, {8987,8988,8985 ,4571,4572,4569 ,0,0,0}, - {8985,8986,8987 ,4569,4570,4571 ,0,0,0}, {8989,8990,8988 ,4573,763,4572 ,0,0,0}, - {8989,8988,8987 ,4573,4572,4571 ,0,0,0}, {8990,8991,8988 ,763,763,4572 ,0,0,0}, - {8992,8973,8972 ,4574,4558,4557 ,0,0,0}, {8992,8993,8994 ,4574,4575,4576 ,0,0,0}, - {8994,8973,8992 ,4576,4558,4574 ,0,0,0}, {8995,8996,8993 ,4577,4578,4575 ,0,0,0}, - {8993,8996,8994 ,4575,4578,4576 ,0,0,0}, {8997,8998,8995 ,4579,4580,4577 ,0,0,0}, - {8995,8993,8997 ,4577,4575,4579 ,0,0,0}, {8998,8999,9000 ,4580,4065,4581 ,0,0,0}, - {8999,8998,8997 ,4065,4580,4579 ,0,0,0}, {9001,9000,9002 ,4582,4581,4583 ,0,0,0}, - {8999,9002,9000 ,4065,4583,4581 ,0,0,0}, {9003,9004,9001 ,4584,4585,4582 ,0,0,0}, - {9001,9002,9003 ,4582,4583,4584 ,0,0,0}, {9004,9005,9006 ,4585,4586,4587 ,0,0,0}, - {9005,9004,9003 ,4586,4585,4584 ,0,0,0}, {9006,9007,9008 ,4587,4588,54 ,0,0,0}, - {9005,9007,9006 ,4586,4588,4587 ,0,0,0}, {9006,9008,9009 ,4587,54,4589 ,0,0,0}, - {9010,9011,9012 ,4590,4591,4557 ,0,0,0}, {9013,9011,9014 ,4592,4591,4593 ,0,0,0}, - {9011,9013,9012 ,4591,4592,4557 ,0,0,0}, {9015,9016,9014 ,4594,4595,4593 ,0,0,0}, - {9013,9014,9016 ,4592,4593,4595 ,0,0,0}, {9015,9017,9018 ,4594,4596,4597 ,0,0,0}, - {9018,9016,9015 ,4597,4595,4594 ,0,0,0}, {9019,9017,9020 ,4598,4596,4599 ,0,0,0}, - {9017,9019,9018 ,4596,4598,4597 ,0,0,0}, {9021,9022,9020 ,4600,4601,4599 ,0,0,0}, - {9019,9020,9022 ,4598,4599,4601 ,0,0,0}, {9021,9023,9024 ,4600,4602,4603 ,0,0,0}, - {9024,9022,9021 ,4603,4601,4600 ,0,0,0}, {9025,9023,9026 ,4604,4602,4605 ,0,0,0}, - {9023,9025,9024 ,4602,4604,4603 ,0,0,0}, {9027,9028,9026 ,4606,4607,4605 ,0,0,0}, - {9025,9026,9028 ,4604,4605,4607 ,0,0,0}, {9027,9029,9030 ,4606,4608,4609 ,0,0,0}, - {9030,9028,9027 ,4609,4607,4606 ,0,0,0}, {9031,9029,9032 ,4610,4608,4611 ,0,0,0}, - {9029,9031,9030 ,4608,4610,4609 ,0,0,0}, {9033,9034,9032 ,4612,4613,4611 ,0,0,0}, - {9031,9032,9034 ,4610,4611,4613 ,0,0,0}, {9033,9035,9036 ,4612,4614,4615 ,0,0,0}, - {9036,9034,9033 ,4615,4613,4612 ,0,0,0}, {9037,9035,9038 ,4616,4614,4617 ,0,0,0}, - {9035,9037,9036 ,4614,4616,4615 ,0,0,0}, {9039,9040,9038 ,4618,4619,4617 ,0,0,0}, - {9037,9038,9040 ,4616,4617,4619 ,0,0,0}, {9039,9041,9042 ,4618,4620,4621 ,0,0,0}, - {9042,9040,9039 ,4621,4619,4618 ,0,0,0}, {9041,9043,9042 ,4620,4620,4621 ,0,0,0}, - {9044,9010,9012 ,4622,4590,4557 ,0,0,0}, {9045,9046,9044 ,4623,4624,4622 ,0,0,0}, - {9010,9044,9046 ,4590,4622,4624 ,0,0,0}, {9045,9047,9048 ,4623,4625,4626 ,0,0,0}, - {9048,9046,9045 ,4626,4624,4623 ,0,0,0}, {9049,9047,9050 ,4627,4625,4628 ,0,0,0}, - {9047,9049,9048 ,4625,4627,4626 ,0,0,0}, {9051,9052,9050 ,4629,4630,4628 ,0,0,0}, - {9049,9050,9052 ,4627,4628,4630 ,0,0,0}, {9051,9053,9054 ,4629,4631,4632 ,0,0,0}, - {9054,9052,9051 ,4632,4630,4629 ,0,0,0}, {9055,9053,9056 ,4633,4631,4634 ,0,0,0}, - {9053,9055,9054 ,4631,4633,4632 ,0,0,0}, {9057,9058,9056 ,4635,4636,4634 ,0,0,0}, - {9055,9056,9058 ,4633,4634,4636 ,0,0,0}, {9057,9059,9060 ,4635,4637,4638 ,0,0,0}, - {9060,9058,9057 ,4638,4636,4635 ,0,0,0}, {9061,9059,9062 ,4639,4637,4640 ,0,0,0}, - {9059,9061,9060 ,4637,4639,4638 ,0,0,0}, {9063,9064,9062 ,4641,4642,4640 ,0,0,0}, - {9061,9062,9064 ,4639,4640,4642 ,0,0,0}, {9063,9065,9066 ,4641,4643,4644 ,0,0,0}, - {9066,9064,9063 ,4644,4642,4641 ,0,0,0}, {9067,9065,9068 ,4645,4643,4646 ,0,0,0}, - {9065,9067,9066 ,4643,4645,4644 ,0,0,0}, {9069,9070,9068 ,4647,4648,4646 ,0,0,0}, - {9067,9068,9070 ,4645,4646,4648 ,0,0,0}, {9069,9071,9072 ,4647,4649,4650 ,0,0,0}, - {9072,9070,9069 ,4650,4648,4647 ,0,0,0}, {9073,9071,9074 ,4651,4649,82 ,0,0,0}, - {9071,9073,9072 ,4649,4651,4650 ,0,0,0}, {9073,9074,9075 ,4651,82,4652 ,0,0,0}, - {9076,9077,9078 ,4653,4654,4655 ,0,0,0}, {9079,9080,9081 ,4656,4657,4658 ,0,0,0}, - {9078,9081,9080 ,4655,4658,4657 ,0,0,0}, {9082,9083,9084 ,4659,4660,4661 ,0,0,0}, - {9085,9086,9079 ,4662,4663,4656 ,0,0,0}, {9082,9086,9085 ,4659,4663,4662 ,0,0,0}, - {9085,9083,9082 ,4662,4660,4659 ,0,0,0}, {9086,9080,9079 ,4663,4657,4656 ,0,0,0}, - {9087,9088,9089 ,4664,4665,4666 ,0,0,0}, {9088,9090,9089 ,4665,4667,4666 ,0,0,0}, - {9091,9092,9093 ,4668,4669,4670 ,0,0,0}, {9091,9093,9090 ,4668,4670,4667 ,0,0,0}, - {9088,9091,9090 ,4665,4668,4667 ,0,0,0}, {9083,9087,9084 ,4660,4664,4661 ,0,0,0}, - {9087,9089,9084 ,4664,4666,4661 ,0,0,0}, {9094,9095,9096 ,4671,4672,4673 ,0,0,0}, - {9097,9098,9099 ,4674,4675,4676 ,0,0,0}, {9096,9095,9097 ,4673,4672,4674 ,0,0,0}, - {9100,9101,9102 ,4677,4678,4679 ,0,0,0}, {9096,9097,9099 ,4673,4674,4676 ,0,0,0}, - {9102,9101,9098 ,4679,4678,4675 ,0,0,0}, {9101,9099,9098 ,4678,4676,4675 ,0,0,0}, - {9092,9095,9094 ,4669,4672,4671 ,0,0,0}, {9103,9100,9102 ,4677,4677,4679 ,0,0,0}, - {9093,9092,9094 ,4670,4669,4671 ,0,0,0}, {9077,9081,9078 ,4654,4658,4655 ,0,0,0}, - {9104,9077,9076 ,4680,4654,4653 ,0,0,0}, {9104,9105,9106 ,4680,4681,4682 ,0,0,0}, - {9105,9104,9076 ,4681,4680,4653 ,0,0,0}, {9107,9106,9108 ,4683,4682,4684 ,0,0,0}, - {9105,9108,9106 ,4681,4684,4682 ,0,0,0}, {9109,9110,9107 ,4685,4686,4683 ,0,0,0}, - {9107,9108,9109 ,4683,4684,4685 ,0,0,0}, {9110,9111,9112 ,4686,4687,4688 ,0,0,0}, - {9111,9110,9109 ,4687,4686,4685 ,0,0,0}, {9113,9112,9114 ,4689,4688,4690 ,0,0,0}, - {9111,9114,9112 ,4687,4690,4688 ,0,0,0}, {9115,9116,9113 ,4691,4692,4689 ,0,0,0}, - {9113,9114,9115 ,4689,4690,4691 ,0,0,0}, {9116,9117,9118 ,4692,4693,4694 ,0,0,0}, - {9117,9116,9115 ,4693,4692,4691 ,0,0,0}, {9119,9118,9120 ,4695,4694,4696 ,0,0,0}, - {9117,9120,9118 ,4693,4696,4694 ,0,0,0}, {9121,9122,9119 ,4697,4698,4695 ,0,0,0}, - {9119,9120,9121 ,4695,4696,4697 ,0,0,0}, {9122,9123,9124 ,4698,4699,4700 ,0,0,0}, - {9123,9122,9121 ,4699,4698,4697 ,0,0,0}, {9123,9125,9124 ,4699,4701,4700 ,0,0,0}, - {9126,9127,9128 ,4702,4703,4704 ,0,0,0}, {9129,9130,9131 ,4705,4706,4707 ,0,0,0}, - {9127,9131,9130 ,4703,4707,4706 ,0,0,0}, {9132,9133,9134 ,4708,4709,4710 ,0,0,0}, - {9135,9129,9136 ,4711,4705,4712 ,0,0,0}, {9132,9135,9136 ,4708,4711,4712 ,0,0,0}, - {9135,9132,9134 ,4711,4708,4710 ,0,0,0}, {9136,9129,9131 ,4712,4705,4707 ,0,0,0}, - {9137,9138,9139 ,4713,4714,4715 ,0,0,0}, {9139,9138,9140 ,4715,4714,4716 ,0,0,0}, - {9141,9142,9143 ,4717,4718,4719 ,0,0,0}, {9141,9140,9142 ,4717,4716,4718 ,0,0,0}, - {9139,9140,9141 ,4715,4716,4717 ,0,0,0}, {9134,9133,9137 ,4710,4709,4713 ,0,0,0}, - {9137,9133,9138 ,4713,4709,4714 ,0,0,0}, {9144,9145,9146 ,4720,4721,4722 ,0,0,0}, - {9147,9148,9149 ,4723,4724,4725 ,0,0,0}, {9145,9147,9146 ,4721,4723,4722 ,0,0,0}, - {9150,9151,9152 ,4726,4727,4728 ,0,0,0}, {9145,9148,9147 ,4721,4724,4723 ,0,0,0}, - {9151,9149,9152 ,4727,4725,4728 ,0,0,0}, {9152,9149,9148 ,4728,4725,4724 ,0,0,0}, - {9143,9144,9146 ,4719,4720,4722 ,0,0,0}, {9153,9151,9150 ,4726,4727,4726 ,0,0,0}, - {9142,9144,9143 ,4718,4720,4719 ,0,0,0}, {9128,9127,9130 ,4704,4703,4706 ,0,0,0}, - {9154,9126,9128 ,4729,4702,4704 ,0,0,0}, {9154,9155,9156 ,4729,4730,4731 ,0,0,0}, - {9156,9126,9154 ,4731,4702,4729 ,0,0,0}, {9157,9158,9155 ,4732,4733,4730 ,0,0,0}, - {9156,9155,9158 ,4731,4730,4733 ,0,0,0}, {9159,9157,9160 ,4734,4732,4735 ,0,0,0}, - {9157,9159,9158 ,4732,4734,4733 ,0,0,0}, {9160,9161,9162 ,4735,4736,4737 ,0,0,0}, - {9162,9159,9160 ,4737,4734,4735 ,0,0,0}, {9163,9164,9161 ,4738,4739,4736 ,0,0,0}, - {9162,9161,9164 ,4737,4736,4739 ,0,0,0}, {9165,9163,9166 ,4740,4738,4741 ,0,0,0}, - {9163,9165,9164 ,4738,4740,4739 ,0,0,0}, {9166,9167,9168 ,4741,4742,4743 ,0,0,0}, - {9168,9165,9166 ,4743,4740,4741 ,0,0,0}, {9169,9170,9167 ,4744,4745,4742 ,0,0,0}, - {9168,9167,9170 ,4743,4742,4745 ,0,0,0}, {9171,9169,9172 ,4746,4744,4747 ,0,0,0}, - {9169,9171,9170 ,4744,4746,4745 ,0,0,0}, {9172,9173,9174 ,4747,4748,4749 ,0,0,0}, - {9174,9171,9172 ,4749,4746,4747 ,0,0,0}, {9174,9173,9175 ,4749,4748,4750 ,0,0,0}, - {9176,9177,9178 ,4751,4752,4753 ,0,0,0}, {9179,9180,9181 ,4754,4755,4756 ,0,0,0}, - {9177,9181,9180 ,4752,4756,4755 ,0,0,0}, {9182,9183,9184 ,4757,4758,4759 ,0,0,0}, - {9185,9179,9186 ,4760,4754,4761 ,0,0,0}, {9185,9186,9182 ,4760,4761,4757 ,0,0,0}, - {9182,9184,9185 ,4757,4759,4760 ,0,0,0}, {9179,9181,9186 ,4754,4756,4761 ,0,0,0}, - {9187,9188,9189 ,4762,4763,4764 ,0,0,0}, {9190,9188,9187 ,4765,4763,4762 ,0,0,0}, - {9191,9192,9193 ,4766,4767,4768 ,0,0,0}, {9191,9193,9190 ,4766,4768,4765 ,0,0,0}, - {9190,9193,9188 ,4765,4768,4763 ,0,0,0}, {9183,9189,9184 ,4758,4764,4759 ,0,0,0}, - {9187,9189,9183 ,4762,4764,4758 ,0,0,0}, {9194,9195,9196 ,4769,4770,4771 ,0,0,0}, - {9197,9198,9199 ,4772,4773,4774 ,0,0,0}, {9196,9195,9199 ,4771,4770,4774 ,0,0,0}, - {9200,9201,9202 ,4775,4776,4777 ,0,0,0}, {9195,9197,9199 ,4770,4772,4774 ,0,0,0}, - {9200,9198,9201 ,4775,4773,4776 ,0,0,0}, {9198,9197,9201 ,4773,4772,4776 ,0,0,0}, - {9194,9196,9192 ,4769,4771,4767 ,0,0,0}, {9203,9200,9202 ,4777,4775,4777 ,0,0,0}, - {9191,9194,9192 ,4766,4769,4767 ,0,0,0}, {9177,9180,9178 ,4752,4755,4753 ,0,0,0}, - {9176,9178,9204 ,4751,4753,4778 ,0,0,0}, {9204,9205,9206 ,4778,4779,4780 ,0,0,0}, - {9206,9176,9204 ,4780,4751,4778 ,0,0,0}, {9207,9205,9208 ,4781,4779,4782 ,0,0,0}, - {9205,9207,9206 ,4779,4781,4780 ,0,0,0}, {9209,9210,9208 ,4783,4784,4782 ,0,0,0}, - {9207,9208,9210 ,4781,4782,4784 ,0,0,0}, {9209,9211,9212 ,4783,4785,4786 ,0,0,0}, - {9212,9210,9209 ,4786,4784,4783 ,0,0,0}, {9213,9211,9214 ,4787,4785,4788 ,0,0,0}, - {9211,9213,9212 ,4785,4787,4786 ,0,0,0}, {9215,9216,9214 ,4789,4790,4788 ,0,0,0}, - {9213,9214,9216 ,4787,4788,4790 ,0,0,0}, {9215,9217,9218 ,4789,4791,4792 ,0,0,0}, - {9218,9216,9215 ,4792,4790,4789 ,0,0,0}, {9219,9217,9220 ,4793,4791,4794 ,0,0,0}, - {9217,9219,9218 ,4791,4793,4792 ,0,0,0}, {9221,9222,9220 ,4795,4796,4794 ,0,0,0}, - {9219,9220,9222 ,4793,4794,4796 ,0,0,0}, {9221,9223,9224 ,4795,4797,4798 ,0,0,0}, - {9224,9222,9221 ,4798,4796,4795 ,0,0,0}, {9223,9225,9224 ,4797,4799,4798 ,0,0,0}, - {9223,9226,9225 ,4797,324,4799 ,0,0,0}, {9227,9228,9229 ,82,4800,4801 ,0,0,0}, - {9229,9230,9231 ,4801,4802,4803 ,0,0,0}, {9230,9232,9231 ,4802,4804,4803 ,0,0,0}, - {9229,9231,9227 ,4801,4803,82 ,0,0,0}, {9233,9234,9235 ,4805,4806,4807 ,0,0,0}, - {9235,9234,9232 ,4807,4806,4804 ,0,0,0}, {9233,9236,9237 ,4805,4808,4809 ,0,0,0}, - {9237,9234,9233 ,4809,4806,4805 ,0,0,0}, {9237,9236,9238 ,4809,4808,4810 ,0,0,0}, - {9238,9236,9239 ,4810,4808,4811 ,0,0,0}, {9239,9240,9241 ,4811,4812,4813 ,0,0,0}, - {9238,9239,9241 ,4810,4811,4813 ,0,0,0}, {9232,9230,9235 ,4804,4802,4807 ,0,0,0}, - {9242,9243,9244 ,4814,4815,4816 ,0,0,0}, {9242,9244,9240 ,4814,4816,4812 ,0,0,0}, - {9240,9244,9241 ,4812,4816,4813 ,0,0,0}, {9227,9245,9228 ,82,4817,4800 ,0,0,0}, - {9246,9245,9247 ,4818,4817,4819 ,0,0,0}, {9245,9246,9228 ,4817,4818,4800 ,0,0,0}, - {9248,9249,9247 ,4820,4821,4819 ,0,0,0}, {9246,9247,9249 ,4818,4819,4821 ,0,0,0}, - {9248,9250,9251 ,4820,4822,4823 ,0,0,0}, {9251,9249,9248 ,4823,4821,4820 ,0,0,0}, - {9252,9250,9253 ,4824,4822,4825 ,0,0,0}, {9250,9252,9251 ,4822,4824,4823 ,0,0,0}, - {9254,9255,9253 ,4826,4827,4825 ,0,0,0}, {9252,9253,9255 ,4824,4825,4827 ,0,0,0}, - {9254,9256,9257 ,4826,4828,4829 ,0,0,0}, {9257,9255,9254 ,4829,4827,4826 ,0,0,0}, - {9258,9256,9259 ,4830,4828,4831 ,0,0,0}, {9256,9258,9257 ,4828,4830,4829 ,0,0,0}, - {9254,9253,9260 ,4832,4833,4834 ,0,0,0}, {9260,9256,9254 ,4834,4835,4832 ,0,0,0}, - {9260,9259,9256 ,4834,4836,4835 ,0,0,0}, {9260,9250,9248 ,4834,4837,4838 ,0,0,0}, - {9253,9250,9260 ,4833,4837,4834 ,0,0,0}, {9260,9247,9245 ,4834,4839,4840 ,0,0,0}, - {9248,9247,9260 ,4838,4839,4834 ,0,0,0}, {9245,9227,9260 ,4840,4841,4834 ,0,0,0}, - {9232,9260,9231 ,4842,4834,4843 ,0,0,0}, {9260,9227,9231 ,4834,4841,4843 ,0,0,0}, - {9237,9260,9234 ,4844,4834,4845 ,0,0,0}, {9260,9232,9234 ,4834,4842,4845 ,0,0,0}, - {9241,9260,9238 ,4846,4834,4847 ,0,0,0}, {9260,9237,9238 ,4834,4844,4847 ,0,0,0}, - {9243,9260,9244 ,4848,4834,4849 ,0,0,0}, {9260,9241,9244 ,4834,4846,4849 ,0,0,0}, - {9261,9262,9263 ,82,4850,4851 ,0,0,0}, {9263,9264,9265 ,4851,4852,4853 ,0,0,0}, - {9264,9266,9265 ,4852,4854,4853 ,0,0,0}, {9263,9265,9261 ,4851,4853,82 ,0,0,0}, - {9267,9268,9269 ,4855,4856,4857 ,0,0,0}, {9269,9268,9266 ,4857,4856,4854 ,0,0,0}, - {9267,9270,9271 ,4855,4858,4859 ,0,0,0}, {9271,9268,9267 ,4859,4856,4855 ,0,0,0}, - {9271,9270,9272 ,4859,4858,4860 ,0,0,0}, {9272,9270,9273 ,4860,4858,4861 ,0,0,0}, - {9273,9274,9275 ,4861,4862,4863 ,0,0,0}, {9272,9273,9275 ,4860,4861,4863 ,0,0,0}, - {9266,9264,9269 ,4854,4852,4857 ,0,0,0}, {9276,9277,9278 ,4864,4865,4866 ,0,0,0}, - {9276,9278,9274 ,4864,4866,4862 ,0,0,0}, {9274,9278,9275 ,4862,4866,4863 ,0,0,0}, - {9261,9279,9262 ,82,4867,4850 ,0,0,0}, {9280,9279,9281 ,4868,4867,4869 ,0,0,0}, - {9279,9280,9262 ,4867,4868,4850 ,0,0,0}, {9282,9283,9281 ,4870,4871,4869 ,0,0,0}, - {9280,9281,9283 ,4868,4869,4871 ,0,0,0}, {9282,9284,9285 ,4870,4872,4873 ,0,0,0}, - {9285,9283,9282 ,4873,4871,4870 ,0,0,0}, {9286,9284,9287 ,4874,4872,4875 ,0,0,0}, - {9284,9286,9285 ,4872,4874,4873 ,0,0,0}, {9288,9289,9287 ,4876,4877,4875 ,0,0,0}, - {9286,9287,9289 ,4874,4875,4877 ,0,0,0}, {9288,9290,9291 ,4876,4878,4829 ,0,0,0}, - {9291,9289,9288 ,4829,4877,4876 ,0,0,0}, {9292,9290,9293 ,4879,4878,4831 ,0,0,0}, - {9290,9292,9291 ,4878,4879,4829 ,0,0,0}, {9288,9287,9294 ,4832,4833,4880 ,0,0,0}, - {9294,9290,9288 ,4880,4835,4832 ,0,0,0}, {9294,9293,9290 ,4880,4881,4835 ,0,0,0}, - {9294,9284,9282 ,4880,4837,4838 ,0,0,0}, {9287,9284,9294 ,4833,4837,4880 ,0,0,0}, - {9294,9281,9279 ,4880,4839,4840 ,0,0,0}, {9282,9281,9294 ,4838,4839,4880 ,0,0,0}, - {9279,9261,9294 ,4840,4882,4880 ,0,0,0}, {9266,9294,9265 ,4842,4880,4843 ,0,0,0}, - {9294,9261,9265 ,4880,4882,4843 ,0,0,0}, {9271,9294,9268 ,4844,4880,4845 ,0,0,0}, - {9294,9266,9268 ,4880,4842,4845 ,0,0,0}, {9275,9294,9272 ,4846,4880,4847 ,0,0,0}, - {9294,9271,9272 ,4880,4844,4847 ,0,0,0}, {9277,9294,9278 ,4883,4880,4849 ,0,0,0}, - {9294,9275,9278 ,4880,4846,4849 ,0,0,0}, {9295,9296,9297 ,4884,4885,4886 ,0,0,0}, - {9297,9298,9299 ,4886,4887,4888 ,0,0,0}, {9298,9300,9299 ,4887,4889,4888 ,0,0,0}, - {9297,9299,9295 ,4886,4888,4884 ,0,0,0}, {9301,9302,9303 ,4890,4891,4857 ,0,0,0}, - {9303,9302,9300 ,4857,4891,4889 ,0,0,0}, {9301,9304,9305 ,4890,4892,4893 ,0,0,0}, - {9305,9302,9301 ,4893,4891,4890 ,0,0,0}, {9305,9304,9306 ,4893,4892,4894 ,0,0,0}, - {9306,9304,9307 ,4894,4892,4895 ,0,0,0}, {9307,9308,9309 ,4895,4896,4897 ,0,0,0}, - {9306,9307,9309 ,4894,4895,4897 ,0,0,0}, {9300,9298,9303 ,4889,4887,4857 ,0,0,0}, - {9310,9311,9312 ,4898,4899,4900 ,0,0,0}, {9310,9312,9308 ,4898,4900,4896 ,0,0,0}, - {9308,9312,9309 ,4896,4900,4897 ,0,0,0}, {9295,9313,9296 ,4884,4901,4885 ,0,0,0}, - {9314,9313,9315 ,4868,4901,4902 ,0,0,0}, {9313,9314,9296 ,4901,4868,4885 ,0,0,0}, - {9316,9317,9315 ,4820,4903,4902 ,0,0,0}, {9314,9315,9317 ,4868,4902,4903 ,0,0,0}, - {9316,9318,9319 ,4820,4904,4905 ,0,0,0}, {9319,9317,9316 ,4905,4903,4820 ,0,0,0}, - {9320,9318,9321 ,4906,4904,4907 ,0,0,0}, {9318,9320,9319 ,4904,4906,4905 ,0,0,0}, - {9322,9323,9321 ,4826,4877,4907 ,0,0,0}, {9320,9321,9323 ,4906,4907,4877 ,0,0,0}, - {9322,9324,9325 ,4826,4828,4908 ,0,0,0}, {9325,9323,9322 ,4908,4877,4826 ,0,0,0}, - {9326,9324,9327 ,4909,4828,4910 ,0,0,0}, {9324,9326,9325 ,4828,4909,4908 ,0,0,0}, - {9322,9321,9328 ,4832,4833,4880 ,0,0,0}, {9328,9324,9322 ,4880,4835,4832 ,0,0,0}, - {9328,9327,9324 ,4880,4911,4835 ,0,0,0}, {9328,9318,9316 ,4880,4837,4838 ,0,0,0}, - {9321,9318,9328 ,4833,4837,4880 ,0,0,0}, {9328,9315,9313 ,4880,4839,4840 ,0,0,0}, - {9316,9315,9328 ,4838,4839,4880 ,0,0,0}, {9313,9295,9328 ,4840,4912,4880 ,0,0,0}, - {9300,9328,9299 ,4842,4880,4843 ,0,0,0}, {9328,9295,9299 ,4880,4912,4843 ,0,0,0}, - {9305,9328,9302 ,4844,4880,4845 ,0,0,0}, {9328,9300,9302 ,4880,4842,4845 ,0,0,0}, - {9309,9328,9306 ,4846,4880,4847 ,0,0,0}, {9328,9305,9306 ,4880,4844,4847 ,0,0,0}, - {9311,9328,9312 ,4913,4880,4849 ,0,0,0}, {9328,9309,9312 ,4880,4846,4849 ,0,0,0}, - {9329,9330,9331 ,4914,4915,4916 ,0,0,0}, {9331,9332,9333 ,4916,4917,4918 ,0,0,0}, - {9332,9334,9333 ,4917,4919,4918 ,0,0,0}, {9331,9333,9329 ,4916,4918,4914 ,0,0,0}, - {9335,9336,9337 ,4920,4921,4922 ,0,0,0}, {9337,9336,9334 ,4922,4921,4919 ,0,0,0}, - {9335,9338,9339 ,4920,4923,4924 ,0,0,0}, {9339,9336,9335 ,4924,4921,4920 ,0,0,0}, - {9339,9338,9340 ,4924,4923,4925 ,0,0,0}, {9340,9338,9341 ,4925,4923,4926 ,0,0,0}, - {9341,9342,9343 ,4926,4927,4928 ,0,0,0}, {9340,9341,9343 ,4925,4926,4928 ,0,0,0}, - {9334,9332,9337 ,4919,4917,4922 ,0,0,0}, {9344,9345,9346 ,4929,4815,4930 ,0,0,0}, - {9344,9346,9342 ,4929,4930,4927 ,0,0,0}, {9342,9346,9343 ,4927,4930,4928 ,0,0,0}, - {9329,9347,9330 ,4914,4931,4915 ,0,0,0}, {9348,9347,9349 ,4932,4931,4933 ,0,0,0}, - {9347,9348,9330 ,4931,4932,4915 ,0,0,0}, {9350,9351,9349 ,4934,4821,4933 ,0,0,0}, - {9348,9349,9351 ,4932,4933,4821 ,0,0,0}, {9350,9352,9353 ,4934,4935,4936 ,0,0,0}, - {9353,9351,9350 ,4936,4821,4934 ,0,0,0}, {9354,9352,9355 ,4937,4935,4938 ,0,0,0}, - {9352,9354,9353 ,4935,4937,4936 ,0,0,0}, {9356,9357,9355 ,4826,4877,4938 ,0,0,0}, - {9354,9355,9357 ,4937,4938,4877 ,0,0,0}, {9356,9358,9359 ,4826,4939,4940 ,0,0,0}, - {9359,9357,9356 ,4940,4877,4826 ,0,0,0}, {9360,9358,9361 ,4941,4939,4942 ,0,0,0}, - {9358,9360,9359 ,4939,4941,4940 ,0,0,0}, {9356,9355,9362 ,4832,4833,4943 ,0,0,0}, - {9362,9358,9356 ,4943,4835,4832 ,0,0,0}, {9362,9361,9358 ,4943,4944,4835 ,0,0,0}, - {9362,9352,9350 ,4943,4837,4838 ,0,0,0}, {9355,9352,9362 ,4833,4837,4943 ,0,0,0}, - {9362,9349,9347 ,4943,4839,4840 ,0,0,0}, {9350,9349,9362 ,4838,4839,4943 ,0,0,0}, - {9347,9329,9362 ,4840,4945,4943 ,0,0,0}, {9334,9362,9333 ,4842,4943,4843 ,0,0,0}, - {9362,9329,9333 ,4943,4945,4843 ,0,0,0}, {9339,9362,9336 ,4844,4943,4845 ,0,0,0}, - {9362,9334,9336 ,4943,4842,4845 ,0,0,0}, {9343,9362,9340 ,4846,4943,4847 ,0,0,0}, - {9362,9339,9340 ,4943,4844,4847 ,0,0,0}, {9345,9362,9346 ,4946,4943,4849 ,0,0,0}, - {9362,9343,9346 ,4943,4846,4849 ,0,0,0}, {9363,9364,9365 ,4947,4948,4949 ,0,0,0}, - {9366,9367,9368 ,4950,4951,4952 ,0,0,0}, {9365,9368,9367 ,4949,4952,4951 ,0,0,0}, - {9369,9370,9371 ,4953,4954,4955 ,0,0,0}, {9372,9373,9366 ,4956,4957,4950 ,0,0,0}, - {9369,9373,9372 ,4953,4957,4956 ,0,0,0}, {9372,9370,9369 ,4956,4954,4953 ,0,0,0}, - {9373,9367,9366 ,4957,4951,4950 ,0,0,0}, {9374,9375,9376 ,4958,4959,4960 ,0,0,0}, - {9375,9377,9376 ,4959,4961,4960 ,0,0,0}, {9378,9379,9380 ,4962,4963,4964 ,0,0,0}, - {9378,9380,9377 ,4962,4964,4961 ,0,0,0}, {9375,9378,9377 ,4959,4962,4961 ,0,0,0}, - {9370,9374,9371 ,4954,4958,4955 ,0,0,0}, {9374,9376,9371 ,4958,4960,4955 ,0,0,0}, - {9381,9382,9383 ,4965,4966,4967 ,0,0,0}, {9384,9385,9386 ,4968,4969,4970 ,0,0,0}, - {9383,9382,9384 ,4967,4966,4968 ,0,0,0}, {9387,9388,9389 ,4726,4971,4972 ,0,0,0}, - {9383,9384,9386 ,4967,4968,4970 ,0,0,0}, {9389,9388,9385 ,4972,4971,4969 ,0,0,0}, - {9388,9386,9385 ,4971,4970,4969 ,0,0,0}, {9379,9382,9381 ,4963,4966,4965 ,0,0,0}, - {9390,9387,9389 ,4726,4726,4972 ,0,0,0}, {9380,9379,9381 ,4964,4963,4965 ,0,0,0}, - {9364,9368,9365 ,4948,4952,4949 ,0,0,0}, {9391,9364,9363 ,4973,4948,4947 ,0,0,0}, - {9391,9392,9393 ,4973,4974,4975 ,0,0,0}, {9392,9391,9363 ,4974,4973,4947 ,0,0,0}, - {9394,9393,9395 ,4976,4975,4977 ,0,0,0}, {9392,9395,9393 ,4974,4977,4975 ,0,0,0}, - {9396,9397,9394 ,4978,4979,4976 ,0,0,0}, {9394,9395,9396 ,4976,4977,4978 ,0,0,0}, - {9397,9398,9399 ,4979,4980,4981 ,0,0,0}, {9398,9397,9396 ,4980,4979,4978 ,0,0,0}, - {9400,9399,9401 ,4982,4981,4983 ,0,0,0}, {9398,9401,9399 ,4980,4983,4981 ,0,0,0}, - {9402,9403,9400 ,4984,4985,4982 ,0,0,0}, {9400,9401,9402 ,4982,4983,4984 ,0,0,0}, - {9403,9404,9405 ,4985,4986,4987 ,0,0,0}, {9404,9403,9402 ,4986,4985,4984 ,0,0,0}, - {9406,9405,9407 ,4988,4987,4989 ,0,0,0}, {9404,9407,9405 ,4986,4989,4987 ,0,0,0}, - {9408,9409,9406 ,4990,4991,4988 ,0,0,0}, {9406,9407,9408 ,4988,4989,4990 ,0,0,0}, - {9409,9410,9411 ,4991,4992,4748 ,0,0,0}, {9410,9409,9408 ,4992,4991,4990 ,0,0,0}, - {9410,9412,9411 ,4992,4750,4748 ,0,0,0}, {9413,9414,9415 ,4993,4994,4995 ,0,0,0}, - {9416,9417,9418 ,4996,4997,4998 ,0,0,0}, {9414,9419,9420 ,4994,4999,5000 ,0,0,0}, - {9419,9414,9413 ,4999,4994,4993 ,0,0,0}, {9419,9421,9420 ,4999,5001,5000 ,0,0,0}, - {9415,9422,9413 ,4995,5002,4993 ,0,0,0}, {9416,9422,9423 ,4996,5002,5003 ,0,0,0}, - {9415,9423,9422 ,4995,5003,5002 ,0,0,0}, {9424,9425,9426 ,5004,5005,5006 ,0,0,0}, - {9416,9423,9417 ,4996,5003,4997 ,0,0,0}, {9427,9428,9429 ,5007,5008,5009 ,0,0,0}, - {9430,9431,9432 ,5010,5011,5012 ,0,0,0}, {9433,9434,9435 ,5013,5014,5015 ,0,0,0}, - {9436,9437,9438 ,5016,5017,5018 ,0,0,0}, {9439,9440,9441 ,5019,5020,5021 ,0,0,0}, - {9442,9443,9434 ,5022,5023,5014 ,0,0,0}, {9444,9445,9446 ,5024,5025,5026 ,0,0,0}, - {9445,9440,9447 ,5025,5020,5027 ,0,0,0}, {9448,9449,9450 ,5028,5029,5030 ,0,0,0}, - {9451,9452,9444 ,5031,5032,5024 ,0,0,0}, {9453,9454,9455 ,5033,5034,5035 ,0,0,0}, - {9456,9450,9457 ,5036,5030,5037 ,0,0,0}, {9458,9459,9460 ,5038,5039,5040 ,0,0,0}, - {9461,9459,9462 ,5041,5039,5042 ,0,0,0}, {9463,9464,9465 ,5043,5044,5045 ,0,0,0}, - {9460,9466,9463 ,5040,5046,5043 ,0,0,0}, {9467,9468,9469 ,5047,5048,5049 ,0,0,0}, - {9467,9470,9471 ,5047,5050,5051 ,0,0,0}, {9472,9473,9474 ,5052,5053,5054 ,0,0,0}, - {9475,9476,9474 ,5055,5056,5054 ,0,0,0}, {9477,9478,9479 ,5057,5058,5059 ,0,0,0}, - {9478,9472,9480 ,5058,5052,5060 ,0,0,0}, {9481,9482,9483 ,5061,5062,5063 ,0,0,0}, - {9477,9484,9481 ,5057,5064,5061 ,0,0,0}, {9485,9486,9487 ,5065,5066,5067 ,0,0,0}, - {9485,9488,9489 ,5065,5068,5069 ,0,0,0}, {9490,9491,9492 ,5070,5071,5072 ,0,0,0}, - {9490,9493,9486 ,5070,5073,5066 ,0,0,0}, {9494,9491,9495 ,5074,5071,5075 ,0,0,0}, - {9491,9494,9492 ,5071,5074,5072 ,0,0,0}, {9496,9497,9495 ,5076,5077,5075 ,0,0,0}, - {9494,9495,9497 ,5074,5075,5077 ,0,0,0}, {9498,9499,9497 ,5078,5079,5077 ,0,0,0}, - {9497,9496,9498 ,5077,5076,5078 ,0,0,0}, {9499,9500,9501 ,5079,5080,5081 ,0,0,0}, - {9500,9499,9498 ,5080,5079,5078 ,0,0,0}, {9502,9501,9503 ,5082,5081,5083 ,0,0,0}, - {9500,9503,9501 ,5080,5083,5081 ,0,0,0}, {9504,9505,9502 ,5084,5085,5082 ,0,0,0}, - {9502,9503,9504 ,5082,5083,5084 ,0,0,0}, {9505,9506,9507 ,5085,5086,5087 ,0,0,0}, - {9506,9505,9504 ,5086,5085,5084 ,0,0,0}, {9508,9507,9509 ,5088,5087,5089 ,0,0,0}, - {9506,9509,9507 ,5086,5089,5087 ,0,0,0}, {9510,9508,9511 ,5090,5088,5091 ,0,0,0}, - {9508,9509,9511 ,5088,5089,5091 ,0,0,0}, {9510,9512,9513 ,5090,5092,5093 ,0,0,0}, - {9513,9508,9510 ,5093,5088,5090 ,0,0,0}, {9514,9512,9515 ,5094,5092,5095 ,0,0,0}, - {9512,9514,9513 ,5092,5094,5093 ,0,0,0}, {9516,9517,9515 ,126,5096,5095 ,0,0,0}, - {9514,9515,9517 ,5094,5095,5096 ,0,0,0}, {9518,9517,9516 ,126,5096,126 ,0,0,0}, - {9487,9486,9493 ,5067,5066,5073 ,0,0,0}, {9490,9492,9493 ,5070,5072,5073 ,0,0,0}, - {9483,9488,9481 ,5063,5068,5061 ,0,0,0}, {9485,9487,9488 ,5065,5067,5068 ,0,0,0}, - {9483,9489,9488 ,5063,5069,5068 ,0,0,0}, {9479,9484,9477 ,5059,5064,5057 ,0,0,0}, - {9481,9484,9482 ,5061,5064,5062 ,0,0,0}, {9473,9472,9478 ,5053,5052,5058 ,0,0,0}, - {9478,9480,9479 ,5058,5060,5059 ,0,0,0}, {9475,9468,9476 ,5055,5048,5056 ,0,0,0}, - {9473,9475,9474 ,5053,5055,5054 ,0,0,0}, {9467,9469,9470 ,5047,5049,5050 ,0,0,0}, - {9468,9475,9469 ,5048,5055,5049 ,0,0,0}, {9464,9471,9465 ,5044,5051,5045 ,0,0,0}, - {9471,9470,9465 ,5051,5050,5045 ,0,0,0}, {9460,9463,9458 ,5040,5043,5038 ,0,0,0}, - {9466,9464,9463 ,5046,5044,5043 ,0,0,0}, {9453,9461,9454 ,5033,5041,5034 ,0,0,0}, - {9462,9459,9458 ,5042,5039,5038 ,0,0,0}, {9454,9461,9462 ,5034,5041,5042 ,0,0,0}, - {9455,9456,9457 ,5035,5036,5037 ,0,0,0}, {9454,9456,9455 ,5034,5036,5035 ,0,0,0}, - {9450,9452,9448 ,5030,5032,5028 ,0,0,0}, {9457,9450,9449 ,5037,5030,5029 ,0,0,0}, - {9519,9451,9444 ,5097,5031,5024 ,0,0,0}, {9451,9448,9452 ,5031,5028,5032 ,0,0,0}, - {9520,9445,9447 ,5098,5025,5027 ,0,0,0}, {9444,9446,9519 ,5024,5026,5097 ,0,0,0}, - {9445,9520,9446 ,5025,5098,5026 ,0,0,0}, {9441,9442,9439 ,5021,5022,5019 ,0,0,0}, - {9447,9440,9439 ,5027,5020,5019 ,0,0,0}, {9435,9438,9433 ,5015,5018,5013 ,0,0,0}, - {9442,9441,9443 ,5022,5021,5023 ,0,0,0}, {9434,9443,9435 ,5014,5023,5015 ,0,0,0}, - {9427,9436,9438 ,5007,5016,5018 ,0,0,0}, {9437,9433,9438 ,5017,5013,5018 ,0,0,0}, - {9428,9432,9429 ,5008,5012,5009 ,0,0,0}, {9427,9429,9436 ,5007,5009,5016 ,0,0,0}, - {9430,9424,9431 ,5010,5004,5011 ,0,0,0}, {9428,9430,9432 ,5008,5010,5012 ,0,0,0}, - {9426,9425,9418 ,5006,5005,4998 ,0,0,0}, {9431,9424,9426 ,5011,5004,5006 ,0,0,0}, - {9416,9418,9425 ,4996,4998,5005 ,0,0,0}, {9521,9522,9523 ,5099,5100,5101 ,0,0,0}, - {9524,9525,9526 ,5102,5103,5104 ,0,0,0}, {9527,9525,9524 ,5105,5103,5102 ,0,0,0}, - {9528,9524,9526 ,5106,5102,5104 ,0,0,0}, {9529,9530,9531 ,5107,5108,5109 ,0,0,0}, - {9532,9533,9528 ,5110,5108,5106 ,0,0,0}, {9530,9534,9531 ,5108,5111,5109 ,0,0,0}, - {9530,9533,9534 ,5108,5108,5111 ,0,0,0}, {9534,9535,9536 ,5111,5112,5113 ,0,0,0}, - {9535,9537,9536 ,5112,5114,5113 ,0,0,0}, {9536,9537,9538 ,5113,5114,5115 ,0,0,0}, - {9537,9539,9538 ,5114,5116,5115 ,0,0,0}, {9540,9541,9539 ,5117,5118,5116 ,0,0,0}, - {9540,9542,9543 ,5117,5119,5120 ,0,0,0}, {9544,9543,9542 ,5121,5120,5119 ,0,0,0}, - {9544,9542,9545 ,5121,5119,5122 ,0,0,0}, {9545,9546,9544 ,5122,5123,5121 ,0,0,0}, - {9541,9538,9539 ,5118,5115,5116 ,0,0,0}, {9543,9541,9540 ,5120,5118,5117 ,0,0,0}, - {9546,9547,9548 ,5123,5124,5125 ,0,0,0}, {9547,9546,9545 ,5124,5123,5122 ,0,0,0}, - {9125,9548,9547 ,5126,5125,5124 ,0,0,0}, {9527,9524,9549 ,5105,5102,5127 ,0,0,0}, - {9550,9551,9552 ,5128,5129,5130 ,0,0,0}, {9550,9549,9551 ,5128,5127,5129 ,0,0,0}, - {9551,9553,9552 ,5129,5131,5130 ,0,0,0}, {9553,9551,9554 ,5131,5129,5132 ,0,0,0}, - {9555,9556,9557 ,5133,5134,5135 ,0,0,0}, {9555,9554,9556 ,5133,5132,5134 ,0,0,0}, - {9558,9557,9556 ,5136,5135,5134 ,0,0,0}, {9557,9558,9559 ,5135,5136,5137 ,0,0,0}, - {9560,9561,9562 ,5138,5139,5140 ,0,0,0}, {9563,9564,9558 ,5141,5142,5136 ,0,0,0}, - {9565,9566,9563 ,5143,5144,5141 ,0,0,0}, {9566,9565,9567 ,5144,5143,5145 ,0,0,0}, - {9568,9569,9565 ,5146,5147,5143 ,0,0,0}, {9522,9521,9570 ,5100,5099,5148 ,0,0,0}, - {9571,9572,9568 ,5149,5150,5146 ,0,0,0}, {9573,9574,9575 ,5151,5152,5153 ,0,0,0}, - {9576,9577,9578 ,5154,5155,5156 ,0,0,0}, {9579,9580,9581 ,5157,5158,5159 ,0,0,0}, - {9582,9583,9584 ,5160,5161,5162 ,0,0,0}, {9585,9586,9587 ,5163,5164,5165 ,0,0,0}, - {9588,9589,9590 ,5166,5167,5168 ,0,0,0}, {9588,9591,9592 ,5166,5169,5170 ,0,0,0}, - {9593,9594,9595 ,5171,5172,5173 ,0,0,0}, {9596,9597,9598 ,5174,5175,5176 ,0,0,0}, - {9599,9600,9601 ,5177,5178,5179 ,0,0,0}, {9602,9594,9593 ,5180,5172,5171 ,0,0,0}, - {9603,9604,9605 ,5179,5181,5182 ,0,0,0}, {9603,9601,9600 ,5179,5179,5178 ,0,0,0}, - {9606,9607,9608 ,5183,5184,5185 ,0,0,0}, {9609,9606,9605 ,5186,5183,5182 ,0,0,0}, - {9610,9611,9612 ,5187,5188,5189 ,0,0,0}, {9613,9610,9608 ,5190,5187,5185 ,0,0,0}, - {9614,9615,9616 ,5191,5192,5193 ,0,0,0}, {9615,9614,9612 ,5192,5191,5189 ,0,0,0}, - {9617,9618,9616 ,5194,5195,5193 ,0,0,0}, {9614,9616,9618 ,5191,5193,5195 ,0,0,0}, - {9617,9619,9620 ,5194,5196,5197 ,0,0,0}, {9620,9618,9617 ,5197,5195,5194 ,0,0,0}, - {9613,9611,9610 ,5190,5188,5187 ,0,0,0}, {9611,9615,9612 ,5188,5192,5189 ,0,0,0}, - {9607,9613,9608 ,5184,5190,5185 ,0,0,0}, {9609,9607,9606 ,5186,5184,5183 ,0,0,0}, - {9604,9609,9605 ,5181,5186,5182 ,0,0,0}, {9604,9603,9600 ,5181,5179,5178 ,0,0,0}, - {9600,9621,9604 ,5178,5198,5181 ,0,0,0}, {9593,9621,9602 ,5171,5198,5180 ,0,0,0}, - {9621,9600,9602 ,5198,5178,5180 ,0,0,0}, {9622,9623,9624 ,5199,5200,5201 ,0,0,0}, - {9595,9594,9596 ,5173,5172,5174 ,0,0,0}, {9622,9625,9626 ,5199,5202,5203 ,0,0,0}, - {9626,9623,9622 ,5203,5200,5199 ,0,0,0}, {9627,9625,9628 ,5204,5202,5205 ,0,0,0}, - {9625,9627,9626 ,5202,5204,5203 ,0,0,0}, {9629,9223,9628 ,5206,5207,5205 ,0,0,0}, - {9627,9628,9223 ,5204,5205,5207 ,0,0,0}, {9226,9223,9629 ,5197,5207,5206 ,0,0,0}, - {9624,9623,9630 ,5201,5200,5208 ,0,0,0}, {9631,9632,9633 ,5209,5210,5211 ,0,0,0}, - {9624,9630,9633 ,5201,5208,5211 ,0,0,0}, {9631,9634,9632 ,5209,5212,5210 ,0,0,0}, - {9633,9630,9631 ,5211,5208,5209 ,0,0,0}, {9597,9589,9598 ,5175,5167,5176 ,0,0,0}, - {9634,9635,9632 ,5212,5213,5210 ,0,0,0}, {9601,9635,9599 ,5179,5213,5177 ,0,0,0}, - {9634,9599,9635 ,5212,5177,5213 ,0,0,0}, {9596,9598,9595 ,5174,5176,5173 ,0,0,0}, - {9587,9576,9585 ,5165,5154,5163 ,0,0,0}, {9588,9590,9591 ,5166,5168,5169 ,0,0,0}, - {9589,9597,9590 ,5167,5175,5168 ,0,0,0}, {9591,9584,9592 ,5169,5162,5170 ,0,0,0}, - {9586,9583,9582 ,5164,5161,5160 ,0,0,0}, {9583,9592,9584 ,5161,5170,5162 ,0,0,0}, - {9587,9586,9582 ,5165,5164,5160 ,0,0,0}, {9573,9580,9579 ,5151,5158,5157 ,0,0,0}, - {9576,9578,9585 ,5154,5156,5163 ,0,0,0}, {9577,9581,9578 ,5155,5159,5156 ,0,0,0}, - {9575,9580,9573 ,5153,5158,5151 ,0,0,0}, {9577,9579,9581 ,5155,5157,5159 ,0,0,0}, - {9523,9575,9574 ,5101,5153,5152 ,0,0,0}, {9574,9175,9571 ,5152,5214,5149 ,0,0,0}, - {9529,9636,9530 ,5107,5215,5108 ,0,0,0}, {9535,9534,9533 ,5112,5111,5108 ,0,0,0}, - {9532,9637,9533 ,5110,5216,5108 ,0,0,0}, {9535,9533,9637 ,5112,5108,5216 ,0,0,0}, - {9638,9636,9639 ,5217,5215,5218 ,0,0,0}, {9526,9532,9528 ,5104,5110,5106 ,0,0,0}, - {9640,9638,9641 ,5219,5217,5220 ,0,0,0}, {9640,9642,9638 ,5219,5221,5217 ,0,0,0}, - {9643,9642,9644 ,5222,5221,5223 ,0,0,0}, {9550,9527,9549 ,5128,5105,5127 ,0,0,0}, - {9645,9643,9646 ,5224,5222,5225 ,0,0,0}, {9645,9647,9643 ,5224,5226,5222 ,0,0,0}, - {9648,9647,9649 ,5227,5226,5228 ,0,0,0}, {9555,9553,9554 ,5133,5131,5132 ,0,0,0}, - {9650,9651,9648 ,5229,5230,5227 ,0,0,0}, {9652,9651,9650 ,5231,5230,5229 ,0,0,0}, - {9653,9651,9654 ,5232,5230,5233 ,0,0,0}, {9564,9559,9558 ,5142,5137,5136 ,0,0,0}, - {9562,9653,9560 ,5140,5232,5138 ,0,0,0}, {9566,9564,9563 ,5144,5142,5141 ,0,0,0}, - {9655,9562,9656 ,5234,5140,5235 ,0,0,0}, {9569,9567,9565 ,5147,5145,5143 ,0,0,0}, - {9521,9655,9570 ,5099,5234,5148 ,0,0,0}, {9572,9569,9568 ,5150,5147,5146 ,0,0,0}, - {9572,9571,9175 ,5150,5149,5214 ,0,0,0}, {9574,9571,9523 ,5152,5149,5101 ,0,0,0}, - {9523,9571,9521 ,5101,5149,5099 ,0,0,0}, {9656,9570,9655 ,5235,5148,5234 ,0,0,0}, - {9561,9656,9562 ,5139,5235,5140 ,0,0,0}, {9654,9560,9653 ,5233,5138,5232 ,0,0,0}, - {9652,9654,9651 ,5231,5233,5230 ,0,0,0}, {9649,9650,9648 ,5228,5229,5227 ,0,0,0}, - {9645,9649,9647 ,5224,5228,5226 ,0,0,0}, {9644,9646,9643 ,5223,5225,5222 ,0,0,0}, - {9640,9644,9642 ,5219,5223,5221 ,0,0,0}, {9639,9641,9638 ,5218,5220,5217 ,0,0,0}, - {9529,9639,9636 ,5107,5218,5215 ,0,0,0}, {9657,9658,9659 ,5236,5237,5238 ,0,0,0}, - {9660,9661,9659 ,5239,5240,5238 ,0,0,0}, {9657,9659,9661 ,5236,5238,5240 ,0,0,0}, - {9660,9662,9663 ,5239,5241,5242 ,0,0,0}, {9663,9661,9660 ,5242,5240,5239 ,0,0,0}, - {9664,9662,9665 ,5243,5241,5244 ,0,0,0}, {9662,9664,9663 ,5241,5243,5242 ,0,0,0}, - {9666,9667,9665 ,5245,5246,5244 ,0,0,0}, {9664,9665,9667 ,5243,5244,5246 ,0,0,0}, - {9666,9668,9669 ,5245,5247,5248 ,0,0,0}, {9669,9667,9666 ,5248,5246,5245 ,0,0,0}, - {9670,9668,9671 ,5249,5247,5250 ,0,0,0}, {9668,9670,9669 ,5247,5249,5248 ,0,0,0}, - {9672,9673,9671 ,5251,5252,5250 ,0,0,0}, {9670,9671,9673 ,5249,5250,5252 ,0,0,0}, - {9672,9674,9675 ,5251,5253,5254 ,0,0,0}, {9675,9673,9672 ,5254,5252,5251 ,0,0,0}, - {9676,9674,9677 ,5255,5253,5256 ,0,0,0}, {9674,9676,9675 ,5253,5255,5254 ,0,0,0}, - {9678,9679,9677 ,5257,5258,5256 ,0,0,0}, {9676,9677,9679 ,5255,5256,5258 ,0,0,0}, - {9678,9680,9681 ,5257,5259,5260 ,0,0,0}, {9681,9679,9678 ,5260,5258,5257 ,0,0,0}, - {9682,9680,9683 ,5261,5259,5262 ,0,0,0}, {9680,9682,9681 ,5259,5261,5260 ,0,0,0}, - {9684,9685,9683 ,5263,5264,5262 ,0,0,0}, {9682,9683,9685 ,5261,5262,5264 ,0,0,0}, - {9684,9686,9687 ,5263,5265,5266 ,0,0,0}, {9687,9685,9684 ,5266,5264,5263 ,0,0,0}, - {9688,9686,9689 ,5267,5265,5268 ,0,0,0}, {9686,9688,9687 ,5265,5267,5266 ,0,0,0}, - {9690,9691,9689 ,5269,5270,5268 ,0,0,0}, {9688,9689,9691 ,5267,5268,5270 ,0,0,0}, - {9690,9692,9693 ,5269,5271,5272 ,0,0,0}, {9693,9691,9690 ,5272,5270,5269 ,0,0,0}, - {9694,9692,9695 ,5273,5271,5274 ,0,0,0}, {9692,9694,9693 ,5271,5273,5272 ,0,0,0}, - {9696,9697,9695 ,5275,5276,5274 ,0,0,0}, {9694,9695,9697 ,5273,5274,5276 ,0,0,0}, - {9696,9698,9699 ,5275,5277,5278 ,0,0,0}, {9699,9697,9696 ,5278,5276,5275 ,0,0,0}, - {9700,9698,9701 ,5279,5277,5280 ,0,0,0}, {9698,9700,9699 ,5277,5279,5278 ,0,0,0}, - {9702,9703,9701 ,5281,5282,5280 ,0,0,0}, {9700,9701,9703 ,5279,5280,5282 ,0,0,0}, - {9704,9702,9705 ,5283,5281,5284 ,0,0,0}, {9704,9703,9702 ,5283,5282,5281 ,0,0,0}, - {9706,9705,9707 ,5285,5284,5286 ,0,0,0}, {9702,9707,9705 ,5281,5286,5284 ,0,0,0}, - {9708,9706,9709 ,5287,5285,5288 ,0,0,0}, {9706,9707,9709 ,5285,5286,5288 ,0,0,0}, - {9708,9710,9711 ,5287,5289,5290 ,0,0,0}, {9711,9706,9708 ,5290,5285,5287 ,0,0,0}, - {9710,9712,9711 ,5289,5291,5290 ,0,0,0}, {9713,9658,9657 ,5292,5237,5236 ,0,0,0}, - {9713,9714,9715 ,5292,5293,5294 ,0,0,0}, {9715,9658,9713 ,5294,5237,5292 ,0,0,0}, - {9716,9714,9717 ,5295,5293,5296 ,0,0,0}, {9714,9716,9715 ,5293,5295,5294 ,0,0,0}, - {9718,9719,9717 ,5297,5298,5296 ,0,0,0}, {9716,9717,9719 ,5295,5296,5298 ,0,0,0}, - {9718,9720,9721 ,5297,5299,5300 ,0,0,0}, {9721,9719,9718 ,5300,5298,5297 ,0,0,0}, - {9722,9720,9723 ,5301,5299,5302 ,0,0,0}, {9720,9722,9721 ,5299,5301,5300 ,0,0,0}, - {9724,9725,9723 ,5303,5304,5302 ,0,0,0}, {9722,9723,9725 ,5301,5302,5304 ,0,0,0}, - {9724,9726,9727 ,5303,5305,5306 ,0,0,0}, {9727,9725,9724 ,5306,5304,5303 ,0,0,0}, - {9728,9726,9729 ,5307,5305,5308 ,0,0,0}, {9726,9728,9727 ,5305,5307,5306 ,0,0,0}, - {9730,9731,9729 ,5309,5310,5308 ,0,0,0}, {9728,9729,9731 ,5307,5308,5310 ,0,0,0}, - {9730,9732,9733 ,5309,5311,5312 ,0,0,0}, {9733,9731,9730 ,5312,5310,5309 ,0,0,0}, - {9734,9732,9735 ,5313,5311,5314 ,0,0,0}, {9732,9734,9733 ,5311,5313,5312 ,0,0,0}, - {9736,9737,9735 ,5315,5316,5314 ,0,0,0}, {9734,9735,9737 ,5313,5314,5316 ,0,0,0}, - {9736,9738,9739 ,5315,5317,5318 ,0,0,0}, {9739,9737,9736 ,5318,5316,5315 ,0,0,0}, - {9740,9738,9741 ,5319,5317,5320 ,0,0,0}, {9738,9740,9739 ,5317,5319,5318 ,0,0,0}, - {9742,9743,9741 ,5321,5322,5320 ,0,0,0}, {9740,9741,9743 ,5319,5320,5322 ,0,0,0}, - {9742,9744,9745 ,5321,5323,5324 ,0,0,0}, {9745,9743,9742 ,5324,5322,5321 ,0,0,0}, - {9746,9744,9747 ,5325,5323,5326 ,0,0,0}, {9744,9746,9745 ,5323,5325,5324 ,0,0,0}, - {9748,9749,9747 ,5327,5328,5326 ,0,0,0}, {9746,9747,9749 ,5325,5326,5328 ,0,0,0}, - {9748,9750,9751 ,5327,5329,5330 ,0,0,0}, {9751,9749,9748 ,5330,5328,5327 ,0,0,0}, - {9752,9750,9753 ,5331,5329,5332 ,0,0,0}, {9750,9752,9751 ,5329,5331,5330 ,0,0,0}, - {9754,9755,9753 ,5333,5334,5332 ,0,0,0}, {9752,9753,9755 ,5331,5332,5334 ,0,0,0}, - {9754,9756,9757 ,5333,5335,5336 ,0,0,0}, {9757,9755,9754 ,5336,5334,5333 ,0,0,0}, - {9758,9759,9756 ,5337,5338,5335 ,0,0,0}, {9756,9759,9757 ,5335,5338,5336 ,0,0,0}, - {9760,9761,9758 ,5339,5340,5337 ,0,0,0}, {9758,9756,9760 ,5337,5335,5339 ,0,0,0}, - {9762,9763,9761 ,5341,5342,5340 ,0,0,0}, {9762,9761,9760 ,5341,5340,5339 ,0,0,0}, - {9764,9763,9765 ,5343,5342,5344 ,0,0,0}, {9763,9764,9761 ,5342,5343,5340 ,0,0,0}, - {9764,9765,9766 ,5343,5344,5345 ,0,0,0}, {9767,9768,9769 ,5346,5347,5348 ,0,0,0}, - {9770,9771,9769 ,5349,5350,5348 ,0,0,0}, {9767,9769,9771 ,5346,5348,5350 ,0,0,0}, - {9770,9772,9773 ,5349,5351,5352 ,0,0,0}, {9773,9771,9770 ,5352,5350,5349 ,0,0,0}, - {9774,9772,9775 ,5353,5351,5354 ,0,0,0}, {9772,9774,9773 ,5351,5353,5352 ,0,0,0}, - {9776,9777,9775 ,5355,5356,5354 ,0,0,0}, {9774,9775,9777 ,5353,5354,5356 ,0,0,0}, - {9776,9778,9779 ,5355,5357,5358 ,0,0,0}, {9779,9777,9776 ,5358,5356,5355 ,0,0,0}, - {9780,9778,9781 ,5359,5357,5360 ,0,0,0}, {9778,9780,9779 ,5357,5359,5358 ,0,0,0}, - {9782,9783,9781 ,5361,5362,5360 ,0,0,0}, {9780,9781,9783 ,5359,5360,5362 ,0,0,0}, - {9782,9784,9785 ,5361,5363,5364 ,0,0,0}, {9785,9783,9782 ,5364,5362,5361 ,0,0,0}, - {9786,9784,9787 ,5365,5363,5366 ,0,0,0}, {9784,9786,9785 ,5363,5365,5364 ,0,0,0}, - {9788,9789,9787 ,5367,5368,5366 ,0,0,0}, {9786,9787,9789 ,5365,5366,5368 ,0,0,0}, - {9788,9790,9791 ,5367,5369,5370 ,0,0,0}, {9791,9789,9788 ,5370,5368,5367 ,0,0,0}, - {9792,9790,9793 ,5371,5369,5372 ,0,0,0}, {9790,9792,9791 ,5369,5371,5370 ,0,0,0}, - {9794,9795,9793 ,5373,5374,5372 ,0,0,0}, {9792,9793,9795 ,5371,5372,5374 ,0,0,0}, - {9794,9796,9797 ,5373,5375,5376 ,0,0,0}, {9797,9795,9794 ,5376,5374,5373 ,0,0,0}, - {9798,9796,9799 ,5377,5375,5378 ,0,0,0}, {9796,9798,9797 ,5375,5377,5376 ,0,0,0}, - {9800,9801,9799 ,5379,5380,5378 ,0,0,0}, {9798,9799,9801 ,5377,5378,5380 ,0,0,0}, - {9800,9802,9803 ,5379,5381,5382 ,0,0,0}, {9803,9801,9800 ,5382,5380,5379 ,0,0,0}, - {9804,9802,9805 ,5383,5381,5384 ,0,0,0}, {9802,9804,9803 ,5381,5383,5382 ,0,0,0}, - {9806,9807,9805 ,5385,5386,5384 ,0,0,0}, {9804,9805,9807 ,5383,5384,5386 ,0,0,0}, - {9806,9808,9809 ,5385,5387,5388 ,0,0,0}, {9809,9807,9806 ,5388,5386,5385 ,0,0,0}, - {9810,9808,9811 ,5389,5387,5390 ,0,0,0}, {9808,9810,9809 ,5387,5389,5388 ,0,0,0}, - {9812,9813,9811 ,5391,5392,5390 ,0,0,0}, {9810,9811,9813 ,5389,5390,5392 ,0,0,0}, - {9812,9814,9815 ,5391,5393,5394 ,0,0,0}, {9815,9813,9812 ,5394,5392,5391 ,0,0,0}, - {9816,9814,9817 ,5395,5393,5396 ,0,0,0}, {9814,9816,9815 ,5393,5395,5394 ,0,0,0}, - {9818,9819,9817 ,5397,5398,5396 ,0,0,0}, {9816,9817,9819 ,5395,5396,5398 ,0,0,0}, - {9818,9820,9821 ,5397,5399,5400 ,0,0,0}, {9821,9819,9818 ,5400,5398,5397 ,0,0,0}, - {9822,9820,9823 ,5401,5399,5402 ,0,0,0}, {9820,9822,9821 ,5399,5401,5400 ,0,0,0}, - {9824,9825,9823 ,5403,5404,5402 ,0,0,0}, {9822,9823,9825 ,5401,5402,5404 ,0,0,0}, - {9824,9826,9827 ,5403,5405,5406 ,0,0,0}, {9827,9825,9824 ,5406,5404,5403 ,0,0,0}, - {9826,9828,9827 ,5405,5407,5406 ,0,0,0}, {9829,9768,9767 ,5408,5347,5346 ,0,0,0}, - {9829,9830,9831 ,5408,5409,5410 ,0,0,0}, {9831,9768,9829 ,5410,5347,5408 ,0,0,0}, - {9832,9830,9833 ,5411,5409,5412 ,0,0,0}, {9830,9832,9831 ,5409,5411,5410 ,0,0,0}, - {9834,9835,9833 ,5413,5414,5412 ,0,0,0}, {9832,9833,9835 ,5411,5412,5414 ,0,0,0}, - {9834,9836,9837 ,5413,5415,5416 ,0,0,0}, {9837,9835,9834 ,5416,5414,5413 ,0,0,0}, - {9838,9836,9839 ,5417,5415,5418 ,0,0,0}, {9836,9838,9837 ,5415,5417,5416 ,0,0,0}, - {9840,9841,9839 ,5419,5420,5418 ,0,0,0}, {9838,9839,9841 ,5417,5418,5420 ,0,0,0}, - {9840,9842,9843 ,5419,5421,5422 ,0,0,0}, {9843,9841,9840 ,5422,5420,5419 ,0,0,0}, - {9844,9842,9845 ,5423,5421,5424 ,0,0,0}, {9842,9844,9843 ,5421,5423,5422 ,0,0,0}, - {9846,9847,9845 ,5425,5426,5424 ,0,0,0}, {9844,9845,9847 ,5423,5424,5426 ,0,0,0}, - {9846,9848,9849 ,5425,5427,5428 ,0,0,0}, {9849,9847,9846 ,5428,5426,5425 ,0,0,0}, - {9850,9848,9851 ,5429,5427,5430 ,0,0,0}, {9848,9850,9849 ,5427,5429,5428 ,0,0,0}, - {9852,9853,9851 ,5431,5432,5430 ,0,0,0}, {9850,9851,9853 ,5429,5430,5432 ,0,0,0}, - {9852,9854,9855 ,5431,5433,5434 ,0,0,0}, {9855,9853,9852 ,5434,5432,5431 ,0,0,0}, - {9856,9854,9857 ,5435,5433,5436 ,0,0,0}, {9854,9856,9855 ,5433,5435,5434 ,0,0,0}, - {9858,9859,9857 ,5437,5438,5436 ,0,0,0}, {9856,9857,9859 ,5435,5436,5438 ,0,0,0}, - {9858,9860,9861 ,5437,5439,5440 ,0,0,0}, {9861,9859,9858 ,5440,5438,5437 ,0,0,0}, - {9862,9860,9863 ,5441,5439,5442 ,0,0,0}, {9860,9862,9861 ,5439,5441,5440 ,0,0,0}, - {9864,9865,9863 ,5443,5444,5442 ,0,0,0}, {9862,9863,9865 ,5441,5442,5444 ,0,0,0}, - {9864,9866,9867 ,5443,5445,5446 ,0,0,0}, {9867,9865,9864 ,5446,5444,5443 ,0,0,0}, - {9868,9866,9869 ,5447,5445,5448 ,0,0,0}, {9866,9868,9867 ,5445,5447,5446 ,0,0,0}, - {9870,9871,9869 ,5449,5450,5448 ,0,0,0}, {9868,9869,9871 ,5447,5448,5450 ,0,0,0}, - {9870,9872,9873 ,5449,5451,5452 ,0,0,0}, {9873,9871,9870 ,5452,5450,5449 ,0,0,0}, - {9874,9872,9875 ,5453,5451,5454 ,0,0,0}, {9872,9874,9873 ,5451,5453,5452 ,0,0,0}, - {9876,9877,9875 ,5455,5456,5454 ,0,0,0}, {9874,9875,9877 ,5453,5454,5456 ,0,0,0}, - {9876,9878,9879 ,5455,5457,5458 ,0,0,0}, {9879,9877,9876 ,5458,5456,5455 ,0,0,0}, - {9880,9878,9881 ,5459,5457,5460 ,0,0,0}, {9878,9880,9879 ,5457,5459,5458 ,0,0,0}, - {9882,9883,9881 ,5461,5462,5460 ,0,0,0}, {9880,9881,9883 ,5459,5460,5462 ,0,0,0}, - {9882,9884,9885 ,5461,5463,5464 ,0,0,0}, {9885,9883,9882 ,5464,5462,5461 ,0,0,0}, - {9886,9884,9887 ,5465,5463,5466 ,0,0,0}, {9884,9886,9885 ,5463,5465,5464 ,0,0,0}, - {9886,9887,9888 ,5465,5466,5467 ,0,0,0}, {9889,8923,8922 ,5468,5469,5469 ,0,0,0}, - {9890,9891,9892 ,726,726,726 ,0,0,0}, {9893,8656,8653 ,726,5470,726 ,0,0,0}, - {9894,9895,9896 ,5471,726,726 ,0,0,0}, {9897,9898,9899 ,726,726,726 ,0,0,0}, - {9900,8878,9901 ,5468,5471,5469 ,0,0,0}, {9902,9903,9904 ,5470,726,726 ,0,0,0}, - {9905,9906,9907 ,5471,5469,5469 ,0,0,0}, {9908,9907,8851 ,5468,5469,5469 ,0,0,0}, - {9909,9910,8957 ,5469,5472,5468 ,0,0,0}, {9911,9912,9913 ,5469,5468,5471 ,0,0,0}, - {9914,9915,9916 ,5473,5474,726 ,0,0,0}, {9917,9918,9919 ,5475,5476,5471 ,0,0,0}, - {9920,9921,9922 ,5477,5478,5469 ,0,0,0}, {9915,9914,9923 ,5474,5473,5479 ,0,0,0}, - {9924,9925,9926 ,5471,5469,726 ,0,0,0}, {9927,9928,8916 ,5468,5469,5471 ,0,0,0}, - {9929,9930,9931 ,726,5480,5481 ,0,0,0}, {9922,9932,9933 ,5469,726,5468 ,0,0,0}, - {9934,9935,9936 ,5475,5475,5482 ,0,0,0}, {9937,8591,9934 ,5468,5483,5475 ,0,0,0}, - {9936,9938,9939 ,5482,5482,5482 ,0,0,0}, {9935,9938,9936 ,5475,5482,5482 ,0,0,0}, - {9939,9940,9936 ,5482,5475,5482 ,0,0,0}, {9931,9925,9941 ,5481,5469,5475 ,0,0,0}, - {9942,8971,9943 ,726,5471,5484 ,0,0,0}, {9915,9923,9933 ,5474,5479,5468 ,0,0,0}, - {9944,9945,9946 ,5475,5485,5468 ,0,0,0}, {9947,9948,9949 ,5486,5483,5468 ,0,0,0}, - {9932,9915,9933 ,726,5474,5468 ,0,0,0}, {8916,9928,8917 ,5471,5469,726 ,0,0,0}, - {8923,9889,8925 ,5469,5468,726 ,0,0,0}, {8929,8928,9950 ,5471,5471,726 ,0,0,0}, - {8957,8927,9909 ,5468,5468,5469 ,0,0,0}, {8955,8927,8957 ,5471,5468,5468 ,0,0,0}, - {8929,9951,8954 ,5471,5471,5469 ,0,0,0}, {9952,8961,8960 ,5468,5478,726 ,0,0,0}, - {8928,9953,9950 ,5471,726,726 ,0,0,0}, {8884,9954,9955 ,5471,5468,726 ,0,0,0}, - {9956,8971,8969 ,5475,5471,726 ,0,0,0}, {9957,9958,9959 ,5469,5482,5483 ,0,0,0}, - {9960,9958,9961 ,5468,5482,5475 ,0,0,0}, {9962,9963,9964 ,726,5468,5468 ,0,0,0}, - {9965,9913,9966 ,726,5471,5469 ,0,0,0}, {9967,9968,9969 ,5475,5475,726 ,0,0,0}, - {9963,9962,9970 ,5468,726,5483 ,0,0,0}, {9971,9972,9973 ,5480,5487,5475 ,0,0,0}, - {9970,9974,9957 ,5483,5478,5469 ,0,0,0}, {9975,9976,9977 ,5475,5479,5474 ,0,0,0}, - {9977,9943,9975 ,5474,5484,5475 ,0,0,0}, {9978,9979,9977 ,5473,726,5474 ,0,0,0}, - {9978,9977,9976 ,5473,5474,5479 ,0,0,0}, {9960,9959,9958 ,5468,5483,5482 ,0,0,0}, - {9972,9967,9980 ,5487,5475,726 ,0,0,0}, {9958,9957,9974 ,5482,5469,5478 ,0,0,0}, - {9981,9982,9942 ,5486,5478,726 ,0,0,0}, {9965,9966,9964 ,726,5469,5468 ,0,0,0}, - {8881,9954,8884 ,726,5468,5471 ,0,0,0}, {9975,9943,8971 ,5475,5484,5471 ,0,0,0}, - {9983,9984,9985 ,726,726,726 ,0,0,0}, {9986,9987,8887 ,5468,5469,726 ,0,0,0}, - {9956,8969,9988 ,5475,726,5482 ,0,0,0}, {9989,8893,9990 ,726,726,5470 ,0,0,0}, - {8966,9991,9992 ,5475,5485,5475 ,0,0,0}, {9993,9994,8811 ,5471,726,5471 ,0,0,0}, - {8715,9995,8710 ,726,5470,726 ,0,0,0}, {9996,9997,9998 ,5470,5471,5471 ,0,0,0}, - {9999,10000,10001 ,726,726,5470 ,0,0,0}, {10001,9902,9999 ,5470,5470,726 ,0,0,0}, - {9983,9904,9984 ,726,726,726 ,0,0,0}, {10002,10003,10004 ,726,726,5470 ,0,0,0}, - {9896,9996,9998 ,726,5470,5471 ,0,0,0}, {10000,10005,10006 ,726,726,726 ,0,0,0}, - {8895,10007,10008 ,726,5470,726 ,0,0,0}, {10009,10010,10011 ,5470,726,726 ,0,0,0}, - {9984,9904,9903 ,726,726,726 ,0,0,0}, {10007,10012,10013 ,5470,726,5468 ,0,0,0}, - {9984,10014,9985 ,726,726,726 ,0,0,0}, {10013,10015,10016 ,5468,5468,726 ,0,0,0}, - {10012,10015,10013 ,726,5468,5468 ,0,0,0}, {10016,10017,10013 ,726,5471,5468 ,0,0,0}, - {10018,10019,10020 ,726,726,5471 ,0,0,0}, {8895,10012,10007 ,726,726,5470 ,0,0,0}, - {10008,10021,10022 ,726,726,726 ,0,0,0}, {10023,10024,10025 ,726,5488,5489 ,0,0,0}, - {8853,10026,10027 ,5471,5470,726 ,0,0,0}, {8881,9907,9954 ,726,5469,5468 ,0,0,0}, - {10028,8808,8805 ,726,726,5471 ,0,0,0}, {10029,8732,8729 ,726,726,726 ,0,0,0}, - {10030,8665,10031 ,726,5470,726 ,0,0,0}, {10032,8808,10028 ,726,726,726 ,0,0,0}, - {10033,10034,10035 ,726,726,726 ,0,0,0}, {10036,10037,10038 ,5489,726,726 ,0,0,0}, - {8802,10039,8803 ,726,5471,726 ,0,0,0}, {10040,10034,10041 ,726,726,726 ,0,0,0}, - {10042,10043,10044 ,726,726,5489 ,0,0,0}, {10045,10046,10047 ,726,726,726 ,0,0,0}, - {10048,10034,10040 ,726,726,726 ,0,0,0}, {9890,9892,10047 ,726,726,726 ,0,0,0}, - {10049,10050,10051 ,726,726,5489 ,0,0,0}, {9891,10033,10035 ,726,726,726 ,0,0,0}, - {10052,10053,10054 ,726,726,726 ,0,0,0}, {10050,10055,10052 ,726,5488,726 ,0,0,0}, - {10048,10035,10034 ,726,726,726 ,0,0,0}, {9899,10036,8819 ,726,5489,726 ,0,0,0}, - {10056,10057,10058 ,5489,726,726 ,0,0,0}, {10056,10059,10057 ,5489,5488,726 ,0,0,0}, - {10060,10061,10062 ,726,5471,726 ,0,0,0}, {10057,10059,10063 ,726,5488,726 ,0,0,0}, - {10064,10057,10063 ,726,726,726 ,0,0,0}, {10065,8777,10066 ,726,726,726 ,0,0,0}, - {8735,10067,10068 ,726,726,726 ,0,0,0}, {8893,8891,9990 ,726,726,5470 ,0,0,0}, - {9899,8815,10069 ,726,726,726 ,0,0,0}, {10061,10070,10071 ,5471,5471,726 ,0,0,0}, - {10072,8633,10073 ,726,5470,726 ,0,0,0}, {10062,10074,10060 ,726,5471,726 ,0,0,0}, - {8743,10075,10076 ,5489,726,726 ,0,0,0}, {10077,10078,10079 ,726,726,726 ,0,0,0}, - {10080,10081,10079 ,726,5471,726 ,0,0,0}, {10044,10043,10082 ,5489,726,5488 ,0,0,0}, - {10029,10083,8732 ,726,726,726 ,0,0,0}, {10037,9899,10058 ,726,726,726 ,0,0,0}, - {10084,10029,10082 ,726,726,5488 ,0,0,0}, {8659,10085,10086 ,726,5471,726 ,0,0,0}, - {10087,10088,10078 ,726,5488,726 ,0,0,0}, {10079,10089,10090 ,726,5471,726 ,0,0,0}, - {10091,10092,10093 ,726,726,5488 ,0,0,0}, {10094,10095,10091 ,726,726,726 ,0,0,0}, - {10096,10095,10097 ,726,726,726 ,0,0,0}, {10098,8743,10076 ,726,5489,726 ,0,0,0}, - {10099,10079,10100 ,726,726,726 ,0,0,0}, {10076,10075,10101 ,726,726,726 ,0,0,0}, - {10078,10102,10087 ,726,726,726 ,0,0,0}, {10103,10101,10075 ,726,726,726 ,0,0,0}, - {10078,10088,10079 ,726,5488,726 ,0,0,0}, {10103,10104,10101 ,726,5488,726 ,0,0,0}, - {10105,10102,10078 ,726,726,726 ,0,0,0}, {10101,10104,10106 ,726,5488,726 ,0,0,0}, - {10079,10107,10089 ,726,726,5471 ,0,0,0}, {8938,10108,8937 ,5469,5468,5468 ,0,0,0}, - {8938,8943,10109 ,5469,726,726 ,0,0,0}, {10110,8650,10111 ,726,5471,5471 ,0,0,0}, - {10112,8557,10113 ,5470,5468,5468 ,0,0,0}, {8667,10114,10115 ,5470,726,726 ,0,0,0}, - {10116,10117,10118 ,5468,726,5469 ,0,0,0}, {10119,10120,10121 ,5471,5468,726 ,0,0,0}, - {10122,10116,10123 ,5468,5468,726 ,0,0,0}, {10124,10125,10126 ,726,5470,5469 ,0,0,0}, - {10127,10128,10129 ,726,5469,726 ,0,0,0}, {10130,10131,10132 ,5471,5469,726 ,0,0,0}, - {10133,8954,10134 ,726,5469,5470 ,0,0,0}, {10098,10135,10136 ,726,5489,726 ,0,0,0}, - {10079,10081,10137 ,726,5471,726 ,0,0,0}, {10138,8841,8840 ,5468,726,5469 ,0,0,0}, - {10139,10140,10029 ,5470,5471,726 ,0,0,0}, {9893,10141,8656 ,726,726,5470 ,0,0,0}, - {10142,8701,8700 ,5471,726,726 ,0,0,0}, {10143,8943,8941 ,726,726,5468 ,0,0,0}, - {10144,10145,10146 ,726,5470,5471 ,0,0,0}, {10147,10148,10149 ,5471,726,5470 ,0,0,0}, - {10150,10151,10152 ,726,5470,726 ,0,0,0}, {10114,10153,10115 ,726,726,726 ,0,0,0}, - {10153,10114,10154 ,726,726,726 ,0,0,0}, {10115,10145,8667 ,726,5470,5470 ,0,0,0}, - {10153,10154,10155 ,726,726,726 ,0,0,0}, {10127,10121,10120 ,726,726,5468 ,0,0,0}, - {10153,10155,10156 ,726,726,726 ,0,0,0}, {10157,10158,10159 ,5471,5471,5468 ,0,0,0}, - {10125,10132,10126 ,5470,726,5469 ,0,0,0}, {10160,10124,10161 ,726,726,726 ,0,0,0}, - {10162,10163,10131 ,5468,5469,5469 ,0,0,0}, {10131,10130,10162 ,5469,5471,5468 ,0,0,0}, - {10164,10165,10162 ,5471,726,5468 ,0,0,0}, {10162,10165,10163 ,5468,726,5469 ,0,0,0}, - {8961,10166,8963 ,5478,5487,5468 ,0,0,0}, {8895,8893,9989 ,726,726,726 ,0,0,0}, - {9988,8969,8967 ,5482,726,5468 ,0,0,0}, {9987,8890,8887 ,5469,726,726 ,0,0,0}, - {9908,9905,9907 ,5468,5471,5469 ,0,0,0}, {10167,9906,9905 ,5468,5469,5471 ,0,0,0}, - {9912,9911,10168 ,5468,5469,5469 ,0,0,0}, {9906,10167,10169 ,5469,5468,5470 ,0,0,0}, - {9911,9913,9965 ,5469,5471,726 ,0,0,0}, {10168,10169,10170 ,5469,5470,5469 ,0,0,0}, - {9964,9966,9962 ,5468,5469,726 ,0,0,0}, {9970,9957,9963 ,5483,5469,5468 ,0,0,0}, - {9968,9974,9969 ,5475,5478,726 ,0,0,0}, {9974,9970,9969 ,5478,5483,726 ,0,0,0}, - {9981,9971,9982 ,5486,5480,5478 ,0,0,0}, {9972,9968,9967 ,5487,5475,5475 ,0,0,0}, - {9971,9973,9982 ,5480,5475,5478 ,0,0,0}, {9973,9972,9980 ,5475,5487,726 ,0,0,0}, - {9943,9981,9942 ,5484,5486,726 ,0,0,0}, {9956,9975,8971 ,5475,5475,5471 ,0,0,0}, - {9988,8967,9992 ,5482,5468,5475 ,0,0,0}, {9992,8967,8966 ,5475,5468,5475 ,0,0,0}, - {8963,10166,9991 ,5468,5487,5485 ,0,0,0}, {9991,8966,8963 ,5485,5475,5468 ,0,0,0}, - {9952,10166,8961 ,5468,5487,5478 ,0,0,0}, {9910,9952,8960 ,5472,5468,726 ,0,0,0}, - {10134,8954,9951 ,5470,5469,5471 ,0,0,0}, {8957,9910,8960 ,5468,5472,726 ,0,0,0}, - {10171,10172,8937 ,5471,5470,5468 ,0,0,0}, {8934,10172,10173 ,726,5470,726 ,0,0,0}, - {9919,10174,9917 ,5471,5468,5475 ,0,0,0}, {9928,10175,8917 ,5469,5469,726 ,0,0,0}, - {10176,10177,9937 ,5472,5482,5468 ,0,0,0}, {8900,8569,8896 ,5468,5468,5468 ,0,0,0}, - {8577,8575,10116 ,5471,726,5468 ,0,0,0}, {8832,8479,8830 ,5471,726,5469 ,0,0,0}, - {8843,10178,8846 ,5471,726,726 ,0,0,0}, {10028,8805,9894 ,726,5471,5471 ,0,0,0}, - {8499,10179,10180 ,726,726,5470 ,0,0,0}, {10181,10182,8741 ,726,726,726 ,0,0,0}, - {10183,8861,10184 ,726,726,5471 ,0,0,0}, {8476,10185,8473 ,5471,5471,5471 ,0,0,0}, - {8488,10186,10187 ,726,5469,5469 ,0,0,0}, {8827,8940,8946 ,5471,5469,5469 ,0,0,0}, - {8934,8937,10172 ,726,5468,5470 ,0,0,0}, {8950,8828,8946 ,5468,726,5469 ,0,0,0}, - {8940,8484,8941 ,5469,5471,5468 ,0,0,0}, {10143,10109,8943 ,726,726,726 ,0,0,0}, - {10109,10108,8938 ,726,5468,5469 ,0,0,0}, {10108,10171,8937 ,5468,5471,5468 ,0,0,0}, - {8931,8934,10173 ,726,726,726 ,0,0,0}, {8927,8955,10133 ,5468,5471,726 ,0,0,0}, - {8931,9953,8928 ,726,726,5471 ,0,0,0}, {9953,8931,10173 ,726,726,726 ,0,0,0}, - {9950,9951,8929 ,726,5471,5471 ,0,0,0}, {8954,10133,8955 ,5469,726,5471 ,0,0,0}, - {8925,10188,8927 ,726,5468,5468 ,0,0,0}, {9918,9909,10189 ,5476,5469,5468 ,0,0,0}, - {10188,9909,8927 ,5468,5469,5468 ,0,0,0}, {8917,10175,8919 ,726,5469,5470 ,0,0,0}, - {8922,8919,10190 ,5469,5470,726 ,0,0,0}, {10175,10190,8919 ,5469,726,5470 ,0,0,0}, - {9921,9920,9945 ,5478,5477,5485 ,0,0,0}, {8897,8569,9927 ,726,5468,5468 ,0,0,0}, - {8897,9927,8916 ,726,5468,5471 ,0,0,0}, {10191,10192,8589 ,5470,5470,5468 ,0,0,0}, - {8591,9935,9934 ,5483,5475,5475 ,0,0,0}, {10193,8575,8574 ,5468,726,5468 ,0,0,0}, - {10194,8549,10195 ,5469,5468,5471 ,0,0,0}, {8663,10031,8665 ,726,726,5470 ,0,0,0}, - {10196,10197,8625 ,5471,5471,5471 ,0,0,0}, {10198,8713,10199 ,726,726,5471 ,0,0,0}, - {10200,10201,10202 ,5471,5470,5471 ,0,0,0}, {8709,8710,10203 ,726,726,726 ,0,0,0}, - {8653,10070,9893 ,726,5471,726 ,0,0,0}, {10083,10029,10204 ,726,726,726 ,0,0,0}, - {8949,10205,8821 ,726,5468,5469 ,0,0,0}, {8846,10206,8847 ,726,726,5468 ,0,0,0}, - {8815,9899,8817 ,726,726,726 ,0,0,0}, {9994,8814,8811 ,726,5471,5471 ,0,0,0}, - {8775,9895,9894 ,726,726,5471 ,0,0,0}, {9896,9895,9996 ,726,726,5470 ,0,0,0}, - {10005,10018,10006 ,726,726,726 ,0,0,0}, {10020,10207,9997 ,5471,726,5471 ,0,0,0}, - {9998,9997,10207 ,5471,5471,726 ,0,0,0}, {10019,10018,10005 ,726,726,726 ,0,0,0}, - {10019,10207,10020 ,726,726,5471 ,0,0,0}, {10006,10001,10000 ,726,5470,726 ,0,0,0}, - {9902,9904,9999 ,5470,726,726 ,0,0,0}, {10003,9903,10004 ,726,726,5470 ,0,0,0}, - {9903,9902,10004 ,726,5470,5470 ,0,0,0}, {10010,10022,10021 ,726,726,726 ,0,0,0}, - {10002,10011,10208 ,726,726,5471 ,0,0,0}, {10208,10003,10002 ,5471,726,726 ,0,0,0}, - {10010,10009,10022 ,726,5470,726 ,0,0,0}, {10011,10010,10208 ,726,726,5471 ,0,0,0}, - {10007,10021,10008 ,5470,726,726 ,0,0,0}, {9989,10012,8895 ,726,726,726 ,0,0,0}, - {8881,8879,9907 ,726,726,5469 ,0,0,0}, {9990,8891,10209 ,5470,726,5470 ,0,0,0}, - {8890,9987,10209 ,726,5469,5470 ,0,0,0}, {10209,8891,8890 ,5470,726,726 ,0,0,0}, - {9986,8885,9955 ,5468,726,726 ,0,0,0}, {8885,9986,8887 ,726,5468,726 ,0,0,0}, - {8884,9955,8885 ,5471,726,726 ,0,0,0}, {10027,8878,8853 ,726,5471,5471 ,0,0,0}, - {8853,8852,10026 ,5471,5471,5470 ,0,0,0}, {9901,8878,10027 ,5469,5471,726 ,0,0,0}, - {10210,10211,8855 ,5470,5470,726 ,0,0,0}, {10183,8858,8861 ,726,5470,726 ,0,0,0}, - {10211,8852,8855 ,5470,5471,726 ,0,0,0}, {8862,8867,10212 ,726,726,726 ,0,0,0}, - {8862,10213,8861 ,726,5470,726 ,0,0,0}, {10214,8867,8865 ,726,726,5470 ,0,0,0}, - {8754,8756,8493 ,726,726,726 ,0,0,0}, {8870,8751,8864 ,726,726,5471 ,0,0,0}, - {8767,10215,8770 ,726,726,5470 ,0,0,0}, {8841,10216,8843 ,726,5471,5471 ,0,0,0}, - {10217,8599,8602 ,5471,5470,726 ,0,0,0}, {10218,8472,10219 ,726,726,5470 ,0,0,0}, - {8789,8503,10220 ,5471,5470,5470 ,0,0,0}, {10221,10222,8785 ,726,5471,726 ,0,0,0}, - {8479,8832,8478 ,726,5471,726 ,0,0,0}, {8950,8949,8824 ,5468,726,5471 ,0,0,0}, - {8874,8752,8870 ,5470,5471,726 ,0,0,0}, {8765,8764,10223 ,726,726,726 ,0,0,0}, - {8492,8466,8864 ,5470,5471,5471 ,0,0,0}, {10214,10212,8867 ,726,726,726 ,0,0,0}, - {10212,10213,8862 ,726,5470,726 ,0,0,0}, {10213,10184,8861 ,5470,5471,726 ,0,0,0}, - {8858,10210,8855 ,5470,5470,726 ,0,0,0}, {10210,8858,10183 ,5470,5470,726 ,0,0,0}, - {9908,8851,8849 ,5468,5469,726 ,0,0,0}, {10211,10026,8852 ,5470,5470,5471 ,0,0,0}, - {8879,8851,9907 ,726,5469,5469 ,0,0,0}, {9900,8879,8878 ,5468,726,5471 ,0,0,0}, - {9900,8851,8879 ,5468,5469,726 ,0,0,0}, {8849,8847,10206 ,726,5468,726 ,0,0,0}, - {8849,10206,9908 ,726,726,5468 ,0,0,0}, {8846,10178,10206 ,726,726,726 ,0,0,0}, - {8843,10216,10178 ,5471,5471,726 ,0,0,0}, {8840,10205,10138 ,5469,5468,5468 ,0,0,0}, - {8841,10138,10216 ,726,5468,5471 ,0,0,0}, {8821,8820,8949 ,5469,5468,726 ,0,0,0}, - {8840,8821,10205 ,5469,5469,5468 ,0,0,0}, {8824,8828,8950 ,5471,726,5468 ,0,0,0}, - {8820,8824,8949 ,5468,5471,726 ,0,0,0}, {8828,8827,8946 ,726,5471,5469 ,0,0,0}, - {8479,8482,8830 ,726,726,5469 ,0,0,0}, {8478,8832,8834 ,726,5471,5470 ,0,0,0}, - {10185,10219,8473 ,5471,5470,5471 ,0,0,0}, {8476,8478,8834 ,5471,726,5470 ,0,0,0}, - {10218,10214,8470 ,726,726,5470 ,0,0,0}, {8873,10224,8745 ,5470,5470,726 ,0,0,0}, - {8770,10225,8771 ,5470,5470,5470 ,0,0,0}, {10182,8743,8741 ,726,5489,726 ,0,0,0}, - {10068,8738,8735 ,726,726,726 ,0,0,0}, {10226,10082,10029 ,5489,5488,726 ,0,0,0}, - {10082,10226,10044 ,5488,5489,5489 ,0,0,0}, {10045,10023,10046 ,726,726,726 ,0,0,0}, - {10025,10227,10042 ,5489,726,726 ,0,0,0}, {10043,10042,10227 ,726,726,726 ,0,0,0}, - {10024,10023,10045 ,5488,726,726 ,0,0,0}, {10024,10227,10025 ,5488,726,5489 ,0,0,0}, - {10046,9890,10047 ,726,726,726 ,0,0,0}, {9891,10035,9892 ,726,726,726 ,0,0,0}, - {10051,10033,10049 ,5489,726,726 ,0,0,0}, {10033,9891,10049 ,726,726,726 ,0,0,0}, - {10037,10054,10038 ,726,726,726 ,0,0,0}, {10052,10051,10050 ,726,5489,726 ,0,0,0}, - {10054,10053,10038 ,726,726,726 ,0,0,0}, {10053,10052,10055 ,726,726,5488 ,0,0,0}, - {10037,10036,9899 ,726,5489,726 ,0,0,0}, {10058,9899,10056 ,726,726,5489 ,0,0,0}, - {8805,8803,9894 ,5471,726,5471 ,0,0,0}, {9899,10069,9897 ,726,726,726 ,0,0,0}, - {8814,9994,10069 ,5471,726,726 ,0,0,0}, {10069,8815,8814 ,726,726,5471 ,0,0,0}, - {9993,8809,10032 ,5471,726,726 ,0,0,0}, {8809,9993,8811 ,726,5471,5471 ,0,0,0}, - {8808,10032,8809 ,726,726,726 ,0,0,0}, {10228,8777,10065 ,5471,726,726 ,0,0,0}, - {8777,8776,10066 ,726,726,726 ,0,0,0}, {8802,8777,10228 ,726,726,5471 ,0,0,0}, - {10229,10230,8779 ,726,726,726 ,0,0,0}, {10222,8782,8785 ,5471,726,726 ,0,0,0}, - {10230,8776,8779 ,726,726,726 ,0,0,0}, {8786,8791,10231 ,726,726,726 ,0,0,0}, - {8786,10232,8785 ,726,5471,726 ,0,0,0}, {10220,8791,8789 ,5470,726,5471 ,0,0,0}, - {8508,8675,8678 ,5471,5471,726 ,0,0,0}, {8794,8675,8788 ,726,5471,726 ,0,0,0}, - {10233,8503,8502 ,5471,5470,726 ,0,0,0}, {8767,8765,10234 ,726,726,726 ,0,0,0}, - {8508,8505,8788 ,5471,726,726 ,0,0,0}, {8689,10235,8691 ,726,5470,726 ,0,0,0}, - {8596,8722,8721 ,5470,726,726 ,0,0,0}, {8709,10236,8706 ,726,726,5471 ,0,0,0}, - {8756,8496,8493 ,726,726,726 ,0,0,0}, {8874,8873,8748 ,5470,5470,726 ,0,0,0}, - {8798,8676,8794 ,5471,726,726 ,0,0,0}, {10198,8715,8713 ,726,726,726 ,0,0,0}, - {8788,8505,8789 ,726,726,5471 ,0,0,0}, {10220,10231,8791 ,5470,726,726 ,0,0,0}, - {10231,10232,8786 ,726,5471,726 ,0,0,0}, {10232,10221,8785 ,5471,726,726 ,0,0,0}, - {8782,10229,8779 ,726,726,726 ,0,0,0}, {10229,8782,10222 ,726,726,5471 ,0,0,0}, - {10237,8775,8773 ,5470,726,726 ,0,0,0}, {10230,10066,8776 ,726,726,726 ,0,0,0}, - {8803,8775,9894 ,726,726,5471 ,0,0,0}, {8775,8803,10039 ,726,726,5471 ,0,0,0}, - {10228,10039,8802 ,5471,5471,726 ,0,0,0}, {8775,10237,9895 ,726,5470,726 ,0,0,0}, - {8773,8771,10225 ,726,5470,5470 ,0,0,0}, {8773,10225,10237 ,726,5470,5470 ,0,0,0}, - {8770,10215,10225 ,5470,726,5470 ,0,0,0}, {8767,10234,10215 ,726,726,726 ,0,0,0}, - {8764,10224,10223 ,726,5470,726 ,0,0,0}, {8765,10223,10234 ,726,726,726 ,0,0,0}, - {8745,8744,8873 ,726,5470,5470 ,0,0,0}, {8764,8745,10224 ,726,726,5470 ,0,0,0}, - {8748,8752,8874 ,726,5471,5470 ,0,0,0}, {8744,8748,8873 ,5470,726,5470 ,0,0,0}, - {8752,8751,8870 ,5471,726,726 ,0,0,0}, {8493,8492,8754 ,726,5470,726 ,0,0,0}, - {8496,8758,8497 ,726,726,5471 ,0,0,0}, {8499,8497,10179 ,726,5471,726 ,0,0,0}, - {8756,8758,8496 ,726,726,726 ,0,0,0}, {10220,8503,10233 ,5470,5470,5471 ,0,0,0}, - {8739,10181,8741 ,5488,726,726 ,0,0,0}, {8941,8486,10143 ,5468,5470,726 ,0,0,0}, - {8665,10030,8667 ,5470,726,5470 ,0,0,0}, {10086,8662,8659 ,726,726,726 ,0,0,0}, - {10070,10238,10071 ,5471,726,726 ,0,0,0}, {10061,10071,10062 ,5471,726,726 ,0,0,0}, - {10107,10239,10074 ,726,5471,5471 ,0,0,0}, {10060,10074,10239 ,726,5471,5471 ,0,0,0}, - {10079,10137,10107 ,726,726,726 ,0,0,0}, {10137,10239,10107 ,726,5471,726 ,0,0,0}, - {10090,10100,10079 ,726,726,726 ,0,0,0}, {10240,10080,10079 ,726,726,726 ,0,0,0}, - {10077,10079,10092 ,726,726,726 ,0,0,0}, {10093,10092,10079 ,5488,726,726 ,0,0,0}, - {10135,10096,10136 ,5489,726,726 ,0,0,0}, {10095,10092,10091 ,726,726,726 ,0,0,0}, - {10096,10097,10136 ,726,726,726 ,0,0,0}, {10097,10095,10094 ,726,726,726 ,0,0,0}, - {10076,10135,10098 ,726,5489,726 ,0,0,0}, {10182,10075,8743 ,726,726,5489 ,0,0,0}, - {8727,8726,10029 ,726,5471,726 ,0,0,0}, {8738,10241,8739 ,726,726,5488 ,0,0,0}, - {10181,8739,10241 ,726,5488,726 ,0,0,0}, {10067,8733,10083 ,726,726,726 ,0,0,0}, - {10068,10241,8738 ,726,726,726 ,0,0,0}, {8733,10067,8735 ,726,726,726 ,0,0,0}, - {8732,10083,8733 ,726,726,726 ,0,0,0}, {10139,10029,10242 ,5470,726,5471 ,0,0,0}, - {10242,8701,10142 ,5471,726,5471 ,0,0,0}, {10242,10029,8701 ,5471,726,726 ,0,0,0}, - {8703,10243,8700 ,5471,726,726 ,0,0,0}, {8709,10244,10236 ,726,726,726 ,0,0,0}, - {8703,10245,10243 ,5471,726,726 ,0,0,0}, {10246,8694,8691 ,5471,726,726 ,0,0,0}, - {8694,10247,8695 ,726,726,726 ,0,0,0}, {10248,8689,8688 ,726,726,5471 ,0,0,0}, - {8797,10249,8669 ,5471,5471,5471 ,0,0,0}, {8672,8798,8797 ,726,5471,5471 ,0,0,0}, - {8508,8788,8675 ,5471,726,5471 ,0,0,0}, {10250,10251,10252 ,5470,726,726 ,0,0,0}, - {10253,8515,8685 ,726,5470,5471 ,0,0,0}, {8721,10254,8593 ,726,726,726 ,0,0,0}, - {10255,8619,8618 ,5471,5470,5471 ,0,0,0}, {8618,8615,10256 ,5471,726,726 ,0,0,0}, - {8718,8599,8712 ,726,5470,726 ,0,0,0}, {8511,8678,8680 ,5471,726,726 ,0,0,0}, - {8722,8600,8718 ,726,5471,726 ,0,0,0}, {8612,10257,8613 ,726,726,5471 ,0,0,0}, - {8712,10258,8713 ,726,726,726 ,0,0,0}, {10198,9995,8715 ,726,5470,726 ,0,0,0}, - {9995,10203,8710 ,5470,726,726 ,0,0,0}, {10203,10244,8709 ,726,726,726 ,0,0,0}, - {8706,10245,8703 ,5471,726,5471 ,0,0,0}, {10245,8706,10236 ,726,5471,726 ,0,0,0}, - {10247,10259,8697 ,726,726,726 ,0,0,0}, {8697,10259,10029 ,726,726,726 ,0,0,0}, - {10243,10142,8700 ,726,5471,726 ,0,0,0}, {8729,8727,10029 ,726,726,726 ,0,0,0}, - {10029,8726,8701 ,726,5471,726 ,0,0,0}, {8699,10029,10140 ,5471,726,5471 ,0,0,0}, - {10259,10226,10029 ,726,5489,726 ,0,0,0}, {8697,8695,10247 ,726,726,726 ,0,0,0}, - {8694,10246,10247 ,726,5471,726 ,0,0,0}, {8691,10235,10246 ,726,5470,5471 ,0,0,0}, - {8688,10249,10248 ,5471,5471,726 ,0,0,0}, {8689,10248,10235 ,726,726,5470 ,0,0,0}, - {8669,8668,8797 ,5471,726,5471 ,0,0,0}, {8688,8669,10249 ,5471,5471,5471 ,0,0,0}, - {8672,8676,8798 ,726,726,5471 ,0,0,0}, {8668,8672,8797 ,726,726,5471 ,0,0,0}, - {8676,8675,8794 ,726,5471,726 ,0,0,0}, {8511,8508,8678 ,5471,5471,726 ,0,0,0}, - {8511,8680,8514 ,5471,726,726 ,0,0,0}, {8682,8515,8514 ,726,5470,726 ,0,0,0}, - {8682,8514,8680 ,726,726,726 ,0,0,0}, {8682,8685,8515 ,726,5471,5470 ,0,0,0}, - {10260,8558,8563 ,5468,5469,5470 ,0,0,0}, {10116,10128,10123 ,5468,5469,726 ,0,0,0}, - {8903,8566,8904 ,5468,5471,5469 ,0,0,0}, {8586,8583,10116 ,5469,5471,5468 ,0,0,0}, - {8547,10129,10128 ,5469,726,5469 ,0,0,0}, {10127,10129,10121 ,726,726,726 ,0,0,0}, - {10161,10158,10160 ,726,5471,726 ,0,0,0}, {10157,10261,10119 ,5471,5468,5471 ,0,0,0}, - {10120,10119,10261 ,5468,5471,5468 ,0,0,0}, {10159,10158,10161 ,5468,5471,726 ,0,0,0}, - {10159,10261,10157 ,5468,5468,5471 ,0,0,0}, {10160,10125,10124 ,726,5470,726 ,0,0,0}, - {10132,10131,10126 ,726,5469,5469 ,0,0,0}, {10151,10130,10152 ,5470,5471,726 ,0,0,0}, - {10130,10132,10152 ,5471,726,726 ,0,0,0}, {10148,10144,10146 ,726,726,5471 ,0,0,0}, - {10150,10149,10262 ,726,5470,726 ,0,0,0}, {10262,10151,10150 ,726,5470,726 ,0,0,0}, - {10148,10147,10144 ,726,5471,726 ,0,0,0}, {10149,10148,10262 ,5470,726,726 ,0,0,0}, - {10115,10146,10145 ,726,5471,5470 ,0,0,0}, {10030,10114,8667 ,726,726,5470 ,0,0,0}, - {8653,8651,10070 ,726,5470,5471 ,0,0,0}, {8662,10263,8663 ,726,726,726 ,0,0,0}, - {10031,8663,10263 ,726,726,726 ,0,0,0}, {10085,8657,10141 ,5471,5470,726 ,0,0,0}, - {10086,10263,8662 ,726,726,726 ,0,0,0}, {8657,10085,8659 ,5470,5471,726 ,0,0,0}, - {8656,10141,8657 ,5470,726,5470 ,0,0,0}, {10197,8650,8625 ,5471,5471,5471 ,0,0,0}, - {8625,8624,10196 ,5471,726,5471 ,0,0,0}, {10111,8650,10197 ,5471,5471,5471 ,0,0,0}, - {10264,10265,8627 ,5471,726,726 ,0,0,0}, {10072,8630,8633 ,726,5470,5470 ,0,0,0}, - {10265,8624,8627 ,726,726,726 ,0,0,0}, {8634,8639,10266 ,5470,726,726 ,0,0,0}, - {8634,10267,8633 ,5470,726,5470 ,0,0,0}, {10268,8639,8637 ,726,726,726 ,0,0,0}, - {8526,8528,10269 ,726,5471,5471 ,0,0,0}, {8613,10270,8615 ,5471,726,726 ,0,0,0}, - {10271,10272,10273 ,5471,726,726 ,0,0,0}, {8561,10271,10274 ,5471,5471,5471 ,0,0,0}, - {10143,8486,10275 ,726,5470,5469 ,0,0,0}, {8903,8906,10276 ,5468,5468,5470 ,0,0,0}, - {8542,10277,8543 ,726,726,5471 ,0,0,0}, {8561,10274,8563 ,5471,5471,5470 ,0,0,0}, - {8642,8523,8636 ,726,5470,5470 ,0,0,0}, {8604,10278,10279 ,5470,5471,726 ,0,0,0}, - {8646,8524,8642 ,726,5471,726 ,0,0,0}, {10280,10269,8528 ,5471,5471,5471 ,0,0,0}, - {10281,10282,8636 ,726,5471,5470 ,0,0,0}, {10268,10266,8639 ,726,726,726 ,0,0,0}, - {10266,10267,8634 ,726,726,5470 ,0,0,0}, {10267,10073,8633 ,726,726,5470 ,0,0,0}, - {8630,10264,8627 ,5470,5471,726 ,0,0,0}, {10264,8630,10072 ,5471,5470,726 ,0,0,0}, - {8621,10255,10238 ,5471,5471,726 ,0,0,0}, {10238,8623,8621 ,726,726,5471 ,0,0,0}, - {10265,10196,8624 ,726,5471,726 ,0,0,0}, {8651,8623,10070 ,5470,726,5471 ,0,0,0}, - {10110,8651,8650 ,726,5470,5471 ,0,0,0}, {10110,8623,8651 ,726,726,5470 ,0,0,0}, - {10070,8623,10238 ,5471,726,726 ,0,0,0}, {8621,8619,10255 ,5471,5470,5471 ,0,0,0}, - {8618,10256,10255 ,5471,726,5471 ,0,0,0}, {8615,10270,10256 ,726,726,726 ,0,0,0}, - {8612,10254,10257 ,726,726,726 ,0,0,0}, {8613,10257,10270 ,5471,726,726 ,0,0,0}, - {8593,8592,8721 ,726,5471,726 ,0,0,0}, {8612,8593,10254 ,726,726,726 ,0,0,0}, - {8596,8600,8722 ,5470,5471,726 ,0,0,0}, {8592,8596,8721 ,5471,5470,726 ,0,0,0}, - {8600,8599,8718 ,5471,5470,726 ,0,0,0}, {10279,10217,8602 ,726,5471,726 ,0,0,0}, - {8712,8599,10217 ,726,5470,5471 ,0,0,0}, {8609,10283,10284 ,726,726,726 ,0,0,0}, - {10278,8606,10284 ,5471,726,726 ,0,0,0}, {10285,10286,10287 ,5470,5470,5471 ,0,0,0}, - {8589,10192,8591 ,5468,5470,5483 ,0,0,0}, {8897,8896,8569 ,726,5468,5468 ,0,0,0}, - {8589,8587,10191 ,5468,5469,5470 ,0,0,0}, {8925,9889,10188 ,726,5468,5468 ,0,0,0}, - {8922,10190,9889 ,5469,726,5468 ,0,0,0}, {10188,10189,9909 ,5468,5468,5469 ,0,0,0}, - {9918,10189,9919 ,5476,5468,5471 ,0,0,0}, {9946,9949,9944 ,5468,5468,5475 ,0,0,0}, - {9948,10288,10174 ,5483,726,5468 ,0,0,0}, {9917,10174,10288 ,5475,5468,726 ,0,0,0}, - {9947,9949,9946 ,5486,5468,5468 ,0,0,0}, {9947,10288,9948 ,5486,726,5483 ,0,0,0}, - {9944,9921,9945 ,5475,5478,5485 ,0,0,0}, {9922,9933,9920 ,5469,5468,5477 ,0,0,0}, - {9926,9932,9924 ,726,726,5471 ,0,0,0}, {9932,9922,9924 ,726,5469,5471 ,0,0,0}, - {10176,9930,10177 ,5472,5480,5482 ,0,0,0}, {9931,9926,9925 ,5481,726,5469 ,0,0,0}, - {9930,9929,10177 ,5480,726,5482 ,0,0,0}, {9929,9931,9941 ,726,5481,5475 ,0,0,0}, - {9934,10176,9937 ,5475,5472,5468 ,0,0,0}, {10192,9935,8591 ,5470,5475,5483 ,0,0,0}, - {10116,8575,10193 ,5468,726,5468 ,0,0,0}, {8586,10118,8587 ,5469,5469,5469 ,0,0,0}, - {10191,8587,10118 ,5470,5469,5469 ,0,0,0}, {10289,10117,10116 ,5468,726,5468 ,0,0,0}, - {10118,8586,10116 ,5469,5469,5468 ,0,0,0}, {10116,8583,8581 ,5468,5471,5470 ,0,0,0}, - {10116,8580,8577 ,5468,5469,5471 ,0,0,0}, {10290,8549,10194 ,5469,5468,5469 ,0,0,0}, - {8549,8548,10195 ,5468,5471,5471 ,0,0,0}, {8574,8549,10290 ,5468,5468,5469 ,0,0,0}, - {10291,10292,8551 ,5470,5471,5468 ,0,0,0}, {10112,8554,8557 ,5470,726,5468 ,0,0,0}, - {10292,8548,8551 ,5471,5471,5468 ,0,0,0}, {8906,8908,10293 ,5468,5468,5468 ,0,0,0}, - {8520,8646,8645 ,5471,726,726 ,0,0,0}, {8558,10294,8557 ,5469,5469,5468 ,0,0,0}, - {10295,8537,8536 ,726,5471,726 ,0,0,0}, {10296,8542,8539 ,726,726,5470 ,0,0,0}, - {10297,8517,8645 ,726,5470,726 ,0,0,0}, {10298,8539,8537 ,726,5470,5471 ,0,0,0}, - {8903,8560,8566 ,5468,5469,5471 ,0,0,0}, {8906,10293,10276 ,5468,5468,5470 ,0,0,0}, - {8566,8570,8904 ,5471,726,5469 ,0,0,0}, {8569,8900,8570 ,5468,5468,726 ,0,0,0}, - {8904,8570,8900 ,5469,726,5468 ,0,0,0}, {8485,10187,10275 ,5469,5469,5469 ,0,0,0}, - {8910,8490,10299 ,5471,5470,726 ,0,0,0}, {8490,10186,8488 ,5470,5469,726 ,0,0,0}, - {8560,10300,8561 ,5469,5471,5471 ,0,0,0}, {10274,10260,8563 ,5471,5468,5470 ,0,0,0}, - {10260,10294,8558 ,5468,5469,5469 ,0,0,0}, {10294,10113,8557 ,5469,5468,5468 ,0,0,0}, - {8554,10291,8551 ,726,5470,5468 ,0,0,0}, {10291,8554,10112 ,5470,726,5470 ,0,0,0}, - {8545,10277,10301 ,726,726,5471 ,0,0,0}, {10301,8547,8545 ,5471,5469,726 ,0,0,0}, - {10292,10195,8548 ,5471,5471,5471 ,0,0,0}, {8547,10128,10116 ,5469,5469,5468 ,0,0,0}, - {10116,10193,8547 ,5468,5468,5469 ,0,0,0}, {10290,10193,8574 ,5469,5468,5468 ,0,0,0}, - {8547,10301,10129 ,5469,5471,726 ,0,0,0}, {8545,8543,10277 ,726,5471,726 ,0,0,0}, - {8542,10296,10277 ,726,726,726 ,0,0,0}, {8539,10298,10296 ,5470,726,726 ,0,0,0}, - {8536,10297,10295 ,726,726,726 ,0,0,0}, {8537,10295,10298 ,5471,726,726 ,0,0,0}, - {8517,8516,8645 ,5470,726,726 ,0,0,0}, {8536,8517,10297 ,726,5470,726 ,0,0,0}, - {8520,8524,8646 ,5471,5471,726 ,0,0,0}, {8516,8520,8645 ,726,5471,726 ,0,0,0}, - {8524,8523,8642 ,5471,5470,726 ,0,0,0}, {10269,10281,8526 ,5471,726,726 ,0,0,0}, - {10280,8530,10302 ,5471,726,726 ,0,0,0}, {10200,10302,10201 ,5471,726,5470 ,0,0,0}, - {8528,8530,10280 ,5471,726,5471 ,0,0,0}, {10274,10271,10273 ,5471,5471,726 ,0,0,0}, - {10268,8637,10303 ,726,726,5471 ,0,0,0}, {10214,8865,8470 ,726,5470,5470 ,0,0,0}, - {10268,10303,10285 ,726,5471,5470 ,0,0,0}, {8505,8503,8789 ,726,5470,5471 ,0,0,0}, - {8499,10180,8502 ,726,5470,726 ,0,0,0}, {10233,8502,10180 ,5471,726,5470 ,0,0,0}, - {8865,8864,8466 ,5470,5471,5471 ,0,0,0}, {8761,8497,8758 ,726,5471,726 ,0,0,0}, - {8761,10179,8497 ,726,726,5471 ,0,0,0}, {8492,8864,8751 ,5470,5471,726 ,0,0,0}, - {8751,8754,8492 ,726,726,5470 ,0,0,0}, {8865,8466,8470 ,5470,5471,5470 ,0,0,0}, - {10218,8470,8472 ,726,5470,726 ,0,0,0}, {8484,8940,8482 ,5471,5469,726 ,0,0,0}, - {10219,8472,8473 ,5470,726,5471 ,0,0,0}, {8837,8476,8834 ,726,5471,5470 ,0,0,0}, - {8837,10185,8476 ,726,5471,5471 ,0,0,0}, {8940,8827,8482 ,5469,5471,726 ,0,0,0}, - {8827,8830,8482 ,5471,5469,726 ,0,0,0}, {8484,8486,8941 ,5471,5470,5468 ,0,0,0}, - {10275,8486,8485 ,5469,5470,5469 ,0,0,0}, {10300,8560,10276 ,5471,5469,5470 ,0,0,0}, - {10187,8485,8488 ,5469,5469,726 ,0,0,0}, {8913,8490,8910 ,5469,5470,5471 ,0,0,0}, - {8913,10186,8490 ,5469,5469,5470 ,0,0,0}, {10276,8560,8903 ,5470,5469,5468 ,0,0,0}, - {10299,10293,8908 ,726,5468,5468 ,0,0,0}, {10299,8908,8910 ,726,5468,5471 ,0,0,0}, - {10300,10271,8561 ,5471,5471,5471 ,0,0,0}, {10200,10202,10272 ,5471,5471,726 ,0,0,0}, - {10273,10272,10202 ,726,726,5471 ,0,0,0}, {8637,8636,10282 ,726,5470,5471 ,0,0,0}, - {8533,10302,8530 ,726,726,726 ,0,0,0}, {8533,10201,10302 ,726,5470,726 ,0,0,0}, - {10281,8636,8523 ,726,5470,5470 ,0,0,0}, {8523,8526,10281 ,5470,726,726 ,0,0,0}, - {8637,10282,10303 ,726,5471,5471 ,0,0,0}, {10287,10286,10304 ,5471,5470,726 ,0,0,0}, - {10285,10303,10286 ,5470,5471,5470 ,0,0,0}, {10304,10284,10283 ,726,726,726 ,0,0,0}, - {10283,10287,10304 ,726,5471,726 ,0,0,0}, {10284,8606,8609 ,726,726,726 ,0,0,0}, - {10278,8604,8606 ,5471,5470,726 ,0,0,0}, {10279,8602,8604 ,726,726,5470 ,0,0,0}, - {8712,10217,10258 ,726,5471,726 ,0,0,0}, {10199,10305,10198 ,5471,5471,726 ,0,0,0}, - {8713,10258,10199 ,726,726,5471 ,0,0,0}, {10251,10305,10252 ,726,5471,726 ,0,0,0}, - {10199,10252,10305 ,5471,726,5471 ,0,0,0}, {10251,10250,10253 ,726,5470,726 ,0,0,0}, - {8515,10253,10250 ,5470,726,5470 ,0,0,0}, {10289,10116,10122 ,5468,5468,5468 ,0,0,0}, - {8581,8580,10116 ,5470,5469,5468 ,0,0,0}, {10079,10099,10093 ,726,726,5488 ,0,0,0}, - {10088,10240,10079 ,5488,726,726 ,0,0,0}, {10029,8699,8697 ,726,5471,726 ,0,0,0}, - {10204,10029,10084 ,726,726,726 ,0,0,0}, {10170,10169,10167 ,5469,5470,5468 ,0,0,0}, - {10170,9912,10168 ,5469,5468,5469 ,0,0,0}, {10056,9899,9898 ,5489,726,726 ,0,0,0}, - {8819,8817,9899 ,726,726,726 ,0,0,0}, {10306,10307,10308 ,5490,5491,5492 ,0,0,0}, - {10309,10310,10311 ,5493,5494,5495 ,0,0,0}, {10312,10310,10313 ,5496,5494,5497 ,0,0,0}, - {10314,10315,10316 ,5498,5499,5500 ,0,0,0}, {10317,10318,10319 ,5501,5502,5503 ,0,0,0}, - {10320,10321,10322 ,5504,5505,5506 ,0,0,0}, {10323,10324,10325 ,5507,5508,5509 ,0,0,0}, - {9936,9940,10320 ,5510,5511,5504 ,0,0,0}, {10326,10327,10328 ,5512,5513,5514 ,0,0,0}, - {10317,10322,10321 ,5501,5506,5505 ,0,0,0}, {10329,10330,10327 ,5515,5516,5513 ,0,0,0}, - {10331,10329,10327 ,5517,5515,5513 ,0,0,0}, {10331,10332,10329 ,5517,5518,5515 ,0,0,0}, - {10332,10331,10333 ,5518,5517,5519 ,0,0,0}, {10334,10330,10335 ,5520,5516,5521 ,0,0,0}, - {10336,10337,10338 ,5522,5523,5524 ,0,0,0}, {10327,10330,10334 ,5513,5516,5520 ,0,0,0}, - {10338,10337,10333 ,5524,5523,5519 ,0,0,0}, {10339,10336,10340 ,5525,5522,5526 ,0,0,0}, - {10341,10342,10343 ,5527,5528,5529 ,0,0,0}, {10341,10334,10335 ,5527,5520,5521 ,0,0,0}, - {10344,10345,10346 ,5530,5531,5532 ,0,0,0}, {10341,10335,10342 ,5527,5521,5528 ,0,0,0}, - {10342,10344,10343 ,5528,5530,5529 ,0,0,0}, {10347,10348,10346 ,5533,5534,5532 ,0,0,0}, - {10324,10349,10325 ,5508,5535,5509 ,0,0,0}, {10346,10345,10347 ,5532,5531,5533 ,0,0,0}, - {10350,10309,10351 ,5536,5493,5537 ,0,0,0}, {10345,10352,10347 ,5531,5538,5533 ,0,0,0}, - {10324,10328,10349 ,5508,5514,5535 ,0,0,0}, {10353,10328,10334 ,5539,5514,5520 ,0,0,0}, - {10354,10355,10356 ,5540,5541,5542 ,0,0,0}, {10357,10354,10358 ,5543,5540,5544 ,0,0,0}, - {9915,9932,10307 ,5545,5546,5491 ,0,0,0}, {10359,10360,10361 ,5547,5548,5549 ,0,0,0}, - {9915,10306,9916 ,5545,5490,726 ,0,0,0}, {10362,9916,10306 ,5550,726,5490 ,0,0,0}, - {10363,10348,10364 ,5551,5534,5552 ,0,0,0}, {10344,10346,10343 ,5530,5532,5529 ,0,0,0}, - {10346,10348,10363 ,5532,5534,5551 ,0,0,0}, {10364,10365,10363 ,5552,5553,5551 ,0,0,0}, - {10366,10343,10363 ,5554,5529,5551 ,0,0,0}, {10328,10353,10349 ,5514,5539,5535 ,0,0,0}, - {10366,10353,10341 ,5554,5539,5527 ,0,0,0}, {10331,10367,10333 ,5517,5555,5519 ,0,0,0}, - {10341,10353,10334 ,5527,5539,5520 ,0,0,0}, {10368,10369,10338 ,5556,5557,5524 ,0,0,0}, - {10327,10334,10328 ,5513,5520,5514 ,0,0,0}, {10367,10331,10326 ,5555,5517,5512 ,0,0,0}, - {10336,10338,10340 ,5522,5524,5526 ,0,0,0}, {10332,10333,10337 ,5518,5519,5523 ,0,0,0}, - {10333,10367,10368 ,5519,5555,5556 ,0,0,0}, {10370,10340,10338 ,5558,5526,5524 ,0,0,0}, - {10346,10363,10343 ,5532,5551,5529 ,0,0,0}, {10371,10365,10364 ,5559,5553,5552 ,0,0,0}, - {10371,10358,10365 ,5559,5544,5553 ,0,0,0}, {10343,10366,10341 ,5529,5554,5527 ,0,0,0}, - {10365,10372,10366 ,5553,5560,5554 ,0,0,0}, {10324,10313,10326 ,5508,5497,5512 ,0,0,0}, - {10372,10349,10353 ,5560,5535,5539 ,0,0,0}, {10309,10369,10368 ,5493,5557,5556 ,0,0,0}, - {10350,10369,10309 ,5536,5557,5493 ,0,0,0}, {10327,10326,10331 ,5513,5512,5517 ,0,0,0}, - {10328,10324,10326 ,5514,5508,5512 ,0,0,0}, {10333,10368,10338 ,5519,5556,5524 ,0,0,0}, - {10313,10310,10367 ,5497,5494,5555 ,0,0,0}, {10338,10369,10370 ,5524,5557,5558 ,0,0,0}, - {10368,10310,10309 ,5556,5494,5493 ,0,0,0}, {10373,10370,10369 ,5561,5558,5557 ,0,0,0}, - {10363,10365,10366 ,5551,5553,5554 ,0,0,0}, {10357,10358,10371 ,5543,5544,5559 ,0,0,0}, - {10374,10356,10375 ,5562,5542,5563 ,0,0,0}, {10366,10372,10353 ,5554,5560,5539 ,0,0,0}, - {10376,10372,10358 ,5564,5560,5544 ,0,0,0}, {10313,10324,10323 ,5497,5508,5507 ,0,0,0}, - {10376,10325,10349 ,5564,5509,5535 ,0,0,0}, {10377,10351,10311 ,5565,5537,5495 ,0,0,0}, - {10367,10310,10368 ,5555,5494,5556 ,0,0,0}, {10326,10313,10367 ,5512,5497,5555 ,0,0,0}, - {10313,10323,10312 ,5497,5507,5496 ,0,0,0}, {10350,10351,10378 ,5536,5537,5566 ,0,0,0}, - {10312,10311,10310 ,5496,5495,5494 ,0,0,0}, {10369,10350,10373 ,5557,5536,5561 ,0,0,0}, - {10309,10311,10351 ,5493,5495,5537 ,0,0,0}, {10379,10373,10350 ,5567,5561,5536 ,0,0,0}, - {10365,10358,10372 ,5553,5544,5560 ,0,0,0}, {10355,10354,10357 ,5541,5540,5543 ,0,0,0}, - {10325,10380,10323 ,5509,5568,5507 ,0,0,0}, {10372,10376,10349 ,5560,5564,5535 ,0,0,0}, - {10381,10376,10354 ,5569,5564,5540 ,0,0,0}, {10323,10382,10312 ,5507,5570,5496 ,0,0,0}, - {10381,10380,10325 ,5569,5568,5509 ,0,0,0}, {10312,10383,10311 ,5496,5571,5495 ,0,0,0}, - {10382,10323,10380 ,5570,5507,5568 ,0,0,0}, {10351,10314,10378 ,5537,5498,5566 ,0,0,0}, - {10383,10312,10382 ,5571,5496,5570 ,0,0,0}, {10384,10378,10316 ,5572,5566,5500 ,0,0,0}, - {10377,10311,10383 ,5565,5495,5571 ,0,0,0}, {10350,10378,10379 ,5536,5566,5567 ,0,0,0}, - {10351,10377,10314 ,5537,5565,5498 ,0,0,0}, {10384,10379,10378 ,5572,5567,5566 ,0,0,0}, - {10358,10354,10376 ,5544,5540,5564 ,0,0,0}, {10375,10356,10355 ,5563,5542,5541 ,0,0,0}, - {10380,10360,10382 ,5568,5548,5570 ,0,0,0}, {10376,10381,10325 ,5564,5569,5509 ,0,0,0}, - {10356,10385,10381 ,5542,5573,5569 ,0,0,0}, {10382,10359,10383 ,5570,5547,5571 ,0,0,0}, - {10385,10360,10380 ,5573,5548,5568 ,0,0,0}, {10383,10386,10377 ,5571,5574,5565 ,0,0,0}, - {10360,10359,10382 ,5548,5547,5570 ,0,0,0}, {10387,10314,10377 ,5575,5498,5565 ,0,0,0}, - {10386,10383,10359 ,5574,5571,5547 ,0,0,0}, {10388,10316,10319 ,5576,5500,5503 ,0,0,0}, - {10377,10386,10387 ,5565,5574,5575 ,0,0,0}, {10387,10315,10314 ,5575,5499,5498 ,0,0,0}, - {10384,10316,10388 ,5572,5500,5576 ,0,0,0}, {10378,10314,10316 ,5566,5498,5500 ,0,0,0}, - {10354,10356,10381 ,5540,5542,5569 ,0,0,0}, {10389,10374,10375 ,5577,5562,5563 ,0,0,0}, - {10390,10386,10359 ,5578,5574,5547 ,0,0,0}, {10381,10385,10380 ,5569,5573,5568 ,0,0,0}, - {10374,10308,10385 ,5562,5492,5573 ,0,0,0}, {10391,10387,10386 ,5579,5575,5574 ,0,0,0}, - {10308,10361,10360 ,5492,5549,5548 ,0,0,0}, {10392,10315,10387 ,5580,5499,5575 ,0,0,0}, - {10361,10390,10359 ,5549,5578,5547 ,0,0,0}, {10322,10317,10393 ,5506,5501,5581 ,0,0,0}, - {10390,10391,10386 ,5578,5579,5574 ,0,0,0}, {10319,10315,10394 ,5503,5499,5582 ,0,0,0}, - {10392,10387,10391 ,5580,5575,5579 ,0,0,0}, {10394,10315,10392 ,5582,5499,5580 ,0,0,0}, - {10388,10319,10318 ,5576,5503,5502 ,0,0,0}, {10316,10315,10319 ,5500,5499,5503 ,0,0,0}, - {10356,10374,10385 ,5542,5562,5573 ,0,0,0}, {10306,10389,10362 ,5490,5577,5550 ,0,0,0}, - {10307,10395,10361 ,5491,5583,5549 ,0,0,0}, {10385,10308,10360 ,5573,5492,5548 ,0,0,0}, - {10307,10361,10308 ,5491,5549,5492 ,0,0,0}, {10395,10396,10390 ,5583,5584,5578 ,0,0,0}, - {10395,10390,10361 ,5583,5578,5549 ,0,0,0}, {10396,10397,10391 ,5584,5585,5579 ,0,0,0}, - {10396,10391,10390 ,5584,5579,5578 ,0,0,0}, {10397,10398,10392 ,5585,5586,5580 ,0,0,0}, - {10397,10392,10391 ,5585,5580,5579 ,0,0,0}, {10398,10393,10394 ,5586,5581,5582 ,0,0,0}, - {10394,10392,10398 ,5582,5580,5586 ,0,0,0}, {10393,10317,10394 ,5581,5501,5582 ,0,0,0}, - {10318,10317,10321 ,5502,5501,5505 ,0,0,0}, {10319,10394,10317 ,5503,5582,5501 ,0,0,0}, - {10389,10306,10374 ,5577,5490,5562 ,0,0,0}, {10308,10374,10306 ,5492,5562,5490 ,0,0,0}, - {10395,9932,9926 ,5583,5546,5587 ,0,0,0}, {9915,10307,10306 ,5545,5491,5490 ,0,0,0}, - {10396,9926,9931 ,5584,5587,5588 ,0,0,0}, {9932,10395,10307 ,5546,5583,5491 ,0,0,0}, - {10397,9931,9930 ,5585,5588,5589 ,0,0,0}, {9926,10396,10395 ,5587,5584,5583 ,0,0,0}, - {10398,9930,10176 ,5586,5589,5590 ,0,0,0}, {9931,10397,10396 ,5588,5585,5584 ,0,0,0}, - {10393,10176,9934 ,5581,5590,5591 ,0,0,0}, {9930,10398,10397 ,5589,5586,5585 ,0,0,0}, - {10322,9934,9936 ,5506,5591,5510 ,0,0,0}, {10176,10393,10398 ,5590,5581,5586 ,0,0,0}, - {9936,10320,10322 ,5510,5504,5506 ,0,0,0}, {9934,10322,10393 ,5591,5506,5581 ,0,0,0}, - {10399,10400,10401 ,5592,5593,5594 ,0,0,0}, {10402,10403,10404 ,5595,5596,5597 ,0,0,0}, - {10400,10405,10401 ,5593,5598,5594 ,0,0,0}, {10406,10404,10403 ,5599,5597,5596 ,0,0,0}, - {10407,10408,10409 ,5600,5601,5602 ,0,0,0}, {10410,10411,10408 ,5603,5604,5601 ,0,0,0}, - {10412,10413,10414 ,5605,5606,5607 ,0,0,0}, {10415,10411,10410 ,5608,5604,5603 ,0,0,0}, - {10411,10409,10408 ,5604,5602,5601 ,0,0,0}, {10416,10408,10402 ,5609,5601,5595 ,0,0,0}, - {10417,10418,10419 ,5610,5611,5612 ,0,0,0}, {10420,10421,10422 ,5613,5614,5615 ,0,0,0}, - {10423,10418,10424 ,5616,5611,5617 ,0,0,0}, {10425,10426,10399 ,5618,5619,5592 ,0,0,0}, - {10413,10162,10130 ,5606,5620,5621 ,0,0,0}, {10427,10428,10429 ,5622,5623,5624 ,0,0,0}, - {10430,10164,10412 ,5625,5626,5605 ,0,0,0}, {10162,10412,10164 ,5620,5605,5626 ,0,0,0}, - {10431,10432,10433 ,5627,5628,5629 ,0,0,0}, {10405,10434,10401 ,5598,5630,5594 ,0,0,0}, - {10435,10436,10437 ,5631,5632,5633 ,0,0,0}, {10438,10439,10440 ,5634,5635,5636 ,0,0,0}, - {10429,10432,10441 ,5624,5628,5637 ,0,0,0}, {10442,10443,10444 ,5638,5639,5640 ,0,0,0}, - {10445,10399,10446 ,5641,5592,5642 ,0,0,0}, {10443,10438,10444 ,5639,5634,5640 ,0,0,0}, - {10425,10406,10403 ,5618,5599,5596 ,0,0,0}, {10153,10156,10442 ,5643,5644,5638 ,0,0,0}, - {10406,10425,10447 ,5599,5618,5645 ,0,0,0}, {10447,10425,10445 ,5645,5618,5641 ,0,0,0}, - {10448,10449,10445 ,5646,5647,5641 ,0,0,0}, {10425,10403,10426 ,5618,5596,5619 ,0,0,0}, - {10448,10450,10451 ,5646,5648,5649 ,0,0,0}, {10451,10449,10448 ,5649,5647,5646 ,0,0,0}, - {10452,10453,10454 ,5650,5651,5652 ,0,0,0}, {10453,10452,10450 ,5651,5650,5648 ,0,0,0}, - {10410,10408,10416 ,5603,5601,5609 ,0,0,0}, {10455,10407,10409 ,5653,5600,5602 ,0,0,0}, - {10455,10456,10407 ,5653,5654,5600 ,0,0,0}, {10416,10402,10404 ,5609,5595,5597 ,0,0,0}, - {10457,10402,10407 ,5655,5595,5600 ,0,0,0}, {10399,10426,10400 ,5592,5619,5593 ,0,0,0}, - {10457,10426,10403 ,5655,5619,5596 ,0,0,0}, {10448,10458,10450 ,5646,5656,5648 ,0,0,0}, - {10459,10453,10460 ,5657,5651,5658 ,0,0,0}, {10447,10445,10449 ,5645,5641,5647 ,0,0,0}, - {10445,10425,10399 ,5641,5618,5592 ,0,0,0}, {10451,10450,10452 ,5649,5648,5650 ,0,0,0}, - {10446,10458,10448 ,5642,5656,5646 ,0,0,0}, {10453,10461,10454 ,5651,5659,5652 ,0,0,0}, - {10450,10458,10460 ,5648,5656,5658 ,0,0,0}, {10462,10461,10453 ,5660,5659,5651 ,0,0,0}, - {10408,10407,10402 ,5601,5600,5595 ,0,0,0}, {10463,10456,10455 ,5661,5654,5653 ,0,0,0}, - {10463,10419,10456 ,5661,5612,5654 ,0,0,0}, {10402,10457,10403 ,5595,5655,5596 ,0,0,0}, - {10456,10464,10457 ,5654,5662,5655 ,0,0,0}, {10401,10433,10446 ,5594,5629,5642 ,0,0,0}, - {10464,10400,10426 ,5662,5593,5619 ,0,0,0}, {10429,10459,10460 ,5624,5657,5658 ,0,0,0}, - {10428,10459,10429 ,5623,5657,5624 ,0,0,0}, {10445,10446,10448 ,5641,5642,5646 ,0,0,0}, - {10399,10401,10446 ,5592,5594,5642 ,0,0,0}, {10450,10460,10453 ,5648,5658,5651 ,0,0,0}, - {10433,10432,10458 ,5629,5628,5656 ,0,0,0}, {10453,10459,10462 ,5651,5657,5660 ,0,0,0}, - {10460,10432,10429 ,5658,5628,5624 ,0,0,0}, {10465,10462,10459 ,5663,5660,5657 ,0,0,0}, - {10407,10456,10457 ,5600,5654,5655 ,0,0,0}, {10417,10419,10463 ,5610,5612,5661 ,0,0,0}, - {10466,10423,10467 ,5664,5616,5665 ,0,0,0}, {10457,10464,10426 ,5655,5662,5619 ,0,0,0}, - {10468,10464,10419 ,5666,5662,5612 ,0,0,0}, {10433,10401,10434 ,5629,5594,5630 ,0,0,0}, - {10468,10405,10400 ,5666,5598,5593 ,0,0,0}, {10469,10427,10441 ,5667,5622,5637 ,0,0,0}, - {10458,10432,10460 ,5656,5628,5658 ,0,0,0}, {10446,10433,10458 ,5642,5629,5656 ,0,0,0}, - {10433,10434,10431 ,5629,5630,5627 ,0,0,0}, {10428,10427,10470 ,5623,5622,5668 ,0,0,0}, - {10431,10441,10432 ,5627,5637,5628 ,0,0,0}, {10459,10428,10465 ,5657,5623,5663 ,0,0,0}, - {10429,10441,10427 ,5624,5637,5622 ,0,0,0}, {10471,10465,10428 ,5669,5663,5623 ,0,0,0}, - {10456,10419,10464 ,5654,5612,5662 ,0,0,0}, {10424,10418,10417 ,5617,5611,5610 ,0,0,0}, - {10405,10472,10434 ,5598,5670,5630 ,0,0,0}, {10464,10468,10400 ,5662,5666,5593 ,0,0,0}, - {10473,10468,10418 ,5671,5666,5611 ,0,0,0}, {10434,10474,10431 ,5630,5672,5627 ,0,0,0}, - {10473,10472,10405 ,5671,5670,5598 ,0,0,0}, {10431,10475,10441 ,5627,5673,5637 ,0,0,0}, - {10474,10434,10472 ,5672,5630,5670 ,0,0,0}, {10427,10436,10470 ,5622,5632,5668 ,0,0,0}, - {10475,10431,10474 ,5673,5627,5672 ,0,0,0}, {10476,10470,10435 ,5674,5668,5631 ,0,0,0}, - {10469,10441,10475 ,5667,5637,5673 ,0,0,0}, {10428,10470,10471 ,5623,5668,5669 ,0,0,0}, - {10427,10469,10436 ,5622,5667,5632 ,0,0,0}, {10476,10471,10470 ,5674,5669,5668 ,0,0,0}, - {10419,10418,10468 ,5612,5611,5666 ,0,0,0}, {10467,10423,10424 ,5665,5616,5617 ,0,0,0}, - {10472,10420,10474 ,5670,5613,5672 ,0,0,0}, {10468,10473,10405 ,5666,5671,5598 ,0,0,0}, - {10423,10477,10473 ,5616,5675,5671 ,0,0,0}, {10474,10422,10475 ,5672,5615,5673 ,0,0,0}, - {10477,10420,10472 ,5675,5613,5670 ,0,0,0}, {10475,10478,10469 ,5673,5676,5667 ,0,0,0}, - {10420,10422,10474 ,5613,5615,5672 ,0,0,0}, {10479,10436,10469 ,5677,5632,5667 ,0,0,0}, - {10478,10475,10422 ,5676,5673,5615 ,0,0,0}, {10480,10435,10440 ,5678,5631,5636 ,0,0,0}, - {10469,10478,10479 ,5667,5676,5677 ,0,0,0}, {10479,10437,10436 ,5677,5633,5632 ,0,0,0}, - {10476,10435,10480 ,5674,5631,5678 ,0,0,0}, {10470,10436,10435 ,5668,5632,5631 ,0,0,0}, - {10418,10423,10473 ,5611,5616,5671 ,0,0,0}, {10481,10466,10467 ,5679,5664,5665 ,0,0,0}, - {10482,10478,10422 ,5680,5676,5615 ,0,0,0}, {10473,10477,10472 ,5671,5675,5670 ,0,0,0}, - {10466,10414,10477 ,5664,5607,5675 ,0,0,0}, {10483,10479,10478 ,5681,5677,5676 ,0,0,0}, - {10414,10421,10420 ,5607,5614,5613 ,0,0,0}, {10484,10437,10479 ,5682,5633,5677 ,0,0,0}, - {10421,10482,10422 ,5614,5680,5615 ,0,0,0}, {10444,10438,10485 ,5640,5634,5683 ,0,0,0}, - {10482,10483,10478 ,5680,5681,5676 ,0,0,0}, {10440,10437,10486 ,5636,5633,5684 ,0,0,0}, - {10484,10479,10483 ,5682,5677,5681 ,0,0,0}, {10486,10437,10484 ,5684,5633,5682 ,0,0,0}, - {10480,10440,10439 ,5678,5636,5635 ,0,0,0}, {10435,10437,10440 ,5631,5633,5636 ,0,0,0}, - {10423,10466,10477 ,5616,5664,5675 ,0,0,0}, {10412,10481,10430 ,5605,5679,5625 ,0,0,0}, - {10413,10487,10421 ,5606,5685,5614 ,0,0,0}, {10477,10414,10420 ,5675,5607,5613 ,0,0,0}, - {10413,10421,10414 ,5606,5614,5607 ,0,0,0}, {10487,10488,10482 ,5685,5686,5680 ,0,0,0}, - {10487,10482,10421 ,5685,5680,5614 ,0,0,0}, {10488,10489,10483 ,5686,5687,5681 ,0,0,0}, - {10488,10483,10482 ,5686,5681,5680 ,0,0,0}, {10489,10490,10484 ,5687,5688,5682 ,0,0,0}, - {10489,10484,10483 ,5687,5682,5681 ,0,0,0}, {10490,10485,10486 ,5688,5683,5684 ,0,0,0}, - {10486,10484,10490 ,5684,5682,5688 ,0,0,0}, {10485,10438,10486 ,5683,5634,5684 ,0,0,0}, - {10439,10438,10443 ,5635,5634,5639 ,0,0,0}, {10440,10486,10438 ,5636,5684,5634 ,0,0,0}, - {10481,10412,10466 ,5679,5605,5664 ,0,0,0}, {10414,10466,10412 ,5607,5664,5605 ,0,0,0}, - {10487,10130,10151 ,5685,5621,5689 ,0,0,0}, {10162,10413,10412 ,5620,5606,5605 ,0,0,0}, - {10488,10151,10262 ,5686,5689,5690 ,0,0,0}, {10130,10487,10413 ,5621,5685,5606 ,0,0,0}, - {10489,10262,10148 ,5687,5690,5691 ,0,0,0}, {10151,10488,10487 ,5689,5686,5685 ,0,0,0}, - {10490,10148,10146 ,5688,5691,5692 ,0,0,0}, {10262,10489,10488 ,5690,5687,5686 ,0,0,0}, - {10485,10146,10115 ,5683,5692,5693 ,0,0,0}, {10148,10490,10489 ,5691,5688,5687 ,0,0,0}, - {10444,10115,10153 ,5640,5693,5643 ,0,0,0}, {10146,10485,10490 ,5692,5683,5688 ,0,0,0}, - {10153,10442,10444 ,5643,5638,5640 ,0,0,0}, {10115,10444,10485 ,5693,5640,5683 ,0,0,0}, - {10491,10492,10493 ,5694,5695,5696 ,0,0,0}, {10494,10495,10496 ,5697,5698,5699 ,0,0,0}, - {10493,10497,10498 ,5696,5700,5701 ,0,0,0}, {10497,10499,10498 ,5700,5702,5701 ,0,0,0}, - {10500,10501,10502 ,5703,5704,5705 ,0,0,0}, {10502,10503,10500 ,5705,5706,5703 ,0,0,0}, - {10504,10505,10506 ,5707,5708,5709 ,0,0,0}, {10507,10501,10508 ,5710,5704,5711 ,0,0,0}, - {10507,10502,10501 ,5710,5705,5704 ,0,0,0}, {10508,10509,10507 ,5711,5712,5710 ,0,0,0}, - {10510,10496,10511 ,5713,5699,5714 ,0,0,0}, {10512,10513,10514 ,5715,5716,5717 ,0,0,0}, - {10504,10078,10077 ,5707,5718,5719 ,0,0,0}, {10515,10516,10517 ,5720,5721,5722 ,0,0,0}, - {10518,10105,10506 ,5723,5724,5709 ,0,0,0}, {10519,10520,10513 ,5725,5726,5716 ,0,0,0}, - {10078,10506,10105 ,5718,5709,5724 ,0,0,0}, {10521,10522,10523 ,5727,5728,5729 ,0,0,0}, - {10524,10498,10499 ,5730,5701,5702 ,0,0,0}, {10525,10526,10527 ,5731,5732,5733 ,0,0,0}, - {10528,10529,10493 ,5734,5735,5696 ,0,0,0}, {10530,10531,10532 ,5736,5737,5738 ,0,0,0}, - {10523,10533,10534 ,5729,5739,5740 ,0,0,0}, {10535,10533,10536 ,5741,5739,5742 ,0,0,0}, - {10537,10538,10539 ,5743,5744,5745 ,0,0,0}, {10491,10495,10494 ,5694,5698,5697 ,0,0,0}, - {10538,10525,10539 ,5744,5731,5745 ,0,0,0}, {10529,10540,10491 ,5735,5746,5694 ,0,0,0}, - {10101,10106,10537 ,5747,5748,5743 ,0,0,0}, {10541,10542,10529 ,5749,5750,5735 ,0,0,0}, - {10540,10495,10491 ,5746,5698,5694 ,0,0,0}, {10541,10543,10544 ,5749,5751,5752 ,0,0,0}, - {10529,10542,10540 ,5735,5750,5746 ,0,0,0}, {10545,10546,10547 ,5753,5754,5755 ,0,0,0}, - {10542,10541,10544 ,5750,5749,5752 ,0,0,0}, {10548,10547,10549 ,5756,5755,5757 ,0,0,0}, - {10546,10545,10543 ,5754,5753,5751 ,0,0,0}, {10511,10501,10510 ,5714,5704,5713 ,0,0,0}, - {10501,10511,10508 ,5704,5714,5711 ,0,0,0}, {10503,10550,10500 ,5706,5758,5703 ,0,0,0}, - {10510,10494,10496 ,5713,5697,5699 ,0,0,0}, {10551,10510,10500 ,5759,5713,5703 ,0,0,0}, - {10493,10492,10497 ,5696,5695,5700 ,0,0,0}, {10551,10492,10494 ,5759,5695,5697 ,0,0,0}, - {10541,10552,10543 ,5749,5760,5751 ,0,0,0}, {10494,10492,10491 ,5697,5695,5694 ,0,0,0}, - {10553,10554,10546 ,5761,5762,5754 ,0,0,0}, {10529,10491,10493 ,5735,5694,5696 ,0,0,0}, - {10552,10541,10528 ,5760,5749,5734 ,0,0,0}, {10547,10546,10549 ,5755,5754,5757 ,0,0,0}, - {10544,10543,10545 ,5752,5751,5753 ,0,0,0}, {10543,10552,10553 ,5751,5760,5761 ,0,0,0}, - {10555,10549,10546 ,5763,5757,5754 ,0,0,0}, {10501,10500,10510 ,5704,5703,5713 ,0,0,0}, - {10556,10550,10503 ,5764,5758,5706 ,0,0,0}, {10556,10519,10550 ,5764,5725,5758 ,0,0,0}, - {10510,10551,10494 ,5713,5759,5697 ,0,0,0}, {10550,10557,10551 ,5758,5765,5759 ,0,0,0}, - {10498,10536,10528 ,5701,5742,5734 ,0,0,0}, {10557,10497,10492 ,5765,5700,5695 ,0,0,0}, - {10523,10554,10553 ,5729,5762,5761 ,0,0,0}, {10522,10554,10523 ,5728,5762,5729 ,0,0,0}, - {10529,10528,10541 ,5735,5734,5749 ,0,0,0}, {10493,10498,10528 ,5696,5701,5734 ,0,0,0}, - {10543,10553,10546 ,5751,5761,5754 ,0,0,0}, {10536,10533,10552 ,5742,5739,5760 ,0,0,0}, - {10546,10554,10555 ,5754,5762,5763 ,0,0,0}, {10553,10533,10523 ,5761,5739,5729 ,0,0,0}, - {10558,10555,10554 ,5766,5763,5762 ,0,0,0}, {10500,10550,10551 ,5703,5758,5759 ,0,0,0}, - {10520,10519,10556 ,5726,5725,5764 ,0,0,0}, {10559,10512,10560 ,5767,5715,5768 ,0,0,0}, - {10551,10557,10492 ,5759,5765,5695 ,0,0,0}, {10561,10557,10519 ,5769,5765,5725 ,0,0,0}, - {10536,10498,10524 ,5742,5701,5730 ,0,0,0}, {10561,10499,10497 ,5769,5702,5700 ,0,0,0}, - {10562,10521,10534 ,5770,5727,5740 ,0,0,0}, {10552,10533,10553 ,5760,5739,5761 ,0,0,0}, - {10528,10536,10552 ,5734,5742,5760 ,0,0,0}, {10536,10524,10535 ,5742,5730,5741 ,0,0,0}, - {10522,10521,10563 ,5728,5727,5771 ,0,0,0}, {10535,10534,10533 ,5741,5740,5739 ,0,0,0}, - {10554,10522,10558 ,5762,5728,5766 ,0,0,0}, {10523,10534,10521 ,5729,5740,5727 ,0,0,0}, - {10564,10558,10522 ,5772,5766,5728 ,0,0,0}, {10550,10519,10557 ,5758,5725,5765 ,0,0,0}, - {10514,10513,10520 ,5717,5716,5726 ,0,0,0}, {10499,10565,10524 ,5702,5773,5730 ,0,0,0}, - {10557,10561,10497 ,5765,5769,5700 ,0,0,0}, {10566,10561,10513 ,5774,5769,5716 ,0,0,0}, - {10524,10567,10535 ,5730,5775,5741 ,0,0,0}, {10566,10565,10499 ,5774,5773,5702 ,0,0,0}, - {10535,10568,10534 ,5741,5776,5740 ,0,0,0}, {10567,10524,10565 ,5775,5730,5773 ,0,0,0}, - {10521,10531,10563 ,5727,5737,5771 ,0,0,0}, {10568,10535,10567 ,5776,5741,5775 ,0,0,0}, - {10569,10563,10530 ,5777,5771,5736 ,0,0,0}, {10562,10534,10568 ,5770,5740,5776 ,0,0,0}, - {10522,10563,10564 ,5728,5771,5772 ,0,0,0}, {10521,10562,10531 ,5727,5770,5737 ,0,0,0}, - {10569,10564,10563 ,5777,5772,5771 ,0,0,0}, {10519,10513,10561 ,5725,5716,5769 ,0,0,0}, - {10560,10512,10514 ,5768,5715,5717 ,0,0,0}, {10565,10516,10567 ,5773,5721,5775 ,0,0,0}, - {10561,10566,10499 ,5769,5774,5702 ,0,0,0}, {10512,10570,10566 ,5715,5778,5774 ,0,0,0}, - {10567,10515,10568 ,5775,5720,5776 ,0,0,0}, {10570,10516,10565 ,5778,5721,5773 ,0,0,0}, - {10568,10571,10562 ,5776,5779,5770 ,0,0,0}, {10516,10515,10567 ,5721,5720,5775 ,0,0,0}, - {10572,10531,10562 ,5780,5737,5770 ,0,0,0}, {10571,10568,10515 ,5779,5776,5720 ,0,0,0}, - {10573,10530,10527 ,5781,5736,5733 ,0,0,0}, {10562,10571,10572 ,5770,5779,5780 ,0,0,0}, - {10572,10532,10531 ,5780,5738,5737 ,0,0,0}, {10569,10530,10573 ,5777,5736,5781 ,0,0,0}, - {10563,10531,10530 ,5771,5737,5736 ,0,0,0}, {10513,10512,10566 ,5716,5715,5774 ,0,0,0}, - {10574,10559,10560 ,5782,5767,5768 ,0,0,0}, {10575,10571,10515 ,5783,5779,5720 ,0,0,0}, - {10566,10570,10565 ,5774,5778,5773 ,0,0,0}, {10559,10505,10570 ,5767,5708,5778 ,0,0,0}, - {10576,10572,10571 ,5784,5780,5779 ,0,0,0}, {10505,10517,10516 ,5708,5722,5721 ,0,0,0}, - {10577,10532,10572 ,5785,5738,5780 ,0,0,0}, {10517,10575,10515 ,5722,5783,5720 ,0,0,0}, - {10539,10525,10578 ,5745,5731,5786 ,0,0,0}, {10575,10576,10571 ,5783,5784,5779 ,0,0,0}, - {10527,10532,10579 ,5733,5738,5787 ,0,0,0}, {10577,10572,10576 ,5785,5780,5784 ,0,0,0}, - {10579,10532,10577 ,5787,5738,5785 ,0,0,0}, {10573,10527,10526 ,5781,5733,5732 ,0,0,0}, - {10530,10532,10527 ,5736,5738,5733 ,0,0,0}, {10512,10559,10570 ,5715,5767,5778 ,0,0,0}, - {10506,10574,10518 ,5709,5782,5723 ,0,0,0}, {10504,10580,10517 ,5707,5788,5722 ,0,0,0}, - {10570,10505,10516 ,5778,5708,5721 ,0,0,0}, {10504,10517,10505 ,5707,5722,5708 ,0,0,0}, - {10580,10581,10575 ,5788,5789,5783 ,0,0,0}, {10580,10575,10517 ,5788,5783,5722 ,0,0,0}, - {10581,10582,10576 ,5789,5790,5784 ,0,0,0}, {10581,10576,10575 ,5789,5784,5783 ,0,0,0}, - {10582,10583,10577 ,5790,5791,5785 ,0,0,0}, {10582,10577,10576 ,5790,5785,5784 ,0,0,0}, - {10583,10578,10579 ,5791,5786,5787 ,0,0,0}, {10579,10577,10583 ,5787,5785,5791 ,0,0,0}, - {10578,10525,10579 ,5786,5731,5787 ,0,0,0}, {10526,10525,10538 ,5732,5731,5744 ,0,0,0}, - {10527,10579,10525 ,5733,5787,5731 ,0,0,0}, {10574,10506,10559 ,5782,5709,5767 ,0,0,0}, - {10505,10559,10506 ,5708,5767,5709 ,0,0,0}, {10580,10077,10092 ,5788,5719,5792 ,0,0,0}, - {10078,10504,10506 ,5718,5707,5709 ,0,0,0}, {10581,10092,10095 ,5789,5792,5793 ,0,0,0}, - {10077,10580,10504 ,5719,5788,5707 ,0,0,0}, {10582,10095,10096 ,5790,5793,5794 ,0,0,0}, - {10092,10581,10580 ,5792,5789,5788 ,0,0,0}, {10583,10096,10135 ,5791,5794,5795 ,0,0,0}, - {10095,10582,10581 ,5793,5790,5789 ,0,0,0}, {10578,10135,10076 ,5786,5795,5796 ,0,0,0}, - {10096,10583,10582 ,5794,5791,5790 ,0,0,0}, {10539,10076,10101 ,5745,5796,5747 ,0,0,0}, - {10135,10578,10583 ,5795,5786,5791 ,0,0,0}, {10101,10537,10539 ,5747,5743,5745 ,0,0,0}, - {10076,10539,10578 ,5796,5745,5786 ,0,0,0}, {10584,10585,10586 ,5797,5798,5799 ,0,0,0}, - {10587,9501,9502 ,5800,5801,5802 ,0,0,0}, {10586,10588,10589 ,5799,5803,5804 ,0,0,0}, - {10588,10590,10589 ,5803,5805,5804 ,0,0,0}, {10591,10592,10593 ,5806,5807,5808 ,0,0,0}, - {10593,10594,10591 ,5808,5809,5806 ,0,0,0}, {10595,10596,10597 ,5810,5811,5812 ,0,0,0}, - {10598,10592,9507 ,5813,5807,5814 ,0,0,0}, {10598,10593,10592 ,5813,5808,5807 ,0,0,0}, - {9507,9508,10598 ,5814,5815,5813 ,0,0,0}, {10599,9502,9505 ,5816,5802,5817 ,0,0,0}, - {10600,10601,10602 ,5818,5819,5820 ,0,0,0}, {10595,10034,10033 ,5810,5821,5822 ,0,0,0}, - {10603,10604,10605 ,5823,5824,5825 ,0,0,0}, {10606,10041,10597 ,5826,5827,5812 ,0,0,0}, - {10607,10608,10601 ,5828,5829,5819 ,0,0,0}, {10034,10597,10041 ,5821,5812,5827 ,0,0,0}, - {10609,10610,10611 ,5830,5831,5832 ,0,0,0}, {10612,10589,10590 ,5833,5804,5805 ,0,0,0}, - {10613,10614,10615 ,5834,5835,5836 ,0,0,0}, {10616,10617,10586 ,5837,5838,5799 ,0,0,0}, - {10618,10619,10620 ,5839,5840,5841 ,0,0,0}, {10611,10621,10622 ,5832,5842,5843 ,0,0,0}, - {10623,10621,10624 ,5844,5842,5845 ,0,0,0}, {10625,10626,10627 ,5846,5847,5848 ,0,0,0}, - {10584,9501,10587 ,5797,5801,5800 ,0,0,0}, {10626,10613,10627 ,5847,5834,5848 ,0,0,0}, - {10617,9499,10584 ,5838,5849,5797 ,0,0,0}, {10057,10064,10625 ,5850,5851,5846 ,0,0,0}, - {10628,9497,10617 ,5852,5853,5838 ,0,0,0}, {9499,9501,10584 ,5849,5801,5797 ,0,0,0}, - {10628,10629,9494 ,5852,5854,5855 ,0,0,0}, {10617,9497,9499 ,5838,5853,5849 ,0,0,0}, - {9492,10630,9493 ,5856,5857,5858 ,0,0,0}, {9497,10628,9494 ,5853,5852,5855 ,0,0,0}, - {9487,9493,10631 ,5067,5858,5859 ,0,0,0}, {10630,9492,10629 ,5857,5856,5854 ,0,0,0}, - {9505,10592,10599 ,5817,5807,5816 ,0,0,0}, {10592,9505,9507 ,5807,5817,5814 ,0,0,0}, - {10594,10632,10591 ,5809,5860,5806 ,0,0,0}, {10599,10587,9502 ,5816,5800,5802 ,0,0,0}, - {10633,10599,10591 ,5861,5816,5806 ,0,0,0}, {10586,10585,10588 ,5799,5798,5803 ,0,0,0}, - {10633,10585,10587 ,5861,5798,5800 ,0,0,0}, {10628,10634,10629 ,5852,5862,5854 ,0,0,0}, - {10587,10585,10584 ,5800,5798,5797 ,0,0,0}, {10635,10636,10630 ,5863,5864,5857 ,0,0,0}, - {10617,10584,10586 ,5838,5797,5799 ,0,0,0}, {10634,10628,10616 ,5862,5852,5837 ,0,0,0}, - {9493,10630,10631 ,5858,5857,5859 ,0,0,0}, {9494,10629,9492 ,5855,5854,5856 ,0,0,0}, - {10629,10634,10635 ,5854,5862,5863 ,0,0,0}, {10637,10631,10630 ,5865,5859,5857 ,0,0,0}, - {10592,10591,10599 ,5807,5806,5816 ,0,0,0}, {10638,10632,10594 ,5866,5860,5809 ,0,0,0}, - {10638,10607,10632 ,5866,5828,5860 ,0,0,0}, {10599,10633,10587 ,5816,5861,5800 ,0,0,0}, - {10632,10639,10633 ,5860,5867,5861 ,0,0,0}, {10589,10624,10616 ,5804,5845,5837 ,0,0,0}, - {10639,10588,10585 ,5867,5803,5798 ,0,0,0}, {10611,10636,10635 ,5832,5864,5863 ,0,0,0}, - {10610,10636,10611 ,5831,5864,5832 ,0,0,0}, {10617,10616,10628 ,5838,5837,5852 ,0,0,0}, - {10586,10589,10616 ,5799,5804,5837 ,0,0,0}, {10629,10635,10630 ,5854,5863,5857 ,0,0,0}, - {10624,10621,10634 ,5845,5842,5862 ,0,0,0}, {10630,10636,10637 ,5857,5864,5865 ,0,0,0}, - {10635,10621,10611 ,5863,5842,5832 ,0,0,0}, {10640,10637,10636 ,5868,5865,5864 ,0,0,0}, - {10591,10632,10633 ,5806,5860,5861 ,0,0,0}, {10608,10607,10638 ,5829,5828,5866 ,0,0,0}, - {10641,10600,10642 ,5869,5818,5870 ,0,0,0}, {10633,10639,10585 ,5861,5867,5798 ,0,0,0}, - {10643,10639,10607 ,5871,5867,5828 ,0,0,0}, {10624,10589,10612 ,5845,5804,5833 ,0,0,0}, - {10643,10590,10588 ,5871,5805,5803 ,0,0,0}, {10644,10609,10622 ,5872,5830,5843 ,0,0,0}, - {10634,10621,10635 ,5862,5842,5863 ,0,0,0}, {10616,10624,10634 ,5837,5845,5862 ,0,0,0}, - {10624,10612,10623 ,5845,5833,5844 ,0,0,0}, {10610,10609,10645 ,5831,5830,5873 ,0,0,0}, - {10623,10622,10621 ,5844,5843,5842 ,0,0,0}, {10636,10610,10640 ,5864,5831,5868 ,0,0,0}, - {10611,10622,10609 ,5832,5843,5830 ,0,0,0}, {10646,10640,10610 ,5874,5868,5831 ,0,0,0}, - {10632,10607,10639 ,5860,5828,5867 ,0,0,0}, {10602,10601,10608 ,5820,5819,5829 ,0,0,0}, - {10590,10647,10612 ,5805,5875,5833 ,0,0,0}, {10639,10643,10588 ,5867,5871,5803 ,0,0,0}, - {10648,10643,10601 ,5876,5871,5819 ,0,0,0}, {10612,10649,10623 ,5833,5877,5844 ,0,0,0}, - {10648,10647,10590 ,5876,5875,5805 ,0,0,0}, {10623,10650,10622 ,5844,5878,5843 ,0,0,0}, - {10649,10612,10647 ,5877,5833,5875 ,0,0,0}, {10609,10619,10645 ,5830,5840,5873 ,0,0,0}, - {10650,10623,10649 ,5878,5844,5877 ,0,0,0}, {10651,10645,10618 ,5879,5873,5839 ,0,0,0}, - {10644,10622,10650 ,5872,5843,5878 ,0,0,0}, {10610,10645,10646 ,5831,5873,5874 ,0,0,0}, - {10609,10644,10619 ,5830,5872,5840 ,0,0,0}, {10651,10646,10645 ,5879,5874,5873 ,0,0,0}, - {10607,10601,10643 ,5828,5819,5871 ,0,0,0}, {10642,10600,10602 ,5870,5818,5820 ,0,0,0}, - {10647,10604,10649 ,5875,5824,5877 ,0,0,0}, {10643,10648,10590 ,5871,5876,5805 ,0,0,0}, - {10600,10652,10648 ,5818,5880,5876 ,0,0,0}, {10649,10603,10650 ,5877,5823,5878 ,0,0,0}, - {10652,10604,10647 ,5880,5824,5875 ,0,0,0}, {10650,10653,10644 ,5878,5881,5872 ,0,0,0}, - {10604,10603,10649 ,5824,5823,5877 ,0,0,0}, {10654,10619,10644 ,5882,5840,5872 ,0,0,0}, - {10653,10650,10603 ,5881,5878,5823 ,0,0,0}, {10655,10618,10615 ,5883,5839,5836 ,0,0,0}, - {10644,10653,10654 ,5872,5881,5882 ,0,0,0}, {10654,10620,10619 ,5882,5841,5840 ,0,0,0}, - {10651,10618,10655 ,5879,5839,5883 ,0,0,0}, {10645,10619,10618 ,5873,5840,5839 ,0,0,0}, - {10601,10600,10648 ,5819,5818,5876 ,0,0,0}, {10656,10641,10642 ,5884,5869,5870 ,0,0,0}, - {10657,10653,10603 ,5885,5881,5823 ,0,0,0}, {10648,10652,10647 ,5876,5880,5875 ,0,0,0}, - {10641,10596,10652 ,5869,5811,5880 ,0,0,0}, {10658,10654,10653 ,5886,5882,5881 ,0,0,0}, - {10596,10605,10604 ,5811,5825,5824 ,0,0,0}, {10659,10620,10654 ,5887,5841,5882 ,0,0,0}, - {10605,10657,10603 ,5825,5885,5823 ,0,0,0}, {10627,10613,10660 ,5848,5834,5888 ,0,0,0}, - {10657,10658,10653 ,5885,5886,5881 ,0,0,0}, {10615,10620,10661 ,5836,5841,5889 ,0,0,0}, - {10659,10654,10658 ,5887,5882,5886 ,0,0,0}, {10661,10620,10659 ,5889,5841,5887 ,0,0,0}, - {10655,10615,10614 ,5883,5836,5835 ,0,0,0}, {10618,10620,10615 ,5839,5841,5836 ,0,0,0}, - {10600,10641,10652 ,5818,5869,5880 ,0,0,0}, {10597,10656,10606 ,5812,5884,5826 ,0,0,0}, - {10595,10662,10605 ,5810,5890,5825 ,0,0,0}, {10652,10596,10604 ,5880,5811,5824 ,0,0,0}, - {10595,10605,10596 ,5810,5825,5811 ,0,0,0}, {10662,10663,10657 ,5890,5891,5885 ,0,0,0}, - {10662,10657,10605 ,5890,5885,5825 ,0,0,0}, {10663,10664,10658 ,5891,5892,5886 ,0,0,0}, - {10663,10658,10657 ,5891,5886,5885 ,0,0,0}, {10664,10665,10659 ,5892,5893,5887 ,0,0,0}, - {10664,10659,10658 ,5892,5887,5886 ,0,0,0}, {10665,10660,10661 ,5893,5888,5889 ,0,0,0}, - {10661,10659,10665 ,5889,5887,5893 ,0,0,0}, {10660,10613,10661 ,5888,5834,5889 ,0,0,0}, - {10614,10613,10626 ,5835,5834,5847 ,0,0,0}, {10615,10661,10613 ,5836,5889,5834 ,0,0,0}, - {10656,10597,10641 ,5884,5812,5869 ,0,0,0}, {10596,10641,10597 ,5811,5869,5812 ,0,0,0}, - {10662,10033,10051 ,5890,5822,5894 ,0,0,0}, {10034,10595,10597 ,5821,5810,5812 ,0,0,0}, - {10663,10051,10052 ,5891,5894,5895 ,0,0,0}, {10033,10662,10595 ,5822,5890,5810 ,0,0,0}, - {10664,10052,10054 ,5892,5895,5896 ,0,0,0}, {10051,10663,10662 ,5894,5891,5890 ,0,0,0}, - {10665,10054,10037 ,5893,5896,5897 ,0,0,0}, {10052,10664,10663 ,5895,5892,5891 ,0,0,0}, - {10660,10037,10058 ,5888,5897,5898 ,0,0,0}, {10054,10665,10664 ,5896,5893,5892 ,0,0,0}, - {10627,10058,10057 ,5848,5898,5850 ,0,0,0}, {10037,10660,10665 ,5897,5888,5893 ,0,0,0}, - {10057,10625,10627 ,5850,5846,5848 ,0,0,0}, {10058,10627,10660 ,5898,5848,5888 ,0,0,0}, - {10666,10667,10668 ,5899,5900,5901 ,0,0,0}, {10669,10670,9470 ,5902,5903,5904 ,0,0,0}, - {10667,10671,10668 ,5900,5905,5901 ,0,0,0}, {9465,9470,10670 ,5906,5904,5903 ,0,0,0}, - {10672,10673,10674 ,5907,5908,5909 ,0,0,0}, {9475,10675,10673 ,5910,5911,5908 ,0,0,0}, - {10676,10677,10678 ,5912,5913,5914 ,0,0,0}, {9473,10675,9475 ,5915,5911,5910 ,0,0,0}, - {10675,10674,10673 ,5911,5909,5908 ,0,0,0}, {9469,10673,10669 ,5916,5908,5902 ,0,0,0}, - {10679,10680,10681 ,5917,5918,5919 ,0,0,0}, {10682,10683,10684 ,5920,5921,5922 ,0,0,0}, - {10685,10680,10686 ,5923,5918,5924 ,0,0,0}, {10687,10688,10666 ,5925,5926,5899 ,0,0,0}, - {10677,9984,9903 ,5913,5927,5928 ,0,0,0}, {10689,10690,10691 ,5929,5930,5931 ,0,0,0}, - {10692,10014,10676 ,5932,5933,5912 ,0,0,0}, {9984,10676,10014 ,5927,5912,5933 ,0,0,0}, - {10693,10694,10695 ,5934,5935,5936 ,0,0,0}, {10671,10696,10668 ,5905,5937,5901 ,0,0,0}, - {10697,10698,10699 ,5938,5939,5940 ,0,0,0}, {10700,10701,10702 ,5941,5942,5943 ,0,0,0}, - {10691,10694,10703 ,5931,5935,5944 ,0,0,0}, {10704,10705,10706 ,5945,5946,5947 ,0,0,0}, - {10707,10666,10708 ,5948,5899,5949 ,0,0,0}, {10705,10700,10706 ,5946,5941,5947 ,0,0,0}, - {10687,9465,10670 ,5925,5906,5903 ,0,0,0}, {10013,10017,10704 ,5950,5951,5945 ,0,0,0}, - {9465,10687,9463 ,5906,5925,5952 ,0,0,0}, {9463,10687,10707 ,5952,5925,5948 ,0,0,0}, - {10709,9458,10707 ,5953,5954,5948 ,0,0,0}, {10687,10670,10688 ,5925,5903,5926 ,0,0,0}, - {10709,10710,9462 ,5953,5955,5956 ,0,0,0}, {9462,9458,10709 ,5956,5954,5953 ,0,0,0}, - {9454,10711,9456 ,5957,5958,5959 ,0,0,0}, {10711,9454,10710 ,5958,5957,5955 ,0,0,0}, - {9475,10673,9469 ,5910,5908,5916 ,0,0,0}, {10712,10672,10674 ,5960,5907,5909 ,0,0,0}, - {10712,10713,10672 ,5960,5961,5907 ,0,0,0}, {9469,10669,9470 ,5916,5902,5904 ,0,0,0}, - {10714,10669,10672 ,5962,5902,5907 ,0,0,0}, {10666,10688,10667 ,5899,5926,5900 ,0,0,0}, - {10714,10688,10670 ,5962,5926,5903 ,0,0,0}, {10709,10715,10710 ,5953,5963,5955 ,0,0,0}, - {10716,10711,10717 ,5964,5958,5965 ,0,0,0}, {9463,10707,9458 ,5952,5948,5954 ,0,0,0}, - {10707,10687,10666 ,5948,5925,5899 ,0,0,0}, {9462,10710,9454 ,5956,5955,5957 ,0,0,0}, - {10708,10715,10709 ,5949,5963,5953 ,0,0,0}, {10711,10718,9456 ,5958,5966,5959 ,0,0,0}, - {10710,10715,10717 ,5955,5963,5965 ,0,0,0}, {10719,10718,10711 ,5967,5966,5958 ,0,0,0}, - {10673,10672,10669 ,5908,5907,5902 ,0,0,0}, {10720,10713,10712 ,5968,5961,5960 ,0,0,0}, - {10720,10681,10713 ,5968,5919,5961 ,0,0,0}, {10669,10714,10670 ,5902,5962,5903 ,0,0,0}, - {10713,10721,10714 ,5961,5969,5962 ,0,0,0}, {10668,10695,10708 ,5901,5936,5949 ,0,0,0}, - {10721,10667,10688 ,5969,5900,5926 ,0,0,0}, {10691,10716,10717 ,5931,5964,5965 ,0,0,0}, - {10690,10716,10691 ,5930,5964,5931 ,0,0,0}, {10707,10708,10709 ,5948,5949,5953 ,0,0,0}, - {10666,10668,10708 ,5899,5901,5949 ,0,0,0}, {10710,10717,10711 ,5955,5965,5958 ,0,0,0}, - {10695,10694,10715 ,5936,5935,5963 ,0,0,0}, {10711,10716,10719 ,5958,5964,5967 ,0,0,0}, - {10717,10694,10691 ,5965,5935,5931 ,0,0,0}, {10722,10719,10716 ,5970,5967,5964 ,0,0,0}, - {10672,10713,10714 ,5907,5961,5962 ,0,0,0}, {10679,10681,10720 ,5917,5919,5968 ,0,0,0}, - {10723,10685,10724 ,5971,5923,5972 ,0,0,0}, {10714,10721,10688 ,5962,5969,5926 ,0,0,0}, - {10725,10721,10681 ,5973,5969,5919 ,0,0,0}, {10695,10668,10696 ,5936,5901,5937 ,0,0,0}, - {10725,10671,10667 ,5973,5905,5900 ,0,0,0}, {10726,10689,10703 ,5974,5929,5944 ,0,0,0}, - {10715,10694,10717 ,5963,5935,5965 ,0,0,0}, {10708,10695,10715 ,5949,5936,5963 ,0,0,0}, - {10695,10696,10693 ,5936,5937,5934 ,0,0,0}, {10690,10689,10727 ,5930,5929,5975 ,0,0,0}, - {10693,10703,10694 ,5934,5944,5935 ,0,0,0}, {10716,10690,10722 ,5964,5930,5970 ,0,0,0}, - {10691,10703,10689 ,5931,5944,5929 ,0,0,0}, {10728,10722,10690 ,5976,5970,5930 ,0,0,0}, - {10713,10681,10721 ,5961,5919,5969 ,0,0,0}, {10686,10680,10679 ,5924,5918,5917 ,0,0,0}, - {10671,10729,10696 ,5905,5977,5937 ,0,0,0}, {10721,10725,10667 ,5969,5973,5900 ,0,0,0}, - {10730,10725,10680 ,5978,5973,5918 ,0,0,0}, {10696,10731,10693 ,5937,5979,5934 ,0,0,0}, - {10730,10729,10671 ,5978,5977,5905 ,0,0,0}, {10693,10732,10703 ,5934,5980,5944 ,0,0,0}, - {10731,10696,10729 ,5979,5937,5977 ,0,0,0}, {10689,10698,10727 ,5929,5939,5975 ,0,0,0}, - {10732,10693,10731 ,5980,5934,5979 ,0,0,0}, {10733,10727,10697 ,5981,5975,5938 ,0,0,0}, - {10726,10703,10732 ,5974,5944,5980 ,0,0,0}, {10690,10727,10728 ,5930,5975,5976 ,0,0,0}, - {10689,10726,10698 ,5929,5974,5939 ,0,0,0}, {10733,10728,10727 ,5981,5976,5975 ,0,0,0}, - {10681,10680,10725 ,5919,5918,5973 ,0,0,0}, {10724,10685,10686 ,5972,5923,5924 ,0,0,0}, - {10729,10682,10731 ,5977,5920,5979 ,0,0,0}, {10725,10730,10671 ,5973,5978,5905 ,0,0,0}, - {10685,10734,10730 ,5923,5982,5978 ,0,0,0}, {10731,10684,10732 ,5979,5922,5980 ,0,0,0}, - {10734,10682,10729 ,5982,5920,5977 ,0,0,0}, {10732,10735,10726 ,5980,5983,5974 ,0,0,0}, - {10682,10684,10731 ,5920,5922,5979 ,0,0,0}, {10736,10698,10726 ,5984,5939,5974 ,0,0,0}, - {10735,10732,10684 ,5983,5980,5922 ,0,0,0}, {10737,10697,10702 ,5985,5938,5943 ,0,0,0}, - {10726,10735,10736 ,5974,5983,5984 ,0,0,0}, {10736,10699,10698 ,5984,5940,5939 ,0,0,0}, - {10733,10697,10737 ,5981,5938,5985 ,0,0,0}, {10727,10698,10697 ,5975,5939,5938 ,0,0,0}, - {10680,10685,10730 ,5918,5923,5978 ,0,0,0}, {10738,10723,10724 ,5986,5971,5972 ,0,0,0}, - {10739,10735,10684 ,5987,5983,5922 ,0,0,0}, {10730,10734,10729 ,5978,5982,5977 ,0,0,0}, - {10723,10678,10734 ,5971,5914,5982 ,0,0,0}, {10740,10736,10735 ,5988,5984,5983 ,0,0,0}, - {10678,10683,10682 ,5914,5921,5920 ,0,0,0}, {10741,10699,10736 ,5989,5940,5984 ,0,0,0}, - {10683,10739,10684 ,5921,5987,5922 ,0,0,0}, {10706,10700,10742 ,5947,5941,5990 ,0,0,0}, - {10739,10740,10735 ,5987,5988,5983 ,0,0,0}, {10702,10699,10743 ,5943,5940,5991 ,0,0,0}, - {10741,10736,10740 ,5989,5984,5988 ,0,0,0}, {10743,10699,10741 ,5991,5940,5989 ,0,0,0}, - {10737,10702,10701 ,5985,5943,5942 ,0,0,0}, {10697,10699,10702 ,5938,5940,5943 ,0,0,0}, - {10685,10723,10734 ,5923,5971,5982 ,0,0,0}, {10676,10738,10692 ,5912,5986,5932 ,0,0,0}, - {10677,10744,10683 ,5913,5992,5921 ,0,0,0}, {10734,10678,10682 ,5982,5914,5920 ,0,0,0}, - {10677,10683,10678 ,5913,5921,5914 ,0,0,0}, {10744,10745,10739 ,5992,5993,5987 ,0,0,0}, - {10744,10739,10683 ,5992,5987,5921 ,0,0,0}, {10745,10746,10740 ,5993,5994,5988 ,0,0,0}, - {10745,10740,10739 ,5993,5988,5987 ,0,0,0}, {10746,10747,10741 ,5994,5995,5989 ,0,0,0}, - {10746,10741,10740 ,5994,5989,5988 ,0,0,0}, {10747,10742,10743 ,5995,5990,5991 ,0,0,0}, - {10743,10741,10747 ,5991,5989,5995 ,0,0,0}, {10742,10700,10743 ,5990,5941,5991 ,0,0,0}, - {10701,10700,10705 ,5942,5941,5946 ,0,0,0}, {10702,10743,10700 ,5943,5991,5941 ,0,0,0}, - {10738,10676,10723 ,5986,5912,5971 ,0,0,0}, {10678,10723,10676 ,5914,5971,5912 ,0,0,0}, - {10744,9903,10003 ,5992,5928,5996 ,0,0,0}, {9984,10677,10676 ,5927,5913,5912 ,0,0,0}, - {10745,10003,10208 ,5993,5996,5997 ,0,0,0}, {9903,10744,10677 ,5928,5992,5913 ,0,0,0}, - {10746,10208,10010 ,5994,5997,5998 ,0,0,0}, {10003,10745,10744 ,5996,5993,5992 ,0,0,0}, - {10747,10010,10021 ,5995,5998,5999 ,0,0,0}, {10208,10746,10745 ,5997,5994,5993 ,0,0,0}, - {10742,10021,10007 ,5990,5999,6000 ,0,0,0}, {10010,10747,10746 ,5998,5995,5994 ,0,0,0}, - {10706,10007,10013 ,5947,6000,5950 ,0,0,0}, {10021,10742,10747 ,5999,5990,5995 ,0,0,0}, - {10013,10704,10706 ,5950,5945,5947 ,0,0,0}, {10007,10706,10742 ,6000,5947,5990 ,0,0,0}, - {10748,10749,10750 ,6001,6002,6003 ,0,0,0}, {10751,9438,9435 ,6004,6005,6006 ,0,0,0}, - {10750,10752,10753 ,6003,6007,6008 ,0,0,0}, {10752,10754,10753 ,6007,6009,6008 ,0,0,0}, - {10755,10756,10757 ,6010,6011,6012 ,0,0,0}, {10757,10758,10755 ,6012,6013,6010 ,0,0,0}, - {10759,10760,10761 ,6014,6015,6016 ,0,0,0}, {10762,10756,9441 ,6017,6011,6018 ,0,0,0}, - {10762,10757,10756 ,6017,6012,6011 ,0,0,0}, {9441,9440,10762 ,6018,5020,6017 ,0,0,0}, - {10763,9435,9443 ,6019,6006,6020 ,0,0,0}, {10764,10765,10766 ,6021,6022,6023 ,0,0,0}, - {10759,9958,9974 ,6014,6024,6025 ,0,0,0}, {10767,10768,10769 ,6026,6027,6028 ,0,0,0}, - {10770,9961,10761 ,6029,6030,6016 ,0,0,0}, {10771,10772,10765 ,6031,6032,6022 ,0,0,0}, - {9958,10761,9961 ,6024,6016,6030 ,0,0,0}, {10773,10774,10775 ,6033,6034,6035 ,0,0,0}, - {10776,10753,10754 ,6036,6008,6009 ,0,0,0}, {10777,10778,10779 ,6037,6038,6039 ,0,0,0}, - {10780,10781,10750 ,6040,6041,6003 ,0,0,0}, {10782,10783,10784 ,6042,6043,6044 ,0,0,0}, - {10775,10785,10786 ,6035,6045,6046 ,0,0,0}, {10787,10785,10788 ,6047,6045,6048 ,0,0,0}, - {10789,10790,10791 ,6049,6050,6051 ,0,0,0}, {10748,9438,10751 ,6001,6005,6004 ,0,0,0}, - {10790,10777,10791 ,6050,6037,6051 ,0,0,0}, {10781,9427,10748 ,6041,6052,6001 ,0,0,0}, - {9977,9979,10789 ,6053,6054,6049 ,0,0,0}, {10792,9428,10781 ,6055,6056,6041 ,0,0,0}, - {9427,9438,10748 ,6052,6005,6001 ,0,0,0}, {10792,10793,9430 ,6055,6057,6058 ,0,0,0}, - {10781,9428,9427 ,6041,6056,6052 ,0,0,0}, {9424,10794,9425 ,6059,6060,6061 ,0,0,0}, - {9428,10792,9430 ,6056,6055,6058 ,0,0,0}, {9416,9425,10795 ,6062,6061,6063 ,0,0,0}, - {10794,9424,10793 ,6060,6059,6057 ,0,0,0}, {9443,10756,10763 ,6020,6011,6019 ,0,0,0}, - {10756,9443,9441 ,6011,6020,6018 ,0,0,0}, {10758,10796,10755 ,6013,6064,6010 ,0,0,0}, - {10763,10751,9435 ,6019,6004,6006 ,0,0,0}, {10797,10763,10755 ,6065,6019,6010 ,0,0,0}, - {10750,10749,10752 ,6003,6002,6007 ,0,0,0}, {10797,10749,10751 ,6065,6002,6004 ,0,0,0}, - {10792,10798,10793 ,6055,6066,6057 ,0,0,0}, {10751,10749,10748 ,6004,6002,6001 ,0,0,0}, - {10799,10800,10794 ,6067,6068,6060 ,0,0,0}, {10781,10748,10750 ,6041,6001,6003 ,0,0,0}, - {10798,10792,10780 ,6066,6055,6040 ,0,0,0}, {9425,10794,10795 ,6061,6060,6063 ,0,0,0}, - {9430,10793,9424 ,6058,6057,6059 ,0,0,0}, {10793,10798,10799 ,6057,6066,6067 ,0,0,0}, - {10801,10795,10794 ,6069,6063,6060 ,0,0,0}, {10756,10755,10763 ,6011,6010,6019 ,0,0,0}, - {10802,10796,10758 ,6070,6064,6013 ,0,0,0}, {10802,10771,10796 ,6070,6031,6064 ,0,0,0}, - {10763,10797,10751 ,6019,6065,6004 ,0,0,0}, {10796,10803,10797 ,6064,6071,6065 ,0,0,0}, - {10753,10788,10780 ,6008,6048,6040 ,0,0,0}, {10803,10752,10749 ,6071,6007,6002 ,0,0,0}, - {10775,10800,10799 ,6035,6068,6067 ,0,0,0}, {10774,10800,10775 ,6034,6068,6035 ,0,0,0}, - {10781,10780,10792 ,6041,6040,6055 ,0,0,0}, {10750,10753,10780 ,6003,6008,6040 ,0,0,0}, - {10793,10799,10794 ,6057,6067,6060 ,0,0,0}, {10788,10785,10798 ,6048,6045,6066 ,0,0,0}, - {10794,10800,10801 ,6060,6068,6069 ,0,0,0}, {10799,10785,10775 ,6067,6045,6035 ,0,0,0}, - {10804,10801,10800 ,6072,6069,6068 ,0,0,0}, {10755,10796,10797 ,6010,6064,6065 ,0,0,0}, - {10772,10771,10802 ,6032,6031,6070 ,0,0,0}, {10805,10764,10806 ,6073,6021,6074 ,0,0,0}, - {10797,10803,10749 ,6065,6071,6002 ,0,0,0}, {10807,10803,10771 ,6075,6071,6031 ,0,0,0}, - {10788,10753,10776 ,6048,6008,6036 ,0,0,0}, {10807,10754,10752 ,6075,6009,6007 ,0,0,0}, - {10808,10773,10786 ,6076,6033,6046 ,0,0,0}, {10798,10785,10799 ,6066,6045,6067 ,0,0,0}, - {10780,10788,10798 ,6040,6048,6066 ,0,0,0}, {10788,10776,10787 ,6048,6036,6047 ,0,0,0}, - {10774,10773,10809 ,6034,6033,6077 ,0,0,0}, {10787,10786,10785 ,6047,6046,6045 ,0,0,0}, - {10800,10774,10804 ,6068,6034,6072 ,0,0,0}, {10775,10786,10773 ,6035,6046,6033 ,0,0,0}, - {10810,10804,10774 ,6078,6072,6034 ,0,0,0}, {10796,10771,10803 ,6064,6031,6071 ,0,0,0}, - {10766,10765,10772 ,6023,6022,6032 ,0,0,0}, {10754,10811,10776 ,6009,6079,6036 ,0,0,0}, - {10803,10807,10752 ,6071,6075,6007 ,0,0,0}, {10812,10807,10765 ,6080,6075,6022 ,0,0,0}, - {10776,10813,10787 ,6036,6081,6047 ,0,0,0}, {10812,10811,10754 ,6080,6079,6009 ,0,0,0}, - {10787,10814,10786 ,6047,6082,6046 ,0,0,0}, {10813,10776,10811 ,6081,6036,6079 ,0,0,0}, - {10773,10783,10809 ,6033,6043,6077 ,0,0,0}, {10814,10787,10813 ,6082,6047,6081 ,0,0,0}, - {10815,10809,10782 ,6083,6077,6042 ,0,0,0}, {10808,10786,10814 ,6076,6046,6082 ,0,0,0}, - {10774,10809,10810 ,6034,6077,6078 ,0,0,0}, {10773,10808,10783 ,6033,6076,6043 ,0,0,0}, - {10815,10810,10809 ,6083,6078,6077 ,0,0,0}, {10771,10765,10807 ,6031,6022,6075 ,0,0,0}, - {10806,10764,10766 ,6074,6021,6023 ,0,0,0}, {10811,10768,10813 ,6079,6027,6081 ,0,0,0}, - {10807,10812,10754 ,6075,6080,6009 ,0,0,0}, {10764,10816,10812 ,6021,6084,6080 ,0,0,0}, - {10813,10767,10814 ,6081,6026,6082 ,0,0,0}, {10816,10768,10811 ,6084,6027,6079 ,0,0,0}, - {10814,10817,10808 ,6082,6085,6076 ,0,0,0}, {10768,10767,10813 ,6027,6026,6081 ,0,0,0}, - {10818,10783,10808 ,6086,6043,6076 ,0,0,0}, {10817,10814,10767 ,6085,6082,6026 ,0,0,0}, - {10819,10782,10779 ,6087,6042,6039 ,0,0,0}, {10808,10817,10818 ,6076,6085,6086 ,0,0,0}, - {10818,10784,10783 ,6086,6044,6043 ,0,0,0}, {10815,10782,10819 ,6083,6042,6087 ,0,0,0}, - {10809,10783,10782 ,6077,6043,6042 ,0,0,0}, {10765,10764,10812 ,6022,6021,6080 ,0,0,0}, - {10820,10805,10806 ,6088,6073,6074 ,0,0,0}, {10821,10817,10767 ,6089,6085,6026 ,0,0,0}, - {10812,10816,10811 ,6080,6084,6079 ,0,0,0}, {10805,10760,10816 ,6073,6015,6084 ,0,0,0}, - {10822,10818,10817 ,6090,6086,6085 ,0,0,0}, {10760,10769,10768 ,6015,6028,6027 ,0,0,0}, - {10823,10784,10818 ,6091,6044,6086 ,0,0,0}, {10769,10821,10767 ,6028,6089,6026 ,0,0,0}, - {10791,10777,10824 ,6051,6037,6092 ,0,0,0}, {10821,10822,10817 ,6089,6090,6085 ,0,0,0}, - {10779,10784,10825 ,6039,6044,6093 ,0,0,0}, {10823,10818,10822 ,6091,6086,6090 ,0,0,0}, - {10825,10784,10823 ,6093,6044,6091 ,0,0,0}, {10819,10779,10778 ,6087,6039,6038 ,0,0,0}, - {10782,10784,10779 ,6042,6044,6039 ,0,0,0}, {10764,10805,10816 ,6021,6073,6084 ,0,0,0}, - {10761,10820,10770 ,6016,6088,6029 ,0,0,0}, {10759,10826,10769 ,6014,6094,6028 ,0,0,0}, - {10816,10760,10768 ,6084,6015,6027 ,0,0,0}, {10759,10769,10760 ,6014,6028,6015 ,0,0,0}, - {10826,10827,10821 ,6094,6095,6089 ,0,0,0}, {10826,10821,10769 ,6094,6089,6028 ,0,0,0}, - {10827,10828,10822 ,6095,6096,6090 ,0,0,0}, {10827,10822,10821 ,6095,6090,6089 ,0,0,0}, - {10828,10829,10823 ,6096,6097,6091 ,0,0,0}, {10828,10823,10822 ,6096,6091,6090 ,0,0,0}, - {10829,10824,10825 ,6097,6092,6093 ,0,0,0}, {10825,10823,10829 ,6093,6091,6097 ,0,0,0}, - {10824,10777,10825 ,6092,6037,6093 ,0,0,0}, {10778,10777,10790 ,6038,6037,6050 ,0,0,0}, - {10779,10825,10777 ,6039,6093,6037 ,0,0,0}, {10820,10761,10805 ,6088,6016,6073 ,0,0,0}, - {10760,10805,10761 ,6015,6073,6016 ,0,0,0}, {10826,9974,9968 ,6094,6025,6098 ,0,0,0}, - {9958,10759,10761 ,6024,6014,6016 ,0,0,0}, {10827,9968,9972 ,6095,6098,6099 ,0,0,0}, - {9974,10826,10759 ,6025,6094,6014 ,0,0,0}, {10828,9972,9971 ,6096,6099,6100 ,0,0,0}, - {9968,10827,10826 ,6098,6095,6094 ,0,0,0}, {10829,9971,9981 ,6097,6100,6101 ,0,0,0}, - {9972,10828,10827 ,6099,6096,6095 ,0,0,0}, {10824,9981,9943 ,6092,6101,6102 ,0,0,0}, - {9971,10829,10828 ,6100,6097,6096 ,0,0,0}, {10791,9943,9977 ,6051,6102,6053 ,0,0,0}, - {9981,10824,10829 ,6101,6092,6097 ,0,0,0}, {9977,10789,10791 ,6053,6049,6051 ,0,0,0}, - {9943,10791,10824 ,6102,6051,6092 ,0,0,0}, {10830,10831,10832 ,730,6103,6103 ,0,0,0}, - {9060,9002,8999 ,6103,730,730 ,0,0,0}, {10833,10831,10834 ,6104,6103,6105 ,0,0,0}, - {10833,10835,10836 ,6104,6106,6103 ,0,0,0}, {10837,10832,10838 ,6107,6103,6108 ,0,0,0}, - {10835,10839,10840 ,6106,6109,6110 ,0,0,0}, {10841,10842,10838 ,6103,6111,6108 ,0,0,0}, - {10840,10843,10844 ,6110,6112,6110 ,0,0,0}, {10845,10841,10846 ,6111,6103,6103 ,0,0,0}, - {10844,10847,10848 ,6110,6113,6112 ,0,0,0}, {10848,10849,10850 ,6112,6109,6110 ,0,0,0}, - {10850,10851,10852 ,6110,6106,6114 ,0,0,0}, {10846,10853,10854 ,6103,730,6115 ,0,0,0}, - {10855,10852,10856 ,6105,6114,6104 ,0,0,0}, {10857,10858,10859 ,6111,730,6111 ,0,0,0}, - {10860,10852,10855 ,6111,6114,6105 ,0,0,0}, {10859,10861,10862 ,6111,6110,6114 ,0,0,0}, - {10863,10864,10865 ,730,6114,6108 ,0,0,0}, {9008,9073,9075 ,6110,6111,6110 ,0,0,0}, - {10866,10867,10868 ,6115,730,6111 ,0,0,0}, {9072,9007,9070 ,730,730,6114 ,0,0,0}, - {10869,10870,8991 ,6111,6110,6110 ,0,0,0}, {9003,9066,9005 ,730,6114,6103 ,0,0,0}, - {8988,9038,9035 ,730,730,6114 ,0,0,0}, {9002,9061,9064 ,730,730,6103 ,0,0,0}, - {9032,8984,9033 ,6114,730,730 ,0,0,0}, {9058,9060,8999 ,730,6103,730 ,0,0,0}, - {8982,9026,8979 ,6103,6103,730 ,0,0,0}, {9052,9054,8993 ,730,730,730 ,0,0,0}, - {9020,9017,8978 ,730,730,730 ,0,0,0}, {9046,8992,8972 ,730,730,730 ,0,0,0}, - {8976,9015,9014 ,730,730,730 ,0,0,0}, {8976,8977,9015 ,730,730,730 ,0,0,0}, - {8978,9017,8977 ,730,730,730 ,0,0,0}, {9046,8972,9010 ,730,730,730 ,0,0,0}, - {8972,8976,9011 ,730,730,730 ,0,0,0}, {9021,8979,9023 ,6103,730,730 ,0,0,0}, - {8978,8979,9021 ,730,730,6103 ,0,0,0}, {8992,9049,8993 ,730,730,730 ,0,0,0}, - {8992,9048,9049 ,730,730,730 ,0,0,0}, {8982,8984,9029 ,6103,730,6103 ,0,0,0}, - {8982,9029,9027 ,6103,6103,730 ,0,0,0}, {8999,8997,9055 ,730,730,6103 ,0,0,0}, - {9054,8997,8993 ,730,730,730 ,0,0,0}, {8988,9035,8985 ,730,6114,6103 ,0,0,0}, - {8984,8985,9033 ,730,6103,730 ,0,0,0}, {9002,9060,9061 ,730,6103,730 ,0,0,0}, - {9041,9039,8991 ,6110,6111,6110 ,0,0,0}, {8988,8991,9039 ,730,6110,6111 ,0,0,0}, - {9003,9064,9066 ,730,6103,6114 ,0,0,0}, {9002,9064,9003 ,730,6103,730 ,0,0,0}, - {10868,10871,10869 ,6111,6111,6111 ,0,0,0}, {10872,10869,10871 ,6114,6111,6111 ,0,0,0}, - {9066,9067,9005 ,6114,730,6103 ,0,0,0}, {9005,9070,9007 ,6103,6114,730 ,0,0,0}, - {9067,9070,9005 ,730,6114,6103 ,0,0,0}, {9072,9073,9007 ,730,6111,730 ,0,0,0}, - {10873,10865,10864 ,6107,6108,6114 ,0,0,0}, {9008,9007,9073 ,6110,730,6111 ,0,0,0}, - {9075,10861,9008 ,6110,6110,6110 ,0,0,0}, {10864,10860,10874 ,6114,6111,730 ,0,0,0}, - {10875,10876,10863 ,6111,6110,730 ,0,0,0}, {10876,10866,10868 ,6110,6115,6111 ,0,0,0}, - {10849,10851,10850 ,6109,6106,6110 ,0,0,0}, {9058,8999,9055 ,730,730,6103 ,0,0,0}, - {9055,8997,9054 ,6103,730,730 ,0,0,0}, {9052,8993,9049 ,730,730,730 ,0,0,0}, - {9048,8992,9046 ,730,730,730 ,0,0,0}, {9010,8972,9011 ,730,730,730 ,0,0,0}, - {9011,8976,9014 ,730,730,730 ,0,0,0}, {9015,8977,9017 ,730,730,730 ,0,0,0}, - {9020,8978,9021 ,730,730,6103 ,0,0,0}, {9023,8979,9026 ,730,730,6103 ,0,0,0}, - {9026,8982,9027 ,6103,6103,730 ,0,0,0}, {9029,8984,9032 ,6103,730,6114 ,0,0,0}, - {9033,8985,9035 ,730,6103,6114 ,0,0,0}, {9038,8988,9039 ,730,730,6111 ,0,0,0}, - {9041,8991,10870 ,6110,6110,6110 ,0,0,0}, {10870,10869,10872 ,6110,6111,6114 ,0,0,0}, - {10871,10868,10867 ,6111,6111,730 ,0,0,0}, {10866,10876,10875 ,6115,6110,6111 ,0,0,0}, - {10877,10863,10865 ,6111,730,6108 ,0,0,0}, {10863,10877,10875 ,730,6111,6111 ,0,0,0}, - {10873,10864,10874 ,6107,6114,730 ,0,0,0}, {10874,10860,10855 ,730,6111,6105 ,0,0,0}, - {10856,10852,10851 ,6104,6114,6106 ,0,0,0}, {10850,10844,10848 ,6110,6110,6112 ,0,0,0}, - {10847,10844,10843 ,6113,6110,6112 ,0,0,0}, {10843,10840,10839 ,6112,6110,6109 ,0,0,0}, - {10835,10840,10836 ,6106,6110,6103 ,0,0,0}, {10833,10836,10831 ,6104,6103,6103 ,0,0,0}, - {10830,10834,10831 ,730,6105,6103 ,0,0,0}, {10837,10830,10832 ,6107,730,6103 ,0,0,0}, - {10841,10838,10832 ,6103,6108,6103 ,0,0,0}, {10841,10845,10842 ,6103,6111,6111 ,0,0,0}, - {10846,10854,10845 ,6103,6115,6111 ,0,0,0}, {10846,10858,10853 ,6103,730,730 ,0,0,0}, - {10857,10859,10862 ,6111,6111,6114 ,0,0,0}, {10853,10858,10857 ,730,730,6111 ,0,0,0}, - {10861,10859,9008 ,6110,6111,6110 ,0,0,0}, {9044,9012,10878 ,6116,6117,6118 ,0,0,0}, - {9047,10879,10880 ,6119,6120,6121 ,0,0,0}, {10881,10882,9199 ,6122,6123,6124 ,0,0,0}, - {9289,9059,9286 ,6125,6126,6127 ,0,0,0}, {9215,9214,9626 ,6128,6129,6130 ,0,0,0}, - {9145,9148,9069 ,6131,6132,6122 ,0,0,0}, {10883,9150,10884 ,6133,6134,6135 ,0,0,0}, - {10885,10886,10887 ,6136,6137,6138 ,0,0,0}, {9016,9096,9099 ,6122,6120,6139 ,0,0,0}, - {10882,9184,9189 ,6123,6140,6141 ,0,0,0}, {10888,9267,9269 ,6139,6142,6143 ,0,0,0}, - {9539,10889,9540 ,6144,6145,6146 ,0,0,0}, {9597,10890,9590 ,6147,6148,6149 ,0,0,0}, - {9117,10891,9120 ,6150,6144,6150 ,0,0,0}, {10892,9175,9574 ,6151,6134,6152 ,0,0,0}, - {10893,9076,10894 ,6145,6153,6154 ,0,0,0}, {10892,9574,10895 ,6151,6152,6155 ,0,0,0}, - {10896,9574,9573 ,6156,6152,6157 ,0,0,0}, {10897,10898,10899 ,6158,6144,6159 ,0,0,0}, - {10900,10901,10902 ,6160,6161,6162 ,0,0,0}, {9573,10903,10896 ,6157,6163,6156 ,0,0,0}, - {10904,10905,9573 ,6158,6164,6157 ,0,0,0}, {9579,10906,10904 ,6155,6165,6158 ,0,0,0}, - {10907,9584,10908 ,6166,6167,6116 ,0,0,0}, {9579,10904,9573 ,6155,6158,6157 ,0,0,0}, - {9591,10908,9584 ,6168,6116,6167 ,0,0,0}, {10899,10887,10886 ,6159,6138,6137 ,0,0,0}, - {10909,10910,10911 ,6122,6169,6170 ,0,0,0}, {10912,9579,9577 ,6171,6155,6172 ,0,0,0}, - {9577,10913,10912 ,6172,6118,6171 ,0,0,0}, {10914,10915,9587 ,6173,6174,6175 ,0,0,0}, - {9577,9576,10913 ,6172,6176,6118 ,0,0,0}, {9576,10915,10916 ,6176,6174,6177 ,0,0,0}, - {10917,9240,9239 ,6120,6146,6154 ,0,0,0}, {9576,9587,10915 ,6176,6175,6174 ,0,0,0}, - {10914,9587,9582 ,6173,6175,6178 ,0,0,0}, {10894,9078,10918 ,6154,6120,6145 ,0,0,0}, - {10919,10920,10921 ,6177,6179,6180 ,0,0,0}, {10922,10914,9582 ,6181,6173,6178 ,0,0,0}, - {10920,10923,10909 ,6179,6182,6122 ,0,0,0}, {10897,10924,10898 ,6158,6183,6144 ,0,0,0}, - {10911,10910,10925 ,6170,6169,6184 ,0,0,0}, {9591,9590,10926 ,6168,6149,6185 ,0,0,0}, - {10927,9024,10928 ,6186,6187,6119 ,0,0,0}, {9120,10929,9121 ,6150,6144,6188 ,0,0,0}, - {10930,9542,10931 ,6145,6144,6150 ,0,0,0}, {10924,9307,10932 ,6183,6189,6190 ,0,0,0}, - {9537,10933,10934 ,6154,6120,6127 ,0,0,0}, {9274,9273,9637 ,6191,6142,6192 ,0,0,0}, - {10879,9047,9045 ,6120,6119,6122 ,0,0,0}, {9631,9205,9204 ,6193,6194,6195 ,0,0,0}, - {9276,9532,9526 ,6196,6186,6197 ,0,0,0}, {9152,9074,9071 ,6196,6134,6138 ,0,0,0}, - {10882,9303,9298 ,6123,6198,6199 ,0,0,0}, {9069,9148,9071 ,6122,6132,6138 ,0,0,0}, - {9144,9145,9068 ,6157,6131,6137 ,0,0,0}, {9144,9068,9065 ,6157,6137,6131 ,0,0,0}, - {9063,9142,9065 ,6200,6143,6131 ,0,0,0}, {9051,9262,9280 ,6117,6201,6202 ,0,0,0}, - {10885,10935,10936 ,6136,6200,6156 ,0,0,0}, {9136,10937,9131 ,6118,6203,6132 ,0,0,0}, - {10938,9138,9140 ,6133,6204,6133 ,0,0,0}, {9068,9145,9069 ,6137,6131,6122 ,0,0,0}, - {9148,9152,9071 ,6132,6196,6138 ,0,0,0}, {9138,10939,9133 ,6204,6153,6201 ,0,0,0}, - {10940,9131,10937 ,6201,6132,6203 ,0,0,0}, {9053,9051,9280 ,6187,6117,6202 ,0,0,0}, - {9065,9142,9144 ,6131,6143,6157 ,0,0,0}, {9127,9557,9559 ,6132,6144,6205 ,0,0,0}, - {9140,9292,10938 ,6133,6201,6133 ,0,0,0}, {9063,9292,9142 ,6200,6201,6143 ,0,0,0}, - {9564,9126,9559 ,6206,6116,6205 ,0,0,0}, {9158,9564,9566 ,6207,6206,6204 ,0,0,0}, - {10941,10942,9132 ,6132,6119,6207 ,0,0,0}, {9557,9127,9131 ,6144,6132,6132 ,0,0,0}, - {9126,9564,9156 ,6116,6206,6121 ,0,0,0}, {9126,9127,9559 ,6116,6132,6205 ,0,0,0}, - {9567,9162,9566 ,6208,6207,6204 ,0,0,0}, {9158,9156,9564 ,6207,6121,6206 ,0,0,0}, - {9159,9158,9566 ,6209,6207,6204 ,0,0,0}, {9567,9569,9165 ,6208,6142,6196 ,0,0,0}, - {9162,9159,9566 ,6207,6209,6204 ,0,0,0}, {9164,9162,9567 ,6133,6207,6208 ,0,0,0}, - {9567,9165,9164 ,6208,6196,6133 ,0,0,0}, {9569,9168,9165 ,6142,6134,6196 ,0,0,0}, - {9572,9170,9569 ,6148,6131,6142 ,0,0,0}, {9569,9170,9168 ,6142,6131,6134 ,0,0,0}, - {9572,9171,9170 ,6148,6205,6131 ,0,0,0}, {9171,9572,9174 ,6205,6148,6204 ,0,0,0}, - {9572,9175,9174 ,6148,6134,6204 ,0,0,0}, {10896,10895,9574 ,6156,6155,6152 ,0,0,0}, - {10912,10906,9579 ,6171,6165,6155 ,0,0,0}, {10905,10903,9573 ,6164,6163,6157 ,0,0,0}, - {10913,9576,10916 ,6118,6176,6177 ,0,0,0}, {10907,10943,9582 ,6166,6210,6178 ,0,0,0}, - {10944,9596,10945 ,6157,6190,6211 ,0,0,0}, {10922,10946,10947 ,6181,6212,6182 ,0,0,0}, - {9188,10882,9189 ,6174,6123,6141 ,0,0,0}, {10948,10949,10882 ,6213,6214,6123 ,0,0,0}, - {9634,9631,9178 ,6215,6193,6216 ,0,0,0}, {9317,9319,9179 ,6217,6218,6219 ,0,0,0}, - {9204,9178,9631 ,6195,6216,6193 ,0,0,0}, {9209,9208,9623 ,6220,6221,6222 ,0,0,0}, - {9205,9630,9208 ,6194,6223,6221 ,0,0,0}, {9626,9214,9211 ,6130,6129,6181 ,0,0,0}, - {9211,9623,9626 ,6181,6222,6130 ,0,0,0}, {9220,9627,9221 ,6224,6225,6226 ,0,0,0}, - {9217,9626,9627 ,6227,6130,6225 ,0,0,0}, {9297,10882,9298 ,6212,6123,6199 ,0,0,0}, - {9228,10950,9229 ,6203,6228,6201 ,0,0,0}, {9319,9180,9179 ,6218,6229,6219 ,0,0,0}, - {10951,10952,10953 ,6230,6231,6232 ,0,0,0}, {9319,9320,9599 ,6218,6200,6233 ,0,0,0}, - {9220,9217,9627 ,6224,6227,6225 ,0,0,0}, {9627,9223,9221 ,6225,6234,6226 ,0,0,0}, - {9217,9215,9626 ,6227,6128,6130 ,0,0,0}, {9297,9296,10882 ,6212,6235,6123 ,0,0,0}, - {9209,9623,9211 ,6220,6222,6181 ,0,0,0}, {9630,9623,9208 ,6223,6222,6221 ,0,0,0}, - {9631,9630,9205 ,6193,6223,6194 ,0,0,0}, {9180,9634,9178 ,6229,6215,6216 ,0,0,0}, - {9634,9180,9599 ,6215,6229,6233 ,0,0,0}, {10949,9304,10882 ,6214,6236,6123 ,0,0,0}, - {9307,9304,10932 ,6189,6236,6190 ,0,0,0}, {10882,10954,10955 ,6123,6170,6214 ,0,0,0}, - {9196,10882,9192 ,6237,6123,6167 ,0,0,0}, {10881,10954,10882 ,6122,6170,6123 ,0,0,0}, - {9198,10956,10957 ,6238,6180,6179 ,0,0,0}, {10958,9235,10959 ,6197,6165,6196 ,0,0,0}, - {10960,9040,10961 ,6131,6122,6132 ,0,0,0}, {9203,10962,10956 ,6239,6240,6180 ,0,0,0}, - {10963,10964,10902 ,6171,6152,6162 ,0,0,0}, {9031,10965,9030 ,6204,6208,6126 ,0,0,0}, - {10966,10925,10967 ,6241,6184,6136 ,0,0,0}, {10968,9246,9249 ,6179,6179,6202 ,0,0,0}, - {9258,10965,9257 ,6127,6208,6242 ,0,0,0}, {9383,10969,10970 ,6156,6200,6136 ,0,0,0}, - {9386,9388,10971 ,6137,6135,6133 ,0,0,0}, {10972,10973,10974 ,6207,6133,6208 ,0,0,0}, - {9344,9377,9380 ,6196,6158,6159 ,0,0,0}, {9367,9337,9332 ,6181,6243,6139 ,0,0,0}, - {9351,9353,10975 ,6244,6245,6246 ,0,0,0}, {9330,10976,10977 ,6247,6190,6136 ,0,0,0}, - {10978,10952,10979 ,6248,6231,6170 ,0,0,0}, {10980,10981,9359 ,6152,6249,6250 ,0,0,0}, - {10982,10952,10978 ,6251,6231,6248 ,0,0,0}, {10983,10984,10985 ,6252,6253,6254 ,0,0,0}, - {10984,10951,10985 ,6253,6230,6254 ,0,0,0}, {10986,10987,10988 ,6255,6256,6257 ,0,0,0}, - {10989,10990,10991 ,6258,6259,6260 ,0,0,0}, {10984,10983,10991 ,6253,6252,6260 ,0,0,0}, - {10991,10990,10984 ,6260,6259,6253 ,0,0,0}, {10990,10989,10992 ,6259,6258,6261 ,0,0,0}, - {10993,10988,10994 ,6262,6257,6263 ,0,0,0}, {10992,10994,10990 ,6261,6263,6259 ,0,0,0}, - {10988,10987,10994 ,6257,6256,6263 ,0,0,0}, {10995,10996,10987 ,6264,6265,6256 ,0,0,0}, - {10992,10993,10994 ,6261,6262,6263 ,0,0,0}, {10986,10995,10987 ,6255,6264,6256 ,0,0,0}, - {10985,10951,10953 ,6254,6230,6232 ,0,0,0}, {10997,10998,9360 ,6138,6134,6266 ,0,0,0}, - {10953,10952,10982 ,6232,6231,6251 ,0,0,0}, {10979,10998,10997 ,6170,6134,6138 ,0,0,0}, - {10999,9353,9354 ,6267,6245,6268 ,0,0,0}, {9331,10977,11000 ,6167,6136,6199 ,0,0,0}, - {9348,9351,10976 ,6235,6244,6190 ,0,0,0}, {11001,9402,11002 ,6197,6164,6191 ,0,0,0}, - {9396,9395,11003 ,6171,6118,6269 ,0,0,0}, {9341,9338,9371 ,6270,6270,6174 ,0,0,0}, - {11001,9404,9402 ,6197,6163,6164 ,0,0,0}, {9376,9341,9371 ,6127,6270,6174 ,0,0,0}, - {11004,10936,10935 ,6137,6156,6200 ,0,0,0}, {11005,11006,11007 ,6213,6271,6169 ,0,0,0}, - {9365,9367,11008 ,6173,6181,6272 ,0,0,0}, {9407,9404,11001 ,6156,6163,6197 ,0,0,0}, - {10997,11009,10979 ,6138,6273,6170 ,0,0,0}, {11010,9408,9407 ,6201,6155,6156 ,0,0,0}, - {11010,9412,9410 ,6201,6134,6151 ,0,0,0}, {11011,10965,11012 ,6214,6208,6133 ,0,0,0}, - {11011,9025,9028 ,6214,6208,6117 ,0,0,0}, {11013,11014,11015 ,6190,6214,6199 ,0,0,0}, - {9402,9401,11002 ,6164,6158,6191 ,0,0,0}, {9396,11003,11002 ,6171,6269,6191 ,0,0,0}, - {11016,11017,11018 ,6274,6118,6183 ,0,0,0}, {11019,11020,11021 ,6149,6275,6214 ,0,0,0}, - {11022,10978,11009 ,6243,6248,6273 ,0,0,0}, {11022,11009,11023 ,6243,6273,6276 ,0,0,0}, - {11021,10911,10925 ,6214,6170,6184 ,0,0,0}, {10909,10923,10910 ,6122,6182,6169 ,0,0,0}, - {10921,11024,10919 ,6180,6244,6177 ,0,0,0}, {10920,10919,10923 ,6179,6177,6182 ,0,0,0}, - {10897,11025,9308 ,6158,6127,6249 ,0,0,0}, {9203,11024,10962 ,6239,6244,6240 ,0,0,0}, - {10921,10962,11024 ,6180,6240,6244 ,0,0,0}, {9203,10956,9200 ,6239,6180,6277 ,0,0,0}, - {10897,9308,9307 ,6158,6249,6189 ,0,0,0}, {9199,9198,10957 ,6124,6238,6179 ,0,0,0}, - {9198,9200,10956 ,6238,6277,6180 ,0,0,0}, {9326,9594,9602 ,6278,6279,6280 ,0,0,0}, - {9594,10945,9596 ,6279,6211,6190 ,0,0,0}, {10881,9199,10957 ,6122,6124,6179 ,0,0,0}, - {11026,10882,10955 ,6275,6123,6214 ,0,0,0}, {9199,10882,9196 ,6124,6123,6237 ,0,0,0}, - {9600,9323,9602 ,6281,6282,6280 ,0,0,0}, {9310,11025,11027 ,6283,6127,6174 ,0,0,0}, - {9308,11025,9310 ,6249,6127,6283 ,0,0,0}, {10898,10887,10899 ,6144,6138,6159 ,0,0,0}, - {10885,10936,10886 ,6136,6156,6137 ,0,0,0}, {11004,10883,10884 ,6137,6133,6135 ,0,0,0}, - {10883,11004,10935 ,6133,6137,6200 ,0,0,0}, {10883,9074,9150 ,6133,6134,6134 ,0,0,0}, - {9557,10940,9555 ,6144,6201,6209 ,0,0,0}, {9150,9074,9152 ,6134,6134,6196 ,0,0,0}, - {9292,9063,9291 ,6201,6200,6158 ,0,0,0}, {9056,9053,9283 ,6208,6187,6284 ,0,0,0}, - {9289,9291,9062 ,6125,6158,6204 ,0,0,0}, {11028,9552,9553 ,6191,6165,6179 ,0,0,0}, - {9550,11029,9527 ,6142,6172,6197 ,0,0,0}, {9274,9532,9276 ,6191,6186,6196 ,0,0,0}, - {9637,9532,9274 ,6192,6186,6191 ,0,0,0}, {9637,9273,9535 ,6192,6142,6285 ,0,0,0}, - {11030,9270,9267 ,6192,6228,6142 ,0,0,0}, {9096,9016,9018 ,6120,6122,6119 ,0,0,0}, - {9019,9094,9018 ,6171,6202,6119 ,0,0,0}, {11031,9547,9545 ,6150,6144,6150 ,0,0,0}, - {10891,9117,9115 ,6144,6150,6187 ,0,0,0}, {9123,9121,10929 ,6150,6188,6144 ,0,0,0}, - {9115,11032,10891 ,6187,6144,6144 ,0,0,0}, {9089,10927,11033 ,6165,6186,6286 ,0,0,0}, - {11032,9111,11034 ,6144,6192,6144 ,0,0,0}, {9109,9108,11034 ,6145,6145,6144 ,0,0,0}, - {11035,11036,10965 ,6143,6133,6208 ,0,0,0}, {10917,11037,9240 ,6120,6176,6146 ,0,0,0}, - {10960,9037,9040 ,6131,6137,6122 ,0,0,0}, {9043,9388,9387 ,6134,6135,6134 ,0,0,0}, - {10959,9230,9229 ,6196,6139,6201 ,0,0,0}, {10958,9236,9233 ,6197,6286,6165 ,0,0,0}, - {10968,9249,11038 ,6179,6202,6139 ,0,0,0}, {9252,11038,9251 ,6203,6139,6228 ,0,0,0}, - {9386,10971,10969 ,6137,6133,6200 ,0,0,0}, {10969,9383,9386 ,6200,6156,6137 ,0,0,0}, - {11039,11040,11041 ,6209,6207,6166 ,0,0,0}, {11042,9381,10970 ,6138,6137,6136 ,0,0,0}, - {11037,9242,9240 ,6176,6191,6146 ,0,0,0}, {11043,11044,11045 ,6186,6228,6287 ,0,0,0}, - {9236,10958,10917 ,6286,6197,6120 ,0,0,0}, {9236,10917,9239 ,6286,6120,6154 ,0,0,0}, - {9235,10958,9233 ,6165,6197,6165 ,0,0,0}, {9230,10959,9235 ,6139,6196,6165 ,0,0,0}, - {10950,9228,9246 ,6228,6203,6179 ,0,0,0}, {10950,10959,9229 ,6228,6196,6201 ,0,0,0}, - {9034,10965,9031 ,6200,6208,6204 ,0,0,0}, {10968,10950,9246 ,6179,6228,6179 ,0,0,0}, - {11046,11038,9252 ,6133,6139,6203 ,0,0,0}, {9251,11038,9249 ,6228,6139,6202 ,0,0,0}, - {9034,9036,10965 ,6200,6131,6208 ,0,0,0}, {10965,11047,9257 ,6208,6207,6242 ,0,0,0}, - {9042,9387,11048 ,6138,6134,6196 ,0,0,0}, {10965,9036,9037 ,6208,6131,6137 ,0,0,0}, - {10965,9028,9030 ,6208,6117,6126 ,0,0,0}, {9025,11011,10928 ,6208,6214,6119 ,0,0,0}, - {10965,11011,9028 ,6208,6214,6117 ,0,0,0}, {10893,9105,9076 ,6145,6120,6153 ,0,0,0}, - {11049,11050,9080 ,6201,6121,6288 ,0,0,0}, {9024,9025,10928 ,6187,6208,6119 ,0,0,0}, - {11051,9082,9084 ,6139,6192,6131 ,0,0,0}, {10918,9080,11050 ,6145,6288,6121 ,0,0,0}, - {9115,9114,11032 ,6187,6145,6144 ,0,0,0}, {9114,9111,11032 ,6145,6192,6144 ,0,0,0}, - {9108,9105,10893 ,6145,6120,6145 ,0,0,0}, {11050,11052,10918 ,6121,6289,6145 ,0,0,0}, - {11043,11052,11053 ,6186,6289,6191 ,0,0,0}, {11050,11053,11052 ,6121,6191,6289 ,0,0,0}, - {11043,11045,11037 ,6186,6287,6176 ,0,0,0}, {11043,11053,11044 ,6186,6191,6228 ,0,0,0}, - {9242,11037,11045 ,6191,6176,6287 ,0,0,0}, {11054,9045,9044 ,6202,6122,6116 ,0,0,0}, - {11055,11056,9525 ,6165,6191,6187 ,0,0,0}, {11057,9553,9555 ,6126,6179,6209 ,0,0,0}, - {11058,10933,9535 ,6154,6120,6285 ,0,0,0}, {9262,9051,11059 ,6201,6117,6120 ,0,0,0}, - {11060,11061,9264 ,6197,6201,6207 ,0,0,0}, {10880,11059,9050 ,6121,6120,6171 ,0,0,0}, - {9013,9101,9100 ,6116,6120,6201 ,0,0,0}, {10880,9050,9047 ,6121,6171,6119 ,0,0,0}, - {9053,9280,9283 ,6187,6202,6284 ,0,0,0}, {9283,9285,9056 ,6284,6140,6208 ,0,0,0}, - {9057,9285,9286 ,6117,6140,6127 ,0,0,0}, {9057,9286,9059 ,6117,6127,6126 ,0,0,0}, - {9059,9289,9062 ,6126,6125,6204 ,0,0,0}, {9063,9062,9291 ,6200,6204,6158 ,0,0,0}, - {9140,9142,9292 ,6133,6143,6201 ,0,0,0}, {9136,9132,10942 ,6118,6207,6119 ,0,0,0}, - {9138,10938,10939 ,6204,6133,6153 ,0,0,0}, {10941,9132,9133 ,6132,6207,6201 ,0,0,0}, - {10941,9133,10939 ,6132,6201,6153 ,0,0,0}, {10937,9136,10942 ,6203,6118,6119 ,0,0,0}, - {9131,10940,9557 ,6132,6201,6144 ,0,0,0}, {11057,9555,10940 ,6126,6209,6201 ,0,0,0}, - {11062,9552,11028 ,6242,6165,6191 ,0,0,0}, {11028,9553,11057 ,6191,6179,6126 ,0,0,0}, - {9550,11062,11063 ,6142,6242,6197 ,0,0,0}, {11062,9550,9552 ,6242,6142,6165 ,0,0,0}, - {11029,11055,9527 ,6172,6165,6197 ,0,0,0}, {11063,11029,9550 ,6197,6172,6142 ,0,0,0}, - {9525,11056,9526 ,6187,6191,6197 ,0,0,0}, {9527,11055,9525 ,6197,6165,6187 ,0,0,0}, - {9276,9526,11064 ,6196,6197,6202 ,0,0,0}, {9526,11056,11064 ,6197,6191,6202 ,0,0,0}, - {10924,10897,9307 ,6183,6158,6189 ,0,0,0}, {11027,11065,11066 ,6174,6118,6273 ,0,0,0}, - {9301,10882,9304 ,6290,6123,6236 ,0,0,0}, {10949,10932,9304 ,6214,6190,6236 ,0,0,0}, - {9301,9303,10882 ,6290,6198,6123 ,0,0,0}, {9193,10882,9188 ,6152,6123,6174 ,0,0,0}, - {9314,9317,9185 ,6124,6217,6291 ,0,0,0}, {9296,9184,10882 ,6235,6140,6123 ,0,0,0}, - {9314,9185,9184 ,6124,6291,6140 ,0,0,0}, {9314,9184,9296 ,6124,6140,6235 ,0,0,0}, - {9317,9179,9185 ,6217,6219,6291 ,0,0,0}, {9319,9599,9180 ,6218,6233,6229 ,0,0,0}, - {9320,9323,9600 ,6200,6282,6281 ,0,0,0}, {9320,9600,9599 ,6200,6281,6233 ,0,0,0}, - {9325,9326,9602 ,6269,6278,6280 ,0,0,0}, {9323,9325,9602 ,6282,6269,6280 ,0,0,0}, - {9594,9326,11067 ,6279,6278,6292 ,0,0,0}, {11067,10945,9594 ,6292,6211,6279 ,0,0,0}, - {11068,9596,10944 ,6293,6190,6157 ,0,0,0}, {9597,11068,11069 ,6147,6293,6266 ,0,0,0}, - {11068,9597,9596 ,6293,6147,6190 ,0,0,0}, {10890,11070,9590 ,6148,6273,6149 ,0,0,0}, - {11069,10890,9597 ,6266,6148,6147 ,0,0,0}, {10926,11071,9591 ,6185,6294,6168 ,0,0,0}, - {11070,10926,9590 ,6273,6185,6149 ,0,0,0}, {9582,9584,10907 ,6178,6167,6166 ,0,0,0}, - {11071,10908,9591 ,6294,6116,6168 ,0,0,0}, {10943,10922,9582 ,6210,6181,6178 ,0,0,0}, - {10947,10946,11065 ,6182,6212,6118 ,0,0,0}, {10943,10946,10922 ,6210,6212,6181 ,0,0,0}, - {11027,11066,9310 ,6174,6273,6283 ,0,0,0}, {11065,10946,11066 ,6118,6212,6273 ,0,0,0}, - {9332,11000,11008 ,6139,6199,6272 ,0,0,0}, {9363,11072,9392 ,6174,6295,6177 ,0,0,0}, - {10963,11022,11023 ,6171,6243,6276 ,0,0,0}, {9398,9396,11002 ,6165,6171,6191 ,0,0,0}, - {11072,9363,11073 ,6295,6174,6162 ,0,0,0}, {11008,9367,9332 ,6272,6181,6139 ,0,0,0}, - {9331,11000,9332 ,6167,6199,6139 ,0,0,0}, {9330,10977,9331 ,6247,6136,6167 ,0,0,0}, - {9348,10976,9330 ,6235,6190,6247 ,0,0,0}, {10975,10976,9351 ,6246,6190,6244 ,0,0,0}, - {10999,10975,9353 ,6267,6246,6245 ,0,0,0}, {9354,9357,10981 ,6268,6185,6249 ,0,0,0}, - {10981,10999,9354 ,6249,6267,6268 ,0,0,0}, {9360,10980,9359 ,6266,6152,6250 ,0,0,0}, - {9359,10981,9357 ,6250,6249,6185 ,0,0,0}, {9360,10998,10980 ,6266,6134,6152 ,0,0,0}, - {10978,10979,11009 ,6248,6170,6273 ,0,0,0}, {10966,11074,10925 ,6241,6296,6184 ,0,0,0}, - {10963,11023,10964 ,6171,6276,6152 ,0,0,0}, {10966,10967,11075 ,6241,6136,6200 ,0,0,0}, - {11075,10901,10900 ,6200,6161,6160 ,0,0,0}, {10900,10902,10964 ,6160,6162,6152 ,0,0,0}, - {11075,10967,10901 ,6200,6136,6161 ,0,0,0}, {11074,11019,11021 ,6296,6149,6214 ,0,0,0}, - {11021,10925,11074 ,6214,6184,6296 ,0,0,0}, {11006,11020,11019 ,6271,6275,6149 ,0,0,0}, - {11007,11014,11005 ,6169,6214,6213 ,0,0,0}, {11006,11005,11020 ,6271,6213,6275 ,0,0,0}, - {11015,11016,11013 ,6199,6274,6190 ,0,0,0}, {11007,11015,11014 ,6169,6199,6214 ,0,0,0}, - {11018,11017,11076 ,6183,6118,6144 ,0,0,0}, {11013,11016,11018 ,6190,6274,6183 ,0,0,0}, - {9344,11076,11017 ,6196,6144,6118 ,0,0,0}, {9019,9022,9093 ,6171,6117,6139 ,0,0,0}, - {10929,9125,9123 ,6144,6150,6150 ,0,0,0}, {10929,9120,10891 ,6144,6150,6144 ,0,0,0}, - {9090,9093,9022 ,6197,6139,6117 ,0,0,0}, {9024,10927,9090 ,6187,6186,6197 ,0,0,0}, - {10893,11034,9108 ,6145,6144,6145 ,0,0,0}, {9111,9109,11034 ,6192,6145,6144 ,0,0,0}, - {9078,9080,10918 ,6120,6288,6145 ,0,0,0}, {9076,9078,10894 ,6153,6120,6154 ,0,0,0}, - {9084,9089,11033 ,6131,6165,6286 ,0,0,0}, {9086,11077,11049 ,6144,6242,6201 ,0,0,0}, - {11049,9080,9086 ,6201,6288,6144 ,0,0,0}, {11033,11051,9084 ,6286,6139,6131 ,0,0,0}, - {9082,11051,11077 ,6192,6139,6242 ,0,0,0}, {9082,11077,9086 ,6192,6242,6144 ,0,0,0}, - {9089,9090,10927 ,6165,6197,6186 ,0,0,0}, {9022,9024,9090 ,6117,6187,6197 ,0,0,0}, - {9019,9093,9094 ,6171,6139,6202 ,0,0,0}, {9018,9094,9096 ,6119,6202,6120 ,0,0,0}, - {9101,9013,9099 ,6120,6116,6139 ,0,0,0}, {9016,9099,9013 ,6122,6139,6116 ,0,0,0}, - {9013,9100,9012 ,6116,6201,6117 ,0,0,0}, {9045,11054,10879 ,6122,6202,6120 ,0,0,0}, - {9012,9100,10878 ,6117,6201,6118 ,0,0,0}, {11054,9044,10878 ,6202,6116,6118 ,0,0,0}, - {11059,9051,9050 ,6120,6117,6171 ,0,0,0}, {11060,9263,11059 ,6197,6197,6120 ,0,0,0}, - {9262,11059,9263 ,6201,6120,6197 ,0,0,0}, {9270,11078,9273 ,6228,6145,6142 ,0,0,0}, - {9269,9264,11061 ,6143,6207,6201 ,0,0,0}, {9264,9263,11060 ,6207,6197,6197 ,0,0,0}, - {11030,9267,10888 ,6192,6142,6139 ,0,0,0}, {10888,9269,11061 ,6139,6143,6201 ,0,0,0}, - {9270,11030,11078 ,6228,6192,6145 ,0,0,0}, {11058,9535,9273 ,6154,6285,6142 ,0,0,0}, - {11058,9273,11078 ,6154,6142,6145 ,0,0,0}, {10933,9537,9535 ,6120,6154,6285 ,0,0,0}, - {9539,10934,11079 ,6144,6127,6187 ,0,0,0}, {10934,9539,9537 ,6127,6144,6154 ,0,0,0}, - {11079,10889,9539 ,6187,6145,6144 ,0,0,0}, {9540,11080,10931 ,6146,6145,6150 ,0,0,0}, - {10889,11080,9540 ,6145,6145,6146 ,0,0,0}, {9540,10931,9542 ,6146,6150,6144 ,0,0,0}, - {9545,9542,11081 ,6150,6144,6146 ,0,0,0}, {10930,11081,9542 ,6145,6146,6144 ,0,0,0}, - {9545,11082,11031 ,6150,6144,6150 ,0,0,0}, {9545,11081,11082 ,6150,6146,6144 ,0,0,0}, - {11083,9547,11084 ,6150,6144,6150 ,0,0,0}, {9547,11031,11084 ,6144,6150,6150 ,0,0,0}, - {9125,9547,11083 ,6150,6144,6150 ,0,0,0}, {11085,11086,11087 ,6131,6203,6207 ,0,0,0}, - {11042,11076,9380 ,6138,6144,6159 ,0,0,0}, {11010,9407,11001 ,6201,6156,6197 ,0,0,0}, - {11010,9410,9408 ,6201,6151,6155 ,0,0,0}, {11076,9344,9380 ,6144,6196,6159 ,0,0,0}, - {9365,11073,9363 ,6173,6162,6174 ,0,0,0}, {9392,11072,9395 ,6177,6295,6118 ,0,0,0}, - {9401,9398,11002 ,6158,6165,6191 ,0,0,0}, {11072,11003,9395 ,6295,6269,6118 ,0,0,0}, - {11073,9365,11008 ,6162,6173,6272 ,0,0,0}, {9367,9373,9337 ,6181,6182,6243 ,0,0,0}, - {9376,9377,9342 ,6127,6158,6297 ,0,0,0}, {9369,9335,9373 ,6118,6155,6182 ,0,0,0}, - {9337,9373,9335 ,6243,6182,6155 ,0,0,0}, {9369,9371,9338 ,6118,6174,6270 ,0,0,0}, - {9338,9335,9369 ,6270,6155,6118 ,0,0,0}, {9341,9376,9342 ,6270,6127,6297 ,0,0,0}, - {9344,9342,9377 ,6196,6297,6158 ,0,0,0}, {11042,9380,9381 ,6138,6159,6137 ,0,0,0}, - {10970,9381,9383 ,6136,6137,6156 ,0,0,0}, {11088,11089,11090 ,6205,6132,6116 ,0,0,0}, - {11089,11046,11091 ,6132,6133,6132 ,0,0,0}, {9037,10960,10965 ,6137,6131,6208 ,0,0,0}, - {10971,9388,9043 ,6133,6135,6134 ,0,0,0}, {9042,11048,10961 ,6138,6196,6132 ,0,0,0}, - {9042,9043,9387 ,6138,6134,6134 ,0,0,0}, {10961,9040,9042 ,6132,6122,6138 ,0,0,0}, - {10965,10960,11092 ,6208,6131,6157 ,0,0,0}, {11092,11035,10965 ,6157,6143,6208 ,0,0,0}, - {11091,9255,11093 ,6132,6172,6118 ,0,0,0}, {11094,11095,10965 ,6204,6201,6208 ,0,0,0}, - {10965,11096,11097 ,6208,6172,6214 ,0,0,0}, {10965,11095,11047 ,6208,6201,6207 ,0,0,0}, - {11096,10965,9258 ,6172,6208,6127 ,0,0,0}, {9257,11047,9255 ,6242,6207,6172 ,0,0,0}, - {11093,9255,11047 ,6118,6172,6207 ,0,0,0}, {11091,11046,9252 ,6132,6133,6203 ,0,0,0}, - {9252,9255,11091 ,6203,6172,6132 ,0,0,0}, {11089,11088,11046 ,6132,6205,6133 ,0,0,0}, - {11039,11090,11098 ,6209,6116,6121 ,0,0,0}, {11090,11039,11088 ,6116,6209,6205 ,0,0,0}, - {11098,11040,11039 ,6121,6207,6209 ,0,0,0}, {11041,11099,10972 ,6166,6209,6207 ,0,0,0}, - {11040,11099,11041 ,6207,6209,6166 ,0,0,0}, {11041,10972,10974 ,6166,6207,6208 ,0,0,0}, - {11087,10974,11100 ,6207,6208,6196 ,0,0,0}, {10973,11100,10974 ,6133,6196,6208 ,0,0,0}, - {11087,11101,11085 ,6207,6134,6131 ,0,0,0}, {11087,11100,11101 ,6207,6196,6134 ,0,0,0}, - {11102,11086,11103 ,6204,6203,6205 ,0,0,0}, {11086,11085,11103 ,6203,6131,6205 ,0,0,0}, - {9412,11086,11102 ,6134,6203,6204 ,0,0,0}, {10882,9193,9192 ,6123,6152,6167 ,0,0,0}, - {10882,11026,10948 ,6123,6275,6213 ,0,0,0}, {9285,9057,9056 ,6140,6117,6208 ,0,0,0}, - {10965,11036,11094 ,6208,6133,6204 ,0,0,0}, {10965,11097,11012 ,6208,6214,6133 ,0,0,0}, - {11104,9788,9787 ,6298,6299,6299 ,0,0,0}, {9793,11105,9794 ,6298,6298,6300 ,0,0,0}, - {11106,11107,9485 ,6301,6302,6302 ,0,0,0}, {9787,9784,11108 ,6299,6300,6303 ,0,0,0}, - {9482,11109,11110 ,6304,6304,6305 ,0,0,0}, {9778,11111,9781 ,6301,6299,6306 ,0,0,0}, - {9480,11112,11113 ,6305,6307,6308 ,0,0,0}, {11114,9775,9772 ,6298,6298,6309 ,0,0,0}, - {11115,9468,11116 ,6310,6311,6312 ,0,0,0}, {11117,11118,9474 ,6308,6313,6314 ,0,0,0}, - {9464,9888,11119 ,6315,6316,6317 ,0,0,0}, {11119,11120,9471 ,6317,6318,6319 ,0,0,0}, - {9459,9883,9885 ,6320,6321,6322 ,0,0,0}, {9843,9426,9841 ,6299,6303,6323 ,0,0,0}, - {9847,9849,9429 ,6324,6298,6306 ,0,0,0}, {9449,9873,9874 ,6325,6326,6327 ,0,0,0}, - {9850,9853,9437 ,6298,6328,6324 ,0,0,0}, {9865,9867,9446 ,6301,6329,6330 ,0,0,0}, - {9865,9520,9862 ,6301,6324,6331 ,0,0,0}, {9439,9859,9861 ,6332,6328,6333 ,0,0,0}, - {9859,9442,9856 ,6328,6334,6335 ,0,0,0}, {9868,9519,9867 ,6336,6298,6329 ,0,0,0}, - {9862,9447,9861 ,6331,6337,6333 ,0,0,0}, {9448,9871,9873 ,6338,6339,6326 ,0,0,0}, - {9868,9871,9451 ,6336,6339,6324 ,0,0,0}, {9853,9855,9433 ,6328,6328,6299 ,0,0,0}, - {9855,9856,9434 ,6328,6335,6340 ,0,0,0}, {9455,9877,9879 ,6341,6342,6343 ,0,0,0}, - {9457,9874,9877 ,6344,6327,6342 ,0,0,0}, {9879,9880,9453 ,6343,6345,6346 ,0,0,0}, - {9849,9850,9436 ,6298,6298,6347 ,0,0,0}, {9844,9847,9432 ,6348,6324,6316 ,0,0,0}, - {9461,9880,9883 ,6349,6345,6321 ,0,0,0}, {9460,9885,9886 ,6350,6322,6351 ,0,0,0}, - {9431,9844,9432 ,6324,6348,6316 ,0,0,0}, {9417,9838,9418 ,6300,6352,6353 ,0,0,0}, - {9466,9886,9888 ,6354,6351,6316 ,0,0,0}, {9414,9832,9415 ,6355,6299,6298 ,0,0,0}, - {9837,9423,9835 ,6299,6356,6357 ,0,0,0}, {11117,9476,11115 ,6308,6358,6310 ,0,0,0}, - {11120,11116,9467 ,6318,6312,6359 ,0,0,0}, {9770,9769,11121 ,6316,6306,6360 ,0,0,0}, - {11121,9769,9420 ,6360,6306,6299 ,0,0,0}, {11121,11122,9770 ,6360,6298,6316 ,0,0,0}, - {11118,11112,9472 ,6313,6307,6304 ,0,0,0}, {9479,11113,11123 ,6336,6308,6311 ,0,0,0}, - {9426,9843,9431 ,6303,6299,6324 ,0,0,0}, {11123,11109,9484 ,6311,6304,6314 ,0,0,0}, - {9778,9776,11124 ,6301,6300,6340 ,0,0,0}, {11125,9776,9775 ,6301,6300,6298 ,0,0,0}, - {11126,11106,9489 ,6301,6301,6333 ,0,0,0}, {9483,11110,11126 ,6361,6305,6301 ,0,0,0}, - {11127,9784,9782 ,6300,6300,6357 ,0,0,0}, {9781,11128,9782 ,6306,6355,6357 ,0,0,0}, - {11129,11130,9490 ,6353,6311,6301 ,0,0,0}, {9486,11107,11129 ,6362,6302,6353 ,0,0,0}, - {9790,9788,11131 ,6300,6299,6300 ,0,0,0}, {9491,11130,11132 ,6300,6311,6363 ,0,0,0}, - {9495,11132,11133 ,6301,6363,6353 ,0,0,0}, {9496,11133,11134 ,6300,6353,6328 ,0,0,0}, - {9790,11135,9793 ,6300,6300,6298 ,0,0,0}, {11136,9498,11134 ,6303,6352,6328 ,0,0,0}, - {11136,11137,9500 ,6303,6352,6340 ,0,0,0}, {11138,9796,9794 ,6299,6316,6300 ,0,0,0}, - {11139,9503,11137 ,6300,6340,6352 ,0,0,0}, {11140,9799,9796 ,6298,6364,6316 ,0,0,0}, - {9504,11139,11141 ,6316,6300,6306 ,0,0,0}, {11142,9800,9799 ,6364,6298,6364 ,0,0,0}, - {11141,11143,9506 ,6306,6340,6340 ,0,0,0}, {11144,9802,9800 ,6300,6300,6298 ,0,0,0}, - {11145,9509,11143 ,6323,6340,6340 ,0,0,0}, {11146,9805,9802 ,6298,6300,6300 ,0,0,0}, - {9511,11145,11147 ,6300,6323,6340 ,0,0,0}, {11148,9806,9805 ,6364,6300,6300 ,0,0,0}, - {11147,11149,9510 ,6340,6303,6303 ,0,0,0}, {11150,9808,9806 ,6300,6365,6300 ,0,0,0}, - {11151,9512,11149 ,6300,6300,6303 ,0,0,0}, {11152,9811,9808 ,6366,6300,6365 ,0,0,0}, - {9515,11151,11153 ,6300,6300,6316 ,0,0,0}, {11154,9812,9811 ,6367,6367,6300 ,0,0,0}, - {11153,11155,9516 ,6316,6300,6300 ,0,0,0}, {11156,9814,9812 ,6300,6300,6367 ,0,0,0}, - {11157,9516,11158 ,6301,6300,6300 ,0,0,0}, {11159,9817,9814 ,6368,6300,6300 ,0,0,0}, - {11160,11157,11161 ,6300,6301,6300 ,0,0,0}, {11162,9818,9817 ,6369,6367,6300 ,0,0,0}, - {11163,11160,11164 ,6316,6300,6300 ,0,0,0}, {9818,11165,9820 ,6367,6367,6300 ,0,0,0}, - {9823,9820,11166 ,6364,6300,6370 ,0,0,0}, {11167,9826,9824 ,6300,6316,6300 ,0,0,0}, - {11168,11163,11169 ,6300,6316,6316 ,0,0,0}, {11170,11171,11172 ,6300,6371,6300 ,0,0,0}, - {11173,11174,11175 ,6306,6300,6303 ,0,0,0}, {11176,11177,11178 ,6369,6300,6367 ,0,0,0}, - {11179,11180,11181 ,6301,6301,6300 ,0,0,0}, {11182,11183,11184 ,6300,6369,6367 ,0,0,0}, - {11185,11186,11187 ,6316,6316,6300 ,0,0,0}, {11188,11189,11190 ,6364,6300,6300 ,0,0,0}, - {11191,11182,11192 ,6364,6300,6316 ,0,0,0}, {11193,11194,11195 ,6300,6364,6316 ,0,0,0}, - {11190,11196,11195 ,6300,6316,6316 ,0,0,0}, {11197,11198,11199 ,6364,6372,6364 ,0,0,0}, - {11198,11191,11200 ,6372,6364,6300 ,0,0,0}, {11185,11194,11201 ,6316,6364,6367 ,0,0,0}, - {11202,11188,11197 ,6370,6364,6364 ,0,0,0}, {11178,11203,11204 ,6367,6367,6316 ,0,0,0}, - {11205,11183,11204 ,6316,6369,6316 ,0,0,0}, {11206,11179,11207 ,6306,6301,6303 ,0,0,0}, - {11207,11187,11208 ,6303,6300,6340 ,0,0,0}, {11209,11210,11172 ,6371,6300,6300 ,0,0,0}, - {11211,11176,11210 ,6300,6369,6300 ,0,0,0}, {11212,11173,11213 ,6300,6306,6300 ,0,0,0}, - {11212,11213,11181 ,6300,6300,6300 ,0,0,0}, {11214,11215,9826 ,6300,6300,6316 ,0,0,0}, - {11170,11215,11216 ,6300,6300,6316 ,0,0,0}, {11168,11217,11218 ,6300,6303,6301 ,0,0,0}, - {11174,11218,11219 ,6300,6301,6301 ,0,0,0}, {9824,9823,11220 ,6300,6364,6369 ,0,0,0}, - {9769,9768,9420 ,6306,6298,6299 ,0,0,0}, {9420,9768,9831 ,6299,6298,6340 ,0,0,0}, - {11122,11114,9772 ,6298,6298,6309 ,0,0,0}, {11122,9772,9770 ,6298,6309,6316 ,0,0,0}, - {11114,11125,9775 ,6298,6301,6298 ,0,0,0}, {11125,11124,9776 ,6301,6340,6300 ,0,0,0}, - {11124,11111,9778 ,6340,6299,6301 ,0,0,0}, {11111,11128,9781 ,6299,6355,6306 ,0,0,0}, - {11128,11127,9782 ,6355,6300,6357 ,0,0,0}, {11127,11108,9784 ,6300,6303,6300 ,0,0,0}, - {11108,11104,9787 ,6303,6298,6299 ,0,0,0}, {11104,11131,9788 ,6298,6300,6299 ,0,0,0}, - {11131,11135,9790 ,6300,6300,6300 ,0,0,0}, {11135,11105,9793 ,6300,6298,6298 ,0,0,0}, - {11105,11138,9794 ,6298,6299,6300 ,0,0,0}, {11138,11140,9796 ,6299,6298,6316 ,0,0,0}, - {11140,11142,9799 ,6298,6364,6364 ,0,0,0}, {11142,11144,9800 ,6364,6300,6298 ,0,0,0}, - {11144,11146,9802 ,6300,6298,6300 ,0,0,0}, {11146,11148,9805 ,6298,6364,6300 ,0,0,0}, - {11148,11150,9806 ,6364,6300,6300 ,0,0,0}, {11150,11152,9808 ,6300,6366,6365 ,0,0,0}, - {11152,11154,9811 ,6366,6367,6300 ,0,0,0}, {11154,11156,9812 ,6367,6300,6367 ,0,0,0}, - {11156,11159,9814 ,6300,6368,6300 ,0,0,0}, {11159,11162,9817 ,6368,6369,6300 ,0,0,0}, - {11162,11165,9818 ,6369,6367,6367 ,0,0,0}, {11165,11166,9820 ,6367,6370,6300 ,0,0,0}, - {11166,11220,9823 ,6370,6369,6364 ,0,0,0}, {11220,11167,9824 ,6369,6300,6300 ,0,0,0}, - {11167,11214,9826 ,6300,6300,6316 ,0,0,0}, {11214,11216,11215 ,6300,6316,6300 ,0,0,0}, - {11216,11171,11170 ,6316,6371,6300 ,0,0,0}, {11171,11209,11172 ,6371,6371,6300 ,0,0,0}, - {11209,11211,11210 ,6371,6300,6300 ,0,0,0}, {11211,11177,11176 ,6300,6300,6369 ,0,0,0}, - {11177,11203,11178 ,6300,6367,6367 ,0,0,0}, {11203,11205,11204 ,6367,6316,6316 ,0,0,0}, - {11205,11184,11183 ,6316,6367,6369 ,0,0,0}, {11184,11192,11182 ,6367,6316,6300 ,0,0,0}, - {11192,11200,11191 ,6316,6300,6364 ,0,0,0}, {11200,11199,11198 ,6300,6364,6372 ,0,0,0}, - {11199,11202,11197 ,6364,6370,6364 ,0,0,0}, {11202,11189,11188 ,6370,6300,6364 ,0,0,0}, - {11189,11196,11190 ,6300,6316,6300 ,0,0,0}, {11196,11193,11195 ,6316,6300,6316 ,0,0,0}, - {11193,11201,11194 ,6300,6367,6364 ,0,0,0}, {11201,11186,11185 ,6367,6316,6316 ,0,0,0}, - {11186,11208,11187 ,6316,6340,6300 ,0,0,0}, {11208,11206,11207 ,6340,6306,6303 ,0,0,0}, - {11206,11180,11179 ,6306,6301,6301 ,0,0,0}, {11180,11212,11181 ,6301,6300,6300 ,0,0,0}, - {11173,11175,11213 ,6306,6303,6300 ,0,0,0}, {11174,11219,11175 ,6300,6301,6303 ,0,0,0}, - {11218,11217,11219 ,6301,6303,6301 ,0,0,0}, {11168,11169,11217 ,6300,6316,6303 ,0,0,0}, - {11163,11164,11169 ,6316,6300,6316 ,0,0,0}, {11160,11161,11164 ,6300,6300,6300 ,0,0,0}, - {11157,11158,11161 ,6301,6300,6300 ,0,0,0}, {9516,11155,11158 ,6300,6300,6300 ,0,0,0}, - {9516,9515,11153 ,6300,6300,6316 ,0,0,0}, {9515,9512,11151 ,6300,6300,6300 ,0,0,0}, - {9512,9510,11149 ,6300,6303,6303 ,0,0,0}, {9510,9511,11147 ,6303,6300,6340 ,0,0,0}, - {9511,9509,11145 ,6300,6340,6323 ,0,0,0}, {9509,9506,11143 ,6340,6340,6340 ,0,0,0}, - {9506,9504,11141 ,6340,6316,6306 ,0,0,0}, {9504,9503,11139 ,6316,6340,6300 ,0,0,0}, - {9503,9500,11137 ,6340,6340,6352 ,0,0,0}, {9500,9498,11136 ,6340,6352,6303 ,0,0,0}, - {9498,9496,11134 ,6352,6300,6328 ,0,0,0}, {9496,9495,11133 ,6300,6301,6353 ,0,0,0}, - {9495,9491,11132 ,6301,6300,6363 ,0,0,0}, {9491,9490,11130 ,6300,6301,6311 ,0,0,0}, - {9490,9486,11129 ,6301,6362,6353 ,0,0,0}, {9486,9485,11107 ,6362,6302,6302 ,0,0,0}, - {9485,9489,11106 ,6302,6333,6301 ,0,0,0}, {9489,9483,11126 ,6333,6361,6301 ,0,0,0}, - {9483,9482,11110 ,6361,6304,6305 ,0,0,0}, {9482,9484,11109 ,6304,6314,6304 ,0,0,0}, - {9484,9479,11123 ,6314,6336,6311 ,0,0,0}, {9479,9480,11113 ,6336,6305,6308 ,0,0,0}, - {9480,9472,11112 ,6305,6304,6307 ,0,0,0}, {9472,9474,11118 ,6304,6314,6313 ,0,0,0}, - {9474,9476,11117 ,6314,6358,6308 ,0,0,0}, {9476,9468,11115 ,6358,6311,6310 ,0,0,0}, - {9468,9467,11116 ,6311,6359,6312 ,0,0,0}, {9467,9471,11120 ,6359,6319,6318 ,0,0,0}, - {9471,9464,11119 ,6319,6315,6317 ,0,0,0}, {9464,9466,9888 ,6315,6354,6316 ,0,0,0}, - {9466,9460,9886 ,6354,6350,6351 ,0,0,0}, {9460,9459,9885 ,6350,6320,6322 ,0,0,0}, - {9459,9461,9883 ,6320,6349,6321 ,0,0,0}, {9461,9453,9880 ,6349,6346,6345 ,0,0,0}, - {9453,9455,9879 ,6346,6341,6343 ,0,0,0}, {9455,9457,9877 ,6341,6344,6342 ,0,0,0}, - {9457,9449,9874 ,6344,6325,6327 ,0,0,0}, {9449,9448,9873 ,6325,6338,6326 ,0,0,0}, - {9448,9451,9871 ,6338,6324,6339 ,0,0,0}, {9451,9519,9868 ,6324,6298,6336 ,0,0,0}, - {9519,9446,9867 ,6298,6330,6329 ,0,0,0}, {9446,9520,9865 ,6330,6324,6301 ,0,0,0}, - {9520,9447,9862 ,6324,6337,6331 ,0,0,0}, {9447,9439,9861 ,6337,6332,6333 ,0,0,0}, - {9439,9442,9859 ,6332,6334,6328 ,0,0,0}, {9442,9434,9856 ,6334,6340,6335 ,0,0,0}, - {9434,9433,9855 ,6340,6299,6328 ,0,0,0}, {9433,9437,9853 ,6299,6324,6328 ,0,0,0}, - {9437,9436,9850 ,6324,6347,6298 ,0,0,0}, {9436,9429,9849 ,6347,6306,6298 ,0,0,0}, - {9429,9432,9847 ,6306,6316,6324 ,0,0,0}, {9431,9843,9844 ,6324,6299,6348 ,0,0,0}, - {9418,9841,9426 ,6353,6323,6303 ,0,0,0}, {9417,9837,9838 ,6300,6299,6352 ,0,0,0}, - {9418,9838,9841 ,6353,6352,6323 ,0,0,0}, {9423,9415,9835 ,6356,6298,6357 ,0,0,0}, - {9417,9423,9837 ,6300,6356,6299 ,0,0,0}, {9832,9414,9831 ,6299,6355,6340 ,0,0,0}, - {9835,9415,9832 ,6357,6298,6299 ,0,0,0}, {9420,9831,9414 ,6299,6340,6355 ,0,0,0}, - {11215,9828,9826 ,6373,6374,6375 ,0,0,0}, {11221,11222,11210 ,6376,6377,6378 ,0,0,0}, - {11172,11223,11170 ,6379,6380,6381 ,0,0,0}, {11204,11183,11224 ,6382,6383,6384 ,0,0,0}, - {11176,11178,11225 ,6385,6386,6387 ,0,0,0}, {11226,11227,11198 ,6388,6389,6390 ,0,0,0}, - {11228,11229,11182 ,6391,6392,6393 ,0,0,0}, {11190,11195,11230 ,6394,6395,6396 ,0,0,0}, - {11197,11188,11231 ,6397,6398,6399 ,0,0,0}, {11232,11233,11187 ,6400,6401,6402 ,0,0,0}, - {11234,11235,11194 ,6403,6404,6405 ,0,0,0}, {11181,11213,11236 ,6406,6407,6408 ,0,0,0}, - {11207,11179,11237 ,6409,6410,6411 ,0,0,0}, {11238,11239,11217 ,6412,6413,6414 ,0,0,0}, - {11240,11241,11175 ,6415,6416,6417 ,0,0,0}, {11242,11161,11243 ,6418,6419,6420 ,0,0,0}, - {11169,11164,11244 ,6421,6422,6423 ,0,0,0}, {11153,11245,11246 ,6424,6425,6426 ,0,0,0}, - {11155,11247,11158 ,6427,6428,6429 ,0,0,0}, {11248,11249,11147 ,6430,6431,6432 ,0,0,0}, - {11250,11151,11149 ,6433,6434,6435 ,0,0,0}, {11251,11143,11141 ,6436,6437,6438 ,0,0,0}, - {11145,11143,11252 ,6439,6437,6440 ,0,0,0}, {11253,11137,11254 ,6441,6442,6443 ,0,0,0}, - {11139,11253,11255 ,6444,6441,6445 ,0,0,0}, {11134,11133,11256 ,6446,6447,6448 ,0,0,0}, - {11136,11257,11254 ,6449,6450,6443 ,0,0,0}, {11132,11130,11258 ,6451,6452,6453 ,0,0,0}, - {11132,11259,11133 ,6451,6454,6447 ,0,0,0}, {11129,11107,11260 ,6455,6456,6457 ,0,0,0}, - {11129,11261,11130 ,6455,6458,6452 ,0,0,0}, {11262,11107,11106 ,6459,6456,6460 ,0,0,0}, - {11107,11262,11260 ,6456,6459,6457 ,0,0,0}, {11126,11263,11106 ,6461,6462,6460 ,0,0,0}, - {11262,11106,11263 ,6459,6460,6462 ,0,0,0}, {11126,11110,11264 ,6461,6463,6464 ,0,0,0}, - {11264,11263,11126 ,6464,6462,6461 ,0,0,0}, {11265,11110,11109 ,6465,6463,6466 ,0,0,0}, - {11110,11265,11264 ,6463,6465,6464 ,0,0,0}, {11123,11266,11109 ,6467,6468,6466 ,0,0,0}, - {11265,11109,11266 ,6465,6466,6468 ,0,0,0}, {11123,11113,11267 ,6467,6469,6470 ,0,0,0}, - {11267,11266,11123 ,6470,6468,6467 ,0,0,0}, {11268,11113,11112 ,6471,6469,6472 ,0,0,0}, - {11113,11268,11267 ,6469,6471,6470 ,0,0,0}, {11118,11269,11112 ,6473,6474,6472 ,0,0,0}, - {11268,11112,11269 ,6471,6472,6474 ,0,0,0}, {11118,11117,11270 ,6473,6475,6476 ,0,0,0}, - {11270,11269,11118 ,6476,6474,6473 ,0,0,0}, {11271,11117,11115 ,6477,6475,6478 ,0,0,0}, - {11117,11271,11270 ,6475,6477,6476 ,0,0,0}, {11116,11272,11115 ,6479,6480,6478 ,0,0,0}, - {11271,11115,11272 ,6477,6478,6480 ,0,0,0}, {11116,11120,11273 ,6479,6481,6482 ,0,0,0}, - {11273,11272,11116 ,6482,6480,6479 ,0,0,0}, {11274,11120,11119 ,6483,6481,6484 ,0,0,0}, - {11120,11274,11273 ,6481,6483,6482 ,0,0,0}, {9888,11275,11119 ,6485,6486,6484 ,0,0,0}, - {11274,11119,11275 ,6483,6484,6486 ,0,0,0}, {9887,11275,9888 ,6487,6486,6485 ,0,0,0}, - {11261,11258,11130 ,6458,6453,6452 ,0,0,0}, {11129,11260,11261 ,6455,6457,6458 ,0,0,0}, - {11259,11256,11133 ,6454,6448,6447 ,0,0,0}, {11132,11258,11259 ,6451,6453,6454 ,0,0,0}, - {11136,11134,11257 ,6449,6446,6450 ,0,0,0}, {11134,11256,11257 ,6446,6448,6450 ,0,0,0}, - {11137,11253,11139 ,6442,6441,6444 ,0,0,0}, {11137,11136,11254 ,6442,6449,6443 ,0,0,0}, - {11251,11141,11255 ,6436,6438,6445 ,0,0,0}, {11141,11139,11255 ,6438,6444,6445 ,0,0,0}, - {11145,11252,11248 ,6439,6440,6430 ,0,0,0}, {11252,11143,11251 ,6440,6437,6436 ,0,0,0}, - {11249,11149,11147 ,6431,6435,6432 ,0,0,0}, {11248,11147,11145 ,6430,6432,6439 ,0,0,0}, - {11250,11245,11151 ,6433,6425,6434 ,0,0,0}, {11249,11250,11149 ,6431,6433,6435 ,0,0,0}, - {11153,11246,11155 ,6424,6426,6427 ,0,0,0}, {11151,11245,11153 ,6434,6425,6424 ,0,0,0}, - {11158,11247,11243 ,6429,6428,6420 ,0,0,0}, {11155,11246,11247 ,6427,6426,6428 ,0,0,0}, - {11164,11161,11242 ,6422,6419,6418 ,0,0,0}, {11161,11158,11243 ,6419,6429,6420 ,0,0,0}, - {11238,11169,11244 ,6412,6421,6423 ,0,0,0}, {11244,11164,11242 ,6423,6422,6418 ,0,0,0}, - {11239,11219,11217 ,6413,6488,6414 ,0,0,0}, {11238,11217,11169 ,6412,6414,6421 ,0,0,0}, - {11175,11219,11240 ,6417,6488,6415 ,0,0,0}, {11239,11240,11219 ,6413,6415,6488 ,0,0,0}, - {11213,11241,11236 ,6407,6416,6408 ,0,0,0}, {11175,11241,11213 ,6417,6416,6407 ,0,0,0}, - {11179,11181,11276 ,6410,6406,6489 ,0,0,0}, {11181,11236,11276 ,6406,6408,6489 ,0,0,0}, - {11232,11207,11237 ,6400,6409,6411 ,0,0,0}, {11237,11179,11276 ,6411,6410,6489 ,0,0,0}, - {11233,11185,11187 ,6401,6490,6402 ,0,0,0}, {11232,11187,11207 ,6400,6402,6409 ,0,0,0}, - {11194,11185,11234 ,6405,6490,6403 ,0,0,0}, {11233,11234,11185 ,6401,6403,6490 ,0,0,0}, - {11195,11235,11230 ,6395,6404,6396 ,0,0,0}, {11194,11235,11195 ,6405,6404,6395 ,0,0,0}, - {11188,11190,11277 ,6398,6394,6491 ,0,0,0}, {11190,11230,11277 ,6394,6396,6491 ,0,0,0}, - {11226,11197,11231 ,6388,6397,6399 ,0,0,0}, {11231,11188,11277 ,6399,6398,6491 ,0,0,0}, - {11227,11191,11198 ,6389,6492,6390 ,0,0,0}, {11226,11198,11197 ,6388,6390,6397 ,0,0,0}, - {11182,11191,11228 ,6393,6492,6391 ,0,0,0}, {11227,11228,11191 ,6389,6391,6492 ,0,0,0}, - {11183,11229,11224 ,6383,6392,6384 ,0,0,0}, {11182,11229,11183 ,6393,6392,6383 ,0,0,0}, - {11178,11204,11278 ,6386,6382,6493 ,0,0,0}, {11204,11224,11278 ,6382,6384,6493 ,0,0,0}, - {11221,11176,11225 ,6376,6385,6387 ,0,0,0}, {11225,11178,11278 ,6387,6386,6493 ,0,0,0}, - {11222,11172,11210 ,6377,6379,6378 ,0,0,0}, {11221,11210,11176 ,6376,6378,6385 ,0,0,0}, - {11223,11279,11170 ,6380,6494,6381 ,0,0,0}, {11222,11223,11172 ,6377,6380,6379 ,0,0,0}, - {9828,11215,11279 ,6374,6373,6494 ,0,0,0}, {11170,11279,11215 ,6381,6494,6373 ,0,0,0}, - {9839,9725,9840 ,6495,6495,6496 ,0,0,0}, {9846,9845,9731 ,6497,6496,6496 ,0,0,0}, - {11234,11233,11280 ,6498,6499,6500 ,0,0,0}, {9722,9839,9836 ,6501,6495,6501 ,0,0,0}, - {11231,11277,11281 ,6502,6503,6503 ,0,0,0}, {9833,9716,9719 ,6496,6504,6501 ,0,0,0}, - {11282,11224,11229 ,6498,6505,6506 ,0,0,0}, {9658,9767,9771 ,6507,6495,6495 ,0,0,0}, - {9668,9666,9780 ,6508,6509,6504 ,0,0,0}, {11283,11222,11221 ,6510,6511,6512 ,0,0,0}, - {9827,9710,9708 ,6513,6500,6514 ,0,0,0}, {9828,9710,9827 ,6515,6500,6513 ,0,0,0}, - {9822,9825,9709 ,6516,6517,6518 ,0,0,0}, {9789,9791,9674 ,6519,6520,6497 ,0,0,0}, - {9795,9797,9680 ,6521,6522,6523 ,0,0,0}, {9819,9702,9701 ,6524,6525,6526 ,0,0,0}, - {9798,9684,9683 ,6527,6500,6498 ,0,0,0}, {9815,9696,9813 ,6528,6522,6529 ,0,0,0}, - {9813,9695,9810 ,6529,6530,6531 ,0,0,0}, {9690,9807,9692 ,6532,6533,6502 ,0,0,0}, - {9804,9690,9689 ,6534,6532,6495 ,0,0,0}, {9816,9698,9815 ,6535,6502,6528 ,0,0,0}, - {9809,9810,9692 ,6533,6531,6502 ,0,0,0}, {9819,9701,9816 ,6524,6526,6535 ,0,0,0}, - {9698,9816,9701 ,6502,6535,6526 ,0,0,0}, {9801,9686,9684 ,6503,6514,6500 ,0,0,0}, - {9689,9686,9803 ,6495,6514,6530 ,0,0,0}, {9707,9702,9821 ,6536,6525,6537 ,0,0,0}, - {9702,9819,9821 ,6525,6524,6537 ,0,0,0}, {9707,9821,9822 ,6536,6537,6516 ,0,0,0}, - {9798,9683,9797 ,6527,6498,6522 ,0,0,0}, {9795,9678,9792 ,6521,6501,6509 ,0,0,0}, - {9822,9709,9707 ,6516,6518,6536 ,0,0,0}, {9709,9825,9708 ,6518,6517,6514 ,0,0,0}, - {9792,9677,9791 ,6509,6500,6520 ,0,0,0}, {9672,9786,9674 ,6508,6509,6497 ,0,0,0}, - {9827,9708,9825 ,6513,6514,6517 ,0,0,0}, {9668,9783,9671 ,6508,6508,6495 ,0,0,0}, - {9671,9785,9672 ,6495,6530,6508 ,0,0,0}, {11284,11223,11285 ,6538,6539,6540 ,0,0,0}, - {11279,9710,9828 ,6541,6500,6515 ,0,0,0}, {9779,9665,9777 ,6495,6496,6542 ,0,0,0}, - {9666,9665,9779 ,6509,6496,6495 ,0,0,0}, {9773,9774,9660 ,6542,6504,6507 ,0,0,0}, - {11278,11224,11286 ,6543,6505,6500 ,0,0,0}, {11287,11228,11288 ,6503,6533,6500 ,0,0,0}, - {9771,9773,9659 ,6495,6542,6495 ,0,0,0}, {11289,11288,11226 ,6508,6500,6538 ,0,0,0}, - {9716,9830,9715 ,6504,6542,6501 ,0,0,0}, {9658,9715,9829 ,6507,6501,6495 ,0,0,0}, - {11235,11290,11291 ,6527,6530,6498 ,0,0,0}, {11277,11230,11292 ,6503,6527,6499 ,0,0,0}, - {9722,9836,9721 ,6501,6501,6544 ,0,0,0}, {9834,9719,9721 ,6504,6501,6544 ,0,0,0}, - {11237,11293,11294 ,6508,6530,6544 ,0,0,0}, {11295,11232,11294 ,6498,6500,6544 ,0,0,0}, - {9727,9842,9840 ,6495,6495,6496 ,0,0,0}, {11276,11236,11293 ,6523,6504,6530 ,0,0,0}, - {11241,11296,11236 ,6500,6504,6504 ,0,0,0}, {11241,11240,11297 ,6500,6522,6500 ,0,0,0}, - {9845,9842,9728 ,6496,6495,6496 ,0,0,0}, {11298,11240,11239 ,6515,6522,6504 ,0,0,0}, - {11238,11299,11239 ,6508,6500,6504 ,0,0,0}, {9848,9731,9733 ,6495,6496,6508 ,0,0,0}, - {11299,11238,11300 ,6500,6508,6498 ,0,0,0}, {9851,9733,9734 ,6504,6508,6507 ,0,0,0}, - {11301,11300,11244 ,6515,6498,6545 ,0,0,0}, {9852,9734,9737 ,6507,6507,6495 ,0,0,0}, - {11302,11301,11242 ,6498,6515,6504 ,0,0,0}, {9854,9737,9739 ,6504,6495,6495 ,0,0,0}, - {11303,11302,11243 ,6504,6498,6504 ,0,0,0}, {9739,9740,9857 ,6495,6504,6504 ,0,0,0}, - {11304,11303,11247 ,6504,6504,6498 ,0,0,0}, {9858,9857,9740 ,6504,6504,6504 ,0,0,0}, - {11304,11246,11245 ,6504,6504,6504 ,0,0,0}, {9860,9858,9743 ,6546,6504,6504 ,0,0,0}, - {11305,11245,11250 ,6508,6504,6504 ,0,0,0}, {9863,9860,9745 ,6507,6546,6504 ,0,0,0}, - {11306,11250,11249 ,6508,6504,6508 ,0,0,0}, {9864,9863,9746 ,6547,6507,6548 ,0,0,0}, - {11307,11249,11248 ,6498,6508,6498 ,0,0,0}, {9866,9864,9749 ,6546,6547,6548 ,0,0,0}, - {11308,11248,11252 ,6504,6498,6498 ,0,0,0}, {9751,9869,9749 ,6549,6547,6548 ,0,0,0}, - {11252,11309,11308 ,6498,6504,6504 ,0,0,0}, {9870,9751,9752 ,6549,6549,6550 ,0,0,0}, - {11309,11251,11310 ,6504,6504,6498 ,0,0,0}, {9752,9755,9872 ,6550,6549,6504 ,0,0,0}, - {9875,9755,9757 ,6549,6549,6545 ,0,0,0}, {9878,9876,9759 ,6549,6504,6504 ,0,0,0}, - {11310,11255,11311 ,6498,6504,6504 ,0,0,0}, {9884,9882,9764 ,6551,6504,6515 ,0,0,0}, - {11256,11312,11257 ,6504,6508,6515 ,0,0,0}, {11313,11274,11314 ,6504,6545,6515 ,0,0,0}, - {11315,11258,11261 ,6508,6552,6504 ,0,0,0}, {11271,11316,11317 ,6553,6504,6554 ,0,0,0}, - {11318,11319,11262 ,6555,6504,6515 ,0,0,0}, {11266,11267,11320 ,6504,6504,6504 ,0,0,0}, - {11271,11317,11270 ,6553,6554,6504 ,0,0,0}, {11264,11321,11322 ,6504,6504,6515 ,0,0,0}, - {11320,11321,11265 ,6504,6504,6515 ,0,0,0}, {11269,11323,11268 ,6548,6504,6504 ,0,0,0}, - {11269,11270,11324 ,6548,6504,6549 ,0,0,0}, {11318,11263,11322 ,6555,6504,6515 ,0,0,0}, - {11325,11267,11268 ,6504,6504,6504 ,0,0,0}, {11326,11273,11313 ,6504,6548,6504 ,0,0,0}, - {11316,11272,11326 ,6504,6548,6504 ,0,0,0}, {11260,11327,11261 ,6504,6544,6504 ,0,0,0}, - {11260,11319,11327 ,6504,6504,6544 ,0,0,0}, {9887,9884,9766 ,6515,6551,6554 ,0,0,0}, - {9766,11314,11275 ,6554,6515,6545 ,0,0,0}, {11259,11328,11256 ,6515,6504,6504 ,0,0,0}, - {11329,11259,11258 ,6508,6515,6552 ,0,0,0}, {9881,9878,9758 ,6504,6549,6549 ,0,0,0}, - {9761,9882,9881 ,6545,6504,6504 ,0,0,0}, {11253,11330,11311 ,6508,6498,6504 ,0,0,0}, - {11312,11330,11254 ,6508,6498,6498 ,0,0,0}, {9876,9757,9759 ,6504,6545,6504 ,0,0,0}, - {9774,9777,9662 ,6504,6542,6504 ,0,0,0}, {11331,11225,11332 ,6556,6557,6558 ,0,0,0}, - {11280,11233,11295 ,6500,6499,6498 ,0,0,0}, {9696,9815,9698 ,6522,6528,6502 ,0,0,0}, - {9695,9813,9696 ,6530,6529,6522 ,0,0,0}, {9692,9810,9695 ,6502,6531,6530 ,0,0,0}, - {9692,9807,9809 ,6502,6533,6533 ,0,0,0}, {9690,9804,9807 ,6532,6534,6533 ,0,0,0}, - {9689,9803,9804 ,6495,6530,6534 ,0,0,0}, {9686,9801,9803 ,6514,6503,6530 ,0,0,0}, - {9684,9798,9801 ,6500,6527,6503 ,0,0,0}, {9680,9797,9683 ,6523,6522,6498 ,0,0,0}, - {9678,9795,9680 ,6501,6521,6523 ,0,0,0}, {9677,9792,9678 ,6500,6509,6501 ,0,0,0}, - {9674,9791,9677 ,6497,6520,6500 ,0,0,0}, {9674,9786,9789 ,6497,6509,6519 ,0,0,0}, - {9672,9785,9786 ,6508,6530,6509 ,0,0,0}, {9671,9783,9785 ,6495,6508,6530 ,0,0,0}, - {9668,9780,9783 ,6508,6504,6508 ,0,0,0}, {9666,9779,9780 ,6509,6495,6504 ,0,0,0}, - {9662,9777,9665 ,6504,6542,6496 ,0,0,0}, {9660,9774,9662 ,6507,6504,6504 ,0,0,0}, - {9659,9773,9660 ,6495,6542,6507 ,0,0,0}, {9658,9771,9659 ,6507,6495,6495 ,0,0,0}, - {9658,9829,9767 ,6507,6495,6495 ,0,0,0}, {9715,9830,9829 ,6501,6542,6495 ,0,0,0}, - {9716,9833,9830 ,6504,6496,6542 ,0,0,0}, {9719,9834,9833 ,6501,6504,6496 ,0,0,0}, - {9721,9836,9834 ,6544,6501,6504 ,0,0,0}, {9725,9839,9722 ,6495,6495,6501 ,0,0,0}, - {9727,9840,9725 ,6495,6496,6495 ,0,0,0}, {9728,9842,9727 ,6496,6495,6495 ,0,0,0}, - {9731,9845,9728 ,6496,6496,6496 ,0,0,0}, {9731,9848,9846 ,6496,6495,6497 ,0,0,0}, - {9733,9851,9848 ,6508,6504,6495 ,0,0,0}, {9734,9852,9851 ,6507,6507,6504 ,0,0,0}, - {9737,9854,9852 ,6495,6504,6507 ,0,0,0}, {9739,9857,9854 ,6495,6504,6504 ,0,0,0}, - {9743,9858,9740 ,6504,6504,6504 ,0,0,0}, {9745,9860,9743 ,6504,6546,6504 ,0,0,0}, - {9746,9863,9745 ,6548,6507,6504 ,0,0,0}, {9749,9864,9746 ,6548,6547,6548 ,0,0,0}, - {9749,9869,9866 ,6548,6547,6546 ,0,0,0}, {9751,9870,9869 ,6549,6549,6547 ,0,0,0}, - {9752,9872,9870 ,6550,6504,6549 ,0,0,0}, {9755,9875,9872 ,6549,6549,6504 ,0,0,0}, - {9757,9876,9875 ,6545,6504,6549 ,0,0,0}, {9758,9878,9759 ,6549,6549,6504 ,0,0,0}, - {9761,9881,9758 ,6545,6504,6549 ,0,0,0}, {9764,9882,9761 ,6515,6504,6545 ,0,0,0}, - {9766,9884,9764 ,6554,6551,6515 ,0,0,0}, {9766,11275,9887 ,6554,6545,6515 ,0,0,0}, - {11314,11274,11275 ,6515,6545,6545 ,0,0,0}, {11313,11273,11274 ,6504,6548,6545 ,0,0,0}, - {11326,11272,11273 ,6504,6548,6548 ,0,0,0}, {11316,11271,11272 ,6504,6553,6548 ,0,0,0}, - {11324,11270,11317 ,6549,6504,6554 ,0,0,0}, {11323,11269,11324 ,6504,6548,6549 ,0,0,0}, - {11325,11268,11323 ,6504,6504,6504 ,0,0,0}, {11320,11267,11325 ,6504,6504,6504 ,0,0,0}, - {11320,11265,11266 ,6504,6515,6504 ,0,0,0}, {11321,11264,11265 ,6504,6504,6515 ,0,0,0}, - {11322,11263,11264 ,6515,6504,6504 ,0,0,0}, {11318,11262,11263 ,6555,6515,6504 ,0,0,0}, - {11319,11260,11262 ,6504,6504,6515 ,0,0,0}, {11315,11261,11327 ,6508,6504,6544 ,0,0,0}, - {11329,11258,11315 ,6508,6552,6508 ,0,0,0}, {11328,11259,11329 ,6504,6515,6508 ,0,0,0}, - {11312,11256,11328 ,6508,6504,6504 ,0,0,0}, {11312,11254,11257 ,6508,6498,6515 ,0,0,0}, - {11330,11253,11254 ,6498,6508,6498 ,0,0,0}, {11311,11255,11253 ,6504,6504,6508 ,0,0,0}, - {11310,11251,11255 ,6498,6504,6504 ,0,0,0}, {11309,11252,11251 ,6504,6498,6504 ,0,0,0}, - {11307,11248,11308 ,6498,6498,6504 ,0,0,0}, {11306,11249,11307 ,6508,6508,6498 ,0,0,0}, - {11305,11250,11306 ,6508,6504,6508 ,0,0,0}, {11304,11245,11305 ,6504,6504,6508 ,0,0,0}, - {11304,11247,11246 ,6504,6498,6504 ,0,0,0}, {11303,11243,11247 ,6504,6504,6498 ,0,0,0}, - {11302,11242,11243 ,6498,6504,6504 ,0,0,0}, {11301,11244,11242 ,6515,6545,6504 ,0,0,0}, - {11300,11238,11244 ,6498,6508,6545 ,0,0,0}, {11298,11239,11299 ,6515,6504,6500 ,0,0,0}, - {11297,11240,11298 ,6500,6522,6515 ,0,0,0}, {11296,11241,11297 ,6504,6500,6500 ,0,0,0}, - {11293,11236,11296 ,6530,6504,6504 ,0,0,0}, {11293,11237,11276 ,6530,6508,6523 ,0,0,0}, - {11294,11232,11237 ,6544,6500,6508 ,0,0,0}, {11295,11233,11232 ,6498,6499,6500 ,0,0,0}, - {11290,11234,11280 ,6530,6498,6500 ,0,0,0}, {11291,11230,11235 ,6498,6527,6527 ,0,0,0}, - {11290,11235,11234 ,6530,6527,6498 ,0,0,0}, {11292,11281,11277 ,6499,6503,6503 ,0,0,0}, - {11291,11292,11230 ,6498,6499,6527 ,0,0,0}, {11281,11289,11231 ,6503,6508,6502 ,0,0,0}, - {11226,11288,11227 ,6538,6500,6559 ,0,0,0}, {11231,11289,11226 ,6502,6508,6538 ,0,0,0}, - {11229,11228,11287 ,6506,6533,6503 ,0,0,0}, {11228,11227,11288 ,6533,6559,6500 ,0,0,0}, - {11286,11224,11282 ,6500,6505,6498 ,0,0,0}, {11282,11229,11287 ,6498,6506,6503 ,0,0,0}, - {11332,11278,11286 ,6558,6543,6500 ,0,0,0}, {11331,11221,11225 ,6556,6512,6557 ,0,0,0}, - {11332,11225,11278 ,6558,6557,6543 ,0,0,0}, {11283,11285,11222 ,6510,6540,6511 ,0,0,0}, - {11331,11283,11221 ,6556,6510,6512 ,0,0,0}, {11223,11284,11279 ,6539,6538,6541 ,0,0,0}, - {11222,11285,11223 ,6511,6540,6539 ,0,0,0}, {9710,11279,11284 ,6500,6541,6538 ,0,0,0}, - {11284,9712,9710 ,6560,6561,6562 ,0,0,0}, {11331,11333,11283 ,6563,6564,6565 ,0,0,0}, - {11285,11334,11335 ,6566,6567,6568 ,0,0,0}, {11282,11287,11336 ,6569,6570,6571 ,0,0,0}, - {11332,11286,11337 ,6572,6573,6574 ,0,0,0}, {11338,11339,11281 ,6575,6576,6577 ,0,0,0}, - {11340,11341,11288 ,6578,6579,6580 ,0,0,0}, {11290,11280,11342 ,6581,6582,6583 ,0,0,0}, - {11292,11291,11343 ,6584,6585,6586 ,0,0,0}, {11344,11345,11293 ,6587,6588,6589 ,0,0,0}, - {11346,11295,11294 ,6590,6591,6592 ,0,0,0}, {11298,11299,11347 ,6593,6594,6595 ,0,0,0}, - {11297,11348,11349 ,6596,6597,6598 ,0,0,0}, {11350,11351,11302 ,6599,6600,6601 ,0,0,0}, - {11352,11353,11300 ,6602,6603,6604 ,0,0,0}, {11354,11305,11355 ,6605,6606,6607 ,0,0,0}, - {11303,11304,11356 ,6608,6609,6610 ,0,0,0}, {11307,11308,11357 ,6611,6612,6613 ,0,0,0}, - {11307,11358,11306 ,6611,6614,6615 ,0,0,0}, {11311,11359,11310 ,6616,6617,6618 ,0,0,0}, - {11360,11361,11309 ,6619,6620,6621 ,0,0,0}, {11312,11362,11330 ,6622,6623,6624 ,0,0,0}, - {11363,11311,11330 ,6625,6616,6624 ,0,0,0}, {11364,11365,11329 ,6626,6627,6628 ,0,0,0}, - {11366,11328,11365 ,6629,6630,6627 ,0,0,0}, {11367,11368,11327 ,6631,6632,6633 ,0,0,0}, - {11364,11315,11368 ,6626,6634,6632 ,0,0,0}, {11318,11369,11319 ,6635,6636,6637 ,0,0,0}, - {11367,11319,11369 ,6631,6637,6636 ,0,0,0}, {11318,11322,11370 ,6635,6638,6639 ,0,0,0}, - {11370,11369,11318 ,6639,6636,6635 ,0,0,0}, {11371,11322,11321 ,6640,6638,6641 ,0,0,0}, - {11322,11371,11370 ,6638,6640,6639 ,0,0,0}, {11320,11372,11321 ,6642,6643,6641 ,0,0,0}, - {11371,11321,11372 ,6640,6641,6643 ,0,0,0}, {11320,11325,11373 ,6642,6644,6645 ,0,0,0}, - {11373,11372,11320 ,6645,6643,6642 ,0,0,0}, {11374,11325,11323 ,6646,6644,6647 ,0,0,0}, - {11325,11374,11373 ,6644,6646,6645 ,0,0,0}, {11324,11375,11323 ,6648,6649,6647 ,0,0,0}, - {11374,11323,11375 ,6646,6647,6649 ,0,0,0}, {11324,11317,11376 ,6648,6650,6651 ,0,0,0}, - {11376,11375,11324 ,6651,6649,6648 ,0,0,0}, {11377,11317,11316 ,6652,6650,6653 ,0,0,0}, - {11317,11377,11376 ,6650,6652,6651 ,0,0,0}, {11316,11378,11379 ,6653,6654,6655 ,0,0,0}, - {11377,11316,11379 ,6652,6653,6655 ,0,0,0}, {11378,11326,11380 ,6654,6656,6657 ,0,0,0}, - {11326,11378,11316 ,6656,6654,6653 ,0,0,0}, {11380,11313,11314 ,6657,6658,6659 ,0,0,0}, - {11326,11313,11380 ,6656,6658,6657 ,0,0,0}, {9766,11381,11314 ,6660,6661,6659 ,0,0,0}, - {11380,11314,11381 ,6657,6659,6661 ,0,0,0}, {9765,11381,9766 ,6660,6661,6660 ,0,0,0}, - {11315,11327,11368 ,6634,6633,6632 ,0,0,0}, {11367,11327,11319 ,6631,6633,6637 ,0,0,0}, - {11328,11329,11365 ,6630,6628,6627 ,0,0,0}, {11364,11329,11315 ,6626,6628,6634 ,0,0,0}, - {11366,11362,11312 ,6629,6623,6622 ,0,0,0}, {11366,11312,11328 ,6629,6622,6630 ,0,0,0}, - {11359,11311,11363 ,6617,6616,6625 ,0,0,0}, {11362,11363,11330 ,6623,6625,6624 ,0,0,0}, - {11310,11360,11309 ,6618,6619,6621 ,0,0,0}, {11359,11360,11310 ,6617,6619,6618 ,0,0,0}, - {11308,11361,11357 ,6612,6620,6613 ,0,0,0}, {11309,11361,11308 ,6621,6620,6612 ,0,0,0}, - {11358,11355,11306 ,6614,6607,6615 ,0,0,0}, {11307,11357,11358 ,6611,6613,6614 ,0,0,0}, - {11304,11305,11354 ,6609,6606,6605 ,0,0,0}, {11305,11306,11355 ,6606,6615,6607 ,0,0,0}, - {11350,11303,11356 ,6599,6608,6610 ,0,0,0}, {11356,11304,11354 ,6610,6609,6605 ,0,0,0}, - {11351,11301,11302 ,6600,6662,6601 ,0,0,0}, {11350,11302,11303 ,6599,6601,6608 ,0,0,0}, - {11300,11301,11352 ,6604,6662,6602 ,0,0,0}, {11351,11352,11301 ,6600,6602,6662 ,0,0,0}, - {11299,11353,11347 ,6594,6603,6595 ,0,0,0}, {11300,11353,11299 ,6604,6603,6594 ,0,0,0}, - {11297,11298,11348 ,6596,6593,6597 ,0,0,0}, {11298,11347,11348 ,6593,6595,6597 ,0,0,0}, - {11344,11296,11349 ,6587,6663,6598 ,0,0,0}, {11296,11297,11349 ,6663,6596,6598 ,0,0,0}, - {11345,11294,11293 ,6588,6592,6589 ,0,0,0}, {11344,11293,11296 ,6587,6589,6663 ,0,0,0}, - {11346,11382,11295 ,6590,6664,6591 ,0,0,0}, {11345,11346,11294 ,6588,6590,6592 ,0,0,0}, - {11342,11280,11382 ,6583,6582,6664 ,0,0,0}, {11295,11382,11280 ,6591,6664,6582 ,0,0,0}, - {11291,11290,11383 ,6585,6581,6665 ,0,0,0}, {11290,11342,11383 ,6581,6583,6665 ,0,0,0}, - {11338,11292,11343 ,6575,6584,6586 ,0,0,0}, {11343,11291,11383 ,6586,6585,6665 ,0,0,0}, - {11339,11289,11281 ,6576,6666,6577 ,0,0,0}, {11338,11281,11292 ,6575,6577,6584 ,0,0,0}, - {11288,11289,11340 ,6580,6666,6578 ,0,0,0}, {11339,11340,11289 ,6576,6578,6666 ,0,0,0}, - {11287,11341,11336 ,6570,6579,6571 ,0,0,0}, {11288,11341,11287 ,6580,6579,6570 ,0,0,0}, - {11286,11282,11384 ,6573,6569,6667 ,0,0,0}, {11282,11336,11384 ,6569,6571,6667 ,0,0,0}, - {11333,11332,11337 ,6564,6572,6574 ,0,0,0}, {11337,11286,11384 ,6574,6573,6667 ,0,0,0}, - {11333,11334,11283 ,6564,6567,6565 ,0,0,0}, {11333,11331,11332 ,6564,6563,6572 ,0,0,0}, - {11335,11385,11285 ,6568,6668,6566 ,0,0,0}, {11283,11334,11285 ,6565,6567,6566 ,0,0,0}, - {9712,11284,11385 ,6561,6560,6668 ,0,0,0}, {11285,11385,11284 ,6566,6668,6560 ,0,0,0}, - {9676,9679,9583 ,6669,6670,6671 ,0,0,0}, {11338,11343,11386 ,6672,6671,6671 ,0,0,0}, - {9589,9685,9598 ,6673,6674,6671 ,0,0,0}, {9679,9681,9592 ,6670,6669,6675 ,0,0,0}, - {9691,9621,9593 ,6670,6676,6677 ,0,0,0}, {11387,11388,11356 ,6324,6298,6672 ,0,0,0}, - {11389,11348,11347 ,6671,6672,6671 ,0,0,0}, {11390,11391,11352 ,6672,6671,6671 ,0,0,0}, - {9704,9615,9611 ,6678,6671,6679 ,0,0,0}, {11349,11348,11392 ,6671,6672,6680 ,0,0,0}, - {9617,9711,9619 ,6679,6671,6671 ,0,0,0}, {11393,11394,11346 ,6672,6672,6672 ,0,0,0}, - {11395,11396,11333 ,6672,6681,6672 ,0,0,0}, {11385,11335,11397 ,6671,6681,6672 ,0,0,0}, - {11398,11340,11339 ,6672,6672,6681 ,0,0,0}, {11336,11399,11400 ,6672,6672,6672 ,0,0,0}, - {11401,11384,11400 ,6672,6671,6672 ,0,0,0}, {11338,11402,11339 ,6672,6671,6681 ,0,0,0}, - {11341,11398,11399 ,6672,6672,6672 ,0,0,0}, {11395,11337,11401 ,6672,6672,6672 ,0,0,0}, - {11403,11404,11383 ,6671,6672,6672 ,0,0,0}, {11335,11334,11405 ,6681,6671,6671 ,0,0,0}, - {11342,11406,11403 ,6671,6681,6671 ,0,0,0}, {9712,11385,9619 ,6671,6671,6671 ,0,0,0}, - {11382,11394,11406 ,6672,6672,6681 ,0,0,0}, {9615,9705,9616 ,6671,6682,6672 ,0,0,0}, - {9617,9616,9706 ,6679,6672,6298 ,0,0,0}, {11349,11407,11344 ,6671,6671,6672 ,0,0,0}, - {11407,11393,11345 ,6671,6672,6672 ,0,0,0}, {9699,9700,9607 ,6672,6681,6670 ,0,0,0}, - {9611,9613,9703 ,6679,6669,6669 ,0,0,0}, {11391,11408,11353 ,6671,6672,6671 ,0,0,0}, - {9697,9699,9609 ,6671,6672,6681 ,0,0,0}, {9604,9621,9693 ,6669,6676,6298 ,0,0,0}, - {9604,9694,9697 ,6669,6669,6671 ,0,0,0}, {11409,11350,11388 ,6672,6671,6298 ,0,0,0}, - {11409,11390,11351 ,6672,6672,6672 ,0,0,0}, {9687,9595,9598 ,6683,6669,6671 ,0,0,0}, - {9593,9595,9688 ,6677,6669,6684 ,0,0,0}, {11358,11410,11355 ,6671,6685,6686 ,0,0,0}, - {11387,11354,11355 ,6324,6687,6686 ,0,0,0}, {11358,11357,11411 ,6671,6688,6688 ,0,0,0}, - {9681,9682,9588 ,6669,6689,6684 ,0,0,0}, {11412,11413,11360 ,6672,6690,6671 ,0,0,0}, - {11413,11414,11361 ,6690,6686,6690 ,0,0,0}, {11415,11412,11359 ,6691,6672,6691 ,0,0,0}, - {9583,9586,9675 ,6671,6692,6672 ,0,0,0}, {9585,9673,9586 ,6693,6673,6692 ,0,0,0}, - {9578,9670,9585 ,6672,6689,6693 ,0,0,0}, {11363,11416,11415 ,6686,6690,6691 ,0,0,0}, - {9669,9578,9581 ,6694,6672,6695 ,0,0,0}, {11362,11417,11416 ,6690,6691,6690 ,0,0,0}, - {9581,9580,9667 ,6695,6696,6697 ,0,0,0}, {11417,11366,11365 ,6691,6672,6688 ,0,0,0}, - {9575,9663,9664 ,6698,6699,6700 ,0,0,0}, {11418,11419,11364 ,6672,6688,6688 ,0,0,0}, - {11368,11367,11420 ,6688,6691,6701 ,0,0,0}, {11421,11369,11370 ,6686,6672,6671 ,0,0,0}, - {9661,9663,9523 ,6676,6699,6702 ,0,0,0}, {11371,11422,11423 ,6672,6671,6671 ,0,0,0}, - {9661,9522,9657 ,6676,6687,6703 ,0,0,0}, {11424,11372,11373 ,6686,6704,6672 ,0,0,0}, - {9522,9570,9713 ,6687,6705,6676 ,0,0,0}, {11375,11425,11374 ,6686,6706,6672 ,0,0,0}, - {9656,9714,9570 ,6698,6699,6705 ,0,0,0}, {9718,9561,9560 ,6697,6707,6708 ,0,0,0}, - {9717,9656,9561 ,6709,6698,6707 ,0,0,0}, {11426,11378,11380 ,6690,6671,6701 ,0,0,0}, - {9560,9654,9720 ,6708,6672,6694 ,0,0,0}, {11381,9548,11427 ,6690,6690,6686 ,0,0,0}, - {9724,9723,9652 ,6673,6689,6710 ,0,0,0}, {9546,9548,9763 ,6711,6690,6690 ,0,0,0}, - {9726,9724,9650 ,6686,6673,6692 ,0,0,0}, {9760,9544,9762 ,6712,6713,6685 ,0,0,0}, - {9645,9646,9732 ,6714,6684,6669 ,0,0,0}, {9756,9541,9543 ,6715,6716,6717 ,0,0,0}, - {9641,9738,9640 ,6718,6719,6691 ,0,0,0}, {9744,9742,9529 ,6298,6670,6676 ,0,0,0}, - {9750,9534,9536 ,6686,6704,6720 ,0,0,0}, {9536,9538,9753 ,6720,6669,6715 ,0,0,0}, - {9744,9531,9747 ,6298,6718,6669 ,0,0,0}, {9531,9534,9748 ,6718,6704,6691 ,0,0,0}, - {11419,11365,11364 ,6688,6688,6688 ,0,0,0}, {9639,9742,9741 ,6676,6670,6684 ,0,0,0}, - {9756,9754,9541 ,6715,6669,6716 ,0,0,0}, {9543,9544,9760 ,6717,6713,6712 ,0,0,0}, - {9543,9760,9756 ,6717,6712,6715 ,0,0,0}, {9644,9735,9646 ,6673,6721,6684 ,0,0,0}, - {9644,9640,9736 ,6673,6691,6670 ,0,0,0}, {9546,9763,9762 ,6711,6690,6685 ,0,0,0}, - {9546,9762,9544 ,6711,6685,6713 ,0,0,0}, {9649,9729,9726 ,6691,6669,6686 ,0,0,0}, - {9730,9649,9645 ,6720,6691,6714 ,0,0,0}, {9765,9763,9548 ,6671,6690,6690 ,0,0,0}, - {11379,11428,11429 ,6686,6722,6688 ,0,0,0}, {11376,11377,11430 ,6691,6723,6706 ,0,0,0}, - {9754,9753,9538 ,6669,6715,6669 ,0,0,0}, {9754,9538,9541 ,6669,6669,6716 ,0,0,0}, - {9753,9750,9536 ,6715,6686,6720 ,0,0,0}, {9750,9748,9534 ,6686,6691,6704 ,0,0,0}, - {9748,9747,9531 ,6691,6669,6718 ,0,0,0}, {9744,9529,9531 ,6298,6676,6718 ,0,0,0}, - {9742,9639,9529 ,6670,6676,6676 ,0,0,0}, {9741,9738,9641 ,6684,6719,6718 ,0,0,0}, - {9741,9641,9639 ,6684,6718,6676 ,0,0,0}, {9738,9736,9640 ,6719,6670,6691 ,0,0,0}, - {9736,9735,9644 ,6670,6721,6673 ,0,0,0}, {9735,9732,9646 ,6721,6669,6684 ,0,0,0}, - {9732,9730,9645 ,6669,6720,6714 ,0,0,0}, {9730,9729,9649 ,6720,6669,6691 ,0,0,0}, - {9726,9650,9649 ,6686,6692,6691 ,0,0,0}, {9724,9652,9650 ,6673,6710,6692 ,0,0,0}, - {9723,9720,9654 ,6689,6694,6672 ,0,0,0}, {9723,9654,9652 ,6689,6672,6710 ,0,0,0}, - {9720,9718,9560 ,6694,6697,6708 ,0,0,0}, {9718,9717,9561 ,6697,6709,6707 ,0,0,0}, - {9717,9714,9656 ,6709,6699,6698 ,0,0,0}, {9714,9713,9570 ,6699,6676,6705 ,0,0,0}, - {9713,9657,9522 ,6676,6703,6687 ,0,0,0}, {9661,9523,9522 ,6676,6702,6687 ,0,0,0}, - {9663,9575,9523 ,6699,6698,6702 ,0,0,0}, {9664,9667,9580 ,6700,6697,6696 ,0,0,0}, - {9664,9580,9575 ,6700,6696,6698 ,0,0,0}, {9667,9669,9581 ,6697,6694,6695 ,0,0,0}, - {9669,9670,9578 ,6694,6689,6672 ,0,0,0}, {9670,9673,9585 ,6689,6673,6693 ,0,0,0}, - {9673,9675,9586 ,6673,6672,6692 ,0,0,0}, {9675,9676,9583 ,6672,6669,6671 ,0,0,0}, - {9679,9592,9583 ,6670,6675,6671 ,0,0,0}, {9681,9588,9592 ,6669,6684,6675 ,0,0,0}, - {9682,9685,9589 ,6689,6674,6673 ,0,0,0}, {9682,9589,9588 ,6689,6673,6684 ,0,0,0}, - {9685,9687,9598 ,6674,6683,6671 ,0,0,0}, {9687,9688,9595 ,6683,6684,6669 ,0,0,0}, - {9688,9691,9593 ,6684,6670,6677 ,0,0,0}, {9691,9693,9621 ,6670,6298,6676 ,0,0,0}, - {9693,9694,9604 ,6298,6669,6669 ,0,0,0}, {9697,9609,9604 ,6671,6681,6669 ,0,0,0}, - {9699,9607,9609 ,6672,6670,6681 ,0,0,0}, {9700,9703,9613 ,6681,6669,6669 ,0,0,0}, - {9700,9613,9607 ,6681,6669,6670 ,0,0,0}, {9703,9704,9611 ,6669,6678,6679 ,0,0,0}, - {9704,9705,9615 ,6678,6682,6671 ,0,0,0}, {9705,9706,9616 ,6682,6298,6672 ,0,0,0}, - {9706,9711,9617 ,6298,6671,6679 ,0,0,0}, {9711,9712,9619 ,6671,6671,6671 ,0,0,0}, - {11385,11397,9619 ,6671,6672,6671 ,0,0,0}, {11335,11405,11397 ,6681,6671,6672 ,0,0,0}, - {11334,11333,11396 ,6671,6672,6681 ,0,0,0}, {11334,11396,11405 ,6671,6681,6671 ,0,0,0}, - {11333,11337,11395 ,6672,6672,6672 ,0,0,0}, {11337,11384,11401 ,6672,6671,6672 ,0,0,0}, - {11384,11336,11400 ,6671,6672,6672 ,0,0,0}, {11336,11341,11399 ,6672,6672,6672 ,0,0,0}, - {11341,11340,11398 ,6672,6672,6672 ,0,0,0}, {11339,11402,11398 ,6681,6671,6672 ,0,0,0}, - {11338,11386,11402 ,6672,6671,6671 ,0,0,0}, {11343,11383,11404 ,6671,6672,6672 ,0,0,0}, - {11343,11404,11386 ,6671,6672,6671 ,0,0,0}, {11383,11342,11403 ,6672,6671,6671 ,0,0,0}, - {11342,11382,11406 ,6671,6672,6681 ,0,0,0}, {11382,11346,11394 ,6672,6672,6672 ,0,0,0}, - {11346,11345,11393 ,6672,6672,6672 ,0,0,0}, {11345,11344,11407 ,6672,6672,6671 ,0,0,0}, - {11349,11392,11407 ,6671,6680,6671 ,0,0,0}, {11348,11389,11392 ,6672,6671,6680 ,0,0,0}, - {11347,11353,11408 ,6671,6671,6672 ,0,0,0}, {11347,11408,11389 ,6671,6672,6671 ,0,0,0}, - {11353,11352,11391 ,6671,6671,6671 ,0,0,0}, {11352,11351,11390 ,6671,6672,6672 ,0,0,0}, - {11351,11350,11409 ,6672,6671,6672 ,0,0,0}, {11350,11356,11388 ,6671,6672,6298 ,0,0,0}, - {11356,11354,11387 ,6672,6687,6324 ,0,0,0}, {11355,11410,11387 ,6686,6685,6324 ,0,0,0}, - {11358,11411,11410 ,6671,6688,6685 ,0,0,0}, {11357,11361,11414 ,6688,6690,6686 ,0,0,0}, - {11357,11414,11411 ,6688,6686,6688 ,0,0,0}, {11361,11360,11413 ,6690,6671,6690 ,0,0,0}, - {11360,11359,11412 ,6671,6691,6672 ,0,0,0}, {11359,11363,11415 ,6691,6686,6691 ,0,0,0}, - {11363,11362,11416 ,6686,6690,6690 ,0,0,0}, {11362,11366,11417 ,6690,6672,6691 ,0,0,0}, - {11365,11419,11417 ,6688,6688,6691 ,0,0,0}, {11368,11418,11364 ,6688,6672,6688 ,0,0,0}, - {11367,11431,11420 ,6691,6691,6701 ,0,0,0}, {11368,11420,11418 ,6688,6701,6672 ,0,0,0}, - {11421,11431,11369 ,6686,6691,6672 ,0,0,0}, {11367,11369,11431 ,6691,6672,6691 ,0,0,0}, - {11421,11370,11423 ,6686,6671,6671 ,0,0,0}, {11422,11371,11372 ,6671,6672,6704 ,0,0,0}, - {11423,11370,11371 ,6671,6671,6672 ,0,0,0}, {11424,11373,11374 ,6686,6672,6672 ,0,0,0}, - {11424,11422,11372 ,6686,6671,6704 ,0,0,0}, {11432,11425,11375 ,6688,6706,6686 ,0,0,0}, - {11425,11424,11374 ,6706,6686,6672 ,0,0,0}, {11432,11376,11430 ,6688,6691,6706 ,0,0,0}, - {11376,11432,11375 ,6691,6688,6686 ,0,0,0}, {11377,11429,11430 ,6723,6688,6706 ,0,0,0}, - {11379,11378,11428 ,6686,6671,6722 ,0,0,0}, {11377,11379,11429 ,6723,6686,6688 ,0,0,0}, - {11426,11380,11427 ,6690,6701,6686 ,0,0,0}, {11428,11378,11426 ,6722,6671,6690 ,0,0,0}, - {9548,11381,9765 ,6690,6690,6671 ,0,0,0}, {11427,11380,11381 ,6686,6701,6690 ,0,0,0}, - {11427,9125,10929 ,6724,6725,6726 ,0,0,0}, {10891,11428,11426 ,6727,6728,6729 ,0,0,0}, - {11430,10893,11432 ,6730,6731,6732 ,0,0,0}, {11034,11429,11032 ,6733,6734,6735 ,0,0,0}, - {11433,11043,11434 ,6736,6737,6738 ,0,0,0}, {10918,11433,11435 ,6739,6736,6736 ,0,0,0}, - {10959,11436,11437 ,6740,6741,6742 ,0,0,0}, {10958,11438,10917 ,6743,6744,6745 ,0,0,0}, - {11041,11439,11440 ,6746,6747,6748 ,0,0,0}, {11088,11441,11046 ,6749,6750,6751 ,0,0,0}, - {11442,11443,11086 ,6752,6753,6754 ,0,0,0}, {11439,10974,11087 ,6747,6755,6756 ,0,0,0}, - {11409,11010,11001 ,6757,6758,6759 ,0,0,0}, {9412,11010,11442 ,6760,6758,6752 ,0,0,0}, - {11391,11003,11408 ,6761,6762,6763 ,0,0,0}, {11002,11391,11390 ,6764,6761,6765 ,0,0,0}, - {11073,11008,11392 ,6766,6767,6768 ,0,0,0}, {11073,11389,11072 ,6766,6769,6770 ,0,0,0}, - {11407,11000,11393 ,6771,6772,6773 ,0,0,0}, {11000,11407,11008 ,6772,6771,6767 ,0,0,0}, - {11394,11393,10977 ,6774,6773,6775 ,0,0,0}, {11000,10977,11393 ,6772,6775,6773 ,0,0,0}, - {10975,11406,10976 ,6776,6777,6778 ,0,0,0}, {11394,10977,10976 ,6774,6775,6778 ,0,0,0}, - {10981,11404,10999 ,6779,6780,6781 ,0,0,0}, {11403,10975,10999 ,6782,6776,6781 ,0,0,0}, - {10980,11402,11386 ,6783,6784,6785 ,0,0,0}, {11399,11398,11444 ,6786,6787,6788 ,0,0,0}, - {11444,10998,11445 ,6788,6789,6788 ,0,0,0}, {11398,11402,10998 ,6787,6784,6789 ,0,0,0}, - {11446,10979,10952 ,6790,6791,6792 ,0,0,0}, {10979,11446,11445 ,6791,6790,6788 ,0,0,0}, - {10951,11447,10952 ,6793,6794,6792 ,0,0,0}, {11446,10952,11447 ,6790,6792,6794 ,0,0,0}, - {10951,10984,11448 ,6793,6795,6796 ,0,0,0}, {11448,11447,10951 ,6796,6794,6793 ,0,0,0}, - {11449,10984,10990 ,6797,6795,6798 ,0,0,0}, {10984,11449,11448 ,6795,6797,6796 ,0,0,0}, - {10994,11450,10990 ,6799,6800,6798 ,0,0,0}, {11449,10990,11450 ,6797,6798,6800 ,0,0,0}, - {10994,10987,11451 ,6799,6801,6802 ,0,0,0}, {11451,11450,10994 ,6802,6800,6799 ,0,0,0}, - {11452,10987,10996 ,6803,6801,6804 ,0,0,0}, {10987,11452,11451 ,6801,6803,6802 ,0,0,0}, - {9226,9629,10996 ,6805,6806,6804 ,0,0,0}, {11452,10996,9629 ,6803,6804,6806 ,0,0,0}, - {11396,11453,11454 ,6807,6808,6809 ,0,0,0}, {11398,10998,11444 ,6787,6789,6788 ,0,0,0}, - {11445,10998,10979 ,6788,6789,6791 ,0,0,0}, {10980,10998,11402 ,6783,6789,6784 ,0,0,0}, - {10981,10980,11386 ,6779,6783,6785 ,0,0,0}, {11386,11404,10981 ,6785,6780,6779 ,0,0,0}, - {10999,11404,11403 ,6781,6780,6782 ,0,0,0}, {10975,11403,11406 ,6776,6782,6777 ,0,0,0}, - {11406,11394,10976 ,6777,6774,6778 ,0,0,0}, {11444,11455,11399 ,6788,6810,6786 ,0,0,0}, - {11453,11396,11395 ,6808,6807,6811 ,0,0,0}, {11455,11400,11399 ,6810,6812,6786 ,0,0,0}, - {11454,11456,11405 ,6809,6813,6814 ,0,0,0}, {11405,11396,11454 ,6814,6807,6809 ,0,0,0}, - {11405,11457,11397 ,6814,6815,6816 ,0,0,0}, {11457,11405,11456 ,6815,6814,6813 ,0,0,0}, - {9619,11397,9620 ,6817,6816,6818 ,0,0,0}, {11457,9620,11397 ,6815,6818,6816 ,0,0,0}, - {11395,11458,11453 ,6811,6819,6808 ,0,0,0}, {11008,11407,11392 ,6767,6771,6768 ,0,0,0}, - {11458,11395,11401 ,6819,6811,6820 ,0,0,0}, {11459,11458,11401 ,6821,6819,6820 ,0,0,0}, - {11400,11455,11459 ,6812,6810,6821 ,0,0,0}, {11400,11459,11401 ,6812,6821,6820 ,0,0,0}, - {11392,11389,11073 ,6768,6769,6766 ,0,0,0}, {11039,11440,11441 ,6822,6748,6750 ,0,0,0}, - {11072,11408,11003 ,6770,6763,6762 ,0,0,0}, {11408,11072,11389 ,6763,6770,6769 ,0,0,0}, - {11391,11002,11003 ,6761,6764,6762 ,0,0,0}, {11001,11002,11390 ,6759,6764,6765 ,0,0,0}, - {11388,11010,11409 ,6823,6758,6757 ,0,0,0}, {11390,11409,11001 ,6765,6757,6759 ,0,0,0}, - {9412,11442,11086 ,6760,6752,6754 ,0,0,0}, {11388,11442,11010 ,6823,6752,6758 ,0,0,0}, - {11439,11041,10974 ,6747,6746,6755 ,0,0,0}, {11443,11439,11087 ,6753,6747,6756 ,0,0,0}, - {11441,11088,11039 ,6750,6749,6822 ,0,0,0}, {11460,11038,11461 ,6824,6825,6826 ,0,0,0}, - {11441,11461,11046 ,6750,6826,6751 ,0,0,0}, {11460,11436,10968 ,6824,6741,6827 ,0,0,0}, - {11038,11460,10968 ,6825,6824,6827 ,0,0,0}, {11437,11438,10958 ,6742,6744,6743 ,0,0,0}, - {10968,11436,10950 ,6827,6741,6828 ,0,0,0}, {11431,11421,11462 ,6829,6830,6831 ,0,0,0}, - {11422,11424,11435 ,6832,6833,6736 ,0,0,0}, {11438,11434,11037 ,6744,6738,6834 ,0,0,0}, - {11426,10929,10891 ,6729,6726,6727 ,0,0,0}, {11430,11429,11034 ,6730,6734,6733 ,0,0,0}, - {10894,10918,11425 ,6835,6739,6836 ,0,0,0}, {11052,11433,10918 ,6837,6736,6739 ,0,0,0}, - {11432,10894,11425 ,6732,6835,6836 ,0,0,0}, {11034,10893,11430 ,6733,6731,6730 ,0,0,0}, - {11432,10893,10894 ,6732,6731,6835 ,0,0,0}, {11428,11032,11429 ,6728,6735,6734 ,0,0,0}, - {11032,11428,10891 ,6735,6728,6727 ,0,0,0}, {10929,11426,11427 ,6726,6729,6724 ,0,0,0}, - {9125,11427,9548 ,6725,6724,6838 ,0,0,0}, {11410,11463,11387 ,6839,6840,6841 ,0,0,0}, - {11388,11387,11463 ,6823,6841,6840 ,0,0,0}, {11463,11410,11464 ,6840,6839,6842 ,0,0,0}, - {11388,11463,11442 ,6823,6840,6752 ,0,0,0}, {11465,11464,11411 ,6843,6842,6844 ,0,0,0}, - {11087,11086,11443 ,6756,6754,6753 ,0,0,0}, {11413,11465,11414 ,6845,6843,6846 ,0,0,0}, - {11413,11466,11465 ,6845,6847,6843 ,0,0,0}, {11467,11466,11412 ,6848,6847,6849 ,0,0,0}, - {11039,11041,11440 ,6822,6746,6748 ,0,0,0}, {11416,11467,11415 ,6850,6848,6851 ,0,0,0}, - {11416,11468,11467 ,6850,6852,6848 ,0,0,0}, {11469,11468,11417 ,6853,6852,6854 ,0,0,0}, - {11038,11046,11461 ,6825,6751,6826 ,0,0,0}, {11419,11470,11469 ,6855,6856,6853 ,0,0,0}, - {11418,11470,11419 ,6857,6856,6855 ,0,0,0}, {11471,11470,11420 ,6858,6856,6859 ,0,0,0}, - {10959,10950,11436 ,6740,6828,6741 ,0,0,0}, {11462,11471,11431 ,6831,6858,6829 ,0,0,0}, - {10958,10959,11437 ,6743,6740,6742 ,0,0,0}, {11472,11462,11423 ,6860,6831,6861 ,0,0,0}, - {11037,10917,11438 ,6834,6745,6744 ,0,0,0}, {11435,11472,11422 ,6736,6860,6832 ,0,0,0}, - {11043,11037,11434 ,6737,6834,6738 ,0,0,0}, {11425,10918,11435 ,6836,6739,6736 ,0,0,0}, - {11043,11433,11052 ,6737,6736,6837 ,0,0,0}, {11425,11435,11424 ,6836,6736,6833 ,0,0,0}, - {11423,11422,11472 ,6861,6832,6860 ,0,0,0}, {11421,11423,11462 ,6830,6861,6831 ,0,0,0}, - {11420,11431,11471 ,6859,6829,6858 ,0,0,0}, {11418,11420,11470 ,6857,6859,6856 ,0,0,0}, - {11417,11419,11469 ,6854,6855,6853 ,0,0,0}, {11416,11417,11468 ,6850,6854,6852 ,0,0,0}, - {11412,11415,11467 ,6849,6851,6848 ,0,0,0}, {11413,11412,11466 ,6845,6849,6847 ,0,0,0}, - {11411,11414,11465 ,6844,6846,6843 ,0,0,0}, {11410,11411,11464 ,6839,6844,6842 ,0,0,0}, - {11473,9420,9421 ,6862,6863,6864 ,0,0,0}, {11125,11114,10352 ,6865,6866,6867 ,0,0,0}, - {11474,11122,11121 ,6868,6869,6870 ,0,0,0}, {11124,10345,11111 ,6871,6872,6873 ,0,0,0}, - {10330,11104,11108 ,6874,6875,6876 ,0,0,0}, {10342,11127,11128 ,6877,6878,6879 ,0,0,0}, - {11138,10337,10336 ,6880,6881,6882 ,0,0,0}, {11135,10329,10332 ,6883,6884,6885 ,0,0,0}, - {11475,11148,11146 ,6886,6887,6888 ,0,0,0}, {11476,11142,10339 ,6889,6890,5525 ,0,0,0}, - {11159,11156,10415 ,6891,6892,6893 ,0,0,0}, {11152,11477,11478 ,6894,6895,6896 ,0,0,0}, - {11166,10404,11220 ,6897,6898,6899 ,0,0,0}, {11162,10410,11165 ,6900,6901,6902 ,0,0,0}, - {10451,11171,10449 ,6903,6904,6905 ,0,0,0}, {11214,11167,10447 ,6906,6907,6908 ,0,0,0}, - {11203,11479,11205 ,6909,6910,6911 ,0,0,0}, {11211,10452,11177 ,6912,6913,6914 ,0,0,0}, - {11480,11192,11184 ,6915,6916,6917 ,0,0,0}, {11202,11481,11189 ,6918,6919,6920 ,0,0,0}, - {11482,11199,11200 ,6921,6922,6923 ,0,0,0}, {10508,10511,11193 ,6924,6925,6926 ,0,0,0}, - {10508,11196,10509 ,6924,6927,5712 ,0,0,0}, {10496,10495,11186 ,6928,6929,6930 ,0,0,0}, - {10496,11201,10511 ,6928,6931,6925 ,0,0,0}, {11206,11208,10495 ,6932,6933,6929 ,0,0,0}, - {10495,11208,11186 ,6929,6933,6930 ,0,0,0}, {11206,10495,10540 ,6932,6929,6934 ,0,0,0}, - {10540,10542,11180 ,6934,6935,6936 ,0,0,0}, {11180,11206,10540 ,6936,6932,6934 ,0,0,0}, - {11212,10542,10544 ,6937,6935,6938 ,0,0,0}, {10542,11212,11180 ,6935,6937,6936 ,0,0,0}, - {11212,10544,11173 ,6937,6938,6939 ,0,0,0}, {10545,11174,11173 ,6940,6941,6939 ,0,0,0}, - {11173,10544,10545 ,6939,6938,6940 ,0,0,0}, {11174,10547,11218 ,6941,6942,6943 ,0,0,0}, - {10547,11174,10545 ,6942,6941,6940 ,0,0,0}, {11168,11218,10548 ,6944,6943,6945 ,0,0,0}, - {10547,10548,11218 ,6942,6945,6943 ,0,0,0}, {10548,11483,11163 ,6945,6946,6947 ,0,0,0}, - {11163,11168,10548 ,6947,6944,6945 ,0,0,0}, {11160,11483,11484 ,6948,6946,6949 ,0,0,0}, - {11483,11160,11163 ,6946,6948,6947 ,0,0,0}, {11485,11157,11484 ,6950,6951,6949 ,0,0,0}, - {11160,11484,11157 ,6948,6949,6951 ,0,0,0}, {11485,9518,9516 ,6950,126,3135 ,0,0,0}, - {9516,11157,11485 ,3135,6951,6950 ,0,0,0}, {10511,11201,11193 ,6925,6931,6926 ,0,0,0}, - {10496,11186,11201 ,6928,6930,6931 ,0,0,0}, {11196,11189,10509 ,6927,6920,5712 ,0,0,0}, - {10508,11193,11196 ,6924,6926,6927 ,0,0,0}, {11481,11202,11199 ,6919,6918,6922 ,0,0,0}, - {11481,10509,11189 ,6919,5712,6920 ,0,0,0}, {11482,11200,11192 ,6921,6923,6916 ,0,0,0}, - {11482,11481,11199 ,6921,6919,6922 ,0,0,0}, {11479,11480,11184 ,6910,6915,6917 ,0,0,0}, - {11480,11482,11192 ,6915,6921,6916 ,0,0,0}, {10454,11479,11203 ,6952,6910,6909 ,0,0,0}, - {11205,11479,11184 ,6911,6910,6917 ,0,0,0}, {10454,11177,10452 ,6952,6914,6913 ,0,0,0}, - {11177,10454,11203 ,6914,6952,6909 ,0,0,0}, {11209,10451,10452 ,6953,6903,6913 ,0,0,0}, - {11209,10452,11211 ,6953,6913,6912 ,0,0,0}, {11171,11216,10449 ,6904,6954,6905 ,0,0,0}, - {11209,11171,10451 ,6953,6904,6903 ,0,0,0}, {11214,10447,11216 ,6906,6908,6954 ,0,0,0}, - {10449,11216,10447 ,6905,6954,6908 ,0,0,0}, {10406,11167,11220 ,6955,6907,6899 ,0,0,0}, - {10447,11167,10406 ,6908,6907,6955 ,0,0,0}, {10416,10404,11166 ,6956,6898,6897 ,0,0,0}, - {10404,10406,11220 ,6898,6955,6899 ,0,0,0}, {10416,11165,10410 ,6956,6902,6901 ,0,0,0}, - {11165,10416,11166 ,6902,6956,6897 ,0,0,0}, {11159,10415,10410 ,6891,6893,6901 ,0,0,0}, - {11159,10410,11162 ,6891,6901,6900 ,0,0,0}, {11156,11154,11478 ,6892,6957,6896 ,0,0,0}, - {11156,11478,10415 ,6892,6896,6893 ,0,0,0}, {11152,11150,11477 ,6894,6958,6895 ,0,0,0}, - {11154,11152,11478 ,6957,6894,6896 ,0,0,0}, {11148,11475,11150 ,6887,6886,6958 ,0,0,0}, - {11477,11150,11475 ,6895,6958,6886 ,0,0,0}, {11476,11146,11144 ,6889,6888,6959 ,0,0,0}, - {11475,11146,11476 ,6886,6888,6889 ,0,0,0}, {10339,11142,11140 ,5525,6890,6960 ,0,0,0}, - {11476,11144,11142 ,6889,6959,6890 ,0,0,0}, {11140,11138,10336 ,6960,6880,6882 ,0,0,0}, - {10336,10339,11140 ,6882,5525,6960 ,0,0,0}, {11105,10332,10337 ,6961,6885,6881 ,0,0,0}, - {11105,10337,11138 ,6961,6881,6880 ,0,0,0}, {11135,11131,10329 ,6883,6962,6884 ,0,0,0}, - {11105,11135,10332 ,6961,6883,6885 ,0,0,0}, {10330,10329,11104 ,6874,6884,6875 ,0,0,0}, - {11131,11104,10329 ,6962,6875,6884 ,0,0,0}, {10335,11108,11127 ,6963,6876,6878 ,0,0,0}, - {10330,11108,10335 ,6874,6876,6963 ,0,0,0}, {10344,10342,11128 ,6964,6877,6879 ,0,0,0}, - {10342,10335,11127 ,6877,6963,6878 ,0,0,0}, {10344,11111,10345 ,6964,6873,6872 ,0,0,0}, - {11111,10344,11128 ,6873,6964,6879 ,0,0,0}, {11124,11125,10352 ,6871,6865,6867 ,0,0,0}, - {11124,10352,10345 ,6871,6867,6872 ,0,0,0}, {11114,11122,11486 ,6866,6869,6965 ,0,0,0}, - {11114,11486,10352 ,6866,6965,6867 ,0,0,0}, {11474,11121,11473 ,6868,6870,6862 ,0,0,0}, - {11486,11122,11474 ,6965,6869,6868 ,0,0,0}, {9420,11473,11121 ,6863,6862,6870 ,0,0,0}, - {9390,11487,11048 ,6966,6967,6968 ,0,0,0}, {11488,11092,11489 ,6969,6970,6971 ,0,0,0}, - {10960,10961,11490 ,6972,6973,6974 ,0,0,0}, {11094,11491,11095 ,6975,6976,6977 ,0,0,0}, - {11492,11493,11036 ,6978,6979,6980 ,0,0,0}, {11494,11091,11495 ,6981,6982,6983 ,0,0,0}, - {11093,11047,11496 ,6984,6985,6986 ,0,0,0}, {11098,11497,11498 ,6987,6988,6989 ,0,0,0}, - {11089,11499,11090 ,6990,6991,6992 ,0,0,0}, {11099,11500,10972 ,6993,6994,6995 ,0,0,0}, - {11501,11099,11040 ,6996,6993,6997 ,0,0,0}, {10973,11502,11100 ,6998,6999,7000 ,0,0,0}, - {11503,10973,10972 ,7001,6998,6995 ,0,0,0}, {11101,11100,11504 ,7002,7000,7003 ,0,0,0}, - {11502,11504,11100 ,6999,7003,7000 ,0,0,0}, {11505,11085,11101 ,7004,7005,7002 ,0,0,0}, - {11101,11504,11505 ,7002,7003,7004 ,0,0,0}, {11085,11506,11103 ,7005,7006,7007 ,0,0,0}, - {11506,11085,11505 ,7006,7005,7004 ,0,0,0}, {11102,11103,11507 ,7008,7007,7009 ,0,0,0}, - {11506,11507,11103 ,7006,7009,7007 ,0,0,0}, {11508,9412,11102 ,7010,82,7008 ,0,0,0}, - {11102,11507,11508 ,7008,7009,7010 ,0,0,0}, {9411,9412,11508 ,7011,82,7010 ,0,0,0}, - {11040,11498,11501 ,6997,6989,6996 ,0,0,0}, {11500,11503,10972 ,6994,7001,6995 ,0,0,0}, - {11503,11502,10973 ,7001,6999,6998 ,0,0,0}, {11500,11099,11501 ,6994,6993,6996 ,0,0,0}, - {11497,11098,11090 ,6988,6987,6992 ,0,0,0}, {11498,11040,11098 ,6989,6997,6987 ,0,0,0}, - {11090,11499,11497 ,6992,6991,6988 ,0,0,0}, {11494,11499,11089 ,6981,6991,6990 ,0,0,0}, - {11509,11095,11491 ,7012,6977,6976 ,0,0,0}, {11093,11495,11091 ,6984,6983,6982 ,0,0,0}, - {11089,11091,11494 ,6990,6982,6981 ,0,0,0}, {11047,11095,11509 ,6985,6977,7012 ,0,0,0}, - {11047,11509,11496 ,6985,7012,6986 ,0,0,0}, {11495,11093,11496 ,6983,6984,6986 ,0,0,0}, - {11092,10960,11489 ,6970,6972,6971 ,0,0,0}, {11491,11094,11493 ,6976,6975,6979 ,0,0,0}, - {11492,11036,11035 ,6978,6980,7013 ,0,0,0}, {11036,11493,11094 ,6980,6979,6975 ,0,0,0}, - {11035,11092,11488 ,7013,6970,6969 ,0,0,0}, {11035,11488,11492 ,7013,6969,6978 ,0,0,0}, - {10961,11487,11490 ,6973,6967,6974 ,0,0,0}, {11489,10960,11490 ,6971,6972,6974 ,0,0,0}, - {9390,11048,9387 ,6966,6968,7014 ,0,0,0}, {11487,10961,11048 ,6967,6973,6968 ,0,0,0}, - {11509,9405,11496 ,730,730,730 ,0,0,0}, {11504,11502,11500 ,730,730,730 ,0,0,0}, - {11502,11503,11500 ,730,730,730 ,0,0,0}, {11500,11501,11505 ,730,730,730 ,0,0,0}, - {11505,11504,11500 ,730,730,730 ,0,0,0}, {11506,11501,11498 ,730,730,730 ,0,0,0}, - {11501,11506,11505 ,730,730,730 ,0,0,0}, {11497,11507,11498 ,730,730,730 ,0,0,0}, - {11506,11498,11507 ,730,730,730 ,0,0,0}, {11508,11497,9411 ,730,730,730 ,0,0,0}, - {11508,11507,11497 ,730,730,730 ,0,0,0}, {11499,11494,9409 ,730,730,730 ,0,0,0}, - {11497,11499,9411 ,730,730,730 ,0,0,0}, {11491,9400,9403 ,730,730,7015 ,0,0,0}, - {9406,9409,11495 ,730,730,730 ,0,0,0}, {11488,9394,9397 ,7016,7015,7017 ,0,0,0}, - {11493,9397,9399 ,730,7017,7017 ,0,0,0}, {9391,9393,11490 ,730,730,730 ,0,0,0}, - {9390,9366,9368 ,730,730,730 ,0,0,0}, {9364,9391,11487 ,7015,730,730 ,0,0,0}, - {9370,9384,9382 ,730,730,7017 ,0,0,0}, {9366,9385,9372 ,730,7017,7015 ,0,0,0}, - {9378,9374,9379 ,730,730,730 ,0,0,0}, {9374,9382,9379 ,730,7017,730 ,0,0,0}, - {9375,9374,9378 ,730,730,730 ,0,0,0}, {9370,9372,9384 ,730,7015,730 ,0,0,0}, - {9374,9370,9382 ,730,730,7017 ,0,0,0}, {9385,9366,9389 ,7017,730,730 ,0,0,0}, - {9384,9372,9385 ,730,7015,7017 ,0,0,0}, {9390,9389,9366 ,730,730,730 ,0,0,0}, - {11487,9368,9364 ,730,730,7015 ,0,0,0}, {11487,9390,9368 ,730,730,730 ,0,0,0}, - {9393,11489,11490 ,730,7016,730 ,0,0,0}, {11490,11487,9391 ,730,730,730 ,0,0,0}, - {11488,11489,9394 ,7016,7016,7015 ,0,0,0}, {9393,9394,11489 ,730,7015,7016 ,0,0,0}, - {9397,11493,11492 ,7017,730,730 ,0,0,0}, {9397,11492,11488 ,7017,730,7016 ,0,0,0}, - {9399,9400,11491 ,7017,730,730 ,0,0,0}, {11493,9399,11491 ,730,7017,730 ,0,0,0}, - {9403,9405,11509 ,7015,730,730 ,0,0,0}, {11491,9403,11509 ,730,7015,730 ,0,0,0}, - {11496,9406,11495 ,730,730,730 ,0,0,0}, {11496,9405,9406 ,730,730,730 ,0,0,0}, - {11499,9409,9411 ,730,730,730 ,0,0,0}, {11494,11495,9409 ,730,730,730 ,0,0,0}, - {11510,11511,9362 ,7018,7019,7020 ,0,0,0}, {9362,11512,11510 ,7020,7021,7018 ,0,0,0}, - {9362,9345,11512 ,7020,7022,7021 ,0,0,0}, {9362,11513,11514 ,7020,7023,7024 ,0,0,0}, - {11511,11513,9362 ,7019,7023,7020 ,0,0,0}, {9362,11515,11516 ,7020,7025,7026 ,0,0,0}, - {11514,11515,9362 ,7024,7025,7020 ,0,0,0}, {11516,11517,9362 ,7026,7027,7020 ,0,0,0}, - {11518,9362,11519 ,7028,7020,7029 ,0,0,0}, {9362,11517,11519 ,7020,7027,7029 ,0,0,0}, - {11520,9362,11521 ,7030,7020,7031 ,0,0,0}, {9362,11518,11521 ,7020,7028,7031 ,0,0,0}, - {11522,9362,11523 ,7032,7020,7033 ,0,0,0}, {9362,11520,11523 ,7020,7030,7033 ,0,0,0}, - {9361,9362,11522 ,7034,7020,7032 ,0,0,0}, {9344,11017,11512 ,7035,7036,7037 ,0,0,0}, - {11514,11513,11007 ,7038,7039,7040 ,0,0,0}, {11511,11510,11016 ,7041,7042,7043 ,0,0,0}, - {11516,11074,11517 ,7044,7045,7046 ,0,0,0}, {11006,11019,11515 ,7047,7048,7049 ,0,0,0}, - {11075,10900,11518 ,7050,7051,7052 ,0,0,0}, {11075,11519,10966 ,7050,7053,7054 ,0,0,0}, - {10964,11023,11520 ,7055,7056,7057 ,0,0,0}, {11520,11521,10964 ,7057,7058,7055 ,0,0,0}, - {11523,11023,11009 ,7059,7056,7060 ,0,0,0}, {11023,11523,11520 ,7056,7059,7057 ,0,0,0}, - {10997,11522,11009 ,7061,7062,7060 ,0,0,0}, {11523,11009,11522 ,7059,7060,7062 ,0,0,0}, - {10997,9360,9361 ,7061,7063,4910 ,0,0,0}, {9361,11522,10997 ,4910,7062,7061 ,0,0,0}, - {11074,11516,11019 ,7045,7044,7048 ,0,0,0}, {10900,11521,11518 ,7051,7058,7052 ,0,0,0}, - {10964,11521,10900 ,7055,7058,7051 ,0,0,0}, {11007,11513,11015 ,7040,7039,7064 ,0,0,0}, - {10966,11519,11517 ,7054,7053,7046 ,0,0,0}, {11075,11518,11519 ,7050,7052,7053 ,0,0,0}, - {11074,10966,11517 ,7045,7054,7046 ,0,0,0}, {11515,11019,11516 ,7049,7048,7044 ,0,0,0}, - {11514,11007,11006 ,7038,7040,7047 ,0,0,0}, {11006,11515,11514 ,7047,7049,7038 ,0,0,0}, - {11510,11017,11016 ,7042,7036,7043 ,0,0,0}, {11015,11511,11016 ,7064,7041,7043 ,0,0,0}, - {11513,11511,11015 ,7039,7041,7064 ,0,0,0}, {9344,11512,9345 ,7035,7037,4929 ,0,0,0}, - {11017,11510,11512 ,7036,7042,7037 ,0,0,0}, {11524,11525,9328 ,7018,7019,7065 ,0,0,0}, - {9328,11526,11524 ,7065,7021,7018 ,0,0,0}, {9328,9311,11526 ,7065,7066,7021 ,0,0,0}, - {9328,11527,11528 ,7065,7023,7024 ,0,0,0}, {11525,11527,9328 ,7019,7023,7065 ,0,0,0}, - {9328,11529,11530 ,7065,7025,7026 ,0,0,0}, {11528,11529,9328 ,7024,7025,7065 ,0,0,0}, - {11530,11531,9328 ,7026,7027,7065 ,0,0,0}, {11532,9328,11533 ,7028,7065,7029 ,0,0,0}, - {9328,11531,11533 ,7065,7027,7029 ,0,0,0}, {11534,9328,11535 ,7030,7065,7031 ,0,0,0}, - {9328,11532,11535 ,7065,7028,7031 ,0,0,0}, {11536,9328,11537 ,7032,7065,7033 ,0,0,0}, - {9328,11534,11537 ,7065,7030,7033 ,0,0,0}, {9327,9328,11536 ,7067,7065,7032 ,0,0,0}, - {9310,11066,11526 ,7068,7069,7070 ,0,0,0}, {11528,11527,10907 ,7071,7072,7073 ,0,0,0}, - {11525,11524,10946 ,7074,7075,7076 ,0,0,0}, {11530,10926,11531 ,7077,7078,7079 ,0,0,0}, - {10908,11071,11529 ,7047,7080,7081 ,0,0,0}, {10890,11069,11532 ,7082,7083,7084 ,0,0,0}, - {10890,11533,11070 ,7082,7085,7086 ,0,0,0}, {11068,10944,11534 ,7087,7088,7089 ,0,0,0}, - {11534,11535,11068 ,7089,7090,7087 ,0,0,0}, {11537,10944,10945 ,7091,7088,7092 ,0,0,0}, - {10944,11537,11534 ,7088,7091,7089 ,0,0,0}, {11067,11536,10945 ,7093,7094,7092 ,0,0,0}, - {11537,10945,11536 ,7091,7092,7094 ,0,0,0}, {11067,9326,9327 ,7093,4831,4942 ,0,0,0}, - {9327,11536,11067 ,4942,7094,7093 ,0,0,0}, {10926,11530,11071 ,7078,7077,7080 ,0,0,0}, - {11069,11535,11532 ,7083,7090,7084 ,0,0,0}, {11068,11535,11069 ,7087,7090,7083 ,0,0,0}, - {10907,11527,10943 ,7073,7072,7095 ,0,0,0}, {11070,11533,11531 ,7086,7085,7079 ,0,0,0}, - {10890,11532,11533 ,7082,7084,7085 ,0,0,0}, {10926,11070,11531 ,7078,7086,7079 ,0,0,0}, - {11529,11071,11530 ,7081,7080,7077 ,0,0,0}, {11528,10907,10908 ,7071,7073,7047 ,0,0,0}, - {10908,11529,11528 ,7047,7081,7071 ,0,0,0}, {11524,11066,10946 ,7075,7069,7076 ,0,0,0}, - {10943,11525,10946 ,7095,7074,7076 ,0,0,0}, {11527,11525,10943 ,7072,7074,7095 ,0,0,0}, - {9310,11526,9311 ,7068,7070,4899 ,0,0,0}, {11066,11524,11526 ,7069,7075,7070 ,0,0,0}, - {11538,11539,9294 ,7018,7019,7065 ,0,0,0}, {9294,11540,11538 ,7065,7021,7018 ,0,0,0}, - {9294,9277,11540 ,7065,7096,7021 ,0,0,0}, {9294,11541,11542 ,7065,7023,7024 ,0,0,0}, - {11539,11541,9294 ,7019,7023,7065 ,0,0,0}, {9294,11543,11544 ,7065,7025,7026 ,0,0,0}, - {11542,11543,9294 ,7024,7025,7065 ,0,0,0}, {11544,11545,9294 ,7026,7027,7065 ,0,0,0}, - {11546,9294,11547 ,7028,7065,7029 ,0,0,0}, {9294,11545,11547 ,7065,7027,7029 ,0,0,0}, - {11548,9294,11549 ,7030,7065,7031 ,0,0,0}, {9294,11546,11549 ,7065,7028,7031 ,0,0,0}, - {11550,9294,11551 ,7032,7065,7033 ,0,0,0}, {9294,11548,11551 ,7065,7030,7033 ,0,0,0}, - {9293,9294,11550 ,7097,7065,7032 ,0,0,0}, {9276,11064,11540 ,7098,7099,7100 ,0,0,0}, - {11542,11541,11029 ,7101,7102,7103 ,0,0,0}, {11539,11538,11056 ,7104,7105,7076 ,0,0,0}, - {11544,11028,11545 ,7106,7107,7108 ,0,0,0}, {11063,11062,11543 ,7109,7110,7111 ,0,0,0}, - {10940,10937,11546 ,7112,7113,7114 ,0,0,0}, {10940,11547,11057 ,7112,7115,7116 ,0,0,0}, - {10942,10941,11548 ,7117,7118,7119 ,0,0,0}, {11548,11549,10942 ,7119,7120,7117 ,0,0,0}, - {11551,10941,10939 ,7121,7118,7122 ,0,0,0}, {10941,11551,11548 ,7118,7121,7119 ,0,0,0}, - {10938,11550,10939 ,7123,7124,7122 ,0,0,0}, {11551,10939,11550 ,7121,7122,7124 ,0,0,0}, - {10938,9292,9293 ,7123,4831,4831 ,0,0,0}, {9293,11550,10938 ,4831,7124,7123 ,0,0,0}, - {11028,11544,11062 ,7107,7106,7110 ,0,0,0}, {10937,11549,11546 ,7113,7120,7114 ,0,0,0}, - {10942,11549,10937 ,7117,7120,7113 ,0,0,0}, {11029,11541,11055 ,7103,7102,7125 ,0,0,0}, - {11057,11547,11545 ,7116,7115,7108 ,0,0,0}, {10940,11546,11547 ,7112,7114,7115 ,0,0,0}, - {11028,11057,11545 ,7107,7116,7108 ,0,0,0}, {11543,11062,11544 ,7111,7110,7106 ,0,0,0}, - {11542,11029,11063 ,7101,7103,7109 ,0,0,0}, {11063,11543,11542 ,7109,7111,7101 ,0,0,0}, - {11538,11064,11056 ,7105,7099,7076 ,0,0,0}, {11055,11539,11056 ,7125,7104,7076 ,0,0,0}, - {11541,11539,11055 ,7102,7104,7125 ,0,0,0}, {9276,11540,9277 ,7098,7100,4865 ,0,0,0}, - {11064,11538,11540 ,7099,7105,7100 ,0,0,0}, {11552,11553,9260 ,7018,7019,7126 ,0,0,0}, - {9260,11554,11552 ,7126,7021,7018 ,0,0,0}, {9260,9243,11554 ,7126,7127,7021 ,0,0,0}, - {9260,11555,11556 ,7126,7023,7024 ,0,0,0}, {11553,11555,9260 ,7019,7023,7126 ,0,0,0}, - {9260,11557,11558 ,7126,7025,7026 ,0,0,0}, {11556,11557,9260 ,7024,7025,7126 ,0,0,0}, - {11558,11559,9260 ,7026,7027,7126 ,0,0,0}, {11560,9260,11561 ,7028,7126,7029 ,0,0,0}, - {9260,11559,11561 ,7126,7027,7029 ,0,0,0}, {11562,9260,11563 ,7030,7126,7031 ,0,0,0}, - {9260,11560,11563 ,7126,7028,7031 ,0,0,0}, {11564,9260,11565 ,7032,7126,7033 ,0,0,0}, - {9260,11562,11565 ,7126,7030,7033 ,0,0,0}, {9259,9260,11564 ,7128,7126,7032 ,0,0,0}, - {9242,11045,11554 ,7129,7099,7130 ,0,0,0}, {11556,11555,11050 ,7131,7132,7133 ,0,0,0}, - {11553,11552,11044 ,7041,7075,7134 ,0,0,0}, {11558,11051,11559 ,7135,7107,7136 ,0,0,0}, - {11049,11077,11557 ,7137,7138,7139 ,0,0,0}, {10927,10928,11560 ,7140,7141,7142 ,0,0,0}, - {10927,11561,11033 ,7140,7143,7144 ,0,0,0}, {11011,11012,11562 ,7145,7146,7147 ,0,0,0}, - {11562,11563,11011 ,7147,7148,7145 ,0,0,0}, {11565,11012,11097 ,7149,7146,7150 ,0,0,0}, - {11012,11565,11562 ,7146,7149,7147 ,0,0,0}, {11096,11564,11097 ,7151,7152,7150 ,0,0,0}, - {11565,11097,11564 ,7149,7150,7152 ,0,0,0}, {11096,9258,9259 ,7151,7153,4831 ,0,0,0}, - {9259,11564,11096 ,4831,7152,7151 ,0,0,0}, {11051,11558,11077 ,7107,7135,7138 ,0,0,0}, - {10928,11563,11560 ,7141,7148,7142 ,0,0,0}, {11011,11563,10928 ,7145,7148,7141 ,0,0,0}, - {11050,11555,11053 ,7133,7132,7154 ,0,0,0}, {11033,11561,11559 ,7144,7143,7136 ,0,0,0}, - {10927,11560,11561 ,7140,7142,7143 ,0,0,0}, {11051,11033,11559 ,7107,7144,7136 ,0,0,0}, - {11557,11077,11558 ,7139,7138,7135 ,0,0,0}, {11556,11050,11049 ,7131,7133,7137 ,0,0,0}, - {11049,11557,11556 ,7137,7139,7131 ,0,0,0}, {11552,11045,11044 ,7075,7099,7134 ,0,0,0}, - {11053,11553,11044 ,7154,7041,7134 ,0,0,0}, {11555,11553,11053 ,7132,7041,7154 ,0,0,0}, - {9242,11554,9243 ,7129,7130,4929 ,0,0,0}, {11045,11552,11554 ,7099,7075,7130 ,0,0,0}, - {9203,9202,11566 ,4777,21,7155 ,0,0,0}, {10910,10923,11567 ,7156,7157,7158 ,0,0,0}, - {10919,11568,11569 ,7159,7160,7161 ,0,0,0}, {11570,11571,10901 ,7162,7163,7164 ,0,0,0}, - {11572,10967,10925 ,7165,7166,7167 ,0,0,0}, {10978,11022,11573 ,7168,7169,7170 ,0,0,0}, - {10963,11574,11575 ,7171,7172,7173 ,0,0,0}, {10953,11576,10985 ,7174,7175,7176 ,0,0,0}, - {11577,11578,10982 ,7177,7178,7179 ,0,0,0}, {11579,11580,10991 ,7180,7181,7182 ,0,0,0}, - {11581,10983,10985 ,7183,7184,7176 ,0,0,0}, {11582,11583,10992 ,7185,7186,7187 ,0,0,0}, - {11582,10989,11580 ,7185,7188,7181 ,0,0,0}, {10993,11583,11584 ,7189,7186,7190 ,0,0,0}, - {11583,10993,10992 ,7186,7189,7187 ,0,0,0}, {11585,10988,11584 ,7191,7192,7190 ,0,0,0}, - {10993,11584,10988 ,7189,7190,7192 ,0,0,0}, {11585,11586,10986 ,7191,7193,7194 ,0,0,0}, - {10986,10988,11585 ,7194,7192,7191 ,0,0,0}, {10995,11586,11587 ,7195,7193,7196 ,0,0,0}, - {11586,10995,10986 ,7193,7195,7194 ,0,0,0}, {9225,10996,11587 ,7197,7198,7196 ,0,0,0}, - {10995,11587,10996 ,7195,7196,7198 ,0,0,0}, {9226,10996,9225 ,7199,7198,7197 ,0,0,0}, - {10953,11578,11576 ,7174,7178,7175 ,0,0,0}, {10989,10991,11580 ,7188,7182,7181 ,0,0,0}, - {11582,10992,10989 ,7185,7187,7188 ,0,0,0}, {10983,11581,11579 ,7184,7183,7180 ,0,0,0}, - {11579,10991,10983 ,7180,7182,7184 ,0,0,0}, {11581,10985,11576 ,7183,7176,7175 ,0,0,0}, - {11578,10953,10982 ,7178,7174,7179 ,0,0,0}, {10978,11573,11577 ,7168,7170,7177 ,0,0,0}, - {10978,11577,10982 ,7168,7177,7179 ,0,0,0}, {10967,11570,10901 ,7166,7162,7164 ,0,0,0}, - {11575,11022,10963 ,7173,7169,7171 ,0,0,0}, {11022,11575,11573 ,7169,7173,7170 ,0,0,0}, - {10902,10901,11571 ,7200,7164,7163 ,0,0,0}, {10963,10902,11574 ,7171,7200,7172 ,0,0,0}, - {11574,10902,11571 ,7172,7200,7163 ,0,0,0}, {11572,11570,10967 ,7165,7162,7166 ,0,0,0}, - {11588,11572,10925 ,7201,7165,7167 ,0,0,0}, {10910,11567,11588 ,7156,7158,7201 ,0,0,0}, - {10910,11588,10925 ,7156,7201,7167 ,0,0,0}, {11024,11566,11568 ,7202,7155,7160 ,0,0,0}, - {11569,10923,10919 ,7161,7157,7159 ,0,0,0}, {10923,11569,11567 ,7157,7161,7158 ,0,0,0}, - {11024,11568,10919 ,7202,7160,7159 ,0,0,0}, {11566,11024,9203 ,7155,7202,4777 ,0,0,0}, - {9191,11579,9194 ,730,7015,730 ,0,0,0}, {11569,11568,11574 ,730,730,730 ,0,0,0}, - {9201,9197,11578 ,730,730,730 ,0,0,0}, {9195,11581,11576 ,730,730,7015 ,0,0,0}, - {11575,11574,11568 ,730,730,730 ,0,0,0}, {9202,11577,11566 ,730,730,730 ,0,0,0}, - {11572,11588,11567 ,730,730,730 ,0,0,0}, {11567,11569,11571 ,730,730,730 ,0,0,0}, - {11567,11571,11570 ,730,730,730 ,0,0,0}, {11572,11567,11570 ,730,730,730 ,0,0,0}, - {11568,11566,11575 ,730,730,730 ,0,0,0}, {11571,11569,11574 ,730,730,730 ,0,0,0}, - {11566,11573,11575 ,730,730,730 ,0,0,0}, {11577,9202,11578 ,730,730,730 ,0,0,0}, - {11573,11566,11577 ,730,730,730 ,0,0,0}, {11578,9197,11576 ,730,730,7015 ,0,0,0}, - {11578,9202,9201 ,730,730,730 ,0,0,0}, {11581,9195,9194 ,730,730,730 ,0,0,0}, - {11576,9197,9195 ,7015,730,730 ,0,0,0}, {11580,11579,9191 ,730,7015,730 ,0,0,0}, - {11579,11581,9194 ,7015,730,730 ,0,0,0}, {11582,9191,9190 ,7015,730,730 ,0,0,0}, - {9191,11582,11580 ,730,7015,730 ,0,0,0}, {11582,9190,11583 ,7015,730,730 ,0,0,0}, - {9183,11583,9187 ,730,730,730 ,0,0,0}, {11583,9190,9187 ,730,730,730 ,0,0,0}, - {9183,9182,11584 ,730,730,7015 ,0,0,0}, {11584,11583,9183 ,7015,730,730 ,0,0,0}, - {11584,9182,11585 ,7015,730,7015 ,0,0,0}, {9186,11586,11585 ,730,730,7015 ,0,0,0}, - {11585,9182,9186 ,7015,730,730 ,0,0,0}, {11586,9181,11587 ,730,730,7015 ,0,0,0}, - {9181,11586,9186 ,730,730,730 ,0,0,0}, {9177,9225,9181 ,730,7015,730 ,0,0,0}, - {11587,9181,9225 ,7015,730,7015 ,0,0,0}, {9224,9206,9222 ,7015,7015,730 ,0,0,0}, - {9177,9176,9224 ,730,730,7015 ,0,0,0}, {9218,9213,9216 ,7015,7015,7015 ,0,0,0}, - {9210,9219,9207 ,7015,7015,730 ,0,0,0}, {9218,9210,9212 ,7015,7015,7015 ,0,0,0}, - {9213,9218,9212 ,7015,7015,7015 ,0,0,0}, {9222,9207,9219 ,730,730,7015 ,0,0,0}, - {9219,9210,9218 ,7015,7015,7015 ,0,0,0}, {9224,9176,9206 ,7015,730,7015 ,0,0,0}, - {9222,9206,9207 ,730,7015,730 ,0,0,0}, {9224,9225,9177 ,7015,7015,730 ,0,0,0}, - {9153,10884,11589 ,126,7203,7204 ,0,0,0}, {11590,11591,10886 ,7205,7206,7207 ,0,0,0}, - {10936,11592,11004 ,7208,7209,7210 ,0,0,0}, {11025,11027,11593 ,7211,7212,7213 ,0,0,0}, - {11594,10897,11595 ,7214,7215,7216 ,0,0,0}, {11596,11597,10922 ,7217,7218,7219 ,0,0,0}, - {10947,11598,11065 ,7220,7221,7222 ,0,0,0}, {10916,11599,11600 ,7223,7224,7225 ,0,0,0}, - {10914,10915,11601 ,7226,7227,7228 ,0,0,0}, {10912,10906,11602 ,7229,7230,7231 ,0,0,0}, - {11603,10913,10912 ,7232,7233,7229 ,0,0,0}, {10904,10905,11604 ,7234,7235,7236 ,0,0,0}, - {11605,10906,10904 ,7237,7230,7234 ,0,0,0}, {10903,11606,10905 ,7238,7239,7235 ,0,0,0}, - {11604,10905,11606 ,7236,7235,7239 ,0,0,0}, {11607,10903,10896 ,7240,7238,7241 ,0,0,0}, - {10903,11607,11606 ,7238,7240,7239 ,0,0,0}, {10896,10895,11608 ,7241,7242,7243 ,0,0,0}, - {11608,11607,10896 ,7243,7240,7241 ,0,0,0}, {10892,11609,10895 ,7244,7245,7242 ,0,0,0}, - {11608,10895,11609 ,7243,7242,7245 ,0,0,0}, {11610,10892,9175 ,7246,7244,82 ,0,0,0}, - {10892,11610,11609 ,7244,7246,7245 ,0,0,0}, {9173,11610,9175 ,7011,7246,82 ,0,0,0}, - {10913,11603,11599 ,7233,7232,7224 ,0,0,0}, {11602,10906,11605 ,7231,7230,7237 ,0,0,0}, - {11605,10904,11604 ,7237,7234,7236 ,0,0,0}, {11602,11603,10912 ,7231,7232,7229 ,0,0,0}, - {11600,10915,10916 ,7225,7227,7223 ,0,0,0}, {11599,10916,10913 ,7224,7223,7233 ,0,0,0}, - {10915,11600,11601 ,7227,7225,7228 ,0,0,0}, {11596,10914,11601 ,7217,7226,7228 ,0,0,0}, - {11611,11593,11027 ,7247,7213,7212 ,0,0,0}, {10947,10922,11597 ,7220,7219,7218 ,0,0,0}, - {10914,11596,10922 ,7226,7217,7219 ,0,0,0}, {11065,11611,11027 ,7222,7247,7212 ,0,0,0}, - {11065,11598,11611 ,7222,7221,7247 ,0,0,0}, {11597,11598,10947 ,7218,7221,7220 ,0,0,0}, - {10886,11591,10936 ,7207,7206,7208 ,0,0,0}, {11593,11595,11025 ,7213,7216,7211 ,0,0,0}, - {11594,10899,10897 ,7214,7248,7215 ,0,0,0}, {10897,11025,11595 ,7215,7211,7216 ,0,0,0}, - {10899,11590,10886 ,7248,7205,7207 ,0,0,0}, {10899,11594,11590 ,7248,7214,7205 ,0,0,0}, - {11004,11592,11589 ,7210,7209,7204 ,0,0,0}, {11591,11592,10936 ,7206,7209,7208 ,0,0,0}, - {9153,9150,10884 ,126,4726,7203 ,0,0,0}, {11589,10884,11004 ,7204,7203,7210 ,0,0,0}, - {11604,11602,11605 ,7249,7250,7251 ,0,0,0}, {9155,11591,9157 ,726,726,7252 ,0,0,0}, - {11607,11602,11606 ,7253,7250,7253 ,0,0,0}, {11602,11604,11606 ,7250,7249,7253 ,0,0,0}, - {11603,11607,11608 ,7254,7253,7249 ,0,0,0}, {11607,11603,11602 ,7253,7254,7250 ,0,0,0}, - {11608,11609,11599 ,7249,7249,7255 ,0,0,0}, {11599,11603,11608 ,7255,7254,7249 ,0,0,0}, - {11609,11600,11599 ,7249,7256,7255 ,0,0,0}, {11610,9173,11600 ,7257,7257,7256 ,0,0,0}, - {11610,11600,11609 ,7257,7256,7249 ,0,0,0}, {11601,9172,11596 ,7258,726,7259 ,0,0,0}, - {11600,9173,11601 ,7256,7257,7258 ,0,0,0}, {11611,11598,9167 ,7260,7254,7257 ,0,0,0}, - {9169,11597,9172 ,7252,7261,726 ,0,0,0}, {9160,11595,9161 ,726,7262,7252 ,0,0,0}, - {9166,9163,11593 ,726,7252,7263 ,0,0,0}, {11592,9155,9154 ,7253,726,726 ,0,0,0}, - {11590,9160,9157 ,726,726,7252 ,0,0,0}, {9153,9130,9129 ,726,726,726 ,0,0,0}, - {9128,11589,9154 ,7264,7253,726 ,0,0,0}, {9134,9146,9147 ,726,7257,726 ,0,0,0}, - {9129,9135,9149 ,726,7264,726 ,0,0,0}, {9141,9143,9137 ,7257,726,7257 ,0,0,0}, - {9143,9146,9137 ,726,7257,7257 ,0,0,0}, {9141,9137,9139 ,7257,7257,7257 ,0,0,0}, - {9147,9135,9134 ,726,7264,726 ,0,0,0}, {9146,9134,9137 ,7257,726,7257 ,0,0,0}, - {9151,9129,9149 ,726,726,726 ,0,0,0}, {9149,9135,9147 ,726,7264,726 ,0,0,0}, - {9130,9153,11589 ,726,726,7253 ,0,0,0}, {9129,9151,9153 ,726,726,726 ,0,0,0}, - {9154,11589,11592 ,726,7253,7253 ,0,0,0}, {9130,11589,9128 ,726,7253,7264 ,0,0,0}, - {9157,11591,11590 ,7252,726,726 ,0,0,0}, {11591,9155,11592 ,726,726,7253 ,0,0,0}, - {11595,9160,11594 ,7262,726,7262 ,0,0,0}, {11594,9160,11590 ,7262,726,726 ,0,0,0}, - {9163,9161,11593 ,7252,7252,7263 ,0,0,0}, {9161,11595,11593 ,7252,7262,7263 ,0,0,0}, - {11593,11611,9166 ,7263,7260,726 ,0,0,0}, {9169,9167,11598 ,7252,7257,7254 ,0,0,0}, - {9167,9166,11611 ,7257,726,7260 ,0,0,0}, {9172,11597,11596 ,726,7261,7259 ,0,0,0}, - {9169,11598,11597 ,7252,7254,7261 ,0,0,0}, {9172,11601,9173 ,726,7258,7257 ,0,0,0}, - {9103,11612,10878 ,4799,7265,7266 ,0,0,0}, {11613,10880,11614 ,7267,7268,7269 ,0,0,0}, - {10879,11054,11615 ,7270,7271,7272 ,0,0,0}, {11061,11616,10888 ,7273,7274,7275 ,0,0,0}, - {11617,11618,11060 ,7276,7277,7278 ,0,0,0}, {11619,11058,11620 ,7279,7280,7281 ,0,0,0}, - {11078,11030,11621 ,7282,7283,7284 ,0,0,0}, {11079,11622,11623 ,7285,7286,7287 ,0,0,0}, - {10933,11624,10934 ,7288,7289,7290 ,0,0,0}, {11080,11625,10931 ,7291,7292,7293 ,0,0,0}, - {11626,11080,10889 ,7294,7291,7295 ,0,0,0}, {10930,11627,11081 ,7296,7297,7298 ,0,0,0}, - {11628,10930,10931 ,7299,7296,7293 ,0,0,0}, {11082,11081,11629 ,7300,7298,7301 ,0,0,0}, - {11627,11629,11081 ,7297,7301,7298 ,0,0,0}, {11630,11031,11082 ,7302,7303,7300 ,0,0,0}, - {11082,11629,11630 ,7300,7301,7302 ,0,0,0}, {11031,11631,11084 ,7303,7304,7305 ,0,0,0}, - {11631,11031,11630 ,7304,7303,7302 ,0,0,0}, {11083,11084,11632 ,7306,7305,7307 ,0,0,0}, - {11631,11632,11084 ,7304,7307,7305 ,0,0,0}, {11633,9125,11083 ,7308,21,7306 ,0,0,0}, - {11083,11632,11633 ,7306,7307,7308 ,0,0,0}, {9124,9125,11633 ,7309,21,7308 ,0,0,0}, - {10889,11623,11626 ,7295,7287,7294 ,0,0,0}, {11625,11628,10931 ,7292,7299,7293 ,0,0,0}, - {11628,11627,10930 ,7299,7297,7296 ,0,0,0}, {11625,11080,11626 ,7292,7291,7294 ,0,0,0}, - {11622,11079,10934 ,7286,7285,7290 ,0,0,0}, {11623,10889,11079 ,7287,7295,7285 ,0,0,0}, - {10934,11624,11622 ,7290,7289,7286 ,0,0,0}, {11619,11624,10933 ,7279,7289,7288 ,0,0,0}, - {11634,10888,11616 ,7310,7275,7274 ,0,0,0}, {11078,11620,11058 ,7282,7281,7280 ,0,0,0}, - {10933,11058,11619 ,7288,7280,7279 ,0,0,0}, {11030,10888,11634 ,7283,7275,7310 ,0,0,0}, - {11030,11634,11621 ,7283,7310,7284 ,0,0,0}, {11620,11078,11621 ,7281,7282,7284 ,0,0,0}, - {10880,10879,11614 ,7268,7270,7269 ,0,0,0}, {11616,11061,11618 ,7274,7273,7277 ,0,0,0}, - {11617,11060,11059 ,7276,7278,7311 ,0,0,0}, {11060,11618,11061 ,7278,7277,7273 ,0,0,0}, - {11059,10880,11613 ,7311,7268,7267 ,0,0,0}, {11059,11613,11617 ,7311,7267,7276 ,0,0,0}, - {11054,11612,11615 ,7271,7265,7272 ,0,0,0}, {11614,10879,11615 ,7269,7270,7272 ,0,0,0}, - {9103,10878,9100 ,4799,7266,7199 ,0,0,0}, {11612,11054,10878 ,7265,7271,7266 ,0,0,0}, - {11625,9095,9092 ,730,7312,6103 ,0,0,0}, {9088,11629,9091 ,7313,730,730 ,0,0,0}, - {9098,11622,9102 ,7314,7015,7315 ,0,0,0}, {11626,11623,9097 ,730,730,7316 ,0,0,0}, - {11621,11615,11620 ,730,7317,7313 ,0,0,0}, {11624,11612,9103 ,730,7318,7319 ,0,0,0}, - {11613,11614,11634 ,7320,7316,7316 ,0,0,0}, {11616,11618,11613 ,7320,6103,7320 ,0,0,0}, - {11617,11613,11618 ,6111,7320,6103 ,0,0,0}, {11621,11634,11614 ,730,7316,7316 ,0,0,0}, - {11634,11616,11613 ,7316,7320,7320 ,0,0,0}, {11612,11620,11615 ,7318,7313,7317 ,0,0,0}, - {11615,11621,11614 ,7317,730,7316 ,0,0,0}, {11624,11619,11612 ,730,7316,7318 ,0,0,0}, - {11612,11619,11620 ,7318,7316,7313 ,0,0,0}, {9102,11622,9103 ,7315,7015,7319 ,0,0,0}, - {9103,11622,11624 ,7319,7015,730 ,0,0,0}, {9097,11623,9098 ,7316,730,7314 ,0,0,0}, - {9098,11623,11622 ,7314,730,7015 ,0,0,0}, {11626,9097,9095 ,730,7316,7312 ,0,0,0}, - {9092,11628,11625 ,6103,7017,730 ,0,0,0}, {9095,11625,11626 ,7312,730,730 ,0,0,0}, - {11628,9092,11627 ,7017,6103,7017 ,0,0,0}, {9091,11629,11627 ,730,730,7017 ,0,0,0}, - {11627,9092,9091 ,7017,6103,730 ,0,0,0}, {11629,9088,9087 ,730,7313,730 ,0,0,0}, - {9087,9083,11630 ,730,7316,730 ,0,0,0}, {11630,11629,9087 ,730,730,730 ,0,0,0}, - {11631,9083,9085 ,7016,7316,7313 ,0,0,0}, {9083,11631,11630 ,7316,7016,730 ,0,0,0}, - {9079,11632,9085 ,7015,730,7313 ,0,0,0}, {11631,9085,11632 ,7016,7313,730 ,0,0,0}, - {11633,9079,9124 ,730,7015,730 ,0,0,0}, {11633,11632,9079 ,730,730,7015 ,0,0,0}, - {9079,9081,9124 ,7015,7015,730 ,0,0,0}, {9122,9104,9119 ,730,730,730 ,0,0,0}, - {9081,9077,9122 ,7015,730,730 ,0,0,0}, {9116,9112,9113 ,730,730,7017 ,0,0,0}, - {9107,9118,9106 ,7015,7016,730 ,0,0,0}, {9116,9107,9110 ,730,7015,730 ,0,0,0}, - {9112,9116,9110 ,730,730,730 ,0,0,0}, {9119,9106,9118 ,730,730,7016 ,0,0,0}, - {9118,9107,9116 ,7016,7015,730 ,0,0,0}, {9122,9077,9104 ,730,730,730 ,0,0,0}, - {9119,9104,9106 ,730,730,730 ,0,0,0}, {9122,9124,9081 ,730,730,7015 ,0,0,0}, - {9635,11635,11636 ,7321,1711,7322 ,0,0,0}, {9625,9622,11637 ,7323,7324,7325 ,0,0,0}, - {11638,9624,9633 ,7326,7327,7328 ,0,0,0}, {11451,11639,11450 ,7329,7330,7331 ,0,0,0}, - {11640,11641,9629 ,7332,7333,7334 ,0,0,0}, {11448,11642,11447 ,7335,7336,7337 ,0,0,0}, - {11642,11449,11643 ,7336,7338,7339 ,0,0,0}, {11446,11447,11644 ,7340,7337,7341 ,0,0,0}, - {11642,11644,11447 ,7336,7341,7337 ,0,0,0}, {11645,11445,11446 ,1359,1359,7340 ,0,0,0}, - {11446,11644,11645 ,7340,7341,1359 ,0,0,0}, {11643,11449,11450 ,7339,7338,7331 ,0,0,0}, - {11642,11448,11449 ,7336,7335,7338 ,0,0,0}, {11639,11451,11452 ,7330,7329,7342 ,0,0,0}, - {11639,11643,11450 ,7330,7339,7331 ,0,0,0}, {11452,9629,11641 ,7342,7334,7333 ,0,0,0}, - {11641,11639,11452 ,7333,7330,7342 ,0,0,0}, {9628,11637,11640 ,7343,7325,7332 ,0,0,0}, - {9628,11640,9629 ,7343,7332,7334 ,0,0,0}, {9622,11646,11637 ,7324,7344,7325 ,0,0,0}, - {9628,9625,11637 ,7343,7323,7325 ,0,0,0}, {11638,11646,9624 ,7326,7344,7327 ,0,0,0}, - {9622,9624,11646 ,7324,7327,7344 ,0,0,0}, {11638,9632,11636 ,7326,7345,7322 ,0,0,0}, - {9633,9632,11638 ,7328,7345,7326 ,0,0,0}, {11635,9635,9601 ,1711,7321,1711 ,0,0,0}, - {11636,9632,9635 ,7322,7345,7321 ,0,0,0}, {11635,9603,11647 ,2197,7346,7346 ,0,0,0}, - {9603,11635,9601 ,7346,2197,2197 ,0,0,0}, {11648,11649,11455 ,1435,7347,7348 ,0,0,0}, - {11456,11454,11650 ,7349,7350,7351 ,0,0,0}, {11453,11458,11651 ,7352,7353,7354 ,0,0,0}, - {9614,11652,9612 ,7355,7356,7357 ,0,0,0}, {11653,11654,9620 ,7358,7359,7360 ,0,0,0}, - {9608,11655,9606 ,7361,7362,7363 ,0,0,0}, {9608,9610,11655 ,7361,7364,7362 ,0,0,0}, - {9605,9606,11656 ,7365,7363,7366 ,0,0,0}, {11655,11656,9606 ,7362,7366,7363 ,0,0,0}, - {11647,9603,9605 ,1790,1790,7365 ,0,0,0}, {9605,11656,11647 ,7365,7366,1790 ,0,0,0}, - {9612,11657,9610 ,7357,7367,7364 ,0,0,0}, {11655,9610,11657 ,7362,7364,7367 ,0,0,0}, - {11453,11658,11454 ,7352,7368,7350 ,0,0,0}, {9614,9618,11652 ,7355,7369,7356 ,0,0,0}, - {11652,11657,9612 ,7356,7367,7357 ,0,0,0}, {9618,9620,11654 ,7369,7360,7359 ,0,0,0}, - {11654,11652,9618 ,7359,7356,7369 ,0,0,0}, {11653,9620,11457 ,7358,7360,7370 ,0,0,0}, - {11650,11457,11456 ,7351,7370,7349 ,0,0,0}, {11457,11650,11653 ,7370,7351,7358 ,0,0,0}, - {11658,11650,11454 ,7368,7351,7350 ,0,0,0}, {11651,11459,11649 ,7354,7371,7347 ,0,0,0}, - {11459,11651,11458 ,7371,7354,7353 ,0,0,0}, {11658,11453,11651 ,7368,7352,7354 ,0,0,0}, - {11648,11455,11444 ,1435,7348,1435 ,0,0,0}, {11649,11459,11455 ,7347,7371,7348 ,0,0,0}, - {11444,11645,11648 ,1398,7372,1398 ,0,0,0}, {11645,11444,11445 ,7372,1398,7372 ,0,0,0}, - {11645,11649,11648 ,7373,730,730 ,0,0,0}, {11646,11655,11657 ,730,730,730 ,0,0,0}, - {11643,11650,11658 ,7374,7375,7375 ,0,0,0}, {11658,11651,11642 ,7375,730,7373 ,0,0,0}, - {11641,11654,11653 ,7375,7375,7375 ,0,0,0}, {11653,11650,11639 ,7375,7375,730 ,0,0,0}, - {11657,11652,11637 ,730,730,7376 ,0,0,0}, {11652,11654,11640 ,730,7375,7375 ,0,0,0}, - {11636,11656,11638 ,730,730,730 ,0,0,0}, {11655,11638,11656 ,730,730,730 ,0,0,0}, - {11636,11635,11647 ,730,730,730 ,0,0,0}, {11647,11656,11636 ,730,730,730 ,0,0,0}, - {11657,11637,11646 ,730,7376,730 ,0,0,0}, {11655,11646,11638 ,730,730,730 ,0,0,0}, - {11652,11640,11637 ,730,7375,7376 ,0,0,0}, {11654,11641,11640 ,7375,7375,7375 ,0,0,0}, - {11653,11639,11641 ,7375,730,7375 ,0,0,0}, {11650,11643,11639 ,7375,7374,730 ,0,0,0}, - {11658,11642,11643 ,7375,7373,7374 ,0,0,0}, {11651,11644,11642 ,730,730,7373 ,0,0,0}, - {11645,11644,11649 ,7373,730,730 ,0,0,0}, {11651,11649,11644 ,730,730,730 ,0,0,0}, - {11659,9533,11660 ,7377,1435,1435 ,0,0,0}, {11661,9549,11662 ,7378,7379,7379 ,0,0,0}, - {11663,9524,9528 ,7380,7380,7377 ,0,0,0}, {9556,11664,11665 ,7381,7381,7382 ,0,0,0}, - {9551,11666,9554 ,7378,7383,7383 ,0,0,0}, {9563,11667,9565 ,7384,7385,7385 ,0,0,0}, - {11668,9563,9558 ,7384,7384,7382 ,0,0,0}, {9568,9565,11669 ,7386,7385,7386 ,0,0,0}, - {11667,11669,9565 ,7385,7386,7385 ,0,0,0}, {11670,9571,9568 ,7387,7388,7386 ,0,0,0}, - {9568,11669,11670 ,7386,7386,7387 ,0,0,0}, {11665,11668,9558 ,7382,7384,7382 ,0,0,0}, - {11668,11667,9563 ,7384,7385,7384 ,0,0,0}, {9554,11664,9556 ,7383,7381,7381 ,0,0,0}, - {9556,11665,9558 ,7381,7382,7382 ,0,0,0}, {9551,11661,11666 ,7378,7378,7383 ,0,0,0}, - {9554,11666,11664 ,7383,7383,7381 ,0,0,0}, {9549,9524,11662 ,7379,7380,7379 ,0,0,0}, - {9551,9549,11661 ,7378,7379,7378 ,0,0,0}, {11663,9528,11659 ,7380,7377,7377 ,0,0,0}, - {11662,9524,11663 ,7379,7380,7380 ,0,0,0}, {9533,11659,9528 ,1435,7377,7377 ,0,0,0}, - {11660,9530,11671 ,1398,1398,1398 ,0,0,0}, {9530,11660,9533 ,1398,1398,1398 ,0,0,0}, - {11672,11673,9655 ,7389,7390,7390 ,0,0,0}, {11674,9651,11675 ,7391,7391,7392 ,0,0,0}, - {9653,9562,11676 ,7392,7393,7393 ,0,0,0}, {9643,11677,11678 ,7394,7395,7394 ,0,0,0}, - {9648,11679,9647 ,7396,7396,7395 ,0,0,0}, {9638,11680,11681 ,7397,7398,7397 ,0,0,0}, - {11680,9638,9642 ,7398,7397,7398 ,0,0,0}, {11682,9636,11681 ,7399,7399,7397 ,0,0,0}, - {9638,11681,9636 ,7397,7397,7399 ,0,0,0}, {11682,11671,9530 ,7399,1359,1359 ,0,0,0}, - {9530,9636,11682 ,1359,7399,7399 ,0,0,0}, {11675,9653,11676 ,7392,7392,7393 ,0,0,0}, - {9642,9643,11678 ,7398,7394,7394 ,0,0,0}, {11678,11680,9642 ,7394,7398,7398 ,0,0,0}, - {11677,9643,9647 ,7395,7394,7395 ,0,0,0}, {11674,11679,9648 ,7391,7396,7396 ,0,0,0}, - {9647,11679,11677 ,7395,7396,7395 ,0,0,0}, {9653,11675,9651 ,7392,7392,7391 ,0,0,0}, - {9648,9651,11674 ,7396,7391,7391 ,0,0,0}, {9655,11673,9562 ,7390,7390,7393 ,0,0,0}, - {9562,11673,11676 ,7393,7390,7393 ,0,0,0}, {11672,9655,9521 ,7389,7390,7400 ,0,0,0}, - {11670,11672,9521 ,7401,7402,7402 ,0,0,0}, {11670,9521,9571 ,7401,7402,7401 ,0,0,0}, - {11682,11663,11659 ,7403,7403,7404 ,0,0,0}, {11668,11676,11667 ,7375,7375,730 ,0,0,0}, - {11664,11674,11665 ,7375,730,730 ,0,0,0}, {11675,11668,11665 ,730,7375,730 ,0,0,0}, - {11661,11677,11666 ,7373,7375,7373 ,0,0,0}, {11679,11664,11666 ,730,7375,7373 ,0,0,0}, - {11662,11681,11680 ,7405,7406,730 ,0,0,0}, {11678,11661,11662 ,7373,7373,7405 ,0,0,0}, - {11682,11681,11663 ,7403,7406,7403 ,0,0,0}, {11659,11660,11671 ,7404,730,7407 ,0,0,0}, - {11671,11682,11659 ,7407,7403,7404 ,0,0,0}, {11681,11662,11663 ,7406,7405,7403 ,0,0,0}, - {11678,11662,11680 ,7373,7405,730 ,0,0,0}, {11677,11661,11678 ,7375,7373,7373 ,0,0,0}, - {11679,11666,11677 ,730,7373,7375 ,0,0,0}, {11674,11664,11679 ,730,7375,730 ,0,0,0}, - {11675,11665,11674 ,730,730,730 ,0,0,0}, {11676,11668,11675 ,7375,7375,730 ,0,0,0}, - {11673,11667,11676 ,730,730,7375 ,0,0,0}, {11669,11673,11672 ,7373,730,730 ,0,0,0}, - {11673,11669,11667 ,730,7373,730 ,0,0,0}, {11669,11672,11670 ,7373,730,7405 ,0,0,0}, - {11683,11442,11684 ,7408,7409,7410 ,0,0,0}, {11685,11440,11686 ,7411,7412,7412 ,0,0,0}, - {11687,11439,11443 ,7413,7413,7408 ,0,0,0}, {11460,11688,11689 ,7414,7414,7415 ,0,0,0}, - {11441,11690,11461 ,7411,7416,7416 ,0,0,0}, {11437,11691,11438 ,7417,7418,7418 ,0,0,0}, - {11692,11437,11436 ,7417,7417,7415 ,0,0,0}, {11434,11438,11693 ,7419,7418,7419 ,0,0,0}, - {11691,11693,11438 ,7418,7419,7418 ,0,0,0}, {11694,11433,11434 ,1790,1790,7419 ,0,0,0}, - {11434,11693,11694 ,7419,7419,1790 ,0,0,0}, {11689,11692,11436 ,7415,7417,7415 ,0,0,0}, - {11692,11691,11437 ,7417,7418,7417 ,0,0,0}, {11461,11688,11460 ,7416,7414,7414 ,0,0,0}, - {11460,11689,11436 ,7414,7415,7415 ,0,0,0}, {11441,11685,11690 ,7411,7411,7416 ,0,0,0}, - {11461,11690,11688 ,7416,7416,7414 ,0,0,0}, {11440,11439,11686 ,7412,7413,7412 ,0,0,0}, - {11441,11440,11685 ,7411,7412,7411 ,0,0,0}, {11687,11443,11683 ,7413,7408,7408 ,0,0,0}, - {11686,11439,11687 ,7412,7413,7413 ,0,0,0}, {11442,11683,11443 ,7409,7408,7408 ,0,0,0}, - {11463,11695,11684 ,7420,7420,7421 ,0,0,0}, {11463,11684,11442 ,7420,7421,7421 ,0,0,0}, - {11696,11697,11472 ,1711,7422,7422 ,0,0,0}, {11698,11470,11699 ,7423,7423,7424 ,0,0,0}, - {11471,11462,11700 ,7424,7425,7425 ,0,0,0}, {11467,11701,11702 ,7426,7427,7426 ,0,0,0}, - {11469,11703,11468 ,7428,7428,7427 ,0,0,0}, {11465,11704,11705 ,7429,7430,7429 ,0,0,0}, - {11704,11465,11466 ,7430,7429,7430 ,0,0,0}, {11706,11464,11705 ,7431,7431,7429 ,0,0,0}, - {11465,11705,11464 ,7429,7429,7431 ,0,0,0}, {11706,11695,11463 ,7431,7432,82 ,0,0,0}, - {11463,11464,11706 ,82,7431,7431 ,0,0,0}, {11699,11471,11700 ,7424,7424,7425 ,0,0,0}, - {11466,11467,11702 ,7430,7426,7426 ,0,0,0}, {11702,11704,11466 ,7426,7430,7430 ,0,0,0}, - {11701,11467,11468 ,7427,7426,7427 ,0,0,0}, {11698,11703,11469 ,7423,7428,7428 ,0,0,0}, - {11468,11703,11701 ,7427,7428,7427 ,0,0,0}, {11471,11699,11470 ,7424,7424,7423 ,0,0,0}, - {11469,11470,11698 ,7428,7423,7423 ,0,0,0}, {11472,11697,11462 ,7422,7422,7425 ,0,0,0}, - {11462,11697,11700 ,7425,7422,7425 ,0,0,0}, {11696,11472,11435 ,1711,7422,1711 ,0,0,0}, - {11435,11694,11696 ,2197,2197,2197 ,0,0,0}, {11694,11435,11433 ,2197,2197,2197 ,0,0,0}, - {11694,11697,11696 ,7433,730,730 ,0,0,0}, {11685,11686,11702 ,7375,7375,730 ,0,0,0}, - {11689,11699,11692 ,730,730,730 ,0,0,0}, {11699,11700,11691 ,730,7376,730 ,0,0,0}, - {11690,11703,11688 ,730,730,7376 ,0,0,0}, {11698,11689,11688 ,730,730,7376 ,0,0,0}, - {11701,11690,11685 ,7376,730,7375 ,0,0,0}, {11705,11687,11683 ,7375,7376,7376 ,0,0,0}, - {11686,11687,11704 ,7375,7376,7375 ,0,0,0}, {11684,11706,11683 ,7374,7376,7376 ,0,0,0}, - {11705,11683,11706 ,7375,7376,7376 ,0,0,0}, {11695,11706,11684 ,730,7376,7374 ,0,0,0}, - {11704,11687,11705 ,7375,7376,7375 ,0,0,0}, {11702,11686,11704 ,730,7375,7375 ,0,0,0}, - {11701,11685,11702 ,7376,7375,730 ,0,0,0}, {11703,11690,11701 ,730,730,7376 ,0,0,0}, - {11698,11688,11703 ,730,7376,730 ,0,0,0}, {11699,11689,11698 ,730,730,730 ,0,0,0}, - {11699,11691,11692 ,730,730,730 ,0,0,0}, {11700,11693,11691 ,7376,7433,730 ,0,0,0}, - {11694,11693,11697 ,7433,7433,730 ,0,0,0}, {11700,11697,11693 ,7376,730,7433 ,0,0,0}, - {10870,9043,9041 ,7434,4326,7435 ,0,0,0}, {11042,10970,10867 ,7436,7437,7438 ,0,0,0}, - {10871,10969,10872 ,7439,7440,7441 ,0,0,0}, {10877,10865,11013 ,7442,7443,7444 ,0,0,0}, - {10875,11018,11076 ,7445,7446,7447 ,0,0,0}, {11021,11020,10855 ,7448,7449,7450 ,0,0,0}, - {11005,10873,10874 ,7451,7452,7453 ,0,0,0}, {10849,10848,10920 ,7454,7455,7456 ,0,0,0}, - {10851,10909,10911 ,7457,7458,7459 ,0,0,0}, {10839,10956,10843 ,7460,7461,7462 ,0,0,0}, - {10962,10921,10847 ,7463,7464,7465 ,0,0,0}, {10954,10881,10833 ,7466,7467,7468 ,0,0,0}, - {10957,10835,10881 ,7469,7470,7467 ,0,0,0}, {11026,10830,10837 ,7471,7472,7473 ,0,0,0}, - {10834,10830,10955 ,7474,7472,7475 ,0,0,0}, {10949,10838,10842 ,7476,7477,7478 ,0,0,0}, - {10837,10838,10948 ,7473,7477,7479 ,0,0,0}, {10845,10932,10842 ,7480,7481,7478 ,0,0,0}, - {10949,10842,10932 ,7476,7478,7481 ,0,0,0}, {10845,10854,10924 ,7480,7482,7483 ,0,0,0}, - {10924,10932,10845 ,7483,7481,7480 ,0,0,0}, {10898,10854,10853 ,7484,7482,7485 ,0,0,0}, - {10854,10898,10924 ,7482,7484,7483 ,0,0,0}, {10857,10887,10853 ,7486,7487,7485 ,0,0,0}, - {10898,10853,10887 ,7484,7485,7487 ,0,0,0}, {10857,10862,10885 ,7486,7488,7489 ,0,0,0}, - {10885,10887,10857 ,7489,7487,7486 ,0,0,0}, {10935,10862,10861 ,7490,7488,7491 ,0,0,0}, - {10862,10935,10885 ,7488,7490,7489 ,0,0,0}, {9075,10883,10861 ,82,7492,7491 ,0,0,0}, - {10935,10861,10883 ,7490,7491,7492 ,0,0,0}, {9074,10883,9075 ,82,7492,82 ,0,0,0}, - {10948,11026,10837 ,7479,7471,7473 ,0,0,0}, {10948,10838,10949 ,7479,7477,7476 ,0,0,0}, - {10834,10955,10954 ,7474,7475,7466 ,0,0,0}, {10955,10830,11026 ,7475,7472,7471 ,0,0,0}, - {10881,10835,10833 ,7467,7470,7468 ,0,0,0}, {10954,10833,10834 ,7466,7468,7474 ,0,0,0}, - {10957,10956,10839 ,7469,7461,7460 ,0,0,0}, {10957,10839,10835 ,7469,7460,7470 ,0,0,0}, - {10843,10962,10847 ,7462,7463,7465 ,0,0,0}, {10956,10962,10843 ,7461,7463,7462 ,0,0,0}, - {10848,10921,10920 ,7455,7464,7456 ,0,0,0}, {10847,10921,10848 ,7465,7464,7455 ,0,0,0}, - {10851,10849,10909 ,7457,7454,7458 ,0,0,0}, {10849,10920,10909 ,7454,7456,7458 ,0,0,0}, - {11021,10856,10911 ,7448,7493,7459 ,0,0,0}, {10856,10851,10911 ,7493,7457,7459 ,0,0,0}, - {11020,10874,10855 ,7449,7453,7450 ,0,0,0}, {11021,10855,10856 ,7448,7450,7493 ,0,0,0}, - {11005,11014,10873 ,7451,7494,7452 ,0,0,0}, {11020,11005,10874 ,7449,7451,7453 ,0,0,0}, - {11013,10865,11014 ,7444,7443,7494 ,0,0,0}, {10873,11014,10865 ,7452,7494,7443 ,0,0,0}, - {10875,10877,11018 ,7445,7442,7446 ,0,0,0}, {10877,11013,11018 ,7442,7444,7446 ,0,0,0}, - {11042,10866,11076 ,7436,7495,7447 ,0,0,0}, {10866,10875,11076 ,7495,7445,7447 ,0,0,0}, - {10970,10871,10867 ,7437,7439,7438 ,0,0,0}, {11042,10867,10866 ,7436,7438,7495 ,0,0,0}, - {10969,10971,10872 ,7440,7496,7441 ,0,0,0}, {10970,10969,10871 ,7437,7440,7439 ,0,0,0}, - {9043,10870,10971 ,4326,7434,7496 ,0,0,0}, {10872,10971,10870 ,7441,7496,7434 ,0,0,0}, - {11707,8991,8990 ,7497,763,7498 ,0,0,0}, {11708,10863,11709 ,7499,7500,7501 ,0,0,0}, - {11710,10876,10868 ,7502,7503,7504 ,0,0,0}, {11711,11712,10852 ,7505,7506,7507 ,0,0,0}, - {11713,11714,10860 ,7508,7509,7510 ,0,0,0}, {11715,10840,11716 ,7511,7512,7513 ,0,0,0}, - {10844,11717,11716 ,7514,7515,7513 ,0,0,0}, {11718,10832,11719 ,7516,7517,7518 ,0,0,0}, - {10831,11715,11719 ,7519,7511,7518 ,0,0,0}, {11720,10846,10841 ,7520,7521,7522 ,0,0,0}, - {10841,11718,11720 ,7522,7516,7520 ,0,0,0}, {10846,11721,10858 ,7521,7523,7524 ,0,0,0}, - {11721,10846,11720 ,7523,7521,7520 ,0,0,0}, {10859,10858,11722 ,7525,7524,7526 ,0,0,0}, - {11721,11722,10858 ,7523,7526,7524 ,0,0,0}, {9009,10859,11723 ,761,7525,7527 ,0,0,0}, - {10859,11722,11723 ,7525,7526,7527 ,0,0,0}, {9008,10859,9009 ,761,7525,761 ,0,0,0}, - {10831,11719,10832 ,7519,7518,7517 ,0,0,0}, {10841,10832,11718 ,7522,7517,7516 ,0,0,0}, - {10836,10840,11715 ,7528,7512,7511 ,0,0,0}, {10831,10836,11715 ,7519,7528,7511 ,0,0,0}, - {10850,11717,10844 ,7529,7515,7514 ,0,0,0}, {10840,10844,11716 ,7512,7514,7513 ,0,0,0}, - {10852,11712,10850 ,7507,7506,7529 ,0,0,0}, {11717,10850,11712 ,7515,7529,7506 ,0,0,0}, - {10860,11714,10852 ,7510,7509,7507 ,0,0,0}, {11714,11711,10852 ,7509,7505,7507 ,0,0,0}, - {10864,11708,11713 ,7530,7499,7508 ,0,0,0}, {10864,11713,10860 ,7530,7508,7510 ,0,0,0}, - {10863,10876,11709 ,7500,7503,7501 ,0,0,0}, {10864,10863,11708 ,7530,7500,7499 ,0,0,0}, - {11710,10868,11707 ,7502,7504,7497 ,0,0,0}, {11709,10876,11710 ,7501,7503,7502 ,0,0,0}, - {8991,11707,10869 ,763,7497,7531 ,0,0,0}, {11707,10868,10869 ,7497,7504,7531 ,0,0,0}, - {11722,11721,11720 ,7015,7532,7017 ,0,0,0}, {8995,11709,11710 ,7016,7015,7015 ,0,0,0}, - {11715,11718,11719 ,7533,7534,7535 ,0,0,0}, {11720,11715,11722 ,7017,7533,7015 ,0,0,0}, - {11722,11715,11723 ,7015,7533,7016 ,0,0,0}, {11715,11720,11718 ,7533,7017,7534 ,0,0,0}, - {11716,11723,11715 ,7536,7016,7533 ,0,0,0}, {11723,11717,9009 ,7016,730,7015 ,0,0,0}, - {11717,11723,11716 ,730,7016,7536 ,0,0,0}, {11714,9004,11711 ,7535,730,7320 ,0,0,0}, - {11717,11712,9009 ,730,6104,7015 ,0,0,0}, {11708,8998,11713 ,730,730,7534 ,0,0,0}, - {9001,11714,11713 ,7537,7535,7534 ,0,0,0}, {11707,8990,8994 ,7016,7015,730 ,0,0,0}, - {11710,8996,8995 ,7015,730,7016 ,0,0,0}, {8987,8975,8989 ,730,730,730 ,0,0,0}, - {8989,8973,8990 ,730,7016,7015 ,0,0,0}, {8986,8983,8987 ,730,730,730 ,0,0,0}, - {8975,8981,8980 ,730,7016,7016 ,0,0,0}, {8983,8975,8987 ,730,730,730 ,0,0,0}, - {8975,8974,8989 ,730,730,730 ,0,0,0}, {8975,8983,8981 ,730,730,7016 ,0,0,0}, - {8973,8994,8990 ,7016,730,7015 ,0,0,0}, {8974,8973,8989 ,730,7016,730 ,0,0,0}, - {8996,11710,8994 ,730,7015,730 ,0,0,0}, {8994,11710,11707 ,730,7015,7016 ,0,0,0}, - {8995,8998,11709 ,7016,730,7015 ,0,0,0}, {11713,8998,9000 ,7534,730,7537 ,0,0,0}, - {11709,8998,11708 ,7015,730,730 ,0,0,0}, {11713,9000,9001 ,7534,7537,7537 ,0,0,0}, - {9004,11712,11711 ,730,6104,7320 ,0,0,0}, {11714,9001,9004 ,7535,7537,730 ,0,0,0}, - {9009,11712,9006 ,7015,6104,730 ,0,0,0}, {9004,9006,11712 ,730,730,6104 ,0,0,0}, - {9918,9917,11724 ,7538,7539,7540 ,0,0,0}, {11725,9909,9918 ,7541,7542,7538 ,0,0,0}, - {11725,11726,9909 ,7541,82,7542 ,0,0,0}, {11724,11725,9918 ,7540,7541,7538 ,0,0,0}, - {9917,10288,11727 ,7539,7543,7544 ,0,0,0}, {9947,9946,11728 ,7545,7546,7547 ,0,0,0}, - {11729,11727,10288 ,7548,7544,7543 ,0,0,0}, {10288,9947,11729 ,7543,7545,7548 ,0,0,0}, - {11728,11729,9947 ,7547,7548,7545 ,0,0,0}, {9917,11727,11724 ,7539,7544,7540 ,0,0,0}, - {11728,9946,11730 ,7547,7546,7549 ,0,0,0}, {9945,11731,11730 ,7550,7551,7549 ,0,0,0}, - {11730,9946,9945 ,7549,7546,7550 ,0,0,0}, {11731,9945,9920 ,7551,7550,7552 ,0,0,0}, - {9933,11732,9920 ,7553,7554,7552 ,0,0,0}, {9933,9923,11733 ,7553,7555,7556 ,0,0,0}, - {9933,11733,11732 ,7553,7556,7554 ,0,0,0}, {11734,9914,11735 ,7557,7558,7559 ,0,0,0}, - {11733,9923,11734 ,7556,7555,7557 ,0,0,0}, {11734,9923,9914 ,7557,7555,7558 ,0,0,0}, - {9914,9916,11735 ,7558,7559,7559 ,0,0,0}, {11731,9920,11732 ,7551,7552,7554 ,0,0,0}, - {9910,11726,11736 ,7560,82,7561 ,0,0,0}, {11726,9910,9909 ,82,7560,7542 ,0,0,0}, - {11737,9952,11736 ,7562,7563,7561 ,0,0,0}, {9910,11736,9952 ,7560,7561,7563 ,0,0,0}, - {11737,11738,10166 ,7562,7564,7565 ,0,0,0}, {10166,9952,11737 ,7565,7563,7562 ,0,0,0}, - {9991,11738,11739 ,7566,7564,7567 ,0,0,0}, {11738,9991,10166 ,7564,7566,7565 ,0,0,0}, - {11740,9992,11739 ,7568,7569,7567 ,0,0,0}, {9991,11739,9992 ,7566,7567,7569 ,0,0,0}, - {11740,11741,9988 ,7568,7570,7571 ,0,0,0}, {9988,9992,11740 ,7571,7569,7568 ,0,0,0}, - {9956,11741,11742 ,7572,7570,7573 ,0,0,0}, {11741,9956,9988 ,7570,7572,7571 ,0,0,0}, - {11743,9975,11742 ,7574,7575,7573 ,0,0,0}, {9956,11742,9975 ,7572,7573,7575 ,0,0,0}, - {11743,11744,9976 ,7574,7576,7577 ,0,0,0}, {9976,9975,11743 ,7577,7575,7574 ,0,0,0}, - {9978,11744,11745 ,7578,7576,7579 ,0,0,0}, {11744,9978,9976 ,7576,7578,7577 ,0,0,0}, - {9978,11745,9979 ,7578,7579,7580 ,0,0,0}, {9979,11745,11746 ,7580,7579,7580 ,0,0,0}, - {10804,10810,11746 ,7581,7581,7581 ,0,0,0}, {11746,9416,10795 ,7581,7581,7581 ,0,0,0}, - {10795,10801,11746 ,7581,7581,7581 ,0,0,0}, {10815,11746,10810 ,7581,7581,7581 ,0,0,0}, - {10801,10804,11746 ,7581,7581,7581 ,0,0,0}, {10819,10778,11746 ,7581,7581,7581 ,0,0,0}, - {10819,11746,10815 ,7581,7581,7581 ,0,0,0}, {10778,10790,11746 ,7581,7581,7581 ,0,0,0}, - {9979,11746,10789 ,7581,7581,7581 ,0,0,0}, {10790,10789,11746 ,7581,7581,7581 ,0,0,0}, - {11735,9916,10362 ,7582,7582,7582 ,0,0,0}, {10362,10389,11735 ,7582,7582,7582 ,0,0,0}, - {11735,10375,10355 ,7582,7582,7582 ,0,0,0}, {10389,10375,11735 ,7582,7582,7582 ,0,0,0}, - {11735,10357,10371 ,7582,7582,7582 ,0,0,0}, {10355,10357,11735 ,7582,7582,7582 ,0,0,0}, - {11735,10364,10348 ,7582,7582,7582 ,0,0,0}, {10371,10364,11735 ,7582,7582,7582 ,0,0,0}, - {10352,11735,10347 ,7582,7582,7582 ,0,0,0}, {10348,10347,11735 ,7582,7582,7582 ,0,0,0}, - {11743,9421,9419 ,726,726,726 ,0,0,0}, {11736,11726,9421 ,726,726,726 ,0,0,0}, - {11745,11744,9419 ,726,726,726 ,0,0,0}, {9419,11744,11743 ,726,726,726 ,0,0,0}, - {9419,9413,11746 ,726,726,726 ,0,0,0}, {11746,11745,9419 ,726,726,726 ,0,0,0}, - {9422,9416,11746 ,7583,7583,726 ,0,0,0}, {9422,11746,9413 ,7583,726,726 ,0,0,0}, - {11743,11742,9421 ,726,726,726 ,0,0,0}, {9421,11741,11740 ,726,726,726 ,0,0,0}, - {11742,11741,9421 ,726,726,726 ,0,0,0}, {9421,11739,11738 ,726,726,726 ,0,0,0}, - {11740,11739,9421 ,726,726,726 ,0,0,0}, {9421,11737,11736 ,726,726,726 ,0,0,0}, - {11738,11737,9421 ,726,726,726 ,0,0,0}, {11725,9421,11726 ,726,726,726 ,0,0,0}, - {11724,11727,9421 ,726,726,726 ,0,0,0}, {11724,9421,11725 ,726,726,726 ,0,0,0}, - {11729,11728,9421 ,726,726,726 ,0,0,0}, {11729,9421,11727 ,726,726,726 ,0,0,0}, - {11730,11731,9421 ,726,726,726 ,0,0,0}, {11730,9421,11728 ,726,726,726 ,0,0,0}, - {11732,11733,9421 ,726,726,726 ,0,0,0}, {11732,9421,11731 ,726,726,726 ,0,0,0}, - {9421,11733,11473 ,726,726,726 ,0,0,0}, {11735,11473,11734 ,726,726,726 ,0,0,0}, - {11473,11733,11734 ,726,726,726 ,0,0,0}, {11474,11473,11735 ,726,726,726 ,0,0,0}, - {10352,11486,11735 ,7583,726,726 ,0,0,0}, {11474,11735,11486 ,726,726,726 ,0,0,0}, - {8951,11747,10205 ,7584,7585,7586 ,0,0,0}, {11748,10178,11749 ,7587,7588,7589 ,0,0,0}, - {10216,10138,11750 ,7590,7591,7592 ,0,0,0}, {9905,11751,10167 ,7593,7594,7595 ,0,0,0}, - {11752,11753,9908 ,4334,7596,7597 ,0,0,0}, {11754,9913,11755 ,7598,7599,7600 ,0,0,0}, - {9912,10170,11756 ,7601,7602,7603 ,0,0,0}, {9970,9962,11757 ,7604,7605,7606 ,0,0,0}, - {9966,11758,9962 ,7607,7608,7605 ,0,0,0}, {9967,11759,11760 ,7609,7610,7611 ,0,0,0}, - {9970,11761,9969 ,7604,7612,7613 ,0,0,0}, {11762,9980,11760 ,7614,7615,7611 ,0,0,0}, - {9967,11760,9980 ,7609,7611,7615 ,0,0,0}, {11762,11763,9973 ,7614,7616,7617 ,0,0,0}, - {9973,9980,11762 ,7617,7615,7614 ,0,0,0}, {9982,11763,11764 ,7618,7616,7619 ,0,0,0}, - {11763,9982,9973 ,7616,7618,7617 ,0,0,0}, {11765,9942,11764 ,7620,7621,7619 ,0,0,0}, - {9982,11764,9942 ,7618,7619,7621 ,0,0,0}, {11765,8970,8971 ,7620,7622,4289 ,0,0,0}, - {8971,9942,11765 ,4289,7621,7620 ,0,0,0}, {11757,9962,11758 ,7606,7605,7608 ,0,0,0}, - {11759,9969,11761 ,7610,7613,7612 ,0,0,0}, {9969,11759,9967 ,7613,7610,7609 ,0,0,0}, - {11757,11761,9970 ,7606,7612,7604 ,0,0,0}, {11754,11758,9966 ,7598,7608,7607 ,0,0,0}, - {9912,11756,11755 ,7601,7603,7600 ,0,0,0}, {9912,11755,9913 ,7601,7600,7599 ,0,0,0}, - {9966,9913,11754 ,7607,7599,7598 ,0,0,0}, {10170,11766,11756 ,7602,7623,7603 ,0,0,0}, - {11766,10170,10167 ,7623,7602,7595 ,0,0,0}, {11753,11751,9905 ,7596,7594,7593 ,0,0,0}, - {11751,11766,10167 ,7594,7623,7595 ,0,0,0}, {9908,11753,9905 ,7597,7596,7593 ,0,0,0}, - {10206,11748,11752 ,7624,7587,4334 ,0,0,0}, {10206,11752,9908 ,7624,4334,7597 ,0,0,0}, - {10178,10216,11749 ,7588,7590,7589 ,0,0,0}, {10206,10178,11748 ,7624,7588,7587 ,0,0,0}, - {10138,11747,11750 ,7591,7585,7592 ,0,0,0}, {11749,10216,11750 ,7589,7590,7592 ,0,0,0}, - {8951,10205,8949 ,7584,7586,4535 ,0,0,0}, {11747,10138,10205 ,7585,7591,7586 ,0,0,0}, - {11753,8962,11751 ,726,7625,726 ,0,0,0}, {11762,11760,11763 ,726,726,726 ,0,0,0}, - {11765,11764,11763 ,726,726,726 ,0,0,0}, {11761,11757,11759 ,726,726,726 ,0,0,0}, - {11763,11760,11757 ,726,726,726 ,0,0,0}, {11763,11757,11758 ,726,726,726 ,0,0,0}, - {11759,11757,11760 ,726,726,726 ,0,0,0}, {11758,11754,11765 ,726,726,726 ,0,0,0}, - {11765,11763,11758 ,726,726,726 ,0,0,0}, {11754,11755,8968 ,726,726,7626 ,0,0,0}, - {11754,8970,11765 ,726,726,726 ,0,0,0}, {11766,8964,8965 ,726,726,726 ,0,0,0}, - {8965,8968,11756 ,726,7626,726 ,0,0,0}, {11749,8953,8956 ,726,7627,726 ,0,0,0}, - {8958,8959,11752 ,726,7625,726 ,0,0,0}, {11750,8952,8953 ,7626,7627,7627 ,0,0,0}, - {8948,8933,8932 ,7626,7625,726 ,0,0,0}, {8951,8932,11747 ,726,726,726 ,0,0,0}, - {8944,8935,8945 ,726,7627,7625 ,0,0,0}, {8935,8944,8942 ,7627,726,726 ,0,0,0}, - {8944,8945,8939 ,726,7625,7627 ,0,0,0}, {8945,8948,8947 ,7625,7626,7628 ,0,0,0}, - {8935,8933,8945 ,7627,7625,7625 ,0,0,0}, {8935,8942,8936 ,7627,726,726 ,0,0,0}, - {8951,8948,8932 ,726,7626,726 ,0,0,0}, {8948,8945,8933 ,7626,7625,7625 ,0,0,0}, - {8930,11747,8932 ,726,726,726 ,0,0,0}, {11750,11747,8952 ,7626,726,7627 ,0,0,0}, - {8930,8952,11747 ,726,7627,726 ,0,0,0}, {11749,8956,11748 ,726,726,726 ,0,0,0}, - {8953,11749,11750 ,7627,726,7626 ,0,0,0}, {8958,11752,11748 ,726,726,726 ,0,0,0}, - {11748,8956,8958 ,726,726,726 ,0,0,0}, {8959,8962,11753 ,7625,7625,726 ,0,0,0}, - {11752,8959,11753 ,726,7625,726 ,0,0,0}, {11751,8964,11766 ,726,726,726 ,0,0,0}, - {11751,8962,8964 ,726,7625,726 ,0,0,0}, {8968,11755,11756 ,7626,726,726 ,0,0,0}, - {11756,11766,8965 ,726,726,726 ,0,0,0}, {8968,8970,11754 ,7626,726,726 ,0,0,0}, - {8912,11767,10186 ,4303,7629,7630 ,0,0,0}, {10109,10143,11768 ,7631,7632,7633 ,0,0,0}, - {10275,10187,11769 ,7634,7635,7636 ,0,0,0}, {10171,11770,10172 ,7637,7638,7639 ,0,0,0}, - {11771,11772,10108 ,7640,7641,7642 ,0,0,0}, {11773,11774,9953 ,7643,7644,7645 ,0,0,0}, - {11773,10173,11775 ,7643,7646,7647 ,0,0,0}, {11776,11777,9951 ,7648,7649,7650 ,0,0,0}, - {9951,9950,11776 ,7650,7651,7648 ,0,0,0}, {10134,11777,11778 ,7652,7649,7653 ,0,0,0}, - {11777,10134,9951 ,7649,7652,7650 ,0,0,0}, {11779,10133,11778 ,7654,7655,7653 ,0,0,0}, - {10134,11778,10133 ,7652,7653,7655 ,0,0,0}, {11779,8926,8927 ,7654,126,7656 ,0,0,0}, - {8927,10133,11779 ,7656,7655,7654 ,0,0,0}, {11770,10171,11772 ,7638,7637,7641 ,0,0,0}, - {11774,9950,9953 ,7644,7651,7645 ,0,0,0}, {11776,9950,11774 ,7648,7651,7644 ,0,0,0}, - {11768,10143,11780 ,7633,7632,7657 ,0,0,0}, {11775,10173,10172 ,7647,7646,7639 ,0,0,0}, - {11773,9953,10173 ,7643,7645,7646 ,0,0,0}, {11770,11775,10172 ,7638,7647,7639 ,0,0,0}, - {10108,11772,10171 ,7642,7641,7637 ,0,0,0}, {10109,11768,11771 ,7631,7633,7640 ,0,0,0}, - {11771,10108,10109 ,7640,7642,7631 ,0,0,0}, {10187,11767,11769 ,7635,7629,7636 ,0,0,0}, - {11780,10275,11769 ,7657,7634,7636 ,0,0,0}, {10143,10275,11780 ,7632,7634,7657 ,0,0,0}, - {8912,10186,8913 ,4303,7630,82 ,0,0,0}, {11767,10187,10186 ,7629,7635,7630 ,0,0,0}, - {11774,11773,8909 ,726,7658,7659 ,0,0,0}, {11767,11772,11768 ,7660,7661,726 ,0,0,0}, - {11767,11770,11772 ,7660,7661,7661 ,0,0,0}, {8911,11775,8912 ,7659,726,726 ,0,0,0}, - {11771,11768,11772 ,7661,726,7661 ,0,0,0}, {11769,11767,11768 ,7659,7660,726 ,0,0,0}, - {11770,11767,8912 ,7661,7660,726 ,0,0,0}, {11780,11769,11768 ,726,7659,726 ,0,0,0}, - {11770,8912,11775 ,7661,726,726 ,0,0,0}, {8909,11773,8911 ,7659,7658,7659 ,0,0,0}, - {8911,11773,11775 ,7659,7658,726 ,0,0,0}, {8907,11776,11774 ,726,5488,726 ,0,0,0}, - {8909,8907,11774 ,7659,726,726 ,0,0,0}, {8905,11776,8907 ,726,5488,726 ,0,0,0}, - {8905,11777,11776 ,726,7662,5488 ,0,0,0}, {11778,11777,8902 ,5471,7662,7661 ,0,0,0}, - {8905,8902,11777 ,726,7661,7662 ,0,0,0}, {8901,11778,8902 ,726,5471,7661 ,0,0,0}, - {11779,8901,8899 ,7663,726,7661 ,0,0,0}, {8901,11779,11778 ,726,7663,5471 ,0,0,0}, - {8898,8926,8899 ,7658,726,7661 ,0,0,0}, {11779,8899,8926 ,7663,7661,726 ,0,0,0}, - {8918,8914,8915 ,7658,7664,726 ,0,0,0}, {8918,8924,8914 ,7658,7665,7664 ,0,0,0}, - {8921,8918,8920 ,7666,7658,7667 ,0,0,0}, {8921,8924,8918 ,7666,7665,7658 ,0,0,0}, - {8926,8898,8924 ,726,7658,7665 ,0,0,0}, {8914,8924,8898 ,7664,7665,7658 ,0,0,0}, - {11781,9452,11782 ,726,726,726 ,0,0,0}, {9452,11783,11782 ,726,726,726 ,0,0,0}, - {11784,11785,9452 ,726,726,726 ,0,0,0}, {9452,11781,11784 ,726,726,726 ,0,0,0}, - {11786,11787,9452 ,726,726,726 ,0,0,0}, {11786,9452,11785 ,726,726,726 ,0,0,0}, - {9444,11788,11789 ,7583,726,7661 ,0,0,0}, {9452,11790,11791 ,726,726,726 ,0,0,0}, - {9444,11792,11793 ,7583,7658,7661 ,0,0,0}, {11794,9444,11795 ,726,7583,726 ,0,0,0}, - {11796,11797,9444 ,726,726,7583 ,0,0,0}, {11798,11795,9444 ,726,726,7583 ,0,0,0}, - {9444,11794,11799 ,7583,726,5489 ,0,0,0}, {11796,9444,11800 ,726,7583,7583 ,0,0,0}, - {9444,11797,11798 ,7583,726,726 ,0,0,0}, {9444,11801,11792 ,7583,726,7658 ,0,0,0}, - {11793,11800,9444 ,7661,7583,7583 ,0,0,0}, {11791,11788,9444 ,726,726,7583 ,0,0,0}, - {11801,9444,11789 ,726,7583,7661 ,0,0,0}, {9452,11787,11790 ,726,726,726 ,0,0,0}, - {9452,11791,9444 ,726,726,7583 ,0,0,0}, {9445,11799,9440 ,726,5489,7668 ,0,0,0}, - {11799,9445,9444 ,5489,726,7583 ,0,0,0}, {11783,9452,11802 ,726,726,726 ,0,0,0}, - {11803,9452,9450 ,726,726,726 ,0,0,0}, {9452,11803,11802 ,726,726,726 ,0,0,0}, - {11803,9450,9456 ,726,726,726 ,0,0,0}, {9906,10169,11801 ,7669,7670,7671 ,0,0,0}, - {11789,9907,9906 ,7672,7673,7669 ,0,0,0}, {11789,11788,9907 ,7672,7673,7673 ,0,0,0}, - {11801,11789,9906 ,7671,7672,7669 ,0,0,0}, {10169,10168,11792 ,7670,7674,7675 ,0,0,0}, - {9911,9965,11800 ,7676,7677,7678 ,0,0,0}, {11793,11792,10168 ,7679,7675,7674 ,0,0,0}, - {10168,9911,11793 ,7674,7676,7679 ,0,0,0}, {11800,11793,9911 ,7678,7679,7676 ,0,0,0}, - {10169,11792,11801 ,7670,7675,7671 ,0,0,0}, {11800,9965,11796 ,7678,7677,7680 ,0,0,0}, - {9964,11797,11796 ,7681,7682,7680 ,0,0,0}, {11796,9965,9964 ,7680,7677,7681 ,0,0,0}, - {11797,9964,9963 ,7682,7681,7683 ,0,0,0}, {9957,11798,9963 ,7684,7685,7683 ,0,0,0}, - {9957,9959,11795 ,7684,7686,7687 ,0,0,0}, {9957,11795,11798 ,7684,7687,7685 ,0,0,0}, - {11794,9960,11799 ,7688,7689,7690 ,0,0,0}, {11795,9959,11794 ,7687,7686,7688 ,0,0,0}, - {11794,9959,9960 ,7688,7686,7689 ,0,0,0}, {9960,9961,11799 ,7689,7690,7690 ,0,0,0}, - {11797,9963,11798 ,7682,7683,7685 ,0,0,0}, {9954,11788,11791 ,7691,7673,7692 ,0,0,0}, - {11788,9954,9907 ,7673,7691,7673 ,0,0,0}, {11790,9955,11791 ,7693,7694,7692 ,0,0,0}, - {9954,11791,9955 ,7691,7692,7694 ,0,0,0}, {11790,11787,9986 ,7693,7695,7696 ,0,0,0}, - {9986,9955,11790 ,7696,7694,7693 ,0,0,0}, {9987,11787,11786 ,7697,7695,7698 ,0,0,0}, - {11787,9987,9986 ,7695,7697,7696 ,0,0,0}, {11785,10209,11786 ,7699,7700,7698 ,0,0,0}, - {9987,11786,10209 ,7697,7698,7700 ,0,0,0}, {11785,11784,9990 ,7699,7701,7702 ,0,0,0}, - {9990,10209,11785 ,7702,7700,7699 ,0,0,0}, {9989,11784,11781 ,7703,7701,7704 ,0,0,0}, - {11784,9989,9990 ,7701,7703,7702 ,0,0,0}, {11782,10012,11781 ,7705,7706,7704 ,0,0,0}, - {9989,11781,10012 ,7703,7704,7706 ,0,0,0}, {11782,11783,10015 ,7705,7707,7708 ,0,0,0}, - {10015,10012,11782 ,7708,7706,7705 ,0,0,0}, {10016,11783,11802 ,7709,7707,7710 ,0,0,0}, - {11783,10016,10015 ,7707,7709,7708 ,0,0,0}, {10016,11802,10017 ,7709,7710,7711 ,0,0,0}, - {10017,11802,11803 ,7711,7710,7711 ,0,0,0}, {10718,11803,9456 ,7712,7712,7712 ,0,0,0}, - {11803,10719,10722 ,7712,7712,7712 ,0,0,0}, {10718,10719,11803 ,7712,7712,7712 ,0,0,0}, - {11803,10728,10733 ,7712,7712,7712 ,0,0,0}, {10722,10728,11803 ,7712,7712,7712 ,0,0,0}, - {11803,10737,10701 ,7712,7712,7712 ,0,0,0}, {10733,10737,11803 ,7712,7712,7712 ,0,0,0}, - {11803,10705,10704 ,7712,7712,7712 ,0,0,0}, {10701,10705,11803 ,7712,7712,7712 ,0,0,0}, - {11803,10704,10017 ,7712,7712,7712 ,0,0,0}, {10770,11799,9961 ,7713,7713,7713 ,0,0,0}, - {10770,10820,11799 ,7713,7713,7713 ,0,0,0}, {11799,10820,10806 ,7713,7713,7713 ,0,0,0}, - {10766,10772,11799 ,7713,7713,7713 ,0,0,0}, {10766,11799,10806 ,7713,7713,7713 ,0,0,0}, - {10772,10802,11799 ,7713,7713,7713 ,0,0,0}, {11799,10758,10757 ,7713,7713,7713 ,0,0,0}, - {10802,10758,11799 ,7713,7713,7713 ,0,0,0}, {9440,11799,10762 ,7713,7713,7713 ,0,0,0}, - {10757,10762,11799 ,7713,7713,7713 ,0,0,0}, {8875,11804,10224 ,1435,7714,7715 ,0,0,0}, - {11805,10215,11806 ,7716,7717,7718 ,0,0,0}, {10234,10223,11807 ,7719,7720,7721 ,0,0,0}, - {9895,11808,9996 ,7722,7723,7724 ,0,0,0}, {11809,11810,10237 ,7725,7726,7727 ,0,0,0}, - {11811,10018,11812 ,7728,7729,7730 ,0,0,0}, {10020,9997,11813 ,7731,7732,7733 ,0,0,0}, - {9902,10001,11814 ,7734,7735,7736 ,0,0,0}, {10006,11815,10001 ,7737,7738,7735 ,0,0,0}, - {10002,11816,11817 ,7739,7740,7741 ,0,0,0}, {9902,11818,10004 ,7734,7742,7743 ,0,0,0}, - {11819,10011,11817 ,7744,7745,7741 ,0,0,0}, {10002,11817,10011 ,7739,7741,7745 ,0,0,0}, - {11819,11820,10009 ,7744,7746,7747 ,0,0,0}, {10009,10011,11819 ,7747,7745,7744 ,0,0,0}, - {10022,11820,11821 ,7748,7746,7749 ,0,0,0}, {11820,10022,10009 ,7746,7748,7747 ,0,0,0}, - {11822,10008,11821 ,7750,7751,7749 ,0,0,0}, {10022,11821,10008 ,7748,7749,7751 ,0,0,0}, - {11822,8894,8895 ,7750,1359,1359 ,0,0,0}, {8895,10008,11822 ,1359,7751,7750 ,0,0,0}, - {11814,10001,11815 ,7736,7735,7738 ,0,0,0}, {11816,10004,11818 ,7740,7743,7742 ,0,0,0}, - {10004,11816,10002 ,7743,7740,7739 ,0,0,0}, {11814,11818,9902 ,7736,7742,7734 ,0,0,0}, - {11811,11815,10006 ,7728,7738,7737 ,0,0,0}, {10020,11813,11812 ,7731,7733,7730 ,0,0,0}, - {10020,11812,10018 ,7731,7730,7729 ,0,0,0}, {10006,10018,11811 ,7737,7729,7728 ,0,0,0}, - {9997,11823,11813 ,7732,7752,7733 ,0,0,0}, {11823,9997,9996 ,7752,7732,7724 ,0,0,0}, - {11810,11808,9895 ,7726,7723,7722 ,0,0,0}, {11808,11823,9996 ,7723,7752,7724 ,0,0,0}, - {10237,11810,9895 ,7727,7726,7722 ,0,0,0}, {10225,11805,11809 ,7753,7716,7725 ,0,0,0}, - {10225,11809,10237 ,7753,7725,7727 ,0,0,0}, {10215,10234,11806 ,7717,7719,7718 ,0,0,0}, - {10225,10215,11805 ,7753,7717,7716 ,0,0,0}, {10223,11804,11807 ,7720,7714,7721 ,0,0,0}, - {11806,10234,11807 ,7718,7719,7721 ,0,0,0}, {8875,10224,8873 ,1435,7715,1435 ,0,0,0}, - {11804,10223,10224 ,7714,7720,7715 ,0,0,0}, {11822,11821,11820 ,726,7628,7628 ,0,0,0}, - {8877,11817,8876 ,7627,7628,726 ,0,0,0}, {8856,8854,11818 ,7754,7625,7626 ,0,0,0}, - {11817,11816,8876 ,7628,726,726 ,0,0,0}, {8859,11811,8860 ,7755,726,7756 ,0,0,0}, - {8856,11818,11814 ,7754,7626,7626 ,0,0,0}, {11813,11823,8868 ,726,7628,7757 ,0,0,0}, - {11813,8866,11812 ,726,7758,7626 ,0,0,0}, {8869,8863,11808 ,7759,7760,7628 ,0,0,0}, - {11805,11806,11807 ,7625,7754,726 ,0,0,0}, {8872,8869,11810 ,7628,7759,7627 ,0,0,0}, - {8875,8872,11804 ,7628,7628,7761 ,0,0,0}, {11804,11805,11807 ,7761,7625,726 ,0,0,0}, - {8872,11809,11805 ,7628,7628,7625 ,0,0,0}, {11804,8872,11805 ,7761,7628,7625 ,0,0,0}, - {8872,8871,8869 ,7628,7762,7759 ,0,0,0}, {8872,11810,11809 ,7628,7627,7628 ,0,0,0}, - {8868,11808,8863 ,7757,7628,7760 ,0,0,0}, {11808,11810,8869 ,7628,7627,7759 ,0,0,0}, - {8868,11823,11808 ,7757,7628,7628 ,0,0,0}, {11812,8866,8860 ,7626,7758,7756 ,0,0,0}, - {8868,8866,11813 ,7757,7758,726 ,0,0,0}, {11815,11811,8859 ,7628,726,7755 ,0,0,0}, - {11811,11812,8860 ,726,7626,7756 ,0,0,0}, {11815,8857,11814 ,7628,7628,7626 ,0,0,0}, - {8857,11815,8859 ,7628,7628,7755 ,0,0,0}, {11816,11818,8854 ,726,7626,7625 ,0,0,0}, - {8857,8856,11814 ,7628,7754,7626 ,0,0,0}, {8880,11817,8877 ,7625,7628,7627 ,0,0,0}, - {8854,8876,11816 ,7625,726,726 ,0,0,0}, {11820,11819,8880 ,7628,7628,7625 ,0,0,0}, - {8880,11819,11817 ,7625,7628,7628 ,0,0,0}, {8882,11822,11820 ,7628,726,7628 ,0,0,0}, - {11820,8880,8882 ,7628,7625,7628 ,0,0,0}, {8882,8883,11822 ,7628,7628,726 ,0,0,0}, - {8886,8889,8892 ,7628,7628,7628 ,0,0,0}, {8883,8886,11822 ,7628,7628,726 ,0,0,0}, - {8892,11822,8886 ,7628,726,7628 ,0,0,0}, {8886,8888,8889 ,7628,726,7628 ,0,0,0}, - {11822,8892,8894 ,726,7628,7628 ,0,0,0}, {8836,11824,10185 ,1435,7763,7764 ,0,0,0}, - {10212,10214,11825 ,7765,7766,7767 ,0,0,0}, {10218,10219,11826 ,7768,7769,7770 ,0,0,0}, - {10184,11827,10183 ,7771,7772,7773 ,0,0,0}, {11828,11829,10213 ,7774,4221,7775 ,0,0,0}, - {11830,11831,10211 ,7776,7777,7778 ,0,0,0}, {11830,10210,11832 ,7776,7779,7780 ,0,0,0}, - {11833,11834,10027 ,7781,7782,7783 ,0,0,0}, {10027,10026,11833 ,7783,7784,7781 ,0,0,0}, - {9901,11834,11835 ,7785,7782,7786 ,0,0,0}, {11834,9901,10027 ,7782,7785,7783 ,0,0,0}, - {11836,9900,11835 ,7787,7788,7786 ,0,0,0}, {9901,11835,9900 ,7785,7786,7788 ,0,0,0}, - {11836,8850,8851 ,7787,1359,1359 ,0,0,0}, {8851,9900,11836 ,1359,7788,7787 ,0,0,0}, - {11827,10184,11829 ,7772,7771,4221 ,0,0,0}, {11831,10026,10211 ,7777,7784,7778 ,0,0,0}, - {11833,10026,11831 ,7781,7784,7777 ,0,0,0}, {11825,10214,11837 ,7767,7766,4227 ,0,0,0}, - {11832,10210,10183 ,7780,7779,7773 ,0,0,0}, {11830,10211,10210 ,7776,7778,7779 ,0,0,0}, - {11827,11832,10183 ,7772,7780,7773 ,0,0,0}, {10213,11829,10184 ,7775,4221,7771 ,0,0,0}, - {10212,11825,11828 ,7765,7767,7774 ,0,0,0}, {11828,10213,10212 ,7774,7775,7765 ,0,0,0}, - {10219,11824,11826 ,7769,7763,7770 ,0,0,0}, {11837,10218,11826 ,4227,7768,7770 ,0,0,0}, - {10214,10218,11837 ,7766,7768,4227 ,0,0,0}, {8836,10185,8837 ,1435,7764,1435 ,0,0,0}, - {11824,10219,10185 ,7763,7769,7764 ,0,0,0}, {8835,8844,8836 ,726,5471,7661 ,0,0,0}, - {11827,11830,11832 ,726,726,726 ,0,0,0}, {11833,11831,11830 ,7658,726,726 ,0,0,0}, - {11830,11827,11833 ,726,726,7658 ,0,0,0}, {11833,11829,11834 ,7658,726,7658 ,0,0,0}, - {11829,11833,11827 ,726,7658,726 ,0,0,0}, {11835,11834,11828 ,7658,7658,726 ,0,0,0}, - {11829,11828,11834 ,726,726,7658 ,0,0,0}, {11825,11836,11835 ,7658,7661,7658 ,0,0,0}, - {11835,11828,11825 ,7658,726,7658 ,0,0,0}, {11836,11837,8850 ,7661,7661,7664 ,0,0,0}, - {11837,11836,11825 ,7661,7661,7658 ,0,0,0}, {11837,11826,8850 ,7661,726,7664 ,0,0,0}, - {11826,11824,8848 ,726,726,7662 ,0,0,0}, {8842,8835,8833 ,7789,726,7658 ,0,0,0}, - {8823,8822,8829 ,5488,7668,7661 ,0,0,0}, {8839,8831,8838 ,7790,7664,7791 ,0,0,0}, - {8823,8829,8825 ,5488,7661,7792 ,0,0,0}, {8826,8825,8829 ,5488,7792,7661 ,0,0,0}, - {8831,8829,8838 ,7664,7661,7791 ,0,0,0}, {8838,8829,8822 ,7791,7661,7668 ,0,0,0}, - {8831,8839,8833 ,7664,7790,7658 ,0,0,0}, {8844,8835,8842 ,5471,726,7789 ,0,0,0}, - {8842,8833,8839 ,7789,7658,7790 ,0,0,0}, {8836,8845,11824 ,7661,7583,726 ,0,0,0}, - {8836,8844,8845 ,7661,5471,7583 ,0,0,0}, {11826,8848,8850 ,726,7662,7664 ,0,0,0}, - {8845,8848,11824 ,7583,7662,726 ,0,0,0}, {11838,9481,11839 ,7583,726,726 ,0,0,0}, - {11840,9477,11841 ,7668,726,5470 ,0,0,0}, {11840,11842,9477 ,7668,726,726 ,0,0,0}, - {9477,11843,11841 ,726,726,5470 ,0,0,0}, {11842,11844,9477 ,726,5489,726 ,0,0,0}, - {9477,11845,11846 ,726,7793,7794 ,0,0,0}, {11844,11845,9477 ,5489,7793,726 ,0,0,0}, - {9481,11847,9477 ,726,5470,726 ,0,0,0}, {11847,11843,9477 ,5470,726,726 ,0,0,0}, - {11848,11847,9481 ,726,5470,726 ,0,0,0}, {11849,9477,11846 ,7795,726,7794 ,0,0,0}, - {9481,11850,11848 ,726,5488,726 ,0,0,0}, {11849,11851,9477 ,7795,726,726 ,0,0,0}, - {11852,9477,11853 ,5485,726,7796 ,0,0,0}, {9477,11851,11853 ,726,726,7796 ,0,0,0}, - {9481,11854,11850 ,726,7583,5488 ,0,0,0}, {11855,9477,11852 ,7583,726,5485 ,0,0,0}, - {9481,11856,11854 ,726,726,7583 ,0,0,0}, {9481,11857,11858 ,726,5488,7583 ,0,0,0}, - {9481,11858,11856 ,726,7583,726 ,0,0,0}, {9478,11855,9473 ,5489,7583,7797 ,0,0,0}, - {9481,11838,11857 ,726,7583,5488 ,0,0,0}, {11855,9478,9477 ,7583,5489,726 ,0,0,0}, - {11839,9481,11859 ,726,726,7583 ,0,0,0}, {11860,9481,9488 ,726,726,726 ,0,0,0}, - {9481,11860,11859 ,726,726,7583 ,0,0,0}, {11860,9488,9487 ,726,726,726 ,0,0,0}, - {9896,9998,11840 ,7798,7799,7800 ,0,0,0}, {11841,9894,9896 ,7801,7802,7798 ,0,0,0}, - {11841,11843,9894 ,7801,7802,7802 ,0,0,0}, {11840,11841,9896 ,7800,7801,7798 ,0,0,0}, - {9998,10207,11842 ,7799,7803,7804 ,0,0,0}, {10019,10005,11845 ,7805,7806,7807 ,0,0,0}, - {11844,11842,10207 ,7808,7804,7803 ,0,0,0}, {10207,10019,11844 ,7803,7805,7808 ,0,0,0}, - {11845,11844,10019 ,7807,7808,7805 ,0,0,0}, {9998,11842,11840 ,7799,7804,7800 ,0,0,0}, - {11845,10005,11846 ,7807,7806,7809 ,0,0,0}, {10000,11849,11846 ,7810,7811,7809 ,0,0,0}, - {11846,10005,10000 ,7809,7806,7810 ,0,0,0}, {11849,10000,9999 ,7811,7810,7812 ,0,0,0}, - {9904,11851,9999 ,7813,7814,7812 ,0,0,0}, {9904,9983,11853 ,7813,7815,7816 ,0,0,0}, - {9904,11853,11851 ,7813,7816,7814 ,0,0,0}, {11852,9985,11855 ,7817,7818,7819 ,0,0,0}, - {11853,9983,11852 ,7816,7815,7817 ,0,0,0}, {11852,9983,9985 ,7817,7815,7818 ,0,0,0}, - {9985,10014,11855 ,7818,7819,7819 ,0,0,0}, {11849,9999,11851 ,7811,7812,7814 ,0,0,0}, - {10028,11843,11847 ,7820,7802,7821 ,0,0,0}, {11843,10028,9894 ,7802,7820,7802 ,0,0,0}, - {11848,10032,11847 ,7822,7823,7821 ,0,0,0}, {10028,11847,10032 ,7820,7821,7823 ,0,0,0}, - {11848,11850,9993 ,7822,7824,7825 ,0,0,0}, {9993,10032,11848 ,7825,7823,7822 ,0,0,0}, - {9994,11850,11854 ,7826,7824,7827 ,0,0,0}, {11850,9994,9993 ,7824,7826,7825 ,0,0,0}, - {11856,10069,11854 ,7828,7829,7827 ,0,0,0}, {9994,11854,10069 ,7826,7827,7829 ,0,0,0}, - {11856,11858,9897 ,7828,7830,7831 ,0,0,0}, {9897,10069,11856 ,7831,7829,7828 ,0,0,0}, - {9898,11858,11857 ,7832,7830,7833 ,0,0,0}, {11858,9898,9897 ,7830,7832,7831 ,0,0,0}, - {11838,10056,11857 ,7834,7835,7833 ,0,0,0}, {9898,11857,10056 ,7832,7833,7835 ,0,0,0}, - {11838,11839,10059 ,7834,7836,7837 ,0,0,0}, {10059,10056,11838 ,7837,7835,7834 ,0,0,0}, - {10063,11839,11859 ,7838,7836,7839 ,0,0,0}, {11839,10063,10059 ,7836,7838,7837 ,0,0,0}, - {10063,11859,10064 ,7838,7839,7840 ,0,0,0}, {10064,11859,11860 ,7840,7839,7840 ,0,0,0}, - {10631,11860,9487 ,7841,7841,7841 ,0,0,0}, {11860,10637,10640 ,7841,7841,7841 ,0,0,0}, - {10631,10637,11860 ,7841,7841,7841 ,0,0,0}, {11860,10646,10651 ,7841,7841,7841 ,0,0,0}, - {10640,10646,11860 ,7841,7841,7841 ,0,0,0}, {11860,10655,10614 ,7841,7841,7841 ,0,0,0}, - {10651,10655,11860 ,7841,7841,7841 ,0,0,0}, {11860,10626,10625 ,7841,7841,7841 ,0,0,0}, - {10614,10626,11860 ,7841,7841,7841 ,0,0,0}, {11860,10625,10064 ,7841,7841,7841 ,0,0,0}, - {10692,11855,10014 ,7842,7842,7842 ,0,0,0}, {10692,10738,11855 ,7842,7842,7842 ,0,0,0}, - {11855,10738,10724 ,7842,7842,7842 ,0,0,0}, {10686,10679,11855 ,7842,7842,7842 ,0,0,0}, - {10686,11855,10724 ,7842,7842,7842 ,0,0,0}, {10679,10720,11855 ,7842,7842,7842 ,0,0,0}, - {11855,10712,10674 ,7842,7842,7842 ,0,0,0}, {10720,10712,11855 ,7842,7842,7842 ,0,0,0}, - {9473,11855,10675 ,7842,7842,7842 ,0,0,0}, {10674,10675,11855 ,7842,7842,7842 ,0,0,0}, - {8799,11861,10249 ,1790,7843,4204 ,0,0,0}, {11862,10246,11863 ,7844,4198,4199 ,0,0,0}, - {10235,10248,11864 ,7845,7846,7847 ,0,0,0}, {10226,11865,10044 ,7848,7849,7850 ,0,0,0}, - {11866,11867,10259 ,7851,7852,7853 ,0,0,0}, {11868,10023,11869 ,7854,7855,7856 ,0,0,0}, - {10025,10042,11870 ,7857,7858,7859 ,0,0,0}, {9891,9890,11871 ,7860,7861,7862 ,0,0,0}, - {10046,11872,9890 ,7863,7864,7861 ,0,0,0}, {10050,11873,11874 ,7865,7866,7867 ,0,0,0}, - {9891,11875,10049 ,7860,7868,7869 ,0,0,0}, {11876,10055,11874 ,7870,7871,7867 ,0,0,0}, - {10050,11874,10055 ,7865,7867,7871 ,0,0,0}, {11876,11877,10053 ,7870,7872,7873 ,0,0,0}, - {10053,10055,11876 ,7873,7871,7870 ,0,0,0}, {10038,11877,11878 ,7874,7872,7875 ,0,0,0}, - {11877,10038,10053 ,7872,7874,7873 ,0,0,0}, {11879,10036,11878 ,7876,7877,7875 ,0,0,0}, - {10038,11878,10036 ,7874,7875,7877 ,0,0,0}, {11879,8818,8819 ,7876,1711,1711 ,0,0,0}, - {8819,10036,11879 ,1711,7877,7876 ,0,0,0}, {11871,9890,11872 ,7862,7861,7864 ,0,0,0}, - {11873,10049,11875 ,7866,7869,7868 ,0,0,0}, {10049,11873,10050 ,7869,7866,7865 ,0,0,0}, - {11871,11875,9891 ,7862,7868,7860 ,0,0,0}, {11868,11872,10046 ,7854,7864,7863 ,0,0,0}, - {10025,11870,11869 ,7857,7859,7856 ,0,0,0}, {10025,11869,10023 ,7857,7856,7855 ,0,0,0}, - {10046,10023,11868 ,7863,7855,7854 ,0,0,0}, {10042,11880,11870 ,7858,7878,7859 ,0,0,0}, - {11880,10042,10044 ,7878,7858,7850 ,0,0,0}, {11867,11865,10226 ,7852,7849,7848 ,0,0,0}, - {11865,11880,10044 ,7849,7878,7850 ,0,0,0}, {10259,11867,10226 ,7853,7852,7848 ,0,0,0}, - {10247,11862,11866 ,7879,7844,7851 ,0,0,0}, {10247,11866,10259 ,7879,7851,7853 ,0,0,0}, - {10246,10235,11863 ,4198,7845,4199 ,0,0,0}, {10247,10246,11862 ,7879,4198,7844 ,0,0,0}, - {10248,11861,11864 ,7846,7843,7847 ,0,0,0}, {11863,10235,11864 ,4199,7845,7847 ,0,0,0}, - {8799,10249,8797 ,1790,4204,1790 ,0,0,0}, {11861,10248,10249 ,7843,7846,4204 ,0,0,0}, - {11871,11872,11866 ,726,7880,7881 ,0,0,0}, {11861,11876,11874 ,7882,7627,7625 ,0,0,0}, - {11867,11868,11865 ,7883,7758,726 ,0,0,0}, {11880,11865,11868 ,7884,726,7758 ,0,0,0}, - {11869,11870,11880 ,7880,7761,7884 ,0,0,0}, {11868,11867,11872 ,7758,7883,7880 ,0,0,0}, - {11869,11880,11868 ,7880,7884,7758 ,0,0,0}, {11871,11866,11862 ,726,7881,7885 ,0,0,0}, - {11872,11867,11866 ,7880,7883,7881 ,0,0,0}, {11862,11863,11875 ,7885,7886,7758 ,0,0,0}, - {11875,11871,11862 ,7758,726,7885 ,0,0,0}, {11873,11863,11864 ,726,7886,7887 ,0,0,0}, - {11863,11873,11875 ,7886,726,7758 ,0,0,0}, {11874,11873,11864 ,7625,726,7887 ,0,0,0}, - {8799,11876,11861 ,7758,7627,7882 ,0,0,0}, {11861,11874,11864 ,7882,7625,7887 ,0,0,0}, - {11877,8799,8796 ,7627,7758,7755 ,0,0,0}, {8799,11877,11876 ,7758,7627,7627 ,0,0,0}, - {8795,11878,8796 ,7625,726,7755 ,0,0,0}, {11877,8796,11878 ,7627,7755,726 ,0,0,0}, - {8795,8793,11879 ,7625,7761,726 ,0,0,0}, {11879,11878,8795 ,726,726,7625 ,0,0,0}, - {8818,8793,8787 ,7627,7761,7625 ,0,0,0}, {8793,8818,11879 ,7761,7627,726 ,0,0,0}, - {8784,8812,8790 ,726,7627,7625 ,0,0,0}, {8792,8816,8787 ,7880,726,7625 ,0,0,0}, - {8810,8783,8807 ,7625,726,726 ,0,0,0}, {8804,8780,8801 ,7627,7625,7625 ,0,0,0}, - {8806,8807,8781 ,726,726,7625 ,0,0,0}, {8801,8778,8800 ,7625,7625,726 ,0,0,0}, - {8780,8804,8806 ,7625,7627,726 ,0,0,0}, {8781,8780,8806 ,7625,7625,726 ,0,0,0}, - {8801,8780,8778 ,7625,7625,7625 ,0,0,0}, {8784,8783,8810 ,726,726,7625 ,0,0,0}, - {8781,8807,8783 ,7625,726,726 ,0,0,0}, {8813,8790,8812 ,726,7625,7627 ,0,0,0}, - {8812,8784,8810 ,7627,726,7625 ,0,0,0}, {8792,8813,8816 ,7880,726,726 ,0,0,0}, - {8813,8792,8790 ,726,7880,7625 ,0,0,0}, {8816,8818,8787 ,726,7627,7625 ,0,0,0}, - {8760,11881,10179 ,1790,7888,7889 ,0,0,0}, {10231,10220,11882 ,7890,7891,7892 ,0,0,0}, - {10233,10180,11883 ,7893,7894,7895 ,0,0,0}, {10221,11884,10222 ,7896,7897,4137 ,0,0,0}, - {11885,11886,10232 ,7898,7899,7900 ,0,0,0}, {11887,11888,10230 ,7901,7902,7903 ,0,0,0}, - {11887,10229,11889 ,7901,7904,7905 ,0,0,0}, {11890,11891,10065 ,7906,7907,7908 ,0,0,0}, - {10065,10066,11890 ,7908,7909,7906 ,0,0,0}, {10228,11891,11892 ,7910,7907,7911 ,0,0,0}, - {11891,10228,10065 ,7907,7910,7908 ,0,0,0}, {11893,10039,11892 ,7912,7913,7911 ,0,0,0}, - {10228,11892,10039 ,7910,7911,7913 ,0,0,0}, {11893,8774,8775 ,7912,1711,1711 ,0,0,0}, - {8775,10039,11893 ,1711,7913,7912 ,0,0,0}, {11884,10221,11886 ,7897,7896,7899 ,0,0,0}, - {11888,10066,10230 ,7902,7909,7903 ,0,0,0}, {11890,10066,11888 ,7906,7909,7902 ,0,0,0}, - {11882,10220,11894 ,7892,7891,7914 ,0,0,0}, {11889,10229,10222 ,7905,7904,4137 ,0,0,0}, - {11887,10230,10229 ,7901,7903,7904 ,0,0,0}, {11884,11889,10222 ,7897,7905,4137 ,0,0,0}, - {10232,11886,10221 ,7900,7899,7896 ,0,0,0}, {10231,11882,11885 ,7890,7892,7898 ,0,0,0}, - {11885,10232,10231 ,7898,7900,7890 ,0,0,0}, {10180,11881,11883 ,7894,7888,7895 ,0,0,0}, - {11894,10233,11883 ,7914,7893,7895 ,0,0,0}, {10220,10233,11894 ,7891,7893,7914 ,0,0,0}, - {8760,10179,8761 ,1790,7889,1790 ,0,0,0}, {11881,10180,10179 ,7888,7894,7889 ,0,0,0}, - {11887,8768,11888 ,726,7658,726 ,0,0,0}, {11892,11891,8772 ,726,726,7660 ,0,0,0}, - {8774,11893,11892 ,726,7660,726 ,0,0,0}, {11887,11889,8766 ,726,726,7658 ,0,0,0}, - {8769,8772,11890 ,7660,7660,7659 ,0,0,0}, {11886,11885,8746 ,7659,726,7661 ,0,0,0}, - {11886,8762,11884 ,7659,726,726 ,0,0,0}, {8749,8747,11882 ,7915,7916,726 ,0,0,0}, - {11881,8755,8753 ,7658,7917,5475 ,0,0,0}, {11883,8750,11894 ,7658,726,7659 ,0,0,0}, - {8760,8759,8755 ,7918,7918,7917 ,0,0,0}, {8757,8755,8759 ,7661,7917,7918 ,0,0,0}, - {11883,11881,8753 ,7658,7658,5475 ,0,0,0}, {11881,8760,8755 ,7658,7918,7917 ,0,0,0}, - {8750,11883,8753 ,726,7658,5475 ,0,0,0}, {11894,8750,8749 ,7659,726,7915 ,0,0,0}, - {11882,8747,11885 ,726,7916,726 ,0,0,0}, {11894,8749,11882 ,7659,7915,726 ,0,0,0}, - {11886,8746,8762 ,7659,7661,726 ,0,0,0}, {11885,8747,8746 ,726,7916,7661 ,0,0,0}, - {8763,11889,11884 ,7664,726,726 ,0,0,0}, {8762,8763,11884 ,726,7664,726 ,0,0,0}, - {8768,11887,8766 ,7658,726,7658 ,0,0,0}, {8766,11889,8763 ,7658,726,7664 ,0,0,0}, - {11888,8769,11890 ,726,7660,7659 ,0,0,0}, {11888,8768,8769 ,726,7658,7660 ,0,0,0}, - {11892,8772,8774 ,726,7660,726 ,0,0,0}, {11891,11890,8772 ,726,7659,7660 ,0,0,0}, - {9518,11895,11896 ,726,5469,7919 ,0,0,0}, {11897,9518,11898 ,7920,726,7921 ,0,0,0}, - {9518,11897,11895 ,726,7920,5469 ,0,0,0}, {9518,11899,11898 ,726,726,7921 ,0,0,0}, - {11900,9518,11896 ,7922,726,7919 ,0,0,0}, {11899,9518,11901 ,726,726,7920 ,0,0,0}, - {11900,11902,9518 ,7922,7923,726 ,0,0,0}, {9518,11903,11904 ,726,7924,7925 ,0,0,0}, - {11904,11905,9518 ,7925,7926,726 ,0,0,0}, {11902,11903,9518 ,7923,7924,726 ,0,0,0}, - {11906,11907,9518 ,5472,7927,726 ,0,0,0}, {11906,9518,11905 ,5472,726,7926 ,0,0,0}, - {11908,11909,9518 ,7928,7929,726 ,0,0,0}, {11908,9518,11907 ,7928,726,7927 ,0,0,0}, - {11910,11911,9518 ,726,5489,726 ,0,0,0}, {11910,9518,11909 ,726,726,7929 ,0,0,0}, - {9518,11912,9517 ,726,5488,7583 ,0,0,0}, {11912,9518,11911 ,5488,726,5489 ,0,0,0}, - {9517,11913,11914 ,7583,5470,5489 ,0,0,0}, {11912,11913,9517 ,5488,5470,7583 ,0,0,0}, - {9513,9514,11914 ,5489,5488,5489 ,0,0,0}, {9517,11914,9514 ,7583,5489,5488 ,0,0,0}, - {9508,9513,11914 ,5489,5489,5489 ,0,0,0}, {9518,11485,11901 ,726,5489,7920 ,0,0,0}, - {11485,11915,11916 ,5489,5470,5488 ,0,0,0}, {11901,11485,11916 ,7920,5489,5488 ,0,0,0}, - {11917,11485,11484 ,5489,5489,726 ,0,0,0}, {11485,11917,11915 ,5489,5489,5470 ,0,0,0}, - {10548,11917,11483 ,5489,5489,7583 ,0,0,0}, {11484,11483,11917 ,726,7583,5489 ,0,0,0}, - {10082,10043,11905 ,7930,7931,7932 ,0,0,0}, {11904,10084,10082 ,7933,7934,7930 ,0,0,0}, - {11904,11903,10084 ,7933,7935,7934 ,0,0,0}, {11905,11904,10082 ,7932,7933,7930 ,0,0,0}, - {10043,10227,11906 ,7931,7936,7937 ,0,0,0}, {10024,10045,11908 ,7938,7939,7940 ,0,0,0}, - {11907,11906,10227 ,7941,7937,7936 ,0,0,0}, {10227,10024,11907 ,7936,7938,7941 ,0,0,0}, - {11908,11907,10024 ,7940,7941,7938 ,0,0,0}, {10043,11906,11905 ,7931,7937,7932 ,0,0,0}, - {11908,10045,11909 ,7940,7939,7942 ,0,0,0}, {10047,11910,11909 ,7943,7944,7942 ,0,0,0}, - {11909,10045,10047 ,7942,7939,7943 ,0,0,0}, {11910,10047,9892 ,7944,7943,7945 ,0,0,0}, - {10035,11911,9892 ,7946,7947,7945 ,0,0,0}, {10035,10048,11912 ,7946,7948,7949 ,0,0,0}, - {10035,11912,11911 ,7946,7949,7947 ,0,0,0}, {11913,10040,11914 ,7950,7951,7952 ,0,0,0}, - {11912,10048,11913 ,7949,7948,7950 ,0,0,0}, {11913,10048,10040 ,7950,7948,7951 ,0,0,0}, - {10040,10041,11914 ,7951,7952,7952 ,0,0,0}, {11910,9892,11911 ,7944,7945,7947 ,0,0,0}, - {10204,11903,11902 ,7953,7935,7954 ,0,0,0}, {11903,10204,10084 ,7935,7953,7934 ,0,0,0}, - {11900,10083,11902 ,7955,7956,7954 ,0,0,0}, {10204,11902,10083 ,7953,7954,7956 ,0,0,0}, - {11900,11896,10067 ,7955,7957,7958 ,0,0,0}, {10067,10083,11900 ,7958,7956,7955 ,0,0,0}, - {10068,11896,11895 ,7959,7957,7960 ,0,0,0}, {11896,10068,10067 ,7957,7959,7958 ,0,0,0}, - {11897,10241,11895 ,7961,7962,7960 ,0,0,0}, {10068,11895,10241 ,7959,7960,7962 ,0,0,0}, - {11897,11898,10181 ,7961,7963,7964 ,0,0,0}, {10181,10241,11897 ,7964,7962,7961 ,0,0,0}, - {10182,11898,11899 ,7965,7963,7966 ,0,0,0}, {11898,10182,10181 ,7963,7965,7964 ,0,0,0}, - {11901,10075,11899 ,7967,7968,7966 ,0,0,0}, {10182,11899,10075 ,7965,7966,7968 ,0,0,0}, - {11901,11916,10103 ,7967,7969,7970 ,0,0,0}, {10103,10075,11901 ,7970,7968,7967 ,0,0,0}, - {10104,11916,11915 ,7971,7969,7972 ,0,0,0}, {11916,10104,10103 ,7969,7971,7970 ,0,0,0}, - {10104,11915,10106 ,7971,7972,7973 ,0,0,0}, {10106,11915,11917 ,7973,7972,7973 ,0,0,0}, - {10558,10564,11917 ,7974,7974,7974 ,0,0,0}, {11917,10548,10549 ,7974,7974,7974 ,0,0,0}, - {10549,10555,11917 ,7974,7974,7974 ,0,0,0}, {10569,11917,10564 ,7974,7974,7974 ,0,0,0}, - {10555,10558,11917 ,7974,7974,7974 ,0,0,0}, {10573,10526,11917 ,7974,7974,7974 ,0,0,0}, - {10573,11917,10569 ,7974,7974,7974 ,0,0,0}, {10526,10538,11917 ,7974,7974,7974 ,0,0,0}, - {10106,11917,10537 ,7974,7974,7974 ,0,0,0}, {10538,10537,11917 ,7974,7974,7974 ,0,0,0}, - {11914,10041,10606 ,7975,7975,7975 ,0,0,0}, {10606,10656,11914 ,7975,7975,7975 ,0,0,0}, - {11914,10642,10602 ,7975,7975,7975 ,0,0,0}, {10656,10642,11914 ,7975,7975,7975 ,0,0,0}, - {11914,10608,10638 ,7975,7975,7975 ,0,0,0}, {10602,10608,11914 ,7975,7975,7975 ,0,0,0}, - {11914,10594,10593 ,7975,7975,7975 ,0,0,0}, {10638,10594,11914 ,7975,7975,7975 ,0,0,0}, - {9508,11914,10598 ,7975,7975,7975 ,0,0,0}, {10593,10598,11914 ,7975,7975,7975 ,0,0,0}, - {8723,11918,10254 ,126,7976,7977 ,0,0,0}, {11919,10256,11920 ,7978,7979,7980 ,0,0,0}, - {10270,10257,11921 ,7981,7982,7983 ,0,0,0}, {10071,11922,10062 ,7984,7985,7986 ,0,0,0}, - {11923,11924,10238 ,7987,7988,7989 ,0,0,0}, {11925,10089,11926 ,7990,7991,7992 ,0,0,0}, - {10107,10074,11927 ,7993,7994,7995 ,0,0,0}, {10099,10100,11928 ,7996,7997,7998 ,0,0,0}, - {10090,11929,10100 ,7999,8000,7997 ,0,0,0}, {10091,11930,11931 ,8001,8002,8003 ,0,0,0}, - {10099,11932,10093 ,7996,8004,8005 ,0,0,0}, {11933,10094,11931 ,8006,8007,8003 ,0,0,0}, - {10091,11931,10094 ,8001,8003,8007 ,0,0,0}, {11933,11934,10097 ,8006,8008,8009 ,0,0,0}, - {10097,10094,11933 ,8009,8007,8006 ,0,0,0}, {10136,11934,11935 ,8010,8008,8011 ,0,0,0}, - {11934,10136,10097 ,8008,8010,8009 ,0,0,0}, {11936,10098,11935 ,8012,8013,8011 ,0,0,0}, - {10136,11935,10098 ,8010,8011,8013 ,0,0,0}, {11936,8742,8743 ,8012,8014,4346 ,0,0,0}, - {8743,10098,11936 ,4346,8013,8012 ,0,0,0}, {11928,10100,11929 ,7998,7997,8000 ,0,0,0}, - {11930,10093,11932 ,8002,8005,8004 ,0,0,0}, {10093,11930,10091 ,8005,8002,8001 ,0,0,0}, - {11928,11932,10099 ,7998,8004,7996 ,0,0,0}, {11925,11929,10090 ,7990,8000,7999 ,0,0,0}, - {10107,11927,11926 ,7993,7995,7992 ,0,0,0}, {10107,11926,10089 ,7993,7992,7991 ,0,0,0}, - {10090,10089,11925 ,7999,7991,7990 ,0,0,0}, {10074,11937,11927 ,7994,8015,7995 ,0,0,0}, - {11937,10074,10062 ,8015,7994,7986 ,0,0,0}, {11924,11922,10071 ,7988,7985,7984 ,0,0,0}, - {11922,11937,10062 ,7985,8015,7986 ,0,0,0}, {10238,11924,10071 ,7989,7988,7984 ,0,0,0}, - {10255,11919,11923 ,8016,7978,7987 ,0,0,0}, {10255,11923,10238 ,8016,7987,7989 ,0,0,0}, - {10256,10270,11920 ,7979,7981,7980 ,0,0,0}, {10255,10256,11919 ,8016,7979,7978 ,0,0,0}, - {10257,11918,11921 ,7982,7976,7983 ,0,0,0}, {11920,10270,11921 ,7980,7981,7983 ,0,0,0}, - {8723,10254,8721 ,126,7977,4289 ,0,0,0}, {11918,10257,10254 ,7976,7982,7977 ,0,0,0}, - {11936,11935,11934 ,7625,7880,7758 ,0,0,0}, {8728,11919,11920 ,7626,7880,726 ,0,0,0}, - {11934,11931,11928 ,7758,8017,8018 ,0,0,0}, {11934,11933,11931 ,7758,7758,8017 ,0,0,0}, - {11930,11928,11931 ,8017,8018,8017 ,0,0,0}, {11930,11932,11928 ,8017,7758,8018 ,0,0,0}, - {11929,11934,11928 ,8019,7758,8018 ,0,0,0}, {11929,11925,11936 ,8019,7884,7625 ,0,0,0}, - {11936,11934,11929 ,7625,7758,8019 ,0,0,0}, {11925,11926,8740 ,7884,8020,7625 ,0,0,0}, - {11925,8742,11936 ,7884,7625,7625 ,0,0,0}, {11937,8736,8737 ,8021,7625,726 ,0,0,0}, - {8737,8740,11927 ,726,7625,7257 ,0,0,0}, {8730,8731,11923 ,726,726,8017 ,0,0,0}, - {8734,11922,11924 ,7625,8022,7761 ,0,0,0}, {8725,11921,8724 ,7626,726,7626 ,0,0,0}, - {11920,8725,8728 ,726,7626,7626 ,0,0,0}, {8720,8705,8704 ,7625,726,726 ,0,0,0}, - {8723,8704,11918 ,7625,726,7625 ,0,0,0}, {8716,8707,8717 ,726,726,7625 ,0,0,0}, - {8707,8716,8714 ,726,726,726 ,0,0,0}, {8711,8716,8717 ,7625,726,7625 ,0,0,0}, - {8719,8717,8720 ,7625,7625,7625 ,0,0,0}, {8717,8707,8705 ,7625,726,726 ,0,0,0}, - {8708,8707,8714 ,726,726,726 ,0,0,0}, {8704,8723,8720 ,726,7625,7625 ,0,0,0}, - {8705,8720,8717 ,726,7625,7625 ,0,0,0}, {11918,8702,8724 ,7625,726,7626 ,0,0,0}, - {8702,11918,8704 ,726,7625,726 ,0,0,0}, {11921,8725,11920 ,726,7626,726 ,0,0,0}, - {11918,8724,11921 ,7625,7626,726 ,0,0,0}, {8728,8730,11919 ,7626,726,7880 ,0,0,0}, - {11923,8731,11924 ,8017,726,7761 ,0,0,0}, {11919,8730,11923 ,7880,726,8017 ,0,0,0}, - {11924,8731,8734 ,7761,726,7625 ,0,0,0}, {11922,8736,11937 ,8022,7625,8021 ,0,0,0}, - {11922,8734,8736 ,8022,7625,7625 ,0,0,0}, {8740,11926,11927 ,7625,8020,7257 ,0,0,0}, - {11927,11937,8737 ,7257,8021,726 ,0,0,0}, {8740,8742,11925 ,7625,7625,7884 ,0,0,0}, - {8684,11938,10253 ,8023,8024,8025 ,0,0,0}, {9995,10198,11939 ,8026,8027,8028 ,0,0,0}, - {10305,10251,11940 ,8029,8030,8031 ,0,0,0}, {10244,11941,10236 ,8032,8033,8034 ,0,0,0}, - {11942,11943,10203 ,8035,8036,8037 ,0,0,0}, {11944,11945,10243 ,8038,8039,8040 ,0,0,0}, - {11944,10245,11946 ,8038,8041,8042 ,0,0,0}, {11947,11948,10242 ,8043,8044,8045 ,0,0,0}, - {10242,10142,11947 ,8045,8046,8043 ,0,0,0}, {10139,11948,11949 ,8047,8044,8048 ,0,0,0}, - {11948,10139,10242 ,8044,8047,8045 ,0,0,0}, {11950,10140,11949 ,8049,8050,8048 ,0,0,0}, - {10139,11949,10140 ,8047,8048,8050 ,0,0,0}, {11950,8698,8699 ,8049,82,82 ,0,0,0}, - {8699,10140,11950 ,82,8050,8049 ,0,0,0}, {11941,10244,11943 ,8033,8032,8036 ,0,0,0}, - {11945,10142,10243 ,8039,8046,8040 ,0,0,0}, {11947,10142,11945 ,8043,8046,8039 ,0,0,0}, - {11939,10198,11951 ,8028,8027,8051 ,0,0,0}, {11946,10245,10236 ,8042,8041,8034 ,0,0,0}, - {11944,10243,10245 ,8038,8040,8041 ,0,0,0}, {11941,11946,10236 ,8033,8042,8034 ,0,0,0}, - {10203,11943,10244 ,8037,8036,8032 ,0,0,0}, {9995,11939,11942 ,8026,8028,8035 ,0,0,0}, - {11942,10203,9995 ,8035,8037,8026 ,0,0,0}, {10251,11938,11940 ,8030,8024,8031 ,0,0,0}, - {11951,10305,11940 ,8051,8029,8031 ,0,0,0}, {10198,10305,11951 ,8027,8029,8051 ,0,0,0}, - {8684,10253,8685 ,8023,8025,8052 ,0,0,0}, {11938,10251,10253 ,8024,8030,8025 ,0,0,0}, - {11944,8681,11945 ,726,726,726 ,0,0,0}, {11948,8677,8674 ,726,7661,726 ,0,0,0}, - {11941,11943,11938 ,726,7660,726 ,0,0,0}, {11946,8684,8683 ,726,726,726 ,0,0,0}, - {11940,11938,11939 ,7661,726,726 ,0,0,0}, {11939,11951,11940 ,726,7658,7661 ,0,0,0}, - {11939,11943,11942 ,726,7660,726 ,0,0,0}, {11938,8684,11941 ,726,726,726 ,0,0,0}, - {11943,11939,11938 ,7660,726,726 ,0,0,0}, {11946,8683,11944 ,726,726,726 ,0,0,0}, - {11941,8684,11946 ,726,726,726 ,0,0,0}, {11944,8683,8681 ,726,726,726 ,0,0,0}, - {11945,8679,11947 ,726,7658,726 ,0,0,0}, {11945,8681,8679 ,726,726,7658 ,0,0,0}, - {11948,11947,8677 ,726,726,7661 ,0,0,0}, {8679,8677,11947 ,7658,7661,726 ,0,0,0}, - {11948,8674,11949 ,726,726,726 ,0,0,0}, {8673,11950,11949 ,726,726,726 ,0,0,0}, - {11949,8674,8673 ,726,726,726 ,0,0,0}, {11950,8671,8698 ,726,726,726 ,0,0,0}, - {8671,11950,8673 ,726,726,726 ,0,0,0}, {8671,8670,8698 ,726,726,726 ,0,0,0}, - {8690,8686,8687 ,7659,726,726 ,0,0,0}, {8690,8696,8686 ,7659,726,726 ,0,0,0}, - {8693,8690,8692 ,726,7659,726 ,0,0,0}, {8693,8696,8690 ,726,726,7659 ,0,0,0}, - {8698,8670,8696 ,726,726,726 ,0,0,0}, {8686,8696,8670 ,726,726,726 ,0,0,0}, - {11952,11953,11480 ,726,8053,7583 ,0,0,0}, {11482,11954,11481 ,726,726,726 ,0,0,0}, - {11953,11955,11480 ,8053,7922,7583 ,0,0,0}, {11952,11480,11956 ,726,7583,5472 ,0,0,0}, - {11480,11957,11958 ,7583,7664,5488 ,0,0,0}, {11955,11957,11480 ,7922,7664,7583 ,0,0,0}, - {11959,11960,11480 ,7920,726,7583 ,0,0,0}, {11958,11961,11480 ,5488,5471,7583 ,0,0,0}, - {11962,11963,11482 ,7664,7583,726 ,0,0,0}, {11482,11964,11965 ,726,5488,7664 ,0,0,0}, - {11966,11482,11967 ,726,726,726 ,0,0,0}, {11968,11969,11482 ,7664,7664,726 ,0,0,0}, - {11970,11967,11482 ,726,726,726 ,0,0,0}, {11482,11966,11954 ,726,726,726 ,0,0,0}, - {11968,11482,11971 ,7664,726,7664 ,0,0,0}, {11482,11969,11970 ,726,7664,726 ,0,0,0}, - {11482,11963,11971 ,726,7583,7664 ,0,0,0}, {11482,11965,11972 ,726,7664,726 ,0,0,0}, - {11482,11972,11962 ,726,726,7664 ,0,0,0}, {11960,11482,11480 ,726,726,7583 ,0,0,0}, - {11960,11964,11482 ,726,5488,726 ,0,0,0}, {11480,11961,11959 ,7583,5471,7920 ,0,0,0}, - {10509,11481,11954 ,726,726,726 ,0,0,0}, {11956,11480,11973 ,5472,7583,7793 ,0,0,0}, - {11974,11480,11479 ,5471,7583,7664 ,0,0,0}, {11480,11974,11973 ,7583,5471,7793 ,0,0,0}, - {11974,11479,10454 ,5471,7664,7920 ,0,0,0}, {10061,10060,11972 ,8054,8055,8056 ,0,0,0}, - {11965,10070,10061 ,8057,8058,8054 ,0,0,0}, {11965,11964,10070 ,8057,8058,8058 ,0,0,0}, - {11972,11965,10061 ,8056,8057,8054 ,0,0,0}, {10060,10239,11962 ,8055,8059,8060 ,0,0,0}, - {10137,10081,11971 ,8061,8062,8063 ,0,0,0}, {11963,11962,10239 ,8064,8060,8059 ,0,0,0}, - {10239,10137,11963 ,8059,8061,8064 ,0,0,0}, {11971,11963,10137 ,8063,8064,8061 ,0,0,0}, - {10060,11962,11972 ,8055,8060,8056 ,0,0,0}, {11971,10081,11968 ,8063,8062,8065 ,0,0,0}, - {10080,11969,11968 ,8066,8067,8065 ,0,0,0}, {11968,10081,10080 ,8065,8062,8066 ,0,0,0}, - {11969,10080,10240 ,8067,8066,8068 ,0,0,0}, {10088,11970,10240 ,8069,8070,8068 ,0,0,0}, - {10088,10087,11967 ,8069,8071,8072 ,0,0,0}, {10088,11967,11970 ,8069,8072,8070 ,0,0,0}, - {11966,10102,11954 ,8073,8074,8075 ,0,0,0}, {11967,10087,11966 ,8072,8071,8073 ,0,0,0}, - {11966,10087,10102 ,8073,8071,8074 ,0,0,0}, {10102,10105,11954 ,8074,8075,8075 ,0,0,0}, - {11969,10240,11970 ,8067,8068,8070 ,0,0,0}, {9893,11964,11960 ,8076,8058,8077 ,0,0,0}, - {11964,9893,10070 ,8058,8076,8058 ,0,0,0}, {11959,10141,11960 ,8078,8079,8077 ,0,0,0}, - {9893,11960,10141 ,8076,8077,8079 ,0,0,0}, {11959,11961,10085 ,8078,8080,8081 ,0,0,0}, - {10085,10141,11959 ,8081,8079,8078 ,0,0,0}, {10086,11961,11958 ,8082,8080,8083 ,0,0,0}, - {11961,10086,10085 ,8080,8082,8081 ,0,0,0}, {11957,10263,11958 ,8084,8085,8083 ,0,0,0}, - {10086,11958,10263 ,8082,8083,8085 ,0,0,0}, {11957,11955,10031 ,8084,8086,8087 ,0,0,0}, - {10031,10263,11957 ,8087,8085,8084 ,0,0,0}, {10030,11955,11953 ,8088,8086,8089 ,0,0,0}, - {11955,10030,10031 ,8086,8088,8087 ,0,0,0}, {11952,10114,11953 ,8090,8091,8089 ,0,0,0}, - {10030,11953,10114 ,8088,8089,8091 ,0,0,0}, {11952,11956,10154 ,8090,8092,8093 ,0,0,0}, - {10154,10114,11952 ,8093,8091,8090 ,0,0,0}, {10155,11956,11973 ,8094,8092,8095 ,0,0,0}, - {11956,10155,10154 ,8092,8094,8093 ,0,0,0}, {10155,11973,10156 ,8094,8095,8096 ,0,0,0}, - {10156,11973,11974 ,8096,8095,8096 ,0,0,0}, {10461,11974,10454 ,8097,8098,8097 ,0,0,0}, - {11974,10462,10465 ,8098,8097,8098 ,0,0,0}, {10461,10462,11974 ,8097,8097,8098 ,0,0,0}, - {11974,10471,10476 ,8098,8098,8097 ,0,0,0}, {10465,10471,11974 ,8098,8098,8098 ,0,0,0}, - {11974,10480,10439 ,8098,8098,8097 ,0,0,0}, {10476,10480,11974 ,8097,8098,8098 ,0,0,0}, - {11974,10443,10442 ,8098,8097,8097 ,0,0,0}, {10439,10443,11974 ,8097,8097,8098 ,0,0,0}, - {11974,10442,10156 ,8098,8097,8098 ,0,0,0}, {10518,11954,10105 ,8099,8099,8099 ,0,0,0}, - {10518,10574,11954 ,8099,8099,8099 ,0,0,0}, {11954,10574,10560 ,8099,8099,8099 ,0,0,0}, - {10514,10520,11954 ,8099,8099,8099 ,0,0,0}, {10514,11954,10560 ,8099,8099,8099 ,0,0,0}, - {10520,10556,11954 ,8099,8099,8099 ,0,0,0}, {11954,10503,10502 ,8099,8099,8099 ,0,0,0}, - {10556,10503,11954 ,8099,8099,8099 ,0,0,0}, {10509,11954,10507 ,8099,8099,8099 ,0,0,0}, - {10502,10507,11954 ,8099,8099,8099 ,0,0,0}, {8647,11975,10297 ,1359,8100,4482 ,0,0,0}, - {11976,10296,11977 ,4475,8101,8102 ,0,0,0}, {10298,10295,11978 ,8103,8104,4478 ,0,0,0}, - {10129,11979,10121 ,8105,8106,8107 ,0,0,0}, {11980,11981,10301 ,4472,8108,8109 ,0,0,0}, - {11982,10158,11983 ,8110,8111,8112 ,0,0,0}, {10157,10119,11984 ,8113,8114,8115 ,0,0,0}, - {10132,10125,11985 ,8116,8117,8118 ,0,0,0}, {10160,11986,10125 ,8119,8120,8117 ,0,0,0}, - {10150,11987,11988 ,8121,8122,8123 ,0,0,0}, {10132,11989,10152 ,8116,8124,8125 ,0,0,0}, - {11990,10149,11988 ,8126,8127,8123 ,0,0,0}, {10150,11988,10149 ,8121,8123,8127 ,0,0,0}, - {11990,11991,10147 ,8126,8128,8129 ,0,0,0}, {10147,10149,11990 ,8129,8127,8126 ,0,0,0}, - {10144,11991,11992 ,8130,8128,8131 ,0,0,0}, {11991,10144,10147 ,8128,8130,8129 ,0,0,0}, - {11993,10145,11992 ,8132,8133,8131 ,0,0,0}, {10144,11992,10145 ,8130,8131,8133 ,0,0,0}, - {11993,8666,8667 ,8132,1435,1435 ,0,0,0}, {8667,10145,11993 ,1435,8133,8132 ,0,0,0}, - {11985,10125,11986 ,8118,8117,8120 ,0,0,0}, {11987,10152,11989 ,8122,8125,8124 ,0,0,0}, - {10152,11987,10150 ,8125,8122,8121 ,0,0,0}, {11985,11989,10132 ,8118,8124,8116 ,0,0,0}, - {11982,11986,10160 ,8110,8120,8119 ,0,0,0}, {10157,11984,11983 ,8113,8115,8112 ,0,0,0}, - {10157,11983,10158 ,8113,8112,8111 ,0,0,0}, {10160,10158,11982 ,8119,8111,8110 ,0,0,0}, - {10119,11994,11984 ,8114,8134,8115 ,0,0,0}, {11994,10119,10121 ,8134,8114,8107 ,0,0,0}, - {11981,11979,10129 ,8108,8106,8105 ,0,0,0}, {11979,11994,10121 ,8106,8134,8107 ,0,0,0}, - {10301,11981,10129 ,8109,8108,8105 ,0,0,0}, {10277,11976,11980 ,4474,4475,4472 ,0,0,0}, - {10277,11980,10301 ,4474,4472,8109 ,0,0,0}, {10296,10298,11977 ,8101,8103,8102 ,0,0,0}, - {10277,10296,11976 ,4474,8101,4475 ,0,0,0}, {10295,11975,11978 ,8104,8100,4478 ,0,0,0}, - {11977,10298,11978 ,8102,8103,4478 ,0,0,0}, {8647,10297,8645 ,1359,4482,1359 ,0,0,0}, - {11975,10295,10297 ,8100,8104,4482 ,0,0,0}, {8641,11979,11981 ,726,726,726 ,0,0,0}, - {11987,8648,11988 ,726,7626,7758 ,0,0,0}, {11993,11992,11991 ,7625,7625,726 ,0,0,0}, - {11989,11985,8628 ,8135,7628,7626 ,0,0,0}, {8628,8626,11989 ,7626,7626,8135 ,0,0,0}, - {8638,11983,11984 ,726,7627,726 ,0,0,0}, {8631,11982,8632 ,726,7628,726 ,0,0,0}, - {8635,11979,8641 ,726,726,726 ,0,0,0}, {11984,11994,8640 ,726,726,726 ,0,0,0}, - {11976,11977,11978 ,7628,7628,726 ,0,0,0}, {8644,8641,11981 ,726,726,726 ,0,0,0}, - {8647,8644,11975 ,726,726,726 ,0,0,0}, {11975,11976,11978 ,726,7628,726 ,0,0,0}, - {11975,8644,11976 ,726,726,7628 ,0,0,0}, {11981,11980,8644 ,726,726,726 ,0,0,0}, - {8644,11980,11976 ,726,726,7628 ,0,0,0}, {11979,8635,8640 ,726,726,726 ,0,0,0}, - {8644,8643,8641 ,726,726,726 ,0,0,0}, {8640,8638,11984 ,726,726,726 ,0,0,0}, - {8640,11994,11979 ,726,726,726 ,0,0,0}, {11982,11983,8632 ,7628,7627,726 ,0,0,0}, - {8632,11983,8638 ,726,7627,726 ,0,0,0}, {8629,11986,8631 ,726,726,726 ,0,0,0}, - {8631,11986,11982 ,726,726,7628 ,0,0,0}, {8629,8628,11985 ,726,7626,7628 ,0,0,0}, - {11985,11986,8629 ,7628,726,726 ,0,0,0}, {8626,8648,11987 ,7626,7626,726 ,0,0,0}, - {8626,11987,11989 ,7626,726,8135 ,0,0,0}, {8649,11988,8648 ,7626,7758,7626 ,0,0,0}, - {11990,11988,8652 ,8135,7758,7628 ,0,0,0}, {8649,8652,11988 ,7626,7628,7758 ,0,0,0}, - {8652,8654,11991 ,7628,726,726 ,0,0,0}, {11991,11990,8652 ,726,8135,7628 ,0,0,0}, - {11993,8654,8655 ,7625,726,7626 ,0,0,0}, {8654,11993,11991 ,726,7625,726 ,0,0,0}, - {8658,8661,8664 ,7626,726,7626 ,0,0,0}, {8655,8658,11993 ,7626,7626,7625 ,0,0,0}, - {8664,11993,8658 ,7626,7625,7626 ,0,0,0}, {8658,8660,8661 ,7626,7627,726 ,0,0,0}, - {11993,8664,8666 ,7625,7626,8135 ,0,0,0}, {8608,11995,10283 ,1359,8136,8137 ,0,0,0}, - {10266,10268,11996 ,8138,8139,8140 ,0,0,0}, {10285,10287,11997 ,8141,8142,8143 ,0,0,0}, - {10073,11998,10072 ,8144,8145,8146 ,0,0,0}, {11999,12000,10267 ,8147,8148,8149 ,0,0,0}, - {12001,12002,10265 ,8150,8151,8152 ,0,0,0}, {12001,10264,12003 ,8150,8153,8154 ,0,0,0}, - {12004,12005,10197 ,8155,8156,8157 ,0,0,0}, {10197,10196,12004 ,8157,8158,8155 ,0,0,0}, - {10111,12005,12006 ,8159,8156,8160 ,0,0,0}, {12005,10111,10197 ,8156,8159,8157 ,0,0,0}, - {12007,10110,12006 ,8161,8162,8160 ,0,0,0}, {10111,12006,10110 ,8159,8160,8162 ,0,0,0}, - {12007,8622,8623 ,8161,1435,1435 ,0,0,0}, {8623,10110,12007 ,1435,8162,8161 ,0,0,0}, - {11998,10073,12000 ,8145,8144,8148 ,0,0,0}, {12002,10196,10265 ,8151,8158,8152 ,0,0,0}, - {12004,10196,12002 ,8155,8158,8151 ,0,0,0}, {11996,10268,12008 ,8140,8139,8163 ,0,0,0}, - {12003,10264,10072 ,8154,8153,8146 ,0,0,0}, {12001,10265,10264 ,8150,8152,8153 ,0,0,0}, - {11998,12003,10072 ,8145,8154,8146 ,0,0,0}, {10267,12000,10073 ,8149,8148,8144 ,0,0,0}, - {10266,11996,11999 ,8138,8140,8147 ,0,0,0}, {11999,10267,10266 ,8147,8149,8138 ,0,0,0}, - {10287,11995,11997 ,8142,8136,8143 ,0,0,0}, {12008,10285,11997 ,8163,8141,8143 ,0,0,0}, - {10268,10285,12008 ,8139,8141,8163 ,0,0,0}, {8608,10283,8609 ,1359,8137,1359 ,0,0,0}, - {11995,10287,10283 ,8136,8142,8137 ,0,0,0}, {12005,12000,11999 ,726,7661,7661 ,0,0,0}, - {12001,12003,12004 ,7661,7658,726 ,0,0,0}, {12004,12002,12001 ,726,726,7661 ,0,0,0}, - {11998,12000,12004 ,7658,7661,726 ,0,0,0}, {11998,12004,12003 ,7658,726,7658 ,0,0,0}, - {11999,12006,12005 ,7661,726,726 ,0,0,0}, {12000,12005,12004 ,7661,726,726 ,0,0,0}, - {12006,11999,11996 ,726,7661,7658 ,0,0,0}, {11996,12008,12007 ,7658,7661,726 ,0,0,0}, - {12007,12006,11996 ,726,726,7658 ,0,0,0}, {8622,12008,11997 ,726,7661,7658 ,0,0,0}, - {12008,8622,12007 ,7661,726,726 ,0,0,0}, {8607,8616,8608 ,7658,726,726 ,0,0,0}, - {11995,8620,11997 ,7658,7660,7658 ,0,0,0}, {8614,8607,8605 ,726,7658,726 ,0,0,0}, - {8595,8594,8601 ,726,726,726 ,0,0,0}, {8611,8603,8610 ,726,726,726 ,0,0,0}, - {8601,8598,8597 ,726,726,726 ,0,0,0}, {8601,8594,8610 ,726,726,726 ,0,0,0}, - {8595,8601,8597 ,726,726,726 ,0,0,0}, {8605,8603,8611 ,726,726,726 ,0,0,0}, - {8603,8601,8610 ,726,726,726 ,0,0,0}, {8616,8607,8614 ,726,7658,726 ,0,0,0}, - {8614,8605,8611 ,726,726,726 ,0,0,0}, {8608,8617,11995 ,726,726,7658 ,0,0,0}, - {8608,8616,8617 ,726,726,726 ,0,0,0}, {11997,8620,8622 ,7658,7660,726 ,0,0,0}, - {8617,8620,11995 ,726,7660,7658 ,0,0,0}, {12009,12010,11477 ,726,726,7664 ,0,0,0}, - {12011,12009,11477 ,726,726,7664 ,0,0,0}, {12011,11477,12012 ,726,7664,726 ,0,0,0}, - {12013,11477,12010 ,726,7664,726 ,0,0,0}, {12014,12015,11477 ,726,726,7664 ,0,0,0}, - {12014,11477,12013 ,726,7664,726 ,0,0,0}, {12016,11477,11475 ,726,7664,726 ,0,0,0}, - {12012,11477,12016 ,726,7664,726 ,0,0,0}, {12017,11477,12015 ,726,7664,726 ,0,0,0}, - {11477,12017,12018 ,7664,726,726 ,0,0,0}, {12016,11475,12019 ,726,726,726 ,0,0,0}, - {12020,11477,12018 ,726,7664,726 ,0,0,0}, {12021,12019,11475 ,7583,726,726 ,0,0,0}, - {11475,12022,12021 ,726,7664,7583 ,0,0,0}, {11477,12020,12023 ,7664,726,726 ,0,0,0}, - {11477,12023,12024 ,7664,726,726 ,0,0,0}, {12025,12022,11475 ,726,7664,726 ,0,0,0}, - {12026,12027,11475 ,726,726,726 ,0,0,0}, {12027,12025,11475 ,726,726,726 ,0,0,0}, - {12028,11475,12029 ,726,726,726 ,0,0,0}, {12028,12026,11475 ,726,726,726 ,0,0,0}, - {11478,12024,10415 ,7664,726,726 ,0,0,0}, {12024,11478,11477 ,726,7664,7664 ,0,0,0}, - {12029,11475,12030 ,726,726,726 ,0,0,0}, {12031,11475,11476 ,726,726,7664 ,0,0,0}, - {11475,12031,12030 ,726,726,726 ,0,0,0}, {12031,11476,10339 ,726,7664,5488 ,0,0,0}, - {10127,10120,12009 ,8164,8165,8166 ,0,0,0}, {12011,10128,10127 ,8167,8168,8164 ,0,0,0}, - {12011,12012,10128 ,8167,8168,8168 ,0,0,0}, {12009,12011,10127 ,8166,8167,8164 ,0,0,0}, - {10120,10261,12010 ,8165,8169,8170 ,0,0,0}, {10159,10161,12014 ,8171,8172,8173 ,0,0,0}, - {12013,12010,10261 ,8174,8170,8169 ,0,0,0}, {10261,10159,12013 ,8169,8171,8174 ,0,0,0}, - {12014,12013,10159 ,8173,8174,8171 ,0,0,0}, {10120,12010,12009 ,8165,8170,8166 ,0,0,0}, - {12014,10161,12015 ,8173,8172,8175 ,0,0,0}, {10124,12017,12015 ,8176,8177,8175 ,0,0,0}, - {12015,10161,10124 ,8175,8172,8176 ,0,0,0}, {12017,10124,10126 ,8177,8176,8178 ,0,0,0}, - {10131,12018,10126 ,8179,8180,8178 ,0,0,0}, {10131,10163,12020 ,8179,8181,8182 ,0,0,0}, - {10131,12020,12018 ,8179,8182,8180 ,0,0,0}, {12023,10165,12024 ,8183,8184,8185 ,0,0,0}, - {12020,10163,12023 ,8182,8181,8183 ,0,0,0}, {12023,10163,10165 ,8183,8181,8184 ,0,0,0}, - {10165,10164,12024 ,8184,8185,8185 ,0,0,0}, {12017,10126,12018 ,8177,8178,8180 ,0,0,0}, - {10123,12012,12016 ,8186,8168,8187 ,0,0,0}, {12012,10123,10128 ,8168,8186,8168 ,0,0,0}, - {12019,10122,12016 ,8188,8189,8187 ,0,0,0}, {10123,12016,10122 ,8186,8187,8189 ,0,0,0}, - {12019,12021,10289 ,8188,8190,8191 ,0,0,0}, {10289,10122,12019 ,8191,8189,8188 ,0,0,0}, - {10117,12021,12022 ,8192,8190,8193 ,0,0,0}, {12021,10117,10289 ,8190,8192,8191 ,0,0,0}, - {12025,10118,12022 ,8194,8195,8193 ,0,0,0}, {10117,12022,10118 ,8192,8193,8195 ,0,0,0}, - {12025,12027,10191 ,8194,8196,8197 ,0,0,0}, {10191,10118,12025 ,8197,8195,8194 ,0,0,0}, - {10192,12027,12026 ,8198,8196,8199 ,0,0,0}, {12027,10192,10191 ,8196,8198,8197 ,0,0,0}, - {12028,9935,12026 ,8200,8201,8199 ,0,0,0}, {10192,12026,9935 ,8198,8199,8201 ,0,0,0}, - {12028,12029,9938 ,8200,8202,8203 ,0,0,0}, {9938,9935,12028 ,8203,8201,8200 ,0,0,0}, - {9939,12029,12030 ,8204,8202,8205 ,0,0,0}, {12029,9939,9938 ,8202,8204,8203 ,0,0,0}, - {9939,12030,9940 ,8204,8205,8206 ,0,0,0}, {9940,12030,12031 ,8206,8205,8206 ,0,0,0}, - {10340,12031,10339 ,8207,8207,8207 ,0,0,0}, {12031,10370,10373 ,8207,8207,8207 ,0,0,0}, - {10340,10370,12031 ,8207,8207,8207 ,0,0,0}, {12031,10379,10384 ,8207,8207,8207 ,0,0,0}, - {10373,10379,12031 ,8207,8207,8207 ,0,0,0}, {12031,10388,10318 ,8207,8207,8207 ,0,0,0}, - {10384,10388,12031 ,8207,8207,8207 ,0,0,0}, {12031,10321,10320 ,8207,8207,8207 ,0,0,0}, - {10318,10321,12031 ,8207,8207,8207 ,0,0,0}, {12031,10320,9940 ,8207,8207,8207 ,0,0,0}, - {10430,12024,10164 ,8208,8208,8208 ,0,0,0}, {10430,10481,12024 ,8208,8208,8208 ,0,0,0}, - {12024,10481,10467 ,8208,8208,8208 ,0,0,0}, {10424,10417,12024 ,8208,8208,8208 ,0,0,0}, - {10424,12024,10467 ,8208,8208,8208 ,0,0,0}, {10417,10463,12024 ,8208,8208,8208 ,0,0,0}, - {12024,10455,10409 ,8208,8208,8208 ,0,0,0}, {10463,10455,12024 ,8208,8208,8208 ,0,0,0}, - {10415,12024,10411 ,8208,8208,8208 ,0,0,0}, {10409,10411,12024 ,8208,8208,8208 ,0,0,0}, - {8571,12032,9927 ,1711,8209,4414 ,0,0,0}, {12033,10190,12034 ,8210,8211,8212 ,0,0,0}, - {10175,9928,12035 ,8213,8214,4410 ,0,0,0}, {10189,12036,9919 ,4402,8215,8216 ,0,0,0}, - {12037,12038,10188 ,8217,8218,8219 ,0,0,0}, {12039,9949,12040 ,8220,8221,8222 ,0,0,0}, - {9948,10174,12041 ,8223,8224,8225 ,0,0,0}, {9922,9921,12042 ,8226,8227,8228 ,0,0,0}, - {9944,12043,9921 ,8229,8230,8227 ,0,0,0}, {9925,12044,12045 ,8231,8232,8233 ,0,0,0}, - {9922,12046,9924 ,8226,8234,8235 ,0,0,0}, {12047,9941,12045 ,8236,8237,8233 ,0,0,0}, - {9925,12045,9941 ,8231,8233,8237 ,0,0,0}, {12047,12048,9929 ,8236,8238,8239 ,0,0,0}, - {9929,9941,12047 ,8239,8237,8236 ,0,0,0}, {10177,12048,12049 ,8240,8238,8241 ,0,0,0}, - {12048,10177,9929 ,8238,8240,8239 ,0,0,0}, {12050,9937,12049 ,8242,8243,8241 ,0,0,0}, - {10177,12049,9937 ,8240,8241,8243 ,0,0,0}, {12050,8590,8591 ,8242,1790,1790 ,0,0,0}, - {8591,9937,12050 ,1790,8243,8242 ,0,0,0}, {12042,9921,12043 ,8228,8227,8230 ,0,0,0}, - {12044,9924,12046 ,8232,8235,8234 ,0,0,0}, {9924,12044,9925 ,8235,8232,8231 ,0,0,0}, - {12042,12046,9922 ,8228,8234,8226 ,0,0,0}, {12039,12043,9944 ,8220,8230,8229 ,0,0,0}, - {9948,12041,12040 ,8223,8225,8222 ,0,0,0}, {9948,12040,9949 ,8223,8222,8221 ,0,0,0}, - {9944,9949,12039 ,8229,8221,8220 ,0,0,0}, {10174,12051,12041 ,8224,8244,8225 ,0,0,0}, - {12051,10174,9919 ,8244,8224,8216 ,0,0,0}, {12038,12036,10189 ,8218,8215,4402 ,0,0,0}, - {12036,12051,9919 ,8215,8244,8216 ,0,0,0}, {10188,12038,10189 ,8219,8218,4402 ,0,0,0}, - {9889,12033,12037 ,8245,8210,8217 ,0,0,0}, {9889,12037,10188 ,8245,8217,8219 ,0,0,0}, - {10190,10175,12034 ,8211,8213,8212 ,0,0,0}, {9889,10190,12033 ,8245,8211,8210 ,0,0,0}, - {9928,12032,12035 ,8214,8209,4410 ,0,0,0}, {12034,10175,12035 ,8212,8213,4410 ,0,0,0}, - {8571,9927,8569 ,1711,4414,1711 ,0,0,0}, {12032,9928,9927 ,8209,8214,4414 ,0,0,0}, - {12037,12042,12043 ,726,726,7626 ,0,0,0}, {12051,12040,12041 ,726,726,726 ,0,0,0}, - {12039,12051,12036 ,726,726,726 ,0,0,0}, {12038,12039,12036 ,726,726,726 ,0,0,0}, - {12038,12043,12039 ,726,7626,726 ,0,0,0}, {12051,12039,12040 ,726,726,726 ,0,0,0}, - {12038,12037,12043 ,726,726,7626 ,0,0,0}, {12033,12046,12042 ,726,726,726 ,0,0,0}, - {12037,12033,12042 ,726,726,726 ,0,0,0}, {12046,12034,12044 ,726,726,7626 ,0,0,0}, - {12034,12046,12033 ,726,726,726 ,0,0,0}, {12045,12044,12035 ,7628,7626,726 ,0,0,0}, - {12034,12035,12044 ,726,726,7626 ,0,0,0}, {12032,12047,12045 ,726,726,7628 ,0,0,0}, - {12045,12035,12032 ,7628,726,726 ,0,0,0}, {12047,8571,12048 ,726,726,726 ,0,0,0}, - {8571,12047,12032 ,726,726,726 ,0,0,0}, {12049,12048,8568 ,7625,726,726 ,0,0,0}, - {8571,8568,12048 ,726,726,726 ,0,0,0}, {12049,8568,8567 ,7625,726,726 ,0,0,0}, - {12050,12049,8567 ,726,7625,726 ,0,0,0}, {8567,8565,12050 ,726,726,726 ,0,0,0}, - {8559,8590,8565 ,726,726,726 ,0,0,0}, {12050,8565,8590 ,726,726,726 ,0,0,0}, - {8562,8556,8584 ,726,726,7625 ,0,0,0}, {8559,8564,8588 ,726,726,726 ,0,0,0}, - {8553,8578,8579 ,7626,726,726 ,0,0,0}, {8579,8582,8555 ,726,726,726 ,0,0,0}, - {8578,8552,8576 ,726,7625,7625 ,0,0,0}, {8552,8573,8576 ,7625,726,7625 ,0,0,0}, - {8550,8573,8552 ,726,726,7625 ,0,0,0}, {8550,8572,8573 ,726,726,726 ,0,0,0}, - {8555,8553,8579 ,726,7626,726 ,0,0,0}, {8552,8578,8553 ,7625,726,7626 ,0,0,0}, - {8582,8584,8556 ,726,7625,726 ,0,0,0}, {8555,8582,8556 ,726,726,726 ,0,0,0}, - {8562,8585,8564 ,726,726,726 ,0,0,0}, {8562,8584,8585 ,726,7625,726 ,0,0,0}, - {8559,8588,8590 ,726,726,726 ,0,0,0}, {8585,8588,8564 ,726,726,726 ,0,0,0}, - {8532,12052,10201 ,1711,8246,8247 ,0,0,0}, {10260,10274,12053 ,8248,8249,8250 ,0,0,0}, - {10273,10202,12054 ,8251,8252,8253 ,0,0,0}, {10113,12055,10112 ,8254,8255,8256 ,0,0,0}, - {12056,12057,10294 ,8257,8258,8259 ,0,0,0}, {12058,12059,10292 ,8260,8261,8262 ,0,0,0}, - {12058,10291,12060 ,8260,8263,8264 ,0,0,0}, {12061,12062,10194 ,8265,8266,8267 ,0,0,0}, - {10194,10195,12061 ,8267,8268,8265 ,0,0,0}, {10290,12062,12063 ,8269,8266,8270 ,0,0,0}, - {12062,10290,10194 ,8266,8269,8267 ,0,0,0}, {12064,10193,12063 ,8271,8272,8270 ,0,0,0}, - {10290,12063,10193 ,8269,8270,8272 ,0,0,0}, {12064,8546,8547 ,8271,1790,1790 ,0,0,0}, - {8547,10193,12064 ,1790,8272,8271 ,0,0,0}, {12055,10113,12057 ,8255,8254,8258 ,0,0,0}, - {12059,10195,10292 ,8261,8268,8262 ,0,0,0}, {12061,10195,12059 ,8265,8268,8261 ,0,0,0}, - {12053,10274,12065 ,8250,8249,8273 ,0,0,0}, {12060,10291,10112 ,8264,8263,8256 ,0,0,0}, - {12058,10292,10291 ,8260,8262,8263 ,0,0,0}, {12055,12060,10112 ,8255,8264,8256 ,0,0,0}, - {10294,12057,10113 ,8259,8258,8254 ,0,0,0}, {10260,12053,12056 ,8248,8250,8257 ,0,0,0}, - {12056,10294,10260 ,8257,8259,8248 ,0,0,0}, {10202,12052,12054 ,8252,8246,8253 ,0,0,0}, - {12065,10273,12054 ,8273,8251,8253 ,0,0,0}, {10274,10273,12065 ,8249,8251,8273 ,0,0,0}, - {8532,10201,8533 ,1711,8247,1711 ,0,0,0}, {12052,10202,10201 ,8246,8252,8247 ,0,0,0}, - {8546,12064,12063 ,726,7658,726 ,0,0,0}, {12065,8521,12053 ,726,726,726 ,0,0,0}, - {8544,12063,12062 ,7660,726,7660 ,0,0,0}, {12058,8540,12059 ,7660,726,7660 ,0,0,0}, - {8541,8544,12061 ,7660,7660,7583 ,0,0,0}, {8534,12055,12057 ,7660,7661,7661 ,0,0,0}, - {8538,12058,12060 ,726,7660,7658 ,0,0,0}, {8519,12053,8521 ,726,726,726 ,0,0,0}, - {12057,12056,8518 ,7661,726,726 ,0,0,0}, {12052,8527,8525 ,726,726,726 ,0,0,0}, - {12054,8522,12065 ,726,726,726 ,0,0,0}, {8532,8531,8527 ,726,726,726 ,0,0,0}, - {8529,8527,8531 ,726,726,726 ,0,0,0}, {8527,12052,8532 ,726,726,726 ,0,0,0}, - {12054,8525,8522 ,726,726,726 ,0,0,0}, {12054,12052,8525 ,726,726,726 ,0,0,0}, - {12056,12053,8519 ,726,726,726 ,0,0,0}, {8521,12065,8522 ,726,726,726 ,0,0,0}, - {8518,8534,12057 ,726,7660,7661 ,0,0,0}, {8519,8518,12056 ,726,726,726 ,0,0,0}, - {12060,12055,8535 ,7658,7661,7659 ,0,0,0}, {8535,12055,8534 ,7659,7661,7660 ,0,0,0}, - {8538,12060,8535 ,726,7658,7659 ,0,0,0}, {8541,12059,8540 ,7660,7660,726 ,0,0,0}, - {12058,8538,8540 ,7660,726,726 ,0,0,0}, {8544,12062,12061 ,7660,7660,7583 ,0,0,0}, - {8541,12061,12059 ,7660,7583,7660 ,0,0,0}, {8544,8546,12063 ,7660,726,726 ,0,0,0}, - {10299,8491,12066 ,8274,8275,8276 ,0,0,0}, {10300,10276,12067 ,8277,8278,8279 ,0,0,0}, - {12068,10276,10293 ,8280,8278,8281 ,0,0,0}, {12069,12070,10200 ,8282,8283,8284 ,0,0,0}, - {12071,10272,10271 ,8285,8286,8287 ,0,0,0}, {10281,10269,12072 ,8288,8289,8290 ,0,0,0}, - {10280,12073,12074 ,8291,8292,8293 ,0,0,0}, {10303,12075,10286 ,8294,8295,8296 ,0,0,0}, - {12076,12077,10282 ,1631,8297,1631 ,0,0,0}, {12078,12079,10284 ,8298,8299,8300 ,0,0,0}, - {12078,10304,12080 ,8298,8301,8302 ,0,0,0}, {12081,12082,10279 ,8303,8304,8305 ,0,0,0}, - {12081,10278,12079 ,8303,8306,8299 ,0,0,0}, {10217,12082,12083 ,8307,8304,8308 ,0,0,0}, - {12082,10217,10279 ,8304,8307,8305 ,0,0,0}, {12084,10258,12083 ,8309,8310,8308 ,0,0,0}, - {10217,12083,10258 ,8307,8308,8310 ,0,0,0}, {10199,12084,10252 ,8311,8309,8312 ,0,0,0}, - {10199,10258,12084 ,8311,8310,8309 ,0,0,0}, {10250,10252,12085 ,8313,8312,8314 ,0,0,0}, - {12084,12085,10252 ,8309,8314,8312 ,0,0,0}, {12086,8515,10250 ,8315,126,8313 ,0,0,0}, - {10250,12085,12086 ,8313,8314,8315 ,0,0,0}, {8513,8515,12086 ,126,126,8315 ,0,0,0}, - {10278,10284,12079 ,8306,8300,8299 ,0,0,0}, {12081,10279,10278 ,8303,8305,8306 ,0,0,0}, - {10304,10286,12080 ,8301,8296,8302 ,0,0,0}, {12078,10284,10304 ,8298,8300,8301 ,0,0,0}, - {12077,12075,10303 ,8297,8295,8294 ,0,0,0}, {12075,12080,10286 ,8295,8302,8296 ,0,0,0}, - {10281,12076,10282 ,8288,1631,1631 ,0,0,0}, {10282,12077,10303 ,1631,8297,8294 ,0,0,0}, - {10269,12074,12072 ,8289,8293,8290 ,0,0,0}, {10281,12072,12076 ,8288,8290,1631 ,0,0,0}, - {10280,10302,12073 ,8291,8316,8292 ,0,0,0}, {10269,10280,12074 ,8289,8291,8293 ,0,0,0}, - {10200,12070,10302 ,8284,8283,8316 ,0,0,0}, {12073,10302,12070 ,8292,8316,8283 ,0,0,0}, - {12071,12069,10272 ,8285,8282,8286 ,0,0,0}, {12069,10200,10272 ,8282,8284,8286 ,0,0,0}, - {10300,12087,10271 ,8277,8317,8287 ,0,0,0}, {12087,12071,10271 ,8317,8285,8287 ,0,0,0}, - {10276,12088,12067 ,8278,8318,8279 ,0,0,0}, {10300,12067,12087 ,8277,8279,8317 ,0,0,0}, - {12068,10293,12066 ,8280,8281,8276 ,0,0,0}, {12088,10276,12068 ,8318,8278,8280 ,0,0,0}, - {8491,10299,8490 ,8275,8274,4114 ,0,0,0}, {12066,10293,10299 ,8276,8281,8274 ,0,0,0}, - {12078,12089,12079 ,726,726,726 ,0,0,0}, {12090,8464,12086 ,726,726,726 ,0,0,0}, - {12091,12082,12092 ,726,726,726 ,0,0,0}, {8495,8449,8448 ,726,726,7661 ,0,0,0}, - {8504,8506,8458 ,726,726,726 ,0,0,0}, {12093,12085,12084 ,726,726,726 ,0,0,0}, - {8509,8512,8463 ,726,726,726 ,0,0,0}, {8513,8464,8512 ,726,726,726 ,0,0,0}, - {8461,8459,8510 ,7658,726,726 ,0,0,0}, {8509,8463,8461 ,726,726,7658 ,0,0,0}, - {12093,12090,12085 ,726,726,726 ,0,0,0}, {8506,8507,8459 ,726,726,726 ,0,0,0}, - {8504,8458,8455 ,726,726,726 ,0,0,0}, {8500,8453,8498 ,726,726,726 ,0,0,0}, - {8501,8455,8453 ,726,726,726 ,0,0,0}, {8449,8495,8498 ,726,726,726 ,0,0,0}, - {12091,12084,12083 ,726,726,726 ,0,0,0}, {12079,12094,12081 ,726,7661,726 ,0,0,0}, - {12081,12094,12092 ,726,7661,726 ,0,0,0}, {8428,8468,8467 ,7658,726,7658 ,0,0,0}, - {8494,8448,8428 ,726,7661,7658 ,0,0,0}, {12095,12089,12080 ,726,726,726 ,0,0,0}, - {8468,8432,8469 ,726,7658,726 ,0,0,0}, {8471,8433,8434 ,7661,7658,726 ,0,0,0}, - {12075,12077,12096 ,726,7661,726 ,0,0,0}, {12075,12096,12095 ,726,726,726 ,0,0,0}, - {12077,12076,12097 ,7661,7658,7658 ,0,0,0}, {8475,8474,8434 ,726,726,726 ,0,0,0}, - {8438,8477,8435 ,726,7583,726 ,0,0,0}, {12098,12099,12074 ,726,726,726 ,0,0,0}, - {12099,12097,12072 ,726,7658,726 ,0,0,0}, {8487,8441,8444 ,7664,726,7664 ,0,0,0}, - {12098,12074,12073 ,726,726,7661 ,0,0,0}, {12100,12073,12070 ,726,7661,7664 ,0,0,0}, - {8447,8491,8489 ,726,726,7664 ,0,0,0}, {12101,12066,8447 ,7664,726,726 ,0,0,0}, - {12100,12069,12102 ,726,7583,726 ,0,0,0}, {12068,12103,12088 ,7664,7664,726 ,0,0,0}, - {8469,8432,8433 ,726,7658,7658 ,0,0,0}, {12067,12088,12104 ,7664,726,7664 ,0,0,0}, - {12103,12104,12088 ,7664,7664,726 ,0,0,0}, {12068,12066,12101 ,7664,726,7664 ,0,0,0}, - {12068,12101,12103 ,7664,7664,7664 ,0,0,0}, {12105,12102,12071 ,7664,726,7583 ,0,0,0}, - {12105,12071,12087 ,7664,7583,7664 ,0,0,0}, {8491,8447,12066 ,726,726,726 ,0,0,0}, - {8440,8441,8483 ,726,726,726 ,0,0,0}, {8438,8440,8480 ,726,726,7664 ,0,0,0}, - {12105,12087,12104 ,7664,7664,7664 ,0,0,0}, {12087,12067,12104 ,7664,7664,7664 ,0,0,0}, - {12069,12071,12102 ,7583,7583,726 ,0,0,0}, {12070,12069,12100 ,7664,7583,726 ,0,0,0}, - {12098,12073,12100 ,726,7661,726 ,0,0,0}, {12072,12074,12099 ,726,726,726 ,0,0,0}, - {12076,12072,12097 ,7658,726,7658 ,0,0,0}, {12096,12077,12097 ,726,7661,7658 ,0,0,0}, - {12080,12075,12095 ,726,726,726 ,0,0,0}, {12078,12080,12089 ,726,726,726 ,0,0,0}, - {12094,12079,12089 ,7661,726,726 ,0,0,0}, {12082,12081,12092 ,726,726,726 ,0,0,0}, - {12083,12082,12091 ,726,726,726 ,0,0,0}, {12093,12084,12091 ,726,726,726 ,0,0,0}, - {12086,12085,12090 ,726,726,726 ,0,0,0}, {8513,12086,8464 ,726,726,726 ,0,0,0}, - {8463,8512,8464 ,726,726,726 ,0,0,0}, {8510,8509,8461 ,726,726,7658 ,0,0,0}, - {8507,8510,8459 ,726,726,726 ,0,0,0}, {8458,8506,8459 ,726,726,726 ,0,0,0}, - {8501,8504,8455 ,726,726,726 ,0,0,0}, {8500,8501,8453 ,726,726,726 ,0,0,0}, - {8449,8498,8453 ,726,726,726 ,0,0,0}, {8494,8495,8448 ,726,726,7661 ,0,0,0}, - {8467,8494,8428 ,7658,726,7658 ,0,0,0}, {8432,8468,8428 ,7658,726,7658 ,0,0,0}, - {8474,8471,8434 ,726,7661,726 ,0,0,0}, {8471,8469,8433 ,7661,726,7658 ,0,0,0}, - {8435,8475,8434 ,726,726,726 ,0,0,0}, {8438,8480,8477 ,726,7664,7583 ,0,0,0}, - {8435,8477,8475 ,726,7583,726 ,0,0,0}, {8440,8481,8480 ,726,7664,7664 ,0,0,0}, - {8483,8441,8487 ,726,726,7664 ,0,0,0}, {8481,8440,8483 ,7664,726,726 ,0,0,0}, - {8487,8444,8489 ,7664,7664,7664 ,0,0,0}, {8447,8489,8444 ,726,7664,7664 ,0,0,0}, - {12106,12107,8431 ,726,726,726 ,0,0,0}, {8450,8452,8460 ,726,726,726 ,0,0,0}, - {8429,8450,8465 ,726,726,726 ,0,0,0}, {8431,8430,12106 ,726,726,726 ,0,0,0}, - {8456,8457,8460 ,726,726,726 ,0,0,0}, {8451,8454,8452 ,726,726,726 ,0,0,0}, - {8456,8460,8454 ,726,726,726 ,0,0,0}, {8452,8454,8460 ,726,726,726 ,0,0,0}, - {8460,8462,8450 ,726,726,726 ,0,0,0}, {12106,8429,8465 ,726,726,726 ,0,0,0}, - {8465,8450,8462 ,726,726,726 ,0,0,0}, {8431,12107,12108 ,726,726,726 ,0,0,0}, - {12106,8430,8429 ,726,726,726 ,0,0,0}, {8436,12108,12109 ,726,726,726 ,0,0,0}, - {12108,8436,8431 ,726,726,726 ,0,0,0}, {12109,8439,8437 ,726,726,7658 ,0,0,0}, - {8436,12109,8437 ,726,726,7658 ,0,0,0}, {12110,8439,12109 ,726,726,726 ,0,0,0}, - {8439,12111,8442 ,726,726,7661 ,0,0,0}, {12111,8439,12110 ,726,726,726 ,0,0,0}, - {12111,12112,8442 ,726,726,7661 ,0,0,0}, {8443,12112,8445 ,726,726,7661 ,0,0,0}, - {8443,8442,12112 ,726,7661,726 ,0,0,0}, {8445,12113,12114 ,7661,726,726 ,0,0,0}, - {12112,12113,8445 ,726,726,7661 ,0,0,0}, {12115,8446,12114 ,726,7658,726 ,0,0,0}, - {8445,12114,8446 ,7661,726,7658 ,0,0,0}, {12116,12117,12118 ,726,726,7660 ,0,0,0}, - {12118,12119,12116 ,7660,726,726 ,0,0,0}, {12117,12120,12121 ,726,726,7658 ,0,0,0}, - {12117,12115,12118 ,726,726,7660 ,0,0,0}, {12117,12122,12115 ,726,7661,726 ,0,0,0}, - {12117,12116,12120 ,726,726,726 ,0,0,0}, {12115,12122,8446 ,726,7661,7658 ,0,0,0}, - {12122,8447,8446 ,8319,81,8320 ,0,0,0}, {12120,12105,12121 ,8321,8322,8323 ,0,0,0}, - {12117,12104,12103 ,8324,8325,8326 ,0,0,0}, {12118,12115,12098 ,8327,8328,8329 ,0,0,0}, - {12116,12119,12100 ,8330,8331,8332 ,0,0,0}, {12112,12096,12113 ,8333,8334,8335 ,0,0,0}, - {12097,12114,12113 ,8336,8337,8335 ,0,0,0}, {12110,12094,12111 ,7530,8338,8339 ,0,0,0}, - {12089,12112,12111 ,8340,8333,8339 ,0,0,0}, {12109,12091,12092 ,8341,8342,8343 ,0,0,0}, - {12092,12110,12109 ,8343,7530,8341 ,0,0,0}, {12091,12108,12093 ,8342,8344,8345 ,0,0,0}, - {12108,12091,12109 ,8344,8342,8341 ,0,0,0}, {12090,12093,12107 ,8346,8345,8347 ,0,0,0}, - {12108,12107,12093 ,8344,8347,8345 ,0,0,0}, {8465,12090,12106 ,96,8346,8348 ,0,0,0}, - {12090,12107,12106 ,8346,8347,8348 ,0,0,0}, {8464,12090,8465 ,96,8346,96 ,0,0,0}, - {12089,12111,12094 ,8340,8339,8338 ,0,0,0}, {12092,12094,12110 ,8343,8338,7530 ,0,0,0}, - {12095,12096,12112 ,8349,8334,8333 ,0,0,0}, {12089,12095,12112 ,8340,8349,8333 ,0,0,0}, - {12099,12114,12097 ,8350,8337,8336 ,0,0,0}, {12096,12097,12113 ,8334,8336,8335 ,0,0,0}, - {12098,12115,12099 ,8329,8328,8350 ,0,0,0}, {12114,12099,12115 ,8337,8350,8328 ,0,0,0}, - {12100,12119,12098 ,8332,8331,8329 ,0,0,0}, {12119,12118,12098 ,8331,8327,8329 ,0,0,0}, - {12102,12120,12116 ,7516,8321,8330 ,0,0,0}, {12102,12116,12100 ,7516,8330,8332 ,0,0,0}, - {12105,12104,12121 ,8322,8325,8323 ,0,0,0}, {12102,12105,12120 ,7516,8322,8321 ,0,0,0}, - {12117,12103,12122 ,8324,8326,8319 ,0,0,0}, {12121,12104,12117 ,8323,8325,8324 ,0,0,0}, - {8447,12122,12101 ,81,8319,8351 ,0,0,0}, {12122,12103,12101 ,8319,8326,8351 ,0,0,0} -// MotorHacker.prt - , {12123,12124,12125 ,4056,4057,4058 ,0,0,0}, {12126,12127,12125 ,4059,4060,4058 ,0,0,0}, - {12123,12125,12127 ,4056,4058,4060 ,0,0,0}, {12128,12126,12129 ,4061,4059,4062 ,0,0,0}, - {12128,12127,12126 ,4061,4060,4059 ,0,0,0}, {12130,12129,12131 ,4063,4062,4064 ,0,0,0}, - {12126,12131,12129 ,4059,4064,4062 ,0,0,0}, {12132,12133,12130 ,4065,4066,4063 ,0,0,0}, - {12130,12131,12132 ,4063,4064,4065 ,0,0,0}, {12133,12134,12135 ,4066,4067,4068 ,0,0,0}, - {12134,12133,12132 ,4067,4066,4065 ,0,0,0}, {12136,12135,12137 ,4069,4068,4070 ,0,0,0}, - {12134,12137,12135 ,4067,4070,4068 ,0,0,0}, {12138,12139,12136 ,4071,4072,4069 ,0,0,0}, - {12136,12137,12138 ,4069,4070,4071 ,0,0,0}, {12140,12141,12139 ,4073,81,4072 ,0,0,0}, - {12140,12139,12138 ,4073,4072,4071 ,0,0,0}, {12141,12142,12139 ,81,81,4072 ,0,0,0}, - {12143,12124,12123 ,4074,4057,4056 ,0,0,0}, {12143,12144,12145 ,4074,4075,4076 ,0,0,0}, - {12145,12124,12143 ,4076,4057,4074 ,0,0,0}, {12146,12147,12144 ,4077,4078,4075 ,0,0,0}, - {12144,12147,12145 ,4075,4078,4076 ,0,0,0}, {12148,12149,12146 ,4079,4080,4077 ,0,0,0}, - {12146,12144,12148 ,4077,4075,4079 ,0,0,0}, {12149,12150,12151 ,4080,4081,4082 ,0,0,0}, - {12150,12149,12148 ,4081,4080,4079 ,0,0,0}, {12152,12151,12153 ,4083,4082,4084 ,0,0,0}, - {12150,12153,12151 ,4081,4084,4082 ,0,0,0}, {12154,12155,12152 ,4085,4086,4083 ,0,0,0}, - {12152,12153,12154 ,4083,4084,4085 ,0,0,0}, {12155,12156,12157 ,4086,4087,4088 ,0,0,0}, - {12156,12155,12154 ,4087,4086,4085 ,0,0,0}, {12157,12158,12159 ,4088,4089,4090 ,0,0,0}, - {12156,12158,12157 ,4087,4089,4088 ,0,0,0}, {12157,12159,12160 ,4088,4090,4091 ,0,0,0}, - {12161,12162,12163 ,2394,2394,4092 ,0,0,0}, {12164,12165,12163 ,4093,4094,4092 ,0,0,0}, - {12161,12163,12165 ,2394,4092,4094 ,0,0,0}, {12164,12166,12167 ,4093,4095,4096 ,0,0,0}, - {12167,12165,12164 ,4096,4094,4093 ,0,0,0}, {12168,12166,12169 ,4097,4095,4098 ,0,0,0}, - {12166,12168,12167 ,4095,4097,4096 ,0,0,0}, {12170,12171,12169 ,4099,4100,4098 ,0,0,0}, - {12168,12169,12171 ,4097,4098,4100 ,0,0,0}, {12170,12172,12173 ,4099,4101,4102 ,0,0,0}, - {12173,12171,12170 ,4102,4100,4099 ,0,0,0}, {12174,12172,12175 ,4103,4101,4104 ,0,0,0}, - {12172,12174,12173 ,4101,4103,4102 ,0,0,0}, {12176,12177,12175 ,4105,4106,4104 ,0,0,0}, - {12174,12175,12177 ,4103,4104,4106 ,0,0,0}, {12176,12178,12179 ,4105,4107,4108 ,0,0,0}, - {12179,12177,12176 ,4108,4106,4105 ,0,0,0}, {12180,12181,12178 ,4109,4110,4107 ,0,0,0}, - {12178,12181,12179 ,4107,4110,4108 ,0,0,0}, {12182,12183,12180 ,4111,4112,4109 ,0,0,0}, - {12180,12178,12182 ,4109,4107,4111 ,0,0,0}, {12183,12184,12185 ,4112,4113,4114 ,0,0,0}, - {12184,12183,12182 ,4113,4112,4111 ,0,0,0}, {12184,12186,12185 ,4113,4114,4114 ,0,0,0}, - {12187,12162,12161 ,4115,2394,2394 ,0,0,0}, {12187,12188,12189 ,4115,4116,4117 ,0,0,0}, - {12189,12162,12187 ,4117,2394,4115 ,0,0,0}, {12190,12188,12191 ,4118,4116,4119 ,0,0,0}, - {12188,12190,12189 ,4116,4118,4117 ,0,0,0}, {12192,12193,12191 ,4120,4121,4119 ,0,0,0}, - {12190,12191,12193 ,4118,4119,4121 ,0,0,0}, {12192,12194,12195 ,4120,4122,4123 ,0,0,0}, - {12195,12193,12192 ,4123,4121,4120 ,0,0,0}, {12196,12194,12197 ,4124,4122,4125 ,0,0,0}, - {12194,12196,12195 ,4122,4124,4123 ,0,0,0}, {12198,12199,12197 ,4126,4127,4125 ,0,0,0}, - {12196,12197,12199 ,4124,4125,4127 ,0,0,0}, {12198,12200,12201 ,4126,4128,4129 ,0,0,0}, - {12201,12199,12198 ,4129,4127,4126 ,0,0,0}, {12202,12200,12203 ,4130,4128,4131 ,0,0,0}, - {12200,12202,12201 ,4128,4130,4129 ,0,0,0}, {12203,12204,12205 ,4131,4132,4133 ,0,0,0}, - {12202,12203,12205 ,4130,4131,4133 ,0,0,0}, {12204,12206,12207 ,4132,4134,4135 ,0,0,0}, - {12206,12204,12203 ,4134,4132,4131 ,0,0,0}, {12208,12207,12209 ,126,4135,4136 ,0,0,0}, - {12206,12209,12207 ,4134,4136,4135 ,0,0,0}, {12208,12209,12210 ,126,4136,126 ,0,0,0}, - {12211,12212,12213 ,4137,4138,4139 ,0,0,0}, {12211,12214,12215 ,4137,4140,4141 ,0,0,0}, - {12214,12216,12215 ,4140,4142,4141 ,0,0,0}, {12213,12214,12211 ,4139,4140,4137 ,0,0,0}, - {12217,12218,12219 ,4143,4144,4145 ,0,0,0}, {12216,12217,12219 ,4142,4143,4145 ,0,0,0}, - {12218,12220,12221 ,4144,4146,4147 ,0,0,0}, {12220,12218,12217 ,4146,4144,4143 ,0,0,0}, - {12221,12220,12222 ,4147,4146,4148 ,0,0,0}, {12223,12221,12222 ,4149,4147,4148 ,0,0,0}, - {12223,12224,12225 ,4149,4150,4151 ,0,0,0}, {12223,12222,12224 ,4149,4148,4150 ,0,0,0}, - {12219,12215,12216 ,4145,4141,4142 ,0,0,0}, {12226,12227,12228 ,4152,1711,1711 ,0,0,0}, - {12226,12228,12225 ,4152,1711,4151 ,0,0,0}, {12224,12226,12225 ,4150,4152,4151 ,0,0,0}, - {12213,12212,12229 ,4139,4138,4153 ,0,0,0}, {12230,12229,12231 ,4154,4153,4155 ,0,0,0}, - {12212,12231,12229 ,4138,4155,4153 ,0,0,0}, {12232,12233,12230 ,4156,4157,4154 ,0,0,0}, - {12230,12231,12232 ,4154,4155,4156 ,0,0,0}, {12233,12234,12235 ,4157,4158,4159 ,0,0,0}, - {12234,12233,12232 ,4158,4157,4156 ,0,0,0}, {12236,12235,12237 ,4160,4159,4161 ,0,0,0}, - {12234,12237,12235 ,4158,4161,4159 ,0,0,0}, {12238,12239,12236 ,4162,4163,4160 ,0,0,0}, - {12236,12237,12238 ,4160,4161,4162 ,0,0,0}, {12239,12240,12241 ,4163,4164,1790 ,0,0,0}, - {12240,12239,12238 ,4164,4163,4162 ,0,0,0}, {12240,12242,12241 ,4164,1790,1790 ,0,0,0}, - {12243,12244,12245 ,4165,4166,4167 ,0,0,0}, {12246,12247,12248 ,4168,4169,4170 ,0,0,0}, - {12247,12243,12245 ,4169,4165,4167 ,0,0,0}, {12249,12246,12248 ,4171,4168,4170 ,0,0,0}, - {12247,12246,12243 ,4169,4168,4165 ,0,0,0}, {12249,12248,12250 ,4171,4170,4172 ,0,0,0}, - {12250,12251,12252 ,4172,4173,4174 ,0,0,0}, {12253,12252,12251 ,4175,4174,4173 ,0,0,0}, - {12254,12255,12256 ,4176,4177,4178 ,0,0,0}, {12251,12257,12253 ,4173,4179,4175 ,0,0,0}, - {12256,12258,12259 ,4178,4180,4181 ,0,0,0}, {12258,12257,12259 ,4180,4179,4181 ,0,0,0}, - {12253,12257,12258 ,4175,4179,4180 ,0,0,0}, {12256,12259,12254 ,4178,4181,4176 ,0,0,0}, - {12255,12254,12260 ,4177,4176,4182 ,0,0,0}, {12255,12260,12261 ,4177,4182,4183 ,0,0,0}, - {12262,12261,12260 ,4184,4183,4182 ,0,0,0}, {12263,12264,12265 ,4185,1711,4186 ,0,0,0}, - {12265,12261,12262 ,4186,4183,4184 ,0,0,0}, {12263,12265,12262 ,4185,4186,4184 ,0,0,0}, - {12263,12266,12264 ,4185,1711,1711 ,0,0,0}, {12249,12250,12252 ,4171,4172,4174 ,0,0,0}, - {12245,12244,12267 ,4167,4166,4187 ,0,0,0}, {12268,12267,12269 ,4188,4187,4189 ,0,0,0}, - {12244,12269,12267 ,4166,4189,4187 ,0,0,0}, {12270,12271,12268 ,4190,4191,4188 ,0,0,0}, - {12268,12269,12270 ,4188,4189,4190 ,0,0,0}, {12271,12272,12273 ,4191,4192,4193 ,0,0,0}, - {12272,12271,12270 ,4192,4191,4190 ,0,0,0}, {12274,12273,12275 ,4194,4193,4195 ,0,0,0}, - {12272,12275,12273 ,4192,4195,4193 ,0,0,0}, {12276,12277,12274 ,4196,4197,4194 ,0,0,0}, - {12274,12275,12276 ,4194,4195,4196 ,0,0,0}, {12277,12278,12279 ,4197,4198,4199 ,0,0,0}, - {12278,12277,12276 ,4198,4197,4196 ,0,0,0}, {12280,12279,12281 ,4200,4199,4201 ,0,0,0}, - {12278,12281,12279 ,4198,4201,4199 ,0,0,0}, {12282,12283,12280 ,4202,4203,4200 ,0,0,0}, - {12280,12281,12282 ,4200,4201,4202 ,0,0,0}, {12283,12284,12285 ,4203,4204,1790 ,0,0,0}, - {12284,12283,12282 ,4204,4203,4202 ,0,0,0}, {12284,12286,12285 ,4204,1790,1790 ,0,0,0}, - {12287,12288,12289 ,4205,4206,4207 ,0,0,0}, {12287,12290,12291 ,4205,4208,4209 ,0,0,0}, - {12290,12292,12291 ,4208,4210,4209 ,0,0,0}, {12289,12290,12287 ,4207,4208,4205 ,0,0,0}, - {12293,12294,12295 ,4211,4212,4213 ,0,0,0}, {12292,12293,12295 ,4210,4211,4213 ,0,0,0}, - {12294,12296,12297 ,4212,4214,4215 ,0,0,0}, {12296,12294,12293 ,4214,4212,4211 ,0,0,0}, - {12297,12296,12298 ,4215,4214,4216 ,0,0,0}, {12299,12297,12298 ,4217,4215,4216 ,0,0,0}, - {12299,12300,12301 ,4217,4218,4219 ,0,0,0}, {12299,12298,12300 ,4217,4216,4218 ,0,0,0}, - {12295,12291,12292 ,4213,4209,4210 ,0,0,0}, {12302,12303,12304 ,4220,1359,1359 ,0,0,0}, - {12302,12304,12301 ,4220,1359,4219 ,0,0,0}, {12300,12302,12301 ,4218,4220,4219 ,0,0,0}, - {12289,12288,12305 ,4207,4206,4221 ,0,0,0}, {12306,12305,12307 ,4222,4221,4223 ,0,0,0}, - {12288,12307,12305 ,4206,4223,4221 ,0,0,0}, {12308,12309,12306 ,4224,4225,4222 ,0,0,0}, - {12306,12307,12308 ,4222,4223,4224 ,0,0,0}, {12309,12310,12311 ,4225,4226,4227 ,0,0,0}, - {12310,12309,12308 ,4226,4225,4224 ,0,0,0}, {12312,12311,12313 ,4228,4227,4229 ,0,0,0}, - {12310,12313,12311 ,4226,4229,4227 ,0,0,0}, {12314,12315,12312 ,4230,4231,4228 ,0,0,0}, - {12312,12313,12314 ,4228,4229,4230 ,0,0,0}, {12315,12316,12317 ,4231,4232,1435 ,0,0,0}, - {12316,12315,12314 ,4232,4231,4230 ,0,0,0}, {12316,12318,12317 ,4232,1435,1435 ,0,0,0}, - {12319,12320,12321 ,4233,4234,4235 ,0,0,0}, {12322,12323,12324 ,4236,4237,4238 ,0,0,0}, - {12323,12319,12321 ,4237,4233,4235 ,0,0,0}, {12325,12322,12324 ,4239,4236,4238 ,0,0,0}, - {12323,12322,12319 ,4237,4236,4233 ,0,0,0}, {12325,12324,12326 ,4239,4238,4240 ,0,0,0}, - {12326,12327,12328 ,4240,4241,4242 ,0,0,0}, {12329,12328,12327 ,4243,4242,4241 ,0,0,0}, - {12330,12331,12332 ,4244,4245,4246 ,0,0,0}, {12327,12333,12329 ,4241,4247,4243 ,0,0,0}, - {12332,12334,12335 ,4246,4248,4249 ,0,0,0}, {12334,12333,12335 ,4248,4247,4249 ,0,0,0}, - {12329,12333,12334 ,4243,4247,4248 ,0,0,0}, {12332,12335,12330 ,4246,4249,4244 ,0,0,0}, - {12331,12330,12336 ,4245,4244,4250 ,0,0,0}, {12331,12336,12337 ,4245,4250,4251 ,0,0,0}, - {12338,12337,12336 ,4252,4251,4250 ,0,0,0}, {12339,12340,12341 ,4253,1359,4254 ,0,0,0}, - {12341,12337,12338 ,4254,4251,4252 ,0,0,0}, {12339,12341,12338 ,4253,4254,4252 ,0,0,0}, - {12339,12342,12340 ,4253,1359,1359 ,0,0,0}, {12325,12326,12328 ,4239,4240,4242 ,0,0,0}, - {12321,12320,12343 ,4235,4234,4255 ,0,0,0}, {12344,12343,12345 ,4256,4255,4257 ,0,0,0}, - {12320,12345,12343 ,4234,4257,4255 ,0,0,0}, {12346,12347,12344 ,4258,4259,4256 ,0,0,0}, - {12344,12345,12346 ,4256,4257,4258 ,0,0,0}, {12347,12348,12349 ,4259,4260,4261 ,0,0,0}, - {12348,12347,12346 ,4260,4259,4258 ,0,0,0}, {12350,12349,12351 ,4262,4261,4263 ,0,0,0}, - {12348,12351,12349 ,4260,4263,4261 ,0,0,0}, {12352,12353,12350 ,4264,4265,4262 ,0,0,0}, - {12350,12351,12352 ,4262,4263,4264 ,0,0,0}, {12353,12354,12355 ,4265,4266,4267 ,0,0,0}, - {12354,12353,12352 ,4266,4265,4264 ,0,0,0}, {12356,12355,12357 ,4268,4267,4269 ,0,0,0}, - {12354,12357,12355 ,4266,4269,4267 ,0,0,0}, {12358,12359,12356 ,4270,4271,4268 ,0,0,0}, - {12356,12357,12358 ,4268,4269,4270 ,0,0,0}, {12359,12360,12361 ,4271,4272,1435 ,0,0,0}, - {12360,12359,12358 ,4272,4271,4270 ,0,0,0}, {12360,12362,12361 ,4272,1435,1435 ,0,0,0}, - {12363,12364,12365 ,4273,4274,4275 ,0,0,0}, {12363,12366,12367 ,4273,4276,4277 ,0,0,0}, - {12366,12368,12367 ,4276,4278,4277 ,0,0,0}, {12365,12366,12363 ,4275,4276,4273 ,0,0,0}, - {12369,12370,12371 ,4279,4280,4281 ,0,0,0}, {12368,12369,12371 ,4278,4279,4281 ,0,0,0}, - {12370,12372,12373 ,4280,4282,4283 ,0,0,0}, {12372,12370,12369 ,4282,4280,4279 ,0,0,0}, - {12373,12372,12374 ,4283,4282,4284 ,0,0,0}, {12375,12373,12374 ,4285,4283,4284 ,0,0,0}, - {12375,12376,12377 ,4285,4286,4287 ,0,0,0}, {12375,12374,12376 ,4285,4284,4286 ,0,0,0}, - {12371,12367,12368 ,4281,4277,4278 ,0,0,0}, {12378,12379,12380 ,4288,126,4289 ,0,0,0}, - {12378,12380,12377 ,4288,4289,4287 ,0,0,0}, {12376,12378,12377 ,4286,4288,4287 ,0,0,0}, - {12365,12364,12381 ,4275,4274,4290 ,0,0,0}, {12382,12381,12383 ,4291,4290,4292 ,0,0,0}, - {12364,12383,12381 ,4274,4292,4290 ,0,0,0}, {12384,12385,12382 ,4293,4294,4291 ,0,0,0}, - {12382,12383,12384 ,4291,4292,4293 ,0,0,0}, {12385,12386,12387 ,4294,4295,4296 ,0,0,0}, - {12386,12385,12384 ,4295,4294,4293 ,0,0,0}, {12388,12387,12389 ,4297,4296,4298 ,0,0,0}, - {12386,12389,12387 ,4295,4298,4296 ,0,0,0}, {12390,12391,12388 ,4299,4300,4297 ,0,0,0}, - {12388,12389,12390 ,4297,4298,4299 ,0,0,0}, {12391,12392,12393 ,4300,4301,4302 ,0,0,0}, - {12392,12391,12390 ,4301,4300,4299 ,0,0,0}, {12392,12394,12393 ,4301,4303,4302 ,0,0,0}, - {12395,12396,12397 ,4304,4305,4306 ,0,0,0}, {12398,12399,12400 ,4307,4308,4309 ,0,0,0}, - {12399,12395,12397 ,4308,4304,4306 ,0,0,0}, {12401,12398,12400 ,4310,4307,4309 ,0,0,0}, - {12399,12398,12395 ,4308,4307,4304 ,0,0,0}, {12401,12400,12402 ,4310,4309,4311 ,0,0,0}, - {12402,12403,12404 ,4311,4312,4313 ,0,0,0}, {12405,12404,12403 ,4314,4313,4312 ,0,0,0}, - {12406,12407,12408 ,4315,4316,4317 ,0,0,0}, {12403,12409,12405 ,4312,4318,4314 ,0,0,0}, - {12408,12410,12411 ,4317,4319,4320 ,0,0,0}, {12410,12409,12411 ,4319,4318,4320 ,0,0,0}, - {12405,12409,12410 ,4314,4318,4319 ,0,0,0}, {12408,12411,12406 ,4317,4320,4315 ,0,0,0}, - {12407,12406,12412 ,4316,4315,4321 ,0,0,0}, {12407,12412,12413 ,4316,4321,4322 ,0,0,0}, - {12414,12413,12412 ,4323,4322,4321 ,0,0,0}, {12415,12416,12417 ,4324,126,4325 ,0,0,0}, - {12417,12413,12414 ,4325,4322,4323 ,0,0,0}, {12415,12417,12414 ,4324,4325,4323 ,0,0,0}, - {12415,12418,12416 ,4324,4326,126 ,0,0,0}, {12401,12402,12404 ,4310,4311,4313 ,0,0,0}, - {12397,12396,12419 ,4306,4305,4327 ,0,0,0}, {12420,12419,12421 ,4328,4327,4329 ,0,0,0}, - {12396,12421,12419 ,4305,4329,4327 ,0,0,0}, {12422,12423,12420 ,4330,4331,4328 ,0,0,0}, - {12420,12421,12422 ,4328,4329,4330 ,0,0,0}, {12423,12424,12425 ,4331,4332,4333 ,0,0,0}, - {12424,12423,12422 ,4332,4331,4330 ,0,0,0}, {12426,12425,12427 ,4334,4333,4335 ,0,0,0}, - {12424,12427,12425 ,4332,4335,4333 ,0,0,0}, {12428,12429,12426 ,4336,4337,4334 ,0,0,0}, - {12426,12427,12428 ,4334,4335,4336 ,0,0,0}, {12429,12430,12431 ,4337,4338,4339 ,0,0,0}, - {12430,12429,12428 ,4338,4337,4336 ,0,0,0}, {12432,12431,12433 ,4340,4339,4341 ,0,0,0}, - {12430,12433,12431 ,4338,4341,4339 ,0,0,0}, {12434,12435,12432 ,4342,4343,4340 ,0,0,0}, - {12432,12433,12434 ,4340,4341,4342 ,0,0,0}, {12435,12436,12437 ,4343,4344,4345 ,0,0,0}, - {12436,12435,12434 ,4344,4343,4342 ,0,0,0}, {12436,12438,12437 ,4344,4346,4345 ,0,0,0}, - {12439,12440,12441 ,4347,4348,4349 ,0,0,0}, {12439,12442,12443 ,4347,4350,4351 ,0,0,0}, - {12442,12444,12443 ,4350,4352,4351 ,0,0,0}, {12441,12442,12439 ,4349,4350,4347 ,0,0,0}, - {12445,12446,12447 ,4353,4354,4355 ,0,0,0}, {12444,12445,12447 ,4352,4353,4355 ,0,0,0}, - {12446,12448,12449 ,4354,4356,4357 ,0,0,0}, {12448,12446,12445 ,4356,4354,4353 ,0,0,0}, - {12449,12448,12450 ,4357,4356,4358 ,0,0,0}, {12451,12449,12450 ,4359,4357,4358 ,0,0,0}, - {12451,12452,12453 ,4359,4360,4361 ,0,0,0}, {12451,12450,12452 ,4359,4358,4360 ,0,0,0}, - {12447,12443,12444 ,4355,4351,4352 ,0,0,0}, {12454,12455,12456 ,4362,1790,1790 ,0,0,0}, - {12454,12456,12453 ,4362,1790,4361 ,0,0,0}, {12452,12454,12453 ,4360,4362,4361 ,0,0,0}, - {12441,12440,12457 ,4349,4348,4363 ,0,0,0}, {12458,12457,12459 ,4364,4363,4365 ,0,0,0}, - {12440,12459,12457 ,4348,4365,4363 ,0,0,0}, {12460,12461,12458 ,4366,4367,4364 ,0,0,0}, - {12458,12459,12460 ,4364,4365,4366 ,0,0,0}, {12461,12462,12463 ,4367,4368,4369 ,0,0,0}, - {12462,12461,12460 ,4368,4367,4366 ,0,0,0}, {12464,12463,12465 ,4370,4369,4371 ,0,0,0}, - {12462,12465,12463 ,4368,4371,4369 ,0,0,0}, {12466,12467,12464 ,4372,4373,4370 ,0,0,0}, - {12464,12465,12466 ,4370,4371,4372 ,0,0,0}, {12467,12468,12469 ,4373,4374,1711 ,0,0,0}, - {12468,12467,12466 ,4374,4373,4372 ,0,0,0}, {12468,12470,12469 ,4374,1711,1711 ,0,0,0}, - {12471,12472,12473 ,4375,4376,4377 ,0,0,0}, {12474,12475,12476 ,4378,4379,4380 ,0,0,0}, - {12475,12471,12473 ,4379,4375,4377 ,0,0,0}, {12477,12474,12476 ,4381,4378,4380 ,0,0,0}, - {12475,12474,12471 ,4379,4378,4375 ,0,0,0}, {12477,12476,12478 ,4381,4380,4382 ,0,0,0}, - {12478,12479,12480 ,4382,4383,4384 ,0,0,0}, {12481,12480,12479 ,4385,4384,4383 ,0,0,0}, - {12482,12483,12484 ,4386,4387,4388 ,0,0,0}, {12479,12485,12481 ,4383,4389,4385 ,0,0,0}, - {12484,12486,12487 ,4388,4390,4391 ,0,0,0}, {12486,12485,12487 ,4390,4389,4391 ,0,0,0}, - {12481,12485,12486 ,4385,4389,4390 ,0,0,0}, {12484,12487,12482 ,4388,4391,4386 ,0,0,0}, - {12483,12482,12488 ,4387,4386,4392 ,0,0,0}, {12483,12488,12489 ,4387,4392,4393 ,0,0,0}, - {12490,12489,12488 ,4394,4393,4392 ,0,0,0}, {12491,12492,12493 ,4395,1790,4396 ,0,0,0}, - {12493,12489,12490 ,4396,4393,4394 ,0,0,0}, {12491,12493,12490 ,4395,4396,4394 ,0,0,0}, - {12491,12494,12492 ,4395,1790,1790 ,0,0,0}, {12477,12478,12480 ,4381,4382,4384 ,0,0,0}, - {12473,12472,12495 ,4377,4376,4397 ,0,0,0}, {12496,12495,12497 ,4398,4397,4399 ,0,0,0}, - {12472,12497,12495 ,4376,4399,4397 ,0,0,0}, {12498,12499,12496 ,4400,4401,4398 ,0,0,0}, - {12496,12497,12498 ,4398,4399,4400 ,0,0,0}, {12499,12500,12501 ,4401,4402,4403 ,0,0,0}, - {12500,12499,12498 ,4402,4401,4400 ,0,0,0}, {12502,12501,12503 ,4404,4403,4405 ,0,0,0}, - {12500,12503,12501 ,4402,4405,4403 ,0,0,0}, {12504,12505,12502 ,4406,4407,4404 ,0,0,0}, - {12502,12503,12504 ,4404,4405,4406 ,0,0,0}, {12505,12506,12507 ,4407,4408,4409 ,0,0,0}, - {12506,12505,12504 ,4408,4407,4406 ,0,0,0}, {12508,12507,12509 ,4410,4409,4411 ,0,0,0}, - {12506,12509,12507 ,4408,4411,4409 ,0,0,0}, {12510,12511,12508 ,4412,4413,4410 ,0,0,0}, - {12508,12509,12510 ,4410,4411,4412 ,0,0,0}, {12511,12512,12513 ,4413,4414,1711 ,0,0,0}, - {12512,12511,12510 ,4414,4413,4412 ,0,0,0}, {12512,12514,12513 ,4414,1711,1711 ,0,0,0}, - {12515,12516,12517 ,4415,4416,4417 ,0,0,0}, {12515,12518,12519 ,4415,4418,4419 ,0,0,0}, - {12518,12520,12519 ,4418,4420,4419 ,0,0,0}, {12517,12518,12515 ,4417,4418,4415 ,0,0,0}, - {12521,12522,12523 ,4421,4422,4423 ,0,0,0}, {12520,12521,12523 ,4420,4421,4423 ,0,0,0}, - {12522,12524,12525 ,4422,4424,4425 ,0,0,0}, {12524,12522,12521 ,4424,4422,4421 ,0,0,0}, - {12525,12524,12526 ,4425,4424,4426 ,0,0,0}, {12527,12525,12526 ,4427,4425,4426 ,0,0,0}, - {12527,12528,12529 ,4427,4428,4429 ,0,0,0}, {12527,12526,12528 ,4427,4426,4428 ,0,0,0}, - {12523,12519,12520 ,4423,4419,4420 ,0,0,0}, {12530,12531,12532 ,4430,1435,1435 ,0,0,0}, - {12530,12532,12529 ,4430,1435,4429 ,0,0,0}, {12528,12530,12529 ,4428,4430,4429 ,0,0,0}, - {12517,12516,12533 ,4417,4416,4431 ,0,0,0}, {12534,12533,12535 ,4432,4431,4433 ,0,0,0}, - {12516,12535,12533 ,4416,4433,4431 ,0,0,0}, {12536,12537,12534 ,4434,4435,4432 ,0,0,0}, - {12534,12535,12536 ,4432,4433,4434 ,0,0,0}, {12537,12538,12539 ,4435,4436,4437 ,0,0,0}, - {12538,12537,12536 ,4436,4435,4434 ,0,0,0}, {12540,12539,12541 ,4438,4437,4439 ,0,0,0}, - {12538,12541,12539 ,4436,4439,4437 ,0,0,0}, {12542,12543,12540 ,4440,4441,4438 ,0,0,0}, - {12540,12541,12542 ,4438,4439,4440 ,0,0,0}, {12543,12544,12545 ,4441,4442,1359 ,0,0,0}, - {12544,12543,12542 ,4442,4441,4440 ,0,0,0}, {12544,12546,12545 ,4442,1359,1359 ,0,0,0}, - {12547,12548,12549 ,4443,4444,4445 ,0,0,0}, {12550,12551,12552 ,4446,4447,4448 ,0,0,0}, - {12551,12547,12549 ,4447,4443,4445 ,0,0,0}, {12553,12550,12552 ,4449,4446,4448 ,0,0,0}, - {12551,12550,12547 ,4447,4446,4443 ,0,0,0}, {12553,12552,12554 ,4449,4448,4450 ,0,0,0}, - {12554,12555,12556 ,4450,4451,4452 ,0,0,0}, {12557,12556,12555 ,4453,4452,4451 ,0,0,0}, - {12558,12559,12560 ,4454,4455,4456 ,0,0,0}, {12555,12561,12557 ,4451,4457,4453 ,0,0,0}, - {12560,12562,12563 ,4456,4458,4459 ,0,0,0}, {12562,12561,12563 ,4458,4457,4459 ,0,0,0}, - {12557,12561,12562 ,4453,4457,4458 ,0,0,0}, {12560,12563,12558 ,4456,4459,4454 ,0,0,0}, - {12559,12558,12564 ,4455,4454,4460 ,0,0,0}, {12559,12564,12565 ,4455,4460,4461 ,0,0,0}, - {12566,12565,12564 ,4462,4461,4460 ,0,0,0}, {12567,12568,12569 ,4463,1435,4464 ,0,0,0}, - {12569,12565,12566 ,4464,4461,4462 ,0,0,0}, {12567,12569,12566 ,4463,4464,4462 ,0,0,0}, - {12567,12570,12568 ,4463,1435,1435 ,0,0,0}, {12553,12554,12556 ,4449,4450,4452 ,0,0,0}, - {12549,12548,12571 ,4445,4444,4465 ,0,0,0}, {12572,12571,12573 ,4466,4465,4467 ,0,0,0}, - {12548,12573,12571 ,4444,4467,4465 ,0,0,0}, {12574,12575,12572 ,4468,4469,4466 ,0,0,0}, - {12572,12573,12574 ,4466,4467,4468 ,0,0,0}, {12575,12576,12577 ,4469,4470,4471 ,0,0,0}, - {12576,12575,12574 ,4470,4469,4468 ,0,0,0}, {12578,12577,12579 ,4472,4471,4473 ,0,0,0}, - {12576,12579,12577 ,4470,4473,4471 ,0,0,0}, {12580,12581,12578 ,4474,4475,4472 ,0,0,0}, - {12578,12579,12580 ,4472,4473,4474 ,0,0,0}, {12581,12582,12583 ,4475,4476,4477 ,0,0,0}, - {12582,12581,12580 ,4476,4475,4474 ,0,0,0}, {12584,12583,12585 ,4478,4477,4479 ,0,0,0}, - {12582,12585,12583 ,4476,4479,4477 ,0,0,0}, {12586,12587,12584 ,4480,4481,4478 ,0,0,0}, - {12584,12585,12586 ,4478,4479,4480 ,0,0,0}, {12587,12588,12589 ,4481,4482,1359 ,0,0,0}, - {12588,12587,12586 ,4482,4481,4480 ,0,0,0}, {12588,12590,12589 ,4482,1359,1359 ,0,0,0}, - {12591,12592,12593 ,4483,4484,4485 ,0,0,0}, {12591,12594,12595 ,4483,4486,4487 ,0,0,0}, - {12594,12596,12595 ,4486,4488,4487 ,0,0,0}, {12593,12594,12591 ,4485,4486,4483 ,0,0,0}, - {12597,12598,12599 ,4489,4490,4491 ,0,0,0}, {12596,12597,12599 ,4488,4489,4491 ,0,0,0}, - {12598,12600,12601 ,4490,4492,4493 ,0,0,0}, {12600,12598,12597 ,4492,4490,4489 ,0,0,0}, - {12601,12600,12602 ,4493,4492,4494 ,0,0,0}, {12603,12601,12602 ,4495,4493,4494 ,0,0,0}, - {12603,12604,12605 ,4495,4496,4497 ,0,0,0}, {12603,12602,12604 ,4495,4494,4496 ,0,0,0}, - {12599,12595,12596 ,4491,4487,4488 ,0,0,0}, {12606,12607,12608 ,4498,4499,82 ,0,0,0}, - {12606,12608,12605 ,4498,82,4497 ,0,0,0}, {12604,12606,12605 ,4496,4498,4497 ,0,0,0}, - {12593,12592,12609 ,4485,4484,4500 ,0,0,0}, {12610,12609,12611 ,4501,4500,4502 ,0,0,0}, - {12592,12611,12609 ,4484,4502,4500 ,0,0,0}, {12612,12613,12610 ,4503,4504,4501 ,0,0,0}, - {12610,12611,12612 ,4501,4502,4503 ,0,0,0}, {12613,12614,12615 ,4504,4505,4506 ,0,0,0}, - {12614,12613,12612 ,4505,4504,4503 ,0,0,0}, {12616,12615,12617 ,4507,4506,4508 ,0,0,0}, - {12614,12617,12615 ,4505,4508,4506 ,0,0,0}, {12618,12619,12616 ,4509,4510,4507 ,0,0,0}, - {12616,12617,12618 ,4507,4508,4509 ,0,0,0}, {12619,12620,12621 ,4510,4511,4512 ,0,0,0}, - {12620,12619,12618 ,4511,4510,4509 ,0,0,0}, {12620,12622,12621 ,4511,4513,4512 ,0,0,0}, - {12623,12624,12625 ,4514,4515,4516 ,0,0,0}, {12626,12627,12628 ,4517,4518,4519 ,0,0,0}, - {12627,12623,12625 ,4518,4514,4516 ,0,0,0}, {12629,12626,12628 ,4520,4517,4519 ,0,0,0}, - {12627,12626,12623 ,4518,4517,4514 ,0,0,0}, {12629,12628,12630 ,4520,4519,4521 ,0,0,0}, - {12630,12631,12632 ,4521,4522,4523 ,0,0,0}, {12633,12632,12631 ,4524,4523,4522 ,0,0,0}, - {12634,12635,12636 ,4525,4526,4527 ,0,0,0}, {12631,12637,12633 ,4522,4528,4524 ,0,0,0}, - {12636,12638,12639 ,4527,4529,4530 ,0,0,0}, {12638,12637,12639 ,4529,4528,4530 ,0,0,0}, - {12633,12637,12638 ,4524,4528,4529 ,0,0,0}, {12636,12639,12634 ,4527,4530,4525 ,0,0,0}, - {12635,12634,12640 ,4526,4525,4531 ,0,0,0}, {12635,12640,12641 ,4526,4531,4532 ,0,0,0}, - {12642,12641,12640 ,4533,4532,4531 ,0,0,0}, {12643,12644,12645 ,4534,4535,4536 ,0,0,0}, - {12645,12641,12642 ,4536,4532,4533 ,0,0,0}, {12643,12645,12642 ,4534,4536,4533 ,0,0,0}, - {12643,12646,12644 ,4534,4537,4535 ,0,0,0}, {12629,12630,12632 ,4520,4521,4523 ,0,0,0}, - {12625,12624,12647 ,4516,4515,4538 ,0,0,0}, {12648,12647,12649 ,4539,4538,4540 ,0,0,0}, - {12624,12649,12647 ,4515,4540,4538 ,0,0,0}, {12650,12651,12648 ,4541,4542,4539 ,0,0,0}, - {12648,12649,12650 ,4539,4540,4541 ,0,0,0}, {12651,12652,12653 ,4542,4543,4544 ,0,0,0}, - {12652,12651,12650 ,4543,4542,4541 ,0,0,0}, {12654,12653,12655 ,4545,4544,4546 ,0,0,0}, - {12652,12655,12653 ,4543,4546,4544 ,0,0,0}, {12656,12657,12654 ,4547,4548,4545 ,0,0,0}, - {12654,12655,12656 ,4545,4546,4547 ,0,0,0}, {12657,12658,12659 ,4548,4549,4550 ,0,0,0}, - {12658,12657,12656 ,4549,4548,4547 ,0,0,0}, {12660,12659,12661 ,4551,4550,4552 ,0,0,0}, - {12658,12661,12659 ,4549,4552,4550 ,0,0,0}, {12662,12663,12660 ,4553,4554,4551 ,0,0,0}, - {12660,12661,12662 ,4551,4552,4553 ,0,0,0}, {12663,12664,12665 ,4554,4555,4556 ,0,0,0}, - {12664,12663,12662 ,4555,4554,4553 ,0,0,0}, {12664,12666,12665 ,4555,126,4556 ,0,0,0}, - {12667,12668,12669 ,4557,4558,4559 ,0,0,0}, {12670,12671,12669 ,4560,4561,4559 ,0,0,0}, - {12667,12669,12671 ,4557,4559,4561 ,0,0,0}, {12672,12670,12673 ,4562,4560,4563 ,0,0,0}, - {12672,12671,12670 ,4562,4561,4560 ,0,0,0}, {12674,12673,12675 ,4564,4563,4565 ,0,0,0}, - {12670,12675,12673 ,4560,4565,4563 ,0,0,0}, {12676,12677,12674 ,4081,4566,4564 ,0,0,0}, - {12674,12675,12676 ,4564,4565,4081 ,0,0,0}, {12677,12678,12679 ,4566,4567,4568 ,0,0,0}, - {12678,12677,12676 ,4567,4566,4081 ,0,0,0}, {12680,12679,12681 ,4569,4568,4570 ,0,0,0}, - {12678,12681,12679 ,4567,4570,4568 ,0,0,0}, {12682,12683,12680 ,4571,4572,4569 ,0,0,0}, - {12680,12681,12682 ,4569,4570,4571 ,0,0,0}, {12684,12685,12683 ,4573,763,4572 ,0,0,0}, - {12684,12683,12682 ,4573,4572,4571 ,0,0,0}, {12685,12686,12683 ,763,763,4572 ,0,0,0}, - {12687,12668,12667 ,4574,4558,4557 ,0,0,0}, {12687,12688,12689 ,4574,4575,4576 ,0,0,0}, - {12689,12668,12687 ,4576,4558,4574 ,0,0,0}, {12690,12691,12688 ,4577,4578,4575 ,0,0,0}, - {12688,12691,12689 ,4575,4578,4576 ,0,0,0}, {12692,12693,12690 ,4579,4580,4577 ,0,0,0}, - {12690,12688,12692 ,4577,4575,4579 ,0,0,0}, {12693,12694,12695 ,4580,4065,4581 ,0,0,0}, - {12694,12693,12692 ,4065,4580,4579 ,0,0,0}, {12696,12695,12697 ,4582,4581,4583 ,0,0,0}, - {12694,12697,12695 ,4065,4583,4581 ,0,0,0}, {12698,12699,12696 ,4584,4585,4582 ,0,0,0}, - {12696,12697,12698 ,4582,4583,4584 ,0,0,0}, {12699,12700,12701 ,4585,4586,4587 ,0,0,0}, - {12700,12699,12698 ,4586,4585,4584 ,0,0,0}, {12701,12702,12703 ,4587,4588,54 ,0,0,0}, - {12700,12702,12701 ,4586,4588,4587 ,0,0,0}, {12701,12703,12704 ,4587,54,4589 ,0,0,0}, - {12705,12706,12707 ,4590,4591,4557 ,0,0,0}, {12708,12706,12709 ,4592,4591,4593 ,0,0,0}, - {12706,12708,12707 ,4591,4592,4557 ,0,0,0}, {12710,12711,12709 ,4594,4595,4593 ,0,0,0}, - {12708,12709,12711 ,4592,4593,4595 ,0,0,0}, {12710,12712,12713 ,4594,4596,4597 ,0,0,0}, - {12713,12711,12710 ,4597,4595,4594 ,0,0,0}, {12714,12712,12715 ,4598,4596,4599 ,0,0,0}, - {12712,12714,12713 ,4596,4598,4597 ,0,0,0}, {12716,12717,12715 ,4600,4601,4599 ,0,0,0}, - {12714,12715,12717 ,4598,4599,4601 ,0,0,0}, {12716,12718,12719 ,4600,4602,4603 ,0,0,0}, - {12719,12717,12716 ,4603,4601,4600 ,0,0,0}, {12720,12718,12721 ,4604,4602,4605 ,0,0,0}, - {12718,12720,12719 ,4602,4604,4603 ,0,0,0}, {12722,12723,12721 ,4606,4607,4605 ,0,0,0}, - {12720,12721,12723 ,4604,4605,4607 ,0,0,0}, {12722,12724,12725 ,4606,4608,4609 ,0,0,0}, - {12725,12723,12722 ,4609,4607,4606 ,0,0,0}, {12726,12724,12727 ,4610,4608,4611 ,0,0,0}, - {12724,12726,12725 ,4608,4610,4609 ,0,0,0}, {12728,12729,12727 ,4612,4613,4611 ,0,0,0}, - {12726,12727,12729 ,4610,4611,4613 ,0,0,0}, {12728,12730,12731 ,4612,4614,4615 ,0,0,0}, - {12731,12729,12728 ,4615,4613,4612 ,0,0,0}, {12732,12730,12733 ,4616,4614,4617 ,0,0,0}, - {12730,12732,12731 ,4614,4616,4615 ,0,0,0}, {12734,12735,12733 ,4618,4619,4617 ,0,0,0}, - {12732,12733,12735 ,4616,4617,4619 ,0,0,0}, {12734,12736,12737 ,4618,4620,4621 ,0,0,0}, - {12737,12735,12734 ,4621,4619,4618 ,0,0,0}, {12736,12738,12737 ,4620,4620,4621 ,0,0,0}, - {12739,12705,12707 ,4622,4590,4557 ,0,0,0}, {12740,12741,12739 ,4623,4624,4622 ,0,0,0}, - {12705,12739,12741 ,4590,4622,4624 ,0,0,0}, {12740,12742,12743 ,4623,4625,4626 ,0,0,0}, - {12743,12741,12740 ,4626,4624,4623 ,0,0,0}, {12744,12742,12745 ,4627,4625,4628 ,0,0,0}, - {12742,12744,12743 ,4625,4627,4626 ,0,0,0}, {12746,12747,12745 ,4629,4630,4628 ,0,0,0}, - {12744,12745,12747 ,4627,4628,4630 ,0,0,0}, {12746,12748,12749 ,4629,4631,4632 ,0,0,0}, - {12749,12747,12746 ,4632,4630,4629 ,0,0,0}, {12750,12748,12751 ,4633,4631,4634 ,0,0,0}, - {12748,12750,12749 ,4631,4633,4632 ,0,0,0}, {12752,12753,12751 ,4635,4636,4634 ,0,0,0}, - {12750,12751,12753 ,4633,4634,4636 ,0,0,0}, {12752,12754,12755 ,4635,4637,4638 ,0,0,0}, - {12755,12753,12752 ,4638,4636,4635 ,0,0,0}, {12756,12754,12757 ,4639,4637,4640 ,0,0,0}, - {12754,12756,12755 ,4637,4639,4638 ,0,0,0}, {12758,12759,12757 ,4641,4642,4640 ,0,0,0}, - {12756,12757,12759 ,4639,4640,4642 ,0,0,0}, {12758,12760,12761 ,4641,4643,4644 ,0,0,0}, - {12761,12759,12758 ,4644,4642,4641 ,0,0,0}, {12762,12760,12763 ,4645,4643,4646 ,0,0,0}, - {12760,12762,12761 ,4643,4645,4644 ,0,0,0}, {12764,12765,12763 ,4647,4648,4646 ,0,0,0}, - {12762,12763,12765 ,4645,4646,4648 ,0,0,0}, {12764,12766,12767 ,4647,4649,4650 ,0,0,0}, - {12767,12765,12764 ,4650,4648,4647 ,0,0,0}, {12768,12766,12769 ,4651,4649,82 ,0,0,0}, - {12766,12768,12767 ,4649,4651,4650 ,0,0,0}, {12768,12769,12770 ,4651,82,4652 ,0,0,0}, - {12771,12772,12773 ,4653,4654,4655 ,0,0,0}, {12774,12775,12776 ,4656,4657,4658 ,0,0,0}, - {12773,12776,12775 ,4655,4658,4657 ,0,0,0}, {12777,12778,12779 ,4659,4660,4661 ,0,0,0}, - {12780,12781,12774 ,4662,4663,4656 ,0,0,0}, {12777,12781,12780 ,4659,4663,4662 ,0,0,0}, - {12780,12778,12777 ,4662,4660,4659 ,0,0,0}, {12781,12775,12774 ,4663,4657,4656 ,0,0,0}, - {12782,12783,12784 ,4664,4665,4666 ,0,0,0}, {12783,12785,12784 ,4665,4667,4666 ,0,0,0}, - {12786,12787,12788 ,4668,4669,4670 ,0,0,0}, {12786,12788,12785 ,4668,4670,4667 ,0,0,0}, - {12783,12786,12785 ,4665,4668,4667 ,0,0,0}, {12778,12782,12779 ,4660,4664,4661 ,0,0,0}, - {12782,12784,12779 ,4664,4666,4661 ,0,0,0}, {12789,12790,12791 ,4671,4672,4673 ,0,0,0}, - {12792,12793,12794 ,4674,4675,4676 ,0,0,0}, {12791,12790,12792 ,4673,4672,4674 ,0,0,0}, - {12795,12796,12797 ,4677,4678,4679 ,0,0,0}, {12791,12792,12794 ,4673,4674,4676 ,0,0,0}, - {12797,12796,12793 ,4679,4678,4675 ,0,0,0}, {12796,12794,12793 ,4678,4676,4675 ,0,0,0}, - {12787,12790,12789 ,4669,4672,4671 ,0,0,0}, {12798,12795,12797 ,4677,4677,4679 ,0,0,0}, - {12788,12787,12789 ,4670,4669,4671 ,0,0,0}, {12772,12776,12773 ,4654,4658,4655 ,0,0,0}, - {12799,12772,12771 ,4680,4654,4653 ,0,0,0}, {12799,12800,12801 ,4680,4681,4682 ,0,0,0}, - {12800,12799,12771 ,4681,4680,4653 ,0,0,0}, {12802,12801,12803 ,4683,4682,4684 ,0,0,0}, - {12800,12803,12801 ,4681,4684,4682 ,0,0,0}, {12804,12805,12802 ,4685,4686,4683 ,0,0,0}, - {12802,12803,12804 ,4683,4684,4685 ,0,0,0}, {12805,12806,12807 ,4686,4687,4688 ,0,0,0}, - {12806,12805,12804 ,4687,4686,4685 ,0,0,0}, {12808,12807,12809 ,4689,4688,4690 ,0,0,0}, - {12806,12809,12807 ,4687,4690,4688 ,0,0,0}, {12810,12811,12808 ,4691,4692,4689 ,0,0,0}, - {12808,12809,12810 ,4689,4690,4691 ,0,0,0}, {12811,12812,12813 ,4692,4693,4694 ,0,0,0}, - {12812,12811,12810 ,4693,4692,4691 ,0,0,0}, {12814,12813,12815 ,4695,4694,4696 ,0,0,0}, - {12812,12815,12813 ,4693,4696,4694 ,0,0,0}, {12816,12817,12814 ,4697,4698,4695 ,0,0,0}, - {12814,12815,12816 ,4695,4696,4697 ,0,0,0}, {12817,12818,12819 ,4698,4699,4700 ,0,0,0}, - {12818,12817,12816 ,4699,4698,4697 ,0,0,0}, {12818,12820,12819 ,4699,4701,4700 ,0,0,0}, - {12821,12822,12823 ,4702,4703,4704 ,0,0,0}, {12824,12825,12826 ,4705,4706,4707 ,0,0,0}, - {12822,12826,12825 ,4703,4707,4706 ,0,0,0}, {12827,12828,12829 ,4708,4709,4710 ,0,0,0}, - {12830,12824,12831 ,4711,4705,4712 ,0,0,0}, {12827,12830,12831 ,4708,4711,4712 ,0,0,0}, - {12830,12827,12829 ,4711,4708,4710 ,0,0,0}, {12831,12824,12826 ,4712,4705,4707 ,0,0,0}, - {12832,12833,12834 ,4713,4714,4715 ,0,0,0}, {12834,12833,12835 ,4715,4714,4716 ,0,0,0}, - {12836,12837,12838 ,4717,4718,4719 ,0,0,0}, {12836,12835,12837 ,4717,4716,4718 ,0,0,0}, - {12834,12835,12836 ,4715,4716,4717 ,0,0,0}, {12829,12828,12832 ,4710,4709,4713 ,0,0,0}, - {12832,12828,12833 ,4713,4709,4714 ,0,0,0}, {12839,12840,12841 ,4720,4721,4722 ,0,0,0}, - {12842,12843,12844 ,4723,4724,4725 ,0,0,0}, {12840,12842,12841 ,4721,4723,4722 ,0,0,0}, - {12845,12846,12847 ,4726,4727,4728 ,0,0,0}, {12840,12843,12842 ,4721,4724,4723 ,0,0,0}, - {12846,12844,12847 ,4727,4725,4728 ,0,0,0}, {12847,12844,12843 ,4728,4725,4724 ,0,0,0}, - {12838,12839,12841 ,4719,4720,4722 ,0,0,0}, {12848,12846,12845 ,4726,4727,4726 ,0,0,0}, - {12837,12839,12838 ,4718,4720,4719 ,0,0,0}, {12823,12822,12825 ,4704,4703,4706 ,0,0,0}, - {12849,12821,12823 ,4729,4702,4704 ,0,0,0}, {12849,12850,12851 ,4729,4730,4731 ,0,0,0}, - {12851,12821,12849 ,4731,4702,4729 ,0,0,0}, {12852,12853,12850 ,4732,4733,4730 ,0,0,0}, - {12851,12850,12853 ,4731,4730,4733 ,0,0,0}, {12854,12852,12855 ,4734,4732,4735 ,0,0,0}, - {12852,12854,12853 ,4732,4734,4733 ,0,0,0}, {12855,12856,12857 ,4735,4736,4737 ,0,0,0}, - {12857,12854,12855 ,4737,4734,4735 ,0,0,0}, {12858,12859,12856 ,4738,4739,4736 ,0,0,0}, - {12857,12856,12859 ,4737,4736,4739 ,0,0,0}, {12860,12858,12861 ,4740,4738,4741 ,0,0,0}, - {12858,12860,12859 ,4738,4740,4739 ,0,0,0}, {12861,12862,12863 ,4741,4742,4743 ,0,0,0}, - {12863,12860,12861 ,4743,4740,4741 ,0,0,0}, {12864,12865,12862 ,4744,4745,4742 ,0,0,0}, - {12863,12862,12865 ,4743,4742,4745 ,0,0,0}, {12866,12864,12867 ,4746,4744,4747 ,0,0,0}, - {12864,12866,12865 ,4744,4746,4745 ,0,0,0}, {12867,12868,12869 ,4747,4748,4749 ,0,0,0}, - {12869,12866,12867 ,4749,4746,4747 ,0,0,0}, {12869,12868,12870 ,4749,4748,4750 ,0,0,0}, - {12871,12872,12873 ,4751,4752,4753 ,0,0,0}, {12874,12875,12876 ,4754,4755,4756 ,0,0,0}, - {12872,12876,12875 ,4752,4756,4755 ,0,0,0}, {12877,12878,12879 ,4757,4758,4759 ,0,0,0}, - {12880,12874,12881 ,4760,4754,4761 ,0,0,0}, {12880,12881,12877 ,4760,4761,4757 ,0,0,0}, - {12877,12879,12880 ,4757,4759,4760 ,0,0,0}, {12874,12876,12881 ,4754,4756,4761 ,0,0,0}, - {12882,12883,12884 ,4762,4763,4764 ,0,0,0}, {12885,12883,12882 ,4765,4763,4762 ,0,0,0}, - {12886,12887,12888 ,4766,4767,4768 ,0,0,0}, {12886,12888,12885 ,4766,4768,4765 ,0,0,0}, - {12885,12888,12883 ,4765,4768,4763 ,0,0,0}, {12878,12884,12879 ,4758,4764,4759 ,0,0,0}, - {12882,12884,12878 ,4762,4764,4758 ,0,0,0}, {12889,12890,12891 ,4769,4770,4771 ,0,0,0}, - {12892,12893,12894 ,4772,4773,4774 ,0,0,0}, {12891,12890,12894 ,4771,4770,4774 ,0,0,0}, - {12895,12896,12897 ,4775,4776,4777 ,0,0,0}, {12890,12892,12894 ,4770,4772,4774 ,0,0,0}, - {12895,12893,12896 ,4775,4773,4776 ,0,0,0}, {12893,12892,12896 ,4773,4772,4776 ,0,0,0}, - {12889,12891,12887 ,4769,4771,4767 ,0,0,0}, {12898,12895,12897 ,4777,4775,4777 ,0,0,0}, - {12886,12889,12887 ,4766,4769,4767 ,0,0,0}, {12872,12875,12873 ,4752,4755,4753 ,0,0,0}, - {12871,12873,12899 ,4751,4753,4778 ,0,0,0}, {12899,12900,12901 ,4778,4779,4780 ,0,0,0}, - {12901,12871,12899 ,4780,4751,4778 ,0,0,0}, {12902,12900,12903 ,4781,4779,4782 ,0,0,0}, - {12900,12902,12901 ,4779,4781,4780 ,0,0,0}, {12904,12905,12903 ,4783,4784,4782 ,0,0,0}, - {12902,12903,12905 ,4781,4782,4784 ,0,0,0}, {12904,12906,12907 ,4783,4785,4786 ,0,0,0}, - {12907,12905,12904 ,4786,4784,4783 ,0,0,0}, {12908,12906,12909 ,4787,4785,4788 ,0,0,0}, - {12906,12908,12907 ,4785,4787,4786 ,0,0,0}, {12910,12911,12909 ,4789,4790,4788 ,0,0,0}, - {12908,12909,12911 ,4787,4788,4790 ,0,0,0}, {12910,12912,12913 ,4789,4791,4792 ,0,0,0}, - {12913,12911,12910 ,4792,4790,4789 ,0,0,0}, {12914,12912,12915 ,4793,4791,4794 ,0,0,0}, - {12912,12914,12913 ,4791,4793,4792 ,0,0,0}, {12916,12917,12915 ,4795,4796,4794 ,0,0,0}, - {12914,12915,12917 ,4793,4794,4796 ,0,0,0}, {12916,12918,12919 ,4795,4797,4798 ,0,0,0}, - {12919,12917,12916 ,4798,4796,4795 ,0,0,0}, {12918,12920,12919 ,4797,4799,4798 ,0,0,0}, - {12918,12921,12920 ,4797,324,4799 ,0,0,0}, {12922,12923,12924 ,82,4800,4801 ,0,0,0}, - {12924,12925,12926 ,4801,4802,4803 ,0,0,0}, {12925,12927,12926 ,4802,4804,4803 ,0,0,0}, - {12924,12926,12922 ,4801,4803,82 ,0,0,0}, {12928,12929,12930 ,4805,4806,4807 ,0,0,0}, - {12930,12929,12927 ,4807,4806,4804 ,0,0,0}, {12928,12931,12932 ,4805,4808,4809 ,0,0,0}, - {12932,12929,12928 ,4809,4806,4805 ,0,0,0}, {12932,12931,12933 ,4809,4808,4810 ,0,0,0}, - {12933,12931,12934 ,4810,4808,4811 ,0,0,0}, {12934,12935,12936 ,4811,4812,4813 ,0,0,0}, - {12933,12934,12936 ,4810,4811,4813 ,0,0,0}, {12927,12925,12930 ,4804,4802,4807 ,0,0,0}, - {12937,12938,12939 ,4814,4815,4816 ,0,0,0}, {12937,12939,12935 ,4814,4816,4812 ,0,0,0}, - {12935,12939,12936 ,4812,4816,4813 ,0,0,0}, {12922,12940,12923 ,82,4817,4800 ,0,0,0}, - {12941,12940,12942 ,4818,4817,4819 ,0,0,0}, {12940,12941,12923 ,4817,4818,4800 ,0,0,0}, - {12943,12944,12942 ,4820,4821,4819 ,0,0,0}, {12941,12942,12944 ,4818,4819,4821 ,0,0,0}, - {12943,12945,12946 ,4820,4822,4823 ,0,0,0}, {12946,12944,12943 ,4823,4821,4820 ,0,0,0}, - {12947,12945,12948 ,4824,4822,4825 ,0,0,0}, {12945,12947,12946 ,4822,4824,4823 ,0,0,0}, - {12949,12950,12948 ,4826,4827,4825 ,0,0,0}, {12947,12948,12950 ,4824,4825,4827 ,0,0,0}, - {12949,12951,12952 ,4826,4828,4829 ,0,0,0}, {12952,12950,12949 ,4829,4827,4826 ,0,0,0}, - {12953,12951,12954 ,4830,4828,4831 ,0,0,0}, {12951,12953,12952 ,4828,4830,4829 ,0,0,0}, - {12949,12948,12955 ,4832,4833,4834 ,0,0,0}, {12955,12951,12949 ,4834,4835,4832 ,0,0,0}, - {12955,12954,12951 ,4834,4836,4835 ,0,0,0}, {12955,12945,12943 ,4834,4837,4838 ,0,0,0}, - {12948,12945,12955 ,4833,4837,4834 ,0,0,0}, {12955,12942,12940 ,4834,4839,4840 ,0,0,0}, - {12943,12942,12955 ,4838,4839,4834 ,0,0,0}, {12940,12922,12955 ,4840,4841,4834 ,0,0,0}, - {12927,12955,12926 ,4842,4834,4843 ,0,0,0}, {12955,12922,12926 ,4834,4841,4843 ,0,0,0}, - {12932,12955,12929 ,4844,4834,4845 ,0,0,0}, {12955,12927,12929 ,4834,4842,4845 ,0,0,0}, - {12936,12955,12933 ,4846,4834,4847 ,0,0,0}, {12955,12932,12933 ,4834,4844,4847 ,0,0,0}, - {12938,12955,12939 ,4848,4834,4849 ,0,0,0}, {12955,12936,12939 ,4834,4846,4849 ,0,0,0}, - {12956,12957,12958 ,82,4850,4851 ,0,0,0}, {12958,12959,12960 ,4851,4852,4853 ,0,0,0}, - {12959,12961,12960 ,4852,4854,4853 ,0,0,0}, {12958,12960,12956 ,4851,4853,82 ,0,0,0}, - {12962,12963,12964 ,4855,4856,4857 ,0,0,0}, {12964,12963,12961 ,4857,4856,4854 ,0,0,0}, - {12962,12965,12966 ,4855,4858,4859 ,0,0,0}, {12966,12963,12962 ,4859,4856,4855 ,0,0,0}, - {12966,12965,12967 ,4859,4858,4860 ,0,0,0}, {12967,12965,12968 ,4860,4858,4861 ,0,0,0}, - {12968,12969,12970 ,4861,4862,4863 ,0,0,0}, {12967,12968,12970 ,4860,4861,4863 ,0,0,0}, - {12961,12959,12964 ,4854,4852,4857 ,0,0,0}, {12971,12972,12973 ,4864,4865,4866 ,0,0,0}, - {12971,12973,12969 ,4864,4866,4862 ,0,0,0}, {12969,12973,12970 ,4862,4866,4863 ,0,0,0}, - {12956,12974,12957 ,82,4867,4850 ,0,0,0}, {12975,12974,12976 ,4868,4867,4869 ,0,0,0}, - {12974,12975,12957 ,4867,4868,4850 ,0,0,0}, {12977,12978,12976 ,4870,4871,4869 ,0,0,0}, - {12975,12976,12978 ,4868,4869,4871 ,0,0,0}, {12977,12979,12980 ,4870,4872,4873 ,0,0,0}, - {12980,12978,12977 ,4873,4871,4870 ,0,0,0}, {12981,12979,12982 ,4874,4872,4875 ,0,0,0}, - {12979,12981,12980 ,4872,4874,4873 ,0,0,0}, {12983,12984,12982 ,4876,4877,4875 ,0,0,0}, - {12981,12982,12984 ,4874,4875,4877 ,0,0,0}, {12983,12985,12986 ,4876,4878,4829 ,0,0,0}, - {12986,12984,12983 ,4829,4877,4876 ,0,0,0}, {12987,12985,12988 ,4879,4878,4831 ,0,0,0}, - {12985,12987,12986 ,4878,4879,4829 ,0,0,0}, {12983,12982,12989 ,4832,4833,4880 ,0,0,0}, - {12989,12985,12983 ,4880,4835,4832 ,0,0,0}, {12989,12988,12985 ,4880,4881,4835 ,0,0,0}, - {12989,12979,12977 ,4880,4837,4838 ,0,0,0}, {12982,12979,12989 ,4833,4837,4880 ,0,0,0}, - {12989,12976,12974 ,4880,4839,4840 ,0,0,0}, {12977,12976,12989 ,4838,4839,4880 ,0,0,0}, - {12974,12956,12989 ,4840,4882,4880 ,0,0,0}, {12961,12989,12960 ,4842,4880,4843 ,0,0,0}, - {12989,12956,12960 ,4880,4882,4843 ,0,0,0}, {12966,12989,12963 ,4844,4880,4845 ,0,0,0}, - {12989,12961,12963 ,4880,4842,4845 ,0,0,0}, {12970,12989,12967 ,4846,4880,4847 ,0,0,0}, - {12989,12966,12967 ,4880,4844,4847 ,0,0,0}, {12972,12989,12973 ,4883,4880,4849 ,0,0,0}, - {12989,12970,12973 ,4880,4846,4849 ,0,0,0}, {12990,12991,12992 ,4884,4885,4886 ,0,0,0}, - {12992,12993,12994 ,4886,4887,4888 ,0,0,0}, {12993,12995,12994 ,4887,4889,4888 ,0,0,0}, - {12992,12994,12990 ,4886,4888,4884 ,0,0,0}, {12996,12997,12998 ,4890,4891,4857 ,0,0,0}, - {12998,12997,12995 ,4857,4891,4889 ,0,0,0}, {12996,12999,13000 ,4890,4892,4893 ,0,0,0}, - {13000,12997,12996 ,4893,4891,4890 ,0,0,0}, {13000,12999,13001 ,4893,4892,4894 ,0,0,0}, - {13001,12999,13002 ,4894,4892,4895 ,0,0,0}, {13002,13003,13004 ,4895,4896,4897 ,0,0,0}, - {13001,13002,13004 ,4894,4895,4897 ,0,0,0}, {12995,12993,12998 ,4889,4887,4857 ,0,0,0}, - {13005,13006,13007 ,4898,4899,4900 ,0,0,0}, {13005,13007,13003 ,4898,4900,4896 ,0,0,0}, - {13003,13007,13004 ,4896,4900,4897 ,0,0,0}, {12990,13008,12991 ,4884,4901,4885 ,0,0,0}, - {13009,13008,13010 ,4868,4901,4902 ,0,0,0}, {13008,13009,12991 ,4901,4868,4885 ,0,0,0}, - {13011,13012,13010 ,4820,4903,4902 ,0,0,0}, {13009,13010,13012 ,4868,4902,4903 ,0,0,0}, - {13011,13013,13014 ,4820,4904,4905 ,0,0,0}, {13014,13012,13011 ,4905,4903,4820 ,0,0,0}, - {13015,13013,13016 ,4906,4904,4907 ,0,0,0}, {13013,13015,13014 ,4904,4906,4905 ,0,0,0}, - {13017,13018,13016 ,4826,4877,4907 ,0,0,0}, {13015,13016,13018 ,4906,4907,4877 ,0,0,0}, - {13017,13019,13020 ,4826,4828,4908 ,0,0,0}, {13020,13018,13017 ,4908,4877,4826 ,0,0,0}, - {13021,13019,13022 ,4909,4828,4910 ,0,0,0}, {13019,13021,13020 ,4828,4909,4908 ,0,0,0}, - {13017,13016,13023 ,4832,4833,4880 ,0,0,0}, {13023,13019,13017 ,4880,4835,4832 ,0,0,0}, - {13023,13022,13019 ,4880,4911,4835 ,0,0,0}, {13023,13013,13011 ,4880,4837,4838 ,0,0,0}, - {13016,13013,13023 ,4833,4837,4880 ,0,0,0}, {13023,13010,13008 ,4880,4839,4840 ,0,0,0}, - {13011,13010,13023 ,4838,4839,4880 ,0,0,0}, {13008,12990,13023 ,4840,4912,4880 ,0,0,0}, - {12995,13023,12994 ,4842,4880,4843 ,0,0,0}, {13023,12990,12994 ,4880,4912,4843 ,0,0,0}, - {13000,13023,12997 ,4844,4880,4845 ,0,0,0}, {13023,12995,12997 ,4880,4842,4845 ,0,0,0}, - {13004,13023,13001 ,4846,4880,4847 ,0,0,0}, {13023,13000,13001 ,4880,4844,4847 ,0,0,0}, - {13006,13023,13007 ,4913,4880,4849 ,0,0,0}, {13023,13004,13007 ,4880,4846,4849 ,0,0,0}, - {13024,13025,13026 ,4914,4915,4916 ,0,0,0}, {13026,13027,13028 ,4916,4917,4918 ,0,0,0}, - {13027,13029,13028 ,4917,4919,4918 ,0,0,0}, {13026,13028,13024 ,4916,4918,4914 ,0,0,0}, - {13030,13031,13032 ,4920,4921,4922 ,0,0,0}, {13032,13031,13029 ,4922,4921,4919 ,0,0,0}, - {13030,13033,13034 ,4920,4923,4924 ,0,0,0}, {13034,13031,13030 ,4924,4921,4920 ,0,0,0}, - {13034,13033,13035 ,4924,4923,4925 ,0,0,0}, {13035,13033,13036 ,4925,4923,4926 ,0,0,0}, - {13036,13037,13038 ,4926,4927,4928 ,0,0,0}, {13035,13036,13038 ,4925,4926,4928 ,0,0,0}, - {13029,13027,13032 ,4919,4917,4922 ,0,0,0}, {13039,13040,13041 ,4929,4815,4930 ,0,0,0}, - {13039,13041,13037 ,4929,4930,4927 ,0,0,0}, {13037,13041,13038 ,4927,4930,4928 ,0,0,0}, - {13024,13042,13025 ,4914,4931,4915 ,0,0,0}, {13043,13042,13044 ,4932,4931,4933 ,0,0,0}, - {13042,13043,13025 ,4931,4932,4915 ,0,0,0}, {13045,13046,13044 ,4934,4821,4933 ,0,0,0}, - {13043,13044,13046 ,4932,4933,4821 ,0,0,0}, {13045,13047,13048 ,4934,4935,4936 ,0,0,0}, - {13048,13046,13045 ,4936,4821,4934 ,0,0,0}, {13049,13047,13050 ,4937,4935,4938 ,0,0,0}, - {13047,13049,13048 ,4935,4937,4936 ,0,0,0}, {13051,13052,13050 ,4826,4877,4938 ,0,0,0}, - {13049,13050,13052 ,4937,4938,4877 ,0,0,0}, {13051,13053,13054 ,4826,4939,4940 ,0,0,0}, - {13054,13052,13051 ,4940,4877,4826 ,0,0,0}, {13055,13053,13056 ,4941,4939,4942 ,0,0,0}, - {13053,13055,13054 ,4939,4941,4940 ,0,0,0}, {13051,13050,13057 ,4832,4833,4943 ,0,0,0}, - {13057,13053,13051 ,4943,4835,4832 ,0,0,0}, {13057,13056,13053 ,4943,4944,4835 ,0,0,0}, - {13057,13047,13045 ,4943,4837,4838 ,0,0,0}, {13050,13047,13057 ,4833,4837,4943 ,0,0,0}, - {13057,13044,13042 ,4943,4839,4840 ,0,0,0}, {13045,13044,13057 ,4838,4839,4943 ,0,0,0}, - {13042,13024,13057 ,4840,4945,4943 ,0,0,0}, {13029,13057,13028 ,4842,4943,4843 ,0,0,0}, - {13057,13024,13028 ,4943,4945,4843 ,0,0,0}, {13034,13057,13031 ,4844,4943,4845 ,0,0,0}, - {13057,13029,13031 ,4943,4842,4845 ,0,0,0}, {13038,13057,13035 ,4846,4943,4847 ,0,0,0}, - {13057,13034,13035 ,4943,4844,4847 ,0,0,0}, {13040,13057,13041 ,4946,4943,4849 ,0,0,0}, - {13057,13038,13041 ,4943,4846,4849 ,0,0,0}, {13058,13059,13060 ,4947,4948,4949 ,0,0,0}, - {13061,13062,13063 ,4950,4951,4952 ,0,0,0}, {13060,13063,13062 ,4949,4952,4951 ,0,0,0}, - {13064,13065,13066 ,4953,4954,4955 ,0,0,0}, {13067,13068,13061 ,4956,4957,4950 ,0,0,0}, - {13064,13068,13067 ,4953,4957,4956 ,0,0,0}, {13067,13065,13064 ,4956,4954,4953 ,0,0,0}, - {13068,13062,13061 ,4957,4951,4950 ,0,0,0}, {13069,13070,13071 ,4958,4959,4960 ,0,0,0}, - {13070,13072,13071 ,4959,4961,4960 ,0,0,0}, {13073,13074,13075 ,4962,4963,4964 ,0,0,0}, - {13073,13075,13072 ,4962,4964,4961 ,0,0,0}, {13070,13073,13072 ,4959,4962,4961 ,0,0,0}, - {13065,13069,13066 ,4954,4958,4955 ,0,0,0}, {13069,13071,13066 ,4958,4960,4955 ,0,0,0}, - {13076,13077,13078 ,4965,4966,4967 ,0,0,0}, {13079,13080,13081 ,4968,4969,4970 ,0,0,0}, - {13078,13077,13079 ,4967,4966,4968 ,0,0,0}, {13082,13083,13084 ,4726,4971,4972 ,0,0,0}, - {13078,13079,13081 ,4967,4968,4970 ,0,0,0}, {13084,13083,13080 ,4972,4971,4969 ,0,0,0}, - {13083,13081,13080 ,4971,4970,4969 ,0,0,0}, {13074,13077,13076 ,4963,4966,4965 ,0,0,0}, - {13085,13082,13084 ,4726,4726,4972 ,0,0,0}, {13075,13074,13076 ,4964,4963,4965 ,0,0,0}, - {13059,13063,13060 ,4948,4952,4949 ,0,0,0}, {13086,13059,13058 ,4973,4948,4947 ,0,0,0}, - {13086,13087,13088 ,4973,4974,4975 ,0,0,0}, {13087,13086,13058 ,4974,4973,4947 ,0,0,0}, - {13089,13088,13090 ,4976,4975,4977 ,0,0,0}, {13087,13090,13088 ,4974,4977,4975 ,0,0,0}, - {13091,13092,13089 ,4978,4979,4976 ,0,0,0}, {13089,13090,13091 ,4976,4977,4978 ,0,0,0}, - {13092,13093,13094 ,4979,4980,4981 ,0,0,0}, {13093,13092,13091 ,4980,4979,4978 ,0,0,0}, - {13095,13094,13096 ,4982,4981,4983 ,0,0,0}, {13093,13096,13094 ,4980,4983,4981 ,0,0,0}, - {13097,13098,13095 ,4984,4985,4982 ,0,0,0}, {13095,13096,13097 ,4982,4983,4984 ,0,0,0}, - {13098,13099,13100 ,4985,4986,4987 ,0,0,0}, {13099,13098,13097 ,4986,4985,4984 ,0,0,0}, - {13101,13100,13102 ,4988,4987,4989 ,0,0,0}, {13099,13102,13100 ,4986,4989,4987 ,0,0,0}, - {13103,13104,13101 ,4990,4991,4988 ,0,0,0}, {13101,13102,13103 ,4988,4989,4990 ,0,0,0}, - {13104,13105,13106 ,4991,4992,4748 ,0,0,0}, {13105,13104,13103 ,4992,4991,4990 ,0,0,0}, - {13105,13107,13106 ,4992,4750,4748 ,0,0,0}, {13108,13109,13110 ,4993,4994,4995 ,0,0,0}, - {13111,13112,13113 ,4996,4997,4998 ,0,0,0}, {13109,13114,13115 ,4994,4999,5000 ,0,0,0}, - {13114,13109,13108 ,4999,4994,4993 ,0,0,0}, {13114,13116,13115 ,4999,5001,5000 ,0,0,0}, - {13110,13117,13108 ,4995,5002,4993 ,0,0,0}, {13111,13117,13118 ,4996,5002,5003 ,0,0,0}, - {13110,13118,13117 ,4995,5003,5002 ,0,0,0}, {13119,13120,13121 ,5004,5005,5006 ,0,0,0}, - {13111,13118,13112 ,4996,5003,4997 ,0,0,0}, {13122,13123,13124 ,5007,5008,5009 ,0,0,0}, - {13125,13126,13127 ,5010,5011,5012 ,0,0,0}, {13128,13129,13130 ,5013,5014,5015 ,0,0,0}, - {13131,13132,13133 ,5016,5017,5018 ,0,0,0}, {13134,13135,13136 ,5019,5020,5021 ,0,0,0}, - {13137,13138,13129 ,5022,5023,5014 ,0,0,0}, {13139,13140,13141 ,5024,5025,5026 ,0,0,0}, - {13140,13135,13142 ,5025,5020,5027 ,0,0,0}, {13143,13144,13145 ,5028,5029,5030 ,0,0,0}, - {13146,13147,13139 ,5031,5032,5024 ,0,0,0}, {13148,13149,13150 ,5033,5034,5035 ,0,0,0}, - {13151,13145,13152 ,5036,5030,5037 ,0,0,0}, {13153,13154,13155 ,5038,5039,5040 ,0,0,0}, - {13156,13154,13157 ,5041,5039,5042 ,0,0,0}, {13158,13159,13160 ,5043,5044,5045 ,0,0,0}, - {13155,13161,13158 ,5040,5046,5043 ,0,0,0}, {13162,13163,13164 ,5047,5048,5049 ,0,0,0}, - {13162,13165,13166 ,5047,5050,5051 ,0,0,0}, {13167,13168,13169 ,5052,5053,5054 ,0,0,0}, - {13170,13171,13169 ,5055,5056,5054 ,0,0,0}, {13172,13173,13174 ,5057,5058,5059 ,0,0,0}, - {13173,13167,13175 ,5058,5052,5060 ,0,0,0}, {13176,13177,13178 ,5061,5062,5063 ,0,0,0}, - {13172,13179,13176 ,5057,5064,5061 ,0,0,0}, {13180,13181,13182 ,5065,5066,5067 ,0,0,0}, - {13180,13183,13184 ,5065,5068,5069 ,0,0,0}, {13185,13186,13187 ,5070,5071,5072 ,0,0,0}, - {13185,13188,13181 ,5070,5073,5066 ,0,0,0}, {13189,13186,13190 ,5074,5071,5075 ,0,0,0}, - {13186,13189,13187 ,5071,5074,5072 ,0,0,0}, {13191,13192,13190 ,5076,5077,5075 ,0,0,0}, - {13189,13190,13192 ,5074,5075,5077 ,0,0,0}, {13193,13194,13192 ,5078,5079,5077 ,0,0,0}, - {13192,13191,13193 ,5077,5076,5078 ,0,0,0}, {13194,13195,13196 ,5079,5080,5081 ,0,0,0}, - {13195,13194,13193 ,5080,5079,5078 ,0,0,0}, {13197,13196,13198 ,5082,5081,5083 ,0,0,0}, - {13195,13198,13196 ,5080,5083,5081 ,0,0,0}, {13199,13200,13197 ,5084,5085,5082 ,0,0,0}, - {13197,13198,13199 ,5082,5083,5084 ,0,0,0}, {13200,13201,13202 ,5085,5086,5087 ,0,0,0}, - {13201,13200,13199 ,5086,5085,5084 ,0,0,0}, {13203,13202,13204 ,5088,5087,5089 ,0,0,0}, - {13201,13204,13202 ,5086,5089,5087 ,0,0,0}, {13205,13203,13206 ,5090,5088,5091 ,0,0,0}, - {13203,13204,13206 ,5088,5089,5091 ,0,0,0}, {13205,13207,13208 ,5090,5092,5093 ,0,0,0}, - {13208,13203,13205 ,5093,5088,5090 ,0,0,0}, {13209,13207,13210 ,5094,5092,5095 ,0,0,0}, - {13207,13209,13208 ,5092,5094,5093 ,0,0,0}, {13211,13212,13210 ,126,5096,5095 ,0,0,0}, - {13209,13210,13212 ,5094,5095,5096 ,0,0,0}, {13213,13212,13211 ,126,5096,126 ,0,0,0}, - {13182,13181,13188 ,5067,5066,5073 ,0,0,0}, {13185,13187,13188 ,5070,5072,5073 ,0,0,0}, - {13178,13183,13176 ,5063,5068,5061 ,0,0,0}, {13180,13182,13183 ,5065,5067,5068 ,0,0,0}, - {13178,13184,13183 ,5063,5069,5068 ,0,0,0}, {13174,13179,13172 ,5059,5064,5057 ,0,0,0}, - {13176,13179,13177 ,5061,5064,5062 ,0,0,0}, {13168,13167,13173 ,5053,5052,5058 ,0,0,0}, - {13173,13175,13174 ,5058,5060,5059 ,0,0,0}, {13170,13163,13171 ,5055,5048,5056 ,0,0,0}, - {13168,13170,13169 ,5053,5055,5054 ,0,0,0}, {13162,13164,13165 ,5047,5049,5050 ,0,0,0}, - {13163,13170,13164 ,5048,5055,5049 ,0,0,0}, {13159,13166,13160 ,5044,5051,5045 ,0,0,0}, - {13166,13165,13160 ,5051,5050,5045 ,0,0,0}, {13155,13158,13153 ,5040,5043,5038 ,0,0,0}, - {13161,13159,13158 ,5046,5044,5043 ,0,0,0}, {13148,13156,13149 ,5033,5041,5034 ,0,0,0}, - {13157,13154,13153 ,5042,5039,5038 ,0,0,0}, {13149,13156,13157 ,5034,5041,5042 ,0,0,0}, - {13150,13151,13152 ,5035,5036,5037 ,0,0,0}, {13149,13151,13150 ,5034,5036,5035 ,0,0,0}, - {13145,13147,13143 ,5030,5032,5028 ,0,0,0}, {13152,13145,13144 ,5037,5030,5029 ,0,0,0}, - {13214,13146,13139 ,5097,5031,5024 ,0,0,0}, {13146,13143,13147 ,5031,5028,5032 ,0,0,0}, - {13215,13140,13142 ,5098,5025,5027 ,0,0,0}, {13139,13141,13214 ,5024,5026,5097 ,0,0,0}, - {13140,13215,13141 ,5025,5098,5026 ,0,0,0}, {13136,13137,13134 ,5021,5022,5019 ,0,0,0}, - {13142,13135,13134 ,5027,5020,5019 ,0,0,0}, {13130,13133,13128 ,5015,5018,5013 ,0,0,0}, - {13137,13136,13138 ,5022,5021,5023 ,0,0,0}, {13129,13138,13130 ,5014,5023,5015 ,0,0,0}, - {13122,13131,13133 ,5007,5016,5018 ,0,0,0}, {13132,13128,13133 ,5017,5013,5018 ,0,0,0}, - {13123,13127,13124 ,5008,5012,5009 ,0,0,0}, {13122,13124,13131 ,5007,5009,5016 ,0,0,0}, - {13125,13119,13126 ,5010,5004,5011 ,0,0,0}, {13123,13125,13127 ,5008,5010,5012 ,0,0,0}, - {13121,13120,13113 ,5006,5005,4998 ,0,0,0}, {13126,13119,13121 ,5011,5004,5006 ,0,0,0}, - {13111,13113,13120 ,4996,4998,5005 ,0,0,0}, {13216,13217,13218 ,5099,5100,5101 ,0,0,0}, - {13219,13220,13221 ,5102,5103,5104 ,0,0,0}, {13222,13220,13219 ,5105,5103,5102 ,0,0,0}, - {13223,13219,13221 ,5106,5102,5104 ,0,0,0}, {13224,13225,13226 ,5107,5108,5109 ,0,0,0}, - {13227,13228,13223 ,5110,5108,5106 ,0,0,0}, {13225,13229,13226 ,5108,5111,5109 ,0,0,0}, - {13225,13228,13229 ,5108,5108,5111 ,0,0,0}, {13229,13230,13231 ,5111,5112,5113 ,0,0,0}, - {13230,13232,13231 ,5112,5114,5113 ,0,0,0}, {13231,13232,13233 ,5113,5114,5115 ,0,0,0}, - {13232,13234,13233 ,5114,5116,5115 ,0,0,0}, {13235,13236,13234 ,5117,5118,5116 ,0,0,0}, - {13235,13237,13238 ,5117,5119,5120 ,0,0,0}, {13239,13238,13237 ,5121,5120,5119 ,0,0,0}, - {13239,13237,13240 ,5121,5119,5122 ,0,0,0}, {13240,13241,13239 ,5122,5123,5121 ,0,0,0}, - {13236,13233,13234 ,5118,5115,5116 ,0,0,0}, {13238,13236,13235 ,5120,5118,5117 ,0,0,0}, - {13241,13242,13243 ,5123,5124,5125 ,0,0,0}, {13242,13241,13240 ,5124,5123,5122 ,0,0,0}, - {12820,13243,13242 ,5126,5125,5124 ,0,0,0}, {13222,13219,13244 ,5105,5102,5127 ,0,0,0}, - {13245,13246,13247 ,5128,5129,5130 ,0,0,0}, {13245,13244,13246 ,5128,5127,5129 ,0,0,0}, - {13246,13248,13247 ,5129,5131,5130 ,0,0,0}, {13248,13246,13249 ,5131,5129,5132 ,0,0,0}, - {13250,13251,13252 ,5133,5134,5135 ,0,0,0}, {13250,13249,13251 ,5133,5132,5134 ,0,0,0}, - {13253,13252,13251 ,5136,5135,5134 ,0,0,0}, {13252,13253,13254 ,5135,5136,5137 ,0,0,0}, - {13255,13256,13257 ,5138,5139,5140 ,0,0,0}, {13258,13259,13253 ,5141,5142,5136 ,0,0,0}, - {13260,13261,13258 ,5143,5144,5141 ,0,0,0}, {13261,13260,13262 ,5144,5143,5145 ,0,0,0}, - {13263,13264,13260 ,5146,5147,5143 ,0,0,0}, {13217,13216,13265 ,5100,5099,5148 ,0,0,0}, - {13266,13267,13263 ,5149,5150,5146 ,0,0,0}, {13268,13269,13270 ,5151,5152,5153 ,0,0,0}, - {13271,13272,13273 ,5154,5155,5156 ,0,0,0}, {13274,13275,13276 ,5157,5158,5159 ,0,0,0}, - {13277,13278,13279 ,5160,5161,5162 ,0,0,0}, {13280,13281,13282 ,5163,5164,5165 ,0,0,0}, - {13283,13284,13285 ,5166,5167,5168 ,0,0,0}, {13283,13286,13287 ,5166,5169,5170 ,0,0,0}, - {13288,13289,13290 ,5171,5172,5173 ,0,0,0}, {13291,13292,13293 ,5174,5175,5176 ,0,0,0}, - {13294,13295,13296 ,5177,5178,5179 ,0,0,0}, {13297,13289,13288 ,5180,5172,5171 ,0,0,0}, - {13298,13299,13300 ,5179,5181,5182 ,0,0,0}, {13298,13296,13295 ,5179,5179,5178 ,0,0,0}, - {13301,13302,13303 ,5183,5184,5185 ,0,0,0}, {13304,13301,13300 ,5186,5183,5182 ,0,0,0}, - {13305,13306,13307 ,5187,5188,5189 ,0,0,0}, {13308,13305,13303 ,5190,5187,5185 ,0,0,0}, - {13309,13310,13311 ,5191,5192,5193 ,0,0,0}, {13310,13309,13307 ,5192,5191,5189 ,0,0,0}, - {13312,13313,13311 ,5194,5195,5193 ,0,0,0}, {13309,13311,13313 ,5191,5193,5195 ,0,0,0}, - {13312,13314,13315 ,5194,5196,5197 ,0,0,0}, {13315,13313,13312 ,5197,5195,5194 ,0,0,0}, - {13308,13306,13305 ,5190,5188,5187 ,0,0,0}, {13306,13310,13307 ,5188,5192,5189 ,0,0,0}, - {13302,13308,13303 ,5184,5190,5185 ,0,0,0}, {13304,13302,13301 ,5186,5184,5183 ,0,0,0}, - {13299,13304,13300 ,5181,5186,5182 ,0,0,0}, {13299,13298,13295 ,5181,5179,5178 ,0,0,0}, - {13295,13316,13299 ,5178,5198,5181 ,0,0,0}, {13288,13316,13297 ,5171,5198,5180 ,0,0,0}, - {13316,13295,13297 ,5198,5178,5180 ,0,0,0}, {13317,13318,13319 ,5199,5200,5201 ,0,0,0}, - {13290,13289,13291 ,5173,5172,5174 ,0,0,0}, {13317,13320,13321 ,5199,5202,5203 ,0,0,0}, - {13321,13318,13317 ,5203,5200,5199 ,0,0,0}, {13322,13320,13323 ,5204,5202,5205 ,0,0,0}, - {13320,13322,13321 ,5202,5204,5203 ,0,0,0}, {13324,12918,13323 ,5206,5207,5205 ,0,0,0}, - {13322,13323,12918 ,5204,5205,5207 ,0,0,0}, {12921,12918,13324 ,5197,5207,5206 ,0,0,0}, - {13319,13318,13325 ,5201,5200,5208 ,0,0,0}, {13326,13327,13328 ,5209,5210,5211 ,0,0,0}, - {13319,13325,13328 ,5201,5208,5211 ,0,0,0}, {13326,13329,13327 ,5209,5212,5210 ,0,0,0}, - {13328,13325,13326 ,5211,5208,5209 ,0,0,0}, {13292,13284,13293 ,5175,5167,5176 ,0,0,0}, - {13329,13330,13327 ,5212,5213,5210 ,0,0,0}, {13296,13330,13294 ,5179,5213,5177 ,0,0,0}, - {13329,13294,13330 ,5212,5177,5213 ,0,0,0}, {13291,13293,13290 ,5174,5176,5173 ,0,0,0}, - {13282,13271,13280 ,5165,5154,5163 ,0,0,0}, {13283,13285,13286 ,5166,5168,5169 ,0,0,0}, - {13284,13292,13285 ,5167,5175,5168 ,0,0,0}, {13286,13279,13287 ,5169,5162,5170 ,0,0,0}, - {13281,13278,13277 ,5164,5161,5160 ,0,0,0}, {13278,13287,13279 ,5161,5170,5162 ,0,0,0}, - {13282,13281,13277 ,5165,5164,5160 ,0,0,0}, {13268,13275,13274 ,5151,5158,5157 ,0,0,0}, - {13271,13273,13280 ,5154,5156,5163 ,0,0,0}, {13272,13276,13273 ,5155,5159,5156 ,0,0,0}, - {13270,13275,13268 ,5153,5158,5151 ,0,0,0}, {13272,13274,13276 ,5155,5157,5159 ,0,0,0}, - {13218,13270,13269 ,5101,5153,5152 ,0,0,0}, {13269,12870,13266 ,5152,5214,5149 ,0,0,0}, - {13224,13331,13225 ,5107,5215,5108 ,0,0,0}, {13230,13229,13228 ,5112,5111,5108 ,0,0,0}, - {13227,13332,13228 ,5110,5216,5108 ,0,0,0}, {13230,13228,13332 ,5112,5108,5216 ,0,0,0}, - {13333,13331,13334 ,5217,5215,5218 ,0,0,0}, {13221,13227,13223 ,5104,5110,5106 ,0,0,0}, - {13335,13333,13336 ,5219,5217,5220 ,0,0,0}, {13335,13337,13333 ,5219,5221,5217 ,0,0,0}, - {13338,13337,13339 ,5222,5221,5223 ,0,0,0}, {13245,13222,13244 ,5128,5105,5127 ,0,0,0}, - {13340,13338,13341 ,5224,5222,5225 ,0,0,0}, {13340,13342,13338 ,5224,5226,5222 ,0,0,0}, - {13343,13342,13344 ,5227,5226,5228 ,0,0,0}, {13250,13248,13249 ,5133,5131,5132 ,0,0,0}, - {13345,13346,13343 ,5229,5230,5227 ,0,0,0}, {13347,13346,13345 ,5231,5230,5229 ,0,0,0}, - {13348,13346,13349 ,5232,5230,5233 ,0,0,0}, {13259,13254,13253 ,5142,5137,5136 ,0,0,0}, - {13257,13348,13255 ,5140,5232,5138 ,0,0,0}, {13261,13259,13258 ,5144,5142,5141 ,0,0,0}, - {13350,13257,13351 ,5234,5140,5235 ,0,0,0}, {13264,13262,13260 ,5147,5145,5143 ,0,0,0}, - {13216,13350,13265 ,5099,5234,5148 ,0,0,0}, {13267,13264,13263 ,5150,5147,5146 ,0,0,0}, - {13267,13266,12870 ,5150,5149,5214 ,0,0,0}, {13269,13266,13218 ,5152,5149,5101 ,0,0,0}, - {13218,13266,13216 ,5101,5149,5099 ,0,0,0}, {13351,13265,13350 ,5235,5148,5234 ,0,0,0}, - {13256,13351,13257 ,5139,5235,5140 ,0,0,0}, {13349,13255,13348 ,5233,5138,5232 ,0,0,0}, - {13347,13349,13346 ,5231,5233,5230 ,0,0,0}, {13344,13345,13343 ,5228,5229,5227 ,0,0,0}, - {13340,13344,13342 ,5224,5228,5226 ,0,0,0}, {13339,13341,13338 ,5223,5225,5222 ,0,0,0}, - {13335,13339,13337 ,5219,5223,5221 ,0,0,0}, {13334,13336,13333 ,5218,5220,5217 ,0,0,0}, - {13224,13334,13331 ,5107,5218,5215 ,0,0,0}, {13352,13353,13354 ,5236,5237,5238 ,0,0,0}, - {13355,13356,13354 ,5239,5240,5238 ,0,0,0}, {13352,13354,13356 ,5236,5238,5240 ,0,0,0}, - {13355,13357,13358 ,5239,5241,5242 ,0,0,0}, {13358,13356,13355 ,5242,5240,5239 ,0,0,0}, - {13359,13357,13360 ,5243,5241,5244 ,0,0,0}, {13357,13359,13358 ,5241,5243,5242 ,0,0,0}, - {13361,13362,13360 ,5245,5246,5244 ,0,0,0}, {13359,13360,13362 ,5243,5244,5246 ,0,0,0}, - {13361,13363,13364 ,5245,5247,5248 ,0,0,0}, {13364,13362,13361 ,5248,5246,5245 ,0,0,0}, - {13365,13363,13366 ,5249,5247,5250 ,0,0,0}, {13363,13365,13364 ,5247,5249,5248 ,0,0,0}, - {13367,13368,13366 ,5251,5252,5250 ,0,0,0}, {13365,13366,13368 ,5249,5250,5252 ,0,0,0}, - {13367,13369,13370 ,5251,5253,5254 ,0,0,0}, {13370,13368,13367 ,5254,5252,5251 ,0,0,0}, - {13371,13369,13372 ,5255,5253,5256 ,0,0,0}, {13369,13371,13370 ,5253,5255,5254 ,0,0,0}, - {13373,13374,13372 ,5257,5258,5256 ,0,0,0}, {13371,13372,13374 ,5255,5256,5258 ,0,0,0}, - {13373,13375,13376 ,5257,5259,5260 ,0,0,0}, {13376,13374,13373 ,5260,5258,5257 ,0,0,0}, - {13377,13375,13378 ,5261,5259,5262 ,0,0,0}, {13375,13377,13376 ,5259,5261,5260 ,0,0,0}, - {13379,13380,13378 ,5263,5264,5262 ,0,0,0}, {13377,13378,13380 ,5261,5262,5264 ,0,0,0}, - {13379,13381,13382 ,5263,5265,5266 ,0,0,0}, {13382,13380,13379 ,5266,5264,5263 ,0,0,0}, - {13383,13381,13384 ,5267,5265,5268 ,0,0,0}, {13381,13383,13382 ,5265,5267,5266 ,0,0,0}, - {13385,13386,13384 ,5269,5270,5268 ,0,0,0}, {13383,13384,13386 ,5267,5268,5270 ,0,0,0}, - {13385,13387,13388 ,5269,5271,5272 ,0,0,0}, {13388,13386,13385 ,5272,5270,5269 ,0,0,0}, - {13389,13387,13390 ,5273,5271,5274 ,0,0,0}, {13387,13389,13388 ,5271,5273,5272 ,0,0,0}, - {13391,13392,13390 ,5275,5276,5274 ,0,0,0}, {13389,13390,13392 ,5273,5274,5276 ,0,0,0}, - {13391,13393,13394 ,5275,5277,5278 ,0,0,0}, {13394,13392,13391 ,5278,5276,5275 ,0,0,0}, - {13395,13393,13396 ,5279,5277,5280 ,0,0,0}, {13393,13395,13394 ,5277,5279,5278 ,0,0,0}, - {13397,13398,13396 ,5281,5282,5280 ,0,0,0}, {13395,13396,13398 ,5279,5280,5282 ,0,0,0}, - {13399,13397,13400 ,5283,5281,5284 ,0,0,0}, {13399,13398,13397 ,5283,5282,5281 ,0,0,0}, - {13401,13400,13402 ,5285,5284,5286 ,0,0,0}, {13397,13402,13400 ,5281,5286,5284 ,0,0,0}, - {13403,13401,13404 ,5287,5285,5288 ,0,0,0}, {13401,13402,13404 ,5285,5286,5288 ,0,0,0}, - {13403,13405,13406 ,5287,5289,5290 ,0,0,0}, {13406,13401,13403 ,5290,5285,5287 ,0,0,0}, - {13405,13407,13406 ,5289,5291,5290 ,0,0,0}, {13408,13353,13352 ,5292,5237,5236 ,0,0,0}, - {13408,13409,13410 ,5292,5293,5294 ,0,0,0}, {13410,13353,13408 ,5294,5237,5292 ,0,0,0}, - {13411,13409,13412 ,5295,5293,5296 ,0,0,0}, {13409,13411,13410 ,5293,5295,5294 ,0,0,0}, - {13413,13414,13412 ,5297,5298,5296 ,0,0,0}, {13411,13412,13414 ,5295,5296,5298 ,0,0,0}, - {13413,13415,13416 ,5297,5299,5300 ,0,0,0}, {13416,13414,13413 ,5300,5298,5297 ,0,0,0}, - {13417,13415,13418 ,5301,5299,5302 ,0,0,0}, {13415,13417,13416 ,5299,5301,5300 ,0,0,0}, - {13419,13420,13418 ,5303,5304,5302 ,0,0,0}, {13417,13418,13420 ,5301,5302,5304 ,0,0,0}, - {13419,13421,13422 ,5303,5305,5306 ,0,0,0}, {13422,13420,13419 ,5306,5304,5303 ,0,0,0}, - {13423,13421,13424 ,5307,5305,5308 ,0,0,0}, {13421,13423,13422 ,5305,5307,5306 ,0,0,0}, - {13425,13426,13424 ,5309,5310,5308 ,0,0,0}, {13423,13424,13426 ,5307,5308,5310 ,0,0,0}, - {13425,13427,13428 ,5309,5311,5312 ,0,0,0}, {13428,13426,13425 ,5312,5310,5309 ,0,0,0}, - {13429,13427,13430 ,5313,5311,5314 ,0,0,0}, {13427,13429,13428 ,5311,5313,5312 ,0,0,0}, - {13431,13432,13430 ,5315,5316,5314 ,0,0,0}, {13429,13430,13432 ,5313,5314,5316 ,0,0,0}, - {13431,13433,13434 ,5315,5317,5318 ,0,0,0}, {13434,13432,13431 ,5318,5316,5315 ,0,0,0}, - {13435,13433,13436 ,5319,5317,5320 ,0,0,0}, {13433,13435,13434 ,5317,5319,5318 ,0,0,0}, - {13437,13438,13436 ,5321,5322,5320 ,0,0,0}, {13435,13436,13438 ,5319,5320,5322 ,0,0,0}, - {13437,13439,13440 ,5321,5323,5324 ,0,0,0}, {13440,13438,13437 ,5324,5322,5321 ,0,0,0}, - {13441,13439,13442 ,5325,5323,5326 ,0,0,0}, {13439,13441,13440 ,5323,5325,5324 ,0,0,0}, - {13443,13444,13442 ,5327,5328,5326 ,0,0,0}, {13441,13442,13444 ,5325,5326,5328 ,0,0,0}, - {13443,13445,13446 ,5327,5329,5330 ,0,0,0}, {13446,13444,13443 ,5330,5328,5327 ,0,0,0}, - {13447,13445,13448 ,5331,5329,5332 ,0,0,0}, {13445,13447,13446 ,5329,5331,5330 ,0,0,0}, - {13449,13450,13448 ,5333,5334,5332 ,0,0,0}, {13447,13448,13450 ,5331,5332,5334 ,0,0,0}, - {13449,13451,13452 ,5333,5335,5336 ,0,0,0}, {13452,13450,13449 ,5336,5334,5333 ,0,0,0}, - {13453,13454,13451 ,5337,5338,5335 ,0,0,0}, {13451,13454,13452 ,5335,5338,5336 ,0,0,0}, - {13455,13456,13453 ,5339,5340,5337 ,0,0,0}, {13453,13451,13455 ,5337,5335,5339 ,0,0,0}, - {13457,13458,13456 ,5341,5342,5340 ,0,0,0}, {13457,13456,13455 ,5341,5340,5339 ,0,0,0}, - {13459,13458,13460 ,5343,5342,5344 ,0,0,0}, {13458,13459,13456 ,5342,5343,5340 ,0,0,0}, - {13459,13460,13461 ,5343,5344,5345 ,0,0,0}, {13462,13463,13464 ,5346,5347,5348 ,0,0,0}, - {13465,13466,13464 ,5349,5350,5348 ,0,0,0}, {13462,13464,13466 ,5346,5348,5350 ,0,0,0}, - {13465,13467,13468 ,5349,5351,5352 ,0,0,0}, {13468,13466,13465 ,5352,5350,5349 ,0,0,0}, - {13469,13467,13470 ,5353,5351,5354 ,0,0,0}, {13467,13469,13468 ,5351,5353,5352 ,0,0,0}, - {13471,13472,13470 ,5355,5356,5354 ,0,0,0}, {13469,13470,13472 ,5353,5354,5356 ,0,0,0}, - {13471,13473,13474 ,5355,5357,5358 ,0,0,0}, {13474,13472,13471 ,5358,5356,5355 ,0,0,0}, - {13475,13473,13476 ,5359,5357,5360 ,0,0,0}, {13473,13475,13474 ,5357,5359,5358 ,0,0,0}, - {13477,13478,13476 ,5361,5362,5360 ,0,0,0}, {13475,13476,13478 ,5359,5360,5362 ,0,0,0}, - {13477,13479,13480 ,5361,5363,5364 ,0,0,0}, {13480,13478,13477 ,5364,5362,5361 ,0,0,0}, - {13481,13479,13482 ,5365,5363,5366 ,0,0,0}, {13479,13481,13480 ,5363,5365,5364 ,0,0,0}, - {13483,13484,13482 ,5367,5368,5366 ,0,0,0}, {13481,13482,13484 ,5365,5366,5368 ,0,0,0}, - {13483,13485,13486 ,5367,5369,5370 ,0,0,0}, {13486,13484,13483 ,5370,5368,5367 ,0,0,0}, - {13487,13485,13488 ,5371,5369,5372 ,0,0,0}, {13485,13487,13486 ,5369,5371,5370 ,0,0,0}, - {13489,13490,13488 ,5373,5374,5372 ,0,0,0}, {13487,13488,13490 ,5371,5372,5374 ,0,0,0}, - {13489,13491,13492 ,5373,5375,5376 ,0,0,0}, {13492,13490,13489 ,5376,5374,5373 ,0,0,0}, - {13493,13491,13494 ,5377,5375,5378 ,0,0,0}, {13491,13493,13492 ,5375,5377,5376 ,0,0,0}, - {13495,13496,13494 ,5379,5380,5378 ,0,0,0}, {13493,13494,13496 ,5377,5378,5380 ,0,0,0}, - {13495,13497,13498 ,5379,5381,5382 ,0,0,0}, {13498,13496,13495 ,5382,5380,5379 ,0,0,0}, - {13499,13497,13500 ,5383,5381,5384 ,0,0,0}, {13497,13499,13498 ,5381,5383,5382 ,0,0,0}, - {13501,13502,13500 ,5385,5386,5384 ,0,0,0}, {13499,13500,13502 ,5383,5384,5386 ,0,0,0}, - {13501,13503,13504 ,5385,5387,5388 ,0,0,0}, {13504,13502,13501 ,5388,5386,5385 ,0,0,0}, - {13505,13503,13506 ,5389,5387,5390 ,0,0,0}, {13503,13505,13504 ,5387,5389,5388 ,0,0,0}, - {13507,13508,13506 ,5391,5392,5390 ,0,0,0}, {13505,13506,13508 ,5389,5390,5392 ,0,0,0}, - {13507,13509,13510 ,5391,5393,5394 ,0,0,0}, {13510,13508,13507 ,5394,5392,5391 ,0,0,0}, - {13511,13509,13512 ,5395,5393,5396 ,0,0,0}, {13509,13511,13510 ,5393,5395,5394 ,0,0,0}, - {13513,13514,13512 ,5397,5398,5396 ,0,0,0}, {13511,13512,13514 ,5395,5396,5398 ,0,0,0}, - {13513,13515,13516 ,5397,5399,5400 ,0,0,0}, {13516,13514,13513 ,5400,5398,5397 ,0,0,0}, - {13517,13515,13518 ,5401,5399,5402 ,0,0,0}, {13515,13517,13516 ,5399,5401,5400 ,0,0,0}, - {13519,13520,13518 ,5403,5404,5402 ,0,0,0}, {13517,13518,13520 ,5401,5402,5404 ,0,0,0}, - {13519,13521,13522 ,5403,5405,5406 ,0,0,0}, {13522,13520,13519 ,5406,5404,5403 ,0,0,0}, - {13521,13523,13522 ,5405,5407,5406 ,0,0,0}, {13524,13463,13462 ,5408,5347,5346 ,0,0,0}, - {13524,13525,13526 ,5408,5409,5410 ,0,0,0}, {13526,13463,13524 ,5410,5347,5408 ,0,0,0}, - {13527,13525,13528 ,5411,5409,5412 ,0,0,0}, {13525,13527,13526 ,5409,5411,5410 ,0,0,0}, - {13529,13530,13528 ,5413,5414,5412 ,0,0,0}, {13527,13528,13530 ,5411,5412,5414 ,0,0,0}, - {13529,13531,13532 ,5413,5415,5416 ,0,0,0}, {13532,13530,13529 ,5416,5414,5413 ,0,0,0}, - {13533,13531,13534 ,5417,5415,5418 ,0,0,0}, {13531,13533,13532 ,5415,5417,5416 ,0,0,0}, - {13535,13536,13534 ,5419,5420,5418 ,0,0,0}, {13533,13534,13536 ,5417,5418,5420 ,0,0,0}, - {13535,13537,13538 ,5419,5421,5422 ,0,0,0}, {13538,13536,13535 ,5422,5420,5419 ,0,0,0}, - {13539,13537,13540 ,5423,5421,5424 ,0,0,0}, {13537,13539,13538 ,5421,5423,5422 ,0,0,0}, - {13541,13542,13540 ,5425,5426,5424 ,0,0,0}, {13539,13540,13542 ,5423,5424,5426 ,0,0,0}, - {13541,13543,13544 ,5425,5427,5428 ,0,0,0}, {13544,13542,13541 ,5428,5426,5425 ,0,0,0}, - {13545,13543,13546 ,5429,5427,5430 ,0,0,0}, {13543,13545,13544 ,5427,5429,5428 ,0,0,0}, - {13547,13548,13546 ,5431,5432,5430 ,0,0,0}, {13545,13546,13548 ,5429,5430,5432 ,0,0,0}, - {13547,13549,13550 ,5431,5433,5434 ,0,0,0}, {13550,13548,13547 ,5434,5432,5431 ,0,0,0}, - {13551,13549,13552 ,5435,5433,5436 ,0,0,0}, {13549,13551,13550 ,5433,5435,5434 ,0,0,0}, - {13553,13554,13552 ,5437,5438,5436 ,0,0,0}, {13551,13552,13554 ,5435,5436,5438 ,0,0,0}, - {13553,13555,13556 ,5437,5439,5440 ,0,0,0}, {13556,13554,13553 ,5440,5438,5437 ,0,0,0}, - {13557,13555,13558 ,5441,5439,5442 ,0,0,0}, {13555,13557,13556 ,5439,5441,5440 ,0,0,0}, - {13559,13560,13558 ,5443,5444,5442 ,0,0,0}, {13557,13558,13560 ,5441,5442,5444 ,0,0,0}, - {13559,13561,13562 ,5443,5445,5446 ,0,0,0}, {13562,13560,13559 ,5446,5444,5443 ,0,0,0}, - {13563,13561,13564 ,5447,5445,5448 ,0,0,0}, {13561,13563,13562 ,5445,5447,5446 ,0,0,0}, - {13565,13566,13564 ,5449,5450,5448 ,0,0,0}, {13563,13564,13566 ,5447,5448,5450 ,0,0,0}, - {13565,13567,13568 ,5449,5451,5452 ,0,0,0}, {13568,13566,13565 ,5452,5450,5449 ,0,0,0}, - {13569,13567,13570 ,5453,5451,5454 ,0,0,0}, {13567,13569,13568 ,5451,5453,5452 ,0,0,0}, - {13571,13572,13570 ,5455,5456,5454 ,0,0,0}, {13569,13570,13572 ,5453,5454,5456 ,0,0,0}, - {13571,13573,13574 ,5455,5457,5458 ,0,0,0}, {13574,13572,13571 ,5458,5456,5455 ,0,0,0}, - {13575,13573,13576 ,5459,5457,5460 ,0,0,0}, {13573,13575,13574 ,5457,5459,5458 ,0,0,0}, - {13577,13578,13576 ,5461,5462,5460 ,0,0,0}, {13575,13576,13578 ,5459,5460,5462 ,0,0,0}, - {13577,13579,13580 ,5461,5463,5464 ,0,0,0}, {13580,13578,13577 ,5464,5462,5461 ,0,0,0}, - {13581,13579,13582 ,5465,5463,5466 ,0,0,0}, {13579,13581,13580 ,5463,5465,5464 ,0,0,0}, - {13581,13582,13583 ,5465,5466,5467 ,0,0,0}, {13584,12618,12617 ,5468,5469,5469 ,0,0,0}, - {13585,13586,13587 ,726,726,726 ,0,0,0}, {13588,12351,12348 ,726,5470,726 ,0,0,0}, - {13589,13590,13591 ,5471,726,726 ,0,0,0}, {13592,13593,13594 ,726,726,726 ,0,0,0}, - {13595,12573,13596 ,5468,5471,5469 ,0,0,0}, {13597,13598,13599 ,5470,726,726 ,0,0,0}, - {13600,13601,13602 ,5471,5469,5469 ,0,0,0}, {13603,13602,12546 ,5468,5469,5469 ,0,0,0}, - {13604,13605,12652 ,5469,5472,5468 ,0,0,0}, {13606,13607,13608 ,5469,5468,5471 ,0,0,0}, - {13609,13610,13611 ,5473,5474,726 ,0,0,0}, {13612,13613,13614 ,5475,5476,5471 ,0,0,0}, - {13615,13616,13617 ,5477,5478,5469 ,0,0,0}, {13610,13609,13618 ,5474,5473,5479 ,0,0,0}, - {13619,13620,13621 ,5471,5469,726 ,0,0,0}, {13622,13623,12611 ,5468,5469,5471 ,0,0,0}, - {13624,13625,13626 ,726,5480,5481 ,0,0,0}, {13617,13627,13628 ,5469,726,5468 ,0,0,0}, - {13629,13630,13631 ,5475,5475,5482 ,0,0,0}, {13632,12286,13629 ,5468,5483,5475 ,0,0,0}, - {13631,13633,13634 ,5482,5482,5482 ,0,0,0}, {13630,13633,13631 ,5475,5482,5482 ,0,0,0}, - {13634,13635,13631 ,5482,5475,5482 ,0,0,0}, {13626,13620,13636 ,5481,5469,5475 ,0,0,0}, - {13637,12666,13638 ,726,5471,5484 ,0,0,0}, {13610,13618,13628 ,5474,5479,5468 ,0,0,0}, - {13639,13640,13641 ,5475,5485,5468 ,0,0,0}, {13642,13643,13644 ,5486,5483,5468 ,0,0,0}, - {13627,13610,13628 ,726,5474,5468 ,0,0,0}, {12611,13623,12612 ,5471,5469,726 ,0,0,0}, - {12618,13584,12620 ,5469,5468,726 ,0,0,0}, {12624,12623,13645 ,5471,5471,726 ,0,0,0}, - {12652,12622,13604 ,5468,5468,5469 ,0,0,0}, {12650,12622,12652 ,5471,5468,5468 ,0,0,0}, - {12624,13646,12649 ,5471,5471,5469 ,0,0,0}, {13647,12656,12655 ,5468,5478,726 ,0,0,0}, - {12623,13648,13645 ,5471,726,726 ,0,0,0}, {12579,13649,13650 ,5471,5468,726 ,0,0,0}, - {13651,12666,12664 ,5475,5471,726 ,0,0,0}, {13652,13653,13654 ,5469,5482,5483 ,0,0,0}, - {13655,13653,13656 ,5468,5482,5475 ,0,0,0}, {13657,13658,13659 ,726,5468,5468 ,0,0,0}, - {13660,13608,13661 ,726,5471,5469 ,0,0,0}, {13662,13663,13664 ,5475,5475,726 ,0,0,0}, - {13658,13657,13665 ,5468,726,5483 ,0,0,0}, {13666,13667,13668 ,5480,5487,5475 ,0,0,0}, - {13665,13669,13652 ,5483,5478,5469 ,0,0,0}, {13670,13671,13672 ,5475,5479,5474 ,0,0,0}, - {13672,13638,13670 ,5474,5484,5475 ,0,0,0}, {13673,13674,13672 ,5473,726,5474 ,0,0,0}, - {13673,13672,13671 ,5473,5474,5479 ,0,0,0}, {13655,13654,13653 ,5468,5483,5482 ,0,0,0}, - {13667,13662,13675 ,5487,5475,726 ,0,0,0}, {13653,13652,13669 ,5482,5469,5478 ,0,0,0}, - {13676,13677,13637 ,5486,5478,726 ,0,0,0}, {13660,13661,13659 ,726,5469,5468 ,0,0,0}, - {12576,13649,12579 ,726,5468,5471 ,0,0,0}, {13670,13638,12666 ,5475,5484,5471 ,0,0,0}, - {13678,13679,13680 ,726,726,726 ,0,0,0}, {13681,13682,12582 ,5468,5469,726 ,0,0,0}, - {13651,12664,13683 ,5475,726,5482 ,0,0,0}, {13684,12588,13685 ,726,726,5470 ,0,0,0}, - {12661,13686,13687 ,5475,5485,5475 ,0,0,0}, {13688,13689,12506 ,5471,726,5471 ,0,0,0}, - {12410,13690,12405 ,726,5470,726 ,0,0,0}, {13691,13692,13693 ,5470,5471,5471 ,0,0,0}, - {13694,13695,13696 ,726,726,5470 ,0,0,0}, {13696,13597,13694 ,5470,5470,726 ,0,0,0}, - {13678,13599,13679 ,726,726,726 ,0,0,0}, {13697,13698,13699 ,726,726,5470 ,0,0,0}, - {13591,13691,13693 ,726,5470,5471 ,0,0,0}, {13695,13700,13701 ,726,726,726 ,0,0,0}, - {12590,13702,13703 ,726,5470,726 ,0,0,0}, {13704,13705,13706 ,5470,726,726 ,0,0,0}, - {13679,13599,13598 ,726,726,726 ,0,0,0}, {13702,13707,13708 ,5470,726,5468 ,0,0,0}, - {13679,13709,13680 ,726,726,726 ,0,0,0}, {13708,13710,13711 ,5468,5468,726 ,0,0,0}, - {13707,13710,13708 ,726,5468,5468 ,0,0,0}, {13711,13712,13708 ,726,5471,5468 ,0,0,0}, - {13713,13714,13715 ,726,726,5471 ,0,0,0}, {12590,13707,13702 ,726,726,5470 ,0,0,0}, - {13703,13716,13717 ,726,726,726 ,0,0,0}, {13718,13719,13720 ,726,5488,5489 ,0,0,0}, - {12548,13721,13722 ,5471,5470,726 ,0,0,0}, {12576,13602,13649 ,726,5469,5468 ,0,0,0}, - {13723,12503,12500 ,726,726,5471 ,0,0,0}, {13724,12427,12424 ,726,726,726 ,0,0,0}, - {13725,12360,13726 ,726,5470,726 ,0,0,0}, {13727,12503,13723 ,726,726,726 ,0,0,0}, - {13728,13729,13730 ,726,726,726 ,0,0,0}, {13731,13732,13733 ,5489,726,726 ,0,0,0}, - {12497,13734,12498 ,726,5471,726 ,0,0,0}, {13735,13729,13736 ,726,726,726 ,0,0,0}, - {13737,13738,13739 ,726,726,5489 ,0,0,0}, {13740,13741,13742 ,726,726,726 ,0,0,0}, - {13743,13729,13735 ,726,726,726 ,0,0,0}, {13585,13587,13742 ,726,726,726 ,0,0,0}, - {13744,13745,13746 ,726,726,5489 ,0,0,0}, {13586,13728,13730 ,726,726,726 ,0,0,0}, - {13747,13748,13749 ,726,726,726 ,0,0,0}, {13745,13750,13747 ,726,5488,726 ,0,0,0}, - {13743,13730,13729 ,726,726,726 ,0,0,0}, {13594,13731,12514 ,726,5489,726 ,0,0,0}, - {13751,13752,13753 ,5489,726,726 ,0,0,0}, {13751,13754,13752 ,5489,5488,726 ,0,0,0}, - {13755,13756,13757 ,726,5471,726 ,0,0,0}, {13752,13754,13758 ,726,5488,726 ,0,0,0}, - {13759,13752,13758 ,726,726,726 ,0,0,0}, {13760,12472,13761 ,726,726,726 ,0,0,0}, - {12430,13762,13763 ,726,726,726 ,0,0,0}, {12588,12586,13685 ,726,726,5470 ,0,0,0}, - {13594,12510,13764 ,726,726,726 ,0,0,0}, {13756,13765,13766 ,5471,5471,726 ,0,0,0}, - {13767,12328,13768 ,726,5470,726 ,0,0,0}, {13757,13769,13755 ,726,5471,726 ,0,0,0}, - {12438,13770,13771 ,5489,726,726 ,0,0,0}, {13772,13773,13774 ,726,726,726 ,0,0,0}, - {13775,13776,13774 ,726,5471,726 ,0,0,0}, {13739,13738,13777 ,5489,726,5488 ,0,0,0}, - {13724,13778,12427 ,726,726,726 ,0,0,0}, {13732,13594,13753 ,726,726,726 ,0,0,0}, - {13779,13724,13777 ,726,726,5488 ,0,0,0}, {12354,13780,13781 ,726,5471,726 ,0,0,0}, - {13782,13783,13773 ,726,5488,726 ,0,0,0}, {13774,13784,13785 ,726,5471,726 ,0,0,0}, - {13786,13787,13788 ,726,726,5488 ,0,0,0}, {13789,13790,13786 ,726,726,726 ,0,0,0}, - {13791,13790,13792 ,726,726,726 ,0,0,0}, {13793,12438,13771 ,726,5489,726 ,0,0,0}, - {13794,13774,13795 ,726,726,726 ,0,0,0}, {13771,13770,13796 ,726,726,726 ,0,0,0}, - {13773,13797,13782 ,726,726,726 ,0,0,0}, {13798,13796,13770 ,726,726,726 ,0,0,0}, - {13773,13783,13774 ,726,5488,726 ,0,0,0}, {13798,13799,13796 ,726,5488,726 ,0,0,0}, - {13800,13797,13773 ,726,726,726 ,0,0,0}, {13796,13799,13801 ,726,5488,726 ,0,0,0}, - {13774,13802,13784 ,726,726,5471 ,0,0,0}, {12633,13803,12632 ,5469,5468,5468 ,0,0,0}, - {12633,12638,13804 ,5469,726,726 ,0,0,0}, {13805,12345,13806 ,726,5471,5471 ,0,0,0}, - {13807,12252,13808 ,5470,5468,5468 ,0,0,0}, {12362,13809,13810 ,5470,726,726 ,0,0,0}, - {13811,13812,13813 ,5468,726,5469 ,0,0,0}, {13814,13815,13816 ,5471,5468,726 ,0,0,0}, - {13817,13811,13818 ,5468,5468,726 ,0,0,0}, {13819,13820,13821 ,726,5470,5469 ,0,0,0}, - {13822,13823,13824 ,726,5469,726 ,0,0,0}, {13825,13826,13827 ,5471,5469,726 ,0,0,0}, - {13828,12649,13829 ,726,5469,5470 ,0,0,0}, {13793,13830,13831 ,726,5489,726 ,0,0,0}, - {13774,13776,13832 ,726,5471,726 ,0,0,0}, {13833,12536,12535 ,5468,726,5469 ,0,0,0}, - {13834,13835,13724 ,5470,5471,726 ,0,0,0}, {13588,13836,12351 ,726,726,5470 ,0,0,0}, - {13837,12396,12395 ,5471,726,726 ,0,0,0}, {13838,12638,12636 ,726,726,5468 ,0,0,0}, - {13839,13840,13841 ,726,5470,5471 ,0,0,0}, {13842,13843,13844 ,5471,726,5470 ,0,0,0}, - {13845,13846,13847 ,726,5470,726 ,0,0,0}, {13809,13848,13810 ,726,726,726 ,0,0,0}, - {13848,13809,13849 ,726,726,726 ,0,0,0}, {13810,13840,12362 ,726,5470,5470 ,0,0,0}, - {13848,13849,13850 ,726,726,726 ,0,0,0}, {13822,13816,13815 ,726,726,5468 ,0,0,0}, - {13848,13850,13851 ,726,726,726 ,0,0,0}, {13852,13853,13854 ,5471,5471,5468 ,0,0,0}, - {13820,13827,13821 ,5470,726,5469 ,0,0,0}, {13855,13819,13856 ,726,726,726 ,0,0,0}, - {13857,13858,13826 ,5468,5469,5469 ,0,0,0}, {13826,13825,13857 ,5469,5471,5468 ,0,0,0}, - {13859,13860,13857 ,5471,726,5468 ,0,0,0}, {13857,13860,13858 ,5468,726,5469 ,0,0,0}, - {12656,13861,12658 ,5478,5487,5468 ,0,0,0}, {12590,12588,13684 ,726,726,726 ,0,0,0}, - {13683,12664,12662 ,5482,726,5468 ,0,0,0}, {13682,12585,12582 ,5469,726,726 ,0,0,0}, - {13603,13600,13602 ,5468,5471,5469 ,0,0,0}, {13862,13601,13600 ,5468,5469,5471 ,0,0,0}, - {13607,13606,13863 ,5468,5469,5469 ,0,0,0}, {13601,13862,13864 ,5469,5468,5470 ,0,0,0}, - {13606,13608,13660 ,5469,5471,726 ,0,0,0}, {13863,13864,13865 ,5469,5470,5469 ,0,0,0}, - {13659,13661,13657 ,5468,5469,726 ,0,0,0}, {13665,13652,13658 ,5483,5469,5468 ,0,0,0}, - {13663,13669,13664 ,5475,5478,726 ,0,0,0}, {13669,13665,13664 ,5478,5483,726 ,0,0,0}, - {13676,13666,13677 ,5486,5480,5478 ,0,0,0}, {13667,13663,13662 ,5487,5475,5475 ,0,0,0}, - {13666,13668,13677 ,5480,5475,5478 ,0,0,0}, {13668,13667,13675 ,5475,5487,726 ,0,0,0}, - {13638,13676,13637 ,5484,5486,726 ,0,0,0}, {13651,13670,12666 ,5475,5475,5471 ,0,0,0}, - {13683,12662,13687 ,5482,5468,5475 ,0,0,0}, {13687,12662,12661 ,5475,5468,5475 ,0,0,0}, - {12658,13861,13686 ,5468,5487,5485 ,0,0,0}, {13686,12661,12658 ,5485,5475,5468 ,0,0,0}, - {13647,13861,12656 ,5468,5487,5478 ,0,0,0}, {13605,13647,12655 ,5472,5468,726 ,0,0,0}, - {13829,12649,13646 ,5470,5469,5471 ,0,0,0}, {12652,13605,12655 ,5468,5472,726 ,0,0,0}, - {13866,13867,12632 ,5471,5470,5468 ,0,0,0}, {12629,13867,13868 ,726,5470,726 ,0,0,0}, - {13614,13869,13612 ,5471,5468,5475 ,0,0,0}, {13623,13870,12612 ,5469,5469,726 ,0,0,0}, - {13871,13872,13632 ,5472,5482,5468 ,0,0,0}, {12595,12264,12591 ,5468,5468,5468 ,0,0,0}, - {12272,12270,13811 ,5471,726,5468 ,0,0,0}, {12527,12174,12525 ,5471,726,5469 ,0,0,0}, - {12538,13873,12541 ,5471,726,726 ,0,0,0}, {13723,12500,13589 ,726,5471,5471 ,0,0,0}, - {12194,13874,13875 ,726,726,5470 ,0,0,0}, {13876,13877,12436 ,726,726,726 ,0,0,0}, - {13878,12556,13879 ,726,726,5471 ,0,0,0}, {12171,13880,12168 ,5471,5471,5471 ,0,0,0}, - {12183,13881,13882 ,726,5469,5469 ,0,0,0}, {12522,12635,12641 ,5471,5469,5469 ,0,0,0}, - {12629,12632,13867 ,726,5468,5470 ,0,0,0}, {12645,12523,12641 ,5468,726,5469 ,0,0,0}, - {12635,12179,12636 ,5469,5471,5468 ,0,0,0}, {13838,13804,12638 ,726,726,726 ,0,0,0}, - {13804,13803,12633 ,726,5468,5469 ,0,0,0}, {13803,13866,12632 ,5468,5471,5468 ,0,0,0}, - {12626,12629,13868 ,726,726,726 ,0,0,0}, {12622,12650,13828 ,5468,5471,726 ,0,0,0}, - {12626,13648,12623 ,726,726,5471 ,0,0,0}, {13648,12626,13868 ,726,726,726 ,0,0,0}, - {13645,13646,12624 ,726,5471,5471 ,0,0,0}, {12649,13828,12650 ,5469,726,5471 ,0,0,0}, - {12620,13883,12622 ,726,5468,5468 ,0,0,0}, {13613,13604,13884 ,5476,5469,5468 ,0,0,0}, - {13883,13604,12622 ,5468,5469,5468 ,0,0,0}, {12612,13870,12614 ,726,5469,5470 ,0,0,0}, - {12617,12614,13885 ,5469,5470,726 ,0,0,0}, {13870,13885,12614 ,5469,726,5470 ,0,0,0}, - {13616,13615,13640 ,5478,5477,5485 ,0,0,0}, {12592,12264,13622 ,726,5468,5468 ,0,0,0}, - {12592,13622,12611 ,726,5468,5471 ,0,0,0}, {13886,13887,12284 ,5470,5470,5468 ,0,0,0}, - {12286,13630,13629 ,5483,5475,5475 ,0,0,0}, {13888,12270,12269 ,5468,726,5468 ,0,0,0}, - {13889,12244,13890 ,5469,5468,5471 ,0,0,0}, {12358,13726,12360 ,726,726,5470 ,0,0,0}, - {13891,13892,12320 ,5471,5471,5471 ,0,0,0}, {13893,12408,13894 ,726,726,5471 ,0,0,0}, - {13895,13896,13897 ,5471,5470,5471 ,0,0,0}, {12404,12405,13898 ,726,726,726 ,0,0,0}, - {12348,13765,13588 ,726,5471,726 ,0,0,0}, {13778,13724,13899 ,726,726,726 ,0,0,0}, - {12644,13900,12516 ,726,5468,5469 ,0,0,0}, {12541,13901,12542 ,726,726,5468 ,0,0,0}, - {12510,13594,12512 ,726,726,726 ,0,0,0}, {13689,12509,12506 ,726,5471,5471 ,0,0,0}, - {12470,13590,13589 ,726,726,5471 ,0,0,0}, {13591,13590,13691 ,726,726,5470 ,0,0,0}, - {13700,13713,13701 ,726,726,726 ,0,0,0}, {13715,13902,13692 ,5471,726,5471 ,0,0,0}, - {13693,13692,13902 ,5471,5471,726 ,0,0,0}, {13714,13713,13700 ,726,726,726 ,0,0,0}, - {13714,13902,13715 ,726,726,5471 ,0,0,0}, {13701,13696,13695 ,726,5470,726 ,0,0,0}, - {13597,13599,13694 ,5470,726,726 ,0,0,0}, {13698,13598,13699 ,726,726,5470 ,0,0,0}, - {13598,13597,13699 ,726,5470,5470 ,0,0,0}, {13705,13717,13716 ,726,726,726 ,0,0,0}, - {13697,13706,13903 ,726,726,5471 ,0,0,0}, {13903,13698,13697 ,5471,726,726 ,0,0,0}, - {13705,13704,13717 ,726,5470,726 ,0,0,0}, {13706,13705,13903 ,726,726,5471 ,0,0,0}, - {13702,13716,13703 ,5470,726,726 ,0,0,0}, {13684,13707,12590 ,726,726,726 ,0,0,0}, - {12576,12574,13602 ,726,726,5469 ,0,0,0}, {13685,12586,13904 ,5470,726,5470 ,0,0,0}, - {12585,13682,13904 ,726,5469,5470 ,0,0,0}, {13904,12586,12585 ,5470,726,726 ,0,0,0}, - {13681,12580,13650 ,5468,726,726 ,0,0,0}, {12580,13681,12582 ,726,5468,726 ,0,0,0}, - {12579,13650,12580 ,5471,726,726 ,0,0,0}, {13722,12573,12548 ,726,5471,5471 ,0,0,0}, - {12548,12547,13721 ,5471,5471,5470 ,0,0,0}, {13596,12573,13722 ,5469,5471,726 ,0,0,0}, - {13905,13906,12550 ,5470,5470,726 ,0,0,0}, {13878,12553,12556 ,726,5470,726 ,0,0,0}, - {13906,12547,12550 ,5470,5471,726 ,0,0,0}, {12557,12562,13907 ,726,726,726 ,0,0,0}, - {12557,13908,12556 ,726,5470,726 ,0,0,0}, {13909,12562,12560 ,726,726,5470 ,0,0,0}, - {12449,12451,12188 ,726,726,726 ,0,0,0}, {12565,12446,12559 ,726,726,5471 ,0,0,0}, - {12462,13910,12465 ,726,726,5470 ,0,0,0}, {12536,13911,12538 ,726,5471,5471 ,0,0,0}, - {13912,12294,12297 ,5471,5470,726 ,0,0,0}, {13913,12167,13914 ,726,726,5470 ,0,0,0}, - {12484,12198,13915 ,5471,5470,5470 ,0,0,0}, {13916,13917,12480 ,726,5471,726 ,0,0,0}, - {12174,12527,12173 ,726,5471,726 ,0,0,0}, {12645,12644,12519 ,5468,726,5471 ,0,0,0}, - {12569,12447,12565 ,5470,5471,726 ,0,0,0}, {12460,12459,13918 ,726,726,726 ,0,0,0}, - {12187,12161,12559 ,5470,5471,5471 ,0,0,0}, {13909,13907,12562 ,726,726,726 ,0,0,0}, - {13907,13908,12557 ,726,5470,726 ,0,0,0}, {13908,13879,12556 ,5470,5471,726 ,0,0,0}, - {12553,13905,12550 ,5470,5470,726 ,0,0,0}, {13905,12553,13878 ,5470,5470,726 ,0,0,0}, - {13603,12546,12544 ,5468,5469,726 ,0,0,0}, {13906,13721,12547 ,5470,5470,5471 ,0,0,0}, - {12574,12546,13602 ,726,5469,5469 ,0,0,0}, {13595,12574,12573 ,5468,726,5471 ,0,0,0}, - {13595,12546,12574 ,5468,5469,726 ,0,0,0}, {12544,12542,13901 ,726,5468,726 ,0,0,0}, - {12544,13901,13603 ,726,726,5468 ,0,0,0}, {12541,13873,13901 ,726,726,726 ,0,0,0}, - {12538,13911,13873 ,5471,5471,726 ,0,0,0}, {12535,13900,13833 ,5469,5468,5468 ,0,0,0}, - {12536,13833,13911 ,726,5468,5471 ,0,0,0}, {12516,12515,12644 ,5469,5468,726 ,0,0,0}, - {12535,12516,13900 ,5469,5469,5468 ,0,0,0}, {12519,12523,12645 ,5471,726,5468 ,0,0,0}, - {12515,12519,12644 ,5468,5471,726 ,0,0,0}, {12523,12522,12641 ,726,5471,5469 ,0,0,0}, - {12174,12177,12525 ,726,726,5469 ,0,0,0}, {12173,12527,12529 ,726,5471,5470 ,0,0,0}, - {13880,13914,12168 ,5471,5470,5471 ,0,0,0}, {12171,12173,12529 ,5471,726,5470 ,0,0,0}, - {13913,13909,12165 ,726,726,5470 ,0,0,0}, {12568,13919,12440 ,5470,5470,726 ,0,0,0}, - {12465,13920,12466 ,5470,5470,5470 ,0,0,0}, {13877,12438,12436 ,726,5489,726 ,0,0,0}, - {13763,12433,12430 ,726,726,726 ,0,0,0}, {13921,13777,13724 ,5489,5488,726 ,0,0,0}, - {13777,13921,13739 ,5488,5489,5489 ,0,0,0}, {13740,13718,13741 ,726,726,726 ,0,0,0}, - {13720,13922,13737 ,5489,726,726 ,0,0,0}, {13738,13737,13922 ,726,726,726 ,0,0,0}, - {13719,13718,13740 ,5488,726,726 ,0,0,0}, {13719,13922,13720 ,5488,726,5489 ,0,0,0}, - {13741,13585,13742 ,726,726,726 ,0,0,0}, {13586,13730,13587 ,726,726,726 ,0,0,0}, - {13746,13728,13744 ,5489,726,726 ,0,0,0}, {13728,13586,13744 ,726,726,726 ,0,0,0}, - {13732,13749,13733 ,726,726,726 ,0,0,0}, {13747,13746,13745 ,726,5489,726 ,0,0,0}, - {13749,13748,13733 ,726,726,726 ,0,0,0}, {13748,13747,13750 ,726,726,5488 ,0,0,0}, - {13732,13731,13594 ,726,5489,726 ,0,0,0}, {13753,13594,13751 ,726,726,5489 ,0,0,0}, - {12500,12498,13589 ,5471,726,5471 ,0,0,0}, {13594,13764,13592 ,726,726,726 ,0,0,0}, - {12509,13689,13764 ,5471,726,726 ,0,0,0}, {13764,12510,12509 ,726,726,5471 ,0,0,0}, - {13688,12504,13727 ,5471,726,726 ,0,0,0}, {12504,13688,12506 ,726,5471,5471 ,0,0,0}, - {12503,13727,12504 ,726,726,726 ,0,0,0}, {13923,12472,13760 ,5471,726,726 ,0,0,0}, - {12472,12471,13761 ,726,726,726 ,0,0,0}, {12497,12472,13923 ,726,726,5471 ,0,0,0}, - {13924,13925,12474 ,726,726,726 ,0,0,0}, {13917,12477,12480 ,5471,726,726 ,0,0,0}, - {13925,12471,12474 ,726,726,726 ,0,0,0}, {12481,12486,13926 ,726,726,726 ,0,0,0}, - {12481,13927,12480 ,726,5471,726 ,0,0,0}, {13915,12486,12484 ,5470,726,5471 ,0,0,0}, - {12203,12370,12373 ,5471,5471,726 ,0,0,0}, {12489,12370,12483 ,726,5471,726 ,0,0,0}, - {13928,12198,12197 ,5471,5470,726 ,0,0,0}, {12462,12460,13929 ,726,726,726 ,0,0,0}, - {12203,12200,12483 ,5471,726,726 ,0,0,0}, {12384,13930,12386 ,726,5470,726 ,0,0,0}, - {12291,12417,12416 ,5470,726,726 ,0,0,0}, {12404,13931,12401 ,726,726,5471 ,0,0,0}, - {12451,12191,12188 ,726,726,726 ,0,0,0}, {12569,12568,12443 ,5470,5470,726 ,0,0,0}, - {12493,12371,12489 ,5471,726,726 ,0,0,0}, {13893,12410,12408 ,726,726,726 ,0,0,0}, - {12483,12200,12484 ,726,726,5471 ,0,0,0}, {13915,13926,12486 ,5470,726,726 ,0,0,0}, - {13926,13927,12481 ,726,5471,726 ,0,0,0}, {13927,13916,12480 ,5471,726,726 ,0,0,0}, - {12477,13924,12474 ,726,726,726 ,0,0,0}, {13924,12477,13917 ,726,726,5471 ,0,0,0}, - {13932,12470,12468 ,5470,726,726 ,0,0,0}, {13925,13761,12471 ,726,726,726 ,0,0,0}, - {12498,12470,13589 ,726,726,5471 ,0,0,0}, {12470,12498,13734 ,726,726,5471 ,0,0,0}, - {13923,13734,12497 ,5471,5471,726 ,0,0,0}, {12470,13932,13590 ,726,5470,726 ,0,0,0}, - {12468,12466,13920 ,726,5470,5470 ,0,0,0}, {12468,13920,13932 ,726,5470,5470 ,0,0,0}, - {12465,13910,13920 ,5470,726,5470 ,0,0,0}, {12462,13929,13910 ,726,726,726 ,0,0,0}, - {12459,13919,13918 ,726,5470,726 ,0,0,0}, {12460,13918,13929 ,726,726,726 ,0,0,0}, - {12440,12439,12568 ,726,5470,5470 ,0,0,0}, {12459,12440,13919 ,726,726,5470 ,0,0,0}, - {12443,12447,12569 ,726,5471,5470 ,0,0,0}, {12439,12443,12568 ,5470,726,5470 ,0,0,0}, - {12447,12446,12565 ,5471,726,726 ,0,0,0}, {12188,12187,12449 ,726,5470,726 ,0,0,0}, - {12191,12453,12192 ,726,726,5471 ,0,0,0}, {12194,12192,13874 ,726,5471,726 ,0,0,0}, - {12451,12453,12191 ,726,726,726 ,0,0,0}, {13915,12198,13928 ,5470,5470,5471 ,0,0,0}, - {12434,13876,12436 ,5488,726,726 ,0,0,0}, {12636,12181,13838 ,5468,5470,726 ,0,0,0}, - {12360,13725,12362 ,5470,726,5470 ,0,0,0}, {13781,12357,12354 ,726,726,726 ,0,0,0}, - {13765,13933,13766 ,5471,726,726 ,0,0,0}, {13756,13766,13757 ,5471,726,726 ,0,0,0}, - {13802,13934,13769 ,726,5471,5471 ,0,0,0}, {13755,13769,13934 ,726,5471,5471 ,0,0,0}, - {13774,13832,13802 ,726,726,726 ,0,0,0}, {13832,13934,13802 ,726,5471,726 ,0,0,0}, - {13785,13795,13774 ,726,726,726 ,0,0,0}, {13935,13775,13774 ,726,726,726 ,0,0,0}, - {13772,13774,13787 ,726,726,726 ,0,0,0}, {13788,13787,13774 ,5488,726,726 ,0,0,0}, - {13830,13791,13831 ,5489,726,726 ,0,0,0}, {13790,13787,13786 ,726,726,726 ,0,0,0}, - {13791,13792,13831 ,726,726,726 ,0,0,0}, {13792,13790,13789 ,726,726,726 ,0,0,0}, - {13771,13830,13793 ,726,5489,726 ,0,0,0}, {13877,13770,12438 ,726,726,5489 ,0,0,0}, - {12422,12421,13724 ,726,5471,726 ,0,0,0}, {12433,13936,12434 ,726,726,5488 ,0,0,0}, - {13876,12434,13936 ,726,5488,726 ,0,0,0}, {13762,12428,13778 ,726,726,726 ,0,0,0}, - {13763,13936,12433 ,726,726,726 ,0,0,0}, {12428,13762,12430 ,726,726,726 ,0,0,0}, - {12427,13778,12428 ,726,726,726 ,0,0,0}, {13834,13724,13937 ,5470,726,5471 ,0,0,0}, - {13937,12396,13837 ,5471,726,5471 ,0,0,0}, {13937,13724,12396 ,5471,726,726 ,0,0,0}, - {12398,13938,12395 ,5471,726,726 ,0,0,0}, {12404,13939,13931 ,726,726,726 ,0,0,0}, - {12398,13940,13938 ,5471,726,726 ,0,0,0}, {13941,12389,12386 ,5471,726,726 ,0,0,0}, - {12389,13942,12390 ,726,726,726 ,0,0,0}, {13943,12384,12383 ,726,726,5471 ,0,0,0}, - {12492,13944,12364 ,5471,5471,5471 ,0,0,0}, {12367,12493,12492 ,726,5471,5471 ,0,0,0}, - {12203,12483,12370 ,5471,726,5471 ,0,0,0}, {13945,13946,13947 ,5470,726,726 ,0,0,0}, - {13948,12210,12380 ,726,5470,5471 ,0,0,0}, {12416,13949,12288 ,726,726,726 ,0,0,0}, - {13950,12314,12313 ,5471,5470,5471 ,0,0,0}, {12313,12310,13951 ,5471,726,726 ,0,0,0}, - {12413,12294,12407 ,726,5470,726 ,0,0,0}, {12206,12373,12375 ,5471,726,726 ,0,0,0}, - {12417,12295,12413 ,726,5471,726 ,0,0,0}, {12307,13952,12308 ,726,726,5471 ,0,0,0}, - {12407,13953,12408 ,726,726,726 ,0,0,0}, {13893,13690,12410 ,726,5470,726 ,0,0,0}, - {13690,13898,12405 ,5470,726,726 ,0,0,0}, {13898,13939,12404 ,726,726,726 ,0,0,0}, - {12401,13940,12398 ,5471,726,5471 ,0,0,0}, {13940,12401,13931 ,726,5471,726 ,0,0,0}, - {13942,13954,12392 ,726,726,726 ,0,0,0}, {12392,13954,13724 ,726,726,726 ,0,0,0}, - {13938,13837,12395 ,726,5471,726 ,0,0,0}, {12424,12422,13724 ,726,726,726 ,0,0,0}, - {13724,12421,12396 ,726,5471,726 ,0,0,0}, {12394,13724,13835 ,5471,726,5471 ,0,0,0}, - {13954,13921,13724 ,726,5489,726 ,0,0,0}, {12392,12390,13942 ,726,726,726 ,0,0,0}, - {12389,13941,13942 ,726,5471,726 ,0,0,0}, {12386,13930,13941 ,726,5470,5471 ,0,0,0}, - {12383,13944,13943 ,5471,5471,726 ,0,0,0}, {12384,13943,13930 ,726,726,5470 ,0,0,0}, - {12364,12363,12492 ,5471,726,5471 ,0,0,0}, {12383,12364,13944 ,5471,5471,5471 ,0,0,0}, - {12367,12371,12493 ,726,726,5471 ,0,0,0}, {12363,12367,12492 ,726,726,5471 ,0,0,0}, - {12371,12370,12489 ,726,5471,726 ,0,0,0}, {12206,12203,12373 ,5471,5471,726 ,0,0,0}, - {12206,12375,12209 ,5471,726,726 ,0,0,0}, {12377,12210,12209 ,726,5470,726 ,0,0,0}, - {12377,12209,12375 ,726,726,726 ,0,0,0}, {12377,12380,12210 ,726,5471,5470 ,0,0,0}, - {13955,12253,12258 ,5468,5469,5470 ,0,0,0}, {13811,13823,13818 ,5468,5469,726 ,0,0,0}, - {12598,12261,12599 ,5468,5471,5469 ,0,0,0}, {12281,12278,13811 ,5469,5471,5468 ,0,0,0}, - {12242,13824,13823 ,5469,726,5469 ,0,0,0}, {13822,13824,13816 ,726,726,726 ,0,0,0}, - {13856,13853,13855 ,726,5471,726 ,0,0,0}, {13852,13956,13814 ,5471,5468,5471 ,0,0,0}, - {13815,13814,13956 ,5468,5471,5468 ,0,0,0}, {13854,13853,13856 ,5468,5471,726 ,0,0,0}, - {13854,13956,13852 ,5468,5468,5471 ,0,0,0}, {13855,13820,13819 ,726,5470,726 ,0,0,0}, - {13827,13826,13821 ,726,5469,5469 ,0,0,0}, {13846,13825,13847 ,5470,5471,726 ,0,0,0}, - {13825,13827,13847 ,5471,726,726 ,0,0,0}, {13843,13839,13841 ,726,726,5471 ,0,0,0}, - {13845,13844,13957 ,726,5470,726 ,0,0,0}, {13957,13846,13845 ,726,5470,726 ,0,0,0}, - {13843,13842,13839 ,726,5471,726 ,0,0,0}, {13844,13843,13957 ,5470,726,726 ,0,0,0}, - {13810,13841,13840 ,726,5471,5470 ,0,0,0}, {13725,13809,12362 ,726,726,5470 ,0,0,0}, - {12348,12346,13765 ,726,5470,5471 ,0,0,0}, {12357,13958,12358 ,726,726,726 ,0,0,0}, - {13726,12358,13958 ,726,726,726 ,0,0,0}, {13780,12352,13836 ,5471,5470,726 ,0,0,0}, - {13781,13958,12357 ,726,726,726 ,0,0,0}, {12352,13780,12354 ,5470,5471,726 ,0,0,0}, - {12351,13836,12352 ,5470,726,5470 ,0,0,0}, {13892,12345,12320 ,5471,5471,5471 ,0,0,0}, - {12320,12319,13891 ,5471,726,5471 ,0,0,0}, {13806,12345,13892 ,5471,5471,5471 ,0,0,0}, - {13959,13960,12322 ,5471,726,726 ,0,0,0}, {13767,12325,12328 ,726,5470,5470 ,0,0,0}, - {13960,12319,12322 ,726,726,726 ,0,0,0}, {12329,12334,13961 ,5470,726,726 ,0,0,0}, - {12329,13962,12328 ,5470,726,5470 ,0,0,0}, {13963,12334,12332 ,726,726,726 ,0,0,0}, - {12221,12223,13964 ,726,5471,5471 ,0,0,0}, {12308,13965,12310 ,5471,726,726 ,0,0,0}, - {13966,13967,13968 ,5471,726,726 ,0,0,0}, {12256,13966,13969 ,5471,5471,5471 ,0,0,0}, - {13838,12181,13970 ,726,5470,5469 ,0,0,0}, {12598,12601,13971 ,5468,5468,5470 ,0,0,0}, - {12237,13972,12238 ,726,726,5471 ,0,0,0}, {12256,13969,12258 ,5471,5471,5470 ,0,0,0}, - {12337,12218,12331 ,726,5470,5470 ,0,0,0}, {12299,13973,13974 ,5470,5471,726 ,0,0,0}, - {12341,12219,12337 ,726,5471,726 ,0,0,0}, {13975,13964,12223 ,5471,5471,5471 ,0,0,0}, - {13976,13977,12331 ,726,5471,5470 ,0,0,0}, {13963,13961,12334 ,726,726,726 ,0,0,0}, - {13961,13962,12329 ,726,726,5470 ,0,0,0}, {13962,13768,12328 ,726,726,5470 ,0,0,0}, - {12325,13959,12322 ,5470,5471,726 ,0,0,0}, {13959,12325,13767 ,5471,5470,726 ,0,0,0}, - {12316,13950,13933 ,5471,5471,726 ,0,0,0}, {13933,12318,12316 ,726,726,5471 ,0,0,0}, - {13960,13891,12319 ,726,5471,726 ,0,0,0}, {12346,12318,13765 ,5470,726,5471 ,0,0,0}, - {13805,12346,12345 ,726,5470,5471 ,0,0,0}, {13805,12318,12346 ,726,726,5470 ,0,0,0}, - {13765,12318,13933 ,5471,726,726 ,0,0,0}, {12316,12314,13950 ,5471,5470,5471 ,0,0,0}, - {12313,13951,13950 ,5471,726,5471 ,0,0,0}, {12310,13965,13951 ,726,726,726 ,0,0,0}, - {12307,13949,13952 ,726,726,726 ,0,0,0}, {12308,13952,13965 ,5471,726,726 ,0,0,0}, - {12288,12287,12416 ,726,5471,726 ,0,0,0}, {12307,12288,13949 ,726,726,726 ,0,0,0}, - {12291,12295,12417 ,5470,5471,726 ,0,0,0}, {12287,12291,12416 ,5471,5470,726 ,0,0,0}, - {12295,12294,12413 ,5471,5470,726 ,0,0,0}, {13974,13912,12297 ,726,5471,726 ,0,0,0}, - {12407,12294,13912 ,726,5470,5471 ,0,0,0}, {12304,13978,13979 ,726,726,726 ,0,0,0}, - {13973,12301,13979 ,5471,726,726 ,0,0,0}, {13980,13981,13982 ,5470,5470,5471 ,0,0,0}, - {12284,13887,12286 ,5468,5470,5483 ,0,0,0}, {12592,12591,12264 ,726,5468,5468 ,0,0,0}, - {12284,12282,13886 ,5468,5469,5470 ,0,0,0}, {12620,13584,13883 ,726,5468,5468 ,0,0,0}, - {12617,13885,13584 ,5469,726,5468 ,0,0,0}, {13883,13884,13604 ,5468,5468,5469 ,0,0,0}, - {13613,13884,13614 ,5476,5468,5471 ,0,0,0}, {13641,13644,13639 ,5468,5468,5475 ,0,0,0}, - {13643,13983,13869 ,5483,726,5468 ,0,0,0}, {13612,13869,13983 ,5475,5468,726 ,0,0,0}, - {13642,13644,13641 ,5486,5468,5468 ,0,0,0}, {13642,13983,13643 ,5486,726,5483 ,0,0,0}, - {13639,13616,13640 ,5475,5478,5485 ,0,0,0}, {13617,13628,13615 ,5469,5468,5477 ,0,0,0}, - {13621,13627,13619 ,726,726,5471 ,0,0,0}, {13627,13617,13619 ,726,5469,5471 ,0,0,0}, - {13871,13625,13872 ,5472,5480,5482 ,0,0,0}, {13626,13621,13620 ,5481,726,5469 ,0,0,0}, - {13625,13624,13872 ,5480,726,5482 ,0,0,0}, {13624,13626,13636 ,726,5481,5475 ,0,0,0}, - {13629,13871,13632 ,5475,5472,5468 ,0,0,0}, {13887,13630,12286 ,5470,5475,5483 ,0,0,0}, - {13811,12270,13888 ,5468,726,5468 ,0,0,0}, {12281,13813,12282 ,5469,5469,5469 ,0,0,0}, - {13886,12282,13813 ,5470,5469,5469 ,0,0,0}, {13984,13812,13811 ,5468,726,5468 ,0,0,0}, - {13813,12281,13811 ,5469,5469,5468 ,0,0,0}, {13811,12278,12276 ,5468,5471,5470 ,0,0,0}, - {13811,12275,12272 ,5468,5469,5471 ,0,0,0}, {13985,12244,13889 ,5469,5468,5469 ,0,0,0}, - {12244,12243,13890 ,5468,5471,5471 ,0,0,0}, {12269,12244,13985 ,5468,5468,5469 ,0,0,0}, - {13986,13987,12246 ,5470,5471,5468 ,0,0,0}, {13807,12249,12252 ,5470,726,5468 ,0,0,0}, - {13987,12243,12246 ,5471,5471,5468 ,0,0,0}, {12601,12603,13988 ,5468,5468,5468 ,0,0,0}, - {12215,12341,12340 ,5471,726,726 ,0,0,0}, {12253,13989,12252 ,5469,5469,5468 ,0,0,0}, - {13990,12232,12231 ,726,5471,726 ,0,0,0}, {13991,12237,12234 ,726,726,5470 ,0,0,0}, - {13992,12212,12340 ,726,5470,726 ,0,0,0}, {13993,12234,12232 ,726,5470,5471 ,0,0,0}, - {12598,12255,12261 ,5468,5469,5471 ,0,0,0}, {12601,13988,13971 ,5468,5468,5470 ,0,0,0}, - {12261,12265,12599 ,5471,726,5469 ,0,0,0}, {12264,12595,12265 ,5468,5468,726 ,0,0,0}, - {12599,12265,12595 ,5469,726,5468 ,0,0,0}, {12180,13882,13970 ,5469,5469,5469 ,0,0,0}, - {12605,12185,13994 ,5471,5470,726 ,0,0,0}, {12185,13881,12183 ,5470,5469,726 ,0,0,0}, - {12255,13995,12256 ,5469,5471,5471 ,0,0,0}, {13969,13955,12258 ,5471,5468,5470 ,0,0,0}, - {13955,13989,12253 ,5468,5469,5469 ,0,0,0}, {13989,13808,12252 ,5469,5468,5468 ,0,0,0}, - {12249,13986,12246 ,726,5470,5468 ,0,0,0}, {13986,12249,13807 ,5470,726,5470 ,0,0,0}, - {12240,13972,13996 ,726,726,5471 ,0,0,0}, {13996,12242,12240 ,5471,5469,726 ,0,0,0}, - {13987,13890,12243 ,5471,5471,5471 ,0,0,0}, {12242,13823,13811 ,5469,5469,5468 ,0,0,0}, - {13811,13888,12242 ,5468,5468,5469 ,0,0,0}, {13985,13888,12269 ,5469,5468,5468 ,0,0,0}, - {12242,13996,13824 ,5469,5471,726 ,0,0,0}, {12240,12238,13972 ,726,5471,726 ,0,0,0}, - {12237,13991,13972 ,726,726,726 ,0,0,0}, {12234,13993,13991 ,5470,726,726 ,0,0,0}, - {12231,13992,13990 ,726,726,726 ,0,0,0}, {12232,13990,13993 ,5471,726,726 ,0,0,0}, - {12212,12211,12340 ,5470,726,726 ,0,0,0}, {12231,12212,13992 ,726,5470,726 ,0,0,0}, - {12215,12219,12341 ,5471,5471,726 ,0,0,0}, {12211,12215,12340 ,726,5471,726 ,0,0,0}, - {12219,12218,12337 ,5471,5470,726 ,0,0,0}, {13964,13976,12221 ,5471,726,726 ,0,0,0}, - {13975,12225,13997 ,5471,726,726 ,0,0,0}, {13895,13997,13896 ,5471,726,5470 ,0,0,0}, - {12223,12225,13975 ,5471,726,5471 ,0,0,0}, {13969,13966,13968 ,5471,5471,726 ,0,0,0}, - {13963,12332,13998 ,726,726,5471 ,0,0,0}, {13909,12560,12165 ,726,5470,5470 ,0,0,0}, - {13963,13998,13980 ,726,5471,5470 ,0,0,0}, {12200,12198,12484 ,726,5470,5471 ,0,0,0}, - {12194,13875,12197 ,726,5470,726 ,0,0,0}, {13928,12197,13875 ,5471,726,5470 ,0,0,0}, - {12560,12559,12161 ,5470,5471,5471 ,0,0,0}, {12456,12192,12453 ,726,5471,726 ,0,0,0}, - {12456,13874,12192 ,726,726,5471 ,0,0,0}, {12187,12559,12446 ,5470,5471,726 ,0,0,0}, - {12446,12449,12187 ,726,726,5470 ,0,0,0}, {12560,12161,12165 ,5470,5471,5470 ,0,0,0}, - {13913,12165,12167 ,726,5470,726 ,0,0,0}, {12179,12635,12177 ,5471,5469,726 ,0,0,0}, - {13914,12167,12168 ,5470,726,5471 ,0,0,0}, {12532,12171,12529 ,726,5471,5470 ,0,0,0}, - {12532,13880,12171 ,726,5471,5471 ,0,0,0}, {12635,12522,12177 ,5469,5471,726 ,0,0,0}, - {12522,12525,12177 ,5471,5469,726 ,0,0,0}, {12179,12181,12636 ,5471,5470,5468 ,0,0,0}, - {13970,12181,12180 ,5469,5470,5469 ,0,0,0}, {13995,12255,13971 ,5471,5469,5470 ,0,0,0}, - {13882,12180,12183 ,5469,5469,726 ,0,0,0}, {12608,12185,12605 ,5469,5470,5471 ,0,0,0}, - {12608,13881,12185 ,5469,5469,5470 ,0,0,0}, {13971,12255,12598 ,5470,5469,5468 ,0,0,0}, - {13994,13988,12603 ,726,5468,5468 ,0,0,0}, {13994,12603,12605 ,726,5468,5471 ,0,0,0}, - {13995,13966,12256 ,5471,5471,5471 ,0,0,0}, {13895,13897,13967 ,5471,5471,726 ,0,0,0}, - {13968,13967,13897 ,726,726,5471 ,0,0,0}, {12332,12331,13977 ,726,5470,5471 ,0,0,0}, - {12228,13997,12225 ,726,726,726 ,0,0,0}, {12228,13896,13997 ,726,5470,726 ,0,0,0}, - {13976,12331,12218 ,726,5470,5470 ,0,0,0}, {12218,12221,13976 ,5470,726,726 ,0,0,0}, - {12332,13977,13998 ,726,5471,5471 ,0,0,0}, {13982,13981,13999 ,5471,5470,726 ,0,0,0}, - {13980,13998,13981 ,5470,5471,5470 ,0,0,0}, {13999,13979,13978 ,726,726,726 ,0,0,0}, - {13978,13982,13999 ,726,5471,726 ,0,0,0}, {13979,12301,12304 ,726,726,726 ,0,0,0}, - {13973,12299,12301 ,5471,5470,726 ,0,0,0}, {13974,12297,12299 ,726,726,5470 ,0,0,0}, - {12407,13912,13953 ,726,5471,726 ,0,0,0}, {13894,14000,13893 ,5471,5471,726 ,0,0,0}, - {12408,13953,13894 ,726,726,5471 ,0,0,0}, {13946,14000,13947 ,726,5471,726 ,0,0,0}, - {13894,13947,14000 ,5471,726,5471 ,0,0,0}, {13946,13945,13948 ,726,5470,726 ,0,0,0}, - {12210,13948,13945 ,5470,726,5470 ,0,0,0}, {13984,13811,13817 ,5468,5468,5468 ,0,0,0}, - {12276,12275,13811 ,5470,5469,5468 ,0,0,0}, {13774,13794,13788 ,726,726,5488 ,0,0,0}, - {13783,13935,13774 ,5488,726,726 ,0,0,0}, {13724,12394,12392 ,726,5471,726 ,0,0,0}, - {13899,13724,13779 ,726,726,726 ,0,0,0}, {13865,13864,13862 ,5469,5470,5468 ,0,0,0}, - {13865,13607,13863 ,5469,5468,5469 ,0,0,0}, {13751,13594,13593 ,5489,726,726 ,0,0,0}, - {12514,12512,13594 ,726,726,726 ,0,0,0}, {14001,14002,14003 ,5490,5491,5492 ,0,0,0}, - {14004,14005,14006 ,5493,5494,5495 ,0,0,0}, {14007,14005,14008 ,5496,5494,5497 ,0,0,0}, - {14009,14010,14011 ,5498,5499,5500 ,0,0,0}, {14012,14013,14014 ,5501,5502,5503 ,0,0,0}, - {14015,14016,14017 ,5504,5505,5506 ,0,0,0}, {14018,14019,14020 ,5507,5508,5509 ,0,0,0}, - {13631,13635,14015 ,5510,5511,5504 ,0,0,0}, {14021,14022,14023 ,5512,5513,5514 ,0,0,0}, - {14012,14017,14016 ,5501,5506,5505 ,0,0,0}, {14024,14025,14022 ,5515,5516,5513 ,0,0,0}, - {14026,14024,14022 ,5517,5515,5513 ,0,0,0}, {14026,14027,14024 ,5517,5518,5515 ,0,0,0}, - {14027,14026,14028 ,5518,5517,5519 ,0,0,0}, {14029,14025,14030 ,5520,5516,5521 ,0,0,0}, - {14031,14032,14033 ,5522,5523,5524 ,0,0,0}, {14022,14025,14029 ,5513,5516,5520 ,0,0,0}, - {14033,14032,14028 ,5524,5523,5519 ,0,0,0}, {14034,14031,14035 ,5525,5522,5526 ,0,0,0}, - {14036,14037,14038 ,5527,5528,5529 ,0,0,0}, {14036,14029,14030 ,5527,5520,5521 ,0,0,0}, - {14039,14040,14041 ,5530,5531,5532 ,0,0,0}, {14036,14030,14037 ,5527,5521,5528 ,0,0,0}, - {14037,14039,14038 ,5528,5530,5529 ,0,0,0}, {14042,14043,14041 ,5533,5534,5532 ,0,0,0}, - {14019,14044,14020 ,5508,5535,5509 ,0,0,0}, {14041,14040,14042 ,5532,5531,5533 ,0,0,0}, - {14045,14004,14046 ,5536,5493,5537 ,0,0,0}, {14040,14047,14042 ,5531,5538,5533 ,0,0,0}, - {14019,14023,14044 ,5508,5514,5535 ,0,0,0}, {14048,14023,14029 ,5539,5514,5520 ,0,0,0}, - {14049,14050,14051 ,5540,5541,5542 ,0,0,0}, {14052,14049,14053 ,5543,5540,5544 ,0,0,0}, - {13610,13627,14002 ,5545,5546,5491 ,0,0,0}, {14054,14055,14056 ,5547,5548,5549 ,0,0,0}, - {13610,14001,13611 ,5545,5490,726 ,0,0,0}, {14057,13611,14001 ,5550,726,5490 ,0,0,0}, - {14058,14043,14059 ,5551,5534,5552 ,0,0,0}, {14039,14041,14038 ,5530,5532,5529 ,0,0,0}, - {14041,14043,14058 ,5532,5534,5551 ,0,0,0}, {14059,14060,14058 ,5552,5553,5551 ,0,0,0}, - {14061,14038,14058 ,5554,5529,5551 ,0,0,0}, {14023,14048,14044 ,5514,5539,5535 ,0,0,0}, - {14061,14048,14036 ,5554,5539,5527 ,0,0,0}, {14026,14062,14028 ,5517,5555,5519 ,0,0,0}, - {14036,14048,14029 ,5527,5539,5520 ,0,0,0}, {14063,14064,14033 ,5556,5557,5524 ,0,0,0}, - {14022,14029,14023 ,5513,5520,5514 ,0,0,0}, {14062,14026,14021 ,5555,5517,5512 ,0,0,0}, - {14031,14033,14035 ,5522,5524,5526 ,0,0,0}, {14027,14028,14032 ,5518,5519,5523 ,0,0,0}, - {14028,14062,14063 ,5519,5555,5556 ,0,0,0}, {14065,14035,14033 ,5558,5526,5524 ,0,0,0}, - {14041,14058,14038 ,5532,5551,5529 ,0,0,0}, {14066,14060,14059 ,5559,5553,5552 ,0,0,0}, - {14066,14053,14060 ,5559,5544,5553 ,0,0,0}, {14038,14061,14036 ,5529,5554,5527 ,0,0,0}, - {14060,14067,14061 ,5553,5560,5554 ,0,0,0}, {14019,14008,14021 ,5508,5497,5512 ,0,0,0}, - {14067,14044,14048 ,5560,5535,5539 ,0,0,0}, {14004,14064,14063 ,5493,5557,5556 ,0,0,0}, - {14045,14064,14004 ,5536,5557,5493 ,0,0,0}, {14022,14021,14026 ,5513,5512,5517 ,0,0,0}, - {14023,14019,14021 ,5514,5508,5512 ,0,0,0}, {14028,14063,14033 ,5519,5556,5524 ,0,0,0}, - {14008,14005,14062 ,5497,5494,5555 ,0,0,0}, {14033,14064,14065 ,5524,5557,5558 ,0,0,0}, - {14063,14005,14004 ,5556,5494,5493 ,0,0,0}, {14068,14065,14064 ,5561,5558,5557 ,0,0,0}, - {14058,14060,14061 ,5551,5553,5554 ,0,0,0}, {14052,14053,14066 ,5543,5544,5559 ,0,0,0}, - {14069,14051,14070 ,5562,5542,5563 ,0,0,0}, {14061,14067,14048 ,5554,5560,5539 ,0,0,0}, - {14071,14067,14053 ,5564,5560,5544 ,0,0,0}, {14008,14019,14018 ,5497,5508,5507 ,0,0,0}, - {14071,14020,14044 ,5564,5509,5535 ,0,0,0}, {14072,14046,14006 ,5565,5537,5495 ,0,0,0}, - {14062,14005,14063 ,5555,5494,5556 ,0,0,0}, {14021,14008,14062 ,5512,5497,5555 ,0,0,0}, - {14008,14018,14007 ,5497,5507,5496 ,0,0,0}, {14045,14046,14073 ,5536,5537,5566 ,0,0,0}, - {14007,14006,14005 ,5496,5495,5494 ,0,0,0}, {14064,14045,14068 ,5557,5536,5561 ,0,0,0}, - {14004,14006,14046 ,5493,5495,5537 ,0,0,0}, {14074,14068,14045 ,5567,5561,5536 ,0,0,0}, - {14060,14053,14067 ,5553,5544,5560 ,0,0,0}, {14050,14049,14052 ,5541,5540,5543 ,0,0,0}, - {14020,14075,14018 ,5509,5568,5507 ,0,0,0}, {14067,14071,14044 ,5560,5564,5535 ,0,0,0}, - {14076,14071,14049 ,5569,5564,5540 ,0,0,0}, {14018,14077,14007 ,5507,5570,5496 ,0,0,0}, - {14076,14075,14020 ,5569,5568,5509 ,0,0,0}, {14007,14078,14006 ,5496,5571,5495 ,0,0,0}, - {14077,14018,14075 ,5570,5507,5568 ,0,0,0}, {14046,14009,14073 ,5537,5498,5566 ,0,0,0}, - {14078,14007,14077 ,5571,5496,5570 ,0,0,0}, {14079,14073,14011 ,5572,5566,5500 ,0,0,0}, - {14072,14006,14078 ,5565,5495,5571 ,0,0,0}, {14045,14073,14074 ,5536,5566,5567 ,0,0,0}, - {14046,14072,14009 ,5537,5565,5498 ,0,0,0}, {14079,14074,14073 ,5572,5567,5566 ,0,0,0}, - {14053,14049,14071 ,5544,5540,5564 ,0,0,0}, {14070,14051,14050 ,5563,5542,5541 ,0,0,0}, - {14075,14055,14077 ,5568,5548,5570 ,0,0,0}, {14071,14076,14020 ,5564,5569,5509 ,0,0,0}, - {14051,14080,14076 ,5542,5573,5569 ,0,0,0}, {14077,14054,14078 ,5570,5547,5571 ,0,0,0}, - {14080,14055,14075 ,5573,5548,5568 ,0,0,0}, {14078,14081,14072 ,5571,5574,5565 ,0,0,0}, - {14055,14054,14077 ,5548,5547,5570 ,0,0,0}, {14082,14009,14072 ,5575,5498,5565 ,0,0,0}, - {14081,14078,14054 ,5574,5571,5547 ,0,0,0}, {14083,14011,14014 ,5576,5500,5503 ,0,0,0}, - {14072,14081,14082 ,5565,5574,5575 ,0,0,0}, {14082,14010,14009 ,5575,5499,5498 ,0,0,0}, - {14079,14011,14083 ,5572,5500,5576 ,0,0,0}, {14073,14009,14011 ,5566,5498,5500 ,0,0,0}, - {14049,14051,14076 ,5540,5542,5569 ,0,0,0}, {14084,14069,14070 ,5577,5562,5563 ,0,0,0}, - {14085,14081,14054 ,5578,5574,5547 ,0,0,0}, {14076,14080,14075 ,5569,5573,5568 ,0,0,0}, - {14069,14003,14080 ,5562,5492,5573 ,0,0,0}, {14086,14082,14081 ,5579,5575,5574 ,0,0,0}, - {14003,14056,14055 ,5492,5549,5548 ,0,0,0}, {14087,14010,14082 ,5580,5499,5575 ,0,0,0}, - {14056,14085,14054 ,5549,5578,5547 ,0,0,0}, {14017,14012,14088 ,5506,5501,5581 ,0,0,0}, - {14085,14086,14081 ,5578,5579,5574 ,0,0,0}, {14014,14010,14089 ,5503,5499,5582 ,0,0,0}, - {14087,14082,14086 ,5580,5575,5579 ,0,0,0}, {14089,14010,14087 ,5582,5499,5580 ,0,0,0}, - {14083,14014,14013 ,5576,5503,5502 ,0,0,0}, {14011,14010,14014 ,5500,5499,5503 ,0,0,0}, - {14051,14069,14080 ,5542,5562,5573 ,0,0,0}, {14001,14084,14057 ,5490,5577,5550 ,0,0,0}, - {14002,14090,14056 ,5491,5583,5549 ,0,0,0}, {14080,14003,14055 ,5573,5492,5548 ,0,0,0}, - {14002,14056,14003 ,5491,5549,5492 ,0,0,0}, {14090,14091,14085 ,5583,5584,5578 ,0,0,0}, - {14090,14085,14056 ,5583,5578,5549 ,0,0,0}, {14091,14092,14086 ,5584,5585,5579 ,0,0,0}, - {14091,14086,14085 ,5584,5579,5578 ,0,0,0}, {14092,14093,14087 ,5585,5586,5580 ,0,0,0}, - {14092,14087,14086 ,5585,5580,5579 ,0,0,0}, {14093,14088,14089 ,5586,5581,5582 ,0,0,0}, - {14089,14087,14093 ,5582,5580,5586 ,0,0,0}, {14088,14012,14089 ,5581,5501,5582 ,0,0,0}, - {14013,14012,14016 ,5502,5501,5505 ,0,0,0}, {14014,14089,14012 ,5503,5582,5501 ,0,0,0}, - {14084,14001,14069 ,5577,5490,5562 ,0,0,0}, {14003,14069,14001 ,5492,5562,5490 ,0,0,0}, - {14090,13627,13621 ,5583,5546,5587 ,0,0,0}, {13610,14002,14001 ,5545,5491,5490 ,0,0,0}, - {14091,13621,13626 ,5584,5587,5588 ,0,0,0}, {13627,14090,14002 ,5546,5583,5491 ,0,0,0}, - {14092,13626,13625 ,5585,5588,5589 ,0,0,0}, {13621,14091,14090 ,5587,5584,5583 ,0,0,0}, - {14093,13625,13871 ,5586,5589,5590 ,0,0,0}, {13626,14092,14091 ,5588,5585,5584 ,0,0,0}, - {14088,13871,13629 ,5581,5590,5591 ,0,0,0}, {13625,14093,14092 ,5589,5586,5585 ,0,0,0}, - {14017,13629,13631 ,5506,5591,5510 ,0,0,0}, {13871,14088,14093 ,5590,5581,5586 ,0,0,0}, - {13631,14015,14017 ,5510,5504,5506 ,0,0,0}, {13629,14017,14088 ,5591,5506,5581 ,0,0,0}, - {14094,14095,14096 ,5592,5593,5594 ,0,0,0}, {14097,14098,14099 ,5595,5596,5597 ,0,0,0}, - {14095,14100,14096 ,5593,5598,5594 ,0,0,0}, {14101,14099,14098 ,5599,5597,5596 ,0,0,0}, - {14102,14103,14104 ,5600,5601,5602 ,0,0,0}, {14105,14106,14103 ,5603,5604,5601 ,0,0,0}, - {14107,14108,14109 ,5605,5606,5607 ,0,0,0}, {14110,14106,14105 ,5608,5604,5603 ,0,0,0}, - {14106,14104,14103 ,5604,5602,5601 ,0,0,0}, {14111,14103,14097 ,5609,5601,5595 ,0,0,0}, - {14112,14113,14114 ,5610,5611,5612 ,0,0,0}, {14115,14116,14117 ,5613,5614,5615 ,0,0,0}, - {14118,14113,14119 ,5616,5611,5617 ,0,0,0}, {14120,14121,14094 ,5618,5619,5592 ,0,0,0}, - {14108,13857,13825 ,5606,5620,5621 ,0,0,0}, {14122,14123,14124 ,5622,5623,5624 ,0,0,0}, - {14125,13859,14107 ,5625,5626,5605 ,0,0,0}, {13857,14107,13859 ,5620,5605,5626 ,0,0,0}, - {14126,14127,14128 ,5627,5628,5629 ,0,0,0}, {14100,14129,14096 ,5598,5630,5594 ,0,0,0}, - {14130,14131,14132 ,5631,5632,5633 ,0,0,0}, {14133,14134,14135 ,5634,5635,5636 ,0,0,0}, - {14124,14127,14136 ,5624,5628,5637 ,0,0,0}, {14137,14138,14139 ,5638,5639,5640 ,0,0,0}, - {14140,14094,14141 ,5641,5592,5642 ,0,0,0}, {14138,14133,14139 ,5639,5634,5640 ,0,0,0}, - {14120,14101,14098 ,5618,5599,5596 ,0,0,0}, {13848,13851,14137 ,5643,5644,5638 ,0,0,0}, - {14101,14120,14142 ,5599,5618,5645 ,0,0,0}, {14142,14120,14140 ,5645,5618,5641 ,0,0,0}, - {14143,14144,14140 ,5646,5647,5641 ,0,0,0}, {14120,14098,14121 ,5618,5596,5619 ,0,0,0}, - {14143,14145,14146 ,5646,5648,5649 ,0,0,0}, {14146,14144,14143 ,5649,5647,5646 ,0,0,0}, - {14147,14148,14149 ,5650,5651,5652 ,0,0,0}, {14148,14147,14145 ,5651,5650,5648 ,0,0,0}, - {14105,14103,14111 ,5603,5601,5609 ,0,0,0}, {14150,14102,14104 ,5653,5600,5602 ,0,0,0}, - {14150,14151,14102 ,5653,5654,5600 ,0,0,0}, {14111,14097,14099 ,5609,5595,5597 ,0,0,0}, - {14152,14097,14102 ,5655,5595,5600 ,0,0,0}, {14094,14121,14095 ,5592,5619,5593 ,0,0,0}, - {14152,14121,14098 ,5655,5619,5596 ,0,0,0}, {14143,14153,14145 ,5646,5656,5648 ,0,0,0}, - {14154,14148,14155 ,5657,5651,5658 ,0,0,0}, {14142,14140,14144 ,5645,5641,5647 ,0,0,0}, - {14140,14120,14094 ,5641,5618,5592 ,0,0,0}, {14146,14145,14147 ,5649,5648,5650 ,0,0,0}, - {14141,14153,14143 ,5642,5656,5646 ,0,0,0}, {14148,14156,14149 ,5651,5659,5652 ,0,0,0}, - {14145,14153,14155 ,5648,5656,5658 ,0,0,0}, {14157,14156,14148 ,5660,5659,5651 ,0,0,0}, - {14103,14102,14097 ,5601,5600,5595 ,0,0,0}, {14158,14151,14150 ,5661,5654,5653 ,0,0,0}, - {14158,14114,14151 ,5661,5612,5654 ,0,0,0}, {14097,14152,14098 ,5595,5655,5596 ,0,0,0}, - {14151,14159,14152 ,5654,5662,5655 ,0,0,0}, {14096,14128,14141 ,5594,5629,5642 ,0,0,0}, - {14159,14095,14121 ,5662,5593,5619 ,0,0,0}, {14124,14154,14155 ,5624,5657,5658 ,0,0,0}, - {14123,14154,14124 ,5623,5657,5624 ,0,0,0}, {14140,14141,14143 ,5641,5642,5646 ,0,0,0}, - {14094,14096,14141 ,5592,5594,5642 ,0,0,0}, {14145,14155,14148 ,5648,5658,5651 ,0,0,0}, - {14128,14127,14153 ,5629,5628,5656 ,0,0,0}, {14148,14154,14157 ,5651,5657,5660 ,0,0,0}, - {14155,14127,14124 ,5658,5628,5624 ,0,0,0}, {14160,14157,14154 ,5663,5660,5657 ,0,0,0}, - {14102,14151,14152 ,5600,5654,5655 ,0,0,0}, {14112,14114,14158 ,5610,5612,5661 ,0,0,0}, - {14161,14118,14162 ,5664,5616,5665 ,0,0,0}, {14152,14159,14121 ,5655,5662,5619 ,0,0,0}, - {14163,14159,14114 ,5666,5662,5612 ,0,0,0}, {14128,14096,14129 ,5629,5594,5630 ,0,0,0}, - {14163,14100,14095 ,5666,5598,5593 ,0,0,0}, {14164,14122,14136 ,5667,5622,5637 ,0,0,0}, - {14153,14127,14155 ,5656,5628,5658 ,0,0,0}, {14141,14128,14153 ,5642,5629,5656 ,0,0,0}, - {14128,14129,14126 ,5629,5630,5627 ,0,0,0}, {14123,14122,14165 ,5623,5622,5668 ,0,0,0}, - {14126,14136,14127 ,5627,5637,5628 ,0,0,0}, {14154,14123,14160 ,5657,5623,5663 ,0,0,0}, - {14124,14136,14122 ,5624,5637,5622 ,0,0,0}, {14166,14160,14123 ,5669,5663,5623 ,0,0,0}, - {14151,14114,14159 ,5654,5612,5662 ,0,0,0}, {14119,14113,14112 ,5617,5611,5610 ,0,0,0}, - {14100,14167,14129 ,5598,5670,5630 ,0,0,0}, {14159,14163,14095 ,5662,5666,5593 ,0,0,0}, - {14168,14163,14113 ,5671,5666,5611 ,0,0,0}, {14129,14169,14126 ,5630,5672,5627 ,0,0,0}, - {14168,14167,14100 ,5671,5670,5598 ,0,0,0}, {14126,14170,14136 ,5627,5673,5637 ,0,0,0}, - {14169,14129,14167 ,5672,5630,5670 ,0,0,0}, {14122,14131,14165 ,5622,5632,5668 ,0,0,0}, - {14170,14126,14169 ,5673,5627,5672 ,0,0,0}, {14171,14165,14130 ,5674,5668,5631 ,0,0,0}, - {14164,14136,14170 ,5667,5637,5673 ,0,0,0}, {14123,14165,14166 ,5623,5668,5669 ,0,0,0}, - {14122,14164,14131 ,5622,5667,5632 ,0,0,0}, {14171,14166,14165 ,5674,5669,5668 ,0,0,0}, - {14114,14113,14163 ,5612,5611,5666 ,0,0,0}, {14162,14118,14119 ,5665,5616,5617 ,0,0,0}, - {14167,14115,14169 ,5670,5613,5672 ,0,0,0}, {14163,14168,14100 ,5666,5671,5598 ,0,0,0}, - {14118,14172,14168 ,5616,5675,5671 ,0,0,0}, {14169,14117,14170 ,5672,5615,5673 ,0,0,0}, - {14172,14115,14167 ,5675,5613,5670 ,0,0,0}, {14170,14173,14164 ,5673,5676,5667 ,0,0,0}, - {14115,14117,14169 ,5613,5615,5672 ,0,0,0}, {14174,14131,14164 ,5677,5632,5667 ,0,0,0}, - {14173,14170,14117 ,5676,5673,5615 ,0,0,0}, {14175,14130,14135 ,5678,5631,5636 ,0,0,0}, - {14164,14173,14174 ,5667,5676,5677 ,0,0,0}, {14174,14132,14131 ,5677,5633,5632 ,0,0,0}, - {14171,14130,14175 ,5674,5631,5678 ,0,0,0}, {14165,14131,14130 ,5668,5632,5631 ,0,0,0}, - {14113,14118,14168 ,5611,5616,5671 ,0,0,0}, {14176,14161,14162 ,5679,5664,5665 ,0,0,0}, - {14177,14173,14117 ,5680,5676,5615 ,0,0,0}, {14168,14172,14167 ,5671,5675,5670 ,0,0,0}, - {14161,14109,14172 ,5664,5607,5675 ,0,0,0}, {14178,14174,14173 ,5681,5677,5676 ,0,0,0}, - {14109,14116,14115 ,5607,5614,5613 ,0,0,0}, {14179,14132,14174 ,5682,5633,5677 ,0,0,0}, - {14116,14177,14117 ,5614,5680,5615 ,0,0,0}, {14139,14133,14180 ,5640,5634,5683 ,0,0,0}, - {14177,14178,14173 ,5680,5681,5676 ,0,0,0}, {14135,14132,14181 ,5636,5633,5684 ,0,0,0}, - {14179,14174,14178 ,5682,5677,5681 ,0,0,0}, {14181,14132,14179 ,5684,5633,5682 ,0,0,0}, - {14175,14135,14134 ,5678,5636,5635 ,0,0,0}, {14130,14132,14135 ,5631,5633,5636 ,0,0,0}, - {14118,14161,14172 ,5616,5664,5675 ,0,0,0}, {14107,14176,14125 ,5605,5679,5625 ,0,0,0}, - {14108,14182,14116 ,5606,5685,5614 ,0,0,0}, {14172,14109,14115 ,5675,5607,5613 ,0,0,0}, - {14108,14116,14109 ,5606,5614,5607 ,0,0,0}, {14182,14183,14177 ,5685,5686,5680 ,0,0,0}, - {14182,14177,14116 ,5685,5680,5614 ,0,0,0}, {14183,14184,14178 ,5686,5687,5681 ,0,0,0}, - {14183,14178,14177 ,5686,5681,5680 ,0,0,0}, {14184,14185,14179 ,5687,5688,5682 ,0,0,0}, - {14184,14179,14178 ,5687,5682,5681 ,0,0,0}, {14185,14180,14181 ,5688,5683,5684 ,0,0,0}, - {14181,14179,14185 ,5684,5682,5688 ,0,0,0}, {14180,14133,14181 ,5683,5634,5684 ,0,0,0}, - {14134,14133,14138 ,5635,5634,5639 ,0,0,0}, {14135,14181,14133 ,5636,5684,5634 ,0,0,0}, - {14176,14107,14161 ,5679,5605,5664 ,0,0,0}, {14109,14161,14107 ,5607,5664,5605 ,0,0,0}, - {14182,13825,13846 ,5685,5621,5689 ,0,0,0}, {13857,14108,14107 ,5620,5606,5605 ,0,0,0}, - {14183,13846,13957 ,5686,5689,5690 ,0,0,0}, {13825,14182,14108 ,5621,5685,5606 ,0,0,0}, - {14184,13957,13843 ,5687,5690,5691 ,0,0,0}, {13846,14183,14182 ,5689,5686,5685 ,0,0,0}, - {14185,13843,13841 ,5688,5691,5692 ,0,0,0}, {13957,14184,14183 ,5690,5687,5686 ,0,0,0}, - {14180,13841,13810 ,5683,5692,5693 ,0,0,0}, {13843,14185,14184 ,5691,5688,5687 ,0,0,0}, - {14139,13810,13848 ,5640,5693,5643 ,0,0,0}, {13841,14180,14185 ,5692,5683,5688 ,0,0,0}, - {13848,14137,14139 ,5643,5638,5640 ,0,0,0}, {13810,14139,14180 ,5693,5640,5683 ,0,0,0}, - {14186,14187,14188 ,5694,5695,5696 ,0,0,0}, {14189,14190,14191 ,5697,5698,5699 ,0,0,0}, - {14188,14192,14193 ,5696,5700,5701 ,0,0,0}, {14192,14194,14193 ,5700,5702,5701 ,0,0,0}, - {14195,14196,14197 ,5703,5704,5705 ,0,0,0}, {14197,14198,14195 ,5705,5706,5703 ,0,0,0}, - {14199,14200,14201 ,5707,5708,5709 ,0,0,0}, {14202,14196,14203 ,5710,5704,5711 ,0,0,0}, - {14202,14197,14196 ,5710,5705,5704 ,0,0,0}, {14203,14204,14202 ,5711,5712,5710 ,0,0,0}, - {14205,14191,14206 ,5713,5699,5714 ,0,0,0}, {14207,14208,14209 ,5715,5716,5717 ,0,0,0}, - {14199,13773,13772 ,5707,5718,5719 ,0,0,0}, {14210,14211,14212 ,5720,5721,5722 ,0,0,0}, - {14213,13800,14201 ,5723,5724,5709 ,0,0,0}, {14214,14215,14208 ,5725,5726,5716 ,0,0,0}, - {13773,14201,13800 ,5718,5709,5724 ,0,0,0}, {14216,14217,14218 ,5727,5728,5729 ,0,0,0}, - {14219,14193,14194 ,5730,5701,5702 ,0,0,0}, {14220,14221,14222 ,5731,5732,5733 ,0,0,0}, - {14223,14224,14188 ,5734,5735,5696 ,0,0,0}, {14225,14226,14227 ,5736,5737,5738 ,0,0,0}, - {14218,14228,14229 ,5729,5739,5740 ,0,0,0}, {14230,14228,14231 ,5741,5739,5742 ,0,0,0}, - {14232,14233,14234 ,5743,5744,5745 ,0,0,0}, {14186,14190,14189 ,5694,5698,5697 ,0,0,0}, - {14233,14220,14234 ,5744,5731,5745 ,0,0,0}, {14224,14235,14186 ,5735,5746,5694 ,0,0,0}, - {13796,13801,14232 ,5747,5748,5743 ,0,0,0}, {14236,14237,14224 ,5749,5750,5735 ,0,0,0}, - {14235,14190,14186 ,5746,5698,5694 ,0,0,0}, {14236,14238,14239 ,5749,5751,5752 ,0,0,0}, - {14224,14237,14235 ,5735,5750,5746 ,0,0,0}, {14240,14241,14242 ,5753,5754,5755 ,0,0,0}, - {14237,14236,14239 ,5750,5749,5752 ,0,0,0}, {14243,14242,14244 ,5756,5755,5757 ,0,0,0}, - {14241,14240,14238 ,5754,5753,5751 ,0,0,0}, {14206,14196,14205 ,5714,5704,5713 ,0,0,0}, - {14196,14206,14203 ,5704,5714,5711 ,0,0,0}, {14198,14245,14195 ,5706,5758,5703 ,0,0,0}, - {14205,14189,14191 ,5713,5697,5699 ,0,0,0}, {14246,14205,14195 ,5759,5713,5703 ,0,0,0}, - {14188,14187,14192 ,5696,5695,5700 ,0,0,0}, {14246,14187,14189 ,5759,5695,5697 ,0,0,0}, - {14236,14247,14238 ,5749,5760,5751 ,0,0,0}, {14189,14187,14186 ,5697,5695,5694 ,0,0,0}, - {14248,14249,14241 ,5761,5762,5754 ,0,0,0}, {14224,14186,14188 ,5735,5694,5696 ,0,0,0}, - {14247,14236,14223 ,5760,5749,5734 ,0,0,0}, {14242,14241,14244 ,5755,5754,5757 ,0,0,0}, - {14239,14238,14240 ,5752,5751,5753 ,0,0,0}, {14238,14247,14248 ,5751,5760,5761 ,0,0,0}, - {14250,14244,14241 ,5763,5757,5754 ,0,0,0}, {14196,14195,14205 ,5704,5703,5713 ,0,0,0}, - {14251,14245,14198 ,5764,5758,5706 ,0,0,0}, {14251,14214,14245 ,5764,5725,5758 ,0,0,0}, - {14205,14246,14189 ,5713,5759,5697 ,0,0,0}, {14245,14252,14246 ,5758,5765,5759 ,0,0,0}, - {14193,14231,14223 ,5701,5742,5734 ,0,0,0}, {14252,14192,14187 ,5765,5700,5695 ,0,0,0}, - {14218,14249,14248 ,5729,5762,5761 ,0,0,0}, {14217,14249,14218 ,5728,5762,5729 ,0,0,0}, - {14224,14223,14236 ,5735,5734,5749 ,0,0,0}, {14188,14193,14223 ,5696,5701,5734 ,0,0,0}, - {14238,14248,14241 ,5751,5761,5754 ,0,0,0}, {14231,14228,14247 ,5742,5739,5760 ,0,0,0}, - {14241,14249,14250 ,5754,5762,5763 ,0,0,0}, {14248,14228,14218 ,5761,5739,5729 ,0,0,0}, - {14253,14250,14249 ,5766,5763,5762 ,0,0,0}, {14195,14245,14246 ,5703,5758,5759 ,0,0,0}, - {14215,14214,14251 ,5726,5725,5764 ,0,0,0}, {14254,14207,14255 ,5767,5715,5768 ,0,0,0}, - {14246,14252,14187 ,5759,5765,5695 ,0,0,0}, {14256,14252,14214 ,5769,5765,5725 ,0,0,0}, - {14231,14193,14219 ,5742,5701,5730 ,0,0,0}, {14256,14194,14192 ,5769,5702,5700 ,0,0,0}, - {14257,14216,14229 ,5770,5727,5740 ,0,0,0}, {14247,14228,14248 ,5760,5739,5761 ,0,0,0}, - {14223,14231,14247 ,5734,5742,5760 ,0,0,0}, {14231,14219,14230 ,5742,5730,5741 ,0,0,0}, - {14217,14216,14258 ,5728,5727,5771 ,0,0,0}, {14230,14229,14228 ,5741,5740,5739 ,0,0,0}, - {14249,14217,14253 ,5762,5728,5766 ,0,0,0}, {14218,14229,14216 ,5729,5740,5727 ,0,0,0}, - {14259,14253,14217 ,5772,5766,5728 ,0,0,0}, {14245,14214,14252 ,5758,5725,5765 ,0,0,0}, - {14209,14208,14215 ,5717,5716,5726 ,0,0,0}, {14194,14260,14219 ,5702,5773,5730 ,0,0,0}, - {14252,14256,14192 ,5765,5769,5700 ,0,0,0}, {14261,14256,14208 ,5774,5769,5716 ,0,0,0}, - {14219,14262,14230 ,5730,5775,5741 ,0,0,0}, {14261,14260,14194 ,5774,5773,5702 ,0,0,0}, - {14230,14263,14229 ,5741,5776,5740 ,0,0,0}, {14262,14219,14260 ,5775,5730,5773 ,0,0,0}, - {14216,14226,14258 ,5727,5737,5771 ,0,0,0}, {14263,14230,14262 ,5776,5741,5775 ,0,0,0}, - {14264,14258,14225 ,5777,5771,5736 ,0,0,0}, {14257,14229,14263 ,5770,5740,5776 ,0,0,0}, - {14217,14258,14259 ,5728,5771,5772 ,0,0,0}, {14216,14257,14226 ,5727,5770,5737 ,0,0,0}, - {14264,14259,14258 ,5777,5772,5771 ,0,0,0}, {14214,14208,14256 ,5725,5716,5769 ,0,0,0}, - {14255,14207,14209 ,5768,5715,5717 ,0,0,0}, {14260,14211,14262 ,5773,5721,5775 ,0,0,0}, - {14256,14261,14194 ,5769,5774,5702 ,0,0,0}, {14207,14265,14261 ,5715,5778,5774 ,0,0,0}, - {14262,14210,14263 ,5775,5720,5776 ,0,0,0}, {14265,14211,14260 ,5778,5721,5773 ,0,0,0}, - {14263,14266,14257 ,5776,5779,5770 ,0,0,0}, {14211,14210,14262 ,5721,5720,5775 ,0,0,0}, - {14267,14226,14257 ,5780,5737,5770 ,0,0,0}, {14266,14263,14210 ,5779,5776,5720 ,0,0,0}, - {14268,14225,14222 ,5781,5736,5733 ,0,0,0}, {14257,14266,14267 ,5770,5779,5780 ,0,0,0}, - {14267,14227,14226 ,5780,5738,5737 ,0,0,0}, {14264,14225,14268 ,5777,5736,5781 ,0,0,0}, - {14258,14226,14225 ,5771,5737,5736 ,0,0,0}, {14208,14207,14261 ,5716,5715,5774 ,0,0,0}, - {14269,14254,14255 ,5782,5767,5768 ,0,0,0}, {14270,14266,14210 ,5783,5779,5720 ,0,0,0}, - {14261,14265,14260 ,5774,5778,5773 ,0,0,0}, {14254,14200,14265 ,5767,5708,5778 ,0,0,0}, - {14271,14267,14266 ,5784,5780,5779 ,0,0,0}, {14200,14212,14211 ,5708,5722,5721 ,0,0,0}, - {14272,14227,14267 ,5785,5738,5780 ,0,0,0}, {14212,14270,14210 ,5722,5783,5720 ,0,0,0}, - {14234,14220,14273 ,5745,5731,5786 ,0,0,0}, {14270,14271,14266 ,5783,5784,5779 ,0,0,0}, - {14222,14227,14274 ,5733,5738,5787 ,0,0,0}, {14272,14267,14271 ,5785,5780,5784 ,0,0,0}, - {14274,14227,14272 ,5787,5738,5785 ,0,0,0}, {14268,14222,14221 ,5781,5733,5732 ,0,0,0}, - {14225,14227,14222 ,5736,5738,5733 ,0,0,0}, {14207,14254,14265 ,5715,5767,5778 ,0,0,0}, - {14201,14269,14213 ,5709,5782,5723 ,0,0,0}, {14199,14275,14212 ,5707,5788,5722 ,0,0,0}, - {14265,14200,14211 ,5778,5708,5721 ,0,0,0}, {14199,14212,14200 ,5707,5722,5708 ,0,0,0}, - {14275,14276,14270 ,5788,5789,5783 ,0,0,0}, {14275,14270,14212 ,5788,5783,5722 ,0,0,0}, - {14276,14277,14271 ,5789,5790,5784 ,0,0,0}, {14276,14271,14270 ,5789,5784,5783 ,0,0,0}, - {14277,14278,14272 ,5790,5791,5785 ,0,0,0}, {14277,14272,14271 ,5790,5785,5784 ,0,0,0}, - {14278,14273,14274 ,5791,5786,5787 ,0,0,0}, {14274,14272,14278 ,5787,5785,5791 ,0,0,0}, - {14273,14220,14274 ,5786,5731,5787 ,0,0,0}, {14221,14220,14233 ,5732,5731,5744 ,0,0,0}, - {14222,14274,14220 ,5733,5787,5731 ,0,0,0}, {14269,14201,14254 ,5782,5709,5767 ,0,0,0}, - {14200,14254,14201 ,5708,5767,5709 ,0,0,0}, {14275,13772,13787 ,5788,5719,5792 ,0,0,0}, - {13773,14199,14201 ,5718,5707,5709 ,0,0,0}, {14276,13787,13790 ,5789,5792,5793 ,0,0,0}, - {13772,14275,14199 ,5719,5788,5707 ,0,0,0}, {14277,13790,13791 ,5790,5793,5794 ,0,0,0}, - {13787,14276,14275 ,5792,5789,5788 ,0,0,0}, {14278,13791,13830 ,5791,5794,5795 ,0,0,0}, - {13790,14277,14276 ,5793,5790,5789 ,0,0,0}, {14273,13830,13771 ,5786,5795,5796 ,0,0,0}, - {13791,14278,14277 ,5794,5791,5790 ,0,0,0}, {14234,13771,13796 ,5745,5796,5747 ,0,0,0}, - {13830,14273,14278 ,5795,5786,5791 ,0,0,0}, {13796,14232,14234 ,5747,5743,5745 ,0,0,0}, - {13771,14234,14273 ,5796,5745,5786 ,0,0,0}, {14279,14280,14281 ,5797,5798,5799 ,0,0,0}, - {14282,13196,13197 ,5800,5801,5802 ,0,0,0}, {14281,14283,14284 ,5799,5803,5804 ,0,0,0}, - {14283,14285,14284 ,5803,5805,5804 ,0,0,0}, {14286,14287,14288 ,5806,5807,5808 ,0,0,0}, - {14288,14289,14286 ,5808,5809,5806 ,0,0,0}, {14290,14291,14292 ,5810,5811,5812 ,0,0,0}, - {14293,14287,13202 ,5813,5807,5814 ,0,0,0}, {14293,14288,14287 ,5813,5808,5807 ,0,0,0}, - {13202,13203,14293 ,5814,5815,5813 ,0,0,0}, {14294,13197,13200 ,5816,5802,5817 ,0,0,0}, - {14295,14296,14297 ,5818,5819,5820 ,0,0,0}, {14290,13729,13728 ,5810,5821,5822 ,0,0,0}, - {14298,14299,14300 ,5823,5824,5825 ,0,0,0}, {14301,13736,14292 ,5826,5827,5812 ,0,0,0}, - {14302,14303,14296 ,5828,5829,5819 ,0,0,0}, {13729,14292,13736 ,5821,5812,5827 ,0,0,0}, - {14304,14305,14306 ,5830,5831,5832 ,0,0,0}, {14307,14284,14285 ,5833,5804,5805 ,0,0,0}, - {14308,14309,14310 ,5834,5835,5836 ,0,0,0}, {14311,14312,14281 ,5837,5838,5799 ,0,0,0}, - {14313,14314,14315 ,5839,5840,5841 ,0,0,0}, {14306,14316,14317 ,5832,5842,5843 ,0,0,0}, - {14318,14316,14319 ,5844,5842,5845 ,0,0,0}, {14320,14321,14322 ,5846,5847,5848 ,0,0,0}, - {14279,13196,14282 ,5797,5801,5800 ,0,0,0}, {14321,14308,14322 ,5847,5834,5848 ,0,0,0}, - {14312,13194,14279 ,5838,5849,5797 ,0,0,0}, {13752,13759,14320 ,5850,5851,5846 ,0,0,0}, - {14323,13192,14312 ,5852,5853,5838 ,0,0,0}, {13194,13196,14279 ,5849,5801,5797 ,0,0,0}, - {14323,14324,13189 ,5852,5854,5855 ,0,0,0}, {14312,13192,13194 ,5838,5853,5849 ,0,0,0}, - {13187,14325,13188 ,5856,5857,5858 ,0,0,0}, {13192,14323,13189 ,5853,5852,5855 ,0,0,0}, - {13182,13188,14326 ,5067,5858,5859 ,0,0,0}, {14325,13187,14324 ,5857,5856,5854 ,0,0,0}, - {13200,14287,14294 ,5817,5807,5816 ,0,0,0}, {14287,13200,13202 ,5807,5817,5814 ,0,0,0}, - {14289,14327,14286 ,5809,5860,5806 ,0,0,0}, {14294,14282,13197 ,5816,5800,5802 ,0,0,0}, - {14328,14294,14286 ,5861,5816,5806 ,0,0,0}, {14281,14280,14283 ,5799,5798,5803 ,0,0,0}, - {14328,14280,14282 ,5861,5798,5800 ,0,0,0}, {14323,14329,14324 ,5852,5862,5854 ,0,0,0}, - {14282,14280,14279 ,5800,5798,5797 ,0,0,0}, {14330,14331,14325 ,5863,5864,5857 ,0,0,0}, - {14312,14279,14281 ,5838,5797,5799 ,0,0,0}, {14329,14323,14311 ,5862,5852,5837 ,0,0,0}, - {13188,14325,14326 ,5858,5857,5859 ,0,0,0}, {13189,14324,13187 ,5855,5854,5856 ,0,0,0}, - {14324,14329,14330 ,5854,5862,5863 ,0,0,0}, {14332,14326,14325 ,5865,5859,5857 ,0,0,0}, - {14287,14286,14294 ,5807,5806,5816 ,0,0,0}, {14333,14327,14289 ,5866,5860,5809 ,0,0,0}, - {14333,14302,14327 ,5866,5828,5860 ,0,0,0}, {14294,14328,14282 ,5816,5861,5800 ,0,0,0}, - {14327,14334,14328 ,5860,5867,5861 ,0,0,0}, {14284,14319,14311 ,5804,5845,5837 ,0,0,0}, - {14334,14283,14280 ,5867,5803,5798 ,0,0,0}, {14306,14331,14330 ,5832,5864,5863 ,0,0,0}, - {14305,14331,14306 ,5831,5864,5832 ,0,0,0}, {14312,14311,14323 ,5838,5837,5852 ,0,0,0}, - {14281,14284,14311 ,5799,5804,5837 ,0,0,0}, {14324,14330,14325 ,5854,5863,5857 ,0,0,0}, - {14319,14316,14329 ,5845,5842,5862 ,0,0,0}, {14325,14331,14332 ,5857,5864,5865 ,0,0,0}, - {14330,14316,14306 ,5863,5842,5832 ,0,0,0}, {14335,14332,14331 ,5868,5865,5864 ,0,0,0}, - {14286,14327,14328 ,5806,5860,5861 ,0,0,0}, {14303,14302,14333 ,5829,5828,5866 ,0,0,0}, - {14336,14295,14337 ,5869,5818,5870 ,0,0,0}, {14328,14334,14280 ,5861,5867,5798 ,0,0,0}, - {14338,14334,14302 ,5871,5867,5828 ,0,0,0}, {14319,14284,14307 ,5845,5804,5833 ,0,0,0}, - {14338,14285,14283 ,5871,5805,5803 ,0,0,0}, {14339,14304,14317 ,5872,5830,5843 ,0,0,0}, - {14329,14316,14330 ,5862,5842,5863 ,0,0,0}, {14311,14319,14329 ,5837,5845,5862 ,0,0,0}, - {14319,14307,14318 ,5845,5833,5844 ,0,0,0}, {14305,14304,14340 ,5831,5830,5873 ,0,0,0}, - {14318,14317,14316 ,5844,5843,5842 ,0,0,0}, {14331,14305,14335 ,5864,5831,5868 ,0,0,0}, - {14306,14317,14304 ,5832,5843,5830 ,0,0,0}, {14341,14335,14305 ,5874,5868,5831 ,0,0,0}, - {14327,14302,14334 ,5860,5828,5867 ,0,0,0}, {14297,14296,14303 ,5820,5819,5829 ,0,0,0}, - {14285,14342,14307 ,5805,5875,5833 ,0,0,0}, {14334,14338,14283 ,5867,5871,5803 ,0,0,0}, - {14343,14338,14296 ,5876,5871,5819 ,0,0,0}, {14307,14344,14318 ,5833,5877,5844 ,0,0,0}, - {14343,14342,14285 ,5876,5875,5805 ,0,0,0}, {14318,14345,14317 ,5844,5878,5843 ,0,0,0}, - {14344,14307,14342 ,5877,5833,5875 ,0,0,0}, {14304,14314,14340 ,5830,5840,5873 ,0,0,0}, - {14345,14318,14344 ,5878,5844,5877 ,0,0,0}, {14346,14340,14313 ,5879,5873,5839 ,0,0,0}, - {14339,14317,14345 ,5872,5843,5878 ,0,0,0}, {14305,14340,14341 ,5831,5873,5874 ,0,0,0}, - {14304,14339,14314 ,5830,5872,5840 ,0,0,0}, {14346,14341,14340 ,5879,5874,5873 ,0,0,0}, - {14302,14296,14338 ,5828,5819,5871 ,0,0,0}, {14337,14295,14297 ,5870,5818,5820 ,0,0,0}, - {14342,14299,14344 ,5875,5824,5877 ,0,0,0}, {14338,14343,14285 ,5871,5876,5805 ,0,0,0}, - {14295,14347,14343 ,5818,5880,5876 ,0,0,0}, {14344,14298,14345 ,5877,5823,5878 ,0,0,0}, - {14347,14299,14342 ,5880,5824,5875 ,0,0,0}, {14345,14348,14339 ,5878,5881,5872 ,0,0,0}, - {14299,14298,14344 ,5824,5823,5877 ,0,0,0}, {14349,14314,14339 ,5882,5840,5872 ,0,0,0}, - {14348,14345,14298 ,5881,5878,5823 ,0,0,0}, {14350,14313,14310 ,5883,5839,5836 ,0,0,0}, - {14339,14348,14349 ,5872,5881,5882 ,0,0,0}, {14349,14315,14314 ,5882,5841,5840 ,0,0,0}, - {14346,14313,14350 ,5879,5839,5883 ,0,0,0}, {14340,14314,14313 ,5873,5840,5839 ,0,0,0}, - {14296,14295,14343 ,5819,5818,5876 ,0,0,0}, {14351,14336,14337 ,5884,5869,5870 ,0,0,0}, - {14352,14348,14298 ,5885,5881,5823 ,0,0,0}, {14343,14347,14342 ,5876,5880,5875 ,0,0,0}, - {14336,14291,14347 ,5869,5811,5880 ,0,0,0}, {14353,14349,14348 ,5886,5882,5881 ,0,0,0}, - {14291,14300,14299 ,5811,5825,5824 ,0,0,0}, {14354,14315,14349 ,5887,5841,5882 ,0,0,0}, - {14300,14352,14298 ,5825,5885,5823 ,0,0,0}, {14322,14308,14355 ,5848,5834,5888 ,0,0,0}, - {14352,14353,14348 ,5885,5886,5881 ,0,0,0}, {14310,14315,14356 ,5836,5841,5889 ,0,0,0}, - {14354,14349,14353 ,5887,5882,5886 ,0,0,0}, {14356,14315,14354 ,5889,5841,5887 ,0,0,0}, - {14350,14310,14309 ,5883,5836,5835 ,0,0,0}, {14313,14315,14310 ,5839,5841,5836 ,0,0,0}, - {14295,14336,14347 ,5818,5869,5880 ,0,0,0}, {14292,14351,14301 ,5812,5884,5826 ,0,0,0}, - {14290,14357,14300 ,5810,5890,5825 ,0,0,0}, {14347,14291,14299 ,5880,5811,5824 ,0,0,0}, - {14290,14300,14291 ,5810,5825,5811 ,0,0,0}, {14357,14358,14352 ,5890,5891,5885 ,0,0,0}, - {14357,14352,14300 ,5890,5885,5825 ,0,0,0}, {14358,14359,14353 ,5891,5892,5886 ,0,0,0}, - {14358,14353,14352 ,5891,5886,5885 ,0,0,0}, {14359,14360,14354 ,5892,5893,5887 ,0,0,0}, - {14359,14354,14353 ,5892,5887,5886 ,0,0,0}, {14360,14355,14356 ,5893,5888,5889 ,0,0,0}, - {14356,14354,14360 ,5889,5887,5893 ,0,0,0}, {14355,14308,14356 ,5888,5834,5889 ,0,0,0}, - {14309,14308,14321 ,5835,5834,5847 ,0,0,0}, {14310,14356,14308 ,5836,5889,5834 ,0,0,0}, - {14351,14292,14336 ,5884,5812,5869 ,0,0,0}, {14291,14336,14292 ,5811,5869,5812 ,0,0,0}, - {14357,13728,13746 ,5890,5822,5894 ,0,0,0}, {13729,14290,14292 ,5821,5810,5812 ,0,0,0}, - {14358,13746,13747 ,5891,5894,5895 ,0,0,0}, {13728,14357,14290 ,5822,5890,5810 ,0,0,0}, - {14359,13747,13749 ,5892,5895,5896 ,0,0,0}, {13746,14358,14357 ,5894,5891,5890 ,0,0,0}, - {14360,13749,13732 ,5893,5896,5897 ,0,0,0}, {13747,14359,14358 ,5895,5892,5891 ,0,0,0}, - {14355,13732,13753 ,5888,5897,5898 ,0,0,0}, {13749,14360,14359 ,5896,5893,5892 ,0,0,0}, - {14322,13753,13752 ,5848,5898,5850 ,0,0,0}, {13732,14355,14360 ,5897,5888,5893 ,0,0,0}, - {13752,14320,14322 ,5850,5846,5848 ,0,0,0}, {13753,14322,14355 ,5898,5848,5888 ,0,0,0}, - {14361,14362,14363 ,5899,5900,5901 ,0,0,0}, {14364,14365,13165 ,5902,5903,5904 ,0,0,0}, - {14362,14366,14363 ,5900,5905,5901 ,0,0,0}, {13160,13165,14365 ,5906,5904,5903 ,0,0,0}, - {14367,14368,14369 ,5907,5908,5909 ,0,0,0}, {13170,14370,14368 ,5910,5911,5908 ,0,0,0}, - {14371,14372,14373 ,5912,5913,5914 ,0,0,0}, {13168,14370,13170 ,5915,5911,5910 ,0,0,0}, - {14370,14369,14368 ,5911,5909,5908 ,0,0,0}, {13164,14368,14364 ,5916,5908,5902 ,0,0,0}, - {14374,14375,14376 ,5917,5918,5919 ,0,0,0}, {14377,14378,14379 ,5920,5921,5922 ,0,0,0}, - {14380,14375,14381 ,5923,5918,5924 ,0,0,0}, {14382,14383,14361 ,5925,5926,5899 ,0,0,0}, - {14372,13679,13598 ,5913,5927,5928 ,0,0,0}, {14384,14385,14386 ,5929,5930,5931 ,0,0,0}, - {14387,13709,14371 ,5932,5933,5912 ,0,0,0}, {13679,14371,13709 ,5927,5912,5933 ,0,0,0}, - {14388,14389,14390 ,5934,5935,5936 ,0,0,0}, {14366,14391,14363 ,5905,5937,5901 ,0,0,0}, - {14392,14393,14394 ,5938,5939,5940 ,0,0,0}, {14395,14396,14397 ,5941,5942,5943 ,0,0,0}, - {14386,14389,14398 ,5931,5935,5944 ,0,0,0}, {14399,14400,14401 ,5945,5946,5947 ,0,0,0}, - {14402,14361,14403 ,5948,5899,5949 ,0,0,0}, {14400,14395,14401 ,5946,5941,5947 ,0,0,0}, - {14382,13160,14365 ,5925,5906,5903 ,0,0,0}, {13708,13712,14399 ,5950,5951,5945 ,0,0,0}, - {13160,14382,13158 ,5906,5925,5952 ,0,0,0}, {13158,14382,14402 ,5952,5925,5948 ,0,0,0}, - {14404,13153,14402 ,5953,5954,5948 ,0,0,0}, {14382,14365,14383 ,5925,5903,5926 ,0,0,0}, - {14404,14405,13157 ,5953,5955,5956 ,0,0,0}, {13157,13153,14404 ,5956,5954,5953 ,0,0,0}, - {13149,14406,13151 ,5957,5958,5959 ,0,0,0}, {14406,13149,14405 ,5958,5957,5955 ,0,0,0}, - {13170,14368,13164 ,5910,5908,5916 ,0,0,0}, {14407,14367,14369 ,5960,5907,5909 ,0,0,0}, - {14407,14408,14367 ,5960,5961,5907 ,0,0,0}, {13164,14364,13165 ,5916,5902,5904 ,0,0,0}, - {14409,14364,14367 ,5962,5902,5907 ,0,0,0}, {14361,14383,14362 ,5899,5926,5900 ,0,0,0}, - {14409,14383,14365 ,5962,5926,5903 ,0,0,0}, {14404,14410,14405 ,5953,5963,5955 ,0,0,0}, - {14411,14406,14412 ,5964,5958,5965 ,0,0,0}, {13158,14402,13153 ,5952,5948,5954 ,0,0,0}, - {14402,14382,14361 ,5948,5925,5899 ,0,0,0}, {13157,14405,13149 ,5956,5955,5957 ,0,0,0}, - {14403,14410,14404 ,5949,5963,5953 ,0,0,0}, {14406,14413,13151 ,5958,5966,5959 ,0,0,0}, - {14405,14410,14412 ,5955,5963,5965 ,0,0,0}, {14414,14413,14406 ,5967,5966,5958 ,0,0,0}, - {14368,14367,14364 ,5908,5907,5902 ,0,0,0}, {14415,14408,14407 ,5968,5961,5960 ,0,0,0}, - {14415,14376,14408 ,5968,5919,5961 ,0,0,0}, {14364,14409,14365 ,5902,5962,5903 ,0,0,0}, - {14408,14416,14409 ,5961,5969,5962 ,0,0,0}, {14363,14390,14403 ,5901,5936,5949 ,0,0,0}, - {14416,14362,14383 ,5969,5900,5926 ,0,0,0}, {14386,14411,14412 ,5931,5964,5965 ,0,0,0}, - {14385,14411,14386 ,5930,5964,5931 ,0,0,0}, {14402,14403,14404 ,5948,5949,5953 ,0,0,0}, - {14361,14363,14403 ,5899,5901,5949 ,0,0,0}, {14405,14412,14406 ,5955,5965,5958 ,0,0,0}, - {14390,14389,14410 ,5936,5935,5963 ,0,0,0}, {14406,14411,14414 ,5958,5964,5967 ,0,0,0}, - {14412,14389,14386 ,5965,5935,5931 ,0,0,0}, {14417,14414,14411 ,5970,5967,5964 ,0,0,0}, - {14367,14408,14409 ,5907,5961,5962 ,0,0,0}, {14374,14376,14415 ,5917,5919,5968 ,0,0,0}, - {14418,14380,14419 ,5971,5923,5972 ,0,0,0}, {14409,14416,14383 ,5962,5969,5926 ,0,0,0}, - {14420,14416,14376 ,5973,5969,5919 ,0,0,0}, {14390,14363,14391 ,5936,5901,5937 ,0,0,0}, - {14420,14366,14362 ,5973,5905,5900 ,0,0,0}, {14421,14384,14398 ,5974,5929,5944 ,0,0,0}, - {14410,14389,14412 ,5963,5935,5965 ,0,0,0}, {14403,14390,14410 ,5949,5936,5963 ,0,0,0}, - {14390,14391,14388 ,5936,5937,5934 ,0,0,0}, {14385,14384,14422 ,5930,5929,5975 ,0,0,0}, - {14388,14398,14389 ,5934,5944,5935 ,0,0,0}, {14411,14385,14417 ,5964,5930,5970 ,0,0,0}, - {14386,14398,14384 ,5931,5944,5929 ,0,0,0}, {14423,14417,14385 ,5976,5970,5930 ,0,0,0}, - {14408,14376,14416 ,5961,5919,5969 ,0,0,0}, {14381,14375,14374 ,5924,5918,5917 ,0,0,0}, - {14366,14424,14391 ,5905,5977,5937 ,0,0,0}, {14416,14420,14362 ,5969,5973,5900 ,0,0,0}, - {14425,14420,14375 ,5978,5973,5918 ,0,0,0}, {14391,14426,14388 ,5937,5979,5934 ,0,0,0}, - {14425,14424,14366 ,5978,5977,5905 ,0,0,0}, {14388,14427,14398 ,5934,5980,5944 ,0,0,0}, - {14426,14391,14424 ,5979,5937,5977 ,0,0,0}, {14384,14393,14422 ,5929,5939,5975 ,0,0,0}, - {14427,14388,14426 ,5980,5934,5979 ,0,0,0}, {14428,14422,14392 ,5981,5975,5938 ,0,0,0}, - {14421,14398,14427 ,5974,5944,5980 ,0,0,0}, {14385,14422,14423 ,5930,5975,5976 ,0,0,0}, - {14384,14421,14393 ,5929,5974,5939 ,0,0,0}, {14428,14423,14422 ,5981,5976,5975 ,0,0,0}, - {14376,14375,14420 ,5919,5918,5973 ,0,0,0}, {14419,14380,14381 ,5972,5923,5924 ,0,0,0}, - {14424,14377,14426 ,5977,5920,5979 ,0,0,0}, {14420,14425,14366 ,5973,5978,5905 ,0,0,0}, - {14380,14429,14425 ,5923,5982,5978 ,0,0,0}, {14426,14379,14427 ,5979,5922,5980 ,0,0,0}, - {14429,14377,14424 ,5982,5920,5977 ,0,0,0}, {14427,14430,14421 ,5980,5983,5974 ,0,0,0}, - {14377,14379,14426 ,5920,5922,5979 ,0,0,0}, {14431,14393,14421 ,5984,5939,5974 ,0,0,0}, - {14430,14427,14379 ,5983,5980,5922 ,0,0,0}, {14432,14392,14397 ,5985,5938,5943 ,0,0,0}, - {14421,14430,14431 ,5974,5983,5984 ,0,0,0}, {14431,14394,14393 ,5984,5940,5939 ,0,0,0}, - {14428,14392,14432 ,5981,5938,5985 ,0,0,0}, {14422,14393,14392 ,5975,5939,5938 ,0,0,0}, - {14375,14380,14425 ,5918,5923,5978 ,0,0,0}, {14433,14418,14419 ,5986,5971,5972 ,0,0,0}, - {14434,14430,14379 ,5987,5983,5922 ,0,0,0}, {14425,14429,14424 ,5978,5982,5977 ,0,0,0}, - {14418,14373,14429 ,5971,5914,5982 ,0,0,0}, {14435,14431,14430 ,5988,5984,5983 ,0,0,0}, - {14373,14378,14377 ,5914,5921,5920 ,0,0,0}, {14436,14394,14431 ,5989,5940,5984 ,0,0,0}, - {14378,14434,14379 ,5921,5987,5922 ,0,0,0}, {14401,14395,14437 ,5947,5941,5990 ,0,0,0}, - {14434,14435,14430 ,5987,5988,5983 ,0,0,0}, {14397,14394,14438 ,5943,5940,5991 ,0,0,0}, - {14436,14431,14435 ,5989,5984,5988 ,0,0,0}, {14438,14394,14436 ,5991,5940,5989 ,0,0,0}, - {14432,14397,14396 ,5985,5943,5942 ,0,0,0}, {14392,14394,14397 ,5938,5940,5943 ,0,0,0}, - {14380,14418,14429 ,5923,5971,5982 ,0,0,0}, {14371,14433,14387 ,5912,5986,5932 ,0,0,0}, - {14372,14439,14378 ,5913,5992,5921 ,0,0,0}, {14429,14373,14377 ,5982,5914,5920 ,0,0,0}, - {14372,14378,14373 ,5913,5921,5914 ,0,0,0}, {14439,14440,14434 ,5992,5993,5987 ,0,0,0}, - {14439,14434,14378 ,5992,5987,5921 ,0,0,0}, {14440,14441,14435 ,5993,5994,5988 ,0,0,0}, - {14440,14435,14434 ,5993,5988,5987 ,0,0,0}, {14441,14442,14436 ,5994,5995,5989 ,0,0,0}, - {14441,14436,14435 ,5994,5989,5988 ,0,0,0}, {14442,14437,14438 ,5995,5990,5991 ,0,0,0}, - {14438,14436,14442 ,5991,5989,5995 ,0,0,0}, {14437,14395,14438 ,5990,5941,5991 ,0,0,0}, - {14396,14395,14400 ,5942,5941,5946 ,0,0,0}, {14397,14438,14395 ,5943,5991,5941 ,0,0,0}, - {14433,14371,14418 ,5986,5912,5971 ,0,0,0}, {14373,14418,14371 ,5914,5971,5912 ,0,0,0}, - {14439,13598,13698 ,5992,5928,5996 ,0,0,0}, {13679,14372,14371 ,5927,5913,5912 ,0,0,0}, - {14440,13698,13903 ,5993,5996,5997 ,0,0,0}, {13598,14439,14372 ,5928,5992,5913 ,0,0,0}, - {14441,13903,13705 ,5994,5997,5998 ,0,0,0}, {13698,14440,14439 ,5996,5993,5992 ,0,0,0}, - {14442,13705,13716 ,5995,5998,5999 ,0,0,0}, {13903,14441,14440 ,5997,5994,5993 ,0,0,0}, - {14437,13716,13702 ,5990,5999,6000 ,0,0,0}, {13705,14442,14441 ,5998,5995,5994 ,0,0,0}, - {14401,13702,13708 ,5947,6000,5950 ,0,0,0}, {13716,14437,14442 ,5999,5990,5995 ,0,0,0}, - {13708,14399,14401 ,5950,5945,5947 ,0,0,0}, {13702,14401,14437 ,6000,5947,5990 ,0,0,0}, - {14443,14444,14445 ,6001,6002,6003 ,0,0,0}, {14446,13133,13130 ,6004,6005,6006 ,0,0,0}, - {14445,14447,14448 ,6003,6007,6008 ,0,0,0}, {14447,14449,14448 ,6007,6009,6008 ,0,0,0}, - {14450,14451,14452 ,6010,6011,6012 ,0,0,0}, {14452,14453,14450 ,6012,6013,6010 ,0,0,0}, - {14454,14455,14456 ,6014,6015,6016 ,0,0,0}, {14457,14451,13136 ,6017,6011,6018 ,0,0,0}, - {14457,14452,14451 ,6017,6012,6011 ,0,0,0}, {13136,13135,14457 ,6018,5020,6017 ,0,0,0}, - {14458,13130,13138 ,6019,6006,6020 ,0,0,0}, {14459,14460,14461 ,6021,6022,6023 ,0,0,0}, - {14454,13653,13669 ,6014,6024,6025 ,0,0,0}, {14462,14463,14464 ,6026,6027,6028 ,0,0,0}, - {14465,13656,14456 ,6029,6030,6016 ,0,0,0}, {14466,14467,14460 ,6031,6032,6022 ,0,0,0}, - {13653,14456,13656 ,6024,6016,6030 ,0,0,0}, {14468,14469,14470 ,6033,6034,6035 ,0,0,0}, - {14471,14448,14449 ,6036,6008,6009 ,0,0,0}, {14472,14473,14474 ,6037,6038,6039 ,0,0,0}, - {14475,14476,14445 ,6040,6041,6003 ,0,0,0}, {14477,14478,14479 ,6042,6043,6044 ,0,0,0}, - {14470,14480,14481 ,6035,6045,6046 ,0,0,0}, {14482,14480,14483 ,6047,6045,6048 ,0,0,0}, - {14484,14485,14486 ,6049,6050,6051 ,0,0,0}, {14443,13133,14446 ,6001,6005,6004 ,0,0,0}, - {14485,14472,14486 ,6050,6037,6051 ,0,0,0}, {14476,13122,14443 ,6041,6052,6001 ,0,0,0}, - {13672,13674,14484 ,6053,6054,6049 ,0,0,0}, {14487,13123,14476 ,6055,6056,6041 ,0,0,0}, - {13122,13133,14443 ,6052,6005,6001 ,0,0,0}, {14487,14488,13125 ,6055,6057,6058 ,0,0,0}, - {14476,13123,13122 ,6041,6056,6052 ,0,0,0}, {13119,14489,13120 ,6059,6060,6061 ,0,0,0}, - {13123,14487,13125 ,6056,6055,6058 ,0,0,0}, {13111,13120,14490 ,6062,6061,6063 ,0,0,0}, - {14489,13119,14488 ,6060,6059,6057 ,0,0,0}, {13138,14451,14458 ,6020,6011,6019 ,0,0,0}, - {14451,13138,13136 ,6011,6020,6018 ,0,0,0}, {14453,14491,14450 ,6013,6064,6010 ,0,0,0}, - {14458,14446,13130 ,6019,6004,6006 ,0,0,0}, {14492,14458,14450 ,6065,6019,6010 ,0,0,0}, - {14445,14444,14447 ,6003,6002,6007 ,0,0,0}, {14492,14444,14446 ,6065,6002,6004 ,0,0,0}, - {14487,14493,14488 ,6055,6066,6057 ,0,0,0}, {14446,14444,14443 ,6004,6002,6001 ,0,0,0}, - {14494,14495,14489 ,6067,6068,6060 ,0,0,0}, {14476,14443,14445 ,6041,6001,6003 ,0,0,0}, - {14493,14487,14475 ,6066,6055,6040 ,0,0,0}, {13120,14489,14490 ,6061,6060,6063 ,0,0,0}, - {13125,14488,13119 ,6058,6057,6059 ,0,0,0}, {14488,14493,14494 ,6057,6066,6067 ,0,0,0}, - {14496,14490,14489 ,6069,6063,6060 ,0,0,0}, {14451,14450,14458 ,6011,6010,6019 ,0,0,0}, - {14497,14491,14453 ,6070,6064,6013 ,0,0,0}, {14497,14466,14491 ,6070,6031,6064 ,0,0,0}, - {14458,14492,14446 ,6019,6065,6004 ,0,0,0}, {14491,14498,14492 ,6064,6071,6065 ,0,0,0}, - {14448,14483,14475 ,6008,6048,6040 ,0,0,0}, {14498,14447,14444 ,6071,6007,6002 ,0,0,0}, - {14470,14495,14494 ,6035,6068,6067 ,0,0,0}, {14469,14495,14470 ,6034,6068,6035 ,0,0,0}, - {14476,14475,14487 ,6041,6040,6055 ,0,0,0}, {14445,14448,14475 ,6003,6008,6040 ,0,0,0}, - {14488,14494,14489 ,6057,6067,6060 ,0,0,0}, {14483,14480,14493 ,6048,6045,6066 ,0,0,0}, - {14489,14495,14496 ,6060,6068,6069 ,0,0,0}, {14494,14480,14470 ,6067,6045,6035 ,0,0,0}, - {14499,14496,14495 ,6072,6069,6068 ,0,0,0}, {14450,14491,14492 ,6010,6064,6065 ,0,0,0}, - {14467,14466,14497 ,6032,6031,6070 ,0,0,0}, {14500,14459,14501 ,6073,6021,6074 ,0,0,0}, - {14492,14498,14444 ,6065,6071,6002 ,0,0,0}, {14502,14498,14466 ,6075,6071,6031 ,0,0,0}, - {14483,14448,14471 ,6048,6008,6036 ,0,0,0}, {14502,14449,14447 ,6075,6009,6007 ,0,0,0}, - {14503,14468,14481 ,6076,6033,6046 ,0,0,0}, {14493,14480,14494 ,6066,6045,6067 ,0,0,0}, - {14475,14483,14493 ,6040,6048,6066 ,0,0,0}, {14483,14471,14482 ,6048,6036,6047 ,0,0,0}, - {14469,14468,14504 ,6034,6033,6077 ,0,0,0}, {14482,14481,14480 ,6047,6046,6045 ,0,0,0}, - {14495,14469,14499 ,6068,6034,6072 ,0,0,0}, {14470,14481,14468 ,6035,6046,6033 ,0,0,0}, - {14505,14499,14469 ,6078,6072,6034 ,0,0,0}, {14491,14466,14498 ,6064,6031,6071 ,0,0,0}, - {14461,14460,14467 ,6023,6022,6032 ,0,0,0}, {14449,14506,14471 ,6009,6079,6036 ,0,0,0}, - {14498,14502,14447 ,6071,6075,6007 ,0,0,0}, {14507,14502,14460 ,6080,6075,6022 ,0,0,0}, - {14471,14508,14482 ,6036,6081,6047 ,0,0,0}, {14507,14506,14449 ,6080,6079,6009 ,0,0,0}, - {14482,14509,14481 ,6047,6082,6046 ,0,0,0}, {14508,14471,14506 ,6081,6036,6079 ,0,0,0}, - {14468,14478,14504 ,6033,6043,6077 ,0,0,0}, {14509,14482,14508 ,6082,6047,6081 ,0,0,0}, - {14510,14504,14477 ,6083,6077,6042 ,0,0,0}, {14503,14481,14509 ,6076,6046,6082 ,0,0,0}, - {14469,14504,14505 ,6034,6077,6078 ,0,0,0}, {14468,14503,14478 ,6033,6076,6043 ,0,0,0}, - {14510,14505,14504 ,6083,6078,6077 ,0,0,0}, {14466,14460,14502 ,6031,6022,6075 ,0,0,0}, - {14501,14459,14461 ,6074,6021,6023 ,0,0,0}, {14506,14463,14508 ,6079,6027,6081 ,0,0,0}, - {14502,14507,14449 ,6075,6080,6009 ,0,0,0}, {14459,14511,14507 ,6021,6084,6080 ,0,0,0}, - {14508,14462,14509 ,6081,6026,6082 ,0,0,0}, {14511,14463,14506 ,6084,6027,6079 ,0,0,0}, - {14509,14512,14503 ,6082,6085,6076 ,0,0,0}, {14463,14462,14508 ,6027,6026,6081 ,0,0,0}, - {14513,14478,14503 ,6086,6043,6076 ,0,0,0}, {14512,14509,14462 ,6085,6082,6026 ,0,0,0}, - {14514,14477,14474 ,6087,6042,6039 ,0,0,0}, {14503,14512,14513 ,6076,6085,6086 ,0,0,0}, - {14513,14479,14478 ,6086,6044,6043 ,0,0,0}, {14510,14477,14514 ,6083,6042,6087 ,0,0,0}, - {14504,14478,14477 ,6077,6043,6042 ,0,0,0}, {14460,14459,14507 ,6022,6021,6080 ,0,0,0}, - {14515,14500,14501 ,6088,6073,6074 ,0,0,0}, {14516,14512,14462 ,6089,6085,6026 ,0,0,0}, - {14507,14511,14506 ,6080,6084,6079 ,0,0,0}, {14500,14455,14511 ,6073,6015,6084 ,0,0,0}, - {14517,14513,14512 ,6090,6086,6085 ,0,0,0}, {14455,14464,14463 ,6015,6028,6027 ,0,0,0}, - {14518,14479,14513 ,6091,6044,6086 ,0,0,0}, {14464,14516,14462 ,6028,6089,6026 ,0,0,0}, - {14486,14472,14519 ,6051,6037,6092 ,0,0,0}, {14516,14517,14512 ,6089,6090,6085 ,0,0,0}, - {14474,14479,14520 ,6039,6044,6093 ,0,0,0}, {14518,14513,14517 ,6091,6086,6090 ,0,0,0}, - {14520,14479,14518 ,6093,6044,6091 ,0,0,0}, {14514,14474,14473 ,6087,6039,6038 ,0,0,0}, - {14477,14479,14474 ,6042,6044,6039 ,0,0,0}, {14459,14500,14511 ,6021,6073,6084 ,0,0,0}, - {14456,14515,14465 ,6016,6088,6029 ,0,0,0}, {14454,14521,14464 ,6014,6094,6028 ,0,0,0}, - {14511,14455,14463 ,6084,6015,6027 ,0,0,0}, {14454,14464,14455 ,6014,6028,6015 ,0,0,0}, - {14521,14522,14516 ,6094,6095,6089 ,0,0,0}, {14521,14516,14464 ,6094,6089,6028 ,0,0,0}, - {14522,14523,14517 ,6095,6096,6090 ,0,0,0}, {14522,14517,14516 ,6095,6090,6089 ,0,0,0}, - {14523,14524,14518 ,6096,6097,6091 ,0,0,0}, {14523,14518,14517 ,6096,6091,6090 ,0,0,0}, - {14524,14519,14520 ,6097,6092,6093 ,0,0,0}, {14520,14518,14524 ,6093,6091,6097 ,0,0,0}, - {14519,14472,14520 ,6092,6037,6093 ,0,0,0}, {14473,14472,14485 ,6038,6037,6050 ,0,0,0}, - {14474,14520,14472 ,6039,6093,6037 ,0,0,0}, {14515,14456,14500 ,6088,6016,6073 ,0,0,0}, - {14455,14500,14456 ,6015,6073,6016 ,0,0,0}, {14521,13669,13663 ,6094,6025,6098 ,0,0,0}, - {13653,14454,14456 ,6024,6014,6016 ,0,0,0}, {14522,13663,13667 ,6095,6098,6099 ,0,0,0}, - {13669,14521,14454 ,6025,6094,6014 ,0,0,0}, {14523,13667,13666 ,6096,6099,6100 ,0,0,0}, - {13663,14522,14521 ,6098,6095,6094 ,0,0,0}, {14524,13666,13676 ,6097,6100,6101 ,0,0,0}, - {13667,14523,14522 ,6099,6096,6095 ,0,0,0}, {14519,13676,13638 ,6092,6101,6102 ,0,0,0}, - {13666,14524,14523 ,6100,6097,6096 ,0,0,0}, {14486,13638,13672 ,6051,6102,6053 ,0,0,0}, - {13676,14519,14524 ,6101,6092,6097 ,0,0,0}, {13672,14484,14486 ,6053,6049,6051 ,0,0,0}, - {13638,14486,14519 ,6102,6051,6092 ,0,0,0}, {14525,14526,14527 ,730,6103,6103 ,0,0,0}, - {12755,12697,12694 ,6103,730,730 ,0,0,0}, {14528,14526,14529 ,6104,6103,6105 ,0,0,0}, - {14528,14530,14531 ,6104,6106,6103 ,0,0,0}, {14532,14527,14533 ,6107,6103,6108 ,0,0,0}, - {14530,14534,14535 ,6106,6109,6110 ,0,0,0}, {14536,14537,14533 ,6103,6111,6108 ,0,0,0}, - {14535,14538,14539 ,6110,6112,6110 ,0,0,0}, {14540,14536,14541 ,6111,6103,6103 ,0,0,0}, - {14539,14542,14543 ,6110,6113,6112 ,0,0,0}, {14543,14544,14545 ,6112,6109,6110 ,0,0,0}, - {14545,14546,14547 ,6110,6106,6114 ,0,0,0}, {14541,14548,14549 ,6103,730,6115 ,0,0,0}, - {14550,14547,14551 ,6105,6114,6104 ,0,0,0}, {14552,14553,14554 ,6111,730,6111 ,0,0,0}, - {14555,14547,14550 ,6111,6114,6105 ,0,0,0}, {14554,14556,14557 ,6111,6110,6114 ,0,0,0}, - {14558,14559,14560 ,730,6114,6108 ,0,0,0}, {12703,12768,12770 ,6110,6111,6110 ,0,0,0}, - {14561,14562,14563 ,6115,730,6111 ,0,0,0}, {12767,12702,12765 ,730,730,6114 ,0,0,0}, - {14564,14565,12686 ,6111,6110,6110 ,0,0,0}, {12698,12761,12700 ,730,6114,6103 ,0,0,0}, - {12683,12733,12730 ,730,730,6114 ,0,0,0}, {12697,12756,12759 ,730,730,6103 ,0,0,0}, - {12727,12679,12728 ,6114,730,730 ,0,0,0}, {12753,12755,12694 ,730,6103,730 ,0,0,0}, - {12677,12721,12674 ,6103,6103,730 ,0,0,0}, {12747,12749,12688 ,730,730,730 ,0,0,0}, - {12715,12712,12673 ,730,730,730 ,0,0,0}, {12741,12687,12667 ,730,730,730 ,0,0,0}, - {12671,12710,12709 ,730,730,730 ,0,0,0}, {12671,12672,12710 ,730,730,730 ,0,0,0}, - {12673,12712,12672 ,730,730,730 ,0,0,0}, {12741,12667,12705 ,730,730,730 ,0,0,0}, - {12667,12671,12706 ,730,730,730 ,0,0,0}, {12716,12674,12718 ,6103,730,730 ,0,0,0}, - {12673,12674,12716 ,730,730,6103 ,0,0,0}, {12687,12744,12688 ,730,730,730 ,0,0,0}, - {12687,12743,12744 ,730,730,730 ,0,0,0}, {12677,12679,12724 ,6103,730,6103 ,0,0,0}, - {12677,12724,12722 ,6103,6103,730 ,0,0,0}, {12694,12692,12750 ,730,730,6103 ,0,0,0}, - {12749,12692,12688 ,730,730,730 ,0,0,0}, {12683,12730,12680 ,730,6114,6103 ,0,0,0}, - {12679,12680,12728 ,730,6103,730 ,0,0,0}, {12697,12755,12756 ,730,6103,730 ,0,0,0}, - {12736,12734,12686 ,6110,6111,6110 ,0,0,0}, {12683,12686,12734 ,730,6110,6111 ,0,0,0}, - {12698,12759,12761 ,730,6103,6114 ,0,0,0}, {12697,12759,12698 ,730,6103,730 ,0,0,0}, - {14563,14566,14564 ,6111,6111,6111 ,0,0,0}, {14567,14564,14566 ,6114,6111,6111 ,0,0,0}, - {12761,12762,12700 ,6114,730,6103 ,0,0,0}, {12700,12765,12702 ,6103,6114,730 ,0,0,0}, - {12762,12765,12700 ,730,6114,6103 ,0,0,0}, {12767,12768,12702 ,730,6111,730 ,0,0,0}, - {14568,14560,14559 ,6107,6108,6114 ,0,0,0}, {12703,12702,12768 ,6110,730,6111 ,0,0,0}, - {12770,14556,12703 ,6110,6110,6110 ,0,0,0}, {14559,14555,14569 ,6114,6111,730 ,0,0,0}, - {14570,14571,14558 ,6111,6110,730 ,0,0,0}, {14571,14561,14563 ,6110,6115,6111 ,0,0,0}, - {14544,14546,14545 ,6109,6106,6110 ,0,0,0}, {12753,12694,12750 ,730,730,6103 ,0,0,0}, - {12750,12692,12749 ,6103,730,730 ,0,0,0}, {12747,12688,12744 ,730,730,730 ,0,0,0}, - {12743,12687,12741 ,730,730,730 ,0,0,0}, {12705,12667,12706 ,730,730,730 ,0,0,0}, - {12706,12671,12709 ,730,730,730 ,0,0,0}, {12710,12672,12712 ,730,730,730 ,0,0,0}, - {12715,12673,12716 ,730,730,6103 ,0,0,0}, {12718,12674,12721 ,730,730,6103 ,0,0,0}, - {12721,12677,12722 ,6103,6103,730 ,0,0,0}, {12724,12679,12727 ,6103,730,6114 ,0,0,0}, - {12728,12680,12730 ,730,6103,6114 ,0,0,0}, {12733,12683,12734 ,730,730,6111 ,0,0,0}, - {12736,12686,14565 ,6110,6110,6110 ,0,0,0}, {14565,14564,14567 ,6110,6111,6114 ,0,0,0}, - {14566,14563,14562 ,6111,6111,730 ,0,0,0}, {14561,14571,14570 ,6115,6110,6111 ,0,0,0}, - {14572,14558,14560 ,6111,730,6108 ,0,0,0}, {14558,14572,14570 ,730,6111,6111 ,0,0,0}, - {14568,14559,14569 ,6107,6114,730 ,0,0,0}, {14569,14555,14550 ,730,6111,6105 ,0,0,0}, - {14551,14547,14546 ,6104,6114,6106 ,0,0,0}, {14545,14539,14543 ,6110,6110,6112 ,0,0,0}, - {14542,14539,14538 ,6113,6110,6112 ,0,0,0}, {14538,14535,14534 ,6112,6110,6109 ,0,0,0}, - {14530,14535,14531 ,6106,6110,6103 ,0,0,0}, {14528,14531,14526 ,6104,6103,6103 ,0,0,0}, - {14525,14529,14526 ,730,6105,6103 ,0,0,0}, {14532,14525,14527 ,6107,730,6103 ,0,0,0}, - {14536,14533,14527 ,6103,6108,6103 ,0,0,0}, {14536,14540,14537 ,6103,6111,6111 ,0,0,0}, - {14541,14549,14540 ,6103,6115,6111 ,0,0,0}, {14541,14553,14548 ,6103,730,730 ,0,0,0}, - {14552,14554,14557 ,6111,6111,6114 ,0,0,0}, {14548,14553,14552 ,730,730,6111 ,0,0,0}, - {14556,14554,12703 ,6110,6111,6110 ,0,0,0}, {12739,12707,14573 ,6116,6117,6118 ,0,0,0}, - {12742,14574,14575 ,6119,6120,6121 ,0,0,0}, {14576,14577,12894 ,6122,6123,6124 ,0,0,0}, - {12984,12754,12981 ,6125,6126,6127 ,0,0,0}, {12910,12909,13321 ,6128,6129,6130 ,0,0,0}, - {12840,12843,12764 ,6131,6132,6122 ,0,0,0}, {14578,12845,14579 ,6133,6134,6135 ,0,0,0}, - {14580,14581,14582 ,6136,6137,6138 ,0,0,0}, {12711,12791,12794 ,6122,6120,6139 ,0,0,0}, - {14577,12879,12884 ,6123,6140,6141 ,0,0,0}, {14583,12962,12964 ,6139,6142,6143 ,0,0,0}, - {13234,14584,13235 ,6144,6145,6146 ,0,0,0}, {13292,14585,13285 ,6147,6148,6149 ,0,0,0}, - {12812,14586,12815 ,6150,6144,6150 ,0,0,0}, {14587,12870,13269 ,6151,6134,6152 ,0,0,0}, - {14588,12771,14589 ,6145,6153,6154 ,0,0,0}, {14587,13269,14590 ,6151,6152,6155 ,0,0,0}, - {14591,13269,13268 ,6156,6152,6157 ,0,0,0}, {14592,14593,14594 ,6158,6144,6159 ,0,0,0}, - {14595,14596,14597 ,6160,6161,6162 ,0,0,0}, {13268,14598,14591 ,6157,6163,6156 ,0,0,0}, - {14599,14600,13268 ,6158,6164,6157 ,0,0,0}, {13274,14601,14599 ,6155,6165,6158 ,0,0,0}, - {14602,13279,14603 ,6166,6167,6116 ,0,0,0}, {13274,14599,13268 ,6155,6158,6157 ,0,0,0}, - {13286,14603,13279 ,6168,6116,6167 ,0,0,0}, {14594,14582,14581 ,6159,6138,6137 ,0,0,0}, - {14604,14605,14606 ,6122,6169,6170 ,0,0,0}, {14607,13274,13272 ,6171,6155,6172 ,0,0,0}, - {13272,14608,14607 ,6172,6118,6171 ,0,0,0}, {14609,14610,13282 ,6173,6174,6175 ,0,0,0}, - {13272,13271,14608 ,6172,6176,6118 ,0,0,0}, {13271,14610,14611 ,6176,6174,6177 ,0,0,0}, - {14612,12935,12934 ,6120,6146,6154 ,0,0,0}, {13271,13282,14610 ,6176,6175,6174 ,0,0,0}, - {14609,13282,13277 ,6173,6175,6178 ,0,0,0}, {14589,12773,14613 ,6154,6120,6145 ,0,0,0}, - {14614,14615,14616 ,6177,6179,6180 ,0,0,0}, {14617,14609,13277 ,6181,6173,6178 ,0,0,0}, - {14615,14618,14604 ,6179,6182,6122 ,0,0,0}, {14592,14619,14593 ,6158,6183,6144 ,0,0,0}, - {14606,14605,14620 ,6170,6169,6184 ,0,0,0}, {13286,13285,14621 ,6168,6149,6185 ,0,0,0}, - {14622,12719,14623 ,6186,6187,6119 ,0,0,0}, {12815,14624,12816 ,6150,6144,6188 ,0,0,0}, - {14625,13237,14626 ,6145,6144,6150 ,0,0,0}, {14619,13002,14627 ,6183,6189,6190 ,0,0,0}, - {13232,14628,14629 ,6154,6120,6127 ,0,0,0}, {12969,12968,13332 ,6191,6142,6192 ,0,0,0}, - {14574,12742,12740 ,6120,6119,6122 ,0,0,0}, {13326,12900,12899 ,6193,6194,6195 ,0,0,0}, - {12971,13227,13221 ,6196,6186,6197 ,0,0,0}, {12847,12769,12766 ,6196,6134,6138 ,0,0,0}, - {14577,12998,12993 ,6123,6198,6199 ,0,0,0}, {12764,12843,12766 ,6122,6132,6138 ,0,0,0}, - {12839,12840,12763 ,6157,6131,6137 ,0,0,0}, {12839,12763,12760 ,6157,6137,6131 ,0,0,0}, - {12758,12837,12760 ,6200,6143,6131 ,0,0,0}, {12746,12957,12975 ,6117,6201,6202 ,0,0,0}, - {14580,14630,14631 ,6136,6200,6156 ,0,0,0}, {12831,14632,12826 ,6118,6203,6132 ,0,0,0}, - {14633,12833,12835 ,6133,6204,6133 ,0,0,0}, {12763,12840,12764 ,6137,6131,6122 ,0,0,0}, - {12843,12847,12766 ,6132,6196,6138 ,0,0,0}, {12833,14634,12828 ,6204,6153,6201 ,0,0,0}, - {14635,12826,14632 ,6201,6132,6203 ,0,0,0}, {12748,12746,12975 ,6187,6117,6202 ,0,0,0}, - {12760,12837,12839 ,6131,6143,6157 ,0,0,0}, {12822,13252,13254 ,6132,6144,6205 ,0,0,0}, - {12835,12987,14633 ,6133,6201,6133 ,0,0,0}, {12758,12987,12837 ,6200,6201,6143 ,0,0,0}, - {13259,12821,13254 ,6206,6116,6205 ,0,0,0}, {12853,13259,13261 ,6207,6206,6204 ,0,0,0}, - {14636,14637,12827 ,6132,6119,6207 ,0,0,0}, {13252,12822,12826 ,6144,6132,6132 ,0,0,0}, - {12821,13259,12851 ,6116,6206,6121 ,0,0,0}, {12821,12822,13254 ,6116,6132,6205 ,0,0,0}, - {13262,12857,13261 ,6208,6207,6204 ,0,0,0}, {12853,12851,13259 ,6207,6121,6206 ,0,0,0}, - {12854,12853,13261 ,6209,6207,6204 ,0,0,0}, {13262,13264,12860 ,6208,6142,6196 ,0,0,0}, - {12857,12854,13261 ,6207,6209,6204 ,0,0,0}, {12859,12857,13262 ,6133,6207,6208 ,0,0,0}, - {13262,12860,12859 ,6208,6196,6133 ,0,0,0}, {13264,12863,12860 ,6142,6134,6196 ,0,0,0}, - {13267,12865,13264 ,6148,6131,6142 ,0,0,0}, {13264,12865,12863 ,6142,6131,6134 ,0,0,0}, - {13267,12866,12865 ,6148,6205,6131 ,0,0,0}, {12866,13267,12869 ,6205,6148,6204 ,0,0,0}, - {13267,12870,12869 ,6148,6134,6204 ,0,0,0}, {14591,14590,13269 ,6156,6155,6152 ,0,0,0}, - {14607,14601,13274 ,6171,6165,6155 ,0,0,0}, {14600,14598,13268 ,6164,6163,6157 ,0,0,0}, - {14608,13271,14611 ,6118,6176,6177 ,0,0,0}, {14602,14638,13277 ,6166,6210,6178 ,0,0,0}, - {14639,13291,14640 ,6157,6190,6211 ,0,0,0}, {14617,14641,14642 ,6181,6212,6182 ,0,0,0}, - {12883,14577,12884 ,6174,6123,6141 ,0,0,0}, {14643,14644,14577 ,6213,6214,6123 ,0,0,0}, - {13329,13326,12873 ,6215,6193,6216 ,0,0,0}, {13012,13014,12874 ,6217,6218,6219 ,0,0,0}, - {12899,12873,13326 ,6195,6216,6193 ,0,0,0}, {12904,12903,13318 ,6220,6221,6222 ,0,0,0}, - {12900,13325,12903 ,6194,6223,6221 ,0,0,0}, {13321,12909,12906 ,6130,6129,6181 ,0,0,0}, - {12906,13318,13321 ,6181,6222,6130 ,0,0,0}, {12915,13322,12916 ,6224,6225,6226 ,0,0,0}, - {12912,13321,13322 ,6227,6130,6225 ,0,0,0}, {12992,14577,12993 ,6212,6123,6199 ,0,0,0}, - {12923,14645,12924 ,6203,6228,6201 ,0,0,0}, {13014,12875,12874 ,6218,6229,6219 ,0,0,0}, - {14646,14647,14648 ,6230,6231,6232 ,0,0,0}, {13014,13015,13294 ,6218,6200,6233 ,0,0,0}, - {12915,12912,13322 ,6224,6227,6225 ,0,0,0}, {13322,12918,12916 ,6225,6234,6226 ,0,0,0}, - {12912,12910,13321 ,6227,6128,6130 ,0,0,0}, {12992,12991,14577 ,6212,6235,6123 ,0,0,0}, - {12904,13318,12906 ,6220,6222,6181 ,0,0,0}, {13325,13318,12903 ,6223,6222,6221 ,0,0,0}, - {13326,13325,12900 ,6193,6223,6194 ,0,0,0}, {12875,13329,12873 ,6229,6215,6216 ,0,0,0}, - {13329,12875,13294 ,6215,6229,6233 ,0,0,0}, {14644,12999,14577 ,6214,6236,6123 ,0,0,0}, - {13002,12999,14627 ,6189,6236,6190 ,0,0,0}, {14577,14649,14650 ,6123,6170,6214 ,0,0,0}, - {12891,14577,12887 ,6237,6123,6167 ,0,0,0}, {14576,14649,14577 ,6122,6170,6123 ,0,0,0}, - {12893,14651,14652 ,6238,6180,6179 ,0,0,0}, {14653,12930,14654 ,6197,6165,6196 ,0,0,0}, - {14655,12735,14656 ,6131,6122,6132 ,0,0,0}, {12898,14657,14651 ,6239,6240,6180 ,0,0,0}, - {14658,14659,14597 ,6171,6152,6162 ,0,0,0}, {12726,14660,12725 ,6204,6208,6126 ,0,0,0}, - {14661,14620,14662 ,6241,6184,6136 ,0,0,0}, {14663,12941,12944 ,6179,6179,6202 ,0,0,0}, - {12953,14660,12952 ,6127,6208,6242 ,0,0,0}, {13078,14664,14665 ,6156,6200,6136 ,0,0,0}, - {13081,13083,14666 ,6137,6135,6133 ,0,0,0}, {14667,14668,14669 ,6207,6133,6208 ,0,0,0}, - {13039,13072,13075 ,6196,6158,6159 ,0,0,0}, {13062,13032,13027 ,6181,6243,6139 ,0,0,0}, - {13046,13048,14670 ,6244,6245,6246 ,0,0,0}, {13025,14671,14672 ,6247,6190,6136 ,0,0,0}, - {14673,14647,14674 ,6248,6231,6170 ,0,0,0}, {14675,14676,13054 ,6152,6249,6250 ,0,0,0}, - {14677,14647,14673 ,6251,6231,6248 ,0,0,0}, {14678,14679,14680 ,6252,6253,6254 ,0,0,0}, - {14679,14646,14680 ,6253,6230,6254 ,0,0,0}, {14681,14682,14683 ,6255,6256,6257 ,0,0,0}, - {14684,14685,14686 ,6258,6259,6260 ,0,0,0}, {14679,14678,14686 ,6253,6252,6260 ,0,0,0}, - {14686,14685,14679 ,6260,6259,6253 ,0,0,0}, {14685,14684,14687 ,6259,6258,6261 ,0,0,0}, - {14688,14683,14689 ,6262,6257,6263 ,0,0,0}, {14687,14689,14685 ,6261,6263,6259 ,0,0,0}, - {14683,14682,14689 ,6257,6256,6263 ,0,0,0}, {14690,14691,14682 ,6264,6265,6256 ,0,0,0}, - {14687,14688,14689 ,6261,6262,6263 ,0,0,0}, {14681,14690,14682 ,6255,6264,6256 ,0,0,0}, - {14680,14646,14648 ,6254,6230,6232 ,0,0,0}, {14692,14693,13055 ,6138,6134,6266 ,0,0,0}, - {14648,14647,14677 ,6232,6231,6251 ,0,0,0}, {14674,14693,14692 ,6170,6134,6138 ,0,0,0}, - {14694,13048,13049 ,6267,6245,6268 ,0,0,0}, {13026,14672,14695 ,6167,6136,6199 ,0,0,0}, - {13043,13046,14671 ,6235,6244,6190 ,0,0,0}, {14696,13097,14697 ,6197,6164,6191 ,0,0,0}, - {13091,13090,14698 ,6171,6118,6269 ,0,0,0}, {13036,13033,13066 ,6270,6270,6174 ,0,0,0}, - {14696,13099,13097 ,6197,6163,6164 ,0,0,0}, {13071,13036,13066 ,6127,6270,6174 ,0,0,0}, - {14699,14631,14630 ,6137,6156,6200 ,0,0,0}, {14700,14701,14702 ,6213,6271,6169 ,0,0,0}, - {13060,13062,14703 ,6173,6181,6272 ,0,0,0}, {13102,13099,14696 ,6156,6163,6197 ,0,0,0}, - {14692,14704,14674 ,6138,6273,6170 ,0,0,0}, {14705,13103,13102 ,6201,6155,6156 ,0,0,0}, - {14705,13107,13105 ,6201,6134,6151 ,0,0,0}, {14706,14660,14707 ,6214,6208,6133 ,0,0,0}, - {14706,12720,12723 ,6214,6208,6117 ,0,0,0}, {14708,14709,14710 ,6190,6214,6199 ,0,0,0}, - {13097,13096,14697 ,6164,6158,6191 ,0,0,0}, {13091,14698,14697 ,6171,6269,6191 ,0,0,0}, - {14711,14712,14713 ,6274,6118,6183 ,0,0,0}, {14714,14715,14716 ,6149,6275,6214 ,0,0,0}, - {14717,14673,14704 ,6243,6248,6273 ,0,0,0}, {14717,14704,14718 ,6243,6273,6276 ,0,0,0}, - {14716,14606,14620 ,6214,6170,6184 ,0,0,0}, {14604,14618,14605 ,6122,6182,6169 ,0,0,0}, - {14616,14719,14614 ,6180,6244,6177 ,0,0,0}, {14615,14614,14618 ,6179,6177,6182 ,0,0,0}, - {14592,14720,13003 ,6158,6127,6249 ,0,0,0}, {12898,14719,14657 ,6239,6244,6240 ,0,0,0}, - {14616,14657,14719 ,6180,6240,6244 ,0,0,0}, {12898,14651,12895 ,6239,6180,6277 ,0,0,0}, - {14592,13003,13002 ,6158,6249,6189 ,0,0,0}, {12894,12893,14652 ,6124,6238,6179 ,0,0,0}, - {12893,12895,14651 ,6238,6277,6180 ,0,0,0}, {13021,13289,13297 ,6278,6279,6280 ,0,0,0}, - {13289,14640,13291 ,6279,6211,6190 ,0,0,0}, {14576,12894,14652 ,6122,6124,6179 ,0,0,0}, - {14721,14577,14650 ,6275,6123,6214 ,0,0,0}, {12894,14577,12891 ,6124,6123,6237 ,0,0,0}, - {13295,13018,13297 ,6281,6282,6280 ,0,0,0}, {13005,14720,14722 ,6283,6127,6174 ,0,0,0}, - {13003,14720,13005 ,6249,6127,6283 ,0,0,0}, {14593,14582,14594 ,6144,6138,6159 ,0,0,0}, - {14580,14631,14581 ,6136,6156,6137 ,0,0,0}, {14699,14578,14579 ,6137,6133,6135 ,0,0,0}, - {14578,14699,14630 ,6133,6137,6200 ,0,0,0}, {14578,12769,12845 ,6133,6134,6134 ,0,0,0}, - {13252,14635,13250 ,6144,6201,6209 ,0,0,0}, {12845,12769,12847 ,6134,6134,6196 ,0,0,0}, - {12987,12758,12986 ,6201,6200,6158 ,0,0,0}, {12751,12748,12978 ,6208,6187,6284 ,0,0,0}, - {12984,12986,12757 ,6125,6158,6204 ,0,0,0}, {14723,13247,13248 ,6191,6165,6179 ,0,0,0}, - {13245,14724,13222 ,6142,6172,6197 ,0,0,0}, {12969,13227,12971 ,6191,6186,6196 ,0,0,0}, - {13332,13227,12969 ,6192,6186,6191 ,0,0,0}, {13332,12968,13230 ,6192,6142,6285 ,0,0,0}, - {14725,12965,12962 ,6192,6228,6142 ,0,0,0}, {12791,12711,12713 ,6120,6122,6119 ,0,0,0}, - {12714,12789,12713 ,6171,6202,6119 ,0,0,0}, {14726,13242,13240 ,6150,6144,6150 ,0,0,0}, - {14586,12812,12810 ,6144,6150,6187 ,0,0,0}, {12818,12816,14624 ,6150,6188,6144 ,0,0,0}, - {12810,14727,14586 ,6187,6144,6144 ,0,0,0}, {12784,14622,14728 ,6165,6186,6286 ,0,0,0}, - {14727,12806,14729 ,6144,6192,6144 ,0,0,0}, {12804,12803,14729 ,6145,6145,6144 ,0,0,0}, - {14730,14731,14660 ,6143,6133,6208 ,0,0,0}, {14612,14732,12935 ,6120,6176,6146 ,0,0,0}, - {14655,12732,12735 ,6131,6137,6122 ,0,0,0}, {12738,13083,13082 ,6134,6135,6134 ,0,0,0}, - {14654,12925,12924 ,6196,6139,6201 ,0,0,0}, {14653,12931,12928 ,6197,6286,6165 ,0,0,0}, - {14663,12944,14733 ,6179,6202,6139 ,0,0,0}, {12947,14733,12946 ,6203,6139,6228 ,0,0,0}, - {13081,14666,14664 ,6137,6133,6200 ,0,0,0}, {14664,13078,13081 ,6200,6156,6137 ,0,0,0}, - {14734,14735,14736 ,6209,6207,6166 ,0,0,0}, {14737,13076,14665 ,6138,6137,6136 ,0,0,0}, - {14732,12937,12935 ,6176,6191,6146 ,0,0,0}, {14738,14739,14740 ,6186,6228,6287 ,0,0,0}, - {12931,14653,14612 ,6286,6197,6120 ,0,0,0}, {12931,14612,12934 ,6286,6120,6154 ,0,0,0}, - {12930,14653,12928 ,6165,6197,6165 ,0,0,0}, {12925,14654,12930 ,6139,6196,6165 ,0,0,0}, - {14645,12923,12941 ,6228,6203,6179 ,0,0,0}, {14645,14654,12924 ,6228,6196,6201 ,0,0,0}, - {12729,14660,12726 ,6200,6208,6204 ,0,0,0}, {14663,14645,12941 ,6179,6228,6179 ,0,0,0}, - {14741,14733,12947 ,6133,6139,6203 ,0,0,0}, {12946,14733,12944 ,6228,6139,6202 ,0,0,0}, - {12729,12731,14660 ,6200,6131,6208 ,0,0,0}, {14660,14742,12952 ,6208,6207,6242 ,0,0,0}, - {12737,13082,14743 ,6138,6134,6196 ,0,0,0}, {14660,12731,12732 ,6208,6131,6137 ,0,0,0}, - {14660,12723,12725 ,6208,6117,6126 ,0,0,0}, {12720,14706,14623 ,6208,6214,6119 ,0,0,0}, - {14660,14706,12723 ,6208,6214,6117 ,0,0,0}, {14588,12800,12771 ,6145,6120,6153 ,0,0,0}, - {14744,14745,12775 ,6201,6121,6288 ,0,0,0}, {12719,12720,14623 ,6187,6208,6119 ,0,0,0}, - {14746,12777,12779 ,6139,6192,6131 ,0,0,0}, {14613,12775,14745 ,6145,6288,6121 ,0,0,0}, - {12810,12809,14727 ,6187,6145,6144 ,0,0,0}, {12809,12806,14727 ,6145,6192,6144 ,0,0,0}, - {12803,12800,14588 ,6145,6120,6145 ,0,0,0}, {14745,14747,14613 ,6121,6289,6145 ,0,0,0}, - {14738,14747,14748 ,6186,6289,6191 ,0,0,0}, {14745,14748,14747 ,6121,6191,6289 ,0,0,0}, - {14738,14740,14732 ,6186,6287,6176 ,0,0,0}, {14738,14748,14739 ,6186,6191,6228 ,0,0,0}, - {12937,14732,14740 ,6191,6176,6287 ,0,0,0}, {14749,12740,12739 ,6202,6122,6116 ,0,0,0}, - {14750,14751,13220 ,6165,6191,6187 ,0,0,0}, {14752,13248,13250 ,6126,6179,6209 ,0,0,0}, - {14753,14628,13230 ,6154,6120,6285 ,0,0,0}, {12957,12746,14754 ,6201,6117,6120 ,0,0,0}, - {14755,14756,12959 ,6197,6201,6207 ,0,0,0}, {14575,14754,12745 ,6121,6120,6171 ,0,0,0}, - {12708,12796,12795 ,6116,6120,6201 ,0,0,0}, {14575,12745,12742 ,6121,6171,6119 ,0,0,0}, - {12748,12975,12978 ,6187,6202,6284 ,0,0,0}, {12978,12980,12751 ,6284,6140,6208 ,0,0,0}, - {12752,12980,12981 ,6117,6140,6127 ,0,0,0}, {12752,12981,12754 ,6117,6127,6126 ,0,0,0}, - {12754,12984,12757 ,6126,6125,6204 ,0,0,0}, {12758,12757,12986 ,6200,6204,6158 ,0,0,0}, - {12835,12837,12987 ,6133,6143,6201 ,0,0,0}, {12831,12827,14637 ,6118,6207,6119 ,0,0,0}, - {12833,14633,14634 ,6204,6133,6153 ,0,0,0}, {14636,12827,12828 ,6132,6207,6201 ,0,0,0}, - {14636,12828,14634 ,6132,6201,6153 ,0,0,0}, {14632,12831,14637 ,6203,6118,6119 ,0,0,0}, - {12826,14635,13252 ,6132,6201,6144 ,0,0,0}, {14752,13250,14635 ,6126,6209,6201 ,0,0,0}, - {14757,13247,14723 ,6242,6165,6191 ,0,0,0}, {14723,13248,14752 ,6191,6179,6126 ,0,0,0}, - {13245,14757,14758 ,6142,6242,6197 ,0,0,0}, {14757,13245,13247 ,6242,6142,6165 ,0,0,0}, - {14724,14750,13222 ,6172,6165,6197 ,0,0,0}, {14758,14724,13245 ,6197,6172,6142 ,0,0,0}, - {13220,14751,13221 ,6187,6191,6197 ,0,0,0}, {13222,14750,13220 ,6197,6165,6187 ,0,0,0}, - {12971,13221,14759 ,6196,6197,6202 ,0,0,0}, {13221,14751,14759 ,6197,6191,6202 ,0,0,0}, - {14619,14592,13002 ,6183,6158,6189 ,0,0,0}, {14722,14760,14761 ,6174,6118,6273 ,0,0,0}, - {12996,14577,12999 ,6290,6123,6236 ,0,0,0}, {14644,14627,12999 ,6214,6190,6236 ,0,0,0}, - {12996,12998,14577 ,6290,6198,6123 ,0,0,0}, {12888,14577,12883 ,6152,6123,6174 ,0,0,0}, - {13009,13012,12880 ,6124,6217,6291 ,0,0,0}, {12991,12879,14577 ,6235,6140,6123 ,0,0,0}, - {13009,12880,12879 ,6124,6291,6140 ,0,0,0}, {13009,12879,12991 ,6124,6140,6235 ,0,0,0}, - {13012,12874,12880 ,6217,6219,6291 ,0,0,0}, {13014,13294,12875 ,6218,6233,6229 ,0,0,0}, - {13015,13018,13295 ,6200,6282,6281 ,0,0,0}, {13015,13295,13294 ,6200,6281,6233 ,0,0,0}, - {13020,13021,13297 ,6269,6278,6280 ,0,0,0}, {13018,13020,13297 ,6282,6269,6280 ,0,0,0}, - {13289,13021,14762 ,6279,6278,6292 ,0,0,0}, {14762,14640,13289 ,6292,6211,6279 ,0,0,0}, - {14763,13291,14639 ,6293,6190,6157 ,0,0,0}, {13292,14763,14764 ,6147,6293,6266 ,0,0,0}, - {14763,13292,13291 ,6293,6147,6190 ,0,0,0}, {14585,14765,13285 ,6148,6273,6149 ,0,0,0}, - {14764,14585,13292 ,6266,6148,6147 ,0,0,0}, {14621,14766,13286 ,6185,6294,6168 ,0,0,0}, - {14765,14621,13285 ,6273,6185,6149 ,0,0,0}, {13277,13279,14602 ,6178,6167,6166 ,0,0,0}, - {14766,14603,13286 ,6294,6116,6168 ,0,0,0}, {14638,14617,13277 ,6210,6181,6178 ,0,0,0}, - {14642,14641,14760 ,6182,6212,6118 ,0,0,0}, {14638,14641,14617 ,6210,6212,6181 ,0,0,0}, - {14722,14761,13005 ,6174,6273,6283 ,0,0,0}, {14760,14641,14761 ,6118,6212,6273 ,0,0,0}, - {13027,14695,14703 ,6139,6199,6272 ,0,0,0}, {13058,14767,13087 ,6174,6295,6177 ,0,0,0}, - {14658,14717,14718 ,6171,6243,6276 ,0,0,0}, {13093,13091,14697 ,6165,6171,6191 ,0,0,0}, - {14767,13058,14768 ,6295,6174,6162 ,0,0,0}, {14703,13062,13027 ,6272,6181,6139 ,0,0,0}, - {13026,14695,13027 ,6167,6199,6139 ,0,0,0}, {13025,14672,13026 ,6247,6136,6167 ,0,0,0}, - {13043,14671,13025 ,6235,6190,6247 ,0,0,0}, {14670,14671,13046 ,6246,6190,6244 ,0,0,0}, - {14694,14670,13048 ,6267,6246,6245 ,0,0,0}, {13049,13052,14676 ,6268,6185,6249 ,0,0,0}, - {14676,14694,13049 ,6249,6267,6268 ,0,0,0}, {13055,14675,13054 ,6266,6152,6250 ,0,0,0}, - {13054,14676,13052 ,6250,6249,6185 ,0,0,0}, {13055,14693,14675 ,6266,6134,6152 ,0,0,0}, - {14673,14674,14704 ,6248,6170,6273 ,0,0,0}, {14661,14769,14620 ,6241,6296,6184 ,0,0,0}, - {14658,14718,14659 ,6171,6276,6152 ,0,0,0}, {14661,14662,14770 ,6241,6136,6200 ,0,0,0}, - {14770,14596,14595 ,6200,6161,6160 ,0,0,0}, {14595,14597,14659 ,6160,6162,6152 ,0,0,0}, - {14770,14662,14596 ,6200,6136,6161 ,0,0,0}, {14769,14714,14716 ,6296,6149,6214 ,0,0,0}, - {14716,14620,14769 ,6214,6184,6296 ,0,0,0}, {14701,14715,14714 ,6271,6275,6149 ,0,0,0}, - {14702,14709,14700 ,6169,6214,6213 ,0,0,0}, {14701,14700,14715 ,6271,6213,6275 ,0,0,0}, - {14710,14711,14708 ,6199,6274,6190 ,0,0,0}, {14702,14710,14709 ,6169,6199,6214 ,0,0,0}, - {14713,14712,14771 ,6183,6118,6144 ,0,0,0}, {14708,14711,14713 ,6190,6274,6183 ,0,0,0}, - {13039,14771,14712 ,6196,6144,6118 ,0,0,0}, {12714,12717,12788 ,6171,6117,6139 ,0,0,0}, - {14624,12820,12818 ,6144,6150,6150 ,0,0,0}, {14624,12815,14586 ,6144,6150,6144 ,0,0,0}, - {12785,12788,12717 ,6197,6139,6117 ,0,0,0}, {12719,14622,12785 ,6187,6186,6197 ,0,0,0}, - {14588,14729,12803 ,6145,6144,6145 ,0,0,0}, {12806,12804,14729 ,6192,6145,6144 ,0,0,0}, - {12773,12775,14613 ,6120,6288,6145 ,0,0,0}, {12771,12773,14589 ,6153,6120,6154 ,0,0,0}, - {12779,12784,14728 ,6131,6165,6286 ,0,0,0}, {12781,14772,14744 ,6144,6242,6201 ,0,0,0}, - {14744,12775,12781 ,6201,6288,6144 ,0,0,0}, {14728,14746,12779 ,6286,6139,6131 ,0,0,0}, - {12777,14746,14772 ,6192,6139,6242 ,0,0,0}, {12777,14772,12781 ,6192,6242,6144 ,0,0,0}, - {12784,12785,14622 ,6165,6197,6186 ,0,0,0}, {12717,12719,12785 ,6117,6187,6197 ,0,0,0}, - {12714,12788,12789 ,6171,6139,6202 ,0,0,0}, {12713,12789,12791 ,6119,6202,6120 ,0,0,0}, - {12796,12708,12794 ,6120,6116,6139 ,0,0,0}, {12711,12794,12708 ,6122,6139,6116 ,0,0,0}, - {12708,12795,12707 ,6116,6201,6117 ,0,0,0}, {12740,14749,14574 ,6122,6202,6120 ,0,0,0}, - {12707,12795,14573 ,6117,6201,6118 ,0,0,0}, {14749,12739,14573 ,6202,6116,6118 ,0,0,0}, - {14754,12746,12745 ,6120,6117,6171 ,0,0,0}, {14755,12958,14754 ,6197,6197,6120 ,0,0,0}, - {12957,14754,12958 ,6201,6120,6197 ,0,0,0}, {12965,14773,12968 ,6228,6145,6142 ,0,0,0}, - {12964,12959,14756 ,6143,6207,6201 ,0,0,0}, {12959,12958,14755 ,6207,6197,6197 ,0,0,0}, - {14725,12962,14583 ,6192,6142,6139 ,0,0,0}, {14583,12964,14756 ,6139,6143,6201 ,0,0,0}, - {12965,14725,14773 ,6228,6192,6145 ,0,0,0}, {14753,13230,12968 ,6154,6285,6142 ,0,0,0}, - {14753,12968,14773 ,6154,6142,6145 ,0,0,0}, {14628,13232,13230 ,6120,6154,6285 ,0,0,0}, - {13234,14629,14774 ,6144,6127,6187 ,0,0,0}, {14629,13234,13232 ,6127,6144,6154 ,0,0,0}, - {14774,14584,13234 ,6187,6145,6144 ,0,0,0}, {13235,14775,14626 ,6146,6145,6150 ,0,0,0}, - {14584,14775,13235 ,6145,6145,6146 ,0,0,0}, {13235,14626,13237 ,6146,6150,6144 ,0,0,0}, - {13240,13237,14776 ,6150,6144,6146 ,0,0,0}, {14625,14776,13237 ,6145,6146,6144 ,0,0,0}, - {13240,14777,14726 ,6150,6144,6150 ,0,0,0}, {13240,14776,14777 ,6150,6146,6144 ,0,0,0}, - {14778,13242,14779 ,6150,6144,6150 ,0,0,0}, {13242,14726,14779 ,6144,6150,6150 ,0,0,0}, - {12820,13242,14778 ,6150,6144,6150 ,0,0,0}, {14780,14781,14782 ,6131,6203,6207 ,0,0,0}, - {14737,14771,13075 ,6138,6144,6159 ,0,0,0}, {14705,13102,14696 ,6201,6156,6197 ,0,0,0}, - {14705,13105,13103 ,6201,6151,6155 ,0,0,0}, {14771,13039,13075 ,6144,6196,6159 ,0,0,0}, - {13060,14768,13058 ,6173,6162,6174 ,0,0,0}, {13087,14767,13090 ,6177,6295,6118 ,0,0,0}, - {13096,13093,14697 ,6158,6165,6191 ,0,0,0}, {14767,14698,13090 ,6295,6269,6118 ,0,0,0}, - {14768,13060,14703 ,6162,6173,6272 ,0,0,0}, {13062,13068,13032 ,6181,6182,6243 ,0,0,0}, - {13071,13072,13037 ,6127,6158,6297 ,0,0,0}, {13064,13030,13068 ,6118,6155,6182 ,0,0,0}, - {13032,13068,13030 ,6243,6182,6155 ,0,0,0}, {13064,13066,13033 ,6118,6174,6270 ,0,0,0}, - {13033,13030,13064 ,6270,6155,6118 ,0,0,0}, {13036,13071,13037 ,6270,6127,6297 ,0,0,0}, - {13039,13037,13072 ,6196,6297,6158 ,0,0,0}, {14737,13075,13076 ,6138,6159,6137 ,0,0,0}, - {14665,13076,13078 ,6136,6137,6156 ,0,0,0}, {14783,14784,14785 ,6205,6132,6116 ,0,0,0}, - {14784,14741,14786 ,6132,6133,6132 ,0,0,0}, {12732,14655,14660 ,6137,6131,6208 ,0,0,0}, - {14666,13083,12738 ,6133,6135,6134 ,0,0,0}, {12737,14743,14656 ,6138,6196,6132 ,0,0,0}, - {12737,12738,13082 ,6138,6134,6134 ,0,0,0}, {14656,12735,12737 ,6132,6122,6138 ,0,0,0}, - {14660,14655,14787 ,6208,6131,6157 ,0,0,0}, {14787,14730,14660 ,6157,6143,6208 ,0,0,0}, - {14786,12950,14788 ,6132,6172,6118 ,0,0,0}, {14789,14790,14660 ,6204,6201,6208 ,0,0,0}, - {14660,14791,14792 ,6208,6172,6214 ,0,0,0}, {14660,14790,14742 ,6208,6201,6207 ,0,0,0}, - {14791,14660,12953 ,6172,6208,6127 ,0,0,0}, {12952,14742,12950 ,6242,6207,6172 ,0,0,0}, - {14788,12950,14742 ,6118,6172,6207 ,0,0,0}, {14786,14741,12947 ,6132,6133,6203 ,0,0,0}, - {12947,12950,14786 ,6203,6172,6132 ,0,0,0}, {14784,14783,14741 ,6132,6205,6133 ,0,0,0}, - {14734,14785,14793 ,6209,6116,6121 ,0,0,0}, {14785,14734,14783 ,6116,6209,6205 ,0,0,0}, - {14793,14735,14734 ,6121,6207,6209 ,0,0,0}, {14736,14794,14667 ,6166,6209,6207 ,0,0,0}, - {14735,14794,14736 ,6207,6209,6166 ,0,0,0}, {14736,14667,14669 ,6166,6207,6208 ,0,0,0}, - {14782,14669,14795 ,6207,6208,6196 ,0,0,0}, {14668,14795,14669 ,6133,6196,6208 ,0,0,0}, - {14782,14796,14780 ,6207,6134,6131 ,0,0,0}, {14782,14795,14796 ,6207,6196,6134 ,0,0,0}, - {14797,14781,14798 ,6204,6203,6205 ,0,0,0}, {14781,14780,14798 ,6203,6131,6205 ,0,0,0}, - {13107,14781,14797 ,6134,6203,6204 ,0,0,0}, {14577,12888,12887 ,6123,6152,6167 ,0,0,0}, - {14577,14721,14643 ,6123,6275,6213 ,0,0,0}, {12980,12752,12751 ,6140,6117,6208 ,0,0,0}, - {14660,14731,14789 ,6208,6133,6204 ,0,0,0}, {14660,14792,14707 ,6208,6214,6133 ,0,0,0}, - {14799,13483,13482 ,6298,6299,6299 ,0,0,0}, {13488,14800,13489 ,6298,6298,6300 ,0,0,0}, - {14801,14802,13180 ,6301,6302,6302 ,0,0,0}, {13482,13479,14803 ,6299,6300,6303 ,0,0,0}, - {13177,14804,14805 ,6304,6304,6305 ,0,0,0}, {13473,14806,13476 ,6301,6299,6306 ,0,0,0}, - {13175,14807,14808 ,6305,6307,6308 ,0,0,0}, {14809,13470,13467 ,6298,6298,6309 ,0,0,0}, - {14810,13163,14811 ,6310,6311,6312 ,0,0,0}, {14812,14813,13169 ,6308,6313,6314 ,0,0,0}, - {13159,13583,14814 ,6315,6316,6317 ,0,0,0}, {14814,14815,13166 ,6317,6318,6319 ,0,0,0}, - {13154,13578,13580 ,6320,6321,6322 ,0,0,0}, {13538,13121,13536 ,6299,6303,6323 ,0,0,0}, - {13542,13544,13124 ,6324,6298,6306 ,0,0,0}, {13144,13568,13569 ,6325,6326,6327 ,0,0,0}, - {13545,13548,13132 ,6298,6328,6324 ,0,0,0}, {13560,13562,13141 ,6301,6329,6330 ,0,0,0}, - {13560,13215,13557 ,6301,6324,6331 ,0,0,0}, {13134,13554,13556 ,6332,6328,6333 ,0,0,0}, - {13554,13137,13551 ,6328,6334,6335 ,0,0,0}, {13563,13214,13562 ,6336,6298,6329 ,0,0,0}, - {13557,13142,13556 ,6331,6337,6333 ,0,0,0}, {13143,13566,13568 ,6338,6339,6326 ,0,0,0}, - {13563,13566,13146 ,6336,6339,6324 ,0,0,0}, {13548,13550,13128 ,6328,6328,6299 ,0,0,0}, - {13550,13551,13129 ,6328,6335,6340 ,0,0,0}, {13150,13572,13574 ,6341,6342,6343 ,0,0,0}, - {13152,13569,13572 ,6344,6327,6342 ,0,0,0}, {13574,13575,13148 ,6343,6345,6346 ,0,0,0}, - {13544,13545,13131 ,6298,6298,6347 ,0,0,0}, {13539,13542,13127 ,6348,6324,6316 ,0,0,0}, - {13156,13575,13578 ,6349,6345,6321 ,0,0,0}, {13155,13580,13581 ,6350,6322,6351 ,0,0,0}, - {13126,13539,13127 ,6324,6348,6316 ,0,0,0}, {13112,13533,13113 ,6300,6352,6353 ,0,0,0}, - {13161,13581,13583 ,6354,6351,6316 ,0,0,0}, {13109,13527,13110 ,6355,6299,6298 ,0,0,0}, - {13532,13118,13530 ,6299,6356,6357 ,0,0,0}, {14812,13171,14810 ,6308,6358,6310 ,0,0,0}, - {14815,14811,13162 ,6318,6312,6359 ,0,0,0}, {13465,13464,14816 ,6316,6306,6360 ,0,0,0}, - {14816,13464,13115 ,6360,6306,6299 ,0,0,0}, {14816,14817,13465 ,6360,6298,6316 ,0,0,0}, - {14813,14807,13167 ,6313,6307,6304 ,0,0,0}, {13174,14808,14818 ,6336,6308,6311 ,0,0,0}, - {13121,13538,13126 ,6303,6299,6324 ,0,0,0}, {14818,14804,13179 ,6311,6304,6314 ,0,0,0}, - {13473,13471,14819 ,6301,6300,6340 ,0,0,0}, {14820,13471,13470 ,6301,6300,6298 ,0,0,0}, - {14821,14801,13184 ,6301,6301,6333 ,0,0,0}, {13178,14805,14821 ,6361,6305,6301 ,0,0,0}, - {14822,13479,13477 ,6300,6300,6357 ,0,0,0}, {13476,14823,13477 ,6306,6355,6357 ,0,0,0}, - {14824,14825,13185 ,6353,6311,6301 ,0,0,0}, {13181,14802,14824 ,6362,6302,6353 ,0,0,0}, - {13485,13483,14826 ,6300,6299,6300 ,0,0,0}, {13186,14825,14827 ,6300,6311,6363 ,0,0,0}, - {13190,14827,14828 ,6301,6363,6353 ,0,0,0}, {13191,14828,14829 ,6300,6353,6328 ,0,0,0}, - {13485,14830,13488 ,6300,6300,6298 ,0,0,0}, {14831,13193,14829 ,6303,6352,6328 ,0,0,0}, - {14831,14832,13195 ,6303,6352,6340 ,0,0,0}, {14833,13491,13489 ,6299,6316,6300 ,0,0,0}, - {14834,13198,14832 ,6300,6340,6352 ,0,0,0}, {14835,13494,13491 ,6298,6364,6316 ,0,0,0}, - {13199,14834,14836 ,6316,6300,6306 ,0,0,0}, {14837,13495,13494 ,6364,6298,6364 ,0,0,0}, - {14836,14838,13201 ,6306,6340,6340 ,0,0,0}, {14839,13497,13495 ,6300,6300,6298 ,0,0,0}, - {14840,13204,14838 ,6323,6340,6340 ,0,0,0}, {14841,13500,13497 ,6298,6300,6300 ,0,0,0}, - {13206,14840,14842 ,6300,6323,6340 ,0,0,0}, {14843,13501,13500 ,6364,6300,6300 ,0,0,0}, - {14842,14844,13205 ,6340,6303,6303 ,0,0,0}, {14845,13503,13501 ,6300,6365,6300 ,0,0,0}, - {14846,13207,14844 ,6300,6300,6303 ,0,0,0}, {14847,13506,13503 ,6366,6300,6365 ,0,0,0}, - {13210,14846,14848 ,6300,6300,6316 ,0,0,0}, {14849,13507,13506 ,6367,6367,6300 ,0,0,0}, - {14848,14850,13211 ,6316,6300,6300 ,0,0,0}, {14851,13509,13507 ,6300,6300,6367 ,0,0,0}, - {14852,13211,14853 ,6301,6300,6300 ,0,0,0}, {14854,13512,13509 ,6368,6300,6300 ,0,0,0}, - {14855,14852,14856 ,6300,6301,6300 ,0,0,0}, {14857,13513,13512 ,6369,6367,6300 ,0,0,0}, - {14858,14855,14859 ,6316,6300,6300 ,0,0,0}, {13513,14860,13515 ,6367,6367,6300 ,0,0,0}, - {13518,13515,14861 ,6364,6300,6370 ,0,0,0}, {14862,13521,13519 ,6300,6316,6300 ,0,0,0}, - {14863,14858,14864 ,6300,6316,6316 ,0,0,0}, {14865,14866,14867 ,6300,6371,6300 ,0,0,0}, - {14868,14869,14870 ,6306,6300,6303 ,0,0,0}, {14871,14872,14873 ,6369,6300,6367 ,0,0,0}, - {14874,14875,14876 ,6301,6301,6300 ,0,0,0}, {14877,14878,14879 ,6300,6369,6367 ,0,0,0}, - {14880,14881,14882 ,6316,6316,6300 ,0,0,0}, {14883,14884,14885 ,6364,6300,6300 ,0,0,0}, - {14886,14877,14887 ,6364,6300,6316 ,0,0,0}, {14888,14889,14890 ,6300,6364,6316 ,0,0,0}, - {14885,14891,14890 ,6300,6316,6316 ,0,0,0}, {14892,14893,14894 ,6364,6372,6364 ,0,0,0}, - {14893,14886,14895 ,6372,6364,6300 ,0,0,0}, {14880,14889,14896 ,6316,6364,6367 ,0,0,0}, - {14897,14883,14892 ,6370,6364,6364 ,0,0,0}, {14873,14898,14899 ,6367,6367,6316 ,0,0,0}, - {14900,14878,14899 ,6316,6369,6316 ,0,0,0}, {14901,14874,14902 ,6306,6301,6303 ,0,0,0}, - {14902,14882,14903 ,6303,6300,6340 ,0,0,0}, {14904,14905,14867 ,6371,6300,6300 ,0,0,0}, - {14906,14871,14905 ,6300,6369,6300 ,0,0,0}, {14907,14868,14908 ,6300,6306,6300 ,0,0,0}, - {14907,14908,14876 ,6300,6300,6300 ,0,0,0}, {14909,14910,13521 ,6300,6300,6316 ,0,0,0}, - {14865,14910,14911 ,6300,6300,6316 ,0,0,0}, {14863,14912,14913 ,6300,6303,6301 ,0,0,0}, - {14869,14913,14914 ,6300,6301,6301 ,0,0,0}, {13519,13518,14915 ,6300,6364,6369 ,0,0,0}, - {13464,13463,13115 ,6306,6298,6299 ,0,0,0}, {13115,13463,13526 ,6299,6298,6340 ,0,0,0}, - {14817,14809,13467 ,6298,6298,6309 ,0,0,0}, {14817,13467,13465 ,6298,6309,6316 ,0,0,0}, - {14809,14820,13470 ,6298,6301,6298 ,0,0,0}, {14820,14819,13471 ,6301,6340,6300 ,0,0,0}, - {14819,14806,13473 ,6340,6299,6301 ,0,0,0}, {14806,14823,13476 ,6299,6355,6306 ,0,0,0}, - {14823,14822,13477 ,6355,6300,6357 ,0,0,0}, {14822,14803,13479 ,6300,6303,6300 ,0,0,0}, - {14803,14799,13482 ,6303,6298,6299 ,0,0,0}, {14799,14826,13483 ,6298,6300,6299 ,0,0,0}, - {14826,14830,13485 ,6300,6300,6300 ,0,0,0}, {14830,14800,13488 ,6300,6298,6298 ,0,0,0}, - {14800,14833,13489 ,6298,6299,6300 ,0,0,0}, {14833,14835,13491 ,6299,6298,6316 ,0,0,0}, - {14835,14837,13494 ,6298,6364,6364 ,0,0,0}, {14837,14839,13495 ,6364,6300,6298 ,0,0,0}, - {14839,14841,13497 ,6300,6298,6300 ,0,0,0}, {14841,14843,13500 ,6298,6364,6300 ,0,0,0}, - {14843,14845,13501 ,6364,6300,6300 ,0,0,0}, {14845,14847,13503 ,6300,6366,6365 ,0,0,0}, - {14847,14849,13506 ,6366,6367,6300 ,0,0,0}, {14849,14851,13507 ,6367,6300,6367 ,0,0,0}, - {14851,14854,13509 ,6300,6368,6300 ,0,0,0}, {14854,14857,13512 ,6368,6369,6300 ,0,0,0}, - {14857,14860,13513 ,6369,6367,6367 ,0,0,0}, {14860,14861,13515 ,6367,6370,6300 ,0,0,0}, - {14861,14915,13518 ,6370,6369,6364 ,0,0,0}, {14915,14862,13519 ,6369,6300,6300 ,0,0,0}, - {14862,14909,13521 ,6300,6300,6316 ,0,0,0}, {14909,14911,14910 ,6300,6316,6300 ,0,0,0}, - {14911,14866,14865 ,6316,6371,6300 ,0,0,0}, {14866,14904,14867 ,6371,6371,6300 ,0,0,0}, - {14904,14906,14905 ,6371,6300,6300 ,0,0,0}, {14906,14872,14871 ,6300,6300,6369 ,0,0,0}, - {14872,14898,14873 ,6300,6367,6367 ,0,0,0}, {14898,14900,14899 ,6367,6316,6316 ,0,0,0}, - {14900,14879,14878 ,6316,6367,6369 ,0,0,0}, {14879,14887,14877 ,6367,6316,6300 ,0,0,0}, - {14887,14895,14886 ,6316,6300,6364 ,0,0,0}, {14895,14894,14893 ,6300,6364,6372 ,0,0,0}, - {14894,14897,14892 ,6364,6370,6364 ,0,0,0}, {14897,14884,14883 ,6370,6300,6364 ,0,0,0}, - {14884,14891,14885 ,6300,6316,6300 ,0,0,0}, {14891,14888,14890 ,6316,6300,6316 ,0,0,0}, - {14888,14896,14889 ,6300,6367,6364 ,0,0,0}, {14896,14881,14880 ,6367,6316,6316 ,0,0,0}, - {14881,14903,14882 ,6316,6340,6300 ,0,0,0}, {14903,14901,14902 ,6340,6306,6303 ,0,0,0}, - {14901,14875,14874 ,6306,6301,6301 ,0,0,0}, {14875,14907,14876 ,6301,6300,6300 ,0,0,0}, - {14868,14870,14908 ,6306,6303,6300 ,0,0,0}, {14869,14914,14870 ,6300,6301,6303 ,0,0,0}, - {14913,14912,14914 ,6301,6303,6301 ,0,0,0}, {14863,14864,14912 ,6300,6316,6303 ,0,0,0}, - {14858,14859,14864 ,6316,6300,6316 ,0,0,0}, {14855,14856,14859 ,6300,6300,6300 ,0,0,0}, - {14852,14853,14856 ,6301,6300,6300 ,0,0,0}, {13211,14850,14853 ,6300,6300,6300 ,0,0,0}, - {13211,13210,14848 ,6300,6300,6316 ,0,0,0}, {13210,13207,14846 ,6300,6300,6300 ,0,0,0}, - {13207,13205,14844 ,6300,6303,6303 ,0,0,0}, {13205,13206,14842 ,6303,6300,6340 ,0,0,0}, - {13206,13204,14840 ,6300,6340,6323 ,0,0,0}, {13204,13201,14838 ,6340,6340,6340 ,0,0,0}, - {13201,13199,14836 ,6340,6316,6306 ,0,0,0}, {13199,13198,14834 ,6316,6340,6300 ,0,0,0}, - {13198,13195,14832 ,6340,6340,6352 ,0,0,0}, {13195,13193,14831 ,6340,6352,6303 ,0,0,0}, - {13193,13191,14829 ,6352,6300,6328 ,0,0,0}, {13191,13190,14828 ,6300,6301,6353 ,0,0,0}, - {13190,13186,14827 ,6301,6300,6363 ,0,0,0}, {13186,13185,14825 ,6300,6301,6311 ,0,0,0}, - {13185,13181,14824 ,6301,6362,6353 ,0,0,0}, {13181,13180,14802 ,6362,6302,6302 ,0,0,0}, - {13180,13184,14801 ,6302,6333,6301 ,0,0,0}, {13184,13178,14821 ,6333,6361,6301 ,0,0,0}, - {13178,13177,14805 ,6361,6304,6305 ,0,0,0}, {13177,13179,14804 ,6304,6314,6304 ,0,0,0}, - {13179,13174,14818 ,6314,6336,6311 ,0,0,0}, {13174,13175,14808 ,6336,6305,6308 ,0,0,0}, - {13175,13167,14807 ,6305,6304,6307 ,0,0,0}, {13167,13169,14813 ,6304,6314,6313 ,0,0,0}, - {13169,13171,14812 ,6314,6358,6308 ,0,0,0}, {13171,13163,14810 ,6358,6311,6310 ,0,0,0}, - {13163,13162,14811 ,6311,6359,6312 ,0,0,0}, {13162,13166,14815 ,6359,6319,6318 ,0,0,0}, - {13166,13159,14814 ,6319,6315,6317 ,0,0,0}, {13159,13161,13583 ,6315,6354,6316 ,0,0,0}, - {13161,13155,13581 ,6354,6350,6351 ,0,0,0}, {13155,13154,13580 ,6350,6320,6322 ,0,0,0}, - {13154,13156,13578 ,6320,6349,6321 ,0,0,0}, {13156,13148,13575 ,6349,6346,6345 ,0,0,0}, - {13148,13150,13574 ,6346,6341,6343 ,0,0,0}, {13150,13152,13572 ,6341,6344,6342 ,0,0,0}, - {13152,13144,13569 ,6344,6325,6327 ,0,0,0}, {13144,13143,13568 ,6325,6338,6326 ,0,0,0}, - {13143,13146,13566 ,6338,6324,6339 ,0,0,0}, {13146,13214,13563 ,6324,6298,6336 ,0,0,0}, - {13214,13141,13562 ,6298,6330,6329 ,0,0,0}, {13141,13215,13560 ,6330,6324,6301 ,0,0,0}, - {13215,13142,13557 ,6324,6337,6331 ,0,0,0}, {13142,13134,13556 ,6337,6332,6333 ,0,0,0}, - {13134,13137,13554 ,6332,6334,6328 ,0,0,0}, {13137,13129,13551 ,6334,6340,6335 ,0,0,0}, - {13129,13128,13550 ,6340,6299,6328 ,0,0,0}, {13128,13132,13548 ,6299,6324,6328 ,0,0,0}, - {13132,13131,13545 ,6324,6347,6298 ,0,0,0}, {13131,13124,13544 ,6347,6306,6298 ,0,0,0}, - {13124,13127,13542 ,6306,6316,6324 ,0,0,0}, {13126,13538,13539 ,6324,6299,6348 ,0,0,0}, - {13113,13536,13121 ,6353,6323,6303 ,0,0,0}, {13112,13532,13533 ,6300,6299,6352 ,0,0,0}, - {13113,13533,13536 ,6353,6352,6323 ,0,0,0}, {13118,13110,13530 ,6356,6298,6357 ,0,0,0}, - {13112,13118,13532 ,6300,6356,6299 ,0,0,0}, {13527,13109,13526 ,6299,6355,6340 ,0,0,0}, - {13530,13110,13527 ,6357,6298,6299 ,0,0,0}, {13115,13526,13109 ,6299,6340,6355 ,0,0,0}, - {14910,13523,13521 ,6373,6374,6375 ,0,0,0}, {14916,14917,14905 ,6376,6377,6378 ,0,0,0}, - {14867,14918,14865 ,6379,6380,6381 ,0,0,0}, {14899,14878,14919 ,6382,6383,6384 ,0,0,0}, - {14871,14873,14920 ,6385,6386,6387 ,0,0,0}, {14921,14922,14893 ,6388,6389,6390 ,0,0,0}, - {14923,14924,14877 ,6391,6392,6393 ,0,0,0}, {14885,14890,14925 ,6394,6395,6396 ,0,0,0}, - {14892,14883,14926 ,6397,6398,6399 ,0,0,0}, {14927,14928,14882 ,6400,6401,6402 ,0,0,0}, - {14929,14930,14889 ,6403,6404,6405 ,0,0,0}, {14876,14908,14931 ,6406,6407,6408 ,0,0,0}, - {14902,14874,14932 ,6409,6410,6411 ,0,0,0}, {14933,14934,14912 ,6412,6413,6414 ,0,0,0}, - {14935,14936,14870 ,6415,6416,6417 ,0,0,0}, {14937,14856,14938 ,6418,6419,6420 ,0,0,0}, - {14864,14859,14939 ,6421,6422,6423 ,0,0,0}, {14848,14940,14941 ,6424,6425,6426 ,0,0,0}, - {14850,14942,14853 ,6427,6428,6429 ,0,0,0}, {14943,14944,14842 ,6430,6431,6432 ,0,0,0}, - {14945,14846,14844 ,6433,6434,6435 ,0,0,0}, {14946,14838,14836 ,6436,6437,6438 ,0,0,0}, - {14840,14838,14947 ,6439,6437,6440 ,0,0,0}, {14948,14832,14949 ,6441,6442,6443 ,0,0,0}, - {14834,14948,14950 ,6444,6441,6445 ,0,0,0}, {14829,14828,14951 ,6446,6447,6448 ,0,0,0}, - {14831,14952,14949 ,6449,6450,6443 ,0,0,0}, {14827,14825,14953 ,6451,6452,6453 ,0,0,0}, - {14827,14954,14828 ,6451,6454,6447 ,0,0,0}, {14824,14802,14955 ,6455,6456,6457 ,0,0,0}, - {14824,14956,14825 ,6455,6458,6452 ,0,0,0}, {14957,14802,14801 ,6459,6456,6460 ,0,0,0}, - {14802,14957,14955 ,6456,6459,6457 ,0,0,0}, {14821,14958,14801 ,6461,6462,6460 ,0,0,0}, - {14957,14801,14958 ,6459,6460,6462 ,0,0,0}, {14821,14805,14959 ,6461,6463,6464 ,0,0,0}, - {14959,14958,14821 ,6464,6462,6461 ,0,0,0}, {14960,14805,14804 ,6465,6463,6466 ,0,0,0}, - {14805,14960,14959 ,6463,6465,6464 ,0,0,0}, {14818,14961,14804 ,6467,6468,6466 ,0,0,0}, - {14960,14804,14961 ,6465,6466,6468 ,0,0,0}, {14818,14808,14962 ,6467,6469,6470 ,0,0,0}, - {14962,14961,14818 ,6470,6468,6467 ,0,0,0}, {14963,14808,14807 ,6471,6469,6472 ,0,0,0}, - {14808,14963,14962 ,6469,6471,6470 ,0,0,0}, {14813,14964,14807 ,6473,6474,6472 ,0,0,0}, - {14963,14807,14964 ,6471,6472,6474 ,0,0,0}, {14813,14812,14965 ,6473,6475,6476 ,0,0,0}, - {14965,14964,14813 ,6476,6474,6473 ,0,0,0}, {14966,14812,14810 ,6477,6475,6478 ,0,0,0}, - {14812,14966,14965 ,6475,6477,6476 ,0,0,0}, {14811,14967,14810 ,6479,6480,6478 ,0,0,0}, - {14966,14810,14967 ,6477,6478,6480 ,0,0,0}, {14811,14815,14968 ,6479,6481,6482 ,0,0,0}, - {14968,14967,14811 ,6482,6480,6479 ,0,0,0}, {14969,14815,14814 ,6483,6481,6484 ,0,0,0}, - {14815,14969,14968 ,6481,6483,6482 ,0,0,0}, {13583,14970,14814 ,6485,6486,6484 ,0,0,0}, - {14969,14814,14970 ,6483,6484,6486 ,0,0,0}, {13582,14970,13583 ,6487,6486,6485 ,0,0,0}, - {14956,14953,14825 ,6458,6453,6452 ,0,0,0}, {14824,14955,14956 ,6455,6457,6458 ,0,0,0}, - {14954,14951,14828 ,6454,6448,6447 ,0,0,0}, {14827,14953,14954 ,6451,6453,6454 ,0,0,0}, - {14831,14829,14952 ,6449,6446,6450 ,0,0,0}, {14829,14951,14952 ,6446,6448,6450 ,0,0,0}, - {14832,14948,14834 ,6442,6441,6444 ,0,0,0}, {14832,14831,14949 ,6442,6449,6443 ,0,0,0}, - {14946,14836,14950 ,6436,6438,6445 ,0,0,0}, {14836,14834,14950 ,6438,6444,6445 ,0,0,0}, - {14840,14947,14943 ,6439,6440,6430 ,0,0,0}, {14947,14838,14946 ,6440,6437,6436 ,0,0,0}, - {14944,14844,14842 ,6431,6435,6432 ,0,0,0}, {14943,14842,14840 ,6430,6432,6439 ,0,0,0}, - {14945,14940,14846 ,6433,6425,6434 ,0,0,0}, {14944,14945,14844 ,6431,6433,6435 ,0,0,0}, - {14848,14941,14850 ,6424,6426,6427 ,0,0,0}, {14846,14940,14848 ,6434,6425,6424 ,0,0,0}, - {14853,14942,14938 ,6429,6428,6420 ,0,0,0}, {14850,14941,14942 ,6427,6426,6428 ,0,0,0}, - {14859,14856,14937 ,6422,6419,6418 ,0,0,0}, {14856,14853,14938 ,6419,6429,6420 ,0,0,0}, - {14933,14864,14939 ,6412,6421,6423 ,0,0,0}, {14939,14859,14937 ,6423,6422,6418 ,0,0,0}, - {14934,14914,14912 ,6413,6488,6414 ,0,0,0}, {14933,14912,14864 ,6412,6414,6421 ,0,0,0}, - {14870,14914,14935 ,6417,6488,6415 ,0,0,0}, {14934,14935,14914 ,6413,6415,6488 ,0,0,0}, - {14908,14936,14931 ,6407,6416,6408 ,0,0,0}, {14870,14936,14908 ,6417,6416,6407 ,0,0,0}, - {14874,14876,14971 ,6410,6406,6489 ,0,0,0}, {14876,14931,14971 ,6406,6408,6489 ,0,0,0}, - {14927,14902,14932 ,6400,6409,6411 ,0,0,0}, {14932,14874,14971 ,6411,6410,6489 ,0,0,0}, - {14928,14880,14882 ,6401,6490,6402 ,0,0,0}, {14927,14882,14902 ,6400,6402,6409 ,0,0,0}, - {14889,14880,14929 ,6405,6490,6403 ,0,0,0}, {14928,14929,14880 ,6401,6403,6490 ,0,0,0}, - {14890,14930,14925 ,6395,6404,6396 ,0,0,0}, {14889,14930,14890 ,6405,6404,6395 ,0,0,0}, - {14883,14885,14972 ,6398,6394,6491 ,0,0,0}, {14885,14925,14972 ,6394,6396,6491 ,0,0,0}, - {14921,14892,14926 ,6388,6397,6399 ,0,0,0}, {14926,14883,14972 ,6399,6398,6491 ,0,0,0}, - {14922,14886,14893 ,6389,6492,6390 ,0,0,0}, {14921,14893,14892 ,6388,6390,6397 ,0,0,0}, - {14877,14886,14923 ,6393,6492,6391 ,0,0,0}, {14922,14923,14886 ,6389,6391,6492 ,0,0,0}, - {14878,14924,14919 ,6383,6392,6384 ,0,0,0}, {14877,14924,14878 ,6393,6392,6383 ,0,0,0}, - {14873,14899,14973 ,6386,6382,6493 ,0,0,0}, {14899,14919,14973 ,6382,6384,6493 ,0,0,0}, - {14916,14871,14920 ,6376,6385,6387 ,0,0,0}, {14920,14873,14973 ,6387,6386,6493 ,0,0,0}, - {14917,14867,14905 ,6377,6379,6378 ,0,0,0}, {14916,14905,14871 ,6376,6378,6385 ,0,0,0}, - {14918,14974,14865 ,6380,6494,6381 ,0,0,0}, {14917,14918,14867 ,6377,6380,6379 ,0,0,0}, - {13523,14910,14974 ,6374,6373,6494 ,0,0,0}, {14865,14974,14910 ,6381,6494,6373 ,0,0,0}, - {13534,13420,13535 ,6495,6495,6496 ,0,0,0}, {13541,13540,13426 ,6497,6496,6496 ,0,0,0}, - {14929,14928,14975 ,6498,6499,6500 ,0,0,0}, {13417,13534,13531 ,6501,6495,6501 ,0,0,0}, - {14926,14972,14976 ,6502,6503,6503 ,0,0,0}, {13528,13411,13414 ,6496,6504,6501 ,0,0,0}, - {14977,14919,14924 ,6498,6505,6506 ,0,0,0}, {13353,13462,13466 ,6507,6495,6495 ,0,0,0}, - {13363,13361,13475 ,6508,6509,6504 ,0,0,0}, {14978,14917,14916 ,6510,6511,6512 ,0,0,0}, - {13522,13405,13403 ,6513,6500,6514 ,0,0,0}, {13523,13405,13522 ,6515,6500,6513 ,0,0,0}, - {13517,13520,13404 ,6516,6517,6518 ,0,0,0}, {13484,13486,13369 ,6519,6520,6497 ,0,0,0}, - {13490,13492,13375 ,6521,6522,6523 ,0,0,0}, {13514,13397,13396 ,6524,6525,6526 ,0,0,0}, - {13493,13379,13378 ,6527,6500,6498 ,0,0,0}, {13510,13391,13508 ,6528,6522,6529 ,0,0,0}, - {13508,13390,13505 ,6529,6530,6531 ,0,0,0}, {13385,13502,13387 ,6532,6533,6502 ,0,0,0}, - {13499,13385,13384 ,6534,6532,6495 ,0,0,0}, {13511,13393,13510 ,6535,6502,6528 ,0,0,0}, - {13504,13505,13387 ,6533,6531,6502 ,0,0,0}, {13514,13396,13511 ,6524,6526,6535 ,0,0,0}, - {13393,13511,13396 ,6502,6535,6526 ,0,0,0}, {13496,13381,13379 ,6503,6514,6500 ,0,0,0}, - {13384,13381,13498 ,6495,6514,6530 ,0,0,0}, {13402,13397,13516 ,6536,6525,6537 ,0,0,0}, - {13397,13514,13516 ,6525,6524,6537 ,0,0,0}, {13402,13516,13517 ,6536,6537,6516 ,0,0,0}, - {13493,13378,13492 ,6527,6498,6522 ,0,0,0}, {13490,13373,13487 ,6521,6501,6509 ,0,0,0}, - {13517,13404,13402 ,6516,6518,6536 ,0,0,0}, {13404,13520,13403 ,6518,6517,6514 ,0,0,0}, - {13487,13372,13486 ,6509,6500,6520 ,0,0,0}, {13367,13481,13369 ,6508,6509,6497 ,0,0,0}, - {13522,13403,13520 ,6513,6514,6517 ,0,0,0}, {13363,13478,13366 ,6508,6508,6495 ,0,0,0}, - {13366,13480,13367 ,6495,6530,6508 ,0,0,0}, {14979,14918,14980 ,6538,6539,6540 ,0,0,0}, - {14974,13405,13523 ,6541,6500,6515 ,0,0,0}, {13474,13360,13472 ,6495,6496,6542 ,0,0,0}, - {13361,13360,13474 ,6509,6496,6495 ,0,0,0}, {13468,13469,13355 ,6542,6504,6507 ,0,0,0}, - {14973,14919,14981 ,6543,6505,6500 ,0,0,0}, {14982,14923,14983 ,6503,6533,6500 ,0,0,0}, - {13466,13468,13354 ,6495,6542,6495 ,0,0,0}, {14984,14983,14921 ,6508,6500,6538 ,0,0,0}, - {13411,13525,13410 ,6504,6542,6501 ,0,0,0}, {13353,13410,13524 ,6507,6501,6495 ,0,0,0}, - {14930,14985,14986 ,6527,6530,6498 ,0,0,0}, {14972,14925,14987 ,6503,6527,6499 ,0,0,0}, - {13417,13531,13416 ,6501,6501,6544 ,0,0,0}, {13529,13414,13416 ,6504,6501,6544 ,0,0,0}, - {14932,14988,14989 ,6508,6530,6544 ,0,0,0}, {14990,14927,14989 ,6498,6500,6544 ,0,0,0}, - {13422,13537,13535 ,6495,6495,6496 ,0,0,0}, {14971,14931,14988 ,6523,6504,6530 ,0,0,0}, - {14936,14991,14931 ,6500,6504,6504 ,0,0,0}, {14936,14935,14992 ,6500,6522,6500 ,0,0,0}, - {13540,13537,13423 ,6496,6495,6496 ,0,0,0}, {14993,14935,14934 ,6515,6522,6504 ,0,0,0}, - {14933,14994,14934 ,6508,6500,6504 ,0,0,0}, {13543,13426,13428 ,6495,6496,6508 ,0,0,0}, - {14994,14933,14995 ,6500,6508,6498 ,0,0,0}, {13546,13428,13429 ,6504,6508,6507 ,0,0,0}, - {14996,14995,14939 ,6515,6498,6545 ,0,0,0}, {13547,13429,13432 ,6507,6507,6495 ,0,0,0}, - {14997,14996,14937 ,6498,6515,6504 ,0,0,0}, {13549,13432,13434 ,6504,6495,6495 ,0,0,0}, - {14998,14997,14938 ,6504,6498,6504 ,0,0,0}, {13434,13435,13552 ,6495,6504,6504 ,0,0,0}, - {14999,14998,14942 ,6504,6504,6498 ,0,0,0}, {13553,13552,13435 ,6504,6504,6504 ,0,0,0}, - {14999,14941,14940 ,6504,6504,6504 ,0,0,0}, {13555,13553,13438 ,6546,6504,6504 ,0,0,0}, - {15000,14940,14945 ,6508,6504,6504 ,0,0,0}, {13558,13555,13440 ,6507,6546,6504 ,0,0,0}, - {15001,14945,14944 ,6508,6504,6508 ,0,0,0}, {13559,13558,13441 ,6547,6507,6548 ,0,0,0}, - {15002,14944,14943 ,6498,6508,6498 ,0,0,0}, {13561,13559,13444 ,6546,6547,6548 ,0,0,0}, - {15003,14943,14947 ,6504,6498,6498 ,0,0,0}, {13446,13564,13444 ,6549,6547,6548 ,0,0,0}, - {14947,15004,15003 ,6498,6504,6504 ,0,0,0}, {13565,13446,13447 ,6549,6549,6550 ,0,0,0}, - {15004,14946,15005 ,6504,6504,6498 ,0,0,0}, {13447,13450,13567 ,6550,6549,6504 ,0,0,0}, - {13570,13450,13452 ,6549,6549,6545 ,0,0,0}, {13573,13571,13454 ,6549,6504,6504 ,0,0,0}, - {15005,14950,15006 ,6498,6504,6504 ,0,0,0}, {13579,13577,13459 ,6551,6504,6515 ,0,0,0}, - {14951,15007,14952 ,6504,6508,6515 ,0,0,0}, {15008,14969,15009 ,6504,6545,6515 ,0,0,0}, - {15010,14953,14956 ,6508,6552,6504 ,0,0,0}, {14966,15011,15012 ,6553,6504,6554 ,0,0,0}, - {15013,15014,14957 ,6555,6504,6515 ,0,0,0}, {14961,14962,15015 ,6504,6504,6504 ,0,0,0}, - {14966,15012,14965 ,6553,6554,6504 ,0,0,0}, {14959,15016,15017 ,6504,6504,6515 ,0,0,0}, - {15015,15016,14960 ,6504,6504,6515 ,0,0,0}, {14964,15018,14963 ,6548,6504,6504 ,0,0,0}, - {14964,14965,15019 ,6548,6504,6549 ,0,0,0}, {15013,14958,15017 ,6555,6504,6515 ,0,0,0}, - {15020,14962,14963 ,6504,6504,6504 ,0,0,0}, {15021,14968,15008 ,6504,6548,6504 ,0,0,0}, - {15011,14967,15021 ,6504,6548,6504 ,0,0,0}, {14955,15022,14956 ,6504,6544,6504 ,0,0,0}, - {14955,15014,15022 ,6504,6504,6544 ,0,0,0}, {13582,13579,13461 ,6515,6551,6554 ,0,0,0}, - {13461,15009,14970 ,6554,6515,6545 ,0,0,0}, {14954,15023,14951 ,6515,6504,6504 ,0,0,0}, - {15024,14954,14953 ,6508,6515,6552 ,0,0,0}, {13576,13573,13453 ,6504,6549,6549 ,0,0,0}, - {13456,13577,13576 ,6545,6504,6504 ,0,0,0}, {14948,15025,15006 ,6508,6498,6504 ,0,0,0}, - {15007,15025,14949 ,6508,6498,6498 ,0,0,0}, {13571,13452,13454 ,6504,6545,6504 ,0,0,0}, - {13469,13472,13357 ,6504,6542,6504 ,0,0,0}, {15026,14920,15027 ,6556,6557,6558 ,0,0,0}, - {14975,14928,14990 ,6500,6499,6498 ,0,0,0}, {13391,13510,13393 ,6522,6528,6502 ,0,0,0}, - {13390,13508,13391 ,6530,6529,6522 ,0,0,0}, {13387,13505,13390 ,6502,6531,6530 ,0,0,0}, - {13387,13502,13504 ,6502,6533,6533 ,0,0,0}, {13385,13499,13502 ,6532,6534,6533 ,0,0,0}, - {13384,13498,13499 ,6495,6530,6534 ,0,0,0}, {13381,13496,13498 ,6514,6503,6530 ,0,0,0}, - {13379,13493,13496 ,6500,6527,6503 ,0,0,0}, {13375,13492,13378 ,6523,6522,6498 ,0,0,0}, - {13373,13490,13375 ,6501,6521,6523 ,0,0,0}, {13372,13487,13373 ,6500,6509,6501 ,0,0,0}, - {13369,13486,13372 ,6497,6520,6500 ,0,0,0}, {13369,13481,13484 ,6497,6509,6519 ,0,0,0}, - {13367,13480,13481 ,6508,6530,6509 ,0,0,0}, {13366,13478,13480 ,6495,6508,6530 ,0,0,0}, - {13363,13475,13478 ,6508,6504,6508 ,0,0,0}, {13361,13474,13475 ,6509,6495,6504 ,0,0,0}, - {13357,13472,13360 ,6504,6542,6496 ,0,0,0}, {13355,13469,13357 ,6507,6504,6504 ,0,0,0}, - {13354,13468,13355 ,6495,6542,6507 ,0,0,0}, {13353,13466,13354 ,6507,6495,6495 ,0,0,0}, - {13353,13524,13462 ,6507,6495,6495 ,0,0,0}, {13410,13525,13524 ,6501,6542,6495 ,0,0,0}, - {13411,13528,13525 ,6504,6496,6542 ,0,0,0}, {13414,13529,13528 ,6501,6504,6496 ,0,0,0}, - {13416,13531,13529 ,6544,6501,6504 ,0,0,0}, {13420,13534,13417 ,6495,6495,6501 ,0,0,0}, - {13422,13535,13420 ,6495,6496,6495 ,0,0,0}, {13423,13537,13422 ,6496,6495,6495 ,0,0,0}, - {13426,13540,13423 ,6496,6496,6496 ,0,0,0}, {13426,13543,13541 ,6496,6495,6497 ,0,0,0}, - {13428,13546,13543 ,6508,6504,6495 ,0,0,0}, {13429,13547,13546 ,6507,6507,6504 ,0,0,0}, - {13432,13549,13547 ,6495,6504,6507 ,0,0,0}, {13434,13552,13549 ,6495,6504,6504 ,0,0,0}, - {13438,13553,13435 ,6504,6504,6504 ,0,0,0}, {13440,13555,13438 ,6504,6546,6504 ,0,0,0}, - {13441,13558,13440 ,6548,6507,6504 ,0,0,0}, {13444,13559,13441 ,6548,6547,6548 ,0,0,0}, - {13444,13564,13561 ,6548,6547,6546 ,0,0,0}, {13446,13565,13564 ,6549,6549,6547 ,0,0,0}, - {13447,13567,13565 ,6550,6504,6549 ,0,0,0}, {13450,13570,13567 ,6549,6549,6504 ,0,0,0}, - {13452,13571,13570 ,6545,6504,6549 ,0,0,0}, {13453,13573,13454 ,6549,6549,6504 ,0,0,0}, - {13456,13576,13453 ,6545,6504,6549 ,0,0,0}, {13459,13577,13456 ,6515,6504,6545 ,0,0,0}, - {13461,13579,13459 ,6554,6551,6515 ,0,0,0}, {13461,14970,13582 ,6554,6545,6515 ,0,0,0}, - {15009,14969,14970 ,6515,6545,6545 ,0,0,0}, {15008,14968,14969 ,6504,6548,6545 ,0,0,0}, - {15021,14967,14968 ,6504,6548,6548 ,0,0,0}, {15011,14966,14967 ,6504,6553,6548 ,0,0,0}, - {15019,14965,15012 ,6549,6504,6554 ,0,0,0}, {15018,14964,15019 ,6504,6548,6549 ,0,0,0}, - {15020,14963,15018 ,6504,6504,6504 ,0,0,0}, {15015,14962,15020 ,6504,6504,6504 ,0,0,0}, - {15015,14960,14961 ,6504,6515,6504 ,0,0,0}, {15016,14959,14960 ,6504,6504,6515 ,0,0,0}, - {15017,14958,14959 ,6515,6504,6504 ,0,0,0}, {15013,14957,14958 ,6555,6515,6504 ,0,0,0}, - {15014,14955,14957 ,6504,6504,6515 ,0,0,0}, {15010,14956,15022 ,6508,6504,6544 ,0,0,0}, - {15024,14953,15010 ,6508,6552,6508 ,0,0,0}, {15023,14954,15024 ,6504,6515,6508 ,0,0,0}, - {15007,14951,15023 ,6508,6504,6504 ,0,0,0}, {15007,14949,14952 ,6508,6498,6515 ,0,0,0}, - {15025,14948,14949 ,6498,6508,6498 ,0,0,0}, {15006,14950,14948 ,6504,6504,6508 ,0,0,0}, - {15005,14946,14950 ,6498,6504,6504 ,0,0,0}, {15004,14947,14946 ,6504,6498,6504 ,0,0,0}, - {15002,14943,15003 ,6498,6498,6504 ,0,0,0}, {15001,14944,15002 ,6508,6508,6498 ,0,0,0}, - {15000,14945,15001 ,6508,6504,6508 ,0,0,0}, {14999,14940,15000 ,6504,6504,6508 ,0,0,0}, - {14999,14942,14941 ,6504,6498,6504 ,0,0,0}, {14998,14938,14942 ,6504,6504,6498 ,0,0,0}, - {14997,14937,14938 ,6498,6504,6504 ,0,0,0}, {14996,14939,14937 ,6515,6545,6504 ,0,0,0}, - {14995,14933,14939 ,6498,6508,6545 ,0,0,0}, {14993,14934,14994 ,6515,6504,6500 ,0,0,0}, - {14992,14935,14993 ,6500,6522,6515 ,0,0,0}, {14991,14936,14992 ,6504,6500,6500 ,0,0,0}, - {14988,14931,14991 ,6530,6504,6504 ,0,0,0}, {14988,14932,14971 ,6530,6508,6523 ,0,0,0}, - {14989,14927,14932 ,6544,6500,6508 ,0,0,0}, {14990,14928,14927 ,6498,6499,6500 ,0,0,0}, - {14985,14929,14975 ,6530,6498,6500 ,0,0,0}, {14986,14925,14930 ,6498,6527,6527 ,0,0,0}, - {14985,14930,14929 ,6530,6527,6498 ,0,0,0}, {14987,14976,14972 ,6499,6503,6503 ,0,0,0}, - {14986,14987,14925 ,6498,6499,6527 ,0,0,0}, {14976,14984,14926 ,6503,6508,6502 ,0,0,0}, - {14921,14983,14922 ,6538,6500,6559 ,0,0,0}, {14926,14984,14921 ,6502,6508,6538 ,0,0,0}, - {14924,14923,14982 ,6506,6533,6503 ,0,0,0}, {14923,14922,14983 ,6533,6559,6500 ,0,0,0}, - {14981,14919,14977 ,6500,6505,6498 ,0,0,0}, {14977,14924,14982 ,6498,6506,6503 ,0,0,0}, - {15027,14973,14981 ,6558,6543,6500 ,0,0,0}, {15026,14916,14920 ,6556,6512,6557 ,0,0,0}, - {15027,14920,14973 ,6558,6557,6543 ,0,0,0}, {14978,14980,14917 ,6510,6540,6511 ,0,0,0}, - {15026,14978,14916 ,6556,6510,6512 ,0,0,0}, {14918,14979,14974 ,6539,6538,6541 ,0,0,0}, - {14917,14980,14918 ,6511,6540,6539 ,0,0,0}, {13405,14974,14979 ,6500,6541,6538 ,0,0,0}, - {14979,13407,13405 ,6560,6561,6562 ,0,0,0}, {15026,15028,14978 ,6563,6564,6565 ,0,0,0}, - {14980,15029,15030 ,6566,6567,6568 ,0,0,0}, {14977,14982,15031 ,6569,6570,6571 ,0,0,0}, - {15027,14981,15032 ,6572,6573,6574 ,0,0,0}, {15033,15034,14976 ,6575,6576,6577 ,0,0,0}, - {15035,15036,14983 ,6578,6579,6580 ,0,0,0}, {14985,14975,15037 ,6581,6582,6583 ,0,0,0}, - {14987,14986,15038 ,6584,6585,6586 ,0,0,0}, {15039,15040,14988 ,6587,6588,6589 ,0,0,0}, - {15041,14990,14989 ,6590,6591,6592 ,0,0,0}, {14993,14994,15042 ,6593,6594,6595 ,0,0,0}, - {14992,15043,15044 ,6596,6597,6598 ,0,0,0}, {15045,15046,14997 ,6599,6600,6601 ,0,0,0}, - {15047,15048,14995 ,6602,6603,6604 ,0,0,0}, {15049,15000,15050 ,6605,6606,6607 ,0,0,0}, - {14998,14999,15051 ,6608,6609,6610 ,0,0,0}, {15002,15003,15052 ,6611,6612,6613 ,0,0,0}, - {15002,15053,15001 ,6611,6614,6615 ,0,0,0}, {15006,15054,15005 ,6616,6617,6618 ,0,0,0}, - {15055,15056,15004 ,6619,6620,6621 ,0,0,0}, {15007,15057,15025 ,6622,6623,6624 ,0,0,0}, - {15058,15006,15025 ,6625,6616,6624 ,0,0,0}, {15059,15060,15024 ,6626,6627,6628 ,0,0,0}, - {15061,15023,15060 ,6629,6630,6627 ,0,0,0}, {15062,15063,15022 ,6631,6632,6633 ,0,0,0}, - {15059,15010,15063 ,6626,6634,6632 ,0,0,0}, {15013,15064,15014 ,6635,6636,6637 ,0,0,0}, - {15062,15014,15064 ,6631,6637,6636 ,0,0,0}, {15013,15017,15065 ,6635,6638,6639 ,0,0,0}, - {15065,15064,15013 ,6639,6636,6635 ,0,0,0}, {15066,15017,15016 ,6640,6638,6641 ,0,0,0}, - {15017,15066,15065 ,6638,6640,6639 ,0,0,0}, {15015,15067,15016 ,6642,6643,6641 ,0,0,0}, - {15066,15016,15067 ,6640,6641,6643 ,0,0,0}, {15015,15020,15068 ,6642,6644,6645 ,0,0,0}, - {15068,15067,15015 ,6645,6643,6642 ,0,0,0}, {15069,15020,15018 ,6646,6644,6647 ,0,0,0}, - {15020,15069,15068 ,6644,6646,6645 ,0,0,0}, {15019,15070,15018 ,6648,6649,6647 ,0,0,0}, - {15069,15018,15070 ,6646,6647,6649 ,0,0,0}, {15019,15012,15071 ,6648,6650,6651 ,0,0,0}, - {15071,15070,15019 ,6651,6649,6648 ,0,0,0}, {15072,15012,15011 ,6652,6650,6653 ,0,0,0}, - {15012,15072,15071 ,6650,6652,6651 ,0,0,0}, {15011,15073,15074 ,6653,6654,6655 ,0,0,0}, - {15072,15011,15074 ,6652,6653,6655 ,0,0,0}, {15073,15021,15075 ,6654,6656,6657 ,0,0,0}, - {15021,15073,15011 ,6656,6654,6653 ,0,0,0}, {15075,15008,15009 ,6657,6658,6659 ,0,0,0}, - {15021,15008,15075 ,6656,6658,6657 ,0,0,0}, {13461,15076,15009 ,6660,6661,6659 ,0,0,0}, - {15075,15009,15076 ,6657,6659,6661 ,0,0,0}, {13460,15076,13461 ,6660,6661,6660 ,0,0,0}, - {15010,15022,15063 ,6634,6633,6632 ,0,0,0}, {15062,15022,15014 ,6631,6633,6637 ,0,0,0}, - {15023,15024,15060 ,6630,6628,6627 ,0,0,0}, {15059,15024,15010 ,6626,6628,6634 ,0,0,0}, - {15061,15057,15007 ,6629,6623,6622 ,0,0,0}, {15061,15007,15023 ,6629,6622,6630 ,0,0,0}, - {15054,15006,15058 ,6617,6616,6625 ,0,0,0}, {15057,15058,15025 ,6623,6625,6624 ,0,0,0}, - {15005,15055,15004 ,6618,6619,6621 ,0,0,0}, {15054,15055,15005 ,6617,6619,6618 ,0,0,0}, - {15003,15056,15052 ,6612,6620,6613 ,0,0,0}, {15004,15056,15003 ,6621,6620,6612 ,0,0,0}, - {15053,15050,15001 ,6614,6607,6615 ,0,0,0}, {15002,15052,15053 ,6611,6613,6614 ,0,0,0}, - {14999,15000,15049 ,6609,6606,6605 ,0,0,0}, {15000,15001,15050 ,6606,6615,6607 ,0,0,0}, - {15045,14998,15051 ,6599,6608,6610 ,0,0,0}, {15051,14999,15049 ,6610,6609,6605 ,0,0,0}, - {15046,14996,14997 ,6600,6662,6601 ,0,0,0}, {15045,14997,14998 ,6599,6601,6608 ,0,0,0}, - {14995,14996,15047 ,6604,6662,6602 ,0,0,0}, {15046,15047,14996 ,6600,6602,6662 ,0,0,0}, - {14994,15048,15042 ,6594,6603,6595 ,0,0,0}, {14995,15048,14994 ,6604,6603,6594 ,0,0,0}, - {14992,14993,15043 ,6596,6593,6597 ,0,0,0}, {14993,15042,15043 ,6593,6595,6597 ,0,0,0}, - {15039,14991,15044 ,6587,6663,6598 ,0,0,0}, {14991,14992,15044 ,6663,6596,6598 ,0,0,0}, - {15040,14989,14988 ,6588,6592,6589 ,0,0,0}, {15039,14988,14991 ,6587,6589,6663 ,0,0,0}, - {15041,15077,14990 ,6590,6664,6591 ,0,0,0}, {15040,15041,14989 ,6588,6590,6592 ,0,0,0}, - {15037,14975,15077 ,6583,6582,6664 ,0,0,0}, {14990,15077,14975 ,6591,6664,6582 ,0,0,0}, - {14986,14985,15078 ,6585,6581,6665 ,0,0,0}, {14985,15037,15078 ,6581,6583,6665 ,0,0,0}, - {15033,14987,15038 ,6575,6584,6586 ,0,0,0}, {15038,14986,15078 ,6586,6585,6665 ,0,0,0}, - {15034,14984,14976 ,6576,6666,6577 ,0,0,0}, {15033,14976,14987 ,6575,6577,6584 ,0,0,0}, - {14983,14984,15035 ,6580,6666,6578 ,0,0,0}, {15034,15035,14984 ,6576,6578,6666 ,0,0,0}, - {14982,15036,15031 ,6570,6579,6571 ,0,0,0}, {14983,15036,14982 ,6580,6579,6570 ,0,0,0}, - {14981,14977,15079 ,6573,6569,6667 ,0,0,0}, {14977,15031,15079 ,6569,6571,6667 ,0,0,0}, - {15028,15027,15032 ,6564,6572,6574 ,0,0,0}, {15032,14981,15079 ,6574,6573,6667 ,0,0,0}, - {15028,15029,14978 ,6564,6567,6565 ,0,0,0}, {15028,15026,15027 ,6564,6563,6572 ,0,0,0}, - {15030,15080,14980 ,6568,6668,6566 ,0,0,0}, {14978,15029,14980 ,6565,6567,6566 ,0,0,0}, - {13407,14979,15080 ,6561,6560,6668 ,0,0,0}, {14980,15080,14979 ,6566,6668,6560 ,0,0,0}, - {13371,13374,13278 ,6669,6670,6671 ,0,0,0}, {15033,15038,15081 ,6672,6671,6671 ,0,0,0}, - {13284,13380,13293 ,6673,6674,6671 ,0,0,0}, {13374,13376,13287 ,6670,6669,6675 ,0,0,0}, - {13386,13316,13288 ,6670,6676,6677 ,0,0,0}, {15082,15083,15051 ,6324,6298,6672 ,0,0,0}, - {15084,15043,15042 ,6671,6672,6671 ,0,0,0}, {15085,15086,15047 ,6672,6671,6671 ,0,0,0}, - {13399,13310,13306 ,6678,6671,6679 ,0,0,0}, {15044,15043,15087 ,6671,6672,6680 ,0,0,0}, - {13312,13406,13314 ,6679,6671,6671 ,0,0,0}, {15088,15089,15041 ,6672,6672,6672 ,0,0,0}, - {15090,15091,15028 ,6672,6681,6672 ,0,0,0}, {15080,15030,15092 ,6671,6681,6672 ,0,0,0}, - {15093,15035,15034 ,6672,6672,6681 ,0,0,0}, {15031,15094,15095 ,6672,6672,6672 ,0,0,0}, - {15096,15079,15095 ,6672,6671,6672 ,0,0,0}, {15033,15097,15034 ,6672,6671,6681 ,0,0,0}, - {15036,15093,15094 ,6672,6672,6672 ,0,0,0}, {15090,15032,15096 ,6672,6672,6672 ,0,0,0}, - {15098,15099,15078 ,6671,6672,6672 ,0,0,0}, {15030,15029,15100 ,6681,6671,6671 ,0,0,0}, - {15037,15101,15098 ,6671,6681,6671 ,0,0,0}, {13407,15080,13314 ,6671,6671,6671 ,0,0,0}, - {15077,15089,15101 ,6672,6672,6681 ,0,0,0}, {13310,13400,13311 ,6671,6682,6672 ,0,0,0}, - {13312,13311,13401 ,6679,6672,6298 ,0,0,0}, {15044,15102,15039 ,6671,6671,6672 ,0,0,0}, - {15102,15088,15040 ,6671,6672,6672 ,0,0,0}, {13394,13395,13302 ,6672,6681,6670 ,0,0,0}, - {13306,13308,13398 ,6679,6669,6669 ,0,0,0}, {15086,15103,15048 ,6671,6672,6671 ,0,0,0}, - {13392,13394,13304 ,6671,6672,6681 ,0,0,0}, {13299,13316,13388 ,6669,6676,6298 ,0,0,0}, - {13299,13389,13392 ,6669,6669,6671 ,0,0,0}, {15104,15045,15083 ,6672,6671,6298 ,0,0,0}, - {15104,15085,15046 ,6672,6672,6672 ,0,0,0}, {13382,13290,13293 ,6683,6669,6671 ,0,0,0}, - {13288,13290,13383 ,6677,6669,6684 ,0,0,0}, {15053,15105,15050 ,6671,6685,6686 ,0,0,0}, - {15082,15049,15050 ,6324,6687,6686 ,0,0,0}, {15053,15052,15106 ,6671,6688,6688 ,0,0,0}, - {13376,13377,13283 ,6669,6689,6684 ,0,0,0}, {15107,15108,15055 ,6672,6690,6671 ,0,0,0}, - {15108,15109,15056 ,6690,6686,6690 ,0,0,0}, {15110,15107,15054 ,6691,6672,6691 ,0,0,0}, - {13278,13281,13370 ,6671,6692,6672 ,0,0,0}, {13280,13368,13281 ,6693,6673,6692 ,0,0,0}, - {13273,13365,13280 ,6672,6689,6693 ,0,0,0}, {15058,15111,15110 ,6686,6690,6691 ,0,0,0}, - {13364,13273,13276 ,6694,6672,6695 ,0,0,0}, {15057,15112,15111 ,6690,6691,6690 ,0,0,0}, - {13276,13275,13362 ,6695,6696,6697 ,0,0,0}, {15112,15061,15060 ,6691,6672,6688 ,0,0,0}, - {13270,13358,13359 ,6698,6699,6700 ,0,0,0}, {15113,15114,15059 ,6672,6688,6688 ,0,0,0}, - {15063,15062,15115 ,6688,6691,6701 ,0,0,0}, {15116,15064,15065 ,6686,6672,6671 ,0,0,0}, - {13356,13358,13218 ,6676,6699,6702 ,0,0,0}, {15066,15117,15118 ,6672,6671,6671 ,0,0,0}, - {13356,13217,13352 ,6676,6687,6703 ,0,0,0}, {15119,15067,15068 ,6686,6704,6672 ,0,0,0}, - {13217,13265,13408 ,6687,6705,6676 ,0,0,0}, {15070,15120,15069 ,6686,6706,6672 ,0,0,0}, - {13351,13409,13265 ,6698,6699,6705 ,0,0,0}, {13413,13256,13255 ,6697,6707,6708 ,0,0,0}, - {13412,13351,13256 ,6709,6698,6707 ,0,0,0}, {15121,15073,15075 ,6690,6671,6701 ,0,0,0}, - {13255,13349,13415 ,6708,6672,6694 ,0,0,0}, {15076,13243,15122 ,6690,6690,6686 ,0,0,0}, - {13419,13418,13347 ,6673,6689,6710 ,0,0,0}, {13241,13243,13458 ,6711,6690,6690 ,0,0,0}, - {13421,13419,13345 ,6686,6673,6692 ,0,0,0}, {13455,13239,13457 ,6712,6713,6685 ,0,0,0}, - {13340,13341,13427 ,6714,6684,6669 ,0,0,0}, {13451,13236,13238 ,6715,6716,6717 ,0,0,0}, - {13336,13433,13335 ,6718,6719,6691 ,0,0,0}, {13439,13437,13224 ,6298,6670,6676 ,0,0,0}, - {13445,13229,13231 ,6686,6704,6720 ,0,0,0}, {13231,13233,13448 ,6720,6669,6715 ,0,0,0}, - {13439,13226,13442 ,6298,6718,6669 ,0,0,0}, {13226,13229,13443 ,6718,6704,6691 ,0,0,0}, - {15114,15060,15059 ,6688,6688,6688 ,0,0,0}, {13334,13437,13436 ,6676,6670,6684 ,0,0,0}, - {13451,13449,13236 ,6715,6669,6716 ,0,0,0}, {13238,13239,13455 ,6717,6713,6712 ,0,0,0}, - {13238,13455,13451 ,6717,6712,6715 ,0,0,0}, {13339,13430,13341 ,6673,6721,6684 ,0,0,0}, - {13339,13335,13431 ,6673,6691,6670 ,0,0,0}, {13241,13458,13457 ,6711,6690,6685 ,0,0,0}, - {13241,13457,13239 ,6711,6685,6713 ,0,0,0}, {13344,13424,13421 ,6691,6669,6686 ,0,0,0}, - {13425,13344,13340 ,6720,6691,6714 ,0,0,0}, {13460,13458,13243 ,6671,6690,6690 ,0,0,0}, - {15074,15123,15124 ,6686,6722,6688 ,0,0,0}, {15071,15072,15125 ,6691,6723,6706 ,0,0,0}, - {13449,13448,13233 ,6669,6715,6669 ,0,0,0}, {13449,13233,13236 ,6669,6669,6716 ,0,0,0}, - {13448,13445,13231 ,6715,6686,6720 ,0,0,0}, {13445,13443,13229 ,6686,6691,6704 ,0,0,0}, - {13443,13442,13226 ,6691,6669,6718 ,0,0,0}, {13439,13224,13226 ,6298,6676,6718 ,0,0,0}, - {13437,13334,13224 ,6670,6676,6676 ,0,0,0}, {13436,13433,13336 ,6684,6719,6718 ,0,0,0}, - {13436,13336,13334 ,6684,6718,6676 ,0,0,0}, {13433,13431,13335 ,6719,6670,6691 ,0,0,0}, - {13431,13430,13339 ,6670,6721,6673 ,0,0,0}, {13430,13427,13341 ,6721,6669,6684 ,0,0,0}, - {13427,13425,13340 ,6669,6720,6714 ,0,0,0}, {13425,13424,13344 ,6720,6669,6691 ,0,0,0}, - {13421,13345,13344 ,6686,6692,6691 ,0,0,0}, {13419,13347,13345 ,6673,6710,6692 ,0,0,0}, - {13418,13415,13349 ,6689,6694,6672 ,0,0,0}, {13418,13349,13347 ,6689,6672,6710 ,0,0,0}, - {13415,13413,13255 ,6694,6697,6708 ,0,0,0}, {13413,13412,13256 ,6697,6709,6707 ,0,0,0}, - {13412,13409,13351 ,6709,6699,6698 ,0,0,0}, {13409,13408,13265 ,6699,6676,6705 ,0,0,0}, - {13408,13352,13217 ,6676,6703,6687 ,0,0,0}, {13356,13218,13217 ,6676,6702,6687 ,0,0,0}, - {13358,13270,13218 ,6699,6698,6702 ,0,0,0}, {13359,13362,13275 ,6700,6697,6696 ,0,0,0}, - {13359,13275,13270 ,6700,6696,6698 ,0,0,0}, {13362,13364,13276 ,6697,6694,6695 ,0,0,0}, - {13364,13365,13273 ,6694,6689,6672 ,0,0,0}, {13365,13368,13280 ,6689,6673,6693 ,0,0,0}, - {13368,13370,13281 ,6673,6672,6692 ,0,0,0}, {13370,13371,13278 ,6672,6669,6671 ,0,0,0}, - {13374,13287,13278 ,6670,6675,6671 ,0,0,0}, {13376,13283,13287 ,6669,6684,6675 ,0,0,0}, - {13377,13380,13284 ,6689,6674,6673 ,0,0,0}, {13377,13284,13283 ,6689,6673,6684 ,0,0,0}, - {13380,13382,13293 ,6674,6683,6671 ,0,0,0}, {13382,13383,13290 ,6683,6684,6669 ,0,0,0}, - {13383,13386,13288 ,6684,6670,6677 ,0,0,0}, {13386,13388,13316 ,6670,6298,6676 ,0,0,0}, - {13388,13389,13299 ,6298,6669,6669 ,0,0,0}, {13392,13304,13299 ,6671,6681,6669 ,0,0,0}, - {13394,13302,13304 ,6672,6670,6681 ,0,0,0}, {13395,13398,13308 ,6681,6669,6669 ,0,0,0}, - {13395,13308,13302 ,6681,6669,6670 ,0,0,0}, {13398,13399,13306 ,6669,6678,6679 ,0,0,0}, - {13399,13400,13310 ,6678,6682,6671 ,0,0,0}, {13400,13401,13311 ,6682,6298,6672 ,0,0,0}, - {13401,13406,13312 ,6298,6671,6679 ,0,0,0}, {13406,13407,13314 ,6671,6671,6671 ,0,0,0}, - {15080,15092,13314 ,6671,6672,6671 ,0,0,0}, {15030,15100,15092 ,6681,6671,6672 ,0,0,0}, - {15029,15028,15091 ,6671,6672,6681 ,0,0,0}, {15029,15091,15100 ,6671,6681,6671 ,0,0,0}, - {15028,15032,15090 ,6672,6672,6672 ,0,0,0}, {15032,15079,15096 ,6672,6671,6672 ,0,0,0}, - {15079,15031,15095 ,6671,6672,6672 ,0,0,0}, {15031,15036,15094 ,6672,6672,6672 ,0,0,0}, - {15036,15035,15093 ,6672,6672,6672 ,0,0,0}, {15034,15097,15093 ,6681,6671,6672 ,0,0,0}, - {15033,15081,15097 ,6672,6671,6671 ,0,0,0}, {15038,15078,15099 ,6671,6672,6672 ,0,0,0}, - {15038,15099,15081 ,6671,6672,6671 ,0,0,0}, {15078,15037,15098 ,6672,6671,6671 ,0,0,0}, - {15037,15077,15101 ,6671,6672,6681 ,0,0,0}, {15077,15041,15089 ,6672,6672,6672 ,0,0,0}, - {15041,15040,15088 ,6672,6672,6672 ,0,0,0}, {15040,15039,15102 ,6672,6672,6671 ,0,0,0}, - {15044,15087,15102 ,6671,6680,6671 ,0,0,0}, {15043,15084,15087 ,6672,6671,6680 ,0,0,0}, - {15042,15048,15103 ,6671,6671,6672 ,0,0,0}, {15042,15103,15084 ,6671,6672,6671 ,0,0,0}, - {15048,15047,15086 ,6671,6671,6671 ,0,0,0}, {15047,15046,15085 ,6671,6672,6672 ,0,0,0}, - {15046,15045,15104 ,6672,6671,6672 ,0,0,0}, {15045,15051,15083 ,6671,6672,6298 ,0,0,0}, - {15051,15049,15082 ,6672,6687,6324 ,0,0,0}, {15050,15105,15082 ,6686,6685,6324 ,0,0,0}, - {15053,15106,15105 ,6671,6688,6685 ,0,0,0}, {15052,15056,15109 ,6688,6690,6686 ,0,0,0}, - {15052,15109,15106 ,6688,6686,6688 ,0,0,0}, {15056,15055,15108 ,6690,6671,6690 ,0,0,0}, - {15055,15054,15107 ,6671,6691,6672 ,0,0,0}, {15054,15058,15110 ,6691,6686,6691 ,0,0,0}, - {15058,15057,15111 ,6686,6690,6690 ,0,0,0}, {15057,15061,15112 ,6690,6672,6691 ,0,0,0}, - {15060,15114,15112 ,6688,6688,6691 ,0,0,0}, {15063,15113,15059 ,6688,6672,6688 ,0,0,0}, - {15062,15126,15115 ,6691,6691,6701 ,0,0,0}, {15063,15115,15113 ,6688,6701,6672 ,0,0,0}, - {15116,15126,15064 ,6686,6691,6672 ,0,0,0}, {15062,15064,15126 ,6691,6672,6691 ,0,0,0}, - {15116,15065,15118 ,6686,6671,6671 ,0,0,0}, {15117,15066,15067 ,6671,6672,6704 ,0,0,0}, - {15118,15065,15066 ,6671,6671,6672 ,0,0,0}, {15119,15068,15069 ,6686,6672,6672 ,0,0,0}, - {15119,15117,15067 ,6686,6671,6704 ,0,0,0}, {15127,15120,15070 ,6688,6706,6686 ,0,0,0}, - {15120,15119,15069 ,6706,6686,6672 ,0,0,0}, {15127,15071,15125 ,6688,6691,6706 ,0,0,0}, - {15071,15127,15070 ,6691,6688,6686 ,0,0,0}, {15072,15124,15125 ,6723,6688,6706 ,0,0,0}, - {15074,15073,15123 ,6686,6671,6722 ,0,0,0}, {15072,15074,15124 ,6723,6686,6688 ,0,0,0}, - {15121,15075,15122 ,6690,6701,6686 ,0,0,0}, {15123,15073,15121 ,6722,6671,6690 ,0,0,0}, - {13243,15076,13460 ,6690,6690,6671 ,0,0,0}, {15122,15075,15076 ,6686,6701,6690 ,0,0,0}, - {15122,12820,14624 ,6724,6725,6726 ,0,0,0}, {14586,15123,15121 ,6727,6728,6729 ,0,0,0}, - {15125,14588,15127 ,6730,6731,6732 ,0,0,0}, {14729,15124,14727 ,6733,6734,6735 ,0,0,0}, - {15128,14738,15129 ,6736,6737,6738 ,0,0,0}, {14613,15128,15130 ,6739,6736,6736 ,0,0,0}, - {14654,15131,15132 ,6740,6741,6742 ,0,0,0}, {14653,15133,14612 ,6743,6744,6745 ,0,0,0}, - {14736,15134,15135 ,6746,6747,6748 ,0,0,0}, {14783,15136,14741 ,6749,6750,6751 ,0,0,0}, - {15137,15138,14781 ,6752,6753,6754 ,0,0,0}, {15134,14669,14782 ,6747,6755,6756 ,0,0,0}, - {15104,14705,14696 ,6757,6758,6759 ,0,0,0}, {13107,14705,15137 ,6760,6758,6752 ,0,0,0}, - {15086,14698,15103 ,6761,6762,6763 ,0,0,0}, {14697,15086,15085 ,6764,6761,6765 ,0,0,0}, - {14768,14703,15087 ,6766,6767,6768 ,0,0,0}, {14768,15084,14767 ,6766,6769,6770 ,0,0,0}, - {15102,14695,15088 ,6771,6772,6773 ,0,0,0}, {14695,15102,14703 ,6772,6771,6767 ,0,0,0}, - {15089,15088,14672 ,6774,6773,6775 ,0,0,0}, {14695,14672,15088 ,6772,6775,6773 ,0,0,0}, - {14670,15101,14671 ,6776,6777,6778 ,0,0,0}, {15089,14672,14671 ,6774,6775,6778 ,0,0,0}, - {14676,15099,14694 ,6779,6780,6781 ,0,0,0}, {15098,14670,14694 ,6782,6776,6781 ,0,0,0}, - {14675,15097,15081 ,6783,6784,6785 ,0,0,0}, {15094,15093,15139 ,6786,6787,6788 ,0,0,0}, - {15139,14693,15140 ,6788,6789,6788 ,0,0,0}, {15093,15097,14693 ,6787,6784,6789 ,0,0,0}, - {15141,14674,14647 ,6790,6791,6792 ,0,0,0}, {14674,15141,15140 ,6791,6790,6788 ,0,0,0}, - {14646,15142,14647 ,6793,6794,6792 ,0,0,0}, {15141,14647,15142 ,6790,6792,6794 ,0,0,0}, - {14646,14679,15143 ,6793,6795,6796 ,0,0,0}, {15143,15142,14646 ,6796,6794,6793 ,0,0,0}, - {15144,14679,14685 ,6797,6795,6798 ,0,0,0}, {14679,15144,15143 ,6795,6797,6796 ,0,0,0}, - {14689,15145,14685 ,6799,6800,6798 ,0,0,0}, {15144,14685,15145 ,6797,6798,6800 ,0,0,0}, - {14689,14682,15146 ,6799,6801,6802 ,0,0,0}, {15146,15145,14689 ,6802,6800,6799 ,0,0,0}, - {15147,14682,14691 ,6803,6801,6804 ,0,0,0}, {14682,15147,15146 ,6801,6803,6802 ,0,0,0}, - {12921,13324,14691 ,6805,6806,6804 ,0,0,0}, {15147,14691,13324 ,6803,6804,6806 ,0,0,0}, - {15091,15148,15149 ,6807,6808,6809 ,0,0,0}, {15093,14693,15139 ,6787,6789,6788 ,0,0,0}, - {15140,14693,14674 ,6788,6789,6791 ,0,0,0}, {14675,14693,15097 ,6783,6789,6784 ,0,0,0}, - {14676,14675,15081 ,6779,6783,6785 ,0,0,0}, {15081,15099,14676 ,6785,6780,6779 ,0,0,0}, - {14694,15099,15098 ,6781,6780,6782 ,0,0,0}, {14670,15098,15101 ,6776,6782,6777 ,0,0,0}, - {15101,15089,14671 ,6777,6774,6778 ,0,0,0}, {15139,15150,15094 ,6788,6810,6786 ,0,0,0}, - {15148,15091,15090 ,6808,6807,6811 ,0,0,0}, {15150,15095,15094 ,6810,6812,6786 ,0,0,0}, - {15149,15151,15100 ,6809,6813,6814 ,0,0,0}, {15100,15091,15149 ,6814,6807,6809 ,0,0,0}, - {15100,15152,15092 ,6814,6815,6816 ,0,0,0}, {15152,15100,15151 ,6815,6814,6813 ,0,0,0}, - {13314,15092,13315 ,6817,6816,6818 ,0,0,0}, {15152,13315,15092 ,6815,6818,6816 ,0,0,0}, - {15090,15153,15148 ,6811,6819,6808 ,0,0,0}, {14703,15102,15087 ,6767,6771,6768 ,0,0,0}, - {15153,15090,15096 ,6819,6811,6820 ,0,0,0}, {15154,15153,15096 ,6821,6819,6820 ,0,0,0}, - {15095,15150,15154 ,6812,6810,6821 ,0,0,0}, {15095,15154,15096 ,6812,6821,6820 ,0,0,0}, - {15087,15084,14768 ,6768,6769,6766 ,0,0,0}, {14734,15135,15136 ,6822,6748,6750 ,0,0,0}, - {14767,15103,14698 ,6770,6763,6762 ,0,0,0}, {15103,14767,15084 ,6763,6770,6769 ,0,0,0}, - {15086,14697,14698 ,6761,6764,6762 ,0,0,0}, {14696,14697,15085 ,6759,6764,6765 ,0,0,0}, - {15083,14705,15104 ,6823,6758,6757 ,0,0,0}, {15085,15104,14696 ,6765,6757,6759 ,0,0,0}, - {13107,15137,14781 ,6760,6752,6754 ,0,0,0}, {15083,15137,14705 ,6823,6752,6758 ,0,0,0}, - {15134,14736,14669 ,6747,6746,6755 ,0,0,0}, {15138,15134,14782 ,6753,6747,6756 ,0,0,0}, - {15136,14783,14734 ,6750,6749,6822 ,0,0,0}, {15155,14733,15156 ,6824,6825,6826 ,0,0,0}, - {15136,15156,14741 ,6750,6826,6751 ,0,0,0}, {15155,15131,14663 ,6824,6741,6827 ,0,0,0}, - {14733,15155,14663 ,6825,6824,6827 ,0,0,0}, {15132,15133,14653 ,6742,6744,6743 ,0,0,0}, - {14663,15131,14645 ,6827,6741,6828 ,0,0,0}, {15126,15116,15157 ,6829,6830,6831 ,0,0,0}, - {15117,15119,15130 ,6832,6833,6736 ,0,0,0}, {15133,15129,14732 ,6744,6738,6834 ,0,0,0}, - {15121,14624,14586 ,6729,6726,6727 ,0,0,0}, {15125,15124,14729 ,6730,6734,6733 ,0,0,0}, - {14589,14613,15120 ,6835,6739,6836 ,0,0,0}, {14747,15128,14613 ,6837,6736,6739 ,0,0,0}, - {15127,14589,15120 ,6732,6835,6836 ,0,0,0}, {14729,14588,15125 ,6733,6731,6730 ,0,0,0}, - {15127,14588,14589 ,6732,6731,6835 ,0,0,0}, {15123,14727,15124 ,6728,6735,6734 ,0,0,0}, - {14727,15123,14586 ,6735,6728,6727 ,0,0,0}, {14624,15121,15122 ,6726,6729,6724 ,0,0,0}, - {12820,15122,13243 ,6725,6724,6838 ,0,0,0}, {15105,15158,15082 ,6839,6840,6841 ,0,0,0}, - {15083,15082,15158 ,6823,6841,6840 ,0,0,0}, {15158,15105,15159 ,6840,6839,6842 ,0,0,0}, - {15083,15158,15137 ,6823,6840,6752 ,0,0,0}, {15160,15159,15106 ,6843,6842,6844 ,0,0,0}, - {14782,14781,15138 ,6756,6754,6753 ,0,0,0}, {15108,15160,15109 ,6845,6843,6846 ,0,0,0}, - {15108,15161,15160 ,6845,6847,6843 ,0,0,0}, {15162,15161,15107 ,6848,6847,6849 ,0,0,0}, - {14734,14736,15135 ,6822,6746,6748 ,0,0,0}, {15111,15162,15110 ,6850,6848,6851 ,0,0,0}, - {15111,15163,15162 ,6850,6852,6848 ,0,0,0}, {15164,15163,15112 ,6853,6852,6854 ,0,0,0}, - {14733,14741,15156 ,6825,6751,6826 ,0,0,0}, {15114,15165,15164 ,6855,6856,6853 ,0,0,0}, - {15113,15165,15114 ,6857,6856,6855 ,0,0,0}, {15166,15165,15115 ,6858,6856,6859 ,0,0,0}, - {14654,14645,15131 ,6740,6828,6741 ,0,0,0}, {15157,15166,15126 ,6831,6858,6829 ,0,0,0}, - {14653,14654,15132 ,6743,6740,6742 ,0,0,0}, {15167,15157,15118 ,6860,6831,6861 ,0,0,0}, - {14732,14612,15133 ,6834,6745,6744 ,0,0,0}, {15130,15167,15117 ,6736,6860,6832 ,0,0,0}, - {14738,14732,15129 ,6737,6834,6738 ,0,0,0}, {15120,14613,15130 ,6836,6739,6736 ,0,0,0}, - {14738,15128,14747 ,6737,6736,6837 ,0,0,0}, {15120,15130,15119 ,6836,6736,6833 ,0,0,0}, - {15118,15117,15167 ,6861,6832,6860 ,0,0,0}, {15116,15118,15157 ,6830,6861,6831 ,0,0,0}, - {15115,15126,15166 ,6859,6829,6858 ,0,0,0}, {15113,15115,15165 ,6857,6859,6856 ,0,0,0}, - {15112,15114,15164 ,6854,6855,6853 ,0,0,0}, {15111,15112,15163 ,6850,6854,6852 ,0,0,0}, - {15107,15110,15162 ,6849,6851,6848 ,0,0,0}, {15108,15107,15161 ,6845,6849,6847 ,0,0,0}, - {15106,15109,15160 ,6844,6846,6843 ,0,0,0}, {15105,15106,15159 ,6839,6844,6842 ,0,0,0}, - {15168,13115,13116 ,6862,6863,6864 ,0,0,0}, {14820,14809,14047 ,6865,6866,6867 ,0,0,0}, - {15169,14817,14816 ,6868,6869,6870 ,0,0,0}, {14819,14040,14806 ,6871,6872,6873 ,0,0,0}, - {14025,14799,14803 ,6874,6875,6876 ,0,0,0}, {14037,14822,14823 ,6877,6878,6879 ,0,0,0}, - {14833,14032,14031 ,6880,6881,6882 ,0,0,0}, {14830,14024,14027 ,6883,6884,6885 ,0,0,0}, - {15170,14843,14841 ,6886,6887,6888 ,0,0,0}, {15171,14837,14034 ,6889,6890,5525 ,0,0,0}, - {14854,14851,14110 ,6891,6892,6893 ,0,0,0}, {14847,15172,15173 ,6894,6895,6896 ,0,0,0}, - {14861,14099,14915 ,6897,6898,6899 ,0,0,0}, {14857,14105,14860 ,6900,6901,6902 ,0,0,0}, - {14146,14866,14144 ,6903,6904,6905 ,0,0,0}, {14909,14862,14142 ,6906,6907,6908 ,0,0,0}, - {14898,15174,14900 ,6909,6910,6911 ,0,0,0}, {14906,14147,14872 ,6912,6913,6914 ,0,0,0}, - {15175,14887,14879 ,6915,6916,6917 ,0,0,0}, {14897,15176,14884 ,6918,6919,6920 ,0,0,0}, - {15177,14894,14895 ,6921,6922,6923 ,0,0,0}, {14203,14206,14888 ,6924,6925,6926 ,0,0,0}, - {14203,14891,14204 ,6924,6927,5712 ,0,0,0}, {14191,14190,14881 ,6928,6929,6930 ,0,0,0}, - {14191,14896,14206 ,6928,6931,6925 ,0,0,0}, {14901,14903,14190 ,6932,6933,6929 ,0,0,0}, - {14190,14903,14881 ,6929,6933,6930 ,0,0,0}, {14901,14190,14235 ,6932,6929,6934 ,0,0,0}, - {14235,14237,14875 ,6934,6935,6936 ,0,0,0}, {14875,14901,14235 ,6936,6932,6934 ,0,0,0}, - {14907,14237,14239 ,6937,6935,6938 ,0,0,0}, {14237,14907,14875 ,6935,6937,6936 ,0,0,0}, - {14907,14239,14868 ,6937,6938,6939 ,0,0,0}, {14240,14869,14868 ,6940,6941,6939 ,0,0,0}, - {14868,14239,14240 ,6939,6938,6940 ,0,0,0}, {14869,14242,14913 ,6941,6942,6943 ,0,0,0}, - {14242,14869,14240 ,6942,6941,6940 ,0,0,0}, {14863,14913,14243 ,6944,6943,6945 ,0,0,0}, - {14242,14243,14913 ,6942,6945,6943 ,0,0,0}, {14243,15178,14858 ,6945,6946,6947 ,0,0,0}, - {14858,14863,14243 ,6947,6944,6945 ,0,0,0}, {14855,15178,15179 ,6948,6946,6949 ,0,0,0}, - {15178,14855,14858 ,6946,6948,6947 ,0,0,0}, {15180,14852,15179 ,6950,6951,6949 ,0,0,0}, - {14855,15179,14852 ,6948,6949,6951 ,0,0,0}, {15180,13213,13211 ,6950,126,3135 ,0,0,0}, - {13211,14852,15180 ,3135,6951,6950 ,0,0,0}, {14206,14896,14888 ,6925,6931,6926 ,0,0,0}, - {14191,14881,14896 ,6928,6930,6931 ,0,0,0}, {14891,14884,14204 ,6927,6920,5712 ,0,0,0}, - {14203,14888,14891 ,6924,6926,6927 ,0,0,0}, {15176,14897,14894 ,6919,6918,6922 ,0,0,0}, - {15176,14204,14884 ,6919,5712,6920 ,0,0,0}, {15177,14895,14887 ,6921,6923,6916 ,0,0,0}, - {15177,15176,14894 ,6921,6919,6922 ,0,0,0}, {15174,15175,14879 ,6910,6915,6917 ,0,0,0}, - {15175,15177,14887 ,6915,6921,6916 ,0,0,0}, {14149,15174,14898 ,6952,6910,6909 ,0,0,0}, - {14900,15174,14879 ,6911,6910,6917 ,0,0,0}, {14149,14872,14147 ,6952,6914,6913 ,0,0,0}, - {14872,14149,14898 ,6914,6952,6909 ,0,0,0}, {14904,14146,14147 ,6953,6903,6913 ,0,0,0}, - {14904,14147,14906 ,6953,6913,6912 ,0,0,0}, {14866,14911,14144 ,6904,6954,6905 ,0,0,0}, - {14904,14866,14146 ,6953,6904,6903 ,0,0,0}, {14909,14142,14911 ,6906,6908,6954 ,0,0,0}, - {14144,14911,14142 ,6905,6954,6908 ,0,0,0}, {14101,14862,14915 ,6955,6907,6899 ,0,0,0}, - {14142,14862,14101 ,6908,6907,6955 ,0,0,0}, {14111,14099,14861 ,6956,6898,6897 ,0,0,0}, - {14099,14101,14915 ,6898,6955,6899 ,0,0,0}, {14111,14860,14105 ,6956,6902,6901 ,0,0,0}, - {14860,14111,14861 ,6902,6956,6897 ,0,0,0}, {14854,14110,14105 ,6891,6893,6901 ,0,0,0}, - {14854,14105,14857 ,6891,6901,6900 ,0,0,0}, {14851,14849,15173 ,6892,6957,6896 ,0,0,0}, - {14851,15173,14110 ,6892,6896,6893 ,0,0,0}, {14847,14845,15172 ,6894,6958,6895 ,0,0,0}, - {14849,14847,15173 ,6957,6894,6896 ,0,0,0}, {14843,15170,14845 ,6887,6886,6958 ,0,0,0}, - {15172,14845,15170 ,6895,6958,6886 ,0,0,0}, {15171,14841,14839 ,6889,6888,6959 ,0,0,0}, - {15170,14841,15171 ,6886,6888,6889 ,0,0,0}, {14034,14837,14835 ,5525,6890,6960 ,0,0,0}, - {15171,14839,14837 ,6889,6959,6890 ,0,0,0}, {14835,14833,14031 ,6960,6880,6882 ,0,0,0}, - {14031,14034,14835 ,6882,5525,6960 ,0,0,0}, {14800,14027,14032 ,6961,6885,6881 ,0,0,0}, - {14800,14032,14833 ,6961,6881,6880 ,0,0,0}, {14830,14826,14024 ,6883,6962,6884 ,0,0,0}, - {14800,14830,14027 ,6961,6883,6885 ,0,0,0}, {14025,14024,14799 ,6874,6884,6875 ,0,0,0}, - {14826,14799,14024 ,6962,6875,6884 ,0,0,0}, {14030,14803,14822 ,6963,6876,6878 ,0,0,0}, - {14025,14803,14030 ,6874,6876,6963 ,0,0,0}, {14039,14037,14823 ,6964,6877,6879 ,0,0,0}, - {14037,14030,14822 ,6877,6963,6878 ,0,0,0}, {14039,14806,14040 ,6964,6873,6872 ,0,0,0}, - {14806,14039,14823 ,6873,6964,6879 ,0,0,0}, {14819,14820,14047 ,6871,6865,6867 ,0,0,0}, - {14819,14047,14040 ,6871,6867,6872 ,0,0,0}, {14809,14817,15181 ,6866,6869,6965 ,0,0,0}, - {14809,15181,14047 ,6866,6965,6867 ,0,0,0}, {15169,14816,15168 ,6868,6870,6862 ,0,0,0}, - {15181,14817,15169 ,6965,6869,6868 ,0,0,0}, {13115,15168,14816 ,6863,6862,6870 ,0,0,0}, - {13085,15182,14743 ,6966,6967,6968 ,0,0,0}, {15183,14787,15184 ,6969,6970,6971 ,0,0,0}, - {14655,14656,15185 ,6972,6973,6974 ,0,0,0}, {14789,15186,14790 ,6975,6976,6977 ,0,0,0}, - {15187,15188,14731 ,6978,6979,6980 ,0,0,0}, {15189,14786,15190 ,6981,6982,6983 ,0,0,0}, - {14788,14742,15191 ,6984,6985,6986 ,0,0,0}, {14793,15192,15193 ,6987,6988,6989 ,0,0,0}, - {14784,15194,14785 ,6990,6991,6992 ,0,0,0}, {14794,15195,14667 ,6993,6994,6995 ,0,0,0}, - {15196,14794,14735 ,6996,6993,6997 ,0,0,0}, {14668,15197,14795 ,6998,6999,7000 ,0,0,0}, - {15198,14668,14667 ,7001,6998,6995 ,0,0,0}, {14796,14795,15199 ,7002,7000,7003 ,0,0,0}, - {15197,15199,14795 ,6999,7003,7000 ,0,0,0}, {15200,14780,14796 ,7004,7005,7002 ,0,0,0}, - {14796,15199,15200 ,7002,7003,7004 ,0,0,0}, {14780,15201,14798 ,7005,7006,7007 ,0,0,0}, - {15201,14780,15200 ,7006,7005,7004 ,0,0,0}, {14797,14798,15202 ,7008,7007,7009 ,0,0,0}, - {15201,15202,14798 ,7006,7009,7007 ,0,0,0}, {15203,13107,14797 ,7010,82,7008 ,0,0,0}, - {14797,15202,15203 ,7008,7009,7010 ,0,0,0}, {13106,13107,15203 ,7011,82,7010 ,0,0,0}, - {14735,15193,15196 ,6997,6989,6996 ,0,0,0}, {15195,15198,14667 ,6994,7001,6995 ,0,0,0}, - {15198,15197,14668 ,7001,6999,6998 ,0,0,0}, {15195,14794,15196 ,6994,6993,6996 ,0,0,0}, - {15192,14793,14785 ,6988,6987,6992 ,0,0,0}, {15193,14735,14793 ,6989,6997,6987 ,0,0,0}, - {14785,15194,15192 ,6992,6991,6988 ,0,0,0}, {15189,15194,14784 ,6981,6991,6990 ,0,0,0}, - {15204,14790,15186 ,7012,6977,6976 ,0,0,0}, {14788,15190,14786 ,6984,6983,6982 ,0,0,0}, - {14784,14786,15189 ,6990,6982,6981 ,0,0,0}, {14742,14790,15204 ,6985,6977,7012 ,0,0,0}, - {14742,15204,15191 ,6985,7012,6986 ,0,0,0}, {15190,14788,15191 ,6983,6984,6986 ,0,0,0}, - {14787,14655,15184 ,6970,6972,6971 ,0,0,0}, {15186,14789,15188 ,6976,6975,6979 ,0,0,0}, - {15187,14731,14730 ,6978,6980,7013 ,0,0,0}, {14731,15188,14789 ,6980,6979,6975 ,0,0,0}, - {14730,14787,15183 ,7013,6970,6969 ,0,0,0}, {14730,15183,15187 ,7013,6969,6978 ,0,0,0}, - {14656,15182,15185 ,6973,6967,6974 ,0,0,0}, {15184,14655,15185 ,6971,6972,6974 ,0,0,0}, - {13085,14743,13082 ,6966,6968,7014 ,0,0,0}, {15182,14656,14743 ,6967,6973,6968 ,0,0,0}, - {15204,13100,15191 ,730,730,730 ,0,0,0}, {15199,15197,15195 ,730,730,730 ,0,0,0}, - {15197,15198,15195 ,730,730,730 ,0,0,0}, {15195,15196,15200 ,730,730,730 ,0,0,0}, - {15200,15199,15195 ,730,730,730 ,0,0,0}, {15201,15196,15193 ,730,730,730 ,0,0,0}, - {15196,15201,15200 ,730,730,730 ,0,0,0}, {15192,15202,15193 ,730,730,730 ,0,0,0}, - {15201,15193,15202 ,730,730,730 ,0,0,0}, {15203,15192,13106 ,730,730,730 ,0,0,0}, - {15203,15202,15192 ,730,730,730 ,0,0,0}, {15194,15189,13104 ,730,730,730 ,0,0,0}, - {15192,15194,13106 ,730,730,730 ,0,0,0}, {15186,13095,13098 ,730,730,7015 ,0,0,0}, - {13101,13104,15190 ,730,730,730 ,0,0,0}, {15183,13089,13092 ,7016,7015,7017 ,0,0,0}, - {15188,13092,13094 ,730,7017,7017 ,0,0,0}, {13086,13088,15185 ,730,730,730 ,0,0,0}, - {13085,13061,13063 ,730,730,730 ,0,0,0}, {13059,13086,15182 ,7015,730,730 ,0,0,0}, - {13065,13079,13077 ,730,730,7017 ,0,0,0}, {13061,13080,13067 ,730,7017,7015 ,0,0,0}, - {13073,13069,13074 ,730,730,730 ,0,0,0}, {13069,13077,13074 ,730,7017,730 ,0,0,0}, - {13070,13069,13073 ,730,730,730 ,0,0,0}, {13065,13067,13079 ,730,7015,730 ,0,0,0}, - {13069,13065,13077 ,730,730,7017 ,0,0,0}, {13080,13061,13084 ,7017,730,730 ,0,0,0}, - {13079,13067,13080 ,730,7015,7017 ,0,0,0}, {13085,13084,13061 ,730,730,730 ,0,0,0}, - {15182,13063,13059 ,730,730,7015 ,0,0,0}, {15182,13085,13063 ,730,730,730 ,0,0,0}, - {13088,15184,15185 ,730,7016,730 ,0,0,0}, {15185,15182,13086 ,730,730,730 ,0,0,0}, - {15183,15184,13089 ,7016,7016,7015 ,0,0,0}, {13088,13089,15184 ,730,7015,7016 ,0,0,0}, - {13092,15188,15187 ,7017,730,730 ,0,0,0}, {13092,15187,15183 ,7017,730,7016 ,0,0,0}, - {13094,13095,15186 ,7017,730,730 ,0,0,0}, {15188,13094,15186 ,730,7017,730 ,0,0,0}, - {13098,13100,15204 ,7015,730,730 ,0,0,0}, {15186,13098,15204 ,730,7015,730 ,0,0,0}, - {15191,13101,15190 ,730,730,730 ,0,0,0}, {15191,13100,13101 ,730,730,730 ,0,0,0}, - {15194,13104,13106 ,730,730,730 ,0,0,0}, {15189,15190,13104 ,730,730,730 ,0,0,0}, - {15205,15206,13057 ,7018,7019,7020 ,0,0,0}, {13057,15207,15205 ,7020,7021,7018 ,0,0,0}, - {13057,13040,15207 ,7020,7022,7021 ,0,0,0}, {13057,15208,15209 ,7020,7023,7024 ,0,0,0}, - {15206,15208,13057 ,7019,7023,7020 ,0,0,0}, {13057,15210,15211 ,7020,7025,7026 ,0,0,0}, - {15209,15210,13057 ,7024,7025,7020 ,0,0,0}, {15211,15212,13057 ,7026,7027,7020 ,0,0,0}, - {15213,13057,15214 ,7028,7020,7029 ,0,0,0}, {13057,15212,15214 ,7020,7027,7029 ,0,0,0}, - {15215,13057,15216 ,7030,7020,7031 ,0,0,0}, {13057,15213,15216 ,7020,7028,7031 ,0,0,0}, - {15217,13057,15218 ,7032,7020,7033 ,0,0,0}, {13057,15215,15218 ,7020,7030,7033 ,0,0,0}, - {13056,13057,15217 ,7034,7020,7032 ,0,0,0}, {13039,14712,15207 ,7035,7036,7037 ,0,0,0}, - {15209,15208,14702 ,7038,7039,7040 ,0,0,0}, {15206,15205,14711 ,7041,7042,7043 ,0,0,0}, - {15211,14769,15212 ,7044,7045,7046 ,0,0,0}, {14701,14714,15210 ,7047,7048,7049 ,0,0,0}, - {14770,14595,15213 ,7050,7051,7052 ,0,0,0}, {14770,15214,14661 ,7050,7053,7054 ,0,0,0}, - {14659,14718,15215 ,7055,7056,7057 ,0,0,0}, {15215,15216,14659 ,7057,7058,7055 ,0,0,0}, - {15218,14718,14704 ,7059,7056,7060 ,0,0,0}, {14718,15218,15215 ,7056,7059,7057 ,0,0,0}, - {14692,15217,14704 ,7061,7062,7060 ,0,0,0}, {15218,14704,15217 ,7059,7060,7062 ,0,0,0}, - {14692,13055,13056 ,7061,7063,4910 ,0,0,0}, {13056,15217,14692 ,4910,7062,7061 ,0,0,0}, - {14769,15211,14714 ,7045,7044,7048 ,0,0,0}, {14595,15216,15213 ,7051,7058,7052 ,0,0,0}, - {14659,15216,14595 ,7055,7058,7051 ,0,0,0}, {14702,15208,14710 ,7040,7039,7064 ,0,0,0}, - {14661,15214,15212 ,7054,7053,7046 ,0,0,0}, {14770,15213,15214 ,7050,7052,7053 ,0,0,0}, - {14769,14661,15212 ,7045,7054,7046 ,0,0,0}, {15210,14714,15211 ,7049,7048,7044 ,0,0,0}, - {15209,14702,14701 ,7038,7040,7047 ,0,0,0}, {14701,15210,15209 ,7047,7049,7038 ,0,0,0}, - {15205,14712,14711 ,7042,7036,7043 ,0,0,0}, {14710,15206,14711 ,7064,7041,7043 ,0,0,0}, - {15208,15206,14710 ,7039,7041,7064 ,0,0,0}, {13039,15207,13040 ,7035,7037,4929 ,0,0,0}, - {14712,15205,15207 ,7036,7042,7037 ,0,0,0}, {15219,15220,13023 ,7018,7019,7065 ,0,0,0}, - {13023,15221,15219 ,7065,7021,7018 ,0,0,0}, {13023,13006,15221 ,7065,7066,7021 ,0,0,0}, - {13023,15222,15223 ,7065,7023,7024 ,0,0,0}, {15220,15222,13023 ,7019,7023,7065 ,0,0,0}, - {13023,15224,15225 ,7065,7025,7026 ,0,0,0}, {15223,15224,13023 ,7024,7025,7065 ,0,0,0}, - {15225,15226,13023 ,7026,7027,7065 ,0,0,0}, {15227,13023,15228 ,7028,7065,7029 ,0,0,0}, - {13023,15226,15228 ,7065,7027,7029 ,0,0,0}, {15229,13023,15230 ,7030,7065,7031 ,0,0,0}, - {13023,15227,15230 ,7065,7028,7031 ,0,0,0}, {15231,13023,15232 ,7032,7065,7033 ,0,0,0}, - {13023,15229,15232 ,7065,7030,7033 ,0,0,0}, {13022,13023,15231 ,7067,7065,7032 ,0,0,0}, - {13005,14761,15221 ,7068,7069,7070 ,0,0,0}, {15223,15222,14602 ,7071,7072,7073 ,0,0,0}, - {15220,15219,14641 ,7074,7075,7076 ,0,0,0}, {15225,14621,15226 ,7077,7078,7079 ,0,0,0}, - {14603,14766,15224 ,7047,7080,7081 ,0,0,0}, {14585,14764,15227 ,7082,7083,7084 ,0,0,0}, - {14585,15228,14765 ,7082,7085,7086 ,0,0,0}, {14763,14639,15229 ,7087,7088,7089 ,0,0,0}, - {15229,15230,14763 ,7089,7090,7087 ,0,0,0}, {15232,14639,14640 ,7091,7088,7092 ,0,0,0}, - {14639,15232,15229 ,7088,7091,7089 ,0,0,0}, {14762,15231,14640 ,7093,7094,7092 ,0,0,0}, - {15232,14640,15231 ,7091,7092,7094 ,0,0,0}, {14762,13021,13022 ,7093,4831,4942 ,0,0,0}, - {13022,15231,14762 ,4942,7094,7093 ,0,0,0}, {14621,15225,14766 ,7078,7077,7080 ,0,0,0}, - {14764,15230,15227 ,7083,7090,7084 ,0,0,0}, {14763,15230,14764 ,7087,7090,7083 ,0,0,0}, - {14602,15222,14638 ,7073,7072,7095 ,0,0,0}, {14765,15228,15226 ,7086,7085,7079 ,0,0,0}, - {14585,15227,15228 ,7082,7084,7085 ,0,0,0}, {14621,14765,15226 ,7078,7086,7079 ,0,0,0}, - {15224,14766,15225 ,7081,7080,7077 ,0,0,0}, {15223,14602,14603 ,7071,7073,7047 ,0,0,0}, - {14603,15224,15223 ,7047,7081,7071 ,0,0,0}, {15219,14761,14641 ,7075,7069,7076 ,0,0,0}, - {14638,15220,14641 ,7095,7074,7076 ,0,0,0}, {15222,15220,14638 ,7072,7074,7095 ,0,0,0}, - {13005,15221,13006 ,7068,7070,4899 ,0,0,0}, {14761,15219,15221 ,7069,7075,7070 ,0,0,0}, - {15233,15234,12989 ,7018,7019,7065 ,0,0,0}, {12989,15235,15233 ,7065,7021,7018 ,0,0,0}, - {12989,12972,15235 ,7065,7096,7021 ,0,0,0}, {12989,15236,15237 ,7065,7023,7024 ,0,0,0}, - {15234,15236,12989 ,7019,7023,7065 ,0,0,0}, {12989,15238,15239 ,7065,7025,7026 ,0,0,0}, - {15237,15238,12989 ,7024,7025,7065 ,0,0,0}, {15239,15240,12989 ,7026,7027,7065 ,0,0,0}, - {15241,12989,15242 ,7028,7065,7029 ,0,0,0}, {12989,15240,15242 ,7065,7027,7029 ,0,0,0}, - {15243,12989,15244 ,7030,7065,7031 ,0,0,0}, {12989,15241,15244 ,7065,7028,7031 ,0,0,0}, - {15245,12989,15246 ,7032,7065,7033 ,0,0,0}, {12989,15243,15246 ,7065,7030,7033 ,0,0,0}, - {12988,12989,15245 ,7097,7065,7032 ,0,0,0}, {12971,14759,15235 ,7098,7099,7100 ,0,0,0}, - {15237,15236,14724 ,7101,7102,7103 ,0,0,0}, {15234,15233,14751 ,7104,7105,7076 ,0,0,0}, - {15239,14723,15240 ,7106,7107,7108 ,0,0,0}, {14758,14757,15238 ,7109,7110,7111 ,0,0,0}, - {14635,14632,15241 ,7112,7113,7114 ,0,0,0}, {14635,15242,14752 ,7112,7115,7116 ,0,0,0}, - {14637,14636,15243 ,7117,7118,7119 ,0,0,0}, {15243,15244,14637 ,7119,7120,7117 ,0,0,0}, - {15246,14636,14634 ,7121,7118,7122 ,0,0,0}, {14636,15246,15243 ,7118,7121,7119 ,0,0,0}, - {14633,15245,14634 ,7123,7124,7122 ,0,0,0}, {15246,14634,15245 ,7121,7122,7124 ,0,0,0}, - {14633,12987,12988 ,7123,4831,4831 ,0,0,0}, {12988,15245,14633 ,4831,7124,7123 ,0,0,0}, - {14723,15239,14757 ,7107,7106,7110 ,0,0,0}, {14632,15244,15241 ,7113,7120,7114 ,0,0,0}, - {14637,15244,14632 ,7117,7120,7113 ,0,0,0}, {14724,15236,14750 ,7103,7102,7125 ,0,0,0}, - {14752,15242,15240 ,7116,7115,7108 ,0,0,0}, {14635,15241,15242 ,7112,7114,7115 ,0,0,0}, - {14723,14752,15240 ,7107,7116,7108 ,0,0,0}, {15238,14757,15239 ,7111,7110,7106 ,0,0,0}, - {15237,14724,14758 ,7101,7103,7109 ,0,0,0}, {14758,15238,15237 ,7109,7111,7101 ,0,0,0}, - {15233,14759,14751 ,7105,7099,7076 ,0,0,0}, {14750,15234,14751 ,7125,7104,7076 ,0,0,0}, - {15236,15234,14750 ,7102,7104,7125 ,0,0,0}, {12971,15235,12972 ,7098,7100,4865 ,0,0,0}, - {14759,15233,15235 ,7099,7105,7100 ,0,0,0}, {15247,15248,12955 ,7018,7019,7126 ,0,0,0}, - {12955,15249,15247 ,7126,7021,7018 ,0,0,0}, {12955,12938,15249 ,7126,7127,7021 ,0,0,0}, - {12955,15250,15251 ,7126,7023,7024 ,0,0,0}, {15248,15250,12955 ,7019,7023,7126 ,0,0,0}, - {12955,15252,15253 ,7126,7025,7026 ,0,0,0}, {15251,15252,12955 ,7024,7025,7126 ,0,0,0}, - {15253,15254,12955 ,7026,7027,7126 ,0,0,0}, {15255,12955,15256 ,7028,7126,7029 ,0,0,0}, - {12955,15254,15256 ,7126,7027,7029 ,0,0,0}, {15257,12955,15258 ,7030,7126,7031 ,0,0,0}, - {12955,15255,15258 ,7126,7028,7031 ,0,0,0}, {15259,12955,15260 ,7032,7126,7033 ,0,0,0}, - {12955,15257,15260 ,7126,7030,7033 ,0,0,0}, {12954,12955,15259 ,7128,7126,7032 ,0,0,0}, - {12937,14740,15249 ,7129,7099,7130 ,0,0,0}, {15251,15250,14745 ,7131,7132,7133 ,0,0,0}, - {15248,15247,14739 ,7041,7075,7134 ,0,0,0}, {15253,14746,15254 ,7135,7107,7136 ,0,0,0}, - {14744,14772,15252 ,7137,7138,7139 ,0,0,0}, {14622,14623,15255 ,7140,7141,7142 ,0,0,0}, - {14622,15256,14728 ,7140,7143,7144 ,0,0,0}, {14706,14707,15257 ,7145,7146,7147 ,0,0,0}, - {15257,15258,14706 ,7147,7148,7145 ,0,0,0}, {15260,14707,14792 ,7149,7146,7150 ,0,0,0}, - {14707,15260,15257 ,7146,7149,7147 ,0,0,0}, {14791,15259,14792 ,7151,7152,7150 ,0,0,0}, - {15260,14792,15259 ,7149,7150,7152 ,0,0,0}, {14791,12953,12954 ,7151,7153,4831 ,0,0,0}, - {12954,15259,14791 ,4831,7152,7151 ,0,0,0}, {14746,15253,14772 ,7107,7135,7138 ,0,0,0}, - {14623,15258,15255 ,7141,7148,7142 ,0,0,0}, {14706,15258,14623 ,7145,7148,7141 ,0,0,0}, - {14745,15250,14748 ,7133,7132,7154 ,0,0,0}, {14728,15256,15254 ,7144,7143,7136 ,0,0,0}, - {14622,15255,15256 ,7140,7142,7143 ,0,0,0}, {14746,14728,15254 ,7107,7144,7136 ,0,0,0}, - {15252,14772,15253 ,7139,7138,7135 ,0,0,0}, {15251,14745,14744 ,7131,7133,7137 ,0,0,0}, - {14744,15252,15251 ,7137,7139,7131 ,0,0,0}, {15247,14740,14739 ,7075,7099,7134 ,0,0,0}, - {14748,15248,14739 ,7154,7041,7134 ,0,0,0}, {15250,15248,14748 ,7132,7041,7154 ,0,0,0}, - {12937,15249,12938 ,7129,7130,4929 ,0,0,0}, {14740,15247,15249 ,7099,7075,7130 ,0,0,0}, - {12898,12897,15261 ,4777,21,7155 ,0,0,0}, {14605,14618,15262 ,7156,7157,7158 ,0,0,0}, - {14614,15263,15264 ,7159,7160,7161 ,0,0,0}, {15265,15266,14596 ,7162,7163,7164 ,0,0,0}, - {15267,14662,14620 ,7165,7166,7167 ,0,0,0}, {14673,14717,15268 ,7168,7169,7170 ,0,0,0}, - {14658,15269,15270 ,7171,7172,7173 ,0,0,0}, {14648,15271,14680 ,7174,7175,7176 ,0,0,0}, - {15272,15273,14677 ,7177,7178,7179 ,0,0,0}, {15274,15275,14686 ,7180,7181,7182 ,0,0,0}, - {15276,14678,14680 ,7183,7184,7176 ,0,0,0}, {15277,15278,14687 ,7185,7186,7187 ,0,0,0}, - {15277,14684,15275 ,7185,7188,7181 ,0,0,0}, {14688,15278,15279 ,7189,7186,7190 ,0,0,0}, - {15278,14688,14687 ,7186,7189,7187 ,0,0,0}, {15280,14683,15279 ,7191,7192,7190 ,0,0,0}, - {14688,15279,14683 ,7189,7190,7192 ,0,0,0}, {15280,15281,14681 ,7191,7193,7194 ,0,0,0}, - {14681,14683,15280 ,7194,7192,7191 ,0,0,0}, {14690,15281,15282 ,7195,7193,7196 ,0,0,0}, - {15281,14690,14681 ,7193,7195,7194 ,0,0,0}, {12920,14691,15282 ,7197,7198,7196 ,0,0,0}, - {14690,15282,14691 ,7195,7196,7198 ,0,0,0}, {12921,14691,12920 ,7199,7198,7197 ,0,0,0}, - {14648,15273,15271 ,7174,7178,7175 ,0,0,0}, {14684,14686,15275 ,7188,7182,7181 ,0,0,0}, - {15277,14687,14684 ,7185,7187,7188 ,0,0,0}, {14678,15276,15274 ,7184,7183,7180 ,0,0,0}, - {15274,14686,14678 ,7180,7182,7184 ,0,0,0}, {15276,14680,15271 ,7183,7176,7175 ,0,0,0}, - {15273,14648,14677 ,7178,7174,7179 ,0,0,0}, {14673,15268,15272 ,7168,7170,7177 ,0,0,0}, - {14673,15272,14677 ,7168,7177,7179 ,0,0,0}, {14662,15265,14596 ,7166,7162,7164 ,0,0,0}, - {15270,14717,14658 ,7173,7169,7171 ,0,0,0}, {14717,15270,15268 ,7169,7173,7170 ,0,0,0}, - {14597,14596,15266 ,7200,7164,7163 ,0,0,0}, {14658,14597,15269 ,7171,7200,7172 ,0,0,0}, - {15269,14597,15266 ,7172,7200,7163 ,0,0,0}, {15267,15265,14662 ,7165,7162,7166 ,0,0,0}, - {15283,15267,14620 ,7201,7165,7167 ,0,0,0}, {14605,15262,15283 ,7156,7158,7201 ,0,0,0}, - {14605,15283,14620 ,7156,7201,7167 ,0,0,0}, {14719,15261,15263 ,7202,7155,7160 ,0,0,0}, - {15264,14618,14614 ,7161,7157,7159 ,0,0,0}, {14618,15264,15262 ,7157,7161,7158 ,0,0,0}, - {14719,15263,14614 ,7202,7160,7159 ,0,0,0}, {15261,14719,12898 ,7155,7202,4777 ,0,0,0}, - {12886,15274,12889 ,730,7015,730 ,0,0,0}, {15264,15263,15269 ,730,730,730 ,0,0,0}, - {12896,12892,15273 ,730,730,730 ,0,0,0}, {12890,15276,15271 ,730,730,7015 ,0,0,0}, - {15270,15269,15263 ,730,730,730 ,0,0,0}, {12897,15272,15261 ,730,730,730 ,0,0,0}, - {15267,15283,15262 ,730,730,730 ,0,0,0}, {15262,15264,15266 ,730,730,730 ,0,0,0}, - {15262,15266,15265 ,730,730,730 ,0,0,0}, {15267,15262,15265 ,730,730,730 ,0,0,0}, - {15263,15261,15270 ,730,730,730 ,0,0,0}, {15266,15264,15269 ,730,730,730 ,0,0,0}, - {15261,15268,15270 ,730,730,730 ,0,0,0}, {15272,12897,15273 ,730,730,730 ,0,0,0}, - {15268,15261,15272 ,730,730,730 ,0,0,0}, {15273,12892,15271 ,730,730,7015 ,0,0,0}, - {15273,12897,12896 ,730,730,730 ,0,0,0}, {15276,12890,12889 ,730,730,730 ,0,0,0}, - {15271,12892,12890 ,7015,730,730 ,0,0,0}, {15275,15274,12886 ,730,7015,730 ,0,0,0}, - {15274,15276,12889 ,7015,730,730 ,0,0,0}, {15277,12886,12885 ,7015,730,730 ,0,0,0}, - {12886,15277,15275 ,730,7015,730 ,0,0,0}, {15277,12885,15278 ,7015,730,730 ,0,0,0}, - {12878,15278,12882 ,730,730,730 ,0,0,0}, {15278,12885,12882 ,730,730,730 ,0,0,0}, - {12878,12877,15279 ,730,730,7015 ,0,0,0}, {15279,15278,12878 ,7015,730,730 ,0,0,0}, - {15279,12877,15280 ,7015,730,7015 ,0,0,0}, {12881,15281,15280 ,730,730,7015 ,0,0,0}, - {15280,12877,12881 ,7015,730,730 ,0,0,0}, {15281,12876,15282 ,730,730,7015 ,0,0,0}, - {12876,15281,12881 ,730,730,730 ,0,0,0}, {12872,12920,12876 ,730,7015,730 ,0,0,0}, - {15282,12876,12920 ,7015,730,7015 ,0,0,0}, {12919,12901,12917 ,7015,7015,730 ,0,0,0}, - {12872,12871,12919 ,730,730,7015 ,0,0,0}, {12913,12908,12911 ,7015,7015,7015 ,0,0,0}, - {12905,12914,12902 ,7015,7015,730 ,0,0,0}, {12913,12905,12907 ,7015,7015,7015 ,0,0,0}, - {12908,12913,12907 ,7015,7015,7015 ,0,0,0}, {12917,12902,12914 ,730,730,7015 ,0,0,0}, - {12914,12905,12913 ,7015,7015,7015 ,0,0,0}, {12919,12871,12901 ,7015,730,7015 ,0,0,0}, - {12917,12901,12902 ,730,7015,730 ,0,0,0}, {12919,12920,12872 ,7015,7015,730 ,0,0,0}, - {12848,14579,15284 ,126,7203,7204 ,0,0,0}, {15285,15286,14581 ,7205,7206,7207 ,0,0,0}, - {14631,15287,14699 ,7208,7209,7210 ,0,0,0}, {14720,14722,15288 ,7211,7212,7213 ,0,0,0}, - {15289,14592,15290 ,7214,7215,7216 ,0,0,0}, {15291,15292,14617 ,7217,7218,7219 ,0,0,0}, - {14642,15293,14760 ,7220,7221,7222 ,0,0,0}, {14611,15294,15295 ,7223,7224,7225 ,0,0,0}, - {14609,14610,15296 ,7226,7227,7228 ,0,0,0}, {14607,14601,15297 ,7229,7230,7231 ,0,0,0}, - {15298,14608,14607 ,7232,7233,7229 ,0,0,0}, {14599,14600,15299 ,7234,7235,7236 ,0,0,0}, - {15300,14601,14599 ,7237,7230,7234 ,0,0,0}, {14598,15301,14600 ,7238,7239,7235 ,0,0,0}, - {15299,14600,15301 ,7236,7235,7239 ,0,0,0}, {15302,14598,14591 ,7240,7238,7241 ,0,0,0}, - {14598,15302,15301 ,7238,7240,7239 ,0,0,0}, {14591,14590,15303 ,7241,7242,7243 ,0,0,0}, - {15303,15302,14591 ,7243,7240,7241 ,0,0,0}, {14587,15304,14590 ,7244,7245,7242 ,0,0,0}, - {15303,14590,15304 ,7243,7242,7245 ,0,0,0}, {15305,14587,12870 ,7246,7244,82 ,0,0,0}, - {14587,15305,15304 ,7244,7246,7245 ,0,0,0}, {12868,15305,12870 ,7011,7246,82 ,0,0,0}, - {14608,15298,15294 ,7233,7232,7224 ,0,0,0}, {15297,14601,15300 ,7231,7230,7237 ,0,0,0}, - {15300,14599,15299 ,7237,7234,7236 ,0,0,0}, {15297,15298,14607 ,7231,7232,7229 ,0,0,0}, - {15295,14610,14611 ,7225,7227,7223 ,0,0,0}, {15294,14611,14608 ,7224,7223,7233 ,0,0,0}, - {14610,15295,15296 ,7227,7225,7228 ,0,0,0}, {15291,14609,15296 ,7217,7226,7228 ,0,0,0}, - {15306,15288,14722 ,7247,7213,7212 ,0,0,0}, {14642,14617,15292 ,7220,7219,7218 ,0,0,0}, - {14609,15291,14617 ,7226,7217,7219 ,0,0,0}, {14760,15306,14722 ,7222,7247,7212 ,0,0,0}, - {14760,15293,15306 ,7222,7221,7247 ,0,0,0}, {15292,15293,14642 ,7218,7221,7220 ,0,0,0}, - {14581,15286,14631 ,7207,7206,7208 ,0,0,0}, {15288,15290,14720 ,7213,7216,7211 ,0,0,0}, - {15289,14594,14592 ,7214,7248,7215 ,0,0,0}, {14592,14720,15290 ,7215,7211,7216 ,0,0,0}, - {14594,15285,14581 ,7248,7205,7207 ,0,0,0}, {14594,15289,15285 ,7248,7214,7205 ,0,0,0}, - {14699,15287,15284 ,7210,7209,7204 ,0,0,0}, {15286,15287,14631 ,7206,7209,7208 ,0,0,0}, - {12848,12845,14579 ,126,4726,7203 ,0,0,0}, {15284,14579,14699 ,7204,7203,7210 ,0,0,0}, - {15299,15297,15300 ,7249,7250,7251 ,0,0,0}, {12850,15286,12852 ,726,726,7252 ,0,0,0}, - {15302,15297,15301 ,7253,7250,7253 ,0,0,0}, {15297,15299,15301 ,7250,7249,7253 ,0,0,0}, - {15298,15302,15303 ,7254,7253,7249 ,0,0,0}, {15302,15298,15297 ,7253,7254,7250 ,0,0,0}, - {15303,15304,15294 ,7249,7249,7255 ,0,0,0}, {15294,15298,15303 ,7255,7254,7249 ,0,0,0}, - {15304,15295,15294 ,7249,7256,7255 ,0,0,0}, {15305,12868,15295 ,7257,7257,7256 ,0,0,0}, - {15305,15295,15304 ,7257,7256,7249 ,0,0,0}, {15296,12867,15291 ,7258,726,7259 ,0,0,0}, - {15295,12868,15296 ,7256,7257,7258 ,0,0,0}, {15306,15293,12862 ,7260,7254,7257 ,0,0,0}, - {12864,15292,12867 ,7252,7261,726 ,0,0,0}, {12855,15290,12856 ,726,7262,7252 ,0,0,0}, - {12861,12858,15288 ,726,7252,7263 ,0,0,0}, {15287,12850,12849 ,7253,726,726 ,0,0,0}, - {15285,12855,12852 ,726,726,7252 ,0,0,0}, {12848,12825,12824 ,726,726,726 ,0,0,0}, - {12823,15284,12849 ,7264,7253,726 ,0,0,0}, {12829,12841,12842 ,726,7257,726 ,0,0,0}, - {12824,12830,12844 ,726,7264,726 ,0,0,0}, {12836,12838,12832 ,7257,726,7257 ,0,0,0}, - {12838,12841,12832 ,726,7257,7257 ,0,0,0}, {12836,12832,12834 ,7257,7257,7257 ,0,0,0}, - {12842,12830,12829 ,726,7264,726 ,0,0,0}, {12841,12829,12832 ,7257,726,7257 ,0,0,0}, - {12846,12824,12844 ,726,726,726 ,0,0,0}, {12844,12830,12842 ,726,7264,726 ,0,0,0}, - {12825,12848,15284 ,726,726,7253 ,0,0,0}, {12824,12846,12848 ,726,726,726 ,0,0,0}, - {12849,15284,15287 ,726,7253,7253 ,0,0,0}, {12825,15284,12823 ,726,7253,7264 ,0,0,0}, - {12852,15286,15285 ,7252,726,726 ,0,0,0}, {15286,12850,15287 ,726,726,7253 ,0,0,0}, - {15290,12855,15289 ,7262,726,7262 ,0,0,0}, {15289,12855,15285 ,7262,726,726 ,0,0,0}, - {12858,12856,15288 ,7252,7252,7263 ,0,0,0}, {12856,15290,15288 ,7252,7262,7263 ,0,0,0}, - {15288,15306,12861 ,7263,7260,726 ,0,0,0}, {12864,12862,15293 ,7252,7257,7254 ,0,0,0}, - {12862,12861,15306 ,7257,726,7260 ,0,0,0}, {12867,15292,15291 ,726,7261,7259 ,0,0,0}, - {12864,15293,15292 ,7252,7254,7261 ,0,0,0}, {12867,15296,12868 ,726,7258,7257 ,0,0,0}, - {12798,15307,14573 ,4799,7265,7266 ,0,0,0}, {15308,14575,15309 ,7267,7268,7269 ,0,0,0}, - {14574,14749,15310 ,7270,7271,7272 ,0,0,0}, {14756,15311,14583 ,7273,7274,7275 ,0,0,0}, - {15312,15313,14755 ,7276,7277,7278 ,0,0,0}, {15314,14753,15315 ,7279,7280,7281 ,0,0,0}, - {14773,14725,15316 ,7282,7283,7284 ,0,0,0}, {14774,15317,15318 ,7285,7286,7287 ,0,0,0}, - {14628,15319,14629 ,7288,7289,7290 ,0,0,0}, {14775,15320,14626 ,7291,7292,7293 ,0,0,0}, - {15321,14775,14584 ,7294,7291,7295 ,0,0,0}, {14625,15322,14776 ,7296,7297,7298 ,0,0,0}, - {15323,14625,14626 ,7299,7296,7293 ,0,0,0}, {14777,14776,15324 ,7300,7298,7301 ,0,0,0}, - {15322,15324,14776 ,7297,7301,7298 ,0,0,0}, {15325,14726,14777 ,7302,7303,7300 ,0,0,0}, - {14777,15324,15325 ,7300,7301,7302 ,0,0,0}, {14726,15326,14779 ,7303,7304,7305 ,0,0,0}, - {15326,14726,15325 ,7304,7303,7302 ,0,0,0}, {14778,14779,15327 ,7306,7305,7307 ,0,0,0}, - {15326,15327,14779 ,7304,7307,7305 ,0,0,0}, {15328,12820,14778 ,7308,21,7306 ,0,0,0}, - {14778,15327,15328 ,7306,7307,7308 ,0,0,0}, {12819,12820,15328 ,7309,21,7308 ,0,0,0}, - {14584,15318,15321 ,7295,7287,7294 ,0,0,0}, {15320,15323,14626 ,7292,7299,7293 ,0,0,0}, - {15323,15322,14625 ,7299,7297,7296 ,0,0,0}, {15320,14775,15321 ,7292,7291,7294 ,0,0,0}, - {15317,14774,14629 ,7286,7285,7290 ,0,0,0}, {15318,14584,14774 ,7287,7295,7285 ,0,0,0}, - {14629,15319,15317 ,7290,7289,7286 ,0,0,0}, {15314,15319,14628 ,7279,7289,7288 ,0,0,0}, - {15329,14583,15311 ,7310,7275,7274 ,0,0,0}, {14773,15315,14753 ,7282,7281,7280 ,0,0,0}, - {14628,14753,15314 ,7288,7280,7279 ,0,0,0}, {14725,14583,15329 ,7283,7275,7310 ,0,0,0}, - {14725,15329,15316 ,7283,7310,7284 ,0,0,0}, {15315,14773,15316 ,7281,7282,7284 ,0,0,0}, - {14575,14574,15309 ,7268,7270,7269 ,0,0,0}, {15311,14756,15313 ,7274,7273,7277 ,0,0,0}, - {15312,14755,14754 ,7276,7278,7311 ,0,0,0}, {14755,15313,14756 ,7278,7277,7273 ,0,0,0}, - {14754,14575,15308 ,7311,7268,7267 ,0,0,0}, {14754,15308,15312 ,7311,7267,7276 ,0,0,0}, - {14749,15307,15310 ,7271,7265,7272 ,0,0,0}, {15309,14574,15310 ,7269,7270,7272 ,0,0,0}, - {12798,14573,12795 ,4799,7266,7199 ,0,0,0}, {15307,14749,14573 ,7265,7271,7266 ,0,0,0}, - {15320,12790,12787 ,730,7312,6103 ,0,0,0}, {12783,15324,12786 ,7313,730,730 ,0,0,0}, - {12793,15317,12797 ,7314,7015,7315 ,0,0,0}, {15321,15318,12792 ,730,730,7316 ,0,0,0}, - {15316,15310,15315 ,730,7317,7313 ,0,0,0}, {15319,15307,12798 ,730,7318,7319 ,0,0,0}, - {15308,15309,15329 ,7320,7316,7316 ,0,0,0}, {15311,15313,15308 ,7320,6103,7320 ,0,0,0}, - {15312,15308,15313 ,6111,7320,6103 ,0,0,0}, {15316,15329,15309 ,730,7316,7316 ,0,0,0}, - {15329,15311,15308 ,7316,7320,7320 ,0,0,0}, {15307,15315,15310 ,7318,7313,7317 ,0,0,0}, - {15310,15316,15309 ,7317,730,7316 ,0,0,0}, {15319,15314,15307 ,730,7316,7318 ,0,0,0}, - {15307,15314,15315 ,7318,7316,7313 ,0,0,0}, {12797,15317,12798 ,7315,7015,7319 ,0,0,0}, - {12798,15317,15319 ,7319,7015,730 ,0,0,0}, {12792,15318,12793 ,7316,730,7314 ,0,0,0}, - {12793,15318,15317 ,7314,730,7015 ,0,0,0}, {15321,12792,12790 ,730,7316,7312 ,0,0,0}, - {12787,15323,15320 ,6103,7017,730 ,0,0,0}, {12790,15320,15321 ,7312,730,730 ,0,0,0}, - {15323,12787,15322 ,7017,6103,7017 ,0,0,0}, {12786,15324,15322 ,730,730,7017 ,0,0,0}, - {15322,12787,12786 ,7017,6103,730 ,0,0,0}, {15324,12783,12782 ,730,7313,730 ,0,0,0}, - {12782,12778,15325 ,730,7316,730 ,0,0,0}, {15325,15324,12782 ,730,730,730 ,0,0,0}, - {15326,12778,12780 ,7016,7316,7313 ,0,0,0}, {12778,15326,15325 ,7316,7016,730 ,0,0,0}, - {12774,15327,12780 ,7015,730,7313 ,0,0,0}, {15326,12780,15327 ,7016,7313,730 ,0,0,0}, - {15328,12774,12819 ,730,7015,730 ,0,0,0}, {15328,15327,12774 ,730,730,7015 ,0,0,0}, - {12774,12776,12819 ,7015,7015,730 ,0,0,0}, {12817,12799,12814 ,730,730,730 ,0,0,0}, - {12776,12772,12817 ,7015,730,730 ,0,0,0}, {12811,12807,12808 ,730,730,7017 ,0,0,0}, - {12802,12813,12801 ,7015,7016,730 ,0,0,0}, {12811,12802,12805 ,730,7015,730 ,0,0,0}, - {12807,12811,12805 ,730,730,730 ,0,0,0}, {12814,12801,12813 ,730,730,7016 ,0,0,0}, - {12813,12802,12811 ,7016,7015,730 ,0,0,0}, {12817,12772,12799 ,730,730,730 ,0,0,0}, - {12814,12799,12801 ,730,730,730 ,0,0,0}, {12817,12819,12776 ,730,730,7015 ,0,0,0}, - {13330,15330,15331 ,7321,1711,7322 ,0,0,0}, {13320,13317,15332 ,7323,7324,7325 ,0,0,0}, - {15333,13319,13328 ,7326,7327,7328 ,0,0,0}, {15146,15334,15145 ,7329,7330,7331 ,0,0,0}, - {15335,15336,13324 ,7332,7333,7334 ,0,0,0}, {15143,15337,15142 ,7335,7336,7337 ,0,0,0}, - {15337,15144,15338 ,7336,7338,7339 ,0,0,0}, {15141,15142,15339 ,7340,7337,7341 ,0,0,0}, - {15337,15339,15142 ,7336,7341,7337 ,0,0,0}, {15340,15140,15141 ,1359,1359,7340 ,0,0,0}, - {15141,15339,15340 ,7340,7341,1359 ,0,0,0}, {15338,15144,15145 ,7339,7338,7331 ,0,0,0}, - {15337,15143,15144 ,7336,7335,7338 ,0,0,0}, {15334,15146,15147 ,7330,7329,7342 ,0,0,0}, - {15334,15338,15145 ,7330,7339,7331 ,0,0,0}, {15147,13324,15336 ,7342,7334,7333 ,0,0,0}, - {15336,15334,15147 ,7333,7330,7342 ,0,0,0}, {13323,15332,15335 ,7343,7325,7332 ,0,0,0}, - {13323,15335,13324 ,7343,7332,7334 ,0,0,0}, {13317,15341,15332 ,7324,7344,7325 ,0,0,0}, - {13323,13320,15332 ,7343,7323,7325 ,0,0,0}, {15333,15341,13319 ,7326,7344,7327 ,0,0,0}, - {13317,13319,15341 ,7324,7327,7344 ,0,0,0}, {15333,13327,15331 ,7326,7345,7322 ,0,0,0}, - {13328,13327,15333 ,7328,7345,7326 ,0,0,0}, {15330,13330,13296 ,1711,7321,1711 ,0,0,0}, - {15331,13327,13330 ,7322,7345,7321 ,0,0,0}, {15330,13298,15342 ,2197,7346,7346 ,0,0,0}, - {13298,15330,13296 ,7346,2197,2197 ,0,0,0}, {15343,15344,15150 ,1435,7347,7348 ,0,0,0}, - {15151,15149,15345 ,7349,7350,7351 ,0,0,0}, {15148,15153,15346 ,7352,7353,7354 ,0,0,0}, - {13309,15347,13307 ,7355,7356,7357 ,0,0,0}, {15348,15349,13315 ,7358,7359,7360 ,0,0,0}, - {13303,15350,13301 ,7361,7362,7363 ,0,0,0}, {13303,13305,15350 ,7361,7364,7362 ,0,0,0}, - {13300,13301,15351 ,7365,7363,7366 ,0,0,0}, {15350,15351,13301 ,7362,7366,7363 ,0,0,0}, - {15342,13298,13300 ,1790,1790,7365 ,0,0,0}, {13300,15351,15342 ,7365,7366,1790 ,0,0,0}, - {13307,15352,13305 ,7357,7367,7364 ,0,0,0}, {15350,13305,15352 ,7362,7364,7367 ,0,0,0}, - {15148,15353,15149 ,7352,7368,7350 ,0,0,0}, {13309,13313,15347 ,7355,7369,7356 ,0,0,0}, - {15347,15352,13307 ,7356,7367,7357 ,0,0,0}, {13313,13315,15349 ,7369,7360,7359 ,0,0,0}, - {15349,15347,13313 ,7359,7356,7369 ,0,0,0}, {15348,13315,15152 ,7358,7360,7370 ,0,0,0}, - {15345,15152,15151 ,7351,7370,7349 ,0,0,0}, {15152,15345,15348 ,7370,7351,7358 ,0,0,0}, - {15353,15345,15149 ,7368,7351,7350 ,0,0,0}, {15346,15154,15344 ,7354,7371,7347 ,0,0,0}, - {15154,15346,15153 ,7371,7354,7353 ,0,0,0}, {15353,15148,15346 ,7368,7352,7354 ,0,0,0}, - {15343,15150,15139 ,1435,7348,1435 ,0,0,0}, {15344,15154,15150 ,7347,7371,7348 ,0,0,0}, - {15139,15340,15343 ,1398,7372,1398 ,0,0,0}, {15340,15139,15140 ,7372,1398,7372 ,0,0,0}, - {15340,15344,15343 ,7373,730,730 ,0,0,0}, {15341,15350,15352 ,730,730,730 ,0,0,0}, - {15338,15345,15353 ,7374,7375,7375 ,0,0,0}, {15353,15346,15337 ,7375,730,7373 ,0,0,0}, - {15336,15349,15348 ,7375,7375,7375 ,0,0,0}, {15348,15345,15334 ,7375,7375,730 ,0,0,0}, - {15352,15347,15332 ,730,730,7376 ,0,0,0}, {15347,15349,15335 ,730,7375,7375 ,0,0,0}, - {15331,15351,15333 ,730,730,730 ,0,0,0}, {15350,15333,15351 ,730,730,730 ,0,0,0}, - {15331,15330,15342 ,730,730,730 ,0,0,0}, {15342,15351,15331 ,730,730,730 ,0,0,0}, - {15352,15332,15341 ,730,7376,730 ,0,0,0}, {15350,15341,15333 ,730,730,730 ,0,0,0}, - {15347,15335,15332 ,730,7375,7376 ,0,0,0}, {15349,15336,15335 ,7375,7375,7375 ,0,0,0}, - {15348,15334,15336 ,7375,730,7375 ,0,0,0}, {15345,15338,15334 ,7375,7374,730 ,0,0,0}, - {15353,15337,15338 ,7375,7373,7374 ,0,0,0}, {15346,15339,15337 ,730,730,7373 ,0,0,0}, - {15340,15339,15344 ,7373,730,730 ,0,0,0}, {15346,15344,15339 ,730,730,730 ,0,0,0}, - {15354,13228,15355 ,7377,1435,1435 ,0,0,0}, {15356,13244,15357 ,7378,7379,7379 ,0,0,0}, - {15358,13219,13223 ,7380,7380,7377 ,0,0,0}, {13251,15359,15360 ,7381,7381,7382 ,0,0,0}, - {13246,15361,13249 ,7378,7383,7383 ,0,0,0}, {13258,15362,13260 ,7384,7385,7385 ,0,0,0}, - {15363,13258,13253 ,7384,7384,7382 ,0,0,0}, {13263,13260,15364 ,7386,7385,7386 ,0,0,0}, - {15362,15364,13260 ,7385,7386,7385 ,0,0,0}, {15365,13266,13263 ,7387,7388,7386 ,0,0,0}, - {13263,15364,15365 ,7386,7386,7387 ,0,0,0}, {15360,15363,13253 ,7382,7384,7382 ,0,0,0}, - {15363,15362,13258 ,7384,7385,7384 ,0,0,0}, {13249,15359,13251 ,7383,7381,7381 ,0,0,0}, - {13251,15360,13253 ,7381,7382,7382 ,0,0,0}, {13246,15356,15361 ,7378,7378,7383 ,0,0,0}, - {13249,15361,15359 ,7383,7383,7381 ,0,0,0}, {13244,13219,15357 ,7379,7380,7379 ,0,0,0}, - {13246,13244,15356 ,7378,7379,7378 ,0,0,0}, {15358,13223,15354 ,7380,7377,7377 ,0,0,0}, - {15357,13219,15358 ,7379,7380,7380 ,0,0,0}, {13228,15354,13223 ,1435,7377,7377 ,0,0,0}, - {15355,13225,15366 ,1398,1398,1398 ,0,0,0}, {13225,15355,13228 ,1398,1398,1398 ,0,0,0}, - {15367,15368,13350 ,7389,7390,7390 ,0,0,0}, {15369,13346,15370 ,7391,7391,7392 ,0,0,0}, - {13348,13257,15371 ,7392,7393,7393 ,0,0,0}, {13338,15372,15373 ,7394,7395,7394 ,0,0,0}, - {13343,15374,13342 ,7396,7396,7395 ,0,0,0}, {13333,15375,15376 ,7397,7398,7397 ,0,0,0}, - {15375,13333,13337 ,7398,7397,7398 ,0,0,0}, {15377,13331,15376 ,7399,7399,7397 ,0,0,0}, - {13333,15376,13331 ,7397,7397,7399 ,0,0,0}, {15377,15366,13225 ,7399,1359,1359 ,0,0,0}, - {13225,13331,15377 ,1359,7399,7399 ,0,0,0}, {15370,13348,15371 ,7392,7392,7393 ,0,0,0}, - {13337,13338,15373 ,7398,7394,7394 ,0,0,0}, {15373,15375,13337 ,7394,7398,7398 ,0,0,0}, - {15372,13338,13342 ,7395,7394,7395 ,0,0,0}, {15369,15374,13343 ,7391,7396,7396 ,0,0,0}, - {13342,15374,15372 ,7395,7396,7395 ,0,0,0}, {13348,15370,13346 ,7392,7392,7391 ,0,0,0}, - {13343,13346,15369 ,7396,7391,7391 ,0,0,0}, {13350,15368,13257 ,7390,7390,7393 ,0,0,0}, - {13257,15368,15371 ,7393,7390,7393 ,0,0,0}, {15367,13350,13216 ,7389,7390,7400 ,0,0,0}, - {15365,15367,13216 ,7401,7402,7402 ,0,0,0}, {15365,13216,13266 ,7401,7402,7401 ,0,0,0}, - {15377,15358,15354 ,7403,7403,7404 ,0,0,0}, {15363,15371,15362 ,7375,7375,730 ,0,0,0}, - {15359,15369,15360 ,7375,730,730 ,0,0,0}, {15370,15363,15360 ,730,7375,730 ,0,0,0}, - {15356,15372,15361 ,7373,7375,7373 ,0,0,0}, {15374,15359,15361 ,730,7375,7373 ,0,0,0}, - {15357,15376,15375 ,7405,7406,730 ,0,0,0}, {15373,15356,15357 ,7373,7373,7405 ,0,0,0}, - {15377,15376,15358 ,7403,7406,7403 ,0,0,0}, {15354,15355,15366 ,7404,730,7407 ,0,0,0}, - {15366,15377,15354 ,7407,7403,7404 ,0,0,0}, {15376,15357,15358 ,7406,7405,7403 ,0,0,0}, - {15373,15357,15375 ,7373,7405,730 ,0,0,0}, {15372,15356,15373 ,7375,7373,7373 ,0,0,0}, - {15374,15361,15372 ,730,7373,7375 ,0,0,0}, {15369,15359,15374 ,730,7375,730 ,0,0,0}, - {15370,15360,15369 ,730,730,730 ,0,0,0}, {15371,15363,15370 ,7375,7375,730 ,0,0,0}, - {15368,15362,15371 ,730,730,7375 ,0,0,0}, {15364,15368,15367 ,7373,730,730 ,0,0,0}, - {15368,15364,15362 ,730,7373,730 ,0,0,0}, {15364,15367,15365 ,7373,730,7405 ,0,0,0}, - {15378,15137,15379 ,7408,7409,7410 ,0,0,0}, {15380,15135,15381 ,7411,7412,7412 ,0,0,0}, - {15382,15134,15138 ,7413,7413,7408 ,0,0,0}, {15155,15383,15384 ,7414,7414,7415 ,0,0,0}, - {15136,15385,15156 ,7411,7416,7416 ,0,0,0}, {15132,15386,15133 ,7417,7418,7418 ,0,0,0}, - {15387,15132,15131 ,7417,7417,7415 ,0,0,0}, {15129,15133,15388 ,7419,7418,7419 ,0,0,0}, - {15386,15388,15133 ,7418,7419,7418 ,0,0,0}, {15389,15128,15129 ,1790,1790,7419 ,0,0,0}, - {15129,15388,15389 ,7419,7419,1790 ,0,0,0}, {15384,15387,15131 ,7415,7417,7415 ,0,0,0}, - {15387,15386,15132 ,7417,7418,7417 ,0,0,0}, {15156,15383,15155 ,7416,7414,7414 ,0,0,0}, - {15155,15384,15131 ,7414,7415,7415 ,0,0,0}, {15136,15380,15385 ,7411,7411,7416 ,0,0,0}, - {15156,15385,15383 ,7416,7416,7414 ,0,0,0}, {15135,15134,15381 ,7412,7413,7412 ,0,0,0}, - {15136,15135,15380 ,7411,7412,7411 ,0,0,0}, {15382,15138,15378 ,7413,7408,7408 ,0,0,0}, - {15381,15134,15382 ,7412,7413,7413 ,0,0,0}, {15137,15378,15138 ,7409,7408,7408 ,0,0,0}, - {15158,15390,15379 ,7420,7420,7421 ,0,0,0}, {15158,15379,15137 ,7420,7421,7421 ,0,0,0}, - {15391,15392,15167 ,1711,7422,7422 ,0,0,0}, {15393,15165,15394 ,7423,7423,7424 ,0,0,0}, - {15166,15157,15395 ,7424,7425,7425 ,0,0,0}, {15162,15396,15397 ,7426,7427,7426 ,0,0,0}, - {15164,15398,15163 ,7428,7428,7427 ,0,0,0}, {15160,15399,15400 ,7429,7430,7429 ,0,0,0}, - {15399,15160,15161 ,7430,7429,7430 ,0,0,0}, {15401,15159,15400 ,7431,7431,7429 ,0,0,0}, - {15160,15400,15159 ,7429,7429,7431 ,0,0,0}, {15401,15390,15158 ,7431,7432,82 ,0,0,0}, - {15158,15159,15401 ,82,7431,7431 ,0,0,0}, {15394,15166,15395 ,7424,7424,7425 ,0,0,0}, - {15161,15162,15397 ,7430,7426,7426 ,0,0,0}, {15397,15399,15161 ,7426,7430,7430 ,0,0,0}, - {15396,15162,15163 ,7427,7426,7427 ,0,0,0}, {15393,15398,15164 ,7423,7428,7428 ,0,0,0}, - {15163,15398,15396 ,7427,7428,7427 ,0,0,0}, {15166,15394,15165 ,7424,7424,7423 ,0,0,0}, - {15164,15165,15393 ,7428,7423,7423 ,0,0,0}, {15167,15392,15157 ,7422,7422,7425 ,0,0,0}, - {15157,15392,15395 ,7425,7422,7425 ,0,0,0}, {15391,15167,15130 ,1711,7422,1711 ,0,0,0}, - {15130,15389,15391 ,2197,2197,2197 ,0,0,0}, {15389,15130,15128 ,2197,2197,2197 ,0,0,0}, - {15389,15392,15391 ,7433,730,730 ,0,0,0}, {15380,15381,15397 ,7375,7375,730 ,0,0,0}, - {15384,15394,15387 ,730,730,730 ,0,0,0}, {15394,15395,15386 ,730,7376,730 ,0,0,0}, - {15385,15398,15383 ,730,730,7376 ,0,0,0}, {15393,15384,15383 ,730,730,7376 ,0,0,0}, - {15396,15385,15380 ,7376,730,7375 ,0,0,0}, {15400,15382,15378 ,7375,7376,7376 ,0,0,0}, - {15381,15382,15399 ,7375,7376,7375 ,0,0,0}, {15379,15401,15378 ,7374,7376,7376 ,0,0,0}, - {15400,15378,15401 ,7375,7376,7376 ,0,0,0}, {15390,15401,15379 ,730,7376,7374 ,0,0,0}, - {15399,15382,15400 ,7375,7376,7375 ,0,0,0}, {15397,15381,15399 ,730,7375,7375 ,0,0,0}, - {15396,15380,15397 ,7376,7375,730 ,0,0,0}, {15398,15385,15396 ,730,730,7376 ,0,0,0}, - {15393,15383,15398 ,730,7376,730 ,0,0,0}, {15394,15384,15393 ,730,730,730 ,0,0,0}, - {15394,15386,15387 ,730,730,730 ,0,0,0}, {15395,15388,15386 ,7376,7433,730 ,0,0,0}, - {15389,15388,15392 ,7433,7433,730 ,0,0,0}, {15395,15392,15388 ,7376,730,7433 ,0,0,0}, - {14565,12738,12736 ,7434,4326,7435 ,0,0,0}, {14737,14665,14562 ,7436,7437,7438 ,0,0,0}, - {14566,14664,14567 ,7439,7440,7441 ,0,0,0}, {14572,14560,14708 ,7442,7443,7444 ,0,0,0}, - {14570,14713,14771 ,7445,7446,7447 ,0,0,0}, {14716,14715,14550 ,7448,7449,7450 ,0,0,0}, - {14700,14568,14569 ,7451,7452,7453 ,0,0,0}, {14544,14543,14615 ,7454,7455,7456 ,0,0,0}, - {14546,14604,14606 ,7457,7458,7459 ,0,0,0}, {14534,14651,14538 ,7460,7461,7462 ,0,0,0}, - {14657,14616,14542 ,7463,7464,7465 ,0,0,0}, {14649,14576,14528 ,7466,7467,7468 ,0,0,0}, - {14652,14530,14576 ,7469,7470,7467 ,0,0,0}, {14721,14525,14532 ,7471,7472,7473 ,0,0,0}, - {14529,14525,14650 ,7474,7472,7475 ,0,0,0}, {14644,14533,14537 ,7476,7477,7478 ,0,0,0}, - {14532,14533,14643 ,7473,7477,7479 ,0,0,0}, {14540,14627,14537 ,7480,7481,7478 ,0,0,0}, - {14644,14537,14627 ,7476,7478,7481 ,0,0,0}, {14540,14549,14619 ,7480,7482,7483 ,0,0,0}, - {14619,14627,14540 ,7483,7481,7480 ,0,0,0}, {14593,14549,14548 ,7484,7482,7485 ,0,0,0}, - {14549,14593,14619 ,7482,7484,7483 ,0,0,0}, {14552,14582,14548 ,7486,7487,7485 ,0,0,0}, - {14593,14548,14582 ,7484,7485,7487 ,0,0,0}, {14552,14557,14580 ,7486,7488,7489 ,0,0,0}, - {14580,14582,14552 ,7489,7487,7486 ,0,0,0}, {14630,14557,14556 ,7490,7488,7491 ,0,0,0}, - {14557,14630,14580 ,7488,7490,7489 ,0,0,0}, {12770,14578,14556 ,82,7492,7491 ,0,0,0}, - {14630,14556,14578 ,7490,7491,7492 ,0,0,0}, {12769,14578,12770 ,82,7492,82 ,0,0,0}, - {14643,14721,14532 ,7479,7471,7473 ,0,0,0}, {14643,14533,14644 ,7479,7477,7476 ,0,0,0}, - {14529,14650,14649 ,7474,7475,7466 ,0,0,0}, {14650,14525,14721 ,7475,7472,7471 ,0,0,0}, - {14576,14530,14528 ,7467,7470,7468 ,0,0,0}, {14649,14528,14529 ,7466,7468,7474 ,0,0,0}, - {14652,14651,14534 ,7469,7461,7460 ,0,0,0}, {14652,14534,14530 ,7469,7460,7470 ,0,0,0}, - {14538,14657,14542 ,7462,7463,7465 ,0,0,0}, {14651,14657,14538 ,7461,7463,7462 ,0,0,0}, - {14543,14616,14615 ,7455,7464,7456 ,0,0,0}, {14542,14616,14543 ,7465,7464,7455 ,0,0,0}, - {14546,14544,14604 ,7457,7454,7458 ,0,0,0}, {14544,14615,14604 ,7454,7456,7458 ,0,0,0}, - {14716,14551,14606 ,7448,7493,7459 ,0,0,0}, {14551,14546,14606 ,7493,7457,7459 ,0,0,0}, - {14715,14569,14550 ,7449,7453,7450 ,0,0,0}, {14716,14550,14551 ,7448,7450,7493 ,0,0,0}, - {14700,14709,14568 ,7451,7494,7452 ,0,0,0}, {14715,14700,14569 ,7449,7451,7453 ,0,0,0}, - {14708,14560,14709 ,7444,7443,7494 ,0,0,0}, {14568,14709,14560 ,7452,7494,7443 ,0,0,0}, - {14570,14572,14713 ,7445,7442,7446 ,0,0,0}, {14572,14708,14713 ,7442,7444,7446 ,0,0,0}, - {14737,14561,14771 ,7436,7495,7447 ,0,0,0}, {14561,14570,14771 ,7495,7445,7447 ,0,0,0}, - {14665,14566,14562 ,7437,7439,7438 ,0,0,0}, {14737,14562,14561 ,7436,7438,7495 ,0,0,0}, - {14664,14666,14567 ,7440,7496,7441 ,0,0,0}, {14665,14664,14566 ,7437,7440,7439 ,0,0,0}, - {12738,14565,14666 ,4326,7434,7496 ,0,0,0}, {14567,14666,14565 ,7441,7496,7434 ,0,0,0}, - {15402,12686,12685 ,7497,763,7498 ,0,0,0}, {15403,14558,15404 ,7499,7500,7501 ,0,0,0}, - {15405,14571,14563 ,7502,7503,7504 ,0,0,0}, {15406,15407,14547 ,7505,7506,7507 ,0,0,0}, - {15408,15409,14555 ,7508,7509,7510 ,0,0,0}, {15410,14535,15411 ,7511,7512,7513 ,0,0,0}, - {14539,15412,15411 ,7514,7515,7513 ,0,0,0}, {15413,14527,15414 ,7516,7517,7518 ,0,0,0}, - {14526,15410,15414 ,7519,7511,7518 ,0,0,0}, {15415,14541,14536 ,7520,7521,7522 ,0,0,0}, - {14536,15413,15415 ,7522,7516,7520 ,0,0,0}, {14541,15416,14553 ,7521,7523,7524 ,0,0,0}, - {15416,14541,15415 ,7523,7521,7520 ,0,0,0}, {14554,14553,15417 ,7525,7524,7526 ,0,0,0}, - {15416,15417,14553 ,7523,7526,7524 ,0,0,0}, {12704,14554,15418 ,761,7525,7527 ,0,0,0}, - {14554,15417,15418 ,7525,7526,7527 ,0,0,0}, {12703,14554,12704 ,761,7525,761 ,0,0,0}, - {14526,15414,14527 ,7519,7518,7517 ,0,0,0}, {14536,14527,15413 ,7522,7517,7516 ,0,0,0}, - {14531,14535,15410 ,7528,7512,7511 ,0,0,0}, {14526,14531,15410 ,7519,7528,7511 ,0,0,0}, - {14545,15412,14539 ,7529,7515,7514 ,0,0,0}, {14535,14539,15411 ,7512,7514,7513 ,0,0,0}, - {14547,15407,14545 ,7507,7506,7529 ,0,0,0}, {15412,14545,15407 ,7515,7529,7506 ,0,0,0}, - {14555,15409,14547 ,7510,7509,7507 ,0,0,0}, {15409,15406,14547 ,7509,7505,7507 ,0,0,0}, - {14559,15403,15408 ,7530,7499,7508 ,0,0,0}, {14559,15408,14555 ,7530,7508,7510 ,0,0,0}, - {14558,14571,15404 ,7500,7503,7501 ,0,0,0}, {14559,14558,15403 ,7530,7500,7499 ,0,0,0}, - {15405,14563,15402 ,7502,7504,7497 ,0,0,0}, {15404,14571,15405 ,7501,7503,7502 ,0,0,0}, - {12686,15402,14564 ,763,7497,7531 ,0,0,0}, {15402,14563,14564 ,7497,7504,7531 ,0,0,0}, - {15417,15416,15415 ,7015,7532,7017 ,0,0,0}, {12690,15404,15405 ,7016,7015,7015 ,0,0,0}, - {15410,15413,15414 ,7533,7534,7535 ,0,0,0}, {15415,15410,15417 ,7017,7533,7015 ,0,0,0}, - {15417,15410,15418 ,7015,7533,7016 ,0,0,0}, {15410,15415,15413 ,7533,7017,7534 ,0,0,0}, - {15411,15418,15410 ,7536,7016,7533 ,0,0,0}, {15418,15412,12704 ,7016,730,7015 ,0,0,0}, - {15412,15418,15411 ,730,7016,7536 ,0,0,0}, {15409,12699,15406 ,7535,730,7320 ,0,0,0}, - {15412,15407,12704 ,730,6104,7015 ,0,0,0}, {15403,12693,15408 ,730,730,7534 ,0,0,0}, - {12696,15409,15408 ,7537,7535,7534 ,0,0,0}, {15402,12685,12689 ,7016,7015,730 ,0,0,0}, - {15405,12691,12690 ,7015,730,7016 ,0,0,0}, {12682,12670,12684 ,730,730,730 ,0,0,0}, - {12684,12668,12685 ,730,7016,7015 ,0,0,0}, {12681,12678,12682 ,730,730,730 ,0,0,0}, - {12670,12676,12675 ,730,7016,7016 ,0,0,0}, {12678,12670,12682 ,730,730,730 ,0,0,0}, - {12670,12669,12684 ,730,730,730 ,0,0,0}, {12670,12678,12676 ,730,730,7016 ,0,0,0}, - {12668,12689,12685 ,7016,730,7015 ,0,0,0}, {12669,12668,12684 ,730,7016,730 ,0,0,0}, - {12691,15405,12689 ,730,7015,730 ,0,0,0}, {12689,15405,15402 ,730,7015,7016 ,0,0,0}, - {12690,12693,15404 ,7016,730,7015 ,0,0,0}, {15408,12693,12695 ,7534,730,7537 ,0,0,0}, - {15404,12693,15403 ,7015,730,730 ,0,0,0}, {15408,12695,12696 ,7534,7537,7537 ,0,0,0}, - {12699,15407,15406 ,730,6104,7320 ,0,0,0}, {15409,12696,12699 ,7535,7537,730 ,0,0,0}, - {12704,15407,12701 ,7015,6104,730 ,0,0,0}, {12699,12701,15407 ,730,730,6104 ,0,0,0}, - {13613,13612,15419 ,7538,7539,7540 ,0,0,0}, {15420,13604,13613 ,7541,7542,7538 ,0,0,0}, - {15420,15421,13604 ,7541,82,7542 ,0,0,0}, {15419,15420,13613 ,7540,7541,7538 ,0,0,0}, - {13612,13983,15422 ,7539,7543,7544 ,0,0,0}, {13642,13641,15423 ,7545,7546,7547 ,0,0,0}, - {15424,15422,13983 ,7548,7544,7543 ,0,0,0}, {13983,13642,15424 ,7543,7545,7548 ,0,0,0}, - {15423,15424,13642 ,7547,7548,7545 ,0,0,0}, {13612,15422,15419 ,7539,7544,7540 ,0,0,0}, - {15423,13641,15425 ,7547,7546,7549 ,0,0,0}, {13640,15426,15425 ,7550,7551,7549 ,0,0,0}, - {15425,13641,13640 ,7549,7546,7550 ,0,0,0}, {15426,13640,13615 ,7551,7550,7552 ,0,0,0}, - {13628,15427,13615 ,7553,7554,7552 ,0,0,0}, {13628,13618,15428 ,7553,7555,7556 ,0,0,0}, - {13628,15428,15427 ,7553,7556,7554 ,0,0,0}, {15429,13609,15430 ,7557,7558,7559 ,0,0,0}, - {15428,13618,15429 ,7556,7555,7557 ,0,0,0}, {15429,13618,13609 ,7557,7555,7558 ,0,0,0}, - {13609,13611,15430 ,7558,7559,7559 ,0,0,0}, {15426,13615,15427 ,7551,7552,7554 ,0,0,0}, - {13605,15421,15431 ,7560,82,7561 ,0,0,0}, {15421,13605,13604 ,82,7560,7542 ,0,0,0}, - {15432,13647,15431 ,7562,7563,7561 ,0,0,0}, {13605,15431,13647 ,7560,7561,7563 ,0,0,0}, - {15432,15433,13861 ,7562,7564,7565 ,0,0,0}, {13861,13647,15432 ,7565,7563,7562 ,0,0,0}, - {13686,15433,15434 ,7566,7564,7567 ,0,0,0}, {15433,13686,13861 ,7564,7566,7565 ,0,0,0}, - {15435,13687,15434 ,7568,7569,7567 ,0,0,0}, {13686,15434,13687 ,7566,7567,7569 ,0,0,0}, - {15435,15436,13683 ,7568,7570,7571 ,0,0,0}, {13683,13687,15435 ,7571,7569,7568 ,0,0,0}, - {13651,15436,15437 ,7572,7570,7573 ,0,0,0}, {15436,13651,13683 ,7570,7572,7571 ,0,0,0}, - {15438,13670,15437 ,7574,7575,7573 ,0,0,0}, {13651,15437,13670 ,7572,7573,7575 ,0,0,0}, - {15438,15439,13671 ,7574,7576,7577 ,0,0,0}, {13671,13670,15438 ,7577,7575,7574 ,0,0,0}, - {13673,15439,15440 ,7578,7576,7579 ,0,0,0}, {15439,13673,13671 ,7576,7578,7577 ,0,0,0}, - {13673,15440,13674 ,7578,7579,7580 ,0,0,0}, {13674,15440,15441 ,7580,7579,7580 ,0,0,0}, - {14499,14505,15441 ,7581,7581,7581 ,0,0,0}, {15441,13111,14490 ,7581,7581,7581 ,0,0,0}, - {14490,14496,15441 ,7581,7581,7581 ,0,0,0}, {14510,15441,14505 ,7581,7581,7581 ,0,0,0}, - {14496,14499,15441 ,7581,7581,7581 ,0,0,0}, {14514,14473,15441 ,7581,7581,7581 ,0,0,0}, - {14514,15441,14510 ,7581,7581,7581 ,0,0,0}, {14473,14485,15441 ,7581,7581,7581 ,0,0,0}, - {13674,15441,14484 ,7581,7581,7581 ,0,0,0}, {14485,14484,15441 ,7581,7581,7581 ,0,0,0}, - {15430,13611,14057 ,7582,7582,7582 ,0,0,0}, {14057,14084,15430 ,7582,7582,7582 ,0,0,0}, - {15430,14070,14050 ,7582,7582,7582 ,0,0,0}, {14084,14070,15430 ,7582,7582,7582 ,0,0,0}, - {15430,14052,14066 ,7582,7582,7582 ,0,0,0}, {14050,14052,15430 ,7582,7582,7582 ,0,0,0}, - {15430,14059,14043 ,7582,7582,7582 ,0,0,0}, {14066,14059,15430 ,7582,7582,7582 ,0,0,0}, - {14047,15430,14042 ,7582,7582,7582 ,0,0,0}, {14043,14042,15430 ,7582,7582,7582 ,0,0,0}, - {15438,13116,13114 ,726,726,726 ,0,0,0}, {15431,15421,13116 ,726,726,726 ,0,0,0}, - {15440,15439,13114 ,726,726,726 ,0,0,0}, {13114,15439,15438 ,726,726,726 ,0,0,0}, - {13114,13108,15441 ,726,726,726 ,0,0,0}, {15441,15440,13114 ,726,726,726 ,0,0,0}, - {13117,13111,15441 ,7583,7583,726 ,0,0,0}, {13117,15441,13108 ,7583,726,726 ,0,0,0}, - {15438,15437,13116 ,726,726,726 ,0,0,0}, {13116,15436,15435 ,726,726,726 ,0,0,0}, - {15437,15436,13116 ,726,726,726 ,0,0,0}, {13116,15434,15433 ,726,726,726 ,0,0,0}, - {15435,15434,13116 ,726,726,726 ,0,0,0}, {13116,15432,15431 ,726,726,726 ,0,0,0}, - {15433,15432,13116 ,726,726,726 ,0,0,0}, {15420,13116,15421 ,726,726,726 ,0,0,0}, - {15419,15422,13116 ,726,726,726 ,0,0,0}, {15419,13116,15420 ,726,726,726 ,0,0,0}, - {15424,15423,13116 ,726,726,726 ,0,0,0}, {15424,13116,15422 ,726,726,726 ,0,0,0}, - {15425,15426,13116 ,726,726,726 ,0,0,0}, {15425,13116,15423 ,726,726,726 ,0,0,0}, - {15427,15428,13116 ,726,726,726 ,0,0,0}, {15427,13116,15426 ,726,726,726 ,0,0,0}, - {13116,15428,15168 ,726,726,726 ,0,0,0}, {15430,15168,15429 ,726,726,726 ,0,0,0}, - {15168,15428,15429 ,726,726,726 ,0,0,0}, {15169,15168,15430 ,726,726,726 ,0,0,0}, - {14047,15181,15430 ,7583,726,726 ,0,0,0}, {15169,15430,15181 ,726,726,726 ,0,0,0}, - {12646,15442,13900 ,7584,7585,7586 ,0,0,0}, {15443,13873,15444 ,7587,7588,7589 ,0,0,0}, - {13911,13833,15445 ,7590,7591,7592 ,0,0,0}, {13600,15446,13862 ,7593,7594,7595 ,0,0,0}, - {15447,15448,13603 ,4334,7596,7597 ,0,0,0}, {15449,13608,15450 ,7598,7599,7600 ,0,0,0}, - {13607,13865,15451 ,7601,7602,7603 ,0,0,0}, {13665,13657,15452 ,7604,7605,7606 ,0,0,0}, - {13661,15453,13657 ,7607,7608,7605 ,0,0,0}, {13662,15454,15455 ,7609,7610,7611 ,0,0,0}, - {13665,15456,13664 ,7604,7612,7613 ,0,0,0}, {15457,13675,15455 ,7614,7615,7611 ,0,0,0}, - {13662,15455,13675 ,7609,7611,7615 ,0,0,0}, {15457,15458,13668 ,7614,7616,7617 ,0,0,0}, - {13668,13675,15457 ,7617,7615,7614 ,0,0,0}, {13677,15458,15459 ,7618,7616,7619 ,0,0,0}, - {15458,13677,13668 ,7616,7618,7617 ,0,0,0}, {15460,13637,15459 ,7620,7621,7619 ,0,0,0}, - {13677,15459,13637 ,7618,7619,7621 ,0,0,0}, {15460,12665,12666 ,7620,7622,4289 ,0,0,0}, - {12666,13637,15460 ,4289,7621,7620 ,0,0,0}, {15452,13657,15453 ,7606,7605,7608 ,0,0,0}, - {15454,13664,15456 ,7610,7613,7612 ,0,0,0}, {13664,15454,13662 ,7613,7610,7609 ,0,0,0}, - {15452,15456,13665 ,7606,7612,7604 ,0,0,0}, {15449,15453,13661 ,7598,7608,7607 ,0,0,0}, - {13607,15451,15450 ,7601,7603,7600 ,0,0,0}, {13607,15450,13608 ,7601,7600,7599 ,0,0,0}, - {13661,13608,15449 ,7607,7599,7598 ,0,0,0}, {13865,15461,15451 ,7602,7623,7603 ,0,0,0}, - {15461,13865,13862 ,7623,7602,7595 ,0,0,0}, {15448,15446,13600 ,7596,7594,7593 ,0,0,0}, - {15446,15461,13862 ,7594,7623,7595 ,0,0,0}, {13603,15448,13600 ,7597,7596,7593 ,0,0,0}, - {13901,15443,15447 ,7624,7587,4334 ,0,0,0}, {13901,15447,13603 ,7624,4334,7597 ,0,0,0}, - {13873,13911,15444 ,7588,7590,7589 ,0,0,0}, {13901,13873,15443 ,7624,7588,7587 ,0,0,0}, - {13833,15442,15445 ,7591,7585,7592 ,0,0,0}, {15444,13911,15445 ,7589,7590,7592 ,0,0,0}, - {12646,13900,12644 ,7584,7586,4535 ,0,0,0}, {15442,13833,13900 ,7585,7591,7586 ,0,0,0}, - {15448,12657,15446 ,726,7625,726 ,0,0,0}, {15457,15455,15458 ,726,726,726 ,0,0,0}, - {15460,15459,15458 ,726,726,726 ,0,0,0}, {15456,15452,15454 ,726,726,726 ,0,0,0}, - {15458,15455,15452 ,726,726,726 ,0,0,0}, {15458,15452,15453 ,726,726,726 ,0,0,0}, - {15454,15452,15455 ,726,726,726 ,0,0,0}, {15453,15449,15460 ,726,726,726 ,0,0,0}, - {15460,15458,15453 ,726,726,726 ,0,0,0}, {15449,15450,12663 ,726,726,7626 ,0,0,0}, - {15449,12665,15460 ,726,726,726 ,0,0,0}, {15461,12659,12660 ,726,726,726 ,0,0,0}, - {12660,12663,15451 ,726,7626,726 ,0,0,0}, {15444,12648,12651 ,726,7627,726 ,0,0,0}, - {12653,12654,15447 ,726,7625,726 ,0,0,0}, {15445,12647,12648 ,7626,7627,7627 ,0,0,0}, - {12643,12628,12627 ,7626,7625,726 ,0,0,0}, {12646,12627,15442 ,726,726,726 ,0,0,0}, - {12639,12630,12640 ,726,7627,7625 ,0,0,0}, {12630,12639,12637 ,7627,726,726 ,0,0,0}, - {12639,12640,12634 ,726,7625,7627 ,0,0,0}, {12640,12643,12642 ,7625,7626,7628 ,0,0,0}, - {12630,12628,12640 ,7627,7625,7625 ,0,0,0}, {12630,12637,12631 ,7627,726,726 ,0,0,0}, - {12646,12643,12627 ,726,7626,726 ,0,0,0}, {12643,12640,12628 ,7626,7625,7625 ,0,0,0}, - {12625,15442,12627 ,726,726,726 ,0,0,0}, {15445,15442,12647 ,7626,726,7627 ,0,0,0}, - {12625,12647,15442 ,726,7627,726 ,0,0,0}, {15444,12651,15443 ,726,726,726 ,0,0,0}, - {12648,15444,15445 ,7627,726,7626 ,0,0,0}, {12653,15447,15443 ,726,726,726 ,0,0,0}, - {15443,12651,12653 ,726,726,726 ,0,0,0}, {12654,12657,15448 ,7625,7625,726 ,0,0,0}, - {15447,12654,15448 ,726,7625,726 ,0,0,0}, {15446,12659,15461 ,726,726,726 ,0,0,0}, - {15446,12657,12659 ,726,7625,726 ,0,0,0}, {12663,15450,15451 ,7626,726,726 ,0,0,0}, - {15451,15461,12660 ,726,726,726 ,0,0,0}, {12663,12665,15449 ,7626,726,726 ,0,0,0}, - {12607,15462,13881 ,4303,7629,7630 ,0,0,0}, {13804,13838,15463 ,7631,7632,7633 ,0,0,0}, - {13970,13882,15464 ,7634,7635,7636 ,0,0,0}, {13866,15465,13867 ,7637,7638,7639 ,0,0,0}, - {15466,15467,13803 ,7640,7641,7642 ,0,0,0}, {15468,15469,13648 ,7643,7644,7645 ,0,0,0}, - {15468,13868,15470 ,7643,7646,7647 ,0,0,0}, {15471,15472,13646 ,7648,7649,7650 ,0,0,0}, - {13646,13645,15471 ,7650,7651,7648 ,0,0,0}, {13829,15472,15473 ,7652,7649,7653 ,0,0,0}, - {15472,13829,13646 ,7649,7652,7650 ,0,0,0}, {15474,13828,15473 ,7654,7655,7653 ,0,0,0}, - {13829,15473,13828 ,7652,7653,7655 ,0,0,0}, {15474,12621,12622 ,7654,126,7656 ,0,0,0}, - {12622,13828,15474 ,7656,7655,7654 ,0,0,0}, {15465,13866,15467 ,7638,7637,7641 ,0,0,0}, - {15469,13645,13648 ,7644,7651,7645 ,0,0,0}, {15471,13645,15469 ,7648,7651,7644 ,0,0,0}, - {15463,13838,15475 ,7633,7632,7657 ,0,0,0}, {15470,13868,13867 ,7647,7646,7639 ,0,0,0}, - {15468,13648,13868 ,7643,7645,7646 ,0,0,0}, {15465,15470,13867 ,7638,7647,7639 ,0,0,0}, - {13803,15467,13866 ,7642,7641,7637 ,0,0,0}, {13804,15463,15466 ,7631,7633,7640 ,0,0,0}, - {15466,13803,13804 ,7640,7642,7631 ,0,0,0}, {13882,15462,15464 ,7635,7629,7636 ,0,0,0}, - {15475,13970,15464 ,7657,7634,7636 ,0,0,0}, {13838,13970,15475 ,7632,7634,7657 ,0,0,0}, - {12607,13881,12608 ,4303,7630,82 ,0,0,0}, {15462,13882,13881 ,7629,7635,7630 ,0,0,0}, - {15469,15468,12604 ,726,7658,7659 ,0,0,0}, {15462,15467,15463 ,7660,7661,726 ,0,0,0}, - {15462,15465,15467 ,7660,7661,7661 ,0,0,0}, {12606,15470,12607 ,7659,726,726 ,0,0,0}, - {15466,15463,15467 ,7661,726,7661 ,0,0,0}, {15464,15462,15463 ,7659,7660,726 ,0,0,0}, - {15465,15462,12607 ,7661,7660,726 ,0,0,0}, {15475,15464,15463 ,726,7659,726 ,0,0,0}, - {15465,12607,15470 ,7661,726,726 ,0,0,0}, {12604,15468,12606 ,7659,7658,7659 ,0,0,0}, - {12606,15468,15470 ,7659,7658,726 ,0,0,0}, {12602,15471,15469 ,726,5488,726 ,0,0,0}, - {12604,12602,15469 ,7659,726,726 ,0,0,0}, {12600,15471,12602 ,726,5488,726 ,0,0,0}, - {12600,15472,15471 ,726,7662,5488 ,0,0,0}, {15473,15472,12597 ,5471,7662,7661 ,0,0,0}, - {12600,12597,15472 ,726,7661,7662 ,0,0,0}, {12596,15473,12597 ,726,5471,7661 ,0,0,0}, - {15474,12596,12594 ,7663,726,7661 ,0,0,0}, {12596,15474,15473 ,726,7663,5471 ,0,0,0}, - {12593,12621,12594 ,7658,726,7661 ,0,0,0}, {15474,12594,12621 ,7663,7661,726 ,0,0,0}, - {12613,12609,12610 ,7658,7664,726 ,0,0,0}, {12613,12619,12609 ,7658,7665,7664 ,0,0,0}, - {12616,12613,12615 ,7666,7658,7667 ,0,0,0}, {12616,12619,12613 ,7666,7665,7658 ,0,0,0}, - {12621,12593,12619 ,726,7658,7665 ,0,0,0}, {12609,12619,12593 ,7664,7665,7658 ,0,0,0}, - {15476,13147,15477 ,726,726,726 ,0,0,0}, {13147,15478,15477 ,726,726,726 ,0,0,0}, - {15479,15480,13147 ,726,726,726 ,0,0,0}, {13147,15476,15479 ,726,726,726 ,0,0,0}, - {15481,15482,13147 ,726,726,726 ,0,0,0}, {15481,13147,15480 ,726,726,726 ,0,0,0}, - {13139,15483,15484 ,7583,726,7661 ,0,0,0}, {13147,15485,15486 ,726,726,726 ,0,0,0}, - {13139,15487,15488 ,7583,7658,7661 ,0,0,0}, {15489,13139,15490 ,726,7583,726 ,0,0,0}, - {15491,15492,13139 ,726,726,7583 ,0,0,0}, {15493,15490,13139 ,726,726,7583 ,0,0,0}, - {13139,15489,15494 ,7583,726,5489 ,0,0,0}, {15491,13139,15495 ,726,7583,7583 ,0,0,0}, - {13139,15492,15493 ,7583,726,726 ,0,0,0}, {13139,15496,15487 ,7583,726,7658 ,0,0,0}, - {15488,15495,13139 ,7661,7583,7583 ,0,0,0}, {15486,15483,13139 ,726,726,7583 ,0,0,0}, - {15496,13139,15484 ,726,7583,7661 ,0,0,0}, {13147,15482,15485 ,726,726,726 ,0,0,0}, - {13147,15486,13139 ,726,726,7583 ,0,0,0}, {13140,15494,13135 ,726,5489,7668 ,0,0,0}, - {15494,13140,13139 ,5489,726,7583 ,0,0,0}, {15478,13147,15497 ,726,726,726 ,0,0,0}, - {15498,13147,13145 ,726,726,726 ,0,0,0}, {13147,15498,15497 ,726,726,726 ,0,0,0}, - {15498,13145,13151 ,726,726,726 ,0,0,0}, {13601,13864,15496 ,7669,7670,7671 ,0,0,0}, - {15484,13602,13601 ,7672,7673,7669 ,0,0,0}, {15484,15483,13602 ,7672,7673,7673 ,0,0,0}, - {15496,15484,13601 ,7671,7672,7669 ,0,0,0}, {13864,13863,15487 ,7670,7674,7675 ,0,0,0}, - {13606,13660,15495 ,7676,7677,7678 ,0,0,0}, {15488,15487,13863 ,7679,7675,7674 ,0,0,0}, - {13863,13606,15488 ,7674,7676,7679 ,0,0,0}, {15495,15488,13606 ,7678,7679,7676 ,0,0,0}, - {13864,15487,15496 ,7670,7675,7671 ,0,0,0}, {15495,13660,15491 ,7678,7677,7680 ,0,0,0}, - {13659,15492,15491 ,7681,7682,7680 ,0,0,0}, {15491,13660,13659 ,7680,7677,7681 ,0,0,0}, - {15492,13659,13658 ,7682,7681,7683 ,0,0,0}, {13652,15493,13658 ,7684,7685,7683 ,0,0,0}, - {13652,13654,15490 ,7684,7686,7687 ,0,0,0}, {13652,15490,15493 ,7684,7687,7685 ,0,0,0}, - {15489,13655,15494 ,7688,7689,7690 ,0,0,0}, {15490,13654,15489 ,7687,7686,7688 ,0,0,0}, - {15489,13654,13655 ,7688,7686,7689 ,0,0,0}, {13655,13656,15494 ,7689,7690,7690 ,0,0,0}, - {15492,13658,15493 ,7682,7683,7685 ,0,0,0}, {13649,15483,15486 ,7691,7673,7692 ,0,0,0}, - {15483,13649,13602 ,7673,7691,7673 ,0,0,0}, {15485,13650,15486 ,7693,7694,7692 ,0,0,0}, - {13649,15486,13650 ,7691,7692,7694 ,0,0,0}, {15485,15482,13681 ,7693,7695,7696 ,0,0,0}, - {13681,13650,15485 ,7696,7694,7693 ,0,0,0}, {13682,15482,15481 ,7697,7695,7698 ,0,0,0}, - {15482,13682,13681 ,7695,7697,7696 ,0,0,0}, {15480,13904,15481 ,7699,7700,7698 ,0,0,0}, - {13682,15481,13904 ,7697,7698,7700 ,0,0,0}, {15480,15479,13685 ,7699,7701,7702 ,0,0,0}, - {13685,13904,15480 ,7702,7700,7699 ,0,0,0}, {13684,15479,15476 ,7703,7701,7704 ,0,0,0}, - {15479,13684,13685 ,7701,7703,7702 ,0,0,0}, {15477,13707,15476 ,7705,7706,7704 ,0,0,0}, - {13684,15476,13707 ,7703,7704,7706 ,0,0,0}, {15477,15478,13710 ,7705,7707,7708 ,0,0,0}, - {13710,13707,15477 ,7708,7706,7705 ,0,0,0}, {13711,15478,15497 ,7709,7707,7710 ,0,0,0}, - {15478,13711,13710 ,7707,7709,7708 ,0,0,0}, {13711,15497,13712 ,7709,7710,7711 ,0,0,0}, - {13712,15497,15498 ,7711,7710,7711 ,0,0,0}, {14413,15498,13151 ,7712,7712,7712 ,0,0,0}, - {15498,14414,14417 ,7712,7712,7712 ,0,0,0}, {14413,14414,15498 ,7712,7712,7712 ,0,0,0}, - {15498,14423,14428 ,7712,7712,7712 ,0,0,0}, {14417,14423,15498 ,7712,7712,7712 ,0,0,0}, - {15498,14432,14396 ,7712,7712,7712 ,0,0,0}, {14428,14432,15498 ,7712,7712,7712 ,0,0,0}, - {15498,14400,14399 ,7712,7712,7712 ,0,0,0}, {14396,14400,15498 ,7712,7712,7712 ,0,0,0}, - {15498,14399,13712 ,7712,7712,7712 ,0,0,0}, {14465,15494,13656 ,7713,7713,7713 ,0,0,0}, - {14465,14515,15494 ,7713,7713,7713 ,0,0,0}, {15494,14515,14501 ,7713,7713,7713 ,0,0,0}, - {14461,14467,15494 ,7713,7713,7713 ,0,0,0}, {14461,15494,14501 ,7713,7713,7713 ,0,0,0}, - {14467,14497,15494 ,7713,7713,7713 ,0,0,0}, {15494,14453,14452 ,7713,7713,7713 ,0,0,0}, - {14497,14453,15494 ,7713,7713,7713 ,0,0,0}, {13135,15494,14457 ,7713,7713,7713 ,0,0,0}, - {14452,14457,15494 ,7713,7713,7713 ,0,0,0}, {12570,15499,13919 ,1435,7714,7715 ,0,0,0}, - {15500,13910,15501 ,7716,7717,7718 ,0,0,0}, {13929,13918,15502 ,7719,7720,7721 ,0,0,0}, - {13590,15503,13691 ,7722,7723,7724 ,0,0,0}, {15504,15505,13932 ,7725,7726,7727 ,0,0,0}, - {15506,13713,15507 ,7728,7729,7730 ,0,0,0}, {13715,13692,15508 ,7731,7732,7733 ,0,0,0}, - {13597,13696,15509 ,7734,7735,7736 ,0,0,0}, {13701,15510,13696 ,7737,7738,7735 ,0,0,0}, - {13697,15511,15512 ,7739,7740,7741 ,0,0,0}, {13597,15513,13699 ,7734,7742,7743 ,0,0,0}, - {15514,13706,15512 ,7744,7745,7741 ,0,0,0}, {13697,15512,13706 ,7739,7741,7745 ,0,0,0}, - {15514,15515,13704 ,7744,7746,7747 ,0,0,0}, {13704,13706,15514 ,7747,7745,7744 ,0,0,0}, - {13717,15515,15516 ,7748,7746,7749 ,0,0,0}, {15515,13717,13704 ,7746,7748,7747 ,0,0,0}, - {15517,13703,15516 ,7750,7751,7749 ,0,0,0}, {13717,15516,13703 ,7748,7749,7751 ,0,0,0}, - {15517,12589,12590 ,7750,1359,1359 ,0,0,0}, {12590,13703,15517 ,1359,7751,7750 ,0,0,0}, - {15509,13696,15510 ,7736,7735,7738 ,0,0,0}, {15511,13699,15513 ,7740,7743,7742 ,0,0,0}, - {13699,15511,13697 ,7743,7740,7739 ,0,0,0}, {15509,15513,13597 ,7736,7742,7734 ,0,0,0}, - {15506,15510,13701 ,7728,7738,7737 ,0,0,0}, {13715,15508,15507 ,7731,7733,7730 ,0,0,0}, - {13715,15507,13713 ,7731,7730,7729 ,0,0,0}, {13701,13713,15506 ,7737,7729,7728 ,0,0,0}, - {13692,15518,15508 ,7732,7752,7733 ,0,0,0}, {15518,13692,13691 ,7752,7732,7724 ,0,0,0}, - {15505,15503,13590 ,7726,7723,7722 ,0,0,0}, {15503,15518,13691 ,7723,7752,7724 ,0,0,0}, - {13932,15505,13590 ,7727,7726,7722 ,0,0,0}, {13920,15500,15504 ,7753,7716,7725 ,0,0,0}, - {13920,15504,13932 ,7753,7725,7727 ,0,0,0}, {13910,13929,15501 ,7717,7719,7718 ,0,0,0}, - {13920,13910,15500 ,7753,7717,7716 ,0,0,0}, {13918,15499,15502 ,7720,7714,7721 ,0,0,0}, - {15501,13929,15502 ,7718,7719,7721 ,0,0,0}, {12570,13919,12568 ,1435,7715,1435 ,0,0,0}, - {15499,13918,13919 ,7714,7720,7715 ,0,0,0}, {15517,15516,15515 ,726,7628,7628 ,0,0,0}, - {12572,15512,12571 ,7627,7628,726 ,0,0,0}, {12551,12549,15513 ,7754,7625,7626 ,0,0,0}, - {15512,15511,12571 ,7628,726,726 ,0,0,0}, {12554,15506,12555 ,7755,726,7756 ,0,0,0}, - {12551,15513,15509 ,7754,7626,7626 ,0,0,0}, {15508,15518,12563 ,726,7628,7757 ,0,0,0}, - {15508,12561,15507 ,726,7758,7626 ,0,0,0}, {12564,12558,15503 ,7759,7760,7628 ,0,0,0}, - {15500,15501,15502 ,7625,7754,726 ,0,0,0}, {12567,12564,15505 ,7628,7759,7627 ,0,0,0}, - {12570,12567,15499 ,7628,7628,7761 ,0,0,0}, {15499,15500,15502 ,7761,7625,726 ,0,0,0}, - {12567,15504,15500 ,7628,7628,7625 ,0,0,0}, {15499,12567,15500 ,7761,7628,7625 ,0,0,0}, - {12567,12566,12564 ,7628,7762,7759 ,0,0,0}, {12567,15505,15504 ,7628,7627,7628 ,0,0,0}, - {12563,15503,12558 ,7757,7628,7760 ,0,0,0}, {15503,15505,12564 ,7628,7627,7759 ,0,0,0}, - {12563,15518,15503 ,7757,7628,7628 ,0,0,0}, {15507,12561,12555 ,7626,7758,7756 ,0,0,0}, - {12563,12561,15508 ,7757,7758,726 ,0,0,0}, {15510,15506,12554 ,7628,726,7755 ,0,0,0}, - {15506,15507,12555 ,726,7626,7756 ,0,0,0}, {15510,12552,15509 ,7628,7628,7626 ,0,0,0}, - {12552,15510,12554 ,7628,7628,7755 ,0,0,0}, {15511,15513,12549 ,726,7626,7625 ,0,0,0}, - {12552,12551,15509 ,7628,7754,7626 ,0,0,0}, {12575,15512,12572 ,7625,7628,7627 ,0,0,0}, - {12549,12571,15511 ,7625,726,726 ,0,0,0}, {15515,15514,12575 ,7628,7628,7625 ,0,0,0}, - {12575,15514,15512 ,7625,7628,7628 ,0,0,0}, {12577,15517,15515 ,7628,726,7628 ,0,0,0}, - {15515,12575,12577 ,7628,7625,7628 ,0,0,0}, {12577,12578,15517 ,7628,7628,726 ,0,0,0}, - {12581,12584,12587 ,7628,7628,7628 ,0,0,0}, {12578,12581,15517 ,7628,7628,726 ,0,0,0}, - {12587,15517,12581 ,7628,726,7628 ,0,0,0}, {12581,12583,12584 ,7628,726,7628 ,0,0,0}, - {15517,12587,12589 ,726,7628,7628 ,0,0,0}, {12531,15519,13880 ,1435,7763,7764 ,0,0,0}, - {13907,13909,15520 ,7765,7766,7767 ,0,0,0}, {13913,13914,15521 ,7768,7769,7770 ,0,0,0}, - {13879,15522,13878 ,7771,7772,7773 ,0,0,0}, {15523,15524,13908 ,7774,4221,7775 ,0,0,0}, - {15525,15526,13906 ,7776,7777,7778 ,0,0,0}, {15525,13905,15527 ,7776,7779,7780 ,0,0,0}, - {15528,15529,13722 ,7781,7782,7783 ,0,0,0}, {13722,13721,15528 ,7783,7784,7781 ,0,0,0}, - {13596,15529,15530 ,7785,7782,7786 ,0,0,0}, {15529,13596,13722 ,7782,7785,7783 ,0,0,0}, - {15531,13595,15530 ,7787,7788,7786 ,0,0,0}, {13596,15530,13595 ,7785,7786,7788 ,0,0,0}, - {15531,12545,12546 ,7787,1359,1359 ,0,0,0}, {12546,13595,15531 ,1359,7788,7787 ,0,0,0}, - {15522,13879,15524 ,7772,7771,4221 ,0,0,0}, {15526,13721,13906 ,7777,7784,7778 ,0,0,0}, - {15528,13721,15526 ,7781,7784,7777 ,0,0,0}, {15520,13909,15532 ,7767,7766,4227 ,0,0,0}, - {15527,13905,13878 ,7780,7779,7773 ,0,0,0}, {15525,13906,13905 ,7776,7778,7779 ,0,0,0}, - {15522,15527,13878 ,7772,7780,7773 ,0,0,0}, {13908,15524,13879 ,7775,4221,7771 ,0,0,0}, - {13907,15520,15523 ,7765,7767,7774 ,0,0,0}, {15523,13908,13907 ,7774,7775,7765 ,0,0,0}, - {13914,15519,15521 ,7769,7763,7770 ,0,0,0}, {15532,13913,15521 ,4227,7768,7770 ,0,0,0}, - {13909,13913,15532 ,7766,7768,4227 ,0,0,0}, {12531,13880,12532 ,1435,7764,1435 ,0,0,0}, - {15519,13914,13880 ,7763,7769,7764 ,0,0,0}, {12530,12539,12531 ,726,5471,7661 ,0,0,0}, - {15522,15525,15527 ,726,726,726 ,0,0,0}, {15528,15526,15525 ,7658,726,726 ,0,0,0}, - {15525,15522,15528 ,726,726,7658 ,0,0,0}, {15528,15524,15529 ,7658,726,7658 ,0,0,0}, - {15524,15528,15522 ,726,7658,726 ,0,0,0}, {15530,15529,15523 ,7658,7658,726 ,0,0,0}, - {15524,15523,15529 ,726,726,7658 ,0,0,0}, {15520,15531,15530 ,7658,7661,7658 ,0,0,0}, - {15530,15523,15520 ,7658,726,7658 ,0,0,0}, {15531,15532,12545 ,7661,7661,7664 ,0,0,0}, - {15532,15531,15520 ,7661,7661,7658 ,0,0,0}, {15532,15521,12545 ,7661,726,7664 ,0,0,0}, - {15521,15519,12543 ,726,726,7662 ,0,0,0}, {12537,12530,12528 ,7789,726,7658 ,0,0,0}, - {12518,12517,12524 ,5488,7668,7661 ,0,0,0}, {12534,12526,12533 ,7790,7664,7791 ,0,0,0}, - {12518,12524,12520 ,5488,7661,7792 ,0,0,0}, {12521,12520,12524 ,5488,7792,7661 ,0,0,0}, - {12526,12524,12533 ,7664,7661,7791 ,0,0,0}, {12533,12524,12517 ,7791,7661,7668 ,0,0,0}, - {12526,12534,12528 ,7664,7790,7658 ,0,0,0}, {12539,12530,12537 ,5471,726,7789 ,0,0,0}, - {12537,12528,12534 ,7789,7658,7790 ,0,0,0}, {12531,12540,15519 ,7661,7583,726 ,0,0,0}, - {12531,12539,12540 ,7661,5471,7583 ,0,0,0}, {15521,12543,12545 ,726,7662,7664 ,0,0,0}, - {12540,12543,15519 ,7583,7662,726 ,0,0,0}, {15533,13176,15534 ,7583,726,726 ,0,0,0}, - {15535,13172,15536 ,7668,726,5470 ,0,0,0}, {15535,15537,13172 ,7668,726,726 ,0,0,0}, - {13172,15538,15536 ,726,726,5470 ,0,0,0}, {15537,15539,13172 ,726,5489,726 ,0,0,0}, - {13172,15540,15541 ,726,7793,7794 ,0,0,0}, {15539,15540,13172 ,5489,7793,726 ,0,0,0}, - {13176,15542,13172 ,726,5470,726 ,0,0,0}, {15542,15538,13172 ,5470,726,726 ,0,0,0}, - {15543,15542,13176 ,726,5470,726 ,0,0,0}, {15544,13172,15541 ,7795,726,7794 ,0,0,0}, - {13176,15545,15543 ,726,5488,726 ,0,0,0}, {15544,15546,13172 ,7795,726,726 ,0,0,0}, - {15547,13172,15548 ,5485,726,7796 ,0,0,0}, {13172,15546,15548 ,726,726,7796 ,0,0,0}, - {13176,15549,15545 ,726,7583,5488 ,0,0,0}, {15550,13172,15547 ,7583,726,5485 ,0,0,0}, - {13176,15551,15549 ,726,726,7583 ,0,0,0}, {13176,15552,15553 ,726,5488,7583 ,0,0,0}, - {13176,15553,15551 ,726,7583,726 ,0,0,0}, {13173,15550,13168 ,5489,7583,7797 ,0,0,0}, - {13176,15533,15552 ,726,7583,5488 ,0,0,0}, {15550,13173,13172 ,7583,5489,726 ,0,0,0}, - {15534,13176,15554 ,726,726,7583 ,0,0,0}, {15555,13176,13183 ,726,726,726 ,0,0,0}, - {13176,15555,15554 ,726,726,7583 ,0,0,0}, {15555,13183,13182 ,726,726,726 ,0,0,0}, - {13591,13693,15535 ,7798,7799,7800 ,0,0,0}, {15536,13589,13591 ,7801,7802,7798 ,0,0,0}, - {15536,15538,13589 ,7801,7802,7802 ,0,0,0}, {15535,15536,13591 ,7800,7801,7798 ,0,0,0}, - {13693,13902,15537 ,7799,7803,7804 ,0,0,0}, {13714,13700,15540 ,7805,7806,7807 ,0,0,0}, - {15539,15537,13902 ,7808,7804,7803 ,0,0,0}, {13902,13714,15539 ,7803,7805,7808 ,0,0,0}, - {15540,15539,13714 ,7807,7808,7805 ,0,0,0}, {13693,15537,15535 ,7799,7804,7800 ,0,0,0}, - {15540,13700,15541 ,7807,7806,7809 ,0,0,0}, {13695,15544,15541 ,7810,7811,7809 ,0,0,0}, - {15541,13700,13695 ,7809,7806,7810 ,0,0,0}, {15544,13695,13694 ,7811,7810,7812 ,0,0,0}, - {13599,15546,13694 ,7813,7814,7812 ,0,0,0}, {13599,13678,15548 ,7813,7815,7816 ,0,0,0}, - {13599,15548,15546 ,7813,7816,7814 ,0,0,0}, {15547,13680,15550 ,7817,7818,7819 ,0,0,0}, - {15548,13678,15547 ,7816,7815,7817 ,0,0,0}, {15547,13678,13680 ,7817,7815,7818 ,0,0,0}, - {13680,13709,15550 ,7818,7819,7819 ,0,0,0}, {15544,13694,15546 ,7811,7812,7814 ,0,0,0}, - {13723,15538,15542 ,7820,7802,7821 ,0,0,0}, {15538,13723,13589 ,7802,7820,7802 ,0,0,0}, - {15543,13727,15542 ,7822,7823,7821 ,0,0,0}, {13723,15542,13727 ,7820,7821,7823 ,0,0,0}, - {15543,15545,13688 ,7822,7824,7825 ,0,0,0}, {13688,13727,15543 ,7825,7823,7822 ,0,0,0}, - {13689,15545,15549 ,7826,7824,7827 ,0,0,0}, {15545,13689,13688 ,7824,7826,7825 ,0,0,0}, - {15551,13764,15549 ,7828,7829,7827 ,0,0,0}, {13689,15549,13764 ,7826,7827,7829 ,0,0,0}, - {15551,15553,13592 ,7828,7830,7831 ,0,0,0}, {13592,13764,15551 ,7831,7829,7828 ,0,0,0}, - {13593,15553,15552 ,7832,7830,7833 ,0,0,0}, {15553,13593,13592 ,7830,7832,7831 ,0,0,0}, - {15533,13751,15552 ,7834,7835,7833 ,0,0,0}, {13593,15552,13751 ,7832,7833,7835 ,0,0,0}, - {15533,15534,13754 ,7834,7836,7837 ,0,0,0}, {13754,13751,15533 ,7837,7835,7834 ,0,0,0}, - {13758,15534,15554 ,7838,7836,7839 ,0,0,0}, {15534,13758,13754 ,7836,7838,7837 ,0,0,0}, - {13758,15554,13759 ,7838,7839,7840 ,0,0,0}, {13759,15554,15555 ,7840,7839,7840 ,0,0,0}, - {14326,15555,13182 ,7841,7841,7841 ,0,0,0}, {15555,14332,14335 ,7841,7841,7841 ,0,0,0}, - {14326,14332,15555 ,7841,7841,7841 ,0,0,0}, {15555,14341,14346 ,7841,7841,7841 ,0,0,0}, - {14335,14341,15555 ,7841,7841,7841 ,0,0,0}, {15555,14350,14309 ,7841,7841,7841 ,0,0,0}, - {14346,14350,15555 ,7841,7841,7841 ,0,0,0}, {15555,14321,14320 ,7841,7841,7841 ,0,0,0}, - {14309,14321,15555 ,7841,7841,7841 ,0,0,0}, {15555,14320,13759 ,7841,7841,7841 ,0,0,0}, - {14387,15550,13709 ,7842,7842,7842 ,0,0,0}, {14387,14433,15550 ,7842,7842,7842 ,0,0,0}, - {15550,14433,14419 ,7842,7842,7842 ,0,0,0}, {14381,14374,15550 ,7842,7842,7842 ,0,0,0}, - {14381,15550,14419 ,7842,7842,7842 ,0,0,0}, {14374,14415,15550 ,7842,7842,7842 ,0,0,0}, - {15550,14407,14369 ,7842,7842,7842 ,0,0,0}, {14415,14407,15550 ,7842,7842,7842 ,0,0,0}, - {13168,15550,14370 ,7842,7842,7842 ,0,0,0}, {14369,14370,15550 ,7842,7842,7842 ,0,0,0}, - {12494,15556,13944 ,1790,7843,4204 ,0,0,0}, {15557,13941,15558 ,7844,4198,4199 ,0,0,0}, - {13930,13943,15559 ,7845,7846,7847 ,0,0,0}, {13921,15560,13739 ,7848,7849,7850 ,0,0,0}, - {15561,15562,13954 ,7851,7852,7853 ,0,0,0}, {15563,13718,15564 ,7854,7855,7856 ,0,0,0}, - {13720,13737,15565 ,7857,7858,7859 ,0,0,0}, {13586,13585,15566 ,7860,7861,7862 ,0,0,0}, - {13741,15567,13585 ,7863,7864,7861 ,0,0,0}, {13745,15568,15569 ,7865,7866,7867 ,0,0,0}, - {13586,15570,13744 ,7860,7868,7869 ,0,0,0}, {15571,13750,15569 ,7870,7871,7867 ,0,0,0}, - {13745,15569,13750 ,7865,7867,7871 ,0,0,0}, {15571,15572,13748 ,7870,7872,7873 ,0,0,0}, - {13748,13750,15571 ,7873,7871,7870 ,0,0,0}, {13733,15572,15573 ,7874,7872,7875 ,0,0,0}, - {15572,13733,13748 ,7872,7874,7873 ,0,0,0}, {15574,13731,15573 ,7876,7877,7875 ,0,0,0}, - {13733,15573,13731 ,7874,7875,7877 ,0,0,0}, {15574,12513,12514 ,7876,1711,1711 ,0,0,0}, - {12514,13731,15574 ,1711,7877,7876 ,0,0,0}, {15566,13585,15567 ,7862,7861,7864 ,0,0,0}, - {15568,13744,15570 ,7866,7869,7868 ,0,0,0}, {13744,15568,13745 ,7869,7866,7865 ,0,0,0}, - {15566,15570,13586 ,7862,7868,7860 ,0,0,0}, {15563,15567,13741 ,7854,7864,7863 ,0,0,0}, - {13720,15565,15564 ,7857,7859,7856 ,0,0,0}, {13720,15564,13718 ,7857,7856,7855 ,0,0,0}, - {13741,13718,15563 ,7863,7855,7854 ,0,0,0}, {13737,15575,15565 ,7858,7878,7859 ,0,0,0}, - {15575,13737,13739 ,7878,7858,7850 ,0,0,0}, {15562,15560,13921 ,7852,7849,7848 ,0,0,0}, - {15560,15575,13739 ,7849,7878,7850 ,0,0,0}, {13954,15562,13921 ,7853,7852,7848 ,0,0,0}, - {13942,15557,15561 ,7879,7844,7851 ,0,0,0}, {13942,15561,13954 ,7879,7851,7853 ,0,0,0}, - {13941,13930,15558 ,4198,7845,4199 ,0,0,0}, {13942,13941,15557 ,7879,4198,7844 ,0,0,0}, - {13943,15556,15559 ,7846,7843,7847 ,0,0,0}, {15558,13930,15559 ,4199,7845,7847 ,0,0,0}, - {12494,13944,12492 ,1790,4204,1790 ,0,0,0}, {15556,13943,13944 ,7843,7846,4204 ,0,0,0}, - {15566,15567,15561 ,726,7880,7881 ,0,0,0}, {15556,15571,15569 ,7882,7627,7625 ,0,0,0}, - {15562,15563,15560 ,7883,7758,726 ,0,0,0}, {15575,15560,15563 ,7884,726,7758 ,0,0,0}, - {15564,15565,15575 ,7880,7761,7884 ,0,0,0}, {15563,15562,15567 ,7758,7883,7880 ,0,0,0}, - {15564,15575,15563 ,7880,7884,7758 ,0,0,0}, {15566,15561,15557 ,726,7881,7885 ,0,0,0}, - {15567,15562,15561 ,7880,7883,7881 ,0,0,0}, {15557,15558,15570 ,7885,7886,7758 ,0,0,0}, - {15570,15566,15557 ,7758,726,7885 ,0,0,0}, {15568,15558,15559 ,726,7886,7887 ,0,0,0}, - {15558,15568,15570 ,7886,726,7758 ,0,0,0}, {15569,15568,15559 ,7625,726,7887 ,0,0,0}, - {12494,15571,15556 ,7758,7627,7882 ,0,0,0}, {15556,15569,15559 ,7882,7625,7887 ,0,0,0}, - {15572,12494,12491 ,7627,7758,7755 ,0,0,0}, {12494,15572,15571 ,7758,7627,7627 ,0,0,0}, - {12490,15573,12491 ,7625,726,7755 ,0,0,0}, {15572,12491,15573 ,7627,7755,726 ,0,0,0}, - {12490,12488,15574 ,7625,7761,726 ,0,0,0}, {15574,15573,12490 ,726,726,7625 ,0,0,0}, - {12513,12488,12482 ,7627,7761,7625 ,0,0,0}, {12488,12513,15574 ,7761,7627,726 ,0,0,0}, - {12479,12507,12485 ,726,7627,7625 ,0,0,0}, {12487,12511,12482 ,7880,726,7625 ,0,0,0}, - {12505,12478,12502 ,7625,726,726 ,0,0,0}, {12499,12475,12496 ,7627,7625,7625 ,0,0,0}, - {12501,12502,12476 ,726,726,7625 ,0,0,0}, {12496,12473,12495 ,7625,7625,726 ,0,0,0}, - {12475,12499,12501 ,7625,7627,726 ,0,0,0}, {12476,12475,12501 ,7625,7625,726 ,0,0,0}, - {12496,12475,12473 ,7625,7625,7625 ,0,0,0}, {12479,12478,12505 ,726,726,7625 ,0,0,0}, - {12476,12502,12478 ,7625,726,726 ,0,0,0}, {12508,12485,12507 ,726,7625,7627 ,0,0,0}, - {12507,12479,12505 ,7627,726,7625 ,0,0,0}, {12487,12508,12511 ,7880,726,726 ,0,0,0}, - {12508,12487,12485 ,726,7880,7625 ,0,0,0}, {12511,12513,12482 ,726,7627,7625 ,0,0,0}, - {12455,15576,13874 ,1790,7888,7889 ,0,0,0}, {13926,13915,15577 ,7890,7891,7892 ,0,0,0}, - {13928,13875,15578 ,7893,7894,7895 ,0,0,0}, {13916,15579,13917 ,7896,7897,4137 ,0,0,0}, - {15580,15581,13927 ,7898,7899,7900 ,0,0,0}, {15582,15583,13925 ,7901,7902,7903 ,0,0,0}, - {15582,13924,15584 ,7901,7904,7905 ,0,0,0}, {15585,15586,13760 ,7906,7907,7908 ,0,0,0}, - {13760,13761,15585 ,7908,7909,7906 ,0,0,0}, {13923,15586,15587 ,7910,7907,7911 ,0,0,0}, - {15586,13923,13760 ,7907,7910,7908 ,0,0,0}, {15588,13734,15587 ,7912,7913,7911 ,0,0,0}, - {13923,15587,13734 ,7910,7911,7913 ,0,0,0}, {15588,12469,12470 ,7912,1711,1711 ,0,0,0}, - {12470,13734,15588 ,1711,7913,7912 ,0,0,0}, {15579,13916,15581 ,7897,7896,7899 ,0,0,0}, - {15583,13761,13925 ,7902,7909,7903 ,0,0,0}, {15585,13761,15583 ,7906,7909,7902 ,0,0,0}, - {15577,13915,15589 ,7892,7891,7914 ,0,0,0}, {15584,13924,13917 ,7905,7904,4137 ,0,0,0}, - {15582,13925,13924 ,7901,7903,7904 ,0,0,0}, {15579,15584,13917 ,7897,7905,4137 ,0,0,0}, - {13927,15581,13916 ,7900,7899,7896 ,0,0,0}, {13926,15577,15580 ,7890,7892,7898 ,0,0,0}, - {15580,13927,13926 ,7898,7900,7890 ,0,0,0}, {13875,15576,15578 ,7894,7888,7895 ,0,0,0}, - {15589,13928,15578 ,7914,7893,7895 ,0,0,0}, {13915,13928,15589 ,7891,7893,7914 ,0,0,0}, - {12455,13874,12456 ,1790,7889,1790 ,0,0,0}, {15576,13875,13874 ,7888,7894,7889 ,0,0,0}, - {15582,12463,15583 ,726,7658,726 ,0,0,0}, {15587,15586,12467 ,726,726,7660 ,0,0,0}, - {12469,15588,15587 ,726,7660,726 ,0,0,0}, {15582,15584,12461 ,726,726,7658 ,0,0,0}, - {12464,12467,15585 ,7660,7660,7659 ,0,0,0}, {15581,15580,12441 ,7659,726,7661 ,0,0,0}, - {15581,12457,15579 ,7659,726,726 ,0,0,0}, {12444,12442,15577 ,7915,7916,726 ,0,0,0}, - {15576,12450,12448 ,7658,7917,5475 ,0,0,0}, {15578,12445,15589 ,7658,726,7659 ,0,0,0}, - {12455,12454,12450 ,7918,7918,7917 ,0,0,0}, {12452,12450,12454 ,7661,7917,7918 ,0,0,0}, - {15578,15576,12448 ,7658,7658,5475 ,0,0,0}, {15576,12455,12450 ,7658,7918,7917 ,0,0,0}, - {12445,15578,12448 ,726,7658,5475 ,0,0,0}, {15589,12445,12444 ,7659,726,7915 ,0,0,0}, - {15577,12442,15580 ,726,7916,726 ,0,0,0}, {15589,12444,15577 ,7659,7915,726 ,0,0,0}, - {15581,12441,12457 ,7659,7661,726 ,0,0,0}, {15580,12442,12441 ,726,7916,7661 ,0,0,0}, - {12458,15584,15579 ,7664,726,726 ,0,0,0}, {12457,12458,15579 ,726,7664,726 ,0,0,0}, - {12463,15582,12461 ,7658,726,7658 ,0,0,0}, {12461,15584,12458 ,7658,726,7664 ,0,0,0}, - {15583,12464,15585 ,726,7660,7659 ,0,0,0}, {15583,12463,12464 ,726,7658,7660 ,0,0,0}, - {15587,12467,12469 ,726,7660,726 ,0,0,0}, {15586,15585,12467 ,726,7659,7660 ,0,0,0}, - {13213,15590,15591 ,726,5469,7919 ,0,0,0}, {15592,13213,15593 ,7920,726,7921 ,0,0,0}, - {13213,15592,15590 ,726,7920,5469 ,0,0,0}, {13213,15594,15593 ,726,726,7921 ,0,0,0}, - {15595,13213,15591 ,7922,726,7919 ,0,0,0}, {15594,13213,15596 ,726,726,7920 ,0,0,0}, - {15595,15597,13213 ,7922,7923,726 ,0,0,0}, {13213,15598,15599 ,726,7924,7925 ,0,0,0}, - {15599,15600,13213 ,7925,7926,726 ,0,0,0}, {15597,15598,13213 ,7923,7924,726 ,0,0,0}, - {15601,15602,13213 ,5472,7927,726 ,0,0,0}, {15601,13213,15600 ,5472,726,7926 ,0,0,0}, - {15603,15604,13213 ,7928,7929,726 ,0,0,0}, {15603,13213,15602 ,7928,726,7927 ,0,0,0}, - {15605,15606,13213 ,726,5489,726 ,0,0,0}, {15605,13213,15604 ,726,726,7929 ,0,0,0}, - {13213,15607,13212 ,726,5488,7583 ,0,0,0}, {15607,13213,15606 ,5488,726,5489 ,0,0,0}, - {13212,15608,15609 ,7583,5470,5489 ,0,0,0}, {15607,15608,13212 ,5488,5470,7583 ,0,0,0}, - {13208,13209,15609 ,5489,5488,5489 ,0,0,0}, {13212,15609,13209 ,7583,5489,5488 ,0,0,0}, - {13203,13208,15609 ,5489,5489,5489 ,0,0,0}, {13213,15180,15596 ,726,5489,7920 ,0,0,0}, - {15180,15610,15611 ,5489,5470,5488 ,0,0,0}, {15596,15180,15611 ,7920,5489,5488 ,0,0,0}, - {15612,15180,15179 ,5489,5489,726 ,0,0,0}, {15180,15612,15610 ,5489,5489,5470 ,0,0,0}, - {14243,15612,15178 ,5489,5489,7583 ,0,0,0}, {15179,15178,15612 ,726,7583,5489 ,0,0,0}, - {13777,13738,15600 ,7930,7931,7932 ,0,0,0}, {15599,13779,13777 ,7933,7934,7930 ,0,0,0}, - {15599,15598,13779 ,7933,7935,7934 ,0,0,0}, {15600,15599,13777 ,7932,7933,7930 ,0,0,0}, - {13738,13922,15601 ,7931,7936,7937 ,0,0,0}, {13719,13740,15603 ,7938,7939,7940 ,0,0,0}, - {15602,15601,13922 ,7941,7937,7936 ,0,0,0}, {13922,13719,15602 ,7936,7938,7941 ,0,0,0}, - {15603,15602,13719 ,7940,7941,7938 ,0,0,0}, {13738,15601,15600 ,7931,7937,7932 ,0,0,0}, - {15603,13740,15604 ,7940,7939,7942 ,0,0,0}, {13742,15605,15604 ,7943,7944,7942 ,0,0,0}, - {15604,13740,13742 ,7942,7939,7943 ,0,0,0}, {15605,13742,13587 ,7944,7943,7945 ,0,0,0}, - {13730,15606,13587 ,7946,7947,7945 ,0,0,0}, {13730,13743,15607 ,7946,7948,7949 ,0,0,0}, - {13730,15607,15606 ,7946,7949,7947 ,0,0,0}, {15608,13735,15609 ,7950,7951,7952 ,0,0,0}, - {15607,13743,15608 ,7949,7948,7950 ,0,0,0}, {15608,13743,13735 ,7950,7948,7951 ,0,0,0}, - {13735,13736,15609 ,7951,7952,7952 ,0,0,0}, {15605,13587,15606 ,7944,7945,7947 ,0,0,0}, - {13899,15598,15597 ,7953,7935,7954 ,0,0,0}, {15598,13899,13779 ,7935,7953,7934 ,0,0,0}, - {15595,13778,15597 ,7955,7956,7954 ,0,0,0}, {13899,15597,13778 ,7953,7954,7956 ,0,0,0}, - {15595,15591,13762 ,7955,7957,7958 ,0,0,0}, {13762,13778,15595 ,7958,7956,7955 ,0,0,0}, - {13763,15591,15590 ,7959,7957,7960 ,0,0,0}, {15591,13763,13762 ,7957,7959,7958 ,0,0,0}, - {15592,13936,15590 ,7961,7962,7960 ,0,0,0}, {13763,15590,13936 ,7959,7960,7962 ,0,0,0}, - {15592,15593,13876 ,7961,7963,7964 ,0,0,0}, {13876,13936,15592 ,7964,7962,7961 ,0,0,0}, - {13877,15593,15594 ,7965,7963,7966 ,0,0,0}, {15593,13877,13876 ,7963,7965,7964 ,0,0,0}, - {15596,13770,15594 ,7967,7968,7966 ,0,0,0}, {13877,15594,13770 ,7965,7966,7968 ,0,0,0}, - {15596,15611,13798 ,7967,7969,7970 ,0,0,0}, {13798,13770,15596 ,7970,7968,7967 ,0,0,0}, - {13799,15611,15610 ,7971,7969,7972 ,0,0,0}, {15611,13799,13798 ,7969,7971,7970 ,0,0,0}, - {13799,15610,13801 ,7971,7972,7973 ,0,0,0}, {13801,15610,15612 ,7973,7972,7973 ,0,0,0}, - {14253,14259,15612 ,7974,7974,7974 ,0,0,0}, {15612,14243,14244 ,7974,7974,7974 ,0,0,0}, - {14244,14250,15612 ,7974,7974,7974 ,0,0,0}, {14264,15612,14259 ,7974,7974,7974 ,0,0,0}, - {14250,14253,15612 ,7974,7974,7974 ,0,0,0}, {14268,14221,15612 ,7974,7974,7974 ,0,0,0}, - {14268,15612,14264 ,7974,7974,7974 ,0,0,0}, {14221,14233,15612 ,7974,7974,7974 ,0,0,0}, - {13801,15612,14232 ,7974,7974,7974 ,0,0,0}, {14233,14232,15612 ,7974,7974,7974 ,0,0,0}, - {15609,13736,14301 ,7975,7975,7975 ,0,0,0}, {14301,14351,15609 ,7975,7975,7975 ,0,0,0}, - {15609,14337,14297 ,7975,7975,7975 ,0,0,0}, {14351,14337,15609 ,7975,7975,7975 ,0,0,0}, - {15609,14303,14333 ,7975,7975,7975 ,0,0,0}, {14297,14303,15609 ,7975,7975,7975 ,0,0,0}, - {15609,14289,14288 ,7975,7975,7975 ,0,0,0}, {14333,14289,15609 ,7975,7975,7975 ,0,0,0}, - {13203,15609,14293 ,7975,7975,7975 ,0,0,0}, {14288,14293,15609 ,7975,7975,7975 ,0,0,0}, - {12418,15613,13949 ,126,7976,7977 ,0,0,0}, {15614,13951,15615 ,7978,7979,7980 ,0,0,0}, - {13965,13952,15616 ,7981,7982,7983 ,0,0,0}, {13766,15617,13757 ,7984,7985,7986 ,0,0,0}, - {15618,15619,13933 ,7987,7988,7989 ,0,0,0}, {15620,13784,15621 ,7990,7991,7992 ,0,0,0}, - {13802,13769,15622 ,7993,7994,7995 ,0,0,0}, {13794,13795,15623 ,7996,7997,7998 ,0,0,0}, - {13785,15624,13795 ,7999,8000,7997 ,0,0,0}, {13786,15625,15626 ,8001,8002,8003 ,0,0,0}, - {13794,15627,13788 ,7996,8004,8005 ,0,0,0}, {15628,13789,15626 ,8006,8007,8003 ,0,0,0}, - {13786,15626,13789 ,8001,8003,8007 ,0,0,0}, {15628,15629,13792 ,8006,8008,8009 ,0,0,0}, - {13792,13789,15628 ,8009,8007,8006 ,0,0,0}, {13831,15629,15630 ,8010,8008,8011 ,0,0,0}, - {15629,13831,13792 ,8008,8010,8009 ,0,0,0}, {15631,13793,15630 ,8012,8013,8011 ,0,0,0}, - {13831,15630,13793 ,8010,8011,8013 ,0,0,0}, {15631,12437,12438 ,8012,8014,4346 ,0,0,0}, - {12438,13793,15631 ,4346,8013,8012 ,0,0,0}, {15623,13795,15624 ,7998,7997,8000 ,0,0,0}, - {15625,13788,15627 ,8002,8005,8004 ,0,0,0}, {13788,15625,13786 ,8005,8002,8001 ,0,0,0}, - {15623,15627,13794 ,7998,8004,7996 ,0,0,0}, {15620,15624,13785 ,7990,8000,7999 ,0,0,0}, - {13802,15622,15621 ,7993,7995,7992 ,0,0,0}, {13802,15621,13784 ,7993,7992,7991 ,0,0,0}, - {13785,13784,15620 ,7999,7991,7990 ,0,0,0}, {13769,15632,15622 ,7994,8015,7995 ,0,0,0}, - {15632,13769,13757 ,8015,7994,7986 ,0,0,0}, {15619,15617,13766 ,7988,7985,7984 ,0,0,0}, - {15617,15632,13757 ,7985,8015,7986 ,0,0,0}, {13933,15619,13766 ,7989,7988,7984 ,0,0,0}, - {13950,15614,15618 ,8016,7978,7987 ,0,0,0}, {13950,15618,13933 ,8016,7987,7989 ,0,0,0}, - {13951,13965,15615 ,7979,7981,7980 ,0,0,0}, {13950,13951,15614 ,8016,7979,7978 ,0,0,0}, - {13952,15613,15616 ,7982,7976,7983 ,0,0,0}, {15615,13965,15616 ,7980,7981,7983 ,0,0,0}, - {12418,13949,12416 ,126,7977,4289 ,0,0,0}, {15613,13952,13949 ,7976,7982,7977 ,0,0,0}, - {15631,15630,15629 ,7625,7880,7758 ,0,0,0}, {12423,15614,15615 ,7626,7880,726 ,0,0,0}, - {15629,15626,15623 ,7758,8017,8018 ,0,0,0}, {15629,15628,15626 ,7758,7758,8017 ,0,0,0}, - {15625,15623,15626 ,8017,8018,8017 ,0,0,0}, {15625,15627,15623 ,8017,7758,8018 ,0,0,0}, - {15624,15629,15623 ,8019,7758,8018 ,0,0,0}, {15624,15620,15631 ,8019,7884,7625 ,0,0,0}, - {15631,15629,15624 ,7625,7758,8019 ,0,0,0}, {15620,15621,12435 ,7884,8020,7625 ,0,0,0}, - {15620,12437,15631 ,7884,7625,7625 ,0,0,0}, {15632,12431,12432 ,8021,7625,726 ,0,0,0}, - {12432,12435,15622 ,726,7625,7257 ,0,0,0}, {12425,12426,15618 ,726,726,8017 ,0,0,0}, - {12429,15617,15619 ,7625,8022,7761 ,0,0,0}, {12420,15616,12419 ,7626,726,7626 ,0,0,0}, - {15615,12420,12423 ,726,7626,7626 ,0,0,0}, {12415,12400,12399 ,7625,726,726 ,0,0,0}, - {12418,12399,15613 ,7625,726,7625 ,0,0,0}, {12411,12402,12412 ,726,726,7625 ,0,0,0}, - {12402,12411,12409 ,726,726,726 ,0,0,0}, {12406,12411,12412 ,7625,726,7625 ,0,0,0}, - {12414,12412,12415 ,7625,7625,7625 ,0,0,0}, {12412,12402,12400 ,7625,726,726 ,0,0,0}, - {12403,12402,12409 ,726,726,726 ,0,0,0}, {12399,12418,12415 ,726,7625,7625 ,0,0,0}, - {12400,12415,12412 ,726,7625,7625 ,0,0,0}, {15613,12397,12419 ,7625,726,7626 ,0,0,0}, - {12397,15613,12399 ,726,7625,726 ,0,0,0}, {15616,12420,15615 ,726,7626,726 ,0,0,0}, - {15613,12419,15616 ,7625,7626,726 ,0,0,0}, {12423,12425,15614 ,7626,726,7880 ,0,0,0}, - {15618,12426,15619 ,8017,726,7761 ,0,0,0}, {15614,12425,15618 ,7880,726,8017 ,0,0,0}, - {15619,12426,12429 ,7761,726,7625 ,0,0,0}, {15617,12431,15632 ,8022,7625,8021 ,0,0,0}, - {15617,12429,12431 ,8022,7625,7625 ,0,0,0}, {12435,15621,15622 ,7625,8020,7257 ,0,0,0}, - {15622,15632,12432 ,7257,8021,726 ,0,0,0}, {12435,12437,15620 ,7625,7625,7884 ,0,0,0}, - {12379,15633,13948 ,8023,8024,8025 ,0,0,0}, {13690,13893,15634 ,8026,8027,8028 ,0,0,0}, - {14000,13946,15635 ,8029,8030,8031 ,0,0,0}, {13939,15636,13931 ,8032,8033,8034 ,0,0,0}, - {15637,15638,13898 ,8035,8036,8037 ,0,0,0}, {15639,15640,13938 ,8038,8039,8040 ,0,0,0}, - {15639,13940,15641 ,8038,8041,8042 ,0,0,0}, {15642,15643,13937 ,8043,8044,8045 ,0,0,0}, - {13937,13837,15642 ,8045,8046,8043 ,0,0,0}, {13834,15643,15644 ,8047,8044,8048 ,0,0,0}, - {15643,13834,13937 ,8044,8047,8045 ,0,0,0}, {15645,13835,15644 ,8049,8050,8048 ,0,0,0}, - {13834,15644,13835 ,8047,8048,8050 ,0,0,0}, {15645,12393,12394 ,8049,82,82 ,0,0,0}, - {12394,13835,15645 ,82,8050,8049 ,0,0,0}, {15636,13939,15638 ,8033,8032,8036 ,0,0,0}, - {15640,13837,13938 ,8039,8046,8040 ,0,0,0}, {15642,13837,15640 ,8043,8046,8039 ,0,0,0}, - {15634,13893,15646 ,8028,8027,8051 ,0,0,0}, {15641,13940,13931 ,8042,8041,8034 ,0,0,0}, - {15639,13938,13940 ,8038,8040,8041 ,0,0,0}, {15636,15641,13931 ,8033,8042,8034 ,0,0,0}, - {13898,15638,13939 ,8037,8036,8032 ,0,0,0}, {13690,15634,15637 ,8026,8028,8035 ,0,0,0}, - {15637,13898,13690 ,8035,8037,8026 ,0,0,0}, {13946,15633,15635 ,8030,8024,8031 ,0,0,0}, - {15646,14000,15635 ,8051,8029,8031 ,0,0,0}, {13893,14000,15646 ,8027,8029,8051 ,0,0,0}, - {12379,13948,12380 ,8023,8025,8052 ,0,0,0}, {15633,13946,13948 ,8024,8030,8025 ,0,0,0}, - {15639,12376,15640 ,726,726,726 ,0,0,0}, {15643,12372,12369 ,726,7661,726 ,0,0,0}, - {15636,15638,15633 ,726,7660,726 ,0,0,0}, {15641,12379,12378 ,726,726,726 ,0,0,0}, - {15635,15633,15634 ,7661,726,726 ,0,0,0}, {15634,15646,15635 ,726,7658,7661 ,0,0,0}, - {15634,15638,15637 ,726,7660,726 ,0,0,0}, {15633,12379,15636 ,726,726,726 ,0,0,0}, - {15638,15634,15633 ,7660,726,726 ,0,0,0}, {15641,12378,15639 ,726,726,726 ,0,0,0}, - {15636,12379,15641 ,726,726,726 ,0,0,0}, {15639,12378,12376 ,726,726,726 ,0,0,0}, - {15640,12374,15642 ,726,7658,726 ,0,0,0}, {15640,12376,12374 ,726,726,7658 ,0,0,0}, - {15643,15642,12372 ,726,726,7661 ,0,0,0}, {12374,12372,15642 ,7658,7661,726 ,0,0,0}, - {15643,12369,15644 ,726,726,726 ,0,0,0}, {12368,15645,15644 ,726,726,726 ,0,0,0}, - {15644,12369,12368 ,726,726,726 ,0,0,0}, {15645,12366,12393 ,726,726,726 ,0,0,0}, - {12366,15645,12368 ,726,726,726 ,0,0,0}, {12366,12365,12393 ,726,726,726 ,0,0,0}, - {12385,12381,12382 ,7659,726,726 ,0,0,0}, {12385,12391,12381 ,7659,726,726 ,0,0,0}, - {12388,12385,12387 ,726,7659,726 ,0,0,0}, {12388,12391,12385 ,726,726,7659 ,0,0,0}, - {12393,12365,12391 ,726,726,726 ,0,0,0}, {12381,12391,12365 ,726,726,726 ,0,0,0}, - {15647,15648,15175 ,726,8053,7583 ,0,0,0}, {15177,15649,15176 ,726,726,726 ,0,0,0}, - {15648,15650,15175 ,8053,7922,7583 ,0,0,0}, {15647,15175,15651 ,726,7583,5472 ,0,0,0}, - {15175,15652,15653 ,7583,7664,5488 ,0,0,0}, {15650,15652,15175 ,7922,7664,7583 ,0,0,0}, - {15654,15655,15175 ,7920,726,7583 ,0,0,0}, {15653,15656,15175 ,5488,5471,7583 ,0,0,0}, - {15657,15658,15177 ,7664,7583,726 ,0,0,0}, {15177,15659,15660 ,726,5488,7664 ,0,0,0}, - {15661,15177,15662 ,726,726,726 ,0,0,0}, {15663,15664,15177 ,7664,7664,726 ,0,0,0}, - {15665,15662,15177 ,726,726,726 ,0,0,0}, {15177,15661,15649 ,726,726,726 ,0,0,0}, - {15663,15177,15666 ,7664,726,7664 ,0,0,0}, {15177,15664,15665 ,726,7664,726 ,0,0,0}, - {15177,15658,15666 ,726,7583,7664 ,0,0,0}, {15177,15660,15667 ,726,7664,726 ,0,0,0}, - {15177,15667,15657 ,726,726,7664 ,0,0,0}, {15655,15177,15175 ,726,726,7583 ,0,0,0}, - {15655,15659,15177 ,726,5488,726 ,0,0,0}, {15175,15656,15654 ,7583,5471,7920 ,0,0,0}, - {14204,15176,15649 ,726,726,726 ,0,0,0}, {15651,15175,15668 ,5472,7583,7793 ,0,0,0}, - {15669,15175,15174 ,5471,7583,7664 ,0,0,0}, {15175,15669,15668 ,7583,5471,7793 ,0,0,0}, - {15669,15174,14149 ,5471,7664,7920 ,0,0,0}, {13756,13755,15667 ,8054,8055,8056 ,0,0,0}, - {15660,13765,13756 ,8057,8058,8054 ,0,0,0}, {15660,15659,13765 ,8057,8058,8058 ,0,0,0}, - {15667,15660,13756 ,8056,8057,8054 ,0,0,0}, {13755,13934,15657 ,8055,8059,8060 ,0,0,0}, - {13832,13776,15666 ,8061,8062,8063 ,0,0,0}, {15658,15657,13934 ,8064,8060,8059 ,0,0,0}, - {13934,13832,15658 ,8059,8061,8064 ,0,0,0}, {15666,15658,13832 ,8063,8064,8061 ,0,0,0}, - {13755,15657,15667 ,8055,8060,8056 ,0,0,0}, {15666,13776,15663 ,8063,8062,8065 ,0,0,0}, - {13775,15664,15663 ,8066,8067,8065 ,0,0,0}, {15663,13776,13775 ,8065,8062,8066 ,0,0,0}, - {15664,13775,13935 ,8067,8066,8068 ,0,0,0}, {13783,15665,13935 ,8069,8070,8068 ,0,0,0}, - {13783,13782,15662 ,8069,8071,8072 ,0,0,0}, {13783,15662,15665 ,8069,8072,8070 ,0,0,0}, - {15661,13797,15649 ,8073,8074,8075 ,0,0,0}, {15662,13782,15661 ,8072,8071,8073 ,0,0,0}, - {15661,13782,13797 ,8073,8071,8074 ,0,0,0}, {13797,13800,15649 ,8074,8075,8075 ,0,0,0}, - {15664,13935,15665 ,8067,8068,8070 ,0,0,0}, {13588,15659,15655 ,8076,8058,8077 ,0,0,0}, - {15659,13588,13765 ,8058,8076,8058 ,0,0,0}, {15654,13836,15655 ,8078,8079,8077 ,0,0,0}, - {13588,15655,13836 ,8076,8077,8079 ,0,0,0}, {15654,15656,13780 ,8078,8080,8081 ,0,0,0}, - {13780,13836,15654 ,8081,8079,8078 ,0,0,0}, {13781,15656,15653 ,8082,8080,8083 ,0,0,0}, - {15656,13781,13780 ,8080,8082,8081 ,0,0,0}, {15652,13958,15653 ,8084,8085,8083 ,0,0,0}, - {13781,15653,13958 ,8082,8083,8085 ,0,0,0}, {15652,15650,13726 ,8084,8086,8087 ,0,0,0}, - {13726,13958,15652 ,8087,8085,8084 ,0,0,0}, {13725,15650,15648 ,8088,8086,8089 ,0,0,0}, - {15650,13725,13726 ,8086,8088,8087 ,0,0,0}, {15647,13809,15648 ,8090,8091,8089 ,0,0,0}, - {13725,15648,13809 ,8088,8089,8091 ,0,0,0}, {15647,15651,13849 ,8090,8092,8093 ,0,0,0}, - {13849,13809,15647 ,8093,8091,8090 ,0,0,0}, {13850,15651,15668 ,8094,8092,8095 ,0,0,0}, - {15651,13850,13849 ,8092,8094,8093 ,0,0,0}, {13850,15668,13851 ,8094,8095,8096 ,0,0,0}, - {13851,15668,15669 ,8096,8095,8096 ,0,0,0}, {14156,15669,14149 ,8097,8098,8097 ,0,0,0}, - {15669,14157,14160 ,8098,8097,8098 ,0,0,0}, {14156,14157,15669 ,8097,8097,8098 ,0,0,0}, - {15669,14166,14171 ,8098,8098,8097 ,0,0,0}, {14160,14166,15669 ,8098,8098,8098 ,0,0,0}, - {15669,14175,14134 ,8098,8098,8097 ,0,0,0}, {14171,14175,15669 ,8097,8098,8098 ,0,0,0}, - {15669,14138,14137 ,8098,8097,8097 ,0,0,0}, {14134,14138,15669 ,8097,8097,8098 ,0,0,0}, - {15669,14137,13851 ,8098,8097,8098 ,0,0,0}, {14213,15649,13800 ,8099,8099,8099 ,0,0,0}, - {14213,14269,15649 ,8099,8099,8099 ,0,0,0}, {15649,14269,14255 ,8099,8099,8099 ,0,0,0}, - {14209,14215,15649 ,8099,8099,8099 ,0,0,0}, {14209,15649,14255 ,8099,8099,8099 ,0,0,0}, - {14215,14251,15649 ,8099,8099,8099 ,0,0,0}, {15649,14198,14197 ,8099,8099,8099 ,0,0,0}, - {14251,14198,15649 ,8099,8099,8099 ,0,0,0}, {14204,15649,14202 ,8099,8099,8099 ,0,0,0}, - {14197,14202,15649 ,8099,8099,8099 ,0,0,0}, {12342,15670,13992 ,1359,8100,4482 ,0,0,0}, - {15671,13991,15672 ,4475,8101,8102 ,0,0,0}, {13993,13990,15673 ,8103,8104,4478 ,0,0,0}, - {13824,15674,13816 ,8105,8106,8107 ,0,0,0}, {15675,15676,13996 ,4472,8108,8109 ,0,0,0}, - {15677,13853,15678 ,8110,8111,8112 ,0,0,0}, {13852,13814,15679 ,8113,8114,8115 ,0,0,0}, - {13827,13820,15680 ,8116,8117,8118 ,0,0,0}, {13855,15681,13820 ,8119,8120,8117 ,0,0,0}, - {13845,15682,15683 ,8121,8122,8123 ,0,0,0}, {13827,15684,13847 ,8116,8124,8125 ,0,0,0}, - {15685,13844,15683 ,8126,8127,8123 ,0,0,0}, {13845,15683,13844 ,8121,8123,8127 ,0,0,0}, - {15685,15686,13842 ,8126,8128,8129 ,0,0,0}, {13842,13844,15685 ,8129,8127,8126 ,0,0,0}, - {13839,15686,15687 ,8130,8128,8131 ,0,0,0}, {15686,13839,13842 ,8128,8130,8129 ,0,0,0}, - {15688,13840,15687 ,8132,8133,8131 ,0,0,0}, {13839,15687,13840 ,8130,8131,8133 ,0,0,0}, - {15688,12361,12362 ,8132,1435,1435 ,0,0,0}, {12362,13840,15688 ,1435,8133,8132 ,0,0,0}, - {15680,13820,15681 ,8118,8117,8120 ,0,0,0}, {15682,13847,15684 ,8122,8125,8124 ,0,0,0}, - {13847,15682,13845 ,8125,8122,8121 ,0,0,0}, {15680,15684,13827 ,8118,8124,8116 ,0,0,0}, - {15677,15681,13855 ,8110,8120,8119 ,0,0,0}, {13852,15679,15678 ,8113,8115,8112 ,0,0,0}, - {13852,15678,13853 ,8113,8112,8111 ,0,0,0}, {13855,13853,15677 ,8119,8111,8110 ,0,0,0}, - {13814,15689,15679 ,8114,8134,8115 ,0,0,0}, {15689,13814,13816 ,8134,8114,8107 ,0,0,0}, - {15676,15674,13824 ,8108,8106,8105 ,0,0,0}, {15674,15689,13816 ,8106,8134,8107 ,0,0,0}, - {13996,15676,13824 ,8109,8108,8105 ,0,0,0}, {13972,15671,15675 ,4474,4475,4472 ,0,0,0}, - {13972,15675,13996 ,4474,4472,8109 ,0,0,0}, {13991,13993,15672 ,8101,8103,8102 ,0,0,0}, - {13972,13991,15671 ,4474,8101,4475 ,0,0,0}, {13990,15670,15673 ,8104,8100,4478 ,0,0,0}, - {15672,13993,15673 ,8102,8103,4478 ,0,0,0}, {12342,13992,12340 ,1359,4482,1359 ,0,0,0}, - {15670,13990,13992 ,8100,8104,4482 ,0,0,0}, {12336,15674,15676 ,726,726,726 ,0,0,0}, - {15682,12343,15683 ,726,7626,7758 ,0,0,0}, {15688,15687,15686 ,7625,7625,726 ,0,0,0}, - {15684,15680,12323 ,8135,7628,7626 ,0,0,0}, {12323,12321,15684 ,7626,7626,8135 ,0,0,0}, - {12333,15678,15679 ,726,7627,726 ,0,0,0}, {12326,15677,12327 ,726,7628,726 ,0,0,0}, - {12330,15674,12336 ,726,726,726 ,0,0,0}, {15679,15689,12335 ,726,726,726 ,0,0,0}, - {15671,15672,15673 ,7628,7628,726 ,0,0,0}, {12339,12336,15676 ,726,726,726 ,0,0,0}, - {12342,12339,15670 ,726,726,726 ,0,0,0}, {15670,15671,15673 ,726,7628,726 ,0,0,0}, - {15670,12339,15671 ,726,726,7628 ,0,0,0}, {15676,15675,12339 ,726,726,726 ,0,0,0}, - {12339,15675,15671 ,726,726,7628 ,0,0,0}, {15674,12330,12335 ,726,726,726 ,0,0,0}, - {12339,12338,12336 ,726,726,726 ,0,0,0}, {12335,12333,15679 ,726,726,726 ,0,0,0}, - {12335,15689,15674 ,726,726,726 ,0,0,0}, {15677,15678,12327 ,7628,7627,726 ,0,0,0}, - {12327,15678,12333 ,726,7627,726 ,0,0,0}, {12324,15681,12326 ,726,726,726 ,0,0,0}, - {12326,15681,15677 ,726,726,7628 ,0,0,0}, {12324,12323,15680 ,726,7626,7628 ,0,0,0}, - {15680,15681,12324 ,7628,726,726 ,0,0,0}, {12321,12343,15682 ,7626,7626,726 ,0,0,0}, - {12321,15682,15684 ,7626,726,8135 ,0,0,0}, {12344,15683,12343 ,7626,7758,7626 ,0,0,0}, - {15685,15683,12347 ,8135,7758,7628 ,0,0,0}, {12344,12347,15683 ,7626,7628,7758 ,0,0,0}, - {12347,12349,15686 ,7628,726,726 ,0,0,0}, {15686,15685,12347 ,726,8135,7628 ,0,0,0}, - {15688,12349,12350 ,7625,726,7626 ,0,0,0}, {12349,15688,15686 ,726,7625,726 ,0,0,0}, - {12353,12356,12359 ,7626,726,7626 ,0,0,0}, {12350,12353,15688 ,7626,7626,7625 ,0,0,0}, - {12359,15688,12353 ,7626,7625,7626 ,0,0,0}, {12353,12355,12356 ,7626,7627,726 ,0,0,0}, - {15688,12359,12361 ,7625,7626,8135 ,0,0,0}, {12303,15690,13978 ,1359,8136,8137 ,0,0,0}, - {13961,13963,15691 ,8138,8139,8140 ,0,0,0}, {13980,13982,15692 ,8141,8142,8143 ,0,0,0}, - {13768,15693,13767 ,8144,8145,8146 ,0,0,0}, {15694,15695,13962 ,8147,8148,8149 ,0,0,0}, - {15696,15697,13960 ,8150,8151,8152 ,0,0,0}, {15696,13959,15698 ,8150,8153,8154 ,0,0,0}, - {15699,15700,13892 ,8155,8156,8157 ,0,0,0}, {13892,13891,15699 ,8157,8158,8155 ,0,0,0}, - {13806,15700,15701 ,8159,8156,8160 ,0,0,0}, {15700,13806,13892 ,8156,8159,8157 ,0,0,0}, - {15702,13805,15701 ,8161,8162,8160 ,0,0,0}, {13806,15701,13805 ,8159,8160,8162 ,0,0,0}, - {15702,12317,12318 ,8161,1435,1435 ,0,0,0}, {12318,13805,15702 ,1435,8162,8161 ,0,0,0}, - {15693,13768,15695 ,8145,8144,8148 ,0,0,0}, {15697,13891,13960 ,8151,8158,8152 ,0,0,0}, - {15699,13891,15697 ,8155,8158,8151 ,0,0,0}, {15691,13963,15703 ,8140,8139,8163 ,0,0,0}, - {15698,13959,13767 ,8154,8153,8146 ,0,0,0}, {15696,13960,13959 ,8150,8152,8153 ,0,0,0}, - {15693,15698,13767 ,8145,8154,8146 ,0,0,0}, {13962,15695,13768 ,8149,8148,8144 ,0,0,0}, - {13961,15691,15694 ,8138,8140,8147 ,0,0,0}, {15694,13962,13961 ,8147,8149,8138 ,0,0,0}, - {13982,15690,15692 ,8142,8136,8143 ,0,0,0}, {15703,13980,15692 ,8163,8141,8143 ,0,0,0}, - {13963,13980,15703 ,8139,8141,8163 ,0,0,0}, {12303,13978,12304 ,1359,8137,1359 ,0,0,0}, - {15690,13982,13978 ,8136,8142,8137 ,0,0,0}, {15700,15695,15694 ,726,7661,7661 ,0,0,0}, - {15696,15698,15699 ,7661,7658,726 ,0,0,0}, {15699,15697,15696 ,726,726,7661 ,0,0,0}, - {15693,15695,15699 ,7658,7661,726 ,0,0,0}, {15693,15699,15698 ,7658,726,7658 ,0,0,0}, - {15694,15701,15700 ,7661,726,726 ,0,0,0}, {15695,15700,15699 ,7661,726,726 ,0,0,0}, - {15701,15694,15691 ,726,7661,7658 ,0,0,0}, {15691,15703,15702 ,7658,7661,726 ,0,0,0}, - {15702,15701,15691 ,726,726,7658 ,0,0,0}, {12317,15703,15692 ,726,7661,7658 ,0,0,0}, - {15703,12317,15702 ,7661,726,726 ,0,0,0}, {12302,12311,12303 ,7658,726,726 ,0,0,0}, - {15690,12315,15692 ,7658,7660,7658 ,0,0,0}, {12309,12302,12300 ,726,7658,726 ,0,0,0}, - {12290,12289,12296 ,726,726,726 ,0,0,0}, {12306,12298,12305 ,726,726,726 ,0,0,0}, - {12296,12293,12292 ,726,726,726 ,0,0,0}, {12296,12289,12305 ,726,726,726 ,0,0,0}, - {12290,12296,12292 ,726,726,726 ,0,0,0}, {12300,12298,12306 ,726,726,726 ,0,0,0}, - {12298,12296,12305 ,726,726,726 ,0,0,0}, {12311,12302,12309 ,726,7658,726 ,0,0,0}, - {12309,12300,12306 ,726,726,726 ,0,0,0}, {12303,12312,15690 ,726,726,7658 ,0,0,0}, - {12303,12311,12312 ,726,726,726 ,0,0,0}, {15692,12315,12317 ,7658,7660,726 ,0,0,0}, - {12312,12315,15690 ,726,7660,7658 ,0,0,0}, {15704,15705,15172 ,726,726,7664 ,0,0,0}, - {15706,15704,15172 ,726,726,7664 ,0,0,0}, {15706,15172,15707 ,726,7664,726 ,0,0,0}, - {15708,15172,15705 ,726,7664,726 ,0,0,0}, {15709,15710,15172 ,726,726,7664 ,0,0,0}, - {15709,15172,15708 ,726,7664,726 ,0,0,0}, {15711,15172,15170 ,726,7664,726 ,0,0,0}, - {15707,15172,15711 ,726,7664,726 ,0,0,0}, {15712,15172,15710 ,726,7664,726 ,0,0,0}, - {15172,15712,15713 ,7664,726,726 ,0,0,0}, {15711,15170,15714 ,726,726,726 ,0,0,0}, - {15715,15172,15713 ,726,7664,726 ,0,0,0}, {15716,15714,15170 ,7583,726,726 ,0,0,0}, - {15170,15717,15716 ,726,7664,7583 ,0,0,0}, {15172,15715,15718 ,7664,726,726 ,0,0,0}, - {15172,15718,15719 ,7664,726,726 ,0,0,0}, {15720,15717,15170 ,726,7664,726 ,0,0,0}, - {15721,15722,15170 ,726,726,726 ,0,0,0}, {15722,15720,15170 ,726,726,726 ,0,0,0}, - {15723,15170,15724 ,726,726,726 ,0,0,0}, {15723,15721,15170 ,726,726,726 ,0,0,0}, - {15173,15719,14110 ,7664,726,726 ,0,0,0}, {15719,15173,15172 ,726,7664,7664 ,0,0,0}, - {15724,15170,15725 ,726,726,726 ,0,0,0}, {15726,15170,15171 ,726,726,7664 ,0,0,0}, - {15170,15726,15725 ,726,726,726 ,0,0,0}, {15726,15171,14034 ,726,7664,5488 ,0,0,0}, - {13822,13815,15704 ,8164,8165,8166 ,0,0,0}, {15706,13823,13822 ,8167,8168,8164 ,0,0,0}, - {15706,15707,13823 ,8167,8168,8168 ,0,0,0}, {15704,15706,13822 ,8166,8167,8164 ,0,0,0}, - {13815,13956,15705 ,8165,8169,8170 ,0,0,0}, {13854,13856,15709 ,8171,8172,8173 ,0,0,0}, - {15708,15705,13956 ,8174,8170,8169 ,0,0,0}, {13956,13854,15708 ,8169,8171,8174 ,0,0,0}, - {15709,15708,13854 ,8173,8174,8171 ,0,0,0}, {13815,15705,15704 ,8165,8170,8166 ,0,0,0}, - {15709,13856,15710 ,8173,8172,8175 ,0,0,0}, {13819,15712,15710 ,8176,8177,8175 ,0,0,0}, - {15710,13856,13819 ,8175,8172,8176 ,0,0,0}, {15712,13819,13821 ,8177,8176,8178 ,0,0,0}, - {13826,15713,13821 ,8179,8180,8178 ,0,0,0}, {13826,13858,15715 ,8179,8181,8182 ,0,0,0}, - {13826,15715,15713 ,8179,8182,8180 ,0,0,0}, {15718,13860,15719 ,8183,8184,8185 ,0,0,0}, - {15715,13858,15718 ,8182,8181,8183 ,0,0,0}, {15718,13858,13860 ,8183,8181,8184 ,0,0,0}, - {13860,13859,15719 ,8184,8185,8185 ,0,0,0}, {15712,13821,15713 ,8177,8178,8180 ,0,0,0}, - {13818,15707,15711 ,8186,8168,8187 ,0,0,0}, {15707,13818,13823 ,8168,8186,8168 ,0,0,0}, - {15714,13817,15711 ,8188,8189,8187 ,0,0,0}, {13818,15711,13817 ,8186,8187,8189 ,0,0,0}, - {15714,15716,13984 ,8188,8190,8191 ,0,0,0}, {13984,13817,15714 ,8191,8189,8188 ,0,0,0}, - {13812,15716,15717 ,8192,8190,8193 ,0,0,0}, {15716,13812,13984 ,8190,8192,8191 ,0,0,0}, - {15720,13813,15717 ,8194,8195,8193 ,0,0,0}, {13812,15717,13813 ,8192,8193,8195 ,0,0,0}, - {15720,15722,13886 ,8194,8196,8197 ,0,0,0}, {13886,13813,15720 ,8197,8195,8194 ,0,0,0}, - {13887,15722,15721 ,8198,8196,8199 ,0,0,0}, {15722,13887,13886 ,8196,8198,8197 ,0,0,0}, - {15723,13630,15721 ,8200,8201,8199 ,0,0,0}, {13887,15721,13630 ,8198,8199,8201 ,0,0,0}, - {15723,15724,13633 ,8200,8202,8203 ,0,0,0}, {13633,13630,15723 ,8203,8201,8200 ,0,0,0}, - {13634,15724,15725 ,8204,8202,8205 ,0,0,0}, {15724,13634,13633 ,8202,8204,8203 ,0,0,0}, - {13634,15725,13635 ,8204,8205,8206 ,0,0,0}, {13635,15725,15726 ,8206,8205,8206 ,0,0,0}, - {14035,15726,14034 ,8207,8207,8207 ,0,0,0}, {15726,14065,14068 ,8207,8207,8207 ,0,0,0}, - {14035,14065,15726 ,8207,8207,8207 ,0,0,0}, {15726,14074,14079 ,8207,8207,8207 ,0,0,0}, - {14068,14074,15726 ,8207,8207,8207 ,0,0,0}, {15726,14083,14013 ,8207,8207,8207 ,0,0,0}, - {14079,14083,15726 ,8207,8207,8207 ,0,0,0}, {15726,14016,14015 ,8207,8207,8207 ,0,0,0}, - {14013,14016,15726 ,8207,8207,8207 ,0,0,0}, {15726,14015,13635 ,8207,8207,8207 ,0,0,0}, - {14125,15719,13859 ,8208,8208,8208 ,0,0,0}, {14125,14176,15719 ,8208,8208,8208 ,0,0,0}, - {15719,14176,14162 ,8208,8208,8208 ,0,0,0}, {14119,14112,15719 ,8208,8208,8208 ,0,0,0}, - {14119,15719,14162 ,8208,8208,8208 ,0,0,0}, {14112,14158,15719 ,8208,8208,8208 ,0,0,0}, - {15719,14150,14104 ,8208,8208,8208 ,0,0,0}, {14158,14150,15719 ,8208,8208,8208 ,0,0,0}, - {14110,15719,14106 ,8208,8208,8208 ,0,0,0}, {14104,14106,15719 ,8208,8208,8208 ,0,0,0}, - {12266,15727,13622 ,1711,8209,4414 ,0,0,0}, {15728,13885,15729 ,8210,8211,8212 ,0,0,0}, - {13870,13623,15730 ,8213,8214,4410 ,0,0,0}, {13884,15731,13614 ,4402,8215,8216 ,0,0,0}, - {15732,15733,13883 ,8217,8218,8219 ,0,0,0}, {15734,13644,15735 ,8220,8221,8222 ,0,0,0}, - {13643,13869,15736 ,8223,8224,8225 ,0,0,0}, {13617,13616,15737 ,8226,8227,8228 ,0,0,0}, - {13639,15738,13616 ,8229,8230,8227 ,0,0,0}, {13620,15739,15740 ,8231,8232,8233 ,0,0,0}, - {13617,15741,13619 ,8226,8234,8235 ,0,0,0}, {15742,13636,15740 ,8236,8237,8233 ,0,0,0}, - {13620,15740,13636 ,8231,8233,8237 ,0,0,0}, {15742,15743,13624 ,8236,8238,8239 ,0,0,0}, - {13624,13636,15742 ,8239,8237,8236 ,0,0,0}, {13872,15743,15744 ,8240,8238,8241 ,0,0,0}, - {15743,13872,13624 ,8238,8240,8239 ,0,0,0}, {15745,13632,15744 ,8242,8243,8241 ,0,0,0}, - {13872,15744,13632 ,8240,8241,8243 ,0,0,0}, {15745,12285,12286 ,8242,1790,1790 ,0,0,0}, - {12286,13632,15745 ,1790,8243,8242 ,0,0,0}, {15737,13616,15738 ,8228,8227,8230 ,0,0,0}, - {15739,13619,15741 ,8232,8235,8234 ,0,0,0}, {13619,15739,13620 ,8235,8232,8231 ,0,0,0}, - {15737,15741,13617 ,8228,8234,8226 ,0,0,0}, {15734,15738,13639 ,8220,8230,8229 ,0,0,0}, - {13643,15736,15735 ,8223,8225,8222 ,0,0,0}, {13643,15735,13644 ,8223,8222,8221 ,0,0,0}, - {13639,13644,15734 ,8229,8221,8220 ,0,0,0}, {13869,15746,15736 ,8224,8244,8225 ,0,0,0}, - {15746,13869,13614 ,8244,8224,8216 ,0,0,0}, {15733,15731,13884 ,8218,8215,4402 ,0,0,0}, - {15731,15746,13614 ,8215,8244,8216 ,0,0,0}, {13883,15733,13884 ,8219,8218,4402 ,0,0,0}, - {13584,15728,15732 ,8245,8210,8217 ,0,0,0}, {13584,15732,13883 ,8245,8217,8219 ,0,0,0}, - {13885,13870,15729 ,8211,8213,8212 ,0,0,0}, {13584,13885,15728 ,8245,8211,8210 ,0,0,0}, - {13623,15727,15730 ,8214,8209,4410 ,0,0,0}, {15729,13870,15730 ,8212,8213,4410 ,0,0,0}, - {12266,13622,12264 ,1711,4414,1711 ,0,0,0}, {15727,13623,13622 ,8209,8214,4414 ,0,0,0}, - {15732,15737,15738 ,726,726,7626 ,0,0,0}, {15746,15735,15736 ,726,726,726 ,0,0,0}, - {15734,15746,15731 ,726,726,726 ,0,0,0}, {15733,15734,15731 ,726,726,726 ,0,0,0}, - {15733,15738,15734 ,726,7626,726 ,0,0,0}, {15746,15734,15735 ,726,726,726 ,0,0,0}, - {15733,15732,15738 ,726,726,7626 ,0,0,0}, {15728,15741,15737 ,726,726,726 ,0,0,0}, - {15732,15728,15737 ,726,726,726 ,0,0,0}, {15741,15729,15739 ,726,726,7626 ,0,0,0}, - {15729,15741,15728 ,726,726,726 ,0,0,0}, {15740,15739,15730 ,7628,7626,726 ,0,0,0}, - {15729,15730,15739 ,726,726,7626 ,0,0,0}, {15727,15742,15740 ,726,726,7628 ,0,0,0}, - {15740,15730,15727 ,7628,726,726 ,0,0,0}, {15742,12266,15743 ,726,726,726 ,0,0,0}, - {12266,15742,15727 ,726,726,726 ,0,0,0}, {15744,15743,12263 ,7625,726,726 ,0,0,0}, - {12266,12263,15743 ,726,726,726 ,0,0,0}, {15744,12263,12262 ,7625,726,726 ,0,0,0}, - {15745,15744,12262 ,726,7625,726 ,0,0,0}, {12262,12260,15745 ,726,726,726 ,0,0,0}, - {12254,12285,12260 ,726,726,726 ,0,0,0}, {15745,12260,12285 ,726,726,726 ,0,0,0}, - {12257,12251,12279 ,726,726,7625 ,0,0,0}, {12254,12259,12283 ,726,726,726 ,0,0,0}, - {12248,12273,12274 ,7626,726,726 ,0,0,0}, {12274,12277,12250 ,726,726,726 ,0,0,0}, - {12273,12247,12271 ,726,7625,7625 ,0,0,0}, {12247,12268,12271 ,7625,726,7625 ,0,0,0}, - {12245,12268,12247 ,726,726,7625 ,0,0,0}, {12245,12267,12268 ,726,726,726 ,0,0,0}, - {12250,12248,12274 ,726,7626,726 ,0,0,0}, {12247,12273,12248 ,7625,726,7626 ,0,0,0}, - {12277,12279,12251 ,726,7625,726 ,0,0,0}, {12250,12277,12251 ,726,726,726 ,0,0,0}, - {12257,12280,12259 ,726,726,726 ,0,0,0}, {12257,12279,12280 ,726,7625,726 ,0,0,0}, - {12254,12283,12285 ,726,726,726 ,0,0,0}, {12280,12283,12259 ,726,726,726 ,0,0,0}, - {12227,15747,13896 ,1711,8246,8247 ,0,0,0}, {13955,13969,15748 ,8248,8249,8250 ,0,0,0}, - {13968,13897,15749 ,8251,8252,8253 ,0,0,0}, {13808,15750,13807 ,8254,8255,8256 ,0,0,0}, - {15751,15752,13989 ,8257,8258,8259 ,0,0,0}, {15753,15754,13987 ,8260,8261,8262 ,0,0,0}, - {15753,13986,15755 ,8260,8263,8264 ,0,0,0}, {15756,15757,13889 ,8265,8266,8267 ,0,0,0}, - {13889,13890,15756 ,8267,8268,8265 ,0,0,0}, {13985,15757,15758 ,8269,8266,8270 ,0,0,0}, - {15757,13985,13889 ,8266,8269,8267 ,0,0,0}, {15759,13888,15758 ,8271,8272,8270 ,0,0,0}, - {13985,15758,13888 ,8269,8270,8272 ,0,0,0}, {15759,12241,12242 ,8271,1790,1790 ,0,0,0}, - {12242,13888,15759 ,1790,8272,8271 ,0,0,0}, {15750,13808,15752 ,8255,8254,8258 ,0,0,0}, - {15754,13890,13987 ,8261,8268,8262 ,0,0,0}, {15756,13890,15754 ,8265,8268,8261 ,0,0,0}, - {15748,13969,15760 ,8250,8249,8273 ,0,0,0}, {15755,13986,13807 ,8264,8263,8256 ,0,0,0}, - {15753,13987,13986 ,8260,8262,8263 ,0,0,0}, {15750,15755,13807 ,8255,8264,8256 ,0,0,0}, - {13989,15752,13808 ,8259,8258,8254 ,0,0,0}, {13955,15748,15751 ,8248,8250,8257 ,0,0,0}, - {15751,13989,13955 ,8257,8259,8248 ,0,0,0}, {13897,15747,15749 ,8252,8246,8253 ,0,0,0}, - {15760,13968,15749 ,8273,8251,8253 ,0,0,0}, {13969,13968,15760 ,8249,8251,8273 ,0,0,0}, - {12227,13896,12228 ,1711,8247,1711 ,0,0,0}, {15747,13897,13896 ,8246,8252,8247 ,0,0,0}, - {12241,15759,15758 ,726,7658,726 ,0,0,0}, {15760,12216,15748 ,726,726,726 ,0,0,0}, - {12239,15758,15757 ,7660,726,7660 ,0,0,0}, {15753,12235,15754 ,7660,726,7660 ,0,0,0}, - {12236,12239,15756 ,7660,7660,7583 ,0,0,0}, {12229,15750,15752 ,7660,7661,7661 ,0,0,0}, - {12233,15753,15755 ,726,7660,7658 ,0,0,0}, {12214,15748,12216 ,726,726,726 ,0,0,0}, - {15752,15751,12213 ,7661,726,726 ,0,0,0}, {15747,12222,12220 ,726,726,726 ,0,0,0}, - {15749,12217,15760 ,726,726,726 ,0,0,0}, {12227,12226,12222 ,726,726,726 ,0,0,0}, - {12224,12222,12226 ,726,726,726 ,0,0,0}, {12222,15747,12227 ,726,726,726 ,0,0,0}, - {15749,12220,12217 ,726,726,726 ,0,0,0}, {15749,15747,12220 ,726,726,726 ,0,0,0}, - {15751,15748,12214 ,726,726,726 ,0,0,0}, {12216,15760,12217 ,726,726,726 ,0,0,0}, - {12213,12229,15752 ,726,7660,7661 ,0,0,0}, {12214,12213,15751 ,726,726,726 ,0,0,0}, - {15755,15750,12230 ,7658,7661,7659 ,0,0,0}, {12230,15750,12229 ,7659,7661,7660 ,0,0,0}, - {12233,15755,12230 ,726,7658,7659 ,0,0,0}, {12236,15754,12235 ,7660,7660,726 ,0,0,0}, - {15753,12233,12235 ,7660,726,726 ,0,0,0}, {12239,15757,15756 ,7660,7660,7583 ,0,0,0}, - {12236,15756,15754 ,7660,7583,7660 ,0,0,0}, {12239,12241,15758 ,7660,726,726 ,0,0,0}, - {13994,12186,15761 ,8274,8275,8276 ,0,0,0}, {13995,13971,15762 ,8277,8278,8279 ,0,0,0}, - {15763,13971,13988 ,8280,8278,8281 ,0,0,0}, {15764,15765,13895 ,8282,8283,8284 ,0,0,0}, - {15766,13967,13966 ,8285,8286,8287 ,0,0,0}, {13976,13964,15767 ,8288,8289,8290 ,0,0,0}, - {13975,15768,15769 ,8291,8292,8293 ,0,0,0}, {13998,15770,13981 ,8294,8295,8296 ,0,0,0}, - {15771,15772,13977 ,1631,8297,1631 ,0,0,0}, {15773,15774,13979 ,8298,8299,8300 ,0,0,0}, - {15773,13999,15775 ,8298,8301,8302 ,0,0,0}, {15776,15777,13974 ,8303,8304,8305 ,0,0,0}, - {15776,13973,15774 ,8303,8306,8299 ,0,0,0}, {13912,15777,15778 ,8307,8304,8308 ,0,0,0}, - {15777,13912,13974 ,8304,8307,8305 ,0,0,0}, {15779,13953,15778 ,8309,8310,8308 ,0,0,0}, - {13912,15778,13953 ,8307,8308,8310 ,0,0,0}, {13894,15779,13947 ,8311,8309,8312 ,0,0,0}, - {13894,13953,15779 ,8311,8310,8309 ,0,0,0}, {13945,13947,15780 ,8313,8312,8314 ,0,0,0}, - {15779,15780,13947 ,8309,8314,8312 ,0,0,0}, {15781,12210,13945 ,8315,126,8313 ,0,0,0}, - {13945,15780,15781 ,8313,8314,8315 ,0,0,0}, {12208,12210,15781 ,126,126,8315 ,0,0,0}, - {13973,13979,15774 ,8306,8300,8299 ,0,0,0}, {15776,13974,13973 ,8303,8305,8306 ,0,0,0}, - {13999,13981,15775 ,8301,8296,8302 ,0,0,0}, {15773,13979,13999 ,8298,8300,8301 ,0,0,0}, - {15772,15770,13998 ,8297,8295,8294 ,0,0,0}, {15770,15775,13981 ,8295,8302,8296 ,0,0,0}, - {13976,15771,13977 ,8288,1631,1631 ,0,0,0}, {13977,15772,13998 ,1631,8297,8294 ,0,0,0}, - {13964,15769,15767 ,8289,8293,8290 ,0,0,0}, {13976,15767,15771 ,8288,8290,1631 ,0,0,0}, - {13975,13997,15768 ,8291,8316,8292 ,0,0,0}, {13964,13975,15769 ,8289,8291,8293 ,0,0,0}, - {13895,15765,13997 ,8284,8283,8316 ,0,0,0}, {15768,13997,15765 ,8292,8316,8283 ,0,0,0}, - {15766,15764,13967 ,8285,8282,8286 ,0,0,0}, {15764,13895,13967 ,8282,8284,8286 ,0,0,0}, - {13995,15782,13966 ,8277,8317,8287 ,0,0,0}, {15782,15766,13966 ,8317,8285,8287 ,0,0,0}, - {13971,15783,15762 ,8278,8318,8279 ,0,0,0}, {13995,15762,15782 ,8277,8279,8317 ,0,0,0}, - {15763,13988,15761 ,8280,8281,8276 ,0,0,0}, {15783,13971,15763 ,8318,8278,8280 ,0,0,0}, - {12186,13994,12185 ,8275,8274,4114 ,0,0,0}, {15761,13988,13994 ,8276,8281,8274 ,0,0,0}, - {15773,15784,15774 ,726,726,726 ,0,0,0}, {15785,12159,15781 ,726,726,726 ,0,0,0}, - {15786,15777,15787 ,726,726,726 ,0,0,0}, {12190,12144,12143 ,726,726,7661 ,0,0,0}, - {12199,12201,12153 ,726,726,726 ,0,0,0}, {15788,15780,15779 ,726,726,726 ,0,0,0}, - {12204,12207,12158 ,726,726,726 ,0,0,0}, {12208,12159,12207 ,726,726,726 ,0,0,0}, - {12156,12154,12205 ,7658,726,726 ,0,0,0}, {12204,12158,12156 ,726,726,7658 ,0,0,0}, - {15788,15785,15780 ,726,726,726 ,0,0,0}, {12201,12202,12154 ,726,726,726 ,0,0,0}, - {12199,12153,12150 ,726,726,726 ,0,0,0}, {12195,12148,12193 ,726,726,726 ,0,0,0}, - {12196,12150,12148 ,726,726,726 ,0,0,0}, {12144,12190,12193 ,726,726,726 ,0,0,0}, - {15786,15779,15778 ,726,726,726 ,0,0,0}, {15774,15789,15776 ,726,7661,726 ,0,0,0}, - {15776,15789,15787 ,726,7661,726 ,0,0,0}, {12123,12163,12162 ,7658,726,7658 ,0,0,0}, - {12189,12143,12123 ,726,7661,7658 ,0,0,0}, {15790,15784,15775 ,726,726,726 ,0,0,0}, - {12163,12127,12164 ,726,7658,726 ,0,0,0}, {12166,12128,12129 ,7661,7658,726 ,0,0,0}, - {15770,15772,15791 ,726,7661,726 ,0,0,0}, {15770,15791,15790 ,726,726,726 ,0,0,0}, - {15772,15771,15792 ,7661,7658,7658 ,0,0,0}, {12170,12169,12129 ,726,726,726 ,0,0,0}, - {12133,12172,12130 ,726,7583,726 ,0,0,0}, {15793,15794,15769 ,726,726,726 ,0,0,0}, - {15794,15792,15767 ,726,7658,726 ,0,0,0}, {12182,12136,12139 ,7664,726,7664 ,0,0,0}, - {15793,15769,15768 ,726,726,7661 ,0,0,0}, {15795,15768,15765 ,726,7661,7664 ,0,0,0}, - {12142,12186,12184 ,726,726,7664 ,0,0,0}, {15796,15761,12142 ,7664,726,726 ,0,0,0}, - {15795,15764,15797 ,726,7583,726 ,0,0,0}, {15763,15798,15783 ,7664,7664,726 ,0,0,0}, - {12164,12127,12128 ,726,7658,7658 ,0,0,0}, {15762,15783,15799 ,7664,726,7664 ,0,0,0}, - {15798,15799,15783 ,7664,7664,726 ,0,0,0}, {15763,15761,15796 ,7664,726,7664 ,0,0,0}, - {15763,15796,15798 ,7664,7664,7664 ,0,0,0}, {15800,15797,15766 ,7664,726,7583 ,0,0,0}, - {15800,15766,15782 ,7664,7583,7664 ,0,0,0}, {12186,12142,15761 ,726,726,726 ,0,0,0}, - {12135,12136,12178 ,726,726,726 ,0,0,0}, {12133,12135,12175 ,726,726,7664 ,0,0,0}, - {15800,15782,15799 ,7664,7664,7664 ,0,0,0}, {15782,15762,15799 ,7664,7664,7664 ,0,0,0}, - {15764,15766,15797 ,7583,7583,726 ,0,0,0}, {15765,15764,15795 ,7664,7583,726 ,0,0,0}, - {15793,15768,15795 ,726,7661,726 ,0,0,0}, {15767,15769,15794 ,726,726,726 ,0,0,0}, - {15771,15767,15792 ,7658,726,7658 ,0,0,0}, {15791,15772,15792 ,726,7661,7658 ,0,0,0}, - {15775,15770,15790 ,726,726,726 ,0,0,0}, {15773,15775,15784 ,726,726,726 ,0,0,0}, - {15789,15774,15784 ,7661,726,726 ,0,0,0}, {15777,15776,15787 ,726,726,726 ,0,0,0}, - {15778,15777,15786 ,726,726,726 ,0,0,0}, {15788,15779,15786 ,726,726,726 ,0,0,0}, - {15781,15780,15785 ,726,726,726 ,0,0,0}, {12208,15781,12159 ,726,726,726 ,0,0,0}, - {12158,12207,12159 ,726,726,726 ,0,0,0}, {12205,12204,12156 ,726,726,7658 ,0,0,0}, - {12202,12205,12154 ,726,726,726 ,0,0,0}, {12153,12201,12154 ,726,726,726 ,0,0,0}, - {12196,12199,12150 ,726,726,726 ,0,0,0}, {12195,12196,12148 ,726,726,726 ,0,0,0}, - {12144,12193,12148 ,726,726,726 ,0,0,0}, {12189,12190,12143 ,726,726,7661 ,0,0,0}, - {12162,12189,12123 ,7658,726,7658 ,0,0,0}, {12127,12163,12123 ,7658,726,7658 ,0,0,0}, - {12169,12166,12129 ,726,7661,726 ,0,0,0}, {12166,12164,12128 ,7661,726,7658 ,0,0,0}, - {12130,12170,12129 ,726,726,726 ,0,0,0}, {12133,12175,12172 ,726,7664,7583 ,0,0,0}, - {12130,12172,12170 ,726,7583,726 ,0,0,0}, {12135,12176,12175 ,726,7664,7664 ,0,0,0}, - {12178,12136,12182 ,726,726,7664 ,0,0,0}, {12176,12135,12178 ,7664,726,726 ,0,0,0}, - {12182,12139,12184 ,7664,7664,7664 ,0,0,0}, {12142,12184,12139 ,726,7664,7664 ,0,0,0}, - {15801,15802,12126 ,726,726,726 ,0,0,0}, {12145,12147,12155 ,726,726,726 ,0,0,0}, - {12124,12145,12160 ,726,726,726 ,0,0,0}, {12126,12125,15801 ,726,726,726 ,0,0,0}, - {12151,12152,12155 ,726,726,726 ,0,0,0}, {12146,12149,12147 ,726,726,726 ,0,0,0}, - {12151,12155,12149 ,726,726,726 ,0,0,0}, {12147,12149,12155 ,726,726,726 ,0,0,0}, - {12155,12157,12145 ,726,726,726 ,0,0,0}, {15801,12124,12160 ,726,726,726 ,0,0,0}, - {12160,12145,12157 ,726,726,726 ,0,0,0}, {12126,15802,15803 ,726,726,726 ,0,0,0}, - {15801,12125,12124 ,726,726,726 ,0,0,0}, {12131,15803,15804 ,726,726,726 ,0,0,0}, - {15803,12131,12126 ,726,726,726 ,0,0,0}, {15804,12134,12132 ,726,726,7658 ,0,0,0}, - {12131,15804,12132 ,726,726,7658 ,0,0,0}, {15805,12134,15804 ,726,726,726 ,0,0,0}, - {12134,15806,12137 ,726,726,7661 ,0,0,0}, {15806,12134,15805 ,726,726,726 ,0,0,0}, - {15806,15807,12137 ,726,726,7661 ,0,0,0}, {12138,15807,12140 ,726,726,7661 ,0,0,0}, - {12138,12137,15807 ,726,7661,726 ,0,0,0}, {12140,15808,15809 ,7661,726,726 ,0,0,0}, - {15807,15808,12140 ,726,726,7661 ,0,0,0}, {15810,12141,15809 ,726,7658,726 ,0,0,0}, - {12140,15809,12141 ,7661,726,7658 ,0,0,0}, {15811,15812,15813 ,726,726,7660 ,0,0,0}, - {15813,15814,15811 ,7660,726,726 ,0,0,0}, {15812,15815,15816 ,726,726,7658 ,0,0,0}, - {15812,15810,15813 ,726,726,7660 ,0,0,0}, {15812,15817,15810 ,726,7661,726 ,0,0,0}, - {15812,15811,15815 ,726,726,726 ,0,0,0}, {15810,15817,12141 ,726,7661,7658 ,0,0,0}, - {15817,12142,12141 ,8319,81,8320 ,0,0,0}, {15815,15800,15816 ,8321,8322,8323 ,0,0,0}, - {15812,15799,15798 ,8324,8325,8326 ,0,0,0}, {15813,15810,15793 ,8327,8328,8329 ,0,0,0}, - {15811,15814,15795 ,8330,8331,8332 ,0,0,0}, {15807,15791,15808 ,8333,8334,8335 ,0,0,0}, - {15792,15809,15808 ,8336,8337,8335 ,0,0,0}, {15805,15789,15806 ,7530,8338,8339 ,0,0,0}, - {15784,15807,15806 ,8340,8333,8339 ,0,0,0}, {15804,15786,15787 ,8341,8342,8343 ,0,0,0}, - {15787,15805,15804 ,8343,7530,8341 ,0,0,0}, {15786,15803,15788 ,8342,8344,8345 ,0,0,0}, - {15803,15786,15804 ,8344,8342,8341 ,0,0,0}, {15785,15788,15802 ,8346,8345,8347 ,0,0,0}, - {15803,15802,15788 ,8344,8347,8345 ,0,0,0}, {12160,15785,15801 ,96,8346,8348 ,0,0,0}, - {15785,15802,15801 ,8346,8347,8348 ,0,0,0}, {12159,15785,12160 ,96,8346,96 ,0,0,0}, - {15784,15806,15789 ,8340,8339,8338 ,0,0,0}, {15787,15789,15805 ,8343,8338,7530 ,0,0,0}, - {15790,15791,15807 ,8349,8334,8333 ,0,0,0}, {15784,15790,15807 ,8340,8349,8333 ,0,0,0}, - {15794,15809,15792 ,8350,8337,8336 ,0,0,0}, {15791,15792,15808 ,8334,8336,8335 ,0,0,0}, - {15793,15810,15794 ,8329,8328,8350 ,0,0,0}, {15809,15794,15810 ,8337,8350,8328 ,0,0,0}, - {15795,15814,15793 ,8332,8331,8329 ,0,0,0}, {15814,15813,15793 ,8331,8327,8329 ,0,0,0}, - {15797,15815,15811 ,7516,8321,8330 ,0,0,0}, {15797,15811,15795 ,7516,8330,8332 ,0,0,0}, - {15800,15799,15816 ,8322,8325,8323 ,0,0,0}, {15797,15800,15815 ,7516,8322,8321 ,0,0,0}, - {15812,15798,15817 ,8324,8326,8319 ,0,0,0}, {15816,15799,15812 ,8323,8325,8324 ,0,0,0}, - {12142,15817,15796 ,81,8319,8351 ,0,0,0}, {15817,15798,15796 ,8319,8326,8351 ,0,0,0} -// MotorHacker.prt - , {15818,15819,15820 ,4056,4057,4058 ,0,0,0}, {15821,15822,15820 ,4059,4060,4058 ,0,0,0}, - {15818,15820,15822 ,4056,4058,4060 ,0,0,0}, {15823,15821,15824 ,4061,4059,4062 ,0,0,0}, - {15823,15822,15821 ,4061,4060,4059 ,0,0,0}, {15825,15824,15826 ,4063,4062,4064 ,0,0,0}, - {15821,15826,15824 ,4059,4064,4062 ,0,0,0}, {15827,15828,15825 ,4065,4066,4063 ,0,0,0}, - {15825,15826,15827 ,4063,4064,4065 ,0,0,0}, {15828,15829,15830 ,4066,4067,4068 ,0,0,0}, - {15829,15828,15827 ,4067,4066,4065 ,0,0,0}, {15831,15830,15832 ,4069,4068,4070 ,0,0,0}, - {15829,15832,15830 ,4067,4070,4068 ,0,0,0}, {15833,15834,15831 ,4071,4072,4069 ,0,0,0}, - {15831,15832,15833 ,4069,4070,4071 ,0,0,0}, {15835,15836,15834 ,4073,81,4072 ,0,0,0}, - {15835,15834,15833 ,4073,4072,4071 ,0,0,0}, {15836,15837,15834 ,81,81,4072 ,0,0,0}, - {15838,15819,15818 ,4074,4057,4056 ,0,0,0}, {15838,15839,15840 ,4074,4075,4076 ,0,0,0}, - {15840,15819,15838 ,4076,4057,4074 ,0,0,0}, {15841,15842,15839 ,4077,4078,4075 ,0,0,0}, - {15839,15842,15840 ,4075,4078,4076 ,0,0,0}, {15843,15844,15841 ,4079,4080,4077 ,0,0,0}, - {15841,15839,15843 ,4077,4075,4079 ,0,0,0}, {15844,15845,15846 ,4080,4081,4082 ,0,0,0}, - {15845,15844,15843 ,4081,4080,4079 ,0,0,0}, {15847,15846,15848 ,4083,4082,4084 ,0,0,0}, - {15845,15848,15846 ,4081,4084,4082 ,0,0,0}, {15849,15850,15847 ,4085,4086,4083 ,0,0,0}, - {15847,15848,15849 ,4083,4084,4085 ,0,0,0}, {15850,15851,15852 ,4086,4087,4088 ,0,0,0}, - {15851,15850,15849 ,4087,4086,4085 ,0,0,0}, {15852,15853,15854 ,4088,4089,4090 ,0,0,0}, - {15851,15853,15852 ,4087,4089,4088 ,0,0,0}, {15852,15854,15855 ,4088,4090,4091 ,0,0,0}, - {15856,15857,15858 ,2394,2394,4092 ,0,0,0}, {15859,15860,15858 ,4093,4094,4092 ,0,0,0}, - {15856,15858,15860 ,2394,4092,4094 ,0,0,0}, {15859,15861,15862 ,4093,4095,4096 ,0,0,0}, - {15862,15860,15859 ,4096,4094,4093 ,0,0,0}, {15863,15861,15864 ,4097,4095,4098 ,0,0,0}, - {15861,15863,15862 ,4095,4097,4096 ,0,0,0}, {15865,15866,15864 ,4099,4100,4098 ,0,0,0}, - {15863,15864,15866 ,4097,4098,4100 ,0,0,0}, {15865,15867,15868 ,4099,4101,4102 ,0,0,0}, - {15868,15866,15865 ,4102,4100,4099 ,0,0,0}, {15869,15867,15870 ,4103,4101,4104 ,0,0,0}, - {15867,15869,15868 ,4101,4103,4102 ,0,0,0}, {15871,15872,15870 ,4105,4106,4104 ,0,0,0}, - {15869,15870,15872 ,4103,4104,4106 ,0,0,0}, {15871,15873,15874 ,4105,4107,4108 ,0,0,0}, - {15874,15872,15871 ,4108,4106,4105 ,0,0,0}, {15875,15876,15873 ,4109,4110,4107 ,0,0,0}, - {15873,15876,15874 ,4107,4110,4108 ,0,0,0}, {15877,15878,15875 ,4111,4112,4109 ,0,0,0}, - {15875,15873,15877 ,4109,4107,4111 ,0,0,0}, {15878,15879,15880 ,4112,4113,4114 ,0,0,0}, - {15879,15878,15877 ,4113,4112,4111 ,0,0,0}, {15879,15881,15880 ,4113,4114,4114 ,0,0,0}, - {15882,15857,15856 ,4115,2394,2394 ,0,0,0}, {15882,15883,15884 ,4115,4116,4117 ,0,0,0}, - {15884,15857,15882 ,4117,2394,4115 ,0,0,0}, {15885,15883,15886 ,4118,4116,4119 ,0,0,0}, - {15883,15885,15884 ,4116,4118,4117 ,0,0,0}, {15887,15888,15886 ,4120,4121,4119 ,0,0,0}, - {15885,15886,15888 ,4118,4119,4121 ,0,0,0}, {15887,15889,15890 ,4120,4122,4123 ,0,0,0}, - {15890,15888,15887 ,4123,4121,4120 ,0,0,0}, {15891,15889,15892 ,4124,4122,4125 ,0,0,0}, - {15889,15891,15890 ,4122,4124,4123 ,0,0,0}, {15893,15894,15892 ,4126,4127,4125 ,0,0,0}, - {15891,15892,15894 ,4124,4125,4127 ,0,0,0}, {15893,15895,15896 ,4126,4128,4129 ,0,0,0}, - {15896,15894,15893 ,4129,4127,4126 ,0,0,0}, {15897,15895,15898 ,4130,4128,4131 ,0,0,0}, - {15895,15897,15896 ,4128,4130,4129 ,0,0,0}, {15898,15899,15900 ,4131,4132,4133 ,0,0,0}, - {15897,15898,15900 ,4130,4131,4133 ,0,0,0}, {15899,15901,15902 ,4132,4134,4135 ,0,0,0}, - {15901,15899,15898 ,4134,4132,4131 ,0,0,0}, {15903,15902,15904 ,126,4135,4136 ,0,0,0}, - {15901,15904,15902 ,4134,4136,4135 ,0,0,0}, {15903,15904,15905 ,126,4136,126 ,0,0,0}, - {15906,15907,15908 ,4137,4138,4139 ,0,0,0}, {15906,15909,15910 ,4137,4140,4141 ,0,0,0}, - {15909,15911,15910 ,4140,4142,4141 ,0,0,0}, {15908,15909,15906 ,4139,4140,4137 ,0,0,0}, - {15912,15913,15914 ,4143,4144,4145 ,0,0,0}, {15911,15912,15914 ,4142,4143,4145 ,0,0,0}, - {15913,15915,15916 ,4144,4146,4147 ,0,0,0}, {15915,15913,15912 ,4146,4144,4143 ,0,0,0}, - {15916,15915,15917 ,4147,4146,4148 ,0,0,0}, {15918,15916,15917 ,4149,4147,4148 ,0,0,0}, - {15918,15919,15920 ,4149,4150,4151 ,0,0,0}, {15918,15917,15919 ,4149,4148,4150 ,0,0,0}, - {15914,15910,15911 ,4145,4141,4142 ,0,0,0}, {15921,15922,15923 ,4152,1711,1711 ,0,0,0}, - {15921,15923,15920 ,4152,1711,4151 ,0,0,0}, {15919,15921,15920 ,4150,4152,4151 ,0,0,0}, - {15908,15907,15924 ,4139,4138,4153 ,0,0,0}, {15925,15924,15926 ,4154,4153,4155 ,0,0,0}, - {15907,15926,15924 ,4138,4155,4153 ,0,0,0}, {15927,15928,15925 ,4156,4157,4154 ,0,0,0}, - {15925,15926,15927 ,4154,4155,4156 ,0,0,0}, {15928,15929,15930 ,4157,4158,4159 ,0,0,0}, - {15929,15928,15927 ,4158,4157,4156 ,0,0,0}, {15931,15930,15932 ,4160,4159,4161 ,0,0,0}, - {15929,15932,15930 ,4158,4161,4159 ,0,0,0}, {15933,15934,15931 ,4162,4163,4160 ,0,0,0}, - {15931,15932,15933 ,4160,4161,4162 ,0,0,0}, {15934,15935,15936 ,4163,4164,1790 ,0,0,0}, - {15935,15934,15933 ,4164,4163,4162 ,0,0,0}, {15935,15937,15936 ,4164,1790,1790 ,0,0,0}, - {15938,15939,15940 ,4165,4166,4167 ,0,0,0}, {15941,15942,15943 ,4168,4169,4170 ,0,0,0}, - {15942,15938,15940 ,4169,4165,4167 ,0,0,0}, {15944,15941,15943 ,4171,4168,4170 ,0,0,0}, - {15942,15941,15938 ,4169,4168,4165 ,0,0,0}, {15944,15943,15945 ,4171,4170,4172 ,0,0,0}, - {15945,15946,15947 ,4172,4173,4174 ,0,0,0}, {15948,15947,15946 ,4175,4174,4173 ,0,0,0}, - {15949,15950,15951 ,4176,4177,4178 ,0,0,0}, {15946,15952,15948 ,4173,4179,4175 ,0,0,0}, - {15951,15953,15954 ,4178,4180,4181 ,0,0,0}, {15953,15952,15954 ,4180,4179,4181 ,0,0,0}, - {15948,15952,15953 ,4175,4179,4180 ,0,0,0}, {15951,15954,15949 ,4178,4181,4176 ,0,0,0}, - {15950,15949,15955 ,4177,4176,4182 ,0,0,0}, {15950,15955,15956 ,4177,4182,4183 ,0,0,0}, - {15957,15956,15955 ,4184,4183,4182 ,0,0,0}, {15958,15959,15960 ,4185,1711,4186 ,0,0,0}, - {15960,15956,15957 ,4186,4183,4184 ,0,0,0}, {15958,15960,15957 ,4185,4186,4184 ,0,0,0}, - {15958,15961,15959 ,4185,1711,1711 ,0,0,0}, {15944,15945,15947 ,4171,4172,4174 ,0,0,0}, - {15940,15939,15962 ,4167,4166,4187 ,0,0,0}, {15963,15962,15964 ,4188,4187,4189 ,0,0,0}, - {15939,15964,15962 ,4166,4189,4187 ,0,0,0}, {15965,15966,15963 ,4190,4191,4188 ,0,0,0}, - {15963,15964,15965 ,4188,4189,4190 ,0,0,0}, {15966,15967,15968 ,4191,4192,4193 ,0,0,0}, - {15967,15966,15965 ,4192,4191,4190 ,0,0,0}, {15969,15968,15970 ,4194,4193,4195 ,0,0,0}, - {15967,15970,15968 ,4192,4195,4193 ,0,0,0}, {15971,15972,15969 ,4196,4197,4194 ,0,0,0}, - {15969,15970,15971 ,4194,4195,4196 ,0,0,0}, {15972,15973,15974 ,4197,4198,4199 ,0,0,0}, - {15973,15972,15971 ,4198,4197,4196 ,0,0,0}, {15975,15974,15976 ,4200,4199,4201 ,0,0,0}, - {15973,15976,15974 ,4198,4201,4199 ,0,0,0}, {15977,15978,15975 ,4202,4203,4200 ,0,0,0}, - {15975,15976,15977 ,4200,4201,4202 ,0,0,0}, {15978,15979,15980 ,4203,4204,1790 ,0,0,0}, - {15979,15978,15977 ,4204,4203,4202 ,0,0,0}, {15979,15981,15980 ,4204,1790,1790 ,0,0,0}, - {15982,15983,15984 ,4205,4206,4207 ,0,0,0}, {15982,15985,15986 ,4205,4208,4209 ,0,0,0}, - {15985,15987,15986 ,4208,4210,4209 ,0,0,0}, {15984,15985,15982 ,4207,4208,4205 ,0,0,0}, - {15988,15989,15990 ,4211,4212,4213 ,0,0,0}, {15987,15988,15990 ,4210,4211,4213 ,0,0,0}, - {15989,15991,15992 ,4212,4214,4215 ,0,0,0}, {15991,15989,15988 ,4214,4212,4211 ,0,0,0}, - {15992,15991,15993 ,4215,4214,4216 ,0,0,0}, {15994,15992,15993 ,4217,4215,4216 ,0,0,0}, - {15994,15995,15996 ,4217,4218,4219 ,0,0,0}, {15994,15993,15995 ,4217,4216,4218 ,0,0,0}, - {15990,15986,15987 ,4213,4209,4210 ,0,0,0}, {15997,15998,15999 ,4220,1359,1359 ,0,0,0}, - {15997,15999,15996 ,4220,1359,4219 ,0,0,0}, {15995,15997,15996 ,4218,4220,4219 ,0,0,0}, - {15984,15983,16000 ,4207,4206,4221 ,0,0,0}, {16001,16000,16002 ,4222,4221,4223 ,0,0,0}, - {15983,16002,16000 ,4206,4223,4221 ,0,0,0}, {16003,16004,16001 ,4224,4225,4222 ,0,0,0}, - {16001,16002,16003 ,4222,4223,4224 ,0,0,0}, {16004,16005,16006 ,4225,4226,4227 ,0,0,0}, - {16005,16004,16003 ,4226,4225,4224 ,0,0,0}, {16007,16006,16008 ,4228,4227,4229 ,0,0,0}, - {16005,16008,16006 ,4226,4229,4227 ,0,0,0}, {16009,16010,16007 ,4230,4231,4228 ,0,0,0}, - {16007,16008,16009 ,4228,4229,4230 ,0,0,0}, {16010,16011,16012 ,4231,4232,1435 ,0,0,0}, - {16011,16010,16009 ,4232,4231,4230 ,0,0,0}, {16011,16013,16012 ,4232,1435,1435 ,0,0,0}, - {16014,16015,16016 ,4233,4234,4235 ,0,0,0}, {16017,16018,16019 ,4236,4237,4238 ,0,0,0}, - {16018,16014,16016 ,4237,4233,4235 ,0,0,0}, {16020,16017,16019 ,4239,4236,4238 ,0,0,0}, - {16018,16017,16014 ,4237,4236,4233 ,0,0,0}, {16020,16019,16021 ,4239,4238,4240 ,0,0,0}, - {16021,16022,16023 ,4240,4241,4242 ,0,0,0}, {16024,16023,16022 ,4243,4242,4241 ,0,0,0}, - {16025,16026,16027 ,4244,4245,4246 ,0,0,0}, {16022,16028,16024 ,4241,4247,4243 ,0,0,0}, - {16027,16029,16030 ,4246,4248,4249 ,0,0,0}, {16029,16028,16030 ,4248,4247,4249 ,0,0,0}, - {16024,16028,16029 ,4243,4247,4248 ,0,0,0}, {16027,16030,16025 ,4246,4249,4244 ,0,0,0}, - {16026,16025,16031 ,4245,4244,4250 ,0,0,0}, {16026,16031,16032 ,4245,4250,4251 ,0,0,0}, - {16033,16032,16031 ,4252,4251,4250 ,0,0,0}, {16034,16035,16036 ,4253,1359,4254 ,0,0,0}, - {16036,16032,16033 ,4254,4251,4252 ,0,0,0}, {16034,16036,16033 ,4253,4254,4252 ,0,0,0}, - {16034,16037,16035 ,4253,1359,1359 ,0,0,0}, {16020,16021,16023 ,4239,4240,4242 ,0,0,0}, - {16016,16015,16038 ,4235,4234,4255 ,0,0,0}, {16039,16038,16040 ,4256,4255,4257 ,0,0,0}, - {16015,16040,16038 ,4234,4257,4255 ,0,0,0}, {16041,16042,16039 ,4258,4259,4256 ,0,0,0}, - {16039,16040,16041 ,4256,4257,4258 ,0,0,0}, {16042,16043,16044 ,4259,4260,4261 ,0,0,0}, - {16043,16042,16041 ,4260,4259,4258 ,0,0,0}, {16045,16044,16046 ,4262,4261,4263 ,0,0,0}, - {16043,16046,16044 ,4260,4263,4261 ,0,0,0}, {16047,16048,16045 ,4264,4265,4262 ,0,0,0}, - {16045,16046,16047 ,4262,4263,4264 ,0,0,0}, {16048,16049,16050 ,4265,4266,4267 ,0,0,0}, - {16049,16048,16047 ,4266,4265,4264 ,0,0,0}, {16051,16050,16052 ,4268,4267,4269 ,0,0,0}, - {16049,16052,16050 ,4266,4269,4267 ,0,0,0}, {16053,16054,16051 ,4270,4271,4268 ,0,0,0}, - {16051,16052,16053 ,4268,4269,4270 ,0,0,0}, {16054,16055,16056 ,4271,4272,1435 ,0,0,0}, - {16055,16054,16053 ,4272,4271,4270 ,0,0,0}, {16055,16057,16056 ,4272,1435,1435 ,0,0,0}, - {16058,16059,16060 ,4273,4274,4275 ,0,0,0}, {16058,16061,16062 ,4273,4276,4277 ,0,0,0}, - {16061,16063,16062 ,4276,4278,4277 ,0,0,0}, {16060,16061,16058 ,4275,4276,4273 ,0,0,0}, - {16064,16065,16066 ,4279,4280,4281 ,0,0,0}, {16063,16064,16066 ,4278,4279,4281 ,0,0,0}, - {16065,16067,16068 ,4280,4282,4283 ,0,0,0}, {16067,16065,16064 ,4282,4280,4279 ,0,0,0}, - {16068,16067,16069 ,4283,4282,4284 ,0,0,0}, {16070,16068,16069 ,4285,4283,4284 ,0,0,0}, - {16070,16071,16072 ,4285,4286,4287 ,0,0,0}, {16070,16069,16071 ,4285,4284,4286 ,0,0,0}, - {16066,16062,16063 ,4281,4277,4278 ,0,0,0}, {16073,16074,16075 ,4288,126,4289 ,0,0,0}, - {16073,16075,16072 ,4288,4289,4287 ,0,0,0}, {16071,16073,16072 ,4286,4288,4287 ,0,0,0}, - {16060,16059,16076 ,4275,4274,4290 ,0,0,0}, {16077,16076,16078 ,4291,4290,4292 ,0,0,0}, - {16059,16078,16076 ,4274,4292,4290 ,0,0,0}, {16079,16080,16077 ,4293,4294,4291 ,0,0,0}, - {16077,16078,16079 ,4291,4292,4293 ,0,0,0}, {16080,16081,16082 ,4294,4295,4296 ,0,0,0}, - {16081,16080,16079 ,4295,4294,4293 ,0,0,0}, {16083,16082,16084 ,4297,4296,4298 ,0,0,0}, - {16081,16084,16082 ,4295,4298,4296 ,0,0,0}, {16085,16086,16083 ,4299,4300,4297 ,0,0,0}, - {16083,16084,16085 ,4297,4298,4299 ,0,0,0}, {16086,16087,16088 ,4300,4301,4302 ,0,0,0}, - {16087,16086,16085 ,4301,4300,4299 ,0,0,0}, {16087,16089,16088 ,4301,4303,4302 ,0,0,0}, - {16090,16091,16092 ,4304,4305,4306 ,0,0,0}, {16093,16094,16095 ,4307,4308,4309 ,0,0,0}, - {16094,16090,16092 ,4308,4304,4306 ,0,0,0}, {16096,16093,16095 ,4310,4307,4309 ,0,0,0}, - {16094,16093,16090 ,4308,4307,4304 ,0,0,0}, {16096,16095,16097 ,4310,4309,4311 ,0,0,0}, - {16097,16098,16099 ,4311,4312,4313 ,0,0,0}, {16100,16099,16098 ,4314,4313,4312 ,0,0,0}, - {16101,16102,16103 ,4315,4316,4317 ,0,0,0}, {16098,16104,16100 ,4312,4318,4314 ,0,0,0}, - {16103,16105,16106 ,4317,4319,4320 ,0,0,0}, {16105,16104,16106 ,4319,4318,4320 ,0,0,0}, - {16100,16104,16105 ,4314,4318,4319 ,0,0,0}, {16103,16106,16101 ,4317,4320,4315 ,0,0,0}, - {16102,16101,16107 ,4316,4315,4321 ,0,0,0}, {16102,16107,16108 ,4316,4321,4322 ,0,0,0}, - {16109,16108,16107 ,4323,4322,4321 ,0,0,0}, {16110,16111,16112 ,4324,126,4325 ,0,0,0}, - {16112,16108,16109 ,4325,4322,4323 ,0,0,0}, {16110,16112,16109 ,4324,4325,4323 ,0,0,0}, - {16110,16113,16111 ,4324,4326,126 ,0,0,0}, {16096,16097,16099 ,4310,4311,4313 ,0,0,0}, - {16092,16091,16114 ,4306,4305,4327 ,0,0,0}, {16115,16114,16116 ,4328,4327,4329 ,0,0,0}, - {16091,16116,16114 ,4305,4329,4327 ,0,0,0}, {16117,16118,16115 ,4330,4331,4328 ,0,0,0}, - {16115,16116,16117 ,4328,4329,4330 ,0,0,0}, {16118,16119,16120 ,4331,4332,4333 ,0,0,0}, - {16119,16118,16117 ,4332,4331,4330 ,0,0,0}, {16121,16120,16122 ,4334,4333,4335 ,0,0,0}, - {16119,16122,16120 ,4332,4335,4333 ,0,0,0}, {16123,16124,16121 ,4336,4337,4334 ,0,0,0}, - {16121,16122,16123 ,4334,4335,4336 ,0,0,0}, {16124,16125,16126 ,4337,4338,4339 ,0,0,0}, - {16125,16124,16123 ,4338,4337,4336 ,0,0,0}, {16127,16126,16128 ,4340,4339,4341 ,0,0,0}, - {16125,16128,16126 ,4338,4341,4339 ,0,0,0}, {16129,16130,16127 ,4342,4343,4340 ,0,0,0}, - {16127,16128,16129 ,4340,4341,4342 ,0,0,0}, {16130,16131,16132 ,4343,4344,4345 ,0,0,0}, - {16131,16130,16129 ,4344,4343,4342 ,0,0,0}, {16131,16133,16132 ,4344,4346,4345 ,0,0,0}, - {16134,16135,16136 ,4347,4348,4349 ,0,0,0}, {16134,16137,16138 ,4347,4350,4351 ,0,0,0}, - {16137,16139,16138 ,4350,4352,4351 ,0,0,0}, {16136,16137,16134 ,4349,4350,4347 ,0,0,0}, - {16140,16141,16142 ,4353,4354,4355 ,0,0,0}, {16139,16140,16142 ,4352,4353,4355 ,0,0,0}, - {16141,16143,16144 ,4354,4356,4357 ,0,0,0}, {16143,16141,16140 ,4356,4354,4353 ,0,0,0}, - {16144,16143,16145 ,4357,4356,4358 ,0,0,0}, {16146,16144,16145 ,4359,4357,4358 ,0,0,0}, - {16146,16147,16148 ,4359,4360,4361 ,0,0,0}, {16146,16145,16147 ,4359,4358,4360 ,0,0,0}, - {16142,16138,16139 ,4355,4351,4352 ,0,0,0}, {16149,16150,16151 ,4362,1790,1790 ,0,0,0}, - {16149,16151,16148 ,4362,1790,4361 ,0,0,0}, {16147,16149,16148 ,4360,4362,4361 ,0,0,0}, - {16136,16135,16152 ,4349,4348,4363 ,0,0,0}, {16153,16152,16154 ,4364,4363,4365 ,0,0,0}, - {16135,16154,16152 ,4348,4365,4363 ,0,0,0}, {16155,16156,16153 ,4366,4367,4364 ,0,0,0}, - {16153,16154,16155 ,4364,4365,4366 ,0,0,0}, {16156,16157,16158 ,4367,4368,4369 ,0,0,0}, - {16157,16156,16155 ,4368,4367,4366 ,0,0,0}, {16159,16158,16160 ,4370,4369,4371 ,0,0,0}, - {16157,16160,16158 ,4368,4371,4369 ,0,0,0}, {16161,16162,16159 ,4372,4373,4370 ,0,0,0}, - {16159,16160,16161 ,4370,4371,4372 ,0,0,0}, {16162,16163,16164 ,4373,4374,1711 ,0,0,0}, - {16163,16162,16161 ,4374,4373,4372 ,0,0,0}, {16163,16165,16164 ,4374,1711,1711 ,0,0,0}, - {16166,16167,16168 ,4375,4376,4377 ,0,0,0}, {16169,16170,16171 ,4378,4379,4380 ,0,0,0}, - {16170,16166,16168 ,4379,4375,4377 ,0,0,0}, {16172,16169,16171 ,4381,4378,4380 ,0,0,0}, - {16170,16169,16166 ,4379,4378,4375 ,0,0,0}, {16172,16171,16173 ,4381,4380,4382 ,0,0,0}, - {16173,16174,16175 ,4382,4383,4384 ,0,0,0}, {16176,16175,16174 ,4385,4384,4383 ,0,0,0}, - {16177,16178,16179 ,4386,4387,4388 ,0,0,0}, {16174,16180,16176 ,4383,4389,4385 ,0,0,0}, - {16179,16181,16182 ,4388,4390,4391 ,0,0,0}, {16181,16180,16182 ,4390,4389,4391 ,0,0,0}, - {16176,16180,16181 ,4385,4389,4390 ,0,0,0}, {16179,16182,16177 ,4388,4391,4386 ,0,0,0}, - {16178,16177,16183 ,4387,4386,4392 ,0,0,0}, {16178,16183,16184 ,4387,4392,4393 ,0,0,0}, - {16185,16184,16183 ,4394,4393,4392 ,0,0,0}, {16186,16187,16188 ,4395,1790,4396 ,0,0,0}, - {16188,16184,16185 ,4396,4393,4394 ,0,0,0}, {16186,16188,16185 ,4395,4396,4394 ,0,0,0}, - {16186,16189,16187 ,4395,1790,1790 ,0,0,0}, {16172,16173,16175 ,4381,4382,4384 ,0,0,0}, - {16168,16167,16190 ,4377,4376,4397 ,0,0,0}, {16191,16190,16192 ,4398,4397,4399 ,0,0,0}, - {16167,16192,16190 ,4376,4399,4397 ,0,0,0}, {16193,16194,16191 ,4400,4401,4398 ,0,0,0}, - {16191,16192,16193 ,4398,4399,4400 ,0,0,0}, {16194,16195,16196 ,4401,4402,4403 ,0,0,0}, - {16195,16194,16193 ,4402,4401,4400 ,0,0,0}, {16197,16196,16198 ,4404,4403,4405 ,0,0,0}, - {16195,16198,16196 ,4402,4405,4403 ,0,0,0}, {16199,16200,16197 ,4406,4407,4404 ,0,0,0}, - {16197,16198,16199 ,4404,4405,4406 ,0,0,0}, {16200,16201,16202 ,4407,4408,4409 ,0,0,0}, - {16201,16200,16199 ,4408,4407,4406 ,0,0,0}, {16203,16202,16204 ,4410,4409,4411 ,0,0,0}, - {16201,16204,16202 ,4408,4411,4409 ,0,0,0}, {16205,16206,16203 ,4412,4413,4410 ,0,0,0}, - {16203,16204,16205 ,4410,4411,4412 ,0,0,0}, {16206,16207,16208 ,4413,4414,1711 ,0,0,0}, - {16207,16206,16205 ,4414,4413,4412 ,0,0,0}, {16207,16209,16208 ,4414,1711,1711 ,0,0,0}, - {16210,16211,16212 ,4415,4416,4417 ,0,0,0}, {16210,16213,16214 ,4415,4418,4419 ,0,0,0}, - {16213,16215,16214 ,4418,4420,4419 ,0,0,0}, {16212,16213,16210 ,4417,4418,4415 ,0,0,0}, - {16216,16217,16218 ,4421,4422,4423 ,0,0,0}, {16215,16216,16218 ,4420,4421,4423 ,0,0,0}, - {16217,16219,16220 ,4422,4424,4425 ,0,0,0}, {16219,16217,16216 ,4424,4422,4421 ,0,0,0}, - {16220,16219,16221 ,4425,4424,4426 ,0,0,0}, {16222,16220,16221 ,4427,4425,4426 ,0,0,0}, - {16222,16223,16224 ,4427,4428,4429 ,0,0,0}, {16222,16221,16223 ,4427,4426,4428 ,0,0,0}, - {16218,16214,16215 ,4423,4419,4420 ,0,0,0}, {16225,16226,16227 ,4430,1435,1435 ,0,0,0}, - {16225,16227,16224 ,4430,1435,4429 ,0,0,0}, {16223,16225,16224 ,4428,4430,4429 ,0,0,0}, - {16212,16211,16228 ,4417,4416,4431 ,0,0,0}, {16229,16228,16230 ,4432,4431,4433 ,0,0,0}, - {16211,16230,16228 ,4416,4433,4431 ,0,0,0}, {16231,16232,16229 ,4434,4435,4432 ,0,0,0}, - {16229,16230,16231 ,4432,4433,4434 ,0,0,0}, {16232,16233,16234 ,4435,4436,4437 ,0,0,0}, - {16233,16232,16231 ,4436,4435,4434 ,0,0,0}, {16235,16234,16236 ,4438,4437,4439 ,0,0,0}, - {16233,16236,16234 ,4436,4439,4437 ,0,0,0}, {16237,16238,16235 ,4440,4441,4438 ,0,0,0}, - {16235,16236,16237 ,4438,4439,4440 ,0,0,0}, {16238,16239,16240 ,4441,4442,1359 ,0,0,0}, - {16239,16238,16237 ,4442,4441,4440 ,0,0,0}, {16239,16241,16240 ,4442,1359,1359 ,0,0,0}, - {16242,16243,16244 ,4443,4444,4445 ,0,0,0}, {16245,16246,16247 ,4446,4447,4448 ,0,0,0}, - {16246,16242,16244 ,4447,4443,4445 ,0,0,0}, {16248,16245,16247 ,4449,4446,4448 ,0,0,0}, - {16246,16245,16242 ,4447,4446,4443 ,0,0,0}, {16248,16247,16249 ,4449,4448,4450 ,0,0,0}, - {16249,16250,16251 ,4450,4451,4452 ,0,0,0}, {16252,16251,16250 ,4453,4452,4451 ,0,0,0}, - {16253,16254,16255 ,4454,4455,4456 ,0,0,0}, {16250,16256,16252 ,4451,4457,4453 ,0,0,0}, - {16255,16257,16258 ,4456,4458,4459 ,0,0,0}, {16257,16256,16258 ,4458,4457,4459 ,0,0,0}, - {16252,16256,16257 ,4453,4457,4458 ,0,0,0}, {16255,16258,16253 ,4456,4459,4454 ,0,0,0}, - {16254,16253,16259 ,4455,4454,4460 ,0,0,0}, {16254,16259,16260 ,4455,4460,4461 ,0,0,0}, - {16261,16260,16259 ,4462,4461,4460 ,0,0,0}, {16262,16263,16264 ,4463,1435,4464 ,0,0,0}, - {16264,16260,16261 ,4464,4461,4462 ,0,0,0}, {16262,16264,16261 ,4463,4464,4462 ,0,0,0}, - {16262,16265,16263 ,4463,1435,1435 ,0,0,0}, {16248,16249,16251 ,4449,4450,4452 ,0,0,0}, - {16244,16243,16266 ,4445,4444,4465 ,0,0,0}, {16267,16266,16268 ,4466,4465,4467 ,0,0,0}, - {16243,16268,16266 ,4444,4467,4465 ,0,0,0}, {16269,16270,16267 ,4468,4469,4466 ,0,0,0}, - {16267,16268,16269 ,4466,4467,4468 ,0,0,0}, {16270,16271,16272 ,4469,4470,4471 ,0,0,0}, - {16271,16270,16269 ,4470,4469,4468 ,0,0,0}, {16273,16272,16274 ,4472,4471,4473 ,0,0,0}, - {16271,16274,16272 ,4470,4473,4471 ,0,0,0}, {16275,16276,16273 ,4474,4475,4472 ,0,0,0}, - {16273,16274,16275 ,4472,4473,4474 ,0,0,0}, {16276,16277,16278 ,4475,4476,4477 ,0,0,0}, - {16277,16276,16275 ,4476,4475,4474 ,0,0,0}, {16279,16278,16280 ,4478,4477,4479 ,0,0,0}, - {16277,16280,16278 ,4476,4479,4477 ,0,0,0}, {16281,16282,16279 ,4480,4481,4478 ,0,0,0}, - {16279,16280,16281 ,4478,4479,4480 ,0,0,0}, {16282,16283,16284 ,4481,4482,1359 ,0,0,0}, - {16283,16282,16281 ,4482,4481,4480 ,0,0,0}, {16283,16285,16284 ,4482,1359,1359 ,0,0,0}, - {16286,16287,16288 ,4483,4484,4485 ,0,0,0}, {16286,16289,16290 ,4483,4486,4487 ,0,0,0}, - {16289,16291,16290 ,4486,4488,4487 ,0,0,0}, {16288,16289,16286 ,4485,4486,4483 ,0,0,0}, - {16292,16293,16294 ,4489,4490,4491 ,0,0,0}, {16291,16292,16294 ,4488,4489,4491 ,0,0,0}, - {16293,16295,16296 ,4490,4492,4493 ,0,0,0}, {16295,16293,16292 ,4492,4490,4489 ,0,0,0}, - {16296,16295,16297 ,4493,4492,4494 ,0,0,0}, {16298,16296,16297 ,4495,4493,4494 ,0,0,0}, - {16298,16299,16300 ,4495,4496,4497 ,0,0,0}, {16298,16297,16299 ,4495,4494,4496 ,0,0,0}, - {16294,16290,16291 ,4491,4487,4488 ,0,0,0}, {16301,16302,16303 ,4498,4499,82 ,0,0,0}, - {16301,16303,16300 ,4498,82,4497 ,0,0,0}, {16299,16301,16300 ,4496,4498,4497 ,0,0,0}, - {16288,16287,16304 ,4485,4484,4500 ,0,0,0}, {16305,16304,16306 ,4501,4500,4502 ,0,0,0}, - {16287,16306,16304 ,4484,4502,4500 ,0,0,0}, {16307,16308,16305 ,4503,4504,4501 ,0,0,0}, - {16305,16306,16307 ,4501,4502,4503 ,0,0,0}, {16308,16309,16310 ,4504,4505,4506 ,0,0,0}, - {16309,16308,16307 ,4505,4504,4503 ,0,0,0}, {16311,16310,16312 ,4507,4506,4508 ,0,0,0}, - {16309,16312,16310 ,4505,4508,4506 ,0,0,0}, {16313,16314,16311 ,4509,4510,4507 ,0,0,0}, - {16311,16312,16313 ,4507,4508,4509 ,0,0,0}, {16314,16315,16316 ,4510,4511,4512 ,0,0,0}, - {16315,16314,16313 ,4511,4510,4509 ,0,0,0}, {16315,16317,16316 ,4511,4513,4512 ,0,0,0}, - {16318,16319,16320 ,4514,4515,4516 ,0,0,0}, {16321,16322,16323 ,4517,4518,4519 ,0,0,0}, - {16322,16318,16320 ,4518,4514,4516 ,0,0,0}, {16324,16321,16323 ,4520,4517,4519 ,0,0,0}, - {16322,16321,16318 ,4518,4517,4514 ,0,0,0}, {16324,16323,16325 ,4520,4519,4521 ,0,0,0}, - {16325,16326,16327 ,4521,4522,4523 ,0,0,0}, {16328,16327,16326 ,4524,4523,4522 ,0,0,0}, - {16329,16330,16331 ,4525,4526,4527 ,0,0,0}, {16326,16332,16328 ,4522,4528,4524 ,0,0,0}, - {16331,16333,16334 ,4527,4529,4530 ,0,0,0}, {16333,16332,16334 ,4529,4528,4530 ,0,0,0}, - {16328,16332,16333 ,4524,4528,4529 ,0,0,0}, {16331,16334,16329 ,4527,4530,4525 ,0,0,0}, - {16330,16329,16335 ,4526,4525,4531 ,0,0,0}, {16330,16335,16336 ,4526,4531,4532 ,0,0,0}, - {16337,16336,16335 ,4533,4532,4531 ,0,0,0}, {16338,16339,16340 ,4534,4535,4536 ,0,0,0}, - {16340,16336,16337 ,4536,4532,4533 ,0,0,0}, {16338,16340,16337 ,4534,4536,4533 ,0,0,0}, - {16338,16341,16339 ,4534,4537,4535 ,0,0,0}, {16324,16325,16327 ,4520,4521,4523 ,0,0,0}, - {16320,16319,16342 ,4516,4515,4538 ,0,0,0}, {16343,16342,16344 ,4539,4538,4540 ,0,0,0}, - {16319,16344,16342 ,4515,4540,4538 ,0,0,0}, {16345,16346,16343 ,4541,4542,4539 ,0,0,0}, - {16343,16344,16345 ,4539,4540,4541 ,0,0,0}, {16346,16347,16348 ,4542,4543,4544 ,0,0,0}, - {16347,16346,16345 ,4543,4542,4541 ,0,0,0}, {16349,16348,16350 ,4545,4544,4546 ,0,0,0}, - {16347,16350,16348 ,4543,4546,4544 ,0,0,0}, {16351,16352,16349 ,4547,4548,4545 ,0,0,0}, - {16349,16350,16351 ,4545,4546,4547 ,0,0,0}, {16352,16353,16354 ,4548,4549,4550 ,0,0,0}, - {16353,16352,16351 ,4549,4548,4547 ,0,0,0}, {16355,16354,16356 ,4551,4550,4552 ,0,0,0}, - {16353,16356,16354 ,4549,4552,4550 ,0,0,0}, {16357,16358,16355 ,4553,4554,4551 ,0,0,0}, - {16355,16356,16357 ,4551,4552,4553 ,0,0,0}, {16358,16359,16360 ,4554,4555,4556 ,0,0,0}, - {16359,16358,16357 ,4555,4554,4553 ,0,0,0}, {16359,16361,16360 ,4555,126,4556 ,0,0,0}, - {16362,16363,16364 ,4557,4558,4559 ,0,0,0}, {16365,16366,16364 ,4560,4561,4559 ,0,0,0}, - {16362,16364,16366 ,4557,4559,4561 ,0,0,0}, {16367,16365,16368 ,4562,4560,4563 ,0,0,0}, - {16367,16366,16365 ,4562,4561,4560 ,0,0,0}, {16369,16368,16370 ,4564,4563,4565 ,0,0,0}, - {16365,16370,16368 ,4560,4565,4563 ,0,0,0}, {16371,16372,16369 ,4081,4566,4564 ,0,0,0}, - {16369,16370,16371 ,4564,4565,4081 ,0,0,0}, {16372,16373,16374 ,4566,4567,4568 ,0,0,0}, - {16373,16372,16371 ,4567,4566,4081 ,0,0,0}, {16375,16374,16376 ,4569,4568,4570 ,0,0,0}, - {16373,16376,16374 ,4567,4570,4568 ,0,0,0}, {16377,16378,16375 ,4571,4572,4569 ,0,0,0}, - {16375,16376,16377 ,4569,4570,4571 ,0,0,0}, {16379,16380,16378 ,4573,763,4572 ,0,0,0}, - {16379,16378,16377 ,4573,4572,4571 ,0,0,0}, {16380,16381,16378 ,763,763,4572 ,0,0,0}, - {16382,16363,16362 ,4574,4558,4557 ,0,0,0}, {16382,16383,16384 ,4574,4575,4576 ,0,0,0}, - {16384,16363,16382 ,4576,4558,4574 ,0,0,0}, {16385,16386,16383 ,4577,4578,4575 ,0,0,0}, - {16383,16386,16384 ,4575,4578,4576 ,0,0,0}, {16387,16388,16385 ,4579,4580,4577 ,0,0,0}, - {16385,16383,16387 ,4577,4575,4579 ,0,0,0}, {16388,16389,16390 ,4580,4065,4581 ,0,0,0}, - {16389,16388,16387 ,4065,4580,4579 ,0,0,0}, {16391,16390,16392 ,4582,4581,4583 ,0,0,0}, - {16389,16392,16390 ,4065,4583,4581 ,0,0,0}, {16393,16394,16391 ,4584,4585,4582 ,0,0,0}, - {16391,16392,16393 ,4582,4583,4584 ,0,0,0}, {16394,16395,16396 ,4585,4586,4587 ,0,0,0}, - {16395,16394,16393 ,4586,4585,4584 ,0,0,0}, {16396,16397,16398 ,4587,4588,54 ,0,0,0}, - {16395,16397,16396 ,4586,4588,4587 ,0,0,0}, {16396,16398,16399 ,4587,54,4589 ,0,0,0}, - {16400,16401,16402 ,4590,4591,4557 ,0,0,0}, {16403,16401,16404 ,4592,4591,4593 ,0,0,0}, - {16401,16403,16402 ,4591,4592,4557 ,0,0,0}, {16405,16406,16404 ,4594,4595,4593 ,0,0,0}, - {16403,16404,16406 ,4592,4593,4595 ,0,0,0}, {16405,16407,16408 ,4594,4596,4597 ,0,0,0}, - {16408,16406,16405 ,4597,4595,4594 ,0,0,0}, {16409,16407,16410 ,4598,4596,4599 ,0,0,0}, - {16407,16409,16408 ,4596,4598,4597 ,0,0,0}, {16411,16412,16410 ,4600,4601,4599 ,0,0,0}, - {16409,16410,16412 ,4598,4599,4601 ,0,0,0}, {16411,16413,16414 ,4600,4602,4603 ,0,0,0}, - {16414,16412,16411 ,4603,4601,4600 ,0,0,0}, {16415,16413,16416 ,4604,4602,4605 ,0,0,0}, - {16413,16415,16414 ,4602,4604,4603 ,0,0,0}, {16417,16418,16416 ,4606,4607,4605 ,0,0,0}, - {16415,16416,16418 ,4604,4605,4607 ,0,0,0}, {16417,16419,16420 ,4606,4608,4609 ,0,0,0}, - {16420,16418,16417 ,4609,4607,4606 ,0,0,0}, {16421,16419,16422 ,4610,4608,4611 ,0,0,0}, - {16419,16421,16420 ,4608,4610,4609 ,0,0,0}, {16423,16424,16422 ,4612,4613,4611 ,0,0,0}, - {16421,16422,16424 ,4610,4611,4613 ,0,0,0}, {16423,16425,16426 ,4612,4614,4615 ,0,0,0}, - {16426,16424,16423 ,4615,4613,4612 ,0,0,0}, {16427,16425,16428 ,4616,4614,4617 ,0,0,0}, - {16425,16427,16426 ,4614,4616,4615 ,0,0,0}, {16429,16430,16428 ,4618,4619,4617 ,0,0,0}, - {16427,16428,16430 ,4616,4617,4619 ,0,0,0}, {16429,16431,16432 ,4618,4620,4621 ,0,0,0}, - {16432,16430,16429 ,4621,4619,4618 ,0,0,0}, {16431,16433,16432 ,4620,4620,4621 ,0,0,0}, - {16434,16400,16402 ,4622,4590,4557 ,0,0,0}, {16435,16436,16434 ,4623,4624,4622 ,0,0,0}, - {16400,16434,16436 ,4590,4622,4624 ,0,0,0}, {16435,16437,16438 ,4623,4625,4626 ,0,0,0}, - {16438,16436,16435 ,4626,4624,4623 ,0,0,0}, {16439,16437,16440 ,4627,4625,4628 ,0,0,0}, - {16437,16439,16438 ,4625,4627,4626 ,0,0,0}, {16441,16442,16440 ,4629,4630,4628 ,0,0,0}, - {16439,16440,16442 ,4627,4628,4630 ,0,0,0}, {16441,16443,16444 ,4629,4631,4632 ,0,0,0}, - {16444,16442,16441 ,4632,4630,4629 ,0,0,0}, {16445,16443,16446 ,4633,4631,4634 ,0,0,0}, - {16443,16445,16444 ,4631,4633,4632 ,0,0,0}, {16447,16448,16446 ,4635,4636,4634 ,0,0,0}, - {16445,16446,16448 ,4633,4634,4636 ,0,0,0}, {16447,16449,16450 ,4635,4637,4638 ,0,0,0}, - {16450,16448,16447 ,4638,4636,4635 ,0,0,0}, {16451,16449,16452 ,4639,4637,4640 ,0,0,0}, - {16449,16451,16450 ,4637,4639,4638 ,0,0,0}, {16453,16454,16452 ,4641,4642,4640 ,0,0,0}, - {16451,16452,16454 ,4639,4640,4642 ,0,0,0}, {16453,16455,16456 ,4641,4643,4644 ,0,0,0}, - {16456,16454,16453 ,4644,4642,4641 ,0,0,0}, {16457,16455,16458 ,4645,4643,4646 ,0,0,0}, - {16455,16457,16456 ,4643,4645,4644 ,0,0,0}, {16459,16460,16458 ,4647,4648,4646 ,0,0,0}, - {16457,16458,16460 ,4645,4646,4648 ,0,0,0}, {16459,16461,16462 ,4647,4649,4650 ,0,0,0}, - {16462,16460,16459 ,4650,4648,4647 ,0,0,0}, {16463,16461,16464 ,4651,4649,82 ,0,0,0}, - {16461,16463,16462 ,4649,4651,4650 ,0,0,0}, {16463,16464,16465 ,4651,82,4652 ,0,0,0}, - {16466,16467,16468 ,4653,4654,4655 ,0,0,0}, {16469,16470,16471 ,4656,4657,4658 ,0,0,0}, - {16468,16471,16470 ,4655,4658,4657 ,0,0,0}, {16472,16473,16474 ,4659,4660,4661 ,0,0,0}, - {16475,16476,16469 ,4662,4663,4656 ,0,0,0}, {16472,16476,16475 ,4659,4663,4662 ,0,0,0}, - {16475,16473,16472 ,4662,4660,4659 ,0,0,0}, {16476,16470,16469 ,4663,4657,4656 ,0,0,0}, - {16477,16478,16479 ,4664,4665,4666 ,0,0,0}, {16478,16480,16479 ,4665,4667,4666 ,0,0,0}, - {16481,16482,16483 ,4668,4669,4670 ,0,0,0}, {16481,16483,16480 ,4668,4670,4667 ,0,0,0}, - {16478,16481,16480 ,4665,4668,4667 ,0,0,0}, {16473,16477,16474 ,4660,4664,4661 ,0,0,0}, - {16477,16479,16474 ,4664,4666,4661 ,0,0,0}, {16484,16485,16486 ,4671,4672,4673 ,0,0,0}, - {16487,16488,16489 ,4674,4675,4676 ,0,0,0}, {16486,16485,16487 ,4673,4672,4674 ,0,0,0}, - {16490,16491,16492 ,4677,4678,4679 ,0,0,0}, {16486,16487,16489 ,4673,4674,4676 ,0,0,0}, - {16492,16491,16488 ,4679,4678,4675 ,0,0,0}, {16491,16489,16488 ,4678,4676,4675 ,0,0,0}, - {16482,16485,16484 ,4669,4672,4671 ,0,0,0}, {16493,16490,16492 ,4677,4677,4679 ,0,0,0}, - {16483,16482,16484 ,4670,4669,4671 ,0,0,0}, {16467,16471,16468 ,4654,4658,4655 ,0,0,0}, - {16494,16467,16466 ,4680,4654,4653 ,0,0,0}, {16494,16495,16496 ,4680,4681,4682 ,0,0,0}, - {16495,16494,16466 ,4681,4680,4653 ,0,0,0}, {16497,16496,16498 ,4683,4682,4684 ,0,0,0}, - {16495,16498,16496 ,4681,4684,4682 ,0,0,0}, {16499,16500,16497 ,4685,4686,4683 ,0,0,0}, - {16497,16498,16499 ,4683,4684,4685 ,0,0,0}, {16500,16501,16502 ,4686,4687,4688 ,0,0,0}, - {16501,16500,16499 ,4687,4686,4685 ,0,0,0}, {16503,16502,16504 ,4689,4688,4690 ,0,0,0}, - {16501,16504,16502 ,4687,4690,4688 ,0,0,0}, {16505,16506,16503 ,4691,4692,4689 ,0,0,0}, - {16503,16504,16505 ,4689,4690,4691 ,0,0,0}, {16506,16507,16508 ,4692,4693,4694 ,0,0,0}, - {16507,16506,16505 ,4693,4692,4691 ,0,0,0}, {16509,16508,16510 ,4695,4694,4696 ,0,0,0}, - {16507,16510,16508 ,4693,4696,4694 ,0,0,0}, {16511,16512,16509 ,4697,4698,4695 ,0,0,0}, - {16509,16510,16511 ,4695,4696,4697 ,0,0,0}, {16512,16513,16514 ,4698,4699,4700 ,0,0,0}, - {16513,16512,16511 ,4699,4698,4697 ,0,0,0}, {16513,16515,16514 ,4699,4701,4700 ,0,0,0}, - {16516,16517,16518 ,4702,4703,4704 ,0,0,0}, {16519,16520,16521 ,4705,4706,4707 ,0,0,0}, - {16517,16521,16520 ,4703,4707,4706 ,0,0,0}, {16522,16523,16524 ,4708,4709,4710 ,0,0,0}, - {16525,16519,16526 ,4711,4705,4712 ,0,0,0}, {16522,16525,16526 ,4708,4711,4712 ,0,0,0}, - {16525,16522,16524 ,4711,4708,4710 ,0,0,0}, {16526,16519,16521 ,4712,4705,4707 ,0,0,0}, - {16527,16528,16529 ,4713,4714,4715 ,0,0,0}, {16529,16528,16530 ,4715,4714,4716 ,0,0,0}, - {16531,16532,16533 ,4717,4718,4719 ,0,0,0}, {16531,16530,16532 ,4717,4716,4718 ,0,0,0}, - {16529,16530,16531 ,4715,4716,4717 ,0,0,0}, {16524,16523,16527 ,4710,4709,4713 ,0,0,0}, - {16527,16523,16528 ,4713,4709,4714 ,0,0,0}, {16534,16535,16536 ,4720,4721,4722 ,0,0,0}, - {16537,16538,16539 ,4723,4724,4725 ,0,0,0}, {16535,16537,16536 ,4721,4723,4722 ,0,0,0}, - {16540,16541,16542 ,4726,4727,4728 ,0,0,0}, {16535,16538,16537 ,4721,4724,4723 ,0,0,0}, - {16541,16539,16542 ,4727,4725,4728 ,0,0,0}, {16542,16539,16538 ,4728,4725,4724 ,0,0,0}, - {16533,16534,16536 ,4719,4720,4722 ,0,0,0}, {16543,16541,16540 ,4726,4727,4726 ,0,0,0}, - {16532,16534,16533 ,4718,4720,4719 ,0,0,0}, {16518,16517,16520 ,4704,4703,4706 ,0,0,0}, - {16544,16516,16518 ,4729,4702,4704 ,0,0,0}, {16544,16545,16546 ,4729,4730,4731 ,0,0,0}, - {16546,16516,16544 ,4731,4702,4729 ,0,0,0}, {16547,16548,16545 ,4732,4733,4730 ,0,0,0}, - {16546,16545,16548 ,4731,4730,4733 ,0,0,0}, {16549,16547,16550 ,4734,4732,4735 ,0,0,0}, - {16547,16549,16548 ,4732,4734,4733 ,0,0,0}, {16550,16551,16552 ,4735,4736,4737 ,0,0,0}, - {16552,16549,16550 ,4737,4734,4735 ,0,0,0}, {16553,16554,16551 ,4738,4739,4736 ,0,0,0}, - {16552,16551,16554 ,4737,4736,4739 ,0,0,0}, {16555,16553,16556 ,4740,4738,4741 ,0,0,0}, - {16553,16555,16554 ,4738,4740,4739 ,0,0,0}, {16556,16557,16558 ,4741,4742,4743 ,0,0,0}, - {16558,16555,16556 ,4743,4740,4741 ,0,0,0}, {16559,16560,16557 ,4744,4745,4742 ,0,0,0}, - {16558,16557,16560 ,4743,4742,4745 ,0,0,0}, {16561,16559,16562 ,4746,4744,4747 ,0,0,0}, - {16559,16561,16560 ,4744,4746,4745 ,0,0,0}, {16562,16563,16564 ,4747,4748,4749 ,0,0,0}, - {16564,16561,16562 ,4749,4746,4747 ,0,0,0}, {16564,16563,16565 ,4749,4748,4750 ,0,0,0}, - {16566,16567,16568 ,4751,4752,4753 ,0,0,0}, {16569,16570,16571 ,4754,4755,4756 ,0,0,0}, - {16567,16571,16570 ,4752,4756,4755 ,0,0,0}, {16572,16573,16574 ,4757,4758,4759 ,0,0,0}, - {16575,16569,16576 ,4760,4754,4761 ,0,0,0}, {16575,16576,16572 ,4760,4761,4757 ,0,0,0}, - {16572,16574,16575 ,4757,4759,4760 ,0,0,0}, {16569,16571,16576 ,4754,4756,4761 ,0,0,0}, - {16577,16578,16579 ,4762,4763,4764 ,0,0,0}, {16580,16578,16577 ,4765,4763,4762 ,0,0,0}, - {16581,16582,16583 ,4766,4767,4768 ,0,0,0}, {16581,16583,16580 ,4766,4768,4765 ,0,0,0}, - {16580,16583,16578 ,4765,4768,4763 ,0,0,0}, {16573,16579,16574 ,4758,4764,4759 ,0,0,0}, - {16577,16579,16573 ,4762,4764,4758 ,0,0,0}, {16584,16585,16586 ,4769,4770,4771 ,0,0,0}, - {16587,16588,16589 ,4772,4773,4774 ,0,0,0}, {16586,16585,16589 ,4771,4770,4774 ,0,0,0}, - {16590,16591,16592 ,4775,4776,4777 ,0,0,0}, {16585,16587,16589 ,4770,4772,4774 ,0,0,0}, - {16590,16588,16591 ,4775,4773,4776 ,0,0,0}, {16588,16587,16591 ,4773,4772,4776 ,0,0,0}, - {16584,16586,16582 ,4769,4771,4767 ,0,0,0}, {16593,16590,16592 ,4777,4775,4777 ,0,0,0}, - {16581,16584,16582 ,4766,4769,4767 ,0,0,0}, {16567,16570,16568 ,4752,4755,4753 ,0,0,0}, - {16566,16568,16594 ,4751,4753,4778 ,0,0,0}, {16594,16595,16596 ,4778,4779,4780 ,0,0,0}, - {16596,16566,16594 ,4780,4751,4778 ,0,0,0}, {16597,16595,16598 ,4781,4779,4782 ,0,0,0}, - {16595,16597,16596 ,4779,4781,4780 ,0,0,0}, {16599,16600,16598 ,4783,4784,4782 ,0,0,0}, - {16597,16598,16600 ,4781,4782,4784 ,0,0,0}, {16599,16601,16602 ,4783,4785,4786 ,0,0,0}, - {16602,16600,16599 ,4786,4784,4783 ,0,0,0}, {16603,16601,16604 ,4787,4785,4788 ,0,0,0}, - {16601,16603,16602 ,4785,4787,4786 ,0,0,0}, {16605,16606,16604 ,4789,4790,4788 ,0,0,0}, - {16603,16604,16606 ,4787,4788,4790 ,0,0,0}, {16605,16607,16608 ,4789,4791,4792 ,0,0,0}, - {16608,16606,16605 ,4792,4790,4789 ,0,0,0}, {16609,16607,16610 ,4793,4791,4794 ,0,0,0}, - {16607,16609,16608 ,4791,4793,4792 ,0,0,0}, {16611,16612,16610 ,4795,4796,4794 ,0,0,0}, - {16609,16610,16612 ,4793,4794,4796 ,0,0,0}, {16611,16613,16614 ,4795,4797,4798 ,0,0,0}, - {16614,16612,16611 ,4798,4796,4795 ,0,0,0}, {16613,16615,16614 ,4797,4799,4798 ,0,0,0}, - {16613,16616,16615 ,4797,324,4799 ,0,0,0}, {16617,16618,16619 ,82,4800,4801 ,0,0,0}, - {16619,16620,16621 ,4801,4802,4803 ,0,0,0}, {16620,16622,16621 ,4802,4804,4803 ,0,0,0}, - {16619,16621,16617 ,4801,4803,82 ,0,0,0}, {16623,16624,16625 ,4805,4806,4807 ,0,0,0}, - {16625,16624,16622 ,4807,4806,4804 ,0,0,0}, {16623,16626,16627 ,4805,4808,4809 ,0,0,0}, - {16627,16624,16623 ,4809,4806,4805 ,0,0,0}, {16627,16626,16628 ,4809,4808,4810 ,0,0,0}, - {16628,16626,16629 ,4810,4808,4811 ,0,0,0}, {16629,16630,16631 ,4811,4812,4813 ,0,0,0}, - {16628,16629,16631 ,4810,4811,4813 ,0,0,0}, {16622,16620,16625 ,4804,4802,4807 ,0,0,0}, - {16632,16633,16634 ,4814,4815,4816 ,0,0,0}, {16632,16634,16630 ,4814,4816,4812 ,0,0,0}, - {16630,16634,16631 ,4812,4816,4813 ,0,0,0}, {16617,16635,16618 ,82,4817,4800 ,0,0,0}, - {16636,16635,16637 ,4818,4817,4819 ,0,0,0}, {16635,16636,16618 ,4817,4818,4800 ,0,0,0}, - {16638,16639,16637 ,4820,4821,4819 ,0,0,0}, {16636,16637,16639 ,4818,4819,4821 ,0,0,0}, - {16638,16640,16641 ,4820,4822,4823 ,0,0,0}, {16641,16639,16638 ,4823,4821,4820 ,0,0,0}, - {16642,16640,16643 ,4824,4822,4825 ,0,0,0}, {16640,16642,16641 ,4822,4824,4823 ,0,0,0}, - {16644,16645,16643 ,4826,4827,4825 ,0,0,0}, {16642,16643,16645 ,4824,4825,4827 ,0,0,0}, - {16644,16646,16647 ,4826,4828,4829 ,0,0,0}, {16647,16645,16644 ,4829,4827,4826 ,0,0,0}, - {16648,16646,16649 ,4830,4828,4831 ,0,0,0}, {16646,16648,16647 ,4828,4830,4829 ,0,0,0}, - {16644,16643,16650 ,4832,4833,4834 ,0,0,0}, {16650,16646,16644 ,4834,4835,4832 ,0,0,0}, - {16650,16649,16646 ,4834,4836,4835 ,0,0,0}, {16650,16640,16638 ,4834,4837,4838 ,0,0,0}, - {16643,16640,16650 ,4833,4837,4834 ,0,0,0}, {16650,16637,16635 ,4834,4839,4840 ,0,0,0}, - {16638,16637,16650 ,4838,4839,4834 ,0,0,0}, {16635,16617,16650 ,4840,4841,4834 ,0,0,0}, - {16622,16650,16621 ,4842,4834,4843 ,0,0,0}, {16650,16617,16621 ,4834,4841,4843 ,0,0,0}, - {16627,16650,16624 ,4844,4834,4845 ,0,0,0}, {16650,16622,16624 ,4834,4842,4845 ,0,0,0}, - {16631,16650,16628 ,4846,4834,4847 ,0,0,0}, {16650,16627,16628 ,4834,4844,4847 ,0,0,0}, - {16633,16650,16634 ,4848,4834,4849 ,0,0,0}, {16650,16631,16634 ,4834,4846,4849 ,0,0,0}, - {16651,16652,16653 ,82,4850,4851 ,0,0,0}, {16653,16654,16655 ,4851,4852,4853 ,0,0,0}, - {16654,16656,16655 ,4852,4854,4853 ,0,0,0}, {16653,16655,16651 ,4851,4853,82 ,0,0,0}, - {16657,16658,16659 ,4855,4856,4857 ,0,0,0}, {16659,16658,16656 ,4857,4856,4854 ,0,0,0}, - {16657,16660,16661 ,4855,4858,4859 ,0,0,0}, {16661,16658,16657 ,4859,4856,4855 ,0,0,0}, - {16661,16660,16662 ,4859,4858,4860 ,0,0,0}, {16662,16660,16663 ,4860,4858,4861 ,0,0,0}, - {16663,16664,16665 ,4861,4862,4863 ,0,0,0}, {16662,16663,16665 ,4860,4861,4863 ,0,0,0}, - {16656,16654,16659 ,4854,4852,4857 ,0,0,0}, {16666,16667,16668 ,4864,4865,4866 ,0,0,0}, - {16666,16668,16664 ,4864,4866,4862 ,0,0,0}, {16664,16668,16665 ,4862,4866,4863 ,0,0,0}, - {16651,16669,16652 ,82,4867,4850 ,0,0,0}, {16670,16669,16671 ,4868,4867,4869 ,0,0,0}, - {16669,16670,16652 ,4867,4868,4850 ,0,0,0}, {16672,16673,16671 ,4870,4871,4869 ,0,0,0}, - {16670,16671,16673 ,4868,4869,4871 ,0,0,0}, {16672,16674,16675 ,4870,4872,4873 ,0,0,0}, - {16675,16673,16672 ,4873,4871,4870 ,0,0,0}, {16676,16674,16677 ,4874,4872,4875 ,0,0,0}, - {16674,16676,16675 ,4872,4874,4873 ,0,0,0}, {16678,16679,16677 ,4876,4877,4875 ,0,0,0}, - {16676,16677,16679 ,4874,4875,4877 ,0,0,0}, {16678,16680,16681 ,4876,4878,4829 ,0,0,0}, - {16681,16679,16678 ,4829,4877,4876 ,0,0,0}, {16682,16680,16683 ,4879,4878,4831 ,0,0,0}, - {16680,16682,16681 ,4878,4879,4829 ,0,0,0}, {16678,16677,16684 ,4832,4833,4880 ,0,0,0}, - {16684,16680,16678 ,4880,4835,4832 ,0,0,0}, {16684,16683,16680 ,4880,4881,4835 ,0,0,0}, - {16684,16674,16672 ,4880,4837,4838 ,0,0,0}, {16677,16674,16684 ,4833,4837,4880 ,0,0,0}, - {16684,16671,16669 ,4880,4839,4840 ,0,0,0}, {16672,16671,16684 ,4838,4839,4880 ,0,0,0}, - {16669,16651,16684 ,4840,4882,4880 ,0,0,0}, {16656,16684,16655 ,4842,4880,4843 ,0,0,0}, - {16684,16651,16655 ,4880,4882,4843 ,0,0,0}, {16661,16684,16658 ,4844,4880,4845 ,0,0,0}, - {16684,16656,16658 ,4880,4842,4845 ,0,0,0}, {16665,16684,16662 ,4846,4880,4847 ,0,0,0}, - {16684,16661,16662 ,4880,4844,4847 ,0,0,0}, {16667,16684,16668 ,4883,4880,4849 ,0,0,0}, - {16684,16665,16668 ,4880,4846,4849 ,0,0,0}, {16685,16686,16687 ,4884,4885,4886 ,0,0,0}, - {16687,16688,16689 ,4886,4887,4888 ,0,0,0}, {16688,16690,16689 ,4887,4889,4888 ,0,0,0}, - {16687,16689,16685 ,4886,4888,4884 ,0,0,0}, {16691,16692,16693 ,4890,4891,4857 ,0,0,0}, - {16693,16692,16690 ,4857,4891,4889 ,0,0,0}, {16691,16694,16695 ,4890,4892,4893 ,0,0,0}, - {16695,16692,16691 ,4893,4891,4890 ,0,0,0}, {16695,16694,16696 ,4893,4892,4894 ,0,0,0}, - {16696,16694,16697 ,4894,4892,4895 ,0,0,0}, {16697,16698,16699 ,4895,4896,4897 ,0,0,0}, - {16696,16697,16699 ,4894,4895,4897 ,0,0,0}, {16690,16688,16693 ,4889,4887,4857 ,0,0,0}, - {16700,16701,16702 ,4898,4899,4900 ,0,0,0}, {16700,16702,16698 ,4898,4900,4896 ,0,0,0}, - {16698,16702,16699 ,4896,4900,4897 ,0,0,0}, {16685,16703,16686 ,4884,4901,4885 ,0,0,0}, - {16704,16703,16705 ,4868,4901,4902 ,0,0,0}, {16703,16704,16686 ,4901,4868,4885 ,0,0,0}, - {16706,16707,16705 ,4820,4903,4902 ,0,0,0}, {16704,16705,16707 ,4868,4902,4903 ,0,0,0}, - {16706,16708,16709 ,4820,4904,4905 ,0,0,0}, {16709,16707,16706 ,4905,4903,4820 ,0,0,0}, - {16710,16708,16711 ,4906,4904,4907 ,0,0,0}, {16708,16710,16709 ,4904,4906,4905 ,0,0,0}, - {16712,16713,16711 ,4826,4877,4907 ,0,0,0}, {16710,16711,16713 ,4906,4907,4877 ,0,0,0}, - {16712,16714,16715 ,4826,4828,4908 ,0,0,0}, {16715,16713,16712 ,4908,4877,4826 ,0,0,0}, - {16716,16714,16717 ,4909,4828,4910 ,0,0,0}, {16714,16716,16715 ,4828,4909,4908 ,0,0,0}, - {16712,16711,16718 ,4832,4833,4880 ,0,0,0}, {16718,16714,16712 ,4880,4835,4832 ,0,0,0}, - {16718,16717,16714 ,4880,4911,4835 ,0,0,0}, {16718,16708,16706 ,4880,4837,4838 ,0,0,0}, - {16711,16708,16718 ,4833,4837,4880 ,0,0,0}, {16718,16705,16703 ,4880,4839,4840 ,0,0,0}, - {16706,16705,16718 ,4838,4839,4880 ,0,0,0}, {16703,16685,16718 ,4840,4912,4880 ,0,0,0}, - {16690,16718,16689 ,4842,4880,4843 ,0,0,0}, {16718,16685,16689 ,4880,4912,4843 ,0,0,0}, - {16695,16718,16692 ,4844,4880,4845 ,0,0,0}, {16718,16690,16692 ,4880,4842,4845 ,0,0,0}, - {16699,16718,16696 ,4846,4880,4847 ,0,0,0}, {16718,16695,16696 ,4880,4844,4847 ,0,0,0}, - {16701,16718,16702 ,4913,4880,4849 ,0,0,0}, {16718,16699,16702 ,4880,4846,4849 ,0,0,0}, - {16719,16720,16721 ,4914,4915,4916 ,0,0,0}, {16721,16722,16723 ,4916,4917,4918 ,0,0,0}, - {16722,16724,16723 ,4917,4919,4918 ,0,0,0}, {16721,16723,16719 ,4916,4918,4914 ,0,0,0}, - {16725,16726,16727 ,4920,4921,4922 ,0,0,0}, {16727,16726,16724 ,4922,4921,4919 ,0,0,0}, - {16725,16728,16729 ,4920,4923,4924 ,0,0,0}, {16729,16726,16725 ,4924,4921,4920 ,0,0,0}, - {16729,16728,16730 ,4924,4923,4925 ,0,0,0}, {16730,16728,16731 ,4925,4923,4926 ,0,0,0}, - {16731,16732,16733 ,4926,4927,4928 ,0,0,0}, {16730,16731,16733 ,4925,4926,4928 ,0,0,0}, - {16724,16722,16727 ,4919,4917,4922 ,0,0,0}, {16734,16735,16736 ,4929,4815,4930 ,0,0,0}, - {16734,16736,16732 ,4929,4930,4927 ,0,0,0}, {16732,16736,16733 ,4927,4930,4928 ,0,0,0}, - {16719,16737,16720 ,4914,4931,4915 ,0,0,0}, {16738,16737,16739 ,4932,4931,4933 ,0,0,0}, - {16737,16738,16720 ,4931,4932,4915 ,0,0,0}, {16740,16741,16739 ,4934,4821,4933 ,0,0,0}, - {16738,16739,16741 ,4932,4933,4821 ,0,0,0}, {16740,16742,16743 ,4934,4935,4936 ,0,0,0}, - {16743,16741,16740 ,4936,4821,4934 ,0,0,0}, {16744,16742,16745 ,4937,4935,4938 ,0,0,0}, - {16742,16744,16743 ,4935,4937,4936 ,0,0,0}, {16746,16747,16745 ,4826,4877,4938 ,0,0,0}, - {16744,16745,16747 ,4937,4938,4877 ,0,0,0}, {16746,16748,16749 ,4826,4939,4940 ,0,0,0}, - {16749,16747,16746 ,4940,4877,4826 ,0,0,0}, {16750,16748,16751 ,4941,4939,4942 ,0,0,0}, - {16748,16750,16749 ,4939,4941,4940 ,0,0,0}, {16746,16745,16752 ,4832,4833,4943 ,0,0,0}, - {16752,16748,16746 ,4943,4835,4832 ,0,0,0}, {16752,16751,16748 ,4943,4944,4835 ,0,0,0}, - {16752,16742,16740 ,4943,4837,4838 ,0,0,0}, {16745,16742,16752 ,4833,4837,4943 ,0,0,0}, - {16752,16739,16737 ,4943,4839,4840 ,0,0,0}, {16740,16739,16752 ,4838,4839,4943 ,0,0,0}, - {16737,16719,16752 ,4840,4945,4943 ,0,0,0}, {16724,16752,16723 ,4842,4943,4843 ,0,0,0}, - {16752,16719,16723 ,4943,4945,4843 ,0,0,0}, {16729,16752,16726 ,4844,4943,4845 ,0,0,0}, - {16752,16724,16726 ,4943,4842,4845 ,0,0,0}, {16733,16752,16730 ,4846,4943,4847 ,0,0,0}, - {16752,16729,16730 ,4943,4844,4847 ,0,0,0}, {16735,16752,16736 ,4946,4943,4849 ,0,0,0}, - {16752,16733,16736 ,4943,4846,4849 ,0,0,0}, {16753,16754,16755 ,4947,4948,4949 ,0,0,0}, - {16756,16757,16758 ,4950,4951,4952 ,0,0,0}, {16755,16758,16757 ,4949,4952,4951 ,0,0,0}, - {16759,16760,16761 ,4953,4954,4955 ,0,0,0}, {16762,16763,16756 ,4956,4957,4950 ,0,0,0}, - {16759,16763,16762 ,4953,4957,4956 ,0,0,0}, {16762,16760,16759 ,4956,4954,4953 ,0,0,0}, - {16763,16757,16756 ,4957,4951,4950 ,0,0,0}, {16764,16765,16766 ,4958,4959,4960 ,0,0,0}, - {16765,16767,16766 ,4959,4961,4960 ,0,0,0}, {16768,16769,16770 ,4962,4963,4964 ,0,0,0}, - {16768,16770,16767 ,4962,4964,4961 ,0,0,0}, {16765,16768,16767 ,4959,4962,4961 ,0,0,0}, - {16760,16764,16761 ,4954,4958,4955 ,0,0,0}, {16764,16766,16761 ,4958,4960,4955 ,0,0,0}, - {16771,16772,16773 ,4965,4966,4967 ,0,0,0}, {16774,16775,16776 ,4968,4969,4970 ,0,0,0}, - {16773,16772,16774 ,4967,4966,4968 ,0,0,0}, {16777,16778,16779 ,4726,4971,4972 ,0,0,0}, - {16773,16774,16776 ,4967,4968,4970 ,0,0,0}, {16779,16778,16775 ,4972,4971,4969 ,0,0,0}, - {16778,16776,16775 ,4971,4970,4969 ,0,0,0}, {16769,16772,16771 ,4963,4966,4965 ,0,0,0}, - {16780,16777,16779 ,4726,4726,4972 ,0,0,0}, {16770,16769,16771 ,4964,4963,4965 ,0,0,0}, - {16754,16758,16755 ,4948,4952,4949 ,0,0,0}, {16781,16754,16753 ,4973,4948,4947 ,0,0,0}, - {16781,16782,16783 ,4973,4974,4975 ,0,0,0}, {16782,16781,16753 ,4974,4973,4947 ,0,0,0}, - {16784,16783,16785 ,4976,4975,4977 ,0,0,0}, {16782,16785,16783 ,4974,4977,4975 ,0,0,0}, - {16786,16787,16784 ,4978,4979,4976 ,0,0,0}, {16784,16785,16786 ,4976,4977,4978 ,0,0,0}, - {16787,16788,16789 ,4979,4980,4981 ,0,0,0}, {16788,16787,16786 ,4980,4979,4978 ,0,0,0}, - {16790,16789,16791 ,4982,4981,4983 ,0,0,0}, {16788,16791,16789 ,4980,4983,4981 ,0,0,0}, - {16792,16793,16790 ,4984,4985,4982 ,0,0,0}, {16790,16791,16792 ,4982,4983,4984 ,0,0,0}, - {16793,16794,16795 ,4985,4986,4987 ,0,0,0}, {16794,16793,16792 ,4986,4985,4984 ,0,0,0}, - {16796,16795,16797 ,4988,4987,4989 ,0,0,0}, {16794,16797,16795 ,4986,4989,4987 ,0,0,0}, - {16798,16799,16796 ,4990,4991,4988 ,0,0,0}, {16796,16797,16798 ,4988,4989,4990 ,0,0,0}, - {16799,16800,16801 ,4991,4992,4748 ,0,0,0}, {16800,16799,16798 ,4992,4991,4990 ,0,0,0}, - {16800,16802,16801 ,4992,4750,4748 ,0,0,0}, {16803,16804,16805 ,4993,4994,4995 ,0,0,0}, - {16806,16807,16808 ,4996,4997,4998 ,0,0,0}, {16804,16809,16810 ,4994,4999,5000 ,0,0,0}, - {16809,16804,16803 ,4999,4994,4993 ,0,0,0}, {16809,16811,16810 ,4999,5001,5000 ,0,0,0}, - {16805,16812,16803 ,4995,5002,4993 ,0,0,0}, {16806,16812,16813 ,4996,5002,5003 ,0,0,0}, - {16805,16813,16812 ,4995,5003,5002 ,0,0,0}, {16814,16815,16816 ,5004,5005,5006 ,0,0,0}, - {16806,16813,16807 ,4996,5003,4997 ,0,0,0}, {16817,16818,16819 ,5007,5008,5009 ,0,0,0}, - {16820,16821,16822 ,5010,5011,5012 ,0,0,0}, {16823,16824,16825 ,5013,5014,5015 ,0,0,0}, - {16826,16827,16828 ,5016,5017,5018 ,0,0,0}, {16829,16830,16831 ,5019,5020,5021 ,0,0,0}, - {16832,16833,16824 ,5022,5023,5014 ,0,0,0}, {16834,16835,16836 ,5024,5025,5026 ,0,0,0}, - {16835,16830,16837 ,5025,5020,5027 ,0,0,0}, {16838,16839,16840 ,5028,5029,5030 ,0,0,0}, - {16841,16842,16834 ,5031,5032,5024 ,0,0,0}, {16843,16844,16845 ,5033,5034,5035 ,0,0,0}, - {16846,16840,16847 ,5036,5030,5037 ,0,0,0}, {16848,16849,16850 ,5038,5039,5040 ,0,0,0}, - {16851,16849,16852 ,5041,5039,5042 ,0,0,0}, {16853,16854,16855 ,5043,5044,5045 ,0,0,0}, - {16850,16856,16853 ,5040,5046,5043 ,0,0,0}, {16857,16858,16859 ,5047,5048,5049 ,0,0,0}, - {16857,16860,16861 ,5047,5050,5051 ,0,0,0}, {16862,16863,16864 ,5052,5053,5054 ,0,0,0}, - {16865,16866,16864 ,5055,5056,5054 ,0,0,0}, {16867,16868,16869 ,5057,5058,5059 ,0,0,0}, - {16868,16862,16870 ,5058,5052,5060 ,0,0,0}, {16871,16872,16873 ,5061,5062,5063 ,0,0,0}, - {16867,16874,16871 ,5057,5064,5061 ,0,0,0}, {16875,16876,16877 ,5065,5066,5067 ,0,0,0}, - {16875,16878,16879 ,5065,5068,5069 ,0,0,0}, {16880,16881,16882 ,5070,5071,5072 ,0,0,0}, - {16880,16883,16876 ,5070,5073,5066 ,0,0,0}, {16884,16881,16885 ,5074,5071,5075 ,0,0,0}, - {16881,16884,16882 ,5071,5074,5072 ,0,0,0}, {16886,16887,16885 ,5076,5077,5075 ,0,0,0}, - {16884,16885,16887 ,5074,5075,5077 ,0,0,0}, {16888,16889,16887 ,5078,5079,5077 ,0,0,0}, - {16887,16886,16888 ,5077,5076,5078 ,0,0,0}, {16889,16890,16891 ,5079,5080,5081 ,0,0,0}, - {16890,16889,16888 ,5080,5079,5078 ,0,0,0}, {16892,16891,16893 ,5082,5081,5083 ,0,0,0}, - {16890,16893,16891 ,5080,5083,5081 ,0,0,0}, {16894,16895,16892 ,5084,5085,5082 ,0,0,0}, - {16892,16893,16894 ,5082,5083,5084 ,0,0,0}, {16895,16896,16897 ,5085,5086,5087 ,0,0,0}, - {16896,16895,16894 ,5086,5085,5084 ,0,0,0}, {16898,16897,16899 ,5088,5087,5089 ,0,0,0}, - {16896,16899,16897 ,5086,5089,5087 ,0,0,0}, {16900,16898,16901 ,5090,5088,5091 ,0,0,0}, - {16898,16899,16901 ,5088,5089,5091 ,0,0,0}, {16900,16902,16903 ,5090,5092,5093 ,0,0,0}, - {16903,16898,16900 ,5093,5088,5090 ,0,0,0}, {16904,16902,16905 ,5094,5092,5095 ,0,0,0}, - {16902,16904,16903 ,5092,5094,5093 ,0,0,0}, {16906,16907,16905 ,126,5096,5095 ,0,0,0}, - {16904,16905,16907 ,5094,5095,5096 ,0,0,0}, {16908,16907,16906 ,126,5096,126 ,0,0,0}, - {16877,16876,16883 ,5067,5066,5073 ,0,0,0}, {16880,16882,16883 ,5070,5072,5073 ,0,0,0}, - {16873,16878,16871 ,5063,5068,5061 ,0,0,0}, {16875,16877,16878 ,5065,5067,5068 ,0,0,0}, - {16873,16879,16878 ,5063,5069,5068 ,0,0,0}, {16869,16874,16867 ,5059,5064,5057 ,0,0,0}, - {16871,16874,16872 ,5061,5064,5062 ,0,0,0}, {16863,16862,16868 ,5053,5052,5058 ,0,0,0}, - {16868,16870,16869 ,5058,5060,5059 ,0,0,0}, {16865,16858,16866 ,5055,5048,5056 ,0,0,0}, - {16863,16865,16864 ,5053,5055,5054 ,0,0,0}, {16857,16859,16860 ,5047,5049,5050 ,0,0,0}, - {16858,16865,16859 ,5048,5055,5049 ,0,0,0}, {16854,16861,16855 ,5044,5051,5045 ,0,0,0}, - {16861,16860,16855 ,5051,5050,5045 ,0,0,0}, {16850,16853,16848 ,5040,5043,5038 ,0,0,0}, - {16856,16854,16853 ,5046,5044,5043 ,0,0,0}, {16843,16851,16844 ,5033,5041,5034 ,0,0,0}, - {16852,16849,16848 ,5042,5039,5038 ,0,0,0}, {16844,16851,16852 ,5034,5041,5042 ,0,0,0}, - {16845,16846,16847 ,5035,5036,5037 ,0,0,0}, {16844,16846,16845 ,5034,5036,5035 ,0,0,0}, - {16840,16842,16838 ,5030,5032,5028 ,0,0,0}, {16847,16840,16839 ,5037,5030,5029 ,0,0,0}, - {16909,16841,16834 ,5097,5031,5024 ,0,0,0}, {16841,16838,16842 ,5031,5028,5032 ,0,0,0}, - {16910,16835,16837 ,5098,5025,5027 ,0,0,0}, {16834,16836,16909 ,5024,5026,5097 ,0,0,0}, - {16835,16910,16836 ,5025,5098,5026 ,0,0,0}, {16831,16832,16829 ,5021,5022,5019 ,0,0,0}, - {16837,16830,16829 ,5027,5020,5019 ,0,0,0}, {16825,16828,16823 ,5015,5018,5013 ,0,0,0}, - {16832,16831,16833 ,5022,5021,5023 ,0,0,0}, {16824,16833,16825 ,5014,5023,5015 ,0,0,0}, - {16817,16826,16828 ,5007,5016,5018 ,0,0,0}, {16827,16823,16828 ,5017,5013,5018 ,0,0,0}, - {16818,16822,16819 ,5008,5012,5009 ,0,0,0}, {16817,16819,16826 ,5007,5009,5016 ,0,0,0}, - {16820,16814,16821 ,5010,5004,5011 ,0,0,0}, {16818,16820,16822 ,5008,5010,5012 ,0,0,0}, - {16816,16815,16808 ,5006,5005,4998 ,0,0,0}, {16821,16814,16816 ,5011,5004,5006 ,0,0,0}, - {16806,16808,16815 ,4996,4998,5005 ,0,0,0}, {16911,16912,16913 ,5099,5100,5101 ,0,0,0}, - {16914,16915,16916 ,5102,5103,5104 ,0,0,0}, {16917,16915,16914 ,5105,5103,5102 ,0,0,0}, - {16918,16914,16916 ,5106,5102,5104 ,0,0,0}, {16919,16920,16921 ,5107,5108,5109 ,0,0,0}, - {16922,16923,16918 ,5110,5108,5106 ,0,0,0}, {16920,16924,16921 ,5108,5111,5109 ,0,0,0}, - {16920,16923,16924 ,5108,5108,5111 ,0,0,0}, {16924,16925,16926 ,5111,5112,5113 ,0,0,0}, - {16925,16927,16926 ,5112,5114,5113 ,0,0,0}, {16926,16927,16928 ,5113,5114,5115 ,0,0,0}, - {16927,16929,16928 ,5114,5116,5115 ,0,0,0}, {16930,16931,16929 ,5117,5118,5116 ,0,0,0}, - {16930,16932,16933 ,5117,5119,5120 ,0,0,0}, {16934,16933,16932 ,5121,5120,5119 ,0,0,0}, - {16934,16932,16935 ,5121,5119,5122 ,0,0,0}, {16935,16936,16934 ,5122,5123,5121 ,0,0,0}, - {16931,16928,16929 ,5118,5115,5116 ,0,0,0}, {16933,16931,16930 ,5120,5118,5117 ,0,0,0}, - {16936,16937,16938 ,5123,5124,5125 ,0,0,0}, {16937,16936,16935 ,5124,5123,5122 ,0,0,0}, - {16515,16938,16937 ,5126,5125,5124 ,0,0,0}, {16917,16914,16939 ,5105,5102,5127 ,0,0,0}, - {16940,16941,16942 ,5128,5129,5130 ,0,0,0}, {16940,16939,16941 ,5128,5127,5129 ,0,0,0}, - {16941,16943,16942 ,5129,5131,5130 ,0,0,0}, {16943,16941,16944 ,5131,5129,5132 ,0,0,0}, - {16945,16946,16947 ,5133,5134,5135 ,0,0,0}, {16945,16944,16946 ,5133,5132,5134 ,0,0,0}, - {16948,16947,16946 ,5136,5135,5134 ,0,0,0}, {16947,16948,16949 ,5135,5136,5137 ,0,0,0}, - {16950,16951,16952 ,5138,5139,5140 ,0,0,0}, {16953,16954,16948 ,5141,5142,5136 ,0,0,0}, - {16955,16956,16953 ,5143,5144,5141 ,0,0,0}, {16956,16955,16957 ,5144,5143,5145 ,0,0,0}, - {16958,16959,16955 ,5146,5147,5143 ,0,0,0}, {16912,16911,16960 ,5100,5099,5148 ,0,0,0}, - {16961,16962,16958 ,5149,5150,5146 ,0,0,0}, {16963,16964,16965 ,5151,5152,5153 ,0,0,0}, - {16966,16967,16968 ,5154,5155,5156 ,0,0,0}, {16969,16970,16971 ,5157,5158,5159 ,0,0,0}, - {16972,16973,16974 ,5160,5161,5162 ,0,0,0}, {16975,16976,16977 ,5163,5164,5165 ,0,0,0}, - {16978,16979,16980 ,5166,5167,5168 ,0,0,0}, {16978,16981,16982 ,5166,5169,5170 ,0,0,0}, - {16983,16984,16985 ,5171,5172,5173 ,0,0,0}, {16986,16987,16988 ,5174,5175,5176 ,0,0,0}, - {16989,16990,16991 ,5177,5178,5179 ,0,0,0}, {16992,16984,16983 ,5180,5172,5171 ,0,0,0}, - {16993,16994,16995 ,5179,5181,5182 ,0,0,0}, {16993,16991,16990 ,5179,5179,5178 ,0,0,0}, - {16996,16997,16998 ,5183,5184,5185 ,0,0,0}, {16999,16996,16995 ,5186,5183,5182 ,0,0,0}, - {17000,17001,17002 ,5187,5188,5189 ,0,0,0}, {17003,17000,16998 ,5190,5187,5185 ,0,0,0}, - {17004,17005,17006 ,5191,5192,5193 ,0,0,0}, {17005,17004,17002 ,5192,5191,5189 ,0,0,0}, - {17007,17008,17006 ,5194,5195,5193 ,0,0,0}, {17004,17006,17008 ,5191,5193,5195 ,0,0,0}, - {17007,17009,17010 ,5194,5196,5197 ,0,0,0}, {17010,17008,17007 ,5197,5195,5194 ,0,0,0}, - {17003,17001,17000 ,5190,5188,5187 ,0,0,0}, {17001,17005,17002 ,5188,5192,5189 ,0,0,0}, - {16997,17003,16998 ,5184,5190,5185 ,0,0,0}, {16999,16997,16996 ,5186,5184,5183 ,0,0,0}, - {16994,16999,16995 ,5181,5186,5182 ,0,0,0}, {16994,16993,16990 ,5181,5179,5178 ,0,0,0}, - {16990,17011,16994 ,5178,5198,5181 ,0,0,0}, {16983,17011,16992 ,5171,5198,5180 ,0,0,0}, - {17011,16990,16992 ,5198,5178,5180 ,0,0,0}, {17012,17013,17014 ,5199,5200,5201 ,0,0,0}, - {16985,16984,16986 ,5173,5172,5174 ,0,0,0}, {17012,17015,17016 ,5199,5202,5203 ,0,0,0}, - {17016,17013,17012 ,5203,5200,5199 ,0,0,0}, {17017,17015,17018 ,5204,5202,5205 ,0,0,0}, - {17015,17017,17016 ,5202,5204,5203 ,0,0,0}, {17019,16613,17018 ,5206,5207,5205 ,0,0,0}, - {17017,17018,16613 ,5204,5205,5207 ,0,0,0}, {16616,16613,17019 ,5197,5207,5206 ,0,0,0}, - {17014,17013,17020 ,5201,5200,5208 ,0,0,0}, {17021,17022,17023 ,5209,5210,5211 ,0,0,0}, - {17014,17020,17023 ,5201,5208,5211 ,0,0,0}, {17021,17024,17022 ,5209,5212,5210 ,0,0,0}, - {17023,17020,17021 ,5211,5208,5209 ,0,0,0}, {16987,16979,16988 ,5175,5167,5176 ,0,0,0}, - {17024,17025,17022 ,5212,5213,5210 ,0,0,0}, {16991,17025,16989 ,5179,5213,5177 ,0,0,0}, - {17024,16989,17025 ,5212,5177,5213 ,0,0,0}, {16986,16988,16985 ,5174,5176,5173 ,0,0,0}, - {16977,16966,16975 ,5165,5154,5163 ,0,0,0}, {16978,16980,16981 ,5166,5168,5169 ,0,0,0}, - {16979,16987,16980 ,5167,5175,5168 ,0,0,0}, {16981,16974,16982 ,5169,5162,5170 ,0,0,0}, - {16976,16973,16972 ,5164,5161,5160 ,0,0,0}, {16973,16982,16974 ,5161,5170,5162 ,0,0,0}, - {16977,16976,16972 ,5165,5164,5160 ,0,0,0}, {16963,16970,16969 ,5151,5158,5157 ,0,0,0}, - {16966,16968,16975 ,5154,5156,5163 ,0,0,0}, {16967,16971,16968 ,5155,5159,5156 ,0,0,0}, - {16965,16970,16963 ,5153,5158,5151 ,0,0,0}, {16967,16969,16971 ,5155,5157,5159 ,0,0,0}, - {16913,16965,16964 ,5101,5153,5152 ,0,0,0}, {16964,16565,16961 ,5152,5214,5149 ,0,0,0}, - {16919,17026,16920 ,5107,5215,5108 ,0,0,0}, {16925,16924,16923 ,5112,5111,5108 ,0,0,0}, - {16922,17027,16923 ,5110,5216,5108 ,0,0,0}, {16925,16923,17027 ,5112,5108,5216 ,0,0,0}, - {17028,17026,17029 ,5217,5215,5218 ,0,0,0}, {16916,16922,16918 ,5104,5110,5106 ,0,0,0}, - {17030,17028,17031 ,5219,5217,5220 ,0,0,0}, {17030,17032,17028 ,5219,5221,5217 ,0,0,0}, - {17033,17032,17034 ,5222,5221,5223 ,0,0,0}, {16940,16917,16939 ,5128,5105,5127 ,0,0,0}, - {17035,17033,17036 ,5224,5222,5225 ,0,0,0}, {17035,17037,17033 ,5224,5226,5222 ,0,0,0}, - {17038,17037,17039 ,5227,5226,5228 ,0,0,0}, {16945,16943,16944 ,5133,5131,5132 ,0,0,0}, - {17040,17041,17038 ,5229,5230,5227 ,0,0,0}, {17042,17041,17040 ,5231,5230,5229 ,0,0,0}, - {17043,17041,17044 ,5232,5230,5233 ,0,0,0}, {16954,16949,16948 ,5142,5137,5136 ,0,0,0}, - {16952,17043,16950 ,5140,5232,5138 ,0,0,0}, {16956,16954,16953 ,5144,5142,5141 ,0,0,0}, - {17045,16952,17046 ,5234,5140,5235 ,0,0,0}, {16959,16957,16955 ,5147,5145,5143 ,0,0,0}, - {16911,17045,16960 ,5099,5234,5148 ,0,0,0}, {16962,16959,16958 ,5150,5147,5146 ,0,0,0}, - {16962,16961,16565 ,5150,5149,5214 ,0,0,0}, {16964,16961,16913 ,5152,5149,5101 ,0,0,0}, - {16913,16961,16911 ,5101,5149,5099 ,0,0,0}, {17046,16960,17045 ,5235,5148,5234 ,0,0,0}, - {16951,17046,16952 ,5139,5235,5140 ,0,0,0}, {17044,16950,17043 ,5233,5138,5232 ,0,0,0}, - {17042,17044,17041 ,5231,5233,5230 ,0,0,0}, {17039,17040,17038 ,5228,5229,5227 ,0,0,0}, - {17035,17039,17037 ,5224,5228,5226 ,0,0,0}, {17034,17036,17033 ,5223,5225,5222 ,0,0,0}, - {17030,17034,17032 ,5219,5223,5221 ,0,0,0}, {17029,17031,17028 ,5218,5220,5217 ,0,0,0}, - {16919,17029,17026 ,5107,5218,5215 ,0,0,0}, {17047,17048,17049 ,5236,5237,5238 ,0,0,0}, - {17050,17051,17049 ,5239,5240,5238 ,0,0,0}, {17047,17049,17051 ,5236,5238,5240 ,0,0,0}, - {17050,17052,17053 ,5239,5241,5242 ,0,0,0}, {17053,17051,17050 ,5242,5240,5239 ,0,0,0}, - {17054,17052,17055 ,5243,5241,5244 ,0,0,0}, {17052,17054,17053 ,5241,5243,5242 ,0,0,0}, - {17056,17057,17055 ,5245,5246,5244 ,0,0,0}, {17054,17055,17057 ,5243,5244,5246 ,0,0,0}, - {17056,17058,17059 ,5245,5247,5248 ,0,0,0}, {17059,17057,17056 ,5248,5246,5245 ,0,0,0}, - {17060,17058,17061 ,5249,5247,5250 ,0,0,0}, {17058,17060,17059 ,5247,5249,5248 ,0,0,0}, - {17062,17063,17061 ,5251,5252,5250 ,0,0,0}, {17060,17061,17063 ,5249,5250,5252 ,0,0,0}, - {17062,17064,17065 ,5251,5253,5254 ,0,0,0}, {17065,17063,17062 ,5254,5252,5251 ,0,0,0}, - {17066,17064,17067 ,5255,5253,5256 ,0,0,0}, {17064,17066,17065 ,5253,5255,5254 ,0,0,0}, - {17068,17069,17067 ,5257,5258,5256 ,0,0,0}, {17066,17067,17069 ,5255,5256,5258 ,0,0,0}, - {17068,17070,17071 ,5257,5259,5260 ,0,0,0}, {17071,17069,17068 ,5260,5258,5257 ,0,0,0}, - {17072,17070,17073 ,5261,5259,5262 ,0,0,0}, {17070,17072,17071 ,5259,5261,5260 ,0,0,0}, - {17074,17075,17073 ,5263,5264,5262 ,0,0,0}, {17072,17073,17075 ,5261,5262,5264 ,0,0,0}, - {17074,17076,17077 ,5263,5265,5266 ,0,0,0}, {17077,17075,17074 ,5266,5264,5263 ,0,0,0}, - {17078,17076,17079 ,5267,5265,5268 ,0,0,0}, {17076,17078,17077 ,5265,5267,5266 ,0,0,0}, - {17080,17081,17079 ,5269,5270,5268 ,0,0,0}, {17078,17079,17081 ,5267,5268,5270 ,0,0,0}, - {17080,17082,17083 ,5269,5271,5272 ,0,0,0}, {17083,17081,17080 ,5272,5270,5269 ,0,0,0}, - {17084,17082,17085 ,5273,5271,5274 ,0,0,0}, {17082,17084,17083 ,5271,5273,5272 ,0,0,0}, - {17086,17087,17085 ,5275,5276,5274 ,0,0,0}, {17084,17085,17087 ,5273,5274,5276 ,0,0,0}, - {17086,17088,17089 ,5275,5277,5278 ,0,0,0}, {17089,17087,17086 ,5278,5276,5275 ,0,0,0}, - {17090,17088,17091 ,5279,5277,5280 ,0,0,0}, {17088,17090,17089 ,5277,5279,5278 ,0,0,0}, - {17092,17093,17091 ,5281,5282,5280 ,0,0,0}, {17090,17091,17093 ,5279,5280,5282 ,0,0,0}, - {17094,17092,17095 ,5283,5281,5284 ,0,0,0}, {17094,17093,17092 ,5283,5282,5281 ,0,0,0}, - {17096,17095,17097 ,5285,5284,5286 ,0,0,0}, {17092,17097,17095 ,5281,5286,5284 ,0,0,0}, - {17098,17096,17099 ,5287,5285,5288 ,0,0,0}, {17096,17097,17099 ,5285,5286,5288 ,0,0,0}, - {17098,17100,17101 ,5287,5289,5290 ,0,0,0}, {17101,17096,17098 ,5290,5285,5287 ,0,0,0}, - {17100,17102,17101 ,5289,5291,5290 ,0,0,0}, {17103,17048,17047 ,5292,5237,5236 ,0,0,0}, - {17103,17104,17105 ,5292,5293,5294 ,0,0,0}, {17105,17048,17103 ,5294,5237,5292 ,0,0,0}, - {17106,17104,17107 ,5295,5293,5296 ,0,0,0}, {17104,17106,17105 ,5293,5295,5294 ,0,0,0}, - {17108,17109,17107 ,5297,5298,5296 ,0,0,0}, {17106,17107,17109 ,5295,5296,5298 ,0,0,0}, - {17108,17110,17111 ,5297,5299,5300 ,0,0,0}, {17111,17109,17108 ,5300,5298,5297 ,0,0,0}, - {17112,17110,17113 ,5301,5299,5302 ,0,0,0}, {17110,17112,17111 ,5299,5301,5300 ,0,0,0}, - {17114,17115,17113 ,5303,5304,5302 ,0,0,0}, {17112,17113,17115 ,5301,5302,5304 ,0,0,0}, - {17114,17116,17117 ,5303,5305,5306 ,0,0,0}, {17117,17115,17114 ,5306,5304,5303 ,0,0,0}, - {17118,17116,17119 ,5307,5305,5308 ,0,0,0}, {17116,17118,17117 ,5305,5307,5306 ,0,0,0}, - {17120,17121,17119 ,5309,5310,5308 ,0,0,0}, {17118,17119,17121 ,5307,5308,5310 ,0,0,0}, - {17120,17122,17123 ,5309,5311,5312 ,0,0,0}, {17123,17121,17120 ,5312,5310,5309 ,0,0,0}, - {17124,17122,17125 ,5313,5311,5314 ,0,0,0}, {17122,17124,17123 ,5311,5313,5312 ,0,0,0}, - {17126,17127,17125 ,5315,5316,5314 ,0,0,0}, {17124,17125,17127 ,5313,5314,5316 ,0,0,0}, - {17126,17128,17129 ,5315,5317,5318 ,0,0,0}, {17129,17127,17126 ,5318,5316,5315 ,0,0,0}, - {17130,17128,17131 ,5319,5317,5320 ,0,0,0}, {17128,17130,17129 ,5317,5319,5318 ,0,0,0}, - {17132,17133,17131 ,5321,5322,5320 ,0,0,0}, {17130,17131,17133 ,5319,5320,5322 ,0,0,0}, - {17132,17134,17135 ,5321,5323,5324 ,0,0,0}, {17135,17133,17132 ,5324,5322,5321 ,0,0,0}, - {17136,17134,17137 ,5325,5323,5326 ,0,0,0}, {17134,17136,17135 ,5323,5325,5324 ,0,0,0}, - {17138,17139,17137 ,5327,5328,5326 ,0,0,0}, {17136,17137,17139 ,5325,5326,5328 ,0,0,0}, - {17138,17140,17141 ,5327,5329,5330 ,0,0,0}, {17141,17139,17138 ,5330,5328,5327 ,0,0,0}, - {17142,17140,17143 ,5331,5329,5332 ,0,0,0}, {17140,17142,17141 ,5329,5331,5330 ,0,0,0}, - {17144,17145,17143 ,5333,5334,5332 ,0,0,0}, {17142,17143,17145 ,5331,5332,5334 ,0,0,0}, - {17144,17146,17147 ,5333,5335,5336 ,0,0,0}, {17147,17145,17144 ,5336,5334,5333 ,0,0,0}, - {17148,17149,17146 ,5337,5338,5335 ,0,0,0}, {17146,17149,17147 ,5335,5338,5336 ,0,0,0}, - {17150,17151,17148 ,5339,5340,5337 ,0,0,0}, {17148,17146,17150 ,5337,5335,5339 ,0,0,0}, - {17152,17153,17151 ,5341,5342,5340 ,0,0,0}, {17152,17151,17150 ,5341,5340,5339 ,0,0,0}, - {17154,17153,17155 ,5343,5342,5344 ,0,0,0}, {17153,17154,17151 ,5342,5343,5340 ,0,0,0}, - {17154,17155,17156 ,5343,5344,5345 ,0,0,0}, {17157,17158,17159 ,5346,5347,5348 ,0,0,0}, - {17160,17161,17159 ,5349,5350,5348 ,0,0,0}, {17157,17159,17161 ,5346,5348,5350 ,0,0,0}, - {17160,17162,17163 ,5349,5351,5352 ,0,0,0}, {17163,17161,17160 ,5352,5350,5349 ,0,0,0}, - {17164,17162,17165 ,5353,5351,5354 ,0,0,0}, {17162,17164,17163 ,5351,5353,5352 ,0,0,0}, - {17166,17167,17165 ,5355,5356,5354 ,0,0,0}, {17164,17165,17167 ,5353,5354,5356 ,0,0,0}, - {17166,17168,17169 ,5355,5357,5358 ,0,0,0}, {17169,17167,17166 ,5358,5356,5355 ,0,0,0}, - {17170,17168,17171 ,5359,5357,5360 ,0,0,0}, {17168,17170,17169 ,5357,5359,5358 ,0,0,0}, - {17172,17173,17171 ,5361,5362,5360 ,0,0,0}, {17170,17171,17173 ,5359,5360,5362 ,0,0,0}, - {17172,17174,17175 ,5361,5363,5364 ,0,0,0}, {17175,17173,17172 ,5364,5362,5361 ,0,0,0}, - {17176,17174,17177 ,5365,5363,5366 ,0,0,0}, {17174,17176,17175 ,5363,5365,5364 ,0,0,0}, - {17178,17179,17177 ,5367,5368,5366 ,0,0,0}, {17176,17177,17179 ,5365,5366,5368 ,0,0,0}, - {17178,17180,17181 ,5367,5369,5370 ,0,0,0}, {17181,17179,17178 ,5370,5368,5367 ,0,0,0}, - {17182,17180,17183 ,5371,5369,5372 ,0,0,0}, {17180,17182,17181 ,5369,5371,5370 ,0,0,0}, - {17184,17185,17183 ,5373,5374,5372 ,0,0,0}, {17182,17183,17185 ,5371,5372,5374 ,0,0,0}, - {17184,17186,17187 ,5373,5375,5376 ,0,0,0}, {17187,17185,17184 ,5376,5374,5373 ,0,0,0}, - {17188,17186,17189 ,5377,5375,5378 ,0,0,0}, {17186,17188,17187 ,5375,5377,5376 ,0,0,0}, - {17190,17191,17189 ,5379,5380,5378 ,0,0,0}, {17188,17189,17191 ,5377,5378,5380 ,0,0,0}, - {17190,17192,17193 ,5379,5381,5382 ,0,0,0}, {17193,17191,17190 ,5382,5380,5379 ,0,0,0}, - {17194,17192,17195 ,5383,5381,5384 ,0,0,0}, {17192,17194,17193 ,5381,5383,5382 ,0,0,0}, - {17196,17197,17195 ,5385,5386,5384 ,0,0,0}, {17194,17195,17197 ,5383,5384,5386 ,0,0,0}, - {17196,17198,17199 ,5385,5387,5388 ,0,0,0}, {17199,17197,17196 ,5388,5386,5385 ,0,0,0}, - {17200,17198,17201 ,5389,5387,5390 ,0,0,0}, {17198,17200,17199 ,5387,5389,5388 ,0,0,0}, - {17202,17203,17201 ,5391,5392,5390 ,0,0,0}, {17200,17201,17203 ,5389,5390,5392 ,0,0,0}, - {17202,17204,17205 ,5391,5393,5394 ,0,0,0}, {17205,17203,17202 ,5394,5392,5391 ,0,0,0}, - {17206,17204,17207 ,5395,5393,5396 ,0,0,0}, {17204,17206,17205 ,5393,5395,5394 ,0,0,0}, - {17208,17209,17207 ,5397,5398,5396 ,0,0,0}, {17206,17207,17209 ,5395,5396,5398 ,0,0,0}, - {17208,17210,17211 ,5397,5399,5400 ,0,0,0}, {17211,17209,17208 ,5400,5398,5397 ,0,0,0}, - {17212,17210,17213 ,5401,5399,5402 ,0,0,0}, {17210,17212,17211 ,5399,5401,5400 ,0,0,0}, - {17214,17215,17213 ,5403,5404,5402 ,0,0,0}, {17212,17213,17215 ,5401,5402,5404 ,0,0,0}, - {17214,17216,17217 ,5403,5405,5406 ,0,0,0}, {17217,17215,17214 ,5406,5404,5403 ,0,0,0}, - {17216,17218,17217 ,5405,5407,5406 ,0,0,0}, {17219,17158,17157 ,5408,5347,5346 ,0,0,0}, - {17219,17220,17221 ,5408,5409,5410 ,0,0,0}, {17221,17158,17219 ,5410,5347,5408 ,0,0,0}, - {17222,17220,17223 ,5411,5409,5412 ,0,0,0}, {17220,17222,17221 ,5409,5411,5410 ,0,0,0}, - {17224,17225,17223 ,5413,5414,5412 ,0,0,0}, {17222,17223,17225 ,5411,5412,5414 ,0,0,0}, - {17224,17226,17227 ,5413,5415,5416 ,0,0,0}, {17227,17225,17224 ,5416,5414,5413 ,0,0,0}, - {17228,17226,17229 ,5417,5415,5418 ,0,0,0}, {17226,17228,17227 ,5415,5417,5416 ,0,0,0}, - {17230,17231,17229 ,5419,5420,5418 ,0,0,0}, {17228,17229,17231 ,5417,5418,5420 ,0,0,0}, - {17230,17232,17233 ,5419,5421,5422 ,0,0,0}, {17233,17231,17230 ,5422,5420,5419 ,0,0,0}, - {17234,17232,17235 ,5423,5421,5424 ,0,0,0}, {17232,17234,17233 ,5421,5423,5422 ,0,0,0}, - {17236,17237,17235 ,5425,5426,5424 ,0,0,0}, {17234,17235,17237 ,5423,5424,5426 ,0,0,0}, - {17236,17238,17239 ,5425,5427,5428 ,0,0,0}, {17239,17237,17236 ,5428,5426,5425 ,0,0,0}, - {17240,17238,17241 ,5429,5427,5430 ,0,0,0}, {17238,17240,17239 ,5427,5429,5428 ,0,0,0}, - {17242,17243,17241 ,5431,5432,5430 ,0,0,0}, {17240,17241,17243 ,5429,5430,5432 ,0,0,0}, - {17242,17244,17245 ,5431,5433,5434 ,0,0,0}, {17245,17243,17242 ,5434,5432,5431 ,0,0,0}, - {17246,17244,17247 ,5435,5433,5436 ,0,0,0}, {17244,17246,17245 ,5433,5435,5434 ,0,0,0}, - {17248,17249,17247 ,5437,5438,5436 ,0,0,0}, {17246,17247,17249 ,5435,5436,5438 ,0,0,0}, - {17248,17250,17251 ,5437,5439,5440 ,0,0,0}, {17251,17249,17248 ,5440,5438,5437 ,0,0,0}, - {17252,17250,17253 ,5441,5439,5442 ,0,0,0}, {17250,17252,17251 ,5439,5441,5440 ,0,0,0}, - {17254,17255,17253 ,5443,5444,5442 ,0,0,0}, {17252,17253,17255 ,5441,5442,5444 ,0,0,0}, - {17254,17256,17257 ,5443,5445,5446 ,0,0,0}, {17257,17255,17254 ,5446,5444,5443 ,0,0,0}, - {17258,17256,17259 ,5447,5445,5448 ,0,0,0}, {17256,17258,17257 ,5445,5447,5446 ,0,0,0}, - {17260,17261,17259 ,5449,5450,5448 ,0,0,0}, {17258,17259,17261 ,5447,5448,5450 ,0,0,0}, - {17260,17262,17263 ,5449,5451,5452 ,0,0,0}, {17263,17261,17260 ,5452,5450,5449 ,0,0,0}, - {17264,17262,17265 ,5453,5451,5454 ,0,0,0}, {17262,17264,17263 ,5451,5453,5452 ,0,0,0}, - {17266,17267,17265 ,5455,5456,5454 ,0,0,0}, {17264,17265,17267 ,5453,5454,5456 ,0,0,0}, - {17266,17268,17269 ,5455,5457,5458 ,0,0,0}, {17269,17267,17266 ,5458,5456,5455 ,0,0,0}, - {17270,17268,17271 ,5459,5457,5460 ,0,0,0}, {17268,17270,17269 ,5457,5459,5458 ,0,0,0}, - {17272,17273,17271 ,5461,5462,5460 ,0,0,0}, {17270,17271,17273 ,5459,5460,5462 ,0,0,0}, - {17272,17274,17275 ,5461,5463,5464 ,0,0,0}, {17275,17273,17272 ,5464,5462,5461 ,0,0,0}, - {17276,17274,17277 ,5465,5463,5466 ,0,0,0}, {17274,17276,17275 ,5463,5465,5464 ,0,0,0}, - {17276,17277,17278 ,5465,5466,5467 ,0,0,0}, {17279,16313,16312 ,5468,5469,5469 ,0,0,0}, - {17280,17281,17282 ,726,726,726 ,0,0,0}, {17283,16046,16043 ,726,5470,726 ,0,0,0}, - {17284,17285,17286 ,5471,726,726 ,0,0,0}, {17287,17288,17289 ,726,726,726 ,0,0,0}, - {17290,16268,17291 ,5468,5471,5469 ,0,0,0}, {17292,17293,17294 ,5470,726,726 ,0,0,0}, - {17295,17296,17297 ,5471,5469,5469 ,0,0,0}, {17298,17297,16241 ,5468,5469,5469 ,0,0,0}, - {17299,17300,16347 ,5469,5472,5468 ,0,0,0}, {17301,17302,17303 ,5469,5468,5471 ,0,0,0}, - {17304,17305,17306 ,5473,5474,726 ,0,0,0}, {17307,17308,17309 ,5475,5476,5471 ,0,0,0}, - {17310,17311,17312 ,5477,5478,5469 ,0,0,0}, {17305,17304,17313 ,5474,5473,5479 ,0,0,0}, - {17314,17315,17316 ,5471,5469,726 ,0,0,0}, {17317,17318,16306 ,5468,5469,5471 ,0,0,0}, - {17319,17320,17321 ,726,5480,5481 ,0,0,0}, {17312,17322,17323 ,5469,726,5468 ,0,0,0}, - {17324,17325,17326 ,5475,5475,5482 ,0,0,0}, {17327,15981,17324 ,5468,5483,5475 ,0,0,0}, - {17326,17328,17329 ,5482,5482,5482 ,0,0,0}, {17325,17328,17326 ,5475,5482,5482 ,0,0,0}, - {17329,17330,17326 ,5482,5475,5482 ,0,0,0}, {17321,17315,17331 ,5481,5469,5475 ,0,0,0}, - {17332,16361,17333 ,726,5471,5484 ,0,0,0}, {17305,17313,17323 ,5474,5479,5468 ,0,0,0}, - {17334,17335,17336 ,5475,5485,5468 ,0,0,0}, {17337,17338,17339 ,5486,5483,5468 ,0,0,0}, - {17322,17305,17323 ,726,5474,5468 ,0,0,0}, {16306,17318,16307 ,5471,5469,726 ,0,0,0}, - {16313,17279,16315 ,5469,5468,726 ,0,0,0}, {16319,16318,17340 ,5471,5471,726 ,0,0,0}, - {16347,16317,17299 ,5468,5468,5469 ,0,0,0}, {16345,16317,16347 ,5471,5468,5468 ,0,0,0}, - {16319,17341,16344 ,5471,5471,5469 ,0,0,0}, {17342,16351,16350 ,5468,5478,726 ,0,0,0}, - {16318,17343,17340 ,5471,726,726 ,0,0,0}, {16274,17344,17345 ,5471,5468,726 ,0,0,0}, - {17346,16361,16359 ,5475,5471,726 ,0,0,0}, {17347,17348,17349 ,5469,5482,5483 ,0,0,0}, - {17350,17348,17351 ,5468,5482,5475 ,0,0,0}, {17352,17353,17354 ,726,5468,5468 ,0,0,0}, - {17355,17303,17356 ,726,5471,5469 ,0,0,0}, {17357,17358,17359 ,5475,5475,726 ,0,0,0}, - {17353,17352,17360 ,5468,726,5483 ,0,0,0}, {17361,17362,17363 ,5480,5487,5475 ,0,0,0}, - {17360,17364,17347 ,5483,5478,5469 ,0,0,0}, {17365,17366,17367 ,5475,5479,5474 ,0,0,0}, - {17367,17333,17365 ,5474,5484,5475 ,0,0,0}, {17368,17369,17367 ,5473,726,5474 ,0,0,0}, - {17368,17367,17366 ,5473,5474,5479 ,0,0,0}, {17350,17349,17348 ,5468,5483,5482 ,0,0,0}, - {17362,17357,17370 ,5487,5475,726 ,0,0,0}, {17348,17347,17364 ,5482,5469,5478 ,0,0,0}, - {17371,17372,17332 ,5486,5478,726 ,0,0,0}, {17355,17356,17354 ,726,5469,5468 ,0,0,0}, - {16271,17344,16274 ,726,5468,5471 ,0,0,0}, {17365,17333,16361 ,5475,5484,5471 ,0,0,0}, - {17373,17374,17375 ,726,726,726 ,0,0,0}, {17376,17377,16277 ,5468,5469,726 ,0,0,0}, - {17346,16359,17378 ,5475,726,5482 ,0,0,0}, {17379,16283,17380 ,726,726,5470 ,0,0,0}, - {16356,17381,17382 ,5475,5485,5475 ,0,0,0}, {17383,17384,16201 ,5471,726,5471 ,0,0,0}, - {16105,17385,16100 ,726,5470,726 ,0,0,0}, {17386,17387,17388 ,5470,5471,5471 ,0,0,0}, - {17389,17390,17391 ,726,726,5470 ,0,0,0}, {17391,17292,17389 ,5470,5470,726 ,0,0,0}, - {17373,17294,17374 ,726,726,726 ,0,0,0}, {17392,17393,17394 ,726,726,5470 ,0,0,0}, - {17286,17386,17388 ,726,5470,5471 ,0,0,0}, {17390,17395,17396 ,726,726,726 ,0,0,0}, - {16285,17397,17398 ,726,5470,726 ,0,0,0}, {17399,17400,17401 ,5470,726,726 ,0,0,0}, - {17374,17294,17293 ,726,726,726 ,0,0,0}, {17397,17402,17403 ,5470,726,5468 ,0,0,0}, - {17374,17404,17375 ,726,726,726 ,0,0,0}, {17403,17405,17406 ,5468,5468,726 ,0,0,0}, - {17402,17405,17403 ,726,5468,5468 ,0,0,0}, {17406,17407,17403 ,726,5471,5468 ,0,0,0}, - {17408,17409,17410 ,726,726,5471 ,0,0,0}, {16285,17402,17397 ,726,726,5470 ,0,0,0}, - {17398,17411,17412 ,726,726,726 ,0,0,0}, {17413,17414,17415 ,726,5488,5489 ,0,0,0}, - {16243,17416,17417 ,5471,5470,726 ,0,0,0}, {16271,17297,17344 ,726,5469,5468 ,0,0,0}, - {17418,16198,16195 ,726,726,5471 ,0,0,0}, {17419,16122,16119 ,726,726,726 ,0,0,0}, - {17420,16055,17421 ,726,5470,726 ,0,0,0}, {17422,16198,17418 ,726,726,726 ,0,0,0}, - {17423,17424,17425 ,726,726,726 ,0,0,0}, {17426,17427,17428 ,5489,726,726 ,0,0,0}, - {16192,17429,16193 ,726,5471,726 ,0,0,0}, {17430,17424,17431 ,726,726,726 ,0,0,0}, - {17432,17433,17434 ,726,726,5489 ,0,0,0}, {17435,17436,17437 ,726,726,726 ,0,0,0}, - {17438,17424,17430 ,726,726,726 ,0,0,0}, {17280,17282,17437 ,726,726,726 ,0,0,0}, - {17439,17440,17441 ,726,726,5489 ,0,0,0}, {17281,17423,17425 ,726,726,726 ,0,0,0}, - {17442,17443,17444 ,726,726,726 ,0,0,0}, {17440,17445,17442 ,726,5488,726 ,0,0,0}, - {17438,17425,17424 ,726,726,726 ,0,0,0}, {17289,17426,16209 ,726,5489,726 ,0,0,0}, - {17446,17447,17448 ,5489,726,726 ,0,0,0}, {17446,17449,17447 ,5489,5488,726 ,0,0,0}, - {17450,17451,17452 ,726,5471,726 ,0,0,0}, {17447,17449,17453 ,726,5488,726 ,0,0,0}, - {17454,17447,17453 ,726,726,726 ,0,0,0}, {17455,16167,17456 ,726,726,726 ,0,0,0}, - {16125,17457,17458 ,726,726,726 ,0,0,0}, {16283,16281,17380 ,726,726,5470 ,0,0,0}, - {17289,16205,17459 ,726,726,726 ,0,0,0}, {17451,17460,17461 ,5471,5471,726 ,0,0,0}, - {17462,16023,17463 ,726,5470,726 ,0,0,0}, {17452,17464,17450 ,726,5471,726 ,0,0,0}, - {16133,17465,17466 ,5489,726,726 ,0,0,0}, {17467,17468,17469 ,726,726,726 ,0,0,0}, - {17470,17471,17469 ,726,5471,726 ,0,0,0}, {17434,17433,17472 ,5489,726,5488 ,0,0,0}, - {17419,17473,16122 ,726,726,726 ,0,0,0}, {17427,17289,17448 ,726,726,726 ,0,0,0}, - {17474,17419,17472 ,726,726,5488 ,0,0,0}, {16049,17475,17476 ,726,5471,726 ,0,0,0}, - {17477,17478,17468 ,726,5488,726 ,0,0,0}, {17469,17479,17480 ,726,5471,726 ,0,0,0}, - {17481,17482,17483 ,726,726,5488 ,0,0,0}, {17484,17485,17481 ,726,726,726 ,0,0,0}, - {17486,17485,17487 ,726,726,726 ,0,0,0}, {17488,16133,17466 ,726,5489,726 ,0,0,0}, - {17489,17469,17490 ,726,726,726 ,0,0,0}, {17466,17465,17491 ,726,726,726 ,0,0,0}, - {17468,17492,17477 ,726,726,726 ,0,0,0}, {17493,17491,17465 ,726,726,726 ,0,0,0}, - {17468,17478,17469 ,726,5488,726 ,0,0,0}, {17493,17494,17491 ,726,5488,726 ,0,0,0}, - {17495,17492,17468 ,726,726,726 ,0,0,0}, {17491,17494,17496 ,726,5488,726 ,0,0,0}, - {17469,17497,17479 ,726,726,5471 ,0,0,0}, {16328,17498,16327 ,5469,5468,5468 ,0,0,0}, - {16328,16333,17499 ,5469,726,726 ,0,0,0}, {17500,16040,17501 ,726,5471,5471 ,0,0,0}, - {17502,15947,17503 ,5470,5468,5468 ,0,0,0}, {16057,17504,17505 ,5470,726,726 ,0,0,0}, - {17506,17507,17508 ,5468,726,5469 ,0,0,0}, {17509,17510,17511 ,5471,5468,726 ,0,0,0}, - {17512,17506,17513 ,5468,5468,726 ,0,0,0}, {17514,17515,17516 ,726,5470,5469 ,0,0,0}, - {17517,17518,17519 ,726,5469,726 ,0,0,0}, {17520,17521,17522 ,5471,5469,726 ,0,0,0}, - {17523,16344,17524 ,726,5469,5470 ,0,0,0}, {17488,17525,17526 ,726,5489,726 ,0,0,0}, - {17469,17471,17527 ,726,5471,726 ,0,0,0}, {17528,16231,16230 ,5468,726,5469 ,0,0,0}, - {17529,17530,17419 ,5470,5471,726 ,0,0,0}, {17283,17531,16046 ,726,726,5470 ,0,0,0}, - {17532,16091,16090 ,5471,726,726 ,0,0,0}, {17533,16333,16331 ,726,726,5468 ,0,0,0}, - {17534,17535,17536 ,726,5470,5471 ,0,0,0}, {17537,17538,17539 ,5471,726,5470 ,0,0,0}, - {17540,17541,17542 ,726,5470,726 ,0,0,0}, {17504,17543,17505 ,726,726,726 ,0,0,0}, - {17543,17504,17544 ,726,726,726 ,0,0,0}, {17505,17535,16057 ,726,5470,5470 ,0,0,0}, - {17543,17544,17545 ,726,726,726 ,0,0,0}, {17517,17511,17510 ,726,726,5468 ,0,0,0}, - {17543,17545,17546 ,726,726,726 ,0,0,0}, {17547,17548,17549 ,5471,5471,5468 ,0,0,0}, - {17515,17522,17516 ,5470,726,5469 ,0,0,0}, {17550,17514,17551 ,726,726,726 ,0,0,0}, - {17552,17553,17521 ,5468,5469,5469 ,0,0,0}, {17521,17520,17552 ,5469,5471,5468 ,0,0,0}, - {17554,17555,17552 ,5471,726,5468 ,0,0,0}, {17552,17555,17553 ,5468,726,5469 ,0,0,0}, - {16351,17556,16353 ,5478,5487,5468 ,0,0,0}, {16285,16283,17379 ,726,726,726 ,0,0,0}, - {17378,16359,16357 ,5482,726,5468 ,0,0,0}, {17377,16280,16277 ,5469,726,726 ,0,0,0}, - {17298,17295,17297 ,5468,5471,5469 ,0,0,0}, {17557,17296,17295 ,5468,5469,5471 ,0,0,0}, - {17302,17301,17558 ,5468,5469,5469 ,0,0,0}, {17296,17557,17559 ,5469,5468,5470 ,0,0,0}, - {17301,17303,17355 ,5469,5471,726 ,0,0,0}, {17558,17559,17560 ,5469,5470,5469 ,0,0,0}, - {17354,17356,17352 ,5468,5469,726 ,0,0,0}, {17360,17347,17353 ,5483,5469,5468 ,0,0,0}, - {17358,17364,17359 ,5475,5478,726 ,0,0,0}, {17364,17360,17359 ,5478,5483,726 ,0,0,0}, - {17371,17361,17372 ,5486,5480,5478 ,0,0,0}, {17362,17358,17357 ,5487,5475,5475 ,0,0,0}, - {17361,17363,17372 ,5480,5475,5478 ,0,0,0}, {17363,17362,17370 ,5475,5487,726 ,0,0,0}, - {17333,17371,17332 ,5484,5486,726 ,0,0,0}, {17346,17365,16361 ,5475,5475,5471 ,0,0,0}, - {17378,16357,17382 ,5482,5468,5475 ,0,0,0}, {17382,16357,16356 ,5475,5468,5475 ,0,0,0}, - {16353,17556,17381 ,5468,5487,5485 ,0,0,0}, {17381,16356,16353 ,5485,5475,5468 ,0,0,0}, - {17342,17556,16351 ,5468,5487,5478 ,0,0,0}, {17300,17342,16350 ,5472,5468,726 ,0,0,0}, - {17524,16344,17341 ,5470,5469,5471 ,0,0,0}, {16347,17300,16350 ,5468,5472,726 ,0,0,0}, - {17561,17562,16327 ,5471,5470,5468 ,0,0,0}, {16324,17562,17563 ,726,5470,726 ,0,0,0}, - {17309,17564,17307 ,5471,5468,5475 ,0,0,0}, {17318,17565,16307 ,5469,5469,726 ,0,0,0}, - {17566,17567,17327 ,5472,5482,5468 ,0,0,0}, {16290,15959,16286 ,5468,5468,5468 ,0,0,0}, - {15967,15965,17506 ,5471,726,5468 ,0,0,0}, {16222,15869,16220 ,5471,726,5469 ,0,0,0}, - {16233,17568,16236 ,5471,726,726 ,0,0,0}, {17418,16195,17284 ,726,5471,5471 ,0,0,0}, - {15889,17569,17570 ,726,726,5470 ,0,0,0}, {17571,17572,16131 ,726,726,726 ,0,0,0}, - {17573,16251,17574 ,726,726,5471 ,0,0,0}, {15866,17575,15863 ,5471,5471,5471 ,0,0,0}, - {15878,17576,17577 ,726,5469,5469 ,0,0,0}, {16217,16330,16336 ,5471,5469,5469 ,0,0,0}, - {16324,16327,17562 ,726,5468,5470 ,0,0,0}, {16340,16218,16336 ,5468,726,5469 ,0,0,0}, - {16330,15874,16331 ,5469,5471,5468 ,0,0,0}, {17533,17499,16333 ,726,726,726 ,0,0,0}, - {17499,17498,16328 ,726,5468,5469 ,0,0,0}, {17498,17561,16327 ,5468,5471,5468 ,0,0,0}, - {16321,16324,17563 ,726,726,726 ,0,0,0}, {16317,16345,17523 ,5468,5471,726 ,0,0,0}, - {16321,17343,16318 ,726,726,5471 ,0,0,0}, {17343,16321,17563 ,726,726,726 ,0,0,0}, - {17340,17341,16319 ,726,5471,5471 ,0,0,0}, {16344,17523,16345 ,5469,726,5471 ,0,0,0}, - {16315,17578,16317 ,726,5468,5468 ,0,0,0}, {17308,17299,17579 ,5476,5469,5468 ,0,0,0}, - {17578,17299,16317 ,5468,5469,5468 ,0,0,0}, {16307,17565,16309 ,726,5469,5470 ,0,0,0}, - {16312,16309,17580 ,5469,5470,726 ,0,0,0}, {17565,17580,16309 ,5469,726,5470 ,0,0,0}, - {17311,17310,17335 ,5478,5477,5485 ,0,0,0}, {16287,15959,17317 ,726,5468,5468 ,0,0,0}, - {16287,17317,16306 ,726,5468,5471 ,0,0,0}, {17581,17582,15979 ,5470,5470,5468 ,0,0,0}, - {15981,17325,17324 ,5483,5475,5475 ,0,0,0}, {17583,15965,15964 ,5468,726,5468 ,0,0,0}, - {17584,15939,17585 ,5469,5468,5471 ,0,0,0}, {16053,17421,16055 ,726,726,5470 ,0,0,0}, - {17586,17587,16015 ,5471,5471,5471 ,0,0,0}, {17588,16103,17589 ,726,726,5471 ,0,0,0}, - {17590,17591,17592 ,5471,5470,5471 ,0,0,0}, {16099,16100,17593 ,726,726,726 ,0,0,0}, - {16043,17460,17283 ,726,5471,726 ,0,0,0}, {17473,17419,17594 ,726,726,726 ,0,0,0}, - {16339,17595,16211 ,726,5468,5469 ,0,0,0}, {16236,17596,16237 ,726,726,5468 ,0,0,0}, - {16205,17289,16207 ,726,726,726 ,0,0,0}, {17384,16204,16201 ,726,5471,5471 ,0,0,0}, - {16165,17285,17284 ,726,726,5471 ,0,0,0}, {17286,17285,17386 ,726,726,5470 ,0,0,0}, - {17395,17408,17396 ,726,726,726 ,0,0,0}, {17410,17597,17387 ,5471,726,5471 ,0,0,0}, - {17388,17387,17597 ,5471,5471,726 ,0,0,0}, {17409,17408,17395 ,726,726,726 ,0,0,0}, - {17409,17597,17410 ,726,726,5471 ,0,0,0}, {17396,17391,17390 ,726,5470,726 ,0,0,0}, - {17292,17294,17389 ,5470,726,726 ,0,0,0}, {17393,17293,17394 ,726,726,5470 ,0,0,0}, - {17293,17292,17394 ,726,5470,5470 ,0,0,0}, {17400,17412,17411 ,726,726,726 ,0,0,0}, - {17392,17401,17598 ,726,726,5471 ,0,0,0}, {17598,17393,17392 ,5471,726,726 ,0,0,0}, - {17400,17399,17412 ,726,5470,726 ,0,0,0}, {17401,17400,17598 ,726,726,5471 ,0,0,0}, - {17397,17411,17398 ,5470,726,726 ,0,0,0}, {17379,17402,16285 ,726,726,726 ,0,0,0}, - {16271,16269,17297 ,726,726,5469 ,0,0,0}, {17380,16281,17599 ,5470,726,5470 ,0,0,0}, - {16280,17377,17599 ,726,5469,5470 ,0,0,0}, {17599,16281,16280 ,5470,726,726 ,0,0,0}, - {17376,16275,17345 ,5468,726,726 ,0,0,0}, {16275,17376,16277 ,726,5468,726 ,0,0,0}, - {16274,17345,16275 ,5471,726,726 ,0,0,0}, {17417,16268,16243 ,726,5471,5471 ,0,0,0}, - {16243,16242,17416 ,5471,5471,5470 ,0,0,0}, {17291,16268,17417 ,5469,5471,726 ,0,0,0}, - {17600,17601,16245 ,5470,5470,726 ,0,0,0}, {17573,16248,16251 ,726,5470,726 ,0,0,0}, - {17601,16242,16245 ,5470,5471,726 ,0,0,0}, {16252,16257,17602 ,726,726,726 ,0,0,0}, - {16252,17603,16251 ,726,5470,726 ,0,0,0}, {17604,16257,16255 ,726,726,5470 ,0,0,0}, - {16144,16146,15883 ,726,726,726 ,0,0,0}, {16260,16141,16254 ,726,726,5471 ,0,0,0}, - {16157,17605,16160 ,726,726,5470 ,0,0,0}, {16231,17606,16233 ,726,5471,5471 ,0,0,0}, - {17607,15989,15992 ,5471,5470,726 ,0,0,0}, {17608,15862,17609 ,726,726,5470 ,0,0,0}, - {16179,15893,17610 ,5471,5470,5470 ,0,0,0}, {17611,17612,16175 ,726,5471,726 ,0,0,0}, - {15869,16222,15868 ,726,5471,726 ,0,0,0}, {16340,16339,16214 ,5468,726,5471 ,0,0,0}, - {16264,16142,16260 ,5470,5471,726 ,0,0,0}, {16155,16154,17613 ,726,726,726 ,0,0,0}, - {15882,15856,16254 ,5470,5471,5471 ,0,0,0}, {17604,17602,16257 ,726,726,726 ,0,0,0}, - {17602,17603,16252 ,726,5470,726 ,0,0,0}, {17603,17574,16251 ,5470,5471,726 ,0,0,0}, - {16248,17600,16245 ,5470,5470,726 ,0,0,0}, {17600,16248,17573 ,5470,5470,726 ,0,0,0}, - {17298,16241,16239 ,5468,5469,726 ,0,0,0}, {17601,17416,16242 ,5470,5470,5471 ,0,0,0}, - {16269,16241,17297 ,726,5469,5469 ,0,0,0}, {17290,16269,16268 ,5468,726,5471 ,0,0,0}, - {17290,16241,16269 ,5468,5469,726 ,0,0,0}, {16239,16237,17596 ,726,5468,726 ,0,0,0}, - {16239,17596,17298 ,726,726,5468 ,0,0,0}, {16236,17568,17596 ,726,726,726 ,0,0,0}, - {16233,17606,17568 ,5471,5471,726 ,0,0,0}, {16230,17595,17528 ,5469,5468,5468 ,0,0,0}, - {16231,17528,17606 ,726,5468,5471 ,0,0,0}, {16211,16210,16339 ,5469,5468,726 ,0,0,0}, - {16230,16211,17595 ,5469,5469,5468 ,0,0,0}, {16214,16218,16340 ,5471,726,5468 ,0,0,0}, - {16210,16214,16339 ,5468,5471,726 ,0,0,0}, {16218,16217,16336 ,726,5471,5469 ,0,0,0}, - {15869,15872,16220 ,726,726,5469 ,0,0,0}, {15868,16222,16224 ,726,5471,5470 ,0,0,0}, - {17575,17609,15863 ,5471,5470,5471 ,0,0,0}, {15866,15868,16224 ,5471,726,5470 ,0,0,0}, - {17608,17604,15860 ,726,726,5470 ,0,0,0}, {16263,17614,16135 ,5470,5470,726 ,0,0,0}, - {16160,17615,16161 ,5470,5470,5470 ,0,0,0}, {17572,16133,16131 ,726,5489,726 ,0,0,0}, - {17458,16128,16125 ,726,726,726 ,0,0,0}, {17616,17472,17419 ,5489,5488,726 ,0,0,0}, - {17472,17616,17434 ,5488,5489,5489 ,0,0,0}, {17435,17413,17436 ,726,726,726 ,0,0,0}, - {17415,17617,17432 ,5489,726,726 ,0,0,0}, {17433,17432,17617 ,726,726,726 ,0,0,0}, - {17414,17413,17435 ,5488,726,726 ,0,0,0}, {17414,17617,17415 ,5488,726,5489 ,0,0,0}, - {17436,17280,17437 ,726,726,726 ,0,0,0}, {17281,17425,17282 ,726,726,726 ,0,0,0}, - {17441,17423,17439 ,5489,726,726 ,0,0,0}, {17423,17281,17439 ,726,726,726 ,0,0,0}, - {17427,17444,17428 ,726,726,726 ,0,0,0}, {17442,17441,17440 ,726,5489,726 ,0,0,0}, - {17444,17443,17428 ,726,726,726 ,0,0,0}, {17443,17442,17445 ,726,726,5488 ,0,0,0}, - {17427,17426,17289 ,726,5489,726 ,0,0,0}, {17448,17289,17446 ,726,726,5489 ,0,0,0}, - {16195,16193,17284 ,5471,726,5471 ,0,0,0}, {17289,17459,17287 ,726,726,726 ,0,0,0}, - {16204,17384,17459 ,5471,726,726 ,0,0,0}, {17459,16205,16204 ,726,726,5471 ,0,0,0}, - {17383,16199,17422 ,5471,726,726 ,0,0,0}, {16199,17383,16201 ,726,5471,5471 ,0,0,0}, - {16198,17422,16199 ,726,726,726 ,0,0,0}, {17618,16167,17455 ,5471,726,726 ,0,0,0}, - {16167,16166,17456 ,726,726,726 ,0,0,0}, {16192,16167,17618 ,726,726,5471 ,0,0,0}, - {17619,17620,16169 ,726,726,726 ,0,0,0}, {17612,16172,16175 ,5471,726,726 ,0,0,0}, - {17620,16166,16169 ,726,726,726 ,0,0,0}, {16176,16181,17621 ,726,726,726 ,0,0,0}, - {16176,17622,16175 ,726,5471,726 ,0,0,0}, {17610,16181,16179 ,5470,726,5471 ,0,0,0}, - {15898,16065,16068 ,5471,5471,726 ,0,0,0}, {16184,16065,16178 ,726,5471,726 ,0,0,0}, - {17623,15893,15892 ,5471,5470,726 ,0,0,0}, {16157,16155,17624 ,726,726,726 ,0,0,0}, - {15898,15895,16178 ,5471,726,726 ,0,0,0}, {16079,17625,16081 ,726,5470,726 ,0,0,0}, - {15986,16112,16111 ,5470,726,726 ,0,0,0}, {16099,17626,16096 ,726,726,5471 ,0,0,0}, - {16146,15886,15883 ,726,726,726 ,0,0,0}, {16264,16263,16138 ,5470,5470,726 ,0,0,0}, - {16188,16066,16184 ,5471,726,726 ,0,0,0}, {17588,16105,16103 ,726,726,726 ,0,0,0}, - {16178,15895,16179 ,726,726,5471 ,0,0,0}, {17610,17621,16181 ,5470,726,726 ,0,0,0}, - {17621,17622,16176 ,726,5471,726 ,0,0,0}, {17622,17611,16175 ,5471,726,726 ,0,0,0}, - {16172,17619,16169 ,726,726,726 ,0,0,0}, {17619,16172,17612 ,726,726,5471 ,0,0,0}, - {17627,16165,16163 ,5470,726,726 ,0,0,0}, {17620,17456,16166 ,726,726,726 ,0,0,0}, - {16193,16165,17284 ,726,726,5471 ,0,0,0}, {16165,16193,17429 ,726,726,5471 ,0,0,0}, - {17618,17429,16192 ,5471,5471,726 ,0,0,0}, {16165,17627,17285 ,726,5470,726 ,0,0,0}, - {16163,16161,17615 ,726,5470,5470 ,0,0,0}, {16163,17615,17627 ,726,5470,5470 ,0,0,0}, - {16160,17605,17615 ,5470,726,5470 ,0,0,0}, {16157,17624,17605 ,726,726,726 ,0,0,0}, - {16154,17614,17613 ,726,5470,726 ,0,0,0}, {16155,17613,17624 ,726,726,726 ,0,0,0}, - {16135,16134,16263 ,726,5470,5470 ,0,0,0}, {16154,16135,17614 ,726,726,5470 ,0,0,0}, - {16138,16142,16264 ,726,5471,5470 ,0,0,0}, {16134,16138,16263 ,5470,726,5470 ,0,0,0}, - {16142,16141,16260 ,5471,726,726 ,0,0,0}, {15883,15882,16144 ,726,5470,726 ,0,0,0}, - {15886,16148,15887 ,726,726,5471 ,0,0,0}, {15889,15887,17569 ,726,5471,726 ,0,0,0}, - {16146,16148,15886 ,726,726,726 ,0,0,0}, {17610,15893,17623 ,5470,5470,5471 ,0,0,0}, - {16129,17571,16131 ,5488,726,726 ,0,0,0}, {16331,15876,17533 ,5468,5470,726 ,0,0,0}, - {16055,17420,16057 ,5470,726,5470 ,0,0,0}, {17476,16052,16049 ,726,726,726 ,0,0,0}, - {17460,17628,17461 ,5471,726,726 ,0,0,0}, {17451,17461,17452 ,5471,726,726 ,0,0,0}, - {17497,17629,17464 ,726,5471,5471 ,0,0,0}, {17450,17464,17629 ,726,5471,5471 ,0,0,0}, - {17469,17527,17497 ,726,726,726 ,0,0,0}, {17527,17629,17497 ,726,5471,726 ,0,0,0}, - {17480,17490,17469 ,726,726,726 ,0,0,0}, {17630,17470,17469 ,726,726,726 ,0,0,0}, - {17467,17469,17482 ,726,726,726 ,0,0,0}, {17483,17482,17469 ,5488,726,726 ,0,0,0}, - {17525,17486,17526 ,5489,726,726 ,0,0,0}, {17485,17482,17481 ,726,726,726 ,0,0,0}, - {17486,17487,17526 ,726,726,726 ,0,0,0}, {17487,17485,17484 ,726,726,726 ,0,0,0}, - {17466,17525,17488 ,726,5489,726 ,0,0,0}, {17572,17465,16133 ,726,726,5489 ,0,0,0}, - {16117,16116,17419 ,726,5471,726 ,0,0,0}, {16128,17631,16129 ,726,726,5488 ,0,0,0}, - {17571,16129,17631 ,726,5488,726 ,0,0,0}, {17457,16123,17473 ,726,726,726 ,0,0,0}, - {17458,17631,16128 ,726,726,726 ,0,0,0}, {16123,17457,16125 ,726,726,726 ,0,0,0}, - {16122,17473,16123 ,726,726,726 ,0,0,0}, {17529,17419,17632 ,5470,726,5471 ,0,0,0}, - {17632,16091,17532 ,5471,726,5471 ,0,0,0}, {17632,17419,16091 ,5471,726,726 ,0,0,0}, - {16093,17633,16090 ,5471,726,726 ,0,0,0}, {16099,17634,17626 ,726,726,726 ,0,0,0}, - {16093,17635,17633 ,5471,726,726 ,0,0,0}, {17636,16084,16081 ,5471,726,726 ,0,0,0}, - {16084,17637,16085 ,726,726,726 ,0,0,0}, {17638,16079,16078 ,726,726,5471 ,0,0,0}, - {16187,17639,16059 ,5471,5471,5471 ,0,0,0}, {16062,16188,16187 ,726,5471,5471 ,0,0,0}, - {15898,16178,16065 ,5471,726,5471 ,0,0,0}, {17640,17641,17642 ,5470,726,726 ,0,0,0}, - {17643,15905,16075 ,726,5470,5471 ,0,0,0}, {16111,17644,15983 ,726,726,726 ,0,0,0}, - {17645,16009,16008 ,5471,5470,5471 ,0,0,0}, {16008,16005,17646 ,5471,726,726 ,0,0,0}, - {16108,15989,16102 ,726,5470,726 ,0,0,0}, {15901,16068,16070 ,5471,726,726 ,0,0,0}, - {16112,15990,16108 ,726,5471,726 ,0,0,0}, {16002,17647,16003 ,726,726,5471 ,0,0,0}, - {16102,17648,16103 ,726,726,726 ,0,0,0}, {17588,17385,16105 ,726,5470,726 ,0,0,0}, - {17385,17593,16100 ,5470,726,726 ,0,0,0}, {17593,17634,16099 ,726,726,726 ,0,0,0}, - {16096,17635,16093 ,5471,726,5471 ,0,0,0}, {17635,16096,17626 ,726,5471,726 ,0,0,0}, - {17637,17649,16087 ,726,726,726 ,0,0,0}, {16087,17649,17419 ,726,726,726 ,0,0,0}, - {17633,17532,16090 ,726,5471,726 ,0,0,0}, {16119,16117,17419 ,726,726,726 ,0,0,0}, - {17419,16116,16091 ,726,5471,726 ,0,0,0}, {16089,17419,17530 ,5471,726,5471 ,0,0,0}, - {17649,17616,17419 ,726,5489,726 ,0,0,0}, {16087,16085,17637 ,726,726,726 ,0,0,0}, - {16084,17636,17637 ,726,5471,726 ,0,0,0}, {16081,17625,17636 ,726,5470,5471 ,0,0,0}, - {16078,17639,17638 ,5471,5471,726 ,0,0,0}, {16079,17638,17625 ,726,726,5470 ,0,0,0}, - {16059,16058,16187 ,5471,726,5471 ,0,0,0}, {16078,16059,17639 ,5471,5471,5471 ,0,0,0}, - {16062,16066,16188 ,726,726,5471 ,0,0,0}, {16058,16062,16187 ,726,726,5471 ,0,0,0}, - {16066,16065,16184 ,726,5471,726 ,0,0,0}, {15901,15898,16068 ,5471,5471,726 ,0,0,0}, - {15901,16070,15904 ,5471,726,726 ,0,0,0}, {16072,15905,15904 ,726,5470,726 ,0,0,0}, - {16072,15904,16070 ,726,726,726 ,0,0,0}, {16072,16075,15905 ,726,5471,5470 ,0,0,0}, - {17650,15948,15953 ,5468,5469,5470 ,0,0,0}, {17506,17518,17513 ,5468,5469,726 ,0,0,0}, - {16293,15956,16294 ,5468,5471,5469 ,0,0,0}, {15976,15973,17506 ,5469,5471,5468 ,0,0,0}, - {15937,17519,17518 ,5469,726,5469 ,0,0,0}, {17517,17519,17511 ,726,726,726 ,0,0,0}, - {17551,17548,17550 ,726,5471,726 ,0,0,0}, {17547,17651,17509 ,5471,5468,5471 ,0,0,0}, - {17510,17509,17651 ,5468,5471,5468 ,0,0,0}, {17549,17548,17551 ,5468,5471,726 ,0,0,0}, - {17549,17651,17547 ,5468,5468,5471 ,0,0,0}, {17550,17515,17514 ,726,5470,726 ,0,0,0}, - {17522,17521,17516 ,726,5469,5469 ,0,0,0}, {17541,17520,17542 ,5470,5471,726 ,0,0,0}, - {17520,17522,17542 ,5471,726,726 ,0,0,0}, {17538,17534,17536 ,726,726,5471 ,0,0,0}, - {17540,17539,17652 ,726,5470,726 ,0,0,0}, {17652,17541,17540 ,726,5470,726 ,0,0,0}, - {17538,17537,17534 ,726,5471,726 ,0,0,0}, {17539,17538,17652 ,5470,726,726 ,0,0,0}, - {17505,17536,17535 ,726,5471,5470 ,0,0,0}, {17420,17504,16057 ,726,726,5470 ,0,0,0}, - {16043,16041,17460 ,726,5470,5471 ,0,0,0}, {16052,17653,16053 ,726,726,726 ,0,0,0}, - {17421,16053,17653 ,726,726,726 ,0,0,0}, {17475,16047,17531 ,5471,5470,726 ,0,0,0}, - {17476,17653,16052 ,726,726,726 ,0,0,0}, {16047,17475,16049 ,5470,5471,726 ,0,0,0}, - {16046,17531,16047 ,5470,726,5470 ,0,0,0}, {17587,16040,16015 ,5471,5471,5471 ,0,0,0}, - {16015,16014,17586 ,5471,726,5471 ,0,0,0}, {17501,16040,17587 ,5471,5471,5471 ,0,0,0}, - {17654,17655,16017 ,5471,726,726 ,0,0,0}, {17462,16020,16023 ,726,5470,5470 ,0,0,0}, - {17655,16014,16017 ,726,726,726 ,0,0,0}, {16024,16029,17656 ,5470,726,726 ,0,0,0}, - {16024,17657,16023 ,5470,726,5470 ,0,0,0}, {17658,16029,16027 ,726,726,726 ,0,0,0}, - {15916,15918,17659 ,726,5471,5471 ,0,0,0}, {16003,17660,16005 ,5471,726,726 ,0,0,0}, - {17661,17662,17663 ,5471,726,726 ,0,0,0}, {15951,17661,17664 ,5471,5471,5471 ,0,0,0}, - {17533,15876,17665 ,726,5470,5469 ,0,0,0}, {16293,16296,17666 ,5468,5468,5470 ,0,0,0}, - {15932,17667,15933 ,726,726,5471 ,0,0,0}, {15951,17664,15953 ,5471,5471,5470 ,0,0,0}, - {16032,15913,16026 ,726,5470,5470 ,0,0,0}, {15994,17668,17669 ,5470,5471,726 ,0,0,0}, - {16036,15914,16032 ,726,5471,726 ,0,0,0}, {17670,17659,15918 ,5471,5471,5471 ,0,0,0}, - {17671,17672,16026 ,726,5471,5470 ,0,0,0}, {17658,17656,16029 ,726,726,726 ,0,0,0}, - {17656,17657,16024 ,726,726,5470 ,0,0,0}, {17657,17463,16023 ,726,726,5470 ,0,0,0}, - {16020,17654,16017 ,5470,5471,726 ,0,0,0}, {17654,16020,17462 ,5471,5470,726 ,0,0,0}, - {16011,17645,17628 ,5471,5471,726 ,0,0,0}, {17628,16013,16011 ,726,726,5471 ,0,0,0}, - {17655,17586,16014 ,726,5471,726 ,0,0,0}, {16041,16013,17460 ,5470,726,5471 ,0,0,0}, - {17500,16041,16040 ,726,5470,5471 ,0,0,0}, {17500,16013,16041 ,726,726,5470 ,0,0,0}, - {17460,16013,17628 ,5471,726,726 ,0,0,0}, {16011,16009,17645 ,5471,5470,5471 ,0,0,0}, - {16008,17646,17645 ,5471,726,5471 ,0,0,0}, {16005,17660,17646 ,726,726,726 ,0,0,0}, - {16002,17644,17647 ,726,726,726 ,0,0,0}, {16003,17647,17660 ,5471,726,726 ,0,0,0}, - {15983,15982,16111 ,726,5471,726 ,0,0,0}, {16002,15983,17644 ,726,726,726 ,0,0,0}, - {15986,15990,16112 ,5470,5471,726 ,0,0,0}, {15982,15986,16111 ,5471,5470,726 ,0,0,0}, - {15990,15989,16108 ,5471,5470,726 ,0,0,0}, {17669,17607,15992 ,726,5471,726 ,0,0,0}, - {16102,15989,17607 ,726,5470,5471 ,0,0,0}, {15999,17673,17674 ,726,726,726 ,0,0,0}, - {17668,15996,17674 ,5471,726,726 ,0,0,0}, {17675,17676,17677 ,5470,5470,5471 ,0,0,0}, - {15979,17582,15981 ,5468,5470,5483 ,0,0,0}, {16287,16286,15959 ,726,5468,5468 ,0,0,0}, - {15979,15977,17581 ,5468,5469,5470 ,0,0,0}, {16315,17279,17578 ,726,5468,5468 ,0,0,0}, - {16312,17580,17279 ,5469,726,5468 ,0,0,0}, {17578,17579,17299 ,5468,5468,5469 ,0,0,0}, - {17308,17579,17309 ,5476,5468,5471 ,0,0,0}, {17336,17339,17334 ,5468,5468,5475 ,0,0,0}, - {17338,17678,17564 ,5483,726,5468 ,0,0,0}, {17307,17564,17678 ,5475,5468,726 ,0,0,0}, - {17337,17339,17336 ,5486,5468,5468 ,0,0,0}, {17337,17678,17338 ,5486,726,5483 ,0,0,0}, - {17334,17311,17335 ,5475,5478,5485 ,0,0,0}, {17312,17323,17310 ,5469,5468,5477 ,0,0,0}, - {17316,17322,17314 ,726,726,5471 ,0,0,0}, {17322,17312,17314 ,726,5469,5471 ,0,0,0}, - {17566,17320,17567 ,5472,5480,5482 ,0,0,0}, {17321,17316,17315 ,5481,726,5469 ,0,0,0}, - {17320,17319,17567 ,5480,726,5482 ,0,0,0}, {17319,17321,17331 ,726,5481,5475 ,0,0,0}, - {17324,17566,17327 ,5475,5472,5468 ,0,0,0}, {17582,17325,15981 ,5470,5475,5483 ,0,0,0}, - {17506,15965,17583 ,5468,726,5468 ,0,0,0}, {15976,17508,15977 ,5469,5469,5469 ,0,0,0}, - {17581,15977,17508 ,5470,5469,5469 ,0,0,0}, {17679,17507,17506 ,5468,726,5468 ,0,0,0}, - {17508,15976,17506 ,5469,5469,5468 ,0,0,0}, {17506,15973,15971 ,5468,5471,5470 ,0,0,0}, - {17506,15970,15967 ,5468,5469,5471 ,0,0,0}, {17680,15939,17584 ,5469,5468,5469 ,0,0,0}, - {15939,15938,17585 ,5468,5471,5471 ,0,0,0}, {15964,15939,17680 ,5468,5468,5469 ,0,0,0}, - {17681,17682,15941 ,5470,5471,5468 ,0,0,0}, {17502,15944,15947 ,5470,726,5468 ,0,0,0}, - {17682,15938,15941 ,5471,5471,5468 ,0,0,0}, {16296,16298,17683 ,5468,5468,5468 ,0,0,0}, - {15910,16036,16035 ,5471,726,726 ,0,0,0}, {15948,17684,15947 ,5469,5469,5468 ,0,0,0}, - {17685,15927,15926 ,726,5471,726 ,0,0,0}, {17686,15932,15929 ,726,726,5470 ,0,0,0}, - {17687,15907,16035 ,726,5470,726 ,0,0,0}, {17688,15929,15927 ,726,5470,5471 ,0,0,0}, - {16293,15950,15956 ,5468,5469,5471 ,0,0,0}, {16296,17683,17666 ,5468,5468,5470 ,0,0,0}, - {15956,15960,16294 ,5471,726,5469 ,0,0,0}, {15959,16290,15960 ,5468,5468,726 ,0,0,0}, - {16294,15960,16290 ,5469,726,5468 ,0,0,0}, {15875,17577,17665 ,5469,5469,5469 ,0,0,0}, - {16300,15880,17689 ,5471,5470,726 ,0,0,0}, {15880,17576,15878 ,5470,5469,726 ,0,0,0}, - {15950,17690,15951 ,5469,5471,5471 ,0,0,0}, {17664,17650,15953 ,5471,5468,5470 ,0,0,0}, - {17650,17684,15948 ,5468,5469,5469 ,0,0,0}, {17684,17503,15947 ,5469,5468,5468 ,0,0,0}, - {15944,17681,15941 ,726,5470,5468 ,0,0,0}, {17681,15944,17502 ,5470,726,5470 ,0,0,0}, - {15935,17667,17691 ,726,726,5471 ,0,0,0}, {17691,15937,15935 ,5471,5469,726 ,0,0,0}, - {17682,17585,15938 ,5471,5471,5471 ,0,0,0}, {15937,17518,17506 ,5469,5469,5468 ,0,0,0}, - {17506,17583,15937 ,5468,5468,5469 ,0,0,0}, {17680,17583,15964 ,5469,5468,5468 ,0,0,0}, - {15937,17691,17519 ,5469,5471,726 ,0,0,0}, {15935,15933,17667 ,726,5471,726 ,0,0,0}, - {15932,17686,17667 ,726,726,726 ,0,0,0}, {15929,17688,17686 ,5470,726,726 ,0,0,0}, - {15926,17687,17685 ,726,726,726 ,0,0,0}, {15927,17685,17688 ,5471,726,726 ,0,0,0}, - {15907,15906,16035 ,5470,726,726 ,0,0,0}, {15926,15907,17687 ,726,5470,726 ,0,0,0}, - {15910,15914,16036 ,5471,5471,726 ,0,0,0}, {15906,15910,16035 ,726,5471,726 ,0,0,0}, - {15914,15913,16032 ,5471,5470,726 ,0,0,0}, {17659,17671,15916 ,5471,726,726 ,0,0,0}, - {17670,15920,17692 ,5471,726,726 ,0,0,0}, {17590,17692,17591 ,5471,726,5470 ,0,0,0}, - {15918,15920,17670 ,5471,726,5471 ,0,0,0}, {17664,17661,17663 ,5471,5471,726 ,0,0,0}, - {17658,16027,17693 ,726,726,5471 ,0,0,0}, {17604,16255,15860 ,726,5470,5470 ,0,0,0}, - {17658,17693,17675 ,726,5471,5470 ,0,0,0}, {15895,15893,16179 ,726,5470,5471 ,0,0,0}, - {15889,17570,15892 ,726,5470,726 ,0,0,0}, {17623,15892,17570 ,5471,726,5470 ,0,0,0}, - {16255,16254,15856 ,5470,5471,5471 ,0,0,0}, {16151,15887,16148 ,726,5471,726 ,0,0,0}, - {16151,17569,15887 ,726,726,5471 ,0,0,0}, {15882,16254,16141 ,5470,5471,726 ,0,0,0}, - {16141,16144,15882 ,726,726,5470 ,0,0,0}, {16255,15856,15860 ,5470,5471,5470 ,0,0,0}, - {17608,15860,15862 ,726,5470,726 ,0,0,0}, {15874,16330,15872 ,5471,5469,726 ,0,0,0}, - {17609,15862,15863 ,5470,726,5471 ,0,0,0}, {16227,15866,16224 ,726,5471,5470 ,0,0,0}, - {16227,17575,15866 ,726,5471,5471 ,0,0,0}, {16330,16217,15872 ,5469,5471,726 ,0,0,0}, - {16217,16220,15872 ,5471,5469,726 ,0,0,0}, {15874,15876,16331 ,5471,5470,5468 ,0,0,0}, - {17665,15876,15875 ,5469,5470,5469 ,0,0,0}, {17690,15950,17666 ,5471,5469,5470 ,0,0,0}, - {17577,15875,15878 ,5469,5469,726 ,0,0,0}, {16303,15880,16300 ,5469,5470,5471 ,0,0,0}, - {16303,17576,15880 ,5469,5469,5470 ,0,0,0}, {17666,15950,16293 ,5470,5469,5468 ,0,0,0}, - {17689,17683,16298 ,726,5468,5468 ,0,0,0}, {17689,16298,16300 ,726,5468,5471 ,0,0,0}, - {17690,17661,15951 ,5471,5471,5471 ,0,0,0}, {17590,17592,17662 ,5471,5471,726 ,0,0,0}, - {17663,17662,17592 ,726,726,5471 ,0,0,0}, {16027,16026,17672 ,726,5470,5471 ,0,0,0}, - {15923,17692,15920 ,726,726,726 ,0,0,0}, {15923,17591,17692 ,726,5470,726 ,0,0,0}, - {17671,16026,15913 ,726,5470,5470 ,0,0,0}, {15913,15916,17671 ,5470,726,726 ,0,0,0}, - {16027,17672,17693 ,726,5471,5471 ,0,0,0}, {17677,17676,17694 ,5471,5470,726 ,0,0,0}, - {17675,17693,17676 ,5470,5471,5470 ,0,0,0}, {17694,17674,17673 ,726,726,726 ,0,0,0}, - {17673,17677,17694 ,726,5471,726 ,0,0,0}, {17674,15996,15999 ,726,726,726 ,0,0,0}, - {17668,15994,15996 ,5471,5470,726 ,0,0,0}, {17669,15992,15994 ,726,726,5470 ,0,0,0}, - {16102,17607,17648 ,726,5471,726 ,0,0,0}, {17589,17695,17588 ,5471,5471,726 ,0,0,0}, - {16103,17648,17589 ,726,726,5471 ,0,0,0}, {17641,17695,17642 ,726,5471,726 ,0,0,0}, - {17589,17642,17695 ,5471,726,5471 ,0,0,0}, {17641,17640,17643 ,726,5470,726 ,0,0,0}, - {15905,17643,17640 ,5470,726,5470 ,0,0,0}, {17679,17506,17512 ,5468,5468,5468 ,0,0,0}, - {15971,15970,17506 ,5470,5469,5468 ,0,0,0}, {17469,17489,17483 ,726,726,5488 ,0,0,0}, - {17478,17630,17469 ,5488,726,726 ,0,0,0}, {17419,16089,16087 ,726,5471,726 ,0,0,0}, - {17594,17419,17474 ,726,726,726 ,0,0,0}, {17560,17559,17557 ,5469,5470,5468 ,0,0,0}, - {17560,17302,17558 ,5469,5468,5469 ,0,0,0}, {17446,17289,17288 ,5489,726,726 ,0,0,0}, - {16209,16207,17289 ,726,726,726 ,0,0,0}, {17696,17697,17698 ,5490,5491,5492 ,0,0,0}, - {17699,17700,17701 ,5493,5494,5495 ,0,0,0}, {17702,17700,17703 ,5496,5494,5497 ,0,0,0}, - {17704,17705,17706 ,5498,5499,5500 ,0,0,0}, {17707,17708,17709 ,5501,5502,5503 ,0,0,0}, - {17710,17711,17712 ,5504,5505,5506 ,0,0,0}, {17713,17714,17715 ,5507,5508,5509 ,0,0,0}, - {17326,17330,17710 ,5510,5511,5504 ,0,0,0}, {17716,17717,17718 ,5512,5513,5514 ,0,0,0}, - {17707,17712,17711 ,5501,5506,5505 ,0,0,0}, {17719,17720,17717 ,5515,5516,5513 ,0,0,0}, - {17721,17719,17717 ,5517,5515,5513 ,0,0,0}, {17721,17722,17719 ,5517,5518,5515 ,0,0,0}, - {17722,17721,17723 ,5518,5517,5519 ,0,0,0}, {17724,17720,17725 ,5520,5516,5521 ,0,0,0}, - {17726,17727,17728 ,5522,5523,5524 ,0,0,0}, {17717,17720,17724 ,5513,5516,5520 ,0,0,0}, - {17728,17727,17723 ,5524,5523,5519 ,0,0,0}, {17729,17726,17730 ,5525,5522,5526 ,0,0,0}, - {17731,17732,17733 ,5527,5528,5529 ,0,0,0}, {17731,17724,17725 ,5527,5520,5521 ,0,0,0}, - {17734,17735,17736 ,5530,5531,5532 ,0,0,0}, {17731,17725,17732 ,5527,5521,5528 ,0,0,0}, - {17732,17734,17733 ,5528,5530,5529 ,0,0,0}, {17737,17738,17736 ,5533,5534,5532 ,0,0,0}, - {17714,17739,17715 ,5508,5535,5509 ,0,0,0}, {17736,17735,17737 ,5532,5531,5533 ,0,0,0}, - {17740,17699,17741 ,5536,5493,5537 ,0,0,0}, {17735,17742,17737 ,5531,5538,5533 ,0,0,0}, - {17714,17718,17739 ,5508,5514,5535 ,0,0,0}, {17743,17718,17724 ,5539,5514,5520 ,0,0,0}, - {17744,17745,17746 ,5540,5541,5542 ,0,0,0}, {17747,17744,17748 ,5543,5540,5544 ,0,0,0}, - {17305,17322,17697 ,5545,5546,5491 ,0,0,0}, {17749,17750,17751 ,5547,5548,5549 ,0,0,0}, - {17305,17696,17306 ,5545,5490,726 ,0,0,0}, {17752,17306,17696 ,5550,726,5490 ,0,0,0}, - {17753,17738,17754 ,5551,5534,5552 ,0,0,0}, {17734,17736,17733 ,5530,5532,5529 ,0,0,0}, - {17736,17738,17753 ,5532,5534,5551 ,0,0,0}, {17754,17755,17753 ,5552,5553,5551 ,0,0,0}, - {17756,17733,17753 ,5554,5529,5551 ,0,0,0}, {17718,17743,17739 ,5514,5539,5535 ,0,0,0}, - {17756,17743,17731 ,5554,5539,5527 ,0,0,0}, {17721,17757,17723 ,5517,5555,5519 ,0,0,0}, - {17731,17743,17724 ,5527,5539,5520 ,0,0,0}, {17758,17759,17728 ,5556,5557,5524 ,0,0,0}, - {17717,17724,17718 ,5513,5520,5514 ,0,0,0}, {17757,17721,17716 ,5555,5517,5512 ,0,0,0}, - {17726,17728,17730 ,5522,5524,5526 ,0,0,0}, {17722,17723,17727 ,5518,5519,5523 ,0,0,0}, - {17723,17757,17758 ,5519,5555,5556 ,0,0,0}, {17760,17730,17728 ,5558,5526,5524 ,0,0,0}, - {17736,17753,17733 ,5532,5551,5529 ,0,0,0}, {17761,17755,17754 ,5559,5553,5552 ,0,0,0}, - {17761,17748,17755 ,5559,5544,5553 ,0,0,0}, {17733,17756,17731 ,5529,5554,5527 ,0,0,0}, - {17755,17762,17756 ,5553,5560,5554 ,0,0,0}, {17714,17703,17716 ,5508,5497,5512 ,0,0,0}, - {17762,17739,17743 ,5560,5535,5539 ,0,0,0}, {17699,17759,17758 ,5493,5557,5556 ,0,0,0}, - {17740,17759,17699 ,5536,5557,5493 ,0,0,0}, {17717,17716,17721 ,5513,5512,5517 ,0,0,0}, - {17718,17714,17716 ,5514,5508,5512 ,0,0,0}, {17723,17758,17728 ,5519,5556,5524 ,0,0,0}, - {17703,17700,17757 ,5497,5494,5555 ,0,0,0}, {17728,17759,17760 ,5524,5557,5558 ,0,0,0}, - {17758,17700,17699 ,5556,5494,5493 ,0,0,0}, {17763,17760,17759 ,5561,5558,5557 ,0,0,0}, - {17753,17755,17756 ,5551,5553,5554 ,0,0,0}, {17747,17748,17761 ,5543,5544,5559 ,0,0,0}, - {17764,17746,17765 ,5562,5542,5563 ,0,0,0}, {17756,17762,17743 ,5554,5560,5539 ,0,0,0}, - {17766,17762,17748 ,5564,5560,5544 ,0,0,0}, {17703,17714,17713 ,5497,5508,5507 ,0,0,0}, - {17766,17715,17739 ,5564,5509,5535 ,0,0,0}, {17767,17741,17701 ,5565,5537,5495 ,0,0,0}, - {17757,17700,17758 ,5555,5494,5556 ,0,0,0}, {17716,17703,17757 ,5512,5497,5555 ,0,0,0}, - {17703,17713,17702 ,5497,5507,5496 ,0,0,0}, {17740,17741,17768 ,5536,5537,5566 ,0,0,0}, - {17702,17701,17700 ,5496,5495,5494 ,0,0,0}, {17759,17740,17763 ,5557,5536,5561 ,0,0,0}, - {17699,17701,17741 ,5493,5495,5537 ,0,0,0}, {17769,17763,17740 ,5567,5561,5536 ,0,0,0}, - {17755,17748,17762 ,5553,5544,5560 ,0,0,0}, {17745,17744,17747 ,5541,5540,5543 ,0,0,0}, - {17715,17770,17713 ,5509,5568,5507 ,0,0,0}, {17762,17766,17739 ,5560,5564,5535 ,0,0,0}, - {17771,17766,17744 ,5569,5564,5540 ,0,0,0}, {17713,17772,17702 ,5507,5570,5496 ,0,0,0}, - {17771,17770,17715 ,5569,5568,5509 ,0,0,0}, {17702,17773,17701 ,5496,5571,5495 ,0,0,0}, - {17772,17713,17770 ,5570,5507,5568 ,0,0,0}, {17741,17704,17768 ,5537,5498,5566 ,0,0,0}, - {17773,17702,17772 ,5571,5496,5570 ,0,0,0}, {17774,17768,17706 ,5572,5566,5500 ,0,0,0}, - {17767,17701,17773 ,5565,5495,5571 ,0,0,0}, {17740,17768,17769 ,5536,5566,5567 ,0,0,0}, - {17741,17767,17704 ,5537,5565,5498 ,0,0,0}, {17774,17769,17768 ,5572,5567,5566 ,0,0,0}, - {17748,17744,17766 ,5544,5540,5564 ,0,0,0}, {17765,17746,17745 ,5563,5542,5541 ,0,0,0}, - {17770,17750,17772 ,5568,5548,5570 ,0,0,0}, {17766,17771,17715 ,5564,5569,5509 ,0,0,0}, - {17746,17775,17771 ,5542,5573,5569 ,0,0,0}, {17772,17749,17773 ,5570,5547,5571 ,0,0,0}, - {17775,17750,17770 ,5573,5548,5568 ,0,0,0}, {17773,17776,17767 ,5571,5574,5565 ,0,0,0}, - {17750,17749,17772 ,5548,5547,5570 ,0,0,0}, {17777,17704,17767 ,5575,5498,5565 ,0,0,0}, - {17776,17773,17749 ,5574,5571,5547 ,0,0,0}, {17778,17706,17709 ,5576,5500,5503 ,0,0,0}, - {17767,17776,17777 ,5565,5574,5575 ,0,0,0}, {17777,17705,17704 ,5575,5499,5498 ,0,0,0}, - {17774,17706,17778 ,5572,5500,5576 ,0,0,0}, {17768,17704,17706 ,5566,5498,5500 ,0,0,0}, - {17744,17746,17771 ,5540,5542,5569 ,0,0,0}, {17779,17764,17765 ,5577,5562,5563 ,0,0,0}, - {17780,17776,17749 ,5578,5574,5547 ,0,0,0}, {17771,17775,17770 ,5569,5573,5568 ,0,0,0}, - {17764,17698,17775 ,5562,5492,5573 ,0,0,0}, {17781,17777,17776 ,5579,5575,5574 ,0,0,0}, - {17698,17751,17750 ,5492,5549,5548 ,0,0,0}, {17782,17705,17777 ,5580,5499,5575 ,0,0,0}, - {17751,17780,17749 ,5549,5578,5547 ,0,0,0}, {17712,17707,17783 ,5506,5501,5581 ,0,0,0}, - {17780,17781,17776 ,5578,5579,5574 ,0,0,0}, {17709,17705,17784 ,5503,5499,5582 ,0,0,0}, - {17782,17777,17781 ,5580,5575,5579 ,0,0,0}, {17784,17705,17782 ,5582,5499,5580 ,0,0,0}, - {17778,17709,17708 ,5576,5503,5502 ,0,0,0}, {17706,17705,17709 ,5500,5499,5503 ,0,0,0}, - {17746,17764,17775 ,5542,5562,5573 ,0,0,0}, {17696,17779,17752 ,5490,5577,5550 ,0,0,0}, - {17697,17785,17751 ,5491,5583,5549 ,0,0,0}, {17775,17698,17750 ,5573,5492,5548 ,0,0,0}, - {17697,17751,17698 ,5491,5549,5492 ,0,0,0}, {17785,17786,17780 ,5583,5584,5578 ,0,0,0}, - {17785,17780,17751 ,5583,5578,5549 ,0,0,0}, {17786,17787,17781 ,5584,5585,5579 ,0,0,0}, - {17786,17781,17780 ,5584,5579,5578 ,0,0,0}, {17787,17788,17782 ,5585,5586,5580 ,0,0,0}, - {17787,17782,17781 ,5585,5580,5579 ,0,0,0}, {17788,17783,17784 ,5586,5581,5582 ,0,0,0}, - {17784,17782,17788 ,5582,5580,5586 ,0,0,0}, {17783,17707,17784 ,5581,5501,5582 ,0,0,0}, - {17708,17707,17711 ,5502,5501,5505 ,0,0,0}, {17709,17784,17707 ,5503,5582,5501 ,0,0,0}, - {17779,17696,17764 ,5577,5490,5562 ,0,0,0}, {17698,17764,17696 ,5492,5562,5490 ,0,0,0}, - {17785,17322,17316 ,5583,5546,5587 ,0,0,0}, {17305,17697,17696 ,5545,5491,5490 ,0,0,0}, - {17786,17316,17321 ,5584,5587,5588 ,0,0,0}, {17322,17785,17697 ,5546,5583,5491 ,0,0,0}, - {17787,17321,17320 ,5585,5588,5589 ,0,0,0}, {17316,17786,17785 ,5587,5584,5583 ,0,0,0}, - {17788,17320,17566 ,5586,5589,5590 ,0,0,0}, {17321,17787,17786 ,5588,5585,5584 ,0,0,0}, - {17783,17566,17324 ,5581,5590,5591 ,0,0,0}, {17320,17788,17787 ,5589,5586,5585 ,0,0,0}, - {17712,17324,17326 ,5506,5591,5510 ,0,0,0}, {17566,17783,17788 ,5590,5581,5586 ,0,0,0}, - {17326,17710,17712 ,5510,5504,5506 ,0,0,0}, {17324,17712,17783 ,5591,5506,5581 ,0,0,0}, - {17789,17790,17791 ,5592,5593,5594 ,0,0,0}, {17792,17793,17794 ,5595,5596,5597 ,0,0,0}, - {17790,17795,17791 ,5593,5598,5594 ,0,0,0}, {17796,17794,17793 ,5599,5597,5596 ,0,0,0}, - {17797,17798,17799 ,5600,5601,5602 ,0,0,0}, {17800,17801,17798 ,5603,5604,5601 ,0,0,0}, - {17802,17803,17804 ,5605,5606,5607 ,0,0,0}, {17805,17801,17800 ,5608,5604,5603 ,0,0,0}, - {17801,17799,17798 ,5604,5602,5601 ,0,0,0}, {17806,17798,17792 ,5609,5601,5595 ,0,0,0}, - {17807,17808,17809 ,5610,5611,5612 ,0,0,0}, {17810,17811,17812 ,5613,5614,5615 ,0,0,0}, - {17813,17808,17814 ,5616,5611,5617 ,0,0,0}, {17815,17816,17789 ,5618,5619,5592 ,0,0,0}, - {17803,17552,17520 ,5606,5620,5621 ,0,0,0}, {17817,17818,17819 ,5622,5623,5624 ,0,0,0}, - {17820,17554,17802 ,5625,5626,5605 ,0,0,0}, {17552,17802,17554 ,5620,5605,5626 ,0,0,0}, - {17821,17822,17823 ,5627,5628,5629 ,0,0,0}, {17795,17824,17791 ,5598,5630,5594 ,0,0,0}, - {17825,17826,17827 ,5631,5632,5633 ,0,0,0}, {17828,17829,17830 ,5634,5635,5636 ,0,0,0}, - {17819,17822,17831 ,5624,5628,5637 ,0,0,0}, {17832,17833,17834 ,5638,5639,5640 ,0,0,0}, - {17835,17789,17836 ,5641,5592,5642 ,0,0,0}, {17833,17828,17834 ,5639,5634,5640 ,0,0,0}, - {17815,17796,17793 ,5618,5599,5596 ,0,0,0}, {17543,17546,17832 ,5643,5644,5638 ,0,0,0}, - {17796,17815,17837 ,5599,5618,5645 ,0,0,0}, {17837,17815,17835 ,5645,5618,5641 ,0,0,0}, - {17838,17839,17835 ,5646,5647,5641 ,0,0,0}, {17815,17793,17816 ,5618,5596,5619 ,0,0,0}, - {17838,17840,17841 ,5646,5648,5649 ,0,0,0}, {17841,17839,17838 ,5649,5647,5646 ,0,0,0}, - {17842,17843,17844 ,5650,5651,5652 ,0,0,0}, {17843,17842,17840 ,5651,5650,5648 ,0,0,0}, - {17800,17798,17806 ,5603,5601,5609 ,0,0,0}, {17845,17797,17799 ,5653,5600,5602 ,0,0,0}, - {17845,17846,17797 ,5653,5654,5600 ,0,0,0}, {17806,17792,17794 ,5609,5595,5597 ,0,0,0}, - {17847,17792,17797 ,5655,5595,5600 ,0,0,0}, {17789,17816,17790 ,5592,5619,5593 ,0,0,0}, - {17847,17816,17793 ,5655,5619,5596 ,0,0,0}, {17838,17848,17840 ,5646,5656,5648 ,0,0,0}, - {17849,17843,17850 ,5657,5651,5658 ,0,0,0}, {17837,17835,17839 ,5645,5641,5647 ,0,0,0}, - {17835,17815,17789 ,5641,5618,5592 ,0,0,0}, {17841,17840,17842 ,5649,5648,5650 ,0,0,0}, - {17836,17848,17838 ,5642,5656,5646 ,0,0,0}, {17843,17851,17844 ,5651,5659,5652 ,0,0,0}, - {17840,17848,17850 ,5648,5656,5658 ,0,0,0}, {17852,17851,17843 ,5660,5659,5651 ,0,0,0}, - {17798,17797,17792 ,5601,5600,5595 ,0,0,0}, {17853,17846,17845 ,5661,5654,5653 ,0,0,0}, - {17853,17809,17846 ,5661,5612,5654 ,0,0,0}, {17792,17847,17793 ,5595,5655,5596 ,0,0,0}, - {17846,17854,17847 ,5654,5662,5655 ,0,0,0}, {17791,17823,17836 ,5594,5629,5642 ,0,0,0}, - {17854,17790,17816 ,5662,5593,5619 ,0,0,0}, {17819,17849,17850 ,5624,5657,5658 ,0,0,0}, - {17818,17849,17819 ,5623,5657,5624 ,0,0,0}, {17835,17836,17838 ,5641,5642,5646 ,0,0,0}, - {17789,17791,17836 ,5592,5594,5642 ,0,0,0}, {17840,17850,17843 ,5648,5658,5651 ,0,0,0}, - {17823,17822,17848 ,5629,5628,5656 ,0,0,0}, {17843,17849,17852 ,5651,5657,5660 ,0,0,0}, - {17850,17822,17819 ,5658,5628,5624 ,0,0,0}, {17855,17852,17849 ,5663,5660,5657 ,0,0,0}, - {17797,17846,17847 ,5600,5654,5655 ,0,0,0}, {17807,17809,17853 ,5610,5612,5661 ,0,0,0}, - {17856,17813,17857 ,5664,5616,5665 ,0,0,0}, {17847,17854,17816 ,5655,5662,5619 ,0,0,0}, - {17858,17854,17809 ,5666,5662,5612 ,0,0,0}, {17823,17791,17824 ,5629,5594,5630 ,0,0,0}, - {17858,17795,17790 ,5666,5598,5593 ,0,0,0}, {17859,17817,17831 ,5667,5622,5637 ,0,0,0}, - {17848,17822,17850 ,5656,5628,5658 ,0,0,0}, {17836,17823,17848 ,5642,5629,5656 ,0,0,0}, - {17823,17824,17821 ,5629,5630,5627 ,0,0,0}, {17818,17817,17860 ,5623,5622,5668 ,0,0,0}, - {17821,17831,17822 ,5627,5637,5628 ,0,0,0}, {17849,17818,17855 ,5657,5623,5663 ,0,0,0}, - {17819,17831,17817 ,5624,5637,5622 ,0,0,0}, {17861,17855,17818 ,5669,5663,5623 ,0,0,0}, - {17846,17809,17854 ,5654,5612,5662 ,0,0,0}, {17814,17808,17807 ,5617,5611,5610 ,0,0,0}, - {17795,17862,17824 ,5598,5670,5630 ,0,0,0}, {17854,17858,17790 ,5662,5666,5593 ,0,0,0}, - {17863,17858,17808 ,5671,5666,5611 ,0,0,0}, {17824,17864,17821 ,5630,5672,5627 ,0,0,0}, - {17863,17862,17795 ,5671,5670,5598 ,0,0,0}, {17821,17865,17831 ,5627,5673,5637 ,0,0,0}, - {17864,17824,17862 ,5672,5630,5670 ,0,0,0}, {17817,17826,17860 ,5622,5632,5668 ,0,0,0}, - {17865,17821,17864 ,5673,5627,5672 ,0,0,0}, {17866,17860,17825 ,5674,5668,5631 ,0,0,0}, - {17859,17831,17865 ,5667,5637,5673 ,0,0,0}, {17818,17860,17861 ,5623,5668,5669 ,0,0,0}, - {17817,17859,17826 ,5622,5667,5632 ,0,0,0}, {17866,17861,17860 ,5674,5669,5668 ,0,0,0}, - {17809,17808,17858 ,5612,5611,5666 ,0,0,0}, {17857,17813,17814 ,5665,5616,5617 ,0,0,0}, - {17862,17810,17864 ,5670,5613,5672 ,0,0,0}, {17858,17863,17795 ,5666,5671,5598 ,0,0,0}, - {17813,17867,17863 ,5616,5675,5671 ,0,0,0}, {17864,17812,17865 ,5672,5615,5673 ,0,0,0}, - {17867,17810,17862 ,5675,5613,5670 ,0,0,0}, {17865,17868,17859 ,5673,5676,5667 ,0,0,0}, - {17810,17812,17864 ,5613,5615,5672 ,0,0,0}, {17869,17826,17859 ,5677,5632,5667 ,0,0,0}, - {17868,17865,17812 ,5676,5673,5615 ,0,0,0}, {17870,17825,17830 ,5678,5631,5636 ,0,0,0}, - {17859,17868,17869 ,5667,5676,5677 ,0,0,0}, {17869,17827,17826 ,5677,5633,5632 ,0,0,0}, - {17866,17825,17870 ,5674,5631,5678 ,0,0,0}, {17860,17826,17825 ,5668,5632,5631 ,0,0,0}, - {17808,17813,17863 ,5611,5616,5671 ,0,0,0}, {17871,17856,17857 ,5679,5664,5665 ,0,0,0}, - {17872,17868,17812 ,5680,5676,5615 ,0,0,0}, {17863,17867,17862 ,5671,5675,5670 ,0,0,0}, - {17856,17804,17867 ,5664,5607,5675 ,0,0,0}, {17873,17869,17868 ,5681,5677,5676 ,0,0,0}, - {17804,17811,17810 ,5607,5614,5613 ,0,0,0}, {17874,17827,17869 ,5682,5633,5677 ,0,0,0}, - {17811,17872,17812 ,5614,5680,5615 ,0,0,0}, {17834,17828,17875 ,5640,5634,5683 ,0,0,0}, - {17872,17873,17868 ,5680,5681,5676 ,0,0,0}, {17830,17827,17876 ,5636,5633,5684 ,0,0,0}, - {17874,17869,17873 ,5682,5677,5681 ,0,0,0}, {17876,17827,17874 ,5684,5633,5682 ,0,0,0}, - {17870,17830,17829 ,5678,5636,5635 ,0,0,0}, {17825,17827,17830 ,5631,5633,5636 ,0,0,0}, - {17813,17856,17867 ,5616,5664,5675 ,0,0,0}, {17802,17871,17820 ,5605,5679,5625 ,0,0,0}, - {17803,17877,17811 ,5606,5685,5614 ,0,0,0}, {17867,17804,17810 ,5675,5607,5613 ,0,0,0}, - {17803,17811,17804 ,5606,5614,5607 ,0,0,0}, {17877,17878,17872 ,5685,5686,5680 ,0,0,0}, - {17877,17872,17811 ,5685,5680,5614 ,0,0,0}, {17878,17879,17873 ,5686,5687,5681 ,0,0,0}, - {17878,17873,17872 ,5686,5681,5680 ,0,0,0}, {17879,17880,17874 ,5687,5688,5682 ,0,0,0}, - {17879,17874,17873 ,5687,5682,5681 ,0,0,0}, {17880,17875,17876 ,5688,5683,5684 ,0,0,0}, - {17876,17874,17880 ,5684,5682,5688 ,0,0,0}, {17875,17828,17876 ,5683,5634,5684 ,0,0,0}, - {17829,17828,17833 ,5635,5634,5639 ,0,0,0}, {17830,17876,17828 ,5636,5684,5634 ,0,0,0}, - {17871,17802,17856 ,5679,5605,5664 ,0,0,0}, {17804,17856,17802 ,5607,5664,5605 ,0,0,0}, - {17877,17520,17541 ,5685,5621,5689 ,0,0,0}, {17552,17803,17802 ,5620,5606,5605 ,0,0,0}, - {17878,17541,17652 ,5686,5689,5690 ,0,0,0}, {17520,17877,17803 ,5621,5685,5606 ,0,0,0}, - {17879,17652,17538 ,5687,5690,5691 ,0,0,0}, {17541,17878,17877 ,5689,5686,5685 ,0,0,0}, - {17880,17538,17536 ,5688,5691,5692 ,0,0,0}, {17652,17879,17878 ,5690,5687,5686 ,0,0,0}, - {17875,17536,17505 ,5683,5692,5693 ,0,0,0}, {17538,17880,17879 ,5691,5688,5687 ,0,0,0}, - {17834,17505,17543 ,5640,5693,5643 ,0,0,0}, {17536,17875,17880 ,5692,5683,5688 ,0,0,0}, - {17543,17832,17834 ,5643,5638,5640 ,0,0,0}, {17505,17834,17875 ,5693,5640,5683 ,0,0,0}, - {17881,17882,17883 ,5694,5695,5696 ,0,0,0}, {17884,17885,17886 ,5697,5698,5699 ,0,0,0}, - {17883,17887,17888 ,5696,5700,5701 ,0,0,0}, {17887,17889,17888 ,5700,5702,5701 ,0,0,0}, - {17890,17891,17892 ,5703,5704,5705 ,0,0,0}, {17892,17893,17890 ,5705,5706,5703 ,0,0,0}, - {17894,17895,17896 ,5707,5708,5709 ,0,0,0}, {17897,17891,17898 ,5710,5704,5711 ,0,0,0}, - {17897,17892,17891 ,5710,5705,5704 ,0,0,0}, {17898,17899,17897 ,5711,5712,5710 ,0,0,0}, - {17900,17886,17901 ,5713,5699,5714 ,0,0,0}, {17902,17903,17904 ,5715,5716,5717 ,0,0,0}, - {17894,17468,17467 ,5707,5718,5719 ,0,0,0}, {17905,17906,17907 ,5720,5721,5722 ,0,0,0}, - {17908,17495,17896 ,5723,5724,5709 ,0,0,0}, {17909,17910,17903 ,5725,5726,5716 ,0,0,0}, - {17468,17896,17495 ,5718,5709,5724 ,0,0,0}, {17911,17912,17913 ,5727,5728,5729 ,0,0,0}, - {17914,17888,17889 ,5730,5701,5702 ,0,0,0}, {17915,17916,17917 ,5731,5732,5733 ,0,0,0}, - {17918,17919,17883 ,5734,5735,5696 ,0,0,0}, {17920,17921,17922 ,5736,5737,5738 ,0,0,0}, - {17913,17923,17924 ,5729,5739,5740 ,0,0,0}, {17925,17923,17926 ,5741,5739,5742 ,0,0,0}, - {17927,17928,17929 ,5743,5744,5745 ,0,0,0}, {17881,17885,17884 ,5694,5698,5697 ,0,0,0}, - {17928,17915,17929 ,5744,5731,5745 ,0,0,0}, {17919,17930,17881 ,5735,5746,5694 ,0,0,0}, - {17491,17496,17927 ,5747,5748,5743 ,0,0,0}, {17931,17932,17919 ,5749,5750,5735 ,0,0,0}, - {17930,17885,17881 ,5746,5698,5694 ,0,0,0}, {17931,17933,17934 ,5749,5751,5752 ,0,0,0}, - {17919,17932,17930 ,5735,5750,5746 ,0,0,0}, {17935,17936,17937 ,5753,5754,5755 ,0,0,0}, - {17932,17931,17934 ,5750,5749,5752 ,0,0,0}, {17938,17937,17939 ,5756,5755,5757 ,0,0,0}, - {17936,17935,17933 ,5754,5753,5751 ,0,0,0}, {17901,17891,17900 ,5714,5704,5713 ,0,0,0}, - {17891,17901,17898 ,5704,5714,5711 ,0,0,0}, {17893,17940,17890 ,5706,5758,5703 ,0,0,0}, - {17900,17884,17886 ,5713,5697,5699 ,0,0,0}, {17941,17900,17890 ,5759,5713,5703 ,0,0,0}, - {17883,17882,17887 ,5696,5695,5700 ,0,0,0}, {17941,17882,17884 ,5759,5695,5697 ,0,0,0}, - {17931,17942,17933 ,5749,5760,5751 ,0,0,0}, {17884,17882,17881 ,5697,5695,5694 ,0,0,0}, - {17943,17944,17936 ,5761,5762,5754 ,0,0,0}, {17919,17881,17883 ,5735,5694,5696 ,0,0,0}, - {17942,17931,17918 ,5760,5749,5734 ,0,0,0}, {17937,17936,17939 ,5755,5754,5757 ,0,0,0}, - {17934,17933,17935 ,5752,5751,5753 ,0,0,0}, {17933,17942,17943 ,5751,5760,5761 ,0,0,0}, - {17945,17939,17936 ,5763,5757,5754 ,0,0,0}, {17891,17890,17900 ,5704,5703,5713 ,0,0,0}, - {17946,17940,17893 ,5764,5758,5706 ,0,0,0}, {17946,17909,17940 ,5764,5725,5758 ,0,0,0}, - {17900,17941,17884 ,5713,5759,5697 ,0,0,0}, {17940,17947,17941 ,5758,5765,5759 ,0,0,0}, - {17888,17926,17918 ,5701,5742,5734 ,0,0,0}, {17947,17887,17882 ,5765,5700,5695 ,0,0,0}, - {17913,17944,17943 ,5729,5762,5761 ,0,0,0}, {17912,17944,17913 ,5728,5762,5729 ,0,0,0}, - {17919,17918,17931 ,5735,5734,5749 ,0,0,0}, {17883,17888,17918 ,5696,5701,5734 ,0,0,0}, - {17933,17943,17936 ,5751,5761,5754 ,0,0,0}, {17926,17923,17942 ,5742,5739,5760 ,0,0,0}, - {17936,17944,17945 ,5754,5762,5763 ,0,0,0}, {17943,17923,17913 ,5761,5739,5729 ,0,0,0}, - {17948,17945,17944 ,5766,5763,5762 ,0,0,0}, {17890,17940,17941 ,5703,5758,5759 ,0,0,0}, - {17910,17909,17946 ,5726,5725,5764 ,0,0,0}, {17949,17902,17950 ,5767,5715,5768 ,0,0,0}, - {17941,17947,17882 ,5759,5765,5695 ,0,0,0}, {17951,17947,17909 ,5769,5765,5725 ,0,0,0}, - {17926,17888,17914 ,5742,5701,5730 ,0,0,0}, {17951,17889,17887 ,5769,5702,5700 ,0,0,0}, - {17952,17911,17924 ,5770,5727,5740 ,0,0,0}, {17942,17923,17943 ,5760,5739,5761 ,0,0,0}, - {17918,17926,17942 ,5734,5742,5760 ,0,0,0}, {17926,17914,17925 ,5742,5730,5741 ,0,0,0}, - {17912,17911,17953 ,5728,5727,5771 ,0,0,0}, {17925,17924,17923 ,5741,5740,5739 ,0,0,0}, - {17944,17912,17948 ,5762,5728,5766 ,0,0,0}, {17913,17924,17911 ,5729,5740,5727 ,0,0,0}, - {17954,17948,17912 ,5772,5766,5728 ,0,0,0}, {17940,17909,17947 ,5758,5725,5765 ,0,0,0}, - {17904,17903,17910 ,5717,5716,5726 ,0,0,0}, {17889,17955,17914 ,5702,5773,5730 ,0,0,0}, - {17947,17951,17887 ,5765,5769,5700 ,0,0,0}, {17956,17951,17903 ,5774,5769,5716 ,0,0,0}, - {17914,17957,17925 ,5730,5775,5741 ,0,0,0}, {17956,17955,17889 ,5774,5773,5702 ,0,0,0}, - {17925,17958,17924 ,5741,5776,5740 ,0,0,0}, {17957,17914,17955 ,5775,5730,5773 ,0,0,0}, - {17911,17921,17953 ,5727,5737,5771 ,0,0,0}, {17958,17925,17957 ,5776,5741,5775 ,0,0,0}, - {17959,17953,17920 ,5777,5771,5736 ,0,0,0}, {17952,17924,17958 ,5770,5740,5776 ,0,0,0}, - {17912,17953,17954 ,5728,5771,5772 ,0,0,0}, {17911,17952,17921 ,5727,5770,5737 ,0,0,0}, - {17959,17954,17953 ,5777,5772,5771 ,0,0,0}, {17909,17903,17951 ,5725,5716,5769 ,0,0,0}, - {17950,17902,17904 ,5768,5715,5717 ,0,0,0}, {17955,17906,17957 ,5773,5721,5775 ,0,0,0}, - {17951,17956,17889 ,5769,5774,5702 ,0,0,0}, {17902,17960,17956 ,5715,5778,5774 ,0,0,0}, - {17957,17905,17958 ,5775,5720,5776 ,0,0,0}, {17960,17906,17955 ,5778,5721,5773 ,0,0,0}, - {17958,17961,17952 ,5776,5779,5770 ,0,0,0}, {17906,17905,17957 ,5721,5720,5775 ,0,0,0}, - {17962,17921,17952 ,5780,5737,5770 ,0,0,0}, {17961,17958,17905 ,5779,5776,5720 ,0,0,0}, - {17963,17920,17917 ,5781,5736,5733 ,0,0,0}, {17952,17961,17962 ,5770,5779,5780 ,0,0,0}, - {17962,17922,17921 ,5780,5738,5737 ,0,0,0}, {17959,17920,17963 ,5777,5736,5781 ,0,0,0}, - {17953,17921,17920 ,5771,5737,5736 ,0,0,0}, {17903,17902,17956 ,5716,5715,5774 ,0,0,0}, - {17964,17949,17950 ,5782,5767,5768 ,0,0,0}, {17965,17961,17905 ,5783,5779,5720 ,0,0,0}, - {17956,17960,17955 ,5774,5778,5773 ,0,0,0}, {17949,17895,17960 ,5767,5708,5778 ,0,0,0}, - {17966,17962,17961 ,5784,5780,5779 ,0,0,0}, {17895,17907,17906 ,5708,5722,5721 ,0,0,0}, - {17967,17922,17962 ,5785,5738,5780 ,0,0,0}, {17907,17965,17905 ,5722,5783,5720 ,0,0,0}, - {17929,17915,17968 ,5745,5731,5786 ,0,0,0}, {17965,17966,17961 ,5783,5784,5779 ,0,0,0}, - {17917,17922,17969 ,5733,5738,5787 ,0,0,0}, {17967,17962,17966 ,5785,5780,5784 ,0,0,0}, - {17969,17922,17967 ,5787,5738,5785 ,0,0,0}, {17963,17917,17916 ,5781,5733,5732 ,0,0,0}, - {17920,17922,17917 ,5736,5738,5733 ,0,0,0}, {17902,17949,17960 ,5715,5767,5778 ,0,0,0}, - {17896,17964,17908 ,5709,5782,5723 ,0,0,0}, {17894,17970,17907 ,5707,5788,5722 ,0,0,0}, - {17960,17895,17906 ,5778,5708,5721 ,0,0,0}, {17894,17907,17895 ,5707,5722,5708 ,0,0,0}, - {17970,17971,17965 ,5788,5789,5783 ,0,0,0}, {17970,17965,17907 ,5788,5783,5722 ,0,0,0}, - {17971,17972,17966 ,5789,5790,5784 ,0,0,0}, {17971,17966,17965 ,5789,5784,5783 ,0,0,0}, - {17972,17973,17967 ,5790,5791,5785 ,0,0,0}, {17972,17967,17966 ,5790,5785,5784 ,0,0,0}, - {17973,17968,17969 ,5791,5786,5787 ,0,0,0}, {17969,17967,17973 ,5787,5785,5791 ,0,0,0}, - {17968,17915,17969 ,5786,5731,5787 ,0,0,0}, {17916,17915,17928 ,5732,5731,5744 ,0,0,0}, - {17917,17969,17915 ,5733,5787,5731 ,0,0,0}, {17964,17896,17949 ,5782,5709,5767 ,0,0,0}, - {17895,17949,17896 ,5708,5767,5709 ,0,0,0}, {17970,17467,17482 ,5788,5719,5792 ,0,0,0}, - {17468,17894,17896 ,5718,5707,5709 ,0,0,0}, {17971,17482,17485 ,5789,5792,5793 ,0,0,0}, - {17467,17970,17894 ,5719,5788,5707 ,0,0,0}, {17972,17485,17486 ,5790,5793,5794 ,0,0,0}, - {17482,17971,17970 ,5792,5789,5788 ,0,0,0}, {17973,17486,17525 ,5791,5794,5795 ,0,0,0}, - {17485,17972,17971 ,5793,5790,5789 ,0,0,0}, {17968,17525,17466 ,5786,5795,5796 ,0,0,0}, - {17486,17973,17972 ,5794,5791,5790 ,0,0,0}, {17929,17466,17491 ,5745,5796,5747 ,0,0,0}, - {17525,17968,17973 ,5795,5786,5791 ,0,0,0}, {17491,17927,17929 ,5747,5743,5745 ,0,0,0}, - {17466,17929,17968 ,5796,5745,5786 ,0,0,0}, {17974,17975,17976 ,5797,5798,5799 ,0,0,0}, - {17977,16891,16892 ,5800,5801,5802 ,0,0,0}, {17976,17978,17979 ,5799,5803,5804 ,0,0,0}, - {17978,17980,17979 ,5803,5805,5804 ,0,0,0}, {17981,17982,17983 ,5806,5807,5808 ,0,0,0}, - {17983,17984,17981 ,5808,5809,5806 ,0,0,0}, {17985,17986,17987 ,5810,5811,5812 ,0,0,0}, - {17988,17982,16897 ,5813,5807,5814 ,0,0,0}, {17988,17983,17982 ,5813,5808,5807 ,0,0,0}, - {16897,16898,17988 ,5814,5815,5813 ,0,0,0}, {17989,16892,16895 ,5816,5802,5817 ,0,0,0}, - {17990,17991,17992 ,5818,5819,5820 ,0,0,0}, {17985,17424,17423 ,5810,5821,5822 ,0,0,0}, - {17993,17994,17995 ,5823,5824,5825 ,0,0,0}, {17996,17431,17987 ,5826,5827,5812 ,0,0,0}, - {17997,17998,17991 ,5828,5829,5819 ,0,0,0}, {17424,17987,17431 ,5821,5812,5827 ,0,0,0}, - {17999,18000,18001 ,5830,5831,5832 ,0,0,0}, {18002,17979,17980 ,5833,5804,5805 ,0,0,0}, - {18003,18004,18005 ,5834,5835,5836 ,0,0,0}, {18006,18007,17976 ,5837,5838,5799 ,0,0,0}, - {18008,18009,18010 ,5839,5840,5841 ,0,0,0}, {18001,18011,18012 ,5832,5842,5843 ,0,0,0}, - {18013,18011,18014 ,5844,5842,5845 ,0,0,0}, {18015,18016,18017 ,5846,5847,5848 ,0,0,0}, - {17974,16891,17977 ,5797,5801,5800 ,0,0,0}, {18016,18003,18017 ,5847,5834,5848 ,0,0,0}, - {18007,16889,17974 ,5838,5849,5797 ,0,0,0}, {17447,17454,18015 ,5850,5851,5846 ,0,0,0}, - {18018,16887,18007 ,5852,5853,5838 ,0,0,0}, {16889,16891,17974 ,5849,5801,5797 ,0,0,0}, - {18018,18019,16884 ,5852,5854,5855 ,0,0,0}, {18007,16887,16889 ,5838,5853,5849 ,0,0,0}, - {16882,18020,16883 ,5856,5857,5858 ,0,0,0}, {16887,18018,16884 ,5853,5852,5855 ,0,0,0}, - {16877,16883,18021 ,5067,5858,5859 ,0,0,0}, {18020,16882,18019 ,5857,5856,5854 ,0,0,0}, - {16895,17982,17989 ,5817,5807,5816 ,0,0,0}, {17982,16895,16897 ,5807,5817,5814 ,0,0,0}, - {17984,18022,17981 ,5809,5860,5806 ,0,0,0}, {17989,17977,16892 ,5816,5800,5802 ,0,0,0}, - {18023,17989,17981 ,5861,5816,5806 ,0,0,0}, {17976,17975,17978 ,5799,5798,5803 ,0,0,0}, - {18023,17975,17977 ,5861,5798,5800 ,0,0,0}, {18018,18024,18019 ,5852,5862,5854 ,0,0,0}, - {17977,17975,17974 ,5800,5798,5797 ,0,0,0}, {18025,18026,18020 ,5863,5864,5857 ,0,0,0}, - {18007,17974,17976 ,5838,5797,5799 ,0,0,0}, {18024,18018,18006 ,5862,5852,5837 ,0,0,0}, - {16883,18020,18021 ,5858,5857,5859 ,0,0,0}, {16884,18019,16882 ,5855,5854,5856 ,0,0,0}, - {18019,18024,18025 ,5854,5862,5863 ,0,0,0}, {18027,18021,18020 ,5865,5859,5857 ,0,0,0}, - {17982,17981,17989 ,5807,5806,5816 ,0,0,0}, {18028,18022,17984 ,5866,5860,5809 ,0,0,0}, - {18028,17997,18022 ,5866,5828,5860 ,0,0,0}, {17989,18023,17977 ,5816,5861,5800 ,0,0,0}, - {18022,18029,18023 ,5860,5867,5861 ,0,0,0}, {17979,18014,18006 ,5804,5845,5837 ,0,0,0}, - {18029,17978,17975 ,5867,5803,5798 ,0,0,0}, {18001,18026,18025 ,5832,5864,5863 ,0,0,0}, - {18000,18026,18001 ,5831,5864,5832 ,0,0,0}, {18007,18006,18018 ,5838,5837,5852 ,0,0,0}, - {17976,17979,18006 ,5799,5804,5837 ,0,0,0}, {18019,18025,18020 ,5854,5863,5857 ,0,0,0}, - {18014,18011,18024 ,5845,5842,5862 ,0,0,0}, {18020,18026,18027 ,5857,5864,5865 ,0,0,0}, - {18025,18011,18001 ,5863,5842,5832 ,0,0,0}, {18030,18027,18026 ,5868,5865,5864 ,0,0,0}, - {17981,18022,18023 ,5806,5860,5861 ,0,0,0}, {17998,17997,18028 ,5829,5828,5866 ,0,0,0}, - {18031,17990,18032 ,5869,5818,5870 ,0,0,0}, {18023,18029,17975 ,5861,5867,5798 ,0,0,0}, - {18033,18029,17997 ,5871,5867,5828 ,0,0,0}, {18014,17979,18002 ,5845,5804,5833 ,0,0,0}, - {18033,17980,17978 ,5871,5805,5803 ,0,0,0}, {18034,17999,18012 ,5872,5830,5843 ,0,0,0}, - {18024,18011,18025 ,5862,5842,5863 ,0,0,0}, {18006,18014,18024 ,5837,5845,5862 ,0,0,0}, - {18014,18002,18013 ,5845,5833,5844 ,0,0,0}, {18000,17999,18035 ,5831,5830,5873 ,0,0,0}, - {18013,18012,18011 ,5844,5843,5842 ,0,0,0}, {18026,18000,18030 ,5864,5831,5868 ,0,0,0}, - {18001,18012,17999 ,5832,5843,5830 ,0,0,0}, {18036,18030,18000 ,5874,5868,5831 ,0,0,0}, - {18022,17997,18029 ,5860,5828,5867 ,0,0,0}, {17992,17991,17998 ,5820,5819,5829 ,0,0,0}, - {17980,18037,18002 ,5805,5875,5833 ,0,0,0}, {18029,18033,17978 ,5867,5871,5803 ,0,0,0}, - {18038,18033,17991 ,5876,5871,5819 ,0,0,0}, {18002,18039,18013 ,5833,5877,5844 ,0,0,0}, - {18038,18037,17980 ,5876,5875,5805 ,0,0,0}, {18013,18040,18012 ,5844,5878,5843 ,0,0,0}, - {18039,18002,18037 ,5877,5833,5875 ,0,0,0}, {17999,18009,18035 ,5830,5840,5873 ,0,0,0}, - {18040,18013,18039 ,5878,5844,5877 ,0,0,0}, {18041,18035,18008 ,5879,5873,5839 ,0,0,0}, - {18034,18012,18040 ,5872,5843,5878 ,0,0,0}, {18000,18035,18036 ,5831,5873,5874 ,0,0,0}, - {17999,18034,18009 ,5830,5872,5840 ,0,0,0}, {18041,18036,18035 ,5879,5874,5873 ,0,0,0}, - {17997,17991,18033 ,5828,5819,5871 ,0,0,0}, {18032,17990,17992 ,5870,5818,5820 ,0,0,0}, - {18037,17994,18039 ,5875,5824,5877 ,0,0,0}, {18033,18038,17980 ,5871,5876,5805 ,0,0,0}, - {17990,18042,18038 ,5818,5880,5876 ,0,0,0}, {18039,17993,18040 ,5877,5823,5878 ,0,0,0}, - {18042,17994,18037 ,5880,5824,5875 ,0,0,0}, {18040,18043,18034 ,5878,5881,5872 ,0,0,0}, - {17994,17993,18039 ,5824,5823,5877 ,0,0,0}, {18044,18009,18034 ,5882,5840,5872 ,0,0,0}, - {18043,18040,17993 ,5881,5878,5823 ,0,0,0}, {18045,18008,18005 ,5883,5839,5836 ,0,0,0}, - {18034,18043,18044 ,5872,5881,5882 ,0,0,0}, {18044,18010,18009 ,5882,5841,5840 ,0,0,0}, - {18041,18008,18045 ,5879,5839,5883 ,0,0,0}, {18035,18009,18008 ,5873,5840,5839 ,0,0,0}, - {17991,17990,18038 ,5819,5818,5876 ,0,0,0}, {18046,18031,18032 ,5884,5869,5870 ,0,0,0}, - {18047,18043,17993 ,5885,5881,5823 ,0,0,0}, {18038,18042,18037 ,5876,5880,5875 ,0,0,0}, - {18031,17986,18042 ,5869,5811,5880 ,0,0,0}, {18048,18044,18043 ,5886,5882,5881 ,0,0,0}, - {17986,17995,17994 ,5811,5825,5824 ,0,0,0}, {18049,18010,18044 ,5887,5841,5882 ,0,0,0}, - {17995,18047,17993 ,5825,5885,5823 ,0,0,0}, {18017,18003,18050 ,5848,5834,5888 ,0,0,0}, - {18047,18048,18043 ,5885,5886,5881 ,0,0,0}, {18005,18010,18051 ,5836,5841,5889 ,0,0,0}, - {18049,18044,18048 ,5887,5882,5886 ,0,0,0}, {18051,18010,18049 ,5889,5841,5887 ,0,0,0}, - {18045,18005,18004 ,5883,5836,5835 ,0,0,0}, {18008,18010,18005 ,5839,5841,5836 ,0,0,0}, - {17990,18031,18042 ,5818,5869,5880 ,0,0,0}, {17987,18046,17996 ,5812,5884,5826 ,0,0,0}, - {17985,18052,17995 ,5810,5890,5825 ,0,0,0}, {18042,17986,17994 ,5880,5811,5824 ,0,0,0}, - {17985,17995,17986 ,5810,5825,5811 ,0,0,0}, {18052,18053,18047 ,5890,5891,5885 ,0,0,0}, - {18052,18047,17995 ,5890,5885,5825 ,0,0,0}, {18053,18054,18048 ,5891,5892,5886 ,0,0,0}, - {18053,18048,18047 ,5891,5886,5885 ,0,0,0}, {18054,18055,18049 ,5892,5893,5887 ,0,0,0}, - {18054,18049,18048 ,5892,5887,5886 ,0,0,0}, {18055,18050,18051 ,5893,5888,5889 ,0,0,0}, - {18051,18049,18055 ,5889,5887,5893 ,0,0,0}, {18050,18003,18051 ,5888,5834,5889 ,0,0,0}, - {18004,18003,18016 ,5835,5834,5847 ,0,0,0}, {18005,18051,18003 ,5836,5889,5834 ,0,0,0}, - {18046,17987,18031 ,5884,5812,5869 ,0,0,0}, {17986,18031,17987 ,5811,5869,5812 ,0,0,0}, - {18052,17423,17441 ,5890,5822,5894 ,0,0,0}, {17424,17985,17987 ,5821,5810,5812 ,0,0,0}, - {18053,17441,17442 ,5891,5894,5895 ,0,0,0}, {17423,18052,17985 ,5822,5890,5810 ,0,0,0}, - {18054,17442,17444 ,5892,5895,5896 ,0,0,0}, {17441,18053,18052 ,5894,5891,5890 ,0,0,0}, - {18055,17444,17427 ,5893,5896,5897 ,0,0,0}, {17442,18054,18053 ,5895,5892,5891 ,0,0,0}, - {18050,17427,17448 ,5888,5897,5898 ,0,0,0}, {17444,18055,18054 ,5896,5893,5892 ,0,0,0}, - {18017,17448,17447 ,5848,5898,5850 ,0,0,0}, {17427,18050,18055 ,5897,5888,5893 ,0,0,0}, - {17447,18015,18017 ,5850,5846,5848 ,0,0,0}, {17448,18017,18050 ,5898,5848,5888 ,0,0,0}, - {18056,18057,18058 ,5899,5900,5901 ,0,0,0}, {18059,18060,16860 ,5902,5903,5904 ,0,0,0}, - {18057,18061,18058 ,5900,5905,5901 ,0,0,0}, {16855,16860,18060 ,5906,5904,5903 ,0,0,0}, - {18062,18063,18064 ,5907,5908,5909 ,0,0,0}, {16865,18065,18063 ,5910,5911,5908 ,0,0,0}, - {18066,18067,18068 ,5912,5913,5914 ,0,0,0}, {16863,18065,16865 ,5915,5911,5910 ,0,0,0}, - {18065,18064,18063 ,5911,5909,5908 ,0,0,0}, {16859,18063,18059 ,5916,5908,5902 ,0,0,0}, - {18069,18070,18071 ,5917,5918,5919 ,0,0,0}, {18072,18073,18074 ,5920,5921,5922 ,0,0,0}, - {18075,18070,18076 ,5923,5918,5924 ,0,0,0}, {18077,18078,18056 ,5925,5926,5899 ,0,0,0}, - {18067,17374,17293 ,5913,5927,5928 ,0,0,0}, {18079,18080,18081 ,5929,5930,5931 ,0,0,0}, - {18082,17404,18066 ,5932,5933,5912 ,0,0,0}, {17374,18066,17404 ,5927,5912,5933 ,0,0,0}, - {18083,18084,18085 ,5934,5935,5936 ,0,0,0}, {18061,18086,18058 ,5905,5937,5901 ,0,0,0}, - {18087,18088,18089 ,5938,5939,5940 ,0,0,0}, {18090,18091,18092 ,5941,5942,5943 ,0,0,0}, - {18081,18084,18093 ,5931,5935,5944 ,0,0,0}, {18094,18095,18096 ,5945,5946,5947 ,0,0,0}, - {18097,18056,18098 ,5948,5899,5949 ,0,0,0}, {18095,18090,18096 ,5946,5941,5947 ,0,0,0}, - {18077,16855,18060 ,5925,5906,5903 ,0,0,0}, {17403,17407,18094 ,5950,5951,5945 ,0,0,0}, - {16855,18077,16853 ,5906,5925,5952 ,0,0,0}, {16853,18077,18097 ,5952,5925,5948 ,0,0,0}, - {18099,16848,18097 ,5953,5954,5948 ,0,0,0}, {18077,18060,18078 ,5925,5903,5926 ,0,0,0}, - {18099,18100,16852 ,5953,5955,5956 ,0,0,0}, {16852,16848,18099 ,5956,5954,5953 ,0,0,0}, - {16844,18101,16846 ,5957,5958,5959 ,0,0,0}, {18101,16844,18100 ,5958,5957,5955 ,0,0,0}, - {16865,18063,16859 ,5910,5908,5916 ,0,0,0}, {18102,18062,18064 ,5960,5907,5909 ,0,0,0}, - {18102,18103,18062 ,5960,5961,5907 ,0,0,0}, {16859,18059,16860 ,5916,5902,5904 ,0,0,0}, - {18104,18059,18062 ,5962,5902,5907 ,0,0,0}, {18056,18078,18057 ,5899,5926,5900 ,0,0,0}, - {18104,18078,18060 ,5962,5926,5903 ,0,0,0}, {18099,18105,18100 ,5953,5963,5955 ,0,0,0}, - {18106,18101,18107 ,5964,5958,5965 ,0,0,0}, {16853,18097,16848 ,5952,5948,5954 ,0,0,0}, - {18097,18077,18056 ,5948,5925,5899 ,0,0,0}, {16852,18100,16844 ,5956,5955,5957 ,0,0,0}, - {18098,18105,18099 ,5949,5963,5953 ,0,0,0}, {18101,18108,16846 ,5958,5966,5959 ,0,0,0}, - {18100,18105,18107 ,5955,5963,5965 ,0,0,0}, {18109,18108,18101 ,5967,5966,5958 ,0,0,0}, - {18063,18062,18059 ,5908,5907,5902 ,0,0,0}, {18110,18103,18102 ,5968,5961,5960 ,0,0,0}, - {18110,18071,18103 ,5968,5919,5961 ,0,0,0}, {18059,18104,18060 ,5902,5962,5903 ,0,0,0}, - {18103,18111,18104 ,5961,5969,5962 ,0,0,0}, {18058,18085,18098 ,5901,5936,5949 ,0,0,0}, - {18111,18057,18078 ,5969,5900,5926 ,0,0,0}, {18081,18106,18107 ,5931,5964,5965 ,0,0,0}, - {18080,18106,18081 ,5930,5964,5931 ,0,0,0}, {18097,18098,18099 ,5948,5949,5953 ,0,0,0}, - {18056,18058,18098 ,5899,5901,5949 ,0,0,0}, {18100,18107,18101 ,5955,5965,5958 ,0,0,0}, - {18085,18084,18105 ,5936,5935,5963 ,0,0,0}, {18101,18106,18109 ,5958,5964,5967 ,0,0,0}, - {18107,18084,18081 ,5965,5935,5931 ,0,0,0}, {18112,18109,18106 ,5970,5967,5964 ,0,0,0}, - {18062,18103,18104 ,5907,5961,5962 ,0,0,0}, {18069,18071,18110 ,5917,5919,5968 ,0,0,0}, - {18113,18075,18114 ,5971,5923,5972 ,0,0,0}, {18104,18111,18078 ,5962,5969,5926 ,0,0,0}, - {18115,18111,18071 ,5973,5969,5919 ,0,0,0}, {18085,18058,18086 ,5936,5901,5937 ,0,0,0}, - {18115,18061,18057 ,5973,5905,5900 ,0,0,0}, {18116,18079,18093 ,5974,5929,5944 ,0,0,0}, - {18105,18084,18107 ,5963,5935,5965 ,0,0,0}, {18098,18085,18105 ,5949,5936,5963 ,0,0,0}, - {18085,18086,18083 ,5936,5937,5934 ,0,0,0}, {18080,18079,18117 ,5930,5929,5975 ,0,0,0}, - {18083,18093,18084 ,5934,5944,5935 ,0,0,0}, {18106,18080,18112 ,5964,5930,5970 ,0,0,0}, - {18081,18093,18079 ,5931,5944,5929 ,0,0,0}, {18118,18112,18080 ,5976,5970,5930 ,0,0,0}, - {18103,18071,18111 ,5961,5919,5969 ,0,0,0}, {18076,18070,18069 ,5924,5918,5917 ,0,0,0}, - {18061,18119,18086 ,5905,5977,5937 ,0,0,0}, {18111,18115,18057 ,5969,5973,5900 ,0,0,0}, - {18120,18115,18070 ,5978,5973,5918 ,0,0,0}, {18086,18121,18083 ,5937,5979,5934 ,0,0,0}, - {18120,18119,18061 ,5978,5977,5905 ,0,0,0}, {18083,18122,18093 ,5934,5980,5944 ,0,0,0}, - {18121,18086,18119 ,5979,5937,5977 ,0,0,0}, {18079,18088,18117 ,5929,5939,5975 ,0,0,0}, - {18122,18083,18121 ,5980,5934,5979 ,0,0,0}, {18123,18117,18087 ,5981,5975,5938 ,0,0,0}, - {18116,18093,18122 ,5974,5944,5980 ,0,0,0}, {18080,18117,18118 ,5930,5975,5976 ,0,0,0}, - {18079,18116,18088 ,5929,5974,5939 ,0,0,0}, {18123,18118,18117 ,5981,5976,5975 ,0,0,0}, - {18071,18070,18115 ,5919,5918,5973 ,0,0,0}, {18114,18075,18076 ,5972,5923,5924 ,0,0,0}, - {18119,18072,18121 ,5977,5920,5979 ,0,0,0}, {18115,18120,18061 ,5973,5978,5905 ,0,0,0}, - {18075,18124,18120 ,5923,5982,5978 ,0,0,0}, {18121,18074,18122 ,5979,5922,5980 ,0,0,0}, - {18124,18072,18119 ,5982,5920,5977 ,0,0,0}, {18122,18125,18116 ,5980,5983,5974 ,0,0,0}, - {18072,18074,18121 ,5920,5922,5979 ,0,0,0}, {18126,18088,18116 ,5984,5939,5974 ,0,0,0}, - {18125,18122,18074 ,5983,5980,5922 ,0,0,0}, {18127,18087,18092 ,5985,5938,5943 ,0,0,0}, - {18116,18125,18126 ,5974,5983,5984 ,0,0,0}, {18126,18089,18088 ,5984,5940,5939 ,0,0,0}, - {18123,18087,18127 ,5981,5938,5985 ,0,0,0}, {18117,18088,18087 ,5975,5939,5938 ,0,0,0}, - {18070,18075,18120 ,5918,5923,5978 ,0,0,0}, {18128,18113,18114 ,5986,5971,5972 ,0,0,0}, - {18129,18125,18074 ,5987,5983,5922 ,0,0,0}, {18120,18124,18119 ,5978,5982,5977 ,0,0,0}, - {18113,18068,18124 ,5971,5914,5982 ,0,0,0}, {18130,18126,18125 ,5988,5984,5983 ,0,0,0}, - {18068,18073,18072 ,5914,5921,5920 ,0,0,0}, {18131,18089,18126 ,5989,5940,5984 ,0,0,0}, - {18073,18129,18074 ,5921,5987,5922 ,0,0,0}, {18096,18090,18132 ,5947,5941,5990 ,0,0,0}, - {18129,18130,18125 ,5987,5988,5983 ,0,0,0}, {18092,18089,18133 ,5943,5940,5991 ,0,0,0}, - {18131,18126,18130 ,5989,5984,5988 ,0,0,0}, {18133,18089,18131 ,5991,5940,5989 ,0,0,0}, - {18127,18092,18091 ,5985,5943,5942 ,0,0,0}, {18087,18089,18092 ,5938,5940,5943 ,0,0,0}, - {18075,18113,18124 ,5923,5971,5982 ,0,0,0}, {18066,18128,18082 ,5912,5986,5932 ,0,0,0}, - {18067,18134,18073 ,5913,5992,5921 ,0,0,0}, {18124,18068,18072 ,5982,5914,5920 ,0,0,0}, - {18067,18073,18068 ,5913,5921,5914 ,0,0,0}, {18134,18135,18129 ,5992,5993,5987 ,0,0,0}, - {18134,18129,18073 ,5992,5987,5921 ,0,0,0}, {18135,18136,18130 ,5993,5994,5988 ,0,0,0}, - {18135,18130,18129 ,5993,5988,5987 ,0,0,0}, {18136,18137,18131 ,5994,5995,5989 ,0,0,0}, - {18136,18131,18130 ,5994,5989,5988 ,0,0,0}, {18137,18132,18133 ,5995,5990,5991 ,0,0,0}, - {18133,18131,18137 ,5991,5989,5995 ,0,0,0}, {18132,18090,18133 ,5990,5941,5991 ,0,0,0}, - {18091,18090,18095 ,5942,5941,5946 ,0,0,0}, {18092,18133,18090 ,5943,5991,5941 ,0,0,0}, - {18128,18066,18113 ,5986,5912,5971 ,0,0,0}, {18068,18113,18066 ,5914,5971,5912 ,0,0,0}, - {18134,17293,17393 ,5992,5928,5996 ,0,0,0}, {17374,18067,18066 ,5927,5913,5912 ,0,0,0}, - {18135,17393,17598 ,5993,5996,5997 ,0,0,0}, {17293,18134,18067 ,5928,5992,5913 ,0,0,0}, - {18136,17598,17400 ,5994,5997,5998 ,0,0,0}, {17393,18135,18134 ,5996,5993,5992 ,0,0,0}, - {18137,17400,17411 ,5995,5998,5999 ,0,0,0}, {17598,18136,18135 ,5997,5994,5993 ,0,0,0}, - {18132,17411,17397 ,5990,5999,6000 ,0,0,0}, {17400,18137,18136 ,5998,5995,5994 ,0,0,0}, - {18096,17397,17403 ,5947,6000,5950 ,0,0,0}, {17411,18132,18137 ,5999,5990,5995 ,0,0,0}, - {17403,18094,18096 ,5950,5945,5947 ,0,0,0}, {17397,18096,18132 ,6000,5947,5990 ,0,0,0}, - {18138,18139,18140 ,6001,6002,6003 ,0,0,0}, {18141,16828,16825 ,6004,6005,6006 ,0,0,0}, - {18140,18142,18143 ,6003,6007,6008 ,0,0,0}, {18142,18144,18143 ,6007,6009,6008 ,0,0,0}, - {18145,18146,18147 ,6010,6011,6012 ,0,0,0}, {18147,18148,18145 ,6012,6013,6010 ,0,0,0}, - {18149,18150,18151 ,6014,6015,6016 ,0,0,0}, {18152,18146,16831 ,6017,6011,6018 ,0,0,0}, - {18152,18147,18146 ,6017,6012,6011 ,0,0,0}, {16831,16830,18152 ,6018,5020,6017 ,0,0,0}, - {18153,16825,16833 ,6019,6006,6020 ,0,0,0}, {18154,18155,18156 ,6021,6022,6023 ,0,0,0}, - {18149,17348,17364 ,6014,6024,6025 ,0,0,0}, {18157,18158,18159 ,6026,6027,6028 ,0,0,0}, - {18160,17351,18151 ,6029,6030,6016 ,0,0,0}, {18161,18162,18155 ,6031,6032,6022 ,0,0,0}, - {17348,18151,17351 ,6024,6016,6030 ,0,0,0}, {18163,18164,18165 ,6033,6034,6035 ,0,0,0}, - {18166,18143,18144 ,6036,6008,6009 ,0,0,0}, {18167,18168,18169 ,6037,6038,6039 ,0,0,0}, - {18170,18171,18140 ,6040,6041,6003 ,0,0,0}, {18172,18173,18174 ,6042,6043,6044 ,0,0,0}, - {18165,18175,18176 ,6035,6045,6046 ,0,0,0}, {18177,18175,18178 ,6047,6045,6048 ,0,0,0}, - {18179,18180,18181 ,6049,6050,6051 ,0,0,0}, {18138,16828,18141 ,6001,6005,6004 ,0,0,0}, - {18180,18167,18181 ,6050,6037,6051 ,0,0,0}, {18171,16817,18138 ,6041,6052,6001 ,0,0,0}, - {17367,17369,18179 ,6053,6054,6049 ,0,0,0}, {18182,16818,18171 ,6055,6056,6041 ,0,0,0}, - {16817,16828,18138 ,6052,6005,6001 ,0,0,0}, {18182,18183,16820 ,6055,6057,6058 ,0,0,0}, - {18171,16818,16817 ,6041,6056,6052 ,0,0,0}, {16814,18184,16815 ,6059,6060,6061 ,0,0,0}, - {16818,18182,16820 ,6056,6055,6058 ,0,0,0}, {16806,16815,18185 ,6062,6061,6063 ,0,0,0}, - {18184,16814,18183 ,6060,6059,6057 ,0,0,0}, {16833,18146,18153 ,6020,6011,6019 ,0,0,0}, - {18146,16833,16831 ,6011,6020,6018 ,0,0,0}, {18148,18186,18145 ,6013,6064,6010 ,0,0,0}, - {18153,18141,16825 ,6019,6004,6006 ,0,0,0}, {18187,18153,18145 ,6065,6019,6010 ,0,0,0}, - {18140,18139,18142 ,6003,6002,6007 ,0,0,0}, {18187,18139,18141 ,6065,6002,6004 ,0,0,0}, - {18182,18188,18183 ,6055,6066,6057 ,0,0,0}, {18141,18139,18138 ,6004,6002,6001 ,0,0,0}, - {18189,18190,18184 ,6067,6068,6060 ,0,0,0}, {18171,18138,18140 ,6041,6001,6003 ,0,0,0}, - {18188,18182,18170 ,6066,6055,6040 ,0,0,0}, {16815,18184,18185 ,6061,6060,6063 ,0,0,0}, - {16820,18183,16814 ,6058,6057,6059 ,0,0,0}, {18183,18188,18189 ,6057,6066,6067 ,0,0,0}, - {18191,18185,18184 ,6069,6063,6060 ,0,0,0}, {18146,18145,18153 ,6011,6010,6019 ,0,0,0}, - {18192,18186,18148 ,6070,6064,6013 ,0,0,0}, {18192,18161,18186 ,6070,6031,6064 ,0,0,0}, - {18153,18187,18141 ,6019,6065,6004 ,0,0,0}, {18186,18193,18187 ,6064,6071,6065 ,0,0,0}, - {18143,18178,18170 ,6008,6048,6040 ,0,0,0}, {18193,18142,18139 ,6071,6007,6002 ,0,0,0}, - {18165,18190,18189 ,6035,6068,6067 ,0,0,0}, {18164,18190,18165 ,6034,6068,6035 ,0,0,0}, - {18171,18170,18182 ,6041,6040,6055 ,0,0,0}, {18140,18143,18170 ,6003,6008,6040 ,0,0,0}, - {18183,18189,18184 ,6057,6067,6060 ,0,0,0}, {18178,18175,18188 ,6048,6045,6066 ,0,0,0}, - {18184,18190,18191 ,6060,6068,6069 ,0,0,0}, {18189,18175,18165 ,6067,6045,6035 ,0,0,0}, - {18194,18191,18190 ,6072,6069,6068 ,0,0,0}, {18145,18186,18187 ,6010,6064,6065 ,0,0,0}, - {18162,18161,18192 ,6032,6031,6070 ,0,0,0}, {18195,18154,18196 ,6073,6021,6074 ,0,0,0}, - {18187,18193,18139 ,6065,6071,6002 ,0,0,0}, {18197,18193,18161 ,6075,6071,6031 ,0,0,0}, - {18178,18143,18166 ,6048,6008,6036 ,0,0,0}, {18197,18144,18142 ,6075,6009,6007 ,0,0,0}, - {18198,18163,18176 ,6076,6033,6046 ,0,0,0}, {18188,18175,18189 ,6066,6045,6067 ,0,0,0}, - {18170,18178,18188 ,6040,6048,6066 ,0,0,0}, {18178,18166,18177 ,6048,6036,6047 ,0,0,0}, - {18164,18163,18199 ,6034,6033,6077 ,0,0,0}, {18177,18176,18175 ,6047,6046,6045 ,0,0,0}, - {18190,18164,18194 ,6068,6034,6072 ,0,0,0}, {18165,18176,18163 ,6035,6046,6033 ,0,0,0}, - {18200,18194,18164 ,6078,6072,6034 ,0,0,0}, {18186,18161,18193 ,6064,6031,6071 ,0,0,0}, - {18156,18155,18162 ,6023,6022,6032 ,0,0,0}, {18144,18201,18166 ,6009,6079,6036 ,0,0,0}, - {18193,18197,18142 ,6071,6075,6007 ,0,0,0}, {18202,18197,18155 ,6080,6075,6022 ,0,0,0}, - {18166,18203,18177 ,6036,6081,6047 ,0,0,0}, {18202,18201,18144 ,6080,6079,6009 ,0,0,0}, - {18177,18204,18176 ,6047,6082,6046 ,0,0,0}, {18203,18166,18201 ,6081,6036,6079 ,0,0,0}, - {18163,18173,18199 ,6033,6043,6077 ,0,0,0}, {18204,18177,18203 ,6082,6047,6081 ,0,0,0}, - {18205,18199,18172 ,6083,6077,6042 ,0,0,0}, {18198,18176,18204 ,6076,6046,6082 ,0,0,0}, - {18164,18199,18200 ,6034,6077,6078 ,0,0,0}, {18163,18198,18173 ,6033,6076,6043 ,0,0,0}, - {18205,18200,18199 ,6083,6078,6077 ,0,0,0}, {18161,18155,18197 ,6031,6022,6075 ,0,0,0}, - {18196,18154,18156 ,6074,6021,6023 ,0,0,0}, {18201,18158,18203 ,6079,6027,6081 ,0,0,0}, - {18197,18202,18144 ,6075,6080,6009 ,0,0,0}, {18154,18206,18202 ,6021,6084,6080 ,0,0,0}, - {18203,18157,18204 ,6081,6026,6082 ,0,0,0}, {18206,18158,18201 ,6084,6027,6079 ,0,0,0}, - {18204,18207,18198 ,6082,6085,6076 ,0,0,0}, {18158,18157,18203 ,6027,6026,6081 ,0,0,0}, - {18208,18173,18198 ,6086,6043,6076 ,0,0,0}, {18207,18204,18157 ,6085,6082,6026 ,0,0,0}, - {18209,18172,18169 ,6087,6042,6039 ,0,0,0}, {18198,18207,18208 ,6076,6085,6086 ,0,0,0}, - {18208,18174,18173 ,6086,6044,6043 ,0,0,0}, {18205,18172,18209 ,6083,6042,6087 ,0,0,0}, - {18199,18173,18172 ,6077,6043,6042 ,0,0,0}, {18155,18154,18202 ,6022,6021,6080 ,0,0,0}, - {18210,18195,18196 ,6088,6073,6074 ,0,0,0}, {18211,18207,18157 ,6089,6085,6026 ,0,0,0}, - {18202,18206,18201 ,6080,6084,6079 ,0,0,0}, {18195,18150,18206 ,6073,6015,6084 ,0,0,0}, - {18212,18208,18207 ,6090,6086,6085 ,0,0,0}, {18150,18159,18158 ,6015,6028,6027 ,0,0,0}, - {18213,18174,18208 ,6091,6044,6086 ,0,0,0}, {18159,18211,18157 ,6028,6089,6026 ,0,0,0}, - {18181,18167,18214 ,6051,6037,6092 ,0,0,0}, {18211,18212,18207 ,6089,6090,6085 ,0,0,0}, - {18169,18174,18215 ,6039,6044,6093 ,0,0,0}, {18213,18208,18212 ,6091,6086,6090 ,0,0,0}, - {18215,18174,18213 ,6093,6044,6091 ,0,0,0}, {18209,18169,18168 ,6087,6039,6038 ,0,0,0}, - {18172,18174,18169 ,6042,6044,6039 ,0,0,0}, {18154,18195,18206 ,6021,6073,6084 ,0,0,0}, - {18151,18210,18160 ,6016,6088,6029 ,0,0,0}, {18149,18216,18159 ,6014,6094,6028 ,0,0,0}, - {18206,18150,18158 ,6084,6015,6027 ,0,0,0}, {18149,18159,18150 ,6014,6028,6015 ,0,0,0}, - {18216,18217,18211 ,6094,6095,6089 ,0,0,0}, {18216,18211,18159 ,6094,6089,6028 ,0,0,0}, - {18217,18218,18212 ,6095,6096,6090 ,0,0,0}, {18217,18212,18211 ,6095,6090,6089 ,0,0,0}, - {18218,18219,18213 ,6096,6097,6091 ,0,0,0}, {18218,18213,18212 ,6096,6091,6090 ,0,0,0}, - {18219,18214,18215 ,6097,6092,6093 ,0,0,0}, {18215,18213,18219 ,6093,6091,6097 ,0,0,0}, - {18214,18167,18215 ,6092,6037,6093 ,0,0,0}, {18168,18167,18180 ,6038,6037,6050 ,0,0,0}, - {18169,18215,18167 ,6039,6093,6037 ,0,0,0}, {18210,18151,18195 ,6088,6016,6073 ,0,0,0}, - {18150,18195,18151 ,6015,6073,6016 ,0,0,0}, {18216,17364,17358 ,6094,6025,6098 ,0,0,0}, - {17348,18149,18151 ,6024,6014,6016 ,0,0,0}, {18217,17358,17362 ,6095,6098,6099 ,0,0,0}, - {17364,18216,18149 ,6025,6094,6014 ,0,0,0}, {18218,17362,17361 ,6096,6099,6100 ,0,0,0}, - {17358,18217,18216 ,6098,6095,6094 ,0,0,0}, {18219,17361,17371 ,6097,6100,6101 ,0,0,0}, - {17362,18218,18217 ,6099,6096,6095 ,0,0,0}, {18214,17371,17333 ,6092,6101,6102 ,0,0,0}, - {17361,18219,18218 ,6100,6097,6096 ,0,0,0}, {18181,17333,17367 ,6051,6102,6053 ,0,0,0}, - {17371,18214,18219 ,6101,6092,6097 ,0,0,0}, {17367,18179,18181 ,6053,6049,6051 ,0,0,0}, - {17333,18181,18214 ,6102,6051,6092 ,0,0,0}, {18220,18221,18222 ,730,6103,6103 ,0,0,0}, - {16450,16392,16389 ,6103,730,730 ,0,0,0}, {18223,18221,18224 ,6104,6103,6105 ,0,0,0}, - {18223,18225,18226 ,6104,6106,6103 ,0,0,0}, {18227,18222,18228 ,6107,6103,6108 ,0,0,0}, - {18225,18229,18230 ,6106,6109,6110 ,0,0,0}, {18231,18232,18228 ,6103,6111,6108 ,0,0,0}, - {18230,18233,18234 ,6110,6112,6110 ,0,0,0}, {18235,18231,18236 ,6111,6103,6103 ,0,0,0}, - {18234,18237,18238 ,6110,6113,6112 ,0,0,0}, {18238,18239,18240 ,6112,6109,6110 ,0,0,0}, - {18240,18241,18242 ,6110,6106,6114 ,0,0,0}, {18236,18243,18244 ,6103,730,6115 ,0,0,0}, - {18245,18242,18246 ,6105,6114,6104 ,0,0,0}, {18247,18248,18249 ,6111,730,6111 ,0,0,0}, - {18250,18242,18245 ,6111,6114,6105 ,0,0,0}, {18249,18251,18252 ,6111,6110,6114 ,0,0,0}, - {18253,18254,18255 ,730,6114,6108 ,0,0,0}, {16398,16463,16465 ,6110,6111,6110 ,0,0,0}, - {18256,18257,18258 ,6115,730,6111 ,0,0,0}, {16462,16397,16460 ,730,730,6114 ,0,0,0}, - {18259,18260,16381 ,6111,6110,6110 ,0,0,0}, {16393,16456,16395 ,730,6114,6103 ,0,0,0}, - {16378,16428,16425 ,730,730,6114 ,0,0,0}, {16392,16451,16454 ,730,730,6103 ,0,0,0}, - {16422,16374,16423 ,6114,730,730 ,0,0,0}, {16448,16450,16389 ,730,6103,730 ,0,0,0}, - {16372,16416,16369 ,6103,6103,730 ,0,0,0}, {16442,16444,16383 ,730,730,730 ,0,0,0}, - {16410,16407,16368 ,730,730,730 ,0,0,0}, {16436,16382,16362 ,730,730,730 ,0,0,0}, - {16366,16405,16404 ,730,730,730 ,0,0,0}, {16366,16367,16405 ,730,730,730 ,0,0,0}, - {16368,16407,16367 ,730,730,730 ,0,0,0}, {16436,16362,16400 ,730,730,730 ,0,0,0}, - {16362,16366,16401 ,730,730,730 ,0,0,0}, {16411,16369,16413 ,6103,730,730 ,0,0,0}, - {16368,16369,16411 ,730,730,6103 ,0,0,0}, {16382,16439,16383 ,730,730,730 ,0,0,0}, - {16382,16438,16439 ,730,730,730 ,0,0,0}, {16372,16374,16419 ,6103,730,6103 ,0,0,0}, - {16372,16419,16417 ,6103,6103,730 ,0,0,0}, {16389,16387,16445 ,730,730,6103 ,0,0,0}, - {16444,16387,16383 ,730,730,730 ,0,0,0}, {16378,16425,16375 ,730,6114,6103 ,0,0,0}, - {16374,16375,16423 ,730,6103,730 ,0,0,0}, {16392,16450,16451 ,730,6103,730 ,0,0,0}, - {16431,16429,16381 ,6110,6111,6110 ,0,0,0}, {16378,16381,16429 ,730,6110,6111 ,0,0,0}, - {16393,16454,16456 ,730,6103,6114 ,0,0,0}, {16392,16454,16393 ,730,6103,730 ,0,0,0}, - {18258,18261,18259 ,6111,6111,6111 ,0,0,0}, {18262,18259,18261 ,6114,6111,6111 ,0,0,0}, - {16456,16457,16395 ,6114,730,6103 ,0,0,0}, {16395,16460,16397 ,6103,6114,730 ,0,0,0}, - {16457,16460,16395 ,730,6114,6103 ,0,0,0}, {16462,16463,16397 ,730,6111,730 ,0,0,0}, - {18263,18255,18254 ,6107,6108,6114 ,0,0,0}, {16398,16397,16463 ,6110,730,6111 ,0,0,0}, - {16465,18251,16398 ,6110,6110,6110 ,0,0,0}, {18254,18250,18264 ,6114,6111,730 ,0,0,0}, - {18265,18266,18253 ,6111,6110,730 ,0,0,0}, {18266,18256,18258 ,6110,6115,6111 ,0,0,0}, - {18239,18241,18240 ,6109,6106,6110 ,0,0,0}, {16448,16389,16445 ,730,730,6103 ,0,0,0}, - {16445,16387,16444 ,6103,730,730 ,0,0,0}, {16442,16383,16439 ,730,730,730 ,0,0,0}, - {16438,16382,16436 ,730,730,730 ,0,0,0}, {16400,16362,16401 ,730,730,730 ,0,0,0}, - {16401,16366,16404 ,730,730,730 ,0,0,0}, {16405,16367,16407 ,730,730,730 ,0,0,0}, - {16410,16368,16411 ,730,730,6103 ,0,0,0}, {16413,16369,16416 ,730,730,6103 ,0,0,0}, - {16416,16372,16417 ,6103,6103,730 ,0,0,0}, {16419,16374,16422 ,6103,730,6114 ,0,0,0}, - {16423,16375,16425 ,730,6103,6114 ,0,0,0}, {16428,16378,16429 ,730,730,6111 ,0,0,0}, - {16431,16381,18260 ,6110,6110,6110 ,0,0,0}, {18260,18259,18262 ,6110,6111,6114 ,0,0,0}, - {18261,18258,18257 ,6111,6111,730 ,0,0,0}, {18256,18266,18265 ,6115,6110,6111 ,0,0,0}, - {18267,18253,18255 ,6111,730,6108 ,0,0,0}, {18253,18267,18265 ,730,6111,6111 ,0,0,0}, - {18263,18254,18264 ,6107,6114,730 ,0,0,0}, {18264,18250,18245 ,730,6111,6105 ,0,0,0}, - {18246,18242,18241 ,6104,6114,6106 ,0,0,0}, {18240,18234,18238 ,6110,6110,6112 ,0,0,0}, - {18237,18234,18233 ,6113,6110,6112 ,0,0,0}, {18233,18230,18229 ,6112,6110,6109 ,0,0,0}, - {18225,18230,18226 ,6106,6110,6103 ,0,0,0}, {18223,18226,18221 ,6104,6103,6103 ,0,0,0}, - {18220,18224,18221 ,730,6105,6103 ,0,0,0}, {18227,18220,18222 ,6107,730,6103 ,0,0,0}, - {18231,18228,18222 ,6103,6108,6103 ,0,0,0}, {18231,18235,18232 ,6103,6111,6111 ,0,0,0}, - {18236,18244,18235 ,6103,6115,6111 ,0,0,0}, {18236,18248,18243 ,6103,730,730 ,0,0,0}, - {18247,18249,18252 ,6111,6111,6114 ,0,0,0}, {18243,18248,18247 ,730,730,6111 ,0,0,0}, - {18251,18249,16398 ,6110,6111,6110 ,0,0,0}, {16434,16402,18268 ,6116,6117,6118 ,0,0,0}, - {16437,18269,18270 ,6119,6120,6121 ,0,0,0}, {18271,18272,16589 ,6122,6123,6124 ,0,0,0}, - {16679,16449,16676 ,6125,6126,6127 ,0,0,0}, {16605,16604,17016 ,6128,6129,6130 ,0,0,0}, - {16535,16538,16459 ,6131,6132,6122 ,0,0,0}, {18273,16540,18274 ,6133,6134,6135 ,0,0,0}, - {18275,18276,18277 ,6136,6137,6138 ,0,0,0}, {16406,16486,16489 ,6122,6120,6139 ,0,0,0}, - {18272,16574,16579 ,6123,6140,6141 ,0,0,0}, {18278,16657,16659 ,6139,6142,6143 ,0,0,0}, - {16929,18279,16930 ,6144,6145,6146 ,0,0,0}, {16987,18280,16980 ,6147,6148,6149 ,0,0,0}, - {16507,18281,16510 ,6150,6144,6150 ,0,0,0}, {18282,16565,16964 ,6151,6134,6152 ,0,0,0}, - {18283,16466,18284 ,6145,6153,6154 ,0,0,0}, {18282,16964,18285 ,6151,6152,6155 ,0,0,0}, - {18286,16964,16963 ,6156,6152,6157 ,0,0,0}, {18287,18288,18289 ,6158,6144,6159 ,0,0,0}, - {18290,18291,18292 ,6160,6161,6162 ,0,0,0}, {16963,18293,18286 ,6157,6163,6156 ,0,0,0}, - {18294,18295,16963 ,6158,6164,6157 ,0,0,0}, {16969,18296,18294 ,6155,6165,6158 ,0,0,0}, - {18297,16974,18298 ,6166,6167,6116 ,0,0,0}, {16969,18294,16963 ,6155,6158,6157 ,0,0,0}, - {16981,18298,16974 ,6168,6116,6167 ,0,0,0}, {18289,18277,18276 ,6159,6138,6137 ,0,0,0}, - {18299,18300,18301 ,6122,6169,6170 ,0,0,0}, {18302,16969,16967 ,6171,6155,6172 ,0,0,0}, - {16967,18303,18302 ,6172,6118,6171 ,0,0,0}, {18304,18305,16977 ,6173,6174,6175 ,0,0,0}, - {16967,16966,18303 ,6172,6176,6118 ,0,0,0}, {16966,18305,18306 ,6176,6174,6177 ,0,0,0}, - {18307,16630,16629 ,6120,6146,6154 ,0,0,0}, {16966,16977,18305 ,6176,6175,6174 ,0,0,0}, - {18304,16977,16972 ,6173,6175,6178 ,0,0,0}, {18284,16468,18308 ,6154,6120,6145 ,0,0,0}, - {18309,18310,18311 ,6177,6179,6180 ,0,0,0}, {18312,18304,16972 ,6181,6173,6178 ,0,0,0}, - {18310,18313,18299 ,6179,6182,6122 ,0,0,0}, {18287,18314,18288 ,6158,6183,6144 ,0,0,0}, - {18301,18300,18315 ,6170,6169,6184 ,0,0,0}, {16981,16980,18316 ,6168,6149,6185 ,0,0,0}, - {18317,16414,18318 ,6186,6187,6119 ,0,0,0}, {16510,18319,16511 ,6150,6144,6188 ,0,0,0}, - {18320,16932,18321 ,6145,6144,6150 ,0,0,0}, {18314,16697,18322 ,6183,6189,6190 ,0,0,0}, - {16927,18323,18324 ,6154,6120,6127 ,0,0,0}, {16664,16663,17027 ,6191,6142,6192 ,0,0,0}, - {18269,16437,16435 ,6120,6119,6122 ,0,0,0}, {17021,16595,16594 ,6193,6194,6195 ,0,0,0}, - {16666,16922,16916 ,6196,6186,6197 ,0,0,0}, {16542,16464,16461 ,6196,6134,6138 ,0,0,0}, - {18272,16693,16688 ,6123,6198,6199 ,0,0,0}, {16459,16538,16461 ,6122,6132,6138 ,0,0,0}, - {16534,16535,16458 ,6157,6131,6137 ,0,0,0}, {16534,16458,16455 ,6157,6137,6131 ,0,0,0}, - {16453,16532,16455 ,6200,6143,6131 ,0,0,0}, {16441,16652,16670 ,6117,6201,6202 ,0,0,0}, - {18275,18325,18326 ,6136,6200,6156 ,0,0,0}, {16526,18327,16521 ,6118,6203,6132 ,0,0,0}, - {18328,16528,16530 ,6133,6204,6133 ,0,0,0}, {16458,16535,16459 ,6137,6131,6122 ,0,0,0}, - {16538,16542,16461 ,6132,6196,6138 ,0,0,0}, {16528,18329,16523 ,6204,6153,6201 ,0,0,0}, - {18330,16521,18327 ,6201,6132,6203 ,0,0,0}, {16443,16441,16670 ,6187,6117,6202 ,0,0,0}, - {16455,16532,16534 ,6131,6143,6157 ,0,0,0}, {16517,16947,16949 ,6132,6144,6205 ,0,0,0}, - {16530,16682,18328 ,6133,6201,6133 ,0,0,0}, {16453,16682,16532 ,6200,6201,6143 ,0,0,0}, - {16954,16516,16949 ,6206,6116,6205 ,0,0,0}, {16548,16954,16956 ,6207,6206,6204 ,0,0,0}, - {18331,18332,16522 ,6132,6119,6207 ,0,0,0}, {16947,16517,16521 ,6144,6132,6132 ,0,0,0}, - {16516,16954,16546 ,6116,6206,6121 ,0,0,0}, {16516,16517,16949 ,6116,6132,6205 ,0,0,0}, - {16957,16552,16956 ,6208,6207,6204 ,0,0,0}, {16548,16546,16954 ,6207,6121,6206 ,0,0,0}, - {16549,16548,16956 ,6209,6207,6204 ,0,0,0}, {16957,16959,16555 ,6208,6142,6196 ,0,0,0}, - {16552,16549,16956 ,6207,6209,6204 ,0,0,0}, {16554,16552,16957 ,6133,6207,6208 ,0,0,0}, - {16957,16555,16554 ,6208,6196,6133 ,0,0,0}, {16959,16558,16555 ,6142,6134,6196 ,0,0,0}, - {16962,16560,16959 ,6148,6131,6142 ,0,0,0}, {16959,16560,16558 ,6142,6131,6134 ,0,0,0}, - {16962,16561,16560 ,6148,6205,6131 ,0,0,0}, {16561,16962,16564 ,6205,6148,6204 ,0,0,0}, - {16962,16565,16564 ,6148,6134,6204 ,0,0,0}, {18286,18285,16964 ,6156,6155,6152 ,0,0,0}, - {18302,18296,16969 ,6171,6165,6155 ,0,0,0}, {18295,18293,16963 ,6164,6163,6157 ,0,0,0}, - {18303,16966,18306 ,6118,6176,6177 ,0,0,0}, {18297,18333,16972 ,6166,6210,6178 ,0,0,0}, - {18334,16986,18335 ,6157,6190,6211 ,0,0,0}, {18312,18336,18337 ,6181,6212,6182 ,0,0,0}, - {16578,18272,16579 ,6174,6123,6141 ,0,0,0}, {18338,18339,18272 ,6213,6214,6123 ,0,0,0}, - {17024,17021,16568 ,6215,6193,6216 ,0,0,0}, {16707,16709,16569 ,6217,6218,6219 ,0,0,0}, - {16594,16568,17021 ,6195,6216,6193 ,0,0,0}, {16599,16598,17013 ,6220,6221,6222 ,0,0,0}, - {16595,17020,16598 ,6194,6223,6221 ,0,0,0}, {17016,16604,16601 ,6130,6129,6181 ,0,0,0}, - {16601,17013,17016 ,6181,6222,6130 ,0,0,0}, {16610,17017,16611 ,6224,6225,6226 ,0,0,0}, - {16607,17016,17017 ,6227,6130,6225 ,0,0,0}, {16687,18272,16688 ,6212,6123,6199 ,0,0,0}, - {16618,18340,16619 ,6203,6228,6201 ,0,0,0}, {16709,16570,16569 ,6218,6229,6219 ,0,0,0}, - {18341,18342,18343 ,6230,6231,6232 ,0,0,0}, {16709,16710,16989 ,6218,6200,6233 ,0,0,0}, - {16610,16607,17017 ,6224,6227,6225 ,0,0,0}, {17017,16613,16611 ,6225,6234,6226 ,0,0,0}, - {16607,16605,17016 ,6227,6128,6130 ,0,0,0}, {16687,16686,18272 ,6212,6235,6123 ,0,0,0}, - {16599,17013,16601 ,6220,6222,6181 ,0,0,0}, {17020,17013,16598 ,6223,6222,6221 ,0,0,0}, - {17021,17020,16595 ,6193,6223,6194 ,0,0,0}, {16570,17024,16568 ,6229,6215,6216 ,0,0,0}, - {17024,16570,16989 ,6215,6229,6233 ,0,0,0}, {18339,16694,18272 ,6214,6236,6123 ,0,0,0}, - {16697,16694,18322 ,6189,6236,6190 ,0,0,0}, {18272,18344,18345 ,6123,6170,6214 ,0,0,0}, - {16586,18272,16582 ,6237,6123,6167 ,0,0,0}, {18271,18344,18272 ,6122,6170,6123 ,0,0,0}, - {16588,18346,18347 ,6238,6180,6179 ,0,0,0}, {18348,16625,18349 ,6197,6165,6196 ,0,0,0}, - {18350,16430,18351 ,6131,6122,6132 ,0,0,0}, {16593,18352,18346 ,6239,6240,6180 ,0,0,0}, - {18353,18354,18292 ,6171,6152,6162 ,0,0,0}, {16421,18355,16420 ,6204,6208,6126 ,0,0,0}, - {18356,18315,18357 ,6241,6184,6136 ,0,0,0}, {18358,16636,16639 ,6179,6179,6202 ,0,0,0}, - {16648,18355,16647 ,6127,6208,6242 ,0,0,0}, {16773,18359,18360 ,6156,6200,6136 ,0,0,0}, - {16776,16778,18361 ,6137,6135,6133 ,0,0,0}, {18362,18363,18364 ,6207,6133,6208 ,0,0,0}, - {16734,16767,16770 ,6196,6158,6159 ,0,0,0}, {16757,16727,16722 ,6181,6243,6139 ,0,0,0}, - {16741,16743,18365 ,6244,6245,6246 ,0,0,0}, {16720,18366,18367 ,6247,6190,6136 ,0,0,0}, - {18368,18342,18369 ,6248,6231,6170 ,0,0,0}, {18370,18371,16749 ,6152,6249,6250 ,0,0,0}, - {18372,18342,18368 ,6251,6231,6248 ,0,0,0}, {18373,18374,18375 ,6252,6253,6254 ,0,0,0}, - {18374,18341,18375 ,6253,6230,6254 ,0,0,0}, {18376,18377,18378 ,6255,6256,6257 ,0,0,0}, - {18379,18380,18381 ,6258,6259,6260 ,0,0,0}, {18374,18373,18381 ,6253,6252,6260 ,0,0,0}, - {18381,18380,18374 ,6260,6259,6253 ,0,0,0}, {18380,18379,18382 ,6259,6258,6261 ,0,0,0}, - {18383,18378,18384 ,6262,6257,6263 ,0,0,0}, {18382,18384,18380 ,6261,6263,6259 ,0,0,0}, - {18378,18377,18384 ,6257,6256,6263 ,0,0,0}, {18385,18386,18377 ,6264,6265,6256 ,0,0,0}, - {18382,18383,18384 ,6261,6262,6263 ,0,0,0}, {18376,18385,18377 ,6255,6264,6256 ,0,0,0}, - {18375,18341,18343 ,6254,6230,6232 ,0,0,0}, {18387,18388,16750 ,6138,6134,6266 ,0,0,0}, - {18343,18342,18372 ,6232,6231,6251 ,0,0,0}, {18369,18388,18387 ,6170,6134,6138 ,0,0,0}, - {18389,16743,16744 ,6267,6245,6268 ,0,0,0}, {16721,18367,18390 ,6167,6136,6199 ,0,0,0}, - {16738,16741,18366 ,6235,6244,6190 ,0,0,0}, {18391,16792,18392 ,6197,6164,6191 ,0,0,0}, - {16786,16785,18393 ,6171,6118,6269 ,0,0,0}, {16731,16728,16761 ,6270,6270,6174 ,0,0,0}, - {18391,16794,16792 ,6197,6163,6164 ,0,0,0}, {16766,16731,16761 ,6127,6270,6174 ,0,0,0}, - {18394,18326,18325 ,6137,6156,6200 ,0,0,0}, {18395,18396,18397 ,6213,6271,6169 ,0,0,0}, - {16755,16757,18398 ,6173,6181,6272 ,0,0,0}, {16797,16794,18391 ,6156,6163,6197 ,0,0,0}, - {18387,18399,18369 ,6138,6273,6170 ,0,0,0}, {18400,16798,16797 ,6201,6155,6156 ,0,0,0}, - {18400,16802,16800 ,6201,6134,6151 ,0,0,0}, {18401,18355,18402 ,6214,6208,6133 ,0,0,0}, - {18401,16415,16418 ,6214,6208,6117 ,0,0,0}, {18403,18404,18405 ,6190,6214,6199 ,0,0,0}, - {16792,16791,18392 ,6164,6158,6191 ,0,0,0}, {16786,18393,18392 ,6171,6269,6191 ,0,0,0}, - {18406,18407,18408 ,6274,6118,6183 ,0,0,0}, {18409,18410,18411 ,6149,6275,6214 ,0,0,0}, - {18412,18368,18399 ,6243,6248,6273 ,0,0,0}, {18412,18399,18413 ,6243,6273,6276 ,0,0,0}, - {18411,18301,18315 ,6214,6170,6184 ,0,0,0}, {18299,18313,18300 ,6122,6182,6169 ,0,0,0}, - {18311,18414,18309 ,6180,6244,6177 ,0,0,0}, {18310,18309,18313 ,6179,6177,6182 ,0,0,0}, - {18287,18415,16698 ,6158,6127,6249 ,0,0,0}, {16593,18414,18352 ,6239,6244,6240 ,0,0,0}, - {18311,18352,18414 ,6180,6240,6244 ,0,0,0}, {16593,18346,16590 ,6239,6180,6277 ,0,0,0}, - {18287,16698,16697 ,6158,6249,6189 ,0,0,0}, {16589,16588,18347 ,6124,6238,6179 ,0,0,0}, - {16588,16590,18346 ,6238,6277,6180 ,0,0,0}, {16716,16984,16992 ,6278,6279,6280 ,0,0,0}, - {16984,18335,16986 ,6279,6211,6190 ,0,0,0}, {18271,16589,18347 ,6122,6124,6179 ,0,0,0}, - {18416,18272,18345 ,6275,6123,6214 ,0,0,0}, {16589,18272,16586 ,6124,6123,6237 ,0,0,0}, - {16990,16713,16992 ,6281,6282,6280 ,0,0,0}, {16700,18415,18417 ,6283,6127,6174 ,0,0,0}, - {16698,18415,16700 ,6249,6127,6283 ,0,0,0}, {18288,18277,18289 ,6144,6138,6159 ,0,0,0}, - {18275,18326,18276 ,6136,6156,6137 ,0,0,0}, {18394,18273,18274 ,6137,6133,6135 ,0,0,0}, - {18273,18394,18325 ,6133,6137,6200 ,0,0,0}, {18273,16464,16540 ,6133,6134,6134 ,0,0,0}, - {16947,18330,16945 ,6144,6201,6209 ,0,0,0}, {16540,16464,16542 ,6134,6134,6196 ,0,0,0}, - {16682,16453,16681 ,6201,6200,6158 ,0,0,0}, {16446,16443,16673 ,6208,6187,6284 ,0,0,0}, - {16679,16681,16452 ,6125,6158,6204 ,0,0,0}, {18418,16942,16943 ,6191,6165,6179 ,0,0,0}, - {16940,18419,16917 ,6142,6172,6197 ,0,0,0}, {16664,16922,16666 ,6191,6186,6196 ,0,0,0}, - {17027,16922,16664 ,6192,6186,6191 ,0,0,0}, {17027,16663,16925 ,6192,6142,6285 ,0,0,0}, - {18420,16660,16657 ,6192,6228,6142 ,0,0,0}, {16486,16406,16408 ,6120,6122,6119 ,0,0,0}, - {16409,16484,16408 ,6171,6202,6119 ,0,0,0}, {18421,16937,16935 ,6150,6144,6150 ,0,0,0}, - {18281,16507,16505 ,6144,6150,6187 ,0,0,0}, {16513,16511,18319 ,6150,6188,6144 ,0,0,0}, - {16505,18422,18281 ,6187,6144,6144 ,0,0,0}, {16479,18317,18423 ,6165,6186,6286 ,0,0,0}, - {18422,16501,18424 ,6144,6192,6144 ,0,0,0}, {16499,16498,18424 ,6145,6145,6144 ,0,0,0}, - {18425,18426,18355 ,6143,6133,6208 ,0,0,0}, {18307,18427,16630 ,6120,6176,6146 ,0,0,0}, - {18350,16427,16430 ,6131,6137,6122 ,0,0,0}, {16433,16778,16777 ,6134,6135,6134 ,0,0,0}, - {18349,16620,16619 ,6196,6139,6201 ,0,0,0}, {18348,16626,16623 ,6197,6286,6165 ,0,0,0}, - {18358,16639,18428 ,6179,6202,6139 ,0,0,0}, {16642,18428,16641 ,6203,6139,6228 ,0,0,0}, - {16776,18361,18359 ,6137,6133,6200 ,0,0,0}, {18359,16773,16776 ,6200,6156,6137 ,0,0,0}, - {18429,18430,18431 ,6209,6207,6166 ,0,0,0}, {18432,16771,18360 ,6138,6137,6136 ,0,0,0}, - {18427,16632,16630 ,6176,6191,6146 ,0,0,0}, {18433,18434,18435 ,6186,6228,6287 ,0,0,0}, - {16626,18348,18307 ,6286,6197,6120 ,0,0,0}, {16626,18307,16629 ,6286,6120,6154 ,0,0,0}, - {16625,18348,16623 ,6165,6197,6165 ,0,0,0}, {16620,18349,16625 ,6139,6196,6165 ,0,0,0}, - {18340,16618,16636 ,6228,6203,6179 ,0,0,0}, {18340,18349,16619 ,6228,6196,6201 ,0,0,0}, - {16424,18355,16421 ,6200,6208,6204 ,0,0,0}, {18358,18340,16636 ,6179,6228,6179 ,0,0,0}, - {18436,18428,16642 ,6133,6139,6203 ,0,0,0}, {16641,18428,16639 ,6228,6139,6202 ,0,0,0}, - {16424,16426,18355 ,6200,6131,6208 ,0,0,0}, {18355,18437,16647 ,6208,6207,6242 ,0,0,0}, - {16432,16777,18438 ,6138,6134,6196 ,0,0,0}, {18355,16426,16427 ,6208,6131,6137 ,0,0,0}, - {18355,16418,16420 ,6208,6117,6126 ,0,0,0}, {16415,18401,18318 ,6208,6214,6119 ,0,0,0}, - {18355,18401,16418 ,6208,6214,6117 ,0,0,0}, {18283,16495,16466 ,6145,6120,6153 ,0,0,0}, - {18439,18440,16470 ,6201,6121,6288 ,0,0,0}, {16414,16415,18318 ,6187,6208,6119 ,0,0,0}, - {18441,16472,16474 ,6139,6192,6131 ,0,0,0}, {18308,16470,18440 ,6145,6288,6121 ,0,0,0}, - {16505,16504,18422 ,6187,6145,6144 ,0,0,0}, {16504,16501,18422 ,6145,6192,6144 ,0,0,0}, - {16498,16495,18283 ,6145,6120,6145 ,0,0,0}, {18440,18442,18308 ,6121,6289,6145 ,0,0,0}, - {18433,18442,18443 ,6186,6289,6191 ,0,0,0}, {18440,18443,18442 ,6121,6191,6289 ,0,0,0}, - {18433,18435,18427 ,6186,6287,6176 ,0,0,0}, {18433,18443,18434 ,6186,6191,6228 ,0,0,0}, - {16632,18427,18435 ,6191,6176,6287 ,0,0,0}, {18444,16435,16434 ,6202,6122,6116 ,0,0,0}, - {18445,18446,16915 ,6165,6191,6187 ,0,0,0}, {18447,16943,16945 ,6126,6179,6209 ,0,0,0}, - {18448,18323,16925 ,6154,6120,6285 ,0,0,0}, {16652,16441,18449 ,6201,6117,6120 ,0,0,0}, - {18450,18451,16654 ,6197,6201,6207 ,0,0,0}, {18270,18449,16440 ,6121,6120,6171 ,0,0,0}, - {16403,16491,16490 ,6116,6120,6201 ,0,0,0}, {18270,16440,16437 ,6121,6171,6119 ,0,0,0}, - {16443,16670,16673 ,6187,6202,6284 ,0,0,0}, {16673,16675,16446 ,6284,6140,6208 ,0,0,0}, - {16447,16675,16676 ,6117,6140,6127 ,0,0,0}, {16447,16676,16449 ,6117,6127,6126 ,0,0,0}, - {16449,16679,16452 ,6126,6125,6204 ,0,0,0}, {16453,16452,16681 ,6200,6204,6158 ,0,0,0}, - {16530,16532,16682 ,6133,6143,6201 ,0,0,0}, {16526,16522,18332 ,6118,6207,6119 ,0,0,0}, - {16528,18328,18329 ,6204,6133,6153 ,0,0,0}, {18331,16522,16523 ,6132,6207,6201 ,0,0,0}, - {18331,16523,18329 ,6132,6201,6153 ,0,0,0}, {18327,16526,18332 ,6203,6118,6119 ,0,0,0}, - {16521,18330,16947 ,6132,6201,6144 ,0,0,0}, {18447,16945,18330 ,6126,6209,6201 ,0,0,0}, - {18452,16942,18418 ,6242,6165,6191 ,0,0,0}, {18418,16943,18447 ,6191,6179,6126 ,0,0,0}, - {16940,18452,18453 ,6142,6242,6197 ,0,0,0}, {18452,16940,16942 ,6242,6142,6165 ,0,0,0}, - {18419,18445,16917 ,6172,6165,6197 ,0,0,0}, {18453,18419,16940 ,6197,6172,6142 ,0,0,0}, - {16915,18446,16916 ,6187,6191,6197 ,0,0,0}, {16917,18445,16915 ,6197,6165,6187 ,0,0,0}, - {16666,16916,18454 ,6196,6197,6202 ,0,0,0}, {16916,18446,18454 ,6197,6191,6202 ,0,0,0}, - {18314,18287,16697 ,6183,6158,6189 ,0,0,0}, {18417,18455,18456 ,6174,6118,6273 ,0,0,0}, - {16691,18272,16694 ,6290,6123,6236 ,0,0,0}, {18339,18322,16694 ,6214,6190,6236 ,0,0,0}, - {16691,16693,18272 ,6290,6198,6123 ,0,0,0}, {16583,18272,16578 ,6152,6123,6174 ,0,0,0}, - {16704,16707,16575 ,6124,6217,6291 ,0,0,0}, {16686,16574,18272 ,6235,6140,6123 ,0,0,0}, - {16704,16575,16574 ,6124,6291,6140 ,0,0,0}, {16704,16574,16686 ,6124,6140,6235 ,0,0,0}, - {16707,16569,16575 ,6217,6219,6291 ,0,0,0}, {16709,16989,16570 ,6218,6233,6229 ,0,0,0}, - {16710,16713,16990 ,6200,6282,6281 ,0,0,0}, {16710,16990,16989 ,6200,6281,6233 ,0,0,0}, - {16715,16716,16992 ,6269,6278,6280 ,0,0,0}, {16713,16715,16992 ,6282,6269,6280 ,0,0,0}, - {16984,16716,18457 ,6279,6278,6292 ,0,0,0}, {18457,18335,16984 ,6292,6211,6279 ,0,0,0}, - {18458,16986,18334 ,6293,6190,6157 ,0,0,0}, {16987,18458,18459 ,6147,6293,6266 ,0,0,0}, - {18458,16987,16986 ,6293,6147,6190 ,0,0,0}, {18280,18460,16980 ,6148,6273,6149 ,0,0,0}, - {18459,18280,16987 ,6266,6148,6147 ,0,0,0}, {18316,18461,16981 ,6185,6294,6168 ,0,0,0}, - {18460,18316,16980 ,6273,6185,6149 ,0,0,0}, {16972,16974,18297 ,6178,6167,6166 ,0,0,0}, - {18461,18298,16981 ,6294,6116,6168 ,0,0,0}, {18333,18312,16972 ,6210,6181,6178 ,0,0,0}, - {18337,18336,18455 ,6182,6212,6118 ,0,0,0}, {18333,18336,18312 ,6210,6212,6181 ,0,0,0}, - {18417,18456,16700 ,6174,6273,6283 ,0,0,0}, {18455,18336,18456 ,6118,6212,6273 ,0,0,0}, - {16722,18390,18398 ,6139,6199,6272 ,0,0,0}, {16753,18462,16782 ,6174,6295,6177 ,0,0,0}, - {18353,18412,18413 ,6171,6243,6276 ,0,0,0}, {16788,16786,18392 ,6165,6171,6191 ,0,0,0}, - {18462,16753,18463 ,6295,6174,6162 ,0,0,0}, {18398,16757,16722 ,6272,6181,6139 ,0,0,0}, - {16721,18390,16722 ,6167,6199,6139 ,0,0,0}, {16720,18367,16721 ,6247,6136,6167 ,0,0,0}, - {16738,18366,16720 ,6235,6190,6247 ,0,0,0}, {18365,18366,16741 ,6246,6190,6244 ,0,0,0}, - {18389,18365,16743 ,6267,6246,6245 ,0,0,0}, {16744,16747,18371 ,6268,6185,6249 ,0,0,0}, - {18371,18389,16744 ,6249,6267,6268 ,0,0,0}, {16750,18370,16749 ,6266,6152,6250 ,0,0,0}, - {16749,18371,16747 ,6250,6249,6185 ,0,0,0}, {16750,18388,18370 ,6266,6134,6152 ,0,0,0}, - {18368,18369,18399 ,6248,6170,6273 ,0,0,0}, {18356,18464,18315 ,6241,6296,6184 ,0,0,0}, - {18353,18413,18354 ,6171,6276,6152 ,0,0,0}, {18356,18357,18465 ,6241,6136,6200 ,0,0,0}, - {18465,18291,18290 ,6200,6161,6160 ,0,0,0}, {18290,18292,18354 ,6160,6162,6152 ,0,0,0}, - {18465,18357,18291 ,6200,6136,6161 ,0,0,0}, {18464,18409,18411 ,6296,6149,6214 ,0,0,0}, - {18411,18315,18464 ,6214,6184,6296 ,0,0,0}, {18396,18410,18409 ,6271,6275,6149 ,0,0,0}, - {18397,18404,18395 ,6169,6214,6213 ,0,0,0}, {18396,18395,18410 ,6271,6213,6275 ,0,0,0}, - {18405,18406,18403 ,6199,6274,6190 ,0,0,0}, {18397,18405,18404 ,6169,6199,6214 ,0,0,0}, - {18408,18407,18466 ,6183,6118,6144 ,0,0,0}, {18403,18406,18408 ,6190,6274,6183 ,0,0,0}, - {16734,18466,18407 ,6196,6144,6118 ,0,0,0}, {16409,16412,16483 ,6171,6117,6139 ,0,0,0}, - {18319,16515,16513 ,6144,6150,6150 ,0,0,0}, {18319,16510,18281 ,6144,6150,6144 ,0,0,0}, - {16480,16483,16412 ,6197,6139,6117 ,0,0,0}, {16414,18317,16480 ,6187,6186,6197 ,0,0,0}, - {18283,18424,16498 ,6145,6144,6145 ,0,0,0}, {16501,16499,18424 ,6192,6145,6144 ,0,0,0}, - {16468,16470,18308 ,6120,6288,6145 ,0,0,0}, {16466,16468,18284 ,6153,6120,6154 ,0,0,0}, - {16474,16479,18423 ,6131,6165,6286 ,0,0,0}, {16476,18467,18439 ,6144,6242,6201 ,0,0,0}, - {18439,16470,16476 ,6201,6288,6144 ,0,0,0}, {18423,18441,16474 ,6286,6139,6131 ,0,0,0}, - {16472,18441,18467 ,6192,6139,6242 ,0,0,0}, {16472,18467,16476 ,6192,6242,6144 ,0,0,0}, - {16479,16480,18317 ,6165,6197,6186 ,0,0,0}, {16412,16414,16480 ,6117,6187,6197 ,0,0,0}, - {16409,16483,16484 ,6171,6139,6202 ,0,0,0}, {16408,16484,16486 ,6119,6202,6120 ,0,0,0}, - {16491,16403,16489 ,6120,6116,6139 ,0,0,0}, {16406,16489,16403 ,6122,6139,6116 ,0,0,0}, - {16403,16490,16402 ,6116,6201,6117 ,0,0,0}, {16435,18444,18269 ,6122,6202,6120 ,0,0,0}, - {16402,16490,18268 ,6117,6201,6118 ,0,0,0}, {18444,16434,18268 ,6202,6116,6118 ,0,0,0}, - {18449,16441,16440 ,6120,6117,6171 ,0,0,0}, {18450,16653,18449 ,6197,6197,6120 ,0,0,0}, - {16652,18449,16653 ,6201,6120,6197 ,0,0,0}, {16660,18468,16663 ,6228,6145,6142 ,0,0,0}, - {16659,16654,18451 ,6143,6207,6201 ,0,0,0}, {16654,16653,18450 ,6207,6197,6197 ,0,0,0}, - {18420,16657,18278 ,6192,6142,6139 ,0,0,0}, {18278,16659,18451 ,6139,6143,6201 ,0,0,0}, - {16660,18420,18468 ,6228,6192,6145 ,0,0,0}, {18448,16925,16663 ,6154,6285,6142 ,0,0,0}, - {18448,16663,18468 ,6154,6142,6145 ,0,0,0}, {18323,16927,16925 ,6120,6154,6285 ,0,0,0}, - {16929,18324,18469 ,6144,6127,6187 ,0,0,0}, {18324,16929,16927 ,6127,6144,6154 ,0,0,0}, - {18469,18279,16929 ,6187,6145,6144 ,0,0,0}, {16930,18470,18321 ,6146,6145,6150 ,0,0,0}, - {18279,18470,16930 ,6145,6145,6146 ,0,0,0}, {16930,18321,16932 ,6146,6150,6144 ,0,0,0}, - {16935,16932,18471 ,6150,6144,6146 ,0,0,0}, {18320,18471,16932 ,6145,6146,6144 ,0,0,0}, - {16935,18472,18421 ,6150,6144,6150 ,0,0,0}, {16935,18471,18472 ,6150,6146,6144 ,0,0,0}, - {18473,16937,18474 ,6150,6144,6150 ,0,0,0}, {16937,18421,18474 ,6144,6150,6150 ,0,0,0}, - {16515,16937,18473 ,6150,6144,6150 ,0,0,0}, {18475,18476,18477 ,6131,6203,6207 ,0,0,0}, - {18432,18466,16770 ,6138,6144,6159 ,0,0,0}, {18400,16797,18391 ,6201,6156,6197 ,0,0,0}, - {18400,16800,16798 ,6201,6151,6155 ,0,0,0}, {18466,16734,16770 ,6144,6196,6159 ,0,0,0}, - {16755,18463,16753 ,6173,6162,6174 ,0,0,0}, {16782,18462,16785 ,6177,6295,6118 ,0,0,0}, - {16791,16788,18392 ,6158,6165,6191 ,0,0,0}, {18462,18393,16785 ,6295,6269,6118 ,0,0,0}, - {18463,16755,18398 ,6162,6173,6272 ,0,0,0}, {16757,16763,16727 ,6181,6182,6243 ,0,0,0}, - {16766,16767,16732 ,6127,6158,6297 ,0,0,0}, {16759,16725,16763 ,6118,6155,6182 ,0,0,0}, - {16727,16763,16725 ,6243,6182,6155 ,0,0,0}, {16759,16761,16728 ,6118,6174,6270 ,0,0,0}, - {16728,16725,16759 ,6270,6155,6118 ,0,0,0}, {16731,16766,16732 ,6270,6127,6297 ,0,0,0}, - {16734,16732,16767 ,6196,6297,6158 ,0,0,0}, {18432,16770,16771 ,6138,6159,6137 ,0,0,0}, - {18360,16771,16773 ,6136,6137,6156 ,0,0,0}, {18478,18479,18480 ,6205,6132,6116 ,0,0,0}, - {18479,18436,18481 ,6132,6133,6132 ,0,0,0}, {16427,18350,18355 ,6137,6131,6208 ,0,0,0}, - {18361,16778,16433 ,6133,6135,6134 ,0,0,0}, {16432,18438,18351 ,6138,6196,6132 ,0,0,0}, - {16432,16433,16777 ,6138,6134,6134 ,0,0,0}, {18351,16430,16432 ,6132,6122,6138 ,0,0,0}, - {18355,18350,18482 ,6208,6131,6157 ,0,0,0}, {18482,18425,18355 ,6157,6143,6208 ,0,0,0}, - {18481,16645,18483 ,6132,6172,6118 ,0,0,0}, {18484,18485,18355 ,6204,6201,6208 ,0,0,0}, - {18355,18486,18487 ,6208,6172,6214 ,0,0,0}, {18355,18485,18437 ,6208,6201,6207 ,0,0,0}, - {18486,18355,16648 ,6172,6208,6127 ,0,0,0}, {16647,18437,16645 ,6242,6207,6172 ,0,0,0}, - {18483,16645,18437 ,6118,6172,6207 ,0,0,0}, {18481,18436,16642 ,6132,6133,6203 ,0,0,0}, - {16642,16645,18481 ,6203,6172,6132 ,0,0,0}, {18479,18478,18436 ,6132,6205,6133 ,0,0,0}, - {18429,18480,18488 ,6209,6116,6121 ,0,0,0}, {18480,18429,18478 ,6116,6209,6205 ,0,0,0}, - {18488,18430,18429 ,6121,6207,6209 ,0,0,0}, {18431,18489,18362 ,6166,6209,6207 ,0,0,0}, - {18430,18489,18431 ,6207,6209,6166 ,0,0,0}, {18431,18362,18364 ,6166,6207,6208 ,0,0,0}, - {18477,18364,18490 ,6207,6208,6196 ,0,0,0}, {18363,18490,18364 ,6133,6196,6208 ,0,0,0}, - {18477,18491,18475 ,6207,6134,6131 ,0,0,0}, {18477,18490,18491 ,6207,6196,6134 ,0,0,0}, - {18492,18476,18493 ,6204,6203,6205 ,0,0,0}, {18476,18475,18493 ,6203,6131,6205 ,0,0,0}, - {16802,18476,18492 ,6134,6203,6204 ,0,0,0}, {18272,16583,16582 ,6123,6152,6167 ,0,0,0}, - {18272,18416,18338 ,6123,6275,6213 ,0,0,0}, {16675,16447,16446 ,6140,6117,6208 ,0,0,0}, - {18355,18426,18484 ,6208,6133,6204 ,0,0,0}, {18355,18487,18402 ,6208,6214,6133 ,0,0,0}, - {18494,17178,17177 ,6298,6299,6299 ,0,0,0}, {17183,18495,17184 ,6298,6298,6300 ,0,0,0}, - {18496,18497,16875 ,6301,6302,6302 ,0,0,0}, {17177,17174,18498 ,6299,6300,6303 ,0,0,0}, - {16872,18499,18500 ,6304,6304,6305 ,0,0,0}, {17168,18501,17171 ,6301,6299,6306 ,0,0,0}, - {16870,18502,18503 ,6305,6307,6308 ,0,0,0}, {18504,17165,17162 ,6298,6298,6309 ,0,0,0}, - {18505,16858,18506 ,6310,6311,6312 ,0,0,0}, {18507,18508,16864 ,6308,6313,6314 ,0,0,0}, - {16854,17278,18509 ,6315,6316,6317 ,0,0,0}, {18509,18510,16861 ,6317,6318,6319 ,0,0,0}, - {16849,17273,17275 ,6320,6321,6322 ,0,0,0}, {17233,16816,17231 ,6299,6303,6323 ,0,0,0}, - {17237,17239,16819 ,6324,6298,6306 ,0,0,0}, {16839,17263,17264 ,6325,6326,6327 ,0,0,0}, - {17240,17243,16827 ,6298,6328,6324 ,0,0,0}, {17255,17257,16836 ,6301,6329,6330 ,0,0,0}, - {17255,16910,17252 ,6301,6324,6331 ,0,0,0}, {16829,17249,17251 ,6332,6328,6333 ,0,0,0}, - {17249,16832,17246 ,6328,6334,6335 ,0,0,0}, {17258,16909,17257 ,6336,6298,6329 ,0,0,0}, - {17252,16837,17251 ,6331,6337,6333 ,0,0,0}, {16838,17261,17263 ,6338,6339,6326 ,0,0,0}, - {17258,17261,16841 ,6336,6339,6324 ,0,0,0}, {17243,17245,16823 ,6328,6328,6299 ,0,0,0}, - {17245,17246,16824 ,6328,6335,6340 ,0,0,0}, {16845,17267,17269 ,6341,6342,6343 ,0,0,0}, - {16847,17264,17267 ,6344,6327,6342 ,0,0,0}, {17269,17270,16843 ,6343,6345,6346 ,0,0,0}, - {17239,17240,16826 ,6298,6298,6347 ,0,0,0}, {17234,17237,16822 ,6348,6324,6316 ,0,0,0}, - {16851,17270,17273 ,6349,6345,6321 ,0,0,0}, {16850,17275,17276 ,6350,6322,6351 ,0,0,0}, - {16821,17234,16822 ,6324,6348,6316 ,0,0,0}, {16807,17228,16808 ,6300,6352,6353 ,0,0,0}, - {16856,17276,17278 ,6354,6351,6316 ,0,0,0}, {16804,17222,16805 ,6355,6299,6298 ,0,0,0}, - {17227,16813,17225 ,6299,6356,6357 ,0,0,0}, {18507,16866,18505 ,6308,6358,6310 ,0,0,0}, - {18510,18506,16857 ,6318,6312,6359 ,0,0,0}, {17160,17159,18511 ,6316,6306,6360 ,0,0,0}, - {18511,17159,16810 ,6360,6306,6299 ,0,0,0}, {18511,18512,17160 ,6360,6298,6316 ,0,0,0}, - {18508,18502,16862 ,6313,6307,6304 ,0,0,0}, {16869,18503,18513 ,6336,6308,6311 ,0,0,0}, - {16816,17233,16821 ,6303,6299,6324 ,0,0,0}, {18513,18499,16874 ,6311,6304,6314 ,0,0,0}, - {17168,17166,18514 ,6301,6300,6340 ,0,0,0}, {18515,17166,17165 ,6301,6300,6298 ,0,0,0}, - {18516,18496,16879 ,6301,6301,6333 ,0,0,0}, {16873,18500,18516 ,6361,6305,6301 ,0,0,0}, - {18517,17174,17172 ,6300,6300,6357 ,0,0,0}, {17171,18518,17172 ,6306,6355,6357 ,0,0,0}, - {18519,18520,16880 ,6353,6311,6301 ,0,0,0}, {16876,18497,18519 ,6362,6302,6353 ,0,0,0}, - {17180,17178,18521 ,6300,6299,6300 ,0,0,0}, {16881,18520,18522 ,6300,6311,6363 ,0,0,0}, - {16885,18522,18523 ,6301,6363,6353 ,0,0,0}, {16886,18523,18524 ,6300,6353,6328 ,0,0,0}, - {17180,18525,17183 ,6300,6300,6298 ,0,0,0}, {18526,16888,18524 ,6303,6352,6328 ,0,0,0}, - {18526,18527,16890 ,6303,6352,6340 ,0,0,0}, {18528,17186,17184 ,6299,6316,6300 ,0,0,0}, - {18529,16893,18527 ,6300,6340,6352 ,0,0,0}, {18530,17189,17186 ,6298,6364,6316 ,0,0,0}, - {16894,18529,18531 ,6316,6300,6306 ,0,0,0}, {18532,17190,17189 ,6364,6298,6364 ,0,0,0}, - {18531,18533,16896 ,6306,6340,6340 ,0,0,0}, {18534,17192,17190 ,6300,6300,6298 ,0,0,0}, - {18535,16899,18533 ,6323,6340,6340 ,0,0,0}, {18536,17195,17192 ,6298,6300,6300 ,0,0,0}, - {16901,18535,18537 ,6300,6323,6340 ,0,0,0}, {18538,17196,17195 ,6364,6300,6300 ,0,0,0}, - {18537,18539,16900 ,6340,6303,6303 ,0,0,0}, {18540,17198,17196 ,6300,6365,6300 ,0,0,0}, - {18541,16902,18539 ,6300,6300,6303 ,0,0,0}, {18542,17201,17198 ,6366,6300,6365 ,0,0,0}, - {16905,18541,18543 ,6300,6300,6316 ,0,0,0}, {18544,17202,17201 ,6367,6367,6300 ,0,0,0}, - {18543,18545,16906 ,6316,6300,6300 ,0,0,0}, {18546,17204,17202 ,6300,6300,6367 ,0,0,0}, - {18547,16906,18548 ,6301,6300,6300 ,0,0,0}, {18549,17207,17204 ,6368,6300,6300 ,0,0,0}, - {18550,18547,18551 ,6300,6301,6300 ,0,0,0}, {18552,17208,17207 ,6369,6367,6300 ,0,0,0}, - {18553,18550,18554 ,6316,6300,6300 ,0,0,0}, {17208,18555,17210 ,6367,6367,6300 ,0,0,0}, - {17213,17210,18556 ,6364,6300,6370 ,0,0,0}, {18557,17216,17214 ,6300,6316,6300 ,0,0,0}, - {18558,18553,18559 ,6300,6316,6316 ,0,0,0}, {18560,18561,18562 ,6300,6371,6300 ,0,0,0}, - {18563,18564,18565 ,6306,6300,6303 ,0,0,0}, {18566,18567,18568 ,6369,6300,6367 ,0,0,0}, - {18569,18570,18571 ,6301,6301,6300 ,0,0,0}, {18572,18573,18574 ,6300,6369,6367 ,0,0,0}, - {18575,18576,18577 ,6316,6316,6300 ,0,0,0}, {18578,18579,18580 ,6364,6300,6300 ,0,0,0}, - {18581,18572,18582 ,6364,6300,6316 ,0,0,0}, {18583,18584,18585 ,6300,6364,6316 ,0,0,0}, - {18580,18586,18585 ,6300,6316,6316 ,0,0,0}, {18587,18588,18589 ,6364,6372,6364 ,0,0,0}, - {18588,18581,18590 ,6372,6364,6300 ,0,0,0}, {18575,18584,18591 ,6316,6364,6367 ,0,0,0}, - {18592,18578,18587 ,6370,6364,6364 ,0,0,0}, {18568,18593,18594 ,6367,6367,6316 ,0,0,0}, - {18595,18573,18594 ,6316,6369,6316 ,0,0,0}, {18596,18569,18597 ,6306,6301,6303 ,0,0,0}, - {18597,18577,18598 ,6303,6300,6340 ,0,0,0}, {18599,18600,18562 ,6371,6300,6300 ,0,0,0}, - {18601,18566,18600 ,6300,6369,6300 ,0,0,0}, {18602,18563,18603 ,6300,6306,6300 ,0,0,0}, - {18602,18603,18571 ,6300,6300,6300 ,0,0,0}, {18604,18605,17216 ,6300,6300,6316 ,0,0,0}, - {18560,18605,18606 ,6300,6300,6316 ,0,0,0}, {18558,18607,18608 ,6300,6303,6301 ,0,0,0}, - {18564,18608,18609 ,6300,6301,6301 ,0,0,0}, {17214,17213,18610 ,6300,6364,6369 ,0,0,0}, - {17159,17158,16810 ,6306,6298,6299 ,0,0,0}, {16810,17158,17221 ,6299,6298,6340 ,0,0,0}, - {18512,18504,17162 ,6298,6298,6309 ,0,0,0}, {18512,17162,17160 ,6298,6309,6316 ,0,0,0}, - {18504,18515,17165 ,6298,6301,6298 ,0,0,0}, {18515,18514,17166 ,6301,6340,6300 ,0,0,0}, - {18514,18501,17168 ,6340,6299,6301 ,0,0,0}, {18501,18518,17171 ,6299,6355,6306 ,0,0,0}, - {18518,18517,17172 ,6355,6300,6357 ,0,0,0}, {18517,18498,17174 ,6300,6303,6300 ,0,0,0}, - {18498,18494,17177 ,6303,6298,6299 ,0,0,0}, {18494,18521,17178 ,6298,6300,6299 ,0,0,0}, - {18521,18525,17180 ,6300,6300,6300 ,0,0,0}, {18525,18495,17183 ,6300,6298,6298 ,0,0,0}, - {18495,18528,17184 ,6298,6299,6300 ,0,0,0}, {18528,18530,17186 ,6299,6298,6316 ,0,0,0}, - {18530,18532,17189 ,6298,6364,6364 ,0,0,0}, {18532,18534,17190 ,6364,6300,6298 ,0,0,0}, - {18534,18536,17192 ,6300,6298,6300 ,0,0,0}, {18536,18538,17195 ,6298,6364,6300 ,0,0,0}, - {18538,18540,17196 ,6364,6300,6300 ,0,0,0}, {18540,18542,17198 ,6300,6366,6365 ,0,0,0}, - {18542,18544,17201 ,6366,6367,6300 ,0,0,0}, {18544,18546,17202 ,6367,6300,6367 ,0,0,0}, - {18546,18549,17204 ,6300,6368,6300 ,0,0,0}, {18549,18552,17207 ,6368,6369,6300 ,0,0,0}, - {18552,18555,17208 ,6369,6367,6367 ,0,0,0}, {18555,18556,17210 ,6367,6370,6300 ,0,0,0}, - {18556,18610,17213 ,6370,6369,6364 ,0,0,0}, {18610,18557,17214 ,6369,6300,6300 ,0,0,0}, - {18557,18604,17216 ,6300,6300,6316 ,0,0,0}, {18604,18606,18605 ,6300,6316,6300 ,0,0,0}, - {18606,18561,18560 ,6316,6371,6300 ,0,0,0}, {18561,18599,18562 ,6371,6371,6300 ,0,0,0}, - {18599,18601,18600 ,6371,6300,6300 ,0,0,0}, {18601,18567,18566 ,6300,6300,6369 ,0,0,0}, - {18567,18593,18568 ,6300,6367,6367 ,0,0,0}, {18593,18595,18594 ,6367,6316,6316 ,0,0,0}, - {18595,18574,18573 ,6316,6367,6369 ,0,0,0}, {18574,18582,18572 ,6367,6316,6300 ,0,0,0}, - {18582,18590,18581 ,6316,6300,6364 ,0,0,0}, {18590,18589,18588 ,6300,6364,6372 ,0,0,0}, - {18589,18592,18587 ,6364,6370,6364 ,0,0,0}, {18592,18579,18578 ,6370,6300,6364 ,0,0,0}, - {18579,18586,18580 ,6300,6316,6300 ,0,0,0}, {18586,18583,18585 ,6316,6300,6316 ,0,0,0}, - {18583,18591,18584 ,6300,6367,6364 ,0,0,0}, {18591,18576,18575 ,6367,6316,6316 ,0,0,0}, - {18576,18598,18577 ,6316,6340,6300 ,0,0,0}, {18598,18596,18597 ,6340,6306,6303 ,0,0,0}, - {18596,18570,18569 ,6306,6301,6301 ,0,0,0}, {18570,18602,18571 ,6301,6300,6300 ,0,0,0}, - {18563,18565,18603 ,6306,6303,6300 ,0,0,0}, {18564,18609,18565 ,6300,6301,6303 ,0,0,0}, - {18608,18607,18609 ,6301,6303,6301 ,0,0,0}, {18558,18559,18607 ,6300,6316,6303 ,0,0,0}, - {18553,18554,18559 ,6316,6300,6316 ,0,0,0}, {18550,18551,18554 ,6300,6300,6300 ,0,0,0}, - {18547,18548,18551 ,6301,6300,6300 ,0,0,0}, {16906,18545,18548 ,6300,6300,6300 ,0,0,0}, - {16906,16905,18543 ,6300,6300,6316 ,0,0,0}, {16905,16902,18541 ,6300,6300,6300 ,0,0,0}, - {16902,16900,18539 ,6300,6303,6303 ,0,0,0}, {16900,16901,18537 ,6303,6300,6340 ,0,0,0}, - {16901,16899,18535 ,6300,6340,6323 ,0,0,0}, {16899,16896,18533 ,6340,6340,6340 ,0,0,0}, - {16896,16894,18531 ,6340,6316,6306 ,0,0,0}, {16894,16893,18529 ,6316,6340,6300 ,0,0,0}, - {16893,16890,18527 ,6340,6340,6352 ,0,0,0}, {16890,16888,18526 ,6340,6352,6303 ,0,0,0}, - {16888,16886,18524 ,6352,6300,6328 ,0,0,0}, {16886,16885,18523 ,6300,6301,6353 ,0,0,0}, - {16885,16881,18522 ,6301,6300,6363 ,0,0,0}, {16881,16880,18520 ,6300,6301,6311 ,0,0,0}, - {16880,16876,18519 ,6301,6362,6353 ,0,0,0}, {16876,16875,18497 ,6362,6302,6302 ,0,0,0}, - {16875,16879,18496 ,6302,6333,6301 ,0,0,0}, {16879,16873,18516 ,6333,6361,6301 ,0,0,0}, - {16873,16872,18500 ,6361,6304,6305 ,0,0,0}, {16872,16874,18499 ,6304,6314,6304 ,0,0,0}, - {16874,16869,18513 ,6314,6336,6311 ,0,0,0}, {16869,16870,18503 ,6336,6305,6308 ,0,0,0}, - {16870,16862,18502 ,6305,6304,6307 ,0,0,0}, {16862,16864,18508 ,6304,6314,6313 ,0,0,0}, - {16864,16866,18507 ,6314,6358,6308 ,0,0,0}, {16866,16858,18505 ,6358,6311,6310 ,0,0,0}, - {16858,16857,18506 ,6311,6359,6312 ,0,0,0}, {16857,16861,18510 ,6359,6319,6318 ,0,0,0}, - {16861,16854,18509 ,6319,6315,6317 ,0,0,0}, {16854,16856,17278 ,6315,6354,6316 ,0,0,0}, - {16856,16850,17276 ,6354,6350,6351 ,0,0,0}, {16850,16849,17275 ,6350,6320,6322 ,0,0,0}, - {16849,16851,17273 ,6320,6349,6321 ,0,0,0}, {16851,16843,17270 ,6349,6346,6345 ,0,0,0}, - {16843,16845,17269 ,6346,6341,6343 ,0,0,0}, {16845,16847,17267 ,6341,6344,6342 ,0,0,0}, - {16847,16839,17264 ,6344,6325,6327 ,0,0,0}, {16839,16838,17263 ,6325,6338,6326 ,0,0,0}, - {16838,16841,17261 ,6338,6324,6339 ,0,0,0}, {16841,16909,17258 ,6324,6298,6336 ,0,0,0}, - {16909,16836,17257 ,6298,6330,6329 ,0,0,0}, {16836,16910,17255 ,6330,6324,6301 ,0,0,0}, - {16910,16837,17252 ,6324,6337,6331 ,0,0,0}, {16837,16829,17251 ,6337,6332,6333 ,0,0,0}, - {16829,16832,17249 ,6332,6334,6328 ,0,0,0}, {16832,16824,17246 ,6334,6340,6335 ,0,0,0}, - {16824,16823,17245 ,6340,6299,6328 ,0,0,0}, {16823,16827,17243 ,6299,6324,6328 ,0,0,0}, - {16827,16826,17240 ,6324,6347,6298 ,0,0,0}, {16826,16819,17239 ,6347,6306,6298 ,0,0,0}, - {16819,16822,17237 ,6306,6316,6324 ,0,0,0}, {16821,17233,17234 ,6324,6299,6348 ,0,0,0}, - {16808,17231,16816 ,6353,6323,6303 ,0,0,0}, {16807,17227,17228 ,6300,6299,6352 ,0,0,0}, - {16808,17228,17231 ,6353,6352,6323 ,0,0,0}, {16813,16805,17225 ,6356,6298,6357 ,0,0,0}, - {16807,16813,17227 ,6300,6356,6299 ,0,0,0}, {17222,16804,17221 ,6299,6355,6340 ,0,0,0}, - {17225,16805,17222 ,6357,6298,6299 ,0,0,0}, {16810,17221,16804 ,6299,6340,6355 ,0,0,0}, - {18605,17218,17216 ,6373,6374,6375 ,0,0,0}, {18611,18612,18600 ,6376,6377,6378 ,0,0,0}, - {18562,18613,18560 ,6379,6380,6381 ,0,0,0}, {18594,18573,18614 ,6382,6383,6384 ,0,0,0}, - {18566,18568,18615 ,6385,6386,6387 ,0,0,0}, {18616,18617,18588 ,6388,6389,6390 ,0,0,0}, - {18618,18619,18572 ,6391,6392,6393 ,0,0,0}, {18580,18585,18620 ,6394,6395,6396 ,0,0,0}, - {18587,18578,18621 ,6397,6398,6399 ,0,0,0}, {18622,18623,18577 ,6400,6401,6402 ,0,0,0}, - {18624,18625,18584 ,6403,6404,6405 ,0,0,0}, {18571,18603,18626 ,6406,6407,6408 ,0,0,0}, - {18597,18569,18627 ,6409,6410,6411 ,0,0,0}, {18628,18629,18607 ,6412,6413,6414 ,0,0,0}, - {18630,18631,18565 ,6415,6416,6417 ,0,0,0}, {18632,18551,18633 ,6418,6419,6420 ,0,0,0}, - {18559,18554,18634 ,6421,6422,6423 ,0,0,0}, {18543,18635,18636 ,6424,6425,6426 ,0,0,0}, - {18545,18637,18548 ,6427,6428,6429 ,0,0,0}, {18638,18639,18537 ,6430,6431,6432 ,0,0,0}, - {18640,18541,18539 ,6433,6434,6435 ,0,0,0}, {18641,18533,18531 ,6436,6437,6438 ,0,0,0}, - {18535,18533,18642 ,6439,6437,6440 ,0,0,0}, {18643,18527,18644 ,6441,6442,6443 ,0,0,0}, - {18529,18643,18645 ,6444,6441,6445 ,0,0,0}, {18524,18523,18646 ,6446,6447,6448 ,0,0,0}, - {18526,18647,18644 ,6449,6450,6443 ,0,0,0}, {18522,18520,18648 ,6451,6452,6453 ,0,0,0}, - {18522,18649,18523 ,6451,6454,6447 ,0,0,0}, {18519,18497,18650 ,6455,6456,6457 ,0,0,0}, - {18519,18651,18520 ,6455,6458,6452 ,0,0,0}, {18652,18497,18496 ,6459,6456,6460 ,0,0,0}, - {18497,18652,18650 ,6456,6459,6457 ,0,0,0}, {18516,18653,18496 ,6461,6462,6460 ,0,0,0}, - {18652,18496,18653 ,6459,6460,6462 ,0,0,0}, {18516,18500,18654 ,6461,6463,6464 ,0,0,0}, - {18654,18653,18516 ,6464,6462,6461 ,0,0,0}, {18655,18500,18499 ,6465,6463,6466 ,0,0,0}, - {18500,18655,18654 ,6463,6465,6464 ,0,0,0}, {18513,18656,18499 ,6467,6468,6466 ,0,0,0}, - {18655,18499,18656 ,6465,6466,6468 ,0,0,0}, {18513,18503,18657 ,6467,6469,6470 ,0,0,0}, - {18657,18656,18513 ,6470,6468,6467 ,0,0,0}, {18658,18503,18502 ,6471,6469,6472 ,0,0,0}, - {18503,18658,18657 ,6469,6471,6470 ,0,0,0}, {18508,18659,18502 ,6473,6474,6472 ,0,0,0}, - {18658,18502,18659 ,6471,6472,6474 ,0,0,0}, {18508,18507,18660 ,6473,6475,6476 ,0,0,0}, - {18660,18659,18508 ,6476,6474,6473 ,0,0,0}, {18661,18507,18505 ,6477,6475,6478 ,0,0,0}, - {18507,18661,18660 ,6475,6477,6476 ,0,0,0}, {18506,18662,18505 ,6479,6480,6478 ,0,0,0}, - {18661,18505,18662 ,6477,6478,6480 ,0,0,0}, {18506,18510,18663 ,6479,6481,6482 ,0,0,0}, - {18663,18662,18506 ,6482,6480,6479 ,0,0,0}, {18664,18510,18509 ,6483,6481,6484 ,0,0,0}, - {18510,18664,18663 ,6481,6483,6482 ,0,0,0}, {17278,18665,18509 ,6485,6486,6484 ,0,0,0}, - {18664,18509,18665 ,6483,6484,6486 ,0,0,0}, {17277,18665,17278 ,6487,6486,6485 ,0,0,0}, - {18651,18648,18520 ,6458,6453,6452 ,0,0,0}, {18519,18650,18651 ,6455,6457,6458 ,0,0,0}, - {18649,18646,18523 ,6454,6448,6447 ,0,0,0}, {18522,18648,18649 ,6451,6453,6454 ,0,0,0}, - {18526,18524,18647 ,6449,6446,6450 ,0,0,0}, {18524,18646,18647 ,6446,6448,6450 ,0,0,0}, - {18527,18643,18529 ,6442,6441,6444 ,0,0,0}, {18527,18526,18644 ,6442,6449,6443 ,0,0,0}, - {18641,18531,18645 ,6436,6438,6445 ,0,0,0}, {18531,18529,18645 ,6438,6444,6445 ,0,0,0}, - {18535,18642,18638 ,6439,6440,6430 ,0,0,0}, {18642,18533,18641 ,6440,6437,6436 ,0,0,0}, - {18639,18539,18537 ,6431,6435,6432 ,0,0,0}, {18638,18537,18535 ,6430,6432,6439 ,0,0,0}, - {18640,18635,18541 ,6433,6425,6434 ,0,0,0}, {18639,18640,18539 ,6431,6433,6435 ,0,0,0}, - {18543,18636,18545 ,6424,6426,6427 ,0,0,0}, {18541,18635,18543 ,6434,6425,6424 ,0,0,0}, - {18548,18637,18633 ,6429,6428,6420 ,0,0,0}, {18545,18636,18637 ,6427,6426,6428 ,0,0,0}, - {18554,18551,18632 ,6422,6419,6418 ,0,0,0}, {18551,18548,18633 ,6419,6429,6420 ,0,0,0}, - {18628,18559,18634 ,6412,6421,6423 ,0,0,0}, {18634,18554,18632 ,6423,6422,6418 ,0,0,0}, - {18629,18609,18607 ,6413,6488,6414 ,0,0,0}, {18628,18607,18559 ,6412,6414,6421 ,0,0,0}, - {18565,18609,18630 ,6417,6488,6415 ,0,0,0}, {18629,18630,18609 ,6413,6415,6488 ,0,0,0}, - {18603,18631,18626 ,6407,6416,6408 ,0,0,0}, {18565,18631,18603 ,6417,6416,6407 ,0,0,0}, - {18569,18571,18666 ,6410,6406,6489 ,0,0,0}, {18571,18626,18666 ,6406,6408,6489 ,0,0,0}, - {18622,18597,18627 ,6400,6409,6411 ,0,0,0}, {18627,18569,18666 ,6411,6410,6489 ,0,0,0}, - {18623,18575,18577 ,6401,6490,6402 ,0,0,0}, {18622,18577,18597 ,6400,6402,6409 ,0,0,0}, - {18584,18575,18624 ,6405,6490,6403 ,0,0,0}, {18623,18624,18575 ,6401,6403,6490 ,0,0,0}, - {18585,18625,18620 ,6395,6404,6396 ,0,0,0}, {18584,18625,18585 ,6405,6404,6395 ,0,0,0}, - {18578,18580,18667 ,6398,6394,6491 ,0,0,0}, {18580,18620,18667 ,6394,6396,6491 ,0,0,0}, - {18616,18587,18621 ,6388,6397,6399 ,0,0,0}, {18621,18578,18667 ,6399,6398,6491 ,0,0,0}, - {18617,18581,18588 ,6389,6492,6390 ,0,0,0}, {18616,18588,18587 ,6388,6390,6397 ,0,0,0}, - {18572,18581,18618 ,6393,6492,6391 ,0,0,0}, {18617,18618,18581 ,6389,6391,6492 ,0,0,0}, - {18573,18619,18614 ,6383,6392,6384 ,0,0,0}, {18572,18619,18573 ,6393,6392,6383 ,0,0,0}, - {18568,18594,18668 ,6386,6382,6493 ,0,0,0}, {18594,18614,18668 ,6382,6384,6493 ,0,0,0}, - {18611,18566,18615 ,6376,6385,6387 ,0,0,0}, {18615,18568,18668 ,6387,6386,6493 ,0,0,0}, - {18612,18562,18600 ,6377,6379,6378 ,0,0,0}, {18611,18600,18566 ,6376,6378,6385 ,0,0,0}, - {18613,18669,18560 ,6380,6494,6381 ,0,0,0}, {18612,18613,18562 ,6377,6380,6379 ,0,0,0}, - {17218,18605,18669 ,6374,6373,6494 ,0,0,0}, {18560,18669,18605 ,6381,6494,6373 ,0,0,0}, - {17229,17115,17230 ,6495,6495,6496 ,0,0,0}, {17236,17235,17121 ,6497,6496,6496 ,0,0,0}, - {18624,18623,18670 ,6498,6499,6500 ,0,0,0}, {17112,17229,17226 ,6501,6495,6501 ,0,0,0}, - {18621,18667,18671 ,6502,6503,6503 ,0,0,0}, {17223,17106,17109 ,6496,6504,6501 ,0,0,0}, - {18672,18614,18619 ,6498,6505,6506 ,0,0,0}, {17048,17157,17161 ,6507,6495,6495 ,0,0,0}, - {17058,17056,17170 ,6508,6509,6504 ,0,0,0}, {18673,18612,18611 ,6510,6511,6512 ,0,0,0}, - {17217,17100,17098 ,6513,6500,6514 ,0,0,0}, {17218,17100,17217 ,6515,6500,6513 ,0,0,0}, - {17212,17215,17099 ,6516,6517,6518 ,0,0,0}, {17179,17181,17064 ,6519,6520,6497 ,0,0,0}, - {17185,17187,17070 ,6521,6522,6523 ,0,0,0}, {17209,17092,17091 ,6524,6525,6526 ,0,0,0}, - {17188,17074,17073 ,6527,6500,6498 ,0,0,0}, {17205,17086,17203 ,6528,6522,6529 ,0,0,0}, - {17203,17085,17200 ,6529,6530,6531 ,0,0,0}, {17080,17197,17082 ,6532,6533,6502 ,0,0,0}, - {17194,17080,17079 ,6534,6532,6495 ,0,0,0}, {17206,17088,17205 ,6535,6502,6528 ,0,0,0}, - {17199,17200,17082 ,6533,6531,6502 ,0,0,0}, {17209,17091,17206 ,6524,6526,6535 ,0,0,0}, - {17088,17206,17091 ,6502,6535,6526 ,0,0,0}, {17191,17076,17074 ,6503,6514,6500 ,0,0,0}, - {17079,17076,17193 ,6495,6514,6530 ,0,0,0}, {17097,17092,17211 ,6536,6525,6537 ,0,0,0}, - {17092,17209,17211 ,6525,6524,6537 ,0,0,0}, {17097,17211,17212 ,6536,6537,6516 ,0,0,0}, - {17188,17073,17187 ,6527,6498,6522 ,0,0,0}, {17185,17068,17182 ,6521,6501,6509 ,0,0,0}, - {17212,17099,17097 ,6516,6518,6536 ,0,0,0}, {17099,17215,17098 ,6518,6517,6514 ,0,0,0}, - {17182,17067,17181 ,6509,6500,6520 ,0,0,0}, {17062,17176,17064 ,6508,6509,6497 ,0,0,0}, - {17217,17098,17215 ,6513,6514,6517 ,0,0,0}, {17058,17173,17061 ,6508,6508,6495 ,0,0,0}, - {17061,17175,17062 ,6495,6530,6508 ,0,0,0}, {18674,18613,18675 ,6538,6539,6540 ,0,0,0}, - {18669,17100,17218 ,6541,6500,6515 ,0,0,0}, {17169,17055,17167 ,6495,6496,6542 ,0,0,0}, - {17056,17055,17169 ,6509,6496,6495 ,0,0,0}, {17163,17164,17050 ,6542,6504,6507 ,0,0,0}, - {18668,18614,18676 ,6543,6505,6500 ,0,0,0}, {18677,18618,18678 ,6503,6533,6500 ,0,0,0}, - {17161,17163,17049 ,6495,6542,6495 ,0,0,0}, {18679,18678,18616 ,6508,6500,6538 ,0,0,0}, - {17106,17220,17105 ,6504,6542,6501 ,0,0,0}, {17048,17105,17219 ,6507,6501,6495 ,0,0,0}, - {18625,18680,18681 ,6527,6530,6498 ,0,0,0}, {18667,18620,18682 ,6503,6527,6499 ,0,0,0}, - {17112,17226,17111 ,6501,6501,6544 ,0,0,0}, {17224,17109,17111 ,6504,6501,6544 ,0,0,0}, - {18627,18683,18684 ,6508,6530,6544 ,0,0,0}, {18685,18622,18684 ,6498,6500,6544 ,0,0,0}, - {17117,17232,17230 ,6495,6495,6496 ,0,0,0}, {18666,18626,18683 ,6523,6504,6530 ,0,0,0}, - {18631,18686,18626 ,6500,6504,6504 ,0,0,0}, {18631,18630,18687 ,6500,6522,6500 ,0,0,0}, - {17235,17232,17118 ,6496,6495,6496 ,0,0,0}, {18688,18630,18629 ,6515,6522,6504 ,0,0,0}, - {18628,18689,18629 ,6508,6500,6504 ,0,0,0}, {17238,17121,17123 ,6495,6496,6508 ,0,0,0}, - {18689,18628,18690 ,6500,6508,6498 ,0,0,0}, {17241,17123,17124 ,6504,6508,6507 ,0,0,0}, - {18691,18690,18634 ,6515,6498,6545 ,0,0,0}, {17242,17124,17127 ,6507,6507,6495 ,0,0,0}, - {18692,18691,18632 ,6498,6515,6504 ,0,0,0}, {17244,17127,17129 ,6504,6495,6495 ,0,0,0}, - {18693,18692,18633 ,6504,6498,6504 ,0,0,0}, {17129,17130,17247 ,6495,6504,6504 ,0,0,0}, - {18694,18693,18637 ,6504,6504,6498 ,0,0,0}, {17248,17247,17130 ,6504,6504,6504 ,0,0,0}, - {18694,18636,18635 ,6504,6504,6504 ,0,0,0}, {17250,17248,17133 ,6546,6504,6504 ,0,0,0}, - {18695,18635,18640 ,6508,6504,6504 ,0,0,0}, {17253,17250,17135 ,6507,6546,6504 ,0,0,0}, - {18696,18640,18639 ,6508,6504,6508 ,0,0,0}, {17254,17253,17136 ,6547,6507,6548 ,0,0,0}, - {18697,18639,18638 ,6498,6508,6498 ,0,0,0}, {17256,17254,17139 ,6546,6547,6548 ,0,0,0}, - {18698,18638,18642 ,6504,6498,6498 ,0,0,0}, {17141,17259,17139 ,6549,6547,6548 ,0,0,0}, - {18642,18699,18698 ,6498,6504,6504 ,0,0,0}, {17260,17141,17142 ,6549,6549,6550 ,0,0,0}, - {18699,18641,18700 ,6504,6504,6498 ,0,0,0}, {17142,17145,17262 ,6550,6549,6504 ,0,0,0}, - {17265,17145,17147 ,6549,6549,6545 ,0,0,0}, {17268,17266,17149 ,6549,6504,6504 ,0,0,0}, - {18700,18645,18701 ,6498,6504,6504 ,0,0,0}, {17274,17272,17154 ,6551,6504,6515 ,0,0,0}, - {18646,18702,18647 ,6504,6508,6515 ,0,0,0}, {18703,18664,18704 ,6504,6545,6515 ,0,0,0}, - {18705,18648,18651 ,6508,6552,6504 ,0,0,0}, {18661,18706,18707 ,6553,6504,6554 ,0,0,0}, - {18708,18709,18652 ,6555,6504,6515 ,0,0,0}, {18656,18657,18710 ,6504,6504,6504 ,0,0,0}, - {18661,18707,18660 ,6553,6554,6504 ,0,0,0}, {18654,18711,18712 ,6504,6504,6515 ,0,0,0}, - {18710,18711,18655 ,6504,6504,6515 ,0,0,0}, {18659,18713,18658 ,6548,6504,6504 ,0,0,0}, - {18659,18660,18714 ,6548,6504,6549 ,0,0,0}, {18708,18653,18712 ,6555,6504,6515 ,0,0,0}, - {18715,18657,18658 ,6504,6504,6504 ,0,0,0}, {18716,18663,18703 ,6504,6548,6504 ,0,0,0}, - {18706,18662,18716 ,6504,6548,6504 ,0,0,0}, {18650,18717,18651 ,6504,6544,6504 ,0,0,0}, - {18650,18709,18717 ,6504,6504,6544 ,0,0,0}, {17277,17274,17156 ,6515,6551,6554 ,0,0,0}, - {17156,18704,18665 ,6554,6515,6545 ,0,0,0}, {18649,18718,18646 ,6515,6504,6504 ,0,0,0}, - {18719,18649,18648 ,6508,6515,6552 ,0,0,0}, {17271,17268,17148 ,6504,6549,6549 ,0,0,0}, - {17151,17272,17271 ,6545,6504,6504 ,0,0,0}, {18643,18720,18701 ,6508,6498,6504 ,0,0,0}, - {18702,18720,18644 ,6508,6498,6498 ,0,0,0}, {17266,17147,17149 ,6504,6545,6504 ,0,0,0}, - {17164,17167,17052 ,6504,6542,6504 ,0,0,0}, {18721,18615,18722 ,6556,6557,6558 ,0,0,0}, - {18670,18623,18685 ,6500,6499,6498 ,0,0,0}, {17086,17205,17088 ,6522,6528,6502 ,0,0,0}, - {17085,17203,17086 ,6530,6529,6522 ,0,0,0}, {17082,17200,17085 ,6502,6531,6530 ,0,0,0}, - {17082,17197,17199 ,6502,6533,6533 ,0,0,0}, {17080,17194,17197 ,6532,6534,6533 ,0,0,0}, - {17079,17193,17194 ,6495,6530,6534 ,0,0,0}, {17076,17191,17193 ,6514,6503,6530 ,0,0,0}, - {17074,17188,17191 ,6500,6527,6503 ,0,0,0}, {17070,17187,17073 ,6523,6522,6498 ,0,0,0}, - {17068,17185,17070 ,6501,6521,6523 ,0,0,0}, {17067,17182,17068 ,6500,6509,6501 ,0,0,0}, - {17064,17181,17067 ,6497,6520,6500 ,0,0,0}, {17064,17176,17179 ,6497,6509,6519 ,0,0,0}, - {17062,17175,17176 ,6508,6530,6509 ,0,0,0}, {17061,17173,17175 ,6495,6508,6530 ,0,0,0}, - {17058,17170,17173 ,6508,6504,6508 ,0,0,0}, {17056,17169,17170 ,6509,6495,6504 ,0,0,0}, - {17052,17167,17055 ,6504,6542,6496 ,0,0,0}, {17050,17164,17052 ,6507,6504,6504 ,0,0,0}, - {17049,17163,17050 ,6495,6542,6507 ,0,0,0}, {17048,17161,17049 ,6507,6495,6495 ,0,0,0}, - {17048,17219,17157 ,6507,6495,6495 ,0,0,0}, {17105,17220,17219 ,6501,6542,6495 ,0,0,0}, - {17106,17223,17220 ,6504,6496,6542 ,0,0,0}, {17109,17224,17223 ,6501,6504,6496 ,0,0,0}, - {17111,17226,17224 ,6544,6501,6504 ,0,0,0}, {17115,17229,17112 ,6495,6495,6501 ,0,0,0}, - {17117,17230,17115 ,6495,6496,6495 ,0,0,0}, {17118,17232,17117 ,6496,6495,6495 ,0,0,0}, - {17121,17235,17118 ,6496,6496,6496 ,0,0,0}, {17121,17238,17236 ,6496,6495,6497 ,0,0,0}, - {17123,17241,17238 ,6508,6504,6495 ,0,0,0}, {17124,17242,17241 ,6507,6507,6504 ,0,0,0}, - {17127,17244,17242 ,6495,6504,6507 ,0,0,0}, {17129,17247,17244 ,6495,6504,6504 ,0,0,0}, - {17133,17248,17130 ,6504,6504,6504 ,0,0,0}, {17135,17250,17133 ,6504,6546,6504 ,0,0,0}, - {17136,17253,17135 ,6548,6507,6504 ,0,0,0}, {17139,17254,17136 ,6548,6547,6548 ,0,0,0}, - {17139,17259,17256 ,6548,6547,6546 ,0,0,0}, {17141,17260,17259 ,6549,6549,6547 ,0,0,0}, - {17142,17262,17260 ,6550,6504,6549 ,0,0,0}, {17145,17265,17262 ,6549,6549,6504 ,0,0,0}, - {17147,17266,17265 ,6545,6504,6549 ,0,0,0}, {17148,17268,17149 ,6549,6549,6504 ,0,0,0}, - {17151,17271,17148 ,6545,6504,6549 ,0,0,0}, {17154,17272,17151 ,6515,6504,6545 ,0,0,0}, - {17156,17274,17154 ,6554,6551,6515 ,0,0,0}, {17156,18665,17277 ,6554,6545,6515 ,0,0,0}, - {18704,18664,18665 ,6515,6545,6545 ,0,0,0}, {18703,18663,18664 ,6504,6548,6545 ,0,0,0}, - {18716,18662,18663 ,6504,6548,6548 ,0,0,0}, {18706,18661,18662 ,6504,6553,6548 ,0,0,0}, - {18714,18660,18707 ,6549,6504,6554 ,0,0,0}, {18713,18659,18714 ,6504,6548,6549 ,0,0,0}, - {18715,18658,18713 ,6504,6504,6504 ,0,0,0}, {18710,18657,18715 ,6504,6504,6504 ,0,0,0}, - {18710,18655,18656 ,6504,6515,6504 ,0,0,0}, {18711,18654,18655 ,6504,6504,6515 ,0,0,0}, - {18712,18653,18654 ,6515,6504,6504 ,0,0,0}, {18708,18652,18653 ,6555,6515,6504 ,0,0,0}, - {18709,18650,18652 ,6504,6504,6515 ,0,0,0}, {18705,18651,18717 ,6508,6504,6544 ,0,0,0}, - {18719,18648,18705 ,6508,6552,6508 ,0,0,0}, {18718,18649,18719 ,6504,6515,6508 ,0,0,0}, - {18702,18646,18718 ,6508,6504,6504 ,0,0,0}, {18702,18644,18647 ,6508,6498,6515 ,0,0,0}, - {18720,18643,18644 ,6498,6508,6498 ,0,0,0}, {18701,18645,18643 ,6504,6504,6508 ,0,0,0}, - {18700,18641,18645 ,6498,6504,6504 ,0,0,0}, {18699,18642,18641 ,6504,6498,6504 ,0,0,0}, - {18697,18638,18698 ,6498,6498,6504 ,0,0,0}, {18696,18639,18697 ,6508,6508,6498 ,0,0,0}, - {18695,18640,18696 ,6508,6504,6508 ,0,0,0}, {18694,18635,18695 ,6504,6504,6508 ,0,0,0}, - {18694,18637,18636 ,6504,6498,6504 ,0,0,0}, {18693,18633,18637 ,6504,6504,6498 ,0,0,0}, - {18692,18632,18633 ,6498,6504,6504 ,0,0,0}, {18691,18634,18632 ,6515,6545,6504 ,0,0,0}, - {18690,18628,18634 ,6498,6508,6545 ,0,0,0}, {18688,18629,18689 ,6515,6504,6500 ,0,0,0}, - {18687,18630,18688 ,6500,6522,6515 ,0,0,0}, {18686,18631,18687 ,6504,6500,6500 ,0,0,0}, - {18683,18626,18686 ,6530,6504,6504 ,0,0,0}, {18683,18627,18666 ,6530,6508,6523 ,0,0,0}, - {18684,18622,18627 ,6544,6500,6508 ,0,0,0}, {18685,18623,18622 ,6498,6499,6500 ,0,0,0}, - {18680,18624,18670 ,6530,6498,6500 ,0,0,0}, {18681,18620,18625 ,6498,6527,6527 ,0,0,0}, - {18680,18625,18624 ,6530,6527,6498 ,0,0,0}, {18682,18671,18667 ,6499,6503,6503 ,0,0,0}, - {18681,18682,18620 ,6498,6499,6527 ,0,0,0}, {18671,18679,18621 ,6503,6508,6502 ,0,0,0}, - {18616,18678,18617 ,6538,6500,6559 ,0,0,0}, {18621,18679,18616 ,6502,6508,6538 ,0,0,0}, - {18619,18618,18677 ,6506,6533,6503 ,0,0,0}, {18618,18617,18678 ,6533,6559,6500 ,0,0,0}, - {18676,18614,18672 ,6500,6505,6498 ,0,0,0}, {18672,18619,18677 ,6498,6506,6503 ,0,0,0}, - {18722,18668,18676 ,6558,6543,6500 ,0,0,0}, {18721,18611,18615 ,6556,6512,6557 ,0,0,0}, - {18722,18615,18668 ,6558,6557,6543 ,0,0,0}, {18673,18675,18612 ,6510,6540,6511 ,0,0,0}, - {18721,18673,18611 ,6556,6510,6512 ,0,0,0}, {18613,18674,18669 ,6539,6538,6541 ,0,0,0}, - {18612,18675,18613 ,6511,6540,6539 ,0,0,0}, {17100,18669,18674 ,6500,6541,6538 ,0,0,0}, - {18674,17102,17100 ,6560,6561,6562 ,0,0,0}, {18721,18723,18673 ,6563,6564,6565 ,0,0,0}, - {18675,18724,18725 ,6566,6567,6568 ,0,0,0}, {18672,18677,18726 ,6569,6570,6571 ,0,0,0}, - {18722,18676,18727 ,6572,6573,6574 ,0,0,0}, {18728,18729,18671 ,6575,6576,6577 ,0,0,0}, - {18730,18731,18678 ,6578,6579,6580 ,0,0,0}, {18680,18670,18732 ,6581,6582,6583 ,0,0,0}, - {18682,18681,18733 ,6584,6585,6586 ,0,0,0}, {18734,18735,18683 ,6587,6588,6589 ,0,0,0}, - {18736,18685,18684 ,6590,6591,6592 ,0,0,0}, {18688,18689,18737 ,6593,6594,6595 ,0,0,0}, - {18687,18738,18739 ,6596,6597,6598 ,0,0,0}, {18740,18741,18692 ,6599,6600,6601 ,0,0,0}, - {18742,18743,18690 ,6602,6603,6604 ,0,0,0}, {18744,18695,18745 ,6605,6606,6607 ,0,0,0}, - {18693,18694,18746 ,6608,6609,6610 ,0,0,0}, {18697,18698,18747 ,6611,6612,6613 ,0,0,0}, - {18697,18748,18696 ,6611,6614,6615 ,0,0,0}, {18701,18749,18700 ,6616,6617,6618 ,0,0,0}, - {18750,18751,18699 ,6619,6620,6621 ,0,0,0}, {18702,18752,18720 ,6622,6623,6624 ,0,0,0}, - {18753,18701,18720 ,6625,6616,6624 ,0,0,0}, {18754,18755,18719 ,6626,6627,6628 ,0,0,0}, - {18756,18718,18755 ,6629,6630,6627 ,0,0,0}, {18757,18758,18717 ,6631,6632,6633 ,0,0,0}, - {18754,18705,18758 ,6626,6634,6632 ,0,0,0}, {18708,18759,18709 ,6635,6636,6637 ,0,0,0}, - {18757,18709,18759 ,6631,6637,6636 ,0,0,0}, {18708,18712,18760 ,6635,6638,6639 ,0,0,0}, - {18760,18759,18708 ,6639,6636,6635 ,0,0,0}, {18761,18712,18711 ,6640,6638,6641 ,0,0,0}, - {18712,18761,18760 ,6638,6640,6639 ,0,0,0}, {18710,18762,18711 ,6642,6643,6641 ,0,0,0}, - {18761,18711,18762 ,6640,6641,6643 ,0,0,0}, {18710,18715,18763 ,6642,6644,6645 ,0,0,0}, - {18763,18762,18710 ,6645,6643,6642 ,0,0,0}, {18764,18715,18713 ,6646,6644,6647 ,0,0,0}, - {18715,18764,18763 ,6644,6646,6645 ,0,0,0}, {18714,18765,18713 ,6648,6649,6647 ,0,0,0}, - {18764,18713,18765 ,6646,6647,6649 ,0,0,0}, {18714,18707,18766 ,6648,6650,6651 ,0,0,0}, - {18766,18765,18714 ,6651,6649,6648 ,0,0,0}, {18767,18707,18706 ,6652,6650,6653 ,0,0,0}, - {18707,18767,18766 ,6650,6652,6651 ,0,0,0}, {18706,18768,18769 ,6653,6654,6655 ,0,0,0}, - {18767,18706,18769 ,6652,6653,6655 ,0,0,0}, {18768,18716,18770 ,6654,6656,6657 ,0,0,0}, - {18716,18768,18706 ,6656,6654,6653 ,0,0,0}, {18770,18703,18704 ,6657,6658,6659 ,0,0,0}, - {18716,18703,18770 ,6656,6658,6657 ,0,0,0}, {17156,18771,18704 ,6660,6661,6659 ,0,0,0}, - {18770,18704,18771 ,6657,6659,6661 ,0,0,0}, {17155,18771,17156 ,6660,6661,6660 ,0,0,0}, - {18705,18717,18758 ,6634,6633,6632 ,0,0,0}, {18757,18717,18709 ,6631,6633,6637 ,0,0,0}, - {18718,18719,18755 ,6630,6628,6627 ,0,0,0}, {18754,18719,18705 ,6626,6628,6634 ,0,0,0}, - {18756,18752,18702 ,6629,6623,6622 ,0,0,0}, {18756,18702,18718 ,6629,6622,6630 ,0,0,0}, - {18749,18701,18753 ,6617,6616,6625 ,0,0,0}, {18752,18753,18720 ,6623,6625,6624 ,0,0,0}, - {18700,18750,18699 ,6618,6619,6621 ,0,0,0}, {18749,18750,18700 ,6617,6619,6618 ,0,0,0}, - {18698,18751,18747 ,6612,6620,6613 ,0,0,0}, {18699,18751,18698 ,6621,6620,6612 ,0,0,0}, - {18748,18745,18696 ,6614,6607,6615 ,0,0,0}, {18697,18747,18748 ,6611,6613,6614 ,0,0,0}, - {18694,18695,18744 ,6609,6606,6605 ,0,0,0}, {18695,18696,18745 ,6606,6615,6607 ,0,0,0}, - {18740,18693,18746 ,6599,6608,6610 ,0,0,0}, {18746,18694,18744 ,6610,6609,6605 ,0,0,0}, - {18741,18691,18692 ,6600,6662,6601 ,0,0,0}, {18740,18692,18693 ,6599,6601,6608 ,0,0,0}, - {18690,18691,18742 ,6604,6662,6602 ,0,0,0}, {18741,18742,18691 ,6600,6602,6662 ,0,0,0}, - {18689,18743,18737 ,6594,6603,6595 ,0,0,0}, {18690,18743,18689 ,6604,6603,6594 ,0,0,0}, - {18687,18688,18738 ,6596,6593,6597 ,0,0,0}, {18688,18737,18738 ,6593,6595,6597 ,0,0,0}, - {18734,18686,18739 ,6587,6663,6598 ,0,0,0}, {18686,18687,18739 ,6663,6596,6598 ,0,0,0}, - {18735,18684,18683 ,6588,6592,6589 ,0,0,0}, {18734,18683,18686 ,6587,6589,6663 ,0,0,0}, - {18736,18772,18685 ,6590,6664,6591 ,0,0,0}, {18735,18736,18684 ,6588,6590,6592 ,0,0,0}, - {18732,18670,18772 ,6583,6582,6664 ,0,0,0}, {18685,18772,18670 ,6591,6664,6582 ,0,0,0}, - {18681,18680,18773 ,6585,6581,6665 ,0,0,0}, {18680,18732,18773 ,6581,6583,6665 ,0,0,0}, - {18728,18682,18733 ,6575,6584,6586 ,0,0,0}, {18733,18681,18773 ,6586,6585,6665 ,0,0,0}, - {18729,18679,18671 ,6576,6666,6577 ,0,0,0}, {18728,18671,18682 ,6575,6577,6584 ,0,0,0}, - {18678,18679,18730 ,6580,6666,6578 ,0,0,0}, {18729,18730,18679 ,6576,6578,6666 ,0,0,0}, - {18677,18731,18726 ,6570,6579,6571 ,0,0,0}, {18678,18731,18677 ,6580,6579,6570 ,0,0,0}, - {18676,18672,18774 ,6573,6569,6667 ,0,0,0}, {18672,18726,18774 ,6569,6571,6667 ,0,0,0}, - {18723,18722,18727 ,6564,6572,6574 ,0,0,0}, {18727,18676,18774 ,6574,6573,6667 ,0,0,0}, - {18723,18724,18673 ,6564,6567,6565 ,0,0,0}, {18723,18721,18722 ,6564,6563,6572 ,0,0,0}, - {18725,18775,18675 ,6568,6668,6566 ,0,0,0}, {18673,18724,18675 ,6565,6567,6566 ,0,0,0}, - {17102,18674,18775 ,6561,6560,6668 ,0,0,0}, {18675,18775,18674 ,6566,6668,6560 ,0,0,0}, - {17066,17069,16973 ,6669,6670,6671 ,0,0,0}, {18728,18733,18776 ,6672,6671,6671 ,0,0,0}, - {16979,17075,16988 ,6673,6674,6671 ,0,0,0}, {17069,17071,16982 ,6670,6669,6675 ,0,0,0}, - {17081,17011,16983 ,6670,6676,6677 ,0,0,0}, {18777,18778,18746 ,6324,6298,6672 ,0,0,0}, - {18779,18738,18737 ,6671,6672,6671 ,0,0,0}, {18780,18781,18742 ,6672,6671,6671 ,0,0,0}, - {17094,17005,17001 ,6678,6671,6679 ,0,0,0}, {18739,18738,18782 ,6671,6672,6680 ,0,0,0}, - {17007,17101,17009 ,6679,6671,6671 ,0,0,0}, {18783,18784,18736 ,6672,6672,6672 ,0,0,0}, - {18785,18786,18723 ,6672,6681,6672 ,0,0,0}, {18775,18725,18787 ,6671,6681,6672 ,0,0,0}, - {18788,18730,18729 ,6672,6672,6681 ,0,0,0}, {18726,18789,18790 ,6672,6672,6672 ,0,0,0}, - {18791,18774,18790 ,6672,6671,6672 ,0,0,0}, {18728,18792,18729 ,6672,6671,6681 ,0,0,0}, - {18731,18788,18789 ,6672,6672,6672 ,0,0,0}, {18785,18727,18791 ,6672,6672,6672 ,0,0,0}, - {18793,18794,18773 ,6671,6672,6672 ,0,0,0}, {18725,18724,18795 ,6681,6671,6671 ,0,0,0}, - {18732,18796,18793 ,6671,6681,6671 ,0,0,0}, {17102,18775,17009 ,6671,6671,6671 ,0,0,0}, - {18772,18784,18796 ,6672,6672,6681 ,0,0,0}, {17005,17095,17006 ,6671,6682,6672 ,0,0,0}, - {17007,17006,17096 ,6679,6672,6298 ,0,0,0}, {18739,18797,18734 ,6671,6671,6672 ,0,0,0}, - {18797,18783,18735 ,6671,6672,6672 ,0,0,0}, {17089,17090,16997 ,6672,6681,6670 ,0,0,0}, - {17001,17003,17093 ,6679,6669,6669 ,0,0,0}, {18781,18798,18743 ,6671,6672,6671 ,0,0,0}, - {17087,17089,16999 ,6671,6672,6681 ,0,0,0}, {16994,17011,17083 ,6669,6676,6298 ,0,0,0}, - {16994,17084,17087 ,6669,6669,6671 ,0,0,0}, {18799,18740,18778 ,6672,6671,6298 ,0,0,0}, - {18799,18780,18741 ,6672,6672,6672 ,0,0,0}, {17077,16985,16988 ,6683,6669,6671 ,0,0,0}, - {16983,16985,17078 ,6677,6669,6684 ,0,0,0}, {18748,18800,18745 ,6671,6685,6686 ,0,0,0}, - {18777,18744,18745 ,6324,6687,6686 ,0,0,0}, {18748,18747,18801 ,6671,6688,6688 ,0,0,0}, - {17071,17072,16978 ,6669,6689,6684 ,0,0,0}, {18802,18803,18750 ,6672,6690,6671 ,0,0,0}, - {18803,18804,18751 ,6690,6686,6690 ,0,0,0}, {18805,18802,18749 ,6691,6672,6691 ,0,0,0}, - {16973,16976,17065 ,6671,6692,6672 ,0,0,0}, {16975,17063,16976 ,6693,6673,6692 ,0,0,0}, - {16968,17060,16975 ,6672,6689,6693 ,0,0,0}, {18753,18806,18805 ,6686,6690,6691 ,0,0,0}, - {17059,16968,16971 ,6694,6672,6695 ,0,0,0}, {18752,18807,18806 ,6690,6691,6690 ,0,0,0}, - {16971,16970,17057 ,6695,6696,6697 ,0,0,0}, {18807,18756,18755 ,6691,6672,6688 ,0,0,0}, - {16965,17053,17054 ,6698,6699,6700 ,0,0,0}, {18808,18809,18754 ,6672,6688,6688 ,0,0,0}, - {18758,18757,18810 ,6688,6691,6701 ,0,0,0}, {18811,18759,18760 ,6686,6672,6671 ,0,0,0}, - {17051,17053,16913 ,6676,6699,6702 ,0,0,0}, {18761,18812,18813 ,6672,6671,6671 ,0,0,0}, - {17051,16912,17047 ,6676,6687,6703 ,0,0,0}, {18814,18762,18763 ,6686,6704,6672 ,0,0,0}, - {16912,16960,17103 ,6687,6705,6676 ,0,0,0}, {18765,18815,18764 ,6686,6706,6672 ,0,0,0}, - {17046,17104,16960 ,6698,6699,6705 ,0,0,0}, {17108,16951,16950 ,6697,6707,6708 ,0,0,0}, - {17107,17046,16951 ,6709,6698,6707 ,0,0,0}, {18816,18768,18770 ,6690,6671,6701 ,0,0,0}, - {16950,17044,17110 ,6708,6672,6694 ,0,0,0}, {18771,16938,18817 ,6690,6690,6686 ,0,0,0}, - {17114,17113,17042 ,6673,6689,6710 ,0,0,0}, {16936,16938,17153 ,6711,6690,6690 ,0,0,0}, - {17116,17114,17040 ,6686,6673,6692 ,0,0,0}, {17150,16934,17152 ,6712,6713,6685 ,0,0,0}, - {17035,17036,17122 ,6714,6684,6669 ,0,0,0}, {17146,16931,16933 ,6715,6716,6717 ,0,0,0}, - {17031,17128,17030 ,6718,6719,6691 ,0,0,0}, {17134,17132,16919 ,6298,6670,6676 ,0,0,0}, - {17140,16924,16926 ,6686,6704,6720 ,0,0,0}, {16926,16928,17143 ,6720,6669,6715 ,0,0,0}, - {17134,16921,17137 ,6298,6718,6669 ,0,0,0}, {16921,16924,17138 ,6718,6704,6691 ,0,0,0}, - {18809,18755,18754 ,6688,6688,6688 ,0,0,0}, {17029,17132,17131 ,6676,6670,6684 ,0,0,0}, - {17146,17144,16931 ,6715,6669,6716 ,0,0,0}, {16933,16934,17150 ,6717,6713,6712 ,0,0,0}, - {16933,17150,17146 ,6717,6712,6715 ,0,0,0}, {17034,17125,17036 ,6673,6721,6684 ,0,0,0}, - {17034,17030,17126 ,6673,6691,6670 ,0,0,0}, {16936,17153,17152 ,6711,6690,6685 ,0,0,0}, - {16936,17152,16934 ,6711,6685,6713 ,0,0,0}, {17039,17119,17116 ,6691,6669,6686 ,0,0,0}, - {17120,17039,17035 ,6720,6691,6714 ,0,0,0}, {17155,17153,16938 ,6671,6690,6690 ,0,0,0}, - {18769,18818,18819 ,6686,6722,6688 ,0,0,0}, {18766,18767,18820 ,6691,6723,6706 ,0,0,0}, - {17144,17143,16928 ,6669,6715,6669 ,0,0,0}, {17144,16928,16931 ,6669,6669,6716 ,0,0,0}, - {17143,17140,16926 ,6715,6686,6720 ,0,0,0}, {17140,17138,16924 ,6686,6691,6704 ,0,0,0}, - {17138,17137,16921 ,6691,6669,6718 ,0,0,0}, {17134,16919,16921 ,6298,6676,6718 ,0,0,0}, - {17132,17029,16919 ,6670,6676,6676 ,0,0,0}, {17131,17128,17031 ,6684,6719,6718 ,0,0,0}, - {17131,17031,17029 ,6684,6718,6676 ,0,0,0}, {17128,17126,17030 ,6719,6670,6691 ,0,0,0}, - {17126,17125,17034 ,6670,6721,6673 ,0,0,0}, {17125,17122,17036 ,6721,6669,6684 ,0,0,0}, - {17122,17120,17035 ,6669,6720,6714 ,0,0,0}, {17120,17119,17039 ,6720,6669,6691 ,0,0,0}, - {17116,17040,17039 ,6686,6692,6691 ,0,0,0}, {17114,17042,17040 ,6673,6710,6692 ,0,0,0}, - {17113,17110,17044 ,6689,6694,6672 ,0,0,0}, {17113,17044,17042 ,6689,6672,6710 ,0,0,0}, - {17110,17108,16950 ,6694,6697,6708 ,0,0,0}, {17108,17107,16951 ,6697,6709,6707 ,0,0,0}, - {17107,17104,17046 ,6709,6699,6698 ,0,0,0}, {17104,17103,16960 ,6699,6676,6705 ,0,0,0}, - {17103,17047,16912 ,6676,6703,6687 ,0,0,0}, {17051,16913,16912 ,6676,6702,6687 ,0,0,0}, - {17053,16965,16913 ,6699,6698,6702 ,0,0,0}, {17054,17057,16970 ,6700,6697,6696 ,0,0,0}, - {17054,16970,16965 ,6700,6696,6698 ,0,0,0}, {17057,17059,16971 ,6697,6694,6695 ,0,0,0}, - {17059,17060,16968 ,6694,6689,6672 ,0,0,0}, {17060,17063,16975 ,6689,6673,6693 ,0,0,0}, - {17063,17065,16976 ,6673,6672,6692 ,0,0,0}, {17065,17066,16973 ,6672,6669,6671 ,0,0,0}, - {17069,16982,16973 ,6670,6675,6671 ,0,0,0}, {17071,16978,16982 ,6669,6684,6675 ,0,0,0}, - {17072,17075,16979 ,6689,6674,6673 ,0,0,0}, {17072,16979,16978 ,6689,6673,6684 ,0,0,0}, - {17075,17077,16988 ,6674,6683,6671 ,0,0,0}, {17077,17078,16985 ,6683,6684,6669 ,0,0,0}, - {17078,17081,16983 ,6684,6670,6677 ,0,0,0}, {17081,17083,17011 ,6670,6298,6676 ,0,0,0}, - {17083,17084,16994 ,6298,6669,6669 ,0,0,0}, {17087,16999,16994 ,6671,6681,6669 ,0,0,0}, - {17089,16997,16999 ,6672,6670,6681 ,0,0,0}, {17090,17093,17003 ,6681,6669,6669 ,0,0,0}, - {17090,17003,16997 ,6681,6669,6670 ,0,0,0}, {17093,17094,17001 ,6669,6678,6679 ,0,0,0}, - {17094,17095,17005 ,6678,6682,6671 ,0,0,0}, {17095,17096,17006 ,6682,6298,6672 ,0,0,0}, - {17096,17101,17007 ,6298,6671,6679 ,0,0,0}, {17101,17102,17009 ,6671,6671,6671 ,0,0,0}, - {18775,18787,17009 ,6671,6672,6671 ,0,0,0}, {18725,18795,18787 ,6681,6671,6672 ,0,0,0}, - {18724,18723,18786 ,6671,6672,6681 ,0,0,0}, {18724,18786,18795 ,6671,6681,6671 ,0,0,0}, - {18723,18727,18785 ,6672,6672,6672 ,0,0,0}, {18727,18774,18791 ,6672,6671,6672 ,0,0,0}, - {18774,18726,18790 ,6671,6672,6672 ,0,0,0}, {18726,18731,18789 ,6672,6672,6672 ,0,0,0}, - {18731,18730,18788 ,6672,6672,6672 ,0,0,0}, {18729,18792,18788 ,6681,6671,6672 ,0,0,0}, - {18728,18776,18792 ,6672,6671,6671 ,0,0,0}, {18733,18773,18794 ,6671,6672,6672 ,0,0,0}, - {18733,18794,18776 ,6671,6672,6671 ,0,0,0}, {18773,18732,18793 ,6672,6671,6671 ,0,0,0}, - {18732,18772,18796 ,6671,6672,6681 ,0,0,0}, {18772,18736,18784 ,6672,6672,6672 ,0,0,0}, - {18736,18735,18783 ,6672,6672,6672 ,0,0,0}, {18735,18734,18797 ,6672,6672,6671 ,0,0,0}, - {18739,18782,18797 ,6671,6680,6671 ,0,0,0}, {18738,18779,18782 ,6672,6671,6680 ,0,0,0}, - {18737,18743,18798 ,6671,6671,6672 ,0,0,0}, {18737,18798,18779 ,6671,6672,6671 ,0,0,0}, - {18743,18742,18781 ,6671,6671,6671 ,0,0,0}, {18742,18741,18780 ,6671,6672,6672 ,0,0,0}, - {18741,18740,18799 ,6672,6671,6672 ,0,0,0}, {18740,18746,18778 ,6671,6672,6298 ,0,0,0}, - {18746,18744,18777 ,6672,6687,6324 ,0,0,0}, {18745,18800,18777 ,6686,6685,6324 ,0,0,0}, - {18748,18801,18800 ,6671,6688,6685 ,0,0,0}, {18747,18751,18804 ,6688,6690,6686 ,0,0,0}, - {18747,18804,18801 ,6688,6686,6688 ,0,0,0}, {18751,18750,18803 ,6690,6671,6690 ,0,0,0}, - {18750,18749,18802 ,6671,6691,6672 ,0,0,0}, {18749,18753,18805 ,6691,6686,6691 ,0,0,0}, - {18753,18752,18806 ,6686,6690,6690 ,0,0,0}, {18752,18756,18807 ,6690,6672,6691 ,0,0,0}, - {18755,18809,18807 ,6688,6688,6691 ,0,0,0}, {18758,18808,18754 ,6688,6672,6688 ,0,0,0}, - {18757,18821,18810 ,6691,6691,6701 ,0,0,0}, {18758,18810,18808 ,6688,6701,6672 ,0,0,0}, - {18811,18821,18759 ,6686,6691,6672 ,0,0,0}, {18757,18759,18821 ,6691,6672,6691 ,0,0,0}, - {18811,18760,18813 ,6686,6671,6671 ,0,0,0}, {18812,18761,18762 ,6671,6672,6704 ,0,0,0}, - {18813,18760,18761 ,6671,6671,6672 ,0,0,0}, {18814,18763,18764 ,6686,6672,6672 ,0,0,0}, - {18814,18812,18762 ,6686,6671,6704 ,0,0,0}, {18822,18815,18765 ,6688,6706,6686 ,0,0,0}, - {18815,18814,18764 ,6706,6686,6672 ,0,0,0}, {18822,18766,18820 ,6688,6691,6706 ,0,0,0}, - {18766,18822,18765 ,6691,6688,6686 ,0,0,0}, {18767,18819,18820 ,6723,6688,6706 ,0,0,0}, - {18769,18768,18818 ,6686,6671,6722 ,0,0,0}, {18767,18769,18819 ,6723,6686,6688 ,0,0,0}, - {18816,18770,18817 ,6690,6701,6686 ,0,0,0}, {18818,18768,18816 ,6722,6671,6690 ,0,0,0}, - {16938,18771,17155 ,6690,6690,6671 ,0,0,0}, {18817,18770,18771 ,6686,6701,6690 ,0,0,0}, - {18817,16515,18319 ,6724,6725,6726 ,0,0,0}, {18281,18818,18816 ,6727,6728,6729 ,0,0,0}, - {18820,18283,18822 ,6730,6731,6732 ,0,0,0}, {18424,18819,18422 ,6733,6734,6735 ,0,0,0}, - {18823,18433,18824 ,6736,6737,6738 ,0,0,0}, {18308,18823,18825 ,6739,6736,6736 ,0,0,0}, - {18349,18826,18827 ,6740,6741,6742 ,0,0,0}, {18348,18828,18307 ,6743,6744,6745 ,0,0,0}, - {18431,18829,18830 ,6746,6747,6748 ,0,0,0}, {18478,18831,18436 ,6749,6750,6751 ,0,0,0}, - {18832,18833,18476 ,6752,6753,6754 ,0,0,0}, {18829,18364,18477 ,6747,6755,6756 ,0,0,0}, - {18799,18400,18391 ,6757,6758,6759 ,0,0,0}, {16802,18400,18832 ,6760,6758,6752 ,0,0,0}, - {18781,18393,18798 ,6761,6762,6763 ,0,0,0}, {18392,18781,18780 ,6764,6761,6765 ,0,0,0}, - {18463,18398,18782 ,6766,6767,6768 ,0,0,0}, {18463,18779,18462 ,6766,6769,6770 ,0,0,0}, - {18797,18390,18783 ,6771,6772,6773 ,0,0,0}, {18390,18797,18398 ,6772,6771,6767 ,0,0,0}, - {18784,18783,18367 ,6774,6773,6775 ,0,0,0}, {18390,18367,18783 ,6772,6775,6773 ,0,0,0}, - {18365,18796,18366 ,6776,6777,6778 ,0,0,0}, {18784,18367,18366 ,6774,6775,6778 ,0,0,0}, - {18371,18794,18389 ,6779,6780,6781 ,0,0,0}, {18793,18365,18389 ,6782,6776,6781 ,0,0,0}, - {18370,18792,18776 ,6783,6784,6785 ,0,0,0}, {18789,18788,18834 ,6786,6787,6788 ,0,0,0}, - {18834,18388,18835 ,6788,6789,6788 ,0,0,0}, {18788,18792,18388 ,6787,6784,6789 ,0,0,0}, - {18836,18369,18342 ,6790,6791,6792 ,0,0,0}, {18369,18836,18835 ,6791,6790,6788 ,0,0,0}, - {18341,18837,18342 ,6793,6794,6792 ,0,0,0}, {18836,18342,18837 ,6790,6792,6794 ,0,0,0}, - {18341,18374,18838 ,6793,6795,6796 ,0,0,0}, {18838,18837,18341 ,6796,6794,6793 ,0,0,0}, - {18839,18374,18380 ,6797,6795,6798 ,0,0,0}, {18374,18839,18838 ,6795,6797,6796 ,0,0,0}, - {18384,18840,18380 ,6799,6800,6798 ,0,0,0}, {18839,18380,18840 ,6797,6798,6800 ,0,0,0}, - {18384,18377,18841 ,6799,6801,6802 ,0,0,0}, {18841,18840,18384 ,6802,6800,6799 ,0,0,0}, - {18842,18377,18386 ,6803,6801,6804 ,0,0,0}, {18377,18842,18841 ,6801,6803,6802 ,0,0,0}, - {16616,17019,18386 ,6805,6806,6804 ,0,0,0}, {18842,18386,17019 ,6803,6804,6806 ,0,0,0}, - {18786,18843,18844 ,6807,6808,6809 ,0,0,0}, {18788,18388,18834 ,6787,6789,6788 ,0,0,0}, - {18835,18388,18369 ,6788,6789,6791 ,0,0,0}, {18370,18388,18792 ,6783,6789,6784 ,0,0,0}, - {18371,18370,18776 ,6779,6783,6785 ,0,0,0}, {18776,18794,18371 ,6785,6780,6779 ,0,0,0}, - {18389,18794,18793 ,6781,6780,6782 ,0,0,0}, {18365,18793,18796 ,6776,6782,6777 ,0,0,0}, - {18796,18784,18366 ,6777,6774,6778 ,0,0,0}, {18834,18845,18789 ,6788,6810,6786 ,0,0,0}, - {18843,18786,18785 ,6808,6807,6811 ,0,0,0}, {18845,18790,18789 ,6810,6812,6786 ,0,0,0}, - {18844,18846,18795 ,6809,6813,6814 ,0,0,0}, {18795,18786,18844 ,6814,6807,6809 ,0,0,0}, - {18795,18847,18787 ,6814,6815,6816 ,0,0,0}, {18847,18795,18846 ,6815,6814,6813 ,0,0,0}, - {17009,18787,17010 ,6817,6816,6818 ,0,0,0}, {18847,17010,18787 ,6815,6818,6816 ,0,0,0}, - {18785,18848,18843 ,6811,6819,6808 ,0,0,0}, {18398,18797,18782 ,6767,6771,6768 ,0,0,0}, - {18848,18785,18791 ,6819,6811,6820 ,0,0,0}, {18849,18848,18791 ,6821,6819,6820 ,0,0,0}, - {18790,18845,18849 ,6812,6810,6821 ,0,0,0}, {18790,18849,18791 ,6812,6821,6820 ,0,0,0}, - {18782,18779,18463 ,6768,6769,6766 ,0,0,0}, {18429,18830,18831 ,6822,6748,6750 ,0,0,0}, - {18462,18798,18393 ,6770,6763,6762 ,0,0,0}, {18798,18462,18779 ,6763,6770,6769 ,0,0,0}, - {18781,18392,18393 ,6761,6764,6762 ,0,0,0}, {18391,18392,18780 ,6759,6764,6765 ,0,0,0}, - {18778,18400,18799 ,6823,6758,6757 ,0,0,0}, {18780,18799,18391 ,6765,6757,6759 ,0,0,0}, - {16802,18832,18476 ,6760,6752,6754 ,0,0,0}, {18778,18832,18400 ,6823,6752,6758 ,0,0,0}, - {18829,18431,18364 ,6747,6746,6755 ,0,0,0}, {18833,18829,18477 ,6753,6747,6756 ,0,0,0}, - {18831,18478,18429 ,6750,6749,6822 ,0,0,0}, {18850,18428,18851 ,6824,6825,6826 ,0,0,0}, - {18831,18851,18436 ,6750,6826,6751 ,0,0,0}, {18850,18826,18358 ,6824,6741,6827 ,0,0,0}, - {18428,18850,18358 ,6825,6824,6827 ,0,0,0}, {18827,18828,18348 ,6742,6744,6743 ,0,0,0}, - {18358,18826,18340 ,6827,6741,6828 ,0,0,0}, {18821,18811,18852 ,6829,6830,6831 ,0,0,0}, - {18812,18814,18825 ,6832,6833,6736 ,0,0,0}, {18828,18824,18427 ,6744,6738,6834 ,0,0,0}, - {18816,18319,18281 ,6729,6726,6727 ,0,0,0}, {18820,18819,18424 ,6730,6734,6733 ,0,0,0}, - {18284,18308,18815 ,6835,6739,6836 ,0,0,0}, {18442,18823,18308 ,6837,6736,6739 ,0,0,0}, - {18822,18284,18815 ,6732,6835,6836 ,0,0,0}, {18424,18283,18820 ,6733,6731,6730 ,0,0,0}, - {18822,18283,18284 ,6732,6731,6835 ,0,0,0}, {18818,18422,18819 ,6728,6735,6734 ,0,0,0}, - {18422,18818,18281 ,6735,6728,6727 ,0,0,0}, {18319,18816,18817 ,6726,6729,6724 ,0,0,0}, - {16515,18817,16938 ,6725,6724,6838 ,0,0,0}, {18800,18853,18777 ,6839,6840,6841 ,0,0,0}, - {18778,18777,18853 ,6823,6841,6840 ,0,0,0}, {18853,18800,18854 ,6840,6839,6842 ,0,0,0}, - {18778,18853,18832 ,6823,6840,6752 ,0,0,0}, {18855,18854,18801 ,6843,6842,6844 ,0,0,0}, - {18477,18476,18833 ,6756,6754,6753 ,0,0,0}, {18803,18855,18804 ,6845,6843,6846 ,0,0,0}, - {18803,18856,18855 ,6845,6847,6843 ,0,0,0}, {18857,18856,18802 ,6848,6847,6849 ,0,0,0}, - {18429,18431,18830 ,6822,6746,6748 ,0,0,0}, {18806,18857,18805 ,6850,6848,6851 ,0,0,0}, - {18806,18858,18857 ,6850,6852,6848 ,0,0,0}, {18859,18858,18807 ,6853,6852,6854 ,0,0,0}, - {18428,18436,18851 ,6825,6751,6826 ,0,0,0}, {18809,18860,18859 ,6855,6856,6853 ,0,0,0}, - {18808,18860,18809 ,6857,6856,6855 ,0,0,0}, {18861,18860,18810 ,6858,6856,6859 ,0,0,0}, - {18349,18340,18826 ,6740,6828,6741 ,0,0,0}, {18852,18861,18821 ,6831,6858,6829 ,0,0,0}, - {18348,18349,18827 ,6743,6740,6742 ,0,0,0}, {18862,18852,18813 ,6860,6831,6861 ,0,0,0}, - {18427,18307,18828 ,6834,6745,6744 ,0,0,0}, {18825,18862,18812 ,6736,6860,6832 ,0,0,0}, - {18433,18427,18824 ,6737,6834,6738 ,0,0,0}, {18815,18308,18825 ,6836,6739,6736 ,0,0,0}, - {18433,18823,18442 ,6737,6736,6837 ,0,0,0}, {18815,18825,18814 ,6836,6736,6833 ,0,0,0}, - {18813,18812,18862 ,6861,6832,6860 ,0,0,0}, {18811,18813,18852 ,6830,6861,6831 ,0,0,0}, - {18810,18821,18861 ,6859,6829,6858 ,0,0,0}, {18808,18810,18860 ,6857,6859,6856 ,0,0,0}, - {18807,18809,18859 ,6854,6855,6853 ,0,0,0}, {18806,18807,18858 ,6850,6854,6852 ,0,0,0}, - {18802,18805,18857 ,6849,6851,6848 ,0,0,0}, {18803,18802,18856 ,6845,6849,6847 ,0,0,0}, - {18801,18804,18855 ,6844,6846,6843 ,0,0,0}, {18800,18801,18854 ,6839,6844,6842 ,0,0,0}, - {18863,16810,16811 ,6862,6863,6864 ,0,0,0}, {18515,18504,17742 ,6865,6866,6867 ,0,0,0}, - {18864,18512,18511 ,6868,6869,6870 ,0,0,0}, {18514,17735,18501 ,6871,6872,6873 ,0,0,0}, - {17720,18494,18498 ,6874,6875,6876 ,0,0,0}, {17732,18517,18518 ,6877,6878,6879 ,0,0,0}, - {18528,17727,17726 ,6880,6881,6882 ,0,0,0}, {18525,17719,17722 ,6883,6884,6885 ,0,0,0}, - {18865,18538,18536 ,6886,6887,6888 ,0,0,0}, {18866,18532,17729 ,6889,6890,5525 ,0,0,0}, - {18549,18546,17805 ,6891,6892,6893 ,0,0,0}, {18542,18867,18868 ,6894,6895,6896 ,0,0,0}, - {18556,17794,18610 ,6897,6898,6899 ,0,0,0}, {18552,17800,18555 ,6900,6901,6902 ,0,0,0}, - {17841,18561,17839 ,6903,6904,6905 ,0,0,0}, {18604,18557,17837 ,6906,6907,6908 ,0,0,0}, - {18593,18869,18595 ,6909,6910,6911 ,0,0,0}, {18601,17842,18567 ,6912,6913,6914 ,0,0,0}, - {18870,18582,18574 ,6915,6916,6917 ,0,0,0}, {18592,18871,18579 ,6918,6919,6920 ,0,0,0}, - {18872,18589,18590 ,6921,6922,6923 ,0,0,0}, {17898,17901,18583 ,6924,6925,6926 ,0,0,0}, - {17898,18586,17899 ,6924,6927,5712 ,0,0,0}, {17886,17885,18576 ,6928,6929,6930 ,0,0,0}, - {17886,18591,17901 ,6928,6931,6925 ,0,0,0}, {18596,18598,17885 ,6932,6933,6929 ,0,0,0}, - {17885,18598,18576 ,6929,6933,6930 ,0,0,0}, {18596,17885,17930 ,6932,6929,6934 ,0,0,0}, - {17930,17932,18570 ,6934,6935,6936 ,0,0,0}, {18570,18596,17930 ,6936,6932,6934 ,0,0,0}, - {18602,17932,17934 ,6937,6935,6938 ,0,0,0}, {17932,18602,18570 ,6935,6937,6936 ,0,0,0}, - {18602,17934,18563 ,6937,6938,6939 ,0,0,0}, {17935,18564,18563 ,6940,6941,6939 ,0,0,0}, - {18563,17934,17935 ,6939,6938,6940 ,0,0,0}, {18564,17937,18608 ,6941,6942,6943 ,0,0,0}, - {17937,18564,17935 ,6942,6941,6940 ,0,0,0}, {18558,18608,17938 ,6944,6943,6945 ,0,0,0}, - {17937,17938,18608 ,6942,6945,6943 ,0,0,0}, {17938,18873,18553 ,6945,6946,6947 ,0,0,0}, - {18553,18558,17938 ,6947,6944,6945 ,0,0,0}, {18550,18873,18874 ,6948,6946,6949 ,0,0,0}, - {18873,18550,18553 ,6946,6948,6947 ,0,0,0}, {18875,18547,18874 ,6950,6951,6949 ,0,0,0}, - {18550,18874,18547 ,6948,6949,6951 ,0,0,0}, {18875,16908,16906 ,6950,126,3135 ,0,0,0}, - {16906,18547,18875 ,3135,6951,6950 ,0,0,0}, {17901,18591,18583 ,6925,6931,6926 ,0,0,0}, - {17886,18576,18591 ,6928,6930,6931 ,0,0,0}, {18586,18579,17899 ,6927,6920,5712 ,0,0,0}, - {17898,18583,18586 ,6924,6926,6927 ,0,0,0}, {18871,18592,18589 ,6919,6918,6922 ,0,0,0}, - {18871,17899,18579 ,6919,5712,6920 ,0,0,0}, {18872,18590,18582 ,6921,6923,6916 ,0,0,0}, - {18872,18871,18589 ,6921,6919,6922 ,0,0,0}, {18869,18870,18574 ,6910,6915,6917 ,0,0,0}, - {18870,18872,18582 ,6915,6921,6916 ,0,0,0}, {17844,18869,18593 ,6952,6910,6909 ,0,0,0}, - {18595,18869,18574 ,6911,6910,6917 ,0,0,0}, {17844,18567,17842 ,6952,6914,6913 ,0,0,0}, - {18567,17844,18593 ,6914,6952,6909 ,0,0,0}, {18599,17841,17842 ,6953,6903,6913 ,0,0,0}, - {18599,17842,18601 ,6953,6913,6912 ,0,0,0}, {18561,18606,17839 ,6904,6954,6905 ,0,0,0}, - {18599,18561,17841 ,6953,6904,6903 ,0,0,0}, {18604,17837,18606 ,6906,6908,6954 ,0,0,0}, - {17839,18606,17837 ,6905,6954,6908 ,0,0,0}, {17796,18557,18610 ,6955,6907,6899 ,0,0,0}, - {17837,18557,17796 ,6908,6907,6955 ,0,0,0}, {17806,17794,18556 ,6956,6898,6897 ,0,0,0}, - {17794,17796,18610 ,6898,6955,6899 ,0,0,0}, {17806,18555,17800 ,6956,6902,6901 ,0,0,0}, - {18555,17806,18556 ,6902,6956,6897 ,0,0,0}, {18549,17805,17800 ,6891,6893,6901 ,0,0,0}, - {18549,17800,18552 ,6891,6901,6900 ,0,0,0}, {18546,18544,18868 ,6892,6957,6896 ,0,0,0}, - {18546,18868,17805 ,6892,6896,6893 ,0,0,0}, {18542,18540,18867 ,6894,6958,6895 ,0,0,0}, - {18544,18542,18868 ,6957,6894,6896 ,0,0,0}, {18538,18865,18540 ,6887,6886,6958 ,0,0,0}, - {18867,18540,18865 ,6895,6958,6886 ,0,0,0}, {18866,18536,18534 ,6889,6888,6959 ,0,0,0}, - {18865,18536,18866 ,6886,6888,6889 ,0,0,0}, {17729,18532,18530 ,5525,6890,6960 ,0,0,0}, - {18866,18534,18532 ,6889,6959,6890 ,0,0,0}, {18530,18528,17726 ,6960,6880,6882 ,0,0,0}, - {17726,17729,18530 ,6882,5525,6960 ,0,0,0}, {18495,17722,17727 ,6961,6885,6881 ,0,0,0}, - {18495,17727,18528 ,6961,6881,6880 ,0,0,0}, {18525,18521,17719 ,6883,6962,6884 ,0,0,0}, - {18495,18525,17722 ,6961,6883,6885 ,0,0,0}, {17720,17719,18494 ,6874,6884,6875 ,0,0,0}, - {18521,18494,17719 ,6962,6875,6884 ,0,0,0}, {17725,18498,18517 ,6963,6876,6878 ,0,0,0}, - {17720,18498,17725 ,6874,6876,6963 ,0,0,0}, {17734,17732,18518 ,6964,6877,6879 ,0,0,0}, - {17732,17725,18517 ,6877,6963,6878 ,0,0,0}, {17734,18501,17735 ,6964,6873,6872 ,0,0,0}, - {18501,17734,18518 ,6873,6964,6879 ,0,0,0}, {18514,18515,17742 ,6871,6865,6867 ,0,0,0}, - {18514,17742,17735 ,6871,6867,6872 ,0,0,0}, {18504,18512,18876 ,6866,6869,6965 ,0,0,0}, - {18504,18876,17742 ,6866,6965,6867 ,0,0,0}, {18864,18511,18863 ,6868,6870,6862 ,0,0,0}, - {18876,18512,18864 ,6965,6869,6868 ,0,0,0}, {16810,18863,18511 ,6863,6862,6870 ,0,0,0}, - {16780,18877,18438 ,6966,6967,6968 ,0,0,0}, {18878,18482,18879 ,6969,6970,6971 ,0,0,0}, - {18350,18351,18880 ,6972,6973,6974 ,0,0,0}, {18484,18881,18485 ,6975,6976,6977 ,0,0,0}, - {18882,18883,18426 ,6978,6979,6980 ,0,0,0}, {18884,18481,18885 ,6981,6982,6983 ,0,0,0}, - {18483,18437,18886 ,6984,6985,6986 ,0,0,0}, {18488,18887,18888 ,6987,6988,6989 ,0,0,0}, - {18479,18889,18480 ,6990,6991,6992 ,0,0,0}, {18489,18890,18362 ,6993,6994,6995 ,0,0,0}, - {18891,18489,18430 ,6996,6993,6997 ,0,0,0}, {18363,18892,18490 ,6998,6999,7000 ,0,0,0}, - {18893,18363,18362 ,7001,6998,6995 ,0,0,0}, {18491,18490,18894 ,7002,7000,7003 ,0,0,0}, - {18892,18894,18490 ,6999,7003,7000 ,0,0,0}, {18895,18475,18491 ,7004,7005,7002 ,0,0,0}, - {18491,18894,18895 ,7002,7003,7004 ,0,0,0}, {18475,18896,18493 ,7005,7006,7007 ,0,0,0}, - {18896,18475,18895 ,7006,7005,7004 ,0,0,0}, {18492,18493,18897 ,7008,7007,7009 ,0,0,0}, - {18896,18897,18493 ,7006,7009,7007 ,0,0,0}, {18898,16802,18492 ,7010,82,7008 ,0,0,0}, - {18492,18897,18898 ,7008,7009,7010 ,0,0,0}, {16801,16802,18898 ,7011,82,7010 ,0,0,0}, - {18430,18888,18891 ,6997,6989,6996 ,0,0,0}, {18890,18893,18362 ,6994,7001,6995 ,0,0,0}, - {18893,18892,18363 ,7001,6999,6998 ,0,0,0}, {18890,18489,18891 ,6994,6993,6996 ,0,0,0}, - {18887,18488,18480 ,6988,6987,6992 ,0,0,0}, {18888,18430,18488 ,6989,6997,6987 ,0,0,0}, - {18480,18889,18887 ,6992,6991,6988 ,0,0,0}, {18884,18889,18479 ,6981,6991,6990 ,0,0,0}, - {18899,18485,18881 ,7012,6977,6976 ,0,0,0}, {18483,18885,18481 ,6984,6983,6982 ,0,0,0}, - {18479,18481,18884 ,6990,6982,6981 ,0,0,0}, {18437,18485,18899 ,6985,6977,7012 ,0,0,0}, - {18437,18899,18886 ,6985,7012,6986 ,0,0,0}, {18885,18483,18886 ,6983,6984,6986 ,0,0,0}, - {18482,18350,18879 ,6970,6972,6971 ,0,0,0}, {18881,18484,18883 ,6976,6975,6979 ,0,0,0}, - {18882,18426,18425 ,6978,6980,7013 ,0,0,0}, {18426,18883,18484 ,6980,6979,6975 ,0,0,0}, - {18425,18482,18878 ,7013,6970,6969 ,0,0,0}, {18425,18878,18882 ,7013,6969,6978 ,0,0,0}, - {18351,18877,18880 ,6973,6967,6974 ,0,0,0}, {18879,18350,18880 ,6971,6972,6974 ,0,0,0}, - {16780,18438,16777 ,6966,6968,7014 ,0,0,0}, {18877,18351,18438 ,6967,6973,6968 ,0,0,0}, - {18899,16795,18886 ,730,730,730 ,0,0,0}, {18894,18892,18890 ,730,730,730 ,0,0,0}, - {18892,18893,18890 ,730,730,730 ,0,0,0}, {18890,18891,18895 ,730,730,730 ,0,0,0}, - {18895,18894,18890 ,730,730,730 ,0,0,0}, {18896,18891,18888 ,730,730,730 ,0,0,0}, - {18891,18896,18895 ,730,730,730 ,0,0,0}, {18887,18897,18888 ,730,730,730 ,0,0,0}, - {18896,18888,18897 ,730,730,730 ,0,0,0}, {18898,18887,16801 ,730,730,730 ,0,0,0}, - {18898,18897,18887 ,730,730,730 ,0,0,0}, {18889,18884,16799 ,730,730,730 ,0,0,0}, - {18887,18889,16801 ,730,730,730 ,0,0,0}, {18881,16790,16793 ,730,730,7015 ,0,0,0}, - {16796,16799,18885 ,730,730,730 ,0,0,0}, {18878,16784,16787 ,7016,7015,7017 ,0,0,0}, - {18883,16787,16789 ,730,7017,7017 ,0,0,0}, {16781,16783,18880 ,730,730,730 ,0,0,0}, - {16780,16756,16758 ,730,730,730 ,0,0,0}, {16754,16781,18877 ,7015,730,730 ,0,0,0}, - {16760,16774,16772 ,730,730,7017 ,0,0,0}, {16756,16775,16762 ,730,7017,7015 ,0,0,0}, - {16768,16764,16769 ,730,730,730 ,0,0,0}, {16764,16772,16769 ,730,7017,730 ,0,0,0}, - {16765,16764,16768 ,730,730,730 ,0,0,0}, {16760,16762,16774 ,730,7015,730 ,0,0,0}, - {16764,16760,16772 ,730,730,7017 ,0,0,0}, {16775,16756,16779 ,7017,730,730 ,0,0,0}, - {16774,16762,16775 ,730,7015,7017 ,0,0,0}, {16780,16779,16756 ,730,730,730 ,0,0,0}, - {18877,16758,16754 ,730,730,7015 ,0,0,0}, {18877,16780,16758 ,730,730,730 ,0,0,0}, - {16783,18879,18880 ,730,7016,730 ,0,0,0}, {18880,18877,16781 ,730,730,730 ,0,0,0}, - {18878,18879,16784 ,7016,7016,7015 ,0,0,0}, {16783,16784,18879 ,730,7015,7016 ,0,0,0}, - {16787,18883,18882 ,7017,730,730 ,0,0,0}, {16787,18882,18878 ,7017,730,7016 ,0,0,0}, - {16789,16790,18881 ,7017,730,730 ,0,0,0}, {18883,16789,18881 ,730,7017,730 ,0,0,0}, - {16793,16795,18899 ,7015,730,730 ,0,0,0}, {18881,16793,18899 ,730,7015,730 ,0,0,0}, - {18886,16796,18885 ,730,730,730 ,0,0,0}, {18886,16795,16796 ,730,730,730 ,0,0,0}, - {18889,16799,16801 ,730,730,730 ,0,0,0}, {18884,18885,16799 ,730,730,730 ,0,0,0}, - {18900,18901,16752 ,7018,7019,7020 ,0,0,0}, {16752,18902,18900 ,7020,7021,7018 ,0,0,0}, - {16752,16735,18902 ,7020,7022,7021 ,0,0,0}, {16752,18903,18904 ,7020,7023,7024 ,0,0,0}, - {18901,18903,16752 ,7019,7023,7020 ,0,0,0}, {16752,18905,18906 ,7020,7025,7026 ,0,0,0}, - {18904,18905,16752 ,7024,7025,7020 ,0,0,0}, {18906,18907,16752 ,7026,7027,7020 ,0,0,0}, - {18908,16752,18909 ,7028,7020,7029 ,0,0,0}, {16752,18907,18909 ,7020,7027,7029 ,0,0,0}, - {18910,16752,18911 ,7030,7020,7031 ,0,0,0}, {16752,18908,18911 ,7020,7028,7031 ,0,0,0}, - {18912,16752,18913 ,7032,7020,7033 ,0,0,0}, {16752,18910,18913 ,7020,7030,7033 ,0,0,0}, - {16751,16752,18912 ,7034,7020,7032 ,0,0,0}, {16734,18407,18902 ,7035,7036,7037 ,0,0,0}, - {18904,18903,18397 ,7038,7039,7040 ,0,0,0}, {18901,18900,18406 ,7041,7042,7043 ,0,0,0}, - {18906,18464,18907 ,7044,7045,7046 ,0,0,0}, {18396,18409,18905 ,7047,7048,7049 ,0,0,0}, - {18465,18290,18908 ,7050,7051,7052 ,0,0,0}, {18465,18909,18356 ,7050,7053,7054 ,0,0,0}, - {18354,18413,18910 ,7055,7056,7057 ,0,0,0}, {18910,18911,18354 ,7057,7058,7055 ,0,0,0}, - {18913,18413,18399 ,7059,7056,7060 ,0,0,0}, {18413,18913,18910 ,7056,7059,7057 ,0,0,0}, - {18387,18912,18399 ,7061,7062,7060 ,0,0,0}, {18913,18399,18912 ,7059,7060,7062 ,0,0,0}, - {18387,16750,16751 ,7061,7063,4910 ,0,0,0}, {16751,18912,18387 ,4910,7062,7061 ,0,0,0}, - {18464,18906,18409 ,7045,7044,7048 ,0,0,0}, {18290,18911,18908 ,7051,7058,7052 ,0,0,0}, - {18354,18911,18290 ,7055,7058,7051 ,0,0,0}, {18397,18903,18405 ,7040,7039,7064 ,0,0,0}, - {18356,18909,18907 ,7054,7053,7046 ,0,0,0}, {18465,18908,18909 ,7050,7052,7053 ,0,0,0}, - {18464,18356,18907 ,7045,7054,7046 ,0,0,0}, {18905,18409,18906 ,7049,7048,7044 ,0,0,0}, - {18904,18397,18396 ,7038,7040,7047 ,0,0,0}, {18396,18905,18904 ,7047,7049,7038 ,0,0,0}, - {18900,18407,18406 ,7042,7036,7043 ,0,0,0}, {18405,18901,18406 ,7064,7041,7043 ,0,0,0}, - {18903,18901,18405 ,7039,7041,7064 ,0,0,0}, {16734,18902,16735 ,7035,7037,4929 ,0,0,0}, - {18407,18900,18902 ,7036,7042,7037 ,0,0,0}, {18914,18915,16718 ,7018,7019,7065 ,0,0,0}, - {16718,18916,18914 ,7065,7021,7018 ,0,0,0}, {16718,16701,18916 ,7065,7066,7021 ,0,0,0}, - {16718,18917,18918 ,7065,7023,7024 ,0,0,0}, {18915,18917,16718 ,7019,7023,7065 ,0,0,0}, - {16718,18919,18920 ,7065,7025,7026 ,0,0,0}, {18918,18919,16718 ,7024,7025,7065 ,0,0,0}, - {18920,18921,16718 ,7026,7027,7065 ,0,0,0}, {18922,16718,18923 ,7028,7065,7029 ,0,0,0}, - {16718,18921,18923 ,7065,7027,7029 ,0,0,0}, {18924,16718,18925 ,7030,7065,7031 ,0,0,0}, - {16718,18922,18925 ,7065,7028,7031 ,0,0,0}, {18926,16718,18927 ,7032,7065,7033 ,0,0,0}, - {16718,18924,18927 ,7065,7030,7033 ,0,0,0}, {16717,16718,18926 ,7067,7065,7032 ,0,0,0}, - {16700,18456,18916 ,7068,7069,7070 ,0,0,0}, {18918,18917,18297 ,7071,7072,7073 ,0,0,0}, - {18915,18914,18336 ,7074,7075,7076 ,0,0,0}, {18920,18316,18921 ,7077,7078,7079 ,0,0,0}, - {18298,18461,18919 ,7047,7080,7081 ,0,0,0}, {18280,18459,18922 ,7082,7083,7084 ,0,0,0}, - {18280,18923,18460 ,7082,7085,7086 ,0,0,0}, {18458,18334,18924 ,7087,7088,7089 ,0,0,0}, - {18924,18925,18458 ,7089,7090,7087 ,0,0,0}, {18927,18334,18335 ,7091,7088,7092 ,0,0,0}, - {18334,18927,18924 ,7088,7091,7089 ,0,0,0}, {18457,18926,18335 ,7093,7094,7092 ,0,0,0}, - {18927,18335,18926 ,7091,7092,7094 ,0,0,0}, {18457,16716,16717 ,7093,4831,4942 ,0,0,0}, - {16717,18926,18457 ,4942,7094,7093 ,0,0,0}, {18316,18920,18461 ,7078,7077,7080 ,0,0,0}, - {18459,18925,18922 ,7083,7090,7084 ,0,0,0}, {18458,18925,18459 ,7087,7090,7083 ,0,0,0}, - {18297,18917,18333 ,7073,7072,7095 ,0,0,0}, {18460,18923,18921 ,7086,7085,7079 ,0,0,0}, - {18280,18922,18923 ,7082,7084,7085 ,0,0,0}, {18316,18460,18921 ,7078,7086,7079 ,0,0,0}, - {18919,18461,18920 ,7081,7080,7077 ,0,0,0}, {18918,18297,18298 ,7071,7073,7047 ,0,0,0}, - {18298,18919,18918 ,7047,7081,7071 ,0,0,0}, {18914,18456,18336 ,7075,7069,7076 ,0,0,0}, - {18333,18915,18336 ,7095,7074,7076 ,0,0,0}, {18917,18915,18333 ,7072,7074,7095 ,0,0,0}, - {16700,18916,16701 ,7068,7070,4899 ,0,0,0}, {18456,18914,18916 ,7069,7075,7070 ,0,0,0}, - {18928,18929,16684 ,7018,7019,7065 ,0,0,0}, {16684,18930,18928 ,7065,7021,7018 ,0,0,0}, - {16684,16667,18930 ,7065,7096,7021 ,0,0,0}, {16684,18931,18932 ,7065,7023,7024 ,0,0,0}, - {18929,18931,16684 ,7019,7023,7065 ,0,0,0}, {16684,18933,18934 ,7065,7025,7026 ,0,0,0}, - {18932,18933,16684 ,7024,7025,7065 ,0,0,0}, {18934,18935,16684 ,7026,7027,7065 ,0,0,0}, - {18936,16684,18937 ,7028,7065,7029 ,0,0,0}, {16684,18935,18937 ,7065,7027,7029 ,0,0,0}, - {18938,16684,18939 ,7030,7065,7031 ,0,0,0}, {16684,18936,18939 ,7065,7028,7031 ,0,0,0}, - {18940,16684,18941 ,7032,7065,7033 ,0,0,0}, {16684,18938,18941 ,7065,7030,7033 ,0,0,0}, - {16683,16684,18940 ,7097,7065,7032 ,0,0,0}, {16666,18454,18930 ,7098,7099,7100 ,0,0,0}, - {18932,18931,18419 ,7101,7102,7103 ,0,0,0}, {18929,18928,18446 ,7104,7105,7076 ,0,0,0}, - {18934,18418,18935 ,7106,7107,7108 ,0,0,0}, {18453,18452,18933 ,7109,7110,7111 ,0,0,0}, - {18330,18327,18936 ,7112,7113,7114 ,0,0,0}, {18330,18937,18447 ,7112,7115,7116 ,0,0,0}, - {18332,18331,18938 ,7117,7118,7119 ,0,0,0}, {18938,18939,18332 ,7119,7120,7117 ,0,0,0}, - {18941,18331,18329 ,7121,7118,7122 ,0,0,0}, {18331,18941,18938 ,7118,7121,7119 ,0,0,0}, - {18328,18940,18329 ,7123,7124,7122 ,0,0,0}, {18941,18329,18940 ,7121,7122,7124 ,0,0,0}, - {18328,16682,16683 ,7123,4831,4831 ,0,0,0}, {16683,18940,18328 ,4831,7124,7123 ,0,0,0}, - {18418,18934,18452 ,7107,7106,7110 ,0,0,0}, {18327,18939,18936 ,7113,7120,7114 ,0,0,0}, - {18332,18939,18327 ,7117,7120,7113 ,0,0,0}, {18419,18931,18445 ,7103,7102,7125 ,0,0,0}, - {18447,18937,18935 ,7116,7115,7108 ,0,0,0}, {18330,18936,18937 ,7112,7114,7115 ,0,0,0}, - {18418,18447,18935 ,7107,7116,7108 ,0,0,0}, {18933,18452,18934 ,7111,7110,7106 ,0,0,0}, - {18932,18419,18453 ,7101,7103,7109 ,0,0,0}, {18453,18933,18932 ,7109,7111,7101 ,0,0,0}, - {18928,18454,18446 ,7105,7099,7076 ,0,0,0}, {18445,18929,18446 ,7125,7104,7076 ,0,0,0}, - {18931,18929,18445 ,7102,7104,7125 ,0,0,0}, {16666,18930,16667 ,7098,7100,4865 ,0,0,0}, - {18454,18928,18930 ,7099,7105,7100 ,0,0,0}, {18942,18943,16650 ,7018,7019,7126 ,0,0,0}, - {16650,18944,18942 ,7126,7021,7018 ,0,0,0}, {16650,16633,18944 ,7126,7127,7021 ,0,0,0}, - {16650,18945,18946 ,7126,7023,7024 ,0,0,0}, {18943,18945,16650 ,7019,7023,7126 ,0,0,0}, - {16650,18947,18948 ,7126,7025,7026 ,0,0,0}, {18946,18947,16650 ,7024,7025,7126 ,0,0,0}, - {18948,18949,16650 ,7026,7027,7126 ,0,0,0}, {18950,16650,18951 ,7028,7126,7029 ,0,0,0}, - {16650,18949,18951 ,7126,7027,7029 ,0,0,0}, {18952,16650,18953 ,7030,7126,7031 ,0,0,0}, - {16650,18950,18953 ,7126,7028,7031 ,0,0,0}, {18954,16650,18955 ,7032,7126,7033 ,0,0,0}, - {16650,18952,18955 ,7126,7030,7033 ,0,0,0}, {16649,16650,18954 ,7128,7126,7032 ,0,0,0}, - {16632,18435,18944 ,7129,7099,7130 ,0,0,0}, {18946,18945,18440 ,7131,7132,7133 ,0,0,0}, - {18943,18942,18434 ,7041,7075,7134 ,0,0,0}, {18948,18441,18949 ,7135,7107,7136 ,0,0,0}, - {18439,18467,18947 ,7137,7138,7139 ,0,0,0}, {18317,18318,18950 ,7140,7141,7142 ,0,0,0}, - {18317,18951,18423 ,7140,7143,7144 ,0,0,0}, {18401,18402,18952 ,7145,7146,7147 ,0,0,0}, - {18952,18953,18401 ,7147,7148,7145 ,0,0,0}, {18955,18402,18487 ,7149,7146,7150 ,0,0,0}, - {18402,18955,18952 ,7146,7149,7147 ,0,0,0}, {18486,18954,18487 ,7151,7152,7150 ,0,0,0}, - {18955,18487,18954 ,7149,7150,7152 ,0,0,0}, {18486,16648,16649 ,7151,7153,4831 ,0,0,0}, - {16649,18954,18486 ,4831,7152,7151 ,0,0,0}, {18441,18948,18467 ,7107,7135,7138 ,0,0,0}, - {18318,18953,18950 ,7141,7148,7142 ,0,0,0}, {18401,18953,18318 ,7145,7148,7141 ,0,0,0}, - {18440,18945,18443 ,7133,7132,7154 ,0,0,0}, {18423,18951,18949 ,7144,7143,7136 ,0,0,0}, - {18317,18950,18951 ,7140,7142,7143 ,0,0,0}, {18441,18423,18949 ,7107,7144,7136 ,0,0,0}, - {18947,18467,18948 ,7139,7138,7135 ,0,0,0}, {18946,18440,18439 ,7131,7133,7137 ,0,0,0}, - {18439,18947,18946 ,7137,7139,7131 ,0,0,0}, {18942,18435,18434 ,7075,7099,7134 ,0,0,0}, - {18443,18943,18434 ,7154,7041,7134 ,0,0,0}, {18945,18943,18443 ,7132,7041,7154 ,0,0,0}, - {16632,18944,16633 ,7129,7130,4929 ,0,0,0}, {18435,18942,18944 ,7099,7075,7130 ,0,0,0}, - {16593,16592,18956 ,4777,21,7155 ,0,0,0}, {18300,18313,18957 ,7156,7157,7158 ,0,0,0}, - {18309,18958,18959 ,7159,7160,7161 ,0,0,0}, {18960,18961,18291 ,7162,7163,7164 ,0,0,0}, - {18962,18357,18315 ,7165,7166,7167 ,0,0,0}, {18368,18412,18963 ,7168,7169,7170 ,0,0,0}, - {18353,18964,18965 ,7171,7172,7173 ,0,0,0}, {18343,18966,18375 ,7174,7175,7176 ,0,0,0}, - {18967,18968,18372 ,7177,7178,7179 ,0,0,0}, {18969,18970,18381 ,7180,7181,7182 ,0,0,0}, - {18971,18373,18375 ,7183,7184,7176 ,0,0,0}, {18972,18973,18382 ,7185,7186,7187 ,0,0,0}, - {18972,18379,18970 ,7185,7188,7181 ,0,0,0}, {18383,18973,18974 ,7189,7186,7190 ,0,0,0}, - {18973,18383,18382 ,7186,7189,7187 ,0,0,0}, {18975,18378,18974 ,7191,7192,7190 ,0,0,0}, - {18383,18974,18378 ,7189,7190,7192 ,0,0,0}, {18975,18976,18376 ,7191,7193,7194 ,0,0,0}, - {18376,18378,18975 ,7194,7192,7191 ,0,0,0}, {18385,18976,18977 ,7195,7193,7196 ,0,0,0}, - {18976,18385,18376 ,7193,7195,7194 ,0,0,0}, {16615,18386,18977 ,7197,7198,7196 ,0,0,0}, - {18385,18977,18386 ,7195,7196,7198 ,0,0,0}, {16616,18386,16615 ,7199,7198,7197 ,0,0,0}, - {18343,18968,18966 ,7174,7178,7175 ,0,0,0}, {18379,18381,18970 ,7188,7182,7181 ,0,0,0}, - {18972,18382,18379 ,7185,7187,7188 ,0,0,0}, {18373,18971,18969 ,7184,7183,7180 ,0,0,0}, - {18969,18381,18373 ,7180,7182,7184 ,0,0,0}, {18971,18375,18966 ,7183,7176,7175 ,0,0,0}, - {18968,18343,18372 ,7178,7174,7179 ,0,0,0}, {18368,18963,18967 ,7168,7170,7177 ,0,0,0}, - {18368,18967,18372 ,7168,7177,7179 ,0,0,0}, {18357,18960,18291 ,7166,7162,7164 ,0,0,0}, - {18965,18412,18353 ,7173,7169,7171 ,0,0,0}, {18412,18965,18963 ,7169,7173,7170 ,0,0,0}, - {18292,18291,18961 ,7200,7164,7163 ,0,0,0}, {18353,18292,18964 ,7171,7200,7172 ,0,0,0}, - {18964,18292,18961 ,7172,7200,7163 ,0,0,0}, {18962,18960,18357 ,7165,7162,7166 ,0,0,0}, - {18978,18962,18315 ,7201,7165,7167 ,0,0,0}, {18300,18957,18978 ,7156,7158,7201 ,0,0,0}, - {18300,18978,18315 ,7156,7201,7167 ,0,0,0}, {18414,18956,18958 ,7202,7155,7160 ,0,0,0}, - {18959,18313,18309 ,7161,7157,7159 ,0,0,0}, {18313,18959,18957 ,7157,7161,7158 ,0,0,0}, - {18414,18958,18309 ,7202,7160,7159 ,0,0,0}, {18956,18414,16593 ,7155,7202,4777 ,0,0,0}, - {16581,18969,16584 ,730,7015,730 ,0,0,0}, {18959,18958,18964 ,730,730,730 ,0,0,0}, - {16591,16587,18968 ,730,730,730 ,0,0,0}, {16585,18971,18966 ,730,730,7015 ,0,0,0}, - {18965,18964,18958 ,730,730,730 ,0,0,0}, {16592,18967,18956 ,730,730,730 ,0,0,0}, - {18962,18978,18957 ,730,730,730 ,0,0,0}, {18957,18959,18961 ,730,730,730 ,0,0,0}, - {18957,18961,18960 ,730,730,730 ,0,0,0}, {18962,18957,18960 ,730,730,730 ,0,0,0}, - {18958,18956,18965 ,730,730,730 ,0,0,0}, {18961,18959,18964 ,730,730,730 ,0,0,0}, - {18956,18963,18965 ,730,730,730 ,0,0,0}, {18967,16592,18968 ,730,730,730 ,0,0,0}, - {18963,18956,18967 ,730,730,730 ,0,0,0}, {18968,16587,18966 ,730,730,7015 ,0,0,0}, - {18968,16592,16591 ,730,730,730 ,0,0,0}, {18971,16585,16584 ,730,730,730 ,0,0,0}, - {18966,16587,16585 ,7015,730,730 ,0,0,0}, {18970,18969,16581 ,730,7015,730 ,0,0,0}, - {18969,18971,16584 ,7015,730,730 ,0,0,0}, {18972,16581,16580 ,7015,730,730 ,0,0,0}, - {16581,18972,18970 ,730,7015,730 ,0,0,0}, {18972,16580,18973 ,7015,730,730 ,0,0,0}, - {16573,18973,16577 ,730,730,730 ,0,0,0}, {18973,16580,16577 ,730,730,730 ,0,0,0}, - {16573,16572,18974 ,730,730,7015 ,0,0,0}, {18974,18973,16573 ,7015,730,730 ,0,0,0}, - {18974,16572,18975 ,7015,730,7015 ,0,0,0}, {16576,18976,18975 ,730,730,7015 ,0,0,0}, - {18975,16572,16576 ,7015,730,730 ,0,0,0}, {18976,16571,18977 ,730,730,7015 ,0,0,0}, - {16571,18976,16576 ,730,730,730 ,0,0,0}, {16567,16615,16571 ,730,7015,730 ,0,0,0}, - {18977,16571,16615 ,7015,730,7015 ,0,0,0}, {16614,16596,16612 ,7015,7015,730 ,0,0,0}, - {16567,16566,16614 ,730,730,7015 ,0,0,0}, {16608,16603,16606 ,7015,7015,7015 ,0,0,0}, - {16600,16609,16597 ,7015,7015,730 ,0,0,0}, {16608,16600,16602 ,7015,7015,7015 ,0,0,0}, - {16603,16608,16602 ,7015,7015,7015 ,0,0,0}, {16612,16597,16609 ,730,730,7015 ,0,0,0}, - {16609,16600,16608 ,7015,7015,7015 ,0,0,0}, {16614,16566,16596 ,7015,730,7015 ,0,0,0}, - {16612,16596,16597 ,730,7015,730 ,0,0,0}, {16614,16615,16567 ,7015,7015,730 ,0,0,0}, - {16543,18274,18979 ,126,7203,7204 ,0,0,0}, {18980,18981,18276 ,7205,7206,7207 ,0,0,0}, - {18326,18982,18394 ,7208,7209,7210 ,0,0,0}, {18415,18417,18983 ,7211,7212,7213 ,0,0,0}, - {18984,18287,18985 ,7214,7215,7216 ,0,0,0}, {18986,18987,18312 ,7217,7218,7219 ,0,0,0}, - {18337,18988,18455 ,7220,7221,7222 ,0,0,0}, {18306,18989,18990 ,7223,7224,7225 ,0,0,0}, - {18304,18305,18991 ,7226,7227,7228 ,0,0,0}, {18302,18296,18992 ,7229,7230,7231 ,0,0,0}, - {18993,18303,18302 ,7232,7233,7229 ,0,0,0}, {18294,18295,18994 ,7234,7235,7236 ,0,0,0}, - {18995,18296,18294 ,7237,7230,7234 ,0,0,0}, {18293,18996,18295 ,7238,7239,7235 ,0,0,0}, - {18994,18295,18996 ,7236,7235,7239 ,0,0,0}, {18997,18293,18286 ,7240,7238,7241 ,0,0,0}, - {18293,18997,18996 ,7238,7240,7239 ,0,0,0}, {18286,18285,18998 ,7241,7242,7243 ,0,0,0}, - {18998,18997,18286 ,7243,7240,7241 ,0,0,0}, {18282,18999,18285 ,7244,7245,7242 ,0,0,0}, - {18998,18285,18999 ,7243,7242,7245 ,0,0,0}, {19000,18282,16565 ,7246,7244,82 ,0,0,0}, - {18282,19000,18999 ,7244,7246,7245 ,0,0,0}, {16563,19000,16565 ,7011,7246,82 ,0,0,0}, - {18303,18993,18989 ,7233,7232,7224 ,0,0,0}, {18992,18296,18995 ,7231,7230,7237 ,0,0,0}, - {18995,18294,18994 ,7237,7234,7236 ,0,0,0}, {18992,18993,18302 ,7231,7232,7229 ,0,0,0}, - {18990,18305,18306 ,7225,7227,7223 ,0,0,0}, {18989,18306,18303 ,7224,7223,7233 ,0,0,0}, - {18305,18990,18991 ,7227,7225,7228 ,0,0,0}, {18986,18304,18991 ,7217,7226,7228 ,0,0,0}, - {19001,18983,18417 ,7247,7213,7212 ,0,0,0}, {18337,18312,18987 ,7220,7219,7218 ,0,0,0}, - {18304,18986,18312 ,7226,7217,7219 ,0,0,0}, {18455,19001,18417 ,7222,7247,7212 ,0,0,0}, - {18455,18988,19001 ,7222,7221,7247 ,0,0,0}, {18987,18988,18337 ,7218,7221,7220 ,0,0,0}, - {18276,18981,18326 ,7207,7206,7208 ,0,0,0}, {18983,18985,18415 ,7213,7216,7211 ,0,0,0}, - {18984,18289,18287 ,7214,7248,7215 ,0,0,0}, {18287,18415,18985 ,7215,7211,7216 ,0,0,0}, - {18289,18980,18276 ,7248,7205,7207 ,0,0,0}, {18289,18984,18980 ,7248,7214,7205 ,0,0,0}, - {18394,18982,18979 ,7210,7209,7204 ,0,0,0}, {18981,18982,18326 ,7206,7209,7208 ,0,0,0}, - {16543,16540,18274 ,126,4726,7203 ,0,0,0}, {18979,18274,18394 ,7204,7203,7210 ,0,0,0}, - {18994,18992,18995 ,7249,7250,7251 ,0,0,0}, {16545,18981,16547 ,726,726,7252 ,0,0,0}, - {18997,18992,18996 ,7253,7250,7253 ,0,0,0}, {18992,18994,18996 ,7250,7249,7253 ,0,0,0}, - {18993,18997,18998 ,7254,7253,7249 ,0,0,0}, {18997,18993,18992 ,7253,7254,7250 ,0,0,0}, - {18998,18999,18989 ,7249,7249,7255 ,0,0,0}, {18989,18993,18998 ,7255,7254,7249 ,0,0,0}, - {18999,18990,18989 ,7249,7256,7255 ,0,0,0}, {19000,16563,18990 ,7257,7257,7256 ,0,0,0}, - {19000,18990,18999 ,7257,7256,7249 ,0,0,0}, {18991,16562,18986 ,7258,726,7259 ,0,0,0}, - {18990,16563,18991 ,7256,7257,7258 ,0,0,0}, {19001,18988,16557 ,7260,7254,7257 ,0,0,0}, - {16559,18987,16562 ,7252,7261,726 ,0,0,0}, {16550,18985,16551 ,726,7262,7252 ,0,0,0}, - {16556,16553,18983 ,726,7252,7263 ,0,0,0}, {18982,16545,16544 ,7253,726,726 ,0,0,0}, - {18980,16550,16547 ,726,726,7252 ,0,0,0}, {16543,16520,16519 ,726,726,726 ,0,0,0}, - {16518,18979,16544 ,7264,7253,726 ,0,0,0}, {16524,16536,16537 ,726,7257,726 ,0,0,0}, - {16519,16525,16539 ,726,7264,726 ,0,0,0}, {16531,16533,16527 ,7257,726,7257 ,0,0,0}, - {16533,16536,16527 ,726,7257,7257 ,0,0,0}, {16531,16527,16529 ,7257,7257,7257 ,0,0,0}, - {16537,16525,16524 ,726,7264,726 ,0,0,0}, {16536,16524,16527 ,7257,726,7257 ,0,0,0}, - {16541,16519,16539 ,726,726,726 ,0,0,0}, {16539,16525,16537 ,726,7264,726 ,0,0,0}, - {16520,16543,18979 ,726,726,7253 ,0,0,0}, {16519,16541,16543 ,726,726,726 ,0,0,0}, - {16544,18979,18982 ,726,7253,7253 ,0,0,0}, {16520,18979,16518 ,726,7253,7264 ,0,0,0}, - {16547,18981,18980 ,7252,726,726 ,0,0,0}, {18981,16545,18982 ,726,726,7253 ,0,0,0}, - {18985,16550,18984 ,7262,726,7262 ,0,0,0}, {18984,16550,18980 ,7262,726,726 ,0,0,0}, - {16553,16551,18983 ,7252,7252,7263 ,0,0,0}, {16551,18985,18983 ,7252,7262,7263 ,0,0,0}, - {18983,19001,16556 ,7263,7260,726 ,0,0,0}, {16559,16557,18988 ,7252,7257,7254 ,0,0,0}, - {16557,16556,19001 ,7257,726,7260 ,0,0,0}, {16562,18987,18986 ,726,7261,7259 ,0,0,0}, - {16559,18988,18987 ,7252,7254,7261 ,0,0,0}, {16562,18991,16563 ,726,7258,7257 ,0,0,0}, - {16493,19002,18268 ,4799,7265,7266 ,0,0,0}, {19003,18270,19004 ,7267,7268,7269 ,0,0,0}, - {18269,18444,19005 ,7270,7271,7272 ,0,0,0}, {18451,19006,18278 ,7273,7274,7275 ,0,0,0}, - {19007,19008,18450 ,7276,7277,7278 ,0,0,0}, {19009,18448,19010 ,7279,7280,7281 ,0,0,0}, - {18468,18420,19011 ,7282,7283,7284 ,0,0,0}, {18469,19012,19013 ,7285,7286,7287 ,0,0,0}, - {18323,19014,18324 ,7288,7289,7290 ,0,0,0}, {18470,19015,18321 ,7291,7292,7293 ,0,0,0}, - {19016,18470,18279 ,7294,7291,7295 ,0,0,0}, {18320,19017,18471 ,7296,7297,7298 ,0,0,0}, - {19018,18320,18321 ,7299,7296,7293 ,0,0,0}, {18472,18471,19019 ,7300,7298,7301 ,0,0,0}, - {19017,19019,18471 ,7297,7301,7298 ,0,0,0}, {19020,18421,18472 ,7302,7303,7300 ,0,0,0}, - {18472,19019,19020 ,7300,7301,7302 ,0,0,0}, {18421,19021,18474 ,7303,7304,7305 ,0,0,0}, - {19021,18421,19020 ,7304,7303,7302 ,0,0,0}, {18473,18474,19022 ,7306,7305,7307 ,0,0,0}, - {19021,19022,18474 ,7304,7307,7305 ,0,0,0}, {19023,16515,18473 ,7308,21,7306 ,0,0,0}, - {18473,19022,19023 ,7306,7307,7308 ,0,0,0}, {16514,16515,19023 ,7309,21,7308 ,0,0,0}, - {18279,19013,19016 ,7295,7287,7294 ,0,0,0}, {19015,19018,18321 ,7292,7299,7293 ,0,0,0}, - {19018,19017,18320 ,7299,7297,7296 ,0,0,0}, {19015,18470,19016 ,7292,7291,7294 ,0,0,0}, - {19012,18469,18324 ,7286,7285,7290 ,0,0,0}, {19013,18279,18469 ,7287,7295,7285 ,0,0,0}, - {18324,19014,19012 ,7290,7289,7286 ,0,0,0}, {19009,19014,18323 ,7279,7289,7288 ,0,0,0}, - {19024,18278,19006 ,7310,7275,7274 ,0,0,0}, {18468,19010,18448 ,7282,7281,7280 ,0,0,0}, - {18323,18448,19009 ,7288,7280,7279 ,0,0,0}, {18420,18278,19024 ,7283,7275,7310 ,0,0,0}, - {18420,19024,19011 ,7283,7310,7284 ,0,0,0}, {19010,18468,19011 ,7281,7282,7284 ,0,0,0}, - {18270,18269,19004 ,7268,7270,7269 ,0,0,0}, {19006,18451,19008 ,7274,7273,7277 ,0,0,0}, - {19007,18450,18449 ,7276,7278,7311 ,0,0,0}, {18450,19008,18451 ,7278,7277,7273 ,0,0,0}, - {18449,18270,19003 ,7311,7268,7267 ,0,0,0}, {18449,19003,19007 ,7311,7267,7276 ,0,0,0}, - {18444,19002,19005 ,7271,7265,7272 ,0,0,0}, {19004,18269,19005 ,7269,7270,7272 ,0,0,0}, - {16493,18268,16490 ,4799,7266,7199 ,0,0,0}, {19002,18444,18268 ,7265,7271,7266 ,0,0,0}, - {19015,16485,16482 ,730,7312,6103 ,0,0,0}, {16478,19019,16481 ,7313,730,730 ,0,0,0}, - {16488,19012,16492 ,7314,7015,7315 ,0,0,0}, {19016,19013,16487 ,730,730,7316 ,0,0,0}, - {19011,19005,19010 ,730,7317,7313 ,0,0,0}, {19014,19002,16493 ,730,7318,7319 ,0,0,0}, - {19003,19004,19024 ,7320,7316,7316 ,0,0,0}, {19006,19008,19003 ,7320,6103,7320 ,0,0,0}, - {19007,19003,19008 ,6111,7320,6103 ,0,0,0}, {19011,19024,19004 ,730,7316,7316 ,0,0,0}, - {19024,19006,19003 ,7316,7320,7320 ,0,0,0}, {19002,19010,19005 ,7318,7313,7317 ,0,0,0}, - {19005,19011,19004 ,7317,730,7316 ,0,0,0}, {19014,19009,19002 ,730,7316,7318 ,0,0,0}, - {19002,19009,19010 ,7318,7316,7313 ,0,0,0}, {16492,19012,16493 ,7315,7015,7319 ,0,0,0}, - {16493,19012,19014 ,7319,7015,730 ,0,0,0}, {16487,19013,16488 ,7316,730,7314 ,0,0,0}, - {16488,19013,19012 ,7314,730,7015 ,0,0,0}, {19016,16487,16485 ,730,7316,7312 ,0,0,0}, - {16482,19018,19015 ,6103,7017,730 ,0,0,0}, {16485,19015,19016 ,7312,730,730 ,0,0,0}, - {19018,16482,19017 ,7017,6103,7017 ,0,0,0}, {16481,19019,19017 ,730,730,7017 ,0,0,0}, - {19017,16482,16481 ,7017,6103,730 ,0,0,0}, {19019,16478,16477 ,730,7313,730 ,0,0,0}, - {16477,16473,19020 ,730,7316,730 ,0,0,0}, {19020,19019,16477 ,730,730,730 ,0,0,0}, - {19021,16473,16475 ,7016,7316,7313 ,0,0,0}, {16473,19021,19020 ,7316,7016,730 ,0,0,0}, - {16469,19022,16475 ,7015,730,7313 ,0,0,0}, {19021,16475,19022 ,7016,7313,730 ,0,0,0}, - {19023,16469,16514 ,730,7015,730 ,0,0,0}, {19023,19022,16469 ,730,730,7015 ,0,0,0}, - {16469,16471,16514 ,7015,7015,730 ,0,0,0}, {16512,16494,16509 ,730,730,730 ,0,0,0}, - {16471,16467,16512 ,7015,730,730 ,0,0,0}, {16506,16502,16503 ,730,730,7017 ,0,0,0}, - {16497,16508,16496 ,7015,7016,730 ,0,0,0}, {16506,16497,16500 ,730,7015,730 ,0,0,0}, - {16502,16506,16500 ,730,730,730 ,0,0,0}, {16509,16496,16508 ,730,730,7016 ,0,0,0}, - {16508,16497,16506 ,7016,7015,730 ,0,0,0}, {16512,16467,16494 ,730,730,730 ,0,0,0}, - {16509,16494,16496 ,730,730,730 ,0,0,0}, {16512,16514,16471 ,730,730,7015 ,0,0,0}, - {17025,19025,19026 ,7321,1711,7322 ,0,0,0}, {17015,17012,19027 ,7323,7324,7325 ,0,0,0}, - {19028,17014,17023 ,7326,7327,7328 ,0,0,0}, {18841,19029,18840 ,7329,7330,7331 ,0,0,0}, - {19030,19031,17019 ,7332,7333,7334 ,0,0,0}, {18838,19032,18837 ,7335,7336,7337 ,0,0,0}, - {19032,18839,19033 ,7336,7338,7339 ,0,0,0}, {18836,18837,19034 ,7340,7337,7341 ,0,0,0}, - {19032,19034,18837 ,7336,7341,7337 ,0,0,0}, {19035,18835,18836 ,1359,1359,7340 ,0,0,0}, - {18836,19034,19035 ,7340,7341,1359 ,0,0,0}, {19033,18839,18840 ,7339,7338,7331 ,0,0,0}, - {19032,18838,18839 ,7336,7335,7338 ,0,0,0}, {19029,18841,18842 ,7330,7329,7342 ,0,0,0}, - {19029,19033,18840 ,7330,7339,7331 ,0,0,0}, {18842,17019,19031 ,7342,7334,7333 ,0,0,0}, - {19031,19029,18842 ,7333,7330,7342 ,0,0,0}, {17018,19027,19030 ,7343,7325,7332 ,0,0,0}, - {17018,19030,17019 ,7343,7332,7334 ,0,0,0}, {17012,19036,19027 ,7324,7344,7325 ,0,0,0}, - {17018,17015,19027 ,7343,7323,7325 ,0,0,0}, {19028,19036,17014 ,7326,7344,7327 ,0,0,0}, - {17012,17014,19036 ,7324,7327,7344 ,0,0,0}, {19028,17022,19026 ,7326,7345,7322 ,0,0,0}, - {17023,17022,19028 ,7328,7345,7326 ,0,0,0}, {19025,17025,16991 ,1711,7321,1711 ,0,0,0}, - {19026,17022,17025 ,7322,7345,7321 ,0,0,0}, {19025,16993,19037 ,2197,7346,7346 ,0,0,0}, - {16993,19025,16991 ,7346,2197,2197 ,0,0,0}, {19038,19039,18845 ,1435,7347,7348 ,0,0,0}, - {18846,18844,19040 ,7349,7350,7351 ,0,0,0}, {18843,18848,19041 ,7352,7353,7354 ,0,0,0}, - {17004,19042,17002 ,7355,7356,7357 ,0,0,0}, {19043,19044,17010 ,7358,7359,7360 ,0,0,0}, - {16998,19045,16996 ,7361,7362,7363 ,0,0,0}, {16998,17000,19045 ,7361,7364,7362 ,0,0,0}, - {16995,16996,19046 ,7365,7363,7366 ,0,0,0}, {19045,19046,16996 ,7362,7366,7363 ,0,0,0}, - {19037,16993,16995 ,1790,1790,7365 ,0,0,0}, {16995,19046,19037 ,7365,7366,1790 ,0,0,0}, - {17002,19047,17000 ,7357,7367,7364 ,0,0,0}, {19045,17000,19047 ,7362,7364,7367 ,0,0,0}, - {18843,19048,18844 ,7352,7368,7350 ,0,0,0}, {17004,17008,19042 ,7355,7369,7356 ,0,0,0}, - {19042,19047,17002 ,7356,7367,7357 ,0,0,0}, {17008,17010,19044 ,7369,7360,7359 ,0,0,0}, - {19044,19042,17008 ,7359,7356,7369 ,0,0,0}, {19043,17010,18847 ,7358,7360,7370 ,0,0,0}, - {19040,18847,18846 ,7351,7370,7349 ,0,0,0}, {18847,19040,19043 ,7370,7351,7358 ,0,0,0}, - {19048,19040,18844 ,7368,7351,7350 ,0,0,0}, {19041,18849,19039 ,7354,7371,7347 ,0,0,0}, - {18849,19041,18848 ,7371,7354,7353 ,0,0,0}, {19048,18843,19041 ,7368,7352,7354 ,0,0,0}, - {19038,18845,18834 ,1435,7348,1435 ,0,0,0}, {19039,18849,18845 ,7347,7371,7348 ,0,0,0}, - {18834,19035,19038 ,1398,7372,1398 ,0,0,0}, {19035,18834,18835 ,7372,1398,7372 ,0,0,0}, - {19035,19039,19038 ,7373,730,730 ,0,0,0}, {19036,19045,19047 ,730,730,730 ,0,0,0}, - {19033,19040,19048 ,7374,7375,7375 ,0,0,0}, {19048,19041,19032 ,7375,730,7373 ,0,0,0}, - {19031,19044,19043 ,7375,7375,7375 ,0,0,0}, {19043,19040,19029 ,7375,7375,730 ,0,0,0}, - {19047,19042,19027 ,730,730,7376 ,0,0,0}, {19042,19044,19030 ,730,7375,7375 ,0,0,0}, - {19026,19046,19028 ,730,730,730 ,0,0,0}, {19045,19028,19046 ,730,730,730 ,0,0,0}, - {19026,19025,19037 ,730,730,730 ,0,0,0}, {19037,19046,19026 ,730,730,730 ,0,0,0}, - {19047,19027,19036 ,730,7376,730 ,0,0,0}, {19045,19036,19028 ,730,730,730 ,0,0,0}, - {19042,19030,19027 ,730,7375,7376 ,0,0,0}, {19044,19031,19030 ,7375,7375,7375 ,0,0,0}, - {19043,19029,19031 ,7375,730,7375 ,0,0,0}, {19040,19033,19029 ,7375,7374,730 ,0,0,0}, - {19048,19032,19033 ,7375,7373,7374 ,0,0,0}, {19041,19034,19032 ,730,730,7373 ,0,0,0}, - {19035,19034,19039 ,7373,730,730 ,0,0,0}, {19041,19039,19034 ,730,730,730 ,0,0,0}, - {19049,16923,19050 ,7377,1435,1435 ,0,0,0}, {19051,16939,19052 ,7378,7379,7379 ,0,0,0}, - {19053,16914,16918 ,7380,7380,7377 ,0,0,0}, {16946,19054,19055 ,7381,7381,7382 ,0,0,0}, - {16941,19056,16944 ,7378,7383,7383 ,0,0,0}, {16953,19057,16955 ,7384,7385,7385 ,0,0,0}, - {19058,16953,16948 ,7384,7384,7382 ,0,0,0}, {16958,16955,19059 ,7386,7385,7386 ,0,0,0}, - {19057,19059,16955 ,7385,7386,7385 ,0,0,0}, {19060,16961,16958 ,7387,7388,7386 ,0,0,0}, - {16958,19059,19060 ,7386,7386,7387 ,0,0,0}, {19055,19058,16948 ,7382,7384,7382 ,0,0,0}, - {19058,19057,16953 ,7384,7385,7384 ,0,0,0}, {16944,19054,16946 ,7383,7381,7381 ,0,0,0}, - {16946,19055,16948 ,7381,7382,7382 ,0,0,0}, {16941,19051,19056 ,7378,7378,7383 ,0,0,0}, - {16944,19056,19054 ,7383,7383,7381 ,0,0,0}, {16939,16914,19052 ,7379,7380,7379 ,0,0,0}, - {16941,16939,19051 ,7378,7379,7378 ,0,0,0}, {19053,16918,19049 ,7380,7377,7377 ,0,0,0}, - {19052,16914,19053 ,7379,7380,7380 ,0,0,0}, {16923,19049,16918 ,1435,7377,7377 ,0,0,0}, - {19050,16920,19061 ,1398,1398,1398 ,0,0,0}, {16920,19050,16923 ,1398,1398,1398 ,0,0,0}, - {19062,19063,17045 ,7389,7390,7390 ,0,0,0}, {19064,17041,19065 ,7391,7391,7392 ,0,0,0}, - {17043,16952,19066 ,7392,7393,7393 ,0,0,0}, {17033,19067,19068 ,7394,7395,7394 ,0,0,0}, - {17038,19069,17037 ,7396,7396,7395 ,0,0,0}, {17028,19070,19071 ,7397,7398,7397 ,0,0,0}, - {19070,17028,17032 ,7398,7397,7398 ,0,0,0}, {19072,17026,19071 ,7399,7399,7397 ,0,0,0}, - {17028,19071,17026 ,7397,7397,7399 ,0,0,0}, {19072,19061,16920 ,7399,1359,1359 ,0,0,0}, - {16920,17026,19072 ,1359,7399,7399 ,0,0,0}, {19065,17043,19066 ,7392,7392,7393 ,0,0,0}, - {17032,17033,19068 ,7398,7394,7394 ,0,0,0}, {19068,19070,17032 ,7394,7398,7398 ,0,0,0}, - {19067,17033,17037 ,7395,7394,7395 ,0,0,0}, {19064,19069,17038 ,7391,7396,7396 ,0,0,0}, - {17037,19069,19067 ,7395,7396,7395 ,0,0,0}, {17043,19065,17041 ,7392,7392,7391 ,0,0,0}, - {17038,17041,19064 ,7396,7391,7391 ,0,0,0}, {17045,19063,16952 ,7390,7390,7393 ,0,0,0}, - {16952,19063,19066 ,7393,7390,7393 ,0,0,0}, {19062,17045,16911 ,7389,7390,7400 ,0,0,0}, - {19060,19062,16911 ,7401,7402,7402 ,0,0,0}, {19060,16911,16961 ,7401,7402,7401 ,0,0,0}, - {19072,19053,19049 ,7403,7403,7404 ,0,0,0}, {19058,19066,19057 ,7375,7375,730 ,0,0,0}, - {19054,19064,19055 ,7375,730,730 ,0,0,0}, {19065,19058,19055 ,730,7375,730 ,0,0,0}, - {19051,19067,19056 ,7373,7375,7373 ,0,0,0}, {19069,19054,19056 ,730,7375,7373 ,0,0,0}, - {19052,19071,19070 ,7405,7406,730 ,0,0,0}, {19068,19051,19052 ,7373,7373,7405 ,0,0,0}, - {19072,19071,19053 ,7403,7406,7403 ,0,0,0}, {19049,19050,19061 ,7404,730,7407 ,0,0,0}, - {19061,19072,19049 ,7407,7403,7404 ,0,0,0}, {19071,19052,19053 ,7406,7405,7403 ,0,0,0}, - {19068,19052,19070 ,7373,7405,730 ,0,0,0}, {19067,19051,19068 ,7375,7373,7373 ,0,0,0}, - {19069,19056,19067 ,730,7373,7375 ,0,0,0}, {19064,19054,19069 ,730,7375,730 ,0,0,0}, - {19065,19055,19064 ,730,730,730 ,0,0,0}, {19066,19058,19065 ,7375,7375,730 ,0,0,0}, - {19063,19057,19066 ,730,730,7375 ,0,0,0}, {19059,19063,19062 ,7373,730,730 ,0,0,0}, - {19063,19059,19057 ,730,7373,730 ,0,0,0}, {19059,19062,19060 ,7373,730,7405 ,0,0,0}, - {19073,18832,19074 ,7408,7409,7410 ,0,0,0}, {19075,18830,19076 ,7411,7412,7412 ,0,0,0}, - {19077,18829,18833 ,7413,7413,7408 ,0,0,0}, {18850,19078,19079 ,7414,7414,7415 ,0,0,0}, - {18831,19080,18851 ,7411,7416,7416 ,0,0,0}, {18827,19081,18828 ,7417,7418,7418 ,0,0,0}, - {19082,18827,18826 ,7417,7417,7415 ,0,0,0}, {18824,18828,19083 ,7419,7418,7419 ,0,0,0}, - {19081,19083,18828 ,7418,7419,7418 ,0,0,0}, {19084,18823,18824 ,1790,1790,7419 ,0,0,0}, - {18824,19083,19084 ,7419,7419,1790 ,0,0,0}, {19079,19082,18826 ,7415,7417,7415 ,0,0,0}, - {19082,19081,18827 ,7417,7418,7417 ,0,0,0}, {18851,19078,18850 ,7416,7414,7414 ,0,0,0}, - {18850,19079,18826 ,7414,7415,7415 ,0,0,0}, {18831,19075,19080 ,7411,7411,7416 ,0,0,0}, - {18851,19080,19078 ,7416,7416,7414 ,0,0,0}, {18830,18829,19076 ,7412,7413,7412 ,0,0,0}, - {18831,18830,19075 ,7411,7412,7411 ,0,0,0}, {19077,18833,19073 ,7413,7408,7408 ,0,0,0}, - {19076,18829,19077 ,7412,7413,7413 ,0,0,0}, {18832,19073,18833 ,7409,7408,7408 ,0,0,0}, - {18853,19085,19074 ,7420,7420,7421 ,0,0,0}, {18853,19074,18832 ,7420,7421,7421 ,0,0,0}, - {19086,19087,18862 ,1711,7422,7422 ,0,0,0}, {19088,18860,19089 ,7423,7423,7424 ,0,0,0}, - {18861,18852,19090 ,7424,7425,7425 ,0,0,0}, {18857,19091,19092 ,7426,7427,7426 ,0,0,0}, - {18859,19093,18858 ,7428,7428,7427 ,0,0,0}, {18855,19094,19095 ,7429,7430,7429 ,0,0,0}, - {19094,18855,18856 ,7430,7429,7430 ,0,0,0}, {19096,18854,19095 ,7431,7431,7429 ,0,0,0}, - {18855,19095,18854 ,7429,7429,7431 ,0,0,0}, {19096,19085,18853 ,7431,7432,82 ,0,0,0}, - {18853,18854,19096 ,82,7431,7431 ,0,0,0}, {19089,18861,19090 ,7424,7424,7425 ,0,0,0}, - {18856,18857,19092 ,7430,7426,7426 ,0,0,0}, {19092,19094,18856 ,7426,7430,7430 ,0,0,0}, - {19091,18857,18858 ,7427,7426,7427 ,0,0,0}, {19088,19093,18859 ,7423,7428,7428 ,0,0,0}, - {18858,19093,19091 ,7427,7428,7427 ,0,0,0}, {18861,19089,18860 ,7424,7424,7423 ,0,0,0}, - {18859,18860,19088 ,7428,7423,7423 ,0,0,0}, {18862,19087,18852 ,7422,7422,7425 ,0,0,0}, - {18852,19087,19090 ,7425,7422,7425 ,0,0,0}, {19086,18862,18825 ,1711,7422,1711 ,0,0,0}, - {18825,19084,19086 ,2197,2197,2197 ,0,0,0}, {19084,18825,18823 ,2197,2197,2197 ,0,0,0}, - {19084,19087,19086 ,7433,730,730 ,0,0,0}, {19075,19076,19092 ,7375,7375,730 ,0,0,0}, - {19079,19089,19082 ,730,730,730 ,0,0,0}, {19089,19090,19081 ,730,7376,730 ,0,0,0}, - {19080,19093,19078 ,730,730,7376 ,0,0,0}, {19088,19079,19078 ,730,730,7376 ,0,0,0}, - {19091,19080,19075 ,7376,730,7375 ,0,0,0}, {19095,19077,19073 ,7375,7376,7376 ,0,0,0}, - {19076,19077,19094 ,7375,7376,7375 ,0,0,0}, {19074,19096,19073 ,7374,7376,7376 ,0,0,0}, - {19095,19073,19096 ,7375,7376,7376 ,0,0,0}, {19085,19096,19074 ,730,7376,7374 ,0,0,0}, - {19094,19077,19095 ,7375,7376,7375 ,0,0,0}, {19092,19076,19094 ,730,7375,7375 ,0,0,0}, - {19091,19075,19092 ,7376,7375,730 ,0,0,0}, {19093,19080,19091 ,730,730,7376 ,0,0,0}, - {19088,19078,19093 ,730,7376,730 ,0,0,0}, {19089,19079,19088 ,730,730,730 ,0,0,0}, - {19089,19081,19082 ,730,730,730 ,0,0,0}, {19090,19083,19081 ,7376,7433,730 ,0,0,0}, - {19084,19083,19087 ,7433,7433,730 ,0,0,0}, {19090,19087,19083 ,7376,730,7433 ,0,0,0}, - {18260,16433,16431 ,7434,4326,7435 ,0,0,0}, {18432,18360,18257 ,7436,7437,7438 ,0,0,0}, - {18261,18359,18262 ,7439,7440,7441 ,0,0,0}, {18267,18255,18403 ,7442,7443,7444 ,0,0,0}, - {18265,18408,18466 ,7445,7446,7447 ,0,0,0}, {18411,18410,18245 ,7448,7449,7450 ,0,0,0}, - {18395,18263,18264 ,7451,7452,7453 ,0,0,0}, {18239,18238,18310 ,7454,7455,7456 ,0,0,0}, - {18241,18299,18301 ,7457,7458,7459 ,0,0,0}, {18229,18346,18233 ,7460,7461,7462 ,0,0,0}, - {18352,18311,18237 ,7463,7464,7465 ,0,0,0}, {18344,18271,18223 ,7466,7467,7468 ,0,0,0}, - {18347,18225,18271 ,7469,7470,7467 ,0,0,0}, {18416,18220,18227 ,7471,7472,7473 ,0,0,0}, - {18224,18220,18345 ,7474,7472,7475 ,0,0,0}, {18339,18228,18232 ,7476,7477,7478 ,0,0,0}, - {18227,18228,18338 ,7473,7477,7479 ,0,0,0}, {18235,18322,18232 ,7480,7481,7478 ,0,0,0}, - {18339,18232,18322 ,7476,7478,7481 ,0,0,0}, {18235,18244,18314 ,7480,7482,7483 ,0,0,0}, - {18314,18322,18235 ,7483,7481,7480 ,0,0,0}, {18288,18244,18243 ,7484,7482,7485 ,0,0,0}, - {18244,18288,18314 ,7482,7484,7483 ,0,0,0}, {18247,18277,18243 ,7486,7487,7485 ,0,0,0}, - {18288,18243,18277 ,7484,7485,7487 ,0,0,0}, {18247,18252,18275 ,7486,7488,7489 ,0,0,0}, - {18275,18277,18247 ,7489,7487,7486 ,0,0,0}, {18325,18252,18251 ,7490,7488,7491 ,0,0,0}, - {18252,18325,18275 ,7488,7490,7489 ,0,0,0}, {16465,18273,18251 ,82,7492,7491 ,0,0,0}, - {18325,18251,18273 ,7490,7491,7492 ,0,0,0}, {16464,18273,16465 ,82,7492,82 ,0,0,0}, - {18338,18416,18227 ,7479,7471,7473 ,0,0,0}, {18338,18228,18339 ,7479,7477,7476 ,0,0,0}, - {18224,18345,18344 ,7474,7475,7466 ,0,0,0}, {18345,18220,18416 ,7475,7472,7471 ,0,0,0}, - {18271,18225,18223 ,7467,7470,7468 ,0,0,0}, {18344,18223,18224 ,7466,7468,7474 ,0,0,0}, - {18347,18346,18229 ,7469,7461,7460 ,0,0,0}, {18347,18229,18225 ,7469,7460,7470 ,0,0,0}, - {18233,18352,18237 ,7462,7463,7465 ,0,0,0}, {18346,18352,18233 ,7461,7463,7462 ,0,0,0}, - {18238,18311,18310 ,7455,7464,7456 ,0,0,0}, {18237,18311,18238 ,7465,7464,7455 ,0,0,0}, - {18241,18239,18299 ,7457,7454,7458 ,0,0,0}, {18239,18310,18299 ,7454,7456,7458 ,0,0,0}, - {18411,18246,18301 ,7448,7493,7459 ,0,0,0}, {18246,18241,18301 ,7493,7457,7459 ,0,0,0}, - {18410,18264,18245 ,7449,7453,7450 ,0,0,0}, {18411,18245,18246 ,7448,7450,7493 ,0,0,0}, - {18395,18404,18263 ,7451,7494,7452 ,0,0,0}, {18410,18395,18264 ,7449,7451,7453 ,0,0,0}, - {18403,18255,18404 ,7444,7443,7494 ,0,0,0}, {18263,18404,18255 ,7452,7494,7443 ,0,0,0}, - {18265,18267,18408 ,7445,7442,7446 ,0,0,0}, {18267,18403,18408 ,7442,7444,7446 ,0,0,0}, - {18432,18256,18466 ,7436,7495,7447 ,0,0,0}, {18256,18265,18466 ,7495,7445,7447 ,0,0,0}, - {18360,18261,18257 ,7437,7439,7438 ,0,0,0}, {18432,18257,18256 ,7436,7438,7495 ,0,0,0}, - {18359,18361,18262 ,7440,7496,7441 ,0,0,0}, {18360,18359,18261 ,7437,7440,7439 ,0,0,0}, - {16433,18260,18361 ,4326,7434,7496 ,0,0,0}, {18262,18361,18260 ,7441,7496,7434 ,0,0,0}, - {19097,16381,16380 ,7497,763,7498 ,0,0,0}, {19098,18253,19099 ,7499,7500,7501 ,0,0,0}, - {19100,18266,18258 ,7502,7503,7504 ,0,0,0}, {19101,19102,18242 ,7505,7506,7507 ,0,0,0}, - {19103,19104,18250 ,7508,7509,7510 ,0,0,0}, {19105,18230,19106 ,7511,7512,7513 ,0,0,0}, - {18234,19107,19106 ,7514,7515,7513 ,0,0,0}, {19108,18222,19109 ,7516,7517,7518 ,0,0,0}, - {18221,19105,19109 ,7519,7511,7518 ,0,0,0}, {19110,18236,18231 ,7520,7521,7522 ,0,0,0}, - {18231,19108,19110 ,7522,7516,7520 ,0,0,0}, {18236,19111,18248 ,7521,7523,7524 ,0,0,0}, - {19111,18236,19110 ,7523,7521,7520 ,0,0,0}, {18249,18248,19112 ,7525,7524,7526 ,0,0,0}, - {19111,19112,18248 ,7523,7526,7524 ,0,0,0}, {16399,18249,19113 ,761,7525,7527 ,0,0,0}, - {18249,19112,19113 ,7525,7526,7527 ,0,0,0}, {16398,18249,16399 ,761,7525,761 ,0,0,0}, - {18221,19109,18222 ,7519,7518,7517 ,0,0,0}, {18231,18222,19108 ,7522,7517,7516 ,0,0,0}, - {18226,18230,19105 ,7528,7512,7511 ,0,0,0}, {18221,18226,19105 ,7519,7528,7511 ,0,0,0}, - {18240,19107,18234 ,7529,7515,7514 ,0,0,0}, {18230,18234,19106 ,7512,7514,7513 ,0,0,0}, - {18242,19102,18240 ,7507,7506,7529 ,0,0,0}, {19107,18240,19102 ,7515,7529,7506 ,0,0,0}, - {18250,19104,18242 ,7510,7509,7507 ,0,0,0}, {19104,19101,18242 ,7509,7505,7507 ,0,0,0}, - {18254,19098,19103 ,7530,7499,7508 ,0,0,0}, {18254,19103,18250 ,7530,7508,7510 ,0,0,0}, - {18253,18266,19099 ,7500,7503,7501 ,0,0,0}, {18254,18253,19098 ,7530,7500,7499 ,0,0,0}, - {19100,18258,19097 ,7502,7504,7497 ,0,0,0}, {19099,18266,19100 ,7501,7503,7502 ,0,0,0}, - {16381,19097,18259 ,763,7497,7531 ,0,0,0}, {19097,18258,18259 ,7497,7504,7531 ,0,0,0}, - {19112,19111,19110 ,7015,7532,7017 ,0,0,0}, {16385,19099,19100 ,7016,7015,7015 ,0,0,0}, - {19105,19108,19109 ,7533,7534,7535 ,0,0,0}, {19110,19105,19112 ,7017,7533,7015 ,0,0,0}, - {19112,19105,19113 ,7015,7533,7016 ,0,0,0}, {19105,19110,19108 ,7533,7017,7534 ,0,0,0}, - {19106,19113,19105 ,7536,7016,7533 ,0,0,0}, {19113,19107,16399 ,7016,730,7015 ,0,0,0}, - {19107,19113,19106 ,730,7016,7536 ,0,0,0}, {19104,16394,19101 ,7535,730,7320 ,0,0,0}, - {19107,19102,16399 ,730,6104,7015 ,0,0,0}, {19098,16388,19103 ,730,730,7534 ,0,0,0}, - {16391,19104,19103 ,7537,7535,7534 ,0,0,0}, {19097,16380,16384 ,7016,7015,730 ,0,0,0}, - {19100,16386,16385 ,7015,730,7016 ,0,0,0}, {16377,16365,16379 ,730,730,730 ,0,0,0}, - {16379,16363,16380 ,730,7016,7015 ,0,0,0}, {16376,16373,16377 ,730,730,730 ,0,0,0}, - {16365,16371,16370 ,730,7016,7016 ,0,0,0}, {16373,16365,16377 ,730,730,730 ,0,0,0}, - {16365,16364,16379 ,730,730,730 ,0,0,0}, {16365,16373,16371 ,730,730,7016 ,0,0,0}, - {16363,16384,16380 ,7016,730,7015 ,0,0,0}, {16364,16363,16379 ,730,7016,730 ,0,0,0}, - {16386,19100,16384 ,730,7015,730 ,0,0,0}, {16384,19100,19097 ,730,7015,7016 ,0,0,0}, - {16385,16388,19099 ,7016,730,7015 ,0,0,0}, {19103,16388,16390 ,7534,730,7537 ,0,0,0}, - {19099,16388,19098 ,7015,730,730 ,0,0,0}, {19103,16390,16391 ,7534,7537,7537 ,0,0,0}, - {16394,19102,19101 ,730,6104,7320 ,0,0,0}, {19104,16391,16394 ,7535,7537,730 ,0,0,0}, - {16399,19102,16396 ,7015,6104,730 ,0,0,0}, {16394,16396,19102 ,730,730,6104 ,0,0,0}, - {17308,17307,19114 ,7538,7539,7540 ,0,0,0}, {19115,17299,17308 ,7541,7542,7538 ,0,0,0}, - {19115,19116,17299 ,7541,82,7542 ,0,0,0}, {19114,19115,17308 ,7540,7541,7538 ,0,0,0}, - {17307,17678,19117 ,7539,7543,7544 ,0,0,0}, {17337,17336,19118 ,7545,7546,7547 ,0,0,0}, - {19119,19117,17678 ,7548,7544,7543 ,0,0,0}, {17678,17337,19119 ,7543,7545,7548 ,0,0,0}, - {19118,19119,17337 ,7547,7548,7545 ,0,0,0}, {17307,19117,19114 ,7539,7544,7540 ,0,0,0}, - {19118,17336,19120 ,7547,7546,7549 ,0,0,0}, {17335,19121,19120 ,7550,7551,7549 ,0,0,0}, - {19120,17336,17335 ,7549,7546,7550 ,0,0,0}, {19121,17335,17310 ,7551,7550,7552 ,0,0,0}, - {17323,19122,17310 ,7553,7554,7552 ,0,0,0}, {17323,17313,19123 ,7553,7555,7556 ,0,0,0}, - {17323,19123,19122 ,7553,7556,7554 ,0,0,0}, {19124,17304,19125 ,7557,7558,7559 ,0,0,0}, - {19123,17313,19124 ,7556,7555,7557 ,0,0,0}, {19124,17313,17304 ,7557,7555,7558 ,0,0,0}, - {17304,17306,19125 ,7558,7559,7559 ,0,0,0}, {19121,17310,19122 ,7551,7552,7554 ,0,0,0}, - {17300,19116,19126 ,7560,82,7561 ,0,0,0}, {19116,17300,17299 ,82,7560,7542 ,0,0,0}, - {19127,17342,19126 ,7562,7563,7561 ,0,0,0}, {17300,19126,17342 ,7560,7561,7563 ,0,0,0}, - {19127,19128,17556 ,7562,7564,7565 ,0,0,0}, {17556,17342,19127 ,7565,7563,7562 ,0,0,0}, - {17381,19128,19129 ,7566,7564,7567 ,0,0,0}, {19128,17381,17556 ,7564,7566,7565 ,0,0,0}, - {19130,17382,19129 ,7568,7569,7567 ,0,0,0}, {17381,19129,17382 ,7566,7567,7569 ,0,0,0}, - {19130,19131,17378 ,7568,7570,7571 ,0,0,0}, {17378,17382,19130 ,7571,7569,7568 ,0,0,0}, - {17346,19131,19132 ,7572,7570,7573 ,0,0,0}, {19131,17346,17378 ,7570,7572,7571 ,0,0,0}, - {19133,17365,19132 ,7574,7575,7573 ,0,0,0}, {17346,19132,17365 ,7572,7573,7575 ,0,0,0}, - {19133,19134,17366 ,7574,7576,7577 ,0,0,0}, {17366,17365,19133 ,7577,7575,7574 ,0,0,0}, - {17368,19134,19135 ,7578,7576,7579 ,0,0,0}, {19134,17368,17366 ,7576,7578,7577 ,0,0,0}, - {17368,19135,17369 ,7578,7579,7580 ,0,0,0}, {17369,19135,19136 ,7580,7579,7580 ,0,0,0}, - {18194,18200,19136 ,7581,7581,7581 ,0,0,0}, {19136,16806,18185 ,7581,7581,7581 ,0,0,0}, - {18185,18191,19136 ,7581,7581,7581 ,0,0,0}, {18205,19136,18200 ,7581,7581,7581 ,0,0,0}, - {18191,18194,19136 ,7581,7581,7581 ,0,0,0}, {18209,18168,19136 ,7581,7581,7581 ,0,0,0}, - {18209,19136,18205 ,7581,7581,7581 ,0,0,0}, {18168,18180,19136 ,7581,7581,7581 ,0,0,0}, - {17369,19136,18179 ,7581,7581,7581 ,0,0,0}, {18180,18179,19136 ,7581,7581,7581 ,0,0,0}, - {19125,17306,17752 ,7582,7582,7582 ,0,0,0}, {17752,17779,19125 ,7582,7582,7582 ,0,0,0}, - {19125,17765,17745 ,7582,7582,7582 ,0,0,0}, {17779,17765,19125 ,7582,7582,7582 ,0,0,0}, - {19125,17747,17761 ,7582,7582,7582 ,0,0,0}, {17745,17747,19125 ,7582,7582,7582 ,0,0,0}, - {19125,17754,17738 ,7582,7582,7582 ,0,0,0}, {17761,17754,19125 ,7582,7582,7582 ,0,0,0}, - {17742,19125,17737 ,7582,7582,7582 ,0,0,0}, {17738,17737,19125 ,7582,7582,7582 ,0,0,0}, - {19133,16811,16809 ,726,726,726 ,0,0,0}, {19126,19116,16811 ,726,726,726 ,0,0,0}, - {19135,19134,16809 ,726,726,726 ,0,0,0}, {16809,19134,19133 ,726,726,726 ,0,0,0}, - {16809,16803,19136 ,726,726,726 ,0,0,0}, {19136,19135,16809 ,726,726,726 ,0,0,0}, - {16812,16806,19136 ,7583,7583,726 ,0,0,0}, {16812,19136,16803 ,7583,726,726 ,0,0,0}, - {19133,19132,16811 ,726,726,726 ,0,0,0}, {16811,19131,19130 ,726,726,726 ,0,0,0}, - {19132,19131,16811 ,726,726,726 ,0,0,0}, {16811,19129,19128 ,726,726,726 ,0,0,0}, - {19130,19129,16811 ,726,726,726 ,0,0,0}, {16811,19127,19126 ,726,726,726 ,0,0,0}, - {19128,19127,16811 ,726,726,726 ,0,0,0}, {19115,16811,19116 ,726,726,726 ,0,0,0}, - {19114,19117,16811 ,726,726,726 ,0,0,0}, {19114,16811,19115 ,726,726,726 ,0,0,0}, - {19119,19118,16811 ,726,726,726 ,0,0,0}, {19119,16811,19117 ,726,726,726 ,0,0,0}, - {19120,19121,16811 ,726,726,726 ,0,0,0}, {19120,16811,19118 ,726,726,726 ,0,0,0}, - {19122,19123,16811 ,726,726,726 ,0,0,0}, {19122,16811,19121 ,726,726,726 ,0,0,0}, - {16811,19123,18863 ,726,726,726 ,0,0,0}, {19125,18863,19124 ,726,726,726 ,0,0,0}, - {18863,19123,19124 ,726,726,726 ,0,0,0}, {18864,18863,19125 ,726,726,726 ,0,0,0}, - {17742,18876,19125 ,7583,726,726 ,0,0,0}, {18864,19125,18876 ,726,726,726 ,0,0,0}, - {16341,19137,17595 ,7584,7585,7586 ,0,0,0}, {19138,17568,19139 ,7587,7588,7589 ,0,0,0}, - {17606,17528,19140 ,7590,7591,7592 ,0,0,0}, {17295,19141,17557 ,7593,7594,7595 ,0,0,0}, - {19142,19143,17298 ,4334,7596,7597 ,0,0,0}, {19144,17303,19145 ,7598,7599,7600 ,0,0,0}, - {17302,17560,19146 ,7601,7602,7603 ,0,0,0}, {17360,17352,19147 ,7604,7605,7606 ,0,0,0}, - {17356,19148,17352 ,7607,7608,7605 ,0,0,0}, {17357,19149,19150 ,7609,7610,7611 ,0,0,0}, - {17360,19151,17359 ,7604,7612,7613 ,0,0,0}, {19152,17370,19150 ,7614,7615,7611 ,0,0,0}, - {17357,19150,17370 ,7609,7611,7615 ,0,0,0}, {19152,19153,17363 ,7614,7616,7617 ,0,0,0}, - {17363,17370,19152 ,7617,7615,7614 ,0,0,0}, {17372,19153,19154 ,7618,7616,7619 ,0,0,0}, - {19153,17372,17363 ,7616,7618,7617 ,0,0,0}, {19155,17332,19154 ,7620,7621,7619 ,0,0,0}, - {17372,19154,17332 ,7618,7619,7621 ,0,0,0}, {19155,16360,16361 ,7620,7622,4289 ,0,0,0}, - {16361,17332,19155 ,4289,7621,7620 ,0,0,0}, {19147,17352,19148 ,7606,7605,7608 ,0,0,0}, - {19149,17359,19151 ,7610,7613,7612 ,0,0,0}, {17359,19149,17357 ,7613,7610,7609 ,0,0,0}, - {19147,19151,17360 ,7606,7612,7604 ,0,0,0}, {19144,19148,17356 ,7598,7608,7607 ,0,0,0}, - {17302,19146,19145 ,7601,7603,7600 ,0,0,0}, {17302,19145,17303 ,7601,7600,7599 ,0,0,0}, - {17356,17303,19144 ,7607,7599,7598 ,0,0,0}, {17560,19156,19146 ,7602,7623,7603 ,0,0,0}, - {19156,17560,17557 ,7623,7602,7595 ,0,0,0}, {19143,19141,17295 ,7596,7594,7593 ,0,0,0}, - {19141,19156,17557 ,7594,7623,7595 ,0,0,0}, {17298,19143,17295 ,7597,7596,7593 ,0,0,0}, - {17596,19138,19142 ,7624,7587,4334 ,0,0,0}, {17596,19142,17298 ,7624,4334,7597 ,0,0,0}, - {17568,17606,19139 ,7588,7590,7589 ,0,0,0}, {17596,17568,19138 ,7624,7588,7587 ,0,0,0}, - {17528,19137,19140 ,7591,7585,7592 ,0,0,0}, {19139,17606,19140 ,7589,7590,7592 ,0,0,0}, - {16341,17595,16339 ,7584,7586,4535 ,0,0,0}, {19137,17528,17595 ,7585,7591,7586 ,0,0,0}, - {19143,16352,19141 ,726,7625,726 ,0,0,0}, {19152,19150,19153 ,726,726,726 ,0,0,0}, - {19155,19154,19153 ,726,726,726 ,0,0,0}, {19151,19147,19149 ,726,726,726 ,0,0,0}, - {19153,19150,19147 ,726,726,726 ,0,0,0}, {19153,19147,19148 ,726,726,726 ,0,0,0}, - {19149,19147,19150 ,726,726,726 ,0,0,0}, {19148,19144,19155 ,726,726,726 ,0,0,0}, - {19155,19153,19148 ,726,726,726 ,0,0,0}, {19144,19145,16358 ,726,726,7626 ,0,0,0}, - {19144,16360,19155 ,726,726,726 ,0,0,0}, {19156,16354,16355 ,726,726,726 ,0,0,0}, - {16355,16358,19146 ,726,7626,726 ,0,0,0}, {19139,16343,16346 ,726,7627,726 ,0,0,0}, - {16348,16349,19142 ,726,7625,726 ,0,0,0}, {19140,16342,16343 ,7626,7627,7627 ,0,0,0}, - {16338,16323,16322 ,7626,7625,726 ,0,0,0}, {16341,16322,19137 ,726,726,726 ,0,0,0}, - {16334,16325,16335 ,726,7627,7625 ,0,0,0}, {16325,16334,16332 ,7627,726,726 ,0,0,0}, - {16334,16335,16329 ,726,7625,7627 ,0,0,0}, {16335,16338,16337 ,7625,7626,7628 ,0,0,0}, - {16325,16323,16335 ,7627,7625,7625 ,0,0,0}, {16325,16332,16326 ,7627,726,726 ,0,0,0}, - {16341,16338,16322 ,726,7626,726 ,0,0,0}, {16338,16335,16323 ,7626,7625,7625 ,0,0,0}, - {16320,19137,16322 ,726,726,726 ,0,0,0}, {19140,19137,16342 ,7626,726,7627 ,0,0,0}, - {16320,16342,19137 ,726,7627,726 ,0,0,0}, {19139,16346,19138 ,726,726,726 ,0,0,0}, - {16343,19139,19140 ,7627,726,7626 ,0,0,0}, {16348,19142,19138 ,726,726,726 ,0,0,0}, - {19138,16346,16348 ,726,726,726 ,0,0,0}, {16349,16352,19143 ,7625,7625,726 ,0,0,0}, - {19142,16349,19143 ,726,7625,726 ,0,0,0}, {19141,16354,19156 ,726,726,726 ,0,0,0}, - {19141,16352,16354 ,726,7625,726 ,0,0,0}, {16358,19145,19146 ,7626,726,726 ,0,0,0}, - {19146,19156,16355 ,726,726,726 ,0,0,0}, {16358,16360,19144 ,7626,726,726 ,0,0,0}, - {16302,19157,17576 ,4303,7629,7630 ,0,0,0}, {17499,17533,19158 ,7631,7632,7633 ,0,0,0}, - {17665,17577,19159 ,7634,7635,7636 ,0,0,0}, {17561,19160,17562 ,7637,7638,7639 ,0,0,0}, - {19161,19162,17498 ,7640,7641,7642 ,0,0,0}, {19163,19164,17343 ,7643,7644,7645 ,0,0,0}, - {19163,17563,19165 ,7643,7646,7647 ,0,0,0}, {19166,19167,17341 ,7648,7649,7650 ,0,0,0}, - {17341,17340,19166 ,7650,7651,7648 ,0,0,0}, {17524,19167,19168 ,7652,7649,7653 ,0,0,0}, - {19167,17524,17341 ,7649,7652,7650 ,0,0,0}, {19169,17523,19168 ,7654,7655,7653 ,0,0,0}, - {17524,19168,17523 ,7652,7653,7655 ,0,0,0}, {19169,16316,16317 ,7654,126,7656 ,0,0,0}, - {16317,17523,19169 ,7656,7655,7654 ,0,0,0}, {19160,17561,19162 ,7638,7637,7641 ,0,0,0}, - {19164,17340,17343 ,7644,7651,7645 ,0,0,0}, {19166,17340,19164 ,7648,7651,7644 ,0,0,0}, - {19158,17533,19170 ,7633,7632,7657 ,0,0,0}, {19165,17563,17562 ,7647,7646,7639 ,0,0,0}, - {19163,17343,17563 ,7643,7645,7646 ,0,0,0}, {19160,19165,17562 ,7638,7647,7639 ,0,0,0}, - {17498,19162,17561 ,7642,7641,7637 ,0,0,0}, {17499,19158,19161 ,7631,7633,7640 ,0,0,0}, - {19161,17498,17499 ,7640,7642,7631 ,0,0,0}, {17577,19157,19159 ,7635,7629,7636 ,0,0,0}, - {19170,17665,19159 ,7657,7634,7636 ,0,0,0}, {17533,17665,19170 ,7632,7634,7657 ,0,0,0}, - {16302,17576,16303 ,4303,7630,82 ,0,0,0}, {19157,17577,17576 ,7629,7635,7630 ,0,0,0}, - {19164,19163,16299 ,726,7658,7659 ,0,0,0}, {19157,19162,19158 ,7660,7661,726 ,0,0,0}, - {19157,19160,19162 ,7660,7661,7661 ,0,0,0}, {16301,19165,16302 ,7659,726,726 ,0,0,0}, - {19161,19158,19162 ,7661,726,7661 ,0,0,0}, {19159,19157,19158 ,7659,7660,726 ,0,0,0}, - {19160,19157,16302 ,7661,7660,726 ,0,0,0}, {19170,19159,19158 ,726,7659,726 ,0,0,0}, - {19160,16302,19165 ,7661,726,726 ,0,0,0}, {16299,19163,16301 ,7659,7658,7659 ,0,0,0}, - {16301,19163,19165 ,7659,7658,726 ,0,0,0}, {16297,19166,19164 ,726,5488,726 ,0,0,0}, - {16299,16297,19164 ,7659,726,726 ,0,0,0}, {16295,19166,16297 ,726,5488,726 ,0,0,0}, - {16295,19167,19166 ,726,7662,5488 ,0,0,0}, {19168,19167,16292 ,5471,7662,7661 ,0,0,0}, - {16295,16292,19167 ,726,7661,7662 ,0,0,0}, {16291,19168,16292 ,726,5471,7661 ,0,0,0}, - {19169,16291,16289 ,7663,726,7661 ,0,0,0}, {16291,19169,19168 ,726,7663,5471 ,0,0,0}, - {16288,16316,16289 ,7658,726,7661 ,0,0,0}, {19169,16289,16316 ,7663,7661,726 ,0,0,0}, - {16308,16304,16305 ,7658,7664,726 ,0,0,0}, {16308,16314,16304 ,7658,7665,7664 ,0,0,0}, - {16311,16308,16310 ,7666,7658,7667 ,0,0,0}, {16311,16314,16308 ,7666,7665,7658 ,0,0,0}, - {16316,16288,16314 ,726,7658,7665 ,0,0,0}, {16304,16314,16288 ,7664,7665,7658 ,0,0,0}, - {19171,16842,19172 ,726,726,726 ,0,0,0}, {16842,19173,19172 ,726,726,726 ,0,0,0}, - {19174,19175,16842 ,726,726,726 ,0,0,0}, {16842,19171,19174 ,726,726,726 ,0,0,0}, - {19176,19177,16842 ,726,726,726 ,0,0,0}, {19176,16842,19175 ,726,726,726 ,0,0,0}, - {16834,19178,19179 ,7583,726,7661 ,0,0,0}, {16842,19180,19181 ,726,726,726 ,0,0,0}, - {16834,19182,19183 ,7583,7658,7661 ,0,0,0}, {19184,16834,19185 ,726,7583,726 ,0,0,0}, - {19186,19187,16834 ,726,726,7583 ,0,0,0}, {19188,19185,16834 ,726,726,7583 ,0,0,0}, - {16834,19184,19189 ,7583,726,5489 ,0,0,0}, {19186,16834,19190 ,726,7583,7583 ,0,0,0}, - {16834,19187,19188 ,7583,726,726 ,0,0,0}, {16834,19191,19182 ,7583,726,7658 ,0,0,0}, - {19183,19190,16834 ,7661,7583,7583 ,0,0,0}, {19181,19178,16834 ,726,726,7583 ,0,0,0}, - {19191,16834,19179 ,726,7583,7661 ,0,0,0}, {16842,19177,19180 ,726,726,726 ,0,0,0}, - {16842,19181,16834 ,726,726,7583 ,0,0,0}, {16835,19189,16830 ,726,5489,7668 ,0,0,0}, - {19189,16835,16834 ,5489,726,7583 ,0,0,0}, {19173,16842,19192 ,726,726,726 ,0,0,0}, - {19193,16842,16840 ,726,726,726 ,0,0,0}, {16842,19193,19192 ,726,726,726 ,0,0,0}, - {19193,16840,16846 ,726,726,726 ,0,0,0}, {17296,17559,19191 ,7669,7670,7671 ,0,0,0}, - {19179,17297,17296 ,7672,7673,7669 ,0,0,0}, {19179,19178,17297 ,7672,7673,7673 ,0,0,0}, - {19191,19179,17296 ,7671,7672,7669 ,0,0,0}, {17559,17558,19182 ,7670,7674,7675 ,0,0,0}, - {17301,17355,19190 ,7676,7677,7678 ,0,0,0}, {19183,19182,17558 ,7679,7675,7674 ,0,0,0}, - {17558,17301,19183 ,7674,7676,7679 ,0,0,0}, {19190,19183,17301 ,7678,7679,7676 ,0,0,0}, - {17559,19182,19191 ,7670,7675,7671 ,0,0,0}, {19190,17355,19186 ,7678,7677,7680 ,0,0,0}, - {17354,19187,19186 ,7681,7682,7680 ,0,0,0}, {19186,17355,17354 ,7680,7677,7681 ,0,0,0}, - {19187,17354,17353 ,7682,7681,7683 ,0,0,0}, {17347,19188,17353 ,7684,7685,7683 ,0,0,0}, - {17347,17349,19185 ,7684,7686,7687 ,0,0,0}, {17347,19185,19188 ,7684,7687,7685 ,0,0,0}, - {19184,17350,19189 ,7688,7689,7690 ,0,0,0}, {19185,17349,19184 ,7687,7686,7688 ,0,0,0}, - {19184,17349,17350 ,7688,7686,7689 ,0,0,0}, {17350,17351,19189 ,7689,7690,7690 ,0,0,0}, - {19187,17353,19188 ,7682,7683,7685 ,0,0,0}, {17344,19178,19181 ,7691,7673,7692 ,0,0,0}, - {19178,17344,17297 ,7673,7691,7673 ,0,0,0}, {19180,17345,19181 ,7693,7694,7692 ,0,0,0}, - {17344,19181,17345 ,7691,7692,7694 ,0,0,0}, {19180,19177,17376 ,7693,7695,7696 ,0,0,0}, - {17376,17345,19180 ,7696,7694,7693 ,0,0,0}, {17377,19177,19176 ,7697,7695,7698 ,0,0,0}, - {19177,17377,17376 ,7695,7697,7696 ,0,0,0}, {19175,17599,19176 ,7699,7700,7698 ,0,0,0}, - {17377,19176,17599 ,7697,7698,7700 ,0,0,0}, {19175,19174,17380 ,7699,7701,7702 ,0,0,0}, - {17380,17599,19175 ,7702,7700,7699 ,0,0,0}, {17379,19174,19171 ,7703,7701,7704 ,0,0,0}, - {19174,17379,17380 ,7701,7703,7702 ,0,0,0}, {19172,17402,19171 ,7705,7706,7704 ,0,0,0}, - {17379,19171,17402 ,7703,7704,7706 ,0,0,0}, {19172,19173,17405 ,7705,7707,7708 ,0,0,0}, - {17405,17402,19172 ,7708,7706,7705 ,0,0,0}, {17406,19173,19192 ,7709,7707,7710 ,0,0,0}, - {19173,17406,17405 ,7707,7709,7708 ,0,0,0}, {17406,19192,17407 ,7709,7710,7711 ,0,0,0}, - {17407,19192,19193 ,7711,7710,7711 ,0,0,0}, {18108,19193,16846 ,7712,7712,7712 ,0,0,0}, - {19193,18109,18112 ,7712,7712,7712 ,0,0,0}, {18108,18109,19193 ,7712,7712,7712 ,0,0,0}, - {19193,18118,18123 ,7712,7712,7712 ,0,0,0}, {18112,18118,19193 ,7712,7712,7712 ,0,0,0}, - {19193,18127,18091 ,7712,7712,7712 ,0,0,0}, {18123,18127,19193 ,7712,7712,7712 ,0,0,0}, - {19193,18095,18094 ,7712,7712,7712 ,0,0,0}, {18091,18095,19193 ,7712,7712,7712 ,0,0,0}, - {19193,18094,17407 ,7712,7712,7712 ,0,0,0}, {18160,19189,17351 ,7713,7713,7713 ,0,0,0}, - {18160,18210,19189 ,7713,7713,7713 ,0,0,0}, {19189,18210,18196 ,7713,7713,7713 ,0,0,0}, - {18156,18162,19189 ,7713,7713,7713 ,0,0,0}, {18156,19189,18196 ,7713,7713,7713 ,0,0,0}, - {18162,18192,19189 ,7713,7713,7713 ,0,0,0}, {19189,18148,18147 ,7713,7713,7713 ,0,0,0}, - {18192,18148,19189 ,7713,7713,7713 ,0,0,0}, {16830,19189,18152 ,7713,7713,7713 ,0,0,0}, - {18147,18152,19189 ,7713,7713,7713 ,0,0,0}, {16265,19194,17614 ,1435,7714,7715 ,0,0,0}, - {19195,17605,19196 ,7716,7717,7718 ,0,0,0}, {17624,17613,19197 ,7719,7720,7721 ,0,0,0}, - {17285,19198,17386 ,7722,7723,7724 ,0,0,0}, {19199,19200,17627 ,7725,7726,7727 ,0,0,0}, - {19201,17408,19202 ,7728,7729,7730 ,0,0,0}, {17410,17387,19203 ,7731,7732,7733 ,0,0,0}, - {17292,17391,19204 ,7734,7735,7736 ,0,0,0}, {17396,19205,17391 ,7737,7738,7735 ,0,0,0}, - {17392,19206,19207 ,7739,7740,7741 ,0,0,0}, {17292,19208,17394 ,7734,7742,7743 ,0,0,0}, - {19209,17401,19207 ,7744,7745,7741 ,0,0,0}, {17392,19207,17401 ,7739,7741,7745 ,0,0,0}, - {19209,19210,17399 ,7744,7746,7747 ,0,0,0}, {17399,17401,19209 ,7747,7745,7744 ,0,0,0}, - {17412,19210,19211 ,7748,7746,7749 ,0,0,0}, {19210,17412,17399 ,7746,7748,7747 ,0,0,0}, - {19212,17398,19211 ,7750,7751,7749 ,0,0,0}, {17412,19211,17398 ,7748,7749,7751 ,0,0,0}, - {19212,16284,16285 ,7750,1359,1359 ,0,0,0}, {16285,17398,19212 ,1359,7751,7750 ,0,0,0}, - {19204,17391,19205 ,7736,7735,7738 ,0,0,0}, {19206,17394,19208 ,7740,7743,7742 ,0,0,0}, - {17394,19206,17392 ,7743,7740,7739 ,0,0,0}, {19204,19208,17292 ,7736,7742,7734 ,0,0,0}, - {19201,19205,17396 ,7728,7738,7737 ,0,0,0}, {17410,19203,19202 ,7731,7733,7730 ,0,0,0}, - {17410,19202,17408 ,7731,7730,7729 ,0,0,0}, {17396,17408,19201 ,7737,7729,7728 ,0,0,0}, - {17387,19213,19203 ,7732,7752,7733 ,0,0,0}, {19213,17387,17386 ,7752,7732,7724 ,0,0,0}, - {19200,19198,17285 ,7726,7723,7722 ,0,0,0}, {19198,19213,17386 ,7723,7752,7724 ,0,0,0}, - {17627,19200,17285 ,7727,7726,7722 ,0,0,0}, {17615,19195,19199 ,7753,7716,7725 ,0,0,0}, - {17615,19199,17627 ,7753,7725,7727 ,0,0,0}, {17605,17624,19196 ,7717,7719,7718 ,0,0,0}, - {17615,17605,19195 ,7753,7717,7716 ,0,0,0}, {17613,19194,19197 ,7720,7714,7721 ,0,0,0}, - {19196,17624,19197 ,7718,7719,7721 ,0,0,0}, {16265,17614,16263 ,1435,7715,1435 ,0,0,0}, - {19194,17613,17614 ,7714,7720,7715 ,0,0,0}, {19212,19211,19210 ,726,7628,7628 ,0,0,0}, - {16267,19207,16266 ,7627,7628,726 ,0,0,0}, {16246,16244,19208 ,7754,7625,7626 ,0,0,0}, - {19207,19206,16266 ,7628,726,726 ,0,0,0}, {16249,19201,16250 ,7755,726,7756 ,0,0,0}, - {16246,19208,19204 ,7754,7626,7626 ,0,0,0}, {19203,19213,16258 ,726,7628,7757 ,0,0,0}, - {19203,16256,19202 ,726,7758,7626 ,0,0,0}, {16259,16253,19198 ,7759,7760,7628 ,0,0,0}, - {19195,19196,19197 ,7625,7754,726 ,0,0,0}, {16262,16259,19200 ,7628,7759,7627 ,0,0,0}, - {16265,16262,19194 ,7628,7628,7761 ,0,0,0}, {19194,19195,19197 ,7761,7625,726 ,0,0,0}, - {16262,19199,19195 ,7628,7628,7625 ,0,0,0}, {19194,16262,19195 ,7761,7628,7625 ,0,0,0}, - {16262,16261,16259 ,7628,7762,7759 ,0,0,0}, {16262,19200,19199 ,7628,7627,7628 ,0,0,0}, - {16258,19198,16253 ,7757,7628,7760 ,0,0,0}, {19198,19200,16259 ,7628,7627,7759 ,0,0,0}, - {16258,19213,19198 ,7757,7628,7628 ,0,0,0}, {19202,16256,16250 ,7626,7758,7756 ,0,0,0}, - {16258,16256,19203 ,7757,7758,726 ,0,0,0}, {19205,19201,16249 ,7628,726,7755 ,0,0,0}, - {19201,19202,16250 ,726,7626,7756 ,0,0,0}, {19205,16247,19204 ,7628,7628,7626 ,0,0,0}, - {16247,19205,16249 ,7628,7628,7755 ,0,0,0}, {19206,19208,16244 ,726,7626,7625 ,0,0,0}, - {16247,16246,19204 ,7628,7754,7626 ,0,0,0}, {16270,19207,16267 ,7625,7628,7627 ,0,0,0}, - {16244,16266,19206 ,7625,726,726 ,0,0,0}, {19210,19209,16270 ,7628,7628,7625 ,0,0,0}, - {16270,19209,19207 ,7625,7628,7628 ,0,0,0}, {16272,19212,19210 ,7628,726,7628 ,0,0,0}, - {19210,16270,16272 ,7628,7625,7628 ,0,0,0}, {16272,16273,19212 ,7628,7628,726 ,0,0,0}, - {16276,16279,16282 ,7628,7628,7628 ,0,0,0}, {16273,16276,19212 ,7628,7628,726 ,0,0,0}, - {16282,19212,16276 ,7628,726,7628 ,0,0,0}, {16276,16278,16279 ,7628,726,7628 ,0,0,0}, - {19212,16282,16284 ,726,7628,7628 ,0,0,0}, {16226,19214,17575 ,1435,7763,7764 ,0,0,0}, - {17602,17604,19215 ,7765,7766,7767 ,0,0,0}, {17608,17609,19216 ,7768,7769,7770 ,0,0,0}, - {17574,19217,17573 ,7771,7772,7773 ,0,0,0}, {19218,19219,17603 ,7774,4221,7775 ,0,0,0}, - {19220,19221,17601 ,7776,7777,7778 ,0,0,0}, {19220,17600,19222 ,7776,7779,7780 ,0,0,0}, - {19223,19224,17417 ,7781,7782,7783 ,0,0,0}, {17417,17416,19223 ,7783,7784,7781 ,0,0,0}, - {17291,19224,19225 ,7785,7782,7786 ,0,0,0}, {19224,17291,17417 ,7782,7785,7783 ,0,0,0}, - {19226,17290,19225 ,7787,7788,7786 ,0,0,0}, {17291,19225,17290 ,7785,7786,7788 ,0,0,0}, - {19226,16240,16241 ,7787,1359,1359 ,0,0,0}, {16241,17290,19226 ,1359,7788,7787 ,0,0,0}, - {19217,17574,19219 ,7772,7771,4221 ,0,0,0}, {19221,17416,17601 ,7777,7784,7778 ,0,0,0}, - {19223,17416,19221 ,7781,7784,7777 ,0,0,0}, {19215,17604,19227 ,7767,7766,4227 ,0,0,0}, - {19222,17600,17573 ,7780,7779,7773 ,0,0,0}, {19220,17601,17600 ,7776,7778,7779 ,0,0,0}, - {19217,19222,17573 ,7772,7780,7773 ,0,0,0}, {17603,19219,17574 ,7775,4221,7771 ,0,0,0}, - {17602,19215,19218 ,7765,7767,7774 ,0,0,0}, {19218,17603,17602 ,7774,7775,7765 ,0,0,0}, - {17609,19214,19216 ,7769,7763,7770 ,0,0,0}, {19227,17608,19216 ,4227,7768,7770 ,0,0,0}, - {17604,17608,19227 ,7766,7768,4227 ,0,0,0}, {16226,17575,16227 ,1435,7764,1435 ,0,0,0}, - {19214,17609,17575 ,7763,7769,7764 ,0,0,0}, {16225,16234,16226 ,726,5471,7661 ,0,0,0}, - {19217,19220,19222 ,726,726,726 ,0,0,0}, {19223,19221,19220 ,7658,726,726 ,0,0,0}, - {19220,19217,19223 ,726,726,7658 ,0,0,0}, {19223,19219,19224 ,7658,726,7658 ,0,0,0}, - {19219,19223,19217 ,726,7658,726 ,0,0,0}, {19225,19224,19218 ,7658,7658,726 ,0,0,0}, - {19219,19218,19224 ,726,726,7658 ,0,0,0}, {19215,19226,19225 ,7658,7661,7658 ,0,0,0}, - {19225,19218,19215 ,7658,726,7658 ,0,0,0}, {19226,19227,16240 ,7661,7661,7664 ,0,0,0}, - {19227,19226,19215 ,7661,7661,7658 ,0,0,0}, {19227,19216,16240 ,7661,726,7664 ,0,0,0}, - {19216,19214,16238 ,726,726,7662 ,0,0,0}, {16232,16225,16223 ,7789,726,7658 ,0,0,0}, - {16213,16212,16219 ,5488,7668,7661 ,0,0,0}, {16229,16221,16228 ,7790,7664,7791 ,0,0,0}, - {16213,16219,16215 ,5488,7661,7792 ,0,0,0}, {16216,16215,16219 ,5488,7792,7661 ,0,0,0}, - {16221,16219,16228 ,7664,7661,7791 ,0,0,0}, {16228,16219,16212 ,7791,7661,7668 ,0,0,0}, - {16221,16229,16223 ,7664,7790,7658 ,0,0,0}, {16234,16225,16232 ,5471,726,7789 ,0,0,0}, - {16232,16223,16229 ,7789,7658,7790 ,0,0,0}, {16226,16235,19214 ,7661,7583,726 ,0,0,0}, - {16226,16234,16235 ,7661,5471,7583 ,0,0,0}, {19216,16238,16240 ,726,7662,7664 ,0,0,0}, - {16235,16238,19214 ,7583,7662,726 ,0,0,0}, {19228,16871,19229 ,7583,726,726 ,0,0,0}, - {19230,16867,19231 ,7668,726,5470 ,0,0,0}, {19230,19232,16867 ,7668,726,726 ,0,0,0}, - {16867,19233,19231 ,726,726,5470 ,0,0,0}, {19232,19234,16867 ,726,5489,726 ,0,0,0}, - {16867,19235,19236 ,726,7793,7794 ,0,0,0}, {19234,19235,16867 ,5489,7793,726 ,0,0,0}, - {16871,19237,16867 ,726,5470,726 ,0,0,0}, {19237,19233,16867 ,5470,726,726 ,0,0,0}, - {19238,19237,16871 ,726,5470,726 ,0,0,0}, {19239,16867,19236 ,7795,726,7794 ,0,0,0}, - {16871,19240,19238 ,726,5488,726 ,0,0,0}, {19239,19241,16867 ,7795,726,726 ,0,0,0}, - {19242,16867,19243 ,5485,726,7796 ,0,0,0}, {16867,19241,19243 ,726,726,7796 ,0,0,0}, - {16871,19244,19240 ,726,7583,5488 ,0,0,0}, {19245,16867,19242 ,7583,726,5485 ,0,0,0}, - {16871,19246,19244 ,726,726,7583 ,0,0,0}, {16871,19247,19248 ,726,5488,7583 ,0,0,0}, - {16871,19248,19246 ,726,7583,726 ,0,0,0}, {16868,19245,16863 ,5489,7583,7797 ,0,0,0}, - {16871,19228,19247 ,726,7583,5488 ,0,0,0}, {19245,16868,16867 ,7583,5489,726 ,0,0,0}, - {19229,16871,19249 ,726,726,7583 ,0,0,0}, {19250,16871,16878 ,726,726,726 ,0,0,0}, - {16871,19250,19249 ,726,726,7583 ,0,0,0}, {19250,16878,16877 ,726,726,726 ,0,0,0}, - {17286,17388,19230 ,7798,7799,7800 ,0,0,0}, {19231,17284,17286 ,7801,7802,7798 ,0,0,0}, - {19231,19233,17284 ,7801,7802,7802 ,0,0,0}, {19230,19231,17286 ,7800,7801,7798 ,0,0,0}, - {17388,17597,19232 ,7799,7803,7804 ,0,0,0}, {17409,17395,19235 ,7805,7806,7807 ,0,0,0}, - {19234,19232,17597 ,7808,7804,7803 ,0,0,0}, {17597,17409,19234 ,7803,7805,7808 ,0,0,0}, - {19235,19234,17409 ,7807,7808,7805 ,0,0,0}, {17388,19232,19230 ,7799,7804,7800 ,0,0,0}, - {19235,17395,19236 ,7807,7806,7809 ,0,0,0}, {17390,19239,19236 ,7810,7811,7809 ,0,0,0}, - {19236,17395,17390 ,7809,7806,7810 ,0,0,0}, {19239,17390,17389 ,7811,7810,7812 ,0,0,0}, - {17294,19241,17389 ,7813,7814,7812 ,0,0,0}, {17294,17373,19243 ,7813,7815,7816 ,0,0,0}, - {17294,19243,19241 ,7813,7816,7814 ,0,0,0}, {19242,17375,19245 ,7817,7818,7819 ,0,0,0}, - {19243,17373,19242 ,7816,7815,7817 ,0,0,0}, {19242,17373,17375 ,7817,7815,7818 ,0,0,0}, - {17375,17404,19245 ,7818,7819,7819 ,0,0,0}, {19239,17389,19241 ,7811,7812,7814 ,0,0,0}, - {17418,19233,19237 ,7820,7802,7821 ,0,0,0}, {19233,17418,17284 ,7802,7820,7802 ,0,0,0}, - {19238,17422,19237 ,7822,7823,7821 ,0,0,0}, {17418,19237,17422 ,7820,7821,7823 ,0,0,0}, - {19238,19240,17383 ,7822,7824,7825 ,0,0,0}, {17383,17422,19238 ,7825,7823,7822 ,0,0,0}, - {17384,19240,19244 ,7826,7824,7827 ,0,0,0}, {19240,17384,17383 ,7824,7826,7825 ,0,0,0}, - {19246,17459,19244 ,7828,7829,7827 ,0,0,0}, {17384,19244,17459 ,7826,7827,7829 ,0,0,0}, - {19246,19248,17287 ,7828,7830,7831 ,0,0,0}, {17287,17459,19246 ,7831,7829,7828 ,0,0,0}, - {17288,19248,19247 ,7832,7830,7833 ,0,0,0}, {19248,17288,17287 ,7830,7832,7831 ,0,0,0}, - {19228,17446,19247 ,7834,7835,7833 ,0,0,0}, {17288,19247,17446 ,7832,7833,7835 ,0,0,0}, - {19228,19229,17449 ,7834,7836,7837 ,0,0,0}, {17449,17446,19228 ,7837,7835,7834 ,0,0,0}, - {17453,19229,19249 ,7838,7836,7839 ,0,0,0}, {19229,17453,17449 ,7836,7838,7837 ,0,0,0}, - {17453,19249,17454 ,7838,7839,7840 ,0,0,0}, {17454,19249,19250 ,7840,7839,7840 ,0,0,0}, - {18021,19250,16877 ,7841,7841,7841 ,0,0,0}, {19250,18027,18030 ,7841,7841,7841 ,0,0,0}, - {18021,18027,19250 ,7841,7841,7841 ,0,0,0}, {19250,18036,18041 ,7841,7841,7841 ,0,0,0}, - {18030,18036,19250 ,7841,7841,7841 ,0,0,0}, {19250,18045,18004 ,7841,7841,7841 ,0,0,0}, - {18041,18045,19250 ,7841,7841,7841 ,0,0,0}, {19250,18016,18015 ,7841,7841,7841 ,0,0,0}, - {18004,18016,19250 ,7841,7841,7841 ,0,0,0}, {19250,18015,17454 ,7841,7841,7841 ,0,0,0}, - {18082,19245,17404 ,7842,7842,7842 ,0,0,0}, {18082,18128,19245 ,7842,7842,7842 ,0,0,0}, - {19245,18128,18114 ,7842,7842,7842 ,0,0,0}, {18076,18069,19245 ,7842,7842,7842 ,0,0,0}, - {18076,19245,18114 ,7842,7842,7842 ,0,0,0}, {18069,18110,19245 ,7842,7842,7842 ,0,0,0}, - {19245,18102,18064 ,7842,7842,7842 ,0,0,0}, {18110,18102,19245 ,7842,7842,7842 ,0,0,0}, - {16863,19245,18065 ,7842,7842,7842 ,0,0,0}, {18064,18065,19245 ,7842,7842,7842 ,0,0,0}, - {16189,19251,17639 ,1790,7843,4204 ,0,0,0}, {19252,17636,19253 ,7844,4198,4199 ,0,0,0}, - {17625,17638,19254 ,7845,7846,7847 ,0,0,0}, {17616,19255,17434 ,7848,7849,7850 ,0,0,0}, - {19256,19257,17649 ,7851,7852,7853 ,0,0,0}, {19258,17413,19259 ,7854,7855,7856 ,0,0,0}, - {17415,17432,19260 ,7857,7858,7859 ,0,0,0}, {17281,17280,19261 ,7860,7861,7862 ,0,0,0}, - {17436,19262,17280 ,7863,7864,7861 ,0,0,0}, {17440,19263,19264 ,7865,7866,7867 ,0,0,0}, - {17281,19265,17439 ,7860,7868,7869 ,0,0,0}, {19266,17445,19264 ,7870,7871,7867 ,0,0,0}, - {17440,19264,17445 ,7865,7867,7871 ,0,0,0}, {19266,19267,17443 ,7870,7872,7873 ,0,0,0}, - {17443,17445,19266 ,7873,7871,7870 ,0,0,0}, {17428,19267,19268 ,7874,7872,7875 ,0,0,0}, - {19267,17428,17443 ,7872,7874,7873 ,0,0,0}, {19269,17426,19268 ,7876,7877,7875 ,0,0,0}, - {17428,19268,17426 ,7874,7875,7877 ,0,0,0}, {19269,16208,16209 ,7876,1711,1711 ,0,0,0}, - {16209,17426,19269 ,1711,7877,7876 ,0,0,0}, {19261,17280,19262 ,7862,7861,7864 ,0,0,0}, - {19263,17439,19265 ,7866,7869,7868 ,0,0,0}, {17439,19263,17440 ,7869,7866,7865 ,0,0,0}, - {19261,19265,17281 ,7862,7868,7860 ,0,0,0}, {19258,19262,17436 ,7854,7864,7863 ,0,0,0}, - {17415,19260,19259 ,7857,7859,7856 ,0,0,0}, {17415,19259,17413 ,7857,7856,7855 ,0,0,0}, - {17436,17413,19258 ,7863,7855,7854 ,0,0,0}, {17432,19270,19260 ,7858,7878,7859 ,0,0,0}, - {19270,17432,17434 ,7878,7858,7850 ,0,0,0}, {19257,19255,17616 ,7852,7849,7848 ,0,0,0}, - {19255,19270,17434 ,7849,7878,7850 ,0,0,0}, {17649,19257,17616 ,7853,7852,7848 ,0,0,0}, - {17637,19252,19256 ,7879,7844,7851 ,0,0,0}, {17637,19256,17649 ,7879,7851,7853 ,0,0,0}, - {17636,17625,19253 ,4198,7845,4199 ,0,0,0}, {17637,17636,19252 ,7879,4198,7844 ,0,0,0}, - {17638,19251,19254 ,7846,7843,7847 ,0,0,0}, {19253,17625,19254 ,4199,7845,7847 ,0,0,0}, - {16189,17639,16187 ,1790,4204,1790 ,0,0,0}, {19251,17638,17639 ,7843,7846,4204 ,0,0,0}, - {19261,19262,19256 ,726,7880,7881 ,0,0,0}, {19251,19266,19264 ,7882,7627,7625 ,0,0,0}, - {19257,19258,19255 ,7883,7758,726 ,0,0,0}, {19270,19255,19258 ,7884,726,7758 ,0,0,0}, - {19259,19260,19270 ,7880,7761,7884 ,0,0,0}, {19258,19257,19262 ,7758,7883,7880 ,0,0,0}, - {19259,19270,19258 ,7880,7884,7758 ,0,0,0}, {19261,19256,19252 ,726,7881,7885 ,0,0,0}, - {19262,19257,19256 ,7880,7883,7881 ,0,0,0}, {19252,19253,19265 ,7885,7886,7758 ,0,0,0}, - {19265,19261,19252 ,7758,726,7885 ,0,0,0}, {19263,19253,19254 ,726,7886,7887 ,0,0,0}, - {19253,19263,19265 ,7886,726,7758 ,0,0,0}, {19264,19263,19254 ,7625,726,7887 ,0,0,0}, - {16189,19266,19251 ,7758,7627,7882 ,0,0,0}, {19251,19264,19254 ,7882,7625,7887 ,0,0,0}, - {19267,16189,16186 ,7627,7758,7755 ,0,0,0}, {16189,19267,19266 ,7758,7627,7627 ,0,0,0}, - {16185,19268,16186 ,7625,726,7755 ,0,0,0}, {19267,16186,19268 ,7627,7755,726 ,0,0,0}, - {16185,16183,19269 ,7625,7761,726 ,0,0,0}, {19269,19268,16185 ,726,726,7625 ,0,0,0}, - {16208,16183,16177 ,7627,7761,7625 ,0,0,0}, {16183,16208,19269 ,7761,7627,726 ,0,0,0}, - {16174,16202,16180 ,726,7627,7625 ,0,0,0}, {16182,16206,16177 ,7880,726,7625 ,0,0,0}, - {16200,16173,16197 ,7625,726,726 ,0,0,0}, {16194,16170,16191 ,7627,7625,7625 ,0,0,0}, - {16196,16197,16171 ,726,726,7625 ,0,0,0}, {16191,16168,16190 ,7625,7625,726 ,0,0,0}, - {16170,16194,16196 ,7625,7627,726 ,0,0,0}, {16171,16170,16196 ,7625,7625,726 ,0,0,0}, - {16191,16170,16168 ,7625,7625,7625 ,0,0,0}, {16174,16173,16200 ,726,726,7625 ,0,0,0}, - {16171,16197,16173 ,7625,726,726 ,0,0,0}, {16203,16180,16202 ,726,7625,7627 ,0,0,0}, - {16202,16174,16200 ,7627,726,7625 ,0,0,0}, {16182,16203,16206 ,7880,726,726 ,0,0,0}, - {16203,16182,16180 ,726,7880,7625 ,0,0,0}, {16206,16208,16177 ,726,7627,7625 ,0,0,0}, - {16150,19271,17569 ,1790,7888,7889 ,0,0,0}, {17621,17610,19272 ,7890,7891,7892 ,0,0,0}, - {17623,17570,19273 ,7893,7894,7895 ,0,0,0}, {17611,19274,17612 ,7896,7897,4137 ,0,0,0}, - {19275,19276,17622 ,7898,7899,7900 ,0,0,0}, {19277,19278,17620 ,7901,7902,7903 ,0,0,0}, - {19277,17619,19279 ,7901,7904,7905 ,0,0,0}, {19280,19281,17455 ,7906,7907,7908 ,0,0,0}, - {17455,17456,19280 ,7908,7909,7906 ,0,0,0}, {17618,19281,19282 ,7910,7907,7911 ,0,0,0}, - {19281,17618,17455 ,7907,7910,7908 ,0,0,0}, {19283,17429,19282 ,7912,7913,7911 ,0,0,0}, - {17618,19282,17429 ,7910,7911,7913 ,0,0,0}, {19283,16164,16165 ,7912,1711,1711 ,0,0,0}, - {16165,17429,19283 ,1711,7913,7912 ,0,0,0}, {19274,17611,19276 ,7897,7896,7899 ,0,0,0}, - {19278,17456,17620 ,7902,7909,7903 ,0,0,0}, {19280,17456,19278 ,7906,7909,7902 ,0,0,0}, - {19272,17610,19284 ,7892,7891,7914 ,0,0,0}, {19279,17619,17612 ,7905,7904,4137 ,0,0,0}, - {19277,17620,17619 ,7901,7903,7904 ,0,0,0}, {19274,19279,17612 ,7897,7905,4137 ,0,0,0}, - {17622,19276,17611 ,7900,7899,7896 ,0,0,0}, {17621,19272,19275 ,7890,7892,7898 ,0,0,0}, - {19275,17622,17621 ,7898,7900,7890 ,0,0,0}, {17570,19271,19273 ,7894,7888,7895 ,0,0,0}, - {19284,17623,19273 ,7914,7893,7895 ,0,0,0}, {17610,17623,19284 ,7891,7893,7914 ,0,0,0}, - {16150,17569,16151 ,1790,7889,1790 ,0,0,0}, {19271,17570,17569 ,7888,7894,7889 ,0,0,0}, - {19277,16158,19278 ,726,7658,726 ,0,0,0}, {19282,19281,16162 ,726,726,7660 ,0,0,0}, - {16164,19283,19282 ,726,7660,726 ,0,0,0}, {19277,19279,16156 ,726,726,7658 ,0,0,0}, - {16159,16162,19280 ,7660,7660,7659 ,0,0,0}, {19276,19275,16136 ,7659,726,7661 ,0,0,0}, - {19276,16152,19274 ,7659,726,726 ,0,0,0}, {16139,16137,19272 ,7915,7916,726 ,0,0,0}, - {19271,16145,16143 ,7658,7917,5475 ,0,0,0}, {19273,16140,19284 ,7658,726,7659 ,0,0,0}, - {16150,16149,16145 ,7918,7918,7917 ,0,0,0}, {16147,16145,16149 ,7661,7917,7918 ,0,0,0}, - {19273,19271,16143 ,7658,7658,5475 ,0,0,0}, {19271,16150,16145 ,7658,7918,7917 ,0,0,0}, - {16140,19273,16143 ,726,7658,5475 ,0,0,0}, {19284,16140,16139 ,7659,726,7915 ,0,0,0}, - {19272,16137,19275 ,726,7916,726 ,0,0,0}, {19284,16139,19272 ,7659,7915,726 ,0,0,0}, - {19276,16136,16152 ,7659,7661,726 ,0,0,0}, {19275,16137,16136 ,726,7916,7661 ,0,0,0}, - {16153,19279,19274 ,7664,726,726 ,0,0,0}, {16152,16153,19274 ,726,7664,726 ,0,0,0}, - {16158,19277,16156 ,7658,726,7658 ,0,0,0}, {16156,19279,16153 ,7658,726,7664 ,0,0,0}, - {19278,16159,19280 ,726,7660,7659 ,0,0,0}, {19278,16158,16159 ,726,7658,7660 ,0,0,0}, - {19282,16162,16164 ,726,7660,726 ,0,0,0}, {19281,19280,16162 ,726,7659,7660 ,0,0,0}, - {16908,19285,19286 ,726,5469,7919 ,0,0,0}, {19287,16908,19288 ,7920,726,7921 ,0,0,0}, - {16908,19287,19285 ,726,7920,5469 ,0,0,0}, {16908,19289,19288 ,726,726,7921 ,0,0,0}, - {19290,16908,19286 ,7922,726,7919 ,0,0,0}, {19289,16908,19291 ,726,726,7920 ,0,0,0}, - {19290,19292,16908 ,7922,7923,726 ,0,0,0}, {16908,19293,19294 ,726,7924,7925 ,0,0,0}, - {19294,19295,16908 ,7925,7926,726 ,0,0,0}, {19292,19293,16908 ,7923,7924,726 ,0,0,0}, - {19296,19297,16908 ,5472,7927,726 ,0,0,0}, {19296,16908,19295 ,5472,726,7926 ,0,0,0}, - {19298,19299,16908 ,7928,7929,726 ,0,0,0}, {19298,16908,19297 ,7928,726,7927 ,0,0,0}, - {19300,19301,16908 ,726,5489,726 ,0,0,0}, {19300,16908,19299 ,726,726,7929 ,0,0,0}, - {16908,19302,16907 ,726,5488,7583 ,0,0,0}, {19302,16908,19301 ,5488,726,5489 ,0,0,0}, - {16907,19303,19304 ,7583,5470,5489 ,0,0,0}, {19302,19303,16907 ,5488,5470,7583 ,0,0,0}, - {16903,16904,19304 ,5489,5488,5489 ,0,0,0}, {16907,19304,16904 ,7583,5489,5488 ,0,0,0}, - {16898,16903,19304 ,5489,5489,5489 ,0,0,0}, {16908,18875,19291 ,726,5489,7920 ,0,0,0}, - {18875,19305,19306 ,5489,5470,5488 ,0,0,0}, {19291,18875,19306 ,7920,5489,5488 ,0,0,0}, - {19307,18875,18874 ,5489,5489,726 ,0,0,0}, {18875,19307,19305 ,5489,5489,5470 ,0,0,0}, - {17938,19307,18873 ,5489,5489,7583 ,0,0,0}, {18874,18873,19307 ,726,7583,5489 ,0,0,0}, - {17472,17433,19295 ,7930,7931,7932 ,0,0,0}, {19294,17474,17472 ,7933,7934,7930 ,0,0,0}, - {19294,19293,17474 ,7933,7935,7934 ,0,0,0}, {19295,19294,17472 ,7932,7933,7930 ,0,0,0}, - {17433,17617,19296 ,7931,7936,7937 ,0,0,0}, {17414,17435,19298 ,7938,7939,7940 ,0,0,0}, - {19297,19296,17617 ,7941,7937,7936 ,0,0,0}, {17617,17414,19297 ,7936,7938,7941 ,0,0,0}, - {19298,19297,17414 ,7940,7941,7938 ,0,0,0}, {17433,19296,19295 ,7931,7937,7932 ,0,0,0}, - {19298,17435,19299 ,7940,7939,7942 ,0,0,0}, {17437,19300,19299 ,7943,7944,7942 ,0,0,0}, - {19299,17435,17437 ,7942,7939,7943 ,0,0,0}, {19300,17437,17282 ,7944,7943,7945 ,0,0,0}, - {17425,19301,17282 ,7946,7947,7945 ,0,0,0}, {17425,17438,19302 ,7946,7948,7949 ,0,0,0}, - {17425,19302,19301 ,7946,7949,7947 ,0,0,0}, {19303,17430,19304 ,7950,7951,7952 ,0,0,0}, - {19302,17438,19303 ,7949,7948,7950 ,0,0,0}, {19303,17438,17430 ,7950,7948,7951 ,0,0,0}, - {17430,17431,19304 ,7951,7952,7952 ,0,0,0}, {19300,17282,19301 ,7944,7945,7947 ,0,0,0}, - {17594,19293,19292 ,7953,7935,7954 ,0,0,0}, {19293,17594,17474 ,7935,7953,7934 ,0,0,0}, - {19290,17473,19292 ,7955,7956,7954 ,0,0,0}, {17594,19292,17473 ,7953,7954,7956 ,0,0,0}, - {19290,19286,17457 ,7955,7957,7958 ,0,0,0}, {17457,17473,19290 ,7958,7956,7955 ,0,0,0}, - {17458,19286,19285 ,7959,7957,7960 ,0,0,0}, {19286,17458,17457 ,7957,7959,7958 ,0,0,0}, - {19287,17631,19285 ,7961,7962,7960 ,0,0,0}, {17458,19285,17631 ,7959,7960,7962 ,0,0,0}, - {19287,19288,17571 ,7961,7963,7964 ,0,0,0}, {17571,17631,19287 ,7964,7962,7961 ,0,0,0}, - {17572,19288,19289 ,7965,7963,7966 ,0,0,0}, {19288,17572,17571 ,7963,7965,7964 ,0,0,0}, - {19291,17465,19289 ,7967,7968,7966 ,0,0,0}, {17572,19289,17465 ,7965,7966,7968 ,0,0,0}, - {19291,19306,17493 ,7967,7969,7970 ,0,0,0}, {17493,17465,19291 ,7970,7968,7967 ,0,0,0}, - {17494,19306,19305 ,7971,7969,7972 ,0,0,0}, {19306,17494,17493 ,7969,7971,7970 ,0,0,0}, - {17494,19305,17496 ,7971,7972,7973 ,0,0,0}, {17496,19305,19307 ,7973,7972,7973 ,0,0,0}, - {17948,17954,19307 ,7974,7974,7974 ,0,0,0}, {19307,17938,17939 ,7974,7974,7974 ,0,0,0}, - {17939,17945,19307 ,7974,7974,7974 ,0,0,0}, {17959,19307,17954 ,7974,7974,7974 ,0,0,0}, - {17945,17948,19307 ,7974,7974,7974 ,0,0,0}, {17963,17916,19307 ,7974,7974,7974 ,0,0,0}, - {17963,19307,17959 ,7974,7974,7974 ,0,0,0}, {17916,17928,19307 ,7974,7974,7974 ,0,0,0}, - {17496,19307,17927 ,7974,7974,7974 ,0,0,0}, {17928,17927,19307 ,7974,7974,7974 ,0,0,0}, - {19304,17431,17996 ,7975,7975,7975 ,0,0,0}, {17996,18046,19304 ,7975,7975,7975 ,0,0,0}, - {19304,18032,17992 ,7975,7975,7975 ,0,0,0}, {18046,18032,19304 ,7975,7975,7975 ,0,0,0}, - {19304,17998,18028 ,7975,7975,7975 ,0,0,0}, {17992,17998,19304 ,7975,7975,7975 ,0,0,0}, - {19304,17984,17983 ,7975,7975,7975 ,0,0,0}, {18028,17984,19304 ,7975,7975,7975 ,0,0,0}, - {16898,19304,17988 ,7975,7975,7975 ,0,0,0}, {17983,17988,19304 ,7975,7975,7975 ,0,0,0}, - {16113,19308,17644 ,126,7976,7977 ,0,0,0}, {19309,17646,19310 ,7978,7979,7980 ,0,0,0}, - {17660,17647,19311 ,7981,7982,7983 ,0,0,0}, {17461,19312,17452 ,7984,7985,7986 ,0,0,0}, - {19313,19314,17628 ,7987,7988,7989 ,0,0,0}, {19315,17479,19316 ,7990,7991,7992 ,0,0,0}, - {17497,17464,19317 ,7993,7994,7995 ,0,0,0}, {17489,17490,19318 ,7996,7997,7998 ,0,0,0}, - {17480,19319,17490 ,7999,8000,7997 ,0,0,0}, {17481,19320,19321 ,8001,8002,8003 ,0,0,0}, - {17489,19322,17483 ,7996,8004,8005 ,0,0,0}, {19323,17484,19321 ,8006,8007,8003 ,0,0,0}, - {17481,19321,17484 ,8001,8003,8007 ,0,0,0}, {19323,19324,17487 ,8006,8008,8009 ,0,0,0}, - {17487,17484,19323 ,8009,8007,8006 ,0,0,0}, {17526,19324,19325 ,8010,8008,8011 ,0,0,0}, - {19324,17526,17487 ,8008,8010,8009 ,0,0,0}, {19326,17488,19325 ,8012,8013,8011 ,0,0,0}, - {17526,19325,17488 ,8010,8011,8013 ,0,0,0}, {19326,16132,16133 ,8012,8014,4346 ,0,0,0}, - {16133,17488,19326 ,4346,8013,8012 ,0,0,0}, {19318,17490,19319 ,7998,7997,8000 ,0,0,0}, - {19320,17483,19322 ,8002,8005,8004 ,0,0,0}, {17483,19320,17481 ,8005,8002,8001 ,0,0,0}, - {19318,19322,17489 ,7998,8004,7996 ,0,0,0}, {19315,19319,17480 ,7990,8000,7999 ,0,0,0}, - {17497,19317,19316 ,7993,7995,7992 ,0,0,0}, {17497,19316,17479 ,7993,7992,7991 ,0,0,0}, - {17480,17479,19315 ,7999,7991,7990 ,0,0,0}, {17464,19327,19317 ,7994,8015,7995 ,0,0,0}, - {19327,17464,17452 ,8015,7994,7986 ,0,0,0}, {19314,19312,17461 ,7988,7985,7984 ,0,0,0}, - {19312,19327,17452 ,7985,8015,7986 ,0,0,0}, {17628,19314,17461 ,7989,7988,7984 ,0,0,0}, - {17645,19309,19313 ,8016,7978,7987 ,0,0,0}, {17645,19313,17628 ,8016,7987,7989 ,0,0,0}, - {17646,17660,19310 ,7979,7981,7980 ,0,0,0}, {17645,17646,19309 ,8016,7979,7978 ,0,0,0}, - {17647,19308,19311 ,7982,7976,7983 ,0,0,0}, {19310,17660,19311 ,7980,7981,7983 ,0,0,0}, - {16113,17644,16111 ,126,7977,4289 ,0,0,0}, {19308,17647,17644 ,7976,7982,7977 ,0,0,0}, - {19326,19325,19324 ,7625,7880,7758 ,0,0,0}, {16118,19309,19310 ,7626,7880,726 ,0,0,0}, - {19324,19321,19318 ,7758,8017,8018 ,0,0,0}, {19324,19323,19321 ,7758,7758,8017 ,0,0,0}, - {19320,19318,19321 ,8017,8018,8017 ,0,0,0}, {19320,19322,19318 ,8017,7758,8018 ,0,0,0}, - {19319,19324,19318 ,8019,7758,8018 ,0,0,0}, {19319,19315,19326 ,8019,7884,7625 ,0,0,0}, - {19326,19324,19319 ,7625,7758,8019 ,0,0,0}, {19315,19316,16130 ,7884,8020,7625 ,0,0,0}, - {19315,16132,19326 ,7884,7625,7625 ,0,0,0}, {19327,16126,16127 ,8021,7625,726 ,0,0,0}, - {16127,16130,19317 ,726,7625,7257 ,0,0,0}, {16120,16121,19313 ,726,726,8017 ,0,0,0}, - {16124,19312,19314 ,7625,8022,7761 ,0,0,0}, {16115,19311,16114 ,7626,726,7626 ,0,0,0}, - {19310,16115,16118 ,726,7626,7626 ,0,0,0}, {16110,16095,16094 ,7625,726,726 ,0,0,0}, - {16113,16094,19308 ,7625,726,7625 ,0,0,0}, {16106,16097,16107 ,726,726,7625 ,0,0,0}, - {16097,16106,16104 ,726,726,726 ,0,0,0}, {16101,16106,16107 ,7625,726,7625 ,0,0,0}, - {16109,16107,16110 ,7625,7625,7625 ,0,0,0}, {16107,16097,16095 ,7625,726,726 ,0,0,0}, - {16098,16097,16104 ,726,726,726 ,0,0,0}, {16094,16113,16110 ,726,7625,7625 ,0,0,0}, - {16095,16110,16107 ,726,7625,7625 ,0,0,0}, {19308,16092,16114 ,7625,726,7626 ,0,0,0}, - {16092,19308,16094 ,726,7625,726 ,0,0,0}, {19311,16115,19310 ,726,7626,726 ,0,0,0}, - {19308,16114,19311 ,7625,7626,726 ,0,0,0}, {16118,16120,19309 ,7626,726,7880 ,0,0,0}, - {19313,16121,19314 ,8017,726,7761 ,0,0,0}, {19309,16120,19313 ,7880,726,8017 ,0,0,0}, - {19314,16121,16124 ,7761,726,7625 ,0,0,0}, {19312,16126,19327 ,8022,7625,8021 ,0,0,0}, - {19312,16124,16126 ,8022,7625,7625 ,0,0,0}, {16130,19316,19317 ,7625,8020,7257 ,0,0,0}, - {19317,19327,16127 ,7257,8021,726 ,0,0,0}, {16130,16132,19315 ,7625,7625,7884 ,0,0,0}, - {16074,19328,17643 ,8023,8024,8025 ,0,0,0}, {17385,17588,19329 ,8026,8027,8028 ,0,0,0}, - {17695,17641,19330 ,8029,8030,8031 ,0,0,0}, {17634,19331,17626 ,8032,8033,8034 ,0,0,0}, - {19332,19333,17593 ,8035,8036,8037 ,0,0,0}, {19334,19335,17633 ,8038,8039,8040 ,0,0,0}, - {19334,17635,19336 ,8038,8041,8042 ,0,0,0}, {19337,19338,17632 ,8043,8044,8045 ,0,0,0}, - {17632,17532,19337 ,8045,8046,8043 ,0,0,0}, {17529,19338,19339 ,8047,8044,8048 ,0,0,0}, - {19338,17529,17632 ,8044,8047,8045 ,0,0,0}, {19340,17530,19339 ,8049,8050,8048 ,0,0,0}, - {17529,19339,17530 ,8047,8048,8050 ,0,0,0}, {19340,16088,16089 ,8049,82,82 ,0,0,0}, - {16089,17530,19340 ,82,8050,8049 ,0,0,0}, {19331,17634,19333 ,8033,8032,8036 ,0,0,0}, - {19335,17532,17633 ,8039,8046,8040 ,0,0,0}, {19337,17532,19335 ,8043,8046,8039 ,0,0,0}, - {19329,17588,19341 ,8028,8027,8051 ,0,0,0}, {19336,17635,17626 ,8042,8041,8034 ,0,0,0}, - {19334,17633,17635 ,8038,8040,8041 ,0,0,0}, {19331,19336,17626 ,8033,8042,8034 ,0,0,0}, - {17593,19333,17634 ,8037,8036,8032 ,0,0,0}, {17385,19329,19332 ,8026,8028,8035 ,0,0,0}, - {19332,17593,17385 ,8035,8037,8026 ,0,0,0}, {17641,19328,19330 ,8030,8024,8031 ,0,0,0}, - {19341,17695,19330 ,8051,8029,8031 ,0,0,0}, {17588,17695,19341 ,8027,8029,8051 ,0,0,0}, - {16074,17643,16075 ,8023,8025,8052 ,0,0,0}, {19328,17641,17643 ,8024,8030,8025 ,0,0,0}, - {19334,16071,19335 ,726,726,726 ,0,0,0}, {19338,16067,16064 ,726,7661,726 ,0,0,0}, - {19331,19333,19328 ,726,7660,726 ,0,0,0}, {19336,16074,16073 ,726,726,726 ,0,0,0}, - {19330,19328,19329 ,7661,726,726 ,0,0,0}, {19329,19341,19330 ,726,7658,7661 ,0,0,0}, - {19329,19333,19332 ,726,7660,726 ,0,0,0}, {19328,16074,19331 ,726,726,726 ,0,0,0}, - {19333,19329,19328 ,7660,726,726 ,0,0,0}, {19336,16073,19334 ,726,726,726 ,0,0,0}, - {19331,16074,19336 ,726,726,726 ,0,0,0}, {19334,16073,16071 ,726,726,726 ,0,0,0}, - {19335,16069,19337 ,726,7658,726 ,0,0,0}, {19335,16071,16069 ,726,726,7658 ,0,0,0}, - {19338,19337,16067 ,726,726,7661 ,0,0,0}, {16069,16067,19337 ,7658,7661,726 ,0,0,0}, - {19338,16064,19339 ,726,726,726 ,0,0,0}, {16063,19340,19339 ,726,726,726 ,0,0,0}, - {19339,16064,16063 ,726,726,726 ,0,0,0}, {19340,16061,16088 ,726,726,726 ,0,0,0}, - {16061,19340,16063 ,726,726,726 ,0,0,0}, {16061,16060,16088 ,726,726,726 ,0,0,0}, - {16080,16076,16077 ,7659,726,726 ,0,0,0}, {16080,16086,16076 ,7659,726,726 ,0,0,0}, - {16083,16080,16082 ,726,7659,726 ,0,0,0}, {16083,16086,16080 ,726,726,7659 ,0,0,0}, - {16088,16060,16086 ,726,726,726 ,0,0,0}, {16076,16086,16060 ,726,726,726 ,0,0,0}, - {19342,19343,18870 ,726,8053,7583 ,0,0,0}, {18872,19344,18871 ,726,726,726 ,0,0,0}, - {19343,19345,18870 ,8053,7922,7583 ,0,0,0}, {19342,18870,19346 ,726,7583,5472 ,0,0,0}, - {18870,19347,19348 ,7583,7664,5488 ,0,0,0}, {19345,19347,18870 ,7922,7664,7583 ,0,0,0}, - {19349,19350,18870 ,7920,726,7583 ,0,0,0}, {19348,19351,18870 ,5488,5471,7583 ,0,0,0}, - {19352,19353,18872 ,7664,7583,726 ,0,0,0}, {18872,19354,19355 ,726,5488,7664 ,0,0,0}, - {19356,18872,19357 ,726,726,726 ,0,0,0}, {19358,19359,18872 ,7664,7664,726 ,0,0,0}, - {19360,19357,18872 ,726,726,726 ,0,0,0}, {18872,19356,19344 ,726,726,726 ,0,0,0}, - {19358,18872,19361 ,7664,726,7664 ,0,0,0}, {18872,19359,19360 ,726,7664,726 ,0,0,0}, - {18872,19353,19361 ,726,7583,7664 ,0,0,0}, {18872,19355,19362 ,726,7664,726 ,0,0,0}, - {18872,19362,19352 ,726,726,7664 ,0,0,0}, {19350,18872,18870 ,726,726,7583 ,0,0,0}, - {19350,19354,18872 ,726,5488,726 ,0,0,0}, {18870,19351,19349 ,7583,5471,7920 ,0,0,0}, - {17899,18871,19344 ,726,726,726 ,0,0,0}, {19346,18870,19363 ,5472,7583,7793 ,0,0,0}, - {19364,18870,18869 ,5471,7583,7664 ,0,0,0}, {18870,19364,19363 ,7583,5471,7793 ,0,0,0}, - {19364,18869,17844 ,5471,7664,7920 ,0,0,0}, {17451,17450,19362 ,8054,8055,8056 ,0,0,0}, - {19355,17460,17451 ,8057,8058,8054 ,0,0,0}, {19355,19354,17460 ,8057,8058,8058 ,0,0,0}, - {19362,19355,17451 ,8056,8057,8054 ,0,0,0}, {17450,17629,19352 ,8055,8059,8060 ,0,0,0}, - {17527,17471,19361 ,8061,8062,8063 ,0,0,0}, {19353,19352,17629 ,8064,8060,8059 ,0,0,0}, - {17629,17527,19353 ,8059,8061,8064 ,0,0,0}, {19361,19353,17527 ,8063,8064,8061 ,0,0,0}, - {17450,19352,19362 ,8055,8060,8056 ,0,0,0}, {19361,17471,19358 ,8063,8062,8065 ,0,0,0}, - {17470,19359,19358 ,8066,8067,8065 ,0,0,0}, {19358,17471,17470 ,8065,8062,8066 ,0,0,0}, - {19359,17470,17630 ,8067,8066,8068 ,0,0,0}, {17478,19360,17630 ,8069,8070,8068 ,0,0,0}, - {17478,17477,19357 ,8069,8071,8072 ,0,0,0}, {17478,19357,19360 ,8069,8072,8070 ,0,0,0}, - {19356,17492,19344 ,8073,8074,8075 ,0,0,0}, {19357,17477,19356 ,8072,8071,8073 ,0,0,0}, - {19356,17477,17492 ,8073,8071,8074 ,0,0,0}, {17492,17495,19344 ,8074,8075,8075 ,0,0,0}, - {19359,17630,19360 ,8067,8068,8070 ,0,0,0}, {17283,19354,19350 ,8076,8058,8077 ,0,0,0}, - {19354,17283,17460 ,8058,8076,8058 ,0,0,0}, {19349,17531,19350 ,8078,8079,8077 ,0,0,0}, - {17283,19350,17531 ,8076,8077,8079 ,0,0,0}, {19349,19351,17475 ,8078,8080,8081 ,0,0,0}, - {17475,17531,19349 ,8081,8079,8078 ,0,0,0}, {17476,19351,19348 ,8082,8080,8083 ,0,0,0}, - {19351,17476,17475 ,8080,8082,8081 ,0,0,0}, {19347,17653,19348 ,8084,8085,8083 ,0,0,0}, - {17476,19348,17653 ,8082,8083,8085 ,0,0,0}, {19347,19345,17421 ,8084,8086,8087 ,0,0,0}, - {17421,17653,19347 ,8087,8085,8084 ,0,0,0}, {17420,19345,19343 ,8088,8086,8089 ,0,0,0}, - {19345,17420,17421 ,8086,8088,8087 ,0,0,0}, {19342,17504,19343 ,8090,8091,8089 ,0,0,0}, - {17420,19343,17504 ,8088,8089,8091 ,0,0,0}, {19342,19346,17544 ,8090,8092,8093 ,0,0,0}, - {17544,17504,19342 ,8093,8091,8090 ,0,0,0}, {17545,19346,19363 ,8094,8092,8095 ,0,0,0}, - {19346,17545,17544 ,8092,8094,8093 ,0,0,0}, {17545,19363,17546 ,8094,8095,8096 ,0,0,0}, - {17546,19363,19364 ,8096,8095,8096 ,0,0,0}, {17851,19364,17844 ,8097,8098,8097 ,0,0,0}, - {19364,17852,17855 ,8098,8097,8098 ,0,0,0}, {17851,17852,19364 ,8097,8097,8098 ,0,0,0}, - {19364,17861,17866 ,8098,8098,8097 ,0,0,0}, {17855,17861,19364 ,8098,8098,8098 ,0,0,0}, - {19364,17870,17829 ,8098,8098,8097 ,0,0,0}, {17866,17870,19364 ,8097,8098,8098 ,0,0,0}, - {19364,17833,17832 ,8098,8097,8097 ,0,0,0}, {17829,17833,19364 ,8097,8097,8098 ,0,0,0}, - {19364,17832,17546 ,8098,8097,8098 ,0,0,0}, {17908,19344,17495 ,8099,8099,8099 ,0,0,0}, - {17908,17964,19344 ,8099,8099,8099 ,0,0,0}, {19344,17964,17950 ,8099,8099,8099 ,0,0,0}, - {17904,17910,19344 ,8099,8099,8099 ,0,0,0}, {17904,19344,17950 ,8099,8099,8099 ,0,0,0}, - {17910,17946,19344 ,8099,8099,8099 ,0,0,0}, {19344,17893,17892 ,8099,8099,8099 ,0,0,0}, - {17946,17893,19344 ,8099,8099,8099 ,0,0,0}, {17899,19344,17897 ,8099,8099,8099 ,0,0,0}, - {17892,17897,19344 ,8099,8099,8099 ,0,0,0}, {16037,19365,17687 ,1359,8100,4482 ,0,0,0}, - {19366,17686,19367 ,4475,8101,8102 ,0,0,0}, {17688,17685,19368 ,8103,8104,4478 ,0,0,0}, - {17519,19369,17511 ,8105,8106,8107 ,0,0,0}, {19370,19371,17691 ,4472,8108,8109 ,0,0,0}, - {19372,17548,19373 ,8110,8111,8112 ,0,0,0}, {17547,17509,19374 ,8113,8114,8115 ,0,0,0}, - {17522,17515,19375 ,8116,8117,8118 ,0,0,0}, {17550,19376,17515 ,8119,8120,8117 ,0,0,0}, - {17540,19377,19378 ,8121,8122,8123 ,0,0,0}, {17522,19379,17542 ,8116,8124,8125 ,0,0,0}, - {19380,17539,19378 ,8126,8127,8123 ,0,0,0}, {17540,19378,17539 ,8121,8123,8127 ,0,0,0}, - {19380,19381,17537 ,8126,8128,8129 ,0,0,0}, {17537,17539,19380 ,8129,8127,8126 ,0,0,0}, - {17534,19381,19382 ,8130,8128,8131 ,0,0,0}, {19381,17534,17537 ,8128,8130,8129 ,0,0,0}, - {19383,17535,19382 ,8132,8133,8131 ,0,0,0}, {17534,19382,17535 ,8130,8131,8133 ,0,0,0}, - {19383,16056,16057 ,8132,1435,1435 ,0,0,0}, {16057,17535,19383 ,1435,8133,8132 ,0,0,0}, - {19375,17515,19376 ,8118,8117,8120 ,0,0,0}, {19377,17542,19379 ,8122,8125,8124 ,0,0,0}, - {17542,19377,17540 ,8125,8122,8121 ,0,0,0}, {19375,19379,17522 ,8118,8124,8116 ,0,0,0}, - {19372,19376,17550 ,8110,8120,8119 ,0,0,0}, {17547,19374,19373 ,8113,8115,8112 ,0,0,0}, - {17547,19373,17548 ,8113,8112,8111 ,0,0,0}, {17550,17548,19372 ,8119,8111,8110 ,0,0,0}, - {17509,19384,19374 ,8114,8134,8115 ,0,0,0}, {19384,17509,17511 ,8134,8114,8107 ,0,0,0}, - {19371,19369,17519 ,8108,8106,8105 ,0,0,0}, {19369,19384,17511 ,8106,8134,8107 ,0,0,0}, - {17691,19371,17519 ,8109,8108,8105 ,0,0,0}, {17667,19366,19370 ,4474,4475,4472 ,0,0,0}, - {17667,19370,17691 ,4474,4472,8109 ,0,0,0}, {17686,17688,19367 ,8101,8103,8102 ,0,0,0}, - {17667,17686,19366 ,4474,8101,4475 ,0,0,0}, {17685,19365,19368 ,8104,8100,4478 ,0,0,0}, - {19367,17688,19368 ,8102,8103,4478 ,0,0,0}, {16037,17687,16035 ,1359,4482,1359 ,0,0,0}, - {19365,17685,17687 ,8100,8104,4482 ,0,0,0}, {16031,19369,19371 ,726,726,726 ,0,0,0}, - {19377,16038,19378 ,726,7626,7758 ,0,0,0}, {19383,19382,19381 ,7625,7625,726 ,0,0,0}, - {19379,19375,16018 ,8135,7628,7626 ,0,0,0}, {16018,16016,19379 ,7626,7626,8135 ,0,0,0}, - {16028,19373,19374 ,726,7627,726 ,0,0,0}, {16021,19372,16022 ,726,7628,726 ,0,0,0}, - {16025,19369,16031 ,726,726,726 ,0,0,0}, {19374,19384,16030 ,726,726,726 ,0,0,0}, - {19366,19367,19368 ,7628,7628,726 ,0,0,0}, {16034,16031,19371 ,726,726,726 ,0,0,0}, - {16037,16034,19365 ,726,726,726 ,0,0,0}, {19365,19366,19368 ,726,7628,726 ,0,0,0}, - {19365,16034,19366 ,726,726,7628 ,0,0,0}, {19371,19370,16034 ,726,726,726 ,0,0,0}, - {16034,19370,19366 ,726,726,7628 ,0,0,0}, {19369,16025,16030 ,726,726,726 ,0,0,0}, - {16034,16033,16031 ,726,726,726 ,0,0,0}, {16030,16028,19374 ,726,726,726 ,0,0,0}, - {16030,19384,19369 ,726,726,726 ,0,0,0}, {19372,19373,16022 ,7628,7627,726 ,0,0,0}, - {16022,19373,16028 ,726,7627,726 ,0,0,0}, {16019,19376,16021 ,726,726,726 ,0,0,0}, - {16021,19376,19372 ,726,726,7628 ,0,0,0}, {16019,16018,19375 ,726,7626,7628 ,0,0,0}, - {19375,19376,16019 ,7628,726,726 ,0,0,0}, {16016,16038,19377 ,7626,7626,726 ,0,0,0}, - {16016,19377,19379 ,7626,726,8135 ,0,0,0}, {16039,19378,16038 ,7626,7758,7626 ,0,0,0}, - {19380,19378,16042 ,8135,7758,7628 ,0,0,0}, {16039,16042,19378 ,7626,7628,7758 ,0,0,0}, - {16042,16044,19381 ,7628,726,726 ,0,0,0}, {19381,19380,16042 ,726,8135,7628 ,0,0,0}, - {19383,16044,16045 ,7625,726,7626 ,0,0,0}, {16044,19383,19381 ,726,7625,726 ,0,0,0}, - {16048,16051,16054 ,7626,726,7626 ,0,0,0}, {16045,16048,19383 ,7626,7626,7625 ,0,0,0}, - {16054,19383,16048 ,7626,7625,7626 ,0,0,0}, {16048,16050,16051 ,7626,7627,726 ,0,0,0}, - {19383,16054,16056 ,7625,7626,8135 ,0,0,0}, {15998,19385,17673 ,1359,8136,8137 ,0,0,0}, - {17656,17658,19386 ,8138,8139,8140 ,0,0,0}, {17675,17677,19387 ,8141,8142,8143 ,0,0,0}, - {17463,19388,17462 ,8144,8145,8146 ,0,0,0}, {19389,19390,17657 ,8147,8148,8149 ,0,0,0}, - {19391,19392,17655 ,8150,8151,8152 ,0,0,0}, {19391,17654,19393 ,8150,8153,8154 ,0,0,0}, - {19394,19395,17587 ,8155,8156,8157 ,0,0,0}, {17587,17586,19394 ,8157,8158,8155 ,0,0,0}, - {17501,19395,19396 ,8159,8156,8160 ,0,0,0}, {19395,17501,17587 ,8156,8159,8157 ,0,0,0}, - {19397,17500,19396 ,8161,8162,8160 ,0,0,0}, {17501,19396,17500 ,8159,8160,8162 ,0,0,0}, - {19397,16012,16013 ,8161,1435,1435 ,0,0,0}, {16013,17500,19397 ,1435,8162,8161 ,0,0,0}, - {19388,17463,19390 ,8145,8144,8148 ,0,0,0}, {19392,17586,17655 ,8151,8158,8152 ,0,0,0}, - {19394,17586,19392 ,8155,8158,8151 ,0,0,0}, {19386,17658,19398 ,8140,8139,8163 ,0,0,0}, - {19393,17654,17462 ,8154,8153,8146 ,0,0,0}, {19391,17655,17654 ,8150,8152,8153 ,0,0,0}, - {19388,19393,17462 ,8145,8154,8146 ,0,0,0}, {17657,19390,17463 ,8149,8148,8144 ,0,0,0}, - {17656,19386,19389 ,8138,8140,8147 ,0,0,0}, {19389,17657,17656 ,8147,8149,8138 ,0,0,0}, - {17677,19385,19387 ,8142,8136,8143 ,0,0,0}, {19398,17675,19387 ,8163,8141,8143 ,0,0,0}, - {17658,17675,19398 ,8139,8141,8163 ,0,0,0}, {15998,17673,15999 ,1359,8137,1359 ,0,0,0}, - {19385,17677,17673 ,8136,8142,8137 ,0,0,0}, {19395,19390,19389 ,726,7661,7661 ,0,0,0}, - {19391,19393,19394 ,7661,7658,726 ,0,0,0}, {19394,19392,19391 ,726,726,7661 ,0,0,0}, - {19388,19390,19394 ,7658,7661,726 ,0,0,0}, {19388,19394,19393 ,7658,726,7658 ,0,0,0}, - {19389,19396,19395 ,7661,726,726 ,0,0,0}, {19390,19395,19394 ,7661,726,726 ,0,0,0}, - {19396,19389,19386 ,726,7661,7658 ,0,0,0}, {19386,19398,19397 ,7658,7661,726 ,0,0,0}, - {19397,19396,19386 ,726,726,7658 ,0,0,0}, {16012,19398,19387 ,726,7661,7658 ,0,0,0}, - {19398,16012,19397 ,7661,726,726 ,0,0,0}, {15997,16006,15998 ,7658,726,726 ,0,0,0}, - {19385,16010,19387 ,7658,7660,7658 ,0,0,0}, {16004,15997,15995 ,726,7658,726 ,0,0,0}, - {15985,15984,15991 ,726,726,726 ,0,0,0}, {16001,15993,16000 ,726,726,726 ,0,0,0}, - {15991,15988,15987 ,726,726,726 ,0,0,0}, {15991,15984,16000 ,726,726,726 ,0,0,0}, - {15985,15991,15987 ,726,726,726 ,0,0,0}, {15995,15993,16001 ,726,726,726 ,0,0,0}, - {15993,15991,16000 ,726,726,726 ,0,0,0}, {16006,15997,16004 ,726,7658,726 ,0,0,0}, - {16004,15995,16001 ,726,726,726 ,0,0,0}, {15998,16007,19385 ,726,726,7658 ,0,0,0}, - {15998,16006,16007 ,726,726,726 ,0,0,0}, {19387,16010,16012 ,7658,7660,726 ,0,0,0}, - {16007,16010,19385 ,726,7660,7658 ,0,0,0}, {19399,19400,18867 ,726,726,7664 ,0,0,0}, - {19401,19399,18867 ,726,726,7664 ,0,0,0}, {19401,18867,19402 ,726,7664,726 ,0,0,0}, - {19403,18867,19400 ,726,7664,726 ,0,0,0}, {19404,19405,18867 ,726,726,7664 ,0,0,0}, - {19404,18867,19403 ,726,7664,726 ,0,0,0}, {19406,18867,18865 ,726,7664,726 ,0,0,0}, - {19402,18867,19406 ,726,7664,726 ,0,0,0}, {19407,18867,19405 ,726,7664,726 ,0,0,0}, - {18867,19407,19408 ,7664,726,726 ,0,0,0}, {19406,18865,19409 ,726,726,726 ,0,0,0}, - {19410,18867,19408 ,726,7664,726 ,0,0,0}, {19411,19409,18865 ,7583,726,726 ,0,0,0}, - {18865,19412,19411 ,726,7664,7583 ,0,0,0}, {18867,19410,19413 ,7664,726,726 ,0,0,0}, - {18867,19413,19414 ,7664,726,726 ,0,0,0}, {19415,19412,18865 ,726,7664,726 ,0,0,0}, - {19416,19417,18865 ,726,726,726 ,0,0,0}, {19417,19415,18865 ,726,726,726 ,0,0,0}, - {19418,18865,19419 ,726,726,726 ,0,0,0}, {19418,19416,18865 ,726,726,726 ,0,0,0}, - {18868,19414,17805 ,7664,726,726 ,0,0,0}, {19414,18868,18867 ,726,7664,7664 ,0,0,0}, - {19419,18865,19420 ,726,726,726 ,0,0,0}, {19421,18865,18866 ,726,726,7664 ,0,0,0}, - {18865,19421,19420 ,726,726,726 ,0,0,0}, {19421,18866,17729 ,726,7664,5488 ,0,0,0}, - {17517,17510,19399 ,8164,8165,8166 ,0,0,0}, {19401,17518,17517 ,8167,8168,8164 ,0,0,0}, - {19401,19402,17518 ,8167,8168,8168 ,0,0,0}, {19399,19401,17517 ,8166,8167,8164 ,0,0,0}, - {17510,17651,19400 ,8165,8169,8170 ,0,0,0}, {17549,17551,19404 ,8171,8172,8173 ,0,0,0}, - {19403,19400,17651 ,8174,8170,8169 ,0,0,0}, {17651,17549,19403 ,8169,8171,8174 ,0,0,0}, - {19404,19403,17549 ,8173,8174,8171 ,0,0,0}, {17510,19400,19399 ,8165,8170,8166 ,0,0,0}, - {19404,17551,19405 ,8173,8172,8175 ,0,0,0}, {17514,19407,19405 ,8176,8177,8175 ,0,0,0}, - {19405,17551,17514 ,8175,8172,8176 ,0,0,0}, {19407,17514,17516 ,8177,8176,8178 ,0,0,0}, - {17521,19408,17516 ,8179,8180,8178 ,0,0,0}, {17521,17553,19410 ,8179,8181,8182 ,0,0,0}, - {17521,19410,19408 ,8179,8182,8180 ,0,0,0}, {19413,17555,19414 ,8183,8184,8185 ,0,0,0}, - {19410,17553,19413 ,8182,8181,8183 ,0,0,0}, {19413,17553,17555 ,8183,8181,8184 ,0,0,0}, - {17555,17554,19414 ,8184,8185,8185 ,0,0,0}, {19407,17516,19408 ,8177,8178,8180 ,0,0,0}, - {17513,19402,19406 ,8186,8168,8187 ,0,0,0}, {19402,17513,17518 ,8168,8186,8168 ,0,0,0}, - {19409,17512,19406 ,8188,8189,8187 ,0,0,0}, {17513,19406,17512 ,8186,8187,8189 ,0,0,0}, - {19409,19411,17679 ,8188,8190,8191 ,0,0,0}, {17679,17512,19409 ,8191,8189,8188 ,0,0,0}, - {17507,19411,19412 ,8192,8190,8193 ,0,0,0}, {19411,17507,17679 ,8190,8192,8191 ,0,0,0}, - {19415,17508,19412 ,8194,8195,8193 ,0,0,0}, {17507,19412,17508 ,8192,8193,8195 ,0,0,0}, - {19415,19417,17581 ,8194,8196,8197 ,0,0,0}, {17581,17508,19415 ,8197,8195,8194 ,0,0,0}, - {17582,19417,19416 ,8198,8196,8199 ,0,0,0}, {19417,17582,17581 ,8196,8198,8197 ,0,0,0}, - {19418,17325,19416 ,8200,8201,8199 ,0,0,0}, {17582,19416,17325 ,8198,8199,8201 ,0,0,0}, - {19418,19419,17328 ,8200,8202,8203 ,0,0,0}, {17328,17325,19418 ,8203,8201,8200 ,0,0,0}, - {17329,19419,19420 ,8204,8202,8205 ,0,0,0}, {19419,17329,17328 ,8202,8204,8203 ,0,0,0}, - {17329,19420,17330 ,8204,8205,8206 ,0,0,0}, {17330,19420,19421 ,8206,8205,8206 ,0,0,0}, - {17730,19421,17729 ,8207,8207,8207 ,0,0,0}, {19421,17760,17763 ,8207,8207,8207 ,0,0,0}, - {17730,17760,19421 ,8207,8207,8207 ,0,0,0}, {19421,17769,17774 ,8207,8207,8207 ,0,0,0}, - {17763,17769,19421 ,8207,8207,8207 ,0,0,0}, {19421,17778,17708 ,8207,8207,8207 ,0,0,0}, - {17774,17778,19421 ,8207,8207,8207 ,0,0,0}, {19421,17711,17710 ,8207,8207,8207 ,0,0,0}, - {17708,17711,19421 ,8207,8207,8207 ,0,0,0}, {19421,17710,17330 ,8207,8207,8207 ,0,0,0}, - {17820,19414,17554 ,8208,8208,8208 ,0,0,0}, {17820,17871,19414 ,8208,8208,8208 ,0,0,0}, - {19414,17871,17857 ,8208,8208,8208 ,0,0,0}, {17814,17807,19414 ,8208,8208,8208 ,0,0,0}, - {17814,19414,17857 ,8208,8208,8208 ,0,0,0}, {17807,17853,19414 ,8208,8208,8208 ,0,0,0}, - {19414,17845,17799 ,8208,8208,8208 ,0,0,0}, {17853,17845,19414 ,8208,8208,8208 ,0,0,0}, - {17805,19414,17801 ,8208,8208,8208 ,0,0,0}, {17799,17801,19414 ,8208,8208,8208 ,0,0,0}, - {15961,19422,17317 ,1711,8209,4414 ,0,0,0}, {19423,17580,19424 ,8210,8211,8212 ,0,0,0}, - {17565,17318,19425 ,8213,8214,4410 ,0,0,0}, {17579,19426,17309 ,4402,8215,8216 ,0,0,0}, - {19427,19428,17578 ,8217,8218,8219 ,0,0,0}, {19429,17339,19430 ,8220,8221,8222 ,0,0,0}, - {17338,17564,19431 ,8223,8224,8225 ,0,0,0}, {17312,17311,19432 ,8226,8227,8228 ,0,0,0}, - {17334,19433,17311 ,8229,8230,8227 ,0,0,0}, {17315,19434,19435 ,8231,8232,8233 ,0,0,0}, - {17312,19436,17314 ,8226,8234,8235 ,0,0,0}, {19437,17331,19435 ,8236,8237,8233 ,0,0,0}, - {17315,19435,17331 ,8231,8233,8237 ,0,0,0}, {19437,19438,17319 ,8236,8238,8239 ,0,0,0}, - {17319,17331,19437 ,8239,8237,8236 ,0,0,0}, {17567,19438,19439 ,8240,8238,8241 ,0,0,0}, - {19438,17567,17319 ,8238,8240,8239 ,0,0,0}, {19440,17327,19439 ,8242,8243,8241 ,0,0,0}, - {17567,19439,17327 ,8240,8241,8243 ,0,0,0}, {19440,15980,15981 ,8242,1790,1790 ,0,0,0}, - {15981,17327,19440 ,1790,8243,8242 ,0,0,0}, {19432,17311,19433 ,8228,8227,8230 ,0,0,0}, - {19434,17314,19436 ,8232,8235,8234 ,0,0,0}, {17314,19434,17315 ,8235,8232,8231 ,0,0,0}, - {19432,19436,17312 ,8228,8234,8226 ,0,0,0}, {19429,19433,17334 ,8220,8230,8229 ,0,0,0}, - {17338,19431,19430 ,8223,8225,8222 ,0,0,0}, {17338,19430,17339 ,8223,8222,8221 ,0,0,0}, - {17334,17339,19429 ,8229,8221,8220 ,0,0,0}, {17564,19441,19431 ,8224,8244,8225 ,0,0,0}, - {19441,17564,17309 ,8244,8224,8216 ,0,0,0}, {19428,19426,17579 ,8218,8215,4402 ,0,0,0}, - {19426,19441,17309 ,8215,8244,8216 ,0,0,0}, {17578,19428,17579 ,8219,8218,4402 ,0,0,0}, - {17279,19423,19427 ,8245,8210,8217 ,0,0,0}, {17279,19427,17578 ,8245,8217,8219 ,0,0,0}, - {17580,17565,19424 ,8211,8213,8212 ,0,0,0}, {17279,17580,19423 ,8245,8211,8210 ,0,0,0}, - {17318,19422,19425 ,8214,8209,4410 ,0,0,0}, {19424,17565,19425 ,8212,8213,4410 ,0,0,0}, - {15961,17317,15959 ,1711,4414,1711 ,0,0,0}, {19422,17318,17317 ,8209,8214,4414 ,0,0,0}, - {19427,19432,19433 ,726,726,7626 ,0,0,0}, {19441,19430,19431 ,726,726,726 ,0,0,0}, - {19429,19441,19426 ,726,726,726 ,0,0,0}, {19428,19429,19426 ,726,726,726 ,0,0,0}, - {19428,19433,19429 ,726,7626,726 ,0,0,0}, {19441,19429,19430 ,726,726,726 ,0,0,0}, - {19428,19427,19433 ,726,726,7626 ,0,0,0}, {19423,19436,19432 ,726,726,726 ,0,0,0}, - {19427,19423,19432 ,726,726,726 ,0,0,0}, {19436,19424,19434 ,726,726,7626 ,0,0,0}, - {19424,19436,19423 ,726,726,726 ,0,0,0}, {19435,19434,19425 ,7628,7626,726 ,0,0,0}, - {19424,19425,19434 ,726,726,7626 ,0,0,0}, {19422,19437,19435 ,726,726,7628 ,0,0,0}, - {19435,19425,19422 ,7628,726,726 ,0,0,0}, {19437,15961,19438 ,726,726,726 ,0,0,0}, - {15961,19437,19422 ,726,726,726 ,0,0,0}, {19439,19438,15958 ,7625,726,726 ,0,0,0}, - {15961,15958,19438 ,726,726,726 ,0,0,0}, {19439,15958,15957 ,7625,726,726 ,0,0,0}, - {19440,19439,15957 ,726,7625,726 ,0,0,0}, {15957,15955,19440 ,726,726,726 ,0,0,0}, - {15949,15980,15955 ,726,726,726 ,0,0,0}, {19440,15955,15980 ,726,726,726 ,0,0,0}, - {15952,15946,15974 ,726,726,7625 ,0,0,0}, {15949,15954,15978 ,726,726,726 ,0,0,0}, - {15943,15968,15969 ,7626,726,726 ,0,0,0}, {15969,15972,15945 ,726,726,726 ,0,0,0}, - {15968,15942,15966 ,726,7625,7625 ,0,0,0}, {15942,15963,15966 ,7625,726,7625 ,0,0,0}, - {15940,15963,15942 ,726,726,7625 ,0,0,0}, {15940,15962,15963 ,726,726,726 ,0,0,0}, - {15945,15943,15969 ,726,7626,726 ,0,0,0}, {15942,15968,15943 ,7625,726,7626 ,0,0,0}, - {15972,15974,15946 ,726,7625,726 ,0,0,0}, {15945,15972,15946 ,726,726,726 ,0,0,0}, - {15952,15975,15954 ,726,726,726 ,0,0,0}, {15952,15974,15975 ,726,7625,726 ,0,0,0}, - {15949,15978,15980 ,726,726,726 ,0,0,0}, {15975,15978,15954 ,726,726,726 ,0,0,0}, - {15922,19442,17591 ,1711,8246,8247 ,0,0,0}, {17650,17664,19443 ,8248,8249,8250 ,0,0,0}, - {17663,17592,19444 ,8251,8252,8253 ,0,0,0}, {17503,19445,17502 ,8254,8255,8256 ,0,0,0}, - {19446,19447,17684 ,8257,8258,8259 ,0,0,0}, {19448,19449,17682 ,8260,8261,8262 ,0,0,0}, - {19448,17681,19450 ,8260,8263,8264 ,0,0,0}, {19451,19452,17584 ,8265,8266,8267 ,0,0,0}, - {17584,17585,19451 ,8267,8268,8265 ,0,0,0}, {17680,19452,19453 ,8269,8266,8270 ,0,0,0}, - {19452,17680,17584 ,8266,8269,8267 ,0,0,0}, {19454,17583,19453 ,8271,8272,8270 ,0,0,0}, - {17680,19453,17583 ,8269,8270,8272 ,0,0,0}, {19454,15936,15937 ,8271,1790,1790 ,0,0,0}, - {15937,17583,19454 ,1790,8272,8271 ,0,0,0}, {19445,17503,19447 ,8255,8254,8258 ,0,0,0}, - {19449,17585,17682 ,8261,8268,8262 ,0,0,0}, {19451,17585,19449 ,8265,8268,8261 ,0,0,0}, - {19443,17664,19455 ,8250,8249,8273 ,0,0,0}, {19450,17681,17502 ,8264,8263,8256 ,0,0,0}, - {19448,17682,17681 ,8260,8262,8263 ,0,0,0}, {19445,19450,17502 ,8255,8264,8256 ,0,0,0}, - {17684,19447,17503 ,8259,8258,8254 ,0,0,0}, {17650,19443,19446 ,8248,8250,8257 ,0,0,0}, - {19446,17684,17650 ,8257,8259,8248 ,0,0,0}, {17592,19442,19444 ,8252,8246,8253 ,0,0,0}, - {19455,17663,19444 ,8273,8251,8253 ,0,0,0}, {17664,17663,19455 ,8249,8251,8273 ,0,0,0}, - {15922,17591,15923 ,1711,8247,1711 ,0,0,0}, {19442,17592,17591 ,8246,8252,8247 ,0,0,0}, - {15936,19454,19453 ,726,7658,726 ,0,0,0}, {19455,15911,19443 ,726,726,726 ,0,0,0}, - {15934,19453,19452 ,7660,726,7660 ,0,0,0}, {19448,15930,19449 ,7660,726,7660 ,0,0,0}, - {15931,15934,19451 ,7660,7660,7583 ,0,0,0}, {15924,19445,19447 ,7660,7661,7661 ,0,0,0}, - {15928,19448,19450 ,726,7660,7658 ,0,0,0}, {15909,19443,15911 ,726,726,726 ,0,0,0}, - {19447,19446,15908 ,7661,726,726 ,0,0,0}, {19442,15917,15915 ,726,726,726 ,0,0,0}, - {19444,15912,19455 ,726,726,726 ,0,0,0}, {15922,15921,15917 ,726,726,726 ,0,0,0}, - {15919,15917,15921 ,726,726,726 ,0,0,0}, {15917,19442,15922 ,726,726,726 ,0,0,0}, - {19444,15915,15912 ,726,726,726 ,0,0,0}, {19444,19442,15915 ,726,726,726 ,0,0,0}, - {19446,19443,15909 ,726,726,726 ,0,0,0}, {15911,19455,15912 ,726,726,726 ,0,0,0}, - {15908,15924,19447 ,726,7660,7661 ,0,0,0}, {15909,15908,19446 ,726,726,726 ,0,0,0}, - {19450,19445,15925 ,7658,7661,7659 ,0,0,0}, {15925,19445,15924 ,7659,7661,7660 ,0,0,0}, - {15928,19450,15925 ,726,7658,7659 ,0,0,0}, {15931,19449,15930 ,7660,7660,726 ,0,0,0}, - {19448,15928,15930 ,7660,726,726 ,0,0,0}, {15934,19452,19451 ,7660,7660,7583 ,0,0,0}, - {15931,19451,19449 ,7660,7583,7660 ,0,0,0}, {15934,15936,19453 ,7660,726,726 ,0,0,0}, - {17689,15881,19456 ,8274,8275,8276 ,0,0,0}, {17690,17666,19457 ,8277,8278,8279 ,0,0,0}, - {19458,17666,17683 ,8280,8278,8281 ,0,0,0}, {19459,19460,17590 ,8282,8283,8284 ,0,0,0}, - {19461,17662,17661 ,8285,8286,8287 ,0,0,0}, {17671,17659,19462 ,8288,8289,8290 ,0,0,0}, - {17670,19463,19464 ,8291,8292,8293 ,0,0,0}, {17693,19465,17676 ,8294,8295,8296 ,0,0,0}, - {19466,19467,17672 ,1631,8297,1631 ,0,0,0}, {19468,19469,17674 ,8298,8299,8300 ,0,0,0}, - {19468,17694,19470 ,8298,8301,8302 ,0,0,0}, {19471,19472,17669 ,8303,8304,8305 ,0,0,0}, - {19471,17668,19469 ,8303,8306,8299 ,0,0,0}, {17607,19472,19473 ,8307,8304,8308 ,0,0,0}, - {19472,17607,17669 ,8304,8307,8305 ,0,0,0}, {19474,17648,19473 ,8309,8310,8308 ,0,0,0}, - {17607,19473,17648 ,8307,8308,8310 ,0,0,0}, {17589,19474,17642 ,8311,8309,8312 ,0,0,0}, - {17589,17648,19474 ,8311,8310,8309 ,0,0,0}, {17640,17642,19475 ,8313,8312,8314 ,0,0,0}, - {19474,19475,17642 ,8309,8314,8312 ,0,0,0}, {19476,15905,17640 ,8315,126,8313 ,0,0,0}, - {17640,19475,19476 ,8313,8314,8315 ,0,0,0}, {15903,15905,19476 ,126,126,8315 ,0,0,0}, - {17668,17674,19469 ,8306,8300,8299 ,0,0,0}, {19471,17669,17668 ,8303,8305,8306 ,0,0,0}, - {17694,17676,19470 ,8301,8296,8302 ,0,0,0}, {19468,17674,17694 ,8298,8300,8301 ,0,0,0}, - {19467,19465,17693 ,8297,8295,8294 ,0,0,0}, {19465,19470,17676 ,8295,8302,8296 ,0,0,0}, - {17671,19466,17672 ,8288,1631,1631 ,0,0,0}, {17672,19467,17693 ,1631,8297,8294 ,0,0,0}, - {17659,19464,19462 ,8289,8293,8290 ,0,0,0}, {17671,19462,19466 ,8288,8290,1631 ,0,0,0}, - {17670,17692,19463 ,8291,8316,8292 ,0,0,0}, {17659,17670,19464 ,8289,8291,8293 ,0,0,0}, - {17590,19460,17692 ,8284,8283,8316 ,0,0,0}, {19463,17692,19460 ,8292,8316,8283 ,0,0,0}, - {19461,19459,17662 ,8285,8282,8286 ,0,0,0}, {19459,17590,17662 ,8282,8284,8286 ,0,0,0}, - {17690,19477,17661 ,8277,8317,8287 ,0,0,0}, {19477,19461,17661 ,8317,8285,8287 ,0,0,0}, - {17666,19478,19457 ,8278,8318,8279 ,0,0,0}, {17690,19457,19477 ,8277,8279,8317 ,0,0,0}, - {19458,17683,19456 ,8280,8281,8276 ,0,0,0}, {19478,17666,19458 ,8318,8278,8280 ,0,0,0}, - {15881,17689,15880 ,8275,8274,4114 ,0,0,0}, {19456,17683,17689 ,8276,8281,8274 ,0,0,0}, - {19468,19479,19469 ,726,726,726 ,0,0,0}, {19480,15854,19476 ,726,726,726 ,0,0,0}, - {19481,19472,19482 ,726,726,726 ,0,0,0}, {15885,15839,15838 ,726,726,7661 ,0,0,0}, - {15894,15896,15848 ,726,726,726 ,0,0,0}, {19483,19475,19474 ,726,726,726 ,0,0,0}, - {15899,15902,15853 ,726,726,726 ,0,0,0}, {15903,15854,15902 ,726,726,726 ,0,0,0}, - {15851,15849,15900 ,7658,726,726 ,0,0,0}, {15899,15853,15851 ,726,726,7658 ,0,0,0}, - {19483,19480,19475 ,726,726,726 ,0,0,0}, {15896,15897,15849 ,726,726,726 ,0,0,0}, - {15894,15848,15845 ,726,726,726 ,0,0,0}, {15890,15843,15888 ,726,726,726 ,0,0,0}, - {15891,15845,15843 ,726,726,726 ,0,0,0}, {15839,15885,15888 ,726,726,726 ,0,0,0}, - {19481,19474,19473 ,726,726,726 ,0,0,0}, {19469,19484,19471 ,726,7661,726 ,0,0,0}, - {19471,19484,19482 ,726,7661,726 ,0,0,0}, {15818,15858,15857 ,7658,726,7658 ,0,0,0}, - {15884,15838,15818 ,726,7661,7658 ,0,0,0}, {19485,19479,19470 ,726,726,726 ,0,0,0}, - {15858,15822,15859 ,726,7658,726 ,0,0,0}, {15861,15823,15824 ,7661,7658,726 ,0,0,0}, - {19465,19467,19486 ,726,7661,726 ,0,0,0}, {19465,19486,19485 ,726,726,726 ,0,0,0}, - {19467,19466,19487 ,7661,7658,7658 ,0,0,0}, {15865,15864,15824 ,726,726,726 ,0,0,0}, - {15828,15867,15825 ,726,7583,726 ,0,0,0}, {19488,19489,19464 ,726,726,726 ,0,0,0}, - {19489,19487,19462 ,726,7658,726 ,0,0,0}, {15877,15831,15834 ,7664,726,7664 ,0,0,0}, - {19488,19464,19463 ,726,726,7661 ,0,0,0}, {19490,19463,19460 ,726,7661,7664 ,0,0,0}, - {15837,15881,15879 ,726,726,7664 ,0,0,0}, {19491,19456,15837 ,7664,726,726 ,0,0,0}, - {19490,19459,19492 ,726,7583,726 ,0,0,0}, {19458,19493,19478 ,7664,7664,726 ,0,0,0}, - {15859,15822,15823 ,726,7658,7658 ,0,0,0}, {19457,19478,19494 ,7664,726,7664 ,0,0,0}, - {19493,19494,19478 ,7664,7664,726 ,0,0,0}, {19458,19456,19491 ,7664,726,7664 ,0,0,0}, - {19458,19491,19493 ,7664,7664,7664 ,0,0,0}, {19495,19492,19461 ,7664,726,7583 ,0,0,0}, - {19495,19461,19477 ,7664,7583,7664 ,0,0,0}, {15881,15837,19456 ,726,726,726 ,0,0,0}, - {15830,15831,15873 ,726,726,726 ,0,0,0}, {15828,15830,15870 ,726,726,7664 ,0,0,0}, - {19495,19477,19494 ,7664,7664,7664 ,0,0,0}, {19477,19457,19494 ,7664,7664,7664 ,0,0,0}, - {19459,19461,19492 ,7583,7583,726 ,0,0,0}, {19460,19459,19490 ,7664,7583,726 ,0,0,0}, - {19488,19463,19490 ,726,7661,726 ,0,0,0}, {19462,19464,19489 ,726,726,726 ,0,0,0}, - {19466,19462,19487 ,7658,726,7658 ,0,0,0}, {19486,19467,19487 ,726,7661,7658 ,0,0,0}, - {19470,19465,19485 ,726,726,726 ,0,0,0}, {19468,19470,19479 ,726,726,726 ,0,0,0}, - {19484,19469,19479 ,7661,726,726 ,0,0,0}, {19472,19471,19482 ,726,726,726 ,0,0,0}, - {19473,19472,19481 ,726,726,726 ,0,0,0}, {19483,19474,19481 ,726,726,726 ,0,0,0}, - {19476,19475,19480 ,726,726,726 ,0,0,0}, {15903,19476,15854 ,726,726,726 ,0,0,0}, - {15853,15902,15854 ,726,726,726 ,0,0,0}, {15900,15899,15851 ,726,726,7658 ,0,0,0}, - {15897,15900,15849 ,726,726,726 ,0,0,0}, {15848,15896,15849 ,726,726,726 ,0,0,0}, - {15891,15894,15845 ,726,726,726 ,0,0,0}, {15890,15891,15843 ,726,726,726 ,0,0,0}, - {15839,15888,15843 ,726,726,726 ,0,0,0}, {15884,15885,15838 ,726,726,7661 ,0,0,0}, - {15857,15884,15818 ,7658,726,7658 ,0,0,0}, {15822,15858,15818 ,7658,726,7658 ,0,0,0}, - {15864,15861,15824 ,726,7661,726 ,0,0,0}, {15861,15859,15823 ,7661,726,7658 ,0,0,0}, - {15825,15865,15824 ,726,726,726 ,0,0,0}, {15828,15870,15867 ,726,7664,7583 ,0,0,0}, - {15825,15867,15865 ,726,7583,726 ,0,0,0}, {15830,15871,15870 ,726,7664,7664 ,0,0,0}, - {15873,15831,15877 ,726,726,7664 ,0,0,0}, {15871,15830,15873 ,7664,726,726 ,0,0,0}, - {15877,15834,15879 ,7664,7664,7664 ,0,0,0}, {15837,15879,15834 ,726,7664,7664 ,0,0,0}, - {19496,19497,15821 ,726,726,726 ,0,0,0}, {15840,15842,15850 ,726,726,726 ,0,0,0}, - {15819,15840,15855 ,726,726,726 ,0,0,0}, {15821,15820,19496 ,726,726,726 ,0,0,0}, - {15846,15847,15850 ,726,726,726 ,0,0,0}, {15841,15844,15842 ,726,726,726 ,0,0,0}, - {15846,15850,15844 ,726,726,726 ,0,0,0}, {15842,15844,15850 ,726,726,726 ,0,0,0}, - {15850,15852,15840 ,726,726,726 ,0,0,0}, {19496,15819,15855 ,726,726,726 ,0,0,0}, - {15855,15840,15852 ,726,726,726 ,0,0,0}, {15821,19497,19498 ,726,726,726 ,0,0,0}, - {19496,15820,15819 ,726,726,726 ,0,0,0}, {15826,19498,19499 ,726,726,726 ,0,0,0}, - {19498,15826,15821 ,726,726,726 ,0,0,0}, {19499,15829,15827 ,726,726,7658 ,0,0,0}, - {15826,19499,15827 ,726,726,7658 ,0,0,0}, {19500,15829,19499 ,726,726,726 ,0,0,0}, - {15829,19501,15832 ,726,726,7661 ,0,0,0}, {19501,15829,19500 ,726,726,726 ,0,0,0}, - {19501,19502,15832 ,726,726,7661 ,0,0,0}, {15833,19502,15835 ,726,726,7661 ,0,0,0}, - {15833,15832,19502 ,726,7661,726 ,0,0,0}, {15835,19503,19504 ,7661,726,726 ,0,0,0}, - {19502,19503,15835 ,726,726,7661 ,0,0,0}, {19505,15836,19504 ,726,7658,726 ,0,0,0}, - {15835,19504,15836 ,7661,726,7658 ,0,0,0}, {19506,19507,19508 ,726,726,7660 ,0,0,0}, - {19508,19509,19506 ,7660,726,726 ,0,0,0}, {19507,19510,19511 ,726,726,7658 ,0,0,0}, - {19507,19505,19508 ,726,726,7660 ,0,0,0}, {19507,19512,19505 ,726,7661,726 ,0,0,0}, - {19507,19506,19510 ,726,726,726 ,0,0,0}, {19505,19512,15836 ,726,7661,7658 ,0,0,0}, - {19512,15837,15836 ,8319,81,8320 ,0,0,0}, {19510,19495,19511 ,8321,8322,8323 ,0,0,0}, - {19507,19494,19493 ,8324,8325,8326 ,0,0,0}, {19508,19505,19488 ,8327,8328,8329 ,0,0,0}, - {19506,19509,19490 ,8330,8331,8332 ,0,0,0}, {19502,19486,19503 ,8333,8334,8335 ,0,0,0}, - {19487,19504,19503 ,8336,8337,8335 ,0,0,0}, {19500,19484,19501 ,7530,8338,8339 ,0,0,0}, - {19479,19502,19501 ,8340,8333,8339 ,0,0,0}, {19499,19481,19482 ,8341,8342,8343 ,0,0,0}, - {19482,19500,19499 ,8343,7530,8341 ,0,0,0}, {19481,19498,19483 ,8342,8344,8345 ,0,0,0}, - {19498,19481,19499 ,8344,8342,8341 ,0,0,0}, {19480,19483,19497 ,8346,8345,8347 ,0,0,0}, - {19498,19497,19483 ,8344,8347,8345 ,0,0,0}, {15855,19480,19496 ,96,8346,8348 ,0,0,0}, - {19480,19497,19496 ,8346,8347,8348 ,0,0,0}, {15854,19480,15855 ,96,8346,96 ,0,0,0}, - {19479,19501,19484 ,8340,8339,8338 ,0,0,0}, {19482,19484,19500 ,8343,8338,7530 ,0,0,0}, - {19485,19486,19502 ,8349,8334,8333 ,0,0,0}, {19479,19485,19502 ,8340,8349,8333 ,0,0,0}, - {19489,19504,19487 ,8350,8337,8336 ,0,0,0}, {19486,19487,19503 ,8334,8336,8335 ,0,0,0}, - {19488,19505,19489 ,8329,8328,8350 ,0,0,0}, {19504,19489,19505 ,8337,8350,8328 ,0,0,0}, - {19490,19509,19488 ,8332,8331,8329 ,0,0,0}, {19509,19508,19488 ,8331,8327,8329 ,0,0,0}, - {19492,19510,19506 ,7516,8321,8330 ,0,0,0}, {19492,19506,19490 ,7516,8330,8332 ,0,0,0}, - {19495,19494,19511 ,8322,8325,8323 ,0,0,0}, {19492,19495,19510 ,7516,8322,8321 ,0,0,0}, - {19507,19493,19512 ,8324,8326,8319 ,0,0,0}, {19511,19494,19507 ,8323,8325,8324 ,0,0,0}, - {15837,19512,19491 ,81,8319,8351 ,0,0,0}, {19512,19493,19491 ,8319,8326,8351 ,0,0,0} -// X-Ufo 8ZollPropeller.prt - , {19513,19514,19515 ,8352,8353,8354 ,0,0,0}, {19513,19516,19517 ,8352,8355,8356 ,0,0,0}, - {19517,19514,19513 ,8356,8353,8352 ,0,0,0}, {19518,19516,19519 ,8357,8355,8358 ,0,0,0}, - {19516,19518,19517 ,8355,8357,8356 ,0,0,0}, {19520,19521,19522 ,8359,8360,8361 ,0,0,0}, - {19518,19519,19521 ,8357,8358,8360 ,0,0,0}, {19523,19524,19520 ,8362,3877,8359 ,0,0,0}, - {19523,19525,19524 ,8362,4346,3877 ,0,0,0}, {19523,19520,19522 ,8362,8359,8361 ,0,0,0}, - {19521,19519,19522 ,8360,8358,8361 ,0,0,0}, {19526,19515,19514 ,8363,8354,8353 ,0,0,0}, - {19527,19526,19528 ,8364,8363,8365 ,0,0,0}, {19526,19527,19515 ,8363,8364,8354 ,0,0,0}, - {19529,19530,19528 ,8366,8367,8365 ,0,0,0}, {19527,19528,19530 ,8364,8365,8367 ,0,0,0}, - {19529,19531,19532 ,8366,8368,8369 ,0,0,0}, {19532,19530,19529 ,8369,8367,8366 ,0,0,0}, - {19533,19531,19534 ,8370,8368,8371 ,0,0,0}, {19531,19533,19532 ,8368,8370,8369 ,0,0,0}, - {19533,19534,19535 ,8370,8371,8372 ,0,0,0}, {19536,19537,19538 ,8357,8373,8374 ,0,0,0}, - {19536,19539,19537 ,8357,8356,8373 ,0,0,0}, {19536,19538,19540 ,8357,8374,8360 ,0,0,0}, - {19540,19541,19542 ,8360,8375,8359 ,0,0,0}, {19541,19540,19538 ,8375,8360,8374 ,0,0,0}, - {19543,19542,19541 ,8376,8359,8375 ,0,0,0}, {19544,19537,19539 ,8377,8373,8356 ,0,0,0}, - {19543,19545,19546 ,8376,81,5000 ,0,0,0}, {19546,19542,19543 ,5000,8359,8376 ,0,0,0}, - {19544,19539,19547 ,8377,8356,8378 ,0,0,0}, {19547,19548,19544 ,8378,8379,8377 ,0,0,0}, - {19549,19548,19550 ,8380,8379,8363 ,0,0,0}, {19547,19550,19548 ,8378,8363,8379 ,0,0,0}, - {19551,19552,19549 ,8365,8381,8380 ,0,0,0}, {19549,19550,19551 ,8380,8363,8365 ,0,0,0}, - {19553,19554,19552 ,8366,8368,8381 ,0,0,0}, {19553,19552,19551 ,8366,8381,8365 ,0,0,0}, - {19555,19554,19556 ,8382,8368,8383 ,0,0,0}, {19554,19555,19552 ,8368,8382,8381 ,0,0,0}, - {19555,19556,19557 ,8382,8383,8384 ,0,0,0}, {19558,19559,8402 ,8385,8386,8387 ,0,0,0}, - {19560,19561,19562 ,8388,8389,8390 ,0,0,0}, {19563,19558,8402 ,8391,8385,8387 ,0,0,0}, - {19560,19562,19564 ,8388,8390,8392 ,0,0,0}, {19561,19560,19563 ,8389,8388,8391 ,0,0,0}, - {19561,19563,8402 ,8389,8391,8387 ,0,0,0}, {19565,19566,19567 ,8393,878,8394 ,0,0,0}, - {19567,19564,19568 ,8394,8392,8395 ,0,0,0}, {19565,19567,19568 ,8393,8394,8395 ,0,0,0}, - {19566,19565,19569 ,878,8393,8396 ,0,0,0}, {19568,19564,19562 ,8395,8392,8390 ,0,0,0}, - {19558,19570,19559 ,8385,8363,8386 ,0,0,0}, {19571,19570,19572 ,8397,8363,8398 ,0,0,0}, - {19570,19571,19559 ,8363,8397,8386 ,0,0,0}, {19573,19574,19572 ,8399,8400,8398 ,0,0,0}, - {19571,19572,19574 ,8397,8398,8400 ,0,0,0}, {19573,19575,19576 ,8399,8401,8402 ,0,0,0}, - {19576,19574,19573 ,8402,8400,8399 ,0,0,0}, {19577,19575,19578 ,8403,8401,126 ,0,0,0}, - {19575,19577,19576 ,8401,8403,8402 ,0,0,0}, {19579,19580,19581 ,8404,8405,8406 ,0,0,0}, - {19581,19580,19582 ,8406,8405,8407 ,0,0,0}, {19583,19580,19579 ,8408,8405,8404 ,0,0,0}, - {19584,19581,19582 ,8409,8406,8407 ,0,0,0}, {19583,19579,19585 ,8408,8404,8410 ,0,0,0}, - {19585,19586,19587 ,8410,8411,8412 ,0,0,0}, {19586,19585,19579 ,8411,8410,8404 ,0,0,0}, - {19584,19582,19588 ,8409,8407,8413 ,0,0,0}, {19589,19590,19587 ,8414,8415,8412 ,0,0,0}, - {19587,19586,19589 ,8412,8411,8414 ,0,0,0}, {19590,19591,19592 ,8415,5000,4114 ,0,0,0}, - {19593,19590,19589 ,8416,8415,8414 ,0,0,0}, {19593,19591,19590 ,8416,5000,8415 ,0,0,0}, - {19582,19594,19588 ,8407,8417,8413 ,0,0,0}, {19594,19595,19596 ,8417,8418,8419 ,0,0,0}, - {19596,19588,19594 ,8419,8413,8417 ,0,0,0}, {19597,19595,19598 ,8420,8418,8421 ,0,0,0}, - {19595,19597,19596 ,8418,8420,8419 ,0,0,0}, {19599,19600,19598 ,8422,8423,8421 ,0,0,0}, - {19597,19598,19600 ,8420,8421,8423 ,0,0,0}, {19599,19601,19602 ,8422,8424,8425 ,0,0,0}, - {19602,19600,19599 ,8425,8423,8422 ,0,0,0}, {19603,19601,19604 ,8426,8424,8427 ,0,0,0}, - {19601,19603,19602 ,8424,8426,8425 ,0,0,0}, {19603,19604,19605 ,8426,8427,8428 ,0,0,0}, - {19605,19604,4818 ,8428,8427,8429 ,0,0,0}, {19606,19607,19608 ,8430,8431,8432 ,0,0,0}, - {19609,19610,19611 ,8433,8434,8435 ,0,0,0}, {19612,19613,19614 ,8436,8437,8438 ,0,0,0}, - {19615,19616,19617 ,8439,8440,8441 ,0,0,0}, {19618,19619,19620 ,8442,8443,8444 ,0,0,0}, - {19620,19535,19618 ,8444,8445,8442 ,0,0,0}, {19621,19622,19623 ,8446,8447,8448 ,0,0,0}, - {19600,19624,19597 ,8449,8450,8451 ,0,0,0}, {19625,19623,19626 ,8452,8448,8453 ,0,0,0}, - {19627,19628,19629 ,8454,8455,8456 ,0,0,0}, {19630,19631,19632 ,8457,8458,8459 ,0,0,0}, - {19633,19634,19635 ,8460,8461,8462 ,0,0,0}, {19636,19624,19629 ,8463,8450,8456 ,0,0,0}, - {19637,19549,19552 ,8464,8465,8466 ,0,0,0}, {19638,19639,19635 ,8467,8468,8462 ,0,0,0}, - {19640,19641,19642 ,8469,8470,8471 ,0,0,0}, {19643,19644,19640 ,8472,8473,8469 ,0,0,0}, - {19645,19646,19643 ,8474,8475,8472 ,0,0,0}, {19647,19643,19646 ,8476,8472,8475 ,0,0,0}, - {19648,19646,19645 ,8477,8475,8474 ,0,0,0}, {19649,19650,19651 ,8478,8479,8480 ,0,0,0}, - {19652,19637,19641 ,8481,8464,8470 ,0,0,0}, {19653,19654,19649 ,8482,8483,8478 ,0,0,0}, - {19603,19605,19629 ,8484,8485,8456 ,0,0,0}, {19631,19655,19632 ,8458,8486,8459 ,0,0,0}, - {19622,19656,19623 ,8447,8487,8448 ,0,0,0}, {19657,19658,19659 ,8488,8489,8490 ,0,0,0}, - {19581,19660,19579 ,8491,8492,8493 ,0,0,0}, {19617,19656,19661 ,8441,8487,8494 ,0,0,0}, - {19662,19532,19663 ,8495,8496,8497 ,0,0,0}, {19664,19665,19615 ,8498,8499,8439 ,0,0,0}, - {19610,19666,19667 ,8434,8500,8501 ,0,0,0}, {19668,19669,19670 ,8502,8503,8504 ,0,0,0}, - {19609,19611,19671 ,8433,8435,8505 ,0,0,0}, {19607,19606,19672 ,8431,8430,8506 ,0,0,0}, - {19673,19611,19668 ,8507,8435,8502 ,0,0,0}, {19674,19675,19676 ,8508,8509,8510 ,0,0,0}, - {19675,19672,19606 ,8509,8506,8430 ,0,0,0}, {19515,19677,19513 ,8511,8512,8513 ,0,0,0}, - {19678,19608,19679 ,8514,8432,8515 ,0,0,0}, {19609,19680,19681 ,8433,8516,8517 ,0,0,0}, - {19665,19591,19682 ,8499,8518,8519 ,0,0,0}, {19668,19611,19610 ,8502,8435,8434 ,0,0,0}, - {19668,19667,19683 ,8502,8501,8520 ,0,0,0}, {19610,19667,19668 ,8434,8501,8502 ,0,0,0}, - {19684,19685,19613 ,8521,8522,8437 ,0,0,0}, {19673,19612,19686 ,8507,8436,8523 ,0,0,0}, - {19608,19523,19522 ,8432,8524,8525 ,0,0,0}, {19687,19685,19684 ,8526,8522,8521 ,0,0,0}, - {19607,19687,19684 ,8431,8526,8521 ,0,0,0}, {19675,19606,19676 ,8509,8430,8510 ,0,0,0}, - {19672,19687,19607 ,8506,8526,8431 ,0,0,0}, {19679,19608,19522 ,8515,8432,8525 ,0,0,0}, - {19608,19678,19688 ,8432,8514,8527 ,0,0,0}, {19677,19679,19513 ,8512,8515,8513 ,0,0,0}, - {19679,19677,19678 ,8515,8512,8514 ,0,0,0}, {19527,19662,19515 ,8528,8495,8511 ,0,0,0}, - {19532,19662,19530 ,8496,8495,8529 ,0,0,0}, {19662,19677,19515 ,8495,8512,8511 ,0,0,0}, - {19663,19689,19662 ,8497,8530,8495 ,0,0,0}, {19533,19663,19532 ,8531,8497,8496 ,0,0,0}, - {19663,19535,19620 ,8497,8445,8444 ,0,0,0}, {19584,19690,19660 ,8532,8533,8492 ,0,0,0}, - {19691,19626,19623 ,8534,8453,8448 ,0,0,0}, {19631,19692,19693 ,8458,8535,8536 ,0,0,0}, - {19543,19692,19545 ,8537,8535,8538 ,0,0,0}, {19691,19694,19695 ,8534,8539,8540 ,0,0,0}, - {19625,19621,19623 ,8452,8446,8448 ,0,0,0}, {19581,19584,19660 ,8491,8532,8492 ,0,0,0}, - {19622,19696,19656 ,8447,8541,8487 ,0,0,0}, {19623,19656,19697 ,8448,8487,8542 ,0,0,0}, - {19656,19617,19616 ,8487,8441,8440 ,0,0,0}, {19665,19616,19615 ,8499,8440,8439 ,0,0,0}, - {19656,19616,19698 ,8487,8440,8543 ,0,0,0}, {19699,19682,19657 ,8544,8519,8488 ,0,0,0}, - {19665,19700,19616 ,8499,8545,8440 ,0,0,0}, {19610,19681,19620 ,8434,8517,8444 ,0,0,0}, - {19680,19700,19699 ,8516,8545,8544 ,0,0,0}, {19659,19663,19620 ,8490,8497,8444 ,0,0,0}, - {19620,19619,19610 ,8444,8443,8434 ,0,0,0}, {19659,19701,19663 ,8490,8546,8497 ,0,0,0}, - {19702,19659,19658 ,8547,8490,8489 ,0,0,0}, {19660,19703,19658 ,8492,8548,8489 ,0,0,0}, - {19660,19690,19704 ,8492,8533,8549 ,0,0,0}, {19584,19588,19690 ,8532,8550,8533 ,0,0,0}, - {19588,19596,19690 ,8550,8551,8533 ,0,0,0}, {19690,19624,19705 ,8533,8450,8552 ,0,0,0}, - {19600,19629,19624 ,8449,8456,8450 ,0,0,0}, {19602,19629,19600 ,8553,8456,8449 ,0,0,0}, - {19629,19602,19603 ,8456,8553,8484 ,0,0,0}, {19690,19597,19624 ,8533,8451,8450 ,0,0,0}, - {19605,19627,19629 ,8485,8454,8456 ,0,0,0}, {19706,19692,19707 ,8554,8535,8555 ,0,0,0}, - {19654,19653,19708 ,8483,8482,8556 ,0,0,0}, {19709,19640,19649 ,8557,8469,8478 ,0,0,0}, - {19649,19640,19710 ,8478,8469,8558 ,0,0,0}, {19710,19650,19649 ,8558,8479,8478 ,0,0,0}, - {19649,19654,19709 ,8478,8483,8557 ,0,0,0}, {19711,19636,19628 ,8559,8463,8455 ,0,0,0}, - {19655,19654,19708 ,8486,8483,8556 ,0,0,0}, {19655,19708,19712 ,8486,8556,8560 ,0,0,0}, - {19632,19655,19713 ,8459,8486,8561 ,0,0,0}, {19630,19545,19631 ,8457,8538,8458 ,0,0,0}, - {19714,19691,19693 ,8562,8534,8536 ,0,0,0}, {19692,19631,19545 ,8535,8458,8538 ,0,0,0}, - {19627,19605,19715 ,8454,8485,8563 ,0,0,0}, {19626,19627,19716 ,8453,8454,8564 ,0,0,0}, - {19706,19628,19714 ,8554,8455,8562 ,0,0,0}, {19706,19717,19711 ,8554,8565,8559 ,0,0,0}, - {19718,19548,19549 ,8566,8567,8465 ,0,0,0}, {19718,19544,19548 ,8566,8568,8567 ,0,0,0}, - {19719,19718,19639 ,8569,8566,8468 ,0,0,0}, {19717,19707,19719 ,8565,8555,8569 ,0,0,0}, - {19549,19637,19718 ,8465,8464,8566 ,0,0,0}, {19557,19642,19641 ,8570,8471,8470 ,0,0,0}, - {19684,19720,19607 ,8521,8571,8431 ,0,0,0}, {19614,19613,19685 ,8438,8437,8522 ,0,0,0}, - {19673,19721,19613 ,8507,8572,8437 ,0,0,0}, {19525,19523,19720 ,8573,8524,8571 ,0,0,0}, - {19721,19720,19684 ,8572,8571,8521 ,0,0,0}, {19720,19523,19608 ,8571,8524,8432 ,0,0,0}, - {19607,19720,19608 ,8431,8571,8432 ,0,0,0}, {19688,19676,19606 ,8527,8510,8430 ,0,0,0}, - {19612,19673,19613 ,8436,8507,8437 ,0,0,0}, {19686,19671,19611 ,8523,8505,8435 ,0,0,0}, - {19720,19722,19723 ,8571,8574,8575 ,0,0,0}, {19613,19721,19684 ,8437,8572,8521 ,0,0,0}, - {19670,19721,19668 ,8504,8572,8502 ,0,0,0}, {19525,19720,19723 ,8573,8571,8575 ,0,0,0}, - {19522,19519,19679 ,8525,8576,8515 ,0,0,0}, {19688,19606,19608 ,8527,8430,8432 ,0,0,0}, - {19686,19611,19673 ,8523,8435,8507 ,0,0,0}, {19671,19724,19609 ,8505,8577,8433 ,0,0,0}, - {19669,19668,19683 ,8503,8502,8520 ,0,0,0}, {19673,19668,19721 ,8507,8502,8572 ,0,0,0}, - {19722,19721,19670 ,8574,8572,8504 ,0,0,0}, {19721,19722,19720 ,8572,8574,8571 ,0,0,0}, - {19519,19516,19679 ,8576,8578,8515 ,0,0,0}, {19679,19516,19513 ,8515,8578,8513 ,0,0,0}, - {19725,19680,19724 ,8579,8516,8577 ,0,0,0}, {19725,19726,19700 ,8579,8580,8545 ,0,0,0}, - {19666,19610,19727 ,8500,8434,8581 ,0,0,0}, {19619,19727,19610 ,8443,8581,8434 ,0,0,0}, - {19677,19662,19689 ,8512,8495,8530 ,0,0,0}, {19527,19530,19662 ,8528,8529,8495 ,0,0,0}, - {19680,19609,19724 ,8516,8433,8577 ,0,0,0}, {19728,19591,19665 ,8582,8518,8499 ,0,0,0}, - {19620,19681,19657 ,8444,8517,8488 ,0,0,0}, {19609,19681,19610 ,8433,8517,8434 ,0,0,0}, - {19657,19681,19699 ,8488,8517,8544 ,0,0,0}, {19535,19663,19533 ,8445,8497,8531 ,0,0,0}, - {19620,19657,19659 ,8444,8488,8490 ,0,0,0}, {19663,19701,19689 ,8497,8546,8530 ,0,0,0}, - {19725,19700,19680 ,8579,8545,8516 ,0,0,0}, {19729,19700,19726 ,8583,8545,8580 ,0,0,0}, - {19591,19593,19682 ,8518,8584,8519 ,0,0,0}, {19680,19699,19681 ,8516,8544,8517 ,0,0,0}, - {19665,19682,19699 ,8499,8519,8544 ,0,0,0}, {19579,19660,19586 ,8493,8492,8585 ,0,0,0}, - {19658,19657,19682 ,8489,8488,8519 ,0,0,0}, {19701,19659,19702 ,8546,8490,8547 ,0,0,0}, - {19700,19729,19616 ,8545,8583,8440 ,0,0,0}, {19698,19616,19729 ,8543,8440,8583 ,0,0,0}, - {19728,19665,19664 ,8582,8499,8498 ,0,0,0}, {19700,19665,19699 ,8545,8499,8544 ,0,0,0}, - {19593,19589,19682 ,8584,8586,8519 ,0,0,0}, {19682,19589,19586 ,8519,8586,8585 ,0,0,0}, - {19586,19658,19682 ,8585,8489,8519 ,0,0,0}, {19702,19658,19703 ,8547,8489,8548 ,0,0,0}, - {19656,19698,19697 ,8487,8543,8542 ,0,0,0}, {19696,19661,19656 ,8541,8494,8487 ,0,0,0}, - {19703,19660,19704 ,8548,8492,8549 ,0,0,0}, {19586,19660,19658 ,8585,8492,8489 ,0,0,0}, - {19697,19694,19623 ,8542,8539,8448 ,0,0,0}, {19623,19694,19691 ,8448,8539,8534 ,0,0,0}, - {19597,19690,19596 ,8451,8533,8551 ,0,0,0}, {19690,19705,19704 ,8533,8552,8549 ,0,0,0}, - {19691,19627,19626 ,8534,8454,8453 ,0,0,0}, {19695,19730,19693 ,8540,8587,8536 ,0,0,0}, - {19541,19692,19543 ,8588,8535,8537 ,0,0,0}, {19716,19627,19715 ,8564,8454,8563 ,0,0,0}, - {19714,19627,19691 ,8562,8454,8534 ,0,0,0}, {19731,19624,19636 ,8589,8450,8463 ,0,0,0}, - {19629,19628,19636 ,8456,8455,8463 ,0,0,0}, {19705,19624,19731 ,8552,8450,8589 ,0,0,0}, - {19695,19693,19691 ,8540,8536,8534 ,0,0,0}, {19730,19732,19631 ,8587,8590,8458 ,0,0,0}, - {19537,19707,19538 ,8591,8555,8592 ,0,0,0}, {19627,19714,19628 ,8454,8562,8455 ,0,0,0}, - {19714,19693,19692 ,8562,8536,8535 ,0,0,0}, {19636,19733,19734 ,8463,8593,8594 ,0,0,0}, - {19628,19706,19711 ,8455,8554,8559 ,0,0,0}, {19731,19636,19734 ,8589,8463,8594 ,0,0,0}, - {19730,19631,19693 ,8587,8458,8536 ,0,0,0}, {19732,19655,19631 ,8590,8486,8458 ,0,0,0}, - {19707,19541,19538 ,8555,8588,8592 ,0,0,0}, {19714,19692,19706 ,8562,8535,8554 ,0,0,0}, - {19692,19541,19707 ,8535,8588,8555 ,0,0,0}, {19711,19735,19733 ,8559,8595,8593 ,0,0,0}, - {19706,19707,19717 ,8554,8555,8565 ,0,0,0}, {19733,19636,19711 ,8593,8463,8559 ,0,0,0}, - {19654,19655,19732 ,8483,8486,8590 ,0,0,0}, {19712,19713,19655 ,8560,8561,8486 ,0,0,0}, - {19718,19537,19544 ,8566,8591,8568 ,0,0,0}, {19717,19736,19735 ,8565,8596,8595 ,0,0,0}, - {19707,19718,19719 ,8555,8566,8569 ,0,0,0}, {19735,19711,19717 ,8595,8559,8565 ,0,0,0}, - {19649,19651,19653 ,8478,8480,8482 ,0,0,0}, {19709,19737,19640 ,8557,8597,8469 ,0,0,0}, - {19552,19555,19641 ,8466,8598,8470 ,0,0,0}, {19552,19641,19637 ,8466,8470,8464 ,0,0,0}, - {19719,19638,19736 ,8569,8467,8596 ,0,0,0}, {19718,19707,19537 ,8566,8555,8591 ,0,0,0}, - {19718,19637,19639 ,8566,8464,8468 ,0,0,0}, {19736,19717,19719 ,8596,8565,8569 ,0,0,0}, - {19640,19642,19710 ,8469,8471,8558 ,0,0,0}, {19737,19645,19643 ,8597,8474,8472 ,0,0,0}, - {19738,19634,19633 ,8599,8461,8460 ,0,0,0}, {19557,19641,19555 ,8570,8470,8598 ,0,0,0}, - {19641,19644,19652 ,8470,8473,8481 ,0,0,0}, {19633,19639,19637 ,8460,8468,8464 ,0,0,0}, - {19652,19633,19637 ,8481,8460,8464 ,0,0,0}, {19638,19719,19639 ,8467,8569,8468 ,0,0,0}, - {19737,19643,19640 ,8597,8472,8469 ,0,0,0}, {19640,19644,19641 ,8469,8473,8470 ,0,0,0}, - {19647,19739,19644 ,8476,8600,8473 ,0,0,0}, {19643,19647,19644 ,8472,8476,8473 ,0,0,0}, - {19739,19738,19652 ,8600,8599,8481 ,0,0,0}, {19644,19739,19652 ,8473,8600,8481 ,0,0,0}, - {19738,19633,19652 ,8599,8460,8481 ,0,0,0}, {19635,19639,19633 ,8462,8468,8460 ,0,0,0}, - {19740,19741,19742 ,8601,8602,8603 ,0,0,0}, {19743,19744,19741 ,8604,8605,8602 ,0,0,0}, - {19745,19746,19747 ,8606,8607,8608 ,0,0,0}, {19748,19749,19750 ,8609,8610,8611 ,0,0,0}, - {19751,19752,19753 ,8612,8613,8614 ,0,0,0}, {19754,19755,19756 ,8615,8616,8617 ,0,0,0}, - {19757,19758,19759 ,8618,8619,8620 ,0,0,0}, {19760,19761,19762 ,8621,8622,8623 ,0,0,0}, - {19763,19764,19765 ,8624,8625,8626 ,0,0,0}, {19766,19767,19768 ,8627,8628,8629 ,0,0,0}, - {19769,19770,19763 ,8630,8631,8624 ,0,0,0}, {19763,19765,19769 ,8624,8626,8630 ,0,0,0}, - {19770,19771,19772 ,8631,8632,8633 ,0,0,0}, {19771,19770,19769 ,8632,8631,8630 ,0,0,0}, - {19773,19772,19774 ,8634,8633,8635 ,0,0,0}, {19771,19774,19772 ,8632,8635,8633 ,0,0,0}, - {19775,19776,19773 ,8636,8637,8634 ,0,0,0}, {19773,19774,19775 ,8634,8635,8636 ,0,0,0}, - {19777,19776,19775 ,8638,8637,8636 ,0,0,0}, {19764,19768,19765 ,8625,8629,8626 ,0,0,0}, - {19766,19758,19767 ,8627,8619,8628 ,0,0,0}, {19764,19766,19768 ,8625,8627,8629 ,0,0,0}, - {19757,19759,19760 ,8618,8620,8621 ,0,0,0}, {19767,19758,19757 ,8628,8619,8618 ,0,0,0}, - {19762,19761,19753 ,8623,8622,8614 ,0,0,0}, {19760,19759,19761 ,8621,8620,8622 ,0,0,0}, - {19755,19752,19751 ,8616,8613,8612 ,0,0,0}, {19752,19762,19753 ,8613,8623,8614 ,0,0,0}, - {19778,19754,19756 ,8639,8615,8617 ,0,0,0}, {19756,19755,19751 ,8617,8616,8612 ,0,0,0}, - {19745,19778,19746 ,8606,8639,8607 ,0,0,0}, {19778,19745,19754 ,8639,8606,8615 ,0,0,0}, - {19747,19748,19750 ,8608,8609,8611 ,0,0,0}, {19746,19748,19747 ,8607,8609,8608 ,0,0,0}, - {19743,19749,19744 ,8604,8610,8605 ,0,0,0}, {19750,19749,19743 ,8611,8610,8604 ,0,0,0}, - {19742,19779,19740 ,8603,8640,8601 ,0,0,0}, {19741,19744,19742 ,8602,8605,8603 ,0,0,0}, - {19780,19781,19741 ,8641,8642,8643 ,0,0,0}, {19782,19743,19781 ,8644,8645,8642 ,0,0,0}, - {19754,19745,19783 ,8646,8647,8648 ,0,0,0}, {19747,19750,19784 ,8649,8650,8651 ,0,0,0}, - {19752,19785,19762 ,8652,8653,8654 ,0,0,0}, {19786,19787,19755 ,8655,8656,8657 ,0,0,0}, - {19788,19767,19757 ,8658,8659,8660 ,0,0,0}, {19789,19760,19790 ,8661,8662,8663 ,0,0,0}, - {19769,19765,19791 ,8664,8665,8666 ,0,0,0}, {19768,19792,19793 ,8667,8668,8669 ,0,0,0}, - {19794,19771,19769 ,8670,8671,8664 ,0,0,0}, {19769,19791,19794 ,8664,8666,8670 ,0,0,0}, - {19771,19795,19774 ,8671,8672,8673 ,0,0,0}, {19795,19771,19794 ,8672,8671,8670 ,0,0,0}, - {19775,19774,19796 ,8674,8673,8675 ,0,0,0}, {19795,19796,19774 ,8672,8675,8673 ,0,0,0}, - {19797,19777,19775 ,8676,8638,8674 ,0,0,0}, {19775,19796,19797 ,8674,8675,8676 ,0,0,0}, - {19798,19777,19797 ,8677,8638,8676 ,0,0,0}, {19765,19793,19791 ,8665,8669,8666 ,0,0,0}, - {19768,19767,19792 ,8667,8659,8668 ,0,0,0}, {19765,19768,19793 ,8665,8667,8669 ,0,0,0}, - {19788,19757,19789 ,8658,8660,8661 ,0,0,0}, {19792,19767,19788 ,8668,8659,8658 ,0,0,0}, - {19790,19760,19762 ,8663,8662,8654 ,0,0,0}, {19789,19757,19760 ,8661,8660,8662 ,0,0,0}, - {19787,19785,19752 ,8656,8653,8652 ,0,0,0}, {19785,19790,19762 ,8653,8663,8654 ,0,0,0}, - {19754,19786,19755 ,8646,8655,8657 ,0,0,0}, {19755,19787,19752 ,8657,8656,8652 ,0,0,0}, - {19745,19799,19783 ,8647,8678,8648 ,0,0,0}, {19754,19783,19786 ,8646,8648,8655 ,0,0,0}, - {19784,19799,19747 ,8651,8678,8649 ,0,0,0}, {19745,19747,19799 ,8647,8649,8678 ,0,0,0}, - {19782,19750,19743 ,8644,8650,8645 ,0,0,0}, {19784,19750,19782 ,8651,8650,8644 ,0,0,0}, - {19741,19740,19780 ,8643,8601,8641 ,0,0,0}, {19781,19743,19741 ,8642,8645,8643 ,0,0,0}, - {19800,19801,19781 ,8679,8680,8681 ,0,0,0}, {19784,19782,19802 ,8651,8644,8682 ,0,0,0}, - {19786,19783,19803 ,8683,8684,8685 ,0,0,0}, {19799,19804,19805 ,8678,8686,8687 ,0,0,0}, - {19785,19806,19790 ,8688,8689,8690 ,0,0,0}, {19807,19808,19787 ,8691,8692,8693 ,0,0,0}, - {19809,19792,19810 ,8694,8695,8696 ,0,0,0}, {19788,19789,19811 ,8697,8698,8699 ,0,0,0}, - {19794,19791,19812 ,8700,8701,8702 ,0,0,0}, {19793,19813,19791 ,8703,8704,8701 ,0,0,0}, - {19814,19795,19794 ,8705,8706,8700 ,0,0,0}, {19794,19812,19814 ,8700,8702,8705 ,0,0,0}, - {19795,19815,19796 ,8706,8707,8675 ,0,0,0}, {19815,19795,19814 ,8707,8706,8705 ,0,0,0}, - {19797,19796,19816 ,8708,8675,8709 ,0,0,0}, {19815,19816,19796 ,8707,8709,8675 ,0,0,0}, - {19816,19817,19798 ,8709,8710,8677 ,0,0,0}, {19798,19797,19816 ,8677,8708,8709 ,0,0,0}, - {19812,19791,19813 ,8702,8701,8704 ,0,0,0}, {19793,19792,19809 ,8703,8695,8694 ,0,0,0}, - {19793,19809,19813 ,8703,8694,8704 ,0,0,0}, {19810,19788,19811 ,8696,8697,8699 ,0,0,0}, - {19792,19788,19810 ,8695,8697,8696 ,0,0,0}, {19818,19789,19790 ,8711,8698,8690 ,0,0,0}, - {19811,19789,19818 ,8699,8698,8711 ,0,0,0}, {19808,19806,19785 ,8692,8689,8688 ,0,0,0}, - {19806,19818,19790 ,8689,8711,8690 ,0,0,0}, {19786,19807,19787 ,8683,8691,8693 ,0,0,0}, - {19787,19808,19785 ,8693,8692,8688 ,0,0,0}, {19783,19805,19803 ,8684,8687,8685 ,0,0,0}, - {19786,19803,19807 ,8683,8685,8691 ,0,0,0}, {19799,19784,19804 ,8678,8651,8686 ,0,0,0}, - {19783,19799,19805 ,8684,8678,8687 ,0,0,0}, {19802,19782,19801 ,8682,8644,8680 ,0,0,0}, - {19804,19784,19802 ,8686,8651,8682 ,0,0,0}, {19800,19781,19780 ,8679,8681,8641 ,0,0,0}, - {19801,19782,19781 ,8680,8644,8681 ,0,0,0}, {19819,19820,19801 ,8712,8713,8714 ,0,0,0}, - {19804,19802,19821 ,8715,8716,8717 ,0,0,0}, {19807,19803,19822 ,8718,8719,8720 ,0,0,0}, - {19805,19804,19823 ,8721,8715,8722 ,0,0,0}, {19806,19824,19818 ,8723,8724,8725 ,0,0,0}, - {19825,19826,19808 ,8726,8727,8728 ,0,0,0}, {19827,19809,19810 ,8729,8730,8731 ,0,0,0}, - {19828,19811,19829 ,8732,8733,8734 ,0,0,0}, {19830,19812,19831 ,8735,8736,8737 ,0,0,0}, - {19813,19832,19831 ,8738,8739,8737 ,0,0,0}, {19830,19833,19814 ,8735,8740,8741 ,0,0,0}, - {19814,19812,19830 ,8741,8736,8735 ,0,0,0}, {19815,19833,19834 ,8742,8740,8743 ,0,0,0}, - {19833,19815,19814 ,8740,8742,8741 ,0,0,0}, {19835,19816,19834 ,8744,8745,8743 ,0,0,0}, - {19815,19834,19816 ,8742,8743,8745 ,0,0,0}, {19835,19836,19817 ,8744,8746,8710 ,0,0,0}, - {19817,19816,19835 ,8710,8745,8744 ,0,0,0}, {19831,19812,19813 ,8737,8736,8738 ,0,0,0}, - {19832,19809,19827 ,8739,8730,8729 ,0,0,0}, {19813,19809,19832 ,8738,8730,8739 ,0,0,0}, - {19828,19810,19811 ,8732,8731,8733 ,0,0,0}, {19827,19810,19828 ,8729,8731,8732 ,0,0,0}, - {19824,19829,19818 ,8724,8734,8725 ,0,0,0}, {19829,19811,19818 ,8734,8733,8725 ,0,0,0}, - {19808,19826,19806 ,8728,8727,8723 ,0,0,0}, {19826,19824,19806 ,8727,8724,8723 ,0,0,0}, - {19807,19822,19825 ,8718,8720,8726 ,0,0,0}, {19807,19825,19808 ,8718,8726,8728 ,0,0,0}, - {19803,19805,19837 ,8719,8721,8747 ,0,0,0}, {19803,19837,19822 ,8719,8747,8720 ,0,0,0}, - {19823,19804,19821 ,8722,8715,8717 ,0,0,0}, {19837,19805,19823 ,8747,8721,8722 ,0,0,0}, - {19820,19802,19801 ,8713,8716,8714 ,0,0,0}, {19821,19802,19820 ,8717,8716,8713 ,0,0,0}, - {19819,19801,19800 ,8712,8714,8679 ,0,0,0}, {19834,19838,19839 ,8748,8749,8750 ,0,0,0}, - {19836,19835,19840 ,8746,8751,8752 ,0,0,0}, {19841,19831,19842 ,8753,8754,8755 ,0,0,0}, - {19830,19843,19833 ,8756,8757,8758 ,0,0,0}, {19829,19844,19828 ,8759,8760,8761 ,0,0,0}, - {19827,19845,19832 ,8762,8763,8764 ,0,0,0}, {19846,19826,19825 ,8765,8766,8767 ,0,0,0}, - {19847,19824,19848 ,8768,8769,8770 ,0,0,0}, {19849,19837,19850 ,8771,8772,8773 ,0,0,0}, - {19822,19849,19851 ,8774,8771,8775 ,0,0,0}, {19852,19850,19823 ,8776,8773,8777 ,0,0,0}, - {19837,19823,19850 ,8772,8777,8773 ,0,0,0}, {19821,19853,19852 ,8778,8779,8776 ,0,0,0}, - {19852,19823,19821 ,8776,8777,8778 ,0,0,0}, {19853,19820,19854 ,8779,8780,8781 ,0,0,0}, - {19820,19853,19821 ,8780,8779,8778 ,0,0,0}, {19851,19825,19822 ,8775,8767,8774 ,0,0,0}, - {19854,19820,19819 ,8781,8780,8782 ,0,0,0}, {19849,19822,19837 ,8771,8774,8772 ,0,0,0}, - {19846,19848,19826 ,8765,8770,8766 ,0,0,0}, {19851,19846,19825 ,8775,8765,8767 ,0,0,0}, - {19824,19847,19829 ,8769,8768,8759 ,0,0,0}, {19826,19848,19824 ,8766,8770,8769 ,0,0,0}, - {19828,19844,19855 ,8761,8760,8783 ,0,0,0}, {19829,19847,19844 ,8759,8768,8760 ,0,0,0}, - {19855,19845,19827 ,8783,8763,8762 ,0,0,0}, {19827,19828,19855 ,8762,8761,8783 ,0,0,0}, - {19842,19831,19832 ,8755,8754,8764 ,0,0,0}, {19842,19832,19845 ,8755,8764,8763 ,0,0,0}, - {19841,19843,19830 ,8753,8757,8756 ,0,0,0}, {19841,19830,19831 ,8753,8756,8754 ,0,0,0}, - {19833,19838,19834 ,8758,8749,8748 ,0,0,0}, {19843,19838,19833 ,8757,8749,8758 ,0,0,0}, - {19835,19839,19840 ,8751,8750,8752 ,0,0,0}, {19834,19839,19835 ,8748,8750,8751 ,0,0,0}, - {19836,19840,19856 ,8746,8752,8784 ,0,0,0}, {19857,19858,19859 ,8785,8786,8787 ,0,0,0}, - {19860,19861,19862 ,8788,8789,8790 ,0,0,0}, {19861,19863,19864 ,8789,8791,8792 ,0,0,0}, - {19864,19862,19861 ,8792,8790,8789 ,0,0,0}, {19861,19859,19865 ,8789,8787,8793 ,0,0,0}, - {19863,19866,19864 ,8791,8794,8792 ,0,0,0}, {19867,19868,19869 ,8795,8796,8797 ,0,0,0}, - {19819,19858,19854 ,8782,8786,8798 ,0,0,0}, {19870,19871,19872 ,8799,8800,8801 ,0,0,0}, - {19850,19852,19873 ,8802,8803,8804 ,0,0,0}, {19874,19875,19876 ,8805,8806,8807 ,0,0,0}, - {19851,19877,19846 ,8808,8809,8810 ,0,0,0}, {19878,19879,19845 ,8811,8812,8813 ,0,0,0}, - {19880,19881,19876 ,8814,8815,8807 ,0,0,0}, {19882,19883,19884 ,8816,8817,8818 ,0,0,0}, - {19885,19879,19886 ,8819,8812,8820 ,0,0,0}, {19839,19883,19840 ,8821,8817,8822 ,0,0,0}, - {19840,19887,19856 ,8822,8823,8824 ,0,0,0}, {19888,19889,19884 ,8825,8826,8818 ,0,0,0}, - {19840,19883,19887 ,8822,8817,8823 ,0,0,0}, {19890,19882,19891 ,8827,8816,8828 ,0,0,0}, - {19888,19884,19838 ,8825,8818,8829 ,0,0,0}, {19888,19892,19893 ,8825,8830,8831 ,0,0,0}, - {19843,19892,19888 ,8832,8830,8825 ,0,0,0}, {19842,19879,19885 ,8833,8812,8819 ,0,0,0}, - {19892,19885,19894 ,8830,8819,8834 ,0,0,0}, {19892,19841,19885 ,8830,8835,8819 ,0,0,0}, - {19895,19878,19881 ,8836,8811,8815 ,0,0,0}, {19896,19879,19878 ,8837,8812,8811 ,0,0,0}, - {19881,19844,19847 ,8815,8838,8839 ,0,0,0}, {19881,19878,19855 ,8815,8811,8840 ,0,0,0}, - {19846,19874,19848 ,8810,8805,8841 ,0,0,0}, {19848,19876,19847 ,8841,8807,8839 ,0,0,0}, - {19870,19897,19877 ,8799,8842,8809 ,0,0,0}, {19877,19898,19874 ,8809,8843,8805 ,0,0,0}, - {19849,19850,19871 ,8844,8802,8800 ,0,0,0}, {19851,19849,19870 ,8808,8844,8799 ,0,0,0}, - {19868,19899,19873 ,8796,8845,8804 ,0,0,0}, {19872,19871,19899 ,8801,8800,8845 ,0,0,0}, - {19900,19853,19854 ,8846,8847,8798 ,0,0,0}, {19869,19852,19853 ,8797,8803,8847 ,0,0,0}, - {19901,19865,19859 ,8848,8793,8787 ,0,0,0}, {19900,19857,19867 ,8846,8785,8795 ,0,0,0}, - {19859,19858,19901 ,8787,8786,8848 ,0,0,0}, {19863,19861,19865 ,8791,8789,8793 ,0,0,0}, - {19902,19860,19862 ,8849,8788,8790 ,0,0,0}, {19903,19860,19902 ,8850,8788,8849 ,0,0,0}, - {19858,19819,19901 ,8786,8782,8848 ,0,0,0}, {19859,19860,19857 ,8787,8788,8785 ,0,0,0}, - {19854,19858,19900 ,8798,8786,8846 ,0,0,0}, {19861,19860,19859 ,8789,8788,8787 ,0,0,0}, - {19904,19903,19902 ,8851,8850,8849 ,0,0,0}, {19905,19903,19904 ,8852,8850,8851 ,0,0,0}, - {19858,19857,19900 ,8786,8785,8846 ,0,0,0}, {19857,19903,19867 ,8785,8850,8795 ,0,0,0}, - {19853,19900,19869 ,8847,8846,8797 ,0,0,0}, {19860,19903,19857 ,8788,8850,8785 ,0,0,0}, - {19906,19905,19904 ,8853,8852,8851 ,0,0,0}, {19907,19905,19906 ,8854,8852,8853 ,0,0,0}, - {19900,19867,19869 ,8846,8795,8797 ,0,0,0}, {19867,19905,19868 ,8795,8852,8796 ,0,0,0}, - {19852,19869,19873 ,8803,8797,8804 ,0,0,0}, {19903,19905,19867 ,8850,8852,8795 ,0,0,0}, - {19908,19907,19906 ,8855,8854,8853 ,0,0,0}, {19909,19907,19908 ,8856,8854,8855 ,0,0,0}, - {19869,19868,19873 ,8797,8796,8804 ,0,0,0}, {19868,19907,19899 ,8796,8854,8845 ,0,0,0}, - {19850,19873,19871 ,8802,8804,8800 ,0,0,0}, {19905,19907,19868 ,8852,8854,8796 ,0,0,0}, - {19910,19909,19908 ,8857,8856,8855 ,0,0,0}, {19911,19909,19910 ,8858,8856,8857 ,0,0,0}, - {19873,19899,19871 ,8804,8845,8800 ,0,0,0}, {19899,19909,19872 ,8845,8856,8801 ,0,0,0}, - {19849,19871,19870 ,8844,8800,8799 ,0,0,0}, {19907,19909,19899 ,8854,8856,8845 ,0,0,0}, - {19912,19911,19910 ,8859,8858,8857 ,0,0,0}, {19913,19914,19891 ,8860,8861,8828 ,0,0,0}, - {19915,19911,19912 ,8862,8858,8859 ,0,0,0}, {19872,19911,19897 ,8801,8858,8842 ,0,0,0}, - {19851,19870,19877 ,8808,8799,8809 ,0,0,0}, {19909,19911,19872 ,8856,8858,8801 ,0,0,0}, - {19916,19915,19912 ,8863,8862,8859 ,0,0,0}, {19917,19918,19915 ,8864,8865,8862 ,0,0,0}, - {19872,19897,19870 ,8801,8842,8799 ,0,0,0}, {19897,19915,19898 ,8842,8862,8843 ,0,0,0}, - {19846,19877,19874 ,8810,8809,8805 ,0,0,0}, {19911,19915,19897 ,8858,8862,8842 ,0,0,0}, - {19916,19917,19915 ,8863,8864,8862 ,0,0,0}, {19919,19920,19918 ,8866,8867,8865 ,0,0,0}, - {19897,19898,19877 ,8842,8843,8809 ,0,0,0}, {19898,19918,19875 ,8843,8865,8806 ,0,0,0}, - {19848,19874,19876 ,8841,8805,8807 ,0,0,0}, {19915,19918,19898 ,8862,8865,8843 ,0,0,0}, - {19917,19919,19918 ,8864,8866,8865 ,0,0,0}, {19921,19922,19920 ,8868,8869,8867 ,0,0,0}, - {19898,19875,19874 ,8843,8806,8805 ,0,0,0}, {19920,19880,19875 ,8867,8814,8806 ,0,0,0}, - {19847,19876,19881 ,8839,8807,8815 ,0,0,0}, {19918,19920,19875 ,8865,8867,8806 ,0,0,0}, - {19919,19921,19920 ,8866,8868,8867 ,0,0,0}, {19922,19923,19924 ,8869,8870,8871 ,0,0,0}, - {19875,19880,19876 ,8806,8814,8807 ,0,0,0}, {19922,19895,19880 ,8869,8836,8814 ,0,0,0}, - {19855,19844,19881 ,8840,8838,8815 ,0,0,0}, {19920,19922,19880 ,8867,8869,8814 ,0,0,0}, - {19921,19923,19922 ,8868,8870,8869 ,0,0,0}, {19924,19925,19926 ,8871,8872,8873 ,0,0,0}, - {19880,19895,19881 ,8814,8836,8815 ,0,0,0}, {19924,19896,19895 ,8871,8837,8836 ,0,0,0}, - {19845,19855,19878 ,8813,8840,8811 ,0,0,0}, {19922,19924,19895 ,8869,8871,8836 ,0,0,0}, - {19923,19925,19924 ,8870,8872,8871 ,0,0,0}, {19926,19927,19928 ,8873,8874,8875 ,0,0,0}, - {19895,19896,19878 ,8836,8837,8811 ,0,0,0}, {19926,19886,19896 ,8873,8820,8837 ,0,0,0}, - {19842,19845,19879 ,8833,8813,8812 ,0,0,0}, {19924,19926,19896 ,8871,8873,8837 ,0,0,0}, - {19925,19927,19926 ,8872,8874,8873 ,0,0,0}, {19928,19929,19930 ,8875,8876,8877 ,0,0,0}, - {19896,19886,19879 ,8837,8820,8812 ,0,0,0}, {19928,19894,19886 ,8875,8834,8820 ,0,0,0}, - {19841,19842,19885 ,8835,8833,8819 ,0,0,0}, {19926,19928,19886 ,8873,8875,8820 ,0,0,0}, - {19927,19929,19928 ,8874,8876,8875 ,0,0,0}, {19930,19931,19932 ,8877,8878,8879 ,0,0,0}, - {19886,19894,19885 ,8820,8834,8819 ,0,0,0}, {19930,19893,19894 ,8877,8831,8834 ,0,0,0}, - {19843,19841,19892 ,8832,8835,8830 ,0,0,0}, {19928,19930,19894 ,8875,8877,8834 ,0,0,0}, - {19929,19931,19930 ,8876,8878,8877 ,0,0,0}, {19891,19932,19913 ,8828,8879,8860 ,0,0,0}, - {19894,19893,19892 ,8834,8831,8830 ,0,0,0}, {19893,19932,19889 ,8831,8879,8826 ,0,0,0}, - {19838,19843,19888 ,8829,8832,8825 ,0,0,0}, {19930,19932,19893 ,8877,8879,8831 ,0,0,0}, - {19931,19913,19932 ,8878,8860,8879 ,0,0,0}, {19839,19884,19883 ,8821,8818,8817 ,0,0,0}, - {19893,19889,19888 ,8831,8826,8825 ,0,0,0}, {19891,19882,19889 ,8828,8816,8826 ,0,0,0}, - {19839,19838,19884 ,8821,8829,8818 ,0,0,0}, {19891,19889,19932 ,8828,8826,8879 ,0,0,0}, - {19914,19890,19891 ,8861,8827,8828 ,0,0,0}, {19933,19882,19890 ,8880,8816,8827 ,0,0,0}, - {19889,19882,19884 ,8826,8816,8818 ,0,0,0}, {19882,19933,19883 ,8816,8880,8817 ,0,0,0}, - {19887,19883,19933 ,8823,8817,8880 ,0,0,0}, {19934,19935,19864 ,8881,8882,8883 ,0,0,0}, - {19902,19862,19936 ,8884,8885,8886 ,0,0,0}, {19908,19906,19937 ,8887,8888,8889 ,0,0,0}, - {19904,19938,19939 ,8890,8891,8892 ,0,0,0}, {19940,19941,19916 ,8893,8894,8895 ,0,0,0}, - {19942,19943,19910 ,8896,8897,8898 ,0,0,0}, {19944,19921,19945 ,8899,8900,8901 ,0,0,0}, - {19919,19917,19946 ,8902,8903,8904 ,0,0,0}, {19927,19925,19947 ,8905,8906,8907 ,0,0,0}, - {19923,19948,19925 ,8908,8909,8906 ,0,0,0}, {19949,19929,19927 ,8910,8911,8905 ,0,0,0}, - {19927,19947,19949 ,8905,8907,8910 ,0,0,0}, {19929,19950,19931 ,8911,8912,8913 ,0,0,0}, - {19950,19929,19949 ,8912,8911,8910 ,0,0,0}, {19913,19931,19951 ,8914,8913,8915 ,0,0,0}, - {19950,19951,19931 ,8912,8915,8913 ,0,0,0}, {19951,19952,19914 ,8915,8916,8861 ,0,0,0}, - {19914,19913,19951 ,8861,8914,8915 ,0,0,0}, {19947,19925,19948 ,8907,8906,8909 ,0,0,0}, - {19923,19921,19944 ,8908,8900,8899 ,0,0,0}, {19923,19944,19948 ,8908,8899,8909 ,0,0,0}, - {19945,19919,19946 ,8901,8902,8904 ,0,0,0}, {19921,19919,19945 ,8900,8902,8901 ,0,0,0}, - {19941,19917,19916 ,8894,8903,8895 ,0,0,0}, {19946,19917,19941 ,8904,8903,8894 ,0,0,0}, - {19943,19940,19912 ,8897,8893,8917 ,0,0,0}, {19940,19916,19912 ,8893,8895,8917 ,0,0,0}, - {19908,19942,19910 ,8887,8896,8898 ,0,0,0}, {19910,19943,19912 ,8898,8897,8917 ,0,0,0}, - {19906,19939,19937 ,8888,8892,8889 ,0,0,0}, {19908,19937,19942 ,8887,8889,8896 ,0,0,0}, - {19904,19902,19938 ,8890,8884,8891 ,0,0,0}, {19906,19904,19939 ,8888,8890,8892 ,0,0,0}, - {19936,19862,19935 ,8886,8885,8882 ,0,0,0}, {19938,19902,19936 ,8891,8884,8886 ,0,0,0}, - {19934,19864,19866 ,8881,8883,8918 ,0,0,0}, {19935,19862,19864 ,8882,8885,8883 ,0,0,0}, - {19953,19954,19935 ,8919,8920,8921 ,0,0,0}, {19936,19935,19955 ,8922,8921,8923 ,0,0,0}, - {19937,19939,19956 ,8924,8925,8926 ,0,0,0}, {19938,19957,19958 ,8927,8928,8929 ,0,0,0}, - {19943,19959,19940 ,8930,8931,8932 ,0,0,0}, {19960,19961,19942 ,8933,8934,8935 ,0,0,0}, - {19962,19945,19946 ,8936,8937,8938 ,0,0,0}, {19963,19941,19964 ,8939,8940,8941 ,0,0,0}, - {19947,19948,19965 ,8942,8943,8944 ,0,0,0}, {19944,19966,19967 ,8945,8946,8947 ,0,0,0}, - {19968,19949,19947 ,8948,8949,8942 ,0,0,0}, {19947,19965,19968 ,8942,8944,8948 ,0,0,0}, - {19949,19969,19950 ,8949,8950,8951 ,0,0,0}, {19969,19949,19968 ,8950,8949,8948 ,0,0,0}, - {19951,19950,19970 ,8952,8951,8953 ,0,0,0}, {19969,19970,19950 ,8950,8953,8951 ,0,0,0}, - {19971,19952,19951 ,8954,8916,8952 ,0,0,0}, {19951,19970,19971 ,8952,8953,8954 ,0,0,0}, - {19972,19952,19971 ,8955,8916,8954 ,0,0,0}, {19948,19967,19965 ,8943,8947,8944 ,0,0,0}, - {19944,19945,19966 ,8945,8937,8946 ,0,0,0}, {19948,19944,19967 ,8943,8945,8947 ,0,0,0}, - {19962,19946,19963 ,8936,8938,8939 ,0,0,0}, {19966,19945,19962 ,8946,8937,8936 ,0,0,0}, - {19964,19941,19940 ,8941,8940,8932 ,0,0,0}, {19963,19946,19941 ,8939,8938,8940 ,0,0,0}, - {19961,19959,19943 ,8934,8931,8930 ,0,0,0}, {19959,19964,19940 ,8931,8941,8932 ,0,0,0}, - {19937,19960,19942 ,8924,8933,8935 ,0,0,0}, {19942,19961,19943 ,8935,8934,8930 ,0,0,0}, - {19939,19958,19956 ,8925,8929,8926 ,0,0,0}, {19937,19956,19960 ,8924,8926,8933 ,0,0,0}, - {19938,19936,19957 ,8927,8922,8928 ,0,0,0}, {19939,19938,19958 ,8925,8927,8929 ,0,0,0}, - {19955,19935,19954 ,8923,8921,8920 ,0,0,0}, {19957,19936,19955 ,8928,8922,8923 ,0,0,0}, - {19953,19935,19934 ,8919,8921,8881 ,0,0,0}, {19973,19974,19954 ,8956,8957,8958 ,0,0,0}, - {19975,19955,19974 ,8959,8923,8957 ,0,0,0}, {19960,19956,19976 ,8960,8961,8962 ,0,0,0}, - {19958,19957,19977 ,8929,8928,8963 ,0,0,0}, {19959,19978,19964 ,8964,8965,8966 ,0,0,0}, - {19979,19980,19961 ,8967,8968,8969 ,0,0,0}, {19981,19966,19962 ,8970,8971,8972 ,0,0,0}, - {19982,19963,19983 ,8973,8974,8975 ,0,0,0}, {19968,19965,19984 ,8948,8944,8976 ,0,0,0}, - {19967,19985,19986 ,8977,8978,8979 ,0,0,0}, {19987,19969,19968 ,8980,8950,8948 ,0,0,0}, - {19968,19984,19987 ,8948,8976,8980 ,0,0,0}, {19969,19988,19970 ,8950,8981,8953 ,0,0,0}, - {19988,19969,19987 ,8981,8950,8980 ,0,0,0}, {19971,19970,19989 ,8982,8953,8983 ,0,0,0}, - {19988,19989,19970 ,8981,8983,8953 ,0,0,0}, {19990,19972,19971 ,8984,8955,8982 ,0,0,0}, - {19971,19989,19990 ,8982,8983,8984 ,0,0,0}, {19991,19972,19990 ,8985,8955,8984 ,0,0,0}, - {19965,19986,19984 ,8944,8979,8976 ,0,0,0}, {19967,19966,19985 ,8977,8971,8978 ,0,0,0}, - {19965,19967,19986 ,8944,8977,8979 ,0,0,0}, {19981,19962,19982 ,8970,8972,8973 ,0,0,0}, - {19985,19966,19981 ,8978,8971,8970 ,0,0,0}, {19983,19963,19964 ,8975,8974,8966 ,0,0,0}, - {19982,19962,19963 ,8973,8972,8974 ,0,0,0}, {19980,19978,19959 ,8968,8965,8964 ,0,0,0}, - {19978,19983,19964 ,8965,8975,8966 ,0,0,0}, {19960,19979,19961 ,8960,8967,8969 ,0,0,0}, - {19961,19980,19959 ,8969,8968,8964 ,0,0,0}, {19956,19992,19976 ,8961,8986,8962 ,0,0,0}, - {19960,19976,19979 ,8960,8962,8967 ,0,0,0}, {19977,19992,19958 ,8963,8986,8929 ,0,0,0}, - {19956,19958,19992 ,8961,8929,8986 ,0,0,0}, {19975,19957,19955 ,8959,8928,8923 ,0,0,0}, - {19977,19957,19975 ,8963,8928,8959 ,0,0,0}, {19954,19953,19973 ,8958,8919,8956 ,0,0,0}, - {19974,19955,19954 ,8957,8923,8958 ,0,0,0}, {19993,19994,19974 ,8987,8988,8989 ,0,0,0}, - {19995,19975,19994 ,8990,8991,8988 ,0,0,0}, {19979,19976,19996 ,8992,8993,8994 ,0,0,0}, - {19992,19977,19997 ,8995,8996,8997 ,0,0,0}, {19978,19998,19983 ,8998,8999,9000 ,0,0,0}, - {19999,20000,19980 ,9001,9002,9003 ,0,0,0}, {20001,19985,19981 ,9004,9005,9006 ,0,0,0}, - {20002,19982,20003 ,9007,9008,9009 ,0,0,0}, {20004,19984,20005 ,9010,9011,9012 ,0,0,0}, - {19986,19985,20006 ,9013,9005,9014 ,0,0,0}, {20007,19988,19987 ,9015,9016,9017 ,0,0,0}, - {19987,20004,20007 ,9017,9010,9015 ,0,0,0}, {19988,20008,19989 ,9016,9018,9019 ,0,0,0}, - {20008,19988,20007 ,9018,9016,9015 ,0,0,0}, {19990,19989,20009 ,9020,9019,9021 ,0,0,0}, - {20008,20009,19989 ,9018,9021,9019 ,0,0,0}, {20010,19991,19990 ,9022,8985,9020 ,0,0,0}, - {19990,20009,20010 ,9020,9021,9022 ,0,0,0}, {20011,19991,20010 ,9023,8985,9022 ,0,0,0}, - {20004,19987,19984 ,9010,9017,9011 ,0,0,0}, {20005,19986,20006 ,9012,9013,9014 ,0,0,0}, - {19984,19986,20005 ,9011,9013,9012 ,0,0,0}, {19981,20002,20001 ,9006,9007,9004 ,0,0,0}, - {20006,19985,20001 ,9014,9005,9004 ,0,0,0}, {20003,19982,19983 ,9009,9008,9000 ,0,0,0}, - {20002,19981,19982 ,9007,9006,9008 ,0,0,0}, {20000,19998,19978 ,9002,8999,8998 ,0,0,0}, - {19998,20003,19983 ,8999,9009,9000 ,0,0,0}, {19979,19999,19980 ,8992,9001,9003 ,0,0,0}, - {19980,20000,19978 ,9003,9002,8998 ,0,0,0}, {19976,20012,19996 ,8993,9024,8994 ,0,0,0}, - {19979,19996,19999 ,8992,8994,9001 ,0,0,0}, {19997,20012,19992 ,8997,9024,8995 ,0,0,0}, - {19976,19992,20012 ,8993,8995,9024 ,0,0,0}, {19995,19977,19975 ,8990,8996,8991 ,0,0,0}, - {19997,19977,19995 ,8997,8996,8990 ,0,0,0}, {19974,19973,19993 ,8989,8956,8987 ,0,0,0}, - {19994,19975,19974 ,8988,8991,8989 ,0,0,0}, {20013,19993,20014 ,9025,8987,9026 ,0,0,0}, - {20015,19997,20016 ,9027,9028,9029 ,0,0,0}, {20017,19995,19994 ,9030,9031,9032 ,0,0,0}, - {19999,20018,20000 ,9033,9034,9035 ,0,0,0}, {20012,20019,19996 ,9036,9037,9038 ,0,0,0}, - {20020,20002,20003 ,9039,9040,9041 ,0,0,0}, {20021,19998,20022 ,9042,9043,9044 ,0,0,0}, - {20023,20006,20024 ,9045,9046,9047 ,0,0,0}, {20001,20025,20024 ,9048,9049,9047 ,0,0,0}, - {20007,20004,20026 ,9050,9051,9052 ,0,0,0}, {20005,20027,20004 ,9053,9054,9051 ,0,0,0}, - {20028,20008,20007 ,9055,9056,9050 ,0,0,0}, {20007,20026,20028 ,9050,9052,9055 ,0,0,0}, - {20008,20029,20009 ,9056,9057,9058 ,0,0,0}, {20029,20008,20028 ,9057,9056,9055 ,0,0,0}, - {20010,20009,20030 ,9059,9058,9060 ,0,0,0}, {20029,20030,20009 ,9057,9060,9058 ,0,0,0}, - {20031,20011,20010 ,9061,9023,9059 ,0,0,0}, {20010,20030,20031 ,9059,9060,9061 ,0,0,0}, - {20023,20027,20005 ,9045,9054,9053 ,0,0,0}, {20004,20027,20026 ,9051,9054,9052 ,0,0,0}, - {20006,20001,20024 ,9046,9048,9047 ,0,0,0}, {20005,20006,20023 ,9053,9046,9045 ,0,0,0}, - {20025,20002,20020 ,9049,9040,9039 ,0,0,0}, {20001,20002,20025 ,9048,9040,9049 ,0,0,0}, - {20021,20003,19998 ,9042,9041,9043 ,0,0,0}, {20020,20003,20021 ,9039,9041,9042 ,0,0,0}, - {20018,20022,20000 ,9034,9044,9035 ,0,0,0}, {20022,19998,20000 ,9044,9043,9035 ,0,0,0}, - {19996,20032,19999 ,9038,9062,9033 ,0,0,0}, {20032,20018,19999 ,9062,9034,9033 ,0,0,0}, - {20012,20015,20019 ,9036,9027,9037 ,0,0,0}, {19996,20019,20032 ,9038,9037,9062 ,0,0,0}, - {19997,19995,20016 ,9028,9031,9029 ,0,0,0}, {20012,19997,20015 ,9036,9028,9027 ,0,0,0}, - {20017,19994,20013 ,9030,9032,9025 ,0,0,0}, {20016,19995,20017 ,9029,9031,9030 ,0,0,0}, - {19993,20013,19994 ,8987,9025,9032 ,0,0,0}, {20020,20021,20033 ,9063,9064,9065 ,0,0,0}, - {20034,20021,20022 ,9066,9064,9067 ,0,0,0}, {20021,20034,20033 ,9064,9066,9065 ,0,0,0}, - {20018,20035,20022 ,9068,9069,9067 ,0,0,0}, {20034,20022,20035 ,9066,9067,9069 ,0,0,0}, - {20018,20032,20036 ,9068,9070,9071 ,0,0,0}, {20036,20035,20018 ,9071,9069,9068 ,0,0,0}, - {20037,20032,20019 ,9072,9070,9073 ,0,0,0}, {20032,20037,20036 ,9070,9072,9071 ,0,0,0}, - {20015,20038,20019 ,9074,9075,9073 ,0,0,0}, {20037,20019,20038 ,9072,9073,9075 ,0,0,0}, - {20015,20016,20039 ,9074,9076,9077 ,0,0,0}, {20039,20038,20015 ,9077,9075,9074 ,0,0,0}, - {20040,20016,20017 ,9078,9076,9079 ,0,0,0}, {20016,20040,20039 ,9076,9078,9077 ,0,0,0}, - {20013,20041,20017 ,9080,9081,9079 ,0,0,0}, {20040,20017,20041 ,9078,9079,9081 ,0,0,0}, - {20014,20042,20041 ,9082,9083,9081 ,0,0,0}, {20041,20013,20014 ,9081,9080,9082 ,0,0,0}, - {20020,20033,20043 ,9063,9065,9084 ,0,0,0}, {20043,20044,20025 ,9084,9085,9086 ,0,0,0}, - {20025,20020,20043 ,9086,9063,9084 ,0,0,0}, {20024,20044,20045 ,9087,9085,9088 ,0,0,0}, - {20044,20024,20025 ,9085,9087,9086 ,0,0,0}, {20046,20023,20045 ,9089,9090,9088 ,0,0,0}, - {20024,20045,20023 ,9087,9088,9090 ,0,0,0}, {20046,20047,20027 ,9089,9091,9092 ,0,0,0}, - {20027,20023,20046 ,9092,9090,9089 ,0,0,0}, {20026,20047,20048 ,9093,9091,9094 ,0,0,0}, - {20047,20026,20027 ,9091,9093,9092 ,0,0,0}, {20049,20028,20048 ,9095,9096,9094 ,0,0,0}, - {20026,20048,20028 ,9093,9094,9096 ,0,0,0}, {20049,20050,20029 ,9095,9097,9098 ,0,0,0}, - {20029,20028,20049 ,9098,9096,9095 ,0,0,0}, {20030,20050,20051 ,9099,9097,9100 ,0,0,0}, - {20050,20030,20029 ,9097,9099,9098 ,0,0,0}, {20030,20051,20031 ,9099,9100,9101 ,0,0,0}, - {20052,20042,20053 ,9102,9103,9104 ,0,0,0}, {20054,20038,20055 ,9105,9106,9107 ,0,0,0}, - {20052,20056,20040 ,9102,9108,9109 ,0,0,0}, {20035,20057,20058 ,9110,9111,9112 ,0,0,0}, - {20037,20059,20036 ,9113,9114,9115 ,0,0,0}, {20060,20061,20043 ,9116,9117,9118 ,0,0,0}, - {20062,20033,20034 ,9119,9120,9121 ,0,0,0}, {20063,20046,20064 ,9122,9123,9124 ,0,0,0}, - {20045,20044,20065 ,9125,9126,9127 ,0,0,0}, {20066,20048,20047 ,9128,9129,9130 ,0,0,0}, - {20047,20063,20066 ,9130,9122,9128 ,0,0,0}, {20048,20067,20049 ,9129,9131,9132 ,0,0,0}, - {20067,20048,20066 ,9131,9129,9128 ,0,0,0}, {20050,20049,20068 ,9133,9132,9134 ,0,0,0}, - {20067,20068,20049 ,9131,9134,9132 ,0,0,0}, {20069,20051,20050 ,9135,9100,9133 ,0,0,0}, - {20050,20068,20069 ,9133,9134,9135 ,0,0,0}, {20046,20045,20064 ,9123,9125,9124 ,0,0,0}, - {20047,20046,20063 ,9130,9123,9122 ,0,0,0}, {20065,20044,20061 ,9127,9126,9117 ,0,0,0}, - {20064,20045,20065 ,9124,9125,9127 ,0,0,0}, {20060,20043,20033 ,9116,9118,9120 ,0,0,0}, - {20061,20044,20043 ,9117,9126,9118 ,0,0,0}, {20058,20062,20034 ,9112,9119,9121 ,0,0,0}, - {20062,20060,20033 ,9119,9116,9120 ,0,0,0}, {20036,20057,20035 ,9115,9111,9110 ,0,0,0}, - {20035,20058,20034 ,9110,9112,9121 ,0,0,0}, {20037,20054,20059 ,9113,9105,9114 ,0,0,0}, - {20036,20059,20057 ,9115,9114,9111 ,0,0,0}, {20038,20039,20055 ,9106,9136,9107 ,0,0,0}, - {20037,20038,20054 ,9113,9106,9105 ,0,0,0}, {20040,20056,20039 ,9109,9108,9136 ,0,0,0}, - {20055,20039,20056 ,9107,9136,9108 ,0,0,0}, {20052,20041,20042 ,9102,9137,9103 ,0,0,0}, - {20052,20040,20041 ,9102,9109,9137 ,0,0,0}, {20070,20053,20071 ,9138,9139,9140 ,0,0,0}, - {20072,20055,20073 ,9141,9142,9143 ,0,0,0}, {20074,20056,20052 ,9144,9145,9146 ,0,0,0}, - {20057,20075,20058 ,9147,9148,9149 ,0,0,0}, {20054,20076,20059 ,9150,9151,9152 ,0,0,0}, - {20077,20078,20060 ,9153,9154,9155 ,0,0,0}, {20077,20062,20079 ,9153,9156,9157 ,0,0,0}, - {20080,20064,20081 ,9158,9159,9160 ,0,0,0}, {20065,20061,20082 ,9161,9162,9163 ,0,0,0}, - {20083,20066,20063 ,9164,9165,9166 ,0,0,0}, {20063,20080,20083 ,9166,9158,9164 ,0,0,0}, - {20066,20084,20067 ,9165,9167,9168 ,0,0,0}, {20084,20066,20083 ,9167,9165,9164 ,0,0,0}, - {20068,20067,20085 ,9169,9168,9170 ,0,0,0}, {20084,20085,20067 ,9167,9170,9168 ,0,0,0}, - {20086,20069,20068 ,9171,9172,9169 ,0,0,0}, {20068,20085,20086 ,9169,9170,9171 ,0,0,0}, - {20064,20065,20081 ,9159,9161,9160 ,0,0,0}, {20063,20064,20080 ,9166,9159,9158 ,0,0,0}, - {20082,20061,20078 ,9163,9162,9154 ,0,0,0}, {20081,20065,20082 ,9160,9161,9163 ,0,0,0}, - {20077,20060,20062 ,9153,9155,9156 ,0,0,0}, {20078,20061,20060 ,9154,9162,9155 ,0,0,0}, - {20075,20079,20058 ,9148,9157,9149 ,0,0,0}, {20079,20062,20058 ,9157,9156,9149 ,0,0,0}, - {20059,20087,20057 ,9152,9173,9147 ,0,0,0}, {20087,20075,20057 ,9173,9148,9147 ,0,0,0}, - {20054,20072,20076 ,9150,9141,9151 ,0,0,0}, {20059,20076,20087 ,9152,9151,9173 ,0,0,0}, - {20055,20056,20073 ,9142,9145,9143 ,0,0,0}, {20054,20055,20072 ,9150,9142,9141 ,0,0,0}, - {20074,20052,20070 ,9144,9146,9138 ,0,0,0}, {20073,20056,20074 ,9143,9145,9144 ,0,0,0}, - {20053,20070,20052 ,9139,9138,9146 ,0,0,0}, {20088,20071,20089 ,9174,9175,9176 ,0,0,0}, - {20090,20073,20091 ,9177,9178,9179 ,0,0,0}, {20092,20074,20070 ,9180,9181,9182 ,0,0,0}, - {20087,20093,20094 ,9183,9184,9185 ,0,0,0}, {20072,20095,20076 ,9186,9187,9188 ,0,0,0}, - {20096,20097,20077 ,9189,9190,9191 ,0,0,0}, {20096,20079,20098 ,9189,9192,9193 ,0,0,0}, - {20099,20081,20100 ,9194,9195,9196 ,0,0,0}, {20082,20078,20101 ,9197,9198,9199 ,0,0,0}, - {20102,20083,20080 ,9200,9201,9202 ,0,0,0}, {20080,20099,20102 ,9202,9194,9200 ,0,0,0}, - {20083,20103,20084 ,9201,9203,9204 ,0,0,0}, {20103,20083,20102 ,9203,9201,9200 ,0,0,0}, - {20085,20084,20104 ,9205,9204,9206 ,0,0,0}, {20103,20104,20084 ,9203,9206,9204 ,0,0,0}, - {20105,20086,20085 ,9207,9208,9205 ,0,0,0}, {20085,20104,20105 ,9205,9206,9207 ,0,0,0}, - {20081,20082,20100 ,9195,9197,9196 ,0,0,0}, {20080,20081,20099 ,9202,9195,9194 ,0,0,0}, - {20101,20078,20097 ,9199,9198,9190 ,0,0,0}, {20100,20082,20101 ,9196,9197,9199 ,0,0,0}, - {20096,20077,20079 ,9189,9191,9192 ,0,0,0}, {20097,20078,20077 ,9190,9198,9191 ,0,0,0}, - {20094,20098,20075 ,9185,9193,9209 ,0,0,0}, {20098,20079,20075 ,9193,9192,9209 ,0,0,0}, - {20076,20093,20087 ,9188,9184,9183 ,0,0,0}, {20087,20094,20075 ,9183,9185,9209 ,0,0,0}, - {20072,20090,20095 ,9186,9177,9187 ,0,0,0}, {20076,20095,20093 ,9188,9187,9184 ,0,0,0}, - {20073,20074,20091 ,9178,9181,9179 ,0,0,0}, {20072,20073,20090 ,9186,9178,9177 ,0,0,0}, - {20092,20070,20088 ,9180,9182,9174 ,0,0,0}, {20091,20074,20092 ,9179,9181,9180 ,0,0,0}, - {20071,20088,20070 ,9175,9174,9182 ,0,0,0}, {19676,20089,19674 ,9210,9211,9212 ,0,0,0}, - {19677,20091,19678 ,9213,9214,9215 ,0,0,0}, {19688,20092,20088 ,9216,9217,9218 ,0,0,0}, - {20093,19701,19702 ,9219,9220,9221 ,0,0,0}, {20090,19689,20095 ,9222,9223,9224 ,0,0,0}, - {19704,19705,20096 ,9225,9226,9227 ,0,0,0}, {19703,20098,20094 ,9228,9229,9230 ,0,0,0}, - {19734,20100,20101 ,9231,9232,9233 ,0,0,0}, {19731,20097,19705 ,9234,9235,9226 ,0,0,0}, - {19735,20102,20099 ,9236,9237,9238 ,0,0,0}, {20099,19733,19735 ,9238,9239,9236 ,0,0,0}, - {20102,19736,20103 ,9237,9240,9241 ,0,0,0}, {19736,20102,19735 ,9240,9237,9236 ,0,0,0}, - {20103,19638,19635 ,9241,9242,9243 ,0,0,0}, {19736,19638,20103 ,9240,9242,9241 ,0,0,0}, - {19634,20104,19635 ,8461,9244,9243 ,0,0,0}, {20103,19635,20104 ,9241,9243,9244 ,0,0,0}, - {20105,20104,19634 ,9207,9244,8461 ,0,0,0}, {19733,20100,19734 ,9239,9232,9231 ,0,0,0}, - {20099,20100,19733 ,9238,9232,9239 ,0,0,0}, {19731,20101,20097 ,9234,9233,9235 ,0,0,0}, - {19734,20101,19731 ,9231,9233,9234 ,0,0,0}, {20096,20098,19704 ,9227,9229,9225 ,0,0,0}, - {19705,20097,20096 ,9226,9235,9227 ,0,0,0}, {19702,19703,20094 ,9221,9228,9230 ,0,0,0}, - {19703,19704,20098 ,9228,9225,9229 ,0,0,0}, {20095,19701,20093 ,9224,9220,9219 ,0,0,0}, - {20093,19702,20094 ,9219,9221,9230 ,0,0,0}, {20090,19677,19689 ,9222,9213,9223 ,0,0,0}, - {20095,19689,19701 ,9224,9223,9220 ,0,0,0}, {20091,20092,19678 ,9214,9217,9215 ,0,0,0}, - {20090,20091,19677 ,9222,9214,9213 ,0,0,0}, {19688,20088,19676 ,9216,9218,9210 ,0,0,0}, - {19678,20092,19688 ,9215,9217,9216 ,0,0,0}, {20089,19676,20088 ,9211,9210,9218 ,0,0,0}, - {20106,19614,20107 ,9245,8438,9246 ,0,0,0}, {20108,19724,19671 ,9247,9248,9249 ,0,0,0}, - {20109,19686,19612 ,9250,9251,9252 ,0,0,0}, {19729,20110,20111 ,9253,9254,9255 ,0,0,0}, - {19725,20112,19726 ,9256,9257,9258 ,0,0,0}, {20113,20114,19694 ,9259,9260,9261 ,0,0,0}, - {20115,19697,19698 ,9262,9263,9264 ,0,0,0}, {20116,19732,20117 ,9265,9266,9267 ,0,0,0}, - {19730,19695,20118 ,9268,9269,9270 ,0,0,0}, {20119,19709,19654 ,9271,9272,9273 ,0,0,0}, - {19654,20116,20119 ,9273,9265,9271 ,0,0,0}, {19709,20120,19737 ,9272,9274,9275 ,0,0,0}, - {20120,19709,20119 ,9274,9272,9271 ,0,0,0}, {19645,19737,20121 ,9276,9275,9277 ,0,0,0}, - {20120,20121,19737 ,9274,9277,9275 ,0,0,0}, {20122,19648,19645 ,9278,9279,9276 ,0,0,0}, - {19645,20121,20122 ,9276,9277,9278 ,0,0,0}, {19732,19730,20117 ,9266,9268,9267 ,0,0,0}, - {19654,19732,20116 ,9273,9266,9265 ,0,0,0}, {20118,19695,20114 ,9270,9269,9260 ,0,0,0}, - {20117,19730,20118 ,9267,9268,9270 ,0,0,0}, {20113,19694,19697 ,9259,9261,9263 ,0,0,0}, - {20114,19695,19694 ,9260,9269,9261 ,0,0,0}, {20111,20115,19698 ,9255,9262,9264 ,0,0,0}, - {20115,20113,19697 ,9262,9259,9263 ,0,0,0}, {19726,20110,19729 ,9258,9254,9253 ,0,0,0}, - {19729,20111,19698 ,9253,9255,9264 ,0,0,0}, {19725,20123,20112 ,9256,9280,9257 ,0,0,0}, - {19726,20112,20110 ,9258,9257,9254 ,0,0,0}, {20108,20123,19724 ,9247,9280,9248 ,0,0,0}, - {19725,19724,20123 ,9256,9248,9280 ,0,0,0}, {20109,19671,19686 ,9250,9249,9251 ,0,0,0}, - {20108,19671,20109 ,9247,9249,9250 ,0,0,0}, {20106,19612,19614 ,9245,9252,8438 ,0,0,0}, - {20109,19612,20106 ,9250,9252,9245 ,0,0,0}, {20124,20107,20125 ,9281,9246,9282 ,0,0,0}, - {20126,20108,20127 ,9283,9284,9285 ,0,0,0}, {20128,20109,20106 ,9286,9287,9288 ,0,0,0}, - {20110,20129,20130 ,9289,9290,9291 ,0,0,0}, {20123,20131,20112 ,9292,9293,9294 ,0,0,0}, - {20132,20114,20113 ,9295,9296,9297 ,0,0,0}, {20133,20115,20134 ,9298,9299,9300 ,0,0,0}, - {20135,20117,20136 ,9301,9302,9303 ,0,0,0}, {20118,20114,20137 ,9304,9296,9305 ,0,0,0}, - {20138,20119,20116 ,9306,9307,9308 ,0,0,0}, {20116,20135,20138 ,9308,9301,9306 ,0,0,0}, - {20119,20139,20120 ,9307,9309,9310 ,0,0,0}, {20139,20119,20138 ,9309,9307,9306 ,0,0,0}, - {20121,20120,20140 ,9311,9310,9312 ,0,0,0}, {20139,20140,20120 ,9309,9312,9310 ,0,0,0}, - {20141,20122,20121 ,9313,9314,9311 ,0,0,0}, {20121,20140,20141 ,9311,9312,9313 ,0,0,0}, - {20117,20118,20136 ,9302,9304,9303 ,0,0,0}, {20116,20117,20135 ,9308,9302,9301 ,0,0,0}, - {20137,20114,20132 ,9305,9296,9295 ,0,0,0}, {20136,20118,20137 ,9303,9304,9305 ,0,0,0}, - {20133,20113,20115 ,9298,9297,9299 ,0,0,0}, {20132,20113,20133 ,9295,9297,9298 ,0,0,0}, - {20130,20134,20111 ,9291,9300,9315 ,0,0,0}, {20134,20115,20111 ,9300,9299,9315 ,0,0,0}, - {20112,20129,20110 ,9294,9290,9289 ,0,0,0}, {20110,20130,20111 ,9289,9291,9315 ,0,0,0}, - {20123,20126,20131 ,9292,9283,9293 ,0,0,0}, {20112,20131,20129 ,9294,9293,9290 ,0,0,0}, - {20108,20109,20127 ,9284,9287,9285 ,0,0,0}, {20123,20108,20126 ,9292,9284,9283 ,0,0,0}, - {20128,20106,20124 ,9286,9288,9281 ,0,0,0}, {20127,20109,20128 ,9285,9287,9286 ,0,0,0}, - {20107,20124,20106 ,9246,9281,9288 ,0,0,0}, {20142,20125,20143 ,9316,9282,9317 ,0,0,0}, - {20144,20127,20145 ,9318,9319,9320 ,0,0,0}, {20146,20128,20124 ,9321,9322,9323 ,0,0,0}, - {20129,20147,20130 ,9324,9325,9326 ,0,0,0}, {20126,20148,20131 ,9327,9328,9329 ,0,0,0}, - {20149,20132,20133 ,9330,9331,9332 ,0,0,0}, {20150,20134,20151 ,9333,9334,9335 ,0,0,0}, - {20152,20136,20153 ,9336,9337,9338 ,0,0,0}, {20137,20132,20154 ,9339,9331,9340 ,0,0,0}, - {20155,20138,20135 ,9341,9342,9343 ,0,0,0}, {20135,20152,20155 ,9343,9336,9341 ,0,0,0}, - {20138,20156,20139 ,9342,9344,9345 ,0,0,0}, {20156,20138,20155 ,9344,9342,9341 ,0,0,0}, - {20140,20139,20157 ,9346,9345,9347 ,0,0,0}, {20156,20157,20139 ,9344,9347,9345 ,0,0,0}, - {20158,20141,20140 ,9348,9349,9346 ,0,0,0}, {20140,20157,20158 ,9346,9347,9348 ,0,0,0}, - {20136,20137,20153 ,9337,9339,9338 ,0,0,0}, {20135,20136,20152 ,9343,9337,9336 ,0,0,0}, - {20154,20132,20149 ,9340,9331,9330 ,0,0,0}, {20153,20137,20154 ,9338,9339,9340 ,0,0,0}, - {20150,20133,20134 ,9333,9332,9334 ,0,0,0}, {20149,20133,20150 ,9330,9332,9333 ,0,0,0}, - {20147,20151,20130 ,9325,9335,9326 ,0,0,0}, {20151,20134,20130 ,9335,9334,9326 ,0,0,0}, - {20131,20159,20129 ,9329,9350,9324 ,0,0,0}, {20159,20147,20129 ,9350,9325,9324 ,0,0,0}, - {20126,20144,20148 ,9327,9318,9328 ,0,0,0}, {20131,20148,20159 ,9329,9328,9350 ,0,0,0}, - {20127,20128,20145 ,9319,9322,9320 ,0,0,0}, {20126,20127,20144 ,9327,9319,9318 ,0,0,0}, - {20146,20124,20142 ,9321,9323,9316 ,0,0,0}, {20145,20128,20146 ,9320,9322,9321 ,0,0,0}, - {20125,20142,20124 ,9282,9316,9323 ,0,0,0}, {19742,20160,19779 ,9351,9352,8640 ,0,0,0}, - {19748,20161,19749 ,9353,9354,9355 ,0,0,0}, {19744,20162,20163 ,9356,9357,9358 ,0,0,0}, - {20164,19756,20165 ,9359,9360,9361 ,0,0,0}, {20166,19746,20167 ,9362,9363,9364 ,0,0,0}, - {19761,20168,20169 ,9365,9366,9367 ,0,0,0}, {19753,20170,19751 ,9368,9369,9370 ,0,0,0}, - {20171,20172,19766 ,9371,9372,9373 ,0,0,0}, {20173,19759,19758 ,9374,9375,9376 ,0,0,0}, - {20174,20175,19763 ,9377,9378,9379 ,0,0,0}, {19764,19763,20175 ,9380,9379,9378 ,0,0,0}, - {19770,20176,20174 ,9381,9382,9377 ,0,0,0}, {20174,19763,19770 ,9377,9379,9381 ,0,0,0}, - {20176,19772,20177 ,9382,9383,9384 ,0,0,0}, {19772,20176,19770 ,9383,9382,9381 ,0,0,0}, - {20178,20177,19773 ,9385,9384,9386 ,0,0,0}, {19772,19773,20177 ,9383,9386,9384 ,0,0,0}, - {19776,20179,20178 ,8637,9387,9385 ,0,0,0}, {20178,19773,19776 ,9385,9386,8637 ,0,0,0}, - {19766,19764,20171 ,9373,9380,9371 ,0,0,0}, {20171,19764,20175 ,9371,9380,9378 ,0,0,0}, - {20172,20173,19758 ,9372,9374,9376 ,0,0,0}, {20172,19758,19766 ,9372,9376,9373 ,0,0,0}, - {19759,20168,19761 ,9375,9366,9365 ,0,0,0}, {20173,20168,19759 ,9374,9366,9375 ,0,0,0}, - {19753,20169,20170 ,9368,9367,9369 ,0,0,0}, {19761,20169,19753 ,9365,9367,9368 ,0,0,0}, - {19756,19751,20165 ,9360,9370,9361 ,0,0,0}, {19751,20170,20165 ,9370,9369,9361 ,0,0,0}, - {20167,19778,20164 ,9364,9388,9359 ,0,0,0}, {19778,19756,20164 ,9388,9360,9359 ,0,0,0}, - {20166,19748,19746 ,9362,9353,9363 ,0,0,0}, {20167,19746,19778 ,9364,9363,9388 ,0,0,0}, - {20161,20162,19749 ,9354,9357,9355 ,0,0,0}, {20166,20161,19748 ,9362,9354,9353 ,0,0,0}, - {19744,20163,19742 ,9356,9358,9351 ,0,0,0}, {19749,20162,19744 ,9355,9357,9356 ,0,0,0}, - {20160,19742,20163 ,9352,9351,9358 ,0,0,0}, {20180,20143,20181 ,9389,9317,9390 ,0,0,0}, - {20182,20145,20183 ,9391,9392,9393 ,0,0,0}, {20184,20146,20142 ,9394,9395,9396 ,0,0,0}, - {20159,20185,20186 ,9397,9398,9399 ,0,0,0}, {20144,20187,20148 ,9400,9401,9402 ,0,0,0}, - {20188,20189,20150 ,9403,9404,9405 ,0,0,0}, {20190,20151,20147 ,9406,9407,9408 ,0,0,0}, - {20191,20153,20154 ,9409,9410,9411 ,0,0,0}, {20154,20149,20192 ,9411,9412,9413 ,0,0,0}, - {20193,20155,20152 ,9414,9415,9416 ,0,0,0}, {20152,20194,20193 ,9416,9417,9414 ,0,0,0}, - {20155,20195,20156 ,9415,9418,9419 ,0,0,0}, {20195,20155,20193 ,9418,9415,9414 ,0,0,0}, - {20157,20156,20196 ,9420,9419,9421 ,0,0,0}, {20195,20196,20156 ,9418,9421,9419 ,0,0,0}, - {20197,20157,20198 ,9422,9420,9423 ,0,0,0}, {20157,20196,20198 ,9420,9421,9423 ,0,0,0}, - {20158,20157,20197 ,9424,9420,9422 ,0,0,0}, {20194,20153,20191 ,9417,9410,9409 ,0,0,0}, - {20152,20153,20194 ,9416,9410,9417 ,0,0,0}, {20149,20189,20192 ,9412,9404,9413 ,0,0,0}, - {20191,20154,20192 ,9409,9411,9413 ,0,0,0}, {20188,20150,20151 ,9403,9405,9407 ,0,0,0}, - {20189,20149,20150 ,9404,9412,9405 ,0,0,0}, {20186,20190,20147 ,9399,9406,9408 ,0,0,0}, - {20190,20188,20151 ,9406,9403,9407 ,0,0,0}, {20148,20185,20159 ,9402,9398,9397 ,0,0,0}, - {20159,20186,20147 ,9397,9399,9408 ,0,0,0}, {20144,20182,20187 ,9400,9391,9401 ,0,0,0}, - {20148,20187,20185 ,9402,9401,9398 ,0,0,0}, {20145,20146,20183 ,9392,9395,9393 ,0,0,0}, - {20144,20145,20182 ,9400,9392,9391 ,0,0,0}, {20184,20142,20180 ,9394,9396,9389 ,0,0,0}, - {20183,20146,20184 ,9393,9395,9394 ,0,0,0}, {20143,20180,20142 ,9317,9389,9396 ,0,0,0}, - {20163,20181,20160 ,9425,9390,9426 ,0,0,0}, {20166,20183,20161 ,9427,9428,9429 ,0,0,0}, - {20162,20184,20180 ,9430,9431,9432 ,0,0,0}, {20185,20164,20165 ,9433,9434,9435 ,0,0,0}, - {20182,20167,20187 ,9436,9437,9438 ,0,0,0}, {20169,20168,20188 ,9439,9440,9441 ,0,0,0}, - {20170,20190,20186 ,9442,9443,9444 ,0,0,0}, {20171,20191,20172 ,9445,9446,9447 ,0,0,0}, - {20192,20189,20173 ,9448,9449,9450 ,0,0,0}, {20174,20193,20175 ,9451,9452,9453 ,0,0,0}, - {20194,20171,20175 ,9454,9445,9453 ,0,0,0}, {20174,20176,20195 ,9451,9455,9456 ,0,0,0}, - {20195,20193,20174 ,9456,9452,9451 ,0,0,0}, {20196,20176,20177 ,9457,9455,9458 ,0,0,0}, - {20176,20196,20195 ,9455,9457,9456 ,0,0,0}, {20178,20198,20177 ,9459,9460,9458 ,0,0,0}, - {20196,20177,20198 ,9457,9458,9460 ,0,0,0}, {20179,20197,20198 ,9461,9422,9460 ,0,0,0}, - {20198,20178,20179 ,9460,9459,9461 ,0,0,0}, {20191,20171,20194 ,9446,9445,9454 ,0,0,0}, - {20193,20194,20175 ,9452,9454,9453 ,0,0,0}, {20172,20192,20173 ,9447,9448,9450 ,0,0,0}, - {20191,20192,20172 ,9446,9448,9447 ,0,0,0}, {20168,20189,20188 ,9440,9449,9441 ,0,0,0}, - {20173,20189,20168 ,9450,9449,9440 ,0,0,0}, {20170,20169,20190 ,9442,9439,9443 ,0,0,0}, - {20169,20188,20190 ,9439,9441,9443 ,0,0,0}, {20185,20165,20186 ,9433,9435,9444 ,0,0,0}, - {20165,20170,20186 ,9435,9442,9444 ,0,0,0}, {20187,20167,20164 ,9438,9437,9434 ,0,0,0}, - {20187,20164,20185 ,9438,9434,9433 ,0,0,0}, {20182,20183,20166 ,9436,9428,9427 ,0,0,0}, - {20182,20166,20167 ,9436,9427,9437 ,0,0,0}, {20161,20184,20162 ,9429,9431,9430 ,0,0,0}, - {20183,20184,20161 ,9428,9431,9429 ,0,0,0}, {20163,20180,20181 ,9425,9432,9390 ,0,0,0}, - {20162,20180,20163 ,9430,9432,9425 ,0,0,0}, {19866,20199,20200 ,9462,9463,9464 ,0,0,0}, - {19865,20201,19863 ,9465,9466,9467 ,0,0,0}, {20199,19866,20202 ,9463,9462,9468 ,0,0,0}, - {20200,20203,19866 ,9464,9462,9462 ,0,0,0}, {20202,19866,19863 ,9468,9462,9467 ,0,0,0}, - {20204,20202,19863 ,9469,9468,9467 ,0,0,0}, {20204,19863,20201 ,9469,9467,9466 ,0,0,0}, - {19901,19819,20205 ,9470,9471,9472 ,0,0,0}, {19901,20206,20207 ,9470,9473,9474 ,0,0,0}, - {20205,20206,19901 ,9472,9473,9470 ,0,0,0}, {19865,20207,20208 ,9465,9474,9475 ,0,0,0}, - {19865,19901,20207 ,9465,9470,9474 ,0,0,0}, {19865,20209,20210 ,9465,9476,9477 ,0,0,0}, - {20208,20209,19865 ,9475,9476,9465 ,0,0,0}, {19865,20211,20212 ,9465,9478,9479 ,0,0,0}, - {20210,20211,19865 ,9477,9478,9465 ,0,0,0}, {20201,19865,20213 ,9466,9465,9480 ,0,0,0}, - {20212,20213,19865 ,9479,9480,9465 ,0,0,0}, {20214,19687,20215 ,9481,9482,9483 ,0,0,0}, - {19687,20216,20217 ,9482,9484,9485 ,0,0,0}, {20217,19685,19687 ,9485,9486,9482 ,0,0,0}, - {19687,20214,20216 ,9482,9481,9484 ,0,0,0}, {19685,20218,20219 ,9486,9487,9488 ,0,0,0}, - {19685,20217,20218 ,9486,9485,9487 ,0,0,0}, {19687,20220,20215 ,9482,9489,9483 ,0,0,0}, - {19685,20219,19614 ,9486,9488,9490 ,0,0,0}, {20221,19687,19672 ,9491,9482,9492 ,0,0,0}, - {19687,20221,20220 ,9482,9491,9489 ,0,0,0}, {19674,20222,20223 ,9493,9493,9494 ,0,0,0}, - {20224,20225,19675 ,9495,9496,9497 ,0,0,0}, {20226,20227,19674 ,9498,9499,9493 ,0,0,0}, - {20226,19674,20223 ,9498,9493,9494 ,0,0,0}, {19674,20228,19675 ,9493,9500,9497 ,0,0,0}, - {20228,19674,20227 ,9500,9493,9499 ,0,0,0}, {20229,19675,20225 ,9501,9497,9496 ,0,0,0}, - {20228,20224,19675 ,9500,9495,9497 ,0,0,0}, {20221,19672,20229 ,9491,9492,9501 ,0,0,0}, - {20229,19672,19675 ,9501,9492,9497 ,0,0,0}, {20222,19674,20230 ,9502,9503,9504 ,0,0,0}, - {20071,20230,20089 ,9505,9504,9506 ,0,0,0}, {20071,20053,20230 ,9505,9507,9504 ,0,0,0}, - {20230,20053,20042 ,9504,9507,9508 ,0,0,0}, {20042,20014,20230 ,9508,9509,9504 ,0,0,0}, - {20230,19674,20089 ,9504,9503,9506 ,0,0,0}, {20231,20229,20232 ,9510,9511,4303 ,0,0,0}, - {20231,20233,20221 ,9510,82,9512 ,0,0,0}, {20221,20229,20231 ,9512,9511,9510 ,0,0,0}, - {20234,20235,20236 ,9513,9514,9515 ,0,0,0}, {20235,20237,20236 ,9514,9516,9515 ,0,0,0}, - {20235,20234,20238 ,9514,9513,9517 ,0,0,0}, {20216,20239,20238 ,9518,9519,9517 ,0,0,0}, - {20234,20216,20238 ,9513,9518,9517 ,0,0,0}, {20214,20239,20216 ,9520,9519,9518 ,0,0,0}, - {20239,20214,20240 ,9519,9520,9521 ,0,0,0}, {20215,20241,20240 ,9522,9523,9521 ,0,0,0}, - {20240,20214,20215 ,9521,9520,9522 ,0,0,0}, {20241,20220,20242 ,9523,9524,9525 ,0,0,0}, - {20220,20241,20215 ,9524,9523,9522 ,0,0,0}, {20233,20242,20221 ,9526,9525,9527 ,0,0,0}, - {20220,20221,20242 ,9524,9527,9525 ,0,0,0}, {20227,20243,20244 ,9528,9529,9530 ,0,0,0}, - {20232,20229,20225 ,9531,9532,9533 ,0,0,0}, {20225,20224,20245 ,9533,9534,9535 ,0,0,0}, - {20246,20228,20244 ,9536,9537,9530 ,0,0,0}, {20245,20224,20246 ,9535,9534,9536 ,0,0,0}, - {20225,20245,20232 ,9533,9535,9531 ,0,0,0}, {20224,20228,20246 ,9534,9537,9536 ,0,0,0}, - {20228,20227,20244 ,9537,9528,9530 ,0,0,0}, {20243,20227,20226 ,9529,9528,9538 ,0,0,0}, - {20226,20223,20247 ,9538,9539,9540 ,0,0,0}, {20247,20243,20226 ,9540,9529,9538 ,0,0,0}, - {20248,20223,20222 ,9541,9539,9542 ,0,0,0}, {20223,20248,20247 ,9539,9541,9540 ,0,0,0}, - {20248,20222,20230 ,9541,9542,9542 ,0,0,0}, {20203,20249,20250 ,9543,9543,9544 ,0,0,0}, - {20203,20250,20251 ,9543,9544,9543 ,0,0,0}, {20252,20203,20251 ,9543,9543,9543 ,0,0,0}, - {20243,20247,20203 ,9543,9543,9543 ,0,0,0}, {20243,20203,20252 ,9543,9543,9543 ,0,0,0}, - {20203,20248,20230 ,9543,9543,9544 ,0,0,0}, {20247,20248,20203 ,9543,9543,9543 ,0,0,0}, - {20203,20230,19866 ,9543,9544,9543 ,0,0,0}, {20230,19993,19973 ,9544,9543,9543 ,0,0,0}, - {20230,20014,19993 ,9544,9544,9543 ,0,0,0}, {19973,19953,20230 ,9543,9544,9544 ,0,0,0}, - {19866,20230,19934 ,9543,9544,9543 ,0,0,0}, {20230,19953,19934 ,9544,9544,9543 ,0,0,0}, - {19779,20160,20253 ,9545,9546,9547 ,0,0,0}, {20205,20254,20206 ,9548,9549,9550 ,0,0,0}, - {20255,20254,19780 ,9551,9549,9552 ,0,0,0}, {20256,20237,20257 ,9553,9554,9555 ,0,0,0}, - {20258,20256,20257 ,9556,9553,9555 ,0,0,0}, {20259,20260,20261 ,9557,9558,9559 ,0,0,0}, - {20260,20258,20261 ,9558,9556,9559 ,0,0,0}, {20254,19800,19780 ,9549,9560,9552 ,0,0,0}, - {20255,19780,19740 ,9551,9552,9561 ,0,0,0}, {20259,20207,20206 ,9557,9562,9550 ,0,0,0}, - {19819,19800,20205 ,9563,9560,9548 ,0,0,0}, {19779,20255,19740 ,9545,9551,9561 ,0,0,0}, - {20253,20262,20255 ,9547,9564,9551 ,0,0,0}, {20255,19779,20253 ,9551,9545,9547 ,0,0,0}, - {20262,20256,20258 ,9564,9553,9556 ,0,0,0}, {20260,20259,20206 ,9558,9557,9550 ,0,0,0}, - {20258,20260,20255 ,9556,9558,9551 ,0,0,0}, {20205,19800,20254 ,9548,9560,9549 ,0,0,0}, - {20258,20255,20262 ,9556,9551,9564 ,0,0,0}, {20257,20261,20258 ,9555,9559,9556 ,0,0,0}, - {20206,20254,20260 ,9550,9549,9558 ,0,0,0}, {20255,20260,20254 ,9551,9558,9549 ,0,0,0}, - {20263,20264,20265 ,9565,9566,9567 ,0,0,0}, {20266,20267,20268 ,9568,9569,9570 ,0,0,0}, - {20269,20270,20271 ,9571,9572,9573 ,0,0,0}, {20237,20235,20272 ,9574,9575,9576 ,0,0,0}, - {20273,20274,20211 ,9577,9578,9579 ,0,0,0}, {20275,20276,20277 ,9580,9581,9582 ,0,0,0}, - {20278,20279,20264 ,9583,9584,9566 ,0,0,0}, {20201,20213,20279 ,9585,9586,9584 ,0,0,0}, - {20280,20242,20233 ,9587,9588,9589 ,0,0,0}, {20263,20265,20280 ,9565,9567,9587 ,0,0,0}, - {20201,20279,20278 ,9585,9584,9583 ,0,0,0}, {20268,20265,20264 ,9570,9567,9566 ,0,0,0}, - {20213,20281,20279 ,9586,9590,9584 ,0,0,0}, {20274,20281,20212 ,9578,9590,9591 ,0,0,0}, - {20282,20273,20277 ,9592,9577,9582 ,0,0,0}, {20283,20271,20267 ,9593,9573,9569 ,0,0,0}, - {20208,20259,20275 ,9594,9595,9580 ,0,0,0}, {20270,20282,20272 ,9572,9592,9576 ,0,0,0}, - {20207,20259,20208 ,9596,9595,9594 ,0,0,0}, {20275,20259,20261 ,9580,9595,9597 ,0,0,0}, - {20212,20281,20213 ,9591,9590,9586 ,0,0,0}, {20212,20211,20274 ,9591,9579,9578 ,0,0,0}, - {20280,20265,20242 ,9587,9567,9588 ,0,0,0}, {20278,20264,20263 ,9583,9566,9565 ,0,0,0}, - {20268,20264,20266 ,9570,9566,9568 ,0,0,0}, {20241,20242,20265 ,9598,9588,9567 ,0,0,0}, - {20266,20279,20281 ,9568,9584,9590 ,0,0,0}, {20257,20237,20272 ,9599,9574,9576 ,0,0,0}, - {20265,20268,20241 ,9567,9570,9598 ,0,0,0}, {20279,20266,20264 ,9584,9568,9566 ,0,0,0}, - {20267,20266,20283 ,9569,9568,9593 ,0,0,0}, {20240,20241,20268 ,9600,9598,9570 ,0,0,0}, - {20274,20283,20281 ,9578,9593,9590 ,0,0,0}, {20210,20273,20211 ,9601,9577,9579 ,0,0,0}, - {20268,20267,20240 ,9570,9569,9600 ,0,0,0}, {20281,20283,20266 ,9590,9593,9568 ,0,0,0}, - {20271,20283,20269 ,9573,9593,9571 ,0,0,0}, {20239,20240,20267 ,9602,9600,9569 ,0,0,0}, - {20273,20269,20274 ,9577,9571,9578 ,0,0,0}, {20209,20277,20210 ,9603,9582,9601 ,0,0,0}, - {20271,20238,20239 ,9573,9604,9602 ,0,0,0}, {20274,20269,20283 ,9578,9571,9593 ,0,0,0}, - {20269,20282,20270 ,9571,9592,9572 ,0,0,0}, {20239,20267,20271 ,9602,9569,9573 ,0,0,0}, - {20210,20277,20273 ,9601,9582,9577 ,0,0,0}, {20275,20209,20208 ,9580,9603,9594 ,0,0,0}, - {20270,20235,20238 ,9572,9575,9604 ,0,0,0}, {20273,20282,20269 ,9577,9592,9571 ,0,0,0}, - {20276,20272,20282 ,9581,9576,9592 ,0,0,0}, {20238,20271,20270 ,9604,9573,9572 ,0,0,0}, - {20209,20275,20277 ,9603,9580,9582 ,0,0,0}, {20277,20276,20282 ,9582,9581,9592 ,0,0,0}, - {20261,20257,20276 ,9597,9599,9581 ,0,0,0}, {20275,20261,20276 ,9580,9597,9581 ,0,0,0}, - {20257,20272,20276 ,9599,9576,9581 ,0,0,0}, {20235,20270,20272 ,9575,9572,9576 ,0,0,0}, - {20280,20231,20284 ,9605,9606,9607 ,0,0,0}, {20204,20285,20202 ,9608,9609,9468 ,0,0,0}, - {20284,20231,20286 ,9607,9606,9610 ,0,0,0}, {20231,20232,20286 ,9606,82,9610 ,0,0,0}, - {20284,20287,20285 ,9607,9611,9609 ,0,0,0}, {20280,20233,20231 ,9605,82,9606 ,0,0,0}, - {20285,20287,20202 ,9609,9611,9468 ,0,0,0}, {20278,20285,20204 ,9612,9609,9608 ,0,0,0}, - {20201,20278,20204 ,9613,9612,9608 ,0,0,0}, {20278,20263,20285 ,9612,9614,9609 ,0,0,0}, - {20263,20280,20284 ,9614,9605,9607 ,0,0,0}, {20263,20284,20285 ,9614,9607,9609 ,0,0,0}, - {20287,20284,20286 ,9611,9607,9610 ,0,0,0}, {20252,20251,20244 ,9615,9616,9617 ,0,0,0}, - {20286,20232,20245 ,9618,82,9619 ,0,0,0}, {20245,20246,20288 ,9619,9620,9621 ,0,0,0}, - {20245,20288,20286 ,9619,9621,9618 ,0,0,0}, {20243,20252,20244 ,9622,9615,9617 ,0,0,0}, - {20250,20249,20289 ,9623,9624,9625 ,0,0,0}, {20289,20290,20250 ,9625,9626,9623 ,0,0,0}, - {20287,20288,20291 ,9627,9621,9628 ,0,0,0}, {20291,20288,20290 ,9628,9621,9626 ,0,0,0}, - {20249,20203,20200 ,9624,9629,9630 ,0,0,0}, {20287,20291,20202 ,9627,9628,9631 ,0,0,0}, - {20200,20291,20289 ,9630,9628,9625 ,0,0,0}, {20286,20288,20287 ,9618,9621,9627 ,0,0,0}, - {20200,20199,20291 ,9630,9632,9628 ,0,0,0}, {20291,20199,20202 ,9628,9632,9631 ,0,0,0}, - {20288,20246,20290 ,9621,9620,9626 ,0,0,0}, {20244,20290,20246 ,9617,9626,9620 ,0,0,0}, - {20200,20289,20249 ,9630,9625,9624 ,0,0,0}, {20291,20290,20289 ,9628,9626,9625 ,0,0,0}, - {20251,20290,20244 ,9616,9626,9617 ,0,0,0}, {20251,20250,20290 ,9616,9623,9626 ,0,0,0}, - {20125,20292,20293 ,9633,9634,9635 ,0,0,0}, {20237,20256,20294 ,9636,9637,9638 ,0,0,0}, - {20295,20294,20256 ,9639,9638,9637 ,0,0,0}, {20125,20293,20143 ,9633,9635,9640 ,0,0,0}, - {20293,20292,20295 ,9635,9634,9639 ,0,0,0}, {20253,20160,20181 ,9641,9642,9643 ,0,0,0}, - {20143,20293,20181 ,9640,9635,9643 ,0,0,0}, {20219,20292,20107 ,9644,9634,9645 ,0,0,0}, - {20296,20219,20218 ,9646,9644,9647 ,0,0,0}, {20292,20125,20107 ,9634,9633,9645 ,0,0,0}, - {20294,20234,20236 ,9638,9648,9649 ,0,0,0}, {20294,20296,20297 ,9638,9646,9650 ,0,0,0}, - {20107,19614,20219 ,9645,9651,9644 ,0,0,0}, {20234,20297,20216 ,9648,9650,9652 ,0,0,0}, - {20297,20234,20294 ,9650,9648,9638 ,0,0,0}, {20293,20253,20181 ,9635,9641,9643 ,0,0,0}, - {20292,20296,20295 ,9634,9646,9639 ,0,0,0}, {20262,20253,20293 ,9653,9641,9635 ,0,0,0}, - {20219,20296,20292 ,9644,9646,9634 ,0,0,0}, {20297,20218,20217 ,9650,9647,9654 ,0,0,0}, - {20256,20262,20295 ,9637,9653,9639 ,0,0,0}, {20293,20295,20262 ,9635,9639,9653 ,0,0,0}, - {20218,20297,20296 ,9647,9650,9646 ,0,0,0}, {20216,20297,20217 ,9652,9650,9654 ,0,0,0}, - {20294,20236,20237 ,9638,9649,9636 ,0,0,0}, {20296,20294,20295 ,9646,9638,9639 ,0,0,0}, - {20298,19739,20299 ,9655,9656,9657 ,0,0,0}, {19739,20300,20301 ,9656,9658,9659 ,0,0,0}, - {20301,19738,19739 ,9659,9660,9656 ,0,0,0}, {19739,20298,20300 ,9656,9655,9658 ,0,0,0}, - {19738,20302,20303 ,9660,9661,9662 ,0,0,0}, {19738,20301,20302 ,9660,9659,9661 ,0,0,0}, - {19739,20304,20299 ,9656,9663,9657 ,0,0,0}, {19738,20303,19634 ,9660,9662,9664 ,0,0,0}, - {20305,19739,19647 ,9665,9656,9666 ,0,0,0}, {19739,20305,20304 ,9656,9665,9663 ,0,0,0}, - {19648,20306,20307 ,9667,9667,9668 ,0,0,0}, {20308,20309,19646 ,9669,9670,9671 ,0,0,0}, - {20310,20311,19648 ,9672,9673,9667 ,0,0,0}, {20310,19648,20307 ,9672,9667,9668 ,0,0,0}, - {19648,20312,19646 ,9667,9674,9671 ,0,0,0}, {20312,19648,20311 ,9674,9667,9673 ,0,0,0}, - {20313,19646,20309 ,9675,9671,9670 ,0,0,0}, {20312,20308,19646 ,9674,9669,9671 ,0,0,0}, - {20305,19647,20313 ,9665,9666,9675 ,0,0,0}, {20313,19647,19646 ,9675,9666,9671 ,0,0,0}, - {19856,20314,20315 ,9676,9677,9678 ,0,0,0}, {19933,20316,19887 ,9679,9680,9681 ,0,0,0}, - {20314,19856,20317 ,9677,9676,9682 ,0,0,0}, {20315,20318,19856 ,9678,9676,9676 ,0,0,0}, - {20317,19856,19887 ,9682,9676,9681 ,0,0,0}, {20319,20317,19887 ,9683,9682,9681 ,0,0,0}, - {20319,19887,20316 ,9683,9681,9680 ,0,0,0}, {19890,19914,20320 ,9684,9685,9686 ,0,0,0}, - {19890,20321,20322 ,9684,9687,9688 ,0,0,0}, {20320,20321,19890 ,9686,9687,9684 ,0,0,0}, - {19933,20322,20323 ,9679,9688,9689 ,0,0,0}, {19933,19890,20322 ,9679,9684,9688 ,0,0,0}, - {19933,20324,20325 ,9679,9690,9691 ,0,0,0}, {20323,20324,19933 ,9689,9690,9679 ,0,0,0}, - {19933,20326,20327 ,9679,9692,9693 ,0,0,0}, {20325,20326,19933 ,9691,9692,9679 ,0,0,0}, - {20316,19933,20328 ,9680,9679,9694 ,0,0,0}, {20327,20328,19933 ,9693,9694,9679 ,0,0,0}, - {20197,20306,20158 ,9695,9696,9695 ,0,0,0}, {19648,20122,20306 ,9695,9695,9696 ,0,0,0}, - {20179,20329,20306 ,9695,9696,9696 ,0,0,0}, {20306,20197,20179 ,9696,9695,9695 ,0,0,0}, - {20141,20158,20306 ,9695,9695,9696 ,0,0,0}, {20141,20306,20122 ,9695,9696,9695 ,0,0,0}, - {20330,20331,20305 ,126,126,126 ,0,0,0}, {20313,20332,20330 ,9697,126,126 ,0,0,0}, - {20330,20305,20313 ,126,126,9697 ,0,0,0}, {20333,20334,20335 ,9698,9699,9700 ,0,0,0}, - {20334,20336,20335 ,9699,9701,9700 ,0,0,0}, {20334,20333,20337 ,9699,9698,9702 ,0,0,0}, - {20300,20338,20337 ,9703,9704,9702 ,0,0,0}, {20333,20300,20337 ,9698,9703,9702 ,0,0,0}, - {20298,20338,20300 ,9705,9704,9703 ,0,0,0}, {20338,20298,20339 ,9704,9705,9706 ,0,0,0}, - {20299,20340,20339 ,9707,9708,9706 ,0,0,0}, {20339,20298,20299 ,9706,9705,9707 ,0,0,0}, - {20340,20304,20341 ,9708,9709,9710 ,0,0,0}, {20304,20340,20299 ,9709,9708,9707 ,0,0,0}, - {20331,20341,20305 ,9711,9710,9712 ,0,0,0}, {20304,20305,20341 ,9709,9712,9710 ,0,0,0}, - {20342,20343,20311 ,9713,9714,9715 ,0,0,0}, {20344,20312,20343 ,9716,9717,9714 ,0,0,0}, - {20313,20309,20332 ,126,9718,126 ,0,0,0}, {20308,20345,20309 ,9719,9720,9718 ,0,0,0}, - {20308,20344,20345 ,9719,9716,9720 ,0,0,0}, {20345,20332,20309 ,9720,126,9718 ,0,0,0}, - {20312,20344,20308 ,9717,9716,9719 ,0,0,0}, {20312,20311,20343 ,9717,9715,9714 ,0,0,0}, - {20342,20311,20310 ,9713,9715,9721 ,0,0,0}, {20310,20307,20346 ,9721,9722,9723 ,0,0,0}, - {20346,20342,20310 ,9723,9713,9721 ,0,0,0}, {20347,20307,20306 ,9724,9722,9725 ,0,0,0}, - {20307,20347,20346 ,9722,9724,9723 ,0,0,0}, {20347,20306,20329 ,9724,9725,9725 ,0,0,0}, - {19817,20329,19798 ,9726,9727,9728 ,0,0,0}, {20348,20318,20349 ,9729,9730,9731 ,0,0,0}, - {20318,20342,20346 ,9730,9732,9733 ,0,0,0}, {20346,20347,20318 ,9733,9734,9730 ,0,0,0}, - {20348,20350,20318 ,9729,9735,9730 ,0,0,0}, {20318,20351,20342 ,9730,9736,9732 ,0,0,0}, - {20350,20351,20318 ,9735,9736,9730 ,0,0,0}, {20329,19856,20318 ,9727,9737,9730 ,0,0,0}, - {20347,20329,20318 ,9734,9727,9730 ,0,0,0}, {20329,19836,19856 ,9727,9738,9737 ,0,0,0}, - {19836,20329,19817 ,9738,9727,9726 ,0,0,0}, {20329,19776,19777 ,9727,9739,9740 ,0,0,0}, - {20329,20179,19776 ,9727,9727,9739 ,0,0,0}, {19777,19798,20329 ,9740,9728,9727 ,0,0,0}, - {20011,20031,20352 ,9741,9742,9743 ,0,0,0}, {20320,20353,20321 ,9744,9745,9746 ,0,0,0}, - {20354,20353,19972 ,9747,9745,9748 ,0,0,0}, {20355,20336,20356 ,9749,9750,9751 ,0,0,0}, - {20357,20355,20356 ,9752,9749,9751 ,0,0,0}, {20358,20359,20360 ,9753,9754,9755 ,0,0,0}, - {20359,20357,20360 ,9754,9752,9755 ,0,0,0}, {20353,19952,19972 ,9745,9756,9748 ,0,0,0}, - {20354,19972,19991 ,9747,9748,9757 ,0,0,0}, {20358,20322,20321 ,9753,9758,9746 ,0,0,0}, - {19914,19952,20320 ,9759,9756,9744 ,0,0,0}, {20011,20354,19991 ,9741,9747,9757 ,0,0,0}, - {20352,20361,20354 ,9743,9760,9747 ,0,0,0}, {20354,20011,20352 ,9747,9741,9743 ,0,0,0}, - {20361,20355,20357 ,9760,9749,9752 ,0,0,0}, {20359,20358,20321 ,9754,9753,9746 ,0,0,0}, - {20357,20359,20354 ,9752,9754,9747 ,0,0,0}, {20320,19952,20353 ,9744,9756,9745 ,0,0,0}, - {20357,20354,20361 ,9752,9747,9760 ,0,0,0}, {20356,20360,20357 ,9751,9755,9752 ,0,0,0}, - {20321,20353,20359 ,9746,9745,9754 ,0,0,0}, {20354,20359,20353 ,9747,9754,9745 ,0,0,0}, - {20362,20363,20364 ,9761,9762,9763 ,0,0,0}, {20338,20365,20366 ,9764,9765,9766 ,0,0,0}, - {20338,20339,20365 ,9764,9767,9765 ,0,0,0}, {20356,20334,20367 ,9768,9769,9770 ,0,0,0}, - {20368,20326,20369 ,9771,9772,9773 ,0,0,0}, {20356,20336,20334 ,9768,9774,9769 ,0,0,0}, - {20370,20371,20372 ,9775,9776,9777 ,0,0,0}, {20340,20373,20374 ,9778,9779,9780 ,0,0,0}, - {20331,20371,20375 ,126,9776,9781 ,0,0,0}, {20370,20376,20375 ,9775,9782,9781 ,0,0,0}, - {20328,20327,20377 ,9783,9784,9785 ,0,0,0}, {20327,20368,20377 ,9784,9771,9785 ,0,0,0}, - {20378,20379,20362 ,9786,9787,9761 ,0,0,0}, {20368,20369,20376 ,9771,9773,9782 ,0,0,0}, - {20380,20316,20328 ,9788,9789,9783 ,0,0,0}, {20337,20366,20367 ,9790,9766,9770 ,0,0,0}, - {20340,20374,20339 ,9778,9780,9767 ,0,0,0}, {20367,20364,20360 ,9770,9763,9791 ,0,0,0}, - {20360,20364,20358 ,9791,9763,9792 ,0,0,0}, {20358,20363,20322 ,9792,9762,9793 ,0,0,0}, - {20356,20367,20360 ,9768,9770,9791 ,0,0,0}, {20334,20337,20367 ,9769,9790,9770 ,0,0,0}, - {20363,20358,20364 ,9762,9792,9763 ,0,0,0}, {20363,20379,20323 ,9762,9787,9794 ,0,0,0}, - {20364,20366,20362 ,9763,9766,9761 ,0,0,0}, {20322,20363,20323 ,9793,9762,9794 ,0,0,0}, - {20367,20366,20364 ,9770,9766,9763 ,0,0,0}, {20337,20338,20366 ,9790,9764,9766 ,0,0,0}, - {20379,20363,20362 ,9787,9762,9761 ,0,0,0}, {20379,20381,20324 ,9787,9795,9796 ,0,0,0}, - {20362,20365,20378 ,9761,9765,9786 ,0,0,0}, {20323,20379,20324 ,9794,9787,9796 ,0,0,0}, - {20366,20365,20362 ,9766,9765,9761 ,0,0,0}, {20374,20365,20339 ,9780,9765,9767 ,0,0,0}, - {20381,20379,20378 ,9795,9787,9786 ,0,0,0}, {20381,20369,20325 ,9795,9773,9797 ,0,0,0}, - {20374,20382,20378 ,9780,9798,9786 ,0,0,0}, {20324,20381,20325 ,9796,9795,9797 ,0,0,0}, - {20374,20378,20365 ,9780,9786,9765 ,0,0,0}, {20341,20373,20340 ,9799,9779,9778 ,0,0,0}, - {20369,20381,20382 ,9773,9795,9798 ,0,0,0}, {20378,20382,20381 ,9786,9798,9795 ,0,0,0}, - {20373,20376,20382 ,9779,9782,9798 ,0,0,0}, {20325,20369,20326 ,9797,9773,9772 ,0,0,0}, - {20374,20373,20382 ,9780,9779,9798 ,0,0,0}, {20331,20375,20341 ,126,9781,9799 ,0,0,0}, - {20377,20368,20370 ,9785,9771,9775 ,0,0,0}, {20382,20376,20369 ,9798,9782,9773 ,0,0,0}, - {20376,20370,20368 ,9782,9775,9771 ,0,0,0}, {20326,20368,20327 ,9772,9771,9784 ,0,0,0}, - {20373,20341,20375 ,9779,9799,9781 ,0,0,0}, {20376,20373,20375 ,9782,9779,9781 ,0,0,0}, - {20377,20372,20380 ,9785,9777,9788 ,0,0,0}, {20371,20370,20375 ,9776,9775,9781 ,0,0,0}, - {20380,20328,20377 ,9788,9783,9785 ,0,0,0}, {20372,20377,20370 ,9777,9785,9775 ,0,0,0}, - {20371,20330,20383 ,9800,9801,9802 ,0,0,0}, {20319,20384,20317 ,9803,9804,9682 ,0,0,0}, - {20383,20330,20385 ,9802,9801,9805 ,0,0,0}, {20330,20332,20385 ,9801,126,9805 ,0,0,0}, - {20383,20386,20384 ,9802,9806,9804 ,0,0,0}, {20371,20331,20330 ,9800,126,9801 ,0,0,0}, - {20384,20386,20317 ,9804,9806,9682 ,0,0,0}, {20380,20384,20319 ,9807,9804,9803 ,0,0,0}, - {20316,20380,20319 ,9808,9807,9803 ,0,0,0}, {20380,20372,20384 ,9807,9809,9804 ,0,0,0}, - {20372,20371,20383 ,9809,9800,9802 ,0,0,0}, {20372,20383,20384 ,9809,9802,9804 ,0,0,0}, - {20386,20383,20385 ,9806,9802,9805 ,0,0,0}, {20351,20350,20343 ,9810,9811,9812 ,0,0,0}, - {20385,20332,20345 ,9813,126,9814 ,0,0,0}, {20345,20344,20387 ,9814,9815,9816 ,0,0,0}, - {20345,20387,20385 ,9814,9816,9813 ,0,0,0}, {20342,20351,20343 ,9817,9810,9812 ,0,0,0}, - {20348,20349,20388 ,9818,9819,9820 ,0,0,0}, {20388,20389,20348 ,9820,9821,9818 ,0,0,0}, - {20386,20387,20390 ,9822,9816,9823 ,0,0,0}, {20390,20387,20389 ,9823,9816,9821 ,0,0,0}, - {20349,20318,20315 ,9819,9824,9825 ,0,0,0}, {20386,20390,20317 ,9822,9823,9826 ,0,0,0}, - {20315,20390,20388 ,9825,9823,9820 ,0,0,0}, {20385,20387,20386 ,9813,9816,9822 ,0,0,0}, - {20315,20314,20390 ,9825,9827,9823 ,0,0,0}, {20390,20314,20317 ,9823,9827,9826 ,0,0,0}, - {20387,20344,20389 ,9816,9815,9821 ,0,0,0}, {20343,20389,20344 ,9812,9821,9815 ,0,0,0}, - {20315,20388,20349 ,9825,9820,9819 ,0,0,0}, {20390,20389,20388 ,9823,9821,9820 ,0,0,0}, - {20350,20389,20343 ,9811,9821,9812 ,0,0,0}, {20350,20348,20389 ,9811,9818,9821 ,0,0,0}, - {20391,20086,20392 ,9828,9829,9830 ,0,0,0}, {20105,19634,20303 ,9831,9832,9833 ,0,0,0}, - {20333,20393,20300 ,9834,9835,9836 ,0,0,0}, {20394,20355,20395 ,9837,9838,9839 ,0,0,0}, - {20355,20394,20335 ,9838,9837,9840 ,0,0,0}, {20335,20336,20355 ,9840,9841,9838 ,0,0,0}, - {20361,20395,20355 ,9842,9839,9838 ,0,0,0}, {20391,20069,20086 ,9828,9843,9829 ,0,0,0}, - {20335,20394,20333 ,9840,9837,9834 ,0,0,0}, {20393,20395,20396 ,9835,9839,9844 ,0,0,0}, - {20352,20031,20051 ,9845,9846,9847 ,0,0,0}, {20069,20391,20051 ,9843,9828,9847 ,0,0,0}, - {20396,20302,20301 ,9844,9848,9849 ,0,0,0}, {20392,20105,20303 ,9830,9831,9833 ,0,0,0}, - {20394,20395,20393 ,9837,9839,9835 ,0,0,0}, {20396,20301,20393 ,9844,9849,9835 ,0,0,0}, - {20300,20393,20301 ,9836,9835,9849 ,0,0,0}, {20333,20394,20393 ,9834,9837,9835 ,0,0,0}, - {20391,20361,20352 ,9828,9842,9845 ,0,0,0}, {20396,20391,20392 ,9844,9828,9830 ,0,0,0}, - {20396,20395,20391 ,9844,9839,9828 ,0,0,0}, {20302,20396,20392 ,9848,9844,9830 ,0,0,0}, - {20361,20391,20395 ,9842,9828,9839 ,0,0,0}, {20051,20391,20352 ,9847,9828,9845 ,0,0,0}, - {20105,20392,20086 ,9831,9830,9829 ,0,0,0}, {20392,20303,20302 ,9830,9833,9848 ,0,0,0}, - {19728,19592,19591 ,9850,9851,8275 ,0,0,0}, {20397,20398,19617 ,9852,9853,9854 ,0,0,0}, - {19664,20399,20400 ,9855,9856,9857 ,0,0,0}, {19622,19621,20401 ,9858,9859,9860 ,0,0,0}, - {19661,19696,20402 ,9861,9862,9863 ,0,0,0}, {19625,19626,20403 ,9864,9865,9866 ,0,0,0}, - {19625,20404,19621 ,9864,9867,9859 ,0,0,0}, {20405,19716,20406 ,9868,9869,9870 ,0,0,0}, - {19716,20405,19626 ,9869,9868,9865 ,0,0,0}, {20407,20406,19715 ,9871,9870,9872 ,0,0,0}, - {19716,19715,20406 ,9869,9872,9870 ,0,0,0}, {19605,4818,20407 ,126,126,9871 ,0,0,0}, - {20407,19715,19605 ,9871,9872,126 ,0,0,0}, {20403,20404,19625 ,9866,9867,9864 ,0,0,0}, - {19626,20405,20403 ,9865,9868,9866 ,0,0,0}, {20401,20402,19622 ,9860,9863,9858 ,0,0,0}, - {19621,20404,20401 ,9859,9867,9860 ,0,0,0}, {20397,19661,20402 ,9852,9861,9863 ,0,0,0}, - {19696,19622,20402 ,9862,9858,9863 ,0,0,0}, {20398,19615,19617 ,9853,9873,9854 ,0,0,0}, - {20397,19617,19661 ,9852,9854,9861 ,0,0,0}, {19664,19615,20399 ,9855,9873,9856 ,0,0,0}, - {20398,20399,19615 ,9853,9856,9873 ,0,0,0}, {19728,20400,20408 ,9850,9857,9874 ,0,0,0}, - {19664,20400,19728 ,9855,9857,9850 ,0,0,0}, {19592,19728,20408 ,9851,9850,9874 ,0,0,0}, - {20399,19571,19574 ,730,730,730 ,0,0,0}, {19587,20409,19585 ,730,730,730 ,0,0,0}, - {19587,19590,20410 ,730,730,730 ,0,0,0}, {19583,19585,20411 ,730,730,730 ,0,0,0}, - {19590,19577,20410 ,730,730,730 ,0,0,0}, {20409,19587,20410 ,730,730,730 ,0,0,0}, - {19577,19590,19592 ,730,730,730 ,0,0,0}, {19583,20412,19580 ,730,730,730 ,0,0,0}, - {20408,19577,19592 ,730,730,730 ,0,0,0}, {19559,19571,20397 ,730,730,730 ,0,0,0}, - {19594,19582,20413 ,730,730,730 ,0,0,0}, {20414,19595,19594 ,730,730,730 ,0,0,0}, - {8402,19559,20402 ,730,730,730 ,0,0,0}, {19561,20401,20404 ,730,730,730 ,0,0,0}, - {20415,19598,19595 ,730,730,730 ,0,0,0}, {19598,20416,19599 ,730,730,730 ,0,0,0}, - {19601,19599,20417 ,730,730,730 ,0,0,0}, {20404,19562,19561 ,730,730,730 ,0,0,0}, - {19562,20403,20405 ,730,730,730 ,0,0,0}, {19569,20407,4818 ,730,730,730 ,0,0,0}, - {4818,19604,19569 ,730,730,730 ,0,0,0}, {19601,20418,19604 ,730,730,730 ,0,0,0}, - {20406,19568,20405 ,730,730,730 ,0,0,0}, {19582,19580,20413 ,730,730,730 ,0,0,0}, - {19574,19576,20400 ,730,730,730 ,0,0,0}, {20402,20401,8402 ,730,730,730 ,0,0,0}, - {20409,20411,19585 ,730,730,730 ,0,0,0}, {20411,20412,19583 ,730,730,730 ,0,0,0}, - {20412,20413,19580 ,730,730,730 ,0,0,0}, {20413,20414,19594 ,730,730,730 ,0,0,0}, - {20414,20415,19595 ,730,730,730 ,0,0,0}, {20415,20416,19598 ,730,730,730 ,0,0,0}, - {20416,20417,19599 ,730,730,730 ,0,0,0}, {20417,20418,19601 ,730,730,730 ,0,0,0}, - {20418,19569,19604 ,730,730,730 ,0,0,0}, {19569,19565,20407 ,730,730,730 ,0,0,0}, - {19565,19568,20406 ,730,730,730 ,0,0,0}, {19565,20406,20407 ,730,730,730 ,0,0,0}, - {19568,19562,20405 ,730,730,730 ,0,0,0}, {20403,19562,20404 ,730,730,730 ,0,0,0}, - {19561,8402,20401 ,730,730,730 ,0,0,0}, {19559,20397,20402 ,730,730,730 ,0,0,0}, - {19571,20398,20397 ,730,730,730 ,0,0,0}, {20399,19574,20400 ,730,730,730 ,0,0,0}, - {20398,19571,20399 ,730,730,730 ,0,0,0}, {20400,19576,20408 ,730,730,730 ,0,0,0}, - {19577,20408,19576 ,730,730,730 ,0,0,0}, {19575,20419,20420 ,730,730,9875 ,0,0,0}, - {20421,20420,20422 ,730,9875,730 ,0,0,0}, {20421,20422,20423 ,730,730,9875 ,0,0,0}, - {20424,20420,20421 ,730,9875,730 ,0,0,0}, {20424,19578,20420 ,730,730,9875 ,0,0,0}, - {20423,20422,20425 ,9875,730,9876 ,0,0,0}, {19575,20420,19578 ,730,9875,730 ,0,0,0}, - {20419,19573,20426 ,730,730,9876 ,0,0,0}, {20419,19575,19573 ,730,730,730 ,0,0,0}, - {20426,19573,20427 ,9876,730,730 ,0,0,0}, {20427,19573,19572 ,730,730,9876 ,0,0,0}, - {20427,19572,19570 ,730,9876,730 ,0,0,0}, {20428,19570,19558 ,9877,730,9876 ,0,0,0}, - {19570,20428,20427 ,730,9877,730 ,0,0,0}, {19566,20428,19563 ,730,9877,730 ,0,0,0}, - {19558,19563,20428 ,9876,730,9877 ,0,0,0}, {19567,19560,19564 ,9876,730,9878 ,0,0,0}, - {19563,19560,19567 ,730,730,9876 ,0,0,0}, {19567,19566,19563 ,9876,730,730 ,0,0,0}, - {19569,20418,20428 ,9879,9880,9881 ,0,0,0}, {20420,20419,20415 ,9882,9883,9884 ,0,0,0}, - {20426,20427,20417 ,9885,9886,9887 ,0,0,0}, {20425,20413,20412 ,9888,9889,9890 ,0,0,0}, - {20414,20413,20422 ,9891,9889,9892 ,0,0,0}, {20421,20411,20409 ,9893,9894,9895 ,0,0,0}, - {20411,20421,20423 ,9894,9893,9896 ,0,0,0}, {20410,20424,20409 ,9897,9898,9895 ,0,0,0}, - {20421,20409,20424 ,9893,9895,9898 ,0,0,0}, {20410,19577,19578 ,9897,96,96 ,0,0,0}, - {19578,20424,20410 ,96,9898,9897 ,0,0,0}, {20425,20412,20423 ,9888,9890,9896 ,0,0,0}, - {20412,20411,20423 ,9890,9894,9896 ,0,0,0}, {20415,20414,20420 ,9884,9891,9882 ,0,0,0}, - {20414,20422,20420 ,9891,9892,9882 ,0,0,0}, {20422,20413,20425 ,9892,9889,9888 ,0,0,0}, - {20427,20428,20418 ,9886,9881,9880 ,0,0,0}, {20416,20415,20419 ,9899,9884,9883 ,0,0,0}, - {20418,20417,20427 ,9880,9887,9886 ,0,0,0}, {20416,20426,20417 ,9899,9885,9887 ,0,0,0}, - {20419,20426,20416 ,9883,9885,9899 ,0,0,0}, {20428,19566,19569 ,9881,761,9879 ,0,0,0}, - {19630,19546,19545 ,9900,82,9901 ,0,0,0}, {20429,20430,19712 ,9902,9903,9904 ,0,0,0}, - {19713,20431,19632 ,9905,9906,9907 ,0,0,0}, {20432,19651,20433 ,9908,9909,9910 ,0,0,0}, - {19708,19653,20434 ,9911,9912,9913 ,0,0,0}, {20435,19650,19710 ,9914,9915,9916 ,0,0,0}, - {19650,20435,20433 ,9915,9914,9910 ,0,0,0}, {19642,20436,19710 ,9917,9918,9916 ,0,0,0}, - {20435,19710,20436 ,9914,9916,9918 ,0,0,0}, {19642,19557,19556 ,9917,2619,3135 ,0,0,0}, - {19556,20436,19642 ,3135,9918,9917 ,0,0,0}, {19651,20432,19653 ,9909,9908,9912 ,0,0,0}, - {19651,19650,20433 ,9909,9915,9910 ,0,0,0}, {20429,19708,20434 ,9902,9911,9913 ,0,0,0}, - {20434,19653,20432 ,9913,9912,9908 ,0,0,0}, {20430,19713,19712 ,9903,9905,9904 ,0,0,0}, - {20429,19712,19708 ,9902,9904,9911 ,0,0,0}, {20431,20437,19632 ,9906,9919,9907 ,0,0,0}, - {20430,20431,19713 ,9903,9906,9905 ,0,0,0}, {19546,19630,20437 ,82,9900,9919 ,0,0,0}, - {19632,20437,19630 ,9907,9919,9900 ,0,0,0}, {19553,20429,19554 ,730,730,730 ,0,0,0}, - {19550,20431,19551 ,730,730,730 ,0,0,0}, {19556,20434,20432 ,730,730,730 ,0,0,0}, - {20436,20432,20433 ,730,730,730 ,0,0,0}, {20435,20436,20433 ,730,730,730 ,0,0,0}, - {19554,20434,19556 ,730,730,730 ,0,0,0}, {19556,20432,20436 ,730,730,730 ,0,0,0}, - {19554,20429,20434 ,730,730,730 ,0,0,0}, {19553,20430,20429 ,730,730,730 ,0,0,0}, - {19553,19551,20431 ,730,730,730 ,0,0,0}, {20431,20430,19553 ,730,730,730 ,0,0,0}, - {20437,20431,19550 ,730,730,730 ,0,0,0}, {20437,19547,19546 ,730,730,730 ,0,0,0}, - {19547,20437,19550 ,730,730,730 ,0,0,0}, {19546,19547,19539 ,730,730,730 ,0,0,0}, - {19542,19536,19540 ,730,730,730 ,0,0,0}, {19539,19536,19542 ,730,730,730 ,0,0,0}, - {19542,19546,19539 ,730,730,730 ,0,0,0}, {19723,19524,19525 ,9920,9921,9922 ,0,0,0}, - {20438,20439,19669 ,9902,9903,9923 ,0,0,0}, {19670,20440,19722 ,9924,9906,9925 ,0,0,0}, - {20441,19667,19666 ,9908,9926,9927 ,0,0,0}, {19683,19667,20442 ,9928,9926,8336 ,0,0,0}, - {20443,19727,19619 ,9914,9929,9930 ,0,0,0}, {19666,19727,20444 ,9927,9929,9910 ,0,0,0}, - {19618,20445,19619 ,9931,9918,9930 ,0,0,0}, {20443,19619,20445 ,9914,9930,9918 ,0,0,0}, - {19618,19535,19534 ,9931,96,9932 ,0,0,0}, {19534,20445,19618 ,9932,9918,9931 ,0,0,0}, - {20441,19666,20444 ,9908,9927,9910 ,0,0,0}, {20444,19727,20443 ,9910,9929,9914 ,0,0,0}, - {19683,20442,20438 ,9928,8336,9902 ,0,0,0}, {20442,19667,20441 ,8336,9926,9908 ,0,0,0}, - {20439,19670,19669 ,9903,9924,9923 ,0,0,0}, {20438,19669,19683 ,9902,9923,9928 ,0,0,0}, - {20440,20446,19722 ,9906,9919,9925 ,0,0,0}, {20439,20440,19670 ,9903,9906,9924 ,0,0,0}, - {19524,19723,20446 ,9921,9920,9919 ,0,0,0}, {19722,20446,19723 ,9925,9919,9920 ,0,0,0}, - {19529,20438,19531 ,730,730,730 ,0,0,0}, {19526,20440,19528 ,730,730,730 ,0,0,0}, - {19534,20442,20441 ,730,730,730 ,0,0,0}, {20445,20441,20444 ,730,730,730 ,0,0,0}, - {20443,20445,20444 ,730,730,730 ,0,0,0}, {19531,20442,19534 ,730,730,730 ,0,0,0}, - {19534,20441,20445 ,730,730,730 ,0,0,0}, {19531,20438,20442 ,730,730,730 ,0,0,0}, - {19529,20439,20438 ,730,730,730 ,0,0,0}, {19529,19528,20440 ,730,730,730 ,0,0,0}, - {20440,20439,19529 ,730,730,730 ,0,0,0}, {20446,20440,19526 ,730,730,730 ,0,0,0}, - {20446,19514,19524 ,730,730,730 ,0,0,0}, {19514,20446,19526 ,730,730,730 ,0,0,0}, - {19524,19514,19517 ,730,730,730 ,0,0,0}, {19520,19518,19521 ,730,730,730 ,0,0,0}, - {19517,19518,19520 ,730,730,730 ,0,0,0}, {19520,19524,19517 ,730,730,730 ,0,0,0} -// X-Ufo 8ZollPropeller.prt - , {20447,20448,20449 ,9933,9934,9935 ,0,0,0}, {20447,20450,20451 ,9933,9936,9937 ,0,0,0}, - {20451,20448,20447 ,9937,9934,9933 ,0,0,0}, {20452,20450,20453 ,9938,9936,9939 ,0,0,0}, - {20450,20452,20451 ,9936,9938,9937 ,0,0,0}, {20454,20455,20456 ,9940,9941,9942 ,0,0,0}, - {20452,20453,20455 ,9938,9939,9941 ,0,0,0}, {20457,20458,20454 ,9943,2394,9940 ,0,0,0}, - {20457,20459,20458 ,9943,9944,2394 ,0,0,0}, {20457,20454,20456 ,9943,9940,9942 ,0,0,0}, - {20455,20453,20456 ,9941,9939,9942 ,0,0,0}, {20460,20449,20448 ,9945,9935,9934 ,0,0,0}, - {20461,20460,20462 ,9946,9945,9947 ,0,0,0}, {20460,20461,20449 ,9945,9946,9935 ,0,0,0}, - {20463,20464,20462 ,9948,9949,9947 ,0,0,0}, {20461,20462,20464 ,9946,9947,9949 ,0,0,0}, - {20463,20465,20466 ,9948,9950,9951 ,0,0,0}, {20466,20464,20463 ,9951,9949,9948 ,0,0,0}, - {20467,20465,20468 ,9952,9950,9953 ,0,0,0}, {20465,20467,20466 ,9950,9952,9951 ,0,0,0}, - {20467,20468,20469 ,9952,9953,9954 ,0,0,0}, {20470,20471,20472 ,9938,9955,9956 ,0,0,0}, - {20470,20473,20471 ,9938,9937,9955 ,0,0,0}, {20470,20472,20474 ,9938,9956,9941 ,0,0,0}, - {20474,20475,20476 ,9941,9957,9940 ,0,0,0}, {20475,20474,20472 ,9957,9941,9956 ,0,0,0}, - {20477,20476,20475 ,9958,9940,9957 ,0,0,0}, {20478,20471,20473 ,9959,9955,9937 ,0,0,0}, - {20477,20479,20480 ,9958,9960,9961 ,0,0,0}, {20480,20476,20477 ,9961,9940,9958 ,0,0,0}, - {20478,20473,20481 ,9959,9937,9962 ,0,0,0}, {20481,20482,20478 ,9962,9963,9959 ,0,0,0}, - {20483,20482,20484 ,9964,9963,9945 ,0,0,0}, {20481,20484,20482 ,9962,9945,9963 ,0,0,0}, - {20485,20486,20483 ,9947,9965,9964 ,0,0,0}, {20483,20484,20485 ,9964,9945,9947 ,0,0,0}, - {20487,20488,20486 ,9948,9950,9965 ,0,0,0}, {20487,20486,20485 ,9948,9965,9947 ,0,0,0}, - {20489,20488,20490 ,9966,9950,9967 ,0,0,0}, {20488,20489,20486 ,9950,9966,9965 ,0,0,0}, - {20489,20490,20491 ,9966,9967,9968 ,0,0,0}, {20492,20493,8447 ,9969,9970,9971 ,0,0,0}, - {20494,20495,20496 ,9972,9973,9974 ,0,0,0}, {20497,20492,8447 ,9975,9969,9971 ,0,0,0}, - {20494,20496,20498 ,9972,9974,9976 ,0,0,0}, {20495,20494,20497 ,9973,9972,9975 ,0,0,0}, - {20495,20497,8447 ,9973,9975,9971 ,0,0,0}, {20499,20500,20501 ,9977,9978,9979 ,0,0,0}, - {20501,20498,20502 ,9979,9976,9980 ,0,0,0}, {20499,20501,20502 ,9977,9979,9980 ,0,0,0}, - {20500,20499,20503 ,9978,9977,9981 ,0,0,0}, {20502,20498,20496 ,9980,9976,9974 ,0,0,0}, - {20492,20504,20493 ,9969,9945,9970 ,0,0,0}, {20505,20504,20506 ,9982,9945,9983 ,0,0,0}, - {20504,20505,20493 ,9945,9982,9970 ,0,0,0}, {20507,20508,20506 ,9984,9985,9983 ,0,0,0}, - {20505,20506,20508 ,9982,9983,9985 ,0,0,0}, {20507,20509,20510 ,9984,9986,9987 ,0,0,0}, - {20510,20508,20507 ,9987,9985,9984 ,0,0,0}, {20511,20509,20512 ,9988,9986,21 ,0,0,0}, - {20509,20511,20510 ,9986,9988,9987 ,0,0,0}, {20513,20514,20515 ,9989,9990,9991 ,0,0,0}, - {20515,20514,20516 ,9991,9990,9992 ,0,0,0}, {20517,20514,20513 ,9993,9990,9989 ,0,0,0}, - {20518,20515,20516 ,9994,9991,9992 ,0,0,0}, {20517,20513,20519 ,9993,9989,9995 ,0,0,0}, - {20519,20520,20521 ,9995,9996,9997 ,0,0,0}, {20520,20519,20513 ,9996,9995,9989 ,0,0,0}, - {20518,20516,20522 ,9994,9992,9998 ,0,0,0}, {20523,20524,20521 ,9999,10000,9997 ,0,0,0}, - {20521,20520,20523 ,9997,9996,9999 ,0,0,0}, {20524,20525,20526 ,10000,9961,10001 ,0,0,0}, - {20527,20524,20523 ,10002,10000,9999 ,0,0,0}, {20527,20525,20524 ,10002,9961,10000 ,0,0,0}, - {20516,20528,20522 ,9992,10003,9998 ,0,0,0}, {20528,20529,20530 ,10003,10004,10005 ,0,0,0}, - {20530,20522,20528 ,10005,9998,10003 ,0,0,0}, {20531,20529,20532 ,10006,10004,10007 ,0,0,0}, - {20529,20531,20530 ,10004,10006,10005 ,0,0,0}, {20533,20534,20532 ,10008,10009,10007 ,0,0,0}, - {20531,20532,20534 ,10006,10007,10009 ,0,0,0}, {20533,20535,20536 ,10008,10010,10011 ,0,0,0}, - {20536,20534,20533 ,10011,10009,10008 ,0,0,0}, {20537,20535,20538 ,10012,10010,10013 ,0,0,0}, - {20535,20537,20536 ,10010,10012,10011 ,0,0,0}, {20537,20538,20539 ,10012,10013,10014 ,0,0,0}, - {20539,20538,20540 ,10014,10013,10015 ,0,0,0}, {20541,20542,20543 ,10016,10017,10018 ,0,0,0}, - {20544,20545,20546 ,10019,10020,10021 ,0,0,0}, {20547,20548,20549 ,10022,10023,10024 ,0,0,0}, - {20550,20551,20552 ,10025,10026,10027 ,0,0,0}, {20553,20554,20555 ,10028,10029,10030 ,0,0,0}, - {20555,20469,20553 ,10030,10031,10028 ,0,0,0}, {20556,20557,20558 ,10032,10033,10034 ,0,0,0}, - {20534,20559,20531 ,10035,10036,10037 ,0,0,0}, {20560,20558,20561 ,10038,10034,10039 ,0,0,0}, - {20562,20563,20564 ,10040,10041,10042 ,0,0,0}, {20565,20566,20567 ,10043,10044,10045 ,0,0,0}, - {20568,20569,20570 ,10046,10047,10048 ,0,0,0}, {20571,20559,20564 ,10049,10036,10042 ,0,0,0}, - {20572,20483,20486 ,10050,10051,10052 ,0,0,0}, {20573,20574,20570 ,10053,10054,10048 ,0,0,0}, - {20575,20576,20577 ,10055,10056,10057 ,0,0,0}, {20578,20579,20575 ,10058,10059,10055 ,0,0,0}, - {20580,20581,20578 ,10060,10061,10058 ,0,0,0}, {20582,20578,20581 ,10062,10058,10061 ,0,0,0}, - {20583,20581,20580 ,10063,10061,10060 ,0,0,0}, {20584,20585,20586 ,10064,10065,10066 ,0,0,0}, - {20587,20572,20576 ,10067,10050,10056 ,0,0,0}, {20588,20589,20584 ,10068,10069,10064 ,0,0,0}, - {20537,20539,20564 ,10070,10071,10042 ,0,0,0}, {20566,20590,20567 ,10044,10072,10045 ,0,0,0}, - {20557,20591,20558 ,10033,10073,10034 ,0,0,0}, {20592,20593,20594 ,10074,10075,10076 ,0,0,0}, - {20515,20595,20513 ,10077,10078,10079 ,0,0,0}, {20552,20591,20596 ,10027,10073,10080 ,0,0,0}, - {20597,20466,20598 ,10081,10082,10083 ,0,0,0}, {20599,20600,20550 ,10084,10085,10025 ,0,0,0}, - {20545,20601,20602 ,10020,10086,10087 ,0,0,0}, {20603,20604,20605 ,10088,10089,10090 ,0,0,0}, - {20544,20546,20606 ,10019,10021,10091 ,0,0,0}, {20542,20541,20607 ,10017,10016,10092 ,0,0,0}, - {20608,20546,20603 ,10093,10021,10088 ,0,0,0}, {20609,20610,20611 ,10094,10095,10096 ,0,0,0}, - {20610,20607,20541 ,10095,10092,10016 ,0,0,0}, {20449,20612,20447 ,10097,10098,10099 ,0,0,0}, - {20613,20543,20614 ,10100,10018,10101 ,0,0,0}, {20544,20615,20616 ,10019,10102,10103 ,0,0,0}, - {20600,20525,20617 ,10085,10104,10105 ,0,0,0}, {20603,20546,20545 ,10088,10021,10020 ,0,0,0}, - {20603,20602,20618 ,10088,10087,10106 ,0,0,0}, {20545,20602,20603 ,10020,10087,10088 ,0,0,0}, - {20619,20620,20548 ,10107,10108,10023 ,0,0,0}, {20608,20547,20621 ,10093,10022,10109 ,0,0,0}, - {20543,20457,20456 ,10018,10110,10111 ,0,0,0}, {20622,20620,20619 ,10112,10108,10107 ,0,0,0}, - {20542,20622,20619 ,10017,10112,10107 ,0,0,0}, {20610,20541,20611 ,10095,10016,10096 ,0,0,0}, - {20607,20622,20542 ,10092,10112,10017 ,0,0,0}, {20614,20543,20456 ,10101,10018,10111 ,0,0,0}, - {20543,20613,20623 ,10018,10100,10113 ,0,0,0}, {20612,20614,20447 ,10098,10101,10099 ,0,0,0}, - {20614,20612,20613 ,10101,10098,10100 ,0,0,0}, {20461,20597,20449 ,10114,10081,10097 ,0,0,0}, - {20466,20597,20464 ,10082,10081,10115 ,0,0,0}, {20597,20612,20449 ,10081,10098,10097 ,0,0,0}, - {20598,20624,20597 ,10083,10116,10081 ,0,0,0}, {20467,20598,20466 ,10117,10083,10082 ,0,0,0}, - {20598,20469,20555 ,10083,10031,10030 ,0,0,0}, {20518,20625,20595 ,10118,10119,10078 ,0,0,0}, - {20626,20561,20558 ,10120,10039,10034 ,0,0,0}, {20566,20627,20628 ,10044,10121,10122 ,0,0,0}, - {20477,20627,20479 ,10123,10121,10124 ,0,0,0}, {20626,20629,20630 ,10120,10125,10126 ,0,0,0}, - {20560,20556,20558 ,10038,10032,10034 ,0,0,0}, {20515,20518,20595 ,10077,10118,10078 ,0,0,0}, - {20557,20631,20591 ,10033,10127,10073 ,0,0,0}, {20558,20591,20632 ,10034,10073,10128 ,0,0,0}, - {20591,20552,20551 ,10073,10027,10026 ,0,0,0}, {20600,20551,20550 ,10085,10026,10025 ,0,0,0}, - {20591,20551,20633 ,10073,10026,10129 ,0,0,0}, {20634,20617,20592 ,10130,10105,10074 ,0,0,0}, - {20600,20635,20551 ,10085,10131,10026 ,0,0,0}, {20545,20616,20555 ,10020,10103,10030 ,0,0,0}, - {20615,20635,20634 ,10102,10131,10130 ,0,0,0}, {20594,20598,20555 ,10076,10083,10030 ,0,0,0}, - {20555,20554,20545 ,10030,10029,10020 ,0,0,0}, {20594,20636,20598 ,10076,10132,10083 ,0,0,0}, - {20637,20594,20593 ,10133,10076,10075 ,0,0,0}, {20595,20638,20593 ,10078,10134,10075 ,0,0,0}, - {20595,20625,20639 ,10078,10119,10135 ,0,0,0}, {20518,20522,20625 ,10118,10136,10119 ,0,0,0}, - {20522,20530,20625 ,10136,10137,10119 ,0,0,0}, {20625,20559,20640 ,10119,10036,10138 ,0,0,0}, - {20534,20564,20559 ,10035,10042,10036 ,0,0,0}, {20536,20564,20534 ,10139,10042,10035 ,0,0,0}, - {20564,20536,20537 ,10042,10139,10070 ,0,0,0}, {20625,20531,20559 ,10119,10037,10036 ,0,0,0}, - {20539,20562,20564 ,10071,10040,10042 ,0,0,0}, {20641,20627,20642 ,10140,10121,10141 ,0,0,0}, - {20589,20588,20643 ,10069,10068,10142 ,0,0,0}, {20644,20575,20584 ,10143,10055,10064 ,0,0,0}, - {20584,20575,20645 ,10064,10055,10144 ,0,0,0}, {20645,20585,20584 ,10144,10065,10064 ,0,0,0}, - {20584,20589,20644 ,10064,10069,10143 ,0,0,0}, {20646,20571,20563 ,10145,10049,10041 ,0,0,0}, - {20590,20589,20643 ,10072,10069,10142 ,0,0,0}, {20590,20643,20647 ,10072,10142,10146 ,0,0,0}, - {20567,20590,20648 ,10045,10072,10147 ,0,0,0}, {20565,20479,20566 ,10043,10124,10044 ,0,0,0}, - {20649,20626,20628 ,10148,10120,10122 ,0,0,0}, {20627,20566,20479 ,10121,10044,10124 ,0,0,0}, - {20562,20539,20650 ,10040,10071,10149 ,0,0,0}, {20561,20562,20651 ,10039,10040,10150 ,0,0,0}, - {20641,20563,20649 ,10140,10041,10148 ,0,0,0}, {20641,20652,20646 ,10140,10151,10145 ,0,0,0}, - {20653,20482,20483 ,10152,10153,10051 ,0,0,0}, {20653,20478,20482 ,10152,10154,10153 ,0,0,0}, - {20654,20653,20574 ,10155,10152,10054 ,0,0,0}, {20652,20642,20654 ,10151,10141,10155 ,0,0,0}, - {20483,20572,20653 ,10051,10050,10152 ,0,0,0}, {20491,20577,20576 ,10156,10057,10056 ,0,0,0}, - {20619,20655,20542 ,10107,10157,10017 ,0,0,0}, {20549,20548,20620 ,10024,10023,10108 ,0,0,0}, - {20608,20656,20548 ,10093,10158,10023 ,0,0,0}, {20459,20457,20655 ,10159,10110,10157 ,0,0,0}, - {20656,20655,20619 ,10158,10157,10107 ,0,0,0}, {20655,20457,20543 ,10157,10110,10018 ,0,0,0}, - {20542,20655,20543 ,10017,10157,10018 ,0,0,0}, {20623,20611,20541 ,10113,10096,10016 ,0,0,0}, - {20547,20608,20548 ,10022,10093,10023 ,0,0,0}, {20621,20606,20546 ,10109,10091,10021 ,0,0,0}, - {20655,20657,20658 ,10157,10160,10161 ,0,0,0}, {20548,20656,20619 ,10023,10158,10107 ,0,0,0}, - {20605,20656,20603 ,10090,10158,10088 ,0,0,0}, {20459,20655,20658 ,10159,10157,10161 ,0,0,0}, - {20456,20453,20614 ,10111,10162,10101 ,0,0,0}, {20623,20541,20543 ,10113,10016,10018 ,0,0,0}, - {20621,20546,20608 ,10109,10021,10093 ,0,0,0}, {20606,20659,20544 ,10091,10163,10019 ,0,0,0}, - {20604,20603,20618 ,10089,10088,10106 ,0,0,0}, {20608,20603,20656 ,10093,10088,10158 ,0,0,0}, - {20657,20656,20605 ,10160,10158,10090 ,0,0,0}, {20656,20657,20655 ,10158,10160,10157 ,0,0,0}, - {20453,20450,20614 ,10162,10164,10101 ,0,0,0}, {20614,20450,20447 ,10101,10164,10099 ,0,0,0}, - {20660,20615,20659 ,10165,10102,10163 ,0,0,0}, {20660,20661,20635 ,10165,10166,10131 ,0,0,0}, - {20601,20545,20662 ,10086,10020,10167 ,0,0,0}, {20554,20662,20545 ,10029,10167,10020 ,0,0,0}, - {20612,20597,20624 ,10098,10081,10116 ,0,0,0}, {20461,20464,20597 ,10114,10115,10081 ,0,0,0}, - {20615,20544,20659 ,10102,10019,10163 ,0,0,0}, {20663,20525,20600 ,10168,10104,10085 ,0,0,0}, - {20555,20616,20592 ,10030,10103,10074 ,0,0,0}, {20544,20616,20545 ,10019,10103,10020 ,0,0,0}, - {20592,20616,20634 ,10074,10103,10130 ,0,0,0}, {20469,20598,20467 ,10031,10083,10117 ,0,0,0}, - {20555,20592,20594 ,10030,10074,10076 ,0,0,0}, {20598,20636,20624 ,10083,10132,10116 ,0,0,0}, - {20660,20635,20615 ,10165,10131,10102 ,0,0,0}, {20664,20635,20661 ,10169,10131,10166 ,0,0,0}, - {20525,20527,20617 ,10104,10170,10105 ,0,0,0}, {20615,20634,20616 ,10102,10130,10103 ,0,0,0}, - {20600,20617,20634 ,10085,10105,10130 ,0,0,0}, {20513,20595,20520 ,10079,10078,10171 ,0,0,0}, - {20593,20592,20617 ,10075,10074,10105 ,0,0,0}, {20636,20594,20637 ,10132,10076,10133 ,0,0,0}, - {20635,20664,20551 ,10131,10169,10026 ,0,0,0}, {20633,20551,20664 ,10129,10026,10169 ,0,0,0}, - {20663,20600,20599 ,10168,10085,10084 ,0,0,0}, {20635,20600,20634 ,10131,10085,10130 ,0,0,0}, - {20527,20523,20617 ,10170,10172,10105 ,0,0,0}, {20617,20523,20520 ,10105,10172,10171 ,0,0,0}, - {20520,20593,20617 ,10171,10075,10105 ,0,0,0}, {20637,20593,20638 ,10133,10075,10134 ,0,0,0}, - {20591,20633,20632 ,10073,10129,10128 ,0,0,0}, {20631,20596,20591 ,10127,10080,10073 ,0,0,0}, - {20638,20595,20639 ,10134,10078,10135 ,0,0,0}, {20520,20595,20593 ,10171,10078,10075 ,0,0,0}, - {20632,20629,20558 ,10128,10125,10034 ,0,0,0}, {20558,20629,20626 ,10034,10125,10120 ,0,0,0}, - {20531,20625,20530 ,10037,10119,10137 ,0,0,0}, {20625,20640,20639 ,10119,10138,10135 ,0,0,0}, - {20626,20562,20561 ,10120,10040,10039 ,0,0,0}, {20630,20665,20628 ,10126,10173,10122 ,0,0,0}, - {20475,20627,20477 ,10174,10121,10123 ,0,0,0}, {20651,20562,20650 ,10150,10040,10149 ,0,0,0}, - {20649,20562,20626 ,10148,10040,10120 ,0,0,0}, {20666,20559,20571 ,10175,10036,10049 ,0,0,0}, - {20564,20563,20571 ,10042,10041,10049 ,0,0,0}, {20640,20559,20666 ,10138,10036,10175 ,0,0,0}, - {20630,20628,20626 ,10126,10122,10120 ,0,0,0}, {20665,20667,20566 ,10173,10176,10044 ,0,0,0}, - {20471,20642,20472 ,10177,10141,10178 ,0,0,0}, {20562,20649,20563 ,10040,10148,10041 ,0,0,0}, - {20649,20628,20627 ,10148,10122,10121 ,0,0,0}, {20571,20668,20669 ,10049,10179,10180 ,0,0,0}, - {20563,20641,20646 ,10041,10140,10145 ,0,0,0}, {20666,20571,20669 ,10175,10049,10180 ,0,0,0}, - {20665,20566,20628 ,10173,10044,10122 ,0,0,0}, {20667,20590,20566 ,10176,10072,10044 ,0,0,0}, - {20642,20475,20472 ,10141,10174,10178 ,0,0,0}, {20649,20627,20641 ,10148,10121,10140 ,0,0,0}, - {20627,20475,20642 ,10121,10174,10141 ,0,0,0}, {20646,20670,20668 ,10145,10181,10179 ,0,0,0}, - {20641,20642,20652 ,10140,10141,10151 ,0,0,0}, {20668,20571,20646 ,10179,10049,10145 ,0,0,0}, - {20589,20590,20667 ,10069,10072,10176 ,0,0,0}, {20647,20648,20590 ,10146,10147,10072 ,0,0,0}, - {20653,20471,20478 ,10152,10177,10154 ,0,0,0}, {20652,20671,20670 ,10151,10182,10181 ,0,0,0}, - {20642,20653,20654 ,10141,10152,10155 ,0,0,0}, {20670,20646,20652 ,10181,10145,10151 ,0,0,0}, - {20584,20586,20588 ,10064,10066,10068 ,0,0,0}, {20644,20672,20575 ,10143,10183,10055 ,0,0,0}, - {20486,20489,20576 ,10052,10184,10056 ,0,0,0}, {20486,20576,20572 ,10052,10056,10050 ,0,0,0}, - {20654,20573,20671 ,10155,10053,10182 ,0,0,0}, {20653,20642,20471 ,10152,10141,10177 ,0,0,0}, - {20653,20572,20574 ,10152,10050,10054 ,0,0,0}, {20671,20652,20654 ,10182,10151,10155 ,0,0,0}, - {20575,20577,20645 ,10055,10057,10144 ,0,0,0}, {20672,20580,20578 ,10183,10060,10058 ,0,0,0}, - {20673,20569,20568 ,10185,10047,10046 ,0,0,0}, {20491,20576,20489 ,10156,10056,10184 ,0,0,0}, - {20576,20579,20587 ,10056,10059,10067 ,0,0,0}, {20568,20574,20572 ,10046,10054,10050 ,0,0,0}, - {20587,20568,20572 ,10067,10046,10050 ,0,0,0}, {20573,20654,20574 ,10053,10155,10054 ,0,0,0}, - {20672,20578,20575 ,10183,10058,10055 ,0,0,0}, {20575,20579,20576 ,10055,10059,10056 ,0,0,0}, - {20582,20674,20579 ,10062,10186,10059 ,0,0,0}, {20578,20582,20579 ,10058,10062,10059 ,0,0,0}, - {20674,20673,20587 ,10186,10185,10067 ,0,0,0}, {20579,20674,20587 ,10059,10186,10067 ,0,0,0}, - {20673,20568,20587 ,10185,10046,10067 ,0,0,0}, {20570,20574,20568 ,10048,10054,10046 ,0,0,0}, - {20675,20676,20677 ,10187,10188,10189 ,0,0,0}, {20678,20679,20676 ,10190,10191,10188 ,0,0,0}, - {20680,20681,20682 ,10192,10193,10194 ,0,0,0}, {20683,20684,20685 ,10195,10196,10197 ,0,0,0}, - {20686,20687,20688 ,10198,10199,10200 ,0,0,0}, {20689,20690,20691 ,10201,10202,10203 ,0,0,0}, - {20692,20693,20694 ,10204,10205,10206 ,0,0,0}, {20695,20696,20697 ,10207,10208,10209 ,0,0,0}, - {20698,20699,20700 ,10210,10211,10212 ,0,0,0}, {20701,20702,20703 ,10213,10214,10215 ,0,0,0}, - {20704,20705,20698 ,10216,10217,10210 ,0,0,0}, {20698,20700,20704 ,10210,10212,10216 ,0,0,0}, - {20705,20706,20707 ,10217,10218,10219 ,0,0,0}, {20706,20705,20704 ,10218,10217,10216 ,0,0,0}, - {20708,20707,20709 ,10220,10219,10221 ,0,0,0}, {20706,20709,20707 ,10218,10221,10219 ,0,0,0}, - {20710,20711,20708 ,10222,10223,10220 ,0,0,0}, {20708,20709,20710 ,10220,10221,10222 ,0,0,0}, - {20712,20711,20710 ,10224,10223,10222 ,0,0,0}, {20699,20703,20700 ,10211,10215,10212 ,0,0,0}, - {20701,20693,20702 ,10213,10205,10214 ,0,0,0}, {20699,20701,20703 ,10211,10213,10215 ,0,0,0}, - {20692,20694,20695 ,10204,10206,10207 ,0,0,0}, {20702,20693,20692 ,10214,10205,10204 ,0,0,0}, - {20697,20696,20688 ,10209,10208,10200 ,0,0,0}, {20695,20694,20696 ,10207,10206,10208 ,0,0,0}, - {20690,20687,20686 ,10202,10199,10198 ,0,0,0}, {20687,20697,20688 ,10199,10209,10200 ,0,0,0}, - {20713,20689,20691 ,10225,10201,10203 ,0,0,0}, {20691,20690,20686 ,10203,10202,10198 ,0,0,0}, - {20680,20713,20681 ,10192,10225,10193 ,0,0,0}, {20713,20680,20689 ,10225,10192,10201 ,0,0,0}, - {20682,20683,20685 ,10194,10195,10197 ,0,0,0}, {20681,20683,20682 ,10193,10195,10194 ,0,0,0}, - {20678,20684,20679 ,10190,10196,10191 ,0,0,0}, {20685,20684,20678 ,10197,10196,10190 ,0,0,0}, - {20677,20714,20675 ,10189,10226,10187 ,0,0,0}, {20676,20679,20677 ,10188,10191,10189 ,0,0,0}, - {20715,20716,20676 ,10227,10228,10229 ,0,0,0}, {20717,20678,20716 ,10230,10231,10228 ,0,0,0}, - {20689,20680,20718 ,10232,10233,10234 ,0,0,0}, {20682,20685,20719 ,10235,10236,10237 ,0,0,0}, - {20687,20720,20697 ,10238,10239,10240 ,0,0,0}, {20721,20722,20690 ,10241,10242,10243 ,0,0,0}, - {20723,20702,20692 ,10244,10245,10246 ,0,0,0}, {20724,20695,20725 ,10247,10248,10249 ,0,0,0}, - {20704,20700,20726 ,10250,10251,10252 ,0,0,0}, {20703,20727,20728 ,10253,10254,10255 ,0,0,0}, - {20729,20706,20704 ,10256,10257,10250 ,0,0,0}, {20704,20726,20729 ,10250,10252,10256 ,0,0,0}, - {20706,20730,20709 ,10257,10258,10259 ,0,0,0}, {20730,20706,20729 ,10258,10257,10256 ,0,0,0}, - {20710,20709,20731 ,10260,10259,10261 ,0,0,0}, {20730,20731,20709 ,10258,10261,10259 ,0,0,0}, - {20732,20712,20710 ,10262,10224,10260 ,0,0,0}, {20710,20731,20732 ,10260,10261,10262 ,0,0,0}, - {20733,20712,20732 ,10263,10224,10262 ,0,0,0}, {20700,20728,20726 ,10251,10255,10252 ,0,0,0}, - {20703,20702,20727 ,10253,10245,10254 ,0,0,0}, {20700,20703,20728 ,10251,10253,10255 ,0,0,0}, - {20723,20692,20724 ,10244,10246,10247 ,0,0,0}, {20727,20702,20723 ,10254,10245,10244 ,0,0,0}, - {20725,20695,20697 ,10249,10248,10240 ,0,0,0}, {20724,20692,20695 ,10247,10246,10248 ,0,0,0}, - {20722,20720,20687 ,10242,10239,10238 ,0,0,0}, {20720,20725,20697 ,10239,10249,10240 ,0,0,0}, - {20689,20721,20690 ,10232,10241,10243 ,0,0,0}, {20690,20722,20687 ,10243,10242,10238 ,0,0,0}, - {20680,20734,20718 ,10233,10264,10234 ,0,0,0}, {20689,20718,20721 ,10232,10234,10241 ,0,0,0}, - {20719,20734,20682 ,10237,10264,10235 ,0,0,0}, {20680,20682,20734 ,10233,10235,10264 ,0,0,0}, - {20717,20685,20678 ,10230,10236,10231 ,0,0,0}, {20719,20685,20717 ,10237,10236,10230 ,0,0,0}, - {20676,20675,20715 ,10229,10187,10227 ,0,0,0}, {20716,20678,20676 ,10228,10231,10229 ,0,0,0}, - {20735,20736,20716 ,10265,10266,10267 ,0,0,0}, {20719,20717,20737 ,10237,10230,10268 ,0,0,0}, - {20721,20718,20738 ,10269,10270,10271 ,0,0,0}, {20734,20739,20740 ,10264,10272,10273 ,0,0,0}, - {20720,20741,20725 ,10274,10275,10276 ,0,0,0}, {20742,20743,20722 ,10277,10278,10279 ,0,0,0}, - {20744,20727,20745 ,10280,10281,10282 ,0,0,0}, {20723,20724,20746 ,10283,10284,10285 ,0,0,0}, - {20729,20726,20747 ,10286,10287,10288 ,0,0,0}, {20728,20748,20726 ,10289,10290,10287 ,0,0,0}, - {20749,20730,20729 ,10291,10292,10286 ,0,0,0}, {20729,20747,20749 ,10286,10288,10291 ,0,0,0}, - {20730,20750,20731 ,10292,10293,10261 ,0,0,0}, {20750,20730,20749 ,10293,10292,10291 ,0,0,0}, - {20732,20731,20751 ,10294,10261,10295 ,0,0,0}, {20750,20751,20731 ,10293,10295,10261 ,0,0,0}, - {20751,20752,20733 ,10295,10296,10263 ,0,0,0}, {20733,20732,20751 ,10263,10294,10295 ,0,0,0}, - {20747,20726,20748 ,10288,10287,10290 ,0,0,0}, {20728,20727,20744 ,10289,10281,10280 ,0,0,0}, - {20728,20744,20748 ,10289,10280,10290 ,0,0,0}, {20745,20723,20746 ,10282,10283,10285 ,0,0,0}, - {20727,20723,20745 ,10281,10283,10282 ,0,0,0}, {20753,20724,20725 ,10297,10284,10276 ,0,0,0}, - {20746,20724,20753 ,10285,10284,10297 ,0,0,0}, {20743,20741,20720 ,10278,10275,10274 ,0,0,0}, - {20741,20753,20725 ,10275,10297,10276 ,0,0,0}, {20721,20742,20722 ,10269,10277,10279 ,0,0,0}, - {20722,20743,20720 ,10279,10278,10274 ,0,0,0}, {20718,20740,20738 ,10270,10273,10271 ,0,0,0}, - {20721,20738,20742 ,10269,10271,10277 ,0,0,0}, {20734,20719,20739 ,10264,10237,10272 ,0,0,0}, - {20718,20734,20740 ,10270,10264,10273 ,0,0,0}, {20737,20717,20736 ,10268,10230,10266 ,0,0,0}, - {20739,20719,20737 ,10272,10237,10268 ,0,0,0}, {20735,20716,20715 ,10265,10267,10227 ,0,0,0}, - {20736,20717,20716 ,10266,10230,10267 ,0,0,0}, {20754,20755,20736 ,10298,10299,10300 ,0,0,0}, - {20739,20737,20756 ,10301,10302,10303 ,0,0,0}, {20742,20738,20757 ,10304,10305,10306 ,0,0,0}, - {20740,20739,20758 ,10307,10301,10308 ,0,0,0}, {20741,20759,20753 ,10309,10310,10311 ,0,0,0}, - {20760,20761,20743 ,10312,10313,10314 ,0,0,0}, {20762,20744,20745 ,10315,10316,10317 ,0,0,0}, - {20763,20746,20764 ,10318,10319,10320 ,0,0,0}, {20765,20747,20766 ,10321,10322,10323 ,0,0,0}, - {20748,20767,20766 ,10324,10325,10323 ,0,0,0}, {20765,20768,20749 ,10321,10326,10327 ,0,0,0}, - {20749,20747,20765 ,10327,10322,10321 ,0,0,0}, {20750,20768,20769 ,10328,10326,10329 ,0,0,0}, - {20768,20750,20749 ,10326,10328,10327 ,0,0,0}, {20770,20751,20769 ,10330,10331,10329 ,0,0,0}, - {20750,20769,20751 ,10328,10329,10331 ,0,0,0}, {20770,20771,20752 ,10330,10332,10296 ,0,0,0}, - {20752,20751,20770 ,10296,10331,10330 ,0,0,0}, {20766,20747,20748 ,10323,10322,10324 ,0,0,0}, - {20767,20744,20762 ,10325,10316,10315 ,0,0,0}, {20748,20744,20767 ,10324,10316,10325 ,0,0,0}, - {20763,20745,20746 ,10318,10317,10319 ,0,0,0}, {20762,20745,20763 ,10315,10317,10318 ,0,0,0}, - {20759,20764,20753 ,10310,10320,10311 ,0,0,0}, {20764,20746,20753 ,10320,10319,10311 ,0,0,0}, - {20743,20761,20741 ,10314,10313,10309 ,0,0,0}, {20761,20759,20741 ,10313,10310,10309 ,0,0,0}, - {20742,20757,20760 ,10304,10306,10312 ,0,0,0}, {20742,20760,20743 ,10304,10312,10314 ,0,0,0}, - {20738,20740,20772 ,10305,10307,10333 ,0,0,0}, {20738,20772,20757 ,10305,10333,10306 ,0,0,0}, - {20758,20739,20756 ,10308,10301,10303 ,0,0,0}, {20772,20740,20758 ,10333,10307,10308 ,0,0,0}, - {20755,20737,20736 ,10299,10302,10300 ,0,0,0}, {20756,20737,20755 ,10303,10302,10299 ,0,0,0}, - {20754,20736,20735 ,10298,10300,10265 ,0,0,0}, {20769,20773,20774 ,10334,10335,10336 ,0,0,0}, - {20771,20770,20775 ,10332,10337,10338 ,0,0,0}, {20776,20766,20777 ,10339,10340,10341 ,0,0,0}, - {20765,20778,20768 ,10342,10343,10344 ,0,0,0}, {20764,20779,20763 ,10345,10346,10347 ,0,0,0}, - {20762,20780,20767 ,10348,10349,10350 ,0,0,0}, {20781,20761,20760 ,10351,10352,10353 ,0,0,0}, - {20782,20759,20783 ,10354,10355,10356 ,0,0,0}, {20784,20772,20785 ,10357,10358,10359 ,0,0,0}, - {20757,20784,20786 ,10360,10357,10361 ,0,0,0}, {20787,20785,20758 ,10362,10359,10363 ,0,0,0}, - {20772,20758,20785 ,10358,10363,10359 ,0,0,0}, {20756,20788,20787 ,10364,10365,10362 ,0,0,0}, - {20787,20758,20756 ,10362,10363,10364 ,0,0,0}, {20788,20755,20789 ,10365,10366,10367 ,0,0,0}, - {20755,20788,20756 ,10366,10365,10364 ,0,0,0}, {20786,20760,20757 ,10361,10353,10360 ,0,0,0}, - {20789,20755,20754 ,10367,10366,10368 ,0,0,0}, {20784,20757,20772 ,10357,10360,10358 ,0,0,0}, - {20781,20783,20761 ,10351,10356,10352 ,0,0,0}, {20786,20781,20760 ,10361,10351,10353 ,0,0,0}, - {20759,20782,20764 ,10355,10354,10345 ,0,0,0}, {20761,20783,20759 ,10352,10356,10355 ,0,0,0}, - {20763,20779,20790 ,10347,10346,10369 ,0,0,0}, {20764,20782,20779 ,10345,10354,10346 ,0,0,0}, - {20790,20780,20762 ,10369,10349,10348 ,0,0,0}, {20762,20763,20790 ,10348,10347,10369 ,0,0,0}, - {20777,20766,20767 ,10341,10340,10350 ,0,0,0}, {20777,20767,20780 ,10341,10350,10349 ,0,0,0}, - {20776,20778,20765 ,10339,10343,10342 ,0,0,0}, {20776,20765,20766 ,10339,10342,10340 ,0,0,0}, - {20768,20773,20769 ,10344,10335,10334 ,0,0,0}, {20778,20773,20768 ,10343,10335,10344 ,0,0,0}, - {20770,20774,20775 ,10337,10336,10338 ,0,0,0}, {20769,20774,20770 ,10334,10336,10337 ,0,0,0}, - {20771,20775,20791 ,10332,10338,10370 ,0,0,0}, {20792,20793,20794 ,10371,10372,10373 ,0,0,0}, - {20795,20796,20797 ,10374,10375,10376 ,0,0,0}, {20796,20798,20799 ,10375,10377,10378 ,0,0,0}, - {20799,20797,20796 ,10378,10376,10375 ,0,0,0}, {20796,20794,20800 ,10375,10373,10379 ,0,0,0}, - {20798,20801,20799 ,10377,10380,10378 ,0,0,0}, {20802,20803,20804 ,10381,10382,10383 ,0,0,0}, - {20754,20793,20789 ,10368,10372,10384 ,0,0,0}, {20805,20806,20807 ,10385,10386,10387 ,0,0,0}, - {20785,20787,20808 ,10388,10389,10390 ,0,0,0}, {20809,20810,20811 ,10391,10392,10393 ,0,0,0}, - {20786,20812,20781 ,10394,10395,10396 ,0,0,0}, {20813,20814,20780 ,10397,10398,10399 ,0,0,0}, - {20815,20816,20811 ,10400,10401,10393 ,0,0,0}, {20817,20818,20819 ,10402,10403,10404 ,0,0,0}, - {20820,20814,20821 ,10405,10398,10406 ,0,0,0}, {20774,20818,20775 ,10407,10403,10408 ,0,0,0}, - {20775,20822,20791 ,10408,10409,10410 ,0,0,0}, {20823,20824,20819 ,10411,10412,10404 ,0,0,0}, - {20775,20818,20822 ,10408,10403,10409 ,0,0,0}, {20825,20817,20826 ,10413,10402,10414 ,0,0,0}, - {20823,20819,20773 ,10411,10404,10415 ,0,0,0}, {20823,20827,20828 ,10411,10416,10417 ,0,0,0}, - {20778,20827,20823 ,10418,10416,10411 ,0,0,0}, {20777,20814,20820 ,10419,10398,10405 ,0,0,0}, - {20827,20820,20829 ,10416,10405,10420 ,0,0,0}, {20827,20776,20820 ,10416,10421,10405 ,0,0,0}, - {20830,20813,20816 ,10422,10397,10401 ,0,0,0}, {20831,20814,20813 ,10423,10398,10397 ,0,0,0}, - {20816,20779,20782 ,10401,10424,10425 ,0,0,0}, {20816,20813,20790 ,10401,10397,10426 ,0,0,0}, - {20781,20809,20783 ,10396,10391,10427 ,0,0,0}, {20783,20811,20782 ,10427,10393,10425 ,0,0,0}, - {20805,20832,20812 ,10385,10428,10395 ,0,0,0}, {20812,20833,20809 ,10395,10429,10391 ,0,0,0}, - {20784,20785,20806 ,10430,10388,10386 ,0,0,0}, {20786,20784,20805 ,10394,10430,10385 ,0,0,0}, - {20803,20834,20808 ,10382,10431,10390 ,0,0,0}, {20807,20806,20834 ,10387,10386,10431 ,0,0,0}, - {20835,20788,20789 ,10432,10433,10384 ,0,0,0}, {20804,20787,20788 ,10383,10389,10433 ,0,0,0}, - {20836,20800,20794 ,10434,10379,10373 ,0,0,0}, {20835,20792,20802 ,10432,10371,10381 ,0,0,0}, - {20794,20793,20836 ,10373,10372,10434 ,0,0,0}, {20798,20796,20800 ,10377,10375,10379 ,0,0,0}, - {20837,20795,20797 ,10435,10374,10376 ,0,0,0}, {20838,20795,20837 ,10436,10374,10435 ,0,0,0}, - {20793,20754,20836 ,10372,10368,10434 ,0,0,0}, {20794,20795,20792 ,10373,10374,10371 ,0,0,0}, - {20789,20793,20835 ,10384,10372,10432 ,0,0,0}, {20796,20795,20794 ,10375,10374,10373 ,0,0,0}, - {20839,20838,20837 ,10437,10436,10435 ,0,0,0}, {20840,20838,20839 ,10438,10436,10437 ,0,0,0}, - {20793,20792,20835 ,10372,10371,10432 ,0,0,0}, {20792,20838,20802 ,10371,10436,10381 ,0,0,0}, - {20788,20835,20804 ,10433,10432,10383 ,0,0,0}, {20795,20838,20792 ,10374,10436,10371 ,0,0,0}, - {20841,20840,20839 ,10439,10438,10437 ,0,0,0}, {20842,20840,20841 ,10440,10438,10439 ,0,0,0}, - {20835,20802,20804 ,10432,10381,10383 ,0,0,0}, {20802,20840,20803 ,10381,10438,10382 ,0,0,0}, - {20787,20804,20808 ,10389,10383,10390 ,0,0,0}, {20838,20840,20802 ,10436,10438,10381 ,0,0,0}, - {20843,20842,20841 ,10441,10440,10439 ,0,0,0}, {20844,20842,20843 ,10442,10440,10441 ,0,0,0}, - {20804,20803,20808 ,10383,10382,10390 ,0,0,0}, {20803,20842,20834 ,10382,10440,10431 ,0,0,0}, - {20785,20808,20806 ,10388,10390,10386 ,0,0,0}, {20840,20842,20803 ,10438,10440,10382 ,0,0,0}, - {20845,20844,20843 ,10443,10442,10441 ,0,0,0}, {20846,20844,20845 ,10444,10442,10443 ,0,0,0}, - {20808,20834,20806 ,10390,10431,10386 ,0,0,0}, {20834,20844,20807 ,10431,10442,10387 ,0,0,0}, - {20784,20806,20805 ,10430,10386,10385 ,0,0,0}, {20842,20844,20834 ,10440,10442,10431 ,0,0,0}, - {20847,20846,20845 ,10445,10444,10443 ,0,0,0}, {20848,20849,20826 ,10446,10447,10414 ,0,0,0}, - {20850,20846,20847 ,10448,10444,10445 ,0,0,0}, {20807,20846,20832 ,10387,10444,10428 ,0,0,0}, - {20786,20805,20812 ,10394,10385,10395 ,0,0,0}, {20844,20846,20807 ,10442,10444,10387 ,0,0,0}, - {20851,20850,20847 ,10449,10448,10445 ,0,0,0}, {20852,20853,20850 ,10450,10451,10448 ,0,0,0}, - {20807,20832,20805 ,10387,10428,10385 ,0,0,0}, {20832,20850,20833 ,10428,10448,10429 ,0,0,0}, - {20781,20812,20809 ,10396,10395,10391 ,0,0,0}, {20846,20850,20832 ,10444,10448,10428 ,0,0,0}, - {20851,20852,20850 ,10449,10450,10448 ,0,0,0}, {20854,20855,20853 ,10452,10453,10451 ,0,0,0}, - {20832,20833,20812 ,10428,10429,10395 ,0,0,0}, {20833,20853,20810 ,10429,10451,10392 ,0,0,0}, - {20783,20809,20811 ,10427,10391,10393 ,0,0,0}, {20850,20853,20833 ,10448,10451,10429 ,0,0,0}, - {20852,20854,20853 ,10450,10452,10451 ,0,0,0}, {20856,20857,20855 ,10454,10455,10453 ,0,0,0}, - {20833,20810,20809 ,10429,10392,10391 ,0,0,0}, {20855,20815,20810 ,10453,10400,10392 ,0,0,0}, - {20782,20811,20816 ,10425,10393,10401 ,0,0,0}, {20853,20855,20810 ,10451,10453,10392 ,0,0,0}, - {20854,20856,20855 ,10452,10454,10453 ,0,0,0}, {20857,20858,20859 ,10455,10456,10457 ,0,0,0}, - {20810,20815,20811 ,10392,10400,10393 ,0,0,0}, {20857,20830,20815 ,10455,10422,10400 ,0,0,0}, - {20790,20779,20816 ,10426,10424,10401 ,0,0,0}, {20855,20857,20815 ,10453,10455,10400 ,0,0,0}, - {20856,20858,20857 ,10454,10456,10455 ,0,0,0}, {20859,20860,20861 ,10457,10458,10459 ,0,0,0}, - {20815,20830,20816 ,10400,10422,10401 ,0,0,0}, {20859,20831,20830 ,10457,10423,10422 ,0,0,0}, - {20780,20790,20813 ,10399,10426,10397 ,0,0,0}, {20857,20859,20830 ,10455,10457,10422 ,0,0,0}, - {20858,20860,20859 ,10456,10458,10457 ,0,0,0}, {20861,20862,20863 ,10459,10460,10461 ,0,0,0}, - {20830,20831,20813 ,10422,10423,10397 ,0,0,0}, {20861,20821,20831 ,10459,10406,10423 ,0,0,0}, - {20777,20780,20814 ,10419,10399,10398 ,0,0,0}, {20859,20861,20831 ,10457,10459,10423 ,0,0,0}, - {20860,20862,20861 ,10458,10460,10459 ,0,0,0}, {20863,20864,20865 ,10461,10462,10463 ,0,0,0}, - {20831,20821,20814 ,10423,10406,10398 ,0,0,0}, {20863,20829,20821 ,10461,10420,10406 ,0,0,0}, - {20776,20777,20820 ,10421,10419,10405 ,0,0,0}, {20861,20863,20821 ,10459,10461,10406 ,0,0,0}, - {20862,20864,20863 ,10460,10462,10461 ,0,0,0}, {20865,20866,20867 ,10463,10464,10465 ,0,0,0}, - {20821,20829,20820 ,10406,10420,10405 ,0,0,0}, {20865,20828,20829 ,10463,10417,10420 ,0,0,0}, - {20778,20776,20827 ,10418,10421,10416 ,0,0,0}, {20863,20865,20829 ,10461,10463,10420 ,0,0,0}, - {20864,20866,20865 ,10462,10464,10463 ,0,0,0}, {20826,20867,20848 ,10414,10465,10446 ,0,0,0}, - {20829,20828,20827 ,10420,10417,10416 ,0,0,0}, {20828,20867,20824 ,10417,10465,10412 ,0,0,0}, - {20773,20778,20823 ,10415,10418,10411 ,0,0,0}, {20865,20867,20828 ,10463,10465,10417 ,0,0,0}, - {20866,20848,20867 ,10464,10446,10465 ,0,0,0}, {20774,20819,20818 ,10407,10404,10403 ,0,0,0}, - {20828,20824,20823 ,10417,10412,10411 ,0,0,0}, {20826,20817,20824 ,10414,10402,10412 ,0,0,0}, - {20774,20773,20819 ,10407,10415,10404 ,0,0,0}, {20826,20824,20867 ,10414,10412,10465 ,0,0,0}, - {20849,20825,20826 ,10447,10413,10414 ,0,0,0}, {20868,20817,20825 ,10466,10402,10413 ,0,0,0}, - {20824,20817,20819 ,10412,10402,10404 ,0,0,0}, {20817,20868,20818 ,10402,10466,10403 ,0,0,0}, - {20822,20818,20868 ,10409,10403,10466 ,0,0,0}, {20869,20870,20799 ,10467,10468,10469 ,0,0,0}, - {20837,20797,20871 ,10470,10471,10472 ,0,0,0}, {20843,20841,20872 ,10473,10474,10475 ,0,0,0}, - {20839,20873,20874 ,10476,10477,10478 ,0,0,0}, {20875,20876,20851 ,10479,10480,10481 ,0,0,0}, - {20877,20878,20845 ,10482,10483,10484 ,0,0,0}, {20879,20856,20880 ,10485,10486,10487 ,0,0,0}, - {20854,20852,20881 ,10488,10489,10490 ,0,0,0}, {20862,20860,20882 ,10491,10492,10493 ,0,0,0}, - {20858,20883,20860 ,10494,10495,10492 ,0,0,0}, {20884,20864,20862 ,10496,10497,10491 ,0,0,0}, - {20862,20882,20884 ,10491,10493,10496 ,0,0,0}, {20864,20885,20866 ,10497,10498,10499 ,0,0,0}, - {20885,20864,20884 ,10498,10497,10496 ,0,0,0}, {20848,20866,20886 ,10500,10499,10501 ,0,0,0}, - {20885,20886,20866 ,10498,10501,10499 ,0,0,0}, {20886,20887,20849 ,10501,10502,10447 ,0,0,0}, - {20849,20848,20886 ,10447,10500,10501 ,0,0,0}, {20882,20860,20883 ,10493,10492,10495 ,0,0,0}, - {20858,20856,20879 ,10494,10486,10485 ,0,0,0}, {20858,20879,20883 ,10494,10485,10495 ,0,0,0}, - {20880,20854,20881 ,10487,10488,10490 ,0,0,0}, {20856,20854,20880 ,10486,10488,10487 ,0,0,0}, - {20876,20852,20851 ,10480,10489,10481 ,0,0,0}, {20881,20852,20876 ,10490,10489,10480 ,0,0,0}, - {20878,20875,20847 ,10483,10479,10503 ,0,0,0}, {20875,20851,20847 ,10479,10481,10503 ,0,0,0}, - {20843,20877,20845 ,10473,10482,10484 ,0,0,0}, {20845,20878,20847 ,10484,10483,10503 ,0,0,0}, - {20841,20874,20872 ,10474,10478,10475 ,0,0,0}, {20843,20872,20877 ,10473,10475,10482 ,0,0,0}, - {20839,20837,20873 ,10476,10470,10477 ,0,0,0}, {20841,20839,20874 ,10474,10476,10478 ,0,0,0}, - {20871,20797,20870 ,10472,10471,10468 ,0,0,0}, {20873,20837,20871 ,10477,10470,10472 ,0,0,0}, - {20869,20799,20801 ,10467,10469,10504 ,0,0,0}, {20870,20797,20799 ,10468,10471,10469 ,0,0,0}, - {20888,20889,20870 ,10505,10506,10507 ,0,0,0}, {20871,20870,20890 ,10508,10507,10509 ,0,0,0}, - {20872,20874,20891 ,10510,10511,10512 ,0,0,0}, {20873,20892,20893 ,10513,10514,10515 ,0,0,0}, - {20878,20894,20875 ,10516,10517,10518 ,0,0,0}, {20895,20896,20877 ,10519,10520,10521 ,0,0,0}, - {20897,20880,20881 ,10522,10523,10524 ,0,0,0}, {20898,20876,20899 ,10525,10526,10527 ,0,0,0}, - {20882,20883,20900 ,10528,10529,10530 ,0,0,0}, {20879,20901,20902 ,10531,10532,10533 ,0,0,0}, - {20903,20884,20882 ,10534,10535,10528 ,0,0,0}, {20882,20900,20903 ,10528,10530,10534 ,0,0,0}, - {20884,20904,20885 ,10535,10536,10537 ,0,0,0}, {20904,20884,20903 ,10536,10535,10534 ,0,0,0}, - {20886,20885,20905 ,10538,10537,10539 ,0,0,0}, {20904,20905,20885 ,10536,10539,10537 ,0,0,0}, - {20906,20887,20886 ,10540,10502,10538 ,0,0,0}, {20886,20905,20906 ,10538,10539,10540 ,0,0,0}, - {20907,20887,20906 ,10541,10502,10540 ,0,0,0}, {20883,20902,20900 ,10529,10533,10530 ,0,0,0}, - {20879,20880,20901 ,10531,10523,10532 ,0,0,0}, {20883,20879,20902 ,10529,10531,10533 ,0,0,0}, - {20897,20881,20898 ,10522,10524,10525 ,0,0,0}, {20901,20880,20897 ,10532,10523,10522 ,0,0,0}, - {20899,20876,20875 ,10527,10526,10518 ,0,0,0}, {20898,20881,20876 ,10525,10524,10526 ,0,0,0}, - {20896,20894,20878 ,10520,10517,10516 ,0,0,0}, {20894,20899,20875 ,10517,10527,10518 ,0,0,0}, - {20872,20895,20877 ,10510,10519,10521 ,0,0,0}, {20877,20896,20878 ,10521,10520,10516 ,0,0,0}, - {20874,20893,20891 ,10511,10515,10512 ,0,0,0}, {20872,20891,20895 ,10510,10512,10519 ,0,0,0}, - {20873,20871,20892 ,10513,10508,10514 ,0,0,0}, {20874,20873,20893 ,10511,10513,10515 ,0,0,0}, - {20890,20870,20889 ,10509,10507,10506 ,0,0,0}, {20892,20871,20890 ,10514,10508,10509 ,0,0,0}, - {20888,20870,20869 ,10505,10507,10467 ,0,0,0}, {20908,20909,20889 ,10542,10543,10544 ,0,0,0}, - {20910,20890,20909 ,10545,10509,10543 ,0,0,0}, {20895,20891,20911 ,10546,10547,10548 ,0,0,0}, - {20893,20892,20912 ,10515,10514,10549 ,0,0,0}, {20894,20913,20899 ,10550,10551,10552 ,0,0,0}, - {20914,20915,20896 ,10553,10554,10555 ,0,0,0}, {20916,20901,20897 ,10556,10557,10558 ,0,0,0}, - {20917,20898,20918 ,10559,10560,10561 ,0,0,0}, {20903,20900,20919 ,10534,10530,10562 ,0,0,0}, - {20902,20920,20921 ,10563,10564,10565 ,0,0,0}, {20922,20904,20903 ,10566,10536,10534 ,0,0,0}, - {20903,20919,20922 ,10534,10562,10566 ,0,0,0}, {20904,20923,20905 ,10536,10567,10539 ,0,0,0}, - {20923,20904,20922 ,10567,10536,10566 ,0,0,0}, {20906,20905,20924 ,10568,10539,10569 ,0,0,0}, - {20923,20924,20905 ,10567,10569,10539 ,0,0,0}, {20925,20907,20906 ,10570,10541,10568 ,0,0,0}, - {20906,20924,20925 ,10568,10569,10570 ,0,0,0}, {20926,20907,20925 ,10571,10541,10570 ,0,0,0}, - {20900,20921,20919 ,10530,10565,10562 ,0,0,0}, {20902,20901,20920 ,10563,10557,10564 ,0,0,0}, - {20900,20902,20921 ,10530,10563,10565 ,0,0,0}, {20916,20897,20917 ,10556,10558,10559 ,0,0,0}, - {20920,20901,20916 ,10564,10557,10556 ,0,0,0}, {20918,20898,20899 ,10561,10560,10552 ,0,0,0}, - {20917,20897,20898 ,10559,10558,10560 ,0,0,0}, {20915,20913,20894 ,10554,10551,10550 ,0,0,0}, - {20913,20918,20899 ,10551,10561,10552 ,0,0,0}, {20895,20914,20896 ,10546,10553,10555 ,0,0,0}, - {20896,20915,20894 ,10555,10554,10550 ,0,0,0}, {20891,20927,20911 ,10547,10572,10548 ,0,0,0}, - {20895,20911,20914 ,10546,10548,10553 ,0,0,0}, {20912,20927,20893 ,10549,10572,10515 ,0,0,0}, - {20891,20893,20927 ,10547,10515,10572 ,0,0,0}, {20910,20892,20890 ,10545,10514,10509 ,0,0,0}, - {20912,20892,20910 ,10549,10514,10545 ,0,0,0}, {20889,20888,20908 ,10544,10505,10542 ,0,0,0}, - {20909,20890,20889 ,10543,10509,10544 ,0,0,0}, {20928,20929,20909 ,10573,10574,10575 ,0,0,0}, - {20930,20910,20929 ,10576,10577,10574 ,0,0,0}, {20914,20911,20931 ,10578,10579,10580 ,0,0,0}, - {20927,20912,20932 ,10581,10582,10583 ,0,0,0}, {20913,20933,20918 ,10584,10585,10586 ,0,0,0}, - {20934,20935,20915 ,10587,10588,10589 ,0,0,0}, {20936,20920,20916 ,10590,10591,10592 ,0,0,0}, - {20937,20917,20938 ,10593,10594,10595 ,0,0,0}, {20939,20919,20940 ,10596,10597,10598 ,0,0,0}, - {20921,20920,20941 ,10599,10591,10600 ,0,0,0}, {20942,20923,20922 ,10601,10602,10603 ,0,0,0}, - {20922,20939,20942 ,10603,10596,10601 ,0,0,0}, {20923,20943,20924 ,10602,10604,10605 ,0,0,0}, - {20943,20923,20942 ,10604,10602,10601 ,0,0,0}, {20925,20924,20944 ,10606,10605,10607 ,0,0,0}, - {20943,20944,20924 ,10604,10607,10605 ,0,0,0}, {20945,20926,20925 ,10608,10571,10606 ,0,0,0}, - {20925,20944,20945 ,10606,10607,10608 ,0,0,0}, {20946,20926,20945 ,10609,10571,10608 ,0,0,0}, - {20939,20922,20919 ,10596,10603,10597 ,0,0,0}, {20940,20921,20941 ,10598,10599,10600 ,0,0,0}, - {20919,20921,20940 ,10597,10599,10598 ,0,0,0}, {20916,20937,20936 ,10592,10593,10590 ,0,0,0}, - {20941,20920,20936 ,10600,10591,10590 ,0,0,0}, {20938,20917,20918 ,10595,10594,10586 ,0,0,0}, - {20937,20916,20917 ,10593,10592,10594 ,0,0,0}, {20935,20933,20913 ,10588,10585,10584 ,0,0,0}, - {20933,20938,20918 ,10585,10595,10586 ,0,0,0}, {20914,20934,20915 ,10578,10587,10589 ,0,0,0}, - {20915,20935,20913 ,10589,10588,10584 ,0,0,0}, {20911,20947,20931 ,10579,10610,10580 ,0,0,0}, - {20914,20931,20934 ,10578,10580,10587 ,0,0,0}, {20932,20947,20927 ,10583,10610,10581 ,0,0,0}, - {20911,20927,20947 ,10579,10581,10610 ,0,0,0}, {20930,20912,20910 ,10576,10582,10577 ,0,0,0}, - {20932,20912,20930 ,10583,10582,10576 ,0,0,0}, {20909,20908,20928 ,10575,10542,10573 ,0,0,0}, - {20929,20910,20909 ,10574,10577,10575 ,0,0,0}, {20948,20928,20949 ,10611,10573,10612 ,0,0,0}, - {20950,20932,20951 ,10613,10614,10615 ,0,0,0}, {20952,20930,20929 ,10616,10617,10618 ,0,0,0}, - {20934,20953,20935 ,10619,10620,10621 ,0,0,0}, {20947,20954,20931 ,10622,10623,10624 ,0,0,0}, - {20955,20937,20938 ,10625,10626,10627 ,0,0,0}, {20956,20933,20957 ,10628,10629,10630 ,0,0,0}, - {20958,20941,20959 ,10631,10632,10633 ,0,0,0}, {20936,20960,20959 ,10634,10635,10633 ,0,0,0}, - {20942,20939,20961 ,10636,10637,10638 ,0,0,0}, {20940,20962,20939 ,10639,10640,10637 ,0,0,0}, - {20963,20943,20942 ,10641,10642,10636 ,0,0,0}, {20942,20961,20963 ,10636,10638,10641 ,0,0,0}, - {20943,20964,20944 ,10642,10643,10644 ,0,0,0}, {20964,20943,20963 ,10643,10642,10641 ,0,0,0}, - {20945,20944,20965 ,10645,10644,10646 ,0,0,0}, {20964,20965,20944 ,10643,10646,10644 ,0,0,0}, - {20966,20946,20945 ,10647,10609,10645 ,0,0,0}, {20945,20965,20966 ,10645,10646,10647 ,0,0,0}, - {20958,20962,20940 ,10631,10640,10639 ,0,0,0}, {20939,20962,20961 ,10637,10640,10638 ,0,0,0}, - {20941,20936,20959 ,10632,10634,10633 ,0,0,0}, {20940,20941,20958 ,10639,10632,10631 ,0,0,0}, - {20960,20937,20955 ,10635,10626,10625 ,0,0,0}, {20936,20937,20960 ,10634,10626,10635 ,0,0,0}, - {20956,20938,20933 ,10628,10627,10629 ,0,0,0}, {20955,20938,20956 ,10625,10627,10628 ,0,0,0}, - {20953,20957,20935 ,10620,10630,10621 ,0,0,0}, {20957,20933,20935 ,10630,10629,10621 ,0,0,0}, - {20931,20967,20934 ,10624,10648,10619 ,0,0,0}, {20967,20953,20934 ,10648,10620,10619 ,0,0,0}, - {20947,20950,20954 ,10622,10613,10623 ,0,0,0}, {20931,20954,20967 ,10624,10623,10648 ,0,0,0}, - {20932,20930,20951 ,10614,10617,10615 ,0,0,0}, {20947,20932,20950 ,10622,10614,10613 ,0,0,0}, - {20952,20929,20948 ,10616,10618,10611 ,0,0,0}, {20951,20930,20952 ,10615,10617,10616 ,0,0,0}, - {20928,20948,20929 ,10573,10611,10618 ,0,0,0}, {20955,20956,20968 ,10649,10650,10651 ,0,0,0}, - {20969,20956,20957 ,10652,10650,10653 ,0,0,0}, {20956,20969,20968 ,10650,10652,10651 ,0,0,0}, - {20953,20970,20957 ,10654,10655,10653 ,0,0,0}, {20969,20957,20970 ,10652,10653,10655 ,0,0,0}, - {20953,20967,20971 ,10654,10656,10657 ,0,0,0}, {20971,20970,20953 ,10657,10655,10654 ,0,0,0}, - {20972,20967,20954 ,10658,10656,10659 ,0,0,0}, {20967,20972,20971 ,10656,10658,10657 ,0,0,0}, - {20950,20973,20954 ,10660,10661,10659 ,0,0,0}, {20972,20954,20973 ,10658,10659,10661 ,0,0,0}, - {20950,20951,20974 ,10660,10662,10663 ,0,0,0}, {20974,20973,20950 ,10663,10661,10660 ,0,0,0}, - {20975,20951,20952 ,10664,10662,10665 ,0,0,0}, {20951,20975,20974 ,10662,10664,10663 ,0,0,0}, - {20948,20976,20952 ,10666,10667,10665 ,0,0,0}, {20975,20952,20976 ,10664,10665,10667 ,0,0,0}, - {20949,20977,20976 ,10668,10669,10667 ,0,0,0}, {20976,20948,20949 ,10667,10666,10668 ,0,0,0}, - {20955,20968,20978 ,10649,10651,10670 ,0,0,0}, {20978,20979,20960 ,10670,10671,10672 ,0,0,0}, - {20960,20955,20978 ,10672,10649,10670 ,0,0,0}, {20959,20979,20980 ,10673,10671,10674 ,0,0,0}, - {20979,20959,20960 ,10671,10673,10672 ,0,0,0}, {20981,20958,20980 ,10675,10676,10674 ,0,0,0}, - {20959,20980,20958 ,10673,10674,10676 ,0,0,0}, {20981,20982,20962 ,10675,10677,10678 ,0,0,0}, - {20962,20958,20981 ,10678,10676,10675 ,0,0,0}, {20961,20982,20983 ,10679,10677,10680 ,0,0,0}, - {20982,20961,20962 ,10677,10679,10678 ,0,0,0}, {20984,20963,20983 ,10681,10682,10680 ,0,0,0}, - {20961,20983,20963 ,10679,10680,10682 ,0,0,0}, {20984,20985,20964 ,10681,10683,10684 ,0,0,0}, - {20964,20963,20984 ,10684,10682,10681 ,0,0,0}, {20965,20985,20986 ,10685,10683,10686 ,0,0,0}, - {20985,20965,20964 ,10683,10685,10684 ,0,0,0}, {20965,20986,20966 ,10685,10686,10687 ,0,0,0}, - {20987,20977,20988 ,10688,10689,10690 ,0,0,0}, {20989,20973,20990 ,10691,10692,10693 ,0,0,0}, - {20987,20991,20975 ,10688,10694,10695 ,0,0,0}, {20970,20992,20993 ,10696,10697,10698 ,0,0,0}, - {20972,20994,20971 ,10699,10700,10701 ,0,0,0}, {20995,20996,20978 ,10702,10703,10704 ,0,0,0}, - {20997,20968,20969 ,10705,10706,10707 ,0,0,0}, {20998,20981,20999 ,10708,10709,10710 ,0,0,0}, - {20980,20979,21000 ,10711,10712,10713 ,0,0,0}, {21001,20983,20982 ,10714,10715,10716 ,0,0,0}, - {20982,20998,21001 ,10716,10708,10714 ,0,0,0}, {20983,21002,20984 ,10715,10717,10718 ,0,0,0}, - {21002,20983,21001 ,10717,10715,10714 ,0,0,0}, {20985,20984,21003 ,10719,10718,10720 ,0,0,0}, - {21002,21003,20984 ,10717,10720,10718 ,0,0,0}, {21004,20986,20985 ,10721,10686,10719 ,0,0,0}, - {20985,21003,21004 ,10719,10720,10721 ,0,0,0}, {20981,20980,20999 ,10709,10711,10710 ,0,0,0}, - {20982,20981,20998 ,10716,10709,10708 ,0,0,0}, {21000,20979,20996 ,10713,10712,10703 ,0,0,0}, - {20999,20980,21000 ,10710,10711,10713 ,0,0,0}, {20995,20978,20968 ,10702,10704,10706 ,0,0,0}, - {20996,20979,20978 ,10703,10712,10704 ,0,0,0}, {20993,20997,20969 ,10698,10705,10707 ,0,0,0}, - {20997,20995,20968 ,10705,10702,10706 ,0,0,0}, {20971,20992,20970 ,10701,10697,10696 ,0,0,0}, - {20970,20993,20969 ,10696,10698,10707 ,0,0,0}, {20972,20989,20994 ,10699,10691,10700 ,0,0,0}, - {20971,20994,20992 ,10701,10700,10697 ,0,0,0}, {20973,20974,20990 ,10692,10722,10693 ,0,0,0}, - {20972,20973,20989 ,10699,10692,10691 ,0,0,0}, {20975,20991,20974 ,10695,10694,10722 ,0,0,0}, - {20990,20974,20991 ,10693,10722,10694 ,0,0,0}, {20987,20976,20977 ,10688,10723,10689 ,0,0,0}, - {20987,20975,20976 ,10688,10695,10723 ,0,0,0}, {21005,20988,21006 ,10724,10725,10726 ,0,0,0}, - {21007,20990,21008 ,10727,10728,10729 ,0,0,0}, {21009,20991,20987 ,10730,10731,10732 ,0,0,0}, - {20992,21010,20993 ,10733,10734,10735 ,0,0,0}, {20989,21011,20994 ,10736,10737,10738 ,0,0,0}, - {21012,21013,20995 ,10739,10740,10741 ,0,0,0}, {21012,20997,21014 ,10739,10742,10743 ,0,0,0}, - {21015,20999,21016 ,10744,10745,10746 ,0,0,0}, {21000,20996,21017 ,10747,10748,10749 ,0,0,0}, - {21018,21001,20998 ,10750,10751,10752 ,0,0,0}, {20998,21015,21018 ,10752,10744,10750 ,0,0,0}, - {21001,21019,21002 ,10751,10753,10754 ,0,0,0}, {21019,21001,21018 ,10753,10751,10750 ,0,0,0}, - {21003,21002,21020 ,10755,10754,10756 ,0,0,0}, {21019,21020,21002 ,10753,10756,10754 ,0,0,0}, - {21021,21004,21003 ,10757,10758,10755 ,0,0,0}, {21003,21020,21021 ,10755,10756,10757 ,0,0,0}, - {20999,21000,21016 ,10745,10747,10746 ,0,0,0}, {20998,20999,21015 ,10752,10745,10744 ,0,0,0}, - {21017,20996,21013 ,10749,10748,10740 ,0,0,0}, {21016,21000,21017 ,10746,10747,10749 ,0,0,0}, - {21012,20995,20997 ,10739,10741,10742 ,0,0,0}, {21013,20996,20995 ,10740,10748,10741 ,0,0,0}, - {21010,21014,20993 ,10734,10743,10735 ,0,0,0}, {21014,20997,20993 ,10743,10742,10735 ,0,0,0}, - {20994,21022,20992 ,10738,10759,10733 ,0,0,0}, {21022,21010,20992 ,10759,10734,10733 ,0,0,0}, - {20989,21007,21011 ,10736,10727,10737 ,0,0,0}, {20994,21011,21022 ,10738,10737,10759 ,0,0,0}, - {20990,20991,21008 ,10728,10731,10729 ,0,0,0}, {20989,20990,21007 ,10736,10728,10727 ,0,0,0}, - {21009,20987,21005 ,10730,10732,10724 ,0,0,0}, {21008,20991,21009 ,10729,10731,10730 ,0,0,0}, - {20988,21005,20987 ,10725,10724,10732 ,0,0,0}, {21023,21006,21024 ,10760,10761,10762 ,0,0,0}, - {21025,21008,21026 ,10763,10764,10765 ,0,0,0}, {21027,21009,21005 ,10766,10767,10768 ,0,0,0}, - {21022,21028,21029 ,10769,10770,10771 ,0,0,0}, {21007,21030,21011 ,10772,10773,10774 ,0,0,0}, - {21031,21032,21012 ,10775,10776,10777 ,0,0,0}, {21031,21014,21033 ,10775,10778,10779 ,0,0,0}, - {21034,21016,21035 ,10780,10781,10782 ,0,0,0}, {21017,21013,21036 ,10783,10784,10785 ,0,0,0}, - {21037,21018,21015 ,10786,10787,10788 ,0,0,0}, {21015,21034,21037 ,10788,10780,10786 ,0,0,0}, - {21018,21038,21019 ,10787,10789,10790 ,0,0,0}, {21038,21018,21037 ,10789,10787,10786 ,0,0,0}, - {21020,21019,21039 ,10791,10790,10792 ,0,0,0}, {21038,21039,21019 ,10789,10792,10790 ,0,0,0}, - {21040,21021,21020 ,10793,10794,10791 ,0,0,0}, {21020,21039,21040 ,10791,10792,10793 ,0,0,0}, - {21016,21017,21035 ,10781,10783,10782 ,0,0,0}, {21015,21016,21034 ,10788,10781,10780 ,0,0,0}, - {21036,21013,21032 ,10785,10784,10776 ,0,0,0}, {21035,21017,21036 ,10782,10783,10785 ,0,0,0}, - {21031,21012,21014 ,10775,10777,10778 ,0,0,0}, {21032,21013,21012 ,10776,10784,10777 ,0,0,0}, - {21029,21033,21010 ,10771,10779,10795 ,0,0,0}, {21033,21014,21010 ,10779,10778,10795 ,0,0,0}, - {21011,21028,21022 ,10774,10770,10769 ,0,0,0}, {21022,21029,21010 ,10769,10771,10795 ,0,0,0}, - {21007,21025,21030 ,10772,10763,10773 ,0,0,0}, {21011,21030,21028 ,10774,10773,10770 ,0,0,0}, - {21008,21009,21026 ,10764,10767,10765 ,0,0,0}, {21007,21008,21025 ,10772,10764,10763 ,0,0,0}, - {21027,21005,21023 ,10766,10768,10760 ,0,0,0}, {21026,21009,21027 ,10765,10767,10766 ,0,0,0}, - {21006,21023,21005 ,10761,10760,10768 ,0,0,0}, {20611,21024,20609 ,10796,10797,10798 ,0,0,0}, - {20612,21026,20613 ,10799,10800,10801 ,0,0,0}, {20623,21027,21023 ,10802,10803,10804 ,0,0,0}, - {21028,20636,20637 ,10805,10806,10807 ,0,0,0}, {21025,20624,21030 ,10808,10809,10810 ,0,0,0}, - {20639,20640,21031 ,10811,10812,10813 ,0,0,0}, {20638,21033,21029 ,10814,10815,10816 ,0,0,0}, - {20669,21035,21036 ,10817,10818,10819 ,0,0,0}, {20666,21032,20640 ,10820,10821,10812 ,0,0,0}, - {20670,21037,21034 ,10822,10823,10824 ,0,0,0}, {21034,20668,20670 ,10824,10825,10822 ,0,0,0}, - {21037,20671,21038 ,10823,10826,10827 ,0,0,0}, {20671,21037,20670 ,10826,10823,10822 ,0,0,0}, - {21038,20573,20570 ,10827,10828,10829 ,0,0,0}, {20671,20573,21038 ,10826,10828,10827 ,0,0,0}, - {20569,21039,20570 ,10047,10830,10829 ,0,0,0}, {21038,20570,21039 ,10827,10829,10830 ,0,0,0}, - {21040,21039,20569 ,10793,10830,10047 ,0,0,0}, {20668,21035,20669 ,10825,10818,10817 ,0,0,0}, - {21034,21035,20668 ,10824,10818,10825 ,0,0,0}, {20666,21036,21032 ,10820,10819,10821 ,0,0,0}, - {20669,21036,20666 ,10817,10819,10820 ,0,0,0}, {21031,21033,20639 ,10813,10815,10811 ,0,0,0}, - {20640,21032,21031 ,10812,10821,10813 ,0,0,0}, {20637,20638,21029 ,10807,10814,10816 ,0,0,0}, - {20638,20639,21033 ,10814,10811,10815 ,0,0,0}, {21030,20636,21028 ,10810,10806,10805 ,0,0,0}, - {21028,20637,21029 ,10805,10807,10816 ,0,0,0}, {21025,20612,20624 ,10808,10799,10809 ,0,0,0}, - {21030,20624,20636 ,10810,10809,10806 ,0,0,0}, {21026,21027,20613 ,10800,10803,10801 ,0,0,0}, - {21025,21026,20612 ,10808,10800,10799 ,0,0,0}, {20623,21023,20611 ,10802,10804,10796 ,0,0,0}, - {20613,21027,20623 ,10801,10803,10802 ,0,0,0}, {21024,20611,21023 ,10797,10796,10804 ,0,0,0}, - {21041,20549,21042 ,10831,10024,10832 ,0,0,0}, {21043,20659,20606 ,10833,10834,10835 ,0,0,0}, - {21044,20621,20547 ,10836,10837,10838 ,0,0,0}, {20664,21045,21046 ,10839,10840,10841 ,0,0,0}, - {20660,21047,20661 ,10842,10843,10844 ,0,0,0}, {21048,21049,20629 ,10845,10846,10847 ,0,0,0}, - {21050,20632,20633 ,10848,10849,10850 ,0,0,0}, {21051,20667,21052 ,10851,10852,10853 ,0,0,0}, - {20665,20630,21053 ,10854,10855,10856 ,0,0,0}, {21054,20644,20589 ,10857,10858,10859 ,0,0,0}, - {20589,21051,21054 ,10859,10851,10857 ,0,0,0}, {20644,21055,20672 ,10858,10860,10861 ,0,0,0}, - {21055,20644,21054 ,10860,10858,10857 ,0,0,0}, {20580,20672,21056 ,10862,10861,10863 ,0,0,0}, - {21055,21056,20672 ,10860,10863,10861 ,0,0,0}, {21057,20583,20580 ,10864,10865,10862 ,0,0,0}, - {20580,21056,21057 ,10862,10863,10864 ,0,0,0}, {20667,20665,21052 ,10852,10854,10853 ,0,0,0}, - {20589,20667,21051 ,10859,10852,10851 ,0,0,0}, {21053,20630,21049 ,10856,10855,10846 ,0,0,0}, - {21052,20665,21053 ,10853,10854,10856 ,0,0,0}, {21048,20629,20632 ,10845,10847,10849 ,0,0,0}, - {21049,20630,20629 ,10846,10855,10847 ,0,0,0}, {21046,21050,20633 ,10841,10848,10850 ,0,0,0}, - {21050,21048,20632 ,10848,10845,10849 ,0,0,0}, {20661,21045,20664 ,10844,10840,10839 ,0,0,0}, - {20664,21046,20633 ,10839,10841,10850 ,0,0,0}, {20660,21058,21047 ,10842,10866,10843 ,0,0,0}, - {20661,21047,21045 ,10844,10843,10840 ,0,0,0}, {21043,21058,20659 ,10833,10866,10834 ,0,0,0}, - {20660,20659,21058 ,10842,10834,10866 ,0,0,0}, {21044,20606,20621 ,10836,10835,10837 ,0,0,0}, - {21043,20606,21044 ,10833,10835,10836 ,0,0,0}, {21041,20547,20549 ,10831,10838,10024 ,0,0,0}, - {21044,20547,21041 ,10836,10838,10831 ,0,0,0}, {21059,21042,21060 ,10867,10832,10868 ,0,0,0}, - {21061,21043,21062 ,10869,10870,10871 ,0,0,0}, {21063,21044,21041 ,10872,10873,10874 ,0,0,0}, - {21045,21064,21065 ,10875,10876,10877 ,0,0,0}, {21058,21066,21047 ,10878,10879,10880 ,0,0,0}, - {21067,21049,21048 ,10881,10882,10883 ,0,0,0}, {21068,21050,21069 ,10884,10885,10886 ,0,0,0}, - {21070,21052,21071 ,10887,10888,10889 ,0,0,0}, {21053,21049,21072 ,10890,10882,10891 ,0,0,0}, - {21073,21054,21051 ,10892,10893,10894 ,0,0,0}, {21051,21070,21073 ,10894,10887,10892 ,0,0,0}, - {21054,21074,21055 ,10893,10895,10896 ,0,0,0}, {21074,21054,21073 ,10895,10893,10892 ,0,0,0}, - {21056,21055,21075 ,10897,10896,10898 ,0,0,0}, {21074,21075,21055 ,10895,10898,10896 ,0,0,0}, - {21076,21057,21056 ,10899,10900,10897 ,0,0,0}, {21056,21075,21076 ,10897,10898,10899 ,0,0,0}, - {21052,21053,21071 ,10888,10890,10889 ,0,0,0}, {21051,21052,21070 ,10894,10888,10887 ,0,0,0}, - {21072,21049,21067 ,10891,10882,10881 ,0,0,0}, {21071,21053,21072 ,10889,10890,10891 ,0,0,0}, - {21068,21048,21050 ,10884,10883,10885 ,0,0,0}, {21067,21048,21068 ,10881,10883,10884 ,0,0,0}, - {21065,21069,21046 ,10877,10886,10901 ,0,0,0}, {21069,21050,21046 ,10886,10885,10901 ,0,0,0}, - {21047,21064,21045 ,10880,10876,10875 ,0,0,0}, {21045,21065,21046 ,10875,10877,10901 ,0,0,0}, - {21058,21061,21066 ,10878,10869,10879 ,0,0,0}, {21047,21066,21064 ,10880,10879,10876 ,0,0,0}, - {21043,21044,21062 ,10870,10873,10871 ,0,0,0}, {21058,21043,21061 ,10878,10870,10869 ,0,0,0}, - {21063,21041,21059 ,10872,10874,10867 ,0,0,0}, {21062,21044,21063 ,10871,10873,10872 ,0,0,0}, - {21042,21059,21041 ,10832,10867,10874 ,0,0,0}, {21077,21060,21078 ,10902,10868,10903 ,0,0,0}, - {21079,21062,21080 ,10904,10905,10906 ,0,0,0}, {21081,21063,21059 ,10907,10908,10909 ,0,0,0}, - {21064,21082,21065 ,10910,10911,10912 ,0,0,0}, {21061,21083,21066 ,10913,10914,10915 ,0,0,0}, - {21084,21067,21068 ,10916,10917,10918 ,0,0,0}, {21085,21069,21086 ,10919,10920,10921 ,0,0,0}, - {21087,21071,21088 ,10922,10923,10924 ,0,0,0}, {21072,21067,21089 ,10925,10917,10926 ,0,0,0}, - {21090,21073,21070 ,10927,10928,10929 ,0,0,0}, {21070,21087,21090 ,10929,10922,10927 ,0,0,0}, - {21073,21091,21074 ,10928,10930,10931 ,0,0,0}, {21091,21073,21090 ,10930,10928,10927 ,0,0,0}, - {21075,21074,21092 ,10932,10931,10933 ,0,0,0}, {21091,21092,21074 ,10930,10933,10931 ,0,0,0}, - {21093,21076,21075 ,10934,10935,10932 ,0,0,0}, {21075,21092,21093 ,10932,10933,10934 ,0,0,0}, - {21071,21072,21088 ,10923,10925,10924 ,0,0,0}, {21070,21071,21087 ,10929,10923,10922 ,0,0,0}, - {21089,21067,21084 ,10926,10917,10916 ,0,0,0}, {21088,21072,21089 ,10924,10925,10926 ,0,0,0}, - {21085,21068,21069 ,10919,10918,10920 ,0,0,0}, {21084,21068,21085 ,10916,10918,10919 ,0,0,0}, - {21082,21086,21065 ,10911,10921,10912 ,0,0,0}, {21086,21069,21065 ,10921,10920,10912 ,0,0,0}, - {21066,21094,21064 ,10915,10936,10910 ,0,0,0}, {21094,21082,21064 ,10936,10911,10910 ,0,0,0}, - {21061,21079,21083 ,10913,10904,10914 ,0,0,0}, {21066,21083,21094 ,10915,10914,10936 ,0,0,0}, - {21062,21063,21080 ,10905,10908,10906 ,0,0,0}, {21061,21062,21079 ,10913,10905,10904 ,0,0,0}, - {21081,21059,21077 ,10907,10909,10902 ,0,0,0}, {21080,21063,21081 ,10906,10908,10907 ,0,0,0}, - {21060,21077,21059 ,10868,10902,10909 ,0,0,0}, {20677,21095,20714 ,10937,10938,10226 ,0,0,0}, - {20683,21096,20684 ,10939,10940,10941 ,0,0,0}, {20679,21097,21098 ,10942,10943,10944 ,0,0,0}, - {21099,20691,21100 ,10945,10946,10947 ,0,0,0}, {21101,20681,21102 ,10948,10949,10950 ,0,0,0}, - {20696,21103,21104 ,10951,10952,10953 ,0,0,0}, {20688,21105,20686 ,10954,10955,10956 ,0,0,0}, - {21106,21107,20701 ,10957,10958,10959 ,0,0,0}, {21108,20694,20693 ,10960,10961,10962 ,0,0,0}, - {21109,21110,20698 ,10963,10964,10965 ,0,0,0}, {20699,20698,21110 ,10966,10965,10964 ,0,0,0}, - {20705,21111,21109 ,10967,10968,10963 ,0,0,0}, {21109,20698,20705 ,10963,10965,10967 ,0,0,0}, - {21111,20707,21112 ,10968,10969,10970 ,0,0,0}, {20707,21111,20705 ,10969,10968,10967 ,0,0,0}, - {21113,21112,20708 ,10971,10970,10972 ,0,0,0}, {20707,20708,21112 ,10969,10972,10970 ,0,0,0}, - {20711,21114,21113 ,10223,10973,10971 ,0,0,0}, {21113,20708,20711 ,10971,10972,10223 ,0,0,0}, - {20701,20699,21106 ,10959,10966,10957 ,0,0,0}, {21106,20699,21110 ,10957,10966,10964 ,0,0,0}, - {21107,21108,20693 ,10958,10960,10962 ,0,0,0}, {21107,20693,20701 ,10958,10962,10959 ,0,0,0}, - {20694,21103,20696 ,10961,10952,10951 ,0,0,0}, {21108,21103,20694 ,10960,10952,10961 ,0,0,0}, - {20688,21104,21105 ,10954,10953,10955 ,0,0,0}, {20696,21104,20688 ,10951,10953,10954 ,0,0,0}, - {20691,20686,21100 ,10946,10956,10947 ,0,0,0}, {20686,21105,21100 ,10956,10955,10947 ,0,0,0}, - {21102,20713,21099 ,10950,10974,10945 ,0,0,0}, {20713,20691,21099 ,10974,10946,10945 ,0,0,0}, - {21101,20683,20681 ,10948,10939,10949 ,0,0,0}, {21102,20681,20713 ,10950,10949,10974 ,0,0,0}, - {21096,21097,20684 ,10940,10943,10941 ,0,0,0}, {21101,21096,20683 ,10948,10940,10939 ,0,0,0}, - {20679,21098,20677 ,10942,10944,10937 ,0,0,0}, {20684,21097,20679 ,10941,10943,10942 ,0,0,0}, - {21095,20677,21098 ,10938,10937,10944 ,0,0,0}, {21115,21078,21116 ,10975,10903,10976 ,0,0,0}, - {21117,21080,21118 ,10977,10978,10979 ,0,0,0}, {21119,21081,21077 ,10980,10981,10982 ,0,0,0}, - {21094,21120,21121 ,10983,10984,10985 ,0,0,0}, {21079,21122,21083 ,10986,10987,10988 ,0,0,0}, - {21123,21124,21085 ,10989,10990,10991 ,0,0,0}, {21125,21086,21082 ,10992,10993,10994 ,0,0,0}, - {21126,21088,21089 ,10995,10996,10997 ,0,0,0}, {21089,21084,21127 ,10997,10998,10999 ,0,0,0}, - {21128,21090,21087 ,11000,11001,11002 ,0,0,0}, {21087,21129,21128 ,11002,11003,11000 ,0,0,0}, - {21090,21130,21091 ,11001,11004,11005 ,0,0,0}, {21130,21090,21128 ,11004,11001,11000 ,0,0,0}, - {21092,21091,21131 ,11006,11005,11007 ,0,0,0}, {21130,21131,21091 ,11004,11007,11005 ,0,0,0}, - {21132,21092,21133 ,11008,11006,11009 ,0,0,0}, {21092,21131,21133 ,11006,11007,11009 ,0,0,0}, - {21093,21092,21132 ,11010,11006,11008 ,0,0,0}, {21129,21088,21126 ,11003,10996,10995 ,0,0,0}, - {21087,21088,21129 ,11002,10996,11003 ,0,0,0}, {21084,21124,21127 ,10998,10990,10999 ,0,0,0}, - {21126,21089,21127 ,10995,10997,10999 ,0,0,0}, {21123,21085,21086 ,10989,10991,10993 ,0,0,0}, - {21124,21084,21085 ,10990,10998,10991 ,0,0,0}, {21121,21125,21082 ,10985,10992,10994 ,0,0,0}, - {21125,21123,21086 ,10992,10989,10993 ,0,0,0}, {21083,21120,21094 ,10988,10984,10983 ,0,0,0}, - {21094,21121,21082 ,10983,10985,10994 ,0,0,0}, {21079,21117,21122 ,10986,10977,10987 ,0,0,0}, - {21083,21122,21120 ,10988,10987,10984 ,0,0,0}, {21080,21081,21118 ,10978,10981,10979 ,0,0,0}, - {21079,21080,21117 ,10986,10978,10977 ,0,0,0}, {21119,21077,21115 ,10980,10982,10975 ,0,0,0}, - {21118,21081,21119 ,10979,10981,10980 ,0,0,0}, {21078,21115,21077 ,10903,10975,10982 ,0,0,0}, - {21098,21116,21095 ,11011,10976,11012 ,0,0,0}, {21101,21118,21096 ,11013,11014,11015 ,0,0,0}, - {21097,21119,21115 ,11016,11017,11018 ,0,0,0}, {21120,21099,21100 ,11019,11020,11021 ,0,0,0}, - {21117,21102,21122 ,11022,11023,11024 ,0,0,0}, {21104,21103,21123 ,11025,11026,11027 ,0,0,0}, - {21105,21125,21121 ,11028,11029,11030 ,0,0,0}, {21106,21126,21107 ,11031,11032,11033 ,0,0,0}, - {21127,21124,21108 ,11034,11035,11036 ,0,0,0}, {21109,21128,21110 ,11037,11038,11039 ,0,0,0}, - {21129,21106,21110 ,11040,11031,11039 ,0,0,0}, {21109,21111,21130 ,11037,11041,11042 ,0,0,0}, - {21130,21128,21109 ,11042,11038,11037 ,0,0,0}, {21131,21111,21112 ,11043,11041,11044 ,0,0,0}, - {21111,21131,21130 ,11041,11043,11042 ,0,0,0}, {21113,21133,21112 ,11045,11046,11044 ,0,0,0}, - {21131,21112,21133 ,11043,11044,11046 ,0,0,0}, {21114,21132,21133 ,11047,11008,11046 ,0,0,0}, - {21133,21113,21114 ,11046,11045,11047 ,0,0,0}, {21126,21106,21129 ,11032,11031,11040 ,0,0,0}, - {21128,21129,21110 ,11038,11040,11039 ,0,0,0}, {21107,21127,21108 ,11033,11034,11036 ,0,0,0}, - {21126,21127,21107 ,11032,11034,11033 ,0,0,0}, {21103,21124,21123 ,11026,11035,11027 ,0,0,0}, - {21108,21124,21103 ,11036,11035,11026 ,0,0,0}, {21105,21104,21125 ,11028,11025,11029 ,0,0,0}, - {21104,21123,21125 ,11025,11027,11029 ,0,0,0}, {21120,21100,21121 ,11019,11021,11030 ,0,0,0}, - {21100,21105,21121 ,11021,11028,11030 ,0,0,0}, {21122,21102,21099 ,11024,11023,11020 ,0,0,0}, - {21122,21099,21120 ,11024,11020,11019 ,0,0,0}, {21117,21118,21101 ,11022,11014,11013 ,0,0,0}, - {21117,21101,21102 ,11022,11013,11023 ,0,0,0}, {21096,21119,21097 ,11015,11017,11016 ,0,0,0}, - {21118,21119,21096 ,11014,11017,11015 ,0,0,0}, {21098,21115,21116 ,11011,11018,10976 ,0,0,0}, - {21097,21115,21098 ,11016,11018,11011 ,0,0,0}, {20801,21134,21135 ,11048,11049,11050 ,0,0,0}, - {20800,21136,20798 ,11051,11052,11053 ,0,0,0}, {21134,20801,21137 ,11049,11048,11054 ,0,0,0}, - {21135,21138,20801 ,11050,11048,11048 ,0,0,0}, {21137,20801,20798 ,11054,11048,11053 ,0,0,0}, - {21139,21137,20798 ,11055,11054,11053 ,0,0,0}, {21139,20798,21136 ,11055,11053,11052 ,0,0,0}, - {20836,20754,21140 ,11056,11057,11058 ,0,0,0}, {20836,21141,21142 ,11056,11059,11060 ,0,0,0}, - {21140,21141,20836 ,11058,11059,11056 ,0,0,0}, {20800,21142,21143 ,11051,11060,11061 ,0,0,0}, - {20800,20836,21142 ,11051,11056,11060 ,0,0,0}, {20800,21144,21145 ,11051,11062,11063 ,0,0,0}, - {21143,21144,20800 ,11061,11062,11051 ,0,0,0}, {20800,21146,21147 ,11051,11064,11065 ,0,0,0}, - {21145,21146,20800 ,11063,11064,11051 ,0,0,0}, {21136,20800,21148 ,11052,11051,11066 ,0,0,0}, - {21147,21148,20800 ,11065,11066,11051 ,0,0,0}, {21149,20622,21150 ,11067,11068,11069 ,0,0,0}, - {20622,21151,21152 ,11068,11070,11071 ,0,0,0}, {21152,20620,20622 ,11071,11072,11068 ,0,0,0}, - {20622,21149,21151 ,11068,11067,11070 ,0,0,0}, {20620,21153,21154 ,11072,11073,11074 ,0,0,0}, - {20620,21152,21153 ,11072,11071,11073 ,0,0,0}, {20622,21155,21150 ,11068,11075,11069 ,0,0,0}, - {20620,21154,20549 ,11072,11074,11076 ,0,0,0}, {21156,20622,20607 ,11077,11068,11078 ,0,0,0}, - {20622,21156,21155 ,11068,11077,11075 ,0,0,0}, {20609,21157,21158 ,11079,11079,11080 ,0,0,0}, - {21159,21160,20610 ,11081,11082,11083 ,0,0,0}, {21161,21162,20609 ,11084,11085,11079 ,0,0,0}, - {21161,20609,21158 ,11084,11079,11080 ,0,0,0}, {20609,21163,20610 ,11079,11086,11083 ,0,0,0}, - {21163,20609,21162 ,11086,11079,11085 ,0,0,0}, {21164,20610,21160 ,11087,11083,11082 ,0,0,0}, - {21163,21159,20610 ,11086,11081,11083 ,0,0,0}, {21156,20607,21164 ,11077,11078,11087 ,0,0,0}, - {21164,20607,20610 ,11087,11078,11083 ,0,0,0}, {21157,20609,21165 ,11088,11089,11090 ,0,0,0}, - {21006,21165,21024 ,11091,11090,11092 ,0,0,0}, {21006,20988,21165 ,11091,11093,11090 ,0,0,0}, - {21165,20988,20977 ,11090,11093,11094 ,0,0,0}, {20977,20949,21165 ,11094,11095,11090 ,0,0,0}, - {21165,20609,21024 ,11090,11089,11092 ,0,0,0}, {21166,21164,21167 ,11096,11097,11098 ,0,0,0}, - {21166,21168,21156 ,11096,324,11099 ,0,0,0}, {21156,21164,21166 ,11099,11097,11096 ,0,0,0}, - {21169,21170,21171 ,11100,11101,11102 ,0,0,0}, {21170,21172,21171 ,11101,11103,11102 ,0,0,0}, - {21170,21169,21173 ,11101,11100,11104 ,0,0,0}, {21151,21174,21173 ,11105,11106,11104 ,0,0,0}, - {21169,21151,21173 ,11100,11105,11104 ,0,0,0}, {21149,21174,21151 ,11107,11106,11105 ,0,0,0}, - {21174,21149,21175 ,11106,11107,11108 ,0,0,0}, {21150,21176,21175 ,11109,11110,11108 ,0,0,0}, - {21175,21149,21150 ,11108,11107,11109 ,0,0,0}, {21176,21155,21177 ,11110,11111,11112 ,0,0,0}, - {21155,21176,21150 ,11111,11110,11109 ,0,0,0}, {21168,21177,21156 ,11113,11112,11114 ,0,0,0}, - {21155,21156,21177 ,11111,11114,11112 ,0,0,0}, {21162,21178,21179 ,11115,11116,11117 ,0,0,0}, - {21167,21164,21160 ,11118,11119,11120 ,0,0,0}, {21160,21159,21180 ,11120,11121,11122 ,0,0,0}, - {21181,21163,21179 ,11123,11124,11117 ,0,0,0}, {21180,21159,21181 ,11122,11121,11123 ,0,0,0}, - {21160,21180,21167 ,11120,11122,11118 ,0,0,0}, {21159,21163,21181 ,11121,11124,11123 ,0,0,0}, - {21163,21162,21179 ,11124,11115,11117 ,0,0,0}, {21178,21162,21161 ,11116,11115,11125 ,0,0,0}, - {21161,21158,21182 ,11125,11126,11127 ,0,0,0}, {21182,21178,21161 ,11127,11116,11125 ,0,0,0}, - {21183,21158,21157 ,11128,11126,11129 ,0,0,0}, {21158,21183,21182 ,11126,11128,11127 ,0,0,0}, - {21183,21157,21165 ,11128,11129,11129 ,0,0,0}, {21138,21184,21185 ,11130,11130,11131 ,0,0,0}, - {21138,21185,21186 ,11130,11131,11130 ,0,0,0}, {21187,21138,21186 ,11130,11130,11130 ,0,0,0}, - {21178,21182,21138 ,11130,11130,11130 ,0,0,0}, {21178,21138,21187 ,11130,11130,11130 ,0,0,0}, - {21138,21183,21165 ,11130,11130,11131 ,0,0,0}, {21182,21183,21138 ,11130,11130,11130 ,0,0,0}, - {21138,21165,20801 ,11130,11131,11130 ,0,0,0}, {21165,20928,20908 ,11131,11130,11130 ,0,0,0}, - {21165,20949,20928 ,11131,11131,11130 ,0,0,0}, {20908,20888,21165 ,11130,11131,11131 ,0,0,0}, - {20801,21165,20869 ,11130,11131,11130 ,0,0,0}, {21165,20888,20869 ,11131,11131,11130 ,0,0,0}, - {20714,21095,21188 ,11132,11133,11134 ,0,0,0}, {21140,21189,21141 ,11135,11136,11137 ,0,0,0}, - {21190,21189,20715 ,11138,11136,11139 ,0,0,0}, {21191,21172,21192 ,11140,11141,11142 ,0,0,0}, - {21193,21191,21192 ,11143,11140,11142 ,0,0,0}, {21194,21195,21196 ,11144,11145,11146 ,0,0,0}, - {21195,21193,21196 ,11145,11143,11146 ,0,0,0}, {21189,20735,20715 ,11136,11147,11139 ,0,0,0}, - {21190,20715,20675 ,11138,11139,11148 ,0,0,0}, {21194,21142,21141 ,11144,11149,11137 ,0,0,0}, - {20754,20735,21140 ,11150,11147,11135 ,0,0,0}, {20714,21190,20675 ,11132,11138,11148 ,0,0,0}, - {21188,21197,21190 ,11134,11151,11138 ,0,0,0}, {21190,20714,21188 ,11138,11132,11134 ,0,0,0}, - {21197,21191,21193 ,11151,11140,11143 ,0,0,0}, {21195,21194,21141 ,11145,11144,11137 ,0,0,0}, - {21193,21195,21190 ,11143,11145,11138 ,0,0,0}, {21140,20735,21189 ,11135,11147,11136 ,0,0,0}, - {21193,21190,21197 ,11143,11138,11151 ,0,0,0}, {21192,21196,21193 ,11142,11146,11143 ,0,0,0}, - {21141,21189,21195 ,11137,11136,11145 ,0,0,0}, {21190,21195,21189 ,11138,11145,11136 ,0,0,0}, - {21198,21199,21200 ,11152,11153,11154 ,0,0,0}, {21201,21202,21203 ,11155,11156,11157 ,0,0,0}, - {21204,21205,21206 ,11158,11159,11160 ,0,0,0}, {21172,21170,21207 ,11161,11162,11163 ,0,0,0}, - {21208,21209,21146 ,11164,11165,11166 ,0,0,0}, {21210,21211,21212 ,11167,11168,11169 ,0,0,0}, - {21213,21214,21199 ,11170,11171,11153 ,0,0,0}, {21136,21148,21214 ,11172,11173,11171 ,0,0,0}, - {21215,21177,21168 ,11174,11175,11176 ,0,0,0}, {21198,21200,21215 ,11152,11154,11174 ,0,0,0}, - {21136,21214,21213 ,11172,11171,11170 ,0,0,0}, {21203,21200,21199 ,11157,11154,11153 ,0,0,0}, - {21148,21216,21214 ,11173,11177,11171 ,0,0,0}, {21209,21216,21147 ,11165,11177,11178 ,0,0,0}, - {21217,21208,21212 ,11179,11164,11169 ,0,0,0}, {21218,21206,21202 ,11180,11160,11156 ,0,0,0}, - {21143,21194,21210 ,11181,11182,11167 ,0,0,0}, {21205,21217,21207 ,11159,11179,11163 ,0,0,0}, - {21142,21194,21143 ,11183,11182,11181 ,0,0,0}, {21210,21194,21196 ,11167,11182,11184 ,0,0,0}, - {21147,21216,21148 ,11178,11177,11173 ,0,0,0}, {21147,21146,21209 ,11178,11166,11165 ,0,0,0}, - {21215,21200,21177 ,11174,11154,11175 ,0,0,0}, {21213,21199,21198 ,11170,11153,11152 ,0,0,0}, - {21203,21199,21201 ,11157,11153,11155 ,0,0,0}, {21176,21177,21200 ,11185,11175,11154 ,0,0,0}, - {21201,21214,21216 ,11155,11171,11177 ,0,0,0}, {21192,21172,21207 ,11186,11161,11163 ,0,0,0}, - {21200,21203,21176 ,11154,11157,11185 ,0,0,0}, {21214,21201,21199 ,11171,11155,11153 ,0,0,0}, - {21202,21201,21218 ,11156,11155,11180 ,0,0,0}, {21175,21176,21203 ,11187,11185,11157 ,0,0,0}, - {21209,21218,21216 ,11165,11180,11177 ,0,0,0}, {21145,21208,21146 ,11188,11164,11166 ,0,0,0}, - {21203,21202,21175 ,11157,11156,11187 ,0,0,0}, {21216,21218,21201 ,11177,11180,11155 ,0,0,0}, - {21206,21218,21204 ,11160,11180,11158 ,0,0,0}, {21174,21175,21202 ,11189,11187,11156 ,0,0,0}, - {21208,21204,21209 ,11164,11158,11165 ,0,0,0}, {21144,21212,21145 ,11190,11169,11188 ,0,0,0}, - {21206,21173,21174 ,11160,11191,11189 ,0,0,0}, {21209,21204,21218 ,11165,11158,11180 ,0,0,0}, - {21204,21217,21205 ,11158,11179,11159 ,0,0,0}, {21174,21202,21206 ,11189,11156,11160 ,0,0,0}, - {21145,21212,21208 ,11188,11169,11164 ,0,0,0}, {21210,21144,21143 ,11167,11190,11181 ,0,0,0}, - {21205,21170,21173 ,11159,11162,11191 ,0,0,0}, {21208,21217,21204 ,11164,11179,11158 ,0,0,0}, - {21211,21207,21217 ,11168,11163,11179 ,0,0,0}, {21173,21206,21205 ,11191,11160,11159 ,0,0,0}, - {21144,21210,21212 ,11190,11167,11169 ,0,0,0}, {21212,21211,21217 ,11169,11168,11179 ,0,0,0}, - {21196,21192,21211 ,11184,11186,11168 ,0,0,0}, {21210,21196,21211 ,11167,11184,11168 ,0,0,0}, - {21192,21207,21211 ,11186,11163,11168 ,0,0,0}, {21170,21205,21207 ,11162,11159,11163 ,0,0,0}, - {21215,21166,21219 ,11192,11193,11194 ,0,0,0}, {21139,21220,21137 ,11195,11196,11054 ,0,0,0}, - {21219,21166,21221 ,11194,11193,11197 ,0,0,0}, {21166,21167,21221 ,11193,324,11197 ,0,0,0}, - {21219,21222,21220 ,11194,11198,11196 ,0,0,0}, {21215,21168,21166 ,11192,324,11193 ,0,0,0}, - {21220,21222,21137 ,11196,11198,11054 ,0,0,0}, {21213,21220,21139 ,11199,11196,11195 ,0,0,0}, - {21136,21213,21139 ,11200,11199,11195 ,0,0,0}, {21213,21198,21220 ,11199,11201,11196 ,0,0,0}, - {21198,21215,21219 ,11201,11192,11194 ,0,0,0}, {21198,21219,21220 ,11201,11194,11196 ,0,0,0}, - {21222,21219,21221 ,11198,11194,11197 ,0,0,0}, {21187,21186,21179 ,11202,11203,11204 ,0,0,0}, - {21221,21167,21180 ,11205,324,11206 ,0,0,0}, {21180,21181,21223 ,11206,11207,11208 ,0,0,0}, - {21180,21223,21221 ,11206,11208,11205 ,0,0,0}, {21178,21187,21179 ,11209,11202,11204 ,0,0,0}, - {21185,21184,21224 ,11210,11211,11212 ,0,0,0}, {21224,21225,21185 ,11212,11213,11210 ,0,0,0}, - {21222,21223,21226 ,11214,11208,11215 ,0,0,0}, {21226,21223,21225 ,11215,11208,11213 ,0,0,0}, - {21184,21138,21135 ,11211,11216,11217 ,0,0,0}, {21222,21226,21137 ,11214,11215,11218 ,0,0,0}, - {21135,21226,21224 ,11217,11215,11212 ,0,0,0}, {21221,21223,21222 ,11205,11208,11214 ,0,0,0}, - {21135,21134,21226 ,11217,11219,11215 ,0,0,0}, {21226,21134,21137 ,11215,11219,11218 ,0,0,0}, - {21223,21181,21225 ,11208,11207,11213 ,0,0,0}, {21179,21225,21181 ,11204,11213,11207 ,0,0,0}, - {21135,21224,21184 ,11217,11212,11211 ,0,0,0}, {21226,21225,21224 ,11215,11213,11212 ,0,0,0}, - {21186,21225,21179 ,11203,11213,11204 ,0,0,0}, {21186,21185,21225 ,11203,11210,11213 ,0,0,0}, - {21060,21227,21228 ,11220,11221,11222 ,0,0,0}, {21172,21191,21229 ,11223,11224,11225 ,0,0,0}, - {21230,21229,21191 ,11226,11225,11224 ,0,0,0}, {21060,21228,21078 ,11220,11222,11227 ,0,0,0}, - {21228,21227,21230 ,11222,11221,11226 ,0,0,0}, {21188,21095,21116 ,11228,11229,11230 ,0,0,0}, - {21078,21228,21116 ,11227,11222,11230 ,0,0,0}, {21154,21227,21042 ,11231,11221,11232 ,0,0,0}, - {21231,21154,21153 ,11233,11231,11234 ,0,0,0}, {21227,21060,21042 ,11221,11220,11232 ,0,0,0}, - {21229,21169,21171 ,11225,11235,11236 ,0,0,0}, {21229,21231,21232 ,11225,11233,11237 ,0,0,0}, - {21042,20549,21154 ,11232,11238,11231 ,0,0,0}, {21169,21232,21151 ,11235,11237,11239 ,0,0,0}, - {21232,21169,21229 ,11237,11235,11225 ,0,0,0}, {21228,21188,21116 ,11222,11228,11230 ,0,0,0}, - {21227,21231,21230 ,11221,11233,11226 ,0,0,0}, {21197,21188,21228 ,11240,11228,11222 ,0,0,0}, - {21154,21231,21227 ,11231,11233,11221 ,0,0,0}, {21232,21153,21152 ,11237,11234,11241 ,0,0,0}, - {21191,21197,21230 ,11224,11240,11226 ,0,0,0}, {21228,21230,21197 ,11222,11226,11240 ,0,0,0}, - {21153,21232,21231 ,11234,11237,11233 ,0,0,0}, {21151,21232,21152 ,11239,11237,11241 ,0,0,0}, - {21229,21171,21172 ,11225,11236,11223 ,0,0,0}, {21231,21229,21230 ,11233,11225,11226 ,0,0,0}, - {21233,20674,21234 ,11242,11243,11244 ,0,0,0}, {20674,21235,21236 ,11243,11245,11246 ,0,0,0}, - {21236,20673,20674 ,11246,11247,11243 ,0,0,0}, {20674,21233,21235 ,11243,11242,11245 ,0,0,0}, - {20673,21237,21238 ,11247,11248,11249 ,0,0,0}, {20673,21236,21237 ,11247,11246,11248 ,0,0,0}, - {20674,21239,21234 ,11243,11250,11244 ,0,0,0}, {20673,21238,20569 ,11247,11249,11251 ,0,0,0}, - {21240,20674,20582 ,11252,11243,11253 ,0,0,0}, {20674,21240,21239 ,11243,11252,11250 ,0,0,0}, - {20583,21241,21242 ,11254,11254,11255 ,0,0,0}, {21243,21244,20581 ,11256,11257,11258 ,0,0,0}, - {21245,21246,20583 ,11259,11260,11254 ,0,0,0}, {21245,20583,21242 ,11259,11254,11255 ,0,0,0}, - {20583,21247,20581 ,11254,11261,11258 ,0,0,0}, {21247,20583,21246 ,11261,11254,11260 ,0,0,0}, - {21248,20581,21244 ,11262,11258,11257 ,0,0,0}, {21247,21243,20581 ,11261,11256,11258 ,0,0,0}, - {21240,20582,21248 ,11252,11253,11262 ,0,0,0}, {21248,20582,20581 ,11262,11253,11258 ,0,0,0}, - {20791,21249,21250 ,11263,11264,11265 ,0,0,0}, {20868,21251,20822 ,11266,11267,11268 ,0,0,0}, - {21249,20791,21252 ,11264,11263,11269 ,0,0,0}, {21250,21253,20791 ,11265,11263,11263 ,0,0,0}, - {21252,20791,20822 ,11269,11263,11268 ,0,0,0}, {21254,21252,20822 ,11270,11269,11268 ,0,0,0}, - {21254,20822,21251 ,11270,11268,11267 ,0,0,0}, {20825,20849,21255 ,11271,11272,11273 ,0,0,0}, - {20825,21256,21257 ,11271,11274,11275 ,0,0,0}, {21255,21256,20825 ,11273,11274,11271 ,0,0,0}, - {20868,21257,21258 ,11266,11275,11276 ,0,0,0}, {20868,20825,21257 ,11266,11271,11275 ,0,0,0}, - {20868,21259,21260 ,11266,11277,11278 ,0,0,0}, {21258,21259,20868 ,11276,11277,11266 ,0,0,0}, - {20868,21261,21262 ,11266,11279,11280 ,0,0,0}, {21260,21261,20868 ,11278,11279,11266 ,0,0,0}, - {21251,20868,21263 ,11267,11266,11281 ,0,0,0}, {21262,21263,20868 ,11280,11281,11266 ,0,0,0}, - {21132,21241,21093 ,11282,11283,11282 ,0,0,0}, {20583,21057,21241 ,11282,11282,11283 ,0,0,0}, - {21114,21264,21241 ,11282,11283,11283 ,0,0,0}, {21241,21132,21114 ,11283,11282,11282 ,0,0,0}, - {21076,21093,21241 ,11282,11282,11283 ,0,0,0}, {21076,21241,21057 ,11282,11283,11282 ,0,0,0}, - {21265,21266,21240 ,21,21,21 ,0,0,0}, {21248,21267,21265 ,11284,21,21 ,0,0,0}, - {21265,21240,21248 ,21,21,11284 ,0,0,0}, {21268,21269,21270 ,11285,11286,11287 ,0,0,0}, - {21269,21271,21270 ,11286,11288,11287 ,0,0,0}, {21269,21268,21272 ,11286,11285,11289 ,0,0,0}, - {21235,21273,21272 ,11290,11291,11289 ,0,0,0}, {21268,21235,21272 ,11285,11290,11289 ,0,0,0}, - {21233,21273,21235 ,11292,11291,11290 ,0,0,0}, {21273,21233,21274 ,11291,11292,11293 ,0,0,0}, - {21234,21275,21274 ,11294,11295,11293 ,0,0,0}, {21274,21233,21234 ,11293,11292,11294 ,0,0,0}, - {21275,21239,21276 ,11295,11296,11297 ,0,0,0}, {21239,21275,21234 ,11296,11295,11294 ,0,0,0}, - {21266,21276,21240 ,11298,11297,11299 ,0,0,0}, {21239,21240,21276 ,11296,11299,11297 ,0,0,0}, - {21277,21278,21246 ,11300,11301,11302 ,0,0,0}, {21279,21247,21278 ,11303,11304,11301 ,0,0,0}, - {21248,21244,21267 ,21,11305,21 ,0,0,0}, {21243,21280,21244 ,11306,11307,11305 ,0,0,0}, - {21243,21279,21280 ,11306,11303,11307 ,0,0,0}, {21280,21267,21244 ,11307,21,11305 ,0,0,0}, - {21247,21279,21243 ,11304,11303,11306 ,0,0,0}, {21247,21246,21278 ,11304,11302,11301 ,0,0,0}, - {21277,21246,21245 ,11300,11302,11308 ,0,0,0}, {21245,21242,21281 ,11308,11309,11310 ,0,0,0}, - {21281,21277,21245 ,11310,11300,11308 ,0,0,0}, {21282,21242,21241 ,11311,11309,11312 ,0,0,0}, - {21242,21282,21281 ,11309,11311,11310 ,0,0,0}, {21282,21241,21264 ,11311,11312,11312 ,0,0,0}, - {20752,21264,20733 ,11313,11314,11315 ,0,0,0}, {21283,21253,21284 ,11316,11317,11318 ,0,0,0}, - {21253,21277,21281 ,11317,11319,11320 ,0,0,0}, {21281,21282,21253 ,11320,11321,11317 ,0,0,0}, - {21283,21285,21253 ,11316,11322,11317 ,0,0,0}, {21253,21286,21277 ,11317,11323,11319 ,0,0,0}, - {21285,21286,21253 ,11322,11323,11317 ,0,0,0}, {21264,20791,21253 ,11314,11324,11317 ,0,0,0}, - {21282,21264,21253 ,11321,11314,11317 ,0,0,0}, {21264,20771,20791 ,11314,11325,11324 ,0,0,0}, - {20771,21264,20752 ,11325,11314,11313 ,0,0,0}, {21264,20711,20712 ,11314,11326,11327 ,0,0,0}, - {21264,21114,20711 ,11314,11314,11326 ,0,0,0}, {20712,20733,21264 ,11327,11315,11314 ,0,0,0}, - {20946,20966,21287 ,11328,11329,11330 ,0,0,0}, {21255,21288,21256 ,11331,11332,11333 ,0,0,0}, - {21289,21288,20907 ,11334,11332,11335 ,0,0,0}, {21290,21271,21291 ,11336,11337,11338 ,0,0,0}, - {21292,21290,21291 ,11339,11336,11338 ,0,0,0}, {21293,21294,21295 ,11340,11341,11342 ,0,0,0}, - {21294,21292,21295 ,11341,11339,11342 ,0,0,0}, {21288,20887,20907 ,11332,11343,11335 ,0,0,0}, - {21289,20907,20926 ,11334,11335,11344 ,0,0,0}, {21293,21257,21256 ,11340,11345,11333 ,0,0,0}, - {20849,20887,21255 ,11346,11343,11331 ,0,0,0}, {20946,21289,20926 ,11328,11334,11344 ,0,0,0}, - {21287,21296,21289 ,11330,11347,11334 ,0,0,0}, {21289,20946,21287 ,11334,11328,11330 ,0,0,0}, - {21296,21290,21292 ,11347,11336,11339 ,0,0,0}, {21294,21293,21256 ,11341,11340,11333 ,0,0,0}, - {21292,21294,21289 ,11339,11341,11334 ,0,0,0}, {21255,20887,21288 ,11331,11343,11332 ,0,0,0}, - {21292,21289,21296 ,11339,11334,11347 ,0,0,0}, {21291,21295,21292 ,11338,11342,11339 ,0,0,0}, - {21256,21288,21294 ,11333,11332,11341 ,0,0,0}, {21289,21294,21288 ,11334,11341,11332 ,0,0,0}, - {21297,21298,21299 ,11348,11349,11350 ,0,0,0}, {21273,21300,21301 ,11351,11352,11353 ,0,0,0}, - {21273,21274,21300 ,11351,11354,11352 ,0,0,0}, {21291,21269,21302 ,11355,11356,11357 ,0,0,0}, - {21303,21261,21304 ,11358,11359,11360 ,0,0,0}, {21291,21271,21269 ,11355,11361,11356 ,0,0,0}, - {21305,21306,21307 ,11362,11363,11364 ,0,0,0}, {21275,21308,21309 ,11365,11366,11367 ,0,0,0}, - {21266,21306,21310 ,21,11363,11368 ,0,0,0}, {21305,21311,21310 ,11362,11369,11368 ,0,0,0}, - {21263,21262,21312 ,11370,11371,11372 ,0,0,0}, {21262,21303,21312 ,11371,11358,11372 ,0,0,0}, - {21313,21314,21297 ,11373,11374,11348 ,0,0,0}, {21303,21304,21311 ,11358,11360,11369 ,0,0,0}, - {21315,21251,21263 ,11375,11376,11370 ,0,0,0}, {21272,21301,21302 ,11377,11353,11357 ,0,0,0}, - {21275,21309,21274 ,11365,11367,11354 ,0,0,0}, {21302,21299,21295 ,11357,11350,11378 ,0,0,0}, - {21295,21299,21293 ,11378,11350,11379 ,0,0,0}, {21293,21298,21257 ,11379,11349,11380 ,0,0,0}, - {21291,21302,21295 ,11355,11357,11378 ,0,0,0}, {21269,21272,21302 ,11356,11377,11357 ,0,0,0}, - {21298,21293,21299 ,11349,11379,11350 ,0,0,0}, {21298,21314,21258 ,11349,11374,11381 ,0,0,0}, - {21299,21301,21297 ,11350,11353,11348 ,0,0,0}, {21257,21298,21258 ,11380,11349,11381 ,0,0,0}, - {21302,21301,21299 ,11357,11353,11350 ,0,0,0}, {21272,21273,21301 ,11377,11351,11353 ,0,0,0}, - {21314,21298,21297 ,11374,11349,11348 ,0,0,0}, {21314,21316,21259 ,11374,11382,11383 ,0,0,0}, - {21297,21300,21313 ,11348,11352,11373 ,0,0,0}, {21258,21314,21259 ,11381,11374,11383 ,0,0,0}, - {21301,21300,21297 ,11353,11352,11348 ,0,0,0}, {21309,21300,21274 ,11367,11352,11354 ,0,0,0}, - {21316,21314,21313 ,11382,11374,11373 ,0,0,0}, {21316,21304,21260 ,11382,11360,11384 ,0,0,0}, - {21309,21317,21313 ,11367,11385,11373 ,0,0,0}, {21259,21316,21260 ,11383,11382,11384 ,0,0,0}, - {21309,21313,21300 ,11367,11373,11352 ,0,0,0}, {21276,21308,21275 ,11386,11366,11365 ,0,0,0}, - {21304,21316,21317 ,11360,11382,11385 ,0,0,0}, {21313,21317,21316 ,11373,11385,11382 ,0,0,0}, - {21308,21311,21317 ,11366,11369,11385 ,0,0,0}, {21260,21304,21261 ,11384,11360,11359 ,0,0,0}, - {21309,21308,21317 ,11367,11366,11385 ,0,0,0}, {21266,21310,21276 ,21,11368,11386 ,0,0,0}, - {21312,21303,21305 ,11372,11358,11362 ,0,0,0}, {21317,21311,21304 ,11385,11369,11360 ,0,0,0}, - {21311,21305,21303 ,11369,11362,11358 ,0,0,0}, {21261,21303,21262 ,11359,11358,11371 ,0,0,0}, - {21308,21276,21310 ,11366,11386,11368 ,0,0,0}, {21311,21308,21310 ,11369,11366,11368 ,0,0,0}, - {21312,21307,21315 ,11372,11364,11375 ,0,0,0}, {21306,21305,21310 ,11363,11362,11368 ,0,0,0}, - {21315,21263,21312 ,11375,11370,11372 ,0,0,0}, {21307,21312,21305 ,11364,11372,11362 ,0,0,0}, - {21306,21265,21318 ,11387,11388,11389 ,0,0,0}, {21254,21319,21252 ,11390,11391,11269 ,0,0,0}, - {21318,21265,21320 ,11389,11388,11392 ,0,0,0}, {21265,21267,21320 ,11388,21,11392 ,0,0,0}, - {21318,21321,21319 ,11389,11393,11391 ,0,0,0}, {21306,21266,21265 ,11387,21,11388 ,0,0,0}, - {21319,21321,21252 ,11391,11393,11269 ,0,0,0}, {21315,21319,21254 ,11394,11391,11390 ,0,0,0}, - {21251,21315,21254 ,11395,11394,11390 ,0,0,0}, {21315,21307,21319 ,11394,11396,11391 ,0,0,0}, - {21307,21306,21318 ,11396,11387,11389 ,0,0,0}, {21307,21318,21319 ,11396,11389,11391 ,0,0,0}, - {21321,21318,21320 ,11393,11389,11392 ,0,0,0}, {21286,21285,21278 ,11397,11398,11399 ,0,0,0}, - {21320,21267,21280 ,11400,21,11401 ,0,0,0}, {21280,21279,21322 ,11401,11402,11403 ,0,0,0}, - {21280,21322,21320 ,11401,11403,11400 ,0,0,0}, {21277,21286,21278 ,11404,11397,11399 ,0,0,0}, - {21283,21284,21323 ,11405,11406,11407 ,0,0,0}, {21323,21324,21283 ,11407,11408,11405 ,0,0,0}, - {21321,21322,21325 ,11409,11403,11410 ,0,0,0}, {21325,21322,21324 ,11410,11403,11408 ,0,0,0}, - {21284,21253,21250 ,11406,11411,11412 ,0,0,0}, {21321,21325,21252 ,11409,11410,11413 ,0,0,0}, - {21250,21325,21323 ,11412,11410,11407 ,0,0,0}, {21320,21322,21321 ,11400,11403,11409 ,0,0,0}, - {21250,21249,21325 ,11412,11414,11410 ,0,0,0}, {21325,21249,21252 ,11410,11414,11413 ,0,0,0}, - {21322,21279,21324 ,11403,11402,11408 ,0,0,0}, {21278,21324,21279 ,11399,11408,11402 ,0,0,0}, - {21250,21323,21284 ,11412,11407,11406 ,0,0,0}, {21325,21324,21323 ,11410,11408,11407 ,0,0,0}, - {21285,21324,21278 ,11398,11408,11399 ,0,0,0}, {21285,21283,21324 ,11398,11405,11408 ,0,0,0}, - {21326,21021,21327 ,11415,11416,11417 ,0,0,0}, {21040,20569,21238 ,11418,11419,11420 ,0,0,0}, - {21268,21328,21235 ,11421,11422,11423 ,0,0,0}, {21329,21290,21330 ,11424,11425,11426 ,0,0,0}, - {21290,21329,21270 ,11425,11424,11427 ,0,0,0}, {21270,21271,21290 ,11427,11428,11425 ,0,0,0}, - {21296,21330,21290 ,11429,11426,11425 ,0,0,0}, {21326,21004,21021 ,11415,11430,11416 ,0,0,0}, - {21270,21329,21268 ,11427,11424,11421 ,0,0,0}, {21328,21330,21331 ,11422,11426,11431 ,0,0,0}, - {21287,20966,20986 ,11432,11433,11434 ,0,0,0}, {21004,21326,20986 ,11430,11415,11434 ,0,0,0}, - {21331,21237,21236 ,11431,11435,11436 ,0,0,0}, {21327,21040,21238 ,11417,11418,11420 ,0,0,0}, - {21329,21330,21328 ,11424,11426,11422 ,0,0,0}, {21331,21236,21328 ,11431,11436,11422 ,0,0,0}, - {21235,21328,21236 ,11423,11422,11436 ,0,0,0}, {21268,21329,21328 ,11421,11424,11422 ,0,0,0}, - {21326,21296,21287 ,11415,11429,11432 ,0,0,0}, {21331,21326,21327 ,11431,11415,11417 ,0,0,0}, - {21331,21330,21326 ,11431,11426,11415 ,0,0,0}, {21237,21331,21327 ,11435,11431,11417 ,0,0,0}, - {21296,21326,21330 ,11429,11415,11426 ,0,0,0}, {20986,21326,21287 ,11434,11415,11432 ,0,0,0}, - {21040,21327,21021 ,11418,11417,11416 ,0,0,0}, {21327,21238,21237 ,11417,11420,11435 ,0,0,0}, - {20663,20526,20525 ,11437,11438,11439 ,0,0,0}, {21332,21333,20552 ,11440,11441,11442 ,0,0,0}, - {20599,21334,21335 ,11443,11444,11445 ,0,0,0}, {20557,20556,21336 ,11446,11447,11448 ,0,0,0}, - {20596,20631,21337 ,11449,11450,11451 ,0,0,0}, {20560,20561,21338 ,11452,11453,11454 ,0,0,0}, - {20560,21339,20556 ,11452,11455,11447 ,0,0,0}, {21340,20651,21341 ,11456,11457,11458 ,0,0,0}, - {20651,21340,20561 ,11457,11456,11453 ,0,0,0}, {21342,21341,20650 ,11459,11458,11460 ,0,0,0}, - {20651,20650,21341 ,11457,11460,11458 ,0,0,0}, {20539,20540,21342 ,21,21,11459 ,0,0,0}, - {21342,20650,20539 ,11459,11460,21 ,0,0,0}, {21338,21339,20560 ,11454,11455,11452 ,0,0,0}, - {20561,21340,21338 ,11453,11456,11454 ,0,0,0}, {21336,21337,20557 ,11448,11451,11446 ,0,0,0}, - {20556,21339,21336 ,11447,11455,11448 ,0,0,0}, {21332,20596,21337 ,11440,11449,11451 ,0,0,0}, - {20631,20557,21337 ,11450,11446,11451 ,0,0,0}, {21333,20550,20552 ,11441,11461,11442 ,0,0,0}, - {21332,20552,20596 ,11440,11442,11449 ,0,0,0}, {20599,20550,21334 ,11443,11461,11444 ,0,0,0}, - {21333,21334,20550 ,11441,11444,11461 ,0,0,0}, {20663,21335,21343 ,11437,11445,11462 ,0,0,0}, - {20599,21335,20663 ,11443,11445,11437 ,0,0,0}, {20526,20663,21343 ,11438,11437,11462 ,0,0,0}, - {21334,20505,20508 ,730,730,730 ,0,0,0}, {20521,21344,20519 ,730,730,730 ,0,0,0}, - {20521,20524,21345 ,730,730,730 ,0,0,0}, {20517,20519,21346 ,730,730,730 ,0,0,0}, - {20524,20511,21345 ,730,730,730 ,0,0,0}, {21344,20521,21345 ,730,730,730 ,0,0,0}, - {20511,20524,20526 ,730,730,730 ,0,0,0}, {20517,21347,20514 ,730,730,730 ,0,0,0}, - {21343,20511,20526 ,730,730,730 ,0,0,0}, {20493,20505,21332 ,730,730,730 ,0,0,0}, - {20528,20516,21348 ,730,730,730 ,0,0,0}, {21349,20529,20528 ,730,730,730 ,0,0,0}, - {8447,20493,21337 ,730,730,730 ,0,0,0}, {20495,21336,21339 ,730,730,730 ,0,0,0}, - {21350,20532,20529 ,730,730,730 ,0,0,0}, {20532,21351,20533 ,730,730,730 ,0,0,0}, - {20535,20533,21352 ,730,730,730 ,0,0,0}, {21339,20496,20495 ,730,730,730 ,0,0,0}, - {20496,21338,21340 ,730,730,730 ,0,0,0}, {20503,21342,20540 ,730,730,730 ,0,0,0}, - {20540,20538,20503 ,730,730,730 ,0,0,0}, {20535,21353,20538 ,730,730,730 ,0,0,0}, - {21341,20502,21340 ,730,730,730 ,0,0,0}, {20516,20514,21348 ,730,730,730 ,0,0,0}, - {20508,20510,21335 ,730,730,730 ,0,0,0}, {21337,21336,8447 ,730,730,730 ,0,0,0}, - {21344,21346,20519 ,730,730,730 ,0,0,0}, {21346,21347,20517 ,730,730,730 ,0,0,0}, - {21347,21348,20514 ,730,730,730 ,0,0,0}, {21348,21349,20528 ,730,730,730 ,0,0,0}, - {21349,21350,20529 ,730,730,730 ,0,0,0}, {21350,21351,20532 ,730,730,730 ,0,0,0}, - {21351,21352,20533 ,730,730,730 ,0,0,0}, {21352,21353,20535 ,730,730,730 ,0,0,0}, - {21353,20503,20538 ,730,730,730 ,0,0,0}, {20503,20499,21342 ,730,730,730 ,0,0,0}, - {20499,20502,21341 ,730,730,730 ,0,0,0}, {20499,21341,21342 ,730,730,730 ,0,0,0}, - {20502,20496,21340 ,730,730,730 ,0,0,0}, {21338,20496,21339 ,730,730,730 ,0,0,0}, - {20495,8447,21336 ,730,730,730 ,0,0,0}, {20493,21332,21337 ,730,730,730 ,0,0,0}, - {20505,21333,21332 ,730,730,730 ,0,0,0}, {21334,20508,21335 ,730,730,730 ,0,0,0}, - {21333,20505,21334 ,730,730,730 ,0,0,0}, {21335,20510,21343 ,730,730,730 ,0,0,0}, - {20511,21343,20510 ,730,730,730 ,0,0,0}, {20509,21354,21355 ,730,730,11463 ,0,0,0}, - {21356,21355,21357 ,730,11463,730 ,0,0,0}, {21356,21357,21358 ,730,730,11463 ,0,0,0}, - {21359,21355,21356 ,730,11463,730 ,0,0,0}, {21359,20512,21355 ,730,730,11463 ,0,0,0}, - {21358,21357,21360 ,11463,730,11464 ,0,0,0}, {20509,21355,20512 ,730,11463,730 ,0,0,0}, - {21354,20507,21361 ,730,730,11464 ,0,0,0}, {21354,20509,20507 ,730,730,730 ,0,0,0}, - {21361,20507,21362 ,11464,730,730 ,0,0,0}, {21362,20507,20506 ,730,730,11464 ,0,0,0}, - {21362,20506,20504 ,730,11464,730 ,0,0,0}, {21363,20504,20492 ,11465,730,11464 ,0,0,0}, - {20504,21363,21362 ,730,11465,730 ,0,0,0}, {20500,21363,20497 ,730,11465,730 ,0,0,0}, - {20492,20497,21363 ,11464,730,11465 ,0,0,0}, {20501,20494,20498 ,11464,730,11466 ,0,0,0}, - {20497,20494,20501 ,730,730,11464 ,0,0,0}, {20501,20500,20497 ,11464,730,730 ,0,0,0}, - {20503,21353,21363 ,11467,11468,11469 ,0,0,0}, {21355,21354,21350 ,11470,11471,11472 ,0,0,0}, - {21361,21362,21352 ,11473,11474,11475 ,0,0,0}, {21360,21348,21347 ,11476,11477,11478 ,0,0,0}, - {21349,21348,21357 ,11479,11477,11480 ,0,0,0}, {21356,21346,21344 ,11481,11482,11483 ,0,0,0}, - {21346,21356,21358 ,11482,11481,11484 ,0,0,0}, {21345,21359,21344 ,11485,11486,11483 ,0,0,0}, - {21356,21344,21359 ,11481,11483,11486 ,0,0,0}, {21345,20511,20512 ,11485,11487,11487 ,0,0,0}, - {20512,21359,21345 ,11487,11486,11485 ,0,0,0}, {21360,21347,21358 ,11476,11478,11484 ,0,0,0}, - {21347,21346,21358 ,11478,11482,11484 ,0,0,0}, {21350,21349,21355 ,11472,11479,11470 ,0,0,0}, - {21349,21357,21355 ,11479,11480,11470 ,0,0,0}, {21357,21348,21360 ,11480,11477,11476 ,0,0,0}, - {21362,21363,21353 ,11474,11469,11468 ,0,0,0}, {21351,21350,21354 ,11488,11472,11471 ,0,0,0}, - {21353,21352,21362 ,11468,11475,11474 ,0,0,0}, {21351,21361,21352 ,11488,11473,11475 ,0,0,0}, - {21354,21361,21351 ,11471,11473,11488 ,0,0,0}, {21363,20500,20503 ,11469,11489,11467 ,0,0,0}, - {20565,20480,20479 ,11490,324,11491 ,0,0,0}, {21364,21365,20647 ,11492,11493,11494 ,0,0,0}, - {20648,21366,20567 ,11495,11496,11497 ,0,0,0}, {21367,20586,21368 ,11498,11499,11500 ,0,0,0}, - {20643,20588,21369 ,11501,11502,11503 ,0,0,0}, {21370,20585,20645 ,11504,11505,11506 ,0,0,0}, - {20585,21370,21368 ,11505,11504,11500 ,0,0,0}, {20577,21371,20645 ,11507,11508,11506 ,0,0,0}, - {21370,20645,21371 ,11504,11506,11508 ,0,0,0}, {20577,20491,20490 ,11507,1095,1631 ,0,0,0}, - {20490,21371,20577 ,1631,11508,11507 ,0,0,0}, {20586,21367,20588 ,11499,11498,11502 ,0,0,0}, - {20586,20585,21368 ,11499,11505,11500 ,0,0,0}, {21364,20643,21369 ,11492,11501,11503 ,0,0,0}, - {21369,20588,21367 ,11503,11502,11498 ,0,0,0}, {21365,20648,20647 ,11493,11495,11494 ,0,0,0}, - {21364,20647,20643 ,11492,11494,11501 ,0,0,0}, {21366,21372,20567 ,11496,11509,11497 ,0,0,0}, - {21365,21366,20648 ,11493,11496,11495 ,0,0,0}, {20480,20565,21372 ,324,11490,11509 ,0,0,0}, - {20567,21372,20565 ,11497,11509,11490 ,0,0,0}, {20487,21364,20488 ,730,730,730 ,0,0,0}, - {20484,21366,20485 ,730,730,730 ,0,0,0}, {20490,21369,21367 ,730,730,730 ,0,0,0}, - {21371,21367,21368 ,730,730,730 ,0,0,0}, {21370,21371,21368 ,730,730,730 ,0,0,0}, - {20488,21369,20490 ,730,730,730 ,0,0,0}, {20490,21367,21371 ,730,730,730 ,0,0,0}, - {20488,21364,21369 ,730,730,730 ,0,0,0}, {20487,21365,21364 ,730,730,730 ,0,0,0}, - {20487,20485,21366 ,730,730,730 ,0,0,0}, {21366,21365,20487 ,730,730,730 ,0,0,0}, - {21372,21366,20484 ,730,730,730 ,0,0,0}, {21372,20481,20480 ,730,730,730 ,0,0,0}, - {20481,21372,20484 ,730,730,730 ,0,0,0}, {20480,20481,20473 ,730,730,730 ,0,0,0}, - {20476,20470,20474 ,730,730,730 ,0,0,0}, {20473,20470,20476 ,730,730,730 ,0,0,0}, - {20476,20480,20473 ,730,730,730 ,0,0,0}, {20658,20458,20459 ,11510,11511,11512 ,0,0,0}, - {21373,21374,20604 ,11492,11493,11513 ,0,0,0}, {20605,21375,20657 ,11514,11496,11515 ,0,0,0}, - {21376,20602,20601 ,11498,11516,11517 ,0,0,0}, {20618,20602,21377 ,11518,11516,11519 ,0,0,0}, - {21378,20662,20554 ,11504,11520,11521 ,0,0,0}, {20601,20662,21379 ,11517,11520,11500 ,0,0,0}, - {20553,21380,20554 ,11522,11508,11521 ,0,0,0}, {21378,20554,21380 ,11504,11521,11508 ,0,0,0}, - {20553,20469,20468 ,11522,11487,11523 ,0,0,0}, {20468,21380,20553 ,11523,11508,11522 ,0,0,0}, - {21376,20601,21379 ,11498,11517,11500 ,0,0,0}, {21379,20662,21378 ,11500,11520,11504 ,0,0,0}, - {20618,21377,21373 ,11518,11519,11492 ,0,0,0}, {21377,20602,21376 ,11519,11516,11498 ,0,0,0}, - {21374,20605,20604 ,11493,11514,11513 ,0,0,0}, {21373,20604,20618 ,11492,11513,11518 ,0,0,0}, - {21375,21381,20657 ,11496,11509,11515 ,0,0,0}, {21374,21375,20605 ,11493,11496,11514 ,0,0,0}, - {20458,20658,21381 ,11511,11510,11509 ,0,0,0}, {20657,21381,20658 ,11515,11509,11510 ,0,0,0}, - {20463,21373,20465 ,730,730,730 ,0,0,0}, {20460,21375,20462 ,730,730,730 ,0,0,0}, - {20468,21377,21376 ,730,730,730 ,0,0,0}, {21380,21376,21379 ,730,730,730 ,0,0,0}, - {21378,21380,21379 ,730,730,730 ,0,0,0}, {20465,21377,20468 ,730,730,730 ,0,0,0}, - {20468,21376,21380 ,730,730,730 ,0,0,0}, {20465,21373,21377 ,730,730,730 ,0,0,0}, - {20463,21374,21373 ,730,730,730 ,0,0,0}, {20463,20462,21375 ,730,730,730 ,0,0,0}, - {21375,21374,20463 ,730,730,730 ,0,0,0}, {21381,21375,20460 ,730,730,730 ,0,0,0}, - {21381,20448,20458 ,730,730,730 ,0,0,0}, {20448,21381,20460 ,730,730,730 ,0,0,0}, - {20458,20448,20451 ,730,730,730 ,0,0,0}, {20454,20452,20455 ,730,730,730 ,0,0,0}, - {20451,20452,20454 ,730,730,730 ,0,0,0}, {20454,20458,20451 ,730,730,730 ,0,0,0} -// X-Ufo 8ZollPropeller.prt - , {21382,21383,21384 ,8352,8353,8354 ,0,0,0}, {21382,21385,21386 ,8352,8355,8356 ,0,0,0}, - {21386,21383,21382 ,8356,8353,8352 ,0,0,0}, {21387,21385,21388 ,8357,8355,8358 ,0,0,0}, - {21385,21387,21386 ,8355,8357,8356 ,0,0,0}, {21389,21390,21391 ,8359,8360,8361 ,0,0,0}, - {21387,21388,21390 ,8357,8358,8360 ,0,0,0}, {21392,21393,21389 ,8362,3877,8359 ,0,0,0}, - {21392,21394,21393 ,8362,4346,3877 ,0,0,0}, {21392,21389,21391 ,8362,8359,8361 ,0,0,0}, - {21390,21388,21391 ,8360,8358,8361 ,0,0,0}, {21395,21384,21383 ,8363,8354,8353 ,0,0,0}, - {21396,21395,21397 ,8364,8363,8365 ,0,0,0}, {21395,21396,21384 ,8363,8364,8354 ,0,0,0}, - {21398,21399,21397 ,8366,8367,8365 ,0,0,0}, {21396,21397,21399 ,8364,8365,8367 ,0,0,0}, - {21398,21400,21401 ,8366,8368,8369 ,0,0,0}, {21401,21399,21398 ,8369,8367,8366 ,0,0,0}, - {21402,21400,21403 ,8370,8368,8371 ,0,0,0}, {21400,21402,21401 ,8368,8370,8369 ,0,0,0}, - {21402,21403,21404 ,8370,8371,8372 ,0,0,0}, {21405,21406,21407 ,8357,8373,8374 ,0,0,0}, - {21405,21408,21406 ,8357,8356,8373 ,0,0,0}, {21405,21407,21409 ,8357,8374,8360 ,0,0,0}, - {21409,21410,21411 ,8360,8375,8359 ,0,0,0}, {21410,21409,21407 ,8375,8360,8374 ,0,0,0}, - {21412,21411,21410 ,8376,8359,8375 ,0,0,0}, {21413,21406,21408 ,8377,8373,8356 ,0,0,0}, - {21412,21414,21415 ,8376,81,5000 ,0,0,0}, {21415,21411,21412 ,5000,8359,8376 ,0,0,0}, - {21413,21408,21416 ,8377,8356,8378 ,0,0,0}, {21416,21417,21413 ,8378,8379,8377 ,0,0,0}, - {21418,21417,21419 ,8380,8379,8363 ,0,0,0}, {21416,21419,21417 ,8378,8363,8379 ,0,0,0}, - {21420,21421,21418 ,8365,8381,8380 ,0,0,0}, {21418,21419,21420 ,8380,8363,8365 ,0,0,0}, - {21422,21423,21421 ,8366,8368,8381 ,0,0,0}, {21422,21421,21420 ,8366,8381,8365 ,0,0,0}, - {21424,21423,21425 ,8382,8368,8383 ,0,0,0}, {21423,21424,21421 ,8368,8382,8381 ,0,0,0}, - {21424,21425,21426 ,8382,8383,8384 ,0,0,0}, {21427,21428,15792 ,8385,8386,8387 ,0,0,0}, - {21429,21430,21431 ,8388,8389,8390 ,0,0,0}, {21432,21427,15792 ,8391,8385,8387 ,0,0,0}, - {21429,21431,21433 ,8388,8390,8392 ,0,0,0}, {21430,21429,21432 ,8389,8388,8391 ,0,0,0}, - {21430,21432,15792 ,8389,8391,8387 ,0,0,0}, {21434,21435,21436 ,8393,878,8394 ,0,0,0}, - {21436,21433,21437 ,8394,8392,8395 ,0,0,0}, {21434,21436,21437 ,8393,8394,8395 ,0,0,0}, - {21435,21434,21438 ,878,8393,8396 ,0,0,0}, {21437,21433,21431 ,8395,8392,8390 ,0,0,0}, - {21427,21439,21428 ,8385,8363,8386 ,0,0,0}, {21440,21439,21441 ,8397,8363,8398 ,0,0,0}, - {21439,21440,21428 ,8363,8397,8386 ,0,0,0}, {21442,21443,21441 ,8399,8400,8398 ,0,0,0}, - {21440,21441,21443 ,8397,8398,8400 ,0,0,0}, {21442,21444,21445 ,8399,8401,8402 ,0,0,0}, - {21445,21443,21442 ,8402,8400,8399 ,0,0,0}, {21446,21444,21447 ,8403,8401,126 ,0,0,0}, - {21444,21446,21445 ,8401,8403,8402 ,0,0,0}, {21448,21449,21450 ,8404,8405,8406 ,0,0,0}, - {21450,21449,21451 ,8406,8405,8407 ,0,0,0}, {21452,21449,21448 ,8408,8405,8404 ,0,0,0}, - {21453,21450,21451 ,8409,8406,8407 ,0,0,0}, {21452,21448,21454 ,8408,8404,8410 ,0,0,0}, - {21454,21455,21456 ,8410,8411,8412 ,0,0,0}, {21455,21454,21448 ,8411,8410,8404 ,0,0,0}, - {21453,21451,21457 ,8409,8407,8413 ,0,0,0}, {21458,21459,21456 ,8414,8415,8412 ,0,0,0}, - {21456,21455,21458 ,8412,8411,8414 ,0,0,0}, {21459,21460,21461 ,8415,5000,4114 ,0,0,0}, - {21462,21459,21458 ,8416,8415,8414 ,0,0,0}, {21462,21460,21459 ,8416,5000,8415 ,0,0,0}, - {21451,21463,21457 ,8407,8417,8413 ,0,0,0}, {21463,21464,21465 ,8417,8418,8419 ,0,0,0}, - {21465,21457,21463 ,8419,8413,8417 ,0,0,0}, {21466,21464,21467 ,8420,8418,8421 ,0,0,0}, - {21464,21466,21465 ,8418,8420,8419 ,0,0,0}, {21468,21469,21467 ,8422,8423,8421 ,0,0,0}, - {21466,21467,21469 ,8420,8421,8423 ,0,0,0}, {21468,21470,21471 ,8422,8424,8425 ,0,0,0}, - {21471,21469,21468 ,8425,8423,8422 ,0,0,0}, {21472,21470,21473 ,8426,8424,8427 ,0,0,0}, - {21470,21472,21471 ,8424,8426,8425 ,0,0,0}, {21472,21473,21474 ,8426,8427,8428 ,0,0,0}, - {21474,21473,21475 ,8428,8427,8429 ,0,0,0}, {21476,21477,21478 ,8430,8431,8432 ,0,0,0}, - {21479,21480,21481 ,8433,8434,8435 ,0,0,0}, {21482,21483,21484 ,8436,8437,8438 ,0,0,0}, - {21485,21486,21487 ,8439,8440,8441 ,0,0,0}, {21488,21489,21490 ,8442,8443,8444 ,0,0,0}, - {21490,21404,21488 ,8444,8445,8442 ,0,0,0}, {21491,21492,21493 ,8446,8447,8448 ,0,0,0}, - {21469,21494,21466 ,8449,8450,8451 ,0,0,0}, {21495,21493,21496 ,8452,8448,8453 ,0,0,0}, - {21497,21498,21499 ,8454,8455,8456 ,0,0,0}, {21500,21501,21502 ,8457,8458,8459 ,0,0,0}, - {21503,21504,21505 ,8460,8461,8462 ,0,0,0}, {21506,21494,21499 ,8463,8450,8456 ,0,0,0}, - {21507,21418,21421 ,8464,8465,8466 ,0,0,0}, {21508,21509,21505 ,8467,8468,8462 ,0,0,0}, - {21510,21511,21512 ,8469,8470,8471 ,0,0,0}, {21513,21514,21510 ,8472,8473,8469 ,0,0,0}, - {21515,21516,21513 ,8474,8475,8472 ,0,0,0}, {21517,21513,21516 ,8476,8472,8475 ,0,0,0}, - {21518,21516,21515 ,8477,8475,8474 ,0,0,0}, {21519,21520,21521 ,8478,8479,8480 ,0,0,0}, - {21522,21507,21511 ,8481,8464,8470 ,0,0,0}, {21523,21524,21519 ,8482,8483,8478 ,0,0,0}, - {21472,21474,21499 ,8484,8485,8456 ,0,0,0}, {21501,21525,21502 ,8458,8486,8459 ,0,0,0}, - {21492,21526,21493 ,8447,8487,8448 ,0,0,0}, {21527,21528,21529 ,8488,8489,8490 ,0,0,0}, - {21450,21530,21448 ,8491,8492,8493 ,0,0,0}, {21487,21526,21531 ,8441,8487,8494 ,0,0,0}, - {21532,21401,21533 ,8495,8496,8497 ,0,0,0}, {21534,21535,21485 ,8498,8499,8439 ,0,0,0}, - {21480,21536,21537 ,8434,8500,8501 ,0,0,0}, {21538,21539,21540 ,8502,8503,8504 ,0,0,0}, - {21479,21481,21541 ,8433,8435,8505 ,0,0,0}, {21477,21476,21542 ,8431,8430,8506 ,0,0,0}, - {21543,21481,21538 ,8507,8435,8502 ,0,0,0}, {21544,21545,21546 ,8508,8509,8510 ,0,0,0}, - {21545,21542,21476 ,8509,8506,8430 ,0,0,0}, {21384,21547,21382 ,8511,8512,8513 ,0,0,0}, - {21548,21478,21549 ,8514,8432,8515 ,0,0,0}, {21479,21550,21551 ,8433,8516,8517 ,0,0,0}, - {21535,21460,21552 ,8499,8518,8519 ,0,0,0}, {21538,21481,21480 ,8502,8435,8434 ,0,0,0}, - {21538,21537,21553 ,8502,8501,8520 ,0,0,0}, {21480,21537,21538 ,8434,8501,8502 ,0,0,0}, - {21554,21555,21483 ,8521,8522,8437 ,0,0,0}, {21543,21482,21556 ,8507,8436,8523 ,0,0,0}, - {21478,21392,21391 ,8432,8524,8525 ,0,0,0}, {21557,21555,21554 ,8526,8522,8521 ,0,0,0}, - {21477,21557,21554 ,8431,8526,8521 ,0,0,0}, {21545,21476,21546 ,8509,8430,8510 ,0,0,0}, - {21542,21557,21477 ,8506,8526,8431 ,0,0,0}, {21549,21478,21391 ,8515,8432,8525 ,0,0,0}, - {21478,21548,21558 ,8432,8514,8527 ,0,0,0}, {21547,21549,21382 ,8512,8515,8513 ,0,0,0}, - {21549,21547,21548 ,8515,8512,8514 ,0,0,0}, {21396,21532,21384 ,8528,8495,8511 ,0,0,0}, - {21401,21532,21399 ,8496,8495,8529 ,0,0,0}, {21532,21547,21384 ,8495,8512,8511 ,0,0,0}, - {21533,21559,21532 ,8497,8530,8495 ,0,0,0}, {21402,21533,21401 ,8531,8497,8496 ,0,0,0}, - {21533,21404,21490 ,8497,8445,8444 ,0,0,0}, {21453,21560,21530 ,8532,8533,8492 ,0,0,0}, - {21561,21496,21493 ,8534,8453,8448 ,0,0,0}, {21501,21562,21563 ,8458,8535,8536 ,0,0,0}, - {21412,21562,21414 ,8537,8535,8538 ,0,0,0}, {21561,21564,21565 ,8534,8539,8540 ,0,0,0}, - {21495,21491,21493 ,8452,8446,8448 ,0,0,0}, {21450,21453,21530 ,8491,8532,8492 ,0,0,0}, - {21492,21566,21526 ,8447,8541,8487 ,0,0,0}, {21493,21526,21567 ,8448,8487,8542 ,0,0,0}, - {21526,21487,21486 ,8487,8441,8440 ,0,0,0}, {21535,21486,21485 ,8499,8440,8439 ,0,0,0}, - {21526,21486,21568 ,8487,8440,8543 ,0,0,0}, {21569,21552,21527 ,8544,8519,8488 ,0,0,0}, - {21535,21570,21486 ,8499,8545,8440 ,0,0,0}, {21480,21551,21490 ,8434,8517,8444 ,0,0,0}, - {21550,21570,21569 ,8516,8545,8544 ,0,0,0}, {21529,21533,21490 ,8490,8497,8444 ,0,0,0}, - {21490,21489,21480 ,8444,8443,8434 ,0,0,0}, {21529,21571,21533 ,8490,8546,8497 ,0,0,0}, - {21572,21529,21528 ,8547,8490,8489 ,0,0,0}, {21530,21573,21528 ,8492,8548,8489 ,0,0,0}, - {21530,21560,21574 ,8492,8533,8549 ,0,0,0}, {21453,21457,21560 ,8532,8550,8533 ,0,0,0}, - {21457,21465,21560 ,8550,8551,8533 ,0,0,0}, {21560,21494,21575 ,8533,8450,8552 ,0,0,0}, - {21469,21499,21494 ,8449,8456,8450 ,0,0,0}, {21471,21499,21469 ,8553,8456,8449 ,0,0,0}, - {21499,21471,21472 ,8456,8553,8484 ,0,0,0}, {21560,21466,21494 ,8533,8451,8450 ,0,0,0}, - {21474,21497,21499 ,8485,8454,8456 ,0,0,0}, {21576,21562,21577 ,8554,8535,8555 ,0,0,0}, - {21524,21523,21578 ,8483,8482,8556 ,0,0,0}, {21579,21510,21519 ,8557,8469,8478 ,0,0,0}, - {21519,21510,21580 ,8478,8469,8558 ,0,0,0}, {21580,21520,21519 ,8558,8479,8478 ,0,0,0}, - {21519,21524,21579 ,8478,8483,8557 ,0,0,0}, {21581,21506,21498 ,8559,8463,8455 ,0,0,0}, - {21525,21524,21578 ,8486,8483,8556 ,0,0,0}, {21525,21578,21582 ,8486,8556,8560 ,0,0,0}, - {21502,21525,21583 ,8459,8486,8561 ,0,0,0}, {21500,21414,21501 ,8457,8538,8458 ,0,0,0}, - {21584,21561,21563 ,8562,8534,8536 ,0,0,0}, {21562,21501,21414 ,8535,8458,8538 ,0,0,0}, - {21497,21474,21585 ,8454,8485,8563 ,0,0,0}, {21496,21497,21586 ,8453,8454,8564 ,0,0,0}, - {21576,21498,21584 ,8554,8455,8562 ,0,0,0}, {21576,21587,21581 ,8554,8565,8559 ,0,0,0}, - {21588,21417,21418 ,8566,8567,8465 ,0,0,0}, {21588,21413,21417 ,8566,8568,8567 ,0,0,0}, - {21589,21588,21509 ,8569,8566,8468 ,0,0,0}, {21587,21577,21589 ,8565,8555,8569 ,0,0,0}, - {21418,21507,21588 ,8465,8464,8566 ,0,0,0}, {21426,21512,21511 ,8570,8471,8470 ,0,0,0}, - {21554,21590,21477 ,8521,8571,8431 ,0,0,0}, {21484,21483,21555 ,8438,8437,8522 ,0,0,0}, - {21543,21591,21483 ,8507,8572,8437 ,0,0,0}, {21394,21392,21590 ,8573,8524,8571 ,0,0,0}, - {21591,21590,21554 ,8572,8571,8521 ,0,0,0}, {21590,21392,21478 ,8571,8524,8432 ,0,0,0}, - {21477,21590,21478 ,8431,8571,8432 ,0,0,0}, {21558,21546,21476 ,8527,8510,8430 ,0,0,0}, - {21482,21543,21483 ,8436,8507,8437 ,0,0,0}, {21556,21541,21481 ,8523,8505,8435 ,0,0,0}, - {21590,21592,21593 ,8571,8574,8575 ,0,0,0}, {21483,21591,21554 ,8437,8572,8521 ,0,0,0}, - {21540,21591,21538 ,8504,8572,8502 ,0,0,0}, {21394,21590,21593 ,8573,8571,8575 ,0,0,0}, - {21391,21388,21549 ,8525,8576,8515 ,0,0,0}, {21558,21476,21478 ,8527,8430,8432 ,0,0,0}, - {21556,21481,21543 ,8523,8435,8507 ,0,0,0}, {21541,21594,21479 ,8505,8577,8433 ,0,0,0}, - {21539,21538,21553 ,8503,8502,8520 ,0,0,0}, {21543,21538,21591 ,8507,8502,8572 ,0,0,0}, - {21592,21591,21540 ,8574,8572,8504 ,0,0,0}, {21591,21592,21590 ,8572,8574,8571 ,0,0,0}, - {21388,21385,21549 ,8576,8578,8515 ,0,0,0}, {21549,21385,21382 ,8515,8578,8513 ,0,0,0}, - {21595,21550,21594 ,8579,8516,8577 ,0,0,0}, {21595,21596,21570 ,8579,8580,8545 ,0,0,0}, - {21536,21480,21597 ,8500,8434,8581 ,0,0,0}, {21489,21597,21480 ,8443,8581,8434 ,0,0,0}, - {21547,21532,21559 ,8512,8495,8530 ,0,0,0}, {21396,21399,21532 ,8528,8529,8495 ,0,0,0}, - {21550,21479,21594 ,8516,8433,8577 ,0,0,0}, {21598,21460,21535 ,8582,8518,8499 ,0,0,0}, - {21490,21551,21527 ,8444,8517,8488 ,0,0,0}, {21479,21551,21480 ,8433,8517,8434 ,0,0,0}, - {21527,21551,21569 ,8488,8517,8544 ,0,0,0}, {21404,21533,21402 ,8445,8497,8531 ,0,0,0}, - {21490,21527,21529 ,8444,8488,8490 ,0,0,0}, {21533,21571,21559 ,8497,8546,8530 ,0,0,0}, - {21595,21570,21550 ,8579,8545,8516 ,0,0,0}, {21599,21570,21596 ,8583,8545,8580 ,0,0,0}, - {21460,21462,21552 ,8518,8584,8519 ,0,0,0}, {21550,21569,21551 ,8516,8544,8517 ,0,0,0}, - {21535,21552,21569 ,8499,8519,8544 ,0,0,0}, {21448,21530,21455 ,8493,8492,8585 ,0,0,0}, - {21528,21527,21552 ,8489,8488,8519 ,0,0,0}, {21571,21529,21572 ,8546,8490,8547 ,0,0,0}, - {21570,21599,21486 ,8545,8583,8440 ,0,0,0}, {21568,21486,21599 ,8543,8440,8583 ,0,0,0}, - {21598,21535,21534 ,8582,8499,8498 ,0,0,0}, {21570,21535,21569 ,8545,8499,8544 ,0,0,0}, - {21462,21458,21552 ,8584,8586,8519 ,0,0,0}, {21552,21458,21455 ,8519,8586,8585 ,0,0,0}, - {21455,21528,21552 ,8585,8489,8519 ,0,0,0}, {21572,21528,21573 ,8547,8489,8548 ,0,0,0}, - {21526,21568,21567 ,8487,8543,8542 ,0,0,0}, {21566,21531,21526 ,8541,8494,8487 ,0,0,0}, - {21573,21530,21574 ,8548,8492,8549 ,0,0,0}, {21455,21530,21528 ,8585,8492,8489 ,0,0,0}, - {21567,21564,21493 ,8542,8539,8448 ,0,0,0}, {21493,21564,21561 ,8448,8539,8534 ,0,0,0}, - {21466,21560,21465 ,8451,8533,8551 ,0,0,0}, {21560,21575,21574 ,8533,8552,8549 ,0,0,0}, - {21561,21497,21496 ,8534,8454,8453 ,0,0,0}, {21565,21600,21563 ,8540,8587,8536 ,0,0,0}, - {21410,21562,21412 ,8588,8535,8537 ,0,0,0}, {21586,21497,21585 ,8564,8454,8563 ,0,0,0}, - {21584,21497,21561 ,8562,8454,8534 ,0,0,0}, {21601,21494,21506 ,8589,8450,8463 ,0,0,0}, - {21499,21498,21506 ,8456,8455,8463 ,0,0,0}, {21575,21494,21601 ,8552,8450,8589 ,0,0,0}, - {21565,21563,21561 ,8540,8536,8534 ,0,0,0}, {21600,21602,21501 ,8587,8590,8458 ,0,0,0}, - {21406,21577,21407 ,8591,8555,8592 ,0,0,0}, {21497,21584,21498 ,8454,8562,8455 ,0,0,0}, - {21584,21563,21562 ,8562,8536,8535 ,0,0,0}, {21506,21603,21604 ,8463,8593,8594 ,0,0,0}, - {21498,21576,21581 ,8455,8554,8559 ,0,0,0}, {21601,21506,21604 ,8589,8463,8594 ,0,0,0}, - {21600,21501,21563 ,8587,8458,8536 ,0,0,0}, {21602,21525,21501 ,8590,8486,8458 ,0,0,0}, - {21577,21410,21407 ,8555,8588,8592 ,0,0,0}, {21584,21562,21576 ,8562,8535,8554 ,0,0,0}, - {21562,21410,21577 ,8535,8588,8555 ,0,0,0}, {21581,21605,21603 ,8559,8595,8593 ,0,0,0}, - {21576,21577,21587 ,8554,8555,8565 ,0,0,0}, {21603,21506,21581 ,8593,8463,8559 ,0,0,0}, - {21524,21525,21602 ,8483,8486,8590 ,0,0,0}, {21582,21583,21525 ,8560,8561,8486 ,0,0,0}, - {21588,21406,21413 ,8566,8591,8568 ,0,0,0}, {21587,21606,21605 ,8565,8596,8595 ,0,0,0}, - {21577,21588,21589 ,8555,8566,8569 ,0,0,0}, {21605,21581,21587 ,8595,8559,8565 ,0,0,0}, - {21519,21521,21523 ,8478,8480,8482 ,0,0,0}, {21579,21607,21510 ,8557,8597,8469 ,0,0,0}, - {21421,21424,21511 ,8466,8598,8470 ,0,0,0}, {21421,21511,21507 ,8466,8470,8464 ,0,0,0}, - {21589,21508,21606 ,8569,8467,8596 ,0,0,0}, {21588,21577,21406 ,8566,8555,8591 ,0,0,0}, - {21588,21507,21509 ,8566,8464,8468 ,0,0,0}, {21606,21587,21589 ,8596,8565,8569 ,0,0,0}, - {21510,21512,21580 ,8469,8471,8558 ,0,0,0}, {21607,21515,21513 ,8597,8474,8472 ,0,0,0}, - {21608,21504,21503 ,8599,8461,8460 ,0,0,0}, {21426,21511,21424 ,8570,8470,8598 ,0,0,0}, - {21511,21514,21522 ,8470,8473,8481 ,0,0,0}, {21503,21509,21507 ,8460,8468,8464 ,0,0,0}, - {21522,21503,21507 ,8481,8460,8464 ,0,0,0}, {21508,21589,21509 ,8467,8569,8468 ,0,0,0}, - {21607,21513,21510 ,8597,8472,8469 ,0,0,0}, {21510,21514,21511 ,8469,8473,8470 ,0,0,0}, - {21517,21609,21514 ,8476,8600,8473 ,0,0,0}, {21513,21517,21514 ,8472,8476,8473 ,0,0,0}, - {21609,21608,21522 ,8600,8599,8481 ,0,0,0}, {21514,21609,21522 ,8473,8600,8481 ,0,0,0}, - {21608,21503,21522 ,8599,8460,8481 ,0,0,0}, {21505,21509,21503 ,8462,8468,8460 ,0,0,0}, - {21610,21611,21612 ,8601,8602,8603 ,0,0,0}, {21613,21614,21611 ,8604,8605,8602 ,0,0,0}, - {21615,21616,21617 ,8606,8607,8608 ,0,0,0}, {21618,21619,21620 ,8609,8610,8611 ,0,0,0}, - {21621,21622,21623 ,8612,8613,8614 ,0,0,0}, {21624,21625,21626 ,8615,8616,8617 ,0,0,0}, - {21627,21628,21629 ,8618,8619,8620 ,0,0,0}, {21630,21631,21632 ,8621,8622,8623 ,0,0,0}, - {21633,21634,21635 ,8624,8625,8626 ,0,0,0}, {21636,21637,21638 ,8627,8628,8629 ,0,0,0}, - {21639,21640,21633 ,8630,8631,8624 ,0,0,0}, {21633,21635,21639 ,8624,8626,8630 ,0,0,0}, - {21640,21641,21642 ,8631,8632,8633 ,0,0,0}, {21641,21640,21639 ,8632,8631,8630 ,0,0,0}, - {21643,21642,21644 ,8634,8633,8635 ,0,0,0}, {21641,21644,21642 ,8632,8635,8633 ,0,0,0}, - {21645,21646,21643 ,8636,8637,8634 ,0,0,0}, {21643,21644,21645 ,8634,8635,8636 ,0,0,0}, - {21647,21646,21645 ,8638,8637,8636 ,0,0,0}, {21634,21638,21635 ,8625,8629,8626 ,0,0,0}, - {21636,21628,21637 ,8627,8619,8628 ,0,0,0}, {21634,21636,21638 ,8625,8627,8629 ,0,0,0}, - {21627,21629,21630 ,8618,8620,8621 ,0,0,0}, {21637,21628,21627 ,8628,8619,8618 ,0,0,0}, - {21632,21631,21623 ,8623,8622,8614 ,0,0,0}, {21630,21629,21631 ,8621,8620,8622 ,0,0,0}, - {21625,21622,21621 ,8616,8613,8612 ,0,0,0}, {21622,21632,21623 ,8613,8623,8614 ,0,0,0}, - {21648,21624,21626 ,8639,8615,8617 ,0,0,0}, {21626,21625,21621 ,8617,8616,8612 ,0,0,0}, - {21615,21648,21616 ,8606,8639,8607 ,0,0,0}, {21648,21615,21624 ,8639,8606,8615 ,0,0,0}, - {21617,21618,21620 ,8608,8609,8611 ,0,0,0}, {21616,21618,21617 ,8607,8609,8608 ,0,0,0}, - {21613,21619,21614 ,8604,8610,8605 ,0,0,0}, {21620,21619,21613 ,8611,8610,8604 ,0,0,0}, - {21612,21649,21610 ,8603,8640,8601 ,0,0,0}, {21611,21614,21612 ,8602,8605,8603 ,0,0,0}, - {21650,21651,21611 ,8641,8642,8643 ,0,0,0}, {21652,21613,21651 ,8644,8645,8642 ,0,0,0}, - {21624,21615,21653 ,8646,8647,8648 ,0,0,0}, {21617,21620,21654 ,8649,8650,8651 ,0,0,0}, - {21622,21655,21632 ,8652,8653,8654 ,0,0,0}, {21656,21657,21625 ,8655,8656,8657 ,0,0,0}, - {21658,21637,21627 ,8658,8659,8660 ,0,0,0}, {21659,21630,21660 ,8661,8662,8663 ,0,0,0}, - {21639,21635,21661 ,8664,8665,8666 ,0,0,0}, {21638,21662,21663 ,8667,8668,8669 ,0,0,0}, - {21664,21641,21639 ,8670,8671,8664 ,0,0,0}, {21639,21661,21664 ,8664,8666,8670 ,0,0,0}, - {21641,21665,21644 ,8671,8672,8673 ,0,0,0}, {21665,21641,21664 ,8672,8671,8670 ,0,0,0}, - {21645,21644,21666 ,8674,8673,8675 ,0,0,0}, {21665,21666,21644 ,8672,8675,8673 ,0,0,0}, - {21667,21647,21645 ,8676,8638,8674 ,0,0,0}, {21645,21666,21667 ,8674,8675,8676 ,0,0,0}, - {21668,21647,21667 ,8677,8638,8676 ,0,0,0}, {21635,21663,21661 ,8665,8669,8666 ,0,0,0}, - {21638,21637,21662 ,8667,8659,8668 ,0,0,0}, {21635,21638,21663 ,8665,8667,8669 ,0,0,0}, - {21658,21627,21659 ,8658,8660,8661 ,0,0,0}, {21662,21637,21658 ,8668,8659,8658 ,0,0,0}, - {21660,21630,21632 ,8663,8662,8654 ,0,0,0}, {21659,21627,21630 ,8661,8660,8662 ,0,0,0}, - {21657,21655,21622 ,8656,8653,8652 ,0,0,0}, {21655,21660,21632 ,8653,8663,8654 ,0,0,0}, - {21624,21656,21625 ,8646,8655,8657 ,0,0,0}, {21625,21657,21622 ,8657,8656,8652 ,0,0,0}, - {21615,21669,21653 ,8647,8678,8648 ,0,0,0}, {21624,21653,21656 ,8646,8648,8655 ,0,0,0}, - {21654,21669,21617 ,8651,8678,8649 ,0,0,0}, {21615,21617,21669 ,8647,8649,8678 ,0,0,0}, - {21652,21620,21613 ,8644,8650,8645 ,0,0,0}, {21654,21620,21652 ,8651,8650,8644 ,0,0,0}, - {21611,21610,21650 ,8643,8601,8641 ,0,0,0}, {21651,21613,21611 ,8642,8645,8643 ,0,0,0}, - {21670,21671,21651 ,8679,8680,8681 ,0,0,0}, {21654,21652,21672 ,8651,8644,8682 ,0,0,0}, - {21656,21653,21673 ,8683,8684,8685 ,0,0,0}, {21669,21674,21675 ,8678,8686,8687 ,0,0,0}, - {21655,21676,21660 ,8688,8689,8690 ,0,0,0}, {21677,21678,21657 ,8691,8692,8693 ,0,0,0}, - {21679,21662,21680 ,8694,8695,8696 ,0,0,0}, {21658,21659,21681 ,8697,8698,8699 ,0,0,0}, - {21664,21661,21682 ,8700,8701,8702 ,0,0,0}, {21663,21683,21661 ,8703,8704,8701 ,0,0,0}, - {21684,21665,21664 ,8705,8706,8700 ,0,0,0}, {21664,21682,21684 ,8700,8702,8705 ,0,0,0}, - {21665,21685,21666 ,8706,8707,8675 ,0,0,0}, {21685,21665,21684 ,8707,8706,8705 ,0,0,0}, - {21667,21666,21686 ,8708,8675,8709 ,0,0,0}, {21685,21686,21666 ,8707,8709,8675 ,0,0,0}, - {21686,21687,21668 ,8709,8710,8677 ,0,0,0}, {21668,21667,21686 ,8677,8708,8709 ,0,0,0}, - {21682,21661,21683 ,8702,8701,8704 ,0,0,0}, {21663,21662,21679 ,8703,8695,8694 ,0,0,0}, - {21663,21679,21683 ,8703,8694,8704 ,0,0,0}, {21680,21658,21681 ,8696,8697,8699 ,0,0,0}, - {21662,21658,21680 ,8695,8697,8696 ,0,0,0}, {21688,21659,21660 ,8711,8698,8690 ,0,0,0}, - {21681,21659,21688 ,8699,8698,8711 ,0,0,0}, {21678,21676,21655 ,8692,8689,8688 ,0,0,0}, - {21676,21688,21660 ,8689,8711,8690 ,0,0,0}, {21656,21677,21657 ,8683,8691,8693 ,0,0,0}, - {21657,21678,21655 ,8693,8692,8688 ,0,0,0}, {21653,21675,21673 ,8684,8687,8685 ,0,0,0}, - {21656,21673,21677 ,8683,8685,8691 ,0,0,0}, {21669,21654,21674 ,8678,8651,8686 ,0,0,0}, - {21653,21669,21675 ,8684,8678,8687 ,0,0,0}, {21672,21652,21671 ,8682,8644,8680 ,0,0,0}, - {21674,21654,21672 ,8686,8651,8682 ,0,0,0}, {21670,21651,21650 ,8679,8681,8641 ,0,0,0}, - {21671,21652,21651 ,8680,8644,8681 ,0,0,0}, {21689,21690,21671 ,8712,8713,8714 ,0,0,0}, - {21674,21672,21691 ,8715,8716,8717 ,0,0,0}, {21677,21673,21692 ,8718,8719,8720 ,0,0,0}, - {21675,21674,21693 ,8721,8715,8722 ,0,0,0}, {21676,21694,21688 ,8723,8724,8725 ,0,0,0}, - {21695,21696,21678 ,8726,8727,8728 ,0,0,0}, {21697,21679,21680 ,8729,8730,8731 ,0,0,0}, - {21698,21681,21699 ,8732,8733,8734 ,0,0,0}, {21700,21682,21701 ,8735,8736,8737 ,0,0,0}, - {21683,21702,21701 ,8738,8739,8737 ,0,0,0}, {21700,21703,21684 ,8735,8740,8741 ,0,0,0}, - {21684,21682,21700 ,8741,8736,8735 ,0,0,0}, {21685,21703,21704 ,8742,8740,8743 ,0,0,0}, - {21703,21685,21684 ,8740,8742,8741 ,0,0,0}, {21705,21686,21704 ,8744,8745,8743 ,0,0,0}, - {21685,21704,21686 ,8742,8743,8745 ,0,0,0}, {21705,21706,21687 ,8744,8746,8710 ,0,0,0}, - {21687,21686,21705 ,8710,8745,8744 ,0,0,0}, {21701,21682,21683 ,8737,8736,8738 ,0,0,0}, - {21702,21679,21697 ,8739,8730,8729 ,0,0,0}, {21683,21679,21702 ,8738,8730,8739 ,0,0,0}, - {21698,21680,21681 ,8732,8731,8733 ,0,0,0}, {21697,21680,21698 ,8729,8731,8732 ,0,0,0}, - {21694,21699,21688 ,8724,8734,8725 ,0,0,0}, {21699,21681,21688 ,8734,8733,8725 ,0,0,0}, - {21678,21696,21676 ,8728,8727,8723 ,0,0,0}, {21696,21694,21676 ,8727,8724,8723 ,0,0,0}, - {21677,21692,21695 ,8718,8720,8726 ,0,0,0}, {21677,21695,21678 ,8718,8726,8728 ,0,0,0}, - {21673,21675,21707 ,8719,8721,8747 ,0,0,0}, {21673,21707,21692 ,8719,8747,8720 ,0,0,0}, - {21693,21674,21691 ,8722,8715,8717 ,0,0,0}, {21707,21675,21693 ,8747,8721,8722 ,0,0,0}, - {21690,21672,21671 ,8713,8716,8714 ,0,0,0}, {21691,21672,21690 ,8717,8716,8713 ,0,0,0}, - {21689,21671,21670 ,8712,8714,8679 ,0,0,0}, {21704,21708,21709 ,8748,8749,8750 ,0,0,0}, - {21706,21705,21710 ,8746,8751,8752 ,0,0,0}, {21711,21701,21712 ,8753,8754,8755 ,0,0,0}, - {21700,21713,21703 ,8756,8757,8758 ,0,0,0}, {21699,21714,21698 ,8759,8760,8761 ,0,0,0}, - {21697,21715,21702 ,8762,8763,8764 ,0,0,0}, {21716,21696,21695 ,8765,8766,8767 ,0,0,0}, - {21717,21694,21718 ,8768,8769,8770 ,0,0,0}, {21719,21707,21720 ,8771,8772,8773 ,0,0,0}, - {21692,21719,21721 ,8774,8771,8775 ,0,0,0}, {21722,21720,21693 ,8776,8773,8777 ,0,0,0}, - {21707,21693,21720 ,8772,8777,8773 ,0,0,0}, {21691,21723,21722 ,8778,8779,8776 ,0,0,0}, - {21722,21693,21691 ,8776,8777,8778 ,0,0,0}, {21723,21690,21724 ,8779,8780,8781 ,0,0,0}, - {21690,21723,21691 ,8780,8779,8778 ,0,0,0}, {21721,21695,21692 ,8775,8767,8774 ,0,0,0}, - {21724,21690,21689 ,8781,8780,8782 ,0,0,0}, {21719,21692,21707 ,8771,8774,8772 ,0,0,0}, - {21716,21718,21696 ,8765,8770,8766 ,0,0,0}, {21721,21716,21695 ,8775,8765,8767 ,0,0,0}, - {21694,21717,21699 ,8769,8768,8759 ,0,0,0}, {21696,21718,21694 ,8766,8770,8769 ,0,0,0}, - {21698,21714,21725 ,8761,8760,8783 ,0,0,0}, {21699,21717,21714 ,8759,8768,8760 ,0,0,0}, - {21725,21715,21697 ,8783,8763,8762 ,0,0,0}, {21697,21698,21725 ,8762,8761,8783 ,0,0,0}, - {21712,21701,21702 ,8755,8754,8764 ,0,0,0}, {21712,21702,21715 ,8755,8764,8763 ,0,0,0}, - {21711,21713,21700 ,8753,8757,8756 ,0,0,0}, {21711,21700,21701 ,8753,8756,8754 ,0,0,0}, - {21703,21708,21704 ,8758,8749,8748 ,0,0,0}, {21713,21708,21703 ,8757,8749,8758 ,0,0,0}, - {21705,21709,21710 ,8751,8750,8752 ,0,0,0}, {21704,21709,21705 ,8748,8750,8751 ,0,0,0}, - {21706,21710,21726 ,8746,8752,8784 ,0,0,0}, {21727,21728,21729 ,8785,8786,8787 ,0,0,0}, - {21730,21731,21732 ,8788,8789,8790 ,0,0,0}, {21731,21733,21734 ,8789,8791,8792 ,0,0,0}, - {21734,21732,21731 ,8792,8790,8789 ,0,0,0}, {21731,21729,21735 ,8789,8787,8793 ,0,0,0}, - {21733,21736,21734 ,8791,8794,8792 ,0,0,0}, {21737,21738,21739 ,8795,8796,8797 ,0,0,0}, - {21689,21728,21724 ,8782,8786,8798 ,0,0,0}, {21740,21741,21742 ,8799,8800,8801 ,0,0,0}, - {21720,21722,21743 ,8802,8803,8804 ,0,0,0}, {21744,21745,21746 ,8805,8806,8807 ,0,0,0}, - {21721,21747,21716 ,8808,8809,8810 ,0,0,0}, {21748,21749,21715 ,8811,8812,8813 ,0,0,0}, - {21750,21751,21746 ,8814,8815,8807 ,0,0,0}, {21752,21753,21754 ,8816,8817,8818 ,0,0,0}, - {21755,21749,21756 ,8819,8812,8820 ,0,0,0}, {21709,21753,21710 ,8821,8817,8822 ,0,0,0}, - {21710,21757,21726 ,8822,8823,8824 ,0,0,0}, {21758,21759,21754 ,8825,8826,8818 ,0,0,0}, - {21710,21753,21757 ,8822,8817,8823 ,0,0,0}, {21760,21752,21761 ,8827,8816,8828 ,0,0,0}, - {21758,21754,21708 ,8825,8818,8829 ,0,0,0}, {21758,21762,21763 ,8825,8830,8831 ,0,0,0}, - {21713,21762,21758 ,8832,8830,8825 ,0,0,0}, {21712,21749,21755 ,8833,8812,8819 ,0,0,0}, - {21762,21755,21764 ,8830,8819,8834 ,0,0,0}, {21762,21711,21755 ,8830,8835,8819 ,0,0,0}, - {21765,21748,21751 ,8836,8811,8815 ,0,0,0}, {21766,21749,21748 ,8837,8812,8811 ,0,0,0}, - {21751,21714,21717 ,8815,8838,8839 ,0,0,0}, {21751,21748,21725 ,8815,8811,8840 ,0,0,0}, - {21716,21744,21718 ,8810,8805,8841 ,0,0,0}, {21718,21746,21717 ,8841,8807,8839 ,0,0,0}, - {21740,21767,21747 ,8799,8842,8809 ,0,0,0}, {21747,21768,21744 ,8809,8843,8805 ,0,0,0}, - {21719,21720,21741 ,8844,8802,8800 ,0,0,0}, {21721,21719,21740 ,8808,8844,8799 ,0,0,0}, - {21738,21769,21743 ,8796,8845,8804 ,0,0,0}, {21742,21741,21769 ,8801,8800,8845 ,0,0,0}, - {21770,21723,21724 ,8846,8847,8798 ,0,0,0}, {21739,21722,21723 ,8797,8803,8847 ,0,0,0}, - {21771,21735,21729 ,8848,8793,8787 ,0,0,0}, {21770,21727,21737 ,8846,8785,8795 ,0,0,0}, - {21729,21728,21771 ,8787,8786,8848 ,0,0,0}, {21733,21731,21735 ,8791,8789,8793 ,0,0,0}, - {21772,21730,21732 ,8849,8788,8790 ,0,0,0}, {21773,21730,21772 ,8850,8788,8849 ,0,0,0}, - {21728,21689,21771 ,8786,8782,8848 ,0,0,0}, {21729,21730,21727 ,8787,8788,8785 ,0,0,0}, - {21724,21728,21770 ,8798,8786,8846 ,0,0,0}, {21731,21730,21729 ,8789,8788,8787 ,0,0,0}, - {21774,21773,21772 ,8851,8850,8849 ,0,0,0}, {21775,21773,21774 ,8852,8850,8851 ,0,0,0}, - {21728,21727,21770 ,8786,8785,8846 ,0,0,0}, {21727,21773,21737 ,8785,8850,8795 ,0,0,0}, - {21723,21770,21739 ,8847,8846,8797 ,0,0,0}, {21730,21773,21727 ,8788,8850,8785 ,0,0,0}, - {21776,21775,21774 ,8853,8852,8851 ,0,0,0}, {21777,21775,21776 ,8854,8852,8853 ,0,0,0}, - {21770,21737,21739 ,8846,8795,8797 ,0,0,0}, {21737,21775,21738 ,8795,8852,8796 ,0,0,0}, - {21722,21739,21743 ,8803,8797,8804 ,0,0,0}, {21773,21775,21737 ,8850,8852,8795 ,0,0,0}, - {21778,21777,21776 ,8855,8854,8853 ,0,0,0}, {21779,21777,21778 ,8856,8854,8855 ,0,0,0}, - {21739,21738,21743 ,8797,8796,8804 ,0,0,0}, {21738,21777,21769 ,8796,8854,8845 ,0,0,0}, - {21720,21743,21741 ,8802,8804,8800 ,0,0,0}, {21775,21777,21738 ,8852,8854,8796 ,0,0,0}, - {21780,21779,21778 ,8857,8856,8855 ,0,0,0}, {21781,21779,21780 ,8858,8856,8857 ,0,0,0}, - {21743,21769,21741 ,8804,8845,8800 ,0,0,0}, {21769,21779,21742 ,8845,8856,8801 ,0,0,0}, - {21719,21741,21740 ,8844,8800,8799 ,0,0,0}, {21777,21779,21769 ,8854,8856,8845 ,0,0,0}, - {21782,21781,21780 ,8859,8858,8857 ,0,0,0}, {21783,21784,21761 ,8860,8861,8828 ,0,0,0}, - {21785,21781,21782 ,8862,8858,8859 ,0,0,0}, {21742,21781,21767 ,8801,8858,8842 ,0,0,0}, - {21721,21740,21747 ,8808,8799,8809 ,0,0,0}, {21779,21781,21742 ,8856,8858,8801 ,0,0,0}, - {21786,21785,21782 ,8863,8862,8859 ,0,0,0}, {21787,21788,21785 ,8864,8865,8862 ,0,0,0}, - {21742,21767,21740 ,8801,8842,8799 ,0,0,0}, {21767,21785,21768 ,8842,8862,8843 ,0,0,0}, - {21716,21747,21744 ,8810,8809,8805 ,0,0,0}, {21781,21785,21767 ,8858,8862,8842 ,0,0,0}, - {21786,21787,21785 ,8863,8864,8862 ,0,0,0}, {21789,21790,21788 ,8866,8867,8865 ,0,0,0}, - {21767,21768,21747 ,8842,8843,8809 ,0,0,0}, {21768,21788,21745 ,8843,8865,8806 ,0,0,0}, - {21718,21744,21746 ,8841,8805,8807 ,0,0,0}, {21785,21788,21768 ,8862,8865,8843 ,0,0,0}, - {21787,21789,21788 ,8864,8866,8865 ,0,0,0}, {21791,21792,21790 ,8868,8869,8867 ,0,0,0}, - {21768,21745,21744 ,8843,8806,8805 ,0,0,0}, {21790,21750,21745 ,8867,8814,8806 ,0,0,0}, - {21717,21746,21751 ,8839,8807,8815 ,0,0,0}, {21788,21790,21745 ,8865,8867,8806 ,0,0,0}, - {21789,21791,21790 ,8866,8868,8867 ,0,0,0}, {21792,21793,21794 ,8869,8870,8871 ,0,0,0}, - {21745,21750,21746 ,8806,8814,8807 ,0,0,0}, {21792,21765,21750 ,8869,8836,8814 ,0,0,0}, - {21725,21714,21751 ,8840,8838,8815 ,0,0,0}, {21790,21792,21750 ,8867,8869,8814 ,0,0,0}, - {21791,21793,21792 ,8868,8870,8869 ,0,0,0}, {21794,21795,21796 ,8871,8872,8873 ,0,0,0}, - {21750,21765,21751 ,8814,8836,8815 ,0,0,0}, {21794,21766,21765 ,8871,8837,8836 ,0,0,0}, - {21715,21725,21748 ,8813,8840,8811 ,0,0,0}, {21792,21794,21765 ,8869,8871,8836 ,0,0,0}, - {21793,21795,21794 ,8870,8872,8871 ,0,0,0}, {21796,21797,21798 ,8873,8874,8875 ,0,0,0}, - {21765,21766,21748 ,8836,8837,8811 ,0,0,0}, {21796,21756,21766 ,8873,8820,8837 ,0,0,0}, - {21712,21715,21749 ,8833,8813,8812 ,0,0,0}, {21794,21796,21766 ,8871,8873,8837 ,0,0,0}, - {21795,21797,21796 ,8872,8874,8873 ,0,0,0}, {21798,21799,21800 ,8875,8876,8877 ,0,0,0}, - {21766,21756,21749 ,8837,8820,8812 ,0,0,0}, {21798,21764,21756 ,8875,8834,8820 ,0,0,0}, - {21711,21712,21755 ,8835,8833,8819 ,0,0,0}, {21796,21798,21756 ,8873,8875,8820 ,0,0,0}, - {21797,21799,21798 ,8874,8876,8875 ,0,0,0}, {21800,21801,21802 ,8877,8878,8879 ,0,0,0}, - {21756,21764,21755 ,8820,8834,8819 ,0,0,0}, {21800,21763,21764 ,8877,8831,8834 ,0,0,0}, - {21713,21711,21762 ,8832,8835,8830 ,0,0,0}, {21798,21800,21764 ,8875,8877,8834 ,0,0,0}, - {21799,21801,21800 ,8876,8878,8877 ,0,0,0}, {21761,21802,21783 ,8828,8879,8860 ,0,0,0}, - {21764,21763,21762 ,8834,8831,8830 ,0,0,0}, {21763,21802,21759 ,8831,8879,8826 ,0,0,0}, - {21708,21713,21758 ,8829,8832,8825 ,0,0,0}, {21800,21802,21763 ,8877,8879,8831 ,0,0,0}, - {21801,21783,21802 ,8878,8860,8879 ,0,0,0}, {21709,21754,21753 ,8821,8818,8817 ,0,0,0}, - {21763,21759,21758 ,8831,8826,8825 ,0,0,0}, {21761,21752,21759 ,8828,8816,8826 ,0,0,0}, - {21709,21708,21754 ,8821,8829,8818 ,0,0,0}, {21761,21759,21802 ,8828,8826,8879 ,0,0,0}, - {21784,21760,21761 ,8861,8827,8828 ,0,0,0}, {21803,21752,21760 ,8880,8816,8827 ,0,0,0}, - {21759,21752,21754 ,8826,8816,8818 ,0,0,0}, {21752,21803,21753 ,8816,8880,8817 ,0,0,0}, - {21757,21753,21803 ,8823,8817,8880 ,0,0,0}, {21804,21805,21734 ,8881,8882,8883 ,0,0,0}, - {21772,21732,21806 ,8884,8885,8886 ,0,0,0}, {21778,21776,21807 ,8887,8888,8889 ,0,0,0}, - {21774,21808,21809 ,8890,8891,8892 ,0,0,0}, {21810,21811,21786 ,8893,8894,8895 ,0,0,0}, - {21812,21813,21780 ,8896,8897,8898 ,0,0,0}, {21814,21791,21815 ,8899,8900,8901 ,0,0,0}, - {21789,21787,21816 ,8902,8903,8904 ,0,0,0}, {21797,21795,21817 ,8905,8906,8907 ,0,0,0}, - {21793,21818,21795 ,8908,8909,8906 ,0,0,0}, {21819,21799,21797 ,8910,8911,8905 ,0,0,0}, - {21797,21817,21819 ,8905,8907,8910 ,0,0,0}, {21799,21820,21801 ,8911,8912,8913 ,0,0,0}, - {21820,21799,21819 ,8912,8911,8910 ,0,0,0}, {21783,21801,21821 ,8914,8913,8915 ,0,0,0}, - {21820,21821,21801 ,8912,8915,8913 ,0,0,0}, {21821,21822,21784 ,8915,8916,8861 ,0,0,0}, - {21784,21783,21821 ,8861,8914,8915 ,0,0,0}, {21817,21795,21818 ,8907,8906,8909 ,0,0,0}, - {21793,21791,21814 ,8908,8900,8899 ,0,0,0}, {21793,21814,21818 ,8908,8899,8909 ,0,0,0}, - {21815,21789,21816 ,8901,8902,8904 ,0,0,0}, {21791,21789,21815 ,8900,8902,8901 ,0,0,0}, - {21811,21787,21786 ,8894,8903,8895 ,0,0,0}, {21816,21787,21811 ,8904,8903,8894 ,0,0,0}, - {21813,21810,21782 ,8897,8893,8917 ,0,0,0}, {21810,21786,21782 ,8893,8895,8917 ,0,0,0}, - {21778,21812,21780 ,8887,8896,8898 ,0,0,0}, {21780,21813,21782 ,8898,8897,8917 ,0,0,0}, - {21776,21809,21807 ,8888,8892,8889 ,0,0,0}, {21778,21807,21812 ,8887,8889,8896 ,0,0,0}, - {21774,21772,21808 ,8890,8884,8891 ,0,0,0}, {21776,21774,21809 ,8888,8890,8892 ,0,0,0}, - {21806,21732,21805 ,8886,8885,8882 ,0,0,0}, {21808,21772,21806 ,8891,8884,8886 ,0,0,0}, - {21804,21734,21736 ,8881,8883,8918 ,0,0,0}, {21805,21732,21734 ,8882,8885,8883 ,0,0,0}, - {21823,21824,21805 ,8919,8920,8921 ,0,0,0}, {21806,21805,21825 ,8922,8921,8923 ,0,0,0}, - {21807,21809,21826 ,8924,8925,8926 ,0,0,0}, {21808,21827,21828 ,8927,8928,8929 ,0,0,0}, - {21813,21829,21810 ,8930,8931,8932 ,0,0,0}, {21830,21831,21812 ,8933,8934,8935 ,0,0,0}, - {21832,21815,21816 ,8936,8937,8938 ,0,0,0}, {21833,21811,21834 ,8939,8940,8941 ,0,0,0}, - {21817,21818,21835 ,8942,8943,8944 ,0,0,0}, {21814,21836,21837 ,8945,8946,8947 ,0,0,0}, - {21838,21819,21817 ,8948,8949,8942 ,0,0,0}, {21817,21835,21838 ,8942,8944,8948 ,0,0,0}, - {21819,21839,21820 ,8949,8950,8951 ,0,0,0}, {21839,21819,21838 ,8950,8949,8948 ,0,0,0}, - {21821,21820,21840 ,8952,8951,8953 ,0,0,0}, {21839,21840,21820 ,8950,8953,8951 ,0,0,0}, - {21841,21822,21821 ,8954,8916,8952 ,0,0,0}, {21821,21840,21841 ,8952,8953,8954 ,0,0,0}, - {21842,21822,21841 ,8955,8916,8954 ,0,0,0}, {21818,21837,21835 ,8943,8947,8944 ,0,0,0}, - {21814,21815,21836 ,8945,8937,8946 ,0,0,0}, {21818,21814,21837 ,8943,8945,8947 ,0,0,0}, - {21832,21816,21833 ,8936,8938,8939 ,0,0,0}, {21836,21815,21832 ,8946,8937,8936 ,0,0,0}, - {21834,21811,21810 ,8941,8940,8932 ,0,0,0}, {21833,21816,21811 ,8939,8938,8940 ,0,0,0}, - {21831,21829,21813 ,8934,8931,8930 ,0,0,0}, {21829,21834,21810 ,8931,8941,8932 ,0,0,0}, - {21807,21830,21812 ,8924,8933,8935 ,0,0,0}, {21812,21831,21813 ,8935,8934,8930 ,0,0,0}, - {21809,21828,21826 ,8925,8929,8926 ,0,0,0}, {21807,21826,21830 ,8924,8926,8933 ,0,0,0}, - {21808,21806,21827 ,8927,8922,8928 ,0,0,0}, {21809,21808,21828 ,8925,8927,8929 ,0,0,0}, - {21825,21805,21824 ,8923,8921,8920 ,0,0,0}, {21827,21806,21825 ,8928,8922,8923 ,0,0,0}, - {21823,21805,21804 ,8919,8921,8881 ,0,0,0}, {21843,21844,21824 ,8956,8957,8958 ,0,0,0}, - {21845,21825,21844 ,8959,8923,8957 ,0,0,0}, {21830,21826,21846 ,8960,8961,8962 ,0,0,0}, - {21828,21827,21847 ,8929,8928,8963 ,0,0,0}, {21829,21848,21834 ,8964,8965,8966 ,0,0,0}, - {21849,21850,21831 ,8967,8968,8969 ,0,0,0}, {21851,21836,21832 ,8970,8971,8972 ,0,0,0}, - {21852,21833,21853 ,8973,8974,8975 ,0,0,0}, {21838,21835,21854 ,8948,8944,8976 ,0,0,0}, - {21837,21855,21856 ,8977,8978,8979 ,0,0,0}, {21857,21839,21838 ,8980,8950,8948 ,0,0,0}, - {21838,21854,21857 ,8948,8976,8980 ,0,0,0}, {21839,21858,21840 ,8950,8981,8953 ,0,0,0}, - {21858,21839,21857 ,8981,8950,8980 ,0,0,0}, {21841,21840,21859 ,8982,8953,8983 ,0,0,0}, - {21858,21859,21840 ,8981,8983,8953 ,0,0,0}, {21860,21842,21841 ,8984,8955,8982 ,0,0,0}, - {21841,21859,21860 ,8982,8983,8984 ,0,0,0}, {21861,21842,21860 ,8985,8955,8984 ,0,0,0}, - {21835,21856,21854 ,8944,8979,8976 ,0,0,0}, {21837,21836,21855 ,8977,8971,8978 ,0,0,0}, - {21835,21837,21856 ,8944,8977,8979 ,0,0,0}, {21851,21832,21852 ,8970,8972,8973 ,0,0,0}, - {21855,21836,21851 ,8978,8971,8970 ,0,0,0}, {21853,21833,21834 ,8975,8974,8966 ,0,0,0}, - {21852,21832,21833 ,8973,8972,8974 ,0,0,0}, {21850,21848,21829 ,8968,8965,8964 ,0,0,0}, - {21848,21853,21834 ,8965,8975,8966 ,0,0,0}, {21830,21849,21831 ,8960,8967,8969 ,0,0,0}, - {21831,21850,21829 ,8969,8968,8964 ,0,0,0}, {21826,21862,21846 ,8961,8986,8962 ,0,0,0}, - {21830,21846,21849 ,8960,8962,8967 ,0,0,0}, {21847,21862,21828 ,8963,8986,8929 ,0,0,0}, - {21826,21828,21862 ,8961,8929,8986 ,0,0,0}, {21845,21827,21825 ,8959,8928,8923 ,0,0,0}, - {21847,21827,21845 ,8963,8928,8959 ,0,0,0}, {21824,21823,21843 ,8958,8919,8956 ,0,0,0}, - {21844,21825,21824 ,8957,8923,8958 ,0,0,0}, {21863,21864,21844 ,8987,8988,8989 ,0,0,0}, - {21865,21845,21864 ,8990,8991,8988 ,0,0,0}, {21849,21846,21866 ,8992,8993,8994 ,0,0,0}, - {21862,21847,21867 ,8995,8996,8997 ,0,0,0}, {21848,21868,21853 ,8998,8999,9000 ,0,0,0}, - {21869,21870,21850 ,9001,9002,9003 ,0,0,0}, {21871,21855,21851 ,9004,9005,9006 ,0,0,0}, - {21872,21852,21873 ,9007,9008,9009 ,0,0,0}, {21874,21854,21875 ,9010,9011,9012 ,0,0,0}, - {21856,21855,21876 ,9013,9005,9014 ,0,0,0}, {21877,21858,21857 ,9015,9016,9017 ,0,0,0}, - {21857,21874,21877 ,9017,9010,9015 ,0,0,0}, {21858,21878,21859 ,9016,9018,9019 ,0,0,0}, - {21878,21858,21877 ,9018,9016,9015 ,0,0,0}, {21860,21859,21879 ,9020,9019,9021 ,0,0,0}, - {21878,21879,21859 ,9018,9021,9019 ,0,0,0}, {21880,21861,21860 ,9022,8985,9020 ,0,0,0}, - {21860,21879,21880 ,9020,9021,9022 ,0,0,0}, {21881,21861,21880 ,9023,8985,9022 ,0,0,0}, - {21874,21857,21854 ,9010,9017,9011 ,0,0,0}, {21875,21856,21876 ,9012,9013,9014 ,0,0,0}, - {21854,21856,21875 ,9011,9013,9012 ,0,0,0}, {21851,21872,21871 ,9006,9007,9004 ,0,0,0}, - {21876,21855,21871 ,9014,9005,9004 ,0,0,0}, {21873,21852,21853 ,9009,9008,9000 ,0,0,0}, - {21872,21851,21852 ,9007,9006,9008 ,0,0,0}, {21870,21868,21848 ,9002,8999,8998 ,0,0,0}, - {21868,21873,21853 ,8999,9009,9000 ,0,0,0}, {21849,21869,21850 ,8992,9001,9003 ,0,0,0}, - {21850,21870,21848 ,9003,9002,8998 ,0,0,0}, {21846,21882,21866 ,8993,9024,8994 ,0,0,0}, - {21849,21866,21869 ,8992,8994,9001 ,0,0,0}, {21867,21882,21862 ,8997,9024,8995 ,0,0,0}, - {21846,21862,21882 ,8993,8995,9024 ,0,0,0}, {21865,21847,21845 ,8990,8996,8991 ,0,0,0}, - {21867,21847,21865 ,8997,8996,8990 ,0,0,0}, {21844,21843,21863 ,8989,8956,8987 ,0,0,0}, - {21864,21845,21844 ,8988,8991,8989 ,0,0,0}, {21883,21863,21884 ,9025,8987,9026 ,0,0,0}, - {21885,21867,21886 ,9027,9028,9029 ,0,0,0}, {21887,21865,21864 ,9030,9031,9032 ,0,0,0}, - {21869,21888,21870 ,9033,9034,9035 ,0,0,0}, {21882,21889,21866 ,9036,9037,9038 ,0,0,0}, - {21890,21872,21873 ,9039,9040,9041 ,0,0,0}, {21891,21868,21892 ,9042,9043,9044 ,0,0,0}, - {21893,21876,21894 ,9045,9046,9047 ,0,0,0}, {21871,21895,21894 ,9048,9049,9047 ,0,0,0}, - {21877,21874,21896 ,9050,9051,9052 ,0,0,0}, {21875,21897,21874 ,9053,9054,9051 ,0,0,0}, - {21898,21878,21877 ,9055,9056,9050 ,0,0,0}, {21877,21896,21898 ,9050,9052,9055 ,0,0,0}, - {21878,21899,21879 ,9056,9057,9058 ,0,0,0}, {21899,21878,21898 ,9057,9056,9055 ,0,0,0}, - {21880,21879,21900 ,9059,9058,9060 ,0,0,0}, {21899,21900,21879 ,9057,9060,9058 ,0,0,0}, - {21901,21881,21880 ,9061,9023,9059 ,0,0,0}, {21880,21900,21901 ,9059,9060,9061 ,0,0,0}, - {21893,21897,21875 ,9045,9054,9053 ,0,0,0}, {21874,21897,21896 ,9051,9054,9052 ,0,0,0}, - {21876,21871,21894 ,9046,9048,9047 ,0,0,0}, {21875,21876,21893 ,9053,9046,9045 ,0,0,0}, - {21895,21872,21890 ,9049,9040,9039 ,0,0,0}, {21871,21872,21895 ,9048,9040,9049 ,0,0,0}, - {21891,21873,21868 ,9042,9041,9043 ,0,0,0}, {21890,21873,21891 ,9039,9041,9042 ,0,0,0}, - {21888,21892,21870 ,9034,9044,9035 ,0,0,0}, {21892,21868,21870 ,9044,9043,9035 ,0,0,0}, - {21866,21902,21869 ,9038,9062,9033 ,0,0,0}, {21902,21888,21869 ,9062,9034,9033 ,0,0,0}, - {21882,21885,21889 ,9036,9027,9037 ,0,0,0}, {21866,21889,21902 ,9038,9037,9062 ,0,0,0}, - {21867,21865,21886 ,9028,9031,9029 ,0,0,0}, {21882,21867,21885 ,9036,9028,9027 ,0,0,0}, - {21887,21864,21883 ,9030,9032,9025 ,0,0,0}, {21886,21865,21887 ,9029,9031,9030 ,0,0,0}, - {21863,21883,21864 ,8987,9025,9032 ,0,0,0}, {21890,21891,21903 ,9063,9064,9065 ,0,0,0}, - {21904,21891,21892 ,9066,9064,9067 ,0,0,0}, {21891,21904,21903 ,9064,9066,9065 ,0,0,0}, - {21888,21905,21892 ,9068,9069,9067 ,0,0,0}, {21904,21892,21905 ,9066,9067,9069 ,0,0,0}, - {21888,21902,21906 ,9068,9070,9071 ,0,0,0}, {21906,21905,21888 ,9071,9069,9068 ,0,0,0}, - {21907,21902,21889 ,9072,9070,9073 ,0,0,0}, {21902,21907,21906 ,9070,9072,9071 ,0,0,0}, - {21885,21908,21889 ,9074,9075,9073 ,0,0,0}, {21907,21889,21908 ,9072,9073,9075 ,0,0,0}, - {21885,21886,21909 ,9074,9076,9077 ,0,0,0}, {21909,21908,21885 ,9077,9075,9074 ,0,0,0}, - {21910,21886,21887 ,9078,9076,9079 ,0,0,0}, {21886,21910,21909 ,9076,9078,9077 ,0,0,0}, - {21883,21911,21887 ,9080,9081,9079 ,0,0,0}, {21910,21887,21911 ,9078,9079,9081 ,0,0,0}, - {21884,21912,21911 ,9082,9083,9081 ,0,0,0}, {21911,21883,21884 ,9081,9080,9082 ,0,0,0}, - {21890,21903,21913 ,9063,9065,9084 ,0,0,0}, {21913,21914,21895 ,9084,9085,9086 ,0,0,0}, - {21895,21890,21913 ,9086,9063,9084 ,0,0,0}, {21894,21914,21915 ,9087,9085,9088 ,0,0,0}, - {21914,21894,21895 ,9085,9087,9086 ,0,0,0}, {21916,21893,21915 ,9089,9090,9088 ,0,0,0}, - {21894,21915,21893 ,9087,9088,9090 ,0,0,0}, {21916,21917,21897 ,9089,9091,9092 ,0,0,0}, - {21897,21893,21916 ,9092,9090,9089 ,0,0,0}, {21896,21917,21918 ,9093,9091,9094 ,0,0,0}, - {21917,21896,21897 ,9091,9093,9092 ,0,0,0}, {21919,21898,21918 ,9095,9096,9094 ,0,0,0}, - {21896,21918,21898 ,9093,9094,9096 ,0,0,0}, {21919,21920,21899 ,9095,9097,9098 ,0,0,0}, - {21899,21898,21919 ,9098,9096,9095 ,0,0,0}, {21900,21920,21921 ,9099,9097,9100 ,0,0,0}, - {21920,21900,21899 ,9097,9099,9098 ,0,0,0}, {21900,21921,21901 ,9099,9100,9101 ,0,0,0}, - {21922,21912,21923 ,9102,9103,9104 ,0,0,0}, {21924,21908,21925 ,9105,9106,9107 ,0,0,0}, - {21922,21926,21910 ,9102,9108,9109 ,0,0,0}, {21905,21927,21928 ,9110,9111,9112 ,0,0,0}, - {21907,21929,21906 ,9113,9114,9115 ,0,0,0}, {21930,21931,21913 ,9116,9117,9118 ,0,0,0}, - {21932,21903,21904 ,9119,9120,9121 ,0,0,0}, {21933,21916,21934 ,9122,9123,9124 ,0,0,0}, - {21915,21914,21935 ,9125,9126,9127 ,0,0,0}, {21936,21918,21917 ,9128,9129,9130 ,0,0,0}, - {21917,21933,21936 ,9130,9122,9128 ,0,0,0}, {21918,21937,21919 ,9129,9131,9132 ,0,0,0}, - {21937,21918,21936 ,9131,9129,9128 ,0,0,0}, {21920,21919,21938 ,9133,9132,9134 ,0,0,0}, - {21937,21938,21919 ,9131,9134,9132 ,0,0,0}, {21939,21921,21920 ,9135,9100,9133 ,0,0,0}, - {21920,21938,21939 ,9133,9134,9135 ,0,0,0}, {21916,21915,21934 ,9123,9125,9124 ,0,0,0}, - {21917,21916,21933 ,9130,9123,9122 ,0,0,0}, {21935,21914,21931 ,9127,9126,9117 ,0,0,0}, - {21934,21915,21935 ,9124,9125,9127 ,0,0,0}, {21930,21913,21903 ,9116,9118,9120 ,0,0,0}, - {21931,21914,21913 ,9117,9126,9118 ,0,0,0}, {21928,21932,21904 ,9112,9119,9121 ,0,0,0}, - {21932,21930,21903 ,9119,9116,9120 ,0,0,0}, {21906,21927,21905 ,9115,9111,9110 ,0,0,0}, - {21905,21928,21904 ,9110,9112,9121 ,0,0,0}, {21907,21924,21929 ,9113,9105,9114 ,0,0,0}, - {21906,21929,21927 ,9115,9114,9111 ,0,0,0}, {21908,21909,21925 ,9106,9136,9107 ,0,0,0}, - {21907,21908,21924 ,9113,9106,9105 ,0,0,0}, {21910,21926,21909 ,9109,9108,9136 ,0,0,0}, - {21925,21909,21926 ,9107,9136,9108 ,0,0,0}, {21922,21911,21912 ,9102,9137,9103 ,0,0,0}, - {21922,21910,21911 ,9102,9109,9137 ,0,0,0}, {21940,21923,21941 ,9138,9139,9140 ,0,0,0}, - {21942,21925,21943 ,9141,9142,9143 ,0,0,0}, {21944,21926,21922 ,9144,9145,9146 ,0,0,0}, - {21927,21945,21928 ,9147,9148,9149 ,0,0,0}, {21924,21946,21929 ,9150,9151,9152 ,0,0,0}, - {21947,21948,21930 ,9153,9154,9155 ,0,0,0}, {21947,21932,21949 ,9153,9156,9157 ,0,0,0}, - {21950,21934,21951 ,9158,9159,9160 ,0,0,0}, {21935,21931,21952 ,9161,9162,9163 ,0,0,0}, - {21953,21936,21933 ,9164,9165,9166 ,0,0,0}, {21933,21950,21953 ,9166,9158,9164 ,0,0,0}, - {21936,21954,21937 ,9165,9167,9168 ,0,0,0}, {21954,21936,21953 ,9167,9165,9164 ,0,0,0}, - {21938,21937,21955 ,9169,9168,9170 ,0,0,0}, {21954,21955,21937 ,9167,9170,9168 ,0,0,0}, - {21956,21939,21938 ,9171,9172,9169 ,0,0,0}, {21938,21955,21956 ,9169,9170,9171 ,0,0,0}, - {21934,21935,21951 ,9159,9161,9160 ,0,0,0}, {21933,21934,21950 ,9166,9159,9158 ,0,0,0}, - {21952,21931,21948 ,9163,9162,9154 ,0,0,0}, {21951,21935,21952 ,9160,9161,9163 ,0,0,0}, - {21947,21930,21932 ,9153,9155,9156 ,0,0,0}, {21948,21931,21930 ,9154,9162,9155 ,0,0,0}, - {21945,21949,21928 ,9148,9157,9149 ,0,0,0}, {21949,21932,21928 ,9157,9156,9149 ,0,0,0}, - {21929,21957,21927 ,9152,9173,9147 ,0,0,0}, {21957,21945,21927 ,9173,9148,9147 ,0,0,0}, - {21924,21942,21946 ,9150,9141,9151 ,0,0,0}, {21929,21946,21957 ,9152,9151,9173 ,0,0,0}, - {21925,21926,21943 ,9142,9145,9143 ,0,0,0}, {21924,21925,21942 ,9150,9142,9141 ,0,0,0}, - {21944,21922,21940 ,9144,9146,9138 ,0,0,0}, {21943,21926,21944 ,9143,9145,9144 ,0,0,0}, - {21923,21940,21922 ,9139,9138,9146 ,0,0,0}, {21958,21941,21959 ,9174,9175,9176 ,0,0,0}, - {21960,21943,21961 ,9177,9178,9179 ,0,0,0}, {21962,21944,21940 ,9180,9181,9182 ,0,0,0}, - {21957,21963,21964 ,9183,9184,9185 ,0,0,0}, {21942,21965,21946 ,9186,9187,9188 ,0,0,0}, - {21966,21967,21947 ,9189,9190,9191 ,0,0,0}, {21966,21949,21968 ,9189,9192,9193 ,0,0,0}, - {21969,21951,21970 ,9194,9195,9196 ,0,0,0}, {21952,21948,21971 ,9197,9198,9199 ,0,0,0}, - {21972,21953,21950 ,9200,9201,9202 ,0,0,0}, {21950,21969,21972 ,9202,9194,9200 ,0,0,0}, - {21953,21973,21954 ,9201,9203,9204 ,0,0,0}, {21973,21953,21972 ,9203,9201,9200 ,0,0,0}, - {21955,21954,21974 ,9205,9204,9206 ,0,0,0}, {21973,21974,21954 ,9203,9206,9204 ,0,0,0}, - {21975,21956,21955 ,9207,9208,9205 ,0,0,0}, {21955,21974,21975 ,9205,9206,9207 ,0,0,0}, - {21951,21952,21970 ,9195,9197,9196 ,0,0,0}, {21950,21951,21969 ,9202,9195,9194 ,0,0,0}, - {21971,21948,21967 ,9199,9198,9190 ,0,0,0}, {21970,21952,21971 ,9196,9197,9199 ,0,0,0}, - {21966,21947,21949 ,9189,9191,9192 ,0,0,0}, {21967,21948,21947 ,9190,9198,9191 ,0,0,0}, - {21964,21968,21945 ,9185,9193,9209 ,0,0,0}, {21968,21949,21945 ,9193,9192,9209 ,0,0,0}, - {21946,21963,21957 ,9188,9184,9183 ,0,0,0}, {21957,21964,21945 ,9183,9185,9209 ,0,0,0}, - {21942,21960,21965 ,9186,9177,9187 ,0,0,0}, {21946,21965,21963 ,9188,9187,9184 ,0,0,0}, - {21943,21944,21961 ,9178,9181,9179 ,0,0,0}, {21942,21943,21960 ,9186,9178,9177 ,0,0,0}, - {21962,21940,21958 ,9180,9182,9174 ,0,0,0}, {21961,21944,21962 ,9179,9181,9180 ,0,0,0}, - {21941,21958,21940 ,9175,9174,9182 ,0,0,0}, {21546,21959,21544 ,9210,9211,9212 ,0,0,0}, - {21547,21961,21548 ,9213,9214,9215 ,0,0,0}, {21558,21962,21958 ,9216,9217,9218 ,0,0,0}, - {21963,21571,21572 ,9219,9220,9221 ,0,0,0}, {21960,21559,21965 ,9222,9223,9224 ,0,0,0}, - {21574,21575,21966 ,9225,9226,9227 ,0,0,0}, {21573,21968,21964 ,9228,9229,9230 ,0,0,0}, - {21604,21970,21971 ,9231,9232,9233 ,0,0,0}, {21601,21967,21575 ,9234,9235,9226 ,0,0,0}, - {21605,21972,21969 ,9236,9237,9238 ,0,0,0}, {21969,21603,21605 ,9238,9239,9236 ,0,0,0}, - {21972,21606,21973 ,9237,9240,9241 ,0,0,0}, {21606,21972,21605 ,9240,9237,9236 ,0,0,0}, - {21973,21508,21505 ,9241,9242,9243 ,0,0,0}, {21606,21508,21973 ,9240,9242,9241 ,0,0,0}, - {21504,21974,21505 ,8461,9244,9243 ,0,0,0}, {21973,21505,21974 ,9241,9243,9244 ,0,0,0}, - {21975,21974,21504 ,9207,9244,8461 ,0,0,0}, {21603,21970,21604 ,9239,9232,9231 ,0,0,0}, - {21969,21970,21603 ,9238,9232,9239 ,0,0,0}, {21601,21971,21967 ,9234,9233,9235 ,0,0,0}, - {21604,21971,21601 ,9231,9233,9234 ,0,0,0}, {21966,21968,21574 ,9227,9229,9225 ,0,0,0}, - {21575,21967,21966 ,9226,9235,9227 ,0,0,0}, {21572,21573,21964 ,9221,9228,9230 ,0,0,0}, - {21573,21574,21968 ,9228,9225,9229 ,0,0,0}, {21965,21571,21963 ,9224,9220,9219 ,0,0,0}, - {21963,21572,21964 ,9219,9221,9230 ,0,0,0}, {21960,21547,21559 ,9222,9213,9223 ,0,0,0}, - {21965,21559,21571 ,9224,9223,9220 ,0,0,0}, {21961,21962,21548 ,9214,9217,9215 ,0,0,0}, - {21960,21961,21547 ,9222,9214,9213 ,0,0,0}, {21558,21958,21546 ,9216,9218,9210 ,0,0,0}, - {21548,21962,21558 ,9215,9217,9216 ,0,0,0}, {21959,21546,21958 ,9211,9210,9218 ,0,0,0}, - {21976,21484,21977 ,9245,8438,9246 ,0,0,0}, {21978,21594,21541 ,9247,9248,9249 ,0,0,0}, - {21979,21556,21482 ,9250,9251,9252 ,0,0,0}, {21599,21980,21981 ,9253,9254,9255 ,0,0,0}, - {21595,21982,21596 ,9256,9257,9258 ,0,0,0}, {21983,21984,21564 ,9259,9260,9261 ,0,0,0}, - {21985,21567,21568 ,9262,9263,9264 ,0,0,0}, {21986,21602,21987 ,9265,9266,9267 ,0,0,0}, - {21600,21565,21988 ,9268,9269,9270 ,0,0,0}, {21989,21579,21524 ,9271,9272,9273 ,0,0,0}, - {21524,21986,21989 ,9273,9265,9271 ,0,0,0}, {21579,21990,21607 ,9272,9274,9275 ,0,0,0}, - {21990,21579,21989 ,9274,9272,9271 ,0,0,0}, {21515,21607,21991 ,9276,9275,9277 ,0,0,0}, - {21990,21991,21607 ,9274,9277,9275 ,0,0,0}, {21992,21518,21515 ,9278,9279,9276 ,0,0,0}, - {21515,21991,21992 ,9276,9277,9278 ,0,0,0}, {21602,21600,21987 ,9266,9268,9267 ,0,0,0}, - {21524,21602,21986 ,9273,9266,9265 ,0,0,0}, {21988,21565,21984 ,9270,9269,9260 ,0,0,0}, - {21987,21600,21988 ,9267,9268,9270 ,0,0,0}, {21983,21564,21567 ,9259,9261,9263 ,0,0,0}, - {21984,21565,21564 ,9260,9269,9261 ,0,0,0}, {21981,21985,21568 ,9255,9262,9264 ,0,0,0}, - {21985,21983,21567 ,9262,9259,9263 ,0,0,0}, {21596,21980,21599 ,9258,9254,9253 ,0,0,0}, - {21599,21981,21568 ,9253,9255,9264 ,0,0,0}, {21595,21993,21982 ,9256,9280,9257 ,0,0,0}, - {21596,21982,21980 ,9258,9257,9254 ,0,0,0}, {21978,21993,21594 ,9247,9280,9248 ,0,0,0}, - {21595,21594,21993 ,9256,9248,9280 ,0,0,0}, {21979,21541,21556 ,9250,9249,9251 ,0,0,0}, - {21978,21541,21979 ,9247,9249,9250 ,0,0,0}, {21976,21482,21484 ,9245,9252,8438 ,0,0,0}, - {21979,21482,21976 ,9250,9252,9245 ,0,0,0}, {21994,21977,21995 ,9281,9246,9282 ,0,0,0}, - {21996,21978,21997 ,9283,9284,9285 ,0,0,0}, {21998,21979,21976 ,9286,9287,9288 ,0,0,0}, - {21980,21999,22000 ,9289,9290,9291 ,0,0,0}, {21993,22001,21982 ,9292,9293,9294 ,0,0,0}, - {22002,21984,21983 ,9295,9296,9297 ,0,0,0}, {22003,21985,22004 ,9298,9299,9300 ,0,0,0}, - {22005,21987,22006 ,9301,9302,9303 ,0,0,0}, {21988,21984,22007 ,9304,9296,9305 ,0,0,0}, - {22008,21989,21986 ,9306,9307,9308 ,0,0,0}, {21986,22005,22008 ,9308,9301,9306 ,0,0,0}, - {21989,22009,21990 ,9307,9309,9310 ,0,0,0}, {22009,21989,22008 ,9309,9307,9306 ,0,0,0}, - {21991,21990,22010 ,9311,9310,9312 ,0,0,0}, {22009,22010,21990 ,9309,9312,9310 ,0,0,0}, - {22011,21992,21991 ,9313,9314,9311 ,0,0,0}, {21991,22010,22011 ,9311,9312,9313 ,0,0,0}, - {21987,21988,22006 ,9302,9304,9303 ,0,0,0}, {21986,21987,22005 ,9308,9302,9301 ,0,0,0}, - {22007,21984,22002 ,9305,9296,9295 ,0,0,0}, {22006,21988,22007 ,9303,9304,9305 ,0,0,0}, - {22003,21983,21985 ,9298,9297,9299 ,0,0,0}, {22002,21983,22003 ,9295,9297,9298 ,0,0,0}, - {22000,22004,21981 ,9291,9300,9315 ,0,0,0}, {22004,21985,21981 ,9300,9299,9315 ,0,0,0}, - {21982,21999,21980 ,9294,9290,9289 ,0,0,0}, {21980,22000,21981 ,9289,9291,9315 ,0,0,0}, - {21993,21996,22001 ,9292,9283,9293 ,0,0,0}, {21982,22001,21999 ,9294,9293,9290 ,0,0,0}, - {21978,21979,21997 ,9284,9287,9285 ,0,0,0}, {21993,21978,21996 ,9292,9284,9283 ,0,0,0}, - {21998,21976,21994 ,9286,9288,9281 ,0,0,0}, {21997,21979,21998 ,9285,9287,9286 ,0,0,0}, - {21977,21994,21976 ,9246,9281,9288 ,0,0,0}, {22012,21995,22013 ,9316,9282,9317 ,0,0,0}, - {22014,21997,22015 ,9318,9319,9320 ,0,0,0}, {22016,21998,21994 ,9321,9322,9323 ,0,0,0}, - {21999,22017,22000 ,9324,9325,9326 ,0,0,0}, {21996,22018,22001 ,9327,9328,9329 ,0,0,0}, - {22019,22002,22003 ,9330,9331,9332 ,0,0,0}, {22020,22004,22021 ,9333,9334,9335 ,0,0,0}, - {22022,22006,22023 ,9336,9337,9338 ,0,0,0}, {22007,22002,22024 ,9339,9331,9340 ,0,0,0}, - {22025,22008,22005 ,9341,9342,9343 ,0,0,0}, {22005,22022,22025 ,9343,9336,9341 ,0,0,0}, - {22008,22026,22009 ,9342,9344,9345 ,0,0,0}, {22026,22008,22025 ,9344,9342,9341 ,0,0,0}, - {22010,22009,22027 ,9346,9345,9347 ,0,0,0}, {22026,22027,22009 ,9344,9347,9345 ,0,0,0}, - {22028,22011,22010 ,9348,9349,9346 ,0,0,0}, {22010,22027,22028 ,9346,9347,9348 ,0,0,0}, - {22006,22007,22023 ,9337,9339,9338 ,0,0,0}, {22005,22006,22022 ,9343,9337,9336 ,0,0,0}, - {22024,22002,22019 ,9340,9331,9330 ,0,0,0}, {22023,22007,22024 ,9338,9339,9340 ,0,0,0}, - {22020,22003,22004 ,9333,9332,9334 ,0,0,0}, {22019,22003,22020 ,9330,9332,9333 ,0,0,0}, - {22017,22021,22000 ,9325,9335,9326 ,0,0,0}, {22021,22004,22000 ,9335,9334,9326 ,0,0,0}, - {22001,22029,21999 ,9329,9350,9324 ,0,0,0}, {22029,22017,21999 ,9350,9325,9324 ,0,0,0}, - {21996,22014,22018 ,9327,9318,9328 ,0,0,0}, {22001,22018,22029 ,9329,9328,9350 ,0,0,0}, - {21997,21998,22015 ,9319,9322,9320 ,0,0,0}, {21996,21997,22014 ,9327,9319,9318 ,0,0,0}, - {22016,21994,22012 ,9321,9323,9316 ,0,0,0}, {22015,21998,22016 ,9320,9322,9321 ,0,0,0}, - {21995,22012,21994 ,9282,9316,9323 ,0,0,0}, {21612,22030,21649 ,9351,9352,8640 ,0,0,0}, - {21618,22031,21619 ,9353,9354,9355 ,0,0,0}, {21614,22032,22033 ,9356,9357,9358 ,0,0,0}, - {22034,21626,22035 ,9359,9360,9361 ,0,0,0}, {22036,21616,22037 ,9362,9363,9364 ,0,0,0}, - {21631,22038,22039 ,9365,9366,9367 ,0,0,0}, {21623,22040,21621 ,9368,9369,9370 ,0,0,0}, - {22041,22042,21636 ,9371,9372,9373 ,0,0,0}, {22043,21629,21628 ,9374,9375,9376 ,0,0,0}, - {22044,22045,21633 ,9377,9378,9379 ,0,0,0}, {21634,21633,22045 ,9380,9379,9378 ,0,0,0}, - {21640,22046,22044 ,9381,9382,9377 ,0,0,0}, {22044,21633,21640 ,9377,9379,9381 ,0,0,0}, - {22046,21642,22047 ,9382,9383,9384 ,0,0,0}, {21642,22046,21640 ,9383,9382,9381 ,0,0,0}, - {22048,22047,21643 ,9385,9384,9386 ,0,0,0}, {21642,21643,22047 ,9383,9386,9384 ,0,0,0}, - {21646,22049,22048 ,8637,9387,9385 ,0,0,0}, {22048,21643,21646 ,9385,9386,8637 ,0,0,0}, - {21636,21634,22041 ,9373,9380,9371 ,0,0,0}, {22041,21634,22045 ,9371,9380,9378 ,0,0,0}, - {22042,22043,21628 ,9372,9374,9376 ,0,0,0}, {22042,21628,21636 ,9372,9376,9373 ,0,0,0}, - {21629,22038,21631 ,9375,9366,9365 ,0,0,0}, {22043,22038,21629 ,9374,9366,9375 ,0,0,0}, - {21623,22039,22040 ,9368,9367,9369 ,0,0,0}, {21631,22039,21623 ,9365,9367,9368 ,0,0,0}, - {21626,21621,22035 ,9360,9370,9361 ,0,0,0}, {21621,22040,22035 ,9370,9369,9361 ,0,0,0}, - {22037,21648,22034 ,9364,9388,9359 ,0,0,0}, {21648,21626,22034 ,9388,9360,9359 ,0,0,0}, - {22036,21618,21616 ,9362,9353,9363 ,0,0,0}, {22037,21616,21648 ,9364,9363,9388 ,0,0,0}, - {22031,22032,21619 ,9354,9357,9355 ,0,0,0}, {22036,22031,21618 ,9362,9354,9353 ,0,0,0}, - {21614,22033,21612 ,9356,9358,9351 ,0,0,0}, {21619,22032,21614 ,9355,9357,9356 ,0,0,0}, - {22030,21612,22033 ,9352,9351,9358 ,0,0,0}, {22050,22013,22051 ,9389,9317,9390 ,0,0,0}, - {22052,22015,22053 ,9391,9392,9393 ,0,0,0}, {22054,22016,22012 ,9394,9395,9396 ,0,0,0}, - {22029,22055,22056 ,9397,9398,9399 ,0,0,0}, {22014,22057,22018 ,9400,9401,9402 ,0,0,0}, - {22058,22059,22020 ,9403,9404,9405 ,0,0,0}, {22060,22021,22017 ,9406,9407,9408 ,0,0,0}, - {22061,22023,22024 ,9409,9410,9411 ,0,0,0}, {22024,22019,22062 ,9411,9412,9413 ,0,0,0}, - {22063,22025,22022 ,9414,9415,9416 ,0,0,0}, {22022,22064,22063 ,9416,9417,9414 ,0,0,0}, - {22025,22065,22026 ,9415,9418,9419 ,0,0,0}, {22065,22025,22063 ,9418,9415,9414 ,0,0,0}, - {22027,22026,22066 ,9420,9419,9421 ,0,0,0}, {22065,22066,22026 ,9418,9421,9419 ,0,0,0}, - {22067,22027,22068 ,9422,9420,9423 ,0,0,0}, {22027,22066,22068 ,9420,9421,9423 ,0,0,0}, - {22028,22027,22067 ,9424,9420,9422 ,0,0,0}, {22064,22023,22061 ,9417,9410,9409 ,0,0,0}, - {22022,22023,22064 ,9416,9410,9417 ,0,0,0}, {22019,22059,22062 ,9412,9404,9413 ,0,0,0}, - {22061,22024,22062 ,9409,9411,9413 ,0,0,0}, {22058,22020,22021 ,9403,9405,9407 ,0,0,0}, - {22059,22019,22020 ,9404,9412,9405 ,0,0,0}, {22056,22060,22017 ,9399,9406,9408 ,0,0,0}, - {22060,22058,22021 ,9406,9403,9407 ,0,0,0}, {22018,22055,22029 ,9402,9398,9397 ,0,0,0}, - {22029,22056,22017 ,9397,9399,9408 ,0,0,0}, {22014,22052,22057 ,9400,9391,9401 ,0,0,0}, - {22018,22057,22055 ,9402,9401,9398 ,0,0,0}, {22015,22016,22053 ,9392,9395,9393 ,0,0,0}, - {22014,22015,22052 ,9400,9392,9391 ,0,0,0}, {22054,22012,22050 ,9394,9396,9389 ,0,0,0}, - {22053,22016,22054 ,9393,9395,9394 ,0,0,0}, {22013,22050,22012 ,9317,9389,9396 ,0,0,0}, - {22033,22051,22030 ,9425,9390,9426 ,0,0,0}, {22036,22053,22031 ,9427,9428,9429 ,0,0,0}, - {22032,22054,22050 ,9430,9431,9432 ,0,0,0}, {22055,22034,22035 ,9433,9434,9435 ,0,0,0}, - {22052,22037,22057 ,9436,9437,9438 ,0,0,0}, {22039,22038,22058 ,9439,9440,9441 ,0,0,0}, - {22040,22060,22056 ,9442,9443,9444 ,0,0,0}, {22041,22061,22042 ,9445,9446,9447 ,0,0,0}, - {22062,22059,22043 ,9448,9449,9450 ,0,0,0}, {22044,22063,22045 ,9451,9452,9453 ,0,0,0}, - {22064,22041,22045 ,9454,9445,9453 ,0,0,0}, {22044,22046,22065 ,9451,9455,9456 ,0,0,0}, - {22065,22063,22044 ,9456,9452,9451 ,0,0,0}, {22066,22046,22047 ,9457,9455,9458 ,0,0,0}, - {22046,22066,22065 ,9455,9457,9456 ,0,0,0}, {22048,22068,22047 ,9459,9460,9458 ,0,0,0}, - {22066,22047,22068 ,9457,9458,9460 ,0,0,0}, {22049,22067,22068 ,9461,9422,9460 ,0,0,0}, - {22068,22048,22049 ,9460,9459,9461 ,0,0,0}, {22061,22041,22064 ,9446,9445,9454 ,0,0,0}, - {22063,22064,22045 ,9452,9454,9453 ,0,0,0}, {22042,22062,22043 ,9447,9448,9450 ,0,0,0}, - {22061,22062,22042 ,9446,9448,9447 ,0,0,0}, {22038,22059,22058 ,9440,9449,9441 ,0,0,0}, - {22043,22059,22038 ,9450,9449,9440 ,0,0,0}, {22040,22039,22060 ,9442,9439,9443 ,0,0,0}, - {22039,22058,22060 ,9439,9441,9443 ,0,0,0}, {22055,22035,22056 ,9433,9435,9444 ,0,0,0}, - {22035,22040,22056 ,9435,9442,9444 ,0,0,0}, {22057,22037,22034 ,9438,9437,9434 ,0,0,0}, - {22057,22034,22055 ,9438,9434,9433 ,0,0,0}, {22052,22053,22036 ,9436,9428,9427 ,0,0,0}, - {22052,22036,22037 ,9436,9427,9437 ,0,0,0}, {22031,22054,22032 ,9429,9431,9430 ,0,0,0}, - {22053,22054,22031 ,9428,9431,9429 ,0,0,0}, {22033,22050,22051 ,9425,9432,9390 ,0,0,0}, - {22032,22050,22033 ,9430,9432,9425 ,0,0,0}, {21736,22069,22070 ,9462,9463,9464 ,0,0,0}, - {21735,22071,21733 ,9465,9466,9467 ,0,0,0}, {22069,21736,22072 ,9463,9462,9468 ,0,0,0}, - {22070,22073,21736 ,9464,9462,9462 ,0,0,0}, {22072,21736,21733 ,9468,9462,9467 ,0,0,0}, - {22074,22072,21733 ,9469,9468,9467 ,0,0,0}, {22074,21733,22071 ,9469,9467,9466 ,0,0,0}, - {21771,21689,22075 ,9470,9471,9472 ,0,0,0}, {21771,22076,22077 ,9470,9473,9474 ,0,0,0}, - {22075,22076,21771 ,9472,9473,9470 ,0,0,0}, {21735,22077,22078 ,9465,9474,9475 ,0,0,0}, - {21735,21771,22077 ,9465,9470,9474 ,0,0,0}, {21735,22079,22080 ,9465,9476,9477 ,0,0,0}, - {22078,22079,21735 ,9475,9476,9465 ,0,0,0}, {21735,22081,22082 ,9465,9478,9479 ,0,0,0}, - {22080,22081,21735 ,9477,9478,9465 ,0,0,0}, {22071,21735,22083 ,9466,9465,9480 ,0,0,0}, - {22082,22083,21735 ,9479,9480,9465 ,0,0,0}, {22084,21557,22085 ,9481,9482,9483 ,0,0,0}, - {21557,22086,22087 ,9482,9484,9485 ,0,0,0}, {22087,21555,21557 ,9485,9486,9482 ,0,0,0}, - {21557,22084,22086 ,9482,9481,9484 ,0,0,0}, {21555,22088,22089 ,9486,9487,9488 ,0,0,0}, - {21555,22087,22088 ,9486,9485,9487 ,0,0,0}, {21557,22090,22085 ,9482,9489,9483 ,0,0,0}, - {21555,22089,21484 ,9486,9488,9490 ,0,0,0}, {22091,21557,21542 ,9491,9482,9492 ,0,0,0}, - {21557,22091,22090 ,9482,9491,9489 ,0,0,0}, {21544,22092,22093 ,9493,9493,9494 ,0,0,0}, - {22094,22095,21545 ,9495,9496,9497 ,0,0,0}, {22096,22097,21544 ,9498,9499,9493 ,0,0,0}, - {22096,21544,22093 ,9498,9493,9494 ,0,0,0}, {21544,22098,21545 ,9493,9500,9497 ,0,0,0}, - {22098,21544,22097 ,9500,9493,9499 ,0,0,0}, {22099,21545,22095 ,9501,9497,9496 ,0,0,0}, - {22098,22094,21545 ,9500,9495,9497 ,0,0,0}, {22091,21542,22099 ,9491,9492,9501 ,0,0,0}, - {22099,21542,21545 ,9501,9492,9497 ,0,0,0}, {22092,21544,22100 ,9502,9503,9504 ,0,0,0}, - {21941,22100,21959 ,9505,9504,9506 ,0,0,0}, {21941,21923,22100 ,9505,9507,9504 ,0,0,0}, - {22100,21923,21912 ,9504,9507,9508 ,0,0,0}, {21912,21884,22100 ,9508,9509,9504 ,0,0,0}, - {22100,21544,21959 ,9504,9503,9506 ,0,0,0}, {22101,22099,22102 ,9510,9511,4303 ,0,0,0}, - {22101,22103,22091 ,9510,82,9512 ,0,0,0}, {22091,22099,22101 ,9512,9511,9510 ,0,0,0}, - {22104,22105,22106 ,9513,9514,9515 ,0,0,0}, {22105,22107,22106 ,9514,9516,9515 ,0,0,0}, - {22105,22104,22108 ,9514,9513,9517 ,0,0,0}, {22086,22109,22108 ,9518,9519,9517 ,0,0,0}, - {22104,22086,22108 ,9513,9518,9517 ,0,0,0}, {22084,22109,22086 ,9520,9519,9518 ,0,0,0}, - {22109,22084,22110 ,9519,9520,9521 ,0,0,0}, {22085,22111,22110 ,9522,9523,9521 ,0,0,0}, - {22110,22084,22085 ,9521,9520,9522 ,0,0,0}, {22111,22090,22112 ,9523,9524,9525 ,0,0,0}, - {22090,22111,22085 ,9524,9523,9522 ,0,0,0}, {22103,22112,22091 ,9526,9525,9527 ,0,0,0}, - {22090,22091,22112 ,9524,9527,9525 ,0,0,0}, {22097,22113,22114 ,9528,9529,9530 ,0,0,0}, - {22102,22099,22095 ,9531,9532,9533 ,0,0,0}, {22095,22094,22115 ,9533,9534,9535 ,0,0,0}, - {22116,22098,22114 ,9536,9537,9530 ,0,0,0}, {22115,22094,22116 ,9535,9534,9536 ,0,0,0}, - {22095,22115,22102 ,9533,9535,9531 ,0,0,0}, {22094,22098,22116 ,9534,9537,9536 ,0,0,0}, - {22098,22097,22114 ,9537,9528,9530 ,0,0,0}, {22113,22097,22096 ,9529,9528,9538 ,0,0,0}, - {22096,22093,22117 ,9538,9539,9540 ,0,0,0}, {22117,22113,22096 ,9540,9529,9538 ,0,0,0}, - {22118,22093,22092 ,9541,9539,9542 ,0,0,0}, {22093,22118,22117 ,9539,9541,9540 ,0,0,0}, - {22118,22092,22100 ,9541,9542,9542 ,0,0,0}, {22073,22119,22120 ,9543,9543,9544 ,0,0,0}, - {22073,22120,22121 ,9543,9544,9543 ,0,0,0}, {22122,22073,22121 ,9543,9543,9543 ,0,0,0}, - {22113,22117,22073 ,9543,9543,9543 ,0,0,0}, {22113,22073,22122 ,9543,9543,9543 ,0,0,0}, - {22073,22118,22100 ,9543,9543,9544 ,0,0,0}, {22117,22118,22073 ,9543,9543,9543 ,0,0,0}, - {22073,22100,21736 ,9543,9544,9543 ,0,0,0}, {22100,21863,21843 ,9544,9543,9543 ,0,0,0}, - {22100,21884,21863 ,9544,9544,9543 ,0,0,0}, {21843,21823,22100 ,9543,9544,9544 ,0,0,0}, - {21736,22100,21804 ,9543,9544,9543 ,0,0,0}, {22100,21823,21804 ,9544,9544,9543 ,0,0,0}, - {21649,22030,22123 ,9545,9546,9547 ,0,0,0}, {22075,22124,22076 ,9548,9549,9550 ,0,0,0}, - {22125,22124,21650 ,9551,9549,9552 ,0,0,0}, {22126,22107,22127 ,9553,9554,9555 ,0,0,0}, - {22128,22126,22127 ,9556,9553,9555 ,0,0,0}, {22129,22130,22131 ,9557,9558,9559 ,0,0,0}, - {22130,22128,22131 ,9558,9556,9559 ,0,0,0}, {22124,21670,21650 ,9549,9560,9552 ,0,0,0}, - {22125,21650,21610 ,9551,9552,9561 ,0,0,0}, {22129,22077,22076 ,9557,9562,9550 ,0,0,0}, - {21689,21670,22075 ,9563,9560,9548 ,0,0,0}, {21649,22125,21610 ,9545,9551,9561 ,0,0,0}, - {22123,22132,22125 ,9547,9564,9551 ,0,0,0}, {22125,21649,22123 ,9551,9545,9547 ,0,0,0}, - {22132,22126,22128 ,9564,9553,9556 ,0,0,0}, {22130,22129,22076 ,9558,9557,9550 ,0,0,0}, - {22128,22130,22125 ,9556,9558,9551 ,0,0,0}, {22075,21670,22124 ,9548,9560,9549 ,0,0,0}, - {22128,22125,22132 ,9556,9551,9564 ,0,0,0}, {22127,22131,22128 ,9555,9559,9556 ,0,0,0}, - {22076,22124,22130 ,9550,9549,9558 ,0,0,0}, {22125,22130,22124 ,9551,9558,9549 ,0,0,0}, - {22133,22134,22135 ,9565,9566,9567 ,0,0,0}, {22136,22137,22138 ,9568,9569,9570 ,0,0,0}, - {22139,22140,22141 ,9571,9572,9573 ,0,0,0}, {22107,22105,22142 ,9574,9575,9576 ,0,0,0}, - {22143,22144,22081 ,9577,9578,9579 ,0,0,0}, {22145,22146,22147 ,9580,9581,9582 ,0,0,0}, - {22148,22149,22134 ,9583,9584,9566 ,0,0,0}, {22071,22083,22149 ,9585,9586,9584 ,0,0,0}, - {22150,22112,22103 ,9587,9588,9589 ,0,0,0}, {22133,22135,22150 ,9565,9567,9587 ,0,0,0}, - {22071,22149,22148 ,9585,9584,9583 ,0,0,0}, {22138,22135,22134 ,9570,9567,9566 ,0,0,0}, - {22083,22151,22149 ,9586,9590,9584 ,0,0,0}, {22144,22151,22082 ,9578,9590,9591 ,0,0,0}, - {22152,22143,22147 ,9592,9577,9582 ,0,0,0}, {22153,22141,22137 ,9593,9573,9569 ,0,0,0}, - {22078,22129,22145 ,9594,9595,9580 ,0,0,0}, {22140,22152,22142 ,9572,9592,9576 ,0,0,0}, - {22077,22129,22078 ,9596,9595,9594 ,0,0,0}, {22145,22129,22131 ,9580,9595,9597 ,0,0,0}, - {22082,22151,22083 ,9591,9590,9586 ,0,0,0}, {22082,22081,22144 ,9591,9579,9578 ,0,0,0}, - {22150,22135,22112 ,9587,9567,9588 ,0,0,0}, {22148,22134,22133 ,9583,9566,9565 ,0,0,0}, - {22138,22134,22136 ,9570,9566,9568 ,0,0,0}, {22111,22112,22135 ,9598,9588,9567 ,0,0,0}, - {22136,22149,22151 ,9568,9584,9590 ,0,0,0}, {22127,22107,22142 ,9599,9574,9576 ,0,0,0}, - {22135,22138,22111 ,9567,9570,9598 ,0,0,0}, {22149,22136,22134 ,9584,9568,9566 ,0,0,0}, - {22137,22136,22153 ,9569,9568,9593 ,0,0,0}, {22110,22111,22138 ,9600,9598,9570 ,0,0,0}, - {22144,22153,22151 ,9578,9593,9590 ,0,0,0}, {22080,22143,22081 ,9601,9577,9579 ,0,0,0}, - {22138,22137,22110 ,9570,9569,9600 ,0,0,0}, {22151,22153,22136 ,9590,9593,9568 ,0,0,0}, - {22141,22153,22139 ,9573,9593,9571 ,0,0,0}, {22109,22110,22137 ,9602,9600,9569 ,0,0,0}, - {22143,22139,22144 ,9577,9571,9578 ,0,0,0}, {22079,22147,22080 ,9603,9582,9601 ,0,0,0}, - {22141,22108,22109 ,9573,9604,9602 ,0,0,0}, {22144,22139,22153 ,9578,9571,9593 ,0,0,0}, - {22139,22152,22140 ,9571,9592,9572 ,0,0,0}, {22109,22137,22141 ,9602,9569,9573 ,0,0,0}, - {22080,22147,22143 ,9601,9582,9577 ,0,0,0}, {22145,22079,22078 ,9580,9603,9594 ,0,0,0}, - {22140,22105,22108 ,9572,9575,9604 ,0,0,0}, {22143,22152,22139 ,9577,9592,9571 ,0,0,0}, - {22146,22142,22152 ,9581,9576,9592 ,0,0,0}, {22108,22141,22140 ,9604,9573,9572 ,0,0,0}, - {22079,22145,22147 ,9603,9580,9582 ,0,0,0}, {22147,22146,22152 ,9582,9581,9592 ,0,0,0}, - {22131,22127,22146 ,9597,9599,9581 ,0,0,0}, {22145,22131,22146 ,9580,9597,9581 ,0,0,0}, - {22127,22142,22146 ,9599,9576,9581 ,0,0,0}, {22105,22140,22142 ,9575,9572,9576 ,0,0,0}, - {22150,22101,22154 ,9605,9606,9607 ,0,0,0}, {22074,22155,22072 ,9608,9609,9468 ,0,0,0}, - {22154,22101,22156 ,9607,9606,9610 ,0,0,0}, {22101,22102,22156 ,9606,82,9610 ,0,0,0}, - {22154,22157,22155 ,9607,9611,9609 ,0,0,0}, {22150,22103,22101 ,9605,82,9606 ,0,0,0}, - {22155,22157,22072 ,9609,9611,9468 ,0,0,0}, {22148,22155,22074 ,9612,9609,9608 ,0,0,0}, - {22071,22148,22074 ,9613,9612,9608 ,0,0,0}, {22148,22133,22155 ,9612,9614,9609 ,0,0,0}, - {22133,22150,22154 ,9614,9605,9607 ,0,0,0}, {22133,22154,22155 ,9614,9607,9609 ,0,0,0}, - {22157,22154,22156 ,9611,9607,9610 ,0,0,0}, {22122,22121,22114 ,9615,9616,9617 ,0,0,0}, - {22156,22102,22115 ,9618,82,9619 ,0,0,0}, {22115,22116,22158 ,9619,9620,9621 ,0,0,0}, - {22115,22158,22156 ,9619,9621,9618 ,0,0,0}, {22113,22122,22114 ,9622,9615,9617 ,0,0,0}, - {22120,22119,22159 ,9623,9624,9625 ,0,0,0}, {22159,22160,22120 ,9625,9626,9623 ,0,0,0}, - {22157,22158,22161 ,9627,9621,9628 ,0,0,0}, {22161,22158,22160 ,9628,9621,9626 ,0,0,0}, - {22119,22073,22070 ,9624,9629,9630 ,0,0,0}, {22157,22161,22072 ,9627,9628,9631 ,0,0,0}, - {22070,22161,22159 ,9630,9628,9625 ,0,0,0}, {22156,22158,22157 ,9618,9621,9627 ,0,0,0}, - {22070,22069,22161 ,9630,9632,9628 ,0,0,0}, {22161,22069,22072 ,9628,9632,9631 ,0,0,0}, - {22158,22116,22160 ,9621,9620,9626 ,0,0,0}, {22114,22160,22116 ,9617,9626,9620 ,0,0,0}, - {22070,22159,22119 ,9630,9625,9624 ,0,0,0}, {22161,22160,22159 ,9628,9626,9625 ,0,0,0}, - {22121,22160,22114 ,9616,9626,9617 ,0,0,0}, {22121,22120,22160 ,9616,9623,9626 ,0,0,0}, - {21995,22162,22163 ,9633,9634,9635 ,0,0,0}, {22107,22126,22164 ,9636,9637,9638 ,0,0,0}, - {22165,22164,22126 ,9639,9638,9637 ,0,0,0}, {21995,22163,22013 ,9633,9635,9640 ,0,0,0}, - {22163,22162,22165 ,9635,9634,9639 ,0,0,0}, {22123,22030,22051 ,9641,9642,9643 ,0,0,0}, - {22013,22163,22051 ,9640,9635,9643 ,0,0,0}, {22089,22162,21977 ,9644,9634,9645 ,0,0,0}, - {22166,22089,22088 ,9646,9644,9647 ,0,0,0}, {22162,21995,21977 ,9634,9633,9645 ,0,0,0}, - {22164,22104,22106 ,9638,9648,9649 ,0,0,0}, {22164,22166,22167 ,9638,9646,9650 ,0,0,0}, - {21977,21484,22089 ,9645,9651,9644 ,0,0,0}, {22104,22167,22086 ,9648,9650,9652 ,0,0,0}, - {22167,22104,22164 ,9650,9648,9638 ,0,0,0}, {22163,22123,22051 ,9635,9641,9643 ,0,0,0}, - {22162,22166,22165 ,9634,9646,9639 ,0,0,0}, {22132,22123,22163 ,9653,9641,9635 ,0,0,0}, - {22089,22166,22162 ,9644,9646,9634 ,0,0,0}, {22167,22088,22087 ,9650,9647,9654 ,0,0,0}, - {22126,22132,22165 ,9637,9653,9639 ,0,0,0}, {22163,22165,22132 ,9635,9639,9653 ,0,0,0}, - {22088,22167,22166 ,9647,9650,9646 ,0,0,0}, {22086,22167,22087 ,9652,9650,9654 ,0,0,0}, - {22164,22106,22107 ,9638,9649,9636 ,0,0,0}, {22166,22164,22165 ,9646,9638,9639 ,0,0,0}, - {22168,21609,22169 ,9655,9656,9657 ,0,0,0}, {21609,22170,22171 ,9656,9658,9659 ,0,0,0}, - {22171,21608,21609 ,9659,9660,9656 ,0,0,0}, {21609,22168,22170 ,9656,9655,9658 ,0,0,0}, - {21608,22172,22173 ,9660,9661,9662 ,0,0,0}, {21608,22171,22172 ,9660,9659,9661 ,0,0,0}, - {21609,22174,22169 ,9656,9663,9657 ,0,0,0}, {21608,22173,21504 ,9660,9662,9664 ,0,0,0}, - {22175,21609,21517 ,9665,9656,9666 ,0,0,0}, {21609,22175,22174 ,9656,9665,9663 ,0,0,0}, - {21518,22176,22177 ,9667,9667,9668 ,0,0,0}, {22178,22179,21516 ,9669,9670,9671 ,0,0,0}, - {22180,22181,21518 ,9672,9673,9667 ,0,0,0}, {22180,21518,22177 ,9672,9667,9668 ,0,0,0}, - {21518,22182,21516 ,9667,9674,9671 ,0,0,0}, {22182,21518,22181 ,9674,9667,9673 ,0,0,0}, - {22183,21516,22179 ,9675,9671,9670 ,0,0,0}, {22182,22178,21516 ,9674,9669,9671 ,0,0,0}, - {22175,21517,22183 ,9665,9666,9675 ,0,0,0}, {22183,21517,21516 ,9675,9666,9671 ,0,0,0}, - {21726,22184,22185 ,9676,9677,9678 ,0,0,0}, {21803,22186,21757 ,9679,9680,9681 ,0,0,0}, - {22184,21726,22187 ,9677,9676,9682 ,0,0,0}, {22185,22188,21726 ,9678,9676,9676 ,0,0,0}, - {22187,21726,21757 ,9682,9676,9681 ,0,0,0}, {22189,22187,21757 ,9683,9682,9681 ,0,0,0}, - {22189,21757,22186 ,9683,9681,9680 ,0,0,0}, {21760,21784,22190 ,9684,9685,9686 ,0,0,0}, - {21760,22191,22192 ,9684,9687,9688 ,0,0,0}, {22190,22191,21760 ,9686,9687,9684 ,0,0,0}, - {21803,22192,22193 ,9679,9688,9689 ,0,0,0}, {21803,21760,22192 ,9679,9684,9688 ,0,0,0}, - {21803,22194,22195 ,9679,9690,9691 ,0,0,0}, {22193,22194,21803 ,9689,9690,9679 ,0,0,0}, - {21803,22196,22197 ,9679,9692,9693 ,0,0,0}, {22195,22196,21803 ,9691,9692,9679 ,0,0,0}, - {22186,21803,22198 ,9680,9679,9694 ,0,0,0}, {22197,22198,21803 ,9693,9694,9679 ,0,0,0}, - {22067,22176,22028 ,9695,9696,9695 ,0,0,0}, {21518,21992,22176 ,9695,9695,9696 ,0,0,0}, - {22049,22199,22176 ,9695,9696,9696 ,0,0,0}, {22176,22067,22049 ,9696,9695,9695 ,0,0,0}, - {22011,22028,22176 ,9695,9695,9696 ,0,0,0}, {22011,22176,21992 ,9695,9696,9695 ,0,0,0}, - {22200,22201,22175 ,126,126,126 ,0,0,0}, {22183,22202,22200 ,9697,126,126 ,0,0,0}, - {22200,22175,22183 ,126,126,9697 ,0,0,0}, {22203,22204,22205 ,9698,9699,9700 ,0,0,0}, - {22204,22206,22205 ,9699,9701,9700 ,0,0,0}, {22204,22203,22207 ,9699,9698,9702 ,0,0,0}, - {22170,22208,22207 ,9703,9704,9702 ,0,0,0}, {22203,22170,22207 ,9698,9703,9702 ,0,0,0}, - {22168,22208,22170 ,9705,9704,9703 ,0,0,0}, {22208,22168,22209 ,9704,9705,9706 ,0,0,0}, - {22169,22210,22209 ,9707,9708,9706 ,0,0,0}, {22209,22168,22169 ,9706,9705,9707 ,0,0,0}, - {22210,22174,22211 ,9708,9709,9710 ,0,0,0}, {22174,22210,22169 ,9709,9708,9707 ,0,0,0}, - {22201,22211,22175 ,9711,9710,9712 ,0,0,0}, {22174,22175,22211 ,9709,9712,9710 ,0,0,0}, - {22212,22213,22181 ,9713,9714,9715 ,0,0,0}, {22214,22182,22213 ,9716,9717,9714 ,0,0,0}, - {22183,22179,22202 ,126,9718,126 ,0,0,0}, {22178,22215,22179 ,9719,9720,9718 ,0,0,0}, - {22178,22214,22215 ,9719,9716,9720 ,0,0,0}, {22215,22202,22179 ,9720,126,9718 ,0,0,0}, - {22182,22214,22178 ,9717,9716,9719 ,0,0,0}, {22182,22181,22213 ,9717,9715,9714 ,0,0,0}, - {22212,22181,22180 ,9713,9715,9721 ,0,0,0}, {22180,22177,22216 ,9721,9722,9723 ,0,0,0}, - {22216,22212,22180 ,9723,9713,9721 ,0,0,0}, {22217,22177,22176 ,9724,9722,9725 ,0,0,0}, - {22177,22217,22216 ,9722,9724,9723 ,0,0,0}, {22217,22176,22199 ,9724,9725,9725 ,0,0,0}, - {21687,22199,21668 ,9726,9727,9728 ,0,0,0}, {22218,22188,22219 ,9729,9730,9731 ,0,0,0}, - {22188,22212,22216 ,9730,9732,9733 ,0,0,0}, {22216,22217,22188 ,9733,9734,9730 ,0,0,0}, - {22218,22220,22188 ,9729,9735,9730 ,0,0,0}, {22188,22221,22212 ,9730,9736,9732 ,0,0,0}, - {22220,22221,22188 ,9735,9736,9730 ,0,0,0}, {22199,21726,22188 ,9727,9737,9730 ,0,0,0}, - {22217,22199,22188 ,9734,9727,9730 ,0,0,0}, {22199,21706,21726 ,9727,9738,9737 ,0,0,0}, - {21706,22199,21687 ,9738,9727,9726 ,0,0,0}, {22199,21646,21647 ,9727,9739,9740 ,0,0,0}, - {22199,22049,21646 ,9727,9727,9739 ,0,0,0}, {21647,21668,22199 ,9740,9728,9727 ,0,0,0}, - {21881,21901,22222 ,9741,9742,9743 ,0,0,0}, {22190,22223,22191 ,9744,9745,9746 ,0,0,0}, - {22224,22223,21842 ,9747,9745,9748 ,0,0,0}, {22225,22206,22226 ,9749,9750,9751 ,0,0,0}, - {22227,22225,22226 ,9752,9749,9751 ,0,0,0}, {22228,22229,22230 ,9753,9754,9755 ,0,0,0}, - {22229,22227,22230 ,9754,9752,9755 ,0,0,0}, {22223,21822,21842 ,9745,9756,9748 ,0,0,0}, - {22224,21842,21861 ,9747,9748,9757 ,0,0,0}, {22228,22192,22191 ,9753,9758,9746 ,0,0,0}, - {21784,21822,22190 ,9759,9756,9744 ,0,0,0}, {21881,22224,21861 ,9741,9747,9757 ,0,0,0}, - {22222,22231,22224 ,9743,9760,9747 ,0,0,0}, {22224,21881,22222 ,9747,9741,9743 ,0,0,0}, - {22231,22225,22227 ,9760,9749,9752 ,0,0,0}, {22229,22228,22191 ,9754,9753,9746 ,0,0,0}, - {22227,22229,22224 ,9752,9754,9747 ,0,0,0}, {22190,21822,22223 ,9744,9756,9745 ,0,0,0}, - {22227,22224,22231 ,9752,9747,9760 ,0,0,0}, {22226,22230,22227 ,9751,9755,9752 ,0,0,0}, - {22191,22223,22229 ,9746,9745,9754 ,0,0,0}, {22224,22229,22223 ,9747,9754,9745 ,0,0,0}, - {22232,22233,22234 ,9761,9762,9763 ,0,0,0}, {22208,22235,22236 ,9764,9765,9766 ,0,0,0}, - {22208,22209,22235 ,9764,9767,9765 ,0,0,0}, {22226,22204,22237 ,9768,9769,9770 ,0,0,0}, - {22238,22196,22239 ,9771,9772,9773 ,0,0,0}, {22226,22206,22204 ,9768,9774,9769 ,0,0,0}, - {22240,22241,22242 ,9775,9776,9777 ,0,0,0}, {22210,22243,22244 ,9778,9779,9780 ,0,0,0}, - {22201,22241,22245 ,126,9776,9781 ,0,0,0}, {22240,22246,22245 ,9775,9782,9781 ,0,0,0}, - {22198,22197,22247 ,9783,9784,9785 ,0,0,0}, {22197,22238,22247 ,9784,9771,9785 ,0,0,0}, - {22248,22249,22232 ,9786,9787,9761 ,0,0,0}, {22238,22239,22246 ,9771,9773,9782 ,0,0,0}, - {22250,22186,22198 ,9788,9789,9783 ,0,0,0}, {22207,22236,22237 ,9790,9766,9770 ,0,0,0}, - {22210,22244,22209 ,9778,9780,9767 ,0,0,0}, {22237,22234,22230 ,9770,9763,9791 ,0,0,0}, - {22230,22234,22228 ,9791,9763,9792 ,0,0,0}, {22228,22233,22192 ,9792,9762,9793 ,0,0,0}, - {22226,22237,22230 ,9768,9770,9791 ,0,0,0}, {22204,22207,22237 ,9769,9790,9770 ,0,0,0}, - {22233,22228,22234 ,9762,9792,9763 ,0,0,0}, {22233,22249,22193 ,9762,9787,9794 ,0,0,0}, - {22234,22236,22232 ,9763,9766,9761 ,0,0,0}, {22192,22233,22193 ,9793,9762,9794 ,0,0,0}, - {22237,22236,22234 ,9770,9766,9763 ,0,0,0}, {22207,22208,22236 ,9790,9764,9766 ,0,0,0}, - {22249,22233,22232 ,9787,9762,9761 ,0,0,0}, {22249,22251,22194 ,9787,9795,9796 ,0,0,0}, - {22232,22235,22248 ,9761,9765,9786 ,0,0,0}, {22193,22249,22194 ,9794,9787,9796 ,0,0,0}, - {22236,22235,22232 ,9766,9765,9761 ,0,0,0}, {22244,22235,22209 ,9780,9765,9767 ,0,0,0}, - {22251,22249,22248 ,9795,9787,9786 ,0,0,0}, {22251,22239,22195 ,9795,9773,9797 ,0,0,0}, - {22244,22252,22248 ,9780,9798,9786 ,0,0,0}, {22194,22251,22195 ,9796,9795,9797 ,0,0,0}, - {22244,22248,22235 ,9780,9786,9765 ,0,0,0}, {22211,22243,22210 ,9799,9779,9778 ,0,0,0}, - {22239,22251,22252 ,9773,9795,9798 ,0,0,0}, {22248,22252,22251 ,9786,9798,9795 ,0,0,0}, - {22243,22246,22252 ,9779,9782,9798 ,0,0,0}, {22195,22239,22196 ,9797,9773,9772 ,0,0,0}, - {22244,22243,22252 ,9780,9779,9798 ,0,0,0}, {22201,22245,22211 ,126,9781,9799 ,0,0,0}, - {22247,22238,22240 ,9785,9771,9775 ,0,0,0}, {22252,22246,22239 ,9798,9782,9773 ,0,0,0}, - {22246,22240,22238 ,9782,9775,9771 ,0,0,0}, {22196,22238,22197 ,9772,9771,9784 ,0,0,0}, - {22243,22211,22245 ,9779,9799,9781 ,0,0,0}, {22246,22243,22245 ,9782,9779,9781 ,0,0,0}, - {22247,22242,22250 ,9785,9777,9788 ,0,0,0}, {22241,22240,22245 ,9776,9775,9781 ,0,0,0}, - {22250,22198,22247 ,9788,9783,9785 ,0,0,0}, {22242,22247,22240 ,9777,9785,9775 ,0,0,0}, - {22241,22200,22253 ,9800,9801,9802 ,0,0,0}, {22189,22254,22187 ,9803,9804,9682 ,0,0,0}, - {22253,22200,22255 ,9802,9801,9805 ,0,0,0}, {22200,22202,22255 ,9801,126,9805 ,0,0,0}, - {22253,22256,22254 ,9802,9806,9804 ,0,0,0}, {22241,22201,22200 ,9800,126,9801 ,0,0,0}, - {22254,22256,22187 ,9804,9806,9682 ,0,0,0}, {22250,22254,22189 ,9807,9804,9803 ,0,0,0}, - {22186,22250,22189 ,9808,9807,9803 ,0,0,0}, {22250,22242,22254 ,9807,9809,9804 ,0,0,0}, - {22242,22241,22253 ,9809,9800,9802 ,0,0,0}, {22242,22253,22254 ,9809,9802,9804 ,0,0,0}, - {22256,22253,22255 ,9806,9802,9805 ,0,0,0}, {22221,22220,22213 ,9810,9811,9812 ,0,0,0}, - {22255,22202,22215 ,9813,126,9814 ,0,0,0}, {22215,22214,22257 ,9814,9815,9816 ,0,0,0}, - {22215,22257,22255 ,9814,9816,9813 ,0,0,0}, {22212,22221,22213 ,9817,9810,9812 ,0,0,0}, - {22218,22219,22258 ,9818,9819,9820 ,0,0,0}, {22258,22259,22218 ,9820,9821,9818 ,0,0,0}, - {22256,22257,22260 ,9822,9816,9823 ,0,0,0}, {22260,22257,22259 ,9823,9816,9821 ,0,0,0}, - {22219,22188,22185 ,9819,9824,9825 ,0,0,0}, {22256,22260,22187 ,9822,9823,9826 ,0,0,0}, - {22185,22260,22258 ,9825,9823,9820 ,0,0,0}, {22255,22257,22256 ,9813,9816,9822 ,0,0,0}, - {22185,22184,22260 ,9825,9827,9823 ,0,0,0}, {22260,22184,22187 ,9823,9827,9826 ,0,0,0}, - {22257,22214,22259 ,9816,9815,9821 ,0,0,0}, {22213,22259,22214 ,9812,9821,9815 ,0,0,0}, - {22185,22258,22219 ,9825,9820,9819 ,0,0,0}, {22260,22259,22258 ,9823,9821,9820 ,0,0,0}, - {22220,22259,22213 ,9811,9821,9812 ,0,0,0}, {22220,22218,22259 ,9811,9818,9821 ,0,0,0}, - {22261,21956,22262 ,9828,9829,9830 ,0,0,0}, {21975,21504,22173 ,9831,9832,9833 ,0,0,0}, - {22203,22263,22170 ,9834,9835,9836 ,0,0,0}, {22264,22225,22265 ,9837,9838,9839 ,0,0,0}, - {22225,22264,22205 ,9838,9837,9840 ,0,0,0}, {22205,22206,22225 ,9840,9841,9838 ,0,0,0}, - {22231,22265,22225 ,9842,9839,9838 ,0,0,0}, {22261,21939,21956 ,9828,9843,9829 ,0,0,0}, - {22205,22264,22203 ,9840,9837,9834 ,0,0,0}, {22263,22265,22266 ,9835,9839,9844 ,0,0,0}, - {22222,21901,21921 ,9845,9846,9847 ,0,0,0}, {21939,22261,21921 ,9843,9828,9847 ,0,0,0}, - {22266,22172,22171 ,9844,9848,9849 ,0,0,0}, {22262,21975,22173 ,9830,9831,9833 ,0,0,0}, - {22264,22265,22263 ,9837,9839,9835 ,0,0,0}, {22266,22171,22263 ,9844,9849,9835 ,0,0,0}, - {22170,22263,22171 ,9836,9835,9849 ,0,0,0}, {22203,22264,22263 ,9834,9837,9835 ,0,0,0}, - {22261,22231,22222 ,9828,9842,9845 ,0,0,0}, {22266,22261,22262 ,9844,9828,9830 ,0,0,0}, - {22266,22265,22261 ,9844,9839,9828 ,0,0,0}, {22172,22266,22262 ,9848,9844,9830 ,0,0,0}, - {22231,22261,22265 ,9842,9828,9839 ,0,0,0}, {21921,22261,22222 ,9847,9828,9845 ,0,0,0}, - {21975,22262,21956 ,9831,9830,9829 ,0,0,0}, {22262,22173,22172 ,9830,9833,9848 ,0,0,0}, - {21598,21461,21460 ,9850,9851,8275 ,0,0,0}, {22267,22268,21487 ,9852,9853,9854 ,0,0,0}, - {21534,22269,22270 ,9855,9856,9857 ,0,0,0}, {21492,21491,22271 ,9858,9859,9860 ,0,0,0}, - {21531,21566,22272 ,9861,9862,9863 ,0,0,0}, {21495,21496,22273 ,9864,9865,9866 ,0,0,0}, - {21495,22274,21491 ,9864,9867,9859 ,0,0,0}, {22275,21586,22276 ,9868,9869,9870 ,0,0,0}, - {21586,22275,21496 ,9869,9868,9865 ,0,0,0}, {22277,22276,21585 ,9871,9870,9872 ,0,0,0}, - {21586,21585,22276 ,9869,9872,9870 ,0,0,0}, {21474,21475,22277 ,126,126,9871 ,0,0,0}, - {22277,21585,21474 ,9871,9872,126 ,0,0,0}, {22273,22274,21495 ,9866,9867,9864 ,0,0,0}, - {21496,22275,22273 ,9865,9868,9866 ,0,0,0}, {22271,22272,21492 ,9860,9863,9858 ,0,0,0}, - {21491,22274,22271 ,9859,9867,9860 ,0,0,0}, {22267,21531,22272 ,9852,9861,9863 ,0,0,0}, - {21566,21492,22272 ,9862,9858,9863 ,0,0,0}, {22268,21485,21487 ,9853,9873,9854 ,0,0,0}, - {22267,21487,21531 ,9852,9854,9861 ,0,0,0}, {21534,21485,22269 ,9855,9873,9856 ,0,0,0}, - {22268,22269,21485 ,9853,9856,9873 ,0,0,0}, {21598,22270,22278 ,9850,9857,9874 ,0,0,0}, - {21534,22270,21598 ,9855,9857,9850 ,0,0,0}, {21461,21598,22278 ,9851,9850,9874 ,0,0,0}, - {22269,21440,21443 ,730,730,730 ,0,0,0}, {21456,22279,21454 ,730,730,730 ,0,0,0}, - {21456,21459,22280 ,730,730,730 ,0,0,0}, {21452,21454,22281 ,730,730,730 ,0,0,0}, - {21459,21446,22280 ,730,730,730 ,0,0,0}, {22279,21456,22280 ,730,730,730 ,0,0,0}, - {21446,21459,21461 ,730,730,730 ,0,0,0}, {21452,22282,21449 ,730,730,730 ,0,0,0}, - {22278,21446,21461 ,730,730,730 ,0,0,0}, {21428,21440,22267 ,730,730,730 ,0,0,0}, - {21463,21451,22283 ,730,730,730 ,0,0,0}, {22284,21464,21463 ,730,730,730 ,0,0,0}, - {15792,21428,22272 ,730,730,730 ,0,0,0}, {21430,22271,22274 ,730,730,730 ,0,0,0}, - {22285,21467,21464 ,730,730,730 ,0,0,0}, {21467,22286,21468 ,730,730,730 ,0,0,0}, - {21470,21468,22287 ,730,730,730 ,0,0,0}, {22274,21431,21430 ,730,730,730 ,0,0,0}, - {21431,22273,22275 ,730,730,730 ,0,0,0}, {21438,22277,21475 ,730,730,730 ,0,0,0}, - {21475,21473,21438 ,730,730,730 ,0,0,0}, {21470,22288,21473 ,730,730,730 ,0,0,0}, - {22276,21437,22275 ,730,730,730 ,0,0,0}, {21451,21449,22283 ,730,730,730 ,0,0,0}, - {21443,21445,22270 ,730,730,730 ,0,0,0}, {22272,22271,15792 ,730,730,730 ,0,0,0}, - {22279,22281,21454 ,730,730,730 ,0,0,0}, {22281,22282,21452 ,730,730,730 ,0,0,0}, - {22282,22283,21449 ,730,730,730 ,0,0,0}, {22283,22284,21463 ,730,730,730 ,0,0,0}, - {22284,22285,21464 ,730,730,730 ,0,0,0}, {22285,22286,21467 ,730,730,730 ,0,0,0}, - {22286,22287,21468 ,730,730,730 ,0,0,0}, {22287,22288,21470 ,730,730,730 ,0,0,0}, - {22288,21438,21473 ,730,730,730 ,0,0,0}, {21438,21434,22277 ,730,730,730 ,0,0,0}, - {21434,21437,22276 ,730,730,730 ,0,0,0}, {21434,22276,22277 ,730,730,730 ,0,0,0}, - {21437,21431,22275 ,730,730,730 ,0,0,0}, {22273,21431,22274 ,730,730,730 ,0,0,0}, - {21430,15792,22271 ,730,730,730 ,0,0,0}, {21428,22267,22272 ,730,730,730 ,0,0,0}, - {21440,22268,22267 ,730,730,730 ,0,0,0}, {22269,21443,22270 ,730,730,730 ,0,0,0}, - {22268,21440,22269 ,730,730,730 ,0,0,0}, {22270,21445,22278 ,730,730,730 ,0,0,0}, - {21446,22278,21445 ,730,730,730 ,0,0,0}, {21444,22289,22290 ,730,730,9875 ,0,0,0}, - {22291,22290,22292 ,730,9875,730 ,0,0,0}, {22291,22292,22293 ,730,730,9875 ,0,0,0}, - {22294,22290,22291 ,730,9875,730 ,0,0,0}, {22294,21447,22290 ,730,730,9875 ,0,0,0}, - {22293,22292,22295 ,9875,730,9876 ,0,0,0}, {21444,22290,21447 ,730,9875,730 ,0,0,0}, - {22289,21442,22296 ,730,730,9876 ,0,0,0}, {22289,21444,21442 ,730,730,730 ,0,0,0}, - {22296,21442,22297 ,9876,730,730 ,0,0,0}, {22297,21442,21441 ,730,730,9876 ,0,0,0}, - {22297,21441,21439 ,730,9876,730 ,0,0,0}, {22298,21439,21427 ,9877,730,9876 ,0,0,0}, - {21439,22298,22297 ,730,9877,730 ,0,0,0}, {21435,22298,21432 ,730,9877,730 ,0,0,0}, - {21427,21432,22298 ,9876,730,9877 ,0,0,0}, {21436,21429,21433 ,9876,730,9878 ,0,0,0}, - {21432,21429,21436 ,730,730,9876 ,0,0,0}, {21436,21435,21432 ,9876,730,730 ,0,0,0}, - {21438,22288,22298 ,9879,9880,9881 ,0,0,0}, {22290,22289,22285 ,9882,9883,9884 ,0,0,0}, - {22296,22297,22287 ,9885,9886,9887 ,0,0,0}, {22295,22283,22282 ,9888,9889,9890 ,0,0,0}, - {22284,22283,22292 ,9891,9889,9892 ,0,0,0}, {22291,22281,22279 ,9893,9894,9895 ,0,0,0}, - {22281,22291,22293 ,9894,9893,9896 ,0,0,0}, {22280,22294,22279 ,9897,9898,9895 ,0,0,0}, - {22291,22279,22294 ,9893,9895,9898 ,0,0,0}, {22280,21446,21447 ,9897,96,96 ,0,0,0}, - {21447,22294,22280 ,96,9898,9897 ,0,0,0}, {22295,22282,22293 ,9888,9890,9896 ,0,0,0}, - {22282,22281,22293 ,9890,9894,9896 ,0,0,0}, {22285,22284,22290 ,9884,9891,9882 ,0,0,0}, - {22284,22292,22290 ,9891,9892,9882 ,0,0,0}, {22292,22283,22295 ,9892,9889,9888 ,0,0,0}, - {22297,22298,22288 ,9886,9881,9880 ,0,0,0}, {22286,22285,22289 ,9899,9884,9883 ,0,0,0}, - {22288,22287,22297 ,9880,9887,9886 ,0,0,0}, {22286,22296,22287 ,9899,9885,9887 ,0,0,0}, - {22289,22296,22286 ,9883,9885,9899 ,0,0,0}, {22298,21435,21438 ,9881,761,9879 ,0,0,0}, - {21500,21415,21414 ,9900,82,9901 ,0,0,0}, {22299,22300,21582 ,9902,9903,9904 ,0,0,0}, - {21583,22301,21502 ,9905,9906,9907 ,0,0,0}, {22302,21521,22303 ,9908,9909,9910 ,0,0,0}, - {21578,21523,22304 ,9911,9912,9913 ,0,0,0}, {22305,21520,21580 ,9914,9915,9916 ,0,0,0}, - {21520,22305,22303 ,9915,9914,9910 ,0,0,0}, {21512,22306,21580 ,9917,9918,9916 ,0,0,0}, - {22305,21580,22306 ,9914,9916,9918 ,0,0,0}, {21512,21426,21425 ,9917,2619,3135 ,0,0,0}, - {21425,22306,21512 ,3135,9918,9917 ,0,0,0}, {21521,22302,21523 ,9909,9908,9912 ,0,0,0}, - {21521,21520,22303 ,9909,9915,9910 ,0,0,0}, {22299,21578,22304 ,9902,9911,9913 ,0,0,0}, - {22304,21523,22302 ,9913,9912,9908 ,0,0,0}, {22300,21583,21582 ,9903,9905,9904 ,0,0,0}, - {22299,21582,21578 ,9902,9904,9911 ,0,0,0}, {22301,22307,21502 ,9906,9919,9907 ,0,0,0}, - {22300,22301,21583 ,9903,9906,9905 ,0,0,0}, {21415,21500,22307 ,82,9900,9919 ,0,0,0}, - {21502,22307,21500 ,9907,9919,9900 ,0,0,0}, {21422,22299,21423 ,730,730,730 ,0,0,0}, - {21419,22301,21420 ,730,730,730 ,0,0,0}, {21425,22304,22302 ,730,730,730 ,0,0,0}, - {22306,22302,22303 ,730,730,730 ,0,0,0}, {22305,22306,22303 ,730,730,730 ,0,0,0}, - {21423,22304,21425 ,730,730,730 ,0,0,0}, {21425,22302,22306 ,730,730,730 ,0,0,0}, - {21423,22299,22304 ,730,730,730 ,0,0,0}, {21422,22300,22299 ,730,730,730 ,0,0,0}, - {21422,21420,22301 ,730,730,730 ,0,0,0}, {22301,22300,21422 ,730,730,730 ,0,0,0}, - {22307,22301,21419 ,730,730,730 ,0,0,0}, {22307,21416,21415 ,730,730,730 ,0,0,0}, - {21416,22307,21419 ,730,730,730 ,0,0,0}, {21415,21416,21408 ,730,730,730 ,0,0,0}, - {21411,21405,21409 ,730,730,730 ,0,0,0}, {21408,21405,21411 ,730,730,730 ,0,0,0}, - {21411,21415,21408 ,730,730,730 ,0,0,0}, {21593,21393,21394 ,9920,9921,9922 ,0,0,0}, - {22308,22309,21539 ,9902,9903,9923 ,0,0,0}, {21540,22310,21592 ,9924,9906,9925 ,0,0,0}, - {22311,21537,21536 ,9908,9926,9927 ,0,0,0}, {21553,21537,22312 ,9928,9926,8336 ,0,0,0}, - {22313,21597,21489 ,9914,9929,9930 ,0,0,0}, {21536,21597,22314 ,9927,9929,9910 ,0,0,0}, - {21488,22315,21489 ,9931,9918,9930 ,0,0,0}, {22313,21489,22315 ,9914,9930,9918 ,0,0,0}, - {21488,21404,21403 ,9931,96,9932 ,0,0,0}, {21403,22315,21488 ,9932,9918,9931 ,0,0,0}, - {22311,21536,22314 ,9908,9927,9910 ,0,0,0}, {22314,21597,22313 ,9910,9929,9914 ,0,0,0}, - {21553,22312,22308 ,9928,8336,9902 ,0,0,0}, {22312,21537,22311 ,8336,9926,9908 ,0,0,0}, - {22309,21540,21539 ,9903,9924,9923 ,0,0,0}, {22308,21539,21553 ,9902,9923,9928 ,0,0,0}, - {22310,22316,21592 ,9906,9919,9925 ,0,0,0}, {22309,22310,21540 ,9903,9906,9924 ,0,0,0}, - {21393,21593,22316 ,9921,9920,9919 ,0,0,0}, {21592,22316,21593 ,9925,9919,9920 ,0,0,0}, - {21398,22308,21400 ,730,730,730 ,0,0,0}, {21395,22310,21397 ,730,730,730 ,0,0,0}, - {21403,22312,22311 ,730,730,730 ,0,0,0}, {22315,22311,22314 ,730,730,730 ,0,0,0}, - {22313,22315,22314 ,730,730,730 ,0,0,0}, {21400,22312,21403 ,730,730,730 ,0,0,0}, - {21403,22311,22315 ,730,730,730 ,0,0,0}, {21400,22308,22312 ,730,730,730 ,0,0,0}, - {21398,22309,22308 ,730,730,730 ,0,0,0}, {21398,21397,22310 ,730,730,730 ,0,0,0}, - {22310,22309,21398 ,730,730,730 ,0,0,0}, {22316,22310,21395 ,730,730,730 ,0,0,0}, - {22316,21383,21393 ,730,730,730 ,0,0,0}, {21383,22316,21395 ,730,730,730 ,0,0,0}, - {21393,21383,21386 ,730,730,730 ,0,0,0}, {21389,21387,21390 ,730,730,730 ,0,0,0}, - {21386,21387,21389 ,730,730,730 ,0,0,0}, {21389,21393,21386 ,730,730,730 ,0,0,0} -// X-Ufo 8ZollPropeller.prt - , {22317,22318,22319 ,9933,9934,9935 ,0,0,0}, {22317,22320,22321 ,9933,9936,9937 ,0,0,0}, - {22321,22318,22317 ,9937,9934,9933 ,0,0,0}, {22322,22320,22323 ,9938,9936,9939 ,0,0,0}, - {22320,22322,22321 ,9936,9938,9937 ,0,0,0}, {22324,22325,22326 ,9940,9941,9942 ,0,0,0}, - {22322,22323,22325 ,9938,9939,9941 ,0,0,0}, {22327,22328,22324 ,9943,2394,9940 ,0,0,0}, - {22327,22329,22328 ,9943,9944,2394 ,0,0,0}, {22327,22324,22326 ,9943,9940,9942 ,0,0,0}, - {22325,22323,22326 ,9941,9939,9942 ,0,0,0}, {22330,22319,22318 ,9945,9935,9934 ,0,0,0}, - {22331,22330,22332 ,9946,9945,9947 ,0,0,0}, {22330,22331,22319 ,9945,9946,9935 ,0,0,0}, - {22333,22334,22332 ,9948,9949,9947 ,0,0,0}, {22331,22332,22334 ,9946,9947,9949 ,0,0,0}, - {22333,22335,22336 ,9948,9950,9951 ,0,0,0}, {22336,22334,22333 ,9951,9949,9948 ,0,0,0}, - {22337,22335,22338 ,9952,9950,9953 ,0,0,0}, {22335,22337,22336 ,9950,9952,9951 ,0,0,0}, - {22337,22338,22339 ,9952,9953,9954 ,0,0,0}, {22340,22341,22342 ,9938,9955,9956 ,0,0,0}, - {22340,22343,22341 ,9938,9937,9955 ,0,0,0}, {22340,22342,22344 ,9938,9956,9941 ,0,0,0}, - {22344,22345,22346 ,9941,9957,9940 ,0,0,0}, {22345,22344,22342 ,9957,9941,9956 ,0,0,0}, - {22347,22346,22345 ,9958,9940,9957 ,0,0,0}, {22348,22341,22343 ,9959,9955,9937 ,0,0,0}, - {22347,22349,22350 ,9958,9960,9961 ,0,0,0}, {22350,22346,22347 ,9961,9940,9958 ,0,0,0}, - {22348,22343,22351 ,9959,9937,9962 ,0,0,0}, {22351,22352,22348 ,9962,9963,9959 ,0,0,0}, - {22353,22352,22354 ,9964,9963,9945 ,0,0,0}, {22351,22354,22352 ,9962,9945,9963 ,0,0,0}, - {22355,22356,22353 ,9947,9965,9964 ,0,0,0}, {22353,22354,22355 ,9964,9945,9947 ,0,0,0}, - {22357,22358,22356 ,9948,9950,9965 ,0,0,0}, {22357,22356,22355 ,9948,9965,9947 ,0,0,0}, - {22359,22358,22360 ,9966,9950,9967 ,0,0,0}, {22358,22359,22356 ,9950,9966,9965 ,0,0,0}, - {22359,22360,22361 ,9966,9967,9968 ,0,0,0}, {22362,22363,15837 ,9969,9970,9971 ,0,0,0}, - {22364,22365,22366 ,9972,9973,9974 ,0,0,0}, {22367,22362,15837 ,9975,9969,9971 ,0,0,0}, - {22364,22366,22368 ,9972,9974,9976 ,0,0,0}, {22365,22364,22367 ,9973,9972,9975 ,0,0,0}, - {22365,22367,15837 ,9973,9975,9971 ,0,0,0}, {22369,22370,22371 ,9977,9978,9979 ,0,0,0}, - {22371,22368,22372 ,9979,9976,9980 ,0,0,0}, {22369,22371,22372 ,9977,9979,9980 ,0,0,0}, - {22370,22369,22373 ,9978,9977,9981 ,0,0,0}, {22372,22368,22366 ,9980,9976,9974 ,0,0,0}, - {22362,22374,22363 ,9969,9945,9970 ,0,0,0}, {22375,22374,22376 ,9982,9945,9983 ,0,0,0}, - {22374,22375,22363 ,9945,9982,9970 ,0,0,0}, {22377,22378,22376 ,9984,9985,9983 ,0,0,0}, - {22375,22376,22378 ,9982,9983,9985 ,0,0,0}, {22377,22379,22380 ,9984,9986,9987 ,0,0,0}, - {22380,22378,22377 ,9987,9985,9984 ,0,0,0}, {22381,22379,22382 ,9988,9986,21 ,0,0,0}, - {22379,22381,22380 ,9986,9988,9987 ,0,0,0}, {22383,22384,22385 ,9989,9990,9991 ,0,0,0}, - {22385,22384,22386 ,9991,9990,9992 ,0,0,0}, {22387,22384,22383 ,9993,9990,9989 ,0,0,0}, - {22388,22385,22386 ,9994,9991,9992 ,0,0,0}, {22387,22383,22389 ,9993,9989,9995 ,0,0,0}, - {22389,22390,22391 ,9995,9996,9997 ,0,0,0}, {22390,22389,22383 ,9996,9995,9989 ,0,0,0}, - {22388,22386,22392 ,9994,9992,9998 ,0,0,0}, {22393,22394,22391 ,9999,10000,9997 ,0,0,0}, - {22391,22390,22393 ,9997,9996,9999 ,0,0,0}, {22394,22395,22396 ,10000,9961,10001 ,0,0,0}, - {22397,22394,22393 ,10002,10000,9999 ,0,0,0}, {22397,22395,22394 ,10002,9961,10000 ,0,0,0}, - {22386,22398,22392 ,9992,10003,9998 ,0,0,0}, {22398,22399,22400 ,10003,10004,10005 ,0,0,0}, - {22400,22392,22398 ,10005,9998,10003 ,0,0,0}, {22401,22399,22402 ,10006,10004,10007 ,0,0,0}, - {22399,22401,22400 ,10004,10006,10005 ,0,0,0}, {22403,22404,22402 ,10008,10009,10007 ,0,0,0}, - {22401,22402,22404 ,10006,10007,10009 ,0,0,0}, {22403,22405,22406 ,10008,10010,10011 ,0,0,0}, - {22406,22404,22403 ,10011,10009,10008 ,0,0,0}, {22407,22405,22408 ,10012,10010,10013 ,0,0,0}, - {22405,22407,22406 ,10010,10012,10011 ,0,0,0}, {22407,22408,22409 ,10012,10013,10014 ,0,0,0}, - {22409,22408,22410 ,10014,10013,10015 ,0,0,0}, {22411,22412,22413 ,10016,10017,10018 ,0,0,0}, - {22414,22415,22416 ,10019,10020,10021 ,0,0,0}, {22417,22418,22419 ,10022,10023,10024 ,0,0,0}, - {22420,22421,22422 ,10025,10026,10027 ,0,0,0}, {22423,22424,22425 ,10028,10029,10030 ,0,0,0}, - {22425,22339,22423 ,10030,10031,10028 ,0,0,0}, {22426,22427,22428 ,10032,10033,10034 ,0,0,0}, - {22404,22429,22401 ,10035,10036,10037 ,0,0,0}, {22430,22428,22431 ,10038,10034,10039 ,0,0,0}, - {22432,22433,22434 ,10040,10041,10042 ,0,0,0}, {22435,22436,22437 ,10043,10044,10045 ,0,0,0}, - {22438,22439,22440 ,10046,10047,10048 ,0,0,0}, {22441,22429,22434 ,10049,10036,10042 ,0,0,0}, - {22442,22353,22356 ,10050,10051,10052 ,0,0,0}, {22443,22444,22440 ,10053,10054,10048 ,0,0,0}, - {22445,22446,22447 ,10055,10056,10057 ,0,0,0}, {22448,22449,22445 ,10058,10059,10055 ,0,0,0}, - {22450,22451,22448 ,10060,10061,10058 ,0,0,0}, {22452,22448,22451 ,10062,10058,10061 ,0,0,0}, - {22453,22451,22450 ,10063,10061,10060 ,0,0,0}, {22454,22455,22456 ,10064,10065,10066 ,0,0,0}, - {22457,22442,22446 ,10067,10050,10056 ,0,0,0}, {22458,22459,22454 ,10068,10069,10064 ,0,0,0}, - {22407,22409,22434 ,10070,10071,10042 ,0,0,0}, {22436,22460,22437 ,10044,10072,10045 ,0,0,0}, - {22427,22461,22428 ,10033,10073,10034 ,0,0,0}, {22462,22463,22464 ,10074,10075,10076 ,0,0,0}, - {22385,22465,22383 ,10077,10078,10079 ,0,0,0}, {22422,22461,22466 ,10027,10073,10080 ,0,0,0}, - {22467,22336,22468 ,10081,10082,10083 ,0,0,0}, {22469,22470,22420 ,10084,10085,10025 ,0,0,0}, - {22415,22471,22472 ,10020,10086,10087 ,0,0,0}, {22473,22474,22475 ,10088,10089,10090 ,0,0,0}, - {22414,22416,22476 ,10019,10021,10091 ,0,0,0}, {22412,22411,22477 ,10017,10016,10092 ,0,0,0}, - {22478,22416,22473 ,10093,10021,10088 ,0,0,0}, {22479,22480,22481 ,10094,10095,10096 ,0,0,0}, - {22480,22477,22411 ,10095,10092,10016 ,0,0,0}, {22319,22482,22317 ,10097,10098,10099 ,0,0,0}, - {22483,22413,22484 ,10100,10018,10101 ,0,0,0}, {22414,22485,22486 ,10019,10102,10103 ,0,0,0}, - {22470,22395,22487 ,10085,10104,10105 ,0,0,0}, {22473,22416,22415 ,10088,10021,10020 ,0,0,0}, - {22473,22472,22488 ,10088,10087,10106 ,0,0,0}, {22415,22472,22473 ,10020,10087,10088 ,0,0,0}, - {22489,22490,22418 ,10107,10108,10023 ,0,0,0}, {22478,22417,22491 ,10093,10022,10109 ,0,0,0}, - {22413,22327,22326 ,10018,10110,10111 ,0,0,0}, {22492,22490,22489 ,10112,10108,10107 ,0,0,0}, - {22412,22492,22489 ,10017,10112,10107 ,0,0,0}, {22480,22411,22481 ,10095,10016,10096 ,0,0,0}, - {22477,22492,22412 ,10092,10112,10017 ,0,0,0}, {22484,22413,22326 ,10101,10018,10111 ,0,0,0}, - {22413,22483,22493 ,10018,10100,10113 ,0,0,0}, {22482,22484,22317 ,10098,10101,10099 ,0,0,0}, - {22484,22482,22483 ,10101,10098,10100 ,0,0,0}, {22331,22467,22319 ,10114,10081,10097 ,0,0,0}, - {22336,22467,22334 ,10082,10081,10115 ,0,0,0}, {22467,22482,22319 ,10081,10098,10097 ,0,0,0}, - {22468,22494,22467 ,10083,10116,10081 ,0,0,0}, {22337,22468,22336 ,10117,10083,10082 ,0,0,0}, - {22468,22339,22425 ,10083,10031,10030 ,0,0,0}, {22388,22495,22465 ,10118,10119,10078 ,0,0,0}, - {22496,22431,22428 ,10120,10039,10034 ,0,0,0}, {22436,22497,22498 ,10044,10121,10122 ,0,0,0}, - {22347,22497,22349 ,10123,10121,10124 ,0,0,0}, {22496,22499,22500 ,10120,10125,10126 ,0,0,0}, - {22430,22426,22428 ,10038,10032,10034 ,0,0,0}, {22385,22388,22465 ,10077,10118,10078 ,0,0,0}, - {22427,22501,22461 ,10033,10127,10073 ,0,0,0}, {22428,22461,22502 ,10034,10073,10128 ,0,0,0}, - {22461,22422,22421 ,10073,10027,10026 ,0,0,0}, {22470,22421,22420 ,10085,10026,10025 ,0,0,0}, - {22461,22421,22503 ,10073,10026,10129 ,0,0,0}, {22504,22487,22462 ,10130,10105,10074 ,0,0,0}, - {22470,22505,22421 ,10085,10131,10026 ,0,0,0}, {22415,22486,22425 ,10020,10103,10030 ,0,0,0}, - {22485,22505,22504 ,10102,10131,10130 ,0,0,0}, {22464,22468,22425 ,10076,10083,10030 ,0,0,0}, - {22425,22424,22415 ,10030,10029,10020 ,0,0,0}, {22464,22506,22468 ,10076,10132,10083 ,0,0,0}, - {22507,22464,22463 ,10133,10076,10075 ,0,0,0}, {22465,22508,22463 ,10078,10134,10075 ,0,0,0}, - {22465,22495,22509 ,10078,10119,10135 ,0,0,0}, {22388,22392,22495 ,10118,10136,10119 ,0,0,0}, - {22392,22400,22495 ,10136,10137,10119 ,0,0,0}, {22495,22429,22510 ,10119,10036,10138 ,0,0,0}, - {22404,22434,22429 ,10035,10042,10036 ,0,0,0}, {22406,22434,22404 ,10139,10042,10035 ,0,0,0}, - {22434,22406,22407 ,10042,10139,10070 ,0,0,0}, {22495,22401,22429 ,10119,10037,10036 ,0,0,0}, - {22409,22432,22434 ,10071,10040,10042 ,0,0,0}, {22511,22497,22512 ,10140,10121,10141 ,0,0,0}, - {22459,22458,22513 ,10069,10068,10142 ,0,0,0}, {22514,22445,22454 ,10143,10055,10064 ,0,0,0}, - {22454,22445,22515 ,10064,10055,10144 ,0,0,0}, {22515,22455,22454 ,10144,10065,10064 ,0,0,0}, - {22454,22459,22514 ,10064,10069,10143 ,0,0,0}, {22516,22441,22433 ,10145,10049,10041 ,0,0,0}, - {22460,22459,22513 ,10072,10069,10142 ,0,0,0}, {22460,22513,22517 ,10072,10142,10146 ,0,0,0}, - {22437,22460,22518 ,10045,10072,10147 ,0,0,0}, {22435,22349,22436 ,10043,10124,10044 ,0,0,0}, - {22519,22496,22498 ,10148,10120,10122 ,0,0,0}, {22497,22436,22349 ,10121,10044,10124 ,0,0,0}, - {22432,22409,22520 ,10040,10071,10149 ,0,0,0}, {22431,22432,22521 ,10039,10040,10150 ,0,0,0}, - {22511,22433,22519 ,10140,10041,10148 ,0,0,0}, {22511,22522,22516 ,10140,10151,10145 ,0,0,0}, - {22523,22352,22353 ,10152,10153,10051 ,0,0,0}, {22523,22348,22352 ,10152,10154,10153 ,0,0,0}, - {22524,22523,22444 ,10155,10152,10054 ,0,0,0}, {22522,22512,22524 ,10151,10141,10155 ,0,0,0}, - {22353,22442,22523 ,10051,10050,10152 ,0,0,0}, {22361,22447,22446 ,10156,10057,10056 ,0,0,0}, - {22489,22525,22412 ,10107,10157,10017 ,0,0,0}, {22419,22418,22490 ,10024,10023,10108 ,0,0,0}, - {22478,22526,22418 ,10093,10158,10023 ,0,0,0}, {22329,22327,22525 ,10159,10110,10157 ,0,0,0}, - {22526,22525,22489 ,10158,10157,10107 ,0,0,0}, {22525,22327,22413 ,10157,10110,10018 ,0,0,0}, - {22412,22525,22413 ,10017,10157,10018 ,0,0,0}, {22493,22481,22411 ,10113,10096,10016 ,0,0,0}, - {22417,22478,22418 ,10022,10093,10023 ,0,0,0}, {22491,22476,22416 ,10109,10091,10021 ,0,0,0}, - {22525,22527,22528 ,10157,10160,10161 ,0,0,0}, {22418,22526,22489 ,10023,10158,10107 ,0,0,0}, - {22475,22526,22473 ,10090,10158,10088 ,0,0,0}, {22329,22525,22528 ,10159,10157,10161 ,0,0,0}, - {22326,22323,22484 ,10111,10162,10101 ,0,0,0}, {22493,22411,22413 ,10113,10016,10018 ,0,0,0}, - {22491,22416,22478 ,10109,10021,10093 ,0,0,0}, {22476,22529,22414 ,10091,10163,10019 ,0,0,0}, - {22474,22473,22488 ,10089,10088,10106 ,0,0,0}, {22478,22473,22526 ,10093,10088,10158 ,0,0,0}, - {22527,22526,22475 ,10160,10158,10090 ,0,0,0}, {22526,22527,22525 ,10158,10160,10157 ,0,0,0}, - {22323,22320,22484 ,10162,10164,10101 ,0,0,0}, {22484,22320,22317 ,10101,10164,10099 ,0,0,0}, - {22530,22485,22529 ,10165,10102,10163 ,0,0,0}, {22530,22531,22505 ,10165,10166,10131 ,0,0,0}, - {22471,22415,22532 ,10086,10020,10167 ,0,0,0}, {22424,22532,22415 ,10029,10167,10020 ,0,0,0}, - {22482,22467,22494 ,10098,10081,10116 ,0,0,0}, {22331,22334,22467 ,10114,10115,10081 ,0,0,0}, - {22485,22414,22529 ,10102,10019,10163 ,0,0,0}, {22533,22395,22470 ,10168,10104,10085 ,0,0,0}, - {22425,22486,22462 ,10030,10103,10074 ,0,0,0}, {22414,22486,22415 ,10019,10103,10020 ,0,0,0}, - {22462,22486,22504 ,10074,10103,10130 ,0,0,0}, {22339,22468,22337 ,10031,10083,10117 ,0,0,0}, - {22425,22462,22464 ,10030,10074,10076 ,0,0,0}, {22468,22506,22494 ,10083,10132,10116 ,0,0,0}, - {22530,22505,22485 ,10165,10131,10102 ,0,0,0}, {22534,22505,22531 ,10169,10131,10166 ,0,0,0}, - {22395,22397,22487 ,10104,10170,10105 ,0,0,0}, {22485,22504,22486 ,10102,10130,10103 ,0,0,0}, - {22470,22487,22504 ,10085,10105,10130 ,0,0,0}, {22383,22465,22390 ,10079,10078,10171 ,0,0,0}, - {22463,22462,22487 ,10075,10074,10105 ,0,0,0}, {22506,22464,22507 ,10132,10076,10133 ,0,0,0}, - {22505,22534,22421 ,10131,10169,10026 ,0,0,0}, {22503,22421,22534 ,10129,10026,10169 ,0,0,0}, - {22533,22470,22469 ,10168,10085,10084 ,0,0,0}, {22505,22470,22504 ,10131,10085,10130 ,0,0,0}, - {22397,22393,22487 ,10170,10172,10105 ,0,0,0}, {22487,22393,22390 ,10105,10172,10171 ,0,0,0}, - {22390,22463,22487 ,10171,10075,10105 ,0,0,0}, {22507,22463,22508 ,10133,10075,10134 ,0,0,0}, - {22461,22503,22502 ,10073,10129,10128 ,0,0,0}, {22501,22466,22461 ,10127,10080,10073 ,0,0,0}, - {22508,22465,22509 ,10134,10078,10135 ,0,0,0}, {22390,22465,22463 ,10171,10078,10075 ,0,0,0}, - {22502,22499,22428 ,10128,10125,10034 ,0,0,0}, {22428,22499,22496 ,10034,10125,10120 ,0,0,0}, - {22401,22495,22400 ,10037,10119,10137 ,0,0,0}, {22495,22510,22509 ,10119,10138,10135 ,0,0,0}, - {22496,22432,22431 ,10120,10040,10039 ,0,0,0}, {22500,22535,22498 ,10126,10173,10122 ,0,0,0}, - {22345,22497,22347 ,10174,10121,10123 ,0,0,0}, {22521,22432,22520 ,10150,10040,10149 ,0,0,0}, - {22519,22432,22496 ,10148,10040,10120 ,0,0,0}, {22536,22429,22441 ,10175,10036,10049 ,0,0,0}, - {22434,22433,22441 ,10042,10041,10049 ,0,0,0}, {22510,22429,22536 ,10138,10036,10175 ,0,0,0}, - {22500,22498,22496 ,10126,10122,10120 ,0,0,0}, {22535,22537,22436 ,10173,10176,10044 ,0,0,0}, - {22341,22512,22342 ,10177,10141,10178 ,0,0,0}, {22432,22519,22433 ,10040,10148,10041 ,0,0,0}, - {22519,22498,22497 ,10148,10122,10121 ,0,0,0}, {22441,22538,22539 ,10049,10179,10180 ,0,0,0}, - {22433,22511,22516 ,10041,10140,10145 ,0,0,0}, {22536,22441,22539 ,10175,10049,10180 ,0,0,0}, - {22535,22436,22498 ,10173,10044,10122 ,0,0,0}, {22537,22460,22436 ,10176,10072,10044 ,0,0,0}, - {22512,22345,22342 ,10141,10174,10178 ,0,0,0}, {22519,22497,22511 ,10148,10121,10140 ,0,0,0}, - {22497,22345,22512 ,10121,10174,10141 ,0,0,0}, {22516,22540,22538 ,10145,10181,10179 ,0,0,0}, - {22511,22512,22522 ,10140,10141,10151 ,0,0,0}, {22538,22441,22516 ,10179,10049,10145 ,0,0,0}, - {22459,22460,22537 ,10069,10072,10176 ,0,0,0}, {22517,22518,22460 ,10146,10147,10072 ,0,0,0}, - {22523,22341,22348 ,10152,10177,10154 ,0,0,0}, {22522,22541,22540 ,10151,10182,10181 ,0,0,0}, - {22512,22523,22524 ,10141,10152,10155 ,0,0,0}, {22540,22516,22522 ,10181,10145,10151 ,0,0,0}, - {22454,22456,22458 ,10064,10066,10068 ,0,0,0}, {22514,22542,22445 ,10143,10183,10055 ,0,0,0}, - {22356,22359,22446 ,10052,10184,10056 ,0,0,0}, {22356,22446,22442 ,10052,10056,10050 ,0,0,0}, - {22524,22443,22541 ,10155,10053,10182 ,0,0,0}, {22523,22512,22341 ,10152,10141,10177 ,0,0,0}, - {22523,22442,22444 ,10152,10050,10054 ,0,0,0}, {22541,22522,22524 ,10182,10151,10155 ,0,0,0}, - {22445,22447,22515 ,10055,10057,10144 ,0,0,0}, {22542,22450,22448 ,10183,10060,10058 ,0,0,0}, - {22543,22439,22438 ,10185,10047,10046 ,0,0,0}, {22361,22446,22359 ,10156,10056,10184 ,0,0,0}, - {22446,22449,22457 ,10056,10059,10067 ,0,0,0}, {22438,22444,22442 ,10046,10054,10050 ,0,0,0}, - {22457,22438,22442 ,10067,10046,10050 ,0,0,0}, {22443,22524,22444 ,10053,10155,10054 ,0,0,0}, - {22542,22448,22445 ,10183,10058,10055 ,0,0,0}, {22445,22449,22446 ,10055,10059,10056 ,0,0,0}, - {22452,22544,22449 ,10062,10186,10059 ,0,0,0}, {22448,22452,22449 ,10058,10062,10059 ,0,0,0}, - {22544,22543,22457 ,10186,10185,10067 ,0,0,0}, {22449,22544,22457 ,10059,10186,10067 ,0,0,0}, - {22543,22438,22457 ,10185,10046,10067 ,0,0,0}, {22440,22444,22438 ,10048,10054,10046 ,0,0,0}, - {22545,22546,22547 ,10187,10188,10189 ,0,0,0}, {22548,22549,22546 ,10190,10191,10188 ,0,0,0}, - {22550,22551,22552 ,10192,10193,10194 ,0,0,0}, {22553,22554,22555 ,10195,10196,10197 ,0,0,0}, - {22556,22557,22558 ,10198,10199,10200 ,0,0,0}, {22559,22560,22561 ,10201,10202,10203 ,0,0,0}, - {22562,22563,22564 ,10204,10205,10206 ,0,0,0}, {22565,22566,22567 ,10207,10208,10209 ,0,0,0}, - {22568,22569,22570 ,10210,10211,10212 ,0,0,0}, {22571,22572,22573 ,10213,10214,10215 ,0,0,0}, - {22574,22575,22568 ,10216,10217,10210 ,0,0,0}, {22568,22570,22574 ,10210,10212,10216 ,0,0,0}, - {22575,22576,22577 ,10217,10218,10219 ,0,0,0}, {22576,22575,22574 ,10218,10217,10216 ,0,0,0}, - {22578,22577,22579 ,10220,10219,10221 ,0,0,0}, {22576,22579,22577 ,10218,10221,10219 ,0,0,0}, - {22580,22581,22578 ,10222,10223,10220 ,0,0,0}, {22578,22579,22580 ,10220,10221,10222 ,0,0,0}, - {22582,22581,22580 ,10224,10223,10222 ,0,0,0}, {22569,22573,22570 ,10211,10215,10212 ,0,0,0}, - {22571,22563,22572 ,10213,10205,10214 ,0,0,0}, {22569,22571,22573 ,10211,10213,10215 ,0,0,0}, - {22562,22564,22565 ,10204,10206,10207 ,0,0,0}, {22572,22563,22562 ,10214,10205,10204 ,0,0,0}, - {22567,22566,22558 ,10209,10208,10200 ,0,0,0}, {22565,22564,22566 ,10207,10206,10208 ,0,0,0}, - {22560,22557,22556 ,10202,10199,10198 ,0,0,0}, {22557,22567,22558 ,10199,10209,10200 ,0,0,0}, - {22583,22559,22561 ,10225,10201,10203 ,0,0,0}, {22561,22560,22556 ,10203,10202,10198 ,0,0,0}, - {22550,22583,22551 ,10192,10225,10193 ,0,0,0}, {22583,22550,22559 ,10225,10192,10201 ,0,0,0}, - {22552,22553,22555 ,10194,10195,10197 ,0,0,0}, {22551,22553,22552 ,10193,10195,10194 ,0,0,0}, - {22548,22554,22549 ,10190,10196,10191 ,0,0,0}, {22555,22554,22548 ,10197,10196,10190 ,0,0,0}, - {22547,22584,22545 ,10189,10226,10187 ,0,0,0}, {22546,22549,22547 ,10188,10191,10189 ,0,0,0}, - {22585,22586,22546 ,10227,10228,10229 ,0,0,0}, {22587,22548,22586 ,10230,10231,10228 ,0,0,0}, - {22559,22550,22588 ,10232,10233,10234 ,0,0,0}, {22552,22555,22589 ,10235,10236,10237 ,0,0,0}, - {22557,22590,22567 ,10238,10239,10240 ,0,0,0}, {22591,22592,22560 ,10241,10242,10243 ,0,0,0}, - {22593,22572,22562 ,10244,10245,10246 ,0,0,0}, {22594,22565,22595 ,10247,10248,10249 ,0,0,0}, - {22574,22570,22596 ,10250,10251,10252 ,0,0,0}, {22573,22597,22598 ,10253,10254,10255 ,0,0,0}, - {22599,22576,22574 ,10256,10257,10250 ,0,0,0}, {22574,22596,22599 ,10250,10252,10256 ,0,0,0}, - {22576,22600,22579 ,10257,10258,10259 ,0,0,0}, {22600,22576,22599 ,10258,10257,10256 ,0,0,0}, - {22580,22579,22601 ,10260,10259,10261 ,0,0,0}, {22600,22601,22579 ,10258,10261,10259 ,0,0,0}, - {22602,22582,22580 ,10262,10224,10260 ,0,0,0}, {22580,22601,22602 ,10260,10261,10262 ,0,0,0}, - {22603,22582,22602 ,10263,10224,10262 ,0,0,0}, {22570,22598,22596 ,10251,10255,10252 ,0,0,0}, - {22573,22572,22597 ,10253,10245,10254 ,0,0,0}, {22570,22573,22598 ,10251,10253,10255 ,0,0,0}, - {22593,22562,22594 ,10244,10246,10247 ,0,0,0}, {22597,22572,22593 ,10254,10245,10244 ,0,0,0}, - {22595,22565,22567 ,10249,10248,10240 ,0,0,0}, {22594,22562,22565 ,10247,10246,10248 ,0,0,0}, - {22592,22590,22557 ,10242,10239,10238 ,0,0,0}, {22590,22595,22567 ,10239,10249,10240 ,0,0,0}, - {22559,22591,22560 ,10232,10241,10243 ,0,0,0}, {22560,22592,22557 ,10243,10242,10238 ,0,0,0}, - {22550,22604,22588 ,10233,10264,10234 ,0,0,0}, {22559,22588,22591 ,10232,10234,10241 ,0,0,0}, - {22589,22604,22552 ,10237,10264,10235 ,0,0,0}, {22550,22552,22604 ,10233,10235,10264 ,0,0,0}, - {22587,22555,22548 ,10230,10236,10231 ,0,0,0}, {22589,22555,22587 ,10237,10236,10230 ,0,0,0}, - {22546,22545,22585 ,10229,10187,10227 ,0,0,0}, {22586,22548,22546 ,10228,10231,10229 ,0,0,0}, - {22605,22606,22586 ,10265,10266,10267 ,0,0,0}, {22589,22587,22607 ,10237,10230,10268 ,0,0,0}, - {22591,22588,22608 ,10269,10270,10271 ,0,0,0}, {22604,22609,22610 ,10264,10272,10273 ,0,0,0}, - {22590,22611,22595 ,10274,10275,10276 ,0,0,0}, {22612,22613,22592 ,10277,10278,10279 ,0,0,0}, - {22614,22597,22615 ,10280,10281,10282 ,0,0,0}, {22593,22594,22616 ,10283,10284,10285 ,0,0,0}, - {22599,22596,22617 ,10286,10287,10288 ,0,0,0}, {22598,22618,22596 ,10289,10290,10287 ,0,0,0}, - {22619,22600,22599 ,10291,10292,10286 ,0,0,0}, {22599,22617,22619 ,10286,10288,10291 ,0,0,0}, - {22600,22620,22601 ,10292,10293,10261 ,0,0,0}, {22620,22600,22619 ,10293,10292,10291 ,0,0,0}, - {22602,22601,22621 ,10294,10261,10295 ,0,0,0}, {22620,22621,22601 ,10293,10295,10261 ,0,0,0}, - {22621,22622,22603 ,10295,10296,10263 ,0,0,0}, {22603,22602,22621 ,10263,10294,10295 ,0,0,0}, - {22617,22596,22618 ,10288,10287,10290 ,0,0,0}, {22598,22597,22614 ,10289,10281,10280 ,0,0,0}, - {22598,22614,22618 ,10289,10280,10290 ,0,0,0}, {22615,22593,22616 ,10282,10283,10285 ,0,0,0}, - {22597,22593,22615 ,10281,10283,10282 ,0,0,0}, {22623,22594,22595 ,10297,10284,10276 ,0,0,0}, - {22616,22594,22623 ,10285,10284,10297 ,0,0,0}, {22613,22611,22590 ,10278,10275,10274 ,0,0,0}, - {22611,22623,22595 ,10275,10297,10276 ,0,0,0}, {22591,22612,22592 ,10269,10277,10279 ,0,0,0}, - {22592,22613,22590 ,10279,10278,10274 ,0,0,0}, {22588,22610,22608 ,10270,10273,10271 ,0,0,0}, - {22591,22608,22612 ,10269,10271,10277 ,0,0,0}, {22604,22589,22609 ,10264,10237,10272 ,0,0,0}, - {22588,22604,22610 ,10270,10264,10273 ,0,0,0}, {22607,22587,22606 ,10268,10230,10266 ,0,0,0}, - {22609,22589,22607 ,10272,10237,10268 ,0,0,0}, {22605,22586,22585 ,10265,10267,10227 ,0,0,0}, - {22606,22587,22586 ,10266,10230,10267 ,0,0,0}, {22624,22625,22606 ,10298,10299,10300 ,0,0,0}, - {22609,22607,22626 ,10301,10302,10303 ,0,0,0}, {22612,22608,22627 ,10304,10305,10306 ,0,0,0}, - {22610,22609,22628 ,10307,10301,10308 ,0,0,0}, {22611,22629,22623 ,10309,10310,10311 ,0,0,0}, - {22630,22631,22613 ,10312,10313,10314 ,0,0,0}, {22632,22614,22615 ,10315,10316,10317 ,0,0,0}, - {22633,22616,22634 ,10318,10319,10320 ,0,0,0}, {22635,22617,22636 ,10321,10322,10323 ,0,0,0}, - {22618,22637,22636 ,10324,10325,10323 ,0,0,0}, {22635,22638,22619 ,10321,10326,10327 ,0,0,0}, - {22619,22617,22635 ,10327,10322,10321 ,0,0,0}, {22620,22638,22639 ,10328,10326,10329 ,0,0,0}, - {22638,22620,22619 ,10326,10328,10327 ,0,0,0}, {22640,22621,22639 ,10330,10331,10329 ,0,0,0}, - {22620,22639,22621 ,10328,10329,10331 ,0,0,0}, {22640,22641,22622 ,10330,10332,10296 ,0,0,0}, - {22622,22621,22640 ,10296,10331,10330 ,0,0,0}, {22636,22617,22618 ,10323,10322,10324 ,0,0,0}, - {22637,22614,22632 ,10325,10316,10315 ,0,0,0}, {22618,22614,22637 ,10324,10316,10325 ,0,0,0}, - {22633,22615,22616 ,10318,10317,10319 ,0,0,0}, {22632,22615,22633 ,10315,10317,10318 ,0,0,0}, - {22629,22634,22623 ,10310,10320,10311 ,0,0,0}, {22634,22616,22623 ,10320,10319,10311 ,0,0,0}, - {22613,22631,22611 ,10314,10313,10309 ,0,0,0}, {22631,22629,22611 ,10313,10310,10309 ,0,0,0}, - {22612,22627,22630 ,10304,10306,10312 ,0,0,0}, {22612,22630,22613 ,10304,10312,10314 ,0,0,0}, - {22608,22610,22642 ,10305,10307,10333 ,0,0,0}, {22608,22642,22627 ,10305,10333,10306 ,0,0,0}, - {22628,22609,22626 ,10308,10301,10303 ,0,0,0}, {22642,22610,22628 ,10333,10307,10308 ,0,0,0}, - {22625,22607,22606 ,10299,10302,10300 ,0,0,0}, {22626,22607,22625 ,10303,10302,10299 ,0,0,0}, - {22624,22606,22605 ,10298,10300,10265 ,0,0,0}, {22639,22643,22644 ,10334,10335,10336 ,0,0,0}, - {22641,22640,22645 ,10332,10337,10338 ,0,0,0}, {22646,22636,22647 ,10339,10340,10341 ,0,0,0}, - {22635,22648,22638 ,10342,10343,10344 ,0,0,0}, {22634,22649,22633 ,10345,10346,10347 ,0,0,0}, - {22632,22650,22637 ,10348,10349,10350 ,0,0,0}, {22651,22631,22630 ,10351,10352,10353 ,0,0,0}, - {22652,22629,22653 ,10354,10355,10356 ,0,0,0}, {22654,22642,22655 ,10357,10358,10359 ,0,0,0}, - {22627,22654,22656 ,10360,10357,10361 ,0,0,0}, {22657,22655,22628 ,10362,10359,10363 ,0,0,0}, - {22642,22628,22655 ,10358,10363,10359 ,0,0,0}, {22626,22658,22657 ,10364,10365,10362 ,0,0,0}, - {22657,22628,22626 ,10362,10363,10364 ,0,0,0}, {22658,22625,22659 ,10365,10366,10367 ,0,0,0}, - {22625,22658,22626 ,10366,10365,10364 ,0,0,0}, {22656,22630,22627 ,10361,10353,10360 ,0,0,0}, - {22659,22625,22624 ,10367,10366,10368 ,0,0,0}, {22654,22627,22642 ,10357,10360,10358 ,0,0,0}, - {22651,22653,22631 ,10351,10356,10352 ,0,0,0}, {22656,22651,22630 ,10361,10351,10353 ,0,0,0}, - {22629,22652,22634 ,10355,10354,10345 ,0,0,0}, {22631,22653,22629 ,10352,10356,10355 ,0,0,0}, - {22633,22649,22660 ,10347,10346,10369 ,0,0,0}, {22634,22652,22649 ,10345,10354,10346 ,0,0,0}, - {22660,22650,22632 ,10369,10349,10348 ,0,0,0}, {22632,22633,22660 ,10348,10347,10369 ,0,0,0}, - {22647,22636,22637 ,10341,10340,10350 ,0,0,0}, {22647,22637,22650 ,10341,10350,10349 ,0,0,0}, - {22646,22648,22635 ,10339,10343,10342 ,0,0,0}, {22646,22635,22636 ,10339,10342,10340 ,0,0,0}, - {22638,22643,22639 ,10344,10335,10334 ,0,0,0}, {22648,22643,22638 ,10343,10335,10344 ,0,0,0}, - {22640,22644,22645 ,10337,10336,10338 ,0,0,0}, {22639,22644,22640 ,10334,10336,10337 ,0,0,0}, - {22641,22645,22661 ,10332,10338,10370 ,0,0,0}, {22662,22663,22664 ,10371,10372,10373 ,0,0,0}, - {22665,22666,22667 ,10374,10375,10376 ,0,0,0}, {22666,22668,22669 ,10375,10377,10378 ,0,0,0}, - {22669,22667,22666 ,10378,10376,10375 ,0,0,0}, {22666,22664,22670 ,10375,10373,10379 ,0,0,0}, - {22668,22671,22669 ,10377,10380,10378 ,0,0,0}, {22672,22673,22674 ,10381,10382,10383 ,0,0,0}, - {22624,22663,22659 ,10368,10372,10384 ,0,0,0}, {22675,22676,22677 ,10385,10386,10387 ,0,0,0}, - {22655,22657,22678 ,10388,10389,10390 ,0,0,0}, {22679,22680,22681 ,10391,10392,10393 ,0,0,0}, - {22656,22682,22651 ,10394,10395,10396 ,0,0,0}, {22683,22684,22650 ,10397,10398,10399 ,0,0,0}, - {22685,22686,22681 ,10400,10401,10393 ,0,0,0}, {22687,22688,22689 ,10402,10403,10404 ,0,0,0}, - {22690,22684,22691 ,10405,10398,10406 ,0,0,0}, {22644,22688,22645 ,10407,10403,10408 ,0,0,0}, - {22645,22692,22661 ,10408,10409,10410 ,0,0,0}, {22693,22694,22689 ,10411,10412,10404 ,0,0,0}, - {22645,22688,22692 ,10408,10403,10409 ,0,0,0}, {22695,22687,22696 ,10413,10402,10414 ,0,0,0}, - {22693,22689,22643 ,10411,10404,10415 ,0,0,0}, {22693,22697,22698 ,10411,10416,10417 ,0,0,0}, - {22648,22697,22693 ,10418,10416,10411 ,0,0,0}, {22647,22684,22690 ,10419,10398,10405 ,0,0,0}, - {22697,22690,22699 ,10416,10405,10420 ,0,0,0}, {22697,22646,22690 ,10416,10421,10405 ,0,0,0}, - {22700,22683,22686 ,10422,10397,10401 ,0,0,0}, {22701,22684,22683 ,10423,10398,10397 ,0,0,0}, - {22686,22649,22652 ,10401,10424,10425 ,0,0,0}, {22686,22683,22660 ,10401,10397,10426 ,0,0,0}, - {22651,22679,22653 ,10396,10391,10427 ,0,0,0}, {22653,22681,22652 ,10427,10393,10425 ,0,0,0}, - {22675,22702,22682 ,10385,10428,10395 ,0,0,0}, {22682,22703,22679 ,10395,10429,10391 ,0,0,0}, - {22654,22655,22676 ,10430,10388,10386 ,0,0,0}, {22656,22654,22675 ,10394,10430,10385 ,0,0,0}, - {22673,22704,22678 ,10382,10431,10390 ,0,0,0}, {22677,22676,22704 ,10387,10386,10431 ,0,0,0}, - {22705,22658,22659 ,10432,10433,10384 ,0,0,0}, {22674,22657,22658 ,10383,10389,10433 ,0,0,0}, - {22706,22670,22664 ,10434,10379,10373 ,0,0,0}, {22705,22662,22672 ,10432,10371,10381 ,0,0,0}, - {22664,22663,22706 ,10373,10372,10434 ,0,0,0}, {22668,22666,22670 ,10377,10375,10379 ,0,0,0}, - {22707,22665,22667 ,10435,10374,10376 ,0,0,0}, {22708,22665,22707 ,10436,10374,10435 ,0,0,0}, - {22663,22624,22706 ,10372,10368,10434 ,0,0,0}, {22664,22665,22662 ,10373,10374,10371 ,0,0,0}, - {22659,22663,22705 ,10384,10372,10432 ,0,0,0}, {22666,22665,22664 ,10375,10374,10373 ,0,0,0}, - {22709,22708,22707 ,10437,10436,10435 ,0,0,0}, {22710,22708,22709 ,10438,10436,10437 ,0,0,0}, - {22663,22662,22705 ,10372,10371,10432 ,0,0,0}, {22662,22708,22672 ,10371,10436,10381 ,0,0,0}, - {22658,22705,22674 ,10433,10432,10383 ,0,0,0}, {22665,22708,22662 ,10374,10436,10371 ,0,0,0}, - {22711,22710,22709 ,10439,10438,10437 ,0,0,0}, {22712,22710,22711 ,10440,10438,10439 ,0,0,0}, - {22705,22672,22674 ,10432,10381,10383 ,0,0,0}, {22672,22710,22673 ,10381,10438,10382 ,0,0,0}, - {22657,22674,22678 ,10389,10383,10390 ,0,0,0}, {22708,22710,22672 ,10436,10438,10381 ,0,0,0}, - {22713,22712,22711 ,10441,10440,10439 ,0,0,0}, {22714,22712,22713 ,10442,10440,10441 ,0,0,0}, - {22674,22673,22678 ,10383,10382,10390 ,0,0,0}, {22673,22712,22704 ,10382,10440,10431 ,0,0,0}, - {22655,22678,22676 ,10388,10390,10386 ,0,0,0}, {22710,22712,22673 ,10438,10440,10382 ,0,0,0}, - {22715,22714,22713 ,10443,10442,10441 ,0,0,0}, {22716,22714,22715 ,10444,10442,10443 ,0,0,0}, - {22678,22704,22676 ,10390,10431,10386 ,0,0,0}, {22704,22714,22677 ,10431,10442,10387 ,0,0,0}, - {22654,22676,22675 ,10430,10386,10385 ,0,0,0}, {22712,22714,22704 ,10440,10442,10431 ,0,0,0}, - {22717,22716,22715 ,10445,10444,10443 ,0,0,0}, {22718,22719,22696 ,10446,10447,10414 ,0,0,0}, - {22720,22716,22717 ,10448,10444,10445 ,0,0,0}, {22677,22716,22702 ,10387,10444,10428 ,0,0,0}, - {22656,22675,22682 ,10394,10385,10395 ,0,0,0}, {22714,22716,22677 ,10442,10444,10387 ,0,0,0}, - {22721,22720,22717 ,10449,10448,10445 ,0,0,0}, {22722,22723,22720 ,10450,10451,10448 ,0,0,0}, - {22677,22702,22675 ,10387,10428,10385 ,0,0,0}, {22702,22720,22703 ,10428,10448,10429 ,0,0,0}, - {22651,22682,22679 ,10396,10395,10391 ,0,0,0}, {22716,22720,22702 ,10444,10448,10428 ,0,0,0}, - {22721,22722,22720 ,10449,10450,10448 ,0,0,0}, {22724,22725,22723 ,10452,10453,10451 ,0,0,0}, - {22702,22703,22682 ,10428,10429,10395 ,0,0,0}, {22703,22723,22680 ,10429,10451,10392 ,0,0,0}, - {22653,22679,22681 ,10427,10391,10393 ,0,0,0}, {22720,22723,22703 ,10448,10451,10429 ,0,0,0}, - {22722,22724,22723 ,10450,10452,10451 ,0,0,0}, {22726,22727,22725 ,10454,10455,10453 ,0,0,0}, - {22703,22680,22679 ,10429,10392,10391 ,0,0,0}, {22725,22685,22680 ,10453,10400,10392 ,0,0,0}, - {22652,22681,22686 ,10425,10393,10401 ,0,0,0}, {22723,22725,22680 ,10451,10453,10392 ,0,0,0}, - {22724,22726,22725 ,10452,10454,10453 ,0,0,0}, {22727,22728,22729 ,10455,10456,10457 ,0,0,0}, - {22680,22685,22681 ,10392,10400,10393 ,0,0,0}, {22727,22700,22685 ,10455,10422,10400 ,0,0,0}, - {22660,22649,22686 ,10426,10424,10401 ,0,0,0}, {22725,22727,22685 ,10453,10455,10400 ,0,0,0}, - {22726,22728,22727 ,10454,10456,10455 ,0,0,0}, {22729,22730,22731 ,10457,10458,10459 ,0,0,0}, - {22685,22700,22686 ,10400,10422,10401 ,0,0,0}, {22729,22701,22700 ,10457,10423,10422 ,0,0,0}, - {22650,22660,22683 ,10399,10426,10397 ,0,0,0}, {22727,22729,22700 ,10455,10457,10422 ,0,0,0}, - {22728,22730,22729 ,10456,10458,10457 ,0,0,0}, {22731,22732,22733 ,10459,10460,10461 ,0,0,0}, - {22700,22701,22683 ,10422,10423,10397 ,0,0,0}, {22731,22691,22701 ,10459,10406,10423 ,0,0,0}, - {22647,22650,22684 ,10419,10399,10398 ,0,0,0}, {22729,22731,22701 ,10457,10459,10423 ,0,0,0}, - {22730,22732,22731 ,10458,10460,10459 ,0,0,0}, {22733,22734,22735 ,10461,10462,10463 ,0,0,0}, - {22701,22691,22684 ,10423,10406,10398 ,0,0,0}, {22733,22699,22691 ,10461,10420,10406 ,0,0,0}, - {22646,22647,22690 ,10421,10419,10405 ,0,0,0}, {22731,22733,22691 ,10459,10461,10406 ,0,0,0}, - {22732,22734,22733 ,10460,10462,10461 ,0,0,0}, {22735,22736,22737 ,10463,10464,10465 ,0,0,0}, - {22691,22699,22690 ,10406,10420,10405 ,0,0,0}, {22735,22698,22699 ,10463,10417,10420 ,0,0,0}, - {22648,22646,22697 ,10418,10421,10416 ,0,0,0}, {22733,22735,22699 ,10461,10463,10420 ,0,0,0}, - {22734,22736,22735 ,10462,10464,10463 ,0,0,0}, {22696,22737,22718 ,10414,10465,10446 ,0,0,0}, - {22699,22698,22697 ,10420,10417,10416 ,0,0,0}, {22698,22737,22694 ,10417,10465,10412 ,0,0,0}, - {22643,22648,22693 ,10415,10418,10411 ,0,0,0}, {22735,22737,22698 ,10463,10465,10417 ,0,0,0}, - {22736,22718,22737 ,10464,10446,10465 ,0,0,0}, {22644,22689,22688 ,10407,10404,10403 ,0,0,0}, - {22698,22694,22693 ,10417,10412,10411 ,0,0,0}, {22696,22687,22694 ,10414,10402,10412 ,0,0,0}, - {22644,22643,22689 ,10407,10415,10404 ,0,0,0}, {22696,22694,22737 ,10414,10412,10465 ,0,0,0}, - {22719,22695,22696 ,10447,10413,10414 ,0,0,0}, {22738,22687,22695 ,10466,10402,10413 ,0,0,0}, - {22694,22687,22689 ,10412,10402,10404 ,0,0,0}, {22687,22738,22688 ,10402,10466,10403 ,0,0,0}, - {22692,22688,22738 ,10409,10403,10466 ,0,0,0}, {22739,22740,22669 ,10467,10468,10469 ,0,0,0}, - {22707,22667,22741 ,10470,10471,10472 ,0,0,0}, {22713,22711,22742 ,10473,10474,10475 ,0,0,0}, - {22709,22743,22744 ,10476,10477,10478 ,0,0,0}, {22745,22746,22721 ,10479,10480,10481 ,0,0,0}, - {22747,22748,22715 ,10482,10483,10484 ,0,0,0}, {22749,22726,22750 ,10485,10486,10487 ,0,0,0}, - {22724,22722,22751 ,10488,10489,10490 ,0,0,0}, {22732,22730,22752 ,10491,10492,10493 ,0,0,0}, - {22728,22753,22730 ,10494,10495,10492 ,0,0,0}, {22754,22734,22732 ,10496,10497,10491 ,0,0,0}, - {22732,22752,22754 ,10491,10493,10496 ,0,0,0}, {22734,22755,22736 ,10497,10498,10499 ,0,0,0}, - {22755,22734,22754 ,10498,10497,10496 ,0,0,0}, {22718,22736,22756 ,10500,10499,10501 ,0,0,0}, - {22755,22756,22736 ,10498,10501,10499 ,0,0,0}, {22756,22757,22719 ,10501,10502,10447 ,0,0,0}, - {22719,22718,22756 ,10447,10500,10501 ,0,0,0}, {22752,22730,22753 ,10493,10492,10495 ,0,0,0}, - {22728,22726,22749 ,10494,10486,10485 ,0,0,0}, {22728,22749,22753 ,10494,10485,10495 ,0,0,0}, - {22750,22724,22751 ,10487,10488,10490 ,0,0,0}, {22726,22724,22750 ,10486,10488,10487 ,0,0,0}, - {22746,22722,22721 ,10480,10489,10481 ,0,0,0}, {22751,22722,22746 ,10490,10489,10480 ,0,0,0}, - {22748,22745,22717 ,10483,10479,10503 ,0,0,0}, {22745,22721,22717 ,10479,10481,10503 ,0,0,0}, - {22713,22747,22715 ,10473,10482,10484 ,0,0,0}, {22715,22748,22717 ,10484,10483,10503 ,0,0,0}, - {22711,22744,22742 ,10474,10478,10475 ,0,0,0}, {22713,22742,22747 ,10473,10475,10482 ,0,0,0}, - {22709,22707,22743 ,10476,10470,10477 ,0,0,0}, {22711,22709,22744 ,10474,10476,10478 ,0,0,0}, - {22741,22667,22740 ,10472,10471,10468 ,0,0,0}, {22743,22707,22741 ,10477,10470,10472 ,0,0,0}, - {22739,22669,22671 ,10467,10469,10504 ,0,0,0}, {22740,22667,22669 ,10468,10471,10469 ,0,0,0}, - {22758,22759,22740 ,10505,10506,10507 ,0,0,0}, {22741,22740,22760 ,10508,10507,10509 ,0,0,0}, - {22742,22744,22761 ,10510,10511,10512 ,0,0,0}, {22743,22762,22763 ,10513,10514,10515 ,0,0,0}, - {22748,22764,22745 ,10516,10517,10518 ,0,0,0}, {22765,22766,22747 ,10519,10520,10521 ,0,0,0}, - {22767,22750,22751 ,10522,10523,10524 ,0,0,0}, {22768,22746,22769 ,10525,10526,10527 ,0,0,0}, - {22752,22753,22770 ,10528,10529,10530 ,0,0,0}, {22749,22771,22772 ,10531,10532,10533 ,0,0,0}, - {22773,22754,22752 ,10534,10535,10528 ,0,0,0}, {22752,22770,22773 ,10528,10530,10534 ,0,0,0}, - {22754,22774,22755 ,10535,10536,10537 ,0,0,0}, {22774,22754,22773 ,10536,10535,10534 ,0,0,0}, - {22756,22755,22775 ,10538,10537,10539 ,0,0,0}, {22774,22775,22755 ,10536,10539,10537 ,0,0,0}, - {22776,22757,22756 ,10540,10502,10538 ,0,0,0}, {22756,22775,22776 ,10538,10539,10540 ,0,0,0}, - {22777,22757,22776 ,10541,10502,10540 ,0,0,0}, {22753,22772,22770 ,10529,10533,10530 ,0,0,0}, - {22749,22750,22771 ,10531,10523,10532 ,0,0,0}, {22753,22749,22772 ,10529,10531,10533 ,0,0,0}, - {22767,22751,22768 ,10522,10524,10525 ,0,0,0}, {22771,22750,22767 ,10532,10523,10522 ,0,0,0}, - {22769,22746,22745 ,10527,10526,10518 ,0,0,0}, {22768,22751,22746 ,10525,10524,10526 ,0,0,0}, - {22766,22764,22748 ,10520,10517,10516 ,0,0,0}, {22764,22769,22745 ,10517,10527,10518 ,0,0,0}, - {22742,22765,22747 ,10510,10519,10521 ,0,0,0}, {22747,22766,22748 ,10521,10520,10516 ,0,0,0}, - {22744,22763,22761 ,10511,10515,10512 ,0,0,0}, {22742,22761,22765 ,10510,10512,10519 ,0,0,0}, - {22743,22741,22762 ,10513,10508,10514 ,0,0,0}, {22744,22743,22763 ,10511,10513,10515 ,0,0,0}, - {22760,22740,22759 ,10509,10507,10506 ,0,0,0}, {22762,22741,22760 ,10514,10508,10509 ,0,0,0}, - {22758,22740,22739 ,10505,10507,10467 ,0,0,0}, {22778,22779,22759 ,10542,10543,10544 ,0,0,0}, - {22780,22760,22779 ,10545,10509,10543 ,0,0,0}, {22765,22761,22781 ,10546,10547,10548 ,0,0,0}, - {22763,22762,22782 ,10515,10514,10549 ,0,0,0}, {22764,22783,22769 ,10550,10551,10552 ,0,0,0}, - {22784,22785,22766 ,10553,10554,10555 ,0,0,0}, {22786,22771,22767 ,10556,10557,10558 ,0,0,0}, - {22787,22768,22788 ,10559,10560,10561 ,0,0,0}, {22773,22770,22789 ,10534,10530,10562 ,0,0,0}, - {22772,22790,22791 ,10563,10564,10565 ,0,0,0}, {22792,22774,22773 ,10566,10536,10534 ,0,0,0}, - {22773,22789,22792 ,10534,10562,10566 ,0,0,0}, {22774,22793,22775 ,10536,10567,10539 ,0,0,0}, - {22793,22774,22792 ,10567,10536,10566 ,0,0,0}, {22776,22775,22794 ,10568,10539,10569 ,0,0,0}, - {22793,22794,22775 ,10567,10569,10539 ,0,0,0}, {22795,22777,22776 ,10570,10541,10568 ,0,0,0}, - {22776,22794,22795 ,10568,10569,10570 ,0,0,0}, {22796,22777,22795 ,10571,10541,10570 ,0,0,0}, - {22770,22791,22789 ,10530,10565,10562 ,0,0,0}, {22772,22771,22790 ,10563,10557,10564 ,0,0,0}, - {22770,22772,22791 ,10530,10563,10565 ,0,0,0}, {22786,22767,22787 ,10556,10558,10559 ,0,0,0}, - {22790,22771,22786 ,10564,10557,10556 ,0,0,0}, {22788,22768,22769 ,10561,10560,10552 ,0,0,0}, - {22787,22767,22768 ,10559,10558,10560 ,0,0,0}, {22785,22783,22764 ,10554,10551,10550 ,0,0,0}, - {22783,22788,22769 ,10551,10561,10552 ,0,0,0}, {22765,22784,22766 ,10546,10553,10555 ,0,0,0}, - {22766,22785,22764 ,10555,10554,10550 ,0,0,0}, {22761,22797,22781 ,10547,10572,10548 ,0,0,0}, - {22765,22781,22784 ,10546,10548,10553 ,0,0,0}, {22782,22797,22763 ,10549,10572,10515 ,0,0,0}, - {22761,22763,22797 ,10547,10515,10572 ,0,0,0}, {22780,22762,22760 ,10545,10514,10509 ,0,0,0}, - {22782,22762,22780 ,10549,10514,10545 ,0,0,0}, {22759,22758,22778 ,10544,10505,10542 ,0,0,0}, - {22779,22760,22759 ,10543,10509,10544 ,0,0,0}, {22798,22799,22779 ,10573,10574,10575 ,0,0,0}, - {22800,22780,22799 ,10576,10577,10574 ,0,0,0}, {22784,22781,22801 ,10578,10579,10580 ,0,0,0}, - {22797,22782,22802 ,10581,10582,10583 ,0,0,0}, {22783,22803,22788 ,10584,10585,10586 ,0,0,0}, - {22804,22805,22785 ,10587,10588,10589 ,0,0,0}, {22806,22790,22786 ,10590,10591,10592 ,0,0,0}, - {22807,22787,22808 ,10593,10594,10595 ,0,0,0}, {22809,22789,22810 ,10596,10597,10598 ,0,0,0}, - {22791,22790,22811 ,10599,10591,10600 ,0,0,0}, {22812,22793,22792 ,10601,10602,10603 ,0,0,0}, - {22792,22809,22812 ,10603,10596,10601 ,0,0,0}, {22793,22813,22794 ,10602,10604,10605 ,0,0,0}, - {22813,22793,22812 ,10604,10602,10601 ,0,0,0}, {22795,22794,22814 ,10606,10605,10607 ,0,0,0}, - {22813,22814,22794 ,10604,10607,10605 ,0,0,0}, {22815,22796,22795 ,10608,10571,10606 ,0,0,0}, - {22795,22814,22815 ,10606,10607,10608 ,0,0,0}, {22816,22796,22815 ,10609,10571,10608 ,0,0,0}, - {22809,22792,22789 ,10596,10603,10597 ,0,0,0}, {22810,22791,22811 ,10598,10599,10600 ,0,0,0}, - {22789,22791,22810 ,10597,10599,10598 ,0,0,0}, {22786,22807,22806 ,10592,10593,10590 ,0,0,0}, - {22811,22790,22806 ,10600,10591,10590 ,0,0,0}, {22808,22787,22788 ,10595,10594,10586 ,0,0,0}, - {22807,22786,22787 ,10593,10592,10594 ,0,0,0}, {22805,22803,22783 ,10588,10585,10584 ,0,0,0}, - {22803,22808,22788 ,10585,10595,10586 ,0,0,0}, {22784,22804,22785 ,10578,10587,10589 ,0,0,0}, - {22785,22805,22783 ,10589,10588,10584 ,0,0,0}, {22781,22817,22801 ,10579,10610,10580 ,0,0,0}, - {22784,22801,22804 ,10578,10580,10587 ,0,0,0}, {22802,22817,22797 ,10583,10610,10581 ,0,0,0}, - {22781,22797,22817 ,10579,10581,10610 ,0,0,0}, {22800,22782,22780 ,10576,10582,10577 ,0,0,0}, - {22802,22782,22800 ,10583,10582,10576 ,0,0,0}, {22779,22778,22798 ,10575,10542,10573 ,0,0,0}, - {22799,22780,22779 ,10574,10577,10575 ,0,0,0}, {22818,22798,22819 ,10611,10573,10612 ,0,0,0}, - {22820,22802,22821 ,10613,10614,10615 ,0,0,0}, {22822,22800,22799 ,10616,10617,10618 ,0,0,0}, - {22804,22823,22805 ,10619,10620,10621 ,0,0,0}, {22817,22824,22801 ,10622,10623,10624 ,0,0,0}, - {22825,22807,22808 ,10625,10626,10627 ,0,0,0}, {22826,22803,22827 ,10628,10629,10630 ,0,0,0}, - {22828,22811,22829 ,10631,10632,10633 ,0,0,0}, {22806,22830,22829 ,10634,10635,10633 ,0,0,0}, - {22812,22809,22831 ,10636,10637,10638 ,0,0,0}, {22810,22832,22809 ,10639,10640,10637 ,0,0,0}, - {22833,22813,22812 ,10641,10642,10636 ,0,0,0}, {22812,22831,22833 ,10636,10638,10641 ,0,0,0}, - {22813,22834,22814 ,10642,10643,10644 ,0,0,0}, {22834,22813,22833 ,10643,10642,10641 ,0,0,0}, - {22815,22814,22835 ,10645,10644,10646 ,0,0,0}, {22834,22835,22814 ,10643,10646,10644 ,0,0,0}, - {22836,22816,22815 ,10647,10609,10645 ,0,0,0}, {22815,22835,22836 ,10645,10646,10647 ,0,0,0}, - {22828,22832,22810 ,10631,10640,10639 ,0,0,0}, {22809,22832,22831 ,10637,10640,10638 ,0,0,0}, - {22811,22806,22829 ,10632,10634,10633 ,0,0,0}, {22810,22811,22828 ,10639,10632,10631 ,0,0,0}, - {22830,22807,22825 ,10635,10626,10625 ,0,0,0}, {22806,22807,22830 ,10634,10626,10635 ,0,0,0}, - {22826,22808,22803 ,10628,10627,10629 ,0,0,0}, {22825,22808,22826 ,10625,10627,10628 ,0,0,0}, - {22823,22827,22805 ,10620,10630,10621 ,0,0,0}, {22827,22803,22805 ,10630,10629,10621 ,0,0,0}, - {22801,22837,22804 ,10624,10648,10619 ,0,0,0}, {22837,22823,22804 ,10648,10620,10619 ,0,0,0}, - {22817,22820,22824 ,10622,10613,10623 ,0,0,0}, {22801,22824,22837 ,10624,10623,10648 ,0,0,0}, - {22802,22800,22821 ,10614,10617,10615 ,0,0,0}, {22817,22802,22820 ,10622,10614,10613 ,0,0,0}, - {22822,22799,22818 ,10616,10618,10611 ,0,0,0}, {22821,22800,22822 ,10615,10617,10616 ,0,0,0}, - {22798,22818,22799 ,10573,10611,10618 ,0,0,0}, {22825,22826,22838 ,10649,10650,10651 ,0,0,0}, - {22839,22826,22827 ,10652,10650,10653 ,0,0,0}, {22826,22839,22838 ,10650,10652,10651 ,0,0,0}, - {22823,22840,22827 ,10654,10655,10653 ,0,0,0}, {22839,22827,22840 ,10652,10653,10655 ,0,0,0}, - {22823,22837,22841 ,10654,10656,10657 ,0,0,0}, {22841,22840,22823 ,10657,10655,10654 ,0,0,0}, - {22842,22837,22824 ,10658,10656,10659 ,0,0,0}, {22837,22842,22841 ,10656,10658,10657 ,0,0,0}, - {22820,22843,22824 ,10660,10661,10659 ,0,0,0}, {22842,22824,22843 ,10658,10659,10661 ,0,0,0}, - {22820,22821,22844 ,10660,10662,10663 ,0,0,0}, {22844,22843,22820 ,10663,10661,10660 ,0,0,0}, - {22845,22821,22822 ,10664,10662,10665 ,0,0,0}, {22821,22845,22844 ,10662,10664,10663 ,0,0,0}, - {22818,22846,22822 ,10666,10667,10665 ,0,0,0}, {22845,22822,22846 ,10664,10665,10667 ,0,0,0}, - {22819,22847,22846 ,10668,10669,10667 ,0,0,0}, {22846,22818,22819 ,10667,10666,10668 ,0,0,0}, - {22825,22838,22848 ,10649,10651,10670 ,0,0,0}, {22848,22849,22830 ,10670,10671,10672 ,0,0,0}, - {22830,22825,22848 ,10672,10649,10670 ,0,0,0}, {22829,22849,22850 ,10673,10671,10674 ,0,0,0}, - {22849,22829,22830 ,10671,10673,10672 ,0,0,0}, {22851,22828,22850 ,10675,10676,10674 ,0,0,0}, - {22829,22850,22828 ,10673,10674,10676 ,0,0,0}, {22851,22852,22832 ,10675,10677,10678 ,0,0,0}, - {22832,22828,22851 ,10678,10676,10675 ,0,0,0}, {22831,22852,22853 ,10679,10677,10680 ,0,0,0}, - {22852,22831,22832 ,10677,10679,10678 ,0,0,0}, {22854,22833,22853 ,10681,10682,10680 ,0,0,0}, - {22831,22853,22833 ,10679,10680,10682 ,0,0,0}, {22854,22855,22834 ,10681,10683,10684 ,0,0,0}, - {22834,22833,22854 ,10684,10682,10681 ,0,0,0}, {22835,22855,22856 ,10685,10683,10686 ,0,0,0}, - {22855,22835,22834 ,10683,10685,10684 ,0,0,0}, {22835,22856,22836 ,10685,10686,10687 ,0,0,0}, - {22857,22847,22858 ,10688,10689,10690 ,0,0,0}, {22859,22843,22860 ,10691,10692,10693 ,0,0,0}, - {22857,22861,22845 ,10688,10694,10695 ,0,0,0}, {22840,22862,22863 ,10696,10697,10698 ,0,0,0}, - {22842,22864,22841 ,10699,10700,10701 ,0,0,0}, {22865,22866,22848 ,10702,10703,10704 ,0,0,0}, - {22867,22838,22839 ,10705,10706,10707 ,0,0,0}, {22868,22851,22869 ,10708,10709,10710 ,0,0,0}, - {22850,22849,22870 ,10711,10712,10713 ,0,0,0}, {22871,22853,22852 ,10714,10715,10716 ,0,0,0}, - {22852,22868,22871 ,10716,10708,10714 ,0,0,0}, {22853,22872,22854 ,10715,10717,10718 ,0,0,0}, - {22872,22853,22871 ,10717,10715,10714 ,0,0,0}, {22855,22854,22873 ,10719,10718,10720 ,0,0,0}, - {22872,22873,22854 ,10717,10720,10718 ,0,0,0}, {22874,22856,22855 ,10721,10686,10719 ,0,0,0}, - {22855,22873,22874 ,10719,10720,10721 ,0,0,0}, {22851,22850,22869 ,10709,10711,10710 ,0,0,0}, - {22852,22851,22868 ,10716,10709,10708 ,0,0,0}, {22870,22849,22866 ,10713,10712,10703 ,0,0,0}, - {22869,22850,22870 ,10710,10711,10713 ,0,0,0}, {22865,22848,22838 ,10702,10704,10706 ,0,0,0}, - {22866,22849,22848 ,10703,10712,10704 ,0,0,0}, {22863,22867,22839 ,10698,10705,10707 ,0,0,0}, - {22867,22865,22838 ,10705,10702,10706 ,0,0,0}, {22841,22862,22840 ,10701,10697,10696 ,0,0,0}, - {22840,22863,22839 ,10696,10698,10707 ,0,0,0}, {22842,22859,22864 ,10699,10691,10700 ,0,0,0}, - {22841,22864,22862 ,10701,10700,10697 ,0,0,0}, {22843,22844,22860 ,10692,10722,10693 ,0,0,0}, - {22842,22843,22859 ,10699,10692,10691 ,0,0,0}, {22845,22861,22844 ,10695,10694,10722 ,0,0,0}, - {22860,22844,22861 ,10693,10722,10694 ,0,0,0}, {22857,22846,22847 ,10688,10723,10689 ,0,0,0}, - {22857,22845,22846 ,10688,10695,10723 ,0,0,0}, {22875,22858,22876 ,10724,10725,10726 ,0,0,0}, - {22877,22860,22878 ,10727,10728,10729 ,0,0,0}, {22879,22861,22857 ,10730,10731,10732 ,0,0,0}, - {22862,22880,22863 ,10733,10734,10735 ,0,0,0}, {22859,22881,22864 ,10736,10737,10738 ,0,0,0}, - {22882,22883,22865 ,10739,10740,10741 ,0,0,0}, {22882,22867,22884 ,10739,10742,10743 ,0,0,0}, - {22885,22869,22886 ,10744,10745,10746 ,0,0,0}, {22870,22866,22887 ,10747,10748,10749 ,0,0,0}, - {22888,22871,22868 ,10750,10751,10752 ,0,0,0}, {22868,22885,22888 ,10752,10744,10750 ,0,0,0}, - {22871,22889,22872 ,10751,10753,10754 ,0,0,0}, {22889,22871,22888 ,10753,10751,10750 ,0,0,0}, - {22873,22872,22890 ,10755,10754,10756 ,0,0,0}, {22889,22890,22872 ,10753,10756,10754 ,0,0,0}, - {22891,22874,22873 ,10757,10758,10755 ,0,0,0}, {22873,22890,22891 ,10755,10756,10757 ,0,0,0}, - {22869,22870,22886 ,10745,10747,10746 ,0,0,0}, {22868,22869,22885 ,10752,10745,10744 ,0,0,0}, - {22887,22866,22883 ,10749,10748,10740 ,0,0,0}, {22886,22870,22887 ,10746,10747,10749 ,0,0,0}, - {22882,22865,22867 ,10739,10741,10742 ,0,0,0}, {22883,22866,22865 ,10740,10748,10741 ,0,0,0}, - {22880,22884,22863 ,10734,10743,10735 ,0,0,0}, {22884,22867,22863 ,10743,10742,10735 ,0,0,0}, - {22864,22892,22862 ,10738,10759,10733 ,0,0,0}, {22892,22880,22862 ,10759,10734,10733 ,0,0,0}, - {22859,22877,22881 ,10736,10727,10737 ,0,0,0}, {22864,22881,22892 ,10738,10737,10759 ,0,0,0}, - {22860,22861,22878 ,10728,10731,10729 ,0,0,0}, {22859,22860,22877 ,10736,10728,10727 ,0,0,0}, - {22879,22857,22875 ,10730,10732,10724 ,0,0,0}, {22878,22861,22879 ,10729,10731,10730 ,0,0,0}, - {22858,22875,22857 ,10725,10724,10732 ,0,0,0}, {22893,22876,22894 ,10760,10761,10762 ,0,0,0}, - {22895,22878,22896 ,10763,10764,10765 ,0,0,0}, {22897,22879,22875 ,10766,10767,10768 ,0,0,0}, - {22892,22898,22899 ,10769,10770,10771 ,0,0,0}, {22877,22900,22881 ,10772,10773,10774 ,0,0,0}, - {22901,22902,22882 ,10775,10776,10777 ,0,0,0}, {22901,22884,22903 ,10775,10778,10779 ,0,0,0}, - {22904,22886,22905 ,10780,10781,10782 ,0,0,0}, {22887,22883,22906 ,10783,10784,10785 ,0,0,0}, - {22907,22888,22885 ,10786,10787,10788 ,0,0,0}, {22885,22904,22907 ,10788,10780,10786 ,0,0,0}, - {22888,22908,22889 ,10787,10789,10790 ,0,0,0}, {22908,22888,22907 ,10789,10787,10786 ,0,0,0}, - {22890,22889,22909 ,10791,10790,10792 ,0,0,0}, {22908,22909,22889 ,10789,10792,10790 ,0,0,0}, - {22910,22891,22890 ,10793,10794,10791 ,0,0,0}, {22890,22909,22910 ,10791,10792,10793 ,0,0,0}, - {22886,22887,22905 ,10781,10783,10782 ,0,0,0}, {22885,22886,22904 ,10788,10781,10780 ,0,0,0}, - {22906,22883,22902 ,10785,10784,10776 ,0,0,0}, {22905,22887,22906 ,10782,10783,10785 ,0,0,0}, - {22901,22882,22884 ,10775,10777,10778 ,0,0,0}, {22902,22883,22882 ,10776,10784,10777 ,0,0,0}, - {22899,22903,22880 ,10771,10779,10795 ,0,0,0}, {22903,22884,22880 ,10779,10778,10795 ,0,0,0}, - {22881,22898,22892 ,10774,10770,10769 ,0,0,0}, {22892,22899,22880 ,10769,10771,10795 ,0,0,0}, - {22877,22895,22900 ,10772,10763,10773 ,0,0,0}, {22881,22900,22898 ,10774,10773,10770 ,0,0,0}, - {22878,22879,22896 ,10764,10767,10765 ,0,0,0}, {22877,22878,22895 ,10772,10764,10763 ,0,0,0}, - {22897,22875,22893 ,10766,10768,10760 ,0,0,0}, {22896,22879,22897 ,10765,10767,10766 ,0,0,0}, - {22876,22893,22875 ,10761,10760,10768 ,0,0,0}, {22481,22894,22479 ,10796,10797,10798 ,0,0,0}, - {22482,22896,22483 ,10799,10800,10801 ,0,0,0}, {22493,22897,22893 ,10802,10803,10804 ,0,0,0}, - {22898,22506,22507 ,10805,10806,10807 ,0,0,0}, {22895,22494,22900 ,10808,10809,10810 ,0,0,0}, - {22509,22510,22901 ,10811,10812,10813 ,0,0,0}, {22508,22903,22899 ,10814,10815,10816 ,0,0,0}, - {22539,22905,22906 ,10817,10818,10819 ,0,0,0}, {22536,22902,22510 ,10820,10821,10812 ,0,0,0}, - {22540,22907,22904 ,10822,10823,10824 ,0,0,0}, {22904,22538,22540 ,10824,10825,10822 ,0,0,0}, - {22907,22541,22908 ,10823,10826,10827 ,0,0,0}, {22541,22907,22540 ,10826,10823,10822 ,0,0,0}, - {22908,22443,22440 ,10827,10828,10829 ,0,0,0}, {22541,22443,22908 ,10826,10828,10827 ,0,0,0}, - {22439,22909,22440 ,10047,10830,10829 ,0,0,0}, {22908,22440,22909 ,10827,10829,10830 ,0,0,0}, - {22910,22909,22439 ,10793,10830,10047 ,0,0,0}, {22538,22905,22539 ,10825,10818,10817 ,0,0,0}, - {22904,22905,22538 ,10824,10818,10825 ,0,0,0}, {22536,22906,22902 ,10820,10819,10821 ,0,0,0}, - {22539,22906,22536 ,10817,10819,10820 ,0,0,0}, {22901,22903,22509 ,10813,10815,10811 ,0,0,0}, - {22510,22902,22901 ,10812,10821,10813 ,0,0,0}, {22507,22508,22899 ,10807,10814,10816 ,0,0,0}, - {22508,22509,22903 ,10814,10811,10815 ,0,0,0}, {22900,22506,22898 ,10810,10806,10805 ,0,0,0}, - {22898,22507,22899 ,10805,10807,10816 ,0,0,0}, {22895,22482,22494 ,10808,10799,10809 ,0,0,0}, - {22900,22494,22506 ,10810,10809,10806 ,0,0,0}, {22896,22897,22483 ,10800,10803,10801 ,0,0,0}, - {22895,22896,22482 ,10808,10800,10799 ,0,0,0}, {22493,22893,22481 ,10802,10804,10796 ,0,0,0}, - {22483,22897,22493 ,10801,10803,10802 ,0,0,0}, {22894,22481,22893 ,10797,10796,10804 ,0,0,0}, - {22911,22419,22912 ,10831,10024,10832 ,0,0,0}, {22913,22529,22476 ,10833,10834,10835 ,0,0,0}, - {22914,22491,22417 ,10836,10837,10838 ,0,0,0}, {22534,22915,22916 ,10839,10840,10841 ,0,0,0}, - {22530,22917,22531 ,10842,10843,10844 ,0,0,0}, {22918,22919,22499 ,10845,10846,10847 ,0,0,0}, - {22920,22502,22503 ,10848,10849,10850 ,0,0,0}, {22921,22537,22922 ,10851,10852,10853 ,0,0,0}, - {22535,22500,22923 ,10854,10855,10856 ,0,0,0}, {22924,22514,22459 ,10857,10858,10859 ,0,0,0}, - {22459,22921,22924 ,10859,10851,10857 ,0,0,0}, {22514,22925,22542 ,10858,10860,10861 ,0,0,0}, - {22925,22514,22924 ,10860,10858,10857 ,0,0,0}, {22450,22542,22926 ,10862,10861,10863 ,0,0,0}, - {22925,22926,22542 ,10860,10863,10861 ,0,0,0}, {22927,22453,22450 ,10864,10865,10862 ,0,0,0}, - {22450,22926,22927 ,10862,10863,10864 ,0,0,0}, {22537,22535,22922 ,10852,10854,10853 ,0,0,0}, - {22459,22537,22921 ,10859,10852,10851 ,0,0,0}, {22923,22500,22919 ,10856,10855,10846 ,0,0,0}, - {22922,22535,22923 ,10853,10854,10856 ,0,0,0}, {22918,22499,22502 ,10845,10847,10849 ,0,0,0}, - {22919,22500,22499 ,10846,10855,10847 ,0,0,0}, {22916,22920,22503 ,10841,10848,10850 ,0,0,0}, - {22920,22918,22502 ,10848,10845,10849 ,0,0,0}, {22531,22915,22534 ,10844,10840,10839 ,0,0,0}, - {22534,22916,22503 ,10839,10841,10850 ,0,0,0}, {22530,22928,22917 ,10842,10866,10843 ,0,0,0}, - {22531,22917,22915 ,10844,10843,10840 ,0,0,0}, {22913,22928,22529 ,10833,10866,10834 ,0,0,0}, - {22530,22529,22928 ,10842,10834,10866 ,0,0,0}, {22914,22476,22491 ,10836,10835,10837 ,0,0,0}, - {22913,22476,22914 ,10833,10835,10836 ,0,0,0}, {22911,22417,22419 ,10831,10838,10024 ,0,0,0}, - {22914,22417,22911 ,10836,10838,10831 ,0,0,0}, {22929,22912,22930 ,10867,10832,10868 ,0,0,0}, - {22931,22913,22932 ,10869,10870,10871 ,0,0,0}, {22933,22914,22911 ,10872,10873,10874 ,0,0,0}, - {22915,22934,22935 ,10875,10876,10877 ,0,0,0}, {22928,22936,22917 ,10878,10879,10880 ,0,0,0}, - {22937,22919,22918 ,10881,10882,10883 ,0,0,0}, {22938,22920,22939 ,10884,10885,10886 ,0,0,0}, - {22940,22922,22941 ,10887,10888,10889 ,0,0,0}, {22923,22919,22942 ,10890,10882,10891 ,0,0,0}, - {22943,22924,22921 ,10892,10893,10894 ,0,0,0}, {22921,22940,22943 ,10894,10887,10892 ,0,0,0}, - {22924,22944,22925 ,10893,10895,10896 ,0,0,0}, {22944,22924,22943 ,10895,10893,10892 ,0,0,0}, - {22926,22925,22945 ,10897,10896,10898 ,0,0,0}, {22944,22945,22925 ,10895,10898,10896 ,0,0,0}, - {22946,22927,22926 ,10899,10900,10897 ,0,0,0}, {22926,22945,22946 ,10897,10898,10899 ,0,0,0}, - {22922,22923,22941 ,10888,10890,10889 ,0,0,0}, {22921,22922,22940 ,10894,10888,10887 ,0,0,0}, - {22942,22919,22937 ,10891,10882,10881 ,0,0,0}, {22941,22923,22942 ,10889,10890,10891 ,0,0,0}, - {22938,22918,22920 ,10884,10883,10885 ,0,0,0}, {22937,22918,22938 ,10881,10883,10884 ,0,0,0}, - {22935,22939,22916 ,10877,10886,10901 ,0,0,0}, {22939,22920,22916 ,10886,10885,10901 ,0,0,0}, - {22917,22934,22915 ,10880,10876,10875 ,0,0,0}, {22915,22935,22916 ,10875,10877,10901 ,0,0,0}, - {22928,22931,22936 ,10878,10869,10879 ,0,0,0}, {22917,22936,22934 ,10880,10879,10876 ,0,0,0}, - {22913,22914,22932 ,10870,10873,10871 ,0,0,0}, {22928,22913,22931 ,10878,10870,10869 ,0,0,0}, - {22933,22911,22929 ,10872,10874,10867 ,0,0,0}, {22932,22914,22933 ,10871,10873,10872 ,0,0,0}, - {22912,22929,22911 ,10832,10867,10874 ,0,0,0}, {22947,22930,22948 ,10902,10868,10903 ,0,0,0}, - {22949,22932,22950 ,10904,10905,10906 ,0,0,0}, {22951,22933,22929 ,10907,10908,10909 ,0,0,0}, - {22934,22952,22935 ,10910,10911,10912 ,0,0,0}, {22931,22953,22936 ,10913,10914,10915 ,0,0,0}, - {22954,22937,22938 ,10916,10917,10918 ,0,0,0}, {22955,22939,22956 ,10919,10920,10921 ,0,0,0}, - {22957,22941,22958 ,10922,10923,10924 ,0,0,0}, {22942,22937,22959 ,10925,10917,10926 ,0,0,0}, - {22960,22943,22940 ,10927,10928,10929 ,0,0,0}, {22940,22957,22960 ,10929,10922,10927 ,0,0,0}, - {22943,22961,22944 ,10928,10930,10931 ,0,0,0}, {22961,22943,22960 ,10930,10928,10927 ,0,0,0}, - {22945,22944,22962 ,10932,10931,10933 ,0,0,0}, {22961,22962,22944 ,10930,10933,10931 ,0,0,0}, - {22963,22946,22945 ,10934,10935,10932 ,0,0,0}, {22945,22962,22963 ,10932,10933,10934 ,0,0,0}, - {22941,22942,22958 ,10923,10925,10924 ,0,0,0}, {22940,22941,22957 ,10929,10923,10922 ,0,0,0}, - {22959,22937,22954 ,10926,10917,10916 ,0,0,0}, {22958,22942,22959 ,10924,10925,10926 ,0,0,0}, - {22955,22938,22939 ,10919,10918,10920 ,0,0,0}, {22954,22938,22955 ,10916,10918,10919 ,0,0,0}, - {22952,22956,22935 ,10911,10921,10912 ,0,0,0}, {22956,22939,22935 ,10921,10920,10912 ,0,0,0}, - {22936,22964,22934 ,10915,10936,10910 ,0,0,0}, {22964,22952,22934 ,10936,10911,10910 ,0,0,0}, - {22931,22949,22953 ,10913,10904,10914 ,0,0,0}, {22936,22953,22964 ,10915,10914,10936 ,0,0,0}, - {22932,22933,22950 ,10905,10908,10906 ,0,0,0}, {22931,22932,22949 ,10913,10905,10904 ,0,0,0}, - {22951,22929,22947 ,10907,10909,10902 ,0,0,0}, {22950,22933,22951 ,10906,10908,10907 ,0,0,0}, - {22930,22947,22929 ,10868,10902,10909 ,0,0,0}, {22547,22965,22584 ,10937,10938,10226 ,0,0,0}, - {22553,22966,22554 ,10939,10940,10941 ,0,0,0}, {22549,22967,22968 ,10942,10943,10944 ,0,0,0}, - {22969,22561,22970 ,10945,10946,10947 ,0,0,0}, {22971,22551,22972 ,10948,10949,10950 ,0,0,0}, - {22566,22973,22974 ,10951,10952,10953 ,0,0,0}, {22558,22975,22556 ,10954,10955,10956 ,0,0,0}, - {22976,22977,22571 ,10957,10958,10959 ,0,0,0}, {22978,22564,22563 ,10960,10961,10962 ,0,0,0}, - {22979,22980,22568 ,10963,10964,10965 ,0,0,0}, {22569,22568,22980 ,10966,10965,10964 ,0,0,0}, - {22575,22981,22979 ,10967,10968,10963 ,0,0,0}, {22979,22568,22575 ,10963,10965,10967 ,0,0,0}, - {22981,22577,22982 ,10968,10969,10970 ,0,0,0}, {22577,22981,22575 ,10969,10968,10967 ,0,0,0}, - {22983,22982,22578 ,10971,10970,10972 ,0,0,0}, {22577,22578,22982 ,10969,10972,10970 ,0,0,0}, - {22581,22984,22983 ,10223,10973,10971 ,0,0,0}, {22983,22578,22581 ,10971,10972,10223 ,0,0,0}, - {22571,22569,22976 ,10959,10966,10957 ,0,0,0}, {22976,22569,22980 ,10957,10966,10964 ,0,0,0}, - {22977,22978,22563 ,10958,10960,10962 ,0,0,0}, {22977,22563,22571 ,10958,10962,10959 ,0,0,0}, - {22564,22973,22566 ,10961,10952,10951 ,0,0,0}, {22978,22973,22564 ,10960,10952,10961 ,0,0,0}, - {22558,22974,22975 ,10954,10953,10955 ,0,0,0}, {22566,22974,22558 ,10951,10953,10954 ,0,0,0}, - {22561,22556,22970 ,10946,10956,10947 ,0,0,0}, {22556,22975,22970 ,10956,10955,10947 ,0,0,0}, - {22972,22583,22969 ,10950,10974,10945 ,0,0,0}, {22583,22561,22969 ,10974,10946,10945 ,0,0,0}, - {22971,22553,22551 ,10948,10939,10949 ,0,0,0}, {22972,22551,22583 ,10950,10949,10974 ,0,0,0}, - {22966,22967,22554 ,10940,10943,10941 ,0,0,0}, {22971,22966,22553 ,10948,10940,10939 ,0,0,0}, - {22549,22968,22547 ,10942,10944,10937 ,0,0,0}, {22554,22967,22549 ,10941,10943,10942 ,0,0,0}, - {22965,22547,22968 ,10938,10937,10944 ,0,0,0}, {22985,22948,22986 ,10975,10903,10976 ,0,0,0}, - {22987,22950,22988 ,10977,10978,10979 ,0,0,0}, {22989,22951,22947 ,10980,10981,10982 ,0,0,0}, - {22964,22990,22991 ,10983,10984,10985 ,0,0,0}, {22949,22992,22953 ,10986,10987,10988 ,0,0,0}, - {22993,22994,22955 ,10989,10990,10991 ,0,0,0}, {22995,22956,22952 ,10992,10993,10994 ,0,0,0}, - {22996,22958,22959 ,10995,10996,10997 ,0,0,0}, {22959,22954,22997 ,10997,10998,10999 ,0,0,0}, - {22998,22960,22957 ,11000,11001,11002 ,0,0,0}, {22957,22999,22998 ,11002,11003,11000 ,0,0,0}, - {22960,23000,22961 ,11001,11004,11005 ,0,0,0}, {23000,22960,22998 ,11004,11001,11000 ,0,0,0}, - {22962,22961,23001 ,11006,11005,11007 ,0,0,0}, {23000,23001,22961 ,11004,11007,11005 ,0,0,0}, - {23002,22962,23003 ,11008,11006,11009 ,0,0,0}, {22962,23001,23003 ,11006,11007,11009 ,0,0,0}, - {22963,22962,23002 ,11010,11006,11008 ,0,0,0}, {22999,22958,22996 ,11003,10996,10995 ,0,0,0}, - {22957,22958,22999 ,11002,10996,11003 ,0,0,0}, {22954,22994,22997 ,10998,10990,10999 ,0,0,0}, - {22996,22959,22997 ,10995,10997,10999 ,0,0,0}, {22993,22955,22956 ,10989,10991,10993 ,0,0,0}, - {22994,22954,22955 ,10990,10998,10991 ,0,0,0}, {22991,22995,22952 ,10985,10992,10994 ,0,0,0}, - {22995,22993,22956 ,10992,10989,10993 ,0,0,0}, {22953,22990,22964 ,10988,10984,10983 ,0,0,0}, - {22964,22991,22952 ,10983,10985,10994 ,0,0,0}, {22949,22987,22992 ,10986,10977,10987 ,0,0,0}, - {22953,22992,22990 ,10988,10987,10984 ,0,0,0}, {22950,22951,22988 ,10978,10981,10979 ,0,0,0}, - {22949,22950,22987 ,10986,10978,10977 ,0,0,0}, {22989,22947,22985 ,10980,10982,10975 ,0,0,0}, - {22988,22951,22989 ,10979,10981,10980 ,0,0,0}, {22948,22985,22947 ,10903,10975,10982 ,0,0,0}, - {22968,22986,22965 ,11011,10976,11012 ,0,0,0}, {22971,22988,22966 ,11013,11014,11015 ,0,0,0}, - {22967,22989,22985 ,11016,11017,11018 ,0,0,0}, {22990,22969,22970 ,11019,11020,11021 ,0,0,0}, - {22987,22972,22992 ,11022,11023,11024 ,0,0,0}, {22974,22973,22993 ,11025,11026,11027 ,0,0,0}, - {22975,22995,22991 ,11028,11029,11030 ,0,0,0}, {22976,22996,22977 ,11031,11032,11033 ,0,0,0}, - {22997,22994,22978 ,11034,11035,11036 ,0,0,0}, {22979,22998,22980 ,11037,11038,11039 ,0,0,0}, - {22999,22976,22980 ,11040,11031,11039 ,0,0,0}, {22979,22981,23000 ,11037,11041,11042 ,0,0,0}, - {23000,22998,22979 ,11042,11038,11037 ,0,0,0}, {23001,22981,22982 ,11043,11041,11044 ,0,0,0}, - {22981,23001,23000 ,11041,11043,11042 ,0,0,0}, {22983,23003,22982 ,11045,11046,11044 ,0,0,0}, - {23001,22982,23003 ,11043,11044,11046 ,0,0,0}, {22984,23002,23003 ,11047,11008,11046 ,0,0,0}, - {23003,22983,22984 ,11046,11045,11047 ,0,0,0}, {22996,22976,22999 ,11032,11031,11040 ,0,0,0}, - {22998,22999,22980 ,11038,11040,11039 ,0,0,0}, {22977,22997,22978 ,11033,11034,11036 ,0,0,0}, - {22996,22997,22977 ,11032,11034,11033 ,0,0,0}, {22973,22994,22993 ,11026,11035,11027 ,0,0,0}, - {22978,22994,22973 ,11036,11035,11026 ,0,0,0}, {22975,22974,22995 ,11028,11025,11029 ,0,0,0}, - {22974,22993,22995 ,11025,11027,11029 ,0,0,0}, {22990,22970,22991 ,11019,11021,11030 ,0,0,0}, - {22970,22975,22991 ,11021,11028,11030 ,0,0,0}, {22992,22972,22969 ,11024,11023,11020 ,0,0,0}, - {22992,22969,22990 ,11024,11020,11019 ,0,0,0}, {22987,22988,22971 ,11022,11014,11013 ,0,0,0}, - {22987,22971,22972 ,11022,11013,11023 ,0,0,0}, {22966,22989,22967 ,11015,11017,11016 ,0,0,0}, - {22988,22989,22966 ,11014,11017,11015 ,0,0,0}, {22968,22985,22986 ,11011,11018,10976 ,0,0,0}, - {22967,22985,22968 ,11016,11018,11011 ,0,0,0}, {22671,23004,23005 ,11048,11049,11050 ,0,0,0}, - {22670,23006,22668 ,11051,11052,11053 ,0,0,0}, {23004,22671,23007 ,11049,11048,11054 ,0,0,0}, - {23005,23008,22671 ,11050,11048,11048 ,0,0,0}, {23007,22671,22668 ,11054,11048,11053 ,0,0,0}, - {23009,23007,22668 ,11055,11054,11053 ,0,0,0}, {23009,22668,23006 ,11055,11053,11052 ,0,0,0}, - {22706,22624,23010 ,11056,11057,11058 ,0,0,0}, {22706,23011,23012 ,11056,11059,11060 ,0,0,0}, - {23010,23011,22706 ,11058,11059,11056 ,0,0,0}, {22670,23012,23013 ,11051,11060,11061 ,0,0,0}, - {22670,22706,23012 ,11051,11056,11060 ,0,0,0}, {22670,23014,23015 ,11051,11062,11063 ,0,0,0}, - {23013,23014,22670 ,11061,11062,11051 ,0,0,0}, {22670,23016,23017 ,11051,11064,11065 ,0,0,0}, - {23015,23016,22670 ,11063,11064,11051 ,0,0,0}, {23006,22670,23018 ,11052,11051,11066 ,0,0,0}, - {23017,23018,22670 ,11065,11066,11051 ,0,0,0}, {23019,22492,23020 ,11067,11068,11069 ,0,0,0}, - {22492,23021,23022 ,11068,11070,11071 ,0,0,0}, {23022,22490,22492 ,11071,11072,11068 ,0,0,0}, - {22492,23019,23021 ,11068,11067,11070 ,0,0,0}, {22490,23023,23024 ,11072,11073,11074 ,0,0,0}, - {22490,23022,23023 ,11072,11071,11073 ,0,0,0}, {22492,23025,23020 ,11068,11075,11069 ,0,0,0}, - {22490,23024,22419 ,11072,11074,11076 ,0,0,0}, {23026,22492,22477 ,11077,11068,11078 ,0,0,0}, - {22492,23026,23025 ,11068,11077,11075 ,0,0,0}, {22479,23027,23028 ,11079,11079,11080 ,0,0,0}, - {23029,23030,22480 ,11081,11082,11083 ,0,0,0}, {23031,23032,22479 ,11084,11085,11079 ,0,0,0}, - {23031,22479,23028 ,11084,11079,11080 ,0,0,0}, {22479,23033,22480 ,11079,11086,11083 ,0,0,0}, - {23033,22479,23032 ,11086,11079,11085 ,0,0,0}, {23034,22480,23030 ,11087,11083,11082 ,0,0,0}, - {23033,23029,22480 ,11086,11081,11083 ,0,0,0}, {23026,22477,23034 ,11077,11078,11087 ,0,0,0}, - {23034,22477,22480 ,11087,11078,11083 ,0,0,0}, {23027,22479,23035 ,11088,11089,11090 ,0,0,0}, - {22876,23035,22894 ,11091,11090,11092 ,0,0,0}, {22876,22858,23035 ,11091,11093,11090 ,0,0,0}, - {23035,22858,22847 ,11090,11093,11094 ,0,0,0}, {22847,22819,23035 ,11094,11095,11090 ,0,0,0}, - {23035,22479,22894 ,11090,11089,11092 ,0,0,0}, {23036,23034,23037 ,11096,11097,11098 ,0,0,0}, - {23036,23038,23026 ,11096,324,11099 ,0,0,0}, {23026,23034,23036 ,11099,11097,11096 ,0,0,0}, - {23039,23040,23041 ,11100,11101,11102 ,0,0,0}, {23040,23042,23041 ,11101,11103,11102 ,0,0,0}, - {23040,23039,23043 ,11101,11100,11104 ,0,0,0}, {23021,23044,23043 ,11105,11106,11104 ,0,0,0}, - {23039,23021,23043 ,11100,11105,11104 ,0,0,0}, {23019,23044,23021 ,11107,11106,11105 ,0,0,0}, - {23044,23019,23045 ,11106,11107,11108 ,0,0,0}, {23020,23046,23045 ,11109,11110,11108 ,0,0,0}, - {23045,23019,23020 ,11108,11107,11109 ,0,0,0}, {23046,23025,23047 ,11110,11111,11112 ,0,0,0}, - {23025,23046,23020 ,11111,11110,11109 ,0,0,0}, {23038,23047,23026 ,11113,11112,11114 ,0,0,0}, - {23025,23026,23047 ,11111,11114,11112 ,0,0,0}, {23032,23048,23049 ,11115,11116,11117 ,0,0,0}, - {23037,23034,23030 ,11118,11119,11120 ,0,0,0}, {23030,23029,23050 ,11120,11121,11122 ,0,0,0}, - {23051,23033,23049 ,11123,11124,11117 ,0,0,0}, {23050,23029,23051 ,11122,11121,11123 ,0,0,0}, - {23030,23050,23037 ,11120,11122,11118 ,0,0,0}, {23029,23033,23051 ,11121,11124,11123 ,0,0,0}, - {23033,23032,23049 ,11124,11115,11117 ,0,0,0}, {23048,23032,23031 ,11116,11115,11125 ,0,0,0}, - {23031,23028,23052 ,11125,11126,11127 ,0,0,0}, {23052,23048,23031 ,11127,11116,11125 ,0,0,0}, - {23053,23028,23027 ,11128,11126,11129 ,0,0,0}, {23028,23053,23052 ,11126,11128,11127 ,0,0,0}, - {23053,23027,23035 ,11128,11129,11129 ,0,0,0}, {23008,23054,23055 ,11130,11130,11131 ,0,0,0}, - {23008,23055,23056 ,11130,11131,11130 ,0,0,0}, {23057,23008,23056 ,11130,11130,11130 ,0,0,0}, - {23048,23052,23008 ,11130,11130,11130 ,0,0,0}, {23048,23008,23057 ,11130,11130,11130 ,0,0,0}, - {23008,23053,23035 ,11130,11130,11131 ,0,0,0}, {23052,23053,23008 ,11130,11130,11130 ,0,0,0}, - {23008,23035,22671 ,11130,11131,11130 ,0,0,0}, {23035,22798,22778 ,11131,11130,11130 ,0,0,0}, - {23035,22819,22798 ,11131,11131,11130 ,0,0,0}, {22778,22758,23035 ,11130,11131,11131 ,0,0,0}, - {22671,23035,22739 ,11130,11131,11130 ,0,0,0}, {23035,22758,22739 ,11131,11131,11130 ,0,0,0}, - {22584,22965,23058 ,11132,11133,11134 ,0,0,0}, {23010,23059,23011 ,11135,11136,11137 ,0,0,0}, - {23060,23059,22585 ,11138,11136,11139 ,0,0,0}, {23061,23042,23062 ,11140,11141,11142 ,0,0,0}, - {23063,23061,23062 ,11143,11140,11142 ,0,0,0}, {23064,23065,23066 ,11144,11145,11146 ,0,0,0}, - {23065,23063,23066 ,11145,11143,11146 ,0,0,0}, {23059,22605,22585 ,11136,11147,11139 ,0,0,0}, - {23060,22585,22545 ,11138,11139,11148 ,0,0,0}, {23064,23012,23011 ,11144,11149,11137 ,0,0,0}, - {22624,22605,23010 ,11150,11147,11135 ,0,0,0}, {22584,23060,22545 ,11132,11138,11148 ,0,0,0}, - {23058,23067,23060 ,11134,11151,11138 ,0,0,0}, {23060,22584,23058 ,11138,11132,11134 ,0,0,0}, - {23067,23061,23063 ,11151,11140,11143 ,0,0,0}, {23065,23064,23011 ,11145,11144,11137 ,0,0,0}, - {23063,23065,23060 ,11143,11145,11138 ,0,0,0}, {23010,22605,23059 ,11135,11147,11136 ,0,0,0}, - {23063,23060,23067 ,11143,11138,11151 ,0,0,0}, {23062,23066,23063 ,11142,11146,11143 ,0,0,0}, - {23011,23059,23065 ,11137,11136,11145 ,0,0,0}, {23060,23065,23059 ,11138,11145,11136 ,0,0,0}, - {23068,23069,23070 ,11152,11153,11154 ,0,0,0}, {23071,23072,23073 ,11155,11156,11157 ,0,0,0}, - {23074,23075,23076 ,11158,11159,11160 ,0,0,0}, {23042,23040,23077 ,11161,11162,11163 ,0,0,0}, - {23078,23079,23016 ,11164,11165,11166 ,0,0,0}, {23080,23081,23082 ,11167,11168,11169 ,0,0,0}, - {23083,23084,23069 ,11170,11171,11153 ,0,0,0}, {23006,23018,23084 ,11172,11173,11171 ,0,0,0}, - {23085,23047,23038 ,11174,11175,11176 ,0,0,0}, {23068,23070,23085 ,11152,11154,11174 ,0,0,0}, - {23006,23084,23083 ,11172,11171,11170 ,0,0,0}, {23073,23070,23069 ,11157,11154,11153 ,0,0,0}, - {23018,23086,23084 ,11173,11177,11171 ,0,0,0}, {23079,23086,23017 ,11165,11177,11178 ,0,0,0}, - {23087,23078,23082 ,11179,11164,11169 ,0,0,0}, {23088,23076,23072 ,11180,11160,11156 ,0,0,0}, - {23013,23064,23080 ,11181,11182,11167 ,0,0,0}, {23075,23087,23077 ,11159,11179,11163 ,0,0,0}, - {23012,23064,23013 ,11183,11182,11181 ,0,0,0}, {23080,23064,23066 ,11167,11182,11184 ,0,0,0}, - {23017,23086,23018 ,11178,11177,11173 ,0,0,0}, {23017,23016,23079 ,11178,11166,11165 ,0,0,0}, - {23085,23070,23047 ,11174,11154,11175 ,0,0,0}, {23083,23069,23068 ,11170,11153,11152 ,0,0,0}, - {23073,23069,23071 ,11157,11153,11155 ,0,0,0}, {23046,23047,23070 ,11185,11175,11154 ,0,0,0}, - {23071,23084,23086 ,11155,11171,11177 ,0,0,0}, {23062,23042,23077 ,11186,11161,11163 ,0,0,0}, - {23070,23073,23046 ,11154,11157,11185 ,0,0,0}, {23084,23071,23069 ,11171,11155,11153 ,0,0,0}, - {23072,23071,23088 ,11156,11155,11180 ,0,0,0}, {23045,23046,23073 ,11187,11185,11157 ,0,0,0}, - {23079,23088,23086 ,11165,11180,11177 ,0,0,0}, {23015,23078,23016 ,11188,11164,11166 ,0,0,0}, - {23073,23072,23045 ,11157,11156,11187 ,0,0,0}, {23086,23088,23071 ,11177,11180,11155 ,0,0,0}, - {23076,23088,23074 ,11160,11180,11158 ,0,0,0}, {23044,23045,23072 ,11189,11187,11156 ,0,0,0}, - {23078,23074,23079 ,11164,11158,11165 ,0,0,0}, {23014,23082,23015 ,11190,11169,11188 ,0,0,0}, - {23076,23043,23044 ,11160,11191,11189 ,0,0,0}, {23079,23074,23088 ,11165,11158,11180 ,0,0,0}, - {23074,23087,23075 ,11158,11179,11159 ,0,0,0}, {23044,23072,23076 ,11189,11156,11160 ,0,0,0}, - {23015,23082,23078 ,11188,11169,11164 ,0,0,0}, {23080,23014,23013 ,11167,11190,11181 ,0,0,0}, - {23075,23040,23043 ,11159,11162,11191 ,0,0,0}, {23078,23087,23074 ,11164,11179,11158 ,0,0,0}, - {23081,23077,23087 ,11168,11163,11179 ,0,0,0}, {23043,23076,23075 ,11191,11160,11159 ,0,0,0}, - {23014,23080,23082 ,11190,11167,11169 ,0,0,0}, {23082,23081,23087 ,11169,11168,11179 ,0,0,0}, - {23066,23062,23081 ,11184,11186,11168 ,0,0,0}, {23080,23066,23081 ,11167,11184,11168 ,0,0,0}, - {23062,23077,23081 ,11186,11163,11168 ,0,0,0}, {23040,23075,23077 ,11162,11159,11163 ,0,0,0}, - {23085,23036,23089 ,11192,11193,11194 ,0,0,0}, {23009,23090,23007 ,11195,11196,11054 ,0,0,0}, - {23089,23036,23091 ,11194,11193,11197 ,0,0,0}, {23036,23037,23091 ,11193,324,11197 ,0,0,0}, - {23089,23092,23090 ,11194,11198,11196 ,0,0,0}, {23085,23038,23036 ,11192,324,11193 ,0,0,0}, - {23090,23092,23007 ,11196,11198,11054 ,0,0,0}, {23083,23090,23009 ,11199,11196,11195 ,0,0,0}, - {23006,23083,23009 ,11200,11199,11195 ,0,0,0}, {23083,23068,23090 ,11199,11201,11196 ,0,0,0}, - {23068,23085,23089 ,11201,11192,11194 ,0,0,0}, {23068,23089,23090 ,11201,11194,11196 ,0,0,0}, - {23092,23089,23091 ,11198,11194,11197 ,0,0,0}, {23057,23056,23049 ,11202,11203,11204 ,0,0,0}, - {23091,23037,23050 ,11205,324,11206 ,0,0,0}, {23050,23051,23093 ,11206,11207,11208 ,0,0,0}, - {23050,23093,23091 ,11206,11208,11205 ,0,0,0}, {23048,23057,23049 ,11209,11202,11204 ,0,0,0}, - {23055,23054,23094 ,11210,11211,11212 ,0,0,0}, {23094,23095,23055 ,11212,11213,11210 ,0,0,0}, - {23092,23093,23096 ,11214,11208,11215 ,0,0,0}, {23096,23093,23095 ,11215,11208,11213 ,0,0,0}, - {23054,23008,23005 ,11211,11216,11217 ,0,0,0}, {23092,23096,23007 ,11214,11215,11218 ,0,0,0}, - {23005,23096,23094 ,11217,11215,11212 ,0,0,0}, {23091,23093,23092 ,11205,11208,11214 ,0,0,0}, - {23005,23004,23096 ,11217,11219,11215 ,0,0,0}, {23096,23004,23007 ,11215,11219,11218 ,0,0,0}, - {23093,23051,23095 ,11208,11207,11213 ,0,0,0}, {23049,23095,23051 ,11204,11213,11207 ,0,0,0}, - {23005,23094,23054 ,11217,11212,11211 ,0,0,0}, {23096,23095,23094 ,11215,11213,11212 ,0,0,0}, - {23056,23095,23049 ,11203,11213,11204 ,0,0,0}, {23056,23055,23095 ,11203,11210,11213 ,0,0,0}, - {22930,23097,23098 ,11220,11221,11222 ,0,0,0}, {23042,23061,23099 ,11223,11224,11225 ,0,0,0}, - {23100,23099,23061 ,11226,11225,11224 ,0,0,0}, {22930,23098,22948 ,11220,11222,11227 ,0,0,0}, - {23098,23097,23100 ,11222,11221,11226 ,0,0,0}, {23058,22965,22986 ,11228,11229,11230 ,0,0,0}, - {22948,23098,22986 ,11227,11222,11230 ,0,0,0}, {23024,23097,22912 ,11231,11221,11232 ,0,0,0}, - {23101,23024,23023 ,11233,11231,11234 ,0,0,0}, {23097,22930,22912 ,11221,11220,11232 ,0,0,0}, - {23099,23039,23041 ,11225,11235,11236 ,0,0,0}, {23099,23101,23102 ,11225,11233,11237 ,0,0,0}, - {22912,22419,23024 ,11232,11238,11231 ,0,0,0}, {23039,23102,23021 ,11235,11237,11239 ,0,0,0}, - {23102,23039,23099 ,11237,11235,11225 ,0,0,0}, {23098,23058,22986 ,11222,11228,11230 ,0,0,0}, - {23097,23101,23100 ,11221,11233,11226 ,0,0,0}, {23067,23058,23098 ,11240,11228,11222 ,0,0,0}, - {23024,23101,23097 ,11231,11233,11221 ,0,0,0}, {23102,23023,23022 ,11237,11234,11241 ,0,0,0}, - {23061,23067,23100 ,11224,11240,11226 ,0,0,0}, {23098,23100,23067 ,11222,11226,11240 ,0,0,0}, - {23023,23102,23101 ,11234,11237,11233 ,0,0,0}, {23021,23102,23022 ,11239,11237,11241 ,0,0,0}, - {23099,23041,23042 ,11225,11236,11223 ,0,0,0}, {23101,23099,23100 ,11233,11225,11226 ,0,0,0}, - {23103,22544,23104 ,11242,11243,11244 ,0,0,0}, {22544,23105,23106 ,11243,11245,11246 ,0,0,0}, - {23106,22543,22544 ,11246,11247,11243 ,0,0,0}, {22544,23103,23105 ,11243,11242,11245 ,0,0,0}, - {22543,23107,23108 ,11247,11248,11249 ,0,0,0}, {22543,23106,23107 ,11247,11246,11248 ,0,0,0}, - {22544,23109,23104 ,11243,11250,11244 ,0,0,0}, {22543,23108,22439 ,11247,11249,11251 ,0,0,0}, - {23110,22544,22452 ,11252,11243,11253 ,0,0,0}, {22544,23110,23109 ,11243,11252,11250 ,0,0,0}, - {22453,23111,23112 ,11254,11254,11255 ,0,0,0}, {23113,23114,22451 ,11256,11257,11258 ,0,0,0}, - {23115,23116,22453 ,11259,11260,11254 ,0,0,0}, {23115,22453,23112 ,11259,11254,11255 ,0,0,0}, - {22453,23117,22451 ,11254,11261,11258 ,0,0,0}, {23117,22453,23116 ,11261,11254,11260 ,0,0,0}, - {23118,22451,23114 ,11262,11258,11257 ,0,0,0}, {23117,23113,22451 ,11261,11256,11258 ,0,0,0}, - {23110,22452,23118 ,11252,11253,11262 ,0,0,0}, {23118,22452,22451 ,11262,11253,11258 ,0,0,0}, - {22661,23119,23120 ,11263,11264,11265 ,0,0,0}, {22738,23121,22692 ,11266,11267,11268 ,0,0,0}, - {23119,22661,23122 ,11264,11263,11269 ,0,0,0}, {23120,23123,22661 ,11265,11263,11263 ,0,0,0}, - {23122,22661,22692 ,11269,11263,11268 ,0,0,0}, {23124,23122,22692 ,11270,11269,11268 ,0,0,0}, - {23124,22692,23121 ,11270,11268,11267 ,0,0,0}, {22695,22719,23125 ,11271,11272,11273 ,0,0,0}, - {22695,23126,23127 ,11271,11274,11275 ,0,0,0}, {23125,23126,22695 ,11273,11274,11271 ,0,0,0}, - {22738,23127,23128 ,11266,11275,11276 ,0,0,0}, {22738,22695,23127 ,11266,11271,11275 ,0,0,0}, - {22738,23129,23130 ,11266,11277,11278 ,0,0,0}, {23128,23129,22738 ,11276,11277,11266 ,0,0,0}, - {22738,23131,23132 ,11266,11279,11280 ,0,0,0}, {23130,23131,22738 ,11278,11279,11266 ,0,0,0}, - {23121,22738,23133 ,11267,11266,11281 ,0,0,0}, {23132,23133,22738 ,11280,11281,11266 ,0,0,0}, - {23002,23111,22963 ,11282,11283,11282 ,0,0,0}, {22453,22927,23111 ,11282,11282,11283 ,0,0,0}, - {22984,23134,23111 ,11282,11283,11283 ,0,0,0}, {23111,23002,22984 ,11283,11282,11282 ,0,0,0}, - {22946,22963,23111 ,11282,11282,11283 ,0,0,0}, {22946,23111,22927 ,11282,11283,11282 ,0,0,0}, - {23135,23136,23110 ,21,21,21 ,0,0,0}, {23118,23137,23135 ,11284,21,21 ,0,0,0}, - {23135,23110,23118 ,21,21,11284 ,0,0,0}, {23138,23139,23140 ,11285,11286,11287 ,0,0,0}, - {23139,23141,23140 ,11286,11288,11287 ,0,0,0}, {23139,23138,23142 ,11286,11285,11289 ,0,0,0}, - {23105,23143,23142 ,11290,11291,11289 ,0,0,0}, {23138,23105,23142 ,11285,11290,11289 ,0,0,0}, - {23103,23143,23105 ,11292,11291,11290 ,0,0,0}, {23143,23103,23144 ,11291,11292,11293 ,0,0,0}, - {23104,23145,23144 ,11294,11295,11293 ,0,0,0}, {23144,23103,23104 ,11293,11292,11294 ,0,0,0}, - {23145,23109,23146 ,11295,11296,11297 ,0,0,0}, {23109,23145,23104 ,11296,11295,11294 ,0,0,0}, - {23136,23146,23110 ,11298,11297,11299 ,0,0,0}, {23109,23110,23146 ,11296,11299,11297 ,0,0,0}, - {23147,23148,23116 ,11300,11301,11302 ,0,0,0}, {23149,23117,23148 ,11303,11304,11301 ,0,0,0}, - {23118,23114,23137 ,21,11305,21 ,0,0,0}, {23113,23150,23114 ,11306,11307,11305 ,0,0,0}, - {23113,23149,23150 ,11306,11303,11307 ,0,0,0}, {23150,23137,23114 ,11307,21,11305 ,0,0,0}, - {23117,23149,23113 ,11304,11303,11306 ,0,0,0}, {23117,23116,23148 ,11304,11302,11301 ,0,0,0}, - {23147,23116,23115 ,11300,11302,11308 ,0,0,0}, {23115,23112,23151 ,11308,11309,11310 ,0,0,0}, - {23151,23147,23115 ,11310,11300,11308 ,0,0,0}, {23152,23112,23111 ,11311,11309,11312 ,0,0,0}, - {23112,23152,23151 ,11309,11311,11310 ,0,0,0}, {23152,23111,23134 ,11311,11312,11312 ,0,0,0}, - {22622,23134,22603 ,11313,11314,11315 ,0,0,0}, {23153,23123,23154 ,11316,11317,11318 ,0,0,0}, - {23123,23147,23151 ,11317,11319,11320 ,0,0,0}, {23151,23152,23123 ,11320,11321,11317 ,0,0,0}, - {23153,23155,23123 ,11316,11322,11317 ,0,0,0}, {23123,23156,23147 ,11317,11323,11319 ,0,0,0}, - {23155,23156,23123 ,11322,11323,11317 ,0,0,0}, {23134,22661,23123 ,11314,11324,11317 ,0,0,0}, - {23152,23134,23123 ,11321,11314,11317 ,0,0,0}, {23134,22641,22661 ,11314,11325,11324 ,0,0,0}, - {22641,23134,22622 ,11325,11314,11313 ,0,0,0}, {23134,22581,22582 ,11314,11326,11327 ,0,0,0}, - {23134,22984,22581 ,11314,11314,11326 ,0,0,0}, {22582,22603,23134 ,11327,11315,11314 ,0,0,0}, - {22816,22836,23157 ,11328,11329,11330 ,0,0,0}, {23125,23158,23126 ,11331,11332,11333 ,0,0,0}, - {23159,23158,22777 ,11334,11332,11335 ,0,0,0}, {23160,23141,23161 ,11336,11337,11338 ,0,0,0}, - {23162,23160,23161 ,11339,11336,11338 ,0,0,0}, {23163,23164,23165 ,11340,11341,11342 ,0,0,0}, - {23164,23162,23165 ,11341,11339,11342 ,0,0,0}, {23158,22757,22777 ,11332,11343,11335 ,0,0,0}, - {23159,22777,22796 ,11334,11335,11344 ,0,0,0}, {23163,23127,23126 ,11340,11345,11333 ,0,0,0}, - {22719,22757,23125 ,11346,11343,11331 ,0,0,0}, {22816,23159,22796 ,11328,11334,11344 ,0,0,0}, - {23157,23166,23159 ,11330,11347,11334 ,0,0,0}, {23159,22816,23157 ,11334,11328,11330 ,0,0,0}, - {23166,23160,23162 ,11347,11336,11339 ,0,0,0}, {23164,23163,23126 ,11341,11340,11333 ,0,0,0}, - {23162,23164,23159 ,11339,11341,11334 ,0,0,0}, {23125,22757,23158 ,11331,11343,11332 ,0,0,0}, - {23162,23159,23166 ,11339,11334,11347 ,0,0,0}, {23161,23165,23162 ,11338,11342,11339 ,0,0,0}, - {23126,23158,23164 ,11333,11332,11341 ,0,0,0}, {23159,23164,23158 ,11334,11341,11332 ,0,0,0}, - {23167,23168,23169 ,11348,11349,11350 ,0,0,0}, {23143,23170,23171 ,11351,11352,11353 ,0,0,0}, - {23143,23144,23170 ,11351,11354,11352 ,0,0,0}, {23161,23139,23172 ,11355,11356,11357 ,0,0,0}, - {23173,23131,23174 ,11358,11359,11360 ,0,0,0}, {23161,23141,23139 ,11355,11361,11356 ,0,0,0}, - {23175,23176,23177 ,11362,11363,11364 ,0,0,0}, {23145,23178,23179 ,11365,11366,11367 ,0,0,0}, - {23136,23176,23180 ,21,11363,11368 ,0,0,0}, {23175,23181,23180 ,11362,11369,11368 ,0,0,0}, - {23133,23132,23182 ,11370,11371,11372 ,0,0,0}, {23132,23173,23182 ,11371,11358,11372 ,0,0,0}, - {23183,23184,23167 ,11373,11374,11348 ,0,0,0}, {23173,23174,23181 ,11358,11360,11369 ,0,0,0}, - {23185,23121,23133 ,11375,11376,11370 ,0,0,0}, {23142,23171,23172 ,11377,11353,11357 ,0,0,0}, - {23145,23179,23144 ,11365,11367,11354 ,0,0,0}, {23172,23169,23165 ,11357,11350,11378 ,0,0,0}, - {23165,23169,23163 ,11378,11350,11379 ,0,0,0}, {23163,23168,23127 ,11379,11349,11380 ,0,0,0}, - {23161,23172,23165 ,11355,11357,11378 ,0,0,0}, {23139,23142,23172 ,11356,11377,11357 ,0,0,0}, - {23168,23163,23169 ,11349,11379,11350 ,0,0,0}, {23168,23184,23128 ,11349,11374,11381 ,0,0,0}, - {23169,23171,23167 ,11350,11353,11348 ,0,0,0}, {23127,23168,23128 ,11380,11349,11381 ,0,0,0}, - {23172,23171,23169 ,11357,11353,11350 ,0,0,0}, {23142,23143,23171 ,11377,11351,11353 ,0,0,0}, - {23184,23168,23167 ,11374,11349,11348 ,0,0,0}, {23184,23186,23129 ,11374,11382,11383 ,0,0,0}, - {23167,23170,23183 ,11348,11352,11373 ,0,0,0}, {23128,23184,23129 ,11381,11374,11383 ,0,0,0}, - {23171,23170,23167 ,11353,11352,11348 ,0,0,0}, {23179,23170,23144 ,11367,11352,11354 ,0,0,0}, - {23186,23184,23183 ,11382,11374,11373 ,0,0,0}, {23186,23174,23130 ,11382,11360,11384 ,0,0,0}, - {23179,23187,23183 ,11367,11385,11373 ,0,0,0}, {23129,23186,23130 ,11383,11382,11384 ,0,0,0}, - {23179,23183,23170 ,11367,11373,11352 ,0,0,0}, {23146,23178,23145 ,11386,11366,11365 ,0,0,0}, - {23174,23186,23187 ,11360,11382,11385 ,0,0,0}, {23183,23187,23186 ,11373,11385,11382 ,0,0,0}, - {23178,23181,23187 ,11366,11369,11385 ,0,0,0}, {23130,23174,23131 ,11384,11360,11359 ,0,0,0}, - {23179,23178,23187 ,11367,11366,11385 ,0,0,0}, {23136,23180,23146 ,21,11368,11386 ,0,0,0}, - {23182,23173,23175 ,11372,11358,11362 ,0,0,0}, {23187,23181,23174 ,11385,11369,11360 ,0,0,0}, - {23181,23175,23173 ,11369,11362,11358 ,0,0,0}, {23131,23173,23132 ,11359,11358,11371 ,0,0,0}, - {23178,23146,23180 ,11366,11386,11368 ,0,0,0}, {23181,23178,23180 ,11369,11366,11368 ,0,0,0}, - {23182,23177,23185 ,11372,11364,11375 ,0,0,0}, {23176,23175,23180 ,11363,11362,11368 ,0,0,0}, - {23185,23133,23182 ,11375,11370,11372 ,0,0,0}, {23177,23182,23175 ,11364,11372,11362 ,0,0,0}, - {23176,23135,23188 ,11387,11388,11389 ,0,0,0}, {23124,23189,23122 ,11390,11391,11269 ,0,0,0}, - {23188,23135,23190 ,11389,11388,11392 ,0,0,0}, {23135,23137,23190 ,11388,21,11392 ,0,0,0}, - {23188,23191,23189 ,11389,11393,11391 ,0,0,0}, {23176,23136,23135 ,11387,21,11388 ,0,0,0}, - {23189,23191,23122 ,11391,11393,11269 ,0,0,0}, {23185,23189,23124 ,11394,11391,11390 ,0,0,0}, - {23121,23185,23124 ,11395,11394,11390 ,0,0,0}, {23185,23177,23189 ,11394,11396,11391 ,0,0,0}, - {23177,23176,23188 ,11396,11387,11389 ,0,0,0}, {23177,23188,23189 ,11396,11389,11391 ,0,0,0}, - {23191,23188,23190 ,11393,11389,11392 ,0,0,0}, {23156,23155,23148 ,11397,11398,11399 ,0,0,0}, - {23190,23137,23150 ,11400,21,11401 ,0,0,0}, {23150,23149,23192 ,11401,11402,11403 ,0,0,0}, - {23150,23192,23190 ,11401,11403,11400 ,0,0,0}, {23147,23156,23148 ,11404,11397,11399 ,0,0,0}, - {23153,23154,23193 ,11405,11406,11407 ,0,0,0}, {23193,23194,23153 ,11407,11408,11405 ,0,0,0}, - {23191,23192,23195 ,11409,11403,11410 ,0,0,0}, {23195,23192,23194 ,11410,11403,11408 ,0,0,0}, - {23154,23123,23120 ,11406,11411,11412 ,0,0,0}, {23191,23195,23122 ,11409,11410,11413 ,0,0,0}, - {23120,23195,23193 ,11412,11410,11407 ,0,0,0}, {23190,23192,23191 ,11400,11403,11409 ,0,0,0}, - {23120,23119,23195 ,11412,11414,11410 ,0,0,0}, {23195,23119,23122 ,11410,11414,11413 ,0,0,0}, - {23192,23149,23194 ,11403,11402,11408 ,0,0,0}, {23148,23194,23149 ,11399,11408,11402 ,0,0,0}, - {23120,23193,23154 ,11412,11407,11406 ,0,0,0}, {23195,23194,23193 ,11410,11408,11407 ,0,0,0}, - {23155,23194,23148 ,11398,11408,11399 ,0,0,0}, {23155,23153,23194 ,11398,11405,11408 ,0,0,0}, - {23196,22891,23197 ,11415,11416,11417 ,0,0,0}, {22910,22439,23108 ,11418,11419,11420 ,0,0,0}, - {23138,23198,23105 ,11421,11422,11423 ,0,0,0}, {23199,23160,23200 ,11424,11425,11426 ,0,0,0}, - {23160,23199,23140 ,11425,11424,11427 ,0,0,0}, {23140,23141,23160 ,11427,11428,11425 ,0,0,0}, - {23166,23200,23160 ,11429,11426,11425 ,0,0,0}, {23196,22874,22891 ,11415,11430,11416 ,0,0,0}, - {23140,23199,23138 ,11427,11424,11421 ,0,0,0}, {23198,23200,23201 ,11422,11426,11431 ,0,0,0}, - {23157,22836,22856 ,11432,11433,11434 ,0,0,0}, {22874,23196,22856 ,11430,11415,11434 ,0,0,0}, - {23201,23107,23106 ,11431,11435,11436 ,0,0,0}, {23197,22910,23108 ,11417,11418,11420 ,0,0,0}, - {23199,23200,23198 ,11424,11426,11422 ,0,0,0}, {23201,23106,23198 ,11431,11436,11422 ,0,0,0}, - {23105,23198,23106 ,11423,11422,11436 ,0,0,0}, {23138,23199,23198 ,11421,11424,11422 ,0,0,0}, - {23196,23166,23157 ,11415,11429,11432 ,0,0,0}, {23201,23196,23197 ,11431,11415,11417 ,0,0,0}, - {23201,23200,23196 ,11431,11426,11415 ,0,0,0}, {23107,23201,23197 ,11435,11431,11417 ,0,0,0}, - {23166,23196,23200 ,11429,11415,11426 ,0,0,0}, {22856,23196,23157 ,11434,11415,11432 ,0,0,0}, - {22910,23197,22891 ,11418,11417,11416 ,0,0,0}, {23197,23108,23107 ,11417,11420,11435 ,0,0,0}, - {22533,22396,22395 ,11437,11438,11439 ,0,0,0}, {23202,23203,22422 ,11440,11441,11442 ,0,0,0}, - {22469,23204,23205 ,11443,11444,11445 ,0,0,0}, {22427,22426,23206 ,11446,11447,11448 ,0,0,0}, - {22466,22501,23207 ,11449,11450,11451 ,0,0,0}, {22430,22431,23208 ,11452,11453,11454 ,0,0,0}, - {22430,23209,22426 ,11452,11455,11447 ,0,0,0}, {23210,22521,23211 ,11456,11457,11458 ,0,0,0}, - {22521,23210,22431 ,11457,11456,11453 ,0,0,0}, {23212,23211,22520 ,11459,11458,11460 ,0,0,0}, - {22521,22520,23211 ,11457,11460,11458 ,0,0,0}, {22409,22410,23212 ,21,21,11459 ,0,0,0}, - {23212,22520,22409 ,11459,11460,21 ,0,0,0}, {23208,23209,22430 ,11454,11455,11452 ,0,0,0}, - {22431,23210,23208 ,11453,11456,11454 ,0,0,0}, {23206,23207,22427 ,11448,11451,11446 ,0,0,0}, - {22426,23209,23206 ,11447,11455,11448 ,0,0,0}, {23202,22466,23207 ,11440,11449,11451 ,0,0,0}, - {22501,22427,23207 ,11450,11446,11451 ,0,0,0}, {23203,22420,22422 ,11441,11461,11442 ,0,0,0}, - {23202,22422,22466 ,11440,11442,11449 ,0,0,0}, {22469,22420,23204 ,11443,11461,11444 ,0,0,0}, - {23203,23204,22420 ,11441,11444,11461 ,0,0,0}, {22533,23205,23213 ,11437,11445,11462 ,0,0,0}, - {22469,23205,22533 ,11443,11445,11437 ,0,0,0}, {22396,22533,23213 ,11438,11437,11462 ,0,0,0}, - {23204,22375,22378 ,730,730,730 ,0,0,0}, {22391,23214,22389 ,730,730,730 ,0,0,0}, - {22391,22394,23215 ,730,730,730 ,0,0,0}, {22387,22389,23216 ,730,730,730 ,0,0,0}, - {22394,22381,23215 ,730,730,730 ,0,0,0}, {23214,22391,23215 ,730,730,730 ,0,0,0}, - {22381,22394,22396 ,730,730,730 ,0,0,0}, {22387,23217,22384 ,730,730,730 ,0,0,0}, - {23213,22381,22396 ,730,730,730 ,0,0,0}, {22363,22375,23202 ,730,730,730 ,0,0,0}, - {22398,22386,23218 ,730,730,730 ,0,0,0}, {23219,22399,22398 ,730,730,730 ,0,0,0}, - {15837,22363,23207 ,730,730,730 ,0,0,0}, {22365,23206,23209 ,730,730,730 ,0,0,0}, - {23220,22402,22399 ,730,730,730 ,0,0,0}, {22402,23221,22403 ,730,730,730 ,0,0,0}, - {22405,22403,23222 ,730,730,730 ,0,0,0}, {23209,22366,22365 ,730,730,730 ,0,0,0}, - {22366,23208,23210 ,730,730,730 ,0,0,0}, {22373,23212,22410 ,730,730,730 ,0,0,0}, - {22410,22408,22373 ,730,730,730 ,0,0,0}, {22405,23223,22408 ,730,730,730 ,0,0,0}, - {23211,22372,23210 ,730,730,730 ,0,0,0}, {22386,22384,23218 ,730,730,730 ,0,0,0}, - {22378,22380,23205 ,730,730,730 ,0,0,0}, {23207,23206,15837 ,730,730,730 ,0,0,0}, - {23214,23216,22389 ,730,730,730 ,0,0,0}, {23216,23217,22387 ,730,730,730 ,0,0,0}, - {23217,23218,22384 ,730,730,730 ,0,0,0}, {23218,23219,22398 ,730,730,730 ,0,0,0}, - {23219,23220,22399 ,730,730,730 ,0,0,0}, {23220,23221,22402 ,730,730,730 ,0,0,0}, - {23221,23222,22403 ,730,730,730 ,0,0,0}, {23222,23223,22405 ,730,730,730 ,0,0,0}, - {23223,22373,22408 ,730,730,730 ,0,0,0}, {22373,22369,23212 ,730,730,730 ,0,0,0}, - {22369,22372,23211 ,730,730,730 ,0,0,0}, {22369,23211,23212 ,730,730,730 ,0,0,0}, - {22372,22366,23210 ,730,730,730 ,0,0,0}, {23208,22366,23209 ,730,730,730 ,0,0,0}, - {22365,15837,23206 ,730,730,730 ,0,0,0}, {22363,23202,23207 ,730,730,730 ,0,0,0}, - {22375,23203,23202 ,730,730,730 ,0,0,0}, {23204,22378,23205 ,730,730,730 ,0,0,0}, - {23203,22375,23204 ,730,730,730 ,0,0,0}, {23205,22380,23213 ,730,730,730 ,0,0,0}, - {22381,23213,22380 ,730,730,730 ,0,0,0}, {22379,23224,23225 ,730,730,11463 ,0,0,0}, - {23226,23225,23227 ,730,11463,730 ,0,0,0}, {23226,23227,23228 ,730,730,11463 ,0,0,0}, - {23229,23225,23226 ,730,11463,730 ,0,0,0}, {23229,22382,23225 ,730,730,11463 ,0,0,0}, - {23228,23227,23230 ,11463,730,11464 ,0,0,0}, {22379,23225,22382 ,730,11463,730 ,0,0,0}, - {23224,22377,23231 ,730,730,11464 ,0,0,0}, {23224,22379,22377 ,730,730,730 ,0,0,0}, - {23231,22377,23232 ,11464,730,730 ,0,0,0}, {23232,22377,22376 ,730,730,11464 ,0,0,0}, - {23232,22376,22374 ,730,11464,730 ,0,0,0}, {23233,22374,22362 ,11465,730,11464 ,0,0,0}, - {22374,23233,23232 ,730,11465,730 ,0,0,0}, {22370,23233,22367 ,730,11465,730 ,0,0,0}, - {22362,22367,23233 ,11464,730,11465 ,0,0,0}, {22371,22364,22368 ,11464,730,11466 ,0,0,0}, - {22367,22364,22371 ,730,730,11464 ,0,0,0}, {22371,22370,22367 ,11464,730,730 ,0,0,0}, - {22373,23223,23233 ,11467,11468,11469 ,0,0,0}, {23225,23224,23220 ,11470,11471,11472 ,0,0,0}, - {23231,23232,23222 ,11473,11474,11475 ,0,0,0}, {23230,23218,23217 ,11476,11477,11478 ,0,0,0}, - {23219,23218,23227 ,11479,11477,11480 ,0,0,0}, {23226,23216,23214 ,11481,11482,11483 ,0,0,0}, - {23216,23226,23228 ,11482,11481,11484 ,0,0,0}, {23215,23229,23214 ,11485,11486,11483 ,0,0,0}, - {23226,23214,23229 ,11481,11483,11486 ,0,0,0}, {23215,22381,22382 ,11485,11487,11487 ,0,0,0}, - {22382,23229,23215 ,11487,11486,11485 ,0,0,0}, {23230,23217,23228 ,11476,11478,11484 ,0,0,0}, - {23217,23216,23228 ,11478,11482,11484 ,0,0,0}, {23220,23219,23225 ,11472,11479,11470 ,0,0,0}, - {23219,23227,23225 ,11479,11480,11470 ,0,0,0}, {23227,23218,23230 ,11480,11477,11476 ,0,0,0}, - {23232,23233,23223 ,11474,11469,11468 ,0,0,0}, {23221,23220,23224 ,11488,11472,11471 ,0,0,0}, - {23223,23222,23232 ,11468,11475,11474 ,0,0,0}, {23221,23231,23222 ,11488,11473,11475 ,0,0,0}, - {23224,23231,23221 ,11471,11473,11488 ,0,0,0}, {23233,22370,22373 ,11469,11489,11467 ,0,0,0}, - {22435,22350,22349 ,11490,324,11491 ,0,0,0}, {23234,23235,22517 ,11492,11493,11494 ,0,0,0}, - {22518,23236,22437 ,11495,11496,11497 ,0,0,0}, {23237,22456,23238 ,11498,11499,11500 ,0,0,0}, - {22513,22458,23239 ,11501,11502,11503 ,0,0,0}, {23240,22455,22515 ,11504,11505,11506 ,0,0,0}, - {22455,23240,23238 ,11505,11504,11500 ,0,0,0}, {22447,23241,22515 ,11507,11508,11506 ,0,0,0}, - {23240,22515,23241 ,11504,11506,11508 ,0,0,0}, {22447,22361,22360 ,11507,1095,1631 ,0,0,0}, - {22360,23241,22447 ,1631,11508,11507 ,0,0,0}, {22456,23237,22458 ,11499,11498,11502 ,0,0,0}, - {22456,22455,23238 ,11499,11505,11500 ,0,0,0}, {23234,22513,23239 ,11492,11501,11503 ,0,0,0}, - {23239,22458,23237 ,11503,11502,11498 ,0,0,0}, {23235,22518,22517 ,11493,11495,11494 ,0,0,0}, - {23234,22517,22513 ,11492,11494,11501 ,0,0,0}, {23236,23242,22437 ,11496,11509,11497 ,0,0,0}, - {23235,23236,22518 ,11493,11496,11495 ,0,0,0}, {22350,22435,23242 ,324,11490,11509 ,0,0,0}, - {22437,23242,22435 ,11497,11509,11490 ,0,0,0}, {22357,23234,22358 ,730,730,730 ,0,0,0}, - {22354,23236,22355 ,730,730,730 ,0,0,0}, {22360,23239,23237 ,730,730,730 ,0,0,0}, - {23241,23237,23238 ,730,730,730 ,0,0,0}, {23240,23241,23238 ,730,730,730 ,0,0,0}, - {22358,23239,22360 ,730,730,730 ,0,0,0}, {22360,23237,23241 ,730,730,730 ,0,0,0}, - {22358,23234,23239 ,730,730,730 ,0,0,0}, {22357,23235,23234 ,730,730,730 ,0,0,0}, - {22357,22355,23236 ,730,730,730 ,0,0,0}, {23236,23235,22357 ,730,730,730 ,0,0,0}, - {23242,23236,22354 ,730,730,730 ,0,0,0}, {23242,22351,22350 ,730,730,730 ,0,0,0}, - {22351,23242,22354 ,730,730,730 ,0,0,0}, {22350,22351,22343 ,730,730,730 ,0,0,0}, - {22346,22340,22344 ,730,730,730 ,0,0,0}, {22343,22340,22346 ,730,730,730 ,0,0,0}, - {22346,22350,22343 ,730,730,730 ,0,0,0}, {22528,22328,22329 ,11510,11511,11512 ,0,0,0}, - {23243,23244,22474 ,11492,11493,11513 ,0,0,0}, {22475,23245,22527 ,11514,11496,11515 ,0,0,0}, - {23246,22472,22471 ,11498,11516,11517 ,0,0,0}, {22488,22472,23247 ,11518,11516,11519 ,0,0,0}, - {23248,22532,22424 ,11504,11520,11521 ,0,0,0}, {22471,22532,23249 ,11517,11520,11500 ,0,0,0}, - {22423,23250,22424 ,11522,11508,11521 ,0,0,0}, {23248,22424,23250 ,11504,11521,11508 ,0,0,0}, - {22423,22339,22338 ,11522,11487,11523 ,0,0,0}, {22338,23250,22423 ,11523,11508,11522 ,0,0,0}, - {23246,22471,23249 ,11498,11517,11500 ,0,0,0}, {23249,22532,23248 ,11500,11520,11504 ,0,0,0}, - {22488,23247,23243 ,11518,11519,11492 ,0,0,0}, {23247,22472,23246 ,11519,11516,11498 ,0,0,0}, - {23244,22475,22474 ,11493,11514,11513 ,0,0,0}, {23243,22474,22488 ,11492,11513,11518 ,0,0,0}, - {23245,23251,22527 ,11496,11509,11515 ,0,0,0}, {23244,23245,22475 ,11493,11496,11514 ,0,0,0}, - {22328,22528,23251 ,11511,11510,11509 ,0,0,0}, {22527,23251,22528 ,11515,11509,11510 ,0,0,0}, - {22333,23243,22335 ,730,730,730 ,0,0,0}, {22330,23245,22332 ,730,730,730 ,0,0,0}, - {22338,23247,23246 ,730,730,730 ,0,0,0}, {23250,23246,23249 ,730,730,730 ,0,0,0}, - {23248,23250,23249 ,730,730,730 ,0,0,0}, {22335,23247,22338 ,730,730,730 ,0,0,0}, - {22338,23246,23250 ,730,730,730 ,0,0,0}, {22335,23243,23247 ,730,730,730 ,0,0,0}, - {22333,23244,23243 ,730,730,730 ,0,0,0}, {22333,22332,23245 ,730,730,730 ,0,0,0}, - {23245,23244,22333 ,730,730,730 ,0,0,0}, {23251,23245,22330 ,730,730,730 ,0,0,0}, - {23251,22318,22328 ,730,730,730 ,0,0,0}, {22318,23251,22330 ,730,730,730 ,0,0,0}, - {22328,22318,22321 ,730,730,730 ,0,0,0}, {22324,22322,22325 ,730,730,730 ,0,0,0}, - {22321,22322,22324 ,730,730,730 ,0,0,0}, {22324,22328,22321 ,730,730,730 ,0,0,0} -// Landegestell.prt - , {23252,23253,23254 ,11524,11525,11526 ,0,0,0}, {23255,23256,23257 ,11527,11528,11529 ,0,0,0}, - {23258,23259,23260 ,11530,11531,11532 ,0,0,0}, {23261,23253,23262 ,11533,11525,11534 ,0,0,0}, - {23263,23260,23264 ,11535,11532,11536 ,0,0,0}, {23265,23266,23267 ,11537,11538,11539 ,0,0,0}, - {23268,23269,23270 ,11540,11541,11542 ,0,0,0}, {23271,23264,23259 ,11543,11536,11531 ,0,0,0}, - {23272,23273,23274 ,11544,11545,11546 ,0,0,0}, {23268,23275,23274 ,11540,11547,11546 ,0,0,0}, - {23276,23277,23278 ,11548,11549,11550 ,0,0,0}, {23278,23277,23273 ,11550,11549,11545 ,0,0,0}, - {23279,23278,23280 ,11551,11550,11552 ,0,0,0}, {23262,23253,23252 ,11534,11525,11524 ,0,0,0}, - {23280,23281,23279 ,11552,11553,11551 ,0,0,0}, {23282,23283,23284 ,11554,11555,11556 ,0,0,0}, - {23254,23285,23252 ,11526,11557,11524 ,0,0,0}, {23286,23287,23284 ,11558,11559,11556 ,0,0,0}, - {23288,23289,23286 ,11560,11561,11558 ,0,0,0}, {23289,23290,23286 ,11561,11562,11558 ,0,0,0}, - {23284,23287,23282 ,11556,11559,11554 ,0,0,0}, {23291,23292,23256 ,11563,11564,11528 ,0,0,0}, - {23293,23294,23295 ,11565,11566,11567 ,0,0,0}, {23291,23296,23292 ,11563,11568,11564 ,0,0,0}, - {23297,23298,23299 ,11569,11570,11571 ,0,0,0}, {23294,23300,23295 ,11566,11572,11567 ,0,0,0}, - {23301,23302,23303 ,11573,11574,11575 ,0,0,0}, {23297,23299,23304 ,11569,11571,11576 ,0,0,0}, - {23305,23306,23307 ,11577,11578,11579 ,0,0,0}, {23306,23305,23308 ,11578,11577,11580 ,0,0,0}, - {23309,23310,23311 ,11581,11582,11583 ,0,0,0}, {23312,23313,23310 ,11584,11585,11582 ,0,0,0}, - {23314,23315,23316 ,11586,11587,11588 ,0,0,0}, {23309,23311,23317 ,11581,11583,11589 ,0,0,0}, - {23318,23319,23320 ,11590,11591,11592 ,0,0,0}, {23314,23316,23321 ,11586,11588,11593 ,0,0,0}, - {23322,23323,23324 ,11594,11595,11596 ,0,0,0}, {23325,23319,23318 ,11597,11591,11590 ,0,0,0}, - {23326,23327,23328 ,11598,11599,11600 ,0,0,0}, {23328,23324,23326 ,11600,11596,11598 ,0,0,0}, - {23329,23330,23331 ,11601,11602,11603 ,0,0,0}, {23332,23327,23333 ,11604,11599,11605 ,0,0,0}, - {23334,23335,23336 ,11606,11607,11608 ,0,0,0}, {23337,23334,23338 ,11609,11606,11610 ,0,0,0}, - {23339,23340,23341 ,11611,11612,11613 ,0,0,0}, {23342,23339,23336 ,11614,11611,11608 ,0,0,0}, - {23343,23344,23345 ,11615,11616,11617 ,0,0,0}, {23346,23341,23347 ,11618,11613,11619 ,0,0,0}, - {23348,23349,23350 ,11620,11621,11622 ,0,0,0}, {23345,23351,23343 ,11617,11623,11615 ,0,0,0}, - {23352,23348,23353 ,11624,11620,11625 ,0,0,0}, {23343,23351,23354 ,11615,11623,11626 ,0,0,0}, - {23355,23352,23346 ,11627,11624,11618 ,0,0,0}, {23348,23352,23355 ,11620,11624,11627 ,0,0,0}, - {23356,23357,23358 ,11628,11629,11630 ,0,0,0}, {23359,23342,23360 ,11631,11614,11632 ,0,0,0}, - {23361,23362,23363 ,11633,11634,11635 ,0,0,0}, {23359,23360,23364 ,11631,11632,11636 ,0,0,0}, - {23365,23366,23367 ,11637,11638,11639 ,0,0,0}, {23363,23368,23369 ,11635,11640,11641 ,0,0,0}, - {23370,23371,23367 ,11642,11643,11639 ,0,0,0}, {23372,23373,23374 ,11644,11645,11646 ,0,0,0}, - {23375,23376,23377 ,11647,11648,11649 ,0,0,0}, {23377,23374,23375 ,11649,11646,11647 ,0,0,0}, - {23376,23375,23378 ,11648,11647,11650 ,0,0,0}, {23347,23341,23340 ,11619,11613,11612 ,0,0,0}, - {23348,23354,23353 ,11620,11626,11625 ,0,0,0}, {23342,23336,23335 ,11614,11608,11607 ,0,0,0}, - {23342,23340,23339 ,11614,11612,11611 ,0,0,0}, {23337,23338,23329 ,11609,11610,11601 ,0,0,0}, - {23334,23337,23335 ,11606,11609,11607 ,0,0,0}, {23331,23330,23332 ,11603,11602,11604 ,0,0,0}, - {23338,23330,23329 ,11610,11602,11601 ,0,0,0}, {23331,23332,23333 ,11603,11604,11605 ,0,0,0}, - {23379,23337,23329 ,11651,11609,11601 ,0,0,0}, {23328,23322,23324 ,11600,11594,11596 ,0,0,0}, - {23327,23326,23333 ,11599,11598,11605 ,0,0,0}, {23318,23320,23380 ,11590,11592,11652 ,0,0,0}, - {23381,23325,23382 ,11653,11597,11654 ,0,0,0}, {23324,23323,23382 ,11596,11595,11654 ,0,0,0}, - {23319,23325,23381 ,11591,11597,11653 ,0,0,0}, {23323,23381,23382 ,11595,11653,11654 ,0,0,0}, - {23380,23320,23321 ,11652,11592,11593 ,0,0,0}, {23383,23318,23380 ,11655,11590,11652 ,0,0,0}, - {23321,23316,23380 ,11593,11588,11652 ,0,0,0}, {23317,23315,23384 ,11589,11587,11656 ,0,0,0}, - {23314,23384,23315 ,11586,11656,11587 ,0,0,0}, {23385,23317,23384 ,11657,11589,11656 ,0,0,0}, - {23313,23311,23310 ,11585,11583,11582 ,0,0,0}, {23309,23317,23385 ,11581,11589,11657 ,0,0,0}, - {23312,23386,23313 ,11584,11658,11585 ,0,0,0}, {23307,23306,23386 ,11579,11578,11658 ,0,0,0}, - {23386,23312,23307 ,11658,11584,11579 ,0,0,0}, {23308,23387,23303 ,11580,11659,11575 ,0,0,0}, - {23388,23389,23390 ,11660,11661,11662 ,0,0,0}, {23303,23387,23391 ,11575,11659,11663 ,0,0,0}, - {23387,23308,23305 ,11659,11580,11577 ,0,0,0}, {23392,23304,23302 ,11664,11576,11574 ,0,0,0}, - {23301,23303,23391 ,11573,11575,11663 ,0,0,0}, {23304,23392,23297 ,11576,11664,11569 ,0,0,0}, - {23392,23302,23301 ,11664,11574,11573 ,0,0,0}, {23296,23393,23394 ,11568,11665,11666 ,0,0,0}, - {23298,23300,23395 ,11570,11572,11667 ,0,0,0}, {23299,23298,23395 ,11571,11570,11667 ,0,0,0}, - {23395,23300,23294 ,11667,11572,11566 ,0,0,0}, {23396,23397,23398 ,11668,11669,11670 ,0,0,0}, - {23393,23293,23295 ,11665,11565,11567 ,0,0,0}, {23285,23254,23283 ,11557,11526,11555 ,0,0,0}, - {23296,23293,23393 ,11568,11565,11665 ,0,0,0}, {23296,23394,23292 ,11568,11666,11564 ,0,0,0}, - {23256,23255,23291 ,11528,11527,11563 ,0,0,0}, {23290,23289,23257 ,11562,11561,11529 ,0,0,0}, - {23257,23289,23255 ,11529,11561,11527 ,0,0,0}, {23282,23285,23283 ,11554,11557,11555 ,0,0,0}, - {23290,23287,23286 ,11562,11559,11558 ,0,0,0}, {23267,23399,23400 ,11539,11671,11672 ,0,0,0}, - {23261,23262,23399 ,11533,11534,11671 ,0,0,0}, {23400,23265,23267 ,11672,11537,11539 ,0,0,0}, - {23261,23399,23267 ,11533,11671,11539 ,0,0,0}, {23400,23401,23265 ,11672,11673,11537 ,0,0,0}, - {23402,23403,23269 ,11674,11675,11541 ,0,0,0}, {23265,23401,23404 ,11537,11673,11676 ,0,0,0}, - {23404,23401,23405 ,11676,11673,11677 ,0,0,0}, {23406,23404,23407 ,11678,11676,11679 ,0,0,0}, - {23405,23407,23404 ,11677,11679,11676 ,0,0,0}, {23270,23408,23268 ,11542,11680,11540 ,0,0,0}, - {23409,23406,23407 ,11681,11678,11679 ,0,0,0}, {23410,23409,23407 ,11682,11681,11679 ,0,0,0}, - {23406,23409,23411 ,11678,11681,11683 ,0,0,0}, {23412,23413,23411 ,11684,11685,11683 ,0,0,0}, - {23403,23402,23414 ,11675,11674,11686 ,0,0,0}, {23411,23413,23406 ,11683,11685,11678 ,0,0,0}, - {23412,23402,23413 ,11684,11674,11685 ,0,0,0}, {23406,23415,23404 ,11678,11687,11676 ,0,0,0}, - {23416,23261,23267 ,11688,11533,11539 ,0,0,0}, {23404,23258,23265 ,11676,11530,11537 ,0,0,0}, - {23417,23253,23261 ,11689,11525,11533 ,0,0,0}, {23266,23265,23258 ,11538,11537,11530 ,0,0,0}, - {23418,23254,23253 ,11690,11526,11525 ,0,0,0}, {23416,23267,23266 ,11688,11539,11538 ,0,0,0}, - {23419,23283,23254 ,11691,11555,11526 ,0,0,0}, {23417,23261,23416 ,11689,11533,11688 ,0,0,0}, - {23420,23284,23283 ,11692,11556,11555 ,0,0,0}, {23418,23253,23417 ,11690,11525,11689 ,0,0,0}, - {23421,23286,23284 ,11693,11558,11556 ,0,0,0}, {23254,23418,23419 ,11526,11690,11691 ,0,0,0}, - {23422,23423,23424 ,11694,11695,11696 ,0,0,0}, {23283,23419,23420 ,11555,11691,11692 ,0,0,0}, - {23424,23255,23289 ,11696,11527,11561 ,0,0,0}, {23284,23420,23421 ,11556,11692,11693 ,0,0,0}, - {23425,23291,23255 ,11697,11563,11527 ,0,0,0}, {23286,23421,23288 ,11558,11693,11560 ,0,0,0}, - {23426,23296,23291 ,11698,11568,11563 ,0,0,0}, {23289,23288,23424 ,11561,11560,11696 ,0,0,0}, - {23427,23293,23296 ,11699,11565,11568 ,0,0,0}, {23255,23424,23425 ,11527,11696,11697 ,0,0,0}, - {23428,23294,23293 ,11700,11566,11565 ,0,0,0}, {23426,23291,23425 ,11698,11563,11697 ,0,0,0}, - {23429,23395,23294 ,11701,11667,11566 ,0,0,0}, {23427,23296,23426 ,11699,11568,11698 ,0,0,0}, - {23430,23299,23395 ,11702,11571,11667 ,0,0,0}, {23293,23427,23428 ,11565,11699,11700 ,0,0,0}, - {23397,23304,23299 ,11669,11576,11571 ,0,0,0}, {23294,23428,23429 ,11566,11700,11701 ,0,0,0}, - {23431,23302,23304 ,11703,11574,11576 ,0,0,0}, {23395,23429,23430 ,11667,11701,11702 ,0,0,0}, - {23432,23303,23302 ,11704,11575,11574 ,0,0,0}, {23299,23430,23397 ,11571,11702,11669 ,0,0,0}, - {23433,23308,23303 ,11705,11580,11575 ,0,0,0}, {23431,23304,23397 ,11703,11576,11669 ,0,0,0}, - {23434,23306,23308 ,11706,11578,11580 ,0,0,0}, {23432,23302,23431 ,11704,11574,11703 ,0,0,0}, - {23435,23386,23306 ,11707,11658,11578 ,0,0,0}, {23303,23432,23433 ,11575,11704,11705 ,0,0,0}, - {23313,23386,23388 ,11585,11658,11660 ,0,0,0}, {23308,23433,23434 ,11580,11705,11706 ,0,0,0}, - {23436,23311,23313 ,11708,11583,11585 ,0,0,0}, {23306,23434,23435 ,11578,11706,11707 ,0,0,0}, - {23437,23317,23311 ,11709,11589,11583 ,0,0,0}, {23386,23435,23388 ,11658,11707,11660 ,0,0,0}, - {23438,23315,23317 ,11710,11587,11589 ,0,0,0}, {23436,23313,23388 ,11708,11585,11660 ,0,0,0}, - {23439,23316,23315 ,11711,11588,11587 ,0,0,0}, {23437,23311,23436 ,11709,11583,11708 ,0,0,0}, - {23440,23380,23316 ,11712,11652,11588 ,0,0,0}, {23317,23437,23438 ,11589,11709,11710 ,0,0,0}, - {23441,23442,23443 ,11713,11714,11715 ,0,0,0}, {23315,23438,23439 ,11587,11710,11711 ,0,0,0}, - {23444,23325,23318 ,11716,11597,11590 ,0,0,0}, {23316,23439,23440 ,11588,11711,11712 ,0,0,0}, - {23445,23382,23325 ,11717,11654,11597 ,0,0,0}, {23380,23440,23383 ,11652,11712,11655 ,0,0,0}, - {23446,23324,23382 ,11718,11596,11654 ,0,0,0}, {23318,23383,23444 ,11590,11655,11716 ,0,0,0}, - {23447,23326,23324 ,11719,11598,11596 ,0,0,0}, {23445,23325,23444 ,11717,11597,11716 ,0,0,0}, - {23448,23333,23326 ,11720,11605,11598 ,0,0,0}, {23446,23382,23445 ,11718,11654,11717 ,0,0,0}, - {23449,23331,23333 ,11721,11603,11605 ,0,0,0}, {23447,23324,23446 ,11719,11596,11718 ,0,0,0}, - {23450,23329,23331 ,11722,11601,11603 ,0,0,0}, {23326,23447,23448 ,11598,11719,11720 ,0,0,0}, - {23337,23451,23335 ,11609,11723,11607 ,0,0,0}, {23333,23448,23449 ,11605,11720,11721 ,0,0,0}, - {23360,23452,23364 ,11632,11724,11636 ,0,0,0}, {23331,23449,23450 ,11603,11721,11722 ,0,0,0}, - {23360,23342,23335 ,11632,11614,11607 ,0,0,0}, {23329,23450,23379 ,11601,11722,11651 ,0,0,0}, - {23359,23340,23342 ,11631,11612,11614 ,0,0,0}, {23337,23379,23451 ,11609,11651,11723 ,0,0,0}, - {23347,23340,23453 ,11619,11612,11725 ,0,0,0}, {23451,23360,23335 ,11723,11632,11607 ,0,0,0}, - {23362,23349,23355 ,11634,11621,11627 ,0,0,0}, {23349,23362,23361 ,11621,11634,11633 ,0,0,0}, - {23347,23355,23346 ,11619,11627,11618 ,0,0,0}, {23340,23359,23453 ,11612,11631,11725 ,0,0,0}, - {23343,23354,23454 ,11615,11626,11726 ,0,0,0}, {23347,23362,23355 ,11619,11634,11627 ,0,0,0}, - {23348,23355,23349 ,11620,11627,11621 ,0,0,0}, {23455,23456,23343 ,11727,11728,11615 ,0,0,0}, - {23353,23354,23351 ,11625,11626,11623 ,0,0,0}, {23350,23454,23354 ,11622,11726,11626 ,0,0,0}, - {23344,23343,23456 ,11616,11615,11728 ,0,0,0}, {23413,23415,23406 ,11685,11687,11678 ,0,0,0}, - {23414,23402,23412 ,11686,11674,11684 ,0,0,0}, {23275,23457,23274 ,11547,11729,11546 ,0,0,0}, - {23415,23258,23404 ,11687,11530,11676 ,0,0,0}, {23413,23458,23415 ,11685,11730,11687 ,0,0,0}, - {23266,23260,23459 ,11538,11532,11731 ,0,0,0}, {23259,23258,23415 ,11531,11530,11687 ,0,0,0}, - {23416,23459,23460 ,11688,11731,11732 ,0,0,0}, {23260,23266,23258 ,11532,11538,11530 ,0,0,0}, - {23417,23460,23461 ,11689,11732,11733 ,0,0,0}, {23459,23416,23266 ,11731,11688,11538 ,0,0,0}, - {23418,23461,23462 ,11690,11733,11734 ,0,0,0}, {23460,23417,23416 ,11732,11689,11688 ,0,0,0}, - {23419,23462,23463 ,11691,11734,11735 ,0,0,0}, {23461,23418,23417 ,11733,11690,11689 ,0,0,0}, - {23420,23463,23464 ,11692,11735,11736 ,0,0,0}, {23462,23419,23418 ,11734,11691,11690 ,0,0,0}, - {23421,23464,23465 ,11693,11736,11737 ,0,0,0}, {23463,23420,23419 ,11735,11692,11691 ,0,0,0}, - {23288,23465,23422 ,11560,11737,11694 ,0,0,0}, {23421,23420,23464 ,11693,11692,11736 ,0,0,0}, - {23466,23467,23468 ,11738,11739,11740 ,0,0,0}, {23288,23421,23465 ,11560,11693,11737 ,0,0,0}, - {23425,23423,23466 ,11697,11695,11738 ,0,0,0}, {23424,23288,23422 ,11696,11560,11694 ,0,0,0}, - {23426,23466,23469 ,11698,11738,11741 ,0,0,0}, {23425,23424,23423 ,11697,11696,11695 ,0,0,0}, - {23427,23469,23470 ,11699,11741,11742 ,0,0,0}, {23466,23426,23425 ,11738,11698,11697 ,0,0,0}, - {23428,23470,23471 ,11700,11742,11743 ,0,0,0}, {23469,23427,23426 ,11741,11699,11698 ,0,0,0}, - {23429,23471,23472 ,11701,11743,11744 ,0,0,0}, {23470,23428,23427 ,11742,11700,11699 ,0,0,0}, - {23430,23472,23398 ,11702,11744,11670 ,0,0,0}, {23429,23428,23471 ,11701,11700,11743 ,0,0,0}, - {23473,23474,23475 ,11745,11746,11747 ,0,0,0}, {23430,23429,23472 ,11702,11701,11744 ,0,0,0}, - {23431,23396,23476 ,11703,11668,11748 ,0,0,0}, {23397,23430,23398 ,11669,11702,11670 ,0,0,0}, - {23432,23476,23477 ,11704,11748,11749 ,0,0,0}, {23396,23431,23397 ,11668,11703,11669 ,0,0,0}, - {23433,23477,23478 ,11705,11749,11750 ,0,0,0}, {23476,23432,23431 ,11748,11704,11703 ,0,0,0}, - {23434,23478,23479 ,11706,11750,11751 ,0,0,0}, {23477,23433,23432 ,11749,11705,11704 ,0,0,0}, - {23435,23479,23389 ,11707,11751,11661 ,0,0,0}, {23434,23433,23478 ,11706,11705,11750 ,0,0,0}, - {23480,23481,23482 ,11752,11753,11754 ,0,0,0}, {23435,23434,23479 ,11707,11706,11751 ,0,0,0}, - {23436,23390,23483 ,11708,11662,11755 ,0,0,0}, {23388,23435,23389 ,11660,11707,11661 ,0,0,0}, - {23437,23483,23484 ,11709,11755,11756 ,0,0,0}, {23436,23388,23390 ,11708,11660,11662 ,0,0,0}, - {23438,23484,23485 ,11710,11756,11757 ,0,0,0}, {23483,23437,23436 ,11755,11709,11708 ,0,0,0}, - {23439,23485,23486 ,11711,11757,11758 ,0,0,0}, {23484,23438,23437 ,11756,11710,11709 ,0,0,0}, - {23440,23486,23487 ,11712,11758,11759 ,0,0,0}, {23485,23439,23438 ,11757,11711,11710 ,0,0,0}, - {23383,23487,23488 ,11655,11759,11760 ,0,0,0}, {23440,23439,23486 ,11712,11711,11758 ,0,0,0}, - {23444,23488,23442 ,11716,11760,11714 ,0,0,0}, {23383,23440,23487 ,11655,11712,11759 ,0,0,0}, - {23445,23442,23489 ,11717,11714,11761 ,0,0,0}, {23444,23383,23488 ,11716,11655,11760 ,0,0,0}, - {23446,23489,23490 ,11718,11761,11762 ,0,0,0}, {23442,23445,23444 ,11714,11717,11716 ,0,0,0}, - {23447,23490,23491 ,11719,11762,11763 ,0,0,0}, {23489,23446,23445 ,11761,11718,11717 ,0,0,0}, - {23448,23491,23492 ,11720,11763,11764 ,0,0,0}, {23490,23447,23446 ,11762,11719,11718 ,0,0,0}, - {23449,23492,23493 ,11721,11764,11765 ,0,0,0}, {23491,23448,23447 ,11763,11720,11719 ,0,0,0}, - {23450,23493,23494 ,11722,11765,11766 ,0,0,0}, {23492,23449,23448 ,11764,11721,11720 ,0,0,0}, - {23379,23494,23495 ,11651,11766,11767 ,0,0,0}, {23493,23450,23449 ,11765,11722,11721 ,0,0,0}, - {23451,23495,23452 ,11723,11767,11724 ,0,0,0}, {23379,23450,23494 ,11651,11722,11766 ,0,0,0}, - {23496,23359,23364 ,11768,11631,11636 ,0,0,0}, {23451,23379,23495 ,11723,11651,11767 ,0,0,0}, - {23369,23365,23497 ,11641,11637,11769 ,0,0,0}, {23360,23451,23452 ,11632,11723,11724 ,0,0,0}, - {23496,23363,23453 ,11768,11635,11725 ,0,0,0}, {23356,23349,23361 ,11628,11621,11633 ,0,0,0}, - {23453,23362,23347 ,11725,11634,11619 ,0,0,0}, {23496,23453,23359 ,11768,11725,11631 ,0,0,0}, - {23369,23361,23363 ,11641,11633,11635 ,0,0,0}, {23453,23363,23362 ,11725,11635,11634 ,0,0,0}, - {23498,23454,23358 ,11770,11726,11630 ,0,0,0}, {23454,23455,23343 ,11726,11727,11615 ,0,0,0}, - {23348,23350,23354 ,11620,11622,11626 ,0,0,0}, {23350,23356,23358 ,11622,11628,11630 ,0,0,0}, - {23498,23455,23454 ,11770,11727,11726 ,0,0,0}, {23402,23458,23413 ,11674,11730,11685 ,0,0,0}, - {23270,23269,23403 ,11542,11541,11675 ,0,0,0}, {23273,23277,23499 ,11545,11549,11771 ,0,0,0}, - {23458,23259,23415 ,11730,11531,11687 ,0,0,0}, {23402,23500,23458 ,11674,11772,11730 ,0,0,0}, - {23501,23502,23503 ,11773,11774,11775 ,0,0,0}, {23271,23259,23458 ,11543,11531,11730 ,0,0,0}, - {23263,23501,23459 ,11535,11773,11731 ,0,0,0}, {23264,23260,23259 ,11536,11532,11531 ,0,0,0}, - {23501,23504,23460 ,11773,11776,11732 ,0,0,0}, {23263,23459,23260 ,11535,11731,11532 ,0,0,0}, - {23504,23505,23461 ,11776,11777,11733 ,0,0,0}, {23501,23460,23459 ,11773,11732,11731 ,0,0,0}, - {23505,23506,23462 ,11777,11778,11734 ,0,0,0}, {23504,23461,23460 ,11776,11733,11732 ,0,0,0}, - {23506,23507,23463 ,11778,11779,11735 ,0,0,0}, {23505,23462,23461 ,11777,11734,11733 ,0,0,0}, - {23507,23508,23464 ,11779,11780,11736 ,0,0,0}, {23506,23463,23462 ,11778,11735,11734 ,0,0,0}, - {23508,23509,23465 ,11780,11781,11737 ,0,0,0}, {23507,23464,23463 ,11779,11736,11735 ,0,0,0}, - {23509,23510,23422 ,11781,11782,11694 ,0,0,0}, {23508,23465,23464 ,11780,11737,11736 ,0,0,0}, - {23510,23467,23423 ,11782,11739,11695 ,0,0,0}, {23422,23465,23509 ,11694,11737,11781 ,0,0,0}, - {23511,23512,23513 ,11783,11784,11785 ,0,0,0}, {23423,23422,23510 ,11695,11694,11782 ,0,0,0}, - {23468,23511,23469 ,11740,11783,11741 ,0,0,0}, {23467,23466,23423 ,11739,11738,11695 ,0,0,0}, - {23511,23514,23470 ,11783,11786,11742 ,0,0,0}, {23468,23469,23466 ,11740,11741,11738 ,0,0,0}, - {23514,23515,23471 ,11786,11787,11743 ,0,0,0}, {23511,23470,23469 ,11783,11742,11741 ,0,0,0}, - {23515,23516,23472 ,11787,11788,11744 ,0,0,0}, {23514,23471,23470 ,11786,11743,11742 ,0,0,0}, - {23516,23517,23398 ,11788,11789,11670 ,0,0,0}, {23515,23472,23471 ,11787,11744,11743 ,0,0,0}, - {23396,23517,23518 ,11668,11789,11790 ,0,0,0}, {23398,23472,23516 ,11670,11744,11788 ,0,0,0}, - {23518,23473,23476 ,11790,11745,11748 ,0,0,0}, {23517,23396,23398 ,11789,11668,11670 ,0,0,0}, - {23473,23519,23477 ,11745,11791,11749 ,0,0,0}, {23518,23476,23396 ,11790,11748,11668 ,0,0,0}, - {23519,23520,23478 ,11791,11792,11750 ,0,0,0}, {23473,23477,23476 ,11745,11749,11748 ,0,0,0}, - {23520,23521,23479 ,11792,11793,11751 ,0,0,0}, {23519,23478,23477 ,11791,11750,11749 ,0,0,0}, - {23521,23522,23389 ,11793,11794,11661 ,0,0,0}, {23520,23479,23478 ,11792,11751,11750 ,0,0,0}, - {23522,23523,23390 ,11794,11795,11662 ,0,0,0}, {23389,23479,23521 ,11661,11751,11793 ,0,0,0}, - {23523,23480,23483 ,11795,11752,11755 ,0,0,0}, {23390,23389,23522 ,11662,11661,11794 ,0,0,0}, - {23480,23524,23484 ,11752,11796,11756 ,0,0,0}, {23523,23483,23390 ,11795,11755,11662 ,0,0,0}, - {23524,23525,23485 ,11796,11797,11757 ,0,0,0}, {23480,23484,23483 ,11752,11756,11755 ,0,0,0}, - {23525,23526,23486 ,11797,11798,11758 ,0,0,0}, {23524,23485,23484 ,11796,11757,11756 ,0,0,0}, - {23526,23527,23487 ,11798,11799,11759 ,0,0,0}, {23525,23486,23485 ,11797,11758,11757 ,0,0,0}, - {23527,23443,23488 ,11799,11715,11760 ,0,0,0}, {23487,23486,23526 ,11759,11758,11798 ,0,0,0}, - {23528,23529,23530 ,11800,11801,11802 ,0,0,0}, {23488,23487,23527 ,11760,11759,11799 ,0,0,0}, - {23441,23528,23489 ,11713,11800,11761 ,0,0,0}, {23443,23442,23488 ,11715,11714,11760 ,0,0,0}, - {23528,23531,23490 ,11800,11803,11762 ,0,0,0}, {23441,23489,23442 ,11713,11761,11714 ,0,0,0}, - {23531,23532,23491 ,11803,11804,11763 ,0,0,0}, {23528,23490,23489 ,11800,11762,11761 ,0,0,0}, - {23532,23533,23492 ,11804,11805,11764 ,0,0,0}, {23531,23491,23490 ,11803,11763,11762 ,0,0,0}, - {23533,23534,23493 ,11805,11806,11765 ,0,0,0}, {23532,23492,23491 ,11804,11764,11763 ,0,0,0}, - {23534,23535,23494 ,11806,11807,11766 ,0,0,0}, {23533,23493,23492 ,11805,11765,11764 ,0,0,0}, - {23535,23536,23495 ,11807,11808,11767 ,0,0,0}, {23534,23494,23493 ,11806,11766,11765 ,0,0,0}, - {23536,23537,23452 ,11808,11809,11724 ,0,0,0}, {23535,23495,23494 ,11807,11767,11766 ,0,0,0}, - {23537,23538,23364 ,11809,11810,11636 ,0,0,0}, {23536,23452,23495 ,11808,11724,11767 ,0,0,0}, - {23538,23368,23496 ,11810,11640,11768 ,0,0,0}, {23364,23452,23537 ,11636,11724,11809 ,0,0,0}, - {23539,23361,23369 ,11811,11633,11641 ,0,0,0}, {23364,23538,23496 ,11636,11810,11768 ,0,0,0}, - {23368,23365,23369 ,11640,11637,11641 ,0,0,0}, {23496,23368,23363 ,11768,11640,11635 ,0,0,0}, - {23540,23358,23357 ,11812,11630,11629 ,0,0,0}, {23350,23358,23454 ,11622,11630,11726 ,0,0,0}, - {23349,23356,23350 ,11621,11628,11622 ,0,0,0}, {23539,23357,23356 ,11811,11629,11628 ,0,0,0}, - {23498,23358,23540 ,11770,11630,11812 ,0,0,0}, {23500,23402,23269 ,11772,11674,11541 ,0,0,0}, - {23275,23268,23408 ,11547,11540,11680 ,0,0,0}, {23271,23541,23542 ,11543,11813,11814 ,0,0,0}, - {23500,23271,23458 ,11772,11543,11730 ,0,0,0}, {23543,23500,23269 ,11815,11772,11541 ,0,0,0}, - {23264,23542,23544 ,11536,11814,11816 ,0,0,0}, {23500,23541,23271 ,11772,11813,11543 ,0,0,0}, - {23263,23544,23502 ,11535,11816,11774 ,0,0,0}, {23542,23264,23271 ,11814,11536,11543 ,0,0,0}, - {23545,23504,23503 ,11817,11776,11775 ,0,0,0}, {23544,23263,23264 ,11816,11535,11536 ,0,0,0}, - {23546,23505,23545 ,11818,11777,11817 ,0,0,0}, {23502,23501,23263 ,11774,11773,11535 ,0,0,0}, - {23547,23548,23549 ,11819,11820,11821 ,0,0,0}, {23503,23504,23501 ,11775,11776,11773 ,0,0,0}, - {23546,23547,23506 ,11818,11819,11778 ,0,0,0}, {23545,23505,23504 ,11817,11777,11776 ,0,0,0}, - {23547,23550,23507 ,11819,11822,11779 ,0,0,0}, {23546,23506,23505 ,11818,11778,11777 ,0,0,0}, - {23550,23551,23508 ,11822,11823,11780 ,0,0,0}, {23547,23507,23506 ,11819,11779,11778 ,0,0,0}, - {23551,23552,23509 ,11823,11824,11781 ,0,0,0}, {23550,23508,23507 ,11822,11780,11779 ,0,0,0}, - {23552,23553,23510 ,11824,11825,11782 ,0,0,0}, {23551,23509,23508 ,11823,11781,11780 ,0,0,0}, - {23467,23553,23554 ,11739,11825,11826 ,0,0,0}, {23552,23510,23509 ,11824,11782,11781 ,0,0,0}, - {23468,23554,23512 ,11740,11826,11784 ,0,0,0}, {23553,23467,23510 ,11825,11739,11782 ,0,0,0}, - {23555,23556,23557 ,11827,11828,11829 ,0,0,0}, {23554,23468,23467 ,11826,11740,11739 ,0,0,0}, - {23513,23555,23514 ,11785,11827,11786 ,0,0,0}, {23512,23511,23468 ,11784,11783,11740 ,0,0,0}, - {23555,23558,23515 ,11827,11830,11787 ,0,0,0}, {23513,23514,23511 ,11785,11786,11783 ,0,0,0}, - {23558,23559,23516 ,11830,11831,11788 ,0,0,0}, {23555,23515,23514 ,11827,11787,11786 ,0,0,0}, - {23517,23559,23560 ,11789,11831,11832 ,0,0,0}, {23558,23516,23515 ,11830,11788,11787 ,0,0,0}, - {23518,23560,23474 ,11790,11832,11746 ,0,0,0}, {23517,23516,23559 ,11789,11788,11831 ,0,0,0}, - {23561,23562,23563 ,11833,11834,11835 ,0,0,0}, {23560,23518,23517 ,11832,11790,11789 ,0,0,0}, - {23475,23561,23519 ,11747,11833,11791 ,0,0,0}, {23474,23473,23518 ,11746,11745,11790 ,0,0,0}, - {23561,23564,23520 ,11833,11836,11792 ,0,0,0}, {23475,23519,23473 ,11747,11791,11745 ,0,0,0}, - {23564,23565,23521 ,11836,11837,11793 ,0,0,0}, {23561,23520,23519 ,11833,11792,11791 ,0,0,0}, - {23565,23566,23522 ,11837,11838,11794 ,0,0,0}, {23564,23521,23520 ,11836,11793,11792 ,0,0,0}, - {23523,23566,23481 ,11795,11838,11753 ,0,0,0}, {23522,23521,23565 ,11794,11793,11837 ,0,0,0}, - {23567,23568,23569 ,11839,11840,11841 ,0,0,0}, {23566,23523,23522 ,11838,11795,11794 ,0,0,0}, - {23482,23567,23524 ,11754,11839,11796 ,0,0,0}, {23481,23480,23523 ,11753,11752,11795 ,0,0,0}, - {23567,23570,23525 ,11839,11842,11797 ,0,0,0}, {23482,23524,23480 ,11754,11796,11752 ,0,0,0}, - {23570,23571,23526 ,11842,11843,11798 ,0,0,0}, {23567,23525,23524 ,11839,11797,11796 ,0,0,0}, - {23571,23572,23527 ,11843,11844,11799 ,0,0,0}, {23570,23526,23525 ,11842,11798,11797 ,0,0,0}, - {23443,23572,23573 ,11715,11844,11845 ,0,0,0}, {23571,23527,23526 ,11843,11799,11798 ,0,0,0}, - {23441,23573,23529 ,11713,11845,11801 ,0,0,0}, {23572,23443,23527 ,11844,11715,11799 ,0,0,0}, - {23574,23531,23530 ,11846,11803,11802 ,0,0,0}, {23573,23441,23443 ,11845,11713,11715 ,0,0,0}, - {23575,23576,23577 ,11847,11848,11849 ,0,0,0}, {23529,23528,23441 ,11801,11800,11713 ,0,0,0}, - {23574,23575,23532 ,11846,11847,11804 ,0,0,0}, {23530,23531,23528 ,11802,11803,11800 ,0,0,0}, - {23575,23578,23533 ,11847,11850,11805 ,0,0,0}, {23574,23532,23531 ,11846,11804,11803 ,0,0,0}, - {23578,23579,23534 ,11850,11851,11806 ,0,0,0}, {23575,23533,23532 ,11847,11805,11804 ,0,0,0}, - {23579,23580,23535 ,11851,11852,11807 ,0,0,0}, {23578,23534,23533 ,11850,11806,11805 ,0,0,0}, - {23580,23581,23536 ,11852,11853,11808 ,0,0,0}, {23579,23535,23534 ,11851,11807,11806 ,0,0,0}, - {23581,23582,23537 ,11853,11854,11809 ,0,0,0}, {23580,23536,23535 ,11852,11808,11807 ,0,0,0}, - {23582,23366,23538 ,11854,11638,11810 ,0,0,0}, {23581,23537,23536 ,11853,11809,11808 ,0,0,0}, - {23368,23366,23365 ,11640,11638,11637 ,0,0,0}, {23537,23582,23538 ,11809,11854,11810 ,0,0,0}, - {23583,23357,23539 ,11855,11629,11811 ,0,0,0}, {23368,23538,23366 ,11640,11810,11638 ,0,0,0}, - {23584,23357,23583 ,11856,11629,11855 ,0,0,0}, {23585,23540,23357 ,11857,11812,11629 ,0,0,0}, - {23361,23539,23356 ,11633,11811,11628 ,0,0,0}, {23497,23583,23539 ,11769,11855,11811 ,0,0,0}, - {23584,23585,23357 ,11856,11857,11629 ,0,0,0}, {23543,23269,23268 ,11815,11541,11540 ,0,0,0}, - {23272,23274,23457 ,11544,11546,11729 ,0,0,0}, {23541,23586,23587 ,11813,11858,11859 ,0,0,0}, - {23543,23541,23500 ,11815,11813,11772 ,0,0,0}, {23268,23588,23543 ,11540,11860,11815 ,0,0,0}, - {23542,23587,23589 ,11814,11859,11861 ,0,0,0}, {23543,23586,23541 ,11815,11858,11813 ,0,0,0}, - {23544,23589,23590 ,11816,11861,11862 ,0,0,0}, {23541,23587,23542 ,11813,11859,11814 ,0,0,0}, - {23502,23590,23591 ,11774,11862,11863 ,0,0,0}, {23542,23589,23544 ,11814,11861,11816 ,0,0,0}, - {23503,23591,23592 ,11775,11863,11864 ,0,0,0}, {23544,23590,23502 ,11816,11862,11774 ,0,0,0}, - {23545,23592,23593 ,11817,11864,11865 ,0,0,0}, {23502,23591,23503 ,11774,11863,11775 ,0,0,0}, - {23546,23593,23548 ,11818,11865,11820 ,0,0,0}, {23592,23545,23503 ,11864,11817,11775 ,0,0,0}, - {23594,23550,23549 ,11866,11822,11821 ,0,0,0}, {23593,23546,23545 ,11865,11818,11817 ,0,0,0}, - {23595,23596,23594 ,11867,11868,11866 ,0,0,0}, {23548,23547,23546 ,11820,11819,11818 ,0,0,0}, - {23594,23596,23551 ,11866,11868,11823 ,0,0,0}, {23549,23550,23547 ,11821,11822,11819 ,0,0,0}, - {23596,23597,23552 ,11868,11869,11824 ,0,0,0}, {23594,23551,23550 ,11866,11823,11822 ,0,0,0}, - {23553,23597,23598 ,11825,11869,11870 ,0,0,0}, {23596,23552,23551 ,11868,11824,11823 ,0,0,0}, - {23554,23598,23599 ,11826,11870,11871 ,0,0,0}, {23552,23597,23553 ,11824,11869,11825 ,0,0,0}, - {23512,23599,23600 ,11784,11871,11872 ,0,0,0}, {23553,23598,23554 ,11825,11870,11826 ,0,0,0}, - {23513,23600,23556 ,11785,11872,11828 ,0,0,0}, {23599,23512,23554 ,11871,11784,11826 ,0,0,0}, - {23601,23602,23557 ,11873,11874,11829 ,0,0,0}, {23600,23513,23512 ,11872,11785,11784 ,0,0,0}, - {23557,23602,23558 ,11829,11874,11830 ,0,0,0}, {23556,23555,23513 ,11828,11827,11785 ,0,0,0}, - {23602,23603,23559 ,11874,11875,11831 ,0,0,0}, {23557,23558,23555 ,11829,11830,11827 ,0,0,0}, - {23560,23603,23604 ,11832,11875,11876 ,0,0,0}, {23602,23559,23558 ,11874,11831,11830 ,0,0,0}, - {23474,23604,23605 ,11746,11876,11877 ,0,0,0}, {23559,23603,23560 ,11831,11875,11832 ,0,0,0}, - {23475,23605,23562 ,11747,11877,11834 ,0,0,0}, {23604,23474,23560 ,11876,11746,11832 ,0,0,0}, - {23606,23607,23563 ,11878,11879,11835 ,0,0,0}, {23605,23475,23474 ,11877,11747,11746 ,0,0,0}, - {23563,23607,23564 ,11835,11879,11836 ,0,0,0}, {23562,23561,23475 ,11834,11833,11747 ,0,0,0}, - {23607,23608,23565 ,11879,11880,11837 ,0,0,0}, {23563,23564,23561 ,11835,11836,11833 ,0,0,0}, - {23566,23608,23609 ,11838,11880,11881 ,0,0,0}, {23607,23565,23564 ,11879,11837,11836 ,0,0,0}, - {23481,23609,23610 ,11753,11881,11882 ,0,0,0}, {23565,23608,23566 ,11837,11880,11838 ,0,0,0}, - {23482,23610,23568 ,11754,11882,11840 ,0,0,0}, {23609,23481,23566 ,11881,11753,11838 ,0,0,0}, - {23611,23612,23569 ,11883,11884,11841 ,0,0,0}, {23610,23482,23481 ,11882,11754,11753 ,0,0,0}, - {23569,23612,23570 ,11841,11884,11842 ,0,0,0}, {23568,23567,23482 ,11840,11839,11754 ,0,0,0}, - {23612,23613,23571 ,11884,11885,11843 ,0,0,0}, {23569,23570,23567 ,11841,11842,11839 ,0,0,0}, - {23572,23613,23614 ,11844,11885,11886 ,0,0,0}, {23612,23571,23570 ,11884,11843,11842 ,0,0,0}, - {23573,23614,23615 ,11845,11886,11887 ,0,0,0}, {23571,23613,23572 ,11843,11885,11844 ,0,0,0}, - {23529,23615,23616 ,11801,11887,11888 ,0,0,0}, {23572,23614,23573 ,11844,11886,11845 ,0,0,0}, - {23530,23616,23617 ,11802,11888,11889 ,0,0,0}, {23573,23615,23529 ,11845,11887,11801 ,0,0,0}, - {23574,23617,23576 ,11846,11889,11848 ,0,0,0}, {23616,23530,23529 ,11888,11802,11801 ,0,0,0}, - {23618,23578,23577 ,11890,11850,11849 ,0,0,0}, {23617,23574,23530 ,11889,11846,11802 ,0,0,0}, - {23619,23620,23618 ,11891,11892,11890 ,0,0,0}, {23576,23575,23574 ,11848,11847,11846 ,0,0,0}, - {23618,23620,23579 ,11890,11892,11851 ,0,0,0}, {23577,23578,23575 ,11849,11850,11847 ,0,0,0}, - {23620,23621,23580 ,11892,11893,11852 ,0,0,0}, {23618,23579,23578 ,11890,11851,11850 ,0,0,0}, - {23621,23622,23581 ,11893,11894,11853 ,0,0,0}, {23620,23580,23579 ,11892,11852,11851 ,0,0,0}, - {23622,23623,23582 ,11894,11895,11854 ,0,0,0}, {23621,23581,23580 ,11893,11853,11852 ,0,0,0}, - {23366,23623,23367 ,11638,11895,11639 ,0,0,0}, {23622,23582,23581 ,11894,11854,11853 ,0,0,0}, - {23367,23624,23365 ,11639,11896,11637 ,0,0,0}, {23366,23582,23623 ,11638,11854,11895 ,0,0,0}, - {23625,23583,23373 ,11897,11855,11645 ,0,0,0}, {23625,23626,23583 ,11897,11898,11855 ,0,0,0}, - {23369,23497,23539 ,11641,11769,11811 ,0,0,0}, {23624,23373,23497 ,11896,11645,11769 ,0,0,0}, - {23584,23583,23626 ,11856,11855,11898 ,0,0,0}, {23274,23588,23268 ,11546,11860,11540 ,0,0,0}, - {23627,23273,23272 ,11899,11545,11544 ,0,0,0}, {23628,23586,23588 ,11900,11858,11860 ,0,0,0}, - {23588,23586,23543 ,11860,11858,11815 ,0,0,0}, {23588,23499,23628 ,11860,11771,11900 ,0,0,0}, - {23629,23587,23586 ,11901,11859,11858 ,0,0,0}, {23586,23628,23629 ,11858,11900,11901 ,0,0,0}, - {23630,23589,23587 ,11902,11861,11859 ,0,0,0}, {23587,23629,23630 ,11859,11901,11902 ,0,0,0}, - {23631,23590,23589 ,11903,11862,11861 ,0,0,0}, {23589,23630,23631 ,11861,11902,11903 ,0,0,0}, - {23632,23591,23590 ,11904,11863,11862 ,0,0,0}, {23590,23631,23632 ,11862,11903,11904 ,0,0,0}, - {23633,23592,23591 ,11905,11864,11863 ,0,0,0}, {23591,23632,23633 ,11863,11904,11905 ,0,0,0}, - {23634,23593,23592 ,11906,11865,11864 ,0,0,0}, {23592,23633,23634 ,11864,11905,11906 ,0,0,0}, - {23635,23548,23593 ,11907,11820,11865 ,0,0,0}, {23593,23634,23635 ,11865,11906,11907 ,0,0,0}, - {23636,23549,23548 ,11908,11821,11820 ,0,0,0}, {23548,23635,23636 ,11820,11907,11908 ,0,0,0}, - {23637,23594,23549 ,11909,11866,11821 ,0,0,0}, {23636,23637,23549 ,11908,11909,11821 ,0,0,0}, - {23638,23639,23640 ,11910,11911,11912 ,0,0,0}, {23637,23595,23594 ,11909,11867,11866 ,0,0,0}, - {23641,23597,23596 ,11913,11869,11868 ,0,0,0}, {23595,23641,23596 ,11867,11913,11868 ,0,0,0}, - {23642,23598,23597 ,11914,11870,11869 ,0,0,0}, {23597,23641,23642 ,11869,11913,11914 ,0,0,0}, - {23643,23599,23598 ,11915,11871,11870 ,0,0,0}, {23598,23642,23643 ,11870,11914,11915 ,0,0,0}, - {23644,23600,23599 ,11916,11872,11871 ,0,0,0}, {23599,23643,23644 ,11871,11915,11916 ,0,0,0}, - {23645,23556,23600 ,11917,11828,11872 ,0,0,0}, {23600,23644,23645 ,11872,11916,11917 ,0,0,0}, - {23646,23557,23556 ,11918,11829,11828 ,0,0,0}, {23645,23646,23556 ,11917,11918,11828 ,0,0,0}, - {23647,23601,23648 ,11919,11873,11920 ,0,0,0}, {23646,23601,23557 ,11918,11873,11829 ,0,0,0}, - {23647,23603,23602 ,11919,11875,11874 ,0,0,0}, {23601,23647,23602 ,11873,11919,11874 ,0,0,0}, - {23649,23604,23603 ,11921,11876,11875 ,0,0,0}, {23603,23647,23649 ,11875,11919,11921 ,0,0,0}, - {23650,23605,23604 ,11922,11877,11876 ,0,0,0}, {23604,23649,23650 ,11876,11921,11922 ,0,0,0}, - {23651,23562,23605 ,11923,11834,11877 ,0,0,0}, {23605,23650,23651 ,11877,11922,11923 ,0,0,0}, - {23652,23563,23562 ,11924,11835,11834 ,0,0,0}, {23651,23652,23562 ,11923,11924,11834 ,0,0,0}, - {23653,23654,23655 ,11925,11926,11927 ,0,0,0}, {23652,23606,23563 ,11924,11878,11835 ,0,0,0}, - {23656,23608,23607 ,11928,11880,11879 ,0,0,0}, {23606,23656,23607 ,11878,11928,11879 ,0,0,0}, - {23657,23609,23608 ,11929,11881,11880 ,0,0,0}, {23608,23656,23657 ,11880,11928,11929 ,0,0,0}, - {23658,23610,23609 ,11930,11882,11881 ,0,0,0}, {23609,23657,23658 ,11881,11929,11930 ,0,0,0}, - {23659,23568,23610 ,11931,11840,11882 ,0,0,0}, {23610,23658,23659 ,11882,11930,11931 ,0,0,0}, - {23660,23569,23568 ,11932,11841,11840 ,0,0,0}, {23659,23660,23568 ,11931,11932,11840 ,0,0,0}, - {23612,23661,23613 ,11884,11933,11885 ,0,0,0}, {23660,23611,23569 ,11932,11883,11841 ,0,0,0}, - {23662,23663,23661 ,11934,11935,11933 ,0,0,0}, {23611,23661,23612 ,11883,11933,11884 ,0,0,0}, - {23663,23614,23613 ,11935,11886,11885 ,0,0,0}, {23613,23661,23663 ,11885,11933,11935 ,0,0,0}, - {23664,23615,23614 ,11936,11887,11886 ,0,0,0}, {23614,23663,23664 ,11886,11935,11936 ,0,0,0}, - {23665,23616,23615 ,11937,11888,11887 ,0,0,0}, {23615,23664,23665 ,11887,11936,11937 ,0,0,0}, - {23666,23617,23616 ,11938,11889,11888 ,0,0,0}, {23616,23665,23666 ,11888,11937,11938 ,0,0,0}, - {23667,23576,23617 ,11939,11848,11889 ,0,0,0}, {23617,23666,23667 ,11889,11938,11939 ,0,0,0}, - {23668,23577,23576 ,11940,11849,11848 ,0,0,0}, {23576,23667,23668 ,11848,11939,11940 ,0,0,0}, - {23669,23618,23577 ,11941,11890,11849 ,0,0,0}, {23668,23669,23577 ,11940,11941,11849 ,0,0,0}, - {23620,23670,23621 ,11892,11942,11893 ,0,0,0}, {23669,23619,23618 ,11941,11891,11890 ,0,0,0}, - {23621,23671,23622 ,11893,11943,11894 ,0,0,0}, {23619,23670,23620 ,11891,11942,11892 ,0,0,0}, - {23622,23672,23623 ,11894,11944,11895 ,0,0,0}, {23670,23671,23621 ,11942,11943,11893 ,0,0,0}, - {23623,23370,23367 ,11895,11642,11639 ,0,0,0}, {23671,23672,23622 ,11943,11944,11894 ,0,0,0}, - {23375,23374,23371 ,11647,11646,11643 ,0,0,0}, {23672,23370,23623 ,11944,11642,11895 ,0,0,0}, - {23371,23624,23367 ,11643,11896,11639 ,0,0,0}, {23497,23373,23583 ,11769,11645,11855 ,0,0,0}, - {23365,23624,23497 ,11637,11896,11769 ,0,0,0}, {23624,23371,23374 ,11896,11643,11646 ,0,0,0}, - {23625,23373,23372 ,11897,11645,11644 ,0,0,0}, {23273,23499,23274 ,11545,11771,11546 ,0,0,0}, - {23627,23280,23278 ,11899,11552,11550 ,0,0,0}, {23628,23499,23673 ,11900,11771,11945 ,0,0,0}, - {23274,23499,23588 ,11546,11771,11860 ,0,0,0}, {23499,23277,23673 ,11771,11549,11945 ,0,0,0}, - {23629,23628,23674 ,11901,11900,11946 ,0,0,0}, {23628,23673,23674 ,11900,11945,11946 ,0,0,0}, - {23630,23629,23675 ,11902,11901,11947 ,0,0,0}, {23629,23674,23675 ,11901,11946,11947 ,0,0,0}, - {23631,23630,23676 ,11903,11902,11948 ,0,0,0}, {23630,23675,23676 ,11902,11947,11948 ,0,0,0}, - {23632,23631,23677 ,11904,11903,11949 ,0,0,0}, {23631,23676,23677 ,11903,11948,11949 ,0,0,0}, - {23633,23632,23678 ,11905,11904,11950 ,0,0,0}, {23632,23677,23678 ,11904,11949,11950 ,0,0,0}, - {23634,23633,23679 ,11906,11905,11951 ,0,0,0}, {23633,23678,23679 ,11905,11950,11951 ,0,0,0}, - {23635,23634,23680 ,11907,11906,11952 ,0,0,0}, {23634,23679,23680 ,11906,11951,11952 ,0,0,0}, - {23636,23635,23681 ,11908,11907,11953 ,0,0,0}, {23635,23680,23681 ,11907,11952,11953 ,0,0,0}, - {23637,23636,23682 ,11909,11908,11954 ,0,0,0}, {23636,23681,23682 ,11908,11953,11954 ,0,0,0}, - {23595,23637,23683 ,11867,11909,11955 ,0,0,0}, {23637,23682,23683 ,11909,11954,11955 ,0,0,0}, - {23641,23595,23638 ,11913,11867,11910 ,0,0,0}, {23683,23638,23595 ,11955,11910,11867 ,0,0,0}, - {23642,23641,23640 ,11914,11913,11912 ,0,0,0}, {23641,23638,23640 ,11913,11910,11912 ,0,0,0}, - {23643,23642,23684 ,11915,11914,11956 ,0,0,0}, {23642,23640,23684 ,11914,11912,11956 ,0,0,0}, - {23644,23643,23685 ,11916,11915,11957 ,0,0,0}, {23643,23684,23685 ,11915,11956,11957 ,0,0,0}, - {23645,23644,23686 ,11917,11916,11958 ,0,0,0}, {23644,23685,23686 ,11916,11957,11958 ,0,0,0}, - {23646,23645,23687 ,11918,11917,11959 ,0,0,0}, {23645,23686,23687 ,11917,11958,11959 ,0,0,0}, - {23601,23646,23688 ,11873,11918,11960 ,0,0,0}, {23646,23687,23688 ,11918,11959,11960 ,0,0,0}, - {23688,23689,23648 ,11960,11961,11920 ,0,0,0}, {23688,23648,23601 ,11960,11920,11873 ,0,0,0}, - {23649,23647,23690 ,11921,11919,11962 ,0,0,0}, {23647,23648,23690 ,11919,11920,11962 ,0,0,0}, - {23650,23649,23691 ,11922,11921,11963 ,0,0,0}, {23649,23690,23691 ,11921,11962,11963 ,0,0,0}, - {23651,23650,23692 ,11923,11922,11964 ,0,0,0}, {23650,23691,23692 ,11922,11963,11964 ,0,0,0}, - {23652,23651,23693 ,11924,11923,11965 ,0,0,0}, {23651,23692,23693 ,11923,11964,11965 ,0,0,0}, - {23606,23652,23694 ,11878,11924,11966 ,0,0,0}, {23652,23693,23694 ,11924,11965,11966 ,0,0,0}, - {23656,23606,23653 ,11928,11878,11925 ,0,0,0}, {23694,23653,23606 ,11966,11925,11878 ,0,0,0}, - {23657,23656,23655 ,11929,11928,11927 ,0,0,0}, {23656,23653,23655 ,11928,11925,11927 ,0,0,0}, - {23658,23657,23695 ,11930,11929,11967 ,0,0,0}, {23657,23655,23695 ,11929,11927,11967 ,0,0,0}, - {23659,23658,23696 ,11931,11930,11968 ,0,0,0}, {23658,23695,23696 ,11930,11967,11968 ,0,0,0}, - {23660,23659,23697 ,11932,11931,11969 ,0,0,0}, {23659,23696,23697 ,11931,11968,11969 ,0,0,0}, - {23611,23660,23698 ,11883,11932,11970 ,0,0,0}, {23660,23697,23698 ,11932,11969,11970 ,0,0,0}, - {23661,23611,23699 ,11933,11883,11971 ,0,0,0}, {23611,23698,23699 ,11883,11970,11971 ,0,0,0}, - {23662,23699,23700 ,11934,11971,11972 ,0,0,0}, {23699,23662,23661 ,11971,11934,11933 ,0,0,0}, - {23664,23663,23701 ,11936,11935,11973 ,0,0,0}, {23663,23662,23701 ,11935,11934,11973 ,0,0,0}, - {23665,23664,23702 ,11937,11936,11974 ,0,0,0}, {23664,23701,23702 ,11936,11973,11974 ,0,0,0}, - {23666,23665,23703 ,11938,11937,11975 ,0,0,0}, {23665,23702,23703 ,11937,11974,11975 ,0,0,0}, - {23667,23666,23704 ,11939,11938,11976 ,0,0,0}, {23666,23703,23704 ,11938,11975,11976 ,0,0,0}, - {23668,23667,23705 ,11940,11939,11977 ,0,0,0}, {23667,23704,23705 ,11939,11976,11977 ,0,0,0}, - {23669,23668,23706 ,11941,11940,11978 ,0,0,0}, {23668,23705,23706 ,11940,11977,11978 ,0,0,0}, - {23619,23669,23707 ,11891,11941,11979 ,0,0,0}, {23669,23706,23707 ,11941,11978,11979 ,0,0,0}, - {23670,23619,23708 ,11942,11891,11980 ,0,0,0}, {23619,23707,23708 ,11891,11979,11980 ,0,0,0}, - {23671,23670,23709 ,11943,11942,11981 ,0,0,0}, {23670,23708,23709 ,11942,11980,11981 ,0,0,0}, - {23672,23671,23710 ,11944,11943,11982 ,0,0,0}, {23671,23709,23710 ,11943,11981,11982 ,0,0,0}, - {23370,23672,23711 ,11642,11944,11983 ,0,0,0}, {23672,23710,23711 ,11944,11982,11983 ,0,0,0}, - {23712,23371,23370 ,11984,11643,11642 ,0,0,0}, {23712,23370,23711 ,11984,11642,11983 ,0,0,0}, - {23624,23374,23373 ,11896,11646,11645 ,0,0,0}, {23712,23375,23371 ,11984,11647,11643 ,0,0,0}, - {23372,23374,23377 ,11644,11646,11649 ,0,0,0}, {23278,23273,23627 ,11550,11545,11899 ,0,0,0}, - {23279,23276,23278 ,11551,11548,11550 ,0,0,0}, {23276,23713,23277 ,11548,11985,11549 ,0,0,0}, - {23277,23713,23673 ,11549,11985,11945 ,0,0,0}, {23713,23714,23673 ,11985,11986,11945 ,0,0,0}, - {23673,23714,23674 ,11945,11986,11946 ,0,0,0}, {23714,23715,23674 ,11986,11987,11946 ,0,0,0}, - {23674,23715,23675 ,11946,11987,11947 ,0,0,0}, {23715,23716,23675 ,11987,11988,11947 ,0,0,0}, - {23675,23716,23676 ,11947,11988,11948 ,0,0,0}, {23716,23717,23676 ,11988,11989,11948 ,0,0,0}, - {23676,23717,23677 ,11948,11989,11949 ,0,0,0}, {23717,23718,23677 ,11989,11990,11949 ,0,0,0}, - {23677,23718,23678 ,11949,11990,11950 ,0,0,0}, {23718,23719,23678 ,11990,11991,11950 ,0,0,0}, - {23678,23719,23679 ,11950,11991,11951 ,0,0,0}, {23719,23720,23679 ,11991,11992,11951 ,0,0,0}, - {23720,23721,23680 ,11992,11993,11952 ,0,0,0}, {23720,23680,23679 ,11992,11952,11951 ,0,0,0}, - {23721,23722,23681 ,11993,11994,11953 ,0,0,0}, {23721,23681,23680 ,11993,11953,11952 ,0,0,0}, - {23722,23723,23682 ,11994,11995,11954 ,0,0,0}, {23722,23682,23681 ,11994,11954,11953 ,0,0,0}, - {23723,23724,23683 ,11995,11996,11955 ,0,0,0}, {23723,23683,23682 ,11995,11955,11954 ,0,0,0}, - {23724,23725,23638 ,11996,11997,11910 ,0,0,0}, {23724,23638,23683 ,11996,11910,11955 ,0,0,0}, - {23639,23638,23725 ,11911,11910,11997 ,0,0,0}, {23639,23726,23640 ,11911,11998,11912 ,0,0,0}, - {23640,23726,23684 ,11912,11998,11956 ,0,0,0}, {23726,23727,23684 ,11998,11999,11956 ,0,0,0}, - {23684,23727,23685 ,11956,11999,11957 ,0,0,0}, {23727,23728,23685 ,11999,12000,11957 ,0,0,0}, - {23728,23729,23686 ,12000,12001,11958 ,0,0,0}, {23728,23686,23685 ,12000,11958,11957 ,0,0,0}, - {23729,23730,23687 ,12001,12002,11959 ,0,0,0}, {23729,23687,23686 ,12001,11959,11958 ,0,0,0}, - {23730,23689,23688 ,12002,11961,11960 ,0,0,0}, {23730,23688,23687 ,12002,11960,11959 ,0,0,0}, - {23689,23731,23648 ,11961,12003,11920 ,0,0,0}, {23731,23732,23648 ,12003,12004,11920 ,0,0,0}, - {23648,23732,23690 ,11920,12004,11962 ,0,0,0}, {23732,23733,23690 ,12004,12005,11962 ,0,0,0}, - {23690,23733,23691 ,11962,12005,11963 ,0,0,0}, {23733,23734,23691 ,12005,12006,11963 ,0,0,0}, - {23734,23735,23692 ,12006,12007,11964 ,0,0,0}, {23734,23692,23691 ,12006,11964,11963 ,0,0,0}, - {23735,23736,23693 ,12007,12008,11965 ,0,0,0}, {23735,23693,23692 ,12007,11965,11964 ,0,0,0}, - {23736,23737,23694 ,12008,12009,11966 ,0,0,0}, {23736,23694,23693 ,12008,11966,11965 ,0,0,0}, - {23737,23738,23653 ,12009,12010,11925 ,0,0,0}, {23737,23653,23694 ,12009,11925,11966 ,0,0,0}, - {23654,23653,23738 ,11926,11925,12010 ,0,0,0}, {23654,23739,23655 ,11926,12011,11927 ,0,0,0}, - {23655,23739,23695 ,11927,12011,11967 ,0,0,0}, {23739,23740,23695 ,12011,12012,11967 ,0,0,0}, - {23740,23741,23696 ,12012,12013,11968 ,0,0,0}, {23740,23696,23695 ,12012,11968,11967 ,0,0,0}, - {23741,23742,23697 ,12013,12014,11969 ,0,0,0}, {23741,23697,23696 ,12013,11969,11968 ,0,0,0}, - {23742,23743,23698 ,12014,12015,11970 ,0,0,0}, {23742,23698,23697 ,12014,11970,11969 ,0,0,0}, - {23743,23700,23699 ,12015,11972,11971 ,0,0,0}, {23743,23699,23698 ,12015,11971,11970 ,0,0,0}, - {23700,23744,23662 ,11972,12016,11934 ,0,0,0}, {23744,23745,23662 ,12016,12017,11934 ,0,0,0}, - {23662,23745,23701 ,11934,12017,11973 ,0,0,0}, {23745,23746,23701 ,12017,12018,11973 ,0,0,0}, - {23701,23746,23702 ,11973,12018,11974 ,0,0,0}, {23746,23747,23702 ,12018,12019,11974 ,0,0,0}, - {23702,23747,23703 ,11974,12019,11975 ,0,0,0}, {23747,23748,23703 ,12019,12020,11975 ,0,0,0}, - {23748,23749,23704 ,12020,12021,11976 ,0,0,0}, {23748,23704,23703 ,12020,11976,11975 ,0,0,0}, - {23749,23750,23705 ,12021,12022,11977 ,0,0,0}, {23749,23705,23704 ,12021,11977,11976 ,0,0,0}, - {23750,23751,23706 ,12022,12023,11978 ,0,0,0}, {23750,23706,23705 ,12022,11978,11977 ,0,0,0}, - {23751,23752,23707 ,12023,12024,11979 ,0,0,0}, {23751,23707,23706 ,12023,11979,11978 ,0,0,0}, - {23752,23753,23708 ,12024,12025,11980 ,0,0,0}, {23752,23708,23707 ,12024,11980,11979 ,0,0,0}, - {23753,23754,23709 ,12025,12026,11981 ,0,0,0}, {23753,23709,23708 ,12025,11981,11980 ,0,0,0}, - {23754,23755,23710 ,12026,12027,11982 ,0,0,0}, {23754,23710,23709 ,12026,11982,11981 ,0,0,0}, - {23755,23756,23711 ,12027,12028,11983 ,0,0,0}, {23755,23711,23710 ,12027,11983,11982 ,0,0,0}, - {23756,23757,23712 ,12028,12029,11984 ,0,0,0}, {23756,23712,23711 ,12028,11984,11983 ,0,0,0}, - {23758,23712,23757 ,12030,11984,12029 ,0,0,0}, {23712,23758,23375 ,11984,12030,11647 ,0,0,0}, - {23375,23758,23378 ,11647,12030,11650 ,0,0,0}, {23759,23760,23761 ,12031,12032,12033 ,0,0,0}, - {23762,23763,23764 ,12034,12035,12036 ,0,0,0}, {23765,23766,23767 ,12037,12038,12039 ,0,0,0}, - {23768,23769,23765 ,12040,12041,12037 ,0,0,0}, {23770,23771,23772 ,12042,12043,12044 ,0,0,0}, - {23773,23774,23775 ,12045,12046,12047 ,0,0,0}, {23776,23777,23778 ,12048,12049,12050 ,0,0,0}, - {23779,23780,23773 ,12051,12052,12045 ,0,0,0}, {23781,23782,23783 ,12053,12054,12055 ,0,0,0}, - {23783,23778,23784 ,12055,12050,12056 ,0,0,0}, {23785,23781,23786 ,12057,12053,12058 ,0,0,0}, - {23782,23781,23787 ,12054,12053,12059 ,0,0,0}, {23768,23788,23789 ,12040,12060,12061 ,0,0,0}, - {23785,23790,23781 ,12057,12062,12053 ,0,0,0}, {23791,23792,23793 ,12063,12064,12065 ,0,0,0}, - {23792,23794,23761 ,12064,12066,12033 ,0,0,0}, {23795,23796,23793 ,12067,12068,12065 ,0,0,0}, - {23794,23792,23791 ,12066,12064,12063 ,0,0,0}, {23797,23798,23795 ,12069,12070,12067 ,0,0,0}, - {23793,23796,23791 ,12065,12068,12063 ,0,0,0}, {23799,23800,23763 ,12071,12072,12035 ,0,0,0}, - {23801,23802,23803 ,12073,12074,12075 ,0,0,0}, {23799,23804,23800 ,12071,12076,12072 ,0,0,0}, - {23805,23806,23807 ,12077,12078,12079 ,0,0,0}, {23802,23808,23803 ,12074,12080,12075 ,0,0,0}, - {23809,23810,23811 ,12081,12082,12083 ,0,0,0}, {23805,23807,23812 ,12077,12079,12084 ,0,0,0}, - {23813,23814,23815 ,12085,12086,12087 ,0,0,0}, {23814,23813,23816 ,12086,12085,12088 ,0,0,0}, - {23817,23818,23819 ,12089,12090,12091 ,0,0,0}, {23820,23821,23818 ,12092,12093,12090 ,0,0,0}, - {23822,23823,23824 ,12094,12095,12096 ,0,0,0}, {23817,23819,23825 ,12089,12091,12097 ,0,0,0}, - {23826,23827,23828 ,12098,12099,12100 ,0,0,0}, {23822,23824,23829 ,12094,12096,12101 ,0,0,0}, - {23830,23831,23832 ,12102,12103,12104 ,0,0,0}, {23833,23827,23826 ,12105,12099,12098 ,0,0,0}, - {23834,23835,23836 ,12106,12107,12108 ,0,0,0}, {23836,23832,23834 ,12108,12104,12106 ,0,0,0}, - {23837,23838,23839 ,12109,12110,12111 ,0,0,0}, {23840,23835,23841 ,12112,12107,12113 ,0,0,0}, - {23842,23843,23844 ,12114,12115,12116 ,0,0,0}, {23843,23842,23845 ,12115,12114,12117 ,0,0,0}, - {23846,23847,23848 ,12118,12119,12120 ,0,0,0}, {23844,23847,23849 ,12116,12119,12121 ,0,0,0}, - {23850,23851,23852 ,12122,12123,12124 ,0,0,0}, {23853,23854,23855 ,12125,12126,12127 ,0,0,0}, - {23856,23857,23858 ,12128,12129,12130 ,0,0,0}, {23857,23856,23859 ,12129,12128,12131 ,0,0,0}, - {23860,23861,23862 ,12132,12133,12134 ,0,0,0}, {23863,23864,23860 ,12135,12136,12132 ,0,0,0}, - {23861,23860,23864 ,12133,12132,12136 ,0,0,0}, {23861,23864,23850 ,12133,12136,12122 ,0,0,0}, - {23865,23866,23867 ,12137,12138,12139 ,0,0,0}, {23848,23852,23851 ,12120,12124,12123 ,0,0,0}, - {23868,23853,23855 ,12140,12125,12127 ,0,0,0}, {23854,23869,23855 ,12126,12141,12127 ,0,0,0}, - {23870,23871,23853 ,12142,12143,12125 ,0,0,0}, {23853,23872,23854 ,12125,12144,12126 ,0,0,0}, - {23873,23874,23875 ,12145,12146,12147 ,0,0,0}, {23272,23876,23877 ,12148,12149,12150 ,0,0,0}, - {23877,23878,23627 ,12150,12151,12152 ,0,0,0}, {23878,23280,23627 ,12151,12153,12152 ,0,0,0}, - {23281,23280,23879 ,730,12153,12154 ,0,0,0}, {23867,23847,23865 ,12139,12119,12137 ,0,0,0}, - {23858,23863,23860 ,12130,12135,12132 ,0,0,0}, {23848,23851,23846 ,12120,12123,12118 ,0,0,0}, - {23410,23859,23409 ,12155,12131,12156 ,0,0,0}, {23842,23844,23849 ,12114,12116,12121 ,0,0,0}, - {23847,23846,23849 ,12119,12118,12121 ,0,0,0}, {23837,23845,23838 ,12109,12117,12110 ,0,0,0}, - {23843,23845,23837 ,12115,12117,12109 ,0,0,0}, {23837,23880,23843 ,12109,12157,12115 ,0,0,0}, - {23838,23840,23839 ,12110,12112,12111 ,0,0,0}, {23841,23835,23834 ,12113,12107,12106 ,0,0,0}, - {23840,23841,23839 ,12112,12113,12111 ,0,0,0}, {23830,23832,23836 ,12102,12104,12108 ,0,0,0}, - {23826,23828,23881 ,12098,12100,12158 ,0,0,0}, {23882,23833,23883 ,12159,12105,12160 ,0,0,0}, - {23832,23831,23883 ,12104,12103,12160 ,0,0,0}, {23827,23833,23882 ,12099,12105,12159 ,0,0,0}, - {23831,23882,23883 ,12103,12159,12160 ,0,0,0}, {23881,23828,23829 ,12158,12100,12101 ,0,0,0}, - {23884,23826,23881 ,12161,12098,12158 ,0,0,0}, {23829,23824,23881 ,12101,12096,12158 ,0,0,0}, - {23825,23823,23885 ,12097,12095,12162 ,0,0,0}, {23822,23885,23823 ,12094,12162,12095 ,0,0,0}, - {23886,23825,23885 ,12163,12097,12162 ,0,0,0}, {23821,23819,23818 ,12093,12091,12090 ,0,0,0}, - {23817,23825,23886 ,12089,12097,12163 ,0,0,0}, {23820,23887,23821 ,12092,12164,12093 ,0,0,0}, - {23815,23814,23887 ,12087,12086,12164 ,0,0,0}, {23887,23820,23815 ,12164,12092,12087 ,0,0,0}, - {23816,23888,23811 ,12088,12165,12083 ,0,0,0}, {23889,23890,23891 ,12166,12167,12168 ,0,0,0}, - {23811,23888,23892 ,12083,12165,12169 ,0,0,0}, {23888,23816,23813 ,12165,12088,12085 ,0,0,0}, - {23893,23812,23810 ,12170,12084,12082 ,0,0,0}, {23809,23811,23892 ,12081,12083,12169 ,0,0,0}, - {23812,23893,23805 ,12084,12170,12077 ,0,0,0}, {23893,23810,23809 ,12170,12082,12081 ,0,0,0}, - {23804,23894,23895 ,12076,12171,12172 ,0,0,0}, {23806,23808,23896 ,12078,12080,12173 ,0,0,0}, - {23807,23806,23896 ,12079,12078,12173 ,0,0,0}, {23896,23808,23802 ,12173,12080,12074 ,0,0,0}, - {23897,23898,23899 ,12174,12175,12176 ,0,0,0}, {23894,23801,23803 ,12171,12073,12075 ,0,0,0}, - {23761,23794,23759 ,12033,12066,12031 ,0,0,0}, {23804,23801,23894 ,12076,12073,12171 ,0,0,0}, - {23804,23895,23800 ,12076,12172,12072 ,0,0,0}, {23763,23762,23799 ,12035,12034,12071 ,0,0,0}, - {23798,23797,23764 ,12070,12069,12036 ,0,0,0}, {23764,23797,23762 ,12036,12069,12034 ,0,0,0}, - {23900,23797,23795 ,12177,12069,12067 ,0,0,0}, {23798,23796,23795 ,12070,12068,12067 ,0,0,0}, - {23760,23789,23788 ,12032,12061,12060 ,0,0,0}, {23759,23789,23760 ,12031,12061,12032 ,0,0,0}, - {23769,23766,23765 ,12041,12038,12037 ,0,0,0}, {23768,23765,23788 ,12040,12037,12060 ,0,0,0}, - {23769,23901,23766 ,12041,12178,12038 ,0,0,0}, {23772,23902,23776 ,12044,12179,12048 ,0,0,0}, - {23903,23904,23901 ,12180,12181,12178 ,0,0,0}, {23770,23905,23906 ,12042,12182,12183 ,0,0,0}, - {23904,23907,23908 ,12181,12184,12185 ,0,0,0}, {23903,23907,23904 ,12180,12184,12181 ,0,0,0}, - {23904,23766,23901 ,12181,12038,12178 ,0,0,0}, {23908,23909,23910 ,12185,12186,12187 ,0,0,0}, - {23909,23908,23911 ,12186,12185,12188 ,0,0,0}, {23907,23911,23908 ,12184,12188,12185 ,0,0,0}, - {23906,23905,23910 ,12183,12182,12187 ,0,0,0}, {23912,23772,23771 ,12189,12044,12043 ,0,0,0}, - {23908,23910,23905 ,12185,12187,12182 ,0,0,0}, {23777,23776,23913 ,12049,12048,12190 ,0,0,0}, - {23908,23914,23904 ,12185,12191,12181 ,0,0,0}, {23915,23788,23765 ,12192,12060,12037 ,0,0,0}, - {23904,23775,23766 ,12181,12047,12038 ,0,0,0}, {23916,23760,23788 ,12193,12032,12060 ,0,0,0}, - {23767,23766,23775 ,12039,12038,12047 ,0,0,0}, {23917,23761,23760 ,12194,12033,12032 ,0,0,0}, - {23915,23765,23767 ,12192,12037,12039 ,0,0,0}, {23918,23792,23761 ,12195,12064,12033 ,0,0,0}, - {23916,23788,23915 ,12193,12060,12192 ,0,0,0}, {23919,23793,23792 ,12196,12065,12064 ,0,0,0}, - {23917,23760,23916 ,12194,12032,12193 ,0,0,0}, {23920,23795,23793 ,12197,12067,12065 ,0,0,0}, - {23761,23917,23918 ,12033,12194,12195 ,0,0,0}, {23921,23922,23923 ,12198,12199,12200 ,0,0,0}, - {23792,23918,23919 ,12064,12195,12196 ,0,0,0}, {23923,23762,23797 ,12200,12034,12069 ,0,0,0}, - {23793,23919,23920 ,12065,12196,12197 ,0,0,0}, {23924,23799,23762 ,12201,12071,12034 ,0,0,0}, - {23795,23920,23900 ,12067,12197,12177 ,0,0,0}, {23925,23804,23799 ,12202,12076,12071 ,0,0,0}, - {23797,23900,23923 ,12069,12177,12200 ,0,0,0}, {23926,23801,23804 ,12203,12073,12076 ,0,0,0}, - {23762,23923,23924 ,12034,12200,12201 ,0,0,0}, {23927,23802,23801 ,12204,12074,12073 ,0,0,0}, - {23925,23799,23924 ,12202,12071,12201 ,0,0,0}, {23928,23896,23802 ,12205,12173,12074 ,0,0,0}, - {23926,23804,23925 ,12203,12076,12202 ,0,0,0}, {23929,23807,23896 ,12206,12079,12173 ,0,0,0}, - {23801,23926,23927 ,12073,12203,12204 ,0,0,0}, {23898,23812,23807 ,12175,12084,12079 ,0,0,0}, - {23802,23927,23928 ,12074,12204,12205 ,0,0,0}, {23930,23810,23812 ,12207,12082,12084 ,0,0,0}, - {23896,23928,23929 ,12173,12205,12206 ,0,0,0}, {23931,23811,23810 ,12208,12083,12082 ,0,0,0}, - {23807,23929,23898 ,12079,12206,12175 ,0,0,0}, {23932,23816,23811 ,12209,12088,12083 ,0,0,0}, - {23930,23812,23898 ,12207,12084,12175 ,0,0,0}, {23933,23814,23816 ,12210,12086,12088 ,0,0,0}, - {23931,23810,23930 ,12208,12082,12207 ,0,0,0}, {23934,23887,23814 ,12211,12164,12086 ,0,0,0}, - {23811,23931,23932 ,12083,12208,12209 ,0,0,0}, {23821,23887,23889 ,12093,12164,12166 ,0,0,0}, - {23816,23932,23933 ,12088,12209,12210 ,0,0,0}, {23935,23819,23821 ,12212,12091,12093 ,0,0,0}, - {23814,23933,23934 ,12086,12210,12211 ,0,0,0}, {23936,23825,23819 ,12213,12097,12091 ,0,0,0}, - {23887,23934,23889 ,12164,12211,12166 ,0,0,0}, {23937,23823,23825 ,12214,12095,12097 ,0,0,0}, - {23935,23821,23889 ,12212,12093,12166 ,0,0,0}, {23938,23824,23823 ,12215,12096,12095 ,0,0,0}, - {23936,23819,23935 ,12213,12091,12212 ,0,0,0}, {23939,23881,23824 ,12216,12158,12096 ,0,0,0}, - {23825,23936,23937 ,12097,12213,12214 ,0,0,0}, {23940,23941,23942 ,12217,12218,12219 ,0,0,0}, - {23823,23937,23938 ,12095,12214,12215 ,0,0,0}, {23943,23833,23826 ,12220,12105,12098 ,0,0,0}, - {23824,23938,23939 ,12096,12215,12216 ,0,0,0}, {23944,23883,23833 ,12221,12160,12105 ,0,0,0}, - {23881,23939,23884 ,12158,12216,12161 ,0,0,0}, {23945,23832,23883 ,12222,12104,12160 ,0,0,0}, - {23826,23884,23943 ,12098,12161,12220 ,0,0,0}, {23946,23834,23832 ,12223,12106,12104 ,0,0,0}, - {23944,23833,23943 ,12221,12105,12220 ,0,0,0}, {23947,23841,23834 ,12224,12113,12106 ,0,0,0}, - {23945,23883,23944 ,12222,12160,12221 ,0,0,0}, {23948,23839,23841 ,12225,12111,12113 ,0,0,0}, - {23946,23832,23945 ,12223,12104,12222 ,0,0,0}, {23949,23837,23839 ,12226,12109,12111 ,0,0,0}, - {23834,23946,23947 ,12106,12223,12224 ,0,0,0}, {23843,23950,23844 ,12115,12227,12116 ,0,0,0}, - {23841,23947,23948 ,12113,12224,12225 ,0,0,0}, {23865,23951,23866 ,12137,12228,12138 ,0,0,0}, - {23839,23948,23949 ,12111,12225,12226 ,0,0,0}, {23865,23847,23844 ,12137,12119,12116 ,0,0,0}, - {23837,23949,23880 ,12109,12226,12157 ,0,0,0}, {23867,23848,23847 ,12139,12120,12119 ,0,0,0}, - {23843,23880,23950 ,12115,12157,12227 ,0,0,0}, {23852,23848,23952 ,12124,12120,12229 ,0,0,0}, - {23865,23844,23950 ,12137,12116,12227 ,0,0,0}, {23869,23862,23861 ,12141,12134,12133 ,0,0,0}, - {23953,23860,23862 ,12230,12132,12134 ,0,0,0}, {23852,23861,23850 ,12124,12133,12122 ,0,0,0}, - {23952,23848,23867 ,12229,12120,12139 ,0,0,0}, {23869,23854,23862 ,12141,12126,12134 ,0,0,0}, - {23861,23852,23869 ,12133,12124,12141 ,0,0,0}, {23858,23954,23856 ,12130,12231,12128 ,0,0,0}, - {23856,23409,23859 ,12128,12156,12131 ,0,0,0}, {23863,23858,23857 ,12135,12130,12129 ,0,0,0}, - {23858,23953,23954 ,12130,12230,12231 ,0,0,0}, {23411,23409,23856 ,12232,12156,12128 ,0,0,0}, - {23905,23914,23908 ,12182,12191,12185 ,0,0,0}, {23771,23770,23906 ,12043,12042,12183 ,0,0,0}, - {23955,23783,23782 ,12233,12055,12054 ,0,0,0}, {23914,23775,23904 ,12191,12047,12181 ,0,0,0}, - {23914,23905,23956 ,12191,12182,12234 ,0,0,0}, {23767,23774,23957 ,12039,12046,12235 ,0,0,0}, - {23773,23775,23914 ,12045,12047,12191 ,0,0,0}, {23915,23957,23958 ,12192,12235,12236 ,0,0,0}, - {23774,23767,23775 ,12046,12039,12047 ,0,0,0}, {23916,23958,23959 ,12193,12236,12237 ,0,0,0}, - {23957,23915,23767 ,12235,12192,12039 ,0,0,0}, {23917,23959,23960 ,12194,12237,12238 ,0,0,0}, - {23958,23916,23915 ,12236,12193,12192 ,0,0,0}, {23918,23960,23961 ,12195,12238,12239 ,0,0,0}, - {23959,23917,23916 ,12237,12194,12193 ,0,0,0}, {23919,23961,23962 ,12196,12239,12240 ,0,0,0}, - {23960,23918,23917 ,12238,12195,12194 ,0,0,0}, {23920,23962,23963 ,12197,12240,12241 ,0,0,0}, - {23961,23919,23918 ,12239,12196,12195 ,0,0,0}, {23900,23963,23921 ,12177,12241,12198 ,0,0,0}, - {23920,23919,23962 ,12197,12196,12240 ,0,0,0}, {23964,23965,23966 ,12242,12243,12244 ,0,0,0}, - {23900,23920,23963 ,12177,12197,12241 ,0,0,0}, {23924,23922,23964 ,12201,12199,12242 ,0,0,0}, - {23923,23900,23921 ,12200,12177,12198 ,0,0,0}, {23925,23964,23967 ,12202,12242,12245 ,0,0,0}, - {23924,23923,23922 ,12201,12200,12199 ,0,0,0}, {23926,23967,23968 ,12203,12245,12246 ,0,0,0}, - {23964,23925,23924 ,12242,12202,12201 ,0,0,0}, {23927,23968,23969 ,12204,12246,12247 ,0,0,0}, - {23967,23926,23925 ,12245,12203,12202 ,0,0,0}, {23928,23969,23970 ,12205,12247,12248 ,0,0,0}, - {23968,23927,23926 ,12246,12204,12203 ,0,0,0}, {23929,23970,23899 ,12206,12248,12176 ,0,0,0}, - {23928,23927,23969 ,12205,12204,12247 ,0,0,0}, {23971,23972,23973 ,12249,12250,12251 ,0,0,0}, - {23929,23928,23970 ,12206,12205,12248 ,0,0,0}, {23930,23897,23974 ,12207,12174,12252 ,0,0,0}, - {23898,23929,23899 ,12175,12206,12176 ,0,0,0}, {23931,23974,23975 ,12208,12252,12253 ,0,0,0}, - {23897,23930,23898 ,12174,12207,12175 ,0,0,0}, {23932,23975,23976 ,12209,12253,12254 ,0,0,0}, - {23974,23931,23930 ,12252,12208,12207 ,0,0,0}, {23933,23976,23977 ,12210,12254,12255 ,0,0,0}, - {23975,23932,23931 ,12253,12209,12208 ,0,0,0}, {23934,23977,23890 ,12211,12255,12167 ,0,0,0}, - {23933,23932,23976 ,12210,12209,12254 ,0,0,0}, {23978,23979,23980 ,12256,12257,12258 ,0,0,0}, - {23934,23933,23977 ,12211,12210,12255 ,0,0,0}, {23935,23891,23981 ,12212,12168,12259 ,0,0,0}, - {23889,23934,23890 ,12166,12211,12167 ,0,0,0}, {23936,23981,23982 ,12213,12259,12260 ,0,0,0}, - {23935,23889,23891 ,12212,12166,12168 ,0,0,0}, {23937,23982,23983 ,12214,12260,12261 ,0,0,0}, - {23981,23936,23935 ,12259,12213,12212 ,0,0,0}, {23938,23983,23984 ,12215,12261,12262 ,0,0,0}, - {23982,23937,23936 ,12260,12214,12213 ,0,0,0}, {23939,23984,23985 ,12216,12262,12263 ,0,0,0}, - {23983,23938,23937 ,12261,12215,12214 ,0,0,0}, {23884,23985,23986 ,12161,12263,12264 ,0,0,0}, - {23939,23938,23984 ,12216,12215,12262 ,0,0,0}, {23943,23986,23941 ,12220,12264,12218 ,0,0,0}, - {23884,23939,23985 ,12161,12216,12263 ,0,0,0}, {23944,23941,23987 ,12221,12218,12265 ,0,0,0}, - {23943,23884,23986 ,12220,12161,12264 ,0,0,0}, {23945,23987,23988 ,12222,12265,12266 ,0,0,0}, - {23941,23944,23943 ,12218,12221,12220 ,0,0,0}, {23946,23988,23989 ,12223,12266,12267 ,0,0,0}, - {23987,23945,23944 ,12265,12222,12221 ,0,0,0}, {23947,23989,23990 ,12224,12267,12268 ,0,0,0}, - {23988,23946,23945 ,12266,12223,12222 ,0,0,0}, {23948,23990,23991 ,12225,12268,12269 ,0,0,0}, - {23989,23947,23946 ,12267,12224,12223 ,0,0,0}, {23949,23991,23992 ,12226,12269,12270 ,0,0,0}, - {23990,23948,23947 ,12268,12225,12224 ,0,0,0}, {23880,23992,23993 ,12157,12270,12271 ,0,0,0}, - {23991,23949,23948 ,12269,12226,12225 ,0,0,0}, {23950,23993,23951 ,12227,12271,12228 ,0,0,0}, - {23880,23949,23992 ,12157,12226,12270 ,0,0,0}, {23994,23867,23866 ,12272,12139,12138 ,0,0,0}, - {23950,23880,23993 ,12227,12157,12271 ,0,0,0}, {23876,23995,23871 ,12149,12273,12143 ,0,0,0}, - {23865,23950,23951 ,12137,12227,12228 ,0,0,0}, {23994,23855,23952 ,12272,12127,12229 ,0,0,0}, - {23854,23996,23862 ,12126,12274,12134 ,0,0,0}, {23952,23869,23852 ,12229,12141,12124 ,0,0,0}, - {23994,23952,23867 ,12272,12229,12139 ,0,0,0}, {23997,23954,23953 ,12275,12231,12230 ,0,0,0}, - {23952,23855,23869 ,12229,12127,12141 ,0,0,0}, {23412,23954,23997 ,12276,12231,12275 ,0,0,0}, - {23954,23411,23856 ,12231,12232,12128 ,0,0,0}, {23860,23953,23858 ,12132,12230,12130 ,0,0,0}, - {23996,23997,23953 ,12274,12275,12230 ,0,0,0}, {23412,23411,23954 ,12276,12232,12231 ,0,0,0}, - {23956,23905,23770 ,12234,12182,12042 ,0,0,0}, {23902,23772,23912 ,12179,12044,12189 ,0,0,0}, - {23998,23774,23780 ,12277,12046,12052 ,0,0,0}, {23956,23773,23914 ,12234,12045,12191 ,0,0,0}, - {23956,23770,23999 ,12234,12042,12278 ,0,0,0}, {24000,24001,24002 ,12279,12280,12281 ,0,0,0}, - {23779,23773,23956 ,12051,12045,12234 ,0,0,0}, {23998,24000,23957 ,12277,12279,12235 ,0,0,0}, - {23780,23774,23773 ,12052,12046,12045 ,0,0,0}, {24000,24003,23958 ,12279,12282,12236 ,0,0,0}, - {23998,23957,23774 ,12277,12235,12046 ,0,0,0}, {24003,24004,23959 ,12282,12283,12237 ,0,0,0}, - {24000,23958,23957 ,12279,12236,12235 ,0,0,0}, {24004,24005,23960 ,12283,12284,12238 ,0,0,0}, - {24003,23959,23958 ,12282,12237,12236 ,0,0,0}, {24005,24006,23961 ,12284,12285,12239 ,0,0,0}, - {24004,23960,23959 ,12283,12238,12237 ,0,0,0}, {24006,24007,23962 ,12285,12286,12240 ,0,0,0}, - {24005,23961,23960 ,12284,12239,12238 ,0,0,0}, {24007,24008,23963 ,12286,12287,12241 ,0,0,0}, - {24006,23962,23961 ,12285,12240,12239 ,0,0,0}, {24008,24009,23921 ,12287,12288,12198 ,0,0,0}, - {24007,23963,23962 ,12286,12241,12240 ,0,0,0}, {24009,23965,23922 ,12288,12243,12199 ,0,0,0}, - {23921,23963,24008 ,12198,12241,12287 ,0,0,0}, {24010,24011,24012 ,12289,12290,12291 ,0,0,0}, - {23922,23921,24009 ,12199,12198,12288 ,0,0,0}, {23966,24010,23967 ,12244,12289,12245 ,0,0,0}, - {23965,23964,23922 ,12243,12242,12199 ,0,0,0}, {24010,24013,23968 ,12289,12292,12246 ,0,0,0}, - {23966,23967,23964 ,12244,12245,12242 ,0,0,0}, {24013,24014,23969 ,12292,12293,12247 ,0,0,0}, - {24010,23968,23967 ,12289,12246,12245 ,0,0,0}, {24014,24015,23970 ,12293,12294,12248 ,0,0,0}, - {24013,23969,23968 ,12292,12247,12246 ,0,0,0}, {24015,24016,23899 ,12294,12295,12176 ,0,0,0}, - {24014,23970,23969 ,12293,12248,12247 ,0,0,0}, {23897,24016,24017 ,12174,12295,12296 ,0,0,0}, - {23899,23970,24015 ,12176,12248,12294 ,0,0,0}, {24017,23971,23974 ,12296,12249,12252 ,0,0,0}, - {24016,23897,23899 ,12295,12174,12176 ,0,0,0}, {23971,24018,23975 ,12249,12297,12253 ,0,0,0}, - {24017,23974,23897 ,12296,12252,12174 ,0,0,0}, {24018,24019,23976 ,12297,12298,12254 ,0,0,0}, - {23971,23975,23974 ,12249,12253,12252 ,0,0,0}, {24019,24020,23977 ,12298,12299,12255 ,0,0,0}, - {24018,23976,23975 ,12297,12254,12253 ,0,0,0}, {24020,24021,23890 ,12299,12300,12167 ,0,0,0}, - {24019,23977,23976 ,12298,12255,12254 ,0,0,0}, {24021,24022,23891 ,12300,12301,12168 ,0,0,0}, - {23890,23977,24020 ,12167,12255,12299 ,0,0,0}, {24022,23978,23981 ,12301,12256,12259 ,0,0,0}, - {23891,23890,24021 ,12168,12167,12300 ,0,0,0}, {23978,24023,23982 ,12256,12302,12260 ,0,0,0}, - {24022,23981,23891 ,12301,12259,12168 ,0,0,0}, {24023,24024,23983 ,12302,12303,12261 ,0,0,0}, - {23978,23982,23981 ,12256,12260,12259 ,0,0,0}, {24024,24025,23984 ,12303,12304,12262 ,0,0,0}, - {24023,23983,23982 ,12302,12261,12260 ,0,0,0}, {24025,24026,23985 ,12304,12305,12263 ,0,0,0}, - {24024,23984,23983 ,12303,12262,12261 ,0,0,0}, {24026,23942,23986 ,12305,12219,12264 ,0,0,0}, - {23985,23984,24025 ,12263,12262,12304 ,0,0,0}, {24027,24028,24029 ,12306,12307,12308 ,0,0,0}, - {23986,23985,24026 ,12264,12263,12305 ,0,0,0}, {23940,24027,23987 ,12217,12306,12265 ,0,0,0}, - {23942,23941,23986 ,12219,12218,12264 ,0,0,0}, {24027,24030,23988 ,12306,12309,12266 ,0,0,0}, - {23940,23987,23941 ,12217,12265,12218 ,0,0,0}, {24030,24031,23989 ,12309,12310,12267 ,0,0,0}, - {24027,23988,23987 ,12306,12266,12265 ,0,0,0}, {24031,24032,23990 ,12310,12311,12268 ,0,0,0}, - {24030,23989,23988 ,12309,12267,12266 ,0,0,0}, {24032,24033,23991 ,12311,12312,12269 ,0,0,0}, - {24031,23990,23989 ,12310,12268,12267 ,0,0,0}, {24033,24034,23992 ,12312,12313,12270 ,0,0,0}, - {24032,23991,23990 ,12311,12269,12268 ,0,0,0}, {24034,24035,23993 ,12313,12314,12271 ,0,0,0}, - {24033,23992,23991 ,12312,12270,12269 ,0,0,0}, {24035,24036,23951 ,12314,12315,12228 ,0,0,0}, - {24034,23993,23992 ,12313,12271,12270 ,0,0,0}, {24036,24037,23866 ,12315,12316,12138 ,0,0,0}, - {24035,23951,23993 ,12314,12228,12271 ,0,0,0}, {24037,23868,23994 ,12316,12140,12272 ,0,0,0}, - {23866,23951,24036 ,12138,12228,12315 ,0,0,0}, {24038,23408,23270 ,12317,12318,12319 ,0,0,0}, - {24037,23994,23866 ,12316,12272,12138 ,0,0,0}, {23870,23853,23868 ,12142,12125,12140 ,0,0,0}, - {23994,23868,23855 ,12272,12140,12127 ,0,0,0}, {23403,23997,24038 ,12320,12275,12317 ,0,0,0}, - {23403,23414,23997 ,12320,12321,12275 ,0,0,0}, {23862,23996,23953 ,12134,12274,12230 ,0,0,0}, - {23872,24038,23996 ,12144,12317,12274 ,0,0,0}, {23412,23997,23414 ,12276,12275,12321 ,0,0,0}, - {23772,23999,23770 ,12044,12278,12042 ,0,0,0}, {23913,23776,23902 ,12190,12048,12179 ,0,0,0}, - {23779,24039,24040 ,12051,12322,12323 ,0,0,0}, {23999,23779,23956 ,12278,12051,12234 ,0,0,0}, - {24041,23999,23772 ,12324,12278,12044 ,0,0,0}, {23780,24040,24042 ,12052,12323,12325 ,0,0,0}, - {23999,24039,23779 ,12278,12322,12051 ,0,0,0}, {23998,24042,24001 ,12277,12325,12280 ,0,0,0}, - {24040,23780,23779 ,12323,12052,12051 ,0,0,0}, {24043,24003,24002 ,12326,12282,12281 ,0,0,0}, - {24042,23998,23780 ,12325,12277,12052 ,0,0,0}, {24044,24004,24043 ,12327,12283,12326 ,0,0,0}, - {24001,24000,23998 ,12280,12279,12277 ,0,0,0}, {24045,24046,24047 ,12328,12329,12330 ,0,0,0}, - {24002,24003,24000 ,12281,12282,12279 ,0,0,0}, {24044,24045,24005 ,12327,12328,12284 ,0,0,0}, - {24043,24004,24003 ,12326,12283,12282 ,0,0,0}, {24045,24048,24006 ,12328,12331,12285 ,0,0,0}, - {24044,24005,24004 ,12327,12284,12283 ,0,0,0}, {24048,24049,24007 ,12331,12332,12286 ,0,0,0}, - {24045,24006,24005 ,12328,12285,12284 ,0,0,0}, {24049,24050,24008 ,12332,12333,12287 ,0,0,0}, - {24048,24007,24006 ,12331,12286,12285 ,0,0,0}, {24050,24051,24009 ,12333,12334,12288 ,0,0,0}, - {24049,24008,24007 ,12332,12287,12286 ,0,0,0}, {23965,24051,24052 ,12243,12334,12335 ,0,0,0}, - {24050,24009,24008 ,12333,12288,12287 ,0,0,0}, {23966,24052,24011 ,12244,12335,12290 ,0,0,0}, - {24051,23965,24009 ,12334,12243,12288 ,0,0,0}, {24053,24054,24055 ,12336,12337,12338 ,0,0,0}, - {24052,23966,23965 ,12335,12244,12243 ,0,0,0}, {24012,24053,24013 ,12291,12336,12292 ,0,0,0}, - {24011,24010,23966 ,12290,12289,12244 ,0,0,0}, {24053,24056,24014 ,12336,12339,12293 ,0,0,0}, - {24012,24013,24010 ,12291,12292,12289 ,0,0,0}, {24056,24057,24015 ,12339,12340,12294 ,0,0,0}, - {24053,24014,24013 ,12336,12293,12292 ,0,0,0}, {24016,24057,24058 ,12295,12340,12341 ,0,0,0}, - {24056,24015,24014 ,12339,12294,12293 ,0,0,0}, {24017,24058,23972 ,12296,12341,12250 ,0,0,0}, - {24016,24015,24057 ,12295,12294,12340 ,0,0,0}, {24059,24060,24061 ,12342,12343,12344 ,0,0,0}, - {24058,24017,24016 ,12341,12296,12295 ,0,0,0}, {23973,24059,24018 ,12251,12342,12297 ,0,0,0}, - {23972,23971,24017 ,12250,12249,12296 ,0,0,0}, {24059,24062,24019 ,12342,12345,12298 ,0,0,0}, - {23973,24018,23971 ,12251,12297,12249 ,0,0,0}, {24062,24063,24020 ,12345,12346,12299 ,0,0,0}, - {24059,24019,24018 ,12342,12298,12297 ,0,0,0}, {24063,24064,24021 ,12346,12347,12300 ,0,0,0}, - {24062,24020,24019 ,12345,12299,12298 ,0,0,0}, {24022,24064,23979 ,12301,12347,12257 ,0,0,0}, - {24021,24020,24063 ,12300,12299,12346 ,0,0,0}, {24065,24066,24067 ,12348,12349,12350 ,0,0,0}, - {24064,24022,24021 ,12347,12301,12300 ,0,0,0}, {23980,24065,24023 ,12258,12348,12302 ,0,0,0}, - {23979,23978,24022 ,12257,12256,12301 ,0,0,0}, {24065,24068,24024 ,12348,12351,12303 ,0,0,0}, - {23980,24023,23978 ,12258,12302,12256 ,0,0,0}, {24068,24069,24025 ,12351,12352,12304 ,0,0,0}, - {24065,24024,24023 ,12348,12303,12302 ,0,0,0}, {24069,24070,24026 ,12352,12353,12305 ,0,0,0}, - {24068,24025,24024 ,12351,12304,12303 ,0,0,0}, {23942,24070,24071 ,12219,12353,12354 ,0,0,0}, - {24069,24026,24025 ,12352,12305,12304 ,0,0,0}, {23940,24071,24028 ,12217,12354,12307 ,0,0,0}, - {24070,23942,24026 ,12353,12219,12305 ,0,0,0}, {24072,24030,24029 ,12355,12309,12308 ,0,0,0}, - {24071,23940,23942 ,12354,12217,12219 ,0,0,0}, {24073,24074,24075 ,12356,12357,12358 ,0,0,0}, - {24028,24027,23940 ,12307,12306,12217 ,0,0,0}, {24072,24073,24031 ,12355,12356,12310 ,0,0,0}, - {24029,24030,24027 ,12308,12309,12306 ,0,0,0}, {24073,24076,24032 ,12356,12359,12311 ,0,0,0}, - {24072,24031,24030 ,12355,12310,12309 ,0,0,0}, {24076,24077,24033 ,12359,12360,12312 ,0,0,0}, - {24073,24032,24031 ,12356,12311,12310 ,0,0,0}, {24077,24078,24034 ,12360,12361,12313 ,0,0,0}, - {24076,24033,24032 ,12359,12312,12311 ,0,0,0}, {24078,24079,24035 ,12361,12362,12314 ,0,0,0}, - {24077,24034,24033 ,12360,12313,12312 ,0,0,0}, {24079,24080,24036 ,12362,12363,12315 ,0,0,0}, - {24078,24035,24034 ,12361,12314,12313 ,0,0,0}, {24080,24081,24037 ,12363,12364,12316 ,0,0,0}, - {24079,24036,24035 ,12362,12315,12314 ,0,0,0}, {23868,24081,23870 ,12140,12364,12142 ,0,0,0}, - {24037,24036,24080 ,12316,12315,12363 ,0,0,0}, {23875,23870,24081 ,12147,12142,12364 ,0,0,0}, - {23868,24037,24081 ,12140,12316,12364 ,0,0,0}, {23872,23995,24038 ,12144,12273,12317 ,0,0,0}, - {23996,24038,23997 ,12274,12317,12275 ,0,0,0}, {23854,23872,23996 ,12126,12144,12274 ,0,0,0}, - {23871,23995,23872 ,12143,12273,12144 ,0,0,0}, {23403,24038,23270 ,12320,12317,12319 ,0,0,0}, - {23776,24041,23772 ,12048,12324,12044 ,0,0,0}, {23784,23778,23777 ,12056,12050,12049 ,0,0,0}, - {24039,24082,24083 ,12322,12365,12366 ,0,0,0}, {24041,24039,23999 ,12324,12322,12278 ,0,0,0}, - {23776,24084,24041 ,12048,12367,12324 ,0,0,0}, {24040,24083,24085 ,12323,12366,12368 ,0,0,0}, - {24041,24082,24039 ,12324,12365,12322 ,0,0,0}, {24042,24085,24086 ,12325,12368,12369 ,0,0,0}, - {24039,24083,24040 ,12322,12366,12323 ,0,0,0}, {24001,24086,24087 ,12280,12369,12370 ,0,0,0}, - {24040,24085,24042 ,12323,12368,12325 ,0,0,0}, {24002,24087,24088 ,12281,12370,12371 ,0,0,0}, - {24042,24086,24001 ,12325,12369,12280 ,0,0,0}, {24043,24088,24089 ,12326,12371,12372 ,0,0,0}, - {24001,24087,24002 ,12280,12370,12281 ,0,0,0}, {24044,24089,24046 ,12327,12372,12329 ,0,0,0}, - {24088,24043,24002 ,12371,12326,12281 ,0,0,0}, {24090,24048,24047 ,12373,12331,12330 ,0,0,0}, - {24089,24044,24043 ,12372,12327,12326 ,0,0,0}, {24091,24092,24090 ,12374,12375,12373 ,0,0,0}, - {24046,24045,24044 ,12329,12328,12327 ,0,0,0}, {24090,24092,24049 ,12373,12375,12332 ,0,0,0}, - {24047,24048,24045 ,12330,12331,12328 ,0,0,0}, {24092,24093,24050 ,12375,12376,12333 ,0,0,0}, - {24090,24049,24048 ,12373,12332,12331 ,0,0,0}, {24051,24093,24094 ,12334,12376,12377 ,0,0,0}, - {24092,24050,24049 ,12375,12333,12332 ,0,0,0}, {24052,24094,24095 ,12335,12377,12378 ,0,0,0}, - {24050,24093,24051 ,12333,12376,12334 ,0,0,0}, {24011,24095,24096 ,12290,12378,12379 ,0,0,0}, - {24051,24094,24052 ,12334,12377,12335 ,0,0,0}, {24012,24096,24054 ,12291,12379,12337 ,0,0,0}, - {24095,24011,24052 ,12378,12290,12335 ,0,0,0}, {24097,24098,24055 ,12380,12381,12338 ,0,0,0}, - {24096,24012,24011 ,12379,12291,12290 ,0,0,0}, {24055,24098,24056 ,12338,12381,12339 ,0,0,0}, - {24054,24053,24012 ,12337,12336,12291 ,0,0,0}, {24098,24099,24057 ,12381,12382,12340 ,0,0,0}, - {24055,24056,24053 ,12338,12339,12336 ,0,0,0}, {24058,24099,24100 ,12341,12382,12383 ,0,0,0}, - {24098,24057,24056 ,12381,12340,12339 ,0,0,0}, {23972,24100,24101 ,12250,12383,12384 ,0,0,0}, - {24057,24099,24058 ,12340,12382,12341 ,0,0,0}, {23973,24101,24060 ,12251,12384,12343 ,0,0,0}, - {24100,23972,24058 ,12383,12250,12341 ,0,0,0}, {24102,24103,24061 ,12385,12386,12344 ,0,0,0}, - {24101,23973,23972 ,12384,12251,12250 ,0,0,0}, {24061,24103,24062 ,12344,12386,12345 ,0,0,0}, - {24060,24059,23973 ,12343,12342,12251 ,0,0,0}, {24103,24104,24063 ,12386,12387,12346 ,0,0,0}, - {24061,24062,24059 ,12344,12345,12342 ,0,0,0}, {24064,24104,24105 ,12347,12387,12388 ,0,0,0}, - {24103,24063,24062 ,12386,12346,12345 ,0,0,0}, {23979,24105,24106 ,12257,12388,12389 ,0,0,0}, - {24063,24104,24064 ,12346,12387,12347 ,0,0,0}, {23980,24106,24066 ,12258,12389,12349 ,0,0,0}, - {24105,23979,24064 ,12388,12257,12347 ,0,0,0}, {24107,24108,24067 ,12390,12391,12350 ,0,0,0}, - {24106,23980,23979 ,12389,12258,12257 ,0,0,0}, {24067,24108,24068 ,12350,12391,12351 ,0,0,0}, - {24066,24065,23980 ,12349,12348,12258 ,0,0,0}, {24108,24109,24069 ,12391,12392,12352 ,0,0,0}, - {24067,24068,24065 ,12350,12351,12348 ,0,0,0}, {24070,24109,24110 ,12353,12392,12393 ,0,0,0}, - {24108,24069,24068 ,12391,12352,12351 ,0,0,0}, {24071,24110,24111 ,12354,12393,12394 ,0,0,0}, - {24069,24109,24070 ,12352,12392,12353 ,0,0,0}, {24028,24111,24112 ,12307,12394,12395 ,0,0,0}, - {24070,24110,24071 ,12353,12393,12354 ,0,0,0}, {24029,24112,24113 ,12308,12395,12396 ,0,0,0}, - {24071,24111,24028 ,12354,12394,12307 ,0,0,0}, {24072,24113,24074 ,12355,12396,12357 ,0,0,0}, - {24112,24029,24028 ,12395,12308,12307 ,0,0,0}, {24114,24076,24075 ,12397,12359,12358 ,0,0,0}, - {24113,24072,24029 ,12396,12355,12308 ,0,0,0}, {24115,24116,24114 ,12398,12399,12397 ,0,0,0}, - {24074,24073,24072 ,12357,12356,12355 ,0,0,0}, {24114,24116,24077 ,12397,12399,12360 ,0,0,0}, - {24075,24076,24073 ,12358,12359,12356 ,0,0,0}, {24116,24117,24078 ,12399,12400,12361 ,0,0,0}, - {24114,24077,24076 ,12397,12360,12359 ,0,0,0}, {24117,24118,24079 ,12400,12401,12362 ,0,0,0}, - {24116,24078,24077 ,12399,12361,12360 ,0,0,0}, {24118,24119,24080 ,12401,12402,12363 ,0,0,0}, - {24117,24079,24078 ,12400,12362,12361 ,0,0,0}, {24081,24119,23875 ,12364,12402,12147 ,0,0,0}, - {24118,24080,24079 ,12401,12363,12362 ,0,0,0}, {23875,24120,23870 ,12147,12403,12142 ,0,0,0}, - {24080,24119,24081 ,12363,12402,12364 ,0,0,0}, {23275,23995,23876 ,12404,12273,12149 ,0,0,0}, - {23995,23408,24038 ,12273,12318,12317 ,0,0,0}, {23853,23871,23872 ,12125,12143,12144 ,0,0,0}, - {24120,23876,23871 ,12403,12149,12143 ,0,0,0}, {23275,23408,23995 ,12404,12318,12273 ,0,0,0}, - {23778,24084,23776 ,12050,12367,12048 ,0,0,0}, {24121,23783,23784 ,12405,12055,12056 ,0,0,0}, - {24122,24082,24084 ,12406,12365,12367 ,0,0,0}, {24084,24082,24041 ,12367,12365,12324 ,0,0,0}, - {24084,23955,24122 ,12367,12233,12406 ,0,0,0}, {24123,24083,24082 ,12407,12366,12365 ,0,0,0}, - {24082,24122,24123 ,12365,12406,12407 ,0,0,0}, {24124,24085,24083 ,12408,12368,12366 ,0,0,0}, - {24083,24123,24124 ,12366,12407,12408 ,0,0,0}, {24125,24086,24085 ,12409,12369,12368 ,0,0,0}, - {24085,24124,24125 ,12368,12408,12409 ,0,0,0}, {24126,24087,24086 ,12410,12370,12369 ,0,0,0}, - {24086,24125,24126 ,12369,12409,12410 ,0,0,0}, {24127,24088,24087 ,12411,12371,12370 ,0,0,0}, - {24087,24126,24127 ,12370,12410,12411 ,0,0,0}, {24128,24089,24088 ,12412,12372,12371 ,0,0,0}, - {24088,24127,24128 ,12371,12411,12412 ,0,0,0}, {24129,24046,24089 ,12413,12329,12372 ,0,0,0}, - {24089,24128,24129 ,12372,12412,12413 ,0,0,0}, {24130,24047,24046 ,12414,12330,12329 ,0,0,0}, - {24046,24129,24130 ,12329,12413,12414 ,0,0,0}, {24131,24090,24047 ,12415,12373,12330 ,0,0,0}, - {24130,24131,24047 ,12414,12415,12330 ,0,0,0}, {24132,24133,24134 ,12416,12417,12418 ,0,0,0}, - {24131,24091,24090 ,12415,12374,12373 ,0,0,0}, {24135,24093,24092 ,12419,12376,12375 ,0,0,0}, - {24091,24135,24092 ,12374,12419,12375 ,0,0,0}, {24136,24094,24093 ,12420,12377,12376 ,0,0,0}, - {24093,24135,24136 ,12376,12419,12420 ,0,0,0}, {24137,24095,24094 ,12421,12378,12377 ,0,0,0}, - {24094,24136,24137 ,12377,12420,12421 ,0,0,0}, {24138,24096,24095 ,12422,12379,12378 ,0,0,0}, - {24095,24137,24138 ,12378,12421,12422 ,0,0,0}, {24139,24054,24096 ,12423,12337,12379 ,0,0,0}, - {24096,24138,24139 ,12379,12422,12423 ,0,0,0}, {24140,24055,24054 ,12424,12338,12337 ,0,0,0}, - {24139,24140,24054 ,12423,12424,12337 ,0,0,0}, {24141,24097,24142 ,12425,12380,12426 ,0,0,0}, - {24140,24097,24055 ,12424,12380,12338 ,0,0,0}, {24141,24099,24098 ,12425,12382,12381 ,0,0,0}, - {24097,24141,24098 ,12380,12425,12381 ,0,0,0}, {24143,24100,24099 ,12427,12383,12382 ,0,0,0}, - {24099,24141,24143 ,12382,12425,12427 ,0,0,0}, {24144,24101,24100 ,12428,12384,12383 ,0,0,0}, - {24100,24143,24144 ,12383,12427,12428 ,0,0,0}, {24145,24060,24101 ,12429,12343,12384 ,0,0,0}, - {24101,24144,24145 ,12384,12428,12429 ,0,0,0}, {24146,24061,24060 ,12430,12344,12343 ,0,0,0}, - {24145,24146,24060 ,12429,12430,12343 ,0,0,0}, {24147,24148,24149 ,12431,12432,12433 ,0,0,0}, - {24146,24102,24061 ,12430,12385,12344 ,0,0,0}, {24150,24104,24103 ,12434,12387,12386 ,0,0,0}, - {24102,24150,24103 ,12385,12434,12386 ,0,0,0}, {24151,24105,24104 ,12435,12388,12387 ,0,0,0}, - {24104,24150,24151 ,12387,12434,12435 ,0,0,0}, {24152,24106,24105 ,12436,12389,12388 ,0,0,0}, - {24105,24151,24152 ,12388,12435,12436 ,0,0,0}, {24153,24066,24106 ,12437,12349,12389 ,0,0,0}, - {24106,24152,24153 ,12389,12436,12437 ,0,0,0}, {24154,24067,24066 ,12438,12350,12349 ,0,0,0}, - {24153,24154,24066 ,12437,12438,12349 ,0,0,0}, {24108,24155,24109 ,12391,12439,12392 ,0,0,0}, - {24154,24107,24067 ,12438,12390,12350 ,0,0,0}, {24156,24157,24155 ,12440,12441,12439 ,0,0,0}, - {24107,24155,24108 ,12390,12439,12391 ,0,0,0}, {24157,24110,24109 ,12441,12393,12392 ,0,0,0}, - {24109,24155,24157 ,12392,12439,12441 ,0,0,0}, {24158,24111,24110 ,12442,12394,12393 ,0,0,0}, - {24110,24157,24158 ,12393,12441,12442 ,0,0,0}, {24159,24112,24111 ,12443,12395,12394 ,0,0,0}, - {24111,24158,24159 ,12394,12442,12443 ,0,0,0}, {24160,24113,24112 ,12444,12396,12395 ,0,0,0}, - {24112,24159,24160 ,12395,12443,12444 ,0,0,0}, {24161,24074,24113 ,12445,12357,12396 ,0,0,0}, - {24113,24160,24161 ,12396,12444,12445 ,0,0,0}, {24162,24075,24074 ,12446,12358,12357 ,0,0,0}, - {24074,24161,24162 ,12357,12445,12446 ,0,0,0}, {24163,24114,24075 ,12447,12397,12358 ,0,0,0}, - {24162,24163,24075 ,12446,12447,12358 ,0,0,0}, {24116,24164,24117 ,12399,12448,12400 ,0,0,0}, - {24163,24115,24114 ,12447,12398,12397 ,0,0,0}, {24117,24165,24118 ,12400,12449,12401 ,0,0,0}, - {24115,24164,24116 ,12398,12448,12399 ,0,0,0}, {24118,24166,24119 ,12401,12450,12402 ,0,0,0}, - {24164,24165,24117 ,12448,12449,12400 ,0,0,0}, {24119,23873,23875 ,12402,12145,12147 ,0,0,0}, - {24165,24166,24118 ,12449,12450,12401 ,0,0,0}, {23874,23878,23877 ,12146,12151,12150 ,0,0,0}, - {24166,23873,24119 ,12450,12145,12402 ,0,0,0}, {23874,24120,23875 ,12146,12403,12147 ,0,0,0}, - {23457,23275,23876 ,12451,12404,12149 ,0,0,0}, {23870,24120,23871 ,12142,12403,12143 ,0,0,0}, - {24120,23874,23877 ,12403,12146,12150 ,0,0,0}, {23272,23457,23876 ,12148,12451,12149 ,0,0,0}, - {23783,23955,23778 ,12055,12233,12050 ,0,0,0}, {24121,23786,23781 ,12405,12058,12053 ,0,0,0}, - {24122,23955,24167 ,12406,12233,12452 ,0,0,0}, {23778,23955,24084 ,12050,12233,12367 ,0,0,0}, - {23955,23782,24167 ,12233,12054,12452 ,0,0,0}, {24123,24122,24168 ,12407,12406,12453 ,0,0,0}, - {24122,24167,24168 ,12406,12452,12453 ,0,0,0}, {24124,24123,24169 ,12408,12407,12454 ,0,0,0}, - {24123,24168,24169 ,12407,12453,12454 ,0,0,0}, {24125,24124,24170 ,12409,12408,12455 ,0,0,0}, - {24124,24169,24170 ,12408,12454,12455 ,0,0,0}, {24126,24125,24171 ,12410,12409,12456 ,0,0,0}, - {24125,24170,24171 ,12409,12455,12456 ,0,0,0}, {24127,24126,24172 ,12411,12410,12457 ,0,0,0}, - {24126,24171,24172 ,12410,12456,12457 ,0,0,0}, {24128,24127,24173 ,12412,12411,12458 ,0,0,0}, - {24127,24172,24173 ,12411,12457,12458 ,0,0,0}, {24129,24128,24174 ,12413,12412,12459 ,0,0,0}, - {24128,24173,24174 ,12412,12458,12459 ,0,0,0}, {24130,24129,24175 ,12414,12413,12460 ,0,0,0}, - {24129,24174,24175 ,12413,12459,12460 ,0,0,0}, {24131,24130,24176 ,12415,12414,12461 ,0,0,0}, - {24130,24175,24176 ,12414,12460,12461 ,0,0,0}, {24091,24131,24177 ,12374,12415,12462 ,0,0,0}, - {24131,24176,24177 ,12415,12461,12462 ,0,0,0}, {24135,24091,24132 ,12419,12374,12416 ,0,0,0}, - {24177,24132,24091 ,12462,12416,12374 ,0,0,0}, {24136,24135,24134 ,12420,12419,12418 ,0,0,0}, - {24135,24132,24134 ,12419,12416,12418 ,0,0,0}, {24137,24136,24178 ,12421,12420,12463 ,0,0,0}, - {24136,24134,24178 ,12420,12418,12463 ,0,0,0}, {24138,24137,24179 ,12422,12421,12464 ,0,0,0}, - {24137,24178,24179 ,12421,12463,12464 ,0,0,0}, {24139,24138,24180 ,12423,12422,12465 ,0,0,0}, - {24138,24179,24180 ,12422,12464,12465 ,0,0,0}, {24140,24139,24181 ,12424,12423,12466 ,0,0,0}, - {24139,24180,24181 ,12423,12465,12466 ,0,0,0}, {24097,24140,24182 ,12380,12424,12467 ,0,0,0}, - {24140,24181,24182 ,12424,12466,12467 ,0,0,0}, {24182,24183,24142 ,12467,12468,12426 ,0,0,0}, - {24182,24142,24097 ,12467,12426,12380 ,0,0,0}, {24143,24141,24184 ,12427,12425,12469 ,0,0,0}, - {24141,24142,24184 ,12425,12426,12469 ,0,0,0}, {24144,24143,24185 ,12428,12427,12470 ,0,0,0}, - {24143,24184,24185 ,12427,12469,12470 ,0,0,0}, {24145,24144,24186 ,12429,12428,12471 ,0,0,0}, - {24144,24185,24186 ,12428,12470,12471 ,0,0,0}, {24146,24145,24187 ,12430,12429,12472 ,0,0,0}, - {24145,24186,24187 ,12429,12471,12472 ,0,0,0}, {24102,24146,24188 ,12385,12430,12473 ,0,0,0}, - {24146,24187,24188 ,12430,12472,12473 ,0,0,0}, {24150,24102,24147 ,12434,12385,12431 ,0,0,0}, - {24188,24147,24102 ,12473,12431,12385 ,0,0,0}, {24151,24150,24149 ,12435,12434,12433 ,0,0,0}, - {24150,24147,24149 ,12434,12431,12433 ,0,0,0}, {24152,24151,24189 ,12436,12435,12474 ,0,0,0}, - {24151,24149,24189 ,12435,12433,12474 ,0,0,0}, {24153,24152,24190 ,12437,12436,12475 ,0,0,0}, - {24152,24189,24190 ,12436,12474,12475 ,0,0,0}, {24154,24153,24191 ,12438,12437,12476 ,0,0,0}, - {24153,24190,24191 ,12437,12475,12476 ,0,0,0}, {24107,24154,24192 ,12390,12438,12477 ,0,0,0}, - {24154,24191,24192 ,12438,12476,12477 ,0,0,0}, {24155,24107,24193 ,12439,12390,12478 ,0,0,0}, - {24107,24192,24193 ,12390,12477,12478 ,0,0,0}, {24156,24193,24194 ,12440,12478,12479 ,0,0,0}, - {24193,24156,24155 ,12478,12440,12439 ,0,0,0}, {24158,24157,24195 ,12442,12441,12480 ,0,0,0}, - {24157,24156,24195 ,12441,12440,12480 ,0,0,0}, {24159,24158,24196 ,12443,12442,12481 ,0,0,0}, - {24158,24195,24196 ,12442,12480,12481 ,0,0,0}, {24160,24159,24197 ,12444,12443,12482 ,0,0,0}, - {24159,24196,24197 ,12443,12481,12482 ,0,0,0}, {24161,24160,24198 ,12445,12444,12483 ,0,0,0}, - {24160,24197,24198 ,12444,12482,12483 ,0,0,0}, {24162,24161,24199 ,12446,12445,12484 ,0,0,0}, - {24161,24198,24199 ,12445,12483,12484 ,0,0,0}, {24163,24162,24200 ,12447,12446,12485 ,0,0,0}, - {24162,24199,24200 ,12446,12484,12485 ,0,0,0}, {24115,24163,24201 ,12398,12447,12486 ,0,0,0}, - {24163,24200,24201 ,12447,12485,12486 ,0,0,0}, {24164,24115,24202 ,12448,12398,12487 ,0,0,0}, - {24115,24201,24202 ,12398,12486,12487 ,0,0,0}, {24165,24164,24203 ,12449,12448,12488 ,0,0,0}, - {24164,24202,24203 ,12448,12487,12488 ,0,0,0}, {24166,24165,24204 ,12450,12449,12489 ,0,0,0}, - {24165,24203,24204 ,12449,12488,12489 ,0,0,0}, {23873,24166,24205 ,12145,12450,12490 ,0,0,0}, - {24166,24204,24205 ,12450,12489,12490 ,0,0,0}, {24206,23874,23873 ,12491,12146,12145 ,0,0,0}, - {24205,24206,23873 ,12490,12491,12145 ,0,0,0}, {24120,23877,23876 ,12403,12150,12149 ,0,0,0}, - {24206,23878,23874 ,12491,12151,12146 ,0,0,0}, {23272,23877,23627 ,12148,12150,12152 ,0,0,0}, - {23781,23783,24121 ,12053,12055,12405 ,0,0,0}, {23790,23787,23781 ,12062,12059,12053 ,0,0,0}, - {23787,24207,23782 ,12059,12492,12054 ,0,0,0}, {23782,24207,24167 ,12054,12492,12452 ,0,0,0}, - {24207,24208,24167 ,12492,12493,12452 ,0,0,0}, {24167,24208,24168 ,12452,12493,12453 ,0,0,0}, - {24208,24209,24168 ,12493,12494,12453 ,0,0,0}, {24168,24209,24169 ,12453,12494,12454 ,0,0,0}, - {24209,24210,24169 ,12494,12495,12454 ,0,0,0}, {24169,24210,24170 ,12454,12495,12455 ,0,0,0}, - {24210,24211,24170 ,12495,12496,12455 ,0,0,0}, {24170,24211,24171 ,12455,12496,12456 ,0,0,0}, - {24211,24212,24171 ,12496,12497,12456 ,0,0,0}, {24171,24212,24172 ,12456,12497,12457 ,0,0,0}, - {24212,24213,24172 ,12497,12498,12457 ,0,0,0}, {24172,24213,24173 ,12457,12498,12458 ,0,0,0}, - {24213,24214,24173 ,12498,12499,12458 ,0,0,0}, {24214,24215,24174 ,12499,12500,12459 ,0,0,0}, - {24214,24174,24173 ,12499,12459,12458 ,0,0,0}, {24215,24216,24175 ,12500,12501,12460 ,0,0,0}, - {24215,24175,24174 ,12500,12460,12459 ,0,0,0}, {24216,24217,24176 ,12501,12502,12461 ,0,0,0}, - {24216,24176,24175 ,12501,12461,12460 ,0,0,0}, {24217,24218,24177 ,12502,12503,12462 ,0,0,0}, - {24217,24177,24176 ,12502,12462,12461 ,0,0,0}, {24218,24219,24132 ,12503,12504,12416 ,0,0,0}, - {24218,24132,24177 ,12503,12416,12462 ,0,0,0}, {24133,24132,24219 ,12417,12416,12504 ,0,0,0}, - {24133,24220,24134 ,12417,12505,12418 ,0,0,0}, {24134,24220,24178 ,12418,12505,12463 ,0,0,0}, - {24220,24221,24178 ,12505,12506,12463 ,0,0,0}, {24178,24221,24179 ,12463,12506,12464 ,0,0,0}, - {24221,24222,24179 ,12506,12507,12464 ,0,0,0}, {24222,24223,24180 ,12507,12508,12465 ,0,0,0}, - {24222,24180,24179 ,12507,12465,12464 ,0,0,0}, {24223,24224,24181 ,12508,12509,12466 ,0,0,0}, - {24223,24181,24180 ,12508,12466,12465 ,0,0,0}, {24224,24183,24182 ,12509,12468,12467 ,0,0,0}, - {24224,24182,24181 ,12509,12467,12466 ,0,0,0}, {24183,24225,24142 ,12468,12510,12426 ,0,0,0}, - {24225,24226,24142 ,12510,12511,12426 ,0,0,0}, {24142,24226,24184 ,12426,12511,12469 ,0,0,0}, - {24226,24227,24184 ,12511,12512,12469 ,0,0,0}, {24184,24227,24185 ,12469,12512,12470 ,0,0,0}, - {24227,24228,24185 ,12512,12513,12470 ,0,0,0}, {24228,24229,24186 ,12513,12514,12471 ,0,0,0}, - {24228,24186,24185 ,12513,12471,12470 ,0,0,0}, {24229,24230,24187 ,12514,12515,12472 ,0,0,0}, - {24229,24187,24186 ,12514,12472,12471 ,0,0,0}, {24230,24231,24188 ,12515,12516,12473 ,0,0,0}, - {24230,24188,24187 ,12515,12473,12472 ,0,0,0}, {24231,24232,24147 ,12516,12517,12431 ,0,0,0}, - {24231,24147,24188 ,12516,12431,12473 ,0,0,0}, {24148,24147,24232 ,12432,12431,12517 ,0,0,0}, - {24148,24233,24149 ,12432,12518,12433 ,0,0,0}, {24149,24233,24189 ,12433,12518,12474 ,0,0,0}, - {24233,24234,24189 ,12518,12519,12474 ,0,0,0}, {24234,24235,24190 ,12519,12520,12475 ,0,0,0}, - {24234,24190,24189 ,12519,12475,12474 ,0,0,0}, {24235,24236,24191 ,12520,12521,12476 ,0,0,0}, - {24235,24191,24190 ,12520,12476,12475 ,0,0,0}, {24236,24237,24192 ,12521,12522,12477 ,0,0,0}, - {24236,24192,24191 ,12521,12477,12476 ,0,0,0}, {24237,24194,24193 ,12522,12479,12478 ,0,0,0}, - {24237,24193,24192 ,12522,12478,12477 ,0,0,0}, {24194,24238,24156 ,12479,12523,12440 ,0,0,0}, - {24238,24239,24156 ,12523,12524,12440 ,0,0,0}, {24156,24239,24195 ,12440,12524,12480 ,0,0,0}, - {24239,24240,24195 ,12524,12525,12480 ,0,0,0}, {24195,24240,24196 ,12480,12525,12481 ,0,0,0}, - {24240,24241,24196 ,12525,12526,12481 ,0,0,0}, {24196,24241,24197 ,12481,12526,12482 ,0,0,0}, - {24241,24242,24197 ,12526,12527,12482 ,0,0,0}, {24242,24243,24198 ,12527,12528,12483 ,0,0,0}, - {24242,24198,24197 ,12527,12483,12482 ,0,0,0}, {24243,24244,24199 ,12528,12529,12484 ,0,0,0}, - {24243,24199,24198 ,12528,12484,12483 ,0,0,0}, {24244,24245,24200 ,12529,12530,12485 ,0,0,0}, - {24244,24200,24199 ,12529,12485,12484 ,0,0,0}, {24245,24246,24201 ,12530,12531,12486 ,0,0,0}, - {24245,24201,24200 ,12530,12486,12485 ,0,0,0}, {24246,24247,24202 ,12531,12532,12487 ,0,0,0}, - {24246,24202,24201 ,12531,12487,12486 ,0,0,0}, {24247,24248,24203 ,12532,12533,12488 ,0,0,0}, - {24247,24203,24202 ,12532,12488,12487 ,0,0,0}, {24248,24249,24204 ,12533,12534,12489 ,0,0,0}, - {24248,24204,24203 ,12533,12489,12488 ,0,0,0}, {24249,24250,24205 ,12534,12535,12490 ,0,0,0}, - {24249,24205,24204 ,12534,12490,12489 ,0,0,0}, {24250,24251,24206 ,12535,12536,12491 ,0,0,0}, - {24250,24206,24205 ,12535,12491,12490 ,0,0,0}, {23879,24206,24251 ,12154,12491,12536 ,0,0,0}, - {24206,23879,23878 ,12491,12154,12151 ,0,0,0}, {23280,23878,23879 ,12153,12151,12154 ,0,0,0}, - {24252,24253,24223 ,12537,12538,12539 ,0,0,0}, {24223,24222,24252 ,12539,12540,12537 ,0,0,0}, - {24254,24255,24256 ,12541,12542,12543 ,0,0,0}, {24257,24221,24220 ,12544,12545,12546 ,0,0,0}, - {24222,24221,24258 ,12540,12545,12547 ,0,0,0}, {24257,24258,24221 ,12544,12547,12545 ,0,0,0}, - {24133,24219,24259 ,12548,12549,12550 ,0,0,0}, {24260,24133,24259 ,12551,12548,12550 ,0,0,0}, - {24220,24133,24260 ,12546,12548,12551 ,0,0,0}, {24259,24218,24261 ,12550,12552,12553 ,0,0,0}, - {24220,24260,24257 ,12546,12551,12544 ,0,0,0}, {24259,24219,24218 ,12550,12549,12552 ,0,0,0}, - {24258,24252,24222 ,12547,12537,12540 ,0,0,0}, {24262,24217,24216 ,12554,12555,12556 ,0,0,0}, - {24262,24261,24217 ,12554,12553,12555 ,0,0,0}, {24263,24262,24216 ,12557,12554,12556 ,0,0,0}, - {24264,24265,24266 ,12558,12559,12560 ,0,0,0}, {24267,24263,24215 ,12561,12557,12562 ,0,0,0}, - {24214,24267,24215 ,12563,12561,12562 ,0,0,0}, {24268,24214,24213 ,12564,12563,12565 ,0,0,0}, - {24267,24214,24268 ,12561,12563,12564 ,0,0,0}, {24269,24268,24213 ,12566,12564,12565 ,0,0,0}, - {24215,24263,24216 ,12562,12557,12556 ,0,0,0}, {24261,24218,24217 ,12553,12552,12555 ,0,0,0}, - {24270,24211,24271 ,12567,12568,12569 ,0,0,0}, {24212,24270,24269 ,12570,12567,12566 ,0,0,0}, - {24210,24272,24271 ,12571,12572,12569 ,0,0,0}, {24212,24211,24270 ,12570,12568,12567 ,0,0,0}, - {24272,24209,24273 ,12572,12573,12574 ,0,0,0}, {24209,24272,24210 ,12573,12572,12571 ,0,0,0}, - {24273,24208,24274 ,12574,12575,12576 ,0,0,0}, {24211,24210,24271 ,12568,12571,12569 ,0,0,0}, - {24209,24208,24273 ,12573,12575,12574 ,0,0,0}, {24273,24275,24276 ,12574,12577,12578 ,0,0,0}, - {23907,24277,23911 ,12579,12580,12188 ,0,0,0}, {24278,24279,24280 ,12581,12582,12583 ,0,0,0}, - {24277,24281,23911 ,12580,12584,12188 ,0,0,0}, {24282,24283,24284 ,12585,12586,12587 ,0,0,0}, - {24277,23907,24282 ,12580,12579,12585 ,0,0,0}, {24274,24208,24207 ,12576,12575,12588 ,0,0,0}, - {24276,24285,24286 ,12578,12589,12590 ,0,0,0}, {24287,24288,24286 ,12591,12592,12590 ,0,0,0}, - {24286,24285,24289 ,12590,12589,12593 ,0,0,0}, {24207,23787,24290 ,12588,12594,12595 ,0,0,0}, - {24291,24292,24293 ,12596,12597,12598 ,0,0,0}, {24292,24294,24295 ,12597,12599,12600 ,0,0,0}, - {24294,24296,24295 ,12599,12601,12600 ,0,0,0}, {24297,24293,24298 ,12602,12598,12603 ,0,0,0}, - {24299,24298,23785 ,12604,12603,12057 ,0,0,0}, {23787,24298,24290 ,12594,12603,12595 ,0,0,0}, - {24298,23790,23785 ,12603,12605,12057 ,0,0,0}, {24299,24297,24298 ,12604,12602,12603 ,0,0,0}, - {24279,24300,24301 ,12582,12606,12607 ,0,0,0}, {24212,24269,24213 ,12570,12566,12565 ,0,0,0}, - {24253,24224,24223 ,12538,12608,12539 ,0,0,0}, {24183,24224,24302 ,12609,12608,12610 ,0,0,0}, - {24253,24302,24224 ,12538,12610,12608 ,0,0,0}, {24303,24225,24183 ,12611,12612,12609 ,0,0,0}, - {24183,24302,24303 ,12609,12610,12611 ,0,0,0}, {24226,24303,24304 ,12613,12611,12614 ,0,0,0}, - {24303,24226,24225 ,12611,12613,12612 ,0,0,0}, {24305,24227,24304 ,12615,12616,12614 ,0,0,0}, - {24226,24304,24227 ,12613,12614,12616 ,0,0,0}, {24228,24227,24305 ,12617,12616,12615 ,0,0,0}, - {24305,24306,24228 ,12615,12618,12617 ,0,0,0}, {24228,24306,24229 ,12617,12618,12619 ,0,0,0}, - {24229,24306,24307 ,12619,12618,12620 ,0,0,0}, {24308,24309,24310 ,12621,12622,12623 ,0,0,0}, - {24311,24230,24307 ,12624,12625,12620 ,0,0,0}, {24229,24307,24230 ,12619,12620,12625 ,0,0,0}, - {24311,24312,24231 ,12624,12626,12627 ,0,0,0}, {24231,24230,24311 ,12627,12625,12624 ,0,0,0}, - {24148,24232,24312 ,12628,12629,12626 ,0,0,0}, {24312,24232,24231 ,12626,12629,12627 ,0,0,0}, - {24313,24233,24148 ,12630,12631,12628 ,0,0,0}, {24148,24312,24313 ,12628,12626,12630 ,0,0,0}, - {24233,24314,24234 ,12631,12632,12633 ,0,0,0}, {24314,24233,24313 ,12632,12631,12630 ,0,0,0}, - {24235,24234,24315 ,12634,12633,12635 ,0,0,0}, {24314,24315,24234 ,12632,12635,12633 ,0,0,0}, - {24316,24235,24315 ,12636,12634,12635 ,0,0,0}, {24316,24236,24235 ,12636,12637,12634 ,0,0,0}, - {24316,24317,24236 ,12636,12638,12637 ,0,0,0}, {24318,24319,24320 ,12639,12640,12641 ,0,0,0}, - {24237,24317,24321 ,12642,12638,12643 ,0,0,0}, {24317,24237,24236 ,12638,12642,12637 ,0,0,0}, - {24322,24194,24321 ,12644,12645,12643 ,0,0,0}, {24237,24321,24194 ,12642,12643,12645 ,0,0,0}, - {24238,24322,24239 ,12646,12644,12647 ,0,0,0}, {24238,24194,24322 ,12646,12645,12644 ,0,0,0}, - {24240,24239,24323 ,12648,12647,12649 ,0,0,0}, {24322,24323,24239 ,12644,12649,12647 ,0,0,0}, - {24324,24241,24240 ,12650,12651,12648 ,0,0,0}, {24240,24323,24324 ,12648,12649,12650 ,0,0,0}, - {24241,24325,24242 ,12651,12652,12653 ,0,0,0}, {24325,24241,24324 ,12652,12651,12650 ,0,0,0}, - {24243,24242,24326 ,12654,12653,12655 ,0,0,0}, {24325,24326,24242 ,12652,12655,12653 ,0,0,0}, - {24327,24243,24326 ,12656,12654,12655 ,0,0,0}, {24327,24244,24243 ,12656,12657,12654 ,0,0,0}, - {24327,24328,24244 ,12656,12658,12657 ,0,0,0}, {24329,24330,24331 ,12659,12660,12661 ,0,0,0}, - {24245,24328,24330 ,12662,12658,12660 ,0,0,0}, {24328,24245,24244 ,12658,12662,12657 ,0,0,0}, - {24332,24246,24330 ,12663,12664,12660 ,0,0,0}, {24245,24330,24246 ,12662,12660,12664 ,0,0,0}, - {24333,24334,24335 ,12665,12666,12667 ,0,0,0}, {24247,24246,24332 ,12668,12664,12663 ,0,0,0}, - {24336,24337,24338 ,12669,12670,12671 ,0,0,0}, {24339,24340,24341 ,12672,12673,12674 ,0,0,0}, - {24342,24343,24344 ,12675,12676,12677 ,0,0,0}, {24345,24346,24347 ,12678,12679,12680 ,0,0,0}, - {24348,24349,24336 ,12681,12682,12669 ,0,0,0}, {24350,24351,24352 ,12683,12684,12685 ,0,0,0}, - {24353,24354,24349 ,12686,12687,12682 ,0,0,0}, {24350,24345,24351 ,12683,12678,12684 ,0,0,0}, - {24349,24355,24356 ,12682,12688,12689 ,0,0,0}, {23859,23410,24352 ,12690,726,12685 ,0,0,0}, - {24357,24247,24332 ,12691,12668,12663 ,0,0,0}, {24247,24357,24248 ,12668,12691,12692 ,0,0,0}, - {24248,24333,24249 ,12692,12665,12693 ,0,0,0}, {24329,24332,24330 ,12659,12663,12660 ,0,0,0}, - {24358,24359,24250 ,12694,12695,12696 ,0,0,0}, {24333,24358,24249 ,12665,12694,12693 ,0,0,0}, - {24356,24358,24335 ,12689,12694,12667 ,0,0,0}, {24249,24358,24250 ,12693,12694,12696 ,0,0,0}, - {24359,24360,23879 ,12695,12697,12698 ,0,0,0}, {24359,23879,24251 ,12695,12698,12699 ,0,0,0}, - {23281,23879,24361 ,730,12698,12700 ,0,0,0}, {24298,23787,23790 ,12603,12594,12605 ,0,0,0}, - {24291,24293,24297 ,12596,12598,12602 ,0,0,0}, {24301,24300,24362 ,12607,12606,12701 ,0,0,0}, - {24290,24274,24207 ,12595,12576,12588 ,0,0,0}, {24290,24293,24363 ,12595,12598,12702 ,0,0,0}, - {24364,24272,24276 ,12703,12572,12578 ,0,0,0}, {24274,24363,24275 ,12576,12702,12577 ,0,0,0}, - {24365,24271,24364 ,12704,12569,12703 ,0,0,0}, {24275,24273,24274 ,12577,12574,12576 ,0,0,0}, - {24366,24270,24365 ,12705,12567,12704 ,0,0,0}, {24276,24272,24273 ,12578,12572,12574 ,0,0,0}, - {24367,24269,24366 ,12706,12566,12705 ,0,0,0}, {24364,24271,24272 ,12703,12569,12572 ,0,0,0}, - {24368,24268,24367 ,12707,12564,12706 ,0,0,0}, {24365,24270,24271 ,12704,12567,12569 ,0,0,0}, - {24369,24267,24368 ,12708,12561,12707 ,0,0,0}, {24366,24269,24270 ,12705,12566,12567 ,0,0,0}, - {24370,24263,24369 ,12709,12557,12708 ,0,0,0}, {24367,24268,24269 ,12706,12564,12566 ,0,0,0}, - {24370,24371,24262 ,12709,12710,12554 ,0,0,0}, {24267,24268,24368 ,12561,12564,12707 ,0,0,0}, - {24372,24261,24371 ,12711,12553,12710 ,0,0,0}, {24263,24267,24369 ,12557,12561,12708 ,0,0,0}, - {24265,24259,24372 ,12559,12550,12711 ,0,0,0}, {24262,24263,24370 ,12554,12557,12709 ,0,0,0}, - {24373,24260,24265 ,12712,12551,12559 ,0,0,0}, {24261,24262,24371 ,12553,12554,12710 ,0,0,0}, - {24374,24257,24373 ,12713,12544,12712 ,0,0,0}, {24259,24261,24372 ,12550,12553,12711 ,0,0,0}, - {24375,24258,24374 ,12714,12547,12713 ,0,0,0}, {24265,24260,24259 ,12559,12551,12550 ,0,0,0}, - {24376,24252,24375 ,12715,12537,12714 ,0,0,0}, {24373,24257,24260 ,12712,12544,12551 ,0,0,0}, - {24376,24377,24253 ,12715,12716,12538 ,0,0,0}, {24258,24257,24374 ,12547,12544,12713 ,0,0,0}, - {24378,24302,24377 ,12717,12610,12716 ,0,0,0}, {24252,24258,24375 ,12537,12547,12714 ,0,0,0}, - {24379,24303,24378 ,12718,12611,12717 ,0,0,0}, {24253,24252,24376 ,12538,12537,12715 ,0,0,0}, - {24380,24304,24379 ,12719,12614,12718 ,0,0,0}, {24302,24253,24377 ,12610,12538,12716 ,0,0,0}, - {24381,24305,24380 ,12720,12615,12719 ,0,0,0}, {24303,24302,24378 ,12611,12610,12717 ,0,0,0}, - {24382,24306,24381 ,12721,12618,12720 ,0,0,0}, {24379,24304,24303 ,12718,12614,12611 ,0,0,0}, - {24382,24383,24307 ,12721,12722,12620 ,0,0,0}, {24305,24304,24380 ,12615,12614,12719 ,0,0,0}, - {24384,24311,24383 ,12723,12624,12722 ,0,0,0}, {24306,24305,24381 ,12618,12615,12720 ,0,0,0}, - {24308,24312,24384 ,12621,12626,12723 ,0,0,0}, {24307,24306,24382 ,12620,12618,12721 ,0,0,0}, - {24385,24313,24308 ,12724,12630,12621 ,0,0,0}, {24311,24307,24383 ,12624,12620,12722 ,0,0,0}, - {24386,24314,24385 ,12725,12632,12724 ,0,0,0}, {24312,24311,24384 ,12626,12624,12723 ,0,0,0}, - {24387,24315,24386 ,12726,12635,12725 ,0,0,0}, {24308,24313,24312 ,12621,12630,12626 ,0,0,0}, - {24388,24316,24387 ,12727,12636,12726 ,0,0,0}, {24385,24314,24313 ,12724,12632,12630 ,0,0,0}, - {24388,24389,24317 ,12727,12728,12638 ,0,0,0}, {24315,24314,24386 ,12635,12632,12725 ,0,0,0}, - {24390,24321,24389 ,12729,12643,12728 ,0,0,0}, {24316,24315,24387 ,12636,12635,12726 ,0,0,0}, - {24391,24322,24390 ,12730,12644,12729 ,0,0,0}, {24317,24316,24388 ,12638,12636,12727 ,0,0,0}, - {24392,24323,24391 ,12731,12649,12730 ,0,0,0}, {24321,24317,24389 ,12643,12638,12728 ,0,0,0}, - {24393,24324,24392 ,12732,12650,12731 ,0,0,0}, {24390,24322,24321 ,12729,12644,12643 ,0,0,0}, - {24394,24325,24393 ,12733,12652,12732 ,0,0,0}, {24391,24323,24322 ,12730,12649,12644 ,0,0,0}, - {24395,24326,24394 ,12734,12655,12733 ,0,0,0}, {24392,24324,24323 ,12731,12650,12649 ,0,0,0}, - {24396,24327,24395 ,12735,12656,12734 ,0,0,0}, {24393,24325,24324 ,12732,12652,12650 ,0,0,0}, - {24396,24331,24328 ,12735,12661,12658 ,0,0,0}, {24326,24325,24394 ,12655,12652,12733 ,0,0,0}, - {24332,24329,24397 ,12663,12659,12736 ,0,0,0}, {24327,24326,24395 ,12656,12655,12734 ,0,0,0}, - {24353,24335,24341 ,12686,12667,12674 ,0,0,0}, {24328,24327,24396 ,12658,12656,12735 ,0,0,0}, - {24357,24397,24334 ,12691,12736,12666 ,0,0,0}, {24328,24331,24330 ,12658,12661,12660 ,0,0,0}, - {24397,24398,24334 ,12736,12737,12666 ,0,0,0}, {24356,24359,24358 ,12689,12695,12694 ,0,0,0}, - {24357,24333,24248 ,12691,12665,12692 ,0,0,0}, {24397,24357,24332 ,12736,12691,12663 ,0,0,0}, - {24356,24353,24349 ,12689,12686,12682 ,0,0,0}, {24333,24357,24334 ,12665,12691,12666 ,0,0,0}, - {24360,24355,24399 ,12697,12688,12738 ,0,0,0}, {24360,24361,23879 ,12697,12700,12698 ,0,0,0}, - {24250,24359,24251 ,12696,12695,12699 ,0,0,0}, {24360,24359,24355 ,12697,12695,12688 ,0,0,0}, - {24400,24361,24360 ,12739,12700,12697 ,0,0,0}, {24298,24293,24290 ,12603,12598,12595 ,0,0,0}, - {24294,24292,24291 ,12599,12597,12596 ,0,0,0}, {24282,23907,23903 ,12585,12579,12740 ,0,0,0}, - {24290,24363,24274 ,12595,12702,12576 ,0,0,0}, {24401,24363,24292 ,12741,12702,12597 ,0,0,0}, - {24286,24288,24364 ,12590,12592,12703 ,0,0,0}, {24285,24275,24401 ,12589,12577,12741 ,0,0,0}, - {24288,24402,24365 ,12592,12742,12704 ,0,0,0}, {24285,24276,24275 ,12589,12578,12577 ,0,0,0}, - {24402,24403,24366 ,12742,12743,12705 ,0,0,0}, {24286,24364,24276 ,12590,12703,12578 ,0,0,0}, - {24403,24404,24367 ,12743,12744,12706 ,0,0,0}, {24288,24365,24364 ,12592,12704,12703 ,0,0,0}, - {24404,24405,24368 ,12744,12745,12707 ,0,0,0}, {24402,24366,24365 ,12742,12705,12704 ,0,0,0}, - {24405,24406,24369 ,12745,12746,12708 ,0,0,0}, {24403,24367,24366 ,12743,12706,12705 ,0,0,0}, - {24406,24407,24370 ,12746,12747,12709 ,0,0,0}, {24404,24368,24367 ,12744,12707,12706 ,0,0,0}, - {24407,24408,24371 ,12747,12748,12710 ,0,0,0}, {24405,24369,24368 ,12745,12708,12707 ,0,0,0}, - {24408,24266,24372 ,12748,12560,12711 ,0,0,0}, {24370,24369,24406 ,12709,12708,12746 ,0,0,0}, - {24409,24410,24411 ,12749,12750,12751 ,0,0,0}, {24371,24370,24407 ,12710,12709,12747 ,0,0,0}, - {24264,24410,24373 ,12558,12750,12712 ,0,0,0}, {24372,24371,24408 ,12711,12710,12748 ,0,0,0}, - {24410,24409,24374 ,12750,12749,12713 ,0,0,0}, {24265,24372,24266 ,12559,12711,12560 ,0,0,0}, - {24409,24412,24375 ,12749,12752,12714 ,0,0,0}, {24264,24373,24265 ,12558,12712,12559 ,0,0,0}, - {24412,24413,24376 ,12752,12753,12715 ,0,0,0}, {24410,24374,24373 ,12750,12713,12712 ,0,0,0}, - {24413,24414,24377 ,12753,12754,12716 ,0,0,0}, {24409,24375,24374 ,12749,12714,12713 ,0,0,0}, - {24414,24415,24378 ,12754,12755,12717 ,0,0,0}, {24376,24375,24412 ,12715,12714,12752 ,0,0,0}, - {24256,24379,24415 ,12543,12718,12755 ,0,0,0}, {24377,24376,24413 ,12716,12715,12753 ,0,0,0}, - {24256,24255,24380 ,12543,12542,12719 ,0,0,0}, {24378,24377,24414 ,12717,12716,12754 ,0,0,0}, - {24255,24416,24381 ,12542,12756,12720 ,0,0,0}, {24415,24379,24378 ,12755,12718,12717 ,0,0,0}, - {24416,24417,24382 ,12756,12757,12721 ,0,0,0}, {24256,24380,24379 ,12543,12719,12718 ,0,0,0}, - {24417,24418,24383 ,12757,12758,12722 ,0,0,0}, {24255,24381,24380 ,12542,12720,12719 ,0,0,0}, - {24418,24309,24384 ,12758,12622,12723 ,0,0,0}, {24382,24381,24416 ,12721,12720,12756 ,0,0,0}, - {24419,24420,24421 ,12759,12760,12761 ,0,0,0}, {24383,24382,24417 ,12722,12721,12757 ,0,0,0}, - {24310,24422,24385 ,12623,12762,12724 ,0,0,0}, {24384,24383,24418 ,12723,12722,12758 ,0,0,0}, - {24422,24423,24386 ,12762,12763,12725 ,0,0,0}, {24308,24384,24309 ,12621,12723,12622 ,0,0,0}, - {24423,24424,24387 ,12763,12764,12726 ,0,0,0}, {24310,24385,24308 ,12623,12724,12621 ,0,0,0}, - {24424,24425,24388 ,12764,12765,12727 ,0,0,0}, {24422,24386,24385 ,12762,12725,12724 ,0,0,0}, - {24425,24426,24389 ,12765,12766,12728 ,0,0,0}, {24423,24387,24386 ,12763,12726,12725 ,0,0,0}, - {24426,24427,24390 ,12766,12767,12729 ,0,0,0}, {24388,24387,24424 ,12727,12726,12764 ,0,0,0}, - {24427,24318,24391 ,12767,12639,12730 ,0,0,0}, {24389,24388,24425 ,12728,12727,12765 ,0,0,0}, - {24318,24320,24392 ,12639,12641,12731 ,0,0,0}, {24390,24389,24426 ,12729,12728,12766 ,0,0,0}, - {24320,24428,24393 ,12641,12768,12732 ,0,0,0}, {24427,24391,24390 ,12767,12730,12729 ,0,0,0}, - {24428,24429,24394 ,12768,12769,12733 ,0,0,0}, {24318,24392,24391 ,12639,12731,12730 ,0,0,0}, - {24429,24430,24395 ,12769,12770,12734 ,0,0,0}, {24320,24393,24392 ,12641,12732,12731 ,0,0,0}, - {24430,24431,24396 ,12770,12771,12735 ,0,0,0}, {24428,24394,24393 ,12768,12733,12732 ,0,0,0}, - {24431,24432,24331 ,12771,12772,12661 ,0,0,0}, {24429,24395,24394 ,12769,12734,12733 ,0,0,0}, - {24432,24433,24329 ,12772,12773,12659 ,0,0,0}, {24430,24396,24395 ,12770,12735,12734 ,0,0,0}, - {24433,24398,24397 ,12773,12737,12736 ,0,0,0}, {24431,24331,24396 ,12771,12661,12735 ,0,0,0}, - {24398,24341,24334 ,12737,12674,12666 ,0,0,0}, {24329,24331,24432 ,12659,12661,12772 ,0,0,0}, - {24434,24435,24436 ,12774,12775,12776 ,0,0,0}, {24433,24397,24329 ,12773,12736,12659 ,0,0,0}, - {24354,24336,24349 ,12687,12669,12682 ,0,0,0}, {24348,24437,24399 ,12681,12777,12738 ,0,0,0}, - {24333,24335,24358 ,12665,12667,12694 ,0,0,0}, {24341,24335,24334 ,12674,12667,12666 ,0,0,0}, - {24438,24399,24437 ,12778,12738,12777 ,0,0,0}, {24399,24400,24360 ,12738,12739,12697 ,0,0,0}, - {24359,24356,24355 ,12695,12689,12688 ,0,0,0}, {24355,24348,24399 ,12688,12681,12738 ,0,0,0}, - {24438,24400,24399 ,12778,12739,12738 ,0,0,0}, {24292,24363,24293 ,12597,12702,12598 ,0,0,0}, - {24439,24295,24296 ,12779,12600,12601 ,0,0,0}, {24439,24300,24295 ,12779,12606,12600 ,0,0,0}, - {24363,24401,24275 ,12702,12741,12577 ,0,0,0}, {24440,24401,24295 ,12780,12741,12600 ,0,0,0}, - {24288,24441,24402 ,12592,12781,12742 ,0,0,0}, {24289,24285,24440 ,12593,12589,12780 ,0,0,0}, - {24402,24442,24403 ,12742,12782,12743 ,0,0,0}, {24289,24287,24286 ,12593,12591,12590 ,0,0,0}, - {24443,24444,24445 ,12783,12784,12785 ,0,0,0}, {24287,24441,24288 ,12591,12781,12592 ,0,0,0}, - {24404,24403,24446 ,12744,12743,12786 ,0,0,0}, {24441,24442,24402 ,12781,12782,12742 ,0,0,0}, - {24405,24404,24445 ,12745,12744,12785 ,0,0,0}, {24442,24446,24403 ,12782,12786,12743 ,0,0,0}, - {24406,24405,24444 ,12746,12745,12784 ,0,0,0}, {24446,24445,24404 ,12786,12785,12744 ,0,0,0}, - {24407,24406,24447 ,12747,12746,12787 ,0,0,0}, {24445,24444,24405 ,12785,12784,12745 ,0,0,0}, - {24408,24407,24448 ,12748,12747,12788 ,0,0,0}, {24444,24447,24406 ,12784,12787,12746 ,0,0,0}, - {24266,24408,24449 ,12560,12748,12789 ,0,0,0}, {24447,24448,24407 ,12787,12788,12747 ,0,0,0}, - {24264,24266,24450 ,12558,12560,12790 ,0,0,0}, {24448,24449,24408 ,12788,12789,12748 ,0,0,0}, - {24410,24264,24451 ,12750,12558,12791 ,0,0,0}, {24450,24266,24449 ,12790,12560,12789 ,0,0,0}, - {24452,24453,24454 ,12792,12793,12794 ,0,0,0}, {24451,24264,24450 ,12791,12558,12790 ,0,0,0}, - {24412,24409,24455 ,12752,12749,12795 ,0,0,0}, {24451,24411,24410 ,12791,12751,12750 ,0,0,0}, - {24413,24412,24454 ,12753,12752,12794 ,0,0,0}, {24411,24455,24409 ,12751,12795,12749 ,0,0,0}, - {24414,24413,24453 ,12754,12753,12793 ,0,0,0}, {24455,24454,24412 ,12795,12794,12752 ,0,0,0}, - {24415,24414,24456 ,12755,12754,12796 ,0,0,0}, {24454,24453,24413 ,12794,12793,12753 ,0,0,0}, - {24256,24415,24457 ,12543,12755,12797 ,0,0,0}, {24456,24414,24453 ,12796,12754,12793 ,0,0,0}, - {24458,24459,24460 ,12798,12799,12800 ,0,0,0}, {24457,24415,24456 ,12797,12755,12796 ,0,0,0}, - {24416,24255,24461 ,12756,12542,12801 ,0,0,0}, {24457,24254,24256 ,12797,12541,12543 ,0,0,0}, - {24417,24416,24460 ,12757,12756,12800 ,0,0,0}, {24254,24461,24255 ,12541,12801,12542 ,0,0,0}, - {24418,24417,24459 ,12758,12757,12799 ,0,0,0}, {24461,24460,24416 ,12801,12800,12756 ,0,0,0}, - {24309,24418,24462 ,12622,12758,12802 ,0,0,0}, {24460,24459,24417 ,12800,12799,12757 ,0,0,0}, - {24310,24309,24463 ,12623,12622,12803 ,0,0,0}, {24459,24462,24418 ,12799,12802,12758 ,0,0,0}, - {24422,24310,24464 ,12762,12623,12804 ,0,0,0}, {24463,24309,24462 ,12803,12622,12802 ,0,0,0}, - {24423,24422,24465 ,12763,12762,12805 ,0,0,0}, {24464,24310,24463 ,12804,12623,12803 ,0,0,0}, - {24424,24423,24419 ,12764,12763,12759 ,0,0,0}, {24464,24465,24422 ,12804,12805,12762 ,0,0,0}, - {24425,24424,24421 ,12765,12764,12761 ,0,0,0}, {24465,24419,24423 ,12805,12759,12763 ,0,0,0}, - {24426,24425,24466 ,12766,12765,12806 ,0,0,0}, {24419,24421,24424 ,12759,12761,12764 ,0,0,0}, - {24427,24426,24467 ,12767,12766,12807 ,0,0,0}, {24421,24466,24425 ,12761,12806,12765 ,0,0,0}, - {24318,24427,24468 ,12639,12767,12808 ,0,0,0}, {24467,24426,24466 ,12807,12766,12806 ,0,0,0}, - {24469,24470,24471 ,12809,12810,12811 ,0,0,0}, {24468,24427,24467 ,12808,12767,12807 ,0,0,0}, - {24428,24320,24472 ,12768,12641,12812 ,0,0,0}, {24468,24319,24318 ,12808,12640,12639 ,0,0,0}, - {24429,24428,24471 ,12769,12768,12811 ,0,0,0}, {24319,24472,24320 ,12640,12812,12641 ,0,0,0}, - {24430,24429,24470 ,12770,12769,12810 ,0,0,0}, {24472,24471,24428 ,12812,12811,12768 ,0,0,0}, - {24431,24430,24473 ,12771,12770,12813 ,0,0,0}, {24471,24470,24429 ,12811,12810,12769 ,0,0,0}, - {24432,24431,24474 ,12772,12771,12814 ,0,0,0}, {24470,24473,24430 ,12810,12813,12770 ,0,0,0}, - {24433,24432,24475 ,12773,12772,12815 ,0,0,0}, {24473,24474,24431 ,12813,12814,12771 ,0,0,0}, - {24398,24433,24476 ,12737,12773,12816 ,0,0,0}, {24474,24475,24432 ,12814,12815,12772 ,0,0,0}, - {24341,24398,24339 ,12674,12737,12672 ,0,0,0}, {24475,24476,24433 ,12815,12816,12773 ,0,0,0}, - {24353,24341,24340 ,12686,12674,12673 ,0,0,0}, {24476,24339,24398 ,12816,12672,12737 ,0,0,0}, - {24477,24347,24436 ,12817,12680,12776 ,0,0,0}, {24478,24337,24336 ,12818,12670,12669 ,0,0,0}, - {24335,24353,24356 ,12667,12686,12689 ,0,0,0}, {24340,24354,24353 ,12673,12687,12686 ,0,0,0}, - {24479,24437,24435 ,12819,12777,12775 ,0,0,0}, {24479,24480,24437 ,12819,12820,12777 ,0,0,0}, - {24355,24349,24348 ,12688,12682,12681 ,0,0,0}, {24348,24338,24437 ,12681,12671,12777 ,0,0,0}, - {24438,24437,24480 ,12778,12777,12820 ,0,0,0}, {24292,24295,24401 ,12597,12600,12741 ,0,0,0}, - {24362,24300,24439 ,12701,12606,12779 ,0,0,0}, {24289,24481,24287 ,12593,12821,12591 ,0,0,0}, - {24401,24440,24285 ,12741,12780,12589 ,0,0,0}, {24300,24482,24440 ,12606,12822,12780 ,0,0,0}, - {24441,24287,24483 ,12781,12591,12823 ,0,0,0}, {24482,24481,24289 ,12822,12821,12593 ,0,0,0}, - {24442,24441,24484 ,12782,12781,12824 ,0,0,0}, {24287,24481,24483 ,12591,12821,12823 ,0,0,0}, - {24446,24442,24485 ,12786,12782,12825 ,0,0,0}, {24441,24483,24484 ,12781,12823,12824 ,0,0,0}, - {24445,24446,24486 ,12785,12786,12826 ,0,0,0}, {24484,24485,24442 ,12824,12825,12782 ,0,0,0}, - {24487,24447,24444 ,12827,12787,12784 ,0,0,0}, {24485,24486,24446 ,12825,12826,12786 ,0,0,0}, - {24488,24489,24490 ,12828,12829,12830 ,0,0,0}, {24486,24443,24445 ,12826,12783,12785 ,0,0,0}, - {24447,24491,24448 ,12787,12831,12788 ,0,0,0}, {24443,24487,24444 ,12783,12827,12784 ,0,0,0}, - {24448,24489,24449 ,12788,12829,12789 ,0,0,0}, {24487,24491,24447 ,12827,12831,12787 ,0,0,0}, - {24449,24488,24450 ,12789,12828,12790 ,0,0,0}, {24491,24489,24448 ,12831,12829,12788 ,0,0,0}, - {24450,24492,24451 ,12790,12832,12791 ,0,0,0}, {24489,24488,24449 ,12829,12828,12789 ,0,0,0}, - {24451,24493,24411 ,12791,12833,12751 ,0,0,0}, {24488,24492,24450 ,12828,12832,12790 ,0,0,0}, - {24455,24411,24494 ,12795,12751,12834 ,0,0,0}, {24492,24493,24451 ,12832,12833,12791 ,0,0,0}, - {24454,24455,24495 ,12794,12795,12835 ,0,0,0}, {24493,24494,24411 ,12833,12834,12751 ,0,0,0}, - {24496,24497,24498 ,12836,12837,12838 ,0,0,0}, {24494,24495,24455 ,12834,12835,12795 ,0,0,0}, - {24453,24499,24456 ,12793,12839,12796 ,0,0,0}, {24495,24452,24454 ,12835,12792,12794 ,0,0,0}, - {24456,24500,24457 ,12796,12840,12797 ,0,0,0}, {24452,24499,24453 ,12792,12839,12793 ,0,0,0}, - {24457,24501,24254 ,12797,12841,12541 ,0,0,0}, {24499,24500,24456 ,12839,12840,12796 ,0,0,0}, - {24461,24254,24502 ,12801,12541,12842 ,0,0,0}, {24500,24501,24457 ,12840,12841,12797 ,0,0,0}, - {24460,24461,24503 ,12800,12801,12843 ,0,0,0}, {24501,24502,24254 ,12841,12842,12541 ,0,0,0}, - {24504,24505,24506 ,12844,12845,12846 ,0,0,0}, {24502,24503,24461 ,12842,12843,12801 ,0,0,0}, - {24459,24507,24462 ,12799,12847,12802 ,0,0,0}, {24503,24458,24460 ,12843,12798,12800 ,0,0,0}, - {24462,24508,24463 ,12802,12848,12803 ,0,0,0}, {24458,24507,24459 ,12798,12847,12799 ,0,0,0}, - {24463,24509,24464 ,12803,12849,12804 ,0,0,0}, {24507,24508,24462 ,12847,12848,12802 ,0,0,0}, - {24464,24510,24465 ,12804,12850,12805 ,0,0,0}, {24508,24509,24463 ,12848,12849,12803 ,0,0,0}, - {24419,24465,24511 ,12759,12805,12851 ,0,0,0}, {24509,24510,24464 ,12849,12850,12804 ,0,0,0}, - {24512,24513,24514 ,12852,12853,12854 ,0,0,0}, {24510,24511,24465 ,12850,12851,12805 ,0,0,0}, - {24421,24515,24466 ,12761,12855,12806 ,0,0,0}, {24511,24420,24419 ,12851,12760,12759 ,0,0,0}, - {24466,24513,24467 ,12806,12853,12807 ,0,0,0}, {24420,24515,24421 ,12760,12855,12761 ,0,0,0}, - {24467,24512,24468 ,12807,12852,12808 ,0,0,0}, {24515,24513,24466 ,12855,12853,12806 ,0,0,0}, - {24468,24516,24319 ,12808,12856,12640 ,0,0,0}, {24513,24512,24467 ,12853,12852,12807 ,0,0,0}, - {24472,24319,24517 ,12812,12640,12857 ,0,0,0}, {24512,24516,24468 ,12852,12856,12808 ,0,0,0}, - {24471,24472,24518 ,12811,12812,12858 ,0,0,0}, {24516,24517,24319 ,12856,12857,12640 ,0,0,0}, - {24519,24473,24470 ,12859,12813,12810 ,0,0,0}, {24517,24518,24472 ,12857,12858,12812 ,0,0,0}, - {24520,24521,24522 ,12860,12861,12862 ,0,0,0}, {24518,24469,24471 ,12858,12809,12811 ,0,0,0}, - {24473,24523,24474 ,12813,12863,12814 ,0,0,0}, {24469,24519,24470 ,12809,12859,12810 ,0,0,0}, - {24474,24521,24475 ,12814,12861,12815 ,0,0,0}, {24519,24523,24473 ,12859,12863,12813 ,0,0,0}, - {24475,24520,24476 ,12815,12860,12816 ,0,0,0}, {24523,24521,24474 ,12863,12861,12814 ,0,0,0}, - {24476,24524,24339 ,12816,12864,12672 ,0,0,0}, {24521,24520,24475 ,12861,12860,12815 ,0,0,0}, - {24339,24525,24340 ,12672,12865,12673 ,0,0,0}, {24520,24524,24476 ,12860,12864,12816 ,0,0,0}, - {24340,24526,24354 ,12673,12866,12687 ,0,0,0}, {24524,24525,24339 ,12864,12865,12672 ,0,0,0}, - {24354,24478,24336 ,12687,12818,12669 ,0,0,0}, {24526,24340,24525 ,12866,12673,12865 ,0,0,0}, - {24343,24337,24527 ,12676,12670,12867 ,0,0,0}, {24354,24526,24478 ,12687,12866,12818 ,0,0,0}, - {24435,24528,24436 ,12775,12868,12776 ,0,0,0}, {24437,24338,24435 ,12777,12671,12775 ,0,0,0}, - {24348,24336,24338 ,12681,12669,12671 ,0,0,0}, {24338,24528,24435 ,12671,12868,12775 ,0,0,0}, - {24479,24435,24434 ,12819,12775,12774 ,0,0,0}, {24295,24300,24440 ,12600,12606,12780 ,0,0,0}, - {24280,24279,24301 ,12583,12582,12607 ,0,0,0}, {24481,24529,24483 ,12821,12869,12823 ,0,0,0}, - {24440,24482,24289 ,12780,12822,12593 ,0,0,0}, {24279,24530,24482 ,12582,12870,12822 ,0,0,0}, - {24484,24483,24531 ,12824,12823,12871 ,0,0,0}, {24481,24530,24529 ,12821,12870,12869 ,0,0,0}, - {24485,24484,24532 ,12825,12824,12872 ,0,0,0}, {24483,24529,24531 ,12823,12869,12871 ,0,0,0}, - {24486,24485,24533 ,12826,12825,12873 ,0,0,0}, {24484,24531,24532 ,12824,12871,12872 ,0,0,0}, - {24443,24486,24534 ,12783,12826,12874 ,0,0,0}, {24485,24532,24533 ,12825,12872,12873 ,0,0,0}, - {24487,24443,24535 ,12827,12783,12875 ,0,0,0}, {24486,24533,24534 ,12826,12873,12874 ,0,0,0}, - {24491,24487,24536 ,12831,12827,12876 ,0,0,0}, {24443,24534,24535 ,12783,12874,12875 ,0,0,0}, - {24489,24491,24537 ,12829,12831,12877 ,0,0,0}, {24535,24536,24487 ,12875,12876,12827 ,0,0,0}, - {24538,24539,24540 ,12878,12879,12880 ,0,0,0}, {24536,24537,24491 ,12876,12877,12831 ,0,0,0}, - {24488,24541,24492 ,12828,12881,12832 ,0,0,0}, {24537,24490,24489 ,12877,12830,12829 ,0,0,0}, - {24492,24540,24493 ,12832,12880,12833 ,0,0,0}, {24490,24541,24488 ,12830,12881,12828 ,0,0,0}, - {24493,24542,24494 ,12833,12882,12834 ,0,0,0}, {24541,24540,24492 ,12881,12880,12832 ,0,0,0}, - {24495,24494,24543 ,12835,12834,12883 ,0,0,0}, {24540,24542,24493 ,12880,12882,12833 ,0,0,0}, - {24452,24495,24544 ,12792,12835,12884 ,0,0,0}, {24494,24542,24543 ,12834,12882,12883 ,0,0,0}, - {24499,24452,24545 ,12839,12792,12885 ,0,0,0}, {24495,24543,24544 ,12835,12883,12884 ,0,0,0}, - {24500,24499,24546 ,12840,12839,12886 ,0,0,0}, {24544,24545,24452 ,12884,12885,12792 ,0,0,0}, - {24500,24547,24501 ,12840,12887,12841 ,0,0,0}, {24545,24546,24499 ,12885,12886,12839 ,0,0,0}, - {24501,24497,24502 ,12841,12837,12842 ,0,0,0}, {24546,24547,24500 ,12886,12887,12840 ,0,0,0}, - {24503,24502,24548 ,12843,12842,12888 ,0,0,0}, {24547,24497,24501 ,12887,12837,12841 ,0,0,0}, - {24458,24503,24549 ,12798,12843,12889 ,0,0,0}, {24502,24497,24548 ,12842,12837,12888 ,0,0,0}, - {24507,24458,24550 ,12847,12798,12890 ,0,0,0}, {24503,24548,24549 ,12843,12888,12889 ,0,0,0}, - {24508,24507,24551 ,12848,12847,12891 ,0,0,0}, {24549,24550,24458 ,12889,12890,12798 ,0,0,0}, - {24508,24552,24509 ,12848,12892,12849 ,0,0,0}, {24550,24551,24507 ,12890,12891,12847 ,0,0,0}, - {24509,24505,24510 ,12849,12845,12850 ,0,0,0}, {24551,24552,24508 ,12891,12892,12848 ,0,0,0}, - {24511,24510,24553 ,12851,12850,12893 ,0,0,0}, {24552,24505,24509 ,12892,12845,12849 ,0,0,0}, - {24420,24511,24554 ,12760,12851,12894 ,0,0,0}, {24510,24505,24553 ,12850,12845,12893 ,0,0,0}, - {24515,24420,24555 ,12855,12760,12895 ,0,0,0}, {24511,24553,24554 ,12851,12893,12894 ,0,0,0}, - {24513,24515,24556 ,12853,12855,12896 ,0,0,0}, {24554,24555,24420 ,12894,12895,12760 ,0,0,0}, - {24557,24558,24559 ,12897,12898,12899 ,0,0,0}, {24555,24556,24515 ,12895,12896,12855 ,0,0,0}, - {24512,24560,24516 ,12852,12900,12856 ,0,0,0}, {24556,24514,24513 ,12896,12854,12853 ,0,0,0}, - {24516,24559,24517 ,12856,12899,12857 ,0,0,0}, {24514,24560,24512 ,12854,12900,12852 ,0,0,0}, - {24518,24517,24561 ,12858,12857,12901 ,0,0,0}, {24560,24559,24516 ,12900,12899,12856 ,0,0,0}, - {24469,24518,24562 ,12809,12858,12902 ,0,0,0}, {24517,24559,24561 ,12857,12899,12901 ,0,0,0}, - {24519,24469,24563 ,12859,12809,12903 ,0,0,0}, {24518,24561,24562 ,12858,12901,12902 ,0,0,0}, - {24523,24519,24564 ,12863,12859,12904 ,0,0,0}, {24469,24562,24563 ,12809,12902,12903 ,0,0,0}, - {24521,24523,24565 ,12861,12863,12905 ,0,0,0}, {24563,24564,24519 ,12903,12904,12859 ,0,0,0}, - {24566,24524,24520 ,12906,12864,12860 ,0,0,0}, {24564,24565,24523 ,12904,12905,12863 ,0,0,0}, - {24567,24568,24569 ,12907,12908,12909 ,0,0,0}, {24565,24522,24521 ,12905,12862,12861 ,0,0,0}, - {24524,24570,24525 ,12864,12910,12865 ,0,0,0}, {24522,24566,24520 ,12862,12906,12860 ,0,0,0}, - {24525,24569,24526 ,12865,12909,12866 ,0,0,0}, {24566,24570,24524 ,12906,12910,12864 ,0,0,0}, - {24526,24571,24478 ,12866,12911,12818 ,0,0,0}, {24570,24569,24525 ,12910,12909,12865 ,0,0,0}, - {24478,24527,24337 ,12818,12867,12670 ,0,0,0}, {24569,24571,24526 ,12909,12911,12866 ,0,0,0}, - {24337,24343,24528 ,12670,12676,12868 ,0,0,0}, {24478,24571,24527 ,12818,12911,12867 ,0,0,0}, - {24572,24436,24347 ,12912,12776,12680 ,0,0,0}, {24573,24434,24436 ,12913,12774,12776 ,0,0,0}, - {24338,24337,24528 ,12671,12670,12868 ,0,0,0}, {24528,24477,24436 ,12868,12817,12776 ,0,0,0}, - {24572,24573,24436 ,12912,12913,12776 ,0,0,0}, {24300,24279,24482 ,12606,12582,12822 ,0,0,0}, - {24574,24278,24280 ,12914,12581,12583 ,0,0,0}, {24531,24529,24284 ,12871,12869,12587 ,0,0,0}, - {24482,24530,24481 ,12822,12870,12821 ,0,0,0}, {24278,24575,24530 ,12581,12915,12870 ,0,0,0}, - {24532,24531,24576 ,12872,12871,12916 ,0,0,0}, {24529,24575,24284 ,12869,12915,12587 ,0,0,0}, - {24577,24576,24578 ,12917,12916,12918 ,0,0,0}, {24531,24284,24576 ,12871,12587,12916 ,0,0,0}, - {24577,24579,24533 ,12917,12919,12873 ,0,0,0}, {24533,24532,24577 ,12873,12872,12917 ,0,0,0}, - {24579,24580,24534 ,12919,12920,12874 ,0,0,0}, {24534,24533,24579 ,12874,12873,12919 ,0,0,0}, - {24580,24581,24535 ,12920,12921,12875 ,0,0,0}, {24535,24534,24580 ,12875,12874,12920 ,0,0,0}, - {24581,24582,24536 ,12921,12922,12876 ,0,0,0}, {24536,24535,24581 ,12876,12875,12921 ,0,0,0}, - {24582,24583,24537 ,12922,12923,12877 ,0,0,0}, {24537,24536,24582 ,12877,12876,12922 ,0,0,0}, - {24583,24584,24490 ,12923,12924,12830 ,0,0,0}, {24490,24537,24583 ,12830,12877,12923 ,0,0,0}, - {24584,24538,24541 ,12924,12878,12881 ,0,0,0}, {24490,24584,24541 ,12830,12924,12881 ,0,0,0}, - {23894,24585,24586 ,12925,12926,12927 ,0,0,0}, {24541,24538,24540 ,12881,12878,12880 ,0,0,0}, - {24542,24587,24543 ,12882,12928,12883 ,0,0,0}, {24540,24539,24542 ,12880,12879,12882 ,0,0,0}, - {24588,24587,24586 ,12929,12928,12927 ,0,0,0}, {24539,24587,24542 ,12879,12928,12882 ,0,0,0}, - {24588,24589,24544 ,12929,12930,12884 ,0,0,0}, {24544,24543,24588 ,12884,12883,12929 ,0,0,0}, - {24589,24590,24545 ,12930,12931,12885 ,0,0,0}, {24545,24544,24589 ,12885,12884,12930 ,0,0,0}, - {24590,24591,24546 ,12931,12932,12886 ,0,0,0}, {24546,24545,24590 ,12886,12885,12931 ,0,0,0}, - {24591,24498,24547 ,12932,12838,12887 ,0,0,0}, {24546,24591,24547 ,12886,12932,12887 ,0,0,0}, - {24592,24593,24594 ,12933,12934,12935 ,0,0,0}, {24547,24498,24497 ,12887,12838,12837 ,0,0,0}, - {24496,24593,24548 ,12836,12934,12888 ,0,0,0}, {24497,24496,24548 ,12837,12836,12888 ,0,0,0}, - {24593,24595,24549 ,12934,12936,12889 ,0,0,0}, {24549,24548,24593 ,12889,12888,12934 ,0,0,0}, - {24595,24596,24550 ,12936,12937,12890 ,0,0,0}, {24550,24549,24595 ,12890,12889,12936 ,0,0,0}, - {24596,24597,24551 ,12937,12938,12891 ,0,0,0}, {24551,24550,24596 ,12891,12890,12937 ,0,0,0}, - {24597,24506,24552 ,12938,12846,12892 ,0,0,0}, {24551,24597,24552 ,12891,12938,12892 ,0,0,0}, - {24598,23885,24599 ,12939,12940,12941 ,0,0,0}, {24552,24506,24505 ,12892,12846,12845 ,0,0,0}, - {24554,24553,24600 ,12894,12893,12942 ,0,0,0}, {24505,24504,24553 ,12845,12844,12893 ,0,0,0}, - {24601,24600,24598 ,12943,12942,12939 ,0,0,0}, {24553,24504,24600 ,12893,12844,12942 ,0,0,0}, - {24601,24602,24555 ,12943,12944,12895 ,0,0,0}, {24555,24554,24601 ,12895,12894,12943 ,0,0,0}, - {24602,24603,24556 ,12944,12945,12896 ,0,0,0}, {24556,24555,24602 ,12896,12895,12944 ,0,0,0}, - {24603,24604,24514 ,12945,12946,12854 ,0,0,0}, {24514,24556,24603 ,12854,12896,12945 ,0,0,0}, - {24604,24557,24560 ,12946,12897,12900 ,0,0,0}, {24514,24604,24560 ,12854,12946,12900 ,0,0,0}, - {24605,24606,24607 ,12947,12948,12949 ,0,0,0}, {24560,24557,24559 ,12900,12897,12899 ,0,0,0}, - {24558,24606,24561 ,12898,12948,12901 ,0,0,0}, {24559,24558,24561 ,12899,12898,12901 ,0,0,0}, - {24606,24608,24562 ,12948,12950,12902 ,0,0,0}, {24562,24561,24606 ,12902,12901,12948 ,0,0,0}, - {24608,24609,24563 ,12950,12951,12903 ,0,0,0}, {24563,24562,24608 ,12903,12902,12950 ,0,0,0}, - {24609,24610,24564 ,12951,12952,12904 ,0,0,0}, {24564,24563,24609 ,12904,12903,12951 ,0,0,0}, - {24610,24611,24565 ,12952,12953,12905 ,0,0,0}, {24565,24564,24610 ,12905,12904,12952 ,0,0,0}, - {24611,24612,24522 ,12953,12954,12862 ,0,0,0}, {24522,24565,24611 ,12862,12905,12953 ,0,0,0}, - {24612,24613,24566 ,12954,12955,12906 ,0,0,0}, {24566,24522,24612 ,12906,12862,12954 ,0,0,0}, - {24613,24567,24570 ,12955,12907,12910 ,0,0,0}, {24566,24613,24570 ,12906,12955,12910 ,0,0,0}, - {24571,24568,24614 ,12911,12908,12956 ,0,0,0}, {24570,24567,24569 ,12910,12907,12909 ,0,0,0}, - {24344,24343,24527 ,12677,12676,12867 ,0,0,0}, {24569,24568,24571 ,12909,12908,12911 ,0,0,0}, - {24342,24477,24343 ,12675,12817,12676 ,0,0,0}, {24571,24614,24527 ,12911,12956,12867 ,0,0,0}, - {24615,24351,24345 ,12957,12684,12678 ,0,0,0}, {24614,24344,24527 ,12956,12677,12867 ,0,0,0}, - {24342,24616,24617 ,12675,12958,12959 ,0,0,0}, {24618,24572,24347 ,12960,12912,12680 ,0,0,0}, - {24528,24343,24477 ,12868,12676,12817 ,0,0,0}, {24347,24477,24617 ,12680,12817,12959 ,0,0,0}, - {24346,24618,24347 ,12679,12960,12680 ,0,0,0}, {24279,24278,24530 ,12582,12581,12870 ,0,0,0}, - {24574,24281,24277 ,12914,12584,12580 ,0,0,0}, {24575,24277,24282 ,12915,12580,12585 ,0,0,0}, - {24530,24575,24529 ,12870,12915,12869 ,0,0,0}, {24284,24575,24282 ,12587,12915,12585 ,0,0,0}, - {24283,24578,24576 ,12586,12918,12916 ,0,0,0}, {24576,24284,24283 ,12916,12587,12586 ,0,0,0}, - {24578,24619,24577 ,12918,12961,12917 ,0,0,0}, {24620,24579,24619 ,12962,12919,12961 ,0,0,0}, - {24532,24576,24577 ,12872,12916,12917 ,0,0,0}, {24579,24577,24619 ,12919,12917,12961 ,0,0,0}, - {24621,24580,24620 ,12963,12920,12962 ,0,0,0}, {24580,24579,24620 ,12920,12919,12962 ,0,0,0}, - {24622,24581,24621 ,12964,12921,12963 ,0,0,0}, {24581,24580,24621 ,12921,12920,12963 ,0,0,0}, - {24623,24582,24622 ,12965,12922,12964 ,0,0,0}, {24582,24581,24622 ,12922,12921,12964 ,0,0,0}, - {24624,24583,24623 ,12966,12923,12965 ,0,0,0}, {24583,24582,24623 ,12923,12922,12965 ,0,0,0}, - {24625,24584,24624 ,12967,12924,12966 ,0,0,0}, {24584,24583,24624 ,12924,12923,12966 ,0,0,0}, - {24626,24538,24625 ,12968,12878,12967 ,0,0,0}, {24538,24584,24625 ,12878,12924,12967 ,0,0,0}, - {24627,24539,24626 ,12969,12879,12968 ,0,0,0}, {24539,24538,24626 ,12879,12878,12968 ,0,0,0}, - {24586,24587,24627 ,12927,12928,12969 ,0,0,0}, {24539,24627,24587 ,12879,12969,12928 ,0,0,0}, - {24586,24585,24588 ,12927,12926,12929 ,0,0,0}, {24628,24589,24585 ,12970,12930,12926 ,0,0,0}, - {24543,24587,24588 ,12883,12928,12929 ,0,0,0}, {24589,24588,24585 ,12930,12929,12926 ,0,0,0}, - {24629,24590,24628 ,12971,12931,12970 ,0,0,0}, {24590,24589,24628 ,12931,12930,12970 ,0,0,0}, - {24630,24591,24629 ,12972,12932,12971 ,0,0,0}, {24591,24590,24629 ,12932,12931,12971 ,0,0,0}, - {24631,24498,24630 ,12973,12838,12972 ,0,0,0}, {24498,24591,24630 ,12838,12932,12972 ,0,0,0}, - {24594,24496,24631 ,12935,12836,12973 ,0,0,0}, {24496,24498,24631 ,12836,12838,12973 ,0,0,0}, - {24594,23809,24592 ,12935,12974,12933 ,0,0,0}, {24496,24594,24593 ,12836,12935,12934 ,0,0,0}, - {24632,24595,24592 ,12975,12936,12933 ,0,0,0}, {24595,24593,24592 ,12936,12934,12933 ,0,0,0}, - {24633,24596,24632 ,12976,12937,12975 ,0,0,0}, {24596,24595,24632 ,12937,12936,12975 ,0,0,0}, - {24634,24597,24633 ,12977,12938,12976 ,0,0,0}, {24597,24596,24633 ,12938,12937,12976 ,0,0,0}, - {24635,24506,24634 ,12978,12846,12977 ,0,0,0}, {24506,24597,24634 ,12846,12938,12977 ,0,0,0}, - {24636,24504,24635 ,12979,12844,12978 ,0,0,0}, {24504,24506,24635 ,12844,12846,12978 ,0,0,0}, - {24598,24600,24636 ,12939,12942,12979 ,0,0,0}, {24504,24636,24600 ,12844,12979,12942 ,0,0,0}, - {24598,24599,24601 ,12939,12941,12943 ,0,0,0}, {24637,24602,24599 ,12980,12944,12941 ,0,0,0}, - {24554,24600,24601 ,12894,12942,12943 ,0,0,0}, {24602,24601,24599 ,12944,12943,12941 ,0,0,0}, - {24638,24603,24637 ,12981,12945,12980 ,0,0,0}, {24603,24602,24637 ,12945,12944,12980 ,0,0,0}, - {24639,24604,24638 ,12982,12946,12981 ,0,0,0}, {24604,24603,24638 ,12946,12945,12981 ,0,0,0}, - {24640,24557,24639 ,12983,12897,12982 ,0,0,0}, {24557,24604,24639 ,12897,12946,12982 ,0,0,0}, - {24607,24558,24640 ,12949,12898,12983 ,0,0,0}, {24558,24557,24640 ,12898,12897,12983 ,0,0,0}, - {24607,23831,24605 ,12949,12984,12947 ,0,0,0}, {24558,24607,24606 ,12898,12949,12948 ,0,0,0}, - {24641,24608,24605 ,12985,12950,12947 ,0,0,0}, {24608,24606,24605 ,12950,12948,12947 ,0,0,0}, - {24642,24609,24641 ,12986,12951,12985 ,0,0,0}, {24609,24608,24641 ,12951,12950,12985 ,0,0,0}, - {24643,24610,24642 ,12987,12952,12986 ,0,0,0}, {24610,24609,24642 ,12952,12951,12986 ,0,0,0}, - {24644,24611,24643 ,12988,12953,12987 ,0,0,0}, {24611,24610,24643 ,12953,12952,12987 ,0,0,0}, - {24645,24612,24644 ,12989,12954,12988 ,0,0,0}, {24612,24611,24644 ,12954,12953,12988 ,0,0,0}, - {24646,24613,24645 ,12990,12955,12989 ,0,0,0}, {24613,24612,24645 ,12955,12954,12989 ,0,0,0}, - {24647,24567,24646 ,12991,12907,12990 ,0,0,0}, {24567,24613,24646 ,12907,12955,12990 ,0,0,0}, - {24648,24568,24647 ,12992,12908,12991 ,0,0,0}, {24568,24567,24647 ,12908,12907,12991 ,0,0,0}, - {24649,24614,24648 ,12993,12956,12992 ,0,0,0}, {24614,24568,24648 ,12956,12908,12992 ,0,0,0}, - {24650,24344,24649 ,12994,12677,12993 ,0,0,0}, {24344,24614,24649 ,12677,12956,12993 ,0,0,0}, - {24650,24616,24342 ,12994,12958,12675 ,0,0,0}, {24342,24344,24650 ,12675,12677,12994 ,0,0,0}, - {24616,24615,24617 ,12958,12957,12959 ,0,0,0}, {24347,24617,24345 ,12680,12959,12678 ,0,0,0}, - {24477,24342,24617 ,12817,12675,12959 ,0,0,0}, {24615,24345,24617 ,12957,12678,12959 ,0,0,0}, - {24346,24345,24350 ,12679,12678,12683 ,0,0,0}, {24575,24278,24277 ,12915,12581,12580 ,0,0,0}, - {24277,24278,24574 ,12580,12581,12914 ,0,0,0}, {23903,23901,24282 ,12740,12995,12585 ,0,0,0}, - {24282,23901,24283 ,12585,12995,12586 ,0,0,0}, {23901,23769,24283 ,12995,12996,12586 ,0,0,0}, - {24283,23769,24578 ,12586,12996,12918 ,0,0,0}, {23769,23768,24578 ,12996,12997,12918 ,0,0,0}, - {24578,23768,24619 ,12918,12997,12961 ,0,0,0}, {23768,23789,24619 ,12997,12998,12961 ,0,0,0}, - {24619,23789,24620 ,12961,12998,12962 ,0,0,0}, {23789,23759,24620 ,12998,12999,12962 ,0,0,0}, - {24620,23759,24621 ,12962,12999,12963 ,0,0,0}, {23759,23794,24621 ,12999,13000,12963 ,0,0,0}, - {24621,23794,24622 ,12963,13000,12964 ,0,0,0}, {23794,23791,24622 ,13000,13001,12964 ,0,0,0}, - {24622,23791,24623 ,12964,13001,12965 ,0,0,0}, {23791,23796,24623 ,13001,13002,12965 ,0,0,0}, - {23796,23798,24624 ,13002,13003,12966 ,0,0,0}, {23796,24624,24623 ,13002,12966,12965 ,0,0,0}, - {23798,23764,24625 ,13003,13004,12967 ,0,0,0}, {23798,24625,24624 ,13003,12967,12966 ,0,0,0}, - {23764,23763,24626 ,13004,13005,12968 ,0,0,0}, {23764,24626,24625 ,13004,12968,12967 ,0,0,0}, - {23763,23800,24627 ,13005,13006,12969 ,0,0,0}, {23763,24627,24626 ,13005,12969,12968 ,0,0,0}, - {23800,23895,24586 ,13006,13007,12927 ,0,0,0}, {23800,24586,24627 ,13006,12927,12969 ,0,0,0}, - {23894,24586,23895 ,12925,12927,13007 ,0,0,0}, {23894,23803,24585 ,12925,13008,12926 ,0,0,0}, - {24585,23803,24628 ,12926,13008,12970 ,0,0,0}, {23803,23808,24628 ,13008,13009,12970 ,0,0,0}, - {24628,23808,24629 ,12970,13009,12971 ,0,0,0}, {23808,23806,24629 ,13009,13010,12971 ,0,0,0}, - {23806,23805,24630 ,13010,13011,12972 ,0,0,0}, {23806,24630,24629 ,13010,12972,12971 ,0,0,0}, - {23805,23893,24631 ,13011,13012,12973 ,0,0,0}, {23805,24631,24630 ,13011,12973,12972 ,0,0,0}, - {23893,23809,24594 ,13012,12974,12935 ,0,0,0}, {23893,24594,24631 ,13012,12935,12973 ,0,0,0}, - {23809,23892,24592 ,12974,13013,12933 ,0,0,0}, {23892,23888,24592 ,13013,13014,12933 ,0,0,0}, - {24592,23888,24632 ,12933,13014,12975 ,0,0,0}, {23888,23813,24632 ,13014,13015,12975 ,0,0,0}, - {24632,23813,24633 ,12975,13015,12976 ,0,0,0}, {23813,23815,24633 ,13015,13016,12976 ,0,0,0}, - {23815,23820,24634 ,13016,13017,12977 ,0,0,0}, {23815,24634,24633 ,13016,12977,12976 ,0,0,0}, - {23820,23818,24635 ,13017,13018,12978 ,0,0,0}, {23820,24635,24634 ,13017,12978,12977 ,0,0,0}, - {23818,23817,24636 ,13018,13019,12979 ,0,0,0}, {23818,24636,24635 ,13018,12979,12978 ,0,0,0}, - {23817,23886,24598 ,13019,13020,12939 ,0,0,0}, {23817,24598,24636 ,13019,12939,12979 ,0,0,0}, - {23885,24598,23886 ,12940,12939,13020 ,0,0,0}, {23885,23822,24599 ,12940,13021,12941 ,0,0,0}, - {24599,23822,24637 ,12941,13021,12980 ,0,0,0}, {23822,23829,24637 ,13021,13022,12980 ,0,0,0}, - {23829,23828,24638 ,13022,13023,12981 ,0,0,0}, {23829,24638,24637 ,13022,12981,12980 ,0,0,0}, - {23828,23827,24639 ,13023,13024,12982 ,0,0,0}, {23828,24639,24638 ,13023,12982,12981 ,0,0,0}, - {23827,23882,24640 ,13024,13025,12983 ,0,0,0}, {23827,24640,24639 ,13024,12983,12982 ,0,0,0}, - {23882,23831,24607 ,13025,12984,12949 ,0,0,0}, {23882,24607,24640 ,13025,12949,12983 ,0,0,0}, - {23831,23830,24605 ,12984,13026,12947 ,0,0,0}, {23830,23836,24605 ,13026,13027,12947 ,0,0,0}, - {24605,23836,24641 ,12947,13027,12985 ,0,0,0}, {23836,23835,24641 ,13027,13028,12985 ,0,0,0}, - {24641,23835,24642 ,12985,13028,12986 ,0,0,0}, {23835,23840,24642 ,13028,13029,12986 ,0,0,0}, - {24642,23840,24643 ,12986,13029,12987 ,0,0,0}, {23840,23838,24643 ,13029,13030,12987 ,0,0,0}, - {23838,23845,24644 ,13030,13031,12988 ,0,0,0}, {23838,24644,24643 ,13030,12988,12987 ,0,0,0}, - {23845,23842,24645 ,13031,13032,12989 ,0,0,0}, {23845,24645,24644 ,13031,12989,12988 ,0,0,0}, - {23842,23849,24646 ,13032,13033,12990 ,0,0,0}, {23842,24646,24645 ,13032,12990,12989 ,0,0,0}, - {23849,23846,24647 ,13033,13034,12991 ,0,0,0}, {23849,24647,24646 ,13033,12991,12990 ,0,0,0}, - {23846,23851,24648 ,13034,13035,12992 ,0,0,0}, {23846,24648,24647 ,13034,12992,12991 ,0,0,0}, - {23851,23850,24649 ,13035,13036,12993 ,0,0,0}, {23851,24649,24648 ,13035,12993,12992 ,0,0,0}, - {23850,23864,24650 ,13036,13037,12994 ,0,0,0}, {23850,24650,24649 ,13036,12994,12993 ,0,0,0}, - {23864,23863,24616 ,13037,13038,12958 ,0,0,0}, {23864,24616,24650 ,13037,12958,12994 ,0,0,0}, - {23863,23857,24615 ,13038,13039,12957 ,0,0,0}, {23863,24615,24616 ,13038,12957,12958 ,0,0,0}, - {23857,23859,24351 ,13039,12690,12684 ,0,0,0}, {23857,24351,24615 ,13039,12684,12957 ,0,0,0}, - {24352,24351,23859 ,12685,12684,12690 ,0,0,0}, {24651,24652,24653 ,13040,13041,13042 ,0,0,0}, - {24654,23728,23727 ,13043,13044,13045 ,0,0,0}, {24654,24655,23728 ,13043,13046,13044 ,0,0,0}, - {24656,23726,24657 ,13047,13048,13049 ,0,0,0}, {23727,24656,24654 ,13045,13047,13043 ,0,0,0}, - {24656,23727,23726 ,13047,13045,13048 ,0,0,0}, {23724,24658,23725 ,13050,13051,13052 ,0,0,0}, - {23639,23725,24658 ,13053,13052,13051 ,0,0,0}, {23639,24658,24657 ,13053,13051,13049 ,0,0,0}, - {23724,23723,24659 ,13050,13054,13055 ,0,0,0}, {23639,24657,23726 ,13053,13049,13048 ,0,0,0}, - {24658,23724,24659 ,13051,13050,13055 ,0,0,0}, {23729,23728,24655 ,13056,13044,13046 ,0,0,0}, - {24660,23722,24661 ,13057,13058,13059 ,0,0,0}, {24660,23723,23722 ,13057,13054,13058 ,0,0,0}, - {24662,24663,24664 ,13060,13061,13062 ,0,0,0}, {24665,24661,23721 ,13063,13059,13064 ,0,0,0}, - {23722,23721,24661 ,13058,13064,13059 ,0,0,0}, {24666,24665,23720 ,13065,13063,13066 ,0,0,0}, - {24666,23719,24667 ,13065,13067,13068 ,0,0,0}, {23720,23719,24666 ,13066,13067,13065 ,0,0,0}, - {24667,23719,23718 ,13068,13067,13069 ,0,0,0}, {23721,23720,24665 ,13064,13066,13063 ,0,0,0}, - {24659,23723,24660 ,13055,13054,13057 ,0,0,0}, {23717,23716,24668 ,13070,13071,13072 ,0,0,0}, - {23717,24669,23718 ,13070,13073,13069 ,0,0,0}, {23715,24670,23716 ,13074,13075,13071 ,0,0,0}, - {23717,24668,24669 ,13070,13072,13073 ,0,0,0}, {23715,23714,24671 ,13074,13076,13077 ,0,0,0}, - {24671,24670,23715 ,13077,13075,13074 ,0,0,0}, {24352,23410,23407 ,13078,11682,13079 ,0,0,0}, - {23716,24670,24668 ,13071,13075,13072 ,0,0,0}, {24671,23714,24672 ,13077,13076,13080 ,0,0,0}, - {24673,24352,23407 ,13081,13078,13079 ,0,0,0}, {24674,24675,24671 ,13082,13083,13077 ,0,0,0}, - {24676,24677,24678 ,13084,13085,13086 ,0,0,0}, {24679,24680,24681 ,13087,13088,13089 ,0,0,0}, - {24682,24683,24572 ,13090,13091,13092 ,0,0,0}, {24682,24346,24684 ,13090,13093,13094 ,0,0,0}, - {24672,23714,23713 ,13080,13076,13095 ,0,0,0}, {24673,23407,24678 ,13081,13079,13086 ,0,0,0}, - {24675,24685,24681 ,13083,13096,13089 ,0,0,0}, {24573,24683,24686 ,13097,13091,13098 ,0,0,0}, - {24687,24400,24688 ,13099,13100,13101 ,0,0,0}, {23276,24689,23713 ,13102,13103,13095 ,0,0,0}, - {24690,24479,24686 ,13104,13105,13098 ,0,0,0}, {24480,24479,24690 ,13106,13105,13104 ,0,0,0}, - {24573,24686,24434 ,13097,13098,13107 ,0,0,0}, {23281,24361,23279 ,11553,13108,13109 ,0,0,0}, - {23276,24687,24689 ,13102,13099,13103 ,0,0,0}, {24400,24687,24361 ,13100,13099,13108 ,0,0,0}, - {24687,23279,24361 ,13099,13109,13108 ,0,0,0}, {24685,24691,24681 ,13096,13110,13089 ,0,0,0}, - {24669,24667,23718 ,13073,13068,13069 ,0,0,0}, {24692,23729,24655 ,13111,13056,13046 ,0,0,0}, - {23730,24692,24693 ,13112,13111,13113 ,0,0,0}, {24692,23730,23729 ,13111,13112,13056 ,0,0,0}, - {24694,23689,24693 ,13114,13115,13113 ,0,0,0}, {23730,24693,23689 ,13112,13113,13115 ,0,0,0}, - {23731,24694,23732 ,13116,13114,13117 ,0,0,0}, {23731,23689,24694 ,13116,13115,13114 ,0,0,0}, - {23733,23732,24695 ,13118,13117,13119 ,0,0,0}, {24694,24695,23732 ,13114,13119,13117 ,0,0,0}, - {24696,23734,23733 ,13120,13121,13118 ,0,0,0}, {23733,24695,24696 ,13118,13119,13120 ,0,0,0}, - {24696,24697,23734 ,13120,13122,13121 ,0,0,0}, {23734,24697,23735 ,13121,13122,13123 ,0,0,0}, - {23735,24697,24698 ,13123,13122,13124 ,0,0,0}, {24699,24700,24701 ,13125,13126,13127 ,0,0,0}, - {24702,23736,24698 ,13128,13129,13124 ,0,0,0}, {23735,24698,23736 ,13123,13124,13129 ,0,0,0}, - {24702,24703,23737 ,13128,13130,13131 ,0,0,0}, {23737,23736,24702 ,13131,13129,13128 ,0,0,0}, - {23654,23738,24703 ,13132,13133,13130 ,0,0,0}, {24703,23738,23737 ,13130,13133,13131 ,0,0,0}, - {24704,23739,23654 ,13134,13135,13132 ,0,0,0}, {23654,24703,24704 ,13132,13130,13134 ,0,0,0}, - {23739,24705,23740 ,13135,13136,13137 ,0,0,0}, {24705,23739,24704 ,13136,13135,13134 ,0,0,0}, - {23741,23740,24706 ,13138,13137,13139 ,0,0,0}, {24705,24706,23740 ,13136,13139,13137 ,0,0,0}, - {24707,23741,24706 ,13140,13138,13139 ,0,0,0}, {24707,23742,23741 ,13140,13141,13138 ,0,0,0}, - {24707,24708,23742 ,13140,13142,13141 ,0,0,0}, {24709,24710,24711 ,13143,13144,13145 ,0,0,0}, - {23743,24708,24712 ,13146,13142,13147 ,0,0,0}, {24708,23743,23742 ,13142,13146,13141 ,0,0,0}, - {24713,23700,24712 ,13148,13149,13147 ,0,0,0}, {23743,24712,23700 ,13146,13147,13149 ,0,0,0}, - {23744,24713,23745 ,13150,13148,13151 ,0,0,0}, {23744,23700,24713 ,13150,13149,13148 ,0,0,0}, - {23746,23745,24714 ,13152,13151,13153 ,0,0,0}, {24713,24714,23745 ,13148,13153,13151 ,0,0,0}, - {24715,23747,23746 ,13154,13155,13152 ,0,0,0}, {23746,24714,24715 ,13152,13153,13154 ,0,0,0}, - {23747,24716,23748 ,13155,13156,13157 ,0,0,0}, {24716,23747,24715 ,13156,13155,13154 ,0,0,0}, - {23749,23748,24717 ,13158,13157,13159 ,0,0,0}, {24716,24717,23748 ,13156,13159,13157 ,0,0,0}, - {24718,23749,24717 ,13160,13158,13159 ,0,0,0}, {24718,23750,23749 ,13160,13161,13158 ,0,0,0}, - {24718,24719,23750 ,13160,13162,13161 ,0,0,0}, {24720,24721,24722 ,13163,13164,13165 ,0,0,0}, - {23751,24719,24721 ,13166,13162,13164 ,0,0,0}, {24719,23751,23750 ,13162,13166,13161 ,0,0,0}, - {24723,23752,24721 ,13167,13168,13164 ,0,0,0}, {23751,24721,23752 ,13166,13164,13168 ,0,0,0}, - {24724,24725,24726 ,13169,13170,13171 ,0,0,0}, {23753,23752,24723 ,13172,13168,13167 ,0,0,0}, - {24727,24728,24729 ,13173,13174,13175 ,0,0,0}, {24730,24731,24732 ,13176,13177,13178 ,0,0,0}, - {24733,24727,24734 ,13179,13173,13180 ,0,0,0}, {24735,24736,24737 ,13181,13182,13183 ,0,0,0}, - {24738,24739,24740 ,13184,13185,13186 ,0,0,0}, {24735,24741,24742 ,13181,13187,13188 ,0,0,0}, - {24743,24744,24745 ,13189,13190,13191 ,0,0,0}, {24742,24741,24746 ,13188,13187,13192 ,0,0,0}, - {23754,23753,24747 ,13193,13172,13194 ,0,0,0}, {23344,24746,24741 ,11616,13192,13187 ,0,0,0}, - {24748,24749,24750 ,13195,13196,13197 ,0,0,0}, {23753,24723,24747 ,13172,13167,13194 ,0,0,0}, - {23754,24732,23755 ,13193,13178,13198 ,0,0,0}, {24720,24723,24721 ,13163,13167,13164 ,0,0,0}, - {23756,23755,24749 ,13199,13198,13196 ,0,0,0}, {24732,24749,23755 ,13178,13196,13198 ,0,0,0}, - {23757,24748,23758 ,13200,13195,13201 ,0,0,0}, {23756,24749,24748 ,13199,13196,13195 ,0,0,0}, - {23758,24751,23378 ,13201,13202,11650 ,0,0,0}, {24748,24751,23758 ,13195,13202,13201 ,0,0,0}, - {23279,24687,23276 ,13109,13099,13102 ,0,0,0}, {24438,24688,24400 ,13203,13101,13100 ,0,0,0}, - {24438,24690,24688 ,13203,13104,13101 ,0,0,0}, {24689,24672,23713 ,13103,13080,13095 ,0,0,0}, - {24689,24688,24752 ,13103,13101,13204 ,0,0,0}, {24753,24670,24675 ,13205,13075,13083 ,0,0,0}, - {24672,24752,24674 ,13080,13204,13082 ,0,0,0}, {24754,24668,24753 ,13206,13072,13205 ,0,0,0}, - {24674,24671,24672 ,13082,13077,13080 ,0,0,0}, {24755,24669,24754 ,13207,13073,13206 ,0,0,0}, - {24675,24670,24671 ,13083,13075,13077 ,0,0,0}, {24756,24667,24755 ,13208,13068,13207 ,0,0,0}, - {24753,24668,24670 ,13205,13072,13075 ,0,0,0}, {24757,24666,24756 ,13209,13065,13208 ,0,0,0}, - {24754,24669,24668 ,13206,13073,13072 ,0,0,0}, {24758,24665,24757 ,13210,13063,13209 ,0,0,0}, - {24755,24667,24669 ,13207,13068,13073 ,0,0,0}, {24759,24661,24758 ,13211,13059,13210 ,0,0,0}, - {24756,24666,24667 ,13208,13065,13068 ,0,0,0}, {24759,24760,24660 ,13211,13212,13057 ,0,0,0}, - {24665,24666,24757 ,13063,13065,13209 ,0,0,0}, {24761,24659,24760 ,13213,13055,13212 ,0,0,0}, - {24661,24665,24758 ,13059,13063,13210 ,0,0,0}, {24662,24658,24761 ,13060,13051,13213 ,0,0,0}, - {24660,24661,24759 ,13057,13059,13211 ,0,0,0}, {24762,24657,24662 ,13214,13049,13060 ,0,0,0}, - {24659,24660,24760 ,13055,13057,13212 ,0,0,0}, {24763,24656,24762 ,13215,13047,13214 ,0,0,0}, - {24658,24659,24761 ,13051,13055,13213 ,0,0,0}, {24764,24654,24763 ,13216,13043,13215 ,0,0,0}, - {24662,24657,24658 ,13060,13049,13051 ,0,0,0}, {24765,24655,24764 ,13217,13046,13216 ,0,0,0}, - {24762,24656,24657 ,13214,13047,13049 ,0,0,0}, {24765,24766,24692 ,13217,13218,13111 ,0,0,0}, - {24654,24656,24763 ,13043,13047,13215 ,0,0,0}, {24767,24693,24766 ,13219,13113,13218 ,0,0,0}, - {24655,24654,24764 ,13046,13043,13216 ,0,0,0}, {24768,24694,24767 ,13220,13114,13219 ,0,0,0}, - {24692,24655,24765 ,13111,13046,13217 ,0,0,0}, {24769,24695,24768 ,13221,13119,13220 ,0,0,0}, - {24693,24692,24766 ,13113,13111,13218 ,0,0,0}, {24770,24696,24769 ,13222,13120,13221 ,0,0,0}, - {24694,24693,24767 ,13114,13113,13219 ,0,0,0}, {24771,24697,24770 ,13223,13122,13222 ,0,0,0}, - {24768,24695,24694 ,13220,13119,13114 ,0,0,0}, {24771,24772,24698 ,13223,13224,13124 ,0,0,0}, - {24696,24695,24769 ,13120,13119,13221 ,0,0,0}, {24773,24702,24772 ,13225,13128,13224 ,0,0,0}, - {24697,24696,24770 ,13122,13120,13222 ,0,0,0}, {24699,24703,24773 ,13125,13130,13225 ,0,0,0}, - {24698,24697,24771 ,13124,13122,13223 ,0,0,0}, {24774,24704,24699 ,13226,13134,13125 ,0,0,0}, - {24702,24698,24772 ,13128,13124,13224 ,0,0,0}, {24775,24705,24774 ,13227,13136,13226 ,0,0,0}, - {24703,24702,24773 ,13130,13128,13225 ,0,0,0}, {24776,24706,24775 ,13228,13139,13227 ,0,0,0}, - {24699,24704,24703 ,13125,13134,13130 ,0,0,0}, {24777,24707,24776 ,13229,13140,13228 ,0,0,0}, - {24774,24705,24704 ,13226,13136,13134 ,0,0,0}, {24777,24778,24708 ,13229,13230,13142 ,0,0,0}, - {24706,24705,24775 ,13139,13136,13227 ,0,0,0}, {24779,24712,24778 ,13231,13147,13230 ,0,0,0}, - {24707,24706,24776 ,13140,13139,13228 ,0,0,0}, {24780,24713,24779 ,13232,13148,13231 ,0,0,0}, - {24708,24707,24777 ,13142,13140,13229 ,0,0,0}, {24781,24714,24780 ,13233,13153,13232 ,0,0,0}, - {24712,24708,24778 ,13147,13142,13230 ,0,0,0}, {24782,24715,24781 ,13234,13154,13233 ,0,0,0}, - {24779,24713,24712 ,13231,13148,13147 ,0,0,0}, {24783,24716,24782 ,13235,13156,13234 ,0,0,0}, - {24780,24714,24713 ,13232,13153,13148 ,0,0,0}, {24784,24717,24783 ,13236,13159,13235 ,0,0,0}, - {24781,24715,24714 ,13233,13154,13153 ,0,0,0}, {24785,24718,24784 ,13237,13160,13236 ,0,0,0}, - {24782,24716,24715 ,13234,13156,13154 ,0,0,0}, {24785,24722,24719 ,13237,13165,13162 ,0,0,0}, - {24717,24716,24783 ,13159,13156,13235 ,0,0,0}, {24723,24720,24786 ,13167,13163,13238 ,0,0,0}, - {24718,24717,24784 ,13160,13159,13236 ,0,0,0}, {24740,24731,24744 ,13186,13177,13190 ,0,0,0}, - {24719,24718,24785 ,13162,13160,13237 ,0,0,0}, {24730,24747,24786 ,13176,13194,13238 ,0,0,0}, - {24721,24719,24722 ,13164,13162,13165 ,0,0,0}, {24730,24786,24787 ,13176,13238,13239 ,0,0,0}, - {24739,24750,24740 ,13185,13197,13186 ,0,0,0}, {24747,24732,23754 ,13194,13178,13193 ,0,0,0}, - {24747,24723,24786 ,13194,13167,13238 ,0,0,0}, {24788,24751,24789 ,13240,13202,13241 ,0,0,0}, - {24747,24730,24732 ,13194,13176,13178 ,0,0,0}, {24750,24749,24731 ,13197,13196,13177 ,0,0,0}, - {24790,24791,24751 ,13242,13243,13202 ,0,0,0}, {23756,24748,23757 ,13199,13195,13200 ,0,0,0}, - {24748,24789,24751 ,13195,13241,13202 ,0,0,0}, {23378,24751,24791 ,11650,13202,13243 ,0,0,0}, - {24687,24688,24689 ,13099,13101,13103 ,0,0,0}, {24480,24690,24438 ,13106,13104,13203 ,0,0,0}, - {24572,24618,24682 ,13092,13244,13090 ,0,0,0}, {24689,24752,24672 ,13103,13204,13080 ,0,0,0}, - {24752,24690,24792 ,13204,13104,13245 ,0,0,0}, {24681,24680,24753 ,13089,13088,13205 ,0,0,0}, - {24685,24674,24792 ,13096,13082,13245 ,0,0,0}, {24680,24793,24754 ,13088,13246,13206 ,0,0,0}, - {24685,24675,24674 ,13096,13083,13082 ,0,0,0}, {24793,24794,24755 ,13246,13247,13207 ,0,0,0}, - {24681,24753,24675 ,13089,13205,13083 ,0,0,0}, {24794,24795,24756 ,13247,13248,13208 ,0,0,0}, - {24680,24754,24753 ,13088,13206,13205 ,0,0,0}, {24795,24796,24757 ,13248,13249,13209 ,0,0,0}, - {24793,24755,24754 ,13246,13207,13206 ,0,0,0}, {24796,24797,24758 ,13249,13250,13210 ,0,0,0}, - {24794,24756,24755 ,13247,13208,13207 ,0,0,0}, {24797,24798,24759 ,13250,13251,13211 ,0,0,0}, - {24795,24757,24756 ,13248,13209,13208 ,0,0,0}, {24798,24799,24760 ,13251,13252,13212 ,0,0,0}, - {24796,24758,24757 ,13249,13210,13209 ,0,0,0}, {24799,24663,24761 ,13252,13061,13213 ,0,0,0}, - {24759,24758,24797 ,13211,13210,13250 ,0,0,0}, {24800,24801,24802 ,13253,13254,13255 ,0,0,0}, - {24760,24759,24798 ,13212,13211,13251 ,0,0,0}, {24664,24801,24762 ,13062,13254,13214 ,0,0,0}, - {24761,24760,24799 ,13213,13212,13252 ,0,0,0}, {24801,24800,24763 ,13254,13253,13215 ,0,0,0}, - {24662,24761,24663 ,13060,13213,13061 ,0,0,0}, {24800,24803,24764 ,13253,13256,13216 ,0,0,0}, - {24664,24762,24662 ,13062,13214,13060 ,0,0,0}, {24803,24804,24765 ,13256,13257,13217 ,0,0,0}, - {24801,24763,24762 ,13254,13215,13214 ,0,0,0}, {24804,24805,24766 ,13257,13258,13218 ,0,0,0}, - {24800,24764,24763 ,13253,13216,13215 ,0,0,0}, {24805,24806,24767 ,13258,13259,13219 ,0,0,0}, - {24765,24764,24803 ,13217,13216,13256 ,0,0,0}, {24652,24768,24806 ,13041,13220,13259 ,0,0,0}, - {24766,24765,24804 ,13218,13217,13257 ,0,0,0}, {24652,24651,24769 ,13041,13040,13221 ,0,0,0}, - {24767,24766,24805 ,13219,13218,13258 ,0,0,0}, {24651,24807,24770 ,13040,13260,13222 ,0,0,0}, - {24806,24768,24767 ,13259,13220,13219 ,0,0,0}, {24807,24808,24771 ,13260,13261,13223 ,0,0,0}, - {24652,24769,24768 ,13041,13221,13220 ,0,0,0}, {24808,24809,24772 ,13261,13262,13224 ,0,0,0}, - {24651,24770,24769 ,13040,13222,13221 ,0,0,0}, {24809,24700,24773 ,13262,13126,13225 ,0,0,0}, - {24771,24770,24807 ,13223,13222,13260 ,0,0,0}, {24810,24811,24812 ,13263,13264,13265 ,0,0,0}, - {24772,24771,24808 ,13224,13223,13261 ,0,0,0}, {24701,24813,24774 ,13127,13266,13226 ,0,0,0}, - {24773,24772,24809 ,13225,13224,13262 ,0,0,0}, {24813,24814,24775 ,13266,13267,13227 ,0,0,0}, - {24699,24773,24700 ,13125,13225,13126 ,0,0,0}, {24814,24815,24776 ,13267,13268,13228 ,0,0,0}, - {24701,24774,24699 ,13127,13226,13125 ,0,0,0}, {24815,24816,24777 ,13268,13269,13229 ,0,0,0}, - {24813,24775,24774 ,13266,13227,13226 ,0,0,0}, {24816,24817,24778 ,13269,13270,13230 ,0,0,0}, - {24814,24776,24775 ,13267,13228,13227 ,0,0,0}, {24817,24818,24779 ,13270,13271,13231 ,0,0,0}, - {24777,24776,24815 ,13229,13228,13268 ,0,0,0}, {24818,24709,24780 ,13271,13143,13232 ,0,0,0}, - {24778,24777,24816 ,13230,13229,13269 ,0,0,0}, {24709,24711,24781 ,13143,13145,13233 ,0,0,0}, - {24779,24778,24817 ,13231,13230,13270 ,0,0,0}, {24711,24819,24782 ,13145,13272,13234 ,0,0,0}, - {24818,24780,24779 ,13271,13232,13231 ,0,0,0}, {24819,24820,24783 ,13272,13273,13235 ,0,0,0}, - {24709,24781,24780 ,13143,13233,13232 ,0,0,0}, {24820,24821,24784 ,13273,13274,13236 ,0,0,0}, - {24711,24782,24781 ,13145,13234,13233 ,0,0,0}, {24821,24822,24785 ,13274,13275,13237 ,0,0,0}, - {24819,24783,24782 ,13272,13235,13234 ,0,0,0}, {24822,24823,24722 ,13275,13276,13165 ,0,0,0}, - {24820,24784,24783 ,13273,13236,13235 ,0,0,0}, {24823,24824,24720 ,13276,13277,13163 ,0,0,0}, - {24821,24785,24784 ,13274,13237,13236 ,0,0,0}, {24824,24787,24786 ,13277,13239,13238 ,0,0,0}, - {24822,24722,24785 ,13275,13165,13237 ,0,0,0}, {24787,24744,24730 ,13239,13190,13176 ,0,0,0}, - {24720,24722,24823 ,13163,13165,13276 ,0,0,0}, {24825,24739,24826 ,13278,13185,13279 ,0,0,0}, - {24720,24824,24786 ,13163,13277,13238 ,0,0,0}, {24750,24739,24789 ,13197,13185,13241 ,0,0,0}, - {24738,24826,24739 ,13184,13279,13185 ,0,0,0}, {24732,24731,24749 ,13178,13177,13196 ,0,0,0}, - {24744,24731,24730 ,13190,13177,13176 ,0,0,0}, {24827,24788,24724 ,13280,13240,13169 ,0,0,0}, - {24788,24790,24751 ,13240,13242,13202 ,0,0,0}, {24748,24750,24789 ,13195,13197,13241 ,0,0,0}, - {24788,24789,24825 ,13240,13241,13278 ,0,0,0}, {24827,24790,24788 ,13280,13242,13240 ,0,0,0}, - {24688,24690,24752 ,13101,13104,13204 ,0,0,0}, {24434,24686,24479 ,13107,13098,13105 ,0,0,0}, - {23405,24678,23407 ,13281,13086,13079 ,0,0,0}, {24752,24792,24674 ,13204,13245,13082 ,0,0,0}, - {24792,24686,24828 ,13245,13098,13282 ,0,0,0}, {24680,24829,24793 ,13088,13283,13246 ,0,0,0}, - {24691,24685,24828 ,13110,13096,13282 ,0,0,0}, {24793,24830,24794 ,13246,13284,13247 ,0,0,0}, - {24691,24679,24681 ,13110,13087,13089 ,0,0,0}, {24831,24832,24833 ,13285,13286,13287 ,0,0,0}, - {24679,24829,24680 ,13087,13283,13088 ,0,0,0}, {24795,24794,24834 ,13248,13247,13288 ,0,0,0}, - {24829,24830,24793 ,13283,13284,13246 ,0,0,0}, {24796,24795,24833 ,13249,13248,13287 ,0,0,0}, - {24830,24834,24794 ,13284,13288,13247 ,0,0,0}, {24797,24796,24832 ,13250,13249,13286 ,0,0,0}, - {24834,24833,24795 ,13288,13287,13248 ,0,0,0}, {24798,24797,24835 ,13251,13250,13289 ,0,0,0}, - {24833,24832,24796 ,13287,13286,13249 ,0,0,0}, {24799,24798,24836 ,13252,13251,13290 ,0,0,0}, - {24832,24835,24797 ,13286,13289,13250 ,0,0,0}, {24663,24799,24837 ,13061,13252,13291 ,0,0,0}, - {24835,24836,24798 ,13289,13290,13251 ,0,0,0}, {24664,24663,24838 ,13062,13061,13292 ,0,0,0}, - {24836,24837,24799 ,13290,13291,13252 ,0,0,0}, {24801,24664,24839 ,13254,13062,13293 ,0,0,0}, - {24838,24663,24837 ,13292,13061,13291 ,0,0,0}, {24840,24841,24842 ,13294,13295,13296 ,0,0,0}, - {24839,24664,24838 ,13293,13062,13292 ,0,0,0}, {24803,24800,24843 ,13256,13253,13297 ,0,0,0}, - {24839,24802,24801 ,13293,13255,13254 ,0,0,0}, {24804,24803,24842 ,13257,13256,13296 ,0,0,0}, - {24802,24843,24800 ,13255,13297,13253 ,0,0,0}, {24805,24804,24841 ,13258,13257,13295 ,0,0,0}, - {24843,24842,24803 ,13297,13296,13256 ,0,0,0}, {24806,24805,24844 ,13259,13258,13298 ,0,0,0}, - {24842,24841,24804 ,13296,13295,13257 ,0,0,0}, {24652,24806,24845 ,13041,13259,13299 ,0,0,0}, - {24844,24805,24841 ,13298,13258,13295 ,0,0,0}, {24846,24847,24848 ,13300,13301,13302 ,0,0,0}, - {24845,24806,24844 ,13299,13259,13298 ,0,0,0}, {24807,24651,24849 ,13260,13040,13303 ,0,0,0}, - {24845,24653,24652 ,13299,13042,13041 ,0,0,0}, {24808,24807,24848 ,13261,13260,13302 ,0,0,0}, - {24653,24849,24651 ,13042,13303,13040 ,0,0,0}, {24809,24808,24847 ,13262,13261,13301 ,0,0,0}, - {24849,24848,24807 ,13303,13302,13260 ,0,0,0}, {24700,24809,24850 ,13126,13262,13304 ,0,0,0}, - {24848,24847,24808 ,13302,13301,13261 ,0,0,0}, {24701,24700,24851 ,13127,13126,13305 ,0,0,0}, - {24847,24850,24809 ,13301,13304,13262 ,0,0,0}, {24813,24701,24852 ,13266,13127,13306 ,0,0,0}, - {24851,24700,24850 ,13305,13126,13304 ,0,0,0}, {24814,24813,24853 ,13267,13266,13307 ,0,0,0}, - {24852,24701,24851 ,13306,13127,13305 ,0,0,0}, {24815,24814,24810 ,13268,13267,13263 ,0,0,0}, - {24852,24853,24813 ,13306,13307,13266 ,0,0,0}, {24816,24815,24812 ,13269,13268,13265 ,0,0,0}, - {24853,24810,24814 ,13307,13263,13267 ,0,0,0}, {24817,24816,24854 ,13270,13269,13308 ,0,0,0}, - {24810,24812,24815 ,13263,13265,13268 ,0,0,0}, {24818,24817,24855 ,13271,13270,13309 ,0,0,0}, - {24812,24854,24816 ,13265,13308,13269 ,0,0,0}, {24709,24818,24856 ,13143,13271,13310 ,0,0,0}, - {24855,24817,24854 ,13309,13270,13308 ,0,0,0}, {24857,24858,24859 ,13311,13312,13313 ,0,0,0}, - {24856,24818,24855 ,13310,13271,13309 ,0,0,0}, {24819,24711,24860 ,13272,13145,13314 ,0,0,0}, - {24856,24710,24709 ,13310,13144,13143 ,0,0,0}, {24820,24819,24859 ,13273,13272,13313 ,0,0,0}, - {24710,24860,24711 ,13144,13314,13145 ,0,0,0}, {24821,24820,24858 ,13274,13273,13312 ,0,0,0}, - {24860,24859,24819 ,13314,13313,13272 ,0,0,0}, {24822,24821,24861 ,13275,13274,13315 ,0,0,0}, - {24859,24858,24820 ,13313,13312,13273 ,0,0,0}, {24823,24822,24862 ,13276,13275,13316 ,0,0,0}, - {24858,24861,24821 ,13312,13315,13274 ,0,0,0}, {24824,24823,24863 ,13277,13276,13317 ,0,0,0}, - {24861,24862,24822 ,13315,13316,13275 ,0,0,0}, {24787,24824,24864 ,13239,13277,13318 ,0,0,0}, - {24862,24863,24823 ,13316,13317,13276 ,0,0,0}, {24744,24787,24745 ,13190,13239,13191 ,0,0,0}, - {24863,24864,24824 ,13317,13318,13277 ,0,0,0}, {24740,24744,24743 ,13186,13190,13189 ,0,0,0}, - {24864,24745,24787 ,13318,13191,13239 ,0,0,0}, {24725,24826,24728 ,13170,13279,13174 ,0,0,0}, - {24826,24865,24728 ,13279,13319,13174 ,0,0,0}, {24731,24740,24750 ,13177,13186,13197 ,0,0,0}, - {24743,24738,24740 ,13189,13184,13186 ,0,0,0}, {24866,24724,24726 ,13320,13169,13171 ,0,0,0}, - {24788,24825,24724 ,13240,13278,13169 ,0,0,0}, {24789,24739,24825 ,13241,13185,13278 ,0,0,0}, - {24825,24725,24724 ,13278,13170,13169 ,0,0,0}, {24827,24724,24866 ,13280,13169,13320 ,0,0,0}, - {24686,24792,24690 ,13098,13245,13104 ,0,0,0}, {24572,24683,24573 ,13092,13091,13097 ,0,0,0}, - {24691,24867,24679 ,13110,13321,13087 ,0,0,0}, {24792,24828,24685 ,13245,13282,13096 ,0,0,0}, - {24683,24868,24828 ,13091,13322,13282 ,0,0,0}, {24829,24679,24869 ,13283,13087,13323 ,0,0,0}, - {24868,24867,24691 ,13322,13321,13110 ,0,0,0}, {24830,24829,24870 ,13284,13283,13324 ,0,0,0}, - {24679,24867,24869 ,13087,13321,13323 ,0,0,0}, {24834,24830,24871 ,13288,13284,13325 ,0,0,0}, - {24829,24869,24870 ,13283,13323,13324 ,0,0,0}, {24833,24834,24872 ,13287,13288,13326 ,0,0,0}, - {24870,24871,24830 ,13324,13325,13284 ,0,0,0}, {24873,24835,24832 ,13327,13289,13286 ,0,0,0}, - {24871,24872,24834 ,13325,13326,13288 ,0,0,0}, {24874,24875,24876 ,13328,13329,13330 ,0,0,0}, - {24872,24831,24833 ,13326,13285,13287 ,0,0,0}, {24835,24877,24836 ,13289,13331,13290 ,0,0,0}, - {24831,24873,24832 ,13285,13327,13286 ,0,0,0}, {24836,24875,24837 ,13290,13329,13291 ,0,0,0}, - {24873,24877,24835 ,13327,13331,13289 ,0,0,0}, {24837,24874,24838 ,13291,13328,13292 ,0,0,0}, - {24877,24875,24836 ,13331,13329,13290 ,0,0,0}, {24838,24878,24839 ,13292,13332,13293 ,0,0,0}, - {24875,24874,24837 ,13329,13328,13291 ,0,0,0}, {24839,24879,24802 ,13293,13333,13255 ,0,0,0}, - {24874,24878,24838 ,13328,13332,13292 ,0,0,0}, {24843,24802,24880 ,13297,13255,13334 ,0,0,0}, - {24878,24879,24839 ,13332,13333,13293 ,0,0,0}, {24842,24843,24881 ,13296,13297,13335 ,0,0,0}, - {24879,24880,24802 ,13333,13334,13255 ,0,0,0}, {24882,24883,24884 ,13336,13337,13338 ,0,0,0}, - {24880,24881,24843 ,13334,13335,13297 ,0,0,0}, {24841,24885,24844 ,13295,13339,13298 ,0,0,0}, - {24881,24840,24842 ,13335,13294,13296 ,0,0,0}, {24844,24886,24845 ,13298,13340,13299 ,0,0,0}, - {24840,24885,24841 ,13294,13339,13295 ,0,0,0}, {24845,24887,24653 ,13299,13341,13042 ,0,0,0}, - {24885,24886,24844 ,13339,13340,13298 ,0,0,0}, {24849,24653,24888 ,13303,13042,13342 ,0,0,0}, - {24886,24887,24845 ,13340,13341,13299 ,0,0,0}, {24848,24849,24889 ,13302,13303,13343 ,0,0,0}, - {24887,24888,24653 ,13341,13342,13042 ,0,0,0}, {24890,24891,24892 ,13344,13345,13346 ,0,0,0}, - {24888,24889,24849 ,13342,13343,13303 ,0,0,0}, {24847,24893,24850 ,13301,13347,13304 ,0,0,0}, - {24889,24846,24848 ,13343,13300,13302 ,0,0,0}, {24850,24894,24851 ,13304,13348,13305 ,0,0,0}, - {24846,24893,24847 ,13300,13347,13301 ,0,0,0}, {24851,24895,24852 ,13305,13349,13306 ,0,0,0}, - {24893,24894,24850 ,13347,13348,13304 ,0,0,0}, {24852,24896,24853 ,13306,13350,13307 ,0,0,0}, - {24894,24895,24851 ,13348,13349,13305 ,0,0,0}, {24810,24853,24897 ,13263,13307,13351 ,0,0,0}, - {24895,24896,24852 ,13349,13350,13306 ,0,0,0}, {24898,24899,24900 ,13352,13353,13354 ,0,0,0}, - {24896,24897,24853 ,13350,13351,13307 ,0,0,0}, {24812,24901,24854 ,13265,13355,13308 ,0,0,0}, - {24897,24811,24810 ,13351,13264,13263 ,0,0,0}, {24854,24899,24855 ,13308,13353,13309 ,0,0,0}, - {24811,24901,24812 ,13264,13355,13265 ,0,0,0}, {24855,24898,24856 ,13309,13352,13310 ,0,0,0}, - {24901,24899,24854 ,13355,13353,13308 ,0,0,0}, {24856,24902,24710 ,13310,13356,13144 ,0,0,0}, - {24899,24898,24855 ,13353,13352,13309 ,0,0,0}, {24860,24710,24903 ,13314,13144,13357 ,0,0,0}, - {24898,24902,24856 ,13352,13356,13310 ,0,0,0}, {24859,24860,24904 ,13313,13314,13358 ,0,0,0}, - {24902,24903,24710 ,13356,13357,13144 ,0,0,0}, {24905,24861,24858 ,13359,13315,13312 ,0,0,0}, - {24903,24904,24860 ,13357,13358,13314 ,0,0,0}, {24906,24907,24908 ,13360,13361,13362 ,0,0,0}, - {24904,24857,24859 ,13358,13311,13313 ,0,0,0}, {24861,24909,24862 ,13315,13363,13316 ,0,0,0}, - {24857,24905,24858 ,13311,13359,13312 ,0,0,0}, {24862,24907,24863 ,13316,13361,13317 ,0,0,0}, - {24905,24909,24861 ,13359,13363,13315 ,0,0,0}, {24863,24906,24864 ,13317,13360,13318 ,0,0,0}, - {24909,24907,24862 ,13363,13361,13316 ,0,0,0}, {24864,24910,24745 ,13318,13364,13191 ,0,0,0}, - {24907,24906,24863 ,13361,13360,13317 ,0,0,0}, {24745,24911,24743 ,13191,13365,13189 ,0,0,0}, - {24906,24910,24864 ,13360,13364,13318 ,0,0,0}, {24743,24912,24738 ,13189,13366,13184 ,0,0,0}, - {24910,24911,24745 ,13364,13365,13191 ,0,0,0}, {24738,24865,24826 ,13184,13319,13279 ,0,0,0}, - {24912,24743,24911 ,13366,13189,13365 ,0,0,0}, {24913,24914,24726 ,13367,13368,13171 ,0,0,0}, - {24738,24912,24865 ,13184,13366,13319 ,0,0,0}, {24915,24726,24914 ,13369,13171,13368 ,0,0,0}, - {24916,24866,24726 ,13370,13320,13171 ,0,0,0}, {24825,24826,24725 ,13278,13279,13170 ,0,0,0}, - {24725,24913,24726 ,13170,13367,13171 ,0,0,0}, {24915,24916,24726 ,13369,13370,13171 ,0,0,0}, - {24683,24828,24686 ,13091,13282,13098 ,0,0,0}, {24346,24682,24618 ,13093,13090,13244 ,0,0,0}, - {24867,24917,24869 ,13321,13371,13323 ,0,0,0}, {24828,24868,24691 ,13282,13322,13110 ,0,0,0}, - {24682,24918,24868 ,13090,13372,13322 ,0,0,0}, {24870,24869,24919 ,13324,13323,13373 ,0,0,0}, - {24867,24918,24917 ,13321,13372,13371 ,0,0,0}, {24871,24870,24920 ,13325,13324,13374 ,0,0,0}, - {24869,24917,24919 ,13323,13371,13373 ,0,0,0}, {24872,24871,24921 ,13326,13325,13375 ,0,0,0}, - {24870,24919,24920 ,13324,13373,13374 ,0,0,0}, {24831,24872,24922 ,13285,13326,13376 ,0,0,0}, - {24871,24920,24921 ,13325,13374,13375 ,0,0,0}, {24873,24831,24923 ,13327,13285,13377 ,0,0,0}, - {24872,24921,24922 ,13326,13375,13376 ,0,0,0}, {24877,24873,24924 ,13331,13327,13378 ,0,0,0}, - {24831,24922,24923 ,13285,13376,13377 ,0,0,0}, {24875,24877,24925 ,13329,13331,13379 ,0,0,0}, - {24923,24924,24873 ,13377,13378,13327 ,0,0,0}, {24926,24927,24928 ,13380,13381,13382 ,0,0,0}, - {24924,24925,24877 ,13378,13379,13331 ,0,0,0}, {24874,24929,24878 ,13328,13383,13332 ,0,0,0}, - {24925,24876,24875 ,13379,13330,13329 ,0,0,0}, {24878,24928,24879 ,13332,13382,13333 ,0,0,0}, - {24876,24929,24874 ,13330,13383,13328 ,0,0,0}, {24879,24930,24880 ,13333,13384,13334 ,0,0,0}, - {24929,24928,24878 ,13383,13382,13332 ,0,0,0}, {24881,24880,24931 ,13335,13334,13385 ,0,0,0}, - {24928,24930,24879 ,13382,13384,13333 ,0,0,0}, {24840,24881,24932 ,13294,13335,13386 ,0,0,0}, - {24880,24930,24931 ,13334,13384,13385 ,0,0,0}, {24885,24840,24933 ,13339,13294,13387 ,0,0,0}, - {24881,24931,24932 ,13335,13385,13386 ,0,0,0}, {24886,24885,24934 ,13340,13339,13388 ,0,0,0}, - {24932,24933,24840 ,13386,13387,13294 ,0,0,0}, {24886,24935,24887 ,13340,13389,13341 ,0,0,0}, - {24933,24934,24885 ,13387,13388,13339 ,0,0,0}, {24887,24883,24888 ,13341,13337,13342 ,0,0,0}, - {24934,24935,24886 ,13388,13389,13340 ,0,0,0}, {24889,24888,24936 ,13343,13342,13390 ,0,0,0}, - {24935,24883,24887 ,13389,13337,13341 ,0,0,0}, {24846,24889,24937 ,13300,13343,13391 ,0,0,0}, - {24888,24883,24936 ,13342,13337,13390 ,0,0,0}, {24893,24846,24938 ,13347,13300,13392 ,0,0,0}, - {24889,24936,24937 ,13343,13390,13391 ,0,0,0}, {24894,24893,24939 ,13348,13347,13393 ,0,0,0}, - {24937,24938,24846 ,13391,13392,13300 ,0,0,0}, {24894,24940,24895 ,13348,13394,13349 ,0,0,0}, - {24938,24939,24893 ,13392,13393,13347 ,0,0,0}, {24895,24891,24896 ,13349,13345,13350 ,0,0,0}, - {24939,24940,24894 ,13393,13394,13348 ,0,0,0}, {24897,24896,24941 ,13351,13350,13395 ,0,0,0}, - {24940,24891,24895 ,13394,13345,13349 ,0,0,0}, {24811,24897,24942 ,13264,13351,13396 ,0,0,0}, - {24896,24891,24941 ,13350,13345,13395 ,0,0,0}, {24901,24811,24943 ,13355,13264,13397 ,0,0,0}, - {24897,24941,24942 ,13351,13395,13396 ,0,0,0}, {24899,24901,24944 ,13353,13355,13398 ,0,0,0}, - {24942,24943,24811 ,13396,13397,13264 ,0,0,0}, {24945,24946,24947 ,13399,13400,13401 ,0,0,0}, - {24943,24944,24901 ,13397,13398,13355 ,0,0,0}, {24898,24948,24902 ,13352,13402,13356 ,0,0,0}, - {24944,24900,24899 ,13398,13354,13353 ,0,0,0}, {24902,24947,24903 ,13356,13401,13357 ,0,0,0}, - {24900,24948,24898 ,13354,13402,13352 ,0,0,0}, {24904,24903,24949 ,13358,13357,13403 ,0,0,0}, - {24948,24947,24902 ,13402,13401,13356 ,0,0,0}, {24857,24904,24950 ,13311,13358,13404 ,0,0,0}, - {24903,24947,24949 ,13357,13401,13403 ,0,0,0}, {24905,24857,24951 ,13359,13311,13405 ,0,0,0}, - {24904,24949,24950 ,13358,13403,13404 ,0,0,0}, {24909,24905,24952 ,13363,13359,13406 ,0,0,0}, - {24857,24950,24951 ,13311,13404,13405 ,0,0,0}, {24907,24909,24953 ,13361,13363,13407 ,0,0,0}, - {24951,24952,24905 ,13405,13406,13359 ,0,0,0}, {24954,24910,24906 ,13408,13364,13360 ,0,0,0}, - {24952,24953,24909 ,13406,13407,13363 ,0,0,0}, {24955,24956,24957 ,13409,13410,13411 ,0,0,0}, - {24953,24908,24907 ,13407,13362,13361 ,0,0,0}, {24910,24958,24911 ,13364,13412,13365 ,0,0,0}, - {24908,24954,24906 ,13362,13408,13360 ,0,0,0}, {24911,24957,24912 ,13365,13411,13366 ,0,0,0}, - {24954,24958,24910 ,13408,13412,13364 ,0,0,0}, {24912,24959,24865 ,13366,13413,13319 ,0,0,0}, - {24958,24957,24911 ,13412,13411,13365 ,0,0,0}, {24865,24729,24728 ,13319,13175,13174 ,0,0,0}, - {24957,24959,24912 ,13411,13413,13366 ,0,0,0}, {24728,24727,24913 ,13174,13173,13367 ,0,0,0}, - {24729,24865,24959 ,13175,13319,13413 ,0,0,0}, {24914,24960,24737 ,13368,13414,13183 ,0,0,0}, - {24961,24962,24914 ,13415,13416,13368 ,0,0,0}, {24725,24728,24913 ,13170,13174,13367 ,0,0,0}, - {24913,24960,24914 ,13367,13414,13368 ,0,0,0}, {24915,24914,24962 ,13369,13368,13416 ,0,0,0}, - {24683,24682,24868 ,13091,13090,13322 ,0,0,0}, {24350,24684,24346 ,13417,13094,13093 ,0,0,0}, - {24919,24917,24677 ,13373,13371,13085 ,0,0,0}, {24868,24918,24867 ,13322,13372,13321 ,0,0,0}, - {24684,24963,24918 ,13094,13418,13372 ,0,0,0}, {24920,24919,24964 ,13374,13373,13419 ,0,0,0}, - {24917,24963,24677 ,13371,13418,13085 ,0,0,0}, {24965,24964,24966 ,13420,13419,13421 ,0,0,0}, - {24919,24677,24964 ,13373,13085,13419 ,0,0,0}, {24965,24967,24921 ,13420,13422,13375 ,0,0,0}, - {24921,24920,24965 ,13375,13374,13420 ,0,0,0}, {24967,24968,24922 ,13422,13423,13376 ,0,0,0}, - {24922,24921,24967 ,13376,13375,13422 ,0,0,0}, {24968,24969,24923 ,13423,13424,13377 ,0,0,0}, - {24923,24922,24968 ,13377,13376,13423 ,0,0,0}, {24969,24970,24924 ,13424,13425,13378 ,0,0,0}, - {24924,24923,24969 ,13378,13377,13424 ,0,0,0}, {24970,24971,24925 ,13425,13426,13379 ,0,0,0}, - {24925,24924,24970 ,13379,13378,13425 ,0,0,0}, {24971,24972,24876 ,13426,13427,13330 ,0,0,0}, - {24876,24925,24971 ,13330,13379,13426 ,0,0,0}, {24972,24926,24929 ,13427,13380,13383 ,0,0,0}, - {24876,24972,24929 ,13330,13427,13383 ,0,0,0}, {23393,24973,24974 ,13428,13429,13430 ,0,0,0}, - {24929,24926,24928 ,13383,13380,13382 ,0,0,0}, {24930,24975,24931 ,13384,13431,13385 ,0,0,0}, - {24928,24927,24930 ,13382,13381,13384 ,0,0,0}, {24976,24975,24974 ,13432,13431,13430 ,0,0,0}, - {24927,24975,24930 ,13381,13431,13384 ,0,0,0}, {24976,24977,24932 ,13432,13433,13386 ,0,0,0}, - {24932,24931,24976 ,13386,13385,13432 ,0,0,0}, {24977,24978,24933 ,13433,13434,13387 ,0,0,0}, - {24933,24932,24977 ,13387,13386,13433 ,0,0,0}, {24978,24979,24934 ,13434,13435,13388 ,0,0,0}, - {24934,24933,24978 ,13388,13387,13434 ,0,0,0}, {24979,24884,24935 ,13435,13338,13389 ,0,0,0}, - {24934,24979,24935 ,13388,13435,13389 ,0,0,0}, {24980,24981,24982 ,13436,13437,13438 ,0,0,0}, - {24935,24884,24883 ,13389,13338,13337 ,0,0,0}, {24882,24981,24936 ,13336,13437,13390 ,0,0,0}, - {24883,24882,24936 ,13337,13336,13390 ,0,0,0}, {24981,24983,24937 ,13437,13439,13391 ,0,0,0}, - {24937,24936,24981 ,13391,13390,13437 ,0,0,0}, {24983,24984,24938 ,13439,13440,13392 ,0,0,0}, - {24938,24937,24983 ,13392,13391,13439 ,0,0,0}, {24984,24985,24939 ,13440,13441,13393 ,0,0,0}, - {24939,24938,24984 ,13393,13392,13440 ,0,0,0}, {24985,24892,24940 ,13441,13346,13394 ,0,0,0}, - {24939,24985,24940 ,13393,13441,13394 ,0,0,0}, {24986,23384,24987 ,13442,13443,13444 ,0,0,0}, - {24940,24892,24891 ,13394,13346,13345 ,0,0,0}, {24942,24941,24988 ,13396,13395,13445 ,0,0,0}, - {24891,24890,24941 ,13345,13344,13395 ,0,0,0}, {24989,24988,24986 ,13446,13445,13442 ,0,0,0}, - {24941,24890,24988 ,13395,13344,13445 ,0,0,0}, {24989,24990,24943 ,13446,13447,13397 ,0,0,0}, - {24943,24942,24989 ,13397,13396,13446 ,0,0,0}, {24990,24991,24944 ,13447,13448,13398 ,0,0,0}, - {24944,24943,24990 ,13398,13397,13447 ,0,0,0}, {24991,24992,24900 ,13448,13449,13354 ,0,0,0}, - {24900,24944,24991 ,13354,13398,13448 ,0,0,0}, {24992,24945,24948 ,13449,13399,13402 ,0,0,0}, - {24900,24992,24948 ,13354,13449,13402 ,0,0,0}, {24993,24994,24995 ,13450,13451,13452 ,0,0,0}, - {24948,24945,24947 ,13402,13399,13401 ,0,0,0}, {24946,24994,24949 ,13400,13451,13403 ,0,0,0}, - {24947,24946,24949 ,13401,13400,13403 ,0,0,0}, {24994,24996,24950 ,13451,13453,13404 ,0,0,0}, - {24950,24949,24994 ,13404,13403,13451 ,0,0,0}, {24996,24997,24951 ,13453,13454,13405 ,0,0,0}, - {24951,24950,24996 ,13405,13404,13453 ,0,0,0}, {24997,24998,24952 ,13454,13455,13406 ,0,0,0}, - {24952,24951,24997 ,13406,13405,13454 ,0,0,0}, {24998,24999,24953 ,13455,13456,13407 ,0,0,0}, - {24953,24952,24998 ,13407,13406,13455 ,0,0,0}, {24999,25000,24908 ,13456,13457,13362 ,0,0,0}, - {24908,24953,24999 ,13362,13407,13456 ,0,0,0}, {25000,25001,24954 ,13457,13458,13408 ,0,0,0}, - {24954,24908,25000 ,13408,13362,13457 ,0,0,0}, {25001,24955,24958 ,13458,13409,13412 ,0,0,0}, - {24954,25001,24958 ,13408,13458,13412 ,0,0,0}, {24959,24956,25002 ,13413,13410,13459 ,0,0,0}, - {24958,24955,24957 ,13412,13409,13411 ,0,0,0}, {24734,24727,24729 ,13180,13173,13175 ,0,0,0}, - {24957,24956,24959 ,13411,13410,13413 ,0,0,0}, {24733,24960,24727 ,13179,13414,13173 ,0,0,0}, - {24959,25002,24729 ,13413,13459,13175 ,0,0,0}, {24741,24735,25003 ,13187,13181,13460 ,0,0,0}, - {25002,24734,24729 ,13459,13180,13175 ,0,0,0}, {24733,25004,25005 ,13179,13461,13462 ,0,0,0}, - {24737,24961,24914 ,13183,13415,13368 ,0,0,0}, {24913,24727,24960 ,13367,13173,13414 ,0,0,0}, - {24737,24960,25005 ,13183,13414,13462 ,0,0,0}, {24736,24961,24737 ,13182,13415,13183 ,0,0,0}, - {24682,24684,24918 ,13090,13094,13372 ,0,0,0}, {24350,24352,24673 ,13417,13078,13081 ,0,0,0}, - {24963,24673,24678 ,13418,13081,13086 ,0,0,0}, {24918,24963,24917 ,13372,13418,13371 ,0,0,0}, - {24677,24963,24678 ,13085,13418,13086 ,0,0,0}, {24676,24966,24964 ,13084,13421,13419 ,0,0,0}, - {24964,24677,24676 ,13419,13085,13084 ,0,0,0}, {24966,25006,24965 ,13421,13463,13420 ,0,0,0}, - {25007,24967,25006 ,13464,13422,13463 ,0,0,0}, {24920,24964,24965 ,13374,13419,13420 ,0,0,0}, - {24967,24965,25006 ,13422,13420,13463 ,0,0,0}, {25008,24968,25007 ,13465,13423,13464 ,0,0,0}, - {24968,24967,25007 ,13423,13422,13464 ,0,0,0}, {25009,24969,25008 ,13466,13424,13465 ,0,0,0}, - {24969,24968,25008 ,13424,13423,13465 ,0,0,0}, {25010,24970,25009 ,13467,13425,13466 ,0,0,0}, - {24970,24969,25009 ,13425,13424,13466 ,0,0,0}, {25011,24971,25010 ,13468,13426,13467 ,0,0,0}, - {24971,24970,25010 ,13426,13425,13467 ,0,0,0}, {25012,24972,25011 ,13469,13427,13468 ,0,0,0}, - {24972,24971,25011 ,13427,13426,13468 ,0,0,0}, {25013,24926,25012 ,13470,13380,13469 ,0,0,0}, - {24926,24972,25012 ,13380,13427,13469 ,0,0,0}, {25014,24927,25013 ,13471,13381,13470 ,0,0,0}, - {24927,24926,25013 ,13381,13380,13470 ,0,0,0}, {24974,24975,25014 ,13430,13431,13471 ,0,0,0}, - {24927,25014,24975 ,13381,13471,13431 ,0,0,0}, {24974,24973,24976 ,13430,13429,13432 ,0,0,0}, - {25015,24977,24973 ,13472,13433,13429 ,0,0,0}, {24931,24975,24976 ,13385,13431,13432 ,0,0,0}, - {24977,24976,24973 ,13433,13432,13429 ,0,0,0}, {25016,24978,25015 ,13473,13434,13472 ,0,0,0}, - {24978,24977,25015 ,13434,13433,13472 ,0,0,0}, {25017,24979,25016 ,13474,13435,13473 ,0,0,0}, - {24979,24978,25016 ,13435,13434,13473 ,0,0,0}, {25018,24884,25017 ,13475,13338,13474 ,0,0,0}, - {24884,24979,25017 ,13338,13435,13474 ,0,0,0}, {24982,24882,25018 ,13438,13336,13475 ,0,0,0}, - {24882,24884,25018 ,13336,13338,13475 ,0,0,0}, {24982,23301,24980 ,13438,13476,13436 ,0,0,0}, - {24882,24982,24981 ,13336,13438,13437 ,0,0,0}, {25019,24983,24980 ,13477,13439,13436 ,0,0,0}, - {24983,24981,24980 ,13439,13437,13436 ,0,0,0}, {25020,24984,25019 ,13478,13440,13477 ,0,0,0}, - {24984,24983,25019 ,13440,13439,13477 ,0,0,0}, {25021,24985,25020 ,13479,13441,13478 ,0,0,0}, - {24985,24984,25020 ,13441,13440,13478 ,0,0,0}, {25022,24892,25021 ,13480,13346,13479 ,0,0,0}, - {24892,24985,25021 ,13346,13441,13479 ,0,0,0}, {25023,24890,25022 ,13481,13344,13480 ,0,0,0}, - {24890,24892,25022 ,13344,13346,13480 ,0,0,0}, {24986,24988,25023 ,13442,13445,13481 ,0,0,0}, - {24890,25023,24988 ,13344,13481,13445 ,0,0,0}, {24986,24987,24989 ,13442,13444,13446 ,0,0,0}, - {25024,24990,24987 ,13482,13447,13444 ,0,0,0}, {24942,24988,24989 ,13396,13445,13446 ,0,0,0}, - {24990,24989,24987 ,13447,13446,13444 ,0,0,0}, {25025,24991,25024 ,13483,13448,13482 ,0,0,0}, - {24991,24990,25024 ,13448,13447,13482 ,0,0,0}, {25026,24992,25025 ,13484,13449,13483 ,0,0,0}, - {24992,24991,25025 ,13449,13448,13483 ,0,0,0}, {25027,24945,25026 ,13485,13399,13484 ,0,0,0}, - {24945,24992,25026 ,13399,13449,13484 ,0,0,0}, {24995,24946,25027 ,13452,13400,13485 ,0,0,0}, - {24946,24945,25027 ,13400,13399,13485 ,0,0,0}, {24995,23323,24993 ,13452,13486,13450 ,0,0,0}, - {24946,24995,24994 ,13400,13452,13451 ,0,0,0}, {25028,24996,24993 ,13487,13453,13450 ,0,0,0}, - {24996,24994,24993 ,13453,13451,13450 ,0,0,0}, {25029,24997,25028 ,13488,13454,13487 ,0,0,0}, - {24997,24996,25028 ,13454,13453,13487 ,0,0,0}, {25030,24998,25029 ,13489,13455,13488 ,0,0,0}, - {24998,24997,25029 ,13455,13454,13488 ,0,0,0}, {25031,24999,25030 ,13490,13456,13489 ,0,0,0}, - {24999,24998,25030 ,13456,13455,13489 ,0,0,0}, {25032,25000,25031 ,13491,13457,13490 ,0,0,0}, - {25000,24999,25031 ,13457,13456,13490 ,0,0,0}, {25033,25001,25032 ,13492,13458,13491 ,0,0,0}, - {25001,25000,25032 ,13458,13457,13491 ,0,0,0}, {25034,24955,25033 ,13493,13409,13492 ,0,0,0}, - {24955,25001,25033 ,13409,13458,13492 ,0,0,0}, {25035,24956,25034 ,13494,13410,13493 ,0,0,0}, - {24956,24955,25034 ,13410,13409,13493 ,0,0,0}, {25036,25002,25035 ,13495,13459,13494 ,0,0,0}, - {25002,24956,25035 ,13459,13410,13494 ,0,0,0}, {25037,24734,25036 ,13496,13180,13495 ,0,0,0}, - {24734,25002,25036 ,13180,13459,13495 ,0,0,0}, {25037,25004,24733 ,13496,13461,13179 ,0,0,0}, - {24733,24734,25037 ,13179,13180,13496 ,0,0,0}, {25004,25003,25005 ,13461,13460,13462 ,0,0,0}, - {24737,25005,24735 ,13183,13462,13181 ,0,0,0}, {24960,24733,25005 ,13414,13179,13462 ,0,0,0}, - {25003,24735,25005 ,13460,13181,13462 ,0,0,0}, {24736,24735,24742 ,13182,13181,13188 ,0,0,0}, - {24963,24684,24673 ,13418,13094,13081 ,0,0,0}, {24673,24684,24350 ,13081,13094,13417 ,0,0,0}, - {23405,23401,24678 ,13281,13497,13086 ,0,0,0}, {24678,23401,24676 ,13086,13497,13084 ,0,0,0}, - {23401,23400,24676 ,13497,13498,13084 ,0,0,0}, {24676,23400,24966 ,13084,13498,13421 ,0,0,0}, - {23400,23399,24966 ,13498,13499,13421 ,0,0,0}, {24966,23399,25006 ,13421,13499,13463 ,0,0,0}, - {23399,23262,25006 ,13499,13500,13463 ,0,0,0}, {25006,23262,25007 ,13463,13500,13464 ,0,0,0}, - {23262,23252,25007 ,13500,13501,13464 ,0,0,0}, {25007,23252,25008 ,13464,13501,13465 ,0,0,0}, - {23252,23285,25008 ,13501,13502,13465 ,0,0,0}, {25008,23285,25009 ,13465,13502,13466 ,0,0,0}, - {23285,23282,25009 ,13502,13503,13466 ,0,0,0}, {25009,23282,25010 ,13466,13503,13467 ,0,0,0}, - {23282,23287,25010 ,13503,13504,13467 ,0,0,0}, {23287,23290,25011 ,13504,13505,13468 ,0,0,0}, - {23287,25011,25010 ,13504,13468,13467 ,0,0,0}, {23290,23257,25012 ,13505,13506,13469 ,0,0,0}, - {23290,25012,25011 ,13505,13469,13468 ,0,0,0}, {23257,23256,25013 ,13506,13507,13470 ,0,0,0}, - {23257,25013,25012 ,13506,13470,13469 ,0,0,0}, {23256,23292,25014 ,13507,13508,13471 ,0,0,0}, - {23256,25014,25013 ,13507,13471,13470 ,0,0,0}, {23292,23394,24974 ,13508,13509,13430 ,0,0,0}, - {23292,24974,25014 ,13508,13430,13471 ,0,0,0}, {23393,24974,23394 ,13428,13430,13509 ,0,0,0}, - {23393,23295,24973 ,13428,13510,13429 ,0,0,0}, {24973,23295,25015 ,13429,13510,13472 ,0,0,0}, - {23295,23300,25015 ,13510,13511,13472 ,0,0,0}, {25015,23300,25016 ,13472,13511,13473 ,0,0,0}, - {23300,23298,25016 ,13511,13512,13473 ,0,0,0}, {23298,23297,25017 ,13512,13513,13474 ,0,0,0}, - {23298,25017,25016 ,13512,13474,13473 ,0,0,0}, {23297,23392,25018 ,13513,13514,13475 ,0,0,0}, - {23297,25018,25017 ,13513,13475,13474 ,0,0,0}, {23392,23301,24982 ,13514,13476,13438 ,0,0,0}, - {23392,24982,25018 ,13514,13438,13475 ,0,0,0}, {23301,23391,24980 ,13476,13515,13436 ,0,0,0}, - {23391,23387,24980 ,13515,13516,13436 ,0,0,0}, {24980,23387,25019 ,13436,13516,13477 ,0,0,0}, - {23387,23305,25019 ,13516,13517,13477 ,0,0,0}, {25019,23305,25020 ,13477,13517,13478 ,0,0,0}, - {23305,23307,25020 ,13517,13518,13478 ,0,0,0}, {23307,23312,25021 ,13518,13519,13479 ,0,0,0}, - {23307,25021,25020 ,13518,13479,13478 ,0,0,0}, {23312,23310,25022 ,13519,13520,13480 ,0,0,0}, - {23312,25022,25021 ,13519,13480,13479 ,0,0,0}, {23310,23309,25023 ,13520,13521,13481 ,0,0,0}, - {23310,25023,25022 ,13520,13481,13480 ,0,0,0}, {23309,23385,24986 ,13521,13522,13442 ,0,0,0}, - {23309,24986,25023 ,13521,13442,13481 ,0,0,0}, {23384,24986,23385 ,13443,13442,13522 ,0,0,0}, - {23384,23314,24987 ,13443,13523,13444 ,0,0,0}, {24987,23314,25024 ,13444,13523,13482 ,0,0,0}, - {23314,23321,25024 ,13523,13524,13482 ,0,0,0}, {23321,23320,25025 ,13524,13525,13483 ,0,0,0}, - {23321,25025,25024 ,13524,13483,13482 ,0,0,0}, {23320,23319,25026 ,13525,13526,13484 ,0,0,0}, - {23320,25026,25025 ,13525,13484,13483 ,0,0,0}, {23319,23381,25027 ,13526,13527,13485 ,0,0,0}, - {23319,25027,25026 ,13526,13485,13484 ,0,0,0}, {23381,23323,24995 ,13527,13486,13452 ,0,0,0}, - {23381,24995,25027 ,13527,13452,13485 ,0,0,0}, {23323,23322,24993 ,13486,13528,13450 ,0,0,0}, - {23322,23328,24993 ,13528,13529,13450 ,0,0,0}, {24993,23328,25028 ,13450,13529,13487 ,0,0,0}, - {23328,23327,25028 ,13529,13530,13487 ,0,0,0}, {25028,23327,25029 ,13487,13530,13488 ,0,0,0}, - {23327,23332,25029 ,13530,13531,13488 ,0,0,0}, {25029,23332,25030 ,13488,13531,13489 ,0,0,0}, - {23332,23330,25030 ,13531,13532,13489 ,0,0,0}, {23330,23338,25031 ,13532,13533,13490 ,0,0,0}, - {23330,25031,25030 ,13532,13490,13489 ,0,0,0}, {23338,23334,25032 ,13533,13534,13491 ,0,0,0}, - {23338,25032,25031 ,13533,13491,13490 ,0,0,0}, {23334,23336,25033 ,13534,13535,13492 ,0,0,0}, - {23334,25033,25032 ,13534,13492,13491 ,0,0,0}, {23336,23339,25034 ,13535,13536,13493 ,0,0,0}, - {23336,25034,25033 ,13535,13493,13492 ,0,0,0}, {23339,23341,25035 ,13536,13537,13494 ,0,0,0}, - {23339,25035,25034 ,13536,13494,13493 ,0,0,0}, {23341,23346,25036 ,13537,13538,13495 ,0,0,0}, - {23341,25036,25035 ,13537,13495,13494 ,0,0,0}, {23346,23352,25037 ,13538,13539,13496 ,0,0,0}, - {23346,25037,25036 ,13538,13496,13495 ,0,0,0}, {23352,23353,25004 ,13539,13540,13461 ,0,0,0}, - {23352,25004,25037 ,13539,13461,13496 ,0,0,0}, {23353,23351,25003 ,13540,13541,13460 ,0,0,0}, - {23353,25003,25004 ,13540,13460,13461 ,0,0,0}, {23351,23345,24741 ,13541,13542,13187 ,0,0,0}, - {23351,24741,25003 ,13541,13187,13460 ,0,0,0}, {24741,23345,23344 ,13187,13542,11616 ,0,0,0}, - {24574,24280,24301 ,13543,13543,13543 ,0,0,0}, {23910,24297,23906 ,13543,13543,13543 ,0,0,0}, - {24296,24301,24362 ,13543,13543,13543 ,0,0,0}, {24574,24301,24281 ,13543,13543,13543 ,0,0,0}, - {24296,24362,24439 ,13543,13543,13543 ,0,0,0}, {24281,24296,23911 ,13543,13543,13543 ,0,0,0}, - {24301,24296,24281 ,13543,13543,13543 ,0,0,0}, {23771,23906,24297 ,13543,13543,13543 ,0,0,0}, - {23910,24294,24291 ,13543,13543,13543 ,0,0,0}, {23777,23786,24121 ,13543,13543,13543 ,0,0,0}, - {23912,23771,24297 ,13543,13543,13543 ,0,0,0}, {23913,23912,23777 ,13543,13543,13543 ,0,0,0}, - {23912,23913,23902 ,13543,13543,13543 ,0,0,0}, {23784,23777,24121 ,13543,13543,13543 ,0,0,0}, - {23785,23786,23912 ,13543,13543,13543 ,0,0,0}, {23786,23777,23912 ,13543,13543,13543 ,0,0,0}, - {24299,23912,24297 ,13543,13543,13543 ,0,0,0}, {24299,23785,23912 ,13543,13543,13543 ,0,0,0}, - {24297,23910,24291 ,13543,13543,13543 ,0,0,0}, {24294,23910,24296 ,13543,13543,13543 ,0,0,0}, - {23911,24296,23909 ,13543,13543,13543 ,0,0,0}, {23910,23909,24296 ,13543,13543,13543 ,0,0,0}, - {24961,24736,24742 ,13544,13544,13544 ,0,0,0}, {24790,24827,23540 ,13544,13544,13544 ,0,0,0}, - {24746,24962,24742 ,13544,13544,13544 ,0,0,0}, {24866,24916,23456 ,13544,13544,13544 ,0,0,0}, - {24915,24962,24916 ,13544,13544,13544 ,0,0,0}, {24962,24746,23344 ,13544,13544,13544 ,0,0,0}, - {24961,24742,24962 ,13544,13544,13544 ,0,0,0}, {23456,24916,24962 ,13544,13544,13544 ,0,0,0}, - {24962,23344,23456 ,13544,13544,13544 ,0,0,0}, {23455,24866,23456 ,13544,13544,13544 ,0,0,0}, - {23455,23498,24866 ,13544,13544,13544 ,0,0,0}, {24827,24866,23540 ,13544,13544,13544 ,0,0,0}, - {23498,23540,24866 ,13544,13544,13544 ,0,0,0}, {24791,24790,23540 ,13544,13544,13544 ,0,0,0}, - {23584,23626,23585 ,13544,13544,13544 ,0,0,0}, {23585,24791,23540 ,13544,13544,13544 ,0,0,0}, - {24791,23585,23626 ,13544,13544,13544 ,0,0,0}, {23377,23625,23372 ,13544,13544,13544 ,0,0,0}, - {24791,23626,23378 ,13544,13544,13544 ,0,0,0}, {23626,23377,23376 ,13544,13544,13544 ,0,0,0}, - {23377,23626,23625 ,13544,13544,13544 ,0,0,0}, {23626,23376,23378 ,13544,13544,13544 ,0,0,0} -// Landegestell.prt - , {25038,25039,25040 ,13545,13546,13547 ,0,0,0}, {25041,25042,25043 ,13548,13549,13550 ,0,0,0}, - {25044,25045,25046 ,13551,13552,13553 ,0,0,0}, {25047,25039,25048 ,13554,13546,13555 ,0,0,0}, - {25049,25046,25050 ,13556,13553,13557 ,0,0,0}, {25051,25052,25053 ,13558,13559,13560 ,0,0,0}, - {25054,25055,25056 ,13561,13562,13563 ,0,0,0}, {25057,25050,25045 ,13564,13557,13552 ,0,0,0}, - {25058,25059,25060 ,13565,13566,13567 ,0,0,0}, {25054,25061,25060 ,13561,13568,13567 ,0,0,0}, - {25062,25063,25064 ,13569,13570,13571 ,0,0,0}, {25064,25063,25059 ,13571,13570,13566 ,0,0,0}, - {25065,25064,25066 ,13572,13571,13573 ,0,0,0}, {25048,25039,25038 ,13555,13546,13545 ,0,0,0}, - {25066,25067,25065 ,13573,13574,13572 ,0,0,0}, {25068,25069,25070 ,13575,13576,13577 ,0,0,0}, - {25040,25071,25038 ,13547,13578,13545 ,0,0,0}, {25072,25073,25070 ,13579,13580,13577 ,0,0,0}, - {25074,25075,25072 ,13581,13582,13579 ,0,0,0}, {25075,25076,25072 ,13582,13583,13579 ,0,0,0}, - {25070,25073,25068 ,13577,13580,13575 ,0,0,0}, {25077,25078,25042 ,13584,13585,13549 ,0,0,0}, - {25079,25080,25081 ,13586,13587,13588 ,0,0,0}, {25077,25082,25078 ,13584,13589,13585 ,0,0,0}, - {25083,25084,25085 ,13590,13591,13592 ,0,0,0}, {25080,25086,25081 ,13587,13593,13588 ,0,0,0}, - {25087,25088,25089 ,13594,13595,13596 ,0,0,0}, {25083,25085,25090 ,13590,13592,13597 ,0,0,0}, - {25091,25092,25093 ,13598,13599,13600 ,0,0,0}, {25092,25091,25094 ,13599,13598,13601 ,0,0,0}, - {25095,25096,25097 ,13602,13603,13604 ,0,0,0}, {25098,25099,25096 ,13605,13606,13603 ,0,0,0}, - {25100,25101,25102 ,13607,13608,13609 ,0,0,0}, {25095,25097,25103 ,13602,13604,13610 ,0,0,0}, - {25104,25105,25106 ,13611,13612,13613 ,0,0,0}, {25100,25102,25107 ,13607,13609,13614 ,0,0,0}, - {25108,25109,25110 ,13615,13616,13617 ,0,0,0}, {25111,25105,25104 ,13618,13612,13611 ,0,0,0}, - {25112,25113,25114 ,13619,13620,13621 ,0,0,0}, {25114,25110,25112 ,13621,13617,13619 ,0,0,0}, - {25115,25116,25117 ,13622,13623,13624 ,0,0,0}, {25118,25113,25119 ,13625,13620,13626 ,0,0,0}, - {25120,25121,25122 ,13627,13628,13629 ,0,0,0}, {25123,25120,25124 ,13630,13627,13631 ,0,0,0}, - {25125,25126,25127 ,13632,13633,13634 ,0,0,0}, {25128,25125,25122 ,13635,13632,13629 ,0,0,0}, - {25129,25130,25131 ,13636,13637,13638 ,0,0,0}, {25132,25127,25133 ,13639,13634,13640 ,0,0,0}, - {25134,25135,25136 ,13641,13642,13643 ,0,0,0}, {25131,25137,25129 ,13638,13644,13636 ,0,0,0}, - {25138,25134,25139 ,13645,13641,13646 ,0,0,0}, {25129,25137,25140 ,13636,13644,13647 ,0,0,0}, - {25141,25138,25132 ,13648,13645,13639 ,0,0,0}, {25134,25138,25141 ,13641,13645,13648 ,0,0,0}, - {25142,25143,25144 ,13649,13650,13651 ,0,0,0}, {25145,25128,25146 ,13652,13635,13653 ,0,0,0}, - {25147,25148,25149 ,13654,13655,13656 ,0,0,0}, {25145,25146,25150 ,13652,13653,13657 ,0,0,0}, - {25151,25152,25153 ,13658,13659,13660 ,0,0,0}, {25149,25154,25155 ,13656,13661,13662 ,0,0,0}, - {25156,25157,25153 ,13663,13664,13660 ,0,0,0}, {25158,25159,25160 ,13665,13666,13667 ,0,0,0}, - {25161,25162,25163 ,13668,13669,13670 ,0,0,0}, {25163,25160,25161 ,13670,13667,13668 ,0,0,0}, - {25162,25161,25164 ,13669,13668,13671 ,0,0,0}, {25133,25127,25126 ,13640,13634,13633 ,0,0,0}, - {25134,25140,25139 ,13641,13647,13646 ,0,0,0}, {25128,25122,25121 ,13635,13629,13628 ,0,0,0}, - {25128,25126,25125 ,13635,13633,13632 ,0,0,0}, {25123,25124,25115 ,13630,13631,13622 ,0,0,0}, - {25120,25123,25121 ,13627,13630,13628 ,0,0,0}, {25117,25116,25118 ,13624,13623,13625 ,0,0,0}, - {25124,25116,25115 ,13631,13623,13622 ,0,0,0}, {25117,25118,25119 ,13624,13625,13626 ,0,0,0}, - {25165,25123,25115 ,13672,13630,13622 ,0,0,0}, {25114,25108,25110 ,13621,13615,13617 ,0,0,0}, - {25113,25112,25119 ,13620,13619,13626 ,0,0,0}, {25104,25106,25166 ,13611,13613,13673 ,0,0,0}, - {25167,25111,25168 ,13674,13618,13675 ,0,0,0}, {25110,25109,25168 ,13617,13616,13675 ,0,0,0}, - {25105,25111,25167 ,13612,13618,13674 ,0,0,0}, {25109,25167,25168 ,13616,13674,13675 ,0,0,0}, - {25166,25106,25107 ,13673,13613,13614 ,0,0,0}, {25169,25104,25166 ,13676,13611,13673 ,0,0,0}, - {25107,25102,25166 ,13614,13609,13673 ,0,0,0}, {25103,25101,25170 ,13610,13608,13677 ,0,0,0}, - {25100,25170,25101 ,13607,13677,13608 ,0,0,0}, {25171,25103,25170 ,13678,13610,13677 ,0,0,0}, - {25099,25097,25096 ,13606,13604,13603 ,0,0,0}, {25095,25103,25171 ,13602,13610,13678 ,0,0,0}, - {25098,25172,25099 ,13605,13679,13606 ,0,0,0}, {25093,25092,25172 ,13600,13599,13679 ,0,0,0}, - {25172,25098,25093 ,13679,13605,13600 ,0,0,0}, {25094,25173,25089 ,13601,13680,13596 ,0,0,0}, - {25174,25175,25176 ,13681,13682,13683 ,0,0,0}, {25089,25173,25177 ,13596,13680,13684 ,0,0,0}, - {25173,25094,25091 ,13680,13601,13598 ,0,0,0}, {25178,25090,25088 ,13685,13597,13595 ,0,0,0}, - {25087,25089,25177 ,13594,13596,13684 ,0,0,0}, {25090,25178,25083 ,13597,13685,13590 ,0,0,0}, - {25178,25088,25087 ,13685,13595,13594 ,0,0,0}, {25082,25179,25180 ,13589,13686,13687 ,0,0,0}, - {25084,25086,25181 ,13591,13593,13688 ,0,0,0}, {25085,25084,25181 ,13592,13591,13688 ,0,0,0}, - {25181,25086,25080 ,13688,13593,13587 ,0,0,0}, {25182,25183,25184 ,13689,13690,13691 ,0,0,0}, - {25179,25079,25081 ,13686,13586,13588 ,0,0,0}, {25071,25040,25069 ,13578,13547,13576 ,0,0,0}, - {25082,25079,25179 ,13589,13586,13686 ,0,0,0}, {25082,25180,25078 ,13589,13687,13585 ,0,0,0}, - {25042,25041,25077 ,13549,13548,13584 ,0,0,0}, {25076,25075,25043 ,13583,13582,13550 ,0,0,0}, - {25043,25075,25041 ,13550,13582,13548 ,0,0,0}, {25068,25071,25069 ,13575,13578,13576 ,0,0,0}, - {25076,25073,25072 ,13583,13580,13579 ,0,0,0}, {25053,25185,25186 ,13560,13692,13693 ,0,0,0}, - {25047,25048,25185 ,13554,13555,13692 ,0,0,0}, {25186,25051,25053 ,13693,13558,13560 ,0,0,0}, - {25047,25185,25053 ,13554,13692,13560 ,0,0,0}, {25186,25187,25051 ,13693,13694,13558 ,0,0,0}, - {25188,25189,25055 ,13695,13696,13562 ,0,0,0}, {25051,25187,25190 ,13558,13694,13697 ,0,0,0}, - {25190,25187,25191 ,13697,13694,13698 ,0,0,0}, {25192,25190,25193 ,13699,13697,13700 ,0,0,0}, - {25191,25193,25190 ,13698,13700,13697 ,0,0,0}, {25056,25194,25054 ,13563,13701,13561 ,0,0,0}, - {25195,25192,25193 ,13702,13699,13700 ,0,0,0}, {25196,25195,25193 ,13703,13702,13700 ,0,0,0}, - {25192,25195,25197 ,13699,13702,13704 ,0,0,0}, {25198,25199,25197 ,13705,13706,13704 ,0,0,0}, - {25189,25188,25200 ,13696,13695,13707 ,0,0,0}, {25197,25199,25192 ,13704,13706,13699 ,0,0,0}, - {25198,25188,25199 ,13705,13695,13706 ,0,0,0}, {25192,25201,25190 ,13699,13708,13697 ,0,0,0}, - {25202,25047,25053 ,13709,13554,13560 ,0,0,0}, {25190,25044,25051 ,13697,13551,13558 ,0,0,0}, - {25203,25039,25047 ,13710,13546,13554 ,0,0,0}, {25052,25051,25044 ,13559,13558,13551 ,0,0,0}, - {25204,25040,25039 ,13711,13547,13546 ,0,0,0}, {25202,25053,25052 ,13709,13560,13559 ,0,0,0}, - {25205,25069,25040 ,13712,13576,13547 ,0,0,0}, {25203,25047,25202 ,13710,13554,13709 ,0,0,0}, - {25206,25070,25069 ,13713,13577,13576 ,0,0,0}, {25204,25039,25203 ,13711,13546,13710 ,0,0,0}, - {25207,25072,25070 ,13714,13579,13577 ,0,0,0}, {25040,25204,25205 ,13547,13711,13712 ,0,0,0}, - {25208,25209,25210 ,13715,13716,13717 ,0,0,0}, {25069,25205,25206 ,13576,13712,13713 ,0,0,0}, - {25210,25041,25075 ,13717,13548,13582 ,0,0,0}, {25070,25206,25207 ,13577,13713,13714 ,0,0,0}, - {25211,25077,25041 ,13718,13584,13548 ,0,0,0}, {25072,25207,25074 ,13579,13714,13581 ,0,0,0}, - {25212,25082,25077 ,13719,13589,13584 ,0,0,0}, {25075,25074,25210 ,13582,13581,13717 ,0,0,0}, - {25213,25079,25082 ,13720,13586,13589 ,0,0,0}, {25041,25210,25211 ,13548,13717,13718 ,0,0,0}, - {25214,25080,25079 ,13721,13587,13586 ,0,0,0}, {25212,25077,25211 ,13719,13584,13718 ,0,0,0}, - {25215,25181,25080 ,13722,13688,13587 ,0,0,0}, {25213,25082,25212 ,13720,13589,13719 ,0,0,0}, - {25216,25085,25181 ,13723,13592,13688 ,0,0,0}, {25079,25213,25214 ,13586,13720,13721 ,0,0,0}, - {25183,25090,25085 ,13690,13597,13592 ,0,0,0}, {25080,25214,25215 ,13587,13721,13722 ,0,0,0}, - {25217,25088,25090 ,13724,13595,13597 ,0,0,0}, {25181,25215,25216 ,13688,13722,13723 ,0,0,0}, - {25218,25089,25088 ,13725,13596,13595 ,0,0,0}, {25085,25216,25183 ,13592,13723,13690 ,0,0,0}, - {25219,25094,25089 ,13726,13601,13596 ,0,0,0}, {25217,25090,25183 ,13724,13597,13690 ,0,0,0}, - {25220,25092,25094 ,13727,13599,13601 ,0,0,0}, {25218,25088,25217 ,13725,13595,13724 ,0,0,0}, - {25221,25172,25092 ,13728,13679,13599 ,0,0,0}, {25089,25218,25219 ,13596,13725,13726 ,0,0,0}, - {25099,25172,25174 ,13606,13679,13681 ,0,0,0}, {25094,25219,25220 ,13601,13726,13727 ,0,0,0}, - {25222,25097,25099 ,13729,13604,13606 ,0,0,0}, {25092,25220,25221 ,13599,13727,13728 ,0,0,0}, - {25223,25103,25097 ,13730,13610,13604 ,0,0,0}, {25172,25221,25174 ,13679,13728,13681 ,0,0,0}, - {25224,25101,25103 ,13731,13608,13610 ,0,0,0}, {25222,25099,25174 ,13729,13606,13681 ,0,0,0}, - {25225,25102,25101 ,13732,13609,13608 ,0,0,0}, {25223,25097,25222 ,13730,13604,13729 ,0,0,0}, - {25226,25166,25102 ,13733,13673,13609 ,0,0,0}, {25103,25223,25224 ,13610,13730,13731 ,0,0,0}, - {25227,25228,25229 ,13734,13735,13736 ,0,0,0}, {25101,25224,25225 ,13608,13731,13732 ,0,0,0}, - {25230,25111,25104 ,13737,13618,13611 ,0,0,0}, {25102,25225,25226 ,13609,13732,13733 ,0,0,0}, - {25231,25168,25111 ,13738,13675,13618 ,0,0,0}, {25166,25226,25169 ,13673,13733,13676 ,0,0,0}, - {25232,25110,25168 ,13739,13617,13675 ,0,0,0}, {25104,25169,25230 ,13611,13676,13737 ,0,0,0}, - {25233,25112,25110 ,13740,13619,13617 ,0,0,0}, {25231,25111,25230 ,13738,13618,13737 ,0,0,0}, - {25234,25119,25112 ,13741,13626,13619 ,0,0,0}, {25232,25168,25231 ,13739,13675,13738 ,0,0,0}, - {25235,25117,25119 ,13742,13624,13626 ,0,0,0}, {25233,25110,25232 ,13740,13617,13739 ,0,0,0}, - {25236,25115,25117 ,13743,13622,13624 ,0,0,0}, {25112,25233,25234 ,13619,13740,13741 ,0,0,0}, - {25123,25237,25121 ,13630,13744,13628 ,0,0,0}, {25119,25234,25235 ,13626,13741,13742 ,0,0,0}, - {25146,25238,25150 ,13653,13745,13657 ,0,0,0}, {25117,25235,25236 ,13624,13742,13743 ,0,0,0}, - {25146,25128,25121 ,13653,13635,13628 ,0,0,0}, {25115,25236,25165 ,13622,13743,13672 ,0,0,0}, - {25145,25126,25128 ,13652,13633,13635 ,0,0,0}, {25123,25165,25237 ,13630,13672,13744 ,0,0,0}, - {25133,25126,25239 ,13640,13633,13746 ,0,0,0}, {25237,25146,25121 ,13744,13653,13628 ,0,0,0}, - {25148,25135,25141 ,13655,13642,13648 ,0,0,0}, {25135,25148,25147 ,13642,13655,13654 ,0,0,0}, - {25133,25141,25132 ,13640,13648,13639 ,0,0,0}, {25126,25145,25239 ,13633,13652,13746 ,0,0,0}, - {25129,25140,25240 ,13636,13647,13747 ,0,0,0}, {25133,25148,25141 ,13640,13655,13648 ,0,0,0}, - {25134,25141,25135 ,13641,13648,13642 ,0,0,0}, {25241,25242,25129 ,13748,13749,13636 ,0,0,0}, - {25139,25140,25137 ,13646,13647,13644 ,0,0,0}, {25136,25240,25140 ,13643,13747,13647 ,0,0,0}, - {25130,25129,25242 ,13637,13636,13749 ,0,0,0}, {25199,25201,25192 ,13706,13708,13699 ,0,0,0}, - {25200,25188,25198 ,13707,13695,13705 ,0,0,0}, {25061,25243,25060 ,13568,13750,13567 ,0,0,0}, - {25201,25044,25190 ,13708,13551,13697 ,0,0,0}, {25199,25244,25201 ,13706,13751,13708 ,0,0,0}, - {25052,25046,25245 ,13559,13553,13752 ,0,0,0}, {25045,25044,25201 ,13552,13551,13708 ,0,0,0}, - {25202,25245,25246 ,13709,13752,13753 ,0,0,0}, {25046,25052,25044 ,13553,13559,13551 ,0,0,0}, - {25203,25246,25247 ,13710,13753,13754 ,0,0,0}, {25245,25202,25052 ,13752,13709,13559 ,0,0,0}, - {25204,25247,25248 ,13711,13754,13755 ,0,0,0}, {25246,25203,25202 ,13753,13710,13709 ,0,0,0}, - {25205,25248,25249 ,13712,13755,13756 ,0,0,0}, {25247,25204,25203 ,13754,13711,13710 ,0,0,0}, - {25206,25249,25250 ,13713,13756,13757 ,0,0,0}, {25248,25205,25204 ,13755,13712,13711 ,0,0,0}, - {25207,25250,25251 ,13714,13757,13758 ,0,0,0}, {25249,25206,25205 ,13756,13713,13712 ,0,0,0}, - {25074,25251,25208 ,13581,13758,13715 ,0,0,0}, {25207,25206,25250 ,13714,13713,13757 ,0,0,0}, - {25252,25253,25254 ,13759,13760,13761 ,0,0,0}, {25074,25207,25251 ,13581,13714,13758 ,0,0,0}, - {25211,25209,25252 ,13718,13716,13759 ,0,0,0}, {25210,25074,25208 ,13717,13581,13715 ,0,0,0}, - {25212,25252,25255 ,13719,13759,13762 ,0,0,0}, {25211,25210,25209 ,13718,13717,13716 ,0,0,0}, - {25213,25255,25256 ,13720,13762,13763 ,0,0,0}, {25252,25212,25211 ,13759,13719,13718 ,0,0,0}, - {25214,25256,25257 ,13721,13763,13764 ,0,0,0}, {25255,25213,25212 ,13762,13720,13719 ,0,0,0}, - {25215,25257,25258 ,13722,13764,13765 ,0,0,0}, {25256,25214,25213 ,13763,13721,13720 ,0,0,0}, - {25216,25258,25184 ,13723,13765,13691 ,0,0,0}, {25215,25214,25257 ,13722,13721,13764 ,0,0,0}, - {25259,25260,25261 ,13766,13767,13768 ,0,0,0}, {25216,25215,25258 ,13723,13722,13765 ,0,0,0}, - {25217,25182,25262 ,13724,13689,13769 ,0,0,0}, {25183,25216,25184 ,13690,13723,13691 ,0,0,0}, - {25218,25262,25263 ,13725,13769,13770 ,0,0,0}, {25182,25217,25183 ,13689,13724,13690 ,0,0,0}, - {25219,25263,25264 ,13726,13770,13771 ,0,0,0}, {25262,25218,25217 ,13769,13725,13724 ,0,0,0}, - {25220,25264,25265 ,13727,13771,13772 ,0,0,0}, {25263,25219,25218 ,13770,13726,13725 ,0,0,0}, - {25221,25265,25175 ,13728,13772,13682 ,0,0,0}, {25220,25219,25264 ,13727,13726,13771 ,0,0,0}, - {25266,25267,25268 ,13773,13774,13775 ,0,0,0}, {25221,25220,25265 ,13728,13727,13772 ,0,0,0}, - {25222,25176,25269 ,13729,13683,13776 ,0,0,0}, {25174,25221,25175 ,13681,13728,13682 ,0,0,0}, - {25223,25269,25270 ,13730,13776,13777 ,0,0,0}, {25222,25174,25176 ,13729,13681,13683 ,0,0,0}, - {25224,25270,25271 ,13731,13777,13778 ,0,0,0}, {25269,25223,25222 ,13776,13730,13729 ,0,0,0}, - {25225,25271,25272 ,13732,13778,13779 ,0,0,0}, {25270,25224,25223 ,13777,13731,13730 ,0,0,0}, - {25226,25272,25273 ,13733,13779,13780 ,0,0,0}, {25271,25225,25224 ,13778,13732,13731 ,0,0,0}, - {25169,25273,25274 ,13676,13780,13781 ,0,0,0}, {25226,25225,25272 ,13733,13732,13779 ,0,0,0}, - {25230,25274,25228 ,13737,13781,13735 ,0,0,0}, {25169,25226,25273 ,13676,13733,13780 ,0,0,0}, - {25231,25228,25275 ,13738,13735,13782 ,0,0,0}, {25230,25169,25274 ,13737,13676,13781 ,0,0,0}, - {25232,25275,25276 ,13739,13782,13783 ,0,0,0}, {25228,25231,25230 ,13735,13738,13737 ,0,0,0}, - {25233,25276,25277 ,13740,13783,13784 ,0,0,0}, {25275,25232,25231 ,13782,13739,13738 ,0,0,0}, - {25234,25277,25278 ,13741,13784,13785 ,0,0,0}, {25276,25233,25232 ,13783,13740,13739 ,0,0,0}, - {25235,25278,25279 ,13742,13785,13786 ,0,0,0}, {25277,25234,25233 ,13784,13741,13740 ,0,0,0}, - {25236,25279,25280 ,13743,13786,13787 ,0,0,0}, {25278,25235,25234 ,13785,13742,13741 ,0,0,0}, - {25165,25280,25281 ,13672,13787,13788 ,0,0,0}, {25279,25236,25235 ,13786,13743,13742 ,0,0,0}, - {25237,25281,25238 ,13744,13788,13745 ,0,0,0}, {25165,25236,25280 ,13672,13743,13787 ,0,0,0}, - {25282,25145,25150 ,13789,13652,13657 ,0,0,0}, {25237,25165,25281 ,13744,13672,13788 ,0,0,0}, - {25155,25151,25283 ,13662,13658,13790 ,0,0,0}, {25146,25237,25238 ,13653,13744,13745 ,0,0,0}, - {25282,25149,25239 ,13789,13656,13746 ,0,0,0}, {25142,25135,25147 ,13649,13642,13654 ,0,0,0}, - {25239,25148,25133 ,13746,13655,13640 ,0,0,0}, {25282,25239,25145 ,13789,13746,13652 ,0,0,0}, - {25155,25147,25149 ,13662,13654,13656 ,0,0,0}, {25239,25149,25148 ,13746,13656,13655 ,0,0,0}, - {25284,25240,25144 ,13791,13747,13651 ,0,0,0}, {25240,25241,25129 ,13747,13748,13636 ,0,0,0}, - {25134,25136,25140 ,13641,13643,13647 ,0,0,0}, {25136,25142,25144 ,13643,13649,13651 ,0,0,0}, - {25284,25241,25240 ,13791,13748,13747 ,0,0,0}, {25188,25244,25199 ,13695,13751,13706 ,0,0,0}, - {25056,25055,25189 ,13563,13562,13696 ,0,0,0}, {25059,25063,25285 ,13566,13570,13792 ,0,0,0}, - {25244,25045,25201 ,13751,13552,13708 ,0,0,0}, {25188,25286,25244 ,13695,13793,13751 ,0,0,0}, - {25287,25288,25289 ,13794,13795,13796 ,0,0,0}, {25057,25045,25244 ,13564,13552,13751 ,0,0,0}, - {25049,25287,25245 ,13556,13794,13752 ,0,0,0}, {25050,25046,25045 ,13557,13553,13552 ,0,0,0}, - {25287,25290,25246 ,13794,13797,13753 ,0,0,0}, {25049,25245,25046 ,13556,13752,13553 ,0,0,0}, - {25290,25291,25247 ,13797,13798,13754 ,0,0,0}, {25287,25246,25245 ,13794,13753,13752 ,0,0,0}, - {25291,25292,25248 ,13798,13799,13755 ,0,0,0}, {25290,25247,25246 ,13797,13754,13753 ,0,0,0}, - {25292,25293,25249 ,13799,13800,13756 ,0,0,0}, {25291,25248,25247 ,13798,13755,13754 ,0,0,0}, - {25293,25294,25250 ,13800,13801,13757 ,0,0,0}, {25292,25249,25248 ,13799,13756,13755 ,0,0,0}, - {25294,25295,25251 ,13801,13802,13758 ,0,0,0}, {25293,25250,25249 ,13800,13757,13756 ,0,0,0}, - {25295,25296,25208 ,13802,13803,13715 ,0,0,0}, {25294,25251,25250 ,13801,13758,13757 ,0,0,0}, - {25296,25253,25209 ,13803,13760,13716 ,0,0,0}, {25208,25251,25295 ,13715,13758,13802 ,0,0,0}, - {25297,25298,25299 ,13804,13805,13806 ,0,0,0}, {25209,25208,25296 ,13716,13715,13803 ,0,0,0}, - {25254,25297,25255 ,13761,13804,13762 ,0,0,0}, {25253,25252,25209 ,13760,13759,13716 ,0,0,0}, - {25297,25300,25256 ,13804,13807,13763 ,0,0,0}, {25254,25255,25252 ,13761,13762,13759 ,0,0,0}, - {25300,25301,25257 ,13807,13808,13764 ,0,0,0}, {25297,25256,25255 ,13804,13763,13762 ,0,0,0}, - {25301,25302,25258 ,13808,13809,13765 ,0,0,0}, {25300,25257,25256 ,13807,13764,13763 ,0,0,0}, - {25302,25303,25184 ,13809,13810,13691 ,0,0,0}, {25301,25258,25257 ,13808,13765,13764 ,0,0,0}, - {25182,25303,25304 ,13689,13810,13811 ,0,0,0}, {25184,25258,25302 ,13691,13765,13809 ,0,0,0}, - {25304,25259,25262 ,13811,13766,13769 ,0,0,0}, {25303,25182,25184 ,13810,13689,13691 ,0,0,0}, - {25259,25305,25263 ,13766,13812,13770 ,0,0,0}, {25304,25262,25182 ,13811,13769,13689 ,0,0,0}, - {25305,25306,25264 ,13812,13813,13771 ,0,0,0}, {25259,25263,25262 ,13766,13770,13769 ,0,0,0}, - {25306,25307,25265 ,13813,13814,13772 ,0,0,0}, {25305,25264,25263 ,13812,13771,13770 ,0,0,0}, - {25307,25308,25175 ,13814,13815,13682 ,0,0,0}, {25306,25265,25264 ,13813,13772,13771 ,0,0,0}, - {25308,25309,25176 ,13815,13816,13683 ,0,0,0}, {25175,25265,25307 ,13682,13772,13814 ,0,0,0}, - {25309,25266,25269 ,13816,13773,13776 ,0,0,0}, {25176,25175,25308 ,13683,13682,13815 ,0,0,0}, - {25266,25310,25270 ,13773,13817,13777 ,0,0,0}, {25309,25269,25176 ,13816,13776,13683 ,0,0,0}, - {25310,25311,25271 ,13817,13818,13778 ,0,0,0}, {25266,25270,25269 ,13773,13777,13776 ,0,0,0}, - {25311,25312,25272 ,13818,13819,13779 ,0,0,0}, {25310,25271,25270 ,13817,13778,13777 ,0,0,0}, - {25312,25313,25273 ,13819,13820,13780 ,0,0,0}, {25311,25272,25271 ,13818,13779,13778 ,0,0,0}, - {25313,25229,25274 ,13820,13736,13781 ,0,0,0}, {25273,25272,25312 ,13780,13779,13819 ,0,0,0}, - {25314,25315,25316 ,13821,13822,13823 ,0,0,0}, {25274,25273,25313 ,13781,13780,13820 ,0,0,0}, - {25227,25314,25275 ,13734,13821,13782 ,0,0,0}, {25229,25228,25274 ,13736,13735,13781 ,0,0,0}, - {25314,25317,25276 ,13821,13824,13783 ,0,0,0}, {25227,25275,25228 ,13734,13782,13735 ,0,0,0}, - {25317,25318,25277 ,13824,13825,13784 ,0,0,0}, {25314,25276,25275 ,13821,13783,13782 ,0,0,0}, - {25318,25319,25278 ,13825,13826,13785 ,0,0,0}, {25317,25277,25276 ,13824,13784,13783 ,0,0,0}, - {25319,25320,25279 ,13826,13827,13786 ,0,0,0}, {25318,25278,25277 ,13825,13785,13784 ,0,0,0}, - {25320,25321,25280 ,13827,13828,13787 ,0,0,0}, {25319,25279,25278 ,13826,13786,13785 ,0,0,0}, - {25321,25322,25281 ,13828,13829,13788 ,0,0,0}, {25320,25280,25279 ,13827,13787,13786 ,0,0,0}, - {25322,25323,25238 ,13829,13830,13745 ,0,0,0}, {25321,25281,25280 ,13828,13788,13787 ,0,0,0}, - {25323,25324,25150 ,13830,13831,13657 ,0,0,0}, {25322,25238,25281 ,13829,13745,13788 ,0,0,0}, - {25324,25154,25282 ,13831,13661,13789 ,0,0,0}, {25150,25238,25323 ,13657,13745,13830 ,0,0,0}, - {25325,25147,25155 ,13832,13654,13662 ,0,0,0}, {25150,25324,25282 ,13657,13831,13789 ,0,0,0}, - {25154,25151,25155 ,13661,13658,13662 ,0,0,0}, {25282,25154,25149 ,13789,13661,13656 ,0,0,0}, - {25326,25144,25143 ,13833,13651,13650 ,0,0,0}, {25136,25144,25240 ,13643,13651,13747 ,0,0,0}, - {25135,25142,25136 ,13642,13649,13643 ,0,0,0}, {25325,25143,25142 ,13832,13650,13649 ,0,0,0}, - {25284,25144,25326 ,13791,13651,13833 ,0,0,0}, {25286,25188,25055 ,13793,13695,13562 ,0,0,0}, - {25061,25054,25194 ,13568,13561,13701 ,0,0,0}, {25057,25327,25328 ,13564,13834,13835 ,0,0,0}, - {25286,25057,25244 ,13793,13564,13751 ,0,0,0}, {25329,25286,25055 ,13836,13793,13562 ,0,0,0}, - {25050,25328,25330 ,13557,13835,13837 ,0,0,0}, {25286,25327,25057 ,13793,13834,13564 ,0,0,0}, - {25049,25330,25288 ,13556,13837,13795 ,0,0,0}, {25328,25050,25057 ,13835,13557,13564 ,0,0,0}, - {25331,25290,25289 ,13838,13797,13796 ,0,0,0}, {25330,25049,25050 ,13837,13556,13557 ,0,0,0}, - {25332,25291,25331 ,13839,13798,13838 ,0,0,0}, {25288,25287,25049 ,13795,13794,13556 ,0,0,0}, - {25333,25334,25335 ,13840,13841,13842 ,0,0,0}, {25289,25290,25287 ,13796,13797,13794 ,0,0,0}, - {25332,25333,25292 ,13839,13840,13799 ,0,0,0}, {25331,25291,25290 ,13838,13798,13797 ,0,0,0}, - {25333,25336,25293 ,13840,13843,13800 ,0,0,0}, {25332,25292,25291 ,13839,13799,13798 ,0,0,0}, - {25336,25337,25294 ,13843,13844,13801 ,0,0,0}, {25333,25293,25292 ,13840,13800,13799 ,0,0,0}, - {25337,25338,25295 ,13844,13845,13802 ,0,0,0}, {25336,25294,25293 ,13843,13801,13800 ,0,0,0}, - {25338,25339,25296 ,13845,13846,13803 ,0,0,0}, {25337,25295,25294 ,13844,13802,13801 ,0,0,0}, - {25253,25339,25340 ,13760,13846,13847 ,0,0,0}, {25338,25296,25295 ,13845,13803,13802 ,0,0,0}, - {25254,25340,25298 ,13761,13847,13805 ,0,0,0}, {25339,25253,25296 ,13846,13760,13803 ,0,0,0}, - {25341,25342,25343 ,13848,13849,13850 ,0,0,0}, {25340,25254,25253 ,13847,13761,13760 ,0,0,0}, - {25299,25341,25300 ,13806,13848,13807 ,0,0,0}, {25298,25297,25254 ,13805,13804,13761 ,0,0,0}, - {25341,25344,25301 ,13848,13851,13808 ,0,0,0}, {25299,25300,25297 ,13806,13807,13804 ,0,0,0}, - {25344,25345,25302 ,13851,13852,13809 ,0,0,0}, {25341,25301,25300 ,13848,13808,13807 ,0,0,0}, - {25303,25345,25346 ,13810,13852,13853 ,0,0,0}, {25344,25302,25301 ,13851,13809,13808 ,0,0,0}, - {25304,25346,25260 ,13811,13853,13767 ,0,0,0}, {25303,25302,25345 ,13810,13809,13852 ,0,0,0}, - {25347,25348,25349 ,13854,13855,13856 ,0,0,0}, {25346,25304,25303 ,13853,13811,13810 ,0,0,0}, - {25261,25347,25305 ,13768,13854,13812 ,0,0,0}, {25260,25259,25304 ,13767,13766,13811 ,0,0,0}, - {25347,25350,25306 ,13854,13857,13813 ,0,0,0}, {25261,25305,25259 ,13768,13812,13766 ,0,0,0}, - {25350,25351,25307 ,13857,13858,13814 ,0,0,0}, {25347,25306,25305 ,13854,13813,13812 ,0,0,0}, - {25351,25352,25308 ,13858,13859,13815 ,0,0,0}, {25350,25307,25306 ,13857,13814,13813 ,0,0,0}, - {25309,25352,25267 ,13816,13859,13774 ,0,0,0}, {25308,25307,25351 ,13815,13814,13858 ,0,0,0}, - {25353,25354,25355 ,13860,13861,13862 ,0,0,0}, {25352,25309,25308 ,13859,13816,13815 ,0,0,0}, - {25268,25353,25310 ,13775,13860,13817 ,0,0,0}, {25267,25266,25309 ,13774,13773,13816 ,0,0,0}, - {25353,25356,25311 ,13860,13863,13818 ,0,0,0}, {25268,25310,25266 ,13775,13817,13773 ,0,0,0}, - {25356,25357,25312 ,13863,13864,13819 ,0,0,0}, {25353,25311,25310 ,13860,13818,13817 ,0,0,0}, - {25357,25358,25313 ,13864,13865,13820 ,0,0,0}, {25356,25312,25311 ,13863,13819,13818 ,0,0,0}, - {25229,25358,25359 ,13736,13865,13866 ,0,0,0}, {25357,25313,25312 ,13864,13820,13819 ,0,0,0}, - {25227,25359,25315 ,13734,13866,13822 ,0,0,0}, {25358,25229,25313 ,13865,13736,13820 ,0,0,0}, - {25360,25317,25316 ,13867,13824,13823 ,0,0,0}, {25359,25227,25229 ,13866,13734,13736 ,0,0,0}, - {25361,25362,25363 ,13868,13869,13870 ,0,0,0}, {25315,25314,25227 ,13822,13821,13734 ,0,0,0}, - {25360,25361,25318 ,13867,13868,13825 ,0,0,0}, {25316,25317,25314 ,13823,13824,13821 ,0,0,0}, - {25361,25364,25319 ,13868,13871,13826 ,0,0,0}, {25360,25318,25317 ,13867,13825,13824 ,0,0,0}, - {25364,25365,25320 ,13871,13872,13827 ,0,0,0}, {25361,25319,25318 ,13868,13826,13825 ,0,0,0}, - {25365,25366,25321 ,13872,13873,13828 ,0,0,0}, {25364,25320,25319 ,13871,13827,13826 ,0,0,0}, - {25366,25367,25322 ,13873,13874,13829 ,0,0,0}, {25365,25321,25320 ,13872,13828,13827 ,0,0,0}, - {25367,25368,25323 ,13874,13875,13830 ,0,0,0}, {25366,25322,25321 ,13873,13829,13828 ,0,0,0}, - {25368,25152,25324 ,13875,13659,13831 ,0,0,0}, {25367,25323,25322 ,13874,13830,13829 ,0,0,0}, - {25154,25152,25151 ,13661,13659,13658 ,0,0,0}, {25323,25368,25324 ,13830,13875,13831 ,0,0,0}, - {25369,25143,25325 ,13876,13650,13832 ,0,0,0}, {25154,25324,25152 ,13661,13831,13659 ,0,0,0}, - {25370,25143,25369 ,13877,13650,13876 ,0,0,0}, {25371,25326,25143 ,13878,13833,13650 ,0,0,0}, - {25147,25325,25142 ,13654,13832,13649 ,0,0,0}, {25283,25369,25325 ,13790,13876,13832 ,0,0,0}, - {25370,25371,25143 ,13877,13878,13650 ,0,0,0}, {25329,25055,25054 ,13836,13562,13561 ,0,0,0}, - {25058,25060,25243 ,13565,13567,13750 ,0,0,0}, {25327,25372,25373 ,13834,13879,13880 ,0,0,0}, - {25329,25327,25286 ,13836,13834,13793 ,0,0,0}, {25054,25374,25329 ,13561,13881,13836 ,0,0,0}, - {25328,25373,25375 ,13835,13880,13882 ,0,0,0}, {25329,25372,25327 ,13836,13879,13834 ,0,0,0}, - {25330,25375,25376 ,13837,13882,13883 ,0,0,0}, {25327,25373,25328 ,13834,13880,13835 ,0,0,0}, - {25288,25376,25377 ,13795,13883,13884 ,0,0,0}, {25328,25375,25330 ,13835,13882,13837 ,0,0,0}, - {25289,25377,25378 ,13796,13884,13885 ,0,0,0}, {25330,25376,25288 ,13837,13883,13795 ,0,0,0}, - {25331,25378,25379 ,13838,13885,13886 ,0,0,0}, {25288,25377,25289 ,13795,13884,13796 ,0,0,0}, - {25332,25379,25334 ,13839,13886,13841 ,0,0,0}, {25378,25331,25289 ,13885,13838,13796 ,0,0,0}, - {25380,25336,25335 ,13887,13843,13842 ,0,0,0}, {25379,25332,25331 ,13886,13839,13838 ,0,0,0}, - {25381,25382,25380 ,13888,13889,13887 ,0,0,0}, {25334,25333,25332 ,13841,13840,13839 ,0,0,0}, - {25380,25382,25337 ,13887,13889,13844 ,0,0,0}, {25335,25336,25333 ,13842,13843,13840 ,0,0,0}, - {25382,25383,25338 ,13889,13890,13845 ,0,0,0}, {25380,25337,25336 ,13887,13844,13843 ,0,0,0}, - {25339,25383,25384 ,13846,13890,13891 ,0,0,0}, {25382,25338,25337 ,13889,13845,13844 ,0,0,0}, - {25340,25384,25385 ,13847,13891,13892 ,0,0,0}, {25338,25383,25339 ,13845,13890,13846 ,0,0,0}, - {25298,25385,25386 ,13805,13892,13893 ,0,0,0}, {25339,25384,25340 ,13846,13891,13847 ,0,0,0}, - {25299,25386,25342 ,13806,13893,13849 ,0,0,0}, {25385,25298,25340 ,13892,13805,13847 ,0,0,0}, - {25387,25388,25343 ,13894,13895,13850 ,0,0,0}, {25386,25299,25298 ,13893,13806,13805 ,0,0,0}, - {25343,25388,25344 ,13850,13895,13851 ,0,0,0}, {25342,25341,25299 ,13849,13848,13806 ,0,0,0}, - {25388,25389,25345 ,13895,13896,13852 ,0,0,0}, {25343,25344,25341 ,13850,13851,13848 ,0,0,0}, - {25346,25389,25390 ,13853,13896,13897 ,0,0,0}, {25388,25345,25344 ,13895,13852,13851 ,0,0,0}, - {25260,25390,25391 ,13767,13897,13898 ,0,0,0}, {25345,25389,25346 ,13852,13896,13853 ,0,0,0}, - {25261,25391,25348 ,13768,13898,13855 ,0,0,0}, {25390,25260,25346 ,13897,13767,13853 ,0,0,0}, - {25392,25393,25349 ,13899,13900,13856 ,0,0,0}, {25391,25261,25260 ,13898,13768,13767 ,0,0,0}, - {25349,25393,25350 ,13856,13900,13857 ,0,0,0}, {25348,25347,25261 ,13855,13854,13768 ,0,0,0}, - {25393,25394,25351 ,13900,13901,13858 ,0,0,0}, {25349,25350,25347 ,13856,13857,13854 ,0,0,0}, - {25352,25394,25395 ,13859,13901,13902 ,0,0,0}, {25393,25351,25350 ,13900,13858,13857 ,0,0,0}, - {25267,25395,25396 ,13774,13902,13903 ,0,0,0}, {25351,25394,25352 ,13858,13901,13859 ,0,0,0}, - {25268,25396,25354 ,13775,13903,13861 ,0,0,0}, {25395,25267,25352 ,13902,13774,13859 ,0,0,0}, - {25397,25398,25355 ,13904,13905,13862 ,0,0,0}, {25396,25268,25267 ,13903,13775,13774 ,0,0,0}, - {25355,25398,25356 ,13862,13905,13863 ,0,0,0}, {25354,25353,25268 ,13861,13860,13775 ,0,0,0}, - {25398,25399,25357 ,13905,13906,13864 ,0,0,0}, {25355,25356,25353 ,13862,13863,13860 ,0,0,0}, - {25358,25399,25400 ,13865,13906,13907 ,0,0,0}, {25398,25357,25356 ,13905,13864,13863 ,0,0,0}, - {25359,25400,25401 ,13866,13907,13908 ,0,0,0}, {25357,25399,25358 ,13864,13906,13865 ,0,0,0}, - {25315,25401,25402 ,13822,13908,13909 ,0,0,0}, {25358,25400,25359 ,13865,13907,13866 ,0,0,0}, - {25316,25402,25403 ,13823,13909,13910 ,0,0,0}, {25359,25401,25315 ,13866,13908,13822 ,0,0,0}, - {25360,25403,25362 ,13867,13910,13869 ,0,0,0}, {25402,25316,25315 ,13909,13823,13822 ,0,0,0}, - {25404,25364,25363 ,13911,13871,13870 ,0,0,0}, {25403,25360,25316 ,13910,13867,13823 ,0,0,0}, - {25405,25406,25404 ,13912,13913,13911 ,0,0,0}, {25362,25361,25360 ,13869,13868,13867 ,0,0,0}, - {25404,25406,25365 ,13911,13913,13872 ,0,0,0}, {25363,25364,25361 ,13870,13871,13868 ,0,0,0}, - {25406,25407,25366 ,13913,13914,13873 ,0,0,0}, {25404,25365,25364 ,13911,13872,13871 ,0,0,0}, - {25407,25408,25367 ,13914,13915,13874 ,0,0,0}, {25406,25366,25365 ,13913,13873,13872 ,0,0,0}, - {25408,25409,25368 ,13915,13916,13875 ,0,0,0}, {25407,25367,25366 ,13914,13874,13873 ,0,0,0}, - {25152,25409,25153 ,13659,13916,13660 ,0,0,0}, {25408,25368,25367 ,13915,13875,13874 ,0,0,0}, - {25153,25410,25151 ,13660,13917,13658 ,0,0,0}, {25152,25368,25409 ,13659,13875,13916 ,0,0,0}, - {25411,25369,25159 ,13918,13876,13666 ,0,0,0}, {25411,25412,25369 ,13918,13919,13876 ,0,0,0}, - {25155,25283,25325 ,13662,13790,13832 ,0,0,0}, {25410,25159,25283 ,13917,13666,13790 ,0,0,0}, - {25370,25369,25412 ,13877,13876,13919 ,0,0,0}, {25060,25374,25054 ,13567,13881,13561 ,0,0,0}, - {25413,25059,25058 ,13920,13566,13565 ,0,0,0}, {25414,25372,25374 ,13921,13879,13881 ,0,0,0}, - {25374,25372,25329 ,13881,13879,13836 ,0,0,0}, {25374,25285,25414 ,13881,13792,13921 ,0,0,0}, - {25415,25373,25372 ,13922,13880,13879 ,0,0,0}, {25372,25414,25415 ,13879,13921,13922 ,0,0,0}, - {25416,25375,25373 ,13923,13882,13880 ,0,0,0}, {25373,25415,25416 ,13880,13922,13923 ,0,0,0}, - {25417,25376,25375 ,13924,13883,13882 ,0,0,0}, {25375,25416,25417 ,13882,13923,13924 ,0,0,0}, - {25418,25377,25376 ,13925,13884,13883 ,0,0,0}, {25376,25417,25418 ,13883,13924,13925 ,0,0,0}, - {25419,25378,25377 ,13926,13885,13884 ,0,0,0}, {25377,25418,25419 ,13884,13925,13926 ,0,0,0}, - {25420,25379,25378 ,13927,13886,13885 ,0,0,0}, {25378,25419,25420 ,13885,13926,13927 ,0,0,0}, - {25421,25334,25379 ,13928,13841,13886 ,0,0,0}, {25379,25420,25421 ,13886,13927,13928 ,0,0,0}, - {25422,25335,25334 ,13929,13842,13841 ,0,0,0}, {25334,25421,25422 ,13841,13928,13929 ,0,0,0}, - {25423,25380,25335 ,13930,13887,13842 ,0,0,0}, {25422,25423,25335 ,13929,13930,13842 ,0,0,0}, - {25424,25425,25426 ,13931,13932,13933 ,0,0,0}, {25423,25381,25380 ,13930,13888,13887 ,0,0,0}, - {25427,25383,25382 ,13934,13890,13889 ,0,0,0}, {25381,25427,25382 ,13888,13934,13889 ,0,0,0}, - {25428,25384,25383 ,13935,13891,13890 ,0,0,0}, {25383,25427,25428 ,13890,13934,13935 ,0,0,0}, - {25429,25385,25384 ,13936,13892,13891 ,0,0,0}, {25384,25428,25429 ,13891,13935,13936 ,0,0,0}, - {25430,25386,25385 ,13937,13893,13892 ,0,0,0}, {25385,25429,25430 ,13892,13936,13937 ,0,0,0}, - {25431,25342,25386 ,13938,13849,13893 ,0,0,0}, {25386,25430,25431 ,13893,13937,13938 ,0,0,0}, - {25432,25343,25342 ,13939,13850,13849 ,0,0,0}, {25431,25432,25342 ,13938,13939,13849 ,0,0,0}, - {25433,25387,25434 ,13940,13894,13941 ,0,0,0}, {25432,25387,25343 ,13939,13894,13850 ,0,0,0}, - {25433,25389,25388 ,13940,13896,13895 ,0,0,0}, {25387,25433,25388 ,13894,13940,13895 ,0,0,0}, - {25435,25390,25389 ,13942,13897,13896 ,0,0,0}, {25389,25433,25435 ,13896,13940,13942 ,0,0,0}, - {25436,25391,25390 ,13943,13898,13897 ,0,0,0}, {25390,25435,25436 ,13897,13942,13943 ,0,0,0}, - {25437,25348,25391 ,13944,13855,13898 ,0,0,0}, {25391,25436,25437 ,13898,13943,13944 ,0,0,0}, - {25438,25349,25348 ,13945,13856,13855 ,0,0,0}, {25437,25438,25348 ,13944,13945,13855 ,0,0,0}, - {25439,25440,25441 ,13946,13947,13948 ,0,0,0}, {25438,25392,25349 ,13945,13899,13856 ,0,0,0}, - {25442,25394,25393 ,13949,13901,13900 ,0,0,0}, {25392,25442,25393 ,13899,13949,13900 ,0,0,0}, - {25443,25395,25394 ,13950,13902,13901 ,0,0,0}, {25394,25442,25443 ,13901,13949,13950 ,0,0,0}, - {25444,25396,25395 ,13951,13903,13902 ,0,0,0}, {25395,25443,25444 ,13902,13950,13951 ,0,0,0}, - {25445,25354,25396 ,13952,13861,13903 ,0,0,0}, {25396,25444,25445 ,13903,13951,13952 ,0,0,0}, - {25446,25355,25354 ,13953,13862,13861 ,0,0,0}, {25445,25446,25354 ,13952,13953,13861 ,0,0,0}, - {25398,25447,25399 ,13905,13954,13906 ,0,0,0}, {25446,25397,25355 ,13953,13904,13862 ,0,0,0}, - {25448,25449,25447 ,13955,13956,13954 ,0,0,0}, {25397,25447,25398 ,13904,13954,13905 ,0,0,0}, - {25449,25400,25399 ,13956,13907,13906 ,0,0,0}, {25399,25447,25449 ,13906,13954,13956 ,0,0,0}, - {25450,25401,25400 ,13957,13908,13907 ,0,0,0}, {25400,25449,25450 ,13907,13956,13957 ,0,0,0}, - {25451,25402,25401 ,13958,13909,13908 ,0,0,0}, {25401,25450,25451 ,13908,13957,13958 ,0,0,0}, - {25452,25403,25402 ,13959,13910,13909 ,0,0,0}, {25402,25451,25452 ,13909,13958,13959 ,0,0,0}, - {25453,25362,25403 ,13960,13869,13910 ,0,0,0}, {25403,25452,25453 ,13910,13959,13960 ,0,0,0}, - {25454,25363,25362 ,13961,13870,13869 ,0,0,0}, {25362,25453,25454 ,13869,13960,13961 ,0,0,0}, - {25455,25404,25363 ,13962,13911,13870 ,0,0,0}, {25454,25455,25363 ,13961,13962,13870 ,0,0,0}, - {25406,25456,25407 ,13913,13963,13914 ,0,0,0}, {25455,25405,25404 ,13962,13912,13911 ,0,0,0}, - {25407,25457,25408 ,13914,13964,13915 ,0,0,0}, {25405,25456,25406 ,13912,13963,13913 ,0,0,0}, - {25408,25458,25409 ,13915,13965,13916 ,0,0,0}, {25456,25457,25407 ,13963,13964,13914 ,0,0,0}, - {25409,25156,25153 ,13916,13663,13660 ,0,0,0}, {25457,25458,25408 ,13964,13965,13915 ,0,0,0}, - {25161,25160,25157 ,13668,13667,13664 ,0,0,0}, {25458,25156,25409 ,13965,13663,13916 ,0,0,0}, - {25157,25410,25153 ,13664,13917,13660 ,0,0,0}, {25283,25159,25369 ,13790,13666,13876 ,0,0,0}, - {25151,25410,25283 ,13658,13917,13790 ,0,0,0}, {25410,25157,25160 ,13917,13664,13667 ,0,0,0}, - {25411,25159,25158 ,13918,13666,13665 ,0,0,0}, {25059,25285,25060 ,13566,13792,13567 ,0,0,0}, - {25413,25066,25064 ,13920,13573,13571 ,0,0,0}, {25414,25285,25459 ,13921,13792,13966 ,0,0,0}, - {25060,25285,25374 ,13567,13792,13881 ,0,0,0}, {25285,25063,25459 ,13792,13570,13966 ,0,0,0}, - {25415,25414,25460 ,13922,13921,13967 ,0,0,0}, {25414,25459,25460 ,13921,13966,13967 ,0,0,0}, - {25416,25415,25461 ,13923,13922,13968 ,0,0,0}, {25415,25460,25461 ,13922,13967,13968 ,0,0,0}, - {25417,25416,25462 ,13924,13923,13969 ,0,0,0}, {25416,25461,25462 ,13923,13968,13969 ,0,0,0}, - {25418,25417,25463 ,13925,13924,13970 ,0,0,0}, {25417,25462,25463 ,13924,13969,13970 ,0,0,0}, - {25419,25418,25464 ,13926,13925,13971 ,0,0,0}, {25418,25463,25464 ,13925,13970,13971 ,0,0,0}, - {25420,25419,25465 ,13927,13926,13972 ,0,0,0}, {25419,25464,25465 ,13926,13971,13972 ,0,0,0}, - {25421,25420,25466 ,13928,13927,13973 ,0,0,0}, {25420,25465,25466 ,13927,13972,13973 ,0,0,0}, - {25422,25421,25467 ,13929,13928,13974 ,0,0,0}, {25421,25466,25467 ,13928,13973,13974 ,0,0,0}, - {25423,25422,25468 ,13930,13929,13975 ,0,0,0}, {25422,25467,25468 ,13929,13974,13975 ,0,0,0}, - {25381,25423,25469 ,13888,13930,13976 ,0,0,0}, {25423,25468,25469 ,13930,13975,13976 ,0,0,0}, - {25427,25381,25424 ,13934,13888,13931 ,0,0,0}, {25469,25424,25381 ,13976,13931,13888 ,0,0,0}, - {25428,25427,25426 ,13935,13934,13933 ,0,0,0}, {25427,25424,25426 ,13934,13931,13933 ,0,0,0}, - {25429,25428,25470 ,13936,13935,13977 ,0,0,0}, {25428,25426,25470 ,13935,13933,13977 ,0,0,0}, - {25430,25429,25471 ,13937,13936,13978 ,0,0,0}, {25429,25470,25471 ,13936,13977,13978 ,0,0,0}, - {25431,25430,25472 ,13938,13937,13979 ,0,0,0}, {25430,25471,25472 ,13937,13978,13979 ,0,0,0}, - {25432,25431,25473 ,13939,13938,13980 ,0,0,0}, {25431,25472,25473 ,13938,13979,13980 ,0,0,0}, - {25387,25432,25474 ,13894,13939,13981 ,0,0,0}, {25432,25473,25474 ,13939,13980,13981 ,0,0,0}, - {25474,25475,25434 ,13981,13982,13941 ,0,0,0}, {25474,25434,25387 ,13981,13941,13894 ,0,0,0}, - {25435,25433,25476 ,13942,13940,13983 ,0,0,0}, {25433,25434,25476 ,13940,13941,13983 ,0,0,0}, - {25436,25435,25477 ,13943,13942,13984 ,0,0,0}, {25435,25476,25477 ,13942,13983,13984 ,0,0,0}, - {25437,25436,25478 ,13944,13943,13985 ,0,0,0}, {25436,25477,25478 ,13943,13984,13985 ,0,0,0}, - {25438,25437,25479 ,13945,13944,13986 ,0,0,0}, {25437,25478,25479 ,13944,13985,13986 ,0,0,0}, - {25392,25438,25480 ,13899,13945,13987 ,0,0,0}, {25438,25479,25480 ,13945,13986,13987 ,0,0,0}, - {25442,25392,25439 ,13949,13899,13946 ,0,0,0}, {25480,25439,25392 ,13987,13946,13899 ,0,0,0}, - {25443,25442,25441 ,13950,13949,13948 ,0,0,0}, {25442,25439,25441 ,13949,13946,13948 ,0,0,0}, - {25444,25443,25481 ,13951,13950,13988 ,0,0,0}, {25443,25441,25481 ,13950,13948,13988 ,0,0,0}, - {25445,25444,25482 ,13952,13951,13989 ,0,0,0}, {25444,25481,25482 ,13951,13988,13989 ,0,0,0}, - {25446,25445,25483 ,13953,13952,13990 ,0,0,0}, {25445,25482,25483 ,13952,13989,13990 ,0,0,0}, - {25397,25446,25484 ,13904,13953,13991 ,0,0,0}, {25446,25483,25484 ,13953,13990,13991 ,0,0,0}, - {25447,25397,25485 ,13954,13904,13992 ,0,0,0}, {25397,25484,25485 ,13904,13991,13992 ,0,0,0}, - {25448,25485,25486 ,13955,13992,13993 ,0,0,0}, {25485,25448,25447 ,13992,13955,13954 ,0,0,0}, - {25450,25449,25487 ,13957,13956,13994 ,0,0,0}, {25449,25448,25487 ,13956,13955,13994 ,0,0,0}, - {25451,25450,25488 ,13958,13957,13995 ,0,0,0}, {25450,25487,25488 ,13957,13994,13995 ,0,0,0}, - {25452,25451,25489 ,13959,13958,13996 ,0,0,0}, {25451,25488,25489 ,13958,13995,13996 ,0,0,0}, - {25453,25452,25490 ,13960,13959,13997 ,0,0,0}, {25452,25489,25490 ,13959,13996,13997 ,0,0,0}, - {25454,25453,25491 ,13961,13960,13998 ,0,0,0}, {25453,25490,25491 ,13960,13997,13998 ,0,0,0}, - {25455,25454,25492 ,13962,13961,13999 ,0,0,0}, {25454,25491,25492 ,13961,13998,13999 ,0,0,0}, - {25405,25455,25493 ,13912,13962,14000 ,0,0,0}, {25455,25492,25493 ,13962,13999,14000 ,0,0,0}, - {25456,25405,25494 ,13963,13912,14001 ,0,0,0}, {25405,25493,25494 ,13912,14000,14001 ,0,0,0}, - {25457,25456,25495 ,13964,13963,14002 ,0,0,0}, {25456,25494,25495 ,13963,14001,14002 ,0,0,0}, - {25458,25457,25496 ,13965,13964,14003 ,0,0,0}, {25457,25495,25496 ,13964,14002,14003 ,0,0,0}, - {25156,25458,25497 ,13663,13965,14004 ,0,0,0}, {25458,25496,25497 ,13965,14003,14004 ,0,0,0}, - {25498,25157,25156 ,14005,13664,13663 ,0,0,0}, {25498,25156,25497 ,14005,13663,14004 ,0,0,0}, - {25410,25160,25159 ,13917,13667,13666 ,0,0,0}, {25498,25161,25157 ,14005,13668,13664 ,0,0,0}, - {25158,25160,25163 ,13665,13667,13670 ,0,0,0}, {25064,25059,25413 ,13571,13566,13920 ,0,0,0}, - {25065,25062,25064 ,13572,13569,13571 ,0,0,0}, {25062,25499,25063 ,13569,14006,13570 ,0,0,0}, - {25063,25499,25459 ,13570,14006,13966 ,0,0,0}, {25499,25500,25459 ,14006,14007,13966 ,0,0,0}, - {25459,25500,25460 ,13966,14007,13967 ,0,0,0}, {25500,25501,25460 ,14007,14008,13967 ,0,0,0}, - {25460,25501,25461 ,13967,14008,13968 ,0,0,0}, {25501,25502,25461 ,14008,14009,13968 ,0,0,0}, - {25461,25502,25462 ,13968,14009,13969 ,0,0,0}, {25502,25503,25462 ,14009,14010,13969 ,0,0,0}, - {25462,25503,25463 ,13969,14010,13970 ,0,0,0}, {25503,25504,25463 ,14010,14011,13970 ,0,0,0}, - {25463,25504,25464 ,13970,14011,13971 ,0,0,0}, {25504,25505,25464 ,14011,14012,13971 ,0,0,0}, - {25464,25505,25465 ,13971,14012,13972 ,0,0,0}, {25505,25506,25465 ,14012,14013,13972 ,0,0,0}, - {25506,25507,25466 ,14013,14014,13973 ,0,0,0}, {25506,25466,25465 ,14013,13973,13972 ,0,0,0}, - {25507,25508,25467 ,14014,14015,13974 ,0,0,0}, {25507,25467,25466 ,14014,13974,13973 ,0,0,0}, - {25508,25509,25468 ,14015,14016,13975 ,0,0,0}, {25508,25468,25467 ,14015,13975,13974 ,0,0,0}, - {25509,25510,25469 ,14016,14017,13976 ,0,0,0}, {25509,25469,25468 ,14016,13976,13975 ,0,0,0}, - {25510,25511,25424 ,14017,14018,13931 ,0,0,0}, {25510,25424,25469 ,14017,13931,13976 ,0,0,0}, - {25425,25424,25511 ,13932,13931,14018 ,0,0,0}, {25425,25512,25426 ,13932,14019,13933 ,0,0,0}, - {25426,25512,25470 ,13933,14019,13977 ,0,0,0}, {25512,25513,25470 ,14019,14020,13977 ,0,0,0}, - {25470,25513,25471 ,13977,14020,13978 ,0,0,0}, {25513,25514,25471 ,14020,14021,13978 ,0,0,0}, - {25514,25515,25472 ,14021,14022,13979 ,0,0,0}, {25514,25472,25471 ,14021,13979,13978 ,0,0,0}, - {25515,25516,25473 ,14022,14023,13980 ,0,0,0}, {25515,25473,25472 ,14022,13980,13979 ,0,0,0}, - {25516,25475,25474 ,14023,13982,13981 ,0,0,0}, {25516,25474,25473 ,14023,13981,13980 ,0,0,0}, - {25475,25517,25434 ,13982,14024,13941 ,0,0,0}, {25517,25518,25434 ,14024,14025,13941 ,0,0,0}, - {25434,25518,25476 ,13941,14025,13983 ,0,0,0}, {25518,25519,25476 ,14025,14026,13983 ,0,0,0}, - {25476,25519,25477 ,13983,14026,13984 ,0,0,0}, {25519,25520,25477 ,14026,14027,13984 ,0,0,0}, - {25520,25521,25478 ,14027,14028,13985 ,0,0,0}, {25520,25478,25477 ,14027,13985,13984 ,0,0,0}, - {25521,25522,25479 ,14028,14029,13986 ,0,0,0}, {25521,25479,25478 ,14028,13986,13985 ,0,0,0}, - {25522,25523,25480 ,14029,14030,13987 ,0,0,0}, {25522,25480,25479 ,14029,13987,13986 ,0,0,0}, - {25523,25524,25439 ,14030,14031,13946 ,0,0,0}, {25523,25439,25480 ,14030,13946,13987 ,0,0,0}, - {25440,25439,25524 ,13947,13946,14031 ,0,0,0}, {25440,25525,25441 ,13947,14032,13948 ,0,0,0}, - {25441,25525,25481 ,13948,14032,13988 ,0,0,0}, {25525,25526,25481 ,14032,14033,13988 ,0,0,0}, - {25526,25527,25482 ,14033,14034,13989 ,0,0,0}, {25526,25482,25481 ,14033,13989,13988 ,0,0,0}, - {25527,25528,25483 ,14034,14035,13990 ,0,0,0}, {25527,25483,25482 ,14034,13990,13989 ,0,0,0}, - {25528,25529,25484 ,14035,14036,13991 ,0,0,0}, {25528,25484,25483 ,14035,13991,13990 ,0,0,0}, - {25529,25486,25485 ,14036,13993,13992 ,0,0,0}, {25529,25485,25484 ,14036,13992,13991 ,0,0,0}, - {25486,25530,25448 ,13993,14037,13955 ,0,0,0}, {25530,25531,25448 ,14037,14038,13955 ,0,0,0}, - {25448,25531,25487 ,13955,14038,13994 ,0,0,0}, {25531,25532,25487 ,14038,14039,13994 ,0,0,0}, - {25487,25532,25488 ,13994,14039,13995 ,0,0,0}, {25532,25533,25488 ,14039,14040,13995 ,0,0,0}, - {25488,25533,25489 ,13995,14040,13996 ,0,0,0}, {25533,25534,25489 ,14040,14041,13996 ,0,0,0}, - {25534,25535,25490 ,14041,14042,13997 ,0,0,0}, {25534,25490,25489 ,14041,13997,13996 ,0,0,0}, - {25535,25536,25491 ,14042,14043,13998 ,0,0,0}, {25535,25491,25490 ,14042,13998,13997 ,0,0,0}, - {25536,25537,25492 ,14043,14044,13999 ,0,0,0}, {25536,25492,25491 ,14043,13999,13998 ,0,0,0}, - {25537,25538,25493 ,14044,14045,14000 ,0,0,0}, {25537,25493,25492 ,14044,14000,13999 ,0,0,0}, - {25538,25539,25494 ,14045,14046,14001 ,0,0,0}, {25538,25494,25493 ,14045,14001,14000 ,0,0,0}, - {25539,25540,25495 ,14046,14047,14002 ,0,0,0}, {25539,25495,25494 ,14046,14002,14001 ,0,0,0}, - {25540,25541,25496 ,14047,14048,14003 ,0,0,0}, {25540,25496,25495 ,14047,14003,14002 ,0,0,0}, - {25541,25542,25497 ,14048,14049,14004 ,0,0,0}, {25541,25497,25496 ,14048,14004,14003 ,0,0,0}, - {25542,25543,25498 ,14049,14050,14005 ,0,0,0}, {25542,25498,25497 ,14049,14005,14004 ,0,0,0}, - {25544,25498,25543 ,14051,14005,14050 ,0,0,0}, {25498,25544,25161 ,14005,14051,13668 ,0,0,0}, - {25161,25544,25164 ,13668,14051,13671 ,0,0,0}, {25545,25546,25547 ,14052,14053,14054 ,0,0,0}, - {25548,25549,25550 ,14055,14056,14057 ,0,0,0}, {25551,25552,25553 ,14058,14059,14060 ,0,0,0}, - {25554,25555,25551 ,14061,14062,14058 ,0,0,0}, {25556,25557,25558 ,14063,14064,14065 ,0,0,0}, - {25559,25560,25561 ,14066,14067,14068 ,0,0,0}, {25562,25563,25564 ,14069,14070,14071 ,0,0,0}, - {25565,25566,25559 ,14072,14073,14066 ,0,0,0}, {25567,25568,25569 ,14074,14075,14076 ,0,0,0}, - {25569,25564,25570 ,14076,14071,14077 ,0,0,0}, {25571,25567,25572 ,14078,14074,14079 ,0,0,0}, - {25568,25567,25573 ,14075,14074,14080 ,0,0,0}, {25554,25574,25575 ,14061,14081,14082 ,0,0,0}, - {25571,25576,25567 ,14078,14083,14074 ,0,0,0}, {25577,25578,25579 ,14084,14085,14086 ,0,0,0}, - {25578,25580,25547 ,14085,14087,14054 ,0,0,0}, {25581,25582,25579 ,14088,14089,14086 ,0,0,0}, - {25580,25578,25577 ,14087,14085,14084 ,0,0,0}, {25583,25584,25581 ,14090,14091,14088 ,0,0,0}, - {25579,25582,25577 ,14086,14089,14084 ,0,0,0}, {25585,25586,25549 ,14092,14093,14056 ,0,0,0}, - {25587,25588,25589 ,14094,14095,14096 ,0,0,0}, {25585,25590,25586 ,14092,14097,14093 ,0,0,0}, - {25591,25592,25593 ,14098,14099,14100 ,0,0,0}, {25588,25594,25589 ,14095,14101,14096 ,0,0,0}, - {25595,25596,25597 ,14102,14103,14104 ,0,0,0}, {25591,25593,25598 ,14098,14100,14105 ,0,0,0}, - {25599,25600,25601 ,14106,14107,14108 ,0,0,0}, {25600,25599,25602 ,14107,14106,14109 ,0,0,0}, - {25603,25604,25605 ,14110,14111,14112 ,0,0,0}, {25606,25607,25604 ,14113,14114,14111 ,0,0,0}, - {25608,25609,25610 ,14115,14116,14117 ,0,0,0}, {25603,25605,25611 ,14110,14112,14118 ,0,0,0}, - {25612,25613,25614 ,14119,14120,14121 ,0,0,0}, {25608,25610,25615 ,14115,14117,14122 ,0,0,0}, - {25616,25617,25618 ,14123,14124,14125 ,0,0,0}, {25619,25613,25612 ,14126,14120,14119 ,0,0,0}, - {25620,25621,25622 ,14127,14128,14129 ,0,0,0}, {25622,25618,25620 ,14129,14125,14127 ,0,0,0}, - {25623,25624,25625 ,14130,14131,14132 ,0,0,0}, {25626,25621,25627 ,14133,14128,14134 ,0,0,0}, - {25628,25629,25630 ,14135,14136,14137 ,0,0,0}, {25629,25628,25631 ,14136,14135,14138 ,0,0,0}, - {25632,25633,25634 ,14139,14140,14141 ,0,0,0}, {25630,25633,25635 ,14137,14140,14142 ,0,0,0}, - {25636,25637,25638 ,14143,14144,14145 ,0,0,0}, {25639,25640,25641 ,14146,14147,14148 ,0,0,0}, - {25642,25643,25644 ,14149,14150,14151 ,0,0,0}, {25643,25642,25645 ,14150,14149,14152 ,0,0,0}, - {25646,25647,25648 ,14153,14154,14155 ,0,0,0}, {25649,25650,25646 ,14156,14157,14153 ,0,0,0}, - {25647,25646,25650 ,14154,14153,14157 ,0,0,0}, {25647,25650,25636 ,14154,14157,14143 ,0,0,0}, - {25651,25652,25653 ,14158,14159,14160 ,0,0,0}, {25634,25638,25637 ,14141,14145,14144 ,0,0,0}, - {25654,25639,25641 ,14161,14146,14148 ,0,0,0}, {25640,25655,25641 ,14147,14162,14148 ,0,0,0}, - {25656,25657,25639 ,14163,14164,14146 ,0,0,0}, {25639,25658,25640 ,14146,14165,14147 ,0,0,0}, - {25659,25660,25661 ,14166,14167,14168 ,0,0,0}, {25058,25662,25663 ,14169,14170,14171 ,0,0,0}, - {25663,25664,25413 ,14171,14172,14173 ,0,0,0}, {25664,25066,25413 ,14172,14174,14173 ,0,0,0}, - {25067,25066,25665 ,730,14174,14175 ,0,0,0}, {25653,25633,25651 ,14160,14140,14158 ,0,0,0}, - {25644,25649,25646 ,14151,14156,14153 ,0,0,0}, {25634,25637,25632 ,14141,14144,14139 ,0,0,0}, - {25196,25645,25195 ,14176,14152,14177 ,0,0,0}, {25628,25630,25635 ,14135,14137,14142 ,0,0,0}, - {25633,25632,25635 ,14140,14139,14142 ,0,0,0}, {25623,25631,25624 ,14130,14138,14131 ,0,0,0}, - {25629,25631,25623 ,14136,14138,14130 ,0,0,0}, {25623,25666,25629 ,14130,14178,14136 ,0,0,0}, - {25624,25626,25625 ,14131,14133,14132 ,0,0,0}, {25627,25621,25620 ,14134,14128,14127 ,0,0,0}, - {25626,25627,25625 ,14133,14134,14132 ,0,0,0}, {25616,25618,25622 ,14123,14125,14129 ,0,0,0}, - {25612,25614,25667 ,14119,14121,14179 ,0,0,0}, {25668,25619,25669 ,14180,14126,14181 ,0,0,0}, - {25618,25617,25669 ,14125,14124,14181 ,0,0,0}, {25613,25619,25668 ,14120,14126,14180 ,0,0,0}, - {25617,25668,25669 ,14124,14180,14181 ,0,0,0}, {25667,25614,25615 ,14179,14121,14122 ,0,0,0}, - {25670,25612,25667 ,14182,14119,14179 ,0,0,0}, {25615,25610,25667 ,14122,14117,14179 ,0,0,0}, - {25611,25609,25671 ,14118,14116,14183 ,0,0,0}, {25608,25671,25609 ,14115,14183,14116 ,0,0,0}, - {25672,25611,25671 ,14184,14118,14183 ,0,0,0}, {25607,25605,25604 ,14114,14112,14111 ,0,0,0}, - {25603,25611,25672 ,14110,14118,14184 ,0,0,0}, {25606,25673,25607 ,14113,14185,14114 ,0,0,0}, - {25601,25600,25673 ,14108,14107,14185 ,0,0,0}, {25673,25606,25601 ,14185,14113,14108 ,0,0,0}, - {25602,25674,25597 ,14109,14186,14104 ,0,0,0}, {25675,25676,25677 ,14187,14188,14189 ,0,0,0}, - {25597,25674,25678 ,14104,14186,14190 ,0,0,0}, {25674,25602,25599 ,14186,14109,14106 ,0,0,0}, - {25679,25598,25596 ,14191,14105,14103 ,0,0,0}, {25595,25597,25678 ,14102,14104,14190 ,0,0,0}, - {25598,25679,25591 ,14105,14191,14098 ,0,0,0}, {25679,25596,25595 ,14191,14103,14102 ,0,0,0}, - {25590,25680,25681 ,14097,14192,14193 ,0,0,0}, {25592,25594,25682 ,14099,14101,14194 ,0,0,0}, - {25593,25592,25682 ,14100,14099,14194 ,0,0,0}, {25682,25594,25588 ,14194,14101,14095 ,0,0,0}, - {25683,25684,25685 ,14195,14196,14197 ,0,0,0}, {25680,25587,25589 ,14192,14094,14096 ,0,0,0}, - {25547,25580,25545 ,14054,14087,14052 ,0,0,0}, {25590,25587,25680 ,14097,14094,14192 ,0,0,0}, - {25590,25681,25586 ,14097,14193,14093 ,0,0,0}, {25549,25548,25585 ,14056,14055,14092 ,0,0,0}, - {25584,25583,25550 ,14091,14090,14057 ,0,0,0}, {25550,25583,25548 ,14057,14090,14055 ,0,0,0}, - {25686,25583,25581 ,14198,14090,14088 ,0,0,0}, {25584,25582,25581 ,14091,14089,14088 ,0,0,0}, - {25546,25575,25574 ,14053,14082,14081 ,0,0,0}, {25545,25575,25546 ,14052,14082,14053 ,0,0,0}, - {25555,25552,25551 ,14062,14059,14058 ,0,0,0}, {25554,25551,25574 ,14061,14058,14081 ,0,0,0}, - {25555,25687,25552 ,14062,14199,14059 ,0,0,0}, {25558,25688,25562 ,14065,14200,14069 ,0,0,0}, - {25689,25690,25687 ,14201,14202,14199 ,0,0,0}, {25556,25691,25692 ,14063,14203,14204 ,0,0,0}, - {25690,25693,25694 ,14202,14205,14206 ,0,0,0}, {25689,25693,25690 ,14201,14205,14202 ,0,0,0}, - {25690,25552,25687 ,14202,14059,14199 ,0,0,0}, {25694,25695,25696 ,14206,14207,14208 ,0,0,0}, - {25695,25694,25697 ,14207,14206,14209 ,0,0,0}, {25693,25697,25694 ,14205,14209,14206 ,0,0,0}, - {25692,25691,25696 ,14204,14203,14208 ,0,0,0}, {25698,25558,25557 ,14210,14065,14064 ,0,0,0}, - {25694,25696,25691 ,14206,14208,14203 ,0,0,0}, {25563,25562,25699 ,14070,14069,14211 ,0,0,0}, - {25694,25700,25690 ,14206,14212,14202 ,0,0,0}, {25701,25574,25551 ,14213,14081,14058 ,0,0,0}, - {25690,25561,25552 ,14202,14068,14059 ,0,0,0}, {25702,25546,25574 ,14214,14053,14081 ,0,0,0}, - {25553,25552,25561 ,14060,14059,14068 ,0,0,0}, {25703,25547,25546 ,14215,14054,14053 ,0,0,0}, - {25701,25551,25553 ,14213,14058,14060 ,0,0,0}, {25704,25578,25547 ,14216,14085,14054 ,0,0,0}, - {25702,25574,25701 ,14214,14081,14213 ,0,0,0}, {25705,25579,25578 ,14217,14086,14085 ,0,0,0}, - {25703,25546,25702 ,14215,14053,14214 ,0,0,0}, {25706,25581,25579 ,14218,14088,14086 ,0,0,0}, - {25547,25703,25704 ,14054,14215,14216 ,0,0,0}, {25707,25708,25709 ,14219,14220,14221 ,0,0,0}, - {25578,25704,25705 ,14085,14216,14217 ,0,0,0}, {25709,25548,25583 ,14221,14055,14090 ,0,0,0}, - {25579,25705,25706 ,14086,14217,14218 ,0,0,0}, {25710,25585,25548 ,14222,14092,14055 ,0,0,0}, - {25581,25706,25686 ,14088,14218,14198 ,0,0,0}, {25711,25590,25585 ,14223,14097,14092 ,0,0,0}, - {25583,25686,25709 ,14090,14198,14221 ,0,0,0}, {25712,25587,25590 ,14224,14094,14097 ,0,0,0}, - {25548,25709,25710 ,14055,14221,14222 ,0,0,0}, {25713,25588,25587 ,14225,14095,14094 ,0,0,0}, - {25711,25585,25710 ,14223,14092,14222 ,0,0,0}, {25714,25682,25588 ,14226,14194,14095 ,0,0,0}, - {25712,25590,25711 ,14224,14097,14223 ,0,0,0}, {25715,25593,25682 ,14227,14100,14194 ,0,0,0}, - {25587,25712,25713 ,14094,14224,14225 ,0,0,0}, {25684,25598,25593 ,14196,14105,14100 ,0,0,0}, - {25588,25713,25714 ,14095,14225,14226 ,0,0,0}, {25716,25596,25598 ,14228,14103,14105 ,0,0,0}, - {25682,25714,25715 ,14194,14226,14227 ,0,0,0}, {25717,25597,25596 ,14229,14104,14103 ,0,0,0}, - {25593,25715,25684 ,14100,14227,14196 ,0,0,0}, {25718,25602,25597 ,14230,14109,14104 ,0,0,0}, - {25716,25598,25684 ,14228,14105,14196 ,0,0,0}, {25719,25600,25602 ,14231,14107,14109 ,0,0,0}, - {25717,25596,25716 ,14229,14103,14228 ,0,0,0}, {25720,25673,25600 ,14232,14185,14107 ,0,0,0}, - {25597,25717,25718 ,14104,14229,14230 ,0,0,0}, {25607,25673,25675 ,14114,14185,14187 ,0,0,0}, - {25602,25718,25719 ,14109,14230,14231 ,0,0,0}, {25721,25605,25607 ,14233,14112,14114 ,0,0,0}, - {25600,25719,25720 ,14107,14231,14232 ,0,0,0}, {25722,25611,25605 ,14234,14118,14112 ,0,0,0}, - {25673,25720,25675 ,14185,14232,14187 ,0,0,0}, {25723,25609,25611 ,14235,14116,14118 ,0,0,0}, - {25721,25607,25675 ,14233,14114,14187 ,0,0,0}, {25724,25610,25609 ,14236,14117,14116 ,0,0,0}, - {25722,25605,25721 ,14234,14112,14233 ,0,0,0}, {25725,25667,25610 ,14237,14179,14117 ,0,0,0}, - {25611,25722,25723 ,14118,14234,14235 ,0,0,0}, {25726,25727,25728 ,14238,14239,14240 ,0,0,0}, - {25609,25723,25724 ,14116,14235,14236 ,0,0,0}, {25729,25619,25612 ,14241,14126,14119 ,0,0,0}, - {25610,25724,25725 ,14117,14236,14237 ,0,0,0}, {25730,25669,25619 ,14242,14181,14126 ,0,0,0}, - {25667,25725,25670 ,14179,14237,14182 ,0,0,0}, {25731,25618,25669 ,14243,14125,14181 ,0,0,0}, - {25612,25670,25729 ,14119,14182,14241 ,0,0,0}, {25732,25620,25618 ,14244,14127,14125 ,0,0,0}, - {25730,25619,25729 ,14242,14126,14241 ,0,0,0}, {25733,25627,25620 ,14245,14134,14127 ,0,0,0}, - {25731,25669,25730 ,14243,14181,14242 ,0,0,0}, {25734,25625,25627 ,14246,14132,14134 ,0,0,0}, - {25732,25618,25731 ,14244,14125,14243 ,0,0,0}, {25735,25623,25625 ,14247,14130,14132 ,0,0,0}, - {25620,25732,25733 ,14127,14244,14245 ,0,0,0}, {25629,25736,25630 ,14136,14248,14137 ,0,0,0}, - {25627,25733,25734 ,14134,14245,14246 ,0,0,0}, {25651,25737,25652 ,14158,14249,14159 ,0,0,0}, - {25625,25734,25735 ,14132,14246,14247 ,0,0,0}, {25651,25633,25630 ,14158,14140,14137 ,0,0,0}, - {25623,25735,25666 ,14130,14247,14178 ,0,0,0}, {25653,25634,25633 ,14160,14141,14140 ,0,0,0}, - {25629,25666,25736 ,14136,14178,14248 ,0,0,0}, {25638,25634,25738 ,14145,14141,14250 ,0,0,0}, - {25651,25630,25736 ,14158,14137,14248 ,0,0,0}, {25655,25648,25647 ,14162,14155,14154 ,0,0,0}, - {25739,25646,25648 ,14251,14153,14155 ,0,0,0}, {25638,25647,25636 ,14145,14154,14143 ,0,0,0}, - {25738,25634,25653 ,14250,14141,14160 ,0,0,0}, {25655,25640,25648 ,14162,14147,14155 ,0,0,0}, - {25647,25638,25655 ,14154,14145,14162 ,0,0,0}, {25644,25740,25642 ,14151,14252,14149 ,0,0,0}, - {25642,25195,25645 ,14149,14177,14152 ,0,0,0}, {25649,25644,25643 ,14156,14151,14150 ,0,0,0}, - {25644,25739,25740 ,14151,14251,14252 ,0,0,0}, {25197,25195,25642 ,14253,14177,14149 ,0,0,0}, - {25691,25700,25694 ,14203,14212,14206 ,0,0,0}, {25557,25556,25692 ,14064,14063,14204 ,0,0,0}, - {25741,25569,25568 ,14254,14076,14075 ,0,0,0}, {25700,25561,25690 ,14212,14068,14202 ,0,0,0}, - {25700,25691,25742 ,14212,14203,14255 ,0,0,0}, {25553,25560,25743 ,14060,14067,14256 ,0,0,0}, - {25559,25561,25700 ,14066,14068,14212 ,0,0,0}, {25701,25743,25744 ,14213,14256,14257 ,0,0,0}, - {25560,25553,25561 ,14067,14060,14068 ,0,0,0}, {25702,25744,25745 ,14214,14257,14258 ,0,0,0}, - {25743,25701,25553 ,14256,14213,14060 ,0,0,0}, {25703,25745,25746 ,14215,14258,14259 ,0,0,0}, - {25744,25702,25701 ,14257,14214,14213 ,0,0,0}, {25704,25746,25747 ,14216,14259,14260 ,0,0,0}, - {25745,25703,25702 ,14258,14215,14214 ,0,0,0}, {25705,25747,25748 ,14217,14260,14261 ,0,0,0}, - {25746,25704,25703 ,14259,14216,14215 ,0,0,0}, {25706,25748,25749 ,14218,14261,14262 ,0,0,0}, - {25747,25705,25704 ,14260,14217,14216 ,0,0,0}, {25686,25749,25707 ,14198,14262,14219 ,0,0,0}, - {25706,25705,25748 ,14218,14217,14261 ,0,0,0}, {25750,25751,25752 ,14263,14264,14265 ,0,0,0}, - {25686,25706,25749 ,14198,14218,14262 ,0,0,0}, {25710,25708,25750 ,14222,14220,14263 ,0,0,0}, - {25709,25686,25707 ,14221,14198,14219 ,0,0,0}, {25711,25750,25753 ,14223,14263,14266 ,0,0,0}, - {25710,25709,25708 ,14222,14221,14220 ,0,0,0}, {25712,25753,25754 ,14224,14266,14267 ,0,0,0}, - {25750,25711,25710 ,14263,14223,14222 ,0,0,0}, {25713,25754,25755 ,14225,14267,14268 ,0,0,0}, - {25753,25712,25711 ,14266,14224,14223 ,0,0,0}, {25714,25755,25756 ,14226,14268,14269 ,0,0,0}, - {25754,25713,25712 ,14267,14225,14224 ,0,0,0}, {25715,25756,25685 ,14227,14269,14197 ,0,0,0}, - {25714,25713,25755 ,14226,14225,14268 ,0,0,0}, {25757,25758,25759 ,14270,14271,14272 ,0,0,0}, - {25715,25714,25756 ,14227,14226,14269 ,0,0,0}, {25716,25683,25760 ,14228,14195,14273 ,0,0,0}, - {25684,25715,25685 ,14196,14227,14197 ,0,0,0}, {25717,25760,25761 ,14229,14273,14274 ,0,0,0}, - {25683,25716,25684 ,14195,14228,14196 ,0,0,0}, {25718,25761,25762 ,14230,14274,14275 ,0,0,0}, - {25760,25717,25716 ,14273,14229,14228 ,0,0,0}, {25719,25762,25763 ,14231,14275,14276 ,0,0,0}, - {25761,25718,25717 ,14274,14230,14229 ,0,0,0}, {25720,25763,25676 ,14232,14276,14188 ,0,0,0}, - {25719,25718,25762 ,14231,14230,14275 ,0,0,0}, {25764,25765,25766 ,14277,14278,14279 ,0,0,0}, - {25720,25719,25763 ,14232,14231,14276 ,0,0,0}, {25721,25677,25767 ,14233,14189,14280 ,0,0,0}, - {25675,25720,25676 ,14187,14232,14188 ,0,0,0}, {25722,25767,25768 ,14234,14280,14281 ,0,0,0}, - {25721,25675,25677 ,14233,14187,14189 ,0,0,0}, {25723,25768,25769 ,14235,14281,14282 ,0,0,0}, - {25767,25722,25721 ,14280,14234,14233 ,0,0,0}, {25724,25769,25770 ,14236,14282,14283 ,0,0,0}, - {25768,25723,25722 ,14281,14235,14234 ,0,0,0}, {25725,25770,25771 ,14237,14283,14284 ,0,0,0}, - {25769,25724,25723 ,14282,14236,14235 ,0,0,0}, {25670,25771,25772 ,14182,14284,14285 ,0,0,0}, - {25725,25724,25770 ,14237,14236,14283 ,0,0,0}, {25729,25772,25727 ,14241,14285,14239 ,0,0,0}, - {25670,25725,25771 ,14182,14237,14284 ,0,0,0}, {25730,25727,25773 ,14242,14239,14286 ,0,0,0}, - {25729,25670,25772 ,14241,14182,14285 ,0,0,0}, {25731,25773,25774 ,14243,14286,14287 ,0,0,0}, - {25727,25730,25729 ,14239,14242,14241 ,0,0,0}, {25732,25774,25775 ,14244,14287,14288 ,0,0,0}, - {25773,25731,25730 ,14286,14243,14242 ,0,0,0}, {25733,25775,25776 ,14245,14288,14289 ,0,0,0}, - {25774,25732,25731 ,14287,14244,14243 ,0,0,0}, {25734,25776,25777 ,14246,14289,14290 ,0,0,0}, - {25775,25733,25732 ,14288,14245,14244 ,0,0,0}, {25735,25777,25778 ,14247,14290,14291 ,0,0,0}, - {25776,25734,25733 ,14289,14246,14245 ,0,0,0}, {25666,25778,25779 ,14178,14291,14292 ,0,0,0}, - {25777,25735,25734 ,14290,14247,14246 ,0,0,0}, {25736,25779,25737 ,14248,14292,14249 ,0,0,0}, - {25666,25735,25778 ,14178,14247,14291 ,0,0,0}, {25780,25653,25652 ,14293,14160,14159 ,0,0,0}, - {25736,25666,25779 ,14248,14178,14292 ,0,0,0}, {25662,25781,25657 ,14170,14294,14164 ,0,0,0}, - {25651,25736,25737 ,14158,14248,14249 ,0,0,0}, {25780,25641,25738 ,14293,14148,14250 ,0,0,0}, - {25640,25782,25648 ,14147,14295,14155 ,0,0,0}, {25738,25655,25638 ,14250,14162,14145 ,0,0,0}, - {25780,25738,25653 ,14293,14250,14160 ,0,0,0}, {25783,25740,25739 ,14296,14252,14251 ,0,0,0}, - {25738,25641,25655 ,14250,14148,14162 ,0,0,0}, {25198,25740,25783 ,14297,14252,14296 ,0,0,0}, - {25740,25197,25642 ,14252,14253,14149 ,0,0,0}, {25646,25739,25644 ,14153,14251,14151 ,0,0,0}, - {25782,25783,25739 ,14295,14296,14251 ,0,0,0}, {25198,25197,25740 ,14297,14253,14252 ,0,0,0}, - {25742,25691,25556 ,14255,14203,14063 ,0,0,0}, {25688,25558,25698 ,14200,14065,14210 ,0,0,0}, - {25784,25560,25566 ,14298,14067,14073 ,0,0,0}, {25742,25559,25700 ,14255,14066,14212 ,0,0,0}, - {25742,25556,25785 ,14255,14063,14299 ,0,0,0}, {25786,25787,25788 ,14300,14301,14302 ,0,0,0}, - {25565,25559,25742 ,14072,14066,14255 ,0,0,0}, {25784,25786,25743 ,14298,14300,14256 ,0,0,0}, - {25566,25560,25559 ,14073,14067,14066 ,0,0,0}, {25786,25789,25744 ,14300,14303,14257 ,0,0,0}, - {25784,25743,25560 ,14298,14256,14067 ,0,0,0}, {25789,25790,25745 ,14303,14304,14258 ,0,0,0}, - {25786,25744,25743 ,14300,14257,14256 ,0,0,0}, {25790,25791,25746 ,14304,14305,14259 ,0,0,0}, - {25789,25745,25744 ,14303,14258,14257 ,0,0,0}, {25791,25792,25747 ,14305,14306,14260 ,0,0,0}, - {25790,25746,25745 ,14304,14259,14258 ,0,0,0}, {25792,25793,25748 ,14306,14307,14261 ,0,0,0}, - {25791,25747,25746 ,14305,14260,14259 ,0,0,0}, {25793,25794,25749 ,14307,14308,14262 ,0,0,0}, - {25792,25748,25747 ,14306,14261,14260 ,0,0,0}, {25794,25795,25707 ,14308,14309,14219 ,0,0,0}, - {25793,25749,25748 ,14307,14262,14261 ,0,0,0}, {25795,25751,25708 ,14309,14264,14220 ,0,0,0}, - {25707,25749,25794 ,14219,14262,14308 ,0,0,0}, {25796,25797,25798 ,14310,14311,14312 ,0,0,0}, - {25708,25707,25795 ,14220,14219,14309 ,0,0,0}, {25752,25796,25753 ,14265,14310,14266 ,0,0,0}, - {25751,25750,25708 ,14264,14263,14220 ,0,0,0}, {25796,25799,25754 ,14310,14313,14267 ,0,0,0}, - {25752,25753,25750 ,14265,14266,14263 ,0,0,0}, {25799,25800,25755 ,14313,14314,14268 ,0,0,0}, - {25796,25754,25753 ,14310,14267,14266 ,0,0,0}, {25800,25801,25756 ,14314,14315,14269 ,0,0,0}, - {25799,25755,25754 ,14313,14268,14267 ,0,0,0}, {25801,25802,25685 ,14315,14316,14197 ,0,0,0}, - {25800,25756,25755 ,14314,14269,14268 ,0,0,0}, {25683,25802,25803 ,14195,14316,14317 ,0,0,0}, - {25685,25756,25801 ,14197,14269,14315 ,0,0,0}, {25803,25757,25760 ,14317,14270,14273 ,0,0,0}, - {25802,25683,25685 ,14316,14195,14197 ,0,0,0}, {25757,25804,25761 ,14270,14318,14274 ,0,0,0}, - {25803,25760,25683 ,14317,14273,14195 ,0,0,0}, {25804,25805,25762 ,14318,14319,14275 ,0,0,0}, - {25757,25761,25760 ,14270,14274,14273 ,0,0,0}, {25805,25806,25763 ,14319,14320,14276 ,0,0,0}, - {25804,25762,25761 ,14318,14275,14274 ,0,0,0}, {25806,25807,25676 ,14320,14321,14188 ,0,0,0}, - {25805,25763,25762 ,14319,14276,14275 ,0,0,0}, {25807,25808,25677 ,14321,14322,14189 ,0,0,0}, - {25676,25763,25806 ,14188,14276,14320 ,0,0,0}, {25808,25764,25767 ,14322,14277,14280 ,0,0,0}, - {25677,25676,25807 ,14189,14188,14321 ,0,0,0}, {25764,25809,25768 ,14277,14323,14281 ,0,0,0}, - {25808,25767,25677 ,14322,14280,14189 ,0,0,0}, {25809,25810,25769 ,14323,14324,14282 ,0,0,0}, - {25764,25768,25767 ,14277,14281,14280 ,0,0,0}, {25810,25811,25770 ,14324,14325,14283 ,0,0,0}, - {25809,25769,25768 ,14323,14282,14281 ,0,0,0}, {25811,25812,25771 ,14325,14326,14284 ,0,0,0}, - {25810,25770,25769 ,14324,14283,14282 ,0,0,0}, {25812,25728,25772 ,14326,14240,14285 ,0,0,0}, - {25771,25770,25811 ,14284,14283,14325 ,0,0,0}, {25813,25814,25815 ,14327,14328,14329 ,0,0,0}, - {25772,25771,25812 ,14285,14284,14326 ,0,0,0}, {25726,25813,25773 ,14238,14327,14286 ,0,0,0}, - {25728,25727,25772 ,14240,14239,14285 ,0,0,0}, {25813,25816,25774 ,14327,14330,14287 ,0,0,0}, - {25726,25773,25727 ,14238,14286,14239 ,0,0,0}, {25816,25817,25775 ,14330,14331,14288 ,0,0,0}, - {25813,25774,25773 ,14327,14287,14286 ,0,0,0}, {25817,25818,25776 ,14331,14332,14289 ,0,0,0}, - {25816,25775,25774 ,14330,14288,14287 ,0,0,0}, {25818,25819,25777 ,14332,14333,14290 ,0,0,0}, - {25817,25776,25775 ,14331,14289,14288 ,0,0,0}, {25819,25820,25778 ,14333,14334,14291 ,0,0,0}, - {25818,25777,25776 ,14332,14290,14289 ,0,0,0}, {25820,25821,25779 ,14334,14335,14292 ,0,0,0}, - {25819,25778,25777 ,14333,14291,14290 ,0,0,0}, {25821,25822,25737 ,14335,14336,14249 ,0,0,0}, - {25820,25779,25778 ,14334,14292,14291 ,0,0,0}, {25822,25823,25652 ,14336,14337,14159 ,0,0,0}, - {25821,25737,25779 ,14335,14249,14292 ,0,0,0}, {25823,25654,25780 ,14337,14161,14293 ,0,0,0}, - {25652,25737,25822 ,14159,14249,14336 ,0,0,0}, {25824,25194,25056 ,14338,14339,14340 ,0,0,0}, - {25823,25780,25652 ,14337,14293,14159 ,0,0,0}, {25656,25639,25654 ,14163,14146,14161 ,0,0,0}, - {25780,25654,25641 ,14293,14161,14148 ,0,0,0}, {25189,25783,25824 ,14341,14296,14338 ,0,0,0}, - {25189,25200,25783 ,14341,14342,14296 ,0,0,0}, {25648,25782,25739 ,14155,14295,14251 ,0,0,0}, - {25658,25824,25782 ,14165,14338,14295 ,0,0,0}, {25198,25783,25200 ,14297,14296,14342 ,0,0,0}, - {25558,25785,25556 ,14065,14299,14063 ,0,0,0}, {25699,25562,25688 ,14211,14069,14200 ,0,0,0}, - {25565,25825,25826 ,14072,14343,14344 ,0,0,0}, {25785,25565,25742 ,14299,14072,14255 ,0,0,0}, - {25827,25785,25558 ,14345,14299,14065 ,0,0,0}, {25566,25826,25828 ,14073,14344,14346 ,0,0,0}, - {25785,25825,25565 ,14299,14343,14072 ,0,0,0}, {25784,25828,25787 ,14298,14346,14301 ,0,0,0}, - {25826,25566,25565 ,14344,14073,14072 ,0,0,0}, {25829,25789,25788 ,14347,14303,14302 ,0,0,0}, - {25828,25784,25566 ,14346,14298,14073 ,0,0,0}, {25830,25790,25829 ,14348,14304,14347 ,0,0,0}, - {25787,25786,25784 ,14301,14300,14298 ,0,0,0}, {25831,25832,25833 ,14349,14350,14351 ,0,0,0}, - {25788,25789,25786 ,14302,14303,14300 ,0,0,0}, {25830,25831,25791 ,14348,14349,14305 ,0,0,0}, - {25829,25790,25789 ,14347,14304,14303 ,0,0,0}, {25831,25834,25792 ,14349,14352,14306 ,0,0,0}, - {25830,25791,25790 ,14348,14305,14304 ,0,0,0}, {25834,25835,25793 ,14352,14353,14307 ,0,0,0}, - {25831,25792,25791 ,14349,14306,14305 ,0,0,0}, {25835,25836,25794 ,14353,14354,14308 ,0,0,0}, - {25834,25793,25792 ,14352,14307,14306 ,0,0,0}, {25836,25837,25795 ,14354,14355,14309 ,0,0,0}, - {25835,25794,25793 ,14353,14308,14307 ,0,0,0}, {25751,25837,25838 ,14264,14355,14356 ,0,0,0}, - {25836,25795,25794 ,14354,14309,14308 ,0,0,0}, {25752,25838,25797 ,14265,14356,14311 ,0,0,0}, - {25837,25751,25795 ,14355,14264,14309 ,0,0,0}, {25839,25840,25841 ,14357,14358,14359 ,0,0,0}, - {25838,25752,25751 ,14356,14265,14264 ,0,0,0}, {25798,25839,25799 ,14312,14357,14313 ,0,0,0}, - {25797,25796,25752 ,14311,14310,14265 ,0,0,0}, {25839,25842,25800 ,14357,14360,14314 ,0,0,0}, - {25798,25799,25796 ,14312,14313,14310 ,0,0,0}, {25842,25843,25801 ,14360,14361,14315 ,0,0,0}, - {25839,25800,25799 ,14357,14314,14313 ,0,0,0}, {25802,25843,25844 ,14316,14361,14362 ,0,0,0}, - {25842,25801,25800 ,14360,14315,14314 ,0,0,0}, {25803,25844,25758 ,14317,14362,14271 ,0,0,0}, - {25802,25801,25843 ,14316,14315,14361 ,0,0,0}, {25845,25846,25847 ,14363,14364,14365 ,0,0,0}, - {25844,25803,25802 ,14362,14317,14316 ,0,0,0}, {25759,25845,25804 ,14272,14363,14318 ,0,0,0}, - {25758,25757,25803 ,14271,14270,14317 ,0,0,0}, {25845,25848,25805 ,14363,14366,14319 ,0,0,0}, - {25759,25804,25757 ,14272,14318,14270 ,0,0,0}, {25848,25849,25806 ,14366,14367,14320 ,0,0,0}, - {25845,25805,25804 ,14363,14319,14318 ,0,0,0}, {25849,25850,25807 ,14367,14368,14321 ,0,0,0}, - {25848,25806,25805 ,14366,14320,14319 ,0,0,0}, {25808,25850,25765 ,14322,14368,14278 ,0,0,0}, - {25807,25806,25849 ,14321,14320,14367 ,0,0,0}, {25851,25852,25853 ,14369,14370,14371 ,0,0,0}, - {25850,25808,25807 ,14368,14322,14321 ,0,0,0}, {25766,25851,25809 ,14279,14369,14323 ,0,0,0}, - {25765,25764,25808 ,14278,14277,14322 ,0,0,0}, {25851,25854,25810 ,14369,14372,14324 ,0,0,0}, - {25766,25809,25764 ,14279,14323,14277 ,0,0,0}, {25854,25855,25811 ,14372,14373,14325 ,0,0,0}, - {25851,25810,25809 ,14369,14324,14323 ,0,0,0}, {25855,25856,25812 ,14373,14374,14326 ,0,0,0}, - {25854,25811,25810 ,14372,14325,14324 ,0,0,0}, {25728,25856,25857 ,14240,14374,14375 ,0,0,0}, - {25855,25812,25811 ,14373,14326,14325 ,0,0,0}, {25726,25857,25814 ,14238,14375,14328 ,0,0,0}, - {25856,25728,25812 ,14374,14240,14326 ,0,0,0}, {25858,25816,25815 ,14376,14330,14329 ,0,0,0}, - {25857,25726,25728 ,14375,14238,14240 ,0,0,0}, {25859,25860,25861 ,14377,14378,14379 ,0,0,0}, - {25814,25813,25726 ,14328,14327,14238 ,0,0,0}, {25858,25859,25817 ,14376,14377,14331 ,0,0,0}, - {25815,25816,25813 ,14329,14330,14327 ,0,0,0}, {25859,25862,25818 ,14377,14380,14332 ,0,0,0}, - {25858,25817,25816 ,14376,14331,14330 ,0,0,0}, {25862,25863,25819 ,14380,14381,14333 ,0,0,0}, - {25859,25818,25817 ,14377,14332,14331 ,0,0,0}, {25863,25864,25820 ,14381,14382,14334 ,0,0,0}, - {25862,25819,25818 ,14380,14333,14332 ,0,0,0}, {25864,25865,25821 ,14382,14383,14335 ,0,0,0}, - {25863,25820,25819 ,14381,14334,14333 ,0,0,0}, {25865,25866,25822 ,14383,14384,14336 ,0,0,0}, - {25864,25821,25820 ,14382,14335,14334 ,0,0,0}, {25866,25867,25823 ,14384,14385,14337 ,0,0,0}, - {25865,25822,25821 ,14383,14336,14335 ,0,0,0}, {25654,25867,25656 ,14161,14385,14163 ,0,0,0}, - {25823,25822,25866 ,14337,14336,14384 ,0,0,0}, {25661,25656,25867 ,14168,14163,14385 ,0,0,0}, - {25654,25823,25867 ,14161,14337,14385 ,0,0,0}, {25658,25781,25824 ,14165,14294,14338 ,0,0,0}, - {25782,25824,25783 ,14295,14338,14296 ,0,0,0}, {25640,25658,25782 ,14147,14165,14295 ,0,0,0}, - {25657,25781,25658 ,14164,14294,14165 ,0,0,0}, {25189,25824,25056 ,14341,14338,14340 ,0,0,0}, - {25562,25827,25558 ,14069,14345,14065 ,0,0,0}, {25570,25564,25563 ,14077,14071,14070 ,0,0,0}, - {25825,25868,25869 ,14343,14386,14387 ,0,0,0}, {25827,25825,25785 ,14345,14343,14299 ,0,0,0}, - {25562,25870,25827 ,14069,14388,14345 ,0,0,0}, {25826,25869,25871 ,14344,14387,14389 ,0,0,0}, - {25827,25868,25825 ,14345,14386,14343 ,0,0,0}, {25828,25871,25872 ,14346,14389,14390 ,0,0,0}, - {25825,25869,25826 ,14343,14387,14344 ,0,0,0}, {25787,25872,25873 ,14301,14390,14391 ,0,0,0}, - {25826,25871,25828 ,14344,14389,14346 ,0,0,0}, {25788,25873,25874 ,14302,14391,14392 ,0,0,0}, - {25828,25872,25787 ,14346,14390,14301 ,0,0,0}, {25829,25874,25875 ,14347,14392,14393 ,0,0,0}, - {25787,25873,25788 ,14301,14391,14302 ,0,0,0}, {25830,25875,25832 ,14348,14393,14350 ,0,0,0}, - {25874,25829,25788 ,14392,14347,14302 ,0,0,0}, {25876,25834,25833 ,14394,14352,14351 ,0,0,0}, - {25875,25830,25829 ,14393,14348,14347 ,0,0,0}, {25877,25878,25876 ,14395,14396,14394 ,0,0,0}, - {25832,25831,25830 ,14350,14349,14348 ,0,0,0}, {25876,25878,25835 ,14394,14396,14353 ,0,0,0}, - {25833,25834,25831 ,14351,14352,14349 ,0,0,0}, {25878,25879,25836 ,14396,14397,14354 ,0,0,0}, - {25876,25835,25834 ,14394,14353,14352 ,0,0,0}, {25837,25879,25880 ,14355,14397,14398 ,0,0,0}, - {25878,25836,25835 ,14396,14354,14353 ,0,0,0}, {25838,25880,25881 ,14356,14398,14399 ,0,0,0}, - {25836,25879,25837 ,14354,14397,14355 ,0,0,0}, {25797,25881,25882 ,14311,14399,14400 ,0,0,0}, - {25837,25880,25838 ,14355,14398,14356 ,0,0,0}, {25798,25882,25840 ,14312,14400,14358 ,0,0,0}, - {25881,25797,25838 ,14399,14311,14356 ,0,0,0}, {25883,25884,25841 ,14401,14402,14359 ,0,0,0}, - {25882,25798,25797 ,14400,14312,14311 ,0,0,0}, {25841,25884,25842 ,14359,14402,14360 ,0,0,0}, - {25840,25839,25798 ,14358,14357,14312 ,0,0,0}, {25884,25885,25843 ,14402,14403,14361 ,0,0,0}, - {25841,25842,25839 ,14359,14360,14357 ,0,0,0}, {25844,25885,25886 ,14362,14403,14404 ,0,0,0}, - {25884,25843,25842 ,14402,14361,14360 ,0,0,0}, {25758,25886,25887 ,14271,14404,14405 ,0,0,0}, - {25843,25885,25844 ,14361,14403,14362 ,0,0,0}, {25759,25887,25846 ,14272,14405,14364 ,0,0,0}, - {25886,25758,25844 ,14404,14271,14362 ,0,0,0}, {25888,25889,25847 ,14406,14407,14365 ,0,0,0}, - {25887,25759,25758 ,14405,14272,14271 ,0,0,0}, {25847,25889,25848 ,14365,14407,14366 ,0,0,0}, - {25846,25845,25759 ,14364,14363,14272 ,0,0,0}, {25889,25890,25849 ,14407,14408,14367 ,0,0,0}, - {25847,25848,25845 ,14365,14366,14363 ,0,0,0}, {25850,25890,25891 ,14368,14408,14409 ,0,0,0}, - {25889,25849,25848 ,14407,14367,14366 ,0,0,0}, {25765,25891,25892 ,14278,14409,14410 ,0,0,0}, - {25849,25890,25850 ,14367,14408,14368 ,0,0,0}, {25766,25892,25852 ,14279,14410,14370 ,0,0,0}, - {25891,25765,25850 ,14409,14278,14368 ,0,0,0}, {25893,25894,25853 ,14411,14412,14371 ,0,0,0}, - {25892,25766,25765 ,14410,14279,14278 ,0,0,0}, {25853,25894,25854 ,14371,14412,14372 ,0,0,0}, - {25852,25851,25766 ,14370,14369,14279 ,0,0,0}, {25894,25895,25855 ,14412,14413,14373 ,0,0,0}, - {25853,25854,25851 ,14371,14372,14369 ,0,0,0}, {25856,25895,25896 ,14374,14413,14414 ,0,0,0}, - {25894,25855,25854 ,14412,14373,14372 ,0,0,0}, {25857,25896,25897 ,14375,14414,14415 ,0,0,0}, - {25855,25895,25856 ,14373,14413,14374 ,0,0,0}, {25814,25897,25898 ,14328,14415,14416 ,0,0,0}, - {25856,25896,25857 ,14374,14414,14375 ,0,0,0}, {25815,25898,25899 ,14329,14416,14417 ,0,0,0}, - {25857,25897,25814 ,14375,14415,14328 ,0,0,0}, {25858,25899,25860 ,14376,14417,14378 ,0,0,0}, - {25898,25815,25814 ,14416,14329,14328 ,0,0,0}, {25900,25862,25861 ,14418,14380,14379 ,0,0,0}, - {25899,25858,25815 ,14417,14376,14329 ,0,0,0}, {25901,25902,25900 ,14419,14420,14418 ,0,0,0}, - {25860,25859,25858 ,14378,14377,14376 ,0,0,0}, {25900,25902,25863 ,14418,14420,14381 ,0,0,0}, - {25861,25862,25859 ,14379,14380,14377 ,0,0,0}, {25902,25903,25864 ,14420,14421,14382 ,0,0,0}, - {25900,25863,25862 ,14418,14381,14380 ,0,0,0}, {25903,25904,25865 ,14421,14422,14383 ,0,0,0}, - {25902,25864,25863 ,14420,14382,14381 ,0,0,0}, {25904,25905,25866 ,14422,14423,14384 ,0,0,0}, - {25903,25865,25864 ,14421,14383,14382 ,0,0,0}, {25867,25905,25661 ,14385,14423,14168 ,0,0,0}, - {25904,25866,25865 ,14422,14384,14383 ,0,0,0}, {25661,25906,25656 ,14168,14424,14163 ,0,0,0}, - {25866,25905,25867 ,14384,14423,14385 ,0,0,0}, {25061,25781,25662 ,14425,14294,14170 ,0,0,0}, - {25781,25194,25824 ,14294,14339,14338 ,0,0,0}, {25639,25657,25658 ,14146,14164,14165 ,0,0,0}, - {25906,25662,25657 ,14424,14170,14164 ,0,0,0}, {25061,25194,25781 ,14425,14339,14294 ,0,0,0}, - {25564,25870,25562 ,14071,14388,14069 ,0,0,0}, {25907,25569,25570 ,14426,14076,14077 ,0,0,0}, - {25908,25868,25870 ,14427,14386,14388 ,0,0,0}, {25870,25868,25827 ,14388,14386,14345 ,0,0,0}, - {25870,25741,25908 ,14388,14254,14427 ,0,0,0}, {25909,25869,25868 ,14428,14387,14386 ,0,0,0}, - {25868,25908,25909 ,14386,14427,14428 ,0,0,0}, {25910,25871,25869 ,14429,14389,14387 ,0,0,0}, - {25869,25909,25910 ,14387,14428,14429 ,0,0,0}, {25911,25872,25871 ,14430,14390,14389 ,0,0,0}, - {25871,25910,25911 ,14389,14429,14430 ,0,0,0}, {25912,25873,25872 ,14431,14391,14390 ,0,0,0}, - {25872,25911,25912 ,14390,14430,14431 ,0,0,0}, {25913,25874,25873 ,14432,14392,14391 ,0,0,0}, - {25873,25912,25913 ,14391,14431,14432 ,0,0,0}, {25914,25875,25874 ,14433,14393,14392 ,0,0,0}, - {25874,25913,25914 ,14392,14432,14433 ,0,0,0}, {25915,25832,25875 ,14434,14350,14393 ,0,0,0}, - {25875,25914,25915 ,14393,14433,14434 ,0,0,0}, {25916,25833,25832 ,14435,14351,14350 ,0,0,0}, - {25832,25915,25916 ,14350,14434,14435 ,0,0,0}, {25917,25876,25833 ,14436,14394,14351 ,0,0,0}, - {25916,25917,25833 ,14435,14436,14351 ,0,0,0}, {25918,25919,25920 ,14437,14438,14439 ,0,0,0}, - {25917,25877,25876 ,14436,14395,14394 ,0,0,0}, {25921,25879,25878 ,14440,14397,14396 ,0,0,0}, - {25877,25921,25878 ,14395,14440,14396 ,0,0,0}, {25922,25880,25879 ,14441,14398,14397 ,0,0,0}, - {25879,25921,25922 ,14397,14440,14441 ,0,0,0}, {25923,25881,25880 ,14442,14399,14398 ,0,0,0}, - {25880,25922,25923 ,14398,14441,14442 ,0,0,0}, {25924,25882,25881 ,14443,14400,14399 ,0,0,0}, - {25881,25923,25924 ,14399,14442,14443 ,0,0,0}, {25925,25840,25882 ,14444,14358,14400 ,0,0,0}, - {25882,25924,25925 ,14400,14443,14444 ,0,0,0}, {25926,25841,25840 ,14445,14359,14358 ,0,0,0}, - {25925,25926,25840 ,14444,14445,14358 ,0,0,0}, {25927,25883,25928 ,14446,14401,14447 ,0,0,0}, - {25926,25883,25841 ,14445,14401,14359 ,0,0,0}, {25927,25885,25884 ,14446,14403,14402 ,0,0,0}, - {25883,25927,25884 ,14401,14446,14402 ,0,0,0}, {25929,25886,25885 ,14448,14404,14403 ,0,0,0}, - {25885,25927,25929 ,14403,14446,14448 ,0,0,0}, {25930,25887,25886 ,14449,14405,14404 ,0,0,0}, - {25886,25929,25930 ,14404,14448,14449 ,0,0,0}, {25931,25846,25887 ,14450,14364,14405 ,0,0,0}, - {25887,25930,25931 ,14405,14449,14450 ,0,0,0}, {25932,25847,25846 ,14451,14365,14364 ,0,0,0}, - {25931,25932,25846 ,14450,14451,14364 ,0,0,0}, {25933,25934,25935 ,14452,14453,14454 ,0,0,0}, - {25932,25888,25847 ,14451,14406,14365 ,0,0,0}, {25936,25890,25889 ,14455,14408,14407 ,0,0,0}, - {25888,25936,25889 ,14406,14455,14407 ,0,0,0}, {25937,25891,25890 ,14456,14409,14408 ,0,0,0}, - {25890,25936,25937 ,14408,14455,14456 ,0,0,0}, {25938,25892,25891 ,14457,14410,14409 ,0,0,0}, - {25891,25937,25938 ,14409,14456,14457 ,0,0,0}, {25939,25852,25892 ,14458,14370,14410 ,0,0,0}, - {25892,25938,25939 ,14410,14457,14458 ,0,0,0}, {25940,25853,25852 ,14459,14371,14370 ,0,0,0}, - {25939,25940,25852 ,14458,14459,14370 ,0,0,0}, {25894,25941,25895 ,14412,14460,14413 ,0,0,0}, - {25940,25893,25853 ,14459,14411,14371 ,0,0,0}, {25942,25943,25941 ,14461,14462,14460 ,0,0,0}, - {25893,25941,25894 ,14411,14460,14412 ,0,0,0}, {25943,25896,25895 ,14462,14414,14413 ,0,0,0}, - {25895,25941,25943 ,14413,14460,14462 ,0,0,0}, {25944,25897,25896 ,14463,14415,14414 ,0,0,0}, - {25896,25943,25944 ,14414,14462,14463 ,0,0,0}, {25945,25898,25897 ,14464,14416,14415 ,0,0,0}, - {25897,25944,25945 ,14415,14463,14464 ,0,0,0}, {25946,25899,25898 ,14465,14417,14416 ,0,0,0}, - {25898,25945,25946 ,14416,14464,14465 ,0,0,0}, {25947,25860,25899 ,14466,14378,14417 ,0,0,0}, - {25899,25946,25947 ,14417,14465,14466 ,0,0,0}, {25948,25861,25860 ,14467,14379,14378 ,0,0,0}, - {25860,25947,25948 ,14378,14466,14467 ,0,0,0}, {25949,25900,25861 ,14468,14418,14379 ,0,0,0}, - {25948,25949,25861 ,14467,14468,14379 ,0,0,0}, {25902,25950,25903 ,14420,14469,14421 ,0,0,0}, - {25949,25901,25900 ,14468,14419,14418 ,0,0,0}, {25903,25951,25904 ,14421,14470,14422 ,0,0,0}, - {25901,25950,25902 ,14419,14469,14420 ,0,0,0}, {25904,25952,25905 ,14422,14471,14423 ,0,0,0}, - {25950,25951,25903 ,14469,14470,14421 ,0,0,0}, {25905,25659,25661 ,14423,14166,14168 ,0,0,0}, - {25951,25952,25904 ,14470,14471,14422 ,0,0,0}, {25660,25664,25663 ,14167,14172,14171 ,0,0,0}, - {25952,25659,25905 ,14471,14166,14423 ,0,0,0}, {25660,25906,25661 ,14167,14424,14168 ,0,0,0}, - {25243,25061,25662 ,14472,14425,14170 ,0,0,0}, {25656,25906,25657 ,14163,14424,14164 ,0,0,0}, - {25906,25660,25663 ,14424,14167,14171 ,0,0,0}, {25058,25243,25662 ,14169,14472,14170 ,0,0,0}, - {25569,25741,25564 ,14076,14254,14071 ,0,0,0}, {25907,25572,25567 ,14426,14079,14074 ,0,0,0}, - {25908,25741,25953 ,14427,14254,14473 ,0,0,0}, {25564,25741,25870 ,14071,14254,14388 ,0,0,0}, - {25741,25568,25953 ,14254,14075,14473 ,0,0,0}, {25909,25908,25954 ,14428,14427,14474 ,0,0,0}, - {25908,25953,25954 ,14427,14473,14474 ,0,0,0}, {25910,25909,25955 ,14429,14428,14475 ,0,0,0}, - {25909,25954,25955 ,14428,14474,14475 ,0,0,0}, {25911,25910,25956 ,14430,14429,14476 ,0,0,0}, - {25910,25955,25956 ,14429,14475,14476 ,0,0,0}, {25912,25911,25957 ,14431,14430,14477 ,0,0,0}, - {25911,25956,25957 ,14430,14476,14477 ,0,0,0}, {25913,25912,25958 ,14432,14431,14478 ,0,0,0}, - {25912,25957,25958 ,14431,14477,14478 ,0,0,0}, {25914,25913,25959 ,14433,14432,14479 ,0,0,0}, - {25913,25958,25959 ,14432,14478,14479 ,0,0,0}, {25915,25914,25960 ,14434,14433,14480 ,0,0,0}, - {25914,25959,25960 ,14433,14479,14480 ,0,0,0}, {25916,25915,25961 ,14435,14434,14481 ,0,0,0}, - {25915,25960,25961 ,14434,14480,14481 ,0,0,0}, {25917,25916,25962 ,14436,14435,14482 ,0,0,0}, - {25916,25961,25962 ,14435,14481,14482 ,0,0,0}, {25877,25917,25963 ,14395,14436,14483 ,0,0,0}, - {25917,25962,25963 ,14436,14482,14483 ,0,0,0}, {25921,25877,25918 ,14440,14395,14437 ,0,0,0}, - {25963,25918,25877 ,14483,14437,14395 ,0,0,0}, {25922,25921,25920 ,14441,14440,14439 ,0,0,0}, - {25921,25918,25920 ,14440,14437,14439 ,0,0,0}, {25923,25922,25964 ,14442,14441,14484 ,0,0,0}, - {25922,25920,25964 ,14441,14439,14484 ,0,0,0}, {25924,25923,25965 ,14443,14442,14485 ,0,0,0}, - {25923,25964,25965 ,14442,14484,14485 ,0,0,0}, {25925,25924,25966 ,14444,14443,14486 ,0,0,0}, - {25924,25965,25966 ,14443,14485,14486 ,0,0,0}, {25926,25925,25967 ,14445,14444,14487 ,0,0,0}, - {25925,25966,25967 ,14444,14486,14487 ,0,0,0}, {25883,25926,25968 ,14401,14445,14488 ,0,0,0}, - {25926,25967,25968 ,14445,14487,14488 ,0,0,0}, {25968,25969,25928 ,14488,14489,14447 ,0,0,0}, - {25968,25928,25883 ,14488,14447,14401 ,0,0,0}, {25929,25927,25970 ,14448,14446,14490 ,0,0,0}, - {25927,25928,25970 ,14446,14447,14490 ,0,0,0}, {25930,25929,25971 ,14449,14448,14491 ,0,0,0}, - {25929,25970,25971 ,14448,14490,14491 ,0,0,0}, {25931,25930,25972 ,14450,14449,14492 ,0,0,0}, - {25930,25971,25972 ,14449,14491,14492 ,0,0,0}, {25932,25931,25973 ,14451,14450,14493 ,0,0,0}, - {25931,25972,25973 ,14450,14492,14493 ,0,0,0}, {25888,25932,25974 ,14406,14451,14494 ,0,0,0}, - {25932,25973,25974 ,14451,14493,14494 ,0,0,0}, {25936,25888,25933 ,14455,14406,14452 ,0,0,0}, - {25974,25933,25888 ,14494,14452,14406 ,0,0,0}, {25937,25936,25935 ,14456,14455,14454 ,0,0,0}, - {25936,25933,25935 ,14455,14452,14454 ,0,0,0}, {25938,25937,25975 ,14457,14456,14495 ,0,0,0}, - {25937,25935,25975 ,14456,14454,14495 ,0,0,0}, {25939,25938,25976 ,14458,14457,14496 ,0,0,0}, - {25938,25975,25976 ,14457,14495,14496 ,0,0,0}, {25940,25939,25977 ,14459,14458,14497 ,0,0,0}, - {25939,25976,25977 ,14458,14496,14497 ,0,0,0}, {25893,25940,25978 ,14411,14459,14498 ,0,0,0}, - {25940,25977,25978 ,14459,14497,14498 ,0,0,0}, {25941,25893,25979 ,14460,14411,14499 ,0,0,0}, - {25893,25978,25979 ,14411,14498,14499 ,0,0,0}, {25942,25979,25980 ,14461,14499,14500 ,0,0,0}, - {25979,25942,25941 ,14499,14461,14460 ,0,0,0}, {25944,25943,25981 ,14463,14462,14501 ,0,0,0}, - {25943,25942,25981 ,14462,14461,14501 ,0,0,0}, {25945,25944,25982 ,14464,14463,14502 ,0,0,0}, - {25944,25981,25982 ,14463,14501,14502 ,0,0,0}, {25946,25945,25983 ,14465,14464,14503 ,0,0,0}, - {25945,25982,25983 ,14464,14502,14503 ,0,0,0}, {25947,25946,25984 ,14466,14465,14504 ,0,0,0}, - {25946,25983,25984 ,14465,14503,14504 ,0,0,0}, {25948,25947,25985 ,14467,14466,14505 ,0,0,0}, - {25947,25984,25985 ,14466,14504,14505 ,0,0,0}, {25949,25948,25986 ,14468,14467,14506 ,0,0,0}, - {25948,25985,25986 ,14467,14505,14506 ,0,0,0}, {25901,25949,25987 ,14419,14468,14507 ,0,0,0}, - {25949,25986,25987 ,14468,14506,14507 ,0,0,0}, {25950,25901,25988 ,14469,14419,14508 ,0,0,0}, - {25901,25987,25988 ,14419,14507,14508 ,0,0,0}, {25951,25950,25989 ,14470,14469,14509 ,0,0,0}, - {25950,25988,25989 ,14469,14508,14509 ,0,0,0}, {25952,25951,25990 ,14471,14470,14510 ,0,0,0}, - {25951,25989,25990 ,14470,14509,14510 ,0,0,0}, {25659,25952,25991 ,14166,14471,14511 ,0,0,0}, - {25952,25990,25991 ,14471,14510,14511 ,0,0,0}, {25992,25660,25659 ,14512,14167,14166 ,0,0,0}, - {25991,25992,25659 ,14511,14512,14166 ,0,0,0}, {25906,25663,25662 ,14424,14171,14170 ,0,0,0}, - {25992,25664,25660 ,14512,14172,14167 ,0,0,0}, {25058,25663,25413 ,14169,14171,14173 ,0,0,0}, - {25567,25569,25907 ,14074,14076,14426 ,0,0,0}, {25576,25573,25567 ,14083,14080,14074 ,0,0,0}, - {25573,25993,25568 ,14080,14513,14075 ,0,0,0}, {25568,25993,25953 ,14075,14513,14473 ,0,0,0}, - {25993,25994,25953 ,14513,14514,14473 ,0,0,0}, {25953,25994,25954 ,14473,14514,14474 ,0,0,0}, - {25994,25995,25954 ,14514,14515,14474 ,0,0,0}, {25954,25995,25955 ,14474,14515,14475 ,0,0,0}, - {25995,25996,25955 ,14515,14516,14475 ,0,0,0}, {25955,25996,25956 ,14475,14516,14476 ,0,0,0}, - {25996,25997,25956 ,14516,14517,14476 ,0,0,0}, {25956,25997,25957 ,14476,14517,14477 ,0,0,0}, - {25997,25998,25957 ,14517,14518,14477 ,0,0,0}, {25957,25998,25958 ,14477,14518,14478 ,0,0,0}, - {25998,25999,25958 ,14518,14519,14478 ,0,0,0}, {25958,25999,25959 ,14478,14519,14479 ,0,0,0}, - {25999,26000,25959 ,14519,14520,14479 ,0,0,0}, {26000,26001,25960 ,14520,14521,14480 ,0,0,0}, - {26000,25960,25959 ,14520,14480,14479 ,0,0,0}, {26001,26002,25961 ,14521,14522,14481 ,0,0,0}, - {26001,25961,25960 ,14521,14481,14480 ,0,0,0}, {26002,26003,25962 ,14522,14523,14482 ,0,0,0}, - {26002,25962,25961 ,14522,14482,14481 ,0,0,0}, {26003,26004,25963 ,14523,14524,14483 ,0,0,0}, - {26003,25963,25962 ,14523,14483,14482 ,0,0,0}, {26004,26005,25918 ,14524,14525,14437 ,0,0,0}, - {26004,25918,25963 ,14524,14437,14483 ,0,0,0}, {25919,25918,26005 ,14438,14437,14525 ,0,0,0}, - {25919,26006,25920 ,14438,14526,14439 ,0,0,0}, {25920,26006,25964 ,14439,14526,14484 ,0,0,0}, - {26006,26007,25964 ,14526,14527,14484 ,0,0,0}, {25964,26007,25965 ,14484,14527,14485 ,0,0,0}, - {26007,26008,25965 ,14527,14528,14485 ,0,0,0}, {26008,26009,25966 ,14528,14529,14486 ,0,0,0}, - {26008,25966,25965 ,14528,14486,14485 ,0,0,0}, {26009,26010,25967 ,14529,14530,14487 ,0,0,0}, - {26009,25967,25966 ,14529,14487,14486 ,0,0,0}, {26010,25969,25968 ,14530,14489,14488 ,0,0,0}, - {26010,25968,25967 ,14530,14488,14487 ,0,0,0}, {25969,26011,25928 ,14489,14531,14447 ,0,0,0}, - {26011,26012,25928 ,14531,14532,14447 ,0,0,0}, {25928,26012,25970 ,14447,14532,14490 ,0,0,0}, - {26012,26013,25970 ,14532,14533,14490 ,0,0,0}, {25970,26013,25971 ,14490,14533,14491 ,0,0,0}, - {26013,26014,25971 ,14533,14534,14491 ,0,0,0}, {26014,26015,25972 ,14534,14535,14492 ,0,0,0}, - {26014,25972,25971 ,14534,14492,14491 ,0,0,0}, {26015,26016,25973 ,14535,14536,14493 ,0,0,0}, - {26015,25973,25972 ,14535,14493,14492 ,0,0,0}, {26016,26017,25974 ,14536,14537,14494 ,0,0,0}, - {26016,25974,25973 ,14536,14494,14493 ,0,0,0}, {26017,26018,25933 ,14537,14538,14452 ,0,0,0}, - {26017,25933,25974 ,14537,14452,14494 ,0,0,0}, {25934,25933,26018 ,14453,14452,14538 ,0,0,0}, - {25934,26019,25935 ,14453,14539,14454 ,0,0,0}, {25935,26019,25975 ,14454,14539,14495 ,0,0,0}, - {26019,26020,25975 ,14539,14540,14495 ,0,0,0}, {26020,26021,25976 ,14540,14541,14496 ,0,0,0}, - {26020,25976,25975 ,14540,14496,14495 ,0,0,0}, {26021,26022,25977 ,14541,14542,14497 ,0,0,0}, - {26021,25977,25976 ,14541,14497,14496 ,0,0,0}, {26022,26023,25978 ,14542,14543,14498 ,0,0,0}, - {26022,25978,25977 ,14542,14498,14497 ,0,0,0}, {26023,25980,25979 ,14543,14500,14499 ,0,0,0}, - {26023,25979,25978 ,14543,14499,14498 ,0,0,0}, {25980,26024,25942 ,14500,14544,14461 ,0,0,0}, - {26024,26025,25942 ,14544,14545,14461 ,0,0,0}, {25942,26025,25981 ,14461,14545,14501 ,0,0,0}, - {26025,26026,25981 ,14545,14546,14501 ,0,0,0}, {25981,26026,25982 ,14501,14546,14502 ,0,0,0}, - {26026,26027,25982 ,14546,14547,14502 ,0,0,0}, {25982,26027,25983 ,14502,14547,14503 ,0,0,0}, - {26027,26028,25983 ,14547,14548,14503 ,0,0,0}, {26028,26029,25984 ,14548,14549,14504 ,0,0,0}, - {26028,25984,25983 ,14548,14504,14503 ,0,0,0}, {26029,26030,25985 ,14549,14550,14505 ,0,0,0}, - {26029,25985,25984 ,14549,14505,14504 ,0,0,0}, {26030,26031,25986 ,14550,14551,14506 ,0,0,0}, - {26030,25986,25985 ,14550,14506,14505 ,0,0,0}, {26031,26032,25987 ,14551,14552,14507 ,0,0,0}, - {26031,25987,25986 ,14551,14507,14506 ,0,0,0}, {26032,26033,25988 ,14552,14553,14508 ,0,0,0}, - {26032,25988,25987 ,14552,14508,14507 ,0,0,0}, {26033,26034,25989 ,14553,14554,14509 ,0,0,0}, - {26033,25989,25988 ,14553,14509,14508 ,0,0,0}, {26034,26035,25990 ,14554,14555,14510 ,0,0,0}, - {26034,25990,25989 ,14554,14510,14509 ,0,0,0}, {26035,26036,25991 ,14555,14556,14511 ,0,0,0}, - {26035,25991,25990 ,14555,14511,14510 ,0,0,0}, {26036,26037,25992 ,14556,14557,14512 ,0,0,0}, - {26036,25992,25991 ,14556,14512,14511 ,0,0,0}, {25665,25992,26037 ,14175,14512,14557 ,0,0,0}, - {25992,25665,25664 ,14512,14175,14172 ,0,0,0}, {25066,25664,25665 ,14174,14172,14175 ,0,0,0}, - {26038,26039,26009 ,14558,14559,14560 ,0,0,0}, {26009,26008,26038 ,14560,14561,14558 ,0,0,0}, - {26040,26041,26042 ,14562,14563,14564 ,0,0,0}, {26043,26007,26006 ,14565,14566,14567 ,0,0,0}, - {26008,26007,26044 ,14561,14566,14568 ,0,0,0}, {26043,26044,26007 ,14565,14568,14566 ,0,0,0}, - {25919,26005,26045 ,14569,14570,14571 ,0,0,0}, {26046,25919,26045 ,14572,14569,14571 ,0,0,0}, - {26006,25919,26046 ,14567,14569,14572 ,0,0,0}, {26045,26004,26047 ,14571,14573,14574 ,0,0,0}, - {26006,26046,26043 ,14567,14572,14565 ,0,0,0}, {26045,26005,26004 ,14571,14570,14573 ,0,0,0}, - {26044,26038,26008 ,14568,14558,14561 ,0,0,0}, {26048,26003,26002 ,14575,14576,14577 ,0,0,0}, - {26048,26047,26003 ,14575,14574,14576 ,0,0,0}, {26049,26048,26002 ,14578,14575,14577 ,0,0,0}, - {26050,26051,26052 ,14579,14580,14581 ,0,0,0}, {26053,26049,26001 ,14582,14578,14583 ,0,0,0}, - {26000,26053,26001 ,14584,14582,14583 ,0,0,0}, {26054,26000,25999 ,14585,14584,14586 ,0,0,0}, - {26053,26000,26054 ,14582,14584,14585 ,0,0,0}, {26055,26054,25999 ,14587,14585,14586 ,0,0,0}, - {26001,26049,26002 ,14583,14578,14577 ,0,0,0}, {26047,26004,26003 ,14574,14573,14576 ,0,0,0}, - {26056,25997,26057 ,14588,14589,14590 ,0,0,0}, {25998,26056,26055 ,14591,14588,14587 ,0,0,0}, - {25996,26058,26057 ,14592,14593,14590 ,0,0,0}, {25998,25997,26056 ,14591,14589,14588 ,0,0,0}, - {26058,25995,26059 ,14593,14594,14595 ,0,0,0}, {25995,26058,25996 ,14594,14593,14592 ,0,0,0}, - {26059,25994,26060 ,14595,14596,14597 ,0,0,0}, {25997,25996,26057 ,14589,14592,14590 ,0,0,0}, - {25995,25994,26059 ,14594,14596,14595 ,0,0,0}, {26059,26061,26062 ,14595,14598,14599 ,0,0,0}, - {25693,26063,25697 ,14600,14601,14209 ,0,0,0}, {26064,26065,26066 ,14602,14603,14604 ,0,0,0}, - {26063,26067,25697 ,14601,14605,14209 ,0,0,0}, {26068,26069,26070 ,14606,14607,14608 ,0,0,0}, - {26063,25693,26068 ,14601,14600,14606 ,0,0,0}, {26060,25994,25993 ,14597,14596,14609 ,0,0,0}, - {26062,26071,26072 ,14599,14610,14611 ,0,0,0}, {26073,26074,26072 ,14612,14613,14611 ,0,0,0}, - {26072,26071,26075 ,14611,14610,14614 ,0,0,0}, {25993,25573,26076 ,14609,14615,14616 ,0,0,0}, - {26077,26078,26079 ,14617,14618,14619 ,0,0,0}, {26078,26080,26081 ,14618,14620,14621 ,0,0,0}, - {26080,26082,26081 ,14620,14622,14621 ,0,0,0}, {26083,26079,26084 ,14623,14619,14624 ,0,0,0}, - {26085,26084,25571 ,14625,14624,14078 ,0,0,0}, {25573,26084,26076 ,14615,14624,14616 ,0,0,0}, - {26084,25576,25571 ,14624,14626,14078 ,0,0,0}, {26085,26083,26084 ,14625,14623,14624 ,0,0,0}, - {26065,26086,26087 ,14603,14627,14628 ,0,0,0}, {25998,26055,25999 ,14591,14587,14586 ,0,0,0}, - {26039,26010,26009 ,14559,14629,14560 ,0,0,0}, {25969,26010,26088 ,14630,14629,14631 ,0,0,0}, - {26039,26088,26010 ,14559,14631,14629 ,0,0,0}, {26089,26011,25969 ,14632,14633,14630 ,0,0,0}, - {25969,26088,26089 ,14630,14631,14632 ,0,0,0}, {26012,26089,26090 ,14634,14632,14635 ,0,0,0}, - {26089,26012,26011 ,14632,14634,14633 ,0,0,0}, {26091,26013,26090 ,14636,14637,14635 ,0,0,0}, - {26012,26090,26013 ,14634,14635,14637 ,0,0,0}, {26014,26013,26091 ,14638,14637,14636 ,0,0,0}, - {26091,26092,26014 ,14636,14639,14638 ,0,0,0}, {26014,26092,26015 ,14638,14639,14640 ,0,0,0}, - {26015,26092,26093 ,14640,14639,14641 ,0,0,0}, {26094,26095,26096 ,14642,14643,14644 ,0,0,0}, - {26097,26016,26093 ,14645,14646,14641 ,0,0,0}, {26015,26093,26016 ,14640,14641,14646 ,0,0,0}, - {26097,26098,26017 ,14645,14647,14648 ,0,0,0}, {26017,26016,26097 ,14648,14646,14645 ,0,0,0}, - {25934,26018,26098 ,14649,14650,14647 ,0,0,0}, {26098,26018,26017 ,14647,14650,14648 ,0,0,0}, - {26099,26019,25934 ,14651,14652,14649 ,0,0,0}, {25934,26098,26099 ,14649,14647,14651 ,0,0,0}, - {26019,26100,26020 ,14652,14653,14654 ,0,0,0}, {26100,26019,26099 ,14653,14652,14651 ,0,0,0}, - {26021,26020,26101 ,14655,14654,14656 ,0,0,0}, {26100,26101,26020 ,14653,14656,14654 ,0,0,0}, - {26102,26021,26101 ,14657,14655,14656 ,0,0,0}, {26102,26022,26021 ,14657,14658,14655 ,0,0,0}, - {26102,26103,26022 ,14657,14659,14658 ,0,0,0}, {26104,26105,26106 ,14660,14661,14662 ,0,0,0}, - {26023,26103,26107 ,14663,14659,14664 ,0,0,0}, {26103,26023,26022 ,14659,14663,14658 ,0,0,0}, - {26108,25980,26107 ,14665,14666,14664 ,0,0,0}, {26023,26107,25980 ,14663,14664,14666 ,0,0,0}, - {26024,26108,26025 ,14667,14665,14668 ,0,0,0}, {26024,25980,26108 ,14667,14666,14665 ,0,0,0}, - {26026,26025,26109 ,14669,14668,14670 ,0,0,0}, {26108,26109,26025 ,14665,14670,14668 ,0,0,0}, - {26110,26027,26026 ,14671,14672,14669 ,0,0,0}, {26026,26109,26110 ,14669,14670,14671 ,0,0,0}, - {26027,26111,26028 ,14672,14673,14674 ,0,0,0}, {26111,26027,26110 ,14673,14672,14671 ,0,0,0}, - {26029,26028,26112 ,14675,14674,14676 ,0,0,0}, {26111,26112,26028 ,14673,14676,14674 ,0,0,0}, - {26113,26029,26112 ,14677,14675,14676 ,0,0,0}, {26113,26030,26029 ,14677,14678,14675 ,0,0,0}, - {26113,26114,26030 ,14677,14679,14678 ,0,0,0}, {26115,26116,26117 ,14680,14681,14682 ,0,0,0}, - {26031,26114,26116 ,14683,14679,14681 ,0,0,0}, {26114,26031,26030 ,14679,14683,14678 ,0,0,0}, - {26118,26032,26116 ,14684,14685,14681 ,0,0,0}, {26031,26116,26032 ,14683,14681,14685 ,0,0,0}, - {26119,26120,26121 ,14686,14687,14688 ,0,0,0}, {26033,26032,26118 ,14689,14685,14684 ,0,0,0}, - {26122,26123,26124 ,14690,14691,14692 ,0,0,0}, {26125,26126,26127 ,14693,14694,14695 ,0,0,0}, - {26128,26129,26130 ,14696,14697,14698 ,0,0,0}, {26131,26132,26133 ,14699,14700,14701 ,0,0,0}, - {26134,26135,26122 ,14702,14703,14690 ,0,0,0}, {26136,26137,26138 ,14704,14705,14706 ,0,0,0}, - {26139,26140,26135 ,14707,14708,14703 ,0,0,0}, {26136,26131,26137 ,14704,14699,14705 ,0,0,0}, - {26135,26141,26142 ,14703,14709,14710 ,0,0,0}, {25645,25196,26138 ,14711,726,14706 ,0,0,0}, - {26143,26033,26118 ,14712,14689,14684 ,0,0,0}, {26033,26143,26034 ,14689,14712,14713 ,0,0,0}, - {26034,26119,26035 ,14713,14686,14714 ,0,0,0}, {26115,26118,26116 ,14680,14684,14681 ,0,0,0}, - {26144,26145,26036 ,14715,14716,14717 ,0,0,0}, {26119,26144,26035 ,14686,14715,14714 ,0,0,0}, - {26142,26144,26121 ,14710,14715,14688 ,0,0,0}, {26035,26144,26036 ,14714,14715,14717 ,0,0,0}, - {26145,26146,25665 ,14716,14718,14719 ,0,0,0}, {26145,25665,26037 ,14716,14719,14720 ,0,0,0}, - {25067,25665,26147 ,730,14719,14721 ,0,0,0}, {26084,25573,25576 ,14624,14615,14626 ,0,0,0}, - {26077,26079,26083 ,14617,14619,14623 ,0,0,0}, {26087,26086,26148 ,14628,14627,14722 ,0,0,0}, - {26076,26060,25993 ,14616,14597,14609 ,0,0,0}, {26076,26079,26149 ,14616,14619,14723 ,0,0,0}, - {26150,26058,26062 ,14724,14593,14599 ,0,0,0}, {26060,26149,26061 ,14597,14723,14598 ,0,0,0}, - {26151,26057,26150 ,14725,14590,14724 ,0,0,0}, {26061,26059,26060 ,14598,14595,14597 ,0,0,0}, - {26152,26056,26151 ,14726,14588,14725 ,0,0,0}, {26062,26058,26059 ,14599,14593,14595 ,0,0,0}, - {26153,26055,26152 ,14727,14587,14726 ,0,0,0}, {26150,26057,26058 ,14724,14590,14593 ,0,0,0}, - {26154,26054,26153 ,14728,14585,14727 ,0,0,0}, {26151,26056,26057 ,14725,14588,14590 ,0,0,0}, - {26155,26053,26154 ,14729,14582,14728 ,0,0,0}, {26152,26055,26056 ,14726,14587,14588 ,0,0,0}, - {26156,26049,26155 ,14730,14578,14729 ,0,0,0}, {26153,26054,26055 ,14727,14585,14587 ,0,0,0}, - {26156,26157,26048 ,14730,14731,14575 ,0,0,0}, {26053,26054,26154 ,14582,14585,14728 ,0,0,0}, - {26158,26047,26157 ,14732,14574,14731 ,0,0,0}, {26049,26053,26155 ,14578,14582,14729 ,0,0,0}, - {26051,26045,26158 ,14580,14571,14732 ,0,0,0}, {26048,26049,26156 ,14575,14578,14730 ,0,0,0}, - {26159,26046,26051 ,14733,14572,14580 ,0,0,0}, {26047,26048,26157 ,14574,14575,14731 ,0,0,0}, - {26160,26043,26159 ,14734,14565,14733 ,0,0,0}, {26045,26047,26158 ,14571,14574,14732 ,0,0,0}, - {26161,26044,26160 ,14735,14568,14734 ,0,0,0}, {26051,26046,26045 ,14580,14572,14571 ,0,0,0}, - {26162,26038,26161 ,14736,14558,14735 ,0,0,0}, {26159,26043,26046 ,14733,14565,14572 ,0,0,0}, - {26162,26163,26039 ,14736,14737,14559 ,0,0,0}, {26044,26043,26160 ,14568,14565,14734 ,0,0,0}, - {26164,26088,26163 ,14738,14631,14737 ,0,0,0}, {26038,26044,26161 ,14558,14568,14735 ,0,0,0}, - {26165,26089,26164 ,14739,14632,14738 ,0,0,0}, {26039,26038,26162 ,14559,14558,14736 ,0,0,0}, - {26166,26090,26165 ,14740,14635,14739 ,0,0,0}, {26088,26039,26163 ,14631,14559,14737 ,0,0,0}, - {26167,26091,26166 ,14741,14636,14740 ,0,0,0}, {26089,26088,26164 ,14632,14631,14738 ,0,0,0}, - {26168,26092,26167 ,14742,14639,14741 ,0,0,0}, {26165,26090,26089 ,14739,14635,14632 ,0,0,0}, - {26168,26169,26093 ,14742,14743,14641 ,0,0,0}, {26091,26090,26166 ,14636,14635,14740 ,0,0,0}, - {26170,26097,26169 ,14744,14645,14743 ,0,0,0}, {26092,26091,26167 ,14639,14636,14741 ,0,0,0}, - {26094,26098,26170 ,14642,14647,14744 ,0,0,0}, {26093,26092,26168 ,14641,14639,14742 ,0,0,0}, - {26171,26099,26094 ,14745,14651,14642 ,0,0,0}, {26097,26093,26169 ,14645,14641,14743 ,0,0,0}, - {26172,26100,26171 ,14746,14653,14745 ,0,0,0}, {26098,26097,26170 ,14647,14645,14744 ,0,0,0}, - {26173,26101,26172 ,14747,14656,14746 ,0,0,0}, {26094,26099,26098 ,14642,14651,14647 ,0,0,0}, - {26174,26102,26173 ,14748,14657,14747 ,0,0,0}, {26171,26100,26099 ,14745,14653,14651 ,0,0,0}, - {26174,26175,26103 ,14748,14749,14659 ,0,0,0}, {26101,26100,26172 ,14656,14653,14746 ,0,0,0}, - {26176,26107,26175 ,14750,14664,14749 ,0,0,0}, {26102,26101,26173 ,14657,14656,14747 ,0,0,0}, - {26177,26108,26176 ,14751,14665,14750 ,0,0,0}, {26103,26102,26174 ,14659,14657,14748 ,0,0,0}, - {26178,26109,26177 ,14752,14670,14751 ,0,0,0}, {26107,26103,26175 ,14664,14659,14749 ,0,0,0}, - {26179,26110,26178 ,14753,14671,14752 ,0,0,0}, {26176,26108,26107 ,14750,14665,14664 ,0,0,0}, - {26180,26111,26179 ,14754,14673,14753 ,0,0,0}, {26177,26109,26108 ,14751,14670,14665 ,0,0,0}, - {26181,26112,26180 ,14755,14676,14754 ,0,0,0}, {26178,26110,26109 ,14752,14671,14670 ,0,0,0}, - {26182,26113,26181 ,14756,14677,14755 ,0,0,0}, {26179,26111,26110 ,14753,14673,14671 ,0,0,0}, - {26182,26117,26114 ,14756,14682,14679 ,0,0,0}, {26112,26111,26180 ,14676,14673,14754 ,0,0,0}, - {26118,26115,26183 ,14684,14680,14757 ,0,0,0}, {26113,26112,26181 ,14677,14676,14755 ,0,0,0}, - {26139,26121,26127 ,14707,14688,14695 ,0,0,0}, {26114,26113,26182 ,14679,14677,14756 ,0,0,0}, - {26143,26183,26120 ,14712,14757,14687 ,0,0,0}, {26114,26117,26116 ,14679,14682,14681 ,0,0,0}, - {26183,26184,26120 ,14757,14758,14687 ,0,0,0}, {26142,26145,26144 ,14710,14716,14715 ,0,0,0}, - {26143,26119,26034 ,14712,14686,14713 ,0,0,0}, {26183,26143,26118 ,14757,14712,14684 ,0,0,0}, - {26142,26139,26135 ,14710,14707,14703 ,0,0,0}, {26119,26143,26120 ,14686,14712,14687 ,0,0,0}, - {26146,26141,26185 ,14718,14709,14759 ,0,0,0}, {26146,26147,25665 ,14718,14721,14719 ,0,0,0}, - {26036,26145,26037 ,14717,14716,14720 ,0,0,0}, {26146,26145,26141 ,14718,14716,14709 ,0,0,0}, - {26186,26147,26146 ,14760,14721,14718 ,0,0,0}, {26084,26079,26076 ,14624,14619,14616 ,0,0,0}, - {26080,26078,26077 ,14620,14618,14617 ,0,0,0}, {26068,25693,25689 ,14606,14600,14761 ,0,0,0}, - {26076,26149,26060 ,14616,14723,14597 ,0,0,0}, {26187,26149,26078 ,14762,14723,14618 ,0,0,0}, - {26072,26074,26150 ,14611,14613,14724 ,0,0,0}, {26071,26061,26187 ,14610,14598,14762 ,0,0,0}, - {26074,26188,26151 ,14613,14763,14725 ,0,0,0}, {26071,26062,26061 ,14610,14599,14598 ,0,0,0}, - {26188,26189,26152 ,14763,14764,14726 ,0,0,0}, {26072,26150,26062 ,14611,14724,14599 ,0,0,0}, - {26189,26190,26153 ,14764,14765,14727 ,0,0,0}, {26074,26151,26150 ,14613,14725,14724 ,0,0,0}, - {26190,26191,26154 ,14765,14766,14728 ,0,0,0}, {26188,26152,26151 ,14763,14726,14725 ,0,0,0}, - {26191,26192,26155 ,14766,14767,14729 ,0,0,0}, {26189,26153,26152 ,14764,14727,14726 ,0,0,0}, - {26192,26193,26156 ,14767,14768,14730 ,0,0,0}, {26190,26154,26153 ,14765,14728,14727 ,0,0,0}, - {26193,26194,26157 ,14768,14769,14731 ,0,0,0}, {26191,26155,26154 ,14766,14729,14728 ,0,0,0}, - {26194,26052,26158 ,14769,14581,14732 ,0,0,0}, {26156,26155,26192 ,14730,14729,14767 ,0,0,0}, - {26195,26196,26197 ,14770,14771,14772 ,0,0,0}, {26157,26156,26193 ,14731,14730,14768 ,0,0,0}, - {26050,26196,26159 ,14579,14771,14733 ,0,0,0}, {26158,26157,26194 ,14732,14731,14769 ,0,0,0}, - {26196,26195,26160 ,14771,14770,14734 ,0,0,0}, {26051,26158,26052 ,14580,14732,14581 ,0,0,0}, - {26195,26198,26161 ,14770,14773,14735 ,0,0,0}, {26050,26159,26051 ,14579,14733,14580 ,0,0,0}, - {26198,26199,26162 ,14773,14774,14736 ,0,0,0}, {26196,26160,26159 ,14771,14734,14733 ,0,0,0}, - {26199,26200,26163 ,14774,14775,14737 ,0,0,0}, {26195,26161,26160 ,14770,14735,14734 ,0,0,0}, - {26200,26201,26164 ,14775,14776,14738 ,0,0,0}, {26162,26161,26198 ,14736,14735,14773 ,0,0,0}, - {26042,26165,26201 ,14564,14739,14776 ,0,0,0}, {26163,26162,26199 ,14737,14736,14774 ,0,0,0}, - {26042,26041,26166 ,14564,14563,14740 ,0,0,0}, {26164,26163,26200 ,14738,14737,14775 ,0,0,0}, - {26041,26202,26167 ,14563,14777,14741 ,0,0,0}, {26201,26165,26164 ,14776,14739,14738 ,0,0,0}, - {26202,26203,26168 ,14777,14778,14742 ,0,0,0}, {26042,26166,26165 ,14564,14740,14739 ,0,0,0}, - {26203,26204,26169 ,14778,14779,14743 ,0,0,0}, {26041,26167,26166 ,14563,14741,14740 ,0,0,0}, - {26204,26095,26170 ,14779,14643,14744 ,0,0,0}, {26168,26167,26202 ,14742,14741,14777 ,0,0,0}, - {26205,26206,26207 ,14780,14781,14782 ,0,0,0}, {26169,26168,26203 ,14743,14742,14778 ,0,0,0}, - {26096,26208,26171 ,14644,14783,14745 ,0,0,0}, {26170,26169,26204 ,14744,14743,14779 ,0,0,0}, - {26208,26209,26172 ,14783,14784,14746 ,0,0,0}, {26094,26170,26095 ,14642,14744,14643 ,0,0,0}, - {26209,26210,26173 ,14784,14785,14747 ,0,0,0}, {26096,26171,26094 ,14644,14745,14642 ,0,0,0}, - {26210,26211,26174 ,14785,14786,14748 ,0,0,0}, {26208,26172,26171 ,14783,14746,14745 ,0,0,0}, - {26211,26212,26175 ,14786,14787,14749 ,0,0,0}, {26209,26173,26172 ,14784,14747,14746 ,0,0,0}, - {26212,26213,26176 ,14787,14788,14750 ,0,0,0}, {26174,26173,26210 ,14748,14747,14785 ,0,0,0}, - {26213,26104,26177 ,14788,14660,14751 ,0,0,0}, {26175,26174,26211 ,14749,14748,14786 ,0,0,0}, - {26104,26106,26178 ,14660,14662,14752 ,0,0,0}, {26176,26175,26212 ,14750,14749,14787 ,0,0,0}, - {26106,26214,26179 ,14662,14789,14753 ,0,0,0}, {26213,26177,26176 ,14788,14751,14750 ,0,0,0}, - {26214,26215,26180 ,14789,14790,14754 ,0,0,0}, {26104,26178,26177 ,14660,14752,14751 ,0,0,0}, - {26215,26216,26181 ,14790,14791,14755 ,0,0,0}, {26106,26179,26178 ,14662,14753,14752 ,0,0,0}, - {26216,26217,26182 ,14791,14792,14756 ,0,0,0}, {26214,26180,26179 ,14789,14754,14753 ,0,0,0}, - {26217,26218,26117 ,14792,14793,14682 ,0,0,0}, {26215,26181,26180 ,14790,14755,14754 ,0,0,0}, - {26218,26219,26115 ,14793,14794,14680 ,0,0,0}, {26216,26182,26181 ,14791,14756,14755 ,0,0,0}, - {26219,26184,26183 ,14794,14758,14757 ,0,0,0}, {26217,26117,26182 ,14792,14682,14756 ,0,0,0}, - {26184,26127,26120 ,14758,14695,14687 ,0,0,0}, {26115,26117,26218 ,14680,14682,14793 ,0,0,0}, - {26220,26221,26222 ,14795,14796,14797 ,0,0,0}, {26219,26183,26115 ,14794,14757,14680 ,0,0,0}, - {26140,26122,26135 ,14708,14690,14703 ,0,0,0}, {26134,26223,26185 ,14702,14798,14759 ,0,0,0}, - {26119,26121,26144 ,14686,14688,14715 ,0,0,0}, {26127,26121,26120 ,14695,14688,14687 ,0,0,0}, - {26224,26185,26223 ,14799,14759,14798 ,0,0,0}, {26185,26186,26146 ,14759,14760,14718 ,0,0,0}, - {26145,26142,26141 ,14716,14710,14709 ,0,0,0}, {26141,26134,26185 ,14709,14702,14759 ,0,0,0}, - {26224,26186,26185 ,14799,14760,14759 ,0,0,0}, {26078,26149,26079 ,14618,14723,14619 ,0,0,0}, - {26225,26081,26082 ,14800,14621,14622 ,0,0,0}, {26225,26086,26081 ,14800,14627,14621 ,0,0,0}, - {26149,26187,26061 ,14723,14762,14598 ,0,0,0}, {26226,26187,26081 ,14801,14762,14621 ,0,0,0}, - {26074,26227,26188 ,14613,14802,14763 ,0,0,0}, {26075,26071,26226 ,14614,14610,14801 ,0,0,0}, - {26188,26228,26189 ,14763,14803,14764 ,0,0,0}, {26075,26073,26072 ,14614,14612,14611 ,0,0,0}, - {26229,26230,26231 ,14804,14805,14806 ,0,0,0}, {26073,26227,26074 ,14612,14802,14613 ,0,0,0}, - {26190,26189,26232 ,14765,14764,14807 ,0,0,0}, {26227,26228,26188 ,14802,14803,14763 ,0,0,0}, - {26191,26190,26231 ,14766,14765,14806 ,0,0,0}, {26228,26232,26189 ,14803,14807,14764 ,0,0,0}, - {26192,26191,26230 ,14767,14766,14805 ,0,0,0}, {26232,26231,26190 ,14807,14806,14765 ,0,0,0}, - {26193,26192,26233 ,14768,14767,14808 ,0,0,0}, {26231,26230,26191 ,14806,14805,14766 ,0,0,0}, - {26194,26193,26234 ,14769,14768,14809 ,0,0,0}, {26230,26233,26192 ,14805,14808,14767 ,0,0,0}, - {26052,26194,26235 ,14581,14769,14810 ,0,0,0}, {26233,26234,26193 ,14808,14809,14768 ,0,0,0}, - {26050,26052,26236 ,14579,14581,14811 ,0,0,0}, {26234,26235,26194 ,14809,14810,14769 ,0,0,0}, - {26196,26050,26237 ,14771,14579,14812 ,0,0,0}, {26236,26052,26235 ,14811,14581,14810 ,0,0,0}, - {26238,26239,26240 ,14813,14814,14815 ,0,0,0}, {26237,26050,26236 ,14812,14579,14811 ,0,0,0}, - {26198,26195,26241 ,14773,14770,14816 ,0,0,0}, {26237,26197,26196 ,14812,14772,14771 ,0,0,0}, - {26199,26198,26240 ,14774,14773,14815 ,0,0,0}, {26197,26241,26195 ,14772,14816,14770 ,0,0,0}, - {26200,26199,26239 ,14775,14774,14814 ,0,0,0}, {26241,26240,26198 ,14816,14815,14773 ,0,0,0}, - {26201,26200,26242 ,14776,14775,14817 ,0,0,0}, {26240,26239,26199 ,14815,14814,14774 ,0,0,0}, - {26042,26201,26243 ,14564,14776,14818 ,0,0,0}, {26242,26200,26239 ,14817,14775,14814 ,0,0,0}, - {26244,26245,26246 ,14819,14820,14821 ,0,0,0}, {26243,26201,26242 ,14818,14776,14817 ,0,0,0}, - {26202,26041,26247 ,14777,14563,14822 ,0,0,0}, {26243,26040,26042 ,14818,14562,14564 ,0,0,0}, - {26203,26202,26246 ,14778,14777,14821 ,0,0,0}, {26040,26247,26041 ,14562,14822,14563 ,0,0,0}, - {26204,26203,26245 ,14779,14778,14820 ,0,0,0}, {26247,26246,26202 ,14822,14821,14777 ,0,0,0}, - {26095,26204,26248 ,14643,14779,14823 ,0,0,0}, {26246,26245,26203 ,14821,14820,14778 ,0,0,0}, - {26096,26095,26249 ,14644,14643,14824 ,0,0,0}, {26245,26248,26204 ,14820,14823,14779 ,0,0,0}, - {26208,26096,26250 ,14783,14644,14825 ,0,0,0}, {26249,26095,26248 ,14824,14643,14823 ,0,0,0}, - {26209,26208,26251 ,14784,14783,14826 ,0,0,0}, {26250,26096,26249 ,14825,14644,14824 ,0,0,0}, - {26210,26209,26205 ,14785,14784,14780 ,0,0,0}, {26250,26251,26208 ,14825,14826,14783 ,0,0,0}, - {26211,26210,26207 ,14786,14785,14782 ,0,0,0}, {26251,26205,26209 ,14826,14780,14784 ,0,0,0}, - {26212,26211,26252 ,14787,14786,14827 ,0,0,0}, {26205,26207,26210 ,14780,14782,14785 ,0,0,0}, - {26213,26212,26253 ,14788,14787,14828 ,0,0,0}, {26207,26252,26211 ,14782,14827,14786 ,0,0,0}, - {26104,26213,26254 ,14660,14788,14829 ,0,0,0}, {26253,26212,26252 ,14828,14787,14827 ,0,0,0}, - {26255,26256,26257 ,14830,14831,14832 ,0,0,0}, {26254,26213,26253 ,14829,14788,14828 ,0,0,0}, - {26214,26106,26258 ,14789,14662,14833 ,0,0,0}, {26254,26105,26104 ,14829,14661,14660 ,0,0,0}, - {26215,26214,26257 ,14790,14789,14832 ,0,0,0}, {26105,26258,26106 ,14661,14833,14662 ,0,0,0}, - {26216,26215,26256 ,14791,14790,14831 ,0,0,0}, {26258,26257,26214 ,14833,14832,14789 ,0,0,0}, - {26217,26216,26259 ,14792,14791,14834 ,0,0,0}, {26257,26256,26215 ,14832,14831,14790 ,0,0,0}, - {26218,26217,26260 ,14793,14792,14835 ,0,0,0}, {26256,26259,26216 ,14831,14834,14791 ,0,0,0}, - {26219,26218,26261 ,14794,14793,14836 ,0,0,0}, {26259,26260,26217 ,14834,14835,14792 ,0,0,0}, - {26184,26219,26262 ,14758,14794,14837 ,0,0,0}, {26260,26261,26218 ,14835,14836,14793 ,0,0,0}, - {26127,26184,26125 ,14695,14758,14693 ,0,0,0}, {26261,26262,26219 ,14836,14837,14794 ,0,0,0}, - {26139,26127,26126 ,14707,14695,14694 ,0,0,0}, {26262,26125,26184 ,14837,14693,14758 ,0,0,0}, - {26263,26133,26222 ,14838,14701,14797 ,0,0,0}, {26264,26123,26122 ,14839,14691,14690 ,0,0,0}, - {26121,26139,26142 ,14688,14707,14710 ,0,0,0}, {26126,26140,26139 ,14694,14708,14707 ,0,0,0}, - {26265,26223,26221 ,14840,14798,14796 ,0,0,0}, {26265,26266,26223 ,14840,14841,14798 ,0,0,0}, - {26141,26135,26134 ,14709,14703,14702 ,0,0,0}, {26134,26124,26223 ,14702,14692,14798 ,0,0,0}, - {26224,26223,26266 ,14799,14798,14841 ,0,0,0}, {26078,26081,26187 ,14618,14621,14762 ,0,0,0}, - {26148,26086,26225 ,14722,14627,14800 ,0,0,0}, {26075,26267,26073 ,14614,14842,14612 ,0,0,0}, - {26187,26226,26071 ,14762,14801,14610 ,0,0,0}, {26086,26268,26226 ,14627,14843,14801 ,0,0,0}, - {26227,26073,26269 ,14802,14612,14844 ,0,0,0}, {26268,26267,26075 ,14843,14842,14614 ,0,0,0}, - {26228,26227,26270 ,14803,14802,14845 ,0,0,0}, {26073,26267,26269 ,14612,14842,14844 ,0,0,0}, - {26232,26228,26271 ,14807,14803,14846 ,0,0,0}, {26227,26269,26270 ,14802,14844,14845 ,0,0,0}, - {26231,26232,26272 ,14806,14807,14847 ,0,0,0}, {26270,26271,26228 ,14845,14846,14803 ,0,0,0}, - {26273,26233,26230 ,14848,14808,14805 ,0,0,0}, {26271,26272,26232 ,14846,14847,14807 ,0,0,0}, - {26274,26275,26276 ,14849,14850,14851 ,0,0,0}, {26272,26229,26231 ,14847,14804,14806 ,0,0,0}, - {26233,26277,26234 ,14808,14852,14809 ,0,0,0}, {26229,26273,26230 ,14804,14848,14805 ,0,0,0}, - {26234,26275,26235 ,14809,14850,14810 ,0,0,0}, {26273,26277,26233 ,14848,14852,14808 ,0,0,0}, - {26235,26274,26236 ,14810,14849,14811 ,0,0,0}, {26277,26275,26234 ,14852,14850,14809 ,0,0,0}, - {26236,26278,26237 ,14811,14853,14812 ,0,0,0}, {26275,26274,26235 ,14850,14849,14810 ,0,0,0}, - {26237,26279,26197 ,14812,14854,14772 ,0,0,0}, {26274,26278,26236 ,14849,14853,14811 ,0,0,0}, - {26241,26197,26280 ,14816,14772,14855 ,0,0,0}, {26278,26279,26237 ,14853,14854,14812 ,0,0,0}, - {26240,26241,26281 ,14815,14816,14856 ,0,0,0}, {26279,26280,26197 ,14854,14855,14772 ,0,0,0}, - {26282,26283,26284 ,14857,14858,14859 ,0,0,0}, {26280,26281,26241 ,14855,14856,14816 ,0,0,0}, - {26239,26285,26242 ,14814,14860,14817 ,0,0,0}, {26281,26238,26240 ,14856,14813,14815 ,0,0,0}, - {26242,26286,26243 ,14817,14861,14818 ,0,0,0}, {26238,26285,26239 ,14813,14860,14814 ,0,0,0}, - {26243,26287,26040 ,14818,14862,14562 ,0,0,0}, {26285,26286,26242 ,14860,14861,14817 ,0,0,0}, - {26247,26040,26288 ,14822,14562,14863 ,0,0,0}, {26286,26287,26243 ,14861,14862,14818 ,0,0,0}, - {26246,26247,26289 ,14821,14822,14864 ,0,0,0}, {26287,26288,26040 ,14862,14863,14562 ,0,0,0}, - {26290,26291,26292 ,14865,14866,14867 ,0,0,0}, {26288,26289,26247 ,14863,14864,14822 ,0,0,0}, - {26245,26293,26248 ,14820,14868,14823 ,0,0,0}, {26289,26244,26246 ,14864,14819,14821 ,0,0,0}, - {26248,26294,26249 ,14823,14869,14824 ,0,0,0}, {26244,26293,26245 ,14819,14868,14820 ,0,0,0}, - {26249,26295,26250 ,14824,14870,14825 ,0,0,0}, {26293,26294,26248 ,14868,14869,14823 ,0,0,0}, - {26250,26296,26251 ,14825,14871,14826 ,0,0,0}, {26294,26295,26249 ,14869,14870,14824 ,0,0,0}, - {26205,26251,26297 ,14780,14826,14872 ,0,0,0}, {26295,26296,26250 ,14870,14871,14825 ,0,0,0}, - {26298,26299,26300 ,14873,14874,14875 ,0,0,0}, {26296,26297,26251 ,14871,14872,14826 ,0,0,0}, - {26207,26301,26252 ,14782,14876,14827 ,0,0,0}, {26297,26206,26205 ,14872,14781,14780 ,0,0,0}, - {26252,26299,26253 ,14827,14874,14828 ,0,0,0}, {26206,26301,26207 ,14781,14876,14782 ,0,0,0}, - {26253,26298,26254 ,14828,14873,14829 ,0,0,0}, {26301,26299,26252 ,14876,14874,14827 ,0,0,0}, - {26254,26302,26105 ,14829,14877,14661 ,0,0,0}, {26299,26298,26253 ,14874,14873,14828 ,0,0,0}, - {26258,26105,26303 ,14833,14661,14878 ,0,0,0}, {26298,26302,26254 ,14873,14877,14829 ,0,0,0}, - {26257,26258,26304 ,14832,14833,14879 ,0,0,0}, {26302,26303,26105 ,14877,14878,14661 ,0,0,0}, - {26305,26259,26256 ,14880,14834,14831 ,0,0,0}, {26303,26304,26258 ,14878,14879,14833 ,0,0,0}, - {26306,26307,26308 ,14881,14882,14883 ,0,0,0}, {26304,26255,26257 ,14879,14830,14832 ,0,0,0}, - {26259,26309,26260 ,14834,14884,14835 ,0,0,0}, {26255,26305,26256 ,14830,14880,14831 ,0,0,0}, - {26260,26307,26261 ,14835,14882,14836 ,0,0,0}, {26305,26309,26259 ,14880,14884,14834 ,0,0,0}, - {26261,26306,26262 ,14836,14881,14837 ,0,0,0}, {26309,26307,26260 ,14884,14882,14835 ,0,0,0}, - {26262,26310,26125 ,14837,14885,14693 ,0,0,0}, {26307,26306,26261 ,14882,14881,14836 ,0,0,0}, - {26125,26311,26126 ,14693,14886,14694 ,0,0,0}, {26306,26310,26262 ,14881,14885,14837 ,0,0,0}, - {26126,26312,26140 ,14694,14887,14708 ,0,0,0}, {26310,26311,26125 ,14885,14886,14693 ,0,0,0}, - {26140,26264,26122 ,14708,14839,14690 ,0,0,0}, {26312,26126,26311 ,14887,14694,14886 ,0,0,0}, - {26129,26123,26313 ,14697,14691,14888 ,0,0,0}, {26140,26312,26264 ,14708,14887,14839 ,0,0,0}, - {26221,26314,26222 ,14796,14889,14797 ,0,0,0}, {26223,26124,26221 ,14798,14692,14796 ,0,0,0}, - {26134,26122,26124 ,14702,14690,14692 ,0,0,0}, {26124,26314,26221 ,14692,14889,14796 ,0,0,0}, - {26265,26221,26220 ,14840,14796,14795 ,0,0,0}, {26081,26086,26226 ,14621,14627,14801 ,0,0,0}, - {26066,26065,26087 ,14604,14603,14628 ,0,0,0}, {26267,26315,26269 ,14842,14890,14844 ,0,0,0}, - {26226,26268,26075 ,14801,14843,14614 ,0,0,0}, {26065,26316,26268 ,14603,14891,14843 ,0,0,0}, - {26270,26269,26317 ,14845,14844,14892 ,0,0,0}, {26267,26316,26315 ,14842,14891,14890 ,0,0,0}, - {26271,26270,26318 ,14846,14845,14893 ,0,0,0}, {26269,26315,26317 ,14844,14890,14892 ,0,0,0}, - {26272,26271,26319 ,14847,14846,14894 ,0,0,0}, {26270,26317,26318 ,14845,14892,14893 ,0,0,0}, - {26229,26272,26320 ,14804,14847,14895 ,0,0,0}, {26271,26318,26319 ,14846,14893,14894 ,0,0,0}, - {26273,26229,26321 ,14848,14804,14896 ,0,0,0}, {26272,26319,26320 ,14847,14894,14895 ,0,0,0}, - {26277,26273,26322 ,14852,14848,14897 ,0,0,0}, {26229,26320,26321 ,14804,14895,14896 ,0,0,0}, - {26275,26277,26323 ,14850,14852,14898 ,0,0,0}, {26321,26322,26273 ,14896,14897,14848 ,0,0,0}, - {26324,26325,26326 ,14899,14900,14901 ,0,0,0}, {26322,26323,26277 ,14897,14898,14852 ,0,0,0}, - {26274,26327,26278 ,14849,14902,14853 ,0,0,0}, {26323,26276,26275 ,14898,14851,14850 ,0,0,0}, - {26278,26326,26279 ,14853,14901,14854 ,0,0,0}, {26276,26327,26274 ,14851,14902,14849 ,0,0,0}, - {26279,26328,26280 ,14854,14903,14855 ,0,0,0}, {26327,26326,26278 ,14902,14901,14853 ,0,0,0}, - {26281,26280,26329 ,14856,14855,14904 ,0,0,0}, {26326,26328,26279 ,14901,14903,14854 ,0,0,0}, - {26238,26281,26330 ,14813,14856,14905 ,0,0,0}, {26280,26328,26329 ,14855,14903,14904 ,0,0,0}, - {26285,26238,26331 ,14860,14813,14906 ,0,0,0}, {26281,26329,26330 ,14856,14904,14905 ,0,0,0}, - {26286,26285,26332 ,14861,14860,14907 ,0,0,0}, {26330,26331,26238 ,14905,14906,14813 ,0,0,0}, - {26286,26333,26287 ,14861,14908,14862 ,0,0,0}, {26331,26332,26285 ,14906,14907,14860 ,0,0,0}, - {26287,26283,26288 ,14862,14858,14863 ,0,0,0}, {26332,26333,26286 ,14907,14908,14861 ,0,0,0}, - {26289,26288,26334 ,14864,14863,14909 ,0,0,0}, {26333,26283,26287 ,14908,14858,14862 ,0,0,0}, - {26244,26289,26335 ,14819,14864,14910 ,0,0,0}, {26288,26283,26334 ,14863,14858,14909 ,0,0,0}, - {26293,26244,26336 ,14868,14819,14911 ,0,0,0}, {26289,26334,26335 ,14864,14909,14910 ,0,0,0}, - {26294,26293,26337 ,14869,14868,14912 ,0,0,0}, {26335,26336,26244 ,14910,14911,14819 ,0,0,0}, - {26294,26338,26295 ,14869,14913,14870 ,0,0,0}, {26336,26337,26293 ,14911,14912,14868 ,0,0,0}, - {26295,26291,26296 ,14870,14866,14871 ,0,0,0}, {26337,26338,26294 ,14912,14913,14869 ,0,0,0}, - {26297,26296,26339 ,14872,14871,14914 ,0,0,0}, {26338,26291,26295 ,14913,14866,14870 ,0,0,0}, - {26206,26297,26340 ,14781,14872,14915 ,0,0,0}, {26296,26291,26339 ,14871,14866,14914 ,0,0,0}, - {26301,26206,26341 ,14876,14781,14916 ,0,0,0}, {26297,26339,26340 ,14872,14914,14915 ,0,0,0}, - {26299,26301,26342 ,14874,14876,14917 ,0,0,0}, {26340,26341,26206 ,14915,14916,14781 ,0,0,0}, - {26343,26344,26345 ,14918,14919,14920 ,0,0,0}, {26341,26342,26301 ,14916,14917,14876 ,0,0,0}, - {26298,26346,26302 ,14873,14921,14877 ,0,0,0}, {26342,26300,26299 ,14917,14875,14874 ,0,0,0}, - {26302,26345,26303 ,14877,14920,14878 ,0,0,0}, {26300,26346,26298 ,14875,14921,14873 ,0,0,0}, - {26304,26303,26347 ,14879,14878,14922 ,0,0,0}, {26346,26345,26302 ,14921,14920,14877 ,0,0,0}, - {26255,26304,26348 ,14830,14879,14923 ,0,0,0}, {26303,26345,26347 ,14878,14920,14922 ,0,0,0}, - {26305,26255,26349 ,14880,14830,14924 ,0,0,0}, {26304,26347,26348 ,14879,14922,14923 ,0,0,0}, - {26309,26305,26350 ,14884,14880,14925 ,0,0,0}, {26255,26348,26349 ,14830,14923,14924 ,0,0,0}, - {26307,26309,26351 ,14882,14884,14926 ,0,0,0}, {26349,26350,26305 ,14924,14925,14880 ,0,0,0}, - {26352,26310,26306 ,14927,14885,14881 ,0,0,0}, {26350,26351,26309 ,14925,14926,14884 ,0,0,0}, - {26353,26354,26355 ,14928,14929,14930 ,0,0,0}, {26351,26308,26307 ,14926,14883,14882 ,0,0,0}, - {26310,26356,26311 ,14885,14931,14886 ,0,0,0}, {26308,26352,26306 ,14883,14927,14881 ,0,0,0}, - {26311,26355,26312 ,14886,14930,14887 ,0,0,0}, {26352,26356,26310 ,14927,14931,14885 ,0,0,0}, - {26312,26357,26264 ,14887,14932,14839 ,0,0,0}, {26356,26355,26311 ,14931,14930,14886 ,0,0,0}, - {26264,26313,26123 ,14839,14888,14691 ,0,0,0}, {26355,26357,26312 ,14930,14932,14887 ,0,0,0}, - {26123,26129,26314 ,14691,14697,14889 ,0,0,0}, {26264,26357,26313 ,14839,14932,14888 ,0,0,0}, - {26358,26222,26133 ,14933,14797,14701 ,0,0,0}, {26359,26220,26222 ,14934,14795,14797 ,0,0,0}, - {26124,26123,26314 ,14692,14691,14889 ,0,0,0}, {26314,26263,26222 ,14889,14838,14797 ,0,0,0}, - {26358,26359,26222 ,14933,14934,14797 ,0,0,0}, {26086,26065,26268 ,14627,14603,14843 ,0,0,0}, - {26360,26064,26066 ,14935,14602,14604 ,0,0,0}, {26317,26315,26070 ,14892,14890,14608 ,0,0,0}, - {26268,26316,26267 ,14843,14891,14842 ,0,0,0}, {26064,26361,26316 ,14602,14936,14891 ,0,0,0}, - {26318,26317,26362 ,14893,14892,14937 ,0,0,0}, {26315,26361,26070 ,14890,14936,14608 ,0,0,0}, - {26363,26362,26364 ,14938,14937,14939 ,0,0,0}, {26317,26070,26362 ,14892,14608,14937 ,0,0,0}, - {26363,26365,26319 ,14938,14940,14894 ,0,0,0}, {26319,26318,26363 ,14894,14893,14938 ,0,0,0}, - {26365,26366,26320 ,14940,14941,14895 ,0,0,0}, {26320,26319,26365 ,14895,14894,14940 ,0,0,0}, - {26366,26367,26321 ,14941,14942,14896 ,0,0,0}, {26321,26320,26366 ,14896,14895,14941 ,0,0,0}, - {26367,26368,26322 ,14942,14943,14897 ,0,0,0}, {26322,26321,26367 ,14897,14896,14942 ,0,0,0}, - {26368,26369,26323 ,14943,14944,14898 ,0,0,0}, {26323,26322,26368 ,14898,14897,14943 ,0,0,0}, - {26369,26370,26276 ,14944,14945,14851 ,0,0,0}, {26276,26323,26369 ,14851,14898,14944 ,0,0,0}, - {26370,26324,26327 ,14945,14899,14902 ,0,0,0}, {26276,26370,26327 ,14851,14945,14902 ,0,0,0}, - {25680,26371,26372 ,14946,14947,14948 ,0,0,0}, {26327,26324,26326 ,14902,14899,14901 ,0,0,0}, - {26328,26373,26329 ,14903,14949,14904 ,0,0,0}, {26326,26325,26328 ,14901,14900,14903 ,0,0,0}, - {26374,26373,26372 ,14950,14949,14948 ,0,0,0}, {26325,26373,26328 ,14900,14949,14903 ,0,0,0}, - {26374,26375,26330 ,14950,14951,14905 ,0,0,0}, {26330,26329,26374 ,14905,14904,14950 ,0,0,0}, - {26375,26376,26331 ,14951,14952,14906 ,0,0,0}, {26331,26330,26375 ,14906,14905,14951 ,0,0,0}, - {26376,26377,26332 ,14952,14953,14907 ,0,0,0}, {26332,26331,26376 ,14907,14906,14952 ,0,0,0}, - {26377,26284,26333 ,14953,14859,14908 ,0,0,0}, {26332,26377,26333 ,14907,14953,14908 ,0,0,0}, - {26378,26379,26380 ,14954,14955,14956 ,0,0,0}, {26333,26284,26283 ,14908,14859,14858 ,0,0,0}, - {26282,26379,26334 ,14857,14955,14909 ,0,0,0}, {26283,26282,26334 ,14858,14857,14909 ,0,0,0}, - {26379,26381,26335 ,14955,14957,14910 ,0,0,0}, {26335,26334,26379 ,14910,14909,14955 ,0,0,0}, - {26381,26382,26336 ,14957,14958,14911 ,0,0,0}, {26336,26335,26381 ,14911,14910,14957 ,0,0,0}, - {26382,26383,26337 ,14958,14959,14912 ,0,0,0}, {26337,26336,26382 ,14912,14911,14958 ,0,0,0}, - {26383,26292,26338 ,14959,14867,14913 ,0,0,0}, {26337,26383,26338 ,14912,14959,14913 ,0,0,0}, - {26384,25671,26385 ,14960,14961,14962 ,0,0,0}, {26338,26292,26291 ,14913,14867,14866 ,0,0,0}, - {26340,26339,26386 ,14915,14914,14963 ,0,0,0}, {26291,26290,26339 ,14866,14865,14914 ,0,0,0}, - {26387,26386,26384 ,14964,14963,14960 ,0,0,0}, {26339,26290,26386 ,14914,14865,14963 ,0,0,0}, - {26387,26388,26341 ,14964,14965,14916 ,0,0,0}, {26341,26340,26387 ,14916,14915,14964 ,0,0,0}, - {26388,26389,26342 ,14965,14966,14917 ,0,0,0}, {26342,26341,26388 ,14917,14916,14965 ,0,0,0}, - {26389,26390,26300 ,14966,14967,14875 ,0,0,0}, {26300,26342,26389 ,14875,14917,14966 ,0,0,0}, - {26390,26343,26346 ,14967,14918,14921 ,0,0,0}, {26300,26390,26346 ,14875,14967,14921 ,0,0,0}, - {26391,26392,26393 ,14968,14969,14970 ,0,0,0}, {26346,26343,26345 ,14921,14918,14920 ,0,0,0}, - {26344,26392,26347 ,14919,14969,14922 ,0,0,0}, {26345,26344,26347 ,14920,14919,14922 ,0,0,0}, - {26392,26394,26348 ,14969,14971,14923 ,0,0,0}, {26348,26347,26392 ,14923,14922,14969 ,0,0,0}, - {26394,26395,26349 ,14971,14972,14924 ,0,0,0}, {26349,26348,26394 ,14924,14923,14971 ,0,0,0}, - {26395,26396,26350 ,14972,14973,14925 ,0,0,0}, {26350,26349,26395 ,14925,14924,14972 ,0,0,0}, - {26396,26397,26351 ,14973,14974,14926 ,0,0,0}, {26351,26350,26396 ,14926,14925,14973 ,0,0,0}, - {26397,26398,26308 ,14974,14975,14883 ,0,0,0}, {26308,26351,26397 ,14883,14926,14974 ,0,0,0}, - {26398,26399,26352 ,14975,14976,14927 ,0,0,0}, {26352,26308,26398 ,14927,14883,14975 ,0,0,0}, - {26399,26353,26356 ,14976,14928,14931 ,0,0,0}, {26352,26399,26356 ,14927,14976,14931 ,0,0,0}, - {26357,26354,26400 ,14932,14929,14977 ,0,0,0}, {26356,26353,26355 ,14931,14928,14930 ,0,0,0}, - {26130,26129,26313 ,14698,14697,14888 ,0,0,0}, {26355,26354,26357 ,14930,14929,14932 ,0,0,0}, - {26128,26263,26129 ,14696,14838,14697 ,0,0,0}, {26357,26400,26313 ,14932,14977,14888 ,0,0,0}, - {26401,26137,26131 ,14978,14705,14699 ,0,0,0}, {26400,26130,26313 ,14977,14698,14888 ,0,0,0}, - {26128,26402,26403 ,14696,14979,14980 ,0,0,0}, {26404,26358,26133 ,14981,14933,14701 ,0,0,0}, - {26314,26129,26263 ,14889,14697,14838 ,0,0,0}, {26133,26263,26403 ,14701,14838,14980 ,0,0,0}, - {26132,26404,26133 ,14700,14981,14701 ,0,0,0}, {26065,26064,26316 ,14603,14602,14891 ,0,0,0}, - {26360,26067,26063 ,14935,14605,14601 ,0,0,0}, {26361,26063,26068 ,14936,14601,14606 ,0,0,0}, - {26316,26361,26315 ,14891,14936,14890 ,0,0,0}, {26070,26361,26068 ,14608,14936,14606 ,0,0,0}, - {26069,26364,26362 ,14607,14939,14937 ,0,0,0}, {26362,26070,26069 ,14937,14608,14607 ,0,0,0}, - {26364,26405,26363 ,14939,14982,14938 ,0,0,0}, {26406,26365,26405 ,14983,14940,14982 ,0,0,0}, - {26318,26362,26363 ,14893,14937,14938 ,0,0,0}, {26365,26363,26405 ,14940,14938,14982 ,0,0,0}, - {26407,26366,26406 ,14984,14941,14983 ,0,0,0}, {26366,26365,26406 ,14941,14940,14983 ,0,0,0}, - {26408,26367,26407 ,14985,14942,14984 ,0,0,0}, {26367,26366,26407 ,14942,14941,14984 ,0,0,0}, - {26409,26368,26408 ,14986,14943,14985 ,0,0,0}, {26368,26367,26408 ,14943,14942,14985 ,0,0,0}, - {26410,26369,26409 ,14987,14944,14986 ,0,0,0}, {26369,26368,26409 ,14944,14943,14986 ,0,0,0}, - {26411,26370,26410 ,14988,14945,14987 ,0,0,0}, {26370,26369,26410 ,14945,14944,14987 ,0,0,0}, - {26412,26324,26411 ,14989,14899,14988 ,0,0,0}, {26324,26370,26411 ,14899,14945,14988 ,0,0,0}, - {26413,26325,26412 ,14990,14900,14989 ,0,0,0}, {26325,26324,26412 ,14900,14899,14989 ,0,0,0}, - {26372,26373,26413 ,14948,14949,14990 ,0,0,0}, {26325,26413,26373 ,14900,14990,14949 ,0,0,0}, - {26372,26371,26374 ,14948,14947,14950 ,0,0,0}, {26414,26375,26371 ,14991,14951,14947 ,0,0,0}, - {26329,26373,26374 ,14904,14949,14950 ,0,0,0}, {26375,26374,26371 ,14951,14950,14947 ,0,0,0}, - {26415,26376,26414 ,14992,14952,14991 ,0,0,0}, {26376,26375,26414 ,14952,14951,14991 ,0,0,0}, - {26416,26377,26415 ,14993,14953,14992 ,0,0,0}, {26377,26376,26415 ,14953,14952,14992 ,0,0,0}, - {26417,26284,26416 ,14994,14859,14993 ,0,0,0}, {26284,26377,26416 ,14859,14953,14993 ,0,0,0}, - {26380,26282,26417 ,14956,14857,14994 ,0,0,0}, {26282,26284,26417 ,14857,14859,14994 ,0,0,0}, - {26380,25595,26378 ,14956,14995,14954 ,0,0,0}, {26282,26380,26379 ,14857,14956,14955 ,0,0,0}, - {26418,26381,26378 ,14996,14957,14954 ,0,0,0}, {26381,26379,26378 ,14957,14955,14954 ,0,0,0}, - {26419,26382,26418 ,14997,14958,14996 ,0,0,0}, {26382,26381,26418 ,14958,14957,14996 ,0,0,0}, - {26420,26383,26419 ,14998,14959,14997 ,0,0,0}, {26383,26382,26419 ,14959,14958,14997 ,0,0,0}, - {26421,26292,26420 ,14999,14867,14998 ,0,0,0}, {26292,26383,26420 ,14867,14959,14998 ,0,0,0}, - {26422,26290,26421 ,15000,14865,14999 ,0,0,0}, {26290,26292,26421 ,14865,14867,14999 ,0,0,0}, - {26384,26386,26422 ,14960,14963,15000 ,0,0,0}, {26290,26422,26386 ,14865,15000,14963 ,0,0,0}, - {26384,26385,26387 ,14960,14962,14964 ,0,0,0}, {26423,26388,26385 ,15001,14965,14962 ,0,0,0}, - {26340,26386,26387 ,14915,14963,14964 ,0,0,0}, {26388,26387,26385 ,14965,14964,14962 ,0,0,0}, - {26424,26389,26423 ,15002,14966,15001 ,0,0,0}, {26389,26388,26423 ,14966,14965,15001 ,0,0,0}, - {26425,26390,26424 ,15003,14967,15002 ,0,0,0}, {26390,26389,26424 ,14967,14966,15002 ,0,0,0}, - {26426,26343,26425 ,15004,14918,15003 ,0,0,0}, {26343,26390,26425 ,14918,14967,15003 ,0,0,0}, - {26393,26344,26426 ,14970,14919,15004 ,0,0,0}, {26344,26343,26426 ,14919,14918,15004 ,0,0,0}, - {26393,25617,26391 ,14970,15005,14968 ,0,0,0}, {26344,26393,26392 ,14919,14970,14969 ,0,0,0}, - {26427,26394,26391 ,15006,14971,14968 ,0,0,0}, {26394,26392,26391 ,14971,14969,14968 ,0,0,0}, - {26428,26395,26427 ,15007,14972,15006 ,0,0,0}, {26395,26394,26427 ,14972,14971,15006 ,0,0,0}, - {26429,26396,26428 ,15008,14973,15007 ,0,0,0}, {26396,26395,26428 ,14973,14972,15007 ,0,0,0}, - {26430,26397,26429 ,15009,14974,15008 ,0,0,0}, {26397,26396,26429 ,14974,14973,15008 ,0,0,0}, - {26431,26398,26430 ,15010,14975,15009 ,0,0,0}, {26398,26397,26430 ,14975,14974,15009 ,0,0,0}, - {26432,26399,26431 ,15011,14976,15010 ,0,0,0}, {26399,26398,26431 ,14976,14975,15010 ,0,0,0}, - {26433,26353,26432 ,15012,14928,15011 ,0,0,0}, {26353,26399,26432 ,14928,14976,15011 ,0,0,0}, - {26434,26354,26433 ,15013,14929,15012 ,0,0,0}, {26354,26353,26433 ,14929,14928,15012 ,0,0,0}, - {26435,26400,26434 ,15014,14977,15013 ,0,0,0}, {26400,26354,26434 ,14977,14929,15013 ,0,0,0}, - {26436,26130,26435 ,15015,14698,15014 ,0,0,0}, {26130,26400,26435 ,14698,14977,15014 ,0,0,0}, - {26436,26402,26128 ,15015,14979,14696 ,0,0,0}, {26128,26130,26436 ,14696,14698,15015 ,0,0,0}, - {26402,26401,26403 ,14979,14978,14980 ,0,0,0}, {26133,26403,26131 ,14701,14980,14699 ,0,0,0}, - {26263,26128,26403 ,14838,14696,14980 ,0,0,0}, {26401,26131,26403 ,14978,14699,14980 ,0,0,0}, - {26132,26131,26136 ,14700,14699,14704 ,0,0,0}, {26361,26064,26063 ,14936,14602,14601 ,0,0,0}, - {26063,26064,26360 ,14601,14602,14935 ,0,0,0}, {25689,25687,26068 ,14761,15016,14606 ,0,0,0}, - {26068,25687,26069 ,14606,15016,14607 ,0,0,0}, {25687,25555,26069 ,15016,15017,14607 ,0,0,0}, - {26069,25555,26364 ,14607,15017,14939 ,0,0,0}, {25555,25554,26364 ,15017,15018,14939 ,0,0,0}, - {26364,25554,26405 ,14939,15018,14982 ,0,0,0}, {25554,25575,26405 ,15018,15019,14982 ,0,0,0}, - {26405,25575,26406 ,14982,15019,14983 ,0,0,0}, {25575,25545,26406 ,15019,15020,14983 ,0,0,0}, - {26406,25545,26407 ,14983,15020,14984 ,0,0,0}, {25545,25580,26407 ,15020,15021,14984 ,0,0,0}, - {26407,25580,26408 ,14984,15021,14985 ,0,0,0}, {25580,25577,26408 ,15021,15022,14985 ,0,0,0}, - {26408,25577,26409 ,14985,15022,14986 ,0,0,0}, {25577,25582,26409 ,15022,15023,14986 ,0,0,0}, - {25582,25584,26410 ,15023,15024,14987 ,0,0,0}, {25582,26410,26409 ,15023,14987,14986 ,0,0,0}, - {25584,25550,26411 ,15024,15025,14988 ,0,0,0}, {25584,26411,26410 ,15024,14988,14987 ,0,0,0}, - {25550,25549,26412 ,15025,15026,14989 ,0,0,0}, {25550,26412,26411 ,15025,14989,14988 ,0,0,0}, - {25549,25586,26413 ,15026,15027,14990 ,0,0,0}, {25549,26413,26412 ,15026,14990,14989 ,0,0,0}, - {25586,25681,26372 ,15027,15028,14948 ,0,0,0}, {25586,26372,26413 ,15027,14948,14990 ,0,0,0}, - {25680,26372,25681 ,14946,14948,15028 ,0,0,0}, {25680,25589,26371 ,14946,15029,14947 ,0,0,0}, - {26371,25589,26414 ,14947,15029,14991 ,0,0,0}, {25589,25594,26414 ,15029,15030,14991 ,0,0,0}, - {26414,25594,26415 ,14991,15030,14992 ,0,0,0}, {25594,25592,26415 ,15030,15031,14992 ,0,0,0}, - {25592,25591,26416 ,15031,15032,14993 ,0,0,0}, {25592,26416,26415 ,15031,14993,14992 ,0,0,0}, - {25591,25679,26417 ,15032,15033,14994 ,0,0,0}, {25591,26417,26416 ,15032,14994,14993 ,0,0,0}, - {25679,25595,26380 ,15033,14995,14956 ,0,0,0}, {25679,26380,26417 ,15033,14956,14994 ,0,0,0}, - {25595,25678,26378 ,14995,15034,14954 ,0,0,0}, {25678,25674,26378 ,15034,15035,14954 ,0,0,0}, - {26378,25674,26418 ,14954,15035,14996 ,0,0,0}, {25674,25599,26418 ,15035,15036,14996 ,0,0,0}, - {26418,25599,26419 ,14996,15036,14997 ,0,0,0}, {25599,25601,26419 ,15036,15037,14997 ,0,0,0}, - {25601,25606,26420 ,15037,15038,14998 ,0,0,0}, {25601,26420,26419 ,15037,14998,14997 ,0,0,0}, - {25606,25604,26421 ,15038,15039,14999 ,0,0,0}, {25606,26421,26420 ,15038,14999,14998 ,0,0,0}, - {25604,25603,26422 ,15039,15040,15000 ,0,0,0}, {25604,26422,26421 ,15039,15000,14999 ,0,0,0}, - {25603,25672,26384 ,15040,15041,14960 ,0,0,0}, {25603,26384,26422 ,15040,14960,15000 ,0,0,0}, - {25671,26384,25672 ,14961,14960,15041 ,0,0,0}, {25671,25608,26385 ,14961,15042,14962 ,0,0,0}, - {26385,25608,26423 ,14962,15042,15001 ,0,0,0}, {25608,25615,26423 ,15042,15043,15001 ,0,0,0}, - {25615,25614,26424 ,15043,15044,15002 ,0,0,0}, {25615,26424,26423 ,15043,15002,15001 ,0,0,0}, - {25614,25613,26425 ,15044,15045,15003 ,0,0,0}, {25614,26425,26424 ,15044,15003,15002 ,0,0,0}, - {25613,25668,26426 ,15045,15046,15004 ,0,0,0}, {25613,26426,26425 ,15045,15004,15003 ,0,0,0}, - {25668,25617,26393 ,15046,15005,14970 ,0,0,0}, {25668,26393,26426 ,15046,14970,15004 ,0,0,0}, - {25617,25616,26391 ,15005,15047,14968 ,0,0,0}, {25616,25622,26391 ,15047,15048,14968 ,0,0,0}, - {26391,25622,26427 ,14968,15048,15006 ,0,0,0}, {25622,25621,26427 ,15048,15049,15006 ,0,0,0}, - {26427,25621,26428 ,15006,15049,15007 ,0,0,0}, {25621,25626,26428 ,15049,15050,15007 ,0,0,0}, - {26428,25626,26429 ,15007,15050,15008 ,0,0,0}, {25626,25624,26429 ,15050,15051,15008 ,0,0,0}, - {25624,25631,26430 ,15051,15052,15009 ,0,0,0}, {25624,26430,26429 ,15051,15009,15008 ,0,0,0}, - {25631,25628,26431 ,15052,15053,15010 ,0,0,0}, {25631,26431,26430 ,15052,15010,15009 ,0,0,0}, - {25628,25635,26432 ,15053,15054,15011 ,0,0,0}, {25628,26432,26431 ,15053,15011,15010 ,0,0,0}, - {25635,25632,26433 ,15054,15055,15012 ,0,0,0}, {25635,26433,26432 ,15054,15012,15011 ,0,0,0}, - {25632,25637,26434 ,15055,15056,15013 ,0,0,0}, {25632,26434,26433 ,15055,15013,15012 ,0,0,0}, - {25637,25636,26435 ,15056,15057,15014 ,0,0,0}, {25637,26435,26434 ,15056,15014,15013 ,0,0,0}, - {25636,25650,26436 ,15057,15058,15015 ,0,0,0}, {25636,26436,26435 ,15057,15015,15014 ,0,0,0}, - {25650,25649,26402 ,15058,15059,14979 ,0,0,0}, {25650,26402,26436 ,15058,14979,15015 ,0,0,0}, - {25649,25643,26401 ,15059,15060,14978 ,0,0,0}, {25649,26401,26402 ,15059,14978,14979 ,0,0,0}, - {25643,25645,26137 ,15060,14711,14705 ,0,0,0}, {25643,26137,26401 ,15060,14705,14978 ,0,0,0}, - {26138,26137,25645 ,14706,14705,14711 ,0,0,0}, {26437,26438,26439 ,15061,15062,15063 ,0,0,0}, - {26440,25514,25513 ,15064,15065,15066 ,0,0,0}, {26440,26441,25514 ,15064,15067,15065 ,0,0,0}, - {26442,25512,26443 ,15068,15069,15070 ,0,0,0}, {25513,26442,26440 ,15066,15068,15064 ,0,0,0}, - {26442,25513,25512 ,15068,15066,15069 ,0,0,0}, {25510,26444,25511 ,15071,15072,15073 ,0,0,0}, - {25425,25511,26444 ,15074,15073,15072 ,0,0,0}, {25425,26444,26443 ,15074,15072,15070 ,0,0,0}, - {25510,25509,26445 ,15071,15075,15076 ,0,0,0}, {25425,26443,25512 ,15074,15070,15069 ,0,0,0}, - {26444,25510,26445 ,15072,15071,15076 ,0,0,0}, {25515,25514,26441 ,15077,15065,15067 ,0,0,0}, - {26446,25508,26447 ,15078,15079,15080 ,0,0,0}, {26446,25509,25508 ,15078,15075,15079 ,0,0,0}, - {26448,26449,26450 ,15081,15082,15083 ,0,0,0}, {26451,26447,25507 ,15084,15080,15085 ,0,0,0}, - {25508,25507,26447 ,15079,15085,15080 ,0,0,0}, {26452,26451,25506 ,15086,15084,15087 ,0,0,0}, - {26452,25505,26453 ,15086,15088,15089 ,0,0,0}, {25506,25505,26452 ,15087,15088,15086 ,0,0,0}, - {26453,25505,25504 ,15089,15088,15090 ,0,0,0}, {25507,25506,26451 ,15085,15087,15084 ,0,0,0}, - {26445,25509,26446 ,15076,15075,15078 ,0,0,0}, {25503,25502,26454 ,15091,15092,15093 ,0,0,0}, - {25503,26455,25504 ,15091,15094,15090 ,0,0,0}, {25501,26456,25502 ,15095,15096,15092 ,0,0,0}, - {25503,26454,26455 ,15091,15093,15094 ,0,0,0}, {25501,25500,26457 ,15095,15097,15098 ,0,0,0}, - {26457,26456,25501 ,15098,15096,15095 ,0,0,0}, {26138,25196,25193 ,15099,13703,15100 ,0,0,0}, - {25502,26456,26454 ,15092,15096,15093 ,0,0,0}, {26457,25500,26458 ,15098,15097,15101 ,0,0,0}, - {26459,26138,25193 ,15102,15099,15100 ,0,0,0}, {26460,26461,26457 ,15103,15104,15098 ,0,0,0}, - {26462,26463,26464 ,15105,15106,15107 ,0,0,0}, {26465,26466,26467 ,15108,15109,15110 ,0,0,0}, - {26468,26469,26358 ,15111,15112,15113 ,0,0,0}, {26468,26132,26470 ,15111,15114,15115 ,0,0,0}, - {26458,25500,25499 ,15101,15097,15116 ,0,0,0}, {26459,25193,26464 ,15102,15100,15107 ,0,0,0}, - {26461,26471,26467 ,15104,15117,15110 ,0,0,0}, {26359,26469,26472 ,15118,15112,15119 ,0,0,0}, - {26473,26186,26474 ,15120,15121,15122 ,0,0,0}, {25062,26475,25499 ,15123,15124,15116 ,0,0,0}, - {26476,26265,26472 ,15125,15126,15119 ,0,0,0}, {26266,26265,26476 ,15127,15126,15125 ,0,0,0}, - {26359,26472,26220 ,15118,15119,15128 ,0,0,0}, {25067,26147,25065 ,13574,15129,15130 ,0,0,0}, - {25062,26473,26475 ,15123,15120,15124 ,0,0,0}, {26186,26473,26147 ,15121,15120,15129 ,0,0,0}, - {26473,25065,26147 ,15120,15130,15129 ,0,0,0}, {26471,26477,26467 ,15117,15131,15110 ,0,0,0}, - {26455,26453,25504 ,15094,15089,15090 ,0,0,0}, {26478,25515,26441 ,15132,15077,15067 ,0,0,0}, - {25516,26478,26479 ,15133,15132,15134 ,0,0,0}, {26478,25516,25515 ,15132,15133,15077 ,0,0,0}, - {26480,25475,26479 ,15135,15136,15134 ,0,0,0}, {25516,26479,25475 ,15133,15134,15136 ,0,0,0}, - {25517,26480,25518 ,15137,15135,15138 ,0,0,0}, {25517,25475,26480 ,15137,15136,15135 ,0,0,0}, - {25519,25518,26481 ,15139,15138,15140 ,0,0,0}, {26480,26481,25518 ,15135,15140,15138 ,0,0,0}, - {26482,25520,25519 ,15141,15142,15139 ,0,0,0}, {25519,26481,26482 ,15139,15140,15141 ,0,0,0}, - {26482,26483,25520 ,15141,15143,15142 ,0,0,0}, {25520,26483,25521 ,15142,15143,15144 ,0,0,0}, - {25521,26483,26484 ,15144,15143,15145 ,0,0,0}, {26485,26486,26487 ,15146,15147,15148 ,0,0,0}, - {26488,25522,26484 ,15149,15150,15145 ,0,0,0}, {25521,26484,25522 ,15144,15145,15150 ,0,0,0}, - {26488,26489,25523 ,15149,15151,15152 ,0,0,0}, {25523,25522,26488 ,15152,15150,15149 ,0,0,0}, - {25440,25524,26489 ,15153,15154,15151 ,0,0,0}, {26489,25524,25523 ,15151,15154,15152 ,0,0,0}, - {26490,25525,25440 ,15155,15156,15153 ,0,0,0}, {25440,26489,26490 ,15153,15151,15155 ,0,0,0}, - {25525,26491,25526 ,15156,15157,15158 ,0,0,0}, {26491,25525,26490 ,15157,15156,15155 ,0,0,0}, - {25527,25526,26492 ,15159,15158,15160 ,0,0,0}, {26491,26492,25526 ,15157,15160,15158 ,0,0,0}, - {26493,25527,26492 ,15161,15159,15160 ,0,0,0}, {26493,25528,25527 ,15161,15162,15159 ,0,0,0}, - {26493,26494,25528 ,15161,15163,15162 ,0,0,0}, {26495,26496,26497 ,15164,15165,15166 ,0,0,0}, - {25529,26494,26498 ,15167,15163,15168 ,0,0,0}, {26494,25529,25528 ,15163,15167,15162 ,0,0,0}, - {26499,25486,26498 ,15169,15170,15168 ,0,0,0}, {25529,26498,25486 ,15167,15168,15170 ,0,0,0}, - {25530,26499,25531 ,15171,15169,15172 ,0,0,0}, {25530,25486,26499 ,15171,15170,15169 ,0,0,0}, - {25532,25531,26500 ,15173,15172,15174 ,0,0,0}, {26499,26500,25531 ,15169,15174,15172 ,0,0,0}, - {26501,25533,25532 ,15175,15176,15173 ,0,0,0}, {25532,26500,26501 ,15173,15174,15175 ,0,0,0}, - {25533,26502,25534 ,15176,15177,15178 ,0,0,0}, {26502,25533,26501 ,15177,15176,15175 ,0,0,0}, - {25535,25534,26503 ,15179,15178,15180 ,0,0,0}, {26502,26503,25534 ,15177,15180,15178 ,0,0,0}, - {26504,25535,26503 ,15181,15179,15180 ,0,0,0}, {26504,25536,25535 ,15181,15182,15179 ,0,0,0}, - {26504,26505,25536 ,15181,15183,15182 ,0,0,0}, {26506,26507,26508 ,15184,15185,15186 ,0,0,0}, - {25537,26505,26507 ,15187,15183,15185 ,0,0,0}, {26505,25537,25536 ,15183,15187,15182 ,0,0,0}, - {26509,25538,26507 ,15188,15189,15185 ,0,0,0}, {25537,26507,25538 ,15187,15185,15189 ,0,0,0}, - {26510,26511,26512 ,15190,15191,15192 ,0,0,0}, {25539,25538,26509 ,15193,15189,15188 ,0,0,0}, - {26513,26514,26515 ,15194,15195,15196 ,0,0,0}, {26516,26517,26518 ,15197,15198,15199 ,0,0,0}, - {26519,26513,26520 ,15200,15194,15201 ,0,0,0}, {26521,26522,26523 ,15202,15203,15204 ,0,0,0}, - {26524,26525,26526 ,15205,15206,15207 ,0,0,0}, {26521,26527,26528 ,15202,15208,15209 ,0,0,0}, - {26529,26530,26531 ,15210,15211,15212 ,0,0,0}, {26528,26527,26532 ,15209,15208,15213 ,0,0,0}, - {25540,25539,26533 ,15214,15193,15215 ,0,0,0}, {25130,26532,26527 ,13637,15213,15208 ,0,0,0}, - {26534,26535,26536 ,15216,15217,15218 ,0,0,0}, {25539,26509,26533 ,15193,15188,15215 ,0,0,0}, - {25540,26518,25541 ,15214,15199,15219 ,0,0,0}, {26506,26509,26507 ,15184,15188,15185 ,0,0,0}, - {25542,25541,26535 ,15220,15219,15217 ,0,0,0}, {26518,26535,25541 ,15199,15217,15219 ,0,0,0}, - {25543,26534,25544 ,15221,15216,15222 ,0,0,0}, {25542,26535,26534 ,15220,15217,15216 ,0,0,0}, - {25544,26537,25164 ,15222,15223,13671 ,0,0,0}, {26534,26537,25544 ,15216,15223,15222 ,0,0,0}, - {25065,26473,25062 ,15130,15120,15123 ,0,0,0}, {26224,26474,26186 ,15224,15122,15121 ,0,0,0}, - {26224,26476,26474 ,15224,15125,15122 ,0,0,0}, {26475,26458,25499 ,15124,15101,15116 ,0,0,0}, - {26475,26474,26538 ,15124,15122,15225 ,0,0,0}, {26539,26456,26461 ,15226,15096,15104 ,0,0,0}, - {26458,26538,26460 ,15101,15225,15103 ,0,0,0}, {26540,26454,26539 ,15227,15093,15226 ,0,0,0}, - {26460,26457,26458 ,15103,15098,15101 ,0,0,0}, {26541,26455,26540 ,15228,15094,15227 ,0,0,0}, - {26461,26456,26457 ,15104,15096,15098 ,0,0,0}, {26542,26453,26541 ,15229,15089,15228 ,0,0,0}, - {26539,26454,26456 ,15226,15093,15096 ,0,0,0}, {26543,26452,26542 ,15230,15086,15229 ,0,0,0}, - {26540,26455,26454 ,15227,15094,15093 ,0,0,0}, {26544,26451,26543 ,15231,15084,15230 ,0,0,0}, - {26541,26453,26455 ,15228,15089,15094 ,0,0,0}, {26545,26447,26544 ,15232,15080,15231 ,0,0,0}, - {26542,26452,26453 ,15229,15086,15089 ,0,0,0}, {26545,26546,26446 ,15232,15233,15078 ,0,0,0}, - {26451,26452,26543 ,15084,15086,15230 ,0,0,0}, {26547,26445,26546 ,15234,15076,15233 ,0,0,0}, - {26447,26451,26544 ,15080,15084,15231 ,0,0,0}, {26448,26444,26547 ,15081,15072,15234 ,0,0,0}, - {26446,26447,26545 ,15078,15080,15232 ,0,0,0}, {26548,26443,26448 ,15235,15070,15081 ,0,0,0}, - {26445,26446,26546 ,15076,15078,15233 ,0,0,0}, {26549,26442,26548 ,15236,15068,15235 ,0,0,0}, - {26444,26445,26547 ,15072,15076,15234 ,0,0,0}, {26550,26440,26549 ,15237,15064,15236 ,0,0,0}, - {26448,26443,26444 ,15081,15070,15072 ,0,0,0}, {26551,26441,26550 ,15238,15067,15237 ,0,0,0}, - {26548,26442,26443 ,15235,15068,15070 ,0,0,0}, {26551,26552,26478 ,15238,15239,15132 ,0,0,0}, - {26440,26442,26549 ,15064,15068,15236 ,0,0,0}, {26553,26479,26552 ,15240,15134,15239 ,0,0,0}, - {26441,26440,26550 ,15067,15064,15237 ,0,0,0}, {26554,26480,26553 ,15241,15135,15240 ,0,0,0}, - {26478,26441,26551 ,15132,15067,15238 ,0,0,0}, {26555,26481,26554 ,15242,15140,15241 ,0,0,0}, - {26479,26478,26552 ,15134,15132,15239 ,0,0,0}, {26556,26482,26555 ,15243,15141,15242 ,0,0,0}, - {26480,26479,26553 ,15135,15134,15240 ,0,0,0}, {26557,26483,26556 ,15244,15143,15243 ,0,0,0}, - {26554,26481,26480 ,15241,15140,15135 ,0,0,0}, {26557,26558,26484 ,15244,15245,15145 ,0,0,0}, - {26482,26481,26555 ,15141,15140,15242 ,0,0,0}, {26559,26488,26558 ,15246,15149,15245 ,0,0,0}, - {26483,26482,26556 ,15143,15141,15243 ,0,0,0}, {26485,26489,26559 ,15146,15151,15246 ,0,0,0}, - {26484,26483,26557 ,15145,15143,15244 ,0,0,0}, {26560,26490,26485 ,15247,15155,15146 ,0,0,0}, - {26488,26484,26558 ,15149,15145,15245 ,0,0,0}, {26561,26491,26560 ,15248,15157,15247 ,0,0,0}, - {26489,26488,26559 ,15151,15149,15246 ,0,0,0}, {26562,26492,26561 ,15249,15160,15248 ,0,0,0}, - {26485,26490,26489 ,15146,15155,15151 ,0,0,0}, {26563,26493,26562 ,15250,15161,15249 ,0,0,0}, - {26560,26491,26490 ,15247,15157,15155 ,0,0,0}, {26563,26564,26494 ,15250,15251,15163 ,0,0,0}, - {26492,26491,26561 ,15160,15157,15248 ,0,0,0}, {26565,26498,26564 ,15252,15168,15251 ,0,0,0}, - {26493,26492,26562 ,15161,15160,15249 ,0,0,0}, {26566,26499,26565 ,15253,15169,15252 ,0,0,0}, - {26494,26493,26563 ,15163,15161,15250 ,0,0,0}, {26567,26500,26566 ,15254,15174,15253 ,0,0,0}, - {26498,26494,26564 ,15168,15163,15251 ,0,0,0}, {26568,26501,26567 ,15255,15175,15254 ,0,0,0}, - {26565,26499,26498 ,15252,15169,15168 ,0,0,0}, {26569,26502,26568 ,15256,15177,15255 ,0,0,0}, - {26566,26500,26499 ,15253,15174,15169 ,0,0,0}, {26570,26503,26569 ,15257,15180,15256 ,0,0,0}, - {26567,26501,26500 ,15254,15175,15174 ,0,0,0}, {26571,26504,26570 ,15258,15181,15257 ,0,0,0}, - {26568,26502,26501 ,15255,15177,15175 ,0,0,0}, {26571,26508,26505 ,15258,15186,15183 ,0,0,0}, - {26503,26502,26569 ,15180,15177,15256 ,0,0,0}, {26509,26506,26572 ,15188,15184,15259 ,0,0,0}, - {26504,26503,26570 ,15181,15180,15257 ,0,0,0}, {26526,26517,26530 ,15207,15198,15211 ,0,0,0}, - {26505,26504,26571 ,15183,15181,15258 ,0,0,0}, {26516,26533,26572 ,15197,15215,15259 ,0,0,0}, - {26507,26505,26508 ,15185,15183,15186 ,0,0,0}, {26516,26572,26573 ,15197,15259,15260 ,0,0,0}, - {26525,26536,26526 ,15206,15218,15207 ,0,0,0}, {26533,26518,25540 ,15215,15199,15214 ,0,0,0}, - {26533,26509,26572 ,15215,15188,15259 ,0,0,0}, {26574,26537,26575 ,15261,15223,15262 ,0,0,0}, - {26533,26516,26518 ,15215,15197,15199 ,0,0,0}, {26536,26535,26517 ,15218,15217,15198 ,0,0,0}, - {26576,26577,26537 ,15263,15264,15223 ,0,0,0}, {25542,26534,25543 ,15220,15216,15221 ,0,0,0}, - {26534,26575,26537 ,15216,15262,15223 ,0,0,0}, {25164,26537,26577 ,13671,15223,15264 ,0,0,0}, - {26473,26474,26475 ,15120,15122,15124 ,0,0,0}, {26266,26476,26224 ,15127,15125,15224 ,0,0,0}, - {26358,26404,26468 ,15113,15265,15111 ,0,0,0}, {26475,26538,26458 ,15124,15225,15101 ,0,0,0}, - {26538,26476,26578 ,15225,15125,15266 ,0,0,0}, {26467,26466,26539 ,15110,15109,15226 ,0,0,0}, - {26471,26460,26578 ,15117,15103,15266 ,0,0,0}, {26466,26579,26540 ,15109,15267,15227 ,0,0,0}, - {26471,26461,26460 ,15117,15104,15103 ,0,0,0}, {26579,26580,26541 ,15267,15268,15228 ,0,0,0}, - {26467,26539,26461 ,15110,15226,15104 ,0,0,0}, {26580,26581,26542 ,15268,15269,15229 ,0,0,0}, - {26466,26540,26539 ,15109,15227,15226 ,0,0,0}, {26581,26582,26543 ,15269,15270,15230 ,0,0,0}, - {26579,26541,26540 ,15267,15228,15227 ,0,0,0}, {26582,26583,26544 ,15270,15271,15231 ,0,0,0}, - {26580,26542,26541 ,15268,15229,15228 ,0,0,0}, {26583,26584,26545 ,15271,15272,15232 ,0,0,0}, - {26581,26543,26542 ,15269,15230,15229 ,0,0,0}, {26584,26585,26546 ,15272,15273,15233 ,0,0,0}, - {26582,26544,26543 ,15270,15231,15230 ,0,0,0}, {26585,26449,26547 ,15273,15082,15234 ,0,0,0}, - {26545,26544,26583 ,15232,15231,15271 ,0,0,0}, {26586,26587,26588 ,15274,15275,15276 ,0,0,0}, - {26546,26545,26584 ,15233,15232,15272 ,0,0,0}, {26450,26587,26548 ,15083,15275,15235 ,0,0,0}, - {26547,26546,26585 ,15234,15233,15273 ,0,0,0}, {26587,26586,26549 ,15275,15274,15236 ,0,0,0}, - {26448,26547,26449 ,15081,15234,15082 ,0,0,0}, {26586,26589,26550 ,15274,15277,15237 ,0,0,0}, - {26450,26548,26448 ,15083,15235,15081 ,0,0,0}, {26589,26590,26551 ,15277,15278,15238 ,0,0,0}, - {26587,26549,26548 ,15275,15236,15235 ,0,0,0}, {26590,26591,26552 ,15278,15279,15239 ,0,0,0}, - {26586,26550,26549 ,15274,15237,15236 ,0,0,0}, {26591,26592,26553 ,15279,15280,15240 ,0,0,0}, - {26551,26550,26589 ,15238,15237,15277 ,0,0,0}, {26438,26554,26592 ,15062,15241,15280 ,0,0,0}, - {26552,26551,26590 ,15239,15238,15278 ,0,0,0}, {26438,26437,26555 ,15062,15061,15242 ,0,0,0}, - {26553,26552,26591 ,15240,15239,15279 ,0,0,0}, {26437,26593,26556 ,15061,15281,15243 ,0,0,0}, - {26592,26554,26553 ,15280,15241,15240 ,0,0,0}, {26593,26594,26557 ,15281,15282,15244 ,0,0,0}, - {26438,26555,26554 ,15062,15242,15241 ,0,0,0}, {26594,26595,26558 ,15282,15283,15245 ,0,0,0}, - {26437,26556,26555 ,15061,15243,15242 ,0,0,0}, {26595,26486,26559 ,15283,15147,15246 ,0,0,0}, - {26557,26556,26593 ,15244,15243,15281 ,0,0,0}, {26596,26597,26598 ,15284,15285,15286 ,0,0,0}, - {26558,26557,26594 ,15245,15244,15282 ,0,0,0}, {26487,26599,26560 ,15148,15287,15247 ,0,0,0}, - {26559,26558,26595 ,15246,15245,15283 ,0,0,0}, {26599,26600,26561 ,15287,15288,15248 ,0,0,0}, - {26485,26559,26486 ,15146,15246,15147 ,0,0,0}, {26600,26601,26562 ,15288,15289,15249 ,0,0,0}, - {26487,26560,26485 ,15148,15247,15146 ,0,0,0}, {26601,26602,26563 ,15289,15290,15250 ,0,0,0}, - {26599,26561,26560 ,15287,15248,15247 ,0,0,0}, {26602,26603,26564 ,15290,15291,15251 ,0,0,0}, - {26600,26562,26561 ,15288,15249,15248 ,0,0,0}, {26603,26604,26565 ,15291,15292,15252 ,0,0,0}, - {26563,26562,26601 ,15250,15249,15289 ,0,0,0}, {26604,26495,26566 ,15292,15164,15253 ,0,0,0}, - {26564,26563,26602 ,15251,15250,15290 ,0,0,0}, {26495,26497,26567 ,15164,15166,15254 ,0,0,0}, - {26565,26564,26603 ,15252,15251,15291 ,0,0,0}, {26497,26605,26568 ,15166,15293,15255 ,0,0,0}, - {26604,26566,26565 ,15292,15253,15252 ,0,0,0}, {26605,26606,26569 ,15293,15294,15256 ,0,0,0}, - {26495,26567,26566 ,15164,15254,15253 ,0,0,0}, {26606,26607,26570 ,15294,15295,15257 ,0,0,0}, - {26497,26568,26567 ,15166,15255,15254 ,0,0,0}, {26607,26608,26571 ,15295,15296,15258 ,0,0,0}, - {26605,26569,26568 ,15293,15256,15255 ,0,0,0}, {26608,26609,26508 ,15296,15297,15186 ,0,0,0}, - {26606,26570,26569 ,15294,15257,15256 ,0,0,0}, {26609,26610,26506 ,15297,15298,15184 ,0,0,0}, - {26607,26571,26570 ,15295,15258,15257 ,0,0,0}, {26610,26573,26572 ,15298,15260,15259 ,0,0,0}, - {26608,26508,26571 ,15296,15186,15258 ,0,0,0}, {26573,26530,26516 ,15260,15211,15197 ,0,0,0}, - {26506,26508,26609 ,15184,15186,15297 ,0,0,0}, {26611,26525,26612 ,15299,15206,15300 ,0,0,0}, - {26506,26610,26572 ,15184,15298,15259 ,0,0,0}, {26536,26525,26575 ,15218,15206,15262 ,0,0,0}, - {26524,26612,26525 ,15205,15300,15206 ,0,0,0}, {26518,26517,26535 ,15199,15198,15217 ,0,0,0}, - {26530,26517,26516 ,15211,15198,15197 ,0,0,0}, {26613,26574,26510 ,15301,15261,15190 ,0,0,0}, - {26574,26576,26537 ,15261,15263,15223 ,0,0,0}, {26534,26536,26575 ,15216,15218,15262 ,0,0,0}, - {26574,26575,26611 ,15261,15262,15299 ,0,0,0}, {26613,26576,26574 ,15301,15263,15261 ,0,0,0}, - {26474,26476,26538 ,15122,15125,15225 ,0,0,0}, {26220,26472,26265 ,15128,15119,15126 ,0,0,0}, - {25191,26464,25193 ,15302,15107,15100 ,0,0,0}, {26538,26578,26460 ,15225,15266,15103 ,0,0,0}, - {26578,26472,26614 ,15266,15119,15303 ,0,0,0}, {26466,26615,26579 ,15109,15304,15267 ,0,0,0}, - {26477,26471,26614 ,15131,15117,15303 ,0,0,0}, {26579,26616,26580 ,15267,15305,15268 ,0,0,0}, - {26477,26465,26467 ,15131,15108,15110 ,0,0,0}, {26617,26618,26619 ,15306,15307,15308 ,0,0,0}, - {26465,26615,26466 ,15108,15304,15109 ,0,0,0}, {26581,26580,26620 ,15269,15268,15309 ,0,0,0}, - {26615,26616,26579 ,15304,15305,15267 ,0,0,0}, {26582,26581,26619 ,15270,15269,15308 ,0,0,0}, - {26616,26620,26580 ,15305,15309,15268 ,0,0,0}, {26583,26582,26618 ,15271,15270,15307 ,0,0,0}, - {26620,26619,26581 ,15309,15308,15269 ,0,0,0}, {26584,26583,26621 ,15272,15271,15310 ,0,0,0}, - {26619,26618,26582 ,15308,15307,15270 ,0,0,0}, {26585,26584,26622 ,15273,15272,15311 ,0,0,0}, - {26618,26621,26583 ,15307,15310,15271 ,0,0,0}, {26449,26585,26623 ,15082,15273,15312 ,0,0,0}, - {26621,26622,26584 ,15310,15311,15272 ,0,0,0}, {26450,26449,26624 ,15083,15082,15313 ,0,0,0}, - {26622,26623,26585 ,15311,15312,15273 ,0,0,0}, {26587,26450,26625 ,15275,15083,15314 ,0,0,0}, - {26624,26449,26623 ,15313,15082,15312 ,0,0,0}, {26626,26627,26628 ,15315,15316,15317 ,0,0,0}, - {26625,26450,26624 ,15314,15083,15313 ,0,0,0}, {26589,26586,26629 ,15277,15274,15318 ,0,0,0}, - {26625,26588,26587 ,15314,15276,15275 ,0,0,0}, {26590,26589,26628 ,15278,15277,15317 ,0,0,0}, - {26588,26629,26586 ,15276,15318,15274 ,0,0,0}, {26591,26590,26627 ,15279,15278,15316 ,0,0,0}, - {26629,26628,26589 ,15318,15317,15277 ,0,0,0}, {26592,26591,26630 ,15280,15279,15319 ,0,0,0}, - {26628,26627,26590 ,15317,15316,15278 ,0,0,0}, {26438,26592,26631 ,15062,15280,15320 ,0,0,0}, - {26630,26591,26627 ,15319,15279,15316 ,0,0,0}, {26632,26633,26634 ,15321,15322,15323 ,0,0,0}, - {26631,26592,26630 ,15320,15280,15319 ,0,0,0}, {26593,26437,26635 ,15281,15061,15324 ,0,0,0}, - {26631,26439,26438 ,15320,15063,15062 ,0,0,0}, {26594,26593,26634 ,15282,15281,15323 ,0,0,0}, - {26439,26635,26437 ,15063,15324,15061 ,0,0,0}, {26595,26594,26633 ,15283,15282,15322 ,0,0,0}, - {26635,26634,26593 ,15324,15323,15281 ,0,0,0}, {26486,26595,26636 ,15147,15283,15325 ,0,0,0}, - {26634,26633,26594 ,15323,15322,15282 ,0,0,0}, {26487,26486,26637 ,15148,15147,15326 ,0,0,0}, - {26633,26636,26595 ,15322,15325,15283 ,0,0,0}, {26599,26487,26638 ,15287,15148,15327 ,0,0,0}, - {26637,26486,26636 ,15326,15147,15325 ,0,0,0}, {26600,26599,26639 ,15288,15287,15328 ,0,0,0}, - {26638,26487,26637 ,15327,15148,15326 ,0,0,0}, {26601,26600,26596 ,15289,15288,15284 ,0,0,0}, - {26638,26639,26599 ,15327,15328,15287 ,0,0,0}, {26602,26601,26598 ,15290,15289,15286 ,0,0,0}, - {26639,26596,26600 ,15328,15284,15288 ,0,0,0}, {26603,26602,26640 ,15291,15290,15329 ,0,0,0}, - {26596,26598,26601 ,15284,15286,15289 ,0,0,0}, {26604,26603,26641 ,15292,15291,15330 ,0,0,0}, - {26598,26640,26602 ,15286,15329,15290 ,0,0,0}, {26495,26604,26642 ,15164,15292,15331 ,0,0,0}, - {26641,26603,26640 ,15330,15291,15329 ,0,0,0}, {26643,26644,26645 ,15332,15333,15334 ,0,0,0}, - {26642,26604,26641 ,15331,15292,15330 ,0,0,0}, {26605,26497,26646 ,15293,15166,15335 ,0,0,0}, - {26642,26496,26495 ,15331,15165,15164 ,0,0,0}, {26606,26605,26645 ,15294,15293,15334 ,0,0,0}, - {26496,26646,26497 ,15165,15335,15166 ,0,0,0}, {26607,26606,26644 ,15295,15294,15333 ,0,0,0}, - {26646,26645,26605 ,15335,15334,15293 ,0,0,0}, {26608,26607,26647 ,15296,15295,15336 ,0,0,0}, - {26645,26644,26606 ,15334,15333,15294 ,0,0,0}, {26609,26608,26648 ,15297,15296,15337 ,0,0,0}, - {26644,26647,26607 ,15333,15336,15295 ,0,0,0}, {26610,26609,26649 ,15298,15297,15338 ,0,0,0}, - {26647,26648,26608 ,15336,15337,15296 ,0,0,0}, {26573,26610,26650 ,15260,15298,15339 ,0,0,0}, - {26648,26649,26609 ,15337,15338,15297 ,0,0,0}, {26530,26573,26531 ,15211,15260,15212 ,0,0,0}, - {26649,26650,26610 ,15338,15339,15298 ,0,0,0}, {26526,26530,26529 ,15207,15211,15210 ,0,0,0}, - {26650,26531,26573 ,15339,15212,15260 ,0,0,0}, {26511,26612,26514 ,15191,15300,15195 ,0,0,0}, - {26612,26651,26514 ,15300,15340,15195 ,0,0,0}, {26517,26526,26536 ,15198,15207,15218 ,0,0,0}, - {26529,26524,26526 ,15210,15205,15207 ,0,0,0}, {26652,26510,26512 ,15341,15190,15192 ,0,0,0}, - {26574,26611,26510 ,15261,15299,15190 ,0,0,0}, {26575,26525,26611 ,15262,15206,15299 ,0,0,0}, - {26611,26511,26510 ,15299,15191,15190 ,0,0,0}, {26613,26510,26652 ,15301,15190,15341 ,0,0,0}, - {26472,26578,26476 ,15119,15266,15125 ,0,0,0}, {26358,26469,26359 ,15113,15112,15118 ,0,0,0}, - {26477,26653,26465 ,15131,15342,15108 ,0,0,0}, {26578,26614,26471 ,15266,15303,15117 ,0,0,0}, - {26469,26654,26614 ,15112,15343,15303 ,0,0,0}, {26615,26465,26655 ,15304,15108,15344 ,0,0,0}, - {26654,26653,26477 ,15343,15342,15131 ,0,0,0}, {26616,26615,26656 ,15305,15304,15345 ,0,0,0}, - {26465,26653,26655 ,15108,15342,15344 ,0,0,0}, {26620,26616,26657 ,15309,15305,15346 ,0,0,0}, - {26615,26655,26656 ,15304,15344,15345 ,0,0,0}, {26619,26620,26658 ,15308,15309,15347 ,0,0,0}, - {26656,26657,26616 ,15345,15346,15305 ,0,0,0}, {26659,26621,26618 ,15348,15310,15307 ,0,0,0}, - {26657,26658,26620 ,15346,15347,15309 ,0,0,0}, {26660,26661,26662 ,15349,15350,15351 ,0,0,0}, - {26658,26617,26619 ,15347,15306,15308 ,0,0,0}, {26621,26663,26622 ,15310,15352,15311 ,0,0,0}, - {26617,26659,26618 ,15306,15348,15307 ,0,0,0}, {26622,26661,26623 ,15311,15350,15312 ,0,0,0}, - {26659,26663,26621 ,15348,15352,15310 ,0,0,0}, {26623,26660,26624 ,15312,15349,15313 ,0,0,0}, - {26663,26661,26622 ,15352,15350,15311 ,0,0,0}, {26624,26664,26625 ,15313,15353,15314 ,0,0,0}, - {26661,26660,26623 ,15350,15349,15312 ,0,0,0}, {26625,26665,26588 ,15314,15354,15276 ,0,0,0}, - {26660,26664,26624 ,15349,15353,15313 ,0,0,0}, {26629,26588,26666 ,15318,15276,15355 ,0,0,0}, - {26664,26665,26625 ,15353,15354,15314 ,0,0,0}, {26628,26629,26667 ,15317,15318,15356 ,0,0,0}, - {26665,26666,26588 ,15354,15355,15276 ,0,0,0}, {26668,26669,26670 ,15357,15358,15359 ,0,0,0}, - {26666,26667,26629 ,15355,15356,15318 ,0,0,0}, {26627,26671,26630 ,15316,15360,15319 ,0,0,0}, - {26667,26626,26628 ,15356,15315,15317 ,0,0,0}, {26630,26672,26631 ,15319,15361,15320 ,0,0,0}, - {26626,26671,26627 ,15315,15360,15316 ,0,0,0}, {26631,26673,26439 ,15320,15362,15063 ,0,0,0}, - {26671,26672,26630 ,15360,15361,15319 ,0,0,0}, {26635,26439,26674 ,15324,15063,15363 ,0,0,0}, - {26672,26673,26631 ,15361,15362,15320 ,0,0,0}, {26634,26635,26675 ,15323,15324,15364 ,0,0,0}, - {26673,26674,26439 ,15362,15363,15063 ,0,0,0}, {26676,26677,26678 ,15365,15366,15367 ,0,0,0}, - {26674,26675,26635 ,15363,15364,15324 ,0,0,0}, {26633,26679,26636 ,15322,15368,15325 ,0,0,0}, - {26675,26632,26634 ,15364,15321,15323 ,0,0,0}, {26636,26680,26637 ,15325,15369,15326 ,0,0,0}, - {26632,26679,26633 ,15321,15368,15322 ,0,0,0}, {26637,26681,26638 ,15326,15370,15327 ,0,0,0}, - {26679,26680,26636 ,15368,15369,15325 ,0,0,0}, {26638,26682,26639 ,15327,15371,15328 ,0,0,0}, - {26680,26681,26637 ,15369,15370,15326 ,0,0,0}, {26596,26639,26683 ,15284,15328,15372 ,0,0,0}, - {26681,26682,26638 ,15370,15371,15327 ,0,0,0}, {26684,26685,26686 ,15373,15374,15375 ,0,0,0}, - {26682,26683,26639 ,15371,15372,15328 ,0,0,0}, {26598,26687,26640 ,15286,15376,15329 ,0,0,0}, - {26683,26597,26596 ,15372,15285,15284 ,0,0,0}, {26640,26685,26641 ,15329,15374,15330 ,0,0,0}, - {26597,26687,26598 ,15285,15376,15286 ,0,0,0}, {26641,26684,26642 ,15330,15373,15331 ,0,0,0}, - {26687,26685,26640 ,15376,15374,15329 ,0,0,0}, {26642,26688,26496 ,15331,15377,15165 ,0,0,0}, - {26685,26684,26641 ,15374,15373,15330 ,0,0,0}, {26646,26496,26689 ,15335,15165,15378 ,0,0,0}, - {26684,26688,26642 ,15373,15377,15331 ,0,0,0}, {26645,26646,26690 ,15334,15335,15379 ,0,0,0}, - {26688,26689,26496 ,15377,15378,15165 ,0,0,0}, {26691,26647,26644 ,15380,15336,15333 ,0,0,0}, - {26689,26690,26646 ,15378,15379,15335 ,0,0,0}, {26692,26693,26694 ,15381,15382,15383 ,0,0,0}, - {26690,26643,26645 ,15379,15332,15334 ,0,0,0}, {26647,26695,26648 ,15336,15384,15337 ,0,0,0}, - {26643,26691,26644 ,15332,15380,15333 ,0,0,0}, {26648,26693,26649 ,15337,15382,15338 ,0,0,0}, - {26691,26695,26647 ,15380,15384,15336 ,0,0,0}, {26649,26692,26650 ,15338,15381,15339 ,0,0,0}, - {26695,26693,26648 ,15384,15382,15337 ,0,0,0}, {26650,26696,26531 ,15339,15385,15212 ,0,0,0}, - {26693,26692,26649 ,15382,15381,15338 ,0,0,0}, {26531,26697,26529 ,15212,15386,15210 ,0,0,0}, - {26692,26696,26650 ,15381,15385,15339 ,0,0,0}, {26529,26698,26524 ,15210,15387,15205 ,0,0,0}, - {26696,26697,26531 ,15385,15386,15212 ,0,0,0}, {26524,26651,26612 ,15205,15340,15300 ,0,0,0}, - {26698,26529,26697 ,15387,15210,15386 ,0,0,0}, {26699,26700,26512 ,15388,15389,15192 ,0,0,0}, - {26524,26698,26651 ,15205,15387,15340 ,0,0,0}, {26701,26512,26700 ,15390,15192,15389 ,0,0,0}, - {26702,26652,26512 ,15391,15341,15192 ,0,0,0}, {26611,26612,26511 ,15299,15300,15191 ,0,0,0}, - {26511,26699,26512 ,15191,15388,15192 ,0,0,0}, {26701,26702,26512 ,15390,15391,15192 ,0,0,0}, - {26469,26614,26472 ,15112,15303,15119 ,0,0,0}, {26132,26468,26404 ,15114,15111,15265 ,0,0,0}, - {26653,26703,26655 ,15342,15392,15344 ,0,0,0}, {26614,26654,26477 ,15303,15343,15131 ,0,0,0}, - {26468,26704,26654 ,15111,15393,15343 ,0,0,0}, {26656,26655,26705 ,15345,15344,15394 ,0,0,0}, - {26653,26704,26703 ,15342,15393,15392 ,0,0,0}, {26657,26656,26706 ,15346,15345,15395 ,0,0,0}, - {26655,26703,26705 ,15344,15392,15394 ,0,0,0}, {26658,26657,26707 ,15347,15346,15396 ,0,0,0}, - {26656,26705,26706 ,15345,15394,15395 ,0,0,0}, {26617,26658,26708 ,15306,15347,15397 ,0,0,0}, - {26657,26706,26707 ,15346,15395,15396 ,0,0,0}, {26659,26617,26709 ,15348,15306,15398 ,0,0,0}, - {26658,26707,26708 ,15347,15396,15397 ,0,0,0}, {26663,26659,26710 ,15352,15348,15399 ,0,0,0}, - {26617,26708,26709 ,15306,15397,15398 ,0,0,0}, {26661,26663,26711 ,15350,15352,15400 ,0,0,0}, - {26709,26710,26659 ,15398,15399,15348 ,0,0,0}, {26712,26713,26714 ,15401,15402,15403 ,0,0,0}, - {26710,26711,26663 ,15399,15400,15352 ,0,0,0}, {26660,26715,26664 ,15349,15404,15353 ,0,0,0}, - {26711,26662,26661 ,15400,15351,15350 ,0,0,0}, {26664,26714,26665 ,15353,15403,15354 ,0,0,0}, - {26662,26715,26660 ,15351,15404,15349 ,0,0,0}, {26665,26716,26666 ,15354,15405,15355 ,0,0,0}, - {26715,26714,26664 ,15404,15403,15353 ,0,0,0}, {26667,26666,26717 ,15356,15355,15406 ,0,0,0}, - {26714,26716,26665 ,15403,15405,15354 ,0,0,0}, {26626,26667,26718 ,15315,15356,15407 ,0,0,0}, - {26666,26716,26717 ,15355,15405,15406 ,0,0,0}, {26671,26626,26719 ,15360,15315,15408 ,0,0,0}, - {26667,26717,26718 ,15356,15406,15407 ,0,0,0}, {26672,26671,26720 ,15361,15360,15409 ,0,0,0}, - {26718,26719,26626 ,15407,15408,15315 ,0,0,0}, {26672,26721,26673 ,15361,15410,15362 ,0,0,0}, - {26719,26720,26671 ,15408,15409,15360 ,0,0,0}, {26673,26669,26674 ,15362,15358,15363 ,0,0,0}, - {26720,26721,26672 ,15409,15410,15361 ,0,0,0}, {26675,26674,26722 ,15364,15363,15411 ,0,0,0}, - {26721,26669,26673 ,15410,15358,15362 ,0,0,0}, {26632,26675,26723 ,15321,15364,15412 ,0,0,0}, - {26674,26669,26722 ,15363,15358,15411 ,0,0,0}, {26679,26632,26724 ,15368,15321,15413 ,0,0,0}, - {26675,26722,26723 ,15364,15411,15412 ,0,0,0}, {26680,26679,26725 ,15369,15368,15414 ,0,0,0}, - {26723,26724,26632 ,15412,15413,15321 ,0,0,0}, {26680,26726,26681 ,15369,15415,15370 ,0,0,0}, - {26724,26725,26679 ,15413,15414,15368 ,0,0,0}, {26681,26677,26682 ,15370,15366,15371 ,0,0,0}, - {26725,26726,26680 ,15414,15415,15369 ,0,0,0}, {26683,26682,26727 ,15372,15371,15416 ,0,0,0}, - {26726,26677,26681 ,15415,15366,15370 ,0,0,0}, {26597,26683,26728 ,15285,15372,15417 ,0,0,0}, - {26682,26677,26727 ,15371,15366,15416 ,0,0,0}, {26687,26597,26729 ,15376,15285,15418 ,0,0,0}, - {26683,26727,26728 ,15372,15416,15417 ,0,0,0}, {26685,26687,26730 ,15374,15376,15419 ,0,0,0}, - {26728,26729,26597 ,15417,15418,15285 ,0,0,0}, {26731,26732,26733 ,15420,15421,15422 ,0,0,0}, - {26729,26730,26687 ,15418,15419,15376 ,0,0,0}, {26684,26734,26688 ,15373,15423,15377 ,0,0,0}, - {26730,26686,26685 ,15419,15375,15374 ,0,0,0}, {26688,26733,26689 ,15377,15422,15378 ,0,0,0}, - {26686,26734,26684 ,15375,15423,15373 ,0,0,0}, {26690,26689,26735 ,15379,15378,15424 ,0,0,0}, - {26734,26733,26688 ,15423,15422,15377 ,0,0,0}, {26643,26690,26736 ,15332,15379,15425 ,0,0,0}, - {26689,26733,26735 ,15378,15422,15424 ,0,0,0}, {26691,26643,26737 ,15380,15332,15426 ,0,0,0}, - {26690,26735,26736 ,15379,15424,15425 ,0,0,0}, {26695,26691,26738 ,15384,15380,15427 ,0,0,0}, - {26643,26736,26737 ,15332,15425,15426 ,0,0,0}, {26693,26695,26739 ,15382,15384,15428 ,0,0,0}, - {26737,26738,26691 ,15426,15427,15380 ,0,0,0}, {26740,26696,26692 ,15429,15385,15381 ,0,0,0}, - {26738,26739,26695 ,15427,15428,15384 ,0,0,0}, {26741,26742,26743 ,15430,15431,15432 ,0,0,0}, - {26739,26694,26693 ,15428,15383,15382 ,0,0,0}, {26696,26744,26697 ,15385,15433,15386 ,0,0,0}, - {26694,26740,26692 ,15383,15429,15381 ,0,0,0}, {26697,26743,26698 ,15386,15432,15387 ,0,0,0}, - {26740,26744,26696 ,15429,15433,15385 ,0,0,0}, {26698,26745,26651 ,15387,15434,15340 ,0,0,0}, - {26744,26743,26697 ,15433,15432,15386 ,0,0,0}, {26651,26515,26514 ,15340,15196,15195 ,0,0,0}, - {26743,26745,26698 ,15432,15434,15387 ,0,0,0}, {26514,26513,26699 ,15195,15194,15388 ,0,0,0}, - {26515,26651,26745 ,15196,15340,15434 ,0,0,0}, {26700,26746,26523 ,15389,15435,15204 ,0,0,0}, - {26747,26748,26700 ,15436,15437,15389 ,0,0,0}, {26511,26514,26699 ,15191,15195,15388 ,0,0,0}, - {26699,26746,26700 ,15388,15435,15389 ,0,0,0}, {26701,26700,26748 ,15390,15389,15437 ,0,0,0}, - {26469,26468,26654 ,15112,15111,15343 ,0,0,0}, {26136,26470,26132 ,15438,15115,15114 ,0,0,0}, - {26705,26703,26463 ,15394,15392,15106 ,0,0,0}, {26654,26704,26653 ,15343,15393,15342 ,0,0,0}, - {26470,26749,26704 ,15115,15439,15393 ,0,0,0}, {26706,26705,26750 ,15395,15394,15440 ,0,0,0}, - {26703,26749,26463 ,15392,15439,15106 ,0,0,0}, {26751,26750,26752 ,15441,15440,15442 ,0,0,0}, - {26705,26463,26750 ,15394,15106,15440 ,0,0,0}, {26751,26753,26707 ,15441,15443,15396 ,0,0,0}, - {26707,26706,26751 ,15396,15395,15441 ,0,0,0}, {26753,26754,26708 ,15443,15444,15397 ,0,0,0}, - {26708,26707,26753 ,15397,15396,15443 ,0,0,0}, {26754,26755,26709 ,15444,15445,15398 ,0,0,0}, - {26709,26708,26754 ,15398,15397,15444 ,0,0,0}, {26755,26756,26710 ,15445,15446,15399 ,0,0,0}, - {26710,26709,26755 ,15399,15398,15445 ,0,0,0}, {26756,26757,26711 ,15446,15447,15400 ,0,0,0}, - {26711,26710,26756 ,15400,15399,15446 ,0,0,0}, {26757,26758,26662 ,15447,15448,15351 ,0,0,0}, - {26662,26711,26757 ,15351,15400,15447 ,0,0,0}, {26758,26712,26715 ,15448,15401,15404 ,0,0,0}, - {26662,26758,26715 ,15351,15448,15404 ,0,0,0}, {25179,26759,26760 ,15449,15450,15451 ,0,0,0}, - {26715,26712,26714 ,15404,15401,15403 ,0,0,0}, {26716,26761,26717 ,15405,15452,15406 ,0,0,0}, - {26714,26713,26716 ,15403,15402,15405 ,0,0,0}, {26762,26761,26760 ,15453,15452,15451 ,0,0,0}, - {26713,26761,26716 ,15402,15452,15405 ,0,0,0}, {26762,26763,26718 ,15453,15454,15407 ,0,0,0}, - {26718,26717,26762 ,15407,15406,15453 ,0,0,0}, {26763,26764,26719 ,15454,15455,15408 ,0,0,0}, - {26719,26718,26763 ,15408,15407,15454 ,0,0,0}, {26764,26765,26720 ,15455,15456,15409 ,0,0,0}, - {26720,26719,26764 ,15409,15408,15455 ,0,0,0}, {26765,26670,26721 ,15456,15359,15410 ,0,0,0}, - {26720,26765,26721 ,15409,15456,15410 ,0,0,0}, {26766,26767,26768 ,15457,15458,15459 ,0,0,0}, - {26721,26670,26669 ,15410,15359,15358 ,0,0,0}, {26668,26767,26722 ,15357,15458,15411 ,0,0,0}, - {26669,26668,26722 ,15358,15357,15411 ,0,0,0}, {26767,26769,26723 ,15458,15460,15412 ,0,0,0}, - {26723,26722,26767 ,15412,15411,15458 ,0,0,0}, {26769,26770,26724 ,15460,15461,15413 ,0,0,0}, - {26724,26723,26769 ,15413,15412,15460 ,0,0,0}, {26770,26771,26725 ,15461,15462,15414 ,0,0,0}, - {26725,26724,26770 ,15414,15413,15461 ,0,0,0}, {26771,26678,26726 ,15462,15367,15415 ,0,0,0}, - {26725,26771,26726 ,15414,15462,15415 ,0,0,0}, {26772,25170,26773 ,15463,15464,15465 ,0,0,0}, - {26726,26678,26677 ,15415,15367,15366 ,0,0,0}, {26728,26727,26774 ,15417,15416,15466 ,0,0,0}, - {26677,26676,26727 ,15366,15365,15416 ,0,0,0}, {26775,26774,26772 ,15467,15466,15463 ,0,0,0}, - {26727,26676,26774 ,15416,15365,15466 ,0,0,0}, {26775,26776,26729 ,15467,15468,15418 ,0,0,0}, - {26729,26728,26775 ,15418,15417,15467 ,0,0,0}, {26776,26777,26730 ,15468,15469,15419 ,0,0,0}, - {26730,26729,26776 ,15419,15418,15468 ,0,0,0}, {26777,26778,26686 ,15469,15470,15375 ,0,0,0}, - {26686,26730,26777 ,15375,15419,15469 ,0,0,0}, {26778,26731,26734 ,15470,15420,15423 ,0,0,0}, - {26686,26778,26734 ,15375,15470,15423 ,0,0,0}, {26779,26780,26781 ,15471,15472,15473 ,0,0,0}, - {26734,26731,26733 ,15423,15420,15422 ,0,0,0}, {26732,26780,26735 ,15421,15472,15424 ,0,0,0}, - {26733,26732,26735 ,15422,15421,15424 ,0,0,0}, {26780,26782,26736 ,15472,15474,15425 ,0,0,0}, - {26736,26735,26780 ,15425,15424,15472 ,0,0,0}, {26782,26783,26737 ,15474,15475,15426 ,0,0,0}, - {26737,26736,26782 ,15426,15425,15474 ,0,0,0}, {26783,26784,26738 ,15475,15476,15427 ,0,0,0}, - {26738,26737,26783 ,15427,15426,15475 ,0,0,0}, {26784,26785,26739 ,15476,15477,15428 ,0,0,0}, - {26739,26738,26784 ,15428,15427,15476 ,0,0,0}, {26785,26786,26694 ,15477,15478,15383 ,0,0,0}, - {26694,26739,26785 ,15383,15428,15477 ,0,0,0}, {26786,26787,26740 ,15478,15479,15429 ,0,0,0}, - {26740,26694,26786 ,15429,15383,15478 ,0,0,0}, {26787,26741,26744 ,15479,15430,15433 ,0,0,0}, - {26740,26787,26744 ,15429,15479,15433 ,0,0,0}, {26745,26742,26788 ,15434,15431,15480 ,0,0,0}, - {26744,26741,26743 ,15433,15430,15432 ,0,0,0}, {26520,26513,26515 ,15201,15194,15196 ,0,0,0}, - {26743,26742,26745 ,15432,15431,15434 ,0,0,0}, {26519,26746,26513 ,15200,15435,15194 ,0,0,0}, - {26745,26788,26515 ,15434,15480,15196 ,0,0,0}, {26527,26521,26789 ,15208,15202,15481 ,0,0,0}, - {26788,26520,26515 ,15480,15201,15196 ,0,0,0}, {26519,26790,26791 ,15200,15482,15483 ,0,0,0}, - {26523,26747,26700 ,15204,15436,15389 ,0,0,0}, {26699,26513,26746 ,15388,15194,15435 ,0,0,0}, - {26523,26746,26791 ,15204,15435,15483 ,0,0,0}, {26522,26747,26523 ,15203,15436,15204 ,0,0,0}, - {26468,26470,26704 ,15111,15115,15393 ,0,0,0}, {26136,26138,26459 ,15438,15099,15102 ,0,0,0}, - {26749,26459,26464 ,15439,15102,15107 ,0,0,0}, {26704,26749,26703 ,15393,15439,15392 ,0,0,0}, - {26463,26749,26464 ,15106,15439,15107 ,0,0,0}, {26462,26752,26750 ,15105,15442,15440 ,0,0,0}, - {26750,26463,26462 ,15440,15106,15105 ,0,0,0}, {26752,26792,26751 ,15442,15484,15441 ,0,0,0}, - {26793,26753,26792 ,15485,15443,15484 ,0,0,0}, {26706,26750,26751 ,15395,15440,15441 ,0,0,0}, - {26753,26751,26792 ,15443,15441,15484 ,0,0,0}, {26794,26754,26793 ,15486,15444,15485 ,0,0,0}, - {26754,26753,26793 ,15444,15443,15485 ,0,0,0}, {26795,26755,26794 ,15487,15445,15486 ,0,0,0}, - {26755,26754,26794 ,15445,15444,15486 ,0,0,0}, {26796,26756,26795 ,15488,15446,15487 ,0,0,0}, - {26756,26755,26795 ,15446,15445,15487 ,0,0,0}, {26797,26757,26796 ,15489,15447,15488 ,0,0,0}, - {26757,26756,26796 ,15447,15446,15488 ,0,0,0}, {26798,26758,26797 ,15490,15448,15489 ,0,0,0}, - {26758,26757,26797 ,15448,15447,15489 ,0,0,0}, {26799,26712,26798 ,15491,15401,15490 ,0,0,0}, - {26712,26758,26798 ,15401,15448,15490 ,0,0,0}, {26800,26713,26799 ,15492,15402,15491 ,0,0,0}, - {26713,26712,26799 ,15402,15401,15491 ,0,0,0}, {26760,26761,26800 ,15451,15452,15492 ,0,0,0}, - {26713,26800,26761 ,15402,15492,15452 ,0,0,0}, {26760,26759,26762 ,15451,15450,15453 ,0,0,0}, - {26801,26763,26759 ,15493,15454,15450 ,0,0,0}, {26717,26761,26762 ,15406,15452,15453 ,0,0,0}, - {26763,26762,26759 ,15454,15453,15450 ,0,0,0}, {26802,26764,26801 ,15494,15455,15493 ,0,0,0}, - {26764,26763,26801 ,15455,15454,15493 ,0,0,0}, {26803,26765,26802 ,15495,15456,15494 ,0,0,0}, - {26765,26764,26802 ,15456,15455,15494 ,0,0,0}, {26804,26670,26803 ,15496,15359,15495 ,0,0,0}, - {26670,26765,26803 ,15359,15456,15495 ,0,0,0}, {26768,26668,26804 ,15459,15357,15496 ,0,0,0}, - {26668,26670,26804 ,15357,15359,15496 ,0,0,0}, {26768,25087,26766 ,15459,15497,15457 ,0,0,0}, - {26668,26768,26767 ,15357,15459,15458 ,0,0,0}, {26805,26769,26766 ,15498,15460,15457 ,0,0,0}, - {26769,26767,26766 ,15460,15458,15457 ,0,0,0}, {26806,26770,26805 ,15499,15461,15498 ,0,0,0}, - {26770,26769,26805 ,15461,15460,15498 ,0,0,0}, {26807,26771,26806 ,15500,15462,15499 ,0,0,0}, - {26771,26770,26806 ,15462,15461,15499 ,0,0,0}, {26808,26678,26807 ,15501,15367,15500 ,0,0,0}, - {26678,26771,26807 ,15367,15462,15500 ,0,0,0}, {26809,26676,26808 ,15502,15365,15501 ,0,0,0}, - {26676,26678,26808 ,15365,15367,15501 ,0,0,0}, {26772,26774,26809 ,15463,15466,15502 ,0,0,0}, - {26676,26809,26774 ,15365,15502,15466 ,0,0,0}, {26772,26773,26775 ,15463,15465,15467 ,0,0,0}, - {26810,26776,26773 ,15503,15468,15465 ,0,0,0}, {26728,26774,26775 ,15417,15466,15467 ,0,0,0}, - {26776,26775,26773 ,15468,15467,15465 ,0,0,0}, {26811,26777,26810 ,15504,15469,15503 ,0,0,0}, - {26777,26776,26810 ,15469,15468,15503 ,0,0,0}, {26812,26778,26811 ,15505,15470,15504 ,0,0,0}, - {26778,26777,26811 ,15470,15469,15504 ,0,0,0}, {26813,26731,26812 ,15506,15420,15505 ,0,0,0}, - {26731,26778,26812 ,15420,15470,15505 ,0,0,0}, {26781,26732,26813 ,15473,15421,15506 ,0,0,0}, - {26732,26731,26813 ,15421,15420,15506 ,0,0,0}, {26781,25109,26779 ,15473,15507,15471 ,0,0,0}, - {26732,26781,26780 ,15421,15473,15472 ,0,0,0}, {26814,26782,26779 ,15508,15474,15471 ,0,0,0}, - {26782,26780,26779 ,15474,15472,15471 ,0,0,0}, {26815,26783,26814 ,15509,15475,15508 ,0,0,0}, - {26783,26782,26814 ,15475,15474,15508 ,0,0,0}, {26816,26784,26815 ,15510,15476,15509 ,0,0,0}, - {26784,26783,26815 ,15476,15475,15509 ,0,0,0}, {26817,26785,26816 ,15511,15477,15510 ,0,0,0}, - {26785,26784,26816 ,15477,15476,15510 ,0,0,0}, {26818,26786,26817 ,15512,15478,15511 ,0,0,0}, - {26786,26785,26817 ,15478,15477,15511 ,0,0,0}, {26819,26787,26818 ,15513,15479,15512 ,0,0,0}, - {26787,26786,26818 ,15479,15478,15512 ,0,0,0}, {26820,26741,26819 ,15514,15430,15513 ,0,0,0}, - {26741,26787,26819 ,15430,15479,15513 ,0,0,0}, {26821,26742,26820 ,15515,15431,15514 ,0,0,0}, - {26742,26741,26820 ,15431,15430,15514 ,0,0,0}, {26822,26788,26821 ,15516,15480,15515 ,0,0,0}, - {26788,26742,26821 ,15480,15431,15515 ,0,0,0}, {26823,26520,26822 ,15517,15201,15516 ,0,0,0}, - {26520,26788,26822 ,15201,15480,15516 ,0,0,0}, {26823,26790,26519 ,15517,15482,15200 ,0,0,0}, - {26519,26520,26823 ,15200,15201,15517 ,0,0,0}, {26790,26789,26791 ,15482,15481,15483 ,0,0,0}, - {26523,26791,26521 ,15204,15483,15202 ,0,0,0}, {26746,26519,26791 ,15435,15200,15483 ,0,0,0}, - {26789,26521,26791 ,15481,15202,15483 ,0,0,0}, {26522,26521,26528 ,15203,15202,15209 ,0,0,0}, - {26749,26470,26459 ,15439,15115,15102 ,0,0,0}, {26459,26470,26136 ,15102,15115,15438 ,0,0,0}, - {25191,25187,26464 ,15302,15518,15107 ,0,0,0}, {26464,25187,26462 ,15107,15518,15105 ,0,0,0}, - {25187,25186,26462 ,15518,15519,15105 ,0,0,0}, {26462,25186,26752 ,15105,15519,15442 ,0,0,0}, - {25186,25185,26752 ,15519,15520,15442 ,0,0,0}, {26752,25185,26792 ,15442,15520,15484 ,0,0,0}, - {25185,25048,26792 ,15520,15521,15484 ,0,0,0}, {26792,25048,26793 ,15484,15521,15485 ,0,0,0}, - {25048,25038,26793 ,15521,15522,15485 ,0,0,0}, {26793,25038,26794 ,15485,15522,15486 ,0,0,0}, - {25038,25071,26794 ,15522,15523,15486 ,0,0,0}, {26794,25071,26795 ,15486,15523,15487 ,0,0,0}, - {25071,25068,26795 ,15523,15524,15487 ,0,0,0}, {26795,25068,26796 ,15487,15524,15488 ,0,0,0}, - {25068,25073,26796 ,15524,15525,15488 ,0,0,0}, {25073,25076,26797 ,15525,15526,15489 ,0,0,0}, - {25073,26797,26796 ,15525,15489,15488 ,0,0,0}, {25076,25043,26798 ,15526,15527,15490 ,0,0,0}, - {25076,26798,26797 ,15526,15490,15489 ,0,0,0}, {25043,25042,26799 ,15527,15528,15491 ,0,0,0}, - {25043,26799,26798 ,15527,15491,15490 ,0,0,0}, {25042,25078,26800 ,15528,15529,15492 ,0,0,0}, - {25042,26800,26799 ,15528,15492,15491 ,0,0,0}, {25078,25180,26760 ,15529,15530,15451 ,0,0,0}, - {25078,26760,26800 ,15529,15451,15492 ,0,0,0}, {25179,26760,25180 ,15449,15451,15530 ,0,0,0}, - {25179,25081,26759 ,15449,15531,15450 ,0,0,0}, {26759,25081,26801 ,15450,15531,15493 ,0,0,0}, - {25081,25086,26801 ,15531,15532,15493 ,0,0,0}, {26801,25086,26802 ,15493,15532,15494 ,0,0,0}, - {25086,25084,26802 ,15532,15533,15494 ,0,0,0}, {25084,25083,26803 ,15533,15534,15495 ,0,0,0}, - {25084,26803,26802 ,15533,15495,15494 ,0,0,0}, {25083,25178,26804 ,15534,15535,15496 ,0,0,0}, - {25083,26804,26803 ,15534,15496,15495 ,0,0,0}, {25178,25087,26768 ,15535,15497,15459 ,0,0,0}, - {25178,26768,26804 ,15535,15459,15496 ,0,0,0}, {25087,25177,26766 ,15497,15536,15457 ,0,0,0}, - {25177,25173,26766 ,15536,15537,15457 ,0,0,0}, {26766,25173,26805 ,15457,15537,15498 ,0,0,0}, - {25173,25091,26805 ,15537,15538,15498 ,0,0,0}, {26805,25091,26806 ,15498,15538,15499 ,0,0,0}, - {25091,25093,26806 ,15538,15539,15499 ,0,0,0}, {25093,25098,26807 ,15539,15540,15500 ,0,0,0}, - {25093,26807,26806 ,15539,15500,15499 ,0,0,0}, {25098,25096,26808 ,15540,15541,15501 ,0,0,0}, - {25098,26808,26807 ,15540,15501,15500 ,0,0,0}, {25096,25095,26809 ,15541,15542,15502 ,0,0,0}, - {25096,26809,26808 ,15541,15502,15501 ,0,0,0}, {25095,25171,26772 ,15542,15543,15463 ,0,0,0}, - {25095,26772,26809 ,15542,15463,15502 ,0,0,0}, {25170,26772,25171 ,15464,15463,15543 ,0,0,0}, - {25170,25100,26773 ,15464,15544,15465 ,0,0,0}, {26773,25100,26810 ,15465,15544,15503 ,0,0,0}, - {25100,25107,26810 ,15544,15545,15503 ,0,0,0}, {25107,25106,26811 ,15545,15546,15504 ,0,0,0}, - {25107,26811,26810 ,15545,15504,15503 ,0,0,0}, {25106,25105,26812 ,15546,15547,15505 ,0,0,0}, - {25106,26812,26811 ,15546,15505,15504 ,0,0,0}, {25105,25167,26813 ,15547,15548,15506 ,0,0,0}, - {25105,26813,26812 ,15547,15506,15505 ,0,0,0}, {25167,25109,26781 ,15548,15507,15473 ,0,0,0}, - {25167,26781,26813 ,15548,15473,15506 ,0,0,0}, {25109,25108,26779 ,15507,15549,15471 ,0,0,0}, - {25108,25114,26779 ,15549,15550,15471 ,0,0,0}, {26779,25114,26814 ,15471,15550,15508 ,0,0,0}, - {25114,25113,26814 ,15550,15551,15508 ,0,0,0}, {26814,25113,26815 ,15508,15551,15509 ,0,0,0}, - {25113,25118,26815 ,15551,15552,15509 ,0,0,0}, {26815,25118,26816 ,15509,15552,15510 ,0,0,0}, - {25118,25116,26816 ,15552,15553,15510 ,0,0,0}, {25116,25124,26817 ,15553,15554,15511 ,0,0,0}, - {25116,26817,26816 ,15553,15511,15510 ,0,0,0}, {25124,25120,26818 ,15554,15555,15512 ,0,0,0}, - {25124,26818,26817 ,15554,15512,15511 ,0,0,0}, {25120,25122,26819 ,15555,15556,15513 ,0,0,0}, - {25120,26819,26818 ,15555,15513,15512 ,0,0,0}, {25122,25125,26820 ,15556,15557,15514 ,0,0,0}, - {25122,26820,26819 ,15556,15514,15513 ,0,0,0}, {25125,25127,26821 ,15557,15558,15515 ,0,0,0}, - {25125,26821,26820 ,15557,15515,15514 ,0,0,0}, {25127,25132,26822 ,15558,15559,15516 ,0,0,0}, - {25127,26822,26821 ,15558,15516,15515 ,0,0,0}, {25132,25138,26823 ,15559,15560,15517 ,0,0,0}, - {25132,26823,26822 ,15559,15517,15516 ,0,0,0}, {25138,25139,26790 ,15560,15561,15482 ,0,0,0}, - {25138,26790,26823 ,15560,15482,15517 ,0,0,0}, {25139,25137,26789 ,15561,15562,15481 ,0,0,0}, - {25139,26789,26790 ,15561,15481,15482 ,0,0,0}, {25137,25131,26527 ,15562,15563,15208 ,0,0,0}, - {25137,26527,26789 ,15562,15208,15481 ,0,0,0}, {26527,25131,25130 ,15208,15563,13637 ,0,0,0}, - {26360,26066,26087 ,15564,15564,15564 ,0,0,0}, {25696,26083,25692 ,15564,15564,15564 ,0,0,0}, - {26082,26087,26148 ,15564,15564,15564 ,0,0,0}, {26360,26087,26067 ,15564,15564,15564 ,0,0,0}, - {26082,26148,26225 ,15564,15564,15564 ,0,0,0}, {26067,26082,25697 ,15564,15564,15564 ,0,0,0}, - {26087,26082,26067 ,15564,15564,15564 ,0,0,0}, {25557,25692,26083 ,15564,15564,15564 ,0,0,0}, - {25696,26080,26077 ,15564,15564,15564 ,0,0,0}, {25563,25572,25907 ,15564,15564,15564 ,0,0,0}, - {25698,25557,26083 ,15564,15564,15564 ,0,0,0}, {25699,25698,25563 ,15564,15564,15564 ,0,0,0}, - {25698,25699,25688 ,15564,15564,15564 ,0,0,0}, {25570,25563,25907 ,15564,15564,15564 ,0,0,0}, - {25571,25572,25698 ,15564,15564,15564 ,0,0,0}, {25572,25563,25698 ,15564,15564,15564 ,0,0,0}, - {26085,25698,26083 ,15564,15564,15564 ,0,0,0}, {26085,25571,25698 ,15564,15564,15564 ,0,0,0}, - {26083,25696,26077 ,15564,15564,15564 ,0,0,0}, {26080,25696,26082 ,15564,15564,15564 ,0,0,0}, - {25697,26082,25695 ,15564,15564,15564 ,0,0,0}, {25696,25695,26082 ,15564,15564,15564 ,0,0,0}, - {26747,26522,26528 ,15565,15565,15565 ,0,0,0}, {26576,26613,25326 ,15565,15565,15565 ,0,0,0}, - {26532,26748,26528 ,15565,15565,15565 ,0,0,0}, {26652,26702,25242 ,15565,15565,15565 ,0,0,0}, - {26701,26748,26702 ,15565,15565,15565 ,0,0,0}, {26748,26532,25130 ,15565,15565,15565 ,0,0,0}, - {26747,26528,26748 ,15565,15565,15565 ,0,0,0}, {25242,26702,26748 ,15565,15565,15565 ,0,0,0}, - {26748,25130,25242 ,15565,15565,15565 ,0,0,0}, {25241,26652,25242 ,15565,15565,15565 ,0,0,0}, - {25241,25284,26652 ,15565,15565,15565 ,0,0,0}, {26613,26652,25326 ,15565,15565,15565 ,0,0,0}, - {25284,25326,26652 ,15565,15565,15565 ,0,0,0}, {26577,26576,25326 ,15565,15565,15565 ,0,0,0}, - {25370,25412,25371 ,15565,15565,15565 ,0,0,0}, {25371,26577,25326 ,15565,15565,15565 ,0,0,0}, - {26577,25371,25412 ,15565,15565,15565 ,0,0,0}, {25163,25411,25158 ,15565,15565,15565 ,0,0,0}, - {26577,25412,25164 ,15565,15565,15565 ,0,0,0}, {25412,25163,25162 ,15565,15565,15565 ,0,0,0}, - {25163,25412,25411 ,15565,15565,15565 ,0,0,0}, {25412,25162,25164 ,15565,15565,15565 ,0,0,0} -// Landegestell.prt - , {26824,26825,26826 ,15055,15013,15566 ,0,0,0}, {26827,26828,26829 ,15567,15049,15050 ,0,0,0}, - {26830,26831,26832 ,15568,15569,15570 ,0,0,0}, {26833,26825,26834 ,15571,15013,15572 ,0,0,0}, - {26835,26832,26836 ,15573,15570,15574 ,0,0,0}, {26837,26838,26839 ,15575,15576,15015 ,0,0,0}, - {26840,26841,26842 ,15577,15578,14934 ,0,0,0}, {26843,26836,26831 ,15579,15574,15569 ,0,0,0}, - {26844,26845,26846 ,15580,15581,15582 ,0,0,0}, {26840,26847,26846 ,15577,15583,15582 ,0,0,0}, - {26848,26849,26850 ,15584,15585,15586 ,0,0,0}, {26850,26849,26845 ,15586,15585,15581 ,0,0,0}, - {26851,26850,26852 ,15587,15586,15588 ,0,0,0}, {26834,26825,26824 ,15572,15013,15055 ,0,0,0}, - {26852,26853,26851 ,15588,15589,15587 ,0,0,0}, {26854,26855,26856 ,15590,15591,15592 ,0,0,0}, - {26826,26857,26824 ,15566,15593,15055 ,0,0,0}, {26858,26859,26856 ,15594,15595,15592 ,0,0,0}, - {26860,26861,26858 ,15596,15597,15594 ,0,0,0}, {26861,26862,26858 ,15597,15598,15594 ,0,0,0}, - {26856,26859,26854 ,15592,15595,15590 ,0,0,0}, {26863,26864,26828 ,15599,15600,15049 ,0,0,0}, - {26865,26866,26867 ,15601,15602,15603 ,0,0,0}, {26863,26868,26864 ,15599,15604,15600 ,0,0,0}, - {26869,26870,26871 ,15043,15044,15605 ,0,0,0}, {26866,26872,26867 ,15602,15606,15603 ,0,0,0}, - {26873,26874,26875 ,15607,14962,14960 ,0,0,0}, {26869,26871,26876 ,15043,15605,15608 ,0,0,0}, - {26877,26878,26879 ,15039,15609,15610 ,0,0,0}, {26878,26877,26880 ,15609,15039,15611 ,0,0,0}, - {26881,26882,26883 ,15035,15612,15613 ,0,0,0}, {26884,26885,26882 ,15614,15615,15612 ,0,0,0}, - {26886,26887,26888 ,15033,14956,15616 ,0,0,0}, {26881,26883,26889 ,15035,15613,14954 ,0,0,0}, - {26890,26891,26892 ,15617,15030,15031 ,0,0,0}, {26886,26888,26893 ,15033,15616,15032 ,0,0,0}, - {26894,26895,26896 ,15618,15619,14948 ,0,0,0}, {26897,26891,26890 ,15620,15030,15617 ,0,0,0}, - {26898,26899,26900 ,15621,15622,15027 ,0,0,0}, {26900,26896,26898 ,15027,14948,15621 ,0,0,0}, - {26901,26902,26903 ,15623,15624,14988 ,0,0,0}, {26904,26899,26905 ,15025,15622,14989 ,0,0,0}, - {26906,26907,26908 ,15625,15626,15627 ,0,0,0}, {26909,26906,26910 ,15628,15625,15629 ,0,0,0}, - {26911,26912,26913 ,15630,15631,15019 ,0,0,0}, {26914,26911,26908 ,15632,15630,15627 ,0,0,0}, - {26915,26916,26917 ,15633,15634,15635 ,0,0,0}, {26918,26913,26919 ,15018,15019,15636 ,0,0,0}, - {26920,26921,26922 ,14607,15637,15638 ,0,0,0}, {26917,26923,26915 ,15635,15639,15633 ,0,0,0}, - {26924,26920,26925 ,15017,14607,15640 ,0,0,0}, {26915,26923,26926 ,15633,15639,15641 ,0,0,0}, - {26927,26924,26918 ,15642,15017,15018 ,0,0,0}, {26920,26924,26927 ,14607,15017,15642 ,0,0,0}, - {26928,26929,26930 ,15643,15644,15645 ,0,0,0}, {26931,26914,26932 ,15646,15632,15647 ,0,0,0}, - {26933,26934,26935 ,14890,15648,15649 ,0,0,0}, {26931,26932,26936 ,15646,15647,15650 ,0,0,0}, - {26937,26938,26939 ,15651,15652,15653 ,0,0,0}, {26935,26940,26941 ,15649,15654,15655 ,0,0,0}, - {26942,26943,26939 ,15656,15657,15653 ,0,0,0}, {26944,26945,26946 ,15658,15659,15660 ,0,0,0}, - {26947,26948,26949 ,15661,15662,15663 ,0,0,0}, {26949,26946,26947 ,15663,15660,15661 ,0,0,0}, - {26948,26947,26950 ,15662,15661,15664 ,0,0,0}, {26919,26913,26912 ,15636,15019,15631 ,0,0,0}, - {26920,26926,26925 ,14607,15641,15640 ,0,0,0}, {26914,26908,26907 ,15632,15627,15626 ,0,0,0}, - {26914,26912,26911 ,15632,15631,15630 ,0,0,0}, {26909,26910,26901 ,15628,15629,15623 ,0,0,0}, - {26906,26909,26907 ,15625,15628,15626 ,0,0,0}, {26903,26902,26904 ,14988,15624,15025 ,0,0,0}, - {26910,26902,26901 ,15629,15624,15623 ,0,0,0}, {26903,26904,26905 ,14988,15025,14989 ,0,0,0}, - {26951,26909,26901 ,15665,15628,15623 ,0,0,0}, {26900,26894,26896 ,15027,15618,14948 ,0,0,0}, - {26899,26898,26905 ,15622,15621,14989 ,0,0,0}, {26890,26892,26952 ,15617,15031,15666 ,0,0,0}, - {26953,26897,26954 ,15667,15620,15668 ,0,0,0}, {26896,26895,26954 ,14948,15619,15668 ,0,0,0}, - {26891,26897,26953 ,15030,15620,15667 ,0,0,0}, {26895,26953,26954 ,15619,15667,15668 ,0,0,0}, - {26952,26892,26893 ,15666,15031,15032 ,0,0,0}, {26955,26890,26952 ,15669,15617,15666 ,0,0,0}, - {26893,26888,26952 ,15032,15616,15666 ,0,0,0}, {26889,26887,26956 ,14954,14956,14995 ,0,0,0}, - {26886,26956,26887 ,15033,14995,14956 ,0,0,0}, {26957,26889,26956 ,15670,14954,14995 ,0,0,0}, - {26885,26883,26882 ,15615,15613,15612 ,0,0,0}, {26881,26889,26957 ,15035,14954,15670 ,0,0,0}, - {26884,26958,26885 ,15614,14998,15615 ,0,0,0}, {26879,26878,26958 ,15610,15609,14998 ,0,0,0}, - {26958,26884,26879 ,14998,15614,15610 ,0,0,0}, {26880,26959,26875 ,15611,15040,14960 ,0,0,0}, - {26960,26961,26962 ,15671,15672,15673 ,0,0,0}, {26875,26959,26963 ,14960,15040,15674 ,0,0,0}, - {26959,26880,26877 ,15040,15611,15039 ,0,0,0}, {26964,26876,26874 ,15675,15608,14962 ,0,0,0}, - {26873,26875,26963 ,15607,14960,15674 ,0,0,0}, {26876,26964,26869 ,15608,15675,15043 ,0,0,0}, - {26964,26874,26873 ,15675,14962,15607 ,0,0,0}, {26868,26965,26966 ,15604,15005,15676 ,0,0,0}, - {26870,26872,26967 ,15044,15606,15677 ,0,0,0}, {26871,26870,26967 ,15605,15044,15677 ,0,0,0}, - {26967,26872,26866 ,15677,15606,15602 ,0,0,0}, {26968,26969,26970 ,15678,15679,15680 ,0,0,0}, - {26965,26865,26867 ,15005,15601,15603 ,0,0,0}, {26857,26826,26855 ,15593,15566,15591 ,0,0,0}, - {26868,26865,26965 ,15604,15601,15005 ,0,0,0}, {26868,26966,26864 ,15604,15676,15600 ,0,0,0}, - {26828,26827,26863 ,15049,15567,15599 ,0,0,0}, {26862,26861,26829 ,15598,15597,15050 ,0,0,0}, - {26829,26861,26827 ,15050,15597,15567 ,0,0,0}, {26854,26857,26855 ,15590,15593,15591 ,0,0,0}, - {26862,26859,26858 ,15598,15595,15594 ,0,0,0}, {26839,26971,26972 ,15015,15681,15682 ,0,0,0}, - {26833,26834,26971 ,15571,15572,15681 ,0,0,0}, {26972,26837,26839 ,15682,15575,15015 ,0,0,0}, - {26833,26971,26839 ,15571,15681,15015 ,0,0,0}, {26972,26973,26837 ,15682,15683,15575 ,0,0,0}, - {26974,26975,26841 ,15684,15685,15578 ,0,0,0}, {26837,26973,26976 ,15575,15683,15686 ,0,0,0}, - {26976,26973,26977 ,15686,15683,15687 ,0,0,0}, {26978,26976,26979 ,15688,15686,15689 ,0,0,0}, - {26977,26979,26976 ,15687,15689,15686 ,0,0,0}, {26842,26980,26840 ,14934,14795,15577 ,0,0,0}, - {26981,26978,26979 ,15690,15688,15689 ,0,0,0}, {26982,26981,26979 ,15691,15690,15689 ,0,0,0}, - {26978,26981,26983 ,15688,15690,15692 ,0,0,0}, {26984,26985,26983 ,15693,15694,15692 ,0,0,0}, - {26975,26974,26986 ,15685,15684,15695 ,0,0,0}, {26983,26985,26978 ,15692,15694,15688 ,0,0,0}, - {26984,26974,26985 ,15693,15684,15694 ,0,0,0}, {26978,26987,26976 ,15688,15696,15686 ,0,0,0}, - {26988,26833,26839 ,15697,15571,15015 ,0,0,0}, {26976,26830,26837 ,15686,15568,15575 ,0,0,0}, - {26989,26825,26833 ,15698,15013,15571 ,0,0,0}, {26838,26837,26830 ,15576,15575,15568 ,0,0,0}, - {26990,26826,26825 ,15699,15566,15013 ,0,0,0}, {26988,26839,26838 ,15697,15015,15576 ,0,0,0}, - {26991,26855,26826 ,15700,15591,15566 ,0,0,0}, {26989,26833,26988 ,15698,15571,15697 ,0,0,0}, - {26992,26856,26855 ,15701,15592,15591 ,0,0,0}, {26990,26825,26989 ,15699,15013,15698 ,0,0,0}, - {26993,26858,26856 ,15702,15594,15592 ,0,0,0}, {26826,26990,26991 ,15566,15699,15700 ,0,0,0}, - {26994,26995,26996 ,15703,15704,14972 ,0,0,0}, {26855,26991,26992 ,15591,15700,15701 ,0,0,0}, - {26996,26827,26861 ,14972,15567,15597 ,0,0,0}, {26856,26992,26993 ,15592,15701,15702 ,0,0,0}, - {26997,26863,26827 ,15705,15599,15567 ,0,0,0}, {26858,26993,26860 ,15594,15702,15596 ,0,0,0}, - {26998,26868,26863 ,15706,15604,15599 ,0,0,0}, {26861,26860,26996 ,15597,15596,14972 ,0,0,0}, - {26999,26865,26868 ,15707,15601,15604 ,0,0,0}, {26827,26996,26997 ,15567,14972,15705 ,0,0,0}, - {27000,26866,26865 ,15708,15602,15601 ,0,0,0}, {26998,26863,26997 ,15706,15599,15705 ,0,0,0}, - {27001,26967,26866 ,15709,15677,15602 ,0,0,0}, {26999,26868,26998 ,15707,15604,15706 ,0,0,0}, - {27002,26871,26967 ,15710,15605,15677 ,0,0,0}, {26865,26999,27000 ,15601,15707,15708 ,0,0,0}, - {26969,26876,26871 ,15679,15608,15605 ,0,0,0}, {26866,27000,27001 ,15602,15708,15709 ,0,0,0}, - {27003,26874,26876 ,15711,14962,15608 ,0,0,0}, {26967,27001,27002 ,15677,15709,15710 ,0,0,0}, - {27004,26875,26874 ,15712,14960,14962 ,0,0,0}, {26871,27002,26969 ,15605,15710,15679 ,0,0,0}, - {27005,26880,26875 ,15713,15611,14960 ,0,0,0}, {27003,26876,26969 ,15711,15608,15679 ,0,0,0}, - {27006,26878,26880 ,15714,15609,15611 ,0,0,0}, {27004,26874,27003 ,15712,14962,15711 ,0,0,0}, - {27007,26958,26878 ,15715,14998,15609 ,0,0,0}, {26875,27004,27005 ,14960,15712,15713 ,0,0,0}, - {26885,26958,26960 ,15615,14998,15671 ,0,0,0}, {26880,27005,27006 ,15611,15713,15714 ,0,0,0}, - {27008,26883,26885 ,15716,15613,15615 ,0,0,0}, {26878,27006,27007 ,15609,15714,15715 ,0,0,0}, - {27009,26889,26883 ,14955,14954,15613 ,0,0,0}, {26958,27007,26960 ,14998,15715,15671 ,0,0,0}, - {27010,26887,26889 ,15717,14956,14954 ,0,0,0}, {27008,26885,26960 ,15716,15615,15671 ,0,0,0}, - {27011,26888,26887 ,15718,15616,14956 ,0,0,0}, {27009,26883,27008 ,14955,15613,15716 ,0,0,0}, - {27012,26952,26888 ,15719,15666,15616 ,0,0,0}, {26889,27009,27010 ,14954,14955,15717 ,0,0,0}, - {27013,27014,27015 ,14854,15720,15721 ,0,0,0}, {26887,27010,27011 ,14956,15717,15718 ,0,0,0}, - {27016,26897,26890 ,15722,15620,15617 ,0,0,0}, {26888,27011,27012 ,15616,15718,15719 ,0,0,0}, - {27017,26954,26897 ,15723,15668,15620 ,0,0,0}, {26952,27012,26955 ,15666,15719,15669 ,0,0,0}, - {27018,26896,26954 ,15724,14948,15668 ,0,0,0}, {26890,26955,27016 ,15617,15669,15722 ,0,0,0}, - {27019,26898,26896 ,15725,15621,14948 ,0,0,0}, {27017,26897,27016 ,15723,15620,15722 ,0,0,0}, - {27020,26905,26898 ,15726,14989,15621 ,0,0,0}, {27018,26954,27017 ,15724,15668,15723 ,0,0,0}, - {27021,26903,26905 ,15727,14988,14989 ,0,0,0}, {27019,26896,27018 ,15725,14948,15724 ,0,0,0}, - {27022,26901,26903 ,15728,15623,14988 ,0,0,0}, {26898,27019,27020 ,15621,15725,15726 ,0,0,0}, - {26909,27023,26907 ,15628,15729,15626 ,0,0,0}, {26905,27020,27021 ,14989,15726,15727 ,0,0,0}, - {26932,27024,26936 ,15647,15730,15650 ,0,0,0}, {26903,27021,27022 ,14988,15727,15728 ,0,0,0}, - {26932,26914,26907 ,15647,15632,15626 ,0,0,0}, {26901,27022,26951 ,15623,15728,15665 ,0,0,0}, - {26931,26912,26914 ,15646,15631,15632 ,0,0,0}, {26909,26951,27023 ,15628,15665,15729 ,0,0,0}, - {26919,26912,27025 ,15636,15631,15731 ,0,0,0}, {27023,26932,26907 ,15729,15647,15626 ,0,0,0}, - {26934,26921,26927 ,15648,15637,15642 ,0,0,0}, {26921,26934,26933 ,15637,15648,14890 ,0,0,0}, - {26919,26927,26918 ,15636,15642,15018 ,0,0,0}, {26912,26931,27025 ,15631,15646,15731 ,0,0,0}, - {26915,26926,27026 ,15633,15641,15732 ,0,0,0}, {26919,26934,26927 ,15636,15648,15642 ,0,0,0}, - {26920,26927,26921 ,14607,15642,15637 ,0,0,0}, {27027,27028,26915 ,15733,15734,15633 ,0,0,0}, - {26925,26926,26923 ,15640,15641,15639 ,0,0,0}, {26922,27026,26926 ,15638,15732,15641 ,0,0,0}, - {26916,26915,27028 ,15634,15633,15734 ,0,0,0}, {26985,26987,26978 ,15694,15696,15688 ,0,0,0}, - {26986,26974,26984 ,15695,15684,15693 ,0,0,0}, {26847,27029,26846 ,15583,15735,15582 ,0,0,0}, - {26987,26830,26976 ,15696,15568,15686 ,0,0,0}, {26985,27030,26987 ,15694,15736,15696 ,0,0,0}, - {26838,26832,27031 ,15576,15570,15737 ,0,0,0}, {26831,26830,26987 ,15569,15568,15696 ,0,0,0}, - {26988,27031,27032 ,15697,15737,15738 ,0,0,0}, {26832,26838,26830 ,15570,15576,15568 ,0,0,0}, - {26989,27032,27033 ,15698,15738,15739 ,0,0,0}, {27031,26988,26838 ,15737,15697,15576 ,0,0,0}, - {26990,27033,27034 ,15699,15739,14927 ,0,0,0}, {27032,26989,26988 ,15738,15698,15697 ,0,0,0}, - {26991,27034,27035 ,15700,14927,14883 ,0,0,0}, {27033,26990,26989 ,15739,15699,15698 ,0,0,0}, - {26992,27035,27036 ,15701,14883,15740 ,0,0,0}, {27034,26991,26990 ,14927,15700,15699 ,0,0,0}, - {26993,27036,27037 ,15702,15740,15741 ,0,0,0}, {27035,26992,26991 ,14883,15701,15700 ,0,0,0}, - {26860,27037,26994 ,15596,15741,15703 ,0,0,0}, {26993,26992,27036 ,15702,15701,15740 ,0,0,0}, - {27038,27039,27040 ,15742,14878,15743 ,0,0,0}, {26860,26993,27037 ,15596,15702,15741 ,0,0,0}, - {26997,26995,27038 ,15705,15704,15742 ,0,0,0}, {26996,26860,26994 ,14972,15596,15703 ,0,0,0}, - {26998,27038,27041 ,15706,15742,15744 ,0,0,0}, {26997,26996,26995 ,15705,14972,15704 ,0,0,0}, - {26999,27041,27042 ,15707,15744,15745 ,0,0,0}, {27038,26998,26997 ,15742,15706,15705 ,0,0,0}, - {27000,27042,27043 ,15708,15745,15746 ,0,0,0}, {27041,26999,26998 ,15744,15707,15706 ,0,0,0}, - {27001,27043,27044 ,15709,15746,15747 ,0,0,0}, {27042,27000,26999 ,15745,15708,15707 ,0,0,0}, - {27002,27044,26970 ,15710,15747,15680 ,0,0,0}, {27001,27000,27043 ,15709,15708,15746 ,0,0,0}, - {27045,27046,27047 ,15748,15749,15750 ,0,0,0}, {27002,27001,27044 ,15710,15709,15747 ,0,0,0}, - {27003,26968,27048 ,15711,15678,15751 ,0,0,0}, {26969,27002,26970 ,15679,15710,15680 ,0,0,0}, - {27004,27048,27049 ,15712,15751,15752 ,0,0,0}, {26968,27003,26969 ,15678,15711,15679 ,0,0,0}, - {27005,27049,27050 ,15713,15752,15753 ,0,0,0}, {27048,27004,27003 ,15751,15712,15711 ,0,0,0}, - {27006,27050,27051 ,15714,15753,15754 ,0,0,0}, {27049,27005,27004 ,15752,15713,15712 ,0,0,0}, - {27007,27051,26961 ,15715,15754,15672 ,0,0,0}, {27006,27005,27050 ,15714,15713,15753 ,0,0,0}, - {27052,27053,27054 ,15755,15756,15757 ,0,0,0}, {27007,27006,27051 ,15715,15714,15754 ,0,0,0}, - {27008,26962,27055 ,15716,15673,15758 ,0,0,0}, {26960,27007,26961 ,15671,15715,15672 ,0,0,0}, - {27009,27055,27056 ,14955,15758,15759 ,0,0,0}, {27008,26960,26962 ,15716,15671,15673 ,0,0,0}, - {27010,27056,27057 ,15717,15759,15760 ,0,0,0}, {27055,27009,27008 ,15758,14955,15716 ,0,0,0}, - {27011,27057,27058 ,15718,15760,15761 ,0,0,0}, {27056,27010,27009 ,15759,15717,14955 ,0,0,0}, - {27012,27058,27059 ,15719,15761,15762 ,0,0,0}, {27057,27011,27010 ,15760,15718,15717 ,0,0,0}, - {26955,27059,27060 ,15669,15762,15763 ,0,0,0}, {27012,27011,27058 ,15719,15718,15761 ,0,0,0}, - {27016,27060,27014 ,15722,15763,15720 ,0,0,0}, {26955,27012,27059 ,15669,15719,15762 ,0,0,0}, - {27017,27014,27061 ,15723,15720,15764 ,0,0,0}, {27016,26955,27060 ,15722,15669,15763 ,0,0,0}, - {27018,27061,27062 ,15724,15764,15765 ,0,0,0}, {27014,27017,27016 ,15720,15723,15722 ,0,0,0}, - {27019,27062,27063 ,15725,15765,15766 ,0,0,0}, {27061,27018,27017 ,15764,15724,15723 ,0,0,0}, - {27020,27063,27064 ,15726,15766,15767 ,0,0,0}, {27062,27019,27018 ,15765,15725,15724 ,0,0,0}, - {27021,27064,27065 ,15727,15767,15768 ,0,0,0}, {27063,27020,27019 ,15766,15726,15725 ,0,0,0}, - {27022,27065,27066 ,15728,15768,14897 ,0,0,0}, {27064,27021,27020 ,15767,15727,15726 ,0,0,0}, - {26951,27066,27067 ,15665,14897,15769 ,0,0,0}, {27065,27022,27021 ,15768,15728,15727 ,0,0,0}, - {27023,27067,27024 ,15729,15769,15730 ,0,0,0}, {26951,27022,27066 ,15665,15728,14897 ,0,0,0}, - {27068,26931,26936 ,15770,15646,15650 ,0,0,0}, {27023,26951,27067 ,15729,15665,15769 ,0,0,0}, - {26941,26937,27069 ,15655,15651,15771 ,0,0,0}, {26932,27023,27024 ,15647,15729,15730 ,0,0,0}, - {27068,26935,27025 ,15770,15649,15731 ,0,0,0}, {26928,26921,26933 ,15643,15637,14890 ,0,0,0}, - {27025,26934,26919 ,15731,15648,15636 ,0,0,0}, {27068,27025,26931 ,15770,15731,15646 ,0,0,0}, - {26941,26933,26935 ,15655,14890,15649 ,0,0,0}, {27025,26935,26934 ,15731,15649,15648 ,0,0,0}, - {27070,27026,26930 ,15772,15732,15645 ,0,0,0}, {27026,27027,26915 ,15732,15733,15633 ,0,0,0}, - {26920,26922,26926 ,14607,15638,15641 ,0,0,0}, {26922,26928,26930 ,15638,15643,15645 ,0,0,0}, - {27070,27027,27026 ,15772,15733,15732 ,0,0,0}, {26974,27030,26985 ,15684,15736,15694 ,0,0,0}, - {26842,26841,26975 ,14934,15578,15685 ,0,0,0}, {26845,26849,27071 ,15581,15585,15773 ,0,0,0}, - {27030,26831,26987 ,15736,15569,15696 ,0,0,0}, {26974,27072,27030 ,15684,14889,15736 ,0,0,0}, - {27073,27074,27075 ,15774,15775,15776 ,0,0,0}, {26843,26831,27030 ,15579,15569,15736 ,0,0,0}, - {26835,27073,27031 ,15573,15774,15737 ,0,0,0}, {26836,26832,26831 ,15574,15570,15569 ,0,0,0}, - {27073,27076,27032 ,15774,14885,15738 ,0,0,0}, {26835,27031,26832 ,15573,15737,15570 ,0,0,0}, - {27076,27077,27033 ,14885,15777,15739 ,0,0,0}, {27073,27032,27031 ,15774,15738,15737 ,0,0,0}, - {27077,27078,27034 ,15777,14882,14927 ,0,0,0}, {27076,27033,27032 ,14885,15739,15738 ,0,0,0}, - {27078,27079,27035 ,14882,15778,14883 ,0,0,0}, {27077,27034,27033 ,15777,14927,15739 ,0,0,0}, - {27079,27080,27036 ,15778,15779,15740 ,0,0,0}, {27078,27035,27034 ,14882,14883,14927 ,0,0,0}, - {27080,27081,27037 ,15779,15780,15741 ,0,0,0}, {27079,27036,27035 ,15778,15740,14883 ,0,0,0}, - {27081,27082,26994 ,15780,15781,15703 ,0,0,0}, {27080,27037,27036 ,15779,15741,15740 ,0,0,0}, - {27082,27039,26995 ,15781,14878,15704 ,0,0,0}, {26994,27037,27081 ,15703,15741,15780 ,0,0,0}, - {27083,27084,27085 ,15782,15783,15784 ,0,0,0}, {26995,26994,27082 ,15704,15703,15781 ,0,0,0}, - {27040,27083,27041 ,15743,15782,15744 ,0,0,0}, {27039,27038,26995 ,14878,15742,15704 ,0,0,0}, - {27083,27086,27042 ,15782,15785,15745 ,0,0,0}, {27040,27041,27038 ,15743,15744,15742 ,0,0,0}, - {27086,27087,27043 ,15785,15786,15746 ,0,0,0}, {27083,27042,27041 ,15782,15745,15744 ,0,0,0}, - {27087,27088,27044 ,15786,14781,15747 ,0,0,0}, {27086,27043,27042 ,15785,15746,15745 ,0,0,0}, - {27088,27089,26970 ,14781,15787,15680 ,0,0,0}, {27087,27044,27043 ,15786,15747,15746 ,0,0,0}, - {26968,27089,27090 ,15678,15787,15788 ,0,0,0}, {26970,27044,27088 ,15680,15747,14781 ,0,0,0}, - {27090,27045,27048 ,15788,15748,15751 ,0,0,0}, {27089,26968,26970 ,15787,15678,15680 ,0,0,0}, - {27045,27091,27049 ,15748,15789,15752 ,0,0,0}, {27090,27048,26968 ,15788,15751,15678 ,0,0,0}, - {27091,27092,27050 ,15789,14868,15753 ,0,0,0}, {27045,27049,27048 ,15748,15752,15751 ,0,0,0}, - {27092,27093,27051 ,14868,15790,15754 ,0,0,0}, {27091,27050,27049 ,15789,15753,15752 ,0,0,0}, - {27093,27094,26961 ,15790,15791,15672 ,0,0,0}, {27092,27051,27050 ,14868,15754,15753 ,0,0,0}, - {27094,27095,26962 ,15791,15792,15673 ,0,0,0}, {26961,27051,27093 ,15672,15754,15790 ,0,0,0}, - {27095,27052,27055 ,15792,15755,15758 ,0,0,0}, {26962,26961,27094 ,15673,15672,15791 ,0,0,0}, - {27052,27096,27056 ,15755,15793,15759 ,0,0,0}, {27095,27055,26962 ,15792,15758,15673 ,0,0,0}, - {27096,27097,27057 ,15793,15794,15760 ,0,0,0}, {27052,27056,27055 ,15755,15759,15758 ,0,0,0}, - {27097,27098,27058 ,15794,15795,15761 ,0,0,0}, {27096,27057,27056 ,15793,15760,15759 ,0,0,0}, - {27098,27099,27059 ,15795,15796,15762 ,0,0,0}, {27097,27058,27057 ,15794,15761,15760 ,0,0,0}, - {27099,27015,27060 ,15796,15721,15763 ,0,0,0}, {27059,27058,27098 ,15762,15761,15795 ,0,0,0}, - {27100,27101,27102 ,15797,15798,15799 ,0,0,0}, {27060,27059,27099 ,15763,15762,15796 ,0,0,0}, - {27013,27100,27061 ,14854,15797,15764 ,0,0,0}, {27015,27014,27060 ,15721,15720,15763 ,0,0,0}, - {27100,27103,27062 ,15797,15800,15765 ,0,0,0}, {27013,27061,27014 ,14854,15764,15720 ,0,0,0}, - {27103,27104,27063 ,15800,15801,15766 ,0,0,0}, {27100,27062,27061 ,15797,15765,15764 ,0,0,0}, - {27104,27105,27064 ,15801,15802,15767 ,0,0,0}, {27103,27063,27062 ,15800,15766,15765 ,0,0,0}, - {27105,27106,27065 ,15802,14848,15768 ,0,0,0}, {27104,27064,27063 ,15801,15767,15766 ,0,0,0}, - {27106,27107,27066 ,14848,15803,14897 ,0,0,0}, {27105,27065,27064 ,15802,15768,15767 ,0,0,0}, - {27107,27108,27067 ,15803,15804,15769 ,0,0,0}, {27106,27066,27065 ,14848,14897,15768 ,0,0,0}, - {27108,27109,27024 ,15804,15805,15730 ,0,0,0}, {27107,27067,27066 ,15803,15769,14897 ,0,0,0}, - {27109,27110,26936 ,15805,15806,15650 ,0,0,0}, {27108,27024,27067 ,15804,15730,15769 ,0,0,0}, - {27110,26940,27068 ,15806,15654,15770 ,0,0,0}, {26936,27024,27109 ,15650,15730,15805 ,0,0,0}, - {27111,26933,26941 ,15807,14890,15655 ,0,0,0}, {26936,27110,27068 ,15650,15806,15770 ,0,0,0}, - {26940,26937,26941 ,15654,15651,15655 ,0,0,0}, {27068,26940,26935 ,15770,15654,15649 ,0,0,0}, - {27112,26930,26929 ,15808,15645,15644 ,0,0,0}, {26922,26930,27026 ,15638,15645,15732 ,0,0,0}, - {26921,26928,26922 ,15637,15643,15638 ,0,0,0}, {27111,26929,26928 ,15807,15644,15643 ,0,0,0}, - {27070,26930,27112 ,15772,15645,15808 ,0,0,0}, {27072,26974,26841 ,14889,15684,15578 ,0,0,0}, - {26847,26840,26980 ,15583,15577,14795 ,0,0,0}, {26843,27113,27114 ,15579,15809,15810 ,0,0,0}, - {27072,26843,27030 ,14889,15579,15736 ,0,0,0}, {27115,27072,26841 ,15811,14889,15578 ,0,0,0}, - {26836,27114,27116 ,15574,15810,15812 ,0,0,0}, {27072,27113,26843 ,14889,15809,15579 ,0,0,0}, - {26835,27116,27074 ,15573,15812,15775 ,0,0,0}, {27114,26836,26843 ,15810,15574,15579 ,0,0,0}, - {27117,27076,27075 ,15813,14885,15776 ,0,0,0}, {27116,26835,26836 ,15812,15573,15574 ,0,0,0}, - {27118,27077,27117 ,15814,15777,15813 ,0,0,0}, {27074,27073,26835 ,15775,15774,15573 ,0,0,0}, - {27119,27120,27121 ,15815,15816,15817 ,0,0,0}, {27075,27076,27073 ,15776,14885,15774 ,0,0,0}, - {27118,27119,27078 ,15814,15815,14882 ,0,0,0}, {27117,27077,27076 ,15813,15777,14885 ,0,0,0}, - {27119,27122,27079 ,15815,15818,15778 ,0,0,0}, {27118,27078,27077 ,15814,14882,15777 ,0,0,0}, - {27122,27123,27080 ,15818,15819,15779 ,0,0,0}, {27119,27079,27078 ,15815,15778,14882 ,0,0,0}, - {27123,27124,27081 ,15819,15820,15780 ,0,0,0}, {27122,27080,27079 ,15818,15779,15778 ,0,0,0}, - {27124,27125,27082 ,15820,15821,15781 ,0,0,0}, {27123,27081,27080 ,15819,15780,15779 ,0,0,0}, - {27039,27125,27126 ,14878,15821,15822 ,0,0,0}, {27124,27082,27081 ,15820,15781,15780 ,0,0,0}, - {27040,27126,27084 ,15743,15822,15783 ,0,0,0}, {27125,27039,27082 ,15821,14878,15781 ,0,0,0}, - {27127,27128,27129 ,15823,15824,15825 ,0,0,0}, {27126,27040,27039 ,15822,15743,14878 ,0,0,0}, - {27085,27127,27086 ,15784,15823,15785 ,0,0,0}, {27084,27083,27040 ,15783,15782,15743 ,0,0,0}, - {27127,27130,27087 ,15823,15826,15786 ,0,0,0}, {27085,27086,27083 ,15784,15785,15782 ,0,0,0}, - {27130,27131,27088 ,15826,15827,14781 ,0,0,0}, {27127,27087,27086 ,15823,15786,15785 ,0,0,0}, - {27089,27131,27132 ,15787,15827,15828 ,0,0,0}, {27130,27088,27087 ,15826,14781,15786 ,0,0,0}, - {27090,27132,27046 ,15788,15828,15749 ,0,0,0}, {27089,27088,27131 ,15787,14781,15827 ,0,0,0}, - {27133,27134,27135 ,15829,14778,15830 ,0,0,0}, {27132,27090,27089 ,15828,15788,15787 ,0,0,0}, - {27047,27133,27091 ,15750,15829,15789 ,0,0,0}, {27046,27045,27090 ,15749,15748,15788 ,0,0,0}, - {27133,27136,27092 ,15829,15831,14868 ,0,0,0}, {27047,27091,27045 ,15750,15789,15748 ,0,0,0}, - {27136,27137,27093 ,15831,15832,15790 ,0,0,0}, {27133,27092,27091 ,15829,14868,15789 ,0,0,0}, - {27137,27138,27094 ,15832,15833,15791 ,0,0,0}, {27136,27093,27092 ,15831,15790,14868 ,0,0,0}, - {27095,27138,27053 ,15792,15833,15756 ,0,0,0}, {27094,27093,27137 ,15791,15790,15832 ,0,0,0}, - {27139,27140,27141 ,15834,15835,15836 ,0,0,0}, {27138,27095,27094 ,15833,15792,15791 ,0,0,0}, - {27054,27139,27096 ,15757,15834,15793 ,0,0,0}, {27053,27052,27095 ,15756,15755,15792 ,0,0,0}, - {27139,27142,27097 ,15834,15837,15794 ,0,0,0}, {27054,27096,27052 ,15757,15793,15755 ,0,0,0}, - {27142,27143,27098 ,15837,15838,15795 ,0,0,0}, {27139,27097,27096 ,15834,15794,15793 ,0,0,0}, - {27143,27144,27099 ,15838,15839,15796 ,0,0,0}, {27142,27098,27097 ,15837,15795,15794 ,0,0,0}, - {27015,27144,27145 ,15721,15839,15840 ,0,0,0}, {27143,27099,27098 ,15838,15796,15795 ,0,0,0}, - {27013,27145,27101 ,14854,15840,15798 ,0,0,0}, {27144,27015,27099 ,15839,15721,15796 ,0,0,0}, - {27146,27103,27102 ,15841,15800,15799 ,0,0,0}, {27145,27013,27015 ,15840,14854,15721 ,0,0,0}, - {27147,27148,27149 ,15842,15843,14766 ,0,0,0}, {27101,27100,27013 ,15798,15797,14854 ,0,0,0}, - {27146,27147,27104 ,15841,15842,15801 ,0,0,0}, {27102,27103,27100 ,15799,15800,15797 ,0,0,0}, - {27147,27150,27105 ,15842,15844,15802 ,0,0,0}, {27146,27104,27103 ,15841,15801,15800 ,0,0,0}, - {27150,27151,27106 ,15844,15845,14848 ,0,0,0}, {27147,27105,27104 ,15842,15802,15801 ,0,0,0}, - {27151,27152,27107 ,15845,15846,15803 ,0,0,0}, {27150,27106,27105 ,15844,14848,15802 ,0,0,0}, - {27152,27153,27108 ,15846,15847,15804 ,0,0,0}, {27151,27107,27106 ,15845,15803,14848 ,0,0,0}, - {27153,27154,27109 ,15847,15848,15805 ,0,0,0}, {27152,27108,27107 ,15846,15804,15803 ,0,0,0}, - {27154,26938,27110 ,15848,15652,15806 ,0,0,0}, {27153,27109,27108 ,15847,15805,15804 ,0,0,0}, - {26940,26938,26937 ,15654,15652,15651 ,0,0,0}, {27109,27154,27110 ,15805,15848,15806 ,0,0,0}, - {27155,26929,27111 ,15849,15644,15807 ,0,0,0}, {26940,27110,26938 ,15654,15806,15652 ,0,0,0}, - {27156,26929,27155 ,15850,15644,15849 ,0,0,0}, {27157,27112,26929 ,15851,15808,15644 ,0,0,0}, - {26933,27111,26928 ,14890,15807,15643 ,0,0,0}, {27069,27155,27111 ,15771,15849,15807 ,0,0,0}, - {27156,27157,26929 ,15850,15851,15644 ,0,0,0}, {27115,26841,26840 ,15811,15578,15577 ,0,0,0}, - {26844,26846,27029 ,15580,15582,15735 ,0,0,0}, {27113,27158,27159 ,15809,15852,15853 ,0,0,0}, - {27115,27113,27072 ,15811,15809,14889 ,0,0,0}, {26840,27160,27115 ,15577,15854,15811 ,0,0,0}, - {27114,27159,27161 ,15810,15853,15855 ,0,0,0}, {27115,27158,27113 ,15811,15852,15809 ,0,0,0}, - {27116,27161,27162 ,15812,15855,15856 ,0,0,0}, {27113,27159,27114 ,15809,15853,15810 ,0,0,0}, - {27074,27162,27163 ,15775,15856,14794 ,0,0,0}, {27114,27161,27116 ,15810,15855,15812 ,0,0,0}, - {27075,27163,27164 ,15776,14794,15857 ,0,0,0}, {27116,27162,27074 ,15812,15856,15775 ,0,0,0}, - {27117,27164,27165 ,15813,15857,14792 ,0,0,0}, {27074,27163,27075 ,15775,14794,15776 ,0,0,0}, - {27118,27165,27120 ,15814,14792,15816 ,0,0,0}, {27164,27117,27075 ,15857,15813,15776 ,0,0,0}, - {27166,27122,27121 ,14789,15818,15817 ,0,0,0}, {27165,27118,27117 ,14792,15814,15813 ,0,0,0}, - {27167,27168,27166 ,15858,15859,14789 ,0,0,0}, {27120,27119,27118 ,15816,15815,15814 ,0,0,0}, - {27166,27168,27123 ,14789,15859,15819 ,0,0,0}, {27121,27122,27119 ,15817,15818,15815 ,0,0,0}, - {27168,27169,27124 ,15859,14660,15820 ,0,0,0}, {27166,27123,27122 ,14789,15819,15818 ,0,0,0}, - {27125,27169,27170 ,15821,14660,15860 ,0,0,0}, {27168,27124,27123 ,15859,15820,15819 ,0,0,0}, - {27126,27170,27171 ,15822,15860,15861 ,0,0,0}, {27124,27169,27125 ,15820,14660,15821 ,0,0,0}, - {27084,27171,27172 ,15783,15861,15862 ,0,0,0}, {27125,27170,27126 ,15821,15860,15822 ,0,0,0}, - {27085,27172,27128 ,15784,15862,15824 ,0,0,0}, {27171,27084,27126 ,15861,15783,15822 ,0,0,0}, - {27173,27174,27129 ,15863,15864,15825 ,0,0,0}, {27172,27085,27084 ,15862,15784,15783 ,0,0,0}, - {27129,27174,27130 ,15825,15864,15826 ,0,0,0}, {27128,27127,27085 ,15824,15823,15784 ,0,0,0}, - {27174,27175,27131 ,15864,15865,15827 ,0,0,0}, {27129,27130,27127 ,15825,15826,15823 ,0,0,0}, - {27132,27175,27176 ,15828,15865,15866 ,0,0,0}, {27174,27131,27130 ,15864,15827,15826 ,0,0,0}, - {27046,27176,27177 ,15749,15866,15867 ,0,0,0}, {27131,27175,27132 ,15827,15865,15828 ,0,0,0}, - {27047,27177,27134 ,15750,15867,14778 ,0,0,0}, {27176,27046,27132 ,15866,15749,15828 ,0,0,0}, - {27178,27179,27135 ,15868,15869,15830 ,0,0,0}, {27177,27047,27046 ,15867,15750,15749 ,0,0,0}, - {27135,27179,27136 ,15830,15869,15831 ,0,0,0}, {27134,27133,27047 ,14778,15829,15750 ,0,0,0}, - {27179,27180,27137 ,15869,15870,15832 ,0,0,0}, {27135,27136,27133 ,15830,15831,15829 ,0,0,0}, - {27138,27180,27181 ,15833,15870,15871 ,0,0,0}, {27179,27137,27136 ,15869,15832,15831 ,0,0,0}, - {27053,27181,27182 ,15756,15871,15872 ,0,0,0}, {27137,27180,27138 ,15832,15870,15833 ,0,0,0}, - {27054,27182,27140 ,15757,15872,15835 ,0,0,0}, {27181,27053,27138 ,15871,15756,15833 ,0,0,0}, - {27183,27184,27141 ,15873,15874,15836 ,0,0,0}, {27182,27054,27053 ,15872,15757,15756 ,0,0,0}, - {27141,27184,27142 ,15836,15874,15837 ,0,0,0}, {27140,27139,27054 ,15835,15834,15757 ,0,0,0}, - {27184,27185,27143 ,15874,15875,15838 ,0,0,0}, {27141,27142,27139 ,15836,15837,15834 ,0,0,0}, - {27144,27185,27186 ,15839,15875,14579 ,0,0,0}, {27184,27143,27142 ,15874,15838,15837 ,0,0,0}, - {27145,27186,27187 ,15840,14579,15876 ,0,0,0}, {27143,27185,27144 ,15838,15875,15839 ,0,0,0}, - {27101,27187,27188 ,15798,15876,14769 ,0,0,0}, {27144,27186,27145 ,15839,14579,15840 ,0,0,0}, - {27102,27188,27189 ,15799,14769,15877 ,0,0,0}, {27145,27187,27101 ,15840,15876,15798 ,0,0,0}, - {27146,27189,27148 ,15841,15877,15843 ,0,0,0}, {27188,27102,27101 ,14769,15799,15798 ,0,0,0}, - {27190,27150,27149 ,15878,15844,14766 ,0,0,0}, {27189,27146,27102 ,15877,15841,15799 ,0,0,0}, - {27191,27192,27190 ,15879,15880,15878 ,0,0,0}, {27148,27147,27146 ,15843,15842,15841 ,0,0,0}, - {27190,27192,27151 ,15878,15880,15845 ,0,0,0}, {27149,27150,27147 ,14766,15844,15842 ,0,0,0}, - {27192,27193,27152 ,15880,15881,15846 ,0,0,0}, {27190,27151,27150 ,15878,15845,15844 ,0,0,0}, - {27193,27194,27153 ,15881,15882,15847 ,0,0,0}, {27192,27152,27151 ,15880,15846,15845 ,0,0,0}, - {27194,27195,27154 ,15882,15883,15848 ,0,0,0}, {27193,27153,27152 ,15881,15847,15846 ,0,0,0}, - {26938,27195,26939 ,15652,15883,15653 ,0,0,0}, {27194,27154,27153 ,15882,15848,15847 ,0,0,0}, - {26939,27196,26937 ,15653,15884,15651 ,0,0,0}, {26938,27154,27195 ,15652,15848,15883 ,0,0,0}, - {27197,27155,26945 ,15885,15849,15659 ,0,0,0}, {27197,27198,27155 ,15885,15886,15849 ,0,0,0}, - {26941,27069,27111 ,15655,15771,15807 ,0,0,0}, {27196,26945,27069 ,15884,15659,15771 ,0,0,0}, - {27156,27155,27198 ,15850,15849,15886 ,0,0,0}, {26846,27160,26840 ,15582,15854,15577 ,0,0,0}, - {27199,26845,26844 ,14760,15581,15580 ,0,0,0}, {27200,27158,27160 ,15887,15852,15854 ,0,0,0}, - {27160,27158,27115 ,15854,15852,15811 ,0,0,0}, {27160,27071,27200 ,15854,15773,15887 ,0,0,0}, - {27201,27159,27158 ,15888,15853,15852 ,0,0,0}, {27158,27200,27201 ,15852,15887,15888 ,0,0,0}, - {27202,27161,27159 ,15889,15855,15853 ,0,0,0}, {27159,27201,27202 ,15853,15888,15889 ,0,0,0}, - {27203,27162,27161 ,15890,15856,15855 ,0,0,0}, {27161,27202,27203 ,15855,15889,15890 ,0,0,0}, - {27204,27163,27162 ,15891,14794,15856 ,0,0,0}, {27162,27203,27204 ,15856,15890,15891 ,0,0,0}, - {27205,27164,27163 ,15892,15857,14794 ,0,0,0}, {27163,27204,27205 ,14794,15891,15892 ,0,0,0}, - {27206,27165,27164 ,15893,14792,15857 ,0,0,0}, {27164,27205,27206 ,15857,15892,15893 ,0,0,0}, - {27207,27120,27165 ,15894,15816,14792 ,0,0,0}, {27165,27206,27207 ,14792,15893,15894 ,0,0,0}, - {27208,27121,27120 ,15895,15817,15816 ,0,0,0}, {27120,27207,27208 ,15816,15894,15895 ,0,0,0}, - {27209,27166,27121 ,15896,14789,15817 ,0,0,0}, {27208,27209,27121 ,15895,15896,15817 ,0,0,0}, - {27210,27211,27212 ,15897,15898,14664 ,0,0,0}, {27209,27167,27166 ,15896,15858,14789 ,0,0,0}, - {27213,27169,27168 ,15899,14660,15859 ,0,0,0}, {27167,27213,27168 ,15858,15899,15859 ,0,0,0}, - {27214,27170,27169 ,15900,15860,14660 ,0,0,0}, {27169,27213,27214 ,14660,15899,15900 ,0,0,0}, - {27215,27171,27170 ,15901,15861,15860 ,0,0,0}, {27170,27214,27215 ,15860,15900,15901 ,0,0,0}, - {27216,27172,27171 ,15902,15862,15861 ,0,0,0}, {27171,27215,27216 ,15861,15901,15902 ,0,0,0}, - {27217,27128,27172 ,14747,15824,15862 ,0,0,0}, {27172,27216,27217 ,15862,15902,14747 ,0,0,0}, - {27218,27129,27128 ,15903,15825,15824 ,0,0,0}, {27217,27218,27128 ,14747,15903,15824 ,0,0,0}, - {27219,27173,27220 ,15904,15863,15905 ,0,0,0}, {27218,27173,27129 ,15903,15863,15825 ,0,0,0}, - {27219,27175,27174 ,15904,15865,15864 ,0,0,0}, {27173,27219,27174 ,15863,15904,15864 ,0,0,0}, - {27221,27176,27175 ,15906,15866,15865 ,0,0,0}, {27175,27219,27221 ,15865,15904,15906 ,0,0,0}, - {27222,27177,27176 ,15907,15867,15866 ,0,0,0}, {27176,27221,27222 ,15866,15906,15907 ,0,0,0}, - {27223,27134,27177 ,14742,14778,15867 ,0,0,0}, {27177,27222,27223 ,15867,15907,14742 ,0,0,0}, - {27224,27135,27134 ,15908,15830,14778 ,0,0,0}, {27223,27224,27134 ,14742,15908,14778 ,0,0,0}, - {27225,27226,27227 ,15909,14630,15910 ,0,0,0}, {27224,27178,27135 ,15908,15868,15830 ,0,0,0}, - {27228,27180,27179 ,15911,15870,15869 ,0,0,0}, {27178,27228,27179 ,15868,15911,15869 ,0,0,0}, - {27229,27181,27180 ,15912,15871,15870 ,0,0,0}, {27180,27228,27229 ,15870,15911,15912 ,0,0,0}, - {27230,27182,27181 ,15913,15872,15871 ,0,0,0}, {27181,27229,27230 ,15871,15912,15913 ,0,0,0}, - {27231,27140,27182 ,15914,15835,15872 ,0,0,0}, {27182,27230,27231 ,15872,15913,15914 ,0,0,0}, - {27232,27141,27140 ,15915,15836,15835 ,0,0,0}, {27231,27232,27140 ,15914,15915,15835 ,0,0,0}, - {27184,27233,27185 ,15874,15916,15875 ,0,0,0}, {27232,27183,27141 ,15915,15873,15836 ,0,0,0}, - {27234,27235,27233 ,15917,14580,15916 ,0,0,0}, {27183,27233,27184 ,15873,15916,15874 ,0,0,0}, - {27235,27186,27185 ,14580,14579,15875 ,0,0,0}, {27185,27233,27235 ,15875,15916,14580 ,0,0,0}, - {27236,27187,27186 ,15918,15876,14579 ,0,0,0}, {27186,27235,27236 ,14579,14580,15918 ,0,0,0}, - {27237,27188,27187 ,15919,14769,15876 ,0,0,0}, {27187,27236,27237 ,15876,15918,15919 ,0,0,0}, - {27238,27189,27188 ,15920,15877,14769 ,0,0,0}, {27188,27237,27238 ,14769,15919,15920 ,0,0,0}, - {27239,27148,27189 ,15921,15843,15877 ,0,0,0}, {27189,27238,27239 ,15877,15920,15921 ,0,0,0}, - {27240,27149,27148 ,14728,14766,15843 ,0,0,0}, {27148,27239,27240 ,15843,15921,14728 ,0,0,0}, - {27241,27190,27149 ,15922,15878,14766 ,0,0,0}, {27240,27241,27149 ,14728,15922,14766 ,0,0,0}, - {27192,27242,27193 ,15880,15923,15881 ,0,0,0}, {27241,27191,27190 ,15922,15879,15878 ,0,0,0}, - {27193,27243,27194 ,15881,15924,15882 ,0,0,0}, {27191,27242,27192 ,15879,15923,15880 ,0,0,0}, - {27194,27244,27195 ,15882,15925,15883 ,0,0,0}, {27242,27243,27193 ,15923,15924,15881 ,0,0,0}, - {27195,26942,26939 ,15883,15656,15653 ,0,0,0}, {27243,27244,27194 ,15924,15925,15882 ,0,0,0}, - {26947,26946,26943 ,15661,15660,15657 ,0,0,0}, {27244,26942,27195 ,15925,15656,15883 ,0,0,0}, - {26943,27196,26939 ,15657,15884,15653 ,0,0,0}, {27069,26945,27155 ,15771,15659,15849 ,0,0,0}, - {26937,27196,27069 ,15651,15884,15771 ,0,0,0}, {27196,26943,26946 ,15884,15657,15660 ,0,0,0}, - {27197,26945,26944 ,15885,15659,15658 ,0,0,0}, {26845,27071,26846 ,15581,15773,15582 ,0,0,0}, - {27199,26852,26850 ,14760,15588,15586 ,0,0,0}, {27200,27071,27245 ,15887,15773,15926 ,0,0,0}, - {26846,27071,27160 ,15582,15773,15854 ,0,0,0}, {27071,26849,27245 ,15773,15585,15926 ,0,0,0}, - {27201,27200,27246 ,15888,15887,15927 ,0,0,0}, {27200,27245,27246 ,15887,15926,15927 ,0,0,0}, - {27202,27201,27247 ,15889,15888,15928 ,0,0,0}, {27201,27246,27247 ,15888,15927,15928 ,0,0,0}, - {27203,27202,27248 ,15890,15889,15929 ,0,0,0}, {27202,27247,27248 ,15889,15928,15929 ,0,0,0}, - {27204,27203,27249 ,15891,15890,15930 ,0,0,0}, {27203,27248,27249 ,15890,15929,15930 ,0,0,0}, - {27205,27204,27250 ,15892,15891,15931 ,0,0,0}, {27204,27249,27250 ,15891,15930,15931 ,0,0,0}, - {27206,27205,27251 ,15893,15892,15932 ,0,0,0}, {27205,27250,27251 ,15892,15931,15932 ,0,0,0}, - {27207,27206,27252 ,15894,15893,15933 ,0,0,0}, {27206,27251,27252 ,15893,15932,15933 ,0,0,0}, - {27208,27207,27253 ,15895,15894,15934 ,0,0,0}, {27207,27252,27253 ,15894,15933,15934 ,0,0,0}, - {27209,27208,27254 ,15896,15895,15935 ,0,0,0}, {27208,27253,27254 ,15895,15934,15935 ,0,0,0}, - {27167,27209,27255 ,15858,15896,15936 ,0,0,0}, {27209,27254,27255 ,15896,15935,15936 ,0,0,0}, - {27213,27167,27210 ,15899,15858,15897 ,0,0,0}, {27255,27210,27167 ,15936,15897,15858 ,0,0,0}, - {27214,27213,27212 ,15900,15899,14664 ,0,0,0}, {27213,27210,27212 ,15899,15897,14664 ,0,0,0}, - {27215,27214,27256 ,15901,15900,15937 ,0,0,0}, {27214,27212,27256 ,15900,14664,15937 ,0,0,0}, - {27216,27215,27257 ,15902,15901,15938 ,0,0,0}, {27215,27256,27257 ,15901,15937,15938 ,0,0,0}, - {27217,27216,27258 ,14747,15902,15939 ,0,0,0}, {27216,27257,27258 ,15902,15938,15939 ,0,0,0}, - {27218,27217,27259 ,15903,14747,15940 ,0,0,0}, {27217,27258,27259 ,14747,15939,15940 ,0,0,0}, - {27173,27218,27260 ,15863,15903,14651 ,0,0,0}, {27218,27259,27260 ,15903,15940,14651 ,0,0,0}, - {27260,27261,27220 ,14651,14649,15905 ,0,0,0}, {27260,27220,27173 ,14651,15905,15863 ,0,0,0}, - {27221,27219,27262 ,15906,15904,15941 ,0,0,0}, {27219,27220,27262 ,15904,15905,15941 ,0,0,0}, - {27222,27221,27263 ,15907,15906,15942 ,0,0,0}, {27221,27262,27263 ,15906,15941,15942 ,0,0,0}, - {27223,27222,27264 ,14742,15907,15943 ,0,0,0}, {27222,27263,27264 ,15907,15942,15943 ,0,0,0}, - {27224,27223,27265 ,15908,14742,15944 ,0,0,0}, {27223,27264,27265 ,14742,15943,15944 ,0,0,0}, - {27178,27224,27266 ,15868,15908,14635 ,0,0,0}, {27224,27265,27266 ,15908,15944,14635 ,0,0,0}, - {27228,27178,27225 ,15911,15868,15909 ,0,0,0}, {27266,27225,27178 ,14635,15909,15868 ,0,0,0}, - {27229,27228,27227 ,15912,15911,15910 ,0,0,0}, {27228,27225,27227 ,15911,15909,15910 ,0,0,0}, - {27230,27229,27267 ,15913,15912,15945 ,0,0,0}, {27229,27227,27267 ,15912,15910,15945 ,0,0,0}, - {27231,27230,27268 ,15914,15913,15946 ,0,0,0}, {27230,27267,27268 ,15913,15945,15946 ,0,0,0}, - {27232,27231,27269 ,15915,15914,15947 ,0,0,0}, {27231,27268,27269 ,15914,15946,15947 ,0,0,0}, - {27183,27232,27270 ,15873,15915,15948 ,0,0,0}, {27232,27269,27270 ,15915,15947,15948 ,0,0,0}, - {27233,27183,27271 ,15916,15873,14572 ,0,0,0}, {27183,27270,27271 ,15873,15948,14572 ,0,0,0}, - {27234,27271,27272 ,15917,14572,14569 ,0,0,0}, {27271,27234,27233 ,14572,15917,15916 ,0,0,0}, - {27236,27235,27273 ,15918,14580,14574 ,0,0,0}, {27235,27234,27273 ,14580,15917,14574 ,0,0,0}, - {27237,27236,27274 ,15919,15918,14575 ,0,0,0}, {27236,27273,27274 ,15918,14574,14575 ,0,0,0}, - {27238,27237,27275 ,15920,15919,15949 ,0,0,0}, {27237,27274,27275 ,15919,14575,15949 ,0,0,0}, - {27239,27238,27276 ,15921,15920,15950 ,0,0,0}, {27238,27275,27276 ,15920,15949,15950 ,0,0,0}, - {27240,27239,27277 ,14728,15921,14585 ,0,0,0}, {27239,27276,27277 ,15921,15950,14585 ,0,0,0}, - {27241,27240,27278 ,15922,14728,15951 ,0,0,0}, {27240,27277,27278 ,14728,14585,15951 ,0,0,0}, - {27191,27241,27279 ,15879,15922,15952 ,0,0,0}, {27241,27278,27279 ,15922,15951,15952 ,0,0,0}, - {27242,27191,27280 ,15923,15879,14590 ,0,0,0}, {27191,27279,27280 ,15879,15952,14590 ,0,0,0}, - {27243,27242,27281 ,15924,15923,15953 ,0,0,0}, {27242,27280,27281 ,15923,14590,15953 ,0,0,0}, - {27244,27243,27282 ,15925,15924,15954 ,0,0,0}, {27243,27281,27282 ,15924,15953,15954 ,0,0,0}, - {26942,27244,27283 ,15656,15925,15955 ,0,0,0}, {27244,27282,27283 ,15925,15954,15955 ,0,0,0}, - {27284,26943,26942 ,15956,15657,15656 ,0,0,0}, {27284,26942,27283 ,15956,15656,15955 ,0,0,0}, - {27196,26946,26945 ,15884,15660,15659 ,0,0,0}, {27284,26947,26943 ,15956,15661,15657 ,0,0,0}, - {26944,26946,26949 ,15658,15660,15663 ,0,0,0}, {26850,26845,27199 ,15586,15581,14760 ,0,0,0}, - {26851,26848,26850 ,15587,15584,15586 ,0,0,0}, {26848,27285,26849 ,15584,15957,15585 ,0,0,0}, - {26849,27285,27245 ,15585,15957,15926 ,0,0,0}, {27285,27286,27245 ,15957,14714,15926 ,0,0,0}, - {27245,27286,27246 ,15926,14714,15927 ,0,0,0}, {27286,27287,27246 ,14714,14713,15927 ,0,0,0}, - {27246,27287,27247 ,15927,14713,15928 ,0,0,0}, {27287,27288,27247 ,14713,15958,15928 ,0,0,0}, - {27247,27288,27248 ,15928,15958,15929 ,0,0,0}, {27288,27289,27248 ,15958,15959,15929 ,0,0,0}, - {27248,27289,27249 ,15929,15959,15930 ,0,0,0}, {27289,27290,27249 ,15959,15960,15930 ,0,0,0}, - {27249,27290,27250 ,15930,15960,15931 ,0,0,0}, {27290,27291,27250 ,15960,15961,15931 ,0,0,0}, - {27250,27291,27251 ,15931,15961,15932 ,0,0,0}, {27291,27292,27251 ,15961,15962,15932 ,0,0,0}, - {27292,27293,27252 ,15962,15963,15933 ,0,0,0}, {27292,27252,27251 ,15962,15933,15932 ,0,0,0}, - {27293,27294,27253 ,15963,15964,15934 ,0,0,0}, {27293,27253,27252 ,15963,15934,15933 ,0,0,0}, - {27294,27295,27254 ,15964,15965,15935 ,0,0,0}, {27294,27254,27253 ,15964,15935,15934 ,0,0,0}, - {27295,27296,27255 ,15965,15966,15936 ,0,0,0}, {27295,27255,27254 ,15965,15936,15935 ,0,0,0}, - {27296,27297,27210 ,15966,15967,15897 ,0,0,0}, {27296,27210,27255 ,15966,15897,15936 ,0,0,0}, - {27211,27210,27297 ,15898,15897,15967 ,0,0,0}, {27211,27298,27212 ,15898,14663,14664 ,0,0,0}, - {27212,27298,27256 ,14664,14663,15937 ,0,0,0}, {27298,27299,27256 ,14663,14658,15937 ,0,0,0}, - {27256,27299,27257 ,15937,14658,15938 ,0,0,0}, {27299,27300,27257 ,14658,14655,15938 ,0,0,0}, - {27300,27301,27258 ,14655,15968,15939 ,0,0,0}, {27300,27258,27257 ,14655,15939,15938 ,0,0,0}, - {27301,27302,27259 ,15968,14652,15940 ,0,0,0}, {27301,27259,27258 ,15968,15940,15939 ,0,0,0}, - {27302,27261,27260 ,14652,14649,14651 ,0,0,0}, {27302,27260,27259 ,14652,14651,15940 ,0,0,0}, - {27261,27303,27220 ,14649,15969,15905 ,0,0,0}, {27303,27304,27220 ,15969,14648,15905 ,0,0,0}, - {27220,27304,27262 ,15905,14648,15941 ,0,0,0}, {27304,27305,27262 ,14648,14646,15941 ,0,0,0}, - {27262,27305,27263 ,15941,14646,15942 ,0,0,0}, {27305,27306,27263 ,14646,15970,15942 ,0,0,0}, - {27306,27307,27264 ,15970,14638,15943 ,0,0,0}, {27306,27264,27263 ,15970,15943,15942 ,0,0,0}, - {27307,27308,27265 ,14638,15971,15944 ,0,0,0}, {27307,27265,27264 ,14638,15944,15943 ,0,0,0}, - {27308,27309,27266 ,15971,14634,14635 ,0,0,0}, {27308,27266,27265 ,15971,14635,15944 ,0,0,0}, - {27309,27310,27225 ,14634,15972,15909 ,0,0,0}, {27309,27225,27266 ,14634,15909,14635 ,0,0,0}, - {27226,27225,27310 ,14630,15909,15972 ,0,0,0}, {27226,27311,27227 ,14630,15973,15910 ,0,0,0}, - {27227,27311,27267 ,15910,15973,15945 ,0,0,0}, {27311,27312,27267 ,15973,14560,15945 ,0,0,0}, - {27312,27313,27268 ,14560,14561,15946 ,0,0,0}, {27312,27268,27267 ,14560,15946,15945 ,0,0,0}, - {27313,27314,27269 ,14561,15974,15947 ,0,0,0}, {27313,27269,27268 ,14561,15947,15946 ,0,0,0}, - {27314,27315,27270 ,15974,14567,15948 ,0,0,0}, {27314,27270,27269 ,15974,15948,15947 ,0,0,0}, - {27315,27272,27271 ,14567,14569,14572 ,0,0,0}, {27315,27271,27270 ,14567,14572,15948 ,0,0,0}, - {27272,27316,27234 ,14569,15975,15917 ,0,0,0}, {27316,27317,27234 ,15975,15976,15917 ,0,0,0}, - {27234,27317,27273 ,15917,15976,14574 ,0,0,0}, {27317,27318,27273 ,15976,14576,14574 ,0,0,0}, - {27273,27318,27274 ,14574,14576,14575 ,0,0,0}, {27318,27319,27274 ,14576,14577,14575 ,0,0,0}, - {27274,27319,27275 ,14575,14577,15949 ,0,0,0}, {27319,27320,27275 ,14577,14583,15949 ,0,0,0}, - {27320,27321,27276 ,14583,15977,15950 ,0,0,0}, {27320,27276,27275 ,14583,15950,15949 ,0,0,0}, - {27321,27322,27277 ,15977,15978,14585 ,0,0,0}, {27321,27277,27276 ,15977,14585,15950 ,0,0,0}, - {27322,27323,27278 ,15978,15979,15951 ,0,0,0}, {27322,27278,27277 ,15978,15951,14585 ,0,0,0}, - {27323,27324,27279 ,15979,14589,15952 ,0,0,0}, {27323,27279,27278 ,15979,15952,15951 ,0,0,0}, - {27324,27325,27280 ,14589,15980,14590 ,0,0,0}, {27324,27280,27279 ,14589,14590,15952 ,0,0,0}, - {27325,27326,27281 ,15980,15981,15953 ,0,0,0}, {27325,27281,27280 ,15980,15953,14590 ,0,0,0}, - {27326,27327,27282 ,15981,15982,15954 ,0,0,0}, {27326,27282,27281 ,15981,15954,15953 ,0,0,0}, - {27327,27328,27283 ,15982,15983,15955 ,0,0,0}, {27327,27283,27282 ,15982,15955,15954 ,0,0,0}, - {27328,27329,27284 ,15983,15984,15956 ,0,0,0}, {27328,27284,27283 ,15983,15956,15955 ,0,0,0}, - {27330,27284,27329 ,15985,15956,15984 ,0,0,0}, {27284,27330,26947 ,15956,15985,15661 ,0,0,0}, - {26947,27330,26950 ,15661,15985,15664 ,0,0,0}, {27331,27332,27333 ,15557,15515,15986 ,0,0,0}, - {27334,27335,27336 ,15987,15551,15552 ,0,0,0}, {27337,27338,27339 ,15988,15989,15990 ,0,0,0}, - {27340,27341,27337 ,15991,15992,15988 ,0,0,0}, {27342,27343,27344 ,15993,15994,15995 ,0,0,0}, - {27345,27346,27347 ,15996,15997,15998 ,0,0,0}, {27348,27349,27350 ,15999,16000,16001 ,0,0,0}, - {27351,27352,27345 ,16002,16003,15996 ,0,0,0}, {27353,27354,27355 ,16004,16005,16006 ,0,0,0}, - {27355,27350,27356 ,16006,16001,16007 ,0,0,0}, {27357,27353,27358 ,16008,16004,16009 ,0,0,0}, - {27354,27353,27359 ,16005,16004,16010 ,0,0,0}, {27340,27360,27361 ,15991,16011,16012 ,0,0,0}, - {27357,27362,27353 ,16008,16013,16004 ,0,0,0}, {27363,27364,27365 ,16014,16015,16016 ,0,0,0}, - {27364,27366,27333 ,16015,16017,15986 ,0,0,0}, {27367,27368,27365 ,16018,16019,16016 ,0,0,0}, - {27366,27364,27363 ,16017,16015,16014 ,0,0,0}, {27369,27370,27367 ,16020,16021,16018 ,0,0,0}, - {27365,27368,27363 ,16016,16019,16014 ,0,0,0}, {27371,27372,27335 ,15508,16022,15551 ,0,0,0}, - {27373,27374,27375 ,16023,16024,15548 ,0,0,0}, {27371,27376,27372 ,15508,16025,16022 ,0,0,0}, - {27377,27378,27379 ,15545,15546,16026 ,0,0,0}, {27374,27380,27375 ,16024,16027,15548 ,0,0,0}, - {27381,27382,27383 ,16028,15465,16029 ,0,0,0}, {27377,27379,27384 ,15545,16026,16030 ,0,0,0}, - {27385,27386,27387 ,15541,16031,16032 ,0,0,0}, {27386,27385,27388 ,16031,15541,16033 ,0,0,0}, - {27389,27390,27391 ,15537,16034,16035 ,0,0,0}, {27392,27393,27390 ,16036,16037,16034 ,0,0,0}, - {27394,27395,27396 ,15535,15459,16038 ,0,0,0}, {27389,27391,27397 ,15537,16035,15457 ,0,0,0}, - {27398,27399,27400 ,16039,15532,15533 ,0,0,0}, {27394,27396,27401 ,15535,16038,15534 ,0,0,0}, - {27402,27403,27404 ,16040,16041,16042 ,0,0,0}, {27405,27399,27398 ,16043,15532,16039 ,0,0,0}, - {27406,27407,27408 ,16044,16045,16046 ,0,0,0}, {27408,27404,27406 ,16046,16042,16044 ,0,0,0}, - {27409,27410,27411 ,16047,16048,16049 ,0,0,0}, {27412,27407,27413 ,15527,16045,15491 ,0,0,0}, - {27414,27415,27416 ,16050,16051,16052 ,0,0,0}, {27415,27414,27417 ,16051,16050,16053 ,0,0,0}, - {27418,27419,27420 ,16054,16055,16056 ,0,0,0}, {27416,27419,27421 ,16052,16055,16057 ,0,0,0}, - {27422,27423,27424 ,15520,15521,16058 ,0,0,0}, {27425,27426,27427 ,16059,15392,16060 ,0,0,0}, - {27428,27429,27430 ,16061,16062,16063 ,0,0,0}, {27429,27428,27431 ,16062,16061,16064 ,0,0,0}, - {27432,27433,27434 ,16065,16066,16067 ,0,0,0}, {27435,27436,27432 ,16068,16069,16065 ,0,0,0}, - {27433,27432,27436 ,16066,16065,16069 ,0,0,0}, {27433,27436,27422 ,16066,16069,15520 ,0,0,0}, - {27437,27438,27439 ,16070,16071,16072 ,0,0,0}, {27420,27424,27423 ,16056,16058,15521 ,0,0,0}, - {27440,27425,27427 ,16073,16059,16060 ,0,0,0}, {27426,27441,27427 ,15392,16074,16060 ,0,0,0}, - {27442,27443,27425 ,16075,16076,16059 ,0,0,0}, {27425,27444,27426 ,16059,16077,15392 ,0,0,0}, - {27445,27446,27447 ,16078,16079,16080 ,0,0,0}, {26844,27448,27449 ,16081,16082,16083 ,0,0,0}, - {27449,27450,27199 ,16083,16084,16085 ,0,0,0}, {27450,26852,27199 ,16084,16086,16085 ,0,0,0}, - {26853,26852,27451 ,16087,16086,16088 ,0,0,0}, {27439,27419,27437 ,16072,16055,16070 ,0,0,0}, - {27430,27435,27432 ,16063,16068,16065 ,0,0,0}, {27420,27423,27418 ,16056,15521,16054 ,0,0,0}, - {26982,27431,26981 ,16089,16064,16090 ,0,0,0}, {27414,27416,27421 ,16050,16052,16057 ,0,0,0}, - {27419,27418,27421 ,16055,16054,16057 ,0,0,0}, {27409,27417,27410 ,16047,16053,16048 ,0,0,0}, - {27415,27417,27409 ,16051,16053,16047 ,0,0,0}, {27409,27452,27415 ,16047,16091,16051 ,0,0,0}, - {27410,27412,27411 ,16048,15527,16049 ,0,0,0}, {27413,27407,27406 ,15491,16045,16044 ,0,0,0}, - {27412,27413,27411 ,15527,15491,16049 ,0,0,0}, {27402,27404,27408 ,16040,16042,16046 ,0,0,0}, - {27398,27400,27453 ,16039,15533,16092 ,0,0,0}, {27454,27405,27455 ,15531,16043,16093 ,0,0,0}, - {27404,27403,27455 ,16042,16041,16093 ,0,0,0}, {27399,27405,27454 ,15532,16043,15531 ,0,0,0}, - {27403,27454,27455 ,16041,15531,16093 ,0,0,0}, {27453,27400,27401 ,16092,15533,15534 ,0,0,0}, - {27456,27398,27453 ,16094,16039,16092 ,0,0,0}, {27401,27396,27453 ,15534,16038,16092 ,0,0,0}, - {27397,27395,27457 ,15457,15459,15497 ,0,0,0}, {27394,27457,27395 ,15535,15497,15459 ,0,0,0}, - {27458,27397,27457 ,16095,15457,15497 ,0,0,0}, {27393,27391,27390 ,16037,16035,16034 ,0,0,0}, - {27389,27397,27458 ,15537,15457,16095 ,0,0,0}, {27392,27459,27393 ,16036,15500,16037 ,0,0,0}, - {27387,27386,27459 ,16032,16031,15500 ,0,0,0}, {27459,27392,27387 ,15500,16036,16032 ,0,0,0}, - {27388,27460,27383 ,16033,15542,16029 ,0,0,0}, {27461,27462,27463 ,16096,16097,16098 ,0,0,0}, - {27383,27460,27464 ,16029,15542,16099 ,0,0,0}, {27460,27388,27385 ,15542,16033,15541 ,0,0,0}, - {27465,27384,27382 ,16100,16030,15465 ,0,0,0}, {27381,27383,27464 ,16028,16029,16099 ,0,0,0}, - {27384,27465,27377 ,16030,16100,15545 ,0,0,0}, {27465,27382,27381 ,16100,15465,16028 ,0,0,0}, - {27376,27466,27467 ,16025,15507,16101 ,0,0,0}, {27378,27380,27468 ,15546,16027,16102 ,0,0,0}, - {27379,27378,27468 ,16026,15546,16102 ,0,0,0}, {27468,27380,27374 ,16102,16027,16024 ,0,0,0}, - {27469,27470,27471 ,16103,16104,16105 ,0,0,0}, {27466,27373,27375 ,15507,16023,15548 ,0,0,0}, - {27333,27366,27331 ,15986,16017,15557 ,0,0,0}, {27376,27373,27466 ,16025,16023,15507 ,0,0,0}, - {27376,27467,27372 ,16025,16101,16022 ,0,0,0}, {27335,27334,27371 ,15551,15987,15508 ,0,0,0}, - {27370,27369,27336 ,16021,16020,15552 ,0,0,0}, {27336,27369,27334 ,15552,16020,15987 ,0,0,0}, - {27472,27369,27367 ,16106,16020,16018 ,0,0,0}, {27370,27368,27367 ,16021,16019,16018 ,0,0,0}, - {27332,27361,27360 ,15515,16012,16011 ,0,0,0}, {27331,27361,27332 ,15557,16012,15515 ,0,0,0}, - {27341,27338,27337 ,15992,15989,15988 ,0,0,0}, {27340,27337,27360 ,15991,15988,16011 ,0,0,0}, - {27341,27473,27338 ,15992,16107,15989 ,0,0,0}, {27344,27474,27348 ,15995,14800,15999 ,0,0,0}, - {27475,27476,27473 ,16108,16109,16107 ,0,0,0}, {27342,27477,27478 ,15993,16110,16111 ,0,0,0}, - {27476,27479,27480 ,16109,16112,16113 ,0,0,0}, {27475,27479,27476 ,16108,16112,16109 ,0,0,0}, - {27476,27338,27473 ,16109,15989,16107 ,0,0,0}, {27480,27481,27482 ,16113,16114,16115 ,0,0,0}, - {27481,27480,27483 ,16114,16113,16116 ,0,0,0}, {27479,27483,27480 ,16112,16116,16113 ,0,0,0}, - {27478,27477,27482 ,16111,16110,16115 ,0,0,0}, {27484,27344,27343 ,16117,15995,15994 ,0,0,0}, - {27480,27482,27477 ,16113,16115,16110 ,0,0,0}, {27349,27348,27485 ,16000,15999,16118 ,0,0,0}, - {27480,27486,27476 ,16113,16119,16109 ,0,0,0}, {27487,27360,27337 ,16120,16011,15988 ,0,0,0}, - {27476,27347,27338 ,16109,15998,15989 ,0,0,0}, {27488,27332,27360 ,16121,15515,16011 ,0,0,0}, - {27339,27338,27347 ,15990,15989,15998 ,0,0,0}, {27489,27333,27332 ,16122,15986,15515 ,0,0,0}, - {27487,27337,27339 ,16120,15988,15990 ,0,0,0}, {27490,27364,27333 ,16123,16015,15986 ,0,0,0}, - {27488,27360,27487 ,16121,16011,16120 ,0,0,0}, {27491,27365,27364 ,16124,16016,16015 ,0,0,0}, - {27489,27332,27488 ,16122,15515,16121 ,0,0,0}, {27492,27367,27365 ,16125,16018,16016 ,0,0,0}, - {27333,27489,27490 ,15986,16122,16123 ,0,0,0}, {27493,27494,27495 ,16126,16127,15475 ,0,0,0}, - {27364,27490,27491 ,16015,16123,16124 ,0,0,0}, {27495,27334,27369 ,15475,15987,16020 ,0,0,0}, - {27365,27491,27492 ,16016,16124,16125 ,0,0,0}, {27496,27371,27334 ,16128,15508,15987 ,0,0,0}, - {27367,27492,27472 ,16018,16125,16106 ,0,0,0}, {27497,27376,27371 ,16129,16025,15508 ,0,0,0}, - {27369,27472,27495 ,16020,16106,15475 ,0,0,0}, {27498,27373,27376 ,16130,16023,16025 ,0,0,0}, - {27334,27495,27496 ,15987,15475,16128 ,0,0,0}, {27499,27374,27373 ,16131,16024,16023 ,0,0,0}, - {27497,27371,27496 ,16129,15508,16128 ,0,0,0}, {27500,27468,27374 ,16132,16102,16024 ,0,0,0}, - {27498,27376,27497 ,16130,16025,16129 ,0,0,0}, {27501,27379,27468 ,16133,16026,16102 ,0,0,0}, - {27373,27498,27499 ,16023,16130,16131 ,0,0,0}, {27470,27384,27379 ,16104,16030,16026 ,0,0,0}, - {27374,27499,27500 ,16024,16131,16132 ,0,0,0}, {27502,27382,27384 ,16134,15465,16030 ,0,0,0}, - {27468,27500,27501 ,16102,16132,16133 ,0,0,0}, {27503,27383,27382 ,16135,16029,15465 ,0,0,0}, - {27379,27501,27470 ,16026,16133,16104 ,0,0,0}, {27504,27388,27383 ,16136,16033,16029 ,0,0,0}, - {27502,27384,27470 ,16134,16030,16104 ,0,0,0}, {27505,27386,27388 ,16137,16031,16033 ,0,0,0}, - {27503,27382,27502 ,16135,15465,16134 ,0,0,0}, {27506,27459,27386 ,16138,15500,16031 ,0,0,0}, - {27383,27503,27504 ,16029,16135,16136 ,0,0,0}, {27393,27459,27461 ,16037,15500,16096 ,0,0,0}, - {27388,27504,27505 ,16033,16136,16137 ,0,0,0}, {27507,27391,27393 ,16139,16035,16037 ,0,0,0}, - {27386,27505,27506 ,16031,16137,16138 ,0,0,0}, {27508,27397,27391 ,15458,15457,16035 ,0,0,0}, - {27459,27506,27461 ,15500,16138,16096 ,0,0,0}, {27509,27395,27397 ,16140,15459,15457 ,0,0,0}, - {27507,27393,27461 ,16139,16037,16096 ,0,0,0}, {27510,27396,27395 ,16141,16038,15459 ,0,0,0}, - {27508,27391,27507 ,15458,16035,16139 ,0,0,0}, {27511,27453,27396 ,16142,16092,16038 ,0,0,0}, - {27397,27508,27509 ,15457,15458,16140 ,0,0,0}, {27512,27513,27514 ,15354,16143,16144 ,0,0,0}, - {27395,27509,27510 ,15459,16140,16141 ,0,0,0}, {27515,27405,27398 ,16145,16043,16039 ,0,0,0}, - {27396,27510,27511 ,16038,16141,16142 ,0,0,0}, {27516,27455,27405 ,16146,16093,16043 ,0,0,0}, - {27453,27511,27456 ,16092,16142,16094 ,0,0,0}, {27517,27404,27455 ,16147,16042,16093 ,0,0,0}, - {27398,27456,27515 ,16039,16094,16145 ,0,0,0}, {27518,27406,27404 ,16148,16044,16042 ,0,0,0}, - {27516,27405,27515 ,16146,16043,16145 ,0,0,0}, {27519,27413,27406 ,16149,15491,16044 ,0,0,0}, - {27517,27455,27516 ,16147,16093,16146 ,0,0,0}, {27520,27411,27413 ,16150,16049,15491 ,0,0,0}, - {27518,27404,27517 ,16148,16042,16147 ,0,0,0}, {27521,27409,27411 ,16151,16047,16049 ,0,0,0}, - {27406,27518,27519 ,16044,16148,16149 ,0,0,0}, {27415,27522,27416 ,16051,16152,16052 ,0,0,0}, - {27413,27519,27520 ,15491,16149,16150 ,0,0,0}, {27437,27523,27438 ,16070,16153,16071 ,0,0,0}, - {27411,27520,27521 ,16049,16150,16151 ,0,0,0}, {27437,27419,27416 ,16070,16055,16052 ,0,0,0}, - {27409,27521,27452 ,16047,16151,16091 ,0,0,0}, {27439,27420,27419 ,16072,16056,16055 ,0,0,0}, - {27415,27452,27522 ,16051,16091,16152 ,0,0,0}, {27424,27420,27524 ,16058,16056,16154 ,0,0,0}, - {27437,27416,27522 ,16070,16052,16152 ,0,0,0}, {27441,27434,27433 ,16074,16067,16066 ,0,0,0}, - {27525,27432,27434 ,16155,16065,16067 ,0,0,0}, {27424,27433,27422 ,16058,16066,15520 ,0,0,0}, - {27524,27420,27439 ,16154,16056,16072 ,0,0,0}, {27441,27426,27434 ,16074,15392,16067 ,0,0,0}, - {27433,27424,27441 ,16066,16058,16074 ,0,0,0}, {27430,27526,27428 ,16063,16156,16061 ,0,0,0}, - {27428,26981,27431 ,16061,16090,16064 ,0,0,0}, {27435,27430,27429 ,16068,16063,16062 ,0,0,0}, - {27430,27525,27526 ,16063,16155,16156 ,0,0,0}, {26983,26981,27428 ,16157,16090,16061 ,0,0,0}, - {27477,27486,27480 ,16110,16119,16113 ,0,0,0}, {27343,27342,27478 ,15994,15993,16111 ,0,0,0}, - {27527,27355,27354 ,16158,16006,16005 ,0,0,0}, {27486,27347,27476 ,16119,15998,16109 ,0,0,0}, - {27486,27477,27528 ,16119,16110,16159 ,0,0,0}, {27339,27346,27529 ,15990,15997,16160 ,0,0,0}, - {27345,27347,27486 ,15996,15998,16119 ,0,0,0}, {27487,27529,27530 ,16120,16160,16161 ,0,0,0}, - {27346,27339,27347 ,15997,15990,15998 ,0,0,0}, {27488,27530,27531 ,16121,16161,16162 ,0,0,0}, - {27529,27487,27339 ,16160,16120,15990 ,0,0,0}, {27489,27531,27532 ,16122,16162,16163 ,0,0,0}, - {27530,27488,27487 ,16161,16121,16120 ,0,0,0}, {27490,27532,27533 ,16123,16163,15383 ,0,0,0}, - {27531,27489,27488 ,16162,16122,16121 ,0,0,0}, {27491,27533,27534 ,16124,15383,16164 ,0,0,0}, - {27532,27490,27489 ,16163,16123,16122 ,0,0,0}, {27492,27534,27535 ,16125,16164,16165 ,0,0,0}, - {27533,27491,27490 ,15383,16124,16123 ,0,0,0}, {27472,27535,27493 ,16106,16165,16126 ,0,0,0}, - {27492,27491,27534 ,16125,16124,16164 ,0,0,0}, {27536,27537,27538 ,16166,15378,16167 ,0,0,0}, - {27472,27492,27535 ,16106,16125,16165 ,0,0,0}, {27496,27494,27536 ,16128,16127,16166 ,0,0,0}, - {27495,27472,27493 ,15475,16106,16126 ,0,0,0}, {27497,27536,27539 ,16129,16166,16168 ,0,0,0}, - {27496,27495,27494 ,16128,15475,16127 ,0,0,0}, {27498,27539,27540 ,16130,16168,16169 ,0,0,0}, - {27536,27497,27496 ,16166,16129,16128 ,0,0,0}, {27499,27540,27541 ,16131,16169,16170 ,0,0,0}, - {27539,27498,27497 ,16168,16130,16129 ,0,0,0}, {27500,27541,27542 ,16132,16170,16171 ,0,0,0}, - {27540,27499,27498 ,16169,16131,16130 ,0,0,0}, {27501,27542,27471 ,16133,16171,16105 ,0,0,0}, - {27500,27499,27541 ,16132,16131,16170 ,0,0,0}, {27543,27544,27545 ,16172,16173,16174 ,0,0,0}, - {27501,27500,27542 ,16133,16132,16171 ,0,0,0}, {27502,27469,27546 ,16134,16103,16175 ,0,0,0}, - {27470,27501,27471 ,16104,16133,16105 ,0,0,0}, {27503,27546,27547 ,16135,16175,16176 ,0,0,0}, - {27469,27502,27470 ,16103,16134,16104 ,0,0,0}, {27504,27547,27548 ,16136,16176,16177 ,0,0,0}, - {27546,27503,27502 ,16175,16135,16134 ,0,0,0}, {27505,27548,27549 ,16137,16177,16178 ,0,0,0}, - {27547,27504,27503 ,16176,16136,16135 ,0,0,0}, {27506,27549,27462 ,16138,16178,16097 ,0,0,0}, - {27505,27504,27548 ,16137,16136,16177 ,0,0,0}, {27550,27551,27552 ,16179,16180,16181 ,0,0,0}, - {27506,27505,27549 ,16138,16137,16178 ,0,0,0}, {27507,27463,27553 ,16139,16098,16182 ,0,0,0}, - {27461,27506,27462 ,16096,16138,16097 ,0,0,0}, {27508,27553,27554 ,15458,16182,16183 ,0,0,0}, - {27507,27461,27463 ,16139,16096,16098 ,0,0,0}, {27509,27554,27555 ,16140,16183,16184 ,0,0,0}, - {27553,27508,27507 ,16182,15458,16139 ,0,0,0}, {27510,27555,27556 ,16141,16184,16185 ,0,0,0}, - {27554,27509,27508 ,16183,16140,15458 ,0,0,0}, {27511,27556,27557 ,16142,16185,16186 ,0,0,0}, - {27555,27510,27509 ,16184,16141,16140 ,0,0,0}, {27456,27557,27558 ,16094,16186,16187 ,0,0,0}, - {27511,27510,27556 ,16142,16141,16185 ,0,0,0}, {27515,27558,27513 ,16145,16187,16143 ,0,0,0}, - {27456,27511,27557 ,16094,16142,16186 ,0,0,0}, {27516,27513,27559 ,16146,16143,16188 ,0,0,0}, - {27515,27456,27558 ,16145,16094,16187 ,0,0,0}, {27517,27559,27560 ,16147,16188,16189 ,0,0,0}, - {27513,27516,27515 ,16143,16146,16145 ,0,0,0}, {27518,27560,27561 ,16148,16189,16190 ,0,0,0}, - {27559,27517,27516 ,16188,16147,16146 ,0,0,0}, {27519,27561,27562 ,16149,16190,16191 ,0,0,0}, - {27560,27518,27517 ,16189,16148,16147 ,0,0,0}, {27520,27562,27563 ,16150,16191,16192 ,0,0,0}, - {27561,27519,27518 ,16190,16149,16148 ,0,0,0}, {27521,27563,27564 ,16151,16192,15399 ,0,0,0}, - {27562,27520,27519 ,16191,16150,16149 ,0,0,0}, {27452,27564,27565 ,16091,15399,16193 ,0,0,0}, - {27563,27521,27520 ,16192,16151,16150 ,0,0,0}, {27522,27565,27523 ,16152,16193,16153 ,0,0,0}, - {27452,27521,27564 ,16091,16151,15399 ,0,0,0}, {27566,27439,27438 ,16194,16072,16071 ,0,0,0}, - {27522,27452,27565 ,16152,16091,16193 ,0,0,0}, {27448,27567,27443 ,16082,16195,16076 ,0,0,0}, - {27437,27522,27523 ,16070,16152,16153 ,0,0,0}, {27566,27427,27524 ,16194,16060,16154 ,0,0,0}, - {27426,27568,27434 ,15392,16196,16067 ,0,0,0}, {27524,27441,27424 ,16154,16074,16058 ,0,0,0}, - {27566,27524,27439 ,16194,16154,16072 ,0,0,0}, {27569,27526,27525 ,16197,16156,16155 ,0,0,0}, - {27524,27427,27441 ,16154,16060,16074 ,0,0,0}, {26984,27526,27569 ,16198,16156,16197 ,0,0,0}, - {27526,26983,27428 ,16156,16157,16061 ,0,0,0}, {27432,27525,27430 ,16065,16155,16063 ,0,0,0}, - {27568,27569,27525 ,16196,16197,16155 ,0,0,0}, {26984,26983,27526 ,16198,16157,16156 ,0,0,0}, - {27528,27477,27342 ,16159,16110,15993 ,0,0,0}, {27474,27344,27484 ,14800,15995,16117 ,0,0,0}, - {27570,27346,27352 ,16199,15997,16003 ,0,0,0}, {27528,27345,27486 ,16159,15996,16119 ,0,0,0}, - {27528,27342,27571 ,16159,15993,16200 ,0,0,0}, {27572,27573,27574 ,16201,16202,16203 ,0,0,0}, - {27351,27345,27528 ,16002,15996,16159 ,0,0,0}, {27570,27572,27529 ,16199,16201,16160 ,0,0,0}, - {27352,27346,27345 ,16003,15997,15996 ,0,0,0}, {27572,27575,27530 ,16201,16204,16161 ,0,0,0}, - {27570,27529,27346 ,16199,16160,15997 ,0,0,0}, {27575,27576,27531 ,16204,16205,16162 ,0,0,0}, - {27572,27530,27529 ,16201,16161,16160 ,0,0,0}, {27576,27577,27532 ,16205,15382,16163 ,0,0,0}, - {27575,27531,27530 ,16204,16162,16161 ,0,0,0}, {27577,27578,27533 ,15382,16206,15383 ,0,0,0}, - {27576,27532,27531 ,16205,16163,16162 ,0,0,0}, {27578,27579,27534 ,16206,16207,16164 ,0,0,0}, - {27577,27533,27532 ,15382,15383,16163 ,0,0,0}, {27579,27580,27535 ,16207,16208,16165 ,0,0,0}, - {27578,27534,27533 ,16206,16164,15383 ,0,0,0}, {27580,27581,27493 ,16208,16209,16126 ,0,0,0}, - {27579,27535,27534 ,16207,16165,16164 ,0,0,0}, {27581,27537,27494 ,16209,15378,16127 ,0,0,0}, - {27493,27535,27580 ,16126,16165,16208 ,0,0,0}, {27582,27583,27584 ,16210,16211,16212 ,0,0,0}, - {27494,27493,27581 ,16127,16126,16209 ,0,0,0}, {27538,27582,27539 ,16167,16210,16168 ,0,0,0}, - {27537,27536,27494 ,15378,16166,16127 ,0,0,0}, {27582,27585,27540 ,16210,16213,16169 ,0,0,0}, - {27538,27539,27536 ,16167,16168,16166 ,0,0,0}, {27585,27586,27541 ,16213,16214,16170 ,0,0,0}, - {27582,27540,27539 ,16210,16169,16168 ,0,0,0}, {27586,27587,27542 ,16214,16215,16171 ,0,0,0}, - {27585,27541,27540 ,16213,16170,16169 ,0,0,0}, {27587,27588,27471 ,16215,16216,16105 ,0,0,0}, - {27586,27542,27541 ,16214,16171,16170 ,0,0,0}, {27469,27588,27589 ,16103,16216,16217 ,0,0,0}, - {27471,27542,27587 ,16105,16171,16215 ,0,0,0}, {27589,27543,27546 ,16217,16172,16175 ,0,0,0}, - {27588,27469,27471 ,16216,16103,16105 ,0,0,0}, {27543,27590,27547 ,16172,16218,16176 ,0,0,0}, - {27589,27546,27469 ,16217,16175,16103 ,0,0,0}, {27590,27591,27548 ,16218,15368,16177 ,0,0,0}, - {27543,27547,27546 ,16172,16176,16175 ,0,0,0}, {27591,27592,27549 ,15368,16219,16178 ,0,0,0}, - {27590,27548,27547 ,16218,16177,16176 ,0,0,0}, {27592,27593,27462 ,16219,16220,16097 ,0,0,0}, - {27591,27549,27548 ,15368,16178,16177 ,0,0,0}, {27593,27594,27463 ,16220,16221,16098 ,0,0,0}, - {27462,27549,27592 ,16097,16178,16219 ,0,0,0}, {27594,27550,27553 ,16221,16179,16182 ,0,0,0}, - {27463,27462,27593 ,16098,16097,16220 ,0,0,0}, {27550,27595,27554 ,16179,16222,16183 ,0,0,0}, - {27594,27553,27463 ,16221,16182,16098 ,0,0,0}, {27595,27596,27555 ,16222,16223,16184 ,0,0,0}, - {27550,27554,27553 ,16179,16183,16182 ,0,0,0}, {27596,27597,27556 ,16223,16224,16185 ,0,0,0}, - {27595,27555,27554 ,16222,16184,16183 ,0,0,0}, {27597,27598,27557 ,16224,16225,16186 ,0,0,0}, - {27596,27556,27555 ,16223,16185,16184 ,0,0,0}, {27598,27514,27558 ,16225,16144,16187 ,0,0,0}, - {27557,27556,27597 ,16186,16185,16224 ,0,0,0}, {27599,27600,27601 ,16226,16227,16228 ,0,0,0}, - {27558,27557,27598 ,16187,16186,16225 ,0,0,0}, {27512,27599,27559 ,15354,16226,16188 ,0,0,0}, - {27514,27513,27558 ,16144,16143,16187 ,0,0,0}, {27599,27602,27560 ,16226,16229,16189 ,0,0,0}, - {27512,27559,27513 ,15354,16188,16143 ,0,0,0}, {27602,27603,27561 ,16229,16230,16190 ,0,0,0}, - {27599,27560,27559 ,16226,16189,16188 ,0,0,0}, {27603,27604,27562 ,16230,16231,16191 ,0,0,0}, - {27602,27561,27560 ,16229,16190,16189 ,0,0,0}, {27604,27605,27563 ,16231,15348,16192 ,0,0,0}, - {27603,27562,27561 ,16230,16191,16190 ,0,0,0}, {27605,27606,27564 ,15348,16232,15399 ,0,0,0}, - {27604,27563,27562 ,16231,16192,16191 ,0,0,0}, {27606,27607,27565 ,16232,16233,16193 ,0,0,0}, - {27605,27564,27563 ,15348,15399,16192 ,0,0,0}, {27607,27608,27523 ,16233,16234,16153 ,0,0,0}, - {27606,27565,27564 ,16232,16193,15399 ,0,0,0}, {27608,27609,27438 ,16234,16235,16071 ,0,0,0}, - {27607,27523,27565 ,16233,16153,16193 ,0,0,0}, {27609,27440,27566 ,16235,16073,16194 ,0,0,0}, - {27438,27523,27608 ,16071,16153,16234 ,0,0,0}, {27610,26980,26842 ,16236,15128,15118 ,0,0,0}, - {27609,27566,27438 ,16235,16194,16071 ,0,0,0}, {27442,27425,27440 ,16075,16059,16073 ,0,0,0}, - {27566,27440,27427 ,16194,16073,16060 ,0,0,0}, {26975,27569,27610 ,15113,16197,16236 ,0,0,0}, - {26975,26986,27569 ,15113,15265,16197 ,0,0,0}, {27434,27568,27525 ,16067,16196,16155 ,0,0,0}, - {27444,27610,27568 ,16077,16236,16196 ,0,0,0}, {26984,27569,26986 ,16198,16197,15265 ,0,0,0}, - {27344,27571,27342 ,15995,16200,15993 ,0,0,0}, {27485,27348,27474 ,16118,15999,14800 ,0,0,0}, - {27351,27611,27612 ,16002,16237,16238 ,0,0,0}, {27571,27351,27528 ,16200,16002,16159 ,0,0,0}, - {27613,27571,27344 ,16239,16200,15995 ,0,0,0}, {27352,27612,27614 ,16003,16238,16240 ,0,0,0}, - {27571,27611,27351 ,16200,16237,16002 ,0,0,0}, {27570,27614,27573 ,16199,16240,16202 ,0,0,0}, - {27612,27352,27351 ,16238,16003,16002 ,0,0,0}, {27615,27575,27574 ,16241,16204,16203 ,0,0,0}, - {27614,27570,27352 ,16240,16199,16003 ,0,0,0}, {27616,27576,27615 ,16242,16205,16241 ,0,0,0}, - {27573,27572,27570 ,16202,16201,16199 ,0,0,0}, {27617,27618,27619 ,16243,16244,16245 ,0,0,0}, - {27574,27575,27572 ,16203,16204,16201 ,0,0,0}, {27616,27617,27577 ,16242,16243,15382 ,0,0,0}, - {27615,27576,27575 ,16241,16205,16204 ,0,0,0}, {27617,27620,27578 ,16243,16246,16206 ,0,0,0}, - {27616,27577,27576 ,16242,15382,16205 ,0,0,0}, {27620,27621,27579 ,16246,16247,16207 ,0,0,0}, - {27617,27578,27577 ,16243,16206,15382 ,0,0,0}, {27621,27622,27580 ,16247,16248,16208 ,0,0,0}, - {27620,27579,27578 ,16246,16207,16206 ,0,0,0}, {27622,27623,27581 ,16248,16249,16209 ,0,0,0}, - {27621,27580,27579 ,16247,16208,16207 ,0,0,0}, {27537,27623,27624 ,15378,16249,16250 ,0,0,0}, - {27622,27581,27580 ,16248,16209,16208 ,0,0,0}, {27538,27624,27583 ,16167,16250,16211 ,0,0,0}, - {27623,27537,27581 ,16249,15378,16209 ,0,0,0}, {27625,27626,27627 ,16251,16252,16253 ,0,0,0}, - {27624,27538,27537 ,16250,16167,15378 ,0,0,0}, {27584,27625,27585 ,16212,16251,16213 ,0,0,0}, - {27583,27582,27538 ,16211,16210,16167 ,0,0,0}, {27625,27628,27586 ,16251,16254,16214 ,0,0,0}, - {27584,27585,27582 ,16212,16213,16210 ,0,0,0}, {27628,27629,27587 ,16254,16255,16215 ,0,0,0}, - {27625,27586,27585 ,16251,16214,16213 ,0,0,0}, {27588,27629,27630 ,16216,16255,16256 ,0,0,0}, - {27628,27587,27586 ,16254,16215,16214 ,0,0,0}, {27589,27630,27544 ,16217,16256,16173 ,0,0,0}, - {27588,27587,27629 ,16216,16215,16255 ,0,0,0}, {27631,27632,27633 ,16257,15282,16258 ,0,0,0}, - {27630,27589,27588 ,16256,16217,16216 ,0,0,0}, {27545,27631,27590 ,16174,16257,16218 ,0,0,0}, - {27544,27543,27589 ,16173,16172,16217 ,0,0,0}, {27631,27634,27591 ,16257,16259,15368 ,0,0,0}, - {27545,27590,27543 ,16174,16218,16172 ,0,0,0}, {27634,27635,27592 ,16259,16260,16219 ,0,0,0}, - {27631,27591,27590 ,16257,15368,16218 ,0,0,0}, {27635,27636,27593 ,16260,16261,16220 ,0,0,0}, - {27634,27592,27591 ,16259,16219,15368 ,0,0,0}, {27594,27636,27551 ,16221,16261,16180 ,0,0,0}, - {27593,27592,27635 ,16220,16219,16260 ,0,0,0}, {27637,27638,27639 ,16262,16263,16264 ,0,0,0}, - {27636,27594,27593 ,16261,16221,16220 ,0,0,0}, {27552,27637,27595 ,16181,16262,16222 ,0,0,0}, - {27551,27550,27594 ,16180,16179,16221 ,0,0,0}, {27637,27640,27596 ,16262,16265,16223 ,0,0,0}, - {27552,27595,27550 ,16181,16222,16179 ,0,0,0}, {27640,27641,27597 ,16265,16266,16224 ,0,0,0}, - {27637,27596,27595 ,16262,16223,16222 ,0,0,0}, {27641,27642,27598 ,16266,16267,16225 ,0,0,0}, - {27640,27597,27596 ,16265,16224,16223 ,0,0,0}, {27514,27642,27643 ,16144,16267,16268 ,0,0,0}, - {27641,27598,27597 ,16266,16225,16224 ,0,0,0}, {27512,27643,27600 ,15354,16268,16227 ,0,0,0}, - {27642,27514,27598 ,16267,16144,16225 ,0,0,0}, {27644,27602,27601 ,16269,16229,16228 ,0,0,0}, - {27643,27512,27514 ,16268,15354,16144 ,0,0,0}, {27645,27646,27647 ,16270,16271,15270 ,0,0,0}, - {27600,27599,27512 ,16227,16226,15354 ,0,0,0}, {27644,27645,27603 ,16269,16270,16230 ,0,0,0}, - {27601,27602,27599 ,16228,16229,16226 ,0,0,0}, {27645,27648,27604 ,16270,16272,16231 ,0,0,0}, - {27644,27603,27602 ,16269,16230,16229 ,0,0,0}, {27648,27649,27605 ,16272,16273,15348 ,0,0,0}, - {27645,27604,27603 ,16270,16231,16230 ,0,0,0}, {27649,27650,27606 ,16273,16274,16232 ,0,0,0}, - {27648,27605,27604 ,16272,15348,16231 ,0,0,0}, {27650,27651,27607 ,16274,16275,16233 ,0,0,0}, - {27649,27606,27605 ,16273,16232,15348 ,0,0,0}, {27651,27652,27608 ,16275,16276,16234 ,0,0,0}, - {27650,27607,27606 ,16274,16233,16232 ,0,0,0}, {27652,27653,27609 ,16276,16277,16235 ,0,0,0}, - {27651,27608,27607 ,16275,16234,16233 ,0,0,0}, {27440,27653,27442 ,16073,16277,16075 ,0,0,0}, - {27609,27608,27652 ,16235,16234,16276 ,0,0,0}, {27447,27442,27653 ,16080,16075,16277 ,0,0,0}, - {27440,27609,27653 ,16073,16235,16277 ,0,0,0}, {27444,27567,27610 ,16077,16195,16236 ,0,0,0}, - {27568,27610,27569 ,16196,16236,16197 ,0,0,0}, {27426,27444,27568 ,15392,16077,16196 ,0,0,0}, - {27443,27567,27444 ,16076,16195,16077 ,0,0,0}, {26975,27610,26842 ,15113,16236,15118 ,0,0,0}, - {27348,27613,27344 ,15999,16239,15995 ,0,0,0}, {27356,27350,27349 ,16007,16001,16000 ,0,0,0}, - {27611,27654,27655 ,16237,16278,16279 ,0,0,0}, {27613,27611,27571 ,16239,16237,16200 ,0,0,0}, - {27348,27656,27613 ,15999,16280,16239 ,0,0,0}, {27612,27655,27657 ,16238,16279,16281 ,0,0,0}, - {27613,27654,27611 ,16239,16278,16237 ,0,0,0}, {27614,27657,27658 ,16240,16281,16282 ,0,0,0}, - {27611,27655,27612 ,16237,16279,16238 ,0,0,0}, {27573,27658,27659 ,16202,16282,16283 ,0,0,0}, - {27612,27657,27614 ,16238,16281,16240 ,0,0,0}, {27574,27659,27660 ,16203,16283,16284 ,0,0,0}, - {27614,27658,27573 ,16240,16282,16202 ,0,0,0}, {27615,27660,27661 ,16241,16284,15296 ,0,0,0}, - {27573,27659,27574 ,16202,16283,16203 ,0,0,0}, {27616,27661,27618 ,16242,15296,16244 ,0,0,0}, - {27660,27615,27574 ,16284,16241,16203 ,0,0,0}, {27662,27620,27619 ,15293,16246,16245 ,0,0,0}, - {27661,27616,27615 ,15296,16242,16241 ,0,0,0}, {27663,27664,27662 ,16285,16286,15293 ,0,0,0}, - {27618,27617,27616 ,16244,16243,16242 ,0,0,0}, {27662,27664,27621 ,15293,16286,16247 ,0,0,0}, - {27619,27620,27617 ,16245,16246,16243 ,0,0,0}, {27664,27665,27622 ,16286,15164,16248 ,0,0,0}, - {27662,27621,27620 ,15293,16247,16246 ,0,0,0}, {27623,27665,27666 ,16249,15164,16287 ,0,0,0}, - {27664,27622,27621 ,16286,16248,16247 ,0,0,0}, {27624,27666,27667 ,16250,16287,16288 ,0,0,0}, - {27622,27665,27623 ,16248,15164,16249 ,0,0,0}, {27583,27667,27668 ,16211,16288,16289 ,0,0,0}, - {27623,27666,27624 ,16249,16287,16250 ,0,0,0}, {27584,27668,27626 ,16212,16289,16252 ,0,0,0}, - {27667,27583,27624 ,16288,16211,16250 ,0,0,0}, {27669,27670,27627 ,16290,16291,16253 ,0,0,0}, - {27668,27584,27583 ,16289,16212,16211 ,0,0,0}, {27627,27670,27628 ,16253,16291,16254 ,0,0,0}, - {27626,27625,27584 ,16252,16251,16212 ,0,0,0}, {27670,27671,27629 ,16291,16292,16255 ,0,0,0}, - {27627,27628,27625 ,16253,16254,16251 ,0,0,0}, {27630,27671,27672 ,16256,16292,16293 ,0,0,0}, - {27670,27629,27628 ,16291,16255,16254 ,0,0,0}, {27544,27672,27673 ,16173,16293,16294 ,0,0,0}, - {27629,27671,27630 ,16255,16292,16256 ,0,0,0}, {27545,27673,27632 ,16174,16294,15282 ,0,0,0}, - {27672,27544,27630 ,16293,16173,16256 ,0,0,0}, {27674,27675,27633 ,16295,16296,16258 ,0,0,0}, - {27673,27545,27544 ,16294,16174,16173 ,0,0,0}, {27633,27675,27634 ,16258,16296,16259 ,0,0,0}, - {27632,27631,27545 ,15282,16257,16174 ,0,0,0}, {27675,27676,27635 ,16296,16297,16260 ,0,0,0}, - {27633,27634,27631 ,16258,16259,16257 ,0,0,0}, {27636,27676,27677 ,16261,16297,16298 ,0,0,0}, - {27675,27635,27634 ,16296,16260,16259 ,0,0,0}, {27551,27677,27678 ,16180,16298,16299 ,0,0,0}, - {27635,27676,27636 ,16260,16297,16261 ,0,0,0}, {27552,27678,27638 ,16181,16299,16263 ,0,0,0}, - {27677,27551,27636 ,16298,16180,16261 ,0,0,0}, {27679,27680,27639 ,16300,16301,16264 ,0,0,0}, - {27678,27552,27551 ,16299,16181,16180 ,0,0,0}, {27639,27680,27640 ,16264,16301,16265 ,0,0,0}, - {27638,27637,27552 ,16263,16262,16181 ,0,0,0}, {27680,27681,27641 ,16301,16302,16266 ,0,0,0}, - {27639,27640,27637 ,16264,16265,16262 ,0,0,0}, {27642,27681,27682 ,16267,16302,15083 ,0,0,0}, - {27680,27641,27640 ,16301,16266,16265 ,0,0,0}, {27643,27682,27683 ,16268,15083,16303 ,0,0,0}, - {27641,27681,27642 ,16266,16302,16267 ,0,0,0}, {27600,27683,27684 ,16227,16303,15273 ,0,0,0}, - {27642,27682,27643 ,16267,15083,16268 ,0,0,0}, {27601,27684,27685 ,16228,15273,16304 ,0,0,0}, - {27643,27683,27600 ,16268,16303,16227 ,0,0,0}, {27644,27685,27646 ,16269,16304,16271 ,0,0,0}, - {27684,27601,27600 ,15273,16228,16227 ,0,0,0}, {27686,27648,27647 ,16305,16272,15270 ,0,0,0}, - {27685,27644,27601 ,16304,16269,16228 ,0,0,0}, {27687,27688,27686 ,16306,16307,16305 ,0,0,0}, - {27646,27645,27644 ,16271,16270,16269 ,0,0,0}, {27686,27688,27649 ,16305,16307,16273 ,0,0,0}, - {27647,27648,27645 ,15270,16272,16270 ,0,0,0}, {27688,27689,27650 ,16307,16308,16274 ,0,0,0}, - {27686,27649,27648 ,16305,16273,16272 ,0,0,0}, {27689,27690,27651 ,16308,16309,16275 ,0,0,0}, - {27688,27650,27649 ,16307,16274,16273 ,0,0,0}, {27690,27691,27652 ,16309,15110,16276 ,0,0,0}, - {27689,27651,27650 ,16308,16275,16274 ,0,0,0}, {27653,27691,27447 ,16277,15110,16080 ,0,0,0}, - {27690,27652,27651 ,16309,16276,16275 ,0,0,0}, {27447,27692,27442 ,16080,16310,16075 ,0,0,0}, - {27652,27691,27653 ,16276,15110,16277 ,0,0,0}, {26847,27567,27448 ,16311,16195,16082 ,0,0,0}, - {27567,26980,27610 ,16195,15128,16236 ,0,0,0}, {27425,27443,27444 ,16059,16076,16077 ,0,0,0}, - {27692,27448,27443 ,16310,16082,16076 ,0,0,0}, {26847,26980,27567 ,16311,15128,16195 ,0,0,0}, - {27350,27656,27348 ,16001,16280,15999 ,0,0,0}, {27693,27355,27356 ,16312,16006,16007 ,0,0,0}, - {27694,27654,27656 ,16313,16278,16280 ,0,0,0}, {27656,27654,27613 ,16280,16278,16239 ,0,0,0}, - {27656,27527,27694 ,16280,16158,16313 ,0,0,0}, {27695,27655,27654 ,16314,16279,16278 ,0,0,0}, - {27654,27694,27695 ,16278,16313,16314 ,0,0,0}, {27696,27657,27655 ,16315,16281,16279 ,0,0,0}, - {27655,27695,27696 ,16279,16314,16315 ,0,0,0}, {27697,27658,27657 ,16316,16282,16281 ,0,0,0}, - {27657,27696,27697 ,16281,16315,16316 ,0,0,0}, {27698,27659,27658 ,16317,16283,16282 ,0,0,0}, - {27658,27697,27698 ,16282,16316,16317 ,0,0,0}, {27699,27660,27659 ,16318,16284,16283 ,0,0,0}, - {27659,27698,27699 ,16283,16317,16318 ,0,0,0}, {27700,27661,27660 ,16319,15296,16284 ,0,0,0}, - {27660,27699,27700 ,16284,16318,16319 ,0,0,0}, {27701,27618,27661 ,16320,16244,15296 ,0,0,0}, - {27661,27700,27701 ,15296,16319,16320 ,0,0,0}, {27702,27619,27618 ,16321,16245,16244 ,0,0,0}, - {27618,27701,27702 ,16244,16320,16321 ,0,0,0}, {27703,27662,27619 ,16322,15293,16245 ,0,0,0}, - {27702,27703,27619 ,16321,16322,16245 ,0,0,0}, {27704,27705,27706 ,16323,16324,15168 ,0,0,0}, - {27703,27663,27662 ,16322,16285,15293 ,0,0,0}, {27707,27665,27664 ,16325,15164,16286 ,0,0,0}, - {27663,27707,27664 ,16285,16325,16286 ,0,0,0}, {27708,27666,27665 ,16326,16287,15164 ,0,0,0}, - {27665,27707,27708 ,15164,16325,16326 ,0,0,0}, {27709,27667,27666 ,16327,16288,16287 ,0,0,0}, - {27666,27708,27709 ,16287,16326,16327 ,0,0,0}, {27710,27668,27667 ,16328,16289,16288 ,0,0,0}, - {27667,27709,27710 ,16288,16327,16328 ,0,0,0}, {27711,27626,27668 ,15249,16252,16289 ,0,0,0}, - {27668,27710,27711 ,16289,16328,15249 ,0,0,0}, {27712,27627,27626 ,16329,16253,16252 ,0,0,0}, - {27711,27712,27626 ,15249,16329,16252 ,0,0,0}, {27713,27669,27714 ,16330,16290,16331 ,0,0,0}, - {27712,27669,27627 ,16329,16290,16253 ,0,0,0}, {27713,27671,27670 ,16330,16292,16291 ,0,0,0}, - {27669,27713,27670 ,16290,16330,16291 ,0,0,0}, {27715,27672,27671 ,16332,16293,16292 ,0,0,0}, - {27671,27713,27715 ,16292,16330,16332 ,0,0,0}, {27716,27673,27672 ,16333,16294,16293 ,0,0,0}, - {27672,27715,27716 ,16293,16332,16333 ,0,0,0}, {27717,27632,27673 ,15244,15282,16294 ,0,0,0}, - {27673,27716,27717 ,16294,16333,15244 ,0,0,0}, {27718,27633,27632 ,16334,16258,15282 ,0,0,0}, - {27717,27718,27632 ,15244,16334,15282 ,0,0,0}, {27719,27720,27721 ,15135,15136,16335 ,0,0,0}, - {27718,27674,27633 ,16334,16295,16258 ,0,0,0}, {27722,27676,27675 ,16336,16297,16296 ,0,0,0}, - {27674,27722,27675 ,16295,16336,16296 ,0,0,0}, {27723,27677,27676 ,16337,16298,16297 ,0,0,0}, - {27676,27722,27723 ,16297,16336,16337 ,0,0,0}, {27724,27678,27677 ,16338,16299,16298 ,0,0,0}, - {27677,27723,27724 ,16298,16337,16338 ,0,0,0}, {27725,27638,27678 ,16339,16263,16299 ,0,0,0}, - {27678,27724,27725 ,16299,16338,16339 ,0,0,0}, {27726,27639,27638 ,16340,16264,16263 ,0,0,0}, - {27725,27726,27638 ,16339,16340,16263 ,0,0,0}, {27680,27727,27681 ,16301,16341,16302 ,0,0,0}, - {27726,27679,27639 ,16340,16300,16264 ,0,0,0}, {27728,27729,27727 ,16342,15081,16341 ,0,0,0}, - {27679,27727,27680 ,16300,16341,16301 ,0,0,0}, {27729,27682,27681 ,15081,15083,16302 ,0,0,0}, - {27681,27727,27729 ,16302,16341,15081 ,0,0,0}, {27730,27683,27682 ,16343,16303,15083 ,0,0,0}, - {27682,27729,27730 ,15083,15081,16343 ,0,0,0}, {27731,27684,27683 ,16344,15273,16303 ,0,0,0}, - {27683,27730,27731 ,16303,16343,16344 ,0,0,0}, {27732,27685,27684 ,16345,16304,15273 ,0,0,0}, - {27684,27731,27732 ,15273,16344,16345 ,0,0,0}, {27733,27646,27685 ,16346,16271,16304 ,0,0,0}, - {27685,27732,27733 ,16304,16345,16346 ,0,0,0}, {27734,27647,27646 ,15230,15270,16271 ,0,0,0}, - {27646,27733,27734 ,16271,16346,15230 ,0,0,0}, {27735,27686,27647 ,16347,16305,15270 ,0,0,0}, - {27734,27735,27647 ,15230,16347,15270 ,0,0,0}, {27688,27736,27689 ,16307,16348,16308 ,0,0,0}, - {27735,27687,27686 ,16347,16306,16305 ,0,0,0}, {27689,27737,27690 ,16308,16349,16309 ,0,0,0}, - {27687,27736,27688 ,16306,16348,16307 ,0,0,0}, {27690,27738,27691 ,16309,16350,15110 ,0,0,0}, - {27736,27737,27689 ,16348,16349,16308 ,0,0,0}, {27691,27445,27447 ,15110,16078,16080 ,0,0,0}, - {27737,27738,27690 ,16349,16350,16309 ,0,0,0}, {27446,27450,27449 ,16079,16084,16083 ,0,0,0}, - {27738,27445,27691 ,16350,16078,15110 ,0,0,0}, {27446,27692,27447 ,16079,16310,16080 ,0,0,0}, - {27029,26847,27448 ,16351,16311,16082 ,0,0,0}, {27442,27692,27443 ,16075,16310,16076 ,0,0,0}, - {27692,27446,27449 ,16310,16079,16083 ,0,0,0}, {26844,27029,27448 ,16081,16351,16082 ,0,0,0}, - {27355,27527,27350 ,16006,16158,16001 ,0,0,0}, {27693,27358,27353 ,16312,16009,16004 ,0,0,0}, - {27694,27527,27739 ,16313,16158,15217 ,0,0,0}, {27350,27527,27656 ,16001,16158,16280 ,0,0,0}, - {27527,27354,27739 ,16158,16005,15217 ,0,0,0}, {27695,27694,27740 ,16314,16313,16352 ,0,0,0}, - {27694,27739,27740 ,16313,15217,16352 ,0,0,0}, {27696,27695,27741 ,16315,16314,16353 ,0,0,0}, - {27695,27740,27741 ,16314,16352,16353 ,0,0,0}, {27697,27696,27742 ,16316,16315,15188 ,0,0,0}, - {27696,27741,27742 ,16315,16353,15188 ,0,0,0}, {27698,27697,27743 ,16317,16316,16354 ,0,0,0}, - {27697,27742,27743 ,16316,15188,16354 ,0,0,0}, {27699,27698,27744 ,16318,16317,16355 ,0,0,0}, - {27698,27743,27744 ,16317,16354,16355 ,0,0,0}, {27700,27699,27745 ,16319,16318,16356 ,0,0,0}, - {27699,27744,27745 ,16318,16355,16356 ,0,0,0}, {27701,27700,27746 ,16320,16319,16357 ,0,0,0}, - {27700,27745,27746 ,16319,16356,16357 ,0,0,0}, {27702,27701,27747 ,16321,16320,16358 ,0,0,0}, - {27701,27746,27747 ,16320,16357,16358 ,0,0,0}, {27703,27702,27748 ,16322,16321,15175 ,0,0,0}, - {27702,27747,27748 ,16321,16358,15175 ,0,0,0}, {27663,27703,27749 ,16285,16322,16359 ,0,0,0}, - {27703,27748,27749 ,16322,15175,16359 ,0,0,0}, {27707,27663,27704 ,16325,16285,16323 ,0,0,0}, - {27749,27704,27663 ,16359,16323,16285 ,0,0,0}, {27708,27707,27706 ,16326,16325,15168 ,0,0,0}, - {27707,27704,27706 ,16325,16323,15168 ,0,0,0}, {27709,27708,27750 ,16327,16326,16360 ,0,0,0}, - {27708,27706,27750 ,16326,15168,16360 ,0,0,0}, {27710,27709,27751 ,16328,16327,16361 ,0,0,0}, - {27709,27750,27751 ,16327,16360,16361 ,0,0,0}, {27711,27710,27752 ,15249,16328,16362 ,0,0,0}, - {27710,27751,27752 ,16328,16361,16362 ,0,0,0}, {27712,27711,27753 ,16329,15249,16363 ,0,0,0}, - {27711,27752,27753 ,15249,16362,16363 ,0,0,0}, {27669,27712,27754 ,16290,16329,15155 ,0,0,0}, - {27712,27753,27754 ,16329,16363,15155 ,0,0,0}, {27754,27755,27714 ,15155,15153,16331 ,0,0,0}, - {27754,27714,27669 ,15155,16331,16290 ,0,0,0}, {27715,27713,27756 ,16332,16330,16364 ,0,0,0}, - {27713,27714,27756 ,16330,16331,16364 ,0,0,0}, {27716,27715,27757 ,16333,16332,16365 ,0,0,0}, - {27715,27756,27757 ,16332,16364,16365 ,0,0,0}, {27717,27716,27758 ,15244,16333,16366 ,0,0,0}, - {27716,27757,27758 ,16333,16365,16366 ,0,0,0}, {27718,27717,27759 ,16334,15244,16367 ,0,0,0}, - {27717,27758,27759 ,15244,16366,16367 ,0,0,0}, {27674,27718,27760 ,16295,16334,16368 ,0,0,0}, - {27718,27759,27760 ,16334,16367,16368 ,0,0,0}, {27722,27674,27719 ,16336,16295,15135 ,0,0,0}, - {27760,27719,27674 ,16368,15135,16295 ,0,0,0}, {27723,27722,27721 ,16337,16336,16335 ,0,0,0}, - {27722,27719,27721 ,16336,15135,16335 ,0,0,0}, {27724,27723,27761 ,16338,16337,16369 ,0,0,0}, - {27723,27721,27761 ,16337,16335,16369 ,0,0,0}, {27725,27724,27762 ,16339,16338,16370 ,0,0,0}, - {27724,27761,27762 ,16338,16369,16370 ,0,0,0}, {27726,27725,27763 ,16340,16339,16371 ,0,0,0}, - {27725,27762,27763 ,16339,16370,16371 ,0,0,0}, {27679,27726,27764 ,16300,16340,16372 ,0,0,0}, - {27726,27763,27764 ,16340,16371,16372 ,0,0,0}, {27727,27679,27765 ,16341,16300,15070 ,0,0,0}, - {27679,27764,27765 ,16300,16372,15070 ,0,0,0}, {27728,27765,27766 ,16342,15070,15074 ,0,0,0}, - {27765,27728,27727 ,15070,16342,16341 ,0,0,0}, {27730,27729,27767 ,16343,15081,16373 ,0,0,0}, - {27729,27728,27767 ,15081,16342,16373 ,0,0,0}, {27731,27730,27768 ,16344,16343,15078 ,0,0,0}, - {27730,27767,27768 ,16343,16373,15078 ,0,0,0}, {27732,27731,27769 ,16345,16344,16374 ,0,0,0}, - {27731,27768,27769 ,16344,15078,16374 ,0,0,0}, {27733,27732,27770 ,16346,16345,16375 ,0,0,0}, - {27732,27769,27770 ,16345,16374,16375 ,0,0,0}, {27734,27733,27771 ,15230,16346,16376 ,0,0,0}, - {27733,27770,27771 ,16346,16375,16376 ,0,0,0}, {27735,27734,27772 ,16347,15230,16377 ,0,0,0}, - {27734,27771,27772 ,15230,16376,16377 ,0,0,0}, {27687,27735,27773 ,16306,16347,16378 ,0,0,0}, - {27735,27772,27773 ,16347,16377,16378 ,0,0,0}, {27736,27687,27774 ,16348,16306,16379 ,0,0,0}, - {27687,27773,27774 ,16306,16378,16379 ,0,0,0}, {27737,27736,27775 ,16349,16348,16380 ,0,0,0}, - {27736,27774,27775 ,16348,16379,16380 ,0,0,0}, {27738,27737,27776 ,16350,16349,16381 ,0,0,0}, - {27737,27775,27776 ,16349,16380,16381 ,0,0,0}, {27445,27738,27777 ,16078,16350,16382 ,0,0,0}, - {27738,27776,27777 ,16350,16381,16382 ,0,0,0}, {27778,27446,27445 ,16383,16079,16078 ,0,0,0}, - {27777,27778,27445 ,16382,16383,16078 ,0,0,0}, {27692,27449,27448 ,16310,16083,16082 ,0,0,0}, - {27778,27450,27446 ,16383,16084,16079 ,0,0,0}, {26844,27449,27199 ,16081,16083,16085 ,0,0,0}, - {27353,27355,27693 ,16004,16006,16312 ,0,0,0}, {27362,27359,27353 ,16013,16010,16004 ,0,0,0}, - {27359,27779,27354 ,16010,16384,16005 ,0,0,0}, {27354,27779,27739 ,16005,16384,15217 ,0,0,0}, - {27779,27780,27739 ,16384,15219,15217 ,0,0,0}, {27739,27780,27740 ,15217,15219,16352 ,0,0,0}, - {27780,27781,27740 ,15219,15214,16352 ,0,0,0}, {27740,27781,27741 ,16352,15214,16353 ,0,0,0}, - {27781,27782,27741 ,15214,15193,16353 ,0,0,0}, {27741,27782,27742 ,16353,15193,15188 ,0,0,0}, - {27782,27783,27742 ,15193,16385,15188 ,0,0,0}, {27742,27783,27743 ,15188,16385,16354 ,0,0,0}, - {27783,27784,27743 ,16385,16386,16354 ,0,0,0}, {27743,27784,27744 ,16354,16386,16355 ,0,0,0}, - {27784,27785,27744 ,16386,16387,16355 ,0,0,0}, {27744,27785,27745 ,16355,16387,16356 ,0,0,0}, - {27785,27786,27745 ,16387,16388,16356 ,0,0,0}, {27786,27787,27746 ,16388,16389,16357 ,0,0,0}, - {27786,27746,27745 ,16388,16357,16356 ,0,0,0}, {27787,27788,27747 ,16389,16390,16358 ,0,0,0}, - {27787,27747,27746 ,16389,16358,16357 ,0,0,0}, {27788,27789,27748 ,16390,16391,15175 ,0,0,0}, - {27788,27748,27747 ,16390,15175,16358 ,0,0,0}, {27789,27790,27749 ,16391,15172,16359 ,0,0,0}, - {27789,27749,27748 ,16391,16359,15175 ,0,0,0}, {27790,27791,27704 ,15172,16392,16323 ,0,0,0}, - {27790,27704,27749 ,15172,16323,16359 ,0,0,0}, {27705,27704,27791 ,16324,16323,16392 ,0,0,0}, - {27705,27792,27706 ,16324,15167,15168 ,0,0,0}, {27706,27792,27750 ,15168,15167,16360 ,0,0,0}, - {27792,27793,27750 ,15167,15162,16360 ,0,0,0}, {27750,27793,27751 ,16360,15162,16361 ,0,0,0}, - {27793,27794,27751 ,15162,15159,16361 ,0,0,0}, {27794,27795,27752 ,15159,16393,16362 ,0,0,0}, - {27794,27752,27751 ,15159,16362,16361 ,0,0,0}, {27795,27796,27753 ,16393,15156,16363 ,0,0,0}, - {27795,27753,27752 ,16393,16363,16362 ,0,0,0}, {27796,27755,27754 ,15156,15153,15155 ,0,0,0}, - {27796,27754,27753 ,15156,15155,16363 ,0,0,0}, {27755,27797,27714 ,15153,16394,16331 ,0,0,0}, - {27797,27798,27714 ,16394,15152,16331 ,0,0,0}, {27714,27798,27756 ,16331,15152,16364 ,0,0,0}, - {27798,27799,27756 ,15152,15150,16364 ,0,0,0}, {27756,27799,27757 ,16364,15150,16365 ,0,0,0}, - {27799,27800,27757 ,15150,16395,16365 ,0,0,0}, {27800,27801,27758 ,16395,15142,16366 ,0,0,0}, - {27800,27758,27757 ,16395,16366,16365 ,0,0,0}, {27801,27802,27759 ,15142,16396,16367 ,0,0,0}, - {27801,27759,27758 ,15142,16367,16366 ,0,0,0}, {27802,27803,27760 ,16396,15138,16368 ,0,0,0}, - {27802,27760,27759 ,16396,16368,16367 ,0,0,0}, {27803,27804,27719 ,15138,16397,15135 ,0,0,0}, - {27803,27719,27760 ,15138,15135,16368 ,0,0,0}, {27720,27719,27804 ,15136,15135,16397 ,0,0,0}, - {27720,27805,27721 ,15136,16398,16335 ,0,0,0}, {27721,27805,27761 ,16335,16398,16369 ,0,0,0}, - {27805,27806,27761 ,16398,15077,16369 ,0,0,0}, {27806,27807,27762 ,15077,15065,16370 ,0,0,0}, - {27806,27762,27761 ,15077,16370,16369 ,0,0,0}, {27807,27808,27763 ,15065,16399,16371 ,0,0,0}, - {27807,27763,27762 ,15065,16371,16370 ,0,0,0}, {27808,27809,27764 ,16399,16400,16372 ,0,0,0}, - {27808,27764,27763 ,16399,16372,16371 ,0,0,0}, {27809,27766,27765 ,16400,15074,15070 ,0,0,0}, - {27809,27765,27764 ,16400,15070,16372 ,0,0,0}, {27766,27810,27728 ,15074,16401,16342 ,0,0,0}, - {27810,27811,27728 ,16401,16402,16342 ,0,0,0}, {27728,27811,27767 ,16342,16402,16373 ,0,0,0}, - {27811,27812,27767 ,16402,15075,16373 ,0,0,0}, {27767,27812,27768 ,16373,15075,15078 ,0,0,0}, - {27812,27813,27768 ,15075,15079,15078 ,0,0,0}, {27768,27813,27769 ,15078,15079,16374 ,0,0,0}, - {27813,27814,27769 ,15079,15085,16374 ,0,0,0}, {27814,27815,27770 ,15085,16403,16375 ,0,0,0}, - {27814,27770,27769 ,15085,16375,16374 ,0,0,0}, {27815,27816,27771 ,16403,16404,16376 ,0,0,0}, - {27815,27771,27770 ,16403,16376,16375 ,0,0,0}, {27816,27817,27772 ,16404,16405,16377 ,0,0,0}, - {27816,27772,27771 ,16404,16377,16376 ,0,0,0}, {27817,27818,27773 ,16405,15091,16378 ,0,0,0}, - {27817,27773,27772 ,16405,16378,16377 ,0,0,0}, {27818,27819,27774 ,15091,16406,16379 ,0,0,0}, - {27818,27774,27773 ,15091,16379,16378 ,0,0,0}, {27819,27820,27775 ,16406,16407,16380 ,0,0,0}, - {27819,27775,27774 ,16406,16380,16379 ,0,0,0}, {27820,27821,27776 ,16407,16408,16381 ,0,0,0}, - {27820,27776,27775 ,16407,16381,16380 ,0,0,0}, {27821,27822,27777 ,16408,16409,16382 ,0,0,0}, - {27821,27777,27776 ,16408,16382,16381 ,0,0,0}, {27822,27823,27778 ,16409,16410,16383 ,0,0,0}, - {27822,27778,27777 ,16409,16383,16382 ,0,0,0}, {27451,27778,27823 ,16088,16383,16410 ,0,0,0}, - {27778,27451,27450 ,16383,16088,16084 ,0,0,0}, {26852,27450,27451 ,16086,16084,16088 ,0,0,0}, - {27824,27825,27795 ,16411,16412,14033 ,0,0,0}, {27795,27794,27824 ,14033,14034,16411 ,0,0,0}, - {27826,27827,27828 ,16413,16414,16415 ,0,0,0}, {27829,27793,27792 ,16416,16417,14036 ,0,0,0}, - {27794,27793,27830 ,14034,16417,16418 ,0,0,0}, {27829,27830,27793 ,16416,16418,16417 ,0,0,0}, - {27705,27791,27831 ,13993,16419,16420 ,0,0,0}, {27832,27705,27831 ,13992,13993,16420 ,0,0,0}, - {27792,27705,27832 ,14036,13993,13992 ,0,0,0}, {27831,27790,27833 ,16420,16421,13994 ,0,0,0}, - {27792,27832,27829 ,14036,13992,16416 ,0,0,0}, {27831,27791,27790 ,16420,16419,16421 ,0,0,0}, - {27830,27824,27794 ,16418,16411,14034 ,0,0,0}, {27834,27789,27788 ,13995,14039,14040 ,0,0,0}, - {27834,27833,27789 ,13995,13994,14039 ,0,0,0}, {27835,27834,27788 ,16422,13995,14040 ,0,0,0}, - {27836,27837,27838 ,13907,13956,16423 ,0,0,0}, {27839,27835,27787 ,16424,16422,14041 ,0,0,0}, - {27786,27839,27787 ,16425,16424,14041 ,0,0,0}, {27840,27786,27785 ,13998,16425,16426 ,0,0,0}, - {27839,27786,27840 ,16424,16425,13998 ,0,0,0}, {27841,27840,27785 ,16427,13998,16426 ,0,0,0}, - {27787,27835,27788 ,14041,16422,14040 ,0,0,0}, {27833,27790,27789 ,13994,16421,14039 ,0,0,0}, - {27842,27783,27843 ,16428,14045,14001 ,0,0,0}, {27784,27842,27841 ,16429,16428,16427 ,0,0,0}, - {27782,27844,27843 ,16430,16431,14001 ,0,0,0}, {27784,27783,27842 ,16429,14045,16428 ,0,0,0}, - {27844,27781,27845 ,16431,16432,16433 ,0,0,0}, {27781,27844,27782 ,16432,16431,16430 ,0,0,0}, - {27845,27780,27846 ,16433,16434,16435 ,0,0,0}, {27783,27782,27843 ,14045,16430,14001 ,0,0,0}, - {27781,27780,27845 ,16432,16434,16433 ,0,0,0}, {27845,27847,27848 ,16433,16436,16437 ,0,0,0}, - {27479,27849,27483 ,16438,16439,16116 ,0,0,0}, {27850,27851,27852 ,16440,16441,16442 ,0,0,0}, - {27849,27853,27483 ,16439,16443,16116 ,0,0,0}, {27854,27855,27856 ,16444,13641,16445 ,0,0,0}, - {27849,27479,27854 ,16439,16438,16444 ,0,0,0}, {27846,27780,27779 ,16435,16434,16446 ,0,0,0}, - {27848,27857,27858 ,16437,16447,16448 ,0,0,0}, {27859,27860,27858 ,16449,16450,16448 ,0,0,0}, - {27858,27857,27861 ,16448,16447,16451 ,0,0,0}, {27779,27359,27862 ,16446,16452,16453 ,0,0,0}, - {27863,27864,27865 ,16454,16455,16456 ,0,0,0}, {27864,27866,27867 ,16455,16457,16458 ,0,0,0}, - {27866,27868,27867 ,16457,16459,16458 ,0,0,0}, {27869,27865,27870 ,16460,16456,16461 ,0,0,0}, - {27871,27870,27357 ,16462,16461,16008 ,0,0,0}, {27359,27870,27862 ,16452,16461,16453 ,0,0,0}, - {27870,27362,27357 ,16461,16463,16008 ,0,0,0}, {27871,27869,27870 ,16462,16460,16461 ,0,0,0}, - {27851,27872,27873 ,16441,16464,16465 ,0,0,0}, {27784,27841,27785 ,16429,16427,16426 ,0,0,0}, - {27825,27796,27795 ,16412,16466,14033 ,0,0,0}, {27755,27796,27874 ,13947,16466,16467 ,0,0,0}, - {27825,27874,27796 ,16412,16467,16466 ,0,0,0}, {27875,27797,27755 ,16468,16469,13947 ,0,0,0}, - {27755,27874,27875 ,13947,16467,16468 ,0,0,0}, {27798,27875,27876 ,14030,16468,13987 ,0,0,0}, - {27875,27798,27797 ,16468,14030,16469 ,0,0,0}, {27877,27799,27876 ,16470,16471,13987 ,0,0,0}, - {27798,27876,27799 ,14030,13987,16471 ,0,0,0}, {27800,27799,27877 ,14028,16471,16470 ,0,0,0}, - {27877,27878,27800 ,16470,16472,14028 ,0,0,0}, {27800,27878,27801 ,14028,16472,16473 ,0,0,0}, - {27801,27878,27879 ,16473,16472,16474 ,0,0,0}, {27880,27881,27882 ,16475,16476,16477 ,0,0,0}, - {27883,27802,27879 ,16478,14026,16474 ,0,0,0}, {27801,27879,27802 ,16473,16474,14026 ,0,0,0}, - {27883,27884,27803 ,16478,16479,14025 ,0,0,0}, {27803,27802,27883 ,14025,14026,16478 ,0,0,0}, - {27720,27804,27884 ,13982,16480,16479 ,0,0,0}, {27884,27804,27803 ,16479,16480,14025 ,0,0,0}, - {27885,27805,27720 ,13981,14023,13982 ,0,0,0}, {27720,27884,27885 ,13982,16479,13981 ,0,0,0}, - {27805,27886,27806 ,14023,16481,16482 ,0,0,0}, {27886,27805,27885 ,16481,14023,13981 ,0,0,0}, - {27807,27806,27887 ,14021,16482,16483 ,0,0,0}, {27886,27887,27806 ,16481,16483,16482 ,0,0,0}, - {27888,27807,27887 ,16484,14021,16483 ,0,0,0}, {27888,27808,27807 ,16484,14020,14021 ,0,0,0}, - {27888,27889,27808 ,16484,16485,14020 ,0,0,0}, {27890,27891,27892 ,13890,16486,16487 ,0,0,0}, - {27809,27889,27893 ,14019,16485,13933 ,0,0,0}, {27889,27809,27808 ,16485,14019,14020 ,0,0,0}, - {27894,27766,27893 ,16488,16489,13933 ,0,0,0}, {27809,27893,27766 ,14019,13933,16489 ,0,0,0}, - {27810,27894,27811 ,16490,16488,16491 ,0,0,0}, {27810,27766,27894 ,16490,16489,16488 ,0,0,0}, - {27812,27811,27895 ,16492,16491,16493 ,0,0,0}, {27894,27895,27811 ,16488,16493,16491 ,0,0,0}, - {27896,27813,27812 ,16494,16495,16492 ,0,0,0}, {27812,27895,27896 ,16492,16493,16494 ,0,0,0}, - {27813,27897,27814 ,16495,16496,16497 ,0,0,0}, {27897,27813,27896 ,16496,16495,16494 ,0,0,0}, - {27815,27814,27898 ,16498,16497,16499 ,0,0,0}, {27897,27898,27814 ,16496,16499,16497 ,0,0,0}, - {27899,27815,27898 ,16500,16498,16499 ,0,0,0}, {27899,27816,27815 ,16500,16501,16498 ,0,0,0}, - {27899,27900,27816 ,16500,16502,16501 ,0,0,0}, {27901,27902,27903 ,16503,16504,16505 ,0,0,0}, - {27817,27900,27902 ,16506,16502,16504 ,0,0,0}, {27900,27817,27816 ,16502,16506,16501 ,0,0,0}, - {27904,27818,27902 ,16507,16508,16504 ,0,0,0}, {27817,27902,27818 ,16506,16504,16508 ,0,0,0}, - {27905,27906,27907 ,16509,16510,16511 ,0,0,0}, {27819,27818,27904 ,16512,16508,16507 ,0,0,0}, - {27908,27909,27910 ,16513,16514,16515 ,0,0,0}, {27911,27912,27913 ,16516,16517,16518 ,0,0,0}, - {27914,27915,27916 ,16519,16520,16521 ,0,0,0}, {27917,27918,27919 ,16522,16523,16524 ,0,0,0}, - {27920,27921,27908 ,16525,16526,16513 ,0,0,0}, {27922,27923,27924 ,16527,16528,16529 ,0,0,0}, - {27925,27926,27921 ,16530,16531,16526 ,0,0,0}, {27922,27917,27923 ,16527,16522,16528 ,0,0,0}, - {27921,27927,27928 ,16526,16532,16533 ,0,0,0}, {27431,26982,27924 ,16534,726,16529 ,0,0,0}, - {27929,27819,27904 ,16535,16512,16507 ,0,0,0}, {27819,27929,27820 ,16512,16535,14008 ,0,0,0}, - {27820,27905,27821 ,14008,16509,14007 ,0,0,0}, {27901,27904,27902 ,16503,16507,16504 ,0,0,0}, - {27930,27931,27822 ,16536,16537,16538 ,0,0,0}, {27905,27930,27821 ,16509,16536,14007 ,0,0,0}, - {27928,27930,27907 ,16533,16536,16511 ,0,0,0}, {27821,27930,27822 ,14007,16536,16538 ,0,0,0}, - {27931,27932,27451 ,16537,16539,16540 ,0,0,0}, {27931,27451,27823 ,16537,16540,16541 ,0,0,0}, - {26853,27451,27933 ,16087,16540,16542 ,0,0,0}, {27870,27359,27362 ,16461,16452,16463 ,0,0,0}, - {27863,27865,27869 ,16454,16456,16460 ,0,0,0}, {27873,27872,27934 ,16465,16464,16543 ,0,0,0}, - {27862,27846,27779 ,16453,16435,16446 ,0,0,0}, {27862,27865,27935 ,16453,16456,16544 ,0,0,0}, - {27936,27844,27848 ,16545,16431,16437 ,0,0,0}, {27846,27935,27847 ,16435,16544,16436 ,0,0,0}, - {27937,27843,27936 ,16546,14001,16545 ,0,0,0}, {27847,27845,27846 ,16436,16433,16435 ,0,0,0}, - {27938,27842,27937 ,16547,16428,16546 ,0,0,0}, {27848,27844,27845 ,16437,16431,16433 ,0,0,0}, - {27939,27841,27938 ,16548,16427,16547 ,0,0,0}, {27936,27843,27844 ,16545,14001,16431 ,0,0,0}, - {27940,27840,27939 ,13961,13998,16548 ,0,0,0}, {27937,27842,27843 ,16546,16428,14001 ,0,0,0}, - {27941,27839,27940 ,16549,16424,13961 ,0,0,0}, {27938,27841,27842 ,16547,16427,16428 ,0,0,0}, - {27942,27835,27941 ,16550,16422,16549 ,0,0,0}, {27939,27840,27841 ,16548,13998,16427 ,0,0,0}, - {27942,27943,27834 ,16550,16551,13995 ,0,0,0}, {27839,27840,27940 ,16424,13998,13961 ,0,0,0}, - {27944,27833,27943 ,16552,13994,16551 ,0,0,0}, {27835,27839,27941 ,16422,16424,16549 ,0,0,0}, - {27837,27831,27944 ,13956,16420,16552 ,0,0,0}, {27834,27835,27942 ,13995,16422,16550 ,0,0,0}, - {27945,27832,27837 ,16553,13992,13956 ,0,0,0}, {27833,27834,27943 ,13994,13995,16551 ,0,0,0}, - {27946,27829,27945 ,16554,16416,16553 ,0,0,0}, {27831,27833,27944 ,16420,13994,16552 ,0,0,0}, - {27947,27830,27946 ,16555,16418,16554 ,0,0,0}, {27837,27832,27831 ,13956,13992,16420 ,0,0,0}, - {27948,27824,27947 ,16556,16411,16555 ,0,0,0}, {27945,27829,27832 ,16553,16416,13992 ,0,0,0}, - {27948,27949,27825 ,16556,16557,16412 ,0,0,0}, {27830,27829,27946 ,16418,16416,16554 ,0,0,0}, - {27950,27874,27949 ,16558,16467,16557 ,0,0,0}, {27824,27830,27947 ,16411,16418,16555 ,0,0,0}, - {27951,27875,27950 ,16559,16468,16558 ,0,0,0}, {27825,27824,27948 ,16412,16411,16556 ,0,0,0}, - {27952,27876,27951 ,16560,13987,16559 ,0,0,0}, {27874,27825,27949 ,16467,16412,16557 ,0,0,0}, - {27953,27877,27952 ,16561,16470,16560 ,0,0,0}, {27875,27874,27950 ,16468,16467,16558 ,0,0,0}, - {27954,27878,27953 ,13944,16472,16561 ,0,0,0}, {27951,27876,27875 ,16559,13987,16468 ,0,0,0}, - {27954,27955,27879 ,13944,16562,16474 ,0,0,0}, {27877,27876,27952 ,16470,13987,16560 ,0,0,0}, - {27956,27883,27955 ,16563,16478,16562 ,0,0,0}, {27878,27877,27953 ,16472,16470,16561 ,0,0,0}, - {27880,27884,27956 ,16475,16479,16563 ,0,0,0}, {27879,27878,27954 ,16474,16472,13944 ,0,0,0}, - {27957,27885,27880 ,16564,13981,16475 ,0,0,0}, {27883,27879,27955 ,16478,16474,16562 ,0,0,0}, - {27958,27886,27957 ,16565,16481,16564 ,0,0,0}, {27884,27883,27956 ,16479,16478,16563 ,0,0,0}, - {27959,27887,27958 ,13938,16483,16565 ,0,0,0}, {27880,27885,27884 ,16475,13981,16479 ,0,0,0}, - {27960,27888,27959 ,16566,16484,13938 ,0,0,0}, {27957,27886,27885 ,16564,16481,13981 ,0,0,0}, - {27960,27961,27889 ,16566,16567,16485 ,0,0,0}, {27887,27886,27958 ,16483,16481,16565 ,0,0,0}, - {27962,27893,27961 ,16568,13933,16567 ,0,0,0}, {27888,27887,27959 ,16484,16483,13938 ,0,0,0}, - {27963,27894,27962 ,16569,16488,16568 ,0,0,0}, {27889,27888,27960 ,16485,16484,16566 ,0,0,0}, - {27964,27895,27963 ,16570,16493,16569 ,0,0,0}, {27893,27889,27961 ,13933,16485,16567 ,0,0,0}, - {27965,27896,27964 ,16571,16494,16570 ,0,0,0}, {27962,27894,27893 ,16568,16488,13933 ,0,0,0}, - {27966,27897,27965 ,16572,16496,16571 ,0,0,0}, {27963,27895,27894 ,16569,16493,16488 ,0,0,0}, - {27967,27898,27966 ,16573,16499,16572 ,0,0,0}, {27964,27896,27895 ,16570,16494,16493 ,0,0,0}, - {27968,27899,27967 ,16574,16500,16573 ,0,0,0}, {27965,27897,27896 ,16571,16496,16494 ,0,0,0}, - {27968,27903,27900 ,16574,16505,16502 ,0,0,0}, {27898,27897,27966 ,16499,16496,16572 ,0,0,0}, - {27904,27901,27969 ,16507,16503,16575 ,0,0,0}, {27899,27898,27967 ,16500,16499,16573 ,0,0,0}, - {27925,27907,27913 ,16530,16511,16518 ,0,0,0}, {27900,27899,27968 ,16502,16500,16574 ,0,0,0}, - {27929,27969,27906 ,16535,16575,16510 ,0,0,0}, {27900,27903,27902 ,16502,16505,16504 ,0,0,0}, - {27969,27970,27906 ,16575,16576,16510 ,0,0,0}, {27928,27931,27930 ,16533,16537,16536 ,0,0,0}, - {27929,27905,27820 ,16535,16509,14008 ,0,0,0}, {27969,27929,27904 ,16575,16535,16507 ,0,0,0}, - {27928,27925,27921 ,16533,16530,16526 ,0,0,0}, {27905,27929,27906 ,16509,16535,16510 ,0,0,0}, - {27932,27927,27971 ,16539,16532,16577 ,0,0,0}, {27932,27933,27451 ,16539,16542,16540 ,0,0,0}, - {27822,27931,27823 ,16538,16537,16541 ,0,0,0}, {27932,27931,27927 ,16539,16537,16532 ,0,0,0}, - {27972,27933,27932 ,13920,16542,16539 ,0,0,0}, {27870,27865,27862 ,16461,16456,16453 ,0,0,0}, - {27866,27864,27863 ,16457,16455,16454 ,0,0,0}, {27854,27479,27475 ,16444,16438,16578 ,0,0,0}, - {27862,27935,27846 ,16453,16544,16435 ,0,0,0}, {27973,27935,27864 ,16579,16544,16455 ,0,0,0}, - {27858,27860,27936 ,16448,16450,16545 ,0,0,0}, {27857,27847,27973 ,16447,16436,16579 ,0,0,0}, - {27860,27974,27937 ,16450,16580,16546 ,0,0,0}, {27857,27848,27847 ,16447,16437,16436 ,0,0,0}, - {27974,27975,27938 ,16580,16581,16547 ,0,0,0}, {27858,27936,27848 ,16448,16545,16437 ,0,0,0}, - {27975,27976,27939 ,16581,16582,16548 ,0,0,0}, {27860,27937,27936 ,16450,16546,16545 ,0,0,0}, - {27976,27977,27940 ,16582,13870,13961 ,0,0,0}, {27974,27938,27937 ,16580,16547,16546 ,0,0,0}, - {27977,27978,27941 ,13870,16583,16549 ,0,0,0}, {27975,27939,27938 ,16581,16548,16547 ,0,0,0}, - {27978,27979,27942 ,16583,16584,16550 ,0,0,0}, {27976,27940,27939 ,16582,13961,16548 ,0,0,0}, - {27979,27980,27943 ,16584,13909,16551 ,0,0,0}, {27977,27941,27940 ,13870,16549,13961 ,0,0,0}, - {27980,27838,27944 ,13909,16423,16552 ,0,0,0}, {27942,27941,27978 ,16550,16549,16583 ,0,0,0}, - {27981,27982,27983 ,16585,16586,16587 ,0,0,0}, {27943,27942,27979 ,16551,16550,16584 ,0,0,0}, - {27836,27982,27945 ,13907,16586,16553 ,0,0,0}, {27944,27943,27980 ,16552,16551,13909 ,0,0,0}, - {27982,27981,27946 ,16586,16585,16554 ,0,0,0}, {27837,27944,27838 ,13956,16552,16423 ,0,0,0}, - {27981,27984,27947 ,16585,16588,16555 ,0,0,0}, {27836,27945,27837 ,13907,16553,13956 ,0,0,0}, - {27984,27985,27948 ,16588,16589,16556 ,0,0,0}, {27982,27946,27945 ,16586,16554,16553 ,0,0,0}, - {27985,27986,27949 ,16589,16590,16557 ,0,0,0}, {27981,27947,27946 ,16585,16555,16554 ,0,0,0}, - {27986,27987,27950 ,16590,16591,16558 ,0,0,0}, {27948,27947,27984 ,16556,16555,16588 ,0,0,0}, - {27828,27951,27987 ,16415,16559,16591 ,0,0,0}, {27949,27948,27985 ,16557,16556,16589 ,0,0,0}, - {27828,27827,27952 ,16415,16414,16560 ,0,0,0}, {27950,27949,27986 ,16558,16557,16590 ,0,0,0}, - {27827,27988,27953 ,16414,16592,16561 ,0,0,0}, {27987,27951,27950 ,16591,16559,16558 ,0,0,0}, - {27988,27989,27954 ,16592,13855,13944 ,0,0,0}, {27828,27952,27951 ,16415,16560,16559 ,0,0,0}, - {27989,27990,27955 ,13855,16593,16562 ,0,0,0}, {27827,27953,27952 ,16414,16561,16560 ,0,0,0}, - {27990,27881,27956 ,16593,16476,16563 ,0,0,0}, {27954,27953,27988 ,13944,16561,16592 ,0,0,0}, - {27991,27992,27993 ,16594,13809,16595 ,0,0,0}, {27955,27954,27989 ,16562,13944,13855 ,0,0,0}, - {27882,27994,27957 ,16477,16596,16564 ,0,0,0}, {27956,27955,27990 ,16563,16562,16593 ,0,0,0}, - {27994,27995,27958 ,16596,16597,16565 ,0,0,0}, {27880,27956,27881 ,16475,16563,16476 ,0,0,0}, - {27995,27996,27959 ,16597,16598,13938 ,0,0,0}, {27882,27957,27880 ,16477,16564,16475 ,0,0,0}, - {27996,27997,27960 ,16598,16599,16566 ,0,0,0}, {27994,27958,27957 ,16596,16565,16564 ,0,0,0}, - {27997,27998,27961 ,16599,16600,16567 ,0,0,0}, {27995,27959,27958 ,16597,13938,16565 ,0,0,0}, - {27998,27999,27962 ,16600,16601,16568 ,0,0,0}, {27960,27959,27996 ,16566,13938,16598 ,0,0,0}, - {27999,27890,27963 ,16601,13890,16569 ,0,0,0}, {27961,27960,27997 ,16567,16566,16599 ,0,0,0}, - {27890,27892,27964 ,13890,16487,16570 ,0,0,0}, {27962,27961,27998 ,16568,16567,16600 ,0,0,0}, - {27892,28000,27965 ,16487,13887,16571 ,0,0,0}, {27999,27963,27962 ,16601,16569,16568 ,0,0,0}, - {28000,28001,27966 ,13887,16602,16572 ,0,0,0}, {27890,27964,27963 ,13890,16570,16569 ,0,0,0}, - {28001,28002,27967 ,16602,16603,16573 ,0,0,0}, {27892,27965,27964 ,16487,16571,16570 ,0,0,0}, - {28002,28003,27968 ,16603,13886,16574 ,0,0,0}, {28000,27966,27965 ,13887,16572,16571 ,0,0,0}, - {28003,28004,27903 ,13886,16604,16505 ,0,0,0}, {28001,27967,27966 ,16602,16573,16572 ,0,0,0}, - {28004,28005,27901 ,16604,13884,16503 ,0,0,0}, {28002,27968,27967 ,16603,16574,16573 ,0,0,0}, - {28005,27970,27969 ,13884,16576,16575 ,0,0,0}, {28003,27903,27968 ,13886,16505,16574 ,0,0,0}, - {27970,27913,27906 ,16576,16518,16510 ,0,0,0}, {27901,27903,28004 ,16503,16505,16604 ,0,0,0}, - {28006,28007,28008 ,13701,16605,16606 ,0,0,0}, {28005,27969,27901 ,13884,16575,16503 ,0,0,0}, - {27926,27908,27921 ,16531,16513,16526 ,0,0,0}, {27920,28009,27971 ,16525,16607,16577 ,0,0,0}, - {27905,27907,27930 ,16509,16511,16536 ,0,0,0}, {27913,27907,27906 ,16518,16511,16510 ,0,0,0}, - {28010,27971,28009 ,16608,16577,16607 ,0,0,0}, {27971,27972,27932 ,16577,13920,16539 ,0,0,0}, - {27931,27928,27927 ,16537,16533,16532 ,0,0,0}, {27927,27920,27971 ,16532,16525,16577 ,0,0,0}, - {28010,27972,27971 ,16608,13920,16577 ,0,0,0}, {27864,27935,27865 ,16455,16544,16456 ,0,0,0}, - {28011,27867,27868 ,14200,16458,16459 ,0,0,0}, {28011,27872,27867 ,14200,16464,16458 ,0,0,0}, - {27935,27973,27847 ,16544,16579,16436 ,0,0,0}, {28012,27973,27867 ,16609,16579,16458 ,0,0,0}, - {27860,28013,27974 ,16450,16610,16580 ,0,0,0}, {27861,27857,28012 ,16451,16447,16609 ,0,0,0}, - {27974,28014,27975 ,16580,16611,16581 ,0,0,0}, {27861,27859,27858 ,16451,16449,16448 ,0,0,0}, - {28015,28016,28017 ,16612,16613,16614 ,0,0,0}, {27859,28013,27860 ,16449,16610,16450 ,0,0,0}, - {27976,27975,28018 ,16582,16581,16615 ,0,0,0}, {28013,28014,27974 ,16610,16611,16580 ,0,0,0}, - {27977,27976,28017 ,13870,16582,16614 ,0,0,0}, {28014,28018,27975 ,16611,16615,16581 ,0,0,0}, - {27978,27977,28016 ,16583,13870,16613 ,0,0,0}, {28018,28017,27976 ,16615,16614,16582 ,0,0,0}, - {27979,27978,28019 ,16584,16583,16616 ,0,0,0}, {28017,28016,27977 ,16614,16613,13870 ,0,0,0}, - {27980,27979,28020 ,13909,16584,16617 ,0,0,0}, {28016,28019,27978 ,16613,16616,16583 ,0,0,0}, - {27838,27980,28021 ,16423,13909,16618 ,0,0,0}, {28019,28020,27979 ,16616,16617,16584 ,0,0,0}, - {27836,27838,28022 ,13907,16423,16619 ,0,0,0}, {28020,28021,27980 ,16617,16618,13909 ,0,0,0}, - {27982,27836,28023 ,16586,13907,16620 ,0,0,0}, {28022,27838,28021 ,16619,16423,16618 ,0,0,0}, - {28024,28025,28026 ,16621,16622,16623 ,0,0,0}, {28023,27836,28022 ,16620,13907,16619 ,0,0,0}, - {27984,27981,28027 ,16588,16585,16624 ,0,0,0}, {28023,27983,27982 ,16620,16587,16586 ,0,0,0}, - {27985,27984,28026 ,16589,16588,16623 ,0,0,0}, {27983,28027,27981 ,16587,16624,16585 ,0,0,0}, - {27986,27985,28025 ,16590,16589,16622 ,0,0,0}, {28027,28026,27984 ,16624,16623,16588 ,0,0,0}, - {27987,27986,28028 ,16591,16590,16625 ,0,0,0}, {28026,28025,27985 ,16623,16622,16589 ,0,0,0}, - {27828,27987,28029 ,16415,16591,16626 ,0,0,0}, {28028,27986,28025 ,16625,16590,16622 ,0,0,0}, - {28030,28031,28032 ,16627,16628,16629 ,0,0,0}, {28029,27987,28028 ,16626,16591,16625 ,0,0,0}, - {27988,27827,28033 ,16592,16414,16630 ,0,0,0}, {28029,27826,27828 ,16626,16413,16415 ,0,0,0}, - {27989,27988,28032 ,13855,16592,16629 ,0,0,0}, {27826,28033,27827 ,16413,16630,16414 ,0,0,0}, - {27990,27989,28031 ,16593,13855,16628 ,0,0,0}, {28033,28032,27988 ,16630,16629,16592 ,0,0,0}, - {27881,27990,28034 ,16476,16593,16631 ,0,0,0}, {28032,28031,27989 ,16629,16628,13855 ,0,0,0}, - {27882,27881,28035 ,16477,16476,16632 ,0,0,0}, {28031,28034,27990 ,16628,16631,16593 ,0,0,0}, - {27994,27882,28036 ,16596,16477,16633 ,0,0,0}, {28035,27881,28034 ,16632,16476,16631 ,0,0,0}, - {27995,27994,28037 ,16597,16596,16634 ,0,0,0}, {28036,27882,28035 ,16633,16477,16632 ,0,0,0}, - {27996,27995,27991 ,16598,16597,16594 ,0,0,0}, {28036,28037,27994 ,16633,16634,16596 ,0,0,0}, - {27997,27996,27993 ,16599,16598,16595 ,0,0,0}, {28037,27991,27995 ,16634,16594,16597 ,0,0,0}, - {27998,27997,28038 ,16600,16599,16635 ,0,0,0}, {27991,27993,27996 ,16594,16595,16598 ,0,0,0}, - {27999,27998,28039 ,16601,16600,16636 ,0,0,0}, {27993,28038,27997 ,16595,16635,16599 ,0,0,0}, - {27890,27999,28040 ,13890,16601,16637 ,0,0,0}, {28039,27998,28038 ,16636,16600,16635 ,0,0,0}, - {28041,28042,28043 ,16638,16639,16640 ,0,0,0}, {28040,27999,28039 ,16637,16601,16636 ,0,0,0}, - {28000,27892,28044 ,13887,16487,16641 ,0,0,0}, {28040,27891,27890 ,16637,16486,13890 ,0,0,0}, - {28001,28000,28043 ,16602,13887,16640 ,0,0,0}, {27891,28044,27892 ,16486,16641,16487 ,0,0,0}, - {28002,28001,28042 ,16603,16602,16639 ,0,0,0}, {28044,28043,28000 ,16641,16640,13887 ,0,0,0}, - {28003,28002,28045 ,13886,16603,16642 ,0,0,0}, {28043,28042,28001 ,16640,16639,16602 ,0,0,0}, - {28004,28003,28046 ,16604,13886,16643 ,0,0,0}, {28042,28045,28002 ,16639,16642,16603 ,0,0,0}, - {28005,28004,28047 ,13884,16604,16644 ,0,0,0}, {28045,28046,28003 ,16642,16643,13886 ,0,0,0}, - {27970,28005,28048 ,16576,13884,16645 ,0,0,0}, {28046,28047,28004 ,16643,16644,16604 ,0,0,0}, - {27913,27970,27911 ,16518,16576,16516 ,0,0,0}, {28047,28048,28005 ,16644,16645,13884 ,0,0,0}, - {27925,27913,27912 ,16530,16518,16517 ,0,0,0}, {28048,27911,27970 ,16645,16516,16576 ,0,0,0}, - {28049,27919,28008 ,16646,16524,16606 ,0,0,0}, {28050,27909,27908 ,16647,16514,16513 ,0,0,0}, - {27907,27925,27928 ,16511,16530,16533 ,0,0,0}, {27912,27926,27925 ,16517,16531,16530 ,0,0,0}, - {28051,28009,28007 ,16648,16607,16605 ,0,0,0}, {28051,28052,28009 ,16648,16649,16607 ,0,0,0}, - {27927,27921,27920 ,16532,16526,16525 ,0,0,0}, {27920,27910,28009 ,16525,16515,16607 ,0,0,0}, - {28010,28009,28052 ,16608,16607,16649 ,0,0,0}, {27864,27867,27973 ,16455,16458,16579 ,0,0,0}, - {27934,27872,28011 ,16543,16464,14200 ,0,0,0}, {27861,28053,27859 ,16451,16650,16449 ,0,0,0}, - {27973,28012,27857 ,16579,16609,16447 ,0,0,0}, {27872,28054,28012 ,16464,16651,16609 ,0,0,0}, - {28013,27859,28055 ,16610,16449,16652 ,0,0,0}, {28054,28053,27861 ,16651,16650,16451 ,0,0,0}, - {28014,28013,28056 ,16611,16610,16653 ,0,0,0}, {27859,28053,28055 ,16449,16650,16652 ,0,0,0}, - {28018,28014,28057 ,16615,16611,16654 ,0,0,0}, {28013,28055,28056 ,16610,16652,16653 ,0,0,0}, - {28017,28018,28058 ,16614,16615,16655 ,0,0,0}, {28056,28057,28014 ,16653,16654,16611 ,0,0,0}, - {28059,28019,28016 ,13827,16616,16613 ,0,0,0}, {28057,28058,28018 ,16654,16655,16615 ,0,0,0}, - {28060,28061,28062 ,16656,16657,16658 ,0,0,0}, {28058,28015,28017 ,16655,16612,16614 ,0,0,0}, - {28019,28063,28020 ,16616,16659,16617 ,0,0,0}, {28015,28059,28016 ,16612,13827,16613 ,0,0,0}, - {28020,28061,28021 ,16617,16657,16618 ,0,0,0}, {28059,28063,28019 ,13827,16659,16616 ,0,0,0}, - {28021,28060,28022 ,16618,16656,16619 ,0,0,0}, {28063,28061,28020 ,16659,16657,16617 ,0,0,0}, - {28022,28064,28023 ,16619,16660,16620 ,0,0,0}, {28061,28060,28021 ,16657,16656,16618 ,0,0,0}, - {28023,28065,27983 ,16620,13734,16587 ,0,0,0}, {28060,28064,28022 ,16656,16660,16619 ,0,0,0}, - {28027,27983,28066 ,16624,16587,16661 ,0,0,0}, {28064,28065,28023 ,16660,13734,16620 ,0,0,0}, - {28026,28027,28067 ,16623,16624,16662 ,0,0,0}, {28065,28066,27983 ,13734,16661,16587 ,0,0,0}, - {28068,28069,28070 ,16663,16664,16665 ,0,0,0}, {28066,28067,28027 ,16661,16662,16624 ,0,0,0}, - {28025,28071,28028 ,16622,16666,16625 ,0,0,0}, {28067,28024,28026 ,16662,16621,16623 ,0,0,0}, - {28028,28072,28029 ,16625,16667,16626 ,0,0,0}, {28024,28071,28025 ,16621,16666,16622 ,0,0,0}, - {28029,28073,27826 ,16626,16668,16413 ,0,0,0}, {28071,28072,28028 ,16666,16667,16625 ,0,0,0}, - {28033,27826,28074 ,16630,16413,16669 ,0,0,0}, {28072,28073,28029 ,16667,16668,16626 ,0,0,0}, - {28032,28033,28075 ,16629,16630,16670 ,0,0,0}, {28073,28074,27826 ,16668,16669,16413 ,0,0,0}, - {28076,28077,28078 ,16671,16672,16673 ,0,0,0}, {28074,28075,28033 ,16669,16670,16630 ,0,0,0}, - {28031,28079,28034 ,16628,13813,16631 ,0,0,0}, {28075,28030,28032 ,16670,16627,16629 ,0,0,0}, - {28034,28080,28035 ,16631,16674,16632 ,0,0,0}, {28030,28079,28031 ,16627,13813,16628 ,0,0,0}, - {28035,28081,28036 ,16632,16675,16633 ,0,0,0}, {28079,28080,28034 ,13813,16674,16631 ,0,0,0}, - {28036,28082,28037 ,16633,16676,16634 ,0,0,0}, {28080,28081,28035 ,16674,16675,16632 ,0,0,0}, - {27991,28037,28083 ,16594,16634,16677 ,0,0,0}, {28081,28082,28036 ,16675,16676,16633 ,0,0,0}, - {28084,28085,28086 ,16678,16679,16680 ,0,0,0}, {28082,28083,28037 ,16676,16677,16634 ,0,0,0}, - {27993,28087,28038 ,16595,16681,16635 ,0,0,0}, {28083,27992,27991 ,16677,13809,16594 ,0,0,0}, - {28038,28085,28039 ,16635,16679,16636 ,0,0,0}, {27992,28087,27993 ,13809,16681,16595 ,0,0,0}, - {28039,28084,28040 ,16636,16678,16637 ,0,0,0}, {28087,28085,28038 ,16681,16679,16635 ,0,0,0}, - {28040,28088,27891 ,16637,16682,16486 ,0,0,0}, {28085,28084,28039 ,16679,16678,16636 ,0,0,0}, - {28044,27891,28089 ,16641,16486,13760 ,0,0,0}, {28084,28088,28040 ,16678,16682,16637 ,0,0,0}, - {28043,28044,28090 ,16640,16641,16683 ,0,0,0}, {28088,28089,27891 ,16682,13760,16486 ,0,0,0}, - {28091,28045,28042 ,16684,16642,16639 ,0,0,0}, {28089,28090,28044 ,13760,16683,16641 ,0,0,0}, - {28092,28093,28094 ,16685,13799,13756 ,0,0,0}, {28090,28041,28043 ,16683,16638,16640 ,0,0,0}, - {28045,28095,28046 ,16642,16686,16643 ,0,0,0}, {28041,28091,28042 ,16638,16684,16639 ,0,0,0}, - {28046,28093,28047 ,16643,13799,16644 ,0,0,0}, {28091,28095,28045 ,16684,16686,16642 ,0,0,0}, - {28047,28092,28048 ,16644,16685,16645 ,0,0,0}, {28095,28093,28046 ,16686,13799,16643 ,0,0,0}, - {28048,28096,27911 ,16645,13797,16516 ,0,0,0}, {28093,28092,28047 ,13799,16685,16644 ,0,0,0}, - {27911,28097,27912 ,16516,16687,16517 ,0,0,0}, {28092,28096,28048 ,16685,13797,16645 ,0,0,0}, - {27912,28098,27926 ,16517,16688,16531 ,0,0,0}, {28096,28097,27911 ,13797,16687,16516 ,0,0,0}, - {27926,28050,27908 ,16531,16647,16513 ,0,0,0}, {28098,27912,28097 ,16688,16517,16687 ,0,0,0}, - {27915,27909,28099 ,16520,16514,16689 ,0,0,0}, {27926,28098,28050 ,16531,16688,16647 ,0,0,0}, - {28007,28100,28008 ,16605,13793,16606 ,0,0,0}, {28009,27910,28007 ,16607,16515,16605 ,0,0,0}, - {27920,27908,27910 ,16525,16513,16515 ,0,0,0}, {27910,28100,28007 ,16515,13793,16605 ,0,0,0}, - {28051,28007,28006 ,16648,16605,13701 ,0,0,0}, {27867,27872,28012 ,16458,16464,16609 ,0,0,0}, - {27852,27851,27873 ,16442,16441,16465 ,0,0,0}, {28053,28101,28055 ,16650,13654,16652 ,0,0,0}, - {28012,28054,27861 ,16609,16651,16451 ,0,0,0}, {27851,28102,28054 ,16441,16690,16651 ,0,0,0}, - {28056,28055,28103 ,16653,16652,16691 ,0,0,0}, {28053,28102,28101 ,16650,16690,13654 ,0,0,0}, - {28057,28056,28104 ,16654,16653,16692 ,0,0,0}, {28055,28101,28103 ,16652,13654,16691 ,0,0,0}, - {28058,28057,28105 ,16655,16654,16693 ,0,0,0}, {28056,28103,28104 ,16653,16691,16692 ,0,0,0}, - {28015,28058,28106 ,16612,16655,16694 ,0,0,0}, {28057,28104,28105 ,16654,16692,16693 ,0,0,0}, - {28059,28015,28107 ,13827,16612,16695 ,0,0,0}, {28058,28105,28106 ,16655,16693,16694 ,0,0,0}, - {28063,28059,28108 ,16659,13827,13787 ,0,0,0}, {28015,28106,28107 ,16612,16694,16695 ,0,0,0}, - {28061,28063,28109 ,16657,16659,16696 ,0,0,0}, {28107,28108,28059 ,16695,13787,13827 ,0,0,0}, - {28110,28111,28112 ,16697,16698,16699 ,0,0,0}, {28108,28109,28063 ,13787,16696,16659 ,0,0,0}, - {28060,28113,28064 ,16656,16700,16660 ,0,0,0}, {28109,28062,28061 ,16696,16658,16657 ,0,0,0}, - {28064,28112,28065 ,16660,16699,13734 ,0,0,0}, {28062,28113,28060 ,16658,16700,16656 ,0,0,0}, - {28065,28114,28066 ,13734,16701,16661 ,0,0,0}, {28113,28112,28064 ,16700,16699,16660 ,0,0,0}, - {28067,28066,28115 ,16662,16661,16702 ,0,0,0}, {28112,28114,28065 ,16699,16701,13734 ,0,0,0}, - {28024,28067,28116 ,16621,16662,16703 ,0,0,0}, {28066,28114,28115 ,16661,16701,16702 ,0,0,0}, - {28071,28024,28117 ,16666,16621,16704 ,0,0,0}, {28067,28115,28116 ,16662,16702,16703 ,0,0,0}, - {28072,28071,28118 ,16667,16666,16705 ,0,0,0}, {28116,28117,28024 ,16703,16704,16621 ,0,0,0}, - {28072,28119,28073 ,16667,16706,16668 ,0,0,0}, {28117,28118,28071 ,16704,16705,16666 ,0,0,0}, - {28073,28069,28074 ,16668,16664,16669 ,0,0,0}, {28118,28119,28072 ,16705,16706,16667 ,0,0,0}, - {28075,28074,28120 ,16670,16669,16707 ,0,0,0}, {28119,28069,28073 ,16706,16664,16668 ,0,0,0}, - {28030,28075,28121 ,16627,16670,16708 ,0,0,0}, {28074,28069,28120 ,16669,16664,16707 ,0,0,0}, - {28079,28030,28122 ,13813,16627,16709 ,0,0,0}, {28075,28120,28121 ,16670,16707,16708 ,0,0,0}, - {28080,28079,28123 ,16674,13813,16710 ,0,0,0}, {28121,28122,28030 ,16708,16709,16627 ,0,0,0}, - {28080,28124,28081 ,16674,16711,16675 ,0,0,0}, {28122,28123,28079 ,16709,16710,13813 ,0,0,0}, - {28081,28077,28082 ,16675,16672,16676 ,0,0,0}, {28123,28124,28080 ,16710,16711,16674 ,0,0,0}, - {28083,28082,28125 ,16677,16676,16712 ,0,0,0}, {28124,28077,28081 ,16711,16672,16675 ,0,0,0}, - {27992,28083,28126 ,13809,16677,16713 ,0,0,0}, {28082,28077,28125 ,16676,16672,16712 ,0,0,0}, - {28087,27992,28127 ,16681,13809,16714 ,0,0,0}, {28083,28125,28126 ,16677,16712,16713 ,0,0,0}, - {28085,28087,28128 ,16679,16681,16715 ,0,0,0}, {28126,28127,27992 ,16713,16714,13809 ,0,0,0}, - {28129,28130,28131 ,16716,16717,16718 ,0,0,0}, {28127,28128,28087 ,16714,16715,16681 ,0,0,0}, - {28084,28132,28088 ,16678,16719,16682 ,0,0,0}, {28128,28086,28085 ,16715,16680,16679 ,0,0,0}, - {28088,28131,28089 ,16682,16718,13760 ,0,0,0}, {28086,28132,28084 ,16680,16719,16678 ,0,0,0}, - {28090,28089,28133 ,16683,13760,16720 ,0,0,0}, {28132,28131,28088 ,16719,16718,16682 ,0,0,0}, - {28041,28090,28134 ,16638,16683,16721 ,0,0,0}, {28089,28131,28133 ,13760,16718,16720 ,0,0,0}, - {28091,28041,28135 ,16684,16638,16722 ,0,0,0}, {28090,28133,28134 ,16683,16720,16721 ,0,0,0}, - {28095,28091,28136 ,16686,16684,16723 ,0,0,0}, {28041,28134,28135 ,16638,16721,16722 ,0,0,0}, - {28093,28095,28137 ,13799,16686,16724 ,0,0,0}, {28135,28136,28091 ,16722,16723,16684 ,0,0,0}, - {28138,28096,28092 ,13755,13797,16685 ,0,0,0}, {28136,28137,28095 ,16723,16724,16686 ,0,0,0}, - {28139,28140,28141 ,16725,16726,16727 ,0,0,0}, {28137,28094,28093 ,16724,13756,13799 ,0,0,0}, - {28096,28142,28097 ,13797,16728,16687 ,0,0,0}, {28094,28138,28092 ,13756,13755,16685 ,0,0,0}, - {28097,28141,28098 ,16687,16727,16688 ,0,0,0}, {28138,28142,28096 ,13755,16728,13797 ,0,0,0}, - {28098,28143,28050 ,16688,16729,16647 ,0,0,0}, {28142,28141,28097 ,16728,16727,16687 ,0,0,0}, - {28050,28099,27909 ,16647,16689,16514 ,0,0,0}, {28141,28143,28098 ,16727,16729,16688 ,0,0,0}, - {27909,27915,28100 ,16514,16520,13793 ,0,0,0}, {28050,28143,28099 ,16647,16729,16689 ,0,0,0}, - {28144,28008,27919 ,16730,16606,16524 ,0,0,0}, {28145,28006,28008 ,13563,13701,16606 ,0,0,0}, - {27910,27909,28100 ,16515,16514,13793 ,0,0,0}, {28100,28049,28008 ,13793,16646,16606 ,0,0,0}, - {28144,28145,28008 ,16730,13563,16606 ,0,0,0}, {27872,27851,28054 ,16464,16441,16651 ,0,0,0}, - {28146,27850,27852 ,16731,16440,16442 ,0,0,0}, {28103,28101,27856 ,16691,13654,16445 ,0,0,0}, - {28054,28102,28053 ,16651,16690,16650 ,0,0,0}, {27850,28147,28102 ,16440,16732,16690 ,0,0,0}, - {28104,28103,28148 ,16692,16691,16733 ,0,0,0}, {28101,28147,27856 ,13654,16732,16445 ,0,0,0}, - {28149,28148,28150 ,16734,16733,16735 ,0,0,0}, {28103,27856,28148 ,16691,16445,16733 ,0,0,0}, - {28149,28151,28105 ,16734,16736,16693 ,0,0,0}, {28105,28104,28149 ,16693,16692,16734 ,0,0,0}, - {28151,28152,28106 ,16736,16737,16694 ,0,0,0}, {28106,28105,28151 ,16694,16693,16736 ,0,0,0}, - {28152,28153,28107 ,16737,16738,16695 ,0,0,0}, {28107,28106,28152 ,16695,16694,16737 ,0,0,0}, - {28153,28154,28108 ,16738,16739,13787 ,0,0,0}, {28108,28107,28153 ,13787,16695,16738 ,0,0,0}, - {28154,28155,28109 ,16739,16740,16696 ,0,0,0}, {28109,28108,28154 ,16696,13787,16739 ,0,0,0}, - {28155,28156,28062 ,16740,16741,16658 ,0,0,0}, {28062,28109,28155 ,16658,16696,16740 ,0,0,0}, - {28156,28110,28113 ,16741,16697,16700 ,0,0,0}, {28062,28156,28113 ,16658,16741,16700 ,0,0,0}, - {27466,28157,28158 ,16742,16743,13617 ,0,0,0}, {28113,28110,28112 ,16700,16697,16699 ,0,0,0}, - {28114,28159,28115 ,16701,16744,16702 ,0,0,0}, {28112,28111,28114 ,16699,16698,16701 ,0,0,0}, - {28160,28159,28158 ,16745,16744,13617 ,0,0,0}, {28111,28159,28114 ,16698,16744,16701 ,0,0,0}, - {28160,28161,28116 ,16745,16746,16703 ,0,0,0}, {28116,28115,28160 ,16703,16702,16745 ,0,0,0}, - {28161,28162,28117 ,16746,16747,16704 ,0,0,0}, {28117,28116,28161 ,16704,16703,16746 ,0,0,0}, - {28162,28163,28118 ,16747,16748,16705 ,0,0,0}, {28118,28117,28162 ,16705,16704,16747 ,0,0,0}, - {28163,28070,28119 ,16748,16665,16706 ,0,0,0}, {28118,28163,28119 ,16705,16748,16706 ,0,0,0}, - {28164,28165,28166 ,13610,13730,13608 ,0,0,0}, {28119,28070,28069 ,16706,16665,16664 ,0,0,0}, - {28068,28165,28120 ,16663,13730,16707 ,0,0,0}, {28069,28068,28120 ,16664,16663,16707 ,0,0,0}, - {28165,28167,28121 ,13730,16749,16708 ,0,0,0}, {28121,28120,28165 ,16708,16707,13730 ,0,0,0}, - {28167,28168,28122 ,16749,16750,16709 ,0,0,0}, {28122,28121,28167 ,16709,16708,16749 ,0,0,0}, - {28168,28169,28123 ,16750,16751,16710 ,0,0,0}, {28123,28122,28168 ,16710,16709,16750 ,0,0,0}, - {28169,28078,28124 ,16751,16673,16711 ,0,0,0}, {28123,28169,28124 ,16710,16751,16711 ,0,0,0}, - {28170,27457,28171 ,13596,16752,13595 ,0,0,0}, {28124,28078,28077 ,16711,16673,16672 ,0,0,0}, - {28126,28125,28172 ,16713,16712,16753 ,0,0,0}, {28077,28076,28125 ,16672,16671,16712 ,0,0,0}, - {28173,28172,28170 ,16754,16753,13596 ,0,0,0}, {28125,28076,28172 ,16712,16671,16753 ,0,0,0}, - {28173,28174,28127 ,16754,16755,16714 ,0,0,0}, {28127,28126,28173 ,16714,16713,16754 ,0,0,0}, - {28174,28175,28128 ,16755,16756,16715 ,0,0,0}, {28128,28127,28174 ,16715,16714,16755 ,0,0,0}, - {28175,28176,28086 ,16756,16757,16680 ,0,0,0}, {28086,28128,28175 ,16680,16715,16756 ,0,0,0}, - {28176,28129,28132 ,16757,16716,16719 ,0,0,0}, {28086,28176,28132 ,16680,16757,16719 ,0,0,0}, - {28177,28178,28179 ,16758,16759,16760 ,0,0,0}, {28132,28129,28131 ,16719,16716,16718 ,0,0,0}, - {28130,28178,28133 ,16717,16759,16720 ,0,0,0}, {28131,28130,28133 ,16718,16717,16720 ,0,0,0}, - {28178,28180,28134 ,16759,16761,16721 ,0,0,0}, {28134,28133,28178 ,16721,16720,16759 ,0,0,0}, - {28180,28181,28135 ,16761,13717,16722 ,0,0,0}, {28135,28134,28180 ,16722,16721,16761 ,0,0,0}, - {28181,28182,28136 ,13717,16762,16723 ,0,0,0}, {28136,28135,28181 ,16723,16722,13717 ,0,0,0}, - {28182,28183,28137 ,16762,16763,16724 ,0,0,0}, {28137,28136,28182 ,16724,16723,16762 ,0,0,0}, - {28183,28184,28094 ,16763,16764,13756 ,0,0,0}, {28094,28137,28183 ,13756,16724,16763 ,0,0,0}, - {28184,28185,28138 ,16764,16765,13755 ,0,0,0}, {28138,28094,28184 ,13755,13756,16764 ,0,0,0}, - {28185,28139,28142 ,16765,16725,16728 ,0,0,0}, {28138,28185,28142 ,13755,16765,16728 ,0,0,0}, - {28143,28140,28186 ,16729,16726,16766 ,0,0,0}, {28142,28139,28141 ,16728,16725,16727 ,0,0,0}, - {27916,27915,28099 ,16521,16520,16689 ,0,0,0}, {28141,28140,28143 ,16727,16726,16729 ,0,0,0}, - {27914,28049,27915 ,16519,16646,16520 ,0,0,0}, {28143,28186,28099 ,16729,16766,16689 ,0,0,0}, - {28187,27923,27917 ,16767,16528,16522 ,0,0,0}, {28186,27916,28099 ,16766,16521,16689 ,0,0,0}, - {27914,28188,28189 ,16519,16768,16769 ,0,0,0}, {28190,28144,27919 ,16770,16730,16524 ,0,0,0}, - {28100,27915,28049 ,13793,16520,16646 ,0,0,0}, {27919,28049,28189 ,16524,16646,16769 ,0,0,0}, - {27918,28190,27919 ,16523,16770,16524 ,0,0,0}, {27851,27850,28102 ,16441,16440,16690 ,0,0,0}, - {28146,27853,27849 ,16731,16443,16439 ,0,0,0}, {28147,27849,27854 ,16732,16439,16444 ,0,0,0}, - {28102,28147,28101 ,16690,16732,13654 ,0,0,0}, {27856,28147,27854 ,16445,16732,16444 ,0,0,0}, - {27855,28150,28148 ,13641,16735,16733 ,0,0,0}, {28148,27856,27855 ,16733,16445,13641 ,0,0,0}, - {28150,28191,28149 ,16735,16771,16734 ,0,0,0}, {28192,28151,28191 ,16772,16736,16771 ,0,0,0}, - {28104,28148,28149 ,16692,16733,16734 ,0,0,0}, {28151,28149,28191 ,16736,16734,16771 ,0,0,0}, - {28193,28152,28192 ,16773,16737,16772 ,0,0,0}, {28152,28151,28192 ,16737,16736,16772 ,0,0,0}, - {28194,28153,28193 ,16774,16738,16773 ,0,0,0}, {28153,28152,28193 ,16738,16737,16773 ,0,0,0}, - {28195,28154,28194 ,16775,16739,16774 ,0,0,0}, {28154,28153,28194 ,16739,16738,16774 ,0,0,0}, - {28196,28155,28195 ,16776,16740,16775 ,0,0,0}, {28155,28154,28195 ,16740,16739,16775 ,0,0,0}, - {28197,28156,28196 ,13624,16741,16776 ,0,0,0}, {28156,28155,28196 ,16741,16740,16776 ,0,0,0}, - {28198,28110,28197 ,13626,16697,13624 ,0,0,0}, {28110,28156,28197 ,16697,16741,13624 ,0,0,0}, - {28199,28111,28198 ,16777,16698,13626 ,0,0,0}, {28111,28110,28198 ,16698,16697,13626 ,0,0,0}, - {28158,28159,28199 ,13617,16744,16777 ,0,0,0}, {28111,28199,28159 ,16698,16777,16744 ,0,0,0}, - {28158,28157,28160 ,13617,16743,16745 ,0,0,0}, {28200,28161,28157 ,16778,16746,16743 ,0,0,0}, - {28115,28159,28160 ,16702,16744,16745 ,0,0,0}, {28161,28160,28157 ,16746,16745,16743 ,0,0,0}, - {28201,28162,28200 ,16779,16747,16778 ,0,0,0}, {28162,28161,28200 ,16747,16746,16778 ,0,0,0}, - {28202,28163,28201 ,16780,16748,16779 ,0,0,0}, {28163,28162,28201 ,16748,16747,16779 ,0,0,0}, - {28203,28070,28202 ,16781,16665,16780 ,0,0,0}, {28070,28163,28202 ,16665,16748,16780 ,0,0,0}, - {28166,28068,28203 ,13608,16663,16781 ,0,0,0}, {28068,28070,28203 ,16663,16665,16781 ,0,0,0}, - {28166,27381,28164 ,13608,13677,13610 ,0,0,0}, {28068,28166,28165 ,16663,13608,13730 ,0,0,0}, - {28204,28167,28164 ,16782,16749,13610 ,0,0,0}, {28167,28165,28164 ,16749,13730,13610 ,0,0,0}, - {28205,28168,28204 ,16783,16750,16782 ,0,0,0}, {28168,28167,28204 ,16750,16749,16782 ,0,0,0}, - {28206,28169,28205 ,13679,16751,16783 ,0,0,0}, {28169,28168,28205 ,16751,16750,16783 ,0,0,0}, - {28207,28078,28206 ,16784,16673,13679 ,0,0,0}, {28078,28169,28206 ,16673,16751,13679 ,0,0,0}, - {28208,28076,28207 ,16785,16671,16784 ,0,0,0}, {28076,28078,28207 ,16671,16673,16784 ,0,0,0}, - {28170,28172,28208 ,13596,16753,16785 ,0,0,0}, {28076,28208,28172 ,16671,16785,16753 ,0,0,0}, - {28170,28171,28173 ,13596,13595,16754 ,0,0,0}, {28209,28174,28171 ,16786,16755,13595 ,0,0,0}, - {28126,28172,28173 ,16713,16753,16754 ,0,0,0}, {28174,28173,28171 ,16755,16754,13595 ,0,0,0}, - {28210,28175,28209 ,16787,16756,16786 ,0,0,0}, {28175,28174,28209 ,16756,16755,16786 ,0,0,0}, - {28211,28176,28210 ,16788,16757,16787 ,0,0,0}, {28176,28175,28210 ,16757,16756,16787 ,0,0,0}, - {28212,28129,28211 ,16789,16716,16788 ,0,0,0}, {28129,28176,28211 ,16716,16757,16788 ,0,0,0}, - {28179,28130,28212 ,16760,16717,16789 ,0,0,0}, {28130,28129,28212 ,16717,16716,16789 ,0,0,0}, - {28179,27403,28177 ,16760,13686,16758 ,0,0,0}, {28130,28179,28178 ,16717,16760,16759 ,0,0,0}, - {28213,28180,28177 ,16790,16761,16758 ,0,0,0}, {28180,28178,28177 ,16761,16759,16758 ,0,0,0}, - {28214,28181,28213 ,16791,13717,16790 ,0,0,0}, {28181,28180,28213 ,13717,16761,16790 ,0,0,0}, - {28215,28182,28214 ,16792,16762,16791 ,0,0,0}, {28182,28181,28214 ,16762,13717,16791 ,0,0,0}, - {28216,28183,28215 ,16793,16763,16792 ,0,0,0}, {28183,28182,28215 ,16763,16762,16792 ,0,0,0}, - {28217,28184,28216 ,16794,16764,16793 ,0,0,0}, {28184,28183,28216 ,16764,16763,16793 ,0,0,0}, - {28218,28185,28217 ,16795,16765,16794 ,0,0,0}, {28185,28184,28217 ,16765,16764,16794 ,0,0,0}, - {28219,28139,28218 ,16796,16725,16795 ,0,0,0}, {28139,28185,28218 ,16725,16765,16795 ,0,0,0}, - {28220,28140,28219 ,13546,16726,16796 ,0,0,0}, {28140,28139,28219 ,16726,16725,16796 ,0,0,0}, - {28221,28186,28220 ,16797,16766,13546 ,0,0,0}, {28186,28140,28220 ,16766,16726,13546 ,0,0,0}, - {28222,27916,28221 ,13560,16521,16797 ,0,0,0}, {27916,28186,28221 ,16521,16766,16797 ,0,0,0}, - {28222,28188,27914 ,13560,16768,16519 ,0,0,0}, {27914,27916,28222 ,16519,16521,13560 ,0,0,0}, - {28188,28187,28189 ,16768,16767,16769 ,0,0,0}, {27919,28189,27917 ,16524,16769,16522 ,0,0,0}, - {28049,27914,28189 ,16646,16519,16769 ,0,0,0}, {28187,27917,28189 ,16767,16522,16769 ,0,0,0}, - {27918,27917,27922 ,16523,16522,16527 ,0,0,0}, {28147,27850,27849 ,16732,16440,16439 ,0,0,0}, - {27849,27850,28146 ,16439,16440,16731 ,0,0,0}, {27475,27473,27854 ,16578,16798,16444 ,0,0,0}, - {27854,27473,27855 ,16444,16798,13641 ,0,0,0}, {27473,27341,27855 ,16798,13645,13641 ,0,0,0}, - {27855,27341,28150 ,13641,13645,16735 ,0,0,0}, {27341,27340,28150 ,13645,13639,16735 ,0,0,0}, - {28150,27340,28191 ,16735,13639,16771 ,0,0,0}, {27340,27361,28191 ,13639,13634,16771 ,0,0,0}, - {28191,27361,28192 ,16771,13634,16772 ,0,0,0}, {27361,27331,28192 ,13634,16799,16772 ,0,0,0}, - {28192,27331,28193 ,16772,16799,16773 ,0,0,0}, {27331,27366,28193 ,16799,16800,16773 ,0,0,0}, - {28193,27366,28194 ,16773,16800,16774 ,0,0,0}, {27366,27363,28194 ,16800,16801,16774 ,0,0,0}, - {28194,27363,28195 ,16774,16801,16775 ,0,0,0}, {27363,27368,28195 ,16801,16802,16775 ,0,0,0}, - {27368,27370,28196 ,16802,16803,16776 ,0,0,0}, {27368,28196,28195 ,16802,16776,16775 ,0,0,0}, - {27370,27336,28197 ,16803,13625,13624 ,0,0,0}, {27370,28197,28196 ,16803,13624,16776 ,0,0,0}, - {27336,27335,28198 ,13625,16804,13626 ,0,0,0}, {27336,28198,28197 ,13625,13626,13624 ,0,0,0}, - {27335,27372,28199 ,16804,13621,16777 ,0,0,0}, {27335,28199,28198 ,16804,16777,13626 ,0,0,0}, - {27372,27467,28158 ,13621,16805,13617 ,0,0,0}, {27372,28158,28199 ,13621,13617,16777 ,0,0,0}, - {27466,28158,27467 ,16742,13617,16805 ,0,0,0}, {27466,27375,28157 ,16742,16806,16743 ,0,0,0}, - {28157,27375,28200 ,16743,16806,16778 ,0,0,0}, {27375,27380,28200 ,16806,13612,16778 ,0,0,0}, - {28200,27380,28201 ,16778,13612,16779 ,0,0,0}, {27380,27378,28201 ,13612,13613,16779 ,0,0,0}, - {27378,27377,28202 ,13613,13614,16780 ,0,0,0}, {27378,28202,28201 ,13613,16780,16779 ,0,0,0}, - {27377,27465,28203 ,13614,13607,16781 ,0,0,0}, {27377,28203,28202 ,13614,16781,16780 ,0,0,0}, - {27465,27381,28166 ,13607,13677,13608 ,0,0,0}, {27465,28166,28203 ,13607,13608,16781 ,0,0,0}, - {27381,27464,28164 ,13677,16807,13610 ,0,0,0}, {27464,27460,28164 ,16807,13602,13610 ,0,0,0}, - {28164,27460,28204 ,13610,13602,16782 ,0,0,0}, {27460,27385,28204 ,13602,16808,16782 ,0,0,0}, - {28204,27385,28205 ,16782,16808,16783 ,0,0,0}, {27385,27387,28205 ,16808,16809,16783 ,0,0,0}, - {27387,27392,28206 ,16809,16810,13679 ,0,0,0}, {27387,28206,28205 ,16809,13679,16783 ,0,0,0}, - {27392,27390,28207 ,16810,13598,16784 ,0,0,0}, {27392,28207,28206 ,16810,16784,13679 ,0,0,0}, - {27390,27389,28208 ,13598,13680,16785 ,0,0,0}, {27390,28208,28207 ,13598,16785,16784 ,0,0,0}, - {27389,27458,28170 ,13680,16811,13596 ,0,0,0}, {27389,28170,28208 ,13680,13596,16785 ,0,0,0}, - {27457,28170,27458 ,16752,13596,16811 ,0,0,0}, {27457,27394,28171 ,16752,16812,13595 ,0,0,0}, - {28171,27394,28209 ,13595,16812,16786 ,0,0,0}, {27394,27401,28209 ,16812,13590,16786 ,0,0,0}, - {27401,27400,28210 ,13590,13591,16787 ,0,0,0}, {27401,28210,28209 ,13590,16787,16786 ,0,0,0}, - {27400,27399,28211 ,13591,16813,16788 ,0,0,0}, {27400,28211,28210 ,13591,16788,16787 ,0,0,0}, - {27399,27454,28212 ,16813,16814,16789 ,0,0,0}, {27399,28212,28211 ,16813,16789,16788 ,0,0,0}, - {27454,27403,28179 ,16814,13686,16760 ,0,0,0}, {27454,28179,28212 ,16814,16760,16789 ,0,0,0}, - {27403,27402,28177 ,13686,16815,16758 ,0,0,0}, {27402,27408,28177 ,16815,16816,16758 ,0,0,0}, - {28177,27408,28213 ,16758,16816,16790 ,0,0,0}, {27408,27407,28213 ,16816,13549,16790 ,0,0,0}, - {28213,27407,28214 ,16790,13549,16791 ,0,0,0}, {27407,27412,28214 ,13549,13550,16791 ,0,0,0}, - {28214,27412,28215 ,16791,13550,16792 ,0,0,0}, {27412,27410,28215 ,13550,16817,16792 ,0,0,0}, - {27410,27417,28216 ,16817,16818,16793 ,0,0,0}, {27410,28216,28215 ,16817,16793,16792 ,0,0,0}, - {27417,27414,28217 ,16818,16819,16794 ,0,0,0}, {27417,28217,28216 ,16818,16794,16793 ,0,0,0}, - {27414,27421,28218 ,16819,16820,16795 ,0,0,0}, {27414,28218,28217 ,16819,16795,16794 ,0,0,0}, - {27421,27418,28219 ,16820,13545,16796 ,0,0,0}, {27421,28219,28218 ,16820,16796,16795 ,0,0,0}, - {27418,27423,28220 ,13545,16821,13546 ,0,0,0}, {27418,28220,28219 ,13545,13546,16796 ,0,0,0}, - {27423,27422,28221 ,16821,16822,16797 ,0,0,0}, {27423,28221,28220 ,16821,16797,13546 ,0,0,0}, - {27422,27436,28222 ,16822,16823,13560 ,0,0,0}, {27422,28222,28221 ,16822,13560,16797 ,0,0,0}, - {27436,27435,28188 ,16823,16824,16768 ,0,0,0}, {27436,28188,28222 ,16823,16768,13560 ,0,0,0}, - {27435,27429,28187 ,16824,16825,16767 ,0,0,0}, {27435,28187,28188 ,16824,16767,16768 ,0,0,0}, - {27429,27431,27923 ,16825,16534,16528 ,0,0,0}, {27429,27923,28187 ,16825,16528,16767 ,0,0,0}, - {27924,27923,27431 ,16529,16528,16534 ,0,0,0}, {28223,28224,28225 ,16826,16827,16828 ,0,0,0}, - {28226,27300,27299 ,16829,14541,16830 ,0,0,0}, {28226,28227,27300 ,16829,16831,14541 ,0,0,0}, - {28228,27298,28229 ,16832,16833,14499 ,0,0,0}, {27299,28228,28226 ,16830,16832,16829 ,0,0,0}, - {28228,27299,27298 ,16832,16830,16833 ,0,0,0}, {27296,28230,27297 ,16834,16835,16836 ,0,0,0}, - {27211,27297,28230 ,14500,16836,16835 ,0,0,0}, {27211,28230,28229 ,14500,16835,14499 ,0,0,0}, - {27296,27295,28231 ,16834,14546,16837 ,0,0,0}, {27211,28229,27298 ,14500,14499,16833 ,0,0,0}, - {28230,27296,28231 ,16835,16834,16837 ,0,0,0}, {27301,27300,28227 ,14540,14541,16831 ,0,0,0}, - {28232,27294,28233 ,14502,14547,16838 ,0,0,0}, {28232,27295,27294 ,14502,14546,14547 ,0,0,0}, - {28234,28235,28236 ,14462,16839,14414 ,0,0,0}, {28237,28233,27293 ,16840,16838,14548 ,0,0,0}, - {27294,27293,28233 ,14547,14548,16838 ,0,0,0}, {28238,28237,27292 ,16841,16840,16842 ,0,0,0}, - {28238,27291,28239 ,16841,16843,16844 ,0,0,0}, {27292,27291,28238 ,16842,16843,16841 ,0,0,0}, - {28239,27291,27290 ,16844,16843,16845 ,0,0,0}, {27293,27292,28237 ,14548,16842,16840 ,0,0,0}, - {28231,27295,28232 ,16837,14546,14502 ,0,0,0}, {27289,27288,28240 ,14552,16846,16847 ,0,0,0}, - {27289,28241,27290 ,14552,16848,16845 ,0,0,0}, {27287,28242,27288 ,16849,16850,16846 ,0,0,0}, - {27289,28240,28241 ,14552,16847,16848 ,0,0,0}, {27287,27286,28243 ,16849,16851,16852 ,0,0,0}, - {28243,28242,27287 ,16852,16850,16849 ,0,0,0}, {27924,26982,26979 ,16853,15691,16854 ,0,0,0}, - {27288,28242,28240 ,16846,16850,16847 ,0,0,0}, {28243,27286,28244 ,16852,16851,16855 ,0,0,0}, - {28245,27924,26979 ,16856,16853,16854 ,0,0,0}, {28246,28247,28243 ,16857,16858,16852 ,0,0,0}, - {28248,28249,28250 ,16859,16860,16861 ,0,0,0}, {28251,28252,28253 ,16862,16863,14423 ,0,0,0}, - {28254,28255,28144 ,16864,16865,14341 ,0,0,0}, {28254,27918,28256 ,16864,16866,16867 ,0,0,0}, - {28244,27286,27285 ,16855,16851,16868 ,0,0,0}, {28245,26979,28250 ,16856,16854,16861 ,0,0,0}, - {28247,28257,28253 ,16858,16869,14423 ,0,0,0}, {28145,28255,28258 ,14340,16865,16870 ,0,0,0}, - {28259,27972,28260 ,16871,16872,16873 ,0,0,0}, {26848,28261,27285 ,16874,16875,16868 ,0,0,0}, - {28262,28051,28258 ,16876,16877,16870 ,0,0,0}, {28052,28051,28262 ,16878,16877,16876 ,0,0,0}, - {28145,28258,28006 ,14340,16870,14339 ,0,0,0}, {26853,27933,26851 ,15589,16879,16880 ,0,0,0}, - {26848,28259,28261 ,16874,16871,16875 ,0,0,0}, {27972,28259,27933 ,16872,16871,16879 ,0,0,0}, - {28259,26851,27933 ,16871,16880,16879 ,0,0,0}, {28257,28263,28253 ,16869,16881,14423 ,0,0,0}, - {28241,28239,27290 ,16848,16844,16845 ,0,0,0}, {28264,27301,28227 ,16882,14540,16831 ,0,0,0}, - {27302,28264,28265 ,16883,16882,16884 ,0,0,0}, {28264,27302,27301 ,16882,16883,14540 ,0,0,0}, - {28266,27261,28265 ,14452,14453,16884 ,0,0,0}, {27302,28265,27261 ,16883,16884,14453 ,0,0,0}, - {27303,28266,27304 ,16885,14452,14537 ,0,0,0}, {27303,27261,28266 ,16885,14453,14452 ,0,0,0}, - {27305,27304,28267 ,16886,14537,16887 ,0,0,0}, {28266,28267,27304 ,14452,16887,14537 ,0,0,0}, - {28268,27306,27305 ,16888,14535,16886 ,0,0,0}, {27305,28267,28268 ,16886,16887,16888 ,0,0,0}, - {28268,28269,27306 ,16888,16889,14535 ,0,0,0}, {27306,28269,27307 ,14535,16889,16890 ,0,0,0}, - {27307,28269,28270 ,16890,16889,16891 ,0,0,0}, {28271,28272,28273 ,16892,16893,16894 ,0,0,0}, - {28274,27308,28270 ,16895,14533,16891 ,0,0,0}, {27307,28270,27308 ,16890,16891,14533 ,0,0,0}, - {28274,28275,27309 ,16895,16896,14532 ,0,0,0}, {27309,27308,28274 ,14532,14533,16895 ,0,0,0}, - {27226,27310,28275 ,14489,16897,16896 ,0,0,0}, {28275,27310,27309 ,16896,16897,14532 ,0,0,0}, - {28276,27311,27226 ,14488,14530,14489 ,0,0,0}, {27226,28275,28276 ,14489,16896,14488 ,0,0,0}, - {27311,28277,27312 ,14530,16898,16899 ,0,0,0}, {28277,27311,28276 ,16898,14530,14488 ,0,0,0}, - {27313,27312,28278 ,14528,16899,16900 ,0,0,0}, {28277,28278,27312 ,16898,16900,16899 ,0,0,0}, - {28279,27313,28278 ,16901,14528,16900 ,0,0,0}, {28279,27314,27313 ,16901,14527,14528 ,0,0,0}, - {28279,28280,27314 ,16901,16902,14527 ,0,0,0}, {28281,28282,28283 ,14397,16903,16904 ,0,0,0}, - {27315,28280,28284 ,14526,16902,14439 ,0,0,0}, {28280,27315,27314 ,16902,14526,14527 ,0,0,0}, - {28285,27272,28284 ,16905,16906,14439 ,0,0,0}, {27315,28284,27272 ,14526,14439,16906 ,0,0,0}, - {27316,28285,27317 ,16907,16905,14524 ,0,0,0}, {27316,27272,28285 ,16907,16906,16905 ,0,0,0}, - {27318,27317,28286 ,16908,14524,16909 ,0,0,0}, {28285,28286,27317 ,16905,16909,14524 ,0,0,0}, - {28287,27319,27318 ,14482,16910,16908 ,0,0,0}, {27318,28286,28287 ,16908,16909,14482 ,0,0,0}, - {27319,28288,27320 ,16910,16911,16912 ,0,0,0}, {28288,27319,28287 ,16911,16910,14482 ,0,0,0}, - {27321,27320,28289 ,16913,16912,16914 ,0,0,0}, {28288,28289,27320 ,16911,16914,16912 ,0,0,0}, - {28290,27321,28289 ,16915,16913,16914 ,0,0,0}, {28290,27322,27321 ,16915,16916,16913 ,0,0,0}, - {28290,28291,27322 ,16915,16917,16916 ,0,0,0}, {28292,28293,28294 ,16918,16919,16920 ,0,0,0}, - {27323,28291,28293 ,16921,16917,16919 ,0,0,0}, {28291,27323,27322 ,16917,16921,16916 ,0,0,0}, - {28295,27324,28293 ,14476,16922,16919 ,0,0,0}, {27323,28293,27324 ,16921,16919,16922 ,0,0,0}, - {28296,28297,28298 ,16923,16924,16925 ,0,0,0}, {27325,27324,28295 ,14516,16922,14476 ,0,0,0}, - {28299,28300,28301 ,16926,16927,16928 ,0,0,0}, {28302,28303,28304 ,16929,16930,16931 ,0,0,0}, - {28305,28299,28306 ,16932,16926,16933 ,0,0,0}, {28307,28308,28309 ,16934,16935,16936 ,0,0,0}, - {28310,28311,28312 ,16937,16938,16939 ,0,0,0}, {28307,28313,28314 ,16934,16940,16941 ,0,0,0}, - {28315,28316,28317 ,16942,16943,16944 ,0,0,0}, {28314,28313,28318 ,16941,16940,16945 ,0,0,0}, - {27326,27325,28319 ,14515,14516,16946 ,0,0,0}, {26916,28318,28313 ,15634,16945,16940 ,0,0,0}, - {28320,28321,28322 ,16947,14473,16948 ,0,0,0}, {27325,28295,28319 ,14516,14476,16946 ,0,0,0}, - {27326,28304,27327 ,14515,16931,14514 ,0,0,0}, {28292,28295,28293 ,16918,14476,16919 ,0,0,0}, - {27328,27327,28321 ,16949,14514,14473 ,0,0,0}, {28304,28321,27327 ,16931,14473,14514 ,0,0,0}, - {27329,28320,27330 ,16950,16947,16951 ,0,0,0}, {27328,28321,28320 ,16949,14473,16947 ,0,0,0}, - {27330,28323,26950 ,16951,16952,15664 ,0,0,0}, {28320,28323,27330 ,16947,16952,16951 ,0,0,0}, - {26851,28259,26848 ,16880,16871,16874 ,0,0,0}, {28010,28260,27972 ,16953,16873,16872 ,0,0,0}, - {28010,28262,28260 ,16953,16876,16873 ,0,0,0}, {28261,28244,27285 ,16875,16855,16868 ,0,0,0}, - {28261,28260,28324 ,16875,16873,16954 ,0,0,0}, {28325,28242,28247 ,16955,16850,16858 ,0,0,0}, - {28244,28324,28246 ,16855,16954,16857 ,0,0,0}, {28326,28240,28325 ,16956,16847,16955 ,0,0,0}, - {28246,28243,28244 ,16857,16852,16855 ,0,0,0}, {28327,28241,28326 ,16957,16848,16956 ,0,0,0}, - {28247,28242,28243 ,16858,16850,16852 ,0,0,0}, {28328,28239,28327 ,16958,16844,16957 ,0,0,0}, - {28325,28240,28242 ,16955,16847,16850 ,0,0,0}, {28329,28238,28328 ,14467,16841,16958 ,0,0,0}, - {28326,28241,28240 ,16956,16848,16847 ,0,0,0}, {28330,28237,28329 ,16959,16840,14467 ,0,0,0}, - {28327,28239,28241 ,16957,16844,16848 ,0,0,0}, {28331,28233,28330 ,16960,16838,16959 ,0,0,0}, - {28328,28238,28239 ,16958,16841,16844 ,0,0,0}, {28331,28332,28232 ,16960,16961,14502 ,0,0,0}, - {28237,28238,28329 ,16840,16841,14467 ,0,0,0}, {28333,28231,28332 ,16962,16837,16961 ,0,0,0}, - {28233,28237,28330 ,16838,16840,16959 ,0,0,0}, {28234,28230,28333 ,14462,16835,16962 ,0,0,0}, - {28232,28233,28331 ,14502,16838,16960 ,0,0,0}, {28334,28229,28234 ,16963,14499,14462 ,0,0,0}, - {28231,28232,28332 ,16837,14502,16961 ,0,0,0}, {28335,28228,28334 ,16964,16832,16963 ,0,0,0}, - {28230,28231,28333 ,16835,16837,16962 ,0,0,0}, {28336,28226,28335 ,16965,16829,16964 ,0,0,0}, - {28234,28229,28230 ,14462,14499,16835 ,0,0,0}, {28337,28227,28336 ,16966,16831,16965 ,0,0,0}, - {28334,28228,28229 ,16963,16832,14499 ,0,0,0}, {28337,28338,28264 ,16966,16967,16882 ,0,0,0}, - {28226,28228,28335 ,16829,16832,16964 ,0,0,0}, {28339,28265,28338 ,16968,16884,16967 ,0,0,0}, - {28227,28226,28336 ,16831,16829,16965 ,0,0,0}, {28340,28266,28339 ,16969,14452,16968 ,0,0,0}, - {28264,28227,28337 ,16882,16831,16966 ,0,0,0}, {28341,28267,28340 ,16970,16887,16969 ,0,0,0}, - {28265,28264,28338 ,16884,16882,16967 ,0,0,0}, {28342,28268,28341 ,16971,16888,16970 ,0,0,0}, - {28266,28265,28339 ,14452,16884,16968 ,0,0,0}, {28343,28269,28342 ,14450,16889,16971 ,0,0,0}, - {28340,28267,28266 ,16969,16887,14452 ,0,0,0}, {28343,28344,28270 ,14450,16972,16891 ,0,0,0}, - {28268,28267,28341 ,16888,16887,16970 ,0,0,0}, {28345,28274,28344 ,16973,16895,16972 ,0,0,0}, - {28269,28268,28342 ,16889,16888,16971 ,0,0,0}, {28271,28275,28345 ,16892,16896,16973 ,0,0,0}, - {28270,28269,28343 ,16891,16889,14450 ,0,0,0}, {28346,28276,28271 ,16974,14488,16892 ,0,0,0}, - {28274,28270,28344 ,16895,16891,16972 ,0,0,0}, {28347,28277,28346 ,16975,16898,16974 ,0,0,0}, - {28275,28274,28345 ,16896,16895,16973 ,0,0,0}, {28348,28278,28347 ,14444,16900,16975 ,0,0,0}, - {28271,28276,28275 ,16892,14488,16896 ,0,0,0}, {28349,28279,28348 ,16976,16901,14444 ,0,0,0}, - {28346,28277,28276 ,16974,16898,14488 ,0,0,0}, {28349,28350,28280 ,16976,16977,16902 ,0,0,0}, - {28278,28277,28347 ,16900,16898,16975 ,0,0,0}, {28351,28284,28350 ,16978,14439,16977 ,0,0,0}, - {28279,28278,28348 ,16901,16900,14444 ,0,0,0}, {28352,28285,28351 ,16979,16905,16978 ,0,0,0}, - {28280,28279,28349 ,16902,16901,16976 ,0,0,0}, {28353,28286,28352 ,16980,16909,16979 ,0,0,0}, - {28284,28280,28350 ,14439,16902,16977 ,0,0,0}, {28354,28287,28353 ,16981,14482,16980 ,0,0,0}, - {28351,28285,28284 ,16978,16905,14439 ,0,0,0}, {28355,28288,28354 ,16982,16911,16981 ,0,0,0}, - {28352,28286,28285 ,16979,16909,16905 ,0,0,0}, {28356,28289,28355 ,16983,16914,16982 ,0,0,0}, - {28353,28287,28286 ,16980,14482,16909 ,0,0,0}, {28357,28290,28356 ,16984,16915,16983 ,0,0,0}, - {28354,28288,28287 ,16981,16911,14482 ,0,0,0}, {28357,28294,28291 ,16984,16920,16917 ,0,0,0}, - {28289,28288,28355 ,16914,16911,16982 ,0,0,0}, {28295,28292,28358 ,14476,16918,16985 ,0,0,0}, - {28290,28289,28356 ,16915,16914,16983 ,0,0,0}, {28312,28303,28316 ,16939,16930,16943 ,0,0,0}, - {28291,28290,28357 ,16917,16915,16984 ,0,0,0}, {28302,28319,28358 ,16929,16946,16985 ,0,0,0}, - {28293,28291,28294 ,16919,16917,16920 ,0,0,0}, {28302,28358,28359 ,16929,16985,16986 ,0,0,0}, - {28311,28322,28312 ,16938,16948,16939 ,0,0,0}, {28319,28304,27326 ,16946,16931,14515 ,0,0,0}, - {28319,28295,28358 ,16946,14476,16985 ,0,0,0}, {28360,28323,28361 ,16987,16952,16988 ,0,0,0}, - {28319,28302,28304 ,16946,16929,16931 ,0,0,0}, {28322,28321,28303 ,16948,14473,16930 ,0,0,0}, - {28362,28363,28323 ,16989,16990,16952 ,0,0,0}, {27328,28320,27329 ,16949,16947,16950 ,0,0,0}, - {28320,28361,28323 ,16947,16988,16952 ,0,0,0}, {26950,28323,28363 ,15664,16952,16990 ,0,0,0}, - {28259,28260,28261 ,16871,16873,16875 ,0,0,0}, {28052,28262,28010 ,16878,16876,16953 ,0,0,0}, - {28144,28190,28254 ,14341,14342,16864 ,0,0,0}, {28261,28324,28244 ,16875,16954,16855 ,0,0,0}, - {28324,28262,28364 ,16954,16876,16991 ,0,0,0}, {28253,28252,28325 ,14423,16863,16955 ,0,0,0}, - {28257,28246,28364 ,16869,16857,16991 ,0,0,0}, {28252,28365,28326 ,16863,16992,16956 ,0,0,0}, - {28257,28247,28246 ,16869,16858,16857 ,0,0,0}, {28365,28366,28327 ,16992,16993,16957 ,0,0,0}, - {28253,28325,28247 ,14423,16955,16858 ,0,0,0}, {28366,28367,28328 ,16993,16994,16958 ,0,0,0}, - {28252,28326,28325 ,16863,16956,16955 ,0,0,0}, {28367,28368,28329 ,16994,14379,14467 ,0,0,0}, - {28365,28327,28326 ,16992,16957,16956 ,0,0,0}, {28368,28369,28330 ,14379,16995,16959 ,0,0,0}, - {28366,28328,28327 ,16993,16958,16957 ,0,0,0}, {28369,28370,28331 ,16995,16996,16960 ,0,0,0}, - {28367,28329,28328 ,16994,14467,16958 ,0,0,0}, {28370,28371,28332 ,16996,14416,16961 ,0,0,0}, - {28368,28330,28329 ,14379,16959,14467 ,0,0,0}, {28371,28235,28333 ,14416,16839,16962 ,0,0,0}, - {28331,28330,28369 ,16960,16959,16995 ,0,0,0}, {28372,28373,28374 ,16997,16998,16999 ,0,0,0}, - {28332,28331,28370 ,16961,16960,16996 ,0,0,0}, {28236,28373,28334 ,14414,16998,16963 ,0,0,0}, - {28333,28332,28371 ,16962,16961,14416 ,0,0,0}, {28373,28372,28335 ,16998,16997,16964 ,0,0,0}, - {28234,28333,28235 ,14462,16962,16839 ,0,0,0}, {28372,28375,28336 ,16997,17000,16965 ,0,0,0}, - {28236,28334,28234 ,14414,16963,14462 ,0,0,0}, {28375,28376,28337 ,17000,17001,16966 ,0,0,0}, - {28373,28335,28334 ,16998,16964,16963 ,0,0,0}, {28376,28377,28338 ,17001,17002,16967 ,0,0,0}, - {28372,28336,28335 ,16997,16965,16964 ,0,0,0}, {28377,28378,28339 ,17002,17003,16968 ,0,0,0}, - {28337,28336,28375 ,16966,16965,17000 ,0,0,0}, {28224,28340,28378 ,16827,16969,17003 ,0,0,0}, - {28338,28337,28376 ,16967,16966,17001 ,0,0,0}, {28224,28223,28341 ,16827,16826,16970 ,0,0,0}, - {28339,28338,28377 ,16968,16967,17002 ,0,0,0}, {28223,28379,28342 ,16826,17004,16971 ,0,0,0}, - {28378,28340,28339 ,17003,16969,16968 ,0,0,0}, {28379,28380,28343 ,17004,14364,14450 ,0,0,0}, - {28224,28341,28340 ,16827,16970,16969 ,0,0,0}, {28380,28381,28344 ,14364,17005,16972 ,0,0,0}, - {28223,28342,28341 ,16826,16971,16970 ,0,0,0}, {28381,28272,28345 ,17005,16893,16973 ,0,0,0}, - {28343,28342,28379 ,14450,16971,17004 ,0,0,0}, {28382,28383,28384 ,17006,17007,17008 ,0,0,0}, - {28344,28343,28380 ,16972,14450,14364 ,0,0,0}, {28273,28385,28346 ,16894,17009,16974 ,0,0,0}, - {28345,28344,28381 ,16973,16972,17005 ,0,0,0}, {28385,28386,28347 ,17009,17010,16975 ,0,0,0}, - {28271,28345,28272 ,16892,16973,16893 ,0,0,0}, {28386,28387,28348 ,17010,17011,14444 ,0,0,0}, - {28273,28346,28271 ,16894,16974,16892 ,0,0,0}, {28387,28388,28349 ,17011,17012,16976 ,0,0,0}, - {28385,28347,28346 ,17009,16975,16974 ,0,0,0}, {28388,28389,28350 ,17012,17013,16977 ,0,0,0}, - {28386,28348,28347 ,17010,14444,16975 ,0,0,0}, {28389,28390,28351 ,17013,17014,16978 ,0,0,0}, - {28349,28348,28387 ,16976,14444,17011 ,0,0,0}, {28390,28281,28352 ,17014,14397,16979 ,0,0,0}, - {28350,28349,28388 ,16977,16976,17012 ,0,0,0}, {28281,28283,28353 ,14397,16904,16980 ,0,0,0}, - {28351,28350,28389 ,16978,16977,17013 ,0,0,0}, {28283,28391,28354 ,16904,14394,16981 ,0,0,0}, - {28390,28352,28351 ,17014,16979,16978 ,0,0,0}, {28391,28392,28355 ,14394,17015,16982 ,0,0,0}, - {28281,28353,28352 ,14397,16980,16979 ,0,0,0}, {28392,28393,28356 ,17015,17016,16983 ,0,0,0}, - {28283,28354,28353 ,16904,16981,16980 ,0,0,0}, {28393,28394,28357 ,17016,14393,16984 ,0,0,0}, - {28391,28355,28354 ,14394,16982,16981 ,0,0,0}, {28394,28395,28294 ,14393,17017,16920 ,0,0,0}, - {28392,28356,28355 ,17015,16983,16982 ,0,0,0}, {28395,28396,28292 ,17017,17018,16918 ,0,0,0}, - {28393,28357,28356 ,17016,16984,16983 ,0,0,0}, {28396,28359,28358 ,17018,16986,16985 ,0,0,0}, - {28394,28294,28357 ,14393,16920,16984 ,0,0,0}, {28359,28316,28302 ,16986,16943,16929 ,0,0,0}, - {28292,28294,28395 ,16918,16920,17017 ,0,0,0}, {28397,28311,28398 ,17019,16938,17020 ,0,0,0}, - {28292,28396,28358 ,16918,17018,16985 ,0,0,0}, {28322,28311,28361 ,16948,16938,16988 ,0,0,0}, - {28310,28398,28311 ,16937,17020,16938 ,0,0,0}, {28304,28303,28321 ,16931,16930,14473 ,0,0,0}, - {28316,28303,28302 ,16943,16930,16929 ,0,0,0}, {28399,28360,28296 ,17021,16987,16923 ,0,0,0}, - {28360,28362,28323 ,16987,16989,16952 ,0,0,0}, {28320,28322,28361 ,16947,16948,16988 ,0,0,0}, - {28360,28361,28397 ,16987,16988,17019 ,0,0,0}, {28399,28362,28360 ,17021,16989,16987 ,0,0,0}, - {28260,28262,28324 ,16873,16876,16954 ,0,0,0}, {28006,28258,28051 ,14339,16870,16877 ,0,0,0}, - {26977,28250,26979 ,17022,16861,16854 ,0,0,0}, {28324,28364,28246 ,16954,16991,16857 ,0,0,0}, - {28364,28258,28400 ,16991,16870,17023 ,0,0,0}, {28252,28401,28365 ,16863,17024,16992 ,0,0,0}, - {28263,28257,28400 ,16881,16869,17023 ,0,0,0}, {28365,28402,28366 ,16992,17025,16993 ,0,0,0}, - {28263,28251,28253 ,16881,16862,14423 ,0,0,0}, {28403,28404,28405 ,17026,17027,17028 ,0,0,0}, - {28251,28401,28252 ,16862,17024,16863 ,0,0,0}, {28367,28366,28406 ,16994,16993,17029 ,0,0,0}, - {28401,28402,28365 ,17024,17025,16992 ,0,0,0}, {28368,28367,28405 ,14379,16994,17028 ,0,0,0}, - {28402,28406,28366 ,17025,17029,16993 ,0,0,0}, {28369,28368,28404 ,16995,14379,17027 ,0,0,0}, - {28406,28405,28367 ,17029,17028,16994 ,0,0,0}, {28370,28369,28407 ,16996,16995,17030 ,0,0,0}, - {28405,28404,28368 ,17028,17027,14379 ,0,0,0}, {28371,28370,28408 ,14416,16996,17031 ,0,0,0}, - {28404,28407,28369 ,17027,17030,16995 ,0,0,0}, {28235,28371,28409 ,16839,14416,17032 ,0,0,0}, - {28407,28408,28370 ,17030,17031,16996 ,0,0,0}, {28236,28235,28410 ,14414,16839,17033 ,0,0,0}, - {28408,28409,28371 ,17031,17032,14416 ,0,0,0}, {28373,28236,28411 ,16998,14414,17034 ,0,0,0}, - {28410,28235,28409 ,17033,16839,17032 ,0,0,0}, {28412,28413,28414 ,17035,17036,17037 ,0,0,0}, - {28411,28236,28410 ,17034,14414,17033 ,0,0,0}, {28375,28372,28415 ,17000,16997,17038 ,0,0,0}, - {28411,28374,28373 ,17034,16999,16998 ,0,0,0}, {28376,28375,28414 ,17001,17000,17037 ,0,0,0}, - {28374,28415,28372 ,16999,17038,16997 ,0,0,0}, {28377,28376,28413 ,17002,17001,17036 ,0,0,0}, - {28415,28414,28375 ,17038,17037,17000 ,0,0,0}, {28378,28377,28416 ,17003,17002,17039 ,0,0,0}, - {28414,28413,28376 ,17037,17036,17001 ,0,0,0}, {28224,28378,28417 ,16827,17003,17040 ,0,0,0}, - {28416,28377,28413 ,17039,17002,17036 ,0,0,0}, {28418,28419,28420 ,17041,17042,17043 ,0,0,0}, - {28417,28378,28416 ,17040,17003,17039 ,0,0,0}, {28379,28223,28421 ,17004,16826,17044 ,0,0,0}, - {28417,28225,28224 ,17040,16828,16827 ,0,0,0}, {28380,28379,28420 ,14364,17004,17043 ,0,0,0}, - {28225,28421,28223 ,16828,17044,16826 ,0,0,0}, {28381,28380,28419 ,17005,14364,17042 ,0,0,0}, - {28421,28420,28379 ,17044,17043,17004 ,0,0,0}, {28272,28381,28422 ,16893,17005,17045 ,0,0,0}, - {28420,28419,28380 ,17043,17042,14364 ,0,0,0}, {28273,28272,28423 ,16894,16893,17046 ,0,0,0}, - {28419,28422,28381 ,17042,17045,17005 ,0,0,0}, {28385,28273,28424 ,17009,16894,17047 ,0,0,0}, - {28423,28272,28422 ,17046,16893,17045 ,0,0,0}, {28386,28385,28425 ,17010,17009,17048 ,0,0,0}, - {28424,28273,28423 ,17047,16894,17046 ,0,0,0}, {28387,28386,28382 ,17011,17010,17006 ,0,0,0}, - {28424,28425,28385 ,17047,17048,17009 ,0,0,0}, {28388,28387,28384 ,17012,17011,17008 ,0,0,0}, - {28425,28382,28386 ,17048,17006,17010 ,0,0,0}, {28389,28388,28426 ,17013,17012,17049 ,0,0,0}, - {28382,28384,28387 ,17006,17008,17011 ,0,0,0}, {28390,28389,28427 ,17014,17013,17050 ,0,0,0}, - {28384,28426,28388 ,17008,17049,17012 ,0,0,0}, {28281,28390,28428 ,14397,17014,17051 ,0,0,0}, - {28427,28389,28426 ,17050,17013,17049 ,0,0,0}, {28429,28430,28431 ,17052,17053,17054 ,0,0,0}, - {28428,28390,28427 ,17051,17014,17050 ,0,0,0}, {28391,28283,28432 ,14394,16904,17055 ,0,0,0}, - {28428,28282,28281 ,17051,16903,14397 ,0,0,0}, {28392,28391,28431 ,17015,14394,17054 ,0,0,0}, - {28282,28432,28283 ,16903,17055,16904 ,0,0,0}, {28393,28392,28430 ,17016,17015,17053 ,0,0,0}, - {28432,28431,28391 ,17055,17054,14394 ,0,0,0}, {28394,28393,28433 ,14393,17016,17056 ,0,0,0}, - {28431,28430,28392 ,17054,17053,17015 ,0,0,0}, {28395,28394,28434 ,17017,14393,17057 ,0,0,0}, - {28430,28433,28393 ,17053,17056,17016 ,0,0,0}, {28396,28395,28435 ,17018,17017,17058 ,0,0,0}, - {28433,28434,28394 ,17056,17057,14393 ,0,0,0}, {28359,28396,28436 ,16986,17018,17059 ,0,0,0}, - {28434,28435,28395 ,17057,17058,17017 ,0,0,0}, {28316,28359,28317 ,16943,16986,16944 ,0,0,0}, - {28435,28436,28396 ,17058,17059,17018 ,0,0,0}, {28312,28316,28315 ,16939,16943,16942 ,0,0,0}, - {28436,28317,28359 ,17059,16944,16986 ,0,0,0}, {28297,28398,28300 ,16924,17020,16927 ,0,0,0}, - {28398,28437,28300 ,17020,17060,16927 ,0,0,0}, {28303,28312,28322 ,16930,16939,16948 ,0,0,0}, - {28315,28310,28312 ,16942,16937,16939 ,0,0,0}, {28438,28296,28298 ,17061,16923,16925 ,0,0,0}, - {28360,28397,28296 ,16987,17019,16923 ,0,0,0}, {28361,28311,28397 ,16988,16938,17019 ,0,0,0}, - {28397,28297,28296 ,17019,16924,16923 ,0,0,0}, {28399,28296,28438 ,17021,16923,17061 ,0,0,0}, - {28258,28364,28262 ,16870,16991,16876 ,0,0,0}, {28144,28255,28145 ,14341,16865,14340 ,0,0,0}, - {28263,28439,28251 ,16881,17062,16862 ,0,0,0}, {28364,28400,28257 ,16991,17023,16869 ,0,0,0}, - {28255,28440,28400 ,16865,17063,17023 ,0,0,0}, {28401,28251,28441 ,17024,16862,17064 ,0,0,0}, - {28440,28439,28263 ,17063,17062,16881 ,0,0,0}, {28402,28401,28442 ,17025,17024,17065 ,0,0,0}, - {28251,28439,28441 ,16862,17062,17064 ,0,0,0}, {28406,28402,28443 ,17029,17025,17066 ,0,0,0}, - {28401,28441,28442 ,17024,17064,17065 ,0,0,0}, {28405,28406,28444 ,17028,17029,17067 ,0,0,0}, - {28442,28443,28402 ,17065,17066,17025 ,0,0,0}, {28445,28407,28404 ,14333,17030,17027 ,0,0,0}, - {28443,28444,28406 ,17066,17067,17029 ,0,0,0}, {28446,28447,28448 ,17068,17069,17070 ,0,0,0}, - {28444,28403,28405 ,17067,17026,17028 ,0,0,0}, {28407,28449,28408 ,17030,17071,17031 ,0,0,0}, - {28403,28445,28404 ,17026,14333,17027 ,0,0,0}, {28408,28447,28409 ,17031,17069,17032 ,0,0,0}, - {28445,28449,28407 ,14333,17071,17030 ,0,0,0}, {28409,28446,28410 ,17032,17068,17033 ,0,0,0}, - {28449,28447,28408 ,17071,17069,17031 ,0,0,0}, {28410,28450,28411 ,17033,17072,17034 ,0,0,0}, - {28447,28446,28409 ,17069,17068,17032 ,0,0,0}, {28411,28451,28374 ,17034,14238,16999 ,0,0,0}, - {28446,28450,28410 ,17068,17072,17033 ,0,0,0}, {28415,28374,28452 ,17038,16999,17073 ,0,0,0}, - {28450,28451,28411 ,17072,14238,17034 ,0,0,0}, {28414,28415,28453 ,17037,17038,17074 ,0,0,0}, - {28451,28452,28374 ,14238,17073,16999 ,0,0,0}, {28454,28455,28456 ,17075,17076,17077 ,0,0,0}, - {28452,28453,28415 ,17073,17074,17038 ,0,0,0}, {28413,28457,28416 ,17036,17078,17039 ,0,0,0}, - {28453,28412,28414 ,17074,17035,17037 ,0,0,0}, {28416,28458,28417 ,17039,17079,17040 ,0,0,0}, - {28412,28457,28413 ,17035,17078,17036 ,0,0,0}, {28417,28459,28225 ,17040,17080,16828 ,0,0,0}, - {28457,28458,28416 ,17078,17079,17039 ,0,0,0}, {28421,28225,28460 ,17044,16828,17081 ,0,0,0}, - {28458,28459,28417 ,17079,17080,17040 ,0,0,0}, {28420,28421,28461 ,17043,17044,17082 ,0,0,0}, - {28459,28460,28225 ,17080,17081,16828 ,0,0,0}, {28462,28463,28464 ,17083,17084,17085 ,0,0,0}, - {28460,28461,28421 ,17081,17082,17044 ,0,0,0}, {28419,28465,28422 ,17042,14319,17045 ,0,0,0}, - {28461,28418,28420 ,17082,17041,17043 ,0,0,0}, {28422,28466,28423 ,17045,17086,17046 ,0,0,0}, - {28418,28465,28419 ,17041,14319,17042 ,0,0,0}, {28423,28467,28424 ,17046,17087,17047 ,0,0,0}, - {28465,28466,28422 ,14319,17086,17045 ,0,0,0}, {28424,28468,28425 ,17047,17088,17048 ,0,0,0}, - {28466,28467,28423 ,17086,17087,17046 ,0,0,0}, {28382,28425,28469 ,17006,17048,17089 ,0,0,0}, - {28467,28468,28424 ,17087,17088,17047 ,0,0,0}, {28470,28471,28472 ,17090,17091,17092 ,0,0,0}, - {28468,28469,28425 ,17088,17089,17048 ,0,0,0}, {28384,28473,28426 ,17008,17093,17049 ,0,0,0}, - {28469,28383,28382 ,17089,17007,17006 ,0,0,0}, {28426,28471,28427 ,17049,17091,17050 ,0,0,0}, - {28383,28473,28384 ,17007,17093,17008 ,0,0,0}, {28427,28470,28428 ,17050,17090,17051 ,0,0,0}, - {28473,28471,28426 ,17093,17091,17049 ,0,0,0}, {28428,28474,28282 ,17051,17094,16903 ,0,0,0}, - {28471,28470,28427 ,17091,17090,17050 ,0,0,0}, {28432,28282,28475 ,17055,16903,14264 ,0,0,0}, - {28470,28474,28428 ,17090,17094,17051 ,0,0,0}, {28431,28432,28476 ,17054,17055,17095 ,0,0,0}, - {28474,28475,28282 ,17094,14264,16903 ,0,0,0}, {28477,28433,28430 ,17096,17056,17053 ,0,0,0}, - {28475,28476,28432 ,14264,17095,17055 ,0,0,0}, {28478,28479,28480 ,17097,14305,14260 ,0,0,0}, - {28476,28429,28431 ,17095,17052,17054 ,0,0,0}, {28433,28481,28434 ,17056,17098,17057 ,0,0,0}, - {28429,28477,28430 ,17052,17096,17053 ,0,0,0}, {28434,28479,28435 ,17057,14305,17058 ,0,0,0}, - {28477,28481,28433 ,17096,17098,17056 ,0,0,0}, {28435,28478,28436 ,17058,17097,17059 ,0,0,0}, - {28481,28479,28434 ,17098,14305,17057 ,0,0,0}, {28436,28482,28317 ,17059,17099,16944 ,0,0,0}, - {28479,28478,28435 ,14305,17097,17058 ,0,0,0}, {28317,28483,28315 ,16944,17100,16942 ,0,0,0}, - {28478,28482,28436 ,17097,17099,17059 ,0,0,0}, {28315,28484,28310 ,16942,17101,16937 ,0,0,0}, - {28482,28483,28317 ,17099,17100,16944 ,0,0,0}, {28310,28437,28398 ,16937,17060,17020 ,0,0,0}, - {28484,28315,28483 ,17101,16942,17100 ,0,0,0}, {28485,28486,28298 ,17102,17103,16925 ,0,0,0}, - {28310,28484,28437 ,16937,17101,17060 ,0,0,0}, {28487,28298,28486 ,17104,16925,17103 ,0,0,0}, - {28488,28438,28298 ,17105,17061,16925 ,0,0,0}, {28397,28398,28297 ,17019,17020,16924 ,0,0,0}, - {28297,28485,28298 ,16924,17102,16925 ,0,0,0}, {28487,28488,28298 ,17104,17105,16925 ,0,0,0}, - {28255,28400,28258 ,16865,17023,16870 ,0,0,0}, {27918,28254,28190 ,16866,16864,14342 ,0,0,0}, - {28439,28489,28441 ,17062,14147,17064 ,0,0,0}, {28400,28440,28263 ,17023,17063,16881 ,0,0,0}, - {28254,28490,28440 ,16864,17106,17063 ,0,0,0}, {28442,28441,28491 ,17065,17064,17107 ,0,0,0}, - {28439,28490,28489 ,17062,17106,14147 ,0,0,0}, {28443,28442,28492 ,17066,17065,17108 ,0,0,0}, - {28441,28489,28491 ,17064,14147,17107 ,0,0,0}, {28444,28443,28493 ,17067,17066,17109 ,0,0,0}, - {28442,28491,28492 ,17065,17107,17108 ,0,0,0}, {28403,28444,28494 ,17026,17067,17110 ,0,0,0}, - {28443,28492,28493 ,17066,17108,17109 ,0,0,0}, {28445,28403,28495 ,14333,17026,17111 ,0,0,0}, - {28444,28493,28494 ,17067,17109,17110 ,0,0,0}, {28449,28445,28496 ,17071,14333,14291 ,0,0,0}, - {28403,28494,28495 ,17026,17110,17111 ,0,0,0}, {28447,28449,28497 ,17069,17071,17112 ,0,0,0}, - {28495,28496,28445 ,17111,14291,14333 ,0,0,0}, {28498,28499,28500 ,17113,17114,17115 ,0,0,0}, - {28496,28497,28449 ,14291,17112,17071 ,0,0,0}, {28446,28501,28450 ,17068,17116,17072 ,0,0,0}, - {28497,28448,28447 ,17112,17070,17069 ,0,0,0}, {28450,28500,28451 ,17072,17115,14238 ,0,0,0}, - {28448,28501,28446 ,17070,17116,17068 ,0,0,0}, {28451,28502,28452 ,14238,17117,17073 ,0,0,0}, - {28501,28500,28450 ,17116,17115,17072 ,0,0,0}, {28453,28452,28503 ,17074,17073,17118 ,0,0,0}, - {28500,28502,28451 ,17115,17117,14238 ,0,0,0}, {28412,28453,28504 ,17035,17074,17119 ,0,0,0}, - {28452,28502,28503 ,17073,17117,17118 ,0,0,0}, {28457,28412,28505 ,17078,17035,17120 ,0,0,0}, - {28453,28503,28504 ,17074,17118,17119 ,0,0,0}, {28458,28457,28506 ,17079,17078,17121 ,0,0,0}, - {28504,28505,28412 ,17119,17120,17035 ,0,0,0}, {28458,28507,28459 ,17079,17122,17080 ,0,0,0}, - {28505,28506,28457 ,17120,17121,17078 ,0,0,0}, {28459,28455,28460 ,17080,17076,17081 ,0,0,0}, - {28506,28507,28458 ,17121,17122,17079 ,0,0,0}, {28461,28460,28508 ,17082,17081,17123 ,0,0,0}, - {28507,28455,28459 ,17122,17076,17080 ,0,0,0}, {28418,28461,28509 ,17041,17082,17124 ,0,0,0}, - {28460,28455,28508 ,17081,17076,17123 ,0,0,0}, {28465,28418,28510 ,14319,17041,17125 ,0,0,0}, - {28461,28508,28509 ,17082,17123,17124 ,0,0,0}, {28466,28465,28511 ,17086,14319,17126 ,0,0,0}, - {28509,28510,28418 ,17124,17125,17041 ,0,0,0}, {28466,28512,28467 ,17086,17127,17087 ,0,0,0}, - {28510,28511,28465 ,17125,17126,14319 ,0,0,0}, {28467,28463,28468 ,17087,17084,17088 ,0,0,0}, - {28511,28512,28466 ,17126,17127,17086 ,0,0,0}, {28469,28468,28513 ,17089,17088,17128 ,0,0,0}, - {28512,28463,28467 ,17127,17084,17087 ,0,0,0}, {28383,28469,28514 ,17007,17089,17129 ,0,0,0}, - {28468,28463,28513 ,17088,17084,17128 ,0,0,0}, {28473,28383,28515 ,17093,17007,17130 ,0,0,0}, - {28469,28513,28514 ,17089,17128,17129 ,0,0,0}, {28471,28473,28516 ,17091,17093,17131 ,0,0,0}, - {28514,28515,28383 ,17129,17130,17007 ,0,0,0}, {28517,28518,28519 ,17132,17133,17134 ,0,0,0}, - {28515,28516,28473 ,17130,17131,17093 ,0,0,0}, {28470,28520,28474 ,17090,17135,17094 ,0,0,0}, - {28516,28472,28471 ,17131,17092,17091 ,0,0,0}, {28474,28519,28475 ,17094,17134,14264 ,0,0,0}, - {28472,28520,28470 ,17092,17135,17090 ,0,0,0}, {28476,28475,28521 ,17095,14264,17136 ,0,0,0}, - {28520,28519,28474 ,17135,17134,17094 ,0,0,0}, {28429,28476,28522 ,17052,17095,17137 ,0,0,0}, - {28475,28519,28521 ,14264,17134,17136 ,0,0,0}, {28477,28429,28523 ,17096,17052,17138 ,0,0,0}, - {28476,28521,28522 ,17095,17136,17137 ,0,0,0}, {28481,28477,28524 ,17098,17096,17139 ,0,0,0}, - {28429,28522,28523 ,17052,17137,17138 ,0,0,0}, {28479,28481,28525 ,14305,17098,17140 ,0,0,0}, - {28523,28524,28477 ,17138,17139,17096 ,0,0,0}, {28526,28482,28478 ,17141,17099,17097 ,0,0,0}, - {28524,28525,28481 ,17139,17140,17098 ,0,0,0}, {28527,28528,28529 ,17142,17143,17144 ,0,0,0}, - {28525,28480,28479 ,17140,14260,14305 ,0,0,0}, {28482,28530,28483 ,17099,17145,17100 ,0,0,0}, - {28480,28526,28478 ,14260,17141,17097 ,0,0,0}, {28483,28529,28484 ,17100,17144,17101 ,0,0,0}, - {28526,28530,28482 ,17141,17145,17099 ,0,0,0}, {28484,28531,28437 ,17101,17146,17060 ,0,0,0}, - {28530,28529,28483 ,17145,17144,17100 ,0,0,0}, {28437,28301,28300 ,17060,16928,16927 ,0,0,0}, - {28529,28531,28484 ,17144,17146,17101 ,0,0,0}, {28300,28299,28485 ,16927,16926,17102 ,0,0,0}, - {28301,28437,28531 ,16928,17060,17146 ,0,0,0}, {28486,28532,28309 ,17103,17147,16936 ,0,0,0}, - {28533,28534,28486 ,17148,17149,17103 ,0,0,0}, {28297,28300,28485 ,16924,16927,17102 ,0,0,0}, - {28485,28532,28486 ,17102,17147,17103 ,0,0,0}, {28487,28486,28534 ,17104,17103,17149 ,0,0,0}, - {28255,28254,28440 ,16865,16864,17063 ,0,0,0}, {27922,28256,27918 ,17150,16867,16866 ,0,0,0}, - {28491,28489,28249 ,17107,14147,16860 ,0,0,0}, {28440,28490,28439 ,17063,17106,17062 ,0,0,0}, - {28256,28535,28490 ,16867,17151,17106 ,0,0,0}, {28492,28491,28536 ,17108,17107,17152 ,0,0,0}, - {28489,28535,28249 ,14147,17151,16860 ,0,0,0}, {28537,28536,28538 ,17153,17152,17154 ,0,0,0}, - {28491,28249,28536 ,17107,16860,17152 ,0,0,0}, {28537,28539,28493 ,17153,17155,17109 ,0,0,0}, - {28493,28492,28537 ,17109,17108,17153 ,0,0,0}, {28539,28540,28494 ,17155,17156,17110 ,0,0,0}, - {28494,28493,28539 ,17110,17109,17155 ,0,0,0}, {28540,28541,28495 ,17156,17157,17111 ,0,0,0}, - {28495,28494,28540 ,17111,17110,17156 ,0,0,0}, {28541,28542,28496 ,17157,17158,14291 ,0,0,0}, - {28496,28495,28541 ,14291,17111,17157 ,0,0,0}, {28542,28543,28497 ,17158,17159,17112 ,0,0,0}, - {28497,28496,28542 ,17112,14291,17158 ,0,0,0}, {28543,28544,28448 ,17159,17160,17070 ,0,0,0}, - {28448,28497,28543 ,17070,17112,17159 ,0,0,0}, {28544,28498,28501 ,17160,17113,17116 ,0,0,0}, - {28448,28544,28501 ,17070,17160,17116 ,0,0,0}, {26965,28545,28546 ,17161,17162,17163 ,0,0,0}, - {28501,28498,28500 ,17116,17113,17115 ,0,0,0}, {28502,28547,28503 ,17117,17164,17118 ,0,0,0}, - {28500,28499,28502 ,17115,17114,17117 ,0,0,0}, {28548,28547,28546 ,17165,17164,17163 ,0,0,0}, - {28499,28547,28502 ,17114,17164,17117 ,0,0,0}, {28548,28549,28504 ,17165,17166,17119 ,0,0,0}, - {28504,28503,28548 ,17119,17118,17165 ,0,0,0}, {28549,28550,28505 ,17166,17167,17120 ,0,0,0}, - {28505,28504,28549 ,17120,17119,17166 ,0,0,0}, {28550,28551,28506 ,17167,17168,17121 ,0,0,0}, - {28506,28505,28550 ,17121,17120,17167 ,0,0,0}, {28551,28456,28507 ,17168,17077,17122 ,0,0,0}, - {28506,28551,28507 ,17121,17168,17122 ,0,0,0}, {28552,28553,28554 ,14118,14234,14116 ,0,0,0}, - {28507,28456,28455 ,17122,17077,17076 ,0,0,0}, {28454,28553,28508 ,17075,14234,17123 ,0,0,0}, - {28455,28454,28508 ,17076,17075,17123 ,0,0,0}, {28553,28555,28509 ,14234,17169,17124 ,0,0,0}, - {28509,28508,28553 ,17124,17123,14234 ,0,0,0}, {28555,28556,28510 ,17169,17170,17125 ,0,0,0}, - {28510,28509,28555 ,17125,17124,17169 ,0,0,0}, {28556,28557,28511 ,17170,17171,17126 ,0,0,0}, - {28511,28510,28556 ,17126,17125,17170 ,0,0,0}, {28557,28464,28512 ,17171,17085,17127 ,0,0,0}, - {28511,28557,28512 ,17126,17171,17127 ,0,0,0}, {28558,26956,28559 ,17172,17173,14103 ,0,0,0}, - {28512,28464,28463 ,17127,17085,17084 ,0,0,0}, {28514,28513,28560 ,17129,17128,17174 ,0,0,0}, - {28463,28462,28513 ,17084,17083,17128 ,0,0,0}, {28561,28560,28558 ,17175,17174,17172 ,0,0,0}, - {28513,28462,28560 ,17128,17083,17174 ,0,0,0}, {28561,28562,28515 ,17175,17176,17130 ,0,0,0}, - {28515,28514,28561 ,17130,17129,17175 ,0,0,0}, {28562,28563,28516 ,17176,17177,17131 ,0,0,0}, - {28516,28515,28562 ,17131,17130,17176 ,0,0,0}, {28563,28564,28472 ,17177,17178,17092 ,0,0,0}, - {28472,28516,28563 ,17092,17131,17177 ,0,0,0}, {28564,28517,28520 ,17178,17132,17135 ,0,0,0}, - {28472,28564,28520 ,17092,17178,17135 ,0,0,0}, {28565,28566,28567 ,17179,17180,17181 ,0,0,0}, - {28520,28517,28519 ,17135,17132,17134 ,0,0,0}, {28518,28566,28521 ,17133,17180,17136 ,0,0,0}, - {28519,28518,28521 ,17134,17133,17136 ,0,0,0}, {28566,28568,28522 ,17180,17182,17137 ,0,0,0}, - {28522,28521,28566 ,17137,17136,17180 ,0,0,0}, {28568,28569,28523 ,17182,14221,17138 ,0,0,0}, - {28523,28522,28568 ,17138,17137,17182 ,0,0,0}, {28569,28570,28524 ,14221,17183,17139 ,0,0,0}, - {28524,28523,28569 ,17139,17138,14221 ,0,0,0}, {28570,28571,28525 ,17183,17184,17140 ,0,0,0}, - {28525,28524,28570 ,17140,17139,17183 ,0,0,0}, {28571,28572,28480 ,17184,17185,14260 ,0,0,0}, - {28480,28525,28571 ,14260,17140,17184 ,0,0,0}, {28572,28573,28526 ,17185,17186,17141 ,0,0,0}, - {28526,28480,28572 ,17141,14260,17185 ,0,0,0}, {28573,28527,28530 ,17186,17142,17145 ,0,0,0}, - {28526,28573,28530 ,17141,17186,17145 ,0,0,0}, {28531,28528,28574 ,17146,17143,17187 ,0,0,0}, - {28530,28527,28529 ,17145,17142,17144 ,0,0,0}, {28306,28299,28301 ,16933,16926,16928 ,0,0,0}, - {28529,28528,28531 ,17144,17143,17146 ,0,0,0}, {28305,28532,28299 ,16932,17147,16926 ,0,0,0}, - {28531,28574,28301 ,17146,17187,16928 ,0,0,0}, {28313,28307,28575 ,16940,16934,17188 ,0,0,0}, - {28574,28306,28301 ,17187,16933,16928 ,0,0,0}, {28305,28576,28577 ,16932,17189,17190 ,0,0,0}, - {28309,28533,28486 ,16936,17148,17103 ,0,0,0}, {28485,28299,28532 ,17102,16926,17147 ,0,0,0}, - {28309,28532,28577 ,16936,17147,17190 ,0,0,0}, {28308,28533,28309 ,16935,17148,16936 ,0,0,0}, - {28254,28256,28490 ,16864,16867,17106 ,0,0,0}, {27922,27924,28245 ,17150,16853,16856 ,0,0,0}, - {28535,28245,28250 ,17151,16856,16861 ,0,0,0}, {28490,28535,28489 ,17106,17151,14147 ,0,0,0}, - {28249,28535,28250 ,16860,17151,16861 ,0,0,0}, {28248,28538,28536 ,16859,17154,17152 ,0,0,0}, - {28536,28249,28248 ,17152,16860,16859 ,0,0,0}, {28538,28578,28537 ,17154,17191,17153 ,0,0,0}, - {28579,28539,28578 ,17192,17155,17191 ,0,0,0}, {28492,28536,28537 ,17108,17152,17153 ,0,0,0}, - {28539,28537,28578 ,17155,17153,17191 ,0,0,0}, {28580,28540,28579 ,17193,17156,17192 ,0,0,0}, - {28540,28539,28579 ,17156,17155,17192 ,0,0,0}, {28581,28541,28580 ,17194,17157,17193 ,0,0,0}, - {28541,28540,28580 ,17157,17156,17193 ,0,0,0}, {28582,28542,28581 ,17195,17158,17194 ,0,0,0}, - {28542,28541,28581 ,17158,17157,17194 ,0,0,0}, {28583,28543,28582 ,17196,17159,17195 ,0,0,0}, - {28543,28542,28582 ,17159,17158,17195 ,0,0,0}, {28584,28544,28583 ,17197,17160,17196 ,0,0,0}, - {28544,28543,28583 ,17160,17159,17196 ,0,0,0}, {28585,28498,28584 ,14134,17113,17197 ,0,0,0}, - {28498,28544,28584 ,17113,17160,17197 ,0,0,0}, {28586,28499,28585 ,17198,17114,14134 ,0,0,0}, - {28499,28498,28585 ,17114,17113,14134 ,0,0,0}, {28546,28547,28586 ,17163,17164,17198 ,0,0,0}, - {28499,28586,28547 ,17114,17198,17164 ,0,0,0}, {28546,28545,28548 ,17163,17162,17165 ,0,0,0}, - {28587,28549,28545 ,17199,17166,17162 ,0,0,0}, {28503,28547,28548 ,17118,17164,17165 ,0,0,0}, - {28549,28548,28545 ,17166,17165,17162 ,0,0,0}, {28588,28550,28587 ,17200,17167,17199 ,0,0,0}, - {28550,28549,28587 ,17167,17166,17199 ,0,0,0}, {28589,28551,28588 ,17201,17168,17200 ,0,0,0}, - {28551,28550,28588 ,17168,17167,17200 ,0,0,0}, {28590,28456,28589 ,17202,17077,17201 ,0,0,0}, - {28456,28551,28589 ,17077,17168,17201 ,0,0,0}, {28554,28454,28590 ,14116,17075,17202 ,0,0,0}, - {28454,28456,28590 ,17075,17077,17202 ,0,0,0}, {28554,26873,28552 ,14116,14183,14118 ,0,0,0}, - {28454,28554,28553 ,17075,14116,14234 ,0,0,0}, {28591,28555,28552 ,17203,17169,14118 ,0,0,0}, - {28555,28553,28552 ,17169,14234,14118 ,0,0,0}, {28592,28556,28591 ,17204,17170,17203 ,0,0,0}, - {28556,28555,28591 ,17170,17169,17203 ,0,0,0}, {28593,28557,28592 ,14185,17171,17204 ,0,0,0}, - {28557,28556,28592 ,17171,17170,17204 ,0,0,0}, {28594,28464,28593 ,17205,17085,14185 ,0,0,0}, - {28464,28557,28593 ,17085,17171,14185 ,0,0,0}, {28595,28462,28594 ,17206,17083,17205 ,0,0,0}, - {28462,28464,28594 ,17083,17085,17205 ,0,0,0}, {28558,28560,28595 ,17172,17174,17206 ,0,0,0}, - {28462,28595,28560 ,17083,17206,17174 ,0,0,0}, {28558,28559,28561 ,17172,14103,17175 ,0,0,0}, - {28596,28562,28559 ,17207,17176,14103 ,0,0,0}, {28514,28560,28561 ,17129,17174,17175 ,0,0,0}, - {28562,28561,28559 ,17176,17175,14103 ,0,0,0}, {28597,28563,28596 ,17208,17177,17207 ,0,0,0}, - {28563,28562,28596 ,17177,17176,17207 ,0,0,0}, {28598,28564,28597 ,17209,17178,17208 ,0,0,0}, - {28564,28563,28597 ,17178,17177,17208 ,0,0,0}, {28599,28517,28598 ,17210,17132,17209 ,0,0,0}, - {28517,28564,28598 ,17132,17178,17209 ,0,0,0}, {28567,28518,28599 ,17181,17133,17210 ,0,0,0}, - {28518,28517,28599 ,17133,17132,17210 ,0,0,0}, {28567,26895,28565 ,17181,14192,17179 ,0,0,0}, - {28518,28567,28566 ,17133,17181,17180 ,0,0,0}, {28600,28568,28565 ,14092,17182,17179 ,0,0,0}, - {28568,28566,28565 ,17182,17180,17179 ,0,0,0}, {28601,28569,28600 ,17211,14221,14092 ,0,0,0}, - {28569,28568,28600 ,14221,17182,14092 ,0,0,0}, {28602,28570,28601 ,17212,17183,17211 ,0,0,0}, - {28570,28569,28601 ,17183,14221,17211 ,0,0,0}, {28603,28571,28602 ,17213,17184,17212 ,0,0,0}, - {28571,28570,28602 ,17184,17183,17212 ,0,0,0}, {28604,28572,28603 ,17214,17185,17213 ,0,0,0}, - {28572,28571,28603 ,17185,17184,17213 ,0,0,0}, {28605,28573,28604 ,17215,17186,17214 ,0,0,0}, - {28573,28572,28604 ,17186,17185,17214 ,0,0,0}, {28606,28527,28605 ,17216,17142,17215 ,0,0,0}, - {28527,28573,28605 ,17142,17186,17215 ,0,0,0}, {28607,28528,28606 ,14053,17143,17216 ,0,0,0}, - {28528,28527,28606 ,17143,17142,17216 ,0,0,0}, {28608,28574,28607 ,17217,17187,14053 ,0,0,0}, - {28574,28528,28607 ,17187,17143,14053 ,0,0,0}, {28609,28306,28608 ,17218,16933,17217 ,0,0,0}, - {28306,28574,28608 ,16933,17187,17217 ,0,0,0}, {28609,28576,28305 ,17218,17189,16932 ,0,0,0}, - {28305,28306,28609 ,16932,16933,17218 ,0,0,0}, {28576,28575,28577 ,17189,17188,17190 ,0,0,0}, - {28309,28577,28307 ,16936,17190,16934 ,0,0,0}, {28532,28305,28577 ,17147,16932,17190 ,0,0,0}, - {28575,28307,28577 ,17188,16934,17190 ,0,0,0}, {28308,28307,28314 ,16935,16934,16941 ,0,0,0}, - {28535,28256,28245 ,17151,16867,16856 ,0,0,0}, {28245,28256,27922 ,16856,16867,17150 ,0,0,0}, - {26977,26973,28250 ,17022,17219,16861 ,0,0,0}, {28250,26973,28248 ,16861,17219,16859 ,0,0,0}, - {26973,26972,28248 ,17219,17220,16859 ,0,0,0}, {28248,26972,28538 ,16859,17220,17154 ,0,0,0}, - {26972,26971,28538 ,17220,14143,17154 ,0,0,0}, {28538,26971,28578 ,17154,14143,17191 ,0,0,0}, - {26971,26834,28578 ,14143,14144,17191 ,0,0,0}, {28578,26834,28579 ,17191,14144,17192 ,0,0,0}, - {26834,26824,28579 ,14144,17221,17192 ,0,0,0}, {28579,26824,28580 ,17192,17221,17193 ,0,0,0}, - {26824,26857,28580 ,17221,17222,17193 ,0,0,0}, {28580,26857,28581 ,17193,17222,17194 ,0,0,0}, - {26857,26854,28581 ,17222,17223,17194 ,0,0,0}, {28581,26854,28582 ,17194,17223,17195 ,0,0,0}, - {26854,26859,28582 ,17223,17224,17195 ,0,0,0}, {26859,26862,28583 ,17224,17225,17196 ,0,0,0}, - {26859,28583,28582 ,17224,17196,17195 ,0,0,0}, {26862,26829,28584 ,17225,14133,17197 ,0,0,0}, - {26862,28584,28583 ,17225,17197,17196 ,0,0,0}, {26829,26828,28585 ,14133,17226,14134 ,0,0,0}, - {26829,28585,28584 ,14133,14134,17197 ,0,0,0}, {26828,26864,28586 ,17226,17227,17198 ,0,0,0}, - {26828,28586,28585 ,17226,17198,14134 ,0,0,0}, {26864,26966,28546 ,17227,17228,17163 ,0,0,0}, - {26864,28546,28586 ,17227,17163,17198 ,0,0,0}, {26965,28546,26966 ,17161,17163,17228 ,0,0,0}, - {26965,26867,28545 ,17161,14180,17162 ,0,0,0}, {28545,26867,28587 ,17162,14180,17199 ,0,0,0}, - {26867,26872,28587 ,14180,14120,17199 ,0,0,0}, {28587,26872,28588 ,17199,14120,17200 ,0,0,0}, - {26872,26870,28588 ,14120,14121,17200 ,0,0,0}, {26870,26869,28589 ,14121,14122,17201 ,0,0,0}, - {26870,28589,28588 ,14121,17201,17200 ,0,0,0}, {26869,26964,28590 ,14122,14115,17202 ,0,0,0}, - {26869,28590,28589 ,14122,17202,17201 ,0,0,0}, {26964,26873,28554 ,14115,14183,14116 ,0,0,0}, - {26964,28554,28590 ,14115,14116,17202 ,0,0,0}, {26873,26963,28552 ,14183,17229,14118 ,0,0,0}, - {26963,26959,28552 ,17229,14110,14118 ,0,0,0}, {28552,26959,28591 ,14118,14110,17203 ,0,0,0}, - {26959,26877,28591 ,14110,17230,17203 ,0,0,0}, {28591,26877,28592 ,17203,17230,17204 ,0,0,0}, - {26877,26879,28592 ,17230,17231,17204 ,0,0,0}, {26879,26884,28593 ,17231,17232,14185 ,0,0,0}, - {26879,28593,28592 ,17231,14185,17204 ,0,0,0}, {26884,26882,28594 ,17232,14106,17205 ,0,0,0}, - {26884,28594,28593 ,17232,17205,14185 ,0,0,0}, {26882,26881,28595 ,14106,14186,17206 ,0,0,0}, - {26882,28595,28594 ,14106,17206,17205 ,0,0,0}, {26881,26957,28558 ,14186,17233,17172 ,0,0,0}, - {26881,28558,28595 ,14186,17172,17206 ,0,0,0}, {26956,28558,26957 ,17173,17172,17233 ,0,0,0}, - {26956,26886,28559 ,17173,17234,14103 ,0,0,0}, {28559,26886,28596 ,14103,17234,17207 ,0,0,0}, - {26886,26893,28596 ,17234,14098,17207 ,0,0,0}, {26893,26892,28597 ,14098,14099,17208 ,0,0,0}, - {26893,28597,28596 ,14098,17208,17207 ,0,0,0}, {26892,26891,28598 ,14099,17235,17209 ,0,0,0}, - {26892,28598,28597 ,14099,17209,17208 ,0,0,0}, {26891,26953,28599 ,17235,14096,17210 ,0,0,0}, - {26891,28599,28598 ,17235,17210,17209 ,0,0,0}, {26953,26895,28567 ,14096,14192,17181 ,0,0,0}, - {26953,28567,28599 ,14096,17181,17210 ,0,0,0}, {26895,26894,28565 ,14192,17236,17179 ,0,0,0}, - {26894,26900,28565 ,17236,17237,17179 ,0,0,0}, {28565,26900,28600 ,17179,17237,14092 ,0,0,0}, - {26900,26899,28600 ,17237,14056,14092 ,0,0,0}, {28600,26899,28601 ,14092,14056,17211 ,0,0,0}, - {26899,26904,28601 ,14056,14057,17211 ,0,0,0}, {28601,26904,28602 ,17211,14057,17212 ,0,0,0}, - {26904,26902,28602 ,14057,17238,17212 ,0,0,0}, {26902,26910,28603 ,17238,17239,17213 ,0,0,0}, - {26902,28603,28602 ,17238,17213,17212 ,0,0,0}, {26910,26906,28604 ,17239,17240,17214 ,0,0,0}, - {26910,28604,28603 ,17239,17214,17213 ,0,0,0}, {26906,26908,28605 ,17240,17241,17215 ,0,0,0}, - {26906,28605,28604 ,17240,17215,17214 ,0,0,0}, {26908,26911,28606 ,17241,14052,17216 ,0,0,0}, - {26908,28606,28605 ,17241,17216,17215 ,0,0,0}, {26911,26913,28607 ,14052,17242,14053 ,0,0,0}, - {26911,28607,28606 ,14052,14053,17216 ,0,0,0}, {26913,26918,28608 ,17242,17243,17217 ,0,0,0}, - {26913,28608,28607 ,17242,17217,14053 ,0,0,0}, {26918,26924,28609 ,17243,17244,17218 ,0,0,0}, - {26918,28609,28608 ,17243,17218,17217 ,0,0,0}, {26924,26925,28576 ,17244,17245,17189 ,0,0,0}, - {26924,28576,28609 ,17244,17189,17218 ,0,0,0}, {26925,26923,28575 ,17245,17246,17188 ,0,0,0}, - {26925,28575,28576 ,17245,17188,17189 ,0,0,0}, {26923,26917,28313 ,17246,17247,16940 ,0,0,0}, - {26923,28313,28575 ,17246,16940,17188 ,0,0,0}, {28313,26917,26916 ,16940,17247,15634 ,0,0,0}, - {28146,27852,27873 ,17248,17248,17248 ,0,0,0}, {27482,27869,27478 ,17248,17248,17248 ,0,0,0}, - {27868,27873,27934 ,17248,17248,17248 ,0,0,0}, {28146,27873,27853 ,17248,17248,17248 ,0,0,0}, - {27868,27934,28011 ,17248,17248,17248 ,0,0,0}, {27853,27868,27483 ,17248,17248,17248 ,0,0,0}, - {27873,27868,27853 ,17248,17248,17248 ,0,0,0}, {27343,27478,27869 ,17248,17248,17248 ,0,0,0}, - {27482,27866,27863 ,17248,17248,17248 ,0,0,0}, {27349,27358,27693 ,17248,17248,17248 ,0,0,0}, - {27484,27343,27869 ,17248,17248,17248 ,0,0,0}, {27485,27484,27349 ,17248,17248,17248 ,0,0,0}, - {27484,27485,27474 ,17248,17248,17248 ,0,0,0}, {27356,27349,27693 ,17248,17248,17248 ,0,0,0}, - {27357,27358,27484 ,17248,17248,17248 ,0,0,0}, {27358,27349,27484 ,17248,17248,17248 ,0,0,0}, - {27871,27484,27869 ,17248,17248,17248 ,0,0,0}, {27871,27357,27484 ,17248,17248,17248 ,0,0,0}, - {27869,27482,27863 ,17248,17248,17248 ,0,0,0}, {27866,27482,27868 ,17248,17248,17248 ,0,0,0}, - {27483,27868,27481 ,17248,17248,17248 ,0,0,0}, {27482,27481,27868 ,17248,17248,17248 ,0,0,0}, - {28533,28308,28314 ,17249,17249,17249 ,0,0,0}, {28362,28399,27112 ,17249,17249,17249 ,0,0,0}, - {28318,28534,28314 ,17249,17249,17249 ,0,0,0}, {28438,28488,27028 ,17249,17249,17249 ,0,0,0}, - {28487,28534,28488 ,17249,17249,17249 ,0,0,0}, {28534,28318,26916 ,17249,17249,17249 ,0,0,0}, - {28533,28314,28534 ,17249,17249,17249 ,0,0,0}, {27028,28488,28534 ,17249,17249,17249 ,0,0,0}, - {28534,26916,27028 ,17249,17249,17249 ,0,0,0}, {27027,28438,27028 ,17249,17249,17249 ,0,0,0}, - {27027,27070,28438 ,17249,17249,17249 ,0,0,0}, {28399,28438,27112 ,17249,17249,17249 ,0,0,0}, - {27070,27112,28438 ,17249,17249,17249 ,0,0,0}, {28363,28362,27112 ,17249,17249,17249 ,0,0,0}, - {27156,27198,27157 ,17249,17249,17249 ,0,0,0}, {27157,28363,27112 ,17249,17249,17249 ,0,0,0}, - {28363,27157,27198 ,17249,17249,17249 ,0,0,0}, {26949,27197,26944 ,17249,17249,17249 ,0,0,0}, - {28363,27198,26950 ,17249,17249,17249 ,0,0,0}, {27198,26949,26948 ,17249,17249,17249 ,0,0,0}, - {26949,27198,27197 ,17249,17249,17249 ,0,0,0}, {27198,26948,26950 ,17249,17249,17249 ,0,0,0} -// Landegestell.prt - , {28610,28611,28612 ,11524,11525,11526 ,0,0,0}, {28613,28614,28615 ,11527,11528,11529 ,0,0,0}, - {28616,28617,28618 ,11530,11531,11532 ,0,0,0}, {28619,28611,28620 ,11533,11525,11534 ,0,0,0}, - {28621,28618,28622 ,11535,11532,11536 ,0,0,0}, {28623,28624,28625 ,11537,11538,11539 ,0,0,0}, - {28626,28627,28628 ,11540,11541,11542 ,0,0,0}, {28629,28622,28617 ,11543,11536,11531 ,0,0,0}, - {28630,28631,28632 ,11544,11545,11546 ,0,0,0}, {28626,28633,28632 ,11540,11547,11546 ,0,0,0}, - {28634,28635,28636 ,11548,11549,11550 ,0,0,0}, {28636,28635,28631 ,11550,11549,11545 ,0,0,0}, - {28637,28636,28638 ,11551,11550,11552 ,0,0,0}, {28620,28611,28610 ,11534,11525,11524 ,0,0,0}, - {28638,28639,28637 ,11552,11553,11551 ,0,0,0}, {28640,28641,28642 ,11554,11555,11556 ,0,0,0}, - {28612,28643,28610 ,11526,11557,11524 ,0,0,0}, {28644,28645,28642 ,11558,11559,11556 ,0,0,0}, - {28646,28647,28644 ,11560,11561,11558 ,0,0,0}, {28647,28648,28644 ,11561,11562,11558 ,0,0,0}, - {28642,28645,28640 ,11556,11559,11554 ,0,0,0}, {28649,28650,28614 ,11563,11564,11528 ,0,0,0}, - {28651,28652,28653 ,11565,11566,11567 ,0,0,0}, {28649,28654,28650 ,11563,11568,11564 ,0,0,0}, - {28655,28656,28657 ,11569,11570,11571 ,0,0,0}, {28652,28658,28653 ,11566,11572,11567 ,0,0,0}, - {28659,28660,28661 ,11573,11574,11575 ,0,0,0}, {28655,28657,28662 ,11569,11571,11576 ,0,0,0}, - {28663,28664,28665 ,11577,11578,11579 ,0,0,0}, {28664,28663,28666 ,11578,11577,11580 ,0,0,0}, - {28667,28668,28669 ,11581,11582,11583 ,0,0,0}, {28670,28671,28668 ,11584,11585,11582 ,0,0,0}, - {28672,28673,28674 ,11586,11587,11588 ,0,0,0}, {28667,28669,28675 ,11581,11583,11589 ,0,0,0}, - {28676,28677,28678 ,11590,11591,11592 ,0,0,0}, {28672,28674,28679 ,11586,11588,11593 ,0,0,0}, - {28680,28681,28682 ,11594,11595,11596 ,0,0,0}, {28683,28677,28676 ,11597,11591,11590 ,0,0,0}, - {28684,28685,28686 ,11598,11599,11600 ,0,0,0}, {28686,28682,28684 ,11600,11596,11598 ,0,0,0}, - {28687,28688,28689 ,11601,11602,11603 ,0,0,0}, {28690,28685,28691 ,11604,11599,11605 ,0,0,0}, - {28692,28693,28694 ,11606,11607,11608 ,0,0,0}, {28695,28692,28696 ,11609,11606,11610 ,0,0,0}, - {28697,28698,28699 ,11611,11612,11613 ,0,0,0}, {28700,28697,28694 ,11614,11611,11608 ,0,0,0}, - {28701,28702,28703 ,11615,11616,11617 ,0,0,0}, {28704,28699,28705 ,11618,11613,11619 ,0,0,0}, - {28706,28707,28708 ,11620,11621,11622 ,0,0,0}, {28703,28709,28701 ,11617,11623,11615 ,0,0,0}, - {28710,28706,28711 ,11624,11620,11625 ,0,0,0}, {28701,28709,28712 ,11615,11623,11626 ,0,0,0}, - {28713,28710,28704 ,11627,11624,11618 ,0,0,0}, {28706,28710,28713 ,11620,11624,11627 ,0,0,0}, - {28714,28715,28716 ,11628,11629,11630 ,0,0,0}, {28717,28700,28718 ,11631,11614,11632 ,0,0,0}, - {28719,28720,28721 ,11633,11634,11635 ,0,0,0}, {28717,28718,28722 ,11631,11632,11636 ,0,0,0}, - {28723,28724,28725 ,11637,11638,11639 ,0,0,0}, {28721,28726,28727 ,11635,11640,11641 ,0,0,0}, - {28728,28729,28725 ,11642,11643,11639 ,0,0,0}, {28730,28731,28732 ,11644,11645,11646 ,0,0,0}, - {28733,28734,28735 ,11647,11648,11649 ,0,0,0}, {28735,28732,28733 ,11649,11646,11647 ,0,0,0}, - {28734,28733,28736 ,11648,11647,11650 ,0,0,0}, {28705,28699,28698 ,11619,11613,11612 ,0,0,0}, - {28706,28712,28711 ,11620,11626,11625 ,0,0,0}, {28700,28694,28693 ,11614,11608,11607 ,0,0,0}, - {28700,28698,28697 ,11614,11612,11611 ,0,0,0}, {28695,28696,28687 ,11609,11610,11601 ,0,0,0}, - {28692,28695,28693 ,11606,11609,11607 ,0,0,0}, {28689,28688,28690 ,11603,11602,11604 ,0,0,0}, - {28696,28688,28687 ,11610,11602,11601 ,0,0,0}, {28689,28690,28691 ,11603,11604,11605 ,0,0,0}, - {28737,28695,28687 ,11651,11609,11601 ,0,0,0}, {28686,28680,28682 ,11600,11594,11596 ,0,0,0}, - {28685,28684,28691 ,11599,11598,11605 ,0,0,0}, {28676,28678,28738 ,11590,11592,11652 ,0,0,0}, - {28739,28683,28740 ,11653,11597,11654 ,0,0,0}, {28682,28681,28740 ,11596,11595,11654 ,0,0,0}, - {28677,28683,28739 ,11591,11597,11653 ,0,0,0}, {28681,28739,28740 ,11595,11653,11654 ,0,0,0}, - {28738,28678,28679 ,11652,11592,11593 ,0,0,0}, {28741,28676,28738 ,11655,11590,11652 ,0,0,0}, - {28679,28674,28738 ,11593,11588,11652 ,0,0,0}, {28675,28673,28742 ,11589,11587,11656 ,0,0,0}, - {28672,28742,28673 ,11586,11656,11587 ,0,0,0}, {28743,28675,28742 ,11657,11589,11656 ,0,0,0}, - {28671,28669,28668 ,11585,11583,11582 ,0,0,0}, {28667,28675,28743 ,11581,11589,11657 ,0,0,0}, - {28670,28744,28671 ,11584,11658,11585 ,0,0,0}, {28665,28664,28744 ,11579,11578,11658 ,0,0,0}, - {28744,28670,28665 ,11658,11584,11579 ,0,0,0}, {28666,28745,28661 ,11580,11659,11575 ,0,0,0}, - {28746,28747,28748 ,11660,11661,11662 ,0,0,0}, {28661,28745,28749 ,11575,11659,11663 ,0,0,0}, - {28745,28666,28663 ,11659,11580,11577 ,0,0,0}, {28750,28662,28660 ,11664,11576,11574 ,0,0,0}, - {28659,28661,28749 ,11573,11575,11663 ,0,0,0}, {28662,28750,28655 ,11576,11664,11569 ,0,0,0}, - {28750,28660,28659 ,11664,11574,11573 ,0,0,0}, {28654,28751,28752 ,11568,11665,11666 ,0,0,0}, - {28656,28658,28753 ,11570,11572,11667 ,0,0,0}, {28657,28656,28753 ,11571,11570,11667 ,0,0,0}, - {28753,28658,28652 ,11667,11572,11566 ,0,0,0}, {28754,28755,28756 ,11668,11669,11670 ,0,0,0}, - {28751,28651,28653 ,11665,11565,11567 ,0,0,0}, {28643,28612,28641 ,11557,11526,11555 ,0,0,0}, - {28654,28651,28751 ,11568,11565,11665 ,0,0,0}, {28654,28752,28650 ,11568,11666,11564 ,0,0,0}, - {28614,28613,28649 ,11528,11527,11563 ,0,0,0}, {28648,28647,28615 ,11562,11561,11529 ,0,0,0}, - {28615,28647,28613 ,11529,11561,11527 ,0,0,0}, {28640,28643,28641 ,11554,11557,11555 ,0,0,0}, - {28648,28645,28644 ,11562,11559,11558 ,0,0,0}, {28625,28757,28758 ,11539,11671,11672 ,0,0,0}, - {28619,28620,28757 ,11533,11534,11671 ,0,0,0}, {28758,28623,28625 ,11672,11537,11539 ,0,0,0}, - {28619,28757,28625 ,11533,11671,11539 ,0,0,0}, {28758,28759,28623 ,11672,11673,11537 ,0,0,0}, - {28760,28761,28627 ,11674,11675,11541 ,0,0,0}, {28623,28759,28762 ,11537,11673,11676 ,0,0,0}, - {28762,28759,28763 ,11676,11673,11677 ,0,0,0}, {28764,28762,28765 ,11678,11676,11679 ,0,0,0}, - {28763,28765,28762 ,11677,11679,11676 ,0,0,0}, {28628,28766,28626 ,11542,11680,11540 ,0,0,0}, - {28767,28764,28765 ,11681,11678,11679 ,0,0,0}, {28768,28767,28765 ,11682,11681,11679 ,0,0,0}, - {28764,28767,28769 ,11678,11681,11683 ,0,0,0}, {28770,28771,28769 ,11684,11685,11683 ,0,0,0}, - {28761,28760,28772 ,11675,11674,11686 ,0,0,0}, {28769,28771,28764 ,11683,11685,11678 ,0,0,0}, - {28770,28760,28771 ,11684,11674,11685 ,0,0,0}, {28764,28773,28762 ,11678,11687,11676 ,0,0,0}, - {28774,28619,28625 ,11688,11533,11539 ,0,0,0}, {28762,28616,28623 ,11676,11530,11537 ,0,0,0}, - {28775,28611,28619 ,11689,11525,11533 ,0,0,0}, {28624,28623,28616 ,11538,11537,11530 ,0,0,0}, - {28776,28612,28611 ,11690,11526,11525 ,0,0,0}, {28774,28625,28624 ,11688,11539,11538 ,0,0,0}, - {28777,28641,28612 ,11691,11555,11526 ,0,0,0}, {28775,28619,28774 ,11689,11533,11688 ,0,0,0}, - {28778,28642,28641 ,11692,11556,11555 ,0,0,0}, {28776,28611,28775 ,11690,11525,11689 ,0,0,0}, - {28779,28644,28642 ,11693,11558,11556 ,0,0,0}, {28612,28776,28777 ,11526,11690,11691 ,0,0,0}, - {28780,28781,28782 ,11694,11695,11696 ,0,0,0}, {28641,28777,28778 ,11555,11691,11692 ,0,0,0}, - {28782,28613,28647 ,11696,11527,11561 ,0,0,0}, {28642,28778,28779 ,11556,11692,11693 ,0,0,0}, - {28783,28649,28613 ,11697,11563,11527 ,0,0,0}, {28644,28779,28646 ,11558,11693,11560 ,0,0,0}, - {28784,28654,28649 ,11698,11568,11563 ,0,0,0}, {28647,28646,28782 ,11561,11560,11696 ,0,0,0}, - {28785,28651,28654 ,11699,11565,11568 ,0,0,0}, {28613,28782,28783 ,11527,11696,11697 ,0,0,0}, - {28786,28652,28651 ,11700,11566,11565 ,0,0,0}, {28784,28649,28783 ,11698,11563,11697 ,0,0,0}, - {28787,28753,28652 ,11701,11667,11566 ,0,0,0}, {28785,28654,28784 ,11699,11568,11698 ,0,0,0}, - {28788,28657,28753 ,11702,11571,11667 ,0,0,0}, {28651,28785,28786 ,11565,11699,11700 ,0,0,0}, - {28755,28662,28657 ,11669,11576,11571 ,0,0,0}, {28652,28786,28787 ,11566,11700,11701 ,0,0,0}, - {28789,28660,28662 ,11703,11574,11576 ,0,0,0}, {28753,28787,28788 ,11667,11701,11702 ,0,0,0}, - {28790,28661,28660 ,11704,11575,11574 ,0,0,0}, {28657,28788,28755 ,11571,11702,11669 ,0,0,0}, - {28791,28666,28661 ,11705,11580,11575 ,0,0,0}, {28789,28662,28755 ,11703,11576,11669 ,0,0,0}, - {28792,28664,28666 ,11706,11578,11580 ,0,0,0}, {28790,28660,28789 ,11704,11574,11703 ,0,0,0}, - {28793,28744,28664 ,11707,11658,11578 ,0,0,0}, {28661,28790,28791 ,11575,11704,11705 ,0,0,0}, - {28671,28744,28746 ,11585,11658,11660 ,0,0,0}, {28666,28791,28792 ,11580,11705,11706 ,0,0,0}, - {28794,28669,28671 ,11708,11583,11585 ,0,0,0}, {28664,28792,28793 ,11578,11706,11707 ,0,0,0}, - {28795,28675,28669 ,11709,11589,11583 ,0,0,0}, {28744,28793,28746 ,11658,11707,11660 ,0,0,0}, - {28796,28673,28675 ,11710,11587,11589 ,0,0,0}, {28794,28671,28746 ,11708,11585,11660 ,0,0,0}, - {28797,28674,28673 ,11711,11588,11587 ,0,0,0}, {28795,28669,28794 ,11709,11583,11708 ,0,0,0}, - {28798,28738,28674 ,11712,11652,11588 ,0,0,0}, {28675,28795,28796 ,11589,11709,11710 ,0,0,0}, - {28799,28800,28801 ,11713,11714,11715 ,0,0,0}, {28673,28796,28797 ,11587,11710,11711 ,0,0,0}, - {28802,28683,28676 ,11716,11597,11590 ,0,0,0}, {28674,28797,28798 ,11588,11711,11712 ,0,0,0}, - {28803,28740,28683 ,11717,11654,11597 ,0,0,0}, {28738,28798,28741 ,11652,11712,11655 ,0,0,0}, - {28804,28682,28740 ,11718,11596,11654 ,0,0,0}, {28676,28741,28802 ,11590,11655,11716 ,0,0,0}, - {28805,28684,28682 ,11719,11598,11596 ,0,0,0}, {28803,28683,28802 ,11717,11597,11716 ,0,0,0}, - {28806,28691,28684 ,11720,11605,11598 ,0,0,0}, {28804,28740,28803 ,11718,11654,11717 ,0,0,0}, - {28807,28689,28691 ,11721,11603,11605 ,0,0,0}, {28805,28682,28804 ,11719,11596,11718 ,0,0,0}, - {28808,28687,28689 ,11722,11601,11603 ,0,0,0}, {28684,28805,28806 ,11598,11719,11720 ,0,0,0}, - {28695,28809,28693 ,11609,11723,11607 ,0,0,0}, {28691,28806,28807 ,11605,11720,11721 ,0,0,0}, - {28718,28810,28722 ,11632,11724,11636 ,0,0,0}, {28689,28807,28808 ,11603,11721,11722 ,0,0,0}, - {28718,28700,28693 ,11632,11614,11607 ,0,0,0}, {28687,28808,28737 ,11601,11722,11651 ,0,0,0}, - {28717,28698,28700 ,11631,11612,11614 ,0,0,0}, {28695,28737,28809 ,11609,11651,11723 ,0,0,0}, - {28705,28698,28811 ,11619,11612,11725 ,0,0,0}, {28809,28718,28693 ,11723,11632,11607 ,0,0,0}, - {28720,28707,28713 ,11634,11621,11627 ,0,0,0}, {28707,28720,28719 ,11621,11634,11633 ,0,0,0}, - {28705,28713,28704 ,11619,11627,11618 ,0,0,0}, {28698,28717,28811 ,11612,11631,11725 ,0,0,0}, - {28701,28712,28812 ,11615,11626,11726 ,0,0,0}, {28705,28720,28713 ,11619,11634,11627 ,0,0,0}, - {28706,28713,28707 ,11620,11627,11621 ,0,0,0}, {28813,28814,28701 ,11727,11728,11615 ,0,0,0}, - {28711,28712,28709 ,11625,11626,11623 ,0,0,0}, {28708,28812,28712 ,11622,11726,11626 ,0,0,0}, - {28702,28701,28814 ,11616,11615,11728 ,0,0,0}, {28771,28773,28764 ,11685,11687,11678 ,0,0,0}, - {28772,28760,28770 ,11686,11674,11684 ,0,0,0}, {28633,28815,28632 ,11547,11729,11546 ,0,0,0}, - {28773,28616,28762 ,11687,11530,11676 ,0,0,0}, {28771,28816,28773 ,11685,11730,11687 ,0,0,0}, - {28624,28618,28817 ,11538,11532,11731 ,0,0,0}, {28617,28616,28773 ,11531,11530,11687 ,0,0,0}, - {28774,28817,28818 ,11688,11731,11732 ,0,0,0}, {28618,28624,28616 ,11532,11538,11530 ,0,0,0}, - {28775,28818,28819 ,11689,11732,11733 ,0,0,0}, {28817,28774,28624 ,11731,11688,11538 ,0,0,0}, - {28776,28819,28820 ,11690,11733,11734 ,0,0,0}, {28818,28775,28774 ,11732,11689,11688 ,0,0,0}, - {28777,28820,28821 ,11691,11734,11735 ,0,0,0}, {28819,28776,28775 ,11733,11690,11689 ,0,0,0}, - {28778,28821,28822 ,11692,11735,11736 ,0,0,0}, {28820,28777,28776 ,11734,11691,11690 ,0,0,0}, - {28779,28822,28823 ,11693,11736,11737 ,0,0,0}, {28821,28778,28777 ,11735,11692,11691 ,0,0,0}, - {28646,28823,28780 ,11560,11737,11694 ,0,0,0}, {28779,28778,28822 ,11693,11692,11736 ,0,0,0}, - {28824,28825,28826 ,11738,11739,11740 ,0,0,0}, {28646,28779,28823 ,11560,11693,11737 ,0,0,0}, - {28783,28781,28824 ,11697,11695,11738 ,0,0,0}, {28782,28646,28780 ,11696,11560,11694 ,0,0,0}, - {28784,28824,28827 ,11698,11738,11741 ,0,0,0}, {28783,28782,28781 ,11697,11696,11695 ,0,0,0}, - {28785,28827,28828 ,11699,11741,11742 ,0,0,0}, {28824,28784,28783 ,11738,11698,11697 ,0,0,0}, - {28786,28828,28829 ,11700,11742,11743 ,0,0,0}, {28827,28785,28784 ,11741,11699,11698 ,0,0,0}, - {28787,28829,28830 ,11701,11743,11744 ,0,0,0}, {28828,28786,28785 ,11742,11700,11699 ,0,0,0}, - {28788,28830,28756 ,11702,11744,11670 ,0,0,0}, {28787,28786,28829 ,11701,11700,11743 ,0,0,0}, - {28831,28832,28833 ,11745,11746,11747 ,0,0,0}, {28788,28787,28830 ,11702,11701,11744 ,0,0,0}, - {28789,28754,28834 ,11703,11668,11748 ,0,0,0}, {28755,28788,28756 ,11669,11702,11670 ,0,0,0}, - {28790,28834,28835 ,11704,11748,11749 ,0,0,0}, {28754,28789,28755 ,11668,11703,11669 ,0,0,0}, - {28791,28835,28836 ,11705,11749,11750 ,0,0,0}, {28834,28790,28789 ,11748,11704,11703 ,0,0,0}, - {28792,28836,28837 ,11706,11750,11751 ,0,0,0}, {28835,28791,28790 ,11749,11705,11704 ,0,0,0}, - {28793,28837,28747 ,11707,11751,11661 ,0,0,0}, {28792,28791,28836 ,11706,11705,11750 ,0,0,0}, - {28838,28839,28840 ,11752,11753,11754 ,0,0,0}, {28793,28792,28837 ,11707,11706,11751 ,0,0,0}, - {28794,28748,28841 ,11708,11662,11755 ,0,0,0}, {28746,28793,28747 ,11660,11707,11661 ,0,0,0}, - {28795,28841,28842 ,11709,11755,11756 ,0,0,0}, {28794,28746,28748 ,11708,11660,11662 ,0,0,0}, - {28796,28842,28843 ,11710,11756,11757 ,0,0,0}, {28841,28795,28794 ,11755,11709,11708 ,0,0,0}, - {28797,28843,28844 ,11711,11757,11758 ,0,0,0}, {28842,28796,28795 ,11756,11710,11709 ,0,0,0}, - {28798,28844,28845 ,11712,11758,11759 ,0,0,0}, {28843,28797,28796 ,11757,11711,11710 ,0,0,0}, - {28741,28845,28846 ,11655,11759,11760 ,0,0,0}, {28798,28797,28844 ,11712,11711,11758 ,0,0,0}, - {28802,28846,28800 ,11716,11760,11714 ,0,0,0}, {28741,28798,28845 ,11655,11712,11759 ,0,0,0}, - {28803,28800,28847 ,11717,11714,11761 ,0,0,0}, {28802,28741,28846 ,11716,11655,11760 ,0,0,0}, - {28804,28847,28848 ,11718,11761,11762 ,0,0,0}, {28800,28803,28802 ,11714,11717,11716 ,0,0,0}, - {28805,28848,28849 ,11719,11762,11763 ,0,0,0}, {28847,28804,28803 ,11761,11718,11717 ,0,0,0}, - {28806,28849,28850 ,11720,11763,11764 ,0,0,0}, {28848,28805,28804 ,11762,11719,11718 ,0,0,0}, - {28807,28850,28851 ,11721,11764,11765 ,0,0,0}, {28849,28806,28805 ,11763,11720,11719 ,0,0,0}, - {28808,28851,28852 ,11722,11765,11766 ,0,0,0}, {28850,28807,28806 ,11764,11721,11720 ,0,0,0}, - {28737,28852,28853 ,11651,11766,11767 ,0,0,0}, {28851,28808,28807 ,11765,11722,11721 ,0,0,0}, - {28809,28853,28810 ,11723,11767,11724 ,0,0,0}, {28737,28808,28852 ,11651,11722,11766 ,0,0,0}, - {28854,28717,28722 ,11768,11631,11636 ,0,0,0}, {28809,28737,28853 ,11723,11651,11767 ,0,0,0}, - {28727,28723,28855 ,11641,11637,11769 ,0,0,0}, {28718,28809,28810 ,11632,11723,11724 ,0,0,0}, - {28854,28721,28811 ,11768,11635,11725 ,0,0,0}, {28714,28707,28719 ,11628,11621,11633 ,0,0,0}, - {28811,28720,28705 ,11725,11634,11619 ,0,0,0}, {28854,28811,28717 ,11768,11725,11631 ,0,0,0}, - {28727,28719,28721 ,11641,11633,11635 ,0,0,0}, {28811,28721,28720 ,11725,11635,11634 ,0,0,0}, - {28856,28812,28716 ,11770,11726,11630 ,0,0,0}, {28812,28813,28701 ,11726,11727,11615 ,0,0,0}, - {28706,28708,28712 ,11620,11622,11626 ,0,0,0}, {28708,28714,28716 ,11622,11628,11630 ,0,0,0}, - {28856,28813,28812 ,11770,11727,11726 ,0,0,0}, {28760,28816,28771 ,11674,11730,11685 ,0,0,0}, - {28628,28627,28761 ,11542,11541,11675 ,0,0,0}, {28631,28635,28857 ,11545,11549,11771 ,0,0,0}, - {28816,28617,28773 ,11730,11531,11687 ,0,0,0}, {28760,28858,28816 ,11674,11772,11730 ,0,0,0}, - {28859,28860,28861 ,11773,11774,11775 ,0,0,0}, {28629,28617,28816 ,11543,11531,11730 ,0,0,0}, - {28621,28859,28817 ,11535,11773,11731 ,0,0,0}, {28622,28618,28617 ,11536,11532,11531 ,0,0,0}, - {28859,28862,28818 ,11773,11776,11732 ,0,0,0}, {28621,28817,28618 ,11535,11731,11532 ,0,0,0}, - {28862,28863,28819 ,11776,11777,11733 ,0,0,0}, {28859,28818,28817 ,11773,11732,11731 ,0,0,0}, - {28863,28864,28820 ,11777,11778,11734 ,0,0,0}, {28862,28819,28818 ,11776,11733,11732 ,0,0,0}, - {28864,28865,28821 ,11778,11779,11735 ,0,0,0}, {28863,28820,28819 ,11777,11734,11733 ,0,0,0}, - {28865,28866,28822 ,11779,11780,11736 ,0,0,0}, {28864,28821,28820 ,11778,11735,11734 ,0,0,0}, - {28866,28867,28823 ,11780,11781,11737 ,0,0,0}, {28865,28822,28821 ,11779,11736,11735 ,0,0,0}, - {28867,28868,28780 ,11781,11782,11694 ,0,0,0}, {28866,28823,28822 ,11780,11737,11736 ,0,0,0}, - {28868,28825,28781 ,11782,11739,11695 ,0,0,0}, {28780,28823,28867 ,11694,11737,11781 ,0,0,0}, - {28869,28870,28871 ,11783,11784,11785 ,0,0,0}, {28781,28780,28868 ,11695,11694,11782 ,0,0,0}, - {28826,28869,28827 ,11740,11783,11741 ,0,0,0}, {28825,28824,28781 ,11739,11738,11695 ,0,0,0}, - {28869,28872,28828 ,11783,11786,11742 ,0,0,0}, {28826,28827,28824 ,11740,11741,11738 ,0,0,0}, - {28872,28873,28829 ,11786,11787,11743 ,0,0,0}, {28869,28828,28827 ,11783,11742,11741 ,0,0,0}, - {28873,28874,28830 ,11787,11788,11744 ,0,0,0}, {28872,28829,28828 ,11786,11743,11742 ,0,0,0}, - {28874,28875,28756 ,11788,11789,11670 ,0,0,0}, {28873,28830,28829 ,11787,11744,11743 ,0,0,0}, - {28754,28875,28876 ,11668,11789,11790 ,0,0,0}, {28756,28830,28874 ,11670,11744,11788 ,0,0,0}, - {28876,28831,28834 ,11790,11745,11748 ,0,0,0}, {28875,28754,28756 ,11789,11668,11670 ,0,0,0}, - {28831,28877,28835 ,11745,11791,11749 ,0,0,0}, {28876,28834,28754 ,11790,11748,11668 ,0,0,0}, - {28877,28878,28836 ,11791,11792,11750 ,0,0,0}, {28831,28835,28834 ,11745,11749,11748 ,0,0,0}, - {28878,28879,28837 ,11792,11793,11751 ,0,0,0}, {28877,28836,28835 ,11791,11750,11749 ,0,0,0}, - {28879,28880,28747 ,11793,11794,11661 ,0,0,0}, {28878,28837,28836 ,11792,11751,11750 ,0,0,0}, - {28880,28881,28748 ,11794,11795,11662 ,0,0,0}, {28747,28837,28879 ,11661,11751,11793 ,0,0,0}, - {28881,28838,28841 ,11795,11752,11755 ,0,0,0}, {28748,28747,28880 ,11662,11661,11794 ,0,0,0}, - {28838,28882,28842 ,11752,11796,11756 ,0,0,0}, {28881,28841,28748 ,11795,11755,11662 ,0,0,0}, - {28882,28883,28843 ,11796,11797,11757 ,0,0,0}, {28838,28842,28841 ,11752,11756,11755 ,0,0,0}, - {28883,28884,28844 ,11797,11798,11758 ,0,0,0}, {28882,28843,28842 ,11796,11757,11756 ,0,0,0}, - {28884,28885,28845 ,11798,11799,11759 ,0,0,0}, {28883,28844,28843 ,11797,11758,11757 ,0,0,0}, - {28885,28801,28846 ,11799,11715,11760 ,0,0,0}, {28845,28844,28884 ,11759,11758,11798 ,0,0,0}, - {28886,28887,28888 ,11800,11801,11802 ,0,0,0}, {28846,28845,28885 ,11760,11759,11799 ,0,0,0}, - {28799,28886,28847 ,11713,11800,11761 ,0,0,0}, {28801,28800,28846 ,11715,11714,11760 ,0,0,0}, - {28886,28889,28848 ,11800,11803,11762 ,0,0,0}, {28799,28847,28800 ,11713,11761,11714 ,0,0,0}, - {28889,28890,28849 ,11803,11804,11763 ,0,0,0}, {28886,28848,28847 ,11800,11762,11761 ,0,0,0}, - {28890,28891,28850 ,11804,11805,11764 ,0,0,0}, {28889,28849,28848 ,11803,11763,11762 ,0,0,0}, - {28891,28892,28851 ,11805,11806,11765 ,0,0,0}, {28890,28850,28849 ,11804,11764,11763 ,0,0,0}, - {28892,28893,28852 ,11806,11807,11766 ,0,0,0}, {28891,28851,28850 ,11805,11765,11764 ,0,0,0}, - {28893,28894,28853 ,11807,11808,11767 ,0,0,0}, {28892,28852,28851 ,11806,11766,11765 ,0,0,0}, - {28894,28895,28810 ,11808,11809,11724 ,0,0,0}, {28893,28853,28852 ,11807,11767,11766 ,0,0,0}, - {28895,28896,28722 ,11809,11810,11636 ,0,0,0}, {28894,28810,28853 ,11808,11724,11767 ,0,0,0}, - {28896,28726,28854 ,11810,11640,11768 ,0,0,0}, {28722,28810,28895 ,11636,11724,11809 ,0,0,0}, - {28897,28719,28727 ,11811,11633,11641 ,0,0,0}, {28722,28896,28854 ,11636,11810,11768 ,0,0,0}, - {28726,28723,28727 ,11640,11637,11641 ,0,0,0}, {28854,28726,28721 ,11768,11640,11635 ,0,0,0}, - {28898,28716,28715 ,11812,11630,11629 ,0,0,0}, {28708,28716,28812 ,11622,11630,11726 ,0,0,0}, - {28707,28714,28708 ,11621,11628,11622 ,0,0,0}, {28897,28715,28714 ,11811,11629,11628 ,0,0,0}, - {28856,28716,28898 ,11770,11630,11812 ,0,0,0}, {28858,28760,28627 ,11772,11674,11541 ,0,0,0}, - {28633,28626,28766 ,11547,11540,11680 ,0,0,0}, {28629,28899,28900 ,11543,11813,11814 ,0,0,0}, - {28858,28629,28816 ,11772,11543,11730 ,0,0,0}, {28901,28858,28627 ,11815,11772,11541 ,0,0,0}, - {28622,28900,28902 ,11536,11814,11816 ,0,0,0}, {28858,28899,28629 ,11772,11813,11543 ,0,0,0}, - {28621,28902,28860 ,11535,11816,11774 ,0,0,0}, {28900,28622,28629 ,11814,11536,11543 ,0,0,0}, - {28903,28862,28861 ,11817,11776,11775 ,0,0,0}, {28902,28621,28622 ,11816,11535,11536 ,0,0,0}, - {28904,28863,28903 ,11818,11777,11817 ,0,0,0}, {28860,28859,28621 ,11774,11773,11535 ,0,0,0}, - {28905,28906,28907 ,11819,11820,11821 ,0,0,0}, {28861,28862,28859 ,11775,11776,11773 ,0,0,0}, - {28904,28905,28864 ,11818,11819,11778 ,0,0,0}, {28903,28863,28862 ,11817,11777,11776 ,0,0,0}, - {28905,28908,28865 ,11819,11822,11779 ,0,0,0}, {28904,28864,28863 ,11818,11778,11777 ,0,0,0}, - {28908,28909,28866 ,11822,11823,11780 ,0,0,0}, {28905,28865,28864 ,11819,11779,11778 ,0,0,0}, - {28909,28910,28867 ,11823,11824,11781 ,0,0,0}, {28908,28866,28865 ,11822,11780,11779 ,0,0,0}, - {28910,28911,28868 ,11824,11825,11782 ,0,0,0}, {28909,28867,28866 ,11823,11781,11780 ,0,0,0}, - {28825,28911,28912 ,11739,11825,11826 ,0,0,0}, {28910,28868,28867 ,11824,11782,11781 ,0,0,0}, - {28826,28912,28870 ,11740,11826,11784 ,0,0,0}, {28911,28825,28868 ,11825,11739,11782 ,0,0,0}, - {28913,28914,28915 ,11827,11828,11829 ,0,0,0}, {28912,28826,28825 ,11826,11740,11739 ,0,0,0}, - {28871,28913,28872 ,11785,11827,11786 ,0,0,0}, {28870,28869,28826 ,11784,11783,11740 ,0,0,0}, - {28913,28916,28873 ,11827,11830,11787 ,0,0,0}, {28871,28872,28869 ,11785,11786,11783 ,0,0,0}, - {28916,28917,28874 ,11830,11831,11788 ,0,0,0}, {28913,28873,28872 ,11827,11787,11786 ,0,0,0}, - {28875,28917,28918 ,11789,11831,11832 ,0,0,0}, {28916,28874,28873 ,11830,11788,11787 ,0,0,0}, - {28876,28918,28832 ,11790,11832,11746 ,0,0,0}, {28875,28874,28917 ,11789,11788,11831 ,0,0,0}, - {28919,28920,28921 ,11833,11834,11835 ,0,0,0}, {28918,28876,28875 ,11832,11790,11789 ,0,0,0}, - {28833,28919,28877 ,11747,11833,11791 ,0,0,0}, {28832,28831,28876 ,11746,11745,11790 ,0,0,0}, - {28919,28922,28878 ,11833,11836,11792 ,0,0,0}, {28833,28877,28831 ,11747,11791,11745 ,0,0,0}, - {28922,28923,28879 ,11836,11837,11793 ,0,0,0}, {28919,28878,28877 ,11833,11792,11791 ,0,0,0}, - {28923,28924,28880 ,11837,11838,11794 ,0,0,0}, {28922,28879,28878 ,11836,11793,11792 ,0,0,0}, - {28881,28924,28839 ,11795,11838,11753 ,0,0,0}, {28880,28879,28923 ,11794,11793,11837 ,0,0,0}, - {28925,28926,28927 ,11839,11840,11841 ,0,0,0}, {28924,28881,28880 ,11838,11795,11794 ,0,0,0}, - {28840,28925,28882 ,11754,11839,11796 ,0,0,0}, {28839,28838,28881 ,11753,11752,11795 ,0,0,0}, - {28925,28928,28883 ,11839,11842,11797 ,0,0,0}, {28840,28882,28838 ,11754,11796,11752 ,0,0,0}, - {28928,28929,28884 ,11842,11843,11798 ,0,0,0}, {28925,28883,28882 ,11839,11797,11796 ,0,0,0}, - {28929,28930,28885 ,11843,11844,11799 ,0,0,0}, {28928,28884,28883 ,11842,11798,11797 ,0,0,0}, - {28801,28930,28931 ,11715,11844,11845 ,0,0,0}, {28929,28885,28884 ,11843,11799,11798 ,0,0,0}, - {28799,28931,28887 ,11713,11845,11801 ,0,0,0}, {28930,28801,28885 ,11844,11715,11799 ,0,0,0}, - {28932,28889,28888 ,11846,11803,11802 ,0,0,0}, {28931,28799,28801 ,11845,11713,11715 ,0,0,0}, - {28933,28934,28935 ,11847,11848,11849 ,0,0,0}, {28887,28886,28799 ,11801,11800,11713 ,0,0,0}, - {28932,28933,28890 ,11846,11847,11804 ,0,0,0}, {28888,28889,28886 ,11802,11803,11800 ,0,0,0}, - {28933,28936,28891 ,11847,11850,11805 ,0,0,0}, {28932,28890,28889 ,11846,11804,11803 ,0,0,0}, - {28936,28937,28892 ,11850,11851,11806 ,0,0,0}, {28933,28891,28890 ,11847,11805,11804 ,0,0,0}, - {28937,28938,28893 ,11851,11852,11807 ,0,0,0}, {28936,28892,28891 ,11850,11806,11805 ,0,0,0}, - {28938,28939,28894 ,11852,11853,11808 ,0,0,0}, {28937,28893,28892 ,11851,11807,11806 ,0,0,0}, - {28939,28940,28895 ,11853,11854,11809 ,0,0,0}, {28938,28894,28893 ,11852,11808,11807 ,0,0,0}, - {28940,28724,28896 ,11854,11638,11810 ,0,0,0}, {28939,28895,28894 ,11853,11809,11808 ,0,0,0}, - {28726,28724,28723 ,11640,11638,11637 ,0,0,0}, {28895,28940,28896 ,11809,11854,11810 ,0,0,0}, - {28941,28715,28897 ,11855,11629,11811 ,0,0,0}, {28726,28896,28724 ,11640,11810,11638 ,0,0,0}, - {28942,28715,28941 ,11856,11629,11855 ,0,0,0}, {28943,28898,28715 ,11857,11812,11629 ,0,0,0}, - {28719,28897,28714 ,11633,11811,11628 ,0,0,0}, {28855,28941,28897 ,11769,11855,11811 ,0,0,0}, - {28942,28943,28715 ,11856,11857,11629 ,0,0,0}, {28901,28627,28626 ,11815,11541,11540 ,0,0,0}, - {28630,28632,28815 ,11544,11546,11729 ,0,0,0}, {28899,28944,28945 ,11813,11858,11859 ,0,0,0}, - {28901,28899,28858 ,11815,11813,11772 ,0,0,0}, {28626,28946,28901 ,11540,11860,11815 ,0,0,0}, - {28900,28945,28947 ,11814,11859,11861 ,0,0,0}, {28901,28944,28899 ,11815,11858,11813 ,0,0,0}, - {28902,28947,28948 ,11816,11861,11862 ,0,0,0}, {28899,28945,28900 ,11813,11859,11814 ,0,0,0}, - {28860,28948,28949 ,11774,11862,11863 ,0,0,0}, {28900,28947,28902 ,11814,11861,11816 ,0,0,0}, - {28861,28949,28950 ,11775,11863,11864 ,0,0,0}, {28902,28948,28860 ,11816,11862,11774 ,0,0,0}, - {28903,28950,28951 ,11817,11864,11865 ,0,0,0}, {28860,28949,28861 ,11774,11863,11775 ,0,0,0}, - {28904,28951,28906 ,11818,11865,11820 ,0,0,0}, {28950,28903,28861 ,11864,11817,11775 ,0,0,0}, - {28952,28908,28907 ,11866,11822,11821 ,0,0,0}, {28951,28904,28903 ,11865,11818,11817 ,0,0,0}, - {28953,28954,28952 ,11867,11868,11866 ,0,0,0}, {28906,28905,28904 ,11820,11819,11818 ,0,0,0}, - {28952,28954,28909 ,11866,11868,11823 ,0,0,0}, {28907,28908,28905 ,11821,11822,11819 ,0,0,0}, - {28954,28955,28910 ,11868,11869,11824 ,0,0,0}, {28952,28909,28908 ,11866,11823,11822 ,0,0,0}, - {28911,28955,28956 ,11825,11869,11870 ,0,0,0}, {28954,28910,28909 ,11868,11824,11823 ,0,0,0}, - {28912,28956,28957 ,11826,11870,11871 ,0,0,0}, {28910,28955,28911 ,11824,11869,11825 ,0,0,0}, - {28870,28957,28958 ,11784,11871,11872 ,0,0,0}, {28911,28956,28912 ,11825,11870,11826 ,0,0,0}, - {28871,28958,28914 ,11785,11872,11828 ,0,0,0}, {28957,28870,28912 ,11871,11784,11826 ,0,0,0}, - {28959,28960,28915 ,11873,11874,11829 ,0,0,0}, {28958,28871,28870 ,11872,11785,11784 ,0,0,0}, - {28915,28960,28916 ,11829,11874,11830 ,0,0,0}, {28914,28913,28871 ,11828,11827,11785 ,0,0,0}, - {28960,28961,28917 ,11874,11875,11831 ,0,0,0}, {28915,28916,28913 ,11829,11830,11827 ,0,0,0}, - {28918,28961,28962 ,11832,11875,11876 ,0,0,0}, {28960,28917,28916 ,11874,11831,11830 ,0,0,0}, - {28832,28962,28963 ,11746,11876,11877 ,0,0,0}, {28917,28961,28918 ,11831,11875,11832 ,0,0,0}, - {28833,28963,28920 ,11747,11877,11834 ,0,0,0}, {28962,28832,28918 ,11876,11746,11832 ,0,0,0}, - {28964,28965,28921 ,11878,11879,11835 ,0,0,0}, {28963,28833,28832 ,11877,11747,11746 ,0,0,0}, - {28921,28965,28922 ,11835,11879,11836 ,0,0,0}, {28920,28919,28833 ,11834,11833,11747 ,0,0,0}, - {28965,28966,28923 ,11879,11880,11837 ,0,0,0}, {28921,28922,28919 ,11835,11836,11833 ,0,0,0}, - {28924,28966,28967 ,11838,11880,11881 ,0,0,0}, {28965,28923,28922 ,11879,11837,11836 ,0,0,0}, - {28839,28967,28968 ,11753,11881,11882 ,0,0,0}, {28923,28966,28924 ,11837,11880,11838 ,0,0,0}, - {28840,28968,28926 ,11754,11882,11840 ,0,0,0}, {28967,28839,28924 ,11881,11753,11838 ,0,0,0}, - {28969,28970,28927 ,11883,11884,11841 ,0,0,0}, {28968,28840,28839 ,11882,11754,11753 ,0,0,0}, - {28927,28970,28928 ,11841,11884,11842 ,0,0,0}, {28926,28925,28840 ,11840,11839,11754 ,0,0,0}, - {28970,28971,28929 ,11884,11885,11843 ,0,0,0}, {28927,28928,28925 ,11841,11842,11839 ,0,0,0}, - {28930,28971,28972 ,11844,11885,11886 ,0,0,0}, {28970,28929,28928 ,11884,11843,11842 ,0,0,0}, - {28931,28972,28973 ,11845,11886,11887 ,0,0,0}, {28929,28971,28930 ,11843,11885,11844 ,0,0,0}, - {28887,28973,28974 ,11801,11887,11888 ,0,0,0}, {28930,28972,28931 ,11844,11886,11845 ,0,0,0}, - {28888,28974,28975 ,11802,11888,11889 ,0,0,0}, {28931,28973,28887 ,11845,11887,11801 ,0,0,0}, - {28932,28975,28934 ,11846,11889,11848 ,0,0,0}, {28974,28888,28887 ,11888,11802,11801 ,0,0,0}, - {28976,28936,28935 ,11890,11850,11849 ,0,0,0}, {28975,28932,28888 ,11889,11846,11802 ,0,0,0}, - {28977,28978,28976 ,11891,11892,11890 ,0,0,0}, {28934,28933,28932 ,11848,11847,11846 ,0,0,0}, - {28976,28978,28937 ,11890,11892,11851 ,0,0,0}, {28935,28936,28933 ,11849,11850,11847 ,0,0,0}, - {28978,28979,28938 ,11892,11893,11852 ,0,0,0}, {28976,28937,28936 ,11890,11851,11850 ,0,0,0}, - {28979,28980,28939 ,11893,11894,11853 ,0,0,0}, {28978,28938,28937 ,11892,11852,11851 ,0,0,0}, - {28980,28981,28940 ,11894,11895,11854 ,0,0,0}, {28979,28939,28938 ,11893,11853,11852 ,0,0,0}, - {28724,28981,28725 ,11638,11895,11639 ,0,0,0}, {28980,28940,28939 ,11894,11854,11853 ,0,0,0}, - {28725,28982,28723 ,11639,11896,11637 ,0,0,0}, {28724,28940,28981 ,11638,11854,11895 ,0,0,0}, - {28983,28941,28731 ,11897,11855,11645 ,0,0,0}, {28983,28984,28941 ,11897,11898,11855 ,0,0,0}, - {28727,28855,28897 ,11641,11769,11811 ,0,0,0}, {28982,28731,28855 ,11896,11645,11769 ,0,0,0}, - {28942,28941,28984 ,11856,11855,11898 ,0,0,0}, {28632,28946,28626 ,11546,11860,11540 ,0,0,0}, - {28985,28631,28630 ,11899,11545,11544 ,0,0,0}, {28986,28944,28946 ,11900,11858,11860 ,0,0,0}, - {28946,28944,28901 ,11860,11858,11815 ,0,0,0}, {28946,28857,28986 ,11860,11771,11900 ,0,0,0}, - {28987,28945,28944 ,11901,11859,11858 ,0,0,0}, {28944,28986,28987 ,11858,11900,11901 ,0,0,0}, - {28988,28947,28945 ,11902,11861,11859 ,0,0,0}, {28945,28987,28988 ,11859,11901,11902 ,0,0,0}, - {28989,28948,28947 ,11903,11862,11861 ,0,0,0}, {28947,28988,28989 ,11861,11902,11903 ,0,0,0}, - {28990,28949,28948 ,11904,11863,11862 ,0,0,0}, {28948,28989,28990 ,11862,11903,11904 ,0,0,0}, - {28991,28950,28949 ,11905,11864,11863 ,0,0,0}, {28949,28990,28991 ,11863,11904,11905 ,0,0,0}, - {28992,28951,28950 ,11906,11865,11864 ,0,0,0}, {28950,28991,28992 ,11864,11905,11906 ,0,0,0}, - {28993,28906,28951 ,11907,11820,11865 ,0,0,0}, {28951,28992,28993 ,11865,11906,11907 ,0,0,0}, - {28994,28907,28906 ,11908,11821,11820 ,0,0,0}, {28906,28993,28994 ,11820,11907,11908 ,0,0,0}, - {28995,28952,28907 ,11909,11866,11821 ,0,0,0}, {28994,28995,28907 ,11908,11909,11821 ,0,0,0}, - {28996,28997,28998 ,11910,11911,11912 ,0,0,0}, {28995,28953,28952 ,11909,11867,11866 ,0,0,0}, - {28999,28955,28954 ,11913,11869,11868 ,0,0,0}, {28953,28999,28954 ,11867,11913,11868 ,0,0,0}, - {29000,28956,28955 ,11914,11870,11869 ,0,0,0}, {28955,28999,29000 ,11869,11913,11914 ,0,0,0}, - {29001,28957,28956 ,11915,11871,11870 ,0,0,0}, {28956,29000,29001 ,11870,11914,11915 ,0,0,0}, - {29002,28958,28957 ,11916,11872,11871 ,0,0,0}, {28957,29001,29002 ,11871,11915,11916 ,0,0,0}, - {29003,28914,28958 ,11917,11828,11872 ,0,0,0}, {28958,29002,29003 ,11872,11916,11917 ,0,0,0}, - {29004,28915,28914 ,11918,11829,11828 ,0,0,0}, {29003,29004,28914 ,11917,11918,11828 ,0,0,0}, - {29005,28959,29006 ,11919,11873,11920 ,0,0,0}, {29004,28959,28915 ,11918,11873,11829 ,0,0,0}, - {29005,28961,28960 ,11919,11875,11874 ,0,0,0}, {28959,29005,28960 ,11873,11919,11874 ,0,0,0}, - {29007,28962,28961 ,11921,11876,11875 ,0,0,0}, {28961,29005,29007 ,11875,11919,11921 ,0,0,0}, - {29008,28963,28962 ,11922,11877,11876 ,0,0,0}, {28962,29007,29008 ,11876,11921,11922 ,0,0,0}, - {29009,28920,28963 ,11923,11834,11877 ,0,0,0}, {28963,29008,29009 ,11877,11922,11923 ,0,0,0}, - {29010,28921,28920 ,11924,11835,11834 ,0,0,0}, {29009,29010,28920 ,11923,11924,11834 ,0,0,0}, - {29011,29012,29013 ,11925,11926,11927 ,0,0,0}, {29010,28964,28921 ,11924,11878,11835 ,0,0,0}, - {29014,28966,28965 ,11928,11880,11879 ,0,0,0}, {28964,29014,28965 ,11878,11928,11879 ,0,0,0}, - {29015,28967,28966 ,11929,11881,11880 ,0,0,0}, {28966,29014,29015 ,11880,11928,11929 ,0,0,0}, - {29016,28968,28967 ,11930,11882,11881 ,0,0,0}, {28967,29015,29016 ,11881,11929,11930 ,0,0,0}, - {29017,28926,28968 ,11931,11840,11882 ,0,0,0}, {28968,29016,29017 ,11882,11930,11931 ,0,0,0}, - {29018,28927,28926 ,11932,11841,11840 ,0,0,0}, {29017,29018,28926 ,11931,11932,11840 ,0,0,0}, - {28970,29019,28971 ,11884,11933,11885 ,0,0,0}, {29018,28969,28927 ,11932,11883,11841 ,0,0,0}, - {29020,29021,29019 ,11934,11935,11933 ,0,0,0}, {28969,29019,28970 ,11883,11933,11884 ,0,0,0}, - {29021,28972,28971 ,11935,11886,11885 ,0,0,0}, {28971,29019,29021 ,11885,11933,11935 ,0,0,0}, - {29022,28973,28972 ,11936,11887,11886 ,0,0,0}, {28972,29021,29022 ,11886,11935,11936 ,0,0,0}, - {29023,28974,28973 ,11937,11888,11887 ,0,0,0}, {28973,29022,29023 ,11887,11936,11937 ,0,0,0}, - {29024,28975,28974 ,11938,11889,11888 ,0,0,0}, {28974,29023,29024 ,11888,11937,11938 ,0,0,0}, - {29025,28934,28975 ,11939,11848,11889 ,0,0,0}, {28975,29024,29025 ,11889,11938,11939 ,0,0,0}, - {29026,28935,28934 ,11940,11849,11848 ,0,0,0}, {28934,29025,29026 ,11848,11939,11940 ,0,0,0}, - {29027,28976,28935 ,11941,11890,11849 ,0,0,0}, {29026,29027,28935 ,11940,11941,11849 ,0,0,0}, - {28978,29028,28979 ,11892,11942,11893 ,0,0,0}, {29027,28977,28976 ,11941,11891,11890 ,0,0,0}, - {28979,29029,28980 ,11893,11943,11894 ,0,0,0}, {28977,29028,28978 ,11891,11942,11892 ,0,0,0}, - {28980,29030,28981 ,11894,11944,11895 ,0,0,0}, {29028,29029,28979 ,11942,11943,11893 ,0,0,0}, - {28981,28728,28725 ,11895,11642,11639 ,0,0,0}, {29029,29030,28980 ,11943,11944,11894 ,0,0,0}, - {28733,28732,28729 ,11647,11646,11643 ,0,0,0}, {29030,28728,28981 ,11944,11642,11895 ,0,0,0}, - {28729,28982,28725 ,11643,11896,11639 ,0,0,0}, {28855,28731,28941 ,11769,11645,11855 ,0,0,0}, - {28723,28982,28855 ,11637,11896,11769 ,0,0,0}, {28982,28729,28732 ,11896,11643,11646 ,0,0,0}, - {28983,28731,28730 ,11897,11645,11644 ,0,0,0}, {28631,28857,28632 ,11545,11771,11546 ,0,0,0}, - {28985,28638,28636 ,11899,11552,11550 ,0,0,0}, {28986,28857,29031 ,11900,11771,11945 ,0,0,0}, - {28632,28857,28946 ,11546,11771,11860 ,0,0,0}, {28857,28635,29031 ,11771,11549,11945 ,0,0,0}, - {28987,28986,29032 ,11901,11900,11946 ,0,0,0}, {28986,29031,29032 ,11900,11945,11946 ,0,0,0}, - {28988,28987,29033 ,11902,11901,11947 ,0,0,0}, {28987,29032,29033 ,11901,11946,11947 ,0,0,0}, - {28989,28988,29034 ,11903,11902,11948 ,0,0,0}, {28988,29033,29034 ,11902,11947,11948 ,0,0,0}, - {28990,28989,29035 ,11904,11903,11949 ,0,0,0}, {28989,29034,29035 ,11903,11948,11949 ,0,0,0}, - {28991,28990,29036 ,11905,11904,11950 ,0,0,0}, {28990,29035,29036 ,11904,11949,11950 ,0,0,0}, - {28992,28991,29037 ,11906,11905,11951 ,0,0,0}, {28991,29036,29037 ,11905,11950,11951 ,0,0,0}, - {28993,28992,29038 ,11907,11906,11952 ,0,0,0}, {28992,29037,29038 ,11906,11951,11952 ,0,0,0}, - {28994,28993,29039 ,11908,11907,11953 ,0,0,0}, {28993,29038,29039 ,11907,11952,11953 ,0,0,0}, - {28995,28994,29040 ,11909,11908,11954 ,0,0,0}, {28994,29039,29040 ,11908,11953,11954 ,0,0,0}, - {28953,28995,29041 ,11867,11909,11955 ,0,0,0}, {28995,29040,29041 ,11909,11954,11955 ,0,0,0}, - {28999,28953,28996 ,11913,11867,11910 ,0,0,0}, {29041,28996,28953 ,11955,11910,11867 ,0,0,0}, - {29000,28999,28998 ,11914,11913,11912 ,0,0,0}, {28999,28996,28998 ,11913,11910,11912 ,0,0,0}, - {29001,29000,29042 ,11915,11914,11956 ,0,0,0}, {29000,28998,29042 ,11914,11912,11956 ,0,0,0}, - {29002,29001,29043 ,11916,11915,11957 ,0,0,0}, {29001,29042,29043 ,11915,11956,11957 ,0,0,0}, - {29003,29002,29044 ,11917,11916,11958 ,0,0,0}, {29002,29043,29044 ,11916,11957,11958 ,0,0,0}, - {29004,29003,29045 ,11918,11917,11959 ,0,0,0}, {29003,29044,29045 ,11917,11958,11959 ,0,0,0}, - {28959,29004,29046 ,11873,11918,11960 ,0,0,0}, {29004,29045,29046 ,11918,11959,11960 ,0,0,0}, - {29046,29047,29006 ,11960,11961,11920 ,0,0,0}, {29046,29006,28959 ,11960,11920,11873 ,0,0,0}, - {29007,29005,29048 ,11921,11919,11962 ,0,0,0}, {29005,29006,29048 ,11919,11920,11962 ,0,0,0}, - {29008,29007,29049 ,11922,11921,11963 ,0,0,0}, {29007,29048,29049 ,11921,11962,11963 ,0,0,0}, - {29009,29008,29050 ,11923,11922,11964 ,0,0,0}, {29008,29049,29050 ,11922,11963,11964 ,0,0,0}, - {29010,29009,29051 ,11924,11923,11965 ,0,0,0}, {29009,29050,29051 ,11923,11964,11965 ,0,0,0}, - {28964,29010,29052 ,11878,11924,11966 ,0,0,0}, {29010,29051,29052 ,11924,11965,11966 ,0,0,0}, - {29014,28964,29011 ,11928,11878,11925 ,0,0,0}, {29052,29011,28964 ,11966,11925,11878 ,0,0,0}, - {29015,29014,29013 ,11929,11928,11927 ,0,0,0}, {29014,29011,29013 ,11928,11925,11927 ,0,0,0}, - {29016,29015,29053 ,11930,11929,11967 ,0,0,0}, {29015,29013,29053 ,11929,11927,11967 ,0,0,0}, - {29017,29016,29054 ,11931,11930,11968 ,0,0,0}, {29016,29053,29054 ,11930,11967,11968 ,0,0,0}, - {29018,29017,29055 ,11932,11931,11969 ,0,0,0}, {29017,29054,29055 ,11931,11968,11969 ,0,0,0}, - {28969,29018,29056 ,11883,11932,11970 ,0,0,0}, {29018,29055,29056 ,11932,11969,11970 ,0,0,0}, - {29019,28969,29057 ,11933,11883,11971 ,0,0,0}, {28969,29056,29057 ,11883,11970,11971 ,0,0,0}, - {29020,29057,29058 ,11934,11971,11972 ,0,0,0}, {29057,29020,29019 ,11971,11934,11933 ,0,0,0}, - {29022,29021,29059 ,11936,11935,11973 ,0,0,0}, {29021,29020,29059 ,11935,11934,11973 ,0,0,0}, - {29023,29022,29060 ,11937,11936,11974 ,0,0,0}, {29022,29059,29060 ,11936,11973,11974 ,0,0,0}, - {29024,29023,29061 ,11938,11937,11975 ,0,0,0}, {29023,29060,29061 ,11937,11974,11975 ,0,0,0}, - {29025,29024,29062 ,11939,11938,11976 ,0,0,0}, {29024,29061,29062 ,11938,11975,11976 ,0,0,0}, - {29026,29025,29063 ,11940,11939,11977 ,0,0,0}, {29025,29062,29063 ,11939,11976,11977 ,0,0,0}, - {29027,29026,29064 ,11941,11940,11978 ,0,0,0}, {29026,29063,29064 ,11940,11977,11978 ,0,0,0}, - {28977,29027,29065 ,11891,11941,11979 ,0,0,0}, {29027,29064,29065 ,11941,11978,11979 ,0,0,0}, - {29028,28977,29066 ,11942,11891,11980 ,0,0,0}, {28977,29065,29066 ,11891,11979,11980 ,0,0,0}, - {29029,29028,29067 ,11943,11942,11981 ,0,0,0}, {29028,29066,29067 ,11942,11980,11981 ,0,0,0}, - {29030,29029,29068 ,11944,11943,11982 ,0,0,0}, {29029,29067,29068 ,11943,11981,11982 ,0,0,0}, - {28728,29030,29069 ,11642,11944,11983 ,0,0,0}, {29030,29068,29069 ,11944,11982,11983 ,0,0,0}, - {29070,28729,28728 ,11984,11643,11642 ,0,0,0}, {29070,28728,29069 ,11984,11642,11983 ,0,0,0}, - {28982,28732,28731 ,11896,11646,11645 ,0,0,0}, {29070,28733,28729 ,11984,11647,11643 ,0,0,0}, - {28730,28732,28735 ,11644,11646,11649 ,0,0,0}, {28636,28631,28985 ,11550,11545,11899 ,0,0,0}, - {28637,28634,28636 ,11551,11548,11550 ,0,0,0}, {28634,29071,28635 ,11548,11985,11549 ,0,0,0}, - {28635,29071,29031 ,11549,11985,11945 ,0,0,0}, {29071,29072,29031 ,11985,11986,11945 ,0,0,0}, - {29031,29072,29032 ,11945,11986,11946 ,0,0,0}, {29072,29073,29032 ,11986,11987,11946 ,0,0,0}, - {29032,29073,29033 ,11946,11987,11947 ,0,0,0}, {29073,29074,29033 ,11987,11988,11947 ,0,0,0}, - {29033,29074,29034 ,11947,11988,11948 ,0,0,0}, {29074,29075,29034 ,11988,11989,11948 ,0,0,0}, - {29034,29075,29035 ,11948,11989,11949 ,0,0,0}, {29075,29076,29035 ,11989,11990,11949 ,0,0,0}, - {29035,29076,29036 ,11949,11990,11950 ,0,0,0}, {29076,29077,29036 ,11990,11991,11950 ,0,0,0}, - {29036,29077,29037 ,11950,11991,11951 ,0,0,0}, {29077,29078,29037 ,11991,11992,11951 ,0,0,0}, - {29078,29079,29038 ,11992,11993,11952 ,0,0,0}, {29078,29038,29037 ,11992,11952,11951 ,0,0,0}, - {29079,29080,29039 ,11993,11994,11953 ,0,0,0}, {29079,29039,29038 ,11993,11953,11952 ,0,0,0}, - {29080,29081,29040 ,11994,11995,11954 ,0,0,0}, {29080,29040,29039 ,11994,11954,11953 ,0,0,0}, - {29081,29082,29041 ,11995,11996,11955 ,0,0,0}, {29081,29041,29040 ,11995,11955,11954 ,0,0,0}, - {29082,29083,28996 ,11996,11997,11910 ,0,0,0}, {29082,28996,29041 ,11996,11910,11955 ,0,0,0}, - {28997,28996,29083 ,11911,11910,11997 ,0,0,0}, {28997,29084,28998 ,11911,11998,11912 ,0,0,0}, - {28998,29084,29042 ,11912,11998,11956 ,0,0,0}, {29084,29085,29042 ,11998,11999,11956 ,0,0,0}, - {29042,29085,29043 ,11956,11999,11957 ,0,0,0}, {29085,29086,29043 ,11999,12000,11957 ,0,0,0}, - {29086,29087,29044 ,12000,12001,11958 ,0,0,0}, {29086,29044,29043 ,12000,11958,11957 ,0,0,0}, - {29087,29088,29045 ,12001,12002,11959 ,0,0,0}, {29087,29045,29044 ,12001,11959,11958 ,0,0,0}, - {29088,29047,29046 ,12002,11961,11960 ,0,0,0}, {29088,29046,29045 ,12002,11960,11959 ,0,0,0}, - {29047,29089,29006 ,11961,12003,11920 ,0,0,0}, {29089,29090,29006 ,12003,12004,11920 ,0,0,0}, - {29006,29090,29048 ,11920,12004,11962 ,0,0,0}, {29090,29091,29048 ,12004,12005,11962 ,0,0,0}, - {29048,29091,29049 ,11962,12005,11963 ,0,0,0}, {29091,29092,29049 ,12005,12006,11963 ,0,0,0}, - {29092,29093,29050 ,12006,12007,11964 ,0,0,0}, {29092,29050,29049 ,12006,11964,11963 ,0,0,0}, - {29093,29094,29051 ,12007,12008,11965 ,0,0,0}, {29093,29051,29050 ,12007,11965,11964 ,0,0,0}, - {29094,29095,29052 ,12008,12009,11966 ,0,0,0}, {29094,29052,29051 ,12008,11966,11965 ,0,0,0}, - {29095,29096,29011 ,12009,12010,11925 ,0,0,0}, {29095,29011,29052 ,12009,11925,11966 ,0,0,0}, - {29012,29011,29096 ,11926,11925,12010 ,0,0,0}, {29012,29097,29013 ,11926,12011,11927 ,0,0,0}, - {29013,29097,29053 ,11927,12011,11967 ,0,0,0}, {29097,29098,29053 ,12011,12012,11967 ,0,0,0}, - {29098,29099,29054 ,12012,12013,11968 ,0,0,0}, {29098,29054,29053 ,12012,11968,11967 ,0,0,0}, - {29099,29100,29055 ,12013,12014,11969 ,0,0,0}, {29099,29055,29054 ,12013,11969,11968 ,0,0,0}, - {29100,29101,29056 ,12014,12015,11970 ,0,0,0}, {29100,29056,29055 ,12014,11970,11969 ,0,0,0}, - {29101,29058,29057 ,12015,11972,11971 ,0,0,0}, {29101,29057,29056 ,12015,11971,11970 ,0,0,0}, - {29058,29102,29020 ,11972,12016,11934 ,0,0,0}, {29102,29103,29020 ,12016,12017,11934 ,0,0,0}, - {29020,29103,29059 ,11934,12017,11973 ,0,0,0}, {29103,29104,29059 ,12017,12018,11973 ,0,0,0}, - {29059,29104,29060 ,11973,12018,11974 ,0,0,0}, {29104,29105,29060 ,12018,12019,11974 ,0,0,0}, - {29060,29105,29061 ,11974,12019,11975 ,0,0,0}, {29105,29106,29061 ,12019,12020,11975 ,0,0,0}, - {29106,29107,29062 ,12020,12021,11976 ,0,0,0}, {29106,29062,29061 ,12020,11976,11975 ,0,0,0}, - {29107,29108,29063 ,12021,12022,11977 ,0,0,0}, {29107,29063,29062 ,12021,11977,11976 ,0,0,0}, - {29108,29109,29064 ,12022,12023,11978 ,0,0,0}, {29108,29064,29063 ,12022,11978,11977 ,0,0,0}, - {29109,29110,29065 ,12023,12024,11979 ,0,0,0}, {29109,29065,29064 ,12023,11979,11978 ,0,0,0}, - {29110,29111,29066 ,12024,12025,11980 ,0,0,0}, {29110,29066,29065 ,12024,11980,11979 ,0,0,0}, - {29111,29112,29067 ,12025,12026,11981 ,0,0,0}, {29111,29067,29066 ,12025,11981,11980 ,0,0,0}, - {29112,29113,29068 ,12026,12027,11982 ,0,0,0}, {29112,29068,29067 ,12026,11982,11981 ,0,0,0}, - {29113,29114,29069 ,12027,12028,11983 ,0,0,0}, {29113,29069,29068 ,12027,11983,11982 ,0,0,0}, - {29114,29115,29070 ,12028,12029,11984 ,0,0,0}, {29114,29070,29069 ,12028,11984,11983 ,0,0,0}, - {29116,29070,29115 ,12030,11984,12029 ,0,0,0}, {29070,29116,28733 ,11984,12030,11647 ,0,0,0}, - {28733,29116,28736 ,11647,12030,11650 ,0,0,0}, {29117,29118,29119 ,12031,12032,12033 ,0,0,0}, - {29120,29121,29122 ,12034,12035,12036 ,0,0,0}, {29123,29124,29125 ,12037,12038,12039 ,0,0,0}, - {29126,29127,29123 ,12040,12041,12037 ,0,0,0}, {29128,29129,29130 ,12042,12043,12044 ,0,0,0}, - {29131,29132,29133 ,12045,12046,12047 ,0,0,0}, {29134,29135,29136 ,12048,12049,12050 ,0,0,0}, - {29137,29138,29131 ,12051,12052,12045 ,0,0,0}, {29139,29140,29141 ,12053,12054,12055 ,0,0,0}, - {29141,29136,29142 ,12055,12050,12056 ,0,0,0}, {29143,29139,29144 ,12057,12053,12058 ,0,0,0}, - {29140,29139,29145 ,12054,12053,12059 ,0,0,0}, {29126,29146,29147 ,12040,12060,12061 ,0,0,0}, - {29143,29148,29139 ,12057,12062,12053 ,0,0,0}, {29149,29150,29151 ,12063,12064,12065 ,0,0,0}, - {29150,29152,29119 ,12064,12066,12033 ,0,0,0}, {29153,29154,29151 ,12067,12068,12065 ,0,0,0}, - {29152,29150,29149 ,12066,12064,12063 ,0,0,0}, {29155,29156,29153 ,12069,12070,12067 ,0,0,0}, - {29151,29154,29149 ,12065,12068,12063 ,0,0,0}, {29157,29158,29121 ,12071,12072,12035 ,0,0,0}, - {29159,29160,29161 ,12073,12074,12075 ,0,0,0}, {29157,29162,29158 ,12071,12076,12072 ,0,0,0}, - {29163,29164,29165 ,12077,12078,12079 ,0,0,0}, {29160,29166,29161 ,12074,12080,12075 ,0,0,0}, - {29167,29168,29169 ,12081,12082,12083 ,0,0,0}, {29163,29165,29170 ,12077,12079,12084 ,0,0,0}, - {29171,29172,29173 ,12085,12086,12087 ,0,0,0}, {29172,29171,29174 ,12086,12085,12088 ,0,0,0}, - {29175,29176,29177 ,12089,12090,12091 ,0,0,0}, {29178,29179,29176 ,12092,12093,12090 ,0,0,0}, - {29180,29181,29182 ,12094,12095,12096 ,0,0,0}, {29175,29177,29183 ,12089,12091,12097 ,0,0,0}, - {29184,29185,29186 ,12098,12099,12100 ,0,0,0}, {29180,29182,29187 ,12094,12096,12101 ,0,0,0}, - {29188,29189,29190 ,12102,12103,12104 ,0,0,0}, {29191,29185,29184 ,12105,12099,12098 ,0,0,0}, - {29192,29193,29194 ,12106,12107,12108 ,0,0,0}, {29194,29190,29192 ,12108,12104,12106 ,0,0,0}, - {29195,29196,29197 ,12109,12110,12111 ,0,0,0}, {29198,29193,29199 ,12112,12107,12113 ,0,0,0}, - {29200,29201,29202 ,12114,12115,12116 ,0,0,0}, {29201,29200,29203 ,12115,12114,12117 ,0,0,0}, - {29204,29205,29206 ,12118,12119,12120 ,0,0,0}, {29202,29205,29207 ,12116,12119,12121 ,0,0,0}, - {29208,29209,29210 ,12122,12123,12124 ,0,0,0}, {29211,29212,29213 ,12125,12126,12127 ,0,0,0}, - {29214,29215,29216 ,12128,12129,12130 ,0,0,0}, {29215,29214,29217 ,12129,12128,12131 ,0,0,0}, - {29218,29219,29220 ,12132,12133,12134 ,0,0,0}, {29221,29222,29218 ,12135,12136,12132 ,0,0,0}, - {29219,29218,29222 ,12133,12132,12136 ,0,0,0}, {29219,29222,29208 ,12133,12136,12122 ,0,0,0}, - {29223,29224,29225 ,12137,12138,12139 ,0,0,0}, {29206,29210,29209 ,12120,12124,12123 ,0,0,0}, - {29226,29211,29213 ,12140,12125,12127 ,0,0,0}, {29212,29227,29213 ,12126,12141,12127 ,0,0,0}, - {29228,29229,29211 ,12142,12143,12125 ,0,0,0}, {29211,29230,29212 ,12125,12144,12126 ,0,0,0}, - {29231,29232,29233 ,12145,12146,12147 ,0,0,0}, {28630,29234,29235 ,12148,12149,12150 ,0,0,0}, - {29235,29236,28985 ,12150,12151,12152 ,0,0,0}, {29236,28638,28985 ,12151,12153,12152 ,0,0,0}, - {28639,28638,29237 ,730,12153,12154 ,0,0,0}, {29225,29205,29223 ,12139,12119,12137 ,0,0,0}, - {29216,29221,29218 ,12130,12135,12132 ,0,0,0}, {29206,29209,29204 ,12120,12123,12118 ,0,0,0}, - {28768,29217,28767 ,12155,12131,12156 ,0,0,0}, {29200,29202,29207 ,12114,12116,12121 ,0,0,0}, - {29205,29204,29207 ,12119,12118,12121 ,0,0,0}, {29195,29203,29196 ,12109,12117,12110 ,0,0,0}, - {29201,29203,29195 ,12115,12117,12109 ,0,0,0}, {29195,29238,29201 ,12109,12157,12115 ,0,0,0}, - {29196,29198,29197 ,12110,12112,12111 ,0,0,0}, {29199,29193,29192 ,12113,12107,12106 ,0,0,0}, - {29198,29199,29197 ,12112,12113,12111 ,0,0,0}, {29188,29190,29194 ,12102,12104,12108 ,0,0,0}, - {29184,29186,29239 ,12098,12100,12158 ,0,0,0}, {29240,29191,29241 ,12159,12105,12160 ,0,0,0}, - {29190,29189,29241 ,12104,12103,12160 ,0,0,0}, {29185,29191,29240 ,12099,12105,12159 ,0,0,0}, - {29189,29240,29241 ,12103,12159,12160 ,0,0,0}, {29239,29186,29187 ,12158,12100,12101 ,0,0,0}, - {29242,29184,29239 ,12161,12098,12158 ,0,0,0}, {29187,29182,29239 ,12101,12096,12158 ,0,0,0}, - {29183,29181,29243 ,12097,12095,12162 ,0,0,0}, {29180,29243,29181 ,12094,12162,12095 ,0,0,0}, - {29244,29183,29243 ,12163,12097,12162 ,0,0,0}, {29179,29177,29176 ,12093,12091,12090 ,0,0,0}, - {29175,29183,29244 ,12089,12097,12163 ,0,0,0}, {29178,29245,29179 ,12092,12164,12093 ,0,0,0}, - {29173,29172,29245 ,12087,12086,12164 ,0,0,0}, {29245,29178,29173 ,12164,12092,12087 ,0,0,0}, - {29174,29246,29169 ,12088,12165,12083 ,0,0,0}, {29247,29248,29249 ,12166,12167,12168 ,0,0,0}, - {29169,29246,29250 ,12083,12165,12169 ,0,0,0}, {29246,29174,29171 ,12165,12088,12085 ,0,0,0}, - {29251,29170,29168 ,12170,12084,12082 ,0,0,0}, {29167,29169,29250 ,12081,12083,12169 ,0,0,0}, - {29170,29251,29163 ,12084,12170,12077 ,0,0,0}, {29251,29168,29167 ,12170,12082,12081 ,0,0,0}, - {29162,29252,29253 ,12076,12171,12172 ,0,0,0}, {29164,29166,29254 ,12078,12080,12173 ,0,0,0}, - {29165,29164,29254 ,12079,12078,12173 ,0,0,0}, {29254,29166,29160 ,12173,12080,12074 ,0,0,0}, - {29255,29256,29257 ,12174,12175,12176 ,0,0,0}, {29252,29159,29161 ,12171,12073,12075 ,0,0,0}, - {29119,29152,29117 ,12033,12066,12031 ,0,0,0}, {29162,29159,29252 ,12076,12073,12171 ,0,0,0}, - {29162,29253,29158 ,12076,12172,12072 ,0,0,0}, {29121,29120,29157 ,12035,12034,12071 ,0,0,0}, - {29156,29155,29122 ,12070,12069,12036 ,0,0,0}, {29122,29155,29120 ,12036,12069,12034 ,0,0,0}, - {29258,29155,29153 ,12177,12069,12067 ,0,0,0}, {29156,29154,29153 ,12070,12068,12067 ,0,0,0}, - {29118,29147,29146 ,12032,12061,12060 ,0,0,0}, {29117,29147,29118 ,12031,12061,12032 ,0,0,0}, - {29127,29124,29123 ,12041,12038,12037 ,0,0,0}, {29126,29123,29146 ,12040,12037,12060 ,0,0,0}, - {29127,29259,29124 ,12041,12178,12038 ,0,0,0}, {29130,29260,29134 ,12044,12179,12048 ,0,0,0}, - {29261,29262,29259 ,12180,12181,12178 ,0,0,0}, {29128,29263,29264 ,12042,12182,12183 ,0,0,0}, - {29262,29265,29266 ,12181,12184,12185 ,0,0,0}, {29261,29265,29262 ,12180,12184,12181 ,0,0,0}, - {29262,29124,29259 ,12181,12038,12178 ,0,0,0}, {29266,29267,29268 ,12185,12186,12187 ,0,0,0}, - {29267,29266,29269 ,12186,12185,12188 ,0,0,0}, {29265,29269,29266 ,12184,12188,12185 ,0,0,0}, - {29264,29263,29268 ,12183,12182,12187 ,0,0,0}, {29270,29130,29129 ,12189,12044,12043 ,0,0,0}, - {29266,29268,29263 ,12185,12187,12182 ,0,0,0}, {29135,29134,29271 ,12049,12048,12190 ,0,0,0}, - {29266,29272,29262 ,12185,12191,12181 ,0,0,0}, {29273,29146,29123 ,12192,12060,12037 ,0,0,0}, - {29262,29133,29124 ,12181,12047,12038 ,0,0,0}, {29274,29118,29146 ,12193,12032,12060 ,0,0,0}, - {29125,29124,29133 ,12039,12038,12047 ,0,0,0}, {29275,29119,29118 ,12194,12033,12032 ,0,0,0}, - {29273,29123,29125 ,12192,12037,12039 ,0,0,0}, {29276,29150,29119 ,12195,12064,12033 ,0,0,0}, - {29274,29146,29273 ,12193,12060,12192 ,0,0,0}, {29277,29151,29150 ,12196,12065,12064 ,0,0,0}, - {29275,29118,29274 ,12194,12032,12193 ,0,0,0}, {29278,29153,29151 ,12197,12067,12065 ,0,0,0}, - {29119,29275,29276 ,12033,12194,12195 ,0,0,0}, {29279,29280,29281 ,12198,12199,12200 ,0,0,0}, - {29150,29276,29277 ,12064,12195,12196 ,0,0,0}, {29281,29120,29155 ,12200,12034,12069 ,0,0,0}, - {29151,29277,29278 ,12065,12196,12197 ,0,0,0}, {29282,29157,29120 ,12201,12071,12034 ,0,0,0}, - {29153,29278,29258 ,12067,12197,12177 ,0,0,0}, {29283,29162,29157 ,12202,12076,12071 ,0,0,0}, - {29155,29258,29281 ,12069,12177,12200 ,0,0,0}, {29284,29159,29162 ,12203,12073,12076 ,0,0,0}, - {29120,29281,29282 ,12034,12200,12201 ,0,0,0}, {29285,29160,29159 ,12204,12074,12073 ,0,0,0}, - {29283,29157,29282 ,12202,12071,12201 ,0,0,0}, {29286,29254,29160 ,12205,12173,12074 ,0,0,0}, - {29284,29162,29283 ,12203,12076,12202 ,0,0,0}, {29287,29165,29254 ,12206,12079,12173 ,0,0,0}, - {29159,29284,29285 ,12073,12203,12204 ,0,0,0}, {29256,29170,29165 ,12175,12084,12079 ,0,0,0}, - {29160,29285,29286 ,12074,12204,12205 ,0,0,0}, {29288,29168,29170 ,12207,12082,12084 ,0,0,0}, - {29254,29286,29287 ,12173,12205,12206 ,0,0,0}, {29289,29169,29168 ,12208,12083,12082 ,0,0,0}, - {29165,29287,29256 ,12079,12206,12175 ,0,0,0}, {29290,29174,29169 ,12209,12088,12083 ,0,0,0}, - {29288,29170,29256 ,12207,12084,12175 ,0,0,0}, {29291,29172,29174 ,12210,12086,12088 ,0,0,0}, - {29289,29168,29288 ,12208,12082,12207 ,0,0,0}, {29292,29245,29172 ,12211,12164,12086 ,0,0,0}, - {29169,29289,29290 ,12083,12208,12209 ,0,0,0}, {29179,29245,29247 ,12093,12164,12166 ,0,0,0}, - {29174,29290,29291 ,12088,12209,12210 ,0,0,0}, {29293,29177,29179 ,12212,12091,12093 ,0,0,0}, - {29172,29291,29292 ,12086,12210,12211 ,0,0,0}, {29294,29183,29177 ,12213,12097,12091 ,0,0,0}, - {29245,29292,29247 ,12164,12211,12166 ,0,0,0}, {29295,29181,29183 ,12214,12095,12097 ,0,0,0}, - {29293,29179,29247 ,12212,12093,12166 ,0,0,0}, {29296,29182,29181 ,12215,12096,12095 ,0,0,0}, - {29294,29177,29293 ,12213,12091,12212 ,0,0,0}, {29297,29239,29182 ,12216,12158,12096 ,0,0,0}, - {29183,29294,29295 ,12097,12213,12214 ,0,0,0}, {29298,29299,29300 ,12217,12218,12219 ,0,0,0}, - {29181,29295,29296 ,12095,12214,12215 ,0,0,0}, {29301,29191,29184 ,12220,12105,12098 ,0,0,0}, - {29182,29296,29297 ,12096,12215,12216 ,0,0,0}, {29302,29241,29191 ,12221,12160,12105 ,0,0,0}, - {29239,29297,29242 ,12158,12216,12161 ,0,0,0}, {29303,29190,29241 ,12222,12104,12160 ,0,0,0}, - {29184,29242,29301 ,12098,12161,12220 ,0,0,0}, {29304,29192,29190 ,12223,12106,12104 ,0,0,0}, - {29302,29191,29301 ,12221,12105,12220 ,0,0,0}, {29305,29199,29192 ,12224,12113,12106 ,0,0,0}, - {29303,29241,29302 ,12222,12160,12221 ,0,0,0}, {29306,29197,29199 ,12225,12111,12113 ,0,0,0}, - {29304,29190,29303 ,12223,12104,12222 ,0,0,0}, {29307,29195,29197 ,12226,12109,12111 ,0,0,0}, - {29192,29304,29305 ,12106,12223,12224 ,0,0,0}, {29201,29308,29202 ,12115,12227,12116 ,0,0,0}, - {29199,29305,29306 ,12113,12224,12225 ,0,0,0}, {29223,29309,29224 ,12137,12228,12138 ,0,0,0}, - {29197,29306,29307 ,12111,12225,12226 ,0,0,0}, {29223,29205,29202 ,12137,12119,12116 ,0,0,0}, - {29195,29307,29238 ,12109,12226,12157 ,0,0,0}, {29225,29206,29205 ,12139,12120,12119 ,0,0,0}, - {29201,29238,29308 ,12115,12157,12227 ,0,0,0}, {29210,29206,29310 ,12124,12120,12229 ,0,0,0}, - {29223,29202,29308 ,12137,12116,12227 ,0,0,0}, {29227,29220,29219 ,12141,12134,12133 ,0,0,0}, - {29311,29218,29220 ,12230,12132,12134 ,0,0,0}, {29210,29219,29208 ,12124,12133,12122 ,0,0,0}, - {29310,29206,29225 ,12229,12120,12139 ,0,0,0}, {29227,29212,29220 ,12141,12126,12134 ,0,0,0}, - {29219,29210,29227 ,12133,12124,12141 ,0,0,0}, {29216,29312,29214 ,12130,12231,12128 ,0,0,0}, - {29214,28767,29217 ,12128,12156,12131 ,0,0,0}, {29221,29216,29215 ,12135,12130,12129 ,0,0,0}, - {29216,29311,29312 ,12130,12230,12231 ,0,0,0}, {28769,28767,29214 ,12232,12156,12128 ,0,0,0}, - {29263,29272,29266 ,12182,12191,12185 ,0,0,0}, {29129,29128,29264 ,12043,12042,12183 ,0,0,0}, - {29313,29141,29140 ,12233,12055,12054 ,0,0,0}, {29272,29133,29262 ,12191,12047,12181 ,0,0,0}, - {29272,29263,29314 ,12191,12182,12234 ,0,0,0}, {29125,29132,29315 ,12039,12046,12235 ,0,0,0}, - {29131,29133,29272 ,12045,12047,12191 ,0,0,0}, {29273,29315,29316 ,12192,12235,12236 ,0,0,0}, - {29132,29125,29133 ,12046,12039,12047 ,0,0,0}, {29274,29316,29317 ,12193,12236,12237 ,0,0,0}, - {29315,29273,29125 ,12235,12192,12039 ,0,0,0}, {29275,29317,29318 ,12194,12237,12238 ,0,0,0}, - {29316,29274,29273 ,12236,12193,12192 ,0,0,0}, {29276,29318,29319 ,12195,12238,12239 ,0,0,0}, - {29317,29275,29274 ,12237,12194,12193 ,0,0,0}, {29277,29319,29320 ,12196,12239,12240 ,0,0,0}, - {29318,29276,29275 ,12238,12195,12194 ,0,0,0}, {29278,29320,29321 ,12197,12240,12241 ,0,0,0}, - {29319,29277,29276 ,12239,12196,12195 ,0,0,0}, {29258,29321,29279 ,12177,12241,12198 ,0,0,0}, - {29278,29277,29320 ,12197,12196,12240 ,0,0,0}, {29322,29323,29324 ,12242,12243,12244 ,0,0,0}, - {29258,29278,29321 ,12177,12197,12241 ,0,0,0}, {29282,29280,29322 ,12201,12199,12242 ,0,0,0}, - {29281,29258,29279 ,12200,12177,12198 ,0,0,0}, {29283,29322,29325 ,12202,12242,12245 ,0,0,0}, - {29282,29281,29280 ,12201,12200,12199 ,0,0,0}, {29284,29325,29326 ,12203,12245,12246 ,0,0,0}, - {29322,29283,29282 ,12242,12202,12201 ,0,0,0}, {29285,29326,29327 ,12204,12246,12247 ,0,0,0}, - {29325,29284,29283 ,12245,12203,12202 ,0,0,0}, {29286,29327,29328 ,12205,12247,12248 ,0,0,0}, - {29326,29285,29284 ,12246,12204,12203 ,0,0,0}, {29287,29328,29257 ,12206,12248,12176 ,0,0,0}, - {29286,29285,29327 ,12205,12204,12247 ,0,0,0}, {29329,29330,29331 ,12249,12250,12251 ,0,0,0}, - {29287,29286,29328 ,12206,12205,12248 ,0,0,0}, {29288,29255,29332 ,12207,12174,12252 ,0,0,0}, - {29256,29287,29257 ,12175,12206,12176 ,0,0,0}, {29289,29332,29333 ,12208,12252,12253 ,0,0,0}, - {29255,29288,29256 ,12174,12207,12175 ,0,0,0}, {29290,29333,29334 ,12209,12253,12254 ,0,0,0}, - {29332,29289,29288 ,12252,12208,12207 ,0,0,0}, {29291,29334,29335 ,12210,12254,12255 ,0,0,0}, - {29333,29290,29289 ,12253,12209,12208 ,0,0,0}, {29292,29335,29248 ,12211,12255,12167 ,0,0,0}, - {29291,29290,29334 ,12210,12209,12254 ,0,0,0}, {29336,29337,29338 ,12256,12257,12258 ,0,0,0}, - {29292,29291,29335 ,12211,12210,12255 ,0,0,0}, {29293,29249,29339 ,12212,12168,12259 ,0,0,0}, - {29247,29292,29248 ,12166,12211,12167 ,0,0,0}, {29294,29339,29340 ,12213,12259,12260 ,0,0,0}, - {29293,29247,29249 ,12212,12166,12168 ,0,0,0}, {29295,29340,29341 ,12214,12260,12261 ,0,0,0}, - {29339,29294,29293 ,12259,12213,12212 ,0,0,0}, {29296,29341,29342 ,12215,12261,12262 ,0,0,0}, - {29340,29295,29294 ,12260,12214,12213 ,0,0,0}, {29297,29342,29343 ,12216,12262,12263 ,0,0,0}, - {29341,29296,29295 ,12261,12215,12214 ,0,0,0}, {29242,29343,29344 ,12161,12263,12264 ,0,0,0}, - {29297,29296,29342 ,12216,12215,12262 ,0,0,0}, {29301,29344,29299 ,12220,12264,12218 ,0,0,0}, - {29242,29297,29343 ,12161,12216,12263 ,0,0,0}, {29302,29299,29345 ,12221,12218,12265 ,0,0,0}, - {29301,29242,29344 ,12220,12161,12264 ,0,0,0}, {29303,29345,29346 ,12222,12265,12266 ,0,0,0}, - {29299,29302,29301 ,12218,12221,12220 ,0,0,0}, {29304,29346,29347 ,12223,12266,12267 ,0,0,0}, - {29345,29303,29302 ,12265,12222,12221 ,0,0,0}, {29305,29347,29348 ,12224,12267,12268 ,0,0,0}, - {29346,29304,29303 ,12266,12223,12222 ,0,0,0}, {29306,29348,29349 ,12225,12268,12269 ,0,0,0}, - {29347,29305,29304 ,12267,12224,12223 ,0,0,0}, {29307,29349,29350 ,12226,12269,12270 ,0,0,0}, - {29348,29306,29305 ,12268,12225,12224 ,0,0,0}, {29238,29350,29351 ,12157,12270,12271 ,0,0,0}, - {29349,29307,29306 ,12269,12226,12225 ,0,0,0}, {29308,29351,29309 ,12227,12271,12228 ,0,0,0}, - {29238,29307,29350 ,12157,12226,12270 ,0,0,0}, {29352,29225,29224 ,12272,12139,12138 ,0,0,0}, - {29308,29238,29351 ,12227,12157,12271 ,0,0,0}, {29234,29353,29229 ,12149,12273,12143 ,0,0,0}, - {29223,29308,29309 ,12137,12227,12228 ,0,0,0}, {29352,29213,29310 ,12272,12127,12229 ,0,0,0}, - {29212,29354,29220 ,12126,12274,12134 ,0,0,0}, {29310,29227,29210 ,12229,12141,12124 ,0,0,0}, - {29352,29310,29225 ,12272,12229,12139 ,0,0,0}, {29355,29312,29311 ,12275,12231,12230 ,0,0,0}, - {29310,29213,29227 ,12229,12127,12141 ,0,0,0}, {28770,29312,29355 ,12276,12231,12275 ,0,0,0}, - {29312,28769,29214 ,12231,12232,12128 ,0,0,0}, {29218,29311,29216 ,12132,12230,12130 ,0,0,0}, - {29354,29355,29311 ,12274,12275,12230 ,0,0,0}, {28770,28769,29312 ,12276,12232,12231 ,0,0,0}, - {29314,29263,29128 ,12234,12182,12042 ,0,0,0}, {29260,29130,29270 ,12179,12044,12189 ,0,0,0}, - {29356,29132,29138 ,12277,12046,12052 ,0,0,0}, {29314,29131,29272 ,12234,12045,12191 ,0,0,0}, - {29314,29128,29357 ,12234,12042,12278 ,0,0,0}, {29358,29359,29360 ,12279,12280,12281 ,0,0,0}, - {29137,29131,29314 ,12051,12045,12234 ,0,0,0}, {29356,29358,29315 ,12277,12279,12235 ,0,0,0}, - {29138,29132,29131 ,12052,12046,12045 ,0,0,0}, {29358,29361,29316 ,12279,12282,12236 ,0,0,0}, - {29356,29315,29132 ,12277,12235,12046 ,0,0,0}, {29361,29362,29317 ,12282,12283,12237 ,0,0,0}, - {29358,29316,29315 ,12279,12236,12235 ,0,0,0}, {29362,29363,29318 ,12283,12284,12238 ,0,0,0}, - {29361,29317,29316 ,12282,12237,12236 ,0,0,0}, {29363,29364,29319 ,12284,12285,12239 ,0,0,0}, - {29362,29318,29317 ,12283,12238,12237 ,0,0,0}, {29364,29365,29320 ,12285,12286,12240 ,0,0,0}, - {29363,29319,29318 ,12284,12239,12238 ,0,0,0}, {29365,29366,29321 ,12286,12287,12241 ,0,0,0}, - {29364,29320,29319 ,12285,12240,12239 ,0,0,0}, {29366,29367,29279 ,12287,12288,12198 ,0,0,0}, - {29365,29321,29320 ,12286,12241,12240 ,0,0,0}, {29367,29323,29280 ,12288,12243,12199 ,0,0,0}, - {29279,29321,29366 ,12198,12241,12287 ,0,0,0}, {29368,29369,29370 ,12289,12290,12291 ,0,0,0}, - {29280,29279,29367 ,12199,12198,12288 ,0,0,0}, {29324,29368,29325 ,12244,12289,12245 ,0,0,0}, - {29323,29322,29280 ,12243,12242,12199 ,0,0,0}, {29368,29371,29326 ,12289,12292,12246 ,0,0,0}, - {29324,29325,29322 ,12244,12245,12242 ,0,0,0}, {29371,29372,29327 ,12292,12293,12247 ,0,0,0}, - {29368,29326,29325 ,12289,12246,12245 ,0,0,0}, {29372,29373,29328 ,12293,12294,12248 ,0,0,0}, - {29371,29327,29326 ,12292,12247,12246 ,0,0,0}, {29373,29374,29257 ,12294,12295,12176 ,0,0,0}, - {29372,29328,29327 ,12293,12248,12247 ,0,0,0}, {29255,29374,29375 ,12174,12295,12296 ,0,0,0}, - {29257,29328,29373 ,12176,12248,12294 ,0,0,0}, {29375,29329,29332 ,12296,12249,12252 ,0,0,0}, - {29374,29255,29257 ,12295,12174,12176 ,0,0,0}, {29329,29376,29333 ,12249,12297,12253 ,0,0,0}, - {29375,29332,29255 ,12296,12252,12174 ,0,0,0}, {29376,29377,29334 ,12297,12298,12254 ,0,0,0}, - {29329,29333,29332 ,12249,12253,12252 ,0,0,0}, {29377,29378,29335 ,12298,12299,12255 ,0,0,0}, - {29376,29334,29333 ,12297,12254,12253 ,0,0,0}, {29378,29379,29248 ,12299,12300,12167 ,0,0,0}, - {29377,29335,29334 ,12298,12255,12254 ,0,0,0}, {29379,29380,29249 ,12300,12301,12168 ,0,0,0}, - {29248,29335,29378 ,12167,12255,12299 ,0,0,0}, {29380,29336,29339 ,12301,12256,12259 ,0,0,0}, - {29249,29248,29379 ,12168,12167,12300 ,0,0,0}, {29336,29381,29340 ,12256,12302,12260 ,0,0,0}, - {29380,29339,29249 ,12301,12259,12168 ,0,0,0}, {29381,29382,29341 ,12302,12303,12261 ,0,0,0}, - {29336,29340,29339 ,12256,12260,12259 ,0,0,0}, {29382,29383,29342 ,12303,12304,12262 ,0,0,0}, - {29381,29341,29340 ,12302,12261,12260 ,0,0,0}, {29383,29384,29343 ,12304,12305,12263 ,0,0,0}, - {29382,29342,29341 ,12303,12262,12261 ,0,0,0}, {29384,29300,29344 ,12305,12219,12264 ,0,0,0}, - {29343,29342,29383 ,12263,12262,12304 ,0,0,0}, {29385,29386,29387 ,12306,12307,12308 ,0,0,0}, - {29344,29343,29384 ,12264,12263,12305 ,0,0,0}, {29298,29385,29345 ,12217,12306,12265 ,0,0,0}, - {29300,29299,29344 ,12219,12218,12264 ,0,0,0}, {29385,29388,29346 ,12306,12309,12266 ,0,0,0}, - {29298,29345,29299 ,12217,12265,12218 ,0,0,0}, {29388,29389,29347 ,12309,12310,12267 ,0,0,0}, - {29385,29346,29345 ,12306,12266,12265 ,0,0,0}, {29389,29390,29348 ,12310,12311,12268 ,0,0,0}, - {29388,29347,29346 ,12309,12267,12266 ,0,0,0}, {29390,29391,29349 ,12311,12312,12269 ,0,0,0}, - {29389,29348,29347 ,12310,12268,12267 ,0,0,0}, {29391,29392,29350 ,12312,12313,12270 ,0,0,0}, - {29390,29349,29348 ,12311,12269,12268 ,0,0,0}, {29392,29393,29351 ,12313,12314,12271 ,0,0,0}, - {29391,29350,29349 ,12312,12270,12269 ,0,0,0}, {29393,29394,29309 ,12314,12315,12228 ,0,0,0}, - {29392,29351,29350 ,12313,12271,12270 ,0,0,0}, {29394,29395,29224 ,12315,12316,12138 ,0,0,0}, - {29393,29309,29351 ,12314,12228,12271 ,0,0,0}, {29395,29226,29352 ,12316,12140,12272 ,0,0,0}, - {29224,29309,29394 ,12138,12228,12315 ,0,0,0}, {29396,28766,28628 ,12317,12318,12319 ,0,0,0}, - {29395,29352,29224 ,12316,12272,12138 ,0,0,0}, {29228,29211,29226 ,12142,12125,12140 ,0,0,0}, - {29352,29226,29213 ,12272,12140,12127 ,0,0,0}, {28761,29355,29396 ,12320,12275,12317 ,0,0,0}, - {28761,28772,29355 ,12320,12321,12275 ,0,0,0}, {29220,29354,29311 ,12134,12274,12230 ,0,0,0}, - {29230,29396,29354 ,12144,12317,12274 ,0,0,0}, {28770,29355,28772 ,12276,12275,12321 ,0,0,0}, - {29130,29357,29128 ,12044,12278,12042 ,0,0,0}, {29271,29134,29260 ,12190,12048,12179 ,0,0,0}, - {29137,29397,29398 ,12051,12322,12323 ,0,0,0}, {29357,29137,29314 ,12278,12051,12234 ,0,0,0}, - {29399,29357,29130 ,12324,12278,12044 ,0,0,0}, {29138,29398,29400 ,12052,12323,12325 ,0,0,0}, - {29357,29397,29137 ,12278,12322,12051 ,0,0,0}, {29356,29400,29359 ,12277,12325,12280 ,0,0,0}, - {29398,29138,29137 ,12323,12052,12051 ,0,0,0}, {29401,29361,29360 ,12326,12282,12281 ,0,0,0}, - {29400,29356,29138 ,12325,12277,12052 ,0,0,0}, {29402,29362,29401 ,12327,12283,12326 ,0,0,0}, - {29359,29358,29356 ,12280,12279,12277 ,0,0,0}, {29403,29404,29405 ,12328,12329,12330 ,0,0,0}, - {29360,29361,29358 ,12281,12282,12279 ,0,0,0}, {29402,29403,29363 ,12327,12328,12284 ,0,0,0}, - {29401,29362,29361 ,12326,12283,12282 ,0,0,0}, {29403,29406,29364 ,12328,12331,12285 ,0,0,0}, - {29402,29363,29362 ,12327,12284,12283 ,0,0,0}, {29406,29407,29365 ,12331,12332,12286 ,0,0,0}, - {29403,29364,29363 ,12328,12285,12284 ,0,0,0}, {29407,29408,29366 ,12332,12333,12287 ,0,0,0}, - {29406,29365,29364 ,12331,12286,12285 ,0,0,0}, {29408,29409,29367 ,12333,12334,12288 ,0,0,0}, - {29407,29366,29365 ,12332,12287,12286 ,0,0,0}, {29323,29409,29410 ,12243,12334,12335 ,0,0,0}, - {29408,29367,29366 ,12333,12288,12287 ,0,0,0}, {29324,29410,29369 ,12244,12335,12290 ,0,0,0}, - {29409,29323,29367 ,12334,12243,12288 ,0,0,0}, {29411,29412,29413 ,12336,12337,12338 ,0,0,0}, - {29410,29324,29323 ,12335,12244,12243 ,0,0,0}, {29370,29411,29371 ,12291,12336,12292 ,0,0,0}, - {29369,29368,29324 ,12290,12289,12244 ,0,0,0}, {29411,29414,29372 ,12336,12339,12293 ,0,0,0}, - {29370,29371,29368 ,12291,12292,12289 ,0,0,0}, {29414,29415,29373 ,12339,12340,12294 ,0,0,0}, - {29411,29372,29371 ,12336,12293,12292 ,0,0,0}, {29374,29415,29416 ,12295,12340,12341 ,0,0,0}, - {29414,29373,29372 ,12339,12294,12293 ,0,0,0}, {29375,29416,29330 ,12296,12341,12250 ,0,0,0}, - {29374,29373,29415 ,12295,12294,12340 ,0,0,0}, {29417,29418,29419 ,12342,12343,12344 ,0,0,0}, - {29416,29375,29374 ,12341,12296,12295 ,0,0,0}, {29331,29417,29376 ,12251,12342,12297 ,0,0,0}, - {29330,29329,29375 ,12250,12249,12296 ,0,0,0}, {29417,29420,29377 ,12342,12345,12298 ,0,0,0}, - {29331,29376,29329 ,12251,12297,12249 ,0,0,0}, {29420,29421,29378 ,12345,12346,12299 ,0,0,0}, - {29417,29377,29376 ,12342,12298,12297 ,0,0,0}, {29421,29422,29379 ,12346,12347,12300 ,0,0,0}, - {29420,29378,29377 ,12345,12299,12298 ,0,0,0}, {29380,29422,29337 ,12301,12347,12257 ,0,0,0}, - {29379,29378,29421 ,12300,12299,12346 ,0,0,0}, {29423,29424,29425 ,12348,12349,12350 ,0,0,0}, - {29422,29380,29379 ,12347,12301,12300 ,0,0,0}, {29338,29423,29381 ,12258,12348,12302 ,0,0,0}, - {29337,29336,29380 ,12257,12256,12301 ,0,0,0}, {29423,29426,29382 ,12348,12351,12303 ,0,0,0}, - {29338,29381,29336 ,12258,12302,12256 ,0,0,0}, {29426,29427,29383 ,12351,12352,12304 ,0,0,0}, - {29423,29382,29381 ,12348,12303,12302 ,0,0,0}, {29427,29428,29384 ,12352,12353,12305 ,0,0,0}, - {29426,29383,29382 ,12351,12304,12303 ,0,0,0}, {29300,29428,29429 ,12219,12353,12354 ,0,0,0}, - {29427,29384,29383 ,12352,12305,12304 ,0,0,0}, {29298,29429,29386 ,12217,12354,12307 ,0,0,0}, - {29428,29300,29384 ,12353,12219,12305 ,0,0,0}, {29430,29388,29387 ,12355,12309,12308 ,0,0,0}, - {29429,29298,29300 ,12354,12217,12219 ,0,0,0}, {29431,29432,29433 ,12356,12357,12358 ,0,0,0}, - {29386,29385,29298 ,12307,12306,12217 ,0,0,0}, {29430,29431,29389 ,12355,12356,12310 ,0,0,0}, - {29387,29388,29385 ,12308,12309,12306 ,0,0,0}, {29431,29434,29390 ,12356,12359,12311 ,0,0,0}, - {29430,29389,29388 ,12355,12310,12309 ,0,0,0}, {29434,29435,29391 ,12359,12360,12312 ,0,0,0}, - {29431,29390,29389 ,12356,12311,12310 ,0,0,0}, {29435,29436,29392 ,12360,12361,12313 ,0,0,0}, - {29434,29391,29390 ,12359,12312,12311 ,0,0,0}, {29436,29437,29393 ,12361,12362,12314 ,0,0,0}, - {29435,29392,29391 ,12360,12313,12312 ,0,0,0}, {29437,29438,29394 ,12362,12363,12315 ,0,0,0}, - {29436,29393,29392 ,12361,12314,12313 ,0,0,0}, {29438,29439,29395 ,12363,12364,12316 ,0,0,0}, - {29437,29394,29393 ,12362,12315,12314 ,0,0,0}, {29226,29439,29228 ,12140,12364,12142 ,0,0,0}, - {29395,29394,29438 ,12316,12315,12363 ,0,0,0}, {29233,29228,29439 ,12147,12142,12364 ,0,0,0}, - {29226,29395,29439 ,12140,12316,12364 ,0,0,0}, {29230,29353,29396 ,12144,12273,12317 ,0,0,0}, - {29354,29396,29355 ,12274,12317,12275 ,0,0,0}, {29212,29230,29354 ,12126,12144,12274 ,0,0,0}, - {29229,29353,29230 ,12143,12273,12144 ,0,0,0}, {28761,29396,28628 ,12320,12317,12319 ,0,0,0}, - {29134,29399,29130 ,12048,12324,12044 ,0,0,0}, {29142,29136,29135 ,12056,12050,12049 ,0,0,0}, - {29397,29440,29441 ,12322,12365,12366 ,0,0,0}, {29399,29397,29357 ,12324,12322,12278 ,0,0,0}, - {29134,29442,29399 ,12048,12367,12324 ,0,0,0}, {29398,29441,29443 ,12323,12366,12368 ,0,0,0}, - {29399,29440,29397 ,12324,12365,12322 ,0,0,0}, {29400,29443,29444 ,12325,12368,12369 ,0,0,0}, - {29397,29441,29398 ,12322,12366,12323 ,0,0,0}, {29359,29444,29445 ,12280,12369,12370 ,0,0,0}, - {29398,29443,29400 ,12323,12368,12325 ,0,0,0}, {29360,29445,29446 ,12281,12370,12371 ,0,0,0}, - {29400,29444,29359 ,12325,12369,12280 ,0,0,0}, {29401,29446,29447 ,12326,12371,12372 ,0,0,0}, - {29359,29445,29360 ,12280,12370,12281 ,0,0,0}, {29402,29447,29404 ,12327,12372,12329 ,0,0,0}, - {29446,29401,29360 ,12371,12326,12281 ,0,0,0}, {29448,29406,29405 ,12373,12331,12330 ,0,0,0}, - {29447,29402,29401 ,12372,12327,12326 ,0,0,0}, {29449,29450,29448 ,12374,12375,12373 ,0,0,0}, - {29404,29403,29402 ,12329,12328,12327 ,0,0,0}, {29448,29450,29407 ,12373,12375,12332 ,0,0,0}, - {29405,29406,29403 ,12330,12331,12328 ,0,0,0}, {29450,29451,29408 ,12375,12376,12333 ,0,0,0}, - {29448,29407,29406 ,12373,12332,12331 ,0,0,0}, {29409,29451,29452 ,12334,12376,12377 ,0,0,0}, - {29450,29408,29407 ,12375,12333,12332 ,0,0,0}, {29410,29452,29453 ,12335,12377,12378 ,0,0,0}, - {29408,29451,29409 ,12333,12376,12334 ,0,0,0}, {29369,29453,29454 ,12290,12378,12379 ,0,0,0}, - {29409,29452,29410 ,12334,12377,12335 ,0,0,0}, {29370,29454,29412 ,12291,12379,12337 ,0,0,0}, - {29453,29369,29410 ,12378,12290,12335 ,0,0,0}, {29455,29456,29413 ,12380,12381,12338 ,0,0,0}, - {29454,29370,29369 ,12379,12291,12290 ,0,0,0}, {29413,29456,29414 ,12338,12381,12339 ,0,0,0}, - {29412,29411,29370 ,12337,12336,12291 ,0,0,0}, {29456,29457,29415 ,12381,12382,12340 ,0,0,0}, - {29413,29414,29411 ,12338,12339,12336 ,0,0,0}, {29416,29457,29458 ,12341,12382,12383 ,0,0,0}, - {29456,29415,29414 ,12381,12340,12339 ,0,0,0}, {29330,29458,29459 ,12250,12383,12384 ,0,0,0}, - {29415,29457,29416 ,12340,12382,12341 ,0,0,0}, {29331,29459,29418 ,12251,12384,12343 ,0,0,0}, - {29458,29330,29416 ,12383,12250,12341 ,0,0,0}, {29460,29461,29419 ,12385,12386,12344 ,0,0,0}, - {29459,29331,29330 ,12384,12251,12250 ,0,0,0}, {29419,29461,29420 ,12344,12386,12345 ,0,0,0}, - {29418,29417,29331 ,12343,12342,12251 ,0,0,0}, {29461,29462,29421 ,12386,12387,12346 ,0,0,0}, - {29419,29420,29417 ,12344,12345,12342 ,0,0,0}, {29422,29462,29463 ,12347,12387,12388 ,0,0,0}, - {29461,29421,29420 ,12386,12346,12345 ,0,0,0}, {29337,29463,29464 ,12257,12388,12389 ,0,0,0}, - {29421,29462,29422 ,12346,12387,12347 ,0,0,0}, {29338,29464,29424 ,12258,12389,12349 ,0,0,0}, - {29463,29337,29422 ,12388,12257,12347 ,0,0,0}, {29465,29466,29425 ,12390,12391,12350 ,0,0,0}, - {29464,29338,29337 ,12389,12258,12257 ,0,0,0}, {29425,29466,29426 ,12350,12391,12351 ,0,0,0}, - {29424,29423,29338 ,12349,12348,12258 ,0,0,0}, {29466,29467,29427 ,12391,12392,12352 ,0,0,0}, - {29425,29426,29423 ,12350,12351,12348 ,0,0,0}, {29428,29467,29468 ,12353,12392,12393 ,0,0,0}, - {29466,29427,29426 ,12391,12352,12351 ,0,0,0}, {29429,29468,29469 ,12354,12393,12394 ,0,0,0}, - {29427,29467,29428 ,12352,12392,12353 ,0,0,0}, {29386,29469,29470 ,12307,12394,12395 ,0,0,0}, - {29428,29468,29429 ,12353,12393,12354 ,0,0,0}, {29387,29470,29471 ,12308,12395,12396 ,0,0,0}, - {29429,29469,29386 ,12354,12394,12307 ,0,0,0}, {29430,29471,29432 ,12355,12396,12357 ,0,0,0}, - {29470,29387,29386 ,12395,12308,12307 ,0,0,0}, {29472,29434,29433 ,12397,12359,12358 ,0,0,0}, - {29471,29430,29387 ,12396,12355,12308 ,0,0,0}, {29473,29474,29472 ,12398,12399,12397 ,0,0,0}, - {29432,29431,29430 ,12357,12356,12355 ,0,0,0}, {29472,29474,29435 ,12397,12399,12360 ,0,0,0}, - {29433,29434,29431 ,12358,12359,12356 ,0,0,0}, {29474,29475,29436 ,12399,12400,12361 ,0,0,0}, - {29472,29435,29434 ,12397,12360,12359 ,0,0,0}, {29475,29476,29437 ,12400,12401,12362 ,0,0,0}, - {29474,29436,29435 ,12399,12361,12360 ,0,0,0}, {29476,29477,29438 ,12401,12402,12363 ,0,0,0}, - {29475,29437,29436 ,12400,12362,12361 ,0,0,0}, {29439,29477,29233 ,12364,12402,12147 ,0,0,0}, - {29476,29438,29437 ,12401,12363,12362 ,0,0,0}, {29233,29478,29228 ,12147,12403,12142 ,0,0,0}, - {29438,29477,29439 ,12363,12402,12364 ,0,0,0}, {28633,29353,29234 ,12404,12273,12149 ,0,0,0}, - {29353,28766,29396 ,12273,12318,12317 ,0,0,0}, {29211,29229,29230 ,12125,12143,12144 ,0,0,0}, - {29478,29234,29229 ,12403,12149,12143 ,0,0,0}, {28633,28766,29353 ,12404,12318,12273 ,0,0,0}, - {29136,29442,29134 ,12050,12367,12048 ,0,0,0}, {29479,29141,29142 ,12405,12055,12056 ,0,0,0}, - {29480,29440,29442 ,12406,12365,12367 ,0,0,0}, {29442,29440,29399 ,12367,12365,12324 ,0,0,0}, - {29442,29313,29480 ,12367,12233,12406 ,0,0,0}, {29481,29441,29440 ,12407,12366,12365 ,0,0,0}, - {29440,29480,29481 ,12365,12406,12407 ,0,0,0}, {29482,29443,29441 ,12408,12368,12366 ,0,0,0}, - {29441,29481,29482 ,12366,12407,12408 ,0,0,0}, {29483,29444,29443 ,12409,12369,12368 ,0,0,0}, - {29443,29482,29483 ,12368,12408,12409 ,0,0,0}, {29484,29445,29444 ,12410,12370,12369 ,0,0,0}, - {29444,29483,29484 ,12369,12409,12410 ,0,0,0}, {29485,29446,29445 ,12411,12371,12370 ,0,0,0}, - {29445,29484,29485 ,12370,12410,12411 ,0,0,0}, {29486,29447,29446 ,12412,12372,12371 ,0,0,0}, - {29446,29485,29486 ,12371,12411,12412 ,0,0,0}, {29487,29404,29447 ,12413,12329,12372 ,0,0,0}, - {29447,29486,29487 ,12372,12412,12413 ,0,0,0}, {29488,29405,29404 ,12414,12330,12329 ,0,0,0}, - {29404,29487,29488 ,12329,12413,12414 ,0,0,0}, {29489,29448,29405 ,12415,12373,12330 ,0,0,0}, - {29488,29489,29405 ,12414,12415,12330 ,0,0,0}, {29490,29491,29492 ,12416,12417,12418 ,0,0,0}, - {29489,29449,29448 ,12415,12374,12373 ,0,0,0}, {29493,29451,29450 ,12419,12376,12375 ,0,0,0}, - {29449,29493,29450 ,12374,12419,12375 ,0,0,0}, {29494,29452,29451 ,12420,12377,12376 ,0,0,0}, - {29451,29493,29494 ,12376,12419,12420 ,0,0,0}, {29495,29453,29452 ,12421,12378,12377 ,0,0,0}, - {29452,29494,29495 ,12377,12420,12421 ,0,0,0}, {29496,29454,29453 ,12422,12379,12378 ,0,0,0}, - {29453,29495,29496 ,12378,12421,12422 ,0,0,0}, {29497,29412,29454 ,12423,12337,12379 ,0,0,0}, - {29454,29496,29497 ,12379,12422,12423 ,0,0,0}, {29498,29413,29412 ,12424,12338,12337 ,0,0,0}, - {29497,29498,29412 ,12423,12424,12337 ,0,0,0}, {29499,29455,29500 ,12425,12380,12426 ,0,0,0}, - {29498,29455,29413 ,12424,12380,12338 ,0,0,0}, {29499,29457,29456 ,12425,12382,12381 ,0,0,0}, - {29455,29499,29456 ,12380,12425,12381 ,0,0,0}, {29501,29458,29457 ,12427,12383,12382 ,0,0,0}, - {29457,29499,29501 ,12382,12425,12427 ,0,0,0}, {29502,29459,29458 ,12428,12384,12383 ,0,0,0}, - {29458,29501,29502 ,12383,12427,12428 ,0,0,0}, {29503,29418,29459 ,12429,12343,12384 ,0,0,0}, - {29459,29502,29503 ,12384,12428,12429 ,0,0,0}, {29504,29419,29418 ,12430,12344,12343 ,0,0,0}, - {29503,29504,29418 ,12429,12430,12343 ,0,0,0}, {29505,29506,29507 ,12431,12432,12433 ,0,0,0}, - {29504,29460,29419 ,12430,12385,12344 ,0,0,0}, {29508,29462,29461 ,12434,12387,12386 ,0,0,0}, - {29460,29508,29461 ,12385,12434,12386 ,0,0,0}, {29509,29463,29462 ,12435,12388,12387 ,0,0,0}, - {29462,29508,29509 ,12387,12434,12435 ,0,0,0}, {29510,29464,29463 ,12436,12389,12388 ,0,0,0}, - {29463,29509,29510 ,12388,12435,12436 ,0,0,0}, {29511,29424,29464 ,12437,12349,12389 ,0,0,0}, - {29464,29510,29511 ,12389,12436,12437 ,0,0,0}, {29512,29425,29424 ,12438,12350,12349 ,0,0,0}, - {29511,29512,29424 ,12437,12438,12349 ,0,0,0}, {29466,29513,29467 ,12391,12439,12392 ,0,0,0}, - {29512,29465,29425 ,12438,12390,12350 ,0,0,0}, {29514,29515,29513 ,12440,12441,12439 ,0,0,0}, - {29465,29513,29466 ,12390,12439,12391 ,0,0,0}, {29515,29468,29467 ,12441,12393,12392 ,0,0,0}, - {29467,29513,29515 ,12392,12439,12441 ,0,0,0}, {29516,29469,29468 ,12442,12394,12393 ,0,0,0}, - {29468,29515,29516 ,12393,12441,12442 ,0,0,0}, {29517,29470,29469 ,12443,12395,12394 ,0,0,0}, - {29469,29516,29517 ,12394,12442,12443 ,0,0,0}, {29518,29471,29470 ,12444,12396,12395 ,0,0,0}, - {29470,29517,29518 ,12395,12443,12444 ,0,0,0}, {29519,29432,29471 ,12445,12357,12396 ,0,0,0}, - {29471,29518,29519 ,12396,12444,12445 ,0,0,0}, {29520,29433,29432 ,12446,12358,12357 ,0,0,0}, - {29432,29519,29520 ,12357,12445,12446 ,0,0,0}, {29521,29472,29433 ,12447,12397,12358 ,0,0,0}, - {29520,29521,29433 ,12446,12447,12358 ,0,0,0}, {29474,29522,29475 ,12399,12448,12400 ,0,0,0}, - {29521,29473,29472 ,12447,12398,12397 ,0,0,0}, {29475,29523,29476 ,12400,12449,12401 ,0,0,0}, - {29473,29522,29474 ,12398,12448,12399 ,0,0,0}, {29476,29524,29477 ,12401,12450,12402 ,0,0,0}, - {29522,29523,29475 ,12448,12449,12400 ,0,0,0}, {29477,29231,29233 ,12402,12145,12147 ,0,0,0}, - {29523,29524,29476 ,12449,12450,12401 ,0,0,0}, {29232,29236,29235 ,12146,12151,12150 ,0,0,0}, - {29524,29231,29477 ,12450,12145,12402 ,0,0,0}, {29232,29478,29233 ,12146,12403,12147 ,0,0,0}, - {28815,28633,29234 ,12451,12404,12149 ,0,0,0}, {29228,29478,29229 ,12142,12403,12143 ,0,0,0}, - {29478,29232,29235 ,12403,12146,12150 ,0,0,0}, {28630,28815,29234 ,12148,12451,12149 ,0,0,0}, - {29141,29313,29136 ,12055,12233,12050 ,0,0,0}, {29479,29144,29139 ,12405,12058,12053 ,0,0,0}, - {29480,29313,29525 ,12406,12233,12452 ,0,0,0}, {29136,29313,29442 ,12050,12233,12367 ,0,0,0}, - {29313,29140,29525 ,12233,12054,12452 ,0,0,0}, {29481,29480,29526 ,12407,12406,12453 ,0,0,0}, - {29480,29525,29526 ,12406,12452,12453 ,0,0,0}, {29482,29481,29527 ,12408,12407,12454 ,0,0,0}, - {29481,29526,29527 ,12407,12453,12454 ,0,0,0}, {29483,29482,29528 ,12409,12408,12455 ,0,0,0}, - {29482,29527,29528 ,12408,12454,12455 ,0,0,0}, {29484,29483,29529 ,12410,12409,12456 ,0,0,0}, - {29483,29528,29529 ,12409,12455,12456 ,0,0,0}, {29485,29484,29530 ,12411,12410,12457 ,0,0,0}, - {29484,29529,29530 ,12410,12456,12457 ,0,0,0}, {29486,29485,29531 ,12412,12411,12458 ,0,0,0}, - {29485,29530,29531 ,12411,12457,12458 ,0,0,0}, {29487,29486,29532 ,12413,12412,12459 ,0,0,0}, - {29486,29531,29532 ,12412,12458,12459 ,0,0,0}, {29488,29487,29533 ,12414,12413,12460 ,0,0,0}, - {29487,29532,29533 ,12413,12459,12460 ,0,0,0}, {29489,29488,29534 ,12415,12414,12461 ,0,0,0}, - {29488,29533,29534 ,12414,12460,12461 ,0,0,0}, {29449,29489,29535 ,12374,12415,12462 ,0,0,0}, - {29489,29534,29535 ,12415,12461,12462 ,0,0,0}, {29493,29449,29490 ,12419,12374,12416 ,0,0,0}, - {29535,29490,29449 ,12462,12416,12374 ,0,0,0}, {29494,29493,29492 ,12420,12419,12418 ,0,0,0}, - {29493,29490,29492 ,12419,12416,12418 ,0,0,0}, {29495,29494,29536 ,12421,12420,12463 ,0,0,0}, - {29494,29492,29536 ,12420,12418,12463 ,0,0,0}, {29496,29495,29537 ,12422,12421,12464 ,0,0,0}, - {29495,29536,29537 ,12421,12463,12464 ,0,0,0}, {29497,29496,29538 ,12423,12422,12465 ,0,0,0}, - {29496,29537,29538 ,12422,12464,12465 ,0,0,0}, {29498,29497,29539 ,12424,12423,12466 ,0,0,0}, - {29497,29538,29539 ,12423,12465,12466 ,0,0,0}, {29455,29498,29540 ,12380,12424,12467 ,0,0,0}, - {29498,29539,29540 ,12424,12466,12467 ,0,0,0}, {29540,29541,29500 ,12467,12468,12426 ,0,0,0}, - {29540,29500,29455 ,12467,12426,12380 ,0,0,0}, {29501,29499,29542 ,12427,12425,12469 ,0,0,0}, - {29499,29500,29542 ,12425,12426,12469 ,0,0,0}, {29502,29501,29543 ,12428,12427,12470 ,0,0,0}, - {29501,29542,29543 ,12427,12469,12470 ,0,0,0}, {29503,29502,29544 ,12429,12428,12471 ,0,0,0}, - {29502,29543,29544 ,12428,12470,12471 ,0,0,0}, {29504,29503,29545 ,12430,12429,12472 ,0,0,0}, - {29503,29544,29545 ,12429,12471,12472 ,0,0,0}, {29460,29504,29546 ,12385,12430,12473 ,0,0,0}, - {29504,29545,29546 ,12430,12472,12473 ,0,0,0}, {29508,29460,29505 ,12434,12385,12431 ,0,0,0}, - {29546,29505,29460 ,12473,12431,12385 ,0,0,0}, {29509,29508,29507 ,12435,12434,12433 ,0,0,0}, - {29508,29505,29507 ,12434,12431,12433 ,0,0,0}, {29510,29509,29547 ,12436,12435,12474 ,0,0,0}, - {29509,29507,29547 ,12435,12433,12474 ,0,0,0}, {29511,29510,29548 ,12437,12436,12475 ,0,0,0}, - {29510,29547,29548 ,12436,12474,12475 ,0,0,0}, {29512,29511,29549 ,12438,12437,12476 ,0,0,0}, - {29511,29548,29549 ,12437,12475,12476 ,0,0,0}, {29465,29512,29550 ,12390,12438,12477 ,0,0,0}, - {29512,29549,29550 ,12438,12476,12477 ,0,0,0}, {29513,29465,29551 ,12439,12390,12478 ,0,0,0}, - {29465,29550,29551 ,12390,12477,12478 ,0,0,0}, {29514,29551,29552 ,12440,12478,12479 ,0,0,0}, - {29551,29514,29513 ,12478,12440,12439 ,0,0,0}, {29516,29515,29553 ,12442,12441,12480 ,0,0,0}, - {29515,29514,29553 ,12441,12440,12480 ,0,0,0}, {29517,29516,29554 ,12443,12442,12481 ,0,0,0}, - {29516,29553,29554 ,12442,12480,12481 ,0,0,0}, {29518,29517,29555 ,12444,12443,12482 ,0,0,0}, - {29517,29554,29555 ,12443,12481,12482 ,0,0,0}, {29519,29518,29556 ,12445,12444,12483 ,0,0,0}, - {29518,29555,29556 ,12444,12482,12483 ,0,0,0}, {29520,29519,29557 ,12446,12445,12484 ,0,0,0}, - {29519,29556,29557 ,12445,12483,12484 ,0,0,0}, {29521,29520,29558 ,12447,12446,12485 ,0,0,0}, - {29520,29557,29558 ,12446,12484,12485 ,0,0,0}, {29473,29521,29559 ,12398,12447,12486 ,0,0,0}, - {29521,29558,29559 ,12447,12485,12486 ,0,0,0}, {29522,29473,29560 ,12448,12398,12487 ,0,0,0}, - {29473,29559,29560 ,12398,12486,12487 ,0,0,0}, {29523,29522,29561 ,12449,12448,12488 ,0,0,0}, - {29522,29560,29561 ,12448,12487,12488 ,0,0,0}, {29524,29523,29562 ,12450,12449,12489 ,0,0,0}, - {29523,29561,29562 ,12449,12488,12489 ,0,0,0}, {29231,29524,29563 ,12145,12450,12490 ,0,0,0}, - {29524,29562,29563 ,12450,12489,12490 ,0,0,0}, {29564,29232,29231 ,12491,12146,12145 ,0,0,0}, - {29563,29564,29231 ,12490,12491,12145 ,0,0,0}, {29478,29235,29234 ,12403,12150,12149 ,0,0,0}, - {29564,29236,29232 ,12491,12151,12146 ,0,0,0}, {28630,29235,28985 ,12148,12150,12152 ,0,0,0}, - {29139,29141,29479 ,12053,12055,12405 ,0,0,0}, {29148,29145,29139 ,12062,12059,12053 ,0,0,0}, - {29145,29565,29140 ,12059,12492,12054 ,0,0,0}, {29140,29565,29525 ,12054,12492,12452 ,0,0,0}, - {29565,29566,29525 ,12492,12493,12452 ,0,0,0}, {29525,29566,29526 ,12452,12493,12453 ,0,0,0}, - {29566,29567,29526 ,12493,12494,12453 ,0,0,0}, {29526,29567,29527 ,12453,12494,12454 ,0,0,0}, - {29567,29568,29527 ,12494,12495,12454 ,0,0,0}, {29527,29568,29528 ,12454,12495,12455 ,0,0,0}, - {29568,29569,29528 ,12495,12496,12455 ,0,0,0}, {29528,29569,29529 ,12455,12496,12456 ,0,0,0}, - {29569,29570,29529 ,12496,12497,12456 ,0,0,0}, {29529,29570,29530 ,12456,12497,12457 ,0,0,0}, - {29570,29571,29530 ,12497,12498,12457 ,0,0,0}, {29530,29571,29531 ,12457,12498,12458 ,0,0,0}, - {29571,29572,29531 ,12498,12499,12458 ,0,0,0}, {29572,29573,29532 ,12499,12500,12459 ,0,0,0}, - {29572,29532,29531 ,12499,12459,12458 ,0,0,0}, {29573,29574,29533 ,12500,12501,12460 ,0,0,0}, - {29573,29533,29532 ,12500,12460,12459 ,0,0,0}, {29574,29575,29534 ,12501,12502,12461 ,0,0,0}, - {29574,29534,29533 ,12501,12461,12460 ,0,0,0}, {29575,29576,29535 ,12502,12503,12462 ,0,0,0}, - {29575,29535,29534 ,12502,12462,12461 ,0,0,0}, {29576,29577,29490 ,12503,12504,12416 ,0,0,0}, - {29576,29490,29535 ,12503,12416,12462 ,0,0,0}, {29491,29490,29577 ,12417,12416,12504 ,0,0,0}, - {29491,29578,29492 ,12417,12505,12418 ,0,0,0}, {29492,29578,29536 ,12418,12505,12463 ,0,0,0}, - {29578,29579,29536 ,12505,12506,12463 ,0,0,0}, {29536,29579,29537 ,12463,12506,12464 ,0,0,0}, - {29579,29580,29537 ,12506,12507,12464 ,0,0,0}, {29580,29581,29538 ,12507,12508,12465 ,0,0,0}, - {29580,29538,29537 ,12507,12465,12464 ,0,0,0}, {29581,29582,29539 ,12508,12509,12466 ,0,0,0}, - {29581,29539,29538 ,12508,12466,12465 ,0,0,0}, {29582,29541,29540 ,12509,12468,12467 ,0,0,0}, - {29582,29540,29539 ,12509,12467,12466 ,0,0,0}, {29541,29583,29500 ,12468,12510,12426 ,0,0,0}, - {29583,29584,29500 ,12510,12511,12426 ,0,0,0}, {29500,29584,29542 ,12426,12511,12469 ,0,0,0}, - {29584,29585,29542 ,12511,12512,12469 ,0,0,0}, {29542,29585,29543 ,12469,12512,12470 ,0,0,0}, - {29585,29586,29543 ,12512,12513,12470 ,0,0,0}, {29586,29587,29544 ,12513,12514,12471 ,0,0,0}, - {29586,29544,29543 ,12513,12471,12470 ,0,0,0}, {29587,29588,29545 ,12514,12515,12472 ,0,0,0}, - {29587,29545,29544 ,12514,12472,12471 ,0,0,0}, {29588,29589,29546 ,12515,12516,12473 ,0,0,0}, - {29588,29546,29545 ,12515,12473,12472 ,0,0,0}, {29589,29590,29505 ,12516,12517,12431 ,0,0,0}, - {29589,29505,29546 ,12516,12431,12473 ,0,0,0}, {29506,29505,29590 ,12432,12431,12517 ,0,0,0}, - {29506,29591,29507 ,12432,12518,12433 ,0,0,0}, {29507,29591,29547 ,12433,12518,12474 ,0,0,0}, - {29591,29592,29547 ,12518,12519,12474 ,0,0,0}, {29592,29593,29548 ,12519,12520,12475 ,0,0,0}, - {29592,29548,29547 ,12519,12475,12474 ,0,0,0}, {29593,29594,29549 ,12520,12521,12476 ,0,0,0}, - {29593,29549,29548 ,12520,12476,12475 ,0,0,0}, {29594,29595,29550 ,12521,12522,12477 ,0,0,0}, - {29594,29550,29549 ,12521,12477,12476 ,0,0,0}, {29595,29552,29551 ,12522,12479,12478 ,0,0,0}, - {29595,29551,29550 ,12522,12478,12477 ,0,0,0}, {29552,29596,29514 ,12479,12523,12440 ,0,0,0}, - {29596,29597,29514 ,12523,12524,12440 ,0,0,0}, {29514,29597,29553 ,12440,12524,12480 ,0,0,0}, - {29597,29598,29553 ,12524,12525,12480 ,0,0,0}, {29553,29598,29554 ,12480,12525,12481 ,0,0,0}, - {29598,29599,29554 ,12525,12526,12481 ,0,0,0}, {29554,29599,29555 ,12481,12526,12482 ,0,0,0}, - {29599,29600,29555 ,12526,12527,12482 ,0,0,0}, {29600,29601,29556 ,12527,12528,12483 ,0,0,0}, - {29600,29556,29555 ,12527,12483,12482 ,0,0,0}, {29601,29602,29557 ,12528,12529,12484 ,0,0,0}, - {29601,29557,29556 ,12528,12484,12483 ,0,0,0}, {29602,29603,29558 ,12529,12530,12485 ,0,0,0}, - {29602,29558,29557 ,12529,12485,12484 ,0,0,0}, {29603,29604,29559 ,12530,12531,12486 ,0,0,0}, - {29603,29559,29558 ,12530,12486,12485 ,0,0,0}, {29604,29605,29560 ,12531,12532,12487 ,0,0,0}, - {29604,29560,29559 ,12531,12487,12486 ,0,0,0}, {29605,29606,29561 ,12532,12533,12488 ,0,0,0}, - {29605,29561,29560 ,12532,12488,12487 ,0,0,0}, {29606,29607,29562 ,12533,12534,12489 ,0,0,0}, - {29606,29562,29561 ,12533,12489,12488 ,0,0,0}, {29607,29608,29563 ,12534,12535,12490 ,0,0,0}, - {29607,29563,29562 ,12534,12490,12489 ,0,0,0}, {29608,29609,29564 ,12535,12536,12491 ,0,0,0}, - {29608,29564,29563 ,12535,12491,12490 ,0,0,0}, {29237,29564,29609 ,12154,12491,12536 ,0,0,0}, - {29564,29237,29236 ,12491,12154,12151 ,0,0,0}, {28638,29236,29237 ,12153,12151,12154 ,0,0,0}, - {29610,29611,29581 ,12537,12538,12539 ,0,0,0}, {29581,29580,29610 ,12539,12540,12537 ,0,0,0}, - {29612,29613,29614 ,12541,12542,12543 ,0,0,0}, {29615,29579,29578 ,12544,12545,12546 ,0,0,0}, - {29580,29579,29616 ,12540,12545,12547 ,0,0,0}, {29615,29616,29579 ,12544,12547,12545 ,0,0,0}, - {29491,29577,29617 ,12548,12549,12550 ,0,0,0}, {29618,29491,29617 ,12551,12548,12550 ,0,0,0}, - {29578,29491,29618 ,12546,12548,12551 ,0,0,0}, {29617,29576,29619 ,12550,12552,12553 ,0,0,0}, - {29578,29618,29615 ,12546,12551,12544 ,0,0,0}, {29617,29577,29576 ,12550,12549,12552 ,0,0,0}, - {29616,29610,29580 ,12547,12537,12540 ,0,0,0}, {29620,29575,29574 ,12554,12555,12556 ,0,0,0}, - {29620,29619,29575 ,12554,12553,12555 ,0,0,0}, {29621,29620,29574 ,12557,12554,12556 ,0,0,0}, - {29622,29623,29624 ,12558,12559,12560 ,0,0,0}, {29625,29621,29573 ,12561,12557,12562 ,0,0,0}, - {29572,29625,29573 ,12563,12561,12562 ,0,0,0}, {29626,29572,29571 ,12564,12563,12565 ,0,0,0}, - {29625,29572,29626 ,12561,12563,12564 ,0,0,0}, {29627,29626,29571 ,12566,12564,12565 ,0,0,0}, - {29573,29621,29574 ,12562,12557,12556 ,0,0,0}, {29619,29576,29575 ,12553,12552,12555 ,0,0,0}, - {29628,29569,29629 ,12567,12568,12569 ,0,0,0}, {29570,29628,29627 ,12570,12567,12566 ,0,0,0}, - {29568,29630,29629 ,12571,12572,12569 ,0,0,0}, {29570,29569,29628 ,12570,12568,12567 ,0,0,0}, - {29630,29567,29631 ,12572,12573,12574 ,0,0,0}, {29567,29630,29568 ,12573,12572,12571 ,0,0,0}, - {29631,29566,29632 ,12574,12575,12576 ,0,0,0}, {29569,29568,29629 ,12568,12571,12569 ,0,0,0}, - {29567,29566,29631 ,12573,12575,12574 ,0,0,0}, {29631,29633,29634 ,12574,12577,12578 ,0,0,0}, - {29265,29635,29269 ,12579,12580,12188 ,0,0,0}, {29636,29637,29638 ,12581,12582,12583 ,0,0,0}, - {29635,29639,29269 ,12580,12584,12188 ,0,0,0}, {29640,29641,29642 ,12585,12586,12587 ,0,0,0}, - {29635,29265,29640 ,12580,12579,12585 ,0,0,0}, {29632,29566,29565 ,12576,12575,12588 ,0,0,0}, - {29634,29643,29644 ,12578,12589,12590 ,0,0,0}, {29645,29646,29644 ,12591,12592,12590 ,0,0,0}, - {29644,29643,29647 ,12590,12589,12593 ,0,0,0}, {29565,29145,29648 ,12588,12594,12595 ,0,0,0}, - {29649,29650,29651 ,12596,12597,12598 ,0,0,0}, {29650,29652,29653 ,12597,12599,12600 ,0,0,0}, - {29652,29654,29653 ,12599,12601,12600 ,0,0,0}, {29655,29651,29656 ,12602,12598,12603 ,0,0,0}, - {29657,29656,29143 ,12604,12603,12057 ,0,0,0}, {29145,29656,29648 ,12594,12603,12595 ,0,0,0}, - {29656,29148,29143 ,12603,12605,12057 ,0,0,0}, {29657,29655,29656 ,12604,12602,12603 ,0,0,0}, - {29637,29658,29659 ,12582,12606,12607 ,0,0,0}, {29570,29627,29571 ,12570,12566,12565 ,0,0,0}, - {29611,29582,29581 ,12538,12608,12539 ,0,0,0}, {29541,29582,29660 ,12609,12608,12610 ,0,0,0}, - {29611,29660,29582 ,12538,12610,12608 ,0,0,0}, {29661,29583,29541 ,12611,12612,12609 ,0,0,0}, - {29541,29660,29661 ,12609,12610,12611 ,0,0,0}, {29584,29661,29662 ,12613,12611,12614 ,0,0,0}, - {29661,29584,29583 ,12611,12613,12612 ,0,0,0}, {29663,29585,29662 ,12615,12616,12614 ,0,0,0}, - {29584,29662,29585 ,12613,12614,12616 ,0,0,0}, {29586,29585,29663 ,12617,12616,12615 ,0,0,0}, - {29663,29664,29586 ,12615,12618,12617 ,0,0,0}, {29586,29664,29587 ,12617,12618,12619 ,0,0,0}, - {29587,29664,29665 ,12619,12618,12620 ,0,0,0}, {29666,29667,29668 ,12621,12622,12623 ,0,0,0}, - {29669,29588,29665 ,12624,12625,12620 ,0,0,0}, {29587,29665,29588 ,12619,12620,12625 ,0,0,0}, - {29669,29670,29589 ,12624,12626,12627 ,0,0,0}, {29589,29588,29669 ,12627,12625,12624 ,0,0,0}, - {29506,29590,29670 ,12628,12629,12626 ,0,0,0}, {29670,29590,29589 ,12626,12629,12627 ,0,0,0}, - {29671,29591,29506 ,12630,12631,12628 ,0,0,0}, {29506,29670,29671 ,12628,12626,12630 ,0,0,0}, - {29591,29672,29592 ,12631,12632,12633 ,0,0,0}, {29672,29591,29671 ,12632,12631,12630 ,0,0,0}, - {29593,29592,29673 ,12634,12633,12635 ,0,0,0}, {29672,29673,29592 ,12632,12635,12633 ,0,0,0}, - {29674,29593,29673 ,12636,12634,12635 ,0,0,0}, {29674,29594,29593 ,12636,12637,12634 ,0,0,0}, - {29674,29675,29594 ,12636,12638,12637 ,0,0,0}, {29676,29677,29678 ,12639,12640,12641 ,0,0,0}, - {29595,29675,29679 ,12642,12638,12643 ,0,0,0}, {29675,29595,29594 ,12638,12642,12637 ,0,0,0}, - {29680,29552,29679 ,12644,12645,12643 ,0,0,0}, {29595,29679,29552 ,12642,12643,12645 ,0,0,0}, - {29596,29680,29597 ,12646,12644,12647 ,0,0,0}, {29596,29552,29680 ,12646,12645,12644 ,0,0,0}, - {29598,29597,29681 ,12648,12647,12649 ,0,0,0}, {29680,29681,29597 ,12644,12649,12647 ,0,0,0}, - {29682,29599,29598 ,12650,12651,12648 ,0,0,0}, {29598,29681,29682 ,12648,12649,12650 ,0,0,0}, - {29599,29683,29600 ,12651,12652,12653 ,0,0,0}, {29683,29599,29682 ,12652,12651,12650 ,0,0,0}, - {29601,29600,29684 ,12654,12653,12655 ,0,0,0}, {29683,29684,29600 ,12652,12655,12653 ,0,0,0}, - {29685,29601,29684 ,12656,12654,12655 ,0,0,0}, {29685,29602,29601 ,12656,12657,12654 ,0,0,0}, - {29685,29686,29602 ,12656,12658,12657 ,0,0,0}, {29687,29688,29689 ,12659,12660,12661 ,0,0,0}, - {29603,29686,29688 ,12662,12658,12660 ,0,0,0}, {29686,29603,29602 ,12658,12662,12657 ,0,0,0}, - {29690,29604,29688 ,12663,12664,12660 ,0,0,0}, {29603,29688,29604 ,12662,12660,12664 ,0,0,0}, - {29691,29692,29693 ,12665,12666,12667 ,0,0,0}, {29605,29604,29690 ,12668,12664,12663 ,0,0,0}, - {29694,29695,29696 ,12669,12670,12671 ,0,0,0}, {29697,29698,29699 ,12672,12673,12674 ,0,0,0}, - {29700,29701,29702 ,12675,12676,12677 ,0,0,0}, {29703,29704,29705 ,12678,12679,12680 ,0,0,0}, - {29706,29707,29694 ,12681,12682,12669 ,0,0,0}, {29708,29709,29710 ,12683,12684,12685 ,0,0,0}, - {29711,29712,29707 ,12686,12687,12682 ,0,0,0}, {29708,29703,29709 ,12683,12678,12684 ,0,0,0}, - {29707,29713,29714 ,12682,12688,12689 ,0,0,0}, {29217,28768,29710 ,12690,726,12685 ,0,0,0}, - {29715,29605,29690 ,12691,12668,12663 ,0,0,0}, {29605,29715,29606 ,12668,12691,12692 ,0,0,0}, - {29606,29691,29607 ,12692,12665,12693 ,0,0,0}, {29687,29690,29688 ,12659,12663,12660 ,0,0,0}, - {29716,29717,29608 ,12694,12695,12696 ,0,0,0}, {29691,29716,29607 ,12665,12694,12693 ,0,0,0}, - {29714,29716,29693 ,12689,12694,12667 ,0,0,0}, {29607,29716,29608 ,12693,12694,12696 ,0,0,0}, - {29717,29718,29237 ,12695,12697,12698 ,0,0,0}, {29717,29237,29609 ,12695,12698,12699 ,0,0,0}, - {28639,29237,29719 ,730,12698,12700 ,0,0,0}, {29656,29145,29148 ,12603,12594,12605 ,0,0,0}, - {29649,29651,29655 ,12596,12598,12602 ,0,0,0}, {29659,29658,29720 ,12607,12606,12701 ,0,0,0}, - {29648,29632,29565 ,12595,12576,12588 ,0,0,0}, {29648,29651,29721 ,12595,12598,12702 ,0,0,0}, - {29722,29630,29634 ,12703,12572,12578 ,0,0,0}, {29632,29721,29633 ,12576,12702,12577 ,0,0,0}, - {29723,29629,29722 ,12704,12569,12703 ,0,0,0}, {29633,29631,29632 ,12577,12574,12576 ,0,0,0}, - {29724,29628,29723 ,12705,12567,12704 ,0,0,0}, {29634,29630,29631 ,12578,12572,12574 ,0,0,0}, - {29725,29627,29724 ,12706,12566,12705 ,0,0,0}, {29722,29629,29630 ,12703,12569,12572 ,0,0,0}, - {29726,29626,29725 ,12707,12564,12706 ,0,0,0}, {29723,29628,29629 ,12704,12567,12569 ,0,0,0}, - {29727,29625,29726 ,12708,12561,12707 ,0,0,0}, {29724,29627,29628 ,12705,12566,12567 ,0,0,0}, - {29728,29621,29727 ,12709,12557,12708 ,0,0,0}, {29725,29626,29627 ,12706,12564,12566 ,0,0,0}, - {29728,29729,29620 ,12709,12710,12554 ,0,0,0}, {29625,29626,29726 ,12561,12564,12707 ,0,0,0}, - {29730,29619,29729 ,12711,12553,12710 ,0,0,0}, {29621,29625,29727 ,12557,12561,12708 ,0,0,0}, - {29623,29617,29730 ,12559,12550,12711 ,0,0,0}, {29620,29621,29728 ,12554,12557,12709 ,0,0,0}, - {29731,29618,29623 ,12712,12551,12559 ,0,0,0}, {29619,29620,29729 ,12553,12554,12710 ,0,0,0}, - {29732,29615,29731 ,12713,12544,12712 ,0,0,0}, {29617,29619,29730 ,12550,12553,12711 ,0,0,0}, - {29733,29616,29732 ,12714,12547,12713 ,0,0,0}, {29623,29618,29617 ,12559,12551,12550 ,0,0,0}, - {29734,29610,29733 ,12715,12537,12714 ,0,0,0}, {29731,29615,29618 ,12712,12544,12551 ,0,0,0}, - {29734,29735,29611 ,12715,12716,12538 ,0,0,0}, {29616,29615,29732 ,12547,12544,12713 ,0,0,0}, - {29736,29660,29735 ,12717,12610,12716 ,0,0,0}, {29610,29616,29733 ,12537,12547,12714 ,0,0,0}, - {29737,29661,29736 ,12718,12611,12717 ,0,0,0}, {29611,29610,29734 ,12538,12537,12715 ,0,0,0}, - {29738,29662,29737 ,12719,12614,12718 ,0,0,0}, {29660,29611,29735 ,12610,12538,12716 ,0,0,0}, - {29739,29663,29738 ,12720,12615,12719 ,0,0,0}, {29661,29660,29736 ,12611,12610,12717 ,0,0,0}, - {29740,29664,29739 ,12721,12618,12720 ,0,0,0}, {29737,29662,29661 ,12718,12614,12611 ,0,0,0}, - {29740,29741,29665 ,12721,12722,12620 ,0,0,0}, {29663,29662,29738 ,12615,12614,12719 ,0,0,0}, - {29742,29669,29741 ,12723,12624,12722 ,0,0,0}, {29664,29663,29739 ,12618,12615,12720 ,0,0,0}, - {29666,29670,29742 ,12621,12626,12723 ,0,0,0}, {29665,29664,29740 ,12620,12618,12721 ,0,0,0}, - {29743,29671,29666 ,12724,12630,12621 ,0,0,0}, {29669,29665,29741 ,12624,12620,12722 ,0,0,0}, - {29744,29672,29743 ,12725,12632,12724 ,0,0,0}, {29670,29669,29742 ,12626,12624,12723 ,0,0,0}, - {29745,29673,29744 ,12726,12635,12725 ,0,0,0}, {29666,29671,29670 ,12621,12630,12626 ,0,0,0}, - {29746,29674,29745 ,12727,12636,12726 ,0,0,0}, {29743,29672,29671 ,12724,12632,12630 ,0,0,0}, - {29746,29747,29675 ,12727,12728,12638 ,0,0,0}, {29673,29672,29744 ,12635,12632,12725 ,0,0,0}, - {29748,29679,29747 ,12729,12643,12728 ,0,0,0}, {29674,29673,29745 ,12636,12635,12726 ,0,0,0}, - {29749,29680,29748 ,12730,12644,12729 ,0,0,0}, {29675,29674,29746 ,12638,12636,12727 ,0,0,0}, - {29750,29681,29749 ,12731,12649,12730 ,0,0,0}, {29679,29675,29747 ,12643,12638,12728 ,0,0,0}, - {29751,29682,29750 ,12732,12650,12731 ,0,0,0}, {29748,29680,29679 ,12729,12644,12643 ,0,0,0}, - {29752,29683,29751 ,12733,12652,12732 ,0,0,0}, {29749,29681,29680 ,12730,12649,12644 ,0,0,0}, - {29753,29684,29752 ,12734,12655,12733 ,0,0,0}, {29750,29682,29681 ,12731,12650,12649 ,0,0,0}, - {29754,29685,29753 ,12735,12656,12734 ,0,0,0}, {29751,29683,29682 ,12732,12652,12650 ,0,0,0}, - {29754,29689,29686 ,12735,12661,12658 ,0,0,0}, {29684,29683,29752 ,12655,12652,12733 ,0,0,0}, - {29690,29687,29755 ,12663,12659,12736 ,0,0,0}, {29685,29684,29753 ,12656,12655,12734 ,0,0,0}, - {29711,29693,29699 ,12686,12667,12674 ,0,0,0}, {29686,29685,29754 ,12658,12656,12735 ,0,0,0}, - {29715,29755,29692 ,12691,12736,12666 ,0,0,0}, {29686,29689,29688 ,12658,12661,12660 ,0,0,0}, - {29755,29756,29692 ,12736,12737,12666 ,0,0,0}, {29714,29717,29716 ,12689,12695,12694 ,0,0,0}, - {29715,29691,29606 ,12691,12665,12692 ,0,0,0}, {29755,29715,29690 ,12736,12691,12663 ,0,0,0}, - {29714,29711,29707 ,12689,12686,12682 ,0,0,0}, {29691,29715,29692 ,12665,12691,12666 ,0,0,0}, - {29718,29713,29757 ,12697,12688,12738 ,0,0,0}, {29718,29719,29237 ,12697,12700,12698 ,0,0,0}, - {29608,29717,29609 ,12696,12695,12699 ,0,0,0}, {29718,29717,29713 ,12697,12695,12688 ,0,0,0}, - {29758,29719,29718 ,12739,12700,12697 ,0,0,0}, {29656,29651,29648 ,12603,12598,12595 ,0,0,0}, - {29652,29650,29649 ,12599,12597,12596 ,0,0,0}, {29640,29265,29261 ,12585,12579,12740 ,0,0,0}, - {29648,29721,29632 ,12595,12702,12576 ,0,0,0}, {29759,29721,29650 ,12741,12702,12597 ,0,0,0}, - {29644,29646,29722 ,12590,12592,12703 ,0,0,0}, {29643,29633,29759 ,12589,12577,12741 ,0,0,0}, - {29646,29760,29723 ,12592,12742,12704 ,0,0,0}, {29643,29634,29633 ,12589,12578,12577 ,0,0,0}, - {29760,29761,29724 ,12742,12743,12705 ,0,0,0}, {29644,29722,29634 ,12590,12703,12578 ,0,0,0}, - {29761,29762,29725 ,12743,12744,12706 ,0,0,0}, {29646,29723,29722 ,12592,12704,12703 ,0,0,0}, - {29762,29763,29726 ,12744,12745,12707 ,0,0,0}, {29760,29724,29723 ,12742,12705,12704 ,0,0,0}, - {29763,29764,29727 ,12745,12746,12708 ,0,0,0}, {29761,29725,29724 ,12743,12706,12705 ,0,0,0}, - {29764,29765,29728 ,12746,12747,12709 ,0,0,0}, {29762,29726,29725 ,12744,12707,12706 ,0,0,0}, - {29765,29766,29729 ,12747,12748,12710 ,0,0,0}, {29763,29727,29726 ,12745,12708,12707 ,0,0,0}, - {29766,29624,29730 ,12748,12560,12711 ,0,0,0}, {29728,29727,29764 ,12709,12708,12746 ,0,0,0}, - {29767,29768,29769 ,12749,12750,12751 ,0,0,0}, {29729,29728,29765 ,12710,12709,12747 ,0,0,0}, - {29622,29768,29731 ,12558,12750,12712 ,0,0,0}, {29730,29729,29766 ,12711,12710,12748 ,0,0,0}, - {29768,29767,29732 ,12750,12749,12713 ,0,0,0}, {29623,29730,29624 ,12559,12711,12560 ,0,0,0}, - {29767,29770,29733 ,12749,12752,12714 ,0,0,0}, {29622,29731,29623 ,12558,12712,12559 ,0,0,0}, - {29770,29771,29734 ,12752,12753,12715 ,0,0,0}, {29768,29732,29731 ,12750,12713,12712 ,0,0,0}, - {29771,29772,29735 ,12753,12754,12716 ,0,0,0}, {29767,29733,29732 ,12749,12714,12713 ,0,0,0}, - {29772,29773,29736 ,12754,12755,12717 ,0,0,0}, {29734,29733,29770 ,12715,12714,12752 ,0,0,0}, - {29614,29737,29773 ,12543,12718,12755 ,0,0,0}, {29735,29734,29771 ,12716,12715,12753 ,0,0,0}, - {29614,29613,29738 ,12543,12542,12719 ,0,0,0}, {29736,29735,29772 ,12717,12716,12754 ,0,0,0}, - {29613,29774,29739 ,12542,12756,12720 ,0,0,0}, {29773,29737,29736 ,12755,12718,12717 ,0,0,0}, - {29774,29775,29740 ,12756,12757,12721 ,0,0,0}, {29614,29738,29737 ,12543,12719,12718 ,0,0,0}, - {29775,29776,29741 ,12757,12758,12722 ,0,0,0}, {29613,29739,29738 ,12542,12720,12719 ,0,0,0}, - {29776,29667,29742 ,12758,12622,12723 ,0,0,0}, {29740,29739,29774 ,12721,12720,12756 ,0,0,0}, - {29777,29778,29779 ,12759,12760,12761 ,0,0,0}, {29741,29740,29775 ,12722,12721,12757 ,0,0,0}, - {29668,29780,29743 ,12623,12762,12724 ,0,0,0}, {29742,29741,29776 ,12723,12722,12758 ,0,0,0}, - {29780,29781,29744 ,12762,12763,12725 ,0,0,0}, {29666,29742,29667 ,12621,12723,12622 ,0,0,0}, - {29781,29782,29745 ,12763,12764,12726 ,0,0,0}, {29668,29743,29666 ,12623,12724,12621 ,0,0,0}, - {29782,29783,29746 ,12764,12765,12727 ,0,0,0}, {29780,29744,29743 ,12762,12725,12724 ,0,0,0}, - {29783,29784,29747 ,12765,12766,12728 ,0,0,0}, {29781,29745,29744 ,12763,12726,12725 ,0,0,0}, - {29784,29785,29748 ,12766,12767,12729 ,0,0,0}, {29746,29745,29782 ,12727,12726,12764 ,0,0,0}, - {29785,29676,29749 ,12767,12639,12730 ,0,0,0}, {29747,29746,29783 ,12728,12727,12765 ,0,0,0}, - {29676,29678,29750 ,12639,12641,12731 ,0,0,0}, {29748,29747,29784 ,12729,12728,12766 ,0,0,0}, - {29678,29786,29751 ,12641,12768,12732 ,0,0,0}, {29785,29749,29748 ,12767,12730,12729 ,0,0,0}, - {29786,29787,29752 ,12768,12769,12733 ,0,0,0}, {29676,29750,29749 ,12639,12731,12730 ,0,0,0}, - {29787,29788,29753 ,12769,12770,12734 ,0,0,0}, {29678,29751,29750 ,12641,12732,12731 ,0,0,0}, - {29788,29789,29754 ,12770,12771,12735 ,0,0,0}, {29786,29752,29751 ,12768,12733,12732 ,0,0,0}, - {29789,29790,29689 ,12771,12772,12661 ,0,0,0}, {29787,29753,29752 ,12769,12734,12733 ,0,0,0}, - {29790,29791,29687 ,12772,12773,12659 ,0,0,0}, {29788,29754,29753 ,12770,12735,12734 ,0,0,0}, - {29791,29756,29755 ,12773,12737,12736 ,0,0,0}, {29789,29689,29754 ,12771,12661,12735 ,0,0,0}, - {29756,29699,29692 ,12737,12674,12666 ,0,0,0}, {29687,29689,29790 ,12659,12661,12772 ,0,0,0}, - {29792,29793,29794 ,12774,12775,12776 ,0,0,0}, {29791,29755,29687 ,12773,12736,12659 ,0,0,0}, - {29712,29694,29707 ,12687,12669,12682 ,0,0,0}, {29706,29795,29757 ,12681,12777,12738 ,0,0,0}, - {29691,29693,29716 ,12665,12667,12694 ,0,0,0}, {29699,29693,29692 ,12674,12667,12666 ,0,0,0}, - {29796,29757,29795 ,12778,12738,12777 ,0,0,0}, {29757,29758,29718 ,12738,12739,12697 ,0,0,0}, - {29717,29714,29713 ,12695,12689,12688 ,0,0,0}, {29713,29706,29757 ,12688,12681,12738 ,0,0,0}, - {29796,29758,29757 ,12778,12739,12738 ,0,0,0}, {29650,29721,29651 ,12597,12702,12598 ,0,0,0}, - {29797,29653,29654 ,12779,12600,12601 ,0,0,0}, {29797,29658,29653 ,12779,12606,12600 ,0,0,0}, - {29721,29759,29633 ,12702,12741,12577 ,0,0,0}, {29798,29759,29653 ,12780,12741,12600 ,0,0,0}, - {29646,29799,29760 ,12592,12781,12742 ,0,0,0}, {29647,29643,29798 ,12593,12589,12780 ,0,0,0}, - {29760,29800,29761 ,12742,12782,12743 ,0,0,0}, {29647,29645,29644 ,12593,12591,12590 ,0,0,0}, - {29801,29802,29803 ,12783,12784,12785 ,0,0,0}, {29645,29799,29646 ,12591,12781,12592 ,0,0,0}, - {29762,29761,29804 ,12744,12743,12786 ,0,0,0}, {29799,29800,29760 ,12781,12782,12742 ,0,0,0}, - {29763,29762,29803 ,12745,12744,12785 ,0,0,0}, {29800,29804,29761 ,12782,12786,12743 ,0,0,0}, - {29764,29763,29802 ,12746,12745,12784 ,0,0,0}, {29804,29803,29762 ,12786,12785,12744 ,0,0,0}, - {29765,29764,29805 ,12747,12746,12787 ,0,0,0}, {29803,29802,29763 ,12785,12784,12745 ,0,0,0}, - {29766,29765,29806 ,12748,12747,12788 ,0,0,0}, {29802,29805,29764 ,12784,12787,12746 ,0,0,0}, - {29624,29766,29807 ,12560,12748,12789 ,0,0,0}, {29805,29806,29765 ,12787,12788,12747 ,0,0,0}, - {29622,29624,29808 ,12558,12560,12790 ,0,0,0}, {29806,29807,29766 ,12788,12789,12748 ,0,0,0}, - {29768,29622,29809 ,12750,12558,12791 ,0,0,0}, {29808,29624,29807 ,12790,12560,12789 ,0,0,0}, - {29810,29811,29812 ,12792,12793,12794 ,0,0,0}, {29809,29622,29808 ,12791,12558,12790 ,0,0,0}, - {29770,29767,29813 ,12752,12749,12795 ,0,0,0}, {29809,29769,29768 ,12791,12751,12750 ,0,0,0}, - {29771,29770,29812 ,12753,12752,12794 ,0,0,0}, {29769,29813,29767 ,12751,12795,12749 ,0,0,0}, - {29772,29771,29811 ,12754,12753,12793 ,0,0,0}, {29813,29812,29770 ,12795,12794,12752 ,0,0,0}, - {29773,29772,29814 ,12755,12754,12796 ,0,0,0}, {29812,29811,29771 ,12794,12793,12753 ,0,0,0}, - {29614,29773,29815 ,12543,12755,12797 ,0,0,0}, {29814,29772,29811 ,12796,12754,12793 ,0,0,0}, - {29816,29817,29818 ,12798,12799,12800 ,0,0,0}, {29815,29773,29814 ,12797,12755,12796 ,0,0,0}, - {29774,29613,29819 ,12756,12542,12801 ,0,0,0}, {29815,29612,29614 ,12797,12541,12543 ,0,0,0}, - {29775,29774,29818 ,12757,12756,12800 ,0,0,0}, {29612,29819,29613 ,12541,12801,12542 ,0,0,0}, - {29776,29775,29817 ,12758,12757,12799 ,0,0,0}, {29819,29818,29774 ,12801,12800,12756 ,0,0,0}, - {29667,29776,29820 ,12622,12758,12802 ,0,0,0}, {29818,29817,29775 ,12800,12799,12757 ,0,0,0}, - {29668,29667,29821 ,12623,12622,12803 ,0,0,0}, {29817,29820,29776 ,12799,12802,12758 ,0,0,0}, - {29780,29668,29822 ,12762,12623,12804 ,0,0,0}, {29821,29667,29820 ,12803,12622,12802 ,0,0,0}, - {29781,29780,29823 ,12763,12762,12805 ,0,0,0}, {29822,29668,29821 ,12804,12623,12803 ,0,0,0}, - {29782,29781,29777 ,12764,12763,12759 ,0,0,0}, {29822,29823,29780 ,12804,12805,12762 ,0,0,0}, - {29783,29782,29779 ,12765,12764,12761 ,0,0,0}, {29823,29777,29781 ,12805,12759,12763 ,0,0,0}, - {29784,29783,29824 ,12766,12765,12806 ,0,0,0}, {29777,29779,29782 ,12759,12761,12764 ,0,0,0}, - {29785,29784,29825 ,12767,12766,12807 ,0,0,0}, {29779,29824,29783 ,12761,12806,12765 ,0,0,0}, - {29676,29785,29826 ,12639,12767,12808 ,0,0,0}, {29825,29784,29824 ,12807,12766,12806 ,0,0,0}, - {29827,29828,29829 ,12809,12810,12811 ,0,0,0}, {29826,29785,29825 ,12808,12767,12807 ,0,0,0}, - {29786,29678,29830 ,12768,12641,12812 ,0,0,0}, {29826,29677,29676 ,12808,12640,12639 ,0,0,0}, - {29787,29786,29829 ,12769,12768,12811 ,0,0,0}, {29677,29830,29678 ,12640,12812,12641 ,0,0,0}, - {29788,29787,29828 ,12770,12769,12810 ,0,0,0}, {29830,29829,29786 ,12812,12811,12768 ,0,0,0}, - {29789,29788,29831 ,12771,12770,12813 ,0,0,0}, {29829,29828,29787 ,12811,12810,12769 ,0,0,0}, - {29790,29789,29832 ,12772,12771,12814 ,0,0,0}, {29828,29831,29788 ,12810,12813,12770 ,0,0,0}, - {29791,29790,29833 ,12773,12772,12815 ,0,0,0}, {29831,29832,29789 ,12813,12814,12771 ,0,0,0}, - {29756,29791,29834 ,12737,12773,12816 ,0,0,0}, {29832,29833,29790 ,12814,12815,12772 ,0,0,0}, - {29699,29756,29697 ,12674,12737,12672 ,0,0,0}, {29833,29834,29791 ,12815,12816,12773 ,0,0,0}, - {29711,29699,29698 ,12686,12674,12673 ,0,0,0}, {29834,29697,29756 ,12816,12672,12737 ,0,0,0}, - {29835,29705,29794 ,12817,12680,12776 ,0,0,0}, {29836,29695,29694 ,12818,12670,12669 ,0,0,0}, - {29693,29711,29714 ,12667,12686,12689 ,0,0,0}, {29698,29712,29711 ,12673,12687,12686 ,0,0,0}, - {29837,29795,29793 ,12819,12777,12775 ,0,0,0}, {29837,29838,29795 ,12819,12820,12777 ,0,0,0}, - {29713,29707,29706 ,12688,12682,12681 ,0,0,0}, {29706,29696,29795 ,12681,12671,12777 ,0,0,0}, - {29796,29795,29838 ,12778,12777,12820 ,0,0,0}, {29650,29653,29759 ,12597,12600,12741 ,0,0,0}, - {29720,29658,29797 ,12701,12606,12779 ,0,0,0}, {29647,29839,29645 ,12593,12821,12591 ,0,0,0}, - {29759,29798,29643 ,12741,12780,12589 ,0,0,0}, {29658,29840,29798 ,12606,12822,12780 ,0,0,0}, - {29799,29645,29841 ,12781,12591,12823 ,0,0,0}, {29840,29839,29647 ,12822,12821,12593 ,0,0,0}, - {29800,29799,29842 ,12782,12781,12824 ,0,0,0}, {29645,29839,29841 ,12591,12821,12823 ,0,0,0}, - {29804,29800,29843 ,12786,12782,12825 ,0,0,0}, {29799,29841,29842 ,12781,12823,12824 ,0,0,0}, - {29803,29804,29844 ,12785,12786,12826 ,0,0,0}, {29842,29843,29800 ,12824,12825,12782 ,0,0,0}, - {29845,29805,29802 ,12827,12787,12784 ,0,0,0}, {29843,29844,29804 ,12825,12826,12786 ,0,0,0}, - {29846,29847,29848 ,12828,12829,12830 ,0,0,0}, {29844,29801,29803 ,12826,12783,12785 ,0,0,0}, - {29805,29849,29806 ,12787,12831,12788 ,0,0,0}, {29801,29845,29802 ,12783,12827,12784 ,0,0,0}, - {29806,29847,29807 ,12788,12829,12789 ,0,0,0}, {29845,29849,29805 ,12827,12831,12787 ,0,0,0}, - {29807,29846,29808 ,12789,12828,12790 ,0,0,0}, {29849,29847,29806 ,12831,12829,12788 ,0,0,0}, - {29808,29850,29809 ,12790,12832,12791 ,0,0,0}, {29847,29846,29807 ,12829,12828,12789 ,0,0,0}, - {29809,29851,29769 ,12791,12833,12751 ,0,0,0}, {29846,29850,29808 ,12828,12832,12790 ,0,0,0}, - {29813,29769,29852 ,12795,12751,12834 ,0,0,0}, {29850,29851,29809 ,12832,12833,12791 ,0,0,0}, - {29812,29813,29853 ,12794,12795,12835 ,0,0,0}, {29851,29852,29769 ,12833,12834,12751 ,0,0,0}, - {29854,29855,29856 ,12836,12837,12838 ,0,0,0}, {29852,29853,29813 ,12834,12835,12795 ,0,0,0}, - {29811,29857,29814 ,12793,12839,12796 ,0,0,0}, {29853,29810,29812 ,12835,12792,12794 ,0,0,0}, - {29814,29858,29815 ,12796,12840,12797 ,0,0,0}, {29810,29857,29811 ,12792,12839,12793 ,0,0,0}, - {29815,29859,29612 ,12797,12841,12541 ,0,0,0}, {29857,29858,29814 ,12839,12840,12796 ,0,0,0}, - {29819,29612,29860 ,12801,12541,12842 ,0,0,0}, {29858,29859,29815 ,12840,12841,12797 ,0,0,0}, - {29818,29819,29861 ,12800,12801,12843 ,0,0,0}, {29859,29860,29612 ,12841,12842,12541 ,0,0,0}, - {29862,29863,29864 ,12844,12845,12846 ,0,0,0}, {29860,29861,29819 ,12842,12843,12801 ,0,0,0}, - {29817,29865,29820 ,12799,12847,12802 ,0,0,0}, {29861,29816,29818 ,12843,12798,12800 ,0,0,0}, - {29820,29866,29821 ,12802,12848,12803 ,0,0,0}, {29816,29865,29817 ,12798,12847,12799 ,0,0,0}, - {29821,29867,29822 ,12803,12849,12804 ,0,0,0}, {29865,29866,29820 ,12847,12848,12802 ,0,0,0}, - {29822,29868,29823 ,12804,12850,12805 ,0,0,0}, {29866,29867,29821 ,12848,12849,12803 ,0,0,0}, - {29777,29823,29869 ,12759,12805,12851 ,0,0,0}, {29867,29868,29822 ,12849,12850,12804 ,0,0,0}, - {29870,29871,29872 ,12852,12853,12854 ,0,0,0}, {29868,29869,29823 ,12850,12851,12805 ,0,0,0}, - {29779,29873,29824 ,12761,12855,12806 ,0,0,0}, {29869,29778,29777 ,12851,12760,12759 ,0,0,0}, - {29824,29871,29825 ,12806,12853,12807 ,0,0,0}, {29778,29873,29779 ,12760,12855,12761 ,0,0,0}, - {29825,29870,29826 ,12807,12852,12808 ,0,0,0}, {29873,29871,29824 ,12855,12853,12806 ,0,0,0}, - {29826,29874,29677 ,12808,12856,12640 ,0,0,0}, {29871,29870,29825 ,12853,12852,12807 ,0,0,0}, - {29830,29677,29875 ,12812,12640,12857 ,0,0,0}, {29870,29874,29826 ,12852,12856,12808 ,0,0,0}, - {29829,29830,29876 ,12811,12812,12858 ,0,0,0}, {29874,29875,29677 ,12856,12857,12640 ,0,0,0}, - {29877,29831,29828 ,12859,12813,12810 ,0,0,0}, {29875,29876,29830 ,12857,12858,12812 ,0,0,0}, - {29878,29879,29880 ,12860,12861,12862 ,0,0,0}, {29876,29827,29829 ,12858,12809,12811 ,0,0,0}, - {29831,29881,29832 ,12813,12863,12814 ,0,0,0}, {29827,29877,29828 ,12809,12859,12810 ,0,0,0}, - {29832,29879,29833 ,12814,12861,12815 ,0,0,0}, {29877,29881,29831 ,12859,12863,12813 ,0,0,0}, - {29833,29878,29834 ,12815,12860,12816 ,0,0,0}, {29881,29879,29832 ,12863,12861,12814 ,0,0,0}, - {29834,29882,29697 ,12816,12864,12672 ,0,0,0}, {29879,29878,29833 ,12861,12860,12815 ,0,0,0}, - {29697,29883,29698 ,12672,12865,12673 ,0,0,0}, {29878,29882,29834 ,12860,12864,12816 ,0,0,0}, - {29698,29884,29712 ,12673,12866,12687 ,0,0,0}, {29882,29883,29697 ,12864,12865,12672 ,0,0,0}, - {29712,29836,29694 ,12687,12818,12669 ,0,0,0}, {29884,29698,29883 ,12866,12673,12865 ,0,0,0}, - {29701,29695,29885 ,12676,12670,12867 ,0,0,0}, {29712,29884,29836 ,12687,12866,12818 ,0,0,0}, - {29793,29886,29794 ,12775,12868,12776 ,0,0,0}, {29795,29696,29793 ,12777,12671,12775 ,0,0,0}, - {29706,29694,29696 ,12681,12669,12671 ,0,0,0}, {29696,29886,29793 ,12671,12868,12775 ,0,0,0}, - {29837,29793,29792 ,12819,12775,12774 ,0,0,0}, {29653,29658,29798 ,12600,12606,12780 ,0,0,0}, - {29638,29637,29659 ,12583,12582,12607 ,0,0,0}, {29839,29887,29841 ,12821,12869,12823 ,0,0,0}, - {29798,29840,29647 ,12780,12822,12593 ,0,0,0}, {29637,29888,29840 ,12582,12870,12822 ,0,0,0}, - {29842,29841,29889 ,12824,12823,12871 ,0,0,0}, {29839,29888,29887 ,12821,12870,12869 ,0,0,0}, - {29843,29842,29890 ,12825,12824,12872 ,0,0,0}, {29841,29887,29889 ,12823,12869,12871 ,0,0,0}, - {29844,29843,29891 ,12826,12825,12873 ,0,0,0}, {29842,29889,29890 ,12824,12871,12872 ,0,0,0}, - {29801,29844,29892 ,12783,12826,12874 ,0,0,0}, {29843,29890,29891 ,12825,12872,12873 ,0,0,0}, - {29845,29801,29893 ,12827,12783,12875 ,0,0,0}, {29844,29891,29892 ,12826,12873,12874 ,0,0,0}, - {29849,29845,29894 ,12831,12827,12876 ,0,0,0}, {29801,29892,29893 ,12783,12874,12875 ,0,0,0}, - {29847,29849,29895 ,12829,12831,12877 ,0,0,0}, {29893,29894,29845 ,12875,12876,12827 ,0,0,0}, - {29896,29897,29898 ,12878,12879,12880 ,0,0,0}, {29894,29895,29849 ,12876,12877,12831 ,0,0,0}, - {29846,29899,29850 ,12828,12881,12832 ,0,0,0}, {29895,29848,29847 ,12877,12830,12829 ,0,0,0}, - {29850,29898,29851 ,12832,12880,12833 ,0,0,0}, {29848,29899,29846 ,12830,12881,12828 ,0,0,0}, - {29851,29900,29852 ,12833,12882,12834 ,0,0,0}, {29899,29898,29850 ,12881,12880,12832 ,0,0,0}, - {29853,29852,29901 ,12835,12834,12883 ,0,0,0}, {29898,29900,29851 ,12880,12882,12833 ,0,0,0}, - {29810,29853,29902 ,12792,12835,12884 ,0,0,0}, {29852,29900,29901 ,12834,12882,12883 ,0,0,0}, - {29857,29810,29903 ,12839,12792,12885 ,0,0,0}, {29853,29901,29902 ,12835,12883,12884 ,0,0,0}, - {29858,29857,29904 ,12840,12839,12886 ,0,0,0}, {29902,29903,29810 ,12884,12885,12792 ,0,0,0}, - {29858,29905,29859 ,12840,12887,12841 ,0,0,0}, {29903,29904,29857 ,12885,12886,12839 ,0,0,0}, - {29859,29855,29860 ,12841,12837,12842 ,0,0,0}, {29904,29905,29858 ,12886,12887,12840 ,0,0,0}, - {29861,29860,29906 ,12843,12842,12888 ,0,0,0}, {29905,29855,29859 ,12887,12837,12841 ,0,0,0}, - {29816,29861,29907 ,12798,12843,12889 ,0,0,0}, {29860,29855,29906 ,12842,12837,12888 ,0,0,0}, - {29865,29816,29908 ,12847,12798,12890 ,0,0,0}, {29861,29906,29907 ,12843,12888,12889 ,0,0,0}, - {29866,29865,29909 ,12848,12847,12891 ,0,0,0}, {29907,29908,29816 ,12889,12890,12798 ,0,0,0}, - {29866,29910,29867 ,12848,12892,12849 ,0,0,0}, {29908,29909,29865 ,12890,12891,12847 ,0,0,0}, - {29867,29863,29868 ,12849,12845,12850 ,0,0,0}, {29909,29910,29866 ,12891,12892,12848 ,0,0,0}, - {29869,29868,29911 ,12851,12850,12893 ,0,0,0}, {29910,29863,29867 ,12892,12845,12849 ,0,0,0}, - {29778,29869,29912 ,12760,12851,12894 ,0,0,0}, {29868,29863,29911 ,12850,12845,12893 ,0,0,0}, - {29873,29778,29913 ,12855,12760,12895 ,0,0,0}, {29869,29911,29912 ,12851,12893,12894 ,0,0,0}, - {29871,29873,29914 ,12853,12855,12896 ,0,0,0}, {29912,29913,29778 ,12894,12895,12760 ,0,0,0}, - {29915,29916,29917 ,12897,12898,12899 ,0,0,0}, {29913,29914,29873 ,12895,12896,12855 ,0,0,0}, - {29870,29918,29874 ,12852,12900,12856 ,0,0,0}, {29914,29872,29871 ,12896,12854,12853 ,0,0,0}, - {29874,29917,29875 ,12856,12899,12857 ,0,0,0}, {29872,29918,29870 ,12854,12900,12852 ,0,0,0}, - {29876,29875,29919 ,12858,12857,12901 ,0,0,0}, {29918,29917,29874 ,12900,12899,12856 ,0,0,0}, - {29827,29876,29920 ,12809,12858,12902 ,0,0,0}, {29875,29917,29919 ,12857,12899,12901 ,0,0,0}, - {29877,29827,29921 ,12859,12809,12903 ,0,0,0}, {29876,29919,29920 ,12858,12901,12902 ,0,0,0}, - {29881,29877,29922 ,12863,12859,12904 ,0,0,0}, {29827,29920,29921 ,12809,12902,12903 ,0,0,0}, - {29879,29881,29923 ,12861,12863,12905 ,0,0,0}, {29921,29922,29877 ,12903,12904,12859 ,0,0,0}, - {29924,29882,29878 ,12906,12864,12860 ,0,0,0}, {29922,29923,29881 ,12904,12905,12863 ,0,0,0}, - {29925,29926,29927 ,12907,12908,12909 ,0,0,0}, {29923,29880,29879 ,12905,12862,12861 ,0,0,0}, - {29882,29928,29883 ,12864,12910,12865 ,0,0,0}, {29880,29924,29878 ,12862,12906,12860 ,0,0,0}, - {29883,29927,29884 ,12865,12909,12866 ,0,0,0}, {29924,29928,29882 ,12906,12910,12864 ,0,0,0}, - {29884,29929,29836 ,12866,12911,12818 ,0,0,0}, {29928,29927,29883 ,12910,12909,12865 ,0,0,0}, - {29836,29885,29695 ,12818,12867,12670 ,0,0,0}, {29927,29929,29884 ,12909,12911,12866 ,0,0,0}, - {29695,29701,29886 ,12670,12676,12868 ,0,0,0}, {29836,29929,29885 ,12818,12911,12867 ,0,0,0}, - {29930,29794,29705 ,12912,12776,12680 ,0,0,0}, {29931,29792,29794 ,12913,12774,12776 ,0,0,0}, - {29696,29695,29886 ,12671,12670,12868 ,0,0,0}, {29886,29835,29794 ,12868,12817,12776 ,0,0,0}, - {29930,29931,29794 ,12912,12913,12776 ,0,0,0}, {29658,29637,29840 ,12606,12582,12822 ,0,0,0}, - {29932,29636,29638 ,12914,12581,12583 ,0,0,0}, {29889,29887,29642 ,12871,12869,12587 ,0,0,0}, - {29840,29888,29839 ,12822,12870,12821 ,0,0,0}, {29636,29933,29888 ,12581,12915,12870 ,0,0,0}, - {29890,29889,29934 ,12872,12871,12916 ,0,0,0}, {29887,29933,29642 ,12869,12915,12587 ,0,0,0}, - {29935,29934,29936 ,12917,12916,12918 ,0,0,0}, {29889,29642,29934 ,12871,12587,12916 ,0,0,0}, - {29935,29937,29891 ,12917,12919,12873 ,0,0,0}, {29891,29890,29935 ,12873,12872,12917 ,0,0,0}, - {29937,29938,29892 ,12919,12920,12874 ,0,0,0}, {29892,29891,29937 ,12874,12873,12919 ,0,0,0}, - {29938,29939,29893 ,12920,12921,12875 ,0,0,0}, {29893,29892,29938 ,12875,12874,12920 ,0,0,0}, - {29939,29940,29894 ,12921,12922,12876 ,0,0,0}, {29894,29893,29939 ,12876,12875,12921 ,0,0,0}, - {29940,29941,29895 ,12922,12923,12877 ,0,0,0}, {29895,29894,29940 ,12877,12876,12922 ,0,0,0}, - {29941,29942,29848 ,12923,12924,12830 ,0,0,0}, {29848,29895,29941 ,12830,12877,12923 ,0,0,0}, - {29942,29896,29899 ,12924,12878,12881 ,0,0,0}, {29848,29942,29899 ,12830,12924,12881 ,0,0,0}, - {29252,29943,29944 ,12925,12926,12927 ,0,0,0}, {29899,29896,29898 ,12881,12878,12880 ,0,0,0}, - {29900,29945,29901 ,12882,12928,12883 ,0,0,0}, {29898,29897,29900 ,12880,12879,12882 ,0,0,0}, - {29946,29945,29944 ,12929,12928,12927 ,0,0,0}, {29897,29945,29900 ,12879,12928,12882 ,0,0,0}, - {29946,29947,29902 ,12929,12930,12884 ,0,0,0}, {29902,29901,29946 ,12884,12883,12929 ,0,0,0}, - {29947,29948,29903 ,12930,12931,12885 ,0,0,0}, {29903,29902,29947 ,12885,12884,12930 ,0,0,0}, - {29948,29949,29904 ,12931,12932,12886 ,0,0,0}, {29904,29903,29948 ,12886,12885,12931 ,0,0,0}, - {29949,29856,29905 ,12932,12838,12887 ,0,0,0}, {29904,29949,29905 ,12886,12932,12887 ,0,0,0}, - {29950,29951,29952 ,12933,12934,12935 ,0,0,0}, {29905,29856,29855 ,12887,12838,12837 ,0,0,0}, - {29854,29951,29906 ,12836,12934,12888 ,0,0,0}, {29855,29854,29906 ,12837,12836,12888 ,0,0,0}, - {29951,29953,29907 ,12934,12936,12889 ,0,0,0}, {29907,29906,29951 ,12889,12888,12934 ,0,0,0}, - {29953,29954,29908 ,12936,12937,12890 ,0,0,0}, {29908,29907,29953 ,12890,12889,12936 ,0,0,0}, - {29954,29955,29909 ,12937,12938,12891 ,0,0,0}, {29909,29908,29954 ,12891,12890,12937 ,0,0,0}, - {29955,29864,29910 ,12938,12846,12892 ,0,0,0}, {29909,29955,29910 ,12891,12938,12892 ,0,0,0}, - {29956,29243,29957 ,12939,12940,12941 ,0,0,0}, {29910,29864,29863 ,12892,12846,12845 ,0,0,0}, - {29912,29911,29958 ,12894,12893,12942 ,0,0,0}, {29863,29862,29911 ,12845,12844,12893 ,0,0,0}, - {29959,29958,29956 ,12943,12942,12939 ,0,0,0}, {29911,29862,29958 ,12893,12844,12942 ,0,0,0}, - {29959,29960,29913 ,12943,12944,12895 ,0,0,0}, {29913,29912,29959 ,12895,12894,12943 ,0,0,0}, - {29960,29961,29914 ,12944,12945,12896 ,0,0,0}, {29914,29913,29960 ,12896,12895,12944 ,0,0,0}, - {29961,29962,29872 ,12945,12946,12854 ,0,0,0}, {29872,29914,29961 ,12854,12896,12945 ,0,0,0}, - {29962,29915,29918 ,12946,12897,12900 ,0,0,0}, {29872,29962,29918 ,12854,12946,12900 ,0,0,0}, - {29963,29964,29965 ,12947,12948,12949 ,0,0,0}, {29918,29915,29917 ,12900,12897,12899 ,0,0,0}, - {29916,29964,29919 ,12898,12948,12901 ,0,0,0}, {29917,29916,29919 ,12899,12898,12901 ,0,0,0}, - {29964,29966,29920 ,12948,12950,12902 ,0,0,0}, {29920,29919,29964 ,12902,12901,12948 ,0,0,0}, - {29966,29967,29921 ,12950,12951,12903 ,0,0,0}, {29921,29920,29966 ,12903,12902,12950 ,0,0,0}, - {29967,29968,29922 ,12951,12952,12904 ,0,0,0}, {29922,29921,29967 ,12904,12903,12951 ,0,0,0}, - {29968,29969,29923 ,12952,12953,12905 ,0,0,0}, {29923,29922,29968 ,12905,12904,12952 ,0,0,0}, - {29969,29970,29880 ,12953,12954,12862 ,0,0,0}, {29880,29923,29969 ,12862,12905,12953 ,0,0,0}, - {29970,29971,29924 ,12954,12955,12906 ,0,0,0}, {29924,29880,29970 ,12906,12862,12954 ,0,0,0}, - {29971,29925,29928 ,12955,12907,12910 ,0,0,0}, {29924,29971,29928 ,12906,12955,12910 ,0,0,0}, - {29929,29926,29972 ,12911,12908,12956 ,0,0,0}, {29928,29925,29927 ,12910,12907,12909 ,0,0,0}, - {29702,29701,29885 ,12677,12676,12867 ,0,0,0}, {29927,29926,29929 ,12909,12908,12911 ,0,0,0}, - {29700,29835,29701 ,12675,12817,12676 ,0,0,0}, {29929,29972,29885 ,12911,12956,12867 ,0,0,0}, - {29973,29709,29703 ,12957,12684,12678 ,0,0,0}, {29972,29702,29885 ,12956,12677,12867 ,0,0,0}, - {29700,29974,29975 ,12675,12958,12959 ,0,0,0}, {29976,29930,29705 ,12960,12912,12680 ,0,0,0}, - {29886,29701,29835 ,12868,12676,12817 ,0,0,0}, {29705,29835,29975 ,12680,12817,12959 ,0,0,0}, - {29704,29976,29705 ,12679,12960,12680 ,0,0,0}, {29637,29636,29888 ,12582,12581,12870 ,0,0,0}, - {29932,29639,29635 ,12914,12584,12580 ,0,0,0}, {29933,29635,29640 ,12915,12580,12585 ,0,0,0}, - {29888,29933,29887 ,12870,12915,12869 ,0,0,0}, {29642,29933,29640 ,12587,12915,12585 ,0,0,0}, - {29641,29936,29934 ,12586,12918,12916 ,0,0,0}, {29934,29642,29641 ,12916,12587,12586 ,0,0,0}, - {29936,29977,29935 ,12918,12961,12917 ,0,0,0}, {29978,29937,29977 ,12962,12919,12961 ,0,0,0}, - {29890,29934,29935 ,12872,12916,12917 ,0,0,0}, {29937,29935,29977 ,12919,12917,12961 ,0,0,0}, - {29979,29938,29978 ,12963,12920,12962 ,0,0,0}, {29938,29937,29978 ,12920,12919,12962 ,0,0,0}, - {29980,29939,29979 ,12964,12921,12963 ,0,0,0}, {29939,29938,29979 ,12921,12920,12963 ,0,0,0}, - {29981,29940,29980 ,12965,12922,12964 ,0,0,0}, {29940,29939,29980 ,12922,12921,12964 ,0,0,0}, - {29982,29941,29981 ,12966,12923,12965 ,0,0,0}, {29941,29940,29981 ,12923,12922,12965 ,0,0,0}, - {29983,29942,29982 ,12967,12924,12966 ,0,0,0}, {29942,29941,29982 ,12924,12923,12966 ,0,0,0}, - {29984,29896,29983 ,12968,12878,12967 ,0,0,0}, {29896,29942,29983 ,12878,12924,12967 ,0,0,0}, - {29985,29897,29984 ,12969,12879,12968 ,0,0,0}, {29897,29896,29984 ,12879,12878,12968 ,0,0,0}, - {29944,29945,29985 ,12927,12928,12969 ,0,0,0}, {29897,29985,29945 ,12879,12969,12928 ,0,0,0}, - {29944,29943,29946 ,12927,12926,12929 ,0,0,0}, {29986,29947,29943 ,12970,12930,12926 ,0,0,0}, - {29901,29945,29946 ,12883,12928,12929 ,0,0,0}, {29947,29946,29943 ,12930,12929,12926 ,0,0,0}, - {29987,29948,29986 ,12971,12931,12970 ,0,0,0}, {29948,29947,29986 ,12931,12930,12970 ,0,0,0}, - {29988,29949,29987 ,12972,12932,12971 ,0,0,0}, {29949,29948,29987 ,12932,12931,12971 ,0,0,0}, - {29989,29856,29988 ,12973,12838,12972 ,0,0,0}, {29856,29949,29988 ,12838,12932,12972 ,0,0,0}, - {29952,29854,29989 ,12935,12836,12973 ,0,0,0}, {29854,29856,29989 ,12836,12838,12973 ,0,0,0}, - {29952,29167,29950 ,12935,12974,12933 ,0,0,0}, {29854,29952,29951 ,12836,12935,12934 ,0,0,0}, - {29990,29953,29950 ,12975,12936,12933 ,0,0,0}, {29953,29951,29950 ,12936,12934,12933 ,0,0,0}, - {29991,29954,29990 ,12976,12937,12975 ,0,0,0}, {29954,29953,29990 ,12937,12936,12975 ,0,0,0}, - {29992,29955,29991 ,12977,12938,12976 ,0,0,0}, {29955,29954,29991 ,12938,12937,12976 ,0,0,0}, - {29993,29864,29992 ,12978,12846,12977 ,0,0,0}, {29864,29955,29992 ,12846,12938,12977 ,0,0,0}, - {29994,29862,29993 ,12979,12844,12978 ,0,0,0}, {29862,29864,29993 ,12844,12846,12978 ,0,0,0}, - {29956,29958,29994 ,12939,12942,12979 ,0,0,0}, {29862,29994,29958 ,12844,12979,12942 ,0,0,0}, - {29956,29957,29959 ,12939,12941,12943 ,0,0,0}, {29995,29960,29957 ,12980,12944,12941 ,0,0,0}, - {29912,29958,29959 ,12894,12942,12943 ,0,0,0}, {29960,29959,29957 ,12944,12943,12941 ,0,0,0}, - {29996,29961,29995 ,12981,12945,12980 ,0,0,0}, {29961,29960,29995 ,12945,12944,12980 ,0,0,0}, - {29997,29962,29996 ,12982,12946,12981 ,0,0,0}, {29962,29961,29996 ,12946,12945,12981 ,0,0,0}, - {29998,29915,29997 ,12983,12897,12982 ,0,0,0}, {29915,29962,29997 ,12897,12946,12982 ,0,0,0}, - {29965,29916,29998 ,12949,12898,12983 ,0,0,0}, {29916,29915,29998 ,12898,12897,12983 ,0,0,0}, - {29965,29189,29963 ,12949,12984,12947 ,0,0,0}, {29916,29965,29964 ,12898,12949,12948 ,0,0,0}, - {29999,29966,29963 ,12985,12950,12947 ,0,0,0}, {29966,29964,29963 ,12950,12948,12947 ,0,0,0}, - {30000,29967,29999 ,12986,12951,12985 ,0,0,0}, {29967,29966,29999 ,12951,12950,12985 ,0,0,0}, - {30001,29968,30000 ,12987,12952,12986 ,0,0,0}, {29968,29967,30000 ,12952,12951,12986 ,0,0,0}, - {30002,29969,30001 ,12988,12953,12987 ,0,0,0}, {29969,29968,30001 ,12953,12952,12987 ,0,0,0}, - {30003,29970,30002 ,12989,12954,12988 ,0,0,0}, {29970,29969,30002 ,12954,12953,12988 ,0,0,0}, - {30004,29971,30003 ,12990,12955,12989 ,0,0,0}, {29971,29970,30003 ,12955,12954,12989 ,0,0,0}, - {30005,29925,30004 ,12991,12907,12990 ,0,0,0}, {29925,29971,30004 ,12907,12955,12990 ,0,0,0}, - {30006,29926,30005 ,12992,12908,12991 ,0,0,0}, {29926,29925,30005 ,12908,12907,12991 ,0,0,0}, - {30007,29972,30006 ,12993,12956,12992 ,0,0,0}, {29972,29926,30006 ,12956,12908,12992 ,0,0,0}, - {30008,29702,30007 ,12994,12677,12993 ,0,0,0}, {29702,29972,30007 ,12677,12956,12993 ,0,0,0}, - {30008,29974,29700 ,12994,12958,12675 ,0,0,0}, {29700,29702,30008 ,12675,12677,12994 ,0,0,0}, - {29974,29973,29975 ,12958,12957,12959 ,0,0,0}, {29705,29975,29703 ,12680,12959,12678 ,0,0,0}, - {29835,29700,29975 ,12817,12675,12959 ,0,0,0}, {29973,29703,29975 ,12957,12678,12959 ,0,0,0}, - {29704,29703,29708 ,12679,12678,12683 ,0,0,0}, {29933,29636,29635 ,12915,12581,12580 ,0,0,0}, - {29635,29636,29932 ,12580,12581,12914 ,0,0,0}, {29261,29259,29640 ,12740,12995,12585 ,0,0,0}, - {29640,29259,29641 ,12585,12995,12586 ,0,0,0}, {29259,29127,29641 ,12995,12996,12586 ,0,0,0}, - {29641,29127,29936 ,12586,12996,12918 ,0,0,0}, {29127,29126,29936 ,12996,12997,12918 ,0,0,0}, - {29936,29126,29977 ,12918,12997,12961 ,0,0,0}, {29126,29147,29977 ,12997,12998,12961 ,0,0,0}, - {29977,29147,29978 ,12961,12998,12962 ,0,0,0}, {29147,29117,29978 ,12998,12999,12962 ,0,0,0}, - {29978,29117,29979 ,12962,12999,12963 ,0,0,0}, {29117,29152,29979 ,12999,13000,12963 ,0,0,0}, - {29979,29152,29980 ,12963,13000,12964 ,0,0,0}, {29152,29149,29980 ,13000,13001,12964 ,0,0,0}, - {29980,29149,29981 ,12964,13001,12965 ,0,0,0}, {29149,29154,29981 ,13001,13002,12965 ,0,0,0}, - {29154,29156,29982 ,13002,13003,12966 ,0,0,0}, {29154,29982,29981 ,13002,12966,12965 ,0,0,0}, - {29156,29122,29983 ,13003,13004,12967 ,0,0,0}, {29156,29983,29982 ,13003,12967,12966 ,0,0,0}, - {29122,29121,29984 ,13004,13005,12968 ,0,0,0}, {29122,29984,29983 ,13004,12968,12967 ,0,0,0}, - {29121,29158,29985 ,13005,13006,12969 ,0,0,0}, {29121,29985,29984 ,13005,12969,12968 ,0,0,0}, - {29158,29253,29944 ,13006,13007,12927 ,0,0,0}, {29158,29944,29985 ,13006,12927,12969 ,0,0,0}, - {29252,29944,29253 ,12925,12927,13007 ,0,0,0}, {29252,29161,29943 ,12925,13008,12926 ,0,0,0}, - {29943,29161,29986 ,12926,13008,12970 ,0,0,0}, {29161,29166,29986 ,13008,13009,12970 ,0,0,0}, - {29986,29166,29987 ,12970,13009,12971 ,0,0,0}, {29166,29164,29987 ,13009,13010,12971 ,0,0,0}, - {29164,29163,29988 ,13010,13011,12972 ,0,0,0}, {29164,29988,29987 ,13010,12972,12971 ,0,0,0}, - {29163,29251,29989 ,13011,13012,12973 ,0,0,0}, {29163,29989,29988 ,13011,12973,12972 ,0,0,0}, - {29251,29167,29952 ,13012,12974,12935 ,0,0,0}, {29251,29952,29989 ,13012,12935,12973 ,0,0,0}, - {29167,29250,29950 ,12974,13013,12933 ,0,0,0}, {29250,29246,29950 ,13013,13014,12933 ,0,0,0}, - {29950,29246,29990 ,12933,13014,12975 ,0,0,0}, {29246,29171,29990 ,13014,13015,12975 ,0,0,0}, - {29990,29171,29991 ,12975,13015,12976 ,0,0,0}, {29171,29173,29991 ,13015,13016,12976 ,0,0,0}, - {29173,29178,29992 ,13016,13017,12977 ,0,0,0}, {29173,29992,29991 ,13016,12977,12976 ,0,0,0}, - {29178,29176,29993 ,13017,13018,12978 ,0,0,0}, {29178,29993,29992 ,13017,12978,12977 ,0,0,0}, - {29176,29175,29994 ,13018,13019,12979 ,0,0,0}, {29176,29994,29993 ,13018,12979,12978 ,0,0,0}, - {29175,29244,29956 ,13019,13020,12939 ,0,0,0}, {29175,29956,29994 ,13019,12939,12979 ,0,0,0}, - {29243,29956,29244 ,12940,12939,13020 ,0,0,0}, {29243,29180,29957 ,12940,13021,12941 ,0,0,0}, - {29957,29180,29995 ,12941,13021,12980 ,0,0,0}, {29180,29187,29995 ,13021,13022,12980 ,0,0,0}, - {29187,29186,29996 ,13022,13023,12981 ,0,0,0}, {29187,29996,29995 ,13022,12981,12980 ,0,0,0}, - {29186,29185,29997 ,13023,13024,12982 ,0,0,0}, {29186,29997,29996 ,13023,12982,12981 ,0,0,0}, - {29185,29240,29998 ,13024,13025,12983 ,0,0,0}, {29185,29998,29997 ,13024,12983,12982 ,0,0,0}, - {29240,29189,29965 ,13025,12984,12949 ,0,0,0}, {29240,29965,29998 ,13025,12949,12983 ,0,0,0}, - {29189,29188,29963 ,12984,13026,12947 ,0,0,0}, {29188,29194,29963 ,13026,13027,12947 ,0,0,0}, - {29963,29194,29999 ,12947,13027,12985 ,0,0,0}, {29194,29193,29999 ,13027,13028,12985 ,0,0,0}, - {29999,29193,30000 ,12985,13028,12986 ,0,0,0}, {29193,29198,30000 ,13028,13029,12986 ,0,0,0}, - {30000,29198,30001 ,12986,13029,12987 ,0,0,0}, {29198,29196,30001 ,13029,13030,12987 ,0,0,0}, - {29196,29203,30002 ,13030,13031,12988 ,0,0,0}, {29196,30002,30001 ,13030,12988,12987 ,0,0,0}, - {29203,29200,30003 ,13031,13032,12989 ,0,0,0}, {29203,30003,30002 ,13031,12989,12988 ,0,0,0}, - {29200,29207,30004 ,13032,13033,12990 ,0,0,0}, {29200,30004,30003 ,13032,12990,12989 ,0,0,0}, - {29207,29204,30005 ,13033,13034,12991 ,0,0,0}, {29207,30005,30004 ,13033,12991,12990 ,0,0,0}, - {29204,29209,30006 ,13034,13035,12992 ,0,0,0}, {29204,30006,30005 ,13034,12992,12991 ,0,0,0}, - {29209,29208,30007 ,13035,13036,12993 ,0,0,0}, {29209,30007,30006 ,13035,12993,12992 ,0,0,0}, - {29208,29222,30008 ,13036,13037,12994 ,0,0,0}, {29208,30008,30007 ,13036,12994,12993 ,0,0,0}, - {29222,29221,29974 ,13037,13038,12958 ,0,0,0}, {29222,29974,30008 ,13037,12958,12994 ,0,0,0}, - {29221,29215,29973 ,13038,13039,12957 ,0,0,0}, {29221,29973,29974 ,13038,12957,12958 ,0,0,0}, - {29215,29217,29709 ,13039,12690,12684 ,0,0,0}, {29215,29709,29973 ,13039,12684,12957 ,0,0,0}, - {29710,29709,29217 ,12685,12684,12690 ,0,0,0}, {30009,30010,30011 ,13040,13041,13042 ,0,0,0}, - {30012,29086,29085 ,13043,13044,13045 ,0,0,0}, {30012,30013,29086 ,13043,13046,13044 ,0,0,0}, - {30014,29084,30015 ,13047,13048,13049 ,0,0,0}, {29085,30014,30012 ,13045,13047,13043 ,0,0,0}, - {30014,29085,29084 ,13047,13045,13048 ,0,0,0}, {29082,30016,29083 ,13050,13051,13052 ,0,0,0}, - {28997,29083,30016 ,13053,13052,13051 ,0,0,0}, {28997,30016,30015 ,13053,13051,13049 ,0,0,0}, - {29082,29081,30017 ,13050,13054,13055 ,0,0,0}, {28997,30015,29084 ,13053,13049,13048 ,0,0,0}, - {30016,29082,30017 ,13051,13050,13055 ,0,0,0}, {29087,29086,30013 ,13056,13044,13046 ,0,0,0}, - {30018,29080,30019 ,13057,13058,13059 ,0,0,0}, {30018,29081,29080 ,13057,13054,13058 ,0,0,0}, - {30020,30021,30022 ,13060,13061,13062 ,0,0,0}, {30023,30019,29079 ,13063,13059,13064 ,0,0,0}, - {29080,29079,30019 ,13058,13064,13059 ,0,0,0}, {30024,30023,29078 ,13065,13063,13066 ,0,0,0}, - {30024,29077,30025 ,13065,13067,13068 ,0,0,0}, {29078,29077,30024 ,13066,13067,13065 ,0,0,0}, - {30025,29077,29076 ,13068,13067,13069 ,0,0,0}, {29079,29078,30023 ,13064,13066,13063 ,0,0,0}, - {30017,29081,30018 ,13055,13054,13057 ,0,0,0}, {29075,29074,30026 ,13070,13071,13072 ,0,0,0}, - {29075,30027,29076 ,13070,13073,13069 ,0,0,0}, {29073,30028,29074 ,13074,13075,13071 ,0,0,0}, - {29075,30026,30027 ,13070,13072,13073 ,0,0,0}, {29073,29072,30029 ,13074,13076,13077 ,0,0,0}, - {30029,30028,29073 ,13077,13075,13074 ,0,0,0}, {29710,28768,28765 ,13078,11682,13079 ,0,0,0}, - {29074,30028,30026 ,13071,13075,13072 ,0,0,0}, {30029,29072,30030 ,13077,13076,13080 ,0,0,0}, - {30031,29710,28765 ,13081,13078,13079 ,0,0,0}, {30032,30033,30029 ,13082,13083,13077 ,0,0,0}, - {30034,30035,30036 ,13084,13085,13086 ,0,0,0}, {30037,30038,30039 ,13087,13088,13089 ,0,0,0}, - {30040,30041,29930 ,13090,13091,13092 ,0,0,0}, {30040,29704,30042 ,13090,13093,13094 ,0,0,0}, - {30030,29072,29071 ,13080,13076,13095 ,0,0,0}, {30031,28765,30036 ,13081,13079,13086 ,0,0,0}, - {30033,30043,30039 ,13083,13096,13089 ,0,0,0}, {29931,30041,30044 ,13097,13091,13098 ,0,0,0}, - {30045,29758,30046 ,13099,13100,13101 ,0,0,0}, {28634,30047,29071 ,13102,13103,13095 ,0,0,0}, - {30048,29837,30044 ,13104,13105,13098 ,0,0,0}, {29838,29837,30048 ,13106,13105,13104 ,0,0,0}, - {29931,30044,29792 ,13097,13098,13107 ,0,0,0}, {28639,29719,28637 ,11553,13108,13109 ,0,0,0}, - {28634,30045,30047 ,13102,13099,13103 ,0,0,0}, {29758,30045,29719 ,13100,13099,13108 ,0,0,0}, - {30045,28637,29719 ,13099,13109,13108 ,0,0,0}, {30043,30049,30039 ,13096,13110,13089 ,0,0,0}, - {30027,30025,29076 ,13073,13068,13069 ,0,0,0}, {30050,29087,30013 ,13111,13056,13046 ,0,0,0}, - {29088,30050,30051 ,13112,13111,13113 ,0,0,0}, {30050,29088,29087 ,13111,13112,13056 ,0,0,0}, - {30052,29047,30051 ,13114,13115,13113 ,0,0,0}, {29088,30051,29047 ,13112,13113,13115 ,0,0,0}, - {29089,30052,29090 ,13116,13114,13117 ,0,0,0}, {29089,29047,30052 ,13116,13115,13114 ,0,0,0}, - {29091,29090,30053 ,13118,13117,13119 ,0,0,0}, {30052,30053,29090 ,13114,13119,13117 ,0,0,0}, - {30054,29092,29091 ,13120,13121,13118 ,0,0,0}, {29091,30053,30054 ,13118,13119,13120 ,0,0,0}, - {30054,30055,29092 ,13120,13122,13121 ,0,0,0}, {29092,30055,29093 ,13121,13122,13123 ,0,0,0}, - {29093,30055,30056 ,13123,13122,13124 ,0,0,0}, {30057,30058,30059 ,13125,13126,13127 ,0,0,0}, - {30060,29094,30056 ,13128,13129,13124 ,0,0,0}, {29093,30056,29094 ,13123,13124,13129 ,0,0,0}, - {30060,30061,29095 ,13128,13130,13131 ,0,0,0}, {29095,29094,30060 ,13131,13129,13128 ,0,0,0}, - {29012,29096,30061 ,13132,13133,13130 ,0,0,0}, {30061,29096,29095 ,13130,13133,13131 ,0,0,0}, - {30062,29097,29012 ,13134,13135,13132 ,0,0,0}, {29012,30061,30062 ,13132,13130,13134 ,0,0,0}, - {29097,30063,29098 ,13135,13136,13137 ,0,0,0}, {30063,29097,30062 ,13136,13135,13134 ,0,0,0}, - {29099,29098,30064 ,13138,13137,13139 ,0,0,0}, {30063,30064,29098 ,13136,13139,13137 ,0,0,0}, - {30065,29099,30064 ,13140,13138,13139 ,0,0,0}, {30065,29100,29099 ,13140,13141,13138 ,0,0,0}, - {30065,30066,29100 ,13140,13142,13141 ,0,0,0}, {30067,30068,30069 ,13143,13144,13145 ,0,0,0}, - {29101,30066,30070 ,13146,13142,13147 ,0,0,0}, {30066,29101,29100 ,13142,13146,13141 ,0,0,0}, - {30071,29058,30070 ,13148,13149,13147 ,0,0,0}, {29101,30070,29058 ,13146,13147,13149 ,0,0,0}, - {29102,30071,29103 ,13150,13148,13151 ,0,0,0}, {29102,29058,30071 ,13150,13149,13148 ,0,0,0}, - {29104,29103,30072 ,13152,13151,13153 ,0,0,0}, {30071,30072,29103 ,13148,13153,13151 ,0,0,0}, - {30073,29105,29104 ,13154,13155,13152 ,0,0,0}, {29104,30072,30073 ,13152,13153,13154 ,0,0,0}, - {29105,30074,29106 ,13155,13156,13157 ,0,0,0}, {30074,29105,30073 ,13156,13155,13154 ,0,0,0}, - {29107,29106,30075 ,13158,13157,13159 ,0,0,0}, {30074,30075,29106 ,13156,13159,13157 ,0,0,0}, - {30076,29107,30075 ,13160,13158,13159 ,0,0,0}, {30076,29108,29107 ,13160,13161,13158 ,0,0,0}, - {30076,30077,29108 ,13160,13162,13161 ,0,0,0}, {30078,30079,30080 ,13163,13164,13165 ,0,0,0}, - {29109,30077,30079 ,13166,13162,13164 ,0,0,0}, {30077,29109,29108 ,13162,13166,13161 ,0,0,0}, - {30081,29110,30079 ,13167,13168,13164 ,0,0,0}, {29109,30079,29110 ,13166,13164,13168 ,0,0,0}, - {30082,30083,30084 ,13169,13170,13171 ,0,0,0}, {29111,29110,30081 ,13172,13168,13167 ,0,0,0}, - {30085,30086,30087 ,13173,13174,13175 ,0,0,0}, {30088,30089,30090 ,13176,13177,13178 ,0,0,0}, - {30091,30085,30092 ,13179,13173,13180 ,0,0,0}, {30093,30094,30095 ,13181,13182,13183 ,0,0,0}, - {30096,30097,30098 ,13184,13185,13186 ,0,0,0}, {30093,30099,30100 ,13181,13187,13188 ,0,0,0}, - {30101,30102,30103 ,13189,13190,13191 ,0,0,0}, {30100,30099,30104 ,13188,13187,13192 ,0,0,0}, - {29112,29111,30105 ,13193,13172,13194 ,0,0,0}, {28702,30104,30099 ,11616,13192,13187 ,0,0,0}, - {30106,30107,30108 ,13195,13196,13197 ,0,0,0}, {29111,30081,30105 ,13172,13167,13194 ,0,0,0}, - {29112,30090,29113 ,13193,13178,13198 ,0,0,0}, {30078,30081,30079 ,13163,13167,13164 ,0,0,0}, - {29114,29113,30107 ,13199,13198,13196 ,0,0,0}, {30090,30107,29113 ,13178,13196,13198 ,0,0,0}, - {29115,30106,29116 ,13200,13195,13201 ,0,0,0}, {29114,30107,30106 ,13199,13196,13195 ,0,0,0}, - {29116,30109,28736 ,13201,13202,11650 ,0,0,0}, {30106,30109,29116 ,13195,13202,13201 ,0,0,0}, - {28637,30045,28634 ,13109,13099,13102 ,0,0,0}, {29796,30046,29758 ,13203,13101,13100 ,0,0,0}, - {29796,30048,30046 ,13203,13104,13101 ,0,0,0}, {30047,30030,29071 ,13103,13080,13095 ,0,0,0}, - {30047,30046,30110 ,13103,13101,13204 ,0,0,0}, {30111,30028,30033 ,13205,13075,13083 ,0,0,0}, - {30030,30110,30032 ,13080,13204,13082 ,0,0,0}, {30112,30026,30111 ,13206,13072,13205 ,0,0,0}, - {30032,30029,30030 ,13082,13077,13080 ,0,0,0}, {30113,30027,30112 ,13207,13073,13206 ,0,0,0}, - {30033,30028,30029 ,13083,13075,13077 ,0,0,0}, {30114,30025,30113 ,13208,13068,13207 ,0,0,0}, - {30111,30026,30028 ,13205,13072,13075 ,0,0,0}, {30115,30024,30114 ,13209,13065,13208 ,0,0,0}, - {30112,30027,30026 ,13206,13073,13072 ,0,0,0}, {30116,30023,30115 ,13210,13063,13209 ,0,0,0}, - {30113,30025,30027 ,13207,13068,13073 ,0,0,0}, {30117,30019,30116 ,13211,13059,13210 ,0,0,0}, - {30114,30024,30025 ,13208,13065,13068 ,0,0,0}, {30117,30118,30018 ,13211,13212,13057 ,0,0,0}, - {30023,30024,30115 ,13063,13065,13209 ,0,0,0}, {30119,30017,30118 ,13213,13055,13212 ,0,0,0}, - {30019,30023,30116 ,13059,13063,13210 ,0,0,0}, {30020,30016,30119 ,13060,13051,13213 ,0,0,0}, - {30018,30019,30117 ,13057,13059,13211 ,0,0,0}, {30120,30015,30020 ,13214,13049,13060 ,0,0,0}, - {30017,30018,30118 ,13055,13057,13212 ,0,0,0}, {30121,30014,30120 ,13215,13047,13214 ,0,0,0}, - {30016,30017,30119 ,13051,13055,13213 ,0,0,0}, {30122,30012,30121 ,13216,13043,13215 ,0,0,0}, - {30020,30015,30016 ,13060,13049,13051 ,0,0,0}, {30123,30013,30122 ,13217,13046,13216 ,0,0,0}, - {30120,30014,30015 ,13214,13047,13049 ,0,0,0}, {30123,30124,30050 ,13217,13218,13111 ,0,0,0}, - {30012,30014,30121 ,13043,13047,13215 ,0,0,0}, {30125,30051,30124 ,13219,13113,13218 ,0,0,0}, - {30013,30012,30122 ,13046,13043,13216 ,0,0,0}, {30126,30052,30125 ,13220,13114,13219 ,0,0,0}, - {30050,30013,30123 ,13111,13046,13217 ,0,0,0}, {30127,30053,30126 ,13221,13119,13220 ,0,0,0}, - {30051,30050,30124 ,13113,13111,13218 ,0,0,0}, {30128,30054,30127 ,13222,13120,13221 ,0,0,0}, - {30052,30051,30125 ,13114,13113,13219 ,0,0,0}, {30129,30055,30128 ,13223,13122,13222 ,0,0,0}, - {30126,30053,30052 ,13220,13119,13114 ,0,0,0}, {30129,30130,30056 ,13223,13224,13124 ,0,0,0}, - {30054,30053,30127 ,13120,13119,13221 ,0,0,0}, {30131,30060,30130 ,13225,13128,13224 ,0,0,0}, - {30055,30054,30128 ,13122,13120,13222 ,0,0,0}, {30057,30061,30131 ,13125,13130,13225 ,0,0,0}, - {30056,30055,30129 ,13124,13122,13223 ,0,0,0}, {30132,30062,30057 ,13226,13134,13125 ,0,0,0}, - {30060,30056,30130 ,13128,13124,13224 ,0,0,0}, {30133,30063,30132 ,13227,13136,13226 ,0,0,0}, - {30061,30060,30131 ,13130,13128,13225 ,0,0,0}, {30134,30064,30133 ,13228,13139,13227 ,0,0,0}, - {30057,30062,30061 ,13125,13134,13130 ,0,0,0}, {30135,30065,30134 ,13229,13140,13228 ,0,0,0}, - {30132,30063,30062 ,13226,13136,13134 ,0,0,0}, {30135,30136,30066 ,13229,13230,13142 ,0,0,0}, - {30064,30063,30133 ,13139,13136,13227 ,0,0,0}, {30137,30070,30136 ,13231,13147,13230 ,0,0,0}, - {30065,30064,30134 ,13140,13139,13228 ,0,0,0}, {30138,30071,30137 ,13232,13148,13231 ,0,0,0}, - {30066,30065,30135 ,13142,13140,13229 ,0,0,0}, {30139,30072,30138 ,13233,13153,13232 ,0,0,0}, - {30070,30066,30136 ,13147,13142,13230 ,0,0,0}, {30140,30073,30139 ,13234,13154,13233 ,0,0,0}, - {30137,30071,30070 ,13231,13148,13147 ,0,0,0}, {30141,30074,30140 ,13235,13156,13234 ,0,0,0}, - {30138,30072,30071 ,13232,13153,13148 ,0,0,0}, {30142,30075,30141 ,13236,13159,13235 ,0,0,0}, - {30139,30073,30072 ,13233,13154,13153 ,0,0,0}, {30143,30076,30142 ,13237,13160,13236 ,0,0,0}, - {30140,30074,30073 ,13234,13156,13154 ,0,0,0}, {30143,30080,30077 ,13237,13165,13162 ,0,0,0}, - {30075,30074,30141 ,13159,13156,13235 ,0,0,0}, {30081,30078,30144 ,13167,13163,13238 ,0,0,0}, - {30076,30075,30142 ,13160,13159,13236 ,0,0,0}, {30098,30089,30102 ,13186,13177,13190 ,0,0,0}, - {30077,30076,30143 ,13162,13160,13237 ,0,0,0}, {30088,30105,30144 ,13176,13194,13238 ,0,0,0}, - {30079,30077,30080 ,13164,13162,13165 ,0,0,0}, {30088,30144,30145 ,13176,13238,13239 ,0,0,0}, - {30097,30108,30098 ,13185,13197,13186 ,0,0,0}, {30105,30090,29112 ,13194,13178,13193 ,0,0,0}, - {30105,30081,30144 ,13194,13167,13238 ,0,0,0}, {30146,30109,30147 ,13240,13202,13241 ,0,0,0}, - {30105,30088,30090 ,13194,13176,13178 ,0,0,0}, {30108,30107,30089 ,13197,13196,13177 ,0,0,0}, - {30148,30149,30109 ,13242,13243,13202 ,0,0,0}, {29114,30106,29115 ,13199,13195,13200 ,0,0,0}, - {30106,30147,30109 ,13195,13241,13202 ,0,0,0}, {28736,30109,30149 ,11650,13202,13243 ,0,0,0}, - {30045,30046,30047 ,13099,13101,13103 ,0,0,0}, {29838,30048,29796 ,13106,13104,13203 ,0,0,0}, - {29930,29976,30040 ,13092,13244,13090 ,0,0,0}, {30047,30110,30030 ,13103,13204,13080 ,0,0,0}, - {30110,30048,30150 ,13204,13104,13245 ,0,0,0}, {30039,30038,30111 ,13089,13088,13205 ,0,0,0}, - {30043,30032,30150 ,13096,13082,13245 ,0,0,0}, {30038,30151,30112 ,13088,13246,13206 ,0,0,0}, - {30043,30033,30032 ,13096,13083,13082 ,0,0,0}, {30151,30152,30113 ,13246,13247,13207 ,0,0,0}, - {30039,30111,30033 ,13089,13205,13083 ,0,0,0}, {30152,30153,30114 ,13247,13248,13208 ,0,0,0}, - {30038,30112,30111 ,13088,13206,13205 ,0,0,0}, {30153,30154,30115 ,13248,13249,13209 ,0,0,0}, - {30151,30113,30112 ,13246,13207,13206 ,0,0,0}, {30154,30155,30116 ,13249,13250,13210 ,0,0,0}, - {30152,30114,30113 ,13247,13208,13207 ,0,0,0}, {30155,30156,30117 ,13250,13251,13211 ,0,0,0}, - {30153,30115,30114 ,13248,13209,13208 ,0,0,0}, {30156,30157,30118 ,13251,13252,13212 ,0,0,0}, - {30154,30116,30115 ,13249,13210,13209 ,0,0,0}, {30157,30021,30119 ,13252,13061,13213 ,0,0,0}, - {30117,30116,30155 ,13211,13210,13250 ,0,0,0}, {30158,30159,30160 ,13253,13254,13255 ,0,0,0}, - {30118,30117,30156 ,13212,13211,13251 ,0,0,0}, {30022,30159,30120 ,13062,13254,13214 ,0,0,0}, - {30119,30118,30157 ,13213,13212,13252 ,0,0,0}, {30159,30158,30121 ,13254,13253,13215 ,0,0,0}, - {30020,30119,30021 ,13060,13213,13061 ,0,0,0}, {30158,30161,30122 ,13253,13256,13216 ,0,0,0}, - {30022,30120,30020 ,13062,13214,13060 ,0,0,0}, {30161,30162,30123 ,13256,13257,13217 ,0,0,0}, - {30159,30121,30120 ,13254,13215,13214 ,0,0,0}, {30162,30163,30124 ,13257,13258,13218 ,0,0,0}, - {30158,30122,30121 ,13253,13216,13215 ,0,0,0}, {30163,30164,30125 ,13258,13259,13219 ,0,0,0}, - {30123,30122,30161 ,13217,13216,13256 ,0,0,0}, {30010,30126,30164 ,13041,13220,13259 ,0,0,0}, - {30124,30123,30162 ,13218,13217,13257 ,0,0,0}, {30010,30009,30127 ,13041,13040,13221 ,0,0,0}, - {30125,30124,30163 ,13219,13218,13258 ,0,0,0}, {30009,30165,30128 ,13040,13260,13222 ,0,0,0}, - {30164,30126,30125 ,13259,13220,13219 ,0,0,0}, {30165,30166,30129 ,13260,13261,13223 ,0,0,0}, - {30010,30127,30126 ,13041,13221,13220 ,0,0,0}, {30166,30167,30130 ,13261,13262,13224 ,0,0,0}, - {30009,30128,30127 ,13040,13222,13221 ,0,0,0}, {30167,30058,30131 ,13262,13126,13225 ,0,0,0}, - {30129,30128,30165 ,13223,13222,13260 ,0,0,0}, {30168,30169,30170 ,13263,13264,13265 ,0,0,0}, - {30130,30129,30166 ,13224,13223,13261 ,0,0,0}, {30059,30171,30132 ,13127,13266,13226 ,0,0,0}, - {30131,30130,30167 ,13225,13224,13262 ,0,0,0}, {30171,30172,30133 ,13266,13267,13227 ,0,0,0}, - {30057,30131,30058 ,13125,13225,13126 ,0,0,0}, {30172,30173,30134 ,13267,13268,13228 ,0,0,0}, - {30059,30132,30057 ,13127,13226,13125 ,0,0,0}, {30173,30174,30135 ,13268,13269,13229 ,0,0,0}, - {30171,30133,30132 ,13266,13227,13226 ,0,0,0}, {30174,30175,30136 ,13269,13270,13230 ,0,0,0}, - {30172,30134,30133 ,13267,13228,13227 ,0,0,0}, {30175,30176,30137 ,13270,13271,13231 ,0,0,0}, - {30135,30134,30173 ,13229,13228,13268 ,0,0,0}, {30176,30067,30138 ,13271,13143,13232 ,0,0,0}, - {30136,30135,30174 ,13230,13229,13269 ,0,0,0}, {30067,30069,30139 ,13143,13145,13233 ,0,0,0}, - {30137,30136,30175 ,13231,13230,13270 ,0,0,0}, {30069,30177,30140 ,13145,13272,13234 ,0,0,0}, - {30176,30138,30137 ,13271,13232,13231 ,0,0,0}, {30177,30178,30141 ,13272,13273,13235 ,0,0,0}, - {30067,30139,30138 ,13143,13233,13232 ,0,0,0}, {30178,30179,30142 ,13273,13274,13236 ,0,0,0}, - {30069,30140,30139 ,13145,13234,13233 ,0,0,0}, {30179,30180,30143 ,13274,13275,13237 ,0,0,0}, - {30177,30141,30140 ,13272,13235,13234 ,0,0,0}, {30180,30181,30080 ,13275,13276,13165 ,0,0,0}, - {30178,30142,30141 ,13273,13236,13235 ,0,0,0}, {30181,30182,30078 ,13276,13277,13163 ,0,0,0}, - {30179,30143,30142 ,13274,13237,13236 ,0,0,0}, {30182,30145,30144 ,13277,13239,13238 ,0,0,0}, - {30180,30080,30143 ,13275,13165,13237 ,0,0,0}, {30145,30102,30088 ,13239,13190,13176 ,0,0,0}, - {30078,30080,30181 ,13163,13165,13276 ,0,0,0}, {30183,30097,30184 ,13278,13185,13279 ,0,0,0}, - {30078,30182,30144 ,13163,13277,13238 ,0,0,0}, {30108,30097,30147 ,13197,13185,13241 ,0,0,0}, - {30096,30184,30097 ,13184,13279,13185 ,0,0,0}, {30090,30089,30107 ,13178,13177,13196 ,0,0,0}, - {30102,30089,30088 ,13190,13177,13176 ,0,0,0}, {30185,30146,30082 ,13280,13240,13169 ,0,0,0}, - {30146,30148,30109 ,13240,13242,13202 ,0,0,0}, {30106,30108,30147 ,13195,13197,13241 ,0,0,0}, - {30146,30147,30183 ,13240,13241,13278 ,0,0,0}, {30185,30148,30146 ,13280,13242,13240 ,0,0,0}, - {30046,30048,30110 ,13101,13104,13204 ,0,0,0}, {29792,30044,29837 ,13107,13098,13105 ,0,0,0}, - {28763,30036,28765 ,13281,13086,13079 ,0,0,0}, {30110,30150,30032 ,13204,13245,13082 ,0,0,0}, - {30150,30044,30186 ,13245,13098,13282 ,0,0,0}, {30038,30187,30151 ,13088,13283,13246 ,0,0,0}, - {30049,30043,30186 ,13110,13096,13282 ,0,0,0}, {30151,30188,30152 ,13246,13284,13247 ,0,0,0}, - {30049,30037,30039 ,13110,13087,13089 ,0,0,0}, {30189,30190,30191 ,13285,13286,13287 ,0,0,0}, - {30037,30187,30038 ,13087,13283,13088 ,0,0,0}, {30153,30152,30192 ,13248,13247,13288 ,0,0,0}, - {30187,30188,30151 ,13283,13284,13246 ,0,0,0}, {30154,30153,30191 ,13249,13248,13287 ,0,0,0}, - {30188,30192,30152 ,13284,13288,13247 ,0,0,0}, {30155,30154,30190 ,13250,13249,13286 ,0,0,0}, - {30192,30191,30153 ,13288,13287,13248 ,0,0,0}, {30156,30155,30193 ,13251,13250,13289 ,0,0,0}, - {30191,30190,30154 ,13287,13286,13249 ,0,0,0}, {30157,30156,30194 ,13252,13251,13290 ,0,0,0}, - {30190,30193,30155 ,13286,13289,13250 ,0,0,0}, {30021,30157,30195 ,13061,13252,13291 ,0,0,0}, - {30193,30194,30156 ,13289,13290,13251 ,0,0,0}, {30022,30021,30196 ,13062,13061,13292 ,0,0,0}, - {30194,30195,30157 ,13290,13291,13252 ,0,0,0}, {30159,30022,30197 ,13254,13062,13293 ,0,0,0}, - {30196,30021,30195 ,13292,13061,13291 ,0,0,0}, {30198,30199,30200 ,13294,13295,13296 ,0,0,0}, - {30197,30022,30196 ,13293,13062,13292 ,0,0,0}, {30161,30158,30201 ,13256,13253,13297 ,0,0,0}, - {30197,30160,30159 ,13293,13255,13254 ,0,0,0}, {30162,30161,30200 ,13257,13256,13296 ,0,0,0}, - {30160,30201,30158 ,13255,13297,13253 ,0,0,0}, {30163,30162,30199 ,13258,13257,13295 ,0,0,0}, - {30201,30200,30161 ,13297,13296,13256 ,0,0,0}, {30164,30163,30202 ,13259,13258,13298 ,0,0,0}, - {30200,30199,30162 ,13296,13295,13257 ,0,0,0}, {30010,30164,30203 ,13041,13259,13299 ,0,0,0}, - {30202,30163,30199 ,13298,13258,13295 ,0,0,0}, {30204,30205,30206 ,13300,13301,13302 ,0,0,0}, - {30203,30164,30202 ,13299,13259,13298 ,0,0,0}, {30165,30009,30207 ,13260,13040,13303 ,0,0,0}, - {30203,30011,30010 ,13299,13042,13041 ,0,0,0}, {30166,30165,30206 ,13261,13260,13302 ,0,0,0}, - {30011,30207,30009 ,13042,13303,13040 ,0,0,0}, {30167,30166,30205 ,13262,13261,13301 ,0,0,0}, - {30207,30206,30165 ,13303,13302,13260 ,0,0,0}, {30058,30167,30208 ,13126,13262,13304 ,0,0,0}, - {30206,30205,30166 ,13302,13301,13261 ,0,0,0}, {30059,30058,30209 ,13127,13126,13305 ,0,0,0}, - {30205,30208,30167 ,13301,13304,13262 ,0,0,0}, {30171,30059,30210 ,13266,13127,13306 ,0,0,0}, - {30209,30058,30208 ,13305,13126,13304 ,0,0,0}, {30172,30171,30211 ,13267,13266,13307 ,0,0,0}, - {30210,30059,30209 ,13306,13127,13305 ,0,0,0}, {30173,30172,30168 ,13268,13267,13263 ,0,0,0}, - {30210,30211,30171 ,13306,13307,13266 ,0,0,0}, {30174,30173,30170 ,13269,13268,13265 ,0,0,0}, - {30211,30168,30172 ,13307,13263,13267 ,0,0,0}, {30175,30174,30212 ,13270,13269,13308 ,0,0,0}, - {30168,30170,30173 ,13263,13265,13268 ,0,0,0}, {30176,30175,30213 ,13271,13270,13309 ,0,0,0}, - {30170,30212,30174 ,13265,13308,13269 ,0,0,0}, {30067,30176,30214 ,13143,13271,13310 ,0,0,0}, - {30213,30175,30212 ,13309,13270,13308 ,0,0,0}, {30215,30216,30217 ,13311,13312,13313 ,0,0,0}, - {30214,30176,30213 ,13310,13271,13309 ,0,0,0}, {30177,30069,30218 ,13272,13145,13314 ,0,0,0}, - {30214,30068,30067 ,13310,13144,13143 ,0,0,0}, {30178,30177,30217 ,13273,13272,13313 ,0,0,0}, - {30068,30218,30069 ,13144,13314,13145 ,0,0,0}, {30179,30178,30216 ,13274,13273,13312 ,0,0,0}, - {30218,30217,30177 ,13314,13313,13272 ,0,0,0}, {30180,30179,30219 ,13275,13274,13315 ,0,0,0}, - {30217,30216,30178 ,13313,13312,13273 ,0,0,0}, {30181,30180,30220 ,13276,13275,13316 ,0,0,0}, - {30216,30219,30179 ,13312,13315,13274 ,0,0,0}, {30182,30181,30221 ,13277,13276,13317 ,0,0,0}, - {30219,30220,30180 ,13315,13316,13275 ,0,0,0}, {30145,30182,30222 ,13239,13277,13318 ,0,0,0}, - {30220,30221,30181 ,13316,13317,13276 ,0,0,0}, {30102,30145,30103 ,13190,13239,13191 ,0,0,0}, - {30221,30222,30182 ,13317,13318,13277 ,0,0,0}, {30098,30102,30101 ,13186,13190,13189 ,0,0,0}, - {30222,30103,30145 ,13318,13191,13239 ,0,0,0}, {30083,30184,30086 ,13170,13279,13174 ,0,0,0}, - {30184,30223,30086 ,13279,13319,13174 ,0,0,0}, {30089,30098,30108 ,13177,13186,13197 ,0,0,0}, - {30101,30096,30098 ,13189,13184,13186 ,0,0,0}, {30224,30082,30084 ,13320,13169,13171 ,0,0,0}, - {30146,30183,30082 ,13240,13278,13169 ,0,0,0}, {30147,30097,30183 ,13241,13185,13278 ,0,0,0}, - {30183,30083,30082 ,13278,13170,13169 ,0,0,0}, {30185,30082,30224 ,13280,13169,13320 ,0,0,0}, - {30044,30150,30048 ,13098,13245,13104 ,0,0,0}, {29930,30041,29931 ,13092,13091,13097 ,0,0,0}, - {30049,30225,30037 ,13110,13321,13087 ,0,0,0}, {30150,30186,30043 ,13245,13282,13096 ,0,0,0}, - {30041,30226,30186 ,13091,13322,13282 ,0,0,0}, {30187,30037,30227 ,13283,13087,13323 ,0,0,0}, - {30226,30225,30049 ,13322,13321,13110 ,0,0,0}, {30188,30187,30228 ,13284,13283,13324 ,0,0,0}, - {30037,30225,30227 ,13087,13321,13323 ,0,0,0}, {30192,30188,30229 ,13288,13284,13325 ,0,0,0}, - {30187,30227,30228 ,13283,13323,13324 ,0,0,0}, {30191,30192,30230 ,13287,13288,13326 ,0,0,0}, - {30228,30229,30188 ,13324,13325,13284 ,0,0,0}, {30231,30193,30190 ,13327,13289,13286 ,0,0,0}, - {30229,30230,30192 ,13325,13326,13288 ,0,0,0}, {30232,30233,30234 ,13328,13329,13330 ,0,0,0}, - {30230,30189,30191 ,13326,13285,13287 ,0,0,0}, {30193,30235,30194 ,13289,13331,13290 ,0,0,0}, - {30189,30231,30190 ,13285,13327,13286 ,0,0,0}, {30194,30233,30195 ,13290,13329,13291 ,0,0,0}, - {30231,30235,30193 ,13327,13331,13289 ,0,0,0}, {30195,30232,30196 ,13291,13328,13292 ,0,0,0}, - {30235,30233,30194 ,13331,13329,13290 ,0,0,0}, {30196,30236,30197 ,13292,13332,13293 ,0,0,0}, - {30233,30232,30195 ,13329,13328,13291 ,0,0,0}, {30197,30237,30160 ,13293,13333,13255 ,0,0,0}, - {30232,30236,30196 ,13328,13332,13292 ,0,0,0}, {30201,30160,30238 ,13297,13255,13334 ,0,0,0}, - {30236,30237,30197 ,13332,13333,13293 ,0,0,0}, {30200,30201,30239 ,13296,13297,13335 ,0,0,0}, - {30237,30238,30160 ,13333,13334,13255 ,0,0,0}, {30240,30241,30242 ,13336,13337,13338 ,0,0,0}, - {30238,30239,30201 ,13334,13335,13297 ,0,0,0}, {30199,30243,30202 ,13295,13339,13298 ,0,0,0}, - {30239,30198,30200 ,13335,13294,13296 ,0,0,0}, {30202,30244,30203 ,13298,13340,13299 ,0,0,0}, - {30198,30243,30199 ,13294,13339,13295 ,0,0,0}, {30203,30245,30011 ,13299,13341,13042 ,0,0,0}, - {30243,30244,30202 ,13339,13340,13298 ,0,0,0}, {30207,30011,30246 ,13303,13042,13342 ,0,0,0}, - {30244,30245,30203 ,13340,13341,13299 ,0,0,0}, {30206,30207,30247 ,13302,13303,13343 ,0,0,0}, - {30245,30246,30011 ,13341,13342,13042 ,0,0,0}, {30248,30249,30250 ,13344,13345,13346 ,0,0,0}, - {30246,30247,30207 ,13342,13343,13303 ,0,0,0}, {30205,30251,30208 ,13301,13347,13304 ,0,0,0}, - {30247,30204,30206 ,13343,13300,13302 ,0,0,0}, {30208,30252,30209 ,13304,13348,13305 ,0,0,0}, - {30204,30251,30205 ,13300,13347,13301 ,0,0,0}, {30209,30253,30210 ,13305,13349,13306 ,0,0,0}, - {30251,30252,30208 ,13347,13348,13304 ,0,0,0}, {30210,30254,30211 ,13306,13350,13307 ,0,0,0}, - {30252,30253,30209 ,13348,13349,13305 ,0,0,0}, {30168,30211,30255 ,13263,13307,13351 ,0,0,0}, - {30253,30254,30210 ,13349,13350,13306 ,0,0,0}, {30256,30257,30258 ,13352,13353,13354 ,0,0,0}, - {30254,30255,30211 ,13350,13351,13307 ,0,0,0}, {30170,30259,30212 ,13265,13355,13308 ,0,0,0}, - {30255,30169,30168 ,13351,13264,13263 ,0,0,0}, {30212,30257,30213 ,13308,13353,13309 ,0,0,0}, - {30169,30259,30170 ,13264,13355,13265 ,0,0,0}, {30213,30256,30214 ,13309,13352,13310 ,0,0,0}, - {30259,30257,30212 ,13355,13353,13308 ,0,0,0}, {30214,30260,30068 ,13310,13356,13144 ,0,0,0}, - {30257,30256,30213 ,13353,13352,13309 ,0,0,0}, {30218,30068,30261 ,13314,13144,13357 ,0,0,0}, - {30256,30260,30214 ,13352,13356,13310 ,0,0,0}, {30217,30218,30262 ,13313,13314,13358 ,0,0,0}, - {30260,30261,30068 ,13356,13357,13144 ,0,0,0}, {30263,30219,30216 ,13359,13315,13312 ,0,0,0}, - {30261,30262,30218 ,13357,13358,13314 ,0,0,0}, {30264,30265,30266 ,13360,13361,13362 ,0,0,0}, - {30262,30215,30217 ,13358,13311,13313 ,0,0,0}, {30219,30267,30220 ,13315,13363,13316 ,0,0,0}, - {30215,30263,30216 ,13311,13359,13312 ,0,0,0}, {30220,30265,30221 ,13316,13361,13317 ,0,0,0}, - {30263,30267,30219 ,13359,13363,13315 ,0,0,0}, {30221,30264,30222 ,13317,13360,13318 ,0,0,0}, - {30267,30265,30220 ,13363,13361,13316 ,0,0,0}, {30222,30268,30103 ,13318,13364,13191 ,0,0,0}, - {30265,30264,30221 ,13361,13360,13317 ,0,0,0}, {30103,30269,30101 ,13191,13365,13189 ,0,0,0}, - {30264,30268,30222 ,13360,13364,13318 ,0,0,0}, {30101,30270,30096 ,13189,13366,13184 ,0,0,0}, - {30268,30269,30103 ,13364,13365,13191 ,0,0,0}, {30096,30223,30184 ,13184,13319,13279 ,0,0,0}, - {30270,30101,30269 ,13366,13189,13365 ,0,0,0}, {30271,30272,30084 ,13367,13368,13171 ,0,0,0}, - {30096,30270,30223 ,13184,13366,13319 ,0,0,0}, {30273,30084,30272 ,13369,13171,13368 ,0,0,0}, - {30274,30224,30084 ,13370,13320,13171 ,0,0,0}, {30183,30184,30083 ,13278,13279,13170 ,0,0,0}, - {30083,30271,30084 ,13170,13367,13171 ,0,0,0}, {30273,30274,30084 ,13369,13370,13171 ,0,0,0}, - {30041,30186,30044 ,13091,13282,13098 ,0,0,0}, {29704,30040,29976 ,13093,13090,13244 ,0,0,0}, - {30225,30275,30227 ,13321,13371,13323 ,0,0,0}, {30186,30226,30049 ,13282,13322,13110 ,0,0,0}, - {30040,30276,30226 ,13090,13372,13322 ,0,0,0}, {30228,30227,30277 ,13324,13323,13373 ,0,0,0}, - {30225,30276,30275 ,13321,13372,13371 ,0,0,0}, {30229,30228,30278 ,13325,13324,13374 ,0,0,0}, - {30227,30275,30277 ,13323,13371,13373 ,0,0,0}, {30230,30229,30279 ,13326,13325,13375 ,0,0,0}, - {30228,30277,30278 ,13324,13373,13374 ,0,0,0}, {30189,30230,30280 ,13285,13326,13376 ,0,0,0}, - {30229,30278,30279 ,13325,13374,13375 ,0,0,0}, {30231,30189,30281 ,13327,13285,13377 ,0,0,0}, - {30230,30279,30280 ,13326,13375,13376 ,0,0,0}, {30235,30231,30282 ,13331,13327,13378 ,0,0,0}, - {30189,30280,30281 ,13285,13376,13377 ,0,0,0}, {30233,30235,30283 ,13329,13331,13379 ,0,0,0}, - {30281,30282,30231 ,13377,13378,13327 ,0,0,0}, {30284,30285,30286 ,13380,13381,13382 ,0,0,0}, - {30282,30283,30235 ,13378,13379,13331 ,0,0,0}, {30232,30287,30236 ,13328,13383,13332 ,0,0,0}, - {30283,30234,30233 ,13379,13330,13329 ,0,0,0}, {30236,30286,30237 ,13332,13382,13333 ,0,0,0}, - {30234,30287,30232 ,13330,13383,13328 ,0,0,0}, {30237,30288,30238 ,13333,13384,13334 ,0,0,0}, - {30287,30286,30236 ,13383,13382,13332 ,0,0,0}, {30239,30238,30289 ,13335,13334,13385 ,0,0,0}, - {30286,30288,30237 ,13382,13384,13333 ,0,0,0}, {30198,30239,30290 ,13294,13335,13386 ,0,0,0}, - {30238,30288,30289 ,13334,13384,13385 ,0,0,0}, {30243,30198,30291 ,13339,13294,13387 ,0,0,0}, - {30239,30289,30290 ,13335,13385,13386 ,0,0,0}, {30244,30243,30292 ,13340,13339,13388 ,0,0,0}, - {30290,30291,30198 ,13386,13387,13294 ,0,0,0}, {30244,30293,30245 ,13340,13389,13341 ,0,0,0}, - {30291,30292,30243 ,13387,13388,13339 ,0,0,0}, {30245,30241,30246 ,13341,13337,13342 ,0,0,0}, - {30292,30293,30244 ,13388,13389,13340 ,0,0,0}, {30247,30246,30294 ,13343,13342,13390 ,0,0,0}, - {30293,30241,30245 ,13389,13337,13341 ,0,0,0}, {30204,30247,30295 ,13300,13343,13391 ,0,0,0}, - {30246,30241,30294 ,13342,13337,13390 ,0,0,0}, {30251,30204,30296 ,13347,13300,13392 ,0,0,0}, - {30247,30294,30295 ,13343,13390,13391 ,0,0,0}, {30252,30251,30297 ,13348,13347,13393 ,0,0,0}, - {30295,30296,30204 ,13391,13392,13300 ,0,0,0}, {30252,30298,30253 ,13348,13394,13349 ,0,0,0}, - {30296,30297,30251 ,13392,13393,13347 ,0,0,0}, {30253,30249,30254 ,13349,13345,13350 ,0,0,0}, - {30297,30298,30252 ,13393,13394,13348 ,0,0,0}, {30255,30254,30299 ,13351,13350,13395 ,0,0,0}, - {30298,30249,30253 ,13394,13345,13349 ,0,0,0}, {30169,30255,30300 ,13264,13351,13396 ,0,0,0}, - {30254,30249,30299 ,13350,13345,13395 ,0,0,0}, {30259,30169,30301 ,13355,13264,13397 ,0,0,0}, - {30255,30299,30300 ,13351,13395,13396 ,0,0,0}, {30257,30259,30302 ,13353,13355,13398 ,0,0,0}, - {30300,30301,30169 ,13396,13397,13264 ,0,0,0}, {30303,30304,30305 ,13399,13400,13401 ,0,0,0}, - {30301,30302,30259 ,13397,13398,13355 ,0,0,0}, {30256,30306,30260 ,13352,13402,13356 ,0,0,0}, - {30302,30258,30257 ,13398,13354,13353 ,0,0,0}, {30260,30305,30261 ,13356,13401,13357 ,0,0,0}, - {30258,30306,30256 ,13354,13402,13352 ,0,0,0}, {30262,30261,30307 ,13358,13357,13403 ,0,0,0}, - {30306,30305,30260 ,13402,13401,13356 ,0,0,0}, {30215,30262,30308 ,13311,13358,13404 ,0,0,0}, - {30261,30305,30307 ,13357,13401,13403 ,0,0,0}, {30263,30215,30309 ,13359,13311,13405 ,0,0,0}, - {30262,30307,30308 ,13358,13403,13404 ,0,0,0}, {30267,30263,30310 ,13363,13359,13406 ,0,0,0}, - {30215,30308,30309 ,13311,13404,13405 ,0,0,0}, {30265,30267,30311 ,13361,13363,13407 ,0,0,0}, - {30309,30310,30263 ,13405,13406,13359 ,0,0,0}, {30312,30268,30264 ,13408,13364,13360 ,0,0,0}, - {30310,30311,30267 ,13406,13407,13363 ,0,0,0}, {30313,30314,30315 ,13409,13410,13411 ,0,0,0}, - {30311,30266,30265 ,13407,13362,13361 ,0,0,0}, {30268,30316,30269 ,13364,13412,13365 ,0,0,0}, - {30266,30312,30264 ,13362,13408,13360 ,0,0,0}, {30269,30315,30270 ,13365,13411,13366 ,0,0,0}, - {30312,30316,30268 ,13408,13412,13364 ,0,0,0}, {30270,30317,30223 ,13366,13413,13319 ,0,0,0}, - {30316,30315,30269 ,13412,13411,13365 ,0,0,0}, {30223,30087,30086 ,13319,13175,13174 ,0,0,0}, - {30315,30317,30270 ,13411,13413,13366 ,0,0,0}, {30086,30085,30271 ,13174,13173,13367 ,0,0,0}, - {30087,30223,30317 ,13175,13319,13413 ,0,0,0}, {30272,30318,30095 ,13368,13414,13183 ,0,0,0}, - {30319,30320,30272 ,13415,13416,13368 ,0,0,0}, {30083,30086,30271 ,13170,13174,13367 ,0,0,0}, - {30271,30318,30272 ,13367,13414,13368 ,0,0,0}, {30273,30272,30320 ,13369,13368,13416 ,0,0,0}, - {30041,30040,30226 ,13091,13090,13322 ,0,0,0}, {29708,30042,29704 ,13417,13094,13093 ,0,0,0}, - {30277,30275,30035 ,13373,13371,13085 ,0,0,0}, {30226,30276,30225 ,13322,13372,13321 ,0,0,0}, - {30042,30321,30276 ,13094,13418,13372 ,0,0,0}, {30278,30277,30322 ,13374,13373,13419 ,0,0,0}, - {30275,30321,30035 ,13371,13418,13085 ,0,0,0}, {30323,30322,30324 ,13420,13419,13421 ,0,0,0}, - {30277,30035,30322 ,13373,13085,13419 ,0,0,0}, {30323,30325,30279 ,13420,13422,13375 ,0,0,0}, - {30279,30278,30323 ,13375,13374,13420 ,0,0,0}, {30325,30326,30280 ,13422,13423,13376 ,0,0,0}, - {30280,30279,30325 ,13376,13375,13422 ,0,0,0}, {30326,30327,30281 ,13423,13424,13377 ,0,0,0}, - {30281,30280,30326 ,13377,13376,13423 ,0,0,0}, {30327,30328,30282 ,13424,13425,13378 ,0,0,0}, - {30282,30281,30327 ,13378,13377,13424 ,0,0,0}, {30328,30329,30283 ,13425,13426,13379 ,0,0,0}, - {30283,30282,30328 ,13379,13378,13425 ,0,0,0}, {30329,30330,30234 ,13426,13427,13330 ,0,0,0}, - {30234,30283,30329 ,13330,13379,13426 ,0,0,0}, {30330,30284,30287 ,13427,13380,13383 ,0,0,0}, - {30234,30330,30287 ,13330,13427,13383 ,0,0,0}, {28751,30331,30332 ,13428,13429,13430 ,0,0,0}, - {30287,30284,30286 ,13383,13380,13382 ,0,0,0}, {30288,30333,30289 ,13384,13431,13385 ,0,0,0}, - {30286,30285,30288 ,13382,13381,13384 ,0,0,0}, {30334,30333,30332 ,13432,13431,13430 ,0,0,0}, - {30285,30333,30288 ,13381,13431,13384 ,0,0,0}, {30334,30335,30290 ,13432,13433,13386 ,0,0,0}, - {30290,30289,30334 ,13386,13385,13432 ,0,0,0}, {30335,30336,30291 ,13433,13434,13387 ,0,0,0}, - {30291,30290,30335 ,13387,13386,13433 ,0,0,0}, {30336,30337,30292 ,13434,13435,13388 ,0,0,0}, - {30292,30291,30336 ,13388,13387,13434 ,0,0,0}, {30337,30242,30293 ,13435,13338,13389 ,0,0,0}, - {30292,30337,30293 ,13388,13435,13389 ,0,0,0}, {30338,30339,30340 ,13436,13437,13438 ,0,0,0}, - {30293,30242,30241 ,13389,13338,13337 ,0,0,0}, {30240,30339,30294 ,13336,13437,13390 ,0,0,0}, - {30241,30240,30294 ,13337,13336,13390 ,0,0,0}, {30339,30341,30295 ,13437,13439,13391 ,0,0,0}, - {30295,30294,30339 ,13391,13390,13437 ,0,0,0}, {30341,30342,30296 ,13439,13440,13392 ,0,0,0}, - {30296,30295,30341 ,13392,13391,13439 ,0,0,0}, {30342,30343,30297 ,13440,13441,13393 ,0,0,0}, - {30297,30296,30342 ,13393,13392,13440 ,0,0,0}, {30343,30250,30298 ,13441,13346,13394 ,0,0,0}, - {30297,30343,30298 ,13393,13441,13394 ,0,0,0}, {30344,28742,30345 ,13442,13443,13444 ,0,0,0}, - {30298,30250,30249 ,13394,13346,13345 ,0,0,0}, {30300,30299,30346 ,13396,13395,13445 ,0,0,0}, - {30249,30248,30299 ,13345,13344,13395 ,0,0,0}, {30347,30346,30344 ,13446,13445,13442 ,0,0,0}, - {30299,30248,30346 ,13395,13344,13445 ,0,0,0}, {30347,30348,30301 ,13446,13447,13397 ,0,0,0}, - {30301,30300,30347 ,13397,13396,13446 ,0,0,0}, {30348,30349,30302 ,13447,13448,13398 ,0,0,0}, - {30302,30301,30348 ,13398,13397,13447 ,0,0,0}, {30349,30350,30258 ,13448,13449,13354 ,0,0,0}, - {30258,30302,30349 ,13354,13398,13448 ,0,0,0}, {30350,30303,30306 ,13449,13399,13402 ,0,0,0}, - {30258,30350,30306 ,13354,13449,13402 ,0,0,0}, {30351,30352,30353 ,13450,13451,13452 ,0,0,0}, - {30306,30303,30305 ,13402,13399,13401 ,0,0,0}, {30304,30352,30307 ,13400,13451,13403 ,0,0,0}, - {30305,30304,30307 ,13401,13400,13403 ,0,0,0}, {30352,30354,30308 ,13451,13453,13404 ,0,0,0}, - {30308,30307,30352 ,13404,13403,13451 ,0,0,0}, {30354,30355,30309 ,13453,13454,13405 ,0,0,0}, - {30309,30308,30354 ,13405,13404,13453 ,0,0,0}, {30355,30356,30310 ,13454,13455,13406 ,0,0,0}, - {30310,30309,30355 ,13406,13405,13454 ,0,0,0}, {30356,30357,30311 ,13455,13456,13407 ,0,0,0}, - {30311,30310,30356 ,13407,13406,13455 ,0,0,0}, {30357,30358,30266 ,13456,13457,13362 ,0,0,0}, - {30266,30311,30357 ,13362,13407,13456 ,0,0,0}, {30358,30359,30312 ,13457,13458,13408 ,0,0,0}, - {30312,30266,30358 ,13408,13362,13457 ,0,0,0}, {30359,30313,30316 ,13458,13409,13412 ,0,0,0}, - {30312,30359,30316 ,13408,13458,13412 ,0,0,0}, {30317,30314,30360 ,13413,13410,13459 ,0,0,0}, - {30316,30313,30315 ,13412,13409,13411 ,0,0,0}, {30092,30085,30087 ,13180,13173,13175 ,0,0,0}, - {30315,30314,30317 ,13411,13410,13413 ,0,0,0}, {30091,30318,30085 ,13179,13414,13173 ,0,0,0}, - {30317,30360,30087 ,13413,13459,13175 ,0,0,0}, {30099,30093,30361 ,13187,13181,13460 ,0,0,0}, - {30360,30092,30087 ,13459,13180,13175 ,0,0,0}, {30091,30362,30363 ,13179,13461,13462 ,0,0,0}, - {30095,30319,30272 ,13183,13415,13368 ,0,0,0}, {30271,30085,30318 ,13367,13173,13414 ,0,0,0}, - {30095,30318,30363 ,13183,13414,13462 ,0,0,0}, {30094,30319,30095 ,13182,13415,13183 ,0,0,0}, - {30040,30042,30276 ,13090,13094,13372 ,0,0,0}, {29708,29710,30031 ,13417,13078,13081 ,0,0,0}, - {30321,30031,30036 ,13418,13081,13086 ,0,0,0}, {30276,30321,30275 ,13372,13418,13371 ,0,0,0}, - {30035,30321,30036 ,13085,13418,13086 ,0,0,0}, {30034,30324,30322 ,13084,13421,13419 ,0,0,0}, - {30322,30035,30034 ,13419,13085,13084 ,0,0,0}, {30324,30364,30323 ,13421,13463,13420 ,0,0,0}, - {30365,30325,30364 ,13464,13422,13463 ,0,0,0}, {30278,30322,30323 ,13374,13419,13420 ,0,0,0}, - {30325,30323,30364 ,13422,13420,13463 ,0,0,0}, {30366,30326,30365 ,13465,13423,13464 ,0,0,0}, - {30326,30325,30365 ,13423,13422,13464 ,0,0,0}, {30367,30327,30366 ,13466,13424,13465 ,0,0,0}, - {30327,30326,30366 ,13424,13423,13465 ,0,0,0}, {30368,30328,30367 ,13467,13425,13466 ,0,0,0}, - {30328,30327,30367 ,13425,13424,13466 ,0,0,0}, {30369,30329,30368 ,13468,13426,13467 ,0,0,0}, - {30329,30328,30368 ,13426,13425,13467 ,0,0,0}, {30370,30330,30369 ,13469,13427,13468 ,0,0,0}, - {30330,30329,30369 ,13427,13426,13468 ,0,0,0}, {30371,30284,30370 ,13470,13380,13469 ,0,0,0}, - {30284,30330,30370 ,13380,13427,13469 ,0,0,0}, {30372,30285,30371 ,13471,13381,13470 ,0,0,0}, - {30285,30284,30371 ,13381,13380,13470 ,0,0,0}, {30332,30333,30372 ,13430,13431,13471 ,0,0,0}, - {30285,30372,30333 ,13381,13471,13431 ,0,0,0}, {30332,30331,30334 ,13430,13429,13432 ,0,0,0}, - {30373,30335,30331 ,13472,13433,13429 ,0,0,0}, {30289,30333,30334 ,13385,13431,13432 ,0,0,0}, - {30335,30334,30331 ,13433,13432,13429 ,0,0,0}, {30374,30336,30373 ,13473,13434,13472 ,0,0,0}, - {30336,30335,30373 ,13434,13433,13472 ,0,0,0}, {30375,30337,30374 ,13474,13435,13473 ,0,0,0}, - {30337,30336,30374 ,13435,13434,13473 ,0,0,0}, {30376,30242,30375 ,13475,13338,13474 ,0,0,0}, - {30242,30337,30375 ,13338,13435,13474 ,0,0,0}, {30340,30240,30376 ,13438,13336,13475 ,0,0,0}, - {30240,30242,30376 ,13336,13338,13475 ,0,0,0}, {30340,28659,30338 ,13438,13476,13436 ,0,0,0}, - {30240,30340,30339 ,13336,13438,13437 ,0,0,0}, {30377,30341,30338 ,13477,13439,13436 ,0,0,0}, - {30341,30339,30338 ,13439,13437,13436 ,0,0,0}, {30378,30342,30377 ,13478,13440,13477 ,0,0,0}, - {30342,30341,30377 ,13440,13439,13477 ,0,0,0}, {30379,30343,30378 ,13479,13441,13478 ,0,0,0}, - {30343,30342,30378 ,13441,13440,13478 ,0,0,0}, {30380,30250,30379 ,13480,13346,13479 ,0,0,0}, - {30250,30343,30379 ,13346,13441,13479 ,0,0,0}, {30381,30248,30380 ,13481,13344,13480 ,0,0,0}, - {30248,30250,30380 ,13344,13346,13480 ,0,0,0}, {30344,30346,30381 ,13442,13445,13481 ,0,0,0}, - {30248,30381,30346 ,13344,13481,13445 ,0,0,0}, {30344,30345,30347 ,13442,13444,13446 ,0,0,0}, - {30382,30348,30345 ,13482,13447,13444 ,0,0,0}, {30300,30346,30347 ,13396,13445,13446 ,0,0,0}, - {30348,30347,30345 ,13447,13446,13444 ,0,0,0}, {30383,30349,30382 ,13483,13448,13482 ,0,0,0}, - {30349,30348,30382 ,13448,13447,13482 ,0,0,0}, {30384,30350,30383 ,13484,13449,13483 ,0,0,0}, - {30350,30349,30383 ,13449,13448,13483 ,0,0,0}, {30385,30303,30384 ,13485,13399,13484 ,0,0,0}, - {30303,30350,30384 ,13399,13449,13484 ,0,0,0}, {30353,30304,30385 ,13452,13400,13485 ,0,0,0}, - {30304,30303,30385 ,13400,13399,13485 ,0,0,0}, {30353,28681,30351 ,13452,13486,13450 ,0,0,0}, - {30304,30353,30352 ,13400,13452,13451 ,0,0,0}, {30386,30354,30351 ,13487,13453,13450 ,0,0,0}, - {30354,30352,30351 ,13453,13451,13450 ,0,0,0}, {30387,30355,30386 ,13488,13454,13487 ,0,0,0}, - {30355,30354,30386 ,13454,13453,13487 ,0,0,0}, {30388,30356,30387 ,13489,13455,13488 ,0,0,0}, - {30356,30355,30387 ,13455,13454,13488 ,0,0,0}, {30389,30357,30388 ,13490,13456,13489 ,0,0,0}, - {30357,30356,30388 ,13456,13455,13489 ,0,0,0}, {30390,30358,30389 ,13491,13457,13490 ,0,0,0}, - {30358,30357,30389 ,13457,13456,13490 ,0,0,0}, {30391,30359,30390 ,13492,13458,13491 ,0,0,0}, - {30359,30358,30390 ,13458,13457,13491 ,0,0,0}, {30392,30313,30391 ,13493,13409,13492 ,0,0,0}, - {30313,30359,30391 ,13409,13458,13492 ,0,0,0}, {30393,30314,30392 ,13494,13410,13493 ,0,0,0}, - {30314,30313,30392 ,13410,13409,13493 ,0,0,0}, {30394,30360,30393 ,13495,13459,13494 ,0,0,0}, - {30360,30314,30393 ,13459,13410,13494 ,0,0,0}, {30395,30092,30394 ,13496,13180,13495 ,0,0,0}, - {30092,30360,30394 ,13180,13459,13495 ,0,0,0}, {30395,30362,30091 ,13496,13461,13179 ,0,0,0}, - {30091,30092,30395 ,13179,13180,13496 ,0,0,0}, {30362,30361,30363 ,13461,13460,13462 ,0,0,0}, - {30095,30363,30093 ,13183,13462,13181 ,0,0,0}, {30318,30091,30363 ,13414,13179,13462 ,0,0,0}, - {30361,30093,30363 ,13460,13181,13462 ,0,0,0}, {30094,30093,30100 ,13182,13181,13188 ,0,0,0}, - {30321,30042,30031 ,13418,13094,13081 ,0,0,0}, {30031,30042,29708 ,13081,13094,13417 ,0,0,0}, - {28763,28759,30036 ,13281,13497,13086 ,0,0,0}, {30036,28759,30034 ,13086,13497,13084 ,0,0,0}, - {28759,28758,30034 ,13497,13498,13084 ,0,0,0}, {30034,28758,30324 ,13084,13498,13421 ,0,0,0}, - {28758,28757,30324 ,13498,13499,13421 ,0,0,0}, {30324,28757,30364 ,13421,13499,13463 ,0,0,0}, - {28757,28620,30364 ,13499,13500,13463 ,0,0,0}, {30364,28620,30365 ,13463,13500,13464 ,0,0,0}, - {28620,28610,30365 ,13500,13501,13464 ,0,0,0}, {30365,28610,30366 ,13464,13501,13465 ,0,0,0}, - {28610,28643,30366 ,13501,13502,13465 ,0,0,0}, {30366,28643,30367 ,13465,13502,13466 ,0,0,0}, - {28643,28640,30367 ,13502,13503,13466 ,0,0,0}, {30367,28640,30368 ,13466,13503,13467 ,0,0,0}, - {28640,28645,30368 ,13503,13504,13467 ,0,0,0}, {28645,28648,30369 ,13504,13505,13468 ,0,0,0}, - {28645,30369,30368 ,13504,13468,13467 ,0,0,0}, {28648,28615,30370 ,13505,13506,13469 ,0,0,0}, - {28648,30370,30369 ,13505,13469,13468 ,0,0,0}, {28615,28614,30371 ,13506,13507,13470 ,0,0,0}, - {28615,30371,30370 ,13506,13470,13469 ,0,0,0}, {28614,28650,30372 ,13507,13508,13471 ,0,0,0}, - {28614,30372,30371 ,13507,13471,13470 ,0,0,0}, {28650,28752,30332 ,13508,13509,13430 ,0,0,0}, - {28650,30332,30372 ,13508,13430,13471 ,0,0,0}, {28751,30332,28752 ,13428,13430,13509 ,0,0,0}, - {28751,28653,30331 ,13428,13510,13429 ,0,0,0}, {30331,28653,30373 ,13429,13510,13472 ,0,0,0}, - {28653,28658,30373 ,13510,13511,13472 ,0,0,0}, {30373,28658,30374 ,13472,13511,13473 ,0,0,0}, - {28658,28656,30374 ,13511,13512,13473 ,0,0,0}, {28656,28655,30375 ,13512,13513,13474 ,0,0,0}, - {28656,30375,30374 ,13512,13474,13473 ,0,0,0}, {28655,28750,30376 ,13513,13514,13475 ,0,0,0}, - {28655,30376,30375 ,13513,13475,13474 ,0,0,0}, {28750,28659,30340 ,13514,13476,13438 ,0,0,0}, - {28750,30340,30376 ,13514,13438,13475 ,0,0,0}, {28659,28749,30338 ,13476,13515,13436 ,0,0,0}, - {28749,28745,30338 ,13515,13516,13436 ,0,0,0}, {30338,28745,30377 ,13436,13516,13477 ,0,0,0}, - {28745,28663,30377 ,13516,13517,13477 ,0,0,0}, {30377,28663,30378 ,13477,13517,13478 ,0,0,0}, - {28663,28665,30378 ,13517,13518,13478 ,0,0,0}, {28665,28670,30379 ,13518,13519,13479 ,0,0,0}, - {28665,30379,30378 ,13518,13479,13478 ,0,0,0}, {28670,28668,30380 ,13519,13520,13480 ,0,0,0}, - {28670,30380,30379 ,13519,13480,13479 ,0,0,0}, {28668,28667,30381 ,13520,13521,13481 ,0,0,0}, - {28668,30381,30380 ,13520,13481,13480 ,0,0,0}, {28667,28743,30344 ,13521,13522,13442 ,0,0,0}, - {28667,30344,30381 ,13521,13442,13481 ,0,0,0}, {28742,30344,28743 ,13443,13442,13522 ,0,0,0}, - {28742,28672,30345 ,13443,13523,13444 ,0,0,0}, {30345,28672,30382 ,13444,13523,13482 ,0,0,0}, - {28672,28679,30382 ,13523,13524,13482 ,0,0,0}, {28679,28678,30383 ,13524,13525,13483 ,0,0,0}, - {28679,30383,30382 ,13524,13483,13482 ,0,0,0}, {28678,28677,30384 ,13525,13526,13484 ,0,0,0}, - {28678,30384,30383 ,13525,13484,13483 ,0,0,0}, {28677,28739,30385 ,13526,13527,13485 ,0,0,0}, - {28677,30385,30384 ,13526,13485,13484 ,0,0,0}, {28739,28681,30353 ,13527,13486,13452 ,0,0,0}, - {28739,30353,30385 ,13527,13452,13485 ,0,0,0}, {28681,28680,30351 ,13486,13528,13450 ,0,0,0}, - {28680,28686,30351 ,13528,13529,13450 ,0,0,0}, {30351,28686,30386 ,13450,13529,13487 ,0,0,0}, - {28686,28685,30386 ,13529,13530,13487 ,0,0,0}, {30386,28685,30387 ,13487,13530,13488 ,0,0,0}, - {28685,28690,30387 ,13530,13531,13488 ,0,0,0}, {30387,28690,30388 ,13488,13531,13489 ,0,0,0}, - {28690,28688,30388 ,13531,13532,13489 ,0,0,0}, {28688,28696,30389 ,13532,13533,13490 ,0,0,0}, - {28688,30389,30388 ,13532,13490,13489 ,0,0,0}, {28696,28692,30390 ,13533,13534,13491 ,0,0,0}, - {28696,30390,30389 ,13533,13491,13490 ,0,0,0}, {28692,28694,30391 ,13534,13535,13492 ,0,0,0}, - {28692,30391,30390 ,13534,13492,13491 ,0,0,0}, {28694,28697,30392 ,13535,13536,13493 ,0,0,0}, - {28694,30392,30391 ,13535,13493,13492 ,0,0,0}, {28697,28699,30393 ,13536,13537,13494 ,0,0,0}, - {28697,30393,30392 ,13536,13494,13493 ,0,0,0}, {28699,28704,30394 ,13537,13538,13495 ,0,0,0}, - {28699,30394,30393 ,13537,13495,13494 ,0,0,0}, {28704,28710,30395 ,13538,13539,13496 ,0,0,0}, - {28704,30395,30394 ,13538,13496,13495 ,0,0,0}, {28710,28711,30362 ,13539,13540,13461 ,0,0,0}, - {28710,30362,30395 ,13539,13461,13496 ,0,0,0}, {28711,28709,30361 ,13540,13541,13460 ,0,0,0}, - {28711,30361,30362 ,13540,13460,13461 ,0,0,0}, {28709,28703,30099 ,13541,13542,13187 ,0,0,0}, - {28709,30099,30361 ,13541,13187,13460 ,0,0,0}, {30099,28703,28702 ,13187,13542,11616 ,0,0,0}, - {29932,29638,29659 ,13543,13543,13543 ,0,0,0}, {29268,29655,29264 ,13543,13543,13543 ,0,0,0}, - {29654,29659,29720 ,13543,13543,13543 ,0,0,0}, {29932,29659,29639 ,13543,13543,13543 ,0,0,0}, - {29654,29720,29797 ,13543,13543,13543 ,0,0,0}, {29639,29654,29269 ,13543,13543,13543 ,0,0,0}, - {29659,29654,29639 ,13543,13543,13543 ,0,0,0}, {29129,29264,29655 ,13543,13543,13543 ,0,0,0}, - {29268,29652,29649 ,13543,13543,13543 ,0,0,0}, {29135,29144,29479 ,13543,13543,13543 ,0,0,0}, - {29270,29129,29655 ,13543,13543,13543 ,0,0,0}, {29271,29270,29135 ,13543,13543,13543 ,0,0,0}, - {29270,29271,29260 ,13543,13543,13543 ,0,0,0}, {29142,29135,29479 ,13543,13543,13543 ,0,0,0}, - {29143,29144,29270 ,13543,13543,13543 ,0,0,0}, {29144,29135,29270 ,13543,13543,13543 ,0,0,0}, - {29657,29270,29655 ,13543,13543,13543 ,0,0,0}, {29657,29143,29270 ,13543,13543,13543 ,0,0,0}, - {29655,29268,29649 ,13543,13543,13543 ,0,0,0}, {29652,29268,29654 ,13543,13543,13543 ,0,0,0}, - {29269,29654,29267 ,13543,13543,13543 ,0,0,0}, {29268,29267,29654 ,13543,13543,13543 ,0,0,0}, - {30319,30094,30100 ,13544,13544,13544 ,0,0,0}, {30148,30185,28898 ,13544,13544,13544 ,0,0,0}, - {30104,30320,30100 ,13544,13544,13544 ,0,0,0}, {30224,30274,28814 ,13544,13544,13544 ,0,0,0}, - {30273,30320,30274 ,13544,13544,13544 ,0,0,0}, {30320,30104,28702 ,13544,13544,13544 ,0,0,0}, - {30319,30100,30320 ,13544,13544,13544 ,0,0,0}, {28814,30274,30320 ,13544,13544,13544 ,0,0,0}, - {30320,28702,28814 ,13544,13544,13544 ,0,0,0}, {28813,30224,28814 ,13544,13544,13544 ,0,0,0}, - {28813,28856,30224 ,13544,13544,13544 ,0,0,0}, {30185,30224,28898 ,13544,13544,13544 ,0,0,0}, - {28856,28898,30224 ,13544,13544,13544 ,0,0,0}, {30149,30148,28898 ,13544,13544,13544 ,0,0,0}, - {28942,28984,28943 ,13544,13544,13544 ,0,0,0}, {28943,30149,28898 ,13544,13544,13544 ,0,0,0}, - {30149,28943,28984 ,13544,13544,13544 ,0,0,0}, {28735,28983,28730 ,13544,13544,13544 ,0,0,0}, - {30149,28984,28736 ,13544,13544,13544 ,0,0,0}, {28984,28735,28734 ,13544,13544,13544 ,0,0,0}, - {28735,28984,28983 ,13544,13544,13544 ,0,0,0}, {28984,28734,28736 ,13544,13544,13544 ,0,0,0} -// M3abstandhalter20mm.prt - , {30396,30397,30398 ,17250,17251,17252 ,0,0,0}, {30398,30399,30400 ,17252,17253,17254 ,0,0,0}, - {30399,30401,30400 ,17253,17255,17254 ,0,0,0}, {30398,30400,30396 ,17252,17254,17250 ,0,0,0}, - {30402,30403,30404 ,17256,17257,17258 ,0,0,0}, {30404,30403,30401 ,17258,17257,17255 ,0,0,0}, - {30402,30405,30406 ,17256,17259,17260 ,0,0,0}, {30406,30403,30402 ,17260,17257,17256 ,0,0,0}, - {30406,30405,30407 ,17260,17259,17261 ,0,0,0}, {30407,30405,30408 ,17261,17259,17262 ,0,0,0}, - {30408,30409,30410 ,17262,17263,17264 ,0,0,0}, {30407,30408,30410 ,17261,17262,17264 ,0,0,0}, - {30401,30399,30404 ,17255,17253,17258 ,0,0,0}, {140,30411,30412 ,17265,82,17266 ,0,0,0}, - {140,30412,30409 ,17265,17266,17263 ,0,0,0}, {30409,30412,30410 ,17263,17266,17264 ,0,0,0}, - {30396,30413,30397 ,17250,17267,17251 ,0,0,0}, {30414,30413,30415 ,17268,17267,17269 ,0,0,0}, - {30413,30414,30397 ,17267,17268,17251 ,0,0,0}, {30416,30417,30415 ,17270,17271,17269 ,0,0,0}, - {30414,30415,30417 ,17268,17269,17271 ,0,0,0}, {30416,30418,30419 ,17270,17272,17273 ,0,0,0}, - {30419,30417,30416 ,17273,17271,17270 ,0,0,0}, {30420,30418,30421 ,17274,17272,17275 ,0,0,0}, - {30418,30420,30419 ,17272,17274,17273 ,0,0,0}, {30422,30423,30421 ,17276,17277,17275 ,0,0,0}, - {30420,30421,30423 ,17274,17275,17277 ,0,0,0}, {30422,30424,30425 ,17276,17278,17279 ,0,0,0}, - {30425,30423,30422 ,17279,17277,17276 ,0,0,0}, {126,30424,30426 ,17280,17278,17281 ,0,0,0}, - {30424,126,30425 ,17278,17280,17279 ,0,0,0}, {30422,30421,30427 ,17282,17283,17284 ,0,0,0}, - {30427,30424,30422 ,17284,17285,17282 ,0,0,0}, {30427,30426,30424 ,17284,17286,17285 ,0,0,0}, - {30427,30418,30416 ,17284,17287,17288 ,0,0,0}, {30421,30418,30427 ,17283,17287,17284 ,0,0,0}, - {30427,30415,30413 ,17284,17289,17290 ,0,0,0}, {30416,30415,30427 ,17288,17289,17284 ,0,0,0}, - {30413,30396,30427 ,17290,17291,17284 ,0,0,0}, {30401,30427,30400 ,17292,17284,17293 ,0,0,0}, - {30427,30396,30400 ,17284,17291,17293 ,0,0,0}, {30406,30427,30403 ,17294,17284,17295 ,0,0,0}, - {30427,30401,30403 ,17284,17292,17295 ,0,0,0}, {30410,30427,30407 ,17296,17284,17297 ,0,0,0}, - {30427,30406,30407 ,17284,17294,17297 ,0,0,0}, {30411,30427,30412 ,17298,17284,17299 ,0,0,0}, - {30427,30410,30412 ,17284,17296,17299 ,0,0,0}, {30428,30429,30430 ,17300,17301,17302 ,0,0,0}, - {30431,30432,30433 ,324,17303,17304 ,0,0,0}, {30434,30429,30435 ,17305,17301,17306 ,0,0,0}, - {30429,30434,30430 ,17301,17305,17302 ,0,0,0}, {30434,30435,30436 ,17305,17306,17307 ,0,0,0}, - {30437,30438,30436 ,17308,17309,17307 ,0,0,0}, {30436,30435,30437 ,17307,17306,17308 ,0,0,0}, - {30439,30438,30437 ,17310,17309,17308 ,0,0,0}, {30439,30440,30438 ,17310,82,17309 ,0,0,0}, - {30441,30428,30430 ,17311,17300,17302 ,0,0,0}, {30442,30443,30441 ,17312,17313,17311 ,0,0,0}, - {30428,30441,30443 ,17300,17311,17313 ,0,0,0}, {30444,30445,30443 ,17314,17315,17313 ,0,0,0}, - {30443,30442,30444 ,17313,17312,17314 ,0,0,0}, {30445,30446,30447 ,17315,17316,17317 ,0,0,0}, - {30446,30445,30444 ,17316,17315,17314 ,0,0,0}, {30431,30447,30448 ,324,17317,17318 ,0,0,0}, - {30446,30448,30447 ,17316,17318,17317 ,0,0,0}, {30449,30450,30451 ,17319,17320,17321 ,0,0,0}, - {30431,30448,30432 ,324,17318,17303 ,0,0,0}, {30452,30453,30454 ,17322,17323,17324 ,0,0,0}, - {30453,30449,30455 ,17323,17319,17325 ,0,0,0}, {30456,30457,30458 ,17326,17327,17328 ,0,0,0}, - {30459,30460,30457 ,17329,17330,17327 ,0,0,0}, {30461,30462,30463 ,17331,17332,17333 ,0,0,0}, - {30456,30463,30462 ,17326,17333,17332 ,0,0,0}, {30461,30464,30465 ,17331,4726,17334 ,0,0,0}, - {30465,30462,30461 ,17334,17332,17331 ,0,0,0}, {30460,30458,30457 ,17330,17328,17327 ,0,0,0}, - {30456,30458,30463 ,17326,17328,17333 ,0,0,0}, {30459,30453,30452 ,17329,17323,17322 ,0,0,0}, - {30459,30452,30460 ,17329,17322,17330 ,0,0,0}, {30449,30451,30455 ,17319,17321,17325 ,0,0,0}, - {30454,30453,30455 ,17324,17323,17325 ,0,0,0}, {30433,30450,30431 ,17304,17320,324 ,0,0,0}, - {30451,30450,30433 ,17321,17320,17304 ,0,0,0}, {30466,30467,30468 ,21,17335,17336 ,0,0,0}, - {30468,30469,30470 ,17336,17337,17338 ,0,0,0}, {30469,30471,30470 ,17337,17339,17338 ,0,0,0}, - {30468,30470,30466 ,17336,17338,21 ,0,0,0}, {30472,30473,30474 ,17340,17341,17342 ,0,0,0}, - {30474,30473,30471 ,17342,17341,17339 ,0,0,0}, {30472,30475,30476 ,17340,17343,17344 ,0,0,0}, - {30476,30473,30472 ,17344,17341,17340 ,0,0,0}, {30476,30475,30477 ,17344,17343,17345 ,0,0,0}, - {30477,30475,30478 ,17345,17343,17346 ,0,0,0}, {30478,30479,30480 ,17346,17347,17348 ,0,0,0}, - {30477,30478,30480 ,17345,17346,17348 ,0,0,0}, {30471,30469,30474 ,17339,17337,17342 ,0,0,0}, - {30481,30482,30483 ,8320,82,17349 ,0,0,0}, {30481,30483,30479 ,8320,17349,17347 ,0,0,0}, - {30479,30483,30480 ,17347,17349,17348 ,0,0,0}, {30466,30484,30467 ,21,17350,17335 ,0,0,0}, - {30485,30484,30486 ,17351,17350,17352 ,0,0,0}, {30484,30485,30467 ,17350,17351,17335 ,0,0,0}, - {30487,30488,30486 ,17353,17354,17352 ,0,0,0}, {30485,30486,30488 ,17351,17352,17354 ,0,0,0}, - {30487,30489,30490 ,17353,17355,17356 ,0,0,0}, {30490,30488,30487 ,17356,17354,17353 ,0,0,0}, - {30491,30489,30492 ,17357,17355,17358 ,0,0,0}, {30489,30491,30490 ,17355,17357,17356 ,0,0,0}, - {30493,30494,30492 ,17359,17360,17358 ,0,0,0}, {30491,30492,30494 ,17357,17358,17360 ,0,0,0}, - {30493,30495,30496 ,17359,17361,17362 ,0,0,0}, {30496,30494,30493 ,17362,17360,17359 ,0,0,0}, - {30497,30495,30498 ,126,17361,17363 ,0,0,0}, {30495,30497,30496 ,17361,126,17362 ,0,0,0}, - {30493,30492,30499 ,17364,17365,17366 ,0,0,0}, {30499,30495,30493 ,17366,17367,17364 ,0,0,0}, - {30499,30498,30495 ,17366,17368,17367 ,0,0,0}, {30499,30489,30487 ,17366,17369,17370 ,0,0,0}, - {30492,30489,30499 ,17365,17369,17366 ,0,0,0}, {30499,30486,30484 ,17366,17371,17372 ,0,0,0}, - {30487,30486,30499 ,17370,17371,17366 ,0,0,0}, {30484,30466,30499 ,17372,17373,17366 ,0,0,0}, - {30471,30499,30470 ,17374,17366,17375 ,0,0,0}, {30499,30466,30470 ,17366,17373,17375 ,0,0,0}, - {30476,30499,30473 ,17376,17366,17377 ,0,0,0}, {30499,30471,30473 ,17366,17374,17377 ,0,0,0}, - {30480,30499,30477 ,17378,17366,17379 ,0,0,0}, {30499,30476,30477 ,17366,17376,17379 ,0,0,0}, - {30482,30499,30483 ,17380,17366,17381 ,0,0,0}, {30499,30480,30483 ,17366,17378,17381 ,0,0,0}, - {30500,30501,30502 ,17382,17383,17384 ,0,0,0}, {30503,30504,30505 ,21,7309,17385 ,0,0,0}, - {30506,30501,30507 ,17386,17383,17387 ,0,0,0}, {30501,30506,30502 ,17383,17386,17384 ,0,0,0}, - {30506,30507,30508 ,17386,17387,17388 ,0,0,0}, {30509,30510,30508 ,17389,17390,17388 ,0,0,0}, - {30508,30507,30509 ,17388,17387,17389 ,0,0,0}, {30511,30510,30509 ,17391,17390,17389 ,0,0,0}, - {30511,30512,30510 ,17391,17392,17390 ,0,0,0}, {30513,30500,30502 ,17393,17382,17384 ,0,0,0}, - {30514,30515,30513 ,17394,17395,17393 ,0,0,0}, {30500,30513,30515 ,17382,17393,17395 ,0,0,0}, - {30516,30517,30515 ,17396,17397,17395 ,0,0,0}, {30515,30514,30516 ,17395,17394,17396 ,0,0,0}, - {30517,30518,30519 ,17397,17398,17399 ,0,0,0}, {30518,30517,30516 ,17398,17397,17396 ,0,0,0}, - {30503,30519,30520 ,21,17399,17400 ,0,0,0}, {30518,30520,30519 ,17398,17400,17399 ,0,0,0}, - {30521,30522,30523 ,17401,17402,17403 ,0,0,0}, {30503,30520,30504 ,21,17400,7309 ,0,0,0}, - {30524,30525,30526 ,17404,17405,17406 ,0,0,0}, {30525,30521,30527 ,17405,17401,17407 ,0,0,0}, - {30528,30529,30530 ,17408,17409,17410 ,0,0,0}, {30531,30532,30529 ,17411,17412,17409 ,0,0,0}, - {30533,30534,30535 ,17413,17414,17415 ,0,0,0}, {30528,30535,30534 ,17408,17415,17414 ,0,0,0}, - {30533,30536,30537 ,17413,126,17416 ,0,0,0}, {30537,30534,30533 ,17416,17414,17413 ,0,0,0}, - {30532,30530,30529 ,17412,17410,17409 ,0,0,0}, {30528,30530,30535 ,17408,17410,17415 ,0,0,0}, - {30531,30525,30524 ,17411,17405,17404 ,0,0,0}, {30531,30524,30532 ,17411,17404,17412 ,0,0,0}, - {30521,30523,30527 ,17401,17403,17407 ,0,0,0}, {30526,30525,30527 ,17406,17405,17407 ,0,0,0}, - {30505,30522,30503 ,17385,17402,21 ,0,0,0}, {30523,30522,30505 ,17403,17402,17385 ,0,0,0}, - {30538,30429,30539 ,17417,17417,17417 ,0,0,0}, {30540,30541,30429 ,17417,17417,17417 ,0,0,0}, - {30429,30541,30539 ,17417,17417,17417 ,0,0,0}, {30538,30539,30542 ,17417,17417,17417 ,0,0,0}, - {30543,30544,30432 ,730,730,730 ,0,0,0}, {30545,30455,30546 ,730,730,730 ,0,0,0}, - {30547,126,30440 ,730,730,730 ,0,0,0}, {30548,30423,30425 ,730,730,730 ,0,0,0}, - {30549,30436,30550 ,730,730,730 ,0,0,0}, {30434,30549,30551 ,730,730,730 ,0,0,0}, - {30551,30430,30434 ,730,730,730 ,0,0,0}, {30552,30441,30551 ,730,730,730 ,0,0,0}, - {30436,30549,30434 ,730,730,730 ,0,0,0}, {30438,126,30550 ,730,730,730 ,0,0,0}, - {30438,30550,30436 ,730,730,730 ,0,0,0}, {30552,30553,30442 ,730,730,730 ,0,0,0}, - {30438,30440,126 ,730,730,730 ,0,0,0}, {30444,30554,30446 ,730,730,730 ,0,0,0}, - {30442,30553,30444 ,730,730,730 ,0,0,0}, {30555,30419,30420 ,730,730,730 ,0,0,0}, - {30417,30419,30556 ,730,730,730 ,0,0,0}, {30432,30544,30433 ,730,730,730 ,0,0,0}, - {30557,30414,30558 ,730,730,730 ,0,0,0}, {30559,30397,30414 ,730,730,730 ,0,0,0}, - {30451,30433,30546 ,730,730,730 ,0,0,0}, {30560,30561,30545 ,730,730,730 ,0,0,0}, - {30398,30562,30399 ,730,730,730 ,0,0,0}, {30397,30563,30398 ,730,730,730 ,0,0,0}, - {30460,30452,30561 ,730,730,730 ,0,0,0}, {30561,30454,30455 ,730,730,730 ,0,0,0}, - {30404,30564,30565 ,730,730,730 ,0,0,0}, {30564,30399,30566 ,730,730,730 ,0,0,0}, - {30567,30458,30568 ,730,730,730 ,0,0,0}, {30569,30405,30402 ,730,730,730 ,0,0,0}, - {30402,30404,30565 ,730,730,730 ,0,0,0}, {30408,30570,30571 ,730,730,730 ,0,0,0}, - {140,30464,30461 ,730,730,730 ,0,0,0}, {30409,30572,140 ,730,730,730 ,0,0,0}, - {30409,30408,30571 ,730,730,730 ,0,0,0}, {30573,30461,30463 ,730,730,730 ,0,0,0}, - {30574,30570,30405 ,730,730,730 ,0,0,0}, {30463,30567,30573 ,730,730,730 ,0,0,0}, - {30554,30543,30448 ,730,730,730 ,0,0,0}, {30420,30423,30575 ,730,730,730 ,0,0,0}, - {30397,30559,30563 ,730,730,730 ,0,0,0}, {30551,30441,30430 ,730,730,730 ,0,0,0}, - {30552,30442,30441 ,730,730,730 ,0,0,0}, {30554,30444,30553 ,730,730,730 ,0,0,0}, - {30554,30448,30446 ,730,730,730 ,0,0,0}, {30543,30432,30448 ,730,730,730 ,0,0,0}, - {30546,30433,30544 ,730,730,730 ,0,0,0}, {30546,30455,30451 ,730,730,730 ,0,0,0}, - {30561,30455,30545 ,730,730,730 ,0,0,0}, {30561,30568,30458 ,730,730,730 ,0,0,0}, - {30458,30460,30561 ,730,730,730 ,0,0,0}, {30567,30463,30458 ,730,730,730 ,0,0,0}, - {140,30461,30573 ,730,730,730 ,0,0,0}, {140,30572,30464 ,730,730,730 ,0,0,0}, - {30409,30571,30572 ,730,730,730 ,0,0,0}, {30405,30570,30408 ,730,730,730 ,0,0,0}, - {30405,30569,30574 ,730,730,730 ,0,0,0}, {30402,30565,30569 ,730,730,730 ,0,0,0}, - {30399,30564,30404 ,730,730,730 ,0,0,0}, {30399,30562,30566 ,730,730,730 ,0,0,0}, - {30398,30563,30562 ,730,730,730 ,0,0,0}, {30557,30559,30414 ,730,730,730 ,0,0,0}, - {30417,30558,30414 ,730,730,730 ,0,0,0}, {30419,30555,30556 ,730,730,730 ,0,0,0}, - {30417,30556,30558 ,730,730,730 ,0,0,0}, {30420,30576,30555 ,730,730,730 ,0,0,0}, - {30575,30423,30548 ,730,730,730 ,0,0,0}, {30576,30420,30575 ,730,730,730 ,0,0,0}, - {30548,30425,30547 ,730,730,730 ,0,0,0}, {126,30547,30425 ,730,730,730 ,0,0,0}, - {30454,30561,30452 ,730,730,730 ,0,0,0}, {30560,30568,30561 ,730,730,730 ,0,0,0}, - {30577,30578,30529 ,17418,17419,17419 ,0,0,0}, {30578,30579,30580 ,17419,2197,2197 ,0,0,0}, - {30580,30529,30578 ,2197,17419,17419 ,0,0,0}, {30529,30581,30577 ,17419,17418,17418 ,0,0,0}, - {30582,30583,30501 ,1398,17420,17420 ,0,0,0}, {30583,30538,30542 ,17420,1398,1398 ,0,0,0}, - {30542,30501,30583 ,1398,17420,17420 ,0,0,0}, {30501,30584,30582 ,17420,1398,1398 ,0,0,0}, - {30503,30579,30585 ,17421,1814,17422 ,0,0,0}, {30582,30584,30585 ,17423,17423,17422 ,0,0,0}, - {30584,30503,30585 ,17423,17421,17422 ,0,0,0}, {30503,30580,30579 ,17421,17424,1814 ,0,0,0}, - {30431,30586,30540 ,17425,17425,17425 ,0,0,0}, {30431,30587,30588 ,17425,17426,17426 ,0,0,0}, - {30431,30588,30586 ,17425,17426,17425 ,0,0,0}, {30586,30541,30540 ,17425,17425,17425 ,0,0,0}, - {30589,30490,30590 ,726,7626,7754 ,0,0,0}, {30591,30479,30592 ,7626,7627,7626 ,0,0,0}, - {30485,30488,30593 ,7625,7627,7755 ,0,0,0}, {30485,30594,30595 ,7625,17427,7249 ,0,0,0}, - {30595,30596,30467 ,7249,17428,7626 ,0,0,0}, {30467,30596,30468 ,7626,17428,7625 ,0,0,0}, - {30488,30490,30589 ,7627,7626,726 ,0,0,0}, {30597,30598,30469 ,7264,17429,7626 ,0,0,0}, - {30469,30468,30599 ,7626,7625,17430 ,0,0,0}, {30600,30474,30598 ,17431,7625,17429 ,0,0,0}, - {30491,30601,30590 ,7626,7754,7754 ,0,0,0}, {30497,30512,30602 ,7626,7626,7626 ,0,0,0}, - {30472,30603,30475 ,7758,7754,7627 ,0,0,0}, {30479,30478,30592 ,7627,7626,7626 ,0,0,0}, - {30604,30510,30497 ,726,7626,7626 ,0,0,0}, {30516,30514,30605 ,7626,726,7626 ,0,0,0}, - {30605,30506,30606 ,7626,726,726 ,0,0,0}, {30607,30505,30608 ,7628,726,726 ,0,0,0}, - {30609,30518,30516 ,7626,7628,7626 ,0,0,0}, {30523,30607,30527 ,7626,7628,726 ,0,0,0}, - {30610,30526,30611 ,7626,7626,726 ,0,0,0}, {30612,30530,30613 ,7626,726,7626 ,0,0,0}, - {30524,30610,30613 ,726,7626,7626 ,0,0,0}, {30608,30504,30614 ,726,7628,7626 ,0,0,0}, - {30612,30615,30535 ,7626,7626,726 ,0,0,0}, {30609,30614,30520 ,7626,7626,7626 ,0,0,0}, - {30536,30481,30591 ,7626,7626,7626 ,0,0,0}, {30481,30536,30533 ,7626,7626,7626 ,0,0,0}, - {30508,30616,30506 ,726,726,726 ,0,0,0}, {30617,30516,30605 ,726,7626,7626 ,0,0,0}, - {30618,30592,30478 ,8135,7626,7626 ,0,0,0}, {30508,30604,30616 ,726,726,726 ,0,0,0}, - {30475,30618,30478 ,7627,8135,7626 ,0,0,0}, {30619,30496,30602 ,7626,7626,7626 ,0,0,0}, - {30505,30504,30608 ,726,7628,726 ,0,0,0}, {30494,30496,30619 ,7626,7626,7626 ,0,0,0}, - {30474,30600,30472 ,7625,17431,7758 ,0,0,0}, {30620,30491,30494 ,7758,7626,7626 ,0,0,0}, - {30479,30591,30481 ,7627,7626,7626 ,0,0,0}, {30502,30605,30513 ,726,7626,726 ,0,0,0}, - {30475,30603,30621 ,7627,7754,7627 ,0,0,0}, {30621,30618,30475 ,7627,8135,7627 ,0,0,0}, - {30472,30600,30603 ,7758,17431,7754 ,0,0,0}, {30469,30598,30474 ,7626,17429,7625 ,0,0,0}, - {30469,30599,30597 ,7626,17430,7264 ,0,0,0}, {30468,30596,30599 ,7625,17428,17430 ,0,0,0}, - {30485,30595,30467 ,7625,7249,7626 ,0,0,0}, {30485,30593,30594 ,7625,7755,17427 ,0,0,0}, - {30488,30589,30593 ,7627,726,7755 ,0,0,0}, {30491,30590,30490 ,7626,7754,7626 ,0,0,0}, - {30491,30620,30601 ,7626,7758,7754 ,0,0,0}, {30494,30619,30620 ,7626,7626,7758 ,0,0,0}, - {30497,30602,30496 ,7626,7626,7626 ,0,0,0}, {30497,30510,30512 ,7626,7626,7626 ,0,0,0}, - {30604,30508,30510 ,726,726,7626 ,0,0,0}, {30606,30506,30616 ,726,726,726 ,0,0,0}, - {30502,30506,30605 ,726,726,7626 ,0,0,0}, {30514,30513,30605 ,726,726,7626 ,0,0,0}, - {30609,30516,30617 ,7626,7626,726 ,0,0,0}, {30609,30520,30518 ,7626,7626,7628 ,0,0,0}, - {30614,30504,30520 ,7626,7628,7626 ,0,0,0}, {30523,30505,30607 ,7626,726,7628 ,0,0,0}, - {30611,30527,30607 ,726,726,7628 ,0,0,0}, {30610,30524,30526 ,7626,726,7626 ,0,0,0}, - {30611,30526,30527 ,726,7626,726 ,0,0,0}, {30613,30532,30524 ,7626,726,726 ,0,0,0}, - {30530,30612,30535 ,726,7626,726 ,0,0,0}, {30532,30613,30530 ,726,7626,726 ,0,0,0}, - {30535,30615,30533 ,726,7626,7626 ,0,0,0}, {30481,30533,30615 ,7626,7626,7626 ,0,0,0}, - {30606,30622,30605 ,726,7626,7626 ,0,0,0}, {30605,30622,30617 ,7626,7626,726 ,0,0,0}, - {30587,30457,30623 ,17432,17433,17433 ,0,0,0}, {30577,30581,30457 ,17434,17434,17433 ,0,0,0}, - {30457,30581,30623 ,17433,17434,17433 ,0,0,0}, {30587,30623,30588 ,17432,17433,17432 ,0,0,0}, - {30602,30511,30624 ,17435,17436,17437 ,0,0,0}, {30590,30601,30625 ,17438,17439,17440 ,0,0,0}, - {30626,30620,30619 ,17441,17442,17443 ,0,0,0}, {30627,30586,30595 ,17444,17445,17446 ,0,0,0}, - {30628,30629,30593 ,17447,17448,17449 ,0,0,0}, {30630,30598,30631 ,17450,17451,17452 ,0,0,0}, - {30597,30599,30632 ,17453,17454,17455 ,0,0,0}, {30603,30630,30633 ,17456,17450,17457 ,0,0,0}, - {30623,30618,30621 ,17458,17459,17460 ,0,0,0}, {30621,30633,30623 ,17460,17457,17458 ,0,0,0}, - {30618,30634,30592 ,17459,17461,17462 ,0,0,0}, {30634,30618,30623 ,17461,17459,17458 ,0,0,0}, - {30634,30635,30592 ,17461,17463,17462 ,0,0,0}, {30537,30591,30635 ,17416,17464,17463 ,0,0,0}, - {30592,30635,30591 ,17462,17463,17464 ,0,0,0}, {30536,30591,30537 ,126,17464,17416 ,0,0,0}, - {30603,30600,30630 ,17456,17465,17450 ,0,0,0}, {30621,30603,30633 ,17460,17456,17457 ,0,0,0}, - {30598,30597,30631 ,17451,17453,17452 ,0,0,0}, {30600,30598,30630 ,17465,17451,17450 ,0,0,0}, - {30632,30599,30586 ,17455,17454,17445 ,0,0,0}, {30631,30597,30632 ,17452,17453,17455 ,0,0,0}, - {30595,30586,30596 ,17446,17445,17466 ,0,0,0}, {30586,30599,30596 ,17445,17454,17466 ,0,0,0}, - {30629,30627,30594 ,17448,17444,17467 ,0,0,0}, {30627,30595,30594 ,17444,17446,17467 ,0,0,0}, - {30589,30628,30593 ,17468,17447,17449 ,0,0,0}, {30593,30629,30594 ,17449,17448,17467 ,0,0,0}, - {30628,30590,30625 ,17447,17438,17440 ,0,0,0}, {30590,30628,30589 ,17438,17447,17468 ,0,0,0}, - {30601,30620,30539 ,17439,17442,17469 ,0,0,0}, {30601,30539,30625 ,17439,17469,17440 ,0,0,0}, - {30626,30619,30624 ,17441,17443,17437 ,0,0,0}, {30539,30620,30626 ,17469,17442,17441 ,0,0,0}, - {30511,30602,30512 ,17436,17435,17392 ,0,0,0}, {30624,30619,30602 ,17437,17443,17435 ,0,0,0}, - {30534,30581,30528 ,726,726,7658 ,0,0,0}, {30581,30529,30528 ,726,7658,7658 ,0,0,0}, - {30537,30581,30534 ,7918,726,726 ,0,0,0}, {30634,30581,30635 ,7661,726,7918 ,0,0,0}, - {30581,30537,30635 ,726,7918,7918 ,0,0,0}, {30623,30581,30634 ,7658,726,7661 ,0,0,0}, - {30628,30541,30629 ,726,17470,17471 ,0,0,0}, {30629,30541,30627 ,17471,17470,17472 ,0,0,0}, - {30541,30586,30627 ,17470,17470,17472 ,0,0,0}, {30541,30625,30539 ,17470,726,726 ,0,0,0}, - {30541,30628,30625 ,17470,726,726 ,0,0,0}, {30500,30584,30501 ,726,726,726 ,0,0,0}, - {30517,30584,30515 ,726,726,726 ,0,0,0}, {30584,30500,30515 ,726,726,726 ,0,0,0}, - {30503,30584,30519 ,726,726,726 ,0,0,0}, {30584,30517,30519 ,726,726,726 ,0,0,0}, - {30580,30522,30521 ,7660,726,17473 ,0,0,0}, {30503,30522,30580 ,726,726,7660 ,0,0,0}, - {30580,30531,30529 ,7660,17474,726 ,0,0,0}, {30580,30525,30531 ,7660,726,17474 ,0,0,0}, - {30521,30525,30580 ,17473,726,7660 ,0,0,0}, {30623,30633,30588 ,726,726,726 ,0,0,0}, - {30631,30588,30630 ,7659,726,7659 ,0,0,0}, {30633,30630,30588 ,726,7659,726 ,0,0,0}, - {30632,30586,30588 ,726,726,726 ,0,0,0}, {30632,30588,30631 ,726,726,7659 ,0,0,0}, - {30626,30542,30539 ,726,726,726 ,0,0,0}, {30542,30626,30624 ,726,726,726 ,0,0,0}, - {30509,30542,30511 ,726,726,726 ,0,0,0}, {30542,30624,30511 ,726,726,726 ,0,0,0}, - {30501,30542,30507 ,726,726,726 ,0,0,0}, {30542,30509,30507 ,726,726,726 ,0,0,0}, - {30636,30637,30499 ,17475,17476,17477 ,0,0,0}, {30499,30638,30636 ,17477,17478,17475 ,0,0,0}, - {30499,30482,30638 ,17477,17479,17478 ,0,0,0}, {30499,30639,30640 ,17477,17480,17481 ,0,0,0}, - {30637,30639,30499 ,17476,17480,17477 ,0,0,0}, {30499,30641,30642 ,17477,17482,17483 ,0,0,0}, - {30640,30641,30499 ,17481,17482,17477 ,0,0,0}, {30642,30643,30499 ,17483,17484,17477 ,0,0,0}, - {30644,30499,30645 ,17485,17477,17486 ,0,0,0}, {30499,30643,30645 ,17477,17484,17486 ,0,0,0}, - {30646,30499,30647 ,17487,17477,17488 ,0,0,0}, {30499,30644,30647 ,17477,17485,17488 ,0,0,0}, - {30648,30499,30649 ,17489,17477,17490 ,0,0,0}, {30499,30646,30649 ,17477,17487,17490 ,0,0,0}, - {30498,30499,30648 ,17491,17477,17489 ,0,0,0}, {30481,30615,30638 ,17492,17493,17494 ,0,0,0}, - {30640,30639,30610 ,17495,17496,17497 ,0,0,0}, {30637,30636,30612 ,17498,17499,17500 ,0,0,0}, - {30642,30608,30643 ,17501,17502,17503 ,0,0,0}, {30611,30607,30641 ,17504,17505,17506 ,0,0,0}, - {30609,30617,30644 ,17507,17508,17509 ,0,0,0}, {30609,30645,30614 ,17507,17510,17511 ,0,0,0}, - {30622,30606,30646 ,17512,17513,17514 ,0,0,0}, {30646,30647,30622 ,17514,17515,17512 ,0,0,0}, - {30649,30606,30616 ,17516,17513,17517 ,0,0,0}, {30606,30649,30646 ,17513,17516,17514 ,0,0,0}, - {30604,30648,30616 ,17518,17519,17517 ,0,0,0}, {30649,30616,30648 ,17516,17517,17519 ,0,0,0}, - {30604,30497,30498 ,17518,17520,17521 ,0,0,0}, {30498,30648,30604 ,17521,17519,17518 ,0,0,0}, - {30608,30642,30607 ,17502,17501,17505 ,0,0,0}, {30617,30647,30644 ,17508,17515,17509 ,0,0,0}, - {30622,30647,30617 ,17512,17515,17508 ,0,0,0}, {30610,30639,30613 ,17497,17496,17522 ,0,0,0}, - {30614,30645,30643 ,17511,17510,17503 ,0,0,0}, {30609,30644,30645 ,17507,17509,17510 ,0,0,0}, - {30608,30614,30643 ,17502,17511,17503 ,0,0,0}, {30641,30607,30642 ,17506,17505,17501 ,0,0,0}, - {30640,30610,30611 ,17495,17497,17504 ,0,0,0}, {30611,30641,30640 ,17504,17506,17495 ,0,0,0}, - {30636,30615,30612 ,17499,17493,17500 ,0,0,0}, {30613,30637,30612 ,17522,17498,17500 ,0,0,0}, - {30639,30637,30613 ,17496,17498,17522 ,0,0,0}, {30481,30638,30482 ,17492,17494,81 ,0,0,0}, - {30615,30636,30638 ,17493,17499,17494 ,0,0,0}, {30547,30439,30650 ,17523,17310,17524 ,0,0,0}, - {30555,30576,30651 ,17525,17526,17527 ,0,0,0}, {30652,30575,30548 ,17528,17529,17530 ,0,0,0}, - {30653,30585,30559 ,17531,17532,17533 ,0,0,0}, {30654,30655,30558 ,17534,17535,17536 ,0,0,0}, - {30656,30564,30657 ,17537,17538,17539 ,0,0,0}, {30566,30562,30658 ,17540,17541,17542 ,0,0,0}, - {30569,30656,30659 ,17543,17537,17544 ,0,0,0}, {30578,30570,30574 ,17545,17546,17547 ,0,0,0}, - {30574,30659,30578 ,17547,17544,17545 ,0,0,0}, {30570,30660,30571 ,17546,17548,17549 ,0,0,0}, - {30660,30570,30578 ,17548,17546,17545 ,0,0,0}, {30660,30661,30571 ,17548,17550,17549 ,0,0,0}, - {30465,30572,30661 ,17551,17552,17550 ,0,0,0}, {30571,30661,30572 ,17549,17550,17552 ,0,0,0}, - {30464,30572,30465 ,17553,17552,17551 ,0,0,0}, {30569,30565,30656 ,17543,17554,17537 ,0,0,0}, - {30574,30569,30659 ,17547,17543,17544 ,0,0,0}, {30564,30566,30657 ,17538,17540,17539 ,0,0,0}, - {30565,30564,30656 ,17554,17538,17537 ,0,0,0}, {30658,30562,30585 ,17542,17541,17532 ,0,0,0}, - {30657,30566,30658 ,17539,17540,17542 ,0,0,0}, {30559,30585,30563 ,17533,17532,17555 ,0,0,0}, - {30585,30562,30563 ,17532,17541,17555 ,0,0,0}, {30655,30653,30557 ,17535,17531,17556 ,0,0,0}, - {30653,30559,30557 ,17531,17533,17556 ,0,0,0}, {30556,30654,30558 ,17557,17534,17536 ,0,0,0}, - {30558,30655,30557 ,17536,17535,17556 ,0,0,0}, {30654,30555,30651 ,17534,17525,17527 ,0,0,0}, - {30555,30654,30556 ,17525,17534,17557 ,0,0,0}, {30576,30575,30583 ,17526,17529,17558 ,0,0,0}, - {30576,30583,30651 ,17526,17558,17527 ,0,0,0}, {30652,30548,30650 ,17528,17530,17524 ,0,0,0}, - {30583,30575,30652 ,17558,17529,17528 ,0,0,0}, {30439,30547,30440 ,17310,17523,82 ,0,0,0}, - {30650,30548,30547 ,17524,17530,17523 ,0,0,0}, {30582,30654,30651 ,730,17559,730 ,0,0,0}, - {30653,30582,30585 ,730,730,730 ,0,0,0}, {30654,30582,30655 ,17559,730,17559 ,0,0,0}, - {30582,30653,30655 ,730,730,17559 ,0,0,0}, {30651,30583,30582 ,730,17560,730 ,0,0,0}, - {30456,30577,30457 ,7433,17559,7433 ,0,0,0}, {30577,30661,30660 ,17559,17559,17560 ,0,0,0}, - {30577,30456,30462 ,17559,7433,730 ,0,0,0}, {30661,30577,30465 ,17559,17559,17561 ,0,0,0}, - {30577,30462,30465 ,17559,730,17561 ,0,0,0}, {30660,30578,30577 ,17560,7433,17559 ,0,0,0}, - {30443,30540,30428 ,7017,730,730 ,0,0,0}, {30540,30429,30428 ,730,11466,730 ,0,0,0}, - {30447,30540,30445 ,7534,730,17562 ,0,0,0}, {30540,30443,30445 ,730,7017,17562 ,0,0,0}, - {30431,30540,30447 ,17563,730,7534 ,0,0,0}, {30657,30579,30656 ,730,17560,17559 ,0,0,0}, - {30659,30656,30579 ,17559,17559,17560 ,0,0,0}, {30578,30659,30579 ,17561,17559,17560 ,0,0,0}, - {30658,30585,30579 ,17564,730,17560 ,0,0,0}, {30658,30579,30657 ,17564,17560,730 ,0,0,0}, - {30450,30449,30587 ,17561,730,17565 ,0,0,0}, {30431,30450,30587 ,17566,17561,17565 ,0,0,0}, - {30453,30459,30587 ,730,730,17565 ,0,0,0}, {30453,30587,30449 ,730,17565,730 ,0,0,0}, - {30457,30587,30459 ,730,17565,730 ,0,0,0}, {30583,30652,30538 ,730,730,730 ,0,0,0}, - {30538,30650,30439 ,730,730,730 ,0,0,0}, {30538,30652,30650 ,730,730,730 ,0,0,0}, - {30439,30437,30538 ,730,730,730 ,0,0,0}, {30538,30435,30429 ,730,730,730 ,0,0,0}, - {30437,30435,30538 ,730,730,730 ,0,0,0}, {30662,30663,30427 ,17567,17568,17569 ,0,0,0}, - {30427,30664,30662 ,17569,17570,17567 ,0,0,0}, {30427,30411,30664 ,17569,17571,17570 ,0,0,0}, - {30427,30665,30666 ,17569,17572,17573 ,0,0,0}, {30663,30665,30427 ,17568,17572,17569 ,0,0,0}, - {30427,30667,30668 ,17569,17574,17575 ,0,0,0}, {30666,30667,30427 ,17573,17574,17569 ,0,0,0}, - {30668,30669,30427 ,17575,17576,17569 ,0,0,0}, {30670,30427,30671 ,17577,17569,17578 ,0,0,0}, - {30427,30669,30671 ,17569,17576,17578 ,0,0,0}, {30672,30427,30673 ,17579,17569,17580 ,0,0,0}, - {30427,30670,30673 ,17569,17577,17580 ,0,0,0}, {30674,30427,30675 ,17581,17569,17582 ,0,0,0}, - {30427,30672,30675 ,17569,17579,17582 ,0,0,0}, {30426,30427,30674 ,17583,17569,17581 ,0,0,0}, - {140,30573,30664 ,2602,17584,17585 ,0,0,0}, {30666,30665,30560 ,17586,17587,17588 ,0,0,0}, - {30663,30662,30567 ,17589,17590,17591 ,0,0,0}, {30668,30544,30669 ,17592,17593,17594 ,0,0,0}, - {30545,30546,30667 ,17595,17596,17597 ,0,0,0}, {30554,30553,30670 ,17598,17599,17600 ,0,0,0}, - {30554,30671,30543 ,17598,17601,17602 ,0,0,0}, {30552,30551,30672 ,17603,17604,17605 ,0,0,0}, - {30672,30673,30552 ,17605,17606,17603 ,0,0,0}, {30675,30551,30549 ,17607,17604,17608 ,0,0,0}, - {30551,30675,30672 ,17604,17607,17605 ,0,0,0}, {30550,30674,30549 ,17609,17610,17608 ,0,0,0}, - {30675,30549,30674 ,17607,17608,17610 ,0,0,0}, {30550,126,30426 ,17609,17611,17612 ,0,0,0}, - {30426,30674,30550 ,17612,17610,17609 ,0,0,0}, {30544,30668,30546 ,17593,17592,17596 ,0,0,0}, - {30553,30673,30670 ,17599,17606,17600 ,0,0,0}, {30552,30673,30553 ,17603,17606,17599 ,0,0,0}, - {30560,30665,30568 ,17588,17587,17613 ,0,0,0}, {30543,30671,30669 ,17602,17601,17594 ,0,0,0}, - {30554,30670,30671 ,17598,17600,17601 ,0,0,0}, {30544,30543,30669 ,17593,17602,17594 ,0,0,0}, - {30667,30546,30668 ,17597,17596,17592 ,0,0,0}, {30666,30560,30545 ,17586,17588,17595 ,0,0,0}, - {30545,30667,30666 ,17595,17597,17586 ,0,0,0}, {30662,30573,30567 ,17590,17584,17591 ,0,0,0}, - {30568,30663,30567 ,17613,17589,17591 ,0,0,0}, {30665,30663,30568 ,17587,17589,17613 ,0,0,0}, - {140,30664,30411 ,2602,17585,82 ,0,0,0}, {30573,30662,30664 ,17584,17590,17585 ,0,0,0} -// M3abstandhalter20mm.prt - , {30676,30677,30678 ,17614,17615,17616 ,0,0,0}, {30678,30679,30680 ,17616,17617,17618 ,0,0,0}, - {30679,30681,30680 ,17617,17619,17618 ,0,0,0}, {30678,30680,30676 ,17616,17618,17614 ,0,0,0}, - {30682,30683,30684 ,17620,17621,17622 ,0,0,0}, {30684,30683,30681 ,17622,17621,17619 ,0,0,0}, - {30682,30685,30686 ,17620,17623,17624 ,0,0,0}, {30686,30683,30682 ,17624,17621,17620 ,0,0,0}, - {30686,30685,30687 ,17624,17623,17625 ,0,0,0}, {30687,30685,30688 ,17625,17623,17626 ,0,0,0}, - {30688,30689,30690 ,17626,17627,17628 ,0,0,0}, {30687,30688,30690 ,17625,17626,17628 ,0,0,0}, - {30681,30679,30684 ,17619,17617,17622 ,0,0,0}, {30691,30692,30693 ,17629,17629,17630 ,0,0,0}, - {30691,30693,30689 ,17629,17630,17627 ,0,0,0}, {30689,30693,30690 ,17627,17630,17628 ,0,0,0}, - {30676,30694,30677 ,17614,17631,17615 ,0,0,0}, {30695,30694,30696 ,17632,17631,17633 ,0,0,0}, - {30694,30695,30677 ,17631,17632,17615 ,0,0,0}, {30697,30698,30696 ,17634,17635,17633 ,0,0,0}, - {30695,30696,30698 ,17632,17633,17635 ,0,0,0}, {30697,30699,30700 ,17634,17636,17637 ,0,0,0}, - {30700,30698,30697 ,17637,17635,17634 ,0,0,0}, {30701,30699,30702 ,17638,17636,17639 ,0,0,0}, - {30699,30701,30700 ,17636,17638,17637 ,0,0,0}, {30703,30704,30702 ,17640,17641,17639 ,0,0,0}, - {30701,30702,30704 ,17638,17639,17641 ,0,0,0}, {30703,30705,30706 ,17640,17642,17643 ,0,0,0}, - {30706,30704,30703 ,17643,17641,17640 ,0,0,0}, {30707,30705,30708 ,17644,17642,17644 ,0,0,0}, - {30705,30707,30706 ,17642,17644,17643 ,0,0,0}, {30703,30702,30709 ,17645,17646,17647 ,0,0,0}, - {30709,30705,30703 ,17647,17648,17645 ,0,0,0}, {30709,30708,30705 ,17647,17649,17648 ,0,0,0}, - {30709,30699,30697 ,17647,17650,17651 ,0,0,0}, {30702,30699,30709 ,17646,17650,17647 ,0,0,0}, - {30709,30696,30694 ,17647,17652,17653 ,0,0,0}, {30697,30696,30709 ,17651,17652,17647 ,0,0,0}, - {30694,30676,30709 ,17653,17654,17647 ,0,0,0}, {30681,30709,30680 ,17655,17647,17656 ,0,0,0}, - {30709,30676,30680 ,17647,17654,17656 ,0,0,0}, {30686,30709,30683 ,17657,17647,17658 ,0,0,0}, - {30709,30681,30683 ,17647,17655,17658 ,0,0,0}, {30690,30709,30687 ,17659,17647,17660 ,0,0,0}, - {30709,30686,30687 ,17647,17657,17660 ,0,0,0}, {30692,30709,30693 ,17647,17647,17661 ,0,0,0}, - {30709,30690,30693 ,17647,17659,17661 ,0,0,0}, {30710,30711,30712 ,17662,17663,17664 ,0,0,0}, - {30713,30714,30715 ,17665,17665,17666 ,0,0,0}, {30716,30711,30717 ,17667,17663,17668 ,0,0,0}, - {30711,30716,30712 ,17663,17667,17664 ,0,0,0}, {30716,30717,30718 ,17667,17668,17669 ,0,0,0}, - {30719,30720,30718 ,17670,17671,17669 ,0,0,0}, {30718,30717,30719 ,17669,17668,17670 ,0,0,0}, - {30721,30720,30719 ,17629,17671,17670 ,0,0,0}, {30721,30722,30720 ,17629,17629,17671 ,0,0,0}, - {30723,30710,30712 ,17672,17662,17664 ,0,0,0}, {30724,30725,30723 ,17673,17674,17672 ,0,0,0}, - {30710,30723,30725 ,17662,17672,17674 ,0,0,0}, {30726,30727,30725 ,17675,17676,17674 ,0,0,0}, - {30725,30724,30726 ,17674,17673,17675 ,0,0,0}, {30727,30728,30729 ,17676,17677,17678 ,0,0,0}, - {30728,30727,30726 ,17677,17676,17675 ,0,0,0}, {30713,30729,30730 ,17665,17678,17679 ,0,0,0}, - {30728,30730,30729 ,17677,17679,17678 ,0,0,0}, {30731,30732,30733 ,17680,17681,17682 ,0,0,0}, - {30713,30730,30714 ,17665,17679,17665 ,0,0,0}, {30734,30735,30736 ,17683,17684,17685 ,0,0,0}, - {30735,30731,30737 ,17684,17680,17686 ,0,0,0}, {30738,30739,30740 ,17687,17688,17689 ,0,0,0}, - {30741,30742,30739 ,17690,17691,17688 ,0,0,0}, {30743,30744,30745 ,17692,17693,17694 ,0,0,0}, - {30738,30745,30744 ,17687,17694,17693 ,0,0,0}, {30743,30746,30747 ,17692,17644,17644 ,0,0,0}, - {30747,30744,30743 ,17644,17693,17692 ,0,0,0}, {30742,30740,30739 ,17691,17689,17688 ,0,0,0}, - {30738,30740,30745 ,17687,17689,17694 ,0,0,0}, {30741,30735,30734 ,17690,17684,17683 ,0,0,0}, - {30741,30734,30742 ,17690,17683,17691 ,0,0,0}, {30731,30733,30737 ,17680,17682,17686 ,0,0,0}, - {30736,30735,30737 ,17685,17684,17686 ,0,0,0}, {30715,30732,30713 ,17666,17681,17665 ,0,0,0}, - {30733,30732,30715 ,17682,17681,17666 ,0,0,0}, {30748,30749,30750 ,17695,17696,17697 ,0,0,0}, - {30750,30751,30752 ,17697,17698,17699 ,0,0,0}, {30751,30753,30752 ,17698,17700,17699 ,0,0,0}, - {30750,30752,30748 ,17697,17699,17695 ,0,0,0}, {30754,30755,30756 ,17701,17702,17703 ,0,0,0}, - {30756,30755,30753 ,17703,17702,17700 ,0,0,0}, {30754,30757,30758 ,17701,17704,17705 ,0,0,0}, - {30758,30755,30754 ,17705,17702,17701 ,0,0,0}, {30758,30757,30759 ,17705,17704,17706 ,0,0,0}, - {30759,30757,30760 ,17706,17704,17707 ,0,0,0}, {30760,30761,30762 ,17707,17708,17709 ,0,0,0}, - {30759,30760,30762 ,17706,17707,17709 ,0,0,0}, {30753,30751,30756 ,17700,17698,17703 ,0,0,0}, - {30763,30764,30765 ,17629,17629,17710 ,0,0,0}, {30763,30765,30761 ,17629,17710,17708 ,0,0,0}, - {30761,30765,30762 ,17708,17710,17709 ,0,0,0}, {30748,30766,30749 ,17695,17711,17696 ,0,0,0}, - {30767,30766,30768 ,17712,17711,17713 ,0,0,0}, {30766,30767,30749 ,17711,17712,17696 ,0,0,0}, - {30769,30770,30768 ,17714,17715,17713 ,0,0,0}, {30767,30768,30770 ,17712,17713,17715 ,0,0,0}, - {30769,30771,30772 ,17714,17716,17717 ,0,0,0}, {30772,30770,30769 ,17717,17715,17714 ,0,0,0}, - {30773,30771,30774 ,17718,17716,17719 ,0,0,0}, {30771,30773,30772 ,17716,17718,17717 ,0,0,0}, - {30775,30776,30774 ,17720,17721,17719 ,0,0,0}, {30773,30774,30776 ,17718,17719,17721 ,0,0,0}, - {30775,30777,30778 ,17720,17722,17723 ,0,0,0}, {30778,30776,30775 ,17723,17721,17720 ,0,0,0}, - {30779,30777,30780 ,17644,17722,17644 ,0,0,0}, {30777,30779,30778 ,17722,17644,17723 ,0,0,0}, - {30775,30774,30781 ,17724,17725,17726 ,0,0,0}, {30781,30777,30775 ,17726,17727,17724 ,0,0,0}, - {30781,30780,30777 ,17726,17728,17727 ,0,0,0}, {30781,30771,30769 ,17726,17729,17730 ,0,0,0}, - {30774,30771,30781 ,17725,17729,17726 ,0,0,0}, {30781,30768,30766 ,17726,17731,17732 ,0,0,0}, - {30769,30768,30781 ,17730,17731,17726 ,0,0,0}, {30766,30748,30781 ,17732,17733,17726 ,0,0,0}, - {30753,30781,30752 ,17734,17726,17735 ,0,0,0}, {30781,30748,30752 ,17726,17733,17735 ,0,0,0}, - {30758,30781,30755 ,17736,17726,17737 ,0,0,0}, {30781,30753,30755 ,17726,17734,17737 ,0,0,0}, - {30762,30781,30759 ,17738,17726,17739 ,0,0,0}, {30781,30758,30759 ,17726,17736,17739 ,0,0,0}, - {30764,30781,30765 ,17726,17726,17740 ,0,0,0}, {30781,30762,30765 ,17726,17738,17740 ,0,0,0}, - {30782,30783,30784 ,17741,17742,17743 ,0,0,0}, {30785,30786,30787 ,17695,17695,17744 ,0,0,0}, - {30788,30783,30789 ,17745,17742,17746 ,0,0,0}, {30783,30788,30784 ,17742,17745,17743 ,0,0,0}, - {30788,30789,30790 ,17745,17746,17747 ,0,0,0}, {30791,30792,30790 ,17748,17749,17747 ,0,0,0}, - {30790,30789,30791 ,17747,17746,17748 ,0,0,0}, {30793,30792,30791 ,17629,17749,17748 ,0,0,0}, - {30793,30794,30792 ,17629,17629,17749 ,0,0,0}, {30795,30782,30784 ,17750,17741,17743 ,0,0,0}, - {30796,30797,30795 ,17751,17752,17750 ,0,0,0}, {30782,30795,30797 ,17741,17750,17752 ,0,0,0}, - {30798,30799,30797 ,17753,17754,17752 ,0,0,0}, {30797,30796,30798 ,17752,17751,17753 ,0,0,0}, - {30799,30800,30801 ,17754,17755,17756 ,0,0,0}, {30800,30799,30798 ,17755,17754,17753 ,0,0,0}, - {30785,30801,30802 ,17695,17756,17757 ,0,0,0}, {30800,30802,30801 ,17755,17757,17756 ,0,0,0}, - {30803,30804,30805 ,17758,17759,17760 ,0,0,0}, {30785,30802,30786 ,17695,17757,17695 ,0,0,0}, - {30806,30807,30808 ,17761,17762,17763 ,0,0,0}, {30807,30803,30809 ,17762,17758,17764 ,0,0,0}, - {30810,30811,30812 ,17765,17766,17767 ,0,0,0}, {30813,30814,30811 ,17768,17769,17766 ,0,0,0}, - {30815,30816,30817 ,17770,17771,17772 ,0,0,0}, {30810,30817,30816 ,17765,17772,17771 ,0,0,0}, - {30815,30818,30819 ,17770,17644,17644 ,0,0,0}, {30819,30816,30815 ,17644,17771,17770 ,0,0,0}, - {30814,30812,30811 ,17769,17767,17766 ,0,0,0}, {30810,30812,30817 ,17765,17767,17772 ,0,0,0}, - {30813,30807,30806 ,17768,17762,17761 ,0,0,0}, {30813,30806,30814 ,17768,17761,17769 ,0,0,0}, - {30803,30805,30809 ,17758,17760,17764 ,0,0,0}, {30808,30807,30809 ,17763,17762,17764 ,0,0,0}, - {30787,30804,30785 ,17744,17759,17695 ,0,0,0}, {30805,30804,30787 ,17760,17759,17744 ,0,0,0}, - {30820,30711,30821 ,17773,17773,17773 ,0,0,0}, {30822,30823,30711 ,17773,17773,17773 ,0,0,0}, - {30711,30823,30821 ,17773,17773,17773 ,0,0,0}, {30820,30821,30824 ,17773,17773,17773 ,0,0,0}, - {30825,30826,30714 ,730,730,730 ,0,0,0}, {30827,30737,30828 ,730,730,730 ,0,0,0}, - {30829,30707,30722 ,730,730,730 ,0,0,0}, {30830,30704,30706 ,730,730,730 ,0,0,0}, - {30831,30718,30832 ,730,730,730 ,0,0,0}, {30716,30831,30833 ,730,730,730 ,0,0,0}, - {30833,30712,30716 ,730,730,730 ,0,0,0}, {30834,30723,30833 ,730,730,730 ,0,0,0}, - {30718,30831,30716 ,730,730,730 ,0,0,0}, {30720,30707,30832 ,730,730,730 ,0,0,0}, - {30720,30832,30718 ,730,730,730 ,0,0,0}, {30834,30835,30724 ,730,730,730 ,0,0,0}, - {30720,30722,30707 ,730,730,730 ,0,0,0}, {30726,30836,30728 ,730,730,730 ,0,0,0}, - {30724,30835,30726 ,730,730,730 ,0,0,0}, {30837,30700,30701 ,730,730,730 ,0,0,0}, - {30698,30700,30838 ,730,730,730 ,0,0,0}, {30714,30826,30715 ,730,730,730 ,0,0,0}, - {30839,30695,30840 ,730,730,730 ,0,0,0}, {30841,30677,30695 ,730,730,730 ,0,0,0}, - {30733,30715,30828 ,730,730,730 ,0,0,0}, {30842,30843,30827 ,730,730,730 ,0,0,0}, - {30678,30844,30679 ,730,730,730 ,0,0,0}, {30677,30845,30678 ,730,730,730 ,0,0,0}, - {30742,30734,30843 ,730,730,730 ,0,0,0}, {30843,30736,30737 ,730,730,730 ,0,0,0}, - {30684,30846,30847 ,730,730,730 ,0,0,0}, {30846,30679,30848 ,730,730,730 ,0,0,0}, - {30849,30740,30850 ,730,730,730 ,0,0,0}, {30851,30685,30682 ,730,730,730 ,0,0,0}, - {30682,30684,30847 ,730,730,730 ,0,0,0}, {30688,30852,30853 ,730,730,730 ,0,0,0}, - {30691,30746,30743 ,730,730,730 ,0,0,0}, {30689,30854,30691 ,730,730,730 ,0,0,0}, - {30689,30688,30853 ,730,730,730 ,0,0,0}, {30855,30743,30745 ,730,730,730 ,0,0,0}, - {30856,30852,30685 ,730,730,730 ,0,0,0}, {30745,30849,30855 ,730,730,730 ,0,0,0}, - {30836,30825,30730 ,730,730,730 ,0,0,0}, {30701,30704,30857 ,730,730,730 ,0,0,0}, - {30677,30841,30845 ,730,730,730 ,0,0,0}, {30833,30723,30712 ,730,730,730 ,0,0,0}, - {30834,30724,30723 ,730,730,730 ,0,0,0}, {30836,30726,30835 ,730,730,730 ,0,0,0}, - {30836,30730,30728 ,730,730,730 ,0,0,0}, {30825,30714,30730 ,730,730,730 ,0,0,0}, - {30828,30715,30826 ,730,730,730 ,0,0,0}, {30828,30737,30733 ,730,730,730 ,0,0,0}, - {30843,30737,30827 ,730,730,730 ,0,0,0}, {30843,30850,30740 ,730,730,730 ,0,0,0}, - {30740,30742,30843 ,730,730,730 ,0,0,0}, {30849,30745,30740 ,730,730,730 ,0,0,0}, - {30691,30743,30855 ,730,730,730 ,0,0,0}, {30691,30854,30746 ,730,730,730 ,0,0,0}, - {30689,30853,30854 ,730,730,730 ,0,0,0}, {30685,30852,30688 ,730,730,730 ,0,0,0}, - {30685,30851,30856 ,730,730,730 ,0,0,0}, {30682,30847,30851 ,730,730,730 ,0,0,0}, - {30679,30846,30684 ,730,730,730 ,0,0,0}, {30679,30844,30848 ,730,730,730 ,0,0,0}, - {30678,30845,30844 ,730,730,730 ,0,0,0}, {30839,30841,30695 ,730,730,730 ,0,0,0}, - {30698,30840,30695 ,730,730,730 ,0,0,0}, {30700,30837,30838 ,730,730,730 ,0,0,0}, - {30698,30838,30840 ,730,730,730 ,0,0,0}, {30701,30858,30837 ,730,730,730 ,0,0,0}, - {30857,30704,30830 ,730,730,730 ,0,0,0}, {30858,30701,30857 ,730,730,730 ,0,0,0}, - {30830,30706,30829 ,730,730,730 ,0,0,0}, {30707,30829,30706 ,730,730,730 ,0,0,0}, - {30736,30843,30734 ,730,730,730 ,0,0,0}, {30842,30850,30843 ,730,730,730 ,0,0,0}, - {30859,30860,30811 ,17774,17775,17775 ,0,0,0}, {30860,30861,30862 ,17775,17776,17776 ,0,0,0}, - {30862,30811,30860 ,17776,17775,17775 ,0,0,0}, {30811,30863,30859 ,17775,17774,17774 ,0,0,0}, - {30864,30865,30783 ,17777,17778,17778 ,0,0,0}, {30865,30820,30824 ,17778,17777,17777 ,0,0,0}, - {30824,30783,30865 ,17777,17778,17778 ,0,0,0}, {30783,30866,30864 ,17778,17777,17777 ,0,0,0}, - {30785,30861,30867 ,17779,17695,17779 ,0,0,0}, {30864,30866,30867 ,17780,17780,17779 ,0,0,0}, - {30866,30785,30867 ,17780,17779,17779 ,0,0,0}, {30785,30862,30861 ,17779,17781,17695 ,0,0,0}, - {30713,30868,30822 ,17782,17782,17782 ,0,0,0}, {30713,30869,30870 ,17782,17665,17665 ,0,0,0}, - {30713,30870,30868 ,17782,17665,17782 ,0,0,0}, {30868,30823,30822 ,17782,17782,17782 ,0,0,0}, - {30871,30772,30872 ,726,17783,17784 ,0,0,0}, {30873,30761,30874 ,17783,17785,17783 ,0,0,0}, - {30767,30770,30875 ,17786,17785,17787 ,0,0,0}, {30767,30876,30877 ,17786,17788,17789 ,0,0,0}, - {30877,30878,30749 ,17789,17790,17783 ,0,0,0}, {30749,30878,30750 ,17783,17790,17786 ,0,0,0}, - {30770,30772,30871 ,17785,17783,726 ,0,0,0}, {30879,30880,30751 ,17791,17792,17783 ,0,0,0}, - {30751,30750,30881 ,17783,17786,17793 ,0,0,0}, {30882,30756,30880 ,17794,17786,17792 ,0,0,0}, - {30773,30883,30872 ,17783,17784,17784 ,0,0,0}, {30779,30794,30884 ,17783,17783,17783 ,0,0,0}, - {30754,30885,30757 ,17795,17784,17785 ,0,0,0}, {30761,30760,30874 ,17785,17783,17783 ,0,0,0}, - {30886,30792,30779 ,726,17783,17783 ,0,0,0}, {30798,30796,30887 ,17783,726,17783 ,0,0,0}, - {30887,30788,30888 ,17783,726,726 ,0,0,0}, {30889,30787,30890 ,17796,726,726 ,0,0,0}, - {30891,30800,30798 ,17783,17796,17783 ,0,0,0}, {30805,30889,30809 ,17783,17796,726 ,0,0,0}, - {30892,30808,30893 ,17783,17783,726 ,0,0,0}, {30894,30812,30895 ,17783,726,17783 ,0,0,0}, - {30806,30892,30895 ,726,17783,17783 ,0,0,0}, {30890,30786,30896 ,726,17796,17783 ,0,0,0}, - {30894,30897,30817 ,17783,17783,726 ,0,0,0}, {30891,30896,30802 ,17783,17783,17783 ,0,0,0}, - {30818,30763,30873 ,17783,17783,17783 ,0,0,0}, {30763,30818,30815 ,17783,17783,17783 ,0,0,0}, - {30790,30898,30788 ,726,726,726 ,0,0,0}, {30899,30798,30887 ,726,17783,17783 ,0,0,0}, - {30900,30874,30760 ,17797,17783,17783 ,0,0,0}, {30790,30886,30898 ,726,726,726 ,0,0,0}, - {30757,30900,30760 ,17785,17797,17783 ,0,0,0}, {30901,30778,30884 ,17783,17783,17783 ,0,0,0}, - {30787,30786,30890 ,726,17796,726 ,0,0,0}, {30776,30778,30901 ,17783,17783,17783 ,0,0,0}, - {30756,30882,30754 ,17786,17794,17795 ,0,0,0}, {30902,30773,30776 ,17795,17783,17783 ,0,0,0}, - {30761,30873,30763 ,17785,17783,17783 ,0,0,0}, {30784,30887,30795 ,726,17783,726 ,0,0,0}, - {30757,30885,30903 ,17785,17784,17785 ,0,0,0}, {30903,30900,30757 ,17785,17797,17785 ,0,0,0}, - {30754,30882,30885 ,17795,17794,17784 ,0,0,0}, {30751,30880,30756 ,17783,17792,17786 ,0,0,0}, - {30751,30881,30879 ,17783,17793,17791 ,0,0,0}, {30750,30878,30881 ,17786,17790,17793 ,0,0,0}, - {30767,30877,30749 ,17786,17789,17783 ,0,0,0}, {30767,30875,30876 ,17786,17787,17788 ,0,0,0}, - {30770,30871,30875 ,17785,726,17787 ,0,0,0}, {30773,30872,30772 ,17783,17784,17783 ,0,0,0}, - {30773,30902,30883 ,17783,17795,17784 ,0,0,0}, {30776,30901,30902 ,17783,17783,17795 ,0,0,0}, - {30779,30884,30778 ,17783,17783,17783 ,0,0,0}, {30779,30792,30794 ,17783,17783,17783 ,0,0,0}, - {30886,30790,30792 ,726,726,17783 ,0,0,0}, {30888,30788,30898 ,726,726,726 ,0,0,0}, - {30784,30788,30887 ,726,726,17783 ,0,0,0}, {30796,30795,30887 ,726,726,17783 ,0,0,0}, - {30891,30798,30899 ,17783,17783,726 ,0,0,0}, {30891,30802,30800 ,17783,17783,17796 ,0,0,0}, - {30896,30786,30802 ,17783,17796,17783 ,0,0,0}, {30805,30787,30889 ,17783,726,17796 ,0,0,0}, - {30893,30809,30889 ,726,726,17796 ,0,0,0}, {30892,30806,30808 ,17783,726,17783 ,0,0,0}, - {30893,30808,30809 ,726,17783,726 ,0,0,0}, {30895,30814,30806 ,17783,726,726 ,0,0,0}, - {30812,30894,30817 ,726,17783,726 ,0,0,0}, {30814,30895,30812 ,726,17783,726 ,0,0,0}, - {30817,30897,30815 ,726,17783,17783 ,0,0,0}, {30763,30815,30897 ,17783,17783,17783 ,0,0,0}, - {30888,30904,30887 ,726,17783,17783 ,0,0,0}, {30887,30904,30899 ,17783,17783,726 ,0,0,0}, - {30869,30739,30905 ,17798,17799,17799 ,0,0,0}, {30859,30863,30739 ,17800,17800,17799 ,0,0,0}, - {30739,30863,30905 ,17799,17800,17799 ,0,0,0}, {30869,30905,30870 ,17798,17799,17798 ,0,0,0}, - {30884,30793,30906 ,17801,17629,17802 ,0,0,0}, {30872,30883,30907 ,17803,17804,17805 ,0,0,0}, - {30908,30902,30901 ,17806,17807,17808 ,0,0,0}, {30909,30868,30877 ,17809,17810,17811 ,0,0,0}, - {30910,30911,30875 ,17812,17813,17814 ,0,0,0}, {30912,30880,30913 ,17815,17816,17817 ,0,0,0}, - {30879,30881,30914 ,17818,17819,17820 ,0,0,0}, {30885,30912,30915 ,17821,17815,17822 ,0,0,0}, - {30905,30900,30903 ,17823,17824,17825 ,0,0,0}, {30903,30915,30905 ,17825,17822,17823 ,0,0,0}, - {30900,30916,30874 ,17824,17826,17827 ,0,0,0}, {30916,30900,30905 ,17826,17824,17823 ,0,0,0}, - {30916,30917,30874 ,17826,17828,17827 ,0,0,0}, {30819,30873,30917 ,17644,17829,17828 ,0,0,0}, - {30874,30917,30873 ,17827,17828,17829 ,0,0,0}, {30818,30873,30819 ,17644,17829,17644 ,0,0,0}, - {30885,30882,30912 ,17821,17830,17815 ,0,0,0}, {30903,30885,30915 ,17825,17821,17822 ,0,0,0}, - {30880,30879,30913 ,17816,17818,17817 ,0,0,0}, {30882,30880,30912 ,17830,17816,17815 ,0,0,0}, - {30914,30881,30868 ,17820,17819,17810 ,0,0,0}, {30913,30879,30914 ,17817,17818,17820 ,0,0,0}, - {30877,30868,30878 ,17811,17810,17665 ,0,0,0}, {30868,30881,30878 ,17810,17819,17665 ,0,0,0}, - {30911,30909,30876 ,17813,17809,17831 ,0,0,0}, {30909,30877,30876 ,17809,17811,17831 ,0,0,0}, - {30871,30910,30875 ,17832,17812,17814 ,0,0,0}, {30875,30911,30876 ,17814,17813,17831 ,0,0,0}, - {30910,30872,30907 ,17812,17803,17805 ,0,0,0}, {30872,30910,30871 ,17803,17812,17832 ,0,0,0}, - {30883,30902,30821 ,17804,17807,17833 ,0,0,0}, {30883,30821,30907 ,17804,17833,17805 ,0,0,0}, - {30908,30901,30906 ,17806,17808,17802 ,0,0,0}, {30821,30902,30908 ,17833,17807,17806 ,0,0,0}, - {30793,30884,30794 ,17629,17801,17629 ,0,0,0}, {30906,30901,30884 ,17802,17808,17801 ,0,0,0}, - {30816,30863,30810 ,726,726,17834 ,0,0,0}, {30863,30811,30810 ,726,17834,17834 ,0,0,0}, - {30819,30863,30816 ,17835,726,726 ,0,0,0}, {30916,30863,30917 ,17836,726,17835 ,0,0,0}, - {30863,30819,30917 ,726,17835,17835 ,0,0,0}, {30905,30863,30916 ,17834,726,17836 ,0,0,0}, - {30910,30823,30911 ,726,17837,17838 ,0,0,0}, {30911,30823,30909 ,17838,17837,17839 ,0,0,0}, - {30823,30868,30909 ,17837,17837,17839 ,0,0,0}, {30823,30907,30821 ,17837,726,726 ,0,0,0}, - {30823,30910,30907 ,17837,726,726 ,0,0,0}, {30782,30866,30783 ,726,726,726 ,0,0,0}, - {30799,30866,30797 ,726,726,726 ,0,0,0}, {30866,30782,30797 ,726,726,726 ,0,0,0}, - {30785,30866,30801 ,726,726,726 ,0,0,0}, {30866,30799,30801 ,726,726,726 ,0,0,0}, - {30862,30804,30803 ,17840,726,17841 ,0,0,0}, {30785,30804,30862 ,726,726,17840 ,0,0,0}, - {30862,30813,30811 ,17840,17842,726 ,0,0,0}, {30862,30807,30813 ,17840,726,17842 ,0,0,0}, - {30803,30807,30862 ,17841,726,17840 ,0,0,0}, {30905,30915,30870 ,726,726,726 ,0,0,0}, - {30913,30870,30912 ,17843,726,17843 ,0,0,0}, {30915,30912,30870 ,726,17843,726 ,0,0,0}, - {30914,30868,30870 ,726,726,726 ,0,0,0}, {30914,30870,30913 ,726,726,17843 ,0,0,0}, - {30908,30824,30821 ,726,726,726 ,0,0,0}, {30824,30908,30906 ,726,726,726 ,0,0,0}, - {30791,30824,30793 ,726,726,726 ,0,0,0}, {30824,30906,30793 ,726,726,726 ,0,0,0}, - {30783,30824,30789 ,726,726,726 ,0,0,0}, {30824,30791,30789 ,726,726,726 ,0,0,0}, - {30918,30919,30781 ,17844,17845,17728 ,0,0,0}, {30781,30920,30918 ,17728,17846,17844 ,0,0,0}, - {30781,30764,30920 ,17728,17726,17846 ,0,0,0}, {30781,30921,30922 ,17728,17847,17848 ,0,0,0}, - {30919,30921,30781 ,17845,17847,17728 ,0,0,0}, {30781,30923,30924 ,17728,17849,17850 ,0,0,0}, - {30922,30923,30781 ,17848,17849,17728 ,0,0,0}, {30924,30925,30781 ,17850,17851,17728 ,0,0,0}, - {30926,30781,30927 ,17852,17728,17853 ,0,0,0}, {30781,30925,30927 ,17728,17851,17853 ,0,0,0}, - {30928,30781,30929 ,17854,17728,17855 ,0,0,0}, {30781,30926,30929 ,17728,17852,17855 ,0,0,0}, - {30930,30781,30931 ,17856,17728,17857 ,0,0,0}, {30781,30928,30931 ,17728,17854,17857 ,0,0,0}, - {30780,30781,30930 ,17728,17728,17856 ,0,0,0}, {30763,30897,30920 ,17629,17858,17859 ,0,0,0}, - {30922,30921,30892 ,17860,17861,17862 ,0,0,0}, {30919,30918,30894 ,17863,17864,17865 ,0,0,0}, - {30924,30890,30925 ,17866,17867,17868 ,0,0,0}, {30893,30889,30923 ,17869,17870,17871 ,0,0,0}, - {30891,30899,30926 ,17872,17873,17874 ,0,0,0}, {30891,30927,30896 ,17872,17875,17876 ,0,0,0}, - {30904,30888,30928 ,17877,17878,17879 ,0,0,0}, {30928,30929,30904 ,17879,17880,17877 ,0,0,0}, - {30931,30888,30898 ,17881,17878,17882 ,0,0,0}, {30888,30931,30928 ,17878,17881,17879 ,0,0,0}, - {30886,30930,30898 ,17883,17884,17882 ,0,0,0}, {30931,30898,30930 ,17881,17882,17884 ,0,0,0}, - {30886,30779,30780 ,17883,17644,17644 ,0,0,0}, {30780,30930,30886 ,17644,17884,17883 ,0,0,0}, - {30890,30924,30889 ,17867,17866,17870 ,0,0,0}, {30899,30929,30926 ,17873,17880,17874 ,0,0,0}, - {30904,30929,30899 ,17877,17880,17873 ,0,0,0}, {30892,30921,30895 ,17862,17861,17885 ,0,0,0}, - {30896,30927,30925 ,17876,17875,17868 ,0,0,0}, {30891,30926,30927 ,17872,17874,17875 ,0,0,0}, - {30890,30896,30925 ,17867,17876,17868 ,0,0,0}, {30923,30889,30924 ,17871,17870,17866 ,0,0,0}, - {30922,30892,30893 ,17860,17862,17869 ,0,0,0}, {30893,30923,30922 ,17869,17871,17860 ,0,0,0}, - {30918,30897,30894 ,17864,17858,17865 ,0,0,0}, {30895,30919,30894 ,17885,17863,17865 ,0,0,0}, - {30921,30919,30895 ,17861,17863,17885 ,0,0,0}, {30763,30920,30764 ,17629,17859,17629 ,0,0,0}, - {30897,30918,30920 ,17858,17864,17859 ,0,0,0}, {30829,30721,30932 ,17886,17629,17887 ,0,0,0}, - {30837,30858,30933 ,17888,17889,17890 ,0,0,0}, {30934,30857,30830 ,17891,17892,17893 ,0,0,0}, - {30935,30867,30841 ,17894,17895,17896 ,0,0,0}, {30936,30937,30840 ,17897,17898,17899 ,0,0,0}, - {30938,30846,30939 ,17900,17901,17902 ,0,0,0}, {30848,30844,30940 ,17903,17904,17905 ,0,0,0}, - {30851,30938,30941 ,17906,17900,17907 ,0,0,0}, {30860,30852,30856 ,17908,17909,17910 ,0,0,0}, - {30856,30941,30860 ,17910,17907,17908 ,0,0,0}, {30852,30942,30853 ,17909,17911,17912 ,0,0,0}, - {30942,30852,30860 ,17911,17909,17908 ,0,0,0}, {30942,30943,30853 ,17911,17913,17912 ,0,0,0}, - {30747,30854,30943 ,17644,17914,17913 ,0,0,0}, {30853,30943,30854 ,17912,17913,17914 ,0,0,0}, - {30746,30854,30747 ,17644,17914,17644 ,0,0,0}, {30851,30847,30938 ,17906,17915,17900 ,0,0,0}, - {30856,30851,30941 ,17910,17906,17907 ,0,0,0}, {30846,30848,30939 ,17901,17903,17902 ,0,0,0}, - {30847,30846,30938 ,17915,17901,17900 ,0,0,0}, {30940,30844,30867 ,17905,17904,17895 ,0,0,0}, - {30939,30848,30940 ,17902,17903,17905 ,0,0,0}, {30841,30867,30845 ,17896,17895,17695 ,0,0,0}, - {30867,30844,30845 ,17895,17904,17695 ,0,0,0}, {30937,30935,30839 ,17898,17894,17916 ,0,0,0}, - {30935,30841,30839 ,17894,17896,17916 ,0,0,0}, {30838,30936,30840 ,17917,17897,17899 ,0,0,0}, - {30840,30937,30839 ,17899,17898,17916 ,0,0,0}, {30936,30837,30933 ,17897,17888,17890 ,0,0,0}, - {30837,30936,30838 ,17888,17897,17917 ,0,0,0}, {30858,30857,30865 ,17889,17892,17918 ,0,0,0}, - {30858,30865,30933 ,17889,17918,17890 ,0,0,0}, {30934,30830,30932 ,17891,17893,17887 ,0,0,0}, - {30865,30857,30934 ,17918,17892,17891 ,0,0,0}, {30721,30829,30722 ,17629,17886,17629 ,0,0,0}, - {30932,30830,30829 ,17887,17893,17886 ,0,0,0}, {30864,30936,30933 ,730,17919,730 ,0,0,0}, - {30935,30864,30867 ,730,730,730 ,0,0,0}, {30936,30864,30937 ,17919,730,17919 ,0,0,0}, - {30864,30935,30937 ,730,730,17919 ,0,0,0}, {30933,30865,30864 ,730,17920,730 ,0,0,0}, - {30738,30859,30739 ,17921,17919,17921 ,0,0,0}, {30859,30943,30942 ,17919,17919,17920 ,0,0,0}, - {30859,30738,30744 ,17919,17921,730 ,0,0,0}, {30943,30859,30747 ,17919,17919,17922 ,0,0,0}, - {30859,30744,30747 ,17919,730,17922 ,0,0,0}, {30942,30860,30859 ,17920,17921,17919 ,0,0,0}, - {30725,30822,30710 ,17923,730,730 ,0,0,0}, {30822,30711,30710 ,730,17924,730 ,0,0,0}, - {30729,30822,30727 ,17925,730,17926 ,0,0,0}, {30822,30725,30727 ,730,17923,17926 ,0,0,0}, - {30713,30822,30729 ,17927,730,17925 ,0,0,0}, {30939,30861,30938 ,730,17920,17919 ,0,0,0}, - {30941,30938,30861 ,17919,17919,17920 ,0,0,0}, {30860,30941,30861 ,17922,17919,17920 ,0,0,0}, - {30940,30867,30861 ,17928,730,17920 ,0,0,0}, {30940,30861,30939 ,17928,17920,730 ,0,0,0}, - {30732,30731,30869 ,17922,730,17929 ,0,0,0}, {30713,30732,30869 ,17930,17922,17929 ,0,0,0}, - {30735,30741,30869 ,730,730,17929 ,0,0,0}, {30735,30869,30731 ,730,17929,730 ,0,0,0}, - {30739,30869,30741 ,730,17929,730 ,0,0,0}, {30865,30934,30820 ,730,730,730 ,0,0,0}, - {30820,30932,30721 ,730,730,730 ,0,0,0}, {30820,30934,30932 ,730,730,730 ,0,0,0}, - {30721,30719,30820 ,730,730,730 ,0,0,0}, {30820,30717,30711 ,730,730,730 ,0,0,0}, - {30719,30717,30820 ,730,730,730 ,0,0,0}, {30944,30945,30709 ,17931,17932,17649 ,0,0,0}, - {30709,30946,30944 ,17649,17933,17931 ,0,0,0}, {30709,30692,30946 ,17649,17647,17933 ,0,0,0}, - {30709,30947,30948 ,17649,17934,17935 ,0,0,0}, {30945,30947,30709 ,17932,17934,17649 ,0,0,0}, - {30709,30949,30950 ,17649,17936,17937 ,0,0,0}, {30948,30949,30709 ,17935,17936,17649 ,0,0,0}, - {30950,30951,30709 ,17937,17938,17649 ,0,0,0}, {30952,30709,30953 ,17939,17649,17940 ,0,0,0}, - {30709,30951,30953 ,17649,17938,17940 ,0,0,0}, {30954,30709,30955 ,17941,17649,17942 ,0,0,0}, - {30709,30952,30955 ,17649,17939,17942 ,0,0,0}, {30956,30709,30957 ,17943,17649,17944 ,0,0,0}, - {30709,30954,30957 ,17649,17941,17944 ,0,0,0}, {30708,30709,30956 ,17649,17649,17943 ,0,0,0}, - {30691,30855,30946 ,17629,17945,17946 ,0,0,0}, {30948,30947,30842 ,17947,17948,17949 ,0,0,0}, - {30945,30944,30849 ,17950,17951,17952 ,0,0,0}, {30950,30826,30951 ,17953,17954,17955 ,0,0,0}, - {30827,30828,30949 ,17956,17957,17958 ,0,0,0}, {30836,30835,30952 ,17959,17960,17961 ,0,0,0}, - {30836,30953,30825 ,17959,17962,17963 ,0,0,0}, {30834,30833,30954 ,17964,17965,17966 ,0,0,0}, - {30954,30955,30834 ,17966,17967,17964 ,0,0,0}, {30957,30833,30831 ,17968,17965,17969 ,0,0,0}, - {30833,30957,30954 ,17965,17968,17966 ,0,0,0}, {30832,30956,30831 ,17970,17971,17969 ,0,0,0}, - {30957,30831,30956 ,17968,17969,17971 ,0,0,0}, {30832,30707,30708 ,17970,17644,17644 ,0,0,0}, - {30708,30956,30832 ,17644,17971,17970 ,0,0,0}, {30826,30950,30828 ,17954,17953,17957 ,0,0,0}, - {30835,30955,30952 ,17960,17967,17961 ,0,0,0}, {30834,30955,30835 ,17964,17967,17960 ,0,0,0}, - {30842,30947,30850 ,17949,17948,17972 ,0,0,0}, {30825,30953,30951 ,17963,17962,17955 ,0,0,0}, - {30836,30952,30953 ,17959,17961,17962 ,0,0,0}, {30826,30825,30951 ,17954,17963,17955 ,0,0,0}, - {30949,30828,30950 ,17958,17957,17953 ,0,0,0}, {30948,30842,30827 ,17947,17949,17956 ,0,0,0}, - {30827,30949,30948 ,17956,17958,17947 ,0,0,0}, {30944,30855,30849 ,17951,17945,17952 ,0,0,0}, - {30850,30945,30849 ,17972,17950,17952 ,0,0,0}, {30947,30945,30850 ,17948,17950,17972 ,0,0,0}, - {30691,30946,30692 ,17629,17946,17629 ,0,0,0}, {30855,30944,30946 ,17945,17951,17946 ,0,0,0} -// M3abstandhalter20mm.prt - , {30958,30959,30960 ,17973,17974,17975 ,0,0,0}, {30960,30961,30962 ,17975,17976,17977 ,0,0,0}, - {30961,30963,30962 ,17976,17978,17977 ,0,0,0}, {30960,30962,30958 ,17975,17977,17973 ,0,0,0}, - {30964,30965,30966 ,17979,17980,17981 ,0,0,0}, {30966,30965,30963 ,17981,17980,17978 ,0,0,0}, - {30964,30967,30968 ,17979,17982,17983 ,0,0,0}, {30968,30965,30964 ,17983,17980,17979 ,0,0,0}, - {30968,30967,30969 ,17983,17982,17984 ,0,0,0}, {30969,30967,30970 ,17984,17982,17985 ,0,0,0}, - {30970,30971,30972 ,17985,17986,17987 ,0,0,0}, {30969,30970,30972 ,17984,17985,17987 ,0,0,0}, - {30963,30961,30966 ,17978,17976,17981 ,0,0,0}, {228,30973,30974 ,7498,126,17988 ,0,0,0}, - {228,30974,30971 ,7498,17988,17986 ,0,0,0}, {30971,30974,30972 ,17986,17988,17987 ,0,0,0}, - {30958,30975,30959 ,17973,17989,17974 ,0,0,0}, {30976,30975,30977 ,17990,17989,17991 ,0,0,0}, - {30975,30976,30959 ,17989,17990,17974 ,0,0,0}, {30978,30979,30977 ,17992,17993,17991 ,0,0,0}, - {30976,30977,30979 ,17990,17991,17993 ,0,0,0}, {30978,30980,30981 ,17992,17994,17995 ,0,0,0}, - {30981,30979,30978 ,17995,17993,17992 ,0,0,0}, {30982,30980,30983 ,17996,17994,17997 ,0,0,0}, - {30980,30982,30981 ,17994,17996,17995 ,0,0,0}, {30984,30985,30983 ,17998,17999,17997 ,0,0,0}, - {30982,30983,30985 ,17996,17997,17999 ,0,0,0}, {30984,30986,30987 ,17998,18000,18001 ,0,0,0}, - {30987,30985,30984 ,18001,17999,17998 ,0,0,0}, {242,30986,30988 ,18002,18000,18003 ,0,0,0}, - {30986,242,30987 ,18000,18002,18001 ,0,0,0}, {30984,30983,30989 ,18004,18005,18006 ,0,0,0}, - {30989,30986,30984 ,18006,18007,18004 ,0,0,0}, {30989,30988,30986 ,18006,18008,18007 ,0,0,0}, - {30989,30980,30978 ,18006,18009,18010 ,0,0,0}, {30983,30980,30989 ,18005,18009,18006 ,0,0,0}, - {30989,30977,30975 ,18006,18011,18012 ,0,0,0}, {30978,30977,30989 ,18010,18011,18006 ,0,0,0}, - {30975,30958,30989 ,18012,18013,18006 ,0,0,0}, {30963,30989,30962 ,18014,18006,18015 ,0,0,0}, - {30989,30958,30962 ,18006,18013,18015 ,0,0,0}, {30968,30989,30965 ,18016,18006,18017 ,0,0,0}, - {30989,30963,30965 ,18006,18014,18017 ,0,0,0}, {30972,30989,30969 ,18018,18006,18019 ,0,0,0}, - {30989,30968,30969 ,18006,18016,18019 ,0,0,0}, {30973,30989,30974 ,18020,18006,18021 ,0,0,0}, - {30989,30972,30974 ,18006,18018,18021 ,0,0,0}, {30990,30991,30992 ,18022,18023,17547 ,0,0,0}, - {30993,30994,30995 ,21,7309,17533 ,0,0,0}, {30996,30991,30997 ,17546,18023,18024 ,0,0,0}, - {30991,30996,30992 ,18023,17546,17547 ,0,0,0}, {30996,30997,30998 ,17546,18024,17549 ,0,0,0}, - {30999,31000,30998 ,18025,17552,17549 ,0,0,0}, {30998,30997,30999 ,17549,18024,18025 ,0,0,0}, - {31001,31000,30999 ,18026,17552,18025 ,0,0,0}, {31001,31002,31000 ,18026,126,17552 ,0,0,0}, - {31003,30990,30992 ,17543,18022,17547 ,0,0,0}, {31004,31005,31003 ,17554,18027,17543 ,0,0,0}, - {30990,31003,31005 ,18022,17543,18027 ,0,0,0}, {31006,31007,31005 ,17538,18028,18027 ,0,0,0}, - {31005,31004,31006 ,18027,17554,17538 ,0,0,0}, {31007,31008,31009 ,18028,17540,18029 ,0,0,0}, - {31008,31007,31006 ,17540,18028,17538 ,0,0,0}, {30993,31009,31010 ,21,18029,17541 ,0,0,0}, - {31008,31010,31009 ,17540,17541,18029 ,0,0,0}, {31011,31012,31013 ,18030,18031,17556 ,0,0,0}, - {30993,31010,30994 ,21,17541,7309 ,0,0,0}, {31014,31015,31016 ,17525,18032,17557 ,0,0,0}, - {31015,31011,31017 ,18032,18030,17536 ,0,0,0}, {31018,31019,31020 ,18033,18034,17529 ,0,0,0}, - {31021,31022,31019 ,18035,17526,18034 ,0,0,0}, {31023,31024,31025 ,17523,18036,17530 ,0,0,0}, - {31018,31025,31024 ,18033,17530,18036 ,0,0,0}, {31023,31026,31027 ,17523,18037,18038 ,0,0,0}, - {31027,31024,31023 ,18038,18036,17523 ,0,0,0}, {31022,31020,31019 ,17526,17529,18034 ,0,0,0}, - {31018,31020,31025 ,18033,17529,17530 ,0,0,0}, {31021,31015,31014 ,18035,18032,17525 ,0,0,0}, - {31021,31014,31022 ,18035,17525,17526 ,0,0,0}, {31011,31013,31017 ,18030,17556,17536 ,0,0,0}, - {31016,31015,31017 ,17557,18032,17536 ,0,0,0}, {30995,31012,30993 ,17533,18031,21 ,0,0,0}, - {31013,31012,30995 ,17556,18031,17533 ,0,0,0}, {31028,31029,31030 ,324,18039,18040 ,0,0,0}, - {31030,31031,31032 ,18040,18041,18042 ,0,0,0}, {31031,31033,31032 ,18041,18043,18042 ,0,0,0}, - {31030,31032,31028 ,18040,18042,324 ,0,0,0}, {31034,31035,31036 ,18044,18045,18046 ,0,0,0}, - {31036,31035,31033 ,18046,18045,18043 ,0,0,0}, {31034,31037,31038 ,18044,18047,18048 ,0,0,0}, - {31038,31035,31034 ,18048,18045,18044 ,0,0,0}, {31038,31037,31039 ,18048,18047,18049 ,0,0,0}, - {31039,31037,31040 ,18049,18047,18050 ,0,0,0}, {31040,31041,31042 ,18050,18051,18052 ,0,0,0}, - {31039,31040,31042 ,18049,18050,18052 ,0,0,0}, {31033,31031,31036 ,18043,18041,18046 ,0,0,0}, - {31043,31044,31045 ,18053,126,18054 ,0,0,0}, {31043,31045,31041 ,18053,18054,18051 ,0,0,0}, - {31041,31045,31042 ,18051,18054,18052 ,0,0,0}, {31028,31046,31029 ,324,18055,18039 ,0,0,0}, - {31047,31046,31048 ,18056,18055,18057 ,0,0,0}, {31046,31047,31029 ,18055,18056,18039 ,0,0,0}, - {31049,31050,31048 ,18058,18059,18057 ,0,0,0}, {31047,31048,31050 ,18056,18057,18059 ,0,0,0}, - {31049,31051,31052 ,18058,18060,18061 ,0,0,0}, {31052,31050,31049 ,18061,18059,18058 ,0,0,0}, - {31053,31051,31054 ,18062,18060,18063 ,0,0,0}, {31051,31053,31052 ,18060,18062,18061 ,0,0,0}, - {31055,31056,31054 ,18064,18065,18063 ,0,0,0}, {31053,31054,31056 ,18062,18063,18065 ,0,0,0}, - {31055,31057,31058 ,18064,18066,18067 ,0,0,0}, {31058,31056,31055 ,18067,18065,18064 ,0,0,0}, - {31059,31057,31060 ,82,18066,18068 ,0,0,0}, {31057,31059,31058 ,18066,82,18067 ,0,0,0}, - {31055,31054,31061 ,18069,18070,18071 ,0,0,0}, {31061,31057,31055 ,18071,18072,18069 ,0,0,0}, - {31061,31060,31057 ,18071,18073,18072 ,0,0,0}, {31061,31051,31049 ,18071,18074,18075 ,0,0,0}, - {31054,31051,31061 ,18070,18074,18071 ,0,0,0}, {31061,31048,31046 ,18071,18076,18077 ,0,0,0}, - {31049,31048,31061 ,18075,18076,18071 ,0,0,0}, {31046,31028,31061 ,18077,18078,18071 ,0,0,0}, - {31033,31061,31032 ,18079,18071,18080 ,0,0,0}, {31061,31028,31032 ,18071,18078,18080 ,0,0,0}, - {31038,31061,31035 ,18081,18071,18082 ,0,0,0}, {31061,31033,31035 ,18071,18079,18082 ,0,0,0}, - {31042,31061,31039 ,18083,18071,18084 ,0,0,0}, {31061,31038,31039 ,18071,18081,18084 ,0,0,0}, - {31044,31061,31045 ,18085,18071,18086 ,0,0,0}, {31061,31042,31045 ,18071,18083,18086 ,0,0,0}, - {31062,31063,31064 ,18087,18088,17460 ,0,0,0}, {31065,31066,31067 ,324,17303,17446 ,0,0,0}, - {31068,31063,31069 ,17459,18088,18089 ,0,0,0}, {31063,31068,31064 ,18088,17459,17460 ,0,0,0}, - {31068,31069,31070 ,17459,18089,17462 ,0,0,0}, {31071,31072,31070 ,18090,17464,17462 ,0,0,0}, - {31070,31069,31071 ,17462,18089,18090 ,0,0,0}, {31073,31072,31071 ,18091,17464,18090 ,0,0,0}, - {31073,31074,31072 ,18091,18092,17464 ,0,0,0}, {31075,31062,31064 ,17456,18087,17460 ,0,0,0}, - {31076,31077,31075 ,17465,18093,17456 ,0,0,0}, {31062,31075,31077 ,18087,17456,18093 ,0,0,0}, - {31078,31079,31077 ,17451,18094,18093 ,0,0,0}, {31077,31076,31078 ,18093,17465,17451 ,0,0,0}, - {31079,31080,31081 ,18094,17453,18095 ,0,0,0}, {31080,31079,31078 ,17453,18094,17451 ,0,0,0}, - {31065,31081,31082 ,324,18095,17454 ,0,0,0}, {31080,31082,31081 ,17453,17454,18095 ,0,0,0}, - {31083,31084,31085 ,18096,18097,17467 ,0,0,0}, {31065,31082,31066 ,324,17454,17303 ,0,0,0}, - {31086,31087,31088 ,17438,18098,17468 ,0,0,0}, {31087,31083,31089 ,18098,18096,17449 ,0,0,0}, - {31090,31091,31092 ,18099,18100,17442 ,0,0,0}, {31093,31094,31091 ,18101,17439,18100 ,0,0,0}, - {31095,31096,31097 ,17435,18102,17443 ,0,0,0}, {31090,31097,31096 ,18099,17443,18102 ,0,0,0}, - {31095,31098,31099 ,17435,82,18103 ,0,0,0}, {31099,31096,31095 ,18103,18102,17435 ,0,0,0}, - {31094,31092,31091 ,17439,17442,18100 ,0,0,0}, {31090,31092,31097 ,18099,17442,17443 ,0,0,0}, - {31093,31087,31086 ,18101,18098,17438 ,0,0,0}, {31093,31086,31094 ,18101,17438,17439 ,0,0,0}, - {31083,31085,31089 ,18096,17467,17449 ,0,0,0}, {31088,31087,31089 ,17468,18098,17449 ,0,0,0}, - {31067,31084,31065 ,17446,18097,324 ,0,0,0}, {31085,31084,31067 ,17467,18097,17446 ,0,0,0}, - {31100,30991,31101 ,18104,18104,18104 ,0,0,0}, {31102,31103,30991 ,18104,18104,18104 ,0,0,0}, - {30991,31103,31101 ,18104,18104,18104 ,0,0,0}, {31100,31101,31104 ,18104,18104,18104 ,0,0,0}, - {31105,31106,30994 ,730,730,730 ,0,0,0}, {31107,31017,31108 ,730,730,730 ,0,0,0}, - {31109,242,31002 ,730,730,730 ,0,0,0}, {31110,30985,30987 ,730,730,730 ,0,0,0}, - {31111,30998,31112 ,730,730,730 ,0,0,0}, {30996,31111,31113 ,730,730,730 ,0,0,0}, - {31113,30992,30996 ,730,730,730 ,0,0,0}, {31114,31003,31113 ,730,730,730 ,0,0,0}, - {30998,31111,30996 ,730,730,730 ,0,0,0}, {31000,242,31112 ,730,730,730 ,0,0,0}, - {31000,31112,30998 ,730,730,730 ,0,0,0}, {31114,31115,31004 ,730,730,730 ,0,0,0}, - {31000,31002,242 ,730,730,730 ,0,0,0}, {31006,31116,31008 ,730,730,730 ,0,0,0}, - {31004,31115,31006 ,730,730,730 ,0,0,0}, {31117,30981,30982 ,730,730,730 ,0,0,0}, - {30979,30981,31118 ,730,730,730 ,0,0,0}, {30994,31106,30995 ,730,730,730 ,0,0,0}, - {31119,30976,31120 ,730,730,730 ,0,0,0}, {31121,30959,30976 ,730,730,730 ,0,0,0}, - {31013,30995,31108 ,730,730,730 ,0,0,0}, {31122,31123,31107 ,730,730,730 ,0,0,0}, - {30960,31124,30961 ,730,730,730 ,0,0,0}, {30959,31125,30960 ,730,730,730 ,0,0,0}, - {31022,31014,31123 ,730,730,730 ,0,0,0}, {31123,31016,31017 ,730,730,730 ,0,0,0}, - {30966,31126,31127 ,730,730,730 ,0,0,0}, {31126,30961,31128 ,730,730,730 ,0,0,0}, - {31129,31020,31130 ,730,730,730 ,0,0,0}, {31131,30967,30964 ,730,730,730 ,0,0,0}, - {30964,30966,31127 ,730,730,730 ,0,0,0}, {30970,31132,31133 ,730,730,730 ,0,0,0}, - {228,31026,31023 ,730,730,730 ,0,0,0}, {30971,31134,228 ,730,730,730 ,0,0,0}, - {30971,30970,31133 ,730,730,730 ,0,0,0}, {31135,31023,31025 ,730,730,730 ,0,0,0}, - {31136,31132,30967 ,730,730,730 ,0,0,0}, {31025,31129,31135 ,730,730,730 ,0,0,0}, - {31116,31105,31010 ,730,730,730 ,0,0,0}, {30982,30985,31137 ,730,730,730 ,0,0,0}, - {30959,31121,31125 ,730,730,730 ,0,0,0}, {31113,31003,30992 ,730,730,730 ,0,0,0}, - {31114,31004,31003 ,730,730,730 ,0,0,0}, {31116,31006,31115 ,730,730,730 ,0,0,0}, - {31116,31010,31008 ,730,730,730 ,0,0,0}, {31105,30994,31010 ,730,730,730 ,0,0,0}, - {31108,30995,31106 ,730,730,730 ,0,0,0}, {31108,31017,31013 ,730,730,730 ,0,0,0}, - {31123,31017,31107 ,730,730,730 ,0,0,0}, {31123,31130,31020 ,730,730,730 ,0,0,0}, - {31020,31022,31123 ,730,730,730 ,0,0,0}, {31129,31025,31020 ,730,730,730 ,0,0,0}, - {228,31023,31135 ,730,730,730 ,0,0,0}, {228,31134,31026 ,730,730,730 ,0,0,0}, - {30971,31133,31134 ,730,730,730 ,0,0,0}, {30967,31132,30970 ,730,730,730 ,0,0,0}, - {30967,31131,31136 ,730,730,730 ,0,0,0}, {30964,31127,31131 ,730,730,730 ,0,0,0}, - {30961,31126,30966 ,730,730,730 ,0,0,0}, {30961,31124,31128 ,730,730,730 ,0,0,0}, - {30960,31125,31124 ,730,730,730 ,0,0,0}, {31119,31121,30976 ,730,730,730 ,0,0,0}, - {30979,31120,30976 ,730,730,730 ,0,0,0}, {30981,31117,31118 ,730,730,730 ,0,0,0}, - {30979,31118,31120 ,730,730,730 ,0,0,0}, {30982,31138,31117 ,730,730,730 ,0,0,0}, - {31137,30985,31110 ,730,730,730 ,0,0,0}, {31138,30982,31137 ,730,730,730 ,0,0,0}, - {31110,30987,31109 ,730,730,730 ,0,0,0}, {242,31109,30987 ,730,730,730 ,0,0,0}, - {31016,31123,31014 ,730,730,730 ,0,0,0}, {31122,31130,31123 ,730,730,730 ,0,0,0}, - {31139,31140,31091 ,18105,18106,18106 ,0,0,0}, {31140,31141,31142 ,18106,1433,1433 ,0,0,0}, - {31142,31091,31140 ,1433,18106,18106 ,0,0,0}, {31091,31143,31139 ,18106,18105,18105 ,0,0,0}, - {31144,31145,31063 ,2162,18107,18107 ,0,0,0}, {31145,31100,31104 ,18107,2162,2162 ,0,0,0}, - {31104,31063,31145 ,2162,18107,18107 ,0,0,0}, {31063,31146,31144 ,18107,2162,2162 ,0,0,0}, - {31065,31141,31147 ,18108,1077,18109 ,0,0,0}, {31144,31146,31147 ,18110,18110,18109 ,0,0,0}, - {31146,31065,31147 ,18110,18108,18109 ,0,0,0}, {31065,31142,31141 ,18108,18111,1077 ,0,0,0}, - {30993,31148,31102 ,18112,18112,18112 ,0,0,0}, {30993,31149,31150 ,18112,18113,18113 ,0,0,0}, - {30993,31150,31148 ,18112,18113,18112 ,0,0,0}, {31148,31103,31102 ,18112,18112,18112 ,0,0,0}, - {31151,31052,31152 ,726,7628,8135 ,0,0,0}, {31153,31041,31154 ,7628,7625,7628 ,0,0,0}, - {31047,31050,31155 ,7627,7625,7761 ,0,0,0}, {31047,31156,31157 ,7627,18114,7253 ,0,0,0}, - {31157,31158,31029 ,7253,18115,7628 ,0,0,0}, {31029,31158,31030 ,7628,18115,7627 ,0,0,0}, - {31050,31052,31151 ,7625,7628,726 ,0,0,0}, {31159,31160,31031 ,8017,18116,7628 ,0,0,0}, - {31031,31030,31161 ,7628,7627,18117 ,0,0,0}, {31162,31036,31160 ,7756,7627,18116 ,0,0,0}, - {31053,31163,31152 ,7628,8135,8135 ,0,0,0}, {31059,31074,31164 ,7628,7628,7628 ,0,0,0}, - {31034,31165,31037 ,7880,8135,7625 ,0,0,0}, {31041,31040,31154 ,7625,7628,7628 ,0,0,0}, - {31166,31072,31059 ,726,7628,7628 ,0,0,0}, {31078,31076,31167 ,7628,726,7628 ,0,0,0}, - {31167,31068,31168 ,7628,726,726 ,0,0,0}, {31169,31067,31170 ,7626,726,726 ,0,0,0}, - {31171,31080,31078 ,7628,7626,7628 ,0,0,0}, {31085,31169,31089 ,7628,7626,726 ,0,0,0}, - {31172,31088,31173 ,7628,7628,726 ,0,0,0}, {31174,31092,31175 ,7628,726,7628 ,0,0,0}, - {31086,31172,31175 ,726,7628,7628 ,0,0,0}, {31170,31066,31176 ,726,7626,7628 ,0,0,0}, - {31174,31177,31097 ,7628,7628,726 ,0,0,0}, {31171,31176,31082 ,7628,7628,7628 ,0,0,0}, - {31098,31043,31153 ,7628,7628,7628 ,0,0,0}, {31043,31098,31095 ,7628,7628,7628 ,0,0,0}, - {31070,31178,31068 ,726,726,726 ,0,0,0}, {31179,31078,31167 ,726,7628,7628 ,0,0,0}, - {31180,31154,31040 ,7754,7628,7628 ,0,0,0}, {31070,31166,31178 ,726,726,726 ,0,0,0}, - {31037,31180,31040 ,7625,7754,7628 ,0,0,0}, {31181,31058,31164 ,7628,7628,7628 ,0,0,0}, - {31067,31066,31170 ,726,7626,726 ,0,0,0}, {31056,31058,31181 ,7628,7628,7628 ,0,0,0}, - {31036,31162,31034 ,7627,7756,7880 ,0,0,0}, {31182,31053,31056 ,7880,7628,7628 ,0,0,0}, - {31041,31153,31043 ,7625,7628,7628 ,0,0,0}, {31064,31167,31075 ,726,7628,726 ,0,0,0}, - {31037,31165,31183 ,7625,8135,7625 ,0,0,0}, {31183,31180,31037 ,7625,7754,7625 ,0,0,0}, - {31034,31162,31165 ,7880,7756,8135 ,0,0,0}, {31031,31160,31036 ,7628,18116,7627 ,0,0,0}, - {31031,31161,31159 ,7628,18117,8017 ,0,0,0}, {31030,31158,31161 ,7627,18115,18117 ,0,0,0}, - {31047,31157,31029 ,7627,7253,7628 ,0,0,0}, {31047,31155,31156 ,7627,7761,18114 ,0,0,0}, - {31050,31151,31155 ,7625,726,7761 ,0,0,0}, {31053,31152,31052 ,7628,8135,7628 ,0,0,0}, - {31053,31182,31163 ,7628,7880,8135 ,0,0,0}, {31056,31181,31182 ,7628,7628,7880 ,0,0,0}, - {31059,31164,31058 ,7628,7628,7628 ,0,0,0}, {31059,31072,31074 ,7628,7628,7628 ,0,0,0}, - {31166,31070,31072 ,726,726,7628 ,0,0,0}, {31168,31068,31178 ,726,726,726 ,0,0,0}, - {31064,31068,31167 ,726,726,7628 ,0,0,0}, {31076,31075,31167 ,726,726,7628 ,0,0,0}, - {31171,31078,31179 ,7628,7628,726 ,0,0,0}, {31171,31082,31080 ,7628,7628,7626 ,0,0,0}, - {31176,31066,31082 ,7628,7626,7628 ,0,0,0}, {31085,31067,31169 ,7628,726,7626 ,0,0,0}, - {31173,31089,31169 ,726,726,7626 ,0,0,0}, {31172,31086,31088 ,7628,726,7628 ,0,0,0}, - {31173,31088,31089 ,726,7628,726 ,0,0,0}, {31175,31094,31086 ,7628,726,726 ,0,0,0}, - {31092,31174,31097 ,726,7628,726 ,0,0,0}, {31094,31175,31092 ,726,7628,726 ,0,0,0}, - {31097,31177,31095 ,726,7628,7628 ,0,0,0}, {31043,31095,31177 ,7628,7628,7628 ,0,0,0}, - {31168,31184,31167 ,726,7628,7628 ,0,0,0}, {31167,31184,31179 ,7628,7628,726 ,0,0,0}, - {31149,31019,31185 ,18118,18119,18119 ,0,0,0}, {31139,31143,31019 ,18120,18120,18119 ,0,0,0}, - {31019,31143,31185 ,18119,18120,18119 ,0,0,0}, {31149,31185,31150 ,18118,18119,18118 ,0,0,0}, - {31164,31073,31186 ,17413,18121,18122 ,0,0,0}, {31152,31163,31187 ,17404,17412,18123 ,0,0,0}, - {31188,31182,31181 ,18124,17410,17415 ,0,0,0}, {31189,31148,31157 ,18125,18126,17385 ,0,0,0}, - {31190,31191,31155 ,18127,18128,17407 ,0,0,0}, {31192,31160,31193 ,18129,17396,18130 ,0,0,0}, - {31159,31161,31194 ,17398,17400,18131 ,0,0,0}, {31165,31192,31195 ,17393,18129,18132 ,0,0,0}, - {31185,31180,31183 ,18133,17386,17384 ,0,0,0}, {31183,31195,31185 ,17384,18132,18133 ,0,0,0}, - {31180,31196,31154 ,17386,18134,17388 ,0,0,0}, {31196,31180,31185 ,18134,17386,18133 ,0,0,0}, - {31196,31197,31154 ,18134,18135,17388 ,0,0,0}, {31099,31153,31197 ,18103,17390,18135 ,0,0,0}, - {31154,31197,31153 ,17388,18135,17390 ,0,0,0}, {31098,31153,31099 ,82,17390,18103 ,0,0,0}, - {31165,31162,31192 ,17393,17394,18129 ,0,0,0}, {31183,31165,31195 ,17384,17393,18132 ,0,0,0}, - {31160,31159,31193 ,17396,17398,18130 ,0,0,0}, {31162,31160,31192 ,17394,17396,18129 ,0,0,0}, - {31194,31161,31148 ,18131,17400,18126 ,0,0,0}, {31193,31159,31194 ,18130,17398,18131 ,0,0,0}, - {31157,31148,31158 ,17385,18126,18136 ,0,0,0}, {31148,31161,31158 ,18126,17400,18136 ,0,0,0}, - {31191,31189,31156 ,18128,18125,17403 ,0,0,0}, {31189,31157,31156 ,18125,17385,17403 ,0,0,0}, - {31151,31190,31155 ,17406,18127,17407 ,0,0,0}, {31155,31191,31156 ,17407,18128,17403 ,0,0,0}, - {31190,31152,31187 ,18127,17404,18123 ,0,0,0}, {31152,31190,31151 ,17404,18127,17406 ,0,0,0}, - {31163,31182,31101 ,17412,17410,18137 ,0,0,0}, {31163,31101,31187 ,17412,18137,18123 ,0,0,0}, - {31188,31181,31186 ,18124,17415,18122 ,0,0,0}, {31101,31182,31188 ,18137,17410,18124 ,0,0,0}, - {31073,31164,31074 ,18121,17413,18092 ,0,0,0}, {31186,31181,31164 ,18122,17415,17413 ,0,0,0}, - {31096,31143,31090 ,726,726,7661 ,0,0,0}, {31143,31091,31090 ,726,7661,7661 ,0,0,0}, - {31099,31143,31096 ,18138,726,726 ,0,0,0}, {31196,31143,31197 ,7658,726,18138 ,0,0,0}, - {31143,31099,31197 ,726,18138,18138 ,0,0,0}, {31185,31143,31196 ,7661,726,7658 ,0,0,0}, - {31190,31103,31191 ,726,17471,17470 ,0,0,0}, {31191,31103,31189 ,17470,17471,18139 ,0,0,0}, - {31103,31148,31189 ,17471,17471,18139 ,0,0,0}, {31103,31187,31101 ,17471,726,726 ,0,0,0}, - {31103,31190,31187 ,17471,726,726 ,0,0,0}, {31062,31146,31063 ,726,726,726 ,0,0,0}, - {31079,31146,31077 ,726,726,726 ,0,0,0}, {31146,31062,31077 ,726,726,726 ,0,0,0}, - {31065,31146,31081 ,726,726,726 ,0,0,0}, {31146,31079,31081 ,726,726,726 ,0,0,0}, - {31142,31084,31083 ,7659,726,18140 ,0,0,0}, {31065,31084,31142 ,726,726,7659 ,0,0,0}, - {31142,31093,31091 ,7659,18141,726 ,0,0,0}, {31142,31087,31093 ,7659,726,18141 ,0,0,0}, - {31083,31087,31142 ,18140,726,7659 ,0,0,0}, {31185,31195,31150 ,726,726,726 ,0,0,0}, - {31193,31150,31192 ,7660,726,7660 ,0,0,0}, {31195,31192,31150 ,726,7660,726 ,0,0,0}, - {31194,31148,31150 ,726,726,726 ,0,0,0}, {31194,31150,31193 ,726,726,7660 ,0,0,0}, - {31188,31104,31101 ,726,726,726 ,0,0,0}, {31104,31188,31186 ,726,726,726 ,0,0,0}, - {31071,31104,31073 ,726,726,726 ,0,0,0}, {31104,31186,31073 ,726,726,726 ,0,0,0}, - {31063,31104,31069 ,726,726,726 ,0,0,0}, {31104,31071,31069 ,726,726,726 ,0,0,0}, - {31198,31199,31061 ,18142,18143,18144 ,0,0,0}, {31061,31200,31198 ,18144,18145,18142 ,0,0,0}, - {31061,31044,31200 ,18144,18146,18145 ,0,0,0}, {31061,31201,31202 ,18144,18147,18148 ,0,0,0}, - {31199,31201,31061 ,18143,18147,18144 ,0,0,0}, {31061,31203,31204 ,18144,18149,18150 ,0,0,0}, - {31202,31203,31061 ,18148,18149,18144 ,0,0,0}, {31204,31205,31061 ,18150,18151,18144 ,0,0,0}, - {31206,31061,31207 ,18152,18144,18153 ,0,0,0}, {31061,31205,31207 ,18144,18151,18153 ,0,0,0}, - {31208,31061,31209 ,18154,18144,18155 ,0,0,0}, {31061,31206,31209 ,18144,18152,18155 ,0,0,0}, - {31210,31061,31211 ,18156,18144,18157 ,0,0,0}, {31061,31208,31211 ,18144,18154,18157 ,0,0,0}, - {31060,31061,31210 ,18158,18144,18156 ,0,0,0}, {31043,31177,31200 ,18159,18160,18161 ,0,0,0}, - {31202,31201,31172 ,18162,18163,18164 ,0,0,0}, {31199,31198,31174 ,18165,18166,18167 ,0,0,0}, - {31204,31170,31205 ,18168,18169,18170 ,0,0,0}, {31173,31169,31203 ,18171,18172,18173 ,0,0,0}, - {31171,31179,31206 ,18174,18175,18176 ,0,0,0}, {31171,31207,31176 ,18174,18177,18178 ,0,0,0}, - {31184,31168,31208 ,18179,18180,18181 ,0,0,0}, {31208,31209,31184 ,18181,18182,18179 ,0,0,0}, - {31211,31168,31178 ,18183,18180,18184 ,0,0,0}, {31168,31211,31208 ,18180,18183,18181 ,0,0,0}, - {31166,31210,31178 ,18185,18186,18184 ,0,0,0}, {31211,31178,31210 ,18183,18184,18186 ,0,0,0}, - {31166,31059,31060 ,18185,18187,18188 ,0,0,0}, {31060,31210,31166 ,18188,18186,18185 ,0,0,0}, - {31170,31204,31169 ,18169,18168,18172 ,0,0,0}, {31179,31209,31206 ,18175,18182,18176 ,0,0,0}, - {31184,31209,31179 ,18179,18182,18175 ,0,0,0}, {31172,31201,31175 ,18164,18163,18189 ,0,0,0}, - {31176,31207,31205 ,18178,18177,18170 ,0,0,0}, {31171,31206,31207 ,18174,18176,18177 ,0,0,0}, - {31170,31176,31205 ,18169,18178,18170 ,0,0,0}, {31203,31169,31204 ,18173,18172,18168 ,0,0,0}, - {31202,31172,31173 ,18162,18164,18171 ,0,0,0}, {31173,31203,31202 ,18171,18173,18162 ,0,0,0}, - {31198,31177,31174 ,18166,18160,18167 ,0,0,0}, {31175,31199,31174 ,18189,18165,18167 ,0,0,0}, - {31201,31199,31175 ,18163,18165,18189 ,0,0,0}, {31043,31200,31044 ,18159,18161,35 ,0,0,0}, - {31177,31198,31200 ,18160,18166,18161 ,0,0,0}, {31109,31001,31212 ,17331,18026,18190 ,0,0,0}, - {31117,31138,31213 ,17322,17330,18191 ,0,0,0}, {31214,31137,31110 ,18192,17328,17333 ,0,0,0}, - {31215,31147,31121 ,18193,18194,17304 ,0,0,0}, {31216,31217,31120 ,18195,18196,17325 ,0,0,0}, - {31218,31126,31219 ,18197,17314,18198 ,0,0,0}, {31128,31124,31220 ,17316,17318,18199 ,0,0,0}, - {31131,31218,31221 ,17311,18197,18200 ,0,0,0}, {31140,31132,31136 ,18201,17305,17302 ,0,0,0}, - {31136,31221,31140 ,17302,18200,18201 ,0,0,0}, {31132,31222,31133 ,17305,18202,17307 ,0,0,0}, - {31222,31132,31140 ,18202,17305,18201 ,0,0,0}, {31222,31223,31133 ,18202,18203,17307 ,0,0,0}, - {31027,31134,31223 ,18204,17309,18203 ,0,0,0}, {31133,31223,31134 ,17307,18203,17309 ,0,0,0}, - {31026,31134,31027 ,18205,17309,18204 ,0,0,0}, {31131,31127,31218 ,17311,17312,18197 ,0,0,0}, - {31136,31131,31221 ,17302,17311,18200 ,0,0,0}, {31126,31128,31219 ,17314,17316,18198 ,0,0,0}, - {31127,31126,31218 ,17312,17314,18197 ,0,0,0}, {31220,31124,31147 ,18199,17318,18194 ,0,0,0}, - {31219,31128,31220 ,18198,17316,18199 ,0,0,0}, {31121,31147,31125 ,17304,18194,10001 ,0,0,0}, - {31147,31124,31125 ,18194,17318,10001 ,0,0,0}, {31217,31215,31119 ,18196,18193,17321 ,0,0,0}, - {31215,31121,31119 ,18193,17304,17321 ,0,0,0}, {31118,31216,31120 ,17324,18195,17325 ,0,0,0}, - {31120,31217,31119 ,17325,18196,17321 ,0,0,0}, {31216,31117,31213 ,18195,17322,18191 ,0,0,0}, - {31117,31216,31118 ,17322,18195,17324 ,0,0,0}, {31138,31137,31145 ,17330,17328,18206 ,0,0,0}, - {31138,31145,31213 ,17330,18206,18191 ,0,0,0}, {31214,31110,31212 ,18192,17333,18190 ,0,0,0}, - {31145,31137,31214 ,18206,17328,18192 ,0,0,0}, {31001,31109,31002 ,18026,17331,126 ,0,0,0}, - {31212,31110,31109 ,18190,17333,17331 ,0,0,0}, {31144,31216,31213 ,730,17561,730 ,0,0,0}, - {31215,31144,31147 ,730,730,730 ,0,0,0}, {31216,31144,31217 ,17561,730,17561 ,0,0,0}, - {31144,31215,31217 ,730,730,17561 ,0,0,0}, {31213,31145,31144 ,730,7433,730 ,0,0,0}, - {31018,31139,31019 ,7376,17561,7376 ,0,0,0}, {31139,31223,31222 ,17561,17561,7433 ,0,0,0}, - {31139,31018,31024 ,17561,7376,730 ,0,0,0}, {31223,31139,31027 ,17561,17561,18207 ,0,0,0}, - {31139,31024,31027 ,17561,730,18207 ,0,0,0}, {31222,31140,31139 ,7433,7376,17561 ,0,0,0}, - {31005,31102,30990 ,7015,730,730 ,0,0,0}, {31102,30991,30990 ,730,11465,730 ,0,0,0}, - {31009,31102,31007 ,7532,730,7016 ,0,0,0}, {31102,31005,31007 ,730,7015,7016 ,0,0,0}, - {30993,31102,31009 ,18208,730,7532 ,0,0,0}, {31219,31141,31218 ,730,7433,17561 ,0,0,0}, - {31221,31218,31141 ,17561,17561,7433 ,0,0,0}, {31140,31221,31141 ,18207,17561,7433 ,0,0,0}, - {31220,31147,31141 ,18209,730,7433 ,0,0,0}, {31220,31141,31219 ,18209,7433,730 ,0,0,0}, - {31012,31011,31149 ,18207,730,9877 ,0,0,0}, {30993,31012,31149 ,18210,18207,9877 ,0,0,0}, - {31015,31021,31149 ,730,730,9877 ,0,0,0}, {31015,31149,31011 ,730,9877,730 ,0,0,0}, - {31019,31149,31021 ,730,9877,730 ,0,0,0}, {31145,31214,31100 ,730,730,730 ,0,0,0}, - {31100,31212,31001 ,730,730,730 ,0,0,0}, {31100,31214,31212 ,730,730,730 ,0,0,0}, - {31001,30999,31100 ,730,730,730 ,0,0,0}, {31100,30997,30991 ,730,730,730 ,0,0,0}, - {30999,30997,31100 ,730,730,730 ,0,0,0}, {31224,31225,30989 ,18211,18212,18213 ,0,0,0}, - {30989,31226,31224 ,18213,18214,18211 ,0,0,0}, {30989,30973,31226 ,18213,18215,18214 ,0,0,0}, - {30989,31227,31228 ,18213,18216,18217 ,0,0,0}, {31225,31227,30989 ,18212,18216,18213 ,0,0,0}, - {30989,31229,31230 ,18213,18218,18219 ,0,0,0}, {31228,31229,30989 ,18217,18218,18213 ,0,0,0}, - {31230,31231,30989 ,18219,18220,18213 ,0,0,0}, {31232,30989,31233 ,18221,18213,18222 ,0,0,0}, - {30989,31231,31233 ,18213,18220,18222 ,0,0,0}, {31234,30989,31235 ,18223,18213,18224 ,0,0,0}, - {30989,31232,31235 ,18213,18221,18224 ,0,0,0}, {31236,30989,31237 ,18225,18213,18226 ,0,0,0}, - {30989,31234,31237 ,18213,18223,18226 ,0,0,0}, {30988,30989,31236 ,18227,18213,18225 ,0,0,0}, - {228,31135,31226 ,3345,18228,18229 ,0,0,0}, {31228,31227,31122 ,18230,18231,18232 ,0,0,0}, - {31225,31224,31129 ,18233,18234,18235 ,0,0,0}, {31230,31106,31231 ,18236,18237,18238 ,0,0,0}, - {31107,31108,31229 ,18239,18240,18241 ,0,0,0}, {31116,31115,31232 ,18242,18243,18244 ,0,0,0}, - {31116,31233,31105 ,18242,18245,18246 ,0,0,0}, {31114,31113,31234 ,18247,18248,18249 ,0,0,0}, - {31234,31235,31114 ,18249,18250,18247 ,0,0,0}, {31237,31113,31111 ,18251,18248,18252 ,0,0,0}, - {31113,31237,31234 ,18248,18251,18249 ,0,0,0}, {31112,31236,31111 ,18253,18254,18252 ,0,0,0}, - {31237,31111,31236 ,18251,18252,18254 ,0,0,0}, {31112,242,30988 ,18253,18255,18256 ,0,0,0}, - {30988,31236,31112 ,18256,18254,18253 ,0,0,0}, {31106,31230,31108 ,18237,18236,18240 ,0,0,0}, - {31115,31235,31232 ,18243,18250,18244 ,0,0,0}, {31114,31235,31115 ,18247,18250,18243 ,0,0,0}, - {31122,31227,31130 ,18232,18231,18257 ,0,0,0}, {31105,31233,31231 ,18246,18245,18238 ,0,0,0}, - {31116,31232,31233 ,18242,18244,18245 ,0,0,0}, {31106,31105,31231 ,18237,18246,18238 ,0,0,0}, - {31229,31108,31230 ,18241,18240,18236 ,0,0,0}, {31228,31122,31107 ,18230,18232,18239 ,0,0,0}, - {31107,31229,31228 ,18239,18241,18230 ,0,0,0}, {31224,31135,31129 ,18234,18228,18235 ,0,0,0}, - {31130,31225,31129 ,18257,18233,18235 ,0,0,0}, {31227,31225,31130 ,18231,18233,18257 ,0,0,0}, - {228,31226,30973 ,3345,18229,126 ,0,0,0}, {31135,31224,31226 ,18228,18234,18229 ,0,0,0} -// M3abstandhalter20mm.prt - , {31238,31239,31240 ,17973,17974,17975 ,0,0,0}, {31240,31241,31242 ,17975,17976,17977 ,0,0,0}, - {31241,31243,31242 ,17976,17978,17977 ,0,0,0}, {31240,31242,31238 ,17975,17977,17973 ,0,0,0}, - {31244,31245,31246 ,17979,17980,17981 ,0,0,0}, {31246,31245,31243 ,17981,17980,17978 ,0,0,0}, - {31244,31247,31248 ,17979,17982,17983 ,0,0,0}, {31248,31245,31244 ,17983,17980,17979 ,0,0,0}, - {31248,31247,31249 ,17983,17982,17984 ,0,0,0}, {31249,31247,31250 ,17984,17982,17985 ,0,0,0}, - {31250,31251,31252 ,17985,17986,17987 ,0,0,0}, {31249,31250,31252 ,17984,17985,17987 ,0,0,0}, - {31243,31241,31246 ,17978,17976,17981 ,0,0,0}, {160,31253,31254 ,7498,126,17988 ,0,0,0}, - {160,31254,31251 ,7498,17988,17986 ,0,0,0}, {31251,31254,31252 ,17986,17988,17987 ,0,0,0}, - {31238,31255,31239 ,17973,17989,17974 ,0,0,0}, {31256,31255,31257 ,17990,17989,17991 ,0,0,0}, - {31255,31256,31239 ,17989,17990,17974 ,0,0,0}, {31258,31259,31257 ,17992,17993,17991 ,0,0,0}, - {31256,31257,31259 ,17990,17991,17993 ,0,0,0}, {31258,31260,31261 ,17992,17994,17995 ,0,0,0}, - {31261,31259,31258 ,17995,17993,17992 ,0,0,0}, {31262,31260,31263 ,17996,17994,17997 ,0,0,0}, - {31260,31262,31261 ,17994,17996,17995 ,0,0,0}, {31264,31265,31263 ,17998,17999,17997 ,0,0,0}, - {31262,31263,31265 ,17996,17997,17999 ,0,0,0}, {31264,31266,31267 ,17998,18000,18001 ,0,0,0}, - {31267,31265,31264 ,18001,17999,17998 ,0,0,0}, {174,31266,31268 ,18002,18000,18003 ,0,0,0}, - {31266,174,31267 ,18000,18002,18001 ,0,0,0}, {31264,31263,31269 ,18004,18005,18006 ,0,0,0}, - {31269,31266,31264 ,18006,18007,18004 ,0,0,0}, {31269,31268,31266 ,18006,18008,18007 ,0,0,0}, - {31269,31260,31258 ,18006,18009,18010 ,0,0,0}, {31263,31260,31269 ,18005,18009,18006 ,0,0,0}, - {31269,31257,31255 ,18006,18011,18012 ,0,0,0}, {31258,31257,31269 ,18010,18011,18006 ,0,0,0}, - {31255,31238,31269 ,18012,18013,18006 ,0,0,0}, {31243,31269,31242 ,18014,18006,18015 ,0,0,0}, - {31269,31238,31242 ,18006,18013,18015 ,0,0,0}, {31248,31269,31245 ,18016,18006,18017 ,0,0,0}, - {31269,31243,31245 ,18006,18014,18017 ,0,0,0}, {31252,31269,31249 ,18018,18006,18019 ,0,0,0}, - {31269,31248,31249 ,18006,18016,18019 ,0,0,0}, {31253,31269,31254 ,18020,18006,18021 ,0,0,0}, - {31269,31252,31254 ,18006,18018,18021 ,0,0,0}, {31270,31271,31272 ,18022,18023,17547 ,0,0,0}, - {31273,31274,31275 ,21,7309,17533 ,0,0,0}, {31276,31271,31277 ,17546,18023,18024 ,0,0,0}, - {31271,31276,31272 ,18023,17546,17547 ,0,0,0}, {31276,31277,31278 ,17546,18024,17549 ,0,0,0}, - {31279,31280,31278 ,18025,17552,17549 ,0,0,0}, {31278,31277,31279 ,17549,18024,18025 ,0,0,0}, - {31281,31280,31279 ,18026,17552,18025 ,0,0,0}, {31281,31282,31280 ,18026,126,17552 ,0,0,0}, - {31283,31270,31272 ,17543,18022,17547 ,0,0,0}, {31284,31285,31283 ,17554,18027,17543 ,0,0,0}, - {31270,31283,31285 ,18022,17543,18027 ,0,0,0}, {31286,31287,31285 ,17538,18028,18027 ,0,0,0}, - {31285,31284,31286 ,18027,17554,17538 ,0,0,0}, {31287,31288,31289 ,18028,17540,18029 ,0,0,0}, - {31288,31287,31286 ,17540,18028,17538 ,0,0,0}, {31273,31289,31290 ,21,18029,17541 ,0,0,0}, - {31288,31290,31289 ,17540,17541,18029 ,0,0,0}, {31291,31292,31293 ,18030,18031,17556 ,0,0,0}, - {31273,31290,31274 ,21,17541,7309 ,0,0,0}, {31294,31295,31296 ,17525,18032,17557 ,0,0,0}, - {31295,31291,31297 ,18032,18030,17536 ,0,0,0}, {31298,31299,31300 ,18033,18034,17529 ,0,0,0}, - {31301,31302,31299 ,18035,17526,18034 ,0,0,0}, {31303,31304,31305 ,17523,18036,17530 ,0,0,0}, - {31298,31305,31304 ,18033,17530,18036 ,0,0,0}, {31303,31306,31307 ,17523,18037,18038 ,0,0,0}, - {31307,31304,31303 ,18038,18036,17523 ,0,0,0}, {31302,31300,31299 ,17526,17529,18034 ,0,0,0}, - {31298,31300,31305 ,18033,17529,17530 ,0,0,0}, {31301,31295,31294 ,18035,18032,17525 ,0,0,0}, - {31301,31294,31302 ,18035,17525,17526 ,0,0,0}, {31291,31293,31297 ,18030,17556,17536 ,0,0,0}, - {31296,31295,31297 ,17557,18032,17536 ,0,0,0}, {31275,31292,31273 ,17533,18031,21 ,0,0,0}, - {31293,31292,31275 ,17556,18031,17533 ,0,0,0}, {31308,31309,31310 ,324,18039,18040 ,0,0,0}, - {31310,31311,31312 ,18040,18041,18042 ,0,0,0}, {31311,31313,31312 ,18041,18043,18042 ,0,0,0}, - {31310,31312,31308 ,18040,18042,324 ,0,0,0}, {31314,31315,31316 ,18044,18045,18046 ,0,0,0}, - {31316,31315,31313 ,18046,18045,18043 ,0,0,0}, {31314,31317,31318 ,18044,18047,18048 ,0,0,0}, - {31318,31315,31314 ,18048,18045,18044 ,0,0,0}, {31318,31317,31319 ,18048,18047,18049 ,0,0,0}, - {31319,31317,31320 ,18049,18047,18050 ,0,0,0}, {31320,31321,31322 ,18050,18051,18052 ,0,0,0}, - {31319,31320,31322 ,18049,18050,18052 ,0,0,0}, {31313,31311,31316 ,18043,18041,18046 ,0,0,0}, - {31323,31324,31325 ,18053,126,18054 ,0,0,0}, {31323,31325,31321 ,18053,18054,18051 ,0,0,0}, - {31321,31325,31322 ,18051,18054,18052 ,0,0,0}, {31308,31326,31309 ,324,18055,18039 ,0,0,0}, - {31327,31326,31328 ,18056,18055,18057 ,0,0,0}, {31326,31327,31309 ,18055,18056,18039 ,0,0,0}, - {31329,31330,31328 ,18058,18059,18057 ,0,0,0}, {31327,31328,31330 ,18056,18057,18059 ,0,0,0}, - {31329,31331,31332 ,18058,18060,18061 ,0,0,0}, {31332,31330,31329 ,18061,18059,18058 ,0,0,0}, - {31333,31331,31334 ,18062,18060,18063 ,0,0,0}, {31331,31333,31332 ,18060,18062,18061 ,0,0,0}, - {31335,31336,31334 ,18064,18065,18063 ,0,0,0}, {31333,31334,31336 ,18062,18063,18065 ,0,0,0}, - {31335,31337,31338 ,18064,18066,18067 ,0,0,0}, {31338,31336,31335 ,18067,18065,18064 ,0,0,0}, - {31339,31337,31340 ,82,18066,18068 ,0,0,0}, {31337,31339,31338 ,18066,82,18067 ,0,0,0}, - {31335,31334,31341 ,18069,18070,18071 ,0,0,0}, {31341,31337,31335 ,18071,18072,18069 ,0,0,0}, - {31341,31340,31337 ,18071,18073,18072 ,0,0,0}, {31341,31331,31329 ,18071,18074,18075 ,0,0,0}, - {31334,31331,31341 ,18070,18074,18071 ,0,0,0}, {31341,31328,31326 ,18071,18076,18077 ,0,0,0}, - {31329,31328,31341 ,18075,18076,18071 ,0,0,0}, {31326,31308,31341 ,18077,18078,18071 ,0,0,0}, - {31313,31341,31312 ,18079,18071,18080 ,0,0,0}, {31341,31308,31312 ,18071,18078,18080 ,0,0,0}, - {31318,31341,31315 ,18081,18071,18082 ,0,0,0}, {31341,31313,31315 ,18071,18079,18082 ,0,0,0}, - {31322,31341,31319 ,18083,18071,18084 ,0,0,0}, {31341,31318,31319 ,18071,18081,18084 ,0,0,0}, - {31324,31341,31325 ,18085,18071,18086 ,0,0,0}, {31341,31322,31325 ,18071,18083,18086 ,0,0,0}, - {31342,31343,31344 ,18087,18088,17460 ,0,0,0}, {31345,31346,31347 ,324,17303,17446 ,0,0,0}, - {31348,31343,31349 ,17459,18088,18089 ,0,0,0}, {31343,31348,31344 ,18088,17459,17460 ,0,0,0}, - {31348,31349,31350 ,17459,18089,17462 ,0,0,0}, {31351,31352,31350 ,18090,17464,17462 ,0,0,0}, - {31350,31349,31351 ,17462,18089,18090 ,0,0,0}, {31353,31352,31351 ,18091,17464,18090 ,0,0,0}, - {31353,31354,31352 ,18091,18092,17464 ,0,0,0}, {31355,31342,31344 ,17456,18087,17460 ,0,0,0}, - {31356,31357,31355 ,17465,18093,17456 ,0,0,0}, {31342,31355,31357 ,18087,17456,18093 ,0,0,0}, - {31358,31359,31357 ,17451,18094,18093 ,0,0,0}, {31357,31356,31358 ,18093,17465,17451 ,0,0,0}, - {31359,31360,31361 ,18094,17453,18095 ,0,0,0}, {31360,31359,31358 ,17453,18094,17451 ,0,0,0}, - {31345,31361,31362 ,324,18095,17454 ,0,0,0}, {31360,31362,31361 ,17453,17454,18095 ,0,0,0}, - {31363,31364,31365 ,18096,18097,17467 ,0,0,0}, {31345,31362,31346 ,324,17454,17303 ,0,0,0}, - {31366,31367,31368 ,17438,18098,17468 ,0,0,0}, {31367,31363,31369 ,18098,18096,17449 ,0,0,0}, - {31370,31371,31372 ,18099,18100,17442 ,0,0,0}, {31373,31374,31371 ,18101,17439,18100 ,0,0,0}, - {31375,31376,31377 ,17435,18102,17443 ,0,0,0}, {31370,31377,31376 ,18099,17443,18102 ,0,0,0}, - {31375,31378,31379 ,17435,82,18103 ,0,0,0}, {31379,31376,31375 ,18103,18102,17435 ,0,0,0}, - {31374,31372,31371 ,17439,17442,18100 ,0,0,0}, {31370,31372,31377 ,18099,17442,17443 ,0,0,0}, - {31373,31367,31366 ,18101,18098,17438 ,0,0,0}, {31373,31366,31374 ,18101,17438,17439 ,0,0,0}, - {31363,31365,31369 ,18096,17467,17449 ,0,0,0}, {31368,31367,31369 ,17468,18098,17449 ,0,0,0}, - {31347,31364,31345 ,17446,18097,324 ,0,0,0}, {31365,31364,31347 ,17467,18097,17446 ,0,0,0}, - {31380,31271,31381 ,18104,18104,18104 ,0,0,0}, {31382,31383,31271 ,18104,18104,18104 ,0,0,0}, - {31271,31383,31381 ,18104,18104,18104 ,0,0,0}, {31380,31381,31384 ,18104,18104,18104 ,0,0,0}, - {31385,31386,31274 ,730,730,730 ,0,0,0}, {31387,31297,31388 ,730,730,730 ,0,0,0}, - {31389,174,31282 ,730,730,730 ,0,0,0}, {31390,31265,31267 ,730,730,730 ,0,0,0}, - {31391,31278,31392 ,730,730,730 ,0,0,0}, {31276,31391,31393 ,730,730,730 ,0,0,0}, - {31393,31272,31276 ,730,730,730 ,0,0,0}, {31394,31283,31393 ,730,730,730 ,0,0,0}, - {31278,31391,31276 ,730,730,730 ,0,0,0}, {31280,174,31392 ,730,730,730 ,0,0,0}, - {31280,31392,31278 ,730,730,730 ,0,0,0}, {31394,31395,31284 ,730,730,730 ,0,0,0}, - {31280,31282,174 ,730,730,730 ,0,0,0}, {31286,31396,31288 ,730,730,730 ,0,0,0}, - {31284,31395,31286 ,730,730,730 ,0,0,0}, {31397,31261,31262 ,730,730,730 ,0,0,0}, - {31259,31261,31398 ,730,730,730 ,0,0,0}, {31274,31386,31275 ,730,730,730 ,0,0,0}, - {31399,31256,31400 ,730,730,730 ,0,0,0}, {31401,31239,31256 ,730,730,730 ,0,0,0}, - {31293,31275,31388 ,730,730,730 ,0,0,0}, {31402,31403,31387 ,730,730,730 ,0,0,0}, - {31240,31404,31241 ,730,730,730 ,0,0,0}, {31239,31405,31240 ,730,730,730 ,0,0,0}, - {31302,31294,31403 ,730,730,730 ,0,0,0}, {31403,31296,31297 ,730,730,730 ,0,0,0}, - {31246,31406,31407 ,730,730,730 ,0,0,0}, {31406,31241,31408 ,730,730,730 ,0,0,0}, - {31409,31300,31410 ,730,730,730 ,0,0,0}, {31411,31247,31244 ,730,730,730 ,0,0,0}, - {31244,31246,31407 ,730,730,730 ,0,0,0}, {31250,31412,31413 ,730,730,730 ,0,0,0}, - {160,31306,31303 ,730,730,730 ,0,0,0}, {31251,31414,160 ,730,730,730 ,0,0,0}, - {31251,31250,31413 ,730,730,730 ,0,0,0}, {31415,31303,31305 ,730,730,730 ,0,0,0}, - {31416,31412,31247 ,730,730,730 ,0,0,0}, {31305,31409,31415 ,730,730,730 ,0,0,0}, - {31396,31385,31290 ,730,730,730 ,0,0,0}, {31262,31265,31417 ,730,730,730 ,0,0,0}, - {31239,31401,31405 ,730,730,730 ,0,0,0}, {31393,31283,31272 ,730,730,730 ,0,0,0}, - {31394,31284,31283 ,730,730,730 ,0,0,0}, {31396,31286,31395 ,730,730,730 ,0,0,0}, - {31396,31290,31288 ,730,730,730 ,0,0,0}, {31385,31274,31290 ,730,730,730 ,0,0,0}, - {31388,31275,31386 ,730,730,730 ,0,0,0}, {31388,31297,31293 ,730,730,730 ,0,0,0}, - {31403,31297,31387 ,730,730,730 ,0,0,0}, {31403,31410,31300 ,730,730,730 ,0,0,0}, - {31300,31302,31403 ,730,730,730 ,0,0,0}, {31409,31305,31300 ,730,730,730 ,0,0,0}, - {160,31303,31415 ,730,730,730 ,0,0,0}, {160,31414,31306 ,730,730,730 ,0,0,0}, - {31251,31413,31414 ,730,730,730 ,0,0,0}, {31247,31412,31250 ,730,730,730 ,0,0,0}, - {31247,31411,31416 ,730,730,730 ,0,0,0}, {31244,31407,31411 ,730,730,730 ,0,0,0}, - {31241,31406,31246 ,730,730,730 ,0,0,0}, {31241,31404,31408 ,730,730,730 ,0,0,0}, - {31240,31405,31404 ,730,730,730 ,0,0,0}, {31399,31401,31256 ,730,730,730 ,0,0,0}, - {31259,31400,31256 ,730,730,730 ,0,0,0}, {31261,31397,31398 ,730,730,730 ,0,0,0}, - {31259,31398,31400 ,730,730,730 ,0,0,0}, {31262,31418,31397 ,730,730,730 ,0,0,0}, - {31417,31265,31390 ,730,730,730 ,0,0,0}, {31418,31262,31417 ,730,730,730 ,0,0,0}, - {31390,31267,31389 ,730,730,730 ,0,0,0}, {174,31389,31267 ,730,730,730 ,0,0,0}, - {31296,31403,31294 ,730,730,730 ,0,0,0}, {31402,31410,31403 ,730,730,730 ,0,0,0}, - {31419,31420,31371 ,18105,18106,18106 ,0,0,0}, {31420,31421,31422 ,18106,1433,1433 ,0,0,0}, - {31422,31371,31420 ,1433,18106,18106 ,0,0,0}, {31371,31423,31419 ,18106,18105,18105 ,0,0,0}, - {31424,31425,31343 ,2162,18107,18107 ,0,0,0}, {31425,31380,31384 ,18107,2162,2162 ,0,0,0}, - {31384,31343,31425 ,2162,18107,18107 ,0,0,0}, {31343,31426,31424 ,18107,2162,2162 ,0,0,0}, - {31345,31421,31427 ,18108,1077,18109 ,0,0,0}, {31424,31426,31427 ,18110,18110,18109 ,0,0,0}, - {31426,31345,31427 ,18110,18108,18109 ,0,0,0}, {31345,31422,31421 ,18108,18111,1077 ,0,0,0}, - {31273,31428,31382 ,18112,18112,18112 ,0,0,0}, {31273,31429,31430 ,18112,18113,18113 ,0,0,0}, - {31273,31430,31428 ,18112,18113,18112 ,0,0,0}, {31428,31383,31382 ,18112,18112,18112 ,0,0,0}, - {31431,31332,31432 ,726,7628,8135 ,0,0,0}, {31433,31321,31434 ,7628,7625,7628 ,0,0,0}, - {31327,31330,31435 ,7627,7625,7761 ,0,0,0}, {31327,31436,31437 ,7627,18114,7253 ,0,0,0}, - {31437,31438,31309 ,7253,18115,7628 ,0,0,0}, {31309,31438,31310 ,7628,18115,7627 ,0,0,0}, - {31330,31332,31431 ,7625,7628,726 ,0,0,0}, {31439,31440,31311 ,8017,18116,7628 ,0,0,0}, - {31311,31310,31441 ,7628,7627,18117 ,0,0,0}, {31442,31316,31440 ,7756,7627,18116 ,0,0,0}, - {31333,31443,31432 ,7628,8135,8135 ,0,0,0}, {31339,31354,31444 ,7628,7628,7628 ,0,0,0}, - {31314,31445,31317 ,7880,8135,7625 ,0,0,0}, {31321,31320,31434 ,7625,7628,7628 ,0,0,0}, - {31446,31352,31339 ,726,7628,7628 ,0,0,0}, {31358,31356,31447 ,7628,726,7628 ,0,0,0}, - {31447,31348,31448 ,7628,726,726 ,0,0,0}, {31449,31347,31450 ,7626,726,726 ,0,0,0}, - {31451,31360,31358 ,7628,7626,7628 ,0,0,0}, {31365,31449,31369 ,7628,7626,726 ,0,0,0}, - {31452,31368,31453 ,7628,7628,726 ,0,0,0}, {31454,31372,31455 ,7628,726,7628 ,0,0,0}, - {31366,31452,31455 ,726,7628,7628 ,0,0,0}, {31450,31346,31456 ,726,7626,7628 ,0,0,0}, - {31454,31457,31377 ,7628,7628,726 ,0,0,0}, {31451,31456,31362 ,7628,7628,7628 ,0,0,0}, - {31378,31323,31433 ,7628,7628,7628 ,0,0,0}, {31323,31378,31375 ,7628,7628,7628 ,0,0,0}, - {31350,31458,31348 ,726,726,726 ,0,0,0}, {31459,31358,31447 ,726,7628,7628 ,0,0,0}, - {31460,31434,31320 ,7754,7628,7628 ,0,0,0}, {31350,31446,31458 ,726,726,726 ,0,0,0}, - {31317,31460,31320 ,7625,7754,7628 ,0,0,0}, {31461,31338,31444 ,7628,7628,7628 ,0,0,0}, - {31347,31346,31450 ,726,7626,726 ,0,0,0}, {31336,31338,31461 ,7628,7628,7628 ,0,0,0}, - {31316,31442,31314 ,7627,7756,7880 ,0,0,0}, {31462,31333,31336 ,7880,7628,7628 ,0,0,0}, - {31321,31433,31323 ,7625,7628,7628 ,0,0,0}, {31344,31447,31355 ,726,7628,726 ,0,0,0}, - {31317,31445,31463 ,7625,8135,7625 ,0,0,0}, {31463,31460,31317 ,7625,7754,7625 ,0,0,0}, - {31314,31442,31445 ,7880,7756,8135 ,0,0,0}, {31311,31440,31316 ,7628,18116,7627 ,0,0,0}, - {31311,31441,31439 ,7628,18117,8017 ,0,0,0}, {31310,31438,31441 ,7627,18115,18117 ,0,0,0}, - {31327,31437,31309 ,7627,7253,7628 ,0,0,0}, {31327,31435,31436 ,7627,7761,18114 ,0,0,0}, - {31330,31431,31435 ,7625,726,7761 ,0,0,0}, {31333,31432,31332 ,7628,8135,7628 ,0,0,0}, - {31333,31462,31443 ,7628,7880,8135 ,0,0,0}, {31336,31461,31462 ,7628,7628,7880 ,0,0,0}, - {31339,31444,31338 ,7628,7628,7628 ,0,0,0}, {31339,31352,31354 ,7628,7628,7628 ,0,0,0}, - {31446,31350,31352 ,726,726,7628 ,0,0,0}, {31448,31348,31458 ,726,726,726 ,0,0,0}, - {31344,31348,31447 ,726,726,7628 ,0,0,0}, {31356,31355,31447 ,726,726,7628 ,0,0,0}, - {31451,31358,31459 ,7628,7628,726 ,0,0,0}, {31451,31362,31360 ,7628,7628,7626 ,0,0,0}, - {31456,31346,31362 ,7628,7626,7628 ,0,0,0}, {31365,31347,31449 ,7628,726,7626 ,0,0,0}, - {31453,31369,31449 ,726,726,7626 ,0,0,0}, {31452,31366,31368 ,7628,726,7628 ,0,0,0}, - {31453,31368,31369 ,726,7628,726 ,0,0,0}, {31455,31374,31366 ,7628,726,726 ,0,0,0}, - {31372,31454,31377 ,726,7628,726 ,0,0,0}, {31374,31455,31372 ,726,7628,726 ,0,0,0}, - {31377,31457,31375 ,726,7628,7628 ,0,0,0}, {31323,31375,31457 ,7628,7628,7628 ,0,0,0}, - {31448,31464,31447 ,726,7628,7628 ,0,0,0}, {31447,31464,31459 ,7628,7628,726 ,0,0,0}, - {31429,31299,31465 ,18118,18119,18119 ,0,0,0}, {31419,31423,31299 ,18120,18120,18119 ,0,0,0}, - {31299,31423,31465 ,18119,18120,18119 ,0,0,0}, {31429,31465,31430 ,18118,18119,18118 ,0,0,0}, - {31444,31353,31466 ,17413,18121,18122 ,0,0,0}, {31432,31443,31467 ,17404,17412,18123 ,0,0,0}, - {31468,31462,31461 ,18124,17410,17415 ,0,0,0}, {31469,31428,31437 ,18125,18126,17385 ,0,0,0}, - {31470,31471,31435 ,18127,18128,17407 ,0,0,0}, {31472,31440,31473 ,18129,17396,18130 ,0,0,0}, - {31439,31441,31474 ,17398,17400,18131 ,0,0,0}, {31445,31472,31475 ,17393,18129,18132 ,0,0,0}, - {31465,31460,31463 ,18133,17386,17384 ,0,0,0}, {31463,31475,31465 ,17384,18132,18133 ,0,0,0}, - {31460,31476,31434 ,17386,18134,17388 ,0,0,0}, {31476,31460,31465 ,18134,17386,18133 ,0,0,0}, - {31476,31477,31434 ,18134,18135,17388 ,0,0,0}, {31379,31433,31477 ,18103,17390,18135 ,0,0,0}, - {31434,31477,31433 ,17388,18135,17390 ,0,0,0}, {31378,31433,31379 ,82,17390,18103 ,0,0,0}, - {31445,31442,31472 ,17393,17394,18129 ,0,0,0}, {31463,31445,31475 ,17384,17393,18132 ,0,0,0}, - {31440,31439,31473 ,17396,17398,18130 ,0,0,0}, {31442,31440,31472 ,17394,17396,18129 ,0,0,0}, - {31474,31441,31428 ,18131,17400,18126 ,0,0,0}, {31473,31439,31474 ,18130,17398,18131 ,0,0,0}, - {31437,31428,31438 ,17385,18126,18136 ,0,0,0}, {31428,31441,31438 ,18126,17400,18136 ,0,0,0}, - {31471,31469,31436 ,18128,18125,17403 ,0,0,0}, {31469,31437,31436 ,18125,17385,17403 ,0,0,0}, - {31431,31470,31435 ,17406,18127,17407 ,0,0,0}, {31435,31471,31436 ,17407,18128,17403 ,0,0,0}, - {31470,31432,31467 ,18127,17404,18123 ,0,0,0}, {31432,31470,31431 ,17404,18127,17406 ,0,0,0}, - {31443,31462,31381 ,17412,17410,18137 ,0,0,0}, {31443,31381,31467 ,17412,18137,18123 ,0,0,0}, - {31468,31461,31466 ,18124,17415,18122 ,0,0,0}, {31381,31462,31468 ,18137,17410,18124 ,0,0,0}, - {31353,31444,31354 ,18121,17413,18092 ,0,0,0}, {31466,31461,31444 ,18122,17415,17413 ,0,0,0}, - {31376,31423,31370 ,726,726,7661 ,0,0,0}, {31423,31371,31370 ,726,7661,7661 ,0,0,0}, - {31379,31423,31376 ,18138,726,726 ,0,0,0}, {31476,31423,31477 ,7658,726,18138 ,0,0,0}, - {31423,31379,31477 ,726,18138,18138 ,0,0,0}, {31465,31423,31476 ,7661,726,7658 ,0,0,0}, - {31470,31383,31471 ,726,17471,17470 ,0,0,0}, {31471,31383,31469 ,17470,17471,18139 ,0,0,0}, - {31383,31428,31469 ,17471,17471,18139 ,0,0,0}, {31383,31467,31381 ,17471,726,726 ,0,0,0}, - {31383,31470,31467 ,17471,726,726 ,0,0,0}, {31342,31426,31343 ,726,726,726 ,0,0,0}, - {31359,31426,31357 ,726,726,726 ,0,0,0}, {31426,31342,31357 ,726,726,726 ,0,0,0}, - {31345,31426,31361 ,726,726,726 ,0,0,0}, {31426,31359,31361 ,726,726,726 ,0,0,0}, - {31422,31364,31363 ,7659,726,18140 ,0,0,0}, {31345,31364,31422 ,726,726,7659 ,0,0,0}, - {31422,31373,31371 ,7659,18141,726 ,0,0,0}, {31422,31367,31373 ,7659,726,18141 ,0,0,0}, - {31363,31367,31422 ,18140,726,7659 ,0,0,0}, {31465,31475,31430 ,726,726,726 ,0,0,0}, - {31473,31430,31472 ,7660,726,7660 ,0,0,0}, {31475,31472,31430 ,726,7660,726 ,0,0,0}, - {31474,31428,31430 ,726,726,726 ,0,0,0}, {31474,31430,31473 ,726,726,7660 ,0,0,0}, - {31468,31384,31381 ,726,726,726 ,0,0,0}, {31384,31468,31466 ,726,726,726 ,0,0,0}, - {31351,31384,31353 ,726,726,726 ,0,0,0}, {31384,31466,31353 ,726,726,726 ,0,0,0}, - {31343,31384,31349 ,726,726,726 ,0,0,0}, {31384,31351,31349 ,726,726,726 ,0,0,0}, - {31478,31479,31341 ,18142,18143,18144 ,0,0,0}, {31341,31480,31478 ,18144,18145,18142 ,0,0,0}, - {31341,31324,31480 ,18144,18146,18145 ,0,0,0}, {31341,31481,31482 ,18144,18147,18148 ,0,0,0}, - {31479,31481,31341 ,18143,18147,18144 ,0,0,0}, {31341,31483,31484 ,18144,18149,18150 ,0,0,0}, - {31482,31483,31341 ,18148,18149,18144 ,0,0,0}, {31484,31485,31341 ,18150,18151,18144 ,0,0,0}, - {31486,31341,31487 ,18152,18144,18153 ,0,0,0}, {31341,31485,31487 ,18144,18151,18153 ,0,0,0}, - {31488,31341,31489 ,18154,18144,18155 ,0,0,0}, {31341,31486,31489 ,18144,18152,18155 ,0,0,0}, - {31490,31341,31491 ,18156,18144,18157 ,0,0,0}, {31341,31488,31491 ,18144,18154,18157 ,0,0,0}, - {31340,31341,31490 ,18158,18144,18156 ,0,0,0}, {31323,31457,31480 ,18159,18160,18161 ,0,0,0}, - {31482,31481,31452 ,18162,18163,18164 ,0,0,0}, {31479,31478,31454 ,18165,18166,18167 ,0,0,0}, - {31484,31450,31485 ,18168,18169,18170 ,0,0,0}, {31453,31449,31483 ,18171,18172,18173 ,0,0,0}, - {31451,31459,31486 ,18174,18175,18176 ,0,0,0}, {31451,31487,31456 ,18174,18177,18178 ,0,0,0}, - {31464,31448,31488 ,18179,18180,18181 ,0,0,0}, {31488,31489,31464 ,18181,18182,18179 ,0,0,0}, - {31491,31448,31458 ,18183,18180,18184 ,0,0,0}, {31448,31491,31488 ,18180,18183,18181 ,0,0,0}, - {31446,31490,31458 ,18185,18186,18184 ,0,0,0}, {31491,31458,31490 ,18183,18184,18186 ,0,0,0}, - {31446,31339,31340 ,18185,18187,18188 ,0,0,0}, {31340,31490,31446 ,18188,18186,18185 ,0,0,0}, - {31450,31484,31449 ,18169,18168,18172 ,0,0,0}, {31459,31489,31486 ,18175,18182,18176 ,0,0,0}, - {31464,31489,31459 ,18179,18182,18175 ,0,0,0}, {31452,31481,31455 ,18164,18163,18189 ,0,0,0}, - {31456,31487,31485 ,18178,18177,18170 ,0,0,0}, {31451,31486,31487 ,18174,18176,18177 ,0,0,0}, - {31450,31456,31485 ,18169,18178,18170 ,0,0,0}, {31483,31449,31484 ,18173,18172,18168 ,0,0,0}, - {31482,31452,31453 ,18162,18164,18171 ,0,0,0}, {31453,31483,31482 ,18171,18173,18162 ,0,0,0}, - {31478,31457,31454 ,18166,18160,18167 ,0,0,0}, {31455,31479,31454 ,18189,18165,18167 ,0,0,0}, - {31481,31479,31455 ,18163,18165,18189 ,0,0,0}, {31323,31480,31324 ,18159,18161,35 ,0,0,0}, - {31457,31478,31480 ,18160,18166,18161 ,0,0,0}, {31389,31281,31492 ,17331,18026,18190 ,0,0,0}, - {31397,31418,31493 ,17322,17330,18191 ,0,0,0}, {31494,31417,31390 ,18192,17328,17333 ,0,0,0}, - {31495,31427,31401 ,18193,18194,17304 ,0,0,0}, {31496,31497,31400 ,18195,18196,17325 ,0,0,0}, - {31498,31406,31499 ,18197,17314,18198 ,0,0,0}, {31408,31404,31500 ,17316,17318,18199 ,0,0,0}, - {31411,31498,31501 ,17311,18197,18200 ,0,0,0}, {31420,31412,31416 ,18201,17305,17302 ,0,0,0}, - {31416,31501,31420 ,17302,18200,18201 ,0,0,0}, {31412,31502,31413 ,17305,18202,17307 ,0,0,0}, - {31502,31412,31420 ,18202,17305,18201 ,0,0,0}, {31502,31503,31413 ,18202,18203,17307 ,0,0,0}, - {31307,31414,31503 ,18204,17309,18203 ,0,0,0}, {31413,31503,31414 ,17307,18203,17309 ,0,0,0}, - {31306,31414,31307 ,18205,17309,18204 ,0,0,0}, {31411,31407,31498 ,17311,17312,18197 ,0,0,0}, - {31416,31411,31501 ,17302,17311,18200 ,0,0,0}, {31406,31408,31499 ,17314,17316,18198 ,0,0,0}, - {31407,31406,31498 ,17312,17314,18197 ,0,0,0}, {31500,31404,31427 ,18199,17318,18194 ,0,0,0}, - {31499,31408,31500 ,18198,17316,18199 ,0,0,0}, {31401,31427,31405 ,17304,18194,10001 ,0,0,0}, - {31427,31404,31405 ,18194,17318,10001 ,0,0,0}, {31497,31495,31399 ,18196,18193,17321 ,0,0,0}, - {31495,31401,31399 ,18193,17304,17321 ,0,0,0}, {31398,31496,31400 ,17324,18195,17325 ,0,0,0}, - {31400,31497,31399 ,17325,18196,17321 ,0,0,0}, {31496,31397,31493 ,18195,17322,18191 ,0,0,0}, - {31397,31496,31398 ,17322,18195,17324 ,0,0,0}, {31418,31417,31425 ,17330,17328,18206 ,0,0,0}, - {31418,31425,31493 ,17330,18206,18191 ,0,0,0}, {31494,31390,31492 ,18192,17333,18190 ,0,0,0}, - {31425,31417,31494 ,18206,17328,18192 ,0,0,0}, {31281,31389,31282 ,18026,17331,126 ,0,0,0}, - {31492,31390,31389 ,18190,17333,17331 ,0,0,0}, {31424,31496,31493 ,730,17561,730 ,0,0,0}, - {31495,31424,31427 ,730,730,730 ,0,0,0}, {31496,31424,31497 ,17561,730,17561 ,0,0,0}, - {31424,31495,31497 ,730,730,17561 ,0,0,0}, {31493,31425,31424 ,730,7433,730 ,0,0,0}, - {31298,31419,31299 ,7376,17561,7376 ,0,0,0}, {31419,31503,31502 ,17561,17561,7433 ,0,0,0}, - {31419,31298,31304 ,17561,7376,730 ,0,0,0}, {31503,31419,31307 ,17561,17561,18207 ,0,0,0}, - {31419,31304,31307 ,17561,730,18207 ,0,0,0}, {31502,31420,31419 ,7433,7376,17561 ,0,0,0}, - {31285,31382,31270 ,7015,730,730 ,0,0,0}, {31382,31271,31270 ,730,11465,730 ,0,0,0}, - {31289,31382,31287 ,7532,730,7016 ,0,0,0}, {31382,31285,31287 ,730,7015,7016 ,0,0,0}, - {31273,31382,31289 ,18208,730,7532 ,0,0,0}, {31499,31421,31498 ,730,7433,17561 ,0,0,0}, - {31501,31498,31421 ,17561,17561,7433 ,0,0,0}, {31420,31501,31421 ,18207,17561,7433 ,0,0,0}, - {31500,31427,31421 ,18209,730,7433 ,0,0,0}, {31500,31421,31499 ,18209,7433,730 ,0,0,0}, - {31292,31291,31429 ,18207,730,9877 ,0,0,0}, {31273,31292,31429 ,18210,18207,9877 ,0,0,0}, - {31295,31301,31429 ,730,730,9877 ,0,0,0}, {31295,31429,31291 ,730,9877,730 ,0,0,0}, - {31299,31429,31301 ,730,9877,730 ,0,0,0}, {31425,31494,31380 ,730,730,730 ,0,0,0}, - {31380,31492,31281 ,730,730,730 ,0,0,0}, {31380,31494,31492 ,730,730,730 ,0,0,0}, - {31281,31279,31380 ,730,730,730 ,0,0,0}, {31380,31277,31271 ,730,730,730 ,0,0,0}, - {31279,31277,31380 ,730,730,730 ,0,0,0}, {31504,31505,31269 ,18211,18212,18213 ,0,0,0}, - {31269,31506,31504 ,18213,18214,18211 ,0,0,0}, {31269,31253,31506 ,18213,18215,18214 ,0,0,0}, - {31269,31507,31508 ,18213,18216,18217 ,0,0,0}, {31505,31507,31269 ,18212,18216,18213 ,0,0,0}, - {31269,31509,31510 ,18213,18218,18219 ,0,0,0}, {31508,31509,31269 ,18217,18218,18213 ,0,0,0}, - {31510,31511,31269 ,18219,18220,18213 ,0,0,0}, {31512,31269,31513 ,18221,18213,18222 ,0,0,0}, - {31269,31511,31513 ,18213,18220,18222 ,0,0,0}, {31514,31269,31515 ,18223,18213,18224 ,0,0,0}, - {31269,31512,31515 ,18213,18221,18224 ,0,0,0}, {31516,31269,31517 ,18225,18213,18226 ,0,0,0}, - {31269,31514,31517 ,18213,18223,18226 ,0,0,0}, {31268,31269,31516 ,18227,18213,18225 ,0,0,0}, - {160,31415,31506 ,3345,18228,18229 ,0,0,0}, {31508,31507,31402 ,18230,18231,18232 ,0,0,0}, - {31505,31504,31409 ,18233,18234,18235 ,0,0,0}, {31510,31386,31511 ,18236,18237,18238 ,0,0,0}, - {31387,31388,31509 ,18239,18240,18241 ,0,0,0}, {31396,31395,31512 ,18242,18243,18244 ,0,0,0}, - {31396,31513,31385 ,18242,18245,18246 ,0,0,0}, {31394,31393,31514 ,18247,18248,18249 ,0,0,0}, - {31514,31515,31394 ,18249,18250,18247 ,0,0,0}, {31517,31393,31391 ,18251,18248,18252 ,0,0,0}, - {31393,31517,31514 ,18248,18251,18249 ,0,0,0}, {31392,31516,31391 ,18253,18254,18252 ,0,0,0}, - {31517,31391,31516 ,18251,18252,18254 ,0,0,0}, {31392,174,31268 ,18253,18255,18256 ,0,0,0}, - {31268,31516,31392 ,18256,18254,18253 ,0,0,0}, {31386,31510,31388 ,18237,18236,18240 ,0,0,0}, - {31395,31515,31512 ,18243,18250,18244 ,0,0,0}, {31394,31515,31395 ,18247,18250,18243 ,0,0,0}, - {31402,31507,31410 ,18232,18231,18257 ,0,0,0}, {31385,31513,31511 ,18246,18245,18238 ,0,0,0}, - {31396,31512,31513 ,18242,18244,18245 ,0,0,0}, {31386,31385,31511 ,18237,18246,18238 ,0,0,0}, - {31509,31388,31510 ,18241,18240,18236 ,0,0,0}, {31508,31402,31387 ,18230,18232,18239 ,0,0,0}, - {31387,31509,31508 ,18239,18241,18230 ,0,0,0}, {31504,31415,31409 ,18234,18228,18235 ,0,0,0}, - {31410,31505,31409 ,18257,18233,18235 ,0,0,0}, {31507,31505,31410 ,18231,18233,18257 ,0,0,0}, - {160,31506,31253 ,3345,18229,126 ,0,0,0}, {31415,31504,31506 ,18228,18234,18229 ,0,0,0} -// Battery3.prt - , {31518,31519,31520 ,0,1,0 ,0,0,0}, {31521,31522,31523 ,2,2,3 ,0,0,0}, - {31521,31520,31522 ,2,0,2 ,0,0,0}, {31523,31522,31524 ,3,2,3 ,0,0,0}, - {31520,31521,31518 ,0,2,0 ,0,0,0}, {31525,31519,31518 ,1,1,0 ,0,0,0}, - {31526,31525,31527 ,4,1,4 ,0,0,0}, {31525,31526,31519 ,1,4,1 ,0,0,0}, - {31528,31529,31530 ,5,6,5 ,0,0,0}, {31531,31532,31533 ,7,7,8 ,0,0,0}, - {31531,31530,31532 ,7,5,7 ,0,0,0}, {31533,31532,31534 ,8,7,8 ,0,0,0}, - {31530,31531,31528 ,5,7,5 ,0,0,0}, {31535,31529,31528 ,9,6,5 ,0,0,0}, - {31536,31535,31537 ,10,9,11 ,0,0,0}, {31535,31536,31529 ,9,10,6 ,0,0,0}, - {31538,31539,31540 ,12,13,12 ,0,0,0}, {31541,31542,31543 ,14,14,15 ,0,0,0}, - {31541,31540,31542 ,14,12,14 ,0,0,0}, {31543,31542,31544 ,15,14,15 ,0,0,0}, - {31540,31541,31538 ,12,14,12 ,0,0,0}, {31545,31539,31538 ,13,13,12 ,0,0,0}, - {31546,31545,31547 ,16,13,16 ,0,0,0}, {31545,31546,31539 ,13,16,13 ,0,0,0}, - {31548,31549,31550 ,17,18,17 ,0,0,0}, {31551,31552,31553 ,19,19,20 ,0,0,0}, - {31551,31550,31552 ,19,17,19 ,0,0,0}, {31553,31552,31554 ,20,19,20 ,0,0,0}, - {31550,31551,31548 ,17,19,17 ,0,0,0}, {31555,31549,31548 ,18,18,17 ,0,0,0}, - {31556,31555,31557 ,21,18,21 ,0,0,0}, {31555,31556,31549 ,18,21,18 ,0,0,0}, - {31558,31559,31560 ,22,23,24 ,0,0,0}, {31561,31562,31563 ,25,26,27 ,0,0,0}, - {31564,31558,31560 ,28,22,24 ,0,0,0}, {31563,31562,31564 ,27,26,28 ,0,0,0}, - {31562,31561,31565 ,26,25,29 ,0,0,0}, {31560,31563,31564 ,24,27,28 ,0,0,0}, - {31566,31567,31568 ,30,31,32 ,0,0,0}, {31567,31569,31568 ,31,33,32 ,0,0,0}, - {31565,31570,31566 ,29,34,30 ,0,0,0}, {31567,31566,31570 ,31,30,34 ,0,0,0}, - {31571,31572,31573 ,35,36,37 ,0,0,0}, {31574,31575,31569 ,38,39,33 ,0,0,0}, - {31572,31575,31574 ,36,39,38 ,0,0,0}, {31572,31574,31573 ,36,38,37 ,0,0,0}, - {31573,31576,31571 ,37,40,35 ,0,0,0}, {31568,31569,31575 ,32,33,39 ,0,0,0}, - {31565,31561,31570 ,29,25,34 ,0,0,0}, {31558,31577,31559 ,22,41,23 ,0,0,0}, - {31578,31577,31579 ,42,41,43 ,0,0,0}, {31577,31578,31559 ,41,42,23 ,0,0,0}, - {31580,31581,31579 ,44,45,43 ,0,0,0}, {31578,31579,31581 ,42,43,45 ,0,0,0}, - {31580,31582,31583 ,44,46,47 ,0,0,0}, {31583,31581,31580 ,47,45,44 ,0,0,0}, - {31584,31582,31585 ,48,46,49 ,0,0,0}, {31582,31584,31583 ,46,48,47 ,0,0,0}, - {31586,31587,31585 ,50,51,49 ,0,0,0}, {31584,31585,31587 ,48,49,51 ,0,0,0}, - {31586,31588,31589 ,50,52,53 ,0,0,0}, {31589,31587,31586 ,53,51,50 ,0,0,0}, - {31590,31588,31591 ,54,52,54 ,0,0,0}, {31588,31590,31589 ,52,54,53 ,0,0,0}, - {31592,31593,31594 ,22,55,24 ,0,0,0}, {31595,31596,31597 ,56,57,58 ,0,0,0}, - {31598,31592,31594 ,59,22,24 ,0,0,0}, {31597,31596,31598 ,58,57,59 ,0,0,0}, - {31596,31595,31599 ,57,56,60 ,0,0,0}, {31594,31597,31598 ,24,58,59 ,0,0,0}, - {31600,31601,31602 ,61,62,63 ,0,0,0}, {31601,31603,31602 ,62,64,63 ,0,0,0}, - {31599,31604,31600 ,60,65,61 ,0,0,0}, {31601,31600,31604 ,62,61,65 ,0,0,0}, - {31605,31606,31607 ,66,67,68 ,0,0,0}, {31608,31609,31603 ,69,70,64 ,0,0,0}, - {31606,31609,31608 ,67,70,69 ,0,0,0}, {31606,31608,31607 ,67,69,68 ,0,0,0}, - {31607,31610,31605 ,68,66,66 ,0,0,0}, {31602,31603,31609 ,63,64,70 ,0,0,0}, - {31599,31595,31604 ,60,56,65 ,0,0,0}, {31592,31611,31593 ,22,71,55 ,0,0,0}, - {31612,31611,31613 ,72,71,43 ,0,0,0}, {31611,31612,31593 ,71,72,55 ,0,0,0}, - {31614,31615,31613 ,73,74,43 ,0,0,0}, {31612,31613,31615 ,72,43,74 ,0,0,0}, - {31614,31616,31617 ,73,46,75 ,0,0,0}, {31617,31615,31614 ,75,74,73 ,0,0,0}, - {31618,31616,31619 ,76,46,77 ,0,0,0}, {31616,31618,31617 ,46,76,75 ,0,0,0}, - {31620,31621,31619 ,50,78,77 ,0,0,0}, {31618,31619,31621 ,76,77,78 ,0,0,0}, - {31620,31622,31623 ,50,79,80 ,0,0,0}, {31623,31621,31620 ,80,78,50 ,0,0,0}, - {31624,31622,31625 ,81,79,82 ,0,0,0}, {31622,31624,31623 ,79,81,80 ,0,0,0}, - {31626,31627,31628 ,83,84,85 ,0,0,0}, {31629,31630,31631 ,86,87,88 ,0,0,0}, - {31632,31626,31628 ,89,83,85 ,0,0,0}, {31631,31630,31632 ,88,87,89 ,0,0,0}, - {31630,31629,31633 ,87,86,90 ,0,0,0}, {31628,31631,31632 ,85,88,89 ,0,0,0}, - {31634,31635,31636 ,91,92,93 ,0,0,0}, {31635,31637,31636 ,92,94,93 ,0,0,0}, - {31633,31638,31634 ,90,95,91 ,0,0,0}, {31635,31634,31638 ,92,91,95 ,0,0,0}, - {30497,31639,31640 ,96,97,98 ,0,0,0}, {31641,31642,31637 ,99,100,94 ,0,0,0}, - {31639,31642,31641 ,97,100,99 ,0,0,0}, {31639,31641,31640 ,97,99,98 ,0,0,0}, - {31640,31643,30497 ,98,101,96 ,0,0,0}, {31636,31637,31642 ,93,94,100 ,0,0,0}, - {31633,31629,31638 ,90,86,95 ,0,0,0}, {31626,31644,31627 ,83,102,84 ,0,0,0}, - {31645,31644,31646 ,103,102,104 ,0,0,0}, {31644,31645,31627 ,102,103,84 ,0,0,0}, - {31647,31648,31646 ,105,106,104 ,0,0,0}, {31645,31646,31648 ,103,104,106 ,0,0,0}, - {31647,31649,31650 ,105,107,108 ,0,0,0}, {31650,31648,31647 ,108,106,105 ,0,0,0}, - {31651,31649,31652 ,109,107,110 ,0,0,0}, {31649,31651,31650 ,107,109,108 ,0,0,0}, - {31653,31654,31652 ,111,112,110 ,0,0,0}, {31651,31652,31654 ,109,110,112 ,0,0,0}, - {31653,31655,31656 ,111,113,114 ,0,0,0}, {31656,31654,31653 ,114,112,111 ,0,0,0}, - {31657,31655,30481 ,54,113,54 ,0,0,0}, {31655,31657,31656 ,113,54,114 ,0,0,0}, - {31658,31659,31660 ,83,115,85 ,0,0,0}, {31661,31662,31663 ,116,117,118 ,0,0,0}, - {31664,31658,31660 ,119,83,85 ,0,0,0}, {31663,31662,31664 ,118,117,119 ,0,0,0}, - {31662,31661,31665 ,117,116,120 ,0,0,0}, {31660,31663,31664 ,85,118,119 ,0,0,0}, - {31666,31667,31668 ,121,122,123 ,0,0,0}, {31667,31669,31668 ,122,124,123 ,0,0,0}, - {31665,31670,31666 ,120,125,121 ,0,0,0}, {31667,31666,31670 ,122,121,125 ,0,0,0}, - {31323,31671,31672 ,126,127,128 ,0,0,0}, {31673,31674,31669 ,129,130,124 ,0,0,0}, - {31671,31674,31673 ,127,130,129 ,0,0,0}, {31671,31673,31672 ,127,129,128 ,0,0,0}, - {31672,31675,31323 ,128,35,126 ,0,0,0}, {31668,31669,31674 ,123,124,130 ,0,0,0}, - {31665,31661,31670 ,120,116,125 ,0,0,0}, {31658,31676,31659 ,83,131,115 ,0,0,0}, - {31677,31676,31678 ,132,131,133 ,0,0,0}, {31676,31677,31659 ,131,132,115 ,0,0,0}, - {31679,31680,31678 ,134,74,133 ,0,0,0}, {31677,31678,31680 ,132,133,74 ,0,0,0}, - {31679,31681,31682 ,134,135,108 ,0,0,0}, {31682,31680,31679 ,108,74,134 ,0,0,0}, - {31683,31681,31684 ,136,135,137 ,0,0,0}, {31681,31683,31682 ,135,136,108 ,0,0,0}, - {31685,31686,31684 ,138,139,137 ,0,0,0}, {31683,31684,31686 ,136,137,139 ,0,0,0}, - {31685,31687,31688 ,138,79,80 ,0,0,0}, {31688,31686,31685 ,80,139,138 ,0,0,0}, - {31689,31687,31339 ,140,79,140 ,0,0,0}, {31687,31689,31688 ,79,140,80 ,0,0,0}, - {31690,31691,31692 ,141,142,143 ,0,0,0}, {31693,31694,31695 ,144,145,146 ,0,0,0}, - {31696,31690,31692 ,147,141,143 ,0,0,0}, {31695,31694,31696 ,146,145,147 ,0,0,0}, - {31694,31693,31697 ,145,144,148 ,0,0,0}, {31692,31695,31696 ,143,146,147 ,0,0,0}, - {31698,31699,31700 ,149,150,151 ,0,0,0}, {31699,31701,31700 ,150,152,151 ,0,0,0}, - {31697,31702,31698 ,148,153,149 ,0,0,0}, {31699,31698,31702 ,150,149,153 ,0,0,0}, - {31703,31704,31705 ,126,154,155 ,0,0,0}, {31706,31707,31701 ,156,157,152 ,0,0,0}, - {31704,31707,31706 ,154,157,156 ,0,0,0}, {31704,31706,31705 ,154,156,155 ,0,0,0}, - {31705,31708,31703 ,155,35,126 ,0,0,0}, {31700,31701,31707 ,151,152,157 ,0,0,0}, - {31697,31693,31702 ,148,144,153 ,0,0,0}, {31690,31709,31691 ,141,158,142 ,0,0,0}, - {31710,31709,31711 ,159,158,160 ,0,0,0}, {31709,31710,31691 ,158,159,142 ,0,0,0}, - {31712,31713,31711 ,161,162,160 ,0,0,0}, {31710,31711,31713 ,159,160,162 ,0,0,0}, - {31712,31714,31715 ,161,163,164 ,0,0,0}, {31715,31713,31712 ,164,162,161 ,0,0,0}, - {31716,31714,31717 ,165,163,166 ,0,0,0}, {31714,31716,31715 ,163,165,164 ,0,0,0}, - {31718,31719,31717 ,167,168,166 ,0,0,0}, {31716,31717,31719 ,165,166,168 ,0,0,0}, - {31718,31720,31721 ,167,169,170 ,0,0,0}, {31721,31719,31718 ,170,168,167 ,0,0,0}, - {31722,31720,31723 ,140,169,140 ,0,0,0}, {31720,31722,31721 ,169,140,170 ,0,0,0}, - {31724,31725,31726 ,171,172,173 ,0,0,0}, {31727,31728,31729 ,174,175,176 ,0,0,0}, - {31730,31724,31726 ,177,171,173 ,0,0,0}, {31729,31728,31730 ,176,175,177 ,0,0,0}, - {31728,31727,31731 ,175,174,178 ,0,0,0}, {31726,31729,31730 ,173,176,177 ,0,0,0}, - {31732,31733,31734 ,179,180,181 ,0,0,0}, {31733,31735,31734 ,180,182,181 ,0,0,0}, - {31731,31736,31732 ,178,183,179 ,0,0,0}, {31733,31732,31736 ,180,179,183 ,0,0,0}, - {31043,31737,31738 ,35,184,185 ,0,0,0}, {31739,31740,31735 ,186,187,182 ,0,0,0}, - {31737,31740,31739 ,184,187,186 ,0,0,0}, {31737,31739,31738 ,184,186,185 ,0,0,0}, - {31738,31741,31043 ,185,40,35 ,0,0,0}, {31734,31735,31740 ,181,182,187 ,0,0,0}, - {31731,31727,31736 ,178,174,183 ,0,0,0}, {31724,31742,31725 ,171,188,172 ,0,0,0}, - {31743,31742,31744 ,189,188,104 ,0,0,0}, {31742,31743,31725 ,188,189,172 ,0,0,0}, - {31745,31746,31744 ,190,45,104 ,0,0,0}, {31743,31744,31746 ,189,104,45 ,0,0,0}, - {31745,31747,31748 ,190,191,192 ,0,0,0}, {31748,31746,31745 ,192,45,190 ,0,0,0}, - {31749,31747,31750 ,193,191,194 ,0,0,0}, {31747,31749,31748 ,191,193,192 ,0,0,0}, - {31751,31752,31750 ,111,195,194 ,0,0,0}, {31749,31750,31752 ,193,194,195 ,0,0,0}, - {31751,31753,31754 ,111,52,53 ,0,0,0}, {31754,31752,31751 ,53,195,111 ,0,0,0}, - {31755,31753,31059 ,54,52,54 ,0,0,0}, {31753,31755,31754 ,52,54,53 ,0,0,0}, - {31756,31757,31758 ,196,197,197 ,0,0,0}, {31759,31760,31761 ,198,196,198 ,0,0,0}, - {31760,31756,31758 ,196,196,197 ,0,0,0}, {31759,31761,31762 ,198,198,199 ,0,0,0}, - {31763,31764,31765 ,200,82,200 ,0,0,0}, {31762,31761,31766 ,199,198,199 ,0,0,0}, - {31766,31765,31762 ,199,200,199 ,0,0,0}, {31765,31766,31763 ,200,199,200 ,0,0,0}, - {31764,31763,31767 ,82,200,201 ,0,0,0}, {31760,31759,31756 ,196,198,196 ,0,0,0}, - {31768,31758,31757 ,202,197,197 ,0,0,0}, {31769,31768,31770 ,203,202,202 ,0,0,0}, - {31757,31770,31768 ,197,202,202 ,0,0,0}, {31771,31772,31769 ,203,204,203 ,0,0,0}, - {31769,31770,31771 ,203,202,203 ,0,0,0}, {31772,31773,31774 ,204,204,205 ,0,0,0}, - {31773,31772,31771 ,204,204,203 ,0,0,0}, {31773,31775,31774 ,204,205,205 ,0,0,0}, - {31776,31777,31778 ,206,207,208 ,0,0,0}, {31779,31776,31780 ,209,206,210 ,0,0,0}, - {31776,31779,31777 ,206,209,207 ,0,0,0}, {31781,31782,31780 ,211,212,210 ,0,0,0}, - {31779,31780,31782 ,209,210,212 ,0,0,0}, {31781,31783,31784 ,211,213,214 ,0,0,0}, - {31784,31782,31781 ,214,212,211 ,0,0,0}, {31785,31783,31786 ,215,213,216 ,0,0,0}, - {31783,31785,31784 ,213,215,214 ,0,0,0}, {31787,31788,31786 ,217,218,216 ,0,0,0}, - {31785,31786,31788 ,215,216,218 ,0,0,0}, {31787,31789,31790 ,217,219,220 ,0,0,0}, - {31790,31788,31787 ,220,218,217 ,0,0,0}, {31791,31790,31789 ,221,220,219 ,0,0,0}, - {31791,31792,31790 ,221,221,220 ,0,0,0}, {31776,31778,31793 ,206,208,222 ,0,0,0}, - {31794,31795,31778 ,223,224,208 ,0,0,0}, {31793,31778,31795 ,222,208,224 ,0,0,0}, - {31794,31796,31797 ,223,225,226 ,0,0,0}, {31797,31795,31794 ,226,224,223 ,0,0,0}, - {31798,31796,31799 ,227,225,228 ,0,0,0}, {31796,31798,31797 ,225,227,226 ,0,0,0}, - {31800,31801,31799 ,229,230,228 ,0,0,0}, {31798,31799,31801 ,227,228,230 ,0,0,0}, - {31800,31802,31803 ,229,231,232 ,0,0,0}, {31803,31801,31800 ,232,230,229 ,0,0,0}, - {31804,31802,31805 ,233,231,234 ,0,0,0}, {31802,31804,31803 ,231,233,232 ,0,0,0}, - {31805,31806,31804 ,234,235,233 ,0,0,0}, {31804,31806,31807 ,233,235,235 ,0,0,0}, - {31808,31809,31810 ,236,237,238 ,0,0,0}, {31811,31812,31808 ,239,240,236 ,0,0,0}, - {31808,31810,31811 ,236,238,239 ,0,0,0}, {31812,31813,31814 ,240,241,242 ,0,0,0}, - {31813,31812,31811 ,241,240,239 ,0,0,0}, {31815,31814,31816 ,243,242,244 ,0,0,0}, - {31813,31816,31814 ,241,244,242 ,0,0,0}, {31817,31818,31815 ,245,246,243 ,0,0,0}, - {31815,31816,31817 ,243,244,245 ,0,0,0}, {31819,31818,31817 ,247,246,245 ,0,0,0}, - {31819,31820,31818 ,247,126,246 ,0,0,0}, {31810,31809,31821 ,238,237,248 ,0,0,0}, - {31821,31822,31823 ,248,249,250 ,0,0,0}, {31822,31821,31809 ,249,248,237 ,0,0,0}, - {31824,31823,31825 ,251,250,252 ,0,0,0}, {31822,31825,31823 ,249,252,250 ,0,0,0}, - {31826,31827,31824 ,253,254,251 ,0,0,0}, {31824,31825,31826 ,251,252,253 ,0,0,0}, - {31827,31828,31829 ,254,255,256 ,0,0,0}, {31828,31827,31826 ,255,254,253 ,0,0,0}, - {31828,31830,31829 ,255,257,256 ,0,0,0}, {31829,31830,31831 ,256,257,257 ,0,0,0}, - {31832,31833,31834 ,258,259,260 ,0,0,0}, {31835,31832,31836 ,261,258,262 ,0,0,0}, - {31832,31835,31833 ,258,261,259 ,0,0,0}, {31837,31838,31836 ,263,264,262 ,0,0,0}, - {31835,31836,31838 ,261,262,264 ,0,0,0}, {31837,31839,31840 ,263,265,266 ,0,0,0}, - {31840,31838,31837 ,266,264,263 ,0,0,0}, {31841,31839,31842 ,267,265,268 ,0,0,0}, - {31839,31841,31840 ,265,267,266 ,0,0,0}, {31843,31844,31842 ,269,270,268 ,0,0,0}, - {31841,31842,31844 ,267,268,270 ,0,0,0}, {31843,31845,31846 ,269,271,272 ,0,0,0}, - {31846,31844,31843 ,272,270,269 ,0,0,0}, {31847,31846,31845 ,273,272,271 ,0,0,0}, - {31847,31848,31846 ,273,273,272 ,0,0,0}, {31832,31834,31849 ,258,260,274 ,0,0,0}, - {31850,31851,31834 ,275,276,260 ,0,0,0}, {31849,31834,31851 ,274,260,276 ,0,0,0}, - {31850,31852,31853 ,275,277,278 ,0,0,0}, {31853,31851,31850 ,278,276,275 ,0,0,0}, - {31854,31852,31855 ,279,277,280 ,0,0,0}, {31852,31854,31853 ,277,279,278 ,0,0,0}, - {31856,31857,31855 ,281,282,280 ,0,0,0}, {31854,31855,31857 ,279,280,282 ,0,0,0}, - {31856,31858,31859 ,281,283,284 ,0,0,0}, {31859,31857,31856 ,284,282,281 ,0,0,0}, - {31860,31858,31861 ,285,283,286 ,0,0,0}, {31858,31860,31859 ,283,285,284 ,0,0,0}, - {31861,31862,31860 ,286,257,285 ,0,0,0}, {31860,31862,31863 ,285,257,257 ,0,0,0}, - {31864,31865,31866 ,287,288,288 ,0,0,0}, {31867,31868,31869 ,289,287,289 ,0,0,0}, - {31868,31864,31866 ,287,287,288 ,0,0,0}, {31867,31869,31870 ,289,289,290 ,0,0,0}, - {31871,31872,31873 ,291,82,291 ,0,0,0}, {31870,31869,31874 ,290,289,290 ,0,0,0}, - {31874,31873,31870 ,290,291,290 ,0,0,0}, {31873,31874,31871 ,291,290,291 ,0,0,0}, - {31872,31871,31875 ,82,291,292 ,0,0,0}, {31868,31867,31864 ,287,289,287 ,0,0,0}, - {31876,31866,31865 ,293,288,288 ,0,0,0}, {31877,31876,31878 ,203,293,293 ,0,0,0}, - {31865,31878,31876 ,288,293,293 ,0,0,0}, {31879,31880,31877 ,203,294,203 ,0,0,0}, - {31877,31878,31879 ,203,293,203 ,0,0,0}, {31880,31881,31882 ,294,294,205 ,0,0,0}, - {31881,31880,31879 ,294,294,203 ,0,0,0}, {31881,31883,31882 ,294,205,205 ,0,0,0}, - {31884,31885,31886 ,295,296,295 ,0,0,0}, {31887,31885,31888 ,296,296,297 ,0,0,0}, - {31885,31887,31886 ,296,296,295 ,0,0,0}, {31889,31890,31888 ,298,297,297 ,0,0,0}, - {31887,31888,31890 ,296,297,297 ,0,0,0}, {31889,31891,31892 ,298,299,298 ,0,0,0}, - {31892,31890,31889 ,298,297,298 ,0,0,0}, {31891,31893,31892 ,299,300,298 ,0,0,0}, - {31894,31884,31886 ,301,295,295 ,0,0,0}, {31895,31896,31894 ,302,301,301 ,0,0,0}, - {31884,31894,31896 ,295,301,301 ,0,0,0}, {31895,31897,31898 ,302,303,302 ,0,0,0}, - {31898,31896,31895 ,302,301,302 ,0,0,0}, {31899,31897,31900 ,303,303,304 ,0,0,0}, - {31897,31899,31898 ,303,303,302 ,0,0,0}, {31899,31900,31901 ,303,304,304 ,0,0,0}, - {31902,31903,31904 ,305,306,305 ,0,0,0}, {31905,31903,31906 ,306,306,307 ,0,0,0}, - {31903,31905,31904 ,306,306,305 ,0,0,0}, {31907,31908,31906 ,308,307,307 ,0,0,0}, - {31905,31906,31908 ,306,307,307 ,0,0,0}, {31907,31909,31910 ,308,309,308 ,0,0,0}, - {31910,31908,31907 ,308,307,308 ,0,0,0}, {31909,31911,31910 ,309,310,308 ,0,0,0}, - {31912,31902,31904 ,311,305,305 ,0,0,0}, {31913,31914,31912 ,312,311,311 ,0,0,0}, - {31902,31912,31914 ,305,311,311 ,0,0,0}, {31913,31915,31916 ,312,313,312 ,0,0,0}, - {31916,31914,31913 ,312,311,312 ,0,0,0}, {31917,31915,31918 ,313,313,314 ,0,0,0}, - {31915,31917,31916 ,313,313,312 ,0,0,0}, {31917,31918,31919 ,313,314,314 ,0,0,0}, - {31920,31911,31909 ,315,309,309 ,0,0,0}, {31921,31922,31923 ,316,317,317 ,0,0,0}, - {31924,31925,31926 ,318,318,315 ,0,0,0}, {31927,31928,31929 ,319,319,320 ,0,0,0}, - {31930,31931,31932 ,316,321,321 ,0,0,0}, {31933,31934,31929 ,322,320,320 ,0,0,0}, - {31927,31929,31934 ,319,320,320 ,0,0,0}, {31935,31934,31933 ,323,320,322 ,0,0,0}, - {31931,31928,31932 ,321,319,321 ,0,0,0}, {31932,31928,31927 ,321,319,319 ,0,0,0}, - {31930,31922,31921 ,316,317,316 ,0,0,0}, {31930,31921,31931 ,316,316,321 ,0,0,0}, - {31923,31925,31924 ,317,318,318 ,0,0,0}, {31922,31925,31923 ,317,318,317 ,0,0,0}, - {31920,31926,31911 ,315,315,309 ,0,0,0}, {31924,31926,31920 ,318,315,315 ,0,0,0}, - {31936,31937,31938 ,324,324,324 ,0,0,0}, {31936,31938,31939 ,324,324,324 ,0,0,0}, - {31940,31941,31942 ,325,326,325 ,0,0,0}, {31943,31944,31940 ,327,327,325 ,0,0,0}, - {31940,31942,31943 ,325,325,327 ,0,0,0}, {31944,31945,31946 ,327,328,329 ,0,0,0}, - {31945,31944,31943 ,328,327,327 ,0,0,0}, {31947,31946,31948 ,330,329,331 ,0,0,0}, - {31945,31948,31946 ,328,331,329 ,0,0,0}, {31949,31950,31947 ,332,332,330 ,0,0,0}, - {31947,31948,31949 ,330,331,332 ,0,0,0}, {31950,31951,31952 ,332,333,334 ,0,0,0}, - {31951,31950,31949 ,333,332,332 ,0,0,0}, {31953,31952,31954 ,335,334,335 ,0,0,0}, - {31951,31954,31952 ,333,335,334 ,0,0,0}, {31955,31956,31953 ,336,336,335 ,0,0,0}, - {31953,31954,31955 ,335,335,336 ,0,0,0}, {31942,31941,31957 ,325,326,337 ,0,0,0}, - {31958,31957,31959 ,338,337,339 ,0,0,0}, {31941,31959,31957 ,326,339,337 ,0,0,0}, - {31960,31961,31958 ,340,341,338 ,0,0,0}, {31958,31959,31960 ,338,339,340 ,0,0,0}, - {31961,31962,31963 ,341,342,343 ,0,0,0}, {31962,31961,31960 ,342,341,340 ,0,0,0}, - {31964,31963,31965 ,344,343,345 ,0,0,0}, {31962,31965,31963 ,342,345,343 ,0,0,0}, - {31966,31967,31964 ,346,347,344 ,0,0,0}, {31964,31965,31966 ,344,345,346 ,0,0,0}, - {31967,31968,31969 ,347,348,349 ,0,0,0}, {31968,31967,31966 ,348,347,346 ,0,0,0}, - {31968,31546,31969 ,348,16,349 ,0,0,0}, {31969,31546,31547 ,349,16,350 ,0,0,0}, - {31970,31893,31891 ,351,299,299 ,0,0,0}, {31971,31972,31973 ,352,353,353 ,0,0,0}, - {31974,31975,31976 ,354,354,351 ,0,0,0}, {31977,31978,31979 ,355,355,356 ,0,0,0}, - {31980,31981,31982 ,352,357,357 ,0,0,0}, {31983,31984,31979 ,358,356,356 ,0,0,0}, - {31977,31979,31984 ,355,356,356 ,0,0,0}, {31985,31984,31983 ,359,356,358 ,0,0,0}, - {31981,31978,31982 ,357,355,357 ,0,0,0}, {31982,31978,31977 ,357,355,355 ,0,0,0}, - {31980,31972,31971 ,352,353,352 ,0,0,0}, {31980,31971,31981 ,352,352,357 ,0,0,0}, - {31973,31975,31974 ,353,354,354 ,0,0,0}, {31972,31975,31973 ,353,354,353 ,0,0,0}, - {31970,31976,31893 ,351,351,299 ,0,0,0}, {31974,31976,31970 ,354,351,351 ,0,0,0}, - {31986,31987,31988 ,360,324,360 ,0,0,0}, {31987,31986,31989 ,324,360,324 ,0,0,0}, - {31990,31991,31992 ,361,362,361 ,0,0,0}, {31993,31994,31990 ,363,363,361 ,0,0,0}, - {31990,31992,31993 ,361,361,363 ,0,0,0}, {31994,31995,31996 ,363,364,365 ,0,0,0}, - {31995,31994,31993 ,364,363,363 ,0,0,0}, {31997,31996,31998 ,366,365,367 ,0,0,0}, - {31995,31998,31996 ,364,367,365 ,0,0,0}, {31999,32000,31997 ,368,369,366 ,0,0,0}, - {31997,31998,31999 ,366,367,368 ,0,0,0}, {32000,32001,32002 ,369,370,370 ,0,0,0}, - {32001,32000,31999 ,370,369,368 ,0,0,0}, {32003,32002,32004 ,371,370,371 ,0,0,0}, - {32001,32004,32002 ,370,371,370 ,0,0,0}, {32005,32006,32003 ,372,372,371 ,0,0,0}, - {32003,32004,32005 ,371,371,372 ,0,0,0}, {31992,31991,32007 ,361,362,373 ,0,0,0}, - {32008,32007,32009 ,374,373,375 ,0,0,0}, {31991,32009,32007 ,362,375,373 ,0,0,0}, - {32010,32011,32008 ,376,377,374 ,0,0,0}, {32008,32009,32010 ,374,375,376 ,0,0,0}, - {32011,32012,32013 ,377,378,379 ,0,0,0}, {32012,32011,32010 ,378,377,376 ,0,0,0}, - {32014,32013,32015 ,380,379,381 ,0,0,0}, {32012,32015,32013 ,378,381,379 ,0,0,0}, - {32016,32017,32014 ,382,383,380 ,0,0,0}, {32014,32015,32016 ,380,381,382 ,0,0,0}, - {32017,32018,32019 ,383,384,385 ,0,0,0}, {32018,32017,32016 ,384,383,382 ,0,0,0}, - {32018,31526,32019 ,384,4,385 ,0,0,0}, {32019,31526,31527 ,385,4,386 ,0,0,0}, - {31875,32020,32021 ,387,388,388 ,0,0,0}, {32022,32023,32024 ,389,389,390 ,0,0,0}, - {32025,32026,32027 ,390,391,391 ,0,0,0}, {32028,32029,32030 ,392,393,392 ,0,0,0}, - {32031,32032,32033 ,394,394,393 ,0,0,0}, {32034,32035,32030 ,395,395,392 ,0,0,0}, - {32028,32030,32035 ,392,392,395 ,0,0,0}, {32034,32036,32037 ,395,396,396 ,0,0,0}, - {32037,32035,32034 ,396,395,395 ,0,0,0}, {32028,32033,32029 ,392,393,393 ,0,0,0}, - {32027,32026,32020 ,391,391,388 ,0,0,0}, {32033,32032,32029 ,393,394,393 ,0,0,0}, - {32031,32022,32032 ,394,389,394 ,0,0,0}, {32023,32025,32024 ,389,390,390 ,0,0,0}, - {32031,32023,32022 ,394,389,389 ,0,0,0}, {32024,32025,32027 ,390,390,391 ,0,0,0}, - {31875,32021,31872 ,387,388,397 ,0,0,0}, {32020,32026,32021 ,388,391,388 ,0,0,0}, - {32038,32039,32040 ,398,399,400 ,0,0,0}, {32041,32040,32042 ,401,400,402 ,0,0,0}, - {32039,32042,32040 ,399,402,400 ,0,0,0}, {32042,32043,32044 ,402,403,404 ,0,0,0}, - {32044,32041,32042 ,404,401,402 ,0,0,0}, {32045,32043,32046 ,405,403,406 ,0,0,0}, - {32043,32045,32044 ,403,405,404 ,0,0,0}, {32047,32048,32046 ,407,408,406 ,0,0,0}, - {32045,32046,32048 ,405,406,408 ,0,0,0}, {32047,32049,32050 ,407,409,410 ,0,0,0}, - {32050,32048,32047 ,410,408,407 ,0,0,0}, {32051,32049,32052 ,411,409,412 ,0,0,0}, - {32049,32051,32050 ,409,411,410 ,0,0,0}, {32053,32051,32054 ,413,411,414 ,0,0,0}, - {32052,32054,32051 ,412,414,411 ,0,0,0}, {32055,32056,32053 ,415,416,413 ,0,0,0}, - {32053,32054,32055 ,413,414,415 ,0,0,0}, {32057,32055,32058 ,417,415,418 ,0,0,0}, - {32055,32057,32056 ,415,417,416 ,0,0,0}, {32059,32060,32058 ,419,420,418 ,0,0,0}, - {32057,32058,32060 ,417,418,420 ,0,0,0}, {32059,32061,32062 ,419,421,422 ,0,0,0}, - {32062,32060,32059 ,422,420,419 ,0,0,0}, {32063,32061,32064 ,423,421,424 ,0,0,0}, - {32061,32063,32062 ,421,423,422 ,0,0,0}, {32065,32066,32064 ,425,426,424 ,0,0,0}, - {32063,32064,32066 ,423,424,426 ,0,0,0}, {32067,32068,32066 ,427,427,426 ,0,0,0}, - {32066,32065,32067 ,426,425,427 ,0,0,0}, {32039,32038,32069 ,399,398,428 ,0,0,0}, - {32069,32070,32071 ,428,429,430 ,0,0,0}, {32070,32069,32038 ,429,428,398 ,0,0,0}, - {32072,32073,32070 ,431,432,429 ,0,0,0}, {32071,32070,32073 ,430,429,432 ,0,0,0}, - {32072,32074,32075 ,431,433,434 ,0,0,0}, {32075,32073,32072 ,434,432,431 ,0,0,0}, - {32076,32074,32077 ,435,433,436 ,0,0,0}, {32074,32076,32075 ,433,435,434 ,0,0,0}, - {32078,32079,32077 ,437,438,436 ,0,0,0}, {32076,32077,32079 ,435,436,438 ,0,0,0}, - {32078,32080,32081 ,437,439,440 ,0,0,0}, {32081,32079,32078 ,440,438,437 ,0,0,0}, - {32081,32082,32083 ,440,441,442 ,0,0,0}, {32082,32081,32080 ,441,440,439 ,0,0,0}, - {32084,32083,32085 ,443,442,444 ,0,0,0}, {32082,32085,32083 ,441,444,442 ,0,0,0}, - {32085,32086,32087 ,444,445,446 ,0,0,0}, {32087,32084,32085 ,446,443,444 ,0,0,0}, - {32088,32086,32089 ,447,445,448 ,0,0,0}, {32086,32088,32087 ,445,447,446 ,0,0,0}, - {32090,32091,32089 ,449,450,448 ,0,0,0}, {32088,32089,32091 ,447,448,450 ,0,0,0}, - {32090,32092,32093 ,449,451,452 ,0,0,0}, {32093,32091,32090 ,452,450,449 ,0,0,0}, - {32094,32092,32095 ,453,451,454 ,0,0,0}, {32092,32094,32093 ,451,453,452 ,0,0,0}, - {32095,32096,32094 ,454,455,453 ,0,0,0}, {32094,32096,32097 ,453,455,456 ,0,0,0}, - {32098,32099,32100 ,457,458,459 ,0,0,0}, {32098,32100,32101 ,457,459,460 ,0,0,0}, - {32102,31848,31847 ,461,273,273 ,0,0,0}, {32103,32104,32105 ,462,463,464 ,0,0,0}, - {32106,32107,32108 ,465,466,467 ,0,0,0}, {32109,32110,32111 ,468,469,470 ,0,0,0}, - {32112,32113,32114 ,471,472,473 ,0,0,0}, {32115,32116,32117 ,474,475,476 ,0,0,0}, - {32118,32119,32120 ,477,478,479 ,0,0,0}, {32121,32122,32123 ,480,481,482 ,0,0,0}, - {32121,32124,32116 ,480,483,475 ,0,0,0}, {32125,32122,32126 ,484,481,485 ,0,0,0}, - {32122,32125,32123 ,481,484,482 ,0,0,0}, {32127,32128,32126 ,486,487,485 ,0,0,0}, - {32125,32126,32128 ,484,485,487 ,0,0,0}, {32129,32130,32128 ,488,488,487 ,0,0,0}, - {32128,32127,32129 ,487,486,488 ,0,0,0}, {32117,32116,32124 ,476,475,483 ,0,0,0}, - {32121,32123,32124 ,480,482,483 ,0,0,0}, {32118,32115,32119 ,477,474,478 ,0,0,0}, - {32115,32117,32119 ,474,476,478 ,0,0,0}, {32111,32118,32109 ,470,477,468 ,0,0,0}, - {32118,32120,32109 ,477,479,468 ,0,0,0}, {32114,32113,32110 ,473,472,469 ,0,0,0}, - {32114,32110,32109 ,473,469,468 ,0,0,0}, {32112,32104,32103 ,471,463,462 ,0,0,0}, - {32112,32103,32113 ,471,462,472 ,0,0,0}, {32105,32107,32106 ,464,466,465 ,0,0,0}, - {32104,32107,32105 ,463,466,464 ,0,0,0}, {32102,32108,32131 ,461,467,489 ,0,0,0}, - {32106,32108,32102 ,465,467,461 ,0,0,0}, {31848,32102,32131 ,273,461,489 ,0,0,0}, - {32132,32133,32134 ,490,491,492 ,0,0,0}, {32135,32136,32133 ,493,494,491 ,0,0,0}, - {32137,32138,32139 ,495,496,497 ,0,0,0}, {32137,32132,32134 ,495,490,492 ,0,0,0}, - {32140,32141,32142 ,498,499,500 ,0,0,0}, {32139,32132,32137 ,497,490,495 ,0,0,0}, - {32138,32142,32141 ,496,500,499 ,0,0,0}, {32143,32140,32142 ,501,498,500 ,0,0,0}, - {32139,32138,32141 ,497,496,499 ,0,0,0}, {32144,32145,32146 ,502,503,504 ,0,0,0}, - {32147,32144,32146 ,505,502,504 ,0,0,0}, {32148,32143,32145 ,506,501,503 ,0,0,0}, - {32145,32144,32148 ,503,502,506 ,0,0,0}, {32146,32149,32147 ,504,507,505 ,0,0,0}, - {32143,32148,32140 ,501,506,498 ,0,0,0}, {32147,32149,32150 ,505,507,508 ,0,0,0}, - {32134,32133,32136 ,492,491,494 ,0,0,0}, {32151,32150,32149 ,508,508,507 ,0,0,0}, - {32135,32152,32153 ,493,509,510 ,0,0,0}, {32153,32136,32135 ,510,494,493 ,0,0,0}, - {32154,32152,32155 ,511,509,512 ,0,0,0}, {32152,32154,32153 ,509,511,510 ,0,0,0}, - {32156,32157,32155 ,513,514,512 ,0,0,0}, {32154,32155,32157 ,511,512,514 ,0,0,0}, - {32156,32158,32159 ,513,515,516 ,0,0,0}, {32159,32157,32156 ,516,514,513 ,0,0,0}, - {32160,32158,32161 ,517,515,518 ,0,0,0}, {32158,32160,32159 ,515,517,516 ,0,0,0}, - {32162,32163,32161 ,519,520,518 ,0,0,0}, {32160,32161,32163 ,517,518,520 ,0,0,0}, - {32162,32164,32165 ,519,521,522 ,0,0,0}, {32165,32163,32162 ,522,520,519 ,0,0,0}, - {32166,32164,32167 ,523,521,524 ,0,0,0}, {32164,32166,32165 ,521,523,522 ,0,0,0}, - {32166,32167,32168 ,523,524,525 ,0,0,0}, {32168,32167,32169 ,525,524,525 ,0,0,0}, - {32170,31820,31819 ,526,527,247 ,0,0,0}, {32171,32172,32173 ,528,529,530 ,0,0,0}, - {32174,32175,32176 ,531,532,533 ,0,0,0}, {32177,32178,32179 ,534,535,536 ,0,0,0}, - {32180,32181,32182 ,537,538,539 ,0,0,0}, {32183,32184,32185 ,540,541,542 ,0,0,0}, - {32186,32183,32179 ,543,540,536 ,0,0,0}, {32187,32185,32188 ,544,542,545 ,0,0,0}, - {32184,32188,32185 ,541,545,542 ,0,0,0}, {32189,32190,32187 ,546,546,544 ,0,0,0}, - {32187,32188,32189 ,544,545,546 ,0,0,0}, {32178,32186,32179 ,535,543,536 ,0,0,0}, - {32186,32184,32183 ,543,541,540 ,0,0,0}, {32182,32181,32177 ,539,538,534 ,0,0,0}, - {32181,32178,32177 ,538,535,534 ,0,0,0}, {32171,32173,32180 ,528,530,537 ,0,0,0}, - {32171,32180,32182 ,528,537,539 ,0,0,0}, {32172,32175,32174 ,529,532,531 ,0,0,0}, - {32172,32174,32173 ,529,531,530 ,0,0,0}, {32176,32191,32170 ,533,547,526 ,0,0,0}, - {32175,32191,32176 ,532,547,533 ,0,0,0}, {31820,32170,32191 ,527,526,547 ,0,0,0}, - {32192,32193,32194 ,548,549,550 ,0,0,0}, {32195,32196,32193 ,551,552,549 ,0,0,0}, - {32197,32198,32199 ,553,554,555 ,0,0,0}, {32197,32192,32194 ,553,548,550 ,0,0,0}, - {32200,32201,32202 ,556,557,558 ,0,0,0}, {32199,32192,32197 ,555,548,553 ,0,0,0}, - {32198,32202,32201 ,554,558,557 ,0,0,0}, {32203,32200,32202 ,559,556,558 ,0,0,0}, - {32199,32198,32201 ,555,554,557 ,0,0,0}, {32204,32205,32206 ,560,561,562 ,0,0,0}, - {32207,32204,32206 ,563,560,562 ,0,0,0}, {32208,32203,32205 ,564,559,561 ,0,0,0}, - {32205,32204,32208 ,561,560,564 ,0,0,0}, {32206,32209,32207 ,562,565,563 ,0,0,0}, - {32203,32208,32200 ,559,564,556 ,0,0,0}, {32207,32209,32210 ,563,565,508 ,0,0,0}, - {32194,32193,32196 ,550,549,552 ,0,0,0}, {32211,32210,32209 ,508,508,565 ,0,0,0}, - {32195,32212,32213 ,551,566,567 ,0,0,0}, {32213,32196,32195 ,567,552,551 ,0,0,0}, - {32214,32212,32215 ,568,566,569 ,0,0,0}, {32212,32214,32213 ,566,568,567 ,0,0,0}, - {32216,32217,32215 ,570,571,569 ,0,0,0}, {32214,32215,32217 ,568,569,571 ,0,0,0}, - {32216,32218,32219 ,570,572,573 ,0,0,0}, {32219,32217,32216 ,573,571,570 ,0,0,0}, - {32220,32218,32221 ,574,572,575 ,0,0,0}, {32218,32220,32219 ,572,574,573 ,0,0,0}, - {32222,32223,32221 ,576,577,575 ,0,0,0}, {32220,32221,32223 ,574,575,577 ,0,0,0}, - {32222,32224,32225 ,576,578,579 ,0,0,0}, {32225,32223,32222 ,579,577,576 ,0,0,0}, - {32226,32224,32227 ,580,578,581 ,0,0,0}, {32224,32226,32225 ,578,580,579 ,0,0,0}, - {32226,32227,32228 ,580,581,525 ,0,0,0}, {32228,32227,32229 ,525,581,525 ,0,0,0}, - {32230,31792,31791 ,582,221,221 ,0,0,0}, {32231,32232,32233 ,583,584,585 ,0,0,0}, - {32234,32235,32236 ,586,587,588 ,0,0,0}, {32237,32238,32239 ,589,590,591 ,0,0,0}, - {32240,32241,32242 ,592,593,594 ,0,0,0}, {32243,32244,32245 ,595,596,597 ,0,0,0}, - {32246,32247,32248 ,598,599,600 ,0,0,0}, {32249,32250,32251 ,601,602,603 ,0,0,0}, - {32249,32252,32244 ,601,604,596 ,0,0,0}, {32253,32250,32254 ,605,602,606 ,0,0,0}, - {32250,32253,32251 ,602,605,603 ,0,0,0}, {32255,32256,32254 ,607,608,606 ,0,0,0}, - {32253,32254,32256 ,605,606,608 ,0,0,0}, {32257,32258,32256 ,546,546,608 ,0,0,0}, - {32256,32255,32257 ,608,607,546 ,0,0,0}, {32245,32244,32252 ,597,596,604 ,0,0,0}, - {32249,32251,32252 ,601,603,604 ,0,0,0}, {32246,32243,32247 ,598,595,599 ,0,0,0}, - {32243,32245,32247 ,595,597,599 ,0,0,0}, {32239,32246,32237 ,591,598,589 ,0,0,0}, - {32246,32248,32237 ,598,600,589 ,0,0,0}, {32242,32241,32238 ,594,593,590 ,0,0,0}, - {32242,32238,32237 ,594,590,589 ,0,0,0}, {32240,32232,32231 ,592,584,583 ,0,0,0}, - {32240,32231,32241 ,592,583,593 ,0,0,0}, {32233,32235,32234 ,585,587,586 ,0,0,0}, - {32232,32235,32233 ,584,587,585 ,0,0,0}, {32230,32236,32259 ,582,588,609 ,0,0,0}, - {32234,32236,32230 ,586,588,582 ,0,0,0}, {31792,32230,32259 ,221,582,609 ,0,0,0}, - {32260,32261,32262 ,610,611,610 ,0,0,0}, {32261,32260,32263 ,611,610,611 ,0,0,0}, - {32264,32265,32266 ,612,613,614 ,0,0,0}, {32267,32266,32268 ,615,614,616 ,0,0,0}, - {32265,32268,32266 ,613,616,614 ,0,0,0}, {32268,32269,32270 ,616,617,618 ,0,0,0}, - {32270,32267,32268 ,618,615,616 ,0,0,0}, {32271,32269,32272 ,619,617,620 ,0,0,0}, - {32269,32271,32270 ,617,619,618 ,0,0,0}, {32273,32274,32272 ,621,622,620 ,0,0,0}, - {32271,32272,32274 ,619,620,622 ,0,0,0}, {32273,32275,32276 ,621,623,624 ,0,0,0}, - {32276,32274,32273 ,624,622,621 ,0,0,0}, {32277,32275,32278 ,625,623,626 ,0,0,0}, - {32275,32277,32276 ,623,625,624 ,0,0,0}, {32279,32277,32280 ,627,625,628 ,0,0,0}, - {32278,32280,32277 ,626,628,625 ,0,0,0}, {32281,32282,32279 ,629,630,627 ,0,0,0}, - {32279,32280,32281 ,627,628,629 ,0,0,0}, {32283,32281,32284 ,631,629,632 ,0,0,0}, - {32281,32283,32282 ,629,631,630 ,0,0,0}, {32285,32286,32284 ,633,634,632 ,0,0,0}, - {32283,32284,32286 ,631,632,634 ,0,0,0}, {32285,32287,32288 ,633,635,636 ,0,0,0}, - {32288,32286,32285 ,636,634,633 ,0,0,0}, {32289,32287,32290 ,637,635,638 ,0,0,0}, - {32287,32289,32288 ,635,637,636 ,0,0,0}, {32291,32292,32290 ,639,640,638 ,0,0,0}, - {32289,32290,32292 ,637,638,640 ,0,0,0}, {32293,32294,32292 ,641,641,640 ,0,0,0}, - {32292,32291,32293 ,640,639,641 ,0,0,0}, {32265,32264,32295 ,613,612,642 ,0,0,0}, - {32295,32296,32297 ,642,643,644 ,0,0,0}, {32296,32295,32264 ,643,642,612 ,0,0,0}, - {32298,32299,32296 ,645,646,643 ,0,0,0}, {32297,32296,32299 ,644,643,646 ,0,0,0}, - {32298,32300,32301 ,645,647,648 ,0,0,0}, {32301,32299,32298 ,648,646,645 ,0,0,0}, - {32302,32300,32303 ,649,647,650 ,0,0,0}, {32300,32302,32301 ,647,649,648 ,0,0,0}, - {32304,32305,32303 ,651,652,650 ,0,0,0}, {32302,32303,32305 ,649,650,652 ,0,0,0}, - {32304,32306,32307 ,651,653,654 ,0,0,0}, {32307,32305,32304 ,654,652,651 ,0,0,0}, - {32307,32308,32309 ,654,655,656 ,0,0,0}, {32308,32307,32306 ,655,654,653 ,0,0,0}, - {32310,32309,32311 ,657,656,658 ,0,0,0}, {32308,32311,32309 ,655,658,656 ,0,0,0}, - {32311,32312,32313 ,658,659,660 ,0,0,0}, {32313,32310,32311 ,660,657,658 ,0,0,0}, - {32314,32312,32315 ,661,659,662 ,0,0,0}, {32312,32314,32313 ,659,661,660 ,0,0,0}, - {32316,32317,32315 ,663,664,662 ,0,0,0}, {32314,32315,32317 ,661,662,664 ,0,0,0}, - {32316,32318,32319 ,663,665,666 ,0,0,0}, {32319,32317,32316 ,666,664,663 ,0,0,0}, - {32320,32318,32321 ,667,665,668 ,0,0,0}, {32318,32320,32319 ,665,667,666 ,0,0,0}, - {32321,32322,32320 ,668,669,667 ,0,0,0}, {32320,32322,32323 ,667,669,670 ,0,0,0}, - {31767,32324,32325 ,671,672,672 ,0,0,0}, {32326,32327,32328 ,673,674,675 ,0,0,0}, - {32329,32330,32331 ,675,676,676 ,0,0,0}, {32332,32333,32334 ,677,678,677 ,0,0,0}, - {32335,32336,32337 ,679,679,678 ,0,0,0}, {32338,32339,32334 ,680,680,677 ,0,0,0}, - {32332,32334,32339 ,677,677,680 ,0,0,0}, {32338,32340,32341 ,680,396,396 ,0,0,0}, - {32341,32339,32338 ,396,680,680 ,0,0,0}, {32332,32337,32333 ,677,678,678 ,0,0,0}, - {32331,32330,32324 ,676,676,672 ,0,0,0}, {32337,32336,32333 ,678,679,678 ,0,0,0}, - {32335,32326,32336 ,679,673,679 ,0,0,0}, {32327,32329,32328 ,674,675,675 ,0,0,0}, - {32335,32327,32326 ,679,674,673 ,0,0,0}, {32328,32329,32331 ,675,675,676 ,0,0,0}, - {31767,32325,31764 ,671,672,681 ,0,0,0}, {32324,32330,32325 ,672,676,672 ,0,0,0}, - {31536,31537,32342 ,21,21,21 ,0,0,0}, {31536,32342,32343 ,21,21,21 ,0,0,0}, - {32344,32345,32346 ,682,683,684 ,0,0,0}, {32347,32348,32346 ,685,686,684 ,0,0,0}, - {32344,32346,32348 ,682,684,686 ,0,0,0}, {32347,32349,32350 ,685,687,688 ,0,0,0}, - {32350,32348,32347 ,688,686,685 ,0,0,0}, {32351,32349,32352 ,689,687,690 ,0,0,0}, - {32349,32351,32350 ,687,689,688 ,0,0,0}, {32353,32354,32352 ,691,692,690 ,0,0,0}, - {32351,32352,32354 ,689,690,692 ,0,0,0}, {32353,32355,32356 ,691,693,694 ,0,0,0}, - {32356,32354,32353 ,694,692,691 ,0,0,0}, {32357,32355,32358 ,695,693,696 ,0,0,0}, - {32355,32357,32356 ,693,695,694 ,0,0,0}, {32359,32360,32358 ,697,698,696 ,0,0,0}, - {32357,32358,32360 ,695,696,698 ,0,0,0}, {32359,32361,32362 ,697,699,700 ,0,0,0}, - {32362,32360,32359 ,700,698,697 ,0,0,0}, {32363,32361,32364 ,701,699,702 ,0,0,0}, - {32361,32363,32362 ,699,701,700 ,0,0,0}, {32365,32366,32364 ,641,703,702 ,0,0,0}, - {32363,32364,32366 ,701,702,703 ,0,0,0}, {32367,32366,32365 ,641,703,641 ,0,0,0}, - {32368,32345,32344 ,704,683,682 ,0,0,0}, {32369,32368,32370 ,705,704,706 ,0,0,0}, - {32368,32369,32345 ,704,705,683 ,0,0,0}, {32371,32372,32370 ,707,708,706 ,0,0,0}, - {32369,32370,32372 ,705,706,708 ,0,0,0}, {32371,32373,32374 ,707,709,710 ,0,0,0}, - {32374,32372,32371 ,710,708,707 ,0,0,0}, {32375,32373,32376 ,711,709,712 ,0,0,0}, - {32373,32375,32374 ,709,711,710 ,0,0,0}, {32377,32378,32376 ,713,714,712 ,0,0,0}, - {32375,32376,32378 ,711,712,714 ,0,0,0}, {32377,32379,32380 ,713,715,716 ,0,0,0}, - {32380,32378,32377 ,716,714,713 ,0,0,0}, {32381,32379,32382 ,717,715,718 ,0,0,0}, - {32379,32381,32380 ,715,717,716 ,0,0,0}, {32383,32384,32382 ,719,720,718 ,0,0,0}, - {32381,32382,32384 ,717,718,720 ,0,0,0}, {32383,32385,32386 ,719,721,722 ,0,0,0}, - {32386,32384,32383 ,722,720,719 ,0,0,0}, {32387,32385,32388 ,723,721,456 ,0,0,0}, - {32385,32387,32386 ,721,723,722 ,0,0,0}, {32387,32388,32389 ,723,456,724 ,0,0,0}, - {31556,31557,32390 ,21,725,725 ,0,0,0}, {31556,32390,32391 ,21,725,21 ,0,0,0}, - {31824,31559,31823 ,726,726,726 ,0,0,0}, {31610,32348,32392 ,727,727,726 ,0,0,0}, - {32184,32186,32393 ,726,726,726 ,0,0,0}, {32368,32344,31610 ,727,727,727 ,0,0,0}, - {31607,32368,31610 ,726,727,727 ,0,0,0}, {31574,32394,32395 ,726,726,726 ,0,0,0}, - {31766,31970,31763 ,726,726,726 ,0,0,0}, {32370,31607,31608 ,726,726,726 ,0,0,0}, - {32373,31603,31601 ,727,726,726 ,0,0,0}, {32396,32392,32350 ,726,726,726 ,0,0,0}, - {32397,32398,32399 ,726,726,726 ,0,0,0}, {32286,32400,32401 ,727,727,727 ,0,0,0}, - {32057,32402,32403 ,726,726,727 ,0,0,0}, {32396,32351,32404 ,726,726,726 ,0,0,0}, - {32405,32277,32406 ,726,726,726 ,0,0,0}, {32276,32405,32407 ,727,726,726 ,0,0,0}, - {32354,32408,32404 ,727,726,726 ,0,0,0}, {31601,31604,32376 ,726,727,726 ,0,0,0}, - {32409,31708,32271 ,726,727,726 ,0,0,0}, {32315,32312,31710 ,726,726,726 ,0,0,0}, - {32410,32408,32356 ,727,726,726 ,0,0,0}, {31595,32377,31604 ,727,726,727 ,0,0,0}, - {32411,32360,32412 ,727,727,727 ,0,0,0}, {32411,32410,32357 ,727,727,727 ,0,0,0}, - {32413,32412,32363 ,726,727,726 ,0,0,0}, {32362,32412,32360 ,726,727,727 ,0,0,0}, - {32414,32367,32415 ,727,726,726 ,0,0,0}, {32414,32413,32366 ,727,726,726 ,0,0,0}, - {32415,32416,32417 ,726,726,726 ,0,0,0}, {32418,32419,31624 ,726,726,727 ,0,0,0}, - {32382,31597,32383 ,726,727,726 ,0,0,0}, {32420,32421,32418 ,727,727,726 ,0,0,0}, - {32422,32416,32423 ,727,726,726 ,0,0,0}, {31617,31618,32424 ,727,726,726 ,0,0,0}, - {32030,31919,32034 ,726,726,726 ,0,0,0}, {32425,32426,32036 ,727,726,726 ,0,0,0}, - {32419,32427,32428 ,726,726,727 ,0,0,0}, {32022,31903,31902 ,726,726,727 ,0,0,0}, - {32429,32110,32430 ,726,726,728 ,0,0,0}, {32020,31875,31909 ,727,726,727 ,0,0,0}, - {32430,32113,32103 ,728,726,726 ,0,0,0}, {31645,31854,31627 ,728,726,726 ,0,0,0}, - {31648,31851,31853 ,726,728,726 ,0,0,0}, {31860,31631,31628 ,726,726,726 ,0,0,0}, - {32431,32432,32116 ,726,726,726 ,0,0,0}, {31631,31863,31629 ,726,726,726 ,0,0,0}, - {31871,31874,31924 ,726,726,727 ,0,0,0}, {32433,31641,31637 ,726,726,726 ,0,0,0}, - {31643,31640,32434 ,726,726,726 ,0,0,0}, {32435,32436,32101 ,727,726,726 ,0,0,0}, - {32164,31953,31956 ,726,726,726 ,0,0,0}, {32437,32096,31677 ,726,726,726 ,0,0,0}, - {32438,32439,32440 ,727,727,726 ,0,0,0}, {31660,32095,32092 ,726,727,726 ,0,0,0}, - {32441,32442,32068 ,727,726,727 ,0,0,0}, {32443,32062,32444 ,726,726,727 ,0,0,0}, - {31670,32085,31667 ,727,726,726 ,0,0,0}, {32445,32045,32048 ,727,726,726 ,0,0,0}, - {32038,32446,32447 ,727,726,726 ,0,0,0}, {31675,31672,32074 ,727,726,726 ,0,0,0}, - {31675,32072,32070 ,727,726,727 ,0,0,0}, {31673,32077,31672 ,726,727,726 ,0,0,0}, - {32078,31673,31669 ,727,726,726 ,0,0,0}, {32447,32070,32038 ,726,727,727 ,0,0,0}, - {32448,32446,32040 ,726,726,726 ,0,0,0}, {31667,32082,32080 ,726,727,726 ,0,0,0}, - {32041,32449,32448 ,727,726,726 ,0,0,0}, {32445,32449,32044 ,727,726,727 ,0,0,0}, - {31661,32086,31670 ,727,726,727 ,0,0,0}, {32050,32450,32451 ,726,727,727 ,0,0,0}, - {32451,32445,32048 ,727,727,726 ,0,0,0}, {32403,32452,32053 ,727,726,727 ,0,0,0}, - {32051,32452,32450 ,726,726,727 ,0,0,0}, {32453,32068,32442 ,727,727,726 ,0,0,0}, - {32063,32454,32444 ,726,726,727 ,0,0,0}, {32066,32068,32454 ,726,727,726 ,0,0,0}, - {32454,32068,32453 ,726,727,727 ,0,0,0}, {32060,32443,32402 ,726,726,726 ,0,0,0}, - {32063,32066,32454 ,726,726,726 ,0,0,0}, {31689,32442,32441 ,727,726,727 ,0,0,0}, - {32439,32455,31683 ,727,726,726 ,0,0,0}, {31689,32441,32456 ,727,727,726 ,0,0,0}, - {31683,31686,32439 ,726,727,727 ,0,0,0}, {32455,31682,31683 ,726,727,726 ,0,0,0}, - {32438,32440,32457 ,727,726,726 ,0,0,0}, {32458,32438,32457 ,726,727,726 ,0,0,0}, - {32459,32460,32101 ,726,726,726 ,0,0,0}, {32101,32458,32457 ,726,726,726 ,0,0,0}, - {32460,31882,32458 ,726,726,726 ,0,0,0}, {32101,32391,32461 ,726,727,726 ,0,0,0}, - {32162,31952,31953 ,726,726,726 ,0,0,0}, {32462,32100,32463 ,726,726,726 ,0,0,0}, - {32167,31956,32464 ,726,726,726 ,0,0,0}, {32105,32465,32103 ,726,726,726 ,0,0,0}, - {32465,32105,32466 ,726,726,726 ,0,0,0}, {31839,31656,31842 ,726,726,726 ,0,0,0}, - {32467,31845,32468 ,726,726,726 ,0,0,0}, {32468,31843,31657 ,726,726,726 ,0,0,0}, - {32469,31847,32467 ,726,726,726 ,0,0,0}, {31847,32469,32102 ,726,726,726 ,0,0,0}, - {31845,31843,32468 ,726,726,726 ,0,0,0}, {32106,32102,32469 ,726,726,726 ,0,0,0}, - {31845,32467,31847 ,726,726,726 ,0,0,0}, {31657,31843,31842 ,726,726,726 ,0,0,0}, - {32106,32469,32466 ,726,726,726 ,0,0,0}, {31654,31656,31837 ,726,726,726 ,0,0,0}, - {32431,32118,32470 ,726,729,726 ,0,0,0}, {31836,31832,31651 ,726,726,726 ,0,0,0}, - {31857,31628,31627 ,726,726,726 ,0,0,0}, {32431,32115,32118 ,726,726,729 ,0,0,0}, - {31629,32471,31638 ,726,728,726 ,0,0,0}, {32432,32472,32121 ,726,726,726 ,0,0,0}, - {32433,32473,31641 ,726,726,726 ,0,0,0}, {32471,32433,31635 ,728,726,726 ,0,0,0}, - {31866,31876,31928 ,727,727,727 ,0,0,0}, {31928,31931,31866 ,727,727,727 ,0,0,0}, - {31868,31866,31931 ,726,727,727 ,0,0,0}, {32474,32176,32170 ,726,726,726 ,0,0,0}, - {31931,31921,31868 ,727,726,726 ,0,0,0}, {32027,32020,31907 ,726,727,726 ,0,0,0}, - {31920,31871,31924 ,727,726,727 ,0,0,0}, {31921,31923,31869 ,726,726,727 ,0,0,0}, - {31933,31877,31880 ,726,726,726 ,0,0,0}, {32126,32122,32475 ,726,726,726 ,0,0,0}, - {31875,31871,31920 ,726,726,727 ,0,0,0}, {31947,32158,32156 ,726,726,726 ,0,0,0}, - {32476,32477,32129 ,726,726,726 ,0,0,0}, {32475,32122,32472 ,726,726,726 ,0,0,0}, - {31923,31874,31869 ,726,726,727 ,0,0,0}, {31869,31868,31921 ,727,726,726 ,0,0,0}, - {31946,31947,32156 ,726,726,726 ,0,0,0}, {32127,32476,32129 ,726,726,726 ,0,0,0}, - {32473,32478,32479 ,726,726,726 ,0,0,0}, {31640,31641,32434 ,726,726,726 ,0,0,0}, - {32480,31554,32169 ,726,726,726 ,0,0,0}, {32478,32462,32463 ,726,726,726 ,0,0,0}, - {32478,32463,32479 ,726,726,726 ,0,0,0}, {32158,31950,32161 ,726,726,726 ,0,0,0}, - {31929,31928,31876 ,726,727,727 ,0,0,0}, {32140,31965,32141 ,726,728,728 ,0,0,0}, - {32141,31962,32139 ,728,728,726 ,0,0,0}, {32027,31906,32024 ,726,726,726 ,0,0,0}, - {31941,32133,31959 ,726,726,728 ,0,0,0}, {32024,31906,31903 ,726,726,726 ,0,0,0}, - {32022,32024,31903 ,726,726,726 ,0,0,0}, {31914,32029,32032 ,727,726,726 ,0,0,0}, - {31902,32032,32022 ,727,726,726 ,0,0,0}, {32006,32481,32227 ,726,726,726 ,0,0,0}, - {32032,31902,31914 ,726,727,727 ,0,0,0}, {32482,32483,31534 ,726,726,726 ,0,0,0}, - {32484,32485,32486 ,726,726,726 ,0,0,0}, {32487,32486,31544 ,726,726,726 ,0,0,0}, - {32488,32188,32489 ,726,726,726 ,0,0,0}, {32485,32484,32490 ,726,726,726 ,0,0,0}, - {31817,31590,31819 ,726,726,726 ,0,0,0}, {31569,32394,31574 ,726,726,726 ,0,0,0}, - {32491,32492,32174 ,726,726,726 ,0,0,0}, {32474,32170,31590 ,726,726,726 ,0,0,0}, - {32174,32176,32491 ,726,726,726 ,0,0,0}, {32474,32491,32176 ,726,726,726 ,0,0,0}, - {32493,32173,32492 ,726,726,726 ,0,0,0}, {32173,32174,32492 ,726,726,726 ,0,0,0}, - {32493,32494,32180 ,726,726,726 ,0,0,0}, {32170,31819,31590 ,726,726,726 ,0,0,0}, - {31589,31816,31587 ,726,726,726 ,0,0,0}, {32494,32495,32181 ,726,728,726 ,0,0,0}, - {31581,31821,31578 ,726,726,728 ,0,0,0}, {31811,31584,31813 ,726,726,726 ,0,0,0}, - {31563,31831,31561 ,726,726,726 ,0,0,0}, {31560,31827,31829 ,726,726,726 ,0,0,0}, - {32241,32496,32497 ,726,726,726 ,0,0,0}, {32394,31567,32498 ,726,726,728 ,0,0,0}, - {32498,31570,31561 ,728,726,726 ,0,0,0}, {32393,32489,32184 ,726,726,726 ,0,0,0}, - {31530,32499,31532 ,726,726,726 ,0,0,0}, {32189,32500,32501 ,726,726,726 ,0,0,0}, - {32502,32503,32504 ,727,727,726 ,0,0,0}, {31997,32218,32216 ,726,726,726 ,0,0,0}, - {31937,32505,31529 ,726,726,726 ,0,0,0}, {32227,32481,32229 ,726,726,726 ,0,0,0}, - {31534,32483,32506 ,726,726,726 ,0,0,0}, {32221,32002,32222 ,726,726,726 ,0,0,0}, - {31774,32507,32508 ,726,726,727 ,0,0,0}, {31758,31971,31760 ,727,727,726 ,0,0,0}, - {31768,31981,31758 ,727,727,727 ,0,0,0}, {31767,31763,31891 ,726,726,727 ,0,0,0}, - {31760,31971,31973 ,726,727,726 ,0,0,0}, {31885,32331,31888 ,726,726,727 ,0,0,0}, - {32193,31991,32195 ,726,726,726 ,0,0,0}, {32326,31884,31896 ,726,726,727 ,0,0,0}, - {31722,32509,32510 ,727,726,726 ,0,0,0}, {32511,32260,32512 ,726,726,726 ,0,0,0}, - {31899,32334,32333 ,726,726,726 ,0,0,0}, {31901,32513,32338 ,726,726,726 ,0,0,0}, - {32397,32399,32514 ,726,726,728 ,0,0,0}, {32515,32516,32263 ,726,726,726 ,0,0,0}, - {32398,32517,32399 ,726,726,726 ,0,0,0}, {32254,32250,32518 ,726,728,726 ,0,0,0}, - {31741,32519,32520 ,726,726,726 ,0,0,0}, {31798,31727,31797 ,726,726,726 ,0,0,0}, - {31807,32519,31738 ,726,726,726 ,0,0,0}, {32521,32520,32517 ,726,726,726 ,0,0,0}, - {31787,31749,31789 ,726,726,726 ,0,0,0}, {31793,31795,31729 ,726,726,726 ,0,0,0}, - {32231,32233,32496 ,726,726,726 ,0,0,0}, {32234,31755,32233 ,726,726,726 ,0,0,0}, - {32522,32238,32497 ,726,728,726 ,0,0,0}, {32241,32497,32238 ,726,726,728 ,0,0,0}, - {32239,32238,32522 ,726,728,726 ,0,0,0}, {32496,32241,32231 ,726,726,726 ,0,0,0}, - {32496,32233,31755 ,726,726,726 ,0,0,0}, {32522,32523,32239 ,726,726,726 ,0,0,0}, - {32524,32243,32523 ,726,726,726 ,0,0,0}, {32523,32246,32239 ,726,726,726 ,0,0,0}, - {32524,32525,32244 ,726,728,726 ,0,0,0}, {32234,32230,31754 ,726,726,726 ,0,0,0}, - {31781,31743,31783 ,726,728,726 ,0,0,0}, {31791,31789,31752 ,726,726,726 ,0,0,0}, - {31726,31776,31793 ,726,726,726 ,0,0,0}, {31743,31780,31725 ,728,726,726 ,0,0,0}, - {31798,31736,31727 ,726,726,726 ,0,0,0}, {31803,31735,31733 ,726,726,726 ,0,0,0}, - {31735,31807,31739 ,726,726,726 ,0,0,0}, {32526,32518,32250 ,726,726,728 ,0,0,0}, - {31801,31733,31736 ,726,726,726 ,0,0,0}, {32527,32255,32518 ,726,726,726 ,0,0,0}, - {32398,32528,32517 ,726,726,726 ,0,0,0}, {32529,32530,32531 ,726,726,726 ,0,0,0}, - {31524,31522,32210 ,726,726,726 ,0,0,0}, {31526,32207,31519 ,726,726,726 ,0,0,0}, - {32311,31692,31691 ,726,726,727 ,0,0,0}, {32532,32294,32533 ,727,726,726 ,0,0,0}, - {31898,32336,31896 ,727,726,727 ,0,0,0}, {32534,32514,32263 ,726,728,726 ,0,0,0}, - {32514,32534,32397 ,728,726,726 ,0,0,0}, {32263,31524,32534 ,726,726,726 ,0,0,0}, - {32292,32535,32289 ,726,726,726 ,0,0,0}, {32303,31702,31693 ,726,727,727 ,0,0,0}, - {32271,31708,32270 ,726,727,726 ,0,0,0}, {32282,32536,32406 ,726,727,726 ,0,0,0}, - {32267,32270,31705 ,726,726,726 ,0,0,0}, {32409,32274,32407 ,726,726,726 ,0,0,0}, - {31705,31706,32266 ,726,726,726 ,0,0,0}, {32296,31701,31699 ,726,726,726 ,0,0,0}, - {31699,32298,32296 ,726,726,726 ,0,0,0}, {32282,32406,32279 ,726,726,726 ,0,0,0}, - {31702,32300,31699 ,727,727,726 ,0,0,0}, {32536,32283,32401 ,727,726,727 ,0,0,0}, - {31693,31695,32304 ,727,727,726 ,0,0,0}, {32400,32288,32535 ,727,726,726 ,0,0,0}, - {32308,32306,31692 ,726,726,726 ,0,0,0}, {32537,32538,32533 ,726,726,726 ,0,0,0}, - {31715,32316,31713 ,727,727,726 ,0,0,0}, {32539,32540,32541 ,726,726,727 ,0,0,0}, - {32542,32537,32540 ,727,726,726 ,0,0,0}, {32543,32541,32544 ,726,727,727 ,0,0,0}, - {32544,32541,32540 ,727,727,726 ,0,0,0}, {32326,31896,32336 ,726,727,726 ,0,0,0}, - {32510,32541,32543 ,726,727,726 ,0,0,0}, {31719,31721,32322 ,727,726,727 ,0,0,0}, - {31898,31899,32333 ,727,726,726 ,0,0,0}, {31722,32510,32545 ,727,726,726 ,0,0,0}, - {32544,32546,32543 ,727,727,726 ,0,0,0}, {32509,32541,32510 ,726,727,726 ,0,0,0}, - {32340,32547,32511 ,726,726,726 ,0,0,0}, {32546,32511,32512 ,727,726,726 ,0,0,0}, - {32546,32512,32543 ,727,726,726 ,0,0,0}, {31898,32333,32336 ,727,726,726 ,0,0,0}, - {31884,32328,31885 ,726,726,726 ,0,0,0}, {32331,31885,32328 ,726,726,726 ,0,0,0}, - {32328,31884,32326 ,726,726,726 ,0,0,0}, {31889,31767,31891 ,727,726,727 ,0,0,0}, - {31888,32324,31889 ,727,727,727 ,0,0,0}, {31763,31970,31891 ,726,726,727 ,0,0,0}, - {32012,32201,32015 ,726,728,726 ,0,0,0}, {31974,31970,31766 ,726,726,726 ,0,0,0}, - {31973,31974,31761 ,726,726,727 ,0,0,0}, {31761,31974,31766 ,727,726,726 ,0,0,0}, - {31973,31761,31760 ,726,727,726 ,0,0,0}, {32503,32502,32548 ,727,727,727 ,0,0,0}, - {31769,31978,31768 ,726,726,727 ,0,0,0}, {31758,31981,31971 ,727,727,727 ,0,0,0}, - {32549,32550,32428 ,727,727,727 ,0,0,0}, {31916,32029,31914 ,726,726,727 ,0,0,0}, - {32030,31917,31919 ,726,726,726 ,0,0,0}, {31916,32030,32029 ,726,726,726 ,0,0,0}, - {31919,32425,32034 ,726,727,726 ,0,0,0}, {32551,32552,32036 ,726,726,726 ,0,0,0}, - {32428,31624,32419 ,727,727,726 ,0,0,0}, {32553,32418,32421 ,727,726,727 ,0,0,0}, - {32418,32553,32419 ,726,727,726 ,0,0,0}, {32423,32421,32420 ,726,727,727 ,0,0,0}, - {31612,32554,32388 ,726,726,726 ,0,0,0}, {32101,32100,31556 ,726,726,726 ,0,0,0}, - {32555,32169,32167 ,726,726,726 ,0,0,0}, {31880,31882,32556 ,726,726,726 ,0,0,0}, - {32101,31556,32391 ,726,726,727 ,0,0,0}, {31880,32557,31933 ,726,726,726 ,0,0,0}, - {32101,32461,32435 ,726,726,727 ,0,0,0}, {32458,32101,32460 ,726,726,726 ,0,0,0}, - {32436,32459,32101 ,726,726,726 ,0,0,0}, {32558,32556,31882 ,726,726,726 ,0,0,0}, - {32460,32558,31882 ,726,726,726 ,0,0,0}, {32556,32557,31880 ,726,726,726 ,0,0,0}, - {31929,31877,31933 ,726,726,726 ,0,0,0}, {31929,31876,31877 ,726,727,726 ,0,0,0}, - {32156,32155,31946 ,726,726,726 ,0,0,0}, {32155,32152,31944 ,726,726,726 ,0,0,0}, - {32152,32135,31940 ,726,726,726 ,0,0,0}, {32135,32133,31941 ,726,726,726 ,0,0,0}, - {32132,31959,32133 ,726,728,726 ,0,0,0}, {31923,31924,31874 ,726,727,726 ,0,0,0}, - {31946,32155,31944 ,726,726,726 ,0,0,0}, {31920,31909,31875 ,727,727,726 ,0,0,0}, - {31940,31944,32152 ,726,726,726 ,0,0,0}, {31960,32132,32139 ,726,726,726 ,0,0,0}, - {31909,31907,32020 ,727,726,727 ,0,0,0}, {31940,32135,31941 ,726,726,726 ,0,0,0}, - {32148,31966,32140 ,726,726,726 ,0,0,0}, {31907,31906,32027 ,726,726,726 ,0,0,0}, - {31959,32132,31960 ,728,726,726 ,0,0,0}, {31546,31968,32144 ,726,726,726 ,0,0,0}, - {31965,31962,32141 ,728,728,728 ,0,0,0}, {32147,32150,31539 ,726,726,726 ,0,0,0}, - {31966,31965,32140 ,726,728,726 ,0,0,0}, {31540,32150,31542 ,726,726,726 ,0,0,0}, - {31968,31966,32148 ,726,726,726 ,0,0,0}, {32419,32553,32559 ,726,727,726 ,0,0,0}, - {31916,31917,32030 ,726,726,726 ,0,0,0}, {32552,32559,32553 ,726,726,727 ,0,0,0}, - {32551,32036,32426 ,726,726,726 ,0,0,0}, {32425,32036,32034 ,727,726,726 ,0,0,0}, - {32552,32551,32559 ,726,726,726 ,0,0,0}, {32560,32548,32427 ,726,727,726 ,0,0,0}, - {32502,32504,32343 ,727,726,727 ,0,0,0}, {32419,32560,32427 ,726,726,726 ,0,0,0}, - {31623,32561,31621 ,726,727,727 ,0,0,0}, {32504,31938,32343 ,726,727,727 ,0,0,0}, - {32562,32563,31774 ,726,726,726 ,0,0,0}, {32000,32221,32218 ,726,726,726 ,0,0,0}, - {32224,32222,32003 ,726,726,728 ,0,0,0}, {31544,32564,32487 ,726,726,726 ,0,0,0}, - {31546,32144,32147 ,726,726,726 ,0,0,0}, {32229,32506,32483 ,726,726,726 ,0,0,0}, - {32490,32484,32565 ,726,726,726 ,0,0,0}, {32564,31544,31542 ,726,726,726 ,0,0,0}, - {32564,31542,32150 ,726,726,726 ,0,0,0}, {31540,31539,32150 ,726,726,726 ,0,0,0}, - {31539,31546,32147 ,726,726,726 ,0,0,0}, {31968,32148,32144 ,726,726,726 ,0,0,0}, - {31962,31960,32139 ,728,726,726 ,0,0,0}, {31950,31952,32161 ,726,726,726 ,0,0,0}, - {31947,31950,32158 ,726,726,726 ,0,0,0}, {32162,31953,32164 ,726,726,726 ,0,0,0}, - {32161,31952,32162 ,726,726,726 ,0,0,0}, {32164,31956,32167 ,726,726,726 ,0,0,0}, - {32464,32555,32167 ,726,726,726 ,0,0,0}, {32555,32480,32169 ,726,726,726 ,0,0,0}, - {32462,32169,31554 ,726,726,726 ,0,0,0}, {31552,32100,31554 ,726,726,726 ,0,0,0}, - {32462,31554,32100 ,726,726,726 ,0,0,0}, {31549,32100,31550 ,726,726,726 ,0,0,0}, - {32100,31552,31550 ,726,726,726 ,0,0,0}, {31556,32100,31549 ,726,726,726 ,0,0,0}, - {31997,32216,31996 ,726,726,726 ,0,0,0}, {31938,31937,31536 ,727,726,726 ,0,0,0}, - {31769,31983,31979 ,726,726,726 ,0,0,0}, {31938,31536,32343 ,727,726,727 ,0,0,0}, - {31983,31772,32563 ,726,726,726 ,0,0,0}, {32503,32548,32560 ,727,727,726 ,0,0,0}, - {31623,32428,32550 ,726,727,727 ,0,0,0}, {32549,32508,32507 ,727,727,726 ,0,0,0}, - {32549,32507,32550 ,727,726,727 ,0,0,0}, {32508,32562,31774 ,727,726,726 ,0,0,0}, - {32563,31772,31774 ,726,726,726 ,0,0,0}, {31983,31769,31772 ,726,726,726 ,0,0,0}, - {31978,31769,31979 ,726,726,726 ,0,0,0}, {31978,31981,31768 ,726,727,727 ,0,0,0}, - {32215,31994,31996 ,726,726,726 ,0,0,0}, {32212,31990,31994 ,726,726,726 ,0,0,0}, - {32195,31991,31990 ,726,726,726 ,0,0,0}, {32193,32009,31991 ,726,729,726 ,0,0,0}, - {32216,32215,31996 ,726,726,726 ,0,0,0}, {32192,32010,32009 ,726,726,729 ,0,0,0}, - {32215,32212,31994 ,726,726,726 ,0,0,0}, {32199,32012,32010 ,726,726,726 ,0,0,0}, - {31889,32324,31767 ,727,727,726 ,0,0,0}, {32212,32195,31990 ,726,726,726 ,0,0,0}, - {32200,32016,32015 ,726,726,726 ,0,0,0}, {31888,32331,32324 ,727,726,727 ,0,0,0}, - {32193,32192,32009 ,726,726,729 ,0,0,0}, {32018,32016,32208 ,726,726,726 ,0,0,0}, - {32192,32199,32010 ,726,726,726 ,0,0,0}, {32207,31526,32204 ,726,726,726 ,0,0,0}, - {32015,32201,32200 ,726,728,726 ,0,0,0}, {31987,32263,32260 ,727,726,726 ,0,0,0}, - {32200,32208,32016 ,726,726,726 ,0,0,0}, {32338,32566,32340 ,726,726,726 ,0,0,0}, - {31901,32334,31899 ,726,726,726 ,0,0,0}, {32513,32567,32338 ,726,727,726 ,0,0,0}, - {32334,31901,32338 ,726,726,726 ,0,0,0}, {32567,32566,32338 ,727,726,726 ,0,0,0}, - {32511,32547,32260 ,726,726,726 ,0,0,0}, {32566,32547,32340 ,726,726,726 ,0,0,0}, - {32568,32260,32569 ,726,726,727 ,0,0,0}, {32260,32547,32569 ,726,726,727 ,0,0,0}, - {32570,32260,32571 ,726,726,726 ,0,0,0}, {32260,32568,32571 ,726,726,726 ,0,0,0}, - {32260,32570,31987 ,726,726,727 ,0,0,0}, {31989,32263,31987 ,726,726,727 ,0,0,0}, - {31520,32207,32210 ,726,726,726 ,0,0,0}, {32263,32572,32515 ,726,726,726 ,0,0,0}, - {32263,31989,32572 ,726,726,726 ,0,0,0}, {31524,32210,32534 ,726,726,726 ,0,0,0}, - {32516,31524,32263 ,726,726,726 ,0,0,0}, {31522,31520,32210 ,726,726,726 ,0,0,0}, - {31520,31519,32207 ,726,726,726 ,0,0,0}, {32018,32204,31526 ,726,726,726 ,0,0,0}, - {32018,32208,32204 ,726,726,726 ,0,0,0}, {32012,32199,32201 ,726,726,728 ,0,0,0}, - {32000,32002,32221 ,726,726,726 ,0,0,0}, {31997,32000,32218 ,726,726,726 ,0,0,0}, - {32002,32003,32222 ,726,728,726 ,0,0,0}, {32003,32006,32224 ,728,726,726 ,0,0,0}, - {32227,32224,32006 ,726,726,726 ,0,0,0}, {32573,32229,32481 ,726,726,726 ,0,0,0}, - {32487,32484,32486 ,726,726,726 ,0,0,0}, {32573,32506,32229 ,726,726,726 ,0,0,0}, - {31576,31532,32574 ,726,726,726 ,0,0,0}, {32499,31530,32505 ,726,726,726 ,0,0,0}, - {32574,31532,32499 ,726,726,726 ,0,0,0}, {31937,31529,31536 ,726,726,726 ,0,0,0}, - {32505,31530,31529 ,726,726,726 ,0,0,0}, {32526,32249,32525 ,726,726,728 ,0,0,0}, - {31748,31786,31746 ,726,726,726 ,0,0,0}, {31729,31795,31727 ,726,726,726 ,0,0,0}, - {32243,32246,32523 ,726,726,726 ,0,0,0}, {32244,32243,32524 ,726,726,726 ,0,0,0}, - {32249,32244,32525 ,726,726,728 ,0,0,0}, {32250,32249,32526 ,728,726,726 ,0,0,0}, - {32257,32255,32527 ,726,726,726 ,0,0,0}, {32255,32254,32518 ,726,726,726 ,0,0,0}, - {32530,32529,32528 ,726,726,726 ,0,0,0}, {32257,32575,32531 ,726,726,726 ,0,0,0}, - {32575,32257,32527 ,726,726,726 ,0,0,0}, {32576,32529,32531 ,726,726,726 ,0,0,0}, - {32575,32576,32531 ,726,726,726 ,0,0,0}, {32528,32398,32530 ,726,726,726 ,0,0,0}, - {32517,32520,32399 ,726,726,726 ,0,0,0}, {31741,32520,32521 ,726,726,726 ,0,0,0}, - {31738,32519,31741 ,726,726,726 ,0,0,0}, {31739,31807,31738 ,726,726,726 ,0,0,0}, - {31803,31804,31735 ,726,726,726 ,0,0,0}, {31807,31735,31804 ,726,726,726 ,0,0,0}, - {31801,31803,31733 ,726,726,726 ,0,0,0}, {31798,31801,31736 ,726,726,726 ,0,0,0}, - {31795,31797,31727 ,726,726,726 ,0,0,0}, {31793,31729,31726 ,726,726,726 ,0,0,0}, - {31776,31726,31725 ,726,726,726 ,0,0,0}, {31781,31780,31743 ,726,726,728 ,0,0,0}, - {31780,31776,31725 ,726,726,726 ,0,0,0}, {31746,31783,31743 ,726,726,728 ,0,0,0}, - {31748,31787,31786 ,726,726,726 ,0,0,0}, {31746,31786,31783 ,726,726,726 ,0,0,0}, - {31749,31752,31789 ,726,726,726 ,0,0,0}, {31748,31749,31787 ,726,726,726 ,0,0,0}, - {31791,31752,32230 ,726,726,726 ,0,0,0}, {32234,31754,31755 ,726,726,726 ,0,0,0}, - {32230,31752,31754 ,726,726,726 ,0,0,0}, {32535,32292,32532 ,726,726,727 ,0,0,0}, - {31716,32318,31715 ,726,727,727 ,0,0,0}, {31692,32306,31695 ,726,726,727 ,0,0,0}, - {32542,32540,32539 ,727,726,726 ,0,0,0}, {32538,32537,32542 ,726,726,727 ,0,0,0}, - {32294,32537,32533 ,726,726,726 ,0,0,0}, {32292,32294,32532 ,726,726,727 ,0,0,0}, - {32288,32289,32535 ,726,726,726 ,0,0,0}, {32286,32288,32400 ,727,726,727 ,0,0,0}, - {32283,32286,32401 ,726,727,727 ,0,0,0}, {32282,32283,32536 ,726,726,727 ,0,0,0}, - {32277,32279,32406 ,726,726,726 ,0,0,0}, {32276,32277,32405 ,727,726,726 ,0,0,0}, - {32274,32276,32407 ,726,727,726 ,0,0,0}, {32271,32274,32409 ,726,726,726 ,0,0,0}, - {32270,31708,31705 ,726,727,726 ,0,0,0}, {32266,32267,31705 ,726,726,726 ,0,0,0}, - {32264,32266,31706 ,727,726,726 ,0,0,0}, {32296,32264,31701 ,726,727,726 ,0,0,0}, - {32264,31706,31701 ,727,726,726 ,0,0,0}, {32300,32298,31699 ,727,726,726 ,0,0,0}, - {32303,32300,31702 ,726,727,727 ,0,0,0}, {32304,32303,31693 ,726,726,727 ,0,0,0}, - {32306,32304,31695 ,726,726,727 ,0,0,0}, {32311,32308,31692 ,726,726,726 ,0,0,0}, - {32312,32311,31691 ,726,726,727 ,0,0,0}, {31713,32315,31710 ,726,726,726 ,0,0,0}, - {31710,32312,31691 ,726,726,727 ,0,0,0}, {31715,32318,32316 ,727,727,727 ,0,0,0}, - {31713,32316,32315 ,726,727,726 ,0,0,0}, {31716,32321,32318 ,726,726,727 ,0,0,0}, - {31719,32322,31716 ,727,727,726 ,0,0,0}, {32321,31716,32322 ,726,726,727 ,0,0,0}, - {32322,31721,32545 ,727,726,726 ,0,0,0}, {31722,32545,31721 ,727,726,726 ,0,0,0}, - {31661,31663,32089 ,727,727,726 ,0,0,0}, {32057,32403,32056 ,726,727,727 ,0,0,0}, - {31660,32090,31663 ,726,727,727 ,0,0,0}, {32062,32063,32444 ,726,726,727 ,0,0,0}, - {32060,32062,32443 ,726,726,726 ,0,0,0}, {32057,32060,32402 ,726,726,726 ,0,0,0}, - {32053,32056,32403 ,727,727,727 ,0,0,0}, {32051,32053,32452 ,726,727,726 ,0,0,0}, - {32050,32051,32450 ,726,726,727 ,0,0,0}, {32048,32050,32451 ,726,726,727 ,0,0,0}, - {32044,32045,32445 ,727,726,727 ,0,0,0}, {32041,32044,32449 ,727,727,726 ,0,0,0}, - {32040,32041,32448 ,726,727,726 ,0,0,0}, {32038,32040,32446 ,727,726,726 ,0,0,0}, - {32070,32447,31675 ,727,726,727 ,0,0,0}, {32074,32072,31675 ,726,726,727 ,0,0,0}, - {32077,32074,31672 ,727,726,726 ,0,0,0}, {32078,32077,31673 ,727,727,726 ,0,0,0}, - {32080,31669,31667 ,726,726,726 ,0,0,0}, {32078,31669,32080 ,727,726,726 ,0,0,0}, - {32085,32082,31667 ,726,727,726 ,0,0,0}, {32086,32085,31670 ,726,726,727 ,0,0,0}, - {32089,32086,31661 ,726,726,727 ,0,0,0}, {32090,32089,31663 ,727,726,727 ,0,0,0}, - {31659,32095,31660 ,727,727,726 ,0,0,0}, {32092,32090,31660 ,726,727,726 ,0,0,0}, - {32096,31659,31677 ,726,727,726 ,0,0,0}, {31659,32096,32095 ,727,726,727 ,0,0,0}, - {31677,31680,32437 ,726,726,726 ,0,0,0}, {32455,32437,31682 ,726,726,727 ,0,0,0}, - {31680,31682,32437 ,726,727,726 ,0,0,0}, {32439,31686,32440 ,727,727,726 ,0,0,0}, - {31688,32456,31686 ,726,726,727 ,0,0,0}, {32440,31686,32456 ,726,727,726 ,0,0,0}, - {31689,32456,31688 ,727,726,726 ,0,0,0}, {32429,32470,32111 ,726,726,726 ,0,0,0}, - {31650,31832,31849 ,726,726,728 ,0,0,0}, {31859,31860,31628 ,728,726,726 ,0,0,0}, - {32105,32106,32466 ,726,726,726 ,0,0,0}, {32103,32465,32430 ,726,726,728 ,0,0,0}, - {32110,32113,32430 ,726,726,728 ,0,0,0}, {32111,32110,32429 ,726,726,726 ,0,0,0}, - {32118,32111,32470 ,729,726,726 ,0,0,0}, {32116,32115,32431 ,726,726,726 ,0,0,0}, - {32121,32116,32432 ,726,726,726 ,0,0,0}, {32122,32121,32472 ,726,726,726 ,0,0,0}, - {32476,32127,32126 ,726,726,726 ,0,0,0}, {32126,32475,32476 ,726,726,726 ,0,0,0}, - {32129,32577,32578 ,726,726,726 ,0,0,0}, {32577,32129,32477 ,726,726,726 ,0,0,0}, - {32578,31643,32434 ,726,726,726 ,0,0,0}, {32577,31643,32578 ,726,726,726 ,0,0,0}, - {31641,32473,32479 ,726,726,726 ,0,0,0}, {31641,32479,32434 ,726,726,726 ,0,0,0}, - {31635,32433,31637 ,726,726,726 ,0,0,0}, {31638,32471,31635 ,726,728,726 ,0,0,0}, - {31863,32471,31629 ,726,728,726 ,0,0,0}, {31860,31863,31631 ,726,726,726 ,0,0,0}, - {31854,31857,31627 ,726,726,726 ,0,0,0}, {31857,31859,31628 ,726,728,726 ,0,0,0}, - {31853,31854,31645 ,726,726,728 ,0,0,0}, {31648,31849,31851 ,726,728,728 ,0,0,0}, - {31648,31853,31645 ,726,726,728 ,0,0,0}, {31650,31651,31832 ,726,726,726 ,0,0,0}, - {31648,31650,31849 ,726,726,728 ,0,0,0}, {31651,31654,31836 ,726,726,726 ,0,0,0}, - {31837,31656,31839 ,726,726,726 ,0,0,0}, {31836,31654,31837 ,726,726,726 ,0,0,0}, - {31842,31656,31657 ,726,726,726 ,0,0,0}, {32385,32383,31594 ,726,726,726 ,0,0,0}, - {32379,31595,32382 ,727,727,726 ,0,0,0}, {32422,32423,32579 ,727,726,726 ,0,0,0}, - {32579,32423,32420 ,726,726,727 ,0,0,0}, {32417,32416,32422 ,726,726,727 ,0,0,0}, - {32367,32416,32415 ,726,726,726 ,0,0,0}, {32366,32367,32414 ,726,726,727 ,0,0,0}, - {32363,32366,32413 ,726,726,726 ,0,0,0}, {32362,32363,32412 ,726,726,727 ,0,0,0}, - {32357,32360,32411 ,727,727,727 ,0,0,0}, {32356,32357,32410 ,726,727,727 ,0,0,0}, - {32354,32356,32408 ,727,726,726 ,0,0,0}, {32351,32354,32404 ,726,727,726 ,0,0,0}, - {32350,32351,32396 ,726,726,726 ,0,0,0}, {32348,32350,32392 ,727,726,726 ,0,0,0}, - {32344,32348,31610 ,727,727,727 ,0,0,0}, {32370,32368,31607 ,726,727,726 ,0,0,0}, - {32371,32370,31608 ,726,726,726 ,0,0,0}, {32373,32371,31603 ,727,726,726 ,0,0,0}, - {32371,31608,31603 ,726,726,726 ,0,0,0}, {32376,32373,31601 ,726,727,726 ,0,0,0}, - {32377,32376,31604 ,726,726,727 ,0,0,0}, {32379,32377,31595 ,727,726,727 ,0,0,0}, - {31597,32382,31595 ,727,726,727 ,0,0,0}, {31593,32385,31594 ,727,726,726 ,0,0,0}, - {31594,32383,31597 ,726,726,727 ,0,0,0}, {32388,31593,31612 ,726,727,726 ,0,0,0}, - {31593,32388,32385 ,727,726,726 ,0,0,0}, {31612,31615,32554 ,726,726,726 ,0,0,0}, - {32424,32554,31617 ,726,726,727 ,0,0,0}, {31615,31617,32554 ,726,727,726 ,0,0,0}, - {32424,31618,32561 ,726,726,727 ,0,0,0}, {32561,31623,32550 ,727,726,727 ,0,0,0}, - {32561,31618,31621 ,727,726,727 ,0,0,0}, {32428,31623,31624 ,727,726,727 ,0,0,0}, - {32495,32186,32178 ,728,726,726 ,0,0,0}, {31583,31810,31581 ,726,726,726 ,0,0,0}, - {31829,31563,31560 ,726,726,726 ,0,0,0}, {32180,32173,32493 ,726,726,726 ,0,0,0}, - {32181,32180,32494 ,726,726,726 ,0,0,0}, {32178,32181,32495 ,726,726,728 ,0,0,0}, - {32393,32186,32495 ,726,726,728 ,0,0,0}, {32188,32184,32489 ,726,726,726 ,0,0,0}, - {32488,32500,32189 ,726,726,726 ,0,0,0}, {32189,32188,32488 ,726,726,726 ,0,0,0}, - {32580,32501,32500 ,726,726,726 ,0,0,0}, {31573,31534,31532 ,726,726,726 ,0,0,0}, - {32501,32581,32565 ,726,726,726 ,0,0,0}, {32581,32501,32580 ,726,726,726 ,0,0,0}, - {31573,31532,31576 ,726,726,726 ,0,0,0}, {32581,32490,32565 ,726,726,726 ,0,0,0}, - {31576,32574,31544 ,726,726,726 ,0,0,0}, {31576,31544,32486 ,726,726,726 ,0,0,0}, - {31573,32482,31534 ,726,726,726 ,0,0,0}, {31573,31574,32395 ,726,726,726 ,0,0,0}, - {31573,32395,32482 ,726,726,726 ,0,0,0}, {31567,32394,31569 ,726,726,726 ,0,0,0}, - {31570,32498,31567 ,726,728,726 ,0,0,0}, {31831,32498,31561 ,726,728,726 ,0,0,0}, - {31829,31831,31563 ,726,726,726 ,0,0,0}, {31827,31560,31559 ,726,726,726 ,0,0,0}, - {31578,31823,31559 ,728,726,726 ,0,0,0}, {31824,31827,31559 ,726,726,726 ,0,0,0}, - {31581,31810,31821 ,726,726,726 ,0,0,0}, {31578,31821,31823 ,728,726,726 ,0,0,0}, - {31583,31811,31810 ,726,726,726 ,0,0,0}, {31584,31587,31813 ,726,726,726 ,0,0,0}, - {31583,31584,31811 ,726,726,726 ,0,0,0}, {31816,31589,31817 ,726,726,726 ,0,0,0}, - {31813,31587,31816 ,726,726,726 ,0,0,0}, {31590,31817,31589 ,726,726,726 ,0,0,0}, - {32582,31883,32583 ,730,730,730 ,0,0,0}, {31779,31744,31742 ,730,730,730 ,0,0,0}, - {31606,32372,31609 ,730,730,730 ,0,0,0}, {32584,32585,32586 ,730,730,730 ,0,0,0}, - {32587,32253,32256 ,730,730,730 ,0,0,0}, {31972,31759,31975 ,730,730,730 ,0,0,0}, - {31995,32214,32217 ,730,730,730 ,0,0,0}, {31775,32588,32589 ,730,730,730 ,0,0,0}, - {32590,32591,32592 ,730,730,730 ,0,0,0}, {32588,31775,32593 ,730,730,730 ,0,0,0}, - {32594,32595,31622 ,730,730,730 ,0,0,0}, {32361,32596,32597 ,730,730,730 ,0,0,0}, - {32594,31620,31619 ,730,730,730 ,0,0,0}, {31602,32374,32375 ,730,730,730 ,0,0,0}, - {31599,31600,32378 ,730,730,730 ,0,0,0}, {32598,32599,32355 ,730,730,730 ,0,0,0}, - {31611,32389,31613 ,730,730,730 ,0,0,0}, {32346,32345,31605 ,730,730,730 ,0,0,0}, - {32347,32600,32349 ,730,730,730 ,0,0,0}, {31592,32386,32387 ,730,730,730 ,0,0,0}, - {32601,32602,31616 ,730,730,730 ,0,0,0}, {31674,31671,32076 ,730,730,730 ,0,0,0}, - {31598,31596,32384 ,730,730,730 ,0,0,0}, {32039,32069,32603 ,730,730,730 ,0,0,0}, - {32387,32389,31611 ,730,730,730 ,0,0,0}, {31599,32380,31596 ,730,730,730 ,0,0,0}, - {31658,32094,31676 ,730,730,730 ,0,0,0}, {32604,32605,32047 ,730,730,730 ,0,0,0}, - {32345,32369,31605 ,730,730,730 ,0,0,0}, {32601,31614,31613 ,730,730,730 ,0,0,0}, - {32605,32606,32049 ,730,730,730 ,0,0,0}, {31666,32081,32083 ,730,730,730 ,0,0,0}, - {32346,31605,32607 ,730,730,730 ,0,0,0}, {32602,32594,31619 ,730,730,730 ,0,0,0}, - {32310,31709,31690 ,730,730,730 ,0,0,0}, {32314,31712,31711 ,730,730,730 ,0,0,0}, - {32352,32349,32608 ,730,730,730 ,0,0,0}, {32349,32600,32608 ,730,730,730 ,0,0,0}, - {32609,32598,32353 ,730,730,730 ,0,0,0}, {32596,32361,32359 ,730,730,730 ,0,0,0}, - {32599,32596,32358 ,730,730,730 ,0,0,0}, {32364,32597,32610 ,730,730,730 ,0,0,0}, - {32611,32612,32613 ,730,730,730 ,0,0,0}, {31775,31773,32593 ,730,730,730 ,0,0,0}, - {32614,32615,32595 ,730,730,730 ,0,0,0}, {31773,31771,31985 ,730,730,730 ,0,0,0}, - {32616,32617,32618 ,730,730,730 ,0,0,0}, {32619,32620,32621 ,730,730,730 ,0,0,0}, - {31756,31759,31972 ,730,730,730 ,0,0,0}, {31893,31976,31765 ,730,730,730 ,0,0,0}, - {32223,32225,32004 ,730,730,730 ,0,0,0}, {32202,32198,32013 ,730,730,730 ,0,0,0}, - {32584,32622,32623 ,730,730,730 ,0,0,0}, {32624,32587,32256 ,730,730,730 ,0,0,0}, - {32625,32626,32252 ,730,730,730 ,0,0,0}, {32627,32240,32242 ,730,730,730 ,0,0,0}, - {32245,32626,32628 ,730,730,730 ,0,0,0}, {31753,31751,32259 ,730,730,730 ,0,0,0}, - {32237,32629,32630 ,730,730,730 ,0,0,0}, {32631,32632,32633 ,730,730,730 ,0,0,0}, - {32634,32635,32636 ,730,730,730 ,0,0,0}, {32019,32206,32205 ,730,730,730 ,0,0,0}, - {32633,32261,32631 ,730,730,730 ,0,0,0}, {32637,32638,32639 ,730,730,730 ,0,0,0}, - {32640,32262,32641 ,730,730,730 ,0,0,0}, {32642,32287,32643 ,730,730,730 ,0,0,0}, - {32291,32644,32293 ,730,730,730 ,0,0,0}, {32645,32646,32281 ,730,730,730 ,0,0,0}, - {31717,32323,31718 ,730,730,730 ,0,0,0}, {32647,32278,32275 ,730,730,730 ,0,0,0}, - {31707,31704,32265 ,730,730,730 ,0,0,0}, {31694,32302,32305 ,730,730,730 ,0,0,0}, - {32648,32637,32639 ,730,730,730 ,0,0,0}, {32647,32275,32649 ,730,730,730 ,0,0,0}, - {32272,31703,32650 ,730,730,730 ,0,0,0}, {31720,32323,32651 ,730,730,730 ,0,0,0}, - {32317,31714,31712 ,730,730,730 ,0,0,0}, {31690,31696,32307 ,730,730,730 ,0,0,0}, - {32299,31698,32297 ,730,730,730 ,0,0,0}, {32301,32302,31697 ,730,730,730 ,0,0,0}, - {31709,32313,31711 ,730,730,730 ,0,0,0}, {31700,32295,32297 ,730,730,730 ,0,0,0}, - {31703,32272,32269 ,730,730,730 ,0,0,0}, {32268,31704,32269 ,730,730,730 ,0,0,0}, - {32320,32323,31717 ,730,730,730 ,0,0,0}, {31717,31714,32319 ,730,730,730 ,0,0,0}, - {31723,32651,32652 ,730,730,730 ,0,0,0}, {32649,32275,32273 ,730,730,730 ,0,0,0}, - {32652,32648,32653 ,730,730,730 ,0,0,0}, {31730,31728,31794 ,730,730,730 ,0,0,0}, - {31709,32310,32313 ,730,730,730 ,0,0,0}, {32647,32645,32278 ,730,730,730 ,0,0,0}, - {32654,32284,32646 ,730,730,730 ,0,0,0}, {32287,32642,32290 ,730,730,730 ,0,0,0}, - {32643,32285,32654 ,730,730,730 ,0,0,0}, {32644,32655,32293 ,730,730,730 ,0,0,0}, - {32648,32639,32656 ,730,730,730 ,0,0,0}, {32657,32656,32658 ,730,730,730 ,0,0,0}, - {32638,32637,32659 ,730,730,730 ,0,0,0}, {32660,32638,32659 ,730,730,730 ,0,0,0}, - {32661,32662,32262 ,730,730,730 ,0,0,0}, {32262,32660,32659 ,730,730,730 ,0,0,0}, - {32662,32341,32660 ,730,730,730 ,0,0,0}, {31900,32339,32663 ,730,730,730 ,0,0,0}, - {32205,32017,32019 ,730,730,730 ,0,0,0}, {31525,32209,31527 ,730,730,730 ,0,0,0}, - {32664,31059,32235 ,730,730,730 ,0,0,0}, {31806,31740,31737 ,730,730,730 ,0,0,0}, - {31745,31784,31785 ,730,730,730 ,0,0,0}, {31750,31747,31788 ,730,730,730 ,0,0,0}, - {31796,31728,31799 ,730,730,730 ,0,0,0}, {31732,31800,31731 ,730,730,730 ,0,0,0}, - {31779,31742,31777 ,730,730,730 ,0,0,0}, {31724,31778,31777 ,730,730,730 ,0,0,0}, - {31784,31744,31782 ,730,730,730 ,0,0,0}, {31751,31792,32259 ,730,730,730 ,0,0,0}, - {31745,31785,31747 ,730,730,730 ,0,0,0}, {32251,32587,32625 ,730,730,730 ,0,0,0}, - {32624,32258,32586 ,730,730,730 ,0,0,0}, {32247,32629,32248 ,730,730,730 ,0,0,0}, - {32628,32247,32245 ,730,730,730 ,0,0,0}, {32240,32664,32232 ,730,730,730 ,0,0,0}, - {32242,32630,32627 ,730,730,730 ,0,0,0}, {31790,31751,31750 ,730,730,730 ,0,0,0}, - {31753,32236,31059 ,730,730,730 ,0,0,0}, {31897,31895,32337 ,730,730,730 ,0,0,0}, - {32197,32008,32011 ,730,730,730 ,0,0,0}, {31998,32217,32219 ,730,730,730 ,0,0,0}, - {31762,31975,31759 ,730,730,730 ,0,0,0}, {31992,32213,31993 ,730,730,730 ,0,0,0}, - {32149,31547,31545 ,730,730,730 ,0,0,0}, {32213,32214,31993 ,730,730,730 ,0,0,0}, - {31992,32196,32213 ,730,730,730 ,0,0,0}, {32194,32008,32197 ,730,730,730 ,0,0,0}, - {32202,32013,32014 ,730,730,730 ,0,0,0}, {32203,32202,32014 ,730,730,730 ,0,0,0}, - {32634,32665,32666 ,730,730,730 ,0,0,0}, {32667,31043,32635 ,730,730,730 ,0,0,0}, - {32634,32666,32635 ,730,730,730 ,0,0,0}, {32203,32017,32205 ,730,730,730 ,0,0,0}, - {32636,32635,31043 ,730,730,730 ,0,0,0}, {32666,32632,32631 ,730,730,730 ,0,0,0}, - {32632,32666,32665 ,730,730,730 ,0,0,0}, {32211,31521,31523 ,730,730,730 ,0,0,0}, - {32014,32017,32203 ,730,730,730 ,0,0,0}, {32198,32011,32013 ,730,730,730 ,0,0,0}, - {32197,32011,32198 ,730,730,730 ,0,0,0}, {32196,32007,32194 ,730,730,730 ,0,0,0}, - {31886,32329,32327 ,730,730,730 ,0,0,0}, {32330,31887,31890 ,730,730,730 ,0,0,0}, - {31765,31976,31762 ,730,730,730 ,0,0,0}, {32668,32228,32669 ,730,730,730 ,0,0,0}, - {32225,32226,32005 ,730,730,730 ,0,0,0}, {31936,31535,32670 ,730,730,730 ,0,0,0}, - {32149,32146,31547 ,730,730,730 ,0,0,0}, {32671,32226,32228 ,730,730,730 ,0,0,0}, - {32151,31545,31538 ,730,730,730 ,0,0,0}, {32672,31543,32673 ,730,730,730 ,0,0,0}, - {31582,31580,31808 ,730,730,730 ,0,0,0}, {31558,31828,31826 ,730,730,730 ,0,0,0}, - {31588,31586,31815 ,730,730,730 ,0,0,0}, {32674,31591,32191 ,730,730,730 ,0,0,0}, - {32675,32182,32676 ,730,730,730 ,0,0,0}, {31825,31577,31826 ,730,730,730 ,0,0,0}, - {32677,32678,32187 ,730,730,730 ,0,0,0}, {32679,32680,32681 ,730,730,730 ,0,0,0}, - {31814,31586,31585 ,730,730,730 ,0,0,0}, {31579,31809,31580 ,730,730,730 ,0,0,0}, - {32172,32682,32683 ,730,730,730 ,0,0,0}, {31820,31591,31818 ,730,730,730 ,0,0,0}, - {32684,32676,32177 ,730,730,730 ,0,0,0}, {32685,32679,32686 ,730,730,730 ,0,0,0}, - {32687,32185,32678 ,730,730,730 ,0,0,0}, {32684,32183,32687 ,730,730,730 ,0,0,0}, - {32190,32681,32677 ,730,730,730 ,0,0,0}, {32183,32684,32179 ,730,730,730 ,0,0,0}, - {32674,32175,32683 ,730,730,730 ,0,0,0}, {32682,32171,32675 ,730,730,730 ,0,0,0}, - {31873,31926,31925 ,730,730,730 ,0,0,0}, {31582,31812,31585 ,730,730,730 ,0,0,0}, - {31591,31588,31818 ,730,730,730 ,0,0,0}, {31822,31579,31577 ,730,730,730 ,0,0,0}, - {32145,32143,31967 ,730,730,730 ,0,0,0}, {32138,32137,31961 ,730,730,730 ,0,0,0}, - {31964,32143,32142 ,730,730,730 ,0,0,0}, {31967,32143,31964 ,730,730,730 ,0,0,0}, - {32145,31969,32146 ,730,730,730 ,0,0,0}, {32688,31830,31562 ,730,730,730 ,0,0,0}, - {32689,32672,32673 ,730,730,730 ,0,0,0}, {31963,31964,32142 ,730,730,730 ,0,0,0}, - {31969,32145,31967 ,730,730,730 ,0,0,0}, {31571,31543,32690 ,730,730,730 ,0,0,0}, - {32691,31566,31568 ,730,730,730 ,0,0,0}, {31545,32151,32149 ,730,730,730 ,0,0,0}, - {31538,31541,32151 ,730,730,730 ,0,0,0}, {31543,31571,32673 ,730,730,730 ,0,0,0}, - {31547,32146,31969 ,730,730,730 ,0,0,0}, {32692,32693,32037 ,730,730,730 ,0,0,0}, - {32142,32138,31963 ,730,730,730 ,0,0,0}, {31963,32138,31961 ,730,730,730 ,0,0,0}, - {32031,31912,31904 ,730,730,730 ,0,0,0}, {31961,32137,31958 ,730,730,730 ,0,0,0}, - {31905,32025,32023 ,730,730,730 ,0,0,0}, {31957,31958,32134 ,730,730,730 ,0,0,0}, - {31943,31942,32153 ,730,730,730 ,0,0,0}, {32136,31942,31957 ,730,730,730 ,0,0,0}, - {32157,31948,31945 ,730,730,730 ,0,0,0}, {31945,31943,32154 ,730,730,730 ,0,0,0}, - {31932,31864,31930 ,730,730,730 ,0,0,0}, {31867,31870,31922 ,730,730,730 ,0,0,0}, - {31878,31934,31879 ,730,730,730 ,0,0,0}, {31935,32694,31881 ,730,730,730 ,0,0,0}, - {32695,31642,32696 ,730,730,730 ,0,0,0}, {32166,32697,31955 ,730,730,730 ,0,0,0}, - {31626,31861,31858 ,730,730,730 ,0,0,0}, {31649,31833,31652 ,730,730,730 ,0,0,0}, - {31626,31856,31644 ,730,730,730 ,0,0,0}, {32125,32128,32698 ,730,730,730 ,0,0,0}, - {32699,32109,32700 ,730,730,730 ,0,0,0}, {32701,32702,32124 ,730,730,730 ,0,0,0}, - {32108,32703,32704 ,730,730,730 ,0,0,0}, {31840,31841,31655 ,730,730,730 ,0,0,0}, - {32128,32130,32698 ,730,730,730 ,0,0,0}, {31652,31835,31653 ,730,730,730 ,0,0,0}, - {32123,32705,32701 ,730,730,730 ,0,0,0}, {32706,31846,32707 ,730,730,730 ,0,0,0}, - {32114,32708,32112 ,730,730,730 ,0,0,0}, {32117,32709,32119 ,730,730,730 ,0,0,0}, - {32700,32120,32709 ,730,730,730 ,0,0,0}, {32708,32114,32699 ,730,730,730 ,0,0,0}, - {32107,32710,32703 ,730,730,730 ,0,0,0}, {32710,32104,32708 ,730,730,730 ,0,0,0}, - {32124,32702,32117 ,730,730,730 ,0,0,0}, {32704,32707,31848 ,730,730,730 ,0,0,0}, - {32108,32704,32131 ,730,730,730 ,0,0,0}, {30481,31655,31841 ,730,730,730 ,0,0,0}, - {32706,30481,31844 ,730,730,730 ,0,0,0}, {32130,32711,32712 ,730,730,730 ,0,0,0}, - {32712,32698,32130 ,730,730,730 ,0,0,0}, {31834,31833,31649 ,730,730,730 ,0,0,0}, - {31653,31838,31655 ,730,730,730 ,0,0,0}, {31647,31646,31852 ,730,730,730 ,0,0,0}, - {31834,31647,31850 ,730,730,730 ,0,0,0}, {30497,32713,32714 ,730,730,730 ,0,0,0}, - {31855,31646,31644 ,730,730,730 ,0,0,0}, {31636,31642,32695 ,730,730,730 ,0,0,0}, - {31862,31630,32715 ,730,730,730 ,0,0,0}, {31878,31927,31934 ,730,730,730 ,0,0,0}, - {31634,31636,32695 ,730,730,730 ,0,0,0}, {32716,32717,32696 ,730,730,730 ,0,0,0}, - {32717,32716,32718 ,730,730,730 ,0,0,0}, {31548,31551,32099 ,730,730,730 ,0,0,0}, - {32099,32719,32718 ,730,730,730 ,0,0,0}, {32717,32718,32719 ,730,730,730 ,0,0,0}, - {32719,32099,31553 ,730,730,730 ,0,0,0}, {32168,31553,32720 ,730,730,730 ,0,0,0}, - {32052,32721,32054 ,730,730,730 ,0,0,0}, {32094,31658,32093 ,730,730,730 ,0,0,0}, - {32722,32058,32723 ,730,730,730 ,0,0,0}, {32054,32723,32055 ,730,730,730 ,0,0,0}, - {32606,32721,32052 ,730,730,730 ,0,0,0}, {32042,32724,32725 ,730,730,730 ,0,0,0}, - {32604,32046,32043 ,730,730,730 ,0,0,0}, {32071,31323,32726 ,730,730,730 ,0,0,0}, - {32603,32724,32039 ,730,730,730 ,0,0,0}, {32727,31679,31678 ,730,730,730 ,0,0,0}, - {32073,32075,31323 ,730,730,730 ,0,0,0}, {32091,31658,31664 ,730,730,730 ,0,0,0}, - {32087,32088,31662 ,730,730,730 ,0,0,0}, {32097,31678,31676 ,730,730,730 ,0,0,0}, - {32087,31665,32084 ,730,730,730 ,0,0,0}, {31681,32727,32728 ,730,730,730 ,0,0,0}, - {32079,31668,31674 ,730,730,730 ,0,0,0}, {31323,32071,32073 ,730,730,730 ,0,0,0}, - {32729,31684,32728 ,730,730,730 ,0,0,0}, {31685,31684,32729 ,730,730,730 ,0,0,0}, - {32042,32039,32724 ,730,730,730 ,0,0,0}, {32064,32061,32730 ,730,730,730 ,0,0,0}, - {32731,32059,32722 ,730,730,730 ,0,0,0}, {32064,32732,32065 ,730,730,730 ,0,0,0}, - {32730,32061,32731 ,730,730,730 ,0,0,0}, {32065,32732,32067 ,730,730,730 ,0,0,0}, - {31687,32733,31339 ,730,730,730 ,0,0,0}, {32729,32734,32735 ,730,730,730 ,0,0,0}, - {31687,31685,32733 ,730,730,730 ,0,0,0}, {32736,32734,32582 ,730,730,730 ,0,0,0}, - {32734,32736,32735 ,730,730,730 ,0,0,0}, {31865,31932,31927 ,730,730,730 ,0,0,0}, - {32736,32582,32098 ,730,730,730 ,0,0,0}, {31932,31865,31864 ,730,730,730 ,0,0,0}, - {31878,31865,31927 ,730,730,730 ,0,0,0}, {31864,31867,31930 ,730,730,730 ,0,0,0}, - {31922,31870,31925 ,730,730,730 ,0,0,0}, {31930,31867,31922 ,730,730,730 ,0,0,0}, - {31948,32159,31949 ,730,730,730 ,0,0,0}, {31942,32136,32153 ,730,730,730 ,0,0,0}, - {31911,31926,32737 ,730,730,730 ,0,0,0}, {31911,32737,31872 ,730,730,730 ,0,0,0}, - {31872,32021,31911 ,730,730,730 ,0,0,0}, {32026,31908,31910 ,730,730,730 ,0,0,0}, - {31951,31949,32160 ,730,730,730 ,0,0,0}, {31925,31870,31873 ,730,730,730 ,0,0,0}, - {32153,32154,31943 ,730,730,730 ,0,0,0}, {31951,32163,31954 ,730,730,730 ,0,0,0}, - {32154,32157,31945 ,730,730,730 ,0,0,0}, {32166,31955,32165 ,730,730,730 ,0,0,0}, - {32157,32159,31948 ,730,730,730 ,0,0,0}, {31557,32098,32390 ,730,730,730 ,0,0,0}, - {32160,32163,31951 ,730,730,730 ,0,0,0}, {31883,32738,32739 ,730,730,730 ,0,0,0}, - {31935,31879,31934 ,730,730,730 ,0,0,0}, {32694,32738,31881 ,730,730,730 ,0,0,0}, - {31879,31935,31881 ,730,730,730 ,0,0,0}, {31881,32738,31883 ,730,730,730 ,0,0,0}, - {32582,32583,32098 ,730,730,730 ,0,0,0}, {32739,32583,31883 ,730,730,730 ,0,0,0}, - {32740,32098,32741 ,730,730,730 ,0,0,0}, {32098,32583,32741 ,730,730,730 ,0,0,0}, - {32742,32098,32743 ,730,730,730 ,0,0,0}, {32098,32740,32743 ,730,730,730 ,0,0,0}, - {32098,32742,32390 ,730,730,730 ,0,0,0}, {32744,32166,32168 ,730,730,730 ,0,0,0}, - {32098,31557,32099 ,730,730,730 ,0,0,0}, {32099,31555,31548 ,730,730,730 ,0,0,0}, - {32099,31557,31555 ,730,730,730 ,0,0,0}, {31553,32168,32719 ,730,730,730 ,0,0,0}, - {31551,31553,32099 ,730,730,730 ,0,0,0}, {32720,32744,32168 ,730,730,730 ,0,0,0}, - {32744,32697,32166 ,730,730,730 ,0,0,0}, {31954,32165,31955 ,730,730,730 ,0,0,0}, - {32165,31954,32163 ,730,730,730 ,0,0,0}, {31949,32159,32160 ,730,730,730 ,0,0,0}, - {31957,32134,32136 ,730,730,730 ,0,0,0}, {31958,32137,32134 ,730,730,730 ,0,0,0}, - {32031,31904,32023 ,730,730,730 ,0,0,0}, {31911,32021,31910 ,730,730,730 ,0,0,0}, - {32033,31913,31912 ,730,730,730 ,0,0,0}, {31908,32026,32025 ,730,730,730 ,0,0,0}, - {31918,31915,32028 ,730,730,730 ,0,0,0}, {32023,31904,31905 ,730,730,730 ,0,0,0}, - {32037,32745,32746 ,730,730,730 ,0,0,0}, {32033,31912,32031 ,730,730,730 ,0,0,0}, - {31533,31572,31531 ,730,730,730 ,0,0,0}, {31913,32033,32028 ,730,730,730 ,0,0,0}, - {32690,31531,31571 ,730,730,730 ,0,0,0}, {32672,32747,31543 ,730,730,730 ,0,0,0}, - {32151,31541,32747 ,730,730,730 ,0,0,0}, {31543,32747,31541 ,730,730,730 ,0,0,0}, - {31535,31528,32670 ,730,730,730 ,0,0,0}, {32748,31531,32690 ,730,730,730 ,0,0,0}, - {32749,31572,31533 ,730,730,730 ,0,0,0}, {31936,31537,31535 ,730,730,730 ,0,0,0}, - {32750,32749,31533 ,730,730,730 ,0,0,0}, {32217,31998,31995 ,730,730,730 ,0,0,0}, - {31757,31982,31770 ,730,730,730 ,0,0,0}, {32751,32752,32613 ,730,730,730 ,0,0,0}, - {31984,31771,31977 ,730,730,730 ,0,0,0}, {31918,32035,32746 ,730,730,730 ,0,0,0}, - {32589,32753,31775 ,730,730,730 ,0,0,0}, {32621,32612,32611 ,730,730,730 ,0,0,0}, - {32752,32693,32692 ,730,730,730 ,0,0,0}, {32752,32692,32613 ,730,730,730 ,0,0,0}, - {32693,32745,32037 ,730,730,730 ,0,0,0}, {32746,32035,32037 ,730,730,730 ,0,0,0}, - {31918,32028,32035 ,730,730,730 ,0,0,0}, {31913,32028,31915 ,730,730,730 ,0,0,0}, - {32025,31905,31908 ,730,730,730 ,0,0,0}, {32021,32026,31910 ,730,730,730 ,0,0,0}, - {31765,31764,31893 ,730,730,730 ,0,0,0}, {31764,32325,31892 ,730,730,730 ,0,0,0}, - {32219,32220,31999 ,730,730,730 ,0,0,0}, {31976,31975,31762 ,730,730,730 ,0,0,0}, - {31995,31993,32214 ,730,730,730 ,0,0,0}, {32001,32220,32223 ,730,730,730 ,0,0,0}, - {31757,31756,31980 ,730,730,730 ,0,0,0}, {31972,31980,31756 ,730,730,730 ,0,0,0}, - {31998,32219,31999 ,730,730,730 ,0,0,0}, {31982,31977,31770 ,730,730,730 ,0,0,0}, - {32001,32223,32004 ,730,730,730 ,0,0,0}, {31984,31985,31771 ,730,730,730 ,0,0,0}, - {31770,31977,31771 ,730,730,730 ,0,0,0}, {31939,32342,31537 ,730,730,730 ,0,0,0}, - {32754,32617,32751 ,730,730,730 ,0,0,0}, {32751,32615,32754 ,730,730,730 ,0,0,0}, - {31985,32593,31773 ,730,730,730 ,0,0,0}, {32621,32611,32619 ,730,730,730 ,0,0,0}, - {32753,32614,32595 ,730,730,730 ,0,0,0}, {32589,32614,32753 ,730,730,730 ,0,0,0}, - {32618,32617,32754 ,730,730,730 ,0,0,0}, {32616,32755,32756 ,730,730,730 ,0,0,0}, - {32755,32616,32618 ,730,730,730 ,0,0,0}, {32756,32342,31939 ,730,730,730 ,0,0,0}, - {32755,32342,32756 ,730,730,730 ,0,0,0}, {31936,31939,31537 ,730,730,730 ,0,0,0}, - {31528,31531,32748 ,730,730,730 ,0,0,0}, {31528,32748,32670 ,730,730,730 ,0,0,0}, - {32757,31572,32749 ,730,730,730 ,0,0,0}, {32750,31533,32669 ,730,730,730 ,0,0,0}, - {32750,32669,32228 ,730,730,730 ,0,0,0}, {32668,32671,32228 ,730,730,730 ,0,0,0}, - {32671,32005,32226 ,730,730,730 ,0,0,0}, {32225,32005,32004 ,730,730,730 ,0,0,0}, - {32001,31999,32220 ,730,730,730 ,0,0,0}, {31992,32007,32196 ,730,730,730 ,0,0,0}, - {32007,32008,32194 ,730,730,730 ,0,0,0}, {32327,31894,31886 ,730,730,730 ,0,0,0}, - {31893,31764,31892 ,730,730,730 ,0,0,0}, {31894,32335,31895 ,730,730,730 ,0,0,0}, - {32325,32330,31890 ,730,730,730 ,0,0,0}, {32332,32339,31900 ,730,730,730 ,0,0,0}, - {31886,31887,32329 ,730,730,730 ,0,0,0}, {32327,32335,31894 ,730,730,730 ,0,0,0}, - {32337,31895,32335 ,730,730,730 ,0,0,0}, {32209,32206,31527 ,730,730,730 ,0,0,0}, - {32206,32019,31527 ,730,730,730 ,0,0,0}, {31518,32211,32209 ,730,730,730 ,0,0,0}, - {31518,32209,31525 ,730,730,730 ,0,0,0}, {31523,32633,32211 ,730,730,730 ,0,0,0}, - {31518,31521,32211 ,730,730,730 ,0,0,0}, {32261,32633,31523 ,730,730,730 ,0,0,0}, - {32758,32261,32759 ,730,730,730 ,0,0,0}, {32261,31523,32759 ,730,730,730 ,0,0,0}, - {32261,32758,32760 ,730,730,730 ,0,0,0}, {32261,31986,31988 ,730,730,730 ,0,0,0}, - {32261,32760,31986 ,730,730,730 ,0,0,0}, {32761,32339,32762 ,730,730,730 ,0,0,0}, - {32261,31988,32262 ,730,730,730 ,0,0,0}, {32262,32763,32641 ,730,730,730 ,0,0,0}, - {32262,31988,32763 ,730,730,730 ,0,0,0}, {32660,32262,32662 ,730,730,730 ,0,0,0}, - {32640,32661,32262 ,730,730,730 ,0,0,0}, {32341,32762,32339 ,730,730,730 ,0,0,0}, - {32662,32762,32341 ,730,730,730 ,0,0,0}, {32761,32663,32339 ,730,730,730 ,0,0,0}, - {31897,32332,31900 ,730,730,730 ,0,0,0}, {31897,32337,32332 ,730,730,730 ,0,0,0}, - {31887,32330,32329 ,730,730,730 ,0,0,0}, {31890,31892,32325 ,730,730,730 ,0,0,0}, - {32665,32634,32764 ,730,730,730 ,0,0,0}, {31802,31732,31734 ,730,730,730 ,0,0,0}, - {32623,32622,32764 ,730,730,730 ,0,0,0}, {32622,32665,32764 ,730,730,730 ,0,0,0}, - {32585,32584,32623 ,730,730,730 ,0,0,0}, {32258,32584,32586 ,730,730,730 ,0,0,0}, - {32256,32258,32624 ,730,730,730 ,0,0,0}, {32251,32253,32587 ,730,730,730 ,0,0,0}, - {32252,32251,32625 ,730,730,730 ,0,0,0}, {32245,32252,32626 ,730,730,730 ,0,0,0}, - {32247,32628,32629 ,730,730,730 ,0,0,0}, {32237,32248,32629 ,730,730,730 ,0,0,0}, - {32242,32237,32630 ,730,730,730 ,0,0,0}, {32240,32627,32664 ,730,730,730 ,0,0,0}, - {32235,32232,32664 ,730,730,730 ,0,0,0}, {32236,32235,31059 ,730,730,730 ,0,0,0}, - {32259,32236,31753 ,730,730,730 ,0,0,0}, {31790,31792,31751 ,730,730,730 ,0,0,0}, - {31788,31790,31750 ,730,730,730 ,0,0,0}, {31785,31788,31747 ,730,730,730 ,0,0,0}, - {31784,31745,31744 ,730,730,730 ,0,0,0}, {31779,31782,31744 ,730,730,730 ,0,0,0}, - {31777,31742,31724 ,730,730,730 ,0,0,0}, {31778,31724,31730 ,730,730,730 ,0,0,0}, - {31796,31794,31728 ,730,730,730 ,0,0,0}, {31794,31778,31730 ,730,730,730 ,0,0,0}, - {31731,31799,31728 ,730,730,730 ,0,0,0}, {31732,31802,31800 ,730,730,730 ,0,0,0}, - {31731,31800,31799 ,730,730,730 ,0,0,0}, {31734,31805,31802 ,730,730,730 ,0,0,0}, - {31740,31806,31734 ,730,730,730 ,0,0,0}, {31805,31734,31806 ,730,730,730 ,0,0,0}, - {31806,31737,32667 ,730,730,730 ,0,0,0}, {31043,32667,31737 ,730,730,730 ,0,0,0}, - {32650,32649,32273 ,730,730,730 ,0,0,0}, {32273,32272,32650 ,730,730,730 ,0,0,0}, - {32281,32280,32645 ,730,730,730 ,0,0,0}, {32278,32645,32280 ,730,730,730 ,0,0,0}, - {32284,32281,32646 ,730,730,730 ,0,0,0}, {32285,32284,32654 ,730,730,730 ,0,0,0}, - {32287,32285,32643 ,730,730,730 ,0,0,0}, {32642,32644,32291 ,730,730,730 ,0,0,0}, - {32291,32290,32642 ,730,730,730 ,0,0,0}, {32656,32765,32658 ,730,730,730 ,0,0,0}, - {32765,32655,32766 ,730,730,730 ,0,0,0}, {32655,32765,32293 ,730,730,730 ,0,0,0}, - {32766,32658,32765 ,730,730,730 ,0,0,0}, {32656,32657,32648 ,730,730,730 ,0,0,0}, - {32648,32652,32637 ,730,730,730 ,0,0,0}, {31723,32652,32653 ,730,730,730 ,0,0,0}, - {31720,32651,31723 ,730,730,730 ,0,0,0}, {31718,32323,31720 ,730,730,730 ,0,0,0}, - {32319,32320,31717 ,730,730,730 ,0,0,0}, {32317,32319,31714 ,730,730,730 ,0,0,0}, - {32314,32317,31712 ,730,730,730 ,0,0,0}, {32313,32314,31711 ,730,730,730 ,0,0,0}, - {32310,31690,32309 ,730,730,730 ,0,0,0}, {32305,32307,31696 ,730,730,730 ,0,0,0}, - {32307,32309,31690 ,730,730,730 ,0,0,0}, {31697,32302,31694 ,730,730,730 ,0,0,0}, - {31694,32305,31696 ,730,730,730 ,0,0,0}, {31698,32301,31697 ,730,730,730 ,0,0,0}, - {31698,31700,32297 ,730,730,730 ,0,0,0}, {31698,32299,32301 ,730,730,730 ,0,0,0}, - {31700,31707,32295 ,730,730,730 ,0,0,0}, {32265,31704,32268 ,730,730,730 ,0,0,0}, - {32295,31707,32265 ,730,730,730 ,0,0,0}, {32269,31704,31703 ,730,730,730 ,0,0,0}, - {32726,32603,32069 ,730,730,730 ,0,0,0}, {32726,32069,32071 ,730,730,730 ,0,0,0}, - {32043,32725,32604 ,730,730,730 ,0,0,0}, {32042,32725,32043 ,730,730,730 ,0,0,0}, - {32047,32046,32604 ,730,730,730 ,0,0,0}, {32049,32047,32605 ,730,730,730 ,0,0,0}, - {32052,32049,32606 ,730,730,730 ,0,0,0}, {32054,32721,32723 ,730,730,730 ,0,0,0}, - {32058,32055,32723 ,730,730,730 ,0,0,0}, {32059,32058,32722 ,730,730,730 ,0,0,0}, - {32061,32059,32731 ,730,730,730 ,0,0,0}, {32733,31685,32735 ,730,730,730 ,0,0,0}, - {32064,32730,32732 ,730,730,730 ,0,0,0}, {32767,32067,32732 ,730,730,730 ,0,0,0}, - {32067,32768,32769 ,730,730,730 ,0,0,0}, {32768,32067,32767 ,730,730,730 ,0,0,0}, - {32769,31339,32733 ,730,730,730 ,0,0,0}, {32768,31339,32769 ,730,730,730 ,0,0,0}, - {31685,32729,32735 ,730,730,730 ,0,0,0}, {31681,32728,31684 ,730,730,730 ,0,0,0}, - {31679,32727,31681 ,730,730,730 ,0,0,0}, {32097,32727,31678 ,730,730,730 ,0,0,0}, - {32094,32097,31676 ,730,730,730 ,0,0,0}, {32091,32093,31658 ,730,730,730 ,0,0,0}, - {32088,32091,31664 ,730,730,730 ,0,0,0}, {31665,32087,31662 ,730,730,730 ,0,0,0}, - {31662,32088,31664 ,730,730,730 ,0,0,0}, {31666,32084,31665 ,730,730,730 ,0,0,0}, - {31666,31668,32081 ,730,730,730 ,0,0,0}, {31666,32083,32084 ,730,730,730 ,0,0,0}, - {32079,31674,32076 ,730,730,730 ,0,0,0}, {32081,31668,32079 ,730,730,730 ,0,0,0}, - {32076,31671,32075 ,730,730,730 ,0,0,0}, {31323,32075,31671 ,730,730,730 ,0,0,0}, - {32713,32711,32130 ,730,730,730 ,0,0,0}, {30497,32711,32713 ,730,730,730 ,0,0,0}, - {32123,32125,32705 ,730,730,730 ,0,0,0}, {32125,32698,32705 ,730,730,730 ,0,0,0}, - {32124,32123,32701 ,730,730,730 ,0,0,0}, {32117,32702,32709 ,730,730,730 ,0,0,0}, - {32120,32119,32709 ,730,730,730 ,0,0,0}, {32109,32120,32700 ,730,730,730 ,0,0,0}, - {32114,32109,32699 ,730,730,730 ,0,0,0}, {32104,32112,32708 ,730,730,730 ,0,0,0}, - {32107,32104,32710 ,730,730,730 ,0,0,0}, {32108,32107,32703 ,730,730,730 ,0,0,0}, - {31848,32131,32704 ,730,730,730 ,0,0,0}, {31846,31848,32707 ,730,730,730 ,0,0,0}, - {31844,31846,32706 ,730,730,730 ,0,0,0}, {31841,31844,30481 ,730,730,730 ,0,0,0}, - {31838,31840,31655 ,730,730,730 ,0,0,0}, {31835,31838,31653 ,730,730,730 ,0,0,0}, - {31833,31835,31652 ,730,730,730 ,0,0,0}, {31834,31649,31647 ,730,730,730 ,0,0,0}, - {31852,31850,31647 ,730,730,730 ,0,0,0}, {31855,31852,31646 ,730,730,730 ,0,0,0}, - {31856,31855,31644 ,730,730,730 ,0,0,0}, {31632,31861,31626 ,730,730,730 ,0,0,0}, - {31858,31856,31626 ,730,730,730 ,0,0,0}, {31862,31632,31630 ,730,730,730 ,0,0,0}, - {31632,31862,31861 ,730,730,730 ,0,0,0}, {31630,31633,32715 ,730,730,730 ,0,0,0}, - {32695,32715,31634 ,730,730,730 ,0,0,0}, {31633,31634,32715 ,730,730,730 ,0,0,0}, - {32696,31642,32716 ,730,730,730 ,0,0,0}, {31639,32714,31642 ,730,730,730 ,0,0,0}, - {32716,31642,32714 ,730,730,730 ,0,0,0}, {30497,32714,31639 ,730,730,730 ,0,0,0}, - {32607,32600,32347 ,730,730,730 ,0,0,0}, {32607,32347,32346 ,730,730,730 ,0,0,0}, - {32353,32352,32609 ,730,730,730 ,0,0,0}, {32352,32608,32609 ,730,730,730 ,0,0,0}, - {32355,32353,32598 ,730,730,730 ,0,0,0}, {32358,32355,32599 ,730,730,730 ,0,0,0}, - {32359,32358,32596 ,730,730,730 ,0,0,0}, {32364,32361,32597 ,730,730,730 ,0,0,0}, - {32610,32591,32365 ,730,730,730 ,0,0,0}, {32365,32364,32610 ,730,730,730 ,0,0,0}, - {31622,32615,31625 ,730,730,730 ,0,0,0}, {32770,32590,32592 ,730,730,730 ,0,0,0}, - {32591,32590,32365 ,730,730,730 ,0,0,0}, {32619,32770,32620 ,730,730,730 ,0,0,0}, - {32770,32619,32590 ,730,730,730 ,0,0,0}, {32615,32751,31625 ,730,730,730 ,0,0,0}, - {32612,31625,32751 ,730,730,730 ,0,0,0}, {32612,32751,32613 ,730,730,730 ,0,0,0}, - {31622,32595,32615 ,730,730,730 ,0,0,0}, {31622,31620,32594 ,730,730,730 ,0,0,0}, - {31616,32602,31619 ,730,730,730 ,0,0,0}, {31614,32601,31616 ,730,730,730 ,0,0,0}, - {32389,32601,31613 ,730,730,730 ,0,0,0}, {32387,31611,31592 ,730,730,730 ,0,0,0}, - {32386,31592,31598 ,730,730,730 ,0,0,0}, {32381,32384,31596 ,730,730,730 ,0,0,0}, - {32384,32386,31598 ,730,730,730 ,0,0,0}, {31599,32378,32380 ,730,730,730 ,0,0,0}, - {31596,32380,32381 ,730,730,730 ,0,0,0}, {31600,32375,32378 ,730,730,730 ,0,0,0}, - {31602,31609,32374 ,730,730,730 ,0,0,0}, {31600,31602,32375 ,730,730,730 ,0,0,0}, - {32372,31606,32369 ,730,730,730 ,0,0,0}, {32374,31609,32372 ,730,730,730 ,0,0,0}, - {31605,32369,31606 ,730,730,730 ,0,0,0}, {32771,32689,32772 ,730,730,730 ,0,0,0}, - {32689,32673,32772 ,730,730,730 ,0,0,0}, {32685,32686,32771 ,730,730,730 ,0,0,0}, - {32686,32689,32771 ,730,730,730 ,0,0,0}, {32680,32679,32685 ,730,730,730 ,0,0,0}, - {32190,32679,32681 ,730,730,730 ,0,0,0}, {32187,32190,32677 ,730,730,730 ,0,0,0}, - {32185,32187,32678 ,730,730,730 ,0,0,0}, {32183,32185,32687 ,730,730,730 ,0,0,0}, - {32177,32179,32684 ,730,730,730 ,0,0,0}, {32182,32177,32676 ,730,730,730 ,0,0,0}, - {32171,32182,32675 ,730,730,730 ,0,0,0}, {32172,32171,32682 ,730,730,730 ,0,0,0}, - {32175,32172,32683 ,730,730,730 ,0,0,0}, {32191,32175,32674 ,730,730,730 ,0,0,0}, - {31820,32191,31591 ,730,730,730 ,0,0,0}, {31815,31818,31588 ,730,730,730 ,0,0,0}, - {31814,31815,31586 ,730,730,730 ,0,0,0}, {31812,31814,31585 ,730,730,730 ,0,0,0}, - {31808,31812,31582 ,730,730,730 ,0,0,0}, {31809,31808,31580 ,730,730,730 ,0,0,0}, - {31822,31809,31579 ,730,730,730 ,0,0,0}, {31825,31822,31577 ,730,730,730 ,0,0,0}, - {31564,31828,31558 ,730,730,730 ,0,0,0}, {31558,31826,31577 ,730,730,730 ,0,0,0}, - {31830,31564,31562 ,730,730,730 ,0,0,0}, {31564,31830,31828 ,730,730,730 ,0,0,0}, - {31562,31565,32688 ,730,730,730 ,0,0,0}, {32691,32688,31566 ,730,730,730 ,0,0,0}, - {31565,31566,32688 ,730,730,730 ,0,0,0}, {31568,31575,32691 ,730,730,730 ,0,0,0}, - {31572,32757,31575 ,730,730,730 ,0,0,0}, {32691,31575,32757 ,730,730,730 ,0,0,0}, - {31571,31531,31572 ,730,730,730 ,0,0,0}, {31980,31982,31757 ,730,730,730 ,0,0,0}, - {31926,31873,32737 ,730,730,730 ,0,0,0}, {31873,31872,32737 ,730,730,730 ,0,0,0}, - {31741,32521,32636 ,731,732,733 ,0,0,0}, {32529,32623,32528 ,734,735,736 ,0,0,0}, - {32764,32634,32517 ,737,738,739 ,0,0,0}, {32624,32527,32587 ,740,741,742 ,0,0,0}, - {32576,32575,32586 ,743,744,745 ,0,0,0}, {32525,32628,32626 ,746,747,748 ,0,0,0}, - {32526,32625,32518 ,749,750,751 ,0,0,0}, {32523,32630,32629 ,752,753,754 ,0,0,0}, - {32629,32628,32524 ,754,747,755 ,0,0,0}, {32630,32522,32627 ,753,756,757 ,0,0,0}, - {32522,32630,32523 ,756,753,752 ,0,0,0}, {32664,32627,32497 ,758,757,759 ,0,0,0}, - {32522,32497,32627 ,756,759,757 ,0,0,0}, {32496,31059,32664 ,760,761,758 ,0,0,0}, - {32664,32497,32496 ,758,759,760 ,0,0,0}, {31755,31059,32496 ,761,761,760 ,0,0,0}, - {32526,32525,32626 ,749,746,748 ,0,0,0}, {32628,32525,32524 ,747,746,755 ,0,0,0}, - {32523,32629,32524 ,752,754,755 ,0,0,0}, {32526,32626,32625 ,749,748,750 ,0,0,0}, - {32518,32625,32587 ,751,750,742 ,0,0,0}, {32527,32624,32575 ,741,740,744 ,0,0,0}, - {32527,32518,32587 ,741,751,742 ,0,0,0}, {32576,32586,32585 ,743,745,762 ,0,0,0}, - {32586,32575,32624 ,745,744,740 ,0,0,0}, {32585,32623,32529 ,762,735,734 ,0,0,0}, - {32585,32529,32576 ,762,734,743 ,0,0,0}, {32517,32528,32764 ,739,736,737 ,0,0,0}, - {32623,32764,32528 ,735,737,736 ,0,0,0}, {32634,32521,32517 ,738,732,739 ,0,0,0}, - {31741,32636,31043 ,731,733,35 ,0,0,0}, {32521,32634,32636 ,732,738,733 ,0,0,0}, - {31708,32409,32650 ,763,764,765 ,0,0,0}, {32406,32645,32405 ,766,767,768 ,0,0,0}, - {32647,32649,32407 ,769,770,771 ,0,0,0}, {32643,32400,32642 ,772,773,774 ,0,0,0}, - {32536,32401,32654 ,775,776,777 ,0,0,0}, {32533,32766,32655 ,778,779,780 ,0,0,0}, - {32532,32644,32535 ,781,782,783 ,0,0,0}, {32542,32657,32658 ,784,785,786 ,0,0,0}, - {32658,32766,32538 ,786,779,787 ,0,0,0}, {32657,32539,32648 ,785,788,789 ,0,0,0}, - {32539,32657,32542 ,788,785,784 ,0,0,0}, {32653,32648,32541 ,790,789,791 ,0,0,0}, - {32539,32541,32648 ,788,791,789 ,0,0,0}, {32509,31723,32653 ,792,793,790 ,0,0,0}, - {32653,32541,32509 ,790,791,792 ,0,0,0}, {31722,31723,32509 ,793,793,792 ,0,0,0}, - {32532,32533,32655 ,781,778,780 ,0,0,0}, {32766,32533,32538 ,779,778,787 ,0,0,0}, - {32542,32658,32538 ,784,786,787 ,0,0,0}, {32532,32655,32644 ,781,780,782 ,0,0,0}, - {32535,32644,32642 ,783,782,774 ,0,0,0}, {32400,32643,32401 ,773,772,776 ,0,0,0}, - {32400,32535,32642 ,773,783,774 ,0,0,0}, {32536,32654,32646 ,775,777,794 ,0,0,0}, - {32654,32401,32643 ,777,776,772 ,0,0,0}, {32646,32645,32406 ,794,767,766 ,0,0,0}, - {32646,32406,32536 ,794,766,775 ,0,0,0}, {32407,32405,32647 ,771,768,769 ,0,0,0}, - {32645,32647,32405 ,767,769,768 ,0,0,0}, {32649,32409,32407 ,770,764,771 ,0,0,0}, - {31708,32650,31703 ,763,765,126 ,0,0,0}, {32409,32649,32650 ,764,770,765 ,0,0,0}, - {31675,32447,32726 ,763,795,796 ,0,0,0}, {32449,32725,32448 ,797,798,799 ,0,0,0}, - {32724,32603,32446 ,800,801,802 ,0,0,0}, {32606,32450,32721 ,803,804,805 ,0,0,0}, - {32445,32451,32605 ,806,807,808 ,0,0,0}, {32402,32731,32722 ,809,810,811 ,0,0,0}, - {32403,32723,32452 ,812,813,814 ,0,0,0}, {32444,32732,32730 ,815,816,817 ,0,0,0}, - {32730,32731,32443 ,817,810,818 ,0,0,0}, {32732,32454,32767 ,816,819,820 ,0,0,0}, - {32454,32732,32444 ,819,816,815 ,0,0,0}, {32768,32767,32453 ,821,820,822 ,0,0,0}, - {32454,32453,32767 ,819,822,820 ,0,0,0}, {32442,31339,32768 ,823,793,821 ,0,0,0}, - {32768,32453,32442 ,821,822,823 ,0,0,0}, {31689,31339,32442 ,793,793,823 ,0,0,0}, - {32403,32402,32722 ,812,809,811 ,0,0,0}, {32731,32402,32443 ,810,809,818 ,0,0,0}, - {32444,32730,32443 ,815,817,818 ,0,0,0}, {32403,32722,32723 ,812,811,813 ,0,0,0}, - {32452,32723,32721 ,814,813,805 ,0,0,0}, {32450,32606,32451 ,804,803,807 ,0,0,0}, - {32450,32452,32721 ,804,814,805 ,0,0,0}, {32445,32605,32604 ,806,808,824 ,0,0,0}, - {32605,32451,32606 ,808,807,803 ,0,0,0}, {32604,32725,32449 ,824,798,797 ,0,0,0}, - {32604,32449,32445 ,824,797,806 ,0,0,0}, {32446,32448,32724 ,802,799,800 ,0,0,0}, - {32725,32724,32448 ,798,800,799 ,0,0,0}, {32603,32447,32446 ,801,795,802 ,0,0,0}, - {31675,32726,31323 ,763,796,126 ,0,0,0}, {32447,32603,32726 ,795,801,796 ,0,0,0}, - {31643,32577,32711 ,731,795,796 ,0,0,0}, {32475,32705,32476 ,825,826,799 ,0,0,0}, - {32698,32712,32477 ,827,828,829 ,0,0,0}, {32709,32431,32700 ,830,831,805 ,0,0,0}, - {32472,32432,32702 ,832,833,834 ,0,0,0}, {32430,32710,32708 ,835,836,837 ,0,0,0}, - {32429,32699,32470 ,838,839,814 ,0,0,0}, {32466,32704,32703 ,840,841,842 ,0,0,0}, - {32703,32710,32465 ,842,836,843 ,0,0,0}, {32704,32469,32707 ,841,844,845 ,0,0,0}, - {32469,32704,32466 ,844,841,840 ,0,0,0}, {32706,32707,32467 ,846,845,847 ,0,0,0}, - {32469,32467,32707 ,844,847,845 ,0,0,0}, {32468,30481,32706 ,848,761,846 ,0,0,0}, - {32706,32467,32468 ,846,847,848 ,0,0,0}, {31657,30481,32468 ,761,761,848 ,0,0,0}, - {32429,32430,32708 ,838,835,837 ,0,0,0}, {32710,32430,32465 ,836,835,843 ,0,0,0}, - {32466,32703,32465 ,840,842,843 ,0,0,0}, {32429,32708,32699 ,838,837,839 ,0,0,0}, - {32470,32699,32700 ,814,839,805 ,0,0,0}, {32431,32709,32432 ,831,830,833 ,0,0,0}, - {32431,32470,32700 ,831,814,805 ,0,0,0}, {32472,32702,32701 ,832,834,849 ,0,0,0}, - {32702,32432,32709 ,834,833,830 ,0,0,0}, {32701,32705,32475 ,849,826,825 ,0,0,0}, - {32701,32475,32472 ,849,825,832 ,0,0,0}, {32477,32476,32698 ,829,799,827 ,0,0,0}, - {32705,32698,32476 ,826,827,799 ,0,0,0}, {32712,32577,32477 ,828,795,829 ,0,0,0}, - {31643,32711,30497 ,731,796,35 ,0,0,0}, {32577,32712,32711 ,795,828,796 ,0,0,0}, - {31610,32392,32607 ,850,851,852 ,0,0,0}, {32408,32609,32404 ,853,854,855 ,0,0,0}, - {32608,32600,32396 ,856,801,857 ,0,0,0}, {32596,32412,32597 ,830,858,859 ,0,0,0}, - {32410,32411,32599 ,860,861,862 ,0,0,0}, {32415,32592,32591 ,863,864,865 ,0,0,0}, - {32414,32610,32413 ,866,867,868 ,0,0,0}, {32422,32620,32770 ,869,870,871 ,0,0,0}, - {32770,32592,32417 ,871,864,872 ,0,0,0}, {32620,32579,32621 ,870,873,874 ,0,0,0}, - {32579,32620,32422 ,873,870,869 ,0,0,0}, {32612,32621,32420 ,875,874,876 ,0,0,0}, - {32579,32420,32621 ,873,876,874 ,0,0,0}, {32418,31625,32612 ,877,82,875 ,0,0,0}, - {32612,32420,32418 ,875,876,877 ,0,0,0}, {31624,31625,32418 ,878,82,877 ,0,0,0}, - {32414,32415,32591 ,866,863,865 ,0,0,0}, {32592,32415,32417 ,864,863,872 ,0,0,0}, - {32422,32770,32417 ,869,871,872 ,0,0,0}, {32414,32591,32610 ,866,865,867 ,0,0,0}, - {32413,32610,32597 ,868,867,859 ,0,0,0}, {32412,32596,32411 ,858,830,861 ,0,0,0}, - {32412,32413,32597 ,858,868,859 ,0,0,0}, {32410,32599,32598 ,860,862,879 ,0,0,0}, - {32599,32411,32596 ,862,861,830 ,0,0,0}, {32598,32609,32408 ,879,854,853 ,0,0,0}, - {32598,32408,32410 ,879,853,860 ,0,0,0}, {32396,32404,32608 ,857,855,856 ,0,0,0}, - {32609,32608,32404 ,854,856,855 ,0,0,0}, {32600,32392,32396 ,801,851,857 ,0,0,0}, - {31610,32607,31605 ,850,852,850 ,0,0,0}, {32392,32600,32607 ,851,801,852 ,0,0,0}, - {31576,32486,32673 ,731,851,880 ,0,0,0}, {32581,32685,32490 ,881,882,855 ,0,0,0}, - {32771,32772,32485 ,856,801,857 ,0,0,0}, {32677,32488,32678 ,883,884,859 ,0,0,0}, - {32580,32500,32681 ,860,885,834 ,0,0,0}, {32495,32676,32684 ,886,887,888 ,0,0,0}, - {32393,32687,32489 ,889,890,868 ,0,0,0}, {32493,32682,32675 ,891,892,893 ,0,0,0}, - {32675,32676,32494 ,893,887,894 ,0,0,0}, {32682,32492,32683 ,892,895,896 ,0,0,0}, - {32492,32682,32493 ,895,892,891 ,0,0,0}, {32674,32683,32491 ,897,896,898 ,0,0,0}, - {32492,32491,32683 ,895,898,896 ,0,0,0}, {32474,31591,32674 ,899,761,897 ,0,0,0}, - {32674,32491,32474 ,897,898,899 ,0,0,0}, {31590,31591,32474 ,761,761,899 ,0,0,0}, - {32393,32495,32684 ,889,886,888 ,0,0,0}, {32676,32495,32494 ,887,886,894 ,0,0,0}, - {32493,32675,32494 ,891,893,894 ,0,0,0}, {32393,32684,32687 ,889,888,890 ,0,0,0}, - {32489,32687,32678 ,868,890,859 ,0,0,0}, {32488,32677,32500 ,884,883,885 ,0,0,0}, - {32488,32489,32678 ,884,868,859 ,0,0,0}, {32580,32681,32680 ,860,834,849 ,0,0,0}, - {32681,32500,32677 ,834,885,883 ,0,0,0}, {32680,32685,32581 ,849,882,881 ,0,0,0}, - {32680,32581,32580 ,849,881,860 ,0,0,0}, {32485,32490,32771 ,857,855,856 ,0,0,0}, - {32685,32771,32490 ,882,856,855 ,0,0,0}, {32772,32486,32485 ,801,851,857 ,0,0,0}, - {31576,32673,31571 ,731,880,35 ,0,0,0}, {32486,32772,32673 ,851,801,880 ,0,0,0}, - {31554,32480,32720 ,20,900,900 ,0,0,0}, {32464,31955,32697 ,901,336,901 ,0,0,0}, - {32697,32744,32555 ,901,902,902 ,0,0,0}, {31956,31955,32464 ,336,336,901 ,0,0,0}, - {32480,32744,32720 ,900,902,900 ,0,0,0}, {32744,32480,32555 ,902,900,902 ,0,0,0}, - {32464,32697,32555 ,901,901,902 ,0,0,0}, {32720,31553,31554 ,900,20,20 ,0,0,0}, - {32741,32583,32460 ,903,904,905 ,0,0,0}, {32459,32436,32740 ,906,907,908 ,0,0,0}, - {32459,32740,32741 ,906,908,903 ,0,0,0}, {32459,32741,32460 ,906,903,905 ,0,0,0}, - {32742,32743,32435 ,909,910,911 ,0,0,0}, {32743,32436,32435 ,910,907,911 ,0,0,0}, - {32740,32436,32743 ,908,907,910 ,0,0,0}, {32461,32391,32390 ,912,21,21 ,0,0,0}, - {32461,32390,32742 ,912,21,909 ,0,0,0}, {32435,32461,32742 ,911,912,909 ,0,0,0}, - {32460,32583,32558 ,905,904,913 ,0,0,0}, {32556,32558,32739 ,914,913,915 ,0,0,0}, - {32583,32739,32558 ,904,915,913 ,0,0,0}, {32738,32557,32556 ,916,917,914 ,0,0,0}, - {32556,32739,32738 ,914,915,916 ,0,0,0}, {32557,32694,31933 ,917,918,322 ,0,0,0}, - {32694,32557,32738 ,918,917,916 ,0,0,0}, {32694,31935,31933 ,918,322,322 ,0,0,0}, - {31544,32574,32690 ,15,919,920 ,0,0,0}, {32505,31936,32670 ,921,922,921 ,0,0,0}, - {32670,32748,32499 ,921,923,923 ,0,0,0}, {31937,31936,32505 ,924,922,921 ,0,0,0}, - {32574,32748,32690 ,919,923,920 ,0,0,0}, {32748,32574,32499 ,923,919,923 ,0,0,0}, - {32505,32670,32499 ,921,921,923 ,0,0,0}, {32690,31543,31544 ,920,15,15 ,0,0,0}, - {31534,32506,32669 ,8,925,925 ,0,0,0}, {32481,32005,32671 ,926,372,926 ,0,0,0}, - {32671,32668,32573 ,926,927,927 ,0,0,0}, {32006,32005,32481 ,372,372,926 ,0,0,0}, - {32506,32668,32669 ,925,927,925 ,0,0,0}, {32668,32506,32573 ,927,925,927 ,0,0,0}, - {32481,32671,32573 ,926,926,927 ,0,0,0}, {32669,31533,31534 ,925,8,8 ,0,0,0}, - {32752,32751,32419 ,928,929,930 ,0,0,0}, {32752,32559,32693 ,928,931,932 ,0,0,0}, - {32559,32752,32419 ,931,928,930 ,0,0,0}, {32426,32745,32551 ,933,934,935 ,0,0,0}, - {32551,32745,32693 ,935,934,932 ,0,0,0}, {31918,32746,32425 ,314,936,937 ,0,0,0}, - {32425,31919,31918 ,937,314,314 ,0,0,0}, {32425,32746,32426 ,937,936,933 ,0,0,0}, - {32426,32746,32745 ,933,936,934 ,0,0,0}, {32693,32559,32551 ,932,931,935 ,0,0,0}, - {32419,32751,32560 ,930,929,938 ,0,0,0}, {32503,32560,32617 ,939,938,940 ,0,0,0}, - {32751,32617,32560 ,929,940,938 ,0,0,0}, {32616,32504,32503 ,941,942,939 ,0,0,0}, - {32503,32617,32616 ,939,940,941 ,0,0,0}, {32504,32756,31938 ,942,943,944 ,0,0,0}, - {32756,32504,32616 ,943,942,941 ,0,0,0}, {32756,31939,31938 ,943,324,944 ,0,0,0}, - {32615,32614,32549 ,945,946,947 ,0,0,0}, {32615,32428,32754 ,945,948,949 ,0,0,0}, - {32428,32615,32549 ,948,945,947 ,0,0,0}, {32548,32618,32427 ,950,951,952 ,0,0,0}, - {32427,32618,32754 ,952,951,949 ,0,0,0}, {32342,32755,32502 ,953,954,955 ,0,0,0}, - {32502,32343,32342 ,955,21,953 ,0,0,0}, {32502,32755,32548 ,955,954,950 ,0,0,0}, - {32548,32755,32618 ,950,954,951 ,0,0,0}, {32754,32428,32427 ,949,948,952 ,0,0,0}, - {32549,32614,32508 ,947,946,956 ,0,0,0}, {32562,32508,32589 ,957,956,958 ,0,0,0}, - {32614,32589,32508 ,946,958,956 ,0,0,0}, {32588,32563,32562 ,959,960,957 ,0,0,0}, - {32562,32589,32588 ,957,958,959 ,0,0,0}, {32563,32593,31983 ,960,961,358 ,0,0,0}, - {32593,32563,32588 ,961,960,959 ,0,0,0}, {32593,31985,31983 ,961,358,358 ,0,0,0}, - {32662,32661,32569 ,962,963,964 ,0,0,0}, {32547,32566,32762 ,965,966,967 ,0,0,0}, - {32547,32762,32662 ,965,967,962 ,0,0,0}, {32547,32662,32569 ,965,962,964 ,0,0,0}, - {32663,32761,32567 ,968,969,970 ,0,0,0}, {32761,32566,32567 ,969,966,970 ,0,0,0}, - {32762,32566,32761 ,967,966,969 ,0,0,0}, {32513,31901,31900 ,971,304,304 ,0,0,0}, - {32513,31900,32663 ,971,304,968 ,0,0,0}, {32567,32513,32663 ,970,971,968 ,0,0,0}, - {32569,32661,32568 ,964,963,972 ,0,0,0}, {32571,32568,32640 ,973,972,974 ,0,0,0}, - {32661,32640,32568 ,963,974,972 ,0,0,0}, {32641,32570,32571 ,975,976,973 ,0,0,0}, - {32571,32640,32641 ,973,974,975 ,0,0,0}, {32570,32763,31987 ,976,977,324 ,0,0,0}, - {32763,32570,32641 ,977,976,975 ,0,0,0}, {32763,31988,31987 ,977,978,324 ,0,0,0}, - {31524,32516,32759 ,3,979,979 ,0,0,0}, {32572,31986,32760 ,980,324,980 ,0,0,0}, - {32760,32758,32515 ,980,981,981 ,0,0,0}, {31989,31986,32572 ,982,324,980 ,0,0,0}, - {32516,32758,32759 ,979,981,979 ,0,0,0}, {32758,32516,32515 ,981,979,981 ,0,0,0}, - {32572,32760,32515 ,980,980,981 ,0,0,0}, {32759,31523,31524 ,979,3,3 ,0,0,0}, - {32666,32399,32635 ,983,983,984 ,0,0,0}, {32520,32519,32667 ,984,985,986 ,0,0,0}, - {32635,32520,32667 ,984,984,986 ,0,0,0}, {32519,31807,31806 ,985,235,235 ,0,0,0}, - {32667,32519,31806 ,986,985,235 ,0,0,0}, {32635,32399,32520 ,984,983,984 ,0,0,0}, - {32514,32399,32666 ,987,983,983 ,0,0,0}, {32514,32631,32263 ,987,987,988 ,0,0,0}, - {32631,32514,32666 ,987,987,983 ,0,0,0}, {32631,32261,32263 ,987,988,988 ,0,0,0}, - {32530,32398,32665 ,989,990,990 ,0,0,0}, {32397,32633,32632 ,991,992,991 ,0,0,0}, - {32665,32398,32632 ,990,990,991 ,0,0,0}, {32210,32211,32534 ,508,508,992 ,0,0,0}, - {32633,32397,32534 ,992,991,992 ,0,0,0}, {32534,32211,32633 ,992,508,992 ,0,0,0}, - {32397,32632,32398 ,991,991,990 ,0,0,0}, {32665,32622,32530 ,990,989,989 ,0,0,0}, - {32622,32584,32531 ,989,993,994 ,0,0,0}, {32531,32530,32622 ,994,989,989 ,0,0,0}, - {32257,32584,32258 ,546,993,546 ,0,0,0}, {32584,32257,32531 ,993,546,994 ,0,0,0}, - {32482,32395,32757 ,995,996,996 ,0,0,0}, {32394,32688,32691 ,997,998,997 ,0,0,0}, - {32757,32395,32691 ,996,996,997 ,0,0,0}, {31831,31830,32498 ,257,257,998 ,0,0,0}, - {32688,32394,32498 ,998,997,998 ,0,0,0}, {32498,31830,32688 ,998,257,998 ,0,0,0}, - {32394,32691,32395 ,997,997,996 ,0,0,0}, {32757,32749,32482 ,996,995,995 ,0,0,0}, - {32749,32750,32483 ,995,999,999 ,0,0,0}, {32483,32482,32749 ,999,995,995 ,0,0,0}, - {32229,32750,32228 ,525,999,525 ,0,0,0}, {32750,32229,32483 ,999,525,999 ,0,0,0}, - {32565,32484,32689 ,1000,1001,1001 ,0,0,0}, {32487,32747,32672 ,1002,1003,1004 ,0,0,0}, - {32689,32484,32672 ,1001,1001,1004 ,0,0,0}, {32150,32151,32564 ,508,508,1003 ,0,0,0}, - {32747,32487,32564 ,1003,1002,1003 ,0,0,0}, {32564,32151,32747 ,1003,508,1003 ,0,0,0}, - {32487,32672,32484 ,1002,1004,1001 ,0,0,0}, {32689,32686,32565 ,1001,1000,1000 ,0,0,0}, - {32686,32679,32501 ,1000,1005,1005 ,0,0,0}, {32501,32565,32686 ,1005,1000,1000 ,0,0,0}, - {32189,32679,32190 ,546,1005,546 ,0,0,0}, {32679,32189,32501 ,1005,546,1005 ,0,0,0}, - {32478,32473,32696 ,1006,1007,1007 ,0,0,0}, {32433,32715,32695 ,1008,1009,1008 ,0,0,0}, - {32696,32473,32695 ,1007,1007,1008 ,0,0,0}, {31863,31862,32471 ,257,257,1009 ,0,0,0}, - {32715,32433,32471 ,1009,1008,1009 ,0,0,0}, {32471,31862,32715 ,1009,257,1009 ,0,0,0}, - {32433,32695,32473 ,1008,1008,1007 ,0,0,0}, {32696,32717,32478 ,1007,1006,1006 ,0,0,0}, - {32717,32719,32462 ,1006,1010,1010 ,0,0,0}, {32462,32478,32717 ,1010,1006,1006 ,0,0,0}, - {32169,32719,32168 ,525,1010,525 ,0,0,0}, {32719,32169,32462 ,1010,525,1010 ,0,0,0}, - {32714,32434,32716 ,1011,1011,1012 ,0,0,0}, {32479,32463,32718 ,1012,1013,1013 ,0,0,0}, - {32716,32479,32718 ,1012,1012,1013 ,0,0,0}, {32463,32100,32099 ,1013,324,324 ,0,0,0}, - {32718,32463,32099 ,1013,1013,324 ,0,0,0}, {32716,32434,32479 ,1012,1011,1012 ,0,0,0}, - {32578,32434,32714 ,1014,1011,1011 ,0,0,0}, {32578,32713,32129 ,1014,1014,488 ,0,0,0}, - {32713,32578,32714 ,1014,1014,1011 ,0,0,0}, {32713,32130,32129 ,1014,488,488 ,0,0,0}, - {32735,32440,32733 ,1015,1015,1016 ,0,0,0}, {32456,32441,32769 ,1016,1017,1017 ,0,0,0}, - {32733,32456,32769 ,1016,1016,1017 ,0,0,0}, {32441,32068,32067 ,1017,427,427 ,0,0,0}, - {32769,32441,32067 ,1017,1017,427 ,0,0,0}, {32733,32440,32456 ,1016,1015,1016 ,0,0,0}, - {32457,32440,32735 ,1018,1015,1015 ,0,0,0}, {32457,32736,32101 ,1018,1018,1019 ,0,0,0}, - {32736,32457,32735 ,1018,1018,1015 ,0,0,0}, {32736,32098,32101 ,1018,324,1019 ,0,0,0}, - {32455,32439,32729 ,1020,1021,1021 ,0,0,0}, {32438,32582,32734 ,1022,1023,1022 ,0,0,0}, - {32729,32439,32734 ,1021,1021,1022 ,0,0,0}, {31882,31883,32458 ,205,205,1023 ,0,0,0}, - {32582,32438,32458 ,1023,1022,1023 ,0,0,0}, {32458,31883,32582 ,1023,205,1023 ,0,0,0}, - {32438,32734,32439 ,1022,1022,1021 ,0,0,0}, {32729,32728,32455 ,1021,1020,1020 ,0,0,0}, - {32728,32727,32437 ,1020,1024,1024 ,0,0,0}, {32437,32455,32728 ,1024,1020,1020 ,0,0,0}, - {32096,32727,32097 ,456,1024,456 ,0,0,0}, {32727,32096,32437 ,1024,456,1024 ,0,0,0}, - {32553,32421,32611 ,1025,1026,1026 ,0,0,0}, {32423,32590,32619 ,1027,1028,1027 ,0,0,0}, - {32611,32421,32619 ,1026,1026,1027 ,0,0,0}, {32367,32365,32416 ,641,641,1028 ,0,0,0}, - {32590,32423,32416 ,1028,1027,1028 ,0,0,0}, {32416,32365,32590 ,1028,641,1028 ,0,0,0}, - {32423,32619,32421 ,1027,1027,1026 ,0,0,0}, {32611,32613,32553 ,1026,1025,1025 ,0,0,0}, - {32613,32692,32552 ,1025,1029,1029 ,0,0,0}, {32552,32553,32613 ,1029,1025,1025 ,0,0,0}, - {32036,32692,32037 ,396,1029,396 ,0,0,0}, {32692,32036,32552 ,1029,396,1029 ,0,0,0}, - {32424,32561,32594 ,1030,1031,1031 ,0,0,0}, {32550,32753,32595 ,1032,1033,1032 ,0,0,0}, - {32594,32561,32595 ,1031,1031,1032 ,0,0,0}, {31774,31775,32507 ,205,205,1033 ,0,0,0}, - {32753,32550,32507 ,1033,1032,1033 ,0,0,0}, {32507,31775,32753 ,1033,205,1033 ,0,0,0}, - {32550,32595,32561 ,1032,1032,1031 ,0,0,0}, {32594,32602,32424 ,1031,1030,1030 ,0,0,0}, - {32602,32601,32554 ,1030,1034,1034 ,0,0,0}, {32554,32424,32602 ,1034,1030,1030 ,0,0,0}, - {32388,32601,32389 ,456,1034,456 ,0,0,0}, {32601,32388,32554 ,1034,456,1034 ,0,0,0}, - {32546,32544,32639 ,1035,1036,1036 ,0,0,0}, {32540,32765,32656 ,1037,1038,1037 ,0,0,0}, - {32639,32544,32656 ,1036,1036,1037 ,0,0,0}, {32294,32293,32537 ,641,641,1038 ,0,0,0}, - {32765,32540,32537 ,1038,1037,1038 ,0,0,0}, {32537,32293,32765 ,1038,641,1038 ,0,0,0}, - {32540,32656,32544 ,1037,1037,1036 ,0,0,0}, {32639,32638,32546 ,1036,1035,1035 ,0,0,0}, - {32638,32660,32511 ,1035,1039,1040 ,0,0,0}, {32511,32546,32638 ,1040,1035,1035 ,0,0,0}, - {32340,32660,32341 ,396,1039,396 ,0,0,0}, {32660,32340,32511 ,1039,396,1040 ,0,0,0}, - {32652,32510,32637 ,1041,1041,1042 ,0,0,0}, {32543,32512,32659 ,1042,1043,1044 ,0,0,0}, - {32637,32543,32659 ,1042,1042,1044 ,0,0,0}, {32512,32260,32262 ,1043,1045,1045 ,0,0,0}, - {32659,32512,32262 ,1044,1043,1045 ,0,0,0}, {32637,32510,32543 ,1042,1041,1042 ,0,0,0}, - {32545,32510,32652 ,1046,1041,1041 ,0,0,0}, {32545,32651,32322 ,1046,1046,670 ,0,0,0}, - {32651,32545,32652 ,1046,1046,1041 ,0,0,0}, {32651,32323,32322 ,1046,670,670 ,0,0,0} -// M3abstandhalter10mm.prt - , {32773,32452,32774 ,18258,18259,18260 ,0,0,0}, {32775,32776,32777 ,18261,18262,18263 ,0,0,0}, - {32774,32452,32777 ,18260,18259,18263 ,0,0,0}, {32776,32775,32778 ,18262,18261,18264 ,0,0,0}, - {32778,32779,32776 ,18264,18265,18262 ,0,0,0}, {32779,32780,32781 ,18265,18266,18267 ,0,0,0}, - {32778,32780,32779 ,18264,18266,18265 ,0,0,0}, {32775,32777,32452 ,18261,18263,18259 ,0,0,0}, - {32782,32783,32784 ,18268,18269,18270 ,0,0,0}, {32783,32781,32784 ,18269,18267,18270 ,0,0,0}, - {32782,32785,32786 ,18268,18271,18272 ,0,0,0}, {32786,32783,32782 ,18272,18269,18268 ,0,0,0}, - {32785,32787,32788 ,18271,18273,18274 ,0,0,0}, {32785,32788,32786 ,18271,18274,18272 ,0,0,0}, - {32780,32784,32781 ,18266,18270,18267 ,0,0,0}, {32789,32788,32787 ,18275,18274,18273 ,0,0,0}, - {32790,31675,32791 ,18276,18277,126 ,0,0,0}, {32790,32791,32789 ,18276,126,18275 ,0,0,0}, - {32787,32790,32789 ,18273,18276,18275 ,0,0,0}, {32773,32774,32792 ,18258,18260,18278 ,0,0,0}, - {32792,32793,32794 ,18278,18279,18280 ,0,0,0}, {32794,32773,32792 ,18280,18258,18278 ,0,0,0}, - {32795,32793,32796 ,18281,18279,18282 ,0,0,0}, {32793,32795,32794 ,18279,18281,18280 ,0,0,0}, - {32797,32798,32796 ,18283,18284,18282 ,0,0,0}, {32795,32796,32798 ,18281,18282,18284 ,0,0,0}, - {32797,32799,32800 ,18283,18285,18286 ,0,0,0}, {32800,32798,32797 ,18286,18284,18283 ,0,0,0}, - {32801,32799,32802 ,18287,18285,18288 ,0,0,0}, {32799,32801,32800 ,18285,18287,18286 ,0,0,0}, - {32803,32804,32802 ,18289,18290,18288 ,0,0,0}, {32801,32802,32804 ,18287,18288,18290 ,0,0,0}, - {32803,32805,32806 ,18289,18291,18292 ,0,0,0}, {32806,32804,32803 ,18292,18290,18289 ,0,0,0}, - {31689,32805,32807 ,18293,18291,18003 ,0,0,0}, {32805,31689,32806 ,18291,18293,18292 ,0,0,0}, - {32808,32809,32810 ,18294,18295,18296 ,0,0,0}, {32811,32812,32813 ,18297,21,18298 ,0,0,0}, - {32814,32808,32815 ,18299,18294,18300 ,0,0,0}, {32808,32814,32809 ,18294,18299,18295 ,0,0,0}, - {32814,32815,32816 ,18299,18300,18301 ,0,0,0}, {32817,32818,32816 ,18302,18303,18301 ,0,0,0}, - {32816,32815,32817 ,18301,18300,18302 ,0,0,0}, {32818,32819,32820 ,18303,18304,126 ,0,0,0}, - {32819,32818,32817 ,18304,18303,18302 ,0,0,0}, {32819,32821,32820 ,18304,3135,126 ,0,0,0}, - {32808,32810,32822 ,18294,18296,18305 ,0,0,0}, {32823,32822,32824 ,18306,18305,18307 ,0,0,0}, - {32810,32824,32822 ,18296,18307,18305 ,0,0,0}, {32825,32823,32826 ,18308,18306,18309 ,0,0,0}, - {32823,32824,32826 ,18306,18307,18309 ,0,0,0}, {32825,32827,32828 ,18308,18310,18311 ,0,0,0}, - {32828,32823,32825 ,18311,18306,18308 ,0,0,0}, {32829,32827,32830 ,18312,18310,18313 ,0,0,0}, - {32827,32829,32828 ,18310,18312,18311 ,0,0,0}, {32812,32829,32813 ,21,18312,18298 ,0,0,0}, - {32830,32813,32829 ,18313,18298,18312 ,0,0,0}, {32831,32832,32833 ,18314,18315,18316 ,0,0,0}, - {32811,32834,32833 ,18297,18317,18316 ,0,0,0}, {32835,32836,32837 ,18318,18319,18320 ,0,0,0}, - {32836,32832,32838 ,18319,18315,18321 ,0,0,0}, {32839,32840,32841 ,18322,18323,18324 ,0,0,0}, - {32842,32843,32839 ,18325,18326,18322 ,0,0,0}, {32844,32845,32846 ,18327,18328,18329 ,0,0,0}, - {32845,32844,32847 ,18328,18327,18330 ,0,0,0}, {32848,32849,32846 ,18037,18331,18329 ,0,0,0}, - {32844,32846,32849 ,18327,18329,18331 ,0,0,0}, {32850,32849,32848 ,18038,18331,18037 ,0,0,0}, - {32841,32847,32839 ,18324,18330,18322 ,0,0,0}, {32841,32845,32847 ,18324,18328,18330 ,0,0,0}, - {32836,32835,32842 ,18319,18318,18325 ,0,0,0}, {32839,32843,32840 ,18322,18326,18323 ,0,0,0}, - {32842,32835,32843 ,18325,18318,18326 ,0,0,0}, {32832,32831,32838 ,18315,18314,18321 ,0,0,0}, - {32837,32836,32838 ,18320,18319,18321 ,0,0,0}, {32833,32812,32811 ,18316,21,18297 ,0,0,0}, - {32831,32833,32834 ,18314,18316,18317 ,0,0,0}, {32851,32852,32853 ,18332,1077,18332 ,0,0,0}, - {32854,32855,32853 ,18333,18333,18332 ,0,0,0}, {32855,32851,32853 ,18333,18332,18332 ,0,0,0}, - {32851,32856,32852 ,18332,18334,1077 ,0,0,0}, {32857,32858,32859 ,18335,18336,324 ,0,0,0}, - {32860,32861,32862 ,18337,18338,18339 ,0,0,0}, {32859,32858,32862 ,324,18336,18339 ,0,0,0}, - {32861,32860,32863 ,18338,18337,18340 ,0,0,0}, {32863,32864,32861 ,18340,18341,18338 ,0,0,0}, - {32864,32865,32866 ,18341,18342,18343 ,0,0,0}, {32863,32865,32864 ,18340,18342,18341 ,0,0,0}, - {32860,32862,32858 ,18337,18339,18336 ,0,0,0}, {32867,32868,32869 ,18344,18345,18346 ,0,0,0}, - {32868,32866,32869 ,18345,18343,18346 ,0,0,0}, {32867,32870,32871 ,18344,18347,18348 ,0,0,0}, - {32871,32868,32867 ,18348,18345,18344 ,0,0,0}, {32870,32872,32873 ,18347,18349,18350 ,0,0,0}, - {32870,32873,32871 ,18347,18350,18348 ,0,0,0}, {32865,32869,32866 ,18342,18346,18343 ,0,0,0}, - {32874,32873,32872 ,18351,18350,18349 ,0,0,0}, {32875,32876,32877 ,18352,18353,126 ,0,0,0}, - {32875,32877,32874 ,18352,126,18351 ,0,0,0}, {32872,32875,32874 ,18349,18352,18351 ,0,0,0}, - {32857,32859,32878 ,18335,324,18354 ,0,0,0}, {32878,32879,32880 ,18354,18355,18356 ,0,0,0}, - {32880,32857,32878 ,18356,18335,18354 ,0,0,0}, {32881,32879,32882 ,18357,18355,18358 ,0,0,0}, - {32879,32881,32880 ,18355,18357,18356 ,0,0,0}, {32883,32884,32882 ,18359,18360,18358 ,0,0,0}, - {32881,32882,32884 ,18357,18358,18360 ,0,0,0}, {32883,32885,32886 ,18359,18361,18362 ,0,0,0}, - {32886,32884,32883 ,18362,18360,18359 ,0,0,0}, {32887,32885,32888 ,18363,18361,18364 ,0,0,0}, - {32885,32887,32886 ,18361,18363,18362 ,0,0,0}, {32889,32890,32888 ,18365,18366,18364 ,0,0,0}, - {32887,32888,32890 ,18363,18364,18366 ,0,0,0}, {32889,32891,32892 ,18365,18367,18368 ,0,0,0}, - {32892,32890,32889 ,18368,18366,18365 ,0,0,0}, {32893,32891,32894 ,18369,18367,18188 ,0,0,0}, - {32891,32893,32892 ,18367,18369,18368 ,0,0,0}, {32895,32896,32897 ,18370,18371,18372 ,0,0,0}, - {32898,32851,32899 ,18373,324,18374 ,0,0,0}, {32900,32895,32901 ,18375,18370,18376 ,0,0,0}, - {32895,32900,32896 ,18370,18375,18371 ,0,0,0}, {32900,32901,32902 ,18375,18376,18377 ,0,0,0}, - {32903,32904,32902 ,18378,18379,18377 ,0,0,0}, {32902,32901,32903 ,18377,18376,18378 ,0,0,0}, - {32904,32905,32906 ,18379,18380,18092 ,0,0,0}, {32905,32904,32903 ,18380,18379,18378 ,0,0,0}, - {32905,32907,32906 ,18380,18381,18092 ,0,0,0}, {32895,32897,32908 ,18370,18372,18382 ,0,0,0}, - {32909,32908,32910 ,18383,18382,18384 ,0,0,0}, {32897,32910,32908 ,18372,18384,18382 ,0,0,0}, - {32911,32909,32912 ,18385,18383,18386 ,0,0,0}, {32909,32910,32912 ,18383,18384,18386 ,0,0,0}, - {32911,32913,32914 ,18385,18387,18388 ,0,0,0}, {32914,32909,32911 ,18388,18383,18385 ,0,0,0}, - {32915,32913,32916 ,18389,18387,18390 ,0,0,0}, {32913,32915,32914 ,18387,18389,18388 ,0,0,0}, - {32851,32915,32899 ,324,18389,18374 ,0,0,0}, {32916,32899,32915 ,18390,18374,18389 ,0,0,0}, - {32917,32918,32919 ,18391,18392,18393 ,0,0,0}, {32898,32920,32919 ,18373,18394,18393 ,0,0,0}, - {32921,32922,32923 ,18395,18396,18397 ,0,0,0}, {32922,32918,32924 ,18396,18392,18398 ,0,0,0}, - {32925,32926,32927 ,18399,18400,18401 ,0,0,0}, {32928,32929,32925 ,18402,18403,18399 ,0,0,0}, - {32930,32931,32932 ,18404,18405,18406 ,0,0,0}, {32931,32930,32933 ,18405,18404,18407 ,0,0,0}, - {32934,32935,32932 ,82,18408,18406 ,0,0,0}, {32930,32932,32935 ,18404,18406,18408 ,0,0,0}, - {32936,32935,32934 ,18103,18408,82 ,0,0,0}, {32927,32933,32925 ,18401,18407,18399 ,0,0,0}, - {32927,32931,32933 ,18401,18405,18407 ,0,0,0}, {32922,32921,32928 ,18396,18395,18402 ,0,0,0}, - {32925,32929,32926 ,18399,18403,18400 ,0,0,0}, {32928,32921,32929 ,18402,18395,18403 ,0,0,0}, - {32918,32917,32924 ,18392,18391,18398 ,0,0,0}, {32923,32922,32924 ,18397,18396,18398 ,0,0,0}, - {32919,32851,32898 ,18393,324,18373 ,0,0,0}, {32917,32919,32920 ,18391,18393,18394 ,0,0,0}, - {32937,32808,32938 ,2197,2197,2197 ,0,0,0}, {32939,32940,32808 ,2197,2197,2197 ,0,0,0}, - {32940,32938,32808 ,2197,2197,2197 ,0,0,0}, {32938,32941,32937 ,2197,2197,2197 ,0,0,0}, - {32942,32943,32845 ,730,730,730 ,0,0,0}, {32798,32944,32945 ,730,730,730 ,0,0,0}, - {32946,32947,32835 ,730,730,730 ,0,0,0}, {32843,32947,32840 ,730,730,730 ,0,0,0}, - {32811,32948,32834 ,730,730,730 ,0,0,0}, {32834,32949,32831 ,730,730,730 ,0,0,0}, - {32950,32837,32838 ,730,730,730 ,0,0,0}, {32830,32951,32813 ,730,730,730 ,0,0,0}, - {32827,32952,32830 ,730,730,730 ,0,0,0}, {32953,32952,32825 ,730,730,730 ,0,0,0}, - {32825,32826,32953 ,730,730,730 ,0,0,0}, {32814,32816,32954 ,730,730,730 ,0,0,0}, - {32955,32826,32824 ,730,730,730 ,0,0,0}, {32809,32956,32957 ,730,730,730 ,0,0,0}, - {32958,32816,32818 ,730,730,730 ,0,0,0}, {31689,32818,32820 ,730,730,730 ,0,0,0}, - {31689,32959,32806 ,730,730,730 ,0,0,0}, {32960,32801,32961 ,730,730,730 ,0,0,0}, - {32804,32806,32962 ,730,730,730 ,0,0,0}, {32804,32962,32961 ,730,730,730 ,0,0,0}, - {32960,32963,32800 ,730,730,730 ,0,0,0}, {32798,32800,32944 ,730,730,730 ,0,0,0}, - {32810,32957,32824 ,730,730,730 ,0,0,0}, {32795,32945,32964 ,730,730,730 ,0,0,0}, - {32773,32794,32965 ,730,730,730 ,0,0,0}, {32773,32966,32452 ,730,730,730 ,0,0,0}, - {32966,32967,32452 ,730,730,730 ,0,0,0}, {32794,32964,32968 ,730,730,730 ,0,0,0}, - {32969,32775,32967 ,730,730,730 ,0,0,0}, {32778,32969,32970 ,730,730,730 ,0,0,0}, - {32971,32780,32972 ,730,730,730 ,0,0,0}, {32780,32778,32972 ,730,730,730 ,0,0,0}, - {32784,32971,32973 ,730,730,730 ,0,0,0}, {32974,32787,32785 ,730,730,730 ,0,0,0}, - {32975,32782,32973 ,730,730,730 ,0,0,0}, {32974,32785,32976 ,730,730,730 ,0,0,0}, - {32948,32811,31660 ,730,730,730 ,0,0,0}, {32790,32787,32977 ,730,730,730 ,0,0,0}, - {32974,32977,32787 ,730,730,730 ,0,0,0}, {32790,32978,31675 ,730,730,730 ,0,0,0}, - {32978,32790,32977 ,730,730,730 ,0,0,0}, {31675,32848,32846 ,730,730,730 ,0,0,0}, - {32978,32848,31675 ,730,730,730 ,0,0,0}, {32979,32942,32841 ,730,730,730 ,0,0,0}, - {31660,32811,32813 ,730,730,730 ,0,0,0}, {32975,32976,32782 ,730,730,730 ,0,0,0}, - {32976,32785,32782 ,730,730,730 ,0,0,0}, {32784,32973,32782 ,730,730,730 ,0,0,0}, - {32780,32971,32784 ,730,730,730 ,0,0,0}, {32970,32972,32778 ,730,730,730 ,0,0,0}, - {32775,32969,32778 ,730,730,730 ,0,0,0}, {32452,32967,32775 ,730,730,730 ,0,0,0}, - {32965,32966,32773 ,730,730,730 ,0,0,0}, {32968,32965,32794 ,730,730,730 ,0,0,0}, - {32795,32964,32794 ,730,730,730 ,0,0,0}, {32798,32945,32795 ,730,730,730 ,0,0,0}, - {32963,32944,32800 ,730,730,730 ,0,0,0}, {32801,32960,32800 ,730,730,730 ,0,0,0}, - {32804,32961,32801 ,730,730,730 ,0,0,0}, {32959,32962,32806 ,730,730,730 ,0,0,0}, - {32820,32959,31689 ,730,730,730 ,0,0,0}, {32958,32818,31689 ,730,730,730 ,0,0,0}, - {32954,32816,32958 ,730,730,730 ,0,0,0}, {32809,32814,32956 ,730,730,730 ,0,0,0}, - {32814,32954,32956 ,730,730,730 ,0,0,0}, {32810,32809,32957 ,730,730,730 ,0,0,0}, - {32955,32824,32957 ,730,730,730 ,0,0,0}, {32953,32826,32955 ,730,730,730 ,0,0,0}, - {32827,32825,32952 ,730,730,730 ,0,0,0}, {32951,32830,32952 ,730,730,730 ,0,0,0}, - {31660,32813,32951 ,730,730,730 ,0,0,0}, {32834,32948,32949 ,730,730,730 ,0,0,0}, - {32838,32831,32949 ,730,730,730 ,0,0,0}, {32946,32837,32950 ,730,730,730 ,0,0,0}, - {32950,32838,32949 ,730,730,730 ,0,0,0}, {32947,32843,32835 ,730,730,730 ,0,0,0}, - {32946,32835,32837 ,730,730,730 ,0,0,0}, {32947,32979,32840 ,730,730,730 ,0,0,0}, - {32841,32942,32845 ,730,730,730 ,0,0,0}, {32840,32979,32841 ,730,730,730 ,0,0,0}, - {32845,32943,32846 ,730,730,730 ,0,0,0}, {31675,32846,32943 ,730,730,730 ,0,0,0}, - {32980,32981,32925 ,18409,18410,18410 ,0,0,0}, {32981,32852,32856 ,18410,1433,1433 ,0,0,0}, - {32925,32981,32856 ,18410,18410,1433 ,0,0,0}, {32925,32982,32980 ,18410,18409,18409 ,0,0,0}, - {32854,32983,32895 ,2162,18411,18411 ,0,0,0}, {32983,32937,32941 ,18411,2162,2162 ,0,0,0}, - {32895,32983,32941 ,18411,18411,2162 ,0,0,0}, {32895,32855,32854 ,18411,2162,2162 ,0,0,0}, - {31675,32943,32984 ,18353,18412,18413 ,0,0,0}, {32947,32985,32979 ,18414,18415,18416 ,0,0,0}, - {32986,32987,32942 ,18417,18418,18419 ,0,0,0}, {32988,32949,32989 ,18420,18421,18422 ,0,0,0}, - {32946,32950,32990 ,18423,18239,18424 ,0,0,0}, {32951,32991,32992 ,18425,18426,18427 ,0,0,0}, - {32992,32993,31660 ,18427,324,18428 ,0,0,0}, {32955,32994,32953 ,18429,18430,18431 ,0,0,0}, - {32995,32952,32953 ,18432,18433,18431 ,0,0,0}, {32957,32996,32997 ,18434,18435,18436 ,0,0,0}, - {32997,32955,32957 ,18436,18429,18434 ,0,0,0}, {32996,32956,32998 ,18435,18437,18438 ,0,0,0}, - {32956,32996,32957 ,18437,18435,18434 ,0,0,0}, {32999,32998,32954 ,18439,18438,18440 ,0,0,0}, - {32956,32954,32998 ,18437,18440,18438 ,0,0,0}, {32958,32807,32999 ,18441,18256,18439 ,0,0,0}, - {32999,32954,32958 ,18439,18440,18441 ,0,0,0}, {31689,32807,32958 ,18002,18256,18441 ,0,0,0}, - {32997,32994,32955 ,18436,18430,18429 ,0,0,0}, {32995,32953,32994 ,18432,18431,18430 ,0,0,0}, - {32995,32991,32952 ,18432,18426,18433 ,0,0,0}, {32989,32948,32993 ,18422,18442,324 ,0,0,0}, - {32951,32992,31660 ,18425,18427,18428 ,0,0,0}, {32952,32991,32951 ,18433,18426,18425 ,0,0,0}, - {32993,32948,31660 ,324,18442,18428 ,0,0,0}, {32948,32989,32949 ,18442,18422,18421 ,0,0,0}, - {32990,32950,32988 ,18424,18239,18420 ,0,0,0}, {32950,32949,32988 ,18239,18421,18420 ,0,0,0}, - {32946,33000,32947 ,18423,18443,18414 ,0,0,0}, {33000,32946,32990 ,18443,18423,18424 ,0,0,0}, - {32986,32979,32985 ,18417,18416,18415 ,0,0,0}, {33000,32985,32947 ,18443,18415,18414 ,0,0,0}, - {32942,32987,32943 ,18419,18418,18412 ,0,0,0}, {32979,32986,32942 ,18416,18417,18419 ,0,0,0}, - {31675,32984,32791 ,18353,18413,3345 ,0,0,0}, {32943,32987,32984 ,18412,18418,18413 ,0,0,0}, - {32812,33001,32939 ,18444,18444,18113 ,0,0,0}, {32812,33002,33003 ,18444,18113,18113 ,0,0,0}, - {32812,33003,33001 ,18444,18113,18444 ,0,0,0}, {33001,32940,32939 ,18444,18113,18113 ,0,0,0}, - {32890,32892,33004 ,7758,7880,7627 ,0,0,0}, {32898,32899,33005 ,726,726,7627 ,0,0,0}, - {32884,33006,33007 ,726,18445,7755 ,0,0,0}, {33008,32886,33009 ,8017,7627,7627 ,0,0,0}, - {33010,32857,33011 ,18446,7758,18447 ,0,0,0}, {33011,32880,33012 ,18447,7264,7249 ,0,0,0}, - {33013,32863,33014 ,18448,7627,18449 ,0,0,0}, {33007,33015,32881 ,7755,8018,7755 ,0,0,0}, - {32860,33016,33014 ,7761,18450,18449 ,0,0,0}, {33017,32865,32863 ,18451,726,7627 ,0,0,0}, - {32865,33017,33018 ,726,18451,726 ,0,0,0}, {32858,33010,33016 ,7755,18446,18450 ,0,0,0}, - {33019,32869,33018 ,7264,7627,726 ,0,0,0}, {32867,33020,32870 ,7758,7264,7880 ,0,0,0}, - {33021,33022,32872 ,726,7880,7627 ,0,0,0}, {33023,32900,33024 ,726,7627,726 ,0,0,0}, - {33025,32911,32912 ,726,7627,7627 ,0,0,0}, {33022,33026,32875 ,7880,7627,7880 ,0,0,0}, - {32876,32932,33027 ,7627,7627,726 ,0,0,0}, {32931,33028,33027 ,7627,7627,726 ,0,0,0}, - {32929,33029,32926 ,7625,7627,7627 ,0,0,0}, {32927,32926,33030 ,726,7627,726 ,0,0,0}, - {32910,33031,32912 ,7627,726,7627 ,0,0,0}, {33028,32931,32927 ,7627,7627,726 ,0,0,0}, - {33032,32923,32924 ,7627,726,726 ,0,0,0}, {32921,32923,33033 ,7627,726,7627 ,0,0,0}, - {32898,33005,33034 ,726,7627,726 ,0,0,0}, {33034,33035,32920 ,726,7627,7627 ,0,0,0}, - {33036,32916,32913 ,7627,726,726 ,0,0,0}, {33035,32924,32917 ,7627,726,726 ,0,0,0}, - {33036,32911,33025 ,7627,7627,726 ,0,0,0}, {32916,33037,32899 ,726,726,726 ,0,0,0}, - {33029,32921,33033 ,7627,7627,7627 ,0,0,0}, {32910,32897,33038 ,7627,7625,726 ,0,0,0}, - {33023,32896,32900 ,726,726,7627 ,0,0,0}, {33024,32900,32902 ,726,7627,726 ,0,0,0}, - {32896,33023,33038 ,726,726,726 ,0,0,0}, {33026,32934,32876 ,7627,7627,7627 ,0,0,0}, - {33039,32902,32904 ,726,726,7627 ,0,0,0}, {32902,33039,33024 ,726,726,726 ,0,0,0}, - {32893,32904,32906 ,7627,7627,7627 ,0,0,0}, {32893,33039,32904 ,7627,726,7627 ,0,0,0}, - {32906,33040,32893 ,7627,7758,7627 ,0,0,0}, {33041,33009,32887 ,7758,7627,7758 ,0,0,0}, - {33019,33042,32867 ,7264,7761,7758 ,0,0,0}, {33010,32858,32857 ,18446,7755,7758 ,0,0,0}, - {32897,32896,33038 ,7625,726,726 ,0,0,0}, {33031,32910,33038 ,726,7627,726 ,0,0,0}, - {33025,32912,33031 ,726,7627,726 ,0,0,0}, {32913,32911,33036 ,726,7627,7627 ,0,0,0}, - {33037,32916,33036 ,726,726,7627 ,0,0,0}, {33005,32899,33037 ,7627,726,726 ,0,0,0}, - {32920,32898,33034 ,7627,726,726 ,0,0,0}, {32917,32920,33035 ,726,7627,7627 ,0,0,0}, - {33032,32924,33035 ,7627,726,7627 ,0,0,0}, {33033,32923,33032 ,7627,726,7627 ,0,0,0}, - {32929,32921,33029 ,7625,7627,7627 ,0,0,0}, {33030,32926,33029 ,726,7627,7627 ,0,0,0}, - {33028,32927,33030 ,7627,726,726 ,0,0,0}, {32932,32931,33027 ,7627,7627,726 ,0,0,0}, - {32934,32932,32876 ,7627,7627,7627 ,0,0,0}, {32875,33026,32876 ,7880,7627,7627 ,0,0,0}, - {32872,33022,32875 ,7627,7880,7880 ,0,0,0}, {33020,33021,32870 ,7264,726,7880 ,0,0,0}, - {33021,32872,32870 ,726,7627,7880 ,0,0,0}, {33042,33020,32867 ,7761,7264,7758 ,0,0,0}, - {32869,33019,32867 ,7627,7264,7758 ,0,0,0}, {32865,33018,32869 ,726,726,7627 ,0,0,0}, - {33013,33017,32863 ,18448,18451,7627 ,0,0,0}, {32860,33014,32863 ,7761,18449,7627 ,0,0,0}, - {32858,33016,32860 ,7755,18450,7761 ,0,0,0}, {33011,32857,32880 ,18447,7758,7264 ,0,0,0}, - {33015,33012,32880 ,8018,7249,7264 ,0,0,0}, {32884,33007,32881 ,726,7755,7755 ,0,0,0}, - {32881,33015,32880 ,7755,8018,7264 ,0,0,0}, {32886,33006,32884 ,7627,18445,726 ,0,0,0}, - {32886,32887,33009 ,7627,7758,7627 ,0,0,0}, {32886,33008,33006 ,7627,8017,18445 ,0,0,0}, - {32887,32890,33041 ,7758,7758,7758 ,0,0,0}, {33004,32892,33040 ,7627,7880,7758 ,0,0,0}, - {33041,32890,33004 ,7758,7758,7627 ,0,0,0}, {32893,33040,32892 ,7627,7758,7880 ,0,0,0}, - {33002,32839,33043 ,1398,18452,18452 ,0,0,0}, {32980,32982,32839 ,18453,18453,18452 ,0,0,0}, - {32982,33043,32839 ,18453,18452,18452 ,0,0,0}, {33043,33003,33002 ,18452,1398,1398 ,0,0,0}, - {33044,32906,32907 ,18454,18092,18121 ,0,0,0}, {33009,33041,32938 ,18455,18456,18457 ,0,0,0}, - {33045,33004,33046 ,18458,18459,18460 ,0,0,0}, {33008,33047,33006 ,18461,18462,18463 ,0,0,0}, - {33048,33001,33010 ,18464,7309,18465 ,0,0,0}, {33049,33012,33015 ,18466,18467,18468 ,0,0,0}, - {33018,33017,33050 ,18469,18470,18471 ,0,0,0}, {33013,33014,33051 ,18472,18473,18474 ,0,0,0}, - {33019,33052,33042 ,18475,18476,18477 ,0,0,0}, {33043,33021,33020 ,18478,18479,18480 ,0,0,0}, - {33042,33043,33020 ,18477,18478,18480 ,0,0,0}, {33021,33053,33022 ,18479,18481,18482 ,0,0,0}, - {33053,33021,33043 ,18481,18479,18478 ,0,0,0}, {33053,33054,33022 ,18481,18483,18482 ,0,0,0}, - {33055,33026,33054 ,18484,18485,18483 ,0,0,0}, {33022,33054,33026 ,18482,18483,18485 ,0,0,0}, - {33055,32936,32934 ,18484,18486,82 ,0,0,0}, {32934,33026,33055 ,82,18485,18484 ,0,0,0}, - {33050,33052,33019 ,18471,18476,18475 ,0,0,0}, {33042,33052,33043 ,18477,18476,18478 ,0,0,0}, - {33017,33056,33050 ,18470,18487,18471 ,0,0,0}, {33019,33018,33050 ,18475,18469,18471 ,0,0,0}, - {33051,33056,33013 ,18474,18487,18472 ,0,0,0}, {33017,33013,33056 ,18470,18472,18487 ,0,0,0}, - {33051,33016,33001 ,18474,18488,7309 ,0,0,0}, {33014,33016,33051 ,18473,18488,18474 ,0,0,0}, - {33048,33010,33011 ,18464,18465,18489 ,0,0,0}, {33001,33016,33010 ,7309,18488,18465 ,0,0,0}, - {33012,33049,33048 ,18467,18466,18464 ,0,0,0}, {33048,33011,33012 ,18464,18489,18467 ,0,0,0}, - {33007,33057,33015 ,18490,18491,18468 ,0,0,0}, {33057,33049,33015 ,18491,18466,18468 ,0,0,0}, - {33057,33006,33047 ,18491,18463,18462 ,0,0,0}, {33006,33057,33007 ,18463,18491,18490 ,0,0,0}, - {33008,33009,32938 ,18461,18455,18457 ,0,0,0}, {33008,32938,33047 ,18461,18457,18462 ,0,0,0}, - {33041,33004,33045 ,18456,18459,18458 ,0,0,0}, {33041,33045,32938 ,18456,18458,18457 ,0,0,0}, - {33046,33040,33044 ,18460,18492,18454 ,0,0,0}, {33004,33040,33046 ,18459,18492,18460 ,0,0,0}, - {32906,33044,33040 ,18092,18454,18492 ,0,0,0}, {32930,32982,32933 ,7792,726,7658 ,0,0,0}, - {32982,32925,32933 ,726,726,7658 ,0,0,0}, {32936,32982,32935 ,7664,726,7662 ,0,0,0}, - {32982,32930,32935 ,726,7792,7662 ,0,0,0}, {33054,32982,33055 ,7662,726,5488 ,0,0,0}, - {32982,32936,33055 ,726,7664,5488 ,0,0,0}, {33043,32982,33053 ,726,726,726 ,0,0,0}, - {32982,33054,33053 ,726,7662,726 ,0,0,0}, {33057,32940,33049 ,726,726,17470 ,0,0,0}, - {33049,32940,33048 ,17470,726,7628 ,0,0,0}, {32940,33001,33048 ,726,726,7628 ,0,0,0}, - {32940,33047,32938 ,726,726,726 ,0,0,0}, {32940,33057,33047 ,726,726,726 ,0,0,0}, - {32908,32855,32895 ,726,726,726 ,0,0,0}, {32914,32855,32909 ,7661,726,7659 ,0,0,0}, - {32855,32908,32909 ,726,726,7659 ,0,0,0}, {32851,32855,32915 ,7661,726,7661 ,0,0,0}, - {32855,32914,32915 ,726,7661,7661 ,0,0,0}, {32856,32919,32918 ,7660,7660,7660 ,0,0,0}, - {32851,32919,32856 ,726,7660,7660 ,0,0,0}, {32856,32928,32925 ,7660,726,726 ,0,0,0}, - {32856,32922,32928 ,7660,7658,726 ,0,0,0}, {32918,32922,32856 ,7660,7658,7660 ,0,0,0}, - {33043,33052,33003 ,726,726,726 ,0,0,0}, {33056,33003,33050 ,726,726,7661 ,0,0,0}, - {33052,33050,33003 ,726,7661,726 ,0,0,0}, {33051,33001,33003 ,726,726,726 ,0,0,0}, - {33051,33003,33056 ,726,726,726 ,0,0,0}, {33045,32941,32938 ,726,726,726 ,0,0,0}, - {33044,32941,33046 ,726,726,726 ,0,0,0}, {32941,33045,33046 ,726,726,726 ,0,0,0}, - {32905,32941,32907 ,726,726,726 ,0,0,0}, {32941,33044,32907 ,726,726,726 ,0,0,0}, - {32901,32941,32903 ,726,726,7660 ,0,0,0}, {32941,32905,32903 ,726,726,7660 ,0,0,0}, - {32895,32941,32901 ,726,726,726 ,0,0,0}, {32891,32889,33058 ,726,726,7583 ,0,0,0}, - {33059,33060,33061 ,726,726,726 ,0,0,0}, {33062,33059,32894 ,726,726,726 ,0,0,0}, - {33058,33063,32891 ,7583,7583,726 ,0,0,0}, {33064,33065,33061 ,726,726,726 ,0,0,0}, - {33066,33067,33060 ,726,726,726 ,0,0,0}, {33064,33061,33067 ,726,726,726 ,0,0,0}, - {33060,33067,33061 ,726,726,726 ,0,0,0}, {33061,33068,33059 ,726,726,726 ,0,0,0}, - {32891,33062,32894 ,726,726,726 ,0,0,0}, {32894,33059,33068 ,726,726,726 ,0,0,0}, - {33058,32889,32888 ,7583,726,726 ,0,0,0}, {32891,33063,33062 ,726,7583,726 ,0,0,0}, - {33069,32888,32885 ,7583,726,726 ,0,0,0}, {32888,33069,33058 ,726,7583,7583 ,0,0,0}, - {32885,33070,33071 ,726,726,726 ,0,0,0}, {33069,32885,33071 ,7583,726,726 ,0,0,0}, - {32883,33070,32885 ,726,726,726 ,0,0,0}, {33070,32882,33072 ,726,726,726 ,0,0,0}, - {32882,33070,32883 ,726,726,726 ,0,0,0}, {32882,32879,33072 ,726,726,726 ,0,0,0}, - {33073,32879,33074 ,726,726,5489 ,0,0,0}, {33073,33072,32879 ,726,726,726 ,0,0,0}, - {33074,32878,32859 ,5489,7583,726 ,0,0,0}, {32879,32878,33074 ,726,7583,5489 ,0,0,0}, - {32862,32877,32859 ,7583,7583,726 ,0,0,0}, {33074,32859,32877 ,5489,726,7583 ,0,0,0}, - {32866,32873,32861 ,7583,7583,726 ,0,0,0}, {32861,32864,32866 ,726,726,7583 ,0,0,0}, - {32873,32868,32871 ,7583,7583,726 ,0,0,0}, {32873,32862,32861 ,7583,7583,726 ,0,0,0}, - {32873,32874,32862 ,7583,5489,7583 ,0,0,0}, {32873,32866,32868 ,7583,7583,7583 ,0,0,0}, - {32862,32874,32877 ,7583,5489,7583 ,0,0,0}, {32876,33027,33074 ,35,18493,18494 ,0,0,0}, - {33029,33070,33030 ,18495,18496,18497 ,0,0,0}, {33072,33073,33028 ,18498,18499,18500 ,0,0,0}, - {33058,33035,33063 ,18501,18502,18503 ,0,0,0}, {33033,33032,33069 ,18504,18505,18506 ,0,0,0}, - {33037,33060,33059 ,18507,18508,18509 ,0,0,0}, {33059,33062,33005 ,18509,18510,18511 ,0,0,0}, - {33031,33067,33025 ,18512,18513,18514 ,0,0,0}, {33066,33036,33025 ,18515,18516,18514 ,0,0,0}, - {33038,33065,33064 ,18517,18518,18519 ,0,0,0}, {33064,33031,33038 ,18519,18512,18517 ,0,0,0}, - {33065,33023,33061 ,18518,18520,18521 ,0,0,0}, {33023,33065,33038 ,18520,18518,18517 ,0,0,0}, - {33068,33061,33024 ,18522,18521,18523 ,0,0,0}, {33023,33024,33061 ,18520,18523,18521 ,0,0,0}, - {33039,32894,33068 ,18524,18188,18522 ,0,0,0}, {33068,33024,33039 ,18522,18523,18524 ,0,0,0}, - {32893,32894,33039 ,18188,18188,18524 ,0,0,0}, {33064,33067,33031 ,18519,18513,18512 ,0,0,0}, - {33066,33025,33067 ,18515,18514,18513 ,0,0,0}, {33066,33060,33036 ,18515,18508,18516 ,0,0,0}, - {33063,33034,33062 ,18503,18525,18510 ,0,0,0}, {33037,33059,33005 ,18507,18509,18511 ,0,0,0}, - {33036,33060,33037 ,18516,18508,18507 ,0,0,0}, {33062,33034,33005 ,18510,18525,18511 ,0,0,0}, - {33034,33063,33035 ,18525,18503,18502 ,0,0,0}, {33069,33032,33058 ,18506,18505,18501 ,0,0,0}, - {33032,33035,33058 ,18505,18502,18501 ,0,0,0}, {33033,33071,33029 ,18504,18526,18495 ,0,0,0}, - {33071,33033,33069 ,18526,18504,18506 ,0,0,0}, {33072,33030,33070 ,18498,18497,18496 ,0,0,0}, - {33071,33070,33029 ,18526,18496,18495 ,0,0,0}, {33028,33073,33027 ,18500,18499,18493 ,0,0,0}, - {33030,33072,33028 ,18497,18498,18500 ,0,0,0}, {32876,33074,32877 ,35,18494,763 ,0,0,0}, - {33027,33073,33074 ,18493,18499,18494 ,0,0,0}, {33075,32820,32821 ,18527,126,18026 ,0,0,0}, - {32960,32961,32983 ,18528,18529,18530 ,0,0,0}, {33076,32962,33077 ,18531,18532,18533 ,0,0,0}, - {32963,33078,32944 ,18534,18535,18536 ,0,0,0}, {33079,32853,32966 ,18537,10001,18538 ,0,0,0}, - {33080,32968,32964 ,18539,18540,18541 ,0,0,0}, {32971,32972,33081 ,18542,18543,18544 ,0,0,0}, - {32970,32969,33082 ,18545,18546,18547 ,0,0,0}, {32973,33083,32975 ,18548,18549,18550 ,0,0,0}, - {32981,32974,32976 ,18551,18552,18553 ,0,0,0}, {32975,32981,32976 ,18550,18551,18553 ,0,0,0}, - {32974,33084,32977 ,18552,18554,18555 ,0,0,0}, {33084,32974,32981 ,18554,18552,18551 ,0,0,0}, - {33084,33085,32977 ,18554,18556,18555 ,0,0,0}, {33086,32978,33085 ,18557,18558,18556 ,0,0,0}, - {32977,33085,32978 ,18555,18556,18558 ,0,0,0}, {33086,32850,32848 ,18557,5000,18205 ,0,0,0}, - {32848,32978,33086 ,18205,18558,18557 ,0,0,0}, {33081,33083,32973 ,18544,18549,18548 ,0,0,0}, - {32975,33083,32981 ,18550,18549,18551 ,0,0,0}, {32972,33087,33081 ,18543,18559,18544 ,0,0,0}, - {32973,32971,33081 ,18548,18542,18544 ,0,0,0}, {33082,33087,32970 ,18547,18559,18545 ,0,0,0}, - {32972,32970,33087 ,18543,18545,18559 ,0,0,0}, {33082,32967,32853 ,18547,18560,10001 ,0,0,0}, - {32969,32967,33082 ,18546,18560,18547 ,0,0,0}, {33079,32966,32965 ,18537,18538,18561 ,0,0,0}, - {32853,32967,32966 ,10001,18560,18538 ,0,0,0}, {32968,33080,33079 ,18540,18539,18537 ,0,0,0}, - {33079,32965,32968 ,18537,18561,18540 ,0,0,0}, {32945,33088,32964 ,18562,18563,18541 ,0,0,0}, - {33088,33080,32964 ,18563,18539,18541 ,0,0,0}, {33088,32944,33078 ,18563,18536,18535 ,0,0,0}, - {32944,33088,32945 ,18536,18563,18562 ,0,0,0}, {32963,32960,32983 ,18534,18528,18530 ,0,0,0}, - {32963,32983,33078 ,18534,18530,18535 ,0,0,0}, {32961,32962,33076 ,18529,18532,18531 ,0,0,0}, - {32961,33076,32983 ,18529,18531,18530 ,0,0,0}, {33077,32959,33075 ,18533,18564,18527 ,0,0,0}, - {32962,32959,33077 ,18532,18564,18533 ,0,0,0}, {32820,33075,32959 ,126,18527,18564 ,0,0,0}, - {32854,33088,33078 ,17561,17561,730 ,0,0,0}, {33079,32854,32853 ,730,17561,730 ,0,0,0}, - {33088,32854,33080 ,17561,17561,730 ,0,0,0}, {32854,33079,33080 ,17561,730,730 ,0,0,0}, - {33078,32983,32854 ,730,7376,17561 ,0,0,0}, {32847,32980,32839 ,18207,730,730 ,0,0,0}, - {32980,33086,33085 ,730,730,730 ,0,0,0}, {32849,32980,32844 ,17561,730,7433 ,0,0,0}, - {32980,32847,32844 ,730,18207,7433 ,0,0,0}, {33086,32980,32850 ,730,730,17561 ,0,0,0}, - {32980,32849,32850 ,730,17561,17561 ,0,0,0}, {33085,33084,32980 ,730,7433,730 ,0,0,0}, - {33084,32981,32980 ,7433,730,730 ,0,0,0}, {32823,32939,32822 ,7017,730,730 ,0,0,0}, - {32939,32808,32822 ,730,11465,730 ,0,0,0}, {32829,32939,32828 ,18565,730,730 ,0,0,0}, - {32939,32823,32828 ,730,7017,730 ,0,0,0}, {32812,32939,32829 ,18566,730,18565 ,0,0,0}, - {33087,32852,33081 ,730,7376,17561 ,0,0,0}, {33083,33081,32852 ,730,17561,7376 ,0,0,0}, - {32981,33083,32852 ,730,730,7376 ,0,0,0}, {33082,32853,32852 ,7376,730,7376 ,0,0,0}, - {33082,32852,33087 ,7376,7376,730 ,0,0,0}, {32833,32832,33002 ,18207,18207,9877 ,0,0,0}, - {32812,32833,33002 ,18567,18207,9877 ,0,0,0}, {32836,32842,33002 ,730,9878,9877 ,0,0,0}, - {32836,33002,32832 ,730,9877,18207 ,0,0,0}, {32839,33002,32842 ,730,9877,9878 ,0,0,0}, - {32983,33076,32937 ,730,730,730 ,0,0,0}, {32937,33075,32821 ,730,730,9877 ,0,0,0}, - {33075,32937,33077 ,730,730,730 ,0,0,0}, {32937,33076,33077 ,730,730,730 ,0,0,0}, - {32821,32819,32937 ,9877,730,730 ,0,0,0}, {32937,32817,32815 ,730,9878,730 ,0,0,0}, - {32819,32817,32937 ,730,9878,730 ,0,0,0}, {32815,32808,32937 ,730,730,730 ,0,0,0}, - {32984,32987,32793 ,730,730,9878 ,0,0,0}, {32777,32776,32788 ,730,730,730 ,0,0,0}, - {32774,32777,32791 ,9875,730,730 ,0,0,0}, {32793,32792,32984 ,9878,730,730 ,0,0,0}, - {32783,32786,32788 ,730,730,730 ,0,0,0}, {32779,32781,32776 ,730,730,730 ,0,0,0}, - {32783,32788,32781 ,730,730,730 ,0,0,0}, {32776,32781,32788 ,730,730,730 ,0,0,0}, - {32788,32789,32777 ,730,730,730 ,0,0,0}, {32984,32774,32791 ,730,9875,730 ,0,0,0}, - {32791,32777,32789 ,730,730,730 ,0,0,0}, {32793,32987,32986 ,9878,730,730 ,0,0,0}, - {32984,32792,32774 ,730,730,9875 ,0,0,0}, {32796,32986,32985 ,9878,730,730 ,0,0,0}, - {32986,32796,32793 ,730,9878,9878 ,0,0,0}, {32985,32799,32797 ,730,730,730 ,0,0,0}, - {32796,32985,32797 ,9878,730,730 ,0,0,0}, {33000,32799,32985 ,730,730,730 ,0,0,0}, - {32799,32990,32802 ,730,9875,9878 ,0,0,0}, {32990,32799,33000 ,9875,730,730 ,0,0,0}, - {32990,32988,32802 ,9875,730,9878 ,0,0,0}, {32803,32988,32805 ,9878,730,730 ,0,0,0}, - {32803,32802,32988 ,9878,9878,730 ,0,0,0}, {32805,32989,32993 ,730,9875,9875 ,0,0,0}, - {32988,32989,32805 ,730,9875,730 ,0,0,0}, {32992,32807,32993 ,730,9878,9875 ,0,0,0}, - {32805,32993,32807 ,730,9875,9878 ,0,0,0}, {32994,32998,32991 ,9878,9878,730 ,0,0,0}, - {32991,32995,32994 ,730,9878,9878 ,0,0,0}, {32998,32997,32996 ,9878,9878,9877 ,0,0,0}, - {32998,32992,32991 ,9878,730,730 ,0,0,0}, {32998,32999,32992 ,9878,730,730 ,0,0,0}, - {32998,32994,32997 ,9878,9878,9878 ,0,0,0}, {32992,32999,32807 ,730,730,9878 ,0,0,0} -// M3abstandhalter10mm.prt - , {33089,32518,33090 ,18258,18259,18260 ,0,0,0}, {33091,33092,33093 ,18261,18262,18263 ,0,0,0}, - {33090,32518,33093 ,18260,18259,18263 ,0,0,0}, {33092,33091,33094 ,18262,18261,18264 ,0,0,0}, - {33094,33095,33092 ,18264,18265,18262 ,0,0,0}, {33095,33096,33097 ,18265,18266,18267 ,0,0,0}, - {33094,33096,33095 ,18264,18266,18265 ,0,0,0}, {33091,33093,32518 ,18261,18263,18259 ,0,0,0}, - {33098,33099,33100 ,18268,18269,18270 ,0,0,0}, {33099,33097,33100 ,18269,18267,18270 ,0,0,0}, - {33098,33101,33102 ,18268,18271,18272 ,0,0,0}, {33102,33099,33098 ,18272,18269,18268 ,0,0,0}, - {33101,33103,33104 ,18271,18273,18274 ,0,0,0}, {33101,33104,33102 ,18271,18274,18272 ,0,0,0}, - {33096,33100,33097 ,18266,18270,18267 ,0,0,0}, {33105,33104,33103 ,18275,18274,18273 ,0,0,0}, - {33106,31741,33107 ,18276,18277,126 ,0,0,0}, {33106,33107,33105 ,18276,126,18275 ,0,0,0}, - {33103,33106,33105 ,18273,18276,18275 ,0,0,0}, {33089,33090,33108 ,18258,18260,18278 ,0,0,0}, - {33108,33109,33110 ,18278,18279,18280 ,0,0,0}, {33110,33089,33108 ,18280,18258,18278 ,0,0,0}, - {33111,33109,33112 ,18281,18279,18282 ,0,0,0}, {33109,33111,33110 ,18279,18281,18280 ,0,0,0}, - {33113,33114,33112 ,18283,18284,18282 ,0,0,0}, {33111,33112,33114 ,18281,18282,18284 ,0,0,0}, - {33113,33115,33116 ,18283,18285,18286 ,0,0,0}, {33116,33114,33113 ,18286,18284,18283 ,0,0,0}, - {33117,33115,33118 ,18287,18285,18288 ,0,0,0}, {33115,33117,33116 ,18285,18287,18286 ,0,0,0}, - {33119,33120,33118 ,18289,18290,18288 ,0,0,0}, {33117,33118,33120 ,18287,18288,18290 ,0,0,0}, - {33119,33121,33122 ,18289,18291,18292 ,0,0,0}, {33122,33120,33119 ,18292,18290,18289 ,0,0,0}, - {31755,33121,33123 ,18293,18291,18003 ,0,0,0}, {33121,31755,33122 ,18291,18293,18292 ,0,0,0}, - {33124,33125,33126 ,18294,18295,18296 ,0,0,0}, {33127,33128,33129 ,18297,21,18298 ,0,0,0}, - {33130,33124,33131 ,18299,18294,18300 ,0,0,0}, {33124,33130,33125 ,18294,18299,18295 ,0,0,0}, - {33130,33131,33132 ,18299,18300,18301 ,0,0,0}, {33133,33134,33132 ,18302,18303,18301 ,0,0,0}, - {33132,33131,33133 ,18301,18300,18302 ,0,0,0}, {33134,33135,33136 ,18303,18304,126 ,0,0,0}, - {33135,33134,33133 ,18304,18303,18302 ,0,0,0}, {33135,33137,33136 ,18304,3135,126 ,0,0,0}, - {33124,33126,33138 ,18294,18296,18305 ,0,0,0}, {33139,33138,33140 ,18306,18305,18307 ,0,0,0}, - {33126,33140,33138 ,18296,18307,18305 ,0,0,0}, {33141,33139,33142 ,18308,18306,18309 ,0,0,0}, - {33139,33140,33142 ,18306,18307,18309 ,0,0,0}, {33141,33143,33144 ,18308,18310,18311 ,0,0,0}, - {33144,33139,33141 ,18311,18306,18308 ,0,0,0}, {33145,33143,33146 ,18312,18310,18313 ,0,0,0}, - {33143,33145,33144 ,18310,18312,18311 ,0,0,0}, {33128,33145,33129 ,21,18312,18298 ,0,0,0}, - {33146,33129,33145 ,18313,18298,18312 ,0,0,0}, {33147,33148,33149 ,18314,18315,18316 ,0,0,0}, - {33127,33150,33149 ,18297,18317,18316 ,0,0,0}, {33151,33152,33153 ,18318,18319,18320 ,0,0,0}, - {33152,33148,33154 ,18319,18315,18321 ,0,0,0}, {33155,33156,33157 ,18322,18323,18324 ,0,0,0}, - {33158,33159,33155 ,18325,18326,18322 ,0,0,0}, {33160,33161,33162 ,18327,18328,18329 ,0,0,0}, - {33161,33160,33163 ,18328,18327,18330 ,0,0,0}, {33164,33165,33162 ,18037,18331,18329 ,0,0,0}, - {33160,33162,33165 ,18327,18329,18331 ,0,0,0}, {33166,33165,33164 ,18038,18331,18037 ,0,0,0}, - {33157,33163,33155 ,18324,18330,18322 ,0,0,0}, {33157,33161,33163 ,18324,18328,18330 ,0,0,0}, - {33152,33151,33158 ,18319,18318,18325 ,0,0,0}, {33155,33159,33156 ,18322,18326,18323 ,0,0,0}, - {33158,33151,33159 ,18325,18318,18326 ,0,0,0}, {33148,33147,33154 ,18315,18314,18321 ,0,0,0}, - {33153,33152,33154 ,18320,18319,18321 ,0,0,0}, {33149,33128,33127 ,18316,21,18297 ,0,0,0}, - {33147,33149,33150 ,18314,18316,18317 ,0,0,0}, {33167,33168,33169 ,18332,1077,18332 ,0,0,0}, - {33170,33171,33169 ,18333,18333,18332 ,0,0,0}, {33171,33167,33169 ,18333,18332,18332 ,0,0,0}, - {33167,33172,33168 ,18332,18334,1077 ,0,0,0}, {33173,33174,33175 ,18335,18336,324 ,0,0,0}, - {33176,33177,33178 ,18337,18338,18339 ,0,0,0}, {33175,33174,33178 ,324,18336,18339 ,0,0,0}, - {33177,33176,33179 ,18338,18337,18340 ,0,0,0}, {33179,33180,33177 ,18340,18341,18338 ,0,0,0}, - {33180,33181,33182 ,18341,18342,18343 ,0,0,0}, {33179,33181,33180 ,18340,18342,18341 ,0,0,0}, - {33176,33178,33174 ,18337,18339,18336 ,0,0,0}, {33183,33184,33185 ,18344,18345,18346 ,0,0,0}, - {33184,33182,33185 ,18345,18343,18346 ,0,0,0}, {33183,33186,33187 ,18344,18347,18348 ,0,0,0}, - {33187,33184,33183 ,18348,18345,18344 ,0,0,0}, {33186,33188,33189 ,18347,18349,18350 ,0,0,0}, - {33186,33189,33187 ,18347,18350,18348 ,0,0,0}, {33181,33185,33182 ,18342,18346,18343 ,0,0,0}, - {33190,33189,33188 ,18351,18350,18349 ,0,0,0}, {33191,33192,33193 ,18352,18353,126 ,0,0,0}, - {33191,33193,33190 ,18352,126,18351 ,0,0,0}, {33188,33191,33190 ,18349,18352,18351 ,0,0,0}, - {33173,33175,33194 ,18335,324,18354 ,0,0,0}, {33194,33195,33196 ,18354,18355,18356 ,0,0,0}, - {33196,33173,33194 ,18356,18335,18354 ,0,0,0}, {33197,33195,33198 ,18357,18355,18358 ,0,0,0}, - {33195,33197,33196 ,18355,18357,18356 ,0,0,0}, {33199,33200,33198 ,18359,18360,18358 ,0,0,0}, - {33197,33198,33200 ,18357,18358,18360 ,0,0,0}, {33199,33201,33202 ,18359,18361,18362 ,0,0,0}, - {33202,33200,33199 ,18362,18360,18359 ,0,0,0}, {33203,33201,33204 ,18363,18361,18364 ,0,0,0}, - {33201,33203,33202 ,18361,18363,18362 ,0,0,0}, {33205,33206,33204 ,18365,18366,18364 ,0,0,0}, - {33203,33204,33206 ,18363,18364,18366 ,0,0,0}, {33205,33207,33208 ,18365,18367,18368 ,0,0,0}, - {33208,33206,33205 ,18368,18366,18365 ,0,0,0}, {33209,33207,33210 ,18369,18367,18188 ,0,0,0}, - {33207,33209,33208 ,18367,18369,18368 ,0,0,0}, {33211,33212,33213 ,18370,18371,18372 ,0,0,0}, - {33214,33167,33215 ,18373,324,18374 ,0,0,0}, {33216,33211,33217 ,18375,18370,18376 ,0,0,0}, - {33211,33216,33212 ,18370,18375,18371 ,0,0,0}, {33216,33217,33218 ,18375,18376,18377 ,0,0,0}, - {33219,33220,33218 ,18378,18379,18377 ,0,0,0}, {33218,33217,33219 ,18377,18376,18378 ,0,0,0}, - {33220,33221,33222 ,18379,18380,18092 ,0,0,0}, {33221,33220,33219 ,18380,18379,18378 ,0,0,0}, - {33221,33223,33222 ,18380,18381,18092 ,0,0,0}, {33211,33213,33224 ,18370,18372,18382 ,0,0,0}, - {33225,33224,33226 ,18383,18382,18384 ,0,0,0}, {33213,33226,33224 ,18372,18384,18382 ,0,0,0}, - {33227,33225,33228 ,18385,18383,18386 ,0,0,0}, {33225,33226,33228 ,18383,18384,18386 ,0,0,0}, - {33227,33229,33230 ,18385,18387,18388 ,0,0,0}, {33230,33225,33227 ,18388,18383,18385 ,0,0,0}, - {33231,33229,33232 ,18389,18387,18390 ,0,0,0}, {33229,33231,33230 ,18387,18389,18388 ,0,0,0}, - {33167,33231,33215 ,324,18389,18374 ,0,0,0}, {33232,33215,33231 ,18390,18374,18389 ,0,0,0}, - {33233,33234,33235 ,18391,18392,18393 ,0,0,0}, {33214,33236,33235 ,18373,18394,18393 ,0,0,0}, - {33237,33238,33239 ,18395,18396,18397 ,0,0,0}, {33238,33234,33240 ,18396,18392,18398 ,0,0,0}, - {33241,33242,33243 ,18399,18400,18401 ,0,0,0}, {33244,33245,33241 ,18402,18403,18399 ,0,0,0}, - {33246,33247,33248 ,18404,18405,18406 ,0,0,0}, {33247,33246,33249 ,18405,18404,18407 ,0,0,0}, - {33250,33251,33248 ,82,18408,18406 ,0,0,0}, {33246,33248,33251 ,18404,18406,18408 ,0,0,0}, - {33252,33251,33250 ,18103,18408,82 ,0,0,0}, {33243,33249,33241 ,18401,18407,18399 ,0,0,0}, - {33243,33247,33249 ,18401,18405,18407 ,0,0,0}, {33238,33237,33244 ,18396,18395,18402 ,0,0,0}, - {33241,33245,33242 ,18399,18403,18400 ,0,0,0}, {33244,33237,33245 ,18402,18395,18403 ,0,0,0}, - {33234,33233,33240 ,18392,18391,18398 ,0,0,0}, {33239,33238,33240 ,18397,18396,18398 ,0,0,0}, - {33235,33167,33214 ,18393,324,18373 ,0,0,0}, {33233,33235,33236 ,18391,18393,18394 ,0,0,0}, - {33253,33124,33254 ,2197,2197,2197 ,0,0,0}, {33255,33256,33124 ,2197,2197,2197 ,0,0,0}, - {33256,33254,33124 ,2197,2197,2197 ,0,0,0}, {33254,33257,33253 ,2197,2197,2197 ,0,0,0}, - {33258,33259,33161 ,730,730,730 ,0,0,0}, {33114,33260,33261 ,730,730,730 ,0,0,0}, - {33262,33263,33151 ,730,730,730 ,0,0,0}, {33159,33263,33156 ,730,730,730 ,0,0,0}, - {33127,33264,33150 ,730,730,730 ,0,0,0}, {33150,33265,33147 ,730,730,730 ,0,0,0}, - {33266,33153,33154 ,730,730,730 ,0,0,0}, {33146,33267,33129 ,730,730,730 ,0,0,0}, - {33143,33268,33146 ,730,730,730 ,0,0,0}, {33269,33268,33141 ,730,730,730 ,0,0,0}, - {33141,33142,33269 ,730,730,730 ,0,0,0}, {33130,33132,33270 ,730,730,730 ,0,0,0}, - {33271,33142,33140 ,730,730,730 ,0,0,0}, {33125,33272,33273 ,730,730,730 ,0,0,0}, - {33274,33132,33134 ,730,730,730 ,0,0,0}, {31755,33134,33136 ,730,730,730 ,0,0,0}, - {31755,33275,33122 ,730,730,730 ,0,0,0}, {33276,33117,33277 ,730,730,730 ,0,0,0}, - {33120,33122,33278 ,730,730,730 ,0,0,0}, {33120,33278,33277 ,730,730,730 ,0,0,0}, - {33276,33279,33116 ,730,730,730 ,0,0,0}, {33114,33116,33260 ,730,730,730 ,0,0,0}, - {33126,33273,33140 ,730,730,730 ,0,0,0}, {33111,33261,33280 ,730,730,730 ,0,0,0}, - {33089,33110,33281 ,730,730,730 ,0,0,0}, {33089,33282,32518 ,730,730,730 ,0,0,0}, - {33282,33283,32518 ,730,730,730 ,0,0,0}, {33110,33280,33284 ,730,730,730 ,0,0,0}, - {33285,33091,33283 ,730,730,730 ,0,0,0}, {33094,33285,33286 ,730,730,730 ,0,0,0}, - {33287,33096,33288 ,730,730,730 ,0,0,0}, {33096,33094,33288 ,730,730,730 ,0,0,0}, - {33100,33287,33289 ,730,730,730 ,0,0,0}, {33290,33103,33101 ,730,730,730 ,0,0,0}, - {33291,33098,33289 ,730,730,730 ,0,0,0}, {33290,33101,33292 ,730,730,730 ,0,0,0}, - {33264,33127,31726 ,730,730,730 ,0,0,0}, {33106,33103,33293 ,730,730,730 ,0,0,0}, - {33290,33293,33103 ,730,730,730 ,0,0,0}, {33106,33294,31741 ,730,730,730 ,0,0,0}, - {33294,33106,33293 ,730,730,730 ,0,0,0}, {31741,33164,33162 ,730,730,730 ,0,0,0}, - {33294,33164,31741 ,730,730,730 ,0,0,0}, {33295,33258,33157 ,730,730,730 ,0,0,0}, - {31726,33127,33129 ,730,730,730 ,0,0,0}, {33291,33292,33098 ,730,730,730 ,0,0,0}, - {33292,33101,33098 ,730,730,730 ,0,0,0}, {33100,33289,33098 ,730,730,730 ,0,0,0}, - {33096,33287,33100 ,730,730,730 ,0,0,0}, {33286,33288,33094 ,730,730,730 ,0,0,0}, - {33091,33285,33094 ,730,730,730 ,0,0,0}, {32518,33283,33091 ,730,730,730 ,0,0,0}, - {33281,33282,33089 ,730,730,730 ,0,0,0}, {33284,33281,33110 ,730,730,730 ,0,0,0}, - {33111,33280,33110 ,730,730,730 ,0,0,0}, {33114,33261,33111 ,730,730,730 ,0,0,0}, - {33279,33260,33116 ,730,730,730 ,0,0,0}, {33117,33276,33116 ,730,730,730 ,0,0,0}, - {33120,33277,33117 ,730,730,730 ,0,0,0}, {33275,33278,33122 ,730,730,730 ,0,0,0}, - {33136,33275,31755 ,730,730,730 ,0,0,0}, {33274,33134,31755 ,730,730,730 ,0,0,0}, - {33270,33132,33274 ,730,730,730 ,0,0,0}, {33125,33130,33272 ,730,730,730 ,0,0,0}, - {33130,33270,33272 ,730,730,730 ,0,0,0}, {33126,33125,33273 ,730,730,730 ,0,0,0}, - {33271,33140,33273 ,730,730,730 ,0,0,0}, {33269,33142,33271 ,730,730,730 ,0,0,0}, - {33143,33141,33268 ,730,730,730 ,0,0,0}, {33267,33146,33268 ,730,730,730 ,0,0,0}, - {31726,33129,33267 ,730,730,730 ,0,0,0}, {33150,33264,33265 ,730,730,730 ,0,0,0}, - {33154,33147,33265 ,730,730,730 ,0,0,0}, {33262,33153,33266 ,730,730,730 ,0,0,0}, - {33266,33154,33265 ,730,730,730 ,0,0,0}, {33263,33159,33151 ,730,730,730 ,0,0,0}, - {33262,33151,33153 ,730,730,730 ,0,0,0}, {33263,33295,33156 ,730,730,730 ,0,0,0}, - {33157,33258,33161 ,730,730,730 ,0,0,0}, {33156,33295,33157 ,730,730,730 ,0,0,0}, - {33161,33259,33162 ,730,730,730 ,0,0,0}, {31741,33162,33259 ,730,730,730 ,0,0,0}, - {33296,33297,33241 ,18409,18410,18410 ,0,0,0}, {33297,33168,33172 ,18410,1433,1433 ,0,0,0}, - {33241,33297,33172 ,18410,18410,1433 ,0,0,0}, {33241,33298,33296 ,18410,18409,18409 ,0,0,0}, - {33170,33299,33211 ,2162,18411,18411 ,0,0,0}, {33299,33253,33257 ,18411,2162,2162 ,0,0,0}, - {33211,33299,33257 ,18411,18411,2162 ,0,0,0}, {33211,33171,33170 ,18411,2162,2162 ,0,0,0}, - {31741,33259,33300 ,18353,18412,18413 ,0,0,0}, {33263,33301,33295 ,18414,18415,18416 ,0,0,0}, - {33302,33303,33258 ,18417,18418,18419 ,0,0,0}, {33304,33265,33305 ,18420,18421,18422 ,0,0,0}, - {33262,33266,33306 ,18423,18239,18424 ,0,0,0}, {33267,33307,33308 ,18425,18426,18427 ,0,0,0}, - {33308,33309,31726 ,18427,324,18428 ,0,0,0}, {33271,33310,33269 ,18429,18430,18431 ,0,0,0}, - {33311,33268,33269 ,18432,18433,18431 ,0,0,0}, {33273,33312,33313 ,18434,18435,18436 ,0,0,0}, - {33313,33271,33273 ,18436,18429,18434 ,0,0,0}, {33312,33272,33314 ,18435,18437,18438 ,0,0,0}, - {33272,33312,33273 ,18437,18435,18434 ,0,0,0}, {33315,33314,33270 ,18439,18438,18440 ,0,0,0}, - {33272,33270,33314 ,18437,18440,18438 ,0,0,0}, {33274,33123,33315 ,18441,18256,18439 ,0,0,0}, - {33315,33270,33274 ,18439,18440,18441 ,0,0,0}, {31755,33123,33274 ,18002,18256,18441 ,0,0,0}, - {33313,33310,33271 ,18436,18430,18429 ,0,0,0}, {33311,33269,33310 ,18432,18431,18430 ,0,0,0}, - {33311,33307,33268 ,18432,18426,18433 ,0,0,0}, {33305,33264,33309 ,18422,18442,324 ,0,0,0}, - {33267,33308,31726 ,18425,18427,18428 ,0,0,0}, {33268,33307,33267 ,18433,18426,18425 ,0,0,0}, - {33309,33264,31726 ,324,18442,18428 ,0,0,0}, {33264,33305,33265 ,18442,18422,18421 ,0,0,0}, - {33306,33266,33304 ,18424,18239,18420 ,0,0,0}, {33266,33265,33304 ,18239,18421,18420 ,0,0,0}, - {33262,33316,33263 ,18423,18443,18414 ,0,0,0}, {33316,33262,33306 ,18443,18423,18424 ,0,0,0}, - {33302,33295,33301 ,18417,18416,18415 ,0,0,0}, {33316,33301,33263 ,18443,18415,18414 ,0,0,0}, - {33258,33303,33259 ,18419,18418,18412 ,0,0,0}, {33295,33302,33258 ,18416,18417,18419 ,0,0,0}, - {31741,33300,33107 ,18353,18413,3345 ,0,0,0}, {33259,33303,33300 ,18412,18418,18413 ,0,0,0}, - {33128,33317,33255 ,18444,18444,18113 ,0,0,0}, {33128,33318,33319 ,18444,18113,18113 ,0,0,0}, - {33128,33319,33317 ,18444,18113,18444 ,0,0,0}, {33317,33256,33255 ,18444,18113,18113 ,0,0,0}, - {33206,33208,33320 ,7758,7880,7627 ,0,0,0}, {33214,33215,33321 ,726,726,7627 ,0,0,0}, - {33200,33322,33323 ,726,18445,7755 ,0,0,0}, {33324,33202,33325 ,8017,7627,7627 ,0,0,0}, - {33326,33173,33327 ,18446,7758,18447 ,0,0,0}, {33327,33196,33328 ,18447,7264,7249 ,0,0,0}, - {33329,33179,33330 ,18448,7627,18449 ,0,0,0}, {33323,33331,33197 ,7755,8018,7755 ,0,0,0}, - {33176,33332,33330 ,7761,18450,18449 ,0,0,0}, {33333,33181,33179 ,18451,726,7627 ,0,0,0}, - {33181,33333,33334 ,726,18451,726 ,0,0,0}, {33174,33326,33332 ,7755,18446,18450 ,0,0,0}, - {33335,33185,33334 ,7264,7627,726 ,0,0,0}, {33183,33336,33186 ,7758,7264,7880 ,0,0,0}, - {33337,33338,33188 ,726,7880,7627 ,0,0,0}, {33339,33216,33340 ,726,7627,726 ,0,0,0}, - {33341,33227,33228 ,726,7627,7627 ,0,0,0}, {33338,33342,33191 ,7880,7627,7880 ,0,0,0}, - {33192,33248,33343 ,7627,7627,726 ,0,0,0}, {33247,33344,33343 ,7627,7627,726 ,0,0,0}, - {33245,33345,33242 ,7625,7627,7627 ,0,0,0}, {33243,33242,33346 ,726,7627,726 ,0,0,0}, - {33226,33347,33228 ,7627,726,7627 ,0,0,0}, {33344,33247,33243 ,7627,7627,726 ,0,0,0}, - {33348,33239,33240 ,7627,726,726 ,0,0,0}, {33237,33239,33349 ,7627,726,7627 ,0,0,0}, - {33214,33321,33350 ,726,7627,726 ,0,0,0}, {33350,33351,33236 ,726,7627,7627 ,0,0,0}, - {33352,33232,33229 ,7627,726,726 ,0,0,0}, {33351,33240,33233 ,7627,726,726 ,0,0,0}, - {33352,33227,33341 ,7627,7627,726 ,0,0,0}, {33232,33353,33215 ,726,726,726 ,0,0,0}, - {33345,33237,33349 ,7627,7627,7627 ,0,0,0}, {33226,33213,33354 ,7627,7625,726 ,0,0,0}, - {33339,33212,33216 ,726,726,7627 ,0,0,0}, {33340,33216,33218 ,726,7627,726 ,0,0,0}, - {33212,33339,33354 ,726,726,726 ,0,0,0}, {33342,33250,33192 ,7627,7627,7627 ,0,0,0}, - {33355,33218,33220 ,726,726,7627 ,0,0,0}, {33218,33355,33340 ,726,726,726 ,0,0,0}, - {33209,33220,33222 ,7627,7627,7627 ,0,0,0}, {33209,33355,33220 ,7627,726,7627 ,0,0,0}, - {33222,33356,33209 ,7627,7758,7627 ,0,0,0}, {33357,33325,33203 ,7758,7627,7758 ,0,0,0}, - {33335,33358,33183 ,7264,7761,7758 ,0,0,0}, {33326,33174,33173 ,18446,7755,7758 ,0,0,0}, - {33213,33212,33354 ,7625,726,726 ,0,0,0}, {33347,33226,33354 ,726,7627,726 ,0,0,0}, - {33341,33228,33347 ,726,7627,726 ,0,0,0}, {33229,33227,33352 ,726,7627,7627 ,0,0,0}, - {33353,33232,33352 ,726,726,7627 ,0,0,0}, {33321,33215,33353 ,7627,726,726 ,0,0,0}, - {33236,33214,33350 ,7627,726,726 ,0,0,0}, {33233,33236,33351 ,726,7627,7627 ,0,0,0}, - {33348,33240,33351 ,7627,726,7627 ,0,0,0}, {33349,33239,33348 ,7627,726,7627 ,0,0,0}, - {33245,33237,33345 ,7625,7627,7627 ,0,0,0}, {33346,33242,33345 ,726,7627,7627 ,0,0,0}, - {33344,33243,33346 ,7627,726,726 ,0,0,0}, {33248,33247,33343 ,7627,7627,726 ,0,0,0}, - {33250,33248,33192 ,7627,7627,7627 ,0,0,0}, {33191,33342,33192 ,7880,7627,7627 ,0,0,0}, - {33188,33338,33191 ,7627,7880,7880 ,0,0,0}, {33336,33337,33186 ,7264,726,7880 ,0,0,0}, - {33337,33188,33186 ,726,7627,7880 ,0,0,0}, {33358,33336,33183 ,7761,7264,7758 ,0,0,0}, - {33185,33335,33183 ,7627,7264,7758 ,0,0,0}, {33181,33334,33185 ,726,726,7627 ,0,0,0}, - {33329,33333,33179 ,18448,18451,7627 ,0,0,0}, {33176,33330,33179 ,7761,18449,7627 ,0,0,0}, - {33174,33332,33176 ,7755,18450,7761 ,0,0,0}, {33327,33173,33196 ,18447,7758,7264 ,0,0,0}, - {33331,33328,33196 ,8018,7249,7264 ,0,0,0}, {33200,33323,33197 ,726,7755,7755 ,0,0,0}, - {33197,33331,33196 ,7755,8018,7264 ,0,0,0}, {33202,33322,33200 ,7627,18445,726 ,0,0,0}, - {33202,33203,33325 ,7627,7758,7627 ,0,0,0}, {33202,33324,33322 ,7627,8017,18445 ,0,0,0}, - {33203,33206,33357 ,7758,7758,7758 ,0,0,0}, {33320,33208,33356 ,7627,7880,7758 ,0,0,0}, - {33357,33206,33320 ,7758,7758,7627 ,0,0,0}, {33209,33356,33208 ,7627,7758,7880 ,0,0,0}, - {33318,33155,33359 ,1398,18452,18452 ,0,0,0}, {33296,33298,33155 ,18453,18453,18452 ,0,0,0}, - {33298,33359,33155 ,18453,18452,18452 ,0,0,0}, {33359,33319,33318 ,18452,1398,1398 ,0,0,0}, - {33360,33222,33223 ,18454,18092,18121 ,0,0,0}, {33325,33357,33254 ,18455,18456,18457 ,0,0,0}, - {33361,33320,33362 ,18458,18459,18460 ,0,0,0}, {33324,33363,33322 ,18461,18462,18463 ,0,0,0}, - {33364,33317,33326 ,18464,7309,18465 ,0,0,0}, {33365,33328,33331 ,18466,18467,18468 ,0,0,0}, - {33334,33333,33366 ,18469,18470,18471 ,0,0,0}, {33329,33330,33367 ,18472,18473,18474 ,0,0,0}, - {33335,33368,33358 ,18475,18476,18477 ,0,0,0}, {33359,33337,33336 ,18478,18479,18480 ,0,0,0}, - {33358,33359,33336 ,18477,18478,18480 ,0,0,0}, {33337,33369,33338 ,18479,18481,18482 ,0,0,0}, - {33369,33337,33359 ,18481,18479,18478 ,0,0,0}, {33369,33370,33338 ,18481,18483,18482 ,0,0,0}, - {33371,33342,33370 ,18484,18485,18483 ,0,0,0}, {33338,33370,33342 ,18482,18483,18485 ,0,0,0}, - {33371,33252,33250 ,18484,18486,82 ,0,0,0}, {33250,33342,33371 ,82,18485,18484 ,0,0,0}, - {33366,33368,33335 ,18471,18476,18475 ,0,0,0}, {33358,33368,33359 ,18477,18476,18478 ,0,0,0}, - {33333,33372,33366 ,18470,18487,18471 ,0,0,0}, {33335,33334,33366 ,18475,18469,18471 ,0,0,0}, - {33367,33372,33329 ,18474,18487,18472 ,0,0,0}, {33333,33329,33372 ,18470,18472,18487 ,0,0,0}, - {33367,33332,33317 ,18474,18488,7309 ,0,0,0}, {33330,33332,33367 ,18473,18488,18474 ,0,0,0}, - {33364,33326,33327 ,18464,18465,18489 ,0,0,0}, {33317,33332,33326 ,7309,18488,18465 ,0,0,0}, - {33328,33365,33364 ,18467,18466,18464 ,0,0,0}, {33364,33327,33328 ,18464,18489,18467 ,0,0,0}, - {33323,33373,33331 ,18490,18491,18468 ,0,0,0}, {33373,33365,33331 ,18491,18466,18468 ,0,0,0}, - {33373,33322,33363 ,18491,18463,18462 ,0,0,0}, {33322,33373,33323 ,18463,18491,18490 ,0,0,0}, - {33324,33325,33254 ,18461,18455,18457 ,0,0,0}, {33324,33254,33363 ,18461,18457,18462 ,0,0,0}, - {33357,33320,33361 ,18456,18459,18458 ,0,0,0}, {33357,33361,33254 ,18456,18458,18457 ,0,0,0}, - {33362,33356,33360 ,18460,18492,18454 ,0,0,0}, {33320,33356,33362 ,18459,18492,18460 ,0,0,0}, - {33222,33360,33356 ,18092,18454,18492 ,0,0,0}, {33246,33298,33249 ,7792,726,7658 ,0,0,0}, - {33298,33241,33249 ,726,726,7658 ,0,0,0}, {33252,33298,33251 ,7664,726,7662 ,0,0,0}, - {33298,33246,33251 ,726,7792,7662 ,0,0,0}, {33370,33298,33371 ,7662,726,5488 ,0,0,0}, - {33298,33252,33371 ,726,7664,5488 ,0,0,0}, {33359,33298,33369 ,726,726,726 ,0,0,0}, - {33298,33370,33369 ,726,7662,726 ,0,0,0}, {33373,33256,33365 ,726,726,17470 ,0,0,0}, - {33365,33256,33364 ,17470,726,7628 ,0,0,0}, {33256,33317,33364 ,726,726,7628 ,0,0,0}, - {33256,33363,33254 ,726,726,726 ,0,0,0}, {33256,33373,33363 ,726,726,726 ,0,0,0}, - {33224,33171,33211 ,726,726,726 ,0,0,0}, {33230,33171,33225 ,7661,726,7659 ,0,0,0}, - {33171,33224,33225 ,726,726,7659 ,0,0,0}, {33167,33171,33231 ,7661,726,7661 ,0,0,0}, - {33171,33230,33231 ,726,7661,7661 ,0,0,0}, {33172,33235,33234 ,7660,7660,7660 ,0,0,0}, - {33167,33235,33172 ,726,7660,7660 ,0,0,0}, {33172,33244,33241 ,7660,726,726 ,0,0,0}, - {33172,33238,33244 ,7660,7658,726 ,0,0,0}, {33234,33238,33172 ,7660,7658,7660 ,0,0,0}, - {33359,33368,33319 ,726,726,726 ,0,0,0}, {33372,33319,33366 ,726,726,7661 ,0,0,0}, - {33368,33366,33319 ,726,7661,726 ,0,0,0}, {33367,33317,33319 ,726,726,726 ,0,0,0}, - {33367,33319,33372 ,726,726,726 ,0,0,0}, {33361,33257,33254 ,726,726,726 ,0,0,0}, - {33360,33257,33362 ,726,726,726 ,0,0,0}, {33257,33361,33362 ,726,726,726 ,0,0,0}, - {33221,33257,33223 ,726,726,726 ,0,0,0}, {33257,33360,33223 ,726,726,726 ,0,0,0}, - {33217,33257,33219 ,726,726,7660 ,0,0,0}, {33257,33221,33219 ,726,726,7660 ,0,0,0}, - {33211,33257,33217 ,726,726,726 ,0,0,0}, {33207,33205,33374 ,726,726,7583 ,0,0,0}, - {33375,33376,33377 ,726,726,726 ,0,0,0}, {33378,33375,33210 ,726,726,726 ,0,0,0}, - {33374,33379,33207 ,7583,7583,726 ,0,0,0}, {33380,33381,33377 ,726,726,726 ,0,0,0}, - {33382,33383,33376 ,726,726,726 ,0,0,0}, {33380,33377,33383 ,726,726,726 ,0,0,0}, - {33376,33383,33377 ,726,726,726 ,0,0,0}, {33377,33384,33375 ,726,726,726 ,0,0,0}, - {33207,33378,33210 ,726,726,726 ,0,0,0}, {33210,33375,33384 ,726,726,726 ,0,0,0}, - {33374,33205,33204 ,7583,726,726 ,0,0,0}, {33207,33379,33378 ,726,7583,726 ,0,0,0}, - {33385,33204,33201 ,7583,726,726 ,0,0,0}, {33204,33385,33374 ,726,7583,7583 ,0,0,0}, - {33201,33386,33387 ,726,726,726 ,0,0,0}, {33385,33201,33387 ,7583,726,726 ,0,0,0}, - {33199,33386,33201 ,726,726,726 ,0,0,0}, {33386,33198,33388 ,726,726,726 ,0,0,0}, - {33198,33386,33199 ,726,726,726 ,0,0,0}, {33198,33195,33388 ,726,726,726 ,0,0,0}, - {33389,33195,33390 ,726,726,5489 ,0,0,0}, {33389,33388,33195 ,726,726,726 ,0,0,0}, - {33390,33194,33175 ,5489,7583,726 ,0,0,0}, {33195,33194,33390 ,726,7583,5489 ,0,0,0}, - {33178,33193,33175 ,7583,7583,726 ,0,0,0}, {33390,33175,33193 ,5489,726,7583 ,0,0,0}, - {33182,33189,33177 ,7583,7583,726 ,0,0,0}, {33177,33180,33182 ,726,726,7583 ,0,0,0}, - {33189,33184,33187 ,7583,7583,726 ,0,0,0}, {33189,33178,33177 ,7583,7583,726 ,0,0,0}, - {33189,33190,33178 ,7583,5489,7583 ,0,0,0}, {33189,33182,33184 ,7583,7583,7583 ,0,0,0}, - {33178,33190,33193 ,7583,5489,7583 ,0,0,0}, {33192,33343,33390 ,35,18493,18494 ,0,0,0}, - {33345,33386,33346 ,18495,18496,18497 ,0,0,0}, {33388,33389,33344 ,18498,18499,18500 ,0,0,0}, - {33374,33351,33379 ,18501,18502,18503 ,0,0,0}, {33349,33348,33385 ,18504,18505,18506 ,0,0,0}, - {33353,33376,33375 ,18507,18508,18509 ,0,0,0}, {33375,33378,33321 ,18509,18510,18511 ,0,0,0}, - {33347,33383,33341 ,18512,18513,18514 ,0,0,0}, {33382,33352,33341 ,18515,18516,18514 ,0,0,0}, - {33354,33381,33380 ,18517,18518,18519 ,0,0,0}, {33380,33347,33354 ,18519,18512,18517 ,0,0,0}, - {33381,33339,33377 ,18518,18520,18521 ,0,0,0}, {33339,33381,33354 ,18520,18518,18517 ,0,0,0}, - {33384,33377,33340 ,18522,18521,18523 ,0,0,0}, {33339,33340,33377 ,18520,18523,18521 ,0,0,0}, - {33355,33210,33384 ,18524,18188,18522 ,0,0,0}, {33384,33340,33355 ,18522,18523,18524 ,0,0,0}, - {33209,33210,33355 ,18188,18188,18524 ,0,0,0}, {33380,33383,33347 ,18519,18513,18512 ,0,0,0}, - {33382,33341,33383 ,18515,18514,18513 ,0,0,0}, {33382,33376,33352 ,18515,18508,18516 ,0,0,0}, - {33379,33350,33378 ,18503,18525,18510 ,0,0,0}, {33353,33375,33321 ,18507,18509,18511 ,0,0,0}, - {33352,33376,33353 ,18516,18508,18507 ,0,0,0}, {33378,33350,33321 ,18510,18525,18511 ,0,0,0}, - {33350,33379,33351 ,18525,18503,18502 ,0,0,0}, {33385,33348,33374 ,18506,18505,18501 ,0,0,0}, - {33348,33351,33374 ,18505,18502,18501 ,0,0,0}, {33349,33387,33345 ,18504,18526,18495 ,0,0,0}, - {33387,33349,33385 ,18526,18504,18506 ,0,0,0}, {33388,33346,33386 ,18498,18497,18496 ,0,0,0}, - {33387,33386,33345 ,18526,18496,18495 ,0,0,0}, {33344,33389,33343 ,18500,18499,18493 ,0,0,0}, - {33346,33388,33344 ,18497,18498,18500 ,0,0,0}, {33192,33390,33193 ,35,18494,763 ,0,0,0}, - {33343,33389,33390 ,18493,18499,18494 ,0,0,0}, {33391,33136,33137 ,18527,126,18026 ,0,0,0}, - {33276,33277,33299 ,18528,18529,18530 ,0,0,0}, {33392,33278,33393 ,18531,18532,18533 ,0,0,0}, - {33279,33394,33260 ,18534,18535,18536 ,0,0,0}, {33395,33169,33282 ,18537,10001,18538 ,0,0,0}, - {33396,33284,33280 ,18539,18540,18541 ,0,0,0}, {33287,33288,33397 ,18542,18543,18544 ,0,0,0}, - {33286,33285,33398 ,18545,18546,18547 ,0,0,0}, {33289,33399,33291 ,18548,18549,18550 ,0,0,0}, - {33297,33290,33292 ,18551,18552,18553 ,0,0,0}, {33291,33297,33292 ,18550,18551,18553 ,0,0,0}, - {33290,33400,33293 ,18552,18554,18555 ,0,0,0}, {33400,33290,33297 ,18554,18552,18551 ,0,0,0}, - {33400,33401,33293 ,18554,18556,18555 ,0,0,0}, {33402,33294,33401 ,18557,18558,18556 ,0,0,0}, - {33293,33401,33294 ,18555,18556,18558 ,0,0,0}, {33402,33166,33164 ,18557,5000,18205 ,0,0,0}, - {33164,33294,33402 ,18205,18558,18557 ,0,0,0}, {33397,33399,33289 ,18544,18549,18548 ,0,0,0}, - {33291,33399,33297 ,18550,18549,18551 ,0,0,0}, {33288,33403,33397 ,18543,18559,18544 ,0,0,0}, - {33289,33287,33397 ,18548,18542,18544 ,0,0,0}, {33398,33403,33286 ,18547,18559,18545 ,0,0,0}, - {33288,33286,33403 ,18543,18545,18559 ,0,0,0}, {33398,33283,33169 ,18547,18560,10001 ,0,0,0}, - {33285,33283,33398 ,18546,18560,18547 ,0,0,0}, {33395,33282,33281 ,18537,18538,18561 ,0,0,0}, - {33169,33283,33282 ,10001,18560,18538 ,0,0,0}, {33284,33396,33395 ,18540,18539,18537 ,0,0,0}, - {33395,33281,33284 ,18537,18561,18540 ,0,0,0}, {33261,33404,33280 ,18562,18563,18541 ,0,0,0}, - {33404,33396,33280 ,18563,18539,18541 ,0,0,0}, {33404,33260,33394 ,18563,18536,18535 ,0,0,0}, - {33260,33404,33261 ,18536,18563,18562 ,0,0,0}, {33279,33276,33299 ,18534,18528,18530 ,0,0,0}, - {33279,33299,33394 ,18534,18530,18535 ,0,0,0}, {33277,33278,33392 ,18529,18532,18531 ,0,0,0}, - {33277,33392,33299 ,18529,18531,18530 ,0,0,0}, {33393,33275,33391 ,18533,18564,18527 ,0,0,0}, - {33278,33275,33393 ,18532,18564,18533 ,0,0,0}, {33136,33391,33275 ,126,18527,18564 ,0,0,0}, - {33170,33404,33394 ,17561,17561,730 ,0,0,0}, {33395,33170,33169 ,730,17561,730 ,0,0,0}, - {33404,33170,33396 ,17561,17561,730 ,0,0,0}, {33170,33395,33396 ,17561,730,730 ,0,0,0}, - {33394,33299,33170 ,730,7376,17561 ,0,0,0}, {33163,33296,33155 ,18207,730,730 ,0,0,0}, - {33296,33402,33401 ,730,730,730 ,0,0,0}, {33165,33296,33160 ,17561,730,7433 ,0,0,0}, - {33296,33163,33160 ,730,18207,7433 ,0,0,0}, {33402,33296,33166 ,730,730,17561 ,0,0,0}, - {33296,33165,33166 ,730,17561,17561 ,0,0,0}, {33401,33400,33296 ,730,7433,730 ,0,0,0}, - {33400,33297,33296 ,7433,730,730 ,0,0,0}, {33139,33255,33138 ,7017,730,730 ,0,0,0}, - {33255,33124,33138 ,730,11465,730 ,0,0,0}, {33145,33255,33144 ,18565,730,730 ,0,0,0}, - {33255,33139,33144 ,730,7017,730 ,0,0,0}, {33128,33255,33145 ,18566,730,18565 ,0,0,0}, - {33403,33168,33397 ,730,7376,17561 ,0,0,0}, {33399,33397,33168 ,730,17561,7376 ,0,0,0}, - {33297,33399,33168 ,730,730,7376 ,0,0,0}, {33398,33169,33168 ,7376,730,7376 ,0,0,0}, - {33398,33168,33403 ,7376,7376,730 ,0,0,0}, {33149,33148,33318 ,18207,18207,9877 ,0,0,0}, - {33128,33149,33318 ,18567,18207,9877 ,0,0,0}, {33152,33158,33318 ,730,9878,9877 ,0,0,0}, - {33152,33318,33148 ,730,9877,18207 ,0,0,0}, {33155,33318,33158 ,730,9877,9878 ,0,0,0}, - {33299,33392,33253 ,730,730,730 ,0,0,0}, {33253,33391,33137 ,730,730,9877 ,0,0,0}, - {33391,33253,33393 ,730,730,730 ,0,0,0}, {33253,33392,33393 ,730,730,730 ,0,0,0}, - {33137,33135,33253 ,9877,730,730 ,0,0,0}, {33253,33133,33131 ,730,9878,730 ,0,0,0}, - {33135,33133,33253 ,730,9878,730 ,0,0,0}, {33131,33124,33253 ,730,730,730 ,0,0,0}, - {33300,33303,33109 ,730,730,9878 ,0,0,0}, {33093,33092,33104 ,730,730,730 ,0,0,0}, - {33090,33093,33107 ,9875,730,730 ,0,0,0}, {33109,33108,33300 ,9878,730,730 ,0,0,0}, - {33099,33102,33104 ,730,730,730 ,0,0,0}, {33095,33097,33092 ,730,730,730 ,0,0,0}, - {33099,33104,33097 ,730,730,730 ,0,0,0}, {33092,33097,33104 ,730,730,730 ,0,0,0}, - {33104,33105,33093 ,730,730,730 ,0,0,0}, {33300,33090,33107 ,730,9875,730 ,0,0,0}, - {33107,33093,33105 ,730,730,730 ,0,0,0}, {33109,33303,33302 ,9878,730,730 ,0,0,0}, - {33300,33108,33090 ,730,730,9875 ,0,0,0}, {33112,33302,33301 ,9878,730,730 ,0,0,0}, - {33302,33112,33109 ,730,9878,9878 ,0,0,0}, {33301,33115,33113 ,730,730,730 ,0,0,0}, - {33112,33301,33113 ,9878,730,730 ,0,0,0}, {33316,33115,33301 ,730,730,730 ,0,0,0}, - {33115,33306,33118 ,730,9875,9878 ,0,0,0}, {33306,33115,33316 ,9875,730,730 ,0,0,0}, - {33306,33304,33118 ,9875,730,9878 ,0,0,0}, {33119,33304,33121 ,9878,730,730 ,0,0,0}, - {33119,33118,33304 ,9878,9878,730 ,0,0,0}, {33121,33305,33309 ,730,9875,9875 ,0,0,0}, - {33304,33305,33121 ,730,9875,730 ,0,0,0}, {33308,33123,33309 ,730,9878,9875 ,0,0,0}, - {33121,33309,33123 ,730,9875,9878 ,0,0,0}, {33310,33314,33307 ,9878,9878,730 ,0,0,0}, - {33307,33311,33310 ,730,9878,9878 ,0,0,0}, {33314,33313,33312 ,9878,9878,9877 ,0,0,0}, - {33314,33308,33307 ,9878,730,730 ,0,0,0}, {33314,33315,33308 ,9878,730,730 ,0,0,0}, - {33314,33310,33313 ,9878,9878,9878 ,0,0,0}, {33308,33315,33123 ,730,730,9878 ,0,0,0} -// M3abstandhalter10mm.prt - , {33405,32470,33406 ,18258,18259,18260 ,0,0,0}, {33407,33408,33409 ,18261,18262,18263 ,0,0,0}, - {33406,32470,33409 ,18260,18259,18263 ,0,0,0}, {33408,33407,33410 ,18262,18261,18264 ,0,0,0}, - {33410,33411,33408 ,18264,18265,18262 ,0,0,0}, {33411,33412,33413 ,18265,18266,18267 ,0,0,0}, - {33410,33412,33411 ,18264,18266,18265 ,0,0,0}, {33407,33409,32470 ,18261,18263,18259 ,0,0,0}, - {33414,33415,33416 ,18268,18269,18270 ,0,0,0}, {33415,33413,33416 ,18269,18267,18270 ,0,0,0}, - {33414,33417,33418 ,18268,18271,18272 ,0,0,0}, {33418,33415,33414 ,18272,18269,18268 ,0,0,0}, - {33417,33419,33420 ,18271,18273,18274 ,0,0,0}, {33417,33420,33418 ,18271,18274,18272 ,0,0,0}, - {33412,33416,33413 ,18266,18270,18267 ,0,0,0}, {33421,33420,33419 ,18275,18274,18273 ,0,0,0}, - {33422,31643,33423 ,18276,18277,126 ,0,0,0}, {33422,33423,33421 ,18276,126,18275 ,0,0,0}, - {33419,33422,33421 ,18273,18276,18275 ,0,0,0}, {33405,33406,33424 ,18258,18260,18278 ,0,0,0}, - {33424,33425,33426 ,18278,18279,18280 ,0,0,0}, {33426,33405,33424 ,18280,18258,18278 ,0,0,0}, - {33427,33425,33428 ,18281,18279,18282 ,0,0,0}, {33425,33427,33426 ,18279,18281,18280 ,0,0,0}, - {33429,33430,33428 ,18283,18284,18282 ,0,0,0}, {33427,33428,33430 ,18281,18282,18284 ,0,0,0}, - {33429,33431,33432 ,18283,18285,18286 ,0,0,0}, {33432,33430,33429 ,18286,18284,18283 ,0,0,0}, - {33433,33431,33434 ,18287,18285,18288 ,0,0,0}, {33431,33433,33432 ,18285,18287,18286 ,0,0,0}, - {33435,33436,33434 ,18289,18290,18288 ,0,0,0}, {33433,33434,33436 ,18287,18288,18290 ,0,0,0}, - {33435,33437,33438 ,18289,18291,18292 ,0,0,0}, {33438,33436,33435 ,18292,18290,18289 ,0,0,0}, - {31657,33437,33439 ,18293,18291,18003 ,0,0,0}, {33437,31657,33438 ,18291,18293,18292 ,0,0,0}, - {33440,33441,33442 ,18294,18295,18296 ,0,0,0}, {33443,33444,33445 ,18297,21,18298 ,0,0,0}, - {33446,33440,33447 ,18299,18294,18300 ,0,0,0}, {33440,33446,33441 ,18294,18299,18295 ,0,0,0}, - {33446,33447,33448 ,18299,18300,18301 ,0,0,0}, {33449,33450,33448 ,18302,18303,18301 ,0,0,0}, - {33448,33447,33449 ,18301,18300,18302 ,0,0,0}, {33450,33451,33452 ,18303,18304,126 ,0,0,0}, - {33451,33450,33449 ,18304,18303,18302 ,0,0,0}, {33451,33453,33452 ,18304,3135,126 ,0,0,0}, - {33440,33442,33454 ,18294,18296,18305 ,0,0,0}, {33455,33454,33456 ,18306,18305,18307 ,0,0,0}, - {33442,33456,33454 ,18296,18307,18305 ,0,0,0}, {33457,33455,33458 ,18308,18306,18309 ,0,0,0}, - {33455,33456,33458 ,18306,18307,18309 ,0,0,0}, {33457,33459,33460 ,18308,18310,18311 ,0,0,0}, - {33460,33455,33457 ,18311,18306,18308 ,0,0,0}, {33461,33459,33462 ,18312,18310,18313 ,0,0,0}, - {33459,33461,33460 ,18310,18312,18311 ,0,0,0}, {33444,33461,33445 ,21,18312,18298 ,0,0,0}, - {33462,33445,33461 ,18313,18298,18312 ,0,0,0}, {33463,33464,33465 ,18314,18315,18316 ,0,0,0}, - {33443,33466,33465 ,18297,18317,18316 ,0,0,0}, {33467,33468,33469 ,18318,18319,18320 ,0,0,0}, - {33468,33464,33470 ,18319,18315,18321 ,0,0,0}, {33471,33472,33473 ,18322,18323,18324 ,0,0,0}, - {33474,33475,33471 ,18325,18326,18322 ,0,0,0}, {33476,33477,33478 ,18327,18328,18329 ,0,0,0}, - {33477,33476,33479 ,18328,18327,18330 ,0,0,0}, {33480,33481,33478 ,18037,18331,18329 ,0,0,0}, - {33476,33478,33481 ,18327,18329,18331 ,0,0,0}, {33482,33481,33480 ,18038,18331,18037 ,0,0,0}, - {33473,33479,33471 ,18324,18330,18322 ,0,0,0}, {33473,33477,33479 ,18324,18328,18330 ,0,0,0}, - {33468,33467,33474 ,18319,18318,18325 ,0,0,0}, {33471,33475,33472 ,18322,18326,18323 ,0,0,0}, - {33474,33467,33475 ,18325,18318,18326 ,0,0,0}, {33464,33463,33470 ,18315,18314,18321 ,0,0,0}, - {33469,33468,33470 ,18320,18319,18321 ,0,0,0}, {33465,33444,33443 ,18316,21,18297 ,0,0,0}, - {33463,33465,33466 ,18314,18316,18317 ,0,0,0}, {33483,33484,33485 ,18332,1077,18332 ,0,0,0}, - {33486,33487,33485 ,18333,18333,18332 ,0,0,0}, {33487,33483,33485 ,18333,18332,18332 ,0,0,0}, - {33483,33488,33484 ,18332,18334,1077 ,0,0,0}, {33489,33490,33491 ,18335,18336,324 ,0,0,0}, - {33492,33493,33494 ,18337,18338,18339 ,0,0,0}, {33491,33490,33494 ,324,18336,18339 ,0,0,0}, - {33493,33492,33495 ,18338,18337,18340 ,0,0,0}, {33495,33496,33493 ,18340,18341,18338 ,0,0,0}, - {33496,33497,33498 ,18341,18342,18343 ,0,0,0}, {33495,33497,33496 ,18340,18342,18341 ,0,0,0}, - {33492,33494,33490 ,18337,18339,18336 ,0,0,0}, {33499,33500,33501 ,18344,18345,18346 ,0,0,0}, - {33500,33498,33501 ,18345,18343,18346 ,0,0,0}, {33499,33502,33503 ,18344,18347,18348 ,0,0,0}, - {33503,33500,33499 ,18348,18345,18344 ,0,0,0}, {33502,33504,33505 ,18347,18349,18350 ,0,0,0}, - {33502,33505,33503 ,18347,18350,18348 ,0,0,0}, {33497,33501,33498 ,18342,18346,18343 ,0,0,0}, - {33506,33505,33504 ,18351,18350,18349 ,0,0,0}, {33507,33508,33509 ,18352,18353,126 ,0,0,0}, - {33507,33509,33506 ,18352,126,18351 ,0,0,0}, {33504,33507,33506 ,18349,18352,18351 ,0,0,0}, - {33489,33491,33510 ,18335,324,18354 ,0,0,0}, {33510,33511,33512 ,18354,18355,18356 ,0,0,0}, - {33512,33489,33510 ,18356,18335,18354 ,0,0,0}, {33513,33511,33514 ,18357,18355,18358 ,0,0,0}, - {33511,33513,33512 ,18355,18357,18356 ,0,0,0}, {33515,33516,33514 ,18359,18360,18358 ,0,0,0}, - {33513,33514,33516 ,18357,18358,18360 ,0,0,0}, {33515,33517,33518 ,18359,18361,18362 ,0,0,0}, - {33518,33516,33515 ,18362,18360,18359 ,0,0,0}, {33519,33517,33520 ,18363,18361,18364 ,0,0,0}, - {33517,33519,33518 ,18361,18363,18362 ,0,0,0}, {33521,33522,33520 ,18365,18366,18364 ,0,0,0}, - {33519,33520,33522 ,18363,18364,18366 ,0,0,0}, {33521,33523,33524 ,18365,18367,18368 ,0,0,0}, - {33524,33522,33521 ,18368,18366,18365 ,0,0,0}, {33525,33523,33526 ,18369,18367,18188 ,0,0,0}, - {33523,33525,33524 ,18367,18369,18368 ,0,0,0}, {33527,33528,33529 ,18370,18371,18372 ,0,0,0}, - {33530,33483,33531 ,18373,324,18374 ,0,0,0}, {33532,33527,33533 ,18375,18370,18376 ,0,0,0}, - {33527,33532,33528 ,18370,18375,18371 ,0,0,0}, {33532,33533,33534 ,18375,18376,18377 ,0,0,0}, - {33535,33536,33534 ,18378,18379,18377 ,0,0,0}, {33534,33533,33535 ,18377,18376,18378 ,0,0,0}, - {33536,33537,33538 ,18379,18380,18092 ,0,0,0}, {33537,33536,33535 ,18380,18379,18378 ,0,0,0}, - {33537,33539,33538 ,18380,18381,18092 ,0,0,0}, {33527,33529,33540 ,18370,18372,18382 ,0,0,0}, - {33541,33540,33542 ,18383,18382,18384 ,0,0,0}, {33529,33542,33540 ,18372,18384,18382 ,0,0,0}, - {33543,33541,33544 ,18385,18383,18386 ,0,0,0}, {33541,33542,33544 ,18383,18384,18386 ,0,0,0}, - {33543,33545,33546 ,18385,18387,18388 ,0,0,0}, {33546,33541,33543 ,18388,18383,18385 ,0,0,0}, - {33547,33545,33548 ,18389,18387,18390 ,0,0,0}, {33545,33547,33546 ,18387,18389,18388 ,0,0,0}, - {33483,33547,33531 ,324,18389,18374 ,0,0,0}, {33548,33531,33547 ,18390,18374,18389 ,0,0,0}, - {33549,33550,33551 ,18391,18392,18393 ,0,0,0}, {33530,33552,33551 ,18373,18394,18393 ,0,0,0}, - {33553,33554,33555 ,18395,18396,18397 ,0,0,0}, {33554,33550,33556 ,18396,18392,18398 ,0,0,0}, - {33557,33558,33559 ,18399,18400,18401 ,0,0,0}, {33560,33561,33557 ,18402,18403,18399 ,0,0,0}, - {33562,33563,33564 ,18404,18405,18406 ,0,0,0}, {33563,33562,33565 ,18405,18404,18407 ,0,0,0}, - {33566,33567,33564 ,82,18408,18406 ,0,0,0}, {33562,33564,33567 ,18404,18406,18408 ,0,0,0}, - {33568,33567,33566 ,18103,18408,82 ,0,0,0}, {33559,33565,33557 ,18401,18407,18399 ,0,0,0}, - {33559,33563,33565 ,18401,18405,18407 ,0,0,0}, {33554,33553,33560 ,18396,18395,18402 ,0,0,0}, - {33557,33561,33558 ,18399,18403,18400 ,0,0,0}, {33560,33553,33561 ,18402,18395,18403 ,0,0,0}, - {33550,33549,33556 ,18392,18391,18398 ,0,0,0}, {33555,33554,33556 ,18397,18396,18398 ,0,0,0}, - {33551,33483,33530 ,18393,324,18373 ,0,0,0}, {33549,33551,33552 ,18391,18393,18394 ,0,0,0}, - {33569,33440,33570 ,2197,2197,2197 ,0,0,0}, {33571,33572,33440 ,2197,2197,2197 ,0,0,0}, - {33572,33570,33440 ,2197,2197,2197 ,0,0,0}, {33570,33573,33569 ,2197,2197,2197 ,0,0,0}, - {33574,33575,33477 ,730,730,730 ,0,0,0}, {33430,33576,33577 ,730,730,730 ,0,0,0}, - {33578,33579,33467 ,730,730,730 ,0,0,0}, {33475,33579,33472 ,730,730,730 ,0,0,0}, - {33443,33580,33466 ,730,730,730 ,0,0,0}, {33466,33581,33463 ,730,730,730 ,0,0,0}, - {33582,33469,33470 ,730,730,730 ,0,0,0}, {33462,33583,33445 ,730,730,730 ,0,0,0}, - {33459,33584,33462 ,730,730,730 ,0,0,0}, {33585,33584,33457 ,730,730,730 ,0,0,0}, - {33457,33458,33585 ,730,730,730 ,0,0,0}, {33446,33448,33586 ,730,730,730 ,0,0,0}, - {33587,33458,33456 ,730,730,730 ,0,0,0}, {33441,33588,33589 ,730,730,730 ,0,0,0}, - {33590,33448,33450 ,730,730,730 ,0,0,0}, {31657,33450,33452 ,730,730,730 ,0,0,0}, - {31657,33591,33438 ,730,730,730 ,0,0,0}, {33592,33433,33593 ,730,730,730 ,0,0,0}, - {33436,33438,33594 ,730,730,730 ,0,0,0}, {33436,33594,33593 ,730,730,730 ,0,0,0}, - {33592,33595,33432 ,730,730,730 ,0,0,0}, {33430,33432,33576 ,730,730,730 ,0,0,0}, - {33442,33589,33456 ,730,730,730 ,0,0,0}, {33427,33577,33596 ,730,730,730 ,0,0,0}, - {33405,33426,33597 ,730,730,730 ,0,0,0}, {33405,33598,32470 ,730,730,730 ,0,0,0}, - {33598,33599,32470 ,730,730,730 ,0,0,0}, {33426,33596,33600 ,730,730,730 ,0,0,0}, - {33601,33407,33599 ,730,730,730 ,0,0,0}, {33410,33601,33602 ,730,730,730 ,0,0,0}, - {33603,33412,33604 ,730,730,730 ,0,0,0}, {33412,33410,33604 ,730,730,730 ,0,0,0}, - {33416,33603,33605 ,730,730,730 ,0,0,0}, {33606,33419,33417 ,730,730,730 ,0,0,0}, - {33607,33414,33605 ,730,730,730 ,0,0,0}, {33606,33417,33608 ,730,730,730 ,0,0,0}, - {33580,33443,31628 ,730,730,730 ,0,0,0}, {33422,33419,33609 ,730,730,730 ,0,0,0}, - {33606,33609,33419 ,730,730,730 ,0,0,0}, {33422,33610,31643 ,730,730,730 ,0,0,0}, - {33610,33422,33609 ,730,730,730 ,0,0,0}, {31643,33480,33478 ,730,730,730 ,0,0,0}, - {33610,33480,31643 ,730,730,730 ,0,0,0}, {33611,33574,33473 ,730,730,730 ,0,0,0}, - {31628,33443,33445 ,730,730,730 ,0,0,0}, {33607,33608,33414 ,730,730,730 ,0,0,0}, - {33608,33417,33414 ,730,730,730 ,0,0,0}, {33416,33605,33414 ,730,730,730 ,0,0,0}, - {33412,33603,33416 ,730,730,730 ,0,0,0}, {33602,33604,33410 ,730,730,730 ,0,0,0}, - {33407,33601,33410 ,730,730,730 ,0,0,0}, {32470,33599,33407 ,730,730,730 ,0,0,0}, - {33597,33598,33405 ,730,730,730 ,0,0,0}, {33600,33597,33426 ,730,730,730 ,0,0,0}, - {33427,33596,33426 ,730,730,730 ,0,0,0}, {33430,33577,33427 ,730,730,730 ,0,0,0}, - {33595,33576,33432 ,730,730,730 ,0,0,0}, {33433,33592,33432 ,730,730,730 ,0,0,0}, - {33436,33593,33433 ,730,730,730 ,0,0,0}, {33591,33594,33438 ,730,730,730 ,0,0,0}, - {33452,33591,31657 ,730,730,730 ,0,0,0}, {33590,33450,31657 ,730,730,730 ,0,0,0}, - {33586,33448,33590 ,730,730,730 ,0,0,0}, {33441,33446,33588 ,730,730,730 ,0,0,0}, - {33446,33586,33588 ,730,730,730 ,0,0,0}, {33442,33441,33589 ,730,730,730 ,0,0,0}, - {33587,33456,33589 ,730,730,730 ,0,0,0}, {33585,33458,33587 ,730,730,730 ,0,0,0}, - {33459,33457,33584 ,730,730,730 ,0,0,0}, {33583,33462,33584 ,730,730,730 ,0,0,0}, - {31628,33445,33583 ,730,730,730 ,0,0,0}, {33466,33580,33581 ,730,730,730 ,0,0,0}, - {33470,33463,33581 ,730,730,730 ,0,0,0}, {33578,33469,33582 ,730,730,730 ,0,0,0}, - {33582,33470,33581 ,730,730,730 ,0,0,0}, {33579,33475,33467 ,730,730,730 ,0,0,0}, - {33578,33467,33469 ,730,730,730 ,0,0,0}, {33579,33611,33472 ,730,730,730 ,0,0,0}, - {33473,33574,33477 ,730,730,730 ,0,0,0}, {33472,33611,33473 ,730,730,730 ,0,0,0}, - {33477,33575,33478 ,730,730,730 ,0,0,0}, {31643,33478,33575 ,730,730,730 ,0,0,0}, - {33612,33613,33557 ,18409,18410,18410 ,0,0,0}, {33613,33484,33488 ,18410,1433,1433 ,0,0,0}, - {33557,33613,33488 ,18410,18410,1433 ,0,0,0}, {33557,33614,33612 ,18410,18409,18409 ,0,0,0}, - {33486,33615,33527 ,2162,18411,18411 ,0,0,0}, {33615,33569,33573 ,18411,2162,2162 ,0,0,0}, - {33527,33615,33573 ,18411,18411,2162 ,0,0,0}, {33527,33487,33486 ,18411,2162,2162 ,0,0,0}, - {31643,33575,33616 ,18353,18412,18413 ,0,0,0}, {33579,33617,33611 ,18414,18415,18416 ,0,0,0}, - {33618,33619,33574 ,18417,18418,18419 ,0,0,0}, {33620,33581,33621 ,18420,18421,18422 ,0,0,0}, - {33578,33582,33622 ,18423,18239,18424 ,0,0,0}, {33583,33623,33624 ,18425,18426,18427 ,0,0,0}, - {33624,33625,31628 ,18427,324,18428 ,0,0,0}, {33587,33626,33585 ,18429,18430,18431 ,0,0,0}, - {33627,33584,33585 ,18432,18433,18431 ,0,0,0}, {33589,33628,33629 ,18434,18435,18436 ,0,0,0}, - {33629,33587,33589 ,18436,18429,18434 ,0,0,0}, {33628,33588,33630 ,18435,18437,18438 ,0,0,0}, - {33588,33628,33589 ,18437,18435,18434 ,0,0,0}, {33631,33630,33586 ,18439,18438,18440 ,0,0,0}, - {33588,33586,33630 ,18437,18440,18438 ,0,0,0}, {33590,33439,33631 ,18441,18256,18439 ,0,0,0}, - {33631,33586,33590 ,18439,18440,18441 ,0,0,0}, {31657,33439,33590 ,18002,18256,18441 ,0,0,0}, - {33629,33626,33587 ,18436,18430,18429 ,0,0,0}, {33627,33585,33626 ,18432,18431,18430 ,0,0,0}, - {33627,33623,33584 ,18432,18426,18433 ,0,0,0}, {33621,33580,33625 ,18422,18442,324 ,0,0,0}, - {33583,33624,31628 ,18425,18427,18428 ,0,0,0}, {33584,33623,33583 ,18433,18426,18425 ,0,0,0}, - {33625,33580,31628 ,324,18442,18428 ,0,0,0}, {33580,33621,33581 ,18442,18422,18421 ,0,0,0}, - {33622,33582,33620 ,18424,18239,18420 ,0,0,0}, {33582,33581,33620 ,18239,18421,18420 ,0,0,0}, - {33578,33632,33579 ,18423,18443,18414 ,0,0,0}, {33632,33578,33622 ,18443,18423,18424 ,0,0,0}, - {33618,33611,33617 ,18417,18416,18415 ,0,0,0}, {33632,33617,33579 ,18443,18415,18414 ,0,0,0}, - {33574,33619,33575 ,18419,18418,18412 ,0,0,0}, {33611,33618,33574 ,18416,18417,18419 ,0,0,0}, - {31643,33616,33423 ,18353,18413,3345 ,0,0,0}, {33575,33619,33616 ,18412,18418,18413 ,0,0,0}, - {33444,33633,33571 ,18444,18444,18113 ,0,0,0}, {33444,33634,33635 ,18444,18113,18113 ,0,0,0}, - {33444,33635,33633 ,18444,18113,18444 ,0,0,0}, {33633,33572,33571 ,18444,18113,18113 ,0,0,0}, - {33522,33524,33636 ,7758,7880,7627 ,0,0,0}, {33530,33531,33637 ,726,726,7627 ,0,0,0}, - {33516,33638,33639 ,726,18445,7755 ,0,0,0}, {33640,33518,33641 ,8017,7627,7627 ,0,0,0}, - {33642,33489,33643 ,18446,7758,18447 ,0,0,0}, {33643,33512,33644 ,18447,7264,7249 ,0,0,0}, - {33645,33495,33646 ,18448,7627,18449 ,0,0,0}, {33639,33647,33513 ,7755,8018,7755 ,0,0,0}, - {33492,33648,33646 ,7761,18450,18449 ,0,0,0}, {33649,33497,33495 ,18451,726,7627 ,0,0,0}, - {33497,33649,33650 ,726,18451,726 ,0,0,0}, {33490,33642,33648 ,7755,18446,18450 ,0,0,0}, - {33651,33501,33650 ,7264,7627,726 ,0,0,0}, {33499,33652,33502 ,7758,7264,7880 ,0,0,0}, - {33653,33654,33504 ,726,7880,7627 ,0,0,0}, {33655,33532,33656 ,726,7627,726 ,0,0,0}, - {33657,33543,33544 ,726,7627,7627 ,0,0,0}, {33654,33658,33507 ,7880,7627,7880 ,0,0,0}, - {33508,33564,33659 ,7627,7627,726 ,0,0,0}, {33563,33660,33659 ,7627,7627,726 ,0,0,0}, - {33561,33661,33558 ,7625,7627,7627 ,0,0,0}, {33559,33558,33662 ,726,7627,726 ,0,0,0}, - {33542,33663,33544 ,7627,726,7627 ,0,0,0}, {33660,33563,33559 ,7627,7627,726 ,0,0,0}, - {33664,33555,33556 ,7627,726,726 ,0,0,0}, {33553,33555,33665 ,7627,726,7627 ,0,0,0}, - {33530,33637,33666 ,726,7627,726 ,0,0,0}, {33666,33667,33552 ,726,7627,7627 ,0,0,0}, - {33668,33548,33545 ,7627,726,726 ,0,0,0}, {33667,33556,33549 ,7627,726,726 ,0,0,0}, - {33668,33543,33657 ,7627,7627,726 ,0,0,0}, {33548,33669,33531 ,726,726,726 ,0,0,0}, - {33661,33553,33665 ,7627,7627,7627 ,0,0,0}, {33542,33529,33670 ,7627,7625,726 ,0,0,0}, - {33655,33528,33532 ,726,726,7627 ,0,0,0}, {33656,33532,33534 ,726,7627,726 ,0,0,0}, - {33528,33655,33670 ,726,726,726 ,0,0,0}, {33658,33566,33508 ,7627,7627,7627 ,0,0,0}, - {33671,33534,33536 ,726,726,7627 ,0,0,0}, {33534,33671,33656 ,726,726,726 ,0,0,0}, - {33525,33536,33538 ,7627,7627,7627 ,0,0,0}, {33525,33671,33536 ,7627,726,7627 ,0,0,0}, - {33538,33672,33525 ,7627,7758,7627 ,0,0,0}, {33673,33641,33519 ,7758,7627,7758 ,0,0,0}, - {33651,33674,33499 ,7264,7761,7758 ,0,0,0}, {33642,33490,33489 ,18446,7755,7758 ,0,0,0}, - {33529,33528,33670 ,7625,726,726 ,0,0,0}, {33663,33542,33670 ,726,7627,726 ,0,0,0}, - {33657,33544,33663 ,726,7627,726 ,0,0,0}, {33545,33543,33668 ,726,7627,7627 ,0,0,0}, - {33669,33548,33668 ,726,726,7627 ,0,0,0}, {33637,33531,33669 ,7627,726,726 ,0,0,0}, - {33552,33530,33666 ,7627,726,726 ,0,0,0}, {33549,33552,33667 ,726,7627,7627 ,0,0,0}, - {33664,33556,33667 ,7627,726,7627 ,0,0,0}, {33665,33555,33664 ,7627,726,7627 ,0,0,0}, - {33561,33553,33661 ,7625,7627,7627 ,0,0,0}, {33662,33558,33661 ,726,7627,7627 ,0,0,0}, - {33660,33559,33662 ,7627,726,726 ,0,0,0}, {33564,33563,33659 ,7627,7627,726 ,0,0,0}, - {33566,33564,33508 ,7627,7627,7627 ,0,0,0}, {33507,33658,33508 ,7880,7627,7627 ,0,0,0}, - {33504,33654,33507 ,7627,7880,7880 ,0,0,0}, {33652,33653,33502 ,7264,726,7880 ,0,0,0}, - {33653,33504,33502 ,726,7627,7880 ,0,0,0}, {33674,33652,33499 ,7761,7264,7758 ,0,0,0}, - {33501,33651,33499 ,7627,7264,7758 ,0,0,0}, {33497,33650,33501 ,726,726,7627 ,0,0,0}, - {33645,33649,33495 ,18448,18451,7627 ,0,0,0}, {33492,33646,33495 ,7761,18449,7627 ,0,0,0}, - {33490,33648,33492 ,7755,18450,7761 ,0,0,0}, {33643,33489,33512 ,18447,7758,7264 ,0,0,0}, - {33647,33644,33512 ,8018,7249,7264 ,0,0,0}, {33516,33639,33513 ,726,7755,7755 ,0,0,0}, - {33513,33647,33512 ,7755,8018,7264 ,0,0,0}, {33518,33638,33516 ,7627,18445,726 ,0,0,0}, - {33518,33519,33641 ,7627,7758,7627 ,0,0,0}, {33518,33640,33638 ,7627,8017,18445 ,0,0,0}, - {33519,33522,33673 ,7758,7758,7758 ,0,0,0}, {33636,33524,33672 ,7627,7880,7758 ,0,0,0}, - {33673,33522,33636 ,7758,7758,7627 ,0,0,0}, {33525,33672,33524 ,7627,7758,7880 ,0,0,0}, - {33634,33471,33675 ,1398,18452,18452 ,0,0,0}, {33612,33614,33471 ,18453,18453,18452 ,0,0,0}, - {33614,33675,33471 ,18453,18452,18452 ,0,0,0}, {33675,33635,33634 ,18452,1398,1398 ,0,0,0}, - {33676,33538,33539 ,18454,18092,18121 ,0,0,0}, {33641,33673,33570 ,18455,18456,18457 ,0,0,0}, - {33677,33636,33678 ,18458,18459,18460 ,0,0,0}, {33640,33679,33638 ,18461,18462,18463 ,0,0,0}, - {33680,33633,33642 ,18464,7309,18465 ,0,0,0}, {33681,33644,33647 ,18466,18467,18468 ,0,0,0}, - {33650,33649,33682 ,18469,18470,18471 ,0,0,0}, {33645,33646,33683 ,18472,18473,18474 ,0,0,0}, - {33651,33684,33674 ,18475,18476,18477 ,0,0,0}, {33675,33653,33652 ,18478,18479,18480 ,0,0,0}, - {33674,33675,33652 ,18477,18478,18480 ,0,0,0}, {33653,33685,33654 ,18479,18481,18482 ,0,0,0}, - {33685,33653,33675 ,18481,18479,18478 ,0,0,0}, {33685,33686,33654 ,18481,18483,18482 ,0,0,0}, - {33687,33658,33686 ,18484,18485,18483 ,0,0,0}, {33654,33686,33658 ,18482,18483,18485 ,0,0,0}, - {33687,33568,33566 ,18484,18486,82 ,0,0,0}, {33566,33658,33687 ,82,18485,18484 ,0,0,0}, - {33682,33684,33651 ,18471,18476,18475 ,0,0,0}, {33674,33684,33675 ,18477,18476,18478 ,0,0,0}, - {33649,33688,33682 ,18470,18487,18471 ,0,0,0}, {33651,33650,33682 ,18475,18469,18471 ,0,0,0}, - {33683,33688,33645 ,18474,18487,18472 ,0,0,0}, {33649,33645,33688 ,18470,18472,18487 ,0,0,0}, - {33683,33648,33633 ,18474,18488,7309 ,0,0,0}, {33646,33648,33683 ,18473,18488,18474 ,0,0,0}, - {33680,33642,33643 ,18464,18465,18489 ,0,0,0}, {33633,33648,33642 ,7309,18488,18465 ,0,0,0}, - {33644,33681,33680 ,18467,18466,18464 ,0,0,0}, {33680,33643,33644 ,18464,18489,18467 ,0,0,0}, - {33639,33689,33647 ,18490,18491,18468 ,0,0,0}, {33689,33681,33647 ,18491,18466,18468 ,0,0,0}, - {33689,33638,33679 ,18491,18463,18462 ,0,0,0}, {33638,33689,33639 ,18463,18491,18490 ,0,0,0}, - {33640,33641,33570 ,18461,18455,18457 ,0,0,0}, {33640,33570,33679 ,18461,18457,18462 ,0,0,0}, - {33673,33636,33677 ,18456,18459,18458 ,0,0,0}, {33673,33677,33570 ,18456,18458,18457 ,0,0,0}, - {33678,33672,33676 ,18460,18492,18454 ,0,0,0}, {33636,33672,33678 ,18459,18492,18460 ,0,0,0}, - {33538,33676,33672 ,18092,18454,18492 ,0,0,0}, {33562,33614,33565 ,7792,726,7658 ,0,0,0}, - {33614,33557,33565 ,726,726,7658 ,0,0,0}, {33568,33614,33567 ,7664,726,7662 ,0,0,0}, - {33614,33562,33567 ,726,7792,7662 ,0,0,0}, {33686,33614,33687 ,7662,726,5488 ,0,0,0}, - {33614,33568,33687 ,726,7664,5488 ,0,0,0}, {33675,33614,33685 ,726,726,726 ,0,0,0}, - {33614,33686,33685 ,726,7662,726 ,0,0,0}, {33689,33572,33681 ,726,726,17470 ,0,0,0}, - {33681,33572,33680 ,17470,726,7628 ,0,0,0}, {33572,33633,33680 ,726,726,7628 ,0,0,0}, - {33572,33679,33570 ,726,726,726 ,0,0,0}, {33572,33689,33679 ,726,726,726 ,0,0,0}, - {33540,33487,33527 ,726,726,726 ,0,0,0}, {33546,33487,33541 ,7661,726,7659 ,0,0,0}, - {33487,33540,33541 ,726,726,7659 ,0,0,0}, {33483,33487,33547 ,7661,726,7661 ,0,0,0}, - {33487,33546,33547 ,726,7661,7661 ,0,0,0}, {33488,33551,33550 ,7660,7660,7660 ,0,0,0}, - {33483,33551,33488 ,726,7660,7660 ,0,0,0}, {33488,33560,33557 ,7660,726,726 ,0,0,0}, - {33488,33554,33560 ,7660,7658,726 ,0,0,0}, {33550,33554,33488 ,7660,7658,7660 ,0,0,0}, - {33675,33684,33635 ,726,726,726 ,0,0,0}, {33688,33635,33682 ,726,726,7661 ,0,0,0}, - {33684,33682,33635 ,726,7661,726 ,0,0,0}, {33683,33633,33635 ,726,726,726 ,0,0,0}, - {33683,33635,33688 ,726,726,726 ,0,0,0}, {33677,33573,33570 ,726,726,726 ,0,0,0}, - {33676,33573,33678 ,726,726,726 ,0,0,0}, {33573,33677,33678 ,726,726,726 ,0,0,0}, - {33537,33573,33539 ,726,726,726 ,0,0,0}, {33573,33676,33539 ,726,726,726 ,0,0,0}, - {33533,33573,33535 ,726,726,7660 ,0,0,0}, {33573,33537,33535 ,726,726,7660 ,0,0,0}, - {33527,33573,33533 ,726,726,726 ,0,0,0}, {33523,33521,33690 ,726,726,7583 ,0,0,0}, - {33691,33692,33693 ,726,726,726 ,0,0,0}, {33694,33691,33526 ,726,726,726 ,0,0,0}, - {33690,33695,33523 ,7583,7583,726 ,0,0,0}, {33696,33697,33693 ,726,726,726 ,0,0,0}, - {33698,33699,33692 ,726,726,726 ,0,0,0}, {33696,33693,33699 ,726,726,726 ,0,0,0}, - {33692,33699,33693 ,726,726,726 ,0,0,0}, {33693,33700,33691 ,726,726,726 ,0,0,0}, - {33523,33694,33526 ,726,726,726 ,0,0,0}, {33526,33691,33700 ,726,726,726 ,0,0,0}, - {33690,33521,33520 ,7583,726,726 ,0,0,0}, {33523,33695,33694 ,726,7583,726 ,0,0,0}, - {33701,33520,33517 ,7583,726,726 ,0,0,0}, {33520,33701,33690 ,726,7583,7583 ,0,0,0}, - {33517,33702,33703 ,726,726,726 ,0,0,0}, {33701,33517,33703 ,7583,726,726 ,0,0,0}, - {33515,33702,33517 ,726,726,726 ,0,0,0}, {33702,33514,33704 ,726,726,726 ,0,0,0}, - {33514,33702,33515 ,726,726,726 ,0,0,0}, {33514,33511,33704 ,726,726,726 ,0,0,0}, - {33705,33511,33706 ,726,726,5489 ,0,0,0}, {33705,33704,33511 ,726,726,726 ,0,0,0}, - {33706,33510,33491 ,5489,7583,726 ,0,0,0}, {33511,33510,33706 ,726,7583,5489 ,0,0,0}, - {33494,33509,33491 ,7583,7583,726 ,0,0,0}, {33706,33491,33509 ,5489,726,7583 ,0,0,0}, - {33498,33505,33493 ,7583,7583,726 ,0,0,0}, {33493,33496,33498 ,726,726,7583 ,0,0,0}, - {33505,33500,33503 ,7583,7583,726 ,0,0,0}, {33505,33494,33493 ,7583,7583,726 ,0,0,0}, - {33505,33506,33494 ,7583,5489,7583 ,0,0,0}, {33505,33498,33500 ,7583,7583,7583 ,0,0,0}, - {33494,33506,33509 ,7583,5489,7583 ,0,0,0}, {33508,33659,33706 ,35,18493,18494 ,0,0,0}, - {33661,33702,33662 ,18495,18496,18497 ,0,0,0}, {33704,33705,33660 ,18498,18499,18500 ,0,0,0}, - {33690,33667,33695 ,18501,18502,18503 ,0,0,0}, {33665,33664,33701 ,18504,18505,18506 ,0,0,0}, - {33669,33692,33691 ,18507,18508,18509 ,0,0,0}, {33691,33694,33637 ,18509,18510,18511 ,0,0,0}, - {33663,33699,33657 ,18512,18513,18514 ,0,0,0}, {33698,33668,33657 ,18515,18516,18514 ,0,0,0}, - {33670,33697,33696 ,18517,18518,18519 ,0,0,0}, {33696,33663,33670 ,18519,18512,18517 ,0,0,0}, - {33697,33655,33693 ,18518,18520,18521 ,0,0,0}, {33655,33697,33670 ,18520,18518,18517 ,0,0,0}, - {33700,33693,33656 ,18522,18521,18523 ,0,0,0}, {33655,33656,33693 ,18520,18523,18521 ,0,0,0}, - {33671,33526,33700 ,18524,18188,18522 ,0,0,0}, {33700,33656,33671 ,18522,18523,18524 ,0,0,0}, - {33525,33526,33671 ,18188,18188,18524 ,0,0,0}, {33696,33699,33663 ,18519,18513,18512 ,0,0,0}, - {33698,33657,33699 ,18515,18514,18513 ,0,0,0}, {33698,33692,33668 ,18515,18508,18516 ,0,0,0}, - {33695,33666,33694 ,18503,18525,18510 ,0,0,0}, {33669,33691,33637 ,18507,18509,18511 ,0,0,0}, - {33668,33692,33669 ,18516,18508,18507 ,0,0,0}, {33694,33666,33637 ,18510,18525,18511 ,0,0,0}, - {33666,33695,33667 ,18525,18503,18502 ,0,0,0}, {33701,33664,33690 ,18506,18505,18501 ,0,0,0}, - {33664,33667,33690 ,18505,18502,18501 ,0,0,0}, {33665,33703,33661 ,18504,18526,18495 ,0,0,0}, - {33703,33665,33701 ,18526,18504,18506 ,0,0,0}, {33704,33662,33702 ,18498,18497,18496 ,0,0,0}, - {33703,33702,33661 ,18526,18496,18495 ,0,0,0}, {33660,33705,33659 ,18500,18499,18493 ,0,0,0}, - {33662,33704,33660 ,18497,18498,18500 ,0,0,0}, {33508,33706,33509 ,35,18494,763 ,0,0,0}, - {33659,33705,33706 ,18493,18499,18494 ,0,0,0}, {33707,33452,33453 ,18527,126,18026 ,0,0,0}, - {33592,33593,33615 ,18528,18529,18530 ,0,0,0}, {33708,33594,33709 ,18531,18532,18533 ,0,0,0}, - {33595,33710,33576 ,18534,18535,18536 ,0,0,0}, {33711,33485,33598 ,18537,10001,18538 ,0,0,0}, - {33712,33600,33596 ,18539,18540,18541 ,0,0,0}, {33603,33604,33713 ,18542,18543,18544 ,0,0,0}, - {33602,33601,33714 ,18545,18546,18547 ,0,0,0}, {33605,33715,33607 ,18548,18549,18550 ,0,0,0}, - {33613,33606,33608 ,18551,18552,18553 ,0,0,0}, {33607,33613,33608 ,18550,18551,18553 ,0,0,0}, - {33606,33716,33609 ,18552,18554,18555 ,0,0,0}, {33716,33606,33613 ,18554,18552,18551 ,0,0,0}, - {33716,33717,33609 ,18554,18556,18555 ,0,0,0}, {33718,33610,33717 ,18557,18558,18556 ,0,0,0}, - {33609,33717,33610 ,18555,18556,18558 ,0,0,0}, {33718,33482,33480 ,18557,5000,18205 ,0,0,0}, - {33480,33610,33718 ,18205,18558,18557 ,0,0,0}, {33713,33715,33605 ,18544,18549,18548 ,0,0,0}, - {33607,33715,33613 ,18550,18549,18551 ,0,0,0}, {33604,33719,33713 ,18543,18559,18544 ,0,0,0}, - {33605,33603,33713 ,18548,18542,18544 ,0,0,0}, {33714,33719,33602 ,18547,18559,18545 ,0,0,0}, - {33604,33602,33719 ,18543,18545,18559 ,0,0,0}, {33714,33599,33485 ,18547,18560,10001 ,0,0,0}, - {33601,33599,33714 ,18546,18560,18547 ,0,0,0}, {33711,33598,33597 ,18537,18538,18561 ,0,0,0}, - {33485,33599,33598 ,10001,18560,18538 ,0,0,0}, {33600,33712,33711 ,18540,18539,18537 ,0,0,0}, - {33711,33597,33600 ,18537,18561,18540 ,0,0,0}, {33577,33720,33596 ,18562,18563,18541 ,0,0,0}, - {33720,33712,33596 ,18563,18539,18541 ,0,0,0}, {33720,33576,33710 ,18563,18536,18535 ,0,0,0}, - {33576,33720,33577 ,18536,18563,18562 ,0,0,0}, {33595,33592,33615 ,18534,18528,18530 ,0,0,0}, - {33595,33615,33710 ,18534,18530,18535 ,0,0,0}, {33593,33594,33708 ,18529,18532,18531 ,0,0,0}, - {33593,33708,33615 ,18529,18531,18530 ,0,0,0}, {33709,33591,33707 ,18533,18564,18527 ,0,0,0}, - {33594,33591,33709 ,18532,18564,18533 ,0,0,0}, {33452,33707,33591 ,126,18527,18564 ,0,0,0}, - {33486,33720,33710 ,17561,17561,730 ,0,0,0}, {33711,33486,33485 ,730,17561,730 ,0,0,0}, - {33720,33486,33712 ,17561,17561,730 ,0,0,0}, {33486,33711,33712 ,17561,730,730 ,0,0,0}, - {33710,33615,33486 ,730,7376,17561 ,0,0,0}, {33479,33612,33471 ,18207,730,730 ,0,0,0}, - {33612,33718,33717 ,730,730,730 ,0,0,0}, {33481,33612,33476 ,17561,730,7433 ,0,0,0}, - {33612,33479,33476 ,730,18207,7433 ,0,0,0}, {33718,33612,33482 ,730,730,17561 ,0,0,0}, - {33612,33481,33482 ,730,17561,17561 ,0,0,0}, {33717,33716,33612 ,730,7433,730 ,0,0,0}, - {33716,33613,33612 ,7433,730,730 ,0,0,0}, {33455,33571,33454 ,7017,730,730 ,0,0,0}, - {33571,33440,33454 ,730,11465,730 ,0,0,0}, {33461,33571,33460 ,18565,730,730 ,0,0,0}, - {33571,33455,33460 ,730,7017,730 ,0,0,0}, {33444,33571,33461 ,18566,730,18565 ,0,0,0}, - {33719,33484,33713 ,730,7376,17561 ,0,0,0}, {33715,33713,33484 ,730,17561,7376 ,0,0,0}, - {33613,33715,33484 ,730,730,7376 ,0,0,0}, {33714,33485,33484 ,7376,730,7376 ,0,0,0}, - {33714,33484,33719 ,7376,7376,730 ,0,0,0}, {33465,33464,33634 ,18207,18207,9877 ,0,0,0}, - {33444,33465,33634 ,18567,18207,9877 ,0,0,0}, {33468,33474,33634 ,730,9878,9877 ,0,0,0}, - {33468,33634,33464 ,730,9877,18207 ,0,0,0}, {33471,33634,33474 ,730,9877,9878 ,0,0,0}, - {33615,33708,33569 ,730,730,730 ,0,0,0}, {33569,33707,33453 ,730,730,9877 ,0,0,0}, - {33707,33569,33709 ,730,730,730 ,0,0,0}, {33569,33708,33709 ,730,730,730 ,0,0,0}, - {33453,33451,33569 ,9877,730,730 ,0,0,0}, {33569,33449,33447 ,730,9878,730 ,0,0,0}, - {33451,33449,33569 ,730,9878,730 ,0,0,0}, {33447,33440,33569 ,730,730,730 ,0,0,0}, - {33616,33619,33425 ,730,730,9878 ,0,0,0}, {33409,33408,33420 ,730,730,730 ,0,0,0}, - {33406,33409,33423 ,9875,730,730 ,0,0,0}, {33425,33424,33616 ,9878,730,730 ,0,0,0}, - {33415,33418,33420 ,730,730,730 ,0,0,0}, {33411,33413,33408 ,730,730,730 ,0,0,0}, - {33415,33420,33413 ,730,730,730 ,0,0,0}, {33408,33413,33420 ,730,730,730 ,0,0,0}, - {33420,33421,33409 ,730,730,730 ,0,0,0}, {33616,33406,33423 ,730,9875,730 ,0,0,0}, - {33423,33409,33421 ,730,730,730 ,0,0,0}, {33425,33619,33618 ,9878,730,730 ,0,0,0}, - {33616,33424,33406 ,730,730,9875 ,0,0,0}, {33428,33618,33617 ,9878,730,730 ,0,0,0}, - {33618,33428,33425 ,730,9878,9878 ,0,0,0}, {33617,33431,33429 ,730,730,730 ,0,0,0}, - {33428,33617,33429 ,9878,730,730 ,0,0,0}, {33632,33431,33617 ,730,730,730 ,0,0,0}, - {33431,33622,33434 ,730,9875,9878 ,0,0,0}, {33622,33431,33632 ,9875,730,730 ,0,0,0}, - {33622,33620,33434 ,9875,730,9878 ,0,0,0}, {33435,33620,33437 ,9878,730,730 ,0,0,0}, - {33435,33434,33620 ,9878,9878,730 ,0,0,0}, {33437,33621,33625 ,730,9875,9875 ,0,0,0}, - {33620,33621,33437 ,730,9875,730 ,0,0,0}, {33624,33439,33625 ,730,9878,9875 ,0,0,0}, - {33437,33625,33439 ,730,9875,9878 ,0,0,0}, {33626,33630,33623 ,9878,9878,730 ,0,0,0}, - {33623,33627,33626 ,730,9878,9878 ,0,0,0}, {33630,33629,33628 ,9878,9878,9877 ,0,0,0}, - {33630,33624,33623 ,9878,730,730 ,0,0,0}, {33630,33631,33624 ,9878,730,730 ,0,0,0}, - {33630,33626,33629 ,9878,9878,9878 ,0,0,0}, {33624,33631,33439 ,730,730,9878 ,0,0,0} -// M3abstandhalter10mm.prt - , {33721,32535,33722 ,18258,18259,18260 ,0,0,0}, {33723,33724,33725 ,18261,18262,18263 ,0,0,0}, - {33722,32535,33725 ,18260,18259,18263 ,0,0,0}, {33724,33723,33726 ,18262,18261,18264 ,0,0,0}, - {33726,33727,33724 ,18264,18265,18262 ,0,0,0}, {33727,33728,33729 ,18265,18266,18267 ,0,0,0}, - {33726,33728,33727 ,18264,18266,18265 ,0,0,0}, {33723,33725,32535 ,18261,18263,18259 ,0,0,0}, - {33730,33731,33732 ,18268,18269,18270 ,0,0,0}, {33731,33729,33732 ,18269,18267,18270 ,0,0,0}, - {33730,33733,33734 ,18268,18271,18272 ,0,0,0}, {33734,33731,33730 ,18272,18269,18268 ,0,0,0}, - {33733,33735,33736 ,18271,18273,18274 ,0,0,0}, {33733,33736,33734 ,18271,18274,18272 ,0,0,0}, - {33728,33732,33729 ,18266,18270,18267 ,0,0,0}, {33737,33736,33735 ,18275,18274,18273 ,0,0,0}, - {33738,31708,33739 ,18276,18277,126 ,0,0,0}, {33738,33739,33737 ,18276,126,18275 ,0,0,0}, - {33735,33738,33737 ,18273,18276,18275 ,0,0,0}, {33721,33722,33740 ,18258,18260,18278 ,0,0,0}, - {33740,33741,33742 ,18278,18279,18280 ,0,0,0}, {33742,33721,33740 ,18280,18258,18278 ,0,0,0}, - {33743,33741,33744 ,18281,18279,18282 ,0,0,0}, {33741,33743,33742 ,18279,18281,18280 ,0,0,0}, - {33745,33746,33744 ,18283,18284,18282 ,0,0,0}, {33743,33744,33746 ,18281,18282,18284 ,0,0,0}, - {33745,33747,33748 ,18283,18285,18286 ,0,0,0}, {33748,33746,33745 ,18286,18284,18283 ,0,0,0}, - {33749,33747,33750 ,18287,18285,18288 ,0,0,0}, {33747,33749,33748 ,18285,18287,18286 ,0,0,0}, - {33751,33752,33750 ,18289,18290,18288 ,0,0,0}, {33749,33750,33752 ,18287,18288,18290 ,0,0,0}, - {33751,33753,33754 ,18289,18291,18292 ,0,0,0}, {33754,33752,33751 ,18292,18290,18289 ,0,0,0}, - {31722,33753,33755 ,18293,18291,18003 ,0,0,0}, {33753,31722,33754 ,18291,18293,18292 ,0,0,0}, - {33756,33757,33758 ,18294,18295,18296 ,0,0,0}, {33759,33760,33761 ,18297,21,18298 ,0,0,0}, - {33762,33756,33763 ,18299,18294,18300 ,0,0,0}, {33756,33762,33757 ,18294,18299,18295 ,0,0,0}, - {33762,33763,33764 ,18299,18300,18301 ,0,0,0}, {33765,33766,33764 ,18302,18303,18301 ,0,0,0}, - {33764,33763,33765 ,18301,18300,18302 ,0,0,0}, {33766,33767,33768 ,18303,18304,126 ,0,0,0}, - {33767,33766,33765 ,18304,18303,18302 ,0,0,0}, {33767,33769,33768 ,18304,3135,126 ,0,0,0}, - {33756,33758,33770 ,18294,18296,18305 ,0,0,0}, {33771,33770,33772 ,18306,18305,18307 ,0,0,0}, - {33758,33772,33770 ,18296,18307,18305 ,0,0,0}, {33773,33771,33774 ,18308,18306,18309 ,0,0,0}, - {33771,33772,33774 ,18306,18307,18309 ,0,0,0}, {33773,33775,33776 ,18308,18310,18311 ,0,0,0}, - {33776,33771,33773 ,18311,18306,18308 ,0,0,0}, {33777,33775,33778 ,18312,18310,18313 ,0,0,0}, - {33775,33777,33776 ,18310,18312,18311 ,0,0,0}, {33760,33777,33761 ,21,18312,18298 ,0,0,0}, - {33778,33761,33777 ,18313,18298,18312 ,0,0,0}, {33779,33780,33781 ,18314,18315,18316 ,0,0,0}, - {33759,33782,33781 ,18297,18317,18316 ,0,0,0}, {33783,33784,33785 ,18318,18319,18320 ,0,0,0}, - {33784,33780,33786 ,18319,18315,18321 ,0,0,0}, {33787,33788,33789 ,18322,18323,18324 ,0,0,0}, - {33790,33791,33787 ,18325,18326,18322 ,0,0,0}, {33792,33793,33794 ,18327,18328,18329 ,0,0,0}, - {33793,33792,33795 ,18328,18327,18330 ,0,0,0}, {33796,33797,33794 ,18037,18331,18329 ,0,0,0}, - {33792,33794,33797 ,18327,18329,18331 ,0,0,0}, {33798,33797,33796 ,18038,18331,18037 ,0,0,0}, - {33789,33795,33787 ,18324,18330,18322 ,0,0,0}, {33789,33793,33795 ,18324,18328,18330 ,0,0,0}, - {33784,33783,33790 ,18319,18318,18325 ,0,0,0}, {33787,33791,33788 ,18322,18326,18323 ,0,0,0}, - {33790,33783,33791 ,18325,18318,18326 ,0,0,0}, {33780,33779,33786 ,18315,18314,18321 ,0,0,0}, - {33785,33784,33786 ,18320,18319,18321 ,0,0,0}, {33781,33760,33759 ,18316,21,18297 ,0,0,0}, - {33779,33781,33782 ,18314,18316,18317 ,0,0,0}, {33799,33800,33801 ,18332,1077,18332 ,0,0,0}, - {33802,33803,33801 ,18333,18333,18332 ,0,0,0}, {33803,33799,33801 ,18333,18332,18332 ,0,0,0}, - {33799,33804,33800 ,18332,18334,1077 ,0,0,0}, {33805,33806,33807 ,18335,18336,324 ,0,0,0}, - {33808,33809,33810 ,18337,18338,18339 ,0,0,0}, {33807,33806,33810 ,324,18336,18339 ,0,0,0}, - {33809,33808,33811 ,18338,18337,18340 ,0,0,0}, {33811,33812,33809 ,18340,18341,18338 ,0,0,0}, - {33812,33813,33814 ,18341,18342,18343 ,0,0,0}, {33811,33813,33812 ,18340,18342,18341 ,0,0,0}, - {33808,33810,33806 ,18337,18339,18336 ,0,0,0}, {33815,33816,33817 ,18344,18345,18346 ,0,0,0}, - {33816,33814,33817 ,18345,18343,18346 ,0,0,0}, {33815,33818,33819 ,18344,18347,18348 ,0,0,0}, - {33819,33816,33815 ,18348,18345,18344 ,0,0,0}, {33818,33820,33821 ,18347,18349,18350 ,0,0,0}, - {33818,33821,33819 ,18347,18350,18348 ,0,0,0}, {33813,33817,33814 ,18342,18346,18343 ,0,0,0}, - {33822,33821,33820 ,18351,18350,18349 ,0,0,0}, {33823,33824,33825 ,18352,18353,126 ,0,0,0}, - {33823,33825,33822 ,18352,126,18351 ,0,0,0}, {33820,33823,33822 ,18349,18352,18351 ,0,0,0}, - {33805,33807,33826 ,18335,324,18354 ,0,0,0}, {33826,33827,33828 ,18354,18355,18356 ,0,0,0}, - {33828,33805,33826 ,18356,18335,18354 ,0,0,0}, {33829,33827,33830 ,18357,18355,18358 ,0,0,0}, - {33827,33829,33828 ,18355,18357,18356 ,0,0,0}, {33831,33832,33830 ,18359,18360,18358 ,0,0,0}, - {33829,33830,33832 ,18357,18358,18360 ,0,0,0}, {33831,33833,33834 ,18359,18361,18362 ,0,0,0}, - {33834,33832,33831 ,18362,18360,18359 ,0,0,0}, {33835,33833,33836 ,18363,18361,18364 ,0,0,0}, - {33833,33835,33834 ,18361,18363,18362 ,0,0,0}, {33837,33838,33836 ,18365,18366,18364 ,0,0,0}, - {33835,33836,33838 ,18363,18364,18366 ,0,0,0}, {33837,33839,33840 ,18365,18367,18368 ,0,0,0}, - {33840,33838,33837 ,18368,18366,18365 ,0,0,0}, {33841,33839,33842 ,18369,18367,18188 ,0,0,0}, - {33839,33841,33840 ,18367,18369,18368 ,0,0,0}, {33843,33844,33845 ,18370,18371,18372 ,0,0,0}, - {33846,33799,33847 ,18373,324,18374 ,0,0,0}, {33848,33843,33849 ,18375,18370,18376 ,0,0,0}, - {33843,33848,33844 ,18370,18375,18371 ,0,0,0}, {33848,33849,33850 ,18375,18376,18377 ,0,0,0}, - {33851,33852,33850 ,18378,18379,18377 ,0,0,0}, {33850,33849,33851 ,18377,18376,18378 ,0,0,0}, - {33852,33853,33854 ,18379,18380,18092 ,0,0,0}, {33853,33852,33851 ,18380,18379,18378 ,0,0,0}, - {33853,33855,33854 ,18380,18381,18092 ,0,0,0}, {33843,33845,33856 ,18370,18372,18382 ,0,0,0}, - {33857,33856,33858 ,18383,18382,18384 ,0,0,0}, {33845,33858,33856 ,18372,18384,18382 ,0,0,0}, - {33859,33857,33860 ,18385,18383,18386 ,0,0,0}, {33857,33858,33860 ,18383,18384,18386 ,0,0,0}, - {33859,33861,33862 ,18385,18387,18388 ,0,0,0}, {33862,33857,33859 ,18388,18383,18385 ,0,0,0}, - {33863,33861,33864 ,18389,18387,18390 ,0,0,0}, {33861,33863,33862 ,18387,18389,18388 ,0,0,0}, - {33799,33863,33847 ,324,18389,18374 ,0,0,0}, {33864,33847,33863 ,18390,18374,18389 ,0,0,0}, - {33865,33866,33867 ,18391,18392,18393 ,0,0,0}, {33846,33868,33867 ,18373,18394,18393 ,0,0,0}, - {33869,33870,33871 ,18395,18396,18397 ,0,0,0}, {33870,33866,33872 ,18396,18392,18398 ,0,0,0}, - {33873,33874,33875 ,18399,18400,18401 ,0,0,0}, {33876,33877,33873 ,18402,18403,18399 ,0,0,0}, - {33878,33879,33880 ,18404,18405,18406 ,0,0,0}, {33879,33878,33881 ,18405,18404,18407 ,0,0,0}, - {33882,33883,33880 ,82,18408,18406 ,0,0,0}, {33878,33880,33883 ,18404,18406,18408 ,0,0,0}, - {33884,33883,33882 ,18103,18408,82 ,0,0,0}, {33875,33881,33873 ,18401,18407,18399 ,0,0,0}, - {33875,33879,33881 ,18401,18405,18407 ,0,0,0}, {33870,33869,33876 ,18396,18395,18402 ,0,0,0}, - {33873,33877,33874 ,18399,18403,18400 ,0,0,0}, {33876,33869,33877 ,18402,18395,18403 ,0,0,0}, - {33866,33865,33872 ,18392,18391,18398 ,0,0,0}, {33871,33870,33872 ,18397,18396,18398 ,0,0,0}, - {33867,33799,33846 ,18393,324,18373 ,0,0,0}, {33865,33867,33868 ,18391,18393,18394 ,0,0,0}, - {33885,33756,33886 ,2197,2197,2197 ,0,0,0}, {33887,33888,33756 ,2197,2197,2197 ,0,0,0}, - {33888,33886,33756 ,2197,2197,2197 ,0,0,0}, {33886,33889,33885 ,2197,2197,2197 ,0,0,0}, - {33890,33891,33793 ,730,730,730 ,0,0,0}, {33746,33892,33893 ,730,730,730 ,0,0,0}, - {33894,33895,33783 ,730,730,730 ,0,0,0}, {33791,33895,33788 ,730,730,730 ,0,0,0}, - {33759,33896,33782 ,730,730,730 ,0,0,0}, {33782,33897,33779 ,730,730,730 ,0,0,0}, - {33898,33785,33786 ,730,730,730 ,0,0,0}, {33778,33899,33761 ,730,730,730 ,0,0,0}, - {33775,33900,33778 ,730,730,730 ,0,0,0}, {33901,33900,33773 ,730,730,730 ,0,0,0}, - {33773,33774,33901 ,730,730,730 ,0,0,0}, {33762,33764,33902 ,730,730,730 ,0,0,0}, - {33903,33774,33772 ,730,730,730 ,0,0,0}, {33757,33904,33905 ,730,730,730 ,0,0,0}, - {33906,33764,33766 ,730,730,730 ,0,0,0}, {31722,33766,33768 ,730,730,730 ,0,0,0}, - {31722,33907,33754 ,730,730,730 ,0,0,0}, {33908,33749,33909 ,730,730,730 ,0,0,0}, - {33752,33754,33910 ,730,730,730 ,0,0,0}, {33752,33910,33909 ,730,730,730 ,0,0,0}, - {33908,33911,33748 ,730,730,730 ,0,0,0}, {33746,33748,33892 ,730,730,730 ,0,0,0}, - {33758,33905,33772 ,730,730,730 ,0,0,0}, {33743,33893,33912 ,730,730,730 ,0,0,0}, - {33721,33742,33913 ,730,730,730 ,0,0,0}, {33721,33914,32535 ,730,730,730 ,0,0,0}, - {33914,33915,32535 ,730,730,730 ,0,0,0}, {33742,33912,33916 ,730,730,730 ,0,0,0}, - {33917,33723,33915 ,730,730,730 ,0,0,0}, {33726,33917,33918 ,730,730,730 ,0,0,0}, - {33919,33728,33920 ,730,730,730 ,0,0,0}, {33728,33726,33920 ,730,730,730 ,0,0,0}, - {33732,33919,33921 ,730,730,730 ,0,0,0}, {33922,33735,33733 ,730,730,730 ,0,0,0}, - {33923,33730,33921 ,730,730,730 ,0,0,0}, {33922,33733,33924 ,730,730,730 ,0,0,0}, - {33896,33759,31692 ,730,730,730 ,0,0,0}, {33738,33735,33925 ,730,730,730 ,0,0,0}, - {33922,33925,33735 ,730,730,730 ,0,0,0}, {33738,33926,31708 ,730,730,730 ,0,0,0}, - {33926,33738,33925 ,730,730,730 ,0,0,0}, {31708,33796,33794 ,730,730,730 ,0,0,0}, - {33926,33796,31708 ,730,730,730 ,0,0,0}, {33927,33890,33789 ,730,730,730 ,0,0,0}, - {31692,33759,33761 ,730,730,730 ,0,0,0}, {33923,33924,33730 ,730,730,730 ,0,0,0}, - {33924,33733,33730 ,730,730,730 ,0,0,0}, {33732,33921,33730 ,730,730,730 ,0,0,0}, - {33728,33919,33732 ,730,730,730 ,0,0,0}, {33918,33920,33726 ,730,730,730 ,0,0,0}, - {33723,33917,33726 ,730,730,730 ,0,0,0}, {32535,33915,33723 ,730,730,730 ,0,0,0}, - {33913,33914,33721 ,730,730,730 ,0,0,0}, {33916,33913,33742 ,730,730,730 ,0,0,0}, - {33743,33912,33742 ,730,730,730 ,0,0,0}, {33746,33893,33743 ,730,730,730 ,0,0,0}, - {33911,33892,33748 ,730,730,730 ,0,0,0}, {33749,33908,33748 ,730,730,730 ,0,0,0}, - {33752,33909,33749 ,730,730,730 ,0,0,0}, {33907,33910,33754 ,730,730,730 ,0,0,0}, - {33768,33907,31722 ,730,730,730 ,0,0,0}, {33906,33766,31722 ,730,730,730 ,0,0,0}, - {33902,33764,33906 ,730,730,730 ,0,0,0}, {33757,33762,33904 ,730,730,730 ,0,0,0}, - {33762,33902,33904 ,730,730,730 ,0,0,0}, {33758,33757,33905 ,730,730,730 ,0,0,0}, - {33903,33772,33905 ,730,730,730 ,0,0,0}, {33901,33774,33903 ,730,730,730 ,0,0,0}, - {33775,33773,33900 ,730,730,730 ,0,0,0}, {33899,33778,33900 ,730,730,730 ,0,0,0}, - {31692,33761,33899 ,730,730,730 ,0,0,0}, {33782,33896,33897 ,730,730,730 ,0,0,0}, - {33786,33779,33897 ,730,730,730 ,0,0,0}, {33894,33785,33898 ,730,730,730 ,0,0,0}, - {33898,33786,33897 ,730,730,730 ,0,0,0}, {33895,33791,33783 ,730,730,730 ,0,0,0}, - {33894,33783,33785 ,730,730,730 ,0,0,0}, {33895,33927,33788 ,730,730,730 ,0,0,0}, - {33789,33890,33793 ,730,730,730 ,0,0,0}, {33788,33927,33789 ,730,730,730 ,0,0,0}, - {33793,33891,33794 ,730,730,730 ,0,0,0}, {31708,33794,33891 ,730,730,730 ,0,0,0}, - {33928,33929,33873 ,18409,18410,18410 ,0,0,0}, {33929,33800,33804 ,18410,1433,1433 ,0,0,0}, - {33873,33929,33804 ,18410,18410,1433 ,0,0,0}, {33873,33930,33928 ,18410,18409,18409 ,0,0,0}, - {33802,33931,33843 ,2162,18411,18411 ,0,0,0}, {33931,33885,33889 ,18411,2162,2162 ,0,0,0}, - {33843,33931,33889 ,18411,18411,2162 ,0,0,0}, {33843,33803,33802 ,18411,2162,2162 ,0,0,0}, - {31708,33891,33932 ,18353,18412,18413 ,0,0,0}, {33895,33933,33927 ,18414,18415,18416 ,0,0,0}, - {33934,33935,33890 ,18417,18418,18419 ,0,0,0}, {33936,33897,33937 ,18420,18421,18422 ,0,0,0}, - {33894,33898,33938 ,18423,18239,18424 ,0,0,0}, {33899,33939,33940 ,18425,18426,18427 ,0,0,0}, - {33940,33941,31692 ,18427,324,18428 ,0,0,0}, {33903,33942,33901 ,18429,18430,18431 ,0,0,0}, - {33943,33900,33901 ,18432,18433,18431 ,0,0,0}, {33905,33944,33945 ,18434,18435,18436 ,0,0,0}, - {33945,33903,33905 ,18436,18429,18434 ,0,0,0}, {33944,33904,33946 ,18435,18437,18438 ,0,0,0}, - {33904,33944,33905 ,18437,18435,18434 ,0,0,0}, {33947,33946,33902 ,18439,18438,18440 ,0,0,0}, - {33904,33902,33946 ,18437,18440,18438 ,0,0,0}, {33906,33755,33947 ,18441,18256,18439 ,0,0,0}, - {33947,33902,33906 ,18439,18440,18441 ,0,0,0}, {31722,33755,33906 ,18002,18256,18441 ,0,0,0}, - {33945,33942,33903 ,18436,18430,18429 ,0,0,0}, {33943,33901,33942 ,18432,18431,18430 ,0,0,0}, - {33943,33939,33900 ,18432,18426,18433 ,0,0,0}, {33937,33896,33941 ,18422,18442,324 ,0,0,0}, - {33899,33940,31692 ,18425,18427,18428 ,0,0,0}, {33900,33939,33899 ,18433,18426,18425 ,0,0,0}, - {33941,33896,31692 ,324,18442,18428 ,0,0,0}, {33896,33937,33897 ,18442,18422,18421 ,0,0,0}, - {33938,33898,33936 ,18424,18239,18420 ,0,0,0}, {33898,33897,33936 ,18239,18421,18420 ,0,0,0}, - {33894,33948,33895 ,18423,18443,18414 ,0,0,0}, {33948,33894,33938 ,18443,18423,18424 ,0,0,0}, - {33934,33927,33933 ,18417,18416,18415 ,0,0,0}, {33948,33933,33895 ,18443,18415,18414 ,0,0,0}, - {33890,33935,33891 ,18419,18418,18412 ,0,0,0}, {33927,33934,33890 ,18416,18417,18419 ,0,0,0}, - {31708,33932,33739 ,18353,18413,3345 ,0,0,0}, {33891,33935,33932 ,18412,18418,18413 ,0,0,0}, - {33760,33949,33887 ,18444,18444,18113 ,0,0,0}, {33760,33950,33951 ,18444,18113,18113 ,0,0,0}, - {33760,33951,33949 ,18444,18113,18444 ,0,0,0}, {33949,33888,33887 ,18444,18113,18113 ,0,0,0}, - {33838,33840,33952 ,7758,7880,7627 ,0,0,0}, {33846,33847,33953 ,726,726,7627 ,0,0,0}, - {33832,33954,33955 ,726,18445,7755 ,0,0,0}, {33956,33834,33957 ,8017,7627,7627 ,0,0,0}, - {33958,33805,33959 ,18446,7758,18447 ,0,0,0}, {33959,33828,33960 ,18447,7264,7249 ,0,0,0}, - {33961,33811,33962 ,18448,7627,18449 ,0,0,0}, {33955,33963,33829 ,7755,8018,7755 ,0,0,0}, - {33808,33964,33962 ,7761,18450,18449 ,0,0,0}, {33965,33813,33811 ,18451,726,7627 ,0,0,0}, - {33813,33965,33966 ,726,18451,726 ,0,0,0}, {33806,33958,33964 ,7755,18446,18450 ,0,0,0}, - {33967,33817,33966 ,7264,7627,726 ,0,0,0}, {33815,33968,33818 ,7758,7264,7880 ,0,0,0}, - {33969,33970,33820 ,726,7880,7627 ,0,0,0}, {33971,33848,33972 ,726,7627,726 ,0,0,0}, - {33973,33859,33860 ,726,7627,7627 ,0,0,0}, {33970,33974,33823 ,7880,7627,7880 ,0,0,0}, - {33824,33880,33975 ,7627,7627,726 ,0,0,0}, {33879,33976,33975 ,7627,7627,726 ,0,0,0}, - {33877,33977,33874 ,7625,7627,7627 ,0,0,0}, {33875,33874,33978 ,726,7627,726 ,0,0,0}, - {33858,33979,33860 ,7627,726,7627 ,0,0,0}, {33976,33879,33875 ,7627,7627,726 ,0,0,0}, - {33980,33871,33872 ,7627,726,726 ,0,0,0}, {33869,33871,33981 ,7627,726,7627 ,0,0,0}, - {33846,33953,33982 ,726,7627,726 ,0,0,0}, {33982,33983,33868 ,726,7627,7627 ,0,0,0}, - {33984,33864,33861 ,7627,726,726 ,0,0,0}, {33983,33872,33865 ,7627,726,726 ,0,0,0}, - {33984,33859,33973 ,7627,7627,726 ,0,0,0}, {33864,33985,33847 ,726,726,726 ,0,0,0}, - {33977,33869,33981 ,7627,7627,7627 ,0,0,0}, {33858,33845,33986 ,7627,7625,726 ,0,0,0}, - {33971,33844,33848 ,726,726,7627 ,0,0,0}, {33972,33848,33850 ,726,7627,726 ,0,0,0}, - {33844,33971,33986 ,726,726,726 ,0,0,0}, {33974,33882,33824 ,7627,7627,7627 ,0,0,0}, - {33987,33850,33852 ,726,726,7627 ,0,0,0}, {33850,33987,33972 ,726,726,726 ,0,0,0}, - {33841,33852,33854 ,7627,7627,7627 ,0,0,0}, {33841,33987,33852 ,7627,726,7627 ,0,0,0}, - {33854,33988,33841 ,7627,7758,7627 ,0,0,0}, {33989,33957,33835 ,7758,7627,7758 ,0,0,0}, - {33967,33990,33815 ,7264,7761,7758 ,0,0,0}, {33958,33806,33805 ,18446,7755,7758 ,0,0,0}, - {33845,33844,33986 ,7625,726,726 ,0,0,0}, {33979,33858,33986 ,726,7627,726 ,0,0,0}, - {33973,33860,33979 ,726,7627,726 ,0,0,0}, {33861,33859,33984 ,726,7627,7627 ,0,0,0}, - {33985,33864,33984 ,726,726,7627 ,0,0,0}, {33953,33847,33985 ,7627,726,726 ,0,0,0}, - {33868,33846,33982 ,7627,726,726 ,0,0,0}, {33865,33868,33983 ,726,7627,7627 ,0,0,0}, - {33980,33872,33983 ,7627,726,7627 ,0,0,0}, {33981,33871,33980 ,7627,726,7627 ,0,0,0}, - {33877,33869,33977 ,7625,7627,7627 ,0,0,0}, {33978,33874,33977 ,726,7627,7627 ,0,0,0}, - {33976,33875,33978 ,7627,726,726 ,0,0,0}, {33880,33879,33975 ,7627,7627,726 ,0,0,0}, - {33882,33880,33824 ,7627,7627,7627 ,0,0,0}, {33823,33974,33824 ,7880,7627,7627 ,0,0,0}, - {33820,33970,33823 ,7627,7880,7880 ,0,0,0}, {33968,33969,33818 ,7264,726,7880 ,0,0,0}, - {33969,33820,33818 ,726,7627,7880 ,0,0,0}, {33990,33968,33815 ,7761,7264,7758 ,0,0,0}, - {33817,33967,33815 ,7627,7264,7758 ,0,0,0}, {33813,33966,33817 ,726,726,7627 ,0,0,0}, - {33961,33965,33811 ,18448,18451,7627 ,0,0,0}, {33808,33962,33811 ,7761,18449,7627 ,0,0,0}, - {33806,33964,33808 ,7755,18450,7761 ,0,0,0}, {33959,33805,33828 ,18447,7758,7264 ,0,0,0}, - {33963,33960,33828 ,8018,7249,7264 ,0,0,0}, {33832,33955,33829 ,726,7755,7755 ,0,0,0}, - {33829,33963,33828 ,7755,8018,7264 ,0,0,0}, {33834,33954,33832 ,7627,18445,726 ,0,0,0}, - {33834,33835,33957 ,7627,7758,7627 ,0,0,0}, {33834,33956,33954 ,7627,8017,18445 ,0,0,0}, - {33835,33838,33989 ,7758,7758,7758 ,0,0,0}, {33952,33840,33988 ,7627,7880,7758 ,0,0,0}, - {33989,33838,33952 ,7758,7758,7627 ,0,0,0}, {33841,33988,33840 ,7627,7758,7880 ,0,0,0}, - {33950,33787,33991 ,1398,18452,18452 ,0,0,0}, {33928,33930,33787 ,18453,18453,18452 ,0,0,0}, - {33930,33991,33787 ,18453,18452,18452 ,0,0,0}, {33991,33951,33950 ,18452,1398,1398 ,0,0,0}, - {33992,33854,33855 ,18454,18092,18121 ,0,0,0}, {33957,33989,33886 ,18455,18456,18457 ,0,0,0}, - {33993,33952,33994 ,18458,18459,18460 ,0,0,0}, {33956,33995,33954 ,18461,18462,18463 ,0,0,0}, - {33996,33949,33958 ,18464,7309,18465 ,0,0,0}, {33997,33960,33963 ,18466,18467,18468 ,0,0,0}, - {33966,33965,33998 ,18469,18470,18471 ,0,0,0}, {33961,33962,33999 ,18472,18473,18474 ,0,0,0}, - {33967,34000,33990 ,18475,18476,18477 ,0,0,0}, {33991,33969,33968 ,18478,18479,18480 ,0,0,0}, - {33990,33991,33968 ,18477,18478,18480 ,0,0,0}, {33969,34001,33970 ,18479,18481,18482 ,0,0,0}, - {34001,33969,33991 ,18481,18479,18478 ,0,0,0}, {34001,34002,33970 ,18481,18483,18482 ,0,0,0}, - {34003,33974,34002 ,18484,18485,18483 ,0,0,0}, {33970,34002,33974 ,18482,18483,18485 ,0,0,0}, - {34003,33884,33882 ,18484,18486,82 ,0,0,0}, {33882,33974,34003 ,82,18485,18484 ,0,0,0}, - {33998,34000,33967 ,18471,18476,18475 ,0,0,0}, {33990,34000,33991 ,18477,18476,18478 ,0,0,0}, - {33965,34004,33998 ,18470,18487,18471 ,0,0,0}, {33967,33966,33998 ,18475,18469,18471 ,0,0,0}, - {33999,34004,33961 ,18474,18487,18472 ,0,0,0}, {33965,33961,34004 ,18470,18472,18487 ,0,0,0}, - {33999,33964,33949 ,18474,18488,7309 ,0,0,0}, {33962,33964,33999 ,18473,18488,18474 ,0,0,0}, - {33996,33958,33959 ,18464,18465,18489 ,0,0,0}, {33949,33964,33958 ,7309,18488,18465 ,0,0,0}, - {33960,33997,33996 ,18467,18466,18464 ,0,0,0}, {33996,33959,33960 ,18464,18489,18467 ,0,0,0}, - {33955,34005,33963 ,18490,18491,18468 ,0,0,0}, {34005,33997,33963 ,18491,18466,18468 ,0,0,0}, - {34005,33954,33995 ,18491,18463,18462 ,0,0,0}, {33954,34005,33955 ,18463,18491,18490 ,0,0,0}, - {33956,33957,33886 ,18461,18455,18457 ,0,0,0}, {33956,33886,33995 ,18461,18457,18462 ,0,0,0}, - {33989,33952,33993 ,18456,18459,18458 ,0,0,0}, {33989,33993,33886 ,18456,18458,18457 ,0,0,0}, - {33994,33988,33992 ,18460,18492,18454 ,0,0,0}, {33952,33988,33994 ,18459,18492,18460 ,0,0,0}, - {33854,33992,33988 ,18092,18454,18492 ,0,0,0}, {33878,33930,33881 ,7792,726,7658 ,0,0,0}, - {33930,33873,33881 ,726,726,7658 ,0,0,0}, {33884,33930,33883 ,7664,726,7662 ,0,0,0}, - {33930,33878,33883 ,726,7792,7662 ,0,0,0}, {34002,33930,34003 ,7662,726,5488 ,0,0,0}, - {33930,33884,34003 ,726,7664,5488 ,0,0,0}, {33991,33930,34001 ,726,726,726 ,0,0,0}, - {33930,34002,34001 ,726,7662,726 ,0,0,0}, {34005,33888,33997 ,726,726,17470 ,0,0,0}, - {33997,33888,33996 ,17470,726,7628 ,0,0,0}, {33888,33949,33996 ,726,726,7628 ,0,0,0}, - {33888,33995,33886 ,726,726,726 ,0,0,0}, {33888,34005,33995 ,726,726,726 ,0,0,0}, - {33856,33803,33843 ,726,726,726 ,0,0,0}, {33862,33803,33857 ,7661,726,7659 ,0,0,0}, - {33803,33856,33857 ,726,726,7659 ,0,0,0}, {33799,33803,33863 ,7661,726,7661 ,0,0,0}, - {33803,33862,33863 ,726,7661,7661 ,0,0,0}, {33804,33867,33866 ,7660,7660,7660 ,0,0,0}, - {33799,33867,33804 ,726,7660,7660 ,0,0,0}, {33804,33876,33873 ,7660,726,726 ,0,0,0}, - {33804,33870,33876 ,7660,7658,726 ,0,0,0}, {33866,33870,33804 ,7660,7658,7660 ,0,0,0}, - {33991,34000,33951 ,726,726,726 ,0,0,0}, {34004,33951,33998 ,726,726,7661 ,0,0,0}, - {34000,33998,33951 ,726,7661,726 ,0,0,0}, {33999,33949,33951 ,726,726,726 ,0,0,0}, - {33999,33951,34004 ,726,726,726 ,0,0,0}, {33993,33889,33886 ,726,726,726 ,0,0,0}, - {33992,33889,33994 ,726,726,726 ,0,0,0}, {33889,33993,33994 ,726,726,726 ,0,0,0}, - {33853,33889,33855 ,726,726,726 ,0,0,0}, {33889,33992,33855 ,726,726,726 ,0,0,0}, - {33849,33889,33851 ,726,726,7660 ,0,0,0}, {33889,33853,33851 ,726,726,7660 ,0,0,0}, - {33843,33889,33849 ,726,726,726 ,0,0,0}, {33839,33837,34006 ,726,726,7583 ,0,0,0}, - {34007,34008,34009 ,726,726,726 ,0,0,0}, {34010,34007,33842 ,726,726,726 ,0,0,0}, - {34006,34011,33839 ,7583,7583,726 ,0,0,0}, {34012,34013,34009 ,726,726,726 ,0,0,0}, - {34014,34015,34008 ,726,726,726 ,0,0,0}, {34012,34009,34015 ,726,726,726 ,0,0,0}, - {34008,34015,34009 ,726,726,726 ,0,0,0}, {34009,34016,34007 ,726,726,726 ,0,0,0}, - {33839,34010,33842 ,726,726,726 ,0,0,0}, {33842,34007,34016 ,726,726,726 ,0,0,0}, - {34006,33837,33836 ,7583,726,726 ,0,0,0}, {33839,34011,34010 ,726,7583,726 ,0,0,0}, - {34017,33836,33833 ,7583,726,726 ,0,0,0}, {33836,34017,34006 ,726,7583,7583 ,0,0,0}, - {33833,34018,34019 ,726,726,726 ,0,0,0}, {34017,33833,34019 ,7583,726,726 ,0,0,0}, - {33831,34018,33833 ,726,726,726 ,0,0,0}, {34018,33830,34020 ,726,726,726 ,0,0,0}, - {33830,34018,33831 ,726,726,726 ,0,0,0}, {33830,33827,34020 ,726,726,726 ,0,0,0}, - {34021,33827,34022 ,726,726,5489 ,0,0,0}, {34021,34020,33827 ,726,726,726 ,0,0,0}, - {34022,33826,33807 ,5489,7583,726 ,0,0,0}, {33827,33826,34022 ,726,7583,5489 ,0,0,0}, - {33810,33825,33807 ,7583,7583,726 ,0,0,0}, {34022,33807,33825 ,5489,726,7583 ,0,0,0}, - {33814,33821,33809 ,7583,7583,726 ,0,0,0}, {33809,33812,33814 ,726,726,7583 ,0,0,0}, - {33821,33816,33819 ,7583,7583,726 ,0,0,0}, {33821,33810,33809 ,7583,7583,726 ,0,0,0}, - {33821,33822,33810 ,7583,5489,7583 ,0,0,0}, {33821,33814,33816 ,7583,7583,7583 ,0,0,0}, - {33810,33822,33825 ,7583,5489,7583 ,0,0,0}, {33824,33975,34022 ,35,18493,18494 ,0,0,0}, - {33977,34018,33978 ,18495,18496,18497 ,0,0,0}, {34020,34021,33976 ,18498,18499,18500 ,0,0,0}, - {34006,33983,34011 ,18501,18502,18503 ,0,0,0}, {33981,33980,34017 ,18504,18505,18506 ,0,0,0}, - {33985,34008,34007 ,18507,18508,18509 ,0,0,0}, {34007,34010,33953 ,18509,18510,18511 ,0,0,0}, - {33979,34015,33973 ,18512,18513,18514 ,0,0,0}, {34014,33984,33973 ,18515,18516,18514 ,0,0,0}, - {33986,34013,34012 ,18517,18518,18519 ,0,0,0}, {34012,33979,33986 ,18519,18512,18517 ,0,0,0}, - {34013,33971,34009 ,18518,18520,18521 ,0,0,0}, {33971,34013,33986 ,18520,18518,18517 ,0,0,0}, - {34016,34009,33972 ,18522,18521,18523 ,0,0,0}, {33971,33972,34009 ,18520,18523,18521 ,0,0,0}, - {33987,33842,34016 ,18524,18188,18522 ,0,0,0}, {34016,33972,33987 ,18522,18523,18524 ,0,0,0}, - {33841,33842,33987 ,18188,18188,18524 ,0,0,0}, {34012,34015,33979 ,18519,18513,18512 ,0,0,0}, - {34014,33973,34015 ,18515,18514,18513 ,0,0,0}, {34014,34008,33984 ,18515,18508,18516 ,0,0,0}, - {34011,33982,34010 ,18503,18525,18510 ,0,0,0}, {33985,34007,33953 ,18507,18509,18511 ,0,0,0}, - {33984,34008,33985 ,18516,18508,18507 ,0,0,0}, {34010,33982,33953 ,18510,18525,18511 ,0,0,0}, - {33982,34011,33983 ,18525,18503,18502 ,0,0,0}, {34017,33980,34006 ,18506,18505,18501 ,0,0,0}, - {33980,33983,34006 ,18505,18502,18501 ,0,0,0}, {33981,34019,33977 ,18504,18526,18495 ,0,0,0}, - {34019,33981,34017 ,18526,18504,18506 ,0,0,0}, {34020,33978,34018 ,18498,18497,18496 ,0,0,0}, - {34019,34018,33977 ,18526,18496,18495 ,0,0,0}, {33976,34021,33975 ,18500,18499,18493 ,0,0,0}, - {33978,34020,33976 ,18497,18498,18500 ,0,0,0}, {33824,34022,33825 ,35,18494,763 ,0,0,0}, - {33975,34021,34022 ,18493,18499,18494 ,0,0,0}, {34023,33768,33769 ,18527,126,18026 ,0,0,0}, - {33908,33909,33931 ,18528,18529,18530 ,0,0,0}, {34024,33910,34025 ,18531,18532,18533 ,0,0,0}, - {33911,34026,33892 ,18534,18535,18536 ,0,0,0}, {34027,33801,33914 ,18537,10001,18538 ,0,0,0}, - {34028,33916,33912 ,18539,18540,18541 ,0,0,0}, {33919,33920,34029 ,18542,18543,18544 ,0,0,0}, - {33918,33917,34030 ,18545,18546,18547 ,0,0,0}, {33921,34031,33923 ,18548,18549,18550 ,0,0,0}, - {33929,33922,33924 ,18551,18552,18553 ,0,0,0}, {33923,33929,33924 ,18550,18551,18553 ,0,0,0}, - {33922,34032,33925 ,18552,18554,18555 ,0,0,0}, {34032,33922,33929 ,18554,18552,18551 ,0,0,0}, - {34032,34033,33925 ,18554,18556,18555 ,0,0,0}, {34034,33926,34033 ,18557,18558,18556 ,0,0,0}, - {33925,34033,33926 ,18555,18556,18558 ,0,0,0}, {34034,33798,33796 ,18557,5000,18205 ,0,0,0}, - {33796,33926,34034 ,18205,18558,18557 ,0,0,0}, {34029,34031,33921 ,18544,18549,18548 ,0,0,0}, - {33923,34031,33929 ,18550,18549,18551 ,0,0,0}, {33920,34035,34029 ,18543,18559,18544 ,0,0,0}, - {33921,33919,34029 ,18548,18542,18544 ,0,0,0}, {34030,34035,33918 ,18547,18559,18545 ,0,0,0}, - {33920,33918,34035 ,18543,18545,18559 ,0,0,0}, {34030,33915,33801 ,18547,18560,10001 ,0,0,0}, - {33917,33915,34030 ,18546,18560,18547 ,0,0,0}, {34027,33914,33913 ,18537,18538,18561 ,0,0,0}, - {33801,33915,33914 ,10001,18560,18538 ,0,0,0}, {33916,34028,34027 ,18540,18539,18537 ,0,0,0}, - {34027,33913,33916 ,18537,18561,18540 ,0,0,0}, {33893,34036,33912 ,18562,18563,18541 ,0,0,0}, - {34036,34028,33912 ,18563,18539,18541 ,0,0,0}, {34036,33892,34026 ,18563,18536,18535 ,0,0,0}, - {33892,34036,33893 ,18536,18563,18562 ,0,0,0}, {33911,33908,33931 ,18534,18528,18530 ,0,0,0}, - {33911,33931,34026 ,18534,18530,18535 ,0,0,0}, {33909,33910,34024 ,18529,18532,18531 ,0,0,0}, - {33909,34024,33931 ,18529,18531,18530 ,0,0,0}, {34025,33907,34023 ,18533,18564,18527 ,0,0,0}, - {33910,33907,34025 ,18532,18564,18533 ,0,0,0}, {33768,34023,33907 ,126,18527,18564 ,0,0,0}, - {33802,34036,34026 ,17561,17561,730 ,0,0,0}, {34027,33802,33801 ,730,17561,730 ,0,0,0}, - {34036,33802,34028 ,17561,17561,730 ,0,0,0}, {33802,34027,34028 ,17561,730,730 ,0,0,0}, - {34026,33931,33802 ,730,7376,17561 ,0,0,0}, {33795,33928,33787 ,18207,730,730 ,0,0,0}, - {33928,34034,34033 ,730,730,730 ,0,0,0}, {33797,33928,33792 ,17561,730,7433 ,0,0,0}, - {33928,33795,33792 ,730,18207,7433 ,0,0,0}, {34034,33928,33798 ,730,730,17561 ,0,0,0}, - {33928,33797,33798 ,730,17561,17561 ,0,0,0}, {34033,34032,33928 ,730,7433,730 ,0,0,0}, - {34032,33929,33928 ,7433,730,730 ,0,0,0}, {33771,33887,33770 ,7017,730,730 ,0,0,0}, - {33887,33756,33770 ,730,11465,730 ,0,0,0}, {33777,33887,33776 ,18565,730,730 ,0,0,0}, - {33887,33771,33776 ,730,7017,730 ,0,0,0}, {33760,33887,33777 ,18566,730,18565 ,0,0,0}, - {34035,33800,34029 ,730,7376,17561 ,0,0,0}, {34031,34029,33800 ,730,17561,7376 ,0,0,0}, - {33929,34031,33800 ,730,730,7376 ,0,0,0}, {34030,33801,33800 ,7376,730,7376 ,0,0,0}, - {34030,33800,34035 ,7376,7376,730 ,0,0,0}, {33781,33780,33950 ,18207,18207,9877 ,0,0,0}, - {33760,33781,33950 ,18567,18207,9877 ,0,0,0}, {33784,33790,33950 ,730,9878,9877 ,0,0,0}, - {33784,33950,33780 ,730,9877,18207 ,0,0,0}, {33787,33950,33790 ,730,9877,9878 ,0,0,0}, - {33931,34024,33885 ,730,730,730 ,0,0,0}, {33885,34023,33769 ,730,730,9877 ,0,0,0}, - {34023,33885,34025 ,730,730,730 ,0,0,0}, {33885,34024,34025 ,730,730,730 ,0,0,0}, - {33769,33767,33885 ,9877,730,730 ,0,0,0}, {33885,33765,33763 ,730,9878,730 ,0,0,0}, - {33767,33765,33885 ,730,9878,730 ,0,0,0}, {33763,33756,33885 ,730,730,730 ,0,0,0}, - {33932,33935,33741 ,730,730,9878 ,0,0,0}, {33725,33724,33736 ,730,730,730 ,0,0,0}, - {33722,33725,33739 ,9875,730,730 ,0,0,0}, {33741,33740,33932 ,9878,730,730 ,0,0,0}, - {33731,33734,33736 ,730,730,730 ,0,0,0}, {33727,33729,33724 ,730,730,730 ,0,0,0}, - {33731,33736,33729 ,730,730,730 ,0,0,0}, {33724,33729,33736 ,730,730,730 ,0,0,0}, - {33736,33737,33725 ,730,730,730 ,0,0,0}, {33932,33722,33739 ,730,9875,730 ,0,0,0}, - {33739,33725,33737 ,730,730,730 ,0,0,0}, {33741,33935,33934 ,9878,730,730 ,0,0,0}, - {33932,33740,33722 ,730,730,9875 ,0,0,0}, {33744,33934,33933 ,9878,730,730 ,0,0,0}, - {33934,33744,33741 ,730,9878,9878 ,0,0,0}, {33933,33747,33745 ,730,730,730 ,0,0,0}, - {33744,33933,33745 ,9878,730,730 ,0,0,0}, {33948,33747,33933 ,730,730,730 ,0,0,0}, - {33747,33938,33750 ,730,9875,9878 ,0,0,0}, {33938,33747,33948 ,9875,730,730 ,0,0,0}, - {33938,33936,33750 ,9875,730,9878 ,0,0,0}, {33751,33936,33753 ,9878,730,730 ,0,0,0}, - {33751,33750,33936 ,9878,9878,730 ,0,0,0}, {33753,33937,33941 ,730,9875,9875 ,0,0,0}, - {33936,33937,33753 ,730,9875,730 ,0,0,0}, {33940,33755,33941 ,730,9878,9875 ,0,0,0}, - {33753,33941,33755 ,730,9875,9878 ,0,0,0}, {33942,33946,33939 ,9878,9878,730 ,0,0,0}, - {33939,33943,33942 ,730,9878,9878 ,0,0,0}, {33946,33945,33944 ,9878,9878,9877 ,0,0,0}, - {33946,33940,33939 ,9878,730,730 ,0,0,0}, {33946,33947,33940 ,9878,730,730 ,0,0,0}, - {33946,33942,33945 ,9878,9878,9878 ,0,0,0}, {33940,33947,33755 ,730,730,9878 ,0,0,0} -// Airframe2.prt - , {34037,34038,34039 ,18568,18569,18569 ,0,0,0}, {34040,34041,34042 ,18570,18571,18572 ,0,0,0}, - {34039,34038,34042 ,18569,18569,18572 ,0,0,0}, {34043,34044,34045 ,18573,18573,18571 ,0,0,0}, - {34041,34040,34045 ,18571,18570,18571 ,0,0,0}, {34045,34044,34041 ,18571,18573,18571 ,0,0,0}, - {34040,34042,34038 ,18570,18572,18569 ,0,0,0}, {34039,34046,34037 ,18569,18568,18568 ,0,0,0}, - {34046,34047,34048 ,18568,18574,18574 ,0,0,0}, {34048,34037,34046 ,18574,18568,18568 ,0,0,0}, - {34049,34047,34050 ,18575,18574,18575 ,0,0,0}, {34047,34049,34048 ,18574,18575,18574 ,0,0,0}, - {34051,34052,34053 ,18576,18577,18577 ,0,0,0}, {34054,34055,34056 ,18578,18579,18580 ,0,0,0}, - {34053,34052,34056 ,18577,18577,18580 ,0,0,0}, {34057,34058,34059 ,18581,18581,18579 ,0,0,0}, - {34055,34054,34059 ,18579,18578,18579 ,0,0,0}, {34059,34058,34055 ,18579,18581,18579 ,0,0,0}, - {34054,34056,34052 ,18578,18580,18577 ,0,0,0}, {34053,34060,34051 ,18577,18576,18576 ,0,0,0}, - {34060,34061,34062 ,18576,18582,18582 ,0,0,0}, {34062,34051,34060 ,18582,18576,18576 ,0,0,0}, - {34063,34061,34064 ,18583,18582,18583 ,0,0,0}, {34061,34063,34062 ,18582,18583,18582 ,0,0,0}, - {34065,34066,34067 ,18584,18585,18585 ,0,0,0}, {34068,34069,34070 ,18586,18587,18586 ,0,0,0}, - {34067,34066,34070 ,18585,18585,18586 ,0,0,0}, {34071,34072,34073 ,18588,18588,18587 ,0,0,0}, - {34069,34068,34073 ,18587,18586,18587 ,0,0,0}, {34073,34072,34069 ,18587,18588,18587 ,0,0,0}, - {34068,34070,34066 ,18586,18586,18585 ,0,0,0}, {34067,34074,34065 ,18585,18584,18584 ,0,0,0}, - {34074,34075,34076 ,18584,18589,18589 ,0,0,0}, {34076,34065,34074 ,18589,18584,18584 ,0,0,0}, - {34077,34075,34078 ,18573,18589,18573 ,0,0,0}, {34075,34077,34076 ,18589,18573,18589 ,0,0,0}, - {34079,34080,34081 ,18590,18591,18591 ,0,0,0}, {34082,34083,34084 ,18592,18593,18592 ,0,0,0}, - {34081,34080,34084 ,18591,18591,18592 ,0,0,0}, {34085,34086,34087 ,18594,18594,18593 ,0,0,0}, - {34083,34082,34087 ,18593,18592,18593 ,0,0,0}, {34087,34086,34083 ,18593,18594,18593 ,0,0,0}, - {34082,34084,34080 ,18592,18592,18591 ,0,0,0}, {34081,34088,34079 ,18591,18590,18590 ,0,0,0}, - {34088,34089,34090 ,18590,18595,18595 ,0,0,0}, {34090,34079,34088 ,18595,18590,18590 ,0,0,0}, - {34091,34089,34092 ,18581,18595,18581 ,0,0,0}, {34089,34091,34090 ,18595,18581,18595 ,0,0,0}, - {34093,34094,34095 ,18596,18597,18597 ,0,0,0}, {34096,34097,34098 ,18598,18599,18600 ,0,0,0}, - {34095,34094,34098 ,18597,18597,18600 ,0,0,0}, {34099,34100,34101 ,18601,18601,18599 ,0,0,0}, - {34097,34096,34101 ,18599,18598,18599 ,0,0,0}, {34101,34100,34097 ,18599,18601,18599 ,0,0,0}, - {34096,34098,34094 ,18598,18600,18597 ,0,0,0}, {34095,34102,34093 ,18597,18596,18596 ,0,0,0}, - {34102,34103,34104 ,18596,18602,18602 ,0,0,0}, {34104,34093,34102 ,18602,18596,18596 ,0,0,0}, - {34105,34103,34106 ,18588,18602,18588 ,0,0,0}, {34103,34105,34104 ,18602,18588,18602 ,0,0,0}, - {34107,34108,34109 ,18603,18604,18605 ,0,0,0}, {34110,34111,34112 ,18606,18607,18608 ,0,0,0}, - {34109,34108,34112 ,18605,18604,18608 ,0,0,0}, {34113,34114,34115 ,18609,18609,18607 ,0,0,0}, - {34111,34110,34115 ,18607,18606,18607 ,0,0,0}, {34115,34114,34111 ,18607,18609,18607 ,0,0,0}, - {34110,34112,34108 ,18606,18608,18604 ,0,0,0}, {34109,34116,34107 ,18605,18603,18603 ,0,0,0}, - {34116,34117,34118 ,18603,18610,18610 ,0,0,0}, {34118,34107,34116 ,18610,18603,18603 ,0,0,0}, - {34119,34117,34120 ,18594,18610,18594 ,0,0,0}, {34117,34119,34118 ,18610,18594,18610 ,0,0,0}, - {34121,34122,34123 ,18611,18612,18612 ,0,0,0}, {34124,34125,34126 ,18613,18614,18613 ,0,0,0}, - {34123,34122,34126 ,18612,18612,18613 ,0,0,0}, {34127,34128,34129 ,18588,18588,18614 ,0,0,0}, - {34125,34124,34129 ,18614,18613,18614 ,0,0,0}, {34129,34128,34125 ,18614,18588,18614 ,0,0,0}, - {34124,34126,34122 ,18613,18613,18612 ,0,0,0}, {34123,34130,34121 ,18612,18611,18611 ,0,0,0}, - {34130,34131,34132 ,18611,18615,18615 ,0,0,0}, {34132,34121,34130 ,18615,18611,18611 ,0,0,0}, - {34133,34131,34134 ,18573,18615,18573 ,0,0,0}, {34131,34133,34132 ,18615,18573,18615 ,0,0,0}, - {34135,34136,34137 ,18616,18617,18617 ,0,0,0}, {34138,34139,34140 ,18618,18619,18618 ,0,0,0}, - {34137,34136,34140 ,18617,18617,18618 ,0,0,0}, {34141,34142,34143 ,18594,18594,18619 ,0,0,0}, - {34139,34138,34143 ,18619,18618,18619 ,0,0,0}, {34143,34142,34139 ,18619,18594,18619 ,0,0,0}, - {34138,34140,34136 ,18618,18618,18617 ,0,0,0}, {34137,34144,34135 ,18617,18616,18616 ,0,0,0}, - {34144,34145,34146 ,18616,18620,18620 ,0,0,0}, {34146,34135,34144 ,18620,18616,18616 ,0,0,0}, - {34147,34145,34148 ,18581,18620,18581 ,0,0,0}, {34145,34147,34146 ,18620,18581,18620 ,0,0,0}, - {34149,34150,34151 ,18621,18622,18622 ,0,0,0}, {34152,34153,34154 ,18623,18624,18623 ,0,0,0}, - {34151,34150,34154 ,18622,18622,18623 ,0,0,0}, {34155,34156,34157 ,18601,18601,18624 ,0,0,0}, - {34153,34152,34157 ,18624,18623,18624 ,0,0,0}, {34157,34156,34153 ,18624,18601,18624 ,0,0,0}, - {34152,34154,34150 ,18623,18623,18622 ,0,0,0}, {34151,34158,34149 ,18622,18621,18621 ,0,0,0}, - {34158,34159,34160 ,18621,18625,18625 ,0,0,0}, {34160,34149,34158 ,18625,18621,18621 ,0,0,0}, - {34161,34159,34162 ,18588,18625,18588 ,0,0,0}, {34159,34161,34160 ,18625,18588,18625 ,0,0,0}, - {34163,34164,34165 ,18626,18627,18627 ,0,0,0}, {34166,34167,34168 ,18628,18629,18628 ,0,0,0}, - {34165,34164,34168 ,18627,18627,18628 ,0,0,0}, {34169,34170,34171 ,18609,18609,18629 ,0,0,0}, - {34167,34166,34171 ,18629,18628,18629 ,0,0,0}, {34171,34170,34167 ,18629,18609,18629 ,0,0,0}, - {34166,34168,34164 ,18628,18628,18627 ,0,0,0}, {34165,34172,34163 ,18627,18626,18626 ,0,0,0}, - {34172,34173,34174 ,18626,18630,18630 ,0,0,0}, {34174,34163,34172 ,18630,18626,18626 ,0,0,0}, - {34175,34173,34176 ,18594,18630,18594 ,0,0,0}, {34173,34175,34174 ,18630,18594,18630 ,0,0,0}, - {34177,34178,34179 ,18631,18632,18632 ,0,0,0}, {34180,34181,34182 ,18633,18634,18633 ,0,0,0}, - {34179,34178,34182 ,18632,18632,18633 ,0,0,0}, {34183,34184,34185 ,18575,18575,18634 ,0,0,0}, - {34181,34180,34185 ,18634,18633,18634 ,0,0,0}, {34185,34184,34181 ,18634,18575,18634 ,0,0,0}, - {34180,34182,34178 ,18633,18633,18632 ,0,0,0}, {34179,34186,34177 ,18632,18631,18631 ,0,0,0}, - {34186,34187,34188 ,18631,18635,18635 ,0,0,0}, {34188,34177,34186 ,18635,18631,18631 ,0,0,0}, - {34189,34187,34190 ,18601,18635,18601 ,0,0,0}, {34187,34189,34188 ,18635,18601,18635 ,0,0,0}, - {34191,34192,34193 ,18636,18637,18637 ,0,0,0}, {34194,34195,34196 ,18638,18639,18638 ,0,0,0}, - {34193,34192,34196 ,18637,18637,18638 ,0,0,0}, {34197,34198,34199 ,18583,18583,18639 ,0,0,0}, - {34195,34194,34199 ,18639,18638,18639 ,0,0,0}, {34199,34198,34195 ,18639,18583,18639 ,0,0,0}, - {34194,34196,34192 ,18638,18638,18637 ,0,0,0}, {34193,34200,34191 ,18637,18636,18636 ,0,0,0}, - {34200,34201,34202 ,18636,18640,18640 ,0,0,0}, {34202,34191,34200 ,18640,18636,18636 ,0,0,0}, - {34203,34201,34204 ,18609,18640,18609 ,0,0,0}, {34201,34203,34202 ,18640,18609,18640 ,0,0,0}, - {34205,34206,34207 ,18641,18642,18642 ,0,0,0}, {34208,34209,34210 ,18643,18644,18645 ,0,0,0}, - {34207,34206,34210 ,18642,18642,18645 ,0,0,0}, {34211,34212,34213 ,18601,18601,18644 ,0,0,0}, - {34209,34208,34213 ,18644,18643,18644 ,0,0,0}, {34213,34212,34209 ,18644,18601,18644 ,0,0,0}, - {34208,34210,34206 ,18643,18645,18642 ,0,0,0}, {34207,34214,34205 ,18642,18641,18641 ,0,0,0}, - {34214,34215,34216 ,18641,18646,18646 ,0,0,0}, {34216,34205,34214 ,18646,18641,18641 ,0,0,0}, - {34217,34215,34218 ,18588,18646,18588 ,0,0,0}, {34215,34217,34216 ,18646,18588,18646 ,0,0,0}, - {34219,34220,34221 ,18647,18648,18649 ,0,0,0}, {34222,34223,34224 ,18650,18651,18652 ,0,0,0}, - {34221,34220,34224 ,18649,18648,18652 ,0,0,0}, {34225,34226,34227 ,18609,18609,18651 ,0,0,0}, - {34223,34222,34227 ,18651,18650,18651 ,0,0,0}, {34227,34226,34223 ,18651,18609,18651 ,0,0,0}, - {34222,34224,34220 ,18650,18652,18648 ,0,0,0}, {34221,34228,34219 ,18649,18647,18647 ,0,0,0}, - {34228,34229,34230 ,18647,18653,18653 ,0,0,0}, {34230,34219,34228 ,18653,18647,18647 ,0,0,0}, - {34231,34229,34232 ,18594,18653,18594 ,0,0,0}, {34229,34231,34230 ,18653,18594,18653 ,0,0,0}, - {34233,34234,34235 ,18654,18655,18655 ,0,0,0}, {34236,34237,34238 ,18656,18657,18658 ,0,0,0}, - {34235,34234,34238 ,18655,18655,18658 ,0,0,0}, {34239,34240,34241 ,18575,18575,18657 ,0,0,0}, - {34237,34236,34241 ,18657,18656,18657 ,0,0,0}, {34241,34240,34237 ,18657,18575,18657 ,0,0,0}, - {34236,34238,34234 ,18656,18658,18655 ,0,0,0}, {34235,34242,34233 ,18655,18654,18654 ,0,0,0}, - {34242,34243,34244 ,18654,18659,18659 ,0,0,0}, {34244,34233,34242 ,18659,18654,18654 ,0,0,0}, - {34245,34243,34246 ,18601,18659,18601 ,0,0,0}, {34243,34245,34244 ,18659,18601,18659 ,0,0,0}, - {34247,34248,34249 ,18660,18661,18661 ,0,0,0}, {34250,34251,34252 ,18662,18663,18662 ,0,0,0}, - {34249,34248,34252 ,18661,18661,18662 ,0,0,0}, {34253,34254,34255 ,18583,18583,18663 ,0,0,0}, - {34251,34250,34255 ,18663,18662,18663 ,0,0,0}, {34255,34254,34251 ,18663,18583,18663 ,0,0,0}, - {34250,34252,34248 ,18662,18662,18661 ,0,0,0}, {34249,34256,34247 ,18661,18660,18660 ,0,0,0}, - {34256,34257,34258 ,18660,18664,18664 ,0,0,0}, {34258,34247,34256 ,18664,18660,18660 ,0,0,0}, - {34259,34257,34260 ,18609,18664,18609 ,0,0,0}, {34257,34259,34258 ,18664,18609,18664 ,0,0,0}, - {34261,34262,34263 ,18665,18666,18666 ,0,0,0}, {34264,34265,34266 ,18667,18668,18667 ,0,0,0}, - {34263,34262,34266 ,18666,18666,18667 ,0,0,0}, {34267,34268,34269 ,18573,18573,18668 ,0,0,0}, - {34265,34264,34269 ,18668,18667,18668 ,0,0,0}, {34269,34268,34265 ,18668,18573,18668 ,0,0,0}, - {34264,34266,34262 ,18667,18667,18666 ,0,0,0}, {34263,34270,34261 ,18666,18665,18665 ,0,0,0}, - {34270,34271,34272 ,18665,18669,18669 ,0,0,0}, {34272,34261,34270 ,18669,18665,18665 ,0,0,0}, - {34273,34271,34274 ,18575,18669,18575 ,0,0,0}, {34271,34273,34272 ,18669,18575,18669 ,0,0,0}, - {34275,34276,34277 ,18670,18671,18671 ,0,0,0}, {34278,34279,34280 ,18672,18673,18672 ,0,0,0}, - {34277,34276,34280 ,18671,18671,18672 ,0,0,0}, {34281,34282,34283 ,18581,18581,18673 ,0,0,0}, - {34279,34278,34283 ,18673,18672,18673 ,0,0,0}, {34283,34282,34279 ,18673,18581,18673 ,0,0,0}, - {34278,34280,34276 ,18672,18672,18671 ,0,0,0}, {34277,34284,34275 ,18671,18670,18670 ,0,0,0}, - {34284,34285,34286 ,18670,18582,18582 ,0,0,0}, {34286,34275,34284 ,18582,18670,18670 ,0,0,0}, - {34287,34285,34288 ,18583,18582,18583 ,0,0,0}, {34285,34287,34286 ,18582,18583,18582 ,0,0,0}, - {34289,34290,34291 ,18674,18675,18675 ,0,0,0}, {34292,34293,34294 ,18676,18677,18676 ,0,0,0}, - {34291,34290,34294 ,18675,18675,18676 ,0,0,0}, {34295,34296,34297 ,18575,18575,18677 ,0,0,0}, - {34293,34292,34297 ,18677,18676,18677 ,0,0,0}, {34297,34296,34293 ,18677,18575,18677 ,0,0,0}, - {34292,34294,34290 ,18676,18676,18675 ,0,0,0}, {34291,34298,34289 ,18675,18674,18674 ,0,0,0}, - {34298,34299,34300 ,18674,18678,18678 ,0,0,0}, {34300,34289,34298 ,18678,18674,18674 ,0,0,0}, - {34301,34299,34302 ,18601,18678,18601 ,0,0,0}, {34299,34301,34300 ,18678,18601,18678 ,0,0,0}, - {34303,34304,34305 ,18679,18680,18680 ,0,0,0}, {34306,34307,34308 ,18681,18682,18681 ,0,0,0}, - {34305,34304,34308 ,18680,18680,18681 ,0,0,0}, {34309,34310,34311 ,18583,18583,18682 ,0,0,0}, - {34307,34306,34311 ,18682,18681,18682 ,0,0,0}, {34311,34310,34307 ,18682,18583,18682 ,0,0,0}, - {34306,34308,34304 ,18681,18681,18680 ,0,0,0}, {34305,34312,34303 ,18680,18679,18679 ,0,0,0}, - {34312,34313,34314 ,18679,18683,18683 ,0,0,0}, {34314,34303,34312 ,18683,18679,18679 ,0,0,0}, - {34315,34313,34316 ,18609,18683,18609 ,0,0,0}, {34313,34315,34314 ,18683,18609,18683 ,0,0,0}, - {34317,34318,34319 ,18684,18685,18685 ,0,0,0}, {34320,34321,34322 ,18686,18687,18686 ,0,0,0}, - {34319,34318,34322 ,18685,18685,18686 ,0,0,0}, {34323,34324,34325 ,18573,18573,18687 ,0,0,0}, - {34321,34320,34325 ,18687,18686,18687 ,0,0,0}, {34325,34324,34321 ,18687,18573,18687 ,0,0,0}, - {34320,34322,34318 ,18686,18686,18685 ,0,0,0}, {34319,34326,34317 ,18685,18684,18684 ,0,0,0}, - {34326,34327,34328 ,18684,18688,18688 ,0,0,0}, {34328,34317,34326 ,18688,18684,18684 ,0,0,0}, - {34329,34327,34330 ,18575,18688,18575 ,0,0,0}, {34327,34329,34328 ,18688,18575,18688 ,0,0,0}, - {34331,34332,34333 ,18689,18690,18690 ,0,0,0}, {34334,34335,34336 ,18691,18692,18691 ,0,0,0}, - {34333,34332,34336 ,18690,18690,18691 ,0,0,0}, {34337,34338,34339 ,18581,18581,18692 ,0,0,0}, - {34335,34334,34339 ,18692,18691,18692 ,0,0,0}, {34339,34338,34335 ,18692,18581,18692 ,0,0,0}, - {34334,34336,34332 ,18691,18691,18690 ,0,0,0}, {34333,34340,34331 ,18690,18689,18689 ,0,0,0}, - {34340,34341,34342 ,18689,18693,18693 ,0,0,0}, {34342,34331,34340 ,18693,18689,18689 ,0,0,0}, - {34343,34341,34344 ,18583,18693,18583 ,0,0,0}, {34341,34343,34342 ,18693,18583,18693 ,0,0,0}, - {34345,34346,34347 ,18694,18695,18695 ,0,0,0}, {34348,34349,34350 ,18696,18697,18696 ,0,0,0}, - {34347,34346,34350 ,18695,18695,18696 ,0,0,0}, {34351,34352,34353 ,18588,18588,18697 ,0,0,0}, - {34349,34348,34353 ,18697,18696,18697 ,0,0,0}, {34353,34352,34349 ,18697,18588,18697 ,0,0,0}, - {34348,34350,34346 ,18696,18696,18695 ,0,0,0}, {34347,34354,34345 ,18695,18694,18694 ,0,0,0}, - {34354,34355,34356 ,18694,18615,18615 ,0,0,0}, {34356,34345,34354 ,18615,18694,18694 ,0,0,0}, - {34357,34355,34358 ,18573,18615,18573 ,0,0,0}, {34355,34357,34356 ,18615,18573,18615 ,0,0,0}, - {34359,34360,34361 ,18698,18699,18699 ,0,0,0}, {34362,34363,34364 ,18700,18701,18700 ,0,0,0}, - {34361,34360,34364 ,18699,18699,18700 ,0,0,0}, {34365,34366,34367 ,18594,18594,18701 ,0,0,0}, - {34363,34362,34367 ,18701,18700,18701 ,0,0,0}, {34367,34366,34363 ,18701,18594,18701 ,0,0,0}, - {34362,34364,34360 ,18700,18700,18699 ,0,0,0}, {34361,34368,34359 ,18699,18698,18698 ,0,0,0}, - {34368,34369,34370 ,18698,18702,18702 ,0,0,0}, {34370,34359,34368 ,18702,18698,18698 ,0,0,0}, - {34371,34369,34372 ,18581,18702,18581 ,0,0,0}, {34369,34371,34370 ,18702,18581,18702 ,0,0,0}, - {34373,34374,34375 ,18703,18704,18704 ,0,0,0}, {34376,34377,34378 ,18705,18706,18707 ,0,0,0}, - {34375,34374,34378 ,18704,18704,18707 ,0,0,0}, {34379,34380,34381 ,18575,18575,18706 ,0,0,0}, - {34377,34376,34381 ,18706,18705,18706 ,0,0,0}, {34381,34380,34377 ,18706,18575,18706 ,0,0,0}, - {34376,34378,34374 ,18705,18707,18704 ,0,0,0}, {34375,34382,34373 ,18704,18703,18703 ,0,0,0}, - {34382,34383,34384 ,18703,18708,18708 ,0,0,0}, {34384,34373,34382 ,18708,18703,18703 ,0,0,0}, - {34385,34383,34386 ,18601,18708,18601 ,0,0,0}, {34383,34385,34384 ,18708,18601,18708 ,0,0,0}, - {34387,34388,34389 ,18709,18710,18710 ,0,0,0}, {34390,34391,34392 ,18711,18712,18711 ,0,0,0}, - {34389,34388,34392 ,18710,18710,18711 ,0,0,0}, {34393,34394,34395 ,18583,18583,18712 ,0,0,0}, - {34391,34390,34395 ,18712,18711,18712 ,0,0,0}, {34395,34394,34391 ,18712,18583,18712 ,0,0,0}, - {34390,34392,34388 ,18711,18711,18710 ,0,0,0}, {34389,34396,34387 ,18710,18709,18709 ,0,0,0}, - {34396,34397,34398 ,18709,18713,18713 ,0,0,0}, {34398,34387,34396 ,18713,18709,18709 ,0,0,0}, - {34399,34397,34400 ,18609,18713,18609 ,0,0,0}, {34397,34399,34398 ,18713,18609,18713 ,0,0,0}, - {34401,34402,34403 ,18714,18715,18715 ,0,0,0}, {34404,34405,34406 ,18716,18717,18716 ,0,0,0}, - {34403,34402,34406 ,18715,18715,18716 ,0,0,0}, {34407,34408,34409 ,18573,18573,18717 ,0,0,0}, - {34405,34404,34409 ,18717,18716,18717 ,0,0,0}, {34409,34408,34405 ,18717,18573,18717 ,0,0,0}, - {34404,34406,34402 ,18716,18716,18715 ,0,0,0}, {34403,34410,34401 ,18715,18714,18714 ,0,0,0}, - {34410,34411,34412 ,18714,18718,18718 ,0,0,0}, {34412,34401,34410 ,18718,18714,18714 ,0,0,0}, - {34413,34411,34414 ,18575,18718,18575 ,0,0,0}, {34411,34413,34412 ,18718,18575,18718 ,0,0,0}, - {34415,34416,34417 ,18719,18720,18720 ,0,0,0}, {34418,34419,34420 ,18721,18722,18721 ,0,0,0}, - {34417,34416,34420 ,18720,18720,18721 ,0,0,0}, {34421,34422,34423 ,18581,18581,18722 ,0,0,0}, - {34419,34418,34423 ,18722,18721,18722 ,0,0,0}, {34423,34422,34419 ,18722,18581,18722 ,0,0,0}, - {34418,34420,34416 ,18721,18721,18720 ,0,0,0}, {34417,34424,34415 ,18720,18719,18719 ,0,0,0}, - {34424,34425,34426 ,18719,18723,18723 ,0,0,0}, {34426,34415,34424 ,18723,18719,18719 ,0,0,0}, - {34427,34425,34428 ,18583,18723,18583 ,0,0,0}, {34425,34427,34426 ,18723,18583,18723 ,0,0,0}, - {34429,34430,34431 ,18724,18725,18725 ,0,0,0}, {34432,34433,34434 ,18726,18727,18726 ,0,0,0}, - {34431,34430,34434 ,18725,18725,18726 ,0,0,0}, {34435,34436,34437 ,18588,18588,18727 ,0,0,0}, - {34433,34432,34437 ,18727,18726,18727 ,0,0,0}, {34437,34436,34433 ,18727,18588,18727 ,0,0,0}, - {34432,34434,34430 ,18726,18726,18725 ,0,0,0}, {34431,34438,34429 ,18725,18724,18724 ,0,0,0}, - {34438,34439,34440 ,18724,18728,18728 ,0,0,0}, {34440,34429,34438 ,18728,18724,18724 ,0,0,0}, - {34441,34439,34442 ,18573,18728,18573 ,0,0,0}, {34439,34441,34440 ,18728,18573,18728 ,0,0,0}, - {34443,34444,34445 ,18729,18730,18731 ,0,0,0}, {34446,34447,34448 ,18732,18733,18734 ,0,0,0}, - {34445,34444,34448 ,18731,18730,18734 ,0,0,0}, {34449,34450,34451 ,18594,18594,18733 ,0,0,0}, - {34447,34446,34451 ,18733,18732,18733 ,0,0,0}, {34451,34450,34447 ,18733,18594,18733 ,0,0,0}, - {34446,34448,34444 ,18732,18734,18730 ,0,0,0}, {34445,34452,34443 ,18731,18729,18729 ,0,0,0}, - {34452,34453,34454 ,18729,18595,18595 ,0,0,0}, {34454,34443,34452 ,18595,18729,18729 ,0,0,0}, - {34455,34453,34456 ,18581,18595,18581 ,0,0,0}, {34453,34455,34454 ,18595,18581,18595 ,0,0,0}, - {34457,34458,34459 ,18735,18736,18737 ,0,0,0}, {34457,34460,34461 ,18735,18738,18739 ,0,0,0}, - {34460,34462,34461 ,18738,18740,18739 ,0,0,0}, {34459,34460,34457 ,18737,18738,18735 ,0,0,0}, - {34463,34464,34465 ,18741,18742,18743 ,0,0,0}, {34462,34463,34465 ,18740,18741,18743 ,0,0,0}, - {34464,34466,34467 ,18742,18744,18745 ,0,0,0}, {34466,34464,34463 ,18744,18742,18741 ,0,0,0}, - {34467,34466,34468 ,18745,18744,18746 ,0,0,0}, {34469,34467,34468 ,18747,18745,18746 ,0,0,0}, - {34469,34470,34471 ,18747,18748,18749 ,0,0,0}, {34469,34468,34470 ,18747,18746,18748 ,0,0,0}, - {34465,34461,34462 ,18743,18739,18740 ,0,0,0}, {34472,34473,34474 ,18750,18751,126 ,0,0,0}, - {34472,34474,34471 ,18750,126,18749 ,0,0,0}, {34470,34472,34471 ,18748,18750,18749 ,0,0,0}, - {34459,34458,34475 ,18737,18736,18752 ,0,0,0}, {34476,34475,34477 ,18753,18752,18754 ,0,0,0}, - {34458,34477,34475 ,18736,18754,18752 ,0,0,0}, {34478,34479,34476 ,18755,18756,18753 ,0,0,0}, - {34476,34477,34478 ,18753,18754,18755 ,0,0,0}, {34479,34480,34481 ,18756,18757,18758 ,0,0,0}, - {34480,34479,34478 ,18757,18756,18755 ,0,0,0}, {34482,34481,34483 ,18759,18758,18760 ,0,0,0}, - {34480,34483,34481 ,18757,18760,18758 ,0,0,0}, {34484,34485,34482 ,18761,18067,18759 ,0,0,0}, - {34482,34483,34484 ,18759,18760,18761 ,0,0,0}, {34485,34486,34487 ,18067,18762,18763 ,0,0,0}, - {34486,34485,34484 ,18762,18067,18761 ,0,0,0}, {34486,34488,34487 ,18762,82,18763 ,0,0,0}, - {34489,34490,34491 ,18764,18765,18766 ,0,0,0}, {34489,34492,34493 ,18764,18767,18768 ,0,0,0}, - {34492,34494,34493 ,18767,18769,18768 ,0,0,0}, {34491,34492,34489 ,18766,18767,18764 ,0,0,0}, - {34495,34496,34497 ,18770,18771,18239 ,0,0,0}, {34494,34495,34497 ,18769,18770,18239 ,0,0,0}, - {34496,34498,34499 ,18771,18772,18773 ,0,0,0}, {34498,34496,34495 ,18772,18771,18770 ,0,0,0}, - {34499,34498,34500 ,18773,18772,18774 ,0,0,0}, {34501,34499,34500 ,18775,18773,18774 ,0,0,0}, - {34501,34502,34503 ,18775,18776,18777 ,0,0,0}, {34501,34500,34502 ,18775,18774,18776 ,0,0,0}, - {34497,34493,34494 ,18239,18768,18769 ,0,0,0}, {34504,34505,1297 ,18778,18751,126 ,0,0,0}, - {34504,1297,34503 ,18778,126,18777 ,0,0,0}, {34502,34504,34503 ,18776,18778,18777 ,0,0,0}, - {34491,34490,34506 ,18766,18765,18779 ,0,0,0}, {34507,34506,34508 ,18780,18779,18781 ,0,0,0}, - {34490,34508,34506 ,18765,18781,18779 ,0,0,0}, {34509,34510,34507 ,18782,18756,18780 ,0,0,0}, - {34507,34508,34509 ,18780,18781,18782 ,0,0,0}, {34510,34511,34512 ,18756,18783,18758 ,0,0,0}, - {34511,34510,34509 ,18783,18756,18782 ,0,0,0}, {34513,34512,34514 ,18784,18758,18785 ,0,0,0}, - {34511,34514,34512 ,18783,18785,18758 ,0,0,0}, {34515,34516,34513 ,18761,18786,18784 ,0,0,0}, - {34513,34514,34515 ,18784,18785,18761 ,0,0,0}, {34516,34517,34518 ,18786,18787,18763 ,0,0,0}, - {34517,34516,34515 ,18787,18786,18761 ,0,0,0}, {34517,2073,34518 ,18787,82,18763 ,0,0,0}, - {34519,34520,34521 ,18788,18789,18790 ,0,0,0}, {34519,34522,34523 ,18788,18791,18792 ,0,0,0}, - {34522,34524,34523 ,18791,18793,18792 ,0,0,0}, {34521,34522,34519 ,18790,18791,18788 ,0,0,0}, - {34525,34526,34527 ,18794,18795,18796 ,0,0,0}, {34524,34525,34527 ,18793,18794,18796 ,0,0,0}, - {34526,34528,34529 ,18795,18797,18798 ,0,0,0}, {34528,34526,34525 ,18797,18795,18794 ,0,0,0}, - {34529,34528,34530 ,18798,18797,18799 ,0,0,0}, {34531,34529,34530 ,18800,18798,18799 ,0,0,0}, - {34531,34532,34533 ,18800,18801,18802 ,0,0,0}, {34531,34530,34532 ,18800,18799,18801 ,0,0,0}, - {34527,34523,34524 ,18796,18792,18793 ,0,0,0}, {34534,34535,34536 ,18803,18804,126 ,0,0,0}, - {34534,34536,34533 ,18803,126,18802 ,0,0,0}, {34532,34534,34533 ,18801,18803,18802 ,0,0,0}, - {34521,34520,34537 ,18790,18789,18805 ,0,0,0}, {34538,34537,34539 ,18806,18805,18781 ,0,0,0}, - {34520,34539,34537 ,18789,18781,18805 ,0,0,0}, {34540,34541,34538 ,18807,18808,18806 ,0,0,0}, - {34538,34539,34540 ,18806,18781,18807 ,0,0,0}, {34541,34542,34543 ,18808,18809,18758 ,0,0,0}, - {34542,34541,34540 ,18809,18808,18807 ,0,0,0}, {34544,34543,34545 ,18810,18758,18811 ,0,0,0}, - {34542,34545,34543 ,18809,18811,18758 ,0,0,0}, {34546,34547,34544 ,18812,18813,18810 ,0,0,0}, - {34544,34545,34546 ,18810,18811,18812 ,0,0,0}, {34547,34548,34549 ,18813,18814,18763 ,0,0,0}, - {34548,34547,34546 ,18814,18813,18812 ,0,0,0}, {34548,34550,34549 ,18814,82,18763 ,0,0,0}, - {34551,34552,34553 ,18815,18816,18817 ,0,0,0}, {34551,34554,34555 ,18815,18818,18819 ,0,0,0}, - {34554,34556,34555 ,18818,18820,18819 ,0,0,0}, {34553,34554,34551 ,18817,18818,18815 ,0,0,0}, - {34557,34558,34559 ,18821,18822,18823 ,0,0,0}, {34556,34557,34559 ,18820,18821,18823 ,0,0,0}, - {34558,34560,34561 ,18822,18824,18825 ,0,0,0}, {34560,34558,34557 ,18824,18822,18821 ,0,0,0}, - {34561,34560,34562 ,18825,18824,18826 ,0,0,0}, {34563,34561,34562 ,18827,18825,18826 ,0,0,0}, - {34563,34564,34565 ,18827,18828,18829 ,0,0,0}, {34563,34562,34564 ,18827,18826,18828 ,0,0,0}, - {34559,34555,34556 ,18823,18819,18820 ,0,0,0}, {34566,34567,1263 ,18830,18804,126 ,0,0,0}, - {34566,1263,34565 ,18830,126,18829 ,0,0,0}, {34564,34566,34565 ,18828,18830,18829 ,0,0,0}, - {34553,34552,34568 ,18817,18816,18831 ,0,0,0}, {34569,34568,34570 ,18832,18831,18754 ,0,0,0}, - {34552,34570,34568 ,18816,18754,18831 ,0,0,0}, {34571,34572,34569 ,18833,18808,18832 ,0,0,0}, - {34569,34570,34571 ,18832,18754,18833 ,0,0,0}, {34572,34573,34574 ,18808,18834,18758 ,0,0,0}, - {34573,34572,34571 ,18834,18808,18833 ,0,0,0}, {34575,34574,34576 ,18835,18758,18836 ,0,0,0}, - {34573,34576,34574 ,18834,18836,18758 ,0,0,0}, {34577,34578,34575 ,18812,18837,18835 ,0,0,0}, - {34575,34576,34577 ,18835,18836,18812 ,0,0,0}, {34578,34579,34580 ,18837,18838,18763 ,0,0,0}, - {34579,34578,34577 ,18838,18837,18812 ,0,0,0}, {34579,2082,34580 ,18838,82,18763 ,0,0,0}, - {34581,34582,34583 ,18839,18840,18841 ,0,0,0}, {34581,34584,34585 ,18839,18842,18843 ,0,0,0}, - {34584,34586,34585 ,18842,18844,18843 ,0,0,0}, {34583,34584,34581 ,18841,18842,18839 ,0,0,0}, - {34587,34588,34589 ,18845,18846,18847 ,0,0,0}, {34586,34587,34589 ,18844,18845,18847 ,0,0,0}, - {34588,34590,34591 ,18846,18848,18849 ,0,0,0}, {34590,34588,34587 ,18848,18846,18845 ,0,0,0}, - {34591,34590,34592 ,18849,18848,18850 ,0,0,0}, {34593,34591,34592 ,18851,18849,18850 ,0,0,0}, - {34593,34594,34595 ,18851,18852,18853 ,0,0,0}, {34593,34592,34594 ,18851,18850,18852 ,0,0,0}, - {34589,34585,34586 ,18847,18843,18844 ,0,0,0}, {34596,34597,3049 ,18854,3316,126 ,0,0,0}, - {34596,3049,34595 ,18854,126,18853 ,0,0,0}, {34594,34596,34595 ,18852,18854,18853 ,0,0,0}, - {34583,34582,34598 ,18841,18840,18855 ,0,0,0}, {34599,34598,34600 ,18856,18855,18857 ,0,0,0}, - {34582,34600,34598 ,18840,18857,18855 ,0,0,0}, {34601,34602,34599 ,18858,18859,18856 ,0,0,0}, - {34599,34600,34601 ,18856,18857,18858 ,0,0,0}, {34602,34603,34604 ,18859,18860,18861 ,0,0,0}, - {34603,34602,34601 ,18860,18859,18858 ,0,0,0}, {34605,34604,34606 ,18784,18861,18862 ,0,0,0}, - {34603,34606,34604 ,18860,18862,18861 ,0,0,0}, {34607,34608,34605 ,18863,18864,18784 ,0,0,0}, - {34605,34606,34607 ,18784,18862,18863 ,0,0,0}, {34608,34609,34610 ,18864,18865,3343 ,0,0,0}, - {34609,34608,34607 ,18865,18864,18863 ,0,0,0}, {34609,3063,34610 ,18865,3370,3343 ,0,0,0}, - {34611,34612,34613 ,18866,18867,18868 ,0,0,0}, {34611,34614,34615 ,18866,18869,18870 ,0,0,0}, - {34614,34616,34615 ,18869,18871,18870 ,0,0,0}, {34613,34614,34611 ,18868,18869,18866 ,0,0,0}, - {34617,34618,34619 ,18872,18873,18874 ,0,0,0}, {34616,34617,34619 ,18871,18872,18874 ,0,0,0}, - {34618,34620,34621 ,18873,18875,18876 ,0,0,0}, {34620,34618,34617 ,18875,18873,18872 ,0,0,0}, - {34621,34620,34622 ,18876,18875,18877 ,0,0,0}, {34623,34621,34622 ,18878,18876,18877 ,0,0,0}, - {34623,34624,34625 ,18878,18879,18880 ,0,0,0}, {34623,34622,34624 ,18878,18877,18879 ,0,0,0}, - {34619,34615,34616 ,18874,18870,18871 ,0,0,0}, {34626,34627,34628 ,18881,18882,2619 ,0,0,0}, - {34626,34628,34625 ,18881,2619,18880 ,0,0,0}, {34624,34626,34625 ,18879,18881,18880 ,0,0,0}, - {34613,34612,34629 ,18868,18867,18883 ,0,0,0}, {34630,34629,34631 ,18884,18883,18885 ,0,0,0}, - {34612,34631,34629 ,18867,18885,18883 ,0,0,0}, {34632,34633,34630 ,18886,18887,18884 ,0,0,0}, - {34630,34631,34632 ,18884,18885,18886 ,0,0,0}, {34633,34634,34635 ,18887,18888,18889 ,0,0,0}, - {34634,34633,34632 ,18888,18887,18886 ,0,0,0}, {34636,34635,34637 ,18784,18889,18862 ,0,0,0}, - {34634,34637,34635 ,18888,18862,18889 ,0,0,0}, {34638,34639,34636 ,18890,18067,18784 ,0,0,0}, - {34636,34637,34638 ,18784,18862,18890 ,0,0,0}, {34639,34640,34641 ,18067,18891,2602 ,0,0,0}, - {34640,34639,34638 ,18891,18067,18890 ,0,0,0}, {34640,34642,34641 ,18891,82,2602 ,0,0,0}, - {34643,34644,34645 ,18839,18892,18893 ,0,0,0}, {34643,34646,34647 ,18839,18842,18843 ,0,0,0}, - {34646,34648,34647 ,18842,18894,18843 ,0,0,0}, {34645,34646,34643 ,18893,18842,18839 ,0,0,0}, - {34649,34650,34651 ,18895,18896,18897 ,0,0,0}, {34648,34649,34651 ,18894,18895,18897 ,0,0,0}, - {34650,34652,34653 ,18896,18898,18899 ,0,0,0}, {34652,34650,34649 ,18898,18896,18895 ,0,0,0}, - {34653,34652,34654 ,18899,18898,18900 ,0,0,0}, {34655,34653,34654 ,18901,18899,18900 ,0,0,0}, - {34655,34656,34657 ,18901,18902,18903 ,0,0,0}, {34655,34654,34656 ,18901,18900,18902 ,0,0,0}, - {34651,34647,34648 ,18897,18843,18894 ,0,0,0}, {34658,34659,34660 ,18904,2589,126 ,0,0,0}, - {34658,34660,34657 ,18904,126,18903 ,0,0,0}, {34656,34658,34657 ,18902,18904,18903 ,0,0,0}, - {34645,34644,34661 ,18893,18892,18905 ,0,0,0}, {34662,34661,34663 ,18906,18905,18907 ,0,0,0}, - {34644,34663,34661 ,18892,18907,18905 ,0,0,0}, {34664,34665,34662 ,18908,18909,18906 ,0,0,0}, - {34662,34663,34664 ,18906,18907,18908 ,0,0,0}, {34665,34666,34667 ,18909,18910,18911 ,0,0,0}, - {34666,34665,34664 ,18910,18909,18908 ,0,0,0}, {34668,34667,34669 ,18784,18911,18912 ,0,0,0}, - {34666,34669,34667 ,18910,18912,18911 ,0,0,0}, {34670,34671,34668 ,18913,18914,18784 ,0,0,0}, - {34668,34669,34670 ,18784,18912,18913 ,0,0,0}, {34671,34672,34673 ,18914,18891,3371 ,0,0,0}, - {34672,34671,34670 ,18891,18914,18913 ,0,0,0}, {34672,34674,34673 ,18891,82,3371 ,0,0,0}, - {34675,34676,34677 ,18866,18915,18916 ,0,0,0}, {34675,34678,34679 ,18866,18917,18843 ,0,0,0}, - {34678,34680,34679 ,18917,18918,18843 ,0,0,0}, {34677,34678,34675 ,18916,18917,18866 ,0,0,0}, - {34681,34682,34683 ,18919,18920,18921 ,0,0,0}, {34680,34681,34683 ,18918,18919,18921 ,0,0,0}, - {34682,34684,34685 ,18920,18922,18923 ,0,0,0}, {34684,34682,34681 ,18922,18920,18919 ,0,0,0}, - {34685,34684,34686 ,18923,18922,18924 ,0,0,0}, {34687,34685,34686 ,18925,18923,18924 ,0,0,0}, - {34687,34688,34689 ,18925,18926,18927 ,0,0,0}, {34687,34686,34688 ,18925,18924,18926 ,0,0,0}, - {34683,34679,34680 ,18921,18843,18918 ,0,0,0}, {34690,34691,3015 ,18928,18929,126 ,0,0,0}, - {34690,3015,34689 ,18928,126,18927 ,0,0,0}, {34688,34690,34689 ,18926,18928,18927 ,0,0,0}, - {34677,34676,34692 ,18916,18915,18930 ,0,0,0}, {34693,34692,34694 ,18931,18930,18932 ,0,0,0}, - {34676,34694,34692 ,18915,18932,18930 ,0,0,0}, {34695,34696,34693 ,18933,18934,18931 ,0,0,0}, - {34693,34694,34695 ,18931,18932,18933 ,0,0,0}, {34696,34697,34698 ,18934,18935,18936 ,0,0,0}, - {34697,34696,34695 ,18935,18934,18933 ,0,0,0}, {34699,34698,34700 ,18937,18936,18811 ,0,0,0}, - {34697,34700,34698 ,18935,18811,18936 ,0,0,0}, {34701,34702,34699 ,18761,18938,18937 ,0,0,0}, - {34699,34700,34701 ,18937,18811,18761 ,0,0,0}, {34702,34703,34704 ,18938,18865,3371 ,0,0,0}, - {34703,34702,34701 ,18865,18938,18761 ,0,0,0}, {34703,3029,34704 ,18865,82,3371 ,0,0,0}, - {34705,34706,34707 ,18939,18765,18940 ,0,0,0}, {34705,34708,34709 ,18939,18941,18942 ,0,0,0}, - {34708,34710,34709 ,18941,18943,18942 ,0,0,0}, {34707,34708,34705 ,18940,18941,18939 ,0,0,0}, - {34711,34712,34713 ,18944,18945,18946 ,0,0,0}, {34710,34711,34713 ,18943,18944,18946 ,0,0,0}, - {34712,34714,34715 ,18945,18797,18947 ,0,0,0}, {34714,34712,34711 ,18797,18945,18944 ,0,0,0}, - {34715,34714,34716 ,18947,18797,18948 ,0,0,0}, {34717,34715,34716 ,18949,18947,18948 ,0,0,0}, - {34717,34718,34719 ,18949,18950,18951 ,0,0,0}, {34717,34716,34718 ,18949,18948,18950 ,0,0,0}, - {34713,34709,34710 ,18946,18942,18943 ,0,0,0}, {34720,34721,34722 ,18952,8371,126 ,0,0,0}, - {34720,34722,34719 ,18952,126,18951 ,0,0,0}, {34718,34720,34719 ,18950,18952,18951 ,0,0,0}, - {34707,34706,34723 ,18940,18765,18953 ,0,0,0}, {34724,34723,34725 ,18954,18953,18955 ,0,0,0}, - {34706,34725,34723 ,18765,18955,18953 ,0,0,0}, {34726,34727,34724 ,18956,18957,18954 ,0,0,0}, - {34724,34725,34726 ,18954,18955,18956 ,0,0,0}, {34727,34728,34729 ,18957,18958,18959 ,0,0,0}, - {34728,34727,34726 ,18958,18957,18956 ,0,0,0}, {34730,34729,34731 ,18784,18959,18811 ,0,0,0}, - {34728,34731,34729 ,18958,18811,18959 ,0,0,0}, {34732,34733,34730 ,18960,18786,18784 ,0,0,0}, - {34730,34731,34732 ,18784,18811,18960 ,0,0,0}, {34733,34734,34735 ,18786,18814,18961 ,0,0,0}, - {34734,34733,34732 ,18814,18786,18960 ,0,0,0}, {34734,34736,34735 ,18814,82,18961 ,0,0,0}, - {34737,34738,34739 ,18962,18765,18940 ,0,0,0}, {34737,34740,34741 ,18962,18791,18963 ,0,0,0}, - {34740,34742,34741 ,18791,18943,18963 ,0,0,0}, {34739,34740,34737 ,18940,18791,18962 ,0,0,0}, - {34743,34744,34745 ,18964,18965,18239 ,0,0,0}, {34742,34743,34745 ,18943,18964,18239 ,0,0,0}, - {34744,34746,34747 ,18965,18966,18967 ,0,0,0}, {34746,34744,34743 ,18966,18965,18964 ,0,0,0}, - {34747,34746,34748 ,18967,18966,18968 ,0,0,0}, {34749,34747,34748 ,18969,18967,18968 ,0,0,0}, - {34749,34750,34751 ,18969,18970,18971 ,0,0,0}, {34749,34748,34750 ,18969,18968,18970 ,0,0,0}, - {34745,34741,34742 ,18239,18963,18943 ,0,0,0}, {34752,34753,2950 ,18972,18973,126 ,0,0,0}, - {34752,2950,34751 ,18972,126,18971 ,0,0,0}, {34750,34752,34751 ,18970,18972,18971 ,0,0,0}, - {34739,34738,34754 ,18940,18765,18805 ,0,0,0}, {34755,34754,34756 ,18954,18805,18974 ,0,0,0}, - {34738,34756,34754 ,18765,18974,18805 ,0,0,0}, {34757,34758,34755 ,18956,18957,18954 ,0,0,0}, - {34755,34756,34757 ,18954,18974,18956 ,0,0,0}, {34758,34759,34760 ,18957,18958,18975 ,0,0,0}, - {34759,34758,34757 ,18958,18957,18956 ,0,0,0}, {34761,34760,34762 ,18976,18975,18811 ,0,0,0}, - {34759,34762,34760 ,18958,18811,18975 ,0,0,0}, {34763,34764,34761 ,18812,18786,18976 ,0,0,0}, - {34761,34762,34763 ,18976,18811,18812 ,0,0,0}, {34764,34765,34766 ,18786,18814,18961 ,0,0,0}, - {34765,34764,34763 ,18814,18786,18812 ,0,0,0}, {34765,2131,34766 ,18814,82,18961 ,0,0,0}, - {34767,34768,34769 ,18977,18736,18978 ,0,0,0}, {34767,34770,34771 ,18977,18818,18979 ,0,0,0}, - {34770,34772,34771 ,18818,18980,18979 ,0,0,0}, {34769,34770,34767 ,18978,18818,18977 ,0,0,0}, - {34773,34774,34775 ,18981,18982,18743 ,0,0,0}, {34772,34773,34775 ,18980,18981,18743 ,0,0,0}, - {34774,34776,34777 ,18982,18983,18984 ,0,0,0}, {34776,34774,34773 ,18983,18982,18981 ,0,0,0}, - {34777,34776,34778 ,18984,18983,18985 ,0,0,0}, {34779,34777,34778 ,18986,18984,18985 ,0,0,0}, - {34779,34780,34781 ,18986,18987,18988 ,0,0,0}, {34779,34778,34780 ,18986,18985,18987 ,0,0,0}, - {34775,34771,34772 ,18743,18979,18980 ,0,0,0}, {34782,34783,34784 ,18989,18973,126 ,0,0,0}, - {34782,34784,34781 ,18989,126,18988 ,0,0,0}, {34780,34782,34781 ,18987,18989,18988 ,0,0,0}, - {34769,34768,34785 ,18978,18736,18831 ,0,0,0}, {34786,34785,34787 ,18990,18831,18991 ,0,0,0}, - {34768,34787,34785 ,18736,18991,18831 ,0,0,0}, {34788,34789,34786 ,18992,18957,18990 ,0,0,0}, - {34786,34787,34788 ,18990,18991,18992 ,0,0,0}, {34789,34790,34791 ,18957,18993,18975 ,0,0,0}, - {34790,34789,34788 ,18993,18957,18992 ,0,0,0}, {34792,34791,34793 ,18994,18975,18836 ,0,0,0}, - {34790,34793,34791 ,18993,18836,18975 ,0,0,0}, {34794,34795,34792 ,18812,18067,18994 ,0,0,0}, - {34792,34793,34794 ,18994,18836,18812 ,0,0,0}, {34795,34796,34797 ,18067,18838,18961 ,0,0,0}, - {34796,34795,34794 ,18838,18067,18812 ,0,0,0}, {34796,34798,34797 ,18838,82,18961 ,0,0,0}, - {34799,34800,34801 ,18995,18736,18978 ,0,0,0}, {34799,34802,34803 ,18995,18996,18997 ,0,0,0}, - {34802,34804,34803 ,18996,18980,18997 ,0,0,0}, {34801,34802,34799 ,18978,18996,18995 ,0,0,0}, - {34805,34806,34807 ,18998,18999,19000 ,0,0,0}, {34804,34805,34807 ,18980,18998,19000 ,0,0,0}, - {34806,34808,34809 ,18999,18824,19001 ,0,0,0}, {34808,34806,34805 ,18824,18999,18998 ,0,0,0}, - {34809,34808,34810 ,19001,18824,19002 ,0,0,0}, {34811,34809,34810 ,19003,19001,19002 ,0,0,0}, - {34811,34812,34813 ,19003,19004,19005 ,0,0,0}, {34811,34810,34812 ,19003,19002,19004 ,0,0,0}, - {34807,34803,34804 ,19000,18997,18980 ,0,0,0}, {34814,34815,2941 ,19006,8371,126 ,0,0,0}, - {34814,2941,34813 ,19006,126,19005 ,0,0,0}, {34812,34814,34813 ,19004,19006,19005 ,0,0,0}, - {34801,34800,34816 ,18978,18736,19007 ,0,0,0}, {34817,34816,34818 ,18990,19007,19008 ,0,0,0}, - {34800,34818,34816 ,18736,19008,19007 ,0,0,0}, {34819,34820,34817 ,18992,18957,18990 ,0,0,0}, - {34817,34818,34819 ,18990,19008,18992 ,0,0,0}, {34820,34821,34822 ,18957,18993,18959 ,0,0,0}, - {34821,34820,34819 ,18993,18957,18992 ,0,0,0}, {34823,34822,34824 ,18759,18959,18836 ,0,0,0}, - {34821,34824,34822 ,18993,18836,18959 ,0,0,0}, {34825,34826,34823 ,18960,18067,18759 ,0,0,0}, - {34823,34824,34825 ,18759,18836,18960 ,0,0,0}, {34826,34827,34828 ,18067,18838,18961 ,0,0,0}, - {34827,34826,34825 ,18838,18067,18960 ,0,0,0}, {34827,2165,34828 ,18838,82,18961 ,0,0,0}, - {34829,34830,34831 ,19009,19010,19011 ,0,0,0}, {34829,34832,34833 ,19009,19012,19013 ,0,0,0}, - {34832,34834,34833 ,19012,18844,19013 ,0,0,0}, {34831,34832,34829 ,19011,19012,19009 ,0,0,0}, - {34835,34836,34837 ,19014,19015,19016 ,0,0,0}, {34834,34835,34837 ,18844,19014,19016 ,0,0,0}, - {34836,34838,34839 ,19015,19017,19018 ,0,0,0}, {34838,34836,34835 ,19017,19015,19014 ,0,0,0}, - {34839,34838,34840 ,19018,19017,19019 ,0,0,0}, {34841,34839,34840 ,19020,19018,19019 ,0,0,0}, - {34841,34842,34843 ,19020,19021,19022 ,0,0,0}, {34841,34840,34842 ,19020,19019,19021 ,0,0,0}, - {34837,34833,34834 ,19016,19013,18844 ,0,0,0}, {34844,34845,3931 ,19023,2589,126 ,0,0,0}, - {34844,3931,34843 ,19023,126,19022 ,0,0,0}, {34842,34844,34843 ,19021,19023,19022 ,0,0,0}, - {34831,34830,34846 ,19011,19010,19024 ,0,0,0}, {34847,34846,34848 ,19025,19024,19026 ,0,0,0}, - {34830,34848,34846 ,19010,19026,19024 ,0,0,0}, {34849,34850,34847 ,19027,18756,19025 ,0,0,0}, - {34847,34848,34849 ,19025,19026,19027 ,0,0,0}, {34850,34851,34852 ,18756,18910,19028 ,0,0,0}, - {34851,34850,34849 ,18910,18756,19027 ,0,0,0}, {34853,34852,34854 ,18937,19028,19029 ,0,0,0}, - {34851,34854,34852 ,18910,19029,19028 ,0,0,0}, {34855,34856,34853 ,19030,18864,18937 ,0,0,0}, - {34853,34854,34855 ,18937,19029,19030 ,0,0,0}, {34856,34857,34858 ,18864,19031,3371 ,0,0,0}, - {34857,34856,34855 ,19031,18864,19030 ,0,0,0}, {34857,3917,34858 ,19031,82,3371 ,0,0,0}, - {34859,34860,34861 ,19032,19033,19034 ,0,0,0}, {34859,34862,34863 ,19032,19035,19036 ,0,0,0}, - {34862,34864,34863 ,19035,19037,19036 ,0,0,0}, {34861,34862,34859 ,19034,19035,19032 ,0,0,0}, - {34865,34866,34867 ,19038,19039,19040 ,0,0,0}, {34864,34865,34867 ,19037,19038,19040 ,0,0,0}, - {34866,34868,34869 ,19039,19041,19042 ,0,0,0}, {34868,34866,34865 ,19041,19039,19038 ,0,0,0}, - {34869,34868,34870 ,19042,19041,19043 ,0,0,0}, {34871,34869,34870 ,19044,19042,19043 ,0,0,0}, - {34871,34872,34873 ,19044,19045,19046 ,0,0,0}, {34871,34870,34872 ,19044,19043,19045 ,0,0,0}, - {34867,34863,34864 ,19040,19036,19037 ,0,0,0}, {34874,34875,34876 ,19047,18929,126 ,0,0,0}, - {34874,34876,34873 ,19047,126,19046 ,0,0,0}, {34872,34874,34873 ,19045,19047,19046 ,0,0,0}, - {34861,34860,34877 ,19034,19033,19048 ,0,0,0}, {34878,34877,34879 ,19049,19048,19050 ,0,0,0}, - {34860,34879,34877 ,19033,19050,19048 ,0,0,0}, {34880,34881,34878 ,19051,19052,19049 ,0,0,0}, - {34878,34879,34880 ,19049,19050,19051 ,0,0,0}, {34881,34882,34883 ,19052,19053,19054 ,0,0,0}, - {34882,34881,34880 ,19053,19052,19051 ,0,0,0}, {34884,34883,34885 ,19055,19054,18811 ,0,0,0}, - {34882,34885,34883 ,19053,18811,19054 ,0,0,0}, {34886,34887,34884 ,19056,18938,19055 ,0,0,0}, - {34884,34885,34886 ,19055,18811,19056 ,0,0,0}, {34887,34888,34889 ,18938,19057,3371 ,0,0,0}, - {34888,34887,34886 ,19057,18938,19056 ,0,0,0}, {34888,34890,34889 ,19057,82,3371 ,0,0,0}, - {34891,34892,34893 ,19058,19059,19060 ,0,0,0}, {34891,34894,34895 ,19058,19061,19062 ,0,0,0}, - {34894,34896,34895 ,19061,19063,19062 ,0,0,0}, {34893,34894,34891 ,19060,19061,19058 ,0,0,0}, - {34897,34898,34899 ,19064,19065,19066 ,0,0,0}, {34896,34897,34899 ,19063,19064,19066 ,0,0,0}, - {34898,34900,34901 ,19065,19067,19068 ,0,0,0}, {34900,34898,34897 ,19067,19065,19064 ,0,0,0}, - {34901,34900,34902 ,19068,19067,19069 ,0,0,0}, {34903,34901,34902 ,19070,19068,19069 ,0,0,0}, - {34903,34904,34905 ,19070,19071,19072 ,0,0,0}, {34903,34902,34904 ,19070,19069,19071 ,0,0,0}, - {34899,34895,34896 ,19066,19062,19063 ,0,0,0}, {34906,34907,3897 ,19073,3316,126 ,0,0,0}, - {34906,3897,34905 ,19073,126,19072 ,0,0,0}, {34904,34906,34905 ,19071,19073,19072 ,0,0,0}, - {34893,34892,34908 ,19060,19059,19074 ,0,0,0}, {34909,34908,34910 ,19075,19074,19076 ,0,0,0}, - {34892,34910,34908 ,19059,19076,19074 ,0,0,0}, {34911,34912,34909 ,18933,19077,19075 ,0,0,0}, - {34909,34910,34911 ,19075,19076,18933 ,0,0,0}, {34912,34913,34914 ,19077,19078,19079 ,0,0,0}, - {34913,34912,34911 ,19078,19077,18933 ,0,0,0}, {34915,34914,34916 ,19080,19079,18811 ,0,0,0}, - {34913,34916,34914 ,19078,18811,19079 ,0,0,0}, {34917,34918,34915 ,19081,18067,19080 ,0,0,0}, - {34915,34916,34917 ,19080,18811,19081 ,0,0,0}, {34918,34919,34920 ,18067,18838,2602 ,0,0,0}, - {34919,34918,34917 ,18838,18067,19081 ,0,0,0}, {34919,3883,34920 ,18838,82,2602 ,0,0,0}, - {34921,34922,34923 ,19009,19082,19083 ,0,0,0}, {34921,34924,34925 ,19009,19084,19085 ,0,0,0}, - {34924,34926,34925 ,19084,19086,19085 ,0,0,0}, {34923,34924,34921 ,19083,19084,19009 ,0,0,0}, - {34927,34928,34929 ,19087,19088,19089 ,0,0,0}, {34926,34927,34929 ,19086,19087,19089 ,0,0,0}, - {34928,34930,34931 ,19088,19090,19091 ,0,0,0}, {34930,34928,34927 ,19090,19088,19087 ,0,0,0}, - {34931,34930,34932 ,19091,19090,19092 ,0,0,0}, {34933,34931,34932 ,19093,19091,19092 ,0,0,0}, - {34933,34934,34935 ,19093,19094,19095 ,0,0,0}, {34933,34932,34934 ,19093,19092,19094 ,0,0,0}, - {34929,34925,34926 ,19089,19085,19086 ,0,0,0}, {34936,34937,34938 ,19096,3316,126 ,0,0,0}, - {34936,34938,34935 ,19096,126,19095 ,0,0,0}, {34934,34936,34935 ,19094,19096,19095 ,0,0,0}, - {34923,34922,34939 ,19083,19082,19097 ,0,0,0}, {34940,34939,34941 ,18906,19097,19098 ,0,0,0}, - {34922,34941,34939 ,19082,19098,19097 ,0,0,0}, {34942,34943,34940 ,19099,19100,18906 ,0,0,0}, - {34940,34941,34942 ,18906,19098,19099 ,0,0,0}, {34943,34944,34945 ,19100,19101,19102 ,0,0,0}, - {34944,34943,34942 ,19101,19100,19099 ,0,0,0}, {34946,34945,34947 ,18784,19102,19103 ,0,0,0}, - {34944,34947,34945 ,19101,19103,19102 ,0,0,0}, {34948,34949,34946 ,18761,19104,18784 ,0,0,0}, - {34946,34947,34948 ,18784,19103,18761 ,0,0,0}, {34949,34950,34951 ,19104,19105,3343 ,0,0,0}, - {34950,34949,34948 ,19105,19104,18761 ,0,0,0}, {34950,34952,34951 ,19105,3370,3343 ,0,0,0}, - {34953,34954,34955 ,19106,19107,19108 ,0,0,0}, {34956,34957,34958 ,19109,19110,19111 ,0,0,0}, - {34959,34953,34955 ,19112,19106,19108 ,0,0,0}, {34956,34958,34960 ,19109,19111,19113 ,0,0,0}, - {34957,34956,34959 ,19110,19109,19112 ,0,0,0}, {34957,34959,34955 ,19110,19112,19108 ,0,0,0}, - {34961,34962,34963 ,19114,126,19115 ,0,0,0}, {34963,34960,34964 ,19115,19113,19116 ,0,0,0}, - {34961,34963,34964 ,19114,19115,19116 ,0,0,0}, {34962,34961,34965 ,126,19114,18751 ,0,0,0}, - {34964,34960,34958 ,19116,19113,19111 ,0,0,0}, {34953,34966,34954 ,19106,19117,19107 ,0,0,0}, - {34967,34966,34968 ,19118,19117,19119 ,0,0,0}, {34966,34967,34954 ,19117,19118,19107 ,0,0,0}, - {34969,34970,34968 ,19120,19121,19119 ,0,0,0}, {34967,34968,34970 ,19118,19119,19121 ,0,0,0}, - {34969,34971,34972 ,19120,19122,19123 ,0,0,0}, {34972,34970,34969 ,19123,19121,19120 ,0,0,0}, - {34973,34971,34974 ,793,19122,18961 ,0,0,0}, {34971,34973,34972 ,19122,793,19123 ,0,0,0}, - {34975,34976,34977 ,19124,19125,19126 ,0,0,0}, {34978,34979,34980 ,19127,19128,19129 ,0,0,0}, - {34981,34975,34977 ,19130,19124,19126 ,0,0,0}, {34978,34980,34982 ,19127,19129,19131 ,0,0,0}, - {34979,34978,34981 ,19128,19127,19130 ,0,0,0}, {34979,34981,34977 ,19128,19130,19126 ,0,0,0}, - {34983,34984,34985 ,19132,126,19133 ,0,0,0}, {34985,34982,34986 ,19133,19131,19134 ,0,0,0}, - {34983,34985,34986 ,19132,19133,19134 ,0,0,0}, {34984,34983,34987 ,126,19132,8371 ,0,0,0}, - {34986,34982,34980 ,19134,19131,19129 ,0,0,0}, {34975,34988,34976 ,19124,19135,19125 ,0,0,0}, - {34989,34988,34990 ,19136,19135,19137 ,0,0,0}, {34988,34989,34976 ,19135,19136,19125 ,0,0,0}, - {34991,34992,34990 ,19138,19139,19137 ,0,0,0}, {34989,34990,34992 ,19136,19137,19139 ,0,0,0}, - {34991,34993,34994 ,19138,19140,19141 ,0,0,0}, {34994,34992,34991 ,19141,19139,19138 ,0,0,0}, - {34995,34993,34996 ,19142,19140,18961 ,0,0,0}, {34993,34995,34994 ,19140,19142,19141 ,0,0,0}, - {34997,34998,34999 ,19143,19144,19145 ,0,0,0}, {35000,35001,35002 ,19146,19147,19148 ,0,0,0}, - {35003,34997,34999 ,19149,19143,19145 ,0,0,0}, {35000,35002,35004 ,19146,19148,19150 ,0,0,0}, - {35001,35000,35003 ,19147,19146,19149 ,0,0,0}, {35001,35003,34999 ,19147,19149,19145 ,0,0,0}, - {35005,35006,35007 ,19151,35,19152 ,0,0,0}, {35007,35004,35008 ,19152,19150,19153 ,0,0,0}, - {35005,35007,35008 ,19151,19152,19153 ,0,0,0}, {35006,35005,35009 ,35,19151,40 ,0,0,0}, - {35008,35004,35002 ,19153,19150,19148 ,0,0,0}, {34997,35010,34998 ,19143,19154,19144 ,0,0,0}, - {35011,35010,35012 ,19155,19154,19156 ,0,0,0}, {35010,35011,34998 ,19154,19155,19144 ,0,0,0}, - {35013,35014,35012 ,19157,19158,19156 ,0,0,0}, {35011,35012,35014 ,19155,19156,19158 ,0,0,0}, - {35013,35015,35016 ,19157,19159,19160 ,0,0,0}, {35016,35014,35013 ,19160,19158,19157 ,0,0,0}, - {35017,35015,35018 ,19161,19159,82 ,0,0,0}, {35015,35017,35016 ,19159,19161,19160 ,0,0,0}, - {35019,35020,35021 ,19162,19163,19164 ,0,0,0}, {35022,35023,35024 ,19165,19166,19167 ,0,0,0}, - {35025,35019,35021 ,19168,19162,19164 ,0,0,0}, {35022,35024,35026 ,19165,19167,19169 ,0,0,0}, - {35023,35022,35025 ,19166,19165,19168 ,0,0,0}, {35023,35025,35021 ,19166,19168,19164 ,0,0,0}, - {35027,35028,35029 ,19170,35,19171 ,0,0,0}, {35029,35026,35030 ,19171,19169,19172 ,0,0,0}, - {35027,35029,35030 ,19170,19171,19172 ,0,0,0}, {35028,35027,35031 ,35,19170,40 ,0,0,0}, - {35030,35026,35024 ,19172,19169,19167 ,0,0,0}, {35019,35032,35020 ,19162,19154,19163 ,0,0,0}, - {35033,35032,35034 ,19173,19154,19174 ,0,0,0}, {35032,35033,35020 ,19154,19173,19163 ,0,0,0}, - {35035,35036,35034 ,19175,19176,19174 ,0,0,0}, {35033,35034,35036 ,19173,19174,19176 ,0,0,0}, - {35035,35037,35038 ,19175,19159,19177 ,0,0,0}, {35038,35036,35035 ,19177,19176,19175 ,0,0,0}, - {35039,35037,35040 ,19161,19159,82 ,0,0,0}, {35037,35039,35038 ,19159,19161,19177 ,0,0,0}, - {35041,35042,35043 ,19106,19178,19108 ,0,0,0}, {35044,35045,35046 ,19179,19180,19181 ,0,0,0}, - {35047,35041,35043 ,19112,19106,19108 ,0,0,0}, {35044,35046,35048 ,19179,19181,19182 ,0,0,0}, - {35045,35044,35047 ,19180,19179,19112 ,0,0,0}, {35045,35047,35043 ,19180,19112,19108 ,0,0,0}, - {35049,35050,35051 ,19183,19184,19185 ,0,0,0}, {35051,35048,35052 ,19185,19182,19186 ,0,0,0}, - {35049,35051,35052 ,19183,19185,19186 ,0,0,0}, {35050,35049,35053 ,19184,19183,19187 ,0,0,0}, - {35052,35048,35046 ,19186,19182,19181 ,0,0,0}, {35041,35054,35042 ,19106,19188,19178 ,0,0,0}, - {35055,35054,35056 ,19189,19188,19190 ,0,0,0}, {35054,35055,35042 ,19188,19189,19178 ,0,0,0}, - {35057,35058,35056 ,19120,19191,19190 ,0,0,0}, {35055,35056,35058 ,19189,19190,19191 ,0,0,0}, - {35057,35059,35060 ,19120,19192,19193 ,0,0,0}, {35060,35058,35057 ,19193,19191,19120 ,0,0,0}, - {35061,35059,35062 ,19142,19192,18961 ,0,0,0}, {35059,35061,35060 ,19192,19142,19193 ,0,0,0}, - {35063,35064,35065 ,19194,19195,19196 ,0,0,0}, {35066,35067,35068 ,19197,19198,19199 ,0,0,0}, - {35069,35063,35065 ,19200,19194,19196 ,0,0,0}, {35066,35068,35070 ,19197,19199,19201 ,0,0,0}, - {35067,35066,35069 ,19198,19197,19200 ,0,0,0}, {35067,35069,35065 ,19198,19200,19196 ,0,0,0}, - {35071,35072,35073 ,19202,35,19203 ,0,0,0}, {35073,35070,35074 ,19203,19201,19204 ,0,0,0}, - {35071,35073,35074 ,19202,19203,19204 ,0,0,0}, {35072,35071,35075 ,35,19202,40 ,0,0,0}, - {35074,35070,35068 ,19204,19201,19199 ,0,0,0}, {35063,35076,35064 ,19194,19205,19195 ,0,0,0}, - {35077,35076,35078 ,19206,19205,19207 ,0,0,0}, {35076,35077,35064 ,19205,19206,19195 ,0,0,0}, - {35079,35080,35078 ,19157,19176,19207 ,0,0,0}, {35077,35078,35080 ,19206,19207,19176 ,0,0,0}, - {35079,35081,35082 ,19157,19159,8359 ,0,0,0}, {35082,35080,35079 ,8359,19176,19157 ,0,0,0}, - {35083,35081,35084 ,19161,19159,82 ,0,0,0}, {35081,35083,35082 ,19159,19161,8359 ,0,0,0}, - {35085,35086,35087 ,19208,19209,19210 ,0,0,0}, {35088,35089,35090 ,19197,19166,19211 ,0,0,0}, - {35091,35085,35087 ,19212,19208,19210 ,0,0,0}, {35088,35090,35092 ,19197,19211,19213 ,0,0,0}, - {35089,35088,35091 ,19166,19197,19212 ,0,0,0}, {35089,35091,35087 ,19166,19212,19210 ,0,0,0}, - {35093,35094,35095 ,19214,35,19215 ,0,0,0}, {35095,35092,35096 ,19215,19213,19216 ,0,0,0}, - {35093,35095,35096 ,19214,19215,19216 ,0,0,0}, {35094,35093,35097 ,35,19214,40 ,0,0,0}, - {35096,35092,35090 ,19216,19213,19211 ,0,0,0}, {35085,35098,35086 ,19208,19217,19209 ,0,0,0}, - {35099,35098,35100 ,19206,19217,19218 ,0,0,0}, {35098,35099,35086 ,19217,19206,19209 ,0,0,0}, - {35101,35102,35100 ,19157,8360,19218 ,0,0,0}, {35099,35100,35102 ,19206,19218,8360 ,0,0,0}, - {35101,35103,35104 ,19157,19159,19160 ,0,0,0}, {35104,35102,35101 ,19160,8360,19157 ,0,0,0}, - {35105,35103,35106 ,19161,19159,82 ,0,0,0}, {35103,35105,35104 ,19159,19161,19160 ,0,0,0}, - {35107,35108,35109 ,19124,19219,19126 ,0,0,0}, {35110,35111,35112 ,19220,19221,19222 ,0,0,0}, - {35113,35107,35109 ,19223,19124,19126 ,0,0,0}, {35110,35112,35114 ,19220,19222,19224 ,0,0,0}, - {35111,35110,35113 ,19221,19220,19223 ,0,0,0}, {35111,35113,35109 ,19221,19223,19126 ,0,0,0}, - {35115,35116,35117 ,19225,126,19226 ,0,0,0}, {35117,35114,35118 ,19226,19224,19227 ,0,0,0}, - {35115,35117,35118 ,19225,19226,19227 ,0,0,0}, {35116,35115,35119 ,126,19225,18751 ,0,0,0}, - {35118,35114,35112 ,19227,19224,19222 ,0,0,0}, {35107,35120,35108 ,19124,19228,19219 ,0,0,0}, - {35121,35120,35122 ,19229,19228,19230 ,0,0,0}, {35120,35121,35108 ,19228,19229,19219 ,0,0,0}, - {35123,35124,35122 ,19231,19232,19230 ,0,0,0}, {35121,35122,35124 ,19229,19230,19232 ,0,0,0}, - {35123,35125,35126 ,19231,19140,19233 ,0,0,0}, {35126,35124,35123 ,19233,19232,19231 ,0,0,0}, - {35127,35125,35128 ,19234,19140,18763 ,0,0,0}, {35125,35127,35126 ,19140,19234,19233 ,0,0,0}, - {35129,35130,35131 ,19235,19236,19237 ,0,0,0}, {35132,35133,35134 ,19238,19239,19240 ,0,0,0}, - {35135,35133,35136 ,19241,19239,19242 ,0,0,0}, {35132,35136,35133 ,19238,19242,19239 ,0,0,0}, - {35137,35132,35134 ,19243,19238,19240 ,0,0,0}, {35137,35138,35139 ,19243,19244,19245 ,0,0,0}, - {35138,35140,35139 ,19244,19246,19245 ,0,0,0}, {35139,35140,35141 ,19245,19246,19247 ,0,0,0}, - {35141,35142,35143 ,19247,19248,19249 ,0,0,0}, {35141,35140,35142 ,19247,19246,19248 ,0,0,0}, - {35144,35145,35146 ,19250,19251,19252 ,0,0,0}, {35147,35143,35142 ,19253,19249,19248 ,0,0,0}, - {35145,35148,35146 ,19251,19254,19252 ,0,0,0}, {35147,35148,35149 ,19253,19254,19255 ,0,0,0}, - {35143,35147,35149 ,19249,19253,19255 ,0,0,0}, {35149,35148,35145 ,19255,19254,19251 ,0,0,0}, - {35150,35151,35152 ,19256,19257,19258 ,0,0,0}, {35146,35151,35144 ,19252,19257,19250 ,0,0,0}, - {35150,35152,35153 ,19256,19258,19259 ,0,0,0}, {35151,35150,35144 ,19257,19256,19250 ,0,0,0}, - {35138,35137,35134 ,19244,19243,19240 ,0,0,0}, {35154,35155,35156 ,19260,19261,19262 ,0,0,0}, - {35155,35153,35156 ,19261,19259,19262 ,0,0,0}, {35157,35158,35159 ,19263,19264,19265 ,0,0,0}, - {35157,35155,35154 ,19263,19261,19260 ,0,0,0}, {35160,35159,35158 ,19266,19265,19264 ,0,0,0}, - {35154,35158,35157 ,19260,19264,19263 ,0,0,0}, {35161,35162,35160 ,19267,19268,19266 ,0,0,0}, - {35162,35159,35160 ,19268,19265,19266 ,0,0,0}, {35163,35164,35165 ,19269,19270,19271 ,0,0,0}, - {35166,35167,35168 ,19272,19273,19274 ,0,0,0}, {35169,35161,35170 ,19275,19267,19276 ,0,0,0}, - {35171,35167,35166 ,19277,19273,19272 ,0,0,0}, {35168,35170,35166 ,19274,19276,19272 ,0,0,0}, - {35171,35172,35167 ,19277,19278,19273 ,0,0,0}, {35169,35170,35168 ,19275,19276,19274 ,0,0,0}, - {35171,35173,35172 ,19277,19279,19278 ,0,0,0}, {35174,35173,35175 ,19280,19279,19281 ,0,0,0}, - {35174,35175,35176 ,19280,19281,19282 ,0,0,0}, {35164,35163,35176 ,19270,19269,19282 ,0,0,0}, - {35173,35174,35172 ,19279,19280,19278 ,0,0,0}, {35164,35176,35175 ,19270,19282,19281 ,0,0,0}, - {35177,35178,35179 ,19283,19284,19285 ,0,0,0}, {35180,35165,35177 ,19286,19271,19283 ,0,0,0}, - {35163,35165,35180 ,19269,19271,19286 ,0,0,0}, {35162,35161,35169 ,19268,19267,19275 ,0,0,0}, - {35180,35177,35179 ,19286,19283,19285 ,0,0,0}, {35179,35178,35181 ,19285,19284,82 ,0,0,0}, - {35178,35182,35181 ,19284,19287,82 ,0,0,0}, {35152,35156,35153 ,19258,19262,19259 ,0,0,0}, - {35183,35135,35136 ,19288,19241,19242 ,0,0,0}, {35183,35184,35185 ,19288,19289,19290 ,0,0,0}, - {35185,35135,35183 ,19290,19241,19288 ,0,0,0}, {35186,35184,35187 ,19291,19289,19292 ,0,0,0}, - {35184,35186,35185 ,19289,19291,19290 ,0,0,0}, {35188,35189,35187 ,19293,19294,19292 ,0,0,0}, - {35186,35187,35189 ,19291,19292,19294 ,0,0,0}, {35188,35190,35191 ,19293,19295,19296 ,0,0,0}, - {35191,35189,35188 ,19296,19294,19293 ,0,0,0}, {35192,35190,35193 ,19297,19295,19298 ,0,0,0}, - {35190,35192,35191 ,19295,19297,19296 ,0,0,0}, {35194,35195,35193 ,19299,19300,19298 ,0,0,0}, - {35192,35193,35195 ,19297,19298,19300 ,0,0,0}, {35194,35196,35197 ,19299,19301,19302 ,0,0,0}, - {35197,35195,35194 ,19302,19300,19299 ,0,0,0}, {35198,35196,35199 ,19303,19301,19304 ,0,0,0}, - {35196,35198,35197 ,19301,19303,19302 ,0,0,0}, {35200,35201,35199 ,19305,19306,19304 ,0,0,0}, - {35198,35199,35201 ,19303,19304,19306 ,0,0,0}, {35200,35202,35203 ,19305,19307,19308 ,0,0,0}, - {35203,35201,35200 ,19308,19306,19305 ,0,0,0}, {35204,35202,35205 ,19309,19307,19310 ,0,0,0}, - {35202,35204,35203 ,19307,19309,19308 ,0,0,0}, {35131,35130,35205 ,19237,19236,19310 ,0,0,0}, - {35204,35205,35130 ,19309,19310,19236 ,0,0,0}, {35129,35131,35206 ,19235,19237,19311 ,0,0,0}, - {35206,35207,35208 ,19311,19312,19313 ,0,0,0}, {35208,35129,35206 ,19313,19235,19311 ,0,0,0}, - {35209,35207,35210 ,19314,19312,19315 ,0,0,0}, {35207,35209,35208 ,19312,19314,19313 ,0,0,0}, - {35211,35212,35210 ,19316,19317,19315 ,0,0,0}, {35209,35210,35212 ,19314,19315,19317 ,0,0,0}, - {35211,35213,35214 ,19316,19318,19319 ,0,0,0}, {35214,35212,35211 ,19319,19317,19316 ,0,0,0}, - {35215,35213,35216 ,19320,19318,19321 ,0,0,0}, {35213,35215,35214 ,19318,19320,19319 ,0,0,0}, - {35217,35218,35216 ,19322,19323,19321 ,0,0,0}, {35215,35216,35218 ,19320,19321,19323 ,0,0,0}, - {35217,35219,35220 ,19322,19324,19325 ,0,0,0}, {35220,35218,35217 ,19325,19323,19322 ,0,0,0}, - {35221,35219,35222 ,19326,19324,19327 ,0,0,0}, {35219,35221,35220 ,19324,19326,19325 ,0,0,0}, - {35223,35224,35222 ,19328,19329,19327 ,0,0,0}, {35221,35222,35224 ,19326,19327,19329 ,0,0,0}, - {35223,35225,35226 ,19328,19330,19331 ,0,0,0}, {35226,35224,35223 ,19331,19329,19328 ,0,0,0}, - {35227,35225,35228 ,19332,19330,19332 ,0,0,0}, {35225,35227,35226 ,19330,19332,19331 ,0,0,0}, - {35229,35230,35231 ,19333,19334,19335 ,0,0,0}, {35232,35233,35234 ,19336,19337,19338 ,0,0,0}, - {35235,35233,35236 ,19339,19337,19340 ,0,0,0}, {35232,35236,35233 ,19336,19340,19337 ,0,0,0}, - {35237,35232,35234 ,19341,19336,19338 ,0,0,0}, {35237,35238,35239 ,19341,19342,19343 ,0,0,0}, - {35238,35240,35239 ,19342,19344,19343 ,0,0,0}, {35239,35240,35241 ,19343,19344,19345 ,0,0,0}, - {35241,35242,35243 ,19345,19346,19347 ,0,0,0}, {35241,35240,35242 ,19345,19344,19346 ,0,0,0}, - {35244,35245,35246 ,19348,19349,19350 ,0,0,0}, {35247,35243,35242 ,19351,19347,19346 ,0,0,0}, - {35245,35248,35246 ,19349,19352,19350 ,0,0,0}, {35247,35248,35249 ,19351,19352,19353 ,0,0,0}, - {35243,35247,35249 ,19347,19351,19353 ,0,0,0}, {35249,35248,35245 ,19353,19352,19349 ,0,0,0}, - {35250,35251,35252 ,19354,19355,19356 ,0,0,0}, {35246,35251,35244 ,19350,19355,19348 ,0,0,0}, - {35250,35252,35253 ,19354,19356,19357 ,0,0,0}, {35251,35250,35244 ,19355,19354,19348 ,0,0,0}, - {35238,35237,35234 ,19342,19341,19338 ,0,0,0}, {35254,35255,35256 ,19358,19359,19360 ,0,0,0}, - {35255,35253,35256 ,19359,19357,19360 ,0,0,0}, {35257,35258,35259 ,19361,19362,19363 ,0,0,0}, - {35257,35255,35254 ,19361,19359,19358 ,0,0,0}, {35260,35259,35258 ,19364,19363,19362 ,0,0,0}, - {35254,35258,35257 ,19358,19362,19361 ,0,0,0}, {35261,35262,35260 ,19365,19366,19364 ,0,0,0}, - {35262,35259,35260 ,19366,19363,19364 ,0,0,0}, {35263,35264,35265 ,19367,19368,19369 ,0,0,0}, - {35266,35267,35268 ,19370,19371,19372 ,0,0,0}, {35269,35261,35270 ,19373,19365,19374 ,0,0,0}, - {35271,35267,35266 ,19375,19371,19370 ,0,0,0}, {35268,35270,35266 ,19372,19374,19370 ,0,0,0}, - {35271,35272,35267 ,19375,19376,19371 ,0,0,0}, {35269,35270,35268 ,19373,19374,19372 ,0,0,0}, - {35271,35273,35272 ,19375,19377,19376 ,0,0,0}, {35274,35273,35275 ,19378,19377,19379 ,0,0,0}, - {35274,35275,35276 ,19378,19379,19380 ,0,0,0}, {35264,35263,35276 ,19368,19367,19380 ,0,0,0}, - {35273,35274,35272 ,19377,19378,19376 ,0,0,0}, {35264,35276,35275 ,19368,19380,19379 ,0,0,0}, - {35277,35278,35279 ,19381,19382,19383 ,0,0,0}, {35280,35265,35277 ,19384,19369,19381 ,0,0,0}, - {35263,35265,35280 ,19367,19369,19384 ,0,0,0}, {35262,35261,35269 ,19366,19365,19373 ,0,0,0}, - {35280,35277,35279 ,19384,19381,19383 ,0,0,0}, {35279,35278,35281 ,19383,19382,82 ,0,0,0}, - {35278,35282,35281 ,19382,19287,82 ,0,0,0}, {35252,35256,35253 ,19356,19360,19357 ,0,0,0}, - {35283,35235,35236 ,19385,19339,19340 ,0,0,0}, {35283,35284,35285 ,19385,19386,19387 ,0,0,0}, - {35285,35235,35283 ,19387,19339,19385 ,0,0,0}, {35286,35284,35287 ,19388,19386,19389 ,0,0,0}, - {35284,35286,35285 ,19386,19388,19387 ,0,0,0}, {35288,35289,35287 ,19390,19391,19389 ,0,0,0}, - {35286,35287,35289 ,19388,19389,19391 ,0,0,0}, {35288,35290,35291 ,19390,19392,19393 ,0,0,0}, - {35291,35289,35288 ,19393,19391,19390 ,0,0,0}, {35292,35290,35293 ,19394,19392,19395 ,0,0,0}, - {35290,35292,35291 ,19392,19394,19393 ,0,0,0}, {35294,35295,35293 ,19396,19397,19395 ,0,0,0}, - {35292,35293,35295 ,19394,19395,19397 ,0,0,0}, {35294,35296,35297 ,19396,19398,19399 ,0,0,0}, - {35297,35295,35294 ,19399,19397,19396 ,0,0,0}, {35298,35296,35299 ,19400,19398,19401 ,0,0,0}, - {35296,35298,35297 ,19398,19400,19399 ,0,0,0}, {35300,35301,35299 ,19402,19403,19401 ,0,0,0}, - {35298,35299,35301 ,19400,19401,19403 ,0,0,0}, {35300,35302,35303 ,19402,19404,19405 ,0,0,0}, - {35303,35301,35300 ,19405,19403,19402 ,0,0,0}, {35304,35302,35305 ,19406,19404,19407 ,0,0,0}, - {35302,35304,35303 ,19404,19406,19405 ,0,0,0}, {35231,35230,35305 ,19335,19334,19407 ,0,0,0}, - {35304,35305,35230 ,19406,19407,19334 ,0,0,0}, {35229,35231,35306 ,19333,19335,19408 ,0,0,0}, - {35306,35307,35308 ,19408,19409,19410 ,0,0,0}, {35308,35229,35306 ,19410,19333,19408 ,0,0,0}, - {35309,35307,35310 ,19411,19409,19412 ,0,0,0}, {35307,35309,35308 ,19409,19411,19410 ,0,0,0}, - {35311,35312,35310 ,19413,19317,19412 ,0,0,0}, {35309,35310,35312 ,19411,19412,19317 ,0,0,0}, - {35311,35313,35314 ,19413,19414,19415 ,0,0,0}, {35314,35312,35311 ,19415,19317,19413 ,0,0,0}, - {35315,35313,35316 ,19416,19414,19417 ,0,0,0}, {35313,35315,35314 ,19414,19416,19415 ,0,0,0}, - {35317,35318,35316 ,19418,19419,19417 ,0,0,0}, {35315,35316,35318 ,19416,19417,19419 ,0,0,0}, - {35317,35319,35320 ,19418,19420,19421 ,0,0,0}, {35320,35318,35317 ,19421,19419,19418 ,0,0,0}, - {35321,35319,35322 ,19422,19420,19423 ,0,0,0}, {35319,35321,35320 ,19420,19422,19421 ,0,0,0}, - {35323,35324,35322 ,19328,19424,19423 ,0,0,0}, {35321,35322,35324 ,19422,19423,19424 ,0,0,0}, - {35323,35325,35326 ,19328,19330,19425 ,0,0,0}, {35326,35324,35323 ,19425,19424,19328 ,0,0,0}, - {35327,35325,35328 ,19332,19330,19332 ,0,0,0}, {35325,35327,35326 ,19330,19332,19425 ,0,0,0}, - {35329,35330,35331 ,19426,19427,19428 ,0,0,0}, {35332,35333,35334 ,19429,19430,19240 ,0,0,0}, - {35335,35333,35336 ,19431,19430,19432 ,0,0,0}, {35332,35336,35333 ,19429,19432,19430 ,0,0,0}, - {35337,35332,35334 ,19433,19429,19240 ,0,0,0}, {35337,35338,35339 ,19433,19434,19435 ,0,0,0}, - {35338,35340,35339 ,19434,19436,19435 ,0,0,0}, {35339,35340,35341 ,19435,19436,19437 ,0,0,0}, - {35341,35342,35343 ,19437,19438,19439 ,0,0,0}, {35341,35340,35342 ,19437,19436,19438 ,0,0,0}, - {35344,35345,35346 ,19440,19441,19442 ,0,0,0}, {35347,35343,35342 ,19443,19439,19438 ,0,0,0}, - {35345,35348,35346 ,19441,19444,19442 ,0,0,0}, {35347,35348,35349 ,19443,19444,19445 ,0,0,0}, - {35343,35347,35349 ,19439,19443,19445 ,0,0,0}, {35349,35348,35345 ,19445,19444,19441 ,0,0,0}, - {35350,35351,35352 ,19446,19447,19448 ,0,0,0}, {35346,35351,35344 ,19442,19447,19440 ,0,0,0}, - {35350,35352,35353 ,19446,19448,19449 ,0,0,0}, {35351,35350,35344 ,19447,19446,19440 ,0,0,0}, - {35338,35337,35334 ,19434,19433,19240 ,0,0,0}, {35354,35355,35356 ,19450,19451,19452 ,0,0,0}, - {35355,35353,35356 ,19451,19449,19452 ,0,0,0}, {35357,35358,35359 ,19453,19454,19455 ,0,0,0}, - {35357,35355,35354 ,19453,19451,19450 ,0,0,0}, {35360,35359,35358 ,19456,19455,19454 ,0,0,0}, - {35354,35358,35357 ,19450,19454,19453 ,0,0,0}, {35361,35362,35360 ,19457,19458,19456 ,0,0,0}, - {35362,35359,35360 ,19458,19455,19456 ,0,0,0}, {35363,35364,35365 ,19459,19460,19461 ,0,0,0}, - {35366,35367,35368 ,19462,19463,19464 ,0,0,0}, {35369,35361,35370 ,19465,19457,19466 ,0,0,0}, - {35371,35367,35366 ,19467,19463,19462 ,0,0,0}, {35368,35370,35366 ,19464,19466,19462 ,0,0,0}, - {35371,35372,35367 ,19467,19468,19463 ,0,0,0}, {35369,35370,35368 ,19465,19466,19464 ,0,0,0}, - {35371,35373,35372 ,19467,19469,19468 ,0,0,0}, {35374,35373,35375 ,19470,19469,19471 ,0,0,0}, - {35374,35375,35376 ,19470,19471,19472 ,0,0,0}, {35364,35363,35376 ,19460,19459,19472 ,0,0,0}, - {35373,35374,35372 ,19469,19470,19468 ,0,0,0}, {35364,35376,35375 ,19460,19472,19471 ,0,0,0}, - {35377,35378,35379 ,19473,19474,19475 ,0,0,0}, {35380,35365,35377 ,19476,19461,19473 ,0,0,0}, - {35363,35365,35380 ,19459,19461,19476 ,0,0,0}, {35362,35361,35369 ,19458,19457,19465 ,0,0,0}, - {35380,35377,35379 ,19476,19473,19475 ,0,0,0}, {35379,35378,35381 ,19475,19474,19477 ,0,0,0}, - {35378,35382,35381 ,19474,19478,19477 ,0,0,0}, {35352,35356,35353 ,19448,19452,19449 ,0,0,0}, - {35383,35335,35336 ,19479,19431,19432 ,0,0,0}, {35383,35384,35385 ,19479,19480,19481 ,0,0,0}, - {35385,35335,35383 ,19481,19431,19479 ,0,0,0}, {35386,35384,35387 ,19482,19480,19483 ,0,0,0}, - {35384,35386,35385 ,19480,19482,19481 ,0,0,0}, {35388,35389,35387 ,19484,19485,19483 ,0,0,0}, - {35386,35387,35389 ,19482,19483,19485 ,0,0,0}, {35388,35390,35391 ,19484,19486,19487 ,0,0,0}, - {35391,35389,35388 ,19487,19485,19484 ,0,0,0}, {35392,35390,35393 ,19488,19486,19489 ,0,0,0}, - {35390,35392,35391 ,19486,19488,19487 ,0,0,0}, {35394,35395,35393 ,19490,19491,19489 ,0,0,0}, - {35392,35393,35395 ,19488,19489,19491 ,0,0,0}, {35394,35396,35397 ,19490,19492,19493 ,0,0,0}, - {35397,35395,35394 ,19493,19491,19490 ,0,0,0}, {35398,35396,35399 ,19494,19492,19495 ,0,0,0}, - {35396,35398,35397 ,19492,19494,19493 ,0,0,0}, {35400,35401,35399 ,19496,19497,19495 ,0,0,0}, - {35398,35399,35401 ,19494,19495,19497 ,0,0,0}, {35400,35402,35403 ,19496,19498,19499 ,0,0,0}, - {35403,35401,35400 ,19499,19497,19496 ,0,0,0}, {35404,35402,35405 ,19500,19498,19501 ,0,0,0}, - {35402,35404,35403 ,19498,19500,19499 ,0,0,0}, {35331,35330,35405 ,19428,19427,19501 ,0,0,0}, - {35404,35405,35330 ,19500,19501,19427 ,0,0,0}, {35329,35331,35406 ,19426,19428,19502 ,0,0,0}, - {35406,35407,35408 ,19502,19503,19504 ,0,0,0}, {35408,35329,35406 ,19504,19426,19502 ,0,0,0}, - {35409,35407,35410 ,19505,19503,19506 ,0,0,0}, {35407,35409,35408 ,19503,19505,19504 ,0,0,0}, - {35411,35412,35410 ,19507,19508,19506 ,0,0,0}, {35409,35410,35412 ,19505,19506,19508 ,0,0,0}, - {35411,35413,35414 ,19507,19509,19510 ,0,0,0}, {35414,35412,35411 ,19510,19508,19507 ,0,0,0}, - {35415,35413,35416 ,19511,19509,19321 ,0,0,0}, {35413,35415,35414 ,19509,19511,19510 ,0,0,0}, - {35417,35418,35416 ,19512,19513,19321 ,0,0,0}, {35415,35416,35418 ,19511,19321,19513 ,0,0,0}, - {35417,35419,35420 ,19512,19324,19325 ,0,0,0}, {35420,35418,35417 ,19325,19513,19512 ,0,0,0}, - {35421,35419,35422 ,19326,19324,19514 ,0,0,0}, {35419,35421,35420 ,19324,19326,19325 ,0,0,0}, - {35423,35424,35422 ,19515,19329,19514 ,0,0,0}, {35421,35422,35424 ,19326,19514,19329 ,0,0,0}, - {35423,35425,35426 ,19515,19516,19517 ,0,0,0}, {35426,35424,35423 ,19517,19329,19515 ,0,0,0}, - {35427,35425,35428 ,19518,19516,126 ,0,0,0}, {35425,35427,35426 ,19516,19518,19517 ,0,0,0}, - {35429,35430,35431 ,19519,19520,19521 ,0,0,0}, {35432,35433,35434 ,19522,19523,19524 ,0,0,0}, - {35435,35433,35436 ,19525,19523,19526 ,0,0,0}, {35432,35436,35433 ,19522,19526,19523 ,0,0,0}, - {35437,35432,35434 ,19527,19522,19524 ,0,0,0}, {35437,35438,35439 ,19527,19528,19529 ,0,0,0}, - {35438,35440,35439 ,19528,19530,19529 ,0,0,0}, {35439,35440,35441 ,19529,19530,19531 ,0,0,0}, - {35441,35442,35443 ,19531,19532,19533 ,0,0,0}, {35441,35440,35442 ,19531,19530,19532 ,0,0,0}, - {35444,35445,35446 ,19534,19535,19536 ,0,0,0}, {35447,35443,35442 ,19537,19533,19532 ,0,0,0}, - {35445,35448,35446 ,19535,19538,19536 ,0,0,0}, {35447,35448,35449 ,19537,19538,19539 ,0,0,0}, - {35443,35447,35449 ,19533,19537,19539 ,0,0,0}, {35449,35448,35445 ,19539,19538,19535 ,0,0,0}, - {35450,35451,35452 ,19540,19541,19542 ,0,0,0}, {35446,35451,35444 ,19536,19541,19534 ,0,0,0}, - {35450,35452,35453 ,19540,19542,19543 ,0,0,0}, {35451,35450,35444 ,19541,19540,19534 ,0,0,0}, - {35438,35437,35434 ,19528,19527,19524 ,0,0,0}, {35454,35455,35456 ,19544,19545,19546 ,0,0,0}, - {35455,35453,35456 ,19545,19543,19546 ,0,0,0}, {35457,35458,35459 ,19547,19548,19549 ,0,0,0}, - {35457,35455,35454 ,19547,19545,19544 ,0,0,0}, {35460,35459,35458 ,19550,19549,19548 ,0,0,0}, - {35454,35458,35457 ,19544,19548,19547 ,0,0,0}, {35461,35462,35460 ,19551,19552,19550 ,0,0,0}, - {35462,35459,35460 ,19552,19549,19550 ,0,0,0}, {35463,35464,35465 ,19553,19554,19555 ,0,0,0}, - {35466,35467,35468 ,19556,19557,19558 ,0,0,0}, {35469,35461,35470 ,19559,19551,19560 ,0,0,0}, - {35471,35467,35466 ,19561,19557,19556 ,0,0,0}, {35468,35470,35466 ,19558,19560,19556 ,0,0,0}, - {35471,35472,35467 ,19561,19562,19557 ,0,0,0}, {35469,35470,35468 ,19559,19560,19558 ,0,0,0}, - {35471,35473,35472 ,19561,19563,19562 ,0,0,0}, {35474,35473,35475 ,19564,19563,19565 ,0,0,0}, - {35474,35475,35476 ,19564,19565,19566 ,0,0,0}, {35464,35463,35476 ,19554,19553,19566 ,0,0,0}, - {35473,35474,35472 ,19563,19564,19562 ,0,0,0}, {35464,35476,35475 ,19554,19566,19565 ,0,0,0}, - {35477,35478,35479 ,19567,19568,19569 ,0,0,0}, {35480,35465,35477 ,19570,19555,19567 ,0,0,0}, - {35463,35465,35480 ,19553,19555,19570 ,0,0,0}, {35462,35461,35469 ,19552,19551,19559 ,0,0,0}, - {35480,35477,35479 ,19570,19567,19569 ,0,0,0}, {35479,35478,35481 ,19569,19568,878 ,0,0,0}, - {35478,35482,35481 ,19568,19571,878 ,0,0,0}, {35452,35456,35453 ,19542,19546,19543 ,0,0,0}, - {35483,35435,35436 ,19572,19525,19526 ,0,0,0}, {35483,35484,35485 ,19572,19573,19387 ,0,0,0}, - {35485,35435,35483 ,19387,19525,19572 ,0,0,0}, {35486,35484,35487 ,19574,19573,19575 ,0,0,0}, - {35484,35486,35485 ,19573,19574,19387 ,0,0,0}, {35488,35489,35487 ,19576,19577,19575 ,0,0,0}, - {35486,35487,35489 ,19574,19575,19577 ,0,0,0}, {35488,35490,35491 ,19576,19578,19579 ,0,0,0}, - {35491,35489,35488 ,19579,19577,19576 ,0,0,0}, {35492,35490,35493 ,19580,19578,19581 ,0,0,0}, - {35490,35492,35491 ,19578,19580,19579 ,0,0,0}, {35494,35495,35493 ,19299,19582,19581 ,0,0,0}, - {35492,35493,35495 ,19580,19581,19582 ,0,0,0}, {35494,35496,35497 ,19299,19492,19583 ,0,0,0}, - {35497,35495,35494 ,19583,19582,19299 ,0,0,0}, {35498,35496,35499 ,19584,19492,19585 ,0,0,0}, - {35496,35498,35497 ,19492,19584,19583 ,0,0,0}, {35500,35501,35499 ,19586,19497,19585 ,0,0,0}, - {35498,35499,35501 ,19584,19585,19497 ,0,0,0}, {35500,35502,35503 ,19586,19587,19308 ,0,0,0}, - {35503,35501,35500 ,19308,19497,19586 ,0,0,0}, {35504,35502,35505 ,19588,19587,19589 ,0,0,0}, - {35502,35504,35503 ,19587,19588,19308 ,0,0,0}, {35431,35430,35505 ,19521,19520,19589 ,0,0,0}, - {35504,35505,35430 ,19588,19589,19520 ,0,0,0}, {35429,35431,35506 ,19519,19521,19590 ,0,0,0}, - {35506,35507,35508 ,19590,19591,19592 ,0,0,0}, {35508,35429,35506 ,19592,19519,19590 ,0,0,0}, - {35509,35507,35510 ,19593,19591,19506 ,0,0,0}, {35507,35509,35508 ,19591,19593,19592 ,0,0,0}, - {35511,35512,35510 ,19594,19595,19506 ,0,0,0}, {35509,35510,35512 ,19593,19506,19595 ,0,0,0}, - {35511,35513,35514 ,19594,19596,19597 ,0,0,0}, {35514,35512,35511 ,19597,19595,19594 ,0,0,0}, - {35515,35513,35516 ,19598,19596,19599 ,0,0,0}, {35513,35515,35514 ,19596,19598,19597 ,0,0,0}, - {35517,35518,35516 ,19600,19513,19599 ,0,0,0}, {35515,35516,35518 ,19598,19599,19513 ,0,0,0}, - {35517,35519,35520 ,19600,19601,19602 ,0,0,0}, {35520,35518,35517 ,19602,19513,19600 ,0,0,0}, - {35521,35519,35522 ,19326,19601,19603 ,0,0,0}, {35519,35521,35520 ,19601,19326,19602 ,0,0,0}, - {35523,35524,35522 ,19604,19605,19603 ,0,0,0}, {35521,35522,35524 ,19326,19603,19605 ,0,0,0}, - {35523,35525,35526 ,19604,19330,19517 ,0,0,0}, {35526,35524,35523 ,19517,19605,19604 ,0,0,0}, - {35527,35525,35528 ,19606,19330,126 ,0,0,0}, {35525,35527,35526 ,19330,19606,19517 ,0,0,0}, - {35529,35530,35531 ,19607,19608,19609 ,0,0,0}, {35529,35532,35533 ,19607,19610,19611 ,0,0,0}, - {35532,35534,35533 ,19610,19612,19611 ,0,0,0}, {35531,35532,35529 ,19609,19610,19607 ,0,0,0}, - {35535,35536,35537 ,19613,19614,19615 ,0,0,0}, {35534,35535,35537 ,19612,19613,19615 ,0,0,0}, - {35536,35538,35539 ,19614,19616,19617 ,0,0,0}, {35538,35536,35535 ,19616,19614,19613 ,0,0,0}, - {35539,35538,35540 ,19617,19616,19618 ,0,0,0}, {35541,35539,35540 ,19619,19617,19618 ,0,0,0}, - {35541,35542,35543 ,19619,19620,19621 ,0,0,0}, {35541,35540,35542 ,19619,19618,19620 ,0,0,0}, - {35537,35533,35534 ,19615,19611,19612 ,0,0,0}, {35544,35545,33824 ,19622,19623,126 ,0,0,0}, - {35544,33824,35543 ,19622,126,19621 ,0,0,0}, {35542,35544,35543 ,19620,19622,19621 ,0,0,0}, - {35531,35530,35546 ,19609,19608,18805 ,0,0,0}, {35547,35546,35548 ,19624,18805,19625 ,0,0,0}, - {35530,35548,35546 ,19608,19625,18805 ,0,0,0}, {35549,35550,35547 ,19626,19627,19624 ,0,0,0}, - {35547,35548,35549 ,19624,19625,19626 ,0,0,0}, {35550,35551,35552 ,19627,19628,19629 ,0,0,0}, - {35551,35550,35549 ,19628,19627,19626 ,0,0,0}, {35553,35552,35554 ,19630,19629,19631 ,0,0,0}, - {35551,35554,35552 ,19628,19631,19629 ,0,0,0}, {35555,35556,35553 ,19632,18067,19630 ,0,0,0}, - {35553,35554,35555 ,19630,19631,19632 ,0,0,0}, {35556,35557,35558 ,18067,18838,19633 ,0,0,0}, - {35557,35556,35555 ,18838,18067,19632 ,0,0,0}, {35557,33841,35558 ,18838,82,19633 ,0,0,0}, - {35559,35560,35561 ,19634,19635,19636 ,0,0,0}, {35559,35562,35563 ,19634,19637,19638 ,0,0,0}, - {35562,35564,35563 ,19637,19639,19638 ,0,0,0}, {35561,35562,35559 ,19636,19637,19634 ,0,0,0}, - {35565,35566,35567 ,19640,19614,19641 ,0,0,0}, {35564,35565,35567 ,19639,19640,19641 ,0,0,0}, - {35566,35568,35569 ,19614,19642,19643 ,0,0,0}, {35568,35566,35565 ,19642,19614,19640 ,0,0,0}, - {35569,35568,35570 ,19643,19642,19644 ,0,0,0}, {35571,35569,35570 ,19645,19643,19644 ,0,0,0}, - {35571,35572,35573 ,19645,19646,19647 ,0,0,0}, {35571,35570,35572 ,19645,19644,19646 ,0,0,0}, - {35567,35563,35564 ,19641,19638,19639 ,0,0,0}, {35574,35575,33192 ,19648,19649,126 ,0,0,0}, - {35574,33192,35573 ,19648,126,19647 ,0,0,0}, {35572,35574,35573 ,19646,19648,19647 ,0,0,0}, - {35561,35560,35576 ,19636,19635,19650 ,0,0,0}, {35577,35576,35578 ,19624,19650,19651 ,0,0,0}, - {35560,35578,35576 ,19635,19651,19650 ,0,0,0}, {35579,35580,35577 ,19626,19627,19624 ,0,0,0}, - {35577,35578,35579 ,19624,19651,19626 ,0,0,0}, {35580,35581,35582 ,19627,19628,19629 ,0,0,0}, - {35581,35580,35579 ,19628,19627,19626 ,0,0,0}, {35583,35582,35584 ,19630,19629,19652 ,0,0,0}, - {35581,35584,35582 ,19628,19652,19629 ,0,0,0}, {35585,35586,35583 ,19653,18067,19630 ,0,0,0}, - {35583,35584,35585 ,19630,19652,19653 ,0,0,0}, {35586,35587,35588 ,18067,19654,19655 ,0,0,0}, - {35587,35586,35585 ,19654,18067,19653 ,0,0,0}, {35587,33209,35588 ,19654,82,19655 ,0,0,0}, - {35589,35590,35591 ,19656,19657,19658 ,0,0,0}, {35589,35592,35593 ,19656,19659,19660 ,0,0,0}, - {35592,35594,35593 ,19659,19612,19660 ,0,0,0}, {35591,35592,35589 ,19658,19659,19656 ,0,0,0}, - {35595,35596,35597 ,19661,19662,19663 ,0,0,0}, {35594,35595,35597 ,19612,19661,19663 ,0,0,0}, - {35596,35598,35599 ,19662,19664,19665 ,0,0,0}, {35598,35596,35595 ,19664,19662,19661 ,0,0,0}, - {35599,35598,35600 ,19665,19664,19666 ,0,0,0}, {35601,35599,35600 ,19667,19665,19666 ,0,0,0}, - {35601,35602,35603 ,19667,19668,19669 ,0,0,0}, {35601,35600,35602 ,19667,19666,19668 ,0,0,0}, - {35597,35593,35594 ,19663,19660,19612 ,0,0,0}, {35604,35605,32876 ,19670,19623,126 ,0,0,0}, - {35604,32876,35603 ,19670,126,19669 ,0,0,0}, {35602,35604,35603 ,19668,19670,19669 ,0,0,0}, - {35591,35590,35606 ,19658,19657,19671 ,0,0,0}, {35607,35606,35608 ,19672,19671,19673 ,0,0,0}, - {35590,35608,35606 ,19657,19673,19671 ,0,0,0}, {35609,35610,35607 ,19626,19674,19672 ,0,0,0}, - {35607,35608,35609 ,19672,19673,19626 ,0,0,0}, {35610,35611,35612 ,19674,19675,19629 ,0,0,0}, - {35611,35610,35609 ,19675,19674,19626 ,0,0,0}, {35613,35612,35614 ,19676,19629,19677 ,0,0,0}, - {35611,35614,35612 ,19675,19677,19629 ,0,0,0}, {35615,35616,35613 ,19632,18067,19676 ,0,0,0}, - {35613,35614,35615 ,19676,19677,19632 ,0,0,0}, {35616,35617,35618 ,18067,18838,19633 ,0,0,0}, - {35617,35616,35615 ,18838,18067,19632 ,0,0,0}, {35617,32893,35618 ,18838,82,19633 ,0,0,0}, - {35619,35620,35621 ,19678,19679,19680 ,0,0,0}, {35619,35622,35623 ,19678,19681,19682 ,0,0,0}, - {35622,35624,35623 ,19681,19639,19682 ,0,0,0}, {35621,35622,35619 ,19680,19681,19678 ,0,0,0}, - {35625,35626,35627 ,19683,19662,19684 ,0,0,0}, {35624,35625,35627 ,19639,19683,19684 ,0,0,0}, - {35626,35628,35629 ,19662,19685,19686 ,0,0,0}, {35628,35626,35625 ,19685,19662,19683 ,0,0,0}, - {35629,35628,35630 ,19686,19685,19687 ,0,0,0}, {35631,35629,35630 ,19688,19686,19687 ,0,0,0}, - {35631,35632,35633 ,19688,19689,19690 ,0,0,0}, {35631,35630,35632 ,19688,19687,19689 ,0,0,0}, - {35627,35623,35624 ,19684,19682,19639 ,0,0,0}, {35634,35635,33508 ,19691,19649,126 ,0,0,0}, - {35634,33508,35633 ,19691,126,19690 ,0,0,0}, {35632,35634,35633 ,19689,19691,19690 ,0,0,0}, - {35621,35620,35636 ,19680,19679,19692 ,0,0,0}, {35637,35636,35638 ,19672,19692,19693 ,0,0,0}, - {35620,35638,35636 ,19679,19693,19692 ,0,0,0}, {35639,35640,35637 ,19626,19674,19672 ,0,0,0}, - {35637,35638,35639 ,19672,19693,19626 ,0,0,0}, {35640,35641,35642 ,19674,19675,19629 ,0,0,0}, - {35641,35640,35639 ,19675,19674,19626 ,0,0,0}, {35643,35642,35644 ,19676,19629,19694 ,0,0,0}, - {35641,35644,35642 ,19675,19694,19629 ,0,0,0}, {35645,35646,35643 ,19653,18067,19676 ,0,0,0}, - {35643,35644,35645 ,19676,19694,19653 ,0,0,0}, {35646,35647,35648 ,18067,19654,19655 ,0,0,0}, - {35647,35646,35645 ,19654,18067,19653 ,0,0,0}, {35647,33525,35648 ,19654,82,19655 ,0,0,0}, - {35649,35650,35651 ,19695,19696,19697 ,0,0,0}, {35649,35652,35653 ,19695,19698,19699 ,0,0,0}, - {35652,35654,35653 ,19698,19700,19699 ,0,0,0}, {35651,35652,35649 ,19697,19698,19695 ,0,0,0}, - {35655,35656,35657 ,19701,19702,19703 ,0,0,0}, {35654,35655,35657 ,19700,19701,19703 ,0,0,0}, - {35656,35658,35659 ,19702,19704,19705 ,0,0,0}, {35658,35656,35655 ,19704,19702,19701 ,0,0,0}, - {35659,35658,35660 ,19705,19704,19706 ,0,0,0}, {35661,35659,35660 ,19707,19705,19706 ,0,0,0}, - {35661,35662,35663 ,19707,19708,19709 ,0,0,0}, {35661,35660,35662 ,19707,19706,19708 ,0,0,0}, - {35657,35653,35654 ,19703,19699,19700 ,0,0,0}, {35664,35665,35666 ,19710,19711,126 ,0,0,0}, - {35664,35666,35663 ,19710,126,19709 ,0,0,0}, {35662,35664,35663 ,19708,19710,19709 ,0,0,0}, - {35651,35650,35667 ,19697,19696,19712 ,0,0,0}, {35668,35667,35669 ,19672,19712,19673 ,0,0,0}, - {35650,35669,35667 ,19696,19673,19712 ,0,0,0}, {35670,35671,35668 ,19713,19674,19672 ,0,0,0}, - {35668,35669,35670 ,19672,19673,19713 ,0,0,0}, {35671,35672,35673 ,19674,19714,19715 ,0,0,0}, - {35672,35671,35670 ,19714,19674,19713 ,0,0,0}, {35674,35673,35675 ,19676,19715,19694 ,0,0,0}, - {35672,35675,35673 ,19714,19694,19715 ,0,0,0}, {35676,35677,35674 ,18761,18067,19676 ,0,0,0}, - {35674,35675,35676 ,19676,19694,18761 ,0,0,0}, {35677,35678,35679 ,18067,19716,140 ,0,0,0}, - {35678,35677,35676 ,19716,18067,18761 ,0,0,0}, {35678,35680,35679 ,19716,82,140 ,0,0,0}, - {35681,35682,35683 ,19656,19657,19717 ,0,0,0}, {35681,35684,35685 ,19656,19698,19718 ,0,0,0}, - {35684,35686,35685 ,19698,19719,19718 ,0,0,0}, {35683,35684,35681 ,19717,19698,19656 ,0,0,0}, - {35687,35688,35689 ,19720,19721,19722 ,0,0,0}, {35686,35687,35689 ,19719,19720,19722 ,0,0,0}, - {35688,35690,35691 ,19721,19723,19724 ,0,0,0}, {35690,35688,35687 ,19723,19721,19720 ,0,0,0}, - {35691,35690,35692 ,19724,19723,19725 ,0,0,0}, {35693,35691,35692 ,19726,19724,19725 ,0,0,0}, - {35693,35694,35695 ,19726,19727,19728 ,0,0,0}, {35693,35692,35694 ,19726,19725,19727 ,0,0,0}, - {35689,35685,35686 ,19722,19718,19719 ,0,0,0}, {35696,35697,35698 ,19729,19730,126 ,0,0,0}, - {35696,35698,35695 ,19729,126,19728 ,0,0,0}, {35694,35696,35695 ,19727,19729,19728 ,0,0,0}, - {35683,35682,35699 ,19717,19657,19671 ,0,0,0}, {35700,35699,35701 ,19731,19671,19732 ,0,0,0}, - {35682,35701,35699 ,19657,19732,19671 ,0,0,0}, {35702,35703,35700 ,19733,19674,19731 ,0,0,0}, - {35700,35701,35702 ,19731,19732,19733 ,0,0,0}, {35703,35704,35705 ,19674,19734,19715 ,0,0,0}, - {35704,35703,35702 ,19734,19674,19733 ,0,0,0}, {35706,35705,35707 ,19676,19715,19735 ,0,0,0}, - {35704,35707,35705 ,19734,19735,19715 ,0,0,0}, {35708,35709,35706 ,18761,18067,19676 ,0,0,0}, - {35706,35707,35708 ,19676,19735,18761 ,0,0,0}, {35709,35710,35711 ,18067,18838,793 ,0,0,0}, - {35710,35709,35708 ,18838,18067,18761 ,0,0,0}, {35710,35712,35711 ,18838,82,793 ,0,0,0}, - {35713,35714,35715 ,19607,19608,19736 ,0,0,0}, {35713,35716,35717 ,19607,19737,19738 ,0,0,0}, - {35716,35718,35717 ,19737,19719,19738 ,0,0,0}, {35715,35716,35713 ,19736,19737,19607 ,0,0,0}, - {35719,35720,35721 ,19739,19740,19741 ,0,0,0}, {35718,35719,35721 ,19719,19739,19741 ,0,0,0}, - {35720,35722,35723 ,19740,19742,19743 ,0,0,0}, {35722,35720,35719 ,19742,19740,19739 ,0,0,0}, - {35723,35722,35724 ,19743,19742,19744 ,0,0,0}, {35725,35723,35724 ,19745,19743,19744 ,0,0,0}, - {35725,35726,35727 ,19745,19746,19747 ,0,0,0}, {35725,35724,35726 ,19745,19744,19746 ,0,0,0}, - {35721,35717,35718 ,19741,19738,19719 ,0,0,0}, {35728,35729,35730 ,19748,19730,126 ,0,0,0}, - {35728,35730,35727 ,19748,126,19747 ,0,0,0}, {35726,35728,35727 ,19746,19748,19747 ,0,0,0}, - {35715,35714,35731 ,19736,19608,18805 ,0,0,0}, {35732,35731,35733 ,19749,18805,19750 ,0,0,0}, - {35714,35733,35731 ,19608,19750,18805 ,0,0,0}, {35734,35735,35732 ,19733,19627,19749 ,0,0,0}, - {35732,35733,35734 ,19749,19750,19733 ,0,0,0}, {35735,35736,35737 ,19627,19751,19715 ,0,0,0}, - {35736,35735,35734 ,19751,19627,19733 ,0,0,0}, {35738,35737,35739 ,19630,19715,19752 ,0,0,0}, - {35736,35739,35737 ,19751,19752,19715 ,0,0,0}, {35740,35741,35738 ,18761,18067,19630 ,0,0,0}, - {35738,35739,35740 ,19630,19752,18761 ,0,0,0}, {35741,35742,35743 ,18067,18838,793 ,0,0,0}, - {35742,35741,35740 ,18838,18067,18761 ,0,0,0}, {35742,35744,35743 ,18838,82,793 ,0,0,0}, - {35745,35746,35747 ,19634,19753,19754 ,0,0,0}, {35745,35748,35749 ,19634,19610,19755 ,0,0,0}, - {35748,35750,35749 ,19610,19756,19755 ,0,0,0}, {35747,35748,35745 ,19754,19610,19634 ,0,0,0}, - {35751,35752,35753 ,19757,19758,19759 ,0,0,0}, {35750,35751,35753 ,19756,19757,19759 ,0,0,0}, - {35752,35754,35755 ,19758,19760,19761 ,0,0,0}, {35754,35752,35751 ,19760,19758,19757 ,0,0,0}, - {35755,35754,35756 ,19761,19760,19762 ,0,0,0}, {35757,35755,35756 ,19763,19761,19762 ,0,0,0}, - {35757,35758,35759 ,19763,19764,19765 ,0,0,0}, {35757,35756,35758 ,19763,19762,19764 ,0,0,0}, - {35753,35749,35750 ,19759,19755,19756 ,0,0,0}, {35760,35761,35762 ,19766,19767,18751 ,0,0,0}, - {35760,35762,35759 ,19766,18751,19765 ,0,0,0}, {35758,35760,35759 ,19764,19766,19765 ,0,0,0}, - {35747,35746,35763 ,19754,19753,19768 ,0,0,0}, {35764,35763,35765 ,19749,19768,19769 ,0,0,0}, - {35746,35765,35763 ,19753,19769,19768 ,0,0,0}, {35766,35767,35764 ,19713,19770,19749 ,0,0,0}, - {35764,35765,35766 ,19749,19769,19713 ,0,0,0}, {35767,35768,35769 ,19770,19771,19772 ,0,0,0}, - {35768,35767,35766 ,19771,19770,19713 ,0,0,0}, {35770,35769,35771 ,19773,19772,19774 ,0,0,0}, - {35768,35771,35769 ,19771,19774,19772 ,0,0,0}, {35772,35773,35770 ,19653,19775,19773 ,0,0,0}, - {35770,35771,35772 ,19773,19774,19653 ,0,0,0}, {35773,35774,35775 ,19775,19654,140 ,0,0,0}, - {35774,35773,35772 ,19654,19775,19653 ,0,0,0}, {35774,35776,35775 ,19654,82,140 ,0,0,0}, - {35777,35778,35779 ,19776,19777,19777 ,0,0,0}, {35780,35781,35782 ,19778,19779,19778 ,0,0,0}, - {35779,35778,35782 ,19777,19777,19778 ,0,0,0}, {35783,35784,35785 ,18601,18601,19779 ,0,0,0}, - {35781,35780,35785 ,19779,19778,19779 ,0,0,0}, {35785,35784,35781 ,19779,18601,19779 ,0,0,0}, - {35780,35782,35778 ,19778,19778,19777 ,0,0,0}, {35779,35786,35777 ,19777,19776,19776 ,0,0,0}, - {35786,35787,35788 ,19776,19780,19780 ,0,0,0}, {35788,35777,35786 ,19780,19776,19776 ,0,0,0}, - {35789,35787,35790 ,18588,19780,18588 ,0,0,0}, {35787,35789,35788 ,19780,18588,19780 ,0,0,0}, - {35791,35792,35793 ,19781,19782,19782 ,0,0,0}, {35794,35795,35796 ,19783,19784,19783 ,0,0,0}, - {35793,35792,35796 ,19782,19782,19783 ,0,0,0}, {35797,35798,35799 ,18609,18609,19784 ,0,0,0}, - {35795,35794,35799 ,19784,19783,19784 ,0,0,0}, {35799,35798,35795 ,19784,18609,19784 ,0,0,0}, - {35794,35796,35792 ,19783,19783,19782 ,0,0,0}, {35793,35800,35791 ,19782,19781,19781 ,0,0,0}, - {35800,35801,35802 ,19781,19785,19785 ,0,0,0}, {35802,35791,35800 ,19785,19781,19781 ,0,0,0}, - {35803,35801,35804 ,18594,19785,18594 ,0,0,0}, {35801,35803,35802 ,19785,18594,19785 ,0,0,0}, - {35805,35806,35807 ,19786,19787,19788 ,0,0,0}, {35808,35809,35810 ,19789,19790,19791 ,0,0,0}, - {35809,35805,35807 ,19790,19786,19788 ,0,0,0}, {35811,35808,35810 ,19792,19789,19791 ,0,0,0}, - {35809,35808,35805 ,19790,19789,19786 ,0,0,0}, {35811,35810,35812 ,19792,19791,19793 ,0,0,0}, - {35812,35813,35814 ,19793,19794,19795 ,0,0,0}, {35815,35814,35813 ,19796,19795,19794 ,0,0,0}, - {35816,35817,35818 ,19797,19798,19799 ,0,0,0}, {35813,35819,35815 ,19794,19800,19796 ,0,0,0}, - {35818,35820,35821 ,19799,19801,19802 ,0,0,0}, {35820,35819,35821 ,19801,19800,19802 ,0,0,0}, - {35815,35819,35820 ,19796,19800,19801 ,0,0,0}, {35818,35821,35816 ,19799,19802,19797 ,0,0,0}, - {35817,35816,35822 ,19798,19797,19803 ,0,0,0}, {35817,35822,35823 ,19798,19803,19804 ,0,0,0}, - {35824,35823,35822 ,19805,19804,19803 ,0,0,0}, {35825,35826,35827 ,19806,82,19807 ,0,0,0}, - {35827,35823,35824 ,19807,19804,19805 ,0,0,0}, {35825,35827,35824 ,19806,19807,19805 ,0,0,0}, - {35825,35828,35826 ,19806,3370,82 ,0,0,0}, {35811,35812,35814 ,19792,19793,19795 ,0,0,0}, - {35807,35806,35829 ,19788,19787,19808 ,0,0,0}, {35830,35829,35831 ,19809,19808,19810 ,0,0,0}, - {35806,35831,35829 ,19787,19810,19808 ,0,0,0}, {35832,35833,35830 ,19811,19812,19809 ,0,0,0}, - {35830,35831,35832 ,19809,19810,19811 ,0,0,0}, {35833,35834,35835 ,19812,19813,19814 ,0,0,0}, - {35834,35833,35832 ,19813,19812,19811 ,0,0,0}, {35836,35835,35837 ,19815,19814,19816 ,0,0,0}, - {35834,35837,35835 ,19813,19816,19814 ,0,0,0}, {35838,35839,35836 ,19817,19818,19815 ,0,0,0}, - {35836,35837,35838 ,19815,19816,19817 ,0,0,0}, {35839,35840,35841 ,19818,19819,19820 ,0,0,0}, - {35840,35839,35838 ,19819,19818,19817 ,0,0,0}, {35842,35841,35843 ,19821,19820,19822 ,0,0,0}, - {35840,35843,35841 ,19819,19822,19820 ,0,0,0}, {35844,35845,35842 ,19823,19824,19821 ,0,0,0}, - {35842,35843,35844 ,19821,19822,19823 ,0,0,0}, {35845,35846,35847 ,19824,19825,2614 ,0,0,0}, - {35846,35845,35844 ,19825,19824,19823 ,0,0,0}, {35846,35848,35847 ,19825,126,2614 ,0,0,0}, - {35849,35850,35851 ,19826,19827,19828 ,0,0,0}, {35852,35853,35854 ,19829,19830,19831 ,0,0,0}, - {35853,35849,35851 ,19830,19826,19828 ,0,0,0}, {35855,35852,35854 ,19832,19829,19831 ,0,0,0}, - {35853,35852,35849 ,19830,19829,19826 ,0,0,0}, {35855,35854,35856 ,19832,19831,19833 ,0,0,0}, - {35856,35857,35858 ,19833,19834,19835 ,0,0,0}, {35859,35858,35857 ,19836,19835,19834 ,0,0,0}, - {35860,35861,35862 ,19837,19838,19839 ,0,0,0}, {35857,35863,35859 ,19834,19840,19836 ,0,0,0}, - {35862,35864,35865 ,19839,19841,19842 ,0,0,0}, {35864,35863,35865 ,19841,19840,19842 ,0,0,0}, - {35859,35863,35864 ,19836,19840,19841 ,0,0,0}, {35862,35865,35860 ,19839,19842,19837 ,0,0,0}, - {35861,35860,35866 ,19838,19837,19843 ,0,0,0}, {35861,35866,35867 ,19838,19843,19844 ,0,0,0}, - {35868,35867,35866 ,19845,19844,19843 ,0,0,0}, {35869,35870,35871 ,19846,9510,19847 ,0,0,0}, - {35871,35867,35868 ,19847,19844,19845 ,0,0,0}, {35869,35871,35868 ,19846,19847,19845 ,0,0,0}, - {35869,35872,35870 ,19846,8396,9510 ,0,0,0}, {35855,35856,35858 ,19832,19833,19835 ,0,0,0}, - {35851,35850,35873 ,19828,19827,19848 ,0,0,0}, {35874,35873,35875 ,19849,19848,19850 ,0,0,0}, - {35850,35875,35873 ,19827,19850,19848 ,0,0,0}, {35876,35877,35874 ,19851,19852,19849 ,0,0,0}, - {35874,35875,35876 ,19849,19850,19851 ,0,0,0}, {35877,35878,35879 ,19852,4543,19853 ,0,0,0}, - {35878,35877,35876 ,4543,19852,19851 ,0,0,0}, {35880,35879,35881 ,19854,19853,19855 ,0,0,0}, - {35878,35881,35879 ,4543,19855,19853 ,0,0,0}, {35882,35883,35880 ,19856,19857,19854 ,0,0,0}, - {35880,35881,35882 ,19854,19855,19856 ,0,0,0}, {35883,35884,35885 ,19857,19858,19859 ,0,0,0}, - {35884,35883,35882 ,19858,19857,19856 ,0,0,0}, {35886,35885,35887 ,19860,19859,19861 ,0,0,0}, - {35884,35887,35885 ,19858,19861,19859 ,0,0,0}, {35888,35889,35886 ,19862,19863,19860 ,0,0,0}, - {35886,35887,35888 ,19860,19861,19862 ,0,0,0}, {35889,35890,35891 ,19863,19864,96 ,0,0,0}, - {35890,35889,35888 ,19864,19863,19862 ,0,0,0}, {35890,35892,35891 ,19864,126,96 ,0,0,0}, - {35893,35894,35895 ,19865,19866,19867 ,0,0,0}, {35896,35897,35898 ,19868,19869,19870 ,0,0,0}, - {35897,35893,35895 ,19869,19865,19867 ,0,0,0}, {35899,35896,35898 ,19871,19868,19870 ,0,0,0}, - {35897,35896,35893 ,19869,19868,19865 ,0,0,0}, {35899,35898,35900 ,19871,19870,19872 ,0,0,0}, - {35900,35901,35902 ,19872,19873,19874 ,0,0,0}, {35903,35902,35901 ,19875,19874,19873 ,0,0,0}, - {35904,35905,35906 ,19876,19877,19878 ,0,0,0}, {35901,35907,35903 ,19873,19879,19875 ,0,0,0}, - {35906,35908,35909 ,19878,19880,19881 ,0,0,0}, {35908,35907,35909 ,19880,19879,19881 ,0,0,0}, - {35903,35907,35908 ,19875,19879,19880 ,0,0,0}, {35906,35909,35904 ,19878,19881,19876 ,0,0,0}, - {35905,35904,35910 ,19877,19876,19882 ,0,0,0}, {35905,35910,35911 ,19877,19882,19883 ,0,0,0}, - {35912,35911,35910 ,19884,19883,19882 ,0,0,0}, {35913,35914,35915 ,19885,82,19886 ,0,0,0}, - {35915,35911,35912 ,19886,19883,19884 ,0,0,0}, {35913,35915,35912 ,19885,19886,19884 ,0,0,0}, - {35913,35916,35914 ,19885,2602,82 ,0,0,0}, {35899,35900,35902 ,19871,19872,19874 ,0,0,0}, - {35895,35894,35917 ,19867,19866,19887 ,0,0,0}, {35918,35917,35919 ,19809,19887,19888 ,0,0,0}, - {35894,35919,35917 ,19866,19888,19887 ,0,0,0}, {35920,35921,35918 ,19811,19812,19809 ,0,0,0}, - {35918,35919,35920 ,19809,19888,19811 ,0,0,0}, {35921,35922,35923 ,19812,19889,19890 ,0,0,0}, - {35922,35921,35920 ,19889,19812,19811 ,0,0,0}, {35924,35923,35925 ,19891,19890,19892 ,0,0,0}, - {35922,35925,35923 ,19889,19892,19890 ,0,0,0}, {35926,35927,35924 ,19893,19894,19891 ,0,0,0}, - {35924,35925,35926 ,19891,19892,19893 ,0,0,0}, {35927,35928,35929 ,19894,19895,19820 ,0,0,0}, - {35928,35927,35926 ,19895,19894,19893 ,0,0,0}, {35930,35929,35931 ,19896,19820,19822 ,0,0,0}, - {35928,35931,35929 ,19895,19822,19820 ,0,0,0}, {35932,35933,35930 ,19897,19824,19896 ,0,0,0}, - {35930,35931,35932 ,19896,19822,19897 ,0,0,0}, {35933,35934,35935 ,19824,19825,3345 ,0,0,0}, - {35934,35933,35932 ,19825,19824,19897 ,0,0,0}, {35934,35936,35935 ,19825,126,3345 ,0,0,0}, - {35937,35938,35939 ,19898,19899,19900 ,0,0,0}, {35940,35941,35942 ,19901,19902,19903 ,0,0,0}, - {35941,35937,35939 ,19902,19898,19900 ,0,0,0}, {35943,35940,35942 ,19904,19901,19903 ,0,0,0}, - {35941,35940,35937 ,19902,19901,19898 ,0,0,0}, {35943,35942,35944 ,19904,19903,19905 ,0,0,0}, - {35944,35945,35946 ,19905,19906,19907 ,0,0,0}, {35947,35946,35945 ,19908,19907,19906 ,0,0,0}, - {35948,35949,35950 ,19909,19910,19911 ,0,0,0}, {35945,35951,35947 ,19906,19912,19908 ,0,0,0}, - {35950,35952,35953 ,19911,19913,19914 ,0,0,0}, {35952,35951,35953 ,19913,19912,19914 ,0,0,0}, - {35947,35951,35952 ,19908,19912,19913 ,0,0,0}, {35950,35953,35948 ,19911,19914,19909 ,0,0,0}, - {35949,35948,35954 ,19910,19909,19915 ,0,0,0}, {35949,35954,35955 ,19910,19915,19916 ,0,0,0}, - {35956,35955,35954 ,19917,19916,19915 ,0,0,0}, {35957,35958,35959 ,19918,9510,19919 ,0,0,0}, - {35959,35955,35956 ,19919,19916,19917 ,0,0,0}, {35957,35959,35956 ,19918,19919,19917 ,0,0,0}, - {35957,35960,35958 ,19918,8396,9510 ,0,0,0}, {35943,35944,35946 ,19904,19905,19907 ,0,0,0}, - {35939,35938,35961 ,19900,19899,19920 ,0,0,0}, {35962,35961,35963 ,19921,19920,19922 ,0,0,0}, - {35938,35963,35961 ,19899,19922,19920 ,0,0,0}, {35964,35965,35962 ,19923,19852,19921 ,0,0,0}, - {35962,35963,35964 ,19921,19922,19923 ,0,0,0}, {35965,35966,35967 ,19852,19924,19925 ,0,0,0}, - {35966,35965,35964 ,19924,19852,19923 ,0,0,0}, {35968,35967,35969 ,19926,19925,19927 ,0,0,0}, - {35966,35969,35967 ,19924,19927,19925 ,0,0,0}, {35970,35971,35968 ,19928,19929,19926 ,0,0,0}, - {35968,35969,35970 ,19926,19927,19928 ,0,0,0}, {35971,35972,35973 ,19929,19930,19931 ,0,0,0}, - {35972,35971,35970 ,19930,19929,19928 ,0,0,0}, {35974,35973,35975 ,19932,19931,4552 ,0,0,0}, - {35972,35975,35973 ,19930,4552,19931 ,0,0,0}, {35976,35977,35974 ,19933,19934,19932 ,0,0,0}, - {35974,35975,35976 ,19932,4552,19933 ,0,0,0}, {35977,35978,35979 ,19934,19935,18053 ,0,0,0}, - {35978,35977,35976 ,19935,19934,19933 ,0,0,0}, {35978,35980,35979 ,19935,96,18053 ,0,0,0}, - {35981,35982,35983 ,19936,19937,19938 ,0,0,0}, {35984,35983,35985 ,19939,19938,19940 ,0,0,0}, - {35982,35985,35983 ,19937,19940,19938 ,0,0,0}, {35986,35987,35984 ,19941,19942,19939 ,0,0,0}, - {35984,35985,35986 ,19939,19940,19941 ,0,0,0}, {35987,35988,35989 ,19942,19943,19944 ,0,0,0}, - {35988,35987,35986 ,19943,19942,19941 ,0,0,0}, {35990,35989,35991 ,19945,19944,19946 ,0,0,0}, - {35988,35991,35989 ,19943,19946,19944 ,0,0,0}, {35992,35993,35990 ,19947,19948,19945 ,0,0,0}, - {35990,35991,35992 ,19945,19946,19947 ,0,0,0}, {35993,35994,35995 ,19948,19949,19950 ,0,0,0}, - {35994,35993,35992 ,19949,19948,19947 ,0,0,0}, {35996,35995,35997 ,19951,19950,19952 ,0,0,0}, - {35994,35997,35995 ,19949,19952,19950 ,0,0,0}, {35998,35999,35996 ,19953,19954,19951 ,0,0,0}, - {35996,35997,35998 ,19951,19952,19953 ,0,0,0}, {35999,36000,36001 ,19954,19955,19956 ,0,0,0}, - {36000,35999,35998 ,19955,19954,19953 ,0,0,0}, {36002,36001,36003 ,19957,19956,19958 ,0,0,0}, - {36000,36003,36001 ,19955,19958,19956 ,0,0,0}, {36004,36005,36002 ,19959,19960,19957 ,0,0,0}, - {36002,36003,36004 ,19957,19958,19959 ,0,0,0}, {36005,36006,36007 ,19960,19961,19962 ,0,0,0}, - {36006,36005,36004 ,19961,19960,19959 ,0,0,0}, {36008,36007,36009 ,19963,19962,19964 ,0,0,0}, - {36006,36009,36007 ,19961,19964,19962 ,0,0,0}, {36010,36011,36008 ,19965,19966,19963 ,0,0,0}, - {36008,36009,36010 ,19963,19964,19965 ,0,0,0}, {36012,36011,36010 ,19967,19966,19965 ,0,0,0}, - {36012,36013,36011 ,19967,19968,19966 ,0,0,0}, {35982,35981,36014 ,19937,19936,19969 ,0,0,0}, - {36015,36016,36014 ,19970,19971,19969 ,0,0,0}, {36014,35981,36015 ,19969,19936,19970 ,0,0,0}, - {36016,36017,36018 ,19971,19972,19973 ,0,0,0}, {36017,36016,36015 ,19972,19971,19970 ,0,0,0}, - {36019,36018,36020 ,19974,19973,19975 ,0,0,0}, {36017,36020,36018 ,19972,19975,19973 ,0,0,0}, - {36021,36022,36019 ,19976,19977,19974 ,0,0,0}, {36019,36020,36021 ,19974,19975,19976 ,0,0,0}, - {36022,36023,36024 ,19977,19978,19979 ,0,0,0}, {36023,36022,36021 ,19978,19977,19976 ,0,0,0}, - {36025,36024,36026 ,19980,19979,19981 ,0,0,0}, {36023,36026,36024 ,19978,19981,19979 ,0,0,0}, - {36027,36028,36025 ,19982,19983,19980 ,0,0,0}, {36025,36026,36027 ,19980,19981,19982 ,0,0,0}, - {36028,36029,36030 ,19983,19984,19985 ,0,0,0}, {36029,36028,36027 ,19984,19983,19982 ,0,0,0}, - {36031,36030,36032 ,19986,19985,19987 ,0,0,0}, {36029,36032,36030 ,19984,19987,19985 ,0,0,0}, - {36033,36034,36031 ,19988,19989,19986 ,0,0,0}, {36031,36032,36033 ,19986,19987,19988 ,0,0,0}, - {36034,36035,36036 ,19989,19990,19991 ,0,0,0}, {36035,36034,36033 ,19990,19989,19988 ,0,0,0}, - {36037,36036,36038 ,19992,19991,19993 ,0,0,0}, {36035,36038,36036 ,19990,19993,19991 ,0,0,0}, - {36039,36040,36037 ,19994,19995,19992 ,0,0,0}, {36037,36038,36039 ,19992,19993,19994 ,0,0,0}, - {36040,36041,36042 ,19995,19996,19997 ,0,0,0}, {36041,36040,36039 ,19996,19995,19994 ,0,0,0}, - {36041,36043,36042 ,19996,19998,19997 ,0,0,0}, {36042,36043,36044 ,19997,19998,19998 ,0,0,0}, - {36045,36046,36047 ,19999,20000,20001 ,0,0,0}, {36048,36047,36049 ,20002,20001,20003 ,0,0,0}, - {36046,36049,36047 ,20000,20003,20001 ,0,0,0}, {36050,36051,36048 ,20004,20005,20002 ,0,0,0}, - {36048,36049,36050 ,20002,20003,20004 ,0,0,0}, {36051,36052,36053 ,20005,20006,20007 ,0,0,0}, - {36052,36051,36050 ,20006,20005,20004 ,0,0,0}, {36054,36053,36055 ,20008,20007,20009 ,0,0,0}, - {36052,36055,36053 ,20006,20009,20007 ,0,0,0}, {36056,36057,36054 ,20010,20011,20008 ,0,0,0}, - {36054,36055,36056 ,20008,20009,20010 ,0,0,0}, {36057,36058,36059 ,20011,20012,20013 ,0,0,0}, - {36058,36057,36056 ,20012,20011,20010 ,0,0,0}, {36060,36059,36061 ,20014,20013,20015 ,0,0,0}, - {36058,36061,36059 ,20012,20015,20013 ,0,0,0}, {36062,36063,36060 ,20016,20017,20014 ,0,0,0}, - {36060,36061,36062 ,20014,20015,20016 ,0,0,0}, {36063,36064,36065 ,20017,20018,20019 ,0,0,0}, - {36064,36063,36062 ,20018,20017,20016 ,0,0,0}, {36066,36065,36067 ,20020,20019,20021 ,0,0,0}, - {36064,36067,36065 ,20018,20021,20019 ,0,0,0}, {36068,36069,36066 ,20022,20023,20020 ,0,0,0}, - {36066,36067,36068 ,20020,20021,20022 ,0,0,0}, {36069,36070,36071 ,20023,20024,20025 ,0,0,0}, - {36070,36069,36068 ,20024,20023,20022 ,0,0,0}, {36072,36071,36073 ,20026,20025,20027 ,0,0,0}, - {36070,36073,36071 ,20024,20027,20025 ,0,0,0}, {36074,36075,36072 ,20028,20029,20026 ,0,0,0}, - {36072,36073,36074 ,20026,20027,20028 ,0,0,0}, {36076,36075,36074 ,20030,20029,20028 ,0,0,0}, - {36076,36077,36075 ,20030,126,20029 ,0,0,0}, {36046,36045,36078 ,20000,19999,20031 ,0,0,0}, - {36079,36080,36078 ,20032,20033,20031 ,0,0,0}, {36078,36045,36079 ,20031,19999,20032 ,0,0,0}, - {36080,36081,36082 ,20033,20034,20035 ,0,0,0}, {36081,36080,36079 ,20034,20033,20032 ,0,0,0}, - {36083,36082,36084 ,20036,20035,20037 ,0,0,0}, {36081,36084,36082 ,20034,20037,20035 ,0,0,0}, - {36085,36086,36083 ,20038,20039,20036 ,0,0,0}, {36083,36084,36085 ,20036,20037,20038 ,0,0,0}, - {36086,36087,36088 ,20039,20040,20041 ,0,0,0}, {36087,36086,36085 ,20040,20039,20038 ,0,0,0}, - {36089,36088,36090 ,20042,20041,20043 ,0,0,0}, {36087,36090,36088 ,20040,20043,20041 ,0,0,0}, - {36091,36092,36089 ,20044,20045,20042 ,0,0,0}, {36089,36090,36091 ,20042,20043,20044 ,0,0,0}, - {36092,36093,36094 ,20045,20046,20047 ,0,0,0}, {36093,36092,36091 ,20046,20045,20044 ,0,0,0}, - {36095,36094,36096 ,20048,20047,20049 ,0,0,0}, {36093,36096,36094 ,20046,20049,20047 ,0,0,0}, - {36097,36098,36095 ,20050,20051,20048 ,0,0,0}, {36095,36096,36097 ,20048,20049,20050 ,0,0,0}, - {36098,36099,36100 ,20051,20052,20053 ,0,0,0}, {36099,36098,36097 ,20052,20051,20050 ,0,0,0}, - {36101,36100,36102 ,20054,20053,20055 ,0,0,0}, {36099,36102,36100 ,20052,20055,20053 ,0,0,0}, - {36103,36104,36101 ,20056,20057,20054 ,0,0,0}, {36101,36102,36103 ,20054,20055,20056 ,0,0,0}, - {36104,36105,36106 ,20057,20058,20059 ,0,0,0}, {36105,36104,36103 ,20058,20057,20056 ,0,0,0}, - {36105,36107,36106 ,20058,20060,20059 ,0,0,0}, {36106,36107,36108 ,20059,20060,20060 ,0,0,0}, - {36109,36110,36111 ,20061,20062,20063 ,0,0,0}, {36112,36111,36113 ,20064,20063,20065 ,0,0,0}, - {36110,36113,36111 ,20062,20065,20063 ,0,0,0}, {36114,36115,36112 ,20066,20067,20064 ,0,0,0}, - {36112,36113,36114 ,20064,20065,20066 ,0,0,0}, {36115,36116,36117 ,20067,20068,20069 ,0,0,0}, - {36116,36115,36114 ,20068,20067,20066 ,0,0,0}, {36118,36117,36119 ,20070,20069,20071 ,0,0,0}, - {36116,36119,36117 ,20068,20071,20069 ,0,0,0}, {36120,36121,36118 ,20072,20073,20070 ,0,0,0}, - {36118,36119,36120 ,20070,20071,20072 ,0,0,0}, {36121,36122,36123 ,20073,20074,20075 ,0,0,0}, - {36122,36121,36120 ,20074,20073,20072 ,0,0,0}, {36124,36123,36125 ,20076,20075,20077 ,0,0,0}, - {36122,36125,36123 ,20074,20077,20075 ,0,0,0}, {36126,36127,36124 ,20078,20079,20076 ,0,0,0}, - {36124,36125,36126 ,20076,20077,20078 ,0,0,0}, {36127,36128,36129 ,20079,20080,20081 ,0,0,0}, - {36128,36127,36126 ,20080,20079,20078 ,0,0,0}, {36130,36129,36131 ,20082,20081,20083 ,0,0,0}, - {36128,36131,36129 ,20080,20083,20081 ,0,0,0}, {36132,36133,36130 ,20084,20085,20082 ,0,0,0}, - {36130,36131,36132 ,20082,20083,20084 ,0,0,0}, {36133,36134,36135 ,20085,20086,20087 ,0,0,0}, - {36134,36133,36132 ,20086,20085,20084 ,0,0,0}, {36136,36135,36137 ,20088,20087,20089 ,0,0,0}, - {36134,36137,36135 ,20086,20089,20087 ,0,0,0}, {36138,36139,36136 ,20090,20091,20088 ,0,0,0}, - {36136,36137,36138 ,20088,20089,20090 ,0,0,0}, {36140,36139,36138 ,20092,20091,20090 ,0,0,0}, - {36140,36141,36139 ,20092,20093,20091 ,0,0,0}, {36110,36109,36142 ,20062,20061,20094 ,0,0,0}, - {36143,36144,36142 ,20095,20096,20094 ,0,0,0}, {36142,36109,36143 ,20094,20061,20095 ,0,0,0}, - {36144,36145,36146 ,20096,20097,20098 ,0,0,0}, {36145,36144,36143 ,20097,20096,20095 ,0,0,0}, - {36147,36146,36148 ,20099,20098,20100 ,0,0,0}, {36145,36148,36146 ,20097,20100,20098 ,0,0,0}, - {36149,36150,36147 ,20101,20102,20099 ,0,0,0}, {36147,36148,36149 ,20099,20100,20101 ,0,0,0}, - {36150,36151,36152 ,20102,20103,20104 ,0,0,0}, {36151,36150,36149 ,20103,20102,20101 ,0,0,0}, - {36153,36152,36154 ,20105,20104,20106 ,0,0,0}, {36151,36154,36152 ,20103,20106,20104 ,0,0,0}, - {36155,36156,36153 ,20107,20108,20105 ,0,0,0}, {36153,36154,36155 ,20105,20106,20107 ,0,0,0}, - {36156,36157,36158 ,20108,20109,20110 ,0,0,0}, {36157,36156,36155 ,20109,20108,20107 ,0,0,0}, - {36159,36158,36160 ,20111,20110,20112 ,0,0,0}, {36157,36160,36158 ,20109,20112,20110 ,0,0,0}, - {36161,36162,36159 ,20113,20114,20111 ,0,0,0}, {36159,36160,36161 ,20111,20112,20113 ,0,0,0}, - {36162,36163,36164 ,20114,20115,20116 ,0,0,0}, {36163,36162,36161 ,20115,20114,20113 ,0,0,0}, - {36165,36164,36166 ,20117,20116,20118 ,0,0,0}, {36163,36166,36164 ,20115,20118,20116 ,0,0,0}, - {36167,36168,36165 ,20119,20120,20117 ,0,0,0}, {36165,36166,36167 ,20117,20118,20119 ,0,0,0}, - {36168,36169,36170 ,20120,20121,20122 ,0,0,0}, {36169,36168,36167 ,20121,20120,20119 ,0,0,0}, - {36169,36171,36170 ,20121,20123,20122 ,0,0,0}, {36170,36171,36172 ,20122,20123,20123 ,0,0,0}, - {36173,35775,36174 ,726,726,20124 ,0,0,0}, {36175,36176,36177 ,727,726,20124 ,0,0,0}, - {36178,36179,36180 ,726,726,726 ,0,0,0}, {36181,35773,35775 ,726,20124,726 ,0,0,0}, - {36182,36183,36184 ,726,726,20124 ,0,0,0}, {35769,36181,35767 ,20124,726,726 ,0,0,0}, - {36181,35770,35773 ,726,726,20124 ,0,0,0}, {36185,36186,36187 ,726,726,726 ,0,0,0}, - {35750,35748,36181 ,726,20124,726 ,0,0,0}, {35764,35767,36181 ,726,726,726 ,0,0,0}, - {34562,36108,36188 ,726,726,726 ,0,0,0}, {36189,36190,34340 ,726,726,726 ,0,0,0}, - {36191,36192,36193 ,726,726,726 ,0,0,0}, {36194,36195,36196 ,726,726,726 ,0,0,0}, - {34084,34580,36197 ,728,726,726 ,0,0,0}, {35814,35815,36198 ,728,726,726 ,0,0,0}, - {35750,36181,36199 ,726,726,20124 ,0,0,0}, {36200,36201,36202 ,20124,20124,726 ,0,0,0}, - {35159,36194,35157 ,20124,726,726 ,0,0,0}, {36181,35748,35747 ,726,20124,726 ,0,0,0}, - {36203,35193,36204 ,726,20124,726 ,0,0,0}, {36205,36206,35131 ,20124,20124,20124 ,0,0,0}, - {36207,35300,36208 ,726,20124,20124 ,0,0,0}, {36209,35357,36210 ,726,727,726 ,0,0,0}, - {36211,36212,36210 ,20124,727,726 ,0,0,0}, {36213,35741,35743 ,726,1793,726 ,0,0,0}, - {36214,36215,36216 ,726,726,727 ,0,0,0}, {36216,36217,36214 ,727,727,726 ,0,0,0}, - {36216,36212,36217 ,727,727,727 ,0,0,0}, {36215,36192,36191 ,726,726,726 ,0,0,0}, - {36214,36192,36215 ,726,726,726 ,0,0,0}, {36191,36193,36218 ,726,726,727 ,0,0,0}, - {36219,36220,35940 ,20124,727,20124 ,0,0,0}, {36221,35946,35947 ,20124,20124,726 ,0,0,0}, - {36153,36156,36222 ,727,727,727 ,0,0,0}, {34936,36113,34937 ,727,727,726 ,0,0,0}, - {36110,34039,36113 ,726,726,727 ,0,0,0}, {34904,36223,34906 ,727,727,727 ,0,0,0}, - {36224,36225,36226 ,727,727,727 ,0,0,0}, {34221,36227,36228 ,726,726,20124 ,0,0,0}, - {36229,36134,36230 ,20124,727,726 ,0,0,0}, {34878,34212,36231 ,727,20124,20124 ,0,0,0}, - {34209,34212,34883 ,726,20124,726 ,0,0,0}, {36232,34868,34865 ,726,20124,20124 ,0,0,0}, - {34865,34864,36233 ,20124,726,20124 ,0,0,0}, {34856,36234,36235 ,20124,20124,20124 ,0,0,0}, - {36235,36236,34853 ,20124,727,20124 ,0,0,0}, {34877,36231,34861 ,727,20124,726 ,0,0,0}, - {36237,34850,34852 ,726,726,726 ,0,0,0}, {36238,36239,36240 ,20124,726,726 ,0,0,0}, - {35947,35952,36241 ,726,727,726 ,0,0,0}, {34846,36242,36243 ,727,20124,727 ,0,0,0}, - {36244,34568,34569 ,726,726,726 ,0,0,0}, {34543,36245,34541 ,726,726,729 ,0,0,0}, - {34945,34946,34139 ,20124,726,726 ,0,0,0}, {36246,36088,36247 ,726,726,728 ,0,0,0}, - {36248,34840,34128 ,20124,20124,726 ,0,0,0}, {34923,34939,36249 ,20124,726,726 ,0,0,0}, - {36250,36251,36252 ,726,726,726 ,0,0,0}, {35827,34176,34173 ,728,726,728 ,0,0,0}, - {34932,34930,36119 ,726,727,727 ,0,0,0}, {34044,36253,36254 ,726,727,727 ,0,0,0}, - {36255,36256,34260 ,726,726,726 ,0,0,0}, {36257,36258,34165 ,726,726,726 ,0,0,0}, - {36259,36260,35972 ,726,726,726 ,0,0,0}, {34934,34932,36116 ,727,726,727 ,0,0,0}, - {36261,36262,36256 ,726,726,726 ,0,0,0}, {36186,36185,36263 ,726,726,726 ,0,0,0}, - {34047,34046,36144 ,727,726,726 ,0,0,0}, {36113,34936,36114 ,727,727,727 ,0,0,0}, - {36061,36058,34482 ,726,726,726 ,0,0,0}, {34481,36056,34479 ,726,726,726 ,0,0,0}, - {36100,36101,34554 ,726,726,726 ,0,0,0}, {36259,35970,35969 ,726,726,20124 ,0,0,0}, - {34145,35963,34148 ,20124,726,726 ,0,0,0}, {35937,36264,35938 ,20124,20124,726 ,0,0,0}, - {36153,36222,36265 ,727,727,727 ,0,0,0}, {34058,36266,34902 ,726,726,726 ,0,0,0}, - {36114,34934,36116 ,727,727,727 ,0,0,0}, {36116,34932,36119 ,727,726,727 ,0,0,0}, - {36267,34907,36223 ,726,726,727 ,0,0,0}, {35978,35976,36268 ,726,726,726 ,0,0,0}, - {34838,34128,34840 ,20124,726,20124 ,0,0,0}, {36122,36120,34927 ,727,20124,726 ,0,0,0}, - {34044,36254,36269 ,726,727,727 ,0,0,0}, {34906,36223,34907 ,727,727,726 ,0,0,0}, - {34041,34044,36269 ,726,726,727 ,0,0,0}, {36270,34923,36249 ,20124,20124,726 ,0,0,0}, - {36126,36125,34926 ,727,726,20124 ,0,0,0}, {36170,36172,36271 ,727,727,727 ,0,0,0}, - {34053,34908,34909 ,726,726,726 ,0,0,0}, {36128,36270,36131 ,726,20124,726 ,0,0,0}, - {34923,36270,34924 ,20124,20124,20124 ,0,0,0}, {34912,34914,36272 ,726,20124,20124 ,0,0,0}, - {36273,36274,34060 ,727,727,726 ,0,0,0}, {35345,36275,35349 ,726,727,727 ,0,0,0}, - {36221,36276,36277 ,20124,727,726 ,0,0,0}, {36278,34130,36279 ,726,20124,20124 ,0,0,0}, - {36138,36280,36281 ,20124,727,20124 ,0,0,0}, {36239,36238,36282 ,726,20124,727 ,0,0,0}, - {34229,35959,34232 ,726,20124,726 ,0,0,0}, {36283,36284,34868 ,726,726,20124 ,0,0,0}, - {36285,36286,34847 ,20124,20124,727 ,0,0,0}, {36287,36282,36238 ,20124,727,20124 ,0,0,0}, - {34308,34875,34874 ,726,727,726 ,0,0,0}, {35105,36288,36289 ,727,727,727 ,0,0,0}, - {34316,36290,36291 ,20124,726,726 ,0,0,0}, {36218,36292,36293 ,727,727,727 ,0,0,0}, - {36284,34870,34868 ,726,20124,20124 ,0,0,0}, {35071,36294,36295 ,20124,727,727 ,0,0,0}, - {36296,36297,36298 ,726,727,20124 ,0,0,0}, {36299,36300,36301 ,727,20124,726 ,0,0,0}, - {36302,36303,34296 ,726,726,726 ,0,0,0}, {35075,36304,36305 ,726,727,20124 ,0,0,0}, - {36306,36307,36308 ,727,726,726 ,0,0,0}, {36309,36310,36308 ,20124,20124,726 ,0,0,0}, - {36311,35083,36299 ,727,727,727 ,0,0,0}, {36306,36312,36307 ,727,20124,726 ,0,0,0}, - {36301,36311,36299 ,726,727,727 ,0,0,0}, {36289,36313,36312 ,727,726,20124 ,0,0,0}, - {36304,36310,36305 ,727,20124,20124 ,0,0,0}, {36289,36288,36292 ,727,727,727 ,0,0,0}, - {36193,36292,36218 ,726,727,727 ,0,0,0}, {36210,36206,36211 ,726,20124,20124 ,0,0,0}, - {36212,36211,36217 ,727,20124,727 ,0,0,0}, {35339,35341,36314 ,727,726,726 ,0,0,0}, - {36315,35716,36316 ,1793,1793,1793 ,0,0,0}, {36213,36317,35735 ,726,1793,1793 ,0,0,0}, - {35394,36213,35743 ,726,726,726 ,0,0,0}, {36318,36319,36320 ,1792,1793,727 ,0,0,0}, - {35379,35223,35380 ,726,20124,726 ,0,0,0}, {35216,35372,35374 ,726,20124,727 ,0,0,0}, - {36321,36322,35728 ,1793,1793,1793 ,0,0,0}, {35729,35728,36322 ,726,1793,1793 ,0,0,0}, - {36322,36323,35729 ,1793,1793,726 ,0,0,0}, {35726,36321,35728 ,1793,1793,1793 ,0,0,0}, - {36324,36325,36326 ,1793,1793,1792 ,0,0,0}, {35724,36321,35726 ,726,1793,1793 ,0,0,0}, - {36327,36328,36329 ,726,727,1793 ,0,0,0}, {36321,35724,36330 ,1793,726,1793 ,0,0,0}, - {36331,36332,36333 ,1793,1793,726 ,0,0,0}, {36330,35722,35719 ,1793,1793,1793 ,0,0,0}, - {36334,36327,36335 ,1793,726,726 ,0,0,0}, {35718,36336,35719 ,727,726,1793 ,0,0,0}, - {35425,36337,35428 ,726,726,1793 ,0,0,0}, {35425,35423,36337 ,726,1793,726 ,0,0,0}, - {36338,36339,36340 ,20124,727,727 ,0,0,0}, {35210,35207,35369 ,726,726,726 ,0,0,0}, - {36341,35519,35517 ,726,726,726 ,0,0,0}, {36342,36343,36344 ,726,1792,727 ,0,0,0}, - {36345,36346,36347 ,727,1792,727 ,0,0,0}, {36332,36331,36343 ,1793,1793,1792 ,0,0,0}, - {36332,36343,36342 ,1793,1792,726 ,0,0,0}, {36348,36333,36349 ,1793,726,1793 ,0,0,0}, - {36333,36348,36331 ,726,1793,1793 ,0,0,0}, {36350,36351,34394 ,20125,20126,1792 ,0,0,0}, - {36348,36349,36352 ,1793,1793,1792 ,0,0,0}, {36353,36354,36355 ,20127,20128,20129 ,0,0,0}, - {34424,36356,36357 ,20130,20131,20132 ,0,0,0}, {34718,36358,34720 ,20133,20134,20135 ,0,0,0}, - {34417,34723,34724 ,1793,20136,1793 ,0,0,0}, {35934,35932,36359 ,20137,1793,20136 ,0,0,0}, - {34408,36360,36361 ,20126,20138,20128 ,0,0,0}, {35896,36362,36363 ,20137,20139,20140 ,0,0,0}, - {36364,36365,36366 ,20141,20142,20143 ,0,0,0}, {35926,35925,36367 ,20137,1792,20133 ,0,0,0}, - {36368,34814,34812 ,20144,20135,20133 ,0,0,0}, {34410,36369,34411 ,1793,20145,20146 ,0,0,0}, - {35919,34456,34453 ,20147,20148,20137 ,0,0,0}, {34410,34403,36370 ,1793,20143,20149 ,0,0,0}, - {34815,34814,36371 ,20127,20135,20150 ,0,0,0}, {36372,36373,36374 ,20131,20151,20152 ,0,0,0}, - {34456,35919,35894 ,20148,20147,726 ,0,0,0}, {34814,36375,36371 ,20135,20153,20150 ,0,0,0}, - {36376,36377,36378 ,20154,20155,20156 ,0,0,0}, {36379,36380,36381 ,20157,20158,20159 ,0,0,0}, - {35928,36367,36382 ,727,20133,20136 ,0,0,0}, {34812,36383,36368 ,20133,20160,20144 ,0,0,0}, - {34812,34810,36383 ,20133,20127,20160 ,0,0,0}, {34721,36366,36365 ,20127,20143,20142 ,0,0,0}, - {36384,36385,36386 ,1793,1792,20161 ,0,0,0}, {36383,34810,36387 ,20160,20127,20148 ,0,0,0}, - {36387,34808,36388 ,20148,20126,20162 ,0,0,0}, {34436,34778,34776 ,1792,20137,20126 ,0,0,0}, - {35903,36389,35902 ,20162,20137,726 ,0,0,0}, {36390,36360,34408 ,20137,20138,20126 ,0,0,0}, - {36361,34405,34408 ,20128,20131,20126 ,0,0,0}, {36391,34805,34804 ,20163,20135,20164 ,0,0,0}, - {34436,36392,34778 ,1792,20124,20137 ,0,0,0}, {34720,36358,34721 ,20135,20134,20127 ,0,0,0}, - {36393,36394,34802 ,20124,20133,1792 ,0,0,0}, {34817,36395,34816 ,1793,20140,20136 ,0,0,0}, - {36396,34802,34801 ,20165,1792,726 ,0,0,0}, {36397,36398,36399 ,20132,20137,20166 ,0,0,0}, - {36400,36401,36402 ,20167,20137,20138 ,0,0,0}, {36403,36404,34386 ,20134,20165,20161 ,0,0,0}, - {36405,36406,36407 ,20167,20167,20126 ,0,0,0}, {34822,34823,34447 ,20131,20139,20134 ,0,0,0}, - {36408,34377,36409 ,20136,20136,20133 ,0,0,0}, {36356,34724,34727 ,20131,1793,1792 ,0,0,0}, - {36410,36411,36412 ,20168,1792,20139 ,0,0,0}, {34733,36413,36414 ,20165,1792,20133 ,0,0,0}, - {36415,36416,36417 ,20169,20128,20168 ,0,0,0}, {36418,36419,36420 ,20137,20167,20137 ,0,0,0}, - {36421,36422,36423 ,20147,20170,20139 ,0,0,0}, {34742,34740,36424 ,20124,1792,20137 ,0,0,0}, - {35779,36425,35786 ,1793,20139,1793 ,0,0,0}, {34740,36426,36424 ,1792,20162,20137 ,0,0,0}, - {34748,34746,36427 ,20137,20126,20139 ,0,0,0}, {36428,36429,36430 ,20140,726,1793 ,0,0,0}, - {36431,36427,34746 ,1793,20139,20126 ,0,0,0}, {36432,36433,36434 ,20137,20140,20139 ,0,0,0}, - {34397,36435,34400 ,20168,20125,20140 ,0,0,0}, {35782,34764,34766 ,20137,20137,20170 ,0,0,0}, - {34764,35782,34761 ,20137,20137,727 ,0,0,0}, {34769,36436,36437 ,726,1793,20130 ,0,0,0}, - {36438,36439,35914 ,20125,20125,20167 ,0,0,0}, {36440,36441,36442 ,20124,20147,1793 ,0,0,0}, - {36443,36352,36349 ,1792,1792,1793 ,0,0,0}, {36443,34995,36352 ,1792,20130,1792 ,0,0,0}, - {36444,35903,35908 ,20126,20162,20139 ,0,0,0}, {36445,34797,36446 ,20170,20170,1793 ,0,0,0}, - {34789,34791,36447 ,20125,20147,20130 ,0,0,0}, {36448,36449,35061 ,20140,20140,726 ,0,0,0}, - {36450,35790,35053 ,20140,20147,20140 ,0,0,0}, {36432,36451,36452 ,20137,20168,1793 ,0,0,0}, - {34792,34795,36453 ,727,20137,20124 ,0,0,0}, {36454,35046,36455 ,20167,1792,727 ,0,0,0}, - {36456,35049,36457 ,20147,1793,726 ,0,0,0}, {36448,36458,36459 ,20140,20130,20124 ,0,0,0}, - {36448,36459,36460 ,20140,20124,1792 ,0,0,0}, {35061,36458,36448 ,726,20130,20140 ,0,0,0}, - {35043,36461,36455 ,1793,726,727 ,0,0,0}, {36462,35055,35058 ,20167,1792,20140 ,0,0,0}, - {36463,36448,36464 ,1793,20140,20148 ,0,0,0}, {36344,36346,36465 ,727,1792,1793 ,0,0,0}, - {36344,36465,36342 ,727,1793,726 ,0,0,0}, {35517,36466,36341 ,726,1793,726 ,0,0,0}, - {36346,36345,36465 ,1792,727,1793 ,0,0,0}, {36467,35605,36468 ,20124,726,1793 ,0,0,0}, - {35522,35519,36341 ,1793,726,726 ,0,0,0}, {36469,36470,36471 ,726,726,1793 ,0,0,0}, - {36472,36473,36474 ,726,726,726 ,0,0,0}, {35207,35206,35362 ,726,726,727 ,0,0,0}, - {36475,36476,36477 ,727,726,726 ,0,0,0}, {36475,36478,36476 ,727,727,726 ,0,0,0}, - {35496,36479,35499 ,1793,726,1793 ,0,0,0}, {36480,36478,36481 ,727,727,726 ,0,0,0}, - {36482,36483,36484 ,1792,726,1793 ,0,0,0}, {35696,36485,36486 ,1793,1793,1793 ,0,0,0}, - {36487,35697,36486 ,727,726,1793 ,0,0,0}, {35696,36486,35697 ,1793,1793,726 ,0,0,0}, - {36488,36489,36490 ,1793,727,1793 ,0,0,0}, {36491,36492,36493 ,727,1793,1792 ,0,0,0}, - {36494,36495,36496 ,726,726,726 ,0,0,0}, {36497,36469,36498 ,726,726,726 ,0,0,0}, - {36499,36489,36500 ,1792,727,727 ,0,0,0}, {36497,36501,36502 ,726,727,727 ,0,0,0}, - {35694,36485,35696 ,1793,1793,1793 ,0,0,0}, {36503,36504,36505 ,727,726,727 ,0,0,0}, - {35692,36506,35694 ,726,1793,1793 ,0,0,0}, {35490,36507,36508 ,1793,726,1792 ,0,0,0}, - {35630,35628,36509 ,726,726,20124 ,0,0,0}, {36510,36511,35634 ,726,726,726 ,0,0,0}, - {36512,36513,36514 ,20124,726,726 ,0,0,0}, {36515,36516,36517 ,727,726,726 ,0,0,0}, - {36518,36519,36520 ,727,726,726 ,0,0,0}, {36521,36522,36523 ,726,727,726 ,0,0,0}, - {36523,36516,36521 ,726,726,726 ,0,0,0}, {36524,36522,36525 ,726,727,727 ,0,0,0}, - {36522,36524,36523 ,727,726,726 ,0,0,0}, {36526,36527,36525 ,727,726,727 ,0,0,0}, - {36524,36525,36527 ,726,727,726 ,0,0,0}, {36528,36527,36526 ,727,726,727 ,0,0,0}, - {36529,34686,34352 ,20124,20124,726 ,0,0,0}, {34649,34648,36530 ,20124,726,20124 ,0,0,0}, - {34114,36531,36532 ,20124,726,727 ,0,0,0}, {36533,36534,34200 ,726,726,726 ,0,0,0}, - {34692,36535,34677 ,727,727,726 ,0,0,0}, {34201,36536,34204 ,726,726,20124 ,0,0,0}, - {36537,36010,36538 ,20124,726,727 ,0,0,0}, {35888,36539,35890 ,726,726,726 ,0,0,0}, - {36540,36541,34268 ,727,727,726 ,0,0,0}, {35882,35881,36542 ,726,20124,726 ,0,0,0}, - {36543,36544,36545 ,727,726,727 ,0,0,0}, {36546,35884,36542 ,726,726,726 ,0,0,0}, - {34627,34266,36547 ,726,727,727 ,0,0,0}, {36548,36549,36550 ,727,727,727 ,0,0,0}, - {34597,36551,36552 ,726,726,726 ,0,0,0}, {34594,36553,36554 ,727,727,727 ,0,0,0}, - {36555,36552,36551 ,727,726,726 ,0,0,0}, {34182,36556,36557 ,20124,20124,727 ,0,0,0}, - {36558,36559,36560 ,727,727,727 ,0,0,0}, {36561,36003,36000 ,726,727,20124 ,0,0,0}, - {36562,34622,34620 ,727,726,727 ,0,0,0}, {36563,35991,35988 ,726,726,726 ,0,0,0}, - {36561,36564,36565 ,726,20124,726 ,0,0,0}, {36040,34702,36037 ,727,20124,726 ,0,0,0}, - {36530,34646,36566 ,20124,726,20124 ,0,0,0}, {36028,36567,36025 ,20124,20124,726 ,0,0,0}, - {36568,36024,36025 ,726,727,726 ,0,0,0}, {34652,36569,36533 ,20124,726,726 ,0,0,0}, - {34654,34652,36533 ,20124,20124,726 ,0,0,0}, {34097,34667,34668 ,726,726,20124 ,0,0,0}, - {36570,36571,36572 ,726,20124,726 ,0,0,0}, {36572,36571,34704 ,726,20124,726 ,0,0,0}, - {36019,34103,36018 ,20124,726,20124 ,0,0,0}, {36573,34200,36534 ,726,726,726 ,0,0,0}, - {35985,34673,36574 ,726,726,726 ,0,0,0}, {34699,36042,34698 ,20124,20124,726 ,0,0,0}, - {34696,36044,36575 ,726,20124,20124 ,0,0,0}, {36576,36577,36578 ,20124,726,20124 ,0,0,0}, - {36536,36577,34204 ,726,726,20124 ,0,0,0}, {36579,34109,36580 ,20124,726,726 ,0,0,0}, - {36581,36582,36583 ,20124,727,726 ,0,0,0}, {36584,35998,36585 ,727,20124,726 ,0,0,0}, - {36586,34610,36587 ,727,726,726 ,0,0,0}, {34117,35871,34120 ,726,20124,726 ,0,0,0}, - {36588,36589,36590 ,726,20124,727 ,0,0,0}, {36561,36000,36584 ,726,20124,727 ,0,0,0}, - {36591,36592,36593 ,20124,727,20124 ,0,0,0}, {36594,36595,36596 ,726,726,726 ,0,0,0}, - {34195,36597,34196 ,20124,726,726 ,0,0,0}, {34495,36598,34498 ,728,726,726 ,0,0,0}, - {34190,36599,36600 ,727,726,726 ,0,0,0}, {36601,36602,34284 ,727,727,726 ,0,0,0}, - {34599,34277,34598 ,726,726,726 ,0,0,0}, {36603,34288,34285 ,726,20124,726 ,0,0,0}, - {36541,34265,34268 ,727,726,726 ,0,0,0}, {36554,34596,34594 ,727,727,727 ,0,0,0}, - {36604,36540,34268 ,727,727,726 ,0,0,0}, {34641,36605,34364 ,726,726,20124 ,0,0,0}, - {36606,34270,36607 ,726,726,20124 ,0,0,0}, {35875,34372,34369 ,726,726,20124 ,0,0,0}, - {36608,35005,36609 ,726,20124,727 ,0,0,0}, {34627,36610,36611 ,726,726,727 ,0,0,0}, - {34684,34349,34352 ,20124,726,726 ,0,0,0}, {35249,35245,36612 ,726,726,20124 ,0,0,0}, - {36610,34627,34626 ,726,726,727 ,0,0,0}, {36613,36610,34626 ,727,726,727 ,0,0,0}, - {35481,35328,35325 ,727,727,726 ,0,0,0}, {35009,36608,36614 ,726,726,20124 ,0,0,0}, - {36615,36616,36596 ,727,20124,726 ,0,0,0}, {36615,36596,36617 ,727,726,726 ,0,0,0}, - {36617,35017,36615 ,726,727,727 ,0,0,0}, {36589,35858,35859 ,20124,20124,726 ,0,0,0}, - {34998,35011,36618 ,727,726,726 ,0,0,0}, {34635,34366,34633 ,20124,726,726 ,0,0,0}, - {36619,35001,34999 ,727,726,20124 ,0,0,0}, {36620,36592,36591 ,727,727,20124 ,0,0,0}, - {36621,36609,35008 ,727,727,726 ,0,0,0}, {36614,36620,36622 ,20124,727,20124 ,0,0,0}, - {36623,36624,36625 ,727,726,726 ,0,0,0}, {36521,36516,36515 ,726,726,727 ,0,0,0}, - {36515,36517,36626 ,727,726,20124 ,0,0,0}, {36627,36628,36626 ,20124,726,20124 ,0,0,0}, - {36626,36517,36627 ,20124,726,20124 ,0,0,0}, {36629,35628,35625 ,726,726,20124 ,0,0,0}, - {35630,36630,35632 ,726,726,726 ,0,0,0}, {35479,35481,35325 ,726,727,726 ,0,0,0}, - {35296,35294,36631 ,726,20124,726 ,0,0,0}, {36632,35293,36633 ,726,20124,20124 ,0,0,0}, - {36634,36635,36636 ,20124,726,20124 ,0,0,0}, {35243,36637,36638 ,726,727,726 ,0,0,0}, - {36639,36640,36641 ,20124,726,726 ,0,0,0}, {36642,36643,35677 ,726,727,20124 ,0,0,0}, - {36643,36644,35674 ,727,726,726 ,0,0,0}, {36644,36645,35673 ,726,726,726 ,0,0,0}, - {36646,35679,36647 ,726,726,726 ,0,0,0}, {36645,35668,35671 ,726,726,20124 ,0,0,0}, - {36648,36647,36649 ,726,726,726 ,0,0,0}, {36650,36651,36652 ,726,20124,726 ,0,0,0}, - {36645,35651,35667 ,726,726,726 ,0,0,0}, {36653,36654,35276 ,726,20124,726 ,0,0,0}, - {36655,36656,36657 ,726,20124,726 ,0,0,0}, {36658,36659,36653 ,726,20124,726 ,0,0,0}, - {36660,36661,36662 ,726,727,726 ,0,0,0}, {36663,35250,36664 ,726,726,726 ,0,0,0}, - {36182,36195,35176 ,726,726,726 ,0,0,0}, {35181,36182,35179 ,20124,726,20124 ,0,0,0}, - {36665,36666,36513 ,20124,726,726 ,0,0,0}, {36636,36667,36668 ,20124,20124,726 ,0,0,0}, - {36669,36670,36671 ,20124,727,726 ,0,0,0}, {36672,36673,36670 ,726,20124,727 ,0,0,0}, - {36179,36674,36180 ,726,727,726 ,0,0,0}, {36675,36179,36178 ,20124,726,726 ,0,0,0}, - {36676,36677,36674 ,20124,20124,727 ,0,0,0}, {36180,36674,36677 ,726,727,20124 ,0,0,0}, - {36678,36679,36680 ,729,726,726 ,0,0,0}, {35806,34092,35831 ,728,726,726 ,0,0,0}, - {34964,34958,36681 ,726,729,20124 ,0,0,0}, {34156,34512,34153 ,726,726,726 ,0,0,0}, - {34506,36682,34491 ,726,726,726 ,0,0,0}, {34507,34510,34156 ,726,726,726 ,0,0,0}, - {36683,36073,36684 ,726,726,726 ,0,0,0}, {36685,36064,34487 ,726,726,728 ,0,0,0}, - {36686,34498,36687 ,726,726,726 ,0,0,0}, {34498,36686,34500 ,726,726,726 ,0,0,0}, - {36062,36061,34485 ,726,726,726 ,0,0,0}, {34256,36686,36688 ,726,726,726 ,0,0,0}, - {36689,34158,36690 ,726,726,729 ,0,0,0}, {36688,36691,34256 ,726,726,726 ,0,0,0}, - {34257,36691,36255 ,726,726,726 ,0,0,0}, {34260,34257,36255 ,726,726,726 ,0,0,0}, - {36055,36052,34476 ,726,726,726 ,0,0,0}, {36692,36693,36694 ,729,726,726 ,0,0,0}, - {36695,36696,36697 ,726,726,728 ,0,0,0}, {36698,36699,36700 ,726,729,728 ,0,0,0}, - {36049,36046,34067 ,726,726,728 ,0,0,0}, {35820,36701,35815 ,726,726,726 ,0,0,0}, - {35818,36258,36702 ,726,726,726 ,0,0,0}, {36703,36704,36198 ,726,726,726 ,0,0,0}, - {34070,34462,34460 ,726,726,726 ,0,0,0}, {36705,36706,36707 ,726,726,726 ,0,0,0}, - {36708,34238,36709 ,726,726,726 ,0,0,0}, {34556,36104,34557 ,726,726,726 ,0,0,0}, - {34463,34069,34466 ,728,726,726 ,0,0,0}, {36108,34560,36106 ,726,728,726 ,0,0,0}, - {36710,34468,34072 ,726,726,726 ,0,0,0}, {34566,36188,36711 ,726,726,726 ,0,0,0}, - {34562,36188,34564 ,726,726,726 ,0,0,0}, {35838,35837,36712 ,726,726,726 ,0,0,0}, - {36713,34327,36714 ,726,726,726 ,0,0,0}, {36715,35808,36716 ,726,728,726 ,0,0,0}, - {34566,36711,34567 ,726,726,726 ,0,0,0}, {34072,34468,34466 ,726,726,726 ,0,0,0}, - {36188,34566,34564 ,726,726,726 ,0,0,0}, {36717,35848,34344 ,726,726,726 ,0,0,0}, - {35840,36712,36718 ,726,726,726 ,0,0,0}, {34341,36719,36717 ,726,726,726 ,0,0,0}, - {36720,36721,36722 ,726,726,728 ,0,0,0}, {34338,34530,34528 ,726,726,728 ,0,0,0}, - {34532,36723,36724 ,726,726,726 ,0,0,0}, {36725,36726,34324 ,726,726,726 ,0,0,0}, - {36727,36728,36729 ,726,726,726 ,0,0,0}, {36730,34535,36731 ,726,726,726 ,0,0,0}, - {36724,34535,34534 ,726,726,726 ,0,0,0}, {34970,36732,34967 ,726,726,726 ,0,0,0}, - {36733,36720,36734 ,726,726,726 ,0,0,0}, {36735,36678,36736 ,726,729,728 ,0,0,0}, - {36678,36737,36736 ,729,726,728 ,0,0,0}, {34965,36738,36739 ,726,20124,726 ,0,0,0}, - {36676,36740,36741 ,20124,726,20124 ,0,0,0}, {36738,36740,36676 ,20124,726,20124 ,0,0,0}, - {36675,36178,36669 ,20124,726,20124 ,0,0,0}, {36670,36673,36671 ,727,20124,726 ,0,0,0}, - {36669,36671,36675 ,20124,726,20124 ,0,0,0}, {36672,36742,36673 ,726,727,20124 ,0,0,0}, - {36665,36743,36744 ,20124,726,726 ,0,0,0}, {36672,36745,36742 ,726,727,727 ,0,0,0}, - {36746,36668,36667 ,20124,726,20124 ,0,0,0}, {36747,35237,36748 ,726,726,727 ,0,0,0}, - {36182,35181,36749 ,726,20124,20124 ,0,0,0}, {35350,35353,36750 ,727,726,727 ,0,0,0}, - {35754,35580,35582 ,726,20124,20124 ,0,0,0}, {36202,36751,36752 ,726,726,726 ,0,0,0}, - {35169,36195,35162 ,727,726,726 ,0,0,0}, {35345,35344,36753 ,726,726,726 ,0,0,0}, - {36195,35169,35168 ,726,727,20124 ,0,0,0}, {35332,35337,36754 ,726,726,726 ,0,0,0}, - {36755,35384,35383 ,726,726,726 ,0,0,0}, {35552,35553,36756 ,726,726,727 ,0,0,0}, - {36209,36750,35353 ,726,727,726 ,0,0,0}, {35131,36206,35206 ,20124,20124,726 ,0,0,0}, - {35205,35202,36205 ,726,20124,20124 ,0,0,0}, {35205,36205,35131 ,726,20124,20124 ,0,0,0}, - {36757,35202,35200 ,20124,20124,20124 ,0,0,0}, {35202,36757,36205 ,20124,20124,20124 ,0,0,0}, - {35199,36758,35200 ,726,726,20124 ,0,0,0}, {36757,35200,36758 ,20124,20124,726 ,0,0,0}, - {35575,36758,35196 ,727,726,726 ,0,0,0}, {36758,35199,35196 ,726,726,726 ,0,0,0}, - {36758,35575,36759 ,726,727,726 ,0,0,0}, {35196,35194,36760 ,726,20124,726 ,0,0,0}, - {35575,35574,36759 ,727,726,726 ,0,0,0}, {35188,36761,35190 ,726,726,726 ,0,0,0}, - {36762,35184,36763 ,20124,20124,726 ,0,0,0}, {35187,36764,36765 ,726,726,20124 ,0,0,0}, - {35132,35137,36766 ,726,726,20124 ,0,0,0}, {36767,36768,35136 ,726,20124,726 ,0,0,0}, - {36769,35139,36770 ,726,20124,20124 ,0,0,0}, {36770,35139,36771 ,20124,20124,726 ,0,0,0}, - {35582,35583,35756 ,20124,20124,726 ,0,0,0}, {36772,35149,36773 ,20124,726,726 ,0,0,0}, - {35141,35143,36774 ,726,726,726 ,0,0,0}, {35150,36775,36776 ,726,20124,727 ,0,0,0}, - {35145,36777,36778 ,726,726,20124 ,0,0,0}, {36779,36780,35155 ,726,726,726 ,0,0,0}, - {35155,36780,35153 ,726,726,20124 ,0,0,0}, {36181,35763,35764 ,726,726,726 ,0,0,0}, - {35157,36194,36779 ,726,726,726 ,0,0,0}, {36202,36781,35775 ,726,726,726 ,0,0,0}, - {36174,35775,36781 ,20124,726,726 ,0,0,0}, {36201,36782,36202 ,20124,20124,726 ,0,0,0}, - {35159,35162,36195 ,20124,726,726 ,0,0,0}, {35172,36195,35167 ,20124,726,727 ,0,0,0}, - {36195,35168,35167 ,726,20124,727 ,0,0,0}, {35176,36195,35174 ,726,726,727 ,0,0,0}, - {36195,35172,35174 ,726,20124,727 ,0,0,0}, {36182,35176,35163 ,726,726,726 ,0,0,0}, - {35179,36182,35180 ,20124,726,726 ,0,0,0}, {36182,35163,35180 ,726,726,726 ,0,0,0}, - {36182,36749,36183 ,726,20124,726 ,0,0,0}, {36182,36184,36783 ,726,20124,20124 ,0,0,0}, - {36746,36667,36182 ,20124,20124,726 ,0,0,0}, {36182,36783,36746 ,726,20124,20124 ,0,0,0}, - {36636,36635,36743 ,20124,726,726 ,0,0,0}, {36634,36636,36668 ,20124,20124,726 ,0,0,0}, - {36665,36744,36666 ,20124,726,726 ,0,0,0}, {36743,36635,36744 ,726,726,726 ,0,0,0}, - {36514,36784,36512 ,726,726,20124 ,0,0,0}, {36513,36512,36665 ,726,20124,20124 ,0,0,0}, - {36784,36664,35253 ,726,726,20124 ,0,0,0}, {36512,36784,36745 ,20124,726,727 ,0,0,0}, - {35244,36663,36785 ,726,726,726 ,0,0,0}, {36786,36748,35239 ,726,727,20124 ,0,0,0}, - {35243,36638,35241 ,726,726,726 ,0,0,0}, {35232,35237,36747 ,726,726,726 ,0,0,0}, - {35236,36787,35283 ,726,20124,20124 ,0,0,0}, {36788,36633,35290 ,726,20124,726 ,0,0,0}, - {35284,36789,35287 ,20124,726,726 ,0,0,0}, {36631,35294,36632 ,726,20124,726 ,0,0,0}, - {35255,36784,35253 ,726,726,20124 ,0,0,0}, {35307,35462,35469 ,726,727,726 ,0,0,0}, - {35443,35449,36790 ,726,727,726 ,0,0,0}, {36791,35654,35652 ,726,726,726 ,0,0,0}, - {36792,36793,36794 ,20124,20124,726 ,0,0,0}, {36795,36790,35449 ,727,726,727 ,0,0,0}, - {36796,35616,36797 ,726,727,727 ,0,0,0}, {36798,36799,36800 ,726,726,726 ,0,0,0}, - {35437,36801,35432 ,726,727,726 ,0,0,0}, {36802,36803,35635 ,726,726,727 ,0,0,0}, - {36790,36804,35443 ,726,727,726 ,0,0,0}, {36805,35450,35453 ,726,727,726 ,0,0,0}, - {35449,35445,36795 ,727,726,727 ,0,0,0}, {36478,36475,36481 ,727,727,726 ,0,0,0}, - {36476,36806,36477 ,726,727,726 ,0,0,0}, {36177,36807,36808 ,20124,726,727 ,0,0,0}, - {36480,36176,36175 ,727,726,727 ,0,0,0}, {36807,36809,36810 ,726,726,726 ,0,0,0}, - {36809,36811,36810 ,726,727,726 ,0,0,0}, {35225,35381,35228 ,726,727,727 ,0,0,0}, - {36812,36813,36814 ,727,726,20124 ,0,0,0}, {35516,36815,36466 ,726,1792,1793 ,0,0,0}, - {35632,36510,35634 ,726,726,726 ,0,0,0}, {35374,35217,35216 ,727,726,726 ,0,0,0}, - {35363,35219,35376 ,726,726,20124 ,0,0,0}, {35213,35372,35216 ,726,20124,726 ,0,0,0}, - {36816,35507,35506 ,1793,1793,1792 ,0,0,0}, {35211,35367,35213 ,726,727,726 ,0,0,0}, - {36817,36818,36819 ,1793,1793,727 ,0,0,0}, {35368,35367,35211 ,726,727,726 ,0,0,0}, - {35369,35368,35210 ,726,726,726 ,0,0,0}, {35422,36337,35423 ,1793,726,1793 ,0,0,0}, - {35217,35376,35219 ,726,20124,726 ,0,0,0}, {36337,35419,36327 ,726,726,726 ,0,0,0}, - {35419,36337,35422 ,726,726,1793 ,0,0,0}, {36327,35417,35416 ,726,726,726 ,0,0,0}, - {35419,35417,36327 ,726,726,726 ,0,0,0}, {36820,35410,35407 ,727,1793,1793 ,0,0,0}, - {35416,35413,36327 ,726,727,726 ,0,0,0}, {36821,35402,36822 ,727,1793,727 ,0,0,0}, - {36823,35331,35405 ,1793,726,1793 ,0,0,0}, {35399,36824,35400 ,1793,726,1793 ,0,0,0}, - {36824,36822,35400 ,726,727,1793 ,0,0,0}, {35394,35743,35396 ,726,726,1793 ,0,0,0}, - {35359,35362,35206 ,726,727,726 ,0,0,0}, {35732,36825,35731 ,726,1792,1792 ,0,0,0}, - {35393,35545,35544 ,726,726,727 ,0,0,0}, {35390,35388,36826 ,1793,726,20124 ,0,0,0}, - {35393,35390,35545 ,726,1793,726 ,0,0,0}, {36210,35359,36206 ,726,726,20124 ,0,0,0}, - {35387,36827,36828 ,1793,727,727 ,0,0,0}, {35355,35357,36209 ,726,727,726 ,0,0,0}, - {36829,36830,35336 ,726,727,20124 ,0,0,0}, {35343,36831,36832 ,726,726,726 ,0,0,0}, - {35341,35343,36832 ,726,726,726 ,0,0,0}, {35355,36209,35353 ,726,726,726 ,0,0,0}, - {35535,36213,35538 ,726,726,727 ,0,0,0}, {35349,36275,36831 ,727,727,726 ,0,0,0}, - {35350,36753,35344 ,727,726,726 ,0,0,0}, {35531,35546,36833 ,727,726,726 ,0,0,0}, - {36833,35535,35534 ,726,726,726 ,0,0,0}, {35556,36834,36756 ,727,727,727 ,0,0,0}, - {35350,36750,36753 ,727,727,726 ,0,0,0}, {35359,36210,35357 ,726,726,727 ,0,0,0}, - {36206,35359,35206 ,20124,726,726 ,0,0,0}, {35362,35369,35207 ,727,726,726 ,0,0,0}, - {35368,35211,35210 ,726,726,726 ,0,0,0}, {35372,35213,35367 ,20124,726,727 ,0,0,0}, - {35217,35374,35376 ,726,727,20124 ,0,0,0}, {35219,35363,35222 ,726,726,726 ,0,0,0}, - {35380,35223,35222 ,726,20124,726 ,0,0,0}, {35222,35363,35380 ,726,726,726 ,0,0,0}, - {35225,35223,35379 ,726,20124,726 ,0,0,0}, {36812,35228,35381 ,727,727,727 ,0,0,0}, - {35381,35225,35379 ,727,726,726 ,0,0,0}, {36813,36338,36814 ,726,20124,20124 ,0,0,0}, - {36812,36814,35228 ,727,20124,727 ,0,0,0}, {35511,36835,36815 ,727,727,1792 ,0,0,0}, - {36339,36811,36340 ,727,727,727 ,0,0,0}, {36813,36339,36338 ,726,727,20124 ,0,0,0}, - {36836,35612,35613 ,727,726,726 ,0,0,0}, {36340,36811,36809 ,727,727,726 ,0,0,0}, - {36807,36810,36808 ,726,726,727 ,0,0,0}, {35302,36837,35305 ,20124,726,726 ,0,0,0}, - {36177,36808,36175 ,20124,727,727 ,0,0,0}, {36176,36480,36481 ,726,727,726 ,0,0,0}, - {36838,36806,36839 ,726,727,727 ,0,0,0}, {36477,36806,36838 ,726,727,726 ,0,0,0}, - {36805,35453,36840 ,726,726,726 ,0,0,0}, {36838,36839,36841 ,726,727,727 ,0,0,0}, - {36804,35441,35443 ,727,726,726 ,0,0,0}, {36795,35445,36842 ,727,726,726 ,0,0,0}, - {36843,35437,35439 ,20124,726,727 ,0,0,0}, {36801,35437,36843 ,727,726,20124 ,0,0,0}, - {36844,36845,35436 ,726,727,20124 ,0,0,0}, {36845,35483,35436 ,727,726,20124 ,0,0,0}, - {36846,35640,35642 ,727,20124,20124 ,0,0,0}, {36845,36847,35483 ,727,726,726 ,0,0,0}, - {36469,36848,36849 ,726,726,726 ,0,0,0}, {36850,35607,36851 ,727,726,20124 ,0,0,0}, - {36852,36853,35598 ,726,727,727 ,0,0,0}, {36854,35592,35591 ,726,726,727 ,0,0,0}, - {35502,35500,36855 ,1793,1793,1792 ,0,0,0}, {36856,36852,35594 ,727,726,726 ,0,0,0}, - {36857,35505,35502 ,1792,1793,1793 ,0,0,0}, {36341,35528,35525 ,726,1793,726 ,0,0,0}, - {35523,36341,35525 ,1793,726,726 ,0,0,0}, {36857,36858,35505 ,1792,726,1793 ,0,0,0}, - {35431,36859,35506 ,726,726,1792 ,0,0,0}, {35505,36859,35431 ,1793,726,726 ,0,0,0}, - {36341,35523,35522 ,726,1793,1793 ,0,0,0}, {35511,36815,35513 ,727,1792,727 ,0,0,0}, - {35505,36347,36859 ,1793,727,726 ,0,0,0}, {35507,36816,35510 ,1793,1793,1793 ,0,0,0}, - {36345,36858,36860 ,727,726,727 ,0,0,0}, {36858,36345,36347 ,726,727,727 ,0,0,0}, - {36817,36861,36860 ,1793,1792,727 ,0,0,0}, {36345,36860,36861 ,727,727,1792 ,0,0,0}, - {36819,36818,36862 ,727,1793,1793 ,0,0,0}, {36819,36861,36817 ,727,1792,1793 ,0,0,0}, - {36862,36319,36863 ,1793,1793,726 ,0,0,0}, {36863,36819,36862 ,726,727,1793 ,0,0,0}, - {36864,36318,36320 ,726,1792,727 ,0,0,0}, {36319,36318,36863 ,1793,1792,726 ,0,0,0}, - {36865,36864,36866 ,1793,726,1793 ,0,0,0}, {36864,36865,36318 ,726,1793,1792 ,0,0,0}, - {36337,36865,36867 ,726,1793,726 ,0,0,0}, {36866,36867,36865 ,1793,726,1793 ,0,0,0}, - {36868,36337,36869 ,727,726,1792 ,0,0,0}, {36337,36867,36869 ,726,726,1792 ,0,0,0}, - {35428,36337,36870 ,1793,726,1793 ,0,0,0}, {36337,36868,36870 ,726,727,1793 ,0,0,0}, - {34951,36871,34140 ,726,726,20124 ,0,0,0}, {36872,34302,35065 ,20124,727,20124 ,0,0,0}, - {36873,36874,36875 ,20124,726,20124 ,0,0,0}, {34930,36120,36119 ,727,20124,727 ,0,0,0}, - {34927,36120,34930 ,726,20124,727 ,0,0,0}, {36125,34927,34926 ,726,726,20124 ,0,0,0}, - {34924,36128,36126 ,20124,726,727 ,0,0,0}, {36876,34940,34943 ,727,726,726 ,0,0,0}, - {34125,34128,34838 ,726,726,20124 ,0,0,0}, {34832,34126,34834 ,726,726,726 ,0,0,0}, - {36138,36137,36280 ,20124,20124,727 ,0,0,0}, {36877,35950,36228 ,727,20124,20124 ,0,0,0}, - {34831,36243,36878 ,726,727,726 ,0,0,0}, {36286,36242,34846 ,20124,20124,727 ,0,0,0}, - {34850,36237,36285 ,726,726,20124 ,0,0,0}, {36236,34852,34853 ,727,726,20124 ,0,0,0}, - {36879,36880,36881 ,20124,726,20124 ,0,0,0}, {34862,36882,36233 ,726,20124,20124 ,0,0,0}, - {36232,36283,34868 ,726,726,20124 ,0,0,0}, {34887,34889,34210 ,20124,726,726 ,0,0,0}, - {36883,36884,36885 ,726,726,726 ,0,0,0}, {36284,36886,34312 ,726,726,726 ,0,0,0}, - {36887,36888,34215 ,20124,726,726 ,0,0,0}, {36886,36889,34312 ,726,726,726 ,0,0,0}, - {36890,36891,34214 ,20124,20124,726 ,0,0,0}, {34316,34313,36290 ,20124,726,726 ,0,0,0}, - {36291,36892,36893 ,726,20124,20124 ,0,0,0}, {36894,36895,36896 ,726,726,726 ,0,0,0}, - {36897,36898,36899 ,726,726,726 ,0,0,0}, {36294,35074,35068 ,727,726,726 ,0,0,0}, - {36294,35068,36900 ,727,726,727 ,0,0,0}, {36901,36902,36903 ,727,726,726 ,0,0,0}, - {36904,35077,36905 ,726,726,726 ,0,0,0}, {36273,34909,34912 ,727,726,726 ,0,0,0}, - {34064,36906,35980 ,20124,726,726 ,0,0,0}, {36906,34064,34061 ,726,20124,726 ,0,0,0}, - {36907,36172,36908 ,727,727,726 ,0,0,0}, {36909,36910,36168 ,727,727,727 ,0,0,0}, - {36164,36165,34907 ,726,726,726 ,0,0,0}, {36911,36268,35975 ,20124,726,20124 ,0,0,0}, - {36266,36223,34904 ,726,727,727 ,0,0,0}, {36164,36267,36162 ,726,726,20124 ,0,0,0}, - {34428,34425,36912 ,20138,20130,20137 ,0,0,0}, {36913,36410,36412 ,20130,20168,20139 ,0,0,0}, - {34810,34808,36387 ,20127,20126,20148 ,0,0,0}, {34808,34805,36388 ,20126,20135,20162 ,0,0,0}, - {36394,36391,34804 ,20133,20163,20164 ,0,0,0}, {36396,34801,36914 ,20165,726,20130 ,0,0,0}, - {36396,36393,34802 ,20165,20124,1792 ,0,0,0}, {34826,34448,34447 ,20165,20165,20134 ,0,0,0}, - {34770,34434,34772 ,1792,1792,20124 ,0,0,0}, {36915,36916,36389 ,20126,20126,20137 ,0,0,0}, - {36917,34442,36918 ,20137,20167,20124 ,0,0,0}, {36919,35795,36920 ,20126,20126,1793 ,0,0,0}, - {35793,36921,36922 ,20170,20137,20137 ,0,0,0}, {34438,36923,36924 ,20162,1793,727 ,0,0,0}, - {35906,35905,35800 ,20125,20148,20167 ,0,0,0}, {36925,34431,36437 ,20147,20168,20130 ,0,0,0}, - {35911,35801,35905 ,20168,20170,20148 ,0,0,0}, {35804,35915,35914 ,1792,20168,20167 ,0,0,0}, - {36433,36432,36452 ,20140,20137,1793 ,0,0,0}, {36926,36927,36928 ,20148,1792,20140 ,0,0,0}, - {36929,36930,36931 ,727,20148,727 ,0,0,0}, {36932,35787,35786 ,20124,20167,1793 ,0,0,0}, - {34755,35784,36933 ,20168,20167,20137 ,0,0,0}, {36425,35779,34766 ,20139,1793,20170 ,0,0,0}, - {36934,36935,36936 ,20126,20162,20126 ,0,0,0}, {36413,34735,36937 ,1792,20169,20164 ,0,0,0}, - {36938,36411,36410 ,20147,1792,20168 ,0,0,0}, {36939,36938,36410 ,20168,20147,20168 ,0,0,0}, - {36940,36941,36942 ,20135,20168,20133 ,0,0,0}, {36943,36944,36945 ,20126,20139,20148 ,0,0,0}, - {36414,36941,34730 ,20133,20168,20139 ,0,0,0}, {34378,36946,36947 ,20132,1792,1792 ,0,0,0}, - {12820,36948,36406 ,20140,1792,20167 ,0,0,0}, {36912,35936,34428 ,20137,20169,20138 ,0,0,0}, - {36949,36950,34382 ,20131,20162,20135 ,0,0,0}, {34375,36951,36952 ,20165,20148,20132 ,0,0,0}, - {36912,34425,36953 ,20137,20130,20165 ,0,0,0}, {36954,36955,36956 ,20169,20168,20171 ,0,0,0}, - {36957,36955,36365 ,20172,20168,20142 ,0,0,0}, {36958,36359,35931 ,20132,20136,20148 ,0,0,0}, - {36959,36358,34718 ,20135,20134,20133 ,0,0,0}, {34716,36959,34718 ,20127,20135,20133 ,0,0,0}, - {34366,36960,34633 ,726,727,726 ,0,0,0}, {36961,36962,36963 ,727,726,727 ,0,0,0}, - {36964,36965,36966 ,726,726,726 ,0,0,0}, {36967,35852,36968 ,727,20124,20124 ,0,0,0}, - {36613,34626,34624 ,727,727,727 ,0,0,0}, {36589,36968,35855 ,20124,20124,726 ,0,0,0}, - {36969,36613,34624 ,726,727,727 ,0,0,0}, {36969,34624,34622 ,726,727,726 ,0,0,0}, - {34363,34635,34636 ,726,20124,726 ,0,0,0}, {36616,36594,36596 ,20124,726,726 ,0,0,0}, - {36579,36970,35862 ,20124,727,20124 ,0,0,0}, {36575,34692,34693 ,20124,727,727 ,0,0,0}, - {36044,34696,34698 ,20124,726,726 ,0,0,0}, {34699,36040,36042 ,20124,727,20124 ,0,0,0}, - {34702,34704,36037 ,20124,726,726 ,0,0,0}, {36571,36971,34704 ,20124,727,726 ,0,0,0}, - {34648,34646,36530 ,726,726,20124 ,0,0,0}, {34671,34098,34668 ,20124,726,20124 ,0,0,0}, - {36028,36972,36567 ,20124,20124,20124 ,0,0,0}, {34095,36014,34102 ,727,726,726 ,0,0,0}, - {34201,36573,36536 ,726,726,726 ,0,0,0}, {35992,35991,36973 ,20124,726,727 ,0,0,0}, - {36974,35997,35994 ,726,726,20124 ,0,0,0}, {36975,36976,36977 ,726,726,20124 ,0,0,0}, - {36564,36561,36584 ,20124,726,727 ,0,0,0}, {34608,36586,36978 ,726,727,726 ,0,0,0}, - {34198,36979,36980 ,726,727,726 ,0,0,0}, {36981,34605,36978 ,726,726,726 ,0,0,0}, - {34602,36601,34599 ,726,727,726 ,0,0,0}, {36982,36983,36006 ,726,726,726 ,0,0,0}, - {36009,36538,36010 ,726,727,726 ,0,0,0}, {36603,35892,34288 ,726,726,20124 ,0,0,0}, - {34186,36984,36985 ,726,726,726 ,0,0,0}, {36963,36986,36987 ,727,726,726 ,0,0,0}, - {35887,36539,35888 ,20124,726,726 ,0,0,0}, {36988,36989,36552 ,727,727,726 ,0,0,0}, - {34597,36554,36551 ,726,727,726 ,0,0,0}, {36990,36539,35887 ,20124,726,20124 ,0,0,0}, - {34596,36554,34597 ,727,727,726 ,0,0,0}, {36991,36992,36993 ,727,726,727 ,0,0,0}, - {34554,34553,36994 ,726,726,726 ,0,0,0}, {34569,34572,36244 ,726,729,726 ,0,0,0}, - {36995,36996,36997 ,729,726,726 ,0,0,0}, {34562,34560,36108 ,726,728,726 ,0,0,0}, - {34560,34557,36106 ,728,726,726 ,0,0,0}, {36101,36104,34556 ,726,726,726 ,0,0,0}, - {36994,34553,36998 ,726,726,726 ,0,0,0}, {36098,36100,36994 ,726,726,726 ,0,0,0}, - {34574,34575,34083 ,726,726,726 ,0,0,0}, {36999,36094,37000 ,726,726,726 ,0,0,0}, - {36089,36092,36247 ,726,726,728 ,0,0,0}, {36080,34075,34074 ,726,726,726 ,0,0,0}, - {36050,34459,34475 ,726,726,726 ,0,0,0}, {36052,36050,34475 ,726,726,726 ,0,0,0}, - {36056,36055,34479 ,726,726,726 ,0,0,0}, {36058,34481,34482 ,726,726,726 ,0,0,0}, - {37001,37002,34170 ,726,726,726 ,0,0,0}, {36598,36687,34498 ,726,726,726 ,0,0,0}, - {37003,37004,37001 ,726,729,726 ,0,0,0}, {36074,36073,36683 ,726,726,726 ,0,0,0}, - {36076,36074,37005 ,728,726,726 ,0,0,0}, {37006,37007,34159 ,728,726,726 ,0,0,0}, - {34518,37008,37009 ,728,726,726 ,0,0,0}, {37010,37011,37012 ,726,726,726 ,0,0,0}, - {36697,37013,36692 ,728,726,729 ,0,0,0}, {36705,37014,34254 ,726,726,726 ,0,0,0}, - {34240,37015,37016 ,726,726,726 ,0,0,0}, {37017,34547,34549 ,726,726,726 ,0,0,0}, - {36245,34543,36250 ,726,726,726 ,0,0,0}, {37018,36997,36996 ,726,726,726 ,0,0,0}, - {34541,36189,34538 ,729,726,726 ,0,0,0}, {37019,37020,37021 ,726,726,726 ,0,0,0}, - {37022,37023,37024 ,726,726,729 ,0,0,0}, {37025,37023,34246 ,726,726,728 ,0,0,0}, - {37026,37025,34246 ,726,726,728 ,0,0,0}, {34344,34341,36717 ,726,726,726 ,0,0,0}, - {37027,37028,34242 ,726,726,726 ,0,0,0}, {37029,37030,37031 ,726,726,726 ,0,0,0}, - {37032,37033,37034 ,726,726,726 ,0,0,0}, {37035,37036,35843 ,726,729,726 ,0,0,0}, - {37037,37038,37039 ,729,726,726 ,0,0,0}, {37040,34322,37041 ,726,726,726 ,0,0,0}, - {36927,37042,36928 ,1792,1793,20140 ,0,0,0}, {34785,37043,36436 ,1793,20168,1793 ,0,0,0}, - {36446,37044,37045 ,1793,20139,20162 ,0,0,0}, {37045,36445,36446 ,20162,20170,1793 ,0,0,0}, - {36457,37046,37045 ,726,20130,20162 ,0,0,0}, {36457,37045,37044 ,726,20162,20139 ,0,0,0}, - {37042,35787,36928 ,1793,20167,20140 ,0,0,0}, {36429,36930,37047 ,726,20148,1793 ,0,0,0}, - {34397,37048,36435 ,20168,20139,20125 ,0,0,0}, {36425,36932,35786 ,20139,20124,1793 ,0,0,0}, - {36932,36928,35787 ,20124,20140,20167 ,0,0,0}, {37049,37050,37051 ,1793,20168,20140 ,0,0,0}, - {35781,34761,35782 ,20139,727,20137 ,0,0,0}, {34746,34743,37052 ,20126,20137,20125 ,0,0,0}, - {36423,36422,36425 ,20139,20170,20139 ,0,0,0}, {37053,37054,36936 ,20147,1793,20126 ,0,0,0}, - {37055,37056,37057 ,20130,1793,20139 ,0,0,0}, {36933,36426,34739 ,20137,20162,726 ,0,0,0}, - {36434,36433,37052 ,20139,20140,20125 ,0,0,0}, {36451,36438,35914 ,20168,20125,20167 ,0,0,0}, - {36438,36451,36432 ,20125,20168,20137 ,0,0,0}, {35801,35915,35804 ,20170,20168,1792 ,0,0,0}, - {35804,35914,36439 ,1792,20167,20125 ,0,0,0}, {35801,35800,35905 ,20170,20167,20148 ,0,0,0}, - {35801,35911,35915 ,20170,20168,20168 ,0,0,0}, {37058,36921,35793 ,20139,20137,20170 ,0,0,0}, - {35793,35796,37058 ,20170,20125,20139 ,0,0,0}, {37059,35906,36922 ,20125,20125,20137 ,0,0,0}, - {37060,37061,12921 ,20137,20132,20140 ,0,0,0}, {37062,34797,37063 ,20167,20170,20139 ,0,0,0}, - {35580,35754,35751 ,20124,726,726 ,0,0,0}, {37064,36770,35761 ,726,20124,726 ,0,0,0}, - {35150,35153,36775 ,726,20124,20124 ,0,0,0}, {35136,35132,37065 ,726,726,20124 ,0,0,0}, - {35577,35580,35751 ,20124,20124,726 ,0,0,0}, {36199,35562,35561 ,20124,726,727 ,0,0,0}, - {35570,35568,36199 ,726,726,20124 ,0,0,0}, {36199,35751,35750 ,20124,726,726 ,0,0,0}, - {35763,36181,35747 ,726,726,726 ,0,0,0}, {35770,36181,35769 ,726,726,20124 ,0,0,0}, - {36181,35775,36173 ,726,726,726 ,0,0,0}, {36781,36202,36782 ,726,726,20124 ,0,0,0}, - {37066,36196,36195 ,20124,726,726 ,0,0,0}, {36752,36200,36202 ,726,20124,726 ,0,0,0}, - {36196,37067,36202 ,726,726,726 ,0,0,0}, {36751,36202,37067 ,726,726,726 ,0,0,0}, - {36196,37066,37068 ,726,20124,20124 ,0,0,0}, {37068,37067,36196 ,20124,726,726 ,0,0,0}, - {36194,35159,36195 ,726,20124,726 ,0,0,0}, {36779,35155,35157 ,726,726,726 ,0,0,0}, - {36775,35153,36780 ,20124,20124,726 ,0,0,0}, {35144,35150,36776 ,726,726,727 ,0,0,0}, - {35144,36777,35145 ,726,726,726 ,0,0,0}, {36777,35144,36776 ,726,726,727 ,0,0,0}, - {36773,35145,36778 ,726,726,20124 ,0,0,0}, {36772,35143,35149 ,20124,726,726 ,0,0,0}, - {36773,35149,35145 ,726,726,726 ,0,0,0}, {36774,36771,35141 ,726,726,726 ,0,0,0}, - {36772,36774,35143 ,20124,726,726 ,0,0,0}, {35588,35760,35586 ,726,726,726 ,0,0,0}, - {35141,36771,35139 ,726,726,20124 ,0,0,0}, {35754,35582,35756 ,726,20124,726 ,0,0,0}, - {35743,36824,35399 ,726,726,1793 ,0,0,0}, {35716,36315,35718 ,1793,1793,727 ,0,0,0}, - {35402,35400,36822 ,1793,1793,727 ,0,0,0}, {35722,36330,35724 ,1793,1793,726 ,0,0,0}, - {36336,36330,35719 ,726,1793,1793 ,0,0,0}, {36315,36336,35718 ,1793,726,727 ,0,0,0}, - {35731,36316,35715 ,1792,1793,727 ,0,0,0}, {36316,35716,35715 ,1793,1793,727 ,0,0,0}, - {35738,35741,36213 ,727,1793,726 ,0,0,0}, {36825,36316,35731 ,1792,1793,1792 ,0,0,0}, - {36317,35732,35735 ,1793,726,1793 ,0,0,0}, {35732,36317,36825 ,726,1793,1792 ,0,0,0}, - {35735,35737,36213 ,1793,1793,726 ,0,0,0}, {35737,35738,36213 ,1793,727,726 ,0,0,0}, - {35399,35396,35743 ,1793,1793,726 ,0,0,0}, {36821,35405,35402 ,727,1793,1793 ,0,0,0}, - {37069,36335,35413 ,727,726,727 ,0,0,0}, {36821,36823,35405 ,727,1793,1793 ,0,0,0}, - {37070,35406,36823 ,727,1792,1793 ,0,0,0}, {35331,36823,35406 ,726,1793,1792 ,0,0,0}, - {37070,36820,35407 ,727,727,1793 ,0,0,0}, {35407,35406,37070 ,1793,1792,727 ,0,0,0}, - {37069,35410,36820 ,727,1793,727 ,0,0,0}, {35411,37069,35413 ,727,727,727 ,0,0,0}, - {37069,35411,35410 ,727,727,1793 ,0,0,0}, {36334,37071,36327 ,1793,1792,726 ,0,0,0}, - {35413,36335,36327 ,727,726,726 ,0,0,0}, {36329,37072,36327 ,1793,1792,726 ,0,0,0}, - {37071,36328,36327 ,1792,727,726 ,0,0,0}, {36324,37072,36325 ,1793,1792,1793 ,0,0,0}, - {36329,36325,37072 ,1793,1793,1792 ,0,0,0}, {36324,36326,36323 ,1793,1792,1793 ,0,0,0}, - {35729,36323,36326 ,726,1793,1792 ,0,0,0}, {36852,35598,35595 ,726,727,726 ,0,0,0}, - {35694,36506,36485 ,1793,1793,1793 ,0,0,0}, {36500,36503,37073 ,727,727,1793 ,0,0,0}, - {36506,35690,36849 ,1793,1793,726 ,0,0,0}, {35690,36506,35692 ,1793,1793,726 ,0,0,0}, - {36849,35687,35686 ,726,1793,727 ,0,0,0}, {35690,35687,36849 ,1793,1793,726 ,0,0,0}, - {35700,36469,35699 ,726,726,1792 ,0,0,0}, {35686,35684,36849 ,727,1793,726 ,0,0,0}, - {37074,37075,36469 ,1793,1793,726 ,0,0,0}, {37076,37077,36469 ,1793,1793,726 ,0,0,0}, - {35706,35709,36469 ,727,1793,726 ,0,0,0}, {36853,37078,35600 ,727,1793,727 ,0,0,0}, - {35602,35600,37078 ,727,727,1793 ,0,0,0}, {35602,37078,37079 ,727,1793,726 ,0,0,0}, - {35602,37079,35604 ,727,726,727 ,0,0,0}, {35604,37080,35605 ,727,1792,726 ,0,0,0}, - {36498,36501,36497 ,726,727,726 ,0,0,0}, {36488,36490,36497 ,1793,1793,726 ,0,0,0}, - {36488,36497,36502 ,1793,726,727 ,0,0,0}, {36489,36499,36490 ,727,1792,1793 ,0,0,0}, - {36500,37073,36499 ,727,1793,1792 ,0,0,0}, {37081,36505,36504 ,1793,727,726 ,0,0,0}, - {36503,36505,37073 ,727,727,1793 ,0,0,0}, {37082,37081,36493 ,1792,1793,1792 ,0,0,0}, - {37081,37082,36505 ,1793,1792,727 ,0,0,0}, {36491,37083,36492 ,727,1793,1793 ,0,0,0}, - {37082,36493,36492 ,1792,1792,1793 ,0,0,0}, {36484,36483,37083 ,1793,726,1793 ,0,0,0}, - {36492,37083,36483 ,1793,1793,726 ,0,0,0}, {36483,36482,36487 ,726,1792,727 ,0,0,0}, - {35697,36487,36482 ,726,727,1792 ,0,0,0}, {37084,36645,36653 ,20124,726,726 ,0,0,0}, - {37085,36645,37084 ,20124,726,20124 ,0,0,0}, {36648,37086,36639 ,726,20124,20124 ,0,0,0}, - {37087,36658,36653 ,20124,726,726 ,0,0,0}, {37088,37089,35648 ,726,726,726 ,0,0,0}, - {35257,37090,36742 ,726,20124,727 ,0,0,0}, {37091,35646,35648 ,726,726,726 ,0,0,0}, - {36654,37092,35272 ,20124,20124,20124 ,0,0,0}, {36653,35281,37087 ,726,20124,20124 ,0,0,0}, - {35667,35668,36645 ,726,726,726 ,0,0,0}, {35673,36645,35671 ,726,726,20124 ,0,0,0}, - {35674,36644,35673 ,726,726,726 ,0,0,0}, {35677,36643,35674 ,20124,727,726 ,0,0,0}, - {35679,36646,36642 ,726,726,726 ,0,0,0}, {35679,36642,35677 ,726,726,20124 ,0,0,0}, - {36647,36648,36646 ,726,726,726 ,0,0,0}, {37086,36648,36649 ,20124,726,726 ,0,0,0}, - {36652,36639,36641 ,726,20124,726 ,0,0,0}, {36640,36639,37086 ,726,20124,20124 ,0,0,0}, - {36656,36651,36650 ,20124,20124,726 ,0,0,0}, {36650,36652,36641 ,726,726,726 ,0,0,0}, - {36662,36655,36657 ,726,726,726 ,0,0,0}, {36656,36655,36651 ,20124,726,20124 ,0,0,0}, - {36660,37093,36661 ,726,726,727 ,0,0,0}, {36662,36661,36655 ,726,727,726 ,0,0,0}, - {37094,37093,37095 ,726,726,20124 ,0,0,0}, {36660,37095,37093 ,726,20124,726 ,0,0,0}, - {37096,37094,37097 ,726,726,20124 ,0,0,0}, {37094,37095,37097 ,726,20124,20124 ,0,0,0}, - {35665,37094,37098 ,726,726,20124 ,0,0,0}, {37094,37096,37098 ,726,726,20124 ,0,0,0}, - {35453,35455,36840 ,726,726,726 ,0,0,0}, {37099,37100,37094 ,20124,726,726 ,0,0,0}, - {35322,35319,35463 ,726,726,726 ,0,0,0}, {35323,35479,35325 ,20124,726,726 ,0,0,0}, - {35457,35231,36841 ,727,20124,727 ,0,0,0}, {35296,37101,35299 ,726,726,726 ,0,0,0}, - {35299,37101,36208 ,726,726,20124 ,0,0,0}, {37091,35648,37089 ,726,726,726 ,0,0,0}, - {35255,36742,36745 ,726,727,727 ,0,0,0}, {37102,35658,37103 ,726,726,726 ,0,0,0}, - {37104,35658,37102 ,726,726,726 ,0,0,0}, {35660,37105,35662 ,20124,726,726 ,0,0,0}, - {37105,37106,35662 ,726,726,726 ,0,0,0}, {35665,35664,37107 ,726,727,726 ,0,0,0}, - {37108,37094,37088 ,726,726,726 ,0,0,0}, {35665,37109,37110 ,726,20124,727 ,0,0,0}, - {37094,37111,37099 ,726,20124,20124 ,0,0,0}, {37094,37108,37111 ,726,726,20124 ,0,0,0}, - {37112,36792,37100 ,20124,20124,726 ,0,0,0}, {37094,37100,36792 ,726,726,20124 ,0,0,0}, - {37113,36792,37114 ,20124,20124,726 ,0,0,0}, {36792,37112,37114 ,20124,20124,726 ,0,0,0}, - {36793,36792,37115 ,20124,20124,726 ,0,0,0}, {36792,37113,37115 ,20124,20124,726 ,0,0,0}, - {36794,37116,36792 ,726,726,20124 ,0,0,0}, {36798,36800,37116 ,726,726,726 ,0,0,0}, - {36792,37116,36800 ,20124,726,726 ,0,0,0}, {36800,36799,36803 ,726,726,726 ,0,0,0}, - {35635,36803,36799 ,727,726,726 ,0,0,0}, {37117,35618,37118 ,726,726,726 ,0,0,0}, - {35594,36852,35595 ,726,726,726 ,0,0,0}, {37119,37118,37120 ,726,726,727 ,0,0,0}, - {35499,36479,37121 ,1793,726,1793 ,0,0,0}, {35618,36797,35616 ,726,727,727 ,0,0,0}, - {37122,35496,35494 ,727,1793,726 ,0,0,0}, {35493,36508,37123 ,726,1792,1793 ,0,0,0}, - {35494,37123,37122 ,726,1793,727 ,0,0,0}, {35490,35488,36507 ,1793,726,726 ,0,0,0}, - {35490,36508,35493 ,1793,1792,726 ,0,0,0}, {35484,37124,35487 ,726,727,1793 ,0,0,0}, - {35306,35459,35462 ,726,726,727 ,0,0,0}, {37125,37117,37126 ,726,726,726 ,0,0,0}, - {36841,35231,37127 ,727,20124,726 ,0,0,0}, {35480,35323,35322 ,726,20124,726 ,0,0,0}, - {37128,37125,37126 ,726,726,726 ,0,0,0}, {35618,37120,37118 ,726,727,726 ,0,0,0}, - {37119,37129,37130 ,726,726,726 ,0,0,0}, {37120,37129,37119 ,727,726,726 ,0,0,0}, - {37131,36494,37130 ,726,726,726 ,0,0,0}, {37119,37130,36494 ,726,726,726 ,0,0,0}, - {37132,36494,37133 ,726,726,727 ,0,0,0}, {36494,37131,37133 ,726,726,727 ,0,0,0}, - {36496,37134,36494 ,726,727,726 ,0,0,0}, {36494,37132,36495 ,726,726,726 ,0,0,0}, - {36497,36494,37135 ,726,726,726 ,0,0,0}, {37134,37135,36494 ,727,726,726 ,0,0,0}, - {37136,36497,37137 ,727,726,726 ,0,0,0}, {36497,37135,37137 ,726,726,726 ,0,0,0}, - {36467,36497,37138 ,20124,726,727 ,0,0,0}, {36497,37136,37138 ,726,727,727 ,0,0,0}, - {36468,35605,37080 ,1793,726,1792 ,0,0,0}, {35137,36769,36766 ,726,726,20124 ,0,0,0}, - {35574,37139,36759 ,726,726,726 ,0,0,0}, {37139,35572,35570 ,726,726,726 ,0,0,0}, - {35574,35572,37139 ,726,726,726 ,0,0,0}, {35577,35751,36199 ,20124,726,20124 ,0,0,0}, - {37139,35570,36199 ,726,726,20124 ,0,0,0}, {35564,36199,35565 ,726,20124,20124 ,0,0,0}, - {36199,35568,35565 ,20124,726,20124 ,0,0,0}, {36199,35576,35577 ,20124,726,20124 ,0,0,0}, - {36199,35564,35562 ,20124,726,726 ,0,0,0}, {36199,35561,35576 ,20124,727,726 ,0,0,0}, - {35586,35758,35583 ,726,726,20124 ,0,0,0}, {35756,35583,35758 ,726,20124,726 ,0,0,0}, - {35588,37064,35761 ,726,726,726 ,0,0,0}, {35760,35758,35586 ,726,726,726 ,0,0,0}, - {35588,35761,35760 ,726,726,726 ,0,0,0}, {36769,36770,37064 ,726,20124,726 ,0,0,0}, - {36769,35137,35139 ,726,726,20124 ,0,0,0}, {37065,35132,36766 ,20124,726,20124 ,0,0,0}, - {35183,35136,36768 ,20124,726,20124 ,0,0,0}, {36767,35136,37065 ,726,726,20124 ,0,0,0}, - {35183,36763,35184 ,20124,726,20124 ,0,0,0}, {36763,35183,36768 ,726,20124,20124 ,0,0,0}, - {36762,35187,35184 ,20124,726,20124 ,0,0,0}, {36765,35188,35187 ,20124,726,726 ,0,0,0}, - {36762,36764,35187 ,20124,726,726 ,0,0,0}, {36761,36204,35190 ,726,726,726 ,0,0,0}, - {36765,36761,35188 ,20124,726,726 ,0,0,0}, {35193,36203,35194 ,20124,726,20124 ,0,0,0}, - {35190,36204,35193 ,726,726,20124 ,0,0,0}, {35196,36760,35575 ,726,726,727 ,0,0,0}, - {35194,36203,36760 ,20124,726,726 ,0,0,0}, {36213,35394,35544 ,726,726,727 ,0,0,0}, - {35393,35544,35394 ,726,727,726 ,0,0,0}, {35337,35339,37140 ,726,727,727 ,0,0,0}, - {35540,36213,35542 ,727,726,727 ,0,0,0}, {36213,35544,35542 ,726,727,727 ,0,0,0}, - {36213,35540,35538 ,726,727,727 ,0,0,0}, {36213,35535,36833 ,726,726,726 ,0,0,0}, - {36833,35532,35531 ,726,726,727 ,0,0,0}, {35534,35532,36833 ,726,726,726 ,0,0,0}, - {35547,36833,35546 ,726,726,726 ,0,0,0}, {36753,35558,35345 ,726,726,726 ,0,0,0}, - {35550,35552,36833 ,726,726,726 ,0,0,0}, {35550,36833,35547 ,726,726,726 ,0,0,0}, - {35558,36753,36834 ,726,726,727 ,0,0,0}, {35552,36756,36833 ,726,727,726 ,0,0,0}, - {35558,36834,35556 ,726,727,727 ,0,0,0}, {35553,35556,36756 ,726,727,727 ,0,0,0}, - {35558,36275,35345 ,726,727,726 ,0,0,0}, {36831,35343,35349 ,726,726,727 ,0,0,0}, - {36314,35341,36832 ,726,726,726 ,0,0,0}, {37140,35339,36314 ,727,727,726 ,0,0,0}, - {37141,36754,35337 ,726,726,726 ,0,0,0}, {37141,35337,37140 ,726,726,727 ,0,0,0}, - {36829,35332,36754 ,726,726,726 ,0,0,0}, {36830,35383,35336 ,727,726,20124 ,0,0,0}, - {36829,35336,35332 ,726,20124,726 ,0,0,0}, {35383,37142,36755 ,726,726,726 ,0,0,0}, - {36830,37142,35383 ,727,726,726 ,0,0,0}, {36755,36827,35384 ,726,727,726 ,0,0,0}, - {35387,36828,35388 ,1793,727,726 ,0,0,0}, {35384,36827,35387 ,726,727,1793 ,0,0,0}, - {35390,36826,35545 ,1793,20124,726 ,0,0,0}, {35388,36828,36826 ,726,727,20124 ,0,0,0}, - {35616,36796,35613 ,727,726,726 ,0,0,0}, {37121,36855,35500 ,1793,1792,1793 ,0,0,0}, - {35612,36836,37143 ,726,727,20124 ,0,0,0}, {35510,36816,36835 ,1793,1793,727 ,0,0,0}, - {35510,36835,35511 ,1793,727,727 ,0,0,0}, {36466,35517,35516 ,1793,726,726 ,0,0,0}, - {35513,36815,35516 ,727,1792,726 ,0,0,0}, {35506,36859,36816 ,1792,726,1793 ,0,0,0}, - {35505,36858,36347 ,1793,726,727 ,0,0,0}, {36857,35502,36855 ,1792,1793,1792 ,0,0,0}, - {35500,35499,37121 ,1793,1793,1793 ,0,0,0}, {35496,37122,36479 ,1793,727,726 ,0,0,0}, - {35493,37123,35494 ,726,1793,726 ,0,0,0}, {36507,35488,37144 ,726,726,1793 ,0,0,0}, - {35487,37124,37144 ,1793,727,1793 ,0,0,0}, {37144,35488,35487 ,1793,726,1793 ,0,0,0}, - {36847,37124,35484 ,726,727,726 ,0,0,0}, {36797,37117,37145 ,727,726,726 ,0,0,0}, - {37117,37125,37145 ,726,726,726 ,0,0,0}, {35483,36847,35484 ,726,726,726 ,0,0,0}, - {36844,35432,36801 ,726,726,727 ,0,0,0}, {35436,35432,36844 ,20124,726,726 ,0,0,0}, - {35439,35441,37146 ,727,726,20124 ,0,0,0}, {36843,35439,37146 ,20124,727,20124 ,0,0,0}, - {35307,35306,35462 ,726,726,727 ,0,0,0}, {35441,36804,37146 ,726,727,20124 ,0,0,0}, - {35444,37147,36842 ,726,726,726 ,0,0,0}, {35445,35444,36842 ,726,726,726 ,0,0,0}, - {37147,35450,36805 ,726,727,726 ,0,0,0}, {35450,37147,35444 ,727,726,726 ,0,0,0}, - {36839,36840,35455 ,727,726,726 ,0,0,0}, {36839,35457,36841 ,727,727,727 ,0,0,0}, - {35457,36839,35455 ,727,727,726 ,0,0,0}, {35468,35310,35469 ,726,726,726 ,0,0,0}, - {35231,35459,35306 ,20124,726,726 ,0,0,0}, {35319,35476,35463 ,726,20124,726 ,0,0,0}, - {35467,35472,35313 ,727,20124,726 ,0,0,0}, {35468,35467,35311 ,726,727,726 ,0,0,0}, - {35476,35319,35317 ,20124,726,726 ,0,0,0}, {35472,35474,35316 ,20124,727,726 ,0,0,0}, - {35476,35317,35474 ,20124,726,727 ,0,0,0}, {35463,35480,35322 ,726,726,726 ,0,0,0}, - {35480,35479,35323 ,726,726,20124 ,0,0,0}, {37128,37148,37149 ,726,727,726 ,0,0,0}, - {37127,35305,36837 ,726,726,726 ,0,0,0}, {36802,35635,36511 ,726,727,726 ,0,0,0}, - {37150,37151,37152 ,20124,20124,726 ,0,0,0}, {35481,37153,35328 ,727,727,727 ,0,0,0}, - {37154,37155,37156 ,727,727,727 ,0,0,0}, {37157,35636,37158 ,726,726,20124 ,0,0,0}, - {35622,35621,37159 ,726,727,726 ,0,0,0}, {37160,37161,37162 ,726,727,726 ,0,0,0}, - {37163,37164,37165 ,726,20124,727 ,0,0,0}, {35624,37166,35625 ,726,726,20124 ,0,0,0}, - {37167,37168,37169 ,727,727,726 ,0,0,0}, {37170,37171,37172 ,727,726,726 ,0,0,0}, - {36509,36630,35630 ,20124,726,726 ,0,0,0}, {36511,37173,36802 ,726,20124,726 ,0,0,0}, - {35634,36511,35635 ,726,726,727 ,0,0,0}, {36472,36519,36473 ,726,726,726 ,0,0,0}, - {37174,36628,37170 ,727,726,727 ,0,0,0}, {36627,36519,36518 ,20124,726,727 ,0,0,0}, - {37149,37148,37174 ,726,727,727 ,0,0,0}, {37148,36628,37174 ,727,726,727 ,0,0,0}, - {37126,37148,37128 ,726,727,726 ,0,0,0}, {36797,35618,37117 ,727,726,726 ,0,0,0}, - {36836,35613,36796 ,727,726,726 ,0,0,0}, {37143,36851,35610 ,20124,20124,726 ,0,0,0}, - {35610,35612,37143 ,726,726,20124 ,0,0,0}, {36850,35606,35607 ,727,726,726 ,0,0,0}, - {36851,35607,35610 ,20124,726,726 ,0,0,0}, {36854,35591,36850 ,726,727,727 ,0,0,0}, - {35606,36850,35591 ,726,727,727 ,0,0,0}, {35592,36854,36856 ,726,726,727 ,0,0,0}, - {35600,35598,36853 ,727,727,727 ,0,0,0}, {35594,35592,36856 ,726,726,727 ,0,0,0}, - {36467,36468,37175 ,20124,1793,727 ,0,0,0}, {37079,37080,35604 ,726,1792,727 ,0,0,0}, - {36469,36497,36467 ,726,726,20124 ,0,0,0}, {36467,37175,36469 ,20124,727,726 ,0,0,0}, - {35711,36498,36469 ,726,726,726 ,0,0,0}, {36470,36469,37175 ,726,726,727 ,0,0,0}, - {36469,35709,35711 ,726,1793,726 ,0,0,0}, {37176,36469,36471 ,1792,726,1793 ,0,0,0}, - {37177,37178,36469 ,1792,726,726 ,0,0,0}, {37176,37177,36469 ,1792,1792,726 ,0,0,0}, - {37179,37074,36469 ,727,1793,726 ,0,0,0}, {36469,35705,35706 ,726,1793,727 ,0,0,0}, - {35703,36469,35700 ,1793,726,726 ,0,0,0}, {36469,35683,35699 ,726,727,1792 ,0,0,0}, - {37075,37076,36469 ,1793,1793,726 ,0,0,0}, {37180,36848,36469 ,727,726,726 ,0,0,0}, - {36469,37077,37180 ,726,1793,727 ,0,0,0}, {35684,36469,36849 ,1793,726,726 ,0,0,0}, - {35684,35683,36469 ,1793,727,726 ,0,0,0}, {36848,37181,36849 ,726,1793,726 ,0,0,0}, - {36341,36849,37182 ,726,726,726 ,0,0,0}, {37181,37182,36849 ,1793,726,726 ,0,0,0}, - {37183,36341,37184 ,727,726,1792 ,0,0,0}, {36341,37182,37184 ,726,726,1792 ,0,0,0}, - {35528,36341,37185 ,1793,726,1793 ,0,0,0}, {36341,37183,37185 ,726,727,1793 ,0,0,0}, - {35643,35646,37186 ,20124,726,727 ,0,0,0}, {36207,35302,35300 ,726,20124,20124 ,0,0,0}, - {35643,37186,37187 ,20124,727,726 ,0,0,0}, {35310,35468,35311 ,726,726,726 ,0,0,0}, - {35316,35313,35472 ,726,726,20124 ,0,0,0}, {35317,35316,35474 ,726,726,727 ,0,0,0}, - {35311,35467,35313 ,726,727,726 ,0,0,0}, {35469,35310,35307 ,726,726,726 ,0,0,0}, - {35231,35457,35459 ,20124,727,726 ,0,0,0}, {37127,35231,35305 ,726,20124,726 ,0,0,0}, - {36837,35302,36207 ,726,20124,726 ,0,0,0}, {35300,35299,36208 ,20124,726,20124 ,0,0,0}, - {35296,36631,37101 ,726,726,726 ,0,0,0}, {35293,36632,35294 ,20124,726,20124 ,0,0,0}, - {35288,36788,35290 ,726,726,726 ,0,0,0}, {35290,36633,35293 ,726,20124,20124 ,0,0,0}, - {37188,35288,35287 ,726,726,726 ,0,0,0}, {35288,37188,36788 ,726,726,726 ,0,0,0}, - {36789,35284,37189 ,726,20124,726 ,0,0,0}, {37188,35287,36789 ,726,726,726 ,0,0,0}, - {35250,36663,35244 ,726,726,726 ,0,0,0}, {35283,36787,37189 ,20124,20124,726 ,0,0,0}, - {37189,35284,35283 ,726,20124,20124 ,0,0,0}, {37190,36787,35236 ,727,20124,726 ,0,0,0}, - {37190,35232,36747 ,727,726,726 ,0,0,0}, {35232,37190,35236 ,726,727,726 ,0,0,0}, - {36785,36612,35245 ,726,20124,726 ,0,0,0}, {35239,35241,36786 ,20124,726,726 ,0,0,0}, - {35237,35239,36748 ,726,20124,727 ,0,0,0}, {36612,36637,35249 ,20124,727,726 ,0,0,0}, - {36786,35241,36638 ,726,726,726 ,0,0,0}, {35243,35249,36637 ,726,726,727 ,0,0,0}, - {35245,35244,36785 ,726,726,726 ,0,0,0}, {36664,35250,35253 ,726,726,20124 ,0,0,0}, - {36745,36784,35255 ,727,726,726 ,0,0,0}, {35257,36742,35255 ,726,727,726 ,0,0,0}, - {37090,35259,37191 ,20124,20124,20124 ,0,0,0}, {35259,37090,35257 ,20124,20124,726 ,0,0,0}, - {37191,35262,35269 ,20124,726,727 ,0,0,0}, {35259,35262,37191 ,20124,726,20124 ,0,0,0}, - {35279,35281,36653 ,20124,20124,726 ,0,0,0}, {35268,37192,35269 ,20124,726,727 ,0,0,0}, - {37191,35269,37192 ,20124,727,726 ,0,0,0}, {35268,35267,37092 ,20124,727,20124 ,0,0,0}, - {37092,37192,35268 ,20124,726,20124 ,0,0,0}, {35280,35279,36653 ,726,20124,726 ,0,0,0}, - {35272,37092,35267 ,20124,20124,727 ,0,0,0}, {36654,35274,35276 ,20124,727,726 ,0,0,0}, - {35272,35274,36654 ,20124,727,20124 ,0,0,0}, {35276,35263,36653 ,726,726,726 ,0,0,0}, - {35263,35280,36653 ,726,726,726 ,0,0,0}, {37110,37088,37094 ,727,726,726 ,0,0,0}, - {36653,36659,37084 ,726,20124,20124 ,0,0,0}, {36645,37085,37193 ,726,20124,726 ,0,0,0}, - {37194,35651,36645 ,20124,726,726 ,0,0,0}, {36645,37193,37194 ,726,726,20124 ,0,0,0}, - {35652,37194,37195 ,726,20124,726 ,0,0,0}, {37194,35652,35651 ,20124,726,726 ,0,0,0}, - {35665,37110,37094 ,726,727,726 ,0,0,0}, {36791,37196,35654 ,726,726,726 ,0,0,0}, - {37195,36791,35652 ,726,726,726 ,0,0,0}, {37103,35655,37196 ,726,726,726 ,0,0,0}, - {35654,37196,35655 ,726,726,726 ,0,0,0}, {35665,37107,37109 ,726,726,20124 ,0,0,0}, - {35658,35655,37103 ,726,726,726 ,0,0,0}, {37104,37105,35660 ,726,726,20124 ,0,0,0}, - {35660,35658,37104 ,20124,726,726 ,0,0,0}, {35664,35662,37106 ,727,726,726 ,0,0,0}, - {37107,35664,37106 ,726,727,726 ,0,0,0}, {37110,37089,37088 ,727,726,726 ,0,0,0}, - {37186,35646,37091 ,727,726,726 ,0,0,0}, {37187,36846,35642 ,726,727,20124 ,0,0,0}, - {35642,35643,37187 ,20124,20124,726 ,0,0,0}, {37158,35640,36846 ,20124,20124,727 ,0,0,0}, - {35636,35637,37158 ,726,20124,20124 ,0,0,0}, {37158,35637,35640 ,20124,20124,20124 ,0,0,0}, - {35636,37157,35621 ,726,726,727 ,0,0,0}, {35622,37159,37166 ,726,726,726 ,0,0,0}, - {35621,37157,37159 ,727,726,726 ,0,0,0}, {36629,35625,37166 ,726,20124,726 ,0,0,0}, - {35624,35622,37166 ,726,726,726 ,0,0,0}, {36509,35628,36629 ,20124,726,726 ,0,0,0}, - {36630,36510,35632 ,726,726,726 ,0,0,0}, {36802,37173,36474 ,726,20124,726 ,0,0,0}, - {36519,36472,36520 ,726,726,726 ,0,0,0}, {36474,36473,36802 ,726,726,726 ,0,0,0}, - {36518,37171,36627 ,727,726,20124 ,0,0,0}, {36628,37171,37170 ,726,726,727 ,0,0,0}, - {36628,36627,37171 ,726,20124,726 ,0,0,0}, {37172,37197,37170 ,726,726,727 ,0,0,0}, - {37167,37197,37168 ,727,726,727 ,0,0,0}, {37172,37168,37197 ,726,727,726 ,0,0,0}, - {37167,37169,37198 ,727,726,727 ,0,0,0}, {37163,37165,37198 ,726,727,727 ,0,0,0}, - {37198,37169,37163 ,727,726,726 ,0,0,0}, {37161,37165,37164 ,727,727,20124 ,0,0,0}, - {37199,37160,37162 ,726,726,726 ,0,0,0}, {37162,37161,37164 ,726,727,20124 ,0,0,0}, - {37155,37199,37156 ,727,726,727 ,0,0,0}, {37199,37155,37160 ,726,727,726 ,0,0,0}, - {37156,37150,37154 ,727,20124,727 ,0,0,0}, {37152,37151,37153 ,726,20124,727 ,0,0,0}, - {37154,37150,37152 ,727,20124,726 ,0,0,0}, {35328,37153,37151 ,727,727,20124 ,0,0,0}, - {36738,37200,35127 ,20124,20124,726 ,0,0,0}, {37201,36738,37202 ,727,20124,726 ,0,0,0}, - {36738,35127,37202 ,20124,726,726 ,0,0,0}, {37203,36738,37204 ,726,20124,727 ,0,0,0}, - {36738,37201,37204 ,20124,727,727 ,0,0,0}, {36738,37205,36740 ,20124,726,726 ,0,0,0}, - {36738,37203,37205 ,20124,726,726 ,0,0,0}, {36676,37206,37207 ,20124,726,727 ,0,0,0}, - {36741,37206,36676 ,20124,726,20124 ,0,0,0}, {37200,35111,35109 ,20124,726,726 ,0,0,0}, - {37207,35119,36676 ,727,727,20124 ,0,0,0}, {35115,36677,35119 ,727,20124,727 ,0,0,0}, - {36676,35119,36677 ,20124,727,20124 ,0,0,0}, {35112,36677,35118 ,726,20124,726 ,0,0,0}, - {36677,35115,35118 ,20124,727,726 ,0,0,0}, {37200,36677,35111 ,20124,20124,726 ,0,0,0}, - {36677,35112,35111 ,20124,726,726 ,0,0,0}, {35121,37200,35108 ,726,20124,20124 ,0,0,0}, - {37200,35109,35108 ,20124,726,20124 ,0,0,0}, {35126,37200,35124 ,726,20124,726 ,0,0,0}, - {37200,35121,35124 ,20124,726,726 ,0,0,0}, {35127,37200,35126 ,726,20124,726 ,0,0,0}, - {36306,35097,35093 ,727,726,20124 ,0,0,0}, {36288,37208,36292 ,727,20124,727 ,0,0,0}, - {36292,37209,37210 ,727,726,726 ,0,0,0}, {37208,37209,36292 ,20124,726,727 ,0,0,0}, - {36293,36292,37211 ,727,727,20124 ,0,0,0}, {37210,37211,36292 ,726,20124,727 ,0,0,0}, - {37212,36293,37213 ,20124,727,726 ,0,0,0}, {36293,37211,37213 ,727,20124,726 ,0,0,0}, - {37214,36293,37215 ,20124,727,20124 ,0,0,0}, {36293,37212,37215 ,727,20124,20124 ,0,0,0}, - {36306,36293,37214 ,727,727,20124 ,0,0,0}, {36306,35090,35089 ,727,726,726 ,0,0,0}, - {36306,37214,35097 ,727,20124,726 ,0,0,0}, {36306,35096,35090 ,727,726,726 ,0,0,0}, - {36306,35093,35096 ,727,20124,726 ,0,0,0}, {36289,36306,35087 ,727,727,20124 ,0,0,0}, - {35089,35087,36306 ,726,20124,727 ,0,0,0}, {35099,36289,35086 ,726,727,727 ,0,0,0}, - {36289,35087,35086 ,727,20124,727 ,0,0,0}, {35104,36289,35102 ,727,727,726 ,0,0,0}, - {36289,35099,35102 ,727,726,726 ,0,0,0}, {35105,36289,35104 ,727,727,727 ,0,0,0}, - {35080,35082,37216 ,726,727,726 ,0,0,0}, {37217,37218,37219 ,726,727,20124 ,0,0,0}, - {37220,36300,37221 ,727,20124,726 ,0,0,0}, {36300,37220,36301 ,20124,727,726 ,0,0,0}, - {37220,36313,36289 ,727,726,727 ,0,0,0}, {37221,36313,37220 ,726,726,727 ,0,0,0}, - {36289,36312,36306 ,727,20124,727 ,0,0,0}, {36307,36309,36308 ,726,20124,726 ,0,0,0}, - {36310,36304,36308 ,20124,727,726 ,0,0,0}, {36295,36304,35075 ,727,727,726 ,0,0,0}, - {35071,36295,35075 ,20124,727,726 ,0,0,0}, {34302,35067,35065 ,727,726,20124 ,0,0,0}, - {35074,36294,35071 ,726,727,20124 ,0,0,0}, {37222,34296,36303 ,726,726,726 ,0,0,0}, - {37223,36883,36885 ,726,726,726 ,0,0,0}, {37224,35065,35064 ,727,20124,727 ,0,0,0}, - {36898,34915,37225 ,726,726,726 ,0,0,0}, {37226,36904,37227 ,726,726,20124 ,0,0,0}, - {35080,37216,35077 ,726,726,726 ,0,0,0}, {36905,35077,37216 ,726,726,726 ,0,0,0}, - {37216,35082,36311 ,726,727,727 ,0,0,0}, {35083,36311,35082 ,727,727,727 ,0,0,0}, - {35052,36454,37046 ,20148,20167,20130 ,0,0,0}, {36931,36930,36460 ,727,20148,1792 ,0,0,0}, - {36931,36460,36459 ,727,1792,20124 ,0,0,0}, {37047,36930,36929 ,1793,20148,727 ,0,0,0}, - {36428,36927,36926 ,20140,1792,20148 ,0,0,0}, {36430,36429,37047 ,1793,726,1793 ,0,0,0}, - {36428,36926,36429 ,20140,20148,726 ,0,0,0}, {37042,35053,35790 ,1793,20140,20147 ,0,0,0}, - {35790,35787,37042 ,20147,20167,1793 ,0,0,0}, {35053,36456,36450 ,20140,20147,20140 ,0,0,0}, - {35053,35049,36456 ,20140,1793,20147 ,0,0,0}, {35049,35052,37046 ,1793,20148,20130 ,0,0,0}, - {35049,37046,36457 ,1793,20130,726 ,0,0,0}, {35052,35046,36454 ,20148,1792,20167 ,0,0,0}, - {36455,35045,35043 ,727,726,1793 ,0,0,0}, {35046,35045,36455 ,1792,726,727 ,0,0,0}, - {35043,35042,36461 ,1793,20130,726 ,0,0,0}, {36462,36461,35055 ,20167,726,1792 ,0,0,0}, - {35042,35055,36461 ,20130,1792,726 ,0,0,0}, {36462,35058,36449 ,20167,20140,20140 ,0,0,0}, - {35061,36449,35060 ,726,20140,20130 ,0,0,0}, {36449,35058,35060 ,20140,20140,20130 ,0,0,0}, - {36528,35036,35038 ,727,726,727 ,0,0,0}, {36526,36619,35027 ,727,727,20124 ,0,0,0}, - {37228,36623,37229 ,20124,727,727 ,0,0,0}, {36623,35039,37229 ,727,727,727 ,0,0,0}, - {36623,37228,36624 ,727,20124,726 ,0,0,0}, {36526,35027,35030 ,727,20124,726 ,0,0,0}, - {36619,36623,37230 ,727,727,20124 ,0,0,0}, {36625,37230,36623 ,726,20124,727 ,0,0,0}, - {37231,36619,37232 ,20124,727,726 ,0,0,0}, {36619,37230,37232 ,727,20124,726 ,0,0,0}, - {37233,36619,37234 ,20124,727,20124 ,0,0,0}, {36619,37231,37234 ,727,20124,20124 ,0,0,0}, - {36619,35031,35027 ,727,726,20124 ,0,0,0}, {36619,37233,35031 ,727,20124,726 ,0,0,0}, - {36526,35024,35023 ,727,726,726 ,0,0,0}, {35030,35024,36526 ,726,726,727 ,0,0,0}, - {36528,36526,35021 ,727,727,20124 ,0,0,0}, {35023,35021,36526 ,726,20124,727 ,0,0,0}, - {35033,36528,35020 ,726,727,727 ,0,0,0}, {36528,35021,35020 ,727,20124,727 ,0,0,0}, - {35038,35039,36623 ,727,727,727 ,0,0,0}, {36528,35033,35036 ,727,726,726 ,0,0,0}, - {36623,36528,35038 ,727,727,727 ,0,0,0}, {37235,35017,36617 ,727,727,726 ,0,0,0}, - {37236,37237,36593 ,726,726,20124 ,0,0,0}, {37238,37239,37240 ,726,727,20124 ,0,0,0}, - {37240,34358,37241 ,20124,727,726 ,0,0,0}, {34614,37242,37243 ,20124,20124,726 ,0,0,0}, - {36562,36969,34622 ,727,726,726 ,0,0,0}, {34686,34684,34352 ,20124,20124,726 ,0,0,0}, - {37242,34614,34613 ,20124,20124,20124 ,0,0,0}, {36591,36622,36620 ,20124,20124,727 ,0,0,0}, - {36614,36608,36620 ,20124,726,727 ,0,0,0}, {35005,36608,35009 ,20124,726,726 ,0,0,0}, - {36623,34999,34998 ,727,20124,727 ,0,0,0}, {35008,36609,35005 ,726,727,20124 ,0,0,0}, - {36621,35002,35001 ,727,726,726 ,0,0,0}, {35008,35002,36621 ,726,726,727 ,0,0,0}, - {36621,35001,36619 ,727,726,727 ,0,0,0}, {36619,34999,36623 ,727,20124,727 ,0,0,0}, - {35011,35014,36618 ,726,726,726 ,0,0,0}, {36623,34998,36618 ,727,727,726 ,0,0,0}, - {35016,37235,35014 ,727,727,726 ,0,0,0}, {36618,35014,37235 ,726,726,727 ,0,0,0}, - {35017,37235,35016 ,727,727,727 ,0,0,0}, {36449,34986,34980 ,20140,20130,1793 ,0,0,0}, - {36448,37244,37245 ,20140,1792,20167 ,0,0,0}, {37246,36352,37247 ,20140,1792,727 ,0,0,0}, - {36352,34995,37247 ,1792,20130,727 ,0,0,0}, {37244,36352,37248 ,1792,1792,20140 ,0,0,0}, - {36352,37246,37248 ,1792,20140,20140 ,0,0,0}, {36448,36352,37244 ,20140,1792,1792 ,0,0,0}, - {37249,36448,37250 ,1792,20140,1793 ,0,0,0}, {36448,37245,37250 ,20140,20167,1793 ,0,0,0}, - {36448,37249,36464 ,20140,1792,20148 ,0,0,0}, {36463,34987,36448 ,1793,20140,20140 ,0,0,0}, - {34983,36449,34987 ,1793,20140,20140 ,0,0,0}, {36448,34987,36449 ,20140,20140,20140 ,0,0,0}, - {36449,34983,34986 ,20140,1793,20130 ,0,0,0}, {34976,36443,36449 ,20167,1792,20140 ,0,0,0}, - {34977,36449,34979 ,20167,20140,726 ,0,0,0}, {36449,34980,34979 ,20140,1793,726 ,0,0,0}, - {36449,34977,34976 ,20140,20167,20167 ,0,0,0}, {34992,36443,34989 ,726,1792,726 ,0,0,0}, - {36443,34976,34989 ,1792,20167,726 ,0,0,0}, {34995,36443,34994 ,20130,1792,727 ,0,0,0}, - {36443,34992,34994 ,1792,726,727 ,0,0,0}, {34955,37251,37252 ,728,726,726 ,0,0,0}, - {34964,36681,37200 ,726,20124,20124 ,0,0,0}, {36733,36680,36679 ,726,726,726 ,0,0,0}, - {36733,36679,36720 ,726,726,726 ,0,0,0}, {36680,36737,36678 ,726,726,729 ,0,0,0}, - {37253,37254,36735 ,726,726,726 ,0,0,0}, {37253,36735,36736 ,726,726,728 ,0,0,0}, - {37255,37254,37256 ,20124,726,726 ,0,0,0}, {37254,37255,36735 ,726,20124,726 ,0,0,0}, - {36738,37256,36739 ,20124,726,726 ,0,0,0}, {37255,37256,36738 ,20124,726,20124 ,0,0,0}, - {36738,34965,37200 ,20124,726,20124 ,0,0,0}, {34961,34964,37200 ,726,726,20124 ,0,0,0}, - {34965,34961,37200 ,726,726,20124 ,0,0,0}, {37252,34958,34957 ,726,729,726 ,0,0,0}, - {34958,37252,36681 ,729,726,20124 ,0,0,0}, {34955,34954,37251 ,728,726,726 ,0,0,0}, - {34957,34955,37252 ,726,728,726 ,0,0,0}, {36732,37251,34967 ,726,726,726 ,0,0,0}, - {34954,34967,37251 ,726,726,726 ,0,0,0}, {36732,34970,36713 ,726,726,726 ,0,0,0}, - {34535,36724,36731 ,726,726,726 ,0,0,0}, {36713,34970,34972 ,726,726,726 ,0,0,0}, - {34148,35963,35938 ,726,726,726 ,0,0,0}, {34936,34934,36114 ,727,727,727 ,0,0,0}, - {34144,35966,35964 ,20124,726,726 ,0,0,0}, {36122,34927,36125 ,727,726,726 ,0,0,0}, - {34926,34924,36126 ,20124,20124,727 ,0,0,0}, {34939,34940,36876 ,726,726,727 ,0,0,0}, - {36219,35943,36221 ,20124,726,20124 ,0,0,0}, {36876,36249,34939 ,727,726,726 ,0,0,0}, - {36128,34924,36270 ,726,20124,20124 ,0,0,0}, {36131,36270,36230 ,726,20124,726 ,0,0,0}, - {34943,34142,36876 ,726,726,727 ,0,0,0}, {34140,34139,34949 ,20124,726,726 ,0,0,0}, - {34142,34943,34945 ,726,726,20124 ,0,0,0}, {34125,34838,34835 ,726,20124,20124 ,0,0,0}, - {34144,37257,37258 ,20124,726,726 ,0,0,0}, {34145,35964,35963 ,20124,726,726 ,0,0,0}, - {34144,35969,35966 ,20124,20124,726 ,0,0,0}, {35972,35970,36259 ,726,726,726 ,0,0,0}, - {35969,37258,36259 ,20124,726,726 ,0,0,0}, {37259,36224,36260 ,20124,727,726 ,0,0,0}, - {36225,37260,36226 ,727,726,727 ,0,0,0}, {37259,36225,36224 ,20124,727,727 ,0,0,0}, - {34044,37261,36253 ,726,726,727 ,0,0,0}, {34900,34058,34902 ,727,726,726 ,0,0,0}, - {34907,36267,36164 ,726,726,726 ,0,0,0}, {34902,36266,34904 ,726,726,727 ,0,0,0}, - {36158,37262,37263 ,726,727,727 ,0,0,0}, {36222,36156,37263 ,727,727,727 ,0,0,0}, - {36152,36153,36265 ,20124,727,727 ,0,0,0}, {36147,34047,36146 ,727,727,726 ,0,0,0}, - {36265,34050,36150 ,727,727,726 ,0,0,0}, {34061,37264,36906 ,726,20124,726 ,0,0,0}, - {35976,35975,36268 ,726,20124,726 ,0,0,0}, {36272,36273,34912 ,20124,727,726 ,0,0,0}, - {36269,37265,34041 ,727,727,726 ,0,0,0}, {36159,37262,36158 ,726,727,726 ,0,0,0}, - {34897,34896,34055 ,726,20124,727 ,0,0,0}, {34893,34056,34894 ,20124,727,20124 ,0,0,0}, - {35980,37266,37267 ,726,20124,20124 ,0,0,0}, {34060,36274,34061 ,726,727,726 ,0,0,0}, - {34914,36897,36272 ,20124,726,20124 ,0,0,0}, {34299,36900,35068 ,726,727,726 ,0,0,0}, - {37225,34918,37268 ,726,726,727 ,0,0,0}, {36898,34914,34915 ,726,20124,726 ,0,0,0}, - {34920,37269,37268 ,726,726,727 ,0,0,0}, {34920,37268,34918 ,726,727,726 ,0,0,0}, - {37270,37271,34307 ,726,727,20124 ,0,0,0}, {37269,36302,37268 ,726,726,727 ,0,0,0}, - {34293,34296,37222 ,20124,726,726 ,0,0,0}, {37272,37273,37274 ,726,726,726 ,0,0,0}, - {37275,37276,37218 ,726,726,727 ,0,0,0}, {36905,37227,36904 ,726,20124,726 ,0,0,0}, - {37277,37278,37279 ,727,727,726 ,0,0,0}, {36900,34299,37280 ,727,726,727 ,0,0,0}, - {36908,37277,37281 ,726,727,727 ,0,0,0}, {37277,36908,37278 ,727,726,727 ,0,0,0}, - {36907,36271,36172 ,727,727,727 ,0,0,0}, {37281,36907,36908 ,727,727,726 ,0,0,0}, - {36271,36909,36170 ,727,727,727 ,0,0,0}, {36168,36910,36165 ,727,727,726 ,0,0,0}, - {36170,36909,36168 ,727,727,727 ,0,0,0}, {34907,36165,36910 ,726,726,727 ,0,0,0}, - {37282,34889,37283 ,20124,726,726 ,0,0,0}, {36889,36290,34313 ,726,726,726 ,0,0,0}, - {36896,37283,36894 ,726,726,726 ,0,0,0}, {34858,36234,34856 ,726,20124,20124 ,0,0,0}, - {34881,34883,34212 ,726,726,20124 ,0,0,0}, {34862,36233,34864 ,726,20124,726 ,0,0,0}, - {34878,34881,34212 ,727,726,20124 ,0,0,0}, {34862,34861,36882 ,726,726,20124 ,0,0,0}, - {34226,37284,37285 ,20124,726,727 ,0,0,0}, {37286,37287,37288 ,726,20124,20124 ,0,0,0}, - {36874,37289,36875 ,726,20124,20124 ,0,0,0}, {36873,36296,36298 ,20124,726,20124 ,0,0,0}, - {36888,37290,34218 ,726,726,20124 ,0,0,0}, {36890,34214,34207 ,20124,726,727 ,0,0,0}, - {37282,37291,34889 ,20124,20124,726 ,0,0,0}, {36896,37282,37283 ,726,20124,726 ,0,0,0}, - {36895,36894,37292 ,726,726,726 ,0,0,0}, {37292,36901,37293 ,726,727,20124 ,0,0,0}, - {37293,36895,37292 ,20124,726,726 ,0,0,0}, {37276,36903,36902 ,726,726,726 ,0,0,0}, - {36901,36903,37293 ,727,726,20124 ,0,0,0}, {37219,37272,37274 ,20124,726,726 ,0,0,0}, - {37276,37275,36903 ,726,726,726 ,0,0,0}, {37272,37294,37273 ,726,20124,726 ,0,0,0}, - {34310,37273,37295 ,726,726,727 ,0,0,0}, {37273,37294,37295 ,726,20124,727 ,0,0,0}, - {37274,37217,37219 ,726,726,20124 ,0,0,0}, {34293,37296,34294 ,20124,20124,20124 ,0,0,0}, - {37275,37226,37227 ,726,726,20124 ,0,0,0}, {34293,37222,37297 ,20124,726,726 ,0,0,0}, - {37298,34308,34307 ,726,726,20124 ,0,0,0}, {37223,36898,36883 ,726,726,726 ,0,0,0}, - {34312,34872,34870 ,726,726,20124 ,0,0,0}, {36279,34130,37299 ,20124,20124,726 ,0,0,0}, - {35955,35959,34229 ,726,20124,726 ,0,0,0}, {36137,36229,36280 ,20124,20124,727 ,0,0,0}, - {37300,36281,34134 ,726,20124,727 ,0,0,0}, {36278,37301,34131 ,726,20124,726 ,0,0,0}, - {36878,37299,34123 ,726,726,726 ,0,0,0}, {36243,34831,34846 ,727,726,727 ,0,0,0}, - {36286,34846,34847 ,20124,727,727 ,0,0,0}, {36285,34847,34850 ,20124,727,726 ,0,0,0}, - {36237,34852,36236 ,726,726,727 ,0,0,0}, {34853,34856,36235 ,20124,20124,20124 ,0,0,0}, - {37286,37288,37302 ,726,20124,726 ,0,0,0}, {37303,34858,37288 ,727,726,20124 ,0,0,0}, - {37288,34858,37302 ,20124,726,726 ,0,0,0}, {37303,37304,36234 ,727,726,20124 ,0,0,0}, - {37287,37284,34226 ,20124,726,20124 ,0,0,0}, {37284,37287,37286 ,726,20124,726 ,0,0,0}, - {36234,34858,37303 ,20124,726,727 ,0,0,0}, {34883,34884,34209 ,726,20124,726 ,0,0,0}, - {34887,34210,34884 ,20124,726,20124 ,0,0,0}, {37305,37306,34223 ,726,726,727 ,0,0,0}, - {37307,34224,37308 ,20124,726,727 ,0,0,0}, {35959,35958,34232 ,20124,727,726 ,0,0,0}, - {35958,37309,37310 ,727,726,726 ,0,0,0}, {34228,35949,34229 ,726,726,726 ,0,0,0}, - {35950,35949,34228 ,20124,726,726 ,0,0,0}, {36877,35952,35950 ,727,727,20124 ,0,0,0}, - {36221,36241,36276 ,20124,726,727 ,0,0,0}, {36877,36241,35952 ,727,726,727 ,0,0,0}, - {36277,37311,37312 ,726,726,726 ,0,0,0}, {36248,37312,34844 ,20124,726,726 ,0,0,0}, - {34845,37312,37311 ,727,726,726 ,0,0,0}, {35893,37313,35894 ,20130,20140,726 ,0,0,0}, - {36375,34814,36368 ,20153,20135,20144 ,0,0,0}, {35922,35920,34452 ,20137,20169,20140 ,0,0,0}, - {36388,34805,36391 ,20162,20135,20163 ,0,0,0}, {34804,34802,36394 ,20164,1792,20133 ,0,0,0}, - {34801,34816,36914 ,726,20136,20130 ,0,0,0}, {34816,36395,36914 ,20136,20140,20130 ,0,0,0}, - {36362,35899,36389 ,20139,20124,20137 ,0,0,0}, {36396,37314,36393 ,20165,20124,20124 ,0,0,0}, - {36395,34817,34820 ,20140,1793,1792 ,0,0,0}, {36354,37314,36396 ,20128,20124,20165 ,0,0,0}, - {34820,34450,36395 ,1792,20133,20140 ,0,0,0}, {34450,34820,34822 ,20133,1792,20131 ,0,0,0}, - {34776,34433,34436 ,20126,20137,1792 ,0,0,0}, {34433,34776,34773 ,20137,20126,20137 ,0,0,0}, - {34828,37315,34448 ,20169,20164,20165 ,0,0,0}, {34452,37316,37317 ,20140,20131,1793 ,0,0,0}, - {34453,35920,35919 ,20137,20169,20147 ,0,0,0}, {34452,35925,35922 ,20140,1792,20137 ,0,0,0}, - {35928,35926,36367 ,727,20137,20133 ,0,0,0}, {35925,37317,36367 ,1792,1793,20133 ,0,0,0}, - {37318,36384,36382 ,1792,1793,20136 ,0,0,0}, {36385,37319,36386 ,1792,20139,20161 ,0,0,0}, - {37318,36385,36384 ,1792,1792,1793 ,0,0,0}, {34408,37320,36390 ,20126,20136,20137 ,0,0,0}, - {34714,34422,34716 ,20126,20126,20127 ,0,0,0}, {34721,36358,36366 ,20127,20134,20143 ,0,0,0}, - {34716,34422,36959 ,20127,20126,20135 ,0,0,0}, {34815,34406,37321 ,20127,20130,20168 ,0,0,0}, - {36372,36374,36380 ,20131,20152,20158 ,0,0,0}, {36380,36379,36378 ,20158,20157,20156 ,0,0,0}, - {34414,34411,37322 ,20158,20146,20173 ,0,0,0}, {37063,36441,37062 ,20139,20147,20167 ,0,0,0}, - {37323,37324,37325 ,20131,20140,20136 ,0,0,0}, {37326,35798,36442 ,20139,20167,1793 ,0,0,0}, - {37327,37325,37324 ,20161,20136,20140 ,0,0,0}, {37327,12921,37061 ,20161,20140,20132 ,0,0,0}, - {36924,36918,34439 ,727,20124,1793 ,0,0,0}, {34438,36925,36923 ,20162,20147,1793 ,0,0,0}, - {36436,34769,34785 ,1793,726,1793 ,0,0,0}, {34786,37328,37043 ,20168,20168,20168 ,0,0,0}, - {37043,34785,34786 ,20168,1793,20168 ,0,0,0}, {37328,34789,36447 ,20168,20125,20130 ,0,0,0}, - {34789,37328,34786 ,20125,20168,20168 ,0,0,0}, {34791,36453,36447 ,20147,20124,20130 ,0,0,0}, - {36445,34795,34797 ,20170,20137,20170 ,0,0,0}, {34791,34792,36453 ,20147,727,20124 ,0,0,0}, - {36453,34795,36445 ,20124,20137,20170 ,0,0,0}, {36446,34797,37062 ,1793,20170,20167 ,0,0,0}, - {36441,36440,37062 ,20147,20124,20167 ,0,0,0}, {36442,35798,36440 ,1793,20167,20124 ,0,0,0}, - {35798,36920,35795 ,20167,1793,20126 ,0,0,0}, {36920,35798,37326 ,1793,20167,20139 ,0,0,0}, - {37329,35795,36919 ,1792,20126,20126 ,0,0,0}, {35796,37329,37058 ,20125,1792,20139 ,0,0,0}, - {37329,35796,35795 ,1792,20125,20126 ,0,0,0}, {35793,36922,35800 ,20170,20137,20167 ,0,0,0}, - {37059,35908,35906 ,20125,20139,20125 ,0,0,0}, {36922,35906,35800 ,20137,20125,20167 ,0,0,0}, - {36389,36444,36915 ,20137,20126,20126 ,0,0,0}, {37059,36444,35908 ,20125,20126,20139 ,0,0,0}, - {36916,37330,37331 ,20126,20168,20125 ,0,0,0}, {36392,37331,34782 ,20124,20125,726 ,0,0,0}, - {34783,37331,37330 ,20137,20125,20168 ,0,0,0}, {34743,36424,36434 ,20137,20137,20139 ,0,0,0}, - {34400,36435,37049 ,20140,20125,1793 ,0,0,0}, {34396,36427,37332 ,20148,20139,1793 ,0,0,0}, - {34396,37332,37048 ,20148,1793,20139 ,0,0,0}, {37052,36431,34746 ,20125,1793,20126 ,0,0,0}, - {34743,36434,37052 ,20137,20139,20125 ,0,0,0}, {34743,34742,36424 ,20137,20124,20137 ,0,0,0}, - {34739,36426,34740 ,726,20162,1792 ,0,0,0}, {36422,37056,37055 ,20170,1793,20130 ,0,0,0}, - {34754,34755,36933 ,1793,20168,20137 ,0,0,0}, {34754,36933,34739 ,1793,20137,726 ,0,0,0}, - {34758,35784,34755 ,20125,20167,20168 ,0,0,0}, {35784,34760,35781 ,20167,20147,20139 ,0,0,0}, - {34760,35784,34758 ,20147,20167,20125 ,0,0,0}, {34760,34761,35781 ,20147,727,20139 ,0,0,0}, - {35779,35782,34766 ,1793,20137,20170 ,0,0,0}, {36423,36425,34766 ,20139,20139,20170 ,0,0,0}, - {36422,36421,37056 ,20170,20147,1793 ,0,0,0}, {37055,37057,37053 ,20130,20139,20147 ,0,0,0}, - {36936,37054,36934 ,20126,1793,20126 ,0,0,0}, {37053,37057,37054 ,20147,20139,1793 ,0,0,0}, - {36935,36934,36411 ,20162,20126,1792 ,0,0,0}, {36420,36913,36412 ,20137,20130,20139 ,0,0,0}, - {36938,36935,36411 ,20147,20162,1792 ,0,0,0}, {36913,36420,36419 ,20130,20137,20167 ,0,0,0}, - {36418,36350,36419 ,20137,20125,20167 ,0,0,0}, {36419,36350,34394 ,20167,20125,1792 ,0,0,0}, - {36417,37333,36415 ,20168,20135,20169 ,0,0,0}, {37334,34392,34391 ,20168,20168,1793 ,0,0,0}, - {36940,37335,34729 ,20135,726,20131 ,0,0,0}, {37336,36409,34380 ,1793,20133,20133 ,0,0,0}, - {34727,34729,37335 ,1792,20131,726 ,0,0,0}, {34396,34750,34748 ,20148,20140,20137 ,0,0,0}, - {36359,35932,35931 ,20136,1793,20148 ,0,0,0}, {37337,37338,37339 ,20128,1793,20167 ,0,0,0}, - {37335,36356,34727 ,726,20131,1792 ,0,0,0}, {36361,37340,34405 ,20128,20169,20131 ,0,0,0}, - {37341,36377,36376 ,20174,20155,20154 ,0,0,0}, {34711,34710,34419 ,20135,20164,20133 ,0,0,0}, - {34707,34420,34708 ,726,20138,1792 ,0,0,0}, {35936,37342,37343 ,20169,727,727 ,0,0,0}, - {34424,36357,34425 ,20130,20132,20130 ,0,0,0}, {34383,36403,34386 ,20127,20134,20161 ,0,0,0}, - {36941,34729,34730 ,20168,20131,20139 ,0,0,0}, {36413,36937,37344 ,1792,20164,726 ,0,0,0}, - {36413,34733,34735 ,1792,20165,20169 ,0,0,0}, {34392,34753,34752 ,20168,20137,726 ,0,0,0}, - {34380,37344,37336 ,20133,726,1793 ,0,0,0}, {34377,34380,36409 ,20136,20133,20133 ,0,0,0}, - {37333,36941,36415 ,20135,20168,20169 ,0,0,0}, {37345,36943,36945 ,20130,20126,20148 ,0,0,0}, - {36405,36944,36406 ,20167,20139,20167 ,0,0,0}, {36948,12820,36404 ,1792,20140,20165 ,0,0,0}, - {36950,34383,34382 ,20162,20127,20135 ,0,0,0}, {36397,36951,37346 ,20132,20148,20139 ,0,0,0}, - {34375,36952,36949 ,20165,20132,20131 ,0,0,0}, {36401,36399,36398 ,20137,20166,20137 ,0,0,0}, - {36398,36397,37346 ,20137,20132,20139 ,0,0,0}, {36402,37339,36400 ,20138,20167,20167 ,0,0,0}, - {36401,36400,36399 ,20137,20167,20166 ,0,0,0}, {37337,36954,37338 ,20128,20169,1793 ,0,0,0}, - {36402,37337,37339 ,20138,20128,20167 ,0,0,0}, {36956,36955,36957 ,20171,20168,20172 ,0,0,0}, - {37338,36954,36956 ,1793,20169,20171 ,0,0,0}, {36365,36955,34721 ,20142,20168,20127 ,0,0,0}, - {37347,34358,37240 ,20124,727,20124 ,0,0,0}, {37348,35859,35864 ,726,726,727 ,0,0,0}, - {34117,35867,35871 ,726,726,20124 ,0,0,0}, {37243,37349,34616 ,726,20124,20124 ,0,0,0}, - {34616,37349,34617 ,20124,20124,726 ,0,0,0}, {36592,37236,36593 ,727,726,20124 ,0,0,0}, - {36595,34355,37350 ,726,726,726 ,0,0,0}, {36575,36535,34692 ,20124,727,727 ,0,0,0}, - {36575,34693,34696 ,20124,727,726 ,0,0,0}, {36044,34698,36042 ,20124,726,20124 ,0,0,0}, - {34699,34702,36040 ,20124,20124,727 ,0,0,0}, {34704,36036,36037 ,726,726,726 ,0,0,0}, - {36570,37351,36571 ,726,20124,20124 ,0,0,0}, {34114,37351,36531 ,20124,20124,726 ,0,0,0}, - {37351,36570,36531 ,20124,726,726 ,0,0,0}, {36036,34704,36971 ,726,726,727 ,0,0,0}, - {36582,36581,37352 ,727,20124,20124 ,0,0,0}, {36036,36971,36034 ,726,727,726 ,0,0,0}, - {34100,34662,34665 ,20124,727,726 ,0,0,0}, {34112,37353,37354 ,726,727,20124 ,0,0,0}, - {37355,36569,34652 ,726,726,20124 ,0,0,0}, {35871,35870,34120 ,20124,727,726 ,0,0,0}, - {35870,37356,37357 ,727,726,726 ,0,0,0}, {34116,35861,34117 ,726,726,726 ,0,0,0}, - {35862,35861,34116 ,20124,726,726 ,0,0,0}, {36970,35864,35862 ,727,727,20124 ,0,0,0}, - {36589,37348,36590 ,20124,726,727 ,0,0,0}, {36970,37348,35864 ,727,726,727 ,0,0,0}, - {36588,37358,37359 ,726,726,726 ,0,0,0}, {36529,37359,34690 ,20124,726,726 ,0,0,0}, - {34691,37359,37358 ,727,726,726 ,0,0,0}, {37360,35988,35986 ,726,726,20124 ,0,0,0}, - {35985,36574,35986 ,726,726,20124 ,0,0,0}, {35991,36563,36973 ,726,726,727 ,0,0,0}, - {37355,34652,34649 ,726,20124,20124 ,0,0,0}, {34667,34097,34100 ,726,726,20124 ,0,0,0}, - {34661,37361,34645 ,727,20124,726 ,0,0,0}, {34646,34645,36566 ,726,726,20124 ,0,0,0}, - {34667,34100,34665 ,726,20124,726 ,0,0,0}, {37361,34662,34100 ,20124,727,20124 ,0,0,0}, - {36583,37362,36581 ,726,726,20124 ,0,0,0}, {37363,37364,34111 ,726,726,727 ,0,0,0}, - {37365,36972,36030 ,20124,20124,726 ,0,0,0}, {36567,36568,36025 ,20124,726,726 ,0,0,0}, - {36022,36568,34106 ,726,726,20124 ,0,0,0}, {34102,36016,34103 ,726,726,726 ,0,0,0}, - {35982,34095,35985 ,726,727,726 ,0,0,0}, {35986,36574,37360 ,20124,726,726 ,0,0,0}, - {35988,37360,36563 ,726,726,726 ,0,0,0}, {36973,36974,35992 ,727,726,20124 ,0,0,0}, - {35997,36974,36585 ,726,726,726 ,0,0,0}, {35992,36974,35994 ,20124,726,20124 ,0,0,0}, - {36000,35998,36584 ,20124,20124,727 ,0,0,0}, {35998,35997,36585 ,20124,726,726 ,0,0,0}, - {36976,36565,36564 ,726,726,20124 ,0,0,0}, {36565,36976,36975 ,726,726,726 ,0,0,0}, - {36977,36979,36975 ,20124,727,726 ,0,0,0}, {36975,36979,34198 ,726,727,726 ,0,0,0}, - {36964,37366,36965 ,726,726,726 ,0,0,0}, {34659,34658,34196 ,727,726,726 ,0,0,0}, - {34604,37367,37368 ,20124,726,20124 ,0,0,0}, {37369,37367,36981 ,726,726,726 ,0,0,0}, - {34602,34604,37368 ,726,20124,20124 ,0,0,0}, {34200,34656,34654 ,726,726,20124 ,0,0,0}, - {35850,35849,37370 ,726,20124,20124 ,0,0,0}, {34372,35875,35850 ,726,726,726 ,0,0,0}, - {35876,34368,35878 ,726,20124,726 ,0,0,0}, {34617,37349,34620 ,726,20124,727 ,0,0,0}, - {37349,36562,34620 ,20124,727,727 ,0,0,0}, {34613,34629,37371 ,20124,726,726 ,0,0,0}, - {37243,34616,34614 ,726,20124,20124 ,0,0,0}, {36960,34629,34630 ,727,726,726 ,0,0,0}, - {36960,37371,34629 ,727,726,726 ,0,0,0}, {36960,34630,34633 ,727,726,726 ,0,0,0}, - {37371,37242,34613 ,726,20124,20124 ,0,0,0}, {34680,34350,34349 ,726,726,726 ,0,0,0}, - {34681,34349,34684 ,20124,726,20124 ,0,0,0}, {34364,34363,34639 ,20124,726,726 ,0,0,0}, - {34368,37372,37373 ,20124,726,726 ,0,0,0}, {34369,35876,35875 ,20124,726,726 ,0,0,0}, - {34368,35881,35878 ,20124,20124,726 ,0,0,0}, {35884,35882,36542 ,726,726,726 ,0,0,0}, - {35881,37373,36542 ,20124,726,726 ,0,0,0}, {37374,36550,36546 ,20124,727,726 ,0,0,0}, - {36548,37375,36549 ,727,726,727 ,0,0,0}, {37374,36548,36550 ,20124,727,727 ,0,0,0}, - {34268,37376,36604 ,726,726,727 ,0,0,0}, {34592,34590,34282 ,726,727,726 ,0,0,0}, - {34594,34592,36553 ,727,726,727 ,0,0,0}, {34592,34282,36553 ,726,726,727 ,0,0,0}, - {37377,37378,37379 ,726,726,727 ,0,0,0}, {37378,37377,37380 ,726,726,727 ,0,0,0}, - {37381,34274,37382 ,726,727,727 ,0,0,0}, {36545,36544,37380 ,727,726,727 ,0,0,0}, - {37382,34271,37383 ,727,727,726 ,0,0,0}, {34263,36607,34270 ,726,20124,726 ,0,0,0}, - {37384,36603,34285 ,20124,726,726 ,0,0,0}, {37385,37386,37387 ,727,726,20124 ,0,0,0}, - {37368,36601,34602 ,20124,727,726 ,0,0,0}, {36541,37388,34265 ,727,727,726 ,0,0,0}, - {36992,36991,37377 ,726,727,726 ,0,0,0}, {34587,34586,34279 ,726,20124,727 ,0,0,0}, - {34583,34280,34584 ,20124,727,20124 ,0,0,0}, {35892,37389,37390 ,726,20124,20124 ,0,0,0}, - {34284,36602,34285 ,726,727,726 ,0,0,0}, {37391,36984,34186 ,727,726,726 ,0,0,0}, - {36981,34604,34605 ,726,20124,726 ,0,0,0}, {36586,36587,37392 ,727,726,726 ,0,0,0}, - {36586,34608,34610 ,727,726,726 ,0,0,0}, {37393,37394,34181 ,726,726,20124 ,0,0,0}, - {37395,37393,34184 ,726,726,726 ,0,0,0}, {34184,37392,37395 ,726,726,726 ,0,0,0}, - {34181,34184,37393 ,20124,726,726 ,0,0,0}, {36981,36965,37366 ,726,726,726 ,0,0,0}, - {36006,36004,36982 ,726,726,726 ,0,0,0}, {36009,36983,36538 ,726,726,727 ,0,0,0}, - {36600,36537,34190 ,726,20124,727 ,0,0,0}, {36985,36599,34187 ,726,726,726 ,0,0,0}, - {37396,37391,34179 ,727,727,20124 ,0,0,0}, {37397,36986,36963 ,727,726,727 ,0,0,0}, - {36986,37396,36987 ,726,727,726 ,0,0,0}, {36961,37387,36962 ,727,20124,726 ,0,0,0}, - {36963,36962,37397 ,727,726,727 ,0,0,0}, {37385,36560,37386 ,727,727,726 ,0,0,0}, - {36961,37385,37387 ,727,727,20124 ,0,0,0}, {36559,36558,36988 ,727,727,727 ,0,0,0}, - {37386,36560,36559 ,726,727,727 ,0,0,0}, {36552,36989,34597 ,726,727,726 ,0,0,0}, - {36988,36558,36989 ,727,727,727 ,0,0,0}, {34092,34089,35831 ,726,726,726 ,0,0,0}, - {35805,37398,35806 ,726,726,728 ,0,0,0}, {34088,35834,35832 ,726,726,726 ,0,0,0}, - {36106,34557,36104 ,726,726,726 ,0,0,0}, {34556,34554,36101 ,726,726,726 ,0,0,0}, - {34553,34568,36998 ,726,726,726 ,0,0,0}, {36716,35811,36198 ,726,726,726 ,0,0,0}, - {36244,36998,34568 ,726,726,726 ,0,0,0}, {36244,34572,34086 ,726,729,726 ,0,0,0}, - {36100,34554,36994 ,726,726,726 ,0,0,0}, {36098,36994,37000 ,726,726,726 ,0,0,0}, - {34084,34083,34578 ,728,726,726 ,0,0,0}, {34086,34572,34574 ,726,729,726 ,0,0,0}, - {34072,34466,34069 ,726,726,726 ,0,0,0}, {34088,37399,37400 ,726,726,726 ,0,0,0}, - {34089,35832,35831 ,726,726,726 ,0,0,0}, {34088,35837,35834 ,726,726,726 ,0,0,0}, - {35840,35838,36712 ,726,726,726 ,0,0,0}, {35837,37400,36712 ,726,726,726 ,0,0,0}, - {37401,36728,36718 ,726,726,726 ,0,0,0}, {36729,37402,36727 ,726,726,726 ,0,0,0}, - {37401,36729,36728 ,726,726,726 ,0,0,0}, {34324,37403,36725 ,726,726,726 ,0,0,0}, - {36726,37404,34324 ,726,729,726 ,0,0,0}, {34530,34338,36723 ,726,726,726 ,0,0,0}, - {34321,34324,37404 ,726,726,729 ,0,0,0}, {34532,34530,36723 ,726,726,726 ,0,0,0}, - {34532,36724,34534 ,726,726,726 ,0,0,0}, {36722,36721,37405 ,728,726,726 ,0,0,0}, - {34973,37406,34330 ,729,726,726 ,0,0,0}, {37407,37406,34973 ,726,726,729 ,0,0,0}, - {34326,36714,34327 ,726,726,726 ,0,0,0}, {35844,35843,37036 ,726,726,729 ,0,0,0}, - {34537,34538,34333 ,726,726,726 ,0,0,0}, {36245,36189,34541 ,726,726,729 ,0,0,0}, - {37404,37041,34321 ,729,726,726 ,0,0,0}, {34528,34525,34338 ,728,726,726 ,0,0,0}, - {34525,34524,34335 ,726,726,726 ,0,0,0}, {34521,34336,34522 ,726,726,726 ,0,0,0}, - {35848,37408,37409 ,726,726,726 ,0,0,0}, {34340,36190,34341 ,726,726,726 ,0,0,0}, - {36251,34544,37410 ,726,726,726 ,0,0,0}, {36251,34543,34544 ,726,726,726 ,0,0,0}, - {34237,34240,37016 ,726,726,726 ,0,0,0}, {37411,37017,34549 ,726,726,726 ,0,0,0}, - {37017,37410,34547 ,726,726,726 ,0,0,0}, {34505,34504,34252 ,726,729,726 ,0,0,0}, - {37412,37015,34240 ,726,726,726 ,0,0,0}, {37411,37412,37017 ,726,726,726 ,0,0,0}, - {37413,36707,36706 ,726,726,726 ,0,0,0}, {37414,36696,36700 ,726,726,728 ,0,0,0}, - {37415,37019,37021 ,726,726,726 ,0,0,0}, {37415,37023,37022 ,726,726,726 ,0,0,0}, - {37416,37026,34243 ,726,726,728 ,0,0,0}, {37417,37027,34235 ,729,726,726 ,0,0,0}, - {37418,37032,37034 ,726,726,726 ,0,0,0}, {37032,37417,37033 ,726,729,726 ,0,0,0}, - {37418,37419,37031 ,726,726,726 ,0,0,0}, {37419,37418,37034 ,726,726,726 ,0,0,0}, - {37029,37420,37030 ,726,729,726 ,0,0,0}, {37419,37029,37031 ,726,726,726 ,0,0,0}, - {37038,37037,37420 ,726,729,729 ,0,0,0}, {37030,37420,37037 ,726,729,729 ,0,0,0}, - {37037,37039,36730 ,729,726,726 ,0,0,0}, {34535,36730,37039 ,726,726,726 ,0,0,0}, - {37421,37011,37422 ,729,726,726 ,0,0,0}, {37009,37008,37422 ,726,726,726 ,0,0,0}, - {36694,37010,37012 ,726,726,726 ,0,0,0}, {37423,34495,34494 ,726,728,726 ,0,0,0}, - {34485,34487,36062 ,726,728,726 ,0,0,0}, {34492,37424,37423 ,726,726,726 ,0,0,0}, - {34492,37423,34494 ,726,726,726 ,0,0,0}, {34510,34512,34156 ,726,726,726 ,0,0,0}, - {36682,34507,34156 ,726,726,726 ,0,0,0}, {34492,34491,37424 ,726,726,726 ,0,0,0}, - {36186,37425,36187 ,726,728,726 ,0,0,0}, {37426,37004,37427 ,726,729,726 ,0,0,0}, - {37428,36684,36070 ,726,726,726 ,0,0,0}, {36683,37005,36074 ,726,726,726 ,0,0,0}, - {37429,37005,34162 ,726,726,726 ,0,0,0}, {36690,34158,34151 ,729,726,726 ,0,0,0}, - {37009,37430,34518 ,726,726,728 ,0,0,0}, {37422,37008,37421 ,726,726,729 ,0,0,0}, - {37011,37421,37012 ,726,729,726 ,0,0,0}, {36693,36692,37013 ,726,729,726 ,0,0,0}, - {37010,36694,36693 ,726,726,726 ,0,0,0}, {37013,36697,37431 ,726,728,726 ,0,0,0}, - {36696,36695,36700 ,726,726,728 ,0,0,0}, {36696,37431,36697 ,726,726,728 ,0,0,0}, - {37413,36699,36698 ,726,729,726 ,0,0,0}, {36699,37413,36706 ,729,726,726 ,0,0,0}, - {36698,36700,36695 ,726,728,726 ,0,0,0}, {36706,36705,34254 ,726,726,726 ,0,0,0}, - {37432,37433,37434 ,726,726,726 ,0,0,0}, {37434,37433,37021 ,726,726,726 ,0,0,0}, - {34237,37016,37435 ,726,726,726 ,0,0,0}, {37436,34252,34251 ,729,726,726 ,0,0,0}, - {37018,36251,36997 ,726,726,726 ,0,0,0}, {34256,34502,34500 ,726,726,726 ,0,0,0}, - {36080,34074,36078 ,726,726,729 ,0,0,0}, {35823,35827,34173 ,729,728,728 ,0,0,0}, - {36092,36999,36247 ,726,726,728 ,0,0,0}, {36086,36246,34078 ,729,726,726 ,0,0,0}, - {36082,36083,34075 ,726,726,726 ,0,0,0}, {36046,36078,34067 ,726,729,728 ,0,0,0}, - {36050,36049,34459 ,726,726,726 ,0,0,0}, {36052,34475,34476 ,726,726,726 ,0,0,0}, - {36055,34476,34479 ,726,726,726 ,0,0,0}, {36056,34481,36058 ,726,726,726 ,0,0,0}, - {34482,34485,36061 ,726,726,726 ,0,0,0}, {37426,37427,34487 ,726,726,728 ,0,0,0}, - {34487,36064,36062 ,728,726,726 ,0,0,0}, {36685,36067,36064 ,726,726,726 ,0,0,0}, - {37427,37004,37003 ,726,729,726 ,0,0,0}, {37003,37001,34170 ,726,726,726 ,0,0,0}, - {36685,34487,37427 ,726,728,726 ,0,0,0}, {34512,34513,34153 ,726,726,726 ,0,0,0}, - {34516,34154,34513 ,726,726,726 ,0,0,0}, {37437,37438,34167 ,729,728,726 ,0,0,0}, - {37439,34168,37440 ,726,726,726 ,0,0,0}, {35827,35826,34176 ,728,726,726 ,0,0,0}, - {35826,37441,37442 ,726,726,726 ,0,0,0}, {34172,35817,34173 ,726,726,728 ,0,0,0}, - {35818,35817,34172 ,726,726,726 ,0,0,0}, {36702,35820,35818 ,726,726,726 ,0,0,0}, - {36198,36701,36703 ,726,726,726 ,0,0,0}, {36702,36701,35820 ,726,726,726 ,0,0,0}, - {36704,37443,37444 ,726,729,726 ,0,0,0}, {36710,37444,34472 ,726,726,729 ,0,0,0}, - {34473,37444,37443 ,726,726,729 ,0,0,0}, {34772,34434,34433 ,20124,1792,20137 ,0,0,0}, - {37324,36353,36355 ,20140,20127,20129 ,0,0,0}, {35896,35899,36362 ,20137,20124,20139 ,0,0,0}, - {36355,36354,36396 ,20129,20128,20165 ,0,0,0}, {37323,36353,37324 ,20131,20127,20140 ,0,0,0}, - {37061,37325,37327 ,20132,20136,20161 ,0,0,0}, {34431,34434,34770 ,20168,1792,1792 ,0,0,0}, - {37060,12921,34442 ,20137,20140,20167 ,0,0,0}, {34439,36918,34442 ,1793,20124,20167 ,0,0,0}, - {36917,37060,34442 ,20137,20137,20167 ,0,0,0}, {34769,34431,34770 ,726,20168,1792 ,0,0,0}, - {34438,36924,34439 ,20162,727,1793 ,0,0,0}, {34438,34431,36925 ,20162,20168,20147 ,0,0,0}, - {34431,34769,36437 ,20168,726,20130 ,0,0,0}, {34433,34773,34772 ,20137,20137,20124 ,0,0,0}, - {36389,35903,36444 ,20137,20162,20126 ,0,0,0}, {34780,34778,36392 ,20140,20137,20124 ,0,0,0}, - {36392,34782,34780 ,20124,726,20140 ,0,0,0}, {37330,36916,36915 ,20168,20126,20126 ,0,0,0}, - {37331,34783,34782 ,20125,20137,726 ,0,0,0}, {36389,35899,35902 ,20137,20124,726 ,0,0,0}, - {35893,35896,36363 ,20130,20137,20140 ,0,0,0}, {34456,35894,37313 ,20148,726,20140 ,0,0,0}, - {37313,35893,36363 ,20140,20130,20140 ,0,0,0}, {35920,34453,34452 ,20169,20137,20140 ,0,0,0}, - {37316,34445,37315 ,20131,20135,20164 ,0,0,0}, {35925,34452,37317 ,1792,20140,1793 ,0,0,0}, - {34452,34445,37316 ,20140,20135,20131 ,0,0,0}, {34828,34448,34826 ,20169,20165,20165 ,0,0,0}, - {34445,34448,37315 ,20135,20165,20164 ,0,0,0}, {34826,34447,34823 ,20165,20134,20139 ,0,0,0}, - {34822,34447,34450 ,20131,20134,20133 ,0,0,0}, {34422,34714,34711 ,20126,20126,20135 ,0,0,0}, - {37321,34406,37340 ,20168,20130,20169 ,0,0,0}, {37341,36364,36377 ,20174,20141,20155 ,0,0,0}, - {36364,36366,36377 ,20141,20143,20155 ,0,0,0}, {36379,36376,36378 ,20157,20154,20156 ,0,0,0}, - {36374,36381,36380 ,20152,20159,20158 ,0,0,0}, {36373,36372,34414 ,20151,20131,20158 ,0,0,0}, - {37445,37322,34411 ,20175,20173,20146 ,0,0,0}, {37322,36373,34414 ,20173,20151,20158 ,0,0,0}, - {34406,34815,34403 ,20130,20127,20143 ,0,0,0}, {34410,37446,36369 ,1793,20139,20145 ,0,0,0}, - {34411,36369,37445 ,20146,20145,20175 ,0,0,0}, {34815,36371,34403 ,20127,20150,20143 ,0,0,0}, - {34403,36371,36370 ,20143,20150,20149 ,0,0,0}, {37446,34410,36370 ,20139,1793,20149 ,0,0,0}, - {34406,34405,37340 ,20130,20131,20169 ,0,0,0}, {37447,36390,37320 ,20137,20137,20136 ,0,0,0}, - {36958,35928,36382 ,20132,727,20136 ,0,0,0}, {37319,37320,36386 ,20139,20136,20161 ,0,0,0}, - {37320,37319,37447 ,20136,20139,20137 ,0,0,0}, {36382,36384,36958 ,20136,1793,20132 ,0,0,0}, - {36958,35931,35928 ,20132,20148,727 ,0,0,0}, {35934,37342,35936 ,20137,727,20169 ,0,0,0}, - {37342,35934,36359 ,727,20137,20136 ,0,0,0}, {34428,35936,37343 ,20138,20169,727 ,0,0,0}, - {34417,34724,34424 ,1793,1793,20130 ,0,0,0}, {34425,36357,36953 ,20130,20132,20165 ,0,0,0}, - {34724,36356,34424 ,1793,20131,20130 ,0,0,0}, {34417,34707,34723 ,1793,726,20136 ,0,0,0}, - {34420,34419,34708 ,20138,20133,1792 ,0,0,0}, {34417,34420,34707 ,1793,20138,726 ,0,0,0}, - {34711,34419,34422 ,20135,20133,20126 ,0,0,0}, {34708,34419,34710 ,1792,20133,20164 ,0,0,0}, - {34391,36351,37448 ,1793,20126,20126 ,0,0,0}, {34378,34377,36946 ,20132,20136,1792 ,0,0,0}, - {37345,36939,36943 ,20130,20168,20126 ,0,0,0}, {36939,36410,36943 ,20168,20168,20126 ,0,0,0}, - {36405,36945,36944 ,20167,20148,20139 ,0,0,0}, {36948,36407,36406 ,1792,20126,20167 ,0,0,0}, - {36404,12820,34386 ,20165,20140,20161 ,0,0,0}, {34375,34378,36947 ,20165,20132,1792 ,0,0,0}, - {37449,36403,34383 ,20170,20134,20127 ,0,0,0}, {37449,34383,36950 ,20170,20127,20162 ,0,0,0}, - {37346,34375,36947 ,20139,20165,1792 ,0,0,0}, {37346,36951,34375 ,20139,20148,20165 ,0,0,0}, - {34382,34375,36949 ,20135,20165,20131 ,0,0,0}, {34377,36408,36946 ,20136,20136,1792 ,0,0,0}, - {37450,37336,37344 ,20131,1793,726 ,0,0,0}, {36941,36940,34729 ,20168,20135,20131 ,0,0,0}, - {37344,36937,37450 ,726,20164,20131 ,0,0,0}, {34733,36414,34730 ,20165,20133,20139 ,0,0,0}, - {36941,37333,36942 ,20168,20135,20133 ,0,0,0}, {37050,36417,36416 ,20168,20168,20128 ,0,0,0}, - {37051,37050,36416 ,20140,20168,20128 ,0,0,0}, {34400,37049,37051 ,20140,1793,20140 ,0,0,0}, - {34750,34389,34752 ,20140,20124,726 ,0,0,0}, {36427,34396,34748 ,20139,20148,20137 ,0,0,0}, - {34396,37048,34397 ,20148,20139,20168 ,0,0,0}, {34396,34389,34750 ,20148,20124,20140 ,0,0,0}, - {34753,34392,37334 ,20137,20168,20168 ,0,0,0}, {34389,34392,34752 ,20124,20168,726 ,0,0,0}, - {37334,34391,37448 ,20168,1793,20126 ,0,0,0}, {36351,34391,34394 ,20126,1793,1792 ,0,0,0}, - {34678,34350,34680 ,726,726,726 ,0,0,0}, {37236,37243,37237 ,726,726,726 ,0,0,0}, - {36968,35852,35855 ,20124,20124,726 ,0,0,0}, {37237,37243,37242 ,726,726,20124 ,0,0,0}, - {34347,34350,34678 ,726,726,726 ,0,0,0}, {36593,37239,37238 ,20124,727,726 ,0,0,0}, - {37238,36591,36593 ,726,20124,20124 ,0,0,0}, {37240,37239,37347 ,20124,727,20124 ,0,0,0}, - {34355,36594,37241 ,726,726,726 ,0,0,0}, {34358,34355,37241 ,727,726,726 ,0,0,0}, - {34347,34678,34677 ,726,726,726 ,0,0,0}, {34355,34354,37350 ,726,20124,726 ,0,0,0}, - {34355,36595,36594 ,726,726,726 ,0,0,0}, {34677,36535,34347 ,726,727,726 ,0,0,0}, - {37350,34347,36535 ,726,726,727 ,0,0,0}, {34354,34347,37350 ,20124,726,726 ,0,0,0}, - {34349,34681,34680 ,726,20124,726 ,0,0,0}, {36589,35859,37348 ,20124,726,726 ,0,0,0}, - {34688,34686,36529 ,726,20124,20124 ,0,0,0}, {36529,34690,34688 ,20124,726,726 ,0,0,0}, - {37358,36588,36590 ,726,726,727 ,0,0,0}, {37359,34691,34690 ,726,727,726 ,0,0,0}, - {36589,35855,35858 ,20124,726,20124 ,0,0,0}, {35849,35852,36967 ,20124,20124,727 ,0,0,0}, - {34372,35850,37370 ,726,726,20124 ,0,0,0}, {37370,35849,36967 ,20124,20124,727 ,0,0,0}, - {35876,34369,34368 ,726,20124,20124 ,0,0,0}, {37372,34361,36605 ,726,726,726 ,0,0,0}, - {35881,34368,37373 ,20124,20124,726 ,0,0,0}, {34368,34361,37372 ,20124,726,726 ,0,0,0}, - {34641,34364,34639 ,726,20124,726 ,0,0,0}, {34361,34364,36605 ,726,20124,726 ,0,0,0}, - {34639,34363,34636 ,726,726,726 ,0,0,0}, {34635,34363,34366 ,20124,726,726 ,0,0,0}, - {34567,34322,37040 ,726,726,726 ,0,0,0}, {36731,37405,36721 ,726,726,726 ,0,0,0}, - {35844,37036,35846 ,726,729,726 ,0,0,0}, {36731,36721,36730 ,726,726,726 ,0,0,0}, - {34322,34567,34319 ,726,726,726 ,0,0,0}, {36722,37407,36734 ,728,726,726 ,0,0,0}, - {36734,36720,36722 ,726,726,728 ,0,0,0}, {37407,34973,36734 ,726,729,726 ,0,0,0}, - {34330,34327,34972 ,726,726,726 ,0,0,0}, {34972,34973,34330 ,726,729,726 ,0,0,0}, - {34319,34567,36711 ,726,726,726 ,0,0,0}, {34327,36713,34972 ,726,726,726 ,0,0,0}, - {36711,34326,34319 ,726,726,726 ,0,0,0}, {36714,34326,36711 ,726,726,726 ,0,0,0}, - {34322,34321,37041 ,726,726,726 ,0,0,0}, {37451,36725,37403 ,726,726,726 ,0,0,0}, - {37035,35840,36718 ,726,726,726 ,0,0,0}, {37402,37403,36727 ,726,726,726 ,0,0,0}, - {37403,37402,37451 ,726,726,726 ,0,0,0}, {36718,36728,37035 ,726,726,726 ,0,0,0}, - {37035,35843,35840 ,726,726,726 ,0,0,0}, {35846,37408,35848 ,726,726,726 ,0,0,0}, - {37408,35846,37036 ,726,726,729 ,0,0,0}, {34344,35848,37409 ,726,726,726 ,0,0,0}, - {34333,34538,34340 ,726,726,726 ,0,0,0}, {34341,36190,36719 ,726,726,726 ,0,0,0}, - {34538,36189,34340 ,726,726,726 ,0,0,0}, {34333,34521,34537 ,726,726,726 ,0,0,0}, - {34336,34335,34522 ,726,726,726 ,0,0,0}, {34333,34336,34521 ,726,726,726 ,0,0,0}, - {34525,34335,34338 ,726,726,726 ,0,0,0}, {34522,34335,34524 ,726,726,726 ,0,0,0}, - {37270,34310,37295 ,726,726,727 ,0,0,0}, {37452,34294,37296 ,727,20124,20124 ,0,0,0}, - {37226,37275,37217 ,726,726,726 ,0,0,0}, {37275,37218,37217 ,726,727,726 ,0,0,0}, - {34291,34294,37452 ,20124,20124,727 ,0,0,0}, {36904,37224,35064 ,726,727,727 ,0,0,0}, - {35064,35077,36904 ,727,726,726 ,0,0,0}, {35065,37224,36872 ,20124,727,20124 ,0,0,0}, - {35067,34302,34299 ,726,727,726 ,0,0,0}, {34291,37452,37279 ,20124,727,726 ,0,0,0}, - {35068,35067,34299 ,726,726,726 ,0,0,0}, {34299,34298,37280 ,726,726,727 ,0,0,0}, - {37279,37278,34291 ,726,727,20124 ,0,0,0}, {37280,34291,37278 ,727,20124,727 ,0,0,0}, - {34298,34291,37280 ,726,20124,727 ,0,0,0}, {34293,37297,37296 ,20124,726,20124 ,0,0,0}, - {37453,36303,36302 ,726,726,726 ,0,0,0}, {36898,36897,34914 ,726,726,20124 ,0,0,0}, - {36302,37269,37453 ,726,726,726 ,0,0,0}, {34918,37225,34915 ,726,726,726 ,0,0,0}, - {36898,37223,36899 ,726,726,726 ,0,0,0}, {36892,36885,36884 ,20124,726,726 ,0,0,0}, - {36893,36892,36884 ,20124,20124,726 ,0,0,0}, {34316,36291,36893 ,20124,726,20124 ,0,0,0}, - {34872,34305,34874 ,726,20124,726 ,0,0,0}, {36284,34312,34870 ,726,726,20124 ,0,0,0}, - {34312,36889,34313 ,726,726,726 ,0,0,0}, {34312,34305,34872 ,726,20124,726 ,0,0,0}, - {34875,34308,37298 ,727,726,726 ,0,0,0}, {34305,34308,34874 ,20124,726,726 ,0,0,0}, - {37298,34307,37271 ,726,20124,727 ,0,0,0}, {37270,34307,34310 ,726,20124,726 ,0,0,0}, - {34282,34590,34587 ,726,727,726 ,0,0,0}, {36547,34266,37388 ,727,727,727 ,0,0,0}, - {36991,36993,36551 ,727,727,726 ,0,0,0}, {36993,36555,36551 ,727,727,726 ,0,0,0}, - {37379,36992,37377 ,727,726,726 ,0,0,0}, {36544,37378,37380 ,726,726,727 ,0,0,0}, - {36543,36545,34274 ,727,727,727 ,0,0,0}, {34271,37382,34274 ,727,727,727 ,0,0,0}, - {37381,36543,34274 ,726,727,727 ,0,0,0}, {34266,34627,34263 ,727,726,726 ,0,0,0}, - {37383,34270,36606 ,726,726,726 ,0,0,0}, {34270,37383,34271 ,726,726,727 ,0,0,0}, - {34627,36611,34263 ,726,727,726 ,0,0,0}, {36607,34263,36611 ,20124,726,727 ,0,0,0}, - {34266,34265,37388 ,727,726,727 ,0,0,0}, {37454,36604,37376 ,727,727,726 ,0,0,0}, - {36990,35884,36546 ,20124,726,726 ,0,0,0}, {37375,37376,36549 ,726,726,727 ,0,0,0}, - {37376,37375,37454 ,726,726,727 ,0,0,0}, {36546,36550,36990 ,726,727,20124 ,0,0,0}, - {36990,35887,35884 ,20124,20124,726 ,0,0,0}, {35890,37389,35892 ,726,20124,726 ,0,0,0}, - {37389,35890,36539 ,20124,726,726 ,0,0,0}, {34288,35892,37390 ,20124,726,20124 ,0,0,0}, - {34277,34599,34284 ,726,726,726 ,0,0,0}, {34285,36602,37384 ,726,727,20124 ,0,0,0}, - {34599,36601,34284 ,726,727,726 ,0,0,0}, {34277,34583,34598 ,726,20124,726 ,0,0,0}, - {34280,34279,34584 ,727,727,20124 ,0,0,0}, {34277,34280,34583 ,726,727,20124 ,0,0,0}, - {34587,34279,34282 ,726,727,726 ,0,0,0}, {34584,34279,34586 ,20124,727,20124 ,0,0,0}, - {34251,37014,37455 ,726,726,726 ,0,0,0}, {36709,34238,34237 ,726,726,726 ,0,0,0}, - {37433,37432,36700 ,726,726,728 ,0,0,0}, {37432,37414,36700 ,726,726,728 ,0,0,0}, - {37020,37434,37021 ,726,726,726 ,0,0,0}, {37022,37019,37415 ,726,726,726 ,0,0,0}, - {34235,34238,36708 ,726,726,726 ,0,0,0}, {37025,37024,37023 ,726,729,726 ,0,0,0}, - {34242,37416,34243 ,726,726,728 ,0,0,0}, {34243,37026,34246 ,728,726,728 ,0,0,0}, - {37033,34235,36708 ,726,726,726 ,0,0,0}, {34242,34235,37027 ,726,726,726 ,0,0,0}, - {34242,37028,37416 ,726,726,726 ,0,0,0}, {34235,37033,37417 ,726,726,729 ,0,0,0}, - {34237,37435,36709 ,726,726,726 ,0,0,0}, {37456,37015,37412 ,726,726,726 ,0,0,0}, - {36251,36250,34543 ,726,726,726 ,0,0,0}, {37412,37411,37456 ,726,726,726 ,0,0,0}, - {34547,37410,34544 ,726,726,726 ,0,0,0}, {36251,37018,36252 ,726,726,726 ,0,0,0}, - {36261,36996,36995 ,726,726,729 ,0,0,0}, {36262,36261,36995 ,726,726,729 ,0,0,0}, - {34260,36256,36262 ,726,726,726 ,0,0,0}, {34502,34249,34504 ,726,726,729 ,0,0,0}, - {36686,34256,34500 ,726,726,726 ,0,0,0}, {34256,36691,34257 ,726,726,726 ,0,0,0}, - {34256,34249,34502 ,726,726,726 ,0,0,0}, {34505,34252,37436 ,726,726,729 ,0,0,0}, - {34249,34252,34504 ,726,726,729 ,0,0,0}, {37436,34251,37455 ,729,726,726 ,0,0,0}, - {37014,34251,34254 ,726,726,726 ,0,0,0}, {36879,36875,36880 ,20124,20124,726 ,0,0,0}, - {34226,37285,37305 ,20124,727,726 ,0,0,0}, {36879,36881,37303 ,20124,20124,727 ,0,0,0}, - {36881,37304,37303 ,20124,726,727 ,0,0,0}, {37289,36880,36875 ,20124,726,20124 ,0,0,0}, - {36298,36874,36873 ,20124,726,20124 ,0,0,0}, {36297,36296,34218 ,727,726,20124 ,0,0,0}, - {37290,36297,34218 ,726,727,20124 ,0,0,0}, {34210,34889,34207 ,726,726,727 ,0,0,0}, - {34215,36888,34218 ,726,726,20124 ,0,0,0}, {34214,36887,34215 ,726,20124,726 ,0,0,0}, - {34889,37291,34207 ,726,20124,727 ,0,0,0}, {34214,36891,36887 ,726,20124,20124 ,0,0,0}, - {36890,34207,37291 ,20124,727,20124 ,0,0,0}, {34210,34209,34884 ,726,726,20124 ,0,0,0}, - {34877,34878,36231 ,727,727,20124 ,0,0,0}, {36240,36232,34865 ,726,726,20124 ,0,0,0}, - {34865,36233,36240 ,20124,20124,726 ,0,0,0}, {36231,36882,34861 ,20124,20124,726 ,0,0,0}, - {36240,36239,36232 ,726,726,726 ,0,0,0}, {36287,37309,35958 ,20124,726,727 ,0,0,0}, - {37309,36287,36238 ,726,20124,20124 ,0,0,0}, {34232,35958,37310 ,726,727,726 ,0,0,0}, - {34221,36228,34228 ,726,20124,726 ,0,0,0}, {36228,35950,34228 ,20124,20124,726 ,0,0,0}, - {34229,35949,35955 ,726,726,726 ,0,0,0}, {34221,37307,36227 ,726,20124,726 ,0,0,0}, - {34224,34223,37308 ,726,727,727 ,0,0,0}, {34221,34224,37307 ,726,726,20124 ,0,0,0}, - {37305,34223,34226 ,726,727,20124 ,0,0,0}, {37308,34223,37306 ,727,727,726 ,0,0,0}, - {34195,36980,37457 ,20124,726,727 ,0,0,0}, {36556,34182,34181 ,20124,20124,20124 ,0,0,0}, - {36004,36003,36982 ,726,727,726 ,0,0,0}, {36003,36561,36982 ,727,726,726 ,0,0,0}, - {36009,36006,36983 ,726,726,726 ,0,0,0}, {36010,36537,36012 ,726,20124,20124 ,0,0,0}, - {34182,36557,34179 ,20124,727,20124 ,0,0,0}, {36600,36012,36537 ,726,20124,20124 ,0,0,0}, - {34186,36985,34187 ,726,726,726 ,0,0,0}, {34187,36599,34190 ,726,726,727 ,0,0,0}, - {36987,34179,36557 ,726,20124,727 ,0,0,0}, {34179,36987,37396 ,20124,726,727 ,0,0,0}, - {34186,34179,37391 ,726,20124,727 ,0,0,0}, {34181,37394,36556 ,20124,726,20124 ,0,0,0}, - {37458,37395,37392 ,726,726,726 ,0,0,0}, {36981,37367,34604 ,726,726,20124 ,0,0,0}, - {37392,36587,37458 ,726,726,726 ,0,0,0}, {34608,36978,34605 ,726,726,726 ,0,0,0}, - {36981,37366,37369 ,726,726,726 ,0,0,0}, {36578,36964,36966 ,20124,726,726 ,0,0,0}, - {36576,36578,36966 ,20124,20124,726 ,0,0,0}, {34204,36577,36576 ,20124,726,20124 ,0,0,0}, - {34656,34193,34658 ,726,20124,726 ,0,0,0}, {36533,34200,34654 ,726,726,20124 ,0,0,0}, - {34200,36573,34201 ,726,726,726 ,0,0,0}, {34200,34193,34656 ,726,20124,726 ,0,0,0}, - {34659,34196,36597 ,727,726,726 ,0,0,0}, {34193,34196,34658 ,20124,726,726 ,0,0,0}, - {36597,34195,37457 ,726,20124,727 ,0,0,0}, {36980,34195,34198 ,726,20124,726 ,0,0,0}, - {37428,36070,36068 ,726,726,726 ,0,0,0}, {34170,37002,37437 ,726,726,729 ,0,0,0}, - {36068,36067,37428 ,726,726,726 ,0,0,0}, {36067,36685,37428 ,726,726,726 ,0,0,0}, - {36073,36070,36684 ,726,726,726 ,0,0,0}, {34154,34516,34518 ,726,726,728 ,0,0,0}, - {37429,36076,37005 ,726,728,726 ,0,0,0}, {37007,37429,34162 ,726,726,726 ,0,0,0}, - {34154,34518,34151 ,726,728,726 ,0,0,0}, {34159,37007,34162 ,726,726,726 ,0,0,0}, - {34158,37006,34159 ,726,728,726 ,0,0,0}, {34518,37430,34151 ,728,726,726 ,0,0,0}, - {34158,36689,37006 ,726,726,728 ,0,0,0}, {36690,34151,37430 ,729,726,726 ,0,0,0}, - {34154,34153,34513 ,726,726,726 ,0,0,0}, {34506,34507,36682 ,726,726,726 ,0,0,0}, - {36263,36598,34495 ,726,726,728 ,0,0,0}, {34495,37423,36263 ,728,726,726 ,0,0,0}, - {36682,37424,34491 ,726,726,726 ,0,0,0}, {36263,36185,36598 ,726,726,726 ,0,0,0}, - {37425,37441,35826 ,728,726,726 ,0,0,0}, {37441,37425,36186 ,726,728,726 ,0,0,0}, - {34176,35826,37442 ,726,726,726 ,0,0,0}, {34165,36258,34172 ,726,726,726 ,0,0,0}, - {36258,35818,34172 ,726,726,726 ,0,0,0}, {34173,35817,35823 ,728,726,729 ,0,0,0}, - {34165,37439,36257 ,726,726,726 ,0,0,0}, {34168,34167,37440 ,726,726,726 ,0,0,0}, - {34165,34168,37439 ,726,726,726 ,0,0,0}, {37437,34167,34170 ,729,726,726 ,0,0,0}, - {37440,34167,37438 ,726,726,728 ,0,0,0}, {34834,34126,34125 ,726,726,726 ,0,0,0}, - {36134,36132,36230 ,727,20124,726 ,0,0,0}, {36219,35940,35943 ,20124,20124,726 ,0,0,0}, - {36132,36131,36230 ,20124,726,726 ,0,0,0}, {36137,36134,36229 ,20124,727,20124 ,0,0,0}, - {36138,36281,36140 ,20124,20124,20124 ,0,0,0}, {34126,34832,34123 ,726,726,726 ,0,0,0}, - {37300,36140,36281 ,726,20124,20124 ,0,0,0}, {34134,34131,37301 ,727,726,20124 ,0,0,0}, - {37301,37300,34134 ,20124,726,727 ,0,0,0}, {34831,34123,34832 ,726,726,726 ,0,0,0}, - {34130,36278,34131 ,20124,726,726 ,0,0,0}, {34123,34831,36878 ,726,726,726 ,0,0,0}, - {34130,34123,37299 ,20124,726,726 ,0,0,0}, {34125,34835,34834 ,726,20124,726 ,0,0,0}, - {36221,35947,36241 ,20124,726,726 ,0,0,0}, {34842,34840,36248 ,726,20124,20124 ,0,0,0}, - {36248,34844,34842 ,20124,726,726 ,0,0,0}, {37311,36277,36276 ,726,726,727 ,0,0,0}, - {37312,34845,34844 ,726,727,726 ,0,0,0}, {36221,35943,35946 ,20124,726,20124 ,0,0,0}, - {35937,35940,36220 ,20124,20124,727 ,0,0,0}, {34148,35938,36264 ,726,726,20124 ,0,0,0}, - {36264,35937,36220 ,20124,20124,727 ,0,0,0}, {35964,34145,34144 ,726,20124,20124 ,0,0,0}, - {37257,34137,36871 ,726,726,726 ,0,0,0}, {35969,34144,37258 ,20124,20124,726 ,0,0,0}, - {34144,34137,37257 ,20124,726,726 ,0,0,0}, {34951,34140,34949 ,726,20124,726 ,0,0,0}, - {34137,34140,36871 ,726,20124,726 ,0,0,0}, {34949,34139,34946 ,726,726,726 ,0,0,0}, - {34945,34139,34142 ,20124,726,726 ,0,0,0}, {37365,36030,36031 ,20124,726,726 ,0,0,0}, - {34114,36532,37363 ,20124,727,726 ,0,0,0}, {36031,36034,37365 ,726,726,20124 ,0,0,0}, - {36034,36971,37365 ,726,727,20124 ,0,0,0}, {36028,36030,36972 ,20124,726,20124 ,0,0,0}, - {34098,34671,34673 ,726,20124,726 ,0,0,0}, {36022,36024,36568 ,726,727,726 ,0,0,0}, - {36019,36022,34106 ,20124,726,20124 ,0,0,0}, {34098,34673,34095 ,726,726,727 ,0,0,0}, - {34103,36019,34106 ,726,20124,20124 ,0,0,0}, {34103,36016,36018 ,726,726,20124 ,0,0,0}, - {35985,34095,34673 ,726,727,726 ,0,0,0}, {34102,36014,36016 ,726,726,726 ,0,0,0}, - {36014,34095,35982 ,726,727,726 ,0,0,0}, {34098,34097,34668 ,726,726,20124 ,0,0,0}, - {34661,34662,37361 ,727,727,20124 ,0,0,0}, {37362,37355,34649 ,726,726,20124 ,0,0,0}, - {34649,36530,37362 ,20124,20124,726 ,0,0,0}, {37361,36566,34645 ,20124,20124,726 ,0,0,0}, - {37362,36583,37355 ,726,726,726 ,0,0,0}, {37352,37356,35870 ,20124,726,727 ,0,0,0}, - {37356,37352,36581 ,726,20124,20124 ,0,0,0}, {34120,35870,37357 ,726,727,726 ,0,0,0}, - {34109,36579,34116 ,726,20124,726 ,0,0,0}, {36579,35862,34116 ,20124,20124,726 ,0,0,0}, - {34117,35861,35867 ,726,726,726 ,0,0,0}, {34109,37354,36580 ,726,20124,726 ,0,0,0}, - {34112,34111,37353 ,726,727,727 ,0,0,0}, {34109,34112,37354 ,726,726,20124 ,0,0,0}, - {37363,34111,34114 ,726,727,20124 ,0,0,0}, {37353,34111,37364 ,727,727,726 ,0,0,0}, - {34462,34070,34069 ,726,726,726 ,0,0,0}, {36094,36095,37000 ,726,726,726 ,0,0,0}, - {36716,35808,35811 ,726,728,726 ,0,0,0}, {36095,36098,37000 ,726,726,726 ,0,0,0}, - {36092,36094,36999 ,726,726,726 ,0,0,0}, {36088,36089,36247 ,726,726,728 ,0,0,0}, - {34070,34460,34067 ,726,726,728 ,0,0,0}, {36086,36088,36246 ,729,726,726 ,0,0,0}, - {34078,34075,36083 ,726,726,726 ,0,0,0}, {36083,36086,34078 ,726,729,726 ,0,0,0}, - {34459,34067,34460 ,726,728,726 ,0,0,0}, {34075,36080,36082 ,726,726,726 ,0,0,0}, - {34459,36049,34067 ,726,726,728 ,0,0,0}, {34074,34067,36078 ,726,728,729 ,0,0,0}, - {34069,34463,34462 ,726,728,726 ,0,0,0}, {36198,35815,36701 ,726,726,726 ,0,0,0}, - {34470,34468,36710 ,726,726,726 ,0,0,0}, {36710,34472,34470 ,726,729,726 ,0,0,0}, - {37443,36704,36703 ,729,726,726 ,0,0,0}, {37444,34473,34472 ,726,726,729 ,0,0,0}, - {36198,35811,35814 ,726,726,728 ,0,0,0}, {35805,35808,36715 ,726,728,726 ,0,0,0}, - {34092,35806,37398 ,726,728,726 ,0,0,0}, {37398,35805,36715 ,726,726,726 ,0,0,0}, - {35832,34089,34088 ,726,726,726 ,0,0,0}, {37399,34081,36197 ,726,726,726 ,0,0,0}, - {35837,34088,37400 ,726,726,726 ,0,0,0}, {34088,34081,37399 ,726,726,726 ,0,0,0}, - {34580,34084,34578 ,726,728,726 ,0,0,0}, {34081,34084,36197 ,726,728,726 ,0,0,0}, - {34578,34083,34575 ,726,726,726 ,0,0,0}, {34574,34083,34086 ,726,726,726 ,0,0,0}, - {34058,34900,34897 ,726,727,726 ,0,0,0}, {37459,34042,37265 ,727,727,727 ,0,0,0}, - {36159,36162,37262 ,726,20124,727 ,0,0,0}, {36162,36267,37262 ,20124,726,727 ,0,0,0}, - {36156,36158,37263 ,727,726,727 ,0,0,0}, {34042,37459,34937 ,727,727,726 ,0,0,0}, - {36150,36152,36265 ,726,20124,727 ,0,0,0}, {34050,34047,36147 ,727,727,727 ,0,0,0}, - {36147,36150,34050 ,727,726,727 ,0,0,0}, {34042,34937,34039 ,727,726,726 ,0,0,0}, - {34046,36142,36144 ,726,726,726 ,0,0,0}, {34047,36144,36146 ,727,726,726 ,0,0,0}, - {36113,34039,34937 ,727,726,726 ,0,0,0}, {36142,34039,36110 ,726,726,726 ,0,0,0}, - {34046,34039,36142 ,726,726,726 ,0,0,0}, {34042,34041,37265 ,727,726,727 ,0,0,0}, - {37460,36253,37261 ,727,727,726 ,0,0,0}, {36911,35972,36260 ,20124,726,726 ,0,0,0}, - {37260,37261,36226 ,726,726,727 ,0,0,0}, {37261,37260,37460 ,726,726,727 ,0,0,0}, - {36260,36224,36911 ,726,727,20124 ,0,0,0}, {36911,35975,35972 ,20124,20124,726 ,0,0,0}, - {35978,37266,35980 ,726,20124,726 ,0,0,0}, {37266,35978,36268 ,20124,726,726 ,0,0,0}, - {34064,35980,37267 ,20124,726,20124 ,0,0,0}, {34053,34909,34060 ,726,726,726 ,0,0,0}, - {34061,36274,37264 ,726,727,20124 ,0,0,0}, {34909,36273,34060 ,726,727,726 ,0,0,0}, - {34053,34893,34908 ,726,20124,726 ,0,0,0}, {34056,34055,34894 ,727,727,20124 ,0,0,0}, - {34053,34056,34893 ,726,727,20124 ,0,0,0}, {34897,34055,34058 ,726,727,726 ,0,0,0}, - {34894,34055,34896 ,20124,727,20124 ,0,0,0}, {35705,36469,35703 ,1793,726,1793 ,0,0,0}, - {37178,37179,36469 ,726,727,726 ,0,0,0}, {37461,37462,37463 ,730,730,730 ,0,0,0}, - {37464,37465,37466 ,730,730,730 ,0,0,0}, {35142,35140,37467 ,730,730,730 ,0,0,0}, - {37468,37469,37470 ,730,730,730 ,0,0,0}, {37471,37472,37463 ,730,730,730 ,0,0,0}, - {37462,37473,37463 ,730,730,730 ,0,0,0}, {37474,37475,37476 ,730,730,730 ,0,0,0}, - {37463,37477,37478 ,730,730,730 ,0,0,0}, {37477,37463,37472 ,730,730,730 ,0,0,0}, - {35956,34230,35957 ,730,730,730 ,0,0,0}, {34882,34211,34885 ,730,730,730 ,0,0,0}, - {37479,37480,35154 ,730,730,730 ,0,0,0}, {37478,37481,37482 ,730,730,730 ,0,0,0}, - {34205,34216,37483 ,730,730,730 ,0,0,0}, {34890,37484,37485 ,730,730,730 ,0,0,0}, - {37482,35158,37480 ,730,730,730 ,0,0,0}, {35160,37481,35161 ,730,730,730 ,0,0,0}, - {37478,37486,37487 ,730,730,730 ,0,0,0}, {37478,37487,37481 ,730,730,730 ,0,0,0}, - {37488,35178,35177 ,730,730,730 ,0,0,0}, {35182,35178,37488 ,730,730,730 ,0,0,0}, - {37489,35146,37490 ,730,730,730 ,0,0,0}, {37491,37492,37493 ,730,730,730 ,0,0,0}, - {37494,37495,37496 ,730,730,730 ,0,0,0}, {37497,37498,37499 ,730,730,730 ,0,0,0}, - {37500,37499,37498 ,730,730,730 ,0,0,0}, {37499,37501,37497 ,730,730,730 ,0,0,0}, - {37491,37500,37498 ,730,730,730 ,0,0,0}, {37491,37493,37500 ,730,730,730 ,0,0,0}, - {37502,37503,37501 ,730,730,730 ,0,0,0}, {37497,37501,37503 ,730,730,730 ,0,0,0}, - {37504,37505,34164 ,730,730,730 ,0,0,0}, {37506,37503,37502 ,730,730,730 ,0,0,0}, - {34517,34152,2073 ,730,730,730 ,0,0,0}, {37507,37508,37509 ,730,730,730 ,0,0,0}, - {37510,37511,37512 ,730,730,730 ,0,0,0}, {34234,37513,37514 ,730,730,730 ,0,0,0}, - {37515,37516,37517 ,730,730,730 ,0,0,0}, {37507,37518,37519 ,730,730,730 ,0,0,0}, - {36075,37520,37521 ,730,730,730 ,0,0,0}, {37522,37523,37524 ,730,730,730 ,0,0,0}, - {37525,37526,37527 ,730,730,730 ,0,0,0}, {36057,34480,36054 ,730,730,730 ,0,0,0}, - {37528,34071,34467 ,730,730,730 ,0,0,0}, {34552,37529,34570 ,730,730,730 ,0,0,0}, - {34040,34938,37530 ,730,730,730 ,0,0,0}, {34087,34576,34085 ,730,730,730 ,0,0,0}, - {34076,36084,36081 ,730,730,730 ,0,0,0}, {36051,34477,34458 ,730,730,730 ,0,0,0}, - {37525,37527,35819 ,730,730,730 ,0,0,0}, {36051,36053,34477 ,730,730,730 ,0,0,0}, - {35835,34079,35833 ,730,730,730 ,0,0,0}, {34885,34213,34886 ,730,730,730 ,0,0,0}, - {34049,4039,36149 ,730,730,730 ,0,0,0}, {37531,37532,37533 ,730,730,730 ,0,0,0}, - {36063,34488,34486 ,730,730,730 ,0,0,0}, {37534,37535,35942 ,730,730,730 ,0,0,0}, - {37536,34913,37537 ,730,730,730 ,0,0,0}, {37532,37538,37539 ,730,730,730 ,0,0,0}, - {37540,37541,37542 ,730,730,730 ,0,0,0}, {34892,34054,34052 ,730,730,730 ,0,0,0}, - {37543,37544,37545 ,730,730,730 ,0,0,0}, {34150,2073,34152 ,730,730,730 ,0,0,0}, - {34038,36109,36111 ,730,730,730 ,0,0,0}, {34854,34851,37546 ,730,730,730 ,0,0,0}, - {37547,37548,37549 ,730,730,730 ,0,0,0}, {35824,34174,35825 ,730,730,730 ,0,0,0}, - {34935,34938,36112 ,730,730,730 ,0,0,0}, {35951,37550,37551 ,730,730,730 ,0,0,0}, - {35828,37509,37508 ,730,730,730 ,0,0,0}, {34848,37552,37553 ,730,730,730 ,0,0,0}, - {35967,34135,35965 ,730,730,730 ,0,0,0}, {34497,34496,37554 ,730,730,730 ,0,0,0}, - {37555,34255,34250 ,730,730,730 ,0,0,0}, {37556,37557,34859 ,730,730,730 ,0,0,0}, - {37558,34244,37559 ,730,730,730 ,0,0,0}, {34247,34501,34248 ,730,730,730 ,0,0,0}, - {34248,34503,34250 ,730,730,730 ,0,0,0}, {37510,37560,37511 ,730,730,730 ,0,0,0}, - {34234,37561,34236 ,730,730,730 ,0,0,0}, {37562,34550,37563 ,730,730,730 ,0,0,0}, - {35824,35822,34174 ,730,730,730 ,0,0,0}, {34258,37564,37565 ,730,730,730 ,0,0,0}, - {37543,37523,37544 ,730,730,730 ,0,0,0}, {37566,37567,37568 ,730,730,730 ,0,0,0}, - {37569,34166,34164 ,730,730,730 ,0,0,0}, {37570,37571,37572 ,730,730,730 ,0,0,0}, - {37573,37574,37575 ,730,730,730 ,0,0,0}, {37576,37575,37577 ,730,730,730 ,0,0,0}, - {37578,34150,37579 ,730,730,730 ,0,0,0}, {34169,34171,37580 ,730,730,730 ,0,0,0}, - {37541,34545,37542 ,730,730,730 ,0,0,0}, {37581,37574,34974 ,730,730,730 ,0,0,0}, - {37582,37583,37584 ,730,730,730 ,0,0,0}, {37585,37579,34149 ,730,730,730 ,0,0,0}, - {37542,34545,34542 ,730,730,730 ,0,0,0}, {37581,34974,34329 ,730,730,730 ,0,0,0}, - {35821,35819,37586 ,730,730,730 ,0,0,0}, {37587,37588,37589 ,730,730,730 ,0,0,0}, - {34520,34519,34334 ,730,730,730 ,0,0,0}, {34483,36057,36059 ,730,730,730 ,0,0,0}, - {36059,36060,34484 ,730,730,730 ,0,0,0}, {34080,34079,37590 ,730,730,730 ,0,0,0}, - {34079,34090,35830 ,730,730,730 ,0,0,0}, {37591,37592,37593 ,730,730,730 ,0,0,0}, - {37594,35835,35836 ,730,730,730 ,0,0,0}, {35123,35122,37595 ,730,730,730 ,0,0,0}, - {34536,37596,37597 ,730,730,730 ,0,0,0}, {37506,37598,37599 ,730,730,730 ,0,0,0}, - {37600,37601,37602 ,730,730,730 ,0,0,0}, {37603,34342,37604 ,730,730,730 ,0,0,0}, - {37605,37601,37600 ,730,730,730 ,0,0,0}, {37606,37542,34542 ,730,730,730 ,0,0,0}, - {34956,34960,37607 ,730,730,730 ,0,0,0}, {37605,37608,37609 ,730,730,730 ,0,0,0}, - {37610,37611,37612 ,730,730,730 ,0,0,0}, {37613,37608,37614 ,730,730,730 ,0,0,0}, - {36107,36105,34558 ,730,730,730 ,0,0,0}, {37615,37616,37613 ,730,730,730 ,0,0,0}, - {37616,37615,34962 ,730,730,730 ,0,0,0}, {37617,34969,34968 ,730,730,730 ,0,0,0}, - {37595,34962,37615 ,730,730,730 ,0,0,0}, {34953,37618,37619 ,730,730,730 ,0,0,0}, - {37599,37598,35116 ,730,730,730 ,0,0,0}, {37502,37598,37506 ,730,730,730 ,0,0,0}, - {37620,35270,35261 ,730,730,730 ,0,0,0}, {37493,37492,37621 ,730,730,730 ,0,0,0}, - {35663,35666,37622 ,730,730,730 ,0,0,0}, {37623,35629,37624 ,730,730,730 ,0,0,0}, - {37625,37626,35264 ,730,730,730 ,0,0,0}, {35627,37627,37628 ,730,730,730 ,0,0,0}, - {37625,35273,37629 ,730,730,730 ,0,0,0}, {37630,37631,37632 ,730,730,730 ,0,0,0}, - {37633,37634,37635 ,730,730,730 ,0,0,0}, {37636,37637,37638 ,730,730,730 ,0,0,0}, - {37639,35247,35242 ,730,730,730 ,0,0,0}, {37640,37641,37642 ,730,730,730 ,0,0,0}, - {37637,37643,37644 ,730,730,730 ,0,0,0}, {37645,37646,37647 ,730,730,730 ,0,0,0}, - {37648,37649,37650 ,730,730,730 ,0,0,0}, {37651,37652,37653 ,730,730,730 ,0,0,0}, - {37648,35666,37654 ,730,730,730 ,0,0,0}, {35680,37655,37656 ,730,730,730 ,0,0,0}, - {35678,37657,37655 ,730,730,730 ,0,0,0}, {35680,35678,37655 ,730,730,730 ,0,0,0}, - {37642,37638,37658 ,730,730,730 ,0,0,0}, {37659,37660,37661 ,730,730,730 ,0,0,0}, - {37662,37657,35676 ,730,730,730 ,0,0,0}, {37663,35292,37664 ,730,730,730 ,0,0,0}, - {35238,35234,37665 ,730,730,730 ,0,0,0}, {37666,35614,37667 ,730,730,730 ,0,0,0}, - {37668,37669,37670 ,730,730,730 ,0,0,0}, {37671,37672,37673 ,730,730,730 ,0,0,0}, - {37674,37675,37494 ,730,730,730 ,0,0,0}, {37672,37676,37677 ,730,730,730 ,0,0,0}, - {37676,37672,37671 ,730,730,730 ,0,0,0}, {37678,37677,37679 ,730,730,730 ,0,0,0}, - {37676,37679,37677 ,730,730,730 ,0,0,0}, {37680,37681,37678 ,730,730,730 ,0,0,0}, - {37678,37679,37680 ,730,730,730 ,0,0,0}, {34606,37682,37683 ,730,730,730 ,0,0,0}, - {37684,37685,37686 ,730,730,730 ,0,0,0}, {37687,37688,37689 ,730,730,730 ,0,0,0}, - {37690,37691,37692 ,730,730,730 ,0,0,0}, {37693,37694,37695 ,730,730,730 ,0,0,0}, - {37696,37697,37698 ,730,730,730 ,0,0,0}, {37699,35872,37700 ,730,730,730 ,0,0,0}, - {37701,34191,37702 ,730,730,730 ,0,0,0}, {37703,34183,34185 ,730,730,730 ,0,0,0}, - {37704,37705,37706 ,730,730,730 ,0,0,0}, {34651,34650,37707 ,730,730,730 ,0,0,0}, - {37708,36013,37709 ,730,730,730 ,0,0,0}, {34650,34653,37710 ,730,730,730 ,0,0,0}, - {34657,34660,34194 ,730,730,730 ,0,0,0}, {37710,34653,37701 ,730,730,730 ,0,0,0}, - {37711,36011,37708 ,730,730,730 ,0,0,0}, {36005,37712,36002 ,730,730,730 ,0,0,0}, - {37683,34607,34606 ,730,730,730 ,0,0,0}, {37704,37699,37700 ,730,730,730 ,0,0,0}, - {37713,34202,37714 ,730,730,730 ,0,0,0}, {37715,37695,37716 ,730,730,730 ,0,0,0}, - {35866,34118,35868 ,730,730,730 ,0,0,0}, {34118,35869,35868 ,730,730,730 ,0,0,0}, - {37717,35987,37718 ,730,730,730 ,0,0,0}, {34670,34096,34672 ,730,730,730 ,0,0,0}, - {37719,37715,37716 ,730,730,730 ,0,0,0}, {37692,3049,37690 ,730,730,730 ,0,0,0}, - {34107,34118,35866 ,730,730,730 ,0,0,0}, {37720,34643,34647 ,730,730,730 ,0,0,0}, - {34674,34096,34094 ,730,730,730 ,0,0,0}, {37721,34113,37722 ,730,730,730 ,0,0,0}, - {34104,36020,36017 ,730,730,730 ,0,0,0}, {34110,37723,34115 ,730,730,730 ,0,0,0}, - {34110,34108,37724 ,730,730,730 ,0,0,0}, {34669,34666,34099 ,730,730,730 ,0,0,0}, - {37592,37725,37593 ,730,730,730 ,0,0,0}, {37682,37726,37683 ,730,730,730 ,0,0,0}, - {37688,37727,34273 ,730,730,730 ,0,0,0}, {3049,37728,34595 ,730,730,730 ,0,0,0}, - {34591,34281,34588 ,730,730,730 ,0,0,0}, {37682,34603,37729 ,730,730,730 ,0,0,0}, - {37730,34267,37731 ,730,730,730 ,0,0,0}, {34272,37732,34261 ,730,730,730 ,0,0,0}, - {34264,34628,37733 ,730,730,730 ,0,0,0}, {37734,34262,37735 ,730,730,730 ,0,0,0}, - {34600,34276,34601 ,730,730,730 ,0,0,0}, {37736,37737,37738 ,730,730,730 ,0,0,0}, - {37739,34286,37740 ,730,730,730 ,0,0,0}, {37741,34360,34359 ,730,730,730 ,0,0,0}, - {34618,34621,37742 ,730,730,730 ,0,0,0}, {34615,37743,34611 ,730,730,730 ,0,0,0}, - {34628,37744,34625 ,730,730,730 ,0,0,0}, {34621,34623,37745 ,730,730,730 ,0,0,0}, - {3171,37746,36026 ,730,730,730 ,0,0,0}, {37747,34365,34634 ,730,730,730 ,0,0,0}, - {34700,36043,36041 ,730,730,730 ,0,0,0}, {35252,37748,37749 ,730,730,730 ,0,0,0}, - {35035,37750,35037 ,730,730,730 ,0,0,0}, {37750,37681,37680 ,730,730,730 ,0,0,0}, - {34365,34637,34634 ,730,730,730 ,0,0,0}, {35863,37751,35865 ,730,730,730 ,0,0,0}, - {34703,34701,36039 ,730,730,730 ,0,0,0}, {34703,36038,3029 ,730,730,730 ,0,0,0}, - {35012,37752,35013 ,730,730,730 ,0,0,0}, {37753,37754,37755 ,730,730,730 ,0,0,0}, - {37756,37737,37757 ,730,730,730 ,0,0,0}, {37758,37755,37754 ,730,730,730 ,0,0,0}, - {34694,37759,34695 ,730,730,730 ,0,0,0}, {37758,37760,35007 ,730,730,730 ,0,0,0}, - {37761,37762,35863 ,730,730,730 ,0,0,0}, {37763,35003,35000 ,730,730,730 ,0,0,0}, - {37764,37765,37766 ,730,730,730 ,0,0,0}, {34997,37767,35010 ,730,730,730 ,0,0,0}, - {37766,37768,37769 ,730,730,730 ,0,0,0}, {35018,35015,37770 ,730,730,730 ,0,0,0}, - {37771,37671,37673 ,730,730,730 ,0,0,0}, {37674,37771,37675 ,730,730,730 ,0,0,0}, - {37673,37675,37771 ,730,730,730 ,0,0,0}, {37772,37773,37774 ,730,730,730 ,0,0,0}, - {37773,37775,37774 ,730,730,730 ,0,0,0}, {35615,35614,37666 ,730,730,730 ,0,0,0}, - {37772,37776,37777 ,730,730,730 ,0,0,0}, {37778,37779,37780 ,730,730,730 ,0,0,0}, - {37781,35611,35609 ,730,730,730 ,0,0,0}, {37782,35497,35498 ,730,730,730 ,0,0,0}, - {35370,35361,35208 ,730,730,730 ,0,0,0}, {35501,37783,35498 ,730,730,730 ,0,0,0}, - {37784,37785,37786 ,730,730,730 ,0,0,0}, {37787,37788,37789 ,730,730,730 ,0,0,0}, - {37790,37791,37792 ,730,730,730 ,0,0,0}, {37793,37787,37794 ,730,730,730 ,0,0,0}, - {35691,37795,35688 ,730,730,730 ,0,0,0}, {37796,35698,37785 ,730,730,730 ,0,0,0}, - {37797,37798,37799 ,730,730,730 ,0,0,0}, {37800,35681,35685 ,730,730,730 ,0,0,0}, - {37800,35689,35688 ,730,730,730 ,0,0,0}, {37801,35518,35520 ,730,730,730 ,0,0,0}, - {35695,37802,37803 ,730,730,730 ,0,0,0}, {37803,37795,35693 ,730,730,730 ,0,0,0}, - {37804,37805,37801 ,730,730,730 ,0,0,0}, {37806,37792,37784 ,730,730,730 ,0,0,0}, - {35366,35212,35371 ,730,730,730 ,0,0,0}, {35221,35224,35377 ,730,730,730 ,0,0,0}, - {35426,35427,37807 ,730,730,730 ,0,0,0}, {37808,37809,37810 ,730,730,730 ,0,0,0}, - {37635,37811,37812 ,730,730,730 ,0,0,0}, {37813,37814,37798 ,730,730,730 ,0,0,0}, - {37814,37813,37810 ,730,730,730 ,0,0,0}, {37813,37798,37797 ,730,730,730 ,0,0,0}, - {37815,37816,37799 ,730,730,730 ,0,0,0}, {37797,37799,37816 ,730,730,730 ,0,0,0}, - {37817,37816,37815 ,730,730,730 ,0,0,0}, {35907,37818,35909 ,730,730,730 ,0,0,0}, - {37819,34809,34811 ,730,730,730 ,0,0,0}, {37820,37821,37822 ,730,730,730 ,0,0,0}, - {37823,37824,34426 ,730,730,730 ,0,0,0}, {34407,37825,37826 ,730,730,730 ,0,0,0}, - {37827,34788,34787 ,730,730,730 ,0,0,0}, {35780,2131,34765 ,730,730,730 ,0,0,0}, - {37828,37829,37830 ,730,730,730 ,0,0,0}, {34732,34731,37831 ,730,730,730 ,0,0,0}, - {37832,37833,37834 ,730,730,730 ,0,0,0}, {37835,34747,37836 ,730,730,730 ,0,0,0}, - {37835,34744,34747 ,730,730,730 ,0,0,0}, {37837,34734,37838 ,730,730,730 ,0,0,0}, - {34751,2950,34390 ,730,730,730 ,0,0,0}, {34398,37839,37840 ,730,730,730 ,0,0,0}, - {37841,37842,37843 ,730,730,730 ,0,0,0}, {37844,37845,37846 ,730,730,730 ,0,0,0}, - {37847,37848,37849 ,730,730,730 ,0,0,0}, {37850,37851,37852 ,730,730,730 ,0,0,0}, - {37853,37854,37855 ,730,730,730 ,0,0,0}, {37856,34413,37857 ,730,730,730 ,0,0,0}, - {37858,37859,35797 ,730,730,730 ,0,0,0}, {37823,34426,37860 ,730,730,730 ,0,0,0}, - {34725,34416,34726 ,730,730,730 ,0,0,0}, {37861,37862,37863 ,730,730,730 ,0,0,0}, - {34440,37864,34429 ,730,730,730 ,0,0,0}, {37865,37866,37821 ,730,730,730 ,0,0,0}, - {34444,34443,37867 ,730,730,730 ,0,0,0}, {37868,34818,34800 ,730,730,730 ,0,0,0}, - {34437,34774,34435 ,730,730,730 ,0,0,0}, {37869,35933,37870 ,730,730,730 ,0,0,0}, - {37871,34807,37872 ,730,730,730 ,0,0,0}, {34449,34451,34824 ,730,730,730 ,0,0,0}, - {37873,37874,37875 ,730,730,730 ,0,0,0}, {34779,34781,37876 ,730,730,730 ,0,0,0}, - {37877,37878,35792 ,730,730,730 ,0,0,0}, {34811,37879,37819 ,730,730,730 ,0,0,0}, - {2941,37880,34404 ,730,730,730 ,0,0,0}, {34790,37881,37882 ,730,730,730 ,0,0,0}, - {37883,37884,34796 ,730,730,730 ,0,0,0}, {34409,37885,37825 ,730,730,730 ,0,0,0}, - {34454,35918,34443 ,730,730,730 ,0,0,0}, {37856,37886,34413 ,730,730,730 ,0,0,0}, - {34728,37887,37888 ,730,730,730 ,0,0,0}, {35802,35913,35912 ,730,730,730 ,0,0,0}, - {37874,37818,35907 ,730,730,730 ,0,0,0}, {37889,37830,37829 ,730,730,730 ,0,0,0}, - {37890,37851,37891 ,730,730,730 ,0,0,0}, {37888,34731,34728 ,730,730,730 ,0,0,0}, - {37888,37892,37831 ,730,730,730 ,0,0,0}, {37853,37893,37854 ,730,730,730 ,0,0,0}, - {34731,37888,37831 ,730,730,730 ,0,0,0}, {37847,37894,37895 ,730,730,730 ,0,0,0}, - {35720,37896,35721 ,730,730,730 ,0,0,0}, {37849,37848,37897 ,730,730,730 ,0,0,0}, - {37898,37899,37900 ,730,730,730 ,0,0,0}, {35916,35803,37901 ,730,730,730 ,0,0,0}, - {37902,34374,34373 ,730,730,730 ,0,0,0}, {34744,37903,34745 ,730,730,730 ,0,0,0}, - {37904,37905,37906 ,730,730,730 ,0,0,0}, {37907,34737,37908 ,730,730,730 ,0,0,0}, - {34765,34763,35780 ,730,730,730 ,0,0,0}, {35209,35366,35370 ,730,730,730 ,0,0,0}, - {34757,35783,34759 ,730,730,730 ,0,0,0}, {37909,37910,37911 ,730,730,730 ,0,0,0}, - {35777,35788,37912 ,730,730,730 ,0,0,0}, {35050,37913,37914 ,730,730,730 ,0,0,0}, - {37913,35050,35789 ,730,730,730 ,0,0,0}, {35041,37915,37916 ,730,730,730 ,0,0,0}, - {37917,35788,35789 ,730,730,730 ,0,0,0}, {37917,37918,35788 ,730,730,730 ,0,0,0}, - {35062,37919,37920 ,730,730,730 ,0,0,0}, {37921,37922,37918 ,730,730,730 ,0,0,0}, - {37904,37923,37905 ,730,730,730 ,0,0,0}, {37924,37905,37922 ,730,730,730 ,0,0,0}, - {37919,34984,37925 ,730,730,730 ,0,0,0}, {37814,37810,37809 ,730,730,730 ,0,0,0}, - {37809,37808,37926 ,730,730,730 ,0,0,0}, {37927,37928,37926 ,730,730,730 ,0,0,0}, - {37926,37808,37927 ,730,730,730 ,0,0,0}, {37811,37929,37812 ,730,730,730 ,0,0,0}, - {37807,35427,37930 ,730,730,730 ,0,0,0}, {37909,37633,37910 ,730,730,730 ,0,0,0}, - {35366,35209,35212 ,730,730,730 ,0,0,0}, {35361,35129,35208 ,730,730,730 ,0,0,0}, - {35189,37931,37932 ,730,730,730 ,0,0,0}, {35373,35214,35215 ,730,730,730 ,0,0,0}, - {37933,35733,35714 ,730,730,730 ,0,0,0}, {35734,35733,37934 ,730,730,730 ,0,0,0}, - {35736,35734,37935 ,730,730,730 ,0,0,0}, {35713,37936,37933 ,730,730,730 ,0,0,0}, - {35730,37937,37938 ,730,730,730 ,0,0,0}, {37939,37936,35717 ,730,730,730 ,0,0,0}, - {35720,35723,37896 ,730,730,730 ,0,0,0}, {37940,35742,35740 ,730,730,730 ,0,0,0}, - {35744,35742,37940 ,730,730,730 ,0,0,0}, {35725,37941,35723 ,730,730,730 ,0,0,0}, - {37942,35358,37943 ,730,730,730 ,0,0,0}, {33841,37944,37945 ,730,730,730 ,0,0,0}, - {35142,37946,35147 ,730,730,730 ,0,0,0}, {37947,35201,35203 ,730,730,730 ,0,0,0}, - {35567,37948,35563 ,730,730,730 ,0,0,0}, {37949,37950,37951 ,730,730,730 ,0,0,0}, - {37952,37953,37950 ,730,730,730 ,0,0,0}, {37468,37954,37469 ,730,730,730 ,0,0,0}, - {37955,37468,37470 ,730,730,730 ,0,0,0}, {37956,37957,37954 ,730,730,730 ,0,0,0}, - {37469,37954,37957 ,730,730,730 ,0,0,0}, {35072,37958,37959 ,730,730,730 ,0,0,0}, - {35072,37959,37960 ,730,730,730 ,0,0,0}, {37550,37961,37551 ,730,730,730 ,0,0,0}, - {34854,37546,37962 ,730,730,730 ,0,0,0}, {34848,37963,37552 ,730,730,730 ,0,0,0}, - {34132,37964,37965 ,730,730,730 ,0,0,0}, {37966,34121,37967 ,730,730,730 ,0,0,0}, - {37968,35977,37969 ,730,730,730 ,0,0,0}, {37970,37971,36139 ,730,730,730 ,0,0,0}, - {34136,34135,37972 ,730,730,730 ,0,0,0}, {34941,34922,37973 ,730,730,730 ,0,0,0}, - {36124,36127,34925 ,730,730,730 ,0,0,0}, {36139,37971,36136 ,730,730,730 ,0,0,0}, - {36124,34925,34929 ,730,730,730 ,0,0,0}, {34141,34143,34947 ,730,730,730 ,0,0,0}, - {34928,34931,36118 ,730,730,730 ,0,0,0}, {37974,37975,34062 ,730,730,730 ,0,0,0}, - {34052,34911,34910 ,730,730,730 ,0,0,0}, {34933,36117,34931 ,730,730,730 ,0,0,0}, - {34135,34146,35962 ,730,730,730 ,0,0,0}, {35962,34146,35961 ,730,730,730 ,0,0,0}, - {37976,35941,35939 ,730,730,730 ,0,0,0}, {37977,37978,34043 ,730,730,730 ,0,0,0}, - {37979,37980,37981 ,730,730,730 ,0,0,0}, {37982,37983,37984 ,730,730,730 ,0,0,0}, - {37536,34916,34913 ,730,730,730 ,0,0,0}, {4039,36154,36151 ,730,730,730 ,0,0,0}, - {37985,37986,3917 ,730,730,730 ,0,0,0}, {34873,34306,34304 ,730,730,730 ,0,0,0}, - {37987,34220,37988 ,730,730,730 ,0,0,0}, {34227,37989,34225 ,730,730,730 ,0,0,0}, - {34222,34220,37990 ,730,730,730 ,0,0,0}, {34208,34888,34886 ,730,730,730 ,0,0,0}, - {37991,37992,37993 ,730,730,730 ,0,0,0}, {35956,35954,34230 ,730,730,730 ,0,0,0}, - {35063,37994,35076 ,730,730,730 ,0,0,0}, {37995,37996,34295 ,730,730,730 ,0,0,0}, - {37474,37476,37997 ,730,730,730 ,0,0,0}, {34311,34306,37998 ,730,730,730 ,0,0,0}, - {37999,38000,38001 ,730,730,730 ,0,0,0}, {38002,37991,38003 ,730,730,730 ,0,0,0}, - {38004,38005,37536 ,730,730,730 ,0,0,0}, {38006,36155,38007 ,730,730,730 ,0,0,0}, - {38008,38009,34314 ,730,730,730 ,0,0,0}, {38010,38011,38012 ,730,730,730 ,0,0,0}, - {37994,35063,38013 ,730,730,730 ,0,0,0}, {37536,38005,34916 ,730,730,730 ,0,0,0}, - {38014,34292,34290 ,730,730,730 ,0,0,0}, {35081,38015,38016 ,730,730,730 ,0,0,0}, - {38017,34289,34300 ,730,730,730 ,0,0,0}, {38018,38019,38016 ,730,730,730 ,0,0,0}, - {35073,38020,35070 ,730,730,730 ,0,0,0}, {38021,37959,38022 ,730,730,730 ,0,0,0}, - {38023,38024,38025 ,730,730,730 ,0,0,0}, {37959,37958,38022 ,730,730,730 ,0,0,0}, - {38025,38026,38027 ,730,730,730 ,0,0,0}, {35101,38024,35103 ,730,730,730 ,0,0,0}, - {37955,37470,37949 ,730,730,730 ,0,0,0}, {37956,38026,38028 ,730,730,730 ,0,0,0}, - {37950,37953,37951 ,730,730,730 ,0,0,0}, {37949,37951,37955 ,730,730,730 ,0,0,0}, - {37952,37942,37953 ,730,730,730 ,0,0,0}, {37947,38029,35201 ,730,730,730 ,0,0,0}, - {37952,38030,37942 ,730,730,730 ,0,0,0}, {35579,35578,37948 ,730,730,730 ,0,0,0}, - {38031,38032,35195 ,730,730,730 ,0,0,0}, {35192,38033,35191 ,730,730,730 ,0,0,0}, - {38034,38035,38036 ,730,730,730 ,0,0,0}, {37629,35266,38037 ,730,730,730 ,0,0,0}, - {35151,38038,35152 ,730,730,730 ,0,0,0}, {38037,35270,37620 ,730,730,730 ,0,0,0}, - {35129,38030,35130 ,730,730,730 ,0,0,0}, {35165,35164,37488 ,730,730,730 ,0,0,0}, - {35165,37488,35177 ,730,730,730 ,0,0,0}, {37481,35164,35175 ,730,730,730 ,0,0,0}, - {35164,37481,37488 ,730,730,730 ,0,0,0}, {37481,35173,35171 ,730,730,730 ,0,0,0}, - {35175,35173,37481 ,730,730,730 ,0,0,0}, {37481,35166,35170 ,730,730,730 ,0,0,0}, - {35171,35166,37481 ,730,730,730 ,0,0,0}, {37461,37463,38039 ,730,730,730 ,0,0,0}, - {35170,35161,37481 ,730,730,730 ,0,0,0}, {38040,35776,38041 ,730,730,730 ,0,0,0}, - {38040,38039,35776 ,730,730,730 ,0,0,0}, {37479,35156,38042 ,730,730,730 ,0,0,0}, - {38043,35148,38044 ,730,730,730 ,0,0,0}, {38045,35762,38046 ,730,730,730 ,0,0,0}, - {38047,35138,38048 ,730,730,730 ,0,0,0}, {35142,37467,37946 ,730,730,730 ,0,0,0}, - {35135,38049,35133 ,730,730,730 ,0,0,0}, {35745,38050,35746 ,730,730,730 ,0,0,0}, - {35759,33209,35587 ,730,730,730 ,0,0,0}, {38033,35192,38032 ,730,730,730 ,0,0,0}, - {35581,35579,35753 ,730,730,730 ,0,0,0}, {35195,35197,38031 ,730,730,730 ,0,0,0}, - {38051,35130,38030 ,730,730,730 ,0,0,0}, {38029,35197,35198 ,730,730,730 ,0,0,0}, - {38052,35573,38053 ,730,730,730 ,0,0,0}, {38051,37947,35203 ,730,730,730 ,0,0,0}, - {35198,35201,38029 ,730,730,730 ,0,0,0}, {35204,35130,38051 ,730,730,730 ,0,0,0}, - {35203,35204,38051 ,730,730,730 ,0,0,0}, {35377,35365,35221 ,730,730,730 ,0,0,0}, - {35364,35375,35218 ,730,730,730 ,0,0,0}, {35373,35215,35375 ,730,730,730 ,0,0,0}, - {38054,38055,38056 ,730,730,730 ,0,0,0}, {35364,35220,35365 ,730,730,730 ,0,0,0}, - {35221,35365,35220 ,730,730,730 ,0,0,0}, {35414,38057,35412 ,730,730,730 ,0,0,0}, - {35378,35224,35226 ,730,730,730 ,0,0,0}, {35224,35378,35377 ,730,730,730 ,0,0,0}, - {35226,35382,35378 ,730,730,730 ,0,0,0}, {35129,35361,35360 ,730,730,730 ,0,0,0}, - {37942,38030,35360 ,730,730,730 ,0,0,0}, {35227,35382,35226 ,730,730,730 ,0,0,0}, - {38058,38059,38060 ,730,730,730 ,0,0,0}, {38061,38062,38063 ,730,730,730 ,0,0,0}, - {38064,38065,38066 ,730,730,730 ,0,0,0}, {38067,38068,38069 ,730,730,730 ,0,0,0}, - {38070,38071,38072 ,730,730,730 ,0,0,0}, {35420,37807,37668 ,730,730,730 ,0,0,0}, - {38073,37807,38074 ,730,730,730 ,0,0,0}, {35285,38075,38076 ,730,730,730 ,0,0,0}, - {38077,38078,38079 ,730,730,730 ,0,0,0}, {38080,38081,38082 ,730,730,730 ,0,0,0}, - {38083,35492,35495 ,730,730,730 ,0,0,0}, {38084,38085,35440 ,730,730,730 ,0,0,0}, - {38086,35458,38087 ,730,730,730 ,0,0,0}, {38088,35448,38089 ,730,730,730 ,0,0,0}, - {38090,38091,38092 ,730,730,730 ,0,0,0}, {38093,38094,35593 ,730,730,730 ,0,0,0}, - {38095,38096,35633 ,730,730,730 ,0,0,0}, {35633,33508,38095 ,730,730,730 ,0,0,0}, - {37748,35252,35251 ,730,730,730 ,0,0,0}, {35631,37624,35629 ,730,730,730 ,0,0,0}, - {38097,33525,38098 ,730,730,730 ,0,0,0}, {35638,38099,35639 ,730,730,730 ,0,0,0}, - {38099,35638,38100 ,730,730,730 ,0,0,0}, {35278,37626,35282 ,730,730,730 ,0,0,0}, - {35620,35619,38101 ,730,730,730 ,0,0,0}, {35256,38102,35254 ,730,730,730 ,0,0,0}, - {35256,37749,38102 ,730,730,730 ,0,0,0}, {37492,35254,37621 ,730,730,730 ,0,0,0}, - {37626,35278,35277 ,730,730,730 ,0,0,0}, {37626,35277,35265 ,730,730,730 ,0,0,0}, - {38103,35260,35258 ,730,730,730 ,0,0,0}, {35271,37629,35273 ,730,730,730 ,0,0,0}, - {35260,37620,35261 ,730,730,730 ,0,0,0}, {35254,37492,35258 ,730,730,730 ,0,0,0}, - {35258,37492,38103 ,730,730,730 ,0,0,0}, {38104,38035,38102 ,730,730,730 ,0,0,0}, - {37621,38102,38035 ,730,730,730 ,0,0,0}, {38034,38036,38105 ,730,730,730 ,0,0,0}, - {38035,38104,38036 ,730,730,730 ,0,0,0}, {38106,38107,38034 ,730,730,730 ,0,0,0}, - {38034,38105,38106 ,730,730,730 ,0,0,0}, {38107,37466,37465 ,730,730,730 ,0,0,0}, - {37466,38107,38106 ,730,730,730 ,0,0,0}, {38108,37465,37464 ,730,730,730 ,0,0,0}, - {38109,38108,38110 ,730,730,730 ,0,0,0}, {38108,38109,37465 ,730,730,730 ,0,0,0}, - {38111,37488,38110 ,730,730,730 ,0,0,0}, {38109,38110,37488 ,730,730,730 ,0,0,0}, - {38112,37488,38113 ,730,730,730 ,0,0,0}, {37488,38111,38113 ,730,730,730 ,0,0,0}, - {35182,37488,38114 ,730,730,730 ,0,0,0}, {37488,38112,38114 ,730,730,730 ,0,0,0}, - {38115,35227,38116 ,730,730,730 ,0,0,0}, {38117,35391,33824 ,730,730,730 ,0,0,0}, - {35218,35375,35215 ,730,730,730 ,0,0,0}, {35220,35364,35218 ,730,730,730 ,0,0,0}, - {35371,35214,35373 ,730,730,730 ,0,0,0}, {35214,35371,35212 ,730,730,730 ,0,0,0}, - {35208,35209,35370 ,730,730,730 ,0,0,0}, {38030,35129,35360 ,730,730,730 ,0,0,0}, - {35358,37942,35360 ,730,730,730 ,0,0,0}, {35354,35356,37943 ,730,730,730 ,0,0,0}, - {35354,37943,35358 ,730,730,730 ,0,0,0}, {38118,35356,35352 ,730,730,730 ,0,0,0}, - {35356,38118,37943 ,730,730,730 ,0,0,0}, {35351,37945,35352 ,730,730,730 ,0,0,0}, - {38118,35352,37945 ,730,730,730 ,0,0,0}, {33841,37945,35346 ,730,730,730 ,0,0,0}, - {37945,35351,35346 ,730,730,730 ,0,0,0}, {35347,38119,38120 ,730,730,730 ,0,0,0}, - {35346,35348,38121 ,730,730,730 ,0,0,0}, {37944,33841,35557 ,730,730,730 ,0,0,0}, - {35340,38122,35342 ,730,730,730 ,0,0,0}, {38123,35334,38124 ,730,730,730 ,0,0,0}, - {35338,38125,38126 ,730,730,730 ,0,0,0}, {38127,38128,35386 ,730,730,730 ,0,0,0}, - {38129,38130,35335 ,730,730,730 ,0,0,0}, {35389,38117,38127 ,730,730,730 ,0,0,0}, - {35392,35395,35543 ,730,730,730 ,0,0,0}, {33824,35391,35392 ,730,730,730 ,0,0,0}, - {35543,35395,37940 ,730,730,730 ,0,0,0}, {35385,38131,35335 ,730,730,730 ,0,0,0}, - {35541,37940,35539 ,730,730,730 ,0,0,0}, {38132,35530,35529 ,730,730,730 ,0,0,0}, - {35397,35398,35744 ,730,730,730 ,0,0,0}, {35397,35744,35395 ,730,730,730 ,0,0,0}, - {38133,38134,35403 ,730,730,730 ,0,0,0}, {38135,35401,38134 ,730,730,730 ,0,0,0}, - {35329,35408,38136 ,730,730,730 ,0,0,0}, {35404,35330,38137 ,730,730,730 ,0,0,0}, - {37941,35727,37938 ,730,730,730 ,0,0,0}, {37670,38138,37668 ,730,730,730 ,0,0,0}, - {35415,37668,35414 ,730,730,730 ,0,0,0}, {37669,37668,38139 ,730,730,730 ,0,0,0}, - {35420,37668,35418 ,730,730,730 ,0,0,0}, {37668,35415,35418 ,730,730,730 ,0,0,0}, - {37807,35420,35421 ,730,730,730 ,0,0,0}, {35426,37807,35424 ,730,730,730 ,0,0,0}, - {37807,35421,35424 ,730,730,730 ,0,0,0}, {37807,37930,38074 ,730,730,730 ,0,0,0}, - {37807,38073,38140 ,730,730,730 ,0,0,0}, {38140,37911,37910 ,730,730,730 ,0,0,0}, - {37910,37807,38140 ,730,730,730 ,0,0,0}, {37634,37633,38141 ,730,730,730 ,0,0,0}, - {37909,38141,37633 ,730,730,730 ,0,0,0}, {37635,37634,37811 ,730,730,730 ,0,0,0}, - {38080,37812,38081 ,730,730,730 ,0,0,0}, {38081,37812,37929 ,730,730,730 ,0,0,0}, - {38080,38082,37927 ,730,730,730 ,0,0,0}, {38142,37928,37927 ,730,730,730 ,0,0,0}, - {37927,38082,38142 ,730,730,730 ,0,0,0}, {35601,38143,38144 ,730,730,730 ,0,0,0}, - {38145,38083,35495 ,730,730,730 ,0,0,0}, {38146,38147,35503 ,730,730,730 ,0,0,0}, - {38148,38149,35248 ,730,730,730 ,0,0,0}, {38150,35486,35489 ,730,730,730 ,0,0,0}, - {38151,35491,38152 ,730,730,730 ,0,0,0}, {38153,35435,35485 ,730,730,730 ,0,0,0}, - {38154,35486,38150 ,730,730,730 ,0,0,0}, {38155,32893,37772 ,730,730,730 ,0,0,0}, - {38156,35434,35433 ,730,730,730 ,0,0,0}, {38157,38158,38159 ,730,730,730 ,0,0,0}, - {35448,35447,38089 ,730,730,730 ,0,0,0}, {38088,38160,35446 ,730,730,730 ,0,0,0}, - {38161,35447,35442 ,730,730,730 ,0,0,0}, {38162,38163,38164 ,730,730,730 ,0,0,0}, - {38165,35596,35599 ,730,730,730 ,0,0,0}, {38166,38167,38168 ,730,730,730 ,0,0,0}, - {35301,35303,38169 ,730,730,730 ,0,0,0}, {38170,35298,35301 ,730,730,730 ,0,0,0}, - {35608,38171,35609 ,730,730,730 ,0,0,0}, {38172,35246,38149 ,730,730,730 ,0,0,0}, - {35295,35297,38173 ,730,730,730 ,0,0,0}, {35233,38174,38175 ,730,730,730 ,0,0,0}, - {38086,38087,38068 ,730,730,730 ,0,0,0}, {35298,38176,35297 ,730,730,730 ,0,0,0}, - {38069,38177,38067 ,730,730,730 ,0,0,0}, {38087,38069,38068 ,730,730,730 ,0,0,0}, - {38070,38072,38177 ,730,730,730 ,0,0,0}, {38067,38177,38072 ,730,730,730 ,0,0,0}, - {38071,38070,38066 ,730,730,730 ,0,0,0}, {38178,38065,38064 ,730,730,730 ,0,0,0}, - {38065,38071,38066 ,730,730,730 ,0,0,0}, {38178,37780,37779 ,730,730,730 ,0,0,0}, - {37780,38178,38064 ,730,730,730 ,0,0,0}, {37778,38059,37779 ,730,730,730 ,0,0,0}, - {38060,38061,38058 ,730,730,730 ,0,0,0}, {37778,38060,38059 ,730,730,730 ,0,0,0}, - {38063,38062,38116 ,730,730,730 ,0,0,0}, {38058,38061,38063 ,730,730,730 ,0,0,0}, - {35227,38115,35382 ,730,730,730 ,0,0,0}, {38116,38062,38115 ,730,730,730 ,0,0,0}, - {38179,35953,35951 ,730,730,730 ,0,0,0}, {34905,3897,38180 ,730,730,730 ,0,0,0}, - {34141,34944,38181 ,730,730,730 ,0,0,0}, {38182,38011,38183 ,730,730,730 ,0,0,0}, - {36155,38006,36157 ,730,730,730 ,0,0,0}, {38184,36166,3897 ,730,730,730 ,0,0,0}, - {36161,38185,38186 ,730,730,730 ,0,0,0}, {38187,36169,36167 ,730,730,730 ,0,0,0}, - {38188,38189,38190 ,730,730,730 ,0,0,0}, {38015,35079,35078 ,730,730,730 ,0,0,0}, - {34866,38191,34867 ,730,730,730 ,0,0,0}, {38002,38003,35960 ,730,730,730 ,0,0,0}, - {38192,38193,38194 ,730,730,730 ,0,0,0}, {34208,34890,34888 ,730,730,730 ,0,0,0}, - {34890,34208,34206 ,730,730,730 ,0,0,0}, {37484,34206,38195 ,730,730,730 ,0,0,0}, - {34205,38196,38195 ,730,730,730 ,0,0,0}, {34219,34230,35954 ,730,730,730 ,0,0,0}, - {38197,38198,38199 ,730,730,730 ,0,0,0}, {38200,38201,38202 ,730,730,730 ,0,0,0}, - {3917,34857,37982 ,730,730,730 ,0,0,0}, {37962,38203,34855 ,730,730,730 ,0,0,0}, - {34855,34854,37962 ,730,730,730 ,0,0,0}, {34851,38204,37546 ,730,730,730 ,0,0,0}, - {34849,38204,34851 ,730,730,730 ,0,0,0}, {34841,34843,38205 ,730,730,730 ,0,0,0}, - {38206,37964,34133 ,730,730,730 ,0,0,0}, {34947,34944,34141 ,730,730,730 ,0,0,0}, - {37963,34830,38207 ,730,730,730 ,0,0,0}, {34829,34124,34122 ,730,730,730 ,0,0,0}, - {34952,34950,34138 ,730,730,730 ,0,0,0}, {38208,37973,34922 ,730,730,730 ,0,0,0}, - {38209,35967,35968 ,730,730,730 ,0,0,0}, {36130,36133,38210 ,730,730,730 ,0,0,0}, - {34921,36127,36129 ,730,730,730 ,0,0,0}, {38211,34062,37975 ,730,730,730 ,0,0,0}, - {36121,36123,34929 ,730,730,730 ,0,0,0}, {34928,36118,36121 ,730,730,730 ,0,0,0}, - {34052,34910,34892 ,730,730,730 ,0,0,0}, {36115,36117,34933 ,730,730,730 ,0,0,0}, - {36115,34935,36112 ,730,730,730 ,0,0,0}, {34040,37530,38212 ,730,730,730 ,0,0,0}, - {35791,35802,35910 ,730,730,730 ,0,0,0}, {34722,38213,34719 ,730,730,730 ,0,0,0}, - {37882,37883,34793 ,730,730,730 ,0,0,0}, {37833,38214,38215 ,730,730,730 ,0,0,0}, - {38216,37843,38217 ,730,730,730 ,0,0,0}, {37841,38218,34374 ,730,730,730 ,0,0,0}, - {34395,38219,34393 ,730,730,730 ,0,0,0}, {38220,34379,38221 ,730,730,730 ,0,0,0}, - {38222,38223,38224 ,730,730,730 ,0,0,0}, {34762,34759,35783 ,730,730,730 ,0,0,0}, - {34744,37835,37903 ,730,730,730 ,0,0,0}, {37908,34737,34741 ,730,730,730 ,0,0,0}, - {38225,37903,38226 ,730,730,730 ,0,0,0}, {34741,34745,37908 ,730,730,730 ,0,0,0}, - {38227,38228,38226 ,730,730,730 ,0,0,0}, {38229,34736,37837 ,730,730,730 ,0,0,0}, - {38228,38230,38231 ,730,730,730 ,0,0,0}, {35913,35802,35803 ,730,730,730 ,0,0,0}, - {35912,35910,35802 ,730,730,730 ,0,0,0}, {38232,35044,35048 ,730,730,730 ,0,0,0}, - {35051,38233,35048 ,730,730,730 ,0,0,0}, {38234,38235,38236 ,730,730,730 ,0,0,0}, - {38237,38238,38239 ,730,730,730 ,0,0,0}, {38239,34798,38240 ,730,730,730 ,0,0,0}, - {34794,37883,34796 ,730,730,730 ,0,0,0}, {34821,38241,34449 ,730,730,730 ,0,0,0}, - {38242,37827,34787 ,730,730,730 ,0,0,0}, {38243,38244,34441 ,730,730,730 ,0,0,0}, - {34824,34821,34449 ,730,730,730 ,0,0,0}, {34430,34767,34432 ,730,730,730 ,0,0,0}, - {38242,34768,38245 ,730,730,730 ,0,0,0}, {2165,34827,34446 ,730,730,730 ,0,0,0}, - {37868,34800,37863 ,730,730,730 ,0,0,0}, {38246,35923,35924 ,730,730,730 ,0,0,0}, - {37865,38247,37866 ,730,730,730 ,0,0,0}, {34799,34803,38248 ,730,730,730 ,0,0,0}, - {37871,38248,34803 ,730,730,730 ,0,0,0}, {37872,34807,34806 ,730,730,730 ,0,0,0}, - {38249,34806,34809 ,730,730,730 ,0,0,0}, {34416,34725,34706 ,730,730,730 ,0,0,0}, - {37879,34813,38250 ,730,730,730 ,0,0,0}, {34813,38251,38250 ,730,730,730 ,0,0,0}, - {34404,37880,37885 ,730,730,730 ,0,0,0}, {34108,38252,38253 ,730,730,730 ,0,0,0}, - {34603,37682,34606 ,730,730,730 ,0,0,0}, {38254,36033,36032 ,730,730,730 ,0,0,0}, - {38255,38256,38257 ,730,730,730 ,0,0,0}, {37589,38258,38255 ,730,730,730 ,0,0,0}, - {34180,34178,38259 ,730,730,730 ,0,0,0}, {34199,38260,34197 ,730,730,730 ,0,0,0}, - {34191,34655,34192 ,730,730,730 ,0,0,0}, {38261,38262,34183 ,730,730,730 ,0,0,0}, - {38263,38264,38265 ,730,730,730 ,0,0,0}, {38264,38263,38266 ,730,730,730 ,0,0,0}, - {36008,36011,37711 ,730,730,730 ,0,0,0}, {38267,35999,38268 ,730,730,730 ,0,0,0}, - {37718,35989,38269 ,730,730,730 ,0,0,0}, {34674,34094,35984 ,730,730,730 ,0,0,0}, - {34096,34674,34672 ,730,730,730 ,0,0,0}, {34099,34664,38270 ,730,730,730 ,0,0,0}, - {38271,34113,37721 ,730,730,730 ,0,0,0}, {35981,35983,34094 ,730,730,730 ,0,0,0}, - {38272,3029,38273 ,730,730,730 ,0,0,0}, {35854,38274,38275 ,730,730,730 ,0,0,0}, - {36035,3029,36038 ,730,730,730 ,0,0,0}, {34367,34637,34365 ,730,730,730 ,0,0,0}, - {34701,36041,36039 ,730,730,730 ,0,0,0}, {35873,35874,34370 ,730,730,730 ,0,0,0}, - {35874,34359,34370 ,730,730,730 ,0,0,0}, {36041,34701,34700 ,730,730,730 ,0,0,0}, - {34359,35877,35879 ,730,730,730 ,0,0,0}, {37754,37753,37736 ,730,730,730 ,0,0,0}, - {38276,37754,37736 ,730,730,730 ,0,0,0}, {34640,34362,34642 ,730,730,730 ,0,0,0}, - {34353,34682,34351 ,730,730,730 ,0,0,0}, {38277,34612,34611 ,730,730,730 ,0,0,0}, - {38278,34612,38277 ,730,730,730 ,0,0,0}, {38279,35889,38280 ,730,730,730 ,0,0,0}, - {38281,34286,37739 ,730,730,730 ,0,0,0}, {34619,38282,34615 ,730,730,730 ,0,0,0}, - {34618,37742,38282 ,730,730,730 ,0,0,0}, {34276,34600,34582 ,730,730,730 ,0,0,0}, - {38283,37745,34623 ,730,730,730 ,0,0,0}, {38283,34625,37744 ,730,730,730 ,0,0,0}, - {37733,38284,34264 ,730,730,730 ,0,0,0}, {38285,35810,38286 ,730,730,730 ,0,0,0}, - {36069,36071,38287 ,730,730,730 ,0,0,0}, {38288,34085,34573 ,730,730,730 ,0,0,0}, - {38289,37517,38290 ,730,730,730 ,0,0,0}, {38291,38292,38293 ,730,730,730 ,0,0,0}, - {38294,38295,34241 ,730,730,730 ,0,0,0}, {34233,38296,37513 ,730,730,730 ,0,0,0}, - {38297,37562,38298 ,730,730,730 ,0,0,0}, {38299,38300,38301 ,730,730,730 ,0,0,0}, - {38302,38303,38304 ,730,730,730 ,0,0,0}, {38305,38306,38303 ,730,730,730 ,0,0,0}, - {38307,37582,37584 ,730,730,730 ,0,0,0}, {38308,37548,38309 ,730,730,730 ,0,0,0}, - {37567,38310,38311 ,730,730,730 ,0,0,0}, {38312,2073,37578 ,730,730,730 ,0,0,0}, - {34152,34517,34515 ,730,730,730 ,0,0,0}, {34514,34157,34515 ,730,730,730 ,0,0,0}, - {34155,34514,34511 ,730,730,730 ,0,0,0}, {34155,34509,38313 ,730,730,730 ,0,0,0}, - {34488,37539,37538 ,730,730,730 ,0,0,0}, {34488,36063,36065 ,730,730,730 ,0,0,0}, - {34484,36060,34486 ,730,730,730 ,0,0,0}, {36059,34484,34483 ,730,730,730 ,0,0,0}, - {35830,34090,35829 ,730,730,730 ,0,0,0}, {34483,34480,36057 ,730,730,730 ,0,0,0}, - {34478,36054,34480 ,730,730,730 ,0,0,0}, {34077,36085,36084 ,730,730,730 ,0,0,0}, - {34469,34471,37528 ,730,730,730 ,0,0,0}, {34576,34573,34085 ,730,730,730 ,0,0,0}, - {34066,34458,34457 ,730,730,730 ,0,0,0}, {34068,34457,34461 ,730,730,730 ,0,0,0}, - {2082,34579,34082 ,730,730,730 ,0,0,0}, {34552,38314,37529 ,730,730,730 ,0,0,0}, - {36091,36090,38315 ,730,730,730 ,0,0,0}, {38315,38316,36091 ,730,730,730 ,0,0,0}, - {35845,38317,38318 ,730,730,730 ,0,0,0}, {36097,38314,36099 ,730,730,730 ,0,0,0}, - {37604,34342,38319 ,730,730,730 ,0,0,0}, {36102,36099,34551 ,730,730,730 ,0,0,0}, - {34520,34332,34539 ,730,730,730 ,0,0,0}, {36102,34555,36103 ,730,730,730 ,0,0,0}, - {34559,36105,36103 ,730,730,730 ,0,0,0}, {34971,38320,34328 ,730,730,730 ,0,0,0}, - {35051,38235,38233 ,730,730,730 ,0,0,0}, {2131,35778,38321 ,730,730,730 ,0,0,0}, - {35917,35918,34454 ,730,730,730 ,0,0,0}, {38234,38233,38235 ,730,730,730 ,0,0,0}, - {38234,38236,38240 ,730,730,730 ,0,0,0}, {38240,34798,37884 ,730,730,730 ,0,0,0}, - {37884,38234,38240 ,730,730,730 ,0,0,0}, {34796,37884,34798 ,730,730,730 ,0,0,0}, - {37818,38322,35904 ,730,730,730 ,0,0,0}, {38323,38324,35794 ,730,730,730 ,0,0,0}, - {34443,35921,35923 ,730,730,730 ,0,0,0}, {37883,34794,34793 ,730,730,730 ,0,0,0}, - {38325,35897,35895 ,730,730,730 ,0,0,0}, {35791,35910,35904 ,730,730,730 ,0,0,0}, - {35916,35913,35803 ,730,730,730 ,0,0,0}, {35916,37901,38231 ,730,730,730 ,0,0,0}, - {38231,38230,35916 ,730,730,730 ,0,0,0}, {38227,38230,38228 ,730,730,730 ,0,0,0}, - {38225,38226,38228 ,730,730,730 ,0,0,0}, {38326,38327,38328 ,730,730,730 ,0,0,0}, - {35780,34763,35785 ,730,730,730 ,0,0,0}, {37908,34745,38225 ,730,730,730 ,0,0,0}, - {38329,38330,38331 ,730,730,730 ,0,0,0}, {38332,38333,38334 ,730,730,730 ,0,0,0}, - {35778,2131,35780 ,730,730,730 ,0,0,0}, {38335,38336,38337 ,730,730,730 ,0,0,0}, - {35778,35777,38321 ,730,730,730 ,0,0,0}, {38338,38339,38340 ,730,730,730 ,0,0,0}, - {37912,35788,37918 ,730,730,730 ,0,0,0}, {38321,35777,37912 ,730,730,730 ,0,0,0}, - {37917,35789,35050 ,730,730,730 ,0,0,0}, {35776,38050,38041 ,730,730,730 ,0,0,0}, - {35133,38341,35134 ,730,730,730 ,0,0,0}, {35772,38050,35774 ,730,730,730 ,0,0,0}, - {38050,35776,35774 ,730,730,730 ,0,0,0}, {35768,38050,35771 ,730,730,730 ,0,0,0}, - {38050,35772,35771 ,730,730,730 ,0,0,0}, {35765,38050,35766 ,730,730,730 ,0,0,0}, - {38050,35768,35766 ,730,730,730 ,0,0,0}, {38050,35765,35746 ,730,730,730 ,0,0,0}, - {37948,38050,35749 ,730,730,730 ,0,0,0}, {35745,35749,38050 ,730,730,730 ,0,0,0}, - {35587,35757,35759 ,730,730,730 ,0,0,0}, {35755,35585,35584 ,730,730,730 ,0,0,0}, - {37948,35749,35753 ,730,730,730 ,0,0,0}, {35587,35585,35757 ,730,730,730 ,0,0,0}, - {35191,37931,35189 ,730,730,730 ,0,0,0}, {35138,38047,35140 ,730,730,730 ,0,0,0}, - {37467,35140,38046 ,730,730,730 ,0,0,0}, {35147,37946,38044 ,730,730,730 ,0,0,0}, - {35146,35148,38043 ,730,730,730 ,0,0,0}, {35148,35147,38044 ,730,730,730 ,0,0,0}, - {35151,35146,37489 ,730,730,730 ,0,0,0}, {37490,35146,38043 ,730,730,730 ,0,0,0}, - {38042,35152,38038 ,730,730,730 ,0,0,0}, {38038,35151,37489 ,730,730,730 ,0,0,0}, - {37479,35154,35156 ,730,730,730 ,0,0,0}, {38042,35156,35152 ,730,730,730 ,0,0,0}, - {37480,35158,35154 ,730,730,730 ,0,0,0}, {37482,35160,35158 ,730,730,730 ,0,0,0}, - {37477,37486,37478 ,730,730,730 ,0,0,0}, {35160,37482,37481 ,730,730,730 ,0,0,0}, - {37473,37471,37463 ,730,730,730 ,0,0,0}, {35776,38039,37463 ,730,730,730 ,0,0,0}, - {37940,35395,35744 ,730,730,730 ,0,0,0}, {35409,38342,35408 ,730,730,730 ,0,0,0}, - {35739,35736,37940 ,730,730,730 ,0,0,0}, {35739,37940,35740 ,730,730,730 ,0,0,0}, - {35736,37935,37940 ,730,730,730 ,0,0,0}, {35734,37934,37935 ,730,730,730 ,0,0,0}, - {35733,37933,37934 ,730,730,730 ,0,0,0}, {35713,37933,35714 ,730,730,730 ,0,0,0}, - {35717,37936,35713 ,730,730,730 ,0,0,0}, {35721,37896,37939 ,730,730,730 ,0,0,0}, - {35721,37939,35717 ,730,730,730 ,0,0,0}, {37941,37896,35723 ,730,730,730 ,0,0,0}, - {37941,35725,35727 ,730,730,730 ,0,0,0}, {37938,35727,35730 ,730,730,730 ,0,0,0}, - {38343,38344,37937 ,730,730,730 ,0,0,0}, {37937,35730,38343 ,730,730,730 ,0,0,0}, - {38343,38056,38344 ,730,730,730 ,0,0,0}, {38057,35414,38138 ,730,730,730 ,0,0,0}, - {38056,38055,38344 ,730,730,730 ,0,0,0}, {37668,38054,38139 ,730,730,730 ,0,0,0}, - {38055,38054,37668 ,730,730,730 ,0,0,0}, {35414,37668,38138 ,730,730,730 ,0,0,0}, - {35409,35412,38057 ,730,730,730 ,0,0,0}, {38136,35408,38342 ,730,730,730 ,0,0,0}, - {38342,35409,38057 ,730,730,730 ,0,0,0}, {38137,35329,38136 ,730,730,730 ,0,0,0}, - {38137,38133,35404 ,730,730,730 ,0,0,0}, {38137,35330,35329 ,730,730,730 ,0,0,0}, - {35403,38134,35401 ,730,730,730 ,0,0,0}, {35404,38133,35403 ,730,730,730 ,0,0,0}, - {35401,38135,35398 ,730,730,730 ,0,0,0}, {35744,35398,38135 ,730,730,730 ,0,0,0}, - {38345,37800,38346 ,730,730,730 ,0,0,0}, {38347,38348,38349 ,730,730,730 ,0,0,0}, - {37801,37805,38350 ,730,730,730 ,0,0,0}, {38346,37800,38351 ,730,730,730 ,0,0,0}, - {38352,32876,38353 ,730,730,730 ,0,0,0}, {38354,35504,35430 ,730,730,730 ,0,0,0}, - {35508,35509,38355 ,730,730,730 ,0,0,0}, {35451,38356,35452 ,730,730,730 ,0,0,0}, - {37801,35526,35527 ,730,730,730 ,0,0,0}, {35685,35689,37800 ,730,730,730 ,0,0,0}, - {35688,37795,37800 ,730,730,730 ,0,0,0}, {35693,37795,35691 ,730,730,730 ,0,0,0}, - {35695,37803,35693 ,730,730,730 ,0,0,0}, {35698,37796,37802 ,730,730,730 ,0,0,0}, - {35698,37802,35695 ,730,730,730 ,0,0,0}, {37785,37784,37796 ,730,730,730 ,0,0,0}, - {37806,37784,37786 ,730,730,730 ,0,0,0}, {37794,37792,37791 ,730,730,730 ,0,0,0}, - {37790,37792,37806 ,730,730,730 ,0,0,0}, {38357,37787,37793 ,730,730,730 ,0,0,0}, - {37793,37794,37791 ,730,730,730 ,0,0,0}, {38349,37789,37788 ,730,730,730 ,0,0,0}, - {37788,37787,38357 ,730,730,730 ,0,0,0}, {38347,38358,38348 ,730,730,730 ,0,0,0}, - {38349,38348,37789 ,730,730,730 ,0,0,0}, {38359,38358,38360 ,730,730,730 ,0,0,0}, - {38347,38360,38358 ,730,730,730 ,0,0,0}, {38361,38359,38362 ,730,730,730 ,0,0,0}, - {38359,38360,38362 ,730,730,730 ,0,0,0}, {38363,38364,35712 ,730,730,730 ,0,0,0}, - {38359,38361,38364 ,730,730,730 ,0,0,0}, {37657,35678,35676 ,730,730,730 ,0,0,0}, - {38099,38365,35641 ,730,730,730 ,0,0,0}, {37662,35675,38366 ,730,730,730 ,0,0,0}, - {35675,37662,35676 ,730,730,730 ,0,0,0}, {38366,35672,35670 ,730,730,730 ,0,0,0}, - {35675,35672,38366 ,730,730,730 ,0,0,0}, {38366,35669,35650 ,730,730,730 ,0,0,0}, - {35670,35669,38366 ,730,730,730 ,0,0,0}, {38367,38368,35653 ,730,730,730 ,0,0,0}, - {35657,38367,35653 ,730,730,730 ,0,0,0}, {35661,38369,35659 ,730,730,730 ,0,0,0}, - {35656,38370,38371 ,730,730,730 ,0,0,0}, {38372,35645,35644 ,730,730,730 ,0,0,0}, - {35644,38365,38372 ,730,730,730 ,0,0,0}, {35645,38373,35647 ,730,730,730 ,0,0,0}, - {38372,38373,35645 ,730,730,730 ,0,0,0}, {35647,38374,33525 ,730,730,730 ,0,0,0}, - {37654,37649,37648 ,730,730,730 ,0,0,0}, {37644,37643,37648 ,730,730,730 ,0,0,0}, - {37644,37648,37650 ,730,730,730 ,0,0,0}, {37637,37636,37643 ,730,730,730 ,0,0,0}, - {37638,37642,37636 ,730,730,730 ,0,0,0}, {38375,37641,37640 ,730,730,730 ,0,0,0}, - {37640,37642,37658 ,730,730,730 ,0,0,0}, {38376,38375,37647 ,730,730,730 ,0,0,0}, - {38375,38376,37641 ,730,730,730 ,0,0,0}, {37645,38377,37646 ,730,730,730 ,0,0,0}, - {38376,37647,37646 ,730,730,730 ,0,0,0}, {37651,37653,38377 ,730,730,730 ,0,0,0}, - {37646,38377,37653 ,730,730,730 ,0,0,0}, {37653,37652,37656 ,730,730,730 ,0,0,0}, - {35680,37656,37652 ,730,730,730 ,0,0,0}, {35641,35639,38099 ,730,730,730 ,0,0,0}, - {38378,33508,38379 ,730,730,730 ,0,0,0}, {38380,38381,38379 ,730,730,730 ,0,0,0}, - {35246,38172,35251 ,730,730,730 ,0,0,0}, {35309,35466,35470 ,730,730,730 ,0,0,0}, - {35470,35308,35309 ,730,730,730 ,0,0,0}, {35473,35315,35475 ,730,730,730 ,0,0,0}, - {35308,35461,35229 ,730,730,730 ,0,0,0}, {35460,35229,35461 ,730,730,730 ,0,0,0}, - {35324,35478,35477 ,730,730,730 ,0,0,0}, {35247,38148,35248 ,730,730,730 ,0,0,0}, - {37495,37494,38078 ,730,730,730 ,0,0,0}, {38382,35617,35615 ,730,730,730 ,0,0,0}, - {37667,35614,35611 ,730,730,730 ,0,0,0}, {35617,37776,32893 ,730,730,730 ,0,0,0}, - {38383,38384,38378 ,730,730,730 ,0,0,0}, {33508,38380,38379 ,730,730,730 ,0,0,0}, - {38381,38385,38386 ,730,730,730 ,0,0,0}, {38380,38385,38381 ,730,730,730 ,0,0,0}, - {38387,37661,38386 ,730,730,730 ,0,0,0}, {38381,38386,37661 ,730,730,730 ,0,0,0}, - {38388,37661,38389 ,730,730,730 ,0,0,0}, {37661,38387,38389 ,730,730,730 ,0,0,0}, - {37660,38390,37661 ,730,730,730 ,0,0,0}, {37661,38388,37659 ,730,730,730 ,0,0,0}, - {37648,37661,38391 ,730,730,730 ,0,0,0}, {38390,38391,37661 ,730,730,730 ,0,0,0}, - {38392,37648,38393 ,730,730,730 ,0,0,0}, {37648,38391,38393 ,730,730,730 ,0,0,0}, - {38097,37648,38394 ,730,730,730 ,0,0,0}, {37648,38392,38394 ,730,730,730 ,0,0,0}, - {38098,33525,38374 ,730,730,730 ,0,0,0}, {38395,38363,38396 ,730,730,730 ,0,0,0}, - {38087,35458,35454 ,730,730,730 ,0,0,0}, {38397,38398,38359 ,730,730,730 ,0,0,0}, - {35456,38399,38400 ,730,730,730 ,0,0,0}, {35454,35456,38400 ,730,730,730 ,0,0,0}, - {38399,35452,38356 ,730,730,730 ,0,0,0}, {38143,35601,35603 ,730,730,730 ,0,0,0}, - {38160,35451,35446 ,730,730,730 ,0,0,0}, {32876,38401,35603 ,730,730,730 ,0,0,0}, - {38401,32876,38352 ,730,730,730 ,0,0,0}, {37928,38142,35504 ,730,730,730 ,0,0,0}, - {38363,35682,35681 ,730,730,730 ,0,0,0}, {35702,38363,35704 ,730,730,730 ,0,0,0}, - {38402,38403,38363 ,730,730,730 ,0,0,0}, {38363,38404,38405 ,730,730,730 ,0,0,0}, - {35708,35707,38363 ,730,730,730 ,0,0,0}, {38405,38406,38363 ,730,730,730 ,0,0,0}, - {38407,38359,38353 ,730,730,730 ,0,0,0}, {38363,38359,38364 ,730,730,730 ,0,0,0}, - {38359,38408,38397 ,730,730,730 ,0,0,0}, {38359,38407,38408 ,730,730,730 ,0,0,0}, - {38409,38167,38398 ,730,730,730 ,0,0,0}, {38359,38398,38167 ,730,730,730 ,0,0,0}, - {38410,38167,38411 ,730,730,730 ,0,0,0}, {38167,38409,38411 ,730,730,730 ,0,0,0}, - {38168,38167,38412 ,730,730,730 ,0,0,0}, {38167,38410,38412 ,730,730,730 ,0,0,0}, - {38166,38413,38167 ,730,730,730 ,0,0,0}, {38091,38090,38413 ,730,730,730 ,0,0,0}, - {38167,38413,38090 ,730,730,730 ,0,0,0}, {38090,38092,38155 ,730,730,730 ,0,0,0}, - {32893,38155,38092 ,730,730,730 ,0,0,0}, {33209,35759,35762 ,730,730,730 ,0,0,0}, - {35186,38414,35185 ,730,730,730 ,0,0,0}, {35584,35752,35755 ,730,730,730 ,0,0,0}, - {35585,35755,35757 ,730,730,730 ,0,0,0}, {35752,35581,35753 ,730,730,730 ,0,0,0}, - {35584,35581,35752 ,730,730,730 ,0,0,0}, {35753,35579,37948 ,730,730,730 ,0,0,0}, - {37948,35560,35559 ,730,730,730 ,0,0,0}, {35578,35560,37948 ,730,730,730 ,0,0,0}, - {33192,35197,38029 ,730,730,730 ,0,0,0}, {35566,37948,35567 ,730,730,730 ,0,0,0}, - {35559,35563,37948 ,730,730,730 ,0,0,0}, {37948,35569,38052 ,730,730,730 ,0,0,0}, - {35569,37948,35566 ,730,730,730 ,0,0,0}, {33192,38029,38053 ,730,730,730 ,0,0,0}, - {38052,35571,35573 ,730,730,730 ,0,0,0}, {35569,35571,38052 ,730,730,730 ,0,0,0}, - {33192,38053,35573 ,730,730,730 ,0,0,0}, {33192,38031,35197 ,730,730,730 ,0,0,0}, - {38032,35192,35195 ,730,730,730 ,0,0,0}, {37931,35191,38033 ,730,730,730 ,0,0,0}, - {35186,35189,37932 ,730,730,730 ,0,0,0}, {38415,38414,35186 ,730,730,730 ,0,0,0}, - {38415,35186,37932 ,730,730,730 ,0,0,0}, {38416,35185,38414 ,730,730,730 ,0,0,0}, - {35135,38416,38049 ,730,730,730 ,0,0,0}, {38416,35135,35185 ,730,730,730 ,0,0,0}, - {38049,38417,35133 ,730,730,730 ,0,0,0}, {38341,38048,35134 ,730,730,730 ,0,0,0}, - {38417,38341,35133 ,730,730,730 ,0,0,0}, {38047,38046,35140 ,730,730,730 ,0,0,0}, - {35134,38048,35138 ,730,730,730 ,0,0,0}, {35762,38045,33209 ,730,730,730 ,0,0,0}, - {38046,38047,38045 ,730,730,730 ,0,0,0}, {35557,38418,37944 ,730,730,730 ,0,0,0}, - {35385,35386,38128 ,730,730,730 ,0,0,0}, {38418,35555,35554 ,730,730,730 ,0,0,0}, - {35557,35555,38418 ,730,730,730 ,0,0,0}, {35551,38132,35554 ,730,730,730 ,0,0,0}, - {38418,35554,38132 ,730,730,730 ,0,0,0}, {35548,38132,35549 ,730,730,730 ,0,0,0}, - {38132,35551,35549 ,730,730,730 ,0,0,0}, {38132,35548,35530 ,730,730,730 ,0,0,0}, - {38132,35533,35537 ,730,730,730 ,0,0,0}, {35529,35533,38132 ,730,730,730 ,0,0,0}, - {35536,37940,35537 ,730,730,730 ,0,0,0}, {38132,35537,37940 ,730,730,730 ,0,0,0}, - {35543,37940,35541 ,730,730,730 ,0,0,0}, {37940,35536,35539 ,730,730,730 ,0,0,0}, - {35543,33824,35392 ,730,730,730 ,0,0,0}, {38117,35389,35391 ,730,730,730 ,0,0,0}, - {38127,35386,35389 ,730,730,730 ,0,0,0}, {38131,35385,38128 ,730,730,730 ,0,0,0}, - {35333,35335,38130 ,730,730,730 ,0,0,0}, {38129,35335,38131 ,730,730,730 ,0,0,0}, - {35333,38124,35334 ,730,730,730 ,0,0,0}, {38124,35333,38130 ,730,730,730 ,0,0,0}, - {38123,35338,35334 ,730,730,730 ,0,0,0}, {38126,35340,35338 ,730,730,730 ,0,0,0}, - {38123,38125,35338 ,730,730,730 ,0,0,0}, {38122,38119,35342 ,730,730,730 ,0,0,0}, - {38126,38122,35340 ,730,730,730 ,0,0,0}, {35347,38120,35348 ,730,730,730 ,0,0,0}, - {35342,38119,35347 ,730,730,730 ,0,0,0}, {35346,38121,33841 ,730,730,730 ,0,0,0}, - {35348,38120,38121 ,730,730,730 ,0,0,0}, {38419,37639,35242 ,730,730,730 ,0,0,0}, - {38420,35590,35589 ,730,730,730 ,0,0,0}, {35233,35235,38174 ,730,730,730 ,0,0,0}, - {35286,38075,35285 ,730,730,730 ,0,0,0}, {35289,38421,38422 ,730,730,730 ,0,0,0}, - {35295,38173,37664 ,730,730,730 ,0,0,0}, {38423,38424,35304 ,730,730,730 ,0,0,0}, - {38087,35454,38400 ,730,730,730 ,0,0,0}, {35456,35452,38399 ,730,730,730 ,0,0,0}, - {35451,38160,38356 ,730,730,730 ,0,0,0}, {35448,38088,35446 ,730,730,730 ,0,0,0}, - {38161,38089,35447 ,730,730,730 ,0,0,0}, {35503,35504,38146 ,730,730,730 ,0,0,0}, - {35442,35440,38085 ,730,730,730 ,0,0,0}, {38085,38161,35442 ,730,730,730 ,0,0,0}, - {35438,38084,35440 ,730,730,730 ,0,0,0}, {38425,35438,35434 ,730,730,730 ,0,0,0}, - {35438,38425,38084 ,730,730,730 ,0,0,0}, {38156,35433,38426 ,730,730,730 ,0,0,0}, - {38425,35434,38156 ,730,730,730 ,0,0,0}, {35501,38147,37783 ,730,730,730 ,0,0,0}, - {35435,38153,38426 ,730,730,730 ,0,0,0}, {38426,35433,35435 ,730,730,730 ,0,0,0}, - {38154,38153,35485 ,730,730,730 ,0,0,0}, {35497,37782,38145 ,730,730,730 ,0,0,0}, - {35486,38154,35485 ,730,730,730 ,0,0,0}, {38151,35489,35491 ,730,730,730 ,0,0,0}, - {35489,38151,38150 ,730,730,730 ,0,0,0}, {35491,35492,38152 ,730,730,730 ,0,0,0}, - {35497,38145,35495 ,730,730,730 ,0,0,0}, {38152,35492,38083 ,730,730,730 ,0,0,0}, - {37783,37782,35498 ,730,730,730 ,0,0,0}, {35503,38147,35501 ,730,730,730 ,0,0,0}, - {38142,38146,35504 ,730,730,730 ,0,0,0}, {35504,38354,37928 ,730,730,730 ,0,0,0}, - {38354,35429,38355 ,730,730,730 ,0,0,0}, {35429,38354,35430 ,730,730,730 ,0,0,0}, - {35527,37804,37801 ,730,730,730 ,0,0,0}, {35429,35508,38355 ,730,730,730 ,0,0,0}, - {35512,38427,35509 ,730,730,730 ,0,0,0}, {38355,35509,38427 ,730,730,730 ,0,0,0}, - {35512,35514,38428 ,730,730,730 ,0,0,0}, {38428,38427,35512 ,730,730,730 ,0,0,0}, - {35526,37801,35524 ,730,730,730 ,0,0,0}, {38428,35515,38429 ,730,730,730 ,0,0,0}, - {35515,38428,35514 ,730,730,730 ,0,0,0}, {37801,38429,35518 ,730,730,730 ,0,0,0}, - {35515,35518,38429 ,730,730,730 ,0,0,0}, {35520,35521,37801 ,730,730,730 ,0,0,0}, - {35521,35524,37801 ,730,730,730 ,0,0,0}, {38351,37800,37801 ,730,730,730 ,0,0,0}, - {37801,38350,38351 ,730,730,730 ,0,0,0}, {38359,38363,38353 ,730,730,730 ,0,0,0}, - {37800,38345,38363 ,730,730,730 ,0,0,0}, {38345,38430,38363 ,730,730,730 ,0,0,0}, - {38430,38431,38363 ,730,730,730 ,0,0,0}, {35681,37800,38363 ,730,730,730 ,0,0,0}, - {38432,38353,38363 ,730,730,730 ,0,0,0}, {38396,38363,38431 ,730,730,730 ,0,0,0}, - {38363,38395,38402 ,730,730,730 ,0,0,0}, {35701,35682,38363 ,730,730,730 ,0,0,0}, - {38406,38432,38363 ,730,730,730 ,0,0,0}, {38363,35702,35701 ,730,730,730 ,0,0,0}, - {38363,38433,38404 ,730,730,730 ,0,0,0}, {35704,38363,35707 ,730,730,730 ,0,0,0}, - {38363,35710,35708 ,730,730,730 ,0,0,0}, {38363,35712,35710 ,730,730,730 ,0,0,0}, - {38432,38352,38353 ,730,730,730 ,0,0,0}, {38143,35603,38401 ,730,730,730 ,0,0,0}, - {38144,38165,35599 ,730,730,730 ,0,0,0}, {35599,35601,38144 ,730,730,730 ,0,0,0}, - {38093,35596,38165 ,730,730,730 ,0,0,0}, {35593,35597,38093 ,730,730,730 ,0,0,0}, - {38093,35597,35596 ,730,730,730 ,0,0,0}, {35593,38094,35589 ,730,730,730 ,0,0,0}, - {35590,38420,38171 ,730,730,730 ,0,0,0}, {35589,38094,38420 ,730,730,730 ,0,0,0}, - {37781,35609,38171 ,730,730,730 ,0,0,0}, {35608,35590,38171 ,730,730,730 ,0,0,0}, - {37667,35611,37781 ,730,730,730 ,0,0,0}, {37666,38382,35615 ,730,730,730 ,0,0,0}, - {37772,32893,37776 ,730,730,730 ,0,0,0}, {38382,37776,35617 ,730,730,730 ,0,0,0}, - {37772,37777,37773 ,730,730,730 ,0,0,0}, {38077,38079,37775 ,730,730,730 ,0,0,0}, - {38079,37774,37775 ,730,730,730 ,0,0,0}, {38079,38078,37494 ,730,730,730 ,0,0,0}, - {38434,37495,38435 ,730,730,730 ,0,0,0}, {38436,38437,37632 ,730,730,730 ,0,0,0}, - {37632,38437,37630 ,730,730,730 ,0,0,0}, {38159,38438,38157 ,730,730,730 ,0,0,0}, - {38438,38439,38440 ,730,730,730 ,0,0,0}, {38164,38163,38441 ,730,730,730 ,0,0,0}, - {38442,38443,38441 ,730,730,730 ,0,0,0}, {35326,35478,35324 ,730,730,730 ,0,0,0}, - {38444,35482,35327 ,730,730,730 ,0,0,0}, {35320,35465,35464 ,730,730,730 ,0,0,0}, - {35314,35315,35473 ,730,730,730 ,0,0,0}, {35312,35471,35466 ,730,730,730 ,0,0,0}, - {35314,35471,35312 ,730,730,730 ,0,0,0}, {38445,38446,38366 ,730,730,730 ,0,0,0}, - {35631,35633,38096 ,730,730,730 ,0,0,0}, {37625,35264,35275 ,730,730,730 ,0,0,0}, - {37626,35265,35264 ,730,730,730 ,0,0,0}, {35266,35270,38037 ,730,730,730 ,0,0,0}, - {37625,35275,35273 ,730,730,730 ,0,0,0}, {35271,35266,37629 ,730,730,730 ,0,0,0}, - {37620,35260,38103 ,730,730,730 ,0,0,0}, {37621,35254,38102 ,730,730,730 ,0,0,0}, - {35256,35252,37749 ,730,730,730 ,0,0,0}, {35251,38172,37748 ,730,730,730 ,0,0,0}, - {35248,38149,35246 ,730,730,730 ,0,0,0}, {37639,38148,35247 ,730,730,730 ,0,0,0}, - {35240,38447,38419 ,730,730,730 ,0,0,0}, {38419,35242,35240 ,730,730,730 ,0,0,0}, - {35460,35458,35230 ,730,730,730 ,0,0,0}, {38447,35238,37665 ,730,730,730 ,0,0,0}, - {35238,38447,35240 ,730,730,730 ,0,0,0}, {35234,38175,37665 ,730,730,730 ,0,0,0}, - {35230,38086,38423 ,730,730,730 ,0,0,0}, {35234,35233,38175 ,730,730,730 ,0,0,0}, - {38174,35235,38076 ,730,730,730 ,0,0,0}, {38423,35304,35230 ,730,730,730 ,0,0,0}, - {38076,35235,35285 ,730,730,730 ,0,0,0}, {38422,38075,35286 ,730,730,730 ,0,0,0}, - {35303,38424,38169 ,730,730,730 ,0,0,0}, {35291,38421,35289 ,730,730,730 ,0,0,0}, - {35289,38422,35286 ,730,730,730 ,0,0,0}, {38169,38170,35301 ,730,730,730 ,0,0,0}, - {37663,35291,35292 ,730,730,730 ,0,0,0}, {35291,37663,38421 ,730,730,730 ,0,0,0}, - {35292,35295,37664 ,730,730,730 ,0,0,0}, {38176,38173,35297 ,730,730,730 ,0,0,0}, - {38170,38176,35298 ,730,730,730 ,0,0,0}, {38424,35303,35304 ,730,730,730 ,0,0,0}, - {38086,35230,35458 ,730,730,730 ,0,0,0}, {35460,35230,35229 ,730,730,730 ,0,0,0}, - {35461,35308,35470 ,730,730,730 ,0,0,0}, {35309,35312,35466 ,730,730,730 ,0,0,0}, - {35314,35473,35471 ,730,730,730 ,0,0,0}, {38378,38448,38095 ,730,730,730 ,0,0,0}, - {35475,35318,35464 ,730,730,730 ,0,0,0}, {35318,35475,35315 ,730,730,730 ,0,0,0}, - {35320,35321,35465 ,730,730,730 ,0,0,0}, {35318,35320,35464 ,730,730,730 ,0,0,0}, - {35324,35477,35321 ,730,730,730 ,0,0,0}, {35465,35321,35477 ,730,730,730 ,0,0,0}, - {38448,38378,38384 ,730,730,730 ,0,0,0}, {35326,35327,35482 ,730,730,730 ,0,0,0}, - {35482,35478,35326 ,730,730,730 ,0,0,0}, {38162,38444,35327 ,730,730,730 ,0,0,0}, - {38383,38449,38384 ,730,730,730 ,0,0,0}, {38162,38164,38444 ,730,730,730 ,0,0,0}, - {38442,38440,38443 ,730,730,730 ,0,0,0}, {38163,38442,38441 ,730,730,730 ,0,0,0}, - {38449,38450,38451 ,730,730,730 ,0,0,0}, {38439,38438,38159 ,730,730,730 ,0,0,0}, - {38443,38440,38439 ,730,730,730 ,0,0,0}, {37631,38158,38157 ,730,730,730 ,0,0,0}, - {38158,37631,37630 ,730,730,730 ,0,0,0}, {38435,38436,38434 ,730,730,730 ,0,0,0}, - {38435,38437,38436 ,730,730,730 ,0,0,0}, {37494,37496,37674 ,730,730,730 ,0,0,0}, - {37496,37495,38434 ,730,730,730 ,0,0,0}, {38452,38450,37674 ,730,730,730 ,0,0,0}, - {37674,37496,38452 ,730,730,730 ,0,0,0}, {38451,38450,38452 ,730,730,730 ,0,0,0}, - {38383,38450,38449 ,730,730,730 ,0,0,0}, {38095,33508,38378 ,730,730,730 ,0,0,0}, - {37624,35631,38096 ,730,730,730 ,0,0,0}, {37623,37627,35626 ,730,730,730 ,0,0,0}, - {35626,35629,37623 ,730,730,730 ,0,0,0}, {37628,35623,35627 ,730,730,730 ,0,0,0}, - {37627,35627,35626 ,730,730,730 ,0,0,0}, {38101,35619,37628 ,730,730,730 ,0,0,0}, - {35623,37628,35619 ,730,730,730 ,0,0,0}, {35620,38101,38100 ,730,730,730 ,0,0,0}, - {35641,38365,35644 ,730,730,730 ,0,0,0}, {35638,35620,38100 ,730,730,730 ,0,0,0}, - {38097,38098,38453 ,730,730,730 ,0,0,0}, {35647,38373,38374 ,730,730,730 ,0,0,0}, - {37648,38453,35666 ,730,730,730 ,0,0,0}, {37648,38097,38453 ,730,730,730 ,0,0,0}, - {35666,38454,37622 ,730,730,730 ,0,0,0}, {38453,38454,35666 ,730,730,730 ,0,0,0}, - {37622,38455,35663 ,730,730,730 ,0,0,0}, {38369,35661,38455 ,730,730,730 ,0,0,0}, - {35663,38455,35661 ,730,730,730 ,0,0,0}, {35659,38369,38456 ,730,730,730 ,0,0,0}, - {38456,38370,35656 ,730,730,730 ,0,0,0}, {35656,35659,38456 ,730,730,730 ,0,0,0}, - {35657,35656,38371 ,730,730,730 ,0,0,0}, {35653,38368,35649 ,730,730,730 ,0,0,0}, - {38367,35657,38371 ,730,730,730 ,0,0,0}, {38457,38445,35649 ,730,730,730 ,0,0,0}, - {38457,35649,38368 ,730,730,730 ,0,0,0}, {38366,35650,38445 ,730,730,730 ,0,0,0}, - {38445,35650,35649 ,730,730,730 ,0,0,0}, {38446,38458,38366 ,730,730,730 ,0,0,0}, - {37626,38366,38459 ,730,730,730 ,0,0,0}, {38458,38459,38366 ,730,730,730 ,0,0,0}, - {38460,37626,38461 ,730,730,730 ,0,0,0}, {37626,38459,38461 ,730,730,730 ,0,0,0}, - {35282,37626,38462 ,730,730,730 ,0,0,0}, {37626,38460,38462 ,730,730,730 ,0,0,0}, - {37615,38463,38464 ,730,730,730 ,0,0,0}, {38465,37615,38466 ,730,730,730 ,0,0,0}, - {38467,37599,38468 ,730,730,730 ,0,0,0}, {37599,35116,38468 ,730,730,730 ,0,0,0}, - {38463,37599,38469 ,730,730,730 ,0,0,0}, {37599,38467,38469 ,730,730,730 ,0,0,0}, - {37615,37599,38463 ,730,730,730 ,0,0,0}, {38470,37615,38471 ,730,730,730 ,0,0,0}, - {37615,38464,38471 ,730,730,730 ,0,0,0}, {37615,38470,38466 ,730,730,730 ,0,0,0}, - {38465,35128,37615 ,730,730,730 ,0,0,0}, {37615,35128,37595 ,730,730,730 ,0,0,0}, - {35123,37595,35125 ,730,730,730 ,0,0,0}, {37595,35128,35125 ,730,730,730 ,0,0,0}, - {35113,37598,37595 ,730,730,730 ,0,0,0}, {35107,37595,35120 ,730,730,730 ,0,0,0}, - {37595,35122,35120 ,730,730,730 ,0,0,0}, {37595,35107,35113 ,730,730,730 ,0,0,0}, - {35114,37598,35110 ,730,730,730 ,0,0,0}, {37598,35113,35110 ,730,730,730 ,0,0,0}, - {35116,37598,35117 ,730,730,730 ,0,0,0}, {37598,35114,35117 ,730,730,730 ,0,0,0}, - {38028,38472,37956 ,730,730,730 ,0,0,0}, {38026,35094,38028 ,730,730,730 ,0,0,0}, - {37956,38473,38474 ,730,730,730 ,0,0,0}, {38472,38473,37956 ,730,730,730 ,0,0,0}, - {37957,37956,38475 ,730,730,730 ,0,0,0}, {38474,38475,37956 ,730,730,730 ,0,0,0}, - {38476,37957,38477 ,730,730,730 ,0,0,0}, {37957,38475,38477 ,730,730,730 ,0,0,0}, - {38478,37957,38479 ,730,730,730 ,0,0,0}, {37957,38476,38479 ,730,730,730 ,0,0,0}, - {38024,37957,38478 ,730,730,730 ,0,0,0}, {38024,38478,35106 ,730,730,730 ,0,0,0}, - {35098,38024,35100 ,730,730,730 ,0,0,0}, {38024,35106,35103 ,730,730,730 ,0,0,0}, - {38024,35101,35100 ,730,730,730 ,0,0,0}, {38026,38024,35085 ,730,730,730 ,0,0,0}, - {35098,35085,38024 ,730,730,730 ,0,0,0}, {35088,38026,35091 ,730,730,730 ,0,0,0}, - {38026,35085,35091 ,730,730,730 ,0,0,0}, {35095,38026,35092 ,730,730,730 ,0,0,0}, - {38026,35088,35092 ,730,730,730 ,0,0,0}, {35094,38026,35095 ,730,730,730 ,0,0,0}, - {38480,38481,38482 ,730,730,730 ,0,0,0}, {38024,38023,38482 ,730,730,730 ,0,0,0}, - {38481,38019,38018 ,730,730,730 ,0,0,0}, {38021,38483,38027 ,730,730,730 ,0,0,0}, - {38022,38483,38021 ,730,730,730 ,0,0,0}, {38021,38027,38026 ,730,730,730 ,0,0,0}, - {38026,38025,38024 ,730,730,730 ,0,0,0}, {38023,38480,38482 ,730,730,730 ,0,0,0}, - {38481,38018,38482 ,730,730,730 ,0,0,0}, {35084,38016,38019 ,730,730,730 ,0,0,0}, - {35081,38016,35084 ,730,730,730 ,0,0,0}, {35079,38015,35081 ,730,730,730 ,0,0,0}, - {38484,38485,38486 ,730,730,730 ,0,0,0}, {38487,38015,35078 ,730,730,730 ,0,0,0}, - {35066,34300,35069 ,730,730,730 ,0,0,0}, {34919,38488,38489 ,730,730,730 ,0,0,0}, - {34304,34303,34871 ,730,730,730 ,0,0,0}, {38490,34300,35066 ,730,730,730 ,0,0,0}, - {35070,38020,35066 ,730,730,730 ,0,0,0}, {38490,35066,38020 ,730,730,730 ,0,0,0}, - {38020,35073,37960 ,730,730,730 ,0,0,0}, {35072,37960,35073 ,730,730,730 ,0,0,0}, - {38491,35057,35056 ,730,730,730 ,0,0,0}, {37917,37921,37918 ,730,730,730 ,0,0,0}, - {38491,38492,35057 ,730,730,730 ,0,0,0}, {37921,37924,37922 ,730,730,730 ,0,0,0}, - {37924,37906,37905 ,730,730,730 ,0,0,0}, {38493,38494,37923 ,730,730,730 ,0,0,0}, - {38493,37923,37904 ,730,730,730 ,0,0,0}, {38495,38494,38496 ,730,730,730 ,0,0,0}, - {38494,38495,37923 ,730,730,730 ,0,0,0}, {37919,38496,37920 ,730,730,730 ,0,0,0}, - {38495,38496,37919 ,730,730,730 ,0,0,0}, {37919,35062,38492 ,730,730,730 ,0,0,0}, - {35059,35057,38492 ,730,730,730 ,0,0,0}, {35062,35059,38492 ,730,730,730 ,0,0,0}, - {35056,37916,38491 ,730,730,730 ,0,0,0}, {37916,35054,35041 ,730,730,730 ,0,0,0}, - {35056,35054,37916 ,730,730,730 ,0,0,0}, {35041,35047,37915 ,730,730,730 ,0,0,0}, - {38232,37915,35044 ,730,730,730 ,0,0,0}, {35047,35044,37915 ,730,730,730 ,0,0,0}, - {38232,35048,38233 ,730,730,730 ,0,0,0}, {35051,37914,38235 ,730,730,730 ,0,0,0}, - {35050,37914,35051 ,730,730,730 ,0,0,0}, {38497,38498,38499 ,730,730,730 ,0,0,0}, - {38500,38498,38501 ,730,730,730 ,0,0,0}, {38498,35028,38501 ,730,730,730 ,0,0,0}, - {38498,38500,38499 ,730,730,730 ,0,0,0}, {35037,37750,37767 ,730,730,730 ,0,0,0}, - {37767,38498,38502 ,730,730,730 ,0,0,0}, {38497,38502,38498 ,730,730,730 ,0,0,0}, - {38503,37767,38504 ,730,730,730 ,0,0,0}, {37767,38502,38504 ,730,730,730 ,0,0,0}, - {38505,37767,38506 ,730,730,730 ,0,0,0}, {37767,38503,38506 ,730,730,730 ,0,0,0}, - {37767,35040,35037 ,730,730,730 ,0,0,0}, {37767,38505,35040 ,730,730,730 ,0,0,0}, - {35035,35034,37750 ,730,730,730 ,0,0,0}, {37750,35032,35019 ,730,730,730 ,0,0,0}, - {35034,35032,37750 ,730,730,730 ,0,0,0}, {35025,37681,35019 ,730,730,730 ,0,0,0}, - {37750,35019,37681 ,730,730,730 ,0,0,0}, {35026,37681,35022 ,730,730,730 ,0,0,0}, - {37681,35025,35022 ,730,730,730 ,0,0,0}, {35029,35028,38498 ,730,730,730 ,0,0,0}, - {38498,37681,35029 ,730,730,730 ,0,0,0}, {37681,35026,35029 ,730,730,730 ,0,0,0}, - {37764,34356,37765 ,730,730,730 ,0,0,0}, {37758,35006,37755 ,730,730,730 ,0,0,0}, - {38507,37769,35018 ,730,730,730 ,0,0,0}, {37765,34356,38508 ,730,730,730 ,0,0,0}, - {38509,37756,37757 ,730,730,730 ,0,0,0}, {34694,38510,37759 ,730,730,730 ,0,0,0}, - {34676,34346,38510 ,730,730,730 ,0,0,0}, {38511,34345,34356 ,730,730,730 ,0,0,0}, - {37765,37768,37766 ,730,730,730 ,0,0,0}, {37769,38507,37766 ,730,730,730 ,0,0,0}, - {35018,37770,38507 ,730,730,730 ,0,0,0}, {35013,37770,35015 ,730,730,730 ,0,0,0}, - {35003,38498,34997 ,730,730,730 ,0,0,0}, {35013,37752,37770 ,730,730,730 ,0,0,0}, - {37752,35010,37767 ,730,730,730 ,0,0,0}, {35012,35010,37752 ,730,730,730 ,0,0,0}, - {37767,34997,38498 ,730,730,730 ,0,0,0}, {35000,35004,37763 ,730,730,730 ,0,0,0}, - {38498,35003,37763 ,730,730,730 ,0,0,0}, {35007,37760,35004 ,730,730,730 ,0,0,0}, - {37763,35004,37760 ,730,730,730 ,0,0,0}, {37758,35007,35006 ,730,730,730 ,0,0,0}, - {37919,38512,37815 ,730,730,730 ,0,0,0}, {37919,38492,34984 ,730,730,730 ,0,0,0}, - {38513,37815,38512 ,730,730,730 ,0,0,0}, {38514,37919,38515 ,730,730,730 ,0,0,0}, - {37919,37925,38515 ,730,730,730 ,0,0,0}, {38516,37919,38517 ,730,730,730 ,0,0,0}, - {37919,38514,38517 ,730,730,730 ,0,0,0}, {37919,38516,38512 ,730,730,730 ,0,0,0}, - {37815,38518,38519 ,730,730,730 ,0,0,0}, {38513,38518,37815 ,730,730,730 ,0,0,0}, - {38492,34988,34975 ,730,730,730 ,0,0,0}, {38519,34996,37815 ,730,730,730 ,0,0,0}, - {37815,34996,37817 ,730,730,730 ,0,0,0}, {34991,37817,34993 ,730,730,730 ,0,0,0}, - {37817,34996,34993 ,730,730,730 ,0,0,0}, {34988,37817,34990 ,730,730,730 ,0,0,0}, - {37817,34991,34990 ,730,730,730 ,0,0,0}, {38492,37817,34988 ,730,730,730 ,0,0,0}, - {34978,38492,34981 ,730,730,730 ,0,0,0}, {38492,34975,34981 ,730,730,730 ,0,0,0}, - {34985,38492,34982 ,730,730,730 ,0,0,0}, {38492,34978,34982 ,730,730,730 ,0,0,0}, - {34984,38492,34985 ,730,730,730 ,0,0,0}, {34969,38320,34971 ,730,730,730 ,0,0,0}, - {37613,37614,37615 ,730,730,730 ,0,0,0}, {37608,37605,37614 ,730,730,730 ,0,0,0}, - {37601,37605,37609 ,730,730,730 ,0,0,0}, {38520,37611,37600 ,730,730,730 ,0,0,0}, - {37600,37602,38520 ,730,730,730 ,0,0,0}, {37612,37611,38520 ,730,730,730 ,0,0,0}, - {34320,38521,38522 ,730,730,730 ,0,0,0}, {37573,37610,37612 ,730,730,730 ,0,0,0}, - {38523,34565,38524 ,730,730,730 ,0,0,0}, {1263,38521,34320 ,730,730,730 ,0,0,0}, - {34317,34328,38525 ,730,730,730 ,0,0,0}, {34968,37619,37617 ,730,730,730 ,0,0,0}, - {34969,37617,38320 ,730,730,730 ,0,0,0}, {37619,34966,34953 ,730,730,730 ,0,0,0}, - {34968,34966,37619 ,730,730,730 ,0,0,0}, {34953,34959,37618 ,730,730,730 ,0,0,0}, - {37607,37618,34956 ,730,730,730 ,0,0,0}, {34959,34956,37618 ,730,730,730 ,0,0,0}, - {37607,34960,37595 ,730,730,730 ,0,0,0}, {34962,37595,34963 ,730,730,730 ,0,0,0}, - {37595,34960,34963 ,730,730,730 ,0,0,0}, {38526,38527,35971 ,730,730,730 ,0,0,0}, - {37970,36139,36141 ,730,730,730 ,0,0,0}, {36141,38206,37970 ,730,730,730 ,0,0,0}, - {37971,38528,36136 ,730,730,730 ,0,0,0}, {36135,36136,38528 ,730,730,730 ,0,0,0}, - {36129,36130,38208 ,730,730,730 ,0,0,0}, {36127,34921,34925 ,730,730,730 ,0,0,0}, - {36124,34929,36123 ,730,730,730 ,0,0,0}, {36121,34929,34928 ,730,730,730 ,0,0,0}, - {36118,34931,36117 ,730,730,730 ,0,0,0}, {34933,34935,36115 ,730,730,730 ,0,0,0}, - {34038,36112,34938 ,730,730,730 ,0,0,0}, {34038,34938,34040 ,730,730,730 ,0,0,0}, - {38529,38530,34043 ,730,730,730 ,0,0,0}, {38212,38529,34045 ,730,730,730 ,0,0,0}, - {36109,34037,36143 ,730,730,730 ,0,0,0}, {34049,36149,36148 ,730,730,730 ,0,0,0}, - {34048,36148,36145 ,730,730,730 ,0,0,0}, {34057,34898,34901 ,730,730,730 ,0,0,0}, - {34057,34901,38531 ,730,730,730 ,0,0,0}, {38187,36167,38184 ,730,730,730 ,0,0,0}, - {35977,35979,37969 ,730,730,730 ,0,0,0}, {35979,37974,34063 ,730,730,730 ,0,0,0}, - {35973,35974,37968 ,730,730,730 ,0,0,0}, {35973,37968,38532 ,730,730,730 ,0,0,0}, - {38527,35968,35971 ,730,730,730 ,0,0,0}, {34135,38209,37972 ,730,730,730 ,0,0,0}, - {38527,38209,35968 ,730,730,730 ,0,0,0}, {34136,38533,34138 ,730,730,730 ,0,0,0}, - {34143,34138,34950 ,730,730,730 ,0,0,0}, {34952,34138,38533 ,730,730,730 ,0,0,0}, - {38534,38182,38183 ,730,730,730 ,0,0,0}, {38010,38012,38535 ,730,730,730 ,0,0,0}, - {38536,34913,34911 ,730,730,730 ,0,0,0}, {37537,34913,38536 ,730,730,730 ,0,0,0}, - {37979,38537,37980 ,730,730,730 ,0,0,0}, {34054,34892,34891 ,730,730,730 ,0,0,0}, - {34899,34898,34057 ,730,730,730 ,0,0,0}, {34059,34899,34057 ,730,730,730 ,0,0,0}, - {38211,34051,34062 ,730,730,730 ,0,0,0}, {34903,38531,34901 ,730,730,730 ,0,0,0}, - {4039,36151,36149 ,730,730,730 ,0,0,0}, {38007,36154,4039 ,730,730,730 ,0,0,0}, - {36155,36154,38007 ,730,730,730 ,0,0,0}, {38185,36161,36160 ,730,730,730 ,0,0,0}, - {36166,36163,3897 ,730,730,730 ,0,0,0}, {36167,36166,38184 ,730,730,730 ,0,0,0}, - {36169,38187,38538 ,730,730,730 ,0,0,0}, {38538,38189,36171 ,730,730,730 ,0,0,0}, - {36171,36169,38538 ,730,730,730 ,0,0,0}, {38486,38188,38190 ,730,730,730 ,0,0,0}, - {38189,38188,36171 ,730,730,730 ,0,0,0}, {38014,38539,34292 ,730,730,730 ,0,0,0}, - {38486,38485,38188 ,730,730,730 ,0,0,0}, {38540,34297,38539 ,730,730,730 ,0,0,0}, - {34297,38541,34295 ,730,730,730 ,0,0,0}, {38485,38484,34290 ,730,730,730 ,0,0,0}, - {34309,34311,38542 ,730,730,730 ,0,0,0}, {34866,38543,38191 ,730,730,730 ,0,0,0}, - {38544,38545,38546 ,730,730,730 ,0,0,0}, {34303,34314,38009 ,730,730,730 ,0,0,0}, - {38543,34866,34869 ,730,730,730 ,0,0,0}, {38008,34314,34315 ,730,730,730 ,0,0,0}, - {38547,38548,38549 ,730,730,730 ,0,0,0}, {38550,34217,38551 ,730,730,730 ,0,0,0}, - {34211,34880,38552 ,730,730,730 ,0,0,0}, {37556,34859,34863 ,730,730,730 ,0,0,0}, - {38553,38554,38555 ,730,730,730 ,0,0,0}, {34222,37990,38556 ,730,730,730 ,0,0,0}, - {35960,35957,34231 ,730,730,730 ,0,0,0}, {37993,38557,37991 ,730,730,730 ,0,0,0}, - {34869,38558,38543 ,730,730,730 ,0,0,0}, {34303,34869,34871 ,730,730,730 ,0,0,0}, - {3883,38489,38559 ,730,730,730 ,0,0,0}, {34306,34873,34876 ,730,730,730 ,0,0,0}, - {34309,38542,38544 ,730,730,730 ,0,0,0}, {34916,38005,34917 ,730,730,730 ,0,0,0}, - {34303,38560,38558 ,730,730,730 ,0,0,0}, {38544,38546,34309 ,730,730,730 ,0,0,0}, - {38561,37475,38546 ,730,730,730 ,0,0,0}, {3883,34919,38489 ,730,730,730 ,0,0,0}, - {38562,38559,37996 ,730,730,730 ,0,0,0}, {35063,34301,38013 ,730,730,730 ,0,0,0}, - {37994,38563,35076 ,730,730,730 ,0,0,0}, {38564,38565,37997 ,730,730,730 ,0,0,0}, - {38487,38563,38566 ,730,730,730 ,0,0,0}, {38547,38564,38548 ,730,730,730 ,0,0,0}, - {38564,38547,38565 ,730,730,730 ,0,0,0}, {38549,37999,38547 ,730,730,730 ,0,0,0}, - {38000,38194,38001 ,730,730,730 ,0,0,0}, {38549,38000,37999 ,730,730,730 ,0,0,0}, - {38193,38192,37485 ,730,730,730 ,0,0,0}, {38001,38194,38193 ,730,730,730 ,0,0,0}, - {34890,37485,38192 ,730,730,730 ,0,0,0}, {34857,34855,38203 ,730,730,730 ,0,0,0}, - {38203,37982,34857 ,730,730,730 ,0,0,0}, {34849,34848,37553 ,730,730,730 ,0,0,0}, - {34849,37553,38204 ,730,730,730 ,0,0,0}, {34848,34830,37963 ,730,730,730 ,0,0,0}, - {34833,34124,34829 ,730,730,730 ,0,0,0}, {34830,34829,34122 ,730,730,730 ,0,0,0}, - {34833,34837,34129 ,730,730,730 ,0,0,0}, {37966,38207,34122 ,730,730,730 ,0,0,0}, - {34129,34836,34127 ,730,730,730 ,0,0,0}, {34127,34839,38205 ,730,730,730 ,0,0,0}, - {34944,34942,38181 ,730,730,730 ,0,0,0}, {34133,37970,38206 ,730,730,730 ,0,0,0}, - {38567,38568,38569 ,730,730,730 ,0,0,0}, {35961,34146,34147 ,730,730,730 ,0,0,0}, - {37535,35944,35942 ,730,730,730 ,0,0,0}, {35945,37550,35951 ,730,730,730 ,0,0,0}, - {35948,35953,38179 ,730,730,730 ,0,0,0}, {35951,37551,38179 ,730,730,730 ,0,0,0}, - {37987,37990,34220 ,730,730,730 ,0,0,0}, {37988,35948,38179 ,730,730,730 ,0,0,0}, - {34222,38570,34227 ,730,730,730 ,0,0,0}, {38571,34225,37989 ,730,730,730 ,0,0,0}, - {38555,38554,34225 ,730,730,730 ,0,0,0}, {38555,34225,38571 ,730,730,730 ,0,0,0}, - {38553,37986,37985 ,730,730,730 ,0,0,0}, {38572,38199,38198 ,730,730,730 ,0,0,0}, - {38572,34217,38199 ,730,730,730 ,0,0,0}, {37557,34860,34859 ,730,730,730 ,0,0,0}, - {38573,38200,38574 ,730,730,730 ,0,0,0}, {38198,38197,38573 ,730,730,730 ,0,0,0}, - {37984,38575,38201 ,730,730,730 ,0,0,0}, {35927,38576,38577 ,730,730,730 ,0,0,0}, - {38578,38579,37865 ,730,730,730 ,0,0,0}, {37820,37822,38580 ,730,730,730 ,0,0,0}, - {37820,38580,34441 ,730,730,730 ,0,0,0}, {37866,37822,37821 ,730,730,730 ,0,0,0}, - {38579,38578,38581 ,730,730,730 ,0,0,0}, {37863,37862,38581 ,730,730,730 ,0,0,0}, - {38248,37861,34799 ,730,730,730 ,0,0,0}, {37871,34803,34807 ,730,730,730 ,0,0,0}, - {37872,34806,38249 ,730,730,730 ,0,0,0}, {38249,34809,37819 ,730,730,730 ,0,0,0}, - {34811,34813,37879 ,730,730,730 ,0,0,0}, {34813,2941,38251 ,730,730,730 ,0,0,0}, - {2941,34402,38251 ,730,730,730 ,0,0,0}, {2941,34404,34402 ,730,730,730 ,0,0,0}, - {34401,34412,38582 ,730,730,730 ,0,0,0}, {38583,34401,38584 ,730,730,730 ,0,0,0}, - {34706,34418,34416 ,730,730,730 ,0,0,0}, {38585,38586,34407 ,730,730,730 ,0,0,0}, - {34412,37886,38587 ,730,730,730 ,0,0,0}, {34712,34715,34421 ,730,730,730 ,0,0,0}, - {34421,34713,34712 ,730,730,730 ,0,0,0}, {38214,37899,38215 ,730,730,730 ,0,0,0}, - {35933,35935,37870 ,730,730,730 ,0,0,0}, {35935,37860,34427 ,730,730,730 ,0,0,0}, - {35929,35930,37869 ,730,730,730 ,0,0,0}, {35929,37869,38588 ,730,730,730 ,0,0,0}, - {38577,35924,35927 ,730,730,730 ,0,0,0}, {34443,38246,37867 ,730,730,730 ,0,0,0}, - {38577,38246,35924 ,730,730,730 ,0,0,0}, {34444,38589,34446 ,730,730,730 ,0,0,0}, - {34451,34446,34827 ,730,730,730 ,0,0,0}, {2165,34446,38589 ,730,730,730 ,0,0,0}, - {34793,34790,37882 ,730,730,730 ,0,0,0}, {35792,35791,38322 ,730,730,730 ,0,0,0}, - {37881,34788,37827 ,730,730,730 ,0,0,0}, {34790,34788,37881 ,730,730,730 ,0,0,0}, - {34787,34768,38242 ,730,730,730 ,0,0,0}, {34437,34771,34775 ,730,730,730 ,0,0,0}, - {34767,34771,34432 ,730,730,730 ,0,0,0}, {34430,38590,38245 ,730,730,730 ,0,0,0}, - {34767,34430,34768 ,730,730,730 ,0,0,0}, {38590,34429,38591 ,730,730,730 ,0,0,0}, - {37876,34435,34777 ,730,730,730 ,0,0,0}, {34821,34819,38241 ,730,730,730 ,0,0,0}, - {38243,34441,38580 ,730,730,730 ,0,0,0}, {38592,38593,38594 ,730,730,730 ,0,0,0}, - {35917,34454,34455 ,730,730,730 ,0,0,0}, {38595,38596,35898 ,730,730,730 ,0,0,0}, - {38596,35900,35898 ,730,730,730 ,0,0,0}, {37875,35907,35901 ,730,730,730 ,0,0,0}, - {37875,37874,35907 ,730,730,730 ,0,0,0}, {35909,37818,35904 ,730,730,730 ,0,0,0}, - {38322,35791,35904 ,730,730,730 ,0,0,0}, {38322,37877,35792 ,730,730,730 ,0,0,0}, - {35794,37878,38323 ,730,730,730 ,0,0,0}, {37878,35794,35792 ,730,730,730 ,0,0,0}, - {38324,35799,35794 ,730,730,730 ,0,0,0}, {35797,35799,37858 ,730,730,730 ,0,0,0}, - {38324,37858,35799 ,730,730,730 ,0,0,0}, {37859,38597,35797 ,730,730,730 ,0,0,0}, - {38238,38237,38597 ,730,730,730 ,0,0,0}, {35797,38597,38237 ,730,730,730 ,0,0,0}, - {38239,38238,38598 ,730,730,730 ,0,0,0}, {34798,38239,38598 ,730,730,730 ,0,0,0}, - {38224,38223,38327 ,730,730,730 ,0,0,0}, {2303,38599,38600 ,730,730,730 ,0,0,0}, - {34762,35783,35785 ,730,730,730 ,0,0,0}, {34762,35785,34763 ,730,730,730 ,0,0,0}, - {34757,34756,38601 ,730,730,730 ,0,0,0}, {38601,35783,34757 ,730,730,730 ,0,0,0}, - {34738,34737,37907 ,730,730,730 ,0,0,0}, {34738,37907,38601 ,730,730,730 ,0,0,0}, - {34738,38601,34756 ,730,730,730 ,0,0,0}, {38225,34745,37903 ,730,730,730 ,0,0,0}, - {38331,38602,38603 ,730,730,730 ,0,0,0}, {38600,38604,34385 ,730,730,730 ,0,0,0}, - {34387,34749,34388 ,730,730,730 ,0,0,0}, {34387,34747,34749 ,730,730,730 ,0,0,0}, - {34387,38605,37836 ,730,730,730 ,0,0,0}, {34390,34388,34751 ,730,730,730 ,0,0,0}, - {38606,34393,38219 ,730,730,730 ,0,0,0}, {38607,34395,34390 ,730,730,730 ,0,0,0}, - {37842,37841,34374 ,730,730,730 ,0,0,0}, {34384,38604,38608 ,730,730,730 ,0,0,0}, - {38603,38599,2303 ,730,730,730 ,0,0,0}, {38602,38599,38603 ,730,730,730 ,0,0,0}, - {38609,38330,38610 ,730,730,730 ,0,0,0}, {38333,38328,38611 ,730,730,730 ,0,0,0}, - {38610,38326,38609 ,730,730,730 ,0,0,0}, {38337,38332,38334 ,730,730,730 ,0,0,0}, - {38334,38333,38611 ,730,730,730 ,0,0,0}, {38335,38612,38336 ,730,730,730 ,0,0,0}, - {38337,38336,38332 ,730,730,730 ,0,0,0}, {38338,38612,38613 ,730,730,730 ,0,0,0}, - {38335,38613,38612 ,730,730,730 ,0,0,0}, {38338,38340,38321 ,730,730,730 ,0,0,0}, - {38338,38613,38339 ,730,730,730 ,0,0,0}, {2131,38321,38340 ,730,730,730 ,0,0,0}, - {37894,38614,37895 ,730,730,730 ,0,0,0}, {37900,37846,37898 ,730,730,730 ,0,0,0}, - {38615,34728,34726 ,730,730,730 ,0,0,0}, {37887,34728,38615 ,730,730,730 ,0,0,0}, - {34418,34706,34705 ,730,730,730 ,0,0,0}, {34715,38616,34421 ,730,730,730 ,0,0,0}, - {34423,34713,34421 ,730,730,730 ,0,0,0}, {37824,34415,34426 ,730,730,730 ,0,0,0}, - {34717,38616,34715 ,730,730,730 ,0,0,0}, {37857,37850,37856 ,730,730,730 ,0,0,0}, - {37851,37850,37857 ,730,730,730 ,0,0,0}, {37890,37852,37851 ,730,730,730 ,0,0,0}, - {37854,38617,37891 ,730,730,730 ,0,0,0}, {37845,34722,37846 ,730,730,730 ,0,0,0}, - {37900,37844,37846 ,730,730,730 ,0,0,0}, {37899,37898,38215 ,730,730,730 ,0,0,0}, - {38214,37833,37832 ,730,730,730 ,0,0,0}, {37832,37834,38217 ,730,730,730 ,0,0,0}, - {37843,38216,37841 ,730,730,730 ,0,0,0}, {38217,37834,38216 ,730,730,730 ,0,0,0}, - {38218,34376,34374 ,730,730,730 ,0,0,0}, {38618,34381,38619 ,730,730,730 ,0,0,0}, - {38619,34376,38218 ,730,730,730 ,0,0,0}, {34379,34381,38620 ,730,730,730 ,0,0,0}, - {34373,34384,38621 ,730,730,730 ,0,0,0}, {38622,38229,38220 ,730,730,730 ,0,0,0}, - {34736,34734,37837 ,730,730,730 ,0,0,0}, {38606,38623,34393 ,730,730,730 ,0,0,0}, - {38606,38624,38623 ,730,730,730 ,0,0,0}, {34398,37840,34387 ,730,730,730 ,0,0,0}, - {37839,34398,34399 ,730,730,730 ,0,0,0}, {34703,36039,36038 ,730,730,730 ,0,0,0}, - {38625,35853,35851 ,730,730,730 ,0,0,0}, {34697,37759,36043 ,730,730,730 ,0,0,0}, - {36043,34700,34697 ,730,730,730 ,0,0,0}, {34695,37759,34697 ,730,730,730 ,0,0,0}, - {34675,34679,34348 ,730,730,730 ,0,0,0}, {38510,34694,34676 ,730,730,730 ,0,0,0}, - {34679,34683,34353 ,730,730,730 ,0,0,0}, {34675,34348,34346 ,730,730,730 ,0,0,0}, - {37762,37761,38626 ,730,730,730 ,0,0,0}, {38627,38628,38629 ,730,730,730 ,0,0,0}, - {38630,34351,34685 ,730,730,730 ,0,0,0}, {34634,34632,37747 ,730,730,730 ,0,0,0}, - {35873,34370,34371 ,730,730,730 ,0,0,0}, {38275,35856,35854 ,730,730,730 ,0,0,0}, - {35857,37761,35863 ,730,730,730 ,0,0,0}, {35860,35865,37751 ,730,730,730 ,0,0,0}, - {35863,37762,37751 ,730,730,730 ,0,0,0}, {38253,37724,34108 ,730,730,730 ,0,0,0}, - {38252,35860,37751 ,730,730,730 ,0,0,0}, {37724,38631,34110 ,730,730,730 ,0,0,0}, - {34113,34115,37722 ,730,730,730 ,0,0,0}, {37707,34650,37710 ,730,730,730 ,0,0,0}, - {34669,34101,34670 ,730,730,730 ,0,0,0}, {36015,35981,34093 ,730,730,730 ,0,0,0}, - {36021,3171,36023 ,730,730,730 ,0,0,0}, {36023,3171,36026 ,730,730,730 ,0,0,0}, - {38632,34644,34643 ,730,730,730 ,0,0,0}, {36027,38633,36029 ,730,730,730 ,0,0,0}, - {36026,37746,36027 ,730,730,730 ,0,0,0}, {38634,36033,38254 ,730,730,730 ,0,0,0}, - {38635,35990,35993 ,730,730,730 ,0,0,0}, {35996,38636,35995 ,730,730,730 ,0,0,0}, - {38637,38272,38273 ,730,730,730 ,0,0,0}, {36021,36020,34105 ,730,730,730 ,0,0,0}, - {38637,38638,38271 ,730,730,730 ,0,0,0}, {37720,38632,34643 ,730,730,730 ,0,0,0}, - {38638,34113,38271 ,730,730,730 ,0,0,0}, {35872,35869,34119 ,730,730,730 ,0,0,0}, - {37706,38639,37704 ,730,730,730 ,0,0,0}, {36007,37712,36005 ,730,730,730 ,0,0,0}, - {38640,38641,38262 ,730,730,730 ,0,0,0}, {34191,34653,34655 ,730,730,730 ,0,0,0}, - {38642,38643,34609 ,730,730,730 ,0,0,0}, {34194,34192,34657 ,730,730,730 ,0,0,0}, - {38644,34197,38260 ,730,730,730 ,0,0,0}, {38645,34199,34194 ,730,730,730 ,0,0,0}, - {38646,38647,34185 ,730,730,730 ,0,0,0}, {38648,34177,38649 ,730,730,730 ,0,0,0}, - {37708,36011,36013 ,730,730,730 ,0,0,0}, {3063,38643,38641 ,730,730,730 ,0,0,0}, - {36007,36008,38650 ,730,730,730 ,0,0,0}, {36001,36002,38266 ,730,730,730 ,0,0,0}, - {35996,35999,38267 ,730,730,730 ,0,0,0}, {35999,36001,38268 ,730,730,730 ,0,0,0}, - {38636,35993,35995 ,730,730,730 ,0,0,0}, {38636,35996,38267 ,730,730,730 ,0,0,0}, - {38635,38269,35990 ,730,730,730 ,0,0,0}, {38636,38635,35993 ,730,730,730 ,0,0,0}, - {35989,37718,35987 ,730,730,730 ,0,0,0}, {35990,38269,35989 ,730,730,730 ,0,0,0}, - {35987,37717,35984 ,730,730,730 ,0,0,0}, {34674,35984,37717 ,730,730,730 ,0,0,0}, - {38651,35879,35880 ,730,730,730 ,0,0,0}, {38652,38653,35883 ,730,730,730 ,0,0,0}, - {34631,38278,37747 ,730,730,730 ,0,0,0}, {3015,38628,38627 ,730,730,730 ,0,0,0}, - {38508,34357,37757 ,730,730,730 ,0,0,0}, {37757,34357,38509 ,730,730,730 ,0,0,0}, - {37756,37738,37737 ,730,730,730 ,0,0,0}, {38276,37738,38654 ,730,730,730 ,0,0,0}, - {38282,37743,34615 ,730,730,730 ,0,0,0}, {38282,34619,34618 ,730,730,730 ,0,0,0}, - {37742,34621,37745 ,730,730,730 ,0,0,0}, {34623,34625,38283 ,730,730,730 ,0,0,0}, - {34628,37734,37744 ,730,730,730 ,0,0,0}, {34269,38284,38655 ,730,730,730 ,0,0,0}, - {34628,34264,34262 ,730,730,730 ,0,0,0}, {38655,38656,34267 ,730,730,730 ,0,0,0}, - {37735,34261,38657 ,730,730,730 ,0,0,0}, {34278,34276,34582 ,730,730,730 ,0,0,0}, - {34591,34593,38658 ,730,730,730 ,0,0,0}, {34273,37727,38659 ,730,730,730 ,0,0,0}, - {37697,38257,37698 ,730,730,730 ,0,0,0}, {35889,35891,38280 ,730,730,730 ,0,0,0}, - {35891,37740,34287 ,730,730,730 ,0,0,0}, {35885,35886,38279 ,730,730,730 ,0,0,0}, - {35885,38279,38660 ,730,730,730 ,0,0,0}, {38653,35880,35883 ,730,730,730 ,0,0,0}, - {34359,38651,37741 ,730,730,730 ,0,0,0}, {38653,38651,35880 ,730,730,730 ,0,0,0}, - {34360,38661,34362 ,730,730,730 ,0,0,0}, {34367,34362,34640 ,730,730,730 ,0,0,0}, - {34642,34362,38661 ,730,730,730 ,0,0,0}, {37694,37693,38662 ,730,730,730 ,0,0,0}, - {38663,37696,37691 ,730,730,730 ,0,0,0}, {38664,34603,34601 ,730,730,730 ,0,0,0}, - {37729,34603,38664 ,730,730,730 ,0,0,0}, {34278,34582,34581 ,730,730,730 ,0,0,0}, - {34591,38658,34281 ,730,730,730 ,0,0,0}, {34589,34588,34281 ,730,730,730 ,0,0,0}, - {34283,34589,34281 ,730,730,730 ,0,0,0}, {38281,34275,34286 ,730,730,730 ,0,0,0}, - {38665,37686,37685 ,730,730,730 ,0,0,0}, {34273,37689,37688 ,730,730,730 ,0,0,0}, - {37725,37687,37689 ,730,730,730 ,0,0,0}, {37592,37687,37725 ,730,730,730 ,0,0,0}, - {38666,38667,37593 ,730,730,730 ,0,0,0}, {38668,38669,37692 ,730,730,730 ,0,0,0}, - {37691,37690,38663 ,730,730,730 ,0,0,0}, {37696,38663,37697 ,730,730,730 ,0,0,0}, - {38256,38255,38258 ,730,730,730 ,0,0,0}, {37698,38257,38256 ,730,730,730 ,0,0,0}, - {38258,37589,38670 ,730,730,730 ,0,0,0}, {38671,37588,37587 ,730,730,730 ,0,0,0}, - {37588,38670,37589 ,730,730,730 ,0,0,0}, {34180,38259,38646 ,730,730,730 ,0,0,0}, - {37587,38259,34178 ,730,730,730 ,0,0,0}, {38671,34178,38648 ,730,730,730 ,0,0,0}, - {38672,34188,38673 ,730,730,730 ,0,0,0}, {3063,34609,38643 ,730,730,730 ,0,0,0}, - {37709,38673,34189 ,730,730,730 ,0,0,0}, {38644,38674,34197 ,730,730,730 ,0,0,0}, - {38644,38675,38674 ,730,730,730 ,0,0,0}, {34202,37713,34191 ,730,730,730 ,0,0,0}, - {37714,34202,34203 ,730,730,730 ,0,0,0}, {38676,38677,35839 ,730,730,730 ,0,0,0}, - {38315,36087,1435 ,730,730,730 ,0,0,0}, {36087,36085,1435 ,730,730,730 ,0,0,0}, - {36090,36087,38315 ,730,730,730 ,0,0,0}, {36093,36091,38316 ,730,730,730 ,0,0,0}, - {38678,36097,36096 ,730,730,730 ,0,0,0}, {36102,34551,34555 ,730,730,730 ,0,0,0}, - {36103,34555,34559 ,730,730,730 ,0,0,0}, {36105,34559,34558 ,730,730,730 ,0,0,0}, - {38523,34563,34565 ,730,730,730 ,0,0,0}, {34561,38523,36107 ,730,730,730 ,0,0,0}, - {36107,34558,34561 ,730,730,730 ,0,0,0}, {34563,38523,34561 ,730,730,730 ,0,0,0}, - {34332,34540,34539 ,730,730,730 ,0,0,0}, {38524,34565,1263 ,730,730,730 ,0,0,0}, - {38524,1263,34318 ,730,730,730 ,0,0,0}, {34325,38522,38679 ,730,730,730 ,0,0,0}, - {38680,38681,38682 ,730,730,730 ,0,0,0}, {34323,38679,38683 ,730,730,730 ,0,0,0}, - {34529,38684,34337 ,730,730,730 ,0,0,0}, {34520,34334,34332 ,730,730,730 ,0,0,0}, - {37571,37570,38685 ,730,730,730 ,0,0,0}, {35845,35847,38317 ,730,730,730 ,0,0,0}, - {35847,38319,34343 ,730,730,730 ,0,0,0}, {35841,35842,38318 ,730,730,730 ,0,0,0}, - {35841,38318,38686 ,730,730,730 ,0,0,0}, {38677,35836,35839 ,730,730,730 ,0,0,0}, - {34079,37594,37590 ,730,730,730 ,0,0,0}, {38677,37594,35836 ,730,730,730 ,0,0,0}, - {34080,38687,34082 ,730,730,730 ,0,0,0}, {34087,34082,34579 ,730,730,730 ,0,0,0}, - {2082,34082,38687 ,730,730,730 ,0,0,0}, {37522,37524,38688 ,730,730,730 ,0,0,0}, - {38685,37570,38689 ,730,730,730 ,0,0,0}, {38690,34542,34540 ,730,730,730 ,0,0,0}, - {37606,34542,38690 ,730,730,730 ,0,0,0}, {34339,34527,34337 ,730,730,730 ,0,0,0}, - {38684,34529,34531 ,730,730,730 ,0,0,0}, {34529,34337,34526 ,730,730,730 ,0,0,0}, - {34337,34527,34526 ,730,730,730 ,0,0,0}, {34342,37603,34331 ,730,730,730 ,0,0,0}, - {34533,37597,34531 ,730,730,730 ,0,0,0}, {38681,38691,38682 ,730,730,730 ,0,0,0}, - {34971,34329,34974 ,730,730,730 ,0,0,0}, {38692,38693,38691 ,730,730,730 ,0,0,0}, - {37574,37573,34974 ,730,730,730 ,0,0,0}, {37610,37575,37576 ,730,730,730 ,0,0,0}, - {38685,38689,34536 ,730,730,730 ,0,0,0}, {37570,37572,38290 ,730,730,730 ,0,0,0}, - {37517,38289,37515 ,730,730,730 ,0,0,0}, {38290,37572,38289 ,730,730,730 ,0,0,0}, - {37516,37515,38291 ,730,730,730 ,0,0,0}, {37514,38293,38292 ,730,730,730 ,0,0,0}, - {38293,37516,38291 ,730,730,730 ,0,0,0}, {38294,34236,37561 ,730,730,730 ,0,0,0}, - {38292,37561,34234 ,730,730,730 ,0,0,0}, {34239,34241,38694 ,730,730,730 ,0,0,0}, - {38298,34239,38695 ,730,730,730 ,0,0,0}, {38302,37559,34245 ,730,730,730 ,0,0,0}, - {38299,34253,38300 ,730,730,730 ,0,0,0}, {37554,34496,38696 ,730,730,730 ,0,0,0}, - {34247,34258,37565 ,730,730,730 ,0,0,0}, {38696,34496,34499 ,730,730,730 ,0,0,0}, - {37564,34258,34259 ,730,730,730 ,0,0,0}, {38697,38698,38699 ,730,730,730 ,0,0,0}, - {34161,38700,38701 ,730,730,730 ,0,0,0}, {34160,38701,38702 ,730,730,730 ,0,0,0}, - {35822,34163,34174 ,730,730,730 ,0,0,0}, {38703,34489,34493 ,730,730,730 ,0,0,0}, - {34166,37569,38704 ,730,730,730 ,0,0,0}, {35828,35825,34175 ,730,730,730 ,0,0,0}, - {37519,38705,37507 ,730,730,730 ,0,0,0}, {34499,38706,38696 ,730,730,730 ,0,0,0}, - {34247,34499,34501 ,730,730,730 ,0,0,0}, {37563,34548,38707 ,730,730,730 ,0,0,0}, - {34250,34503,1297 ,730,730,730 ,0,0,0}, {38708,38300,34253 ,730,730,730 ,0,0,0}, - {34253,34255,38708 ,730,730,730 ,0,0,0}, {34545,37541,34546 ,730,730,730 ,0,0,0}, - {38706,34247,38709 ,730,730,730 ,0,0,0}, {37563,34550,34548 ,730,730,730 ,0,0,0}, - {38303,38306,38304 ,730,730,730 ,0,0,0}, {38710,38306,38305 ,730,730,730 ,0,0,0}, - {38711,38710,38307 ,730,730,730 ,0,0,0}, {38712,37583,37560 ,730,730,730 ,0,0,0}, - {38713,37549,37548 ,730,730,730 ,0,0,0}, {38712,37560,37549 ,730,730,730 ,0,0,0}, - {38309,38698,38308 ,730,730,730 ,0,0,0}, {37548,38308,38713 ,730,730,730 ,0,0,0}, - {38699,38311,38697 ,730,730,730 ,0,0,0}, {38309,38699,38698 ,730,730,730 ,0,0,0}, - {38310,37567,37566 ,730,730,730 ,0,0,0}, {38697,38311,38310 ,730,730,730 ,0,0,0}, - {37566,37568,38312 ,730,730,730 ,0,0,0}, {2073,38312,37568 ,730,730,730 ,0,0,0}, - {34486,36060,36063 ,730,730,730 ,0,0,0}, {38714,35809,35807 ,730,730,730 ,0,0,0}, - {34478,34477,36053 ,730,730,730 ,0,0,0}, {34478,36053,36054 ,730,730,730 ,0,0,0}, - {34458,36048,36051 ,730,730,730 ,0,0,0}, {34461,34465,34073 ,730,730,730 ,0,0,0}, - {34068,34066,34457 ,730,730,730 ,0,0,0}, {34071,34073,34464 ,730,730,730 ,0,0,0}, - {34066,36048,34458 ,730,730,730 ,0,0,0}, {34065,34076,36079 ,730,730,730 ,0,0,0}, - {36047,34066,36045 ,730,730,730 ,0,0,0}, {34573,34571,38288 ,730,730,730 ,0,0,0}, - {34077,1435,36085 ,730,730,730 ,0,0,0}, {38715,38716,38717 ,730,730,730 ,0,0,0}, - {35829,34090,34091 ,730,730,730 ,0,0,0}, {38285,35812,35810 ,730,730,730 ,0,0,0}, - {35813,37525,35819 ,730,730,730 ,0,0,0}, {35816,35821,37586 ,730,730,730 ,0,0,0}, - {35819,37527,37586 ,730,730,730 ,0,0,0}, {37505,37569,34164 ,730,730,730 ,0,0,0}, - {37504,35816,37586 ,730,730,730 ,0,0,0}, {34166,38718,34171 ,730,730,730 ,0,0,0}, - {38719,34169,37580 ,730,730,730 ,0,0,0}, {37531,37533,34169 ,730,730,730 ,0,0,0}, - {37531,34169,38719 ,730,730,730 ,0,0,0}, {34489,38703,38720 ,730,730,730 ,0,0,0}, - {38700,37520,36077 ,730,730,730 ,0,0,0}, {36077,37520,36075 ,730,730,730 ,0,0,0}, - {38720,34490,34489 ,730,730,730 ,0,0,0}, {36072,38721,36071 ,730,730,730 ,0,0,0}, - {36075,37521,36072 ,730,730,730 ,0,0,0}, {38722,36066,38287 ,730,730,730 ,0,0,0}, - {34784,38593,38592 ,730,730,730 ,0,0,0}, {34818,37868,38241 ,730,730,730 ,0,0,0}, - {34781,34784,38592 ,730,730,730 ,0,0,0}, {37865,38579,38247 ,730,730,730 ,0,0,0}, - {34799,37863,34800 ,730,730,730 ,0,0,0}, {34799,37861,37863 ,730,730,730 ,0,0,0}, - {38578,37863,38581 ,730,730,730 ,0,0,0}, {38241,34819,34818 ,730,730,730 ,0,0,0}, - {34825,34451,34827 ,730,730,730 ,0,0,0}, {34825,34824,34451 ,730,730,730 ,0,0,0}, - {34443,35923,38246 ,730,730,730 ,0,0,0}, {38589,34444,37867 ,730,730,730 ,0,0,0}, - {34443,35918,35921 ,730,730,730 ,0,0,0}, {34455,38325,35895 ,730,730,730 ,0,0,0}, - {35895,35917,34455 ,730,730,730 ,0,0,0}, {38595,35898,35897 ,730,730,730 ,0,0,0}, - {38595,35897,38325 ,730,730,730 ,0,0,0}, {37873,38594,38593 ,730,730,730 ,0,0,0}, - {37875,35901,35900 ,730,730,730 ,0,0,0}, {37875,35900,38596 ,730,730,730 ,0,0,0}, - {37875,38594,37873 ,730,730,730 ,0,0,0}, {37876,34777,34779 ,730,730,730 ,0,0,0}, - {37876,34781,38592 ,730,730,730 ,0,0,0}, {34435,34774,34777 ,730,730,730 ,0,0,0}, - {34437,34775,34774 ,730,730,730 ,0,0,0}, {34430,38245,34768 ,730,730,730 ,0,0,0}, - {34437,34432,34771 ,730,730,730 ,0,0,0}, {34430,34429,38590 ,730,730,730 ,0,0,0}, - {38591,34429,37864 ,730,730,730 ,0,0,0}, {37864,34440,38244 ,730,730,730 ,0,0,0}, - {34441,38244,34440 ,730,730,730 ,0,0,0}, {37889,38586,38723 ,730,730,730 ,0,0,0}, - {34719,38213,34717 ,730,730,730 ,0,0,0}, {38723,37830,37889 ,730,730,730 ,0,0,0}, - {38213,34722,37855 ,730,730,730 ,0,0,0}, {37854,37893,38617 ,730,730,730 ,0,0,0}, - {37891,38617,37890 ,730,730,730 ,0,0,0}, {34722,37845,37855 ,730,730,730 ,0,0,0}, - {37853,37855,37845 ,730,730,730 ,0,0,0}, {38213,38616,34717 ,730,730,730 ,0,0,0}, - {34709,34713,34423 ,730,730,730 ,0,0,0}, {34415,38615,34726 ,730,730,730 ,0,0,0}, - {34709,34418,34705 ,730,730,730 ,0,0,0}, {34418,34709,34423 ,730,730,730 ,0,0,0}, - {34726,34416,34415 ,730,730,730 ,0,0,0}, {34415,37824,38615 ,730,730,730 ,0,0,0}, - {38724,35935,34427 ,730,730,730 ,0,0,0}, {34427,37860,34426 ,730,730,730 ,0,0,0}, - {35933,37869,35930 ,730,730,730 ,0,0,0}, {37870,35935,38724 ,730,730,730 ,0,0,0}, - {38576,35927,38588 ,730,730,730 ,0,0,0}, {35929,38588,35927 ,730,730,730 ,0,0,0}, - {37829,37828,38576 ,730,730,730 ,0,0,0}, {37829,38576,38588 ,730,730,730 ,0,0,0}, - {38725,38723,38586 ,730,730,730 ,0,0,0}, {34407,37826,38585 ,730,730,730 ,0,0,0}, - {38586,38585,38725 ,730,730,730 ,0,0,0}, {34407,34409,37825 ,730,730,730 ,0,0,0}, - {38583,38251,34402 ,730,730,730 ,0,0,0}, {34409,34404,37885 ,730,730,730 ,0,0,0}, - {38584,34401,38582 ,730,730,730 ,0,0,0}, {34402,34401,38583 ,730,730,730 ,0,0,0}, - {38582,34412,38587 ,730,730,730 ,0,0,0}, {37886,34412,34413 ,730,730,730 ,0,0,0}, - {38222,38224,38623 ,730,730,730 ,0,0,0}, {34385,2303,38600 ,730,730,730 ,0,0,0}, - {38329,38331,38603 ,730,730,730 ,0,0,0}, {38611,38327,38223 ,730,730,730 ,0,0,0}, - {38610,38330,38329 ,730,730,730 ,0,0,0}, {38610,38327,38326 ,730,730,730 ,0,0,0}, - {38327,38611,38328 ,730,730,730 ,0,0,0}, {38623,38624,38222 ,730,730,730 ,0,0,0}, - {34387,37836,34747 ,730,730,730 ,0,0,0}, {38726,38219,34395 ,730,730,730 ,0,0,0}, - {34395,38607,38726 ,730,730,730 ,0,0,0}, {34751,34388,34749 ,730,730,730 ,0,0,0}, - {34390,2950,38607 ,730,730,730 ,0,0,0}, {34387,37840,38605 ,730,730,730 ,0,0,0}, - {34399,37849,37897 ,730,730,730 ,0,0,0}, {37897,37839,34399 ,730,730,730 ,0,0,0}, - {37831,38614,37894 ,730,730,730 ,0,0,0}, {37847,37895,37848 ,730,730,730 ,0,0,0}, - {34732,37838,34734 ,730,730,730 ,0,0,0}, {37831,37892,38614 ,730,730,730 ,0,0,0}, - {37831,37838,34732 ,730,730,730 ,0,0,0}, {38220,38221,38622 ,730,730,730 ,0,0,0}, - {38220,38229,37837 ,730,730,730 ,0,0,0}, {34379,38620,38221 ,730,730,730 ,0,0,0}, - {34381,38618,38620 ,730,730,730 ,0,0,0}, {34381,34376,38619 ,730,730,730 ,0,0,0}, - {38727,37842,34374 ,730,730,730 ,0,0,0}, {37902,34373,38621 ,730,730,730 ,0,0,0}, - {38727,34374,37902 ,730,730,730 ,0,0,0}, {38621,34384,38608 ,730,730,730 ,0,0,0}, - {38604,34384,34385 ,730,730,730 ,0,0,0}, {38630,34687,34689 ,730,730,730 ,0,0,0}, - {34612,38278,34631 ,730,730,730 ,0,0,0}, {3015,38627,34689 ,730,730,730 ,0,0,0}, - {37736,37738,38276 ,730,730,730 ,0,0,0}, {37738,38728,38654 ,730,730,730 ,0,0,0}, - {34611,37743,38277 ,730,730,730 ,0,0,0}, {37743,38728,38277 ,730,730,730 ,0,0,0}, - {38654,38728,37743 ,730,730,730 ,0,0,0}, {37747,34632,34631 ,730,730,730 ,0,0,0}, - {34638,34367,34640 ,730,730,730 ,0,0,0}, {34638,34637,34367 ,730,730,730 ,0,0,0}, - {34359,35879,38651 ,730,730,730 ,0,0,0}, {38661,34360,37741 ,730,730,730 ,0,0,0}, - {34359,35874,35877 ,730,730,730 ,0,0,0}, {34371,38625,35851 ,730,730,730 ,0,0,0}, - {35851,35873,34371 ,730,730,730 ,0,0,0}, {38274,35854,35853 ,730,730,730 ,0,0,0}, - {38274,35853,38625 ,730,730,730 ,0,0,0}, {38626,38629,38628 ,730,730,730 ,0,0,0}, - {37761,35857,35856 ,730,730,730 ,0,0,0}, {37761,35856,38275 ,730,730,730 ,0,0,0}, - {37761,38629,38626 ,730,730,730 ,0,0,0}, {38630,34685,34687 ,730,730,730 ,0,0,0}, - {38630,34689,38627 ,730,730,730 ,0,0,0}, {34351,34682,34685 ,730,730,730 ,0,0,0}, - {34353,34683,34682 ,730,730,730 ,0,0,0}, {34346,34676,34675 ,730,730,730 ,0,0,0}, - {34353,34348,34679 ,730,730,730 ,0,0,0}, {38510,34346,38511 ,730,730,730 ,0,0,0}, - {38511,34356,37764 ,730,730,730 ,0,0,0}, {38511,34346,34345 ,730,730,730 ,0,0,0}, - {34356,34357,38508 ,730,730,730 ,0,0,0}, {38729,38692,34323 ,730,730,730 ,0,0,0}, - {37597,34533,34536 ,730,730,730 ,0,0,0}, {38682,38691,38693 ,730,730,730 ,0,0,0}, - {37596,34536,38689 ,730,730,730 ,0,0,0}, {37575,37610,37573 ,730,730,730 ,0,0,0}, - {37576,37596,38689 ,730,730,730 ,0,0,0}, {37577,37596,37576 ,730,730,730 ,0,0,0}, - {37597,38684,34531 ,730,730,730 ,0,0,0}, {34523,34527,34339 ,730,730,730 ,0,0,0}, - {34331,38690,34540 ,730,730,730 ,0,0,0}, {34523,34334,34519 ,730,730,730 ,0,0,0}, - {34334,34523,34339 ,730,730,730 ,0,0,0}, {34540,34332,34331 ,730,730,730 ,0,0,0}, - {34331,37603,38690 ,730,730,730 ,0,0,0}, {38730,35847,34343 ,730,730,730 ,0,0,0}, - {34343,38319,34342 ,730,730,730 ,0,0,0}, {35845,38318,35842 ,730,730,730 ,0,0,0}, - {38317,35847,38730 ,730,730,730 ,0,0,0}, {38676,35839,38686 ,730,730,730 ,0,0,0}, - {35841,38686,35839 ,730,730,730 ,0,0,0}, {38681,38680,38676 ,730,730,730 ,0,0,0}, - {38681,38676,38686 ,730,730,730 ,0,0,0}, {38731,38693,38692 ,730,730,730 ,0,0,0}, - {34323,38683,38729 ,730,730,730 ,0,0,0}, {38692,38729,38731 ,730,730,730 ,0,0,0}, - {34323,34325,38679 ,730,730,730 ,0,0,0}, {34318,1263,34320 ,730,730,730 ,0,0,0}, - {34325,34320,38522 ,730,730,730 ,0,0,0}, {34318,34317,38524 ,730,730,730 ,0,0,0}, - {38525,34328,38320 ,730,730,730 ,0,0,0}, {38524,34317,38525 ,730,730,730 ,0,0,0}, - {34971,34328,34329 ,730,730,730 ,0,0,0}, {37476,37475,38561 ,730,730,730 ,0,0,0}, - {34301,35063,35069 ,730,730,730 ,0,0,0}, {35078,35076,38563 ,730,730,730 ,0,0,0}, - {38563,38732,38566 ,730,730,730 ,0,0,0}, {38563,38487,35078 ,730,730,730 ,0,0,0}, - {37997,38565,37474 ,730,730,730 ,0,0,0}, {38565,38732,37474 ,730,730,730 ,0,0,0}, - {38566,38732,38565 ,730,730,730 ,0,0,0}, {38546,38545,38561 ,730,730,730 ,0,0,0}, - {34303,38558,34869 ,730,730,730 ,0,0,0}, {38733,38542,34311 ,730,730,730 ,0,0,0}, - {34311,37998,38733 ,730,730,730 ,0,0,0}, {34873,34304,34871 ,730,730,730 ,0,0,0}, - {34306,34876,37998 ,730,730,730 ,0,0,0}, {34303,38009,38560 ,730,730,730 ,0,0,0}, - {34315,38010,38535 ,730,730,730 ,0,0,0}, {38535,38008,34315 ,730,730,730 ,0,0,0}, - {38005,38534,38183 ,730,730,730 ,0,0,0}, {38011,38182,38012 ,730,730,730 ,0,0,0}, - {34917,38488,34919 ,730,730,730 ,0,0,0}, {38005,38004,38534 ,730,730,730 ,0,0,0}, - {38005,38488,34917 ,730,730,730 ,0,0,0}, {37996,37995,38562 ,730,730,730 ,0,0,0}, - {37996,38559,38489 ,730,730,730 ,0,0,0}, {34295,38541,37995 ,730,730,730 ,0,0,0}, - {34297,38540,38541 ,730,730,730 ,0,0,0}, {34297,34292,38539 ,730,730,730 ,0,0,0}, - {34290,38484,38014 ,730,730,730 ,0,0,0}, {38485,34290,38017 ,730,730,730 ,0,0,0}, - {38017,34300,38490 ,730,730,730 ,0,0,0}, {38017,34290,34289 ,730,730,730 ,0,0,0}, - {34300,34301,35069 ,730,730,730 ,0,0,0}, {37684,37730,38734 ,730,730,730 ,0,0,0}, - {34595,37728,34593 ,730,730,730 ,0,0,0}, {38734,37685,37684 ,730,730,730 ,0,0,0}, - {37728,3049,38669 ,730,730,730 ,0,0,0}, {38666,38735,38667 ,730,730,730 ,0,0,0}, - {37593,38667,37591 ,730,730,730 ,0,0,0}, {37692,38669,3049 ,730,730,730 ,0,0,0}, - {38735,38669,38668 ,730,730,730 ,0,0,0}, {38666,38669,38735 ,730,730,730 ,0,0,0}, - {37728,38658,34593 ,730,730,730 ,0,0,0}, {34585,34589,34283 ,730,730,730 ,0,0,0}, - {34275,38664,34601 ,730,730,730 ,0,0,0}, {34585,34278,34581 ,730,730,730 ,0,0,0}, - {34278,34585,34283 ,730,730,730 ,0,0,0}, {34601,34276,34275 ,730,730,730 ,0,0,0}, - {34275,38281,38664 ,730,730,730 ,0,0,0}, {38736,35891,34287 ,730,730,730 ,0,0,0}, - {34287,37740,34286 ,730,730,730 ,0,0,0}, {35889,38279,35886 ,730,730,730 ,0,0,0}, - {38280,35891,38736 ,730,730,730 ,0,0,0}, {38652,35883,38660 ,730,730,730 ,0,0,0}, - {35885,38660,35883 ,730,730,730 ,0,0,0}, {37686,38665,38652 ,730,730,730 ,0,0,0}, - {37686,38652,38660 ,730,730,730 ,0,0,0}, {38737,38734,37730 ,730,730,730 ,0,0,0}, - {34267,38656,37731 ,730,730,730 ,0,0,0}, {37730,37731,38737 ,730,730,730 ,0,0,0}, - {34267,34269,38655 ,730,730,730 ,0,0,0}, {34262,37734,34628 ,730,730,730 ,0,0,0}, - {34269,34264,38284 ,730,730,730 ,0,0,0}, {34262,34261,37735 ,730,730,730 ,0,0,0}, - {38657,34261,37732 ,730,730,730 ,0,0,0}, {37732,34272,38659 ,730,730,730 ,0,0,0}, - {34273,38659,34272 ,730,730,730 ,0,0,0}, {37512,37511,38299 ,730,730,730 ,0,0,0}, - {38303,38302,34245 ,730,730,730 ,0,0,0}, {38307,38710,38305 ,730,730,730 ,0,0,0}, - {37547,37560,37510 ,730,730,730 ,0,0,0}, {38307,37584,38711 ,730,730,730 ,0,0,0}, - {37547,37549,37560 ,730,730,730 ,0,0,0}, {37582,37560,37583 ,730,730,730 ,0,0,0}, - {38299,38301,37512 ,730,730,730 ,0,0,0}, {34247,38706,34499 ,730,730,730 ,0,0,0}, - {38738,38708,34255 ,730,730,730 ,0,0,0}, {34255,37555,38738 ,730,730,730 ,0,0,0}, - {34503,34248,34501 ,730,730,730 ,0,0,0}, {34250,1297,37555 ,730,730,730 ,0,0,0}, - {34247,37565,38709 ,730,730,730 ,0,0,0}, {34259,37543,37545 ,730,730,730 ,0,0,0}, - {37545,37564,34259 ,730,730,730 ,0,0,0}, {37541,38688,37524 ,730,730,730 ,0,0,0}, - {37523,37522,37544 ,730,730,730 ,0,0,0}, {34546,38707,34548 ,730,730,730 ,0,0,0}, - {37541,37540,38688 ,730,730,730 ,0,0,0}, {37541,38707,34546 ,730,730,730 ,0,0,0}, - {38298,38695,38297 ,730,730,730 ,0,0,0}, {38298,37562,37563 ,730,730,730 ,0,0,0}, - {34239,38694,38695 ,730,730,730 ,0,0,0}, {34241,38295,38694 ,730,730,730 ,0,0,0}, - {34241,34236,38294 ,730,730,730 ,0,0,0}, {34234,37514,38292 ,730,730,730 ,0,0,0}, - {34234,34233,37513 ,730,730,730 ,0,0,0}, {38296,34233,37558 ,730,730,730 ,0,0,0}, - {37559,34244,34245 ,730,730,730 ,0,0,0}, {37558,34233,34244 ,730,730,730 ,0,0,0}, - {38551,34217,38572 ,730,730,730 ,0,0,0}, {37557,38552,34860 ,730,730,730 ,0,0,0}, - {37985,3917,37984 ,730,730,730 ,0,0,0}, {38200,38573,38197 ,730,730,730 ,0,0,0}, - {38200,38202,38574 ,730,730,730 ,0,0,0}, {37982,37984,3917 ,730,730,730 ,0,0,0}, - {38201,38575,38202 ,730,730,730 ,0,0,0}, {38575,37984,37983 ,730,730,730 ,0,0,0}, - {37985,38554,38553 ,730,730,730 ,0,0,0}, {38570,37989,34227 ,730,730,730 ,0,0,0}, - {34219,35948,37988 ,730,730,730 ,0,0,0}, {37988,34220,34219 ,730,730,730 ,0,0,0}, - {34222,38556,38570 ,730,730,730 ,0,0,0}, {34219,35954,35948 ,730,730,730 ,0,0,0}, - {37993,37992,38191 ,730,730,730 ,0,0,0}, {38739,35960,34231 ,730,730,730 ,0,0,0}, - {34231,35957,34230 ,730,730,730 ,0,0,0}, {38739,38002,35960 ,730,730,730 ,0,0,0}, - {38003,37991,38557 ,730,730,730 ,0,0,0}, {37556,34867,37992 ,730,730,730 ,0,0,0}, - {37992,34867,38191 ,730,730,730 ,0,0,0}, {37556,34863,34867 ,730,730,730 ,0,0,0}, - {34879,34860,38552 ,730,730,730 ,0,0,0}, {34211,34882,34880 ,730,730,730 ,0,0,0}, - {38552,34880,34879 ,730,730,730 ,0,0,0}, {34213,34208,34886 ,730,730,730 ,0,0,0}, - {34211,34213,34885 ,730,730,730 ,0,0,0}, {34206,37484,34890 ,730,730,730 ,0,0,0}, - {34206,34205,38195 ,730,730,730 ,0,0,0}, {38196,34205,37483 ,730,730,730 ,0,0,0}, - {37483,34216,38550 ,730,730,730 ,0,0,0}, {34217,38550,34216 ,730,730,730 ,0,0,0}, - {38265,38264,38674 ,730,730,730 ,0,0,0}, {37708,37709,34189 ,730,730,730 ,0,0,0}, - {38650,36008,37711 ,730,730,730 ,0,0,0}, {38268,38266,38263 ,730,730,730 ,0,0,0}, - {37712,36007,38650 ,730,730,730 ,0,0,0}, {37712,38266,36002 ,730,730,730 ,0,0,0}, - {38266,38268,36001 ,730,730,730 ,0,0,0}, {38674,38675,38265 ,730,730,730 ,0,0,0}, - {34191,37701,34653 ,730,730,730 ,0,0,0}, {38740,38260,34199 ,730,730,730 ,0,0,0}, - {34199,38645,38740 ,730,730,730 ,0,0,0}, {34657,34192,34655 ,730,730,730 ,0,0,0}, - {34194,34660,38645 ,730,730,730 ,0,0,0}, {34191,37713,37702 ,730,730,730 ,0,0,0}, - {34203,37715,37719 ,730,730,730 ,0,0,0}, {37719,37714,34203 ,730,730,730 ,0,0,0}, - {37683,38662,37693 ,730,730,730 ,0,0,0}, {37695,37694,37716 ,730,730,730 ,0,0,0}, - {34607,38642,34609 ,730,730,730 ,0,0,0}, {37683,37726,38662 ,730,730,730 ,0,0,0}, - {37683,38642,34607 ,730,730,730 ,0,0,0}, {38262,38261,38640 ,730,730,730 ,0,0,0}, - {38262,38641,38643 ,730,730,730 ,0,0,0}, {34183,37703,38261 ,730,730,730 ,0,0,0}, - {34185,38647,37703 ,730,730,730 ,0,0,0}, {34185,34180,38646 ,730,730,730 ,0,0,0}, - {38671,37587,34178 ,730,730,730 ,0,0,0}, {34178,34177,38648 ,730,730,730 ,0,0,0}, - {38649,34177,38672 ,730,730,730 ,0,0,0}, {38673,34188,34189 ,730,730,730 ,0,0,0}, - {38672,34177,34188 ,730,730,730 ,0,0,0}, {34161,37520,38700 ,730,730,730 ,0,0,0}, - {38720,38313,34490 ,730,730,730 ,0,0,0}, {37539,34488,38722 ,730,730,730 ,0,0,0}, - {38721,36072,37521 ,730,730,730 ,0,0,0}, {38287,36071,38721 ,730,730,730 ,0,0,0}, - {34488,36065,38722 ,730,730,730 ,0,0,0}, {38287,36066,36069 ,730,730,730 ,0,0,0}, - {36066,38722,36065 ,730,730,730 ,0,0,0}, {37539,37533,37532 ,730,730,730 ,0,0,0}, - {38718,37580,34171 ,730,730,730 ,0,0,0}, {34163,35816,37504 ,730,730,730 ,0,0,0}, - {37504,34164,34163 ,730,730,730 ,0,0,0}, {34166,38704,38718 ,730,730,730 ,0,0,0}, - {34163,35822,35816 ,730,730,730 ,0,0,0}, {37519,37518,37554 ,730,730,730 ,0,0,0}, - {38741,35828,34175 ,730,730,730 ,0,0,0}, {34175,35825,34174 ,730,730,730 ,0,0,0}, - {38741,37509,35828 ,730,730,730 ,0,0,0}, {37508,37507,38705 ,730,730,730 ,0,0,0}, - {38703,34497,37518 ,730,730,730 ,0,0,0}, {37518,34497,37554 ,730,730,730 ,0,0,0}, - {38703,34493,34497 ,730,730,730 ,0,0,0}, {34508,34490,38313 ,730,730,730 ,0,0,0}, - {34155,34511,34509 ,730,730,730 ,0,0,0}, {38313,34509,34508 ,730,730,730 ,0,0,0}, - {34157,34152,34515 ,730,730,730 ,0,0,0}, {34155,34157,34514 ,730,730,730 ,0,0,0}, - {34150,37578,2073 ,730,730,730 ,0,0,0}, {34150,34149,37579 ,730,730,730 ,0,0,0}, - {37585,34149,38702 ,730,730,730 ,0,0,0}, {38701,34160,34161 ,730,730,730 ,0,0,0}, - {38702,34149,34160 ,730,730,730 ,0,0,0}, {3931,38568,38567 ,730,730,730 ,0,0,0}, - {34941,37973,38181 ,730,730,730 ,0,0,0}, {34843,3931,38567 ,730,730,730 ,0,0,0}, - {38210,36135,38528 ,730,730,730 ,0,0,0}, {34921,38208,34922 ,730,730,730 ,0,0,0}, - {38210,38208,36130 ,730,730,730 ,0,0,0}, {38210,36133,36135 ,730,730,730 ,0,0,0}, - {38208,34921,36129 ,730,730,730 ,0,0,0}, {38181,34942,34941 ,730,730,730 ,0,0,0}, - {34948,34143,34950 ,730,730,730 ,0,0,0}, {34948,34947,34143 ,730,730,730 ,0,0,0}, - {34135,35967,38209 ,730,730,730 ,0,0,0}, {38533,34136,37972 ,730,730,730 ,0,0,0}, - {34135,35962,35965 ,730,730,730 ,0,0,0}, {34147,37976,35939 ,730,730,730 ,0,0,0}, - {35939,35961,34147 ,730,730,730 ,0,0,0}, {37534,35942,35941 ,730,730,730 ,0,0,0}, - {37534,35941,37976 ,730,730,730 ,0,0,0}, {37961,38569,38568 ,730,730,730 ,0,0,0}, - {37550,35945,35944 ,730,730,730 ,0,0,0}, {37550,35944,37535 ,730,730,730 ,0,0,0}, - {37550,38569,37961 ,730,730,730 ,0,0,0}, {38205,34839,34841 ,730,730,730 ,0,0,0}, - {38205,34843,38567 ,730,730,730 ,0,0,0}, {34127,34836,34839 ,730,730,730 ,0,0,0}, - {34129,34837,34836 ,730,730,730 ,0,0,0}, {38207,34830,34122 ,730,730,730 ,0,0,0}, - {34129,34124,34833 ,730,730,730 ,0,0,0}, {34122,34121,37966 ,730,730,730 ,0,0,0}, - {37967,34121,37965 ,730,730,730 ,0,0,0}, {37964,34132,34133 ,730,730,730 ,0,0,0}, - {37965,34121,34132 ,730,730,730 ,0,0,0}, {34105,3171,36021 ,730,730,730 ,0,0,0}, - {38632,38270,34644 ,730,730,730 ,0,0,0}, {38273,3029,38634 ,730,730,730 ,0,0,0}, - {38633,36027,37746 ,730,730,730 ,0,0,0}, {38254,36029,38633 ,730,730,730 ,0,0,0}, - {36035,38634,3029 ,730,730,730 ,0,0,0}, {38254,36032,36029 ,730,730,730 ,0,0,0}, - {36033,38634,36035 ,730,730,730 ,0,0,0}, {38273,38638,38637 ,730,730,730 ,0,0,0}, - {37723,37722,34115 ,730,730,730 ,0,0,0}, {34107,35860,38252 ,730,730,730 ,0,0,0}, - {38252,34108,34107 ,730,730,730 ,0,0,0}, {34110,38631,37723 ,730,730,730 ,0,0,0}, - {34107,35866,35860 ,730,730,730 ,0,0,0}, {37706,37705,37707 ,730,730,730 ,0,0,0}, - {38742,35872,34119 ,730,730,730 ,0,0,0}, {34119,35869,34118 ,730,730,730 ,0,0,0}, - {38742,37700,35872 ,730,730,730 ,0,0,0}, {37699,37704,38639 ,730,730,730 ,0,0,0}, - {37720,34651,37705 ,730,730,730 ,0,0,0}, {37705,34651,37707 ,730,730,730 ,0,0,0}, - {37720,34647,34651 ,730,730,730 ,0,0,0}, {34663,34644,38270 ,730,730,730 ,0,0,0}, - {34099,34666,34664 ,730,730,730 ,0,0,0}, {38270,34664,34663 ,730,730,730 ,0,0,0}, - {34101,34096,34670 ,730,730,730 ,0,0,0}, {34099,34101,34669 ,730,730,730 ,0,0,0}, - {35984,34094,35983 ,730,730,730 ,0,0,0}, {34094,34093,35981 ,730,730,730 ,0,0,0}, - {34093,34104,36015 ,730,730,730 ,0,0,0}, {36020,34104,34105 ,730,730,730 ,0,0,0}, - {36015,34104,36017 ,730,730,730 ,0,0,0}, {34474,38716,38715 ,730,730,730 ,0,0,0}, - {34570,37529,38288 ,730,730,730 ,0,0,0}, {34471,34474,38715 ,730,730,730 ,0,0,0}, - {38678,36093,38316 ,730,730,730 ,0,0,0}, {34551,38314,34552 ,730,730,730 ,0,0,0}, - {38678,38314,36097 ,730,730,730 ,0,0,0}, {38678,36096,36093 ,730,730,730 ,0,0,0}, - {38314,34551,36099 ,730,730,730 ,0,0,0}, {38288,34571,34570 ,730,730,730 ,0,0,0}, - {34577,34087,34579 ,730,730,730 ,0,0,0}, {34577,34576,34087 ,730,730,730 ,0,0,0}, - {34079,35835,37594 ,730,730,730 ,0,0,0}, {38687,34080,37590 ,730,730,730 ,0,0,0}, - {34079,35830,35833 ,730,730,730 ,0,0,0}, {34091,38714,35807 ,730,730,730 ,0,0,0}, - {35807,35829,34091 ,730,730,730 ,0,0,0}, {38286,35810,35809 ,730,730,730 ,0,0,0}, - {38286,35809,38714 ,730,730,730 ,0,0,0}, {37526,38717,38716 ,730,730,730 ,0,0,0}, - {37525,35813,35812 ,730,730,730 ,0,0,0}, {37525,35812,38285 ,730,730,730 ,0,0,0}, - {37525,38717,37526 ,730,730,730 ,0,0,0}, {37528,34467,34469 ,730,730,730 ,0,0,0}, - {37528,34471,38715 ,730,730,730 ,0,0,0}, {34071,34464,34467 ,730,730,730 ,0,0,0}, - {34073,34465,34464 ,730,730,730 ,0,0,0}, {36047,36048,34066 ,730,730,730 ,0,0,0}, - {34073,34068,34461 ,730,730,730 ,0,0,0}, {34066,34065,36045 ,730,730,730 ,0,0,0}, - {36079,34076,36081 ,730,730,730 ,0,0,0}, {36045,34065,36079 ,730,730,730 ,0,0,0}, - {36084,34076,34077 ,730,730,730 ,0,0,0}, {37981,37978,38743 ,730,730,730 ,0,0,0}, - {34905,38180,34903 ,730,730,730 ,0,0,0}, {38743,37979,37981 ,730,730,730 ,0,0,0}, - {38180,3897,38186 ,730,730,730 ,0,0,0}, {36157,38185,36160 ,730,730,730 ,0,0,0}, - {38185,36157,38006 ,730,730,730 ,0,0,0}, {36163,38186,3897 ,730,730,730 ,0,0,0}, - {36161,38186,36163 ,730,730,730 ,0,0,0}, {38180,38531,34903 ,730,730,730 ,0,0,0}, - {34895,34899,34059 ,730,730,730 ,0,0,0}, {34051,38536,34911 ,730,730,730 ,0,0,0}, - {34895,34054,34891 ,730,730,730 ,0,0,0}, {34054,34895,34059 ,730,730,730 ,0,0,0}, - {34911,34052,34051 ,730,730,730 ,0,0,0}, {34051,38211,38536 ,730,730,730 ,0,0,0}, - {38744,35979,34063 ,730,730,730 ,0,0,0}, {34063,37974,34062 ,730,730,730 ,0,0,0}, - {35977,37968,35974 ,730,730,730 ,0,0,0}, {37969,35979,38744 ,730,730,730 ,0,0,0}, - {38526,35971,38532 ,730,730,730 ,0,0,0}, {35973,38532,35971 ,730,730,730 ,0,0,0}, - {37980,38537,38526 ,730,730,730 ,0,0,0}, {37980,38526,38532 ,730,730,730 ,0,0,0}, - {38745,38743,37978 ,730,730,730 ,0,0,0}, {34043,38530,37977 ,730,730,730 ,0,0,0}, - {37978,37977,38745 ,730,730,730 ,0,0,0}, {34043,34045,38529 ,730,730,730 ,0,0,0}, - {36112,34038,36111 ,730,730,730 ,0,0,0}, {34045,34040,38212 ,730,730,730 ,0,0,0}, - {34038,34037,36109 ,730,730,730 ,0,0,0}, {34037,34048,36143 ,730,730,730 ,0,0,0}, - {36148,34048,34049 ,730,730,730 ,0,0,0}, {36143,34048,36145 ,730,730,730 ,0,0,0}, - {38403,38746,38363 ,730,730,730 ,0,0,0}, {38363,38746,38433 ,730,730,730 ,0,0,0}, - {37815,36352,36448 ,20176,20176,20176 ,0,0,0}, {37815,36448,37919 ,20176,20176,20176 ,0,0,0}, - {36374,36373,37850 ,20177,20178,20179 ,0,0,0}, {37852,36381,36374 ,20180,20181,20177 ,0,0,0}, - {36374,37850,37852 ,20177,20179,20180 ,0,0,0}, {36381,37890,36379 ,20181,20182,20183 ,0,0,0}, - {37890,36381,37852 ,20182,20181,20180 ,0,0,0}, {36376,36379,38617 ,20184,20183,20185 ,0,0,0}, - {37890,38617,36379 ,20182,20185,20183 ,0,0,0}, {37893,37341,36376 ,20186,20187,20184 ,0,0,0}, - {36376,38617,37893 ,20184,20185,20186 ,0,0,0}, {37341,37853,36364 ,20187,20188,20189 ,0,0,0}, - {37853,37341,37893 ,20188,20187,20186 ,0,0,0}, {36365,36364,37845 ,20190,20189,20191 ,0,0,0}, - {37853,37845,36364 ,20188,20191,20189 ,0,0,0}, {37844,36957,36365 ,20192,20193,20190 ,0,0,0}, - {36365,37845,37844 ,20190,20191,20192 ,0,0,0}, {36957,37900,36956 ,20193,20194,20195 ,0,0,0}, - {37900,36957,37844 ,20194,20193,20192 ,0,0,0}, {37338,36956,37899 ,20196,20195,20197 ,0,0,0}, - {37900,37899,36956 ,20194,20197,20195 ,0,0,0}, {38214,37339,37338 ,20198,20199,20196 ,0,0,0}, - {37338,37899,38214 ,20196,20197,20198 ,0,0,0}, {37339,37832,36400 ,20199,20200,20201 ,0,0,0}, - {37832,37339,38214 ,20200,20199,20198 ,0,0,0}, {36399,36400,38217 ,20202,20201,20203 ,0,0,0}, - {37832,38217,36400 ,20200,20203,20201 ,0,0,0}, {37843,36397,36399 ,20204,20205,20202 ,0,0,0}, - {36399,38217,37843 ,20202,20203,20204 ,0,0,0}, {36397,37842,36951 ,20205,20206,20207 ,0,0,0}, - {37842,36397,37843 ,20206,20205,20204 ,0,0,0}, {36952,36951,38727 ,20208,20207,20209 ,0,0,0}, - {37842,38727,36951 ,20206,20209,20207 ,0,0,0}, {37902,36949,36952 ,20210,20211,20208 ,0,0,0}, - {36952,38727,37902 ,20208,20209,20210 ,0,0,0}, {36949,38621,36950 ,20211,20212,20213 ,0,0,0}, - {38621,36949,37902 ,20212,20211,20210 ,0,0,0}, {37449,36950,38608 ,20214,20213,20215 ,0,0,0}, - {38621,38608,36950 ,20212,20215,20213 ,0,0,0}, {38604,36403,37449 ,20216,20217,20214 ,0,0,0}, - {37449,38608,38604 ,20214,20215,20216 ,0,0,0}, {36403,38600,36404 ,20217,20218,20219 ,0,0,0}, - {38600,36403,38604 ,20218,20217,20216 ,0,0,0}, {36948,36404,38599 ,20220,20219,20221 ,0,0,0}, - {38600,38599,36404 ,20218,20221,20219 ,0,0,0}, {38602,36407,36948 ,20222,20223,20220 ,0,0,0}, - {36948,38599,38602 ,20220,20221,20222 ,0,0,0}, {36407,38331,36405 ,20223,20224,20225 ,0,0,0}, - {38331,36407,38602 ,20224,20223,20222 ,0,0,0}, {36945,36405,38330 ,20226,20225,20227 ,0,0,0}, - {38331,38330,36405 ,20224,20227,20225 ,0,0,0}, {38609,37345,36945 ,20228,20229,20226 ,0,0,0}, - {36945,38330,38609 ,20226,20227,20228 ,0,0,0}, {37345,38326,36939 ,20229,20230,20231 ,0,0,0}, - {38326,37345,38609 ,20230,20229,20228 ,0,0,0}, {36938,36939,38328 ,20232,20231,20233 ,0,0,0}, - {38326,38328,36939 ,20230,20233,20231 ,0,0,0}, {38333,36935,36938 ,20234,20235,20232 ,0,0,0}, - {36938,38328,38333 ,20232,20233,20234 ,0,0,0}, {36935,38332,36936 ,20235,20236,20237 ,0,0,0}, - {38332,36935,38333 ,20236,20235,20234 ,0,0,0}, {37053,36936,38336 ,20238,20237,20239 ,0,0,0}, - {38332,38336,36936 ,20236,20239,20237 ,0,0,0}, {38612,37055,37053 ,20240,20240,20238 ,0,0,0}, - {37053,38336,38612 ,20238,20239,20240 ,0,0,0}, {37850,36373,37856 ,20179,20178,20241 ,0,0,0}, - {37886,37856,37322 ,20242,20241,20243 ,0,0,0}, {36373,37322,37856 ,20178,20243,20241 ,0,0,0}, - {37445,38587,37886 ,20244,20245,20242 ,0,0,0}, {37886,37322,37445 ,20242,20243,20244 ,0,0,0}, - {38587,36369,38582 ,20245,20246,20247 ,0,0,0}, {36369,38587,37445 ,20246,20245,20244 ,0,0,0}, - {38584,38582,37446 ,20248,20247,20249 ,0,0,0}, {36369,37446,38582 ,20246,20249,20247 ,0,0,0}, - {36370,38583,38584 ,20250,20251,20248 ,0,0,0}, {38584,37446,36370 ,20248,20249,20250 ,0,0,0}, - {38583,36371,38251 ,20251,20252,20253 ,0,0,0}, {36371,38583,36370 ,20252,20251,20250 ,0,0,0}, - {38250,38251,36375 ,20254,20253,20255 ,0,0,0}, {36371,36375,38251 ,20252,20255,20253 ,0,0,0}, - {36368,37879,38250 ,20256,20257,20254 ,0,0,0}, {38250,36375,36368 ,20254,20255,20256 ,0,0,0}, - {37879,36383,37819 ,20257,20258,20259 ,0,0,0}, {36383,37879,36368 ,20258,20257,20256 ,0,0,0}, - {38249,37819,36387 ,20260,20259,20261 ,0,0,0}, {36383,36387,37819 ,20258,20261,20259 ,0,0,0}, - {36388,37872,38249 ,20262,20263,20260 ,0,0,0}, {38249,36387,36388 ,20260,20261,20262 ,0,0,0}, - {37872,36391,37871 ,20263,20264,20265 ,0,0,0}, {36391,37872,36388 ,20264,20263,20262 ,0,0,0}, - {38248,37871,36394 ,20266,20265,20267 ,0,0,0}, {36391,36394,37871 ,20264,20267,20265 ,0,0,0}, - {36393,37861,38248 ,20268,20269,20266 ,0,0,0}, {38248,36394,36393 ,20266,20267,20268 ,0,0,0}, - {37861,37314,37862 ,20269,20270,20271 ,0,0,0}, {37314,37861,36393 ,20270,20269,20268 ,0,0,0}, - {38581,37862,36354 ,20272,20271,20273 ,0,0,0}, {37314,36354,37862 ,20270,20273,20271 ,0,0,0}, - {36353,38579,38581 ,20274,20275,20272 ,0,0,0}, {38581,36354,36353 ,20272,20273,20274 ,0,0,0}, - {38579,37323,38247 ,20275,20276,20277 ,0,0,0}, {37323,38579,36353 ,20276,20275,20274 ,0,0,0}, - {37866,38247,37325 ,20278,20277,20279 ,0,0,0}, {37323,37325,38247 ,20276,20279,20277 ,0,0,0}, - {37061,37822,37866 ,20280,20281,20278 ,0,0,0}, {37866,37325,37061 ,20278,20279,20280 ,0,0,0}, - {37822,37060,38580 ,20281,20282,20283 ,0,0,0}, {37060,37822,37061 ,20282,20281,20280 ,0,0,0}, - {38243,38580,36917 ,20284,20283,20285 ,0,0,0}, {37060,36917,38580 ,20282,20285,20283 ,0,0,0}, - {36918,38244,38243 ,20286,20287,20284 ,0,0,0}, {38243,36917,36918 ,20284,20285,20286 ,0,0,0}, - {38244,36924,37864 ,20287,20288,20289 ,0,0,0}, {36924,38244,36918 ,20288,20287,20286 ,0,0,0}, - {38591,37864,36923 ,20290,20289,20291 ,0,0,0}, {36924,36923,37864 ,20288,20291,20289 ,0,0,0}, - {36925,38590,38591 ,20292,20293,20290 ,0,0,0}, {38591,36923,36925 ,20290,20291,20292 ,0,0,0}, - {38590,36437,38245 ,20293,20294,20295 ,0,0,0}, {36437,38590,36925 ,20294,20293,20292 ,0,0,0}, - {38242,38245,36436 ,20296,20295,20297 ,0,0,0}, {36437,36436,38245 ,20294,20297,20295 ,0,0,0}, - {37043,37827,38242 ,20298,20299,20296 ,0,0,0}, {38242,36436,37043 ,20296,20297,20298 ,0,0,0}, - {37827,37328,37881 ,20299,20300,20301 ,0,0,0}, {37328,37827,37043 ,20300,20299,20298 ,0,0,0}, - {37328,36447,37881 ,20300,20302,20301 ,0,0,0}, {37881,36447,37882 ,20301,20302,20302 ,0,0,0}, - {38492,36443,37817 ,20303,9968,20303 ,0,0,0}, {36443,38492,36449 ,9968,20303,9968 ,0,0,0}, - {36327,37668,37807 ,4303,4303,4303 ,0,0,0}, {36327,37807,36337 ,4303,4303,4303 ,0,0,0}, - {37940,36213,36833 ,21,20304,20304 ,0,0,0}, {37940,36833,38132 ,21,20304,21 ,0,0,0}, - {36306,37956,36293 ,20305,20306,20305 ,0,0,0}, {37956,36306,38026 ,20306,20305,20306 ,0,0,0}, - {37300,36141,36140 ,20307,20308,20309 ,0,0,0}, {37967,37965,36279 ,20310,20311,20312 ,0,0,0}, - {36278,37964,37301 ,20313,20314,20315 ,0,0,0}, {38207,36243,37963 ,20316,20317,20318 ,0,0,0}, - {37299,36878,37966 ,20319,20320,20321 ,0,0,0}, {36237,38204,36285 ,20322,20323,20324 ,0,0,0}, - {37553,37552,36286 ,20325,20326,20327 ,0,0,0}, {38203,36235,36234 ,20328,20329,20330 ,0,0,0}, - {37546,36236,37962 ,20331,20332,20333 ,0,0,0}, {36881,36880,38575 ,20334,20335,20336 ,0,0,0}, - {37304,37983,37982 ,20337,20338,20339 ,0,0,0}, {36298,38573,36874 ,20340,20341,20342 ,0,0,0}, - {38574,38202,37289 ,20343,20344,20345 ,0,0,0}, {38551,38572,37290 ,20346,20347,20348 ,0,0,0}, - {38198,36297,38572 ,20349,20350,20347 ,0,0,0}, {37483,38550,36887 ,20351,20352,20353 ,0,0,0}, - {38551,36888,38550 ,20346,20354,20352 ,0,0,0}, {36891,38196,37483 ,20355,20356,20351 ,0,0,0}, - {37483,36887,36891 ,20351,20353,20355 ,0,0,0}, {38196,36890,38195 ,20356,20357,20358 ,0,0,0}, - {36890,38196,36891 ,20357,20356,20355 ,0,0,0}, {37484,38195,37291 ,20359,20358,20360 ,0,0,0}, - {36890,37291,38195 ,20357,20360,20358 ,0,0,0}, {37282,37485,37484 ,20361,20362,20359 ,0,0,0}, - {37484,37291,37282 ,20359,20360,20361 ,0,0,0}, {37485,36896,38193 ,20362,20363,20364 ,0,0,0}, - {36896,37485,37282 ,20363,20362,20361 ,0,0,0}, {38001,38193,36895 ,20365,20364,20366 ,0,0,0}, - {36896,36895,38193 ,20363,20366,20364 ,0,0,0}, {37293,37999,38001 ,20367,20367,20365 ,0,0,0}, - {38001,36895,37293 ,20365,20366,20367 ,0,0,0}, {37290,36888,38551 ,20348,20354,20346 ,0,0,0}, - {38550,36888,36887 ,20352,20354,20353 ,0,0,0}, {36298,36297,38198 ,20340,20350,20349 ,0,0,0}, - {38572,36297,37290 ,20347,20350,20348 ,0,0,0}, {38573,38574,36874 ,20341,20343,20342 ,0,0,0}, - {38198,38573,36298 ,20349,20341,20340 ,0,0,0}, {37289,38202,36880 ,20345,20344,20335 ,0,0,0}, - {36874,38574,37289 ,20342,20343,20345 ,0,0,0}, {36881,38575,37983 ,20334,20336,20338 ,0,0,0}, - {36880,38202,38575 ,20335,20344,20336 ,0,0,0}, {36234,37304,37982 ,20330,20337,20339 ,0,0,0}, - {37304,36881,37983 ,20337,20334,20338 ,0,0,0}, {37962,36235,38203 ,20333,20329,20328 ,0,0,0}, - {38203,36234,37982 ,20328,20330,20339 ,0,0,0}, {37546,36237,36236 ,20331,20322,20332 ,0,0,0}, - {37962,36236,36235 ,20333,20332,20329 ,0,0,0}, {38204,37553,36285 ,20323,20325,20324 ,0,0,0}, - {37546,38204,36237 ,20331,20323,20322 ,0,0,0}, {36286,37552,36242 ,20327,20326,20368 ,0,0,0}, - {36285,37553,36286 ,20324,20325,20327 ,0,0,0}, {37963,36243,36242 ,20318,20317,20368 ,0,0,0}, - {36242,37552,37963 ,20368,20326,20318 ,0,0,0}, {37966,36878,38207 ,20321,20320,20316 ,0,0,0}, - {36878,36243,38207 ,20320,20317,20316 ,0,0,0}, {37967,36279,37299 ,20310,20312,20319 ,0,0,0}, - {37967,37299,37966 ,20310,20319,20321 ,0,0,0}, {37965,37964,36278 ,20311,20314,20313 ,0,0,0}, - {37965,36278,36279 ,20311,20313,20312 ,0,0,0}, {37301,38206,37300 ,20315,20369,20307 ,0,0,0}, - {37964,38206,37301 ,20314,20369,20315 ,0,0,0}, {36141,37300,38206 ,20308,20307,20369 ,0,0,0}, - {36292,37957,38024 ,20370,20370,20370 ,0,0,0}, {36292,38024,36289 ,20370,20370,20370 ,0,0,0}, - {37948,36181,38050 ,20371,20372,20371 ,0,0,0}, {36181,37948,36199 ,20372,20371,20372 ,0,0,0}, - {37488,37481,36195 ,20373,126,126 ,0,0,0}, {37488,36195,36182 ,20373,126,20373 ,0,0,0}, - {37598,36677,37200 ,20374,20375,20375 ,0,0,0}, {37598,37200,37595 ,20374,20375,20374 ,0,0,0}, - {37429,36077,36076 ,20376,20377,20378 ,0,0,0}, {37585,38702,36689 ,20379,20380,20381 ,0,0,0}, - {37006,38701,37007 ,20382,20383,20384 ,0,0,0}, {37578,37009,38312 ,20385,20386,20387 ,0,0,0}, - {36690,37430,37579 ,20388,20389,20390 ,0,0,0}, {36693,38697,37010 ,20391,20392,20393 ,0,0,0}, - {38310,37566,37011 ,20394,20395,20396 ,0,0,0}, {38713,37431,36696 ,20397,20398,20399 ,0,0,0}, - {38698,37013,38308 ,20400,20401,20402 ,0,0,0}, {37432,37434,37583 ,20403,20404,20405 ,0,0,0}, - {37414,38712,37549 ,20406,20407,20408 ,0,0,0}, {37022,38710,37019 ,20409,20410,20411 ,0,0,0}, - {38711,37584,37020 ,20412,20413,20414 ,0,0,0}, {38302,38304,37025 ,20415,20416,20417 ,0,0,0}, - {38306,37024,38304 ,20418,20419,20416 ,0,0,0}, {37558,37559,37416 ,20420,20421,20422 ,0,0,0}, - {38302,37026,37559 ,20415,20423,20421 ,0,0,0}, {37028,38296,37558 ,20424,20425,20420 ,0,0,0}, - {37558,37416,37028 ,20420,20422,20424 ,0,0,0}, {38296,37027,37513 ,20425,20426,20427 ,0,0,0}, - {37027,38296,37028 ,20426,20425,20424 ,0,0,0}, {37514,37513,37417 ,20428,20427,20429 ,0,0,0}, - {37027,37417,37513 ,20426,20429,20427 ,0,0,0}, {37032,38293,37514 ,20430,20431,20428 ,0,0,0}, - {37514,37417,37032 ,20428,20429,20430 ,0,0,0}, {38293,37418,37516 ,20431,20432,20433 ,0,0,0}, - {37418,38293,37032 ,20432,20431,20430 ,0,0,0}, {37517,37516,37031 ,20434,20433,20435 ,0,0,0}, - {37418,37031,37516 ,20432,20435,20433 ,0,0,0}, {37030,38290,37517 ,20436,20436,20434 ,0,0,0}, - {37517,37031,37030 ,20434,20435,20436 ,0,0,0}, {37025,37026,38302 ,20417,20423,20415 ,0,0,0}, - {37559,37026,37416 ,20421,20423,20422 ,0,0,0}, {37022,37024,38306 ,20409,20419,20418 ,0,0,0}, - {38304,37024,37025 ,20416,20419,20417 ,0,0,0}, {38710,38711,37019 ,20410,20412,20411 ,0,0,0}, - {38306,38710,37022 ,20418,20410,20409 ,0,0,0}, {37020,37584,37434 ,20414,20413,20404 ,0,0,0}, - {37019,38711,37020 ,20411,20412,20414 ,0,0,0}, {37432,37583,38712 ,20403,20405,20407 ,0,0,0}, - {37434,37584,37583 ,20404,20413,20405 ,0,0,0}, {36696,37414,37549 ,20399,20406,20408 ,0,0,0}, - {37414,37432,38712 ,20406,20403,20407 ,0,0,0}, {38308,37431,38713 ,20402,20398,20397 ,0,0,0}, - {38713,36696,37549 ,20397,20399,20408 ,0,0,0}, {38698,36693,37013 ,20400,20391,20401 ,0,0,0}, - {38308,37013,37431 ,20402,20401,20398 ,0,0,0}, {38697,38310,37010 ,20392,20394,20393 ,0,0,0}, - {38698,38697,36693 ,20400,20392,20391 ,0,0,0}, {37011,37566,37422 ,20396,20395,20437 ,0,0,0}, - {37010,38310,37011 ,20393,20394,20396 ,0,0,0}, {38312,37009,37422 ,20387,20386,20437 ,0,0,0}, - {37422,37566,38312 ,20437,20395,20387 ,0,0,0}, {37579,37430,37578 ,20390,20389,20385 ,0,0,0}, - {37430,37009,37578 ,20389,20386,20385 ,0,0,0}, {37585,36689,36690 ,20379,20381,20388 ,0,0,0}, - {37585,36690,37579 ,20379,20388,20390 ,0,0,0}, {38702,38701,37006 ,20380,20383,20382 ,0,0,0}, - {38702,37006,36689 ,20380,20382,20381 ,0,0,0}, {37007,38700,37429 ,20384,20438,20376 ,0,0,0}, - {38701,38700,37007 ,20383,20438,20384 ,0,0,0}, {36077,37429,38700 ,20377,20376,20438 ,0,0,0}, - {37615,36676,37599 ,20439,20440,20439 ,0,0,0}, {36676,37615,36738 ,20440,20439,20440 ,0,0,0}, - {36645,38366,37626 ,7656,7656,7656 ,0,0,0}, {36645,37626,36653 ,7656,7656,7656 ,0,0,0}, - {37648,37094,36792 ,20441,9944,9944 ,0,0,0}, {37648,36792,37661 ,20441,9944,20441 ,0,0,0}, - {36623,37750,36528 ,20442,20443,20442 ,0,0,0}, {37750,36623,37767 ,20443,20442,20443 ,0,0,0}, - {36600,36013,36012 ,20444,20445,20446 ,0,0,0}, {38649,38672,36984 ,20447,20448,20449 ,0,0,0}, - {36985,38673,36599 ,20450,20451,20452 ,0,0,0}, {38671,36986,37588 ,20453,20454,20455 ,0,0,0}, - {37391,37396,38648 ,20456,20457,20458 ,0,0,0}, {37386,38256,37387 ,20459,20460,20461 ,0,0,0}, - {38258,38670,36962 ,20462,20463,20464 ,0,0,0}, {37691,36988,36552 ,20465,20466,20467 ,0,0,0}, - {37698,36559,37696 ,20468,20469,20470 ,0,0,0}, {36993,36992,38735 ,20471,20472,20473 ,0,0,0}, - {36555,38668,37692 ,20474,20475,20476 ,0,0,0}, {36544,37592,37378 ,20477,20478,20479 ,0,0,0}, - {37591,38667,37379 ,20480,20481,20482 ,0,0,0}, {37727,37688,37381 ,20483,20484,20485 ,0,0,0}, - {37687,36543,37688 ,20486,20487,20484 ,0,0,0}, {37732,38659,37383 ,20488,20489,20490 ,0,0,0}, - {37727,37382,38659 ,20483,20491,20489 ,0,0,0}, {36606,38657,37732 ,20492,20493,20488 ,0,0,0}, - {37732,37383,36606 ,20488,20490,20492 ,0,0,0}, {38657,36607,37735 ,20493,20494,20495 ,0,0,0}, - {36607,38657,36606 ,20494,20493,20492 ,0,0,0}, {37734,37735,36611 ,20496,20495,20497 ,0,0,0}, - {36607,36611,37735 ,20494,20497,20495 ,0,0,0}, {36610,37744,37734 ,20498,20499,20496 ,0,0,0}, - {37734,36611,36610 ,20496,20497,20498 ,0,0,0}, {37744,36613,38283 ,20499,20500,20501 ,0,0,0}, - {36613,37744,36610 ,20500,20499,20498 ,0,0,0}, {37745,38283,36969 ,20502,20501,20503 ,0,0,0}, - {36613,36969,38283 ,20500,20503,20501 ,0,0,0}, {36562,37742,37745 ,20504,20504,20502 ,0,0,0}, - {37745,36969,36562 ,20502,20503,20504 ,0,0,0}, {37381,37382,37727 ,20485,20491,20483 ,0,0,0}, - {38659,37382,37383 ,20489,20491,20490 ,0,0,0}, {36544,36543,37687 ,20477,20487,20486 ,0,0,0}, - {37688,36543,37381 ,20484,20487,20485 ,0,0,0}, {37592,37591,37378 ,20478,20480,20479 ,0,0,0}, - {37687,37592,36544 ,20486,20478,20477 ,0,0,0}, {37379,38667,36992 ,20482,20481,20472 ,0,0,0}, - {37378,37591,37379 ,20479,20480,20482 ,0,0,0}, {36993,38735,38668 ,20471,20473,20475 ,0,0,0}, - {36992,38667,38735 ,20472,20481,20473 ,0,0,0}, {36552,36555,37692 ,20467,20474,20476 ,0,0,0}, - {36555,36993,38668 ,20474,20471,20475 ,0,0,0}, {37696,36988,37691 ,20470,20466,20465 ,0,0,0}, - {37691,36552,37692 ,20465,20467,20476 ,0,0,0}, {37698,37386,36559 ,20468,20459,20469 ,0,0,0}, - {37696,36559,36988 ,20470,20469,20466 ,0,0,0}, {38256,38258,37387 ,20460,20462,20461 ,0,0,0}, - {37698,38256,37386 ,20468,20460,20459 ,0,0,0}, {36962,38670,37397 ,20464,20463,20505 ,0,0,0}, - {37387,38258,36962 ,20461,20462,20464 ,0,0,0}, {37588,36986,37397 ,20455,20454,20505 ,0,0,0}, - {37397,38670,37588 ,20505,20463,20455 ,0,0,0}, {38648,37396,38671 ,20458,20457,20453 ,0,0,0}, - {37396,36986,38671 ,20457,20454,20453 ,0,0,0}, {38649,36984,37391 ,20447,20449,20456 ,0,0,0}, - {38649,37391,38648 ,20447,20456,20458 ,0,0,0}, {38672,38673,36985 ,20448,20451,20450 ,0,0,0}, - {38672,36985,36984 ,20448,20450,20449 ,0,0,0}, {36599,37709,36600 ,20452,20506,20444 ,0,0,0}, - {38673,37709,36599 ,20451,20506,20452 ,0,0,0}, {36013,36600,37709 ,20445,20444,20506 ,0,0,0}, - {36526,37681,38498 ,20507,20508,20508 ,0,0,0}, {36526,38498,36619 ,20507,20508,20507 ,0,0,0}, - {38167,36497,38359 ,20509,11097,20509 ,0,0,0}, {36497,38167,36494 ,11097,20509,11097 ,0,0,0}, - {36341,37800,36849 ,8396,20510,8396 ,0,0,0}, {37800,36341,37801 ,20510,8396,20510 ,0,0,0}, - {37611,37610,36720 ,20511,20512,20513 ,0,0,0}, {37600,36679,36678 ,20514,20511,20514 ,0,0,0}, - {36679,37611,36720 ,20511,20511,20513 ,0,0,0}, {37600,36678,37605 ,20514,20514,20515 ,0,0,0}, - {37255,37615,37614 ,20516,20517,20516 ,0,0,0}, {37605,36678,36735 ,20515,20514,20515 ,0,0,0}, - {36735,37614,37605 ,20515,20516,20515 ,0,0,0}, {37614,36735,37255 ,20516,20515,20516 ,0,0,0}, - {37615,37255,36738 ,20517,20516,20518 ,0,0,0}, {36679,37600,37611 ,20511,20514,20511 ,0,0,0}, - {36721,36720,37610 ,20519,20513,20512 ,0,0,0}, {36730,36721,37576 ,20520,20519,20519 ,0,0,0}, - {37610,37576,36721 ,20512,20519,20519 ,0,0,0}, {38689,37037,36730 ,20520,20521,20520 ,0,0,0}, - {36730,37576,38689 ,20520,20519,20520 ,0,0,0}, {37037,37570,37030 ,20521,20522,20436 ,0,0,0}, - {37570,37037,38689 ,20522,20521,20520 ,0,0,0}, {37570,38290,37030 ,20522,20436,20436 ,0,0,0}, - {38320,37617,36732 ,20523,20524,20525 ,0,0,0}, {38525,36713,36714 ,20526,20523,20526 ,0,0,0}, - {36713,38320,36732 ,20523,20523,20525 ,0,0,0}, {38525,36714,38524 ,20526,20526,20527 ,0,0,0}, - {36188,36107,38523 ,20528,20060,20528 ,0,0,0}, {38524,36714,36711 ,20527,20526,20527 ,0,0,0}, - {36711,38523,38524 ,20527,20528,20527 ,0,0,0}, {38523,36711,36188 ,20528,20527,20528 ,0,0,0}, - {36107,36188,36108 ,20060,20528,20060 ,0,0,0}, {36713,38525,38320 ,20523,20526,20523 ,0,0,0}, - {37251,36732,37617 ,20529,20525,20524 ,0,0,0}, {37252,37251,37619 ,20530,20529,20529 ,0,0,0}, - {37617,37619,37251 ,20524,20529,20529 ,0,0,0}, {37618,36681,37252 ,20530,20531,20530 ,0,0,0}, - {37252,37619,37618 ,20530,20529,20530 ,0,0,0}, {36681,37607,37200 ,20531,20531,21 ,0,0,0}, - {37607,36681,37618 ,20531,20531,20530 ,0,0,0}, {37607,37595,37200 ,20531,20532,21 ,0,0,0}, - {37764,37766,36596 ,20533,20534,20534 ,0,0,0}, {38511,36595,37350 ,20535,20533,20535 ,0,0,0}, - {36595,37764,36596 ,20533,20533,20534 ,0,0,0}, {38511,37350,38510 ,20535,20535,20536 ,0,0,0}, - {36575,36043,37759 ,20537,19998,20537 ,0,0,0}, {38510,37350,36535 ,20536,20535,20536 ,0,0,0}, - {36535,37759,38510 ,20536,20537,20536 ,0,0,0}, {37759,36535,36575 ,20537,20536,20537 ,0,0,0}, - {36043,36575,36044 ,19998,20537,19998 ,0,0,0}, {36595,38511,37764 ,20533,20535,20533 ,0,0,0}, - {36617,36596,37766 ,20538,20534,20534 ,0,0,0}, {37235,36617,38507 ,20539,20538,20538 ,0,0,0}, - {37766,38507,36617 ,20534,20538,20538 ,0,0,0}, {37770,36618,37235 ,20539,20540,20539 ,0,0,0}, - {37235,38507,37770 ,20539,20538,20539 ,0,0,0}, {36618,37752,36623 ,20540,20540,20541 ,0,0,0}, - {37752,36618,37770 ,20540,20540,20539 ,0,0,0}, {37752,37767,36623 ,20540,20542,20541 ,0,0,0}, - {38015,38487,36905 ,20543,20544,20545 ,0,0,0}, {38016,37216,36311 ,20546,20543,20546 ,0,0,0}, - {37216,38015,36905 ,20543,20543,20545 ,0,0,0}, {38016,36311,38018 ,20546,20546,20547 ,0,0,0}, - {37220,38024,38482 ,20548,20549,20548 ,0,0,0}, {38018,36311,36301 ,20547,20546,20547 ,0,0,0}, - {36301,38482,38018 ,20547,20548,20547 ,0,0,0}, {38482,36301,37220 ,20548,20547,20548 ,0,0,0}, - {38024,37220,36289 ,20549,20548,20550 ,0,0,0}, {37216,38016,38015 ,20543,20546,20543 ,0,0,0}, - {37227,36905,38487 ,20551,20545,20544 ,0,0,0}, {37275,37227,38566 ,20552,20551,20551 ,0,0,0}, - {38487,38566,37227 ,20544,20551,20551 ,0,0,0}, {38565,36903,37275 ,20552,20553,20552 ,0,0,0}, - {37275,38566,38565 ,20552,20551,20552 ,0,0,0}, {36903,38547,37293 ,20553,20553,20367 ,0,0,0}, - {38547,36903,38565 ,20553,20553,20552 ,0,0,0}, {38547,37999,37293 ,20553,20367,20367 ,0,0,0}, - {38490,38020,36294 ,20554,20555,20556 ,0,0,0}, {38017,36900,37280 ,20557,20554,20557 ,0,0,0}, - {36900,38490,36294 ,20554,20554,20556 ,0,0,0}, {38017,37280,38485 ,20557,20557,20558 ,0,0,0}, - {36908,36171,38188 ,20559,20123,20559 ,0,0,0}, {38485,37280,37278 ,20558,20557,20558 ,0,0,0}, - {37278,38188,38485 ,20558,20559,20558 ,0,0,0}, {38188,37278,36908 ,20559,20558,20559 ,0,0,0}, - {36171,36908,36172 ,20123,20559,20123 ,0,0,0}, {36900,38017,38490 ,20554,20557,20554 ,0,0,0}, - {36295,36294,38020 ,20560,20556,20555 ,0,0,0}, {36304,36295,37960 ,20561,20560,20560 ,0,0,0}, - {38020,37960,36295 ,20555,20560,20560 ,0,0,0}, {37959,36308,36304 ,20561,20562,20561 ,0,0,0}, - {36304,37960,37959 ,20561,20560,20561 ,0,0,0}, {36308,38021,36306 ,20562,20562,20563 ,0,0,0}, - {38021,36308,37959 ,20562,20562,20561 ,0,0,0}, {38021,38026,36306 ,20562,20564,20563 ,0,0,0}, - {37754,38276,36592 ,20565,20566,20567 ,0,0,0}, {37758,36620,36608 ,20568,20565,20568 ,0,0,0}, - {36620,37754,36592 ,20565,20565,20567 ,0,0,0}, {37758,36608,37760 ,20568,20568,20569 ,0,0,0}, - {36621,38498,37763 ,20570,20571,20570 ,0,0,0}, {37760,36608,36609 ,20569,20568,20569 ,0,0,0}, - {36609,37763,37760 ,20569,20570,20569 ,0,0,0}, {37763,36609,36621 ,20570,20569,20570 ,0,0,0}, - {38498,36621,36619 ,20571,20570,20572 ,0,0,0}, {36620,37758,37754 ,20565,20568,20565 ,0,0,0}, - {37236,36592,38276 ,20573,20567,20566 ,0,0,0}, {37243,37236,38654 ,20574,20573,20573 ,0,0,0}, - {38276,38654,37236 ,20566,20573,20573 ,0,0,0}, {37743,37349,37243 ,20574,20575,20574 ,0,0,0}, - {37243,38654,37743 ,20574,20573,20574 ,0,0,0}, {37349,38282,36562 ,20575,20575,20504 ,0,0,0}, - {38282,37349,37743 ,20575,20575,20574 ,0,0,0}, {38282,37742,36562 ,20575,20504,20504 ,0,0,0}, - {37918,37922,36926 ,20576,20577,20577 ,0,0,0}, {37912,36928,36932 ,20578,20576,20578 ,0,0,0}, - {36928,37918,36926 ,20576,20576,20577 ,0,0,0}, {37912,36932,38321 ,20578,20578,20579 ,0,0,0}, - {36422,38612,38338 ,20580,20240,20580 ,0,0,0}, {38321,36932,36425 ,20579,20578,20579 ,0,0,0}, - {36425,38338,38321 ,20579,20580,20579 ,0,0,0}, {38338,36425,36422 ,20580,20579,20580 ,0,0,0}, - {38612,36422,37055 ,20240,20580,20240 ,0,0,0}, {36928,37912,37918 ,20576,20578,20576 ,0,0,0}, - {36429,36926,37922 ,20581,20577,20577 ,0,0,0}, {36930,36429,37905 ,20582,20581,20581 ,0,0,0}, - {37922,37905,36429 ,20577,20581,20581 ,0,0,0}, {37923,36460,36930 ,20582,20583,20582 ,0,0,0}, - {36930,37905,37923 ,20582,20581,20582 ,0,0,0}, {36460,38495,36448 ,20583,20583,20584 ,0,0,0}, - {38495,36460,37923 ,20583,20583,20582 ,0,0,0}, {38495,37919,36448 ,20583,324,20584 ,0,0,0}, - {38232,38233,37046 ,20585,20586,20586 ,0,0,0}, {37915,36454,36455 ,20587,20585,20587 ,0,0,0}, - {36454,38232,37046 ,20585,20585,20586 ,0,0,0}, {37915,36455,37916 ,20587,20587,20588 ,0,0,0}, - {36462,38492,38491 ,20589,20590,20589 ,0,0,0}, {37916,36455,36461 ,20588,20587,20588 ,0,0,0}, - {36461,38491,37916 ,20588,20589,20588 ,0,0,0}, {38491,36461,36462 ,20589,20588,20589 ,0,0,0}, - {38492,36462,36449 ,20590,20589,20591 ,0,0,0}, {36454,37915,38232 ,20585,20587,20585 ,0,0,0}, - {37045,37046,38233 ,20592,20586,20586 ,0,0,0}, {36445,37045,38234 ,20593,20592,20592 ,0,0,0}, - {38233,38234,37045 ,20586,20592,20592 ,0,0,0}, {37884,36453,36445 ,20593,20594,20593 ,0,0,0}, - {36445,38234,37884 ,20593,20592,20593 ,0,0,0}, {36453,37883,36447 ,20594,20594,20302 ,0,0,0}, - {37883,36453,37884 ,20594,20594,20593 ,0,0,0}, {37883,37882,36447 ,20594,20302,20302 ,0,0,0}, - {38051,38030,36206 ,20595,20596,20596 ,0,0,0}, {38051,36206,36205 ,20595,20596,20595 ,0,0,0}, - {37947,36205,36757 ,20597,20595,20597 ,0,0,0}, {36757,36758,38029 ,20597,20598,20598 ,0,0,0}, - {38029,37947,36757 ,20598,20597,20597 ,0,0,0}, {38051,36205,37947 ,20595,20595,20597 ,0,0,0}, - {38053,38029,36758 ,20599,20598,20598 ,0,0,0}, {38053,36759,38052 ,20599,20599,20600 ,0,0,0}, - {37139,37948,38052 ,20600,20601,20600 ,0,0,0}, {38053,36758,36759 ,20599,20598,20599 ,0,0,0}, - {37139,36199,37948 ,20600,20602,20601 ,0,0,0}, {37139,38052,36759 ,20600,20600,20599 ,0,0,0}, - {38030,37952,36211 ,20596,20603,20603 ,0,0,0}, {36211,36206,38030 ,20603,20596,20596 ,0,0,0}, - {36217,37952,37950 ,20604,20603,20604 ,0,0,0}, {37952,36217,36211 ,20603,20604,20603 ,0,0,0}, - {37949,36214,37950 ,20605,20605,20604 ,0,0,0}, {36217,37950,36214 ,20604,20604,20605 ,0,0,0}, - {37949,37470,36192 ,20605,20606,20606 ,0,0,0}, {36192,36214,37949 ,20606,20605,20605 ,0,0,0}, - {36193,37470,37469 ,20607,20606,20607 ,0,0,0}, {37470,36193,36192 ,20606,20607,20606 ,0,0,0}, - {36193,37469,36292 ,20607,20607,20608 ,0,0,0}, {36292,37469,37957 ,20608,20607,20609 ,0,0,0}, - {37926,37928,36347 ,20610,2038,2038 ,0,0,0}, {37926,36347,36346 ,20610,2038,20610 ,0,0,0}, - {37809,36346,36344 ,20611,20610,20611 ,0,0,0}, {36344,36343,37814 ,20611,20612,20612 ,0,0,0}, - {37814,37809,36344 ,20612,20611,20611 ,0,0,0}, {37926,36346,37809 ,20610,20610,20611 ,0,0,0}, - {37798,37814,36343 ,20613,20612,20612 ,0,0,0}, {37798,36331,37799 ,20613,20613,20614 ,0,0,0}, - {36348,37815,37799 ,20614,20615,20614 ,0,0,0}, {37798,36343,36331 ,20613,20612,20613 ,0,0,0}, - {36348,36352,37815 ,20614,20616,20615 ,0,0,0}, {36348,37799,36331 ,20614,20614,20613 ,0,0,0}, - {37928,38354,36859 ,2038,20617,20617 ,0,0,0}, {36859,36347,37928 ,20617,2038,2038 ,0,0,0}, - {36816,38354,38355 ,20618,20617,20618 ,0,0,0}, {38354,36816,36859 ,20617,20618,20617 ,0,0,0}, - {38427,36835,38355 ,20619,20619,20618 ,0,0,0}, {36816,38355,36835 ,20618,20618,20619 ,0,0,0}, - {38427,38428,36815 ,20619,20620,20620 ,0,0,0}, {36815,36835,38427 ,20620,20619,20619 ,0,0,0}, - {36466,38428,38429 ,20621,20620,20621 ,0,0,0}, {38428,36466,36815 ,20620,20621,20620 ,0,0,0}, - {36466,38429,36341 ,20621,20621,20622 ,0,0,0}, {36341,38429,37801 ,20622,20621,20623 ,0,0,0}, - {38079,37494,36628 ,20624,20625,20625 ,0,0,0}, {38079,36628,37148 ,20624,20625,20624 ,0,0,0}, - {37774,37148,37126 ,20626,20624,20626 ,0,0,0}, {37126,37117,37772 ,20626,2040,2040 ,0,0,0}, - {37772,37774,37126 ,2040,20626,20626 ,0,0,0}, {38079,37148,37774 ,20624,20624,20626 ,0,0,0}, - {38155,37772,37117 ,20627,2040,2040 ,0,0,0}, {38155,37118,38090 ,20627,20627,20628 ,0,0,0}, - {37119,38167,38090 ,20628,20629,20628 ,0,0,0}, {38155,37117,37118 ,20627,2040,20627 ,0,0,0}, - {37119,36494,38167 ,20628,20629,20629 ,0,0,0}, {37119,38090,37118 ,20628,20628,20627 ,0,0,0}, - {37494,37675,36626 ,20625,20630,20630 ,0,0,0}, {36626,36628,37494 ,20630,20625,20625 ,0,0,0}, - {36515,37675,37673 ,20631,20630,20631 ,0,0,0}, {37675,36515,36626 ,20630,20631,20630 ,0,0,0}, - {37672,36521,37673 ,20632,20632,20631 ,0,0,0}, {36515,37673,36521 ,20631,20631,20632 ,0,0,0}, - {37672,37677,36522 ,20632,20633,20633 ,0,0,0}, {36522,36521,37672 ,20633,20632,20632 ,0,0,0}, - {36525,37677,37678 ,20634,20633,20634 ,0,0,0}, {37677,36525,36522 ,20633,20634,20633 ,0,0,0}, - {36525,37678,36526 ,20634,20634,20635 ,0,0,0}, {36526,37678,37681 ,20635,20634,20636 ,0,0,0}, - {37771,37674,36627 ,20637,20638,20638 ,0,0,0}, {37771,36627,36517 ,20637,20638,20637 ,0,0,0}, - {37671,36517,36516 ,20639,20637,20639 ,0,0,0}, {36516,36523,37676 ,20639,20640,20640 ,0,0,0}, - {37676,37671,36516 ,20640,20639,20639 ,0,0,0}, {37771,36517,37671 ,20637,20637,20639 ,0,0,0}, - {37679,37676,36523 ,20641,20640,20640 ,0,0,0}, {37679,36524,37680 ,20641,20641,20642 ,0,0,0}, - {36527,37750,37680 ,20642,20643,20642 ,0,0,0}, {37679,36523,36524 ,20641,20640,20641 ,0,0,0}, - {36527,36528,37750 ,20642,20644,20643 ,0,0,0}, {36527,37680,36524 ,20642,20642,20641 ,0,0,0}, - {37674,38450,36519 ,20638,20645,20646 ,0,0,0}, {36519,36627,37674 ,20646,20638,20638 ,0,0,0}, - {36473,38450,38383 ,20647,20645,20647 ,0,0,0}, {38450,36473,36519 ,20645,20647,20646 ,0,0,0}, - {38378,36802,38383 ,20648,20648,20647 ,0,0,0}, {36473,38383,36802 ,20647,20647,20648 ,0,0,0}, - {38378,38379,36803 ,20648,20649,20649 ,0,0,0}, {36803,36802,38378 ,20649,20648,20648 ,0,0,0}, - {36800,38379,38381 ,20650,20649,20650 ,0,0,0}, {38379,36800,36803 ,20649,20650,20649 ,0,0,0}, - {36800,38381,36792 ,20650,20650,324 ,0,0,0}, {36792,38381,37661 ,324,20650,20651 ,0,0,0}, - {38103,37492,36742 ,20652,20653,20653 ,0,0,0}, {38103,36742,37090 ,20652,20653,20652 ,0,0,0}, - {37620,37090,37191 ,20654,20652,20654 ,0,0,0}, {37191,37192,38037 ,20654,20655,20655 ,0,0,0}, - {38037,37620,37191 ,20655,20654,20654 ,0,0,0}, {38103,37090,37620 ,20652,20652,20654 ,0,0,0}, - {37629,38037,37192 ,20656,20655,20655 ,0,0,0}, {37629,37092,37625 ,20656,20656,20657 ,0,0,0}, - {36654,37626,37625 ,20657,20658,20657 ,0,0,0}, {37629,37192,37092 ,20656,20655,20656 ,0,0,0}, - {36654,36653,37626 ,20657,20658,20658 ,0,0,0}, {36654,37625,37092 ,20657,20657,20656 ,0,0,0}, - {37492,37491,36673 ,20653,20659,20659 ,0,0,0}, {36673,36742,37492 ,20659,20653,20653 ,0,0,0}, - {36671,37491,37498 ,20660,20659,20660 ,0,0,0}, {37491,36671,36673 ,20659,20660,20659 ,0,0,0}, - {37497,36675,37498 ,20661,20661,20660 ,0,0,0}, {36671,37498,36675 ,20660,20660,20661 ,0,0,0}, - {37497,37503,36179 ,20661,20662,20662 ,0,0,0}, {36179,36675,37497 ,20662,20661,20661 ,0,0,0}, - {36674,37503,37506 ,20663,20662,20663 ,0,0,0}, {37503,36674,36179 ,20662,20663,20662 ,0,0,0}, - {36674,37506,36676 ,20663,20663,324 ,0,0,0}, {36676,37506,37599 ,324,20663,20664 ,0,0,0}, - {38080,37927,36345 ,20665,20666,20666 ,0,0,0}, {38080,36345,36861 ,20665,20666,20665 ,0,0,0}, - {37812,36861,36819 ,20667,20665,20667 ,0,0,0}, {36819,36863,37635 ,20667,20668,20668 ,0,0,0}, - {37635,37812,36819 ,20668,20667,20667 ,0,0,0}, {38080,36861,37812 ,20665,20665,20667 ,0,0,0}, - {37633,37635,36863 ,20669,20668,20668 ,0,0,0}, {37633,36318,37910 ,20669,20669,20670 ,0,0,0}, - {36865,37807,37910 ,20670,20671,20670 ,0,0,0}, {37633,36863,36318 ,20669,20668,20669 ,0,0,0}, - {36865,36337,37807 ,20670,20672,20671 ,0,0,0}, {36865,37910,36318 ,20670,20670,20669 ,0,0,0}, - {37927,37808,36465 ,20666,20673,20673 ,0,0,0}, {36465,36345,37927 ,20673,20666,20666 ,0,0,0}, - {36342,37808,37810 ,20674,20673,20674 ,0,0,0}, {37808,36342,36465 ,20673,20674,20673 ,0,0,0}, - {37813,36332,37810 ,20675,20675,20674 ,0,0,0}, {36342,37810,36332 ,20674,20674,20675 ,0,0,0}, - {37813,37797,36333 ,20675,20676,20676 ,0,0,0}, {36333,36332,37813 ,20676,20675,20675 ,0,0,0}, - {36349,37797,37816 ,20677,20676,20677 ,0,0,0}, {37797,36349,36333 ,20676,20677,20676 ,0,0,0}, - {36349,37816,36443 ,20677,20677,20678 ,0,0,0}, {36443,37816,37817 ,20678,20677,20679 ,0,0,0}, - {37953,37942,36210 ,20680,20681,20681 ,0,0,0}, {37953,36210,36212 ,20680,20681,20680 ,0,0,0}, - {37951,36212,36216 ,20682,20680,20682 ,0,0,0}, {36216,36215,37955 ,20682,20683,20683 ,0,0,0}, - {37955,37951,36216 ,20683,20682,20682 ,0,0,0}, {37953,36212,37951 ,20680,20680,20682 ,0,0,0}, - {37468,37955,36215 ,20684,20683,20683 ,0,0,0}, {37468,36191,37954 ,20684,20684,20685 ,0,0,0}, - {36218,37956,37954 ,20685,20686,20685 ,0,0,0}, {37468,36215,36191 ,20684,20683,20684 ,0,0,0}, - {36218,36293,37956 ,20685,82,20686 ,0,0,0}, {36218,37954,36191 ,20685,20685,20684 ,0,0,0}, - {37942,37943,36209 ,20681,20687,20687 ,0,0,0}, {36209,36210,37942 ,20687,20681,20681 ,0,0,0}, - {36750,37943,38118 ,20688,20687,20688 ,0,0,0}, {37943,36750,36209 ,20687,20688,20687 ,0,0,0}, - {37945,36753,38118 ,20689,20689,20688 ,0,0,0}, {36750,38118,36753 ,20688,20688,20689 ,0,0,0}, - {37945,37944,36834 ,20689,20690,20690 ,0,0,0}, {36834,36753,37945 ,20690,20689,20689 ,0,0,0}, - {36756,37944,38418 ,20691,20690,20691 ,0,0,0}, {37944,36756,36834 ,20690,20691,20690 ,0,0,0}, - {36756,38418,36833 ,20691,20691,20692 ,0,0,0}, {36833,38418,38132 ,20692,20691,20693 ,0,0,0}, - {37493,37621,36745 ,20694,20695,20695 ,0,0,0}, {37493,36745,36672 ,20694,20695,20694 ,0,0,0}, - {37500,36672,36670 ,20696,20694,20696 ,0,0,0}, {36670,36669,37499 ,20696,20697,20697 ,0,0,0}, - {37499,37500,36670 ,20697,20696,20696 ,0,0,0}, {37493,36672,37500 ,20694,20694,20696 ,0,0,0}, - {37501,37499,36669 ,20698,20697,20697 ,0,0,0}, {37501,36178,37502 ,20698,20698,20699 ,0,0,0}, - {36180,37598,37502 ,20699,20700,20699 ,0,0,0}, {37501,36669,36178 ,20698,20697,20698 ,0,0,0}, - {36180,36677,37598 ,20699,21,20700 ,0,0,0}, {36180,37502,36178 ,20699,20699,20698 ,0,0,0}, - {37621,38035,36512 ,20695,20701,20701 ,0,0,0}, {36512,36745,37621 ,20701,20695,20695 ,0,0,0}, - {36665,38035,38034 ,20702,20701,20702 ,0,0,0}, {38035,36665,36512 ,20701,20702,20701 ,0,0,0}, - {38107,36743,38034 ,20703,20703,20702 ,0,0,0}, {36665,38034,36743 ,20702,20702,20703 ,0,0,0}, - {38107,37465,36636 ,20703,20704,20704 ,0,0,0}, {36636,36743,38107 ,20704,20703,20703 ,0,0,0}, - {36667,37465,38109 ,20705,20704,20705 ,0,0,0}, {37465,36667,36636 ,20704,20705,20704 ,0,0,0}, - {36667,38109,36182 ,20705,20705,126 ,0,0,0}, {36182,38109,37488 ,126,20705,20706 ,0,0,0}, - {35960,38003,36287 ,8396,20707,7586 ,0,0,0}, {38191,36232,37993 ,20708,20709,20710 ,0,0,0}, - {36239,36282,38557 ,20711,20712,20713 ,0,0,0}, {36886,38560,36889 ,20714,20715,20716 ,0,0,0}, - {38543,38558,36284 ,4334,20717,20718 ,0,0,0}, {38012,36892,38535 ,20719,20720,20721 ,0,0,0}, - {36291,36290,38008 ,20722,20723,20724 ,0,0,0}, {36899,37223,38534 ,20725,20726,20727 ,0,0,0}, - {36885,38182,37223 ,20728,20729,20726 ,0,0,0}, {36272,37536,37537 ,20730,20731,20732 ,0,0,0}, - {36899,38004,36897 ,20725,20733,20734 ,0,0,0}, {38536,36273,37537 ,20735,20736,20732 ,0,0,0}, - {36272,37537,36273 ,20730,20732,20736 ,0,0,0}, {38536,38211,36274 ,20735,20737,20738 ,0,0,0}, - {36274,36273,38536 ,20738,20736,20735 ,0,0,0}, {37264,38211,37975 ,20739,20737,20740 ,0,0,0}, - {38211,37264,36274 ,20737,20739,20738 ,0,0,0}, {37974,36906,37975 ,20741,20742,20740 ,0,0,0}, - {37264,37975,36906 ,20739,20740,20742 ,0,0,0}, {37974,35979,35980 ,20741,4091,763 ,0,0,0}, - {35980,36906,37974 ,763,20742,20741 ,0,0,0}, {38534,37223,38182 ,20727,20726,20729 ,0,0,0}, - {37536,36897,38004 ,20731,20734,20733 ,0,0,0}, {36897,37536,36272 ,20734,20731,20730 ,0,0,0}, - {38534,38004,36899 ,20727,20733,20725 ,0,0,0}, {38012,38182,36885 ,20719,20729,20728 ,0,0,0}, - {36291,38008,38535 ,20722,20724,20721 ,0,0,0}, {36291,38535,36892 ,20722,20721,20720 ,0,0,0}, - {36885,36892,38012 ,20728,20720,20719 ,0,0,0}, {36290,38009,38008 ,20723,20743,20724 ,0,0,0}, - {38009,36290,36889 ,20743,20723,20716 ,0,0,0}, {38558,38560,36886 ,20717,20715,20714 ,0,0,0}, - {38560,38009,36889 ,20715,20743,20716 ,0,0,0}, {36284,38558,36886 ,20718,20717,20714 ,0,0,0}, - {36283,38191,38543 ,20744,20708,4334 ,0,0,0}, {36283,38543,36284 ,20744,4334,20718 ,0,0,0}, - {36232,36239,37993 ,20709,20711,20710 ,0,0,0}, {36283,36232,38191 ,20744,20709,20708 ,0,0,0}, - {36282,38003,38557 ,20712,20707,20713 ,0,0,0}, {37993,36239,38557 ,20710,20711,20713 ,0,0,0}, - {35960,36287,35958 ,8396,7586,9510 ,0,0,0}, {38003,36282,36287 ,20707,20712,7586 ,0,0,0}, - {35916,38230,36451 ,3370,20745,20746 ,0,0,0}, {37903,37052,38226 ,20747,20748,20749 ,0,0,0}, - {36433,36452,38227 ,20750,20751,20752 ,0,0,0}, {37332,38605,37048 ,20753,20754,20755 ,0,0,0}, - {37835,37836,36427 ,20756,20757,20758 ,0,0,0}, {37848,37050,37897 ,20759,20760,20761 ,0,0,0}, - {37049,36435,37839 ,20762,20763,20764 ,0,0,0}, {36942,37333,38614 ,20765,20766,20767 ,0,0,0}, - {36417,37895,37333 ,20768,20769,20766 ,0,0,0}, {37335,37888,37887 ,20770,20771,20772 ,0,0,0}, - {36942,37892,36940 ,20765,20773,20774 ,0,0,0}, {38615,36356,37887 ,20775,20776,20772 ,0,0,0}, - {37335,37887,36356 ,20770,20772,20776 ,0,0,0}, {38615,37824,36357 ,20775,20777,20778 ,0,0,0}, - {36357,36356,38615 ,20778,20776,20775 ,0,0,0}, {36953,37824,37823 ,20779,20777,20780 ,0,0,0}, - {37824,36953,36357 ,20777,20779,20778 ,0,0,0}, {37860,36912,37823 ,20781,20782,20780 ,0,0,0}, - {36953,37823,36912 ,20779,20780,20782 ,0,0,0}, {37860,35935,35936 ,20781,2614,126 ,0,0,0}, - {35936,36912,37860 ,126,20782,20781 ,0,0,0}, {38614,37333,37895 ,20767,20766,20769 ,0,0,0}, - {37888,36940,37892 ,20771,20774,20773 ,0,0,0}, {36940,37888,37335 ,20774,20771,20770 ,0,0,0}, - {38614,37892,36942 ,20767,20773,20765 ,0,0,0}, {37848,37895,36417 ,20759,20769,20768 ,0,0,0}, - {37049,37839,37897 ,20762,20764,20761 ,0,0,0}, {37049,37897,37050 ,20762,20761,20760 ,0,0,0}, - {36417,37050,37848 ,20768,20760,20759 ,0,0,0}, {36435,37840,37839 ,20763,20783,20764 ,0,0,0}, - {37840,36435,37048 ,20783,20763,20755 ,0,0,0}, {37836,38605,37332 ,20757,20754,20753 ,0,0,0}, - {38605,37840,37048 ,20754,20783,20755 ,0,0,0}, {36427,37836,37332 ,20758,20757,20753 ,0,0,0}, - {36431,37903,37835 ,20784,20747,20756 ,0,0,0}, {36431,37835,36427 ,20784,20756,20758 ,0,0,0}, - {37052,36433,38226 ,20748,20750,20749 ,0,0,0}, {36431,37052,37903 ,20784,20748,20747 ,0,0,0}, - {36452,38230,38227 ,20751,20745,20752 ,0,0,0}, {38226,36433,38227 ,20749,20750,20752 ,0,0,0}, - {35916,36451,35914 ,3370,20746,82 ,0,0,0}, {38230,36452,36451 ,20745,20751,20746 ,0,0,0}, - {35872,37699,37352 ,20785,20786,20787 ,0,0,0}, {37707,37355,37706 ,20788,20789,20790 ,0,0,0}, - {36583,36582,38639 ,20791,20792,20793 ,0,0,0}, {36534,37702,36573 ,20794,20795,7595 ,0,0,0}, - {37710,37701,36533 ,20796,4333,20797 ,0,0,0}, {37716,36578,37719 ,20798,20799,20721 ,0,0,0}, - {36577,36536,37714 ,20800,20801,20802 ,0,0,0}, {37369,37366,38662 ,20803,20804,20805 ,0,0,0}, - {36964,37694,37366 ,20806,20807,20804 ,0,0,0}, {37368,37682,37729 ,20808,20809,20810 ,0,0,0}, - {37369,37726,37367 ,20803,20811,20812 ,0,0,0}, {38664,36601,37729 ,20813,20814,20810 ,0,0,0}, - {37368,37729,36601 ,20808,20810,20814 ,0,0,0}, {38664,38281,36602 ,20813,20815,20816 ,0,0,0}, - {36602,36601,38664 ,20816,20814,20813 ,0,0,0}, {37384,38281,37739 ,20817,20815,20818 ,0,0,0}, - {38281,37384,36602 ,20815,20817,20816 ,0,0,0}, {37740,36603,37739 ,20819,20820,20818 ,0,0,0}, - {37384,37739,36603 ,20817,20818,20820 ,0,0,0}, {37740,35891,35892 ,20819,126,4090 ,0,0,0}, - {35892,36603,37740 ,4090,20820,20819 ,0,0,0}, {38662,37366,37694 ,20805,20804,20807 ,0,0,0}, - {37682,37367,37726 ,20809,20812,20811 ,0,0,0}, {37367,37682,37368 ,20812,20809,20808 ,0,0,0}, - {38662,37726,37369 ,20805,20811,20803 ,0,0,0}, {37716,37694,36964 ,20798,20807,20806 ,0,0,0}, - {36577,37714,37719 ,20800,20802,20721 ,0,0,0}, {36577,37719,36578 ,20800,20721,20799 ,0,0,0}, - {36964,36578,37716 ,20806,20799,20798 ,0,0,0}, {36536,37713,37714 ,20801,20821,20802 ,0,0,0}, - {37713,36536,36573 ,20821,20801,7595 ,0,0,0}, {37701,37702,36534 ,4333,20795,20794 ,0,0,0}, - {37702,37713,36573 ,20795,20821,7595 ,0,0,0}, {36533,37701,36534 ,20797,4333,20794 ,0,0,0}, - {36569,37707,37710 ,20822,20788,20796 ,0,0,0}, {36569,37710,36533 ,20822,20796,20797 ,0,0,0}, - {37355,36583,37706 ,20789,20791,20790 ,0,0,0}, {36569,37355,37707 ,20822,20789,20788 ,0,0,0}, - {36582,37699,38639 ,20792,20786,20793 ,0,0,0}, {37706,36583,38639 ,20790,20791,20793 ,0,0,0}, - {35872,37352,35870 ,20785,20787,878 ,0,0,0}, {37699,36582,37352 ,20786,20792,20787 ,0,0,0}, - {35828,37508,37425 ,2602,20745,20746 ,0,0,0}, {37554,36598,37519 ,20823,20824,20749 ,0,0,0}, - {36185,36187,38705 ,20750,20825,20826 ,0,0,0}, {36688,38709,36691 ,20827,20754,20755 ,0,0,0}, - {38696,38706,36686 ,20828,20829,20830 ,0,0,0}, {37544,36261,37545 ,20831,20832,20833 ,0,0,0}, - {36256,36255,37564 ,20834,20835,20836 ,0,0,0}, {36252,37018,38688 ,20837,20838,20839 ,0,0,0}, - {36996,37522,37018 ,20840,20841,20838 ,0,0,0}, {36245,37542,37606 ,20842,20843,20844 ,0,0,0}, - {36252,37540,36250 ,20837,20845,20846 ,0,0,0}, {38690,36189,37606 ,20847,20848,20844 ,0,0,0}, - {36245,37606,36189 ,20842,20844,20848 ,0,0,0}, {38690,37603,36190 ,20847,20849,20850 ,0,0,0}, - {36190,36189,38690 ,20850,20848,20847 ,0,0,0}, {36719,37603,37604 ,20851,20849,20852 ,0,0,0}, - {37603,36719,36190 ,20849,20851,20850 ,0,0,0}, {38319,36717,37604 ,20853,20854,20852 ,0,0,0}, - {36719,37604,36717 ,20851,20852,20854 ,0,0,0}, {38319,35847,35848 ,20853,3345,126 ,0,0,0}, - {35848,36717,38319 ,126,20854,20853 ,0,0,0}, {38688,37018,37522 ,20839,20838,20841 ,0,0,0}, - {37542,36250,37540 ,20843,20846,20845 ,0,0,0}, {36250,37542,36245 ,20846,20843,20842 ,0,0,0}, - {38688,37540,36252 ,20839,20845,20837 ,0,0,0}, {37544,37522,36996 ,20831,20841,20840 ,0,0,0}, - {36256,37564,37545 ,20834,20836,20833 ,0,0,0}, {36256,37545,36261 ,20834,20833,20832 ,0,0,0}, - {36996,36261,37544 ,20840,20832,20831 ,0,0,0}, {36255,37565,37564 ,20835,20783,20836 ,0,0,0}, - {37565,36255,36691 ,20783,20835,20755 ,0,0,0}, {38706,38709,36688 ,20829,20754,20827 ,0,0,0}, - {38709,37565,36691 ,20754,20783,20755 ,0,0,0}, {36686,38706,36688 ,20830,20829,20827 ,0,0,0}, - {36687,37554,38696 ,20855,20823,20828 ,0,0,0}, {36687,38696,36686 ,20855,20828,20830 ,0,0,0}, - {36598,36185,37519 ,20824,20750,20749 ,0,0,0}, {36687,36598,37554 ,20855,20824,20823 ,0,0,0}, - {36187,37508,38705 ,20825,20745,20826 ,0,0,0}, {37519,36185,38705 ,20749,20750,20826 ,0,0,0}, - {35828,37425,35826 ,2602,20746,82 ,0,0,0}, {37508,36187,37425 ,20745,20825,20746 ,0,0,0}, - {37913,36450,37914 ,20856,20857,18583 ,0,0,0}, {37913,35790,36450 ,20856,18588,20857 ,0,0,0}, - {35790,37913,35789 ,18588,20856,18588 ,0,0,0}, {36456,37914,36450 ,18583,18583,20857 ,0,0,0}, - {35797,38237,36440 ,18609,20858,20858 ,0,0,0}, {38236,37044,38240 ,20859,20859,20860 ,0,0,0}, - {36446,37062,38239 ,20860,20861,20861 ,0,0,0}, {38235,36456,36457 ,20862,18583,20862 ,0,0,0}, - {36457,38236,38235 ,20862,20859,20862 ,0,0,0}, {37914,36456,38235 ,18583,18583,20862 ,0,0,0}, - {36457,37044,38236 ,20862,20859,20859 ,0,0,0}, {36446,38240,37044 ,20860,20860,20859 ,0,0,0}, - {38240,36446,38239 ,20860,20860,20861 ,0,0,0}, {36440,35798,35797 ,20858,18609,18609 ,0,0,0}, - {38237,37062,36440 ,20858,20861,20858 ,0,0,0}, {38239,37062,38237 ,20861,20861,20858 ,0,0,0}, - {37901,35803,36439 ,20863,18594,20864 ,0,0,0}, {35803,35804,36439 ,18594,18594,20864 ,0,0,0}, - {36438,37901,36439 ,18575,20863,20864 ,0,0,0}, {37901,36438,38231 ,20863,18575,18575 ,0,0,0}, - {35783,38601,36933 ,18601,20865,20865 ,0,0,0}, {38225,36434,37908 ,20866,20866,20867 ,0,0,0}, - {36424,36426,37907 ,20867,20868,20868 ,0,0,0}, {38228,36438,36432 ,20869,18575,20869 ,0,0,0}, - {36432,38225,38228 ,20869,20866,20869 ,0,0,0}, {38231,36438,38228 ,18575,18575,20869 ,0,0,0}, - {36432,36434,38225 ,20869,20866,20866 ,0,0,0}, {36424,37908,36434 ,20867,20867,20866 ,0,0,0}, - {37908,36424,37907 ,20867,20867,20868 ,0,0,0}, {36933,35784,35783 ,20865,18601,18601 ,0,0,0}, - {38601,36426,36933 ,20865,20868,20865 ,0,0,0}, {37907,36426,38601 ,20868,20868,20865 ,0,0,0}, - {35761,36770,38046 ,20870,17362,20871 ,0,0,0}, {38043,38044,36772 ,20872,20873,20874 ,0,0,0}, - {37946,37467,36771 ,20875,20876,20877 ,0,0,0}, {37489,36777,38038 ,20878,20879,20880 ,0,0,0}, - {36773,36778,37490 ,20881,20882,20883 ,0,0,0}, {36775,36780,37479 ,20884,20885,20886 ,0,0,0}, - {36775,38042,36776 ,20884,20887,20888 ,0,0,0}, {36779,36194,37482 ,20889,20890,20891 ,0,0,0}, - {37482,37480,36779 ,20891,20892,20889 ,0,0,0}, {37478,36194,36196 ,20893,20890,20894 ,0,0,0}, - {36194,37478,37482 ,20890,20893,20891 ,0,0,0}, {36202,37463,36196 ,20895,20896,20894 ,0,0,0}, - {37478,36196,37463 ,20893,20894,20896 ,0,0,0}, {36202,35775,35776 ,20895,20897,82 ,0,0,0}, - {35776,37463,36202 ,82,20896,20895 ,0,0,0}, {36777,37489,36778 ,20879,20878,20882 ,0,0,0}, - {36780,37480,37479 ,20885,20892,20886 ,0,0,0}, {36779,37480,36780 ,20889,20892,20885 ,0,0,0}, - {36772,38044,36774 ,20874,20873,20898 ,0,0,0}, {36776,38042,38038 ,20888,20887,20880 ,0,0,0}, - {36775,37479,38042 ,20884,20886,20887 ,0,0,0}, {36777,36776,38038 ,20879,20888,20880 ,0,0,0}, - {37490,36778,37489 ,20883,20882,20878 ,0,0,0}, {38043,36772,36773 ,20872,20874,20881 ,0,0,0}, - {36773,37490,38043 ,20881,20883,20872 ,0,0,0}, {37467,36770,36771 ,20876,17362,20877 ,0,0,0}, - {36774,37946,36771 ,20898,20875,20877 ,0,0,0}, {38044,37946,36774 ,20873,20875,20898 ,0,0,0}, - {35761,38046,35762 ,20870,20871,8371 ,0,0,0}, {36770,37467,38046 ,17362,20876,20871 ,0,0,0}, - {35729,36326,38343 ,66,17362,20899 ,0,0,0}, {37669,38139,36328 ,20900,20901,20902 ,0,0,0}, - {38054,38056,36325 ,20875,20903,20877 ,0,0,0}, {38138,36335,38057 ,20904,20905,20906 ,0,0,0}, - {37071,36334,37670 ,20907,20908,20909 ,0,0,0}, {36820,37070,38136 ,20910,20911,20912 ,0,0,0}, - {36820,38342,37069 ,20910,20913,20914 ,0,0,0}, {36823,36821,38133 ,20915,20916,20917 ,0,0,0}, - {38133,38137,36823 ,20917,20918,20915 ,0,0,0}, {38134,36821,36822 ,20919,20916,20920 ,0,0,0}, - {36821,38134,38133 ,20916,20919,20917 ,0,0,0}, {36824,38135,36822 ,20921,20922,20920 ,0,0,0}, - {38134,36822,38135 ,20919,20920,20922 ,0,0,0}, {36824,35743,35744 ,20921,20923,82 ,0,0,0}, - {35744,38135,36824 ,82,20922,20921 ,0,0,0}, {36335,38138,36334 ,20905,20904,20908 ,0,0,0}, - {37070,38137,38136 ,20911,20918,20912 ,0,0,0}, {36823,38137,37070 ,20915,20918,20911 ,0,0,0}, - {36328,38139,36329 ,20902,20901,20924 ,0,0,0}, {37069,38342,38057 ,20914,20913,20906 ,0,0,0}, - {36820,38136,38342 ,20910,20912,20913 ,0,0,0}, {36335,37069,38057 ,20905,20914,20906 ,0,0,0}, - {37670,36334,38138 ,20909,20908,20904 ,0,0,0}, {37669,36328,37071 ,20900,20902,20907 ,0,0,0}, - {37071,37670,37669 ,20907,20909,20900 ,0,0,0}, {38056,36326,36325 ,20903,17362,20877 ,0,0,0}, - {36329,38054,36325 ,20924,20875,20877 ,0,0,0}, {38139,38054,36329 ,20901,20875,20924 ,0,0,0}, - {35729,38343,35730 ,66,20899,126 ,0,0,0}, {36326,38056,38343 ,17362,20903,20899 ,0,0,0}, - {35697,36482,37785 ,66,17362,20899 ,0,0,0}, {37791,37790,36491 ,20900,20925,20926 ,0,0,0}, - {37806,37786,36484 ,20927,20903,20928 ,0,0,0}, {38357,36504,37788 ,20929,20930,20931 ,0,0,0}, - {36493,37081,37793 ,20932,20933,20934 ,0,0,0}, {36500,36489,38347 ,20910,20935,20936 ,0,0,0}, - {36500,38349,36503 ,20910,20937,20938 ,0,0,0}, {36488,36502,38362 ,20939,20940,20941 ,0,0,0}, - {38362,38360,36488 ,20941,20942,20939 ,0,0,0}, {38361,36502,36501 ,20943,20940,20944 ,0,0,0}, - {36502,38361,38362 ,20940,20943,20941 ,0,0,0}, {36498,38364,36501 ,20945,20946,20944 ,0,0,0}, - {38361,36501,38364 ,20943,20944,20946 ,0,0,0}, {36498,35711,35712 ,20945,20923,82 ,0,0,0}, - {35712,38364,36498 ,82,20946,20945 ,0,0,0}, {36504,38357,37081 ,20930,20929,20933 ,0,0,0}, - {36489,38360,38347 ,20935,20942,20936 ,0,0,0}, {36488,38360,36489 ,20939,20942,20935 ,0,0,0}, - {36491,37790,37083 ,20926,20925,20924 ,0,0,0}, {36503,38349,37788 ,20938,20937,20931 ,0,0,0}, - {36500,38347,38349 ,20910,20936,20937 ,0,0,0}, {36504,36503,37788 ,20930,20938,20931 ,0,0,0}, - {37793,37081,38357 ,20934,20933,20929 ,0,0,0}, {37791,36491,36493 ,20900,20926,20932 ,0,0,0}, - {36493,37793,37791 ,20932,20934,20900 ,0,0,0}, {37786,36482,36484 ,20903,17362,20928 ,0,0,0}, - {37083,37806,36484 ,20924,20927,20928 ,0,0,0}, {37790,37806,37083 ,20925,20927,20924 ,0,0,0}, - {35697,37785,35698 ,66,20899,126 ,0,0,0}, {36482,37786,37785 ,17362,20903,20899 ,0,0,0}, - {35665,37098,37654 ,850,17362,20947 ,0,0,0}, {37637,37644,37095 ,20948,20949,20926 ,0,0,0}, - {37650,37649,37096 ,20950,20903,20928 ,0,0,0}, {37658,36657,37640 ,20951,20952,20953 ,0,0,0}, - {36660,36662,37638 ,20954,20955,20956 ,0,0,0}, {36650,36641,37647 ,20957,20958,20959 ,0,0,0}, - {36650,38375,36656 ,20957,20960,20938 ,0,0,0}, {36640,37086,38377 ,20961,20962,20963 ,0,0,0}, - {38377,37645,36640 ,20963,20964,20961 ,0,0,0}, {37651,37086,36649 ,20965,20962,20966 ,0,0,0}, - {37086,37651,38377 ,20962,20965,20963 ,0,0,0}, {36647,37652,36649 ,20967,20968,20966 ,0,0,0}, - {37651,36649,37652 ,20965,20966,20968 ,0,0,0}, {36647,35679,35680 ,20967,20969,82 ,0,0,0}, - {35680,37652,36647 ,82,20968,20967 ,0,0,0}, {36657,37658,36662 ,20952,20951,20955 ,0,0,0}, - {36641,37645,37647 ,20958,20964,20959 ,0,0,0}, {36640,37645,36641 ,20961,20964,20958 ,0,0,0}, - {37095,37644,37097 ,20926,20949,20924 ,0,0,0}, {36656,38375,37640 ,20938,20960,20953 ,0,0,0}, - {36650,37647,38375 ,20957,20959,20960 ,0,0,0}, {36657,36656,37640 ,20952,20938,20953 ,0,0,0}, - {37638,36662,37658 ,20956,20955,20951 ,0,0,0}, {37637,37095,36660 ,20948,20926,20954 ,0,0,0}, - {36660,37638,37637 ,20954,20956,20948 ,0,0,0}, {37649,37098,37096 ,20903,17362,20928 ,0,0,0}, - {37097,37650,37096 ,20924,20950,20928 ,0,0,0}, {37644,37650,37097 ,20949,20950,20924 ,0,0,0}, - {35665,37654,35666 ,850,20947,126 ,0,0,0}, {37098,37649,37654 ,17362,20903,20947 ,0,0,0}, - {35635,36799,38380 ,8371,17362,20947 ,0,0,0}, {38389,38387,36794 ,20872,20970,20926 ,0,0,0}, - {38386,38385,36798 ,20971,20972,20928 ,0,0,0}, {37659,37113,37660 ,20951,20973,20953 ,0,0,0}, - {36793,37115,38388 ,20932,20955,20934 ,0,0,0}, {37112,37100,38391 ,20884,20974,20975 ,0,0,0}, - {37112,38390,37114 ,20884,20976,20977 ,0,0,0}, {37099,37111,38392 ,20978,20979,20980 ,0,0,0}, - {38392,38393,37099 ,20980,20981,20978 ,0,0,0}, {38394,37111,37108 ,20982,20979,20983 ,0,0,0}, - {37111,38394,38392 ,20979,20982,20980 ,0,0,0}, {37088,38097,37108 ,20984,20985,20983 ,0,0,0}, - {38394,37108,38097 ,20982,20983,20985 ,0,0,0}, {37088,35648,33525 ,20984,20897,82 ,0,0,0}, - {33525,38097,37088 ,82,20985,20984 ,0,0,0}, {37113,37659,37115 ,20973,20951,20955 ,0,0,0}, - {37100,38393,38391 ,20974,20981,20975 ,0,0,0}, {37099,38393,37100 ,20978,20981,20974 ,0,0,0}, - {36794,38387,37116 ,20926,20970,20986 ,0,0,0}, {37114,38390,37660 ,20977,20976,20953 ,0,0,0}, - {37112,38391,38390 ,20884,20975,20976 ,0,0,0}, {37113,37114,37660 ,20973,20977,20953 ,0,0,0}, - {38388,37115,37659 ,20934,20955,20951 ,0,0,0}, {38389,36794,36793 ,20872,20926,20932 ,0,0,0}, - {36793,38388,38389 ,20932,20934,20872 ,0,0,0}, {38385,36799,36798 ,20972,17362,20928 ,0,0,0}, - {37116,38386,36798 ,20986,20971,20928 ,0,0,0}, {38387,38386,37116 ,20970,20971,20986 ,0,0,0}, - {35635,38380,33508 ,8371,20947,126 ,0,0,0}, {36799,38385,38380 ,17362,20972,20947 ,0,0,0}, - {35605,36467,38353 ,18751,17362,20871 ,0,0,0}, {38398,38397,37137 ,20872,20970,20926 ,0,0,0}, - {38408,38407,37138 ,20927,20876,20928 ,0,0,0}, {38411,36496,38410 ,20987,20988,20989 ,0,0,0}, - {37135,37134,38409 ,20932,20990,20991 ,0,0,0}, {37132,37133,38168 ,20992,20993,20994 ,0,0,0}, - {37132,38412,36495 ,20992,20995,20996 ,0,0,0}, {37131,37130,38413 ,20997,20998,20999 ,0,0,0}, - {38413,38166,37131 ,20999,20981,20997 ,0,0,0}, {38091,37130,37129 ,21000,20998,21001 ,0,0,0}, - {37130,38091,38413 ,20998,21000,20999 ,0,0,0}, {37120,38092,37129 ,21002,21003,21001 ,0,0,0}, - {38091,37129,38092 ,21000,21001,21003 ,0,0,0}, {37120,35618,32893 ,21002,21004,82 ,0,0,0}, - {32893,38092,37120 ,82,21003,21002 ,0,0,0}, {36496,38411,37134 ,20988,20987,20990 ,0,0,0}, - {37133,38166,38168 ,20993,20981,20994 ,0,0,0}, {37131,38166,37133 ,20997,20981,20993 ,0,0,0}, - {37137,38397,37136 ,20926,20970,20986 ,0,0,0}, {36495,38412,38410 ,20996,20995,20989 ,0,0,0}, - {37132,38168,38412 ,20992,20994,20995 ,0,0,0}, {36496,36495,38410 ,20988,20996,20989 ,0,0,0}, - {38409,37134,38411 ,20991,20990,20987 ,0,0,0}, {38398,37137,37135 ,20872,20926,20932 ,0,0,0}, - {37135,38409,38398 ,20932,20991,20872 ,0,0,0}, {38407,36467,37138 ,20876,17362,20928 ,0,0,0}, - {37136,38408,37138 ,20986,20927,20928 ,0,0,0}, {38397,38408,37136 ,20970,20927,20986 ,0,0,0}, - {35605,38353,32876 ,18751,20871,126 ,0,0,0}, {36467,38407,38353 ,17362,20876,20871 ,0,0,0}, - {35575,36760,38031 ,8371,17362,20947 ,0,0,0}, {37932,37931,36761 ,20872,21005,20902 ,0,0,0}, - {38033,38032,36203 ,21006,20972,20877 ,0,0,0}, {38414,36762,38416 ,21007,21008,21009 ,0,0,0}, - {36765,36764,38415 ,20907,20882,20909 ,0,0,0}, {36768,36767,38417 ,20884,21010,21011 ,0,0,0}, - {36768,38049,36763 ,20884,21012,21013 ,0,0,0}, {37065,36766,38048 ,21014,21015,21016 ,0,0,0}, - {38048,38341,37065 ,21016,21017,21014 ,0,0,0}, {38047,36766,36769 ,21018,21015,21019 ,0,0,0}, - {36766,38047,38048 ,21015,21018,21016 ,0,0,0}, {37064,38045,36769 ,21020,21021,21019 ,0,0,0}, - {38047,36769,38045 ,21018,21019,21021 ,0,0,0}, {37064,35588,33209 ,21020,20897,82 ,0,0,0}, - {33209,38045,37064 ,82,21021,21020 ,0,0,0}, {36762,38414,36764 ,21008,21007,20882 ,0,0,0}, - {36767,38341,38417 ,21010,21017,21011 ,0,0,0}, {37065,38341,36767 ,21014,21017,21010 ,0,0,0}, - {36761,37931,36204 ,20902,21005,20986 ,0,0,0}, {36763,38049,38416 ,21013,21012,21009 ,0,0,0}, - {36768,38417,38049 ,20884,21011,21012 ,0,0,0}, {36762,36763,38416 ,21008,21013,21009 ,0,0,0}, - {38415,36764,38414 ,20909,20882,21007 ,0,0,0}, {37932,36761,36765 ,20872,20902,20907 ,0,0,0}, - {36765,38415,37932 ,20907,20909,20872 ,0,0,0}, {38032,36760,36203 ,20972,17362,20877 ,0,0,0}, - {36204,38033,36203 ,20986,21006,20877 ,0,0,0}, {37931,38033,36204 ,21005,21006,20986 ,0,0,0}, - {35575,38031,33192 ,8371,20947,126 ,0,0,0}, {36760,38032,38031 ,17362,20972,20947 ,0,0,0}, - {35545,36826,38117 ,18751,17362,20871 ,0,0,0}, {38129,38131,36755 ,20872,21005,20902 ,0,0,0}, - {38128,38127,36828 ,20875,20876,20877 ,0,0,0}, {38124,36829,38123 ,21022,21023,21024 ,0,0,0}, - {37142,36830,38130 ,20907,21025,21026 ,0,0,0}, {37141,37140,38126 ,20992,20885,21027 ,0,0,0}, - {37141,38125,36754 ,20992,21028,21029 ,0,0,0}, {36314,36832,38119 ,21030,21031,21032 ,0,0,0}, - {38119,38122,36314 ,21032,21017,21030 ,0,0,0}, {38120,36832,36831 ,21033,21031,21034 ,0,0,0}, - {36832,38120,38119 ,21031,21033,21032 ,0,0,0}, {36275,38121,36831 ,21035,21036,21034 ,0,0,0}, - {38120,36831,38121 ,21033,21034,21036 ,0,0,0}, {36275,35558,33841 ,21035,21004,82 ,0,0,0}, - {33841,38121,36275 ,82,21036,21035 ,0,0,0}, {36829,38124,36830 ,21023,21022,21025 ,0,0,0}, - {37140,38122,38126 ,20885,21017,21027 ,0,0,0}, {36314,38122,37140 ,21030,21017,20885 ,0,0,0}, - {36755,38131,36827 ,20902,21005,20986 ,0,0,0}, {36754,38125,38123 ,21029,21028,21024 ,0,0,0}, - {37141,38126,38125 ,20992,21027,21028 ,0,0,0}, {36829,36754,38123 ,21023,21029,21024 ,0,0,0}, - {38130,36830,38124 ,21026,21025,21022 ,0,0,0}, {38129,36755,37142 ,20872,20902,20907 ,0,0,0}, - {37142,38130,38129 ,20907,21026,20872 ,0,0,0}, {38127,36826,36828 ,20876,17362,20877 ,0,0,0}, - {36827,38128,36828 ,20986,20875,20877 ,0,0,0}, {38131,38128,36827 ,21005,20875,20986 ,0,0,0}, - {35545,38117,33824 ,18751,20871,126 ,0,0,0}, {36826,38127,38117 ,17362,20876,20871 ,0,0,0}, - {35482,38444,37153 ,21037,21038,21039 ,0,0,0}, {38443,37155,38441 ,21040,21041,21042 ,0,0,0}, - {37154,37152,38164 ,21043,21044,21045 ,0,0,0}, {37165,38158,37198 ,21046,21047,21048 ,0,0,0}, - {37160,38439,37161 ,21049,21050,21051 ,0,0,0}, {37495,37170,38435 ,21052,21053,21054 ,0,0,0}, - {38437,37167,37630 ,21055,21056,21057 ,0,0,0}, {37128,37775,37125 ,21058,21059,21060 ,0,0,0}, - {37174,38078,37149 ,21061,21062,21063 ,0,0,0}, {38382,36796,37776 ,21064,21065,21066 ,0,0,0}, - {36797,37145,37777 ,21067,21068,21069 ,0,0,0}, {36851,37781,36850 ,21070,21071,21072 ,0,0,0}, - {37666,37667,37143 ,21073,21074,21075 ,0,0,0}, {38094,36852,36856 ,21076,21077,21078 ,0,0,0}, - {38420,36854,38171 ,21079,21080,21081 ,0,0,0}, {37079,37078,38144 ,21082,21083,21084 ,0,0,0}, - {36853,38093,38165 ,21085,21086,21087 ,0,0,0}, {36468,38401,38352 ,21088,21089,21090 ,0,0,0}, - {38143,38401,37080 ,21091,21089,21092 ,0,0,0}, {36470,38406,36471 ,21093,21094,21095 ,0,0,0}, - {38432,36470,37175 ,21096,21093,21097 ,0,0,0}, {37176,38404,37177 ,21098,21099,21100 ,0,0,0}, - {38405,37176,36471 ,21101,21098,21095 ,0,0,0}, {38746,38403,37179 ,21102,21103,21104 ,0,0,0}, - {38433,37178,37177 ,21105,21106,21100 ,0,0,0}, {37074,38403,38402 ,21107,21103,21108 ,0,0,0}, - {38403,37074,37179 ,21103,21107,21104 ,0,0,0}, {38395,37075,38402 ,21109,21110,21108 ,0,0,0}, - {37074,38402,37075 ,21107,21108,21110 ,0,0,0}, {38395,38396,37076 ,21109,21111,21112 ,0,0,0}, - {37076,37075,38395 ,21112,21110,21109 ,0,0,0}, {37077,38396,38431 ,21113,21111,21114 ,0,0,0}, - {38396,37077,37076 ,21111,21113,21112 ,0,0,0}, {38430,37180,38431 ,21115,21116,21114 ,0,0,0}, - {37077,38431,37180 ,21113,21114,21116 ,0,0,0}, {38430,38345,36848 ,21115,21117,21118 ,0,0,0}, - {36848,37180,38430 ,21118,21116,21115 ,0,0,0}, {37181,38345,38346 ,21119,21117,21120 ,0,0,0}, - {38345,37181,36848 ,21117,21119,21118 ,0,0,0}, {38351,37182,38346 ,21121,21122,21120 ,0,0,0}, - {37181,38346,37182 ,21119,21120,21122 ,0,0,0}, {38351,38350,37184 ,21121,21123,21124 ,0,0,0}, - {37184,37182,38351 ,21124,21122,21121 ,0,0,0}, {37183,38350,37805 ,21125,21123,21126 ,0,0,0}, - {38350,37183,37184 ,21123,21125,21124 ,0,0,0}, {37804,37185,37805 ,21127,21128,21126 ,0,0,0}, - {37183,37805,37185 ,21125,21126,21128 ,0,0,0}, {37804,35527,35528 ,21127,21129,21129 ,0,0,0}, - {35528,37185,37804 ,21129,21128,21127 ,0,0,0}, {37179,37178,38746 ,21104,21106,21102 ,0,0,0}, - {38433,38746,37178 ,21105,21102,21106 ,0,0,0}, {38404,38433,37177 ,21099,21105,21100 ,0,0,0}, - {38404,37176,38405 ,21099,21098,21101 ,0,0,0}, {38432,38406,36470 ,21096,21094,21093 ,0,0,0}, - {38406,38405,36471 ,21094,21101,21095 ,0,0,0}, {36468,38352,37175 ,21088,21090,21097 ,0,0,0}, - {38432,37175,38352 ,21096,21097,21090 ,0,0,0}, {37079,38143,37080 ,21082,21091,21092 ,0,0,0}, - {37080,38401,36468 ,21092,21089,21088 ,0,0,0}, {37079,38144,38143 ,21082,21084,21091 ,0,0,0}, - {37078,36853,38165 ,21083,21085,21087 ,0,0,0}, {37078,38165,38144 ,21083,21087,21084 ,0,0,0}, - {38093,36852,38094 ,21086,21077,21076 ,0,0,0}, {36853,36852,38093 ,21085,21077,21086 ,0,0,0}, - {36854,38420,36856 ,21080,21079,21078 ,0,0,0}, {38094,36856,38420 ,21076,21078,21079 ,0,0,0}, - {37781,38171,36850 ,21071,21081,21072 ,0,0,0}, {36854,36850,38171 ,21080,21072,21081 ,0,0,0}, - {37781,36851,37667 ,21071,21070,21074 ,0,0,0}, {37143,37667,36851 ,21075,21074,21070 ,0,0,0}, - {36796,38382,36836 ,21065,21064,21130 ,0,0,0}, {36836,38382,37666 ,21130,21064,21073 ,0,0,0}, - {36836,37666,37143 ,21130,21073,21075 ,0,0,0}, {36797,37776,36796 ,21067,21066,21065 ,0,0,0}, - {37145,37773,37777 ,21068,21131,21069 ,0,0,0}, {37776,36797,37777 ,21066,21067,21069 ,0,0,0}, - {37775,37773,37125 ,21059,21131,21060 ,0,0,0}, {37773,37145,37125 ,21131,21068,21060 ,0,0,0}, - {37149,38077,37128 ,21063,21132,21058 ,0,0,0}, {38077,37775,37128 ,21132,21059,21058 ,0,0,0}, - {37495,38078,37174 ,21052,21062,21061 ,0,0,0}, {37149,38078,38077 ,21063,21062,21132 ,0,0,0}, - {38159,37161,38439 ,21133,21051,21050 ,0,0,0}, {37197,38435,37170 ,21134,21054,21053 ,0,0,0}, - {37174,37170,37495 ,21061,21053,21052 ,0,0,0}, {38437,37197,37167 ,21055,21134,21056 ,0,0,0}, - {38435,37197,38437 ,21054,21134,21055 ,0,0,0}, {38158,37630,37198 ,21047,21057,21048 ,0,0,0}, - {37630,37167,37198 ,21057,21056,21048 ,0,0,0}, {37161,38159,37165 ,21051,21133,21046 ,0,0,0}, - {38159,38158,37165 ,21133,21047,21046 ,0,0,0}, {38443,38439,37160 ,21040,21050,21049 ,0,0,0}, - {37154,38164,38441 ,21043,21045,21042 ,0,0,0}, {37154,38441,37155 ,21043,21042,21041 ,0,0,0}, - {37160,37155,38443 ,21049,21041,21040 ,0,0,0}, {37152,38444,38164 ,21044,21038,21045 ,0,0,0}, - {35482,37153,35481 ,21037,21039,878 ,0,0,0}, {38444,37152,37153 ,21038,21044,21039 ,0,0,0}, - {35382,38115,36812 ,21135,21136,21039 ,0,0,0}, {38060,36811,38061 ,21137,21041,21042 ,0,0,0}, - {36339,36813,38062 ,21138,21139,21045 ,0,0,0}, {36175,38064,36480 ,21140,21141,21142 ,0,0,0}, - {36810,37778,36808 ,21143,21144,21145 ,0,0,0}, {38069,36806,38177 ,21146,21147,21148 ,0,0,0}, - {38070,36478,38066 ,21149,21150,21151 ,0,0,0}, {36805,38399,37147 ,21152,21059,21153 ,0,0,0}, - {36839,38087,36840 ,21154,21155,21156 ,0,0,0}, {38089,36790,38088 ,21157,21158,21159 ,0,0,0}, - {36795,36842,38160 ,21160,21161,21162 ,0,0,0}, {36843,38084,36801 ,21163,21164,21165 ,0,0,0}, - {38161,38085,37146 ,21166,21167,21168 ,0,0,0}, {38426,36847,36845 ,21169,21170,21171 ,0,0,0}, - {38156,36844,38425 ,21172,21173,21174 ,0,0,0}, {36507,37144,38150 ,21175,21176,21177 ,0,0,0}, - {37124,38153,38154 ,21178,21179,21180 ,0,0,0}, {37123,38152,38083 ,21181,21182,21183 ,0,0,0}, - {38151,38152,36508 ,21184,21182,21185 ,0,0,0}, {36479,37782,37121 ,21186,21187,21188 ,0,0,0}, - {38145,36479,37122 ,21189,21186,21190 ,0,0,0}, {36855,38147,36857 ,21191,21192,21193 ,0,0,0}, - {37783,36855,37121 ,21194,21191,21188 ,0,0,0}, {38142,38082,36860 ,21195,21196,21197 ,0,0,0}, - {38146,36858,36857 ,21198,21199,21193 ,0,0,0}, {36817,38082,38081 ,21200,21196,21201 ,0,0,0}, - {38082,36817,36860 ,21196,21200,21197 ,0,0,0}, {37929,36818,38081 ,21202,21203,21201 ,0,0,0}, - {36817,38081,36818 ,21200,21201,21203 ,0,0,0}, {37929,37811,36862 ,21202,21204,21205 ,0,0,0}, - {36862,36818,37929 ,21205,21203,21202 ,0,0,0}, {36319,37811,37634 ,21206,21204,21207 ,0,0,0}, - {37811,36319,36862 ,21204,21206,21205 ,0,0,0}, {38141,36320,37634 ,21208,21209,21207 ,0,0,0}, - {36319,37634,36320 ,21206,21207,21209 ,0,0,0}, {38141,37909,36864 ,21208,21210,21211 ,0,0,0}, - {36864,36320,38141 ,21211,21209,21208 ,0,0,0}, {36866,37909,37911 ,21212,21210,21213 ,0,0,0}, - {37909,36866,36864 ,21210,21212,21211 ,0,0,0}, {38140,36867,37911 ,21214,21215,21213 ,0,0,0}, - {36866,37911,36867 ,21212,21213,21215 ,0,0,0}, {38140,38073,36869 ,21214,21216,21217 ,0,0,0}, - {36869,36867,38140 ,21217,21215,21214 ,0,0,0}, {36868,38073,38074 ,21218,21216,21219 ,0,0,0}, - {38073,36868,36869 ,21216,21218,21217 ,0,0,0}, {37930,36870,38074 ,21220,21221,21219 ,0,0,0}, - {36868,38074,36870 ,21218,21219,21221 ,0,0,0}, {37930,35427,35428 ,21220,21129,21129 ,0,0,0}, - {35428,36870,37930 ,21129,21221,21220 ,0,0,0}, {36860,36858,38142 ,21197,21199,21195 ,0,0,0}, - {38146,38142,36858 ,21198,21195,21199 ,0,0,0}, {38147,38146,36857 ,21192,21198,21193 ,0,0,0}, - {38147,36855,37783 ,21192,21191,21194 ,0,0,0}, {38145,37782,36479 ,21189,21187,21186 ,0,0,0}, - {37782,37783,37121 ,21187,21194,21188 ,0,0,0}, {37123,38083,37122 ,21181,21183,21190 ,0,0,0}, - {38145,37122,38083 ,21189,21190,21183 ,0,0,0}, {36507,38151,36508 ,21175,21184,21185 ,0,0,0}, - {36508,38152,37123 ,21185,21182,21181 ,0,0,0}, {36507,38150,38151 ,21175,21177,21184 ,0,0,0}, - {37144,37124,38154 ,21176,21178,21180 ,0,0,0}, {37144,38154,38150 ,21176,21180,21177 ,0,0,0}, - {38153,36847,38426 ,21179,21170,21169 ,0,0,0}, {37124,36847,38153 ,21178,21170,21179 ,0,0,0}, - {36844,38156,36845 ,21173,21172,21171 ,0,0,0}, {38426,36845,38156 ,21169,21171,21172 ,0,0,0}, - {38084,38425,36801 ,21164,21174,21165 ,0,0,0}, {36844,36801,38425 ,21173,21165,21174 ,0,0,0}, - {38084,36843,38085 ,21164,21163,21167 ,0,0,0}, {37146,38085,36843 ,21168,21167,21163 ,0,0,0}, - {36790,38089,36804 ,21158,21157,21222 ,0,0,0}, {36804,38089,38161 ,21222,21157,21166 ,0,0,0}, - {36804,38161,37146 ,21222,21166,21168 ,0,0,0}, {36795,38088,36790 ,21160,21159,21158 ,0,0,0}, - {36842,38356,38160 ,21161,21223,21162 ,0,0,0}, {38088,36795,38160 ,21159,21160,21162 ,0,0,0}, - {38399,38356,37147 ,21059,21223,21153 ,0,0,0}, {38356,36842,37147 ,21223,21161,21153 ,0,0,0}, - {36840,38400,36805 ,21156,21224,21152 ,0,0,0}, {38400,38399,36805 ,21224,21059,21152 ,0,0,0}, - {38069,38087,36839 ,21146,21155,21154 ,0,0,0}, {36840,38087,38400 ,21156,21155,21224 ,0,0,0}, - {37780,36808,37778 ,21225,21145,21144 ,0,0,0}, {36476,38177,36806 ,21226,21148,21147 ,0,0,0}, - {36839,36806,38069 ,21154,21147,21146 ,0,0,0}, {38070,36476,36478 ,21149,21226,21150 ,0,0,0}, - {38177,36476,38070 ,21148,21226,21149 ,0,0,0}, {38064,38066,36480 ,21141,21151,21142 ,0,0,0}, - {38066,36478,36480 ,21151,21150,21142 ,0,0,0}, {36808,37780,36175 ,21145,21225,21140 ,0,0,0}, - {37780,38064,36175 ,21225,21141,21140 ,0,0,0}, {38060,37778,36810 ,21137,21144,21143 ,0,0,0}, - {36339,38062,38061 ,21138,21045,21042 ,0,0,0}, {36339,38061,36811 ,21138,21042,21041 ,0,0,0}, - {36810,36811,38060 ,21143,21041,21137 ,0,0,0}, {36813,38115,38062 ,21139,21136,21045 ,0,0,0}, - {35382,36812,35381 ,21135,21039,19477 ,0,0,0}, {38115,36813,36812 ,21136,21139,21039 ,0,0,0}, - {35282,38462,37087 ,18038,21227,21228 ,0,0,0}, {38459,37084,38461 ,21137,21229,21230 ,0,0,0}, - {36659,36658,38460 ,21231,21044,21045 ,0,0,0}, {37194,38445,37195 ,21046,21232,21233 ,0,0,0}, - {37085,38458,37193 ,21234,21235,21145 ,0,0,0}, {38371,37103,38367 ,21146,21236,21237 ,0,0,0}, - {38368,36791,38457 ,21238,21239,21240 ,0,0,0}, {37105,38369,37106 ,21241,21242,21243 ,0,0,0}, - {37102,38370,37104 ,21244,21245,21246 ,0,0,0}, {38453,37110,38454 ,21247,21248,21249 ,0,0,0}, - {37109,37107,37622 ,21250,21251,21252 ,0,0,0}, {37186,38373,37187 ,21253,21254,21255 ,0,0,0}, - {38098,38374,37091 ,21256,21257,21258 ,0,0,0}, {38099,37157,37158 ,21259,21260,21261 ,0,0,0}, - {38365,36846,38372 ,21262,21263,21264 ,0,0,0}, {36629,37166,37628 ,21265,21266,21267 ,0,0,0}, - {37159,38100,38101 ,21268,21269,21270 ,0,0,0}, {36630,37623,37624 ,21271,21272,21273 ,0,0,0}, - {37627,37623,36509 ,21274,21272,21275 ,0,0,0}, {36511,38095,37173 ,21276,21277,21278 ,0,0,0}, - {38096,36511,36510 ,21279,21276,21280 ,0,0,0}, {36474,38384,36472 ,21281,21282,21283 ,0,0,0}, - {38448,36474,37173 ,21284,21281,21278 ,0,0,0}, {38451,38452,36518 ,21285,21286,21287 ,0,0,0}, - {38449,36520,36472 ,21288,21289,21283 ,0,0,0}, {37171,38452,37496 ,21290,21286,21291 ,0,0,0}, - {38452,37171,36518 ,21286,21290,21287 ,0,0,0}, {38434,37172,37496 ,21292,21293,21291 ,0,0,0}, - {37171,37496,37172 ,21290,21291,21293 ,0,0,0}, {38434,38436,37168 ,21292,21294,21295 ,0,0,0}, - {37168,37172,38434 ,21295,21293,21292 ,0,0,0}, {37169,38436,37632 ,21296,21294,21297 ,0,0,0}, - {38436,37169,37168 ,21294,21296,21295 ,0,0,0}, {37631,37163,37632 ,21298,21299,21297 ,0,0,0}, - {37169,37632,37163 ,21296,21297,21299 ,0,0,0}, {37631,38157,37164 ,21298,21300,21301 ,0,0,0}, - {37164,37163,37631 ,21301,21299,21298 ,0,0,0}, {37162,38157,38438 ,21302,21300,21303 ,0,0,0}, - {38157,37162,37164 ,21300,21302,21301 ,0,0,0}, {38440,37199,38438 ,21304,21305,21303 ,0,0,0}, - {37162,38438,37199 ,21302,21303,21305 ,0,0,0}, {38440,38442,37156 ,21304,21306,21307 ,0,0,0}, - {37156,37199,38440 ,21307,21305,21304 ,0,0,0}, {37150,38442,38163 ,21308,21306,21309 ,0,0,0}, - {38442,37150,37156 ,21306,21308,21307 ,0,0,0}, {38162,37151,38163 ,21310,21311,21309 ,0,0,0}, - {37150,38163,37151 ,21308,21309,21311 ,0,0,0}, {38162,35327,35328 ,21310,21312,126 ,0,0,0}, - {35328,37151,38162 ,126,21311,21310 ,0,0,0}, {36518,36520,38451 ,21287,21289,21285 ,0,0,0}, - {38449,38451,36520 ,21288,21285,21289 ,0,0,0}, {38384,38449,36472 ,21282,21288,21283 ,0,0,0}, - {38384,36474,38448 ,21282,21281,21284 ,0,0,0}, {38096,38095,36511 ,21279,21277,21276 ,0,0,0}, - {38095,38448,37173 ,21277,21284,21278 ,0,0,0}, {36630,37624,36510 ,21271,21273,21280 ,0,0,0}, - {38096,36510,37624 ,21279,21280,21273 ,0,0,0}, {36629,37627,36509 ,21265,21274,21275 ,0,0,0}, - {36509,37623,36630 ,21275,21272,21271 ,0,0,0}, {36629,37628,37627 ,21265,21267,21274 ,0,0,0}, - {37166,37159,38101 ,21266,21268,21270 ,0,0,0}, {37166,38101,37628 ,21266,21270,21267 ,0,0,0}, - {38100,37157,38099 ,21269,21260,21259 ,0,0,0}, {37159,37157,38100 ,21268,21260,21269 ,0,0,0}, - {36846,38365,37158 ,21263,21262,21261 ,0,0,0}, {38099,37158,38365 ,21259,21261,21262 ,0,0,0}, - {38373,38372,37187 ,21254,21264,21255 ,0,0,0}, {36846,37187,38372 ,21263,21255,21264 ,0,0,0}, - {38373,37186,38374 ,21254,21253,21257 ,0,0,0}, {37091,38374,37186 ,21258,21257,21253 ,0,0,0}, - {37110,38453,37089 ,21248,21247,21313 ,0,0,0}, {37089,38453,38098 ,21313,21247,21256 ,0,0,0}, - {37089,38098,37091 ,21313,21256,21258 ,0,0,0}, {37109,38454,37110 ,21250,21249,21248 ,0,0,0}, - {37107,38455,37622 ,21251,21314,21252 ,0,0,0}, {38454,37109,37622 ,21249,21250,21252 ,0,0,0}, - {38369,38455,37106 ,21242,21314,21243 ,0,0,0}, {38455,37107,37106 ,21314,21251,21243 ,0,0,0}, - {37104,38456,37105 ,21246,21315,21241 ,0,0,0}, {38456,38369,37105 ,21315,21242,21241 ,0,0,0}, - {38371,38370,37102 ,21146,21245,21244 ,0,0,0}, {37104,38370,38456 ,21246,21245,21315 ,0,0,0}, - {38446,37193,38458 ,21316,21145,21235 ,0,0,0}, {37196,38367,37103 ,21317,21237,21236 ,0,0,0}, - {37102,37103,38371 ,21244,21236,21146 ,0,0,0}, {38368,37196,36791 ,21238,21317,21239 ,0,0,0}, - {38367,37196,38368 ,21237,21317,21238 ,0,0,0}, {38445,38457,37195 ,21232,21240,21233 ,0,0,0}, - {38457,36791,37195 ,21240,21239,21233 ,0,0,0}, {37193,38446,37194 ,21145,21316,21046 ,0,0,0}, - {38446,38445,37194 ,21316,21232,21046 ,0,0,0}, {38459,38458,37085 ,21137,21235,21234 ,0,0,0}, - {36659,38460,38461 ,21231,21045,21230 ,0,0,0}, {36659,38461,37084 ,21231,21230,21229 ,0,0,0}, - {37085,37084,38459 ,21234,21229,21137 ,0,0,0}, {36658,38462,38460 ,21044,21227,21045 ,0,0,0}, - {35282,37087,35281 ,18038,21228,21318 ,0,0,0}, {38462,36658,37087 ,21227,21044,21228 ,0,0,0}, - {35182,38114,36749 ,21319,21136,21320 ,0,0,0}, {38111,36783,38113 ,21321,21322,21323 ,0,0,0}, - {36184,36183,38112 ,21231,21139,21324 ,0,0,0}, {36634,37464,36635 ,21325,21232,21326 ,0,0,0}, - {36746,38110,36668 ,21327,21328,21329 ,0,0,0}, {38036,36513,38105 ,21146,21236,21330 ,0,0,0}, - {38106,36744,37466 ,21331,21332,21333 ,0,0,0}, {36664,37749,36663 ,21334,21335,21336 ,0,0,0}, - {36514,38104,36784 ,21337,21338,21339 ,0,0,0}, {38148,36637,38149 ,21340,21341,21249 ,0,0,0}, - {36612,36785,38172 ,21250,21342,21343 ,0,0,0}, {36748,38447,36747 ,21344,21345,21346 ,0,0,0}, - {37639,38419,36786 ,21347,21348,21168 ,0,0,0}, {38174,37189,36787 ,21349,21350,21351 ,0,0,0}, - {38175,37190,37665 ,21352,21353,21354 ,0,0,0}, {36788,37188,38422 ,21355,21356,21357 ,0,0,0}, - {36789,38076,38075 ,21358,21359,21360 ,0,0,0}, {36632,37663,37664 ,21361,21362,21363 ,0,0,0}, - {38421,37663,36633 ,21364,21362,21365 ,0,0,0}, {37101,38176,36208 ,21366,21367,21368 ,0,0,0}, - {38173,37101,36631 ,21369,21366,21370 ,0,0,0}, {36207,38169,36837 ,21371,21372,21373 ,0,0,0}, - {38170,36207,36208 ,21374,21371,21368 ,0,0,0}, {38423,38086,36841 ,21375,21376,21377 ,0,0,0}, - {38424,37127,36837 ,21378,21379,21373 ,0,0,0}, {36838,38086,38068 ,21380,21376,21381 ,0,0,0}, - {38086,36838,36841 ,21376,21380,21377 ,0,0,0}, {38067,36477,38068 ,21382,21383,21381 ,0,0,0}, - {36838,38068,36477 ,21380,21381,21383 ,0,0,0}, {38067,38072,36475 ,21382,21384,21385 ,0,0,0}, - {36475,36477,38067 ,21385,21383,21382 ,0,0,0}, {36481,38072,38071 ,21386,21384,21387 ,0,0,0}, - {38072,36481,36475 ,21384,21386,21385 ,0,0,0}, {38065,36176,38071 ,21388,21389,21387 ,0,0,0}, - {36481,38071,36176 ,21386,21387,21389 ,0,0,0}, {38065,38178,36177 ,21388,21390,21391 ,0,0,0}, - {36177,36176,38065 ,21391,21389,21388 ,0,0,0}, {36807,38178,37779 ,21392,21390,21393 ,0,0,0}, - {38178,36807,36177 ,21390,21392,21391 ,0,0,0}, {38059,36809,37779 ,21394,21395,21393 ,0,0,0}, - {36807,37779,36809 ,21392,21393,21395 ,0,0,0}, {38059,38058,36340 ,21394,21396,21397 ,0,0,0}, - {36340,36809,38059 ,21397,21395,21394 ,0,0,0}, {36338,38058,38063 ,21398,21396,21399 ,0,0,0}, - {38058,36338,36340 ,21396,21398,21397 ,0,0,0}, {38116,36814,38063 ,21400,21401,21399 ,0,0,0}, - {36338,38063,36814 ,21398,21399,21401 ,0,0,0}, {38116,35227,35228 ,21400,21312,126 ,0,0,0}, - {35228,36814,38116 ,126,21401,21400 ,0,0,0}, {36841,37127,38423 ,21377,21379,21375 ,0,0,0}, - {38424,38423,37127 ,21378,21375,21379 ,0,0,0}, {38169,38424,36837 ,21372,21378,21373 ,0,0,0}, - {38169,36207,38170 ,21372,21371,21374 ,0,0,0}, {38173,38176,37101 ,21369,21367,21366 ,0,0,0}, - {38176,38170,36208 ,21367,21374,21368 ,0,0,0}, {36632,37664,36631 ,21361,21363,21370 ,0,0,0}, - {38173,36631,37664 ,21369,21370,21363 ,0,0,0}, {36788,38421,36633 ,21355,21364,21365 ,0,0,0}, - {36633,37663,36632 ,21365,21362,21361 ,0,0,0}, {36788,38422,38421 ,21355,21357,21364 ,0,0,0}, - {37188,36789,38075 ,21356,21358,21360 ,0,0,0}, {37188,38075,38422 ,21356,21360,21357 ,0,0,0}, - {38076,37189,38174 ,21359,21350,21349 ,0,0,0}, {36789,37189,38076 ,21358,21350,21359 ,0,0,0}, - {37190,38175,36787 ,21353,21352,21351 ,0,0,0}, {38174,36787,38175 ,21349,21351,21352 ,0,0,0}, - {38447,37665,36747 ,21345,21354,21346 ,0,0,0}, {37190,36747,37665 ,21353,21346,21354 ,0,0,0}, - {38447,36748,38419 ,21345,21344,21348 ,0,0,0}, {36786,38419,36748 ,21168,21348,21344 ,0,0,0}, - {36637,38148,36638 ,21341,21340,21402 ,0,0,0}, {36638,38148,37639 ,21402,21340,21347 ,0,0,0}, - {36638,37639,36786 ,21402,21347,21168 ,0,0,0}, {36612,38149,36637 ,21250,21249,21341 ,0,0,0}, - {36785,37748,38172 ,21342,21403,21343 ,0,0,0}, {38149,36612,38172 ,21249,21250,21343 ,0,0,0}, - {37749,37748,36663 ,21335,21403,21336 ,0,0,0}, {37748,36785,36663 ,21403,21342,21336 ,0,0,0}, - {36784,38102,36664 ,21339,21404,21334 ,0,0,0}, {38102,37749,36664 ,21404,21335,21334 ,0,0,0}, - {38036,38104,36514 ,21146,21338,21337 ,0,0,0}, {36784,38104,38102 ,21339,21338,21404 ,0,0,0}, - {38108,36668,38110 ,21133,21329,21328 ,0,0,0}, {36666,38105,36513 ,21405,21330,21236 ,0,0,0}, - {36514,36513,38036 ,21337,21236,21146 ,0,0,0}, {38106,36666,36744 ,21331,21405,21332 ,0,0,0}, - {38105,36666,38106 ,21330,21405,21331 ,0,0,0}, {37464,37466,36635 ,21232,21333,21326 ,0,0,0}, - {37466,36744,36635 ,21333,21332,21326 ,0,0,0}, {36668,38108,36634 ,21329,21133,21325 ,0,0,0}, - {38108,37464,36634 ,21133,21232,21325 ,0,0,0}, {38111,38110,36746 ,21321,21328,21327 ,0,0,0}, - {36184,38112,38113 ,21231,21324,21323 ,0,0,0}, {36184,38113,36783 ,21231,21323,21322 ,0,0,0}, - {36746,36783,38111 ,21327,21322,21321 ,0,0,0}, {36183,38114,38112 ,21139,21136,21324 ,0,0,0}, - {35182,36749,35181 ,21319,21320,21406 ,0,0,0}, {38114,36183,36749 ,21136,21139,21320 ,0,0,0}, - {37473,36200,36752 ,1273,1273,21407 ,0,0,0}, {36751,37471,36752 ,21408,21409,21407 ,0,0,0}, - {37473,36752,37471 ,1273,21407,21409 ,0,0,0}, {36751,37067,37472 ,21408,1276,21408 ,0,0,0}, - {37472,37471,36751 ,21408,21409,21408 ,0,0,0}, {37477,37067,37068 ,1276,1276,21410 ,0,0,0}, - {37067,37477,37472 ,1276,1276,21408 ,0,0,0}, {37066,37486,37068 ,21411,21412,21410 ,0,0,0}, - {37477,37068,37486 ,1276,21410,21412 ,0,0,0}, {37066,36195,37487 ,21411,21413,21411 ,0,0,0}, - {37487,37486,37066 ,21411,21412,21411 ,0,0,0}, {36195,37481,37487 ,21413,20658,21411 ,0,0,0}, - {37462,36200,37473 ,21414,1273,1273 ,0,0,0}, {37462,37461,36201 ,21414,21415,21416 ,0,0,0}, - {36201,36200,37462 ,21416,1273,21414 ,0,0,0}, {36782,37461,38039 ,21415,21415,21417 ,0,0,0}, - {37461,36782,36201 ,21415,21415,21416 ,0,0,0}, {38040,36781,38039 ,21418,1275,21417 ,0,0,0}, - {36782,38039,36781 ,21415,21417,1275 ,0,0,0}, {38040,38041,36174 ,21418,21419,21420 ,0,0,0}, - {36174,36781,38040 ,21420,1275,21418 ,0,0,0}, {36173,38041,38050 ,21419,21419,21421 ,0,0,0}, - {38041,36173,36174 ,21419,21419,21420 ,0,0,0}, {36173,38050,36181 ,21419,21421,21422 ,0,0,0}, - {37646,36639,36652 ,1207,1207,21423 ,0,0,0}, {36651,38376,36652 ,21424,21425,21423 ,0,0,0}, - {37646,36652,38376 ,1207,21423,21425 ,0,0,0}, {36651,36655,37641 ,21424,1882,21424 ,0,0,0}, - {37641,38376,36651 ,21424,21425,21424 ,0,0,0}, {37642,36655,36661 ,1882,1882,21426 ,0,0,0}, - {36655,37642,37641 ,1882,1882,21424 ,0,0,0}, {37093,37636,36661 ,21427,21428,21426 ,0,0,0}, - {37642,36661,37636 ,1882,21426,21428 ,0,0,0}, {37093,37094,37643 ,21427,21429,21427 ,0,0,0}, - {37643,37636,37093 ,21427,21428,21427 ,0,0,0}, {37094,37648,37643 ,21429,21430,21427 ,0,0,0}, - {37653,36639,37646 ,21431,1207,1207 ,0,0,0}, {37653,37656,36648 ,21431,21432,21433 ,0,0,0}, - {36648,36639,37653 ,21433,1207,21431 ,0,0,0}, {36646,37656,37655 ,21432,21432,21434 ,0,0,0}, - {37656,36646,36648 ,21432,21432,21433 ,0,0,0}, {37657,36642,37655 ,21435,1887,21434 ,0,0,0}, - {36646,37655,36642 ,21432,21434,1887 ,0,0,0}, {37657,37662,36643 ,21435,21436,21437 ,0,0,0}, - {36643,36642,37657 ,21437,1887,21435 ,0,0,0}, {36644,37662,38366 ,21436,21436,21438 ,0,0,0}, - {37662,36644,36643 ,21436,21436,21437 ,0,0,0}, {36644,38366,36645 ,21436,21438,21439 ,0,0,0}, - {37792,36492,36483 ,2038,2038,21440 ,0,0,0}, {36487,37784,36483 ,21441,21442,21440 ,0,0,0}, - {37792,36483,37784 ,2038,21440,21442 ,0,0,0}, {36487,36486,37796 ,21441,2041,21441 ,0,0,0}, - {37796,37784,36487 ,21441,21442,21441 ,0,0,0}, {37802,36486,36485 ,2041,2041,21443 ,0,0,0}, - {36486,37802,37796 ,2041,2041,21441 ,0,0,0}, {36506,37803,36485 ,21444,21445,21443 ,0,0,0}, - {37802,36485,37803 ,2041,21443,21445 ,0,0,0}, {36506,36849,37795 ,21444,21446,21444 ,0,0,0}, - {37795,37803,36506 ,21444,21445,21444 ,0,0,0}, {36849,37800,37795 ,21446,21447,21444 ,0,0,0}, - {37794,36492,37792 ,21448,2038,2038 ,0,0,0}, {37794,37787,37082 ,21448,21449,21450 ,0,0,0}, - {37082,36492,37794 ,21450,2038,21448 ,0,0,0}, {36505,37787,37789 ,21449,21449,21451 ,0,0,0}, - {37787,36505,37082 ,21449,21449,21450 ,0,0,0}, {38348,37073,37789 ,21452,2040,21451 ,0,0,0}, - {36505,37789,37073 ,21449,21451,2040 ,0,0,0}, {38348,38358,36499 ,21452,21453,21454 ,0,0,0}, - {36499,37073,38348 ,21454,2040,21452 ,0,0,0}, {36490,38358,38359 ,21453,21453,21455 ,0,0,0}, - {38358,36490,36499 ,21453,21453,21454 ,0,0,0}, {36490,38359,36497 ,21453,21455,21429 ,0,0,0}, - {37896,36330,36336 ,1114,1114,21456 ,0,0,0}, {36315,37939,36336 ,21457,21458,21456 ,0,0,0}, - {37896,36336,37939 ,1114,21456,21458 ,0,0,0}, {36315,36316,37936 ,21457,1116,21457 ,0,0,0}, - {37936,37939,36315 ,21457,21458,21457 ,0,0,0}, {37933,36316,36825 ,1116,1116,21459 ,0,0,0}, - {36316,37933,37936 ,1116,1116,21457 ,0,0,0}, {36317,37934,36825 ,21460,21461,21459 ,0,0,0}, - {37933,36825,37934 ,1116,21459,21461 ,0,0,0}, {36317,36213,37935 ,21460,21462,21460 ,0,0,0}, - {37935,37934,36317 ,21460,21461,21460 ,0,0,0}, {36213,37940,37935 ,21462,21463,21460 ,0,0,0}, - {37941,36330,37896 ,21464,1114,1114 ,0,0,0}, {37941,37938,36321 ,21464,21465,21466 ,0,0,0}, - {36321,36330,37941 ,21466,1114,21464 ,0,0,0}, {36322,37938,37937 ,21465,21465,21467 ,0,0,0}, - {37938,36322,36321 ,21465,21465,21466 ,0,0,0}, {38344,36323,37937 ,21468,1121,21467 ,0,0,0}, - {36322,37937,36323 ,21465,21467,1121 ,0,0,0}, {38344,38055,36324 ,21468,21469,21470 ,0,0,0}, - {36324,36323,38344 ,21470,1121,21468 ,0,0,0}, {37072,38055,37668 ,21469,21469,21471 ,0,0,0}, - {38055,37072,36324 ,21469,21469,21470 ,0,0,0}, {37072,37668,36327 ,21469,21471,21472 ,0,0,0}, - {35119,37207,38468 ,21473,21474,21475 ,0,0,0}, {38464,38463,36740 ,21476,21477,21478 ,0,0,0}, - {38469,38467,37206 ,21479,21480,21481 ,0,0,0}, {38470,37203,37204 ,21482,21483,21484 ,0,0,0}, - {37205,37203,38471 ,21485,21483,21486 ,0,0,0}, {38465,38466,37201 ,21487,21488,21489 ,0,0,0}, - {37204,37201,38466 ,21484,21489,21488 ,0,0,0}, {37202,35128,38465 ,21490,82,21487 ,0,0,0}, - {38465,37201,37202 ,21487,21489,21490 ,0,0,0}, {35127,35128,37202 ,19633,82,21490 ,0,0,0}, - {38466,38470,37204 ,21488,21482,21484 ,0,0,0}, {38470,38471,37203 ,21482,21486,21483 ,0,0,0}, - {38464,36740,37205 ,21476,21478,21485 ,0,0,0}, {38464,37205,38471 ,21476,21485,21486 ,0,0,0}, - {38469,37206,36741 ,21479,21481,21491 ,0,0,0}, {38463,38469,36741 ,21477,21479,21491 ,0,0,0}, - {38463,36741,36740 ,21477,21491,21478 ,0,0,0}, {37207,38467,38468 ,21474,21480,21475 ,0,0,0}, - {37207,37206,38467 ,21474,21481,21480 ,0,0,0}, {38468,35116,35119 ,21475,21492,21473 ,0,0,0}, - {35097,37214,38028 ,21493,21494,21495 ,0,0,0}, {38475,38474,37213 ,21496,21497,21498 ,0,0,0}, - {38473,38472,37215 ,21499,21500,21501 ,0,0,0}, {38476,37210,37209 ,21502,21503,21504 ,0,0,0}, - {37211,37210,38477 ,21505,21503,21506 ,0,0,0}, {38478,38479,37208 ,21507,21508,21509 ,0,0,0}, - {37209,37208,38479 ,21504,21509,21508 ,0,0,0}, {36288,35106,38478 ,21510,761,21507 ,0,0,0}, - {38478,37208,36288 ,21507,21509,21510 ,0,0,0}, {35105,35106,36288 ,761,761,21510 ,0,0,0}, - {38479,38476,37209 ,21508,21502,21504 ,0,0,0}, {38476,38477,37210 ,21502,21506,21503 ,0,0,0}, - {38475,37213,37211 ,21496,21498,21505 ,0,0,0}, {38475,37211,38477 ,21496,21505,21506 ,0,0,0}, - {38473,37215,37212 ,21499,21501,21511 ,0,0,0}, {38474,38473,37212 ,21497,21499,21511 ,0,0,0}, - {38474,37212,37213 ,21497,21511,21498 ,0,0,0}, {37214,38472,38028 ,21494,21500,21495 ,0,0,0}, - {37214,37215,38472 ,21494,21501,21500 ,0,0,0}, {38028,35094,35097 ,21495,96,21493 ,0,0,0}, - {35075,36305,37958 ,21493,21512,21495 ,0,0,0}, {38025,38027,36307 ,21513,21497,21514 ,0,0,0}, - {38483,38022,36310 ,21515,21516,21517 ,0,0,0}, {38480,36313,37221 ,21518,21519,21520 ,0,0,0}, - {36312,36313,38023 ,21521,21519,21522 ,0,0,0}, {38019,38481,36300 ,21523,21524,21525 ,0,0,0}, - {37221,36300,38481 ,21520,21525,21524 ,0,0,0}, {36299,35084,38019 ,21526,761,21523 ,0,0,0}, - {38019,36300,36299 ,21523,21525,21526 ,0,0,0}, {35083,35084,36299 ,761,761,21526 ,0,0,0}, - {38481,38480,37221 ,21524,21518,21520 ,0,0,0}, {38480,38023,36313 ,21518,21522,21519 ,0,0,0}, - {38025,36307,36312 ,21513,21514,21521 ,0,0,0}, {38025,36312,38023 ,21513,21521,21522 ,0,0,0}, - {38483,36310,36309 ,21515,21517,21527 ,0,0,0}, {38027,38483,36309 ,21497,21515,21527 ,0,0,0}, - {38027,36309,36307 ,21497,21527,21514 ,0,0,0}, {36305,38022,37958 ,21512,21516,21495 ,0,0,0}, - {36305,36310,38022 ,21512,21517,21516 ,0,0,0}, {37958,35072,35075 ,21495,96,21493 ,0,0,0}, - {35053,37042,37917 ,850,21528,21529 ,0,0,0}, {37904,37906,36430 ,21530,21531,21532 ,0,0,0}, - {37924,37921,36927 ,21533,21534,21535 ,0,0,0}, {38494,36929,36931 ,21536,21537,21538 ,0,0,0}, - {37047,36929,38493 ,21539,21537,21540 ,0,0,0}, {37920,38496,36459 ,21541,21542,21543 ,0,0,0}, - {36931,36459,38496 ,21538,21543,21542 ,0,0,0}, {36458,35062,37920 ,21544,82,21541 ,0,0,0}, - {37920,36459,36458 ,21541,21543,21544 ,0,0,0}, {35061,35062,36458 ,19655,82,21544 ,0,0,0}, - {38496,38494,36931 ,21542,21536,21538 ,0,0,0}, {38494,38493,36929 ,21536,21540,21537 ,0,0,0}, - {37904,36430,37047 ,21530,21532,21539 ,0,0,0}, {37904,37047,38493 ,21530,21539,21540 ,0,0,0}, - {37924,36927,36428 ,21533,21535,21545 ,0,0,0}, {37906,37924,36428 ,21531,21533,21545 ,0,0,0}, - {37906,36428,36430 ,21531,21545,21532 ,0,0,0}, {37042,37921,37917 ,21528,21534,21529 ,0,0,0}, - {37042,36927,37921 ,21528,21535,21534 ,0,0,0}, {37917,35050,35053 ,21529,21492,850 ,0,0,0}, - {35031,37233,38501 ,21493,21512,21495 ,0,0,0}, {38502,38497,37232 ,21546,21547,21548 ,0,0,0}, - {38499,38500,37234 ,21549,21516,9914 ,0,0,0}, {38503,36625,36624 ,21550,21503,21551 ,0,0,0}, - {37230,36625,38504 ,21552,21503,21553 ,0,0,0}, {38505,38506,37228 ,21554,21555,21556 ,0,0,0}, - {36624,37228,38506 ,21551,21556,21555 ,0,0,0}, {37229,35040,38505 ,21557,761,21554 ,0,0,0}, - {38505,37228,37229 ,21554,21556,21557 ,0,0,0}, {35039,35040,37229 ,761,761,21557 ,0,0,0}, - {38506,38503,36624 ,21555,21550,21551 ,0,0,0}, {38503,38504,36625 ,21550,21553,21503 ,0,0,0}, - {38502,37232,37230 ,21546,21548,21552 ,0,0,0}, {38502,37230,38504 ,21546,21552,21553 ,0,0,0}, - {38499,37234,37231 ,21549,9914,21558 ,0,0,0}, {38497,38499,37231 ,21547,21549,21558 ,0,0,0}, - {38497,37231,37232 ,21547,21558,21548 ,0,0,0}, {37233,38500,38501 ,21512,21516,21495 ,0,0,0}, - {37233,37234,38500 ,21512,9914,21516 ,0,0,0}, {38501,35028,35031 ,21495,96,21493 ,0,0,0}, - {35009,36614,37755 ,21493,9918,21495 ,0,0,0}, {37757,37737,37238 ,21559,21560,9908 ,0,0,0}, - {37736,37753,36622 ,21561,21516,21501 ,0,0,0}, {37765,37241,36594 ,21550,21562,21563 ,0,0,0}, - {37240,37241,38508 ,21564,21562,21565 ,0,0,0}, {37769,37768,36616 ,21566,21567,21568 ,0,0,0}, - {36594,36616,37768 ,21563,21568,21567 ,0,0,0}, {36615,35018,37769 ,21569,761,21566 ,0,0,0}, - {37769,36616,36615 ,21566,21568,21569 ,0,0,0}, {35017,35018,36615 ,761,761,21569 ,0,0,0}, - {37768,37765,36594 ,21567,21550,21563 ,0,0,0}, {37765,38508,37241 ,21550,21565,21562 ,0,0,0}, - {37757,37238,37240 ,21559,9908,21564 ,0,0,0}, {37757,37240,38508 ,21559,21564,21565 ,0,0,0}, - {37736,36622,36591 ,21561,21501,21558 ,0,0,0}, {37737,37736,36591 ,21560,21561,21558 ,0,0,0}, - {37737,36591,37238 ,21560,21558,9908 ,0,0,0}, {36614,37753,37755 ,9918,21516,21495 ,0,0,0}, - {36614,36622,37753 ,9918,21501,21516 ,0,0,0}, {37755,35006,35009 ,21495,96,21493 ,0,0,0}, - {34987,36463,37925 ,19184,21570,21475 ,0,0,0}, {38516,38517,37250 ,21476,21571,21572 ,0,0,0}, - {38514,38515,36464 ,21573,21574,21575 ,0,0,0}, {38513,37244,37248 ,21576,21577,21578 ,0,0,0}, - {37245,37244,38512 ,21485,21577,21579 ,0,0,0}, {38519,38518,37246 ,21580,21581,21582 ,0,0,0}, - {37248,37246,38518 ,21578,21582,21581 ,0,0,0}, {37247,34996,38519 ,21583,82,21580 ,0,0,0}, - {38519,37246,37247 ,21580,21582,21583 ,0,0,0}, {34995,34996,37247 ,19655,82,21583 ,0,0,0}, - {38518,38513,37248 ,21581,21576,21578 ,0,0,0}, {38513,38512,37244 ,21576,21579,21577 ,0,0,0}, - {38516,37250,37245 ,21476,21572,21485 ,0,0,0}, {38516,37245,38512 ,21476,21485,21579 ,0,0,0}, - {38514,36464,37249 ,21573,21575,21584 ,0,0,0}, {38517,38514,37249 ,21571,21573,21584 ,0,0,0}, - {38517,37249,37250 ,21571,21584,21572 ,0,0,0}, {36463,38515,37925 ,21570,21574,21475 ,0,0,0}, - {36463,36464,38515 ,21570,21575,21574 ,0,0,0}, {37925,34984,34987 ,21475,21585,19184 ,0,0,0}, - {34965,36739,37616 ,21473,21586,21587 ,0,0,0}, {37601,37609,37253 ,21530,21588,21589 ,0,0,0}, - {37608,37613,37256 ,21590,21534,21591 ,0,0,0}, {38520,36737,36680 ,21592,21593,21594 ,0,0,0}, - {36736,36737,37602 ,21539,21593,21540 ,0,0,0}, {37573,37612,36733 ,21595,21596,21597 ,0,0,0}, - {36680,36733,37612 ,21594,21597,21596 ,0,0,0}, {36734,34974,37573 ,21598,19234,21595 ,0,0,0}, - {37573,36733,36734 ,21595,21597,21598 ,0,0,0}, {34973,34974,36734 ,21599,19234,21598 ,0,0,0}, - {37612,38520,36680 ,21596,21592,21594 ,0,0,0}, {38520,37602,36737 ,21592,21540,21593 ,0,0,0}, - {37601,37253,36736 ,21530,21589,21539 ,0,0,0}, {37601,36736,37602 ,21530,21539,21540 ,0,0,0}, - {37608,37256,37254 ,21590,21591,21600 ,0,0,0}, {37609,37608,37254 ,21588,21590,21600 ,0,0,0}, - {37609,37254,37253 ,21588,21600,21589 ,0,0,0}, {36739,37613,37616 ,21586,21534,21587 ,0,0,0}, - {36739,37256,37613 ,21586,21591,21534 ,0,0,0}, {37616,34962,34965 ,21587,21492,21473 ,0,0,0}, - {34937,37459,37530 ,2619,21601,21602 ,0,0,0}, {37977,38530,36254 ,21603,20873,21604 ,0,0,0}, - {38529,38212,37265 ,21605,21606,21607 ,0,0,0}, {38743,37260,37979 ,21608,21609,21610 ,0,0,0}, - {36253,37460,38745 ,21611,21612,21613 ,0,0,0}, {37259,36260,38526 ,21614,21615,21616 ,0,0,0}, - {37259,38537,36225 ,21614,21617,21618 ,0,0,0}, {36259,37258,38209 ,21619,21620,21621 ,0,0,0}, - {38209,38527,36259 ,21621,21622,21619 ,0,0,0}, {37972,37258,37257 ,21623,21620,21624 ,0,0,0}, - {37258,37972,38209 ,21620,21623,21621 ,0,0,0}, {36871,38533,37257 ,21625,21626,21624 ,0,0,0}, - {37972,37257,38533 ,21623,21624,21626 ,0,0,0}, {36871,34951,34952 ,21625,82,2602 ,0,0,0}, - {34952,38533,36871 ,2602,21626,21625 ,0,0,0}, {37260,38743,37460 ,21609,21608,21612 ,0,0,0}, - {36260,38527,38526 ,21615,21622,21616 ,0,0,0}, {36259,38527,36260 ,21619,21622,21615 ,0,0,0}, - {36254,38530,36269 ,21604,20873,21627 ,0,0,0}, {36225,38537,37979 ,21618,21617,21610 ,0,0,0}, - {37259,38526,38537 ,21614,21616,21617 ,0,0,0}, {37260,36225,37979 ,21609,21618,21610 ,0,0,0}, - {38745,37460,38743 ,21613,21612,21608 ,0,0,0}, {37977,36254,36253 ,21603,21604,21611 ,0,0,0}, - {36253,38745,37977 ,21611,21613,21603 ,0,0,0}, {38212,37459,37265 ,21606,21601,21607 ,0,0,0}, - {36269,38529,37265 ,21627,21605,21607 ,0,0,0}, {38530,38529,36269 ,20873,21605,21627 ,0,0,0}, - {34937,37530,34938 ,2619,21602,126 ,0,0,0}, {37459,38212,37530 ,21601,21606,21602 ,0,0,0}, - {34907,36910,38184 ,2619,17362,21602 ,0,0,0}, {38190,38189,36907 ,21628,21629,21630 ,0,0,0}, - {38538,38187,36909 ,21605,20903,21631 ,0,0,0}, {38484,37279,38014 ,21632,21609,21633 ,0,0,0}, - {37281,37277,38486 ,21634,21635,21636 ,0,0,0}, {37296,37297,38540 ,21637,21638,21639 ,0,0,0}, - {37296,38539,37452 ,21637,21640,21641 ,0,0,0}, {37222,36303,37995 ,21642,21643,21644 ,0,0,0}, - {37995,38541,37222 ,21644,21645,21642 ,0,0,0}, {38562,36303,37453 ,21646,21643,21647 ,0,0,0}, - {36303,38562,37995 ,21643,21646,21644 ,0,0,0}, {37269,38559,37453 ,21648,21649,21647 ,0,0,0}, - {38562,37453,38559 ,21646,21647,21649 ,0,0,0}, {37269,34920,3883 ,21648,21650,82 ,0,0,0}, - {3883,38559,37269 ,82,21649,21648 ,0,0,0}, {37279,38484,37277 ,21609,21632,21635 ,0,0,0}, - {37297,38541,38540 ,21638,21645,21639 ,0,0,0}, {37222,38541,37297 ,21642,21645,21638 ,0,0,0}, - {36907,38189,36271 ,21630,21629,21651 ,0,0,0}, {37452,38539,38014 ,21641,21640,21633 ,0,0,0}, - {37296,38540,38539 ,21637,21639,21640 ,0,0,0}, {37279,37452,38014 ,21609,21641,21633 ,0,0,0}, - {38486,37277,38484 ,21636,21635,21632 ,0,0,0}, {38190,36907,37281 ,21628,21630,21634 ,0,0,0}, - {37281,38486,38190 ,21634,21636,21628 ,0,0,0}, {38187,36910,36909 ,20903,17362,21631 ,0,0,0}, - {36271,38538,36909 ,21651,21605,21631 ,0,0,0}, {38189,38538,36271 ,21629,21605,21651 ,0,0,0}, - {34907,38184,3897 ,2619,21602,126 ,0,0,0}, {36910,38187,38184 ,17362,20903,21602 ,0,0,0}, - {34875,37298,37998 ,8383,21652,21653 ,0,0,0}, {38545,38544,37295 ,20948,21654,21655 ,0,0,0}, - {38542,38733,37271 ,21656,20903,21607 ,0,0,0}, {37476,37219,37997 ,21657,21609,21658 ,0,0,0}, - {37294,37272,38561 ,21659,21660,21661 ,0,0,0}, {37276,36902,38548 ,21662,21663,21664 ,0,0,0}, - {37276,38564,37218 ,21662,21665,21666 ,0,0,0}, {36901,37292,38000 ,21667,21668,21669 ,0,0,0}, - {38000,38549,36901 ,21669,21670,21667 ,0,0,0}, {38194,37292,36894 ,21671,21668,21672 ,0,0,0}, - {37292,38194,38000 ,21668,21671,21669 ,0,0,0}, {37283,38192,36894 ,21673,21674,21672 ,0,0,0}, - {38194,36894,38192 ,21671,21672,21674 ,0,0,0}, {37283,34889,34890 ,21673,2601,82 ,0,0,0}, - {34890,38192,37283 ,82,21674,21673 ,0,0,0}, {37219,37476,37272 ,21609,21657,21660 ,0,0,0}, - {36902,38549,38548 ,21663,21670,21664 ,0,0,0}, {36901,38549,36902 ,21667,21670,21663 ,0,0,0}, - {37295,38544,37270 ,21655,21654,21675 ,0,0,0}, {37218,38564,37997 ,21666,21665,21658 ,0,0,0}, - {37276,38548,38564 ,21662,21664,21665 ,0,0,0}, {37219,37218,37997 ,21609,21666,21658 ,0,0,0}, - {38561,37272,37476 ,21661,21660,21657 ,0,0,0}, {38545,37295,37294 ,20948,21655,21659 ,0,0,0}, - {37294,38561,38545 ,21659,21661,20948 ,0,0,0}, {38733,37298,37271 ,20903,21652,21607 ,0,0,0}, - {37270,38542,37271 ,21675,21656,21607 ,0,0,0}, {38544,38542,37270 ,21654,21656,21675 ,0,0,0}, - {34875,37998,34876 ,8383,21653,126 ,0,0,0}, {37298,38733,37998 ,21652,20903,21653 ,0,0,0}, - {34845,37311,38568 ,8383,21676,21653 ,0,0,0}, {37988,38179,36877 ,21603,20873,21677 ,0,0,0}, - {37551,37961,36276 ,21678,21679,21631 ,0,0,0}, {37990,37307,38556 ,21680,21681,21682 ,0,0,0}, - {36228,36227,37987 ,21683,21684,21685 ,0,0,0}, {37306,37305,37989 ,21686,21687,21688 ,0,0,0}, - {37306,38570,37308 ,21686,21689,21690 ,0,0,0}, {37285,37284,38555 ,21691,21692,21693 ,0,0,0}, - {38555,38571,37285 ,21693,21694,21691 ,0,0,0}, {38553,37284,37286 ,21695,21692,21696 ,0,0,0}, - {37284,38553,38555 ,21692,21695,21693 ,0,0,0}, {37302,37986,37286 ,21697,21698,21696 ,0,0,0}, - {38553,37286,37986 ,21695,21696,21698 ,0,0,0}, {37302,34858,3917 ,21697,2601,82 ,0,0,0}, - {3917,37986,37302 ,82,21698,21697 ,0,0,0}, {37307,37990,36227 ,21681,21680,21684 ,0,0,0}, - {37305,38571,37989 ,21687,21694,21688 ,0,0,0}, {37285,38571,37305 ,21691,21694,21687 ,0,0,0}, - {36877,38179,36241 ,21677,20873,21627 ,0,0,0}, {37308,38570,38556 ,21690,21689,21682 ,0,0,0}, - {37306,37989,38570 ,21686,21688,21689 ,0,0,0}, {37307,37308,38556 ,21681,21690,21682 ,0,0,0}, - {37987,36227,37990 ,21685,21684,21680 ,0,0,0}, {37988,36877,36228 ,21603,21677,21683 ,0,0,0}, - {36228,37987,37988 ,21683,21685,21603 ,0,0,0}, {37961,37311,36276 ,21679,21676,21631 ,0,0,0}, - {36241,37551,36276 ,21627,21678,21631 ,0,0,0}, {38179,37551,36241 ,20873,21678,21627 ,0,0,0}, - {34845,38568,3931 ,8383,21653,126 ,0,0,0}, {37311,37961,38568 ,21676,21679,21653 ,0,0,0}, - {34815,37321,37880 ,21585,17362,21699 ,0,0,0}, {38585,37826,36360 ,21700,21701,21702 ,0,0,0}, - {37825,37885,37340 ,21703,20903,21704 ,0,0,0}, {38723,37319,37830 ,21705,21706,21707 ,0,0,0}, - {36390,37447,38725 ,21708,21709,21710 ,0,0,0}, {37318,36382,38576 ,21711,21712,21713 ,0,0,0}, - {37318,37828,36385 ,21711,21714,21715 ,0,0,0}, {36367,37317,38246 ,21716,21717,21718 ,0,0,0}, - {38246,38577,36367 ,21718,21719,21716 ,0,0,0}, {37867,37317,37316 ,21720,21717,21721 ,0,0,0}, - {37317,37867,38246 ,21717,21720,21718 ,0,0,0}, {37315,38589,37316 ,21722,21723,21721 ,0,0,0}, - {37867,37316,38589 ,21720,21721,21723 ,0,0,0}, {37315,34828,2165 ,21722,19655,82 ,0,0,0}, - {2165,38589,37315 ,82,21723,21722 ,0,0,0}, {37319,38723,37447 ,21706,21705,21709 ,0,0,0}, - {36382,38577,38576 ,21712,21719,21713 ,0,0,0}, {36367,38577,36382 ,21716,21719,21712 ,0,0,0}, - {36360,37826,36361 ,21702,21701,21724 ,0,0,0}, {36385,37828,37830 ,21715,21714,21707 ,0,0,0}, - {37318,38576,37828 ,21711,21713,21714 ,0,0,0}, {37319,36385,37830 ,21706,21715,21707 ,0,0,0}, - {38725,37447,38723 ,21710,21709,21705 ,0,0,0}, {38585,36360,36390 ,21700,21702,21708 ,0,0,0}, - {36390,38725,38585 ,21708,21710,21700 ,0,0,0}, {37885,37321,37340 ,20903,17362,21704 ,0,0,0}, - {36361,37825,37340 ,21724,21703,21704 ,0,0,0}, {37826,37825,36361 ,21701,21703,21724 ,0,0,0}, - {34815,37880,2941 ,21585,21699,126 ,0,0,0}, {37321,37885,37880 ,17362,20903,21699 ,0,0,0}, - {34783,37330,38593 ,21585,21725,21726 ,0,0,0}, {38322,37818,37059 ,21727,21728,21729 ,0,0,0}, - {37874,37873,36915 ,21656,21730,21731 ,0,0,0}, {37878,37058,38323 ,21732,21733,21734 ,0,0,0}, - {36922,36921,37877 ,21735,21736,21710 ,0,0,0}, {36919,36920,37858 ,21737,21738,21739 ,0,0,0}, - {36919,38324,37329 ,21737,21740,21741 ,0,0,0}, {37326,36442,38597 ,21742,21743,21744 ,0,0,0}, - {38597,37859,37326 ,21744,21745,21742 ,0,0,0}, {38238,36442,36441 ,21746,21743,21747 ,0,0,0}, - {36442,38238,38597 ,21743,21746,21744 ,0,0,0}, {37063,38598,36441 ,21748,21749,21747 ,0,0,0}, - {38238,36441,38598 ,21746,21747,21749 ,0,0,0}, {37063,34797,34798 ,21748,21750,82 ,0,0,0}, - {34798,38598,37063 ,82,21749,21748 ,0,0,0}, {37058,37878,36921 ,21733,21732,21736 ,0,0,0}, - {36920,37859,37858 ,21738,21745,21739 ,0,0,0}, {37326,37859,36920 ,21742,21745,21738 ,0,0,0}, - {37059,37818,36444 ,21729,21728,21724 ,0,0,0}, {37329,38324,38323 ,21741,21740,21734 ,0,0,0}, - {36919,37858,38324 ,21737,21739,21740 ,0,0,0}, {37058,37329,38323 ,21733,21741,21734 ,0,0,0}, - {37877,36921,37878 ,21710,21736,21732 ,0,0,0}, {38322,37059,36922 ,21727,21729,21735 ,0,0,0}, - {36922,37877,38322 ,21735,21710,21727 ,0,0,0}, {37873,37330,36915 ,21730,21725,21731 ,0,0,0}, - {36444,37874,36915 ,21724,21656,21731 ,0,0,0}, {37818,37874,36444 ,21728,21656,21724 ,0,0,0}, - {34783,38593,34784 ,21585,21726,126 ,0,0,0}, {37330,37873,38593 ,21725,21730,21726 ,0,0,0}, - {34753,37334,38607 ,21585,21725,21726 ,0,0,0}, {38624,38606,36350 ,21751,20873,21752 ,0,0,0}, - {38219,38726,37448 ,21656,21730,21753 ,0,0,0}, {38223,36412,38611 ,21754,21755,21756 ,0,0,0}, - {36418,36420,38222 ,21757,21758,21710 ,0,0,0}, {36934,37054,38337 ,21759,21760,21761 ,0,0,0}, - {36934,38334,36411 ,21759,21762,21763 ,0,0,0}, {37057,37056,38613 ,21764,21765,21766 ,0,0,0}, - {38613,38335,37057 ,21766,21767,21764 ,0,0,0}, {38339,37056,36421 ,21768,21765,21769 ,0,0,0}, - {37056,38339,38613 ,21765,21768,21766 ,0,0,0}, {36423,38340,36421 ,21770,21771,21769 ,0,0,0}, - {38339,36421,38340 ,21768,21769,21771 ,0,0,0}, {36423,34766,2131 ,21770,21750,82 ,0,0,0}, - {2131,38340,36423 ,82,21771,21770 ,0,0,0}, {36412,38223,36420 ,21755,21754,21758 ,0,0,0}, - {37054,38335,38337 ,21760,21767,21761 ,0,0,0}, {37057,38335,37054 ,21764,21767,21760 ,0,0,0}, - {36350,38606,36351 ,21752,20873,21724 ,0,0,0}, {36411,38334,38611 ,21763,21762,21756 ,0,0,0}, - {36934,38337,38334 ,21759,21761,21762 ,0,0,0}, {36412,36411,38611 ,21755,21763,21756 ,0,0,0}, - {38222,36420,38223 ,21710,21758,21754 ,0,0,0}, {38624,36350,36418 ,21751,21752,21757 ,0,0,0}, - {36418,38222,38624 ,21757,21710,21751 ,0,0,0}, {38726,37334,37448 ,21730,21725,21753 ,0,0,0}, - {36351,38219,37448 ,21724,21656,21753 ,0,0,0}, {38606,38219,36351 ,20873,21656,21724 ,0,0,0}, - {34753,38607,2950 ,21585,21726,126 ,0,0,0}, {37334,38726,38607 ,21725,21730,21726 ,0,0,0}, - {34721,36955,37846 ,21585,17362,21699 ,0,0,0}, {37834,37833,36402 ,21772,21773,21774 ,0,0,0}, - {38215,37898,36954 ,21703,20903,21775 ,0,0,0}, {37841,37346,38218 ,21776,21777,21778 ,0,0,0}, - {36401,36398,38216 ,21779,21780,21710 ,0,0,0}, {36946,36408,38618 ,21781,21782,21783 ,0,0,0}, - {36946,38619,36947 ,21781,21784,21785 ,0,0,0}, {36409,37336,38221 ,21786,21787,21788 ,0,0,0}, - {38221,38620,36409 ,21788,21789,21786 ,0,0,0}, {38622,37336,37450 ,21790,21787,21791 ,0,0,0}, - {37336,38622,38221 ,21787,21790,21788 ,0,0,0}, {36937,38229,37450 ,21792,21793,21791 ,0,0,0}, - {38622,37450,38229 ,21790,21791,21793 ,0,0,0}, {36937,34735,34736 ,21792,19655,82 ,0,0,0}, - {34736,38229,36937 ,82,21793,21792 ,0,0,0}, {37346,37841,36398 ,21777,21776,21780 ,0,0,0}, - {36408,38620,38618 ,21782,21789,21783 ,0,0,0}, {36409,38620,36408 ,21786,21789,21782 ,0,0,0}, - {36402,37833,37337 ,21774,21773,21724 ,0,0,0}, {36947,38619,38218 ,21785,21784,21778 ,0,0,0}, - {36946,38618,38619 ,21781,21783,21784 ,0,0,0}, {37346,36947,38218 ,21777,21785,21778 ,0,0,0}, - {38216,36398,37841 ,21710,21780,21776 ,0,0,0}, {37834,36402,36401 ,21772,21774,21779 ,0,0,0}, - {36401,38216,37834 ,21779,21710,21772 ,0,0,0}, {37898,36955,36954 ,20903,17362,21775 ,0,0,0}, - {37337,38215,36954 ,21724,21703,21775 ,0,0,0}, {37833,38215,37337 ,21773,21703,21724 ,0,0,0}, - {34721,37846,34722 ,21585,21699,126 ,0,0,0}, {36955,37898,37846 ,17362,20903,21699 ,0,0,0}, - {34691,37358,38628 ,8383,17362,20947 ,0,0,0}, {38252,37751,36970 ,21794,21795,21796 ,0,0,0}, - {37762,38626,36590 ,21656,21797,21798 ,0,0,0}, {37724,37354,38631 ,21799,21800,21801 ,0,0,0}, - {36579,36580,38253 ,21802,21803,21804 ,0,0,0}, {37364,37363,37722 ,21662,21805,21806 ,0,0,0}, - {37364,37723,37353 ,21662,21807,21808 ,0,0,0}, {36532,36531,38271 ,21809,21810,21811 ,0,0,0}, - {38271,37721,36532 ,21811,21812,21809 ,0,0,0}, {38637,36531,36570 ,21813,21810,21814 ,0,0,0}, - {36531,38637,38271 ,21810,21813,21811 ,0,0,0}, {36572,38272,36570 ,21815,21816,21814 ,0,0,0}, - {38637,36570,38272 ,21813,21814,21816 ,0,0,0}, {36572,34704,3029 ,21815,2601,82 ,0,0,0}, - {3029,38272,36572 ,82,21816,21815 ,0,0,0}, {37354,37724,36580 ,21800,21799,21803 ,0,0,0}, - {37363,37721,37722 ,21805,21812,21806 ,0,0,0}, {36532,37721,37363 ,21809,21812,21805 ,0,0,0}, - {36970,37751,37348 ,21796,21795,21817 ,0,0,0}, {37353,37723,38631 ,21808,21807,21801 ,0,0,0}, - {37364,37722,37723 ,21662,21806,21807 ,0,0,0}, {37354,37353,38631 ,21800,21808,21801 ,0,0,0}, - {38253,36580,37724 ,21804,21803,21799 ,0,0,0}, {38252,36970,36579 ,21794,21796,21802 ,0,0,0}, - {36579,38253,38252 ,21802,21804,21794 ,0,0,0}, {38626,37358,36590 ,21797,17362,21798 ,0,0,0}, - {37348,37762,36590 ,21817,21656,21798 ,0,0,0}, {37751,37762,37348 ,21795,21656,21817 ,0,0,0}, - {34691,38628,3015 ,8383,20947,126 ,0,0,0}, {37358,38626,38628 ,17362,21797,20947 ,0,0,0}, - {34659,36597,38645 ,8383,21818,20947 ,0,0,0}, {38675,38644,36979 ,21819,21820,21821 ,0,0,0}, - {38260,38740,37457 ,21822,21823,21607 ,0,0,0}, {38263,36564,38268 ,21824,21825,21826 ,0,0,0}, - {36977,36976,38265 ,21611,21827,21828 ,0,0,0}, {36585,36974,38636 ,21686,21829,21830 ,0,0,0}, - {36585,38267,36584 ,21686,21831,21832 ,0,0,0}, {36973,36563,38269 ,21833,21834,21835 ,0,0,0}, - {38269,38635,36973 ,21835,21836,21833 ,0,0,0}, {37718,36563,37360 ,21837,21834,21838 ,0,0,0}, - {36563,37718,38269 ,21834,21837,21835 ,0,0,0}, {36574,37717,37360 ,21839,21840,21838 ,0,0,0}, - {37718,37360,37717 ,21837,21838,21840 ,0,0,0}, {36574,34673,34674 ,21839,2601,82 ,0,0,0}, - {34674,37717,36574 ,82,21840,21839 ,0,0,0}, {36564,38263,36976 ,21825,21824,21827 ,0,0,0}, - {36974,38635,38636 ,21829,21836,21830 ,0,0,0}, {36973,38635,36974 ,21833,21836,21829 ,0,0,0}, - {36979,38644,36980 ,21821,21820,21841 ,0,0,0}, {36584,38267,38268 ,21832,21831,21826 ,0,0,0}, - {36585,38636,38267 ,21686,21830,21831 ,0,0,0}, {36564,36584,38268 ,21825,21832,21826 ,0,0,0}, - {38265,36976,38263 ,21828,21827,21824 ,0,0,0}, {38675,36979,36977 ,21819,21821,21611 ,0,0,0}, - {36977,38265,38675 ,21611,21828,21819 ,0,0,0}, {38740,36597,37457 ,21823,21818,21607 ,0,0,0}, - {36980,38260,37457 ,21841,21822,21607 ,0,0,0}, {38644,38260,36980 ,21820,21822,21841 ,0,0,0}, - {34659,38645,34660 ,8383,20947,126 ,0,0,0}, {36597,38740,38645 ,21818,21823,20947 ,0,0,0}, - {34627,36547,37733 ,21842,21843,21844 ,0,0,0}, {37731,38656,36540 ,20948,21845,21796 ,0,0,0}, - {38655,38284,37388 ,21605,21846,21847 ,0,0,0}, {38734,37375,37685 ,21848,21849,21850 ,0,0,0}, - {36604,37454,38737 ,21802,21851,21852 ,0,0,0}, {37374,36546,38652 ,21662,21853,21854 ,0,0,0}, - {37374,38665,36548 ,21662,21855,21856 ,0,0,0}, {36542,37373,38651 ,21857,21858,21859 ,0,0,0}, - {38651,38653,36542 ,21859,21860,21857 ,0,0,0}, {37741,37373,37372 ,21861,21858,21862 ,0,0,0}, - {37373,37741,38651 ,21858,21861,21859 ,0,0,0}, {36605,38661,37372 ,21863,21864,21862 ,0,0,0}, - {37741,37372,38661 ,21861,21862,21864 ,0,0,0}, {36605,34641,34642 ,21863,21650,82 ,0,0,0}, - {34642,38661,36605 ,82,21864,21863 ,0,0,0}, {37375,38734,37454 ,21849,21848,21851 ,0,0,0}, - {36546,38653,38652 ,21853,21860,21854 ,0,0,0}, {36542,38653,36546 ,21857,21860,21853 ,0,0,0}, - {36540,38656,36541 ,21796,21845,21865 ,0,0,0}, {36548,38665,37685 ,21856,21855,21850 ,0,0,0}, - {37374,38652,38665 ,21662,21854,21855 ,0,0,0}, {37375,36548,37685 ,21849,21856,21850 ,0,0,0}, - {38737,37454,38734 ,21852,21851,21848 ,0,0,0}, {37731,36540,36604 ,20948,21796,21802 ,0,0,0}, - {36604,38737,37731 ,21802,21852,20948 ,0,0,0}, {38284,36547,37388 ,21846,21843,21847 ,0,0,0}, - {36541,38655,37388 ,21865,21605,21847 ,0,0,0}, {38656,38655,36541 ,21845,21605,21865 ,0,0,0}, - {34627,37733,34628 ,21842,21844,8383 ,0,0,0}, {36547,38284,37733 ,21843,21846,21844 ,0,0,0}, - {34597,36989,37690 ,2619,21818,21866 ,0,0,0}, {38255,38257,37385 ,21867,21868,21869 ,0,0,0}, - {37697,38663,36558 ,21870,20903,21607 ,0,0,0}, {37587,36987,38259 ,21871,21872,21873 ,0,0,0}, - {36961,36963,37589 ,21874,21875,21828 ,0,0,0}, {36556,37394,38647 ,21614,21876,21877 ,0,0,0}, - {36556,38646,36557 ,21614,21878,21879 ,0,0,0}, {37393,37395,38261 ,21880,21881,21882 ,0,0,0}, - {38261,37703,37393 ,21882,21883,21880 ,0,0,0}, {38640,37395,37458 ,21884,21881,21885 ,0,0,0}, - {37395,38640,38261 ,21881,21884,21882 ,0,0,0}, {36587,38641,37458 ,21886,21887,21885 ,0,0,0}, - {38640,37458,38641 ,21884,21885,21887 ,0,0,0}, {36587,34610,3063 ,21886,82,2602 ,0,0,0}, - {3063,38641,36587 ,2602,21887,21886 ,0,0,0}, {36987,37587,36963 ,21872,21871,21875 ,0,0,0}, - {37394,37703,38647 ,21876,21883,21877 ,0,0,0}, {37393,37703,37394 ,21880,21883,21876 ,0,0,0}, - {37385,38257,36560 ,21869,21868,21627 ,0,0,0}, {36557,38646,38259 ,21879,21878,21873 ,0,0,0}, - {36556,38647,38646 ,21614,21877,21878 ,0,0,0}, {36987,36557,38259 ,21872,21879,21873 ,0,0,0}, - {37589,36963,37587 ,21828,21875,21871 ,0,0,0}, {38255,37385,36961 ,21867,21869,21874 ,0,0,0}, - {36961,37589,38255 ,21874,21828,21867 ,0,0,0}, {38663,36989,36558 ,20903,21818,21607 ,0,0,0}, - {36560,37697,36558 ,21627,21870,21607 ,0,0,0}, {38257,37697,36560 ,21868,21870,21627 ,0,0,0}, - {34597,37690,3049 ,2619,21866,126 ,0,0,0}, {36989,38663,37690 ,21818,20903,21866 ,0,0,0}, - {34567,37040,38521 ,21492,17362,21726 ,0,0,0}, {38729,38683,36726 ,21888,21889,21890 ,0,0,0}, - {38679,38522,37041 ,21656,21730,21891 ,0,0,0}, {38693,37402,38682 ,21705,21892,21893 ,0,0,0}, - {36725,37451,38731 ,21894,21736,21895 ,0,0,0}, {37401,36718,38676 ,21896,21897,21713 ,0,0,0}, - {37401,38680,36729 ,21896,21898,21741 ,0,0,0}, {36712,37400,37594 ,21899,21900,21901 ,0,0,0}, - {37594,38677,36712 ,21901,21902,21899 ,0,0,0}, {37590,37400,37399 ,21903,21900,21904 ,0,0,0}, - {37400,37590,37594 ,21900,21903,21901 ,0,0,0}, {36197,38687,37399 ,21905,21906,21904 ,0,0,0}, - {37590,37399,38687 ,21903,21904,21906 ,0,0,0}, {36197,34580,2082 ,21905,21907,82 ,0,0,0}, - {2082,38687,36197 ,82,21906,21905 ,0,0,0}, {37402,38693,37451 ,21892,21705,21736 ,0,0,0}, - {36718,38677,38676 ,21897,21902,21713 ,0,0,0}, {36712,38677,36718 ,21899,21902,21897 ,0,0,0}, - {36726,38683,37404 ,21890,21889,21908 ,0,0,0}, {36729,38680,38682 ,21741,21898,21893 ,0,0,0}, - {37401,38676,38680 ,21896,21713,21898 ,0,0,0}, {37402,36729,38682 ,21892,21741,21893 ,0,0,0}, - {38731,37451,38693 ,21895,21736,21705 ,0,0,0}, {38729,36726,36725 ,21888,21890,21894 ,0,0,0}, - {36725,38731,38729 ,21894,21895,21888 ,0,0,0}, {38522,37040,37041 ,21730,17362,21891 ,0,0,0}, - {37404,38679,37041 ,21908,21656,21891 ,0,0,0}, {38683,38679,37404 ,21889,21656,21908 ,0,0,0}, - {34567,38521,1263 ,21492,21726,126 ,0,0,0}, {37040,38522,38521 ,17362,21730,21726 ,0,0,0}, - {34535,37039,38685 ,21492,17362,21726 ,0,0,0}, {37515,38289,37029 ,21909,21910,21911 ,0,0,0}, - {37572,37571,37038 ,21656,21730,21912 ,0,0,0}, {38292,37033,37561 ,21776,21913,21914 ,0,0,0}, - {37419,37034,38291 ,21915,21758,21895 ,0,0,0}, {36709,37435,38295 ,21916,21917,21783 ,0,0,0}, - {36709,38294,36708 ,21916,21918,21763 ,0,0,0}, {37016,37015,38695 ,21919,21920,21921 ,0,0,0}, - {38695,38694,37016 ,21921,21922,21919 ,0,0,0}, {38297,37015,37456 ,21923,21920,21924 ,0,0,0}, - {37015,38297,38695 ,21920,21923,21921 ,0,0,0}, {37411,37562,37456 ,21925,21926,21924 ,0,0,0}, - {38297,37456,37562 ,21923,21924,21926 ,0,0,0}, {37411,34549,34550 ,21925,21907,82 ,0,0,0}, - {34550,37562,37411 ,82,21926,21925 ,0,0,0}, {37033,38292,37034 ,21913,21776,21758 ,0,0,0}, - {37435,38694,38295 ,21917,21922,21783 ,0,0,0}, {37016,38694,37435 ,21919,21922,21917 ,0,0,0}, - {37029,38289,37420 ,21911,21910,21908 ,0,0,0}, {36708,38294,37561 ,21763,21918,21914 ,0,0,0}, - {36709,38295,38294 ,21916,21783,21918 ,0,0,0}, {37033,36708,37561 ,21913,21763,21914 ,0,0,0}, - {38291,37034,38292 ,21895,21758,21776 ,0,0,0}, {37515,37029,37419 ,21909,21911,21915 ,0,0,0}, - {37419,38291,37515 ,21915,21895,21909 ,0,0,0}, {37571,37039,37038 ,21730,17362,21912 ,0,0,0}, - {37420,37572,37038 ,21908,21656,21912 ,0,0,0}, {38289,37572,37420 ,21910,21656,21908 ,0,0,0}, - {34535,38685,34536 ,21492,21726,126 ,0,0,0}, {37039,37571,38685 ,17362,21730,21726 ,0,0,0}, - {34505,37436,37555 ,21492,17362,21726 ,0,0,0}, {38301,38300,36705 ,21909,21910,21911 ,0,0,0}, - {38708,38738,37455 ,21656,21927,21775 ,0,0,0}, {37510,36698,37547 ,21776,21913,21928 ,0,0,0}, - {36707,37413,37512 ,21915,21929,21930 ,0,0,0}, {36697,36692,38309 ,21916,21931,21932 ,0,0,0}, - {36697,37548,36695 ,21916,21933,21934 ,0,0,0}, {36694,37012,38311 ,21764,21935,21936 ,0,0,0}, - {38311,38699,36694 ,21936,21937,21764 ,0,0,0}, {37567,37012,37421 ,21938,21935,21939 ,0,0,0}, - {37012,37567,38311 ,21935,21938,21936 ,0,0,0}, {37008,37568,37421 ,21940,21941,21939 ,0,0,0}, - {37567,37421,37568 ,21938,21939,21941 ,0,0,0}, {37008,34518,2073 ,21940,19633,82 ,0,0,0}, - {2073,37568,37008 ,82,21941,21940 ,0,0,0}, {36698,37510,37413 ,21913,21776,21929 ,0,0,0}, - {36692,38699,38309 ,21931,21937,21932 ,0,0,0}, {36694,38699,36692 ,21764,21937,21931 ,0,0,0}, - {36705,38300,37014 ,21911,21910,21627 ,0,0,0}, {36695,37548,37547 ,21934,21933,21928 ,0,0,0}, - {36697,38309,37548 ,21916,21932,21933 ,0,0,0}, {36698,36695,37547 ,21913,21934,21928 ,0,0,0}, - {37512,37413,37510 ,21930,21929,21776 ,0,0,0}, {38301,36705,36707 ,21909,21911,21915 ,0,0,0}, - {36707,37512,38301 ,21915,21930,21909 ,0,0,0}, {38738,37436,37455 ,21927,17362,21775 ,0,0,0}, - {37014,38708,37455 ,21627,21656,21775 ,0,0,0}, {38300,38708,37014 ,21910,21656,21627 ,0,0,0}, - {34505,37555,1297 ,21492,21726,126 ,0,0,0}, {37436,38738,37555 ,17362,21927,21726 ,0,0,0}, - {34473,37443,38716 ,21492,17362,21726 ,0,0,0}, {37504,37586,36702 ,21888,21889,21890 ,0,0,0}, - {37527,37526,36703 ,21656,21927,21704 ,0,0,0}, {37569,37439,38704 ,21705,21892,21942 ,0,0,0}, - {36258,36257,37505 ,21894,21943,21930 ,0,0,0}, {37438,37437,37580 ,21896,21944,21945 ,0,0,0}, - {37438,38718,37440 ,21896,21946,21947 ,0,0,0}, {37002,37001,37531 ,21742,21948,21949 ,0,0,0}, - {37531,38719,37002 ,21949,21950,21742 ,0,0,0}, {37532,37001,37004 ,21951,21948,21952 ,0,0,0}, - {37001,37532,37531 ,21948,21951,21949 ,0,0,0}, {37426,37538,37004 ,21953,21954,21952 ,0,0,0}, - {37532,37004,37538 ,21951,21952,21954 ,0,0,0}, {37426,34487,34488 ,21953,19633,82 ,0,0,0}, - {34488,37538,37426 ,82,21954,21953 ,0,0,0}, {37439,37569,36257 ,21892,21705,21943 ,0,0,0}, - {37437,38719,37580 ,21944,21950,21945 ,0,0,0}, {37002,38719,37437 ,21742,21950,21944 ,0,0,0}, - {36702,37586,36701 ,21890,21889,21627 ,0,0,0}, {37440,38718,38704 ,21947,21946,21942 ,0,0,0}, - {37438,37580,38718 ,21896,21945,21946 ,0,0,0}, {37439,37440,38704 ,21892,21947,21942 ,0,0,0}, - {37505,36257,37569 ,21930,21943,21705 ,0,0,0}, {37504,36702,36258 ,21888,21890,21894 ,0,0,0}, - {36258,37505,37504 ,21894,21930,21888 ,0,0,0}, {37526,37443,36703 ,21927,17362,21704 ,0,0,0}, - {36701,37527,36703 ,21627,21656,21704 ,0,0,0}, {37586,37527,36701 ,21889,21656,21627 ,0,0,0}, - {34473,38716,34474 ,21492,21726,126 ,0,0,0}, {37443,37526,38716 ,17362,21927,21726 ,0,0,0}, - {37820,12921,37821 ,21955,21956,18609 ,0,0,0}, {37820,34442,12921 ,21955,18573,21956 ,0,0,0}, - {34442,37820,34441 ,18573,21955,18573 ,0,0,0}, {37327,37821,12921 ,18609,18609,21956 ,0,0,0}, - {34449,38241,36395 ,18594,21957,21957 ,0,0,0}, {38578,36355,37863 ,21958,21958,21959 ,0,0,0}, - {36396,36914,37868 ,21959,21960,21960 ,0,0,0}, {37865,37327,37324 ,21961,18609,21961 ,0,0,0}, - {37324,38578,37865 ,21961,21958,21961 ,0,0,0}, {37821,37327,37865 ,18609,18609,21961 ,0,0,0}, - {37324,36355,38578 ,21961,21958,21958 ,0,0,0}, {36396,37863,36355 ,21959,21959,21958 ,0,0,0}, - {37863,36396,37868 ,21959,21959,21960 ,0,0,0}, {36395,34450,34449 ,21957,18594,18594 ,0,0,0}, - {38241,36914,36395 ,21957,21960,21957 ,0,0,0}, {37868,36914,38241 ,21960,21960,21957 ,0,0,0}, - {38325,34455,37313 ,21962,18581,21963 ,0,0,0}, {34455,34456,37313 ,18581,18581,21963 ,0,0,0}, - {36363,38325,37313 ,18601,21962,21963 ,0,0,0}, {38325,36363,38595 ,21962,18601,18601 ,0,0,0}, - {34435,37876,36392 ,18588,21964,21964 ,0,0,0}, {37875,36389,38594 ,21965,21965,21966 ,0,0,0}, - {36916,37331,38592 ,21966,21967,21967 ,0,0,0}, {38596,36363,36362 ,21968,18601,21968 ,0,0,0}, - {36362,37875,38596 ,21968,21965,21968 ,0,0,0}, {38595,36363,38596 ,18601,18601,21968 ,0,0,0}, - {36362,36389,37875 ,21968,21965,21965 ,0,0,0}, {36916,38594,36389 ,21966,21966,21965 ,0,0,0}, - {38594,36916,38592 ,21966,21966,21967 ,0,0,0}, {36392,34436,34435 ,21964,18588,18588 ,0,0,0}, - {37876,37331,36392 ,21964,21967,21964 ,0,0,0}, {38592,37331,37876 ,21967,21967,21964 ,0,0,0}, - {37857,36372,37851 ,21969,21970,18594 ,0,0,0}, {37857,34414,36372 ,21969,18575,21970 ,0,0,0}, - {34414,37857,34413 ,18575,21969,18575 ,0,0,0}, {36380,37851,36372 ,18594,18594,21970 ,0,0,0}, - {34421,38616,36959 ,18581,21971,21971 ,0,0,0}, {37854,36377,37855 ,21972,21972,21973 ,0,0,0}, - {36366,36358,38213 ,21973,21974,21974 ,0,0,0}, {37891,36380,36378 ,21975,18594,21975 ,0,0,0}, - {36378,37854,37891 ,21975,21972,21975 ,0,0,0}, {37851,36380,37891 ,18594,18594,21975 ,0,0,0}, - {36378,36377,37854 ,21975,21972,21972 ,0,0,0}, {36366,37855,36377 ,21973,21973,21972 ,0,0,0}, - {37855,36366,38213 ,21973,21973,21974 ,0,0,0}, {36959,34422,34421 ,21971,18581,18581 ,0,0,0}, - {38616,36358,36959 ,21971,21974,21971 ,0,0,0}, {38213,36358,38616 ,21974,21974,21971 ,0,0,0}, - {38724,34427,37343 ,21976,18583,82 ,0,0,0}, {34427,34428,37343 ,18583,18583,82 ,0,0,0}, - {37342,38724,37343 ,18588,21976,82 ,0,0,0}, {38724,37342,37870 ,21976,18588,18588 ,0,0,0}, - {34407,38586,37320 ,18573,21977,21977 ,0,0,0}, {38588,36958,37829 ,21978,21978,21979 ,0,0,0}, - {36384,36386,37889 ,21979,21980,21980 ,0,0,0}, {37869,37342,36359 ,21981,18588,21981 ,0,0,0}, - {36359,38588,37869 ,21981,21978,21981 ,0,0,0}, {37870,37342,37869 ,18588,18588,21981 ,0,0,0}, - {36359,36958,38588 ,21981,21978,21978 ,0,0,0}, {36384,37829,36958 ,21979,21979,21978 ,0,0,0}, - {37829,36384,37889 ,21979,21979,21980 ,0,0,0}, {37320,34408,34407 ,21977,18573,18573 ,0,0,0}, - {38586,36386,37320 ,21977,21980,21977 ,0,0,0}, {37889,36386,38586 ,21980,21980,21977 ,0,0,0}, - {2303,12820,38603 ,21982,21983,18581 ,0,0,0}, {2303,34386,12820 ,21982,18601,21983 ,0,0,0}, - {34386,2303,34385 ,18601,21982,18601 ,0,0,0}, {36406,38603,12820 ,18581,18581,21983 ,0,0,0}, - {34393,38623,36419 ,18583,21984,21984 ,0,0,0}, {38610,36943,38327 ,21985,21985,21986 ,0,0,0}, - {36410,36913,38224 ,21986,21987,21987 ,0,0,0}, {38329,36406,36944 ,21988,18581,21988 ,0,0,0}, - {36944,38610,38329 ,21988,21985,21988 ,0,0,0}, {38603,36406,38329 ,18581,18581,21988 ,0,0,0}, - {36944,36943,38610 ,21988,21985,21985 ,0,0,0}, {36410,38327,36943 ,21986,21986,21985 ,0,0,0}, - {38327,36410,38224 ,21986,21986,21987 ,0,0,0}, {36419,34394,34393 ,21984,18583,18583 ,0,0,0}, - {38623,36913,36419 ,21984,21987,21984 ,0,0,0}, {38224,36913,38623 ,21987,21987,21984 ,0,0,0}, - {37849,34399,37051 ,21989,18609,21990 ,0,0,0}, {34399,34400,37051 ,18609,18609,21990 ,0,0,0}, - {36416,37849,37051 ,18573,21989,21990 ,0,0,0}, {37849,36416,37847 ,21989,18573,18573 ,0,0,0}, - {34379,38220,37344 ,18575,21991,21991 ,0,0,0}, {37831,36941,37838 ,21992,21992,21993 ,0,0,0}, - {36414,36413,37837 ,21993,21994,21994 ,0,0,0}, {37894,36416,36415 ,21995,18573,21996 ,0,0,0}, - {36415,37831,37894 ,21996,21992,21995 ,0,0,0}, {37847,36416,37894 ,18573,18573,21995 ,0,0,0}, - {36415,36941,37831 ,21996,21992,21992 ,0,0,0}, {36414,37838,36941 ,21993,21993,21992 ,0,0,0}, - {37838,36414,37837 ,21993,21993,21994 ,0,0,0}, {37344,34380,34379 ,21991,18575,18575 ,0,0,0}, - {38220,36413,37344 ,21991,21994,21991 ,0,0,0}, {37837,36413,38220 ,21994,21994,21991 ,0,0,0}, - {38509,37347,37756 ,21997,21998,18609 ,0,0,0}, {38509,34358,37347 ,21997,18573,21998 ,0,0,0}, - {34358,38509,34357 ,18573,21997,18573 ,0,0,0}, {37239,37756,37347 ,18609,18609,21998 ,0,0,0}, - {34365,37747,36960 ,18594,18610,18610 ,0,0,0}, {38728,37237,38277 ,21999,21999,22000 ,0,0,0}, - {37242,37371,38278 ,22000,22001,22001 ,0,0,0}, {37738,37239,36593 ,22002,18609,22002 ,0,0,0}, - {36593,38728,37738 ,22002,21999,22002 ,0,0,0}, {37756,37239,37738 ,18609,18609,22002 ,0,0,0}, - {36593,37237,38728 ,22002,21999,21999 ,0,0,0}, {37242,38277,37237 ,22000,22000,21999 ,0,0,0}, - {38277,37242,38278 ,22000,22000,22001 ,0,0,0}, {36960,34366,34365 ,18610,18594,18594 ,0,0,0}, - {37747,37371,36960 ,18610,22001,18610 ,0,0,0}, {38278,37371,37747 ,22001,22001,18610 ,0,0,0}, - {38625,34371,37370 ,22003,18581,22004 ,0,0,0}, {34371,34372,37370 ,18581,18581,22004 ,0,0,0}, - {36967,38625,37370 ,18601,22003,22004 ,0,0,0}, {38625,36967,38274 ,22003,18601,18601 ,0,0,0}, - {34351,38630,36529 ,18588,22005,22005 ,0,0,0}, {37761,36589,38629 ,22006,22006,22007 ,0,0,0}, - {36588,37359,38627 ,22007,22008,22008 ,0,0,0}, {38275,36967,36968 ,22009,18601,22009 ,0,0,0}, - {36968,37761,38275 ,22009,22006,22009 ,0,0,0}, {38274,36967,38275 ,18601,18601,22009 ,0,0,0}, - {36968,36589,37761 ,22009,22006,22006 ,0,0,0}, {36588,38629,36589 ,22007,22007,22006 ,0,0,0}, - {38629,36588,38627 ,22007,22007,22008 ,0,0,0}, {36529,34352,34351 ,22005,18588,18588 ,0,0,0}, - {38630,37359,36529 ,22005,22008,22005 ,0,0,0}, {38627,37359,38630 ,22008,22008,22005 ,0,0,0}, - {37581,37406,37574 ,22010,22011,18594 ,0,0,0}, {37581,34330,37406 ,22010,18575,22011 ,0,0,0}, - {34330,37581,34329 ,18575,22010,18575 ,0,0,0}, {37407,37574,37406 ,18594,18594,22011 ,0,0,0}, - {34337,38684,36723 ,18581,22012,22012 ,0,0,0}, {37577,37405,37596 ,22013,22013,22014 ,0,0,0}, - {36731,36724,37597 ,22014,22015,22015 ,0,0,0}, {37575,37407,36722 ,22016,18594,22016 ,0,0,0}, - {36722,37577,37575 ,22016,22013,22016 ,0,0,0}, {37574,37407,37575 ,18594,18594,22016 ,0,0,0}, - {36722,37405,37577 ,22016,22013,22013 ,0,0,0}, {36731,37596,37405 ,22014,22014,22013 ,0,0,0}, - {37596,36731,37597 ,22014,22014,22015 ,0,0,0}, {36723,34338,34337 ,22012,18581,18581 ,0,0,0}, - {38684,36724,36723 ,22012,22015,22012 ,0,0,0}, {37597,36724,38684 ,22015,22015,22012 ,0,0,0}, - {38730,34343,37409 ,22017,18583,22018 ,0,0,0}, {34343,34344,37409 ,18583,18583,22018 ,0,0,0}, - {37408,38730,37409 ,18588,22017,22018 ,0,0,0}, {38730,37408,38317 ,22017,18588,18588 ,0,0,0}, - {34323,38692,37403 ,18573,22019,22019 ,0,0,0}, {38686,37035,38681 ,22020,22020,22021 ,0,0,0}, - {36728,36727,38691 ,22021,22022,22022 ,0,0,0}, {38318,37408,37036 ,22023,18588,22023 ,0,0,0}, - {37036,38686,38318 ,22023,22020,22023 ,0,0,0}, {38317,37408,38318 ,18588,18588,22023 ,0,0,0}, - {37036,37035,38686 ,22023,22020,22020 ,0,0,0}, {36728,38681,37035 ,22021,22021,22020 ,0,0,0}, - {38681,36728,38691 ,22021,22021,22022 ,0,0,0}, {37403,34324,34323 ,22019,18573,18573 ,0,0,0}, - {38692,36727,37403 ,22019,22022,22019 ,0,0,0}, {38691,36727,38692 ,22022,22022,22019 ,0,0,0}, - {38013,36872,37994 ,22024,22025,18581 ,0,0,0}, {38013,34302,36872 ,22024,18601,22025 ,0,0,0}, - {34302,38013,34301 ,18601,22024,18601 ,0,0,0}, {37224,37994,36872 ,18581,18581,22025 ,0,0,0}, - {34309,38546,37273 ,18583,22026,22026 ,0,0,0}, {38732,37226,37474 ,22027,22027,22028 ,0,0,0}, - {37217,37274,37475 ,22028,22029,22029 ,0,0,0}, {38563,37224,36904 ,22030,18581,22030 ,0,0,0}, - {36904,38732,38563 ,22030,22027,22030 ,0,0,0}, {37994,37224,38563 ,18581,18581,22030 ,0,0,0}, - {36904,37226,38732 ,22030,22027,22027 ,0,0,0}, {37217,37474,37226 ,22028,22028,22027 ,0,0,0}, - {37474,37217,37475 ,22028,22028,22029 ,0,0,0}, {37273,34310,34309 ,22026,18583,18583 ,0,0,0}, - {38546,37274,37273 ,22026,22029,22026 ,0,0,0}, {37475,37274,38546 ,22029,22029,22026 ,0,0,0}, - {38010,34315,36893 ,22031,18609,22032 ,0,0,0}, {34315,34316,36893 ,18609,18609,22032 ,0,0,0}, - {36884,38010,36893 ,18573,22031,22032 ,0,0,0}, {38010,36884,38011 ,22031,18573,18573 ,0,0,0}, - {34295,37996,36302 ,18575,22033,22033 ,0,0,0}, {38005,36898,38488 ,22034,22034,22035 ,0,0,0}, - {37225,37268,38489 ,22035,22036,22036 ,0,0,0}, {38183,36884,36883 ,22037,18573,22037 ,0,0,0}, - {36883,38005,38183 ,22037,22034,22037 ,0,0,0}, {38011,36884,38183 ,18573,18573,22037 ,0,0,0}, - {36883,36898,38005 ,22037,22034,22034 ,0,0,0}, {37225,38488,36898 ,22035,22035,22034 ,0,0,0}, - {38488,37225,38489 ,22035,22035,22036 ,0,0,0}, {36302,34296,34295 ,22033,18575,18575 ,0,0,0}, - {37996,37268,36302 ,22033,22036,22033 ,0,0,0}, {38489,37268,37996 ,22036,22036,22033 ,0,0,0}, - {37689,36545,37725 ,22038,22039,18594 ,0,0,0}, {37689,34274,36545 ,22038,18575,22039 ,0,0,0}, - {34274,37689,34273 ,18575,22038,18575 ,0,0,0}, {37380,37725,36545 ,18594,18594,22039 ,0,0,0}, - {34281,38658,36553 ,18581,22040,22040 ,0,0,0}, {38666,36991,38669 ,22041,22041,22042 ,0,0,0}, - {36551,36554,37728 ,22042,22043,22043 ,0,0,0}, {37593,37380,37377 ,22044,18594,22044 ,0,0,0}, - {37377,38666,37593 ,22044,22041,22044 ,0,0,0}, {37725,37380,37593 ,18594,18594,22044 ,0,0,0}, - {37377,36991,38666 ,22044,22041,22041 ,0,0,0}, {36551,38669,36991 ,22042,22042,22041 ,0,0,0}, - {38669,36551,37728 ,22042,22042,22043 ,0,0,0}, {36553,34282,34281 ,22040,18581,18581 ,0,0,0}, - {38658,36554,36553 ,22040,22043,22040 ,0,0,0}, {37728,36554,38658 ,22043,22043,22040 ,0,0,0}, - {38736,34287,37390 ,22045,18583,22046 ,0,0,0}, {34287,34288,37390 ,18583,18583,22046 ,0,0,0}, - {37389,38736,37390 ,18588,22045,22046 ,0,0,0}, {38736,37389,38280 ,22045,18588,18588 ,0,0,0}, - {34267,37730,37376 ,18573,22047,22047 ,0,0,0}, {38660,36990,37686 ,22048,22048,22049 ,0,0,0}, - {36550,36549,37684 ,22049,22050,22050 ,0,0,0}, {38279,37389,36539 ,22051,18588,22051 ,0,0,0}, - {36539,38660,38279 ,22051,22048,22051 ,0,0,0}, {38280,37389,38279 ,18588,18588,22051 ,0,0,0}, - {36539,36990,38660 ,22051,22048,22048 ,0,0,0}, {36550,37686,36990 ,22049,22049,22048 ,0,0,0}, - {37686,36550,37684 ,22049,22049,22050 ,0,0,0}, {37376,34268,34267 ,22047,18573,18573 ,0,0,0}, - {37730,36549,37376 ,22047,22050,22047 ,0,0,0}, {37684,36549,37730 ,22050,22050,22047 ,0,0,0}, - {38303,37023,38305 ,22052,22053,18581 ,0,0,0}, {38303,34246,37023 ,22052,18601,22053 ,0,0,0}, - {34246,38303,34245 ,18601,22052,18601 ,0,0,0}, {37415,38305,37023 ,18581,18581,22053 ,0,0,0}, - {34253,38299,36706 ,18583,22054,22054 ,0,0,0}, {37582,37433,37560 ,22055,22055,22056 ,0,0,0}, - {36700,36699,37511 ,22056,22057,22057 ,0,0,0}, {38307,37415,37021 ,22058,18581,22058 ,0,0,0}, - {37021,37582,38307 ,22058,22055,22058 ,0,0,0}, {38305,37415,38307 ,18581,18581,22058 ,0,0,0}, - {37021,37433,37582 ,22058,22055,22055 ,0,0,0}, {36700,37560,37433 ,22056,22056,22055 ,0,0,0}, - {37560,36700,37511 ,22056,22056,22057 ,0,0,0}, {36706,34254,34253 ,22054,18583,18583 ,0,0,0}, - {38299,36699,36706 ,22054,22057,22054 ,0,0,0}, {37511,36699,38299 ,22057,22057,22054 ,0,0,0}, - {37543,34259,36262 ,22059,18609,21990 ,0,0,0}, {34259,34260,36262 ,18609,18609,21990 ,0,0,0}, - {36995,37543,36262 ,18573,22059,21990 ,0,0,0}, {37543,36995,37523 ,22059,18573,18573 ,0,0,0}, - {34239,38298,37412 ,18575,22060,22060 ,0,0,0}, {37541,36251,38707 ,22061,22061,22062 ,0,0,0}, - {37410,37017,37563 ,22062,22063,22063 ,0,0,0}, {37524,36995,36997 ,22064,18573,22065 ,0,0,0}, - {36997,37541,37524 ,22065,22061,22064 ,0,0,0}, {37523,36995,37524 ,18573,18573,22064 ,0,0,0}, - {36997,36251,37541 ,22065,22061,22061 ,0,0,0}, {37410,38707,36251 ,22062,22062,22061 ,0,0,0}, - {38707,37410,37563 ,22062,22062,22063 ,0,0,0}, {37412,34240,34239 ,22060,18575,18575 ,0,0,0}, - {38298,37017,37412 ,22060,22063,22060 ,0,0,0}, {37563,37017,38298 ,22063,22063,22060 ,0,0,0}, - {38199,36296,38197 ,22066,22067,18583 ,0,0,0}, {38199,34218,36296 ,22066,18588,22067 ,0,0,0}, - {34218,38199,34217 ,18588,22066,18588 ,0,0,0}, {36873,38197,36296 ,18583,18583,22067 ,0,0,0}, - {34225,38554,37287 ,18609,22068,22068 ,0,0,0}, {38201,36879,37984 ,22069,22069,22070 ,0,0,0}, - {37303,37288,37985 ,22070,20861,20861 ,0,0,0}, {38200,36873,36875 ,22071,18583,22071 ,0,0,0}, - {36875,38201,38200 ,22071,22069,22071 ,0,0,0}, {38197,36873,38200 ,18583,18583,22071 ,0,0,0}, - {36875,36879,38201 ,22071,22069,22069 ,0,0,0}, {37303,37984,36879 ,22070,22070,22069 ,0,0,0}, - {37984,37303,37985 ,22070,22070,20861 ,0,0,0}, {37287,34226,34225 ,22068,18609,18609 ,0,0,0}, - {38554,37288,37287 ,22068,20861,22068 ,0,0,0}, {37985,37288,38554 ,20861,20861,22068 ,0,0,0}, - {38739,34231,37310 ,22072,18594,22073 ,0,0,0}, {34231,34232,37310 ,18594,18594,22073 ,0,0,0}, - {37309,38739,37310 ,18575,22072,22073 ,0,0,0}, {38739,37309,38002 ,22072,18575,18575 ,0,0,0}, - {34211,38552,36231 ,18601,22074,18635 ,0,0,0}, {37992,36240,37556 ,22075,22075,22076 ,0,0,0}, - {36233,36882,37557 ,22076,22077,22077 ,0,0,0}, {37991,37309,36238 ,22078,18575,22078 ,0,0,0}, - {36238,37992,37991 ,22078,22075,22078 ,0,0,0}, {38002,37309,37991 ,18575,18575,22078 ,0,0,0}, - {36238,36240,37992 ,22078,22075,22075 ,0,0,0}, {36233,37556,36240 ,22076,22076,22075 ,0,0,0}, - {37556,36233,37557 ,22076,22076,22077 ,0,0,0}, {36231,34212,34211 ,18635,18601,18601 ,0,0,0}, - {38552,36882,36231 ,22074,22077,18635 ,0,0,0}, {37557,36882,38552 ,22077,22077,22074 ,0,0,0}, - {37708,36537,37711 ,22079,22080,18581 ,0,0,0}, {37708,34190,36537 ,22079,18601,22080 ,0,0,0}, - {34190,37708,34189 ,18601,22079,18601 ,0,0,0}, {36538,37711,36537 ,18581,18581,22080 ,0,0,0}, - {34197,38674,36975 ,18583,22081,22081 ,0,0,0}, {37712,36982,38266 ,22082,22082,22083 ,0,0,0}, - {36561,36565,38264 ,22083,18670,18670 ,0,0,0}, {38650,36538,36983 ,22084,18581,22084 ,0,0,0}, - {36983,37712,38650 ,22084,22082,22084 ,0,0,0}, {37711,36538,38650 ,18581,18581,22084 ,0,0,0}, - {36983,36982,37712 ,22084,22082,22082 ,0,0,0}, {36561,38266,36982 ,22083,22083,22082 ,0,0,0}, - {38266,36561,38264 ,22083,22083,18670 ,0,0,0}, {36975,34198,34197 ,22081,18583,18583 ,0,0,0}, - {38674,36565,36975 ,22081,18670,22081 ,0,0,0}, {38264,36565,38674 ,18670,18670,22081 ,0,0,0}, - {37715,34203,36576 ,22085,18609,324 ,0,0,0}, {34203,34204,36576 ,18609,18609,324 ,0,0,0}, - {36966,37715,36576 ,18573,22085,324 ,0,0,0}, {37715,36966,37695 ,22085,18573,18573 ,0,0,0}, - {34183,38262,37392 ,18575,22086,22086 ,0,0,0}, {37683,36981,38642 ,22087,22087,22088 ,0,0,0}, - {36978,36586,38643 ,22088,22089,22089 ,0,0,0}, {37693,36966,36965 ,22090,18573,22090 ,0,0,0}, - {36965,37683,37693 ,22090,22087,22090 ,0,0,0}, {37695,36966,37693 ,18573,18573,22090 ,0,0,0}, - {36965,36981,37683 ,22090,22087,22087 ,0,0,0}, {36978,38642,36981 ,22088,22088,22087 ,0,0,0}, - {38642,36978,38643 ,22088,22088,22089 ,0,0,0}, {37392,34184,34183 ,22086,18575,18575 ,0,0,0}, - {38262,36586,37392 ,22086,22089,22086 ,0,0,0}, {38643,36586,38262 ,22089,22089,22086 ,0,0,0}, - {37520,37005,37521 ,22091,22092,18583 ,0,0,0}, {37520,34162,37005 ,22091,18588,22092 ,0,0,0}, - {34162,37520,34161 ,18588,22091,18588 ,0,0,0}, {36683,37521,37005 ,18583,18583,22092 ,0,0,0}, - {34169,37533,37003 ,18609,22093,22093 ,0,0,0}, {38287,37428,38722 ,22094,22094,22095 ,0,0,0}, - {36685,37427,37539 ,22095,22096,22096 ,0,0,0}, {38721,36683,36684 ,22097,18583,22097 ,0,0,0}, - {36684,38287,38721 ,22097,22094,22097 ,0,0,0}, {37521,36683,38721 ,18583,18583,22097 ,0,0,0}, - {36684,37428,38287 ,22097,22094,22094 ,0,0,0}, {36685,38722,37428 ,22095,22095,22094 ,0,0,0}, - {38722,36685,37539 ,22095,22095,22096 ,0,0,0}, {37003,34170,34169 ,22093,18609,18609 ,0,0,0}, - {37533,37427,37003 ,22093,22096,22093 ,0,0,0}, {37539,37427,37533 ,22096,22096,22093 ,0,0,0}, - {38741,34175,37442 ,22098,18594,126 ,0,0,0}, {34175,34176,37442 ,18594,18594,126 ,0,0,0}, - {37441,38741,37442 ,18575,22098,126 ,0,0,0}, {38741,37441,37509 ,22098,18575,18575 ,0,0,0}, - {34155,38313,36682 ,18601,18635,18635 ,0,0,0}, {37518,36263,38703 ,22099,22099,22100 ,0,0,0}, - {37423,37424,38720 ,22100,22101,22101 ,0,0,0}, {37507,37441,36186 ,22102,18575,22102 ,0,0,0}, - {36186,37518,37507 ,22102,22099,22102 ,0,0,0}, {37509,37441,37507 ,18575,18575,22102 ,0,0,0}, - {36186,36263,37518 ,22102,22099,22099 ,0,0,0}, {37423,38703,36263 ,22100,22100,22099 ,0,0,0}, - {38703,37423,38720 ,22100,22100,22101 ,0,0,0}, {36682,34156,34155 ,18635,18601,18601 ,0,0,0}, - {38313,37424,36682 ,18635,22101,18635 ,0,0,0}, {38720,37424,38313 ,22101,22101,18635 ,0,0,0}, - {37970,36281,37971 ,22103,22104,18609 ,0,0,0}, {37970,34134,36281 ,22103,18573,22104 ,0,0,0}, - {34134,37970,34133 ,18573,22103,18573 ,0,0,0}, {36280,37971,36281 ,18609,18609,22104 ,0,0,0}, - {34141,38181,36876 ,18594,18653,18653 ,0,0,0}, {38210,36230,38208 ,22105,22105,22106 ,0,0,0}, - {36270,36249,37973 ,22106,22107,22107 ,0,0,0}, {38528,36280,36229 ,22108,18609,22108 ,0,0,0}, - {36229,38210,38528 ,22108,22105,22108 ,0,0,0}, {37971,36280,38528 ,18609,18609,22108 ,0,0,0}, - {36229,36230,38210 ,22108,22105,22105 ,0,0,0}, {36270,38208,36230 ,22106,22106,22105 ,0,0,0}, - {38208,36270,37973 ,22106,22106,22107 ,0,0,0}, {36876,34142,34141 ,18653,18594,18594 ,0,0,0}, - {38181,36249,36876 ,18653,22107,18653 ,0,0,0}, {37973,36249,38181 ,22107,22107,18653 ,0,0,0}, - {37976,34147,36264 ,22109,18581,22110 ,0,0,0}, {34147,34148,36264 ,18581,18581,22110 ,0,0,0}, - {36220,37976,36264 ,18601,22109,22110 ,0,0,0}, {37976,36220,37534 ,22109,18601,18601 ,0,0,0}, - {34127,38205,36248 ,18588,22111,22111 ,0,0,0}, {37550,36221,38569 ,22112,22112,22113 ,0,0,0}, - {36277,37312,38567 ,22113,22114,22114 ,0,0,0}, {37535,36220,36219 ,22115,18601,22115 ,0,0,0}, - {36219,37550,37535 ,22115,22112,22115 ,0,0,0}, {37534,36220,37535 ,18601,18601,22115 ,0,0,0}, - {36219,36221,37550 ,22115,22112,22112 ,0,0,0}, {36277,38569,36221 ,22113,22113,22112 ,0,0,0}, - {38569,36277,38567 ,22113,22113,22114 ,0,0,0}, {36248,34128,34127 ,22111,18588,18588 ,0,0,0}, - {38205,37312,36248 ,22111,22114,22111 ,0,0,0}, {38567,37312,38205 ,22114,22114,22111 ,0,0,0}, - {3171,36568,37746 ,22116,22117,18583 ,0,0,0}, {3171,34106,36568 ,22116,18588,22117 ,0,0,0}, - {34106,3171,34105 ,18588,22116,18588 ,0,0,0}, {36567,37746,36568 ,18583,18583,22117 ,0,0,0}, - {34113,38638,37351 ,18609,18683,18683 ,0,0,0}, {38254,37365,38634 ,22118,22118,22119 ,0,0,0}, - {36971,36571,38273 ,22119,22120,22120 ,0,0,0}, {38633,36567,36972 ,22121,18583,22121 ,0,0,0}, - {36972,38254,38633 ,22121,22118,22121 ,0,0,0}, {37746,36567,38633 ,18583,18583,22121 ,0,0,0}, - {36972,37365,38254 ,22121,22118,22118 ,0,0,0}, {36971,38634,37365 ,22119,22119,22118 ,0,0,0}, - {38634,36971,38273 ,22119,22119,22120 ,0,0,0}, {37351,34114,34113 ,18683,18609,18609 ,0,0,0}, - {38638,36571,37351 ,18683,22120,18683 ,0,0,0}, {38273,36571,38638 ,22120,22120,18683 ,0,0,0}, - {38742,34119,37357 ,22122,18594,22073 ,0,0,0}, {34119,34120,37357 ,18594,18594,22073 ,0,0,0}, - {37356,38742,37357 ,18575,22122,22073 ,0,0,0}, {38742,37356,37700 ,22122,18575,18575 ,0,0,0}, - {34099,38270,37361 ,18601,22123,22124 ,0,0,0}, {37705,37362,37720 ,22125,22125,22076 ,0,0,0}, - {36530,36566,38632 ,22076,22126,22126 ,0,0,0}, {37704,37356,36581 ,22127,18575,22127 ,0,0,0}, - {36581,37705,37704 ,22127,22125,22127 ,0,0,0}, {37700,37356,37704 ,18575,18575,22127 ,0,0,0}, - {36581,37362,37705 ,22127,22125,22125 ,0,0,0}, {36530,37720,37362 ,22076,22076,22125 ,0,0,0}, - {37720,36530,38632 ,22076,22076,22126 ,0,0,0}, {37361,34100,34099 ,22124,18601,18601 ,0,0,0}, - {38270,36566,37361 ,22123,22126,22124 ,0,0,0}, {38632,36566,38270 ,22126,22126,22123 ,0,0,0}, - {1435,36246,38315 ,22128,22129,18609 ,0,0,0}, {1435,34078,36246 ,22128,18573,22129 ,0,0,0}, - {34078,1435,34077 ,18573,22128,18573 ,0,0,0}, {36247,38315,36246 ,18609,18609,22129 ,0,0,0}, - {34085,38288,36244 ,18594,22130,22130 ,0,0,0}, {38678,37000,38314 ,22131,22131,22132 ,0,0,0}, - {36994,36998,37529 ,22132,22133,22133 ,0,0,0}, {38316,36247,36999 ,22134,18609,22134 ,0,0,0}, - {36999,38678,38316 ,22134,22131,22134 ,0,0,0}, {38315,36247,38316 ,18609,18609,22134 ,0,0,0}, - {36999,37000,38678 ,22134,22131,22131 ,0,0,0}, {36994,38314,37000 ,22132,22132,22131 ,0,0,0}, - {38314,36994,37529 ,22132,22132,22133 ,0,0,0}, {36244,34086,34085 ,22130,18594,18594 ,0,0,0}, - {38288,36998,36244 ,22130,22133,22130 ,0,0,0}, {37529,36998,38288 ,22133,22133,22130 ,0,0,0}, - {38714,34091,37398 ,22135,18581,21 ,0,0,0}, {34091,34092,37398 ,18581,18581,21 ,0,0,0}, - {36715,38714,37398 ,18601,22135,21 ,0,0,0}, {38714,36715,38286 ,22135,18601,18601 ,0,0,0}, - {34071,37528,36710 ,18588,22136,22136 ,0,0,0}, {37525,36198,38717 ,22137,22137,22138 ,0,0,0}, - {36704,37444,38715 ,22138,22139,22139 ,0,0,0}, {38285,36715,36716 ,22140,18601,22140 ,0,0,0}, - {36716,37525,38285 ,22140,22137,22140 ,0,0,0}, {38286,36715,38285 ,18601,18601,22140 ,0,0,0}, - {36716,36198,37525 ,22140,22137,22137 ,0,0,0}, {36704,38717,36198 ,22138,22138,22137 ,0,0,0}, - {38717,36704,38715 ,22138,22138,22139 ,0,0,0}, {36710,34072,34071 ,22136,18588,18588 ,0,0,0}, - {37528,37444,36710 ,22136,22139,22136 ,0,0,0}, {38715,37444,37528 ,22139,22139,22136 ,0,0,0}, - {4039,36265,38007 ,22141,22142,18594 ,0,0,0}, {4039,34050,36265 ,22141,18575,22142 ,0,0,0}, - {34050,4039,34049 ,18575,22141,18575 ,0,0,0}, {36222,38007,36265 ,18594,18594,22142 ,0,0,0}, - {34057,38531,36266 ,18581,22143,22143 ,0,0,0}, {38185,37262,38186 ,22144,22144,22145 ,0,0,0}, - {36267,36223,38180 ,22145,22146,22146 ,0,0,0}, {38006,36222,37263 ,22147,18594,22147 ,0,0,0}, - {37263,38185,38006 ,22147,22144,22147 ,0,0,0}, {38007,36222,38006 ,18594,18594,22147 ,0,0,0}, - {37263,37262,38185 ,22147,22144,22144 ,0,0,0}, {36267,38186,37262 ,22145,22145,22144 ,0,0,0}, - {38186,36267,38180 ,22145,22145,22146 ,0,0,0}, {36266,34058,34057 ,22143,18581,18581 ,0,0,0}, - {38531,36223,36266 ,22143,22146,22143 ,0,0,0}, {38180,36223,38531 ,22146,22146,22143 ,0,0,0}, - {38744,34063,37267 ,22148,18583,22149 ,0,0,0}, {34063,34064,37267 ,18583,18583,22149 ,0,0,0}, - {37266,38744,37267 ,18588,22148,22149 ,0,0,0}, {38744,37266,37969 ,22148,18588,18588 ,0,0,0}, - {34043,37978,37261 ,18573,22150,22150 ,0,0,0}, {38532,36911,37980 ,22151,22151,22152 ,0,0,0}, - {36224,36226,37981 ,22152,22153,22153 ,0,0,0}, {37968,37266,36268 ,22154,18588,22154 ,0,0,0}, - {36268,38532,37968 ,22154,22151,22154 ,0,0,0}, {37969,37266,37968 ,18588,18588,22154 ,0,0,0}, - {36268,36911,38532 ,22154,22151,22151 ,0,0,0}, {36224,37980,36911 ,22152,22152,22151 ,0,0,0}, - {37980,36224,37981 ,22152,22152,22153 ,0,0,0}, {37261,34044,34043 ,22150,18573,18573 ,0,0,0}, - {37978,36226,37261 ,22150,22153,22150 ,0,0,0}, {37981,36226,37978 ,22153,22153,22150 ,0,0,0} -}; -static GLfloat vertices [38747][3] = { - {-0.023239f,-0.071786f,0.0322314f},{-0.0231144f,-0.0708235f,0.0340958f},{-0.023239f,-0.0717882f,0.0340958f}, - {-0.0231106f,-0.0727502f,0.0322314f},{-0.0231103f,-0.0727513f,0.0340958f},{-0.0227371f,-0.0736484f,0.0322314f}, - {-0.0227371f,-0.0736484f,0.0340958f},{-0.0231141f,-0.0708224f,0.0322314f},{-0.0227444f,-0.0699238f,0.0340958f}, - {-0.0227444f,-0.0699238f,0.0322314f},{-0.0225127f,-0.00424291f,0.0322314f},{-0.0216035f,-0.00385992f,0.0340958f}, - {-0.0225146f,-0.00424405f,0.0340958f},{-0.0232912f,-0.00485238f,0.0322314f},{-0.023292f,-0.00485321f,0.0340958f}, - {-0.0238822f,-0.00564511f,0.0322314f},{-0.0238822f,-0.00564511f,0.0340958f},{-0.0216024f,-0.00385961f,0.0322314f}, - {-0.0206235f,-0.00372882f,0.0340958f},{-0.0206235f,-0.00372882f,0.0322314f},{-0.0243511f,0.0075482f,0.0322314f}, - {-0.024197f,0.00852259f,0.0340958f},{-0.0243512f,0.00754595f,0.0340958f},{-0.024244f,0.0065653f,0.0322314f}, - {-0.0242437f,0.00656417f,0.0340958f},{-0.0238822f,0.00564511f,0.0322314f},{-0.0238822f,0.00564511f,0.0340958f}, - {-0.0241967f,0.00852371f,0.0322314f},{-0.0237915f,0.00942436f,0.0340958f},{-0.0237915f,0.00942436f,0.0322314f}, - {-0.0213716f,0.0750107f,0.0322314f},{-0.0204747f,0.0753817f,0.0340958f},{-0.0213735f,0.0750096f,0.0340958f}, - {-0.022144f,0.0744194f,0.0322314f},{-0.0221448f,0.0744186f,0.0340958f},{-0.0227371f,0.0736484f,0.0322314f}, - {-0.0227371f,0.0736484f,0.0340958f},{-0.0204736f,0.075382f,0.0322314f},{-0.0195103f,0.0755086f,0.0340958f}, - {-0.0195103f,0.0755086f,0.0322314f},{-0.0391526f,-0.00279661f,0.0322314f},{-0.0397007f,-0.00274238f,0.0340958f}, - {-0.0391526f,-0.00279661f,0.0340958f},{-0.0380824f,-0.00258373f,0.0340958f},{-0.0380824f,-0.00258373f,0.0322314f}, - {-0.0386045f,-0.00274238f,0.0340958f},{-0.0386045f,-0.00274238f,0.0322314f},{-0.037601f,-0.00232674f,0.0322314f}, - {-0.0371751f,-0.00197751f,0.0322314f},{-0.0371751f,-0.00197751f,0.0340958f},{-0.0368259f,-0.00155157f,0.0322314f}, - {-0.0368259f,-0.00155157f,0.0340958f},{-0.037601f,-0.00232674f,0.0340958f},{-0.036356f,3.97423e-017f,0.0322314f}, - {-0.0364102f,-0.000548134f,0.0322314f},{-0.0364102f,-0.000548134f,0.0340958f},{-0.0365689f,-0.00107022f,0.0340958f}, - {-0.0365689f,-0.00107022f,0.0322314f},{-0.036356f,3.97423e-017f,0.0340958f},{-0.0397007f,-0.00274238f,0.0322314f}, - {-0.0402228f,-0.00258373f,0.0340958f},{-0.0402228f,-0.00258373f,0.0322314f},{-0.0407042f,-0.00232674f,0.0322314f}, - {-0.0407042f,-0.00232674f,0.0340958f},{-0.0411301f,-0.00197751f,0.0322314f},{-0.0411301f,-0.00197751f,0.0340958f}, - {-0.0414793f,-0.00155157f,0.0340958f},{-0.0414793f,-0.00155157f,0.0322314f},{-0.0417363f,-0.00107022f,0.0322314f}, - {-0.0417363f,-0.00107022f,0.0340958f},{-0.041895f,-0.000548134f,0.0322314f},{-0.041895f,-0.000548134f,0.0340958f}, - {-0.0419492f,3.97423e-017f,0.0340958f},{-0.0419492f,3.97423e-017f,0.0322314f},{0.0391526f,-0.00279661f,0.0322314f}, - {0.0386045f,-0.00274238f,0.0340958f},{0.0391526f,-0.00279661f,0.0340958f},{0.0402228f,-0.00258373f,0.0340958f}, - {0.0402228f,-0.00258373f,0.0322314f},{0.0397007f,-0.00274238f,0.0340958f},{0.0397007f,-0.00274238f,0.0322314f}, - {0.0407042f,-0.00232674f,0.0322314f},{0.0411301f,-0.00197751f,0.0322314f},{0.0411301f,-0.00197751f,0.0340958f}, - {0.0414793f,-0.00155157f,0.0322314f},{0.0414793f,-0.00155157f,0.0340958f},{0.0407042f,-0.00232674f,0.0340958f}, - {0.0419492f,3.97423e-017f,0.0322314f},{0.041895f,-0.000548134f,0.0322314f},{0.041895f,-0.000548134f,0.0340958f}, - {0.0417363f,-0.00107022f,0.0340958f},{0.0417363f,-0.00107022f,0.0322314f},{0.0419492f,3.97423e-017f,0.0340958f}, - {0.0386045f,-0.00274238f,0.0322314f},{0.0380824f,-0.00258373f,0.0340958f},{0.0380824f,-0.00258373f,0.0322314f}, - {0.037601f,-0.00232674f,0.0322314f},{0.037601f,-0.00232674f,0.0340958f},{0.0371751f,-0.00197751f,0.0322314f}, - {0.0371751f,-0.00197751f,0.0340958f},{0.0368259f,-0.00155157f,0.0340958f},{0.0368259f,-0.00155157f,0.0322314f}, - {0.0365689f,-0.00107022f,0.0322314f},{0.0365689f,-0.00107022f,0.0340958f},{0.0364102f,-0.000548134f,0.0322314f}, - {0.0364102f,-0.000548134f,0.0340958f},{0.036356f,3.97423e-017f,0.0340958f},{0.036356f,3.97423e-017f,0.0322314f}, - {-0.0391526f,0.0783052f,0.0322314f},{-0.0397007f,0.0783594f,0.0340958f},{-0.0391526f,0.0783052f,0.0340958f}, - {-0.0380824f,0.0785181f,0.0340958f},{-0.0380824f,0.0785181f,0.0322314f},{-0.0386045f,0.0783594f,0.0340958f}, - {-0.0386045f,0.0783594f,0.0322314f},{-0.037601f,0.0787751f,0.0322314f},{-0.0371751f,0.0791243f,0.0322314f}, - {-0.0371751f,0.0791243f,0.0340958f},{-0.0368259f,0.0795502f,0.0322314f},{-0.0368259f,0.0795502f,0.0340958f}, - {-0.037601f,0.0787751f,0.0340958f},{-0.036356f,0.0811018f,0.0322314f},{-0.0364102f,0.0805537f,0.0322314f}, - {-0.0364102f,0.0805537f,0.0340958f},{-0.0365689f,0.0800316f,0.0340958f},{-0.0365689f,0.0800316f,0.0322314f}, - {-0.036356f,0.0811018f,0.0340958f},{-0.0397007f,0.0783594f,0.0322314f},{-0.0402228f,0.0785181f,0.0340958f}, - {-0.0402228f,0.0785181f,0.0322314f},{-0.0407042f,0.0787751f,0.0322314f},{-0.0407042f,0.0787751f,0.0340958f}, - {-0.0411301f,0.0791243f,0.0322314f},{-0.0411301f,0.0791243f,0.0340958f},{-0.0414793f,0.0795502f,0.0340958f}, - {-0.0414793f,0.0795502f,0.0322314f},{-0.0417363f,0.0800316f,0.0322314f},{-0.0417363f,0.0800316f,0.0340958f}, - {-0.041895f,0.0805537f,0.0322314f},{-0.041895f,0.0805537f,0.0340958f},{-0.0419492f,0.0811018f,0.0340958f}, - {-0.0419492f,0.0811018f,0.0322314f},{0.0391526f,0.0783052f,0.0322314f},{0.0386045f,0.0783594f,0.0340958f}, - {0.0391526f,0.0783052f,0.0340958f},{0.0402228f,0.0785181f,0.0340958f},{0.0402228f,0.0785181f,0.0322314f}, - {0.0397007f,0.0783594f,0.0340958f},{0.0397007f,0.0783594f,0.0322314f},{0.0407042f,0.0787751f,0.0322314f}, - {0.0411301f,0.0791243f,0.0322314f},{0.0411301f,0.0791243f,0.0340958f},{0.0414793f,0.0795502f,0.0322314f}, - {0.0414793f,0.0795502f,0.0340958f},{0.0407042f,0.0787751f,0.0340958f},{0.0419492f,0.0811018f,0.0322314f}, - {0.041895f,0.0805537f,0.0322314f},{0.041895f,0.0805537f,0.0340958f},{0.0417363f,0.0800316f,0.0340958f}, - {0.0417363f,0.0800316f,0.0322314f},{0.0419492f,0.0811018f,0.0340958f},{0.0386045f,0.0783594f,0.0322314f}, - {0.0380824f,0.0785181f,0.0340958f},{0.0380824f,0.0785181f,0.0322314f},{0.037601f,0.0787751f,0.0322314f}, - {0.037601f,0.0787751f,0.0340958f},{0.0371751f,0.0791243f,0.0322314f},{0.0371751f,0.0791243f,0.0340958f}, - {0.0368259f,0.0795502f,0.0340958f},{0.0368259f,0.0795502f,0.0322314f},{0.0365689f,0.0800316f,0.0322314f}, - {0.0365689f,0.0800316f,0.0340958f},{0.0364102f,0.0805537f,0.0322314f},{0.0364102f,0.0805537f,0.0340958f}, - {0.036356f,0.0811018f,0.0340958f},{0.036356f,0.0811018f,0.0322314f},{0.0391526f,-0.0838984f,0.0322314f}, - {0.0386045f,-0.0838442f,0.0340958f},{0.0391526f,-0.0838984f,0.0340958f},{0.0402228f,-0.0836855f,0.0340958f}, - {0.0402228f,-0.0836855f,0.0322314f},{0.0397007f,-0.0838442f,0.0340958f},{0.0397007f,-0.0838442f,0.0322314f}, - {0.0407042f,-0.0834285f,0.0322314f},{0.0411301f,-0.0830793f,0.0322314f},{0.0411301f,-0.0830793f,0.0340958f}, - {0.0414793f,-0.0826534f,0.0322314f},{0.0414793f,-0.0826534f,0.0340958f},{0.0407042f,-0.0834285f,0.0340958f}, - {0.0419492f,-0.0811018f,0.0322314f},{0.041895f,-0.0816499f,0.0322314f},{0.041895f,-0.0816499f,0.0340958f}, - {0.0417363f,-0.082172f,0.0340958f},{0.0417363f,-0.082172f,0.0322314f},{0.0419492f,-0.0811018f,0.0340958f}, - {0.0386045f,-0.0838442f,0.0322314f},{0.0380824f,-0.0836855f,0.0340958f},{0.0380824f,-0.0836855f,0.0322314f}, - {0.037601f,-0.0834285f,0.0322314f},{0.037601f,-0.0834285f,0.0340958f},{0.0371751f,-0.0830793f,0.0322314f}, - {0.0371751f,-0.0830793f,0.0340958f},{0.0368259f,-0.0826534f,0.0340958f},{0.0368259f,-0.0826534f,0.0322314f}, - {0.0365689f,-0.082172f,0.0322314f},{0.0365689f,-0.082172f,0.0340958f},{0.0364102f,-0.0816499f,0.0322314f}, - {0.0364102f,-0.0816499f,0.0340958f},{0.036356f,-0.0811018f,0.0340958f},{0.036356f,-0.0811018f,0.0322314f}, - {-0.0391526f,-0.0838984f,0.0322314f},{-0.0397007f,-0.0838442f,0.0340958f},{-0.0391526f,-0.0838984f,0.0340958f}, - {-0.0380824f,-0.0836855f,0.0340958f},{-0.0380824f,-0.0836855f,0.0322314f},{-0.0386045f,-0.0838442f,0.0340958f}, - {-0.0386045f,-0.0838442f,0.0322314f},{-0.037601f,-0.0834285f,0.0322314f},{-0.0371751f,-0.0830793f,0.0322314f}, - {-0.0371751f,-0.0830793f,0.0340958f},{-0.0368259f,-0.0826534f,0.0322314f},{-0.0368259f,-0.0826534f,0.0340958f}, - {-0.037601f,-0.0834285f,0.0340958f},{-0.036356f,-0.0811018f,0.0322314f},{-0.0364102f,-0.0816499f,0.0322314f}, - {-0.0364102f,-0.0816499f,0.0340958f},{-0.0365689f,-0.082172f,0.0340958f},{-0.0365689f,-0.082172f,0.0322314f}, - {-0.036356f,-0.0811018f,0.0340958f},{-0.0397007f,-0.0838442f,0.0322314f},{-0.0402228f,-0.0836855f,0.0340958f}, - {-0.0402228f,-0.0836855f,0.0322314f},{-0.0407042f,-0.0834285f,0.0322314f},{-0.0407042f,-0.0834285f,0.0340958f}, - {-0.0411301f,-0.0830793f,0.0322314f},{-0.0411301f,-0.0830793f,0.0340958f},{-0.0414793f,-0.0826534f,0.0340958f}, - {-0.0414793f,-0.0826534f,0.0322314f},{-0.0417363f,-0.082172f,0.0322314f},{-0.0417363f,-0.082172f,0.0340958f}, - {-0.041895f,-0.0816499f,0.0322314f},{-0.041895f,-0.0816499f,0.0340958f},{-0.0419492f,-0.0811018f,0.0340958f}, - {-0.0419492f,-0.0811018f,0.0322314f},{0.0225785f,-0.0258241f,0.0322314f},{0.0237254f,-0.0222932f,0.0322314f}, - {0.0237253f,-0.0222933f,0.0340958f},{0.0216792f,-0.0294283f,0.0322314f},{0.0225785f,-0.0258242f,0.0340958f}, - {0.0216792f,-0.0294286f,0.0340958f},{0.0210317f,-0.0330928f,0.0322314f},{0.0206399f,-0.0368049f,0.0340958f}, - {0.0205085f,-0.0405509f,0.0322314f},{0.02064f,-0.0368047f,0.0322314f},{0.0210316f,-0.0330931f,0.0340958f}, - {0.0205085f,-0.0405509f,0.0340958f},{0.0251155f,-0.0188485f,0.0340958f},{0.0267447f,-0.0155029f,0.0340958f}, - {0.0251156f,-0.0188483f,0.0322314f},{0.0267448f,-0.0155026f,0.0322314f},{0.0286089f,-0.0122693f,0.0340958f}, - {0.028609f,-0.0122691f,0.0322314f},{0.0307038f,-0.00916071f,0.0340958f},{0.0307038f,-0.00916071f,0.0322314f}, - {-0.03984f,-0.0885276f,0.0340958f},{-0.0398371f,-0.0885279f,0.0322314f},{-0.0387004f,-0.0885456f,0.0322314f}, - {-0.0409568f,-0.0883379f,0.0322314f},{-0.0409588f,-0.0883374f,0.0340958f},{-0.0420378f,-0.0879786f,0.0340958f}, - {-0.042035f,-0.0879797f,0.0322314f},{-0.0430486f,-0.0874608f,0.0340958f},{-0.043047f,-0.0874618f,0.0322314f}, - {-0.0439672f,-0.0867969f,0.0322314f},{-0.0439685f,-0.086796f,0.0340958f},{-0.0447784f,-0.0859974f,0.0340958f}, - {-0.0447773f,-0.0859985f,0.0322314f},{-0.045456f,-0.0850872f,0.0340958f},{-0.0454557f,-0.0850877f,0.0322314f}, - {-0.0459883f,-0.0840833f,0.0340958f},{-0.0459883f,-0.0840833f,0.0322314f},{-0.0387033f,-0.0885458f,0.0340958f}, - {-0.037576f,-0.0883909f,0.0322314f},{-0.0375781f,-0.0883913f,0.0340958f},{-0.0364863f,-0.0880664f,0.0322314f}, - {-0.0364891f,-0.0880674f,0.0340958f},{-0.0354613f,-0.0875818f,0.0340958f},{-0.0354596f,-0.0875808f,0.0322314f}, - {-0.0345192f,-0.0869454f,0.0322314f},{-0.0345204f,-0.0869463f,0.0340958f},{-0.0336844f,-0.0861728f,0.0322314f}, - {-0.0336855f,-0.0861739f,0.0340958f},{-0.0329787f,-0.085285f,0.0340958f},{-0.0329784f,-0.0852846f,0.0322314f}, - {-0.0324146f,-0.0842979f,0.0322314f},{-0.0324146f,-0.0842979f,0.0340958f},{-0.0440592f,-0.00561614f,0.0322314f}, - {-0.0430328f,-0.00636862f,0.0322314f},{-0.0440603f,-0.00561515f,0.0340958f},{-0.044941f,-0.00470215f,0.0340958f}, - {-0.0449406f,-0.00470266f,0.0322314f},{-0.0456552f,-0.0036514f,0.0340958f},{-0.0456542f,-0.00365287f,0.0322314f}, - {-0.046181f,-0.00249363f,0.0322314f},{-0.0461811f,-0.00249326f,0.0340958f},{-0.046502f,-0.00126624f,0.0340958f}, - {-0.0465017f,-0.00126733f,0.0322314f},{-0.0466102f,3.97423e-017f,0.0340958f},{-0.0466102f,3.97423e-017f,0.0322314f}, - {-0.0430341f,-0.00636786f,0.0340958f},{-0.0418973f,-0.00693419f,0.0322314f},{-0.0418979f,-0.00693393f,0.0340958f}, - {-0.0406822f,-0.00729899f,0.0340958f},{-0.0406805f,-0.00729943f,0.0322314f},{-0.0394178f,-0.00745289f,0.0322314f}, - {-0.0394182f,-0.00745292f,0.0340958f},{-0.0381511f,-0.00739011f,0.0322314f},{-0.0381522f,-0.00739019f,0.0340958f}, - {-0.0369109f,-0.00711273f,0.0322314f},{-0.0369109f,-0.00711273f,0.0340958f},{-0.0450626f,0.0765535f,0.0340958f}, - {-0.0450608f,0.0765512f,0.0322314f},{-0.0443005f,0.075706f,0.0322314f},{-0.0456834f,0.0775011f,0.0322314f}, - {-0.0456844f,0.0775029f,0.0340958f},{-0.0461555f,0.0785378f,0.0340958f},{-0.0461544f,0.078535f,0.0322314f}, - {-0.0464637f,0.0796309f,0.0340958f},{-0.0464633f,0.079629f,0.0322314f},{-0.0466021f,0.0807558f,0.0322314f}, - {-0.0466023f,0.0807574f,0.0340958f},{-0.046568f,0.0818943f,0.0340958f},{-0.0465681f,0.0818927f,0.0322314f}, - {-0.046362f,0.0830101f,0.0340958f},{-0.0463621f,0.0830096f,0.0322314f},{-0.0459883f,0.0840833f,0.0340958f}, - {-0.0459883f,0.0840833f,0.0322314f},{-0.0443026f,0.0757081f,0.0340958f},{-0.0434222f,0.0749873f,0.0322314f}, - {-0.0434238f,0.0749885f,0.0340958f},{-0.0424429f,0.0744094f,0.0322314f},{-0.0424456f,0.0744107f,0.0340958f}, - {-0.0413904f,0.0739879f,0.0340958f},{-0.0413886f,0.0739873f,0.0322314f},{-0.040283f,0.0737303f,0.0322314f}, - {-0.0402846f,0.0737307f,0.0340958f},{-0.0391489f,0.0736442f,0.0322314f},{-0.0391504f,0.0736443f,0.0340958f}, - {-0.0380181f,0.073731f,0.0340958f},{-0.0380175f,0.073731f,0.0322314f},{-0.0369109f,0.0739891f,0.0322314f}, - {-0.0369109f,0.0739891f,0.0340958f},{0.0225785f,0.0552777f,0.0322314f},{0.0237254f,0.0588086f,0.0322314f}, - {0.0237253f,0.0588085f,0.0340958f},{0.0216792f,0.0516735f,0.0322314f},{0.0225785f,0.0552776f,0.0340958f}, - {0.0216792f,0.0516732f,0.0340958f},{0.0210317f,0.048009f,0.0322314f},{0.0206399f,0.0442969f,0.0340958f}, - {0.0205085f,0.0405509f,0.0322314f},{0.02064f,0.0442971f,0.0322314f},{0.0210316f,0.0480087f,0.0340958f}, - {0.0205085f,0.0405509f,0.0340958f},{0.0251155f,0.0622533f,0.0340958f},{0.0267447f,0.0655989f,0.0340958f}, - {0.0251156f,0.0622535f,0.0322314f},{0.0267448f,0.0655992f,0.0322314f},{0.0286089f,0.0688326f,0.0340958f}, - {0.028609f,0.0688327f,0.0322314f},{0.0307038f,0.0719411f,0.0340958f},{0.0307038f,0.0719411f,0.0322314f}, - {0.0167768f,-0.0552561f,0.0340958f},{0.0159195f,-0.0513911f,0.0340958f},{0.0167768f,-0.0552561f,0.0322314f}, - {0.0159195f,-0.0513911f,0.0322314f},{0.0153227f,-0.0474729f,0.0340958f},{0.0149897f,-0.0435148f,0.0340958f}, - {0.0153227f,-0.0474729f,0.0322314f},{0.0149241f,-0.0395297f,0.0340958f},{0.0149897f,-0.0435148f,0.0322314f}, - {0.0149241f,-0.0395297f,0.0322314f},{0.0178914f,-0.059055f,0.0322314f},{0.0192597f,-0.0627747f,0.0322314f}, - {0.0178914f,-0.059055f,0.0340958f},{0.0208785f,-0.066402f,0.0322314f},{0.0192597f,-0.0627747f,0.0340958f}, - {0.0208785f,-0.066402f,0.0340958f},{0.0227444f,-0.0699238f,0.0322314f},{0.0227444f,-0.0699238f,0.0340958f}, - {0.0173199f,0.0238768f,0.0340958f},{0.0163293f,0.0277099f,0.0340958f},{0.0173199f,0.0238768f,0.0322314f}, - {0.0163293f,0.0277099f,0.0322314f},{0.0155973f,0.031605f,0.0340958f},{0.0151276f,0.0355493f,0.0340958f}, - {0.0155973f,0.031605f,0.0322314f},{0.0149241f,0.0395297f,0.0340958f},{0.0151276f,0.0355493f,0.0322314f}, - {0.0149241f,0.0395297f,0.0322314f},{0.0185653f,0.0201187f,0.0322314f},{0.0200615f,0.0164487f,0.0322314f}, - {0.0185653f,0.0201187f,0.0340958f},{0.0218049f,0.0128796f,0.0322314f},{0.0200615f,0.0164487f,0.0340958f}, - {0.0218049f,0.0128796f,0.0340958f},{0.0237915f,0.00942436f,0.0322314f},{0.0237915f,0.00942436f,0.0340958f}, - {0.0149897f,0.0435148f,0.0340958f},{0.0167768f,0.0552561f,0.0340958f},{0.0159195f,0.0513911f,0.0322314f}, - {0.0159195f,0.0513911f,0.0340958f},{0.0153227f,0.0474729f,0.0340958f},{0.0153227f,0.0474729f,0.0322314f}, - {0.0149897f,0.0435148f,0.0322314f},{0.0192597f,0.0627747f,0.0322314f},{0.0192597f,0.0627747f,0.0340958f}, - {0.0208785f,0.066402f,0.0340958f},{0.0167768f,0.0552561f,0.0322314f},{0.0178914f,0.059055f,0.0340958f}, - {0.0178914f,0.059055f,0.0322314f},{0.0227444f,0.0699238f,0.0340958f},{0.0208785f,0.066402f,0.0322314f}, - {0.0227444f,0.0699238f,0.0322314f},{-0.0206235f,0.00372882f,0.0322314f},{-0.0206235f,0.00372882f,0.0340958f}, - {0.0206235f,0.00372882f,0.0340958f},{0.0206235f,0.00372882f,0.0322314f},{-0.0149256f,0.0416576f,0.0340958f}, - {-0.0149993f,0.0374031f,0.0340958f},{-0.0149257f,0.0416577f,0.0322314f},{-0.0151577f,0.0458938f,0.0322314f}, - {-0.0151576f,0.0458937f,0.0340958f},{-0.0156914f,0.0500904f,0.0322314f},{-0.0156914f,0.0500902f,0.0340958f}, - {-0.0165229f,0.0542313f,0.0340958f},{-0.016523f,0.0542315f,0.0322314f},{-0.0176481f,0.0583013f,0.0322314f}, - {-0.017648f,0.0583011f,0.0340958f},{-0.0190628f,0.0622838f,0.0322314f},{-0.0190627f,0.0622837f,0.0340958f}, - {-0.0207629f,0.0661632f,0.0340958f},{-0.0207629f,0.0661633f,0.0322314f},{-0.0227444f,0.0699238f,0.0322314f}, - {-0.0227444f,0.0699238f,0.0340958f},{-0.0149993f,0.0374031f,0.0322314f},{-0.0153777f,0.0331776f,0.0322314f}, - {-0.0153777f,0.0331775f,0.0340958f},{-0.0160564f,0.0290019f,0.0340958f},{-0.0160564f,0.0290021f,0.0322314f}, - {-0.0170307f,0.024892f,0.0340958f},{-0.0170307f,0.0248922f,0.0322314f},{-0.018296f,0.0208638f,0.0322314f}, - {-0.018296f,0.0208636f,0.0340958f},{-0.0198477f,0.0169324f,0.0340958f},{-0.0198476f,0.0169326f,0.0322314f}, - {-0.021681f,0.0131141f,0.0340958f},{-0.021681f,0.0131142f,0.0322314f},{0.0151276f,-0.0355493f,0.0340958f}, - {0.0173199f,-0.0238768f,0.0340958f},{0.0163293f,-0.0277099f,0.0322314f},{0.0163293f,-0.0277099f,0.0340958f}, - {0.0155973f,-0.031605f,0.0340958f},{0.0155973f,-0.031605f,0.0322314f},{0.0151276f,-0.0355493f,0.0322314f}, - {0.0200615f,-0.0164487f,0.0322314f},{0.0200615f,-0.0164487f,0.0340958f},{0.0218049f,-0.0128796f,0.0340958f}, - {0.0173199f,-0.0238768f,0.0322314f},{0.0185653f,-0.0201187f,0.0340958f},{0.0185653f,-0.0201187f,0.0322314f}, - {0.0237915f,-0.00942436f,0.0340958f},{0.0218049f,-0.0128796f,0.0322314f},{0.0237915f,-0.00942436f,0.0322314f}, - {-0.0195103f,-0.0755086f,0.0322314f},{0.0195103f,-0.0755086f,0.0340958f},{0.0195103f,-0.0755086f,0.0322314f}, - {-0.0195103f,-0.0755086f,0.0340958f},{-0.0149993f,-0.0374031f,0.0340958f},{-0.0149257f,-0.0416576f,0.0340958f}, - {-0.0149993f,-0.0374031f,0.0322314f},{-0.0153777f,-0.0331775f,0.0322314f},{-0.0153777f,-0.0331776f,0.0340958f}, - {-0.0160564f,-0.0290019f,0.0322314f},{-0.0160564f,-0.0290021f,0.0340958f},{-0.0170307f,-0.0248922f,0.0340958f}, - {-0.0170307f,-0.024892f,0.0322314f},{-0.018296f,-0.0208636f,0.0322314f},{-0.018296f,-0.0208638f,0.0340958f}, - {-0.0198477f,-0.0169324f,0.0322314f},{-0.0198476f,-0.0169326f,0.0340958f},{-0.021681f,-0.0131142f,0.0340958f}, - {-0.021681f,-0.0131141f,0.0322314f},{-0.0237915f,-0.00942436f,0.0322314f},{-0.0237915f,-0.00942436f,0.0340958f}, - {-0.0149256f,-0.0416576f,0.0322314f},{-0.0151576f,-0.0458937f,0.0322314f},{-0.0151577f,-0.0458938f,0.0340958f}, - {-0.0156914f,-0.0500904f,0.0340958f},{-0.0156914f,-0.0500902f,0.0322314f},{-0.016523f,-0.0542315f,0.0340958f}, - {-0.0165229f,-0.0542313f,0.0322314f},{-0.017648f,-0.0583011f,0.0322314f},{-0.0176481f,-0.0583013f,0.0340958f}, - {-0.0190628f,-0.0622838f,0.0340958f},{-0.0190627f,-0.0622837f,0.0322314f},{-0.0207629f,-0.0661633f,0.0340958f}, - {-0.0207629f,-0.0661632f,0.0322314f},{0.02064f,0.0368047f,0.0340958f},{0.0206399f,0.0368049f,0.0322314f}, - {0.0225785f,0.0258241f,0.0340958f},{0.0225785f,0.0258242f,0.0322314f},{0.0216792f,0.0294283f,0.0340958f}, - {0.0216792f,0.0294286f,0.0322314f},{0.0210316f,0.0330931f,0.0322314f},{0.0210317f,0.0330928f,0.0340958f}, - {0.0267447f,0.0155029f,0.0322314f},{0.0251156f,0.0188483f,0.0340958f},{0.0267448f,0.0155026f,0.0340958f}, - {0.0237253f,0.0222933f,0.0322314f},{0.0237254f,0.0222932f,0.0340958f},{0.0251155f,0.0188485f,0.0322314f}, - {0.028609f,0.0122691f,0.0340958f},{0.0286089f,0.0122693f,0.0322314f},{0.0307038f,0.00916071f,0.0340958f}, - {0.0307038f,0.00916071f,0.0322314f},{0.0462025f,0.0835337f,0.0340958f},{0.0457312f,0.0846141f,0.0322314f}, - {0.0457326f,0.0846116f,0.0340958f},{0.0450998f,0.0856014f,0.0340958f},{0.0450987f,0.085603f,0.0322314f}, - {0.044317f,0.0864818f,0.0322314f},{0.0443187f,0.0864801f,0.0340958f},{0.0434093f,0.0872252f,0.0340958f}, - {0.0434083f,0.0872259f,0.0322314f},{0.0423945f,0.087818f,0.0322314f},{0.0423947f,0.0878178f,0.0340958f}, - {0.0412975f,0.0882443f,0.0322314f},{0.041298f,0.0882442f,0.0340958f},{0.040151f,0.0884923f,0.0340958f}, - {0.0401493f,0.0884924f,0.0322314f},{0.0389772f,0.0885573f,0.0340958f},{0.0389749f,0.0885572f,0.0322314f}, - {0.0378063f,0.0884369f,0.0322314f},{0.0378083f,0.0884373f,0.0340958f},{0.0366734f,0.0881351f,0.0340958f}, - {0.0366703f,0.0881341f,0.0322314f},{0.0355963f,0.0876568f,0.0322314f},{0.0355984f,0.087658f,0.0340958f}, - {0.0346116f,0.0870176f,0.0322314f},{0.0346134f,0.0870188f,0.0340958f},{0.0337395f,0.0862314f,0.0340958f}, - {0.0337379f,0.0862299f,0.0322314f},{0.0330004f,0.0853169f,0.0322314f},{0.0330008f,0.0853175f,0.0340958f}, - {0.0324146f,0.0842979f,0.0322314f},{0.0324146f,0.0842979f,0.0340958f},{0.0462016f,0.0835364f,0.0322314f}, - {0.0464969f,0.0823973f,0.0340958f},{0.0464965f,0.0823992f,0.0322314f},{0.0466091f,0.0812265f,0.0340958f}, - {0.046609f,0.0812289f,0.0322314f},{0.0465363f,0.0800543f,0.0340958f},{0.0465364f,0.0800555f,0.0322314f}, - {0.0462805f,0.0789088f,0.0322314f},{0.0462804f,0.0789085f,0.0340958f},{0.0458466f,0.0778144f,0.0340958f}, - {0.0458468f,0.0778149f,0.0322314f},{0.0452473f,0.0768042f,0.0340958f},{0.0452483f,0.0768055f,0.0322314f}, - {0.0444957f,0.0758993f,0.0340958f},{0.0444974f,0.075901f,0.0322314f},{0.0436142f,0.075126f,0.0322314f}, - {0.0436125f,0.0751248f,0.0340958f},{0.0426177f,0.0744982f,0.0340958f},{0.0426206f,0.0744998f,0.0322314f}, - {0.0415395f,0.0740365f,0.0322314f},{0.0415373f,0.0740358f,0.0340958f},{0.0403988f,0.073749f,0.0340958f}, - {0.0404009f,0.0737495f,0.0322314f},{0.0392271f,0.0736446f,0.0340958f},{0.0392293f,0.0736447f,0.0322314f}, - {0.038057f,0.0737251f,0.0322314f},{0.0380562f,0.0737252f,0.0340958f},{0.0369109f,0.0739891f,0.0340958f}, - {0.0369109f,0.0739891f,0.0322314f},{0.027361f,0.0811018f,0.0322314f},{-0.027361f,0.0811018f,0.0322314f}, - {-0.027361f,0.0811018f,0.0340958f},{0.027361f,0.0811018f,0.0340958f},{-0.0454557f,0.0850877f,0.0340958f}, - {-0.043047f,0.0874618f,0.0340958f},{-0.0430486f,0.0874608f,0.0322314f},{-0.0439672f,0.0867969f,0.0340958f}, - {-0.0447773f,0.0859985f,0.0340958f},{-0.0439685f,0.086796f,0.0322314f},{-0.0447784f,0.0859974f,0.0322314f}, - {-0.03984f,0.0885276f,0.0322314f},{-0.0409568f,0.0883379f,0.0340958f},{-0.0398371f,0.0885279f,0.0340958f}, - {-0.0420378f,0.0879786f,0.0322314f},{-0.042035f,0.0879797f,0.0340958f},{-0.0409588f,0.0883374f,0.0322314f}, - {-0.037576f,0.0883909f,0.0340958f},{-0.0364863f,0.0880664f,0.0340958f},{-0.0364891f,0.0880674f,0.0322314f}, - {-0.0387004f,0.0885456f,0.0340958f},{-0.0375781f,0.0883913f,0.0322314f},{-0.0387033f,0.0885458f,0.0322314f}, - {-0.0354596f,0.0875809f,0.0340958f},{-0.0345192f,0.0869454f,0.0340958f},{-0.0345204f,0.0869463f,0.0322314f}, - {-0.0354613f,0.0875818f,0.0322314f},{-0.0336855f,0.0861739f,0.0322314f},{-0.0336844f,0.0861728f,0.0340958f}, - {-0.0329784f,0.0852846f,0.0340958f},{-0.0329787f,0.085285f,0.0322314f},{-0.0324146f,0.0842979f,0.0340958f}, - {-0.0324146f,0.0842979f,0.0322314f},{-0.045456f,0.0850872f,0.0322314f},{-0.021027f,0.0331264f,0.0340958f}, - {-0.0206381f,0.0368319f,0.0340958f},{-0.0206381f,0.0368317f,0.0322314f},{-0.0205085f,0.0405509f,0.0340958f}, - {-0.0205085f,0.0405509f,0.0322314f},{-0.021027f,0.0331261f,0.0322314f},{-0.0216751f,0.0294476f,0.0322314f}, - {-0.0216749f,0.0294486f,0.0340958f},{-0.0237299f,0.0222807f,0.0340958f},{-0.0225785f,0.0258242f,0.0340958f}, - {-0.0225785f,0.025824f,0.0322314f},{-0.0237299f,0.0222806f,0.0322314f},{-0.0267542f,0.0154851f,0.0340958f}, - {-0.0251237f,0.01883f,0.0322314f},{-0.0267544f,0.0154848f,0.0322314f},{-0.0286161f,0.0122577f,0.0340958f}, - {-0.0251236f,0.0188302f,0.0340958f},{-0.0286162f,0.0122575f,0.0322314f},{-0.0307038f,0.00916071f,0.0340958f}, - {-0.0307038f,0.00916071f,0.0322314f},{-0.0206381f,0.0442701f,0.0340958f},{-0.0206381f,0.0442699f,0.0322314f}, - {-0.021027f,0.0479754f,0.0322314f},{-0.021027f,0.0479757f,0.0340958f},{-0.0216751f,0.0516542f,0.0340958f}, - {-0.0216749f,0.0516532f,0.0322314f},{-0.0225785f,0.0552778f,0.0340958f},{-0.0225785f,0.0552777f,0.0322314f}, - {-0.0237299f,0.0588211f,0.0322314f},{-0.0237299f,0.0588212f,0.0340958f},{-0.0251237f,0.0622718f,0.0340958f}, - {-0.0251236f,0.0622716f,0.0322314f},{-0.0267544f,0.065617f,0.0340958f},{-0.0267542f,0.0656167f,0.0322314f}, - {-0.0286161f,0.0688441f,0.0322314f},{-0.0286162f,0.0688443f,0.0340958f},{-0.0307038f,0.0719411f,0.0322314f}, - {-0.0307038f,0.0719411f,0.0340958f},{-0.0465017f,0.00126733f,0.0340958f},{-0.044941f,0.00470215f,0.0322314f}, - {-0.0456552f,0.0036514f,0.0322314f},{-0.0449406f,0.00470266f,0.0340958f},{-0.0456542f,0.00365287f,0.0340958f}, - {-0.0461811f,0.00249326f,0.0322314f},{-0.046181f,0.00249363f,0.0340958f},{-0.0430341f,0.00636786f,0.0322314f}, - {-0.0418973f,0.00693419f,0.0340958f},{-0.0418979f,0.00693393f,0.0322314f},{-0.0440592f,0.00561614f,0.0340958f}, - {-0.0430328f,0.00636862f,0.0340958f},{-0.0440603f,0.00561515f,0.0322314f},{-0.0406822f,0.00729899f,0.0322314f}, - {-0.0394178f,0.00745289f,0.0340958f},{-0.0394182f,0.00745292f,0.0322314f},{-0.0406805f,0.00729943f,0.0340958f}, - {-0.0381522f,0.00739019f,0.0322314f},{-0.0381511f,0.00739011f,0.0340958f},{-0.0369109f,0.00711273f,0.0340958f}, - {-0.0369109f,0.00711273f,0.0322314f},{-0.046502f,0.00126624f,0.0322314f},{-0.021027f,-0.0479754f,0.0340958f}, - {-0.0206381f,-0.0442699f,0.0340958f},{-0.0206381f,-0.0442701f,0.0322314f},{-0.0205085f,-0.0405509f,0.0340958f}, - {-0.0205085f,-0.0405509f,0.0322314f},{-0.021027f,-0.0479757f,0.0322314f},{-0.0216751f,-0.0516542f,0.0322314f}, - {-0.0216749f,-0.0516532f,0.0340958f},{-0.0237299f,-0.0588211f,0.0340958f},{-0.0225785f,-0.0552777f,0.0340958f}, - {-0.0225785f,-0.0552778f,0.0322314f},{-0.0237299f,-0.0588212f,0.0322314f},{-0.0267542f,-0.0656167f,0.0340958f}, - {-0.0251237f,-0.0622718f,0.0322314f},{-0.0267544f,-0.065617f,0.0322314f},{-0.0286161f,-0.0688441f,0.0340958f}, - {-0.0251236f,-0.0622716f,0.0340958f},{-0.0286162f,-0.0688443f,0.0322314f},{-0.0307038f,-0.0719411f,0.0340958f}, - {-0.0307038f,-0.0719411f,0.0322314f},{-0.0206381f,-0.0368317f,0.0340958f},{-0.0206381f,-0.0368319f,0.0322314f}, - {-0.021027f,-0.0331264f,0.0322314f},{-0.021027f,-0.0331261f,0.0340958f},{-0.0216751f,-0.0294476f,0.0340958f}, - {-0.0216749f,-0.0294486f,0.0322314f},{-0.0225785f,-0.025824f,0.0340958f},{-0.0225785f,-0.0258241f,0.0322314f}, - {-0.0237299f,-0.0222807f,0.0322314f},{-0.0237299f,-0.0222806f,0.0340958f},{-0.0251237f,-0.01883f,0.0340958f}, - {-0.0251236f,-0.0188302f,0.0322314f},{-0.0267544f,-0.0154848f,0.0340958f},{-0.0267542f,-0.0154851f,0.0322314f}, - {-0.0286161f,-0.0122577f,0.0322314f},{-0.0286162f,-0.0122575f,0.0340958f},{-0.0307038f,-0.00916071f,0.0322314f}, - {-0.0307038f,-0.00916071f,0.0340958f},{-0.0463621f,-0.0830096f,0.0340958f},{-0.0464633f,-0.079629f,0.0340958f}, - {-0.0464637f,-0.0796309f,0.0322314f},{-0.0466021f,-0.0807558f,0.0340958f},{-0.0465681f,-0.0818927f,0.0340958f}, - {-0.0466023f,-0.0807574f,0.0322314f},{-0.046568f,-0.0818943f,0.0322314f},{-0.0450626f,-0.0765535f,0.0322314f}, - {-0.0456834f,-0.0775011f,0.0340958f},{-0.0450608f,-0.0765512f,0.0340958f},{-0.0461555f,-0.0785378f,0.0322314f}, - {-0.0461544f,-0.078535f,0.0340958f},{-0.0456844f,-0.0775029f,0.0322314f},{-0.0434222f,-0.0749873f,0.0340958f}, - {-0.0424429f,-0.0744094f,0.0340958f},{-0.0424456f,-0.0744108f,0.0322314f},{-0.0443005f,-0.075706f,0.0340958f}, - {-0.0434238f,-0.0749885f,0.0322314f},{-0.0443026f,-0.0757081f,0.0322314f},{-0.0413886f,-0.0739873f,0.0340958f}, - {-0.040283f,-0.0737303f,0.0340958f},{-0.0402846f,-0.0737307f,0.0322314f},{-0.0413904f,-0.0739879f,0.0322314f}, - {-0.0391504f,-0.0736443f,0.0322314f},{-0.0391489f,-0.0736442f,0.0340958f},{-0.0380175f,-0.073731f,0.0340958f}, - {-0.0380181f,-0.073731f,0.0322314f},{-0.0369109f,-0.0739891f,0.0340958f},{-0.0369109f,-0.0739891f,0.0322314f}, - {-0.046362f,-0.0830101f,0.0322314f},{0.027361f,-0.0811018f,0.0340958f},{-0.027361f,-0.0811018f,0.0322314f}, - {0.027361f,-0.0811018f,0.0322314f},{-0.027361f,-0.0811018f,0.0340958f},{0.0457312f,-0.0846141f,0.0340958f}, - {0.0462025f,-0.0835337f,0.0322314f},{0.0462016f,-0.0835364f,0.0340958f},{0.0464965f,-0.0823992f,0.0340958f}, - {0.0464969f,-0.0823973f,0.0322314f},{0.0466091f,-0.0812265f,0.0322314f},{0.046609f,-0.0812289f,0.0340958f}, - {0.0465364f,-0.0800555f,0.0340958f},{0.0465363f,-0.0800543f,0.0322314f},{0.0462804f,-0.0789085f,0.0322314f}, - {0.0462805f,-0.0789088f,0.0340958f},{0.0458466f,-0.0778144f,0.0322314f},{0.0458468f,-0.0778149f,0.0340958f}, - {0.0452483f,-0.0768055f,0.0340958f},{0.0452473f,-0.0768041f,0.0322314f},{0.0444974f,-0.075901f,0.0340958f}, - {0.0444957f,-0.0758994f,0.0322314f},{0.0436125f,-0.0751248f,0.0322314f},{0.0436142f,-0.075126f,0.0340958f}, - {0.0426206f,-0.0744997f,0.0340958f},{0.0426177f,-0.0744982f,0.0322314f},{0.0415373f,-0.0740358f,0.0322314f}, - {0.0415395f,-0.0740365f,0.0340958f},{0.0403988f,-0.073749f,0.0322314f},{0.0404009f,-0.0737495f,0.0340958f}, - {0.0392293f,-0.0736447f,0.0340958f},{0.0392271f,-0.0736446f,0.0322314f},{0.0380562f,-0.0737252f,0.0322314f}, - {0.038057f,-0.0737251f,0.0340958f},{0.0369109f,-0.0739891f,0.0322314f},{0.0369109f,-0.0739891f,0.0340958f}, - {0.0457326f,-0.0846116f,0.0322314f},{0.0450987f,-0.085603f,0.0340958f},{0.0450998f,-0.0856014f,0.0322314f}, - {0.044317f,-0.0864818f,0.0340958f},{0.0443187f,-0.0864801f,0.0322314f},{0.0434083f,-0.0872259f,0.0340958f}, - {0.0434093f,-0.0872252f,0.0322314f},{0.0423947f,-0.0878178f,0.0322314f},{0.0423945f,-0.087818f,0.0340958f}, - {0.0412975f,-0.0882443f,0.0340958f},{0.041298f,-0.0882442f,0.0322314f},{0.0401493f,-0.0884924f,0.0340958f}, - {0.040151f,-0.0884923f,0.0322314f},{0.0389749f,-0.0885572f,0.0340958f},{0.0389772f,-0.0885573f,0.0322314f}, - {0.0378083f,-0.0884373f,0.0322314f},{0.0378063f,-0.0884369f,0.0340958f},{0.0366703f,-0.088134f,0.0340958f}, - {0.0366734f,-0.0881351f,0.0322314f},{0.0355984f,-0.087658f,0.0322314f},{0.0355963f,-0.0876568f,0.0340958f}, - {0.0346116f,-0.0870176f,0.0340958f},{0.0346134f,-0.0870188f,0.0322314f},{0.0337379f,-0.0862299f,0.0340958f}, - {0.0337395f,-0.0862314f,0.0322314f},{0.0330008f,-0.0853175f,0.0322314f},{0.0330004f,-0.0853169f,0.0340958f}, - {0.0324146f,-0.0842979f,0.0340958f},{0.0324146f,-0.0842979f,0.0322314f},{0.02064f,-0.0442971f,0.0340958f}, - {0.0206399f,-0.0442969f,0.0322314f},{0.0225785f,-0.0552777f,0.0340958f},{0.0225785f,-0.0552776f,0.0322314f}, - {0.0216792f,-0.0516735f,0.0340958f},{0.0216792f,-0.0516732f,0.0322314f},{0.0210316f,-0.0480087f,0.0322314f}, - {0.0210317f,-0.048009f,0.0340958f},{0.0267447f,-0.0655989f,0.0322314f},{0.0251156f,-0.0622535f,0.0340958f}, - {0.0267448f,-0.0655992f,0.0340958f},{0.0237253f,-0.0588085f,0.0322314f},{0.0237254f,-0.0588086f,0.0340958f}, - {0.0251155f,-0.0622533f,0.0322314f},{0.028609f,-0.0688327f,0.0340958f},{0.0286089f,-0.0688325f,0.0322314f}, - {0.0307038f,-0.0719411f,0.0340958f},{0.0307038f,-0.0719411f,0.0322314f},{0.0206235f,-0.00372882f,0.0322314f}, - {0.0206235f,-0.00372882f,0.0340958f},{0.0466102f,3.97423e-017f,0.0340958f},{0.0466102f,3.97423e-017f,0.0322314f}, - {0.0465018f,0.00126639f,0.0322314f},{0.0461802f,0.00249579f,0.0322314f},{0.0465022f,0.00126441f,0.0340958f}, - {0.0456552f,0.00365135f,0.0322314f},{0.0461804f,0.00249531f,0.0340958f},{0.0456558f,0.00365019f,0.0340958f}, - {0.0449402f,0.00470316f,0.0322314f},{0.0440587f,0.00561661f,0.0322314f},{0.0449409f,0.00470218f,0.0340958f}, - {0.043034f,0.00636795f,0.0322314f},{0.0440594f,0.00561601f,0.0340958f},{0.0430353f,0.00636709f,0.0340958f}, - {0.0418963f,0.00693455f,0.0322314f},{0.040681f,0.00729936f,0.0322314f},{0.0418969f,0.00693434f,0.0340958f}, - {0.0394182f,0.00745287f,0.0322314f},{0.0406822f,0.00729903f,0.0340958f},{0.0394186f,0.0074529f,0.0340958f}, - {0.0381506f,0.00739003f,0.0322314f},{0.0369109f,0.00711273f,0.0322314f},{0.0381517f,0.00739014f,0.0340958f}, - {0.0369109f,0.00711273f,0.0340958f},{0.0465018f,-0.00126639f,0.0340958f},{0.0465022f,-0.00126441f,0.0322314f}, - {0.0461802f,-0.00249579f,0.0340958f},{0.0456552f,-0.00365135f,0.0340958f},{0.0461804f,-0.00249531f,0.0322314f}, - {0.0449402f,-0.00470316f,0.0340958f},{0.0456558f,-0.00365019f,0.0322314f},{0.0449409f,-0.00470218f,0.0322314f}, - {0.0440587f,-0.00561661f,0.0340958f},{0.043034f,-0.00636795f,0.0340958f},{0.0440594f,-0.00561601f,0.0322314f}, - {0.0418963f,-0.00693455f,0.0340958f},{0.0430353f,-0.00636709f,0.0322314f},{0.0418969f,-0.00693434f,0.0322314f}, - {0.040681f,-0.00729936f,0.0340958f},{0.0394182f,-0.00745287f,0.0340958f},{0.0406822f,-0.00729903f,0.0322314f}, - {0.0381506f,-0.00739003f,0.0340958f},{0.0394186f,-0.0074529f,0.0322314f},{0.0381517f,-0.00739014f,0.0322314f}, - {0.0369109f,-0.00711273f,0.0340958f},{0.0369109f,-0.00711273f,0.0322314f},{0.0195103f,0.0755086f,0.0322314f}, - {0.0195103f,0.0755086f,0.0340958f},{0.0418944f,0.000544649f,0.0340958f},{-0.0396981f,0.00274259f,0.0340958f}, - {-0.0346445f,-0.00688452f,0.0340958f},{-0.033477f,-0.00713571f,0.0340958f},{0.0417351f,0.00106869f,0.0340958f}, - {-0.0323894f,-0.0734732f,0.0340958f},{-0.033477f,-0.0739661f,0.0340958f},{-0.029784f,-0.081654f,0.0340958f}, - {0.0396989f,-0.0783596f,0.0340958f},{0.0402234f,-0.0785201f,0.0340958f},{0.038082f,0.0836861f,0.0340958f}, - {0.0386071f,0.0838444f,0.0340958f},{0.041477f,0.00155172f,0.0340958f},{0.041477f,-0.0795501f,0.0340958f}, - {0.0411295f,-0.0791268f,0.0340958f},{0.0417351f,-0.0800331f,0.0340958f},{0.0411295f,0.00197505f,0.0340958f}, - {0.0418944f,-0.0805572f,0.0340958f},{0.0407062f,0.00232262f,0.0340958f},{0.0402234f,0.00258168f,0.0340958f}, - {0.0396989f,0.00274216f,0.0340958f},{0.0391526f,0.00279661f,0.0340958f},{0.0386071f,0.00274259f,0.0340958f}, - {0.038082f,0.00258432f,0.0340958f},{0.0358134f,0.00688407f,0.0340958f},{0.0375977f,0.00232618f,0.0340958f}, - {0.0364081f,0.000545524f,0.0340958f},{0.0236456f,0.00527349f,0.0340958f},{0.0365672f,0.00107021f,0.0340958f}, - {0.033477f,0.00713571f,0.0340958f},{0.0371735f,0.00197799f,0.0340958f},{0.0346445f,0.00688452f,0.0340958f}, - {0.0346482f,-0.00688511f,0.0340958f},{0.0241643f,0.0086281f,0.0340958f},{0.0243399f,0.00776655f,0.0340958f}, - {0.0230511f,-0.00462716f,0.0340958f},{0.023646f,-0.00527393f,0.0340958f},{-0.0396981f,0.0838444f,0.0340958f}, - {-0.0402232f,0.0836861f,0.0340958f},{-0.0386063f,0.083844f,0.0340958f},{-0.0380818f,0.0836835f,0.0340958f}, - {-0.0346445f,0.0742173f,0.0340958f},{-0.0308772f,0.0823454f,0.0340958f},{0.0211824f,0.075113f,0.0340958f}, - {0.0219051f,0.0746381f,0.0340958f},{0.0358165f,0.0742161f,0.0340958f},{0.0323894f,0.0734732f,0.0340958f}, - {0.033477f,0.0739661f,0.0340958f},{0.029784f,0.081654f,0.0340958f},{0.03177f,0.0832527f,0.0340958f}, - {0.0364081f,0.0816473f,0.0340958f},{0.0375977f,0.083428f,0.0340958f},{0.0371735f,0.0830798f,0.0340958f}, - {0.0407062f,0.0834244f,0.0340958f},{0.0417351f,0.0821705f,0.0340958f},{0.0418944f,0.0816464f,0.0340958f}, - {0.041477f,0.0826535f,0.0340958f},{0.0411295f,0.0830768f,0.0340958f},{0.0396989f,0.083844f,0.0340958f}, - {0.0402234f,0.0836835f,0.0340958f},{0.0391526f,0.0838984f,0.0340958f},{0.0365672f,0.082172f,0.0340958f}, - {0.0368257f,0.0826556f,0.0340958f},{0.0346482f,0.0742167f,0.0340958f},{0.0308757f,0.0823441f,0.0340958f}, - {0.0285789f,0.0812367f,0.0340958f},{0.0314497f,0.072778f,0.0340958f},{0.0224988f,0.0740097f,0.0340958f}, - {0.0229321f,0.0732614f,0.0340958f},{0.0203695f,0.0754087f,0.0340958f},{-0.0314481f,0.0727748f,0.0340958f}, - {-0.0285817f,0.0812363f,0.0340958f},{-0.0231141f,0.0708224f,0.0340958f},{-0.0407075f,0.083428f,0.0340958f}, - {-0.0411317f,0.0830798f,0.0340958f},{-0.0417379f,0.082172f,0.0340958f},{-0.0418971f,0.0816473f,0.0340958f}, - {-0.0414795f,0.0826556f,0.0340958f},{-0.0391526f,0.0838984f,0.0340958f},{-0.0358134f,0.0742177f,0.0340958f}, - {-0.037599f,0.0834244f,0.0340958f},{-0.033477f,0.0739661f,0.0340958f},{-0.0418971f,0.000545524f,0.0340958f}, - {-0.0371757f,0.0830768f,0.0340958f},{-0.0368282f,0.0826535f,0.0340958f},{-0.0365701f,0.0821705f,0.0340958f}, - {-0.0323867f,0.0734705f,0.0340958f},{-0.0297859f,0.0816548f,0.0340958f},{-0.0231106f,0.0727502f,0.0340958f}, - {-0.0241967f,-0.00852371f,0.0340958f},{-0.0323867f,-0.00763125f,0.0340958f},{-0.0314481f,-0.00832702f,0.0340958f}, - {-0.033477f,0.00713571f,0.0340958f},{-0.0365701f,0.00106869f,0.0340958f},{-0.0364108f,0.000544649f,0.0340958f}, - {-0.0323894f,0.00762858f,0.0340958f},{-0.0386063f,0.00274216f,0.0340958f},{-0.0391526f,0.00279661f,0.0340958f}, - {-0.0368282f,0.00155172f,0.0340958f},{-0.0417379f,0.00107021f,0.0340958f},{-0.0414795f,0.0015538f,0.0340958f}, - {-0.0411317f,0.00197799f,0.0340958f},{-0.0407075f,0.00232618f,0.0340958f},{-0.0402232f,0.00258432f,0.0340958f}, - {-0.0418971f,-0.0805563f,0.0340958f},{-0.0417379f,-0.0800316f,0.0340958f},{-0.0358134f,-0.00688407f,0.0340958f}, - {-0.0225127f,0.00424291f,0.0340958f},{-0.0380818f,0.00258168f,0.0340958f},{-0.0358165f,0.00688568f,0.0340958f}, - {0.0214967f,-0.00383203f,0.0340958f},{0.0223196f,0.0041374f,0.0340958f},{0.0214955f,0.00383263f,0.0340958f}, - {-0.0216024f,0.00385961f,0.0340958f},{-0.024244f,-0.0065653f,0.0340958f},{0.0314497f,-0.00832383f,0.0340958f}, - {0.0243085f,-0.00688932f,0.0340958f},{0.0364081f,-0.0805563f,0.0340958f},{0.0308772f,-0.0823454f,0.0340958f}, - {0.0314481f,-0.0727748f,0.0340958f},{0.0285817f,-0.0812363f,0.0340958f},{0.0230854f,-0.0707188f,0.0340958f}, - {-0.0285788f,-0.0812367f,0.0340958f},{-0.0213716f,-0.0750107f,0.0340958f},{-0.022144f,-0.0744194f,0.0340958f}, - {-0.0365701f,-0.0800331f,0.0340958f},{-0.0391526f,-0.0783052f,0.0340958f},{-0.03177f,-0.0832527f,0.0340958f}, - {-0.0308757f,-0.0823441f,0.0340958f},{-0.0364108f,-0.0805572f,0.0340958f},{-0.0414795f,-0.079548f,0.0340958f}, - {-0.0411317f,-0.0791238f,0.0340958f},{-0.0407075f,-0.0787756f,0.0340958f},{-0.0402232f,-0.0785175f,0.0340958f}, - {-0.0396981f,-0.0783592f,0.0340958f},{-0.0386063f,-0.0783596f,0.0340958f},{-0.0368282f,-0.0795501f,0.0340958f}, - {-0.0371757f,-0.0791268f,0.0340958f},{-0.0346482f,-0.0742167f,0.0340958f},{-0.0358165f,-0.0742161f,0.0340958f}, - {0.0386071f,-0.0783592f,0.0340958f},{0.038082f,-0.0785175f,0.0340958f},{-0.0314497f,-0.072778f,0.0340958f}, - {0.0391526f,-0.0783052f,0.0340958f},{0.0407062f,-0.0787792f,0.0340958f},{0.0358134f,-0.0742177f,0.0340958f}, - {0.0375977f,-0.0787756f,0.0340958f},{0.0368257f,-0.079548f,0.0340958f},{0.0346445f,-0.0742173f,0.0340958f}, - {0.0365672f,-0.0800316f,0.0340958f},{0.0371735f,-0.0791238f,0.0340958f},{0.0297859f,-0.0816548f,0.0340958f}, - {0.033477f,-0.0739661f,0.0340958f},{0.0317708f,-0.0832554f,0.0340958f},{0.0323867f,-0.0734706f,0.0340958f}, - {0.0229318f,-0.0732619f,0.0340958f},{0.0223212f,-0.0041373f,0.0340958f},{0.0240731f,-0.00604206f,0.0340958f}, - {0.0323894f,-0.00762858f,0.0340958f},{0.0243087f,0.00688805f,0.0340958f},{0.0314481f,0.00832702f,0.0340958f}, - {0.0323867f,0.00763125f,0.0340958f},{0.0358165f,-0.00688568f,0.0340958f},{-0.023239f,0.071786f,0.0340958f}, - {0.0232328f,0.0715697f,0.0340958f},{0.0230844f,0.0707181f,0.0340958f},{0.0231812f,0.072433f,0.0340958f}, - {0.0240729f,0.00604156f,0.0340958f},{0.02305f,0.00462664f,0.0340958f},{0.033477f,-0.00713571f,0.0340958f}, - {0.024339f,-0.00776783f,0.0340958f},{0.0241632f,-0.00862874f,0.0340958f},{-0.0314497f,0.00832383f,0.0340958f}, - {-0.0346482f,0.00688511f,0.0340958f},{0.0231813f,-0.0724342f,0.0340958f},{0.0232336f,-0.071571f,0.0340958f}, - {0.021904f,-0.0746385f,0.0340958f},{0.0224985f,-0.0740101f,0.0340958f},{0.0203684f,-0.0754081f,0.0340958f}, - {0.0211809f,-0.0751129f,0.0340958f},{-0.0204736f,-0.075382f,0.0340958f},{-0.0243511f,-0.0075482f,0.0340958f}, - {-0.0232912f,0.00485238f,0.0340958f},{-0.0380818f,-0.0785201f,0.0340958f},{-0.037599f,-0.0787792f,0.0340958f}, - {-0.0364108f,0.0816464f,0.0340958f},{-0.0317708f,0.0832554f,0.0340958f},{0.0368257f,0.0015538f,0.0340958f}, - {-0.037599f,0.00232262f,0.0340958f},{-0.0371757f,0.00197505f,0.0340958f},{0.0314481f,0.0727748f,0.0322314f}, - {0.0229318f,0.0732619f,0.0322314f},{-0.0358134f,-0.0742177f,0.0322314f},{-0.0375977f,-0.0787756f,0.0322314f}, - {-0.038082f,-0.0785175f,0.0322314f},{-0.0391526f,-0.0783052f,0.0322314f},{0.0243399f,-0.00776655f,0.0322314f}, - {0.0243087f,-0.00688805f,0.0322314f},{0.0358165f,0.00688568f,0.0322314f},{0.0380818f,0.00258168f,0.0322314f}, - {0.037599f,0.00232262f,0.0322314f},{0.0241643f,-0.0086281f,0.0322314f},{0.033477f,-0.00713571f,0.0322314f}, - {0.0323867f,-0.00763125f,0.0322314f},{0.0396981f,0.00274259f,0.0322314f},{0.0391526f,0.00279661f,0.0322314f}, - {0.0407075f,0.00232618f,0.0322314f},{0.0402232f,0.00258432f,0.0322314f},{0.0417379f,0.00107021f,0.0322314f}, - {0.0358134f,-0.00688407f,0.0322314f},{0.0346445f,-0.00688452f,0.0322314f},{0.0417379f,0.082172f,0.0322314f}, - {0.0407075f,0.083428f,0.0322314f},{0.0402232f,0.0836861f,0.0322314f},{0.0396981f,0.0838444f,0.0322314f}, - {0.0418971f,0.000545524f,0.0322314f},{0.0414795f,0.0015538f,0.0322314f},{0.0411317f,0.00197799f,0.0322314f}, - {0.0386063f,0.00274216f,0.0322314f},{0.033477f,0.00713571f,0.0322314f},{0.0364108f,0.000544649f,0.0322314f}, - {0.0323894f,0.00762858f,0.0322314f},{0.0240729f,-0.00604156f,0.0322314f},{0.0236456f,-0.00527349f,0.0322314f}, - {0.0223212f,0.0041373f,0.0322314f},{0.0230511f,0.00462716f,0.0322314f},{0.0223196f,-0.0041374f,0.0322314f}, - {0.0346482f,0.00688511f,0.0322314f},{0.0368282f,0.00155172f,0.0322314f},{0.0365701f,0.00106869f,0.0322314f}, - {-0.0346445f,-0.0742173f,0.0322314f},{-0.0371735f,-0.0791238f,0.0322314f},{-0.0386071f,-0.0783592f,0.0322314f}, - {-0.0396989f,-0.0783596f,0.0322314f},{-0.0402234f,-0.0785201f,0.0322314f},{-0.0417351f,-0.0800331f,0.0322314f}, - {-0.0407062f,-0.0787792f,0.0322314f},{-0.0411295f,-0.0791268f,0.0322314f},{-0.041477f,-0.0795501f,0.0322314f}, - {-0.0285817f,-0.0812363f,0.0322314f},{-0.0323867f,-0.0734706f,0.0322314f},{-0.0314481f,-0.0727748f,0.0322314f}, - {-0.0365672f,-0.0800316f,0.0322314f},{-0.0308772f,-0.0823454f,0.0322314f},{-0.0364081f,-0.0805563f,0.0322314f}, - {0.029784f,-0.081654f,0.0322314f},{0.0323894f,-0.0734732f,0.0322314f},{0.033477f,-0.0739661f,0.0322314f}, - {0.0219051f,-0.0746381f,0.0322314f},{0.0211824f,-0.075113f,0.0322314f},{0.0391526f,-0.0783052f,0.0322314f}, - {0.0396981f,-0.0783592f,0.0322314f},{0.0386063f,-0.0783596f,0.0322314f},{0.0411317f,-0.0791238f,0.0322314f}, - {0.0407075f,-0.0787756f,0.0322314f},{0.0414795f,-0.079548f,0.0322314f},{0.0365701f,-0.0800331f,0.0322314f}, - {0.0417379f,-0.0800316f,0.0322314f},{0.0418971f,-0.0805563f,0.0322314f},{0.03177f,-0.0832527f,0.0322314f}, - {0.0308757f,-0.0823441f,0.0322314f},{0.0364108f,-0.0805572f,0.0322314f},{0.0402232f,-0.0785175f,0.0322314f}, - {0.0380818f,-0.0785201f,0.0322314f},{0.0346482f,-0.0742167f,0.0322314f},{0.0368282f,-0.0795501f,0.0322314f}, - {0.0371757f,-0.0791268f,0.0322314f},{0.0285789f,-0.0812367f,0.0322314f},{0.0314497f,-0.072778f,0.0322314f}, - {0.0224988f,-0.0740097f,0.0322314f},{0.0229321f,-0.0732614f,0.0322314f},{0.0230844f,-0.0707181f,0.0322314f}, - {-0.0418944f,-0.0805572f,0.0322314f},{-0.033477f,-0.0739661f,0.0322314f},{-0.0297859f,-0.0816548f,0.0322314f}, - {-0.0317708f,-0.0832554f,0.0322314f},{-0.0243512f,-0.00754595f,0.0322314f},{-0.0242437f,-0.00656417f,0.0322314f}, - {-0.0216035f,0.00385992f,0.0322314f},{-0.024197f,-0.00852259f,0.0322314f},{-0.0323867f,0.00763125f,0.0322314f}, - {-0.0364081f,0.000545524f,0.0322314f},{-0.0418944f,0.000544649f,0.0322314f},{-0.0411295f,0.00197505f,0.0322314f}, - {-0.0407062f,0.00232262f,0.0322314f},{-0.0386071f,0.00274259f,0.0322314f},{-0.0391526f,0.00279661f,0.0322314f}, - {-0.0358134f,0.00688407f,0.0322314f},{-0.0375977f,0.00232618f,0.0322314f},{-0.038082f,0.00258432f,0.0322314f}, - {-0.041477f,0.00155172f,0.0322314f},{-0.0417351f,0.00106869f,0.0322314f},{-0.0402234f,0.00258168f,0.0322314f}, - {-0.0371735f,0.00197799f,0.0322314f},{-0.0346445f,0.00688452f,0.0322314f},{-0.0396989f,0.00274216f,0.0322314f}, - {-0.0358165f,-0.00688568f,0.0322314f},{-0.033477f,0.00713571f,0.0322314f},{-0.023292f,0.00485321f,0.0322314f}, - {-0.0346482f,-0.00688511f,0.0322314f},{0.0314497f,0.00832383f,0.0322314f},{0.0243085f,0.00688932f,0.0322314f}, - {0.0230854f,0.0707188f,0.0322314f},{-0.0346482f,0.0742167f,0.0322314f},{-0.033477f,0.0739661f,0.0322314f}, - {-0.0231144f,0.0708235f,0.0322314f},{-0.0368257f,0.0826556f,0.0322314f},{-0.0396989f,0.083844f,0.0322314f}, - {-0.0391526f,0.0838984f,0.0322314f},{-0.0375977f,0.083428f,0.0322314f},{-0.038082f,0.0836861f,0.0322314f}, - {-0.0411295f,0.0830768f,0.0322314f},{-0.041477f,0.0826535f,0.0322314f},{-0.0371735f,0.0830798f,0.0322314f}, - {-0.0418944f,0.0816464f,0.0322314f},{-0.0417351f,0.0821705f,0.0322314f},{-0.0402234f,0.0836835f,0.0322314f}, - {-0.0386071f,0.0838444f,0.0322314f},{-0.0407062f,0.0834244f,0.0322314f},{-0.0364081f,0.0816473f,0.0322314f}, - {-0.0365672f,0.082172f,0.0322314f},{-0.03177f,0.0832527f,0.0322314f},{-0.0308757f,0.0823441f,0.0322314f}, - {-0.0358165f,0.0742161f,0.0322314f},{-0.029784f,0.081654f,0.0322314f},{-0.0323894f,0.0734732f,0.0322314f}, - {-0.0285788f,0.0812367f,0.0322314f},{-0.0314497f,0.072778f,0.0322314f},{-0.0231103f,0.0727513f,0.0322314f}, - {0.0391526f,0.0838984f,0.0322314f},{0.0380818f,0.0836835f,0.0322314f},{0.0386063f,0.083844f,0.0322314f}, - {0.0414795f,0.0826556f,0.0322314f},{0.0411317f,0.0830798f,0.0322314f},{0.0418971f,0.0816473f,0.0322314f}, - {0.0358134f,0.0742177f,0.0322314f},{0.0346445f,0.0742173f,0.0322314f},{0.033477f,0.0739661f,0.0322314f}, - {0.0371757f,0.0830768f,0.0322314f},{0.037599f,0.0834244f,0.0322314f},{0.0368282f,0.0826535f,0.0322314f}, - {0.0308772f,0.0823454f,0.0322314f},{0.0323867f,0.0734705f,0.0322314f},{0.0297859f,0.0816548f,0.0322314f}, - {0.0285817f,0.0812363f,0.0322314f},{0.0187991f,0.0422603f,0.0322314f},{0.0232336f,0.071571f,0.0322314f}, - {0.0231813f,0.0724342f,0.0322314f},{0.021904f,0.0746385f,0.0322314f},{0.0224985f,0.0740101f,0.0322314f}, - {0.0203684f,0.0754081f,0.0322314f},{0.0211809f,0.0751129f,0.0322314f},{-0.023239f,0.0717882f,0.0322314f}, - {0.024339f,0.00776783f,0.0322314f},{0.0241632f,0.00862874f,0.0322314f},{-0.0314481f,0.00832702f,0.0322314f}, - {-0.0225146f,0.00424405f,0.0322314f},{-0.0323894f,-0.00762858f,0.0322314f},{-0.0314497f,-0.00832383f,0.0322314f}, - {0.023646f,0.00527393f,0.0322314f},{0.0240731f,0.00604206f,0.0322314f},{0.0314481f,-0.00832702f,0.0322314f}, - {0.02305f,-0.00462664f,0.0322314f},{0.0214955f,-0.00383263f,0.0322314f},{0.0214967f,0.00383203f,0.0322314f}, - {-0.033477f,-0.00713571f,0.0322314f},{-0.0213735f,-0.0750096f,0.0322314f},{-0.0221448f,-0.0744186f,0.0322314f}, - {-0.0204747f,-0.0753817f,0.0322314f},{0.0232328f,-0.0715697f,0.0322314f},{0.0231812f,-0.072433f,0.0322314f}, - {0.0203695f,-0.0754087f,0.0322314f},{-0.0368257f,-0.079548f,0.0322314f},{0.0358165f,-0.0742161f,0.0322314f}, - {0.037599f,-0.0787792f,0.0322314f},{0.0365701f,0.0821705f,0.0322314f},{0.0364108f,0.0816464f,0.0322314f}, - {0.0317708f,0.0832554f,0.0322314f},{0.0371757f,0.00197505f,0.0322314f},{-0.0368257f,0.0015538f,0.0322314f}, - {-0.0365672f,0.00107021f,0.0322314f},{-0.285968f,-0.0125242f,0.0900281f},{-0.286022f,-0.0130723f,0.0918925f}, - {-0.285968f,-0.0125242f,0.0918925f},{-0.286181f,-0.011454f,0.0918925f},{-0.286181f,-0.011454f,0.0900281f}, - {-0.286022f,-0.0119761f,0.0918925f},{-0.286022f,-0.0119761f,0.0900281f},{-0.286438f,-0.0109726f,0.0900281f}, - {-0.286787f,-0.0105467f,0.0900281f},{-0.286787f,-0.0105467f,0.0918925f},{-0.287213f,-0.0101975f,0.0900281f}, - {-0.287213f,-0.0101975f,0.0918925f},{-0.286438f,-0.0109726f,0.0918925f},{-0.288764f,-0.00972758f,0.0900281f}, - {-0.288216f,-0.00978182f,0.0900281f},{-0.288216f,-0.00978182f,0.0918925f},{-0.287694f,-0.00994047f,0.0918925f}, - {-0.287694f,-0.00994047f,0.0900281f},{-0.288764f,-0.00972758f,0.0918925f},{-0.286022f,-0.0130723f,0.0900281f}, - {-0.286181f,-0.0135944f,0.0918925f},{-0.286181f,-0.0135944f,0.0900281f},{-0.286438f,-0.0140758f,0.0900281f}, - {-0.286438f,-0.0140758f,0.0918925f},{-0.286787f,-0.0145017f,0.0900281f},{-0.286787f,-0.0145017f,0.0918925f}, - {-0.287213f,-0.0148509f,0.0918925f},{-0.287213f,-0.0148509f,0.0900281f},{-0.287694f,-0.0151079f,0.0900281f}, - {-0.287694f,-0.0151079f,0.0918925f},{-0.288216f,-0.0152666f,0.0900281f},{-0.288216f,-0.0152666f,0.0918925f}, - {-0.288764f,-0.0153208f,0.0918925f},{-0.288764f,-0.0153208f,0.0900281f},{-0.311016f,0.0125242f,0.0900281f}, - {-0.31107f,0.0119761f,0.0918925f},{-0.311016f,0.0125242f,0.0918925f},{-0.311229f,0.0135944f,0.0918925f}, - {-0.311229f,0.0135944f,0.0900281f},{-0.31107f,0.0130723f,0.0918925f},{-0.31107f,0.0130723f,0.0900281f}, - {-0.311486f,0.0140758f,0.0900281f},{-0.311835f,0.0145017f,0.0900281f},{-0.311835f,0.0145017f,0.0918925f}, - {-0.312261f,0.0148509f,0.0900281f},{-0.312261f,0.0148509f,0.0918925f},{-0.311486f,0.0140758f,0.0918925f}, - {-0.313813f,0.0153208f,0.0900281f},{-0.313265f,0.0152666f,0.0900281f},{-0.313265f,0.0152666f,0.0918925f}, - {-0.312743f,0.0151079f,0.0918925f},{-0.312743f,0.0151079f,0.0900281f},{-0.313813f,0.0153208f,0.0918925f}, - {-0.31107f,0.0119761f,0.0900281f},{-0.311229f,0.011454f,0.0918925f},{-0.311229f,0.011454f,0.0900281f}, - {-0.311486f,0.0109726f,0.0900281f},{-0.311486f,0.0109726f,0.0918925f},{-0.311835f,0.0105467f,0.0900281f}, - {-0.311835f,0.0105467f,0.0918925f},{-0.312261f,0.0101975f,0.0918925f},{-0.312261f,0.0101975f,0.0900281f}, - {-0.312743f,0.00994047f,0.0900281f},{-0.312743f,0.00994047f,0.0918925f},{-0.313265f,0.00978182f,0.0900281f}, - {-0.313265f,0.00978182f,0.0918925f},{-0.313813f,0.00972758f,0.0918925f},{-0.313813f,0.00972758f,0.0900281f}, - {-0.284736f,-0.0073455f,0.0900281f},{-0.285954f,-0.00738926f,0.0918925f},{-0.284736f,-0.00734538f,0.0918925f}, - {-0.283556f,-0.00703877f,0.0900281f},{-0.283555f,-0.0070384f,0.0918925f},{-0.28247f,-0.00648281f,0.0900281f}, - {-0.28247f,-0.00648282f,0.0918925f},{-0.285956f,-0.00738915f,0.0900281f},{-0.287154f,-0.00716427f,0.0918925f}, - {-0.287154f,-0.00716427f,0.0900281f},{-0.309858f,0.00856857f,0.0918925f},{-0.310706f,0.0078732f,0.0918925f}, - {-0.309857f,0.00856991f,0.0900281f},{-0.310705f,0.00787361f,0.0900281f},{-0.311673f,0.0073566f,0.0918925f}, - {-0.312722f,0.00703838f,0.0918925f},{-0.311672f,0.00735691f,0.0900281f},{-0.313813f,0.00693097f,0.0918925f}, - {-0.312721f,0.00703853f,0.0900281f},{-0.313813f,0.00693097f,0.0900281f},{-0.309162f,0.00941743f,0.0900281f}, - {-0.308645f,0.0103841f,0.0900281f},{-0.309162f,0.00941663f,0.0918925f},{-0.308327f,0.0114331f,0.0900281f}, - {-0.308645f,0.0103834f,0.0918925f},{-0.308327f,0.0114326f,0.0918925f},{-0.30822f,0.0125242f,0.0900281f}, - {-0.30822f,0.0125242f,0.0918925f},{-0.401959f,-0.065917f,0.0918925f},{-0.398048f,-0.0617984f,0.0918925f}, - {-0.40196f,-0.0659174f,0.0900281f},{-0.405692f,-0.07019f,0.0900281f},{-0.405691f,-0.0701898f,0.0918925f}, - {-0.409237f,-0.0746077f,0.0900281f},{-0.409237f,-0.0746076f,0.0918925f},{-0.412592f,-0.0791643f,0.0918925f}, - {-0.412592f,-0.0791644f,0.0900281f},{-0.415754f,-0.0838538f,0.0900281f},{-0.415754f,-0.0838537f,0.0918925f}, - {-0.418717f,-0.0886696f,0.0900281f},{-0.418717f,-0.0886696f,0.0918925f},{-0.421479f,-0.0936056f,0.0918925f}, - {-0.421479f,-0.0936057f,0.0900281f},{-0.424035f,-0.0986557f,0.0900281f},{-0.424035f,-0.0986556f,0.0918925f}, - {-0.426382f,-0.103813f,0.0900281f},{-0.426382f,-0.103813f,0.0918925f},{-0.428515f,-0.109072f,0.0918925f}, - {-0.428515f,-0.109073f,0.0900281f},{-0.430428f,-0.11442f,0.0900281f},{-0.430428f,-0.11442f,0.0918925f}, - {-0.432114f,-0.119834f,0.0900281f},{-0.432114f,-0.119834f,0.0918925f},{-0.433572f,-0.125306f,0.0918925f}, - {-0.433572f,-0.125307f,0.0900281f},{-0.4348f,-0.130829f,0.0900281f},{-0.4348f,-0.130829f,0.0918925f}, - {-0.435797f,-0.136396f,0.0900281f},{-0.435797f,-0.136396f,0.0918925f},{-0.436561f,-0.141999f,0.0918925f}, - {-0.436561f,-0.141999f,0.0900281f},{-0.437093f,-0.147631f,0.0900281f},{-0.437093f,-0.147631f,0.0918925f}, - {-0.437391f,-0.153284f,0.0900281f},{-0.437391f,-0.153284f,0.0918925f},{-0.437453f,-0.158952f,0.0918925f}, - {-0.437453f,-0.158952f,0.0900281f},{-0.437279f,-0.164627f,0.0900281f},{-0.437279f,-0.164627f,0.0918925f}, - {-0.398048f,-0.0617987f,0.0900281f},{-0.393973f,-0.0578515f,0.0900281f},{-0.393973f,-0.0578514f,0.0918925f}, - {-0.389744f,-0.054083f,0.0918925f},{-0.389744f,-0.0540831f,0.0900281f},{-0.385366f,-0.0504973f,0.0918925f}, - {-0.385366f,-0.0504974f,0.0900281f},{-0.380846f,-0.0470986f,0.0900281f},{-0.380846f,-0.0470985f,0.0918925f}, - {-0.376189f,-0.0438908f,0.0918925f},{-0.376189f,-0.0438908f,0.0900281f},{-0.371402f,-0.0408784f,0.0918925f}, - {-0.371402f,-0.0408785f,0.0900281f},{-0.36649f,-0.0380656f,0.0900281f},{-0.36649f,-0.0380655f,0.0918925f}, - {-0.36146f,-0.0354565f,0.0918925f},{-0.36146f,-0.0354565f,0.0900281f},{-0.356317f,-0.0330551f,0.0918925f}, - {-0.356318f,-0.0330554f,0.0900281f},{-0.351076f,-0.0308688f,0.0900281f},{-0.351076f,-0.0308688f,0.0918925f}, - {-0.345756f,-0.0289059f,0.0918925f},{-0.345756f,-0.0289059f,0.0900281f},{-0.340366f,-0.0271683f,0.0918925f}, - {-0.340366f,-0.0271684f,0.0900281f},{-0.334914f,-0.0256577f,0.0900281f},{-0.334914f,-0.0256577f,0.0918925f}, - {-0.329406f,-0.0243753f,0.0918925f},{-0.329406f,-0.0243754f,0.0900281f},{-0.32385f,-0.0233228f,0.0918925f}, - {-0.32385f,-0.0233228f,0.0900281f},{-0.318253f,-0.0225016f,0.0900281f},{-0.318253f,-0.0225016f,0.0918925f}, - {-0.312622f,-0.0219132f,0.0918925f},{-0.312623f,-0.0219132f,0.0900281f},{-0.306965f,-0.0215591f,0.0918925f}, - {-0.306965f,-0.0215591f,0.0900281f},{-0.301289f,-0.0214407f,0.0918925f},{-0.301289f,-0.0214407f,0.0900281f}, - {-0.300061f,-0.0214056f,0.0918925f},{-0.300061f,-0.0214056f,0.0900281f},{-0.298838f,-0.0213002f,0.0900281f}, - {-0.298838f,-0.0213002f,0.0918925f},{-0.29272f,-0.00857005f,0.0900281f},{-0.293362f,-0.00933952f,0.0900281f}, - {-0.292718f,-0.00856812f,0.0918925f},{-0.293856f,-0.0102104f,0.0918925f},{-0.293362f,-0.00933867f,0.0918925f}, - {-0.293857f,-0.010212f,0.0900281f},{-0.294188f,-0.0111572f,0.0918925f},{-0.294188f,-0.0111588f,0.0900281f}, - {-0.294345f,-0.0121484f,0.0918925f},{-0.294322f,-0.0131504f,0.0918925f},{-0.294345f,-0.0121494f,0.0900281f}, - {-0.294121f,-0.0141339f,0.0900281f},{-0.294322f,-0.0131516f,0.0900281f},{-0.294121f,-0.0141339f,0.0918925f}, - {-0.291949f,-0.00792586f,0.0918925f},{-0.29195f,-0.00792654f,0.0900281f},{-0.291078f,-0.00743177f,0.0900281f}, - {-0.290131f,-0.00710074f,0.0900281f},{-0.291076f,-0.00743116f,0.0918925f},{-0.290129f,-0.00710007f,0.0918925f}, - {-0.28914f,-0.00694354f,0.0900281f},{-0.289139f,-0.00694356f,0.0918925f},{-0.288138f,-0.00696625f,0.0900281f}, - {-0.288136f,-0.00696632f,0.0918925f},{-0.283634f,0.0121669f,0.0900281f},{-0.282482f,0.0102959f,0.0900281f}, - {-0.282482f,0.0102961f,0.0918925f},{-0.283634f,0.012167f,0.0918925f},{-0.284976f,0.013914f,0.0900281f}, - {-0.281528f,0.008319f,0.0918925f},{-0.281527f,0.00831882f,0.0900281f},{-0.280779f,0.00625128f,0.0918925f}, - {-0.280779f,0.00625078f,0.0900281f},{-0.280246f,0.00411456f,0.0918925f},{-0.280246f,0.00411435f,0.0900281f}, - {-0.279936f,0.00194003f,0.0900281f},{-0.279936f,0.0019402f,0.0918925f},{-0.279849f,-0.000253827f,0.0918925f}, - {-0.279988f,-0.00245022f,0.0918925f},{-0.279849f,-0.00025393f,0.0900281f},{-0.279988f,-0.00245022f,0.0900281f}, - {-0.286486f,0.0155106f,0.0900281f},{-0.284976f,0.0139141f,0.0918925f},{-0.286486f,0.0155107f,0.0918925f}, - {-0.288149f,0.016943f,0.0900281f},{-0.28815f,0.0169431f,0.0918925f},{-0.289954f,0.0181996f,0.0900281f}, - {-0.29188f,0.0192663f,0.0900281f},{-0.289954f,0.0181999f,0.0918925f},{-0.291881f,0.0192664f,0.0918925f}, - {-0.293901f,0.0201277f,0.0900281f},{-0.293901f,0.0201278f,0.0918925f},{-0.295998f,0.0207778f,0.0900281f}, - {-0.298156f,0.0212106f,0.0900281f},{-0.295998f,0.0207778f,0.0918925f},{-0.298156f,0.0212106f,0.0918925f}, - {-0.303955f,0.0200545f,0.0900281f},{-0.302604f,0.0207145f,0.0918925f},{-0.303956f,0.020054f,0.0918925f}, - {-0.305176f,0.0191712f,0.0900281f},{-0.302603f,0.0207149f,0.0900281f},{-0.301156f,0.0211353f,0.0918925f}, - {-0.305176f,0.0191712f,0.0918925f},{-0.301155f,0.0211356f,0.0900281f},{-0.29966f,0.021302f,0.0918925f}, - {-0.299659f,0.0213021f,0.0900281f},{-0.306228f,0.0180928f,0.0900281f},{-0.306229f,0.018092f,0.0918925f}, - {-0.307079f,0.0168512f,0.0918925f},{-0.307079f,0.0168521f,0.0900281f},{-0.307707f,0.0154797f,0.0918925f}, - {-0.307707f,0.0154807f,0.0900281f},{-0.30809f,0.0140259f,0.0900281f},{-0.30809f,0.014025f,0.0918925f}, - {-0.314904f,0.00703853f,0.0918925f},{-0.317768f,0.00856991f,0.0918925f},{-0.31692f,0.0078732f,0.0900281f}, - {-0.31692f,0.00787361f,0.0918925f},{-0.315954f,0.00735691f,0.0918925f},{-0.315953f,0.0073566f,0.0900281f}, - {-0.314904f,0.00703838f,0.0900281f},{-0.31898f,0.0103834f,0.0900281f},{-0.31898f,0.0103841f,0.0918925f}, - {-0.319299f,0.0114331f,0.0918925f},{-0.317767f,0.00856857f,0.0900281f},{-0.318464f,0.00941743f,0.0918925f}, - {-0.318463f,0.00941663f,0.0900281f},{-0.319406f,0.0125242f,0.0918925f},{-0.319298f,0.0114326f,0.0900281f}, - {-0.319406f,0.0125242f,0.0900281f},{-0.32063f,0.017806f,0.0900281f},{-0.32063f,0.0178073f,0.0918925f}, - {-0.321554f,0.0193785f,0.0900281f},{-0.321554f,0.0193787f,0.0918925f},{-0.319955f,0.0161135f,0.0918925f}, - {-0.319955f,0.0161128f,0.0900281f},{-0.319544f,0.0143418f,0.0900281f},{-0.319544f,0.0143423f,0.0918925f}, - {-0.322701f,0.0207886f,0.0900281f},{-0.324052f,0.0220123f,0.0900281f},{-0.322701f,0.0207888f,0.0918925f}, - {-0.324053f,0.0220132f,0.0918925f},{-0.325573f,0.023018f,0.0900281f},{-0.325573f,0.0230183f,0.0918925f}, - {-0.327224f,0.02378f,0.0900281f},{-0.328976f,0.0242851f,0.0900281f},{-0.327224f,0.0237802f,0.0918925f}, - {-0.328976f,0.0242851f,0.0918925f},{-0.409092f,0.0744192f,0.0918925f},{-0.409092f,0.0744192f,0.0900281f}, - {-0.405539f,0.0700077f,0.0900281f},{-0.401803f,0.065746f,0.0900281f},{-0.405539f,0.0700077f,0.0918925f}, - {-0.397891f,0.06164f,0.0900281f},{-0.401803f,0.0657461f,0.0918925f},{-0.397891f,0.0616401f,0.0918925f}, - {-0.393805f,0.0576956f,0.0900281f},{-0.389551f,0.0539185f,0.0900281f},{-0.393805f,0.0576957f,0.0918925f}, - {-0.385134f,0.0503158f,0.0900281f},{-0.389551f,0.0539186f,0.0918925f},{-0.385135f,0.050316f,0.0918925f}, - {-0.380577f,0.0469052f,0.0900281f},{-0.375889f,0.0436939f,0.0900281f},{-0.380577f,0.0469052f,0.0918925f}, - {-0.371079f,0.0406851f,0.0900281f},{-0.375889f,0.0436939f,0.0918925f},{-0.371079f,0.0406851f,0.0918925f}, - {-0.366152f,0.0378819f,0.0900281f},{-0.361116f,0.0352877f,0.0900281f},{-0.366152f,0.037882f,0.0918925f}, - {-0.355977f,0.0329054f,0.0900281f},{-0.361116f,0.0352877f,0.0918925f},{-0.355977f,0.0329055f,0.0918925f}, - {-0.350742f,0.0307383f,0.0900281f},{-0.345418f,0.0287896f,0.0900281f},{-0.350742f,0.0307384f,0.0918925f}, - {-0.340011f,0.0270624f,0.0900281f},{-0.345418f,0.0287897f,0.0918925f},{-0.340011f,0.0270624f,0.0918925f}, - {-0.334528f,0.0255598f,0.0900281f},{-0.334528f,0.0255599f,0.0918925f},{-0.412458f,0.0789746f,0.0918925f}, - {-0.412458f,0.0789746f,0.0900281f},{-0.415634f,0.0836681f,0.0918925f},{-0.418614f,0.0884938f,0.0918925f}, - {-0.415634f,0.083668f,0.0900281f},{-0.421394f,0.0934459f,0.0918925f},{-0.418614f,0.0884937f,0.0900281f}, - {-0.421394f,0.0934458f,0.0900281f},{-0.423969f,0.0985185f,0.0918925f},{-0.426335f,0.103704f,0.0918925f}, - {-0.423969f,0.0985183f,0.0900281f},{-0.428478f,0.108978f,0.0918925f},{-0.426334f,0.103704f,0.0900281f}, - {-0.428478f,0.108977f,0.0900281f},{-0.430397f,0.114326f,0.0918925f},{-0.432088f,0.119742f,0.0918925f}, - {-0.430397f,0.114326f,0.0900281f},{-0.43355f,0.125218f,0.0918925f},{-0.432088f,0.119742f,0.0900281f}, - {-0.43355f,0.125218f,0.0900281f},{-0.434783f,0.130747f,0.0918925f},{-0.435785f,0.136322f,0.0918925f}, - {-0.434783f,0.130747f,0.0900281f},{-0.436554f,0.141936f,0.0918925f},{-0.435785f,0.136322f,0.0900281f}, - {-0.436554f,0.141935f,0.0900281f},{-0.43709f,0.14758f,0.0918925f},{-0.43739f,0.153248f,0.0918925f}, - {-0.43709f,0.14758f,0.0900281f},{-0.437453f,0.158933f,0.0918925f},{-0.43739f,0.153248f,0.0900281f}, - {-0.437453f,0.158933f,0.0900281f},{-0.437279f,0.164627f,0.0918925f},{-0.437279f,0.164627f,0.0900281f}, - {-0.445352f,0.169288f,0.0900281f},{-0.445352f,0.169288f,0.0918925f},{-0.489867f,0.0239114f,0.0918925f}, - {-0.490408f,0.0143525f,0.0918925f},{-0.490408f,0.0143527f,0.0900281f},{-0.490679f,-0.00478512f,0.0900281f}, - {-0.490679f,0.00478519f,0.0900281f},{-0.490679f,0.00478512f,0.0918925f},{-0.489867f,0.0239115f,0.0900281f}, - {-0.489056f,0.0334558f,0.0918925f},{-0.489056f,0.0334558f,0.0900281f},{-0.487973f,0.0429801f,0.0900281f}, - {-0.487973f,0.04298f,0.0918925f},{-0.486621f,0.0524782f,0.0918925f},{-0.486621f,0.0524784f,0.0900281f}, - {-0.484998f,0.0619436f,0.0900281f},{-0.484998f,0.0619434f,0.0918925f},{-0.480955f,0.0806965f,0.0900281f}, - {-0.47854f,0.089968f,0.0900281f},{-0.47854f,0.0899679f,0.0918925f},{-0.483109f,0.0713532f,0.0918925f}, - {-0.483109f,0.0713532f,0.0900281f},{-0.480955f,0.0806964f,0.0918925f},{-0.475866f,0.0991622f,0.0918925f}, - {-0.475866f,0.0991623f,0.0900281f},{-0.472933f,0.108274f,0.0900281f},{-0.472933f,0.108274f,0.0918925f}, - {-0.469745f,0.117298f,0.0918925f},{-0.469745f,0.117298f,0.0900281f},{-0.466302f,0.126228f,0.0918925f}, - {-0.458664f,0.143787f,0.0900281f},{-0.458664f,0.143786f,0.0918925f},{-0.462608f,0.135059f,0.0900281f}, - {-0.462608f,0.135059f,0.0918925f},{-0.466302f,0.126228f,0.0900281f},{-0.454472f,0.152404f,0.0900281f}, - {-0.454472f,0.152404f,0.0918925f},{-0.450034f,0.160907f,0.0900281f},{-0.450034f,0.160906f,0.0918925f}, - {-0.490679f,-0.00478519f,0.0918925f},{-0.490408f,-0.0143525f,0.0900281f},{-0.490408f,-0.0143527f,0.0918925f}, - {-0.489867f,-0.0239114f,0.0900281f},{-0.489056f,-0.0334558f,0.0900281f},{-0.489867f,-0.0239115f,0.0918925f}, - {-0.489056f,-0.0334558f,0.0918925f},{-0.487973f,-0.04298f,0.0900281f},{-0.487973f,-0.0429801f,0.0918925f}, - {-0.486621f,-0.0524782f,0.0900281f},{-0.484998f,-0.0619434f,0.0900281f},{-0.486621f,-0.0524784f,0.0918925f}, - {-0.484998f,-0.0619436f,0.0918925f},{-0.483109f,-0.0713532f,0.0900281f},{-0.483109f,-0.0713532f,0.0918925f}, - {-0.480955f,-0.0806964f,0.0900281f},{-0.47854f,-0.0899679f,0.0900281f},{-0.480955f,-0.0806965f,0.0918925f}, - {-0.47854f,-0.089968f,0.0918925f},{-0.475866f,-0.0991622f,0.0900281f},{-0.475866f,-0.0991623f,0.0918925f}, - {-0.472933f,-0.108274f,0.0900281f},{-0.469745f,-0.117298f,0.0900281f},{-0.472933f,-0.108274f,0.0918925f}, - {-0.469745f,-0.117298f,0.0918925f},{-0.466302f,-0.126228f,0.0900281f},{-0.466302f,-0.126228f,0.0918925f}, - {-0.462608f,-0.135059f,0.0900281f},{-0.458664f,-0.143786f,0.0900281f},{-0.462608f,-0.135059f,0.0918925f}, - {-0.458664f,-0.143787f,0.0918925f},{-0.454472f,-0.152404f,0.0900281f},{-0.454472f,-0.152404f,0.0918925f}, - {-0.450034f,-0.160906f,0.0900281f},{-0.445352f,-0.169288f,0.0900281f},{-0.450034f,-0.160907f,0.0918925f}, - {-0.445352f,-0.169288f,0.0918925f},{-0.427553f,0.169776f,0.0918925f},{-0.448656f,0.18196f,0.0900281f}, - {-0.448656f,0.18196f,0.0918925f},{-0.427553f,0.169776f,0.0900281f},{-0.400468f,0.0785294f,0.0900281f}, - {-0.403757f,0.0828396f,0.0900281f},{-0.403757f,0.0828395f,0.0918925f},{-0.396993f,0.0743574f,0.0900281f}, - {-0.396993f,0.074357f,0.0918925f},{-0.393337f,0.0703325f,0.0900281f},{-0.406855f,0.0872815f,0.0918925f}, - {-0.400468f,0.0785292f,0.0918925f},{-0.406855f,0.0872816f,0.0900281f},{-0.409759f,0.0918488f,0.0918925f}, - {-0.409759f,0.091849f,0.0900281f},{-0.412465f,0.0965352f,0.0900281f},{-0.412465f,0.0965352f,0.0918925f}, - {-0.41497f,0.101334f,0.0918925f},{-0.41497f,0.101334f,0.0900281f},{-0.417269f,0.106239f,0.0900281f}, - {-0.419359f,0.111243f,0.0918925f},{-0.417269f,0.106239f,0.0918925f},{-0.419359f,0.111243f,0.0900281f}, - {-0.421236f,0.116342f,0.0900281f},{-0.421236f,0.116341f,0.0918925f},{-0.425533f,0.132038f,0.0918925f}, - {-0.424327f,0.126754f,0.0900281f},{-0.425533f,0.132038f,0.0900281f},{-0.422894f,0.121519f,0.0918925f}, - {-0.422894f,0.121519f,0.0900281f},{-0.424327f,0.126754f,0.0918925f},{-0.426511f,0.137363f,0.0918925f}, - {-0.427261f,0.142723f,0.0918925f},{-0.426511f,0.137364f,0.0900281f},{-0.427261f,0.142723f,0.0900281f}, - {-0.427781f,0.14811f,0.0900281f},{-0.428071f,0.153516f,0.0900281f},{-0.428071f,0.153516f,0.0918925f}, - {-0.427781f,0.14811f,0.0918925f},{-0.428131f,0.158934f,0.0900281f},{-0.428131f,0.158934f,0.0918925f}, - {-0.427958f,0.164357f,0.0900281f},{-0.427958f,0.164356f,0.0918925f},{-0.389518f,0.0664729f,0.0900281f}, - {-0.393337f,0.0703321f,0.0918925f},{-0.389518f,0.0664728f,0.0918925f},{-0.385543f,0.0627861f,0.0900281f}, - {-0.385543f,0.0627861f,0.0918925f},{-0.381418f,0.0592762f,0.0900281f},{-0.37715f,0.0559475f,0.0900281f}, - {-0.381418f,0.0592761f,0.0918925f},{-0.37715f,0.0559474f,0.0918925f},{-0.372745f,0.0528044f,0.0900281f}, - {-0.372745f,0.0528044f,0.0918925f},{-0.368209f,0.0498513f,0.0900281f},{-0.363547f,0.0470924f,0.0900281f}, - {-0.368209f,0.0498511f,0.0918925f},{-0.363547f,0.0470923f,0.0918925f},{-0.358766f,0.0445321f,0.0900281f}, - {-0.358766f,0.0445321f,0.0918925f},{-0.353872f,0.042175f,0.0900281f},{-0.348877f,0.0400276f,0.0900281f}, - {-0.353871f,0.0421746f,0.0918925f},{-0.348877f,0.0400276f,0.0918925f},{-0.343803f,0.0380996f,0.0900281f}, - {-0.343803f,0.0380996f,0.0918925f},{-0.338659f,0.0363926f,0.0900281f},{-0.333452f,0.0349082f,0.0900281f}, - {-0.338659f,0.0363926f,0.0918925f},{-0.333452f,0.0349082f,0.0918925f},{-0.328189f,0.033648f,0.0900281f}, - {-0.328189f,0.0336479f,0.0918925f},{-0.322877f,0.0326134f,0.0900281f},{-0.317524f,0.031806f,0.0900281f}, - {-0.322877f,0.0326134f,0.0918925f},{-0.317524f,0.031806f,0.0918925f},{-0.312137f,0.0312275f,0.0900281f}, - {-0.312136f,0.0312274f,0.0918925f},{-0.306722f,0.0308792f,0.0900281f},{-0.301289f,0.0307628f,0.0900281f}, - {-0.306722f,0.0308792f,0.0918925f},{-0.301289f,0.0307628f,0.0918925f},{-0.270526f,-2.46733e-016f,0.0918925f}, - {-0.270526f,-1.77184e-016f,0.0900281f},{-0.270571f,0.00166887f,0.0900281f},{-0.270707f,0.0033296f,0.0900281f}, - {-0.270571f,0.00166875f,0.0918925f},{-0.270931f,0.00497861f,0.0900281f},{-0.270706f,0.00332938f,0.0918925f}, - {-0.270931f,0.00497832f,0.0918925f},{-0.271245f,0.00661229f,0.0900281f},{-0.271646f,0.00822706f,0.0900281f}, - {-0.271245f,0.00661197f,0.0918925f},{-0.272135f,0.00981931f,0.0900281f},{-0.271646f,0.00822672f,0.0918925f}, - {-0.272135f,0.009819f,0.0918925f},{-0.27271f,0.0113858f,0.0900281f},{-0.27337f,0.0129196f,0.0900281f}, - {-0.27271f,0.0113852f,0.0918925f},{-0.274111f,0.0144128f,0.0900281f},{-0.27337f,0.0129192f,0.0918925f}, - {-0.274111f,0.0144127f,0.0918925f},{-0.27493f,0.0158618f,0.0900281f},{-0.275826f,0.0172635f,0.0900281f}, - {-0.27493f,0.0158617f,0.0918925f},{-0.276797f,0.0186148f,0.0900281f},{-0.275826f,0.0172633f,0.0918925f}, - {-0.276797f,0.0186146f,0.0918925f},{-0.27784f,0.0199127f,0.0900281f},{-0.278954f,0.0211544f,0.0900281f}, - {-0.27784f,0.0199124f,0.0918925f},{-0.280135f,0.0223352f,0.0900281f},{-0.278953f,0.0211538f,0.0918925f}, - {-0.280134f,0.0223347f,0.0918925f},{-0.281376f,0.0234487f,0.0900281f},{-0.282674f,0.0244917f,0.0900281f}, - {-0.281376f,0.0234485f,0.0918925f},{-0.284025f,0.0254622f,0.0900281f},{-0.282674f,0.0244916f,0.0918925f}, - {-0.284025f,0.0254621f,0.0918925f},{-0.285427f,0.0263582f,0.0900281f},{-0.286876f,0.0271776f,0.0900281f}, - {-0.285427f,0.0263581f,0.0918925f},{-0.288369f,0.0279185f,0.0900281f},{-0.286876f,0.0271775f,0.0918925f}, - {-0.288369f,0.0279183f,0.0918925f},{-0.289903f,0.0285784f,0.0900281f},{-0.29147f,0.0291536f,0.0900281f}, - {-0.289903f,0.0285781f,0.0918925f},{-0.293062f,0.0296423f,0.0900281f},{-0.291469f,0.0291535f,0.0918925f}, - {-0.293061f,0.0296423f,0.0918925f},{-0.294677f,0.0300438f,0.0900281f},{-0.29631f,0.0303573f,0.0900281f}, - {-0.294676f,0.0300437f,0.0918925f},{-0.297959f,0.0305821f,0.0900281f},{-0.29631f,0.0303572f,0.0918925f}, - {-0.297959f,0.030582f,0.0918925f},{-0.29962f,0.0307175f,0.0900281f},{-0.29962f,0.0307174f,0.0918925f}, - {-0.270571f,-0.00166887f,0.0918925f},{-0.270571f,-0.00166875f,0.0900281f},{-0.270707f,-0.0033296f,0.0918925f}, - {-0.270931f,-0.00497861f,0.0918925f},{-0.270706f,-0.00332938f,0.0900281f},{-0.271245f,-0.00661229f,0.0918925f}, - {-0.270931f,-0.00497832f,0.0900281f},{-0.271245f,-0.00661197f,0.0900281f},{-0.271646f,-0.00822706f,0.0918925f}, - {-0.272135f,-0.00981931f,0.0918925f},{-0.271646f,-0.00822672f,0.0900281f},{-0.27271f,-0.0113858f,0.0918925f}, - {-0.272135f,-0.009819f,0.0900281f},{-0.27271f,-0.0113852f,0.0900281f},{-0.27337f,-0.0129196f,0.0918925f}, - {-0.274111f,-0.0144128f,0.0918925f},{-0.27337f,-0.0129192f,0.0900281f},{-0.27493f,-0.0158618f,0.0918925f}, - {-0.274111f,-0.0144127f,0.0900281f},{-0.27493f,-0.0158617f,0.0900281f},{-0.275826f,-0.0172635f,0.0918925f}, - {-0.276797f,-0.0186148f,0.0918925f},{-0.275826f,-0.0172633f,0.0900281f},{-0.27784f,-0.0199127f,0.0918925f}, - {-0.276797f,-0.0186146f,0.0900281f},{-0.27784f,-0.0199124f,0.0900281f},{-0.278954f,-0.0211544f,0.0918925f}, - {-0.280135f,-0.0223352f,0.0918925f},{-0.278953f,-0.0211538f,0.0900281f},{-0.281376f,-0.0234487f,0.0918925f}, - {-0.280134f,-0.0223347f,0.0900281f},{-0.281376f,-0.0234485f,0.0900281f},{-0.282674f,-0.0244917f,0.0918925f}, - {-0.284025f,-0.0254622f,0.0918925f},{-0.282674f,-0.0244916f,0.0900281f},{-0.285427f,-0.0263582f,0.0918925f}, - {-0.284025f,-0.0254621f,0.0900281f},{-0.285427f,-0.0263581f,0.0900281f},{-0.286876f,-0.0271776f,0.0918925f}, - {-0.288369f,-0.0279185f,0.0918925f},{-0.286876f,-0.0271775f,0.0900281f},{-0.289903f,-0.0285784f,0.0918925f}, - {-0.288369f,-0.0279183f,0.0900281f},{-0.289903f,-0.0285781f,0.0900281f},{-0.29147f,-0.0291536f,0.0918925f}, - {-0.293062f,-0.0296423f,0.0918925f},{-0.291469f,-0.0291535f,0.0900281f},{-0.294677f,-0.0300438f,0.0918925f}, - {-0.293061f,-0.0296423f,0.0900281f},{-0.294676f,-0.0300437f,0.0900281f},{-0.29631f,-0.0303573f,0.0918925f}, - {-0.297959f,-0.0305821f,0.0918925f},{-0.29631f,-0.0303572f,0.0900281f},{-0.29962f,-0.0307175f,0.0918925f}, - {-0.297959f,-0.030582f,0.0900281f},{-0.29962f,-0.0307174f,0.0900281f},{-0.301289f,-0.0307628f,0.0918925f}, - {-0.301289f,-0.0307628f,0.0900281f},{-0.389518f,-0.0664728f,0.0900281f},{-0.385543f,-0.0627861f,0.0900281f}, - {-0.385543f,-0.0627861f,0.0918925f},{-0.393337f,-0.0703321f,0.0900281f},{-0.393337f,-0.0703325f,0.0918925f}, - {-0.396993f,-0.074357f,0.0900281f},{-0.381418f,-0.0592762f,0.0918925f},{-0.389518f,-0.0664729f,0.0918925f}, - {-0.381418f,-0.0592761f,0.0900281f},{-0.37715f,-0.0559475f,0.0918925f},{-0.37715f,-0.0559474f,0.0900281f}, - {-0.372745f,-0.0528044f,0.0900281f},{-0.372745f,-0.0528044f,0.0918925f},{-0.368209f,-0.0498513f,0.0918925f}, - {-0.368209f,-0.0498511f,0.0900281f},{-0.363547f,-0.0470923f,0.0900281f},{-0.358766f,-0.0445321f,0.0918925f}, - {-0.363547f,-0.0470924f,0.0918925f},{-0.358766f,-0.0445321f,0.0900281f},{-0.353871f,-0.0421746f,0.0900281f}, - {-0.353872f,-0.042175f,0.0918925f},{-0.338659f,-0.0363926f,0.0918925f},{-0.343803f,-0.0380996f,0.0900281f}, - {-0.338659f,-0.0363926f,0.0900281f},{-0.348877f,-0.0400276f,0.0918925f},{-0.348877f,-0.0400276f,0.0900281f}, - {-0.343803f,-0.0380996f,0.0918925f},{-0.333452f,-0.0349082f,0.0918925f},{-0.328189f,-0.033648f,0.0918925f}, - {-0.333452f,-0.0349082f,0.0900281f},{-0.328189f,-0.0336479f,0.0900281f},{-0.322877f,-0.0326134f,0.0900281f}, - {-0.317524f,-0.031806f,0.0900281f},{-0.317524f,-0.031806f,0.0918925f},{-0.322877f,-0.0326134f,0.0918925f}, - {-0.312136f,-0.0312274f,0.0900281f},{-0.312137f,-0.0312275f,0.0918925f},{-0.306722f,-0.0308792f,0.0900281f}, - {-0.306722f,-0.0308792f,0.0918925f},{-0.400468f,-0.0785292f,0.0900281f},{-0.396993f,-0.0743574f,0.0918925f}, - {-0.400468f,-0.0785294f,0.0918925f},{-0.403757f,-0.0828395f,0.0900281f},{-0.403757f,-0.0828396f,0.0918925f}, - {-0.406855f,-0.0872815f,0.0900281f},{-0.409759f,-0.0918488f,0.0900281f},{-0.406855f,-0.0872816f,0.0918925f}, - {-0.409759f,-0.091849f,0.0918925f},{-0.412465f,-0.0965352f,0.0900281f},{-0.412465f,-0.0965352f,0.0918925f}, - {-0.41497f,-0.101334f,0.0900281f},{-0.417269f,-0.106239f,0.0900281f},{-0.41497f,-0.101334f,0.0918925f}, - {-0.417269f,-0.106239f,0.0918925f},{-0.419359f,-0.111243f,0.0900281f},{-0.419359f,-0.111243f,0.0918925f}, - {-0.421236f,-0.116341f,0.0900281f},{-0.422894f,-0.121519f,0.0900281f},{-0.421236f,-0.116342f,0.0918925f}, - {-0.422894f,-0.121519f,0.0918925f},{-0.424327f,-0.126754f,0.0900281f},{-0.424327f,-0.126754f,0.0918925f}, - {-0.425533f,-0.132038f,0.0900281f},{-0.426511f,-0.137363f,0.0900281f},{-0.425533f,-0.132038f,0.0918925f}, - {-0.426511f,-0.137364f,0.0918925f},{-0.427261f,-0.142723f,0.0900281f},{-0.427261f,-0.142723f,0.0918925f}, - {-0.427781f,-0.14811f,0.0900281f},{-0.428071f,-0.153516f,0.0900281f},{-0.427781f,-0.14811f,0.0918925f}, - {-0.428071f,-0.153516f,0.0918925f},{-0.428131f,-0.158934f,0.0900281f},{-0.428131f,-0.158934f,0.0918925f}, - {-0.427958f,-0.164356f,0.0900281f},{-0.427553f,-0.169776f,0.0900281f},{-0.427958f,-0.164357f,0.0918925f}, - {-0.427553f,-0.169776f,0.0918925f},{-0.448656f,-0.18196f,0.0918925f},{-0.448656f,-0.18196f,0.0900281f}, - {-0.5f,-0.0049028f,0.0918925f},{-0.5f,0.00490289f,0.0918925f},{-0.5f,-0.00490289f,0.0900281f}, - {-0.499724f,-0.0147057f,0.0900281f},{-0.499724f,-0.0147055f,0.0918925f},{-0.499171f,-0.0244996f,0.0900281f}, - {-0.499171f,-0.0244996f,0.0918925f},{-0.498342f,-0.0342788f,0.0918925f},{-0.498342f,-0.034279f,0.0900281f}, - {-0.497236f,-0.0440377f,0.0900281f},{-0.497236f,-0.0440376f,0.0918925f},{-0.495854f,-0.05377f,0.0900281f}, - {-0.495854f,-0.05377f,0.0918925f},{-0.494196f,-0.0634697f,0.0918925f},{-0.494196f,-0.0634706f,0.0900281f}, - {-0.492264f,-0.0731194f,0.0900281f},{-0.492264f,-0.0731193f,0.0918925f},{-0.490062f,-0.0826996f,0.0900281f}, - {-0.490062f,-0.0826996f,0.0918925f},{-0.487593f,-0.0922052f,0.0918925f},{-0.487593f,-0.0922054f,0.0900281f}, - {-0.484859f,-0.101631f,0.0900281f},{-0.484859f,-0.101631f,0.0918925f},{-0.481861f,-0.110971f,0.0900281f}, - {-0.481861f,-0.110971f,0.0918925f},{-0.478603f,-0.120221f,0.0918925f},{-0.478602f,-0.120221f,0.0900281f}, - {-0.475085f,-0.129374f,0.0900281f},{-0.475085f,-0.129374f,0.0918925f},{-0.47131f,-0.138425f,0.0900281f}, - {-0.47131f,-0.138425f,0.0918925f},{-0.46728f,-0.147368f,0.0918925f},{-0.46728f,-0.147369f,0.0900281f}, - {-0.462998f,-0.156199f,0.0900281f},{-0.462998f,-0.156199f,0.0918925f},{-0.458465f,-0.164912f,0.0900281f}, - {-0.458465f,-0.164912f,0.0918925f},{-0.453684f,-0.173501f,0.0918925f},{-0.453684f,-0.173501f,0.0900281f}, - {-0.5f,0.0049028f,0.0900281f},{-0.499724f,0.0147055f,0.0900281f},{-0.499724f,0.0147057f,0.0918925f}, - {-0.499171f,0.0244996f,0.0918925f},{-0.499171f,0.0244996f,0.0900281f},{-0.498342f,0.034279f,0.0918925f}, - {-0.498342f,0.0342788f,0.0900281f},{-0.497236f,0.0440376f,0.0900281f},{-0.497236f,0.0440377f,0.0918925f}, - {-0.495854f,0.05377f,0.0918925f},{-0.495854f,0.05377f,0.0900281f},{-0.494196f,0.0634706f,0.0918925f}, - {-0.494196f,0.0634697f,0.0900281f},{-0.492264f,0.0731193f,0.0900281f},{-0.492264f,0.0731194f,0.0918925f}, - {-0.490062f,0.0826996f,0.0918925f},{-0.490062f,0.0826996f,0.0900281f},{-0.487593f,0.0922054f,0.0918925f}, - {-0.487593f,0.0922052f,0.0900281f},{-0.484859f,0.101631f,0.0900281f},{-0.484859f,0.101631f,0.0918925f}, - {-0.481861f,0.110971f,0.0918925f},{-0.481861f,0.110971f,0.0900281f},{-0.478602f,0.120221f,0.0918925f}, - {-0.478603f,0.120221f,0.0900281f},{-0.475085f,0.129374f,0.0900281f},{-0.475085f,0.129374f,0.0918925f}, - {-0.47131f,0.138425f,0.0918925f},{-0.47131f,0.138425f,0.0900281f},{-0.46728f,0.147369f,0.0918925f}, - {-0.46728f,0.147368f,0.0900281f},{-0.462998f,0.156199f,0.0900281f},{-0.462998f,0.156199f,0.0918925f}, - {-0.458465f,0.164912f,0.0918925f},{-0.458465f,0.164912f,0.0900281f},{-0.453684f,0.173501f,0.0918925f}, - {-0.453684f,0.173501f,0.0900281f},{-0.295886f,-0.0200317f,0.0918925f},{-0.280259f,-0.0036392f,0.0918925f}, - {-0.280781f,-0.00474168f,0.0918925f},{-0.28931f,-0.0152687f,0.0918925f},{-0.29453f,-0.0183517f,0.0918925f}, - {-0.28153f,-0.0057053f,0.0918925f},{-0.291507f,-0.0130697f,0.0918925f},{-0.289835f,-0.0151095f,0.0918925f}, - {-0.294119f,-0.0173478f,0.0918925f},{-0.291087f,-0.0109706f,0.0918925f},{-0.290739f,-0.0105473f,0.0918925f}, - {-0.295126f,-0.0192577f,0.0918925f},{-0.296782f,-0.0206442f,0.0918925f},{-0.297778f,-0.0210723f,0.0918925f}, - {-0.290316f,-0.0101998f,0.0918925f},{-0.291091f,-0.0140791f,0.0918925f},{-0.293911f,-0.0151984f,0.0918925f}, - {-0.290742f,-0.0145033f,0.0918925f},{-0.315791f,0.0105451f,0.0918925f},{-0.315367f,0.0101973f,0.0918925f}, - {-0.316139f,0.0109693f,0.0918925f},{-0.314358f,0.00977971f,0.0918925f},{-0.314883f,0.00993885f,0.0918925f}, - {-0.314881f,0.0151067f,0.0918925f},{-0.316555f,0.0119787f,0.0918925f},{-0.316397f,0.0114536f,0.0918925f}, - {-0.316609f,0.0125242f,0.0918925f},{-0.316394f,0.013595f,0.0918925f},{-0.316135f,0.0140778f,0.0918925f}, - {-0.315788f,0.0145011f,0.0918925f},{-0.315364f,0.0148486f,0.0918925f},{-0.314357f,0.015266f,0.0918925f}, - {-0.290318f,-0.0148511f,0.0918925f},{-0.29391f,-0.0162833f,0.0918925f},{-0.291506f,-0.0119779f,0.0918925f}, - {-0.291561f,-0.0125242f,0.0918925f},{-0.291346f,-0.0114534f,0.0918925f},{-0.291349f,-0.0135948f,0.0918925f}, - {-0.289833f,-0.00994166f,0.0918925f},{-0.316555f,0.0130705f,0.0918925f},{-0.289309f,-0.00978241f,0.0918925f}, - {-0.280782f,-0.00474296f,0.0900281f},{-0.297777f,-0.0210725f,0.0900281f},{-0.296781f,-0.020644f,0.0900281f}, - {-0.290742f,-0.0105451f,0.0900281f},{-0.280259f,-0.00364027f,0.0900281f},{-0.289835f,-0.00993885f,0.0900281f}, - {-0.295886f,-0.0200312f,0.0900281f},{-0.295126f,-0.0192574f,0.0900281f},{-0.29391f,-0.0162822f,0.0900281f}, - {-0.290739f,-0.0145011f,0.0900281f},{-0.290316f,-0.0148486f,0.0900281f},{-0.291561f,-0.0125242f,0.0900281f}, - {-0.28931f,-0.00977971f,0.0900281f},{-0.291091f,-0.0109693f,0.0900281f},{-0.290318f,-0.0101973f,0.0900281f}, - {-0.291349f,-0.0114536f,0.0900281f},{-0.315791f,0.0145033f,0.0900281f},{-0.316139f,0.0140791f,0.0900281f}, - {-0.314357f,0.00978241f,0.0900281f},{-0.314881f,0.00994166f,0.0900281f},{-0.294529f,-0.0183513f,0.0900281f}, - {-0.294119f,-0.0173468f,0.0900281f},{-0.289833f,-0.0151067f,0.0900281f},{-0.289309f,-0.015266f,0.0900281f}, - {-0.291087f,-0.0140778f,0.0900281f},{-0.293911f,-0.0151976f,0.0900281f},{-0.291346f,-0.013595f,0.0900281f}, - {-0.28153f,-0.00570553f,0.0900281f},{-0.316555f,0.0119779f,0.0900281f},{-0.315364f,0.0101998f,0.0900281f}, - {-0.316609f,0.0125242f,0.0900281f},{-0.316555f,0.0130697f,0.0900281f},{-0.316397f,0.0135948f,0.0900281f}, - {-0.315367f,0.0148511f,0.0900281f},{-0.314883f,0.0151095f,0.0900281f},{-0.316135f,0.0109706f,0.0900281f}, - {-0.314358f,0.0152687f,0.0900281f},{-0.316394f,0.0114534f,0.0900281f},{-0.315788f,0.0105473f,0.0900281f}, - {-0.291507f,-0.0119787f,0.0900281f},{-0.291506f,-0.0130705f,0.0900281f},{0.285968f,0.0125242f,0.0900281f}, - {0.286022f,0.0130723f,0.0918925f},{0.285968f,0.0125242f,0.0918925f},{0.286181f,0.011454f,0.0918925f}, - {0.286181f,0.011454f,0.0900281f},{0.286022f,0.0119761f,0.0918925f},{0.286022f,0.0119761f,0.0900281f}, - {0.286438f,0.0109726f,0.0900281f},{0.286787f,0.0105467f,0.0900281f},{0.286787f,0.0105467f,0.0918925f}, - {0.287213f,0.0101975f,0.0900281f},{0.287213f,0.0101975f,0.0918925f},{0.286438f,0.0109726f,0.0918925f}, - {0.288764f,0.00972758f,0.0900281f},{0.288216f,0.00978182f,0.0900281f},{0.288216f,0.00978182f,0.0918925f}, - {0.287694f,0.00994047f,0.0918925f},{0.287694f,0.00994047f,0.0900281f},{0.288764f,0.00972758f,0.0918925f}, - {0.286022f,0.0130723f,0.0900281f},{0.286181f,0.0135944f,0.0918925f},{0.286181f,0.0135944f,0.0900281f}, - {0.286438f,0.0140758f,0.0900281f},{0.286438f,0.0140758f,0.0918925f},{0.286787f,0.0145017f,0.0900281f}, - {0.286787f,0.0145017f,0.0918925f},{0.287213f,0.0148509f,0.0918925f},{0.287213f,0.0148509f,0.0900281f}, - {0.287694f,0.0151079f,0.0900281f},{0.287694f,0.0151079f,0.0918925f},{0.288216f,0.0152666f,0.0900281f}, - {0.288216f,0.0152666f,0.0918925f},{0.288764f,0.0153208f,0.0918925f},{0.288764f,0.0153208f,0.0900281f}, - {0.311016f,-0.0125242f,0.0900281f},{0.31107f,-0.0119761f,0.0918925f},{0.311016f,-0.0125242f,0.0918925f}, - {0.311229f,-0.0135944f,0.0918925f},{0.311229f,-0.0135944f,0.0900281f},{0.31107f,-0.0130723f,0.0918925f}, - {0.31107f,-0.0130723f,0.0900281f},{0.311486f,-0.0140758f,0.0900281f},{0.311835f,-0.0145017f,0.0900281f}, - {0.311835f,-0.0145017f,0.0918925f},{0.312261f,-0.0148509f,0.0900281f},{0.312261f,-0.0148509f,0.0918925f}, - {0.311486f,-0.0140758f,0.0918925f},{0.313813f,-0.0153208f,0.0900281f},{0.313265f,-0.0152666f,0.0900281f}, - {0.313265f,-0.0152666f,0.0918925f},{0.312743f,-0.0151079f,0.0918925f},{0.312743f,-0.0151079f,0.0900281f}, - {0.313813f,-0.0153208f,0.0918925f},{0.31107f,-0.0119761f,0.0900281f},{0.311229f,-0.011454f,0.0918925f}, - {0.311229f,-0.011454f,0.0900281f},{0.311486f,-0.0109726f,0.0900281f},{0.311486f,-0.0109726f,0.0918925f}, - {0.311835f,-0.0105467f,0.0900281f},{0.311835f,-0.0105467f,0.0918925f},{0.312261f,-0.0101975f,0.0918925f}, - {0.312261f,-0.0101975f,0.0900281f},{0.312743f,-0.00994047f,0.0900281f},{0.312743f,-0.00994047f,0.0918925f}, - {0.313265f,-0.00978182f,0.0900281f},{0.313265f,-0.00978182f,0.0918925f},{0.313813f,-0.00972758f,0.0918925f}, - {0.313813f,-0.00972758f,0.0900281f},{0.284736f,0.0073455f,0.0900281f},{0.285954f,0.00738926f,0.0918925f}, - {0.284736f,0.00734538f,0.0918925f},{0.283556f,0.00703877f,0.0900281f},{0.283555f,0.0070384f,0.0918925f}, - {0.28247f,0.00648281f,0.0900281f},{0.28247f,0.00648282f,0.0918925f},{0.285956f,0.00738915f,0.0900281f}, - {0.287154f,0.00716427f,0.0918925f},{0.287154f,0.00716427f,0.0900281f},{0.309858f,-0.00856857f,0.0918925f}, - {0.310706f,-0.0078732f,0.0918925f},{0.309857f,-0.00856991f,0.0900281f},{0.310705f,-0.00787361f,0.0900281f}, - {0.311673f,-0.0073566f,0.0918925f},{0.312722f,-0.00703838f,0.0918925f},{0.311672f,-0.00735691f,0.0900281f}, - {0.313813f,-0.00693097f,0.0918925f},{0.312721f,-0.00703853f,0.0900281f},{0.313813f,-0.00693097f,0.0900281f}, - {0.309162f,-0.00941743f,0.0900281f},{0.308645f,-0.0103841f,0.0900281f},{0.309162f,-0.00941663f,0.0918925f}, - {0.308327f,-0.0114331f,0.0900281f},{0.308645f,-0.0103834f,0.0918925f},{0.308327f,-0.0114326f,0.0918925f}, - {0.30822f,-0.0125242f,0.0900281f},{0.30822f,-0.0125242f,0.0918925f},{0.401959f,0.065917f,0.0918925f}, - {0.398048f,0.0617984f,0.0918925f},{0.40196f,0.0659174f,0.0900281f},{0.405692f,0.07019f,0.0900281f}, - {0.405691f,0.0701898f,0.0918925f},{0.409237f,0.0746077f,0.0900281f},{0.409237f,0.0746076f,0.0918925f}, - {0.412592f,0.0791643f,0.0918925f},{0.412592f,0.0791644f,0.0900281f},{0.415754f,0.0838538f,0.0900281f}, - {0.415754f,0.0838537f,0.0918925f},{0.418717f,0.0886696f,0.0900281f},{0.418717f,0.0886696f,0.0918925f}, - {0.421479f,0.0936056f,0.0918925f},{0.421479f,0.0936057f,0.0900281f},{0.424035f,0.0986557f,0.0900281f}, - {0.424035f,0.0986556f,0.0918925f},{0.426382f,0.103813f,0.0900281f},{0.426382f,0.103813f,0.0918925f}, - {0.428515f,0.109072f,0.0918925f},{0.428515f,0.109073f,0.0900281f},{0.430428f,0.11442f,0.0900281f}, - {0.430428f,0.11442f,0.0918925f},{0.432114f,0.119834f,0.0900281f},{0.432114f,0.119834f,0.0918925f}, - {0.433572f,0.125306f,0.0918925f},{0.433572f,0.125307f,0.0900281f},{0.4348f,0.130829f,0.0900281f}, - {0.4348f,0.130829f,0.0918925f},{0.435797f,0.136396f,0.0900281f},{0.435797f,0.136396f,0.0918925f}, - {0.436561f,0.141999f,0.0918925f},{0.436561f,0.141999f,0.0900281f},{0.437093f,0.147631f,0.0900281f}, - {0.437093f,0.147631f,0.0918925f},{0.437391f,0.153284f,0.0900281f},{0.437391f,0.153284f,0.0918925f}, - {0.437453f,0.158952f,0.0918925f},{0.437453f,0.158952f,0.0900281f},{0.437279f,0.164627f,0.0900281f}, - {0.437279f,0.164627f,0.0918925f},{0.398048f,0.0617987f,0.0900281f},{0.393973f,0.0578515f,0.0900281f}, - {0.393973f,0.0578514f,0.0918925f},{0.389744f,0.054083f,0.0918925f},{0.389744f,0.0540831f,0.0900281f}, - {0.385366f,0.0504973f,0.0918925f},{0.385366f,0.0504974f,0.0900281f},{0.380846f,0.0470986f,0.0900281f}, - {0.380846f,0.0470985f,0.0918925f},{0.376189f,0.0438908f,0.0918925f},{0.376189f,0.0438908f,0.0900281f}, - {0.371402f,0.0408784f,0.0918925f},{0.371402f,0.0408785f,0.0900281f},{0.36649f,0.0380656f,0.0900281f}, - {0.36649f,0.0380655f,0.0918925f},{0.36146f,0.0354565f,0.0918925f},{0.36146f,0.0354565f,0.0900281f}, - {0.356317f,0.0330551f,0.0918925f},{0.356318f,0.0330554f,0.0900281f},{0.351076f,0.0308688f,0.0900281f}, - {0.351076f,0.0308688f,0.0918925f},{0.345756f,0.0289059f,0.0918925f},{0.345756f,0.0289059f,0.0900281f}, - {0.340366f,0.0271683f,0.0918925f},{0.340366f,0.0271684f,0.0900281f},{0.334914f,0.0256577f,0.0900281f}, - {0.334914f,0.0256577f,0.0918925f},{0.329406f,0.0243753f,0.0918925f},{0.329406f,0.0243754f,0.0900281f}, - {0.32385f,0.0233228f,0.0918925f},{0.32385f,0.0233228f,0.0900281f},{0.318253f,0.0225016f,0.0900281f}, - {0.318253f,0.0225016f,0.0918925f},{0.312622f,0.0219132f,0.0918925f},{0.312623f,0.0219132f,0.0900281f}, - {0.306965f,0.0215591f,0.0918925f},{0.306965f,0.0215591f,0.0900281f},{0.301289f,0.0214407f,0.0918925f}, - {0.301289f,0.0214407f,0.0900281f},{0.300061f,0.0214056f,0.0918925f},{0.300061f,0.0214056f,0.0900281f}, - {0.298838f,0.0213002f,0.0900281f},{0.298838f,0.0213002f,0.0918925f},{0.29272f,0.00857005f,0.0900281f}, - {0.293362f,0.00933952f,0.0900281f},{0.292718f,0.00856812f,0.0918925f},{0.293856f,0.0102104f,0.0918925f}, - {0.293362f,0.00933867f,0.0918925f},{0.293857f,0.010212f,0.0900281f},{0.294188f,0.0111572f,0.0918925f}, - {0.294188f,0.0111588f,0.0900281f},{0.294345f,0.0121484f,0.0918925f},{0.294322f,0.0131504f,0.0918925f}, - {0.294345f,0.0121494f,0.0900281f},{0.294121f,0.0141339f,0.0900281f},{0.294322f,0.0131516f,0.0900281f}, - {0.294121f,0.0141339f,0.0918925f},{0.291949f,0.00792586f,0.0918925f},{0.29195f,0.00792654f,0.0900281f}, - {0.291078f,0.00743177f,0.0900281f},{0.290131f,0.00710074f,0.0900281f},{0.291076f,0.00743116f,0.0918925f}, - {0.290129f,0.00710007f,0.0918925f},{0.28914f,0.00694354f,0.0900281f},{0.289139f,0.00694356f,0.0918925f}, - {0.288138f,0.00696625f,0.0900281f},{0.288136f,0.00696632f,0.0918925f},{0.283634f,-0.0121669f,0.0900281f}, - {0.282482f,-0.0102959f,0.0900281f},{0.282482f,-0.0102961f,0.0918925f},{0.283634f,-0.012167f,0.0918925f}, - {0.284976f,-0.013914f,0.0900281f},{0.281528f,-0.008319f,0.0918925f},{0.281527f,-0.00831882f,0.0900281f}, - {0.280779f,-0.00625128f,0.0918925f},{0.280779f,-0.00625078f,0.0900281f},{0.280246f,-0.00411456f,0.0918925f}, - {0.280246f,-0.00411435f,0.0900281f},{0.279936f,-0.00194003f,0.0900281f},{0.279936f,-0.0019402f,0.0918925f}, - {0.279849f,0.000253827f,0.0918925f},{0.279988f,0.00245022f,0.0918925f},{0.279849f,0.00025393f,0.0900281f}, - {0.279988f,0.00245022f,0.0900281f},{0.286486f,-0.0155106f,0.0900281f},{0.284976f,-0.0139141f,0.0918925f}, - {0.286486f,-0.0155107f,0.0918925f},{0.288149f,-0.016943f,0.0900281f},{0.28815f,-0.0169431f,0.0918925f}, - {0.289954f,-0.0181996f,0.0900281f},{0.29188f,-0.0192663f,0.0900281f},{0.289954f,-0.0181999f,0.0918925f}, - {0.291881f,-0.0192664f,0.0918925f},{0.293901f,-0.0201277f,0.0900281f},{0.293901f,-0.0201278f,0.0918925f}, - {0.295998f,-0.0207778f,0.0900281f},{0.298156f,-0.0212106f,0.0900281f},{0.295998f,-0.0207778f,0.0918925f}, - {0.298156f,-0.0212106f,0.0918925f},{0.303955f,-0.0200545f,0.0900281f},{0.302604f,-0.0207145f,0.0918925f}, - {0.303956f,-0.020054f,0.0918925f},{0.305176f,-0.0191712f,0.0900281f},{0.302603f,-0.0207149f,0.0900281f}, - {0.301156f,-0.0211353f,0.0918925f},{0.305176f,-0.0191712f,0.0918925f},{0.301155f,-0.0211356f,0.0900281f}, - {0.29966f,-0.021302f,0.0918925f},{0.299659f,-0.0213021f,0.0900281f},{0.306228f,-0.0180928f,0.0900281f}, - {0.306229f,-0.018092f,0.0918925f},{0.307079f,-0.0168512f,0.0918925f},{0.307079f,-0.0168521f,0.0900281f}, - {0.307707f,-0.0154797f,0.0918925f},{0.307707f,-0.0154807f,0.0900281f},{0.30809f,-0.0140259f,0.0900281f}, - {0.30809f,-0.014025f,0.0918925f},{0.314904f,-0.00703853f,0.0918925f},{0.317768f,-0.00856991f,0.0918925f}, - {0.31692f,-0.0078732f,0.0900281f},{0.31692f,-0.00787361f,0.0918925f},{0.315954f,-0.00735691f,0.0918925f}, - {0.315953f,-0.0073566f,0.0900281f},{0.314904f,-0.00703838f,0.0900281f},{0.31898f,-0.0103834f,0.0900281f}, - {0.31898f,-0.0103841f,0.0918925f},{0.319299f,-0.0114331f,0.0918925f},{0.317767f,-0.00856857f,0.0900281f}, - {0.318464f,-0.00941743f,0.0918925f},{0.318463f,-0.00941663f,0.0900281f},{0.319406f,-0.0125242f,0.0918925f}, - {0.319298f,-0.0114326f,0.0900281f},{0.319406f,-0.0125242f,0.0900281f},{0.32063f,-0.017806f,0.0900281f}, - {0.32063f,-0.0178073f,0.0918925f},{0.321554f,-0.0193785f,0.0900281f},{0.321554f,-0.0193787f,0.0918925f}, - {0.319955f,-0.0161135f,0.0918925f},{0.319955f,-0.0161128f,0.0900281f},{0.319544f,-0.0143418f,0.0900281f}, - {0.319544f,-0.0143423f,0.0918925f},{0.322701f,-0.0207886f,0.0900281f},{0.324052f,-0.0220123f,0.0900281f}, - {0.322701f,-0.0207888f,0.0918925f},{0.324053f,-0.0220132f,0.0918925f},{0.325573f,-0.023018f,0.0900281f}, - {0.325573f,-0.0230183f,0.0918925f},{0.327224f,-0.02378f,0.0900281f},{0.328976f,-0.0242851f,0.0900281f}, - {0.327224f,-0.0237802f,0.0918925f},{0.328976f,-0.0242851f,0.0918925f},{0.409092f,-0.0744192f,0.0918925f}, - {0.409092f,-0.0744192f,0.0900281f},{0.405539f,-0.0700077f,0.0900281f},{0.401803f,-0.065746f,0.0900281f}, - {0.405539f,-0.0700077f,0.0918925f},{0.397891f,-0.06164f,0.0900281f},{0.401803f,-0.0657461f,0.0918925f}, - {0.397891f,-0.0616401f,0.0918925f},{0.393805f,-0.0576956f,0.0900281f},{0.389551f,-0.0539185f,0.0900281f}, - {0.393805f,-0.0576957f,0.0918925f},{0.385134f,-0.0503158f,0.0900281f},{0.389551f,-0.0539186f,0.0918925f}, - {0.385135f,-0.050316f,0.0918925f},{0.380577f,-0.0469052f,0.0900281f},{0.375889f,-0.0436939f,0.0900281f}, - {0.380577f,-0.0469052f,0.0918925f},{0.371079f,-0.0406851f,0.0900281f},{0.375889f,-0.0436939f,0.0918925f}, - {0.371079f,-0.0406851f,0.0918925f},{0.366152f,-0.0378819f,0.0900281f},{0.361116f,-0.0352877f,0.0900281f}, - {0.366152f,-0.037882f,0.0918925f},{0.355977f,-0.0329054f,0.0900281f},{0.361116f,-0.0352877f,0.0918925f}, - {0.355977f,-0.0329055f,0.0918925f},{0.350742f,-0.0307383f,0.0900281f},{0.345418f,-0.0287896f,0.0900281f}, - {0.350742f,-0.0307384f,0.0918925f},{0.340011f,-0.0270624f,0.0900281f},{0.345418f,-0.0287897f,0.0918925f}, - {0.340011f,-0.0270624f,0.0918925f},{0.334528f,-0.0255598f,0.0900281f},{0.334528f,-0.0255599f,0.0918925f}, - {0.412458f,-0.0789746f,0.0918925f},{0.412458f,-0.0789746f,0.0900281f},{0.415634f,-0.0836681f,0.0918925f}, - {0.418614f,-0.0884938f,0.0918925f},{0.415634f,-0.083668f,0.0900281f},{0.421394f,-0.0934459f,0.0918925f}, - {0.418614f,-0.0884937f,0.0900281f},{0.421394f,-0.0934458f,0.0900281f},{0.423969f,-0.0985185f,0.0918925f}, - {0.426335f,-0.103704f,0.0918925f},{0.423969f,-0.0985183f,0.0900281f},{0.428478f,-0.108978f,0.0918925f}, - {0.426334f,-0.103704f,0.0900281f},{0.428478f,-0.108977f,0.0900281f},{0.430397f,-0.114326f,0.0918925f}, - {0.432088f,-0.119742f,0.0918925f},{0.430397f,-0.114326f,0.0900281f},{0.43355f,-0.125218f,0.0918925f}, - {0.432088f,-0.119742f,0.0900281f},{0.43355f,-0.125218f,0.0900281f},{0.434783f,-0.130747f,0.0918925f}, - {0.435785f,-0.136322f,0.0918925f},{0.434783f,-0.130747f,0.0900281f},{0.436554f,-0.141936f,0.0918925f}, - {0.435785f,-0.136322f,0.0900281f},{0.436554f,-0.141935f,0.0900281f},{0.43709f,-0.14758f,0.0918925f}, - {0.43739f,-0.153248f,0.0918925f},{0.43709f,-0.14758f,0.0900281f},{0.437453f,-0.158933f,0.0918925f}, - {0.43739f,-0.153248f,0.0900281f},{0.437453f,-0.158933f,0.0900281f},{0.437279f,-0.164627f,0.0918925f}, - {0.437279f,-0.164627f,0.0900281f},{0.445352f,-0.169288f,0.0900281f},{0.445352f,-0.169288f,0.0918925f}, - {0.489867f,-0.0239114f,0.0918925f},{0.490408f,-0.0143525f,0.0918925f},{0.490408f,-0.0143527f,0.0900281f}, - {0.490679f,0.00478512f,0.0900281f},{0.490679f,-0.00478519f,0.0900281f},{0.490679f,-0.00478512f,0.0918925f}, - {0.489867f,-0.0239115f,0.0900281f},{0.489056f,-0.0334558f,0.0918925f},{0.489056f,-0.0334558f,0.0900281f}, - {0.487973f,-0.0429801f,0.0900281f},{0.487973f,-0.04298f,0.0918925f},{0.486621f,-0.0524782f,0.0918925f}, - {0.486621f,-0.0524784f,0.0900281f},{0.484998f,-0.0619436f,0.0900281f},{0.484998f,-0.0619434f,0.0918925f}, - {0.480955f,-0.0806965f,0.0900281f},{0.47854f,-0.089968f,0.0900281f},{0.47854f,-0.0899679f,0.0918925f}, - {0.483109f,-0.0713532f,0.0918925f},{0.483109f,-0.0713532f,0.0900281f},{0.480955f,-0.0806964f,0.0918925f}, - {0.475866f,-0.0991622f,0.0918925f},{0.475866f,-0.0991623f,0.0900281f},{0.472933f,-0.108274f,0.0900281f}, - {0.472933f,-0.108274f,0.0918925f},{0.469745f,-0.117298f,0.0918925f},{0.469745f,-0.117298f,0.0900281f}, - {0.466302f,-0.126228f,0.0918925f},{0.458664f,-0.143787f,0.0900281f},{0.458664f,-0.143786f,0.0918925f}, - {0.462608f,-0.135059f,0.0900281f},{0.462608f,-0.135059f,0.0918925f},{0.466302f,-0.126228f,0.0900281f}, - {0.454472f,-0.152404f,0.0900281f},{0.454472f,-0.152404f,0.0918925f},{0.450034f,-0.160907f,0.0900281f}, - {0.450034f,-0.160906f,0.0918925f},{0.490679f,0.00478519f,0.0918925f},{0.490408f,0.0143525f,0.0900281f}, - {0.490408f,0.0143527f,0.0918925f},{0.489867f,0.0239114f,0.0900281f},{0.489056f,0.0334558f,0.0900281f}, - {0.489867f,0.0239115f,0.0918925f},{0.489056f,0.0334558f,0.0918925f},{0.487973f,0.04298f,0.0900281f}, - {0.487973f,0.0429801f,0.0918925f},{0.486621f,0.0524782f,0.0900281f},{0.484998f,0.0619434f,0.0900281f}, - {0.486621f,0.0524784f,0.0918925f},{0.484998f,0.0619436f,0.0918925f},{0.483109f,0.0713532f,0.0900281f}, - {0.483109f,0.0713532f,0.0918925f},{0.480955f,0.0806964f,0.0900281f},{0.47854f,0.0899679f,0.0900281f}, - {0.480955f,0.0806965f,0.0918925f},{0.47854f,0.089968f,0.0918925f},{0.475866f,0.0991622f,0.0900281f}, - {0.475866f,0.0991623f,0.0918925f},{0.472933f,0.108274f,0.0900281f},{0.469745f,0.117298f,0.0900281f}, - {0.472933f,0.108274f,0.0918925f},{0.469745f,0.117298f,0.0918925f},{0.466302f,0.126228f,0.0900281f}, - {0.466302f,0.126228f,0.0918925f},{0.462608f,0.135059f,0.0900281f},{0.458664f,0.143786f,0.0900281f}, - {0.462608f,0.135059f,0.0918925f},{0.458664f,0.143787f,0.0918925f},{0.454472f,0.152404f,0.0900281f}, - {0.454472f,0.152404f,0.0918925f},{0.450034f,0.160906f,0.0900281f},{0.445352f,0.169288f,0.0900281f}, - {0.450034f,0.160907f,0.0918925f},{0.445352f,0.169288f,0.0918925f},{0.427553f,-0.169776f,0.0918925f}, - {0.448656f,-0.18196f,0.0900281f},{0.448656f,-0.18196f,0.0918925f},{0.427553f,-0.169776f,0.0900281f}, - {0.400468f,-0.0785294f,0.0900281f},{0.403757f,-0.0828396f,0.0900281f},{0.403757f,-0.0828395f,0.0918925f}, - {0.396993f,-0.0743574f,0.0900281f},{0.396993f,-0.074357f,0.0918925f},{0.393337f,-0.0703325f,0.0900281f}, - {0.406855f,-0.0872815f,0.0918925f},{0.400468f,-0.0785292f,0.0918925f},{0.406855f,-0.0872816f,0.0900281f}, - {0.409759f,-0.0918488f,0.0918925f},{0.409759f,-0.091849f,0.0900281f},{0.412465f,-0.0965352f,0.0900281f}, - {0.412465f,-0.0965352f,0.0918925f},{0.41497f,-0.101334f,0.0918925f},{0.41497f,-0.101334f,0.0900281f}, - {0.417269f,-0.106239f,0.0900281f},{0.419359f,-0.111243f,0.0918925f},{0.417269f,-0.106239f,0.0918925f}, - {0.419359f,-0.111243f,0.0900281f},{0.421236f,-0.116342f,0.0900281f},{0.421236f,-0.116341f,0.0918925f}, - {0.425533f,-0.132038f,0.0918925f},{0.424327f,-0.126754f,0.0900281f},{0.425533f,-0.132038f,0.0900281f}, - {0.422894f,-0.121519f,0.0918925f},{0.422894f,-0.121519f,0.0900281f},{0.424327f,-0.126754f,0.0918925f}, - {0.426511f,-0.137363f,0.0918925f},{0.427261f,-0.142723f,0.0918925f},{0.426511f,-0.137364f,0.0900281f}, - {0.427261f,-0.142723f,0.0900281f},{0.427781f,-0.14811f,0.0900281f},{0.428071f,-0.153516f,0.0900281f}, - {0.428071f,-0.153516f,0.0918925f},{0.427781f,-0.14811f,0.0918925f},{0.428131f,-0.158934f,0.0900281f}, - {0.428131f,-0.158934f,0.0918925f},{0.427958f,-0.164357f,0.0900281f},{0.427958f,-0.164356f,0.0918925f}, - {0.389518f,-0.0664729f,0.0900281f},{0.393337f,-0.0703321f,0.0918925f},{0.389518f,-0.0664728f,0.0918925f}, - {0.385543f,-0.0627861f,0.0900281f},{0.385543f,-0.0627861f,0.0918925f},{0.381418f,-0.0592762f,0.0900281f}, - {0.37715f,-0.0559475f,0.0900281f},{0.381418f,-0.0592761f,0.0918925f},{0.37715f,-0.0559474f,0.0918925f}, - {0.372745f,-0.0528044f,0.0900281f},{0.372745f,-0.0528044f,0.0918925f},{0.368209f,-0.0498513f,0.0900281f}, - {0.363547f,-0.0470924f,0.0900281f},{0.368209f,-0.0498511f,0.0918925f},{0.363547f,-0.0470923f,0.0918925f}, - {0.358766f,-0.0445321f,0.0900281f},{0.358766f,-0.0445321f,0.0918925f},{0.353872f,-0.042175f,0.0900281f}, - {0.348877f,-0.0400276f,0.0900281f},{0.353871f,-0.0421746f,0.0918925f},{0.348877f,-0.0400276f,0.0918925f}, - {0.343803f,-0.0380996f,0.0900281f},{0.343803f,-0.0380996f,0.0918925f},{0.338659f,-0.0363926f,0.0900281f}, - {0.333452f,-0.0349082f,0.0900281f},{0.338659f,-0.0363926f,0.0918925f},{0.333452f,-0.0349082f,0.0918925f}, - {0.328189f,-0.033648f,0.0900281f},{0.328189f,-0.0336479f,0.0918925f},{0.322877f,-0.0326134f,0.0900281f}, - {0.317524f,-0.031806f,0.0900281f},{0.322877f,-0.0326134f,0.0918925f},{0.317524f,-0.031806f,0.0918925f}, - {0.312137f,-0.0312275f,0.0900281f},{0.312136f,-0.0312274f,0.0918925f},{0.306722f,-0.0308792f,0.0900281f}, - {0.301289f,-0.0307628f,0.0900281f},{0.306722f,-0.0308792f,0.0918925f},{0.301289f,-0.0307628f,0.0918925f}, - {0.270526f,-1.77184e-016f,0.0918925f},{0.270526f,-2.46733e-016f,0.0900281f},{0.270571f,-0.00166887f,0.0900281f}, - {0.270707f,-0.0033296f,0.0900281f},{0.270571f,-0.00166875f,0.0918925f},{0.270931f,-0.00497861f,0.0900281f}, - {0.270706f,-0.00332938f,0.0918925f},{0.270931f,-0.00497832f,0.0918925f},{0.271245f,-0.00661229f,0.0900281f}, - {0.271646f,-0.00822706f,0.0900281f},{0.271245f,-0.00661197f,0.0918925f},{0.272135f,-0.00981931f,0.0900281f}, - {0.271646f,-0.00822672f,0.0918925f},{0.272135f,-0.009819f,0.0918925f},{0.27271f,-0.0113858f,0.0900281f}, - {0.27337f,-0.0129196f,0.0900281f},{0.27271f,-0.0113852f,0.0918925f},{0.274111f,-0.0144128f,0.0900281f}, - {0.27337f,-0.0129192f,0.0918925f},{0.274111f,-0.0144127f,0.0918925f},{0.27493f,-0.0158618f,0.0900281f}, - {0.275826f,-0.0172635f,0.0900281f},{0.27493f,-0.0158617f,0.0918925f},{0.276797f,-0.0186148f,0.0900281f}, - {0.275826f,-0.0172633f,0.0918925f},{0.276797f,-0.0186146f,0.0918925f},{0.27784f,-0.0199127f,0.0900281f}, - {0.278954f,-0.0211544f,0.0900281f},{0.27784f,-0.0199124f,0.0918925f},{0.280135f,-0.0223352f,0.0900281f}, - {0.278953f,-0.0211538f,0.0918925f},{0.280134f,-0.0223347f,0.0918925f},{0.281376f,-0.0234487f,0.0900281f}, - {0.282674f,-0.0244917f,0.0900281f},{0.281376f,-0.0234485f,0.0918925f},{0.284025f,-0.0254622f,0.0900281f}, - {0.282674f,-0.0244916f,0.0918925f},{0.284025f,-0.0254621f,0.0918925f},{0.285427f,-0.0263582f,0.0900281f}, - {0.286876f,-0.0271776f,0.0900281f},{0.285427f,-0.0263581f,0.0918925f},{0.288369f,-0.0279185f,0.0900281f}, - {0.286876f,-0.0271775f,0.0918925f},{0.288369f,-0.0279183f,0.0918925f},{0.289903f,-0.0285784f,0.0900281f}, - {0.29147f,-0.0291536f,0.0900281f},{0.289903f,-0.0285781f,0.0918925f},{0.293062f,-0.0296423f,0.0900281f}, - {0.291469f,-0.0291535f,0.0918925f},{0.293061f,-0.0296423f,0.0918925f},{0.294677f,-0.0300438f,0.0900281f}, - {0.29631f,-0.0303573f,0.0900281f},{0.294676f,-0.0300437f,0.0918925f},{0.297959f,-0.0305821f,0.0900281f}, - {0.29631f,-0.0303572f,0.0918925f},{0.297959f,-0.030582f,0.0918925f},{0.29962f,-0.0307175f,0.0900281f}, - {0.29962f,-0.0307174f,0.0918925f},{0.270571f,0.00166887f,0.0918925f},{0.270571f,0.00166875f,0.0900281f}, - {0.270707f,0.0033296f,0.0918925f},{0.270931f,0.00497861f,0.0918925f},{0.270706f,0.00332938f,0.0900281f}, - {0.271245f,0.00661229f,0.0918925f},{0.270931f,0.00497832f,0.0900281f},{0.271245f,0.00661197f,0.0900281f}, - {0.271646f,0.00822706f,0.0918925f},{0.272135f,0.00981931f,0.0918925f},{0.271646f,0.00822672f,0.0900281f}, - {0.27271f,0.0113858f,0.0918925f},{0.272135f,0.009819f,0.0900281f},{0.27271f,0.0113852f,0.0900281f}, - {0.27337f,0.0129196f,0.0918925f},{0.274111f,0.0144128f,0.0918925f},{0.27337f,0.0129192f,0.0900281f}, - {0.27493f,0.0158618f,0.0918925f},{0.274111f,0.0144127f,0.0900281f},{0.27493f,0.0158617f,0.0900281f}, - {0.275826f,0.0172635f,0.0918925f},{0.276797f,0.0186148f,0.0918925f},{0.275826f,0.0172633f,0.0900281f}, - {0.27784f,0.0199127f,0.0918925f},{0.276797f,0.0186146f,0.0900281f},{0.27784f,0.0199124f,0.0900281f}, - {0.278954f,0.0211544f,0.0918925f},{0.280135f,0.0223352f,0.0918925f},{0.278953f,0.0211538f,0.0900281f}, - {0.281376f,0.0234487f,0.0918925f},{0.280134f,0.0223347f,0.0900281f},{0.281376f,0.0234485f,0.0900281f}, - {0.282674f,0.0244917f,0.0918925f},{0.284025f,0.0254622f,0.0918925f},{0.282674f,0.0244916f,0.0900281f}, - {0.285427f,0.0263582f,0.0918925f},{0.284025f,0.0254621f,0.0900281f},{0.285427f,0.0263581f,0.0900281f}, - {0.286876f,0.0271776f,0.0918925f},{0.288369f,0.0279185f,0.0918925f},{0.286876f,0.0271775f,0.0900281f}, - {0.289903f,0.0285784f,0.0918925f},{0.288369f,0.0279183f,0.0900281f},{0.289903f,0.0285781f,0.0900281f}, - {0.29147f,0.0291536f,0.0918925f},{0.293062f,0.0296423f,0.0918925f},{0.291469f,0.0291535f,0.0900281f}, - {0.294677f,0.0300438f,0.0918925f},{0.293061f,0.0296423f,0.0900281f},{0.294676f,0.0300437f,0.0900281f}, - {0.29631f,0.0303573f,0.0918925f},{0.297959f,0.0305821f,0.0918925f},{0.29631f,0.0303572f,0.0900281f}, - {0.29962f,0.0307175f,0.0918925f},{0.297959f,0.030582f,0.0900281f},{0.29962f,0.0307174f,0.0900281f}, - {0.301289f,0.0307628f,0.0918925f},{0.301289f,0.0307628f,0.0900281f},{0.389518f,0.0664728f,0.0900281f}, - {0.385543f,0.0627861f,0.0900281f},{0.385543f,0.0627861f,0.0918925f},{0.393337f,0.0703321f,0.0900281f}, - {0.393337f,0.0703325f,0.0918925f},{0.396993f,0.074357f,0.0900281f},{0.381418f,0.0592762f,0.0918925f}, - {0.389518f,0.0664729f,0.0918925f},{0.381418f,0.0592761f,0.0900281f},{0.37715f,0.0559475f,0.0918925f}, - {0.37715f,0.0559474f,0.0900281f},{0.372745f,0.0528044f,0.0900281f},{0.372745f,0.0528044f,0.0918925f}, - {0.368209f,0.0498513f,0.0918925f},{0.368209f,0.0498511f,0.0900281f},{0.363547f,0.0470923f,0.0900281f}, - {0.358766f,0.0445321f,0.0918925f},{0.363547f,0.0470924f,0.0918925f},{0.358766f,0.0445321f,0.0900281f}, - {0.353871f,0.0421746f,0.0900281f},{0.353872f,0.042175f,0.0918925f},{0.338659f,0.0363926f,0.0918925f}, - {0.343803f,0.0380996f,0.0900281f},{0.338659f,0.0363926f,0.0900281f},{0.348877f,0.0400276f,0.0918925f}, - {0.348877f,0.0400276f,0.0900281f},{0.343803f,0.0380996f,0.0918925f},{0.333452f,0.0349082f,0.0918925f}, - {0.328189f,0.033648f,0.0918925f},{0.333452f,0.0349082f,0.0900281f},{0.328189f,0.0336479f,0.0900281f}, - {0.322877f,0.0326134f,0.0900281f},{0.317524f,0.031806f,0.0900281f},{0.317524f,0.031806f,0.0918925f}, - {0.322877f,0.0326134f,0.0918925f},{0.312136f,0.0312274f,0.0900281f},{0.312137f,0.0312275f,0.0918925f}, - {0.306722f,0.0308792f,0.0900281f},{0.306722f,0.0308792f,0.0918925f},{0.400468f,0.0785292f,0.0900281f}, - {0.396993f,0.0743574f,0.0918925f},{0.400468f,0.0785294f,0.0918925f},{0.403757f,0.0828395f,0.0900281f}, - {0.403757f,0.0828396f,0.0918925f},{0.406855f,0.0872815f,0.0900281f},{0.409759f,0.0918488f,0.0900281f}, - {0.406855f,0.0872816f,0.0918925f},{0.409759f,0.091849f,0.0918925f},{0.412465f,0.0965352f,0.0900281f}, - {0.412465f,0.0965352f,0.0918925f},{0.41497f,0.101334f,0.0900281f},{0.417269f,0.106239f,0.0900281f}, - {0.41497f,0.101334f,0.0918925f},{0.417269f,0.106239f,0.0918925f},{0.419359f,0.111243f,0.0900281f}, - {0.419359f,0.111243f,0.0918925f},{0.421236f,0.116341f,0.0900281f},{0.422894f,0.121519f,0.0900281f}, - {0.421236f,0.116342f,0.0918925f},{0.422894f,0.121519f,0.0918925f},{0.424327f,0.126754f,0.0900281f}, - {0.424327f,0.126754f,0.0918925f},{0.425533f,0.132038f,0.0900281f},{0.426511f,0.137363f,0.0900281f}, - {0.425533f,0.132038f,0.0918925f},{0.426511f,0.137364f,0.0918925f},{0.427261f,0.142723f,0.0900281f}, - {0.427261f,0.142723f,0.0918925f},{0.427781f,0.14811f,0.0900281f},{0.428071f,0.153516f,0.0900281f}, - {0.427781f,0.14811f,0.0918925f},{0.428071f,0.153516f,0.0918925f},{0.428131f,0.158934f,0.0900281f}, - {0.428131f,0.158934f,0.0918925f},{0.427958f,0.164356f,0.0900281f},{0.427553f,0.169776f,0.0900281f}, - {0.427958f,0.164357f,0.0918925f},{0.427553f,0.169776f,0.0918925f},{0.448656f,0.18196f,0.0918925f}, - {0.448656f,0.18196f,0.0900281f},{0.5f,0.0049028f,0.0918925f},{0.5f,-0.00490289f,0.0918925f}, - {0.5f,0.00490289f,0.0900281f},{0.499724f,0.0147057f,0.0900281f},{0.499724f,0.0147055f,0.0918925f}, - {0.499171f,0.0244996f,0.0900281f},{0.499171f,0.0244996f,0.0918925f},{0.498342f,0.0342788f,0.0918925f}, - {0.498342f,0.034279f,0.0900281f},{0.497236f,0.0440377f,0.0900281f},{0.497236f,0.0440376f,0.0918925f}, - {0.495854f,0.05377f,0.0900281f},{0.495854f,0.05377f,0.0918925f},{0.494196f,0.0634697f,0.0918925f}, - {0.494196f,0.0634706f,0.0900281f},{0.492264f,0.0731194f,0.0900281f},{0.492264f,0.0731193f,0.0918925f}, - {0.490062f,0.0826996f,0.0900281f},{0.490062f,0.0826996f,0.0918925f},{0.487593f,0.0922052f,0.0918925f}, - {0.487593f,0.0922054f,0.0900281f},{0.484859f,0.101631f,0.0900281f},{0.484859f,0.101631f,0.0918925f}, - {0.481861f,0.110971f,0.0900281f},{0.481861f,0.110971f,0.0918925f},{0.478603f,0.120221f,0.0918925f}, - {0.478602f,0.120221f,0.0900281f},{0.475085f,0.129374f,0.0900281f},{0.475085f,0.129374f,0.0918925f}, - {0.47131f,0.138425f,0.0900281f},{0.47131f,0.138425f,0.0918925f},{0.46728f,0.147368f,0.0918925f}, - {0.46728f,0.147369f,0.0900281f},{0.462998f,0.156199f,0.0900281f},{0.462998f,0.156199f,0.0918925f}, - {0.458465f,0.164912f,0.0900281f},{0.458465f,0.164912f,0.0918925f},{0.453684f,0.173501f,0.0918925f}, - {0.453684f,0.173501f,0.0900281f},{0.5f,-0.0049028f,0.0900281f},{0.499724f,-0.0147055f,0.0900281f}, - {0.499724f,-0.0147057f,0.0918925f},{0.499171f,-0.0244996f,0.0918925f},{0.499171f,-0.0244996f,0.0900281f}, - {0.498342f,-0.034279f,0.0918925f},{0.498342f,-0.0342788f,0.0900281f},{0.497236f,-0.0440376f,0.0900281f}, - {0.497236f,-0.0440377f,0.0918925f},{0.495854f,-0.05377f,0.0918925f},{0.495854f,-0.05377f,0.0900281f}, - {0.494196f,-0.0634706f,0.0918925f},{0.494196f,-0.0634697f,0.0900281f},{0.492264f,-0.0731193f,0.0900281f}, - {0.492264f,-0.0731194f,0.0918925f},{0.490062f,-0.0826996f,0.0918925f},{0.490062f,-0.0826996f,0.0900281f}, - {0.487593f,-0.0922054f,0.0918925f},{0.487593f,-0.0922052f,0.0900281f},{0.484859f,-0.101631f,0.0900281f}, - {0.484859f,-0.101631f,0.0918925f},{0.481861f,-0.110971f,0.0918925f},{0.481861f,-0.110971f,0.0900281f}, - {0.478602f,-0.120221f,0.0918925f},{0.478603f,-0.120221f,0.0900281f},{0.475085f,-0.129374f,0.0900281f}, - {0.475085f,-0.129374f,0.0918925f},{0.47131f,-0.138425f,0.0918925f},{0.47131f,-0.138425f,0.0900281f}, - {0.46728f,-0.147369f,0.0918925f},{0.46728f,-0.147368f,0.0900281f},{0.462998f,-0.156199f,0.0900281f}, - {0.462998f,-0.156199f,0.0918925f},{0.458465f,-0.164912f,0.0918925f},{0.458465f,-0.164912f,0.0900281f}, - {0.453684f,-0.173501f,0.0918925f},{0.453684f,-0.173501f,0.0900281f},{0.295886f,0.0200317f,0.0918925f}, - {0.280259f,0.0036392f,0.0918925f},{0.280781f,0.00474168f,0.0918925f},{0.28931f,0.0152687f,0.0918925f}, - {0.29453f,0.0183517f,0.0918925f},{0.28153f,0.0057053f,0.0918925f},{0.291507f,0.0130697f,0.0918925f}, - {0.289835f,0.0151095f,0.0918925f},{0.294119f,0.0173478f,0.0918925f},{0.291087f,0.0109706f,0.0918925f}, - {0.290739f,0.0105473f,0.0918925f},{0.295126f,0.0192577f,0.0918925f},{0.296782f,0.0206442f,0.0918925f}, - {0.297778f,0.0210723f,0.0918925f},{0.290316f,0.0101998f,0.0918925f},{0.291091f,0.0140791f,0.0918925f}, - {0.293911f,0.0151984f,0.0918925f},{0.290742f,0.0145033f,0.0918925f},{0.315791f,-0.0105451f,0.0918925f}, - {0.315367f,-0.0101973f,0.0918925f},{0.316139f,-0.0109693f,0.0918925f},{0.314358f,-0.00977971f,0.0918925f}, - {0.314883f,-0.00993885f,0.0918925f},{0.314881f,-0.0151067f,0.0918925f},{0.316555f,-0.0119787f,0.0918925f}, - {0.316397f,-0.0114536f,0.0918925f},{0.316609f,-0.0125242f,0.0918925f},{0.316394f,-0.013595f,0.0918925f}, - {0.316135f,-0.0140778f,0.0918925f},{0.315788f,-0.0145011f,0.0918925f},{0.315364f,-0.0148486f,0.0918925f}, - {0.314357f,-0.015266f,0.0918925f},{0.290318f,0.0148511f,0.0918925f},{0.29391f,0.0162833f,0.0918925f}, - {0.291506f,0.0119779f,0.0918925f},{0.291561f,0.0125242f,0.0918925f},{0.291346f,0.0114534f,0.0918925f}, - {0.291349f,0.0135948f,0.0918925f},{0.289833f,0.00994166f,0.0918925f},{0.316555f,-0.0130705f,0.0918925f}, - {0.289309f,0.00978241f,0.0918925f},{0.280782f,0.00474296f,0.0900281f},{0.297777f,0.0210725f,0.0900281f}, - {0.296781f,0.020644f,0.0900281f},{0.290742f,0.0105451f,0.0900281f},{0.280259f,0.00364027f,0.0900281f}, - {0.289835f,0.00993885f,0.0900281f},{0.295886f,0.0200312f,0.0900281f},{0.295126f,0.0192574f,0.0900281f}, - {0.29391f,0.0162822f,0.0900281f},{0.290739f,0.0145011f,0.0900281f},{0.290316f,0.0148486f,0.0900281f}, - {0.291561f,0.0125242f,0.0900281f},{0.28931f,0.00977971f,0.0900281f},{0.291091f,0.0109693f,0.0900281f}, - {0.290318f,0.0101973f,0.0900281f},{0.291349f,0.0114536f,0.0900281f},{0.315791f,-0.0145033f,0.0900281f}, - {0.316139f,-0.0140791f,0.0900281f},{0.314357f,-0.00978241f,0.0900281f},{0.314881f,-0.00994166f,0.0900281f}, - {0.294529f,0.0183513f,0.0900281f},{0.294119f,0.0173468f,0.0900281f},{0.289833f,0.0151067f,0.0900281f}, - {0.289309f,0.015266f,0.0900281f},{0.291087f,0.0140778f,0.0900281f},{0.293911f,0.0151976f,0.0900281f}, - {0.291346f,0.013595f,0.0900281f},{0.28153f,0.00570553f,0.0900281f},{0.316555f,-0.0119779f,0.0900281f}, - {0.315364f,-0.0101998f,0.0900281f},{0.316609f,-0.0125242f,0.0900281f},{0.316555f,-0.0130697f,0.0900281f}, - {0.316397f,-0.0135948f,0.0900281f},{0.315367f,-0.0148511f,0.0900281f},{0.314883f,-0.0151095f,0.0900281f}, - {0.316135f,-0.0109706f,0.0900281f},{0.314358f,-0.0152687f,0.0900281f},{0.316394f,-0.0114534f,0.0900281f}, - {0.315788f,-0.0105473f,0.0900281f},{0.291507f,0.0119787f,0.0900281f},{0.291506f,0.0130705f,0.0900281f}, - {-0.0125242f,0.285968f,0.0900281f},{-0.0130723f,0.286022f,0.0918925f},{-0.0125242f,0.285968f,0.0918925f}, - {-0.011454f,0.286181f,0.0918925f},{-0.011454f,0.286181f,0.0900281f},{-0.0119761f,0.286022f,0.0918925f}, - {-0.0119761f,0.286022f,0.0900281f},{-0.0109726f,0.286438f,0.0900281f},{-0.0105467f,0.286787f,0.0900281f}, - {-0.0105467f,0.286787f,0.0918925f},{-0.0101975f,0.287213f,0.0900281f},{-0.0101975f,0.287213f,0.0918925f}, - {-0.0109726f,0.286438f,0.0918925f},{-0.00972758f,0.288764f,0.0900281f},{-0.00978182f,0.288216f,0.0900281f}, - {-0.00978182f,0.288216f,0.0918925f},{-0.00994047f,0.287694f,0.0918925f},{-0.00994047f,0.287694f,0.0900281f}, - {-0.00972758f,0.288764f,0.0918925f},{-0.0130723f,0.286022f,0.0900281f},{-0.0135944f,0.286181f,0.0918925f}, - {-0.0135944f,0.286181f,0.0900281f},{-0.0140758f,0.286438f,0.0900281f},{-0.0140758f,0.286438f,0.0918925f}, - {-0.0145017f,0.286787f,0.0900281f},{-0.0145017f,0.286787f,0.0918925f},{-0.0148509f,0.287213f,0.0918925f}, - {-0.0148509f,0.287213f,0.0900281f},{-0.0151079f,0.287694f,0.0900281f},{-0.0151079f,0.287694f,0.0918925f}, - {-0.0152666f,0.288216f,0.0900281f},{-0.0152666f,0.288216f,0.0918925f},{-0.0153208f,0.288764f,0.0918925f}, - {-0.0153208f,0.288764f,0.0900281f},{0.0125242f,0.311016f,0.0900281f},{0.0119761f,0.31107f,0.0918925f}, - {0.0125242f,0.311016f,0.0918925f},{0.0135944f,0.311229f,0.0918925f},{0.0135944f,0.311229f,0.0900281f}, - {0.0130723f,0.31107f,0.0918925f},{0.0130723f,0.31107f,0.0900281f},{0.0140758f,0.311486f,0.0900281f}, - {0.0145017f,0.311835f,0.0900281f},{0.0145017f,0.311835f,0.0918925f},{0.0148509f,0.312261f,0.0900281f}, - {0.0148509f,0.312261f,0.0918925f},{0.0140758f,0.311486f,0.0918925f},{0.0153208f,0.313813f,0.0900281f}, - {0.0152666f,0.313265f,0.0900281f},{0.0152666f,0.313265f,0.0918925f},{0.0151079f,0.312743f,0.0918925f}, - {0.0151079f,0.312743f,0.0900281f},{0.0153208f,0.313813f,0.0918925f},{0.0119761f,0.31107f,0.0900281f}, - {0.011454f,0.311229f,0.0918925f},{0.011454f,0.311229f,0.0900281f},{0.0109726f,0.311486f,0.0900281f}, - {0.0109726f,0.311486f,0.0918925f},{0.0105467f,0.311835f,0.0900281f},{0.0105467f,0.311835f,0.0918925f}, - {0.0101975f,0.312261f,0.0918925f},{0.0101975f,0.312261f,0.0900281f},{0.00994047f,0.312743f,0.0900281f}, - {0.00994047f,0.312743f,0.0918925f},{0.00978182f,0.313265f,0.0900281f},{0.00978182f,0.313265f,0.0918925f}, - {0.00972758f,0.313813f,0.0918925f},{0.00972758f,0.313813f,0.0900281f},{-0.0073455f,0.284736f,0.0900281f}, - {-0.00738926f,0.285954f,0.0918925f},{-0.00734538f,0.284736f,0.0918925f},{-0.00703877f,0.283556f,0.0900281f}, - {-0.0070384f,0.283555f,0.0918925f},{-0.00648281f,0.28247f,0.0900281f},{-0.00648282f,0.28247f,0.0918925f}, - {-0.00738915f,0.285956f,0.0900281f},{-0.00716427f,0.287154f,0.0918925f},{-0.00716427f,0.287154f,0.0900281f}, - {0.00856857f,0.309858f,0.0918925f},{0.0078732f,0.310706f,0.0918925f},{0.00856991f,0.309857f,0.0900281f}, - {0.00787361f,0.310705f,0.0900281f},{0.0073566f,0.311673f,0.0918925f},{0.00703838f,0.312722f,0.0918925f}, - {0.00735691f,0.311672f,0.0900281f},{0.00693097f,0.313813f,0.0918925f},{0.00703853f,0.312721f,0.0900281f}, - {0.00693097f,0.313813f,0.0900281f},{0.00941743f,0.309162f,0.0900281f},{0.0103841f,0.308645f,0.0900281f}, - {0.00941663f,0.309162f,0.0918925f},{0.0114331f,0.308327f,0.0900281f},{0.0103834f,0.308645f,0.0918925f}, - {0.0114326f,0.308327f,0.0918925f},{0.0125242f,0.30822f,0.0900281f},{0.0125242f,0.30822f,0.0918925f}, - {-0.065917f,0.401959f,0.0918925f},{-0.0617984f,0.398048f,0.0918925f},{-0.0659174f,0.40196f,0.0900281f}, - {-0.07019f,0.405692f,0.0900281f},{-0.0701898f,0.405691f,0.0918925f},{-0.0746077f,0.409237f,0.0900281f}, - {-0.0746076f,0.409237f,0.0918925f},{-0.0791643f,0.412592f,0.0918925f},{-0.0791644f,0.412592f,0.0900281f}, - {-0.0838538f,0.415754f,0.0900281f},{-0.0838537f,0.415754f,0.0918925f},{-0.0886696f,0.418717f,0.0900281f}, - {-0.0886696f,0.418717f,0.0918925f},{-0.0936056f,0.421479f,0.0918925f},{-0.0936057f,0.421479f,0.0900281f}, - {-0.0986557f,0.424035f,0.0900281f},{-0.0986556f,0.424035f,0.0918925f},{-0.103813f,0.426382f,0.0900281f}, - {-0.103813f,0.426382f,0.0918925f},{-0.109072f,0.428515f,0.0918925f},{-0.109073f,0.428515f,0.0900281f}, - {-0.11442f,0.430428f,0.0900281f},{-0.11442f,0.430428f,0.0918925f},{-0.119834f,0.432114f,0.0900281f}, - {-0.119834f,0.432114f,0.0918925f},{-0.125306f,0.433572f,0.0918925f},{-0.125307f,0.433572f,0.0900281f}, - {-0.130829f,0.4348f,0.0900281f},{-0.130829f,0.4348f,0.0918925f},{-0.136396f,0.435797f,0.0900281f}, - {-0.136396f,0.435797f,0.0918925f},{-0.141999f,0.436561f,0.0918925f},{-0.141999f,0.436561f,0.0900281f}, - {-0.147631f,0.437093f,0.0900281f},{-0.147631f,0.437093f,0.0918925f},{-0.153284f,0.437391f,0.0900281f}, - {-0.153284f,0.437391f,0.0918925f},{-0.158952f,0.437453f,0.0918925f},{-0.158952f,0.437453f,0.0900281f}, - {-0.164627f,0.437279f,0.0900281f},{-0.164627f,0.437279f,0.0918925f},{-0.0617987f,0.398048f,0.0900281f}, - {-0.0578515f,0.393973f,0.0900281f},{-0.0578514f,0.393973f,0.0918925f},{-0.054083f,0.389744f,0.0918925f}, - {-0.0540831f,0.389744f,0.0900281f},{-0.0504973f,0.385366f,0.0918925f},{-0.0504974f,0.385366f,0.0900281f}, - {-0.0470986f,0.380846f,0.0900281f},{-0.0470985f,0.380846f,0.0918925f},{-0.0438908f,0.376189f,0.0918925f}, - {-0.0438908f,0.376189f,0.0900281f},{-0.0408784f,0.371402f,0.0918925f},{-0.0408785f,0.371402f,0.0900281f}, - {-0.0380656f,0.36649f,0.0900281f},{-0.0380655f,0.36649f,0.0918925f},{-0.0354565f,0.36146f,0.0918925f}, - {-0.0354565f,0.36146f,0.0900281f},{-0.0330551f,0.356317f,0.0918925f},{-0.0330554f,0.356318f,0.0900281f}, - {-0.0308688f,0.351076f,0.0900281f},{-0.0308688f,0.351076f,0.0918925f},{-0.0289059f,0.345756f,0.0918925f}, - {-0.0289059f,0.345756f,0.0900281f},{-0.0271683f,0.340366f,0.0918925f},{-0.0271684f,0.340366f,0.0900281f}, - {-0.0256577f,0.334914f,0.0900281f},{-0.0256577f,0.334914f,0.0918925f},{-0.0243753f,0.329406f,0.0918925f}, - {-0.0243754f,0.329406f,0.0900281f},{-0.0233228f,0.32385f,0.0918925f},{-0.0233228f,0.32385f,0.0900281f}, - {-0.0225016f,0.318253f,0.0900281f},{-0.0225016f,0.318253f,0.0918925f},{-0.0219132f,0.312622f,0.0918925f}, - {-0.0219132f,0.312623f,0.0900281f},{-0.0215591f,0.306965f,0.0918925f},{-0.0215591f,0.306965f,0.0900281f}, - {-0.0214407f,0.301289f,0.0918925f},{-0.0214407f,0.301289f,0.0900281f},{-0.0214056f,0.300061f,0.0918925f}, - {-0.0214056f,0.300061f,0.0900281f},{-0.0213002f,0.298838f,0.0900281f},{-0.0213002f,0.298838f,0.0918925f}, - {-0.00857005f,0.29272f,0.0900281f},{-0.00933952f,0.293362f,0.0900281f},{-0.00856812f,0.292718f,0.0918925f}, - {-0.0102104f,0.293856f,0.0918925f},{-0.00933867f,0.293362f,0.0918925f},{-0.010212f,0.293857f,0.0900281f}, - {-0.0111572f,0.294188f,0.0918925f},{-0.0111588f,0.294188f,0.0900281f},{-0.0121484f,0.294345f,0.0918925f}, - {-0.0131504f,0.294322f,0.0918925f},{-0.0121494f,0.294345f,0.0900281f},{-0.0141339f,0.294121f,0.0900281f}, - {-0.0131516f,0.294322f,0.0900281f},{-0.0141339f,0.294121f,0.0918925f},{-0.00792586f,0.291949f,0.0918925f}, - {-0.00792654f,0.29195f,0.0900281f},{-0.00743177f,0.291078f,0.0900281f},{-0.00710074f,0.290131f,0.0900281f}, - {-0.00743116f,0.291076f,0.0918925f},{-0.00710007f,0.290129f,0.0918925f},{-0.00694354f,0.28914f,0.0900281f}, - {-0.00694356f,0.289139f,0.0918925f},{-0.00696625f,0.288138f,0.0900281f},{-0.00696632f,0.288136f,0.0918925f}, - {0.0121669f,0.283634f,0.0900281f},{0.0102959f,0.282482f,0.0900281f},{0.0102961f,0.282482f,0.0918925f}, - {0.012167f,0.283634f,0.0918925f},{0.013914f,0.284976f,0.0900281f},{0.008319f,0.281528f,0.0918925f}, - {0.00831882f,0.281527f,0.0900281f},{0.00625128f,0.280779f,0.0918925f},{0.00625078f,0.280779f,0.0900281f}, - {0.00411456f,0.280246f,0.0918925f},{0.00411435f,0.280246f,0.0900281f},{0.00194003f,0.279936f,0.0900281f}, - {0.0019402f,0.279936f,0.0918925f},{-0.000253827f,0.279849f,0.0918925f},{-0.00245022f,0.279988f,0.0918925f}, - {-0.00025393f,0.279849f,0.0900281f},{-0.00245022f,0.279988f,0.0900281f},{0.0155106f,0.286486f,0.0900281f}, - {0.0139141f,0.284976f,0.0918925f},{0.0155107f,0.286486f,0.0918925f},{0.016943f,0.288149f,0.0900281f}, - {0.0169431f,0.28815f,0.0918925f},{0.0181996f,0.289954f,0.0900281f},{0.0192663f,0.29188f,0.0900281f}, - {0.0181999f,0.289954f,0.0918925f},{0.0192664f,0.291881f,0.0918925f},{0.0201277f,0.293901f,0.0900281f}, - {0.0201278f,0.293901f,0.0918925f},{0.0207778f,0.295998f,0.0900281f},{0.0212106f,0.298156f,0.0900281f}, - {0.0207778f,0.295998f,0.0918925f},{0.0212106f,0.298156f,0.0918925f},{0.0200545f,0.303955f,0.0900281f}, - {0.0207145f,0.302604f,0.0918925f},{0.020054f,0.303956f,0.0918925f},{0.0191712f,0.305176f,0.0900281f}, - {0.0207149f,0.302603f,0.0900281f},{0.0211353f,0.301156f,0.0918925f},{0.0191712f,0.305176f,0.0918925f}, - {0.0211356f,0.301155f,0.0900281f},{0.021302f,0.29966f,0.0918925f},{0.0213021f,0.299659f,0.0900281f}, - {0.0180928f,0.306228f,0.0900281f},{0.018092f,0.306229f,0.0918925f},{0.0168512f,0.307079f,0.0918925f}, - {0.0168521f,0.307079f,0.0900281f},{0.0154797f,0.307707f,0.0918925f},{0.0154807f,0.307707f,0.0900281f}, - {0.0140259f,0.30809f,0.0900281f},{0.014025f,0.30809f,0.0918925f},{0.00703853f,0.314904f,0.0918925f}, - {0.00856991f,0.317768f,0.0918925f},{0.0078732f,0.31692f,0.0900281f},{0.00787361f,0.31692f,0.0918925f}, - {0.00735691f,0.315954f,0.0918925f},{0.0073566f,0.315953f,0.0900281f},{0.00703838f,0.314904f,0.0900281f}, - {0.0103834f,0.31898f,0.0900281f},{0.0103841f,0.31898f,0.0918925f},{0.0114331f,0.319299f,0.0918925f}, - {0.00856857f,0.317767f,0.0900281f},{0.00941743f,0.318464f,0.0918925f},{0.00941663f,0.318463f,0.0900281f}, - {0.0125242f,0.319406f,0.0918925f},{0.0114326f,0.319298f,0.0900281f},{0.0125242f,0.319406f,0.0900281f}, - {0.017806f,0.32063f,0.0900281f},{0.0178073f,0.32063f,0.0918925f},{0.0193785f,0.321554f,0.0900281f}, - {0.0193787f,0.321554f,0.0918925f},{0.0161135f,0.319955f,0.0918925f},{0.0161128f,0.319955f,0.0900281f}, - {0.0143418f,0.319544f,0.0900281f},{0.0143423f,0.319544f,0.0918925f},{0.0207886f,0.322701f,0.0900281f}, - {0.0220123f,0.324052f,0.0900281f},{0.0207888f,0.322701f,0.0918925f},{0.0220132f,0.324053f,0.0918925f}, - {0.023018f,0.325573f,0.0900281f},{0.0230183f,0.325573f,0.0918925f},{0.02378f,0.327224f,0.0900281f}, - {0.0242851f,0.328976f,0.0900281f},{0.0237802f,0.327224f,0.0918925f},{0.0242851f,0.328976f,0.0918925f}, - {0.0744192f,0.409092f,0.0918925f},{0.0744192f,0.409092f,0.0900281f},{0.0700077f,0.405539f,0.0900281f}, - {0.065746f,0.401803f,0.0900281f},{0.0700077f,0.405539f,0.0918925f},{0.06164f,0.397891f,0.0900281f}, - {0.0657461f,0.401803f,0.0918925f},{0.0616401f,0.397891f,0.0918925f},{0.0576956f,0.393805f,0.0900281f}, - {0.0539185f,0.389551f,0.0900281f},{0.0576957f,0.393805f,0.0918925f},{0.0503158f,0.385134f,0.0900281f}, - {0.0539186f,0.389551f,0.0918925f},{0.050316f,0.385135f,0.0918925f},{0.0469052f,0.380577f,0.0900281f}, - {0.0436939f,0.375889f,0.0900281f},{0.0469052f,0.380577f,0.0918925f},{0.0406851f,0.371079f,0.0900281f}, - {0.0436939f,0.375889f,0.0918925f},{0.0406851f,0.371079f,0.0918925f},{0.0378819f,0.366152f,0.0900281f}, - {0.0352877f,0.361116f,0.0900281f},{0.037882f,0.366152f,0.0918925f},{0.0329054f,0.355977f,0.0900281f}, - {0.0352877f,0.361116f,0.0918925f},{0.0329055f,0.355977f,0.0918925f},{0.0307383f,0.350742f,0.0900281f}, - {0.0287896f,0.345418f,0.0900281f},{0.0307384f,0.350742f,0.0918925f},{0.0270624f,0.340011f,0.0900281f}, - {0.0287897f,0.345418f,0.0918925f},{0.0270624f,0.340011f,0.0918925f},{0.0255598f,0.334528f,0.0900281f}, - {0.0255599f,0.334528f,0.0918925f},{0.0789746f,0.412458f,0.0918925f},{0.0789746f,0.412458f,0.0900281f}, - {0.0836681f,0.415634f,0.0918925f},{0.0884938f,0.418614f,0.0918925f},{0.083668f,0.415634f,0.0900281f}, - {0.0934459f,0.421394f,0.0918925f},{0.0884937f,0.418614f,0.0900281f},{0.0934458f,0.421394f,0.0900281f}, - {0.0985185f,0.423969f,0.0918925f},{0.103704f,0.426335f,0.0918925f},{0.0985183f,0.423969f,0.0900281f}, - {0.108978f,0.428478f,0.0918925f},{0.103704f,0.426334f,0.0900281f},{0.108977f,0.428478f,0.0900281f}, - {0.114326f,0.430397f,0.0918925f},{0.119742f,0.432088f,0.0918925f},{0.114326f,0.430397f,0.0900281f}, - {0.125218f,0.43355f,0.0918925f},{0.119742f,0.432088f,0.0900281f},{0.125218f,0.43355f,0.0900281f}, - {0.130747f,0.434783f,0.0918925f},{0.136322f,0.435785f,0.0918925f},{0.130747f,0.434783f,0.0900281f}, - {0.141936f,0.436554f,0.0918925f},{0.136322f,0.435785f,0.0900281f},{0.141935f,0.436554f,0.0900281f}, - {0.14758f,0.43709f,0.0918925f},{0.153248f,0.43739f,0.0918925f},{0.14758f,0.43709f,0.0900281f}, - {0.158933f,0.437453f,0.0918925f},{0.153248f,0.43739f,0.0900281f},{0.158933f,0.437453f,0.0900281f}, - {0.164627f,0.437279f,0.0918925f},{0.164627f,0.437279f,0.0900281f},{0.169288f,0.445352f,0.0900281f}, - {0.169288f,0.445352f,0.0918925f},{0.0239114f,0.489867f,0.0918925f},{0.0143525f,0.490408f,0.0918925f}, - {0.0143527f,0.490408f,0.0900281f},{-0.00478512f,0.490679f,0.0900281f},{0.00478519f,0.490679f,0.0900281f}, - {0.00478512f,0.490679f,0.0918925f},{0.0239115f,0.489867f,0.0900281f},{0.0334558f,0.489056f,0.0918925f}, - {0.0334558f,0.489056f,0.0900281f},{0.0429801f,0.487973f,0.0900281f},{0.04298f,0.487973f,0.0918925f}, - {0.0524782f,0.486621f,0.0918925f},{0.0524784f,0.486621f,0.0900281f},{0.0619436f,0.484998f,0.0900281f}, - {0.0619434f,0.484998f,0.0918925f},{0.0806965f,0.480955f,0.0900281f},{0.089968f,0.47854f,0.0900281f}, - {0.0899679f,0.47854f,0.0918925f},{0.0713532f,0.483109f,0.0918925f},{0.0713532f,0.483109f,0.0900281f}, - {0.0806964f,0.480955f,0.0918925f},{0.0991622f,0.475866f,0.0918925f},{0.0991623f,0.475866f,0.0900281f}, - {0.108274f,0.472933f,0.0900281f},{0.108274f,0.472933f,0.0918925f},{0.117298f,0.469745f,0.0918925f}, - {0.117298f,0.469745f,0.0900281f},{0.126228f,0.466302f,0.0918925f},{0.143787f,0.458664f,0.0900281f}, - {0.143786f,0.458664f,0.0918925f},{0.135059f,0.462608f,0.0900281f},{0.135059f,0.462608f,0.0918925f}, - {0.126228f,0.466302f,0.0900281f},{0.152404f,0.454472f,0.0900281f},{0.152404f,0.454472f,0.0918925f}, - {0.160907f,0.450034f,0.0900281f},{0.160906f,0.450034f,0.0918925f},{-0.00478519f,0.490679f,0.0918925f}, - {-0.0143525f,0.490408f,0.0900281f},{-0.0143527f,0.490408f,0.0918925f},{-0.0239114f,0.489867f,0.0900281f}, - {-0.0334558f,0.489056f,0.0900281f},{-0.0239115f,0.489867f,0.0918925f},{-0.0334558f,0.489056f,0.0918925f}, - {-0.04298f,0.487973f,0.0900281f},{-0.0429801f,0.487973f,0.0918925f},{-0.0524782f,0.486621f,0.0900281f}, - {-0.0619434f,0.484998f,0.0900281f},{-0.0524784f,0.486621f,0.0918925f},{-0.0619436f,0.484998f,0.0918925f}, - {-0.0713532f,0.483109f,0.0900281f},{-0.0713532f,0.483109f,0.0918925f},{-0.0806964f,0.480955f,0.0900281f}, - {-0.0899679f,0.47854f,0.0900281f},{-0.0806965f,0.480955f,0.0918925f},{-0.089968f,0.47854f,0.0918925f}, - {-0.0991622f,0.475866f,0.0900281f},{-0.0991623f,0.475866f,0.0918925f},{-0.108274f,0.472933f,0.0900281f}, - {-0.117298f,0.469745f,0.0900281f},{-0.108274f,0.472933f,0.0918925f},{-0.117298f,0.469745f,0.0918925f}, - {-0.126228f,0.466302f,0.0900281f},{-0.126228f,0.466302f,0.0918925f},{-0.135059f,0.462608f,0.0900281f}, - {-0.143786f,0.458664f,0.0900281f},{-0.135059f,0.462608f,0.0918925f},{-0.143787f,0.458664f,0.0918925f}, - {-0.152404f,0.454472f,0.0900281f},{-0.152404f,0.454472f,0.0918925f},{-0.160906f,0.450034f,0.0900281f}, - {-0.169288f,0.445352f,0.0900281f},{-0.160907f,0.450034f,0.0918925f},{-0.169288f,0.445352f,0.0918925f}, - {0.169776f,0.427553f,0.0918925f},{0.18196f,0.448656f,0.0900281f},{0.18196f,0.448656f,0.0918925f}, - {0.169776f,0.427553f,0.0900281f},{0.0785294f,0.400468f,0.0900281f},{0.0828396f,0.403757f,0.0900281f}, - {0.0828395f,0.403757f,0.0918925f},{0.0743574f,0.396993f,0.0900281f},{0.074357f,0.396993f,0.0918925f}, - {0.0703325f,0.393337f,0.0900281f},{0.0872815f,0.406855f,0.0918925f},{0.0785292f,0.400468f,0.0918925f}, - {0.0872816f,0.406855f,0.0900281f},{0.0918488f,0.409759f,0.0918925f},{0.091849f,0.409759f,0.0900281f}, - {0.0965352f,0.412465f,0.0900281f},{0.0965352f,0.412465f,0.0918925f},{0.101334f,0.41497f,0.0918925f}, - {0.101334f,0.41497f,0.0900281f},{0.106239f,0.417269f,0.0900281f},{0.111243f,0.419359f,0.0918925f}, - {0.106239f,0.417269f,0.0918925f},{0.111243f,0.419359f,0.0900281f},{0.116342f,0.421236f,0.0900281f}, - {0.116341f,0.421236f,0.0918925f},{0.132038f,0.425533f,0.0918925f},{0.126754f,0.424327f,0.0900281f}, - {0.132038f,0.425533f,0.0900281f},{0.121519f,0.422894f,0.0918925f},{0.121519f,0.422894f,0.0900281f}, - {0.126754f,0.424327f,0.0918925f},{0.137363f,0.426511f,0.0918925f},{0.142723f,0.427261f,0.0918925f}, - {0.137364f,0.426511f,0.0900281f},{0.142723f,0.427261f,0.0900281f},{0.14811f,0.427781f,0.0900281f}, - {0.153516f,0.428071f,0.0900281f},{0.153516f,0.428071f,0.0918925f},{0.14811f,0.427781f,0.0918925f}, - {0.158934f,0.428131f,0.0900281f},{0.158934f,0.428131f,0.0918925f},{0.164357f,0.427958f,0.0900281f}, - {0.164356f,0.427958f,0.0918925f},{0.0664729f,0.389518f,0.0900281f},{0.0703321f,0.393337f,0.0918925f}, - {0.0664728f,0.389518f,0.0918925f},{0.0627861f,0.385543f,0.0900281f},{0.0627861f,0.385543f,0.0918925f}, - {0.0592762f,0.381418f,0.0900281f},{0.0559475f,0.37715f,0.0900281f},{0.0592761f,0.381418f,0.0918925f}, - {0.0559474f,0.37715f,0.0918925f},{0.0528044f,0.372745f,0.0900281f},{0.0528044f,0.372745f,0.0918925f}, - {0.0498513f,0.368209f,0.0900281f},{0.0470924f,0.363547f,0.0900281f},{0.0498511f,0.368209f,0.0918925f}, - {0.0470923f,0.363547f,0.0918925f},{0.0445321f,0.358766f,0.0900281f},{0.0445321f,0.358766f,0.0918925f}, - {0.042175f,0.353872f,0.0900281f},{0.0400276f,0.348877f,0.0900281f},{0.0421746f,0.353871f,0.0918925f}, - {0.0400276f,0.348877f,0.0918925f},{0.0380996f,0.343803f,0.0900281f},{0.0380996f,0.343803f,0.0918925f}, - {0.0363926f,0.338659f,0.0900281f},{0.0349082f,0.333452f,0.0900281f},{0.0363926f,0.338659f,0.0918925f}, - {0.0349082f,0.333452f,0.0918925f},{0.033648f,0.328189f,0.0900281f},{0.0336479f,0.328189f,0.0918925f}, - {0.0326134f,0.322877f,0.0900281f},{0.031806f,0.317524f,0.0900281f},{0.0326134f,0.322877f,0.0918925f}, - {0.031806f,0.317524f,0.0918925f},{0.0312275f,0.312137f,0.0900281f},{0.0312274f,0.312136f,0.0918925f}, - {0.0308792f,0.306722f,0.0900281f},{0.0307628f,0.301289f,0.0900281f},{0.0308792f,0.306722f,0.0918925f}, - {0.0307628f,0.301289f,0.0918925f},{3.36153e-016f,0.270526f,0.0918925f},{4.05702e-016f,0.270526f,0.0900281f}, - {0.00166887f,0.270571f,0.0900281f},{0.0033296f,0.270707f,0.0900281f},{0.00166875f,0.270571f,0.0918925f}, - {0.00497861f,0.270931f,0.0900281f},{0.00332938f,0.270706f,0.0918925f},{0.00497832f,0.270931f,0.0918925f}, - {0.00661229f,0.271245f,0.0900281f},{0.00822706f,0.271646f,0.0900281f},{0.00661197f,0.271245f,0.0918925f}, - {0.00981931f,0.272135f,0.0900281f},{0.00822672f,0.271646f,0.0918925f},{0.009819f,0.272135f,0.0918925f}, - {0.0113858f,0.27271f,0.0900281f},{0.0129196f,0.27337f,0.0900281f},{0.0113852f,0.27271f,0.0918925f}, - {0.0144128f,0.274111f,0.0900281f},{0.0129192f,0.27337f,0.0918925f},{0.0144127f,0.274111f,0.0918925f}, - {0.0158618f,0.27493f,0.0900281f},{0.0172635f,0.275826f,0.0900281f},{0.0158617f,0.27493f,0.0918925f}, - {0.0186148f,0.276797f,0.0900281f},{0.0172633f,0.275826f,0.0918925f},{0.0186146f,0.276797f,0.0918925f}, - {0.0199127f,0.27784f,0.0900281f},{0.0211544f,0.278954f,0.0900281f},{0.0199124f,0.27784f,0.0918925f}, - {0.0223352f,0.280135f,0.0900281f},{0.0211538f,0.278953f,0.0918925f},{0.0223347f,0.280134f,0.0918925f}, - {0.0234487f,0.281376f,0.0900281f},{0.0244917f,0.282674f,0.0900281f},{0.0234485f,0.281376f,0.0918925f}, - {0.0254622f,0.284025f,0.0900281f},{0.0244916f,0.282674f,0.0918925f},{0.0254621f,0.284025f,0.0918925f}, - {0.0263582f,0.285427f,0.0900281f},{0.0271776f,0.286876f,0.0900281f},{0.0263581f,0.285427f,0.0918925f}, - {0.0279185f,0.288369f,0.0900281f},{0.0271775f,0.286876f,0.0918925f},{0.0279183f,0.288369f,0.0918925f}, - {0.0285784f,0.289903f,0.0900281f},{0.0291536f,0.29147f,0.0900281f},{0.0285781f,0.289903f,0.0918925f}, - {0.0296423f,0.293062f,0.0900281f},{0.0291535f,0.291469f,0.0918925f},{0.0296423f,0.293061f,0.0918925f}, - {0.0300438f,0.294677f,0.0900281f},{0.0303573f,0.29631f,0.0900281f},{0.0300437f,0.294676f,0.0918925f}, - {0.0305821f,0.297959f,0.0900281f},{0.0303572f,0.29631f,0.0918925f},{0.030582f,0.297959f,0.0918925f}, - {0.0307175f,0.29962f,0.0900281f},{0.0307174f,0.29962f,0.0918925f},{-0.00166887f,0.270571f,0.0918925f}, - {-0.00166875f,0.270571f,0.0900281f},{-0.0033296f,0.270707f,0.0918925f},{-0.00497861f,0.270931f,0.0918925f}, - {-0.00332938f,0.270706f,0.0900281f},{-0.00661229f,0.271245f,0.0918925f},{-0.00497832f,0.270931f,0.0900281f}, - {-0.00661197f,0.271245f,0.0900281f},{-0.00822706f,0.271646f,0.0918925f},{-0.00981931f,0.272135f,0.0918925f}, - {-0.00822672f,0.271646f,0.0900281f},{-0.0113858f,0.27271f,0.0918925f},{-0.009819f,0.272135f,0.0900281f}, - {-0.0113852f,0.27271f,0.0900281f},{-0.0129196f,0.27337f,0.0918925f},{-0.0144128f,0.274111f,0.0918925f}, - {-0.0129192f,0.27337f,0.0900281f},{-0.0158618f,0.27493f,0.0918925f},{-0.0144127f,0.274111f,0.0900281f}, - {-0.0158617f,0.27493f,0.0900281f},{-0.0172635f,0.275826f,0.0918925f},{-0.0186148f,0.276797f,0.0918925f}, - {-0.0172633f,0.275826f,0.0900281f},{-0.0199127f,0.27784f,0.0918925f},{-0.0186146f,0.276797f,0.0900281f}, - {-0.0199124f,0.27784f,0.0900281f},{-0.0211544f,0.278954f,0.0918925f},{-0.0223352f,0.280135f,0.0918925f}, - {-0.0211538f,0.278953f,0.0900281f},{-0.0234487f,0.281376f,0.0918925f},{-0.0223347f,0.280134f,0.0900281f}, - {-0.0234485f,0.281376f,0.0900281f},{-0.0244917f,0.282674f,0.0918925f},{-0.0254622f,0.284025f,0.0918925f}, - {-0.0244916f,0.282674f,0.0900281f},{-0.0263582f,0.285427f,0.0918925f},{-0.0254621f,0.284025f,0.0900281f}, - {-0.0263581f,0.285427f,0.0900281f},{-0.0271776f,0.286876f,0.0918925f},{-0.0279185f,0.288369f,0.0918925f}, - {-0.0271775f,0.286876f,0.0900281f},{-0.0285784f,0.289903f,0.0918925f},{-0.0279183f,0.288369f,0.0900281f}, - {-0.0285781f,0.289903f,0.0900281f},{-0.0291536f,0.29147f,0.0918925f},{-0.0296423f,0.293062f,0.0918925f}, - {-0.0291535f,0.291469f,0.0900281f},{-0.0300438f,0.294677f,0.0918925f},{-0.0296423f,0.293061f,0.0900281f}, - {-0.0300437f,0.294676f,0.0900281f},{-0.0303573f,0.29631f,0.0918925f},{-0.0305821f,0.297959f,0.0918925f}, - {-0.0303572f,0.29631f,0.0900281f},{-0.0307175f,0.29962f,0.0918925f},{-0.030582f,0.297959f,0.0900281f}, - {-0.0307174f,0.29962f,0.0900281f},{-0.0307628f,0.301289f,0.0918925f},{-0.0307628f,0.301289f,0.0900281f}, - {-0.0664728f,0.389518f,0.0900281f},{-0.0627861f,0.385543f,0.0900281f},{-0.0627861f,0.385543f,0.0918925f}, - {-0.0703321f,0.393337f,0.0900281f},{-0.0703325f,0.393337f,0.0918925f},{-0.074357f,0.396993f,0.0900281f}, - {-0.0592762f,0.381418f,0.0918925f},{-0.0664729f,0.389518f,0.0918925f},{-0.0592761f,0.381418f,0.0900281f}, - {-0.0559475f,0.37715f,0.0918925f},{-0.0559474f,0.37715f,0.0900281f},{-0.0528044f,0.372745f,0.0900281f}, - {-0.0528044f,0.372745f,0.0918925f},{-0.0498513f,0.368209f,0.0918925f},{-0.0498511f,0.368209f,0.0900281f}, - {-0.0470923f,0.363547f,0.0900281f},{-0.0445321f,0.358766f,0.0918925f},{-0.0470924f,0.363547f,0.0918925f}, - {-0.0445321f,0.358766f,0.0900281f},{-0.0421746f,0.353871f,0.0900281f},{-0.042175f,0.353872f,0.0918925f}, - {-0.0363926f,0.338659f,0.0918925f},{-0.0380996f,0.343803f,0.0900281f},{-0.0363926f,0.338659f,0.0900281f}, - {-0.0400276f,0.348877f,0.0918925f},{-0.0400276f,0.348877f,0.0900281f},{-0.0380996f,0.343803f,0.0918925f}, - {-0.0349082f,0.333452f,0.0918925f},{-0.033648f,0.328189f,0.0918925f},{-0.0349082f,0.333452f,0.0900281f}, - {-0.0336479f,0.328189f,0.0900281f},{-0.0326134f,0.322877f,0.0900281f},{-0.031806f,0.317524f,0.0900281f}, - {-0.031806f,0.317524f,0.0918925f},{-0.0326134f,0.322877f,0.0918925f},{-0.0312274f,0.312136f,0.0900281f}, - {-0.0312275f,0.312137f,0.0918925f},{-0.0308792f,0.306722f,0.0900281f},{-0.0308792f,0.306722f,0.0918925f}, - {-0.0785292f,0.400468f,0.0900281f},{-0.0743574f,0.396993f,0.0918925f},{-0.0785294f,0.400468f,0.0918925f}, - {-0.0828395f,0.403757f,0.0900281f},{-0.0828396f,0.403757f,0.0918925f},{-0.0872815f,0.406855f,0.0900281f}, - {-0.0918488f,0.409759f,0.0900281f},{-0.0872816f,0.406855f,0.0918925f},{-0.091849f,0.409759f,0.0918925f}, - {-0.0965352f,0.412465f,0.0900281f},{-0.0965352f,0.412465f,0.0918925f},{-0.101334f,0.41497f,0.0900281f}, - {-0.106239f,0.417269f,0.0900281f},{-0.101334f,0.41497f,0.0918925f},{-0.106239f,0.417269f,0.0918925f}, - {-0.111243f,0.419359f,0.0900281f},{-0.111243f,0.419359f,0.0918925f},{-0.116341f,0.421236f,0.0900281f}, - {-0.121519f,0.422894f,0.0900281f},{-0.116342f,0.421236f,0.0918925f},{-0.121519f,0.422894f,0.0918925f}, - {-0.126754f,0.424327f,0.0900281f},{-0.126754f,0.424327f,0.0918925f},{-0.132038f,0.425533f,0.0900281f}, - {-0.137363f,0.426511f,0.0900281f},{-0.132038f,0.425533f,0.0918925f},{-0.137364f,0.426511f,0.0918925f}, - {-0.142723f,0.427261f,0.0900281f},{-0.142723f,0.427261f,0.0918925f},{-0.14811f,0.427781f,0.0900281f}, - {-0.153516f,0.428071f,0.0900281f},{-0.14811f,0.427781f,0.0918925f},{-0.153516f,0.428071f,0.0918925f}, - {-0.158934f,0.428131f,0.0900281f},{-0.158934f,0.428131f,0.0918925f},{-0.164356f,0.427958f,0.0900281f}, - {-0.169776f,0.427553f,0.0900281f},{-0.164357f,0.427958f,0.0918925f},{-0.169776f,0.427553f,0.0918925f}, - {-0.18196f,0.448656f,0.0918925f},{-0.18196f,0.448656f,0.0900281f},{-0.0049028f,0.5f,0.0918925f}, - {0.00490289f,0.5f,0.0918925f},{-0.00490289f,0.5f,0.0900281f},{-0.0147057f,0.499724f,0.0900281f}, - {-0.0147055f,0.499724f,0.0918925f},{-0.0244996f,0.499171f,0.0900281f},{-0.0244996f,0.499171f,0.0918925f}, - {-0.0342788f,0.498342f,0.0918925f},{-0.034279f,0.498342f,0.0900281f},{-0.0440377f,0.497236f,0.0900281f}, - {-0.0440376f,0.497236f,0.0918925f},{-0.05377f,0.495854f,0.0900281f},{-0.05377f,0.495854f,0.0918925f}, - {-0.0634697f,0.494196f,0.0918925f},{-0.0634706f,0.494196f,0.0900281f},{-0.0731194f,0.492264f,0.0900281f}, - {-0.0731193f,0.492264f,0.0918925f},{-0.0826996f,0.490062f,0.0900281f},{-0.0826996f,0.490062f,0.0918925f}, - {-0.0922052f,0.487593f,0.0918925f},{-0.0922054f,0.487593f,0.0900281f},{-0.101631f,0.484859f,0.0900281f}, - {-0.101631f,0.484859f,0.0918925f},{-0.110971f,0.481861f,0.0900281f},{-0.110971f,0.481861f,0.0918925f}, - {-0.120221f,0.478603f,0.0918925f},{-0.120221f,0.478602f,0.0900281f},{-0.129374f,0.475085f,0.0900281f}, - {-0.129374f,0.475085f,0.0918925f},{-0.138425f,0.47131f,0.0900281f},{-0.138425f,0.47131f,0.0918925f}, - {-0.147368f,0.46728f,0.0918925f},{-0.147369f,0.46728f,0.0900281f},{-0.156199f,0.462998f,0.0900281f}, - {-0.156199f,0.462998f,0.0918925f},{-0.164912f,0.458465f,0.0900281f},{-0.164912f,0.458465f,0.0918925f}, - {-0.173501f,0.453684f,0.0918925f},{-0.173501f,0.453684f,0.0900281f},{0.0049028f,0.5f,0.0900281f}, - {0.0147055f,0.499724f,0.0900281f},{0.0147057f,0.499724f,0.0918925f},{0.0244996f,0.499171f,0.0918925f}, - {0.0244996f,0.499171f,0.0900281f},{0.034279f,0.498342f,0.0918925f},{0.0342788f,0.498342f,0.0900281f}, - {0.0440376f,0.497236f,0.0900281f},{0.0440377f,0.497236f,0.0918925f},{0.05377f,0.495854f,0.0918925f}, - {0.05377f,0.495854f,0.0900281f},{0.0634706f,0.494196f,0.0918925f},{0.0634697f,0.494196f,0.0900281f}, - {0.0731193f,0.492264f,0.0900281f},{0.0731194f,0.492264f,0.0918925f},{0.0826996f,0.490062f,0.0918925f}, - {0.0826996f,0.490062f,0.0900281f},{0.0922054f,0.487593f,0.0918925f},{0.0922052f,0.487593f,0.0900281f}, - {0.101631f,0.484859f,0.0900281f},{0.101631f,0.484859f,0.0918925f},{0.110971f,0.481861f,0.0918925f}, - {0.110971f,0.481861f,0.0900281f},{0.120221f,0.478602f,0.0918925f},{0.120221f,0.478603f,0.0900281f}, - {0.129374f,0.475085f,0.0900281f},{0.129374f,0.475085f,0.0918925f},{0.138425f,0.47131f,0.0918925f}, - {0.138425f,0.47131f,0.0900281f},{0.147369f,0.46728f,0.0918925f},{0.147368f,0.46728f,0.0900281f}, - {0.156199f,0.462998f,0.0900281f},{0.156199f,0.462998f,0.0918925f},{0.164912f,0.458465f,0.0918925f}, - {0.164912f,0.458465f,0.0900281f},{0.173501f,0.453684f,0.0918925f},{0.173501f,0.453684f,0.0900281f}, - {-0.0200317f,0.295886f,0.0918925f},{-0.0036392f,0.280259f,0.0918925f},{-0.00474168f,0.280781f,0.0918925f}, - {-0.0152687f,0.28931f,0.0918925f},{-0.0183517f,0.29453f,0.0918925f},{-0.0057053f,0.28153f,0.0918925f}, - {-0.0130697f,0.291507f,0.0918925f},{-0.0151095f,0.289835f,0.0918925f},{-0.0173478f,0.294119f,0.0918925f}, - {-0.0109706f,0.291087f,0.0918925f},{-0.0105473f,0.290739f,0.0918925f},{-0.0192577f,0.295126f,0.0918925f}, - {-0.0206442f,0.296782f,0.0918925f},{-0.0210723f,0.297778f,0.0918925f},{-0.0101998f,0.290316f,0.0918925f}, - {-0.0140791f,0.291091f,0.0918925f},{-0.0151984f,0.293911f,0.0918925f},{-0.0145033f,0.290742f,0.0918925f}, - {0.0105451f,0.315791f,0.0918925f},{0.0101973f,0.315367f,0.0918925f},{0.0109693f,0.316139f,0.0918925f}, - {0.00977971f,0.314358f,0.0918925f},{0.00993885f,0.314883f,0.0918925f},{0.0151067f,0.314881f,0.0918925f}, - {0.0119787f,0.316555f,0.0918925f},{0.0114536f,0.316397f,0.0918925f},{0.0125242f,0.316609f,0.0918925f}, - {0.013595f,0.316394f,0.0918925f},{0.0140778f,0.316135f,0.0918925f},{0.0145011f,0.315788f,0.0918925f}, - {0.0148486f,0.315364f,0.0918925f},{0.015266f,0.314357f,0.0918925f},{-0.0148511f,0.290318f,0.0918925f}, - {-0.0162833f,0.29391f,0.0918925f},{-0.0119779f,0.291506f,0.0918925f},{-0.0125242f,0.291561f,0.0918925f}, - {-0.0114534f,0.291346f,0.0918925f},{-0.0135948f,0.291349f,0.0918925f},{-0.00994166f,0.289833f,0.0918925f}, - {0.0130705f,0.316555f,0.0918925f},{-0.00978241f,0.289309f,0.0918925f},{-0.00474296f,0.280782f,0.0900281f}, - {-0.0210725f,0.297777f,0.0900281f},{-0.020644f,0.296781f,0.0900281f},{-0.0105451f,0.290742f,0.0900281f}, - {-0.00364027f,0.280259f,0.0900281f},{-0.00993885f,0.289835f,0.0900281f},{-0.0200312f,0.295886f,0.0900281f}, - {-0.0192574f,0.295126f,0.0900281f},{-0.0162822f,0.29391f,0.0900281f},{-0.0145011f,0.290739f,0.0900281f}, - {-0.0148486f,0.290316f,0.0900281f},{-0.0125242f,0.291561f,0.0900281f},{-0.00977971f,0.28931f,0.0900281f}, - {-0.0109693f,0.291091f,0.0900281f},{-0.0101973f,0.290318f,0.0900281f},{-0.0114536f,0.291349f,0.0900281f}, - {0.0145033f,0.315791f,0.0900281f},{0.0140791f,0.316139f,0.0900281f},{0.00978241f,0.314357f,0.0900281f}, - {0.00994166f,0.314881f,0.0900281f},{-0.0183513f,0.294529f,0.0900281f},{-0.0173468f,0.294119f,0.0900281f}, - {-0.0151067f,0.289833f,0.0900281f},{-0.015266f,0.289309f,0.0900281f},{-0.0140778f,0.291087f,0.0900281f}, - {-0.0151976f,0.293911f,0.0900281f},{-0.013595f,0.291346f,0.0900281f},{-0.00570553f,0.28153f,0.0900281f}, - {0.0119779f,0.316555f,0.0900281f},{0.0101998f,0.315364f,0.0900281f},{0.0125242f,0.316609f,0.0900281f}, - {0.0130697f,0.316555f,0.0900281f},{0.0135948f,0.316397f,0.0900281f},{0.0148511f,0.315367f,0.0900281f}, - {0.0151095f,0.314883f,0.0900281f},{0.0109706f,0.316135f,0.0900281f},{0.0152687f,0.314358f,0.0900281f}, - {0.0114534f,0.316394f,0.0900281f},{0.0105473f,0.315788f,0.0900281f},{-0.0119787f,0.291507f,0.0900281f}, - {-0.0130705f,0.291506f,0.0900281f},{0.0125242f,-0.285968f,0.0900281f},{0.0130723f,-0.286022f,0.0918925f}, - {0.0125242f,-0.285968f,0.0918925f},{0.011454f,-0.286181f,0.0918925f},{0.011454f,-0.286181f,0.0900281f}, - {0.0119761f,-0.286022f,0.0918925f},{0.0119761f,-0.286022f,0.0900281f},{0.0109726f,-0.286438f,0.0900281f}, - {0.0105467f,-0.286787f,0.0900281f},{0.0105467f,-0.286787f,0.0918925f},{0.0101975f,-0.287213f,0.0900281f}, - {0.0101975f,-0.287213f,0.0918925f},{0.0109726f,-0.286438f,0.0918925f},{0.00972758f,-0.288764f,0.0900281f}, - {0.00978182f,-0.288216f,0.0900281f},{0.00978182f,-0.288216f,0.0918925f},{0.00994047f,-0.287694f,0.0918925f}, - {0.00994047f,-0.287694f,0.0900281f},{0.00972758f,-0.288764f,0.0918925f},{0.0130723f,-0.286022f,0.0900281f}, - {0.0135944f,-0.286181f,0.0918925f},{0.0135944f,-0.286181f,0.0900281f},{0.0140758f,-0.286438f,0.0900281f}, - {0.0140758f,-0.286438f,0.0918925f},{0.0145017f,-0.286787f,0.0900281f},{0.0145017f,-0.286787f,0.0918925f}, - {0.0148509f,-0.287213f,0.0918925f},{0.0148509f,-0.287213f,0.0900281f},{0.0151079f,-0.287694f,0.0900281f}, - {0.0151079f,-0.287694f,0.0918925f},{0.0152666f,-0.288216f,0.0900281f},{0.0152666f,-0.288216f,0.0918925f}, - {0.0153208f,-0.288764f,0.0918925f},{0.0153208f,-0.288764f,0.0900281f},{-0.0125242f,-0.311016f,0.0900281f}, - {-0.0119761f,-0.31107f,0.0918925f},{-0.0125242f,-0.311016f,0.0918925f},{-0.0135944f,-0.311229f,0.0918925f}, - {-0.0135944f,-0.311229f,0.0900281f},{-0.0130723f,-0.31107f,0.0918925f},{-0.0130723f,-0.31107f,0.0900281f}, - {-0.0140758f,-0.311486f,0.0900281f},{-0.0145017f,-0.311835f,0.0900281f},{-0.0145017f,-0.311835f,0.0918925f}, - {-0.0148509f,-0.312261f,0.0900281f},{-0.0148509f,-0.312261f,0.0918925f},{-0.0140758f,-0.311486f,0.0918925f}, - {-0.0153208f,-0.313813f,0.0900281f},{-0.0152666f,-0.313265f,0.0900281f},{-0.0152666f,-0.313265f,0.0918925f}, - {-0.0151079f,-0.312743f,0.0918925f},{-0.0151079f,-0.312743f,0.0900281f},{-0.0153208f,-0.313813f,0.0918925f}, - {-0.0119761f,-0.31107f,0.0900281f},{-0.011454f,-0.311229f,0.0918925f},{-0.011454f,-0.311229f,0.0900281f}, - {-0.0109726f,-0.311486f,0.0900281f},{-0.0109726f,-0.311486f,0.0918925f},{-0.0105467f,-0.311835f,0.0900281f}, - {-0.0105467f,-0.311835f,0.0918925f},{-0.0101975f,-0.312261f,0.0918925f},{-0.0101975f,-0.312261f,0.0900281f}, - {-0.00994047f,-0.312743f,0.0900281f},{-0.00994047f,-0.312743f,0.0918925f},{-0.00978182f,-0.313265f,0.0900281f}, - {-0.00978182f,-0.313265f,0.0918925f},{-0.00972758f,-0.313813f,0.0918925f},{-0.00972758f,-0.313813f,0.0900281f}, - {0.0073455f,-0.284736f,0.0900281f},{0.00738926f,-0.285954f,0.0918925f},{0.00734538f,-0.284736f,0.0918925f}, - {0.00703877f,-0.283556f,0.0900281f},{0.0070384f,-0.283555f,0.0918925f},{0.00648281f,-0.28247f,0.0900281f}, - {0.00648282f,-0.28247f,0.0918925f},{0.00738915f,-0.285956f,0.0900281f},{0.00716427f,-0.287154f,0.0918925f}, - {0.00716427f,-0.287154f,0.0900281f},{-0.00856857f,-0.309858f,0.0918925f},{-0.0078732f,-0.310706f,0.0918925f}, - {-0.00856991f,-0.309857f,0.0900281f},{-0.00787361f,-0.310705f,0.0900281f},{-0.0073566f,-0.311673f,0.0918925f}, - {-0.00703838f,-0.312722f,0.0918925f},{-0.00735691f,-0.311672f,0.0900281f},{-0.00693097f,-0.313813f,0.0918925f}, - {-0.00703853f,-0.312721f,0.0900281f},{-0.00693097f,-0.313813f,0.0900281f},{-0.00941743f,-0.309162f,0.0900281f}, - {-0.0103841f,-0.308645f,0.0900281f},{-0.00941663f,-0.309162f,0.0918925f},{-0.0114331f,-0.308327f,0.0900281f}, - {-0.0103834f,-0.308645f,0.0918925f},{-0.0114326f,-0.308327f,0.0918925f},{-0.0125242f,-0.30822f,0.0900281f}, - {-0.0125242f,-0.30822f,0.0918925f},{0.065917f,-0.401959f,0.0918925f},{0.0617984f,-0.398048f,0.0918925f}, - {0.0659174f,-0.40196f,0.0900281f},{0.07019f,-0.405692f,0.0900281f},{0.0701898f,-0.405691f,0.0918925f}, - {0.0746077f,-0.409237f,0.0900281f},{0.0746076f,-0.409237f,0.0918925f},{0.0791643f,-0.412592f,0.0918925f}, - {0.0791644f,-0.412592f,0.0900281f},{0.0838538f,-0.415754f,0.0900281f},{0.0838537f,-0.415754f,0.0918925f}, - {0.0886696f,-0.418717f,0.0900281f},{0.0886696f,-0.418717f,0.0918925f},{0.0936056f,-0.421479f,0.0918925f}, - {0.0936057f,-0.421479f,0.0900281f},{0.0986557f,-0.424035f,0.0900281f},{0.0986556f,-0.424035f,0.0918925f}, - {0.103813f,-0.426382f,0.0900281f},{0.103813f,-0.426382f,0.0918925f},{0.109072f,-0.428515f,0.0918925f}, - {0.109073f,-0.428515f,0.0900281f},{0.11442f,-0.430428f,0.0900281f},{0.11442f,-0.430428f,0.0918925f}, - {0.119834f,-0.432114f,0.0900281f},{0.119834f,-0.432114f,0.0918925f},{0.125306f,-0.433572f,0.0918925f}, - {0.125307f,-0.433572f,0.0900281f},{0.130829f,-0.4348f,0.0900281f},{0.130829f,-0.4348f,0.0918925f}, - {0.136396f,-0.435797f,0.0900281f},{0.136396f,-0.435797f,0.0918925f},{0.141999f,-0.436561f,0.0918925f}, - {0.141999f,-0.436561f,0.0900281f},{0.147631f,-0.437093f,0.0900281f},{0.147631f,-0.437093f,0.0918925f}, - {0.153284f,-0.437391f,0.0900281f},{0.153284f,-0.437391f,0.0918925f},{0.158952f,-0.437453f,0.0918925f}, - {0.158952f,-0.437453f,0.0900281f},{0.164627f,-0.437279f,0.0900281f},{0.164627f,-0.437279f,0.0918925f}, - {0.0617987f,-0.398048f,0.0900281f},{0.0578515f,-0.393973f,0.0900281f},{0.0578514f,-0.393973f,0.0918925f}, - {0.054083f,-0.389744f,0.0918925f},{0.0540831f,-0.389744f,0.0900281f},{0.0504973f,-0.385366f,0.0918925f}, - {0.0504974f,-0.385366f,0.0900281f},{0.0470986f,-0.380846f,0.0900281f},{0.0470985f,-0.380846f,0.0918925f}, - {0.0438908f,-0.376189f,0.0918925f},{0.0438908f,-0.376189f,0.0900281f},{0.0408784f,-0.371402f,0.0918925f}, - {0.0408785f,-0.371402f,0.0900281f},{0.0380656f,-0.36649f,0.0900281f},{0.0380655f,-0.36649f,0.0918925f}, - {0.0354565f,-0.36146f,0.0918925f},{0.0354565f,-0.36146f,0.0900281f},{0.0330551f,-0.356317f,0.0918925f}, - {0.0330554f,-0.356318f,0.0900281f},{0.0308688f,-0.351076f,0.0900281f},{0.0308688f,-0.351076f,0.0918925f}, - {0.0289059f,-0.345756f,0.0918925f},{0.0289059f,-0.345756f,0.0900281f},{0.0271683f,-0.340366f,0.0918925f}, - {0.0271684f,-0.340366f,0.0900281f},{0.0256577f,-0.334914f,0.0900281f},{0.0256577f,-0.334914f,0.0918925f}, - {0.0243753f,-0.329406f,0.0918925f},{0.0243754f,-0.329406f,0.0900281f},{0.0233228f,-0.32385f,0.0918925f}, - {0.0233228f,-0.32385f,0.0900281f},{0.0225016f,-0.318253f,0.0900281f},{0.0225016f,-0.318253f,0.0918925f}, - {0.0219132f,-0.312622f,0.0918925f},{0.0219132f,-0.312623f,0.0900281f},{0.0215591f,-0.306965f,0.0918925f}, - {0.0215591f,-0.306965f,0.0900281f},{0.0214407f,-0.301289f,0.0918925f},{0.0214407f,-0.301289f,0.0900281f}, - {0.0214056f,-0.300061f,0.0918925f},{0.0214056f,-0.300061f,0.0900281f},{0.0213002f,-0.298838f,0.0900281f}, - {0.0213002f,-0.298838f,0.0918925f},{0.00857005f,-0.29272f,0.0900281f},{0.00933952f,-0.293362f,0.0900281f}, - {0.00856812f,-0.292718f,0.0918925f},{0.0102104f,-0.293856f,0.0918925f},{0.00933867f,-0.293362f,0.0918925f}, - {0.010212f,-0.293857f,0.0900281f},{0.0111572f,-0.294188f,0.0918925f},{0.0111588f,-0.294188f,0.0900281f}, - {0.0121484f,-0.294345f,0.0918925f},{0.0131504f,-0.294322f,0.0918925f},{0.0121494f,-0.294345f,0.0900281f}, - {0.0141339f,-0.294121f,0.0900281f},{0.0131516f,-0.294322f,0.0900281f},{0.0141339f,-0.294121f,0.0918925f}, - {0.00792586f,-0.291949f,0.0918925f},{0.00792654f,-0.29195f,0.0900281f},{0.00743177f,-0.291078f,0.0900281f}, - {0.00710074f,-0.290131f,0.0900281f},{0.00743116f,-0.291076f,0.0918925f},{0.00710007f,-0.290129f,0.0918925f}, - {0.00694354f,-0.28914f,0.0900281f},{0.00694356f,-0.289139f,0.0918925f},{0.00696625f,-0.288138f,0.0900281f}, - {0.00696632f,-0.288136f,0.0918925f},{-0.0121669f,-0.283634f,0.0900281f},{-0.0102959f,-0.282482f,0.0900281f}, - {-0.0102961f,-0.282482f,0.0918925f},{-0.012167f,-0.283634f,0.0918925f},{-0.013914f,-0.284976f,0.0900281f}, - {-0.008319f,-0.281528f,0.0918925f},{-0.00831882f,-0.281527f,0.0900281f},{-0.00625128f,-0.280779f,0.0918925f}, - {-0.00625078f,-0.280779f,0.0900281f},{-0.00411456f,-0.280246f,0.0918925f},{-0.00411435f,-0.280246f,0.0900281f}, - {-0.00194003f,-0.279936f,0.0900281f},{-0.0019402f,-0.279936f,0.0918925f},{0.000253827f,-0.279849f,0.0918925f}, - {0.00245022f,-0.279988f,0.0918925f},{0.00025393f,-0.279849f,0.0900281f},{0.00245022f,-0.279988f,0.0900281f}, - {-0.0155106f,-0.286486f,0.0900281f},{-0.0139141f,-0.284976f,0.0918925f},{-0.0155107f,-0.286486f,0.0918925f}, - {-0.016943f,-0.288149f,0.0900281f},{-0.0169431f,-0.28815f,0.0918925f},{-0.0181996f,-0.289954f,0.0900281f}, - {-0.0192663f,-0.29188f,0.0900281f},{-0.0181999f,-0.289954f,0.0918925f},{-0.0192664f,-0.291881f,0.0918925f}, - {-0.0201277f,-0.293901f,0.0900281f},{-0.0201278f,-0.293901f,0.0918925f},{-0.0207778f,-0.295998f,0.0900281f}, - {-0.0212106f,-0.298156f,0.0900281f},{-0.0207778f,-0.295998f,0.0918925f},{-0.0212106f,-0.298156f,0.0918925f}, - {-0.0200545f,-0.303955f,0.0900281f},{-0.0207145f,-0.302604f,0.0918925f},{-0.020054f,-0.303956f,0.0918925f}, - {-0.0191712f,-0.305176f,0.0900281f},{-0.0207149f,-0.302603f,0.0900281f},{-0.0211353f,-0.301156f,0.0918925f}, - {-0.0191712f,-0.305176f,0.0918925f},{-0.0211356f,-0.301155f,0.0900281f},{-0.021302f,-0.29966f,0.0918925f}, - {-0.0213021f,-0.299659f,0.0900281f},{-0.0180928f,-0.306228f,0.0900281f},{-0.018092f,-0.306229f,0.0918925f}, - {-0.0168512f,-0.307079f,0.0918925f},{-0.0168521f,-0.307079f,0.0900281f},{-0.0154797f,-0.307707f,0.0918925f}, - {-0.0154807f,-0.307707f,0.0900281f},{-0.0140259f,-0.30809f,0.0900281f},{-0.014025f,-0.30809f,0.0918925f}, - {-0.00703853f,-0.314904f,0.0918925f},{-0.00856991f,-0.317768f,0.0918925f},{-0.0078732f,-0.31692f,0.0900281f}, - {-0.00787361f,-0.31692f,0.0918925f},{-0.00735691f,-0.315954f,0.0918925f},{-0.0073566f,-0.315953f,0.0900281f}, - {-0.00703838f,-0.314904f,0.0900281f},{-0.0103834f,-0.31898f,0.0900281f},{-0.0103841f,-0.31898f,0.0918925f}, - {-0.0114331f,-0.319299f,0.0918925f},{-0.00856857f,-0.317767f,0.0900281f},{-0.00941743f,-0.318464f,0.0918925f}, - {-0.00941663f,-0.318463f,0.0900281f},{-0.0125242f,-0.319406f,0.0918925f},{-0.0114326f,-0.319298f,0.0900281f}, - {-0.0125242f,-0.319406f,0.0900281f},{-0.017806f,-0.32063f,0.0900281f},{-0.0178073f,-0.32063f,0.0918925f}, - {-0.0193785f,-0.321554f,0.0900281f},{-0.0193787f,-0.321554f,0.0918925f},{-0.0161135f,-0.319955f,0.0918925f}, - {-0.0161128f,-0.319955f,0.0900281f},{-0.0143418f,-0.319544f,0.0900281f},{-0.0143423f,-0.319544f,0.0918925f}, - {-0.0207886f,-0.322701f,0.0900281f},{-0.0220123f,-0.324052f,0.0900281f},{-0.0207888f,-0.322701f,0.0918925f}, - {-0.0220132f,-0.324053f,0.0918925f},{-0.023018f,-0.325573f,0.0900281f},{-0.0230183f,-0.325573f,0.0918925f}, - {-0.02378f,-0.327224f,0.0900281f},{-0.0242851f,-0.328976f,0.0900281f},{-0.0237802f,-0.327224f,0.0918925f}, - {-0.0242851f,-0.328976f,0.0918925f},{-0.0744192f,-0.409092f,0.0918925f},{-0.0744192f,-0.409092f,0.0900281f}, - {-0.0700077f,-0.405539f,0.0900281f},{-0.065746f,-0.401803f,0.0900281f},{-0.0700077f,-0.405539f,0.0918925f}, - {-0.06164f,-0.397891f,0.0900281f},{-0.0657461f,-0.401803f,0.0918925f},{-0.0616401f,-0.397891f,0.0918925f}, - {-0.0576956f,-0.393805f,0.0900281f},{-0.0539185f,-0.389551f,0.0900281f},{-0.0576957f,-0.393805f,0.0918925f}, - {-0.0503158f,-0.385134f,0.0900281f},{-0.0539186f,-0.389551f,0.0918925f},{-0.050316f,-0.385135f,0.0918925f}, - {-0.0469052f,-0.380577f,0.0900281f},{-0.0436939f,-0.375889f,0.0900281f},{-0.0469052f,-0.380577f,0.0918925f}, - {-0.0406851f,-0.371079f,0.0900281f},{-0.0436939f,-0.375889f,0.0918925f},{-0.0406851f,-0.371079f,0.0918925f}, - {-0.0378819f,-0.366152f,0.0900281f},{-0.0352877f,-0.361116f,0.0900281f},{-0.037882f,-0.366152f,0.0918925f}, - {-0.0329054f,-0.355977f,0.0900281f},{-0.0352877f,-0.361116f,0.0918925f},{-0.0329055f,-0.355977f,0.0918925f}, - {-0.0307383f,-0.350742f,0.0900281f},{-0.0287896f,-0.345418f,0.0900281f},{-0.0307384f,-0.350742f,0.0918925f}, - {-0.0270624f,-0.340011f,0.0900281f},{-0.0287897f,-0.345418f,0.0918925f},{-0.0270624f,-0.340011f,0.0918925f}, - {-0.0255598f,-0.334528f,0.0900281f},{-0.0255599f,-0.334528f,0.0918925f},{-0.0789746f,-0.412458f,0.0918925f}, - {-0.0789746f,-0.412458f,0.0900281f},{-0.0836681f,-0.415634f,0.0918925f},{-0.0884938f,-0.418614f,0.0918925f}, - {-0.083668f,-0.415634f,0.0900281f},{-0.0934459f,-0.421394f,0.0918925f},{-0.0884937f,-0.418614f,0.0900281f}, - {-0.0934458f,-0.421394f,0.0900281f},{-0.0985185f,-0.423969f,0.0918925f},{-0.103704f,-0.426335f,0.0918925f}, - {-0.0985183f,-0.423969f,0.0900281f},{-0.108978f,-0.428478f,0.0918925f},{-0.103704f,-0.426334f,0.0900281f}, - {-0.108977f,-0.428478f,0.0900281f},{-0.114326f,-0.430397f,0.0918925f},{-0.119742f,-0.432088f,0.0918925f}, - {-0.114326f,-0.430397f,0.0900281f},{-0.125218f,-0.43355f,0.0918925f},{-0.119742f,-0.432088f,0.0900281f}, - {-0.125218f,-0.43355f,0.0900281f},{-0.130747f,-0.434783f,0.0918925f},{-0.136322f,-0.435785f,0.0918925f}, - {-0.130747f,-0.434783f,0.0900281f},{-0.141936f,-0.436554f,0.0918925f},{-0.136322f,-0.435785f,0.0900281f}, - {-0.141935f,-0.436554f,0.0900281f},{-0.14758f,-0.43709f,0.0918925f},{-0.153248f,-0.43739f,0.0918925f}, - {-0.14758f,-0.43709f,0.0900281f},{-0.158933f,-0.437453f,0.0918925f},{-0.153248f,-0.43739f,0.0900281f}, - {-0.158933f,-0.437453f,0.0900281f},{-0.164627f,-0.437279f,0.0918925f},{-0.164627f,-0.437279f,0.0900281f}, - {-0.169288f,-0.445352f,0.0900281f},{-0.169288f,-0.445352f,0.0918925f},{-0.0239114f,-0.489867f,0.0918925f}, - {-0.0143525f,-0.490408f,0.0918925f},{-0.0143527f,-0.490408f,0.0900281f},{0.00478512f,-0.490679f,0.0900281f}, - {-0.00478519f,-0.490679f,0.0900281f},{-0.00478512f,-0.490679f,0.0918925f},{-0.0239115f,-0.489867f,0.0900281f}, - {-0.0334558f,-0.489056f,0.0918925f},{-0.0334558f,-0.489056f,0.0900281f},{-0.0429801f,-0.487973f,0.0900281f}, - {-0.04298f,-0.487973f,0.0918925f},{-0.0524782f,-0.486621f,0.0918925f},{-0.0524784f,-0.486621f,0.0900281f}, - {-0.0619436f,-0.484998f,0.0900281f},{-0.0619434f,-0.484998f,0.0918925f},{-0.0806965f,-0.480955f,0.0900281f}, - {-0.089968f,-0.47854f,0.0900281f},{-0.0899679f,-0.47854f,0.0918925f},{-0.0713532f,-0.483109f,0.0918925f}, - {-0.0713532f,-0.483109f,0.0900281f},{-0.0806964f,-0.480955f,0.0918925f},{-0.0991622f,-0.475866f,0.0918925f}, - {-0.0991623f,-0.475866f,0.0900281f},{-0.108274f,-0.472933f,0.0900281f},{-0.108274f,-0.472933f,0.0918925f}, - {-0.117298f,-0.469745f,0.0918925f},{-0.117298f,-0.469745f,0.0900281f},{-0.126228f,-0.466302f,0.0918925f}, - {-0.143787f,-0.458664f,0.0900281f},{-0.143786f,-0.458664f,0.0918925f},{-0.135059f,-0.462608f,0.0900281f}, - {-0.135059f,-0.462608f,0.0918925f},{-0.126228f,-0.466302f,0.0900281f},{-0.152404f,-0.454472f,0.0900281f}, - {-0.152404f,-0.454472f,0.0918925f},{-0.160907f,-0.450034f,0.0900281f},{-0.160906f,-0.450034f,0.0918925f}, - {0.00478519f,-0.490679f,0.0918925f},{0.0143525f,-0.490408f,0.0900281f},{0.0143527f,-0.490408f,0.0918925f}, - {0.0239114f,-0.489867f,0.0900281f},{0.0334558f,-0.489056f,0.0900281f},{0.0239115f,-0.489867f,0.0918925f}, - {0.0334558f,-0.489056f,0.0918925f},{0.04298f,-0.487973f,0.0900281f},{0.0429801f,-0.487973f,0.0918925f}, - {0.0524782f,-0.486621f,0.0900281f},{0.0619434f,-0.484998f,0.0900281f},{0.0524784f,-0.486621f,0.0918925f}, - {0.0619436f,-0.484998f,0.0918925f},{0.0713532f,-0.483109f,0.0900281f},{0.0713532f,-0.483109f,0.0918925f}, - {0.0806964f,-0.480955f,0.0900281f},{0.0899679f,-0.47854f,0.0900281f},{0.0806965f,-0.480955f,0.0918925f}, - {0.089968f,-0.47854f,0.0918925f},{0.0991622f,-0.475866f,0.0900281f},{0.0991623f,-0.475866f,0.0918925f}, - {0.108274f,-0.472933f,0.0900281f},{0.117298f,-0.469745f,0.0900281f},{0.108274f,-0.472933f,0.0918925f}, - {0.117298f,-0.469745f,0.0918925f},{0.126228f,-0.466302f,0.0900281f},{0.126228f,-0.466302f,0.0918925f}, - {0.135059f,-0.462608f,0.0900281f},{0.143786f,-0.458664f,0.0900281f},{0.135059f,-0.462608f,0.0918925f}, - {0.143787f,-0.458664f,0.0918925f},{0.152404f,-0.454472f,0.0900281f},{0.152404f,-0.454472f,0.0918925f}, - {0.160906f,-0.450034f,0.0900281f},{0.169288f,-0.445352f,0.0900281f},{0.160907f,-0.450034f,0.0918925f}, - {0.169288f,-0.445352f,0.0918925f},{-0.169776f,-0.427553f,0.0918925f},{-0.18196f,-0.448656f,0.0900281f}, - {-0.18196f,-0.448656f,0.0918925f},{-0.169776f,-0.427553f,0.0900281f},{-0.0785294f,-0.400468f,0.0900281f}, - {-0.0828396f,-0.403757f,0.0900281f},{-0.0828395f,-0.403757f,0.0918925f},{-0.0743574f,-0.396993f,0.0900281f}, - {-0.074357f,-0.396993f,0.0918925f},{-0.0703325f,-0.393337f,0.0900281f},{-0.0872815f,-0.406855f,0.0918925f}, - {-0.0785292f,-0.400468f,0.0918925f},{-0.0872816f,-0.406855f,0.0900281f},{-0.0918488f,-0.409759f,0.0918925f}, - {-0.091849f,-0.409759f,0.0900281f},{-0.0965352f,-0.412465f,0.0900281f},{-0.0965352f,-0.412465f,0.0918925f}, - {-0.101334f,-0.41497f,0.0918925f},{-0.101334f,-0.41497f,0.0900281f},{-0.106239f,-0.417269f,0.0900281f}, - {-0.111243f,-0.419359f,0.0918925f},{-0.106239f,-0.417269f,0.0918925f},{-0.111243f,-0.419359f,0.0900281f}, - {-0.116342f,-0.421236f,0.0900281f},{-0.116341f,-0.421236f,0.0918925f},{-0.132038f,-0.425533f,0.0918925f}, - {-0.126754f,-0.424327f,0.0900281f},{-0.132038f,-0.425533f,0.0900281f},{-0.121519f,-0.422894f,0.0918925f}, - {-0.121519f,-0.422894f,0.0900281f},{-0.126754f,-0.424327f,0.0918925f},{-0.137363f,-0.426511f,0.0918925f}, - {-0.142723f,-0.427261f,0.0918925f},{-0.137364f,-0.426511f,0.0900281f},{-0.142723f,-0.427261f,0.0900281f}, - {-0.14811f,-0.427781f,0.0900281f},{-0.153516f,-0.428071f,0.0900281f},{-0.153516f,-0.428071f,0.0918925f}, - {-0.14811f,-0.427781f,0.0918925f},{-0.158934f,-0.428131f,0.0900281f},{-0.158934f,-0.428131f,0.0918925f}, - {-0.164357f,-0.427958f,0.0900281f},{-0.164356f,-0.427958f,0.0918925f},{-0.0664729f,-0.389518f,0.0900281f}, - {-0.0703321f,-0.393337f,0.0918925f},{-0.0664728f,-0.389518f,0.0918925f},{-0.0627861f,-0.385543f,0.0900281f}, - {-0.0627861f,-0.385543f,0.0918925f},{-0.0592762f,-0.381418f,0.0900281f},{-0.0559475f,-0.37715f,0.0900281f}, - {-0.0592761f,-0.381418f,0.0918925f},{-0.0559474f,-0.37715f,0.0918925f},{-0.0528044f,-0.372745f,0.0900281f}, - {-0.0528044f,-0.372745f,0.0918925f},{-0.0498513f,-0.368209f,0.0900281f},{-0.0470924f,-0.363547f,0.0900281f}, - {-0.0498511f,-0.368209f,0.0918925f},{-0.0470923f,-0.363547f,0.0918925f},{-0.0445321f,-0.358766f,0.0900281f}, - {-0.0445321f,-0.358766f,0.0918925f},{-0.042175f,-0.353872f,0.0900281f},{-0.0400276f,-0.348877f,0.0900281f}, - {-0.0421746f,-0.353871f,0.0918925f},{-0.0400276f,-0.348877f,0.0918925f},{-0.0380996f,-0.343803f,0.0900281f}, - {-0.0380996f,-0.343803f,0.0918925f},{-0.0363926f,-0.338659f,0.0900281f},{-0.0349082f,-0.333452f,0.0900281f}, - {-0.0363926f,-0.338659f,0.0918925f},{-0.0349082f,-0.333452f,0.0918925f},{-0.033648f,-0.328189f,0.0900281f}, - {-0.0336479f,-0.328189f,0.0918925f},{-0.0326134f,-0.322877f,0.0900281f},{-0.031806f,-0.317524f,0.0900281f}, - {-0.0326134f,-0.322877f,0.0918925f},{-0.031806f,-0.317524f,0.0918925f},{-0.0312275f,-0.312137f,0.0900281f}, - {-0.0312274f,-0.312136f,0.0918925f},{-0.0308792f,-0.306722f,0.0900281f},{-0.0307628f,-0.301289f,0.0900281f}, - {-0.0308792f,-0.306722f,0.0918925f},{-0.0307628f,-0.301289f,0.0918925f},{-2.84358e-015f,-0.270526f,0.0918925f}, - {-2.91313e-015f,-0.270526f,0.0900281f},{-0.00166887f,-0.270571f,0.0900281f},{-0.0033296f,-0.270707f,0.0900281f}, - {-0.00166875f,-0.270571f,0.0918925f},{-0.00497861f,-0.270931f,0.0900281f},{-0.00332938f,-0.270706f,0.0918925f}, - {-0.00497832f,-0.270931f,0.0918925f},{-0.00661229f,-0.271245f,0.0900281f},{-0.00822706f,-0.271646f,0.0900281f}, - {-0.00661197f,-0.271245f,0.0918925f},{-0.00981931f,-0.272135f,0.0900281f},{-0.00822672f,-0.271646f,0.0918925f}, - {-0.009819f,-0.272135f,0.0918925f},{-0.0113858f,-0.27271f,0.0900281f},{-0.0129196f,-0.27337f,0.0900281f}, - {-0.0113852f,-0.27271f,0.0918925f},{-0.0144128f,-0.274111f,0.0900281f},{-0.0129192f,-0.27337f,0.0918925f}, - {-0.0144127f,-0.274111f,0.0918925f},{-0.0158618f,-0.27493f,0.0900281f},{-0.0172635f,-0.275826f,0.0900281f}, - {-0.0158617f,-0.27493f,0.0918925f},{-0.0186148f,-0.276797f,0.0900281f},{-0.0172633f,-0.275826f,0.0918925f}, - {-0.0186146f,-0.276797f,0.0918925f},{-0.0199127f,-0.27784f,0.0900281f},{-0.0211544f,-0.278954f,0.0900281f}, - {-0.0199124f,-0.27784f,0.0918925f},{-0.0223352f,-0.280135f,0.0900281f},{-0.0211538f,-0.278953f,0.0918925f}, - {-0.0223347f,-0.280134f,0.0918925f},{-0.0234487f,-0.281376f,0.0900281f},{-0.0244917f,-0.282674f,0.0900281f}, - {-0.0234485f,-0.281376f,0.0918925f},{-0.0254622f,-0.284025f,0.0900281f},{-0.0244916f,-0.282674f,0.0918925f}, - {-0.0254621f,-0.284025f,0.0918925f},{-0.0263582f,-0.285427f,0.0900281f},{-0.0271776f,-0.286876f,0.0900281f}, - {-0.0263581f,-0.285427f,0.0918925f},{-0.0279185f,-0.288369f,0.0900281f},{-0.0271775f,-0.286876f,0.0918925f}, - {-0.0279183f,-0.288369f,0.0918925f},{-0.0285784f,-0.289903f,0.0900281f},{-0.0291536f,-0.29147f,0.0900281f}, - {-0.0285781f,-0.289903f,0.0918925f},{-0.0296423f,-0.293062f,0.0900281f},{-0.0291535f,-0.291469f,0.0918925f}, - {-0.0296423f,-0.293061f,0.0918925f},{-0.0300438f,-0.294677f,0.0900281f},{-0.0303573f,-0.29631f,0.0900281f}, - {-0.0300437f,-0.294676f,0.0918925f},{-0.0305821f,-0.297959f,0.0900281f},{-0.0303572f,-0.29631f,0.0918925f}, - {-0.030582f,-0.297959f,0.0918925f},{-0.0307175f,-0.29962f,0.0900281f},{-0.0307174f,-0.29962f,0.0918925f}, - {0.00166887f,-0.270571f,0.0918925f},{0.00166875f,-0.270571f,0.0900281f},{0.0033296f,-0.270707f,0.0918925f}, - {0.00497861f,-0.270931f,0.0918925f},{0.00332938f,-0.270706f,0.0900281f},{0.00661229f,-0.271245f,0.0918925f}, - {0.00497832f,-0.270931f,0.0900281f},{0.00661197f,-0.271245f,0.0900281f},{0.00822706f,-0.271646f,0.0918925f}, - {0.00981931f,-0.272135f,0.0918925f},{0.00822672f,-0.271646f,0.0900281f},{0.0113858f,-0.27271f,0.0918925f}, - {0.009819f,-0.272135f,0.0900281f},{0.0113852f,-0.27271f,0.0900281f},{0.0129196f,-0.27337f,0.0918925f}, - {0.0144128f,-0.274111f,0.0918925f},{0.0129192f,-0.27337f,0.0900281f},{0.0158618f,-0.27493f,0.0918925f}, - {0.0144127f,-0.274111f,0.0900281f},{0.0158617f,-0.27493f,0.0900281f},{0.0172635f,-0.275826f,0.0918925f}, - {0.0186148f,-0.276797f,0.0918925f},{0.0172633f,-0.275826f,0.0900281f},{0.0199127f,-0.27784f,0.0918925f}, - {0.0186146f,-0.276797f,0.0900281f},{0.0199124f,-0.27784f,0.0900281f},{0.0211544f,-0.278954f,0.0918925f}, - {0.0223352f,-0.280135f,0.0918925f},{0.0211538f,-0.278953f,0.0900281f},{0.0234487f,-0.281376f,0.0918925f}, - {0.0223347f,-0.280134f,0.0900281f},{0.0234485f,-0.281376f,0.0900281f},{0.0244917f,-0.282674f,0.0918925f}, - {0.0254622f,-0.284025f,0.0918925f},{0.0244916f,-0.282674f,0.0900281f},{0.0263582f,-0.285427f,0.0918925f}, - {0.0254621f,-0.284025f,0.0900281f},{0.0263581f,-0.285427f,0.0900281f},{0.0271776f,-0.286876f,0.0918925f}, - {0.0279185f,-0.288369f,0.0918925f},{0.0271775f,-0.286876f,0.0900281f},{0.0285784f,-0.289903f,0.0918925f}, - {0.0279183f,-0.288369f,0.0900281f},{0.0285781f,-0.289903f,0.0900281f},{0.0291536f,-0.29147f,0.0918925f}, - {0.0296423f,-0.293062f,0.0918925f},{0.0291535f,-0.291469f,0.0900281f},{0.0300438f,-0.294677f,0.0918925f}, - {0.0296423f,-0.293061f,0.0900281f},{0.0300437f,-0.294676f,0.0900281f},{0.0303573f,-0.29631f,0.0918925f}, - {0.0305821f,-0.297959f,0.0918925f},{0.0303572f,-0.29631f,0.0900281f},{0.0307175f,-0.29962f,0.0918925f}, - {0.030582f,-0.297959f,0.0900281f},{0.0307174f,-0.29962f,0.0900281f},{0.0307628f,-0.301289f,0.0918925f}, - {0.0307628f,-0.301289f,0.0900281f},{0.0664728f,-0.389518f,0.0900281f},{0.0627861f,-0.385543f,0.0900281f}, - {0.0627861f,-0.385543f,0.0918925f},{0.0703321f,-0.393337f,0.0900281f},{0.0703325f,-0.393337f,0.0918925f}, - {0.074357f,-0.396993f,0.0900281f},{0.0592762f,-0.381418f,0.0918925f},{0.0664729f,-0.389518f,0.0918925f}, - {0.0592761f,-0.381418f,0.0900281f},{0.0559475f,-0.37715f,0.0918925f},{0.0559474f,-0.37715f,0.0900281f}, - {0.0528044f,-0.372745f,0.0900281f},{0.0528044f,-0.372745f,0.0918925f},{0.0498513f,-0.368209f,0.0918925f}, - {0.0498511f,-0.368209f,0.0900281f},{0.0470923f,-0.363547f,0.0900281f},{0.0445321f,-0.358766f,0.0918925f}, - {0.0470924f,-0.363547f,0.0918925f},{0.0445321f,-0.358766f,0.0900281f},{0.0421746f,-0.353871f,0.0900281f}, - {0.042175f,-0.353872f,0.0918925f},{0.0363926f,-0.338659f,0.0918925f},{0.0380996f,-0.343803f,0.0900281f}, - {0.0363926f,-0.338659f,0.0900281f},{0.0400276f,-0.348877f,0.0918925f},{0.0400276f,-0.348877f,0.0900281f}, - {0.0380996f,-0.343803f,0.0918925f},{0.0349082f,-0.333452f,0.0918925f},{0.033648f,-0.328189f,0.0918925f}, - {0.0349082f,-0.333452f,0.0900281f},{0.0336479f,-0.328189f,0.0900281f},{0.0326134f,-0.322877f,0.0900281f}, - {0.031806f,-0.317524f,0.0900281f},{0.031806f,-0.317524f,0.0918925f},{0.0326134f,-0.322877f,0.0918925f}, - {0.0312274f,-0.312136f,0.0900281f},{0.0312275f,-0.312137f,0.0918925f},{0.0308792f,-0.306722f,0.0900281f}, - {0.0308792f,-0.306722f,0.0918925f},{0.0785292f,-0.400468f,0.0900281f},{0.0743574f,-0.396993f,0.0918925f}, - {0.0785294f,-0.400468f,0.0918925f},{0.0828395f,-0.403757f,0.0900281f},{0.0828396f,-0.403757f,0.0918925f}, - {0.0872815f,-0.406855f,0.0900281f},{0.0918488f,-0.409759f,0.0900281f},{0.0872816f,-0.406855f,0.0918925f}, - {0.091849f,-0.409759f,0.0918925f},{0.0965352f,-0.412465f,0.0900281f},{0.0965352f,-0.412465f,0.0918925f}, - {0.101334f,-0.41497f,0.0900281f},{0.106239f,-0.417269f,0.0900281f},{0.101334f,-0.41497f,0.0918925f}, - {0.106239f,-0.417269f,0.0918925f},{0.111243f,-0.419359f,0.0900281f},{0.111243f,-0.419359f,0.0918925f}, - {0.116341f,-0.421236f,0.0900281f},{0.121519f,-0.422894f,0.0900281f},{0.116342f,-0.421236f,0.0918925f}, - {0.121519f,-0.422894f,0.0918925f},{0.126754f,-0.424327f,0.0900281f},{0.126754f,-0.424327f,0.0918925f}, - {0.132038f,-0.425533f,0.0900281f},{0.137363f,-0.426511f,0.0900281f},{0.132038f,-0.425533f,0.0918925f}, - {0.137364f,-0.426511f,0.0918925f},{0.142723f,-0.427261f,0.0900281f},{0.142723f,-0.427261f,0.0918925f}, - {0.14811f,-0.427781f,0.0900281f},{0.153516f,-0.428071f,0.0900281f},{0.14811f,-0.427781f,0.0918925f}, - {0.153516f,-0.428071f,0.0918925f},{0.158934f,-0.428131f,0.0900281f},{0.158934f,-0.428131f,0.0918925f}, - {0.164356f,-0.427958f,0.0900281f},{0.169776f,-0.427553f,0.0900281f},{0.164357f,-0.427958f,0.0918925f}, - {0.169776f,-0.427553f,0.0918925f},{0.18196f,-0.448656f,0.0918925f},{0.18196f,-0.448656f,0.0900281f}, - {0.0049028f,-0.5f,0.0918925f},{-0.00490289f,-0.5f,0.0918925f},{0.00490289f,-0.5f,0.0900281f}, - {0.0147057f,-0.499724f,0.0900281f},{0.0147055f,-0.499724f,0.0918925f},{0.0244996f,-0.499171f,0.0900281f}, - {0.0244996f,-0.499171f,0.0918925f},{0.0342788f,-0.498342f,0.0918925f},{0.034279f,-0.498342f,0.0900281f}, - {0.0440377f,-0.497236f,0.0900281f},{0.0440376f,-0.497236f,0.0918925f},{0.05377f,-0.495854f,0.0900281f}, - {0.05377f,-0.495854f,0.0918925f},{0.0634697f,-0.494196f,0.0918925f},{0.0634706f,-0.494196f,0.0900281f}, - {0.0731194f,-0.492264f,0.0900281f},{0.0731193f,-0.492264f,0.0918925f},{0.0826996f,-0.490062f,0.0900281f}, - {0.0826996f,-0.490062f,0.0918925f},{0.0922052f,-0.487593f,0.0918925f},{0.0922054f,-0.487593f,0.0900281f}, - {0.101631f,-0.484859f,0.0900281f},{0.101631f,-0.484859f,0.0918925f},{0.110971f,-0.481861f,0.0900281f}, - {0.110971f,-0.481861f,0.0918925f},{0.120221f,-0.478603f,0.0918925f},{0.120221f,-0.478602f,0.0900281f}, - {0.129374f,-0.475085f,0.0900281f},{0.129374f,-0.475085f,0.0918925f},{0.138425f,-0.47131f,0.0900281f}, - {0.138425f,-0.47131f,0.0918925f},{0.147368f,-0.46728f,0.0918925f},{0.147369f,-0.46728f,0.0900281f}, - {0.156199f,-0.462998f,0.0900281f},{0.156199f,-0.462998f,0.0918925f},{0.164912f,-0.458465f,0.0900281f}, - {0.164912f,-0.458465f,0.0918925f},{0.173501f,-0.453684f,0.0918925f},{0.173501f,-0.453684f,0.0900281f}, - {-0.0049028f,-0.5f,0.0900281f},{-0.0147055f,-0.499724f,0.0900281f},{-0.0147057f,-0.499724f,0.0918925f}, - {-0.0244996f,-0.499171f,0.0918925f},{-0.0244996f,-0.499171f,0.0900281f},{-0.034279f,-0.498342f,0.0918925f}, - {-0.0342788f,-0.498342f,0.0900281f},{-0.0440376f,-0.497236f,0.0900281f},{-0.0440377f,-0.497236f,0.0918925f}, - {-0.05377f,-0.495854f,0.0918925f},{-0.05377f,-0.495854f,0.0900281f},{-0.0634706f,-0.494196f,0.0918925f}, - {-0.0634697f,-0.494196f,0.0900281f},{-0.0731193f,-0.492264f,0.0900281f},{-0.0731194f,-0.492264f,0.0918925f}, - {-0.0826996f,-0.490062f,0.0918925f},{-0.0826996f,-0.490062f,0.0900281f},{-0.0922054f,-0.487593f,0.0918925f}, - {-0.0922052f,-0.487593f,0.0900281f},{-0.101631f,-0.484859f,0.0900281f},{-0.101631f,-0.484859f,0.0918925f}, - {-0.110971f,-0.481861f,0.0918925f},{-0.110971f,-0.481861f,0.0900281f},{-0.120221f,-0.478602f,0.0918925f}, - {-0.120221f,-0.478603f,0.0900281f},{-0.129374f,-0.475085f,0.0900281f},{-0.129374f,-0.475085f,0.0918925f}, - {-0.138425f,-0.47131f,0.0918925f},{-0.138425f,-0.47131f,0.0900281f},{-0.147369f,-0.46728f,0.0918925f}, - {-0.147368f,-0.46728f,0.0900281f},{-0.156199f,-0.462998f,0.0900281f},{-0.156199f,-0.462998f,0.0918925f}, - {-0.164912f,-0.458465f,0.0918925f},{-0.164912f,-0.458465f,0.0900281f},{-0.173501f,-0.453684f,0.0918925f}, - {-0.173501f,-0.453684f,0.0900281f},{0.0200317f,-0.295886f,0.0918925f},{0.0036392f,-0.280259f,0.0918925f}, - {0.00474168f,-0.280781f,0.0918925f},{0.0152687f,-0.28931f,0.0918925f},{0.0183517f,-0.29453f,0.0918925f}, - {0.0057053f,-0.28153f,0.0918925f},{0.0130697f,-0.291507f,0.0918925f},{0.0151095f,-0.289835f,0.0918925f}, - {0.0173478f,-0.294119f,0.0918925f},{0.0109706f,-0.291087f,0.0918925f},{0.0105473f,-0.290739f,0.0918925f}, - {0.0192577f,-0.295126f,0.0918925f},{0.0206442f,-0.296782f,0.0918925f},{0.0210723f,-0.297778f,0.0918925f}, - {0.0101998f,-0.290316f,0.0918925f},{0.0140791f,-0.291091f,0.0918925f},{0.0151984f,-0.293911f,0.0918925f}, - {0.0145033f,-0.290742f,0.0918925f},{-0.0105451f,-0.315791f,0.0918925f},{-0.0101973f,-0.315367f,0.0918925f}, - {-0.0109693f,-0.316139f,0.0918925f},{-0.00977971f,-0.314358f,0.0918925f},{-0.00993885f,-0.314883f,0.0918925f}, - {-0.0151067f,-0.314881f,0.0918925f},{-0.0119787f,-0.316555f,0.0918925f},{-0.0114536f,-0.316397f,0.0918925f}, - {-0.0125242f,-0.316609f,0.0918925f},{-0.013595f,-0.316394f,0.0918925f},{-0.0140778f,-0.316135f,0.0918925f}, - {-0.0145011f,-0.315788f,0.0918925f},{-0.0148486f,-0.315364f,0.0918925f},{-0.015266f,-0.314357f,0.0918925f}, - {0.0148511f,-0.290318f,0.0918925f},{0.0162833f,-0.29391f,0.0918925f},{0.0119779f,-0.291506f,0.0918925f}, - {0.0125242f,-0.291561f,0.0918925f},{0.0114534f,-0.291346f,0.0918925f},{0.0135948f,-0.291349f,0.0918925f}, - {0.00994166f,-0.289833f,0.0918925f},{-0.0130705f,-0.316555f,0.0918925f},{0.00978241f,-0.289309f,0.0918925f}, - {0.00474296f,-0.280782f,0.0900281f},{0.0210725f,-0.297777f,0.0900281f},{0.020644f,-0.296781f,0.0900281f}, - {0.0105451f,-0.290742f,0.0900281f},{0.00364027f,-0.280259f,0.0900281f},{0.00993885f,-0.289835f,0.0900281f}, - {0.0200312f,-0.295886f,0.0900281f},{0.0192574f,-0.295126f,0.0900281f},{0.0162822f,-0.29391f,0.0900281f}, - {0.0145011f,-0.290739f,0.0900281f},{0.0148486f,-0.290316f,0.0900281f},{0.0125242f,-0.291561f,0.0900281f}, - {0.00977971f,-0.28931f,0.0900281f},{0.0109693f,-0.291091f,0.0900281f},{0.0101973f,-0.290318f,0.0900281f}, - {0.0114536f,-0.291349f,0.0900281f},{-0.0145033f,-0.315791f,0.0900281f},{-0.0140791f,-0.316139f,0.0900281f}, - {-0.00978241f,-0.314357f,0.0900281f},{-0.00994166f,-0.314881f,0.0900281f},{0.0183513f,-0.294529f,0.0900281f}, - {0.0173468f,-0.294119f,0.0900281f},{0.0151067f,-0.289833f,0.0900281f},{0.015266f,-0.289309f,0.0900281f}, - {0.0140778f,-0.291087f,0.0900281f},{0.0151976f,-0.293911f,0.0900281f},{0.013595f,-0.291346f,0.0900281f}, - {0.00570553f,-0.28153f,0.0900281f},{-0.0119779f,-0.316555f,0.0900281f},{-0.0101998f,-0.315364f,0.0900281f}, - {-0.0125242f,-0.316609f,0.0900281f},{-0.0130697f,-0.316555f,0.0900281f},{-0.0135948f,-0.316397f,0.0900281f}, - {-0.0148511f,-0.315367f,0.0900281f},{-0.0151095f,-0.314883f,0.0900281f},{-0.0109706f,-0.316135f,0.0900281f}, - {-0.0152687f,-0.314358f,0.0900281f},{-0.0114534f,-0.316394f,0.0900281f},{-0.0105473f,-0.315788f,0.0900281f}, - {0.0119787f,-0.291507f,0.0900281f},{0.0130705f,-0.291506f,0.0900281f},{-0.301289f,0.00279661f,0.127503f}, - {-0.301289f,0.00279661f,0.13496f},{-0.3008f,0.00275356f,0.13496f},{-0.300331f,0.00262748f,0.13496f}, - {-0.300801f,0.00275376f,0.127503f},{-0.300332f,0.00262801f,0.127503f},{-0.299893f,0.00242333f,0.127503f}, - {-0.299493f,0.00214411f,0.127503f},{-0.299891f,0.00242266f,0.13496f},{-0.299491f,0.00214219f,0.13496f}, - {-0.299146f,0.00179767f,0.127503f},{-0.299144f,0.00179504f,0.13496f},{-0.298866f,0.00139727f,0.127503f}, - {-0.298661f,0.000957717f,0.127503f},{-0.298865f,0.00139564f,0.13496f},{-0.298661f,0.000956449f,0.13496f}, - {-0.298535f,0.000488516f,0.127503f},{-0.298535f,0.000488516f,0.13496f},{-0.298492f,3.42486e-019f,0.13496f}, - {-0.298492f,3.42486e-019f,0.127503f},{-0.301777f,0.00275356f,0.127503f},{-0.302246f,0.00262748f,0.127503f}, - {-0.301776f,0.00275376f,0.13496f},{-0.302684f,0.00242333f,0.13496f},{-0.302245f,0.00262801f,0.13496f}, - {-0.302686f,0.00242266f,0.127503f},{-0.303084f,0.00214411f,0.13496f},{-0.303086f,0.00214219f,0.127503f}, - {-0.303431f,0.00179767f,0.13496f},{-0.303711f,0.00139727f,0.13496f},{-0.303433f,0.00179504f,0.127503f}, - {-0.303712f,0.00139564f,0.127503f},{-0.303916f,0.000957717f,0.13496f},{-0.303917f,0.000956449f,0.127503f}, - {-0.304042f,0.000488516f,0.13496f},{-0.304042f,0.000488516f,0.127503f},{-0.304085f,0.0f,0.127503f}, - {-0.304085f,0.0f,0.13496f},{-0.301289f,0.00466102f,0.125638f},{-0.301289f,0.00466102f,0.127503f}, - {-0.300676f,0.00462052f,0.127503f},{-0.300079f,0.00450127f,0.127503f},{-0.300676f,0.00462066f,0.125638f}, - {-0.299505f,0.00430621f,0.127503f},{-0.300079f,0.00450141f,0.125638f},{-0.299505f,0.00430621f,0.125638f}, - {-0.298961f,0.00403818f,0.127503f},{-0.298454f,0.00370041f,0.127503f},{-0.298961f,0.00403832f,0.125638f}, - {-0.297993f,0.00329584f,0.127503f},{-0.298455f,0.00370055f,0.125638f},{-0.297993f,0.00329584f,0.125638f}, - {-0.297588f,0.00283386f,0.127503f},{-0.29725f,0.00232743f,0.127503f},{-0.297588f,0.0028342f,0.125638f}, - {-0.296982f,0.00178369f,0.127503f},{-0.29725f,0.00232777f,0.125638f},{-0.296787f,0.00120978f,0.125638f}, - {-0.296982f,0.00178369f,0.125638f},{-0.296787f,0.00120944f,0.127503f},{-0.296668f,0.000612842f,0.125638f}, - {-0.296668f,0.000612502f,0.127503f},{-0.296628f,5.70811e-019f,0.125638f},{-0.296628f,5.70811e-019f,0.127503f}, - {-0.301901f,0.00462052f,0.125638f},{-0.302498f,0.00450127f,0.125638f},{-0.301901f,0.00462066f,0.127503f}, - {-0.302498f,0.00450141f,0.127503f},{-0.303072f,0.00430621f,0.125638f},{-0.303616f,0.00403818f,0.125638f}, - {-0.303072f,0.00430621f,0.127503f},{-0.304123f,0.00370041f,0.125638f},{-0.303616f,0.00403832f,0.127503f}, - {-0.304122f,0.00370055f,0.127503f},{-0.304584f,0.00329584f,0.125638f},{-0.304989f,0.00283386f,0.125638f}, - {-0.304584f,0.00329584f,0.127503f},{-0.305327f,0.00232743f,0.125638f},{-0.304989f,0.0028342f,0.127503f}, - {-0.305327f,0.00232777f,0.127503f},{-0.305595f,0.00178369f,0.125638f},{-0.30579f,0.00120978f,0.127503f}, - {-0.305595f,0.00178369f,0.127503f},{-0.30579f,0.00120944f,0.125638f},{-0.305909f,0.000612842f,0.127503f}, - {-0.30595f,0.0f,0.127503f},{-0.305909f,0.000612502f,0.125638f},{-0.30595f,0.0f,0.125638f}, - {-0.29833f,-0.00883211f,0.125638f},{-0.298135f,-0.00916975f,0.125638f},{-0.298136f,-0.00916839f,0.121909f}, - {-0.298331f,-0.00883048f,0.121909f},{-0.298451f,-0.00846133f,0.125638f},{-0.298451f,-0.00845974f,0.121909f}, - {-0.298492f,-0.0080728f,0.121909f},{-0.298451f,-0.00768692f,0.125638f},{-0.298492f,-0.00807384f,0.125638f}, - {-0.298451f,-0.00768446f,0.121909f},{-0.298331f,-0.00731545f,0.125638f},{-0.29833f,-0.00731401f,0.121909f}, - {-0.298136f,-0.00697763f,0.125638f},{-0.298136f,-0.00697682f,0.121909f},{-0.297876f,-0.00668858f,0.125638f}, - {-0.297875f,-0.0066878f,0.121909f},{-0.29756f,-0.0064585f,0.121909f},{-0.29756f,-0.0064585f,0.125638f}, - {-0.297876f,-0.00945833f,0.121909f},{-0.29756f,-0.00968734f,0.121909f},{-0.297874f,-0.00945929f,0.125638f}, - {-0.297559f,-0.00968796f,0.125638f},{-0.297205f,-0.00984564f,0.121909f},{-0.297203f,-0.00984651f,0.125638f}, - {-0.296823f,-0.00992724f,0.121909f},{-0.296433f,-0.00992738f,0.121909f},{-0.296822f,-0.00992734f,0.125638f}, - {-0.296432f,-0.00992724f,0.125638f},{-0.296053f,-0.00984657f,0.121909f},{-0.296052f,-0.00984636f,0.125638f}, - {-0.295695f,-0.00968775f,0.121909f},{-0.295695f,-0.00968775f,0.125638f},{-0.293346f,-0.00814348f,0.125638f}, - {-0.293065f,-0.00862894f,0.125638f},{-0.293067f,-0.00862571f,0.121909f},{-0.29355f,-0.00762194f,0.125638f}, - {-0.293347f,-0.00813961f,0.121909f},{-0.29355f,-0.00762066f,0.121909f},{-0.293673f,-0.00708133f,0.125638f}, - {-0.293673f,-0.00708043f,0.121909f},{-0.293715f,-0.0065271f,0.121909f},{-0.293715f,-0.00652944f,0.125638f}, - {-0.293674f,-0.00597413f,0.125638f},{-0.293344f,-0.00490426f,0.121909f},{-0.293067f,-0.00442484f,0.125638f}, - {-0.293344f,-0.00490499f,0.125638f},{-0.293673f,-0.00596985f,0.121909f},{-0.293549f,-0.00542656f,0.125638f}, - {-0.293548f,-0.00542408f,0.121909f},{-0.293066f,-0.00442313f,0.121909f},{-0.292722f,-0.00399173f,0.125638f}, - {-0.29272f,-0.00398963f,0.121909f},{-0.292314f,-0.00361295f,0.121909f},{-0.291851f,-0.00329618f,0.125638f}, - {-0.292314f,-0.00361295f,0.125638f},{-0.291851f,-0.00329618f,0.121909f},{-0.292718f,-0.00906373f,0.121909f}, - {-0.292311f,-0.00944065f,0.121909f},{-0.292717f,-0.00906452f,0.125638f},{-0.29231f,-0.00944121f,0.125638f}, - {-0.291854f,-0.00975253f,0.121909f},{-0.291852f,-0.00975397f,0.125638f},{-0.291352f,-0.00999456f,0.121909f}, - {-0.290816f,-0.0101607f,0.121909f},{-0.291349f,-0.0099963f,0.125638f},{-0.290813f,-0.010161f,0.125638f}, - {-0.290262f,-0.010244f,0.121909f},{-0.290261f,-0.0102441f,0.125638f},{-0.289707f,-0.0102439f,0.121909f}, - {-0.28916f,-0.0101614f,0.121909f},{-0.289705f,-0.0102436f,0.125638f},{-0.289157f,-0.010161f,0.125638f}, - {-0.288628f,-0.0099979f,0.121909f},{-0.288628f,-0.0099979f,0.125638f},{-0.288122f,-0.00975468f,0.121909f}, - {-0.288122f,-0.00975468f,0.125638f},{-0.307458f,-0.00697787f,0.125638f},{-0.307653f,-0.00731578f,0.125638f}, - {-0.307652f,-0.00731414f,0.121909f},{-0.307457f,-0.0069765f,0.121909f},{-0.307198f,-0.00668793f,0.125638f}, - {-0.307196f,-0.00668696f,0.121909f},{-0.306881f,-0.0064583f,0.121909f},{-0.306527f,-0.00630061f,0.125638f}, - {-0.306882f,-0.00645891f,0.125638f},{-0.306525f,-0.00629975f,0.121909f},{-0.306145f,-0.00621902f,0.125638f}, - {-0.306144f,-0.00621892f,0.121909f},{-0.305755f,-0.00621887f,0.125638f},{-0.305754f,-0.00621902f,0.121909f}, - {-0.305375f,-0.00629969f,0.125638f},{-0.305374f,-0.0062999f,0.121909f},{-0.305017f,-0.0064585f,0.121909f}, - {-0.305017f,-0.0064585f,0.125638f},{-0.307773f,-0.00768493f,0.121909f},{-0.307814f,-0.00807242f,0.121909f}, - {-0.307773f,-0.00768652f,0.125638f},{-0.307814f,-0.00807346f,0.125638f},{-0.307773f,-0.00845934f,0.121909f}, - {-0.307773f,-0.0084618f,0.125638f},{-0.307653f,-0.0088308f,0.121909f},{-0.307458f,-0.00916863f,0.121909f}, - {-0.307652f,-0.00883225f,0.125638f},{-0.307458f,-0.00916944f,0.125638f},{-0.307198f,-0.00945768f,0.121909f}, - {-0.307197f,-0.00945846f,0.125638f},{-0.306882f,-0.00968775f,0.121909f},{-0.306882f,-0.00968775f,0.125638f}, - {-0.304369f,-0.0109506f,0.125638f},{-0.304649f,-0.0114367f,0.125638f},{-0.304648f,-0.0114328f,0.121909f}, - {-0.30402f,-0.0105126f,0.125638f},{-0.304367f,-0.0109474f,0.121909f},{-0.304019f,-0.0105118f,0.121909f}, - {-0.303614f,-0.0101356f,0.125638f},{-0.303613f,-0.0101351f,0.121909f},{-0.303154f,-0.00982233f,0.121909f}, - {-0.303156f,-0.00982376f,0.125638f},{-0.302655f,-0.00958174f,0.125638f},{-0.301564f,-0.00933222f,0.121909f}, - {-0.30101f,-0.00933241f,0.125638f},{-0.301564f,-0.00933231f,0.125638f},{-0.302651f,-0.00958f,0.121909f}, - {-0.302118f,-0.00941561f,0.125638f},{-0.302116f,-0.00941532f,0.121909f},{-0.301008f,-0.0093327f,0.121909f}, - {-0.300462f,-0.00941491f,0.125638f},{-0.300459f,-0.00941526f,0.121909f},{-0.29993f,-0.0095784f,0.121909f}, - {-0.299424f,-0.00982161f,0.125638f},{-0.29993f,-0.0095784f,0.125638f},{-0.299424f,-0.00982161f,0.121909f}, - {-0.304853f,-0.0119544f,0.121909f},{-0.304976f,-0.012495f,0.121909f},{-0.304853f,-0.0119556f,0.125638f}, - {-0.304976f,-0.0124959f,0.125638f},{-0.305017f,-0.0130469f,0.121909f},{-0.305017f,-0.0130492f,0.125638f}, - {-0.304976f,-0.0136022f,0.121909f},{-0.304852f,-0.0141497f,0.121909f},{-0.304976f,-0.0136064f,0.125638f}, - {-0.304851f,-0.0141522f,0.125638f},{-0.304647f,-0.0146713f,0.121909f},{-0.304646f,-0.014672f,0.125638f}, - {-0.304369f,-0.0151515f,0.121909f},{-0.304024f,-0.0155846f,0.121909f},{-0.304368f,-0.0151532f,0.125638f}, - {-0.304023f,-0.0155867f,0.125638f},{-0.303617f,-0.0159633f,0.121909f},{-0.303617f,-0.0159633f,0.125638f}, - {-0.303153f,-0.0162801f,0.121909f},{-0.303153f,-0.0162801f,0.125638f},{-0.310416f,0.00185425f,0.125638f}, - {-0.310806f,0.00185398f,0.125638f},{-0.310805f,0.00185425f,0.121909f},{-0.310415f,0.00185398f,0.121909f}, - {-0.310035f,0.0017734f,0.125638f},{-0.310034f,0.00177278f,0.121909f},{-0.309678f,0.0016145f,0.121909f}, - {-0.309364f,0.0013863f,0.125638f},{-0.309679f,0.00161492f,0.125638f},{-0.309362f,0.00138471f,0.121909f}, - {-0.309103f,0.00109643f,0.125638f},{-0.309102f,0.00109509f,0.121909f},{-0.308908f,0.000758756f,0.125638f}, - {-0.308907f,0.000757801f,0.121909f},{-0.308787f,0.000388892f,0.125638f},{-0.308787f,0.000387896f,0.121909f}, - {-0.308746f,3.69669e-018f,0.121909f},{-0.308746f,3.69669e-018f,0.125638f},{-0.311186f,0.0017734f,0.121909f}, - {-0.311542f,0.00161492f,0.121909f},{-0.311188f,0.00177278f,0.125638f},{-0.311543f,0.0016145f,0.125638f}, - {-0.311857f,0.0013863f,0.121909f},{-0.311859f,0.00138471f,0.125638f},{-0.312119f,0.00109643f,0.121909f}, - {-0.312314f,0.000758756f,0.121909f},{-0.312119f,0.00109509f,0.125638f},{-0.312314f,0.000757801f,0.125638f}, - {-0.312434f,0.000388892f,0.121909f},{-0.312434f,0.000387896f,0.125638f},{-0.312475f,4.75298e-018f,0.121909f}, - {-0.312475f,4.75298e-018f,0.125638f},{-0.312313f,-0.00280711f,0.125638f},{-0.312873f,-0.00280775f,0.125638f}, - {-0.312869f,-0.00280711f,0.121909f},{-0.311758f,-0.00289062f,0.125638f},{-0.312308f,-0.00280775f,0.121909f}, - {-0.311757f,-0.00289112f,0.121909f},{-0.311229f,-0.00305432f,0.125638f},{-0.311228f,-0.00305467f,0.121909f}, - {-0.310728f,-0.00329522f,0.121909f},{-0.31073f,-0.00329432f,0.125638f},{-0.31027f,-0.00360761f,0.125638f}, - {-0.309508f,-0.00442796f,0.121909f},{-0.309231f,-0.00490757f,0.125638f},{-0.309508f,-0.00442732f,0.125638f}, - {-0.310266f,-0.00361015f,0.121909f},{-0.309858f,-0.00398905f,0.125638f},{-0.309856f,-0.00399124f,0.121909f}, - {-0.30923f,-0.00490957f,0.121909f},{-0.309029f,-0.00542319f,0.125638f},{-0.309028f,-0.00542563f,0.121909f}, - {-0.308905f,-0.00596545f,0.121909f},{-0.308862f,-0.00652543f,0.125638f},{-0.308905f,-0.00596545f,0.125638f}, - {-0.308862f,-0.00652543f,0.121909f},{-0.313423f,-0.00289062f,0.121909f},{-0.313953f,-0.00305432f,0.121909f}, - {-0.313425f,-0.00289112f,0.125638f},{-0.313954f,-0.00305467f,0.125638f},{-0.314452f,-0.00329432f,0.121909f}, - {-0.314454f,-0.00329522f,0.125638f},{-0.314912f,-0.00360761f,0.121909f},{-0.315324f,-0.00398905f,0.121909f}, - {-0.314916f,-0.00361015f,0.125638f},{-0.315326f,-0.00399124f,0.125638f},{-0.315673f,-0.00442732f,0.121909f}, - {-0.315674f,-0.00442796f,0.125638f},{-0.315951f,-0.00490757f,0.121909f},{-0.316153f,-0.00542319f,0.121909f}, - {-0.315951f,-0.00490957f,0.125638f},{-0.316154f,-0.00542563f,0.125638f},{-0.316277f,-0.00596545f,0.121909f}, - {-0.316277f,-0.00596545f,0.125638f},{-0.31632f,-0.00652543f,0.121909f},{-0.31632f,-0.00652543f,0.125638f}, - {-0.304247f,0.00883211f,0.125638f},{-0.304442f,0.00916975f,0.125638f},{-0.304441f,0.00916839f,0.121909f}, - {-0.304246f,0.00883048f,0.121909f},{-0.304126f,0.00846133f,0.125638f},{-0.304126f,0.00845974f,0.121909f}, - {-0.304085f,0.0080728f,0.121909f},{-0.304126f,0.00768692f,0.125638f},{-0.304085f,0.00807384f,0.125638f}, - {-0.304126f,0.00768446f,0.121909f},{-0.304246f,0.00731545f,0.125638f},{-0.304247f,0.00731401f,0.121909f}, - {-0.304441f,0.00697763f,0.125638f},{-0.304442f,0.00697682f,0.121909f},{-0.304701f,0.00668858f,0.125638f}, - {-0.304702f,0.0066878f,0.121909f},{-0.305017f,0.0064585f,0.121909f},{-0.305017f,0.0064585f,0.125638f}, - {-0.304702f,0.00945833f,0.121909f},{-0.305017f,0.00968734f,0.121909f},{-0.304703f,0.00945929f,0.125638f}, - {-0.305018f,0.00968796f,0.125638f},{-0.305372f,0.00984564f,0.121909f},{-0.305375f,0.00984651f,0.125638f}, - {-0.305754f,0.00992724f,0.121909f},{-0.306144f,0.00992738f,0.121909f},{-0.305756f,0.00992734f,0.125638f}, - {-0.306145f,0.00992724f,0.125638f},{-0.306524f,0.00984657f,0.121909f},{-0.306525f,0.00984636f,0.125638f}, - {-0.306882f,0.00968775f,0.121909f},{-0.306882f,0.00968775f,0.125638f},{-0.309232f,0.00814348f,0.125638f}, - {-0.309513f,0.00862894f,0.125638f},{-0.30951f,0.00862571f,0.121909f},{-0.309027f,0.00762194f,0.125638f}, - {-0.30923f,0.00813961f,0.121909f},{-0.309027f,0.00762066f,0.121909f},{-0.308904f,0.00708133f,0.125638f}, - {-0.308904f,0.00708043f,0.121909f},{-0.308862f,0.0065271f,0.121909f},{-0.308862f,0.00652944f,0.125638f}, - {-0.308903f,0.00597413f,0.125638f},{-0.309233f,0.00490426f,0.121909f},{-0.30951f,0.00442484f,0.125638f}, - {-0.309233f,0.00490499f,0.125638f},{-0.308904f,0.00596985f,0.121909f},{-0.309028f,0.00542656f,0.125638f}, - {-0.309029f,0.00542408f,0.121909f},{-0.309511f,0.00442313f,0.121909f},{-0.309855f,0.00399173f,0.125638f}, - {-0.309857f,0.00398963f,0.121909f},{-0.310263f,0.00361295f,0.121909f},{-0.310726f,0.00329618f,0.125638f}, - {-0.310263f,0.00361295f,0.125638f},{-0.310726f,0.00329618f,0.121909f},{-0.309859f,0.00906373f,0.121909f}, - {-0.310266f,0.00944065f,0.121909f},{-0.30986f,0.00906452f,0.125638f},{-0.310267f,0.00944121f,0.125638f}, - {-0.310723f,0.00975253f,0.121909f},{-0.310725f,0.00975397f,0.125638f},{-0.311225f,0.00999456f,0.121909f}, - {-0.311761f,0.0101607f,0.121909f},{-0.311229f,0.0099963f,0.125638f},{-0.311764f,0.010161f,0.125638f}, - {-0.312315f,0.010244f,0.121909f},{-0.312316f,0.0102441f,0.125638f},{-0.31287f,0.0102439f,0.121909f}, - {-0.313417f,0.0101614f,0.121909f},{-0.312872f,0.0102436f,0.125638f},{-0.31342f,0.010161f,0.125638f}, - {-0.313949f,0.0099979f,0.121909f},{-0.313949f,0.0099979f,0.125638f},{-0.314455f,0.00975468f,0.121909f}, - {-0.314455f,0.00975468f,0.125638f},{-0.295119f,0.00697787f,0.125638f},{-0.294924f,0.00731578f,0.125638f}, - {-0.294925f,0.00731414f,0.121909f},{-0.29512f,0.0069765f,0.121909f},{-0.29538f,0.00668793f,0.125638f}, - {-0.295381f,0.00668696f,0.121909f},{-0.295696f,0.0064583f,0.121909f},{-0.29605f,0.00630061f,0.125638f}, - {-0.295695f,0.00645891f,0.125638f},{-0.296052f,0.00629975f,0.121909f},{-0.296432f,0.00621902f,0.125638f}, - {-0.296434f,0.00621892f,0.121909f},{-0.296822f,0.00621887f,0.125638f},{-0.296823f,0.00621902f,0.121909f}, - {-0.297202f,0.00629969f,0.125638f},{-0.297203f,0.0062999f,0.121909f},{-0.29756f,0.0064585f,0.121909f}, - {-0.29756f,0.0064585f,0.125638f},{-0.294804f,0.00768493f,0.121909f},{-0.294763f,0.00807242f,0.121909f}, - {-0.294804f,0.00768652f,0.125638f},{-0.294763f,0.00807346f,0.125638f},{-0.294804f,0.00845934f,0.121909f}, - {-0.294804f,0.0084618f,0.125638f},{-0.294924f,0.0088308f,0.121909f},{-0.295119f,0.00916863f,0.121909f}, - {-0.294925f,0.00883225f,0.125638f},{-0.29512f,0.00916944f,0.125638f},{-0.295379f,0.00945768f,0.121909f}, - {-0.29538f,0.00945846f,0.125638f},{-0.295695f,0.00968775f,0.121909f},{-0.295695f,0.00968775f,0.125638f}, - {-0.298208f,0.0109506f,0.125638f},{-0.297928f,0.0114367f,0.125638f},{-0.297929f,0.0114328f,0.121909f}, - {-0.298557f,0.0105126f,0.125638f},{-0.29821f,0.0109474f,0.121909f},{-0.298558f,0.0105118f,0.121909f}, - {-0.298964f,0.0101356f,0.125638f},{-0.298964f,0.0101351f,0.121909f},{-0.299423f,0.00982233f,0.121909f}, - {-0.299421f,0.00982376f,0.125638f},{-0.299922f,0.00958174f,0.125638f},{-0.301014f,0.00933222f,0.121909f}, - {-0.301567f,0.00933241f,0.125638f},{-0.301013f,0.00933231f,0.125638f},{-0.299926f,0.00958f,0.121909f}, - {-0.300459f,0.00941561f,0.125638f},{-0.300461f,0.00941532f,0.121909f},{-0.301569f,0.0093327f,0.121909f}, - {-0.302115f,0.00941491f,0.125638f},{-0.302118f,0.00941526f,0.121909f},{-0.302647f,0.0095784f,0.121909f}, - {-0.303153f,0.00982161f,0.125638f},{-0.302647f,0.0095784f,0.125638f},{-0.303153f,0.00982161f,0.121909f}, - {-0.297725f,0.0119544f,0.121909f},{-0.297601f,0.012495f,0.121909f},{-0.297724f,0.0119556f,0.125638f}, - {-0.297601f,0.0124959f,0.125638f},{-0.29756f,0.0130469f,0.121909f},{-0.29756f,0.0130492f,0.125638f}, - {-0.297601f,0.0136022f,0.121909f},{-0.297725f,0.0141497f,0.121909f},{-0.297601f,0.0136064f,0.125638f}, - {-0.297726f,0.0141522f,0.125638f},{-0.29793f,0.0146713f,0.121909f},{-0.297931f,0.014672f,0.125638f}, - {-0.298208f,0.0151515f,0.121909f},{-0.298553f,0.0155846f,0.121909f},{-0.298209f,0.0151532f,0.125638f}, - {-0.298555f,0.0155867f,0.125638f},{-0.29896f,0.0159633f,0.121909f},{-0.29896f,0.0159633f,0.125638f}, - {-0.299424f,0.0162801f,0.121909f},{-0.299424f,0.0162801f,0.125638f},{-0.292161f,-0.00185425f,0.125638f}, - {-0.291771f,-0.00185398f,0.125638f},{-0.291772f,-0.00185425f,0.121909f},{-0.292162f,-0.00185398f,0.121909f}, - {-0.292542f,-0.0017734f,0.125638f},{-0.292544f,-0.00177278f,0.121909f},{-0.292899f,-0.0016145f,0.121909f}, - {-0.293213f,-0.0013863f,0.125638f},{-0.292898f,-0.00161492f,0.125638f},{-0.293215f,-0.00138471f,0.121909f}, - {-0.293474f,-0.00109643f,0.125638f},{-0.293475f,-0.00109509f,0.121909f},{-0.29367f,-0.000758756f,0.125638f}, - {-0.29367f,-0.000757801f,0.121909f},{-0.29379f,-0.000388892f,0.125638f},{-0.29379f,-0.000387896f,0.121909f}, - {-0.293831f,1.53975e-019f,0.121909f},{-0.293831f,1.53975e-019f,0.125638f},{-0.291391f,-0.0017734f,0.121909f}, - {-0.291035f,-0.00161492f,0.121909f},{-0.291389f,-0.00177278f,0.125638f},{-0.291034f,-0.0016145f,0.125638f}, - {-0.29072f,-0.0013863f,0.121909f},{-0.290718f,-0.00138471f,0.125638f},{-0.290459f,-0.00109643f,0.121909f}, - {-0.290263f,-0.000758756f,0.121909f},{-0.290458f,-0.00109509f,0.125638f},{-0.290263f,-0.000757801f,0.125638f}, - {-0.290143f,-0.000388892f,0.121909f},{-0.290143f,-0.000387896f,0.125638f},{-0.290102f,-7.4349e-020f,0.121909f}, - {-0.290102f,-7.4349e-020f,0.125638f},{-0.290265f,0.00280711f,0.125638f},{-0.289704f,0.00280775f,0.125638f}, - {-0.289708f,0.00280711f,0.121909f},{-0.290819f,0.00289062f,0.125638f},{-0.290269f,0.00280775f,0.121909f}, - {-0.29082f,0.00289112f,0.121909f},{-0.291348f,0.00305432f,0.125638f},{-0.291349f,0.00305467f,0.121909f}, - {-0.291849f,0.00329522f,0.121909f},{-0.291847f,0.00329432f,0.125638f},{-0.292307f,0.00360761f,0.125638f}, - {-0.293069f,0.00442796f,0.121909f},{-0.293346f,0.00490757f,0.125638f},{-0.293069f,0.00442732f,0.125638f}, - {-0.292311f,0.00361015f,0.121909f},{-0.292719f,0.00398905f,0.125638f},{-0.292721f,0.00399124f,0.121909f}, - {-0.293347f,0.00490957f,0.121909f},{-0.293548f,0.00542319f,0.125638f},{-0.293549f,0.00542563f,0.121909f}, - {-0.293673f,0.00596545f,0.121909f},{-0.293715f,0.00652543f,0.125638f},{-0.293673f,0.00596545f,0.125638f}, - {-0.293715f,0.00652543f,0.121909f},{-0.289154f,0.00289062f,0.121909f},{-0.288624f,0.00305432f,0.121909f}, - {-0.289153f,0.00289112f,0.125638f},{-0.288623f,0.00305467f,0.125638f},{-0.288125f,0.00329432f,0.121909f}, - {-0.288123f,0.00329522f,0.125638f},{-0.287665f,0.00360761f,0.121909f},{-0.287253f,0.00398905f,0.121909f}, - {-0.287661f,0.00361015f,0.125638f},{-0.287251f,0.00399124f,0.125638f},{-0.286904f,0.00442732f,0.121909f}, - {-0.286903f,0.00442796f,0.125638f},{-0.286627f,0.00490757f,0.121909f},{-0.286424f,0.00542319f,0.121909f}, - {-0.286626f,0.00490957f,0.125638f},{-0.286423f,0.00542563f,0.125638f},{-0.2863f,0.00596545f,0.121909f}, - {-0.2863f,0.00596545f,0.125638f},{-0.286257f,0.00652543f,0.121909f},{-0.286257f,0.00652543f,0.125638f}, - {-0.301289f,0.00279661f,0.100469f},{-0.301289f,0.00279661f,0.0986044f},{-0.301777f,0.00275356f,0.0986044f}, - {-0.302246f,0.00262748f,0.0986044f},{-0.301776f,0.00275376f,0.100469f},{-0.302245f,0.00262801f,0.100469f}, - {-0.302684f,0.00242333f,0.100469f},{-0.303084f,0.00214411f,0.100469f},{-0.302686f,0.00242266f,0.0986044f}, - {-0.303086f,0.00214219f,0.0986044f},{-0.303431f,0.00179767f,0.100469f},{-0.303433f,0.00179504f,0.0986044f}, - {-0.303711f,0.00139727f,0.100469f},{-0.303916f,0.000957717f,0.100469f},{-0.303712f,0.00139564f,0.0986044f}, - {-0.303917f,0.000956449f,0.0986044f},{-0.304042f,0.000488516f,0.100469f},{-0.304042f,0.000488516f,0.0986044f}, - {-0.304085f,3.42486e-019f,0.0986044f},{-0.304085f,3.42486e-019f,0.100469f},{-0.3008f,0.00275356f,0.100469f}, - {-0.300331f,0.00262748f,0.100469f},{-0.300801f,0.00275376f,0.0986044f},{-0.299893f,0.00242333f,0.0986044f}, - {-0.300332f,0.00262801f,0.0986044f},{-0.299891f,0.00242266f,0.100469f},{-0.299493f,0.00214411f,0.0986044f}, - {-0.299491f,0.00214219f,0.100469f},{-0.299146f,0.00179767f,0.0986044f},{-0.298866f,0.00139727f,0.0986044f}, - {-0.299144f,0.00179504f,0.100469f},{-0.298865f,0.00139564f,0.100469f},{-0.298661f,0.000957717f,0.0986044f}, - {-0.298661f,0.000956449f,0.100469f},{-0.298535f,0.000488516f,0.0986044f},{-0.298535f,0.000488516f,0.100469f}, - {-0.298492f,0.0f,0.100469f},{-0.298492f,0.0f,0.0986044f},{-0.301289f,0.00745764f,0.100469f}, - {-0.302026f,0.00742114f,0.100469f},{-0.301289f,0.00745764f,0.101401f},{-0.302026f,0.00742114f,0.101401f}, - {-0.30275f,0.00731301f,0.100469f},{-0.303457f,0.00713527f,0.100469f},{-0.30275f,0.00731301f,0.101401f}, - {-0.304142f,0.00688994f,0.100469f},{-0.303457f,0.00713527f,0.101401f},{-0.304142f,0.00688994f,0.101401f}, - {-0.3048f,0.00657906f,0.100469f},{-0.305426f,0.00620465f,0.100469f},{-0.3048f,0.00657906f,0.101401f}, - {-0.306015f,0.00576874f,0.100469f},{-0.305426f,0.00620465f,0.101401f},{-0.306015f,0.00576874f,0.101401f}, - {-0.306562f,0.00527335f,0.100469f},{-0.307057f,0.00472635f,0.100469f},{-0.306562f,0.00527335f,0.101401f}, - {-0.307493f,0.00413751f,0.100469f},{-0.307057f,0.00472635f,0.101401f},{-0.307493f,0.00413751f,0.101401f}, - {-0.307868f,0.00351173f,0.100469f},{-0.308178f,0.00285391f,0.100469f},{-0.307868f,0.00351173f,0.101401f}, - {-0.308424f,0.00216893f,0.100469f},{-0.308178f,0.00285391f,0.101401f},{-0.308424f,0.00216893f,0.101401f}, - {-0.308602f,0.00146169f,0.100469f},{-0.30871f,0.000737081f,0.100469f},{-0.308602f,0.00146169f,0.101401f}, - {-0.308746f,9.13297e-019f,0.100469f},{-0.30871f,0.000737081f,0.101401f},{-0.308746f,9.13297e-019f,0.101401f}, - {-0.300551f,0.00742114f,0.101401f},{-0.299827f,0.00731301f,0.101401f},{-0.300551f,0.00742114f,0.100469f}, - {-0.29912f,0.00713527f,0.101401f},{-0.299827f,0.00731301f,0.100469f},{-0.29912f,0.00713527f,0.100469f}, - {-0.298435f,0.00688994f,0.101401f},{-0.297777f,0.00657906f,0.101401f},{-0.298435f,0.00688994f,0.100469f}, - {-0.297151f,0.00620465f,0.101401f},{-0.297777f,0.00657906f,0.100469f},{-0.297151f,0.00620465f,0.100469f}, - {-0.296562f,0.00576874f,0.101401f},{-0.296015f,0.00527335f,0.101401f},{-0.296562f,0.00576874f,0.100469f}, - {-0.29552f,0.00472635f,0.101401f},{-0.296015f,0.00527335f,0.100469f},{-0.29552f,0.00472635f,0.100469f}, - {-0.295084f,0.00413751f,0.101401f},{-0.294709f,0.00351173f,0.101401f},{-0.295084f,0.00413751f,0.100469f}, - {-0.294399f,0.00285391f,0.101401f},{-0.294709f,0.00351173f,0.100469f},{-0.294399f,0.00285391f,0.100469f}, - {-0.294153f,0.00216893f,0.101401f},{-0.293976f,0.00146169f,0.101401f},{-0.294153f,0.00216893f,0.100469f}, - {-0.293867f,0.000737081f,0.101401f},{-0.293976f,0.00146169f,0.100469f},{-0.293867f,0.000737081f,0.100469f}, - {-0.293831f,0.0f,0.101401f},{-0.293831f,0.0f,0.100469f},{-0.305909f,0.0173925f,0.101401f}, - {-0.305909f,0.0173922f,0.104198f},{-0.30595f,0.0167797f,0.101401f},{-0.305909f,0.0161668f,0.104198f}, - {-0.305909f,0.0161672f,0.101401f},{-0.30595f,0.0167797f,0.104198f},{-0.305595f,0.014996f,0.101401f}, - {-0.305595f,0.014996f,0.104198f},{-0.305327f,0.0144523f,0.101401f},{-0.30579f,0.0155699f,0.104198f}, - {-0.30579f,0.0155702f,0.101401f},{-0.305327f,0.0144519f,0.104198f},{-0.304989f,0.0139455f,0.104198f}, - {-0.304989f,0.0139458f,0.101401f},{-0.304584f,0.0134838f,0.101401f},{-0.304584f,0.0134838f,0.104198f}, - {-0.304122f,0.0130791f,0.104198f},{-0.304123f,0.0130793f,0.101401f},{-0.303616f,0.0127415f,0.101401f}, - {-0.303616f,0.0127414f,0.104198f},{-0.303072f,0.0124735f,0.101401f},{-0.303072f,0.0124735f,0.104198f}, - {-0.302498f,0.0122783f,0.104198f},{-0.302498f,0.0122784f,0.101401f},{-0.301289f,0.0121187f,0.101401f}, - {-0.301901f,0.0121592f,0.101401f},{-0.301901f,0.012159f,0.104198f},{-0.301289f,0.0121187f,0.104198f}, - {-0.30579f,0.0179891f,0.104198f},{-0.30579f,0.0179895f,0.101401f},{-0.305595f,0.0185634f,0.104198f}, - {-0.305327f,0.0191071f,0.104198f},{-0.305595f,0.0185634f,0.101401f},{-0.305327f,0.0191075f,0.101401f}, - {-0.304989f,0.0196135f,0.104198f},{-0.304989f,0.0196139f,0.101401f},{-0.304584f,0.0200755f,0.104198f}, - {-0.304123f,0.0204801f,0.104198f},{-0.304584f,0.0200755f,0.101401f},{-0.304122f,0.0204802f,0.101401f}, - {-0.303616f,0.0208179f,0.104198f},{-0.303616f,0.020818f,0.101401f},{-0.303072f,0.0210859f,0.104198f}, - {-0.302498f,0.0212809f,0.104198f},{-0.303072f,0.0210859f,0.101401f},{-0.302498f,0.0212811f,0.101401f}, - {-0.301901f,0.0214002f,0.104198f},{-0.301901f,0.0214003f,0.101401f},{-0.301289f,0.0214407f,0.104198f}, - {-0.301289f,0.0214407f,0.101401f},{-0.283896f,0.00462066f,0.101401f},{-0.284509f,0.00466102f,0.101401f}, - {-0.283896f,0.00462066f,0.104198f},{-0.285122f,0.00462052f,0.104198f},{-0.284509f,0.00466102f,0.104198f}, - {-0.285122f,0.00462052f,0.101401f},{-0.286293f,0.00430621f,0.101401f},{-0.286837f,0.00403818f,0.101401f}, - {-0.286293f,0.00430621f,0.104198f},{-0.285719f,0.00450127f,0.104198f},{-0.285719f,0.00450127f,0.101401f}, - {-0.286837f,0.00403818f,0.104198f},{-0.287343f,0.00370041f,0.101401f},{-0.287343f,0.00370041f,0.104198f}, - {-0.287805f,0.00329584f,0.101401f},{-0.287805f,0.00329584f,0.104198f},{-0.288209f,0.00283386f,0.101401f}, - {-0.288209f,0.00283386f,0.104198f},{-0.288547f,0.00232743f,0.101401f},{-0.288815f,0.00178369f,0.101401f}, - {-0.288547f,0.00232743f,0.104198f},{-0.288815f,0.00178369f,0.104198f},{-0.28901f,0.00120944f,0.101401f}, - {-0.28901f,0.00120944f,0.104198f},{-0.28917f,-2.05485e-018f,0.101401f},{-0.28913f,0.000612502f,0.104198f}, - {-0.28913f,0.000612502f,0.101401f},{-0.28917f,-2.05485e-018f,0.104198f},{-0.283299f,0.00450141f,0.104198f}, - {-0.282725f,0.00430621f,0.104198f},{-0.283299f,0.00450141f,0.101401f},{-0.282181f,0.00403832f,0.104198f}, - {-0.282725f,0.00430621f,0.101401f},{-0.282181f,0.00403832f,0.101401f},{-0.281675f,0.00370055f,0.104198f}, - {-0.281213f,0.00329584f,0.104198f},{-0.281675f,0.00370055f,0.101401f},{-0.280808f,0.0028342f,0.104198f}, - {-0.281213f,0.00329584f,0.101401f},{-0.280808f,0.0028342f,0.101401f},{-0.280471f,0.00232777f,0.104198f}, - {-0.280203f,0.00178369f,0.104198f},{-0.280471f,0.00232777f,0.101401f},{-0.280008f,0.00120978f,0.104198f}, - {-0.280203f,0.00178369f,0.101401f},{-0.280008f,0.00120978f,0.101401f},{-0.279888f,0.000612842f,0.104198f}, - {-0.279848f,-1.48404e-018f,0.104198f},{-0.279888f,0.000612842f,0.101401f},{-0.279848f,-1.48404e-018f,0.101401f}, - {-0.296668f,-0.0173922f,0.104198f},{-0.296628f,-0.0167797f,0.104198f},{-0.296641f,-0.0171394f,0.101401f}, - {-0.2967f,-0.0159621f,0.101401f},{-0.296633f,-0.0165489f,0.101401f},{-0.296668f,-0.0161668f,0.104198f}, - {-0.296982f,-0.014996f,0.104198f},{-0.29725f,-0.0144519f,0.104198f},{-0.297052f,-0.0148373f,0.101401f}, - {-0.29684f,-0.0153885f,0.101401f},{-0.296787f,-0.0155699f,0.104198f},{-0.297588f,-0.0139455f,0.104198f}, - {-0.297675f,-0.0138368f,0.101401f},{-0.297331f,-0.0143174f,0.101401f},{-0.297993f,-0.0134838f,0.104198f}, - {-0.298455f,-0.0130791f,0.104198f},{-0.298528f,-0.0130241f,0.101401f},{-0.298076f,-0.0134033f,0.101401f}, - {-0.298961f,-0.0127414f,0.104198f},{-0.299505f,-0.0124735f,0.104198f},{-0.299025f,-0.0127048f,0.101401f}, - {-0.300079f,-0.0122783f,0.104198f},{-0.30012f,-0.0122704f,0.101401f},{-0.299559f,-0.0124544f,0.101401f}, - {-0.300699f,-0.0121554f,0.101401f},{-0.300676f,-0.012159f,0.104198f},{-0.301289f,-0.0121187f,0.104198f}, - {-0.301289f,-0.0121187f,0.101401f},{-0.296724f,-0.0177242f,0.101401f},{-0.29688f,-0.018294f,0.101401f}, - {-0.296787f,-0.0179891f,0.104198f},{-0.296982f,-0.0185634f,0.104198f},{-0.297107f,-0.0188393f,0.101401f}, - {-0.297401f,-0.0193514f,0.101401f},{-0.29725f,-0.0191071f,0.104198f},{-0.297757f,-0.0198223f,0.101401f}, - {-0.297588f,-0.0196135f,0.104198f},{-0.297993f,-0.0200755f,0.104198f},{-0.29817f,-0.0202443f,0.101401f}, - {-0.298633f,-0.0206107f,0.101401f},{-0.298454f,-0.0204801f,0.104198f},{-0.299139f,-0.0209155f,0.101401f}, - {-0.298961f,-0.0208179f,0.104198f},{-0.299505f,-0.0210859f,0.104198f},{-0.299679f,-0.0211542f,0.101401f}, - {-0.300248f,-0.0213103f,0.101401f},{-0.300079f,-0.0212809f,0.104198f},{-0.300827f,-0.0214362f,0.101401f}, - {-0.300676f,-0.0214002f,0.104198f},{-0.301289f,-0.0214407f,0.104198f},{-0.301289f,-0.0214407f,0.101401f}, - {-0.315677f,0.0125242f,0.110723f},{-0.315667f,0.01233f,0.101401f},{-0.315667f,0.0127201f,0.101401f}, - {-0.315586f,0.0131013f,0.101401f},{-0.315641f,0.0128878f,0.110723f},{-0.315536f,0.0132379f,0.110723f}, - {-0.315197f,0.0137725f,0.101401f},{-0.315363f,0.0135608f,0.110723f},{-0.315427f,0.0134567f,0.101401f}, - {-0.314908f,0.014033f,0.101401f},{-0.315131f,0.0138436f,0.110723f},{-0.314849f,0.0140755f,0.110723f}, - {-0.314571f,0.0142276f,0.101401f},{-0.314201f,0.0143478f,0.101401f},{-0.314526f,0.0142478f,0.110723f}, - {-0.313813f,0.0143886f,0.101401f},{-0.313813f,0.0143886f,0.110723f},{-0.314176f,0.0143539f,0.110723f}, - {-0.315641f,0.01216f,0.110723f},{-0.315586f,0.0119486f,0.101401f},{-0.315534f,0.0118103f,0.110723f}, - {-0.315361f,0.0114885f,0.110723f},{-0.315428f,0.0115926f,0.101401f},{-0.315129f,0.0112063f,0.110723f}, - {-0.315199f,0.0112779f,0.101401f},{-0.314909f,0.0110163f,0.101401f},{-0.314847f,0.0109746f,0.110723f}, - {-0.314525f,0.0108025f,0.110723f},{-0.314571f,0.0108212f,0.101401f},{-0.314176f,0.0106963f,0.110723f}, - {-0.314202f,0.0107009f,0.101401f},{-0.313813f,0.0106598f,0.101401f},{-0.313813f,0.0106598f,0.110723f}, - {-0.313813f,0.0125242f,0.111843f},{-0.292606f,0.0105467f,0.110723f},{-0.292596f,0.0103525f,0.101401f}, - {-0.292596f,0.0107426f,0.101401f},{-0.292515f,0.0111238f,0.101401f},{-0.29257f,0.0109103f,0.110723f}, - {-0.292465f,0.0112604f,0.110723f},{-0.292127f,0.011795f,0.101401f},{-0.292293f,0.0115833f,0.110723f}, - {-0.292356f,0.0114792f,0.101401f},{-0.291837f,0.0120555f,0.101401f},{-0.29206f,0.0118661f,0.110723f}, - {-0.291778f,0.012098f,0.110723f},{-0.2915f,0.0122501f,0.101401f},{-0.29113f,0.0123703f,0.101401f}, - {-0.291455f,0.0122703f,0.110723f},{-0.290742f,0.0124111f,0.101401f},{-0.290742f,0.0124111f,0.110723f}, - {-0.291106f,0.0123763f,0.110723f},{-0.29257f,0.0101825f,0.110723f},{-0.292515f,0.00997107f,0.101401f}, - {-0.292463f,0.00983283f,0.110723f},{-0.29229f,0.00951095f,0.110723f},{-0.292357f,0.00961513f,0.101401f}, - {-0.292059f,0.00922876f,0.110723f},{-0.292128f,0.00930035f,0.101401f},{-0.291838f,0.00903878f,0.101401f}, - {-0.291776f,0.0089971f,0.110723f},{-0.291454f,0.008825f,0.110723f},{-0.291501f,0.00884365f,0.101401f}, - {-0.291105f,0.00871884f,0.110723f},{-0.291131f,0.00872342f,0.101401f},{-0.290742f,0.00868228f,0.101401f}, - {-0.290742f,0.00868228f,0.110723f},{-0.290742f,0.0105467f,0.111843f},{-0.290629f,-0.0125242f,0.110723f}, - {-0.290619f,-0.0127183f,0.101401f},{-0.290618f,-0.0123283f,0.101401f},{-0.290537f,-0.0119471f,0.101401f}, - {-0.290593f,-0.0121606f,0.110723f},{-0.290487f,-0.0118105f,0.110723f},{-0.290149f,-0.0112759f,0.101401f}, - {-0.290315f,-0.0114876f,0.110723f},{-0.290379f,-0.0115917f,0.101401f},{-0.289859f,-0.0110154f,0.101401f}, - {-0.290083f,-0.0112048f,0.110723f},{-0.2898f,-0.0109729f,0.110723f},{-0.289522f,-0.0108208f,0.101401f}, - {-0.289152f,-0.0107006f,0.101401f},{-0.289478f,-0.0108006f,0.110723f},{-0.288764f,-0.0106598f,0.101401f}, - {-0.288764f,-0.0106598f,0.110723f},{-0.289128f,-0.0106945f,0.110723f},{-0.290592f,-0.0128884f,0.110723f}, - {-0.290538f,-0.0130998f,0.101401f},{-0.290485f,-0.0132381f,0.110723f},{-0.290313f,-0.0135599f,0.110723f}, - {-0.290379f,-0.0134558f,0.101401f},{-0.290081f,-0.0138421f,0.110723f},{-0.290151f,-0.0137705f,0.101401f}, - {-0.289861f,-0.0140321f,0.101401f},{-0.289799f,-0.0140738f,0.110723f},{-0.289477f,-0.0142459f,0.110723f}, - {-0.289523f,-0.0142272f,0.101401f},{-0.289127f,-0.0143521f,0.110723f},{-0.289153f,-0.0143475f,0.101401f}, - {-0.288764f,-0.0143886f,0.101401f},{-0.288764f,-0.0143886f,0.110723f},{-0.288764f,-0.0125242f,0.111843f}, - {-0.3137f,-0.0105467f,0.110723f},{-0.313689f,-0.0107408f,0.101401f},{-0.313689f,-0.0103508f,0.101401f}, - {-0.313608f,-0.0099696f,0.101401f},{-0.313664f,-0.010183f,0.110723f},{-0.313558f,-0.00983297f,0.110723f}, - {-0.31322f,-0.00929843f,0.101401f},{-0.313386f,-0.00951009f,0.110723f},{-0.31345f,-0.00961418f,0.101401f}, - {-0.31293f,-0.00903788f,0.101401f},{-0.313154f,-0.0092273f,0.110723f},{-0.312871f,-0.00899543f,0.110723f}, - {-0.312593f,-0.00884326f,0.101401f},{-0.312223f,-0.0087231f,0.101401f},{-0.312549f,-0.00882313f,0.110723f}, - {-0.311835f,-0.00868228f,0.101401f},{-0.311835f,-0.00868228f,0.110723f},{-0.312199f,-0.00871703f,0.110723f}, - {-0.313663f,-0.0109109f,0.110723f},{-0.313609f,-0.0111223f,0.101401f},{-0.313556f,-0.0112606f,0.110723f}, - {-0.313384f,-0.0115824f,0.110723f},{-0.31345f,-0.0114782f,0.101401f},{-0.313152f,-0.0118646f,0.110723f}, - {-0.313222f,-0.011793f,0.101401f},{-0.312932f,-0.0120546f,0.101401f},{-0.31287f,-0.0120963f,0.110723f}, - {-0.312548f,-0.0122684f,0.110723f},{-0.312594f,-0.0122497f,0.101401f},{-0.312198f,-0.0123745f,0.110723f}, - {-0.312224f,-0.01237f,0.101401f},{-0.311835f,-0.0124111f,0.101401f},{-0.311835f,-0.0124111f,0.110723f}, - {-0.311835f,-0.0105467f,0.111843f},{-0.318681f,-0.00462052f,0.101401f},{-0.318681f,-0.00462066f,0.104198f}, - {-0.318068f,-0.00466102f,0.101401f},{-0.317455f,-0.00462052f,0.104198f},{-0.317456f,-0.00462066f,0.101401f}, - {-0.318068f,-0.00466102f,0.104198f},{-0.316285f,-0.00430621f,0.101401f},{-0.316285f,-0.00430621f,0.104198f}, - {-0.315741f,-0.00403832f,0.101401f},{-0.316858f,-0.00450127f,0.104198f},{-0.316859f,-0.00450141f,0.101401f}, - {-0.31574f,-0.00403818f,0.104198f},{-0.315234f,-0.00370041f,0.104198f},{-0.315234f,-0.00370055f,0.101401f}, - {-0.314772f,-0.00329584f,0.101401f},{-0.314772f,-0.00329584f,0.104198f},{-0.314368f,-0.00283386f,0.104198f}, - {-0.314368f,-0.0028342f,0.101401f},{-0.31403f,-0.00232777f,0.101401f},{-0.31403f,-0.00232743f,0.104198f}, - {-0.313762f,-0.00178369f,0.101401f},{-0.313762f,-0.00178369f,0.104198f},{-0.313567f,-0.00120944f,0.104198f}, - {-0.313567f,-0.00120978f,0.101401f},{-0.313407f,5.70811e-019f,0.101401f},{-0.313448f,-0.000612842f,0.101401f}, - {-0.313448f,-0.000612502f,0.104198f},{-0.313407f,5.70811e-019f,0.104198f},{-0.319278f,-0.00450141f,0.104198f}, - {-0.319278f,-0.00450127f,0.101401f},{-0.319852f,-0.00430621f,0.104198f},{-0.320396f,-0.00403832f,0.104198f}, - {-0.319852f,-0.00430621f,0.101401f},{-0.320396f,-0.00403818f,0.101401f},{-0.320902f,-0.00370055f,0.104198f}, - {-0.320902f,-0.00370041f,0.101401f},{-0.321364f,-0.00329584f,0.104198f},{-0.321769f,-0.0028342f,0.104198f}, - {-0.321364f,-0.00329584f,0.101401f},{-0.321769f,-0.00283386f,0.101401f},{-0.322106f,-0.00232777f,0.104198f}, - {-0.322107f,-0.00232743f,0.101401f},{-0.322374f,-0.00178369f,0.104198f},{-0.322569f,-0.00120978f,0.104198f}, - {-0.322374f,-0.00178369f,0.101401f},{-0.32257f,-0.00120944f,0.101401f},{-0.322689f,-0.000612842f,0.104198f}, - {-0.322689f,-0.000612502f,0.101401f},{-0.322729f,1.4722e-032f,0.104198f},{-0.322729f,1.4722e-032f,0.101401f}, - {-0.275798f,0.00272711f,0.121909f},{-0.27569f,0.00137858f,0.120045f},{-0.2758f,0.00274679f,0.120045f}, - {-0.276233f,0.00542344f,0.121909f},{-0.276237f,0.00544141f,0.120045f},{-0.276561f,0.00676244f,0.120045f}, - {-0.275689f,0.00136573f,0.121909f},{-0.275653f,3.13946e-018f,0.120045f},{-0.275653f,1.34638e-013f,0.121909f}, - {-0.27598f,0.0040808f,0.121909f},{-0.275983f,0.00410196f,0.120045f},{-0.277098f,0.00848488f,0.121909f}, - {-0.276634f,0.00696342f,0.121909f},{-0.276954f,0.00806238f,0.120045f},{-0.279087f,0.0128178f,0.121909f}, - {-0.278335f,0.0114155f,0.121909f},{-0.278535f,0.0118088f,0.120045f},{-0.277671f,0.00996949f,0.121909f}, - {-0.277414f,0.00933854f,0.120045f},{-0.277942f,0.0105882f,0.120045f},{-0.280696f,0.0152688f,0.120045f}, - {-0.28154f,0.0163461f,0.120045f},{-0.280846f,0.0154686f,0.121909f},{-0.279192f,0.0129975f,0.120045f}, - {-0.279913f,0.0141518f,0.120045f},{-0.279925f,0.0141704f,0.121909f},{-0.283407f,0.0183698f,0.120045f}, - {-0.284064f,0.0189869f,0.121909f},{-0.282925f,0.017875f,0.121909f},{-0.282445f,0.0173811f,0.120045f}, - {-0.281845f,0.0167072f,0.121909f},{-0.287538f,0.0216356f,0.121909f},{-0.285747f,0.0203871f,0.121909f}, - {-0.286574f,0.0209918f,0.120045f},{-0.28442f,0.0193037f,0.120045f},{-0.290086f,0.0230585f,0.120045f}, - {-0.291322f,0.0236188f,0.120045f},{-0.291403f,0.0236531f,0.121909f},{-0.288881f,0.0224332f,0.120045f}, - {-0.289427f,0.0227263f,0.121909f},{-0.295184f,0.0248983f,0.120045f},{-0.295163f,0.024878f,0.121909f}, - {-0.293873f,0.0245398f,0.120045f},{-0.293458f,0.0244103f,0.121909f},{-0.292585f,0.0241129f,0.120045f}, - {-0.298641f,0.0254985f,0.121909f},{-0.297863f,0.0254058f,0.120045f},{-0.299225f,0.0255525f,0.120045f}, - {-0.296515f,0.0251874f,0.120045f},{-0.296889f,0.0252555f,0.121909f},{-0.300404f,0.0256204f,0.121909f}, - {-0.301979f,0.0256263f,0.120045f},{-0.302172f,0.0256204f,0.121909f},{-0.300599f,0.0256264f,0.120045f}, - {-0.304715f,0.0254057f,0.120045f},{-0.306062f,0.0251873f,0.120045f},{-0.305688f,0.0252554f,0.121909f}, - {-0.303936f,0.0254985f,0.121909f},{-0.303353f,0.0255524f,0.120045f},{-0.309992f,0.0241129f,0.120045f}, - {-0.309119f,0.0244103f,0.121909f},{-0.308704f,0.0245398f,0.120045f},{-0.307416f,0.0248864f,0.121909f}, - {-0.307393f,0.0248983f,0.120045f},{-0.31315f,0.0227264f,0.121909f},{-0.311173f,0.0236533f,0.121909f}, - {-0.312491f,0.0230584f,0.120045f},{-0.311255f,0.0236187f,0.120045f},{-0.315039f,0.0216357f,0.121909f}, - {-0.314868f,0.0217438f,0.120045f},{-0.316004f,0.0209917f,0.120045f},{-0.313696f,0.0224331f,0.120045f}, - {-0.318157f,0.0193036f,0.120045f},{-0.31917f,0.0183692f,0.120045f},{-0.318513f,0.0189869f,0.121909f}, - {-0.31683f,0.0203873f,0.121909f},{-0.317101f,0.020178f,0.120045f},{-0.320133f,0.0173806f,0.120045f}, - {-0.321037f,0.016346f,0.120045f},{-0.320732f,0.0167073f,0.121909f},{-0.319646f,0.0178697f,0.121909f}, - {-0.321731f,0.0154687f,0.121909f},{-0.321881f,0.0152688f,0.120045f},{-0.322664f,0.0141517f,0.120045f}, - {-0.322652f,0.0141707f,0.121909f},{-0.323385f,0.0129974f,0.120045f},{-0.32349f,0.0128178f,0.121909f}, - {-0.324042f,0.0118086f,0.120045f},{-0.324242f,0.0114158f,0.121909f},{-0.324906f,0.0099697f,0.121909f}, - {-0.324635f,0.010588f,0.120045f},{-0.325163f,0.00933828f,0.120045f},{-0.325479f,0.00848516f,0.121909f}, - {-0.325623f,0.00806211f,0.120045f},{-0.32595f,0.00696571f,0.121909f},{-0.326344f,0.00542344f,0.121909f}, - {-0.326016f,0.00676218f,0.120045f},{-0.326594f,0.00410176f,0.120045f},{-0.32634f,0.00544117f,0.120045f}, - {-0.326777f,0.00274665f,0.120045f},{-0.326597f,0.00408095f,0.121909f},{-0.326779f,0.00272732f,0.121909f}, - {-0.326887f,0.0013785f,0.120045f},{-0.326924f,0.0f,0.120045f},{-0.326888f,0.00136552f,0.121909f}, - {-0.326924f,-1.34635e-013f,0.121909f},{-0.28771f,0.0217439f,0.120045f},{-0.285476f,0.0201781f,0.120045f}, - {-0.276585f,-3.95917e-017f,0.104011f},{-0.275187f,-8.69362e-018f,0.10513f},{-0.275244f,-0.00172399f,0.10513f}, - {-0.286411f,0.0173288f,0.10252f},{-0.287162f,0.0161291f,0.101401f},{-0.288252f,0.0170222f,0.101401f}, - {-0.286128f,0.0151609f,0.101401f},{-0.2881f,0.0186467f,0.10252f},{-0.286807f,0.0217163f,0.10513f}, - {-0.288937f,0.0213938f,0.104011f},{-0.288254f,0.0226142f,0.10513f},{-0.289393f,0.0178384f,0.101401f}, - {-0.289869f,0.0197792f,0.10252f},{-0.289753f,0.0234144f,0.10513f},{-0.291813f,0.0192333f,0.101401f}, - {-0.2913f,0.0241148f,0.10513f},{-0.293084f,0.0198086f,0.101401f},{-0.292889f,0.0247131f,0.10513f}, - {-0.294389f,0.0203001f,0.101401f},{-0.295724f,0.0207061f,0.101401f},{-0.294514f,0.0252074f,0.10513f}, - {-0.297086f,0.0210249f,0.101401f},{-0.296173f,0.0255955f,0.10513f},{-0.297858f,0.0258753f,0.10513f}, - {-0.29847f,0.0212548f,0.101401f},{-0.299565f,0.0260447f,0.10513f},{-0.299873f,0.021394f,0.101401f}, - {-0.301289f,0.0261017f,0.10513f},{-0.284828f,0.0158329f,0.10252f},{-0.285159f,0.0141266f,0.101401f}, - {-0.283379f,0.0141734f,0.10252f},{-0.284266f,0.0130367f,0.101401f},{-0.28345f,0.0118953f,0.101401f}, - {-0.282089f,0.0123685f,0.10252f},{-0.282713f,0.010707f,0.101401f},{-0.280977f,0.0104425f,0.10252f}, - {-0.282055f,0.00947547f,0.101401f},{-0.280059f,0.00842229f,0.10252f},{-0.28148f,0.00820499f,0.101401f}, - {-0.276081f,0.00677384f,0.10513f},{-0.275693f,0.00511591f,0.10513f},{-0.27701f,0.0045642f,0.104011f}, - {-0.279347f,0.00633756f,0.10252f},{-0.280988f,0.0069f,0.101401f},{-0.278843f,0.00421935f,0.10252f}, - {-0.280582f,0.00556442f,0.101401f},{-0.280264f,0.00420236f,0.101401f},{-0.278546f,0.00209692f,0.10252f}, - {-0.280034f,0.00281829f,0.101401f},{-0.275244f,0.00172376f,0.10513f},{-0.27845f,-3.77853e-017f,0.10252f}, - {-0.279895f,0.00141614f,0.101401f},{-0.280042f,-0.00288015f,0.101401f},{-0.279896f,-0.00144343f,0.101401f}, - {-0.275413f,-0.00343096f,0.10513f},{-0.281053f,-0.00708591f,0.101401f},{-0.280622f,-0.00570761f,0.101401f}, - {-0.276575f,-0.0084f,0.10513f},{-0.280284f,-0.00430368f,0.101401f},{-0.275693f,-0.00511591f,0.10513f}, - {-0.276081f,-0.00677408f,0.10513f},{-0.282188f,-0.00973971f,0.101401f},{-0.278674f,-0.0130346f,0.10513f}, - {-0.282887f,-0.0110032f,0.101401f},{-0.277174f,-0.00998868f,0.10513f},{-0.277874f,-0.0115354f,0.10513f}, - {-0.281576f,-0.00843197f,0.101401f},{-0.280566f,-0.0158708f,0.10513f},{-0.281653f,-0.0171976f,0.10513f}, - {-0.284531f,-0.0133753f,0.101401f},{-0.283669f,-0.012217f,0.101401f},{-0.279572f,-0.0144813f,0.10513f}, - {-0.285418f,-0.0207227f,0.10513f},{-0.287557f,-0.0164663f,0.101401f},{-0.284091f,-0.0196355f,0.10513f}, - {-0.28648f,-0.0155046f,0.101401f},{-0.28547f,-0.0144728f,0.101401f},{-0.282832f,-0.0184567f,0.10513f}, - {-0.291141f,-0.0188871f,0.101401f},{-0.289893f,-0.0181615f,0.101401f},{-0.289869f,-0.0197792f,0.10252f}, - {-0.288696f,-0.0173533f,0.101401f},{-0.288937f,-0.0213938f,0.104011f},{-0.288254f,-0.0226143f,0.10513f}, - {-0.290308f,-0.0221291f,0.104011f},{-0.291745f,-0.0227855f,0.104011f},{-0.2913f,-0.0241148f,0.10513f}, - {-0.29324f,-0.0233556f,0.104011f},{-0.289753f,-0.0234145f,0.10513f},{-0.294786f,-0.0238322f,0.104011f}, - {-0.294515f,-0.0252075f,0.10513f},{-0.296374f,-0.0242096f,0.104011f},{-0.292889f,-0.0247132f,0.10513f}, - {-0.297994f,-0.0244827f,0.104011f},{-0.296173f,-0.0255955f,0.10513f},{-0.297858f,-0.0258754f,0.10513f}, - {-0.299565f,-0.0260448f,0.10513f},{-0.299636f,-0.0246481f,0.104011f},{-0.301289f,-0.0261017f,0.10513f}, - {-0.301289f,-0.0247034f,0.104011f},{-0.286807f,-0.0217163f,0.10513f},{-0.296745f,-0.0223824f,0.10252f}, - {-0.296535f,-0.0209041f,0.101401f},{-0.295277f,-0.0220336f,0.10252f},{-0.298242f,-0.022635f,0.10252f}, - {-0.297953f,-0.0211784f,0.101401f},{-0.299386f,-0.0213558f,0.101401f},{-0.29976f,-0.0227878f,0.10252f}, - {-0.301289f,-0.022839f,0.10252f},{-0.295138f,-0.0205399f,0.101401f},{-0.29377f,-0.0200791f,0.101401f}, - {-0.292465f,-0.0210659f,0.10252f},{-0.293848f,-0.0215929f,0.10252f},{-0.292435f,-0.0195273f,0.101401f}, - {-0.291137f,-0.0204589f,0.10252f},{-0.287025f,0.0201691f,0.104011f},{-0.290582f,0.018576f,0.101401f}, - {-0.285197f,0.0187435f,0.104011f},{-0.285418f,0.0207226f,0.10513f},{-0.282832f,0.0184567f,0.10513f}, - {-0.284091f,0.0196354f,0.10513f},{-0.283485f,0.017126f,0.104011f},{-0.281918f,0.015331f,0.104011f}, - {-0.281653f,0.0171974f,0.10513f},{-0.279572f,0.0144813f,0.10513f},{-0.280566f,0.0158706f,0.10513f}, - {-0.280522f,0.0133791f,0.104011f},{-0.279319f,0.011296f,0.104011f},{-0.278674f,0.0130343f,0.10513f}, - {-0.277874f,0.0115351f,0.10513f},{-0.278326f,0.00911062f,0.104011f},{-0.277174f,0.00998868f,0.10513f}, - {-0.277555f,0.00685616f,0.104011f},{-0.276575f,0.00839976f,0.10513f},{-0.276689f,0.00226928f,0.104011f}, - {-0.275413f,0.00343072f,0.10513f},{-0.279848f,3.60164e-017f,0.10513f},{-0.279848f,-9.52159e-018f,0.106062f}, - {-0.279885f,-0.00125938f,0.106062f},{-0.279995f,-0.00250813f,0.106062f},{-0.279885f,-0.00125925f,0.10513f}, - {-0.280177f,-0.00374334f,0.106062f},{-0.279995f,-0.00250793f,0.10513f},{-0.280177f,-0.00374312f,0.10513f}, - {-0.28043f,-0.00496208f,0.106062f},{-0.280752f,-0.00616144f,0.106062f},{-0.28043f,-0.00496191f,0.10513f}, - {-0.281143f,-0.00733859f,0.106062f},{-0.280752f,-0.00616138f,0.10513f},{-0.281143f,-0.0073385f,0.10513f}, - {-0.281601f,-0.00849054f,0.106062f},{-0.282124f,-0.0096143f,0.106062f},{-0.281601f,-0.00849036f,0.10513f}, - {-0.282713f,-0.010707f,0.106062f},{-0.282124f,-0.00961408f,0.10513f},{-0.282713f,-0.0107068f,0.10513f}, - {-0.283364f,-0.0117656f,0.106062f},{-0.284078f,-0.0127873f,0.106062f},{-0.283364f,-0.0117655f,0.10513f}, - {-0.284853f,-0.0137693f,0.106062f},{-0.284078f,-0.0127873f,0.10513f},{-0.284853f,-0.0137691f,0.10513f}, - {-0.285689f,-0.0147088f,0.106062f},{-0.28658f,-0.0156004f,0.106062f},{-0.285688f,-0.0147082f,0.10513f}, - {-0.287519f,-0.0164352f,0.106062f},{-0.28658f,-0.0155998f,0.10513f},{-0.287519f,-0.0164352f,0.10513f}, - {-0.288501f,-0.0172102f,0.106062f},{-0.289523f,-0.0179243f,0.106062f},{-0.288501f,-0.0172102f,0.10513f}, - {-0.290582f,-0.018576f,0.106062f},{-0.289523f,-0.0179242f,0.10513f},{-0.290582f,-0.018576f,0.10513f}, - {-0.291674f,-0.0191643f,0.106062f},{-0.292798f,-0.019688f,0.106062f},{-0.291674f,-0.0191643f,0.10513f}, - {-0.29395f,-0.0201457f,0.106062f},{-0.292798f,-0.0196879f,0.10513f},{-0.29395f,-0.0201457f,0.10513f}, - {-0.295127f,-0.0205363f,0.106062f},{-0.296327f,-0.0208587f,0.106062f},{-0.295127f,-0.0205363f,0.10513f}, - {-0.296326f,-0.0208586f,0.10513f},{-0.297545f,-0.0211114f,0.10513f},{-0.29878f,-0.0212935f,0.10513f}, - {-0.297545f,-0.0211115f,0.106062f},{-0.300029f,-0.0214037f,0.106062f},{-0.298781f,-0.0212936f,0.106062f}, - {-0.301289f,-0.0214407f,0.106062f},{-0.300029f,-0.0214037f,0.10513f},{-0.301289f,-0.0214407f,0.10513f}, - {-0.279885f,0.00125938f,0.10513f},{-0.279995f,0.00250813f,0.10513f},{-0.279885f,0.00125925f,0.106062f}, - {-0.279995f,0.00250793f,0.106062f},{-0.280177f,0.00374334f,0.10513f},{-0.28043f,0.00496208f,0.10513f}, - {-0.280177f,0.00374312f,0.106062f},{-0.280752f,0.00616144f,0.10513f},{-0.28043f,0.00496191f,0.106062f}, - {-0.280752f,0.00616138f,0.106062f},{-0.281143f,0.00733859f,0.10513f},{-0.281601f,0.00849054f,0.10513f}, - {-0.281143f,0.0073385f,0.106062f},{-0.282124f,0.0096143f,0.10513f},{-0.281601f,0.00849036f,0.106062f}, - {-0.282124f,0.00961408f,0.106062f},{-0.282713f,0.010707f,0.10513f},{-0.283364f,0.0117656f,0.10513f}, - {-0.282713f,0.0107068f,0.106062f},{-0.284078f,0.0127873f,0.10513f},{-0.283364f,0.0117655f,0.106062f}, - {-0.284078f,0.0127873f,0.106062f},{-0.284853f,0.0137693f,0.10513f},{-0.285689f,0.0147088f,0.10513f}, - {-0.284853f,0.0137691f,0.106062f},{-0.28658f,0.0156004f,0.10513f},{-0.285688f,0.0147082f,0.106062f}, - {-0.28658f,0.0155998f,0.106062f},{-0.287519f,0.0164352f,0.10513f},{-0.288501f,0.0172102f,0.10513f}, - {-0.287519f,0.0164352f,0.106062f},{-0.289523f,0.0179243f,0.10513f},{-0.288501f,0.0172102f,0.106062f}, - {-0.289523f,0.0179242f,0.106062f},{-0.290582f,0.018576f,0.10513f},{-0.291674f,0.0191643f,0.10513f}, - {-0.290582f,0.018576f,0.106062f},{-0.292798f,0.019688f,0.10513f},{-0.291674f,0.0191643f,0.106062f}, - {-0.292798f,0.0196879f,0.106062f},{-0.29395f,0.0201457f,0.10513f},{-0.295127f,0.0205363f,0.10513f}, - {-0.29395f,0.0201457f,0.106062f},{-0.296327f,0.0208587f,0.10513f},{-0.295127f,0.0205363f,0.106062f}, - {-0.297545f,0.0211114f,0.106062f},{-0.296326f,0.0208586f,0.106062f},{-0.297545f,0.0211115f,0.10513f}, - {-0.29878f,0.0212935f,0.106062f},{-0.298781f,0.0212936f,0.10513f},{-0.300029f,0.0214037f,0.10513f}, - {-0.300029f,0.0214037f,0.106062f},{-0.301289f,0.0214407f,0.10513f},{-0.301289f,0.0214407f,0.106062f}, - {-0.275187f,1.78012e-017f,0.106062f},{-0.275187f,2.1941e-017f,0.120045f},{-0.275223f,-0.00138032f,0.120045f}, - {-0.275332f,-0.00275048f,0.120045f},{-0.275223f,-0.00138025f,0.106062f},{-0.275512f,-0.0041079f,0.120045f}, - {-0.275332f,-0.00275036f,0.106062f},{-0.275512f,-0.00410773f,0.106062f},{-0.275762f,-0.00544996f,0.120045f}, - {-0.276081f,-0.00677408f,0.120045f},{-0.275762f,-0.00544975f,0.106062f},{-0.276468f,-0.00807765f,0.120045f}, - {-0.276081f,-0.00677384f,0.106062f},{-0.276468f,-0.0080774f,0.106062f},{-0.276922f,-0.00935809f,0.120045f}, - {-0.277442f,-0.0106128f,0.120045f},{-0.276922f,-0.00935782f,0.106062f},{-0.278026f,-0.0118391f,0.120045f}, - {-0.277442f,-0.0106125f,0.106062f},{-0.278026f,-0.0118389f,0.106062f},{-0.278674f,-0.0130346f,0.120045f}, - {-0.279385f,-0.0141964f,0.120045f},{-0.278674f,-0.0130343f,0.106062f},{-0.280157f,-0.0153222f,0.120045f}, - {-0.279385f,-0.0141962f,0.106062f},{-0.280157f,-0.015322f,0.106062f},{-0.28099f,-0.0164092f,0.120045f}, - {-0.281882f,-0.0174549f,0.120045f},{-0.28099f,-0.0164091f,0.106062f},{-0.282832f,-0.0184567f,0.120045f}, - {-0.281882f,-0.0174549f,0.106062f},{-0.282832f,-0.0184567f,0.106062f},{-0.283834f,-0.0194069f,0.120045f}, - {-0.284879f,-0.0202989f,0.120045f},{-0.283834f,-0.0194069f,0.106062f},{-0.285967f,-0.0211315f,0.120045f}, - {-0.284879f,-0.0202988f,0.106062f},{-0.285966f,-0.0211314f,0.106062f},{-0.287092f,-0.0219036f,0.120045f}, - {-0.288254f,-0.0226143f,0.120045f},{-0.287092f,-0.0219036f,0.106062f},{-0.28945f,-0.0232624f,0.120045f}, - {-0.288254f,-0.0226142f,0.106062f},{-0.289449f,-0.0232623f,0.106062f},{-0.290676f,-0.0238468f,0.120045f}, - {-0.291931f,-0.0243666f,0.120045f},{-0.290676f,-0.0238467f,0.106062f},{-0.293211f,-0.0248205f,0.120045f}, - {-0.29193f,-0.0243664f,0.106062f},{-0.293211f,-0.0248204f,0.106062f},{-0.294515f,-0.0252075f,0.120045f}, - {-0.295839f,-0.0255265f,0.120045f},{-0.294514f,-0.0252074f,0.106062f},{-0.297181f,-0.0257766f,0.120045f}, - {-0.295839f,-0.0255265f,0.106062f},{-0.297181f,-0.0257765f,0.106062f},{-0.298538f,-0.0259565f,0.120045f}, - {-0.299908f,-0.0260653f,0.120045f},{-0.298538f,-0.0259565f,0.106062f},{-0.301289f,-0.0261017f,0.120045f}, - {-0.299908f,-0.0260652f,0.106062f},{-0.301289f,-0.0261017f,0.106062f},{-0.275223f,0.00138032f,0.106062f}, - {-0.275332f,0.00275048f,0.106062f},{-0.275223f,0.00138025f,0.120045f},{-0.275332f,0.00275036f,0.120045f}, - {-0.275512f,0.0041079f,0.106062f},{-0.275762f,0.00544996f,0.106062f},{-0.275512f,0.00410773f,0.120045f}, - {-0.276081f,0.00677408f,0.106062f},{-0.275762f,0.00544975f,0.120045f},{-0.276081f,0.00677384f,0.120045f}, - {-0.276468f,0.00807765f,0.106062f},{-0.276922f,0.00935809f,0.106062f},{-0.276468f,0.0080774f,0.120045f}, - {-0.277442f,0.0106128f,0.106062f},{-0.276922f,0.00935782f,0.120045f},{-0.277442f,0.0106125f,0.120045f}, - {-0.278026f,0.0118391f,0.106062f},{-0.278674f,0.0130346f,0.106062f},{-0.278026f,0.0118389f,0.120045f}, - {-0.279385f,0.0141964f,0.106062f},{-0.278674f,0.0130343f,0.120045f},{-0.279385f,0.0141962f,0.120045f}, - {-0.280157f,0.0153222f,0.106062f},{-0.28099f,0.0164092f,0.106062f},{-0.280157f,0.015322f,0.120045f}, - {-0.281882f,0.0174549f,0.106062f},{-0.28099f,0.0164091f,0.120045f},{-0.281882f,0.0174549f,0.120045f}, - {-0.282832f,0.0184567f,0.106062f},{-0.283834f,0.0194069f,0.106062f},{-0.282832f,0.0184567f,0.120045f}, - {-0.284879f,0.0202989f,0.106062f},{-0.283834f,0.0194069f,0.120045f},{-0.284879f,0.0202988f,0.120045f}, - {-0.285967f,0.0211315f,0.106062f},{-0.287092f,0.0219036f,0.106062f},{-0.285966f,0.0211314f,0.120045f}, - {-0.288254f,0.0226143f,0.106062f},{-0.287092f,0.0219036f,0.120045f},{-0.288254f,0.0226142f,0.120045f}, - {-0.28945f,0.0232624f,0.106062f},{-0.290676f,0.0238468f,0.106062f},{-0.289449f,0.0232623f,0.120045f}, - {-0.291931f,0.0243666f,0.106062f},{-0.290676f,0.0238467f,0.120045f},{-0.29193f,0.0243664f,0.120045f}, - {-0.293211f,0.0248205f,0.106062f},{-0.294515f,0.0252075f,0.106062f},{-0.293211f,0.0248204f,0.120045f}, - {-0.295839f,0.0255265f,0.106062f},{-0.294514f,0.0252074f,0.120045f},{-0.295839f,0.0255265f,0.120045f}, - {-0.297181f,0.0257766f,0.106062f},{-0.298538f,0.0259565f,0.106062f},{-0.297181f,0.0257765f,0.120045f}, - {-0.299908f,0.0260653f,0.106062f},{-0.298538f,0.0259565f,0.120045f},{-0.299908f,0.0260652f,0.120045f}, - {-0.301289f,0.0261017f,0.106062f},{-0.301289f,0.0261017f,0.120045f},{-0.289155f,-0.00289006f,0.125638f}, - {-0.316278f,0.00596973f,0.125638f},{-0.316319f,0.00652514f,0.125638f},{-0.320415f,0.00374099f,0.125638f}, - {-0.309396f,-0.0152805f,0.125638f},{-0.309911f,0.0149353f,0.125638f},{-0.305018f,0.0130513f,0.125638f}, - {-0.309397f,0.0152802f,0.125638f},{-0.313508f,0.0144863f,0.125638f},{-0.314092f,0.0146944f,0.125638f}, - {-0.314299f,0.0103166f,0.125638f},{-0.296052f,0.00984656f,0.125638f},{-0.296433f,0.00992732f,0.125638f}, - {-0.303153f,0.0162797f,0.125638f},{-0.305069f,0.0215779f,0.125638f},{-0.307586f,0.019053f,0.125638f}, - {-0.29185f,0.00975506f,0.125638f},{-0.29211f,0.0146618f,0.125638f},{-0.292666f,0.0149353f,0.125638f}, - {-0.292311f,0.00944145f,0.125638f},{-0.284043f,9.3146e-019f,0.125638f},{-0.284001f,0.000618856f,0.125638f}, - {-0.290295f,0.0143109f,0.125638f},{-0.290264f,0.0102438f,0.125638f},{-0.289707f,0.0102437f,0.125638f}, - {-0.28049f,-0.00452954f,0.125638f},{-0.280243f,-0.00608354f,0.125638f},{-0.279878f,-0.00463457f,0.125638f}, - {-0.283879f,-0.00122583f,0.125638f},{-0.284002f,-0.000618365f,0.125638f},{-0.287661f,-0.00361044f,0.125638f}, - {-0.282163f,-0.00374099f,0.125638f},{-0.286299f,-0.00596973f,0.125638f},{-0.286258f,-0.00652514f,0.125638f}, - {-0.281077f,-0.00433369f,0.125638f},{-0.286299f,-0.00708106f,0.125638f},{-0.286424f,-0.00762403f,0.125638f}, - {-0.28128f,-0.00891935f,0.125638f},{-0.291348f,-0.00305413f,0.125638f},{-0.290815f,-0.00288693f,0.125638f}, - {-0.286907f,-0.00862484f,0.125638f},{-0.282708f,-0.0116055f,0.125638f},{-0.281947f,-0.0102864f,0.125638f}, - {-0.280711f,-0.00751463f,0.125638f},{-0.281639f,-0.00407246f,0.125638f},{-0.284491f,-0.0140624f,0.125638f}, - {-0.287935f,-0.0149788f,0.125638f},{-0.285497f,-0.0151839f,0.125638f},{-0.287661f,-0.00944085f,0.125638f}, - {-0.287426f,-0.015333f,0.125638f},{-0.286967f,-0.0157495f,0.125638f},{-0.286569f,-0.0162251f,0.125638f}, - {-0.286629f,-0.00814252f,0.125638f},{-0.286299f,0.00708097f,0.125638f},{-0.280711f,0.00751594f,0.125638f}, - {-0.286423f,-0.00542663f,0.125638f},{-0.282634f,-0.00333905f,0.125638f},{-0.283048f,-0.00287783f,0.125638f}, - {-0.283398f,-0.0023656f,0.125638f},{-0.286905f,-0.00442541f,0.125638f},{-0.286626f,-0.00490799f,0.125638f}, - {-0.29072f,0.0013863f,0.125638f},{-0.290459f,0.00109643f,0.125638f},{-0.283878f,0.00122657f,0.125638f}, - {-0.291035f,0.00161492f,0.125638f},{-0.293181f,0.0152805f,0.125638f},{-0.293646f,0.0156909f,0.125638f}, - {-0.282161f,0.00374048f,0.125638f},{-0.287937f,0.0149805f,0.125638f},{-0.285497f,0.0151839f,0.125638f}, - {-0.28743f,0.0153371f,0.125638f},{-0.286966f,0.0157476f,0.125638f},{-0.286569f,0.0162251f,0.125638f}, - {-0.288624f,0.00999629f,0.125638f},{-0.288486f,0.0146931f,0.125638f},{-0.28907f,0.0144856f,0.125638f}, - {-0.289676f,0.0143575f,0.125638f},{-0.289156f,0.0101606f,0.125638f},{-0.287254f,0.00906122f,0.125638f}, - {-0.28356f,0.0128683f,0.125638f},{-0.287662f,0.00944057f,0.125638f},{-0.288122f,0.00975455f,0.125638f}, - {-0.281948f,0.0102881f,0.125638f},{-0.28271f,0.0116071f,0.125638f},{-0.286629f,0.00814199f,0.125638f}, - {-0.284492f,0.0140632f,0.125638f},{-0.281639f,0.00407552f,0.125638f},{-0.281079f,0.00433883f,0.125638f}, - {-0.280243f,0.00608354f,0.125638f},{-0.280488f,0.0045282f,0.125638f},{-0.279878f,0.00463457f,0.125638f}, - {-0.286907f,0.00862459f,0.125638f},{-0.28128f,0.008921f,0.125638f},{-0.286424f,0.00762395f,0.125638f}, - {-0.307641f,0.0196708f,0.125638f},{-0.306543f,0.0212675f,0.125638f},{-0.307765f,0.0202771f,0.125638f}, - {-0.294052f,0.0161593f,0.125638f},{-0.294392f,0.0166773f,0.125638f},{-0.282634f,0.00333893f,0.125638f}, - {-0.294964f,0.0184349f,0.125638f},{-0.294853f,0.0178252f,0.125638f},{-0.283397f,0.00236609f,0.125638f}, - {-0.283048f,0.00287783f,0.125638f},{-0.311664f,0.0143468f,0.125638f},{-0.312283f,0.0143112f,0.125638f}, - {-0.309678f,-0.0016145f,0.125638f},{-0.304976f,0.0136072f,0.125638f},{-0.304852f,0.0141506f,0.125638f}, - {-0.308932f,0.0156903f,0.125638f},{-0.307612f,0.0184341f,0.125638f},{-0.307724f,0.0178247f,0.125638f}, - {-0.303613f,0.015966f,0.125638f},{-0.302118f,0.0166853f,0.125638f},{-0.303568f,0.0217877f,0.125638f}, - {-0.302651f,0.0165216f,0.125638f},{-0.307916f,0.0172353f,0.125638f},{-0.304022f,0.0155872f,0.125638f}, - {-0.297509f,0.0215784f,0.125638f},{-0.299926f,0.0165218f,0.125638f},{-0.30101f,0.0167668f,0.125638f}, - {-0.300528f,0.0218936f,0.125638f},{-0.301567f,0.0167671f,0.125638f},{-0.294994f,0.0190544f,0.125638f}, - {-0.296034f,0.0212675f,0.125638f},{-0.30798f,0.0208597f,0.125638f},{-0.294941f,0.0196718f,0.125638f}, - {-0.29481f,0.0202777f,0.125638f},{-0.294597f,0.0208597f,0.125638f},{-0.304369f,0.0151517f,0.125638f}, - {-0.308185f,0.0166765f,0.125638f},{-0.304648f,0.0146693f,0.125638f},{-0.29901f,0.0217881f,0.125638f}, - {-0.300459f,0.0166848f,0.125638f},{-0.315951f,0.00490799f,0.125638f},{-0.319179f,0.0023656f,0.125638f}, - {-0.315672f,0.00442541f,0.125638f},{-0.297205f,0.00984589f,0.125638f},{-0.296823f,0.00992719f,0.125638f}, - {-0.310468f,0.0146616f,0.125638f},{-0.314299f,-0.00115727f,0.125638f},{-0.307613f,-0.0184349f,0.125638f}, - {-0.307724f,-0.0178252f,0.125638f},{-0.311056f,0.0144643f,0.125638f},{-0.321866f,0.00751463f,0.125638f}, - {-0.322334f,0.00608354f,0.125638f},{-0.320938f,0.00407246f,0.125638f},{-0.314916f,0.00944085f,0.125638f}, - {-0.319018f,0.0128671f,0.125638f},{-0.315323f,0.00906082f,0.125638f},{-0.307198f,0.00945782f,0.125638f}, - {-0.322087f,0.00452954f,0.125638f},{-0.322699f,0.00463457f,0.125638f},{-0.315325f,0.00398966f,0.125638f}, - {-0.318698f,0.00122583f,0.125638f},{-0.314916f,0.00361044f,0.125638f},{-0.319529f,0.00287783f,0.125638f}, - {-0.316154f,0.00542663f,0.125638f},{-0.319943f,0.00333905f,0.125638f},{-0.3215f,0.00433369f,0.125638f}, - {-0.316278f,0.00708106f,0.125638f},{-0.316153f,0.00762403f,0.125638f},{-0.321297f,0.00891935f,0.125638f}, - {-0.32063f,0.0102864f,0.125638f},{-0.31567f,0.00862484f,0.125638f},{-0.319869f,0.0116055f,0.125638f}, - {-0.315948f,0.00814252f,0.125638f},{-0.314643f,0.0149788f,0.125638f},{-0.31708f,0.0151839f,0.125638f}, - {-0.318086f,0.0140624f,0.125638f},{-0.315151f,0.015333f,0.125638f},{-0.311055f,-0.0144645f,0.125638f}, - {-0.310468f,-0.0146618f,0.125638f},{-0.311229f,-0.00999677f,0.125638f},{-0.31561f,0.0157495f,0.125638f}, - {-0.316008f,0.0162251f,0.125638f},{-0.307653f,0.00883069f,0.125638f},{-0.307773f,0.00845974f,0.125638f}, - {-0.318901f,-0.00181243f,0.125638f},{-0.31918f,-0.00236609f,0.125638f},{-0.312901f,0.014358f,0.125638f}, - {-0.309911f,-0.0149353f,0.125638f},{-0.310727f,-0.00975506f,0.125638f},{-0.304441f,-0.00916839f,0.125638f}, - {-0.304246f,-0.00883048f,0.125638f},{-0.311762f,-0.0101609f,0.125638f},{-0.320938f,-0.00407552f,0.125638f}, - {-0.321866f,-0.00751594f,0.125638f},{-0.318085f,-0.0140632f,0.125638f},{-0.31708f,-0.0151839f,0.125638f}, - {-0.314299f,-0.0126311f,0.125638f},{-0.313507f,-0.0144856f,0.125638f},{-0.312901f,-0.0143575f,0.125638f}, - {-0.318576f,0.000618365f,0.125638f},{-0.318699f,-0.00122657f,0.125638f},{-0.318534f,4.85606e-018f,0.125638f}, - {-0.308525f,-0.0161593f,0.125638f},{-0.308185f,-0.0166773f,0.125638f},{-0.315148f,-0.0153371f,0.125638f}, - {-0.31464f,-0.0149805f,0.125638f},{-0.31287f,-0.0102437f,0.125638f},{-0.313421f,-0.0101606f,0.125638f}, - {-0.315324f,-0.00906122f,0.125638f},{-0.319017f,-0.0128683f,0.125638f},{-0.314916f,-0.00944057f,0.125638f}, - {-0.31567f,-0.00862459f,0.125638f},{-0.319868f,-0.0116071f,0.125638f},{-0.320629f,-0.0102881f,0.125638f}, - {-0.315948f,-0.00814199f,0.125638f},{-0.316278f,-0.00708097f,0.125638f},{-0.314455f,-0.00975455f,0.125638f}, - {-0.313953f,-0.00999629f,0.125638f},{-0.322334f,-0.00608354f,0.125638f},{-0.315611f,-0.0157476f,0.125638f}, - {-0.321499f,-0.00433883f,0.125638f},{-0.322089f,-0.0045282f,0.125638f},{-0.316008f,-0.0162251f,0.125638f}, - {-0.322699f,-0.00463457f,0.125638f},{-0.312313f,-0.0102438f,0.125638f},{-0.292544f,0.00177278f,0.125638f}, - {-0.292899f,0.0016145f,0.125638f},{-0.306524f,-0.00984657f,0.125638f},{-0.306144f,-0.00992738f,0.125638f}, - {-0.294925f,-0.00731413f,0.125638f},{-0.29512f,-0.00697672f,0.125638f},{-0.307584f,-0.0190544f,0.125638f}, - {-0.305068f,-0.0215784f,0.125638f},{-0.291351f,-0.0126311f,0.125638f},{-0.290294f,-0.0143112f,0.125638f}, - {-0.289676f,-0.014358f,0.125638f},{-0.297726f,-0.0141506f,0.125638f},{-0.293645f,-0.0156903f,0.125638f}, - {-0.297601f,-0.0136072f,0.125638f},{-0.291521f,-0.0144643f,0.125638f},{-0.292109f,-0.0146616f,0.125638f}, - {-0.294853f,-0.0178247f,0.125638f},{-0.298964f,-0.015966f,0.125638f},{-0.294965f,-0.0184341f,0.125638f}, - {-0.293181f,-0.0152802f,0.125638f},{-0.292666f,-0.0149353f,0.125638f},{-0.29756f,-0.0130513f,0.125638f}, - {-0.297508f,-0.0215779f,0.125638f},{-0.294991f,-0.019053f,0.125638f},{-0.299424f,-0.0162797f,0.125638f}, - {-0.290143f,0.000388892f,0.125638f},{-0.290263f,0.000758756f,0.125638f},{-0.321297f,-0.008921f,0.125638f}, - {-0.316153f,-0.00762395f,0.125638f},{-0.312283f,-0.0143109f,0.125638f},{-0.293552f,0.00762671f,0.125638f}, - {-0.312314f,-0.000758756f,0.125638f},{-0.312434f,-0.000388892f,0.125638f},{-0.308931f,-0.0156909f,0.125638f}, - {-0.311857f,-0.0013863f,0.125638f},{-0.293215f,0.00138471f,0.125638f},{-0.302118f,-0.0166848f,0.125638f}, - {-0.302651f,-0.0165218f,0.125638f},{-0.303567f,-0.0217881f,0.125638f},{-0.301567f,-0.0167668f,0.125638f}, - {-0.302049f,-0.0218936f,0.125638f},{-0.30101f,-0.0167671f,0.125638f},{-0.300459f,-0.0166853f,0.125638f}, - {-0.299009f,-0.0217877f,0.125638f},{-0.299926f,-0.0165216f,0.125638f},{-0.306543f,-0.0212675f,0.125638f}, - {-0.307636f,-0.0196718f,0.125638f},{-0.307767f,-0.0202777f,0.125638f},{-0.30798f,-0.0208597f,0.125638f}, - {-0.297929f,-0.0146693f,0.125638f},{-0.298208f,-0.0151517f,0.125638f},{-0.294392f,-0.0166765f,0.125638f}, - {-0.298555f,-0.0155872f,0.125638f},{-0.294661f,-0.0172353f,0.125638f},{-0.296034f,-0.0212675f,0.125638f}, - {-0.294936f,-0.0196708f,0.125638f},{-0.294597f,-0.0208597f,0.125638f},{-0.294812f,-0.0202771f,0.125638f}, - {-0.283676f,0.00181243f,0.125638f},{-0.291348f,0.00999677f,0.125638f},{-0.290913f,0.0143468f,0.125638f}, - {-0.291522f,0.0144645f,0.125638f},{-0.290815f,0.0101609f,0.125638f},{-0.292162f,0.00185398f,0.125638f}, - {-0.291772f,0.00185425f,0.125638f},{-0.291391f,0.0017734f,0.125638f},{-0.287252f,-0.00398966f,0.125638f}, - {-0.290264f,-0.00281666f,0.125638f},{-0.283559f,-0.0128671f,0.125638f},{-0.287254f,-0.00906082f,0.125638f}, - {-0.293062f,0.00862453f,0.125638f},{-0.305373f,0.00630002f,0.125638f},{-0.305754f,0.00621904f,0.125638f}, - {-0.319944f,-0.00333893f,0.125638f},{-0.320416f,-0.00374048f,0.125638f},{-0.298136f,0.00916836f,0.125638f}, - {-0.298331f,0.00883081f,0.125638f},{-0.297875f,0.0066875f,0.125638f},{-0.29379f,0.000387896f,0.125638f}, - {-0.29367f,0.000757801f,0.125638f},{-0.288623f,-0.00305438f,0.125638f},{-0.288121f,-0.00329623f,0.125638f}, - {-0.289706f,-0.00281186f,0.125638f},{-0.289069f,-0.0144863f,0.125638f},{-0.288486f,-0.0146944f,0.125638f}, - {-0.295379f,-0.00945782f,0.125638f},{-0.294924f,-0.00883069f,0.125638f},{-0.294804f,-0.00845974f,0.125638f}, - {-0.305372f,-0.00984564f,0.125638f},{-0.305754f,-0.00992724f,0.125638f},{-0.309362f,-0.00138471f,0.125638f}, - {-0.305592f,-0.00178272f,0.125638f},{-0.298451f,-0.00369829f,0.125638f},{-0.297204f,-0.00630002f,0.125638f}, - {-0.296823f,-0.00621904f,0.125638f},{-0.310034f,-0.00177278f,0.125638f},{-0.318576f,-0.000618856f,0.125638f}, - {-0.293673f,0.00708155f,0.125638f},{-0.292719f,0.00906268f,0.125638f},{-0.308526f,0.0161585f,0.125638f}, - {-0.302051f,0.0218934f,0.125638f},{-0.29466f,0.0172358f,0.125638f},{-0.297876f,0.00945796f,0.125638f}, - {-0.29756f,0.00968738f,0.125638f},{-0.298492f,0.00807261f,0.125638f},{-0.298451f,0.00845965f,0.125638f}, - {-0.298451f,0.00768455f,0.125638f},{-0.304644f,0.0114364f,0.125638f},{-0.293337f,0.00813915f,0.125638f}, - {-0.304986f,-0.00283697f,0.125638f},{-0.29833f,0.00731409f,0.125638f},{-0.298135f,0.00697679f,0.125638f}, - {-0.306525f,0.00629974f,0.125638f},{-0.307457f,0.00697672f,0.125638f},{-0.307652f,0.00731413f,0.125638f}, - {-0.304025f,0.0105136f,0.125638f},{-0.303614f,0.0101357f,0.125638f},{-0.304852f,0.0119527f,0.125638f}, - {-0.314456f,0.00329623f,0.125638f},{-0.318901f,0.00181168f,0.125638f},{-0.307458f,0.00916838f,0.125638f}, - {-0.307773f,0.00768456f,0.125638f},{-0.307814f,0.00807245f,0.125638f},{-0.306881f,0.00645825f,0.125638f}, - {-0.307196f,0.00668694f,0.125638f},{-0.306144f,0.00621891f,0.125638f},{-0.304361f,0.0109558f,0.125638f}, - {-0.312313f,0.00281666f,0.125638f},{-0.310805f,-0.00185425f,0.125638f},{-0.304976f,0.0124958f,0.125638f}, - {-0.310266f,-0.00944145f,0.125638f},{-0.311664f,-0.0143468f,0.125638f},{-0.314091f,-0.0146931f,0.125638f}, - {-0.319529f,-0.00287783f,0.125638f},{-0.312119f,-0.00109643f,0.125638f},{-0.311542f,-0.00161492f,0.125638f}, - {-0.310415f,-0.00185398f,0.125638f},{-0.311186f,-0.0017734f,0.125638f},{-0.312871f,0.00281186f,0.125638f}, - {-0.313422f,0.00289006f,0.125638f},{-0.311762f,0.00288693f,0.125638f},{-0.311229f,0.00305413f,0.125638f}, - {-0.30591f,-0.0006084f,0.125638f},{-0.308907f,-0.000757801f,0.125638f},{-0.305788f,-0.00120559f,0.125638f}, - {-0.308787f,-0.000387896f,0.125638f},{-0.308904f,-0.00708155f,0.125638f},{-0.309858f,-0.00906268f,0.125638f}, - {-0.309515f,-0.00862453f,0.125638f},{-0.309025f,-0.00762671f,0.125638f},{-0.305326f,-0.00233026f,0.125638f}, - {-0.313954f,0.00305438f,0.125638f},{-0.295696f,-0.00645825f,0.125638f},{-0.294051f,-0.0161585f,0.125638f}, - {-0.300526f,-0.0218934f,0.125638f},{-0.307917f,-0.0172358f,0.125638f},{-0.304702f,-0.00945833f,0.125638f}, - {-0.305017f,-0.00968734f,0.125638f},{-0.304085f,-0.0080728f,0.125638f},{-0.304126f,-0.00845974f,0.125638f}, - {-0.304126f,-0.00768446f,0.125638f},{-0.300083f,-0.00450236f,0.125638f},{-0.30924f,-0.00813915f,0.125638f}, - {-0.297591f,-0.00283787f,0.125638f},{-0.297992f,-0.00329614f,0.125638f},{-0.296433f,-0.00621891f,0.125638f}, - {-0.296052f,-0.00629974f,0.125638f},{-0.293475f,0.00109509f,0.125638f},{-0.296982f,-0.00178435f,0.125638f}, - {-0.297725f,-0.0119527f,0.125638f},{-0.304126f,-0.00369728f,0.125638f},{-0.304584f,-0.00329545f,0.125638f}, - {-0.299505f,-0.00430656f,0.125638f},{-0.30068f,-0.00462115f,0.125638f},{-0.301289f,-0.00466102f,0.125638f}, - {-0.304702f,-0.0066878f,0.125638f},{-0.303619f,-0.00403597f,0.125638f},{-0.304247f,-0.00731401f,0.125638f}, - {-0.302495f,-0.00450189f,0.125638f},{-0.304442f,-0.00697682f,0.125638f},{-0.283676f,-0.00181168f,0.125638f}, - {-0.290913f,-0.0143468f,0.125638f},{-0.295119f,-0.00916838f,0.125638f},{-0.294804f,-0.00768456f,0.125638f}, - {-0.294763f,-0.00807245f,0.125638f},{-0.296793f,-0.00120563f,0.125638f},{-0.295381f,-0.00668694f,0.125638f}, - {-0.298552f,-0.0105136f,0.125638f},{-0.297933f,-0.0114364f,0.125638f},{-0.298963f,-0.0101357f,0.125638f}, - {-0.298216f,-0.0109558f,0.125638f},{-0.296671f,-0.00060826f,0.125638f},{-0.297252f,-0.002331f,0.125638f}, - {-0.297601f,-0.0124958f,0.125638f},{-0.298958f,-0.00403701f,0.125638f},{-0.301897f,-0.00462104f,0.125638f}, - {-0.303073f,-0.00430572f,0.125638f},{-0.309102f,-0.00109509f,0.125638f},{-0.279665f,-0.00625082f,0.12559f}, - {-0.280145f,-0.00772125f,0.12559f},{-0.279565f,-0.00793332f,0.125434f},{-0.281997f,-0.0161504f,0.12373f}, - {-0.280926f,-0.0147775f,0.12373f},{-0.281237f,-0.0145522f,0.12429f},{-0.280275f,-0.0131254f,0.12429f}, - {-0.27995f,-0.0133286f,0.12373f},{-0.282662f,-0.0155937f,0.124775f},{-0.283091f,-0.0152344f,0.125161f}, - {-0.283778f,-0.0168374f,0.124775f},{-0.284618f,-0.0160299f,0.125434f},{-0.285432f,-0.0174787f,0.125232f}, - {-0.284181f,-0.0164494f,0.125161f},{-0.286175f,-0.0166602f,0.125592f},{-0.285793f,-0.0170806f,0.125455f}, - {-0.285063f,-0.0156014f,0.12559f},{-0.279414f,-0.0116335f,0.12429f},{-0.279075f,-0.0118136f,0.12373f}, - {-0.278659f,-0.0100875f,0.12429f},{-0.27972f,-0.013472f,0.123126f},{-0.279587f,-0.0135551f,0.122512f}, - {-0.278836f,-0.0119407f,0.123126f},{-0.279926f,-0.0141705f,0.121909f},{-0.279088f,-0.0128179f,0.121909f}, - {-0.28058f,-0.0150287f,0.122512f},{-0.280846f,-0.0154687f,0.121909f},{-0.281669f,-0.0164249f,0.122512f}, - {-0.278698f,-0.0120144f,0.122512f},{-0.278335f,-0.0114156f,0.121909f},{-0.282919f,-0.0178815f,0.121909f}, - {-0.281845f,-0.0167073f,0.121909f},{-0.282845f,-0.0177348f,0.122512f},{-0.284064f,-0.0189869f,0.121909f}, - {-0.284095f,-0.0189523f,0.122497f},{-0.277919f,-0.0104178f,0.122512f},{-0.277671f,-0.00996957f,0.121909f}, - {-0.277254f,-0.00877706f,0.122512f},{-0.277098f,-0.00848485f,0.121909f},{-0.276617f,-0.0069676f,0.121909f}, - {-0.276708f,-0.00710556f,0.122512f},{-0.276279f,-0.00541355f,0.122497f},{-0.276413f,-0.00538462f,0.123065f}, - {-0.278309f,-0.0102436f,0.12373f},{-0.283153f,-0.0174384f,0.12373f},{-0.282291f,-0.0159041f,0.12429f}, - {-0.276233f,-0.00542344f,0.121909f},{-0.278062f,-0.0103538f,0.123126f},{-0.277952f,-0.006746f,0.124775f}, - {-0.277739f,-0.00509752f,0.124929f},{-0.278489f,-0.00659057f,0.125161f},{-0.277301f,-0.00519238f,0.124546f}, - {-0.277487f,-0.00688027f,0.12429f},{-0.280335f,-0.0111437f,0.125161f},{-0.279612f,-0.00966271f,0.125161f}, - {-0.280165f,-0.00941631f,0.125434f},{-0.279303f,-0.00475885f,0.125592f},{-0.276859f,-0.00706195f,0.123126f}, - {-0.27663f,-0.00533751f,0.123602f},{-0.277119f,-0.0069868f,0.12373f},{-0.277402f,-0.00872319f,0.123126f}, - {-0.280707f,-0.0149364f,0.123126f},{-0.281789f,-0.0163241f,0.123126f},{-0.282958f,-0.0176259f,0.123126f}, - {-0.284187f,-0.0188517f,0.123062f},{-0.276929f,-0.00527292f,0.1241f},{-0.277656f,-0.00863036f,0.12373f}, - {-0.284336f,-0.0186868f,0.1236f},{-0.279071f,-0.0064225f,0.125434f},{-0.278226f,-0.00499215f,0.125233f}, - {-0.278016f,-0.00849877f,0.12429f},{-0.281628f,-0.0142682f,0.124775f},{-0.283429f,-0.0171725f,0.12429f}, - {-0.284541f,-0.0184612f,0.124098f},{-0.279101f,-0.0098906f,0.124775f},{-0.27847f,-0.00833292f,0.124775f}, - {-0.279841f,-0.0114065f,0.124775f},{-0.280685f,-0.0128692f,0.124775f},{-0.284798f,-0.018178f,0.124546f}, - {-0.278996f,-0.00814092f,0.125161f},{-0.28116f,-0.0125727f,0.125161f},{-0.282081f,-0.0139394f,0.125161f}, - {-0.285098f,-0.0178475f,0.124927f},{-0.278751f,-0.00487843f,0.125456f},{-0.280869f,-0.0108595f,0.125434f}, - {-0.281673f,-0.0122521f,0.125434f},{-0.282571f,-0.013584f,0.125434f},{-0.284029f,-0.0144491f,0.12559f}, - {-0.283555f,-0.014846f,0.125434f},{-0.28073f,-0.00916459f,0.12559f},{-0.281415f,-0.0105692f,0.12559f}, - {-0.282198f,-0.0119246f,0.12559f},{-0.283071f,-0.0132209f,0.12559f},{-0.300403f,-0.0254145f,0.123126f}, - {-0.29867f,-0.0250226f,0.12373f},{-0.300413f,-0.0251441f,0.12373f},{-0.296873f,-0.0252029f,0.122512f}, - {-0.298626f,-0.0254479f,0.122512f},{-0.298641f,-0.0254985f,0.121909f},{-0.29871f,-0.0246411f,0.12429f}, - {-0.300404f,-0.0256204f,0.121909f},{-0.295189f,-0.0246879f,0.123126f},{-0.295152f,-0.0248403f,0.122512f}, - {-0.293514f,-0.0242356f,0.123065f},{-0.295163f,-0.024878f,0.121909f},{-0.293472f,-0.0243658f,0.122497f}, - {-0.29589f,-0.0218522f,0.12559f},{-0.297404f,-0.0221712f,0.12559f},{-0.297297f,-0.0227801f,0.125434f}, - {-0.293458f,-0.0244103f,0.121909f},{-0.296889f,-0.0252555f,0.121909f},{-0.293791f,-0.0233704f,0.124546f}, - {-0.295462f,-0.0235834f,0.124775f},{-0.295346f,-0.0240528f,0.12429f},{-0.298819f,-0.0236035f,0.125161f}, - {-0.298882f,-0.0230016f,0.125434f},{-0.300462f,-0.0237181f,0.125161f},{-0.295597f,-0.02304f,0.125161f}, - {-0.293928f,-0.0229434f,0.124929f},{-0.300398f,-0.0255715f,0.122512f},{-0.298642f,-0.0252917f,0.123126f}, - {-0.305563f,-0.0244044f,0.12429f},{-0.307323f,-0.0244252f,0.12373f},{-0.305629f,-0.0247822f,0.12373f}, - {-0.294417f,-0.0214191f,0.125592f},{-0.302149f,-0.0247609f,0.12429f},{-0.303905f,-0.0250231f,0.12373f}, - {-0.302162f,-0.0251442f,0.12373f},{-0.300426f,-0.0247607f,0.12429f},{-0.307115f,-0.0235834f,0.124775f}, - {-0.30548f,-0.0239281f,0.124775f},{-0.305383f,-0.0233768f,0.125161f},{-0.306835f,-0.0224524f,0.125434f}, - {-0.308497f,-0.0224714f,0.125232f},{-0.306981f,-0.02304f,0.125161f},{-0.303865f,-0.0246415f,0.12429f}, - {-0.30816f,-0.0214191f,0.125592f},{-0.308333f,-0.0219595f,0.125455f},{-0.306687f,-0.0218522f,0.12559f}, - {-0.302177f,-0.0255716f,0.122512f},{-0.302171f,-0.0254147f,0.123126f},{-0.302172f,-0.0256204f,0.121909f}, - {-0.30395f,-0.0254484f,0.122512f},{-0.303936f,-0.0254985f,0.121909f},{-0.305703f,-0.0252035f,0.122512f}, - {-0.305688f,-0.0252554f,0.121909f},{-0.307416f,-0.0248864f,0.121909f},{-0.307425f,-0.0248403f,0.122512f}, - {-0.309119f,-0.0244103f,0.121909f},{-0.293582f,-0.0240236f,0.123602f},{-0.295254f,-0.0244252f,0.12373f}, - {-0.2969f,-0.0250482f,0.123126f},{-0.303933f,-0.0252922f,0.123126f},{-0.307388f,-0.0246879f,0.123126f}, - {-0.305676f,-0.0250488f,0.123126f},{-0.309105f,-0.0243658f,0.122497f},{-0.309064f,-0.0242365f,0.123062f}, - {-0.293675f,-0.0237329f,0.1241f},{-0.296946f,-0.0247816f,0.12373f},{-0.308996f,-0.0240245f,0.1236f}, - {-0.295742f,-0.0224524f,0.125434f},{-0.29408f,-0.0224691f,0.125233f},{-0.297013f,-0.0244038f,0.12429f}, - {-0.303815f,-0.0241606f,0.124775f},{-0.307231f,-0.0240528f,0.12429f},{-0.308903f,-0.0237345f,0.124098f}, - {-0.29876f,-0.0241602f,0.124775f},{-0.297096f,-0.0239275f,0.124775f},{-0.300443f,-0.0242775f,0.124775f}, - {-0.302132f,-0.0242776f,0.124775f},{-0.308786f,-0.0233704f,0.124546f},{-0.297193f,-0.0233762f,0.125161f}, - {-0.302113f,-0.0237183f,0.125161f},{-0.303757f,-0.023604f,0.125161f},{-0.308649f,-0.0229455f,0.124927f}, - {-0.294245f,-0.0219573f,0.125456f},{-0.300484f,-0.0231133f,0.125434f},{-0.302091f,-0.0231134f,0.125434f}, - {-0.303694f,-0.023002f,0.125434f},{-0.305172f,-0.0221717f,0.12559f},{-0.305279f,-0.0227807f,0.125434f}, - {-0.298946f,-0.0223867f,0.12559f},{-0.300505f,-0.0224954f,0.12559f},{-0.30207f,-0.0224956f,0.12559f}, - {-0.303629f,-0.0223872f,0.12559f},{-0.322989f,-0.013557f,0.122512f},{-0.321869f,-0.0149379f,0.123126f}, - {-0.322856f,-0.0134738f,0.123126f},{-0.321996f,-0.0150302f,0.122512f},{-0.322651f,-0.0141709f,0.121909f}, - {-0.321731f,-0.0154689f,0.121909f},{-0.32165f,-0.0147789f,0.12373f},{-0.322626f,-0.0133304f,0.12373f}, - {-0.321339f,-0.0145536f,0.12429f},{-0.319619f,-0.0176259f,0.123126f},{-0.319733f,-0.0177348f,0.122512f}, - {-0.31839f,-0.0188513f,0.123063f},{-0.318239f,-0.0186852f,0.123604f},{-0.318547f,-0.0144499f,0.12559f}, - {-0.319021f,-0.0148468f,0.125434f},{-0.317514f,-0.0156014f,0.12559f},{-0.318482f,-0.0189527f,0.122494f}, - {-0.319658f,-0.0178817f,0.121909f},{-0.318513f,-0.0189869f,0.121909f},{-0.320907f,-0.0164258f,0.122512f}, - {-0.320732f,-0.0167075f,0.121909f},{-0.318396f,-0.0164494f,0.125161f},{-0.318799f,-0.0168374f,0.124775f}, - {-0.31748f,-0.0178479f,0.124927f},{-0.321416f,-0.0125744f,0.125161f},{-0.320495f,-0.0139408f,0.125161f}, - {-0.320005f,-0.0135853f,0.125434f},{-0.3164f,-0.0166578f,0.125592f},{-0.319148f,-0.0171725f,0.12429f}, - {-0.317779f,-0.018178f,0.124546f},{-0.324561f,-0.00850026f,0.12429f},{-0.325458f,-0.0069868f,0.12373f}, - {-0.324921f,-0.00863187f,0.12373f},{-0.322301f,-0.0131272f,0.12429f},{-0.323506f,-0.0064225f,0.125434f}, - {-0.324354f,-0.00499264f,0.125232f},{-0.324088f,-0.00659057f,0.125161f},{-0.32374f,-0.0119427f,0.123126f}, - {-0.323878f,-0.0120165f,0.122512f},{-0.324625f,-0.006746f,0.124775f},{-0.324106f,-0.00833438f,0.124775f}, - {-0.323581f,-0.00814234f,0.125161f},{-0.324267f,-0.0102456f,0.12373f},{-0.323917f,-0.0100893f,0.12429f}, - {-0.323162f,-0.0116355f,0.12429f},{-0.323501f,-0.0118156f,0.12373f},{-0.323274f,-0.00475885f,0.125592f}, - {-0.323828f,-0.00487893f,0.125455f},{-0.322912f,-0.00625082f,0.12559f},{-0.32349f,-0.012818f,0.121909f}, - {-0.324658f,-0.0104197f,0.122512f},{-0.324242f,-0.011416f,0.121909f},{-0.325323f,-0.0087786f,0.122512f}, - {-0.324906f,-0.00996985f,0.121909f},{-0.325477f,-0.00848443f,0.121909f},{-0.325869f,-0.00710556f,0.122512f}, - {-0.325951f,-0.00696541f,0.121909f},{-0.326344f,-0.00542344f,0.121909f},{-0.326298f,-0.00541355f,0.122497f}, - {-0.319424f,-0.0174384f,0.12373f},{-0.320786f,-0.016325f,0.123126f},{-0.324515f,-0.0103558f,0.123126f}, - {-0.325175f,-0.00872472f,0.123126f},{-0.325718f,-0.00706195f,0.123126f},{-0.326165f,-0.00538482f,0.123062f}, - {-0.318034f,-0.0184588f,0.124102f},{-0.320579f,-0.0161513f,0.12373f},{-0.325948f,-0.00533772f,0.1236f}, - {-0.31796f,-0.0160299f,0.125434f},{-0.317144f,-0.0174779f,0.125233f},{-0.320285f,-0.015905f,0.12429f}, - {-0.323475f,-0.00989244f,0.124775f},{-0.32509f,-0.00688027f,0.12429f},{-0.32565f,-0.00527328f,0.124098f}, - {-0.320948f,-0.0142696f,0.124775f},{-0.319914f,-0.0155946f,0.124775f},{-0.321891f,-0.012871f,0.124775f}, - {-0.322735f,-0.0114084f,0.124775f},{-0.325276f,-0.00519238f,0.124546f},{-0.319485f,-0.0152353f,0.125161f}, - {-0.322241f,-0.0111456f,0.125161f},{-0.322964f,-0.00966451f,0.125161f},{-0.32484f,-0.005098f,0.124927f}, - {-0.316781f,-0.0170773f,0.125456f},{-0.320903f,-0.0122538f,0.125434f},{-0.321707f,-0.0108613f,0.125434f}, - {-0.322411f,-0.00941806f,0.125434f},{-0.322432f,-0.0077226f,0.12559f},{-0.323012f,-0.00793471f,0.125434f}, - {-0.319505f,-0.0132221f,0.12559f},{-0.320378f,-0.0119262f,0.12559f},{-0.321161f,-0.010571f,0.12559f}, - {-0.321847f,-0.0091663f,0.12559f},{-0.323879f,0.0120144f,0.122512f},{-0.324515f,0.0103538f,0.123126f}, - {-0.323741f,0.0119407f,0.123126f},{-0.324659f,0.0104178f,0.122512f},{-0.324268f,0.0102436f,0.12373f}, - {-0.323502f,0.0118136f,0.12373f},{-0.323918f,0.0100875f,0.12429f},{-0.325718f,0.00706195f,0.123126f}, - {-0.325869f,0.00710556f,0.122512f},{-0.326165f,0.00538462f,0.123065f},{-0.325947f,0.00533751f,0.123602f}, - {-0.322432f,0.00772125f,0.12559f},{-0.323012f,0.00793332f,0.125434f},{-0.322912f,0.00625082f,0.12559f}, - {-0.326298f,0.00541355f,0.122497f},{-0.325323f,0.00877706f,0.122512f},{-0.324088f,0.00659057f,0.125161f}, - {-0.324625f,0.006746f,0.124775f},{-0.324838f,0.00509752f,0.124929f},{-0.322242f,0.0111437f,0.125161f}, - {-0.322965f,0.00966271f,0.125161f},{-0.322412f,0.00941631f,0.125434f},{-0.323274f,0.00475885f,0.125592f}, - {-0.32509f,0.00688027f,0.12429f},{-0.325276f,0.00519238f,0.124546f},{-0.320286f,0.0159041f,0.12429f}, - {-0.319424f,0.0174384f,0.12373f},{-0.32058f,0.0161504f,0.12373f},{-0.323163f,0.0116335f,0.12429f}, - {-0.31796f,0.0160299f,0.125434f},{-0.317146f,0.0174801f,0.125231f},{-0.318396f,0.0164494f,0.125161f}, - {-0.322857f,0.013472f,0.123126f},{-0.32299f,0.0135551f,0.122512f},{-0.318799f,0.0168374f,0.124775f}, - {-0.319915f,0.0155937f,0.124775f},{-0.319486f,0.0152344f,0.125161f},{-0.321651f,0.0147775f,0.12373f}, - {-0.32134f,0.0145522f,0.12429f},{-0.322302f,0.0131254f,0.12429f},{-0.322627f,0.0133286f,0.12373f}, - {-0.3164f,0.0166578f,0.125592f},{-0.316783f,0.0170797f,0.125455f},{-0.317514f,0.0156014f,0.12559f}, - {-0.321997f,0.0150287f,0.122512f},{-0.320908f,0.0164249f,0.122512f},{-0.319733f,0.0177348f,0.122512f}, - {-0.318482f,0.0189527f,0.122494f},{-0.325458f,0.0069868f,0.12373f},{-0.325175f,0.00872319f,0.123126f}, - {-0.32187f,0.0149364f,0.123126f},{-0.320788f,0.0163241f,0.123126f},{-0.319619f,0.0176259f,0.123126f}, - {-0.318391f,0.018852f,0.12306f},{-0.325649f,0.00527292f,0.1241f},{-0.324921f,0.00863036f,0.12373f}, - {-0.31824f,0.0186863f,0.123601f},{-0.323506f,0.0064225f,0.125434f},{-0.324351f,0.00499215f,0.125233f}, - {-0.324561f,0.00849877f,0.12429f},{-0.320949f,0.0142682f,0.124775f},{-0.319148f,0.0171725f,0.12429f}, - {-0.318035f,0.0184598f,0.1241f},{-0.323476f,0.0098906f,0.124775f},{-0.324107f,0.00833292f,0.124775f}, - {-0.322736f,0.0114065f,0.124775f},{-0.321892f,0.0128692f,0.124775f},{-0.317779f,0.018178f,0.124546f}, - {-0.323581f,0.00814092f,0.125161f},{-0.321417f,0.0125727f,0.125161f},{-0.320496f,0.0139394f,0.125161f}, - {-0.317481f,0.0178492f,0.124925f},{-0.323826f,0.00487843f,0.125456f},{-0.321708f,0.0108595f,0.125434f}, - {-0.320904f,0.0122521f,0.125434f},{-0.320006f,0.013584f,0.125434f},{-0.318548f,0.0144491f,0.12559f}, - {-0.319022f,0.014846f,0.125434f},{-0.321847f,0.00916459f,0.12559f},{-0.321162f,0.0105692f,0.12559f}, - {-0.32038f,0.0119246f,0.12559f},{-0.319506f,0.0132209f,0.12559f},{-0.302174f,0.0254145f,0.123126f}, - {-0.303907f,0.0250226f,0.12373f},{-0.302164f,0.0251441f,0.12373f},{-0.305705f,0.0252029f,0.122512f}, - {-0.303952f,0.0254479f,0.122512f},{-0.303867f,0.0246411f,0.12429f},{-0.307388f,0.0246879f,0.123126f}, - {-0.307425f,0.0248403f,0.122512f},{-0.309063f,0.0242356f,0.123065f},{-0.309105f,0.0243658f,0.122497f}, - {-0.306687f,0.0218522f,0.12559f},{-0.305173f,0.0221712f,0.12559f},{-0.30528f,0.0227801f,0.125434f}, - {-0.308786f,0.0233704f,0.124546f},{-0.307115f,0.0235834f,0.124775f},{-0.307231f,0.0240528f,0.12429f}, - {-0.303759f,0.0236035f,0.125161f},{-0.303695f,0.0230016f,0.125434f},{-0.302115f,0.0237181f,0.125161f}, - {-0.306981f,0.02304f,0.125161f},{-0.308649f,0.0229434f,0.124929f},{-0.302179f,0.0255715f,0.122512f}, - {-0.303935f,0.0252917f,0.123126f},{-0.297014f,0.0244044f,0.12429f},{-0.295254f,0.0244252f,0.12373f}, - {-0.296948f,0.0247822f,0.12373f},{-0.30816f,0.0214191f,0.125592f},{-0.300428f,0.0247609f,0.12429f}, - {-0.298672f,0.0250231f,0.12373f},{-0.300415f,0.0251442f,0.12373f},{-0.302151f,0.0247607f,0.12429f}, - {-0.295462f,0.0235834f,0.124775f},{-0.297097f,0.0239281f,0.124775f},{-0.297194f,0.0233768f,0.125161f}, - {-0.295742f,0.0224524f,0.125434f},{-0.29408f,0.0224714f,0.125232f},{-0.295597f,0.02304f,0.125161f}, - {-0.298712f,0.0246415f,0.12429f},{-0.294417f,0.0214191f,0.125592f},{-0.294244f,0.0219595f,0.125455f}, - {-0.29589f,0.0218522f,0.12559f},{-0.3004f,0.0255716f,0.122512f},{-0.300406f,0.0254147f,0.123126f}, - {-0.298628f,0.0254484f,0.122512f},{-0.296874f,0.0252035f,0.122512f},{-0.295152f,0.0248403f,0.122512f}, - {-0.308995f,0.0240236f,0.123602f},{-0.307323f,0.0244252f,0.12373f},{-0.305677f,0.0250482f,0.123126f}, - {-0.298644f,0.0252922f,0.123126f},{-0.295189f,0.0246879f,0.123126f},{-0.296901f,0.0250488f,0.123126f}, - {-0.293472f,0.0243658f,0.122497f},{-0.293513f,0.0242365f,0.123062f},{-0.308902f,0.0237329f,0.1241f}, - {-0.305631f,0.0247816f,0.12373f},{-0.293581f,0.0240245f,0.1236f},{-0.306835f,0.0224524f,0.125434f}, - {-0.308497f,0.0224691f,0.125233f},{-0.305565f,0.0244038f,0.12429f},{-0.298762f,0.0241606f,0.124775f}, - {-0.295346f,0.0240528f,0.12429f},{-0.293674f,0.0237345f,0.124098f},{-0.303817f,0.0241602f,0.124775f}, - {-0.305481f,0.0239275f,0.124775f},{-0.302134f,0.0242775f,0.124775f},{-0.300445f,0.0242776f,0.124775f}, - {-0.293791f,0.0233704f,0.124546f},{-0.305384f,0.0233762f,0.125161f},{-0.300465f,0.0237183f,0.125161f}, - {-0.29882f,0.023604f,0.125161f},{-0.293928f,0.0229455f,0.124927f},{-0.308332f,0.0219573f,0.125456f}, - {-0.302094f,0.0231133f,0.125434f},{-0.300486f,0.0231134f,0.125434f},{-0.298883f,0.023002f,0.125434f}, - {-0.297405f,0.0221717f,0.12559f},{-0.297298f,0.0227807f,0.125434f},{-0.303631f,0.0223867f,0.12559f}, - {-0.302072f,0.0224954f,0.12559f},{-0.300507f,0.0224956f,0.12559f},{-0.298948f,0.0223872f,0.12559f}, - {-0.279588f,0.013557f,0.122512f},{-0.280709f,0.0149379f,0.123126f},{-0.279721f,0.0134738f,0.123126f}, - {-0.280581f,0.0150302f,0.122512f},{-0.280928f,0.0147789f,0.12373f},{-0.279951f,0.0133304f,0.12373f}, - {-0.281238f,0.0145536f,0.12429f},{-0.282958f,0.0176259f,0.123126f},{-0.282845f,0.0177348f,0.122512f}, - {-0.284187f,0.018851f,0.123065f},{-0.284337f,0.0186861f,0.123602f},{-0.28403f,0.0144499f,0.12559f}, - {-0.283556f,0.0148468f,0.125434f},{-0.285063f,0.0156014f,0.12559f},{-0.284095f,0.0189523f,0.122497f}, - {-0.28167f,0.0164258f,0.122512f},{-0.284181f,0.0164494f,0.125161f},{-0.283778f,0.0168374f,0.124775f}, - {-0.285099f,0.0178459f,0.124929f},{-0.281161f,0.0125744f,0.125161f},{-0.282082f,0.0139408f,0.125161f}, - {-0.282572f,0.0135853f,0.125434f},{-0.286175f,0.0166602f,0.125592f},{-0.283429f,0.0171725f,0.12429f}, - {-0.284798f,0.018178f,0.124546f},{-0.278016f,0.00850026f,0.12429f},{-0.277119f,0.0069868f,0.12373f}, - {-0.277656f,0.00863187f,0.12373f},{-0.280276f,0.0131272f,0.12429f},{-0.279071f,0.0064225f,0.125434f}, - {-0.278223f,0.00499264f,0.125232f},{-0.278489f,0.00659057f,0.125161f},{-0.278837f,0.0119427f,0.123126f}, - {-0.278699f,0.0120165f,0.122512f},{-0.277952f,0.006746f,0.124775f},{-0.278471f,0.00833438f,0.124775f}, - {-0.278996f,0.00814234f,0.125161f},{-0.27831f,0.0102456f,0.12373f},{-0.27866f,0.0100893f,0.12429f}, - {-0.279415f,0.0116355f,0.12429f},{-0.279076f,0.0118156f,0.12373f},{-0.279303f,0.00475885f,0.125592f}, - {-0.278749f,0.00487893f,0.125455f},{-0.279665f,0.00625082f,0.12559f},{-0.277919f,0.0104197f,0.122512f}, - {-0.277254f,0.0087786f,0.122512f},{-0.276708f,0.00710556f,0.122512f},{-0.276279f,0.00541355f,0.122497f}, - {-0.283153f,0.0174384f,0.12373f},{-0.281791f,0.016325f,0.123126f},{-0.278063f,0.0103558f,0.123126f}, - {-0.277402f,0.00872472f,0.123126f},{-0.276859f,0.00706195f,0.123126f},{-0.276412f,0.00538482f,0.123062f}, - {-0.284542f,0.0184599f,0.1241f},{-0.281998f,0.0161513f,0.12373f},{-0.276629f,0.00533772f,0.1236f}, - {-0.284618f,0.0160299f,0.125434f},{-0.285434f,0.017477f,0.125233f},{-0.282292f,0.015905f,0.12429f}, - {-0.279102f,0.00989244f,0.124775f},{-0.277487f,0.00688027f,0.12429f},{-0.276927f,0.00527328f,0.124098f}, - {-0.281629f,0.0142696f,0.124775f},{-0.282663f,0.0155946f,0.124775f},{-0.280686f,0.012871f,0.124775f}, - {-0.279842f,0.0114084f,0.124775f},{-0.277301f,0.00519238f,0.124546f},{-0.283092f,0.0152353f,0.125161f}, - {-0.280336f,0.0111456f,0.125161f},{-0.279613f,0.00966451f,0.125161f},{-0.277737f,0.005098f,0.124927f}, - {-0.285795f,0.0170789f,0.125456f},{-0.281674f,0.0122538f,0.125434f},{-0.28087f,0.0108613f,0.125434f}, - {-0.280166f,0.00941806f,0.125434f},{-0.280146f,0.0077226f,0.12559f},{-0.279565f,0.00793471f,0.125434f}, - {-0.283072f,0.0132221f,0.12559f},{-0.282199f,0.0119262f,0.12559f},{-0.281416f,0.010571f,0.12559f}, - {-0.28073f,0.0091663f,0.12559f},{-0.297145f,-0.00620072f,0.100469f},{-0.299891f,-0.00241971f,0.100469f}, - {-0.299492f,-0.00214016f,0.100469f},{-0.298434f,-0.00688999f,0.100469f},{-0.297772f,-0.00657676f,0.100469f}, - {-0.299123f,-0.00713669f,0.100469f},{-0.300332f,-0.00262702f,0.100469f},{-0.296557f,-0.00576486f,0.100469f}, - {-0.296014f,-0.00527335f,0.100469f},{-0.299834f,-0.00731445f,0.100469f},{-0.300803f,-0.00275405f,0.100469f}, - {-0.299147f,-0.00179629f,0.100469f},{-0.295523f,-0.004731f,0.100469f},{-0.300558f,-0.00742168f,0.100469f}, - {-0.301289f,-0.00279661f,0.100469f},{-0.295087f,-0.00414307f,0.100469f},{-0.298867f,-0.00139723f,0.100469f}, - {-0.301289f,-0.00745764f,0.100469f},{-0.30202f,-0.0074216f,0.100469f},{-0.302744f,-0.00731392f,0.100469f}, - {-0.301774f,-0.00275426f,0.100469f},{-0.303454f,-0.00713585f,0.100469f},{-0.302244f,-0.0026284f,0.100469f}, - {-0.294398f,-0.0028536f,0.100469f},{-0.294711f,-0.00351526f,0.100469f},{-0.304805f,-0.00657672f,0.100469f}, - {-0.304143f,-0.0068893f,0.100469f},{-0.294152f,-0.00216444f,0.100469f},{-0.298661f,-0.000955369f,0.100469f}, - {-0.298535f,-0.000484912f,0.100469f},{-0.302684f,-0.00241949f,0.100469f},{-0.293866f,-0.000730865f,0.100469f}, - {-0.293974f,-0.00145464f,0.100469f},{-0.303432f,-0.0018009f,0.100469f},{-0.303078f,-0.00213198f,0.100469f}, - {-0.306562f,-0.00527224f,0.100469f},{-0.307865f,-0.00351451f,0.100469f},{-0.308178f,-0.00285307f,0.100469f}, - {-0.303917f,-0.000957231f,0.100469f},{-0.304044f,-0.000485989f,0.100469f},{-0.30871f,-0.000730708f,0.100469f}, - {-0.308425f,-0.00216422f,0.100469f},{-0.308603f,-0.00145452f,0.100469f},{-0.30602f,-0.00576389f,0.100469f}, - {-0.305432f,-0.00620014f,0.100469f},{-0.307489f,-0.00414214f,0.100469f},{-0.303711f,-0.00139896f,0.100469f}, - {-0.307053f,-0.00472993f,0.100469f},{-0.30068f,0.0121618f,0.101401f},{-0.299504f,0.0124736f,0.101401f}, - {-0.298958f,0.0127432f,0.101401f},{-0.299123f,-0.00713585f,0.101401f},{-0.295928f,-0.0107204f,0.101401f}, - {-0.293867f,-0.000730708f,0.101401f},{-0.289127f,-0.00060826f,0.101401f},{-0.294152f,-0.00216422f,0.101401f}, - {-0.288545f,-0.002331f,0.101401f},{-0.294399f,-0.00285307f,0.101401f},{-0.297252f,0.0144494f,0.101401f}, - {-0.296983f,0.0185639f,0.101401f},{-0.286992f,-0.0131013f,0.101401f},{-0.304087f,0.021256f,0.101401f}, - {-0.279887f,-0.0006084f,0.101401f},{-0.308181f,0.0203028f,0.101401f},{-0.309493f,0.0198085f,0.101401f}, - {-0.280009f,-0.00120559f,0.101401f},{-0.280205f,-0.00178272f,0.101401f},{-0.287805f,-0.00329614f,0.101401f}, - {-0.294712f,-0.00351451f,0.101401f},{-0.288207f,-0.00283787f,0.101401f},{-0.310221f,-0.0114792f,0.101401f}, - {-0.305015f,-0.0139787f,0.101401f},{-0.305351f,-0.0144948f,0.101401f},{-0.280472f,-0.00233026f,0.101401f}, - {-0.281213f,-0.00329545f,0.101401f},{-0.280811f,-0.00283697f,0.101401f},{-0.281671f,-0.00369728f,0.101401f}, - {-0.287378f,-0.0112779f,0.101401f},{-0.287149f,-0.0115926f,0.101401f},{-0.303454f,-0.00713669f,0.101401f}, - {-0.303642f,-0.0127563f,0.101401f},{-0.304143f,-0.00688999f,0.101401f},{-0.282178f,-0.00403597f,0.101401f}, - {-0.282725f,-0.00430572f,0.101401f},{-0.284509f,-0.00466102f,0.101401f},{-0.2839f,-0.00462104f,0.101401f}, - {-0.283302f,-0.00450189f,0.101401f},{-0.315425f,0.0161201f,0.101401f},{-0.310771f,0.0192295f,0.101401f}, - {-0.302507f,-0.0122874f,0.101401f},{-0.302744f,-0.00731445f,0.101401f},{-0.302019f,-0.00742168f,0.101401f}, - {-0.285117f,-0.00462115f,0.101401f},{-0.303091f,-0.0124812f,0.101401f},{-0.295088f,-0.00414214f,0.101401f}, - {-0.304152f,-0.0131016f,0.101401f},{-0.28691f,-0.01233f,0.101401f},{-0.31204f,0.0119471f,0.101401f}, - {-0.312198f,0.0115917f,0.101401f},{-0.302691f,0.0213951f,0.101401f},{-0.297993f,0.0200754f,0.101401f}, - {-0.297591f,0.0196172f,0.101401f},{-0.295524f,-0.00472993f,0.101401f},{-0.296628f,0.0167797f,0.101401f}, - {-0.296667f,0.0173884f,0.101401f},{-0.293974f,-0.00145452f,0.101401f},{-0.288815f,-0.00178435f,0.101401f}, - {-0.289127f,0.00961418f,0.101401f},{-0.290354f,0.0087231f,0.101401f},{-0.289984f,0.00884326f,0.101401f}, - {-0.288969f,0.0099696f,0.101401f},{-0.289647f,0.00903788f,0.101401f},{-0.289357f,0.00929843f,0.101401f}, - {-0.287668f,-0.0110163f,0.101401f},{-0.287669f,-0.014033f,0.101401f},{-0.288007f,-0.0142276f,0.101401f}, - {-0.288006f,-0.0108212f,0.101401f},{-0.285715f,-0.00450236f,0.101401f},{-0.296557f,-0.00576389f,0.101401f}, - {-0.296015f,-0.00527224f,0.101401f},{-0.318298f,0.0130525f,0.101401f},{-0.308808f,-0.0200792f,0.101401f}, - {-0.310142f,-0.0195277f,0.101401f},{-0.305898f,-0.0174727f,0.101401f},{-0.298434f,-0.0068893f,0.101401f}, - {-0.297772f,-0.00657672f,0.101401f},{-0.300557f,-0.0074216f,0.101401f},{-0.299833f,-0.00731392f,0.101401f}, - {-0.316449f,0.0151611f,0.101401f},{-0.317408f,0.0141371f,0.101401f},{-0.313762f,0.00178435f,0.101401f}, - {-0.313573f,0.00120563f,0.101401f},{-0.301289f,-0.00745764f,0.101401f},{-0.305617f,-0.0150508f,0.101401f}, - {-0.310451f,-0.011795f,0.101401f},{-0.312009f,0.00536018f,0.101401f},{-0.309981f,-0.0107426f,0.101401f}, - {-0.304612f,-0.0135115f,0.101401f},{-0.319116f,0.0119121f,0.101401f},{-0.308603f,-0.00145464f,0.101401f}, - {-0.308426f,-0.00216444f,0.101401f},{-0.308711f,-0.000730865f,0.101401f},{-0.320906f,0.00369728f,0.101401f}, - {-0.321364f,0.00329545f,0.101401f},{-0.322317f,0.00418323f,0.101401f},{-0.317108f,-0.0144727f,0.101401f}, - {-0.318046f,-0.0133751f,0.101401f},{-0.318908f,-0.0122169f,0.101401f},{-0.305919f,-0.0162427f,0.101401f}, - {-0.311436f,-0.0188874f,0.101401f},{-0.313881f,-0.0173532f,0.101401f},{-0.315021f,-0.0164664f,0.101401f}, - {-0.305949f,-0.0168584f,0.101401f},{-0.305556f,-0.018654f,0.101401f},{-0.307439f,-0.0205396f,0.101401f}, - {-0.305766f,-0.0180747f,0.101401f},{-0.302944f,-0.0211335f,0.101401f},{-0.303192f,-0.0213586f,0.101401f}, - {-0.303505f,-0.0208805f,0.101401f},{-0.304917f,-0.0197045f,0.101401f},{-0.306043f,-0.0209071f,0.101401f}, - {-0.305271f,-0.0192003f,0.101401f},{-0.304499f,-0.0201577f,0.101401f},{-0.304026f,-0.0205519f,0.101401f}, - {-0.304622f,-0.0211663f,0.101401f},{-0.302355f,-0.0213146f,0.101401f},{-0.301748f,-0.021419f,0.101401f}, - {-0.311447f,-0.0123703f,0.101401f},{-0.312685f,-0.0181614f,0.101401f},{-0.316098f,-0.0155048f,0.101401f}, - {-0.319691f,-0.0110032f,0.101401f},{-0.322535f,-0.00287961f,0.101401f},{-0.322293f,-0.00430325f,0.101401f}, - {-0.321956f,-0.00570752f,0.101401f},{-0.289004f,-0.00120563f,0.101401f},{-0.30602f,-0.00576486f,0.101401f}, - {-0.31022f,-0.00961513f,0.101401f},{-0.310449f,-0.00930035f,0.101401f},{-0.32039f,-0.00973944f,0.101401f}, - {-0.311077f,-0.0122501f,0.101401f},{-0.322681f,-0.00144304f,0.101401f},{-0.312428f,0.0112759f,0.101401f}, - {-0.312718f,0.0110154f,0.101401f},{-0.307054f,-0.004731f,0.101401f},{-0.306563f,-0.00527335f,0.101401f}, - {-0.310739f,-0.00903878f,0.101401f},{-0.311076f,-0.00884365f,0.101401f},{-0.311446f,-0.00872342f,0.101401f}, - {-0.30749f,-0.00414307f,0.101401f},{-0.310062f,-0.00997107f,0.101401f},{-0.305432f,-0.00620072f,0.101401f}, - {-0.304805f,-0.00657676f,0.101401f},{-0.305807f,-0.0156368f,0.101401f},{-0.31074f,-0.0120555f,0.101401f}, - {-0.301903f,-0.0121629f,0.101401f},{-0.287346f,-0.00369829f,0.101401f},{-0.297145f,-0.00620014f,0.101401f}, - {-0.286839f,-0.00403701f,0.101401f},{-0.288888f,0.0107408f,0.101401f},{-0.289356f,0.011793f,0.101401f}, - {-0.296982f,0.0149963f,0.101401f},{-0.299506f,0.0210836f,0.101401f},{-0.305471f,0.0210266f,0.101401f}, - {-0.311959f,0.0123283f,0.101401f},{-0.306838f,0.0207091f,0.101401f},{-0.31437f,0.00283787f,0.101401f}, - {-0.314772f,0.00329614f,0.101401f},{-0.314341f,0.0170101f,0.101401f},{-0.319856f,0.0107207f,0.101401f}, - {-0.321591f,0.00689212f,0.101401f},{-0.319852f,0.00430572f,0.101401f},{-0.321998f,0.00554954f,0.101401f}, - {-0.308179f,-0.0028536f,0.101401f},{-0.3132f,0.0178274f,0.101401f},{-0.313054f,0.0142272f,0.101401f}, - {-0.313424f,0.0143475f,0.101401f},{-0.320518f,0.00948339f,0.101401f},{-0.316285f,0.00430656f,0.101401f}, - {-0.31345f,0.00060826f,0.101401f},{-0.312198f,0.0134558f,0.101401f},{-0.312426f,0.0137705f,0.101401f}, - {-0.311958f,0.0127183f,0.101401f},{-0.312009f,0.0185682f,0.101401f},{-0.312716f,0.0140321f,0.101401f}, - {-0.300083f,0.0122844f,0.101401f},{-0.289645f,0.0120546f,0.101401f},{-0.289983f,0.0122497f,0.101401f}, - {-0.288888f,0.0103508f,0.101401f},{-0.296667f,0.0161715f,0.101401f},{-0.298451f,0.0130817f,0.101401f}, - {-0.297992f,0.0134836f,0.101401f},{-0.29759f,0.0139422f,0.101401f},{-0.288968f,0.0111223f,0.101401f}, - {-0.289127f,0.0114782f,0.101401f},{-0.290353f,0.01237f,0.101401f},{-0.286292f,-0.00430656f,0.101401f}, - {-0.288375f,-0.0107009f,0.101401f},{-0.288376f,-0.0143478f,0.101401f},{-0.28738f,-0.0137725f,0.101401f}, - {-0.28715f,-0.0134567f,0.101401f},{-0.28691f,-0.0127201f,0.101401f},{-0.286991f,-0.0119486f,0.101401f}, - {-0.321525f,-0.00708565f,0.101401f},{-0.321002f,-0.00843163f,0.101401f},{-0.309981f,-0.0103525f,0.101401f}, - {-0.310062f,-0.0111238f,0.101401f},{-0.307866f,-0.00351526f,0.101401f},{-0.312039f,0.0130998f,0.101401f}, - {-0.296786f,0.0155736f,0.101401f},{-0.296787f,0.0179866f,0.101401f},{-0.297253f,0.0191105f,0.101401f}, - {-0.298452f,0.0204775f,0.101401f},{-0.298958f,0.0208166f,0.101401f},{-0.30068f,0.0214014f,0.101401f}, - {-0.300083f,0.021279f,0.101401f},{-0.322372f,0.00178272f,0.101401f},{-0.322683f,0.00140253f,0.101401f}, - {-0.322546f,0.00279893f,0.101401f},{-0.321097f,0.00820537f,0.101401f},{-0.318068f,0.00466102f,0.101401f}, - {-0.318677f,0.00462104f,0.101401f},{-0.31746f,0.00462115f,0.101401f},{-0.314032f,0.002331f,0.101401f}, - {-0.316862f,0.00450236f,0.101401f},{-0.315231f,0.00369829f,0.101401f},{-0.315738f,0.00403701f,0.101401f}, - {-0.313425f,0.0107006f,0.101401f},{-0.313055f,0.0108208f,0.101401f},{-0.319275f,0.00450189f,0.101401f}, - {-0.320399f,0.00403597f,0.101401f},{-0.321766f,0.00283697f,0.101401f},{-0.322105f,0.00233026f,0.101401f}, - {-0.32269f,0.0006084f,0.101401f},{-0.322568f,0.00120559f,0.101401f},{-0.279202f,-0.0130142f,0.120045f}, - {-0.281553f,-0.0163617f,0.120045f},{-0.317715f,0.0202853f,0.120045f},{-0.318754f,0.0193978f,0.120045f}, - {-0.27854f,-0.0118202f,0.120045f},{-0.314339f,0.0226051f,0.120045f},{-0.315504f,0.0218911f,0.120045f}, - {-0.27695f,-0.00805156f,0.120045f},{-0.310642f,0.0243682f,0.120045f},{-0.311905f,0.0238452f,0.120045f}, - {-0.275979f,-0.0040778f,0.120045f},{-0.306715f,0.0255314f,0.120045f},{-0.305372f,0.0257805f,0.120045f}, - {-0.308044f,0.0252126f,0.120045f},{-0.309354f,0.0248245f,0.120045f},{-0.302654f,0.0260573f,0.120045f}, - {-0.304017f,0.0259588f,0.120045f},{-0.275698f,-0.00136419f,0.120045f},{-0.275798f,-0.00272502f,0.120045f}, - {-0.313138f,0.023257f,0.120045f},{-0.276556f,-0.00674482f,0.120045f},{-0.276232f,-0.00541896f,0.120045f}, - {-0.316631f,0.0211172f,0.120045f},{-0.277944f,-0.0105928f,0.120045f},{-0.277413f,-0.00933541f,0.120045f}, - {-0.319745f,0.0184571f,0.120045f},{-0.320686f,0.0174659f,0.120045f},{-0.279926f,-0.0141713f,0.120045f}, - {-0.321573f,0.0164267f,0.120045f},{-0.322405f,0.0153425f,0.120045f},{-0.323179f,0.0142163f,0.120045f}, - {-0.28071f,-0.0152881f,0.120045f},{-0.323893f,0.0130512f,0.120045f},{-0.324545f,0.0118502f,0.120045f}, - {-0.282452f,-0.0173888f,0.120045f},{-0.325134f,0.0106168f,0.120045f},{-0.283404f,-0.0183667f,0.120045f}, - {-0.325657f,0.00935425f,0.120045f},{-0.284407f,-0.0192925f,0.120045f},{-0.326113f,0.00806608f,0.120045f}, - {-0.285457f,-0.0201635f,0.120045f},{-0.326501f,0.00675581f,0.120045f},{-0.286553f,-0.0209774f,0.120045f}, - {-0.32682f,0.00542697f,0.120045f},{-0.28769f,-0.021732f,0.120045f},{-0.327069f,0.00408325f,0.120045f}, - {-0.288866f,-0.022425f,0.120045f},{-0.327247f,0.00272836f,0.120045f},{-0.290078f,-0.0230545f,0.120045f}, - {-0.327354f,0.00136603f,0.120045f},{-0.291321f,-0.0236185f,0.120045f},{-0.32739f,5.19219e-017f,0.120045f}, - {-0.292592f,-0.0241155f,0.120045f},{-0.326879f,-0.00136408f,0.120045f},{-0.327354f,-0.0013662f,0.120045f}, - {-0.293888f,-0.0245441f,0.120045f},{-0.326779f,-0.00272485f,0.120045f},{-0.327247f,-0.00272864f,0.120045f}, - {-0.295204f,-0.0249032f,0.120045f},{-0.326598f,-0.0040775f,0.120045f},{-0.327069f,-0.00408356f,0.120045f}, - {-0.296539f,-0.0251918f,0.120045f},{-0.297886f,-0.0254089f,0.120045f},{-0.300606f,-0.0256265f,0.120045f}, - {-0.326345f,-0.00541865f,0.120045f},{-0.32682f,-0.00542725f,0.120045f},{-0.304017f,-0.025959f,0.120045f}, - {-0.304691f,-0.0254087f,0.120045f},{-0.305372f,-0.0257802f,0.120045f},{-0.325164f,-0.00933492f,0.120045f}, - {-0.325627f,-0.00805103f,0.120045f},{-0.325656f,-0.00935456f,0.120045f},{-0.308044f,-0.0252123f,0.120045f}, - {-0.30869f,-0.0245439f,0.120045f},{-0.309354f,-0.0248241f,0.120045f},{-0.323893f,-0.0130514f,0.120045f}, - {-0.324037f,-0.0118198f,0.120045f},{-0.324545f,-0.0118505f,0.120045f},{-0.313138f,-0.0232571f,0.120045f}, - {-0.311905f,-0.0238453f,0.120045f},{-0.3125f,-0.0230539f,0.120045f},{-0.321573f,-0.0164269f,0.120045f}, - {-0.321867f,-0.0152875f,0.120045f},{-0.322405f,-0.0153428f,0.120045f},{-0.317714f,-0.0202852f,0.120045f}, - {-0.31817f,-0.019292f,0.120045f},{-0.318753f,-0.0193978f,0.120045f},{-0.314339f,-0.022605f,0.120045f}, - {-0.313711f,-0.0224246f,0.120045f},{-0.320125f,-0.0173882f,0.120045f},{-0.320685f,-0.017466f,0.120045f}, - {-0.319745f,-0.0184572f,0.120045f},{-0.319173f,-0.0183661f,0.120045f},{-0.31663f,-0.021117f,0.120045f}, - {-0.315504f,-0.021891f,0.120045f},{-0.316024f,-0.0209773f,0.120045f},{-0.314887f,-0.0217317f,0.120045f}, - {-0.321024f,-0.016361f,0.120045f},{-0.31712f,-0.0201633f,0.120045f},{-0.309986f,-0.0241152f,0.120045f}, - {-0.310642f,-0.024368f,0.120045f},{-0.311257f,-0.023618f,0.120045f},{-0.323375f,-0.0130136f,0.120045f}, - {-0.323179f,-0.0142166f,0.120045f},{-0.322651f,-0.0141706f,0.120045f},{-0.306039f,-0.0251915f,0.120045f}, - {-0.306715f,-0.0255313f,0.120045f},{-0.307373f,-0.024903f,0.120045f},{-0.324633f,-0.0105924f,0.120045f}, - {-0.325133f,-0.0106171f,0.120045f},{-0.301971f,-0.0256265f,0.120045f},{-0.302654f,-0.0260568f,0.120045f}, - {-0.303334f,-0.0255538f,0.120045f},{-0.326501f,-0.00675606f,0.120045f},{-0.326021f,-0.00674437f,0.120045f}, - {-0.326113f,-0.00806637f,0.120045f},{-0.299243f,-0.0255539f,0.120045f},{-0.306738f,-0.0255265f,0.106062f}, - {-0.305396f,-0.0257766f,0.106062f},{-0.304039f,-0.0259565f,0.106062f},{-0.310646f,-0.0243666f,0.106062f}, - {-0.308062f,-0.0252075f,0.106062f},{-0.315485f,-0.0219036f,0.106062f},{-0.314323f,-0.0226143f,0.106062f}, - {-0.313127f,-0.0232624f,0.106062f},{-0.311901f,-0.0238468f,0.106062f},{-0.318743f,-0.0194069f,0.106062f}, - {-0.316611f,-0.0211315f,0.106062f},{-0.32242f,-0.0153222f,0.106062f},{-0.321587f,-0.0164092f,0.106062f}, - {-0.320695f,-0.0174549f,0.106062f},{-0.319745f,-0.0184567f,0.106062f},{-0.324551f,-0.0118391f,0.106062f}, - {-0.323192f,-0.0141964f,0.106062f},{-0.326496f,-0.00677408f,0.106062f},{-0.326109f,-0.00807765f,0.106062f}, - {-0.325655f,-0.00935809f,0.106062f},{-0.325135f,-0.0106128f,0.106062f},{-0.327065f,-0.0041079f,0.106062f}, - {-0.327245f,-0.00275048f,0.106062f},{-0.326815f,-0.00544996f,0.106062f},{-0.327354f,0.00138025f,0.106062f}, - {-0.32739f,2.06991e-018f,0.106062f},{-0.327354f,-0.00138032f,0.106062f},{-0.326815f,0.00544975f,0.106062f}, - {-0.327065f,0.00410773f,0.106062f},{-0.327245f,0.00275036f,0.106062f},{-0.326109f,0.0080774f,0.106062f}, - {-0.326496f,0.00677384f,0.106062f},{-0.325135f,0.0106125f,0.106062f},{-0.324551f,0.0118389f,0.106062f}, - {-0.325655f,0.00935782f,0.106062f},{-0.323192f,0.0141962f,0.106062f},{-0.323903f,0.0130343f,0.106062f}, - {-0.321587f,0.0164091f,0.106062f},{-0.32242f,0.015322f,0.106062f},{-0.319745f,0.0184567f,0.106062f}, - {-0.320695f,0.0174549f,0.106062f},{-0.318743f,0.0194069f,0.106062f},{-0.317698f,0.0202988f,0.106062f}, - {-0.316611f,0.0211314f,0.106062f},{-0.315485f,0.0219036f,0.106062f},{-0.314323f,0.0226142f,0.106062f}, - {-0.313128f,0.0232623f,0.106062f},{-0.311901f,0.0238467f,0.106062f},{-0.310647f,0.0243664f,0.106062f}, - {-0.309366f,0.0248204f,0.106062f},{-0.308063f,0.0252074f,0.106062f},{-0.306739f,0.0255265f,0.106062f}, - {-0.305396f,0.0257765f,0.106062f},{-0.304039f,0.0259565f,0.106062f},{-0.302669f,0.0260652f,0.106062f}, - {-0.323903f,-0.0130346f,0.106062f},{-0.317698f,-0.0202989f,0.106062f},{-0.309366f,-0.0248205f,0.106062f}, - {-0.302669f,-0.0260653f,0.106062f},{-0.317713f,-0.013782f,0.106062f},{-0.314092f,-0.0171983f,0.106062f}, - {-0.30978f,-0.0196871f,0.106062f},{-0.305011f,-0.0211136f,0.106062f},{-0.302535f,-0.0214048f,0.106062f}, - {-0.303778f,-0.0212945f,0.106062f},{-0.308622f,-0.0201477f,0.106062f},{-0.310911f,-0.01916f,0.106062f}, - {-0.312009f,-0.0185682f,0.106062f},{-0.31307f,-0.0179136f,0.106062f},{-0.316884f,-0.0147136f,0.106062f}, - {-0.316002f,-0.0155955f,0.106062f},{-0.31507f,-0.0164247f,0.106062f},{-0.319856f,-0.0107207f,0.106062f}, - {-0.319202f,-0.0117822f,0.106062f},{-0.318486f,-0.0128038f,0.106062f},{-0.320448f,-0.00962296f,0.106062f}, - {-0.320975f,-0.00849262f,0.106062f},{-0.321436f,-0.00733354f,0.106062f},{-0.321828f,-0.00614966f,0.106062f}, - {-0.322151f,-0.00494495f,0.106062f},{-0.322403f,-0.00372348f,0.106062f},{-0.322584f,-0.00248937f,0.106062f}, - {-0.322693f,-0.00124681f,0.106062f},{-0.322729f,-1.73872e-017f,0.106062f},{-0.322693f,0.00124661f,0.106062f}, - {-0.322584f,0.00248903f,0.106062f},{-0.322404f,0.00372306f,0.106062f},{-0.322151f,0.0049445f,0.106062f}, - {-0.321829f,0.00614923f,0.106062f},{-0.321436f,0.00733314f,0.106062f},{-0.320976f,0.00849224f,0.106062f}, - {-0.319857f,0.0107204f,0.106062f},{-0.303778f,0.0212927f,0.106062f},{-0.302536f,0.0214054f,0.106062f}, - {-0.317713f,0.013782f,0.106062f},{-0.306234f,0.0208628f,0.106062f},{-0.307438f,0.0205399f,0.106062f}, - {-0.31507f,0.0164248f,0.106062f},{-0.316002f,0.0155957f,0.106062f},{-0.312009f,0.0185682f,0.106062f}, - {-0.31307f,0.0179135f,0.106062f},{-0.314092f,0.0171982f,0.106062f},{-0.309781f,0.0196873f,0.106062f}, - {-0.308622f,0.0201477f,0.106062f},{-0.310911f,0.0191602f,0.106062f},{-0.305011f,0.0211056f,0.106062f}, - {-0.316884f,0.0147138f,0.106062f},{-0.319202f,0.011782f,0.106062f},{-0.318487f,0.0128037f,0.106062f}, - {-0.320449f,0.0096226f,0.106062f},{-0.306233f,-0.02086f,0.106062f},{-0.307438f,-0.0205402f,0.106062f}, - {-0.30625f,-0.0208587f,0.10513f},{-0.305032f,-0.0211115f,0.10513f},{-0.303796f,-0.0212936f,0.10513f}, - {-0.309779f,-0.019688f,0.10513f},{-0.30745f,-0.0205363f,0.10513f},{-0.314076f,-0.0172102f,0.10513f}, - {-0.313054f,-0.0179243f,0.10513f},{-0.311995f,-0.018576f,0.10513f},{-0.310903f,-0.0191643f,0.10513f}, - {-0.316888f,-0.0147088f,0.10513f},{-0.315058f,-0.0164352f,0.10513f},{-0.319865f,-0.010707f,0.10513f}, - {-0.319213f,-0.0117656f,0.10513f},{-0.318499f,-0.0127873f,0.10513f},{-0.321434f,-0.00733859f,0.10513f}, - {-0.320976f,-0.00849054f,0.10513f},{-0.320453f,-0.0096143f,0.10513f},{-0.322582f,-0.00250813f,0.10513f}, - {-0.3224f,-0.00374334f,0.10513f},{-0.322147f,-0.00496208f,0.10513f},{-0.321825f,-0.00616144f,0.10513f}, - {-0.322729f,-2.2769e-017f,0.10513f},{-0.322692f,0.00125925f,0.10513f},{-0.322692f,-0.00125938f,0.10513f}, - {-0.3224f,0.00374312f,0.10513f},{-0.322582f,0.00250793f,0.10513f},{-0.321434f,0.0073385f,0.10513f}, - {-0.321825f,0.00616138f,0.10513f},{-0.322147f,0.00496191f,0.10513f},{-0.320453f,0.00961408f,0.10513f}, - {-0.320976f,0.00849036f,0.10513f},{-0.318499f,0.0127873f,0.10513f},{-0.319213f,0.0117655f,0.10513f}, - {-0.319865f,0.0107068f,0.10513f},{-0.316889f,0.0147082f,0.10513f},{-0.317724f,0.0137691f,0.10513f}, - {-0.315997f,0.0155998f,0.10513f},{-0.315058f,0.0164352f,0.10513f},{-0.314076f,0.0172102f,0.10513f}, - {-0.313054f,0.0179242f,0.10513f},{-0.311996f,0.018576f,0.10513f},{-0.310903f,0.0191643f,0.10513f}, - {-0.309779f,0.0196879f,0.10513f},{-0.308627f,0.0201457f,0.10513f},{-0.30745f,0.0205363f,0.10513f}, - {-0.305032f,0.0211114f,0.10513f},{-0.306251f,0.0208586f,0.10513f},{-0.303797f,0.0212935f,0.10513f}, - {-0.302548f,0.0214037f,0.10513f},{-0.317724f,-0.0137693f,0.10513f},{-0.315997f,-0.0156004f,0.10513f}, - {-0.308627f,-0.0201457f,0.10513f},{-0.302548f,-0.0214037f,0.10513f},{-0.317178f,-0.0207081f,0.10513f}, - {-0.32739f,2.25963e-017f,0.10513f},{-0.327334f,-0.00170747f,0.10513f},{-0.325403f,-0.0099892f,0.10513f}, - {-0.326889f,-0.00509254f,0.10513f},{-0.326501f,-0.00675606f,0.10513f},{-0.324698f,-0.0115449f,0.10513f}, - {-0.322991f,-0.0145019f,0.10513f},{-0.321996f,-0.0158902f,0.10513f},{-0.308044f,-0.0252123f,0.10513f}, - {-0.30638f,-0.0256001f,0.10513f},{-0.302995f,-0.0260375f,0.10513f},{-0.314339f,-0.022605f,0.10513f}, - {-0.312833f,-0.0234101f,0.10513f},{-0.311277f,-0.0241149f,0.10513f},{-0.309678f,-0.0247164f,0.10513f}, - {-0.315789f,-0.0217031f,0.10513f},{-0.319745f,-0.0184572f,0.10513f},{-0.318498f,-0.0196247f,0.10513f}, - {-0.304695f,-0.0258794f,0.10513f},{-0.320912f,-0.0172106f,0.10513f},{-0.323893f,-0.0130514f,0.10513f}, - {-0.326005f,-0.00839068f,0.10513f},{-0.327167f,-0.00340738f,0.10513f},{-0.327334f,0.00170697f,0.10513f}, - {-0.327167f,0.0034068f,0.10513f},{-0.326005f,0.00839024f,0.10513f},{-0.326501f,0.00675581f,0.10513f}, - {-0.326889f,0.00509225f,0.10513f},{-0.325404f,0.00998889f,0.10513f},{-0.324699f,0.0115449f,0.10513f}, - {-0.323893f,0.0130512f,0.10513f},{-0.321996f,0.0158901f,0.10513f},{-0.322991f,0.0145016f,0.10513f}, - {-0.320913f,0.0172105f,0.10513f},{-0.318498f,0.0196248f,0.10513f},{-0.31579f,0.0217032f,0.10513f}, - {-0.317178f,0.0207084f,0.10513f},{-0.314339f,0.0226051f,0.10513f},{-0.312833f,0.0234102f,0.10513f}, - {-0.304696f,0.0258786f,0.10513f},{-0.302996f,0.0260403f,0.10513f},{-0.306381f,0.0256003f,0.10513f}, - {-0.308044f,0.0252126f,0.10513f},{-0.309679f,0.0247167f,0.10513f},{-0.319745f,0.0184571f,0.10513f}, - {-0.311277f,0.024115f,0.10513f},{-0.312708f,0.0197792f,0.10252f},{-0.314476f,0.0186469f,0.10252f}, - {-0.31364f,0.0213938f,0.104011f},{-0.319197f,0.0141739f,0.10252f},{-0.317748f,0.0158335f,0.10252f}, - {-0.316165f,0.0173289f,0.10252f},{-0.323734f,0.00421973f,0.10252f},{-0.32323f,0.00633871f,0.10252f}, - {-0.322518f,0.00842303f,0.10252f},{-0.324128f,4.29036e-018f,0.10252f},{-0.324031f,0.00209801f,0.10252f}, - {-0.31364f,-0.0213938f,0.104011f},{-0.312708f,-0.0197792f,0.10252f},{-0.31144f,-0.0204589f,0.10252f}, - {-0.310112f,-0.0210659f,0.10252f},{-0.308729f,-0.0215929f,0.10252f},{-0.3073f,-0.0220336f,0.10252f}, - {-0.305832f,-0.0223824f,0.10252f},{-0.304335f,-0.022635f,0.10252f},{-0.302817f,-0.0227878f,0.10252f}, - {-0.307791f,-0.0238322f,0.104011f},{-0.306203f,-0.0242096f,0.104011f},{-0.312269f,-0.0221291f,0.104011f}, - {-0.304583f,-0.0244827f,0.104011f},{-0.302942f,-0.0246481f,0.104011f},{-0.309337f,-0.0233556f,0.104011f}, - {-0.310832f,-0.0227855f,0.104011f},{-0.320488f,0.0123693f,0.10252f},{-0.3216f,0.0104434f,0.10252f}, - {-0.31738f,0.0187434f,0.104011f},{-0.325992f,6.69898e-018f,0.104011f},{-0.325887f,0.00226809f,0.104011f}, - {-0.325567f,0.00456378f,0.104011f},{-0.325022f,0.00685491f,0.104011f},{-0.324251f,0.00910982f,0.104011f}, - {-0.323259f,0.011295f,0.104011f},{-0.322056f,0.0133782f,0.104011f},{-0.32066f,0.0153304f,0.104011f}, - {-0.319093f,0.0171254f,0.104011f},{-0.315553f,0.0201689f,0.104011f},{-0.275689f,-0.00136552f,0.121909f}, - {-0.275798f,-0.00272732f,0.121909f},{-0.287538f,-0.0216357f,0.121909f},{-0.285747f,-0.0203873f,0.121909f}, - {-0.289427f,-0.0227264f,0.121909f},{-0.291404f,-0.0236533f,0.121909f},{-0.311174f,-0.0236531f,0.121909f}, - {-0.31315f,-0.0227263f,0.121909f},{-0.316831f,-0.0203871f,0.121909f},{-0.315039f,-0.0216356f,0.121909f}, - {-0.326597f,-0.0040808f,0.121909f},{-0.326779f,-0.00272711f,0.121909f},{-0.326888f,-0.00136573f,0.121909f}, - {-0.27598f,-0.00408095f,0.121909f},{-0.313448f,0.000612842f,0.104198f},{-0.31403f,0.00232777f,0.104198f}, - {-0.313762f,0.00178369f,0.104198f},{-0.313567f,0.00120978f,0.104198f},{-0.315234f,0.00370055f,0.104198f}, - {-0.314368f,0.0028342f,0.104198f},{-0.314772f,0.00329584f,0.104198f},{-0.317456f,0.00462066f,0.104198f}, - {-0.316859f,0.00450141f,0.104198f},{-0.316285f,0.00430621f,0.104198f},{-0.318681f,0.00462052f,0.104198f}, - {-0.319278f,0.00450127f,0.104198f},{-0.318068f,0.00466102f,0.104198f},{-0.320396f,0.00403818f,0.104198f}, - {-0.319852f,0.00430621f,0.104198f},{-0.321364f,0.00329584f,0.104198f},{-0.320902f,0.00370041f,0.104198f}, - {-0.321769f,0.00283386f,0.104198f},{-0.322107f,0.00232743f,0.104198f},{-0.322374f,0.00178369f,0.104198f}, - {-0.32257f,0.00120944f,0.104198f},{-0.322689f,0.000612502f,0.104198f},{-0.315741f,0.00403832f,0.104198f}, - {-0.311076f,-0.00884266f,0.110723f},{-0.310739f,-0.00903773f,0.110723f},{-0.311447f,-0.00872205f,0.110723f}, - {-0.310449f,-0.00929879f,0.110723f},{-0.31022f,-0.00961469f,0.110723f},{-0.310062f,-0.00997137f,0.110723f}, - {-0.309981f,-0.0103527f,0.110723f},{-0.309981f,-0.0107427f,0.110723f},{-0.310223f,-0.0114796f,0.110723f}, - {-0.310063f,-0.011124f,0.110723f},{-0.310741f,-0.0120547f,0.110723f},{-0.310452f,-0.0117943f,0.110723f}, - {-0.311448f,-0.0123696f,0.110723f},{-0.311078f,-0.0122492f,0.110723f},{-0.288006f,-0.0108202f,0.110723f}, - {-0.287668f,-0.0110152f,0.110723f},{-0.288376f,-0.0106996f,0.110723f},{-0.287378f,-0.0112763f,0.110723f}, - {-0.287149f,-0.0115922f,0.110723f},{-0.286991f,-0.0119489f,0.110723f},{-0.28691f,-0.0123302f,0.110723f}, - {-0.286911f,-0.0127202f,0.110723f},{-0.287152f,-0.0134571f,0.110723f},{-0.286993f,-0.0131015f,0.110723f}, - {-0.28767f,-0.0140322f,0.110723f},{-0.287381f,-0.0137718f,0.110723f},{-0.288378f,-0.0143471f,0.110723f}, - {-0.288007f,-0.0142268f,0.110723f},{-0.289983f,0.0122507f,0.110723f},{-0.289645f,0.0120557f,0.110723f}, - {-0.290354f,0.0123713f,0.110723f},{-0.289355f,0.0117946f,0.110723f},{-0.289126f,0.0114787f,0.110723f}, - {-0.288968f,0.011122f,0.110723f},{-0.288888f,0.0107407f,0.110723f},{-0.288888f,0.0103507f,0.110723f}, - {-0.289129f,0.00961383f,0.110723f},{-0.28897f,0.00996936f,0.110723f},{-0.289648f,0.00903866f,0.110723f}, - {-0.289358f,0.00929907f,0.110723f},{-0.290355f,0.00872375f,0.110723f},{-0.289985f,0.00884413f,0.110723f}, - {-0.313054f,0.0142282f,0.110723f},{-0.312716f,0.0140332f,0.110723f},{-0.313425f,0.0143488f,0.110723f}, - {-0.312426f,0.0137721f,0.110723f},{-0.312197f,0.0134562f,0.110723f},{-0.312039f,0.0130995f,0.110723f}, - {-0.311959f,0.0127182f,0.110723f},{-0.311959f,0.0123282f,0.110723f},{-0.3122f,0.0115913f,0.110723f}, - {-0.312041f,0.0119469f,0.110723f},{-0.312719f,0.0110162f,0.110723f},{-0.312429f,0.0112766f,0.110723f}, - {-0.313426f,0.0107013f,0.110723f},{-0.313056f,0.0108216f,0.110723f},{-0.301901f,-0.0121592f,0.104198f}, - {-0.303616f,-0.0127415f,0.104198f},{-0.302498f,-0.0122784f,0.104198f},{-0.303072f,-0.0124735f,0.104198f}, - {-0.304989f,-0.0139458f,0.104198f},{-0.305327f,-0.0144523f,0.104198f},{-0.304584f,-0.0134838f,0.104198f}, - {-0.305909f,-0.0161672f,0.104198f},{-0.305595f,-0.014996f,0.104198f},{-0.30579f,-0.0155702f,0.104198f}, - {-0.30579f,-0.0179895f,0.104198f},{-0.30595f,-0.0167797f,0.104198f},{-0.305909f,-0.0173925f,0.104198f}, - {-0.305327f,-0.0191075f,0.104198f},{-0.304989f,-0.0196139f,0.104198f},{-0.305595f,-0.0185634f,0.104198f}, - {-0.304584f,-0.0200755f,0.104198f},{-0.304122f,-0.0204802f,0.104198f},{-0.303616f,-0.020818f,0.104198f}, - {-0.303072f,-0.0210859f,0.104198f},{-0.302498f,-0.0212811f,0.104198f},{-0.301901f,-0.0214003f,0.104198f}, - {-0.304123f,-0.0130793f,0.104198f},{-0.289129f,-0.000612842f,0.104198f},{-0.288547f,-0.00232777f,0.104198f}, - {-0.288815f,-0.00178369f,0.104198f},{-0.28901f,-0.00120978f,0.104198f},{-0.287343f,-0.00370055f,0.104198f}, - {-0.288209f,-0.0028342f,0.104198f},{-0.287805f,-0.00329584f,0.104198f},{-0.285121f,-0.00462066f,0.104198f}, - {-0.285718f,-0.00450141f,0.104198f},{-0.286293f,-0.00430621f,0.104198f},{-0.283299f,-0.00450127f,0.104198f}, - {-0.283896f,-0.00462052f,0.104198f},{-0.284509f,-0.00466102f,0.104198f},{-0.282181f,-0.00403818f,0.104198f}, - {-0.282725f,-0.00430621f,0.104198f},{-0.281213f,-0.00329584f,0.104198f},{-0.281675f,-0.00370041f,0.104198f}, - {-0.280808f,-0.00283386f,0.104198f},{-0.280471f,-0.00232743f,0.104198f},{-0.280203f,-0.00178369f,0.104198f}, - {-0.280007f,-0.00120944f,0.104198f},{-0.279888f,-0.000612502f,0.104198f},{-0.286836f,-0.00403832f,0.104198f}, - {-0.300676f,0.0121592f,0.104198f},{-0.298961f,0.0127415f,0.104198f},{-0.299505f,0.0124735f,0.104198f}, - {-0.300079f,0.0122784f,0.104198f},{-0.297588f,0.0139458f,0.104198f},{-0.298454f,0.0130793f,0.104198f}, - {-0.297993f,0.0134838f,0.104198f},{-0.296668f,0.0161672f,0.104198f},{-0.296787f,0.0155702f,0.104198f}, - {-0.296982f,0.014996f,0.104198f},{-0.296668f,0.0173925f,0.104198f},{-0.296787f,0.0179895f,0.104198f}, - {-0.296628f,0.0167797f,0.104198f},{-0.29725f,0.0191075f,0.104198f},{-0.296982f,0.0185634f,0.104198f}, - {-0.297993f,0.0200755f,0.104198f},{-0.297588f,0.0196139f,0.104198f},{-0.298455f,0.0204802f,0.104198f}, - {-0.298961f,0.020818f,0.104198f},{-0.299505f,0.0210859f,0.104198f},{-0.300079f,0.0212811f,0.104198f}, - {-0.300676f,0.0214003f,0.104198f},{-0.29725f,0.0144523f,0.104198f},{-0.289869f,-0.0197792f,0.104198f}, - {-0.291807f,-0.0207778f,0.104198f},{-0.298032f,-0.0226057f,0.104198f},{-0.293823f,-0.0215843f,0.104198f}, - {-0.304545f,-0.0226056f,0.104198f},{-0.300198f,-0.022813f,0.104198f},{-0.30238f,-0.0228129f,0.104198f}, - {-0.308755f,-0.0215842f,0.104198f},{-0.306675f,-0.0221948f,0.104198f},{-0.310771f,-0.0207777f,0.104198f}, - {-0.312708f,-0.0197792f,0.104198f},{-0.295903f,-0.0221949f,0.104198f},{-0.288937f,-0.0213938f,0.104198f}, - {-0.31364f,-0.0213938f,0.104198f},{-0.311544f,-0.022474f,0.104198f},{-0.304811f,-0.0244511f,0.104198f}, - {-0.309364f,-0.0233463f,0.104198f},{-0.297766f,-0.024451f,0.104198f},{-0.302468f,-0.0246752f,0.104198f}, - {-0.300108f,-0.0246752f,0.104198f},{-0.293213f,-0.0233462f,0.104198f},{-0.291032f,-0.0224738f,0.104198f}, - {-0.295463f,-0.0240066f,0.104198f},{-0.307114f,-0.0240067f,0.104198f},{-0.288035f,0.0186002f,0.104198f}, - {-0.289869f,0.0197792f,0.104198f},{-0.28334f,0.0141228f,0.104198f},{-0.28476f,0.0157616f,0.104198f}, - {-0.286329f,0.0172577f,0.104198f},{-0.280986f,0.0104612f,0.104198f},{-0.280083f,0.00848256f,0.104198f}, - {-0.282077f,0.0123508f,0.104198f},{-0.278863f,0.00432634f,0.104198f},{-0.279374f,0.00643279f,0.104198f}, - {-0.278553f,0.00217707f,0.104198f},{-0.27845f,-1.74881e-017f,0.104198f},{-0.288937f,0.0213938f,0.104198f}, - {-0.276585f,-1.89158e-017f,0.104198f},{-0.276698f,0.00235542f,0.104198f},{-0.278352f,0.00917539f,0.104198f}, - {-0.277585f,0.0069585f,0.104198f},{-0.277032f,0.00467972f,0.104198f},{-0.28051f,0.01336f,0.104198f}, - {-0.281875f,0.015276f,0.104198f},{-0.279329f,0.0113162f,0.104198f},{-0.283411f,0.0170487f,0.104198f}, - {-0.285108f,0.0186667f,0.104198f},{-0.286954f,0.020119f,0.104198f},{-0.324023f,0.00217765f,0.104198f}, - {-0.324128f,0.0f,0.104198f},{-0.322494f,0.00848291f,0.104198f},{-0.323203f,0.00643333f,0.104198f}, - {-0.323714f,0.00432654f,0.104198f},{-0.320499f,0.0123517f,0.104198f},{-0.319237f,0.0141231f,0.104198f}, - {-0.32159f,0.0104622f,0.104198f},{-0.316248f,0.0172579f,0.104198f},{-0.317817f,0.015762f,0.104198f}, - {-0.314541f,0.0186006f,0.104198f},{-0.312708f,0.0197792f,0.104198f},{-0.325992f,8.08559e-018f,0.104198f}, - {-0.31364f,0.0213938f,0.104198f},{-0.315624f,0.0201186f,0.104198f},{-0.320703f,0.0152757f,0.104198f}, - {-0.319166f,0.0170482f,0.104198f},{-0.317469f,0.0186665f,0.104198f},{-0.323248f,0.0113151f,0.104198f}, - {-0.324225f,0.00917501f,0.104198f},{-0.322068f,0.013359f,0.104198f},{-0.324992f,0.00695792f,0.104198f}, - {-0.325545f,0.00467951f,0.104198f},{-0.32588f,0.00235479f,0.104198f},{-0.304042f,-0.000488516f,0.0986044f}, - {-0.303431f,-0.00179767f,0.0986044f},{-0.303711f,-0.00139727f,0.0986044f},{-0.303916f,-0.000957717f,0.0986044f}, - {-0.302245f,-0.00262801f,0.0986044f},{-0.301776f,-0.00275376f,0.0986044f},{-0.303084f,-0.00214411f,0.0986044f}, - {-0.302684f,-0.00242333f,0.0986044f},{-0.300331f,-0.00262748f,0.0986044f},{-0.3008f,-0.00275356f,0.0986044f}, - {-0.301289f,-0.00279661f,0.0986044f},{-0.299491f,-0.00214219f,0.0986044f},{-0.299891f,-0.00242266f,0.0986044f}, - {-0.299144f,-0.00179504f,0.0986044f},{-0.298865f,-0.00139564f,0.0986044f},{-0.298661f,-0.000956449f,0.0986044f}, - {-0.298535f,-0.000488516f,0.0986044f},{-0.283879f,-0.00122594f,0.121909f},{-0.284001f,-0.00061944f,0.121909f}, - {-0.284043f,-1.93104e-018f,0.121909f},{-0.283676f,-0.0018111f,0.121909f},{-0.283048f,-0.00287862f,0.121909f}, - {-0.283397f,-0.00236645f,0.121909f},{-0.282634f,-0.00333866f,0.121909f},{-0.282162f,-0.00374077f,0.121909f}, - {-0.28164f,-0.00407752f,0.121909f},{-0.281079f,-0.00434093f,0.121909f},{-0.280489f,-0.00452747f,0.121909f}, - {-0.279878f,-0.00463457f,0.121909f},{-0.284001f,0.000619763f,0.121909f},{-0.283879f,0.00122605f,0.121909f}, - {-0.283676f,0.00181151f,0.121909f},{-0.283397f,0.00236685f,0.121909f},{-0.283047f,0.00287881f,0.121909f}, - {-0.282634f,0.00333885f,0.121909f},{-0.282162f,0.00374104f,0.121909f},{-0.281639f,0.00407771f,0.121909f}, - {-0.281079f,0.00434097f,0.121909f},{-0.280489f,0.00452758f,0.121909f},{-0.279878f,0.00463457f,0.121909f}, - {-0.293673f,0.00708542f,0.121909f},{-0.293069f,0.00862355f,0.121909f},{-0.293346f,0.0081433f,0.121909f}, - {-0.293548f,0.00762768f,0.121909f},{-0.291847f,0.00975654f,0.121909f},{-0.292719f,0.00906182f,0.121909f}, - {-0.292307f,0.00944325f,0.121909f},{-0.289704f,0.0102431f,0.121909f},{-0.290265f,0.0102438f,0.121909f}, - {-0.290819f,0.0101602f,0.121909f},{-0.288623f,0.0099962f,0.121909f},{-0.289153f,0.0101597f,0.121909f}, - {-0.287661f,0.00944071f,0.121909f},{-0.287251f,0.00905963f,0.121909f},{-0.288123f,0.00975564f,0.121909f}, - {-0.286903f,0.00862291f,0.121909f},{-0.286626f,0.0081413f,0.121909f},{-0.286423f,0.00762524f,0.121909f}, - {-0.2863f,0.00708542f,0.121909f},{-0.291348f,0.00999655f,0.121909f},{-0.29379f,0.000388892f,0.121909f}, - {-0.293213f,0.0013863f,0.121909f},{-0.29367f,0.000758756f,0.121909f},{-0.292161f,0.00185425f,0.121909f}, - {-0.292898f,0.00161492f,0.121909f},{-0.292542f,0.0017734f,0.121909f},{-0.291389f,0.00177278f,0.121909f}, - {-0.291034f,0.0016145f,0.121909f},{-0.291771f,0.00185398f,0.121909f},{-0.290718f,0.00138471f,0.121909f}, - {-0.290458f,0.00109509f,0.121909f},{-0.290263f,0.000757801f,0.121909f},{-0.290143f,0.000387896f,0.121909f}, - {-0.293474f,0.00109643f,0.121909f},{-0.294965f,0.0184341f,0.121909f},{-0.294991f,0.019053f,0.121909f}, - {-0.294936f,0.0196708f,0.121909f},{-0.294853f,0.0178247f,0.121909f},{-0.294661f,0.0172353f,0.121909f}, - {-0.294392f,0.0166765f,0.121909f},{-0.294051f,0.0161585f,0.121909f},{-0.292666f,0.0149353f,0.121909f}, - {-0.292109f,0.0146616f,0.121909f},{-0.293645f,0.0156903f,0.121909f},{-0.293181f,0.0152802f,0.121909f}, - {-0.290913f,0.0143468f,0.121909f},{-0.290294f,0.0143112f,0.121909f},{-0.286967f,0.0157495f,0.121909f}, - {-0.287426f,0.015333f,0.121909f},{-0.289069f,0.0144863f,0.121909f},{-0.288486f,0.0146944f,0.121909f}, - {-0.287935f,0.0149788f,0.121909f},{-0.286569f,0.0162251f,0.121909f},{-0.289676f,0.014358f,0.121909f}, - {-0.291521f,0.0144643f,0.121909f},{-0.294812f,0.0202771f,0.121909f},{-0.294597f,0.0208597f,0.121909f}, - {-0.303617f,0.0101384f,0.121909f},{-0.304647f,0.0114304f,0.121909f},{-0.304369f,0.0109503f,0.121909f}, - {-0.304024f,0.0105172f,0.121909f},{-0.305017f,0.0130549f,0.121909f},{-0.304852f,0.011952f,0.121909f}, - {-0.304976f,0.0124996f,0.121909f},{-0.304367f,0.0151544f,0.121909f},{-0.304648f,0.0146689f,0.121909f}, - {-0.304853f,0.0141474f,0.121909f},{-0.303613f,0.0159666f,0.121909f},{-0.304019f,0.01559f,0.121909f}, - {-0.302651f,0.0165217f,0.121909f},{-0.302116f,0.0166864f,0.121909f},{-0.303154f,0.0162794f,0.121909f}, - {-0.301564f,0.0167695f,0.121909f},{-0.301008f,0.016769f,0.121909f},{-0.300459f,0.0166865f,0.121909f}, - {-0.29993f,0.0165233f,0.121909f},{-0.304976f,0.0136068f,0.121909f},{-0.297876f,0.00668844f,0.121909f}, - {-0.298451f,0.00768651f,0.121909f},{-0.298136f,0.00697788f,0.121909f},{-0.29833f,0.00883213f,0.121909f}, - {-0.298492f,0.00807381f,0.121909f},{-0.298451f,0.0084617f,0.121909f},{-0.297874f,0.00945932f,0.121909f}, - {-0.297559f,0.00968801f,0.121909f},{-0.298135f,0.00916954f,0.121909f},{-0.297203f,0.00984652f,0.121909f}, - {-0.296822f,0.00992735f,0.121909f},{-0.296432f,0.00992722f,0.121909f},{-0.296051f,0.00984624f,0.121909f}, - {-0.298331f,0.00731557f,0.121909f},{-0.31464f,0.0149805f,0.121909f},{-0.315148f,0.0153371f,0.121909f}, - {-0.308931f,0.0156909f,0.121909f},{-0.309396f,0.0152805f,0.121909f},{-0.308525f,0.0161593f,0.121909f}, - {-0.309911f,0.0149353f,0.121909f},{-0.308185f,0.0166773f,0.121909f},{-0.307917f,0.0172358f,0.121909f}, - {-0.307724f,0.0178252f,0.121909f},{-0.310468f,0.0146618f,0.121909f},{-0.311055f,0.0144645f,0.121909f}, - {-0.307613f,0.0184349f,0.121909f},{-0.311664f,0.0143468f,0.121909f},{-0.307584f,0.0190544f,0.121909f}, - {-0.307767f,0.0202777f,0.121909f},{-0.307636f,0.0196718f,0.121909f},{-0.312283f,0.0143109f,0.121909f}, - {-0.30798f,0.0208597f,0.121909f},{-0.312901f,0.0143575f,0.121909f},{-0.314091f,0.0146931f,0.121909f}, - {-0.313507f,0.0144856f,0.121909f},{-0.315611f,0.0157476f,0.121909f},{-0.316008f,0.0162251f,0.121909f}, - {-0.311233f,0.00305297f,0.121909f},{-0.312867f,0.00280688f,0.121909f},{-0.312312f,0.00280698f,0.121909f}, - {-0.311764f,0.00288948f,0.121909f},{-0.314459f,0.00329833f,0.121909f},{-0.313421f,0.00289017f,0.121909f}, - {-0.313957f,0.00305631f,0.121909f},{-0.315952f,0.00491125f,0.121909f},{-0.315672f,0.00442515f,0.121909f}, - {-0.315323f,0.00398713f,0.121909f},{-0.316278f,0.00597044f,0.121909f},{-0.316155f,0.00543021f,0.121909f}, - {-0.316278f,0.00708102f,0.121909f},{-0.316153f,0.00762679f,0.121909f},{-0.31632f,0.00652376f,0.121909f}, - {-0.315949f,0.0081466f,0.121909f},{-0.315671f,0.00862774f,0.121909f},{-0.315325f,0.00906124f,0.121909f}, - {-0.314919f,0.00943791f,0.121909f},{-0.314916f,0.00361021f,0.121909f},{-0.305375f,0.0062997f,0.121909f}, - {-0.306527f,0.00630037f,0.121909f},{-0.305755f,0.00621894f,0.121909f},{-0.307458f,0.0069779f,0.121909f}, - {-0.306882f,0.00645888f,0.121909f},{-0.307198f,0.0066883f,0.121909f},{-0.307773f,0.00768661f,0.121909f}, - {-0.307814f,0.00807365f,0.121909f},{-0.307653f,0.00731544f,0.121909f},{-0.307773f,0.00846171f,0.121909f}, - {-0.307652f,0.00883217f,0.121909f},{-0.307458f,0.00916947f,0.121909f},{-0.307197f,0.00945876f,0.121909f}, - {-0.306145f,0.00621907f,0.121909f},{-0.319179f,-0.0023656f,0.121909f},{-0.318901f,-0.00181168f,0.121909f}, - {-0.319529f,-0.00287783f,0.121909f},{-0.319943f,-0.00333905f,0.121909f},{-0.320415f,-0.00374099f,0.121909f}, - {-0.318698f,-0.00122583f,0.121909f},{-0.320938f,-0.00407246f,0.121909f},{-0.318576f,-0.000618365f,0.121909f}, - {-0.318534f,4.86429e-018f,0.121909f},{-0.318576f,0.000618856f,0.121909f},{-0.318699f,0.00122657f,0.121909f}, - {-0.318901f,0.00181243f,0.121909f},{-0.31918f,0.00236609f,0.121909f},{-0.319529f,0.00287783f,0.121909f}, - {-0.319944f,0.00333893f,0.121909f},{-0.320416f,0.00374048f,0.121909f},{-0.320938f,0.00407552f,0.121909f}, - {-0.321499f,0.00433883f,0.121909f},{-0.322089f,0.0045282f,0.121909f},{-0.322699f,0.00463457f,0.121909f}, - {-0.322087f,-0.00452954f,0.121909f},{-0.3215f,-0.00433369f,0.121909f},{-0.322699f,-0.00463457f,0.121909f}, - {-0.308905f,-0.00708542f,0.121909f},{-0.309508f,-0.00862355f,0.121909f},{-0.309231f,-0.0081433f,0.121909f}, - {-0.309029f,-0.00762768f,0.121909f},{-0.31073f,-0.00975654f,0.121909f},{-0.309858f,-0.00906182f,0.121909f}, - {-0.31027f,-0.00944325f,0.121909f},{-0.312873f,-0.0102431f,0.121909f},{-0.312313f,-0.0102438f,0.121909f}, - {-0.311758f,-0.0101602f,0.121909f},{-0.313954f,-0.0099962f,0.121909f},{-0.313425f,-0.0101597f,0.121909f}, - {-0.314916f,-0.00944071f,0.121909f},{-0.315326f,-0.00905963f,0.121909f},{-0.314454f,-0.00975564f,0.121909f}, - {-0.315674f,-0.00862291f,0.121909f},{-0.315951f,-0.0081413f,0.121909f},{-0.316154f,-0.00762524f,0.121909f}, - {-0.316277f,-0.00708542f,0.121909f},{-0.311229f,-0.00999655f,0.121909f},{-0.308787f,-0.000388892f,0.121909f}, - {-0.309364f,-0.0013863f,0.121909f},{-0.308908f,-0.000758756f,0.121909f},{-0.310416f,-0.00185425f,0.121909f}, - {-0.309679f,-0.00161492f,0.121909f},{-0.310035f,-0.0017734f,0.121909f},{-0.311188f,-0.00177278f,0.121909f}, - {-0.311543f,-0.0016145f,0.121909f},{-0.310806f,-0.00185398f,0.121909f},{-0.311859f,-0.00138471f,0.121909f}, - {-0.312119f,-0.00109509f,0.121909f},{-0.312314f,-0.000757801f,0.121909f},{-0.312434f,-0.000387896f,0.121909f}, - {-0.309103f,-0.00109643f,0.121909f},{-0.307586f,-0.019053f,0.121909f},{-0.307612f,-0.0184341f,0.121909f}, - {-0.316008f,-0.0162251f,0.121909f},{-0.307724f,-0.0178247f,0.121909f},{-0.307641f,-0.0196708f,0.121909f}, - {-0.307916f,-0.0172353f,0.121909f},{-0.308185f,-0.0166765f,0.121909f},{-0.308932f,-0.0156903f,0.121909f}, - {-0.309397f,-0.0152802f,0.121909f},{-0.308526f,-0.0161585f,0.121909f},{-0.311664f,-0.0143468f,0.121909f}, - {-0.312283f,-0.0143112f,0.121909f},{-0.309911f,-0.0149353f,0.121909f},{-0.310468f,-0.0146616f,0.121909f}, - {-0.31561f,-0.0157495f,0.121909f},{-0.315151f,-0.015333f,0.121909f},{-0.313508f,-0.0144863f,0.121909f}, - {-0.314092f,-0.0146944f,0.121909f},{-0.314643f,-0.0149788f,0.121909f},{-0.312901f,-0.014358f,0.121909f}, - {-0.311056f,-0.0144643f,0.121909f},{-0.307765f,-0.0202771f,0.121909f},{-0.30798f,-0.0208597f,0.121909f}, - {-0.29896f,-0.0101384f,0.121909f},{-0.29793f,-0.0114304f,0.121909f},{-0.298208f,-0.0109503f,0.121909f}, - {-0.298553f,-0.0105172f,0.121909f},{-0.29756f,-0.0130549f,0.121909f},{-0.297725f,-0.011952f,0.121909f}, - {-0.297601f,-0.0124996f,0.121909f},{-0.29821f,-0.0151544f,0.121909f},{-0.297929f,-0.0146689f,0.121909f}, - {-0.297725f,-0.0141474f,0.121909f},{-0.298964f,-0.0159666f,0.121909f},{-0.298558f,-0.01559f,0.121909f}, - {-0.299926f,-0.0165217f,0.121909f},{-0.300461f,-0.0166864f,0.121909f},{-0.299423f,-0.0162794f,0.121909f}, - {-0.301014f,-0.0167695f,0.121909f},{-0.301569f,-0.016769f,0.121909f},{-0.302118f,-0.0166865f,0.121909f}, - {-0.302647f,-0.0165233f,0.121909f},{-0.297601f,-0.0136068f,0.121909f},{-0.304701f,-0.00668858f,0.121909f}, - {-0.304126f,-0.00768692f,0.121909f},{-0.304441f,-0.00697763f,0.121909f},{-0.304247f,-0.00883211f,0.121909f}, - {-0.304085f,-0.00807384f,0.121909f},{-0.304126f,-0.00846133f,0.121909f},{-0.304703f,-0.00945929f,0.121909f}, - {-0.305018f,-0.00968796f,0.121909f},{-0.304442f,-0.00916975f,0.121909f},{-0.305375f,-0.00984651f,0.121909f}, - {-0.305756f,-0.00992734f,0.121909f},{-0.306145f,-0.00992724f,0.121909f},{-0.306525f,-0.00984636f,0.121909f}, - {-0.304246f,-0.00731545f,0.121909f},{-0.293646f,-0.0156909f,0.121909f},{-0.294052f,-0.0161593f,0.121909f}, - {-0.293181f,-0.0152805f,0.121909f},{-0.292666f,-0.0149353f,0.121909f},{-0.294392f,-0.0166773f,0.121909f}, - {-0.29466f,-0.0172358f,0.121909f},{-0.294853f,-0.0178252f,0.121909f},{-0.29211f,-0.0146618f,0.121909f}, - {-0.294964f,-0.0184349f,0.121909f},{-0.294994f,-0.0190544f,0.121909f},{-0.291522f,-0.0144645f,0.121909f}, - {-0.294941f,-0.0196718f,0.121909f},{-0.290913f,-0.0143468f,0.121909f},{-0.290295f,-0.0143109f,0.121909f}, - {-0.29481f,-0.0202777f,0.121909f},{-0.294597f,-0.0208597f,0.121909f},{-0.289676f,-0.0143575f,0.121909f}, - {-0.288486f,-0.0146931f,0.121909f},{-0.28907f,-0.0144856f,0.121909f},{-0.287937f,-0.0149805f,0.121909f}, - {-0.28743f,-0.0153371f,0.121909f},{-0.286966f,-0.0157476f,0.121909f},{-0.286569f,-0.0162251f,0.121909f}, - {-0.291344f,-0.00305297f,0.121909f},{-0.28971f,-0.00280688f,0.121909f},{-0.290265f,-0.00280698f,0.121909f}, - {-0.290813f,-0.00288948f,0.121909f},{-0.288118f,-0.00329833f,0.121909f},{-0.289156f,-0.00289017f,0.121909f}, - {-0.28862f,-0.00305631f,0.121909f},{-0.286625f,-0.00491125f,0.121909f},{-0.286905f,-0.00442515f,0.121909f}, - {-0.287255f,-0.00398713f,0.121909f},{-0.286299f,-0.00597044f,0.121909f},{-0.286422f,-0.00543021f,0.121909f}, - {-0.286299f,-0.00708102f,0.121909f},{-0.286424f,-0.00762679f,0.121909f},{-0.286257f,-0.00652376f,0.121909f}, - {-0.286628f,-0.0081466f,0.121909f},{-0.286907f,-0.00862774f,0.121909f},{-0.287252f,-0.00906124f,0.121909f}, - {-0.287658f,-0.00943791f,0.121909f},{-0.287661f,-0.00361021f,0.121909f},{-0.297203f,-0.0062997f,0.121909f}, - {-0.29605f,-0.00630037f,0.121909f},{-0.296822f,-0.00621894f,0.121909f},{-0.295119f,-0.0069779f,0.121909f}, - {-0.295695f,-0.00645888f,0.121909f},{-0.295379f,-0.0066883f,0.121909f},{-0.294804f,-0.00768661f,0.121909f}, - {-0.294763f,-0.00807365f,0.121909f},{-0.294924f,-0.00731544f,0.121909f},{-0.294804f,-0.00846171f,0.121909f}, - {-0.294925f,-0.00883217f,0.121909f},{-0.29512f,-0.00916947f,0.121909f},{-0.29538f,-0.00945876f,0.121909f}, - {-0.296432f,-0.00621907f,0.121909f},{-0.296668f,-0.000612842f,0.127503f},{-0.29725f,-0.00232777f,0.127503f}, - {-0.296787f,-0.00120978f,0.127503f},{-0.298455f,-0.00370055f,0.127503f},{-0.298961f,-0.00403832f,0.127503f}, - {-0.297993f,-0.00329584f,0.127503f},{-0.300676f,-0.00462066f,0.127503f},{-0.299505f,-0.00430621f,0.127503f}, - {-0.300079f,-0.00450141f,0.127503f},{-0.302498f,-0.00450127f,0.127503f},{-0.301289f,-0.00466102f,0.127503f}, - {-0.301901f,-0.00462052f,0.127503f},{-0.303616f,-0.00403818f,0.127503f},{-0.304123f,-0.00370041f,0.127503f}, - {-0.303072f,-0.00430621f,0.127503f},{-0.304584f,-0.00329584f,0.127503f},{-0.304989f,-0.00283386f,0.127503f}, - {-0.305327f,-0.00232743f,0.127503f},{-0.305595f,-0.00178369f,0.127503f},{-0.30579f,-0.00120944f,0.127503f}, - {-0.305909f,-0.000612502f,0.127503f},{-0.297588f,-0.0028342f,0.127503f},{-0.296982f,-0.00178369f,0.127503f}, - {-0.302686f,-0.00241971f,0.127503f},{-0.304042f,-0.000484912f,0.127503f},{-0.30371f,-0.00139723f,0.127503f}, - {-0.30343f,-0.00179629f,0.127503f},{-0.303916f,-0.000955369f,0.127503f},{-0.303085f,-0.00214016f,0.127503f}, - {-0.302245f,-0.00262702f,0.127503f},{-0.301774f,-0.00275405f,0.127503f},{-0.301289f,-0.00279661f,0.127503f}, - {-0.300333f,-0.0026284f,0.127503f},{-0.300803f,-0.00275426f,0.127503f},{-0.299894f,-0.00241949f,0.127503f}, - {-0.298533f,-0.000485989f,0.127503f},{-0.299499f,-0.00213198f,0.127503f},{-0.29866f,-0.000957231f,0.127503f}, - {-0.298866f,-0.00139896f,0.127503f},{-0.299145f,-0.0018009f,0.127503f},{-0.304044f,-0.000485989f,0.13496f}, - {-0.303917f,-0.000957231f,0.13496f},{-0.303711f,-0.00139896f,0.13496f},{-0.303432f,-0.0018009f,0.13496f}, - {-0.303078f,-0.00213198f,0.13496f},{-0.302684f,-0.00241949f,0.13496f},{-0.302244f,-0.0026284f,0.13496f}, - {-0.301774f,-0.00275426f,0.13496f},{-0.301289f,-0.00279661f,0.13496f},{-0.300803f,-0.00275405f,0.13496f}, - {-0.299492f,-0.00214016f,0.13496f},{-0.298661f,-0.000955369f,0.13496f},{-0.300332f,-0.00262702f,0.13496f}, - {-0.299891f,-0.00241971f,0.13496f},{-0.299147f,-0.00179629f,0.13496f},{-0.298867f,-0.00139723f,0.13496f}, - {-0.298535f,-0.000484912f,0.13496f},{-2.55212e-017f,0.304085f,0.127503f},{-2.89175e-017f,0.304085f,0.13496f}, - {0.000488516f,0.304042f,0.13496f},{0.000957717f,0.303916f,0.13496f},{0.00048723f,0.304042f,0.127503f}, - {0.000956449f,0.303917f,0.127503f},{0.00139564f,0.303712f,0.127503f},{0.00179504f,0.303433f,0.127503f}, - {0.00139727f,0.303711f,0.13496f},{0.00179767f,0.303431f,0.13496f},{0.00214219f,0.303086f,0.127503f}, - {0.00214411f,0.303084f,0.13496f},{0.00242266f,0.302686f,0.127503f},{0.00262748f,0.302246f,0.127503f}, - {0.00242333f,0.302684f,0.13496f},{0.00262801f,0.302245f,0.13496f},{0.00275356f,0.301777f,0.127503f}, - {0.00275356f,0.301777f,0.13496f},{0.00279661f,0.301289f,0.13496f},{0.00279661f,0.301289f,0.127503f}, - {-0.000488516f,0.304042f,0.127503f},{-0.000957717f,0.303916f,0.127503f},{-0.00048723f,0.304042f,0.13496f}, - {-0.00139564f,0.303712f,0.13496f},{-0.000956449f,0.303917f,0.13496f},{-0.00139727f,0.303711f,0.127503f}, - {-0.00179504f,0.303433f,0.13496f},{-0.00179767f,0.303431f,0.127503f},{-0.00214219f,0.303086f,0.13496f}, - {-0.00242266f,0.302686f,0.13496f},{-0.00214411f,0.303084f,0.127503f},{-0.00242333f,0.302684f,0.127503f}, - {-0.00262748f,0.302246f,0.13496f},{-0.00262801f,0.302245f,0.127503f},{-0.00275356f,0.301777f,0.13496f}, - {-0.00275356f,0.301777f,0.127503f},{-0.00279661f,0.301289f,0.127503f},{-0.00279661f,0.301289f,0.13496f}, - {-3.14626e-017f,0.30595f,0.125638f},{-2.85648e-017f,0.30595f,0.127503f},{0.000612842f,0.305909f,0.127503f}, - {0.00120978f,0.30579f,0.127503f},{0.000612502f,0.305909f,0.125638f},{0.00178369f,0.305595f,0.127503f}, - {0.00120944f,0.30579f,0.125638f},{0.00178369f,0.305595f,0.125638f},{0.00232777f,0.305327f,0.127503f}, - {0.0028342f,0.304989f,0.127503f},{0.00232743f,0.305327f,0.125638f},{0.00329584f,0.304584f,0.127503f}, - {0.00283386f,0.304989f,0.125638f},{0.00329584f,0.304584f,0.125638f},{0.00370055f,0.304122f,0.127503f}, - {0.00403832f,0.303616f,0.127503f},{0.00370041f,0.304123f,0.125638f},{0.00430621f,0.303072f,0.127503f}, - {0.00403818f,0.303616f,0.125638f},{0.00450127f,0.302498f,0.125638f},{0.00430621f,0.303072f,0.125638f}, - {0.00450141f,0.302498f,0.127503f},{0.00462052f,0.301901f,0.125638f},{0.00462066f,0.301901f,0.127503f}, - {0.00466102f,0.301289f,0.125638f},{0.00466102f,0.301289f,0.127503f},{-0.000612842f,0.305909f,0.125638f}, - {-0.00120978f,0.30579f,0.125638f},{-0.000612502f,0.305909f,0.127503f},{-0.00120944f,0.30579f,0.127503f}, - {-0.00178369f,0.305595f,0.125638f},{-0.00232777f,0.305327f,0.125638f},{-0.00178369f,0.305595f,0.127503f}, - {-0.0028342f,0.304989f,0.125638f},{-0.00232743f,0.305327f,0.127503f},{-0.00283386f,0.304989f,0.127503f}, - {-0.00329584f,0.304584f,0.125638f},{-0.00370055f,0.304122f,0.125638f},{-0.00329584f,0.304584f,0.127503f}, - {-0.00403832f,0.303616f,0.125638f},{-0.00370041f,0.304123f,0.127503f},{-0.00403818f,0.303616f,0.127503f}, - {-0.00430621f,0.303072f,0.125638f},{-0.00450127f,0.302498f,0.127503f},{-0.00430621f,0.303072f,0.127503f}, - {-0.00450141f,0.302498f,0.125638f},{-0.00462052f,0.301901f,0.127503f},{-0.00466102f,0.301289f,0.127503f}, - {-0.00462066f,0.301901f,0.125638f},{-0.00466102f,0.301289f,0.125638f},{0.00295812f,0.292456f,0.125638f}, - {0.00315337f,0.292119f,0.125638f},{0.00315227f,0.29212f,0.121909f},{0.00295749f,0.292458f,0.121909f}, - {0.0028374f,0.292827f,0.125638f},{0.00283721f,0.292829f,0.121909f},{0.00279657f,0.293216f,0.121909f}, - {0.00283728f,0.293602f,0.125638f},{0.00279668f,0.293215f,0.125638f},{0.0028377f,0.293604f,0.121909f}, - {0.00295753f,0.293973f,0.125638f},{0.00295825f,0.293975f,0.121909f},{0.0031524f,0.294311f,0.125638f}, - {0.00315303f,0.294312f,0.121909f},{0.0034126f,0.2946f,0.125638f},{0.0034133f,0.294601f,0.121909f}, - {0.00372882f,0.29483f,0.121909f},{0.00372882f,0.29483f,0.125638f},{0.00341302f,0.29183f,0.121909f}, - {0.00372824f,0.291601f,0.121909f},{0.0034143f,0.291829f,0.125638f},{0.00372908f,0.291601f,0.125638f}, - {0.00408362f,0.291443f,0.121909f},{0.00408596f,0.291442f,0.125638f},{0.00446544f,0.291361f,0.121909f}, - {0.00485544f,0.291361f,0.121909f},{0.00446705f,0.291361f,0.125638f},{0.00485646f,0.291361f,0.125638f}, - {0.00523587f,0.291442f,0.121909f},{0.00523689f,0.291442f,0.125638f},{0.00559323f,0.291601f,0.121909f}, - {0.00559323f,0.291601f,0.125638f},{0.00794301f,0.293145f,0.125638f},{0.00822403f,0.29266f,0.125638f}, - {0.00822143f,0.292663f,0.121909f},{0.00773834f,0.293667f,0.125638f},{0.00794151f,0.293149f,0.121909f}, - {0.00773817f,0.293668f,0.121909f},{0.00761523f,0.294207f,0.125638f},{0.00761511f,0.294208f,0.121909f}, - {0.00757342f,0.294761f,0.121909f},{0.00757373f,0.294759f,0.125638f},{0.00761488f,0.295314f,0.125638f}, - {0.00794445f,0.296384f,0.121909f},{0.00822146f,0.296864f,0.125638f},{0.00794412f,0.296384f,0.125638f}, - {0.00761534f,0.295319f,0.121909f},{0.00773918f,0.295862f,0.125638f},{0.00774028f,0.295864f,0.121909f}, - {0.00822277f,0.296865f,0.121909f},{0.00856678f,0.297297f,0.125638f},{0.00856839f,0.297299f,0.121909f}, - {0.00897424f,0.297676f,0.121909f},{0.00943797f,0.297992f,0.125638f},{0.00897424f,0.297676f,0.125638f}, - {0.00943797f,0.297992f,0.121909f},{0.00857075f,0.292225f,0.121909f},{0.00897738f,0.291848f,0.121909f}, - {0.00857178f,0.292224f,0.125638f},{0.00897811f,0.291847f,0.125638f},{0.00943459f,0.291536f,0.121909f}, - {0.00943645f,0.291535f,0.125638f},{0.00993607f,0.291294f,0.121909f},{0.0104724f,0.291128f,0.121909f}, - {0.00994001f,0.291292f,0.125638f},{0.0104751f,0.291128f,0.125638f},{0.0110266f,0.291045f,0.121909f}, - {0.0110274f,0.291044f,0.125638f},{0.0115811f,0.291045f,0.121909f},{0.0121288f,0.291127f,0.121909f}, - {0.0115832f,0.291045f,0.125638f},{0.0121315f,0.291128f,0.125638f},{0.0126606f,0.291291f,0.121909f}, - {0.0126606f,0.291291f,0.125638f},{0.0131668f,0.291534f,0.121909f},{0.0131668f,0.291534f,0.125638f}, - {-0.00616977f,0.294311f,0.125638f},{-0.00636455f,0.293973f,0.125638f},{-0.00636392f,0.293974f,0.121909f}, - {-0.00616867f,0.294312f,0.121909f},{-0.00590902f,0.294601f,0.125638f},{-0.00590775f,0.294602f,0.121909f}, - {-0.00559297f,0.29483f,0.121909f},{-0.00523843f,0.294988f,0.125638f},{-0.00559381f,0.29483f,0.125638f}, - {-0.00523609f,0.294989f,0.121909f},{-0.00485661f,0.29507f,0.125638f},{-0.00485499f,0.29507f,0.121909f}, - {-0.0044666f,0.29507f,0.125638f},{-0.00446558f,0.29507f,0.121909f},{-0.00408618f,0.294989f,0.125638f}, - {-0.00408515f,0.294989f,0.121909f},{-0.00372882f,0.29483f,0.121909f},{-0.00372882f,0.29483f,0.125638f}, - {-0.00648464f,0.293604f,0.121909f},{-0.00652537f,0.293216f,0.121909f},{-0.00648484f,0.293602f,0.125638f}, - {-0.00652548f,0.293215f,0.125638f},{-0.00648477f,0.292829f,0.121909f},{-0.00648435f,0.292827f,0.125638f}, - {-0.00636452f,0.292458f,0.121909f},{-0.00616965f,0.29212f,0.121909f},{-0.0063638f,0.292456f,0.125638f}, - {-0.00616901f,0.292119f,0.125638f},{-0.00590945f,0.291831f,0.121909f},{-0.00590875f,0.29183f,0.125638f}, - {-0.00559323f,0.291601f,0.121909f},{-0.00559323f,0.291601f,0.125638f},{-0.00308095f,0.290338f,0.125638f}, - {-0.00336087f,0.289852f,0.125638f},{-0.00335937f,0.289856f,0.121909f},{-0.00273163f,0.290776f,0.125638f}, - {-0.00307835f,0.290341f,0.121909f},{-0.0027306f,0.290777f,0.121909f},{-0.002325f,0.291153f,0.125638f}, - {-0.00232427f,0.291153f,0.121909f},{-0.00186593f,0.291466f,0.121909f},{-0.00186779f,0.291465f,0.125638f}, - {-0.00136631f,0.291707f,0.125638f},{-0.000274996f,0.291956f,0.121909f},{0.0002787f,0.291956f,0.125638f}, - {-0.000275788f,0.291956f,0.125638f},{-0.00136237f,0.291709f,0.121909f},{-0.000829945f,0.291873f,0.125638f}, - {-0.000827251f,0.291873f,0.121909f},{0.000280844f,0.291956f,0.121909f},{0.000826454f,0.291874f,0.125638f}, - {0.000829073f,0.291873f,0.121909f},{0.00135821f,0.29171f,0.121909f},{0.00186441f,0.291467f,0.125638f}, - {0.00135821f,0.29171f,0.125638f},{0.00186441f,0.291467f,0.121909f},{-0.00356405f,0.289334f,0.121909f}, - {-0.00368715f,0.288794f,0.121909f},{-0.00356421f,0.289333f,0.125638f},{-0.00368727f,0.288793f,0.125638f}, - {-0.00372865f,0.288242f,0.121909f},{-0.00372896f,0.288239f,0.125638f},{-0.00368751f,0.287686f,0.121909f}, - {-0.0035632f,0.287139f,0.121909f},{-0.00368704f,0.287682f,0.125638f},{-0.0035621f,0.287136f,0.125638f}, - {-0.00335826f,0.286617f,0.121909f},{-0.00335794f,0.286617f,0.125638f},{-0.00308092f,0.286137f,0.121909f}, - {-0.0027356f,0.285704f,0.121909f},{-0.00307961f,0.286135f,0.125638f},{-0.00273399f,0.285702f,0.125638f}, - {-0.00232814f,0.285325f,0.121909f},{-0.00232814f,0.285325f,0.125638f},{-0.00186441f,0.285008f,0.121909f}, - {-0.00186441f,0.285008f,0.125638f},{-0.0091279f,0.303143f,0.125638f},{-0.00951793f,0.303143f,0.125638f}, - {-0.0095162f,0.303143f,0.121909f},{-0.00912617f,0.303143f,0.121909f},{-0.00874642f,0.303062f,0.125638f}, - {-0.00874495f,0.303061f,0.121909f},{-0.00838954f,0.302903f,0.121909f},{-0.0080757f,0.302675f,0.125638f}, - {-0.00839049f,0.302903f,0.125638f},{-0.00807379f,0.302673f,0.121909f},{-0.00781413f,0.302385f,0.125638f}, - {-0.00781324f,0.302384f,0.121909f},{-0.007619f,0.302047f,0.125638f},{-0.00761862f,0.302046f,0.121909f}, - {-0.00749878f,0.301677f,0.125638f},{-0.00749845f,0.301676f,0.121909f},{-0.00745764f,0.301289f,0.121909f}, - {-0.00745764f,0.301289f,0.125638f},{-0.00989767f,0.303062f,0.121909f},{-0.0102536f,0.302903f,0.121909f}, - {-0.00989914f,0.303061f,0.125638f},{-0.0102546f,0.302903f,0.125638f},{-0.0105684f,0.302675f,0.121909f}, - {-0.0105703f,0.302673f,0.125638f},{-0.01083f,0.302385f,0.121909f},{-0.0110251f,0.302047f,0.121909f}, - {-0.0108309f,0.302384f,0.125638f},{-0.0110255f,0.302046f,0.125638f},{-0.0111453f,0.301677f,0.121909f}, - {-0.0111456f,0.301676f,0.125638f},{-0.0111865f,0.301289f,0.121909f},{-0.0111865f,0.301289f,0.125638f}, - {-0.011024f,0.298481f,0.125638f},{-0.0115849f,0.298481f,0.125638f},{-0.0115808f,0.298481f,0.121909f}, - {-0.01047f,0.298398f,0.125638f},{-0.0110199f,0.298481f,0.121909f},{-0.0104688f,0.298397f,0.121909f}, - {-0.00994023f,0.298234f,0.125638f},{-0.00993938f,0.298234f,0.121909f},{-0.00943935f,0.297993f,0.121909f}, - {-0.00944153f,0.297994f,0.125638f},{-0.00898119f,0.297681f,0.125638f},{-0.00821944f,0.296861f,0.121909f}, - {-0.00794276f,0.296381f,0.125638f},{-0.00821991f,0.296861f,0.125638f},{-0.00897771f,0.297678f,0.121909f}, - {-0.00856913f,0.297299f,0.125638f},{-0.00856753f,0.297297f,0.121909f},{-0.00794193f,0.296379f,0.121909f}, - {-0.00774033f,0.295865f,0.125638f},{-0.00773931f,0.295863f,0.121909f},{-0.00761603f,0.295323f,0.121909f}, - {-0.00757356f,0.294763f,0.125638f},{-0.00761603f,0.295323f,0.125638f},{-0.00757356f,0.294763f,0.121909f}, - {-0.0121348f,0.298398f,0.121909f},{-0.0126645f,0.298234f,0.121909f},{-0.012136f,0.298397f,0.125638f}, - {-0.0126654f,0.298234f,0.125638f},{-0.0131632f,0.297994f,0.121909f},{-0.0131654f,0.297993f,0.125638f}, - {-0.0136236f,0.297681f,0.121909f},{-0.0140356f,0.297299f,0.121909f},{-0.0136271f,0.297678f,0.125638f}, - {-0.0140372f,0.297297f,0.125638f},{-0.0143849f,0.296861f,0.121909f},{-0.0143853f,0.296861f,0.125638f}, - {-0.014662f,0.296381f,0.121909f},{-0.0148644f,0.295865f,0.121909f},{-0.0146628f,0.296379f,0.125638f}, - {-0.0148654f,0.295863f,0.125638f},{-0.0149887f,0.295323f,0.121909f},{-0.0149887f,0.295323f,0.125638f}, - {-0.0150312f,0.294763f,0.121909f},{-0.0150312f,0.294763f,0.125638f},{-0.00295812f,0.310121f,0.125638f}, - {-0.00315337f,0.310458f,0.125638f},{-0.00315227f,0.310457f,0.121909f},{-0.00295749f,0.310119f,0.121909f}, - {-0.0028374f,0.30975f,0.125638f},{-0.00283721f,0.309748f,0.121909f},{-0.00279657f,0.309361f,0.121909f}, - {-0.00283728f,0.308975f,0.125638f},{-0.00279668f,0.309362f,0.125638f},{-0.0028377f,0.308973f,0.121909f}, - {-0.00295753f,0.308604f,0.125638f},{-0.00295825f,0.308603f,0.121909f},{-0.0031524f,0.308266f,0.125638f}, - {-0.00315303f,0.308265f,0.121909f},{-0.0034126f,0.307977f,0.125638f},{-0.0034133f,0.307976f,0.121909f}, - {-0.00372882f,0.307747f,0.121909f},{-0.00372882f,0.307747f,0.125638f},{-0.00341302f,0.310747f,0.121909f}, - {-0.00372824f,0.310976f,0.121909f},{-0.0034143f,0.310748f,0.125638f},{-0.00372908f,0.310977f,0.125638f}, - {-0.00408362f,0.311134f,0.121909f},{-0.00408596f,0.311135f,0.125638f},{-0.00446544f,0.311216f,0.121909f}, - {-0.00485544f,0.311216f,0.121909f},{-0.00446705f,0.311216f,0.125638f},{-0.00485646f,0.311216f,0.125638f}, - {-0.00523587f,0.311135f,0.121909f},{-0.00523689f,0.311135f,0.125638f},{-0.00559323f,0.310976f,0.121909f}, - {-0.00559323f,0.310976f,0.125638f},{-0.00794301f,0.309432f,0.125638f},{-0.00822403f,0.309917f,0.125638f}, - {-0.00822143f,0.309914f,0.121909f},{-0.00773834f,0.30891f,0.125638f},{-0.00794151f,0.309428f,0.121909f}, - {-0.00773817f,0.308909f,0.121909f},{-0.00761523f,0.30837f,0.125638f},{-0.00761511f,0.308369f,0.121909f}, - {-0.00757342f,0.307816f,0.121909f},{-0.00757373f,0.307818f,0.125638f},{-0.00761488f,0.307263f,0.125638f}, - {-0.00794445f,0.306193f,0.121909f},{-0.00822146f,0.305713f,0.125638f},{-0.00794412f,0.306194f,0.125638f}, - {-0.00761534f,0.307258f,0.121909f},{-0.00773918f,0.306715f,0.125638f},{-0.00774028f,0.306713f,0.121909f}, - {-0.00822277f,0.305712f,0.121909f},{-0.00856678f,0.30528f,0.125638f},{-0.00856839f,0.305278f,0.121909f}, - {-0.00897424f,0.304902f,0.121909f},{-0.00943797f,0.304585f,0.125638f},{-0.00897424f,0.304902f,0.125638f}, - {-0.00943797f,0.304585f,0.121909f},{-0.00857075f,0.310352f,0.121909f},{-0.00897738f,0.310729f,0.121909f}, - {-0.00857178f,0.310353f,0.125638f},{-0.00897811f,0.31073f,0.125638f},{-0.00943459f,0.311041f,0.121909f}, - {-0.00943645f,0.311043f,0.125638f},{-0.00993607f,0.311283f,0.121909f},{-0.0104724f,0.311449f,0.121909f}, - {-0.00994001f,0.311285f,0.125638f},{-0.0104751f,0.31145f,0.125638f},{-0.0110266f,0.311533f,0.121909f}, - {-0.0110274f,0.311533f,0.125638f},{-0.0115811f,0.311532f,0.121909f},{-0.0121288f,0.31145f,0.121909f}, - {-0.0115832f,0.311532f,0.125638f},{-0.0121315f,0.31145f,0.125638f},{-0.0126606f,0.311286f,0.121909f}, - {-0.0126606f,0.311286f,0.125638f},{-0.0131668f,0.311043f,0.121909f},{-0.0131668f,0.311043f,0.125638f}, - {0.00616977f,0.308266f,0.125638f},{0.00636455f,0.308604f,0.125638f},{0.00636392f,0.308603f,0.121909f}, - {0.00616867f,0.308265f,0.121909f},{0.00590902f,0.307976f,0.125638f},{0.00590775f,0.307976f,0.121909f}, - {0.00559297f,0.307747f,0.121909f},{0.00523843f,0.307589f,0.125638f},{0.00559381f,0.307747f,0.125638f}, - {0.00523609f,0.307588f,0.121909f},{0.00485661f,0.307508f,0.125638f},{0.00485499f,0.307507f,0.121909f}, - {0.0044666f,0.307507f,0.125638f},{0.00446558f,0.307508f,0.121909f},{0.00408618f,0.307588f,0.125638f}, - {0.00408515f,0.307588f,0.121909f},{0.00372882f,0.307747f,0.121909f},{0.00372882f,0.307747f,0.125638f}, - {0.00648464f,0.308973f,0.121909f},{0.00652537f,0.309361f,0.121909f},{0.00648484f,0.308975f,0.125638f}, - {0.00652548f,0.309362f,0.125638f},{0.00648477f,0.309748f,0.121909f},{0.00648435f,0.30975f,0.125638f}, - {0.00636452f,0.310119f,0.121909f},{0.00616965f,0.310457f,0.121909f},{0.0063638f,0.310121f,0.125638f}, - {0.00616901f,0.310458f,0.125638f},{0.00590945f,0.310746f,0.121909f},{0.00590875f,0.310747f,0.125638f}, - {0.00559323f,0.310976f,0.121909f},{0.00559323f,0.310976f,0.125638f},{0.00308095f,0.312239f,0.125638f}, - {0.00336087f,0.312725f,0.125638f},{0.00335937f,0.312721f,0.121909f},{0.00273163f,0.311801f,0.125638f}, - {0.00307835f,0.312236f,0.121909f},{0.0027306f,0.3118f,0.121909f},{0.002325f,0.311424f,0.125638f}, - {0.00232427f,0.311424f,0.121909f},{0.00186593f,0.311111f,0.121909f},{0.00186779f,0.311112f,0.125638f}, - {0.00136631f,0.31087f,0.125638f},{0.000274996f,0.310621f,0.121909f},{-0.0002787f,0.310621f,0.125638f}, - {0.000275788f,0.310621f,0.125638f},{0.00136237f,0.310869f,0.121909f},{0.000829945f,0.310704f,0.125638f}, - {0.000827251f,0.310704f,0.121909f},{-0.000280844f,0.310621f,0.121909f},{-0.000826454f,0.310703f,0.125638f}, - {-0.000829073f,0.310704f,0.121909f},{-0.00135821f,0.310867f,0.121909f},{-0.00186441f,0.31111f,0.125638f}, - {-0.00135821f,0.310867f,0.125638f},{-0.00186441f,0.31111f,0.121909f},{0.00356405f,0.313243f,0.121909f}, - {0.00368715f,0.313783f,0.121909f},{0.00356421f,0.313244f,0.125638f},{0.00368727f,0.313784f,0.125638f}, - {0.00372865f,0.314335f,0.121909f},{0.00372896f,0.314338f,0.125638f},{0.00368751f,0.314891f,0.121909f}, - {0.0035632f,0.315438f,0.121909f},{0.00368704f,0.314895f,0.125638f},{0.0035621f,0.315441f,0.125638f}, - {0.00335826f,0.31596f,0.121909f},{0.00335794f,0.315961f,0.125638f},{0.00308092f,0.31644f,0.121909f}, - {0.0027356f,0.316873f,0.121909f},{0.00307961f,0.316442f,0.125638f},{0.00273399f,0.316875f,0.125638f}, - {0.00232814f,0.317252f,0.121909f},{0.00232814f,0.317252f,0.125638f},{0.00186441f,0.317569f,0.121909f}, - {0.00186441f,0.317569f,0.125638f},{0.0091279f,0.299434f,0.125638f},{0.00951793f,0.299435f,0.125638f}, - {0.0095162f,0.299434f,0.121909f},{0.00912617f,0.299435f,0.121909f},{0.00874642f,0.299515f,0.125638f}, - {0.00874495f,0.299516f,0.121909f},{0.00838954f,0.299674f,0.121909f},{0.0080757f,0.299902f,0.125638f}, - {0.00839049f,0.299674f,0.125638f},{0.00807379f,0.299904f,0.121909f},{0.00781413f,0.300192f,0.125638f}, - {0.00781324f,0.300193f,0.121909f},{0.007619f,0.30053f,0.125638f},{0.00761862f,0.300531f,0.121909f}, - {0.00749878f,0.3009f,0.125638f},{0.00749845f,0.300901f,0.121909f},{0.00745764f,0.301289f,0.121909f}, - {0.00745764f,0.301289f,0.125638f},{0.00989767f,0.299515f,0.121909f},{0.0102536f,0.299674f,0.121909f}, - {0.00989914f,0.299516f,0.125638f},{0.0102546f,0.299674f,0.125638f},{0.0105684f,0.299902f,0.121909f}, - {0.0105703f,0.299904f,0.125638f},{0.01083f,0.300192f,0.121909f},{0.0110251f,0.30053f,0.121909f}, - {0.0108309f,0.300193f,0.125638f},{0.0110255f,0.300531f,0.125638f},{0.0111453f,0.3009f,0.121909f}, - {0.0111456f,0.300901f,0.125638f},{0.0111865f,0.301289f,0.121909f},{0.0111865f,0.301289f,0.125638f}, - {0.011024f,0.304096f,0.125638f},{0.0115849f,0.304096f,0.125638f},{0.0115808f,0.304096f,0.121909f}, - {0.01047f,0.304179f,0.125638f},{0.0110199f,0.304096f,0.121909f},{0.0104688f,0.30418f,0.121909f}, - {0.00994023f,0.304343f,0.125638f},{0.00993938f,0.304343f,0.121909f},{0.00943935f,0.304584f,0.121909f}, - {0.00944153f,0.304583f,0.125638f},{0.00898119f,0.304896f,0.125638f},{0.00821944f,0.305716f,0.121909f}, - {0.00794276f,0.306196f,0.125638f},{0.00821991f,0.305716f,0.125638f},{0.00897771f,0.304899f,0.121909f}, - {0.00856913f,0.305278f,0.125638f},{0.00856753f,0.30528f,0.121909f},{0.00794193f,0.306198f,0.121909f}, - {0.00774033f,0.306712f,0.125638f},{0.00773931f,0.306714f,0.121909f},{0.00761603f,0.307254f,0.121909f}, - {0.00757356f,0.307814f,0.125638f},{0.00761603f,0.307254f,0.125638f},{0.00757356f,0.307814f,0.121909f}, - {0.0121348f,0.304179f,0.121909f},{0.0126645f,0.304343f,0.121909f},{0.012136f,0.30418f,0.125638f}, - {0.0126654f,0.304343f,0.125638f},{0.0131632f,0.304583f,0.121909f},{0.0131654f,0.304584f,0.125638f}, - {0.0136236f,0.304896f,0.121909f},{0.0140356f,0.305278f,0.121909f},{0.0136271f,0.304899f,0.125638f}, - {0.0140372f,0.30528f,0.125638f},{0.0143849f,0.305716f,0.121909f},{0.0143853f,0.305716f,0.125638f}, - {0.014662f,0.306196f,0.121909f},{0.0148644f,0.306712f,0.121909f},{0.0146628f,0.306198f,0.125638f}, - {0.0148654f,0.306714f,0.125638f},{0.0149887f,0.307254f,0.121909f},{0.0149887f,0.307254f,0.125638f}, - {0.0150312f,0.307814f,0.121909f},{0.0150312f,0.307814f,0.125638f},{-2.74685e-017f,0.304085f,0.100469f}, - {-2.69701e-017f,0.304085f,0.0986044f},{-0.000488516f,0.304042f,0.0986044f},{-0.000957717f,0.303916f,0.0986044f}, - {-0.00048723f,0.304042f,0.100469f},{-0.000956449f,0.303917f,0.100469f},{-0.00139564f,0.303712f,0.100469f}, - {-0.00179504f,0.303433f,0.100469f},{-0.00139727f,0.303711f,0.0986044f},{-0.00179767f,0.303431f,0.0986044f}, - {-0.00214219f,0.303086f,0.100469f},{-0.00214411f,0.303084f,0.0986044f},{-0.00242266f,0.302686f,0.100469f}, - {-0.00262748f,0.302246f,0.100469f},{-0.00242333f,0.302684f,0.0986044f},{-0.00262801f,0.302245f,0.0986044f}, - {-0.00275356f,0.301777f,0.100469f},{-0.00275356f,0.301777f,0.0986044f},{-0.00279661f,0.301289f,0.0986044f}, - {-0.00279661f,0.301289f,0.100469f},{0.000488516f,0.304042f,0.100469f},{0.000957717f,0.303916f,0.100469f}, - {0.00048723f,0.304042f,0.0986044f},{0.00139564f,0.303712f,0.0986044f},{0.000956449f,0.303917f,0.0986044f}, - {0.00139727f,0.303711f,0.100469f},{0.00179504f,0.303433f,0.0986044f},{0.00179767f,0.303431f,0.100469f}, - {0.00214219f,0.303086f,0.0986044f},{0.00242266f,0.302686f,0.0986044f},{0.00214411f,0.303084f,0.100469f}, - {0.00242333f,0.302684f,0.100469f},{0.00262748f,0.302246f,0.0986044f},{0.00262801f,0.302245f,0.100469f}, - {0.00275356f,0.301777f,0.0986044f},{0.00275356f,0.301777f,0.100469f},{0.00279661f,0.301289f,0.100469f}, - {0.00279661f,0.301289f,0.0986044f},{-3.06347e-017f,0.308746f,0.100469f},{-0.000737081f,0.30871f,0.100469f}, - {-2.81508e-017f,0.308746f,0.101401f},{-0.000737081f,0.30871f,0.101401f},{-0.00146169f,0.308602f,0.100469f}, - {-0.00216893f,0.308424f,0.100469f},{-0.00146169f,0.308602f,0.101401f},{-0.00285391f,0.308178f,0.100469f}, - {-0.00216893f,0.308424f,0.101401f},{-0.00285391f,0.308178f,0.101401f},{-0.00351173f,0.307868f,0.100469f}, - {-0.00413751f,0.307493f,0.100469f},{-0.00351173f,0.307868f,0.101401f},{-0.00472635f,0.307057f,0.100469f}, - {-0.00413751f,0.307493f,0.101401f},{-0.00472635f,0.307057f,0.101401f},{-0.00527335f,0.306562f,0.100469f}, - {-0.00576874f,0.306015f,0.100469f},{-0.00527335f,0.306562f,0.101401f},{-0.00620465f,0.305426f,0.100469f}, - {-0.00576874f,0.306015f,0.101401f},{-0.00620465f,0.305426f,0.101401f},{-0.00657906f,0.3048f,0.100469f}, - {-0.00688994f,0.304142f,0.100469f},{-0.00657906f,0.3048f,0.101401f},{-0.00713527f,0.303457f,0.100469f}, - {-0.00688994f,0.304142f,0.101401f},{-0.00713527f,0.303457f,0.101401f},{-0.00731301f,0.30275f,0.100469f}, - {-0.00742114f,0.302026f,0.100469f},{-0.00731301f,0.30275f,0.101401f},{-0.00745764f,0.301289f,0.100469f}, - {-0.00742114f,0.302026f,0.101401f},{-0.00745764f,0.301289f,0.101401f},{0.000737081f,0.30871f,0.101401f}, - {0.00146169f,0.308602f,0.101401f},{0.000737081f,0.30871f,0.100469f},{0.00216893f,0.308424f,0.101401f}, - {0.00146169f,0.308602f,0.100469f},{0.00216893f,0.308424f,0.100469f},{0.00285391f,0.308178f,0.101401f}, - {0.00351173f,0.307868f,0.101401f},{0.00285391f,0.308178f,0.100469f},{0.00413751f,0.307493f,0.101401f}, - {0.00351173f,0.307868f,0.100469f},{0.00413751f,0.307493f,0.100469f},{0.00472635f,0.307057f,0.101401f}, - {0.00527335f,0.306562f,0.101401f},{0.00472635f,0.307057f,0.100469f},{0.00576874f,0.306015f,0.101401f}, - {0.00527335f,0.306562f,0.100469f},{0.00576874f,0.306015f,0.100469f},{0.00620465f,0.305426f,0.101401f}, - {0.00657906f,0.3048f,0.101401f},{0.00620465f,0.305426f,0.100469f},{0.00688994f,0.304142f,0.101401f}, - {0.00657906f,0.3048f,0.100469f},{0.00688994f,0.304142f,0.100469f},{0.00713527f,0.303457f,0.101401f}, - {0.00731301f,0.30275f,0.101401f},{0.00713527f,0.303457f,0.100469f},{0.00742114f,0.302026f,0.101401f}, - {0.00731301f,0.30275f,0.100469f},{0.00742114f,0.302026f,0.100469f},{0.00745764f,0.301289f,0.101401f}, - {0.00745764f,0.301289f,0.100469f},{-0.00462052f,0.318681f,0.101401f},{-0.00462066f,0.318681f,0.104198f}, - {-0.00466102f,0.318068f,0.101401f},{-0.00462052f,0.317455f,0.104198f},{-0.00462066f,0.317456f,0.101401f}, - {-0.00466102f,0.318068f,0.104198f},{-0.00430621f,0.316285f,0.101401f},{-0.00430621f,0.316285f,0.104198f}, - {-0.00403832f,0.315741f,0.101401f},{-0.00450127f,0.316858f,0.104198f},{-0.00450141f,0.316859f,0.101401f}, - {-0.00403818f,0.31574f,0.104198f},{-0.00370041f,0.315234f,0.104198f},{-0.00370055f,0.315234f,0.101401f}, - {-0.00329584f,0.314772f,0.101401f},{-0.00329584f,0.314772f,0.104198f},{-0.00283386f,0.314368f,0.104198f}, - {-0.0028342f,0.314368f,0.101401f},{-0.00232777f,0.31403f,0.101401f},{-0.00232743f,0.31403f,0.104198f}, - {-0.00178369f,0.313762f,0.101401f},{-0.00178369f,0.313762f,0.104198f},{-0.00120944f,0.313567f,0.104198f}, - {-0.00120978f,0.313567f,0.101401f},{-2.25564e-017f,0.313407f,0.101401f},{-0.000612842f,0.313448f,0.101401f}, - {-0.000612502f,0.313448f,0.104198f},{-2.25564e-017f,0.313407f,0.104198f},{-0.00450141f,0.319278f,0.104198f}, - {-0.00450127f,0.319278f,0.101401f},{-0.00430621f,0.319852f,0.104198f},{-0.00403832f,0.320396f,0.104198f}, - {-0.00430621f,0.319852f,0.101401f},{-0.00403818f,0.320396f,0.101401f},{-0.00370055f,0.320902f,0.104198f}, - {-0.00370041f,0.320902f,0.101401f},{-0.00329584f,0.321364f,0.104198f},{-0.0028342f,0.321769f,0.104198f}, - {-0.00329584f,0.321364f,0.101401f},{-0.00283386f,0.321769f,0.101401f},{-0.00232777f,0.322106f,0.104198f}, - {-0.00232743f,0.322107f,0.101401f},{-0.00178369f,0.322374f,0.104198f},{-0.00120978f,0.322569f,0.104198f}, - {-0.00178369f,0.322374f,0.101401f},{-0.00120944f,0.32257f,0.101401f},{-0.000612842f,0.322689f,0.104198f}, - {-0.000612502f,0.322689f,0.101401f},{-2.3698e-017f,0.322729f,0.104198f},{-2.3698e-017f,0.322729f,0.101401f}, - {0.0173922f,0.305909f,0.101401f},{0.0167797f,0.30595f,0.101401f},{0.0173922f,0.305909f,0.104198f}, - {0.0161668f,0.305909f,0.104198f},{0.0167797f,0.30595f,0.104198f},{0.0161668f,0.305909f,0.101401f}, - {0.014996f,0.305595f,0.101401f},{0.0144519f,0.305327f,0.101401f},{0.014996f,0.305595f,0.104198f}, - {0.0155699f,0.30579f,0.104198f},{0.0155699f,0.30579f,0.101401f},{0.0144519f,0.305327f,0.104198f}, - {0.0139455f,0.304989f,0.101401f},{0.0139455f,0.304989f,0.104198f},{0.0134838f,0.304584f,0.101401f}, - {0.0134838f,0.304584f,0.104198f},{0.0130791f,0.304122f,0.101401f},{0.0130791f,0.304122f,0.104198f}, - {0.0127414f,0.303616f,0.101401f},{0.0124735f,0.303072f,0.101401f},{0.0127414f,0.303616f,0.104198f}, - {0.0124735f,0.303072f,0.104198f},{0.0122783f,0.302498f,0.101401f},{0.0122783f,0.302498f,0.104198f}, - {0.0121187f,0.301289f,0.101401f},{0.012159f,0.301901f,0.104198f},{0.012159f,0.301901f,0.101401f}, - {0.0121187f,0.301289f,0.104198f},{0.0179891f,0.30579f,0.104198f},{0.0185634f,0.305595f,0.104198f}, - {0.0179891f,0.30579f,0.101401f},{0.0191071f,0.305327f,0.104198f},{0.0185634f,0.305595f,0.101401f}, - {0.0191071f,0.305327f,0.101401f},{0.0196135f,0.304989f,0.104198f},{0.0200755f,0.304584f,0.104198f}, - {0.0196135f,0.304989f,0.101401f},{0.0204801f,0.304123f,0.104198f},{0.0200755f,0.304584f,0.101401f}, - {0.0204801f,0.304123f,0.101401f},{0.0208179f,0.303616f,0.104198f},{0.0210859f,0.303072f,0.104198f}, - {0.0208179f,0.303616f,0.101401f},{0.0212809f,0.302498f,0.104198f},{0.0210859f,0.303072f,0.101401f}, - {0.0212809f,0.302498f,0.101401f},{0.0214002f,0.301901f,0.104198f},{0.0214407f,0.301289f,0.104198f}, - {0.0214002f,0.301901f,0.101401f},{0.0214407f,0.301289f,0.101401f},{0.00462066f,0.283896f,0.104198f}, - {0.00466102f,0.284509f,0.104198f},{0.00464709f,0.284149f,0.101401f},{0.00458867f,0.285326f,0.101401f}, - {0.00465528f,0.28474f,0.101401f},{0.00462052f,0.285122f,0.104198f},{0.00430621f,0.286293f,0.104198f}, - {0.00403818f,0.286837f,0.104198f},{0.00423671f,0.286451f,0.101401f},{0.00444837f,0.2859f,0.101401f}, - {0.00450127f,0.285719f,0.104198f},{0.00370041f,0.287343f,0.104198f},{0.00361392f,0.287452f,0.101401f}, - {0.00395712f,0.286971f,0.101401f},{0.00329584f,0.287805f,0.104198f},{0.00283386f,0.288209f,0.104198f}, - {0.00276013f,0.288264f,0.101401f},{0.00321274f,0.287885f,0.101401f},{0.00232743f,0.288547f,0.104198f}, - {0.00178369f,0.288815f,0.104198f},{0.00226347f,0.288584f,0.101401f},{0.00120944f,0.28901f,0.104198f}, - {0.00116855f,0.289018f,0.101401f},{0.00172931f,0.288834f,0.101401f},{0.000589403f,0.289133f,0.101401f}, - {0.000612502f,0.28913f,0.104198f},{-2.78077e-017f,0.28917f,0.104198f},{-2.78077e-017f,0.28917f,0.101401f}, - {0.00456433f,0.283564f,0.101401f},{0.00440833f,0.282995f,0.101401f},{0.00450141f,0.283299f,0.104198f}, - {0.00430621f,0.282725f,0.104198f},{0.00418158f,0.282449f,0.101401f},{0.00388773f,0.281937f,0.101401f}, - {0.00403832f,0.282181f,0.104198f},{0.00353147f,0.281466f,0.101401f},{0.00370055f,0.281675f,0.104198f}, - {0.00329584f,0.281213f,0.104198f},{0.0031185f,0.281044f,0.101401f},{0.00265541f,0.280678f,0.101401f}, - {0.0028342f,0.280808f,0.104198f},{0.00214963f,0.280373f,0.101401f},{0.00232777f,0.280471f,0.104198f}, - {0.00178369f,0.280203f,0.104198f},{0.00160952f,0.280134f,0.101401f},{0.00104053f,0.279978f,0.101401f}, - {0.00120978f,0.280008f,0.104198f},{0.000461185f,0.279852f,0.101401f},{0.000612842f,0.279888f,0.104198f}, - {-2.66661e-017f,0.279848f,0.104198f},{-2.66661e-017f,0.279848f,0.101401f},{-0.0143886f,0.313813f,0.110723f}, - {-0.0143784f,0.313619f,0.101401f},{-0.0143782f,0.314009f,0.101401f},{-0.014297f,0.31439f,0.101401f}, - {-0.0143526f,0.314176f,0.110723f},{-0.0142471f,0.314526f,0.110723f},{-0.0139089f,0.315061f,0.101401f}, - {-0.014075f,0.314849f,0.110723f},{-0.0141387f,0.314745f,0.101401f},{-0.0136193f,0.315322f,0.101401f}, - {-0.0138429f,0.315132f,0.110723f},{-0.0135601f,0.315364f,0.110723f},{-0.013282f,0.315516f,0.101401f}, - {-0.0129121f,0.315636f,0.101401f},{-0.0132377f,0.315536f,0.110723f},{-0.0125242f,0.315677f,0.101401f}, - {-0.0125242f,0.315677f,0.110723f},{-0.0128879f,0.315642f,0.110723f},{-0.0143523f,0.313449f,0.110723f}, - {-0.0142976f,0.313237f,0.101401f},{-0.0142453f,0.313099f,0.110723f},{-0.0140726f,0.312777f,0.110723f}, - {-0.0141391f,0.312881f,0.101401f},{-0.0138409f,0.312495f,0.110723f},{-0.0139105f,0.312566f,0.101401f}, - {-0.0136206f,0.312305f,0.101401f},{-0.0135587f,0.312263f,0.110723f},{-0.0132367f,0.312091f,0.110723f}, - {-0.013283f,0.31211f,0.101401f},{-0.0128873f,0.311985f,0.110723f},{-0.0129131f,0.311989f,0.101401f}, - {-0.0125242f,0.311948f,0.101401f},{-0.0125242f,0.311948f,0.110723f},{-0.0125242f,0.313813f,0.111843f}, - {0.00868228f,0.311835f,0.110723f},{0.00869244f,0.311641f,0.101401f},{0.00869272f,0.312031f,0.101401f}, - {0.00877392f,0.312412f,0.101401f},{0.0087183f,0.312199f,0.110723f},{0.00882381f,0.312549f,0.110723f}, - {0.00916198f,0.313083f,0.101401f},{0.00899591f,0.312872f,0.110723f},{0.00893219f,0.312768f,0.101401f}, - {0.0094516f,0.313344f,0.101401f},{0.00922803f,0.313155f,0.110723f},{0.00951082f,0.313386f,0.110723f}, - {0.00978889f,0.313539f,0.101401f},{0.0101588f,0.313659f,0.101401f},{0.00983322f,0.313559f,0.110723f}, - {0.0105467f,0.3137f,0.101401f},{0.0105467f,0.3137f,0.110723f},{0.010183f,0.313665f,0.110723f}, - {0.00871859f,0.311471f,0.110723f},{0.00877329f,0.31126f,0.101401f},{0.00882557f,0.311121f,0.110723f}, - {0.00899828f,0.3108f,0.110723f},{0.00893177f,0.310904f,0.101401f},{0.00922999f,0.310517f,0.110723f}, - {0.00916039f,0.310589f,0.101401f},{0.00945026f,0.310327f,0.101401f},{0.00951221f,0.310286f,0.110723f}, - {0.00983423f,0.310114f,0.110723f},{0.00978794f,0.310132f,0.101401f},{0.0101836f,0.310007f,0.110723f}, - {0.0101578f,0.310012f,0.101401f},{0.0105467f,0.309971f,0.101401f},{0.0105467f,0.309971f,0.110723f}, - {0.0105467f,0.311835f,0.111843f},{0.0106598f,0.288764f,0.110723f},{0.0106699f,0.28857f,0.101401f}, - {0.0106702f,0.28896f,0.101401f},{0.0107514f,0.289341f,0.101401f},{0.0106958f,0.289128f,0.110723f}, - {0.0108013f,0.289478f,0.110723f},{0.0111395f,0.290013f,0.101401f},{0.0109734f,0.289801f,0.110723f}, - {0.0109097f,0.289697f,0.101401f},{0.0114291f,0.290273f,0.101401f},{0.0112055f,0.290084f,0.110723f}, - {0.0114883f,0.290316f,0.110723f},{0.0117664f,0.290468f,0.101401f},{0.0121363f,0.290588f,0.101401f}, - {0.0118107f,0.290488f,0.110723f},{0.0125242f,0.290629f,0.101401f},{0.0125242f,0.290629f,0.110723f}, - {0.0121605f,0.290594f,0.110723f},{0.0106961f,0.2884f,0.110723f},{0.0107508f,0.288189f,0.101401f}, - {0.0108031f,0.288051f,0.110723f},{0.0109758f,0.287729f,0.110723f},{0.0109093f,0.287833f,0.101401f}, - {0.0112075f,0.287446f,0.110723f},{0.0111379f,0.287518f,0.101401f},{0.0114278f,0.287256f,0.101401f}, - {0.0114897f,0.287215f,0.110723f},{0.0118117f,0.287043f,0.110723f},{0.0117654f,0.287061f,0.101401f}, - {0.0121611f,0.286936f,0.110723f},{0.0121353f,0.286941f,0.101401f},{0.0125242f,0.2869f,0.101401f}, - {0.0125242f,0.2869f,0.110723f},{0.0125242f,0.288764f,0.111843f},{-0.0124111f,0.290742f,0.110723f}, - {-0.0124009f,0.290548f,0.101401f},{-0.0124007f,0.290938f,0.101401f},{-0.0123195f,0.291319f,0.101401f}, - {-0.0123751f,0.291105f,0.110723f},{-0.0122696f,0.291456f,0.110723f},{-0.0119314f,0.29199f,0.101401f}, - {-0.0120975f,0.291778f,0.110723f},{-0.0121612f,0.291674f,0.101401f},{-0.0116418f,0.292251f,0.101401f}, - {-0.0118654f,0.292061f,0.110723f},{-0.0115826f,0.292293f,0.110723f},{-0.0113045f,0.292445f,0.101401f}, - {-0.0109346f,0.292565f,0.101401f},{-0.0112602f,0.292465f,0.110723f},{-0.0105467f,0.292606f,0.101401f}, - {-0.0105467f,0.292606f,0.110723f},{-0.0109104f,0.292571f,0.110723f},{-0.0123748f,0.290378f,0.110723f}, - {-0.0123201f,0.290166f,0.101401f},{-0.0122678f,0.290028f,0.110723f},{-0.0120951f,0.289706f,0.110723f}, - {-0.0121616f,0.28981f,0.101401f},{-0.0118634f,0.289424f,0.110723f},{-0.011933f,0.289496f,0.101401f}, - {-0.0116431f,0.289234f,0.101401f},{-0.0115812f,0.289192f,0.110723f},{-0.0112592f,0.28902f,0.110723f}, - {-0.0113054f,0.289039f,0.101401f},{-0.0109098f,0.288914f,0.110723f},{-0.0109356f,0.288919f,0.101401f}, - {-0.0105467f,0.288877f,0.101401f},{-0.0105467f,0.288877f,0.110723f},{-0.0105467f,0.290742f,0.111843f}, - {-0.0173925f,0.296668f,0.101401f},{-0.0173922f,0.296668f,0.104198f},{-0.0167797f,0.296628f,0.101401f}, - {-0.0161668f,0.296668f,0.104198f},{-0.0161672f,0.296668f,0.101401f},{-0.0167797f,0.296628f,0.104198f}, - {-0.014996f,0.296982f,0.101401f},{-0.014996f,0.296982f,0.104198f},{-0.0144523f,0.29725f,0.101401f}, - {-0.0155699f,0.296787f,0.104198f},{-0.0155702f,0.296787f,0.101401f},{-0.0144519f,0.29725f,0.104198f}, - {-0.0139455f,0.297588f,0.104198f},{-0.0139458f,0.297588f,0.101401f},{-0.0134838f,0.297993f,0.101401f}, - {-0.0134838f,0.297993f,0.104198f},{-0.0130791f,0.298455f,0.104198f},{-0.0130793f,0.298454f,0.101401f}, - {-0.0127415f,0.298961f,0.101401f},{-0.0127414f,0.298961f,0.104198f},{-0.0124735f,0.299505f,0.101401f}, - {-0.0124735f,0.299505f,0.104198f},{-0.0122783f,0.300079f,0.104198f},{-0.0122784f,0.300079f,0.101401f}, - {-0.0121187f,0.301289f,0.101401f},{-0.0121592f,0.300676f,0.101401f},{-0.012159f,0.300676f,0.104198f}, - {-0.0121187f,0.301289f,0.104198f},{-0.0179891f,0.296787f,0.104198f},{-0.0179895f,0.296787f,0.101401f}, - {-0.0185634f,0.296982f,0.104198f},{-0.0191071f,0.29725f,0.104198f},{-0.0185634f,0.296982f,0.101401f}, - {-0.0191075f,0.29725f,0.101401f},{-0.0196135f,0.297588f,0.104198f},{-0.0196139f,0.297588f,0.101401f}, - {-0.0200755f,0.297993f,0.104198f},{-0.0204801f,0.298454f,0.104198f},{-0.0200755f,0.297993f,0.101401f}, - {-0.0204802f,0.298455f,0.101401f},{-0.0208179f,0.298961f,0.104198f},{-0.020818f,0.298961f,0.101401f}, - {-0.0210859f,0.299505f,0.104198f},{-0.0212809f,0.300079f,0.104198f},{-0.0210859f,0.299505f,0.101401f}, - {-0.0212811f,0.300079f,0.101401f},{-0.0214002f,0.300676f,0.104198f},{-0.0214003f,0.300676f,0.101401f}, - {-0.0214407f,0.301289f,0.104198f},{-0.0214407f,0.301289f,0.101401f},{0.0254902f,0.304016f,0.121909f}, - {0.0255985f,0.302667f,0.120045f},{0.0254881f,0.304035f,0.120045f},{0.0250554f,0.306712f,0.121909f}, - {0.0250515f,0.30673f,0.120045f},{0.0247276f,0.308051f,0.120045f},{0.0255992f,0.302654f,0.121909f}, - {0.0256356f,0.301289f,0.120045f},{0.0256356f,0.301289f,0.121909f},{0.0253087f,0.305369f,0.121909f}, - {0.0253054f,0.305391f,0.120045f},{0.0241907f,0.309773f,0.121909f},{0.0246545f,0.308252f,0.121909f}, - {0.0243348f,0.309351f,0.120045f},{0.0222011f,0.314106f,0.121909f},{0.0229537f,0.312704f,0.121909f}, - {0.0227538f,0.313097f,0.120045f},{0.0236177f,0.311258f,0.121909f},{0.0238741f,0.310627f,0.120045f}, - {0.0233468f,0.311877f,0.120045f},{0.0205925f,0.316557f,0.120045f},{0.0197483f,0.317635f,0.120045f}, - {0.0204428f,0.316757f,0.121909f},{0.0220964f,0.314286f,0.120045f},{0.0213756f,0.31544f,0.120045f}, - {0.0213632f,0.315459f,0.121909f},{0.0178811f,0.319658f,0.120045f},{0.0172245f,0.320275f,0.121909f}, - {0.0183635f,0.319164f,0.121909f},{0.0188436f,0.31867f,0.120045f},{0.0194437f,0.317996f,0.121909f}, - {0.0137508f,0.322924f,0.121909f},{0.015542f,0.321676f,0.121909f},{0.014715f,0.32228f,0.120045f}, - {0.0168687f,0.320592f,0.120045f},{0.0112022f,0.324347f,0.120045f},{0.00996671f,0.324907f,0.120045f}, - {0.00988506f,0.324942f,0.121909f},{0.0124072f,0.323722f,0.120045f},{0.0118618f,0.324015f,0.121909f}, - {0.00610419f,0.326187f,0.120045f},{0.00612578f,0.326167f,0.121909f},{0.00741505f,0.325828f,0.120045f}, - {0.00783085f,0.325699f,0.121909f},{0.00870345f,0.325401f,0.120045f},{0.00264799f,0.326787f,0.121909f}, - {0.00342595f,0.326694f,0.120045f},{0.00206394f,0.326841f,0.120045f},{0.00477359f,0.326476f,0.120045f}, - {0.00439916f,0.326544f,0.121909f},{0.000884103f,0.326909f,0.121909f},{-0.000690516f,0.326915f,0.120045f}, - {-0.000883894f,0.326909f,0.121909f},{0.000689447f,0.326915f,0.120045f},{-0.00342617f,0.326694f,0.120045f}, - {-0.00477376f,0.326476f,0.120045f},{-0.00439897f,0.326544f,0.121909f},{-0.00264771f,0.326787f,0.121909f}, - {-0.00206419f,0.326841f,0.120045f},{-0.0087035f,0.325401f,0.120045f},{-0.00783085f,0.325699f,0.121909f}, - {-0.00741509f,0.325828f,0.120045f},{-0.00612769f,0.326175f,0.121909f},{-0.0061043f,0.326187f,0.120045f}, - {-0.0118616f,0.324015f,0.121909f},{-0.00988475f,0.324942f,0.121909f},{-0.0112024f,0.324347f,0.120045f}, - {-0.00996683f,0.324907f,0.120045f},{-0.0137506f,0.322924f,0.121909f},{-0.0135792f,0.323032f,0.120045f}, - {-0.0147152f,0.32228f,0.120045f},{-0.0124074f,0.323722f,0.120045f},{-0.016869f,0.320592f,0.120045f}, - {-0.0178817f,0.319658f,0.120045f},{-0.0172245f,0.320275f,0.121909f},{-0.0155417f,0.321676f,0.121909f}, - {-0.0158127f,0.321466f,0.120045f},{-0.0188441f,0.318669f,0.120045f},{-0.0197483f,0.317635f,0.120045f}, - {-0.0194435f,0.317996f,0.121909f},{-0.0183577f,0.319158f,0.121909f},{-0.0204427f,0.316757f,0.121909f}, - {-0.0205925f,0.316557f,0.120045f},{-0.0213756f,0.31544f,0.120045f},{-0.021363f,0.315459f,0.121909f}, - {-0.0220965f,0.314286f,0.120045f},{-0.0222011f,0.314106f,0.121909f},{-0.0227539f,0.313097f,0.120045f}, - {-0.0229535f,0.312704f,0.121909f},{-0.0236176f,0.311258f,0.121909f},{-0.0233469f,0.311877f,0.120045f}, - {-0.0238742f,0.310627f,0.120045f},{-0.0241907f,0.309774f,0.121909f},{-0.0243349f,0.309351f,0.120045f}, - {-0.0246619f,0.308254f,0.121909f},{-0.0250554f,0.306712f,0.121909f},{-0.0247277f,0.308051f,0.120045f}, - {-0.0253055f,0.30539f,0.120045f},{-0.0250516f,0.30673f,0.120045f},{-0.0254882f,0.304035f,0.120045f}, - {-0.0253087f,0.305369f,0.121909f},{-0.0254901f,0.304016f,0.121909f},{-0.0255986f,0.302667f,0.120045f}, - {-0.0256356f,0.301289f,0.120045f},{-0.0255992f,0.302654f,0.121909f},{-0.0256356f,0.301289f,0.121909f}, - {0.013579f,0.323032f,0.120045f},{0.0158124f,0.321467f,0.120045f},{0.0247034f,0.301289f,0.104011f}, - {0.0261017f,0.301289f,0.10513f},{0.0260447f,0.299565f,0.10513f},{0.0148773f,0.318617f,0.10252f}, - {0.0141264f,0.317418f,0.101401f},{0.0130365f,0.318311f,0.101401f},{0.0151609f,0.316449f,0.101401f}, - {0.0131883f,0.319935f,0.10252f},{0.0144813f,0.323005f,0.10513f},{0.0123517f,0.322682f,0.104011f}, - {0.0130346f,0.323903f,0.10513f},{0.0118953f,0.319127f,0.101401f},{0.0114195f,0.321068f,0.10252f}, - {0.0115354f,0.324703f,0.10513f},{0.00947527f,0.320522f,0.101401f},{0.00998868f,0.325403f,0.10513f}, - {0.00820499f,0.321097f,0.101401f},{0.0084f,0.326002f,0.10513f},{0.00689981f,0.321589f,0.101401f}, - {0.00556423f,0.321995f,0.101401f},{0.00677408f,0.326496f,0.10513f},{0.00420236f,0.322313f,0.101401f}, - {0.00511591f,0.326884f,0.10513f},{0.00343096f,0.327164f,0.10513f},{0.0028181f,0.322543f,0.101401f}, - {0.00172399f,0.327333f,0.10513f},{0.00141594f,0.322683f,0.101401f},{-2.32983e-017f,0.32739f,0.10513f}, - {0.0164604f,0.317121f,0.10252f},{0.016129f,0.315415f,0.101401f},{0.0179091f,0.315462f,0.10252f}, - {0.0170221f,0.314325f,0.101401f},{0.0178384f,0.313184f,0.101401f},{0.0192f,0.313657f,0.10252f}, - {0.018576f,0.311996f,0.101401f},{0.0203119f,0.311731f,0.10252f},{0.0192333f,0.310764f,0.101401f}, - {0.0212292f,0.309711f,0.10252f},{0.0198086f,0.309494f,0.101401f},{0.0252075f,0.308062f,0.10513f}, - {0.0255955f,0.306404f,0.10513f},{0.0242782f,0.305853f,0.104011f},{0.021942f,0.307626f,0.10252f}, - {0.0203001f,0.308189f,0.101401f},{0.0224458f,0.305508f,0.10252f},{0.0207061f,0.306853f,0.101401f}, - {0.0210249f,0.305491f,0.101401f},{0.0227423f,0.303385f,0.10252f},{0.0212547f,0.304107f,0.101401f}, - {0.0260448f,0.303012f,0.10513f},{0.022839f,0.301289f,0.10252f},{0.0213939f,0.302705f,0.101401f}, - {0.0212463f,0.298408f,0.101401f},{0.021392f,0.299845f,0.101401f},{0.0258753f,0.297858f,0.10513f}, - {0.0202358f,0.294203f,0.101401f},{0.0206669f,0.295581f,0.101401f},{0.0247131f,0.292889f,0.10513f}, - {0.0210042f,0.296985f,0.101401f},{0.0255955f,0.296173f,0.10513f},{0.0252074f,0.294514f,0.10513f}, - {0.0191008f,0.291549f,0.101401f},{0.0226142f,0.288254f,0.10513f},{0.0184019f,0.290285f,0.101401f}, - {0.0241148f,0.2913f,0.10513f},{0.0234144f,0.289753f,0.10513f},{0.019713f,0.292857f,0.101401f}, - {0.0207226f,0.285418f,0.10513f},{0.0196354f,0.284091f,0.10513f},{0.0167571f,0.287913f,0.101401f}, - {0.0176194f,0.289072f,0.101401f},{0.0217163f,0.286807f,0.10513f},{0.0158706f,0.280566f,0.10513f}, - {0.0137317f,0.284822f,0.101401f},{0.0171974f,0.281653f,0.10513f},{0.0148089f,0.285784f,0.101401f}, - {0.0158188f,0.286816f,0.101401f},{0.0184567f,0.282832f,0.10513f},{0.0101475f,0.282401f,0.101401f}, - {0.0113957f,0.283127f,0.101401f},{0.0114195f,0.281509f,0.10252f},{0.0125922f,0.283935f,0.101401f}, - {0.0123517f,0.279895f,0.104011f},{0.0130343f,0.278674f,0.10513f},{0.0109801f,0.279159f,0.104011f}, - {0.00954347f,0.278503f,0.104011f},{0.00998868f,0.277174f,0.10513f},{0.00804836f,0.277933f,0.104011f}, - {0.0115351f,0.277874f,0.10513f},{0.00650255f,0.277456f,0.104011f},{0.00677384f,0.276081f,0.10513f}, - {0.00491482f,0.277079f,0.104011f},{0.00839976f,0.276575f,0.10513f},{0.00329485f,0.276806f,0.104011f}, - {0.00511591f,0.275693f,0.10513f},{0.00343072f,0.275413f,0.10513f},{0.00172376f,0.275244f,0.10513f}, - {0.00165296f,0.276641f,0.104011f},{-2.64948e-017f,0.275187f,0.10513f},{-2.64948e-017f,0.276585f,0.104011f}, - {0.0144813f,0.279572f,0.10513f},{0.00454389f,0.278906f,0.10252f},{0.00475341f,0.280385f,0.101401f}, - {0.00601179f,0.279255f,0.10252f},{0.00304618f,0.278654f,0.10252f},{0.00333561f,0.28011f,0.101401f}, - {0.00190254f,0.279933f,0.101401f},{0.00152821f,0.278501f,0.10252f},{-2.64948e-017f,0.27845f,0.10252f}, - {0.00615037f,0.280749f,0.101401f},{0.00751875f,0.281209f,0.101401f},{0.00882321f,0.280223f,0.10252f}, - {0.00744093f,0.279696f,0.10252f},{0.00885315f,0.281761f,0.101401f},{0.0101514f,0.28083f,0.10252f}, - {0.0142636f,0.321458f,0.104011f},{0.0107068f,0.319865f,0.101401f},{0.0160914f,0.320032f,0.104011f}, - {0.0158708f,0.322011f,0.10513f},{0.0184567f,0.319745f,0.10513f},{0.0171976f,0.320924f,0.10513f}, - {0.0178031f,0.318415f,0.104011f},{0.0193705f,0.31662f,0.104011f},{0.0196355f,0.318486f,0.10513f}, - {0.0217163f,0.31577f,0.10513f},{0.0207227f,0.317159f,0.10513f},{0.0207667f,0.314668f,0.104011f}, - {0.0219695f,0.312585f,0.104011f},{0.0226143f,0.314323f,0.10513f},{0.0234145f,0.312824f,0.10513f}, - {0.0229621f,0.310399f,0.104011f},{0.0241148f,0.311277f,0.10513f},{0.0237331f,0.308145f,0.104011f}, - {0.0247132f,0.309688f,0.10513f},{0.0245992f,0.303558f,0.104011f},{0.0258754f,0.304719f,0.10513f}, - {0.0214407f,0.301289f,0.10513f},{0.0214407f,0.301289f,0.106062f},{0.0214037f,0.300029f,0.106062f}, - {0.0212935f,0.29878f,0.106062f},{0.0214037f,0.300029f,0.10513f},{0.0211114f,0.297545f,0.106062f}, - {0.0212936f,0.298781f,0.10513f},{0.0211115f,0.297545f,0.10513f},{0.0208586f,0.296326f,0.106062f}, - {0.0205363f,0.295127f,0.106062f},{0.0208587f,0.296327f,0.10513f},{0.0201457f,0.29395f,0.106062f}, - {0.0205363f,0.295127f,0.10513f},{0.0201457f,0.29395f,0.10513f},{0.0196879f,0.292798f,0.106062f}, - {0.0191643f,0.291674f,0.106062f},{0.019688f,0.292798f,0.10513f},{0.018576f,0.290582f,0.106062f}, - {0.0191643f,0.291674f,0.10513f},{0.018576f,0.290582f,0.10513f},{0.0179242f,0.289523f,0.106062f}, - {0.0172102f,0.288501f,0.106062f},{0.0179243f,0.289523f,0.10513f},{0.0164352f,0.287519f,0.106062f}, - {0.0172102f,0.288501f,0.10513f},{0.0164352f,0.287519f,0.10513f},{0.0155998f,0.28658f,0.106062f}, - {0.0147082f,0.285688f,0.106062f},{0.0156004f,0.28658f,0.10513f},{0.0137691f,0.284853f,0.106062f}, - {0.0147088f,0.285689f,0.10513f},{0.0137693f,0.284853f,0.10513f},{0.0127873f,0.284078f,0.106062f}, - {0.0117655f,0.283364f,0.106062f},{0.0127873f,0.284078f,0.10513f},{0.0107068f,0.282713f,0.106062f}, - {0.0117656f,0.283364f,0.10513f},{0.010707f,0.282713f,0.10513f},{0.00961408f,0.282124f,0.106062f}, - {0.00849036f,0.281601f,0.106062f},{0.0096143f,0.282124f,0.10513f},{0.0073385f,0.281143f,0.106062f}, - {0.00849054f,0.281601f,0.10513f},{0.00733859f,0.281143f,0.10513f},{0.00616138f,0.280752f,0.106062f}, - {0.00496191f,0.28043f,0.106062f},{0.00616144f,0.280752f,0.10513f},{0.00496208f,0.28043f,0.10513f}, - {0.00374334f,0.280177f,0.10513f},{0.00250813f,0.279995f,0.10513f},{0.00374312f,0.280177f,0.106062f}, - {0.00125925f,0.279885f,0.106062f},{0.00250793f,0.279995f,0.106062f},{-2.38691e-017f,0.279848f,0.106062f}, - {0.00125938f,0.279885f,0.10513f},{-2.38691e-017f,0.279848f,0.10513f},{0.0214037f,0.302548f,0.10513f}, - {0.0212935f,0.303797f,0.10513f},{0.0214037f,0.302548f,0.106062f},{0.0212936f,0.303796f,0.106062f}, - {0.0211114f,0.305032f,0.10513f},{0.0208586f,0.306251f,0.10513f},{0.0211115f,0.305032f,0.106062f}, - {0.0205363f,0.30745f,0.10513f},{0.0208587f,0.30625f,0.106062f},{0.0205363f,0.30745f,0.106062f}, - {0.0201457f,0.308627f,0.10513f},{0.0196879f,0.309779f,0.10513f},{0.0201457f,0.308627f,0.106062f}, - {0.0191643f,0.310903f,0.10513f},{0.019688f,0.309779f,0.106062f},{0.0191643f,0.310903f,0.106062f}, - {0.018576f,0.311996f,0.10513f},{0.0179242f,0.313054f,0.10513f},{0.018576f,0.311995f,0.106062f}, - {0.0172102f,0.314076f,0.10513f},{0.0179243f,0.313054f,0.106062f},{0.0172102f,0.314076f,0.106062f}, - {0.0164352f,0.315058f,0.10513f},{0.0155998f,0.315997f,0.10513f},{0.0164352f,0.315058f,0.106062f}, - {0.0147082f,0.316889f,0.10513f},{0.0156004f,0.315997f,0.106062f},{0.0147088f,0.316888f,0.106062f}, - {0.0137691f,0.317724f,0.10513f},{0.0127873f,0.318499f,0.10513f},{0.0137693f,0.317724f,0.106062f}, - {0.0117655f,0.319213f,0.10513f},{0.0127873f,0.318499f,0.106062f},{0.0117656f,0.319213f,0.106062f}, - {0.0107068f,0.319865f,0.10513f},{0.00961408f,0.320453f,0.10513f},{0.010707f,0.319865f,0.106062f}, - {0.00849036f,0.320976f,0.10513f},{0.0096143f,0.320453f,0.106062f},{0.00849054f,0.320976f,0.106062f}, - {0.0073385f,0.321434f,0.10513f},{0.00616138f,0.321825f,0.10513f},{0.00733859f,0.321434f,0.106062f}, - {0.00496191f,0.322147f,0.10513f},{0.00616144f,0.321825f,0.106062f},{0.00374334f,0.3224f,0.106062f}, - {0.00496208f,0.322147f,0.106062f},{0.00374312f,0.3224f,0.10513f},{0.00250813f,0.322582f,0.106062f}, - {0.00250793f,0.322582f,0.10513f},{0.00125925f,0.322692f,0.10513f},{0.00125938f,0.322692f,0.106062f}, - {-2.64948e-017f,0.322729f,0.10513f},{-2.64948e-017f,0.322729f,0.106062f},{0.0261017f,0.301289f,0.106062f}, - {0.0261017f,0.301289f,0.120045f},{0.0260652f,0.299908f,0.120045f},{0.0259565f,0.298538f,0.120045f}, - {0.0260653f,0.299908f,0.106062f},{0.0257765f,0.297181f,0.120045f},{0.0259565f,0.298538f,0.106062f}, - {0.0257766f,0.297181f,0.106062f},{0.0255265f,0.295839f,0.120045f},{0.0252074f,0.294514f,0.120045f}, - {0.0255265f,0.295839f,0.106062f},{0.0248204f,0.293211f,0.120045f},{0.0252075f,0.294515f,0.106062f}, - {0.0248205f,0.293211f,0.106062f},{0.0243664f,0.29193f,0.120045f},{0.0238467f,0.290676f,0.120045f}, - {0.0243666f,0.291931f,0.106062f},{0.0232623f,0.289449f,0.120045f},{0.0238468f,0.290676f,0.106062f}, - {0.0232624f,0.28945f,0.106062f},{0.0226142f,0.288254f,0.120045f},{0.0219036f,0.287092f,0.120045f}, - {0.0226143f,0.288254f,0.106062f},{0.0211314f,0.285966f,0.120045f},{0.0219036f,0.287092f,0.106062f}, - {0.0211315f,0.285967f,0.106062f},{0.0202988f,0.284879f,0.120045f},{0.0194069f,0.283834f,0.120045f}, - {0.0202989f,0.284879f,0.106062f},{0.0184567f,0.282832f,0.120045f},{0.0194069f,0.283834f,0.106062f}, - {0.0184567f,0.282832f,0.106062f},{0.0174549f,0.281882f,0.120045f},{0.0164091f,0.28099f,0.120045f}, - {0.0174549f,0.281882f,0.106062f},{0.015322f,0.280157f,0.120045f},{0.0164092f,0.28099f,0.106062f}, - {0.0153222f,0.280157f,0.106062f},{0.0141962f,0.279385f,0.120045f},{0.0130343f,0.278674f,0.120045f}, - {0.0141964f,0.279385f,0.106062f},{0.0118389f,0.278026f,0.120045f},{0.0130346f,0.278674f,0.106062f}, - {0.0118391f,0.278026f,0.106062f},{0.0106125f,0.277442f,0.120045f},{0.00935782f,0.276922f,0.120045f}, - {0.0106128f,0.277442f,0.106062f},{0.0080774f,0.276468f,0.120045f},{0.00935809f,0.276922f,0.106062f}, - {0.00807765f,0.276468f,0.106062f},{0.00677384f,0.276081f,0.120045f},{0.00544975f,0.275762f,0.120045f}, - {0.00677408f,0.276081f,0.106062f},{0.00410773f,0.275512f,0.120045f},{0.00544996f,0.275762f,0.106062f}, - {0.0041079f,0.275512f,0.106062f},{0.00275036f,0.275332f,0.120045f},{0.00138025f,0.275223f,0.120045f}, - {0.00275048f,0.275332f,0.106062f},{-2.32983e-017f,0.275187f,0.120045f},{0.00138032f,0.275223f,0.106062f}, - {-2.32983e-017f,0.275187f,0.106062f},{0.0260652f,0.302669f,0.106062f},{0.0259565f,0.304039f,0.106062f}, - {0.0260653f,0.302669f,0.120045f},{0.0259565f,0.304039f,0.120045f},{0.0257765f,0.305396f,0.106062f}, - {0.0255265f,0.306739f,0.106062f},{0.0257766f,0.305396f,0.120045f},{0.0252074f,0.308063f,0.106062f}, - {0.0255265f,0.306738f,0.120045f},{0.0252075f,0.308062f,0.120045f},{0.0248204f,0.309366f,0.106062f}, - {0.0243664f,0.310647f,0.106062f},{0.0248205f,0.309366f,0.120045f},{0.0238467f,0.311901f,0.106062f}, - {0.0243666f,0.310646f,0.120045f},{0.0238468f,0.311901f,0.120045f},{0.0232623f,0.313128f,0.106062f}, - {0.0226142f,0.314323f,0.106062f},{0.0232624f,0.313127f,0.120045f},{0.0219036f,0.315485f,0.106062f}, - {0.0226143f,0.314323f,0.120045f},{0.0219036f,0.315485f,0.120045f},{0.0211314f,0.316611f,0.106062f}, - {0.0202988f,0.317698f,0.106062f},{0.0211315f,0.316611f,0.120045f},{0.0194069f,0.318743f,0.106062f}, - {0.0202989f,0.317698f,0.120045f},{0.0194069f,0.318743f,0.120045f},{0.0184567f,0.319745f,0.106062f}, - {0.0174549f,0.320695f,0.106062f},{0.0184567f,0.319745f,0.120045f},{0.0164091f,0.321587f,0.106062f}, - {0.0174549f,0.320695f,0.120045f},{0.0164092f,0.321587f,0.120045f},{0.015322f,0.32242f,0.106062f}, - {0.0141962f,0.323192f,0.106062f},{0.0153222f,0.32242f,0.120045f},{0.0130343f,0.323903f,0.106062f}, - {0.0141964f,0.323192f,0.120045f},{0.0130346f,0.323903f,0.120045f},{0.0118389f,0.324551f,0.106062f}, - {0.0106125f,0.325135f,0.106062f},{0.0118391f,0.324551f,0.120045f},{0.00935782f,0.325655f,0.106062f}, - {0.0106128f,0.325135f,0.120045f},{0.00935809f,0.325655f,0.120045f},{0.0080774f,0.326109f,0.106062f}, - {0.00677384f,0.326496f,0.106062f},{0.00807765f,0.326109f,0.120045f},{0.00544975f,0.326815f,0.106062f}, - {0.00677408f,0.326496f,0.120045f},{0.00544996f,0.326815f,0.120045f},{0.00410773f,0.327065f,0.106062f}, - {0.00275036f,0.327245f,0.106062f},{0.0041079f,0.327065f,0.120045f},{0.00138025f,0.327354f,0.106062f}, - {0.00275048f,0.327245f,0.120045f},{0.00138032f,0.327354f,0.120045f},{-2.64948e-017f,0.32739f,0.106062f}, - {-2.64948e-017f,0.32739f,0.120045f},{0.0121333f,0.298398f,0.125638f},{-0.0149893f,0.307258f,0.125638f}, - {-0.0150309f,0.307814f,0.125638f},{-0.019126f,0.30503f,0.125638f},{-0.00810759f,0.286008f,0.125638f}, - {-0.00862289f,0.316224f,0.125638f},{-0.00372901f,0.31434f,0.125638f},{-0.00810797f,0.316569f,0.125638f}, - {-0.0122191f,0.315775f,0.125638f},{-0.012803f,0.315983f,0.125638f},{-0.0130106f,0.311605f,0.125638f}, - {0.00523604f,0.311135f,0.125638f},{0.00485519f,0.311216f,0.125638f},{-0.0018645f,0.317568f,0.125638f}, - {-0.00378085f,0.322866f,0.125638f},{-0.00629776f,0.320341f,0.125638f},{0.00943824f,0.311044f,0.125638f}, - {0.00917901f,0.31595f,0.125638f},{0.00862289f,0.316224f,0.125638f},{0.00897792f,0.31073f,0.125638f}, - {0.0172458f,0.301289f,0.125638f},{0.0172871f,0.301907f,0.125638f},{0.010994f,0.3156f,0.125638f}, - {0.0110243f,0.311532f,0.125638f},{0.0115815f,0.311532f,0.125638f},{0.0207988f,0.296759f,0.125638f}, - {0.0210452f,0.295205f,0.125638f},{0.021411f,0.296654f,0.125638f},{0.0174099f,0.300063f,0.125638f}, - {0.017287f,0.30067f,0.125638f},{0.0136278f,0.297678f,0.125638f},{0.019126f,0.297548f,0.125638f}, - {0.0149893f,0.295319f,0.125638f},{0.0150309f,0.294763f,0.125638f},{0.0202118f,0.296955f,0.125638f}, - {0.0149893f,0.294207f,0.125638f},{0.0148647f,0.293665f,0.125638f},{0.0200086f,0.292369f,0.125638f}, - {0.00994038f,0.298234f,0.125638f},{0.0104733f,0.298402f,0.125638f},{0.0143811f,0.292664f,0.125638f}, - {0.0185801f,0.289683f,0.125638f},{0.0193415f,0.291002f,0.125638f},{0.0205774f,0.293774f,0.125638f}, - {0.0196492f,0.297216f,0.125638f},{0.0167976f,0.287226f,0.125638f},{0.013354f,0.28631f,0.125638f}, - {0.0157911f,0.286105f,0.125638f},{0.0136271f,0.291848f,0.125638f},{0.0138626f,0.285956f,0.125638f}, - {0.0143217f,0.285539f,0.125638f},{0.0147191f,0.285063f,0.125638f},{0.0146599f,0.293146f,0.125638f}, - {0.0149896f,0.308369f,0.125638f},{0.0205772f,0.308804f,0.125638f},{0.0148655f,0.295862f,0.125638f}, - {0.0186543f,0.297949f,0.125638f},{0.0182401f,0.298411f,0.125638f},{0.0178906f,0.298923f,0.125638f}, - {0.0143836f,0.296863f,0.125638f},{0.0146621f,0.296381f,0.125638f},{0.0105684f,0.302675f,0.125638f}, - {0.01083f,0.302385f,0.125638f},{0.0174101f,0.302515f,0.125638f},{0.0102536f,0.302903f,0.125638f}, - {0.00810759f,0.316569f,0.125638f},{0.00764282f,0.316979f,0.125638f},{0.0191272f,0.305029f,0.125638f}, - {0.0133515f,0.316269f,0.125638f},{0.0157911f,0.316472f,0.125638f},{0.013859f,0.316626f,0.125638f}, - {0.0143221f,0.317036f,0.125638f},{0.0147191f,0.317514f,0.125638f},{0.0126646f,0.311285f,0.125638f}, - {0.0128028f,0.315982f,0.125638f},{0.0122189f,0.315774f,0.125638f},{0.0116123f,0.315646f,0.125638f}, - {0.0121324f,0.311449f,0.125638f},{0.014035f,0.31035f,0.125638f},{0.0177287f,0.314157f,0.125638f}, - {0.013627f,0.310729f,0.125638f},{0.0131664f,0.311043f,0.125638f},{0.0193407f,0.311577f,0.125638f}, - {0.018579f,0.312896f,0.125638f},{0.0146599f,0.309431f,0.125638f},{0.0167966f,0.315352f,0.125638f}, - {0.0196491f,0.305364f,0.125638f},{0.02021f,0.305627f,0.125638f},{0.0210452f,0.307372f,0.125638f}, - {0.0208003f,0.305817f,0.125638f},{0.021411f,0.305923f,0.125638f},{0.0143816f,0.309913f,0.125638f}, - {0.0200082f,0.31021f,0.125638f},{0.0148642f,0.308912f,0.125638f},{-0.00635281f,0.320959f,0.125638f}, - {-0.00525411f,0.322556f,0.125638f},{-0.00647672f,0.321566f,0.125638f},{0.00723674f,0.317448f,0.125638f}, - {0.00689651f,0.317966f,0.125638f},{0.018655f,0.304627f,0.125638f},{0.00632427f,0.319723f,0.125638f}, - {0.00643592f,0.319114f,0.125638f},{0.0178912f,0.303655f,0.125638f},{0.0182407f,0.304166f,0.125638f}, - {-0.010376f,0.315635f,0.125638f},{-0.0109947f,0.3156f,0.125638f},{-0.00838954f,0.299674f,0.125638f}, - {-0.00368715f,0.314896f,0.125638f},{-0.00356297f,0.315439f,0.125638f},{-0.00764334f,0.316979f,0.125638f}, - {-0.00632322f,0.319723f,0.125638f},{-0.00643547f,0.319113f,0.125638f},{-0.00232474f,0.317255f,0.125638f}, - {-0.000829763f,0.317974f,0.125638f},{-0.00227994f,0.323076f,0.125638f},{-0.00136226f,0.31781f,0.125638f}, - {-0.00662778f,0.318524f,0.125638f},{-0.00273315f,0.316876f,0.125638f},{0.00377962f,0.322867f,0.125638f}, - {0.00136248f,0.31781f,0.125638f},{0.00027877f,0.318055f,0.125638f},{0.000760576f,0.323182f,0.125638f}, - {-0.000278327f,0.318056f,0.125638f},{0.00629503f,0.320343f,0.125638f},{0.00525411f,0.322556f,0.125638f}, - {-0.00669182f,0.322148f,0.125638f},{0.00634749f,0.32096f,0.125638f},{0.0064786f,0.321566f,0.125638f}, - {0.00669182f,0.322148f,0.125638f},{-0.0030806f,0.31644f,0.125638f},{-0.00689664f,0.317965f,0.125638f}, - {-0.00335928f,0.315958f,0.125638f},{0.00227826f,0.323077f,0.125638f},{0.000829582f,0.317973f,0.125638f}, - {-0.0146621f,0.306197f,0.125638f},{-0.0178906f,0.303654f,0.125638f},{-0.0143836f,0.305714f,0.125638f}, - {0.00408395f,0.311134f,0.125638f},{0.00446533f,0.311216f,0.125638f},{-0.00917948f,0.31595f,0.125638f}, - {-0.0130106f,0.300131f,0.125638f},{-0.00632427f,0.282854f,0.125638f},{-0.00643592f,0.283463f,0.125638f}, - {-0.0097673f,0.315753f,0.125638f},{-0.0205774f,0.308803f,0.125638f},{-0.0210452f,0.307372f,0.125638f}, - {-0.0196492f,0.305361f,0.125638f},{-0.0136271f,0.310729f,0.125638f},{-0.0177299f,0.314156f,0.125638f}, - {-0.0140346f,0.310349f,0.125638f},{-0.00590935f,0.310746f,0.125638f},{-0.0207988f,0.305818f,0.125638f}, - {-0.021411f,0.305923f,0.125638f},{-0.0140362f,0.305278f,0.125638f},{-0.0174099f,0.302514f,0.125638f}, - {-0.0136278f,0.304899f,0.125638f},{-0.0182401f,0.304166f,0.125638f},{-0.0148655f,0.306715f,0.125638f}, - {-0.0186543f,0.304628f,0.125638f},{-0.0202118f,0.305622f,0.125638f},{-0.0149893f,0.30837f,0.125638f}, - {-0.0148647f,0.308913f,0.125638f},{-0.0200086f,0.310208f,0.125638f},{-0.0193415f,0.311575f,0.125638f}, - {-0.0143811f,0.309913f,0.125638f},{-0.0185801f,0.312894f,0.125638f},{-0.0146599f,0.309431f,0.125638f}, - {-0.013354f,0.316267f,0.125638f},{-0.0157911f,0.316472f,0.125638f},{-0.0167976f,0.315351f,0.125638f}, - {-0.0138626f,0.316622f,0.125638f},{-0.00976653f,0.286824f,0.125638f},{-0.00917901f,0.286627f,0.125638f}, - {-0.00994062f,0.291292f,0.125638f},{-0.0143217f,0.317038f,0.125638f},{-0.0147191f,0.317514f,0.125638f}, - {-0.00636453f,0.310119f,0.125638f},{-0.00648481f,0.309748f,0.125638f},{-0.0176127f,0.299476f,0.125638f}, - {-0.0178912f,0.298922f,0.125638f},{-0.0116126f,0.315647f,0.125638f},{-0.00862289f,0.286353f,0.125638f}, - {-0.00943824f,0.291533f,0.125638f},{-0.00315227f,0.29212f,0.125638f},{-0.00295749f,0.292458f,0.125638f}, - {-0.0104733f,0.291128f,0.125638f},{-0.0196491f,0.297213f,0.125638f},{-0.0205772f,0.293773f,0.125638f}, - {-0.0167966f,0.287225f,0.125638f},{-0.0157911f,0.286105f,0.125638f},{-0.0130106f,0.288657f,0.125638f}, - {-0.0122189f,0.286803f,0.125638f},{-0.0116123f,0.286931f,0.125638f},{-0.017287f,0.301907f,0.125638f}, - {-0.0174101f,0.300062f,0.125638f},{-0.0172458f,0.301289f,0.125638f},{-0.00723674f,0.285129f,0.125638f}, - {-0.00689651f,0.284611f,0.125638f},{-0.013859f,0.285951f,0.125638f},{-0.0133515f,0.286308f,0.125638f}, - {-0.0115815f,0.291045f,0.125638f},{-0.0121324f,0.291128f,0.125638f},{-0.014035f,0.292227f,0.125638f}, - {-0.0177287f,0.28842f,0.125638f},{-0.013627f,0.291848f,0.125638f},{-0.0143816f,0.292664f,0.125638f}, - {-0.018579f,0.289681f,0.125638f},{-0.0193407f,0.291f,0.125638f},{-0.0146599f,0.293147f,0.125638f}, - {-0.0149896f,0.294208f,0.125638f},{-0.0131664f,0.291534f,0.125638f},{-0.0126646f,0.291292f,0.125638f}, - {-0.0210452f,0.295205f,0.125638f},{-0.0143221f,0.285541f,0.125638f},{-0.02021f,0.29695f,0.125638f}, - {-0.0208003f,0.29676f,0.125638f},{-0.0147191f,0.285063f,0.125638f},{-0.021411f,0.296654f,0.125638f}, - {-0.0110243f,0.291045f,0.125638f},{0.00874495f,0.303061f,0.125638f},{0.00838954f,0.302903f,0.125638f}, - {-0.00523587f,0.291442f,0.125638f},{-0.00485544f,0.291361f,0.125638f},{0.0063639f,0.293974f,0.125638f}, - {0.00616894f,0.294312f,0.125638f},{-0.00629503f,0.282234f,0.125638f},{-0.00377962f,0.27971f,0.125638f}, - {0.0099371f,0.288657f,0.125638f},{0.0109947f,0.286977f,0.125638f},{0.0116126f,0.286931f,0.125638f}, - {0.00356297f,0.287138f,0.125638f},{0.00764334f,0.285598f,0.125638f},{0.00368715f,0.287681f,0.125638f}, - {0.0097673f,0.286824f,0.125638f},{0.00917948f,0.286627f,0.125638f},{0.00643547f,0.283464f,0.125638f}, - {0.00232474f,0.285323f,0.125638f},{0.00632322f,0.282854f,0.125638f},{0.00810797f,0.286008f,0.125638f}, - {0.00862289f,0.286353f,0.125638f},{0.00372901f,0.288237f,0.125638f},{0.00378085f,0.279711f,0.125638f}, - {0.00629776f,0.282236f,0.125638f},{0.0018645f,0.285009f,0.125638f},{0.0111453f,0.301677f,0.125638f}, - {0.0110251f,0.302047f,0.125638f},{-0.0200082f,0.292368f,0.125638f},{-0.0148642f,0.293665f,0.125638f}, - {-0.010994f,0.286978f,0.125638f},{0.00773683f,0.308915f,0.125638f},{-0.0110251f,0.30053f,0.125638f}, - {-0.0111453f,0.3009f,0.125638f},{-0.00764282f,0.285598f,0.125638f},{-0.0105684f,0.299902f,0.125638f}, - {0.00807379f,0.302673f,0.125638f},{-0.000829582f,0.284604f,0.125638f},{-0.00136248f,0.284767f,0.125638f}, - {-0.00227826f,0.2795f,0.125638f},{-0.00027877f,0.284522f,0.125638f},{-0.000760576f,0.279395f,0.125638f}, - {0.000278327f,0.284521f,0.125638f},{0.000829763f,0.284603f,0.125638f},{0.00227994f,0.279501f,0.125638f}, - {0.00136226f,0.284767f,0.125638f},{-0.00525411f,0.280021f,0.125638f},{-0.00634749f,0.281617f,0.125638f}, - {-0.0064786f,0.281011f,0.125638f},{-0.00669182f,0.280429f,0.125638f},{0.00335928f,0.286619f,0.125638f}, - {0.0030806f,0.286137f,0.125638f},{0.00689664f,0.284612f,0.125638f},{0.00273315f,0.285701f,0.125638f}, - {0.00662778f,0.284053f,0.125638f},{0.00525411f,0.280021f,0.125638f},{0.00635281f,0.281618f,0.125638f}, - {0.00669182f,0.280429f,0.125638f},{0.00647672f,0.281011f,0.125638f},{0.0176127f,0.303101f,0.125638f}, - {0.00994062f,0.311285f,0.125638f},{0.0103751f,0.315635f,0.125638f},{0.00976653f,0.315753f,0.125638f}, - {0.0104733f,0.311449f,0.125638f},{0.00912617f,0.303143f,0.125638f},{0.0095162f,0.303143f,0.125638f}, - {0.00989767f,0.303062f,0.125638f},{0.0140362f,0.297299f,0.125638f},{0.0110245f,0.298472f,0.125638f}, - {0.0177299f,0.288421f,0.125638f},{0.0140346f,0.292228f,0.125638f},{0.00822623f,0.309913f,0.125638f}, - {-0.00408474f,0.307589f,0.125638f},{-0.00446554f,0.307508f,0.125638f},{-0.018655f,0.29795f,0.125638f}, - {-0.0191272f,0.297548f,0.125638f},{0.00315227f,0.310457f,0.125638f},{0.00295755f,0.310119f,0.125638f}, - {0.00341361f,0.307976f,0.125638f},{0.00749845f,0.301676f,0.125638f},{0.00761862f,0.302046f,0.125638f}, - {0.0126655f,0.298234f,0.125638f},{0.0131672f,0.297992f,0.125638f},{0.0115822f,0.298477f,0.125638f}, - {0.0122191f,0.286802f,0.125638f},{0.012803f,0.286594f,0.125638f},{0.00590935f,0.291831f,0.125638f}, - {0.00636453f,0.292458f,0.125638f},{0.00648481f,0.292829f,0.125638f},{-0.00408362f,0.291443f,0.125638f}, - {-0.00446544f,0.291361f,0.125638f},{-0.00807379f,0.299904f,0.125638f},{-0.00430393f,0.299506f,0.125638f}, - {0.00283746f,0.29759f,0.125638f},{0.00408474f,0.294989f,0.125638f},{0.00446554f,0.29507f,0.125638f}, - {-0.00874495f,0.299516f,0.125638f},{-0.0172871f,0.30067f,0.125638f},{0.00761515f,0.30837f,0.125638f}, - {0.0085695f,0.310351f,0.125638f},{-0.00723717f,0.317447f,0.125638f},{-0.000762504f,0.323182f,0.125638f}, - {0.00662806f,0.318524f,0.125638f},{0.00341281f,0.310746f,0.125638f},{0.00372825f,0.310976f,0.125638f}, - {0.00279662f,0.309361f,0.125638f},{0.00283723f,0.309748f,0.125638f},{0.00283764f,0.308973f,0.125638f}, - {-0.00335595f,0.312725f,0.125638f},{0.00795154f,0.309428f,0.125638f},{-0.00369782f,0.298452f,0.125638f}, - {0.00295819f,0.308603f,0.125638f},{0.00315308f,0.308265f,0.125638f},{-0.00523619f,0.307588f,0.125638f}, - {-0.00616894f,0.308265f,0.125638f},{-0.0063639f,0.308603f,0.125638f},{-0.00273651f,0.311802f,0.125638f}, - {-0.00232523f,0.311424f,0.125638f},{-0.00356376f,0.313241f,0.125638f},{-0.0131672f,0.304585f,0.125638f}, - {-0.0176123f,0.3031f,0.125638f},{-0.00616972f,0.310457f,0.125638f},{-0.00648443f,0.308973f,0.125638f}, - {-0.00652539f,0.309361f,0.125638f},{-0.00559278f,0.307747f,0.125638f},{-0.00590766f,0.307976f,0.125638f}, - {-0.0048551f,0.307507f,0.125638f},{-0.00307294f,0.312244f,0.125638f},{-0.0110245f,0.304105f,0.125638f}, - {-0.0095162f,0.299434f,0.125638f},{-0.00368758f,0.313784f,0.125638f},{-0.00897792f,0.291847f,0.125638f}, - {-0.0103751f,0.286942f,0.125638f},{-0.0128028f,0.286595f,0.125638f},{-0.0182407f,0.298411f,0.125638f}, - {-0.01083f,0.300192f,0.125638f},{-0.0102536f,0.299674f,0.125638f},{-0.00912617f,0.299435f,0.125638f}, - {-0.00989767f,0.299515f,0.125638f},{-0.0115822f,0.3041f,0.125638f},{-0.0121333f,0.304179f,0.125638f}, - {-0.0104733f,0.304175f,0.125638f},{-0.00994038f,0.304343f,0.125638f},{-0.00462174f,0.30068f,0.125638f}, - {-0.00761862f,0.300531f,0.125638f},{-0.00449935f,0.300083f,0.125638f},{-0.00749845f,0.300901f,0.125638f}, - {-0.00761515f,0.294207f,0.125638f},{-0.0085695f,0.292226f,0.125638f},{-0.00822623f,0.292664f,0.125638f}, - {-0.00773683f,0.293662f,0.125638f},{-0.00403697f,0.298958f,0.125638f},{-0.0126655f,0.304343f,0.125638f}, - {0.00559278f,0.29483f,0.125638f},{0.00723717f,0.28513f,0.125638f},{0.000762504f,0.279395f,0.125638f}, - {-0.00662806f,0.284053f,0.125638f},{-0.00341302f,0.29183f,0.125638f},{-0.00372824f,0.291601f,0.125638f}, - {-0.00279657f,0.293216f,0.125638f},{-0.00283721f,0.292829f,0.125638f},{-0.0028377f,0.293604f,0.125638f}, - {0.00120604f,0.296786f,0.125638f},{-0.00795154f,0.293149f,0.125638f},{0.003698f,0.298451f,0.125638f}, - {0.00329612f,0.297992f,0.125638f},{0.0048551f,0.29507f,0.125638f},{0.00523619f,0.294989f,0.125638f}, - {0.00781324f,0.302384f,0.125638f},{0.00430606f,0.299504f,0.125638f},{0.00356376f,0.289336f,0.125638f}, - {-0.00283752f,0.297591f,0.125638f},{-0.00329569f,0.297993f,0.125638f},{0.00178338f,0.296982f,0.125638f}, - {0.000608186f,0.296667f,0.125638f},{-2.76333e-017f,0.296628f,0.125638f},{-0.0034133f,0.294601f,0.125638f}, - {-0.00233082f,0.297253f,0.125638f},{-0.00295825f,0.293975f,0.125638f},{-0.00120688f,0.296787f,0.125638f}, - {-0.00315303f,0.294312f,0.125638f},{0.0176123f,0.299477f,0.125638f},{0.010376f,0.286942f,0.125638f}, - {0.00616972f,0.29212f,0.125638f},{0.00648443f,0.293604f,0.125638f},{0.00652539f,0.293216f,0.125638f}, - {0.00449528f,0.300083f,0.125638f},{0.00590766f,0.294602f,0.125638f},{0.00273651f,0.290775f,0.125638f}, - {0.00335595f,0.289852f,0.125638f},{0.00232523f,0.291153f,0.125638f},{0.00307294f,0.290333f,0.125638f}, - {0.00461789f,0.30068f,0.125638f},{0.00403651f,0.298958f,0.125638f},{0.00368758f,0.288793f,0.125638f}, - {0.00233031f,0.297252f,0.125638f},{-0.00060875f,0.296667f,0.125638f},{-0.00178418f,0.296983f,0.125638f}, - {-0.00781324f,0.300193f,0.125638f},{0.0216239f,0.295038f,0.12559f},{0.0211432f,0.293567f,0.12559f}, - {0.0217239f,0.293355f,0.125434f},{0.0192916f,0.285138f,0.12373f},{0.0203623f,0.286511f,0.12373f}, - {0.0200519f,0.286736f,0.12429f},{0.0210134f,0.288163f,0.12429f},{0.0213388f,0.28796f,0.12373f}, - {0.0186268f,0.285695f,0.124775f},{0.0181976f,0.286054f,0.125161f},{0.0175107f,0.284451f,0.124775f}, - {0.016671f,0.285259f,0.125434f},{0.0158563f,0.28381f,0.125232f},{0.0171072f,0.284839f,0.125161f}, - {0.0151138f,0.284628f,0.125592f},{0.0154952f,0.284208f,0.125455f},{0.0162253f,0.285687f,0.12559f}, - {0.0218746f,0.289655f,0.12429f},{0.0222133f,0.289475f,0.12373f},{0.0226291f,0.291201f,0.12429f}, - {0.0215683f,0.287817f,0.123126f},{0.0217015f,0.287733f,0.122512f},{0.0224522f,0.289348f,0.123126f}, - {0.021363f,0.287118f,0.121909f},{0.0222009f,0.288471f,0.121909f},{0.0207085f,0.28626f,0.122512f}, - {0.0204426f,0.28582f,0.121909f},{0.0196196f,0.284864f,0.122512f},{0.0225908f,0.289274f,0.122512f}, - {0.0229535f,0.289873f,0.121909f},{0.0183695f,0.283407f,0.121909f},{0.0194435f,0.284581f,0.121909f}, - {0.018444f,0.283554f,0.122512f},{0.0172245f,0.282302f,0.121909f},{0.0171931f,0.282336f,0.122497f}, - {0.02337f,0.290871f,0.122512f},{0.0236175f,0.291319f,0.121909f},{0.0240343f,0.292511f,0.122512f}, - {0.0241903f,0.292804f,0.121909f},{0.024671f,0.294321f,0.121909f},{0.0245807f,0.294183f,0.122512f}, - {0.0250097f,0.295875f,0.122497f},{0.024876f,0.295904f,0.123065f},{0.0229794f,0.291045f,0.12373f}, - {0.0181357f,0.28385f,0.12373f},{0.0189975f,0.285384f,0.12429f},{0.0250554f,0.295865f,0.121909f}, - {0.0232266f,0.290935f,0.123126f},{0.0233369f,0.294543f,0.124775f},{0.0235497f,0.296191f,0.124929f}, - {0.0227992f,0.294698f,0.125161f},{0.0239879f,0.296096f,0.124546f},{0.0238014f,0.294408f,0.12429f}, - {0.0209535f,0.290145f,0.125161f},{0.0216762f,0.291626f,0.125161f},{0.0211235f,0.291872f,0.125434f}, - {0.0219851f,0.29653f,0.125592f},{0.0244299f,0.294227f,0.123126f},{0.0246584f,0.295951f,0.123602f}, - {0.0241699f,0.294302f,0.12373f},{0.0238868f,0.292565f,0.123126f},{0.0205814f,0.286352f,0.123126f}, - {0.0194991f,0.284964f,0.123126f},{0.0183308f,0.283663f,0.123126f},{0.0171019f,0.282437f,0.123062f}, - {0.02436f,0.296016f,0.1241f},{0.0236326f,0.292658f,0.12373f},{0.0169523f,0.282602f,0.1236f}, - {0.0222178f,0.294866f,0.125434f},{0.0230629f,0.296296f,0.125233f},{0.0232723f,0.29279f,0.12429f}, - {0.0196606f,0.28702f,0.124775f},{0.0178592f,0.284116f,0.12429f},{0.0167476f,0.282827f,0.124098f}, - {0.0221874f,0.291398f,0.124775f},{0.0228181f,0.292956f,0.124775f},{0.0214477f,0.289882f,0.124775f}, - {0.0206034f,0.288419f,0.124775f},{0.0164907f,0.283111f,0.124546f},{0.0222924f,0.293148f,0.125161f}, - {0.0201286f,0.288716f,0.125161f},{0.0192076f,0.287349f,0.125161f},{0.0161909f,0.283441f,0.124927f}, - {0.0225375f,0.29641f,0.125456f},{0.0204192f,0.290429f,0.125434f},{0.0196153f,0.289036f,0.125434f}, - {0.0187178f,0.287705f,0.125434f},{0.0172595f,0.286839f,0.12559f},{0.0177335f,0.286443f,0.125434f}, - {0.0205588f,0.292124f,0.12559f},{0.0198733f,0.290719f,0.12559f},{0.019091f,0.289364f,0.12559f}, - {0.0182174f,0.288068f,0.12559f},{0.000885136f,0.275874f,0.123126f},{0.00261846f,0.276266f,0.12373f}, - {0.000875717f,0.276144f,0.12373f},{0.00441602f,0.276086f,0.122512f},{0.00266296f,0.275841f,0.122512f}, - {0.00264799f,0.27579f,0.121909f},{0.00257853f,0.276647f,0.12429f},{0.000884103f,0.275668f,0.121909f}, - {0.00609912f,0.276601f,0.123126f},{0.00613678f,0.276448f,0.122512f},{0.0077748f,0.277053f,0.123065f}, - {0.00612578f,0.276411f,0.121909f},{0.00781658f,0.276923f,0.122497f},{0.00539858f,0.279436f,0.12559f}, - {0.00388481f,0.279117f,0.12559f},{0.00399151f,0.278508f,0.125434f},{0.00783085f,0.276878f,0.121909f}, - {0.00439916f,0.276033f,0.121909f},{0.00749724f,0.277918f,0.124546f},{0.00582624f,0.277705f,0.124775f}, - {0.00594221f,0.277236f,0.12429f},{0.00246996f,0.277685f,0.125161f},{0.00240697f,0.278287f,0.125434f}, - {0.000826054f,0.27757f,0.125161f},{0.005692f,0.278249f,0.125161f},{0.00736026f,0.278345f,0.124929f}, - {0.000890602f,0.275717f,0.122512f},{0.00264662f,0.275997f,0.123126f},{-0.00427461f,0.276884f,0.12429f}, - {-0.00603421f,0.276863f,0.12373f},{-0.0043408f,0.276506f,0.12373f},{0.00687127f,0.279869f,0.125592f}, - {-0.000860185f,0.276528f,0.12429f},{-0.00261652f,0.276265f,0.12373f},{-0.000873503f,0.276144f,0.12373f}, - {0.000862365f,0.276528f,0.12429f},{-0.00582624f,0.277705f,0.124775f},{-0.00419119f,0.27736f,0.124775f}, - {-0.00409462f,0.277912f,0.125161f},{-0.00554685f,0.278836f,0.125434f},{-0.00720884f,0.278817f,0.125232f}, - {-0.005692f,0.278249f,0.125161f},{-0.00257663f,0.276647f,0.12429f},{-0.00687127f,0.279869f,0.125592f}, - {-0.00704464f,0.279329f,0.125455f},{-0.00539858f,0.279436f,0.12559f},{-0.00088835f,0.275717f,0.122512f}, - {-0.000882898f,0.275874f,0.123126f},{-0.000883894f,0.275668f,0.121909f},{-0.002661f,0.27584f,0.122512f}, - {-0.00264771f,0.27579f,0.121909f},{-0.00441458f,0.276085f,0.122512f},{-0.00439897f,0.276033f,0.121909f}, - {-0.00612769f,0.276402f,0.121909f},{-0.00613678f,0.276448f,0.122512f},{-0.00783085f,0.276878f,0.121909f}, - {0.00770679f,0.277265f,0.123602f},{0.00603421f,0.276863f,0.12373f},{0.00438891f,0.27624f,0.123126f}, - {-0.00264467f,0.275996f,0.123126f},{-0.00609912f,0.276601f,0.123126f},{-0.00438748f,0.27624f,0.123126f}, - {-0.00781658f,0.276923f,0.122497f},{-0.0077751f,0.277052f,0.123062f},{0.00761353f,0.277556f,0.1241f}, - {0.00434221f,0.276507f,0.12373f},{-0.00770709f,0.277264f,0.1236f},{0.00554685f,0.278836f,0.125434f}, - {0.00720812f,0.278819f,0.125233f},{0.004276f,0.276885f,0.12429f},{-0.00252634f,0.277128f,0.124775f}, - {-0.00594221f,0.277236f,0.12429f},{-0.00761404f,0.277554f,0.124098f},{0.00252821f,0.277128f,0.124775f}, - {0.00419255f,0.277361f,0.124775f},{0.000845536f,0.277011f,0.124775f},{-0.000843398f,0.277011f,0.124775f}, - {-0.00749724f,0.277918f,0.124546f},{0.00409595f,0.277912f,0.125161f},{-0.000823965f,0.27757f,0.125161f}, - {-0.00246814f,0.277685f,0.125161f},{-0.00736095f,0.278343f,0.124927f},{0.00704393f,0.279331f,0.125456f}, - {0.000804989f,0.278175f,0.125434f},{-0.000802953f,0.278175f,0.125434f},{-0.0024052f,0.278286f,0.125434f}, - {-0.00388354f,0.279117f,0.12559f},{-0.00399021f,0.278508f,0.125434f},{0.00234263f,0.278902f,0.12559f}, - {0.00078347f,0.278793f,0.12559f},{-0.000781489f,0.278793f,0.12559f},{-0.0023409f,0.278901f,0.12559f}, - {-0.0217002f,0.287732f,0.122512f},{-0.02058f,0.286351f,0.123126f},{-0.021567f,0.287815f,0.123126f}, - {-0.0207071f,0.286258f,0.122512f},{-0.0213629f,0.287118f,0.121909f},{-0.0204426f,0.28582f,0.121909f}, - {-0.020361f,0.28651f,0.12373f},{-0.0213375f,0.287958f,0.12373f},{-0.0200505f,0.286735f,0.12429f}, - {-0.0183308f,0.283663f,0.123126f},{-0.018444f,0.283554f,0.122512f},{-0.0171015f,0.282437f,0.123063f}, - {-0.0169508f,0.282603f,0.123604f},{-0.0172584f,0.286839f,0.12559f},{-0.0177324f,0.286442f,0.125434f}, - {-0.0162253f,0.285687f,0.12559f},{-0.0171936f,0.282336f,0.122494f},{-0.0183693f,0.283407f,0.121909f}, - {-0.0172245f,0.282302f,0.121909f},{-0.0196183f,0.284863f,0.122512f},{-0.0194434f,0.284581f,0.121909f}, - {-0.0171072f,0.284839f,0.125161f},{-0.0175107f,0.284451f,0.124775f},{-0.0161913f,0.283441f,0.124927f}, - {-0.0201275f,0.288714f,0.125161f},{-0.0192063f,0.287348f,0.125161f},{-0.0187165f,0.287703f,0.125434f}, - {-0.0151117f,0.284631f,0.125592f},{-0.0178592f,0.284116f,0.12429f},{-0.0164907f,0.283111f,0.124546f}, - {-0.0232721f,0.292788f,0.12429f},{-0.0241699f,0.294302f,0.12373f},{-0.0236324f,0.292657f,0.12373f}, - {-0.0210122f,0.288161f,0.12429f},{-0.0222178f,0.294866f,0.125434f},{-0.0230652f,0.296296f,0.125232f}, - {-0.0227992f,0.294698f,0.125161f},{-0.0224512f,0.289346f,0.123126f},{-0.0225899f,0.289272f,0.122512f}, - {-0.0233369f,0.294543f,0.124775f},{-0.0228179f,0.292954f,0.124775f},{-0.0222922f,0.293146f,0.125161f}, - {-0.0229789f,0.291043f,0.12373f},{-0.0226285f,0.291199f,0.12429f},{-0.0218736f,0.289653f,0.12429f}, - {-0.0222123f,0.289473f,0.12373f},{-0.0219851f,0.29653f,0.125592f},{-0.0225398f,0.29641f,0.125455f}, - {-0.0216239f,0.295038f,0.12559f},{-0.0222011f,0.288471f,0.121909f},{-0.0233694f,0.290869f,0.122512f}, - {-0.0229536f,0.289873f,0.121909f},{-0.0240341f,0.29251f,0.122512f},{-0.0236177f,0.291319f,0.121909f}, - {-0.0241882f,0.292804f,0.121909f},{-0.0245807f,0.294183f,0.122512f},{-0.0246627f,0.294323f,0.121909f}, - {-0.0250554f,0.295865f,0.121909f},{-0.0250097f,0.295875f,0.122497f},{-0.0181357f,0.28385f,0.12373f}, - {-0.0194979f,0.284964f,0.123126f},{-0.023226f,0.290933f,0.123126f},{-0.0238866f,0.292564f,0.123126f}, - {-0.0244299f,0.294227f,0.123126f},{-0.024877f,0.295904f,0.123062f},{-0.0167454f,0.28283f,0.124102f}, - {-0.0192904f,0.285137f,0.12373f},{-0.0246594f,0.295951f,0.1236f},{-0.016671f,0.285259f,0.125434f}, - {-0.0158556f,0.283811f,0.125233f},{-0.0189963f,0.285384f,0.12429f},{-0.0221869f,0.291396f,0.124775f}, - {-0.0238014f,0.294408f,0.12429f},{-0.0243617f,0.296015f,0.124098f},{-0.0196592f,0.287019f,0.124775f}, - {-0.0186256f,0.285694f,0.124775f},{-0.0206021f,0.288418f,0.124775f},{-0.0214468f,0.28988f,0.124775f}, - {-0.0239879f,0.296096f,0.124546f},{-0.0181964f,0.286053f,0.125161f},{-0.0209526f,0.290143f,0.125161f}, - {-0.0216757f,0.291624f,0.125161f},{-0.0235519f,0.296191f,0.124927f},{-0.0154922f,0.284211f,0.125456f}, - {-0.0196142f,0.289035f,0.125434f},{-0.0204183f,0.290427f,0.125434f},{-0.0211229f,0.291871f,0.125434f}, - {-0.021143f,0.293566f,0.12559f},{-0.0217237f,0.293354f,0.125434f},{-0.0182162f,0.288066f,0.12559f}, - {-0.0190899f,0.289362f,0.12559f},{-0.0198725f,0.290718f,0.12559f},{-0.0205583f,0.292122f,0.12559f}, - {-0.0225908f,0.313303f,0.122512f},{-0.0232266f,0.311642f,0.123126f},{-0.0224522f,0.313229f,0.123126f}, - {-0.02337f,0.311706f,0.122512f},{-0.0229794f,0.311532f,0.12373f},{-0.0222133f,0.313102f,0.12373f}, - {-0.0226291f,0.311376f,0.12429f},{-0.0244299f,0.308351f,0.123126f},{-0.0245807f,0.308394f,0.122512f}, - {-0.024876f,0.306673f,0.123065f},{-0.0246584f,0.306626f,0.123602f},{-0.0211432f,0.30901f,0.12559f}, - {-0.0217239f,0.309222f,0.125434f},{-0.0216239f,0.307539f,0.12559f},{-0.0250097f,0.306702f,0.122497f}, - {-0.0240343f,0.310066f,0.122512f},{-0.0227992f,0.307879f,0.125161f},{-0.0233369f,0.308035f,0.124775f}, - {-0.0235497f,0.306386f,0.124929f},{-0.0209535f,0.312432f,0.125161f},{-0.0216762f,0.310951f,0.125161f}, - {-0.0211235f,0.310705f,0.125434f},{-0.0219851f,0.306047f,0.125592f},{-0.0238014f,0.308169f,0.12429f}, - {-0.0239879f,0.306481f,0.124546f},{-0.0189975f,0.317193f,0.12429f},{-0.0181357f,0.318727f,0.12373f}, - {-0.0192916f,0.317439f,0.12373f},{-0.0218746f,0.312922f,0.12429f},{-0.016671f,0.317318f,0.125434f}, - {-0.0158576f,0.318769f,0.125231f},{-0.0171072f,0.317738f,0.125161f},{-0.0215683f,0.31476f,0.123126f}, - {-0.0217015f,0.314844f,0.122512f},{-0.0175107f,0.318126f,0.124775f},{-0.0186268f,0.316882f,0.124775f}, - {-0.0181976f,0.316523f,0.125161f},{-0.0203623f,0.316066f,0.12373f},{-0.0200519f,0.315841f,0.12429f}, - {-0.0210134f,0.314414f,0.12429f},{-0.0213388f,0.314617f,0.12373f},{-0.0151117f,0.317946f,0.125592f}, - {-0.0154943f,0.318368f,0.125455f},{-0.0162253f,0.31689f,0.12559f},{-0.0207085f,0.316317f,0.122512f}, - {-0.0196196f,0.317713f,0.122512f},{-0.018444f,0.319023f,0.122512f},{-0.0171936f,0.320241f,0.122494f}, - {-0.0241699f,0.308275f,0.12373f},{-0.0238868f,0.310012f,0.123126f},{-0.0205814f,0.316225f,0.123126f}, - {-0.0194991f,0.317613f,0.123126f},{-0.0183308f,0.318914f,0.123126f},{-0.0171022f,0.320141f,0.12306f}, - {-0.02436f,0.306561f,0.1241f},{-0.0236326f,0.309919f,0.12373f},{-0.0169519f,0.319975f,0.123601f}, - {-0.0222178f,0.307711f,0.125434f},{-0.0230629f,0.306281f,0.125233f},{-0.0232723f,0.309787f,0.12429f}, - {-0.0196606f,0.315557f,0.124775f},{-0.0178592f,0.318461f,0.12429f},{-0.0167464f,0.319748f,0.1241f}, - {-0.0221874f,0.311179f,0.124775f},{-0.0228181f,0.309621f,0.124775f},{-0.0214477f,0.312695f,0.124775f}, - {-0.0206034f,0.314158f,0.124775f},{-0.0164907f,0.319467f,0.124546f},{-0.0222924f,0.309429f,0.125161f}, - {-0.0201286f,0.313861f,0.125161f},{-0.0192076f,0.315228f,0.125161f},{-0.0161924f,0.319138f,0.124925f}, - {-0.0225375f,0.306167f,0.125456f},{-0.0204192f,0.312148f,0.125434f},{-0.0196153f,0.313541f,0.125434f}, - {-0.0187178f,0.314873f,0.125434f},{-0.0172595f,0.315738f,0.12559f},{-0.0177335f,0.316134f,0.125434f}, - {-0.0205588f,0.310453f,0.12559f},{-0.0198733f,0.311858f,0.12559f},{-0.019091f,0.313213f,0.12559f}, - {-0.0182174f,0.314509f,0.12559f},{-0.000885136f,0.326703f,0.123126f},{-0.00261846f,0.326311f,0.12373f}, - {-0.000875717f,0.326433f,0.12373f},{-0.00441602f,0.326491f,0.122512f},{-0.00266296f,0.326736f,0.122512f}, - {-0.00257853f,0.32593f,0.12429f},{-0.00609912f,0.325976f,0.123126f},{-0.00613678f,0.326129f,0.122512f}, - {-0.0077748f,0.325524f,0.123065f},{-0.00781658f,0.325654f,0.122497f},{-0.00539858f,0.323141f,0.12559f}, - {-0.00388481f,0.32346f,0.12559f},{-0.00399151f,0.324069f,0.125434f},{-0.00749724f,0.324659f,0.124546f}, - {-0.00582624f,0.324872f,0.124775f},{-0.00594221f,0.325341f,0.12429f},{-0.00246996f,0.324892f,0.125161f}, - {-0.00240697f,0.32429f,0.125434f},{-0.000826054f,0.325007f,0.125161f},{-0.005692f,0.324329f,0.125161f}, - {-0.00736026f,0.324232f,0.124929f},{-0.000890602f,0.32686f,0.122512f},{-0.00264662f,0.32658f,0.123126f}, - {0.00427461f,0.325693f,0.12429f},{0.00603421f,0.325714f,0.12373f},{0.0043408f,0.326071f,0.12373f}, - {-0.00687127f,0.322708f,0.125592f},{0.000860185f,0.326049f,0.12429f},{0.00261652f,0.326312f,0.12373f}, - {0.000873503f,0.326433f,0.12373f},{-0.000862365f,0.326049f,0.12429f},{0.00582624f,0.324872f,0.124775f}, - {0.00419119f,0.325217f,0.124775f},{0.00409462f,0.324665f,0.125161f},{0.00554685f,0.323741f,0.125434f}, - {0.00720884f,0.32376f,0.125232f},{0.005692f,0.324329f,0.125161f},{0.00257663f,0.32593f,0.12429f}, - {0.00687127f,0.322708f,0.125592f},{0.00704464f,0.323248f,0.125455f},{0.00539858f,0.323141f,0.12559f}, - {0.00088835f,0.32686f,0.122512f},{0.000882898f,0.326703f,0.123126f},{0.002661f,0.326737f,0.122512f}, - {0.00441458f,0.326492f,0.122512f},{0.00613678f,0.326129f,0.122512f},{-0.00770679f,0.325312f,0.123602f}, - {-0.00603421f,0.325714f,0.12373f},{-0.00438891f,0.326337f,0.123126f},{0.00264467f,0.326581f,0.123126f}, - {0.00609912f,0.325976f,0.123126f},{0.00438748f,0.326337f,0.123126f},{0.00781658f,0.325654f,0.122497f}, - {0.0077751f,0.325525f,0.123062f},{-0.00761353f,0.325021f,0.1241f},{-0.00434221f,0.32607f,0.12373f}, - {0.00770709f,0.325313f,0.1236f},{-0.00554685f,0.323741f,0.125434f},{-0.00720812f,0.323758f,0.125233f}, - {-0.004276f,0.325692f,0.12429f},{0.00252634f,0.325449f,0.124775f},{0.00594221f,0.325341f,0.12429f}, - {0.00761404f,0.325023f,0.124098f},{-0.00252821f,0.325449f,0.124775f},{-0.00419255f,0.325216f,0.124775f}, - {-0.000845536f,0.325566f,0.124775f},{0.000843398f,0.325566f,0.124775f},{0.00749724f,0.324659f,0.124546f}, - {-0.00409595f,0.324665f,0.125161f},{0.000823965f,0.325007f,0.125161f},{0.00246814f,0.324892f,0.125161f}, - {0.00736095f,0.324234f,0.124927f},{-0.00704393f,0.323246f,0.125456f},{-0.000804989f,0.324402f,0.125434f}, - {0.000802953f,0.324402f,0.125434f},{0.0024052f,0.324291f,0.125434f},{0.00388354f,0.32346f,0.12559f}, - {0.00399021f,0.324069f,0.125434f},{-0.00234263f,0.323675f,0.12559f},{-0.00078347f,0.323784f,0.12559f}, - {0.000781489f,0.323784f,0.12559f},{0.0023409f,0.323676f,0.12559f},{0.0217002f,0.314846f,0.122512f}, - {0.02058f,0.316226f,0.123126f},{0.021567f,0.314762f,0.123126f},{0.0207071f,0.316319f,0.122512f}, - {0.020361f,0.316067f,0.12373f},{0.0213375f,0.314619f,0.12373f},{0.0200505f,0.315842f,0.12429f}, - {0.0183308f,0.318914f,0.123126f},{0.018444f,0.319023f,0.122512f},{0.0171012f,0.320139f,0.123065f}, - {0.0169516f,0.319975f,0.123602f},{0.0172584f,0.315738f,0.12559f},{0.0177324f,0.316135f,0.125434f}, - {0.0162253f,0.31689f,0.12559f},{0.0171931f,0.320241f,0.122497f},{0.0196183f,0.317714f,0.122512f}, - {0.0171072f,0.317738f,0.125161f},{0.0175107f,0.318126f,0.124775f},{0.0161894f,0.319134f,0.124929f}, - {0.0201275f,0.313863f,0.125161f},{0.0192063f,0.315229f,0.125161f},{0.0187165f,0.314874f,0.125434f}, - {0.0151138f,0.317949f,0.125592f},{0.0178592f,0.318461f,0.12429f},{0.0164907f,0.319467f,0.124546f}, - {0.0232721f,0.309789f,0.12429f},{0.0241699f,0.308275f,0.12373f},{0.0236324f,0.30992f,0.12373f}, - {0.0210122f,0.314416f,0.12429f},{0.0222178f,0.307711f,0.125434f},{0.0230652f,0.306281f,0.125232f}, - {0.0227992f,0.307879f,0.125161f},{0.0224512f,0.313231f,0.123126f},{0.0225899f,0.313305f,0.122512f}, - {0.0233369f,0.308035f,0.124775f},{0.0228179f,0.309623f,0.124775f},{0.0222922f,0.309431f,0.125161f}, - {0.0229789f,0.311534f,0.12373f},{0.0226285f,0.311378f,0.12429f},{0.0218736f,0.312924f,0.12429f}, - {0.0222123f,0.313104f,0.12373f},{0.0219851f,0.306047f,0.125592f},{0.0225398f,0.306167f,0.125455f}, - {0.0216239f,0.307539f,0.12559f},{0.0233694f,0.311708f,0.122512f},{0.0240341f,0.310067f,0.122512f}, - {0.0245807f,0.308394f,0.122512f},{0.0250097f,0.306702f,0.122497f},{0.0181357f,0.318727f,0.12373f}, - {0.0194979f,0.317614f,0.123126f},{0.023226f,0.311644f,0.123126f},{0.0238866f,0.310013f,0.123126f}, - {0.0244299f,0.308351f,0.123126f},{0.024877f,0.306673f,0.123062f},{0.0167465f,0.319748f,0.1241f}, - {0.0192904f,0.31744f,0.12373f},{0.0246594f,0.306626f,0.1236f},{0.016671f,0.317318f,0.125434f}, - {0.0158548f,0.318766f,0.125233f},{0.0189963f,0.317194f,0.12429f},{0.0221869f,0.311181f,0.124775f}, - {0.0238014f,0.308169f,0.12429f},{0.0243617f,0.306562f,0.124098f},{0.0196592f,0.315558f,0.124775f}, - {0.0186256f,0.316883f,0.124775f},{0.0206021f,0.31416f,0.124775f},{0.0214468f,0.312697f,0.124775f}, - {0.0239879f,0.306481f,0.124546f},{0.0181964f,0.316524f,0.125161f},{0.0209526f,0.312434f,0.125161f}, - {0.0216757f,0.310953f,0.125161f},{0.0235519f,0.306387f,0.124927f},{0.0154936f,0.318367f,0.125456f}, - {0.0196142f,0.313542f,0.125434f},{0.0204183f,0.31215f,0.125434f},{0.0211229f,0.310707f,0.125434f}, - {0.021143f,0.309011f,0.12559f},{0.0217237f,0.309223f,0.125434f},{0.0182162f,0.314511f,0.12559f}, - {0.0190899f,0.313215f,0.12559f},{0.0198725f,0.31186f,0.12559f},{0.0205583f,0.310455f,0.12559f}, - {0.00414391f,0.295088f,0.100469f},{0.00139737f,0.298869f,0.100469f},{0.00179665f,0.299148f,0.100469f}, - {0.00285439f,0.294399f,0.100469f},{0.00351607f,0.294712f,0.100469f},{0.00216513f,0.294152f,0.100469f}, - {0.000956049f,0.298662f,0.100469f},{0.0047319f,0.295524f,0.100469f},{0.00527427f,0.296015f,0.100469f}, - {0.00145499f,0.293974f,0.100469f},{0.000485772f,0.298534f,0.100469f},{0.00214182f,0.299492f,0.100469f}, - {0.00576579f,0.296558f,0.100469f},{0.000730938f,0.293867f,0.100469f},{-2.55116e-017f,0.298492f,0.100469f}, - {0.00620174f,0.297145f,0.100469f},{0.00242194f,0.299891f,0.100469f},{-2.64948e-017f,0.293831f,0.100469f}, - {-0.000731236f,0.293867f,0.100469f},{-0.00145532f,0.293975f,0.100469f},{-0.000485107f,0.298534f,0.100469f}, - {-0.00216527f,0.294153f,0.100469f},{-0.000955564f,0.29866f,0.100469f},{0.00689072f,0.298435f,0.100469f}, - {0.00657793f,0.297773f,0.100469f},{-0.00351606f,0.294712f,0.100469f},{-0.00285433f,0.294399f,0.100469f}, - {0.00713697f,0.299124f,0.100469f},{0.00262754f,0.300333f,0.100469f},{0.00275363f,0.300804f,0.100469f}, - {-0.00139499f,0.298869f,0.100469f},{0.00742217f,0.300558f,0.100469f},{0.00731456f,0.299834f,0.100469f}, - {-0.00214373f,0.299488f,0.100469f},{-0.00178917f,0.299157f,0.100469f},{-0.00527358f,0.296016f,0.100469f}, - {-0.00657692f,0.297774f,0.100469f},{-0.00688983f,0.298435f,0.100469f},{-0.00262887f,0.300331f,0.100469f}, - {-0.00275512f,0.300803f,0.100469f},{-0.00742136f,0.300558f,0.100469f},{-0.0071365f,0.299124f,0.100469f}, - {-0.00731416f,0.299834f,0.100469f},{-0.00473148f,0.295525f,0.100469f},{-0.00414378f,0.295088f,0.100469f}, - {-0.00620074f,0.297146f,0.100469f},{-0.00242212f,0.29989f,0.100469f},{-0.0057649f,0.296559f,0.100469f}, - {0.00060826f,0.31345f,0.101401f},{0.00178435f,0.313762f,0.101401f},{0.002331f,0.314032f,0.101401f}, - {0.00216527f,0.294153f,0.101401f},{0.00536018f,0.290568f,0.101401f},{0.00742136f,0.300558f,0.101401f}, - {0.0121618f,0.30068f,0.101401f},{0.0071365f,0.299124f,0.101401f},{0.0127432f,0.298958f,0.101401f}, - {0.00688983f,0.298435f,0.101401f},{0.00403701f,0.315738f,0.101401f},{0.00430572f,0.319852f,0.101401f}, - {0.014297f,0.288187f,0.101401f},{-0.00279832f,0.322545f,0.101401f},{0.0214014f,0.30068f,0.101401f}, - {-0.00689197f,0.321591f,0.101401f},{-0.00820481f,0.321097f,0.101401f},{0.021279f,0.300083f,0.101401f}, - {0.0210836f,0.299506f,0.101401f},{0.0134836f,0.297992f,0.101401f},{0.00657692f,0.297774f,0.101401f}, - {0.0130817f,0.298451f,0.101401f},{-0.00893219f,0.289809f,0.101401f},{-0.00372602f,0.28731f,0.101401f}, - {-0.00406291f,0.286794f,0.101401f},{0.0208166f,0.298958f,0.101401f},{0.0200754f,0.297993f,0.101401f}, - {0.0204775f,0.298452f,0.101401f},{0.0196172f,0.297591f,0.101401f},{0.0139105f,0.290011f,0.101401f}, - {0.0141391f,0.289696f,0.101401f},{-0.00216513f,0.294152f,0.101401f},{-0.00235358f,0.288532f,0.101401f}, - {-0.00285439f,0.294399f,0.101401f},{0.0191105f,0.297253f,0.101401f},{0.0185639f,0.296983f,0.101401f}, - {0.0167797f,0.296628f,0.101401f},{0.0173884f,0.296667f,0.101401f},{0.0179866f,0.296787f,0.101401f}, - {-0.0141364f,0.317409f,0.101401f},{-0.00948265f,0.320518f,0.101401f},{-0.00121835f,0.289001f,0.101401f}, - {-0.00145499f,0.293974f,0.101401f},{-0.000730938f,0.293867f,0.101401f},{0.0161715f,0.296667f,0.101401f}, - {-0.00180244f,0.288807f,0.101401f},{0.00620074f,0.297146f,0.101401f},{-0.00286368f,0.288187f,0.101401f}, - {0.0143784f,0.288958f,0.101401f},{-0.0107514f,0.313236f,0.101401f},{-0.0109097f,0.31288f,0.101401f}, - {-0.00140229f,0.322684f,0.101401f},{0.00329545f,0.321364f,0.101401f},{0.00369728f,0.320906f,0.101401f}, - {0.0057649f,0.296559f,0.101401f},{0.00466102f,0.318068f,0.101401f},{0.00462104f,0.318677f,0.101401f}, - {0.00731416f,0.299834f,0.101401f},{0.0124736f,0.299504f,0.101401f},{0.0121612f,0.310903f,0.101401f}, - {0.0109346f,0.310012f,0.101401f},{0.0113045f,0.310132f,0.101401f},{0.0123195f,0.311258f,0.101401f}, - {0.0116418f,0.310326f,0.101401f},{0.0119314f,0.310587f,0.101401f},{0.0136206f,0.290272f,0.101401f}, - {0.0136193f,0.287256f,0.101401f},{0.013282f,0.287061f,0.101401f},{0.013283f,0.290467f,0.101401f}, - {0.0155736f,0.296786f,0.101401f},{0.00473148f,0.295525f,0.101401f},{0.00527358f,0.296016f,0.101401f}, - {-0.0170097f,0.314341f,0.101401f},{-0.00751912f,0.281209f,0.101401f},{-0.00885348f,0.281761f,0.101401f}, - {-0.00460913f,0.283816f,0.101401f},{0.00285433f,0.294399f,0.101401f},{0.00351606f,0.294712f,0.101401f}, - {0.000731236f,0.293867f,0.101401f},{0.00145532f,0.293975f,0.101401f},{-0.0151604f,0.31645f,0.101401f}, - {-0.0161195f,0.315426f,0.101401f},{-0.0124736f,0.303073f,0.101401f},{-0.0122844f,0.302494f,0.101401f}, - {-2.64948e-017f,0.293831f,0.101401f},{-0.0043287f,0.286238f,0.101401f},{-0.00916198f,0.289494f,0.101401f}, - {-0.0107204f,0.306649f,0.101401f},{-0.00869272f,0.290546f,0.101401f},{-0.00332386f,0.287777f,0.101401f}, - {-0.017827f,0.313201f,0.101401f},{-0.00731456f,0.299834f,0.101401f},{-0.00713697f,0.299124f,0.101401f}, - {-0.00742217f,0.300558f,0.101401f},{-0.0196172f,0.304986f,0.101401f},{-0.0200754f,0.304584f,0.101401f}, - {-0.0210285f,0.305472f,0.101401f},{-0.0158194f,0.286816f,0.101401f},{-0.0167576f,0.287913f,0.101401f}, - {-0.0176198f,0.289072f,0.101401f},{-0.00462997f,0.285046f,0.101401f},{-0.0101477f,0.282401f,0.101401f}, - {-0.0125926f,0.283935f,0.101401f},{-0.013732f,0.284822f,0.101401f},{-0.00466034f,0.28443f,0.101401f}, - {-0.00426727f,0.282635f,0.101401f},{-0.00615062f,0.280749f,0.101401f},{-0.00447731f,0.283214f,0.101401f}, - {-0.00165506f,0.280155f,0.101401f},{-0.00190339f,0.27993f,0.101401f},{-0.0022162f,0.280408f,0.101401f}, - {-0.00362862f,0.281584f,0.101401f},{-0.00475417f,0.280381f,0.101401f},{-0.00398274f,0.282088f,0.101401f}, - {-0.00321095f,0.281131f,0.101401f},{-0.00273734f,0.280737f,0.101401f},{-0.00333373f,0.280122f,0.101401f}, - {-0.00106651f,0.279974f,0.101401f},{-0.000459362f,0.27987f,0.101401f},{-0.0101588f,0.288918f,0.101401f}, - {-0.011396f,0.283127f,0.101401f},{-0.0148092f,0.285784f,0.101401f},{-0.0184021f,0.290285f,0.101401f}, - {-0.0212465f,0.298409f,0.101401f},{-0.0210045f,0.296985f,0.101401f},{-0.0206672f,0.295581f,0.101401f}, - {0.0122844f,0.300083f,0.101401f},{-0.0047319f,0.295524f,0.101401f},{-0.00893177f,0.291673f,0.101401f}, - {-0.00916039f,0.291988f,0.101401f},{-0.019101f,0.291549f,0.101401f},{-0.00978889f,0.289038f,0.101401f}, - {-0.0213921f,0.299845f,0.101401f},{-0.0111395f,0.312564f,0.101401f},{-0.0114291f,0.312304f,0.101401f}, - {-0.00576579f,0.296558f,0.101401f},{-0.00527427f,0.296015f,0.101401f},{-0.00945026f,0.29225f,0.101401f}, - {-0.00978794f,0.292445f,0.101401f},{-0.0101578f,0.292565f,0.101401f},{-0.00620174f,0.297145f,0.101401f}, - {-0.00877329f,0.291317f,0.101401f},{-0.00414391f,0.295088f,0.101401f},{-0.00351607f,0.294712f,0.101401f}, - {-0.0045188f,0.285652f,0.101401f},{-0.0094516f,0.289233f,0.101401f},{-0.000614697f,0.289126f,0.101401f}, - {0.0139422f,0.29759f,0.101401f},{0.00414378f,0.295088f,0.101401f},{0.0144494f,0.297252f,0.101401f}, - {0.0124009f,0.312029f,0.101401f},{0.011933f,0.313082f,0.101401f},{0.00430656f,0.316285f,0.101401f}, - {0.00178272f,0.322372f,0.101401f},{-0.00418236f,0.322315f,0.101401f},{-0.0106702f,0.313617f,0.101401f}, - {-0.00554911f,0.321998f,0.101401f},{-0.0130817f,0.304126f,0.101401f},{-0.0134836f,0.304585f,0.101401f}, - {-0.013052f,0.318299f,0.101401f},{-0.0185679f,0.312009f,0.101401f},{-0.0203026f,0.308181f,0.101401f}, - {-0.0185639f,0.305594f,0.101401f},{-0.0207099f,0.306838f,0.101401f},{-0.00689072f,0.298435f,0.101401f}, - {-0.0119116f,0.319116f,0.101401f},{-0.0117654f,0.315516f,0.101401f},{-0.0121353f,0.315636f,0.101401f}, - {-0.0192293f,0.310772f,0.101401f},{-0.0149963f,0.305595f,0.101401f},{-0.0121618f,0.301897f,0.101401f}, - {-0.0109093f,0.314744f,0.101401f},{-0.0111379f,0.315059f,0.101401f},{-0.0106699f,0.314007f,0.101401f}, - {-0.01072f,0.319857f,0.101401f},{-0.0114278f,0.315321f,0.101401f},{0.00120563f,0.313573f,0.101401f}, - {0.0116431f,0.313343f,0.101401f},{0.0113054f,0.313538f,0.101401f},{0.0124007f,0.311639f,0.101401f}, - {0.00462115f,0.31746f,0.101401f},{0.00283787f,0.31437f,0.101401f},{0.00329614f,0.314772f,0.101401f}, - {0.00369829f,0.315231f,0.101401f},{0.0123201f,0.312411f,0.101401f},{0.0121616f,0.312767f,0.101401f}, - {0.0109356f,0.313659f,0.101401f},{0.0149963f,0.296982f,0.101401f},{0.0129131f,0.290588f,0.101401f}, - {0.0129121f,0.286941f,0.101401f},{0.0139089f,0.287516f,0.101401f},{0.0141387f,0.287832f,0.101401f}, - {0.0143782f,0.288568f,0.101401f},{0.0142976f,0.28934f,0.101401f},{-0.0202361f,0.294203f,0.101401f}, - {-0.0197133f,0.292857f,0.101401f},{-0.00869244f,0.290936f,0.101401f},{-0.00877392f,0.290165f,0.101401f}, - {-0.00657793f,0.297773f,0.101401f},{-0.0107508f,0.314388f,0.101401f},{0.00450236f,0.316862f,0.101401f}, - {0.00450189f,0.319275f,0.101401f},{0.00403597f,0.320399f,0.101401f},{0.00283697f,0.321766f,0.101401f}, - {0.00233026f,0.322105f,0.101401f},{0.0006084f,0.32269f,0.101401f},{0.00120559f,0.322568f,0.101401f}, - {-0.0210836f,0.303071f,0.101401f},{-0.0213948f,0.302691f,0.101401f},{-0.0212572f,0.304087f,0.101401f}, - {-0.0198084f,0.309494f,0.101401f},{-0.0167797f,0.30595f,0.101401f},{-0.0173884f,0.30591f,0.101401f}, - {-0.0161715f,0.30591f,0.101401f},{-0.0127432f,0.30362f,0.101401f},{-0.0155736f,0.305791f,0.101401f}, - {-0.0139422f,0.304987f,0.101401f},{-0.0144494f,0.305326f,0.101401f},{-0.0121363f,0.311989f,0.101401f}, - {-0.0117664f,0.312109f,0.101401f},{-0.0179866f,0.30579f,0.101401f},{-0.0191105f,0.305324f,0.101401f}, - {-0.0204775f,0.304126f,0.101401f},{-0.0208166f,0.303619f,0.101401f},{-0.0214014f,0.301897f,0.101401f}, - {-0.021279f,0.302494f,0.101401f},{0.0220868f,0.288274f,0.120045f},{0.0197356f,0.284927f,0.120045f}, - {-0.0164263f,0.321574f,0.120045f},{-0.0174654f,0.320686f,0.120045f},{0.0227481f,0.289468f,0.120045f}, - {-0.0130507f,0.323894f,0.120045f},{-0.0142159f,0.32318f,0.120045f},{0.0243386f,0.293237f,0.120045f}, - {-0.00935393f,0.325657f,0.120045f},{-0.0106164f,0.325134f,0.120045f},{0.0253094f,0.297211f,0.120045f}, - {-0.00542685f,0.32682f,0.120045f},{-0.00408328f,0.327069f,0.120045f},{-0.0067556f,0.326501f,0.120045f}, - {-0.00806585f,0.326113f,0.120045f},{-0.00136583f,0.327346f,0.120045f},{-0.00272847f,0.327247f,0.120045f}, - {0.025591f,0.299924f,0.120045f},{0.0254905f,0.298564f,0.120045f},{-0.0118498f,0.324546f,0.120045f}, - {0.0247326f,0.294544f,0.120045f},{0.0250564f,0.29587f,0.120045f},{-0.0153421f,0.322406f,0.120045f}, - {0.0233448f,0.290696f,0.120045f},{0.0238755f,0.291953f,0.120045f},{-0.0184567f,0.319746f,0.120045f}, - {-0.0193973f,0.318754f,0.120045f},{0.0213629f,0.287117f,0.120045f},{-0.0202847f,0.317715f,0.120045f}, - {-0.0211166f,0.316631f,0.120045f},{-0.0218906f,0.315505f,0.120045f},{0.0205784f,0.286f,0.120045f}, - {-0.0226048f,0.31434f,0.120045f},{-0.0232569f,0.313139f,0.120045f},{0.0188369f,0.2839f,0.120045f}, - {-0.0238452f,0.311905f,0.120045f},{0.0178847f,0.282922f,0.120045f},{-0.0243681f,0.310643f,0.120045f}, - {0.0168818f,0.281996f,0.120045f},{-0.0248242f,0.309355f,0.120045f},{0.0158311f,0.281125f,0.120045f}, - {-0.0252123f,0.308044f,0.120045f},{0.0147355f,0.280311f,0.120045f},{-0.0255314f,0.306715f,0.120045f}, - {0.0135981f,0.279557f,0.120045f},{-0.0257804f,0.305372f,0.120045f},{0.0124222f,0.278863f,0.120045f}, - {-0.0259588f,0.304017f,0.120045f},{0.011211f,0.278234f,0.120045f},{-0.0260659f,0.302655f,0.120045f}, - {0.00996802f,0.27767f,0.120045f},{-0.0261017f,0.301289f,0.120045f},{0.00869678f,0.277173f,0.120045f}, - {-0.0255903f,0.299924f,0.120045f},{-0.0260659f,0.299922f,0.120045f},{0.00740092f,0.276744f,0.120045f}, - {-0.0254908f,0.298564f,0.120045f},{-0.0259586f,0.29856f,0.120045f},{0.00608407f,0.276385f,0.120045f}, - {-0.0253091f,0.297211f,0.120045f},{-0.0257802f,0.297205f,0.120045f},{0.00474994f,0.276097f,0.120045f}, - {0.00340235f,0.27588f,0.120045f},{0.000682229f,0.275662f,0.120045f},{-0.0250563f,0.29587f,0.120045f}, - {-0.0255311f,0.295861f,0.120045f},{-0.00272834f,0.27533f,0.120045f},{-0.00340291f,0.27588f,0.120045f}, - {-0.00408304f,0.275508f,0.120045f},{-0.0238754f,0.291954f,0.120045f},{-0.0243383f,0.293238f,0.120045f}, - {-0.0243677f,0.291934f,0.120045f},{-0.00675524f,0.276076f,0.120045f},{-0.00740123f,0.276745f,0.120045f}, - {-0.00806539f,0.276464f,0.120045f},{-0.0226042f,0.288237f,0.120045f},{-0.0227481f,0.289469f,0.120045f}, - {-0.0232562f,0.289438f,0.120045f},{-0.0118493f,0.278031f,0.120045f},{-0.010616f,0.277443f,0.120045f}, - {-0.011211f,0.278235f,0.120045f},{-0.0202843f,0.284862f,0.120045f},{-0.0205783f,0.286001f,0.120045f}, - {-0.0211162f,0.285946f,0.120045f},{-0.0164256f,0.281003f,0.120045f},{-0.0168818f,0.281997f,0.120045f}, - {-0.0174647f,0.281891f,0.120045f},{-0.0130502f,0.278684f,0.120045f},{-0.0124221f,0.278864f,0.120045f}, - {-0.0188368f,0.2839f,0.120045f},{-0.0193967f,0.283823f,0.120045f},{-0.018456f,0.282831f,0.120045f}, - {-0.0178847f,0.282922f,0.120045f},{-0.0153414f,0.280172f,0.120045f},{-0.0142153f,0.279398f,0.120045f}, - {-0.0147355f,0.280311f,0.120045f},{-0.0135981f,0.279557f,0.120045f},{-0.0197355f,0.284928f,0.120045f}, - {-0.0158312f,0.281125f,0.120045f},{-0.00869705f,0.277173f,0.120045f},{-0.00935349f,0.27692f,0.120045f}, - {-0.00996818f,0.277671f,0.120045f},{-0.0220867f,0.288275f,0.120045f},{-0.0218902f,0.287072f,0.120045f}, - {-0.0213628f,0.287118f,0.120045f},{-0.00475041f,0.276097f,0.120045f},{-0.00542662f,0.275757f,0.120045f}, - {-0.00608443f,0.276386f,0.120045f},{-0.0233449f,0.290696f,0.120045f},{-0.0238446f,0.290671f,0.120045f}, - {-0.000682695f,0.275662f,0.120045f},{-0.00136576f,0.275232f,0.120045f},{-0.00204572f,0.275735f,0.120045f}, - {-0.0252122f,0.294532f,0.120045f},{-0.0247324f,0.294544f,0.120045f},{-0.024824f,0.293222f,0.120045f}, - {0.00204515f,0.275735f,0.120045f},{-0.00544975f,0.275762f,0.106062f},{-0.00410773f,0.275512f,0.106062f}, - {-0.00275036f,0.275332f,0.106062f},{-0.00935782f,0.276922f,0.106062f},{-0.00677384f,0.276081f,0.106062f}, - {-0.0141962f,0.279385f,0.106062f},{-0.0130343f,0.278674f,0.106062f},{-0.0118389f,0.278026f,0.106062f}, - {-0.0106125f,0.277442f,0.106062f},{-0.0174549f,0.281882f,0.106062f},{-0.015322f,0.280157f,0.106062f}, - {-0.0211314f,0.285966f,0.106062f},{-0.0202988f,0.284879f,0.106062f},{-0.0194069f,0.283834f,0.106062f}, - {-0.0184567f,0.282832f,0.106062f},{-0.0232623f,0.289449f,0.106062f},{-0.0219036f,0.287092f,0.106062f}, - {-0.0252074f,0.294514f,0.106062f},{-0.0248204f,0.293211f,0.106062f},{-0.0243664f,0.29193f,0.106062f}, - {-0.0238467f,0.290676f,0.106062f},{-0.0257765f,0.297181f,0.106062f},{-0.0259565f,0.298538f,0.106062f}, - {-0.0255265f,0.295839f,0.106062f},{-0.0260653f,0.302669f,0.106062f},{-0.0261017f,0.301289f,0.106062f}, - {-0.0260652f,0.299908f,0.106062f},{-0.0255265f,0.306738f,0.106062f},{-0.0257766f,0.305396f,0.106062f}, - {-0.0259565f,0.304039f,0.106062f},{-0.0248205f,0.309366f,0.106062f},{-0.0252075f,0.308062f,0.106062f}, - {-0.0238468f,0.311901f,0.106062f},{-0.0232624f,0.313127f,0.106062f},{-0.0243666f,0.310646f,0.106062f}, - {-0.0219036f,0.315485f,0.106062f},{-0.0226143f,0.314323f,0.106062f},{-0.0202989f,0.317698f,0.106062f}, - {-0.0211315f,0.316611f,0.106062f},{-0.0184567f,0.319745f,0.106062f},{-0.0194069f,0.318743f,0.106062f}, - {-0.0174549f,0.320695f,0.106062f},{-0.0164092f,0.321587f,0.106062f},{-0.0153222f,0.32242f,0.106062f}, - {-0.0141964f,0.323192f,0.106062f},{-0.0130346f,0.323903f,0.106062f},{-0.0118391f,0.324551f,0.106062f}, - {-0.0106128f,0.325135f,0.106062f},{-0.00935809f,0.325655f,0.106062f},{-0.00807765f,0.326109f,0.106062f}, - {-0.00677408f,0.326496f,0.106062f},{-0.00544996f,0.326815f,0.106062f},{-0.0041079f,0.327065f,0.106062f}, - {-0.00275048f,0.327245f,0.106062f},{-0.00138032f,0.327354f,0.106062f},{-0.0226142f,0.288254f,0.106062f}, - {-0.0164091f,0.28099f,0.106062f},{-0.0080774f,0.276468f,0.106062f},{-0.00138025f,0.275223f,0.106062f}, - {-0.0164242f,0.287507f,0.106062f},{-0.0128032f,0.28409f,0.106062f},{-0.00849194f,0.281601f,0.106062f}, - {-0.00372282f,0.280175f,0.106062f},{-0.00124674f,0.279884f,0.106062f},{-0.00248901f,0.279994f,0.106062f}, - {-0.00733302f,0.281141f,0.106062f},{-0.00962222f,0.282129f,0.106062f},{-0.01072f,0.28272f,0.106062f}, - {-0.0117816f,0.283375f,0.106062f},{-0.0155951f,0.286575f,0.106062f},{-0.0147132f,0.285693f,0.106062f}, - {-0.0137815f,0.284864f,0.106062f},{-0.0185679f,0.290568f,0.106062f},{-0.0179131f,0.289506f,0.106062f}, - {-0.0171977f,0.288485f,0.106062f},{-0.0191599f,0.291666f,0.106062f},{-0.0196869f,0.292796f,0.106062f}, - {-0.0201474f,0.293955f,0.106062f},{-0.0205397f,0.295139f,0.106062f},{-0.0208625f,0.296344f,0.106062f}, - {-0.0211148f,0.297565f,0.106062f},{-0.0212956f,0.298799f,0.106062f},{-0.0214044f,0.300042f,0.106062f}, - {-0.0214407f,0.301289f,0.106062f},{-0.0214044f,0.302535f,0.106062f},{-0.0212958f,0.303778f,0.106062f}, - {-0.021115f,0.305012f,0.106062f},{-0.0208629f,0.306233f,0.106062f},{-0.0205401f,0.307438f,0.106062f}, - {-0.0201478f,0.308622f,0.106062f},{-0.0196872f,0.309781f,0.106062f},{-0.0185682f,0.312009f,0.106062f}, - {-0.00248899f,0.322581f,0.106062f},{-0.00124708f,0.322694f,0.106062f},{-0.0164246f,0.315071f,0.106062f}, - {-0.00494506f,0.322151f,0.106062f},{-0.00614966f,0.321828f,0.106062f},{-0.0137818f,0.317713f,0.106062f}, - {-0.0147135f,0.316884f,0.106062f},{-0.0107205f,0.319857f,0.106062f},{-0.0117819f,0.319202f,0.106062f}, - {-0.0128035f,0.318487f,0.106062f},{-0.00849255f,0.320976f,0.106062f},{-0.00733349f,0.321436f,0.106062f}, - {-0.00962282f,0.320449f,0.106062f},{-0.00372197f,0.322394f,0.106062f},{-0.0155954f,0.316002f,0.106062f}, - {-0.0179135f,0.313071f,0.106062f},{-0.0171982f,0.314092f,0.106062f},{-0.0191601f,0.310911f,0.106062f}, - {-0.00494408f,0.280428f,0.106062f},{-0.00614928f,0.280748f,0.106062f},{-0.00496191f,0.28043f,0.10513f}, - {-0.00374312f,0.280177f,0.10513f},{-0.00250793f,0.279995f,0.10513f},{-0.00849036f,0.281601f,0.10513f}, - {-0.00616138f,0.280752f,0.10513f},{-0.0127873f,0.284078f,0.10513f},{-0.0117655f,0.283364f,0.10513f}, - {-0.0107068f,0.282713f,0.10513f},{-0.00961408f,0.282124f,0.10513f},{-0.0155998f,0.28658f,0.10513f}, - {-0.0137691f,0.284853f,0.10513f},{-0.018576f,0.290582f,0.10513f},{-0.0179242f,0.289523f,0.10513f}, - {-0.0172102f,0.288501f,0.10513f},{-0.0201457f,0.29395f,0.10513f},{-0.0196879f,0.292798f,0.10513f}, - {-0.0191643f,0.291674f,0.10513f},{-0.0212935f,0.29878f,0.10513f},{-0.0211114f,0.297545f,0.10513f}, - {-0.0208586f,0.296326f,0.10513f},{-0.0205363f,0.295127f,0.10513f},{-0.0214407f,0.301289f,0.10513f}, - {-0.0214037f,0.302548f,0.10513f},{-0.0214037f,0.300029f,0.10513f},{-0.0211115f,0.305032f,0.10513f}, - {-0.0212936f,0.303796f,0.10513f},{-0.0201457f,0.308627f,0.10513f},{-0.0205363f,0.30745f,0.10513f}, - {-0.0208587f,0.30625f,0.10513f},{-0.0191643f,0.310903f,0.10513f},{-0.019688f,0.309779f,0.10513f}, - {-0.0172102f,0.314076f,0.10513f},{-0.0179243f,0.313054f,0.10513f},{-0.018576f,0.311995f,0.10513f}, - {-0.0156004f,0.315997f,0.10513f},{-0.0164352f,0.315058f,0.10513f},{-0.0147088f,0.316888f,0.10513f}, - {-0.0137693f,0.317724f,0.10513f},{-0.0127873f,0.318499f,0.10513f},{-0.0117656f,0.319213f,0.10513f}, - {-0.010707f,0.319865f,0.10513f},{-0.0096143f,0.320453f,0.10513f},{-0.00849054f,0.320976f,0.10513f}, - {-0.00733859f,0.321434f,0.10513f},{-0.00616144f,0.321825f,0.10513f},{-0.00374334f,0.3224f,0.10513f}, - {-0.00496208f,0.322147f,0.10513f},{-0.00250813f,0.322582f,0.10513f},{-0.00125938f,0.322692f,0.10513f}, - {-0.0164352f,0.287519f,0.10513f},{-0.0147082f,0.285688f,0.10513f},{-0.0073385f,0.281143f,0.10513f}, - {-0.00125925f,0.279885f,0.10513f},{-0.015889f,0.28058f,0.10513f},{-0.0261017f,0.301289f,0.10513f}, - {-0.0260458f,0.299581f,0.10513f},{-0.0241144f,0.291299f,0.10513f},{-0.0256f,0.296196f,0.10513f}, - {-0.0252122f,0.294532f,0.10513f},{-0.0234094f,0.289744f,0.10513f},{-0.0217023f,0.286787f,0.10513f}, - {-0.0207075f,0.285398f,0.10513f},{-0.00675524f,0.276076f,0.10513f},{-0.00509193f,0.275688f,0.10513f}, - {-0.00170673f,0.275251f,0.10513f},{-0.0130502f,0.278684f,0.10513f},{-0.011544f,0.277878f,0.10513f}, - {-0.00998811f,0.277174f,0.10513f},{-0.00838954f,0.276572f,0.10513f},{-0.0145006f,0.279585f,0.10513f}, - {-0.018456f,0.282831f,0.10513f},{-0.0172093f,0.281664f,0.10513f},{-0.00340673f,0.275409f,0.10513f}, - {-0.0196237f,0.284078f,0.10513f},{-0.0226042f,0.288237f,0.10513f},{-0.0247162f,0.292898f,0.10513f}, - {-0.0258783f,0.297881f,0.10513f},{-0.0260458f,0.302996f,0.10513f},{-0.0258785f,0.304695f,0.10513f}, - {-0.0247166f,0.309679f,0.10513f},{-0.0252123f,0.308044f,0.10513f},{-0.0256002f,0.306381f,0.10513f}, - {-0.024115f,0.311277f,0.10513f},{-0.02341f,0.312833f,0.10513f},{-0.0226048f,0.31434f,0.10513f}, - {-0.0207077f,0.317179f,0.10513f},{-0.0217027f,0.31579f,0.10513f},{-0.0196242f,0.318499f,0.10513f}, - {-0.01721f,0.320913f,0.10513f},{-0.0145012f,0.322992f,0.10513f},{-0.0158895f,0.321997f,0.10513f}, - {-0.0130507f,0.323894f,0.10513f},{-0.0115442f,0.324699f,0.10513f},{-0.00340717f,0.327167f,0.10513f}, - {-0.00170718f,0.327329f,0.10513f},{-0.00509216f,0.326889f,0.10513f},{-0.0067556f,0.326501f,0.10513f}, - {-0.00839014f,0.326005f,0.10513f},{-0.0184567f,0.319746f,0.10513f},{-0.00998851f,0.325404f,0.10513f}, - {-0.0114195f,0.321068f,0.10252f},{-0.0131871f,0.319936f,0.10252f},{-0.0123517f,0.322682f,0.104011f}, - {-0.0179085f,0.315462f,0.10252f},{-0.0164595f,0.317122f,0.10252f},{-0.0148769f,0.318617f,0.10252f}, - {-0.0224459f,0.305508f,0.10252f},{-0.0219419f,0.307627f,0.10252f},{-0.0212291f,0.309712f,0.10252f}, - {-0.022839f,0.301289f,0.10252f},{-0.0227427f,0.303387f,0.10252f},{-0.0123517f,0.279895f,0.104011f}, - {-0.0114195f,0.281509f,0.10252f},{-0.0101514f,0.28083f,0.10252f},{-0.00882321f,0.280223f,0.10252f}, - {-0.00744093f,0.279696f,0.10252f},{-0.00601179f,0.279255f,0.10252f},{-0.00454389f,0.278906f,0.10252f}, - {-0.00304618f,0.278654f,0.10252f},{-0.00152821f,0.278501f,0.10252f},{-0.00650255f,0.277456f,0.104011f}, - {-0.00491482f,0.277079f,0.104011f},{-0.0109801f,0.279159f,0.104011f},{-0.00329485f,0.276806f,0.104011f}, - {-0.00165296f,0.276641f,0.104011f},{-0.00804836f,0.277933f,0.104011f},{-0.00954347f,0.278503f,0.104011f}, - {-0.0191994f,0.313658f,0.10252f},{-0.0203114f,0.311732f,0.10252f},{-0.0160918f,0.320032f,0.104011f}, - {-0.0247034f,0.301289f,0.104011f},{-0.0245988f,0.303557f,0.104011f},{-0.0242781f,0.305852f,0.104011f}, - {-0.0237331f,0.308143f,0.104011f},{-0.0229622f,0.310398f,0.104011f},{-0.02197f,0.312584f,0.104011f}, - {-0.0207674f,0.314667f,0.104011f},{-0.0193711f,0.316619f,0.104011f},{-0.0178041f,0.318414f,0.104011f}, - {-0.0142649f,0.321457f,0.104011f},{0.0255992f,0.299923f,0.121909f},{0.0254901f,0.298561f,0.121909f}, - {0.0137506f,0.279653f,0.121909f},{0.0155417f,0.280901f,0.121909f},{0.0118616f,0.278562f,0.121909f}, - {0.00988475f,0.277635f,0.121909f},{-0.00988506f,0.277635f,0.121909f},{-0.0118618f,0.278562f,0.121909f}, - {-0.015542f,0.280901f,0.121909f},{-0.0137508f,0.279653f,0.121909f},{-0.0253087f,0.297208f,0.121909f}, - {-0.0254902f,0.298561f,0.121909f},{-0.0255992f,0.299923f,0.121909f},{0.0253087f,0.297208f,0.121909f}, - {-0.0121592f,0.301901f,0.104198f},{-0.0127415f,0.303616f,0.104198f},{-0.0124735f,0.303072f,0.104198f}, - {-0.0122784f,0.302498f,0.104198f},{-0.0139458f,0.304989f,0.104198f},{-0.0130793f,0.304123f,0.104198f}, - {-0.0134838f,0.304584f,0.104198f},{-0.0161672f,0.305909f,0.104198f},{-0.0155702f,0.30579f,0.104198f}, - {-0.014996f,0.305595f,0.104198f},{-0.0173925f,0.305909f,0.104198f},{-0.0179895f,0.30579f,0.104198f}, - {-0.0167797f,0.30595f,0.104198f},{-0.0191075f,0.305327f,0.104198f},{-0.0185634f,0.305595f,0.104198f}, - {-0.0200755f,0.304584f,0.104198f},{-0.0196139f,0.304989f,0.104198f},{-0.0204802f,0.304122f,0.104198f}, - {-0.020818f,0.303616f,0.104198f},{-0.0210859f,0.303072f,0.104198f},{-0.0212811f,0.302498f,0.104198f}, - {-0.0214003f,0.301901f,0.104198f},{-0.0144523f,0.305327f,0.104198f},{-0.00978795f,0.292446f,0.110723f}, - {-0.00945021f,0.292251f,0.110723f},{-0.0101588f,0.292566f,0.110723f},{-0.00916026f,0.29199f,0.110723f}, - {-0.00893114f,0.291674f,0.110723f},{-0.00877327f,0.291317f,0.110723f},{-0.00869249f,0.290936f,0.110723f}, - {-0.00869285f,0.290546f,0.110723f},{-0.00893415f,0.289809f,0.110723f},{-0.00877489f,0.290165f,0.110723f}, - {-0.00945258f,0.289234f,0.110723f},{-0.00916327f,0.289494f,0.110723f},{-0.0101599f,0.288919f,0.110723f}, - {-0.00978972f,0.289039f,0.110723f},{0.0132829f,0.290468f,0.110723f},{0.0136207f,0.290273f,0.110723f}, - {0.0129121f,0.290589f,0.110723f},{0.0139106f,0.290012f,0.110723f},{0.0141397f,0.289696f,0.110723f}, - {0.0142976f,0.28934f,0.110723f},{0.0143784f,0.288958f,0.110723f},{0.014378f,0.288568f,0.110723f}, - {0.0141367f,0.287831f,0.110723f},{0.014296f,0.288187f,0.110723f},{0.0136183f,0.287256f,0.110723f}, - {0.0139076f,0.287517f,0.110723f},{0.012911f,0.286941f,0.110723f},{0.0132812f,0.287062f,0.110723f}, - {0.0113054f,0.313539f,0.110723f},{0.0116432f,0.313344f,0.110723f},{0.0109345f,0.31366f,0.110723f}, - {0.0119331f,0.313083f,0.110723f},{0.0121622f,0.312767f,0.110723f},{0.0123201f,0.312411f,0.110723f}, - {0.0124009f,0.312029f,0.110723f},{0.0124005f,0.311639f,0.110723f},{0.0121592f,0.310902f,0.110723f}, - {0.0123185f,0.311258f,0.110723f},{0.0116408f,0.310327f,0.110723f},{0.0119301f,0.310588f,0.110723f}, - {0.0109335f,0.310012f,0.110723f},{0.0113037f,0.310133f,0.110723f},{-0.0117655f,0.315517f,0.110723f}, - {-0.0114277f,0.315322f,0.110723f},{-0.0121363f,0.315637f,0.110723f},{-0.0111378f,0.315061f,0.110723f}, - {-0.0109086f,0.314745f,0.110723f},{-0.0107508f,0.314388f,0.110723f},{-0.01067f,0.314007f,0.110723f}, - {-0.0106704f,0.313617f,0.110723f},{-0.0109117f,0.31288f,0.110723f},{-0.0107524f,0.313235f,0.110723f}, - {-0.0114301f,0.312305f,0.110723f},{-0.0111408f,0.312565f,0.110723f},{-0.0121374f,0.31199f,0.110723f}, - {-0.0117672f,0.31211f,0.110723f},{-0.000612842f,0.289129f,0.104198f},{-0.00232777f,0.288547f,0.104198f}, - {-0.00120978f,0.28901f,0.104198f},{-0.00178369f,0.288815f,0.104198f},{-0.00370055f,0.287343f,0.104198f}, - {-0.00403832f,0.286836f,0.104198f},{-0.00329584f,0.287805f,0.104198f},{-0.00462066f,0.285121f,0.104198f}, - {-0.00430621f,0.286293f,0.104198f},{-0.00450141f,0.285718f,0.104198f},{-0.00450127f,0.283299f,0.104198f}, - {-0.00466102f,0.284509f,0.104198f},{-0.00462052f,0.283896f,0.104198f},{-0.00403818f,0.282181f,0.104198f}, - {-0.00370041f,0.281675f,0.104198f},{-0.00430621f,0.282725f,0.104198f},{-0.00329584f,0.281213f,0.104198f}, - {-0.00283386f,0.280808f,0.104198f},{-0.00232743f,0.280471f,0.104198f},{-0.00178369f,0.280203f,0.104198f}, - {-0.00120944f,0.280007f,0.104198f},{-0.000612502f,0.279888f,0.104198f},{-0.0028342f,0.288209f,0.104198f}, - {0.0121592f,0.300676f,0.104198f},{0.0127415f,0.298961f,0.104198f},{0.0124735f,0.299505f,0.104198f}, - {0.0122784f,0.300079f,0.104198f},{0.0139458f,0.297588f,0.104198f},{0.0130793f,0.298454f,0.104198f}, - {0.0134838f,0.297993f,0.104198f},{0.0161672f,0.296668f,0.104198f},{0.0155702f,0.296787f,0.104198f}, - {0.014996f,0.296982f,0.104198f},{0.0179895f,0.296787f,0.104198f},{0.0173925f,0.296668f,0.104198f}, - {0.0167797f,0.296628f,0.104198f},{0.0191075f,0.29725f,0.104198f},{0.0185634f,0.296982f,0.104198f}, - {0.0200755f,0.297993f,0.104198f},{0.0196139f,0.297588f,0.104198f},{0.0204802f,0.298455f,0.104198f}, - {0.020818f,0.298961f,0.104198f},{0.0210859f,0.299505f,0.104198f},{0.0212811f,0.300079f,0.104198f}, - {0.0214003f,0.300676f,0.104198f},{0.0144523f,0.29725f,0.104198f},{0.000612842f,0.313448f,0.104198f}, - {0.00232777f,0.31403f,0.104198f},{0.00178369f,0.313762f,0.104198f},{0.00120978f,0.313567f,0.104198f}, - {0.00370055f,0.315234f,0.104198f},{0.0028342f,0.314368f,0.104198f},{0.00329584f,0.314772f,0.104198f}, - {0.00462066f,0.317456f,0.104198f},{0.00450141f,0.316859f,0.104198f},{0.00430621f,0.316285f,0.104198f}, - {0.00462052f,0.318681f,0.104198f},{0.00450127f,0.319278f,0.104198f},{0.00466102f,0.318068f,0.104198f}, - {0.00403818f,0.320396f,0.104198f},{0.00430621f,0.319852f,0.104198f},{0.00329584f,0.321364f,0.104198f}, - {0.00370041f,0.320902f,0.104198f},{0.00283386f,0.321769f,0.104198f},{0.00232743f,0.322107f,0.104198f}, - {0.00178369f,0.322374f,0.104198f},{0.00120944f,0.32257f,0.104198f},{0.000612502f,0.322689f,0.104198f}, - {0.00403832f,0.315741f,0.104198f},{0.0114195f,0.281509f,0.104198f},{0.00948155f,0.280511f,0.104198f}, - {0.0032562f,0.278683f,0.104198f},{0.00746583f,0.279704f,0.104198f},{-0.00325654f,0.278683f,0.104198f}, - {0.00109039f,0.278476f,0.104198f},{-0.00109151f,0.278476f,0.104198f},{-0.00746603f,0.279704f,0.104198f}, - {-0.00538621f,0.279094f,0.104198f},{-0.00948213f,0.280511f,0.104198f},{-0.0114195f,0.281509f,0.104198f}, - {0.00538567f,0.279094f,0.104198f},{0.0123517f,0.279895f,0.104198f},{-0.0123517f,0.279895f,0.104198f}, - {-0.0102556f,0.278815f,0.104198f},{-0.00352201f,0.276837f,0.104198f},{-0.00807529f,0.277942f,0.104198f}, - {0.00352238f,0.276838f,0.104198f},{-0.00117941f,0.276613f,0.104198f},{0.00118061f,0.276613f,0.104198f}, - {0.0080755f,0.277942f,0.104198f},{0.0102562f,0.278815f,0.104198f},{0.0058259f,0.277282f,0.104198f}, - {-0.00582532f,0.277282f,0.104198f},{0.0132534f,0.319889f,0.104198f},{0.0114195f,0.321068f,0.104198f}, - {0.017949f,0.315411f,0.104198f},{0.0165285f,0.31705f,0.104198f},{0.0149596f,0.318546f,0.104198f}, - {0.0203023f,0.31175f,0.104198f},{0.0212053f,0.309771f,0.104198f},{0.0192114f,0.313639f,0.104198f}, - {0.0224255f,0.305615f,0.104198f},{0.0219143f,0.307721f,0.104198f},{0.0227351f,0.303466f,0.104198f}, - {0.022839f,0.301289f,0.104198f},{0.0123517f,0.322682f,0.104198f},{0.0247034f,0.301289f,0.104198f}, - {0.0245908f,0.303644f,0.104198f},{0.0229363f,0.310464f,0.104198f},{0.0237031f,0.308247f,0.104198f}, - {0.0242561f,0.305968f,0.104198f},{0.020779f,0.314649f,0.104198f},{0.019414f,0.316565f,0.104198f}, - {0.0219591f,0.312605f,0.104198f},{0.0178774f,0.318337f,0.104198f},{0.0161807f,0.319955f,0.104198f}, - {0.0143348f,0.321408f,0.104198f},{-0.0227349f,0.303466f,0.104198f},{-0.022839f,0.301289f,0.104198f}, - {-0.0212052f,0.309771f,0.104198f},{-0.0219142f,0.307722f,0.104198f},{-0.0224254f,0.305615f,0.104198f}, - {-0.0192108f,0.31364f,0.104198f},{-0.0179488f,0.315412f,0.104198f},{-0.0203018f,0.311751f,0.104198f}, - {-0.0149595f,0.318546f,0.104198f},{-0.0165281f,0.317051f,0.104198f},{-0.0132529f,0.319889f,0.104198f}, - {-0.0114195f,0.321068f,0.104198f},{-0.0247034f,0.301289f,0.104198f},{-0.0123517f,0.322682f,0.104198f}, - {-0.0143353f,0.321407f,0.104198f},{-0.0194142f,0.316564f,0.104198f},{-0.0178778f,0.318337f,0.104198f}, - {-0.0161808f,0.319955f,0.104198f},{-0.0219596f,0.312604f,0.104198f},{-0.0229364f,0.310464f,0.104198f}, - {-0.0207797f,0.314648f,0.104198f},{-0.0237033f,0.308246f,0.104198f},{-0.0242561f,0.305968f,0.104198f}, - {-0.024591f,0.303643f,0.104198f},{-0.00275356f,0.3008f,0.0986044f},{-0.00214219f,0.299491f,0.0986044f}, - {-0.00242266f,0.299891f,0.0986044f},{-0.00262748f,0.300331f,0.0986044f},{-0.000956449f,0.298661f,0.0986044f}, - {-0.00048723f,0.298535f,0.0986044f},{-0.00179504f,0.299144f,0.0986044f},{-0.00139564f,0.298865f,0.0986044f}, - {0.000957717f,0.298661f,0.0986044f},{0.000488516f,0.298535f,0.0986044f},{-2.66406e-017f,0.298492f,0.0986044f}, - {0.00179767f,0.299146f,0.0986044f},{0.00139727f,0.298866f,0.0986044f},{0.00214411f,0.299493f,0.0986044f}, - {0.00242333f,0.299893f,0.0986044f},{0.00262801f,0.300332f,0.0986044f},{0.00275356f,0.3008f,0.0986044f}, - {0.0174099f,0.300063f,0.121909f},{0.0172871f,0.300669f,0.121909f},{0.0172458f,0.301289f,0.121909f}, - {0.0176121f,0.299477f,0.121909f},{0.0182409f,0.29841f,0.121909f},{0.0178912f,0.298922f,0.121909f}, - {0.0186544f,0.29795f,0.121909f},{0.0191262f,0.297548f,0.121909f},{0.0196487f,0.297211f,0.121909f}, - {0.0202093f,0.296948f,0.121909f},{0.0207991f,0.296761f,0.121909f},{0.021411f,0.296654f,0.121909f}, - {0.0172872f,0.301908f,0.121909f},{0.0174099f,0.302515f,0.121909f},{0.0176122f,0.3031f,0.121909f}, - {0.0178915f,0.303655f,0.121909f},{0.0182411f,0.304167f,0.121909f},{0.0186545f,0.304627f,0.121909f}, - {0.0191266f,0.30503f,0.121909f},{0.0196491f,0.305366f,0.121909f},{0.0202094f,0.305629f,0.121909f}, - {0.0207994f,0.305816f,0.121909f},{0.021411f,0.305923f,0.121909f},{0.00761603f,0.308374f,0.121909f}, - {0.00821991f,0.309912f,0.121909f},{0.00794276f,0.309432f,0.121909f},{0.00774033f,0.308916f,0.121909f}, - {0.00944153f,0.311045f,0.121909f},{0.00856913f,0.31035f,0.121909f},{0.00898119f,0.310732f,0.121909f}, - {0.0115849f,0.311532f,0.121909f},{0.011024f,0.311532f,0.121909f},{0.01047f,0.311449f,0.121909f}, - {0.0126654f,0.311285f,0.121909f},{0.012136f,0.311448f,0.121909f},{0.0136271f,0.310729f,0.121909f}, - {0.0140372f,0.310348f,0.121909f},{0.0131654f,0.311044f,0.121909f},{0.0143853f,0.309911f,0.121909f}, - {0.0146628f,0.30943f,0.121909f},{0.0148654f,0.308914f,0.121909f},{0.0149887f,0.308374f,0.121909f}, - {0.00994023f,0.311285f,0.121909f},{0.00749878f,0.301677f,0.121909f},{0.0080757f,0.302675f,0.121909f}, - {0.007619f,0.302047f,0.121909f},{0.0091279f,0.303143f,0.121909f},{0.00839049f,0.302903f,0.121909f}, - {0.00874642f,0.303062f,0.121909f},{0.00989914f,0.303061f,0.121909f},{0.0102546f,0.302903f,0.121909f}, - {0.00951793f,0.303143f,0.121909f},{0.0105703f,0.302673f,0.121909f},{0.0108309f,0.302384f,0.121909f}, - {0.0110255f,0.302046f,0.121909f},{0.0111456f,0.301676f,0.121909f},{0.00781413f,0.302385f,0.121909f}, - {0.00632322f,0.319723f,0.121909f},{0.00629776f,0.320341f,0.121909f},{0.00635281f,0.320959f,0.121909f}, - {0.00643547f,0.319113f,0.121909f},{0.00662778f,0.318524f,0.121909f},{0.00689664f,0.317965f,0.121909f}, - {0.00723717f,0.317447f,0.121909f},{0.00862289f,0.316224f,0.121909f},{0.00917948f,0.31595f,0.121909f}, - {0.00764334f,0.316979f,0.121909f},{0.00810797f,0.316569f,0.121909f},{0.010376f,0.315635f,0.121909f}, - {0.0109947f,0.3156f,0.121909f},{0.0143217f,0.317038f,0.121909f},{0.0138626f,0.316622f,0.121909f}, - {0.0122191f,0.315775f,0.121909f},{0.012803f,0.315983f,0.121909f},{0.013354f,0.316267f,0.121909f}, - {0.0147191f,0.317514f,0.121909f},{0.0116126f,0.315647f,0.121909f},{0.0097673f,0.315753f,0.121909f}, - {0.00647672f,0.321566f,0.121909f},{0.00669182f,0.322148f,0.121909f},{-0.00232814f,0.311427f,0.121909f}, - {-0.00335826f,0.312719f,0.121909f},{-0.00308092f,0.312239f,0.121909f},{-0.0027356f,0.311806f,0.121909f}, - {-0.00372865f,0.314343f,0.121909f},{-0.0035632f,0.313241f,0.121909f},{-0.00368751f,0.313788f,0.121909f}, - {-0.00307835f,0.316443f,0.121909f},{-0.00335937f,0.315957f,0.121909f},{-0.00356405f,0.315436f,0.121909f}, - {-0.00232427f,0.317255f,0.121909f},{-0.0027306f,0.316878f,0.121909f},{-0.00136237f,0.31781f,0.121909f}, - {-0.000827251f,0.317975f,0.121909f},{-0.00186593f,0.317568f,0.121909f},{-0.000274996f,0.318058f,0.121909f}, - {0.000280844f,0.318058f,0.121909f},{0.000829073f,0.317975f,0.121909f},{0.00135821f,0.317812f,0.121909f}, - {-0.00368715f,0.314895f,0.121909f},{0.0034127f,0.307977f,0.121909f},{0.00283723f,0.308975f,0.121909f}, - {0.00315233f,0.308266f,0.121909f},{0.00295815f,0.310121f,0.121909f},{0.00279666f,0.309362f,0.121909f}, - {0.00283762f,0.30975f,0.121909f},{0.00341439f,0.310748f,0.121909f},{0.00372927f,0.310977f,0.121909f}, - {0.00315311f,0.310458f,0.121909f},{0.00408585f,0.311135f,0.121909f},{0.00446695f,0.311216f,0.121909f}, - {0.0048565f,0.311216f,0.121909f},{0.00523731f,0.311135f,0.121909f},{0.00295751f,0.308604f,0.121909f}, - {-0.0133515f,0.316269f,0.121909f},{-0.013859f,0.316626f,0.121909f},{-0.00764282f,0.316979f,0.121909f}, - {-0.00810759f,0.316569f,0.121909f},{-0.00723674f,0.317448f,0.121909f},{-0.00862289f,0.316224f,0.121909f}, - {-0.00689651f,0.317966f,0.121909f},{-0.00662806f,0.318524f,0.121909f},{-0.00643592f,0.319114f,0.121909f}, - {-0.00917901f,0.31595f,0.121909f},{-0.00976653f,0.315753f,0.121909f},{-0.00632427f,0.319723f,0.121909f}, - {-0.0103751f,0.315635f,0.121909f},{-0.00629503f,0.320343f,0.121909f},{-0.0064786f,0.321566f,0.121909f}, - {-0.00634749f,0.32096f,0.121909f},{-0.010994f,0.3156f,0.121909f},{-0.00669182f,0.322148f,0.121909f}, - {-0.0116123f,0.315646f,0.121909f},{-0.0128028f,0.315982f,0.121909f},{-0.0122189f,0.315774f,0.121909f}, - {-0.0143221f,0.317036f,0.121909f},{-0.0147191f,0.317514f,0.121909f},{-0.00994417f,0.304342f,0.121909f}, - {-0.0115782f,0.304095f,0.121909f},{-0.0110237f,0.304096f,0.121909f},{-0.0104759f,0.304178f,0.121909f}, - {-0.0131702f,0.304587f,0.121909f},{-0.0121323f,0.304179f,0.121909f},{-0.0126687f,0.304345f,0.121909f}, - {-0.0146632f,0.3062f,0.121909f},{-0.0143833f,0.305714f,0.121909f},{-0.014034f,0.305276f,0.121909f}, - {-0.0149897f,0.307259f,0.121909f},{-0.0148666f,0.306719f,0.121909f},{-0.0149894f,0.30837f,0.121909f}, - {-0.0148645f,0.308915f,0.121909f},{-0.0150313f,0.307812f,0.121909f},{-0.0146603f,0.309435f,0.121909f}, - {-0.014382f,0.309916f,0.121909f},{-0.0140364f,0.31035f,0.121909f},{-0.0136305f,0.310726f,0.121909f}, - {-0.0136274f,0.304899f,0.121909f},{-0.00408601f,0.307588f,0.121909f},{-0.0052381f,0.307589f,0.121909f}, - {-0.00446686f,0.307507f,0.121909f},{-0.00616977f,0.308266f,0.121909f},{-0.00559379f,0.307747f,0.121909f}, - {-0.00590924f,0.307977f,0.121909f},{-0.00648482f,0.308975f,0.121909f},{-0.00652543f,0.309362f,0.121909f}, - {-0.0063645f,0.308604f,0.121909f},{-0.00648441f,0.30975f,0.121909f},{-0.00636386f,0.310121f,0.121909f}, - {-0.00616897f,0.310458f,0.121909f},{-0.00590844f,0.310747f,0.121909f},{-0.00485671f,0.307508f,0.121909f}, - {-0.0178906f,0.298923f,0.121909f},{-0.0176123f,0.299477f,0.121909f},{-0.0182401f,0.298411f,0.121909f}, - {-0.0186543f,0.297949f,0.121909f},{-0.019126f,0.297548f,0.121909f},{-0.0174099f,0.300063f,0.121909f}, - {-0.0196492f,0.297216f,0.121909f},{-0.017287f,0.30067f,0.121909f},{-0.0172458f,0.301289f,0.121909f}, - {-0.0172871f,0.301907f,0.121909f},{-0.0174101f,0.302515f,0.121909f},{-0.0176127f,0.303101f,0.121909f}, - {-0.0178912f,0.303655f,0.121909f},{-0.0182407f,0.304166f,0.121909f},{-0.018655f,0.304627f,0.121909f}, - {-0.0191272f,0.305029f,0.121909f},{-0.0196491f,0.305364f,0.121909f},{-0.02021f,0.305627f,0.121909f}, - {-0.0208003f,0.305817f,0.121909f},{-0.021411f,0.305923f,0.121909f},{-0.0207988f,0.296759f,0.121909f}, - {-0.0202118f,0.296955f,0.121909f},{-0.021411f,0.296654f,0.121909f},{-0.00761603f,0.294203f,0.121909f}, - {-0.00821991f,0.292665f,0.121909f},{-0.00794276f,0.293145f,0.121909f},{-0.00774033f,0.293661f,0.121909f}, - {-0.00944153f,0.291532f,0.121909f},{-0.00856913f,0.292227f,0.121909f},{-0.00898119f,0.291845f,0.121909f}, - {-0.0115849f,0.291045f,0.121909f},{-0.011024f,0.291045f,0.121909f},{-0.01047f,0.291128f,0.121909f}, - {-0.0126654f,0.291292f,0.121909f},{-0.012136f,0.291129f,0.121909f},{-0.0136271f,0.291848f,0.121909f}, - {-0.0140372f,0.292229f,0.121909f},{-0.0131654f,0.291533f,0.121909f},{-0.0143853f,0.292666f,0.121909f}, - {-0.0146628f,0.293147f,0.121909f},{-0.0148654f,0.293663f,0.121909f},{-0.0149887f,0.294203f,0.121909f}, - {-0.00994023f,0.291292f,0.121909f},{-0.00749878f,0.3009f,0.121909f},{-0.0080757f,0.299902f,0.121909f}, - {-0.007619f,0.30053f,0.121909f},{-0.0091279f,0.299434f,0.121909f},{-0.00839049f,0.299674f,0.121909f}, - {-0.00874642f,0.299515f,0.121909f},{-0.00989914f,0.299516f,0.121909f},{-0.0102546f,0.299674f,0.121909f}, - {-0.00951793f,0.299435f,0.121909f},{-0.0105703f,0.299904f,0.121909f},{-0.0108309f,0.300193f,0.121909f}, - {-0.0110255f,0.300531f,0.121909f},{-0.0111456f,0.300901f,0.121909f},{-0.00781413f,0.300192f,0.121909f}, - {-0.00629776f,0.282236f,0.121909f},{-0.00632322f,0.282854f,0.121909f},{-0.0147191f,0.285063f,0.121909f}, - {-0.00643547f,0.283464f,0.121909f},{-0.00635281f,0.281618f,0.121909f},{-0.00662778f,0.284053f,0.121909f}, - {-0.00689664f,0.284612f,0.121909f},{-0.00764334f,0.285598f,0.121909f},{-0.00810797f,0.286008f,0.121909f}, - {-0.00723717f,0.28513f,0.121909f},{-0.010376f,0.286942f,0.121909f},{-0.0109947f,0.286977f,0.121909f}, - {-0.00862289f,0.286353f,0.121909f},{-0.00917948f,0.286627f,0.121909f},{-0.0143217f,0.285539f,0.121909f}, - {-0.0138626f,0.285956f,0.121909f},{-0.0122191f,0.286802f,0.121909f},{-0.012803f,0.286594f,0.121909f}, - {-0.013354f,0.28631f,0.121909f},{-0.0116126f,0.286931f,0.121909f},{-0.0097673f,0.286824f,0.121909f}, - {-0.00647672f,0.281011f,0.121909f},{-0.00669182f,0.280429f,0.121909f},{0.00232814f,0.29115f,0.121909f}, - {0.00335826f,0.289858f,0.121909f},{0.00308092f,0.290338f,0.121909f},{0.0027356f,0.290771f,0.121909f}, - {0.00372865f,0.288234f,0.121909f},{0.0035632f,0.289337f,0.121909f},{0.00368751f,0.288789f,0.121909f}, - {0.00307835f,0.286134f,0.121909f},{0.00335937f,0.28662f,0.121909f},{0.00356405f,0.287141f,0.121909f}, - {0.00232427f,0.285322f,0.121909f},{0.0027306f,0.285699f,0.121909f},{0.00136237f,0.284767f,0.121909f}, - {0.000827251f,0.284602f,0.121909f},{0.00186593f,0.285009f,0.121909f},{0.000274996f,0.284519f,0.121909f}, - {-0.000280844f,0.284519f,0.121909f},{-0.000829073f,0.284602f,0.121909f},{-0.00135821f,0.284765f,0.121909f}, - {0.00368715f,0.287682f,0.121909f},{-0.0034126f,0.2946f,0.121909f},{-0.00283728f,0.293602f,0.121909f}, - {-0.0031524f,0.294311f,0.121909f},{-0.00295812f,0.292456f,0.121909f},{-0.00279668f,0.293215f,0.121909f}, - {-0.0028374f,0.292827f,0.121909f},{-0.0034143f,0.291829f,0.121909f},{-0.00372908f,0.291601f,0.121909f}, - {-0.00315337f,0.292119f,0.121909f},{-0.00408596f,0.291442f,0.121909f},{-0.00446705f,0.291361f,0.121909f}, - {-0.00485646f,0.291361f,0.121909f},{-0.00523689f,0.291442f,0.121909f},{-0.00295753f,0.293973f,0.121909f}, - {0.00764282f,0.285598f,0.121909f},{0.00723674f,0.285129f,0.121909f},{0.00810759f,0.286008f,0.121909f}, - {0.00862289f,0.286353f,0.121909f},{0.00689651f,0.284611f,0.121909f},{0.00662806f,0.284053f,0.121909f}, - {0.00643592f,0.283463f,0.121909f},{0.00917901f,0.286627f,0.121909f},{0.00632427f,0.282854f,0.121909f}, - {0.00629503f,0.282234f,0.121909f},{0.00976653f,0.286824f,0.121909f},{0.00634749f,0.281617f,0.121909f}, - {0.0103751f,0.286942f,0.121909f},{0.010994f,0.286978f,0.121909f},{0.0064786f,0.281011f,0.121909f}, - {0.00669182f,0.280429f,0.121909f},{0.0116123f,0.286931f,0.121909f},{0.0128028f,0.286595f,0.121909f}, - {0.0122189f,0.286803f,0.121909f},{0.0133515f,0.286308f,0.121909f},{0.013859f,0.285951f,0.121909f}, - {0.0143221f,0.285541f,0.121909f},{0.0147191f,0.285063f,0.121909f},{0.00994417f,0.298236f,0.121909f}, - {0.0115782f,0.298482f,0.121909f},{0.0110237f,0.298482f,0.121909f},{0.0104759f,0.298399f,0.121909f}, - {0.0131702f,0.29799f,0.121909f},{0.0121323f,0.298398f,0.121909f},{0.0126687f,0.298232f,0.121909f}, - {0.0146632f,0.296377f,0.121909f},{0.0143833f,0.296863f,0.121909f},{0.014034f,0.297301f,0.121909f}, - {0.0149897f,0.295318f,0.121909f},{0.0148666f,0.295858f,0.121909f},{0.0149894f,0.294208f,0.121909f}, - {0.0148645f,0.293662f,0.121909f},{0.0150313f,0.294765f,0.121909f},{0.0146603f,0.293142f,0.121909f}, - {0.014382f,0.292661f,0.121909f},{0.0140364f,0.292227f,0.121909f},{0.0136305f,0.291851f,0.121909f}, - {0.0136274f,0.297678f,0.121909f},{0.00408601f,0.294989f,0.121909f},{0.0052381f,0.294988f,0.121909f}, - {0.00446686f,0.29507f,0.121909f},{0.00616977f,0.294311f,0.121909f},{0.00559379f,0.29483f,0.121909f}, - {0.00590924f,0.2946f,0.121909f},{0.00648482f,0.293602f,0.121909f},{0.00652543f,0.293215f,0.121909f}, - {0.0063645f,0.293973f,0.121909f},{0.00648441f,0.292827f,0.121909f},{0.00636386f,0.292456f,0.121909f}, - {0.00616897f,0.292119f,0.121909f},{0.00590844f,0.29183f,0.121909f},{0.00485671f,0.295069f,0.121909f}, - {0.00462052f,0.300676f,0.127503f},{0.00403818f,0.298961f,0.127503f},{0.00450127f,0.300079f,0.127503f}, - {0.00283386f,0.297588f,0.127503f},{0.00232743f,0.29725f,0.127503f},{0.00329584f,0.297993f,0.127503f}, - {0.000612502f,0.296668f,0.127503f},{0.00178369f,0.296982f,0.127503f},{0.00120944f,0.296787f,0.127503f}, - {-0.00120978f,0.296787f,0.127503f},{-2.48389e-017f,0.296628f,0.127503f},{-0.000612842f,0.296668f,0.127503f}, - {-0.00232777f,0.29725f,0.127503f},{-0.0028342f,0.297588f,0.127503f},{-0.00178369f,0.296982f,0.127503f}, - {-0.00329584f,0.297993f,0.127503f},{-0.00370055f,0.298455f,0.127503f},{-0.00403832f,0.298961f,0.127503f}, - {-0.00430621f,0.299505f,0.127503f},{-0.00450141f,0.300079f,0.127503f},{-0.00462066f,0.300676f,0.127503f}, - {0.00370041f,0.298454f,0.127503f},{0.00430621f,0.299505f,0.127503f},{-0.00139737f,0.298869f,0.127503f}, - {-0.00275363f,0.300804f,0.127503f},{-0.00242194f,0.299891f,0.127503f},{-0.00214182f,0.299492f,0.127503f}, - {-0.00262754f,0.300333f,0.127503f},{-0.00179665f,0.299148f,0.127503f},{-0.000956049f,0.298662f,0.127503f}, - {-0.000485772f,0.298534f,0.127503f},{-2.74781e-017f,0.298492f,0.127503f},{0.000955564f,0.29866f,0.127503f}, - {0.000485107f,0.298534f,0.127503f},{0.00139499f,0.298869f,0.127503f},{0.00275512f,0.300803f,0.127503f}, - {0.00178917f,0.299157f,0.127503f},{0.00262887f,0.300331f,0.127503f},{0.00242212f,0.29989f,0.127503f}, - {0.00214373f,0.299488f,0.127503f},{-0.00275512f,0.300803f,0.13496f},{-0.00262887f,0.300331f,0.13496f}, - {-0.00242212f,0.29989f,0.13496f},{-0.00214373f,0.299488f,0.13496f},{-0.00178917f,0.299157f,0.13496f}, - {-0.00139499f,0.298869f,0.13496f},{-0.000955564f,0.29866f,0.13496f},{-0.000485107f,0.298534f,0.13496f}, - {-2.71676e-017f,0.298492f,0.13496f},{0.000485772f,0.298534f,0.13496f},{0.00179665f,0.299148f,0.13496f}, - {0.00262754f,0.300333f,0.13496f},{0.000956049f,0.298662f,0.13496f},{0.00139737f,0.298869f,0.13496f}, - {0.00214182f,0.299492f,0.13496f},{0.00242194f,0.299891f,0.13496f},{0.00275363f,0.300804f,0.13496f}, - {0.301289f,0.00279661f,0.126571f},{0.301289f,0.00279661f,0.134028f},{0.301777f,0.00275356f,0.134028f}, - {0.302246f,0.00262748f,0.134028f},{0.301776f,0.00275376f,0.126571f},{0.302245f,0.00262801f,0.126571f}, - {0.302684f,0.00242333f,0.126571f},{0.303084f,0.00214411f,0.126571f},{0.302686f,0.00242266f,0.134028f}, - {0.303086f,0.00214219f,0.134028f},{0.303431f,0.00179767f,0.126571f},{0.303433f,0.00179504f,0.134028f}, - {0.303711f,0.00139727f,0.126571f},{0.303916f,0.000957717f,0.126571f},{0.303712f,0.00139564f,0.134028f}, - {0.303917f,0.000956449f,0.134028f},{0.304042f,0.000488516f,0.126571f},{0.304042f,0.000488516f,0.134028f}, - {0.304085f,2.50765e-018f,0.134028f},{0.304085f,2.50765e-018f,0.126571f},{0.3008f,0.00275356f,0.126571f}, - {0.300331f,0.00262748f,0.126571f},{0.300801f,0.00275376f,0.134028f},{0.299893f,0.00242333f,0.134028f}, - {0.300332f,0.00262801f,0.134028f},{0.299891f,0.00242266f,0.126571f},{0.299493f,0.00214411f,0.134028f}, - {0.299491f,0.00214219f,0.126571f},{0.299146f,0.00179767f,0.134028f},{0.298866f,0.00139727f,0.134028f}, - {0.299144f,0.00179504f,0.126571f},{0.298865f,0.00139564f,0.126571f},{0.298661f,0.000957717f,0.134028f}, - {0.298661f,0.000956449f,0.126571f},{0.298535f,0.000488516f,0.134028f},{0.298535f,0.000488516f,0.126571f}, - {0.298492f,2.16517e-018f,0.126571f},{0.298492f,2.16517e-018f,0.134028f},{0.301289f,0.00466102f,0.124706f}, - {0.301289f,0.00466102f,0.126571f},{0.301901f,0.00462052f,0.126571f},{0.302498f,0.00450127f,0.126571f}, - {0.301901f,0.00462066f,0.124706f},{0.303072f,0.00430621f,0.126571f},{0.302498f,0.00450141f,0.124706f}, - {0.303072f,0.00430621f,0.124706f},{0.303616f,0.00403818f,0.126571f},{0.304123f,0.00370041f,0.126571f}, - {0.303616f,0.00403832f,0.124706f},{0.304584f,0.00329584f,0.126571f},{0.304122f,0.00370055f,0.124706f}, - {0.304584f,0.00329584f,0.124706f},{0.304989f,0.00283386f,0.126571f},{0.305327f,0.00232743f,0.126571f}, - {0.304989f,0.0028342f,0.124706f},{0.305595f,0.00178369f,0.126571f},{0.305327f,0.00232777f,0.124706f}, - {0.30579f,0.00120978f,0.124706f},{0.305595f,0.00178369f,0.124706f},{0.30579f,0.00120944f,0.126571f}, - {0.305909f,0.000612842f,0.124706f},{0.305909f,0.000612502f,0.126571f},{0.30595f,2.73598e-018f,0.124706f}, - {0.30595f,2.73598e-018f,0.126571f},{0.300676f,0.00462052f,0.124706f},{0.300079f,0.00450127f,0.124706f}, - {0.300676f,0.00462066f,0.126571f},{0.300079f,0.00450141f,0.126571f},{0.299505f,0.00430621f,0.124706f}, - {0.298961f,0.00403818f,0.124706f},{0.299505f,0.00430621f,0.126571f},{0.298454f,0.00370041f,0.124706f}, - {0.298961f,0.00403832f,0.126571f},{0.298455f,0.00370055f,0.126571f},{0.297993f,0.00329584f,0.124706f}, - {0.297588f,0.00283386f,0.124706f},{0.297993f,0.00329584f,0.126571f},{0.29725f,0.00232743f,0.124706f}, - {0.297588f,0.0028342f,0.126571f},{0.29725f,0.00232777f,0.126571f},{0.296982f,0.00178369f,0.124706f}, - {0.296787f,0.00120978f,0.126571f},{0.296982f,0.00178369f,0.126571f},{0.296787f,0.00120944f,0.124706f}, - {0.296668f,0.000612842f,0.126571f},{0.296628f,2.16517e-018f,0.126571f},{0.296668f,0.000612502f,0.124706f}, - {0.296628f,2.16517e-018f,0.124706f},{0.304247f,-0.00883211f,0.124706f},{0.304442f,-0.00916975f,0.124706f}, - {0.304441f,-0.00916839f,0.120977f},{0.304246f,-0.00883048f,0.120977f},{0.304126f,-0.00846133f,0.124706f}, - {0.304126f,-0.00845974f,0.120977f},{0.304085f,-0.0080728f,0.120977f},{0.304126f,-0.00768692f,0.124706f}, - {0.304085f,-0.00807384f,0.124706f},{0.304126f,-0.00768446f,0.120977f},{0.304246f,-0.00731545f,0.124706f}, - {0.304247f,-0.00731401f,0.120977f},{0.304441f,-0.00697763f,0.124706f},{0.304442f,-0.00697682f,0.120977f}, - {0.304701f,-0.00668858f,0.124706f},{0.304702f,-0.0066878f,0.120977f},{0.305017f,-0.0064585f,0.120977f}, - {0.305017f,-0.0064585f,0.124706f},{0.304702f,-0.00945833f,0.120977f},{0.305017f,-0.00968734f,0.120977f}, - {0.304703f,-0.00945929f,0.124706f},{0.305018f,-0.00968796f,0.124706f},{0.305372f,-0.00984564f,0.120977f}, - {0.305375f,-0.00984651f,0.124706f},{0.305754f,-0.00992724f,0.120977f},{0.306144f,-0.00992738f,0.120977f}, - {0.305756f,-0.00992734f,0.124706f},{0.306145f,-0.00992724f,0.124706f},{0.306524f,-0.00984657f,0.120977f}, - {0.306525f,-0.00984636f,0.124706f},{0.306882f,-0.00968775f,0.120977f},{0.306882f,-0.00968775f,0.124706f}, - {0.309232f,-0.00814348f,0.124706f},{0.309513f,-0.00862894f,0.124706f},{0.30951f,-0.00862571f,0.120977f}, - {0.309027f,-0.00762194f,0.124706f},{0.30923f,-0.00813961f,0.120977f},{0.309027f,-0.00762066f,0.120977f}, - {0.308904f,-0.00708133f,0.124706f},{0.308904f,-0.00708043f,0.120977f},{0.308862f,-0.0065271f,0.120977f}, - {0.308862f,-0.00652944f,0.124706f},{0.308903f,-0.00597413f,0.124706f},{0.309233f,-0.00490426f,0.120977f}, - {0.30951f,-0.00442484f,0.124706f},{0.309233f,-0.00490499f,0.124706f},{0.308904f,-0.00596985f,0.120977f}, - {0.309028f,-0.00542656f,0.124706f},{0.309029f,-0.00542408f,0.120977f},{0.309511f,-0.00442313f,0.120977f}, - {0.309855f,-0.00399173f,0.124706f},{0.309857f,-0.00398963f,0.120977f},{0.310263f,-0.00361295f,0.120977f}, - {0.310726f,-0.00329618f,0.124706f},{0.310263f,-0.00361295f,0.124706f},{0.310726f,-0.00329618f,0.120977f}, - {0.309859f,-0.00906373f,0.120977f},{0.310266f,-0.00944065f,0.120977f},{0.30986f,-0.00906452f,0.124706f}, - {0.310267f,-0.00944121f,0.124706f},{0.310723f,-0.00975253f,0.120977f},{0.310725f,-0.00975397f,0.124706f}, - {0.311225f,-0.00999456f,0.120977f},{0.311761f,-0.0101607f,0.120977f},{0.311229f,-0.0099963f,0.124706f}, - {0.311764f,-0.010161f,0.124706f},{0.312315f,-0.010244f,0.120977f},{0.312316f,-0.0102441f,0.124706f}, - {0.31287f,-0.0102439f,0.120977f},{0.313417f,-0.0101614f,0.120977f},{0.312872f,-0.0102436f,0.124706f}, - {0.31342f,-0.010161f,0.124706f},{0.313949f,-0.0099979f,0.120977f},{0.313949f,-0.0099979f,0.124706f}, - {0.314455f,-0.00975468f,0.120977f},{0.314455f,-0.00975468f,0.124706f},{0.295119f,-0.00697787f,0.124706f}, - {0.294924f,-0.00731578f,0.124706f},{0.294925f,-0.00731414f,0.120977f},{0.29512f,-0.0069765f,0.120977f}, - {0.29538f,-0.00668793f,0.124706f},{0.295381f,-0.00668696f,0.120977f},{0.295696f,-0.0064583f,0.120977f}, - {0.29605f,-0.00630061f,0.124706f},{0.295695f,-0.00645891f,0.124706f},{0.296052f,-0.00629975f,0.120977f}, - {0.296432f,-0.00621902f,0.124706f},{0.296434f,-0.00621892f,0.120977f},{0.296822f,-0.00621887f,0.124706f}, - {0.296823f,-0.00621902f,0.120977f},{0.297202f,-0.00629969f,0.124706f},{0.297203f,-0.0062999f,0.120977f}, - {0.29756f,-0.0064585f,0.120977f},{0.29756f,-0.0064585f,0.124706f},{0.294804f,-0.00768493f,0.120977f}, - {0.294763f,-0.00807242f,0.120977f},{0.294804f,-0.00768652f,0.124706f},{0.294763f,-0.00807346f,0.124706f}, - {0.294804f,-0.00845934f,0.120977f},{0.294804f,-0.0084618f,0.124706f},{0.294924f,-0.0088308f,0.120977f}, - {0.295119f,-0.00916863f,0.120977f},{0.294925f,-0.00883225f,0.124706f},{0.29512f,-0.00916944f,0.124706f}, - {0.295379f,-0.00945768f,0.120977f},{0.29538f,-0.00945846f,0.124706f},{0.295695f,-0.00968775f,0.120977f}, - {0.295695f,-0.00968775f,0.124706f},{0.298208f,-0.0109506f,0.124706f},{0.297928f,-0.0114367f,0.124706f}, - {0.297929f,-0.0114328f,0.120977f},{0.298557f,-0.0105126f,0.124706f},{0.29821f,-0.0109474f,0.120977f}, - {0.298558f,-0.0105118f,0.120977f},{0.298964f,-0.0101356f,0.124706f},{0.298964f,-0.0101351f,0.120977f}, - {0.299423f,-0.00982233f,0.120977f},{0.299421f,-0.00982376f,0.124706f},{0.299922f,-0.00958174f,0.124706f}, - {0.301014f,-0.00933222f,0.120977f},{0.301567f,-0.00933241f,0.124706f},{0.301013f,-0.00933231f,0.124706f}, - {0.299926f,-0.00958f,0.120977f},{0.300459f,-0.00941561f,0.124706f},{0.300461f,-0.00941532f,0.120977f}, - {0.301569f,-0.0093327f,0.120977f},{0.302115f,-0.00941491f,0.124706f},{0.302118f,-0.00941526f,0.120977f}, - {0.302647f,-0.0095784f,0.120977f},{0.303153f,-0.00982161f,0.124706f},{0.302647f,-0.0095784f,0.124706f}, - {0.303153f,-0.00982161f,0.120977f},{0.297725f,-0.0119544f,0.120977f},{0.297601f,-0.012495f,0.120977f}, - {0.297724f,-0.0119556f,0.124706f},{0.297601f,-0.0124959f,0.124706f},{0.29756f,-0.0130469f,0.120977f}, - {0.29756f,-0.0130492f,0.124706f},{0.297601f,-0.0136022f,0.120977f},{0.297725f,-0.0141497f,0.120977f}, - {0.297601f,-0.0136064f,0.124706f},{0.297726f,-0.0141522f,0.124706f},{0.29793f,-0.0146713f,0.120977f}, - {0.297931f,-0.014672f,0.124706f},{0.298208f,-0.0151515f,0.120977f},{0.298553f,-0.0155846f,0.120977f}, - {0.298209f,-0.0151532f,0.124706f},{0.298555f,-0.0155867f,0.124706f},{0.29896f,-0.0159633f,0.120977f}, - {0.29896f,-0.0159633f,0.124706f},{0.299424f,-0.0162801f,0.120977f},{0.299424f,-0.0162801f,0.124706f}, - {0.292161f,0.00185425f,0.124706f},{0.291771f,0.00185398f,0.124706f},{0.291772f,0.00185425f,0.120977f}, - {0.292162f,0.00185398f,0.120977f},{0.292542f,0.0017734f,0.124706f},{0.292544f,0.00177278f,0.120977f}, - {0.292899f,0.0016145f,0.120977f},{0.293213f,0.0013863f,0.124706f},{0.292898f,0.00161492f,0.124706f}, - {0.293215f,0.00138471f,0.120977f},{0.293474f,0.00109643f,0.124706f},{0.293475f,0.00109509f,0.120977f}, - {0.29367f,0.000758756f,0.124706f},{0.29367f,0.000757801f,0.120977f},{0.29379f,0.000388892f,0.124706f}, - {0.29379f,0.000387896f,0.120977f},{0.293831f,5.86186e-018f,0.120977f},{0.293831f,5.86186e-018f,0.124706f}, - {0.291391f,0.0017734f,0.120977f},{0.291035f,0.00161492f,0.120977f},{0.291389f,0.00177278f,0.124706f}, - {0.291034f,0.0016145f,0.124706f},{0.29072f,0.0013863f,0.120977f},{0.290718f,0.00138471f,0.124706f}, - {0.290459f,0.00109643f,0.120977f},{0.290263f,0.000758756f,0.120977f},{0.290458f,0.00109509f,0.124706f}, - {0.290263f,0.000757801f,0.124706f},{0.290143f,0.000388892f,0.120977f},{0.290143f,0.000387896f,0.124706f}, - {0.290102f,6.91815e-018f,0.120977f},{0.290102f,6.91815e-018f,0.124706f},{0.290265f,-0.00280711f,0.124706f}, - {0.289704f,-0.00280775f,0.124706f},{0.289708f,-0.00280711f,0.120977f},{0.290819f,-0.00289062f,0.124706f}, - {0.290269f,-0.00280775f,0.120977f},{0.29082f,-0.00289112f,0.120977f},{0.291348f,-0.00305432f,0.124706f}, - {0.291349f,-0.00305467f,0.120977f},{0.291849f,-0.00329522f,0.120977f},{0.291847f,-0.00329432f,0.124706f}, - {0.292307f,-0.00360761f,0.124706f},{0.293069f,-0.00442796f,0.120977f},{0.293346f,-0.00490757f,0.124706f}, - {0.293069f,-0.00442732f,0.124706f},{0.292311f,-0.00361015f,0.120977f},{0.292719f,-0.00398905f,0.124706f}, - {0.292721f,-0.00399124f,0.120977f},{0.293347f,-0.00490957f,0.120977f},{0.293548f,-0.00542319f,0.124706f}, - {0.293549f,-0.00542563f,0.120977f},{0.293673f,-0.00596545f,0.120977f},{0.293715f,-0.00652543f,0.124706f}, - {0.293673f,-0.00596545f,0.124706f},{0.293715f,-0.00652543f,0.120977f},{0.289154f,-0.00289062f,0.120977f}, - {0.288624f,-0.00305432f,0.120977f},{0.289153f,-0.00289112f,0.124706f},{0.288623f,-0.00305467f,0.124706f}, - {0.288125f,-0.00329432f,0.120977f},{0.288123f,-0.00329522f,0.124706f},{0.287665f,-0.00360761f,0.120977f}, - {0.287253f,-0.00398905f,0.120977f},{0.287661f,-0.00361015f,0.124706f},{0.287251f,-0.00399124f,0.124706f}, - {0.286904f,-0.00442732f,0.120977f},{0.286903f,-0.00442796f,0.124706f},{0.286627f,-0.00490757f,0.120977f}, - {0.286424f,-0.00542319f,0.120977f},{0.286626f,-0.00490957f,0.124706f},{0.286423f,-0.00542563f,0.124706f}, - {0.2863f,-0.00596545f,0.120977f},{0.2863f,-0.00596545f,0.124706f},{0.286257f,-0.00652543f,0.120977f}, - {0.286257f,-0.00652543f,0.124706f},{0.29833f,0.00883211f,0.124706f},{0.298135f,0.00916975f,0.124706f}, - {0.298136f,0.00916839f,0.120977f},{0.298331f,0.00883048f,0.120977f},{0.298451f,0.00846133f,0.124706f}, - {0.298451f,0.00845974f,0.120977f},{0.298492f,0.0080728f,0.120977f},{0.298451f,0.00768692f,0.124706f}, - {0.298492f,0.00807384f,0.124706f},{0.298451f,0.00768446f,0.120977f},{0.298331f,0.00731545f,0.124706f}, - {0.29833f,0.00731401f,0.120977f},{0.298136f,0.00697763f,0.124706f},{0.298136f,0.00697682f,0.120977f}, - {0.297876f,0.00668858f,0.124706f},{0.297875f,0.0066878f,0.120977f},{0.29756f,0.0064585f,0.120977f}, - {0.29756f,0.0064585f,0.124706f},{0.297876f,0.00945833f,0.120977f},{0.29756f,0.00968734f,0.120977f}, - {0.297874f,0.00945929f,0.124706f},{0.297559f,0.00968796f,0.124706f},{0.297205f,0.00984564f,0.120977f}, - {0.297203f,0.00984651f,0.124706f},{0.296823f,0.00992724f,0.120977f},{0.296433f,0.00992738f,0.120977f}, - {0.296822f,0.00992734f,0.124706f},{0.296432f,0.00992724f,0.124706f},{0.296053f,0.00984657f,0.120977f}, - {0.296052f,0.00984636f,0.124706f},{0.295695f,0.00968775f,0.120977f},{0.295695f,0.00968775f,0.124706f}, - {0.293346f,0.00814348f,0.124706f},{0.293065f,0.00862894f,0.124706f},{0.293067f,0.00862571f,0.120977f}, - {0.29355f,0.00762194f,0.124706f},{0.293347f,0.00813961f,0.120977f},{0.29355f,0.00762066f,0.120977f}, - {0.293673f,0.00708133f,0.124706f},{0.293673f,0.00708043f,0.120977f},{0.293715f,0.0065271f,0.120977f}, - {0.293715f,0.00652944f,0.124706f},{0.293674f,0.00597413f,0.124706f},{0.293344f,0.00490426f,0.120977f}, - {0.293067f,0.00442484f,0.124706f},{0.293344f,0.00490499f,0.124706f},{0.293673f,0.00596985f,0.120977f}, - {0.293549f,0.00542656f,0.124706f},{0.293548f,0.00542408f,0.120977f},{0.293066f,0.00442313f,0.120977f}, - {0.292722f,0.00399173f,0.124706f},{0.29272f,0.00398963f,0.120977f},{0.292314f,0.00361295f,0.120977f}, - {0.291851f,0.00329618f,0.124706f},{0.292314f,0.00361295f,0.124706f},{0.291851f,0.00329618f,0.120977f}, - {0.292718f,0.00906373f,0.120977f},{0.292311f,0.00944065f,0.120977f},{0.292717f,0.00906452f,0.124706f}, - {0.29231f,0.00944121f,0.124706f},{0.291854f,0.00975253f,0.120977f},{0.291852f,0.00975397f,0.124706f}, - {0.291352f,0.00999456f,0.120977f},{0.290816f,0.0101607f,0.120977f},{0.291349f,0.0099963f,0.124706f}, - {0.290813f,0.010161f,0.124706f},{0.290262f,0.010244f,0.120977f},{0.290261f,0.0102441f,0.124706f}, - {0.289707f,0.0102439f,0.120977f},{0.28916f,0.0101614f,0.120977f},{0.289705f,0.0102436f,0.124706f}, - {0.289157f,0.010161f,0.124706f},{0.288628f,0.0099979f,0.120977f},{0.288628f,0.0099979f,0.124706f}, - {0.288122f,0.00975468f,0.120977f},{0.288122f,0.00975468f,0.124706f},{0.307458f,0.00697787f,0.124706f}, - {0.307653f,0.00731578f,0.124706f},{0.307652f,0.00731414f,0.120977f},{0.307457f,0.0069765f,0.120977f}, - {0.307198f,0.00668793f,0.124706f},{0.307196f,0.00668696f,0.120977f},{0.306881f,0.0064583f,0.120977f}, - {0.306527f,0.00630061f,0.124706f},{0.306882f,0.00645891f,0.124706f},{0.306525f,0.00629975f,0.120977f}, - {0.306145f,0.00621902f,0.124706f},{0.306144f,0.00621892f,0.120977f},{0.305755f,0.00621887f,0.124706f}, - {0.305754f,0.00621902f,0.120977f},{0.305375f,0.00629969f,0.124706f},{0.305374f,0.0062999f,0.120977f}, - {0.305017f,0.0064585f,0.120977f},{0.305017f,0.0064585f,0.124706f},{0.307773f,0.00768493f,0.120977f}, - {0.307814f,0.00807242f,0.120977f},{0.307773f,0.00768652f,0.124706f},{0.307814f,0.00807346f,0.124706f}, - {0.307773f,0.00845934f,0.120977f},{0.307773f,0.0084618f,0.124706f},{0.307653f,0.0088308f,0.120977f}, - {0.307458f,0.00916863f,0.120977f},{0.307652f,0.00883225f,0.124706f},{0.307458f,0.00916944f,0.124706f}, - {0.307198f,0.00945768f,0.120977f},{0.307197f,0.00945846f,0.124706f},{0.306882f,0.00968775f,0.120977f}, - {0.306882f,0.00968775f,0.124706f},{0.304369f,0.0109506f,0.124706f},{0.304649f,0.0114367f,0.124706f}, - {0.304648f,0.0114328f,0.120977f},{0.30402f,0.0105126f,0.124706f},{0.304367f,0.0109474f,0.120977f}, - {0.304019f,0.0105118f,0.120977f},{0.303614f,0.0101356f,0.124706f},{0.303613f,0.0101351f,0.120977f}, - {0.303154f,0.00982233f,0.120977f},{0.303156f,0.00982376f,0.124706f},{0.302655f,0.00958174f,0.124706f}, - {0.301564f,0.00933222f,0.120977f},{0.30101f,0.00933241f,0.124706f},{0.301564f,0.00933231f,0.124706f}, - {0.302651f,0.00958f,0.120977f},{0.302118f,0.00941561f,0.124706f},{0.302116f,0.00941532f,0.120977f}, - {0.301008f,0.0093327f,0.120977f},{0.300462f,0.00941491f,0.124706f},{0.300459f,0.00941526f,0.120977f}, - {0.29993f,0.0095784f,0.120977f},{0.299424f,0.00982161f,0.124706f},{0.29993f,0.0095784f,0.124706f}, - {0.299424f,0.00982161f,0.120977f},{0.304853f,0.0119544f,0.120977f},{0.304976f,0.012495f,0.120977f}, - {0.304853f,0.0119556f,0.124706f},{0.304976f,0.0124959f,0.124706f},{0.305017f,0.0130469f,0.120977f}, - {0.305017f,0.0130492f,0.124706f},{0.304976f,0.0136022f,0.120977f},{0.304852f,0.0141497f,0.120977f}, - {0.304976f,0.0136064f,0.124706f},{0.304851f,0.0141522f,0.124706f},{0.304647f,0.0146713f,0.120977f}, - {0.304646f,0.014672f,0.124706f},{0.304369f,0.0151515f,0.120977f},{0.304024f,0.0155846f,0.120977f}, - {0.304368f,0.0151532f,0.124706f},{0.304023f,0.0155867f,0.124706f},{0.303617f,0.0159633f,0.120977f}, - {0.303617f,0.0159633f,0.124706f},{0.303153f,0.0162801f,0.120977f},{0.303153f,0.0162801f,0.124706f}, - {0.310416f,-0.00185425f,0.124706f},{0.310806f,-0.00185398f,0.124706f},{0.310805f,-0.00185425f,0.120977f}, - {0.310415f,-0.00185398f,0.120977f},{0.310035f,-0.0017734f,0.124706f},{0.310034f,-0.00177278f,0.120977f}, - {0.309678f,-0.0016145f,0.120977f},{0.309364f,-0.0013863f,0.124706f},{0.309679f,-0.00161492f,0.124706f}, - {0.309362f,-0.00138471f,0.120977f},{0.309103f,-0.00109643f,0.124706f},{0.309102f,-0.00109509f,0.120977f}, - {0.308908f,-0.000758756f,0.124706f},{0.308907f,-0.000757801f,0.120977f},{0.308787f,-0.000388892f,0.124706f}, - {0.308787f,-0.000387896f,0.120977f},{0.308746f,2.31914e-018f,0.120977f},{0.308746f,2.31914e-018f,0.124706f}, - {0.311186f,-0.0017734f,0.120977f},{0.311542f,-0.00161492f,0.120977f},{0.311188f,-0.00177278f,0.124706f}, - {0.311543f,-0.0016145f,0.124706f},{0.311857f,-0.0013863f,0.120977f},{0.311859f,-0.00138471f,0.124706f}, - {0.312119f,-0.00109643f,0.120977f},{0.312314f,-0.000758756f,0.120977f},{0.312119f,-0.00109509f,0.124706f}, - {0.312314f,-0.000757801f,0.124706f},{0.312434f,-0.000388892f,0.120977f},{0.312434f,-0.000387896f,0.124706f}, - {0.312475f,2.09082e-018f,0.120977f},{0.312475f,2.09082e-018f,0.124706f},{0.312313f,0.00280711f,0.124706f}, - {0.312873f,0.00280775f,0.124706f},{0.312869f,0.00280711f,0.120977f},{0.311758f,0.00289062f,0.124706f}, - {0.312308f,0.00280775f,0.120977f},{0.311757f,0.00289112f,0.120977f},{0.311229f,0.00305432f,0.124706f}, - {0.311228f,0.00305467f,0.120977f},{0.310728f,0.00329522f,0.120977f},{0.31073f,0.00329432f,0.124706f}, - {0.31027f,0.00360761f,0.124706f},{0.309508f,0.00442796f,0.120977f},{0.309231f,0.00490757f,0.124706f}, - {0.309508f,0.00442732f,0.124706f},{0.310266f,0.00361015f,0.120977f},{0.309858f,0.00398905f,0.124706f}, - {0.309856f,0.00399124f,0.120977f},{0.30923f,0.00490957f,0.120977f},{0.309029f,0.00542319f,0.124706f}, - {0.309028f,0.00542563f,0.120977f},{0.308905f,0.00596545f,0.120977f},{0.308862f,0.00652543f,0.124706f}, - {0.308905f,0.00596545f,0.124706f},{0.308862f,0.00652543f,0.120977f},{0.313423f,0.00289062f,0.120977f}, - {0.313953f,0.00305432f,0.120977f},{0.313425f,0.00289112f,0.124706f},{0.313954f,0.00305467f,0.124706f}, - {0.314452f,0.00329432f,0.120977f},{0.314454f,0.00329522f,0.124706f},{0.314912f,0.00360761f,0.120977f}, - {0.315324f,0.00398905f,0.120977f},{0.314916f,0.00361015f,0.124706f},{0.315326f,0.00399124f,0.124706f}, - {0.315673f,0.00442732f,0.120977f},{0.315674f,0.00442796f,0.124706f},{0.315951f,0.00490757f,0.120977f}, - {0.316153f,0.00542319f,0.120977f},{0.315951f,0.00490957f,0.124706f},{0.316154f,0.00542563f,0.124706f}, - {0.316277f,0.00596545f,0.120977f},{0.316277f,0.00596545f,0.124706f},{0.31632f,0.00652543f,0.120977f}, - {0.31632f,0.00652543f,0.124706f},{0.301289f,0.00279661f,0.0995366f},{0.301289f,0.00279661f,0.0976722f}, - {0.3008f,0.00275356f,0.0976722f},{0.300331f,0.00262748f,0.0976722f},{0.300801f,0.00275376f,0.0995366f}, - {0.300332f,0.00262801f,0.0995366f},{0.299893f,0.00242333f,0.0995366f},{0.299493f,0.00214411f,0.0995366f}, - {0.299891f,0.00242266f,0.0976722f},{0.299491f,0.00214219f,0.0976722f},{0.299146f,0.00179767f,0.0995366f}, - {0.299144f,0.00179504f,0.0976722f},{0.298866f,0.00139727f,0.0995366f},{0.298661f,0.000957717f,0.0995366f}, - {0.298865f,0.00139564f,0.0976722f},{0.298661f,0.000956449f,0.0976722f},{0.298535f,0.000488516f,0.0995366f}, - {0.298535f,0.000488516f,0.0976722f},{0.298492f,2.50765e-018f,0.0976722f},{0.298492f,2.50765e-018f,0.0995366f}, - {0.301777f,0.00275356f,0.0995366f},{0.302246f,0.00262748f,0.0995366f},{0.301776f,0.00275376f,0.0976722f}, - {0.302684f,0.00242333f,0.0976722f},{0.302245f,0.00262801f,0.0976722f},{0.302686f,0.00242266f,0.0995366f}, - {0.303084f,0.00214411f,0.0976722f},{0.303086f,0.00214219f,0.0995366f},{0.303431f,0.00179767f,0.0976722f}, - {0.303711f,0.00139727f,0.0976722f},{0.303433f,0.00179504f,0.0995366f},{0.303712f,0.00139564f,0.0995366f}, - {0.303916f,0.000957717f,0.0976722f},{0.303917f,0.000956449f,0.0995366f},{0.304042f,0.000488516f,0.0976722f}, - {0.304042f,0.000488516f,0.0995366f},{0.304085f,2.16517e-018f,0.0995366f},{0.304085f,2.16517e-018f,0.0976722f}, - {0.301289f,0.00745764f,0.0995366f},{0.300551f,0.00742114f,0.0995366f},{0.301289f,0.00745764f,0.100469f}, - {0.300551f,0.00742114f,0.100469f},{0.299827f,0.00731301f,0.0995366f},{0.29912f,0.00713527f,0.0995366f}, - {0.299827f,0.00731301f,0.100469f},{0.298435f,0.00688994f,0.0995366f},{0.29912f,0.00713527f,0.100469f}, - {0.298435f,0.00688994f,0.100469f},{0.297777f,0.00657906f,0.0995366f},{0.297151f,0.00620465f,0.0995366f}, - {0.297777f,0.00657906f,0.100469f},{0.296562f,0.00576874f,0.0995366f},{0.297151f,0.00620465f,0.100469f}, - {0.296562f,0.00576874f,0.100469f},{0.296015f,0.00527335f,0.0995366f},{0.29552f,0.00472635f,0.0995366f}, - {0.296015f,0.00527335f,0.100469f},{0.295084f,0.00413751f,0.0995366f},{0.29552f,0.00472635f,0.100469f}, - {0.295084f,0.00413751f,0.100469f},{0.294709f,0.00351173f,0.0995366f},{0.294399f,0.00285391f,0.0995366f}, - {0.294709f,0.00351173f,0.100469f},{0.294153f,0.00216893f,0.0995366f},{0.294399f,0.00285391f,0.100469f}, - {0.294153f,0.00216893f,0.100469f},{0.293976f,0.00146169f,0.0995366f},{0.293867f,0.000737081f,0.0995366f}, - {0.293976f,0.00146169f,0.100469f},{0.293831f,3.07846e-018f,0.0995366f},{0.293867f,0.000737081f,0.100469f}, - {0.293831f,3.07846e-018f,0.100469f},{0.302026f,0.00742114f,0.100469f},{0.30275f,0.00731301f,0.100469f}, - {0.302026f,0.00742114f,0.0995366f},{0.303457f,0.00713527f,0.100469f},{0.30275f,0.00731301f,0.0995366f}, - {0.303457f,0.00713527f,0.0995366f},{0.304142f,0.00688994f,0.100469f},{0.3048f,0.00657906f,0.100469f}, - {0.304142f,0.00688994f,0.0995366f},{0.305426f,0.00620465f,0.100469f},{0.3048f,0.00657906f,0.0995366f}, - {0.305426f,0.00620465f,0.0995366f},{0.306015f,0.00576874f,0.100469f},{0.306562f,0.00527335f,0.100469f}, - {0.306015f,0.00576874f,0.0995366f},{0.307057f,0.00472635f,0.100469f},{0.306562f,0.00527335f,0.0995366f}, - {0.307057f,0.00472635f,0.0995366f},{0.307493f,0.00413751f,0.100469f},{0.307868f,0.00351173f,0.100469f}, - {0.307493f,0.00413751f,0.0995366f},{0.308178f,0.00285391f,0.100469f},{0.307868f,0.00351173f,0.0995366f}, - {0.308178f,0.00285391f,0.0995366f},{0.308424f,0.00216893f,0.100469f},{0.308602f,0.00146169f,0.100469f}, - {0.308424f,0.00216893f,0.0995366f},{0.30871f,0.000737081f,0.100469f},{0.308602f,0.00146169f,0.0995366f}, - {0.30871f,0.000737081f,0.0995366f},{0.308746f,2.16517e-018f,0.100469f},{0.308746f,2.16517e-018f,0.0995366f}, - {0.296668f,0.0173925f,0.100469f},{0.296668f,0.0173922f,0.103265f},{0.296628f,0.0167797f,0.100469f}, - {0.296668f,0.0161668f,0.103265f},{0.296668f,0.0161672f,0.100469f},{0.296628f,0.0167797f,0.103265f}, - {0.296982f,0.014996f,0.100469f},{0.296982f,0.014996f,0.103265f},{0.29725f,0.0144523f,0.100469f}, - {0.296787f,0.0155699f,0.103265f},{0.296787f,0.0155702f,0.100469f},{0.29725f,0.0144519f,0.103265f}, - {0.297588f,0.0139455f,0.103265f},{0.297588f,0.0139458f,0.100469f},{0.297993f,0.0134838f,0.100469f}, - {0.297993f,0.0134838f,0.103265f},{0.298455f,0.0130791f,0.103265f},{0.298454f,0.0130793f,0.100469f}, - {0.298961f,0.0127415f,0.100469f},{0.298961f,0.0127414f,0.103265f},{0.299505f,0.0124735f,0.100469f}, - {0.299505f,0.0124735f,0.103265f},{0.300079f,0.0122783f,0.103265f},{0.300079f,0.0122784f,0.100469f}, - {0.301289f,0.0121187f,0.100469f},{0.300676f,0.0121592f,0.100469f},{0.300676f,0.012159f,0.103265f}, - {0.301289f,0.0121187f,0.103265f},{0.296787f,0.0179891f,0.103265f},{0.296787f,0.0179895f,0.100469f}, - {0.296982f,0.0185634f,0.103265f},{0.29725f,0.0191071f,0.103265f},{0.296982f,0.0185634f,0.100469f}, - {0.29725f,0.0191075f,0.100469f},{0.297588f,0.0196135f,0.103265f},{0.297588f,0.0196139f,0.100469f}, - {0.297993f,0.0200755f,0.103265f},{0.298454f,0.0204801f,0.103265f},{0.297993f,0.0200755f,0.100469f}, - {0.298455f,0.0204802f,0.100469f},{0.298961f,0.0208179f,0.103265f},{0.298961f,0.020818f,0.100469f}, - {0.299505f,0.0210859f,0.103265f},{0.300079f,0.0212809f,0.103265f},{0.299505f,0.0210859f,0.100469f}, - {0.300079f,0.0212811f,0.100469f},{0.300676f,0.0214002f,0.103265f},{0.300676f,0.0214003f,0.100469f}, - {0.301289f,0.0214407f,0.103265f},{0.301289f,0.0214407f,0.100469f},{0.318681f,0.00462066f,0.100469f}, - {0.318068f,0.00466102f,0.100469f},{0.318681f,0.00462066f,0.103265f},{0.317455f,0.00462052f,0.103265f}, - {0.318068f,0.00466102f,0.103265f},{0.317455f,0.00462052f,0.100469f},{0.316285f,0.00430621f,0.100469f}, - {0.31574f,0.00403818f,0.100469f},{0.316285f,0.00430621f,0.103265f},{0.316858f,0.00450127f,0.103265f}, - {0.316858f,0.00450127f,0.100469f},{0.31574f,0.00403818f,0.103265f},{0.315234f,0.00370041f,0.100469f}, - {0.315234f,0.00370041f,0.103265f},{0.314772f,0.00329584f,0.100469f},{0.314772f,0.00329584f,0.103265f}, - {0.314368f,0.00283386f,0.100469f},{0.314368f,0.00283386f,0.103265f},{0.31403f,0.00232743f,0.100469f}, - {0.313762f,0.00178369f,0.100469f},{0.31403f,0.00232743f,0.103265f},{0.313762f,0.00178369f,0.103265f}, - {0.313567f,0.00120944f,0.100469f},{0.313567f,0.00120944f,0.103265f},{0.313407f,1.10315e-019f,0.100469f}, - {0.313448f,0.000612502f,0.103265f},{0.313448f,0.000612502f,0.100469f},{0.313407f,1.10315e-019f,0.103265f}, - {0.319278f,0.00450141f,0.103265f},{0.319852f,0.00430621f,0.103265f},{0.319278f,0.00450141f,0.100469f}, - {0.320396f,0.00403832f,0.103265f},{0.319852f,0.00430621f,0.100469f},{0.320396f,0.00403832f,0.100469f}, - {0.320902f,0.00370055f,0.103265f},{0.321364f,0.00329584f,0.103265f},{0.320902f,0.00370055f,0.100469f}, - {0.321769f,0.0028342f,0.103265f},{0.321364f,0.00329584f,0.100469f},{0.321769f,0.0028342f,0.100469f}, - {0.322106f,0.00232777f,0.103265f},{0.322374f,0.00178369f,0.103265f},{0.322106f,0.00232777f,0.100469f}, - {0.322569f,0.00120978f,0.103265f},{0.322374f,0.00178369f,0.100469f},{0.322569f,0.00120978f,0.100469f}, - {0.322689f,0.000612842f,0.103265f},{0.322729f,6.81126e-019f,0.103265f},{0.322689f,0.000612842f,0.100469f}, - {0.322729f,6.81126e-019f,0.100469f},{0.305909f,-0.0173922f,0.103265f},{0.30595f,-0.0167797f,0.103265f}, - {0.305936f,-0.0171394f,0.100469f},{0.305877f,-0.0159621f,0.100469f},{0.305944f,-0.0165489f,0.100469f}, - {0.305909f,-0.0161668f,0.103265f},{0.305595f,-0.014996f,0.103265f},{0.305327f,-0.0144519f,0.103265f}, - {0.305525f,-0.0148373f,0.100469f},{0.305737f,-0.0153885f,0.100469f},{0.30579f,-0.0155699f,0.103265f}, - {0.304989f,-0.0139455f,0.103265f},{0.304902f,-0.0138368f,0.100469f},{0.305246f,-0.0143174f,0.100469f}, - {0.304584f,-0.0134838f,0.103265f},{0.304122f,-0.0130791f,0.103265f},{0.304049f,-0.0130241f,0.100469f}, - {0.304501f,-0.0134033f,0.100469f},{0.303616f,-0.0127414f,0.103265f},{0.303072f,-0.0124735f,0.103265f}, - {0.303552f,-0.0127048f,0.100469f},{0.302498f,-0.0122783f,0.103265f},{0.302457f,-0.0122704f,0.100469f}, - {0.303018f,-0.0124544f,0.100469f},{0.301878f,-0.0121554f,0.100469f},{0.301901f,-0.012159f,0.103265f}, - {0.301289f,-0.0121187f,0.103265f},{0.301289f,-0.0121187f,0.100469f},{0.305853f,-0.0177242f,0.100469f}, - {0.305697f,-0.018294f,0.100469f},{0.30579f,-0.0179891f,0.103265f},{0.305595f,-0.0185634f,0.103265f}, - {0.30547f,-0.0188393f,0.100469f},{0.305176f,-0.0193514f,0.100469f},{0.305327f,-0.0191071f,0.103265f}, - {0.30482f,-0.0198223f,0.100469f},{0.304989f,-0.0196135f,0.103265f},{0.304584f,-0.0200755f,0.103265f}, - {0.304407f,-0.0202443f,0.100469f},{0.303944f,-0.0206107f,0.100469f},{0.304123f,-0.0204801f,0.103265f}, - {0.303438f,-0.0209155f,0.100469f},{0.303616f,-0.0208179f,0.103265f},{0.303072f,-0.0210859f,0.103265f}, - {0.302898f,-0.0211542f,0.100469f},{0.302329f,-0.0213103f,0.100469f},{0.302498f,-0.0212809f,0.103265f}, - {0.30175f,-0.0214362f,0.100469f},{0.301901f,-0.0214002f,0.103265f},{0.301289f,-0.0214407f,0.103265f}, - {0.301289f,-0.0214407f,0.100469f},{0.2869f,0.0125242f,0.109791f},{0.28691f,0.01233f,0.100469f}, - {0.28691f,0.0127201f,0.100469f},{0.286992f,0.0131013f,0.100469f},{0.286936f,0.0128878f,0.109791f}, - {0.287041f,0.0132379f,0.109791f},{0.28738f,0.0137725f,0.100469f},{0.287214f,0.0135608f,0.109791f}, - {0.28715f,0.0134567f,0.100469f},{0.287669f,0.014033f,0.100469f},{0.287446f,0.0138436f,0.109791f}, - {0.287728f,0.0140755f,0.109791f},{0.288007f,0.0142276f,0.100469f},{0.288376f,0.0143478f,0.100469f}, - {0.288051f,0.0142478f,0.109791f},{0.288764f,0.0143886f,0.100469f},{0.288764f,0.0143886f,0.109791f}, - {0.288401f,0.0143539f,0.109791f},{0.286936f,0.01216f,0.109791f},{0.286991f,0.0119486f,0.100469f}, - {0.287043f,0.0118103f,0.109791f},{0.287216f,0.0114885f,0.109791f},{0.287149f,0.0115926f,0.100469f}, - {0.287448f,0.0112063f,0.109791f},{0.287378f,0.0112779f,0.100469f},{0.287668f,0.0110163f,0.100469f}, - {0.28773f,0.0109746f,0.109791f},{0.288052f,0.0108025f,0.109791f},{0.288006f,0.0108212f,0.100469f}, - {0.288401f,0.0106963f,0.109791f},{0.288375f,0.0107009f,0.100469f},{0.288764f,0.0106598f,0.100469f}, - {0.288764f,0.0106598f,0.109791f},{0.288764f,0.0125242f,0.110911f},{0.309971f,0.0105467f,0.109791f}, - {0.309981f,0.0103525f,0.100469f},{0.309981f,0.0107426f,0.100469f},{0.310062f,0.0111238f,0.100469f}, - {0.310007f,0.0109103f,0.109791f},{0.310112f,0.0112604f,0.109791f},{0.310451f,0.011795f,0.100469f}, - {0.310284f,0.0115833f,0.109791f},{0.310221f,0.0114792f,0.100469f},{0.31074f,0.0120555f,0.100469f}, - {0.310517f,0.0118661f,0.109791f},{0.310799f,0.012098f,0.109791f},{0.311077f,0.0122501f,0.100469f}, - {0.311447f,0.0123703f,0.100469f},{0.311122f,0.0122703f,0.109791f},{0.311835f,0.0124111f,0.100469f}, - {0.311835f,0.0124111f,0.109791f},{0.311472f,0.0123763f,0.109791f},{0.310007f,0.0101825f,0.109791f}, - {0.310062f,0.00997107f,0.100469f},{0.310114f,0.00983283f,0.109791f},{0.310287f,0.00951095f,0.109791f}, - {0.31022f,0.00961513f,0.100469f},{0.310519f,0.00922876f,0.109791f},{0.310449f,0.00930035f,0.100469f}, - {0.310739f,0.00903878f,0.100469f},{0.310801f,0.0089971f,0.109791f},{0.311123f,0.008825f,0.109791f}, - {0.311076f,0.00884365f,0.100469f},{0.311472f,0.00871884f,0.109791f},{0.311446f,0.00872342f,0.100469f}, - {0.311835f,0.00868228f,0.100469f},{0.311835f,0.00868228f,0.109791f},{0.311835f,0.0105467f,0.110911f}, - {0.311948f,-0.0125242f,0.109791f},{0.311958f,-0.0127183f,0.100469f},{0.311959f,-0.0123283f,0.100469f}, - {0.31204f,-0.0119471f,0.100469f},{0.311984f,-0.0121606f,0.109791f},{0.31209f,-0.0118105f,0.109791f}, - {0.312428f,-0.0112759f,0.100469f},{0.312262f,-0.0114876f,0.109791f},{0.312198f,-0.0115917f,0.100469f}, - {0.312718f,-0.0110154f,0.100469f},{0.312494f,-0.0112048f,0.109791f},{0.312777f,-0.0109729f,0.109791f}, - {0.313055f,-0.0108208f,0.100469f},{0.313425f,-0.0107006f,0.100469f},{0.313099f,-0.0108006f,0.109791f}, - {0.313813f,-0.0106598f,0.100469f},{0.313813f,-0.0106598f,0.109791f},{0.313449f,-0.0106945f,0.109791f}, - {0.311985f,-0.0128884f,0.109791f},{0.312039f,-0.0130998f,0.100469f},{0.312092f,-0.0132381f,0.109791f}, - {0.312264f,-0.0135599f,0.109791f},{0.312198f,-0.0134558f,0.100469f},{0.312496f,-0.0138421f,0.109791f}, - {0.312426f,-0.0137705f,0.100469f},{0.312716f,-0.0140321f,0.100469f},{0.312778f,-0.0140738f,0.109791f}, - {0.3131f,-0.0142459f,0.109791f},{0.313054f,-0.0142272f,0.100469f},{0.31345f,-0.0143521f,0.109791f}, - {0.313424f,-0.0143475f,0.100469f},{0.313813f,-0.0143886f,0.100469f},{0.313813f,-0.0143886f,0.109791f}, - {0.313813f,-0.0125242f,0.110911f},{0.288877f,-0.0105467f,0.109791f},{0.288888f,-0.0107408f,0.100469f}, - {0.288888f,-0.0103508f,0.100469f},{0.288969f,-0.0099696f,0.100469f},{0.288913f,-0.010183f,0.109791f}, - {0.289019f,-0.00983297f,0.109791f},{0.289357f,-0.00929843f,0.100469f},{0.289191f,-0.00951009f,0.109791f}, - {0.289127f,-0.00961418f,0.100469f},{0.289647f,-0.00903788f,0.100469f},{0.289423f,-0.0092273f,0.109791f}, - {0.289706f,-0.00899543f,0.109791f},{0.289984f,-0.00884326f,0.100469f},{0.290354f,-0.0087231f,0.100469f}, - {0.290028f,-0.00882313f,0.109791f},{0.290742f,-0.00868228f,0.100469f},{0.290742f,-0.00868228f,0.109791f}, - {0.290378f,-0.00871703f,0.109791f},{0.288914f,-0.0109109f,0.109791f},{0.288968f,-0.0111223f,0.100469f}, - {0.289021f,-0.0112606f,0.109791f},{0.289193f,-0.0115824f,0.109791f},{0.289127f,-0.0114782f,0.100469f}, - {0.289425f,-0.0118646f,0.109791f},{0.289356f,-0.011793f,0.100469f},{0.289645f,-0.0120546f,0.100469f}, - {0.289707f,-0.0120963f,0.109791f},{0.290029f,-0.0122684f,0.109791f},{0.289983f,-0.0122497f,0.100469f}, - {0.290379f,-0.0123745f,0.109791f},{0.290353f,-0.01237f,0.100469f},{0.290742f,-0.0124111f,0.100469f}, - {0.290742f,-0.0124111f,0.109791f},{0.290742f,-0.0105467f,0.110911f},{0.283896f,-0.00462052f,0.100469f}, - {0.283896f,-0.00462066f,0.103265f},{0.284509f,-0.00466102f,0.100469f},{0.285122f,-0.00462052f,0.103265f}, - {0.285121f,-0.00462066f,0.100469f},{0.284509f,-0.00466102f,0.103265f},{0.286293f,-0.00430621f,0.100469f}, - {0.286293f,-0.00430621f,0.103265f},{0.286836f,-0.00403832f,0.100469f},{0.285719f,-0.00450127f,0.103265f}, - {0.285718f,-0.00450141f,0.100469f},{0.286837f,-0.00403818f,0.103265f},{0.287343f,-0.00370041f,0.103265f}, - {0.287343f,-0.00370055f,0.100469f},{0.287805f,-0.00329584f,0.100469f},{0.287805f,-0.00329584f,0.103265f}, - {0.288209f,-0.00283386f,0.103265f},{0.288209f,-0.0028342f,0.100469f},{0.288547f,-0.00232777f,0.100469f}, - {0.288547f,-0.00232743f,0.103265f},{0.288815f,-0.00178369f,0.100469f},{0.288815f,-0.00178369f,0.103265f}, - {0.28901f,-0.00120944f,0.103265f},{0.28901f,-0.00120978f,0.100469f},{0.28917f,2.73598e-018f,0.100469f}, - {0.289129f,-0.000612842f,0.100469f},{0.28913f,-0.000612502f,0.103265f},{0.28917f,2.73598e-018f,0.103265f}, - {0.283299f,-0.00450141f,0.103265f},{0.283299f,-0.00450127f,0.100469f},{0.282725f,-0.00430621f,0.103265f}, - {0.282181f,-0.00403832f,0.103265f},{0.282725f,-0.00430621f,0.100469f},{0.282181f,-0.00403818f,0.100469f}, - {0.281675f,-0.00370055f,0.103265f},{0.281675f,-0.00370041f,0.100469f},{0.281213f,-0.00329584f,0.103265f}, - {0.280808f,-0.0028342f,0.103265f},{0.281213f,-0.00329584f,0.100469f},{0.280808f,-0.00283386f,0.100469f}, - {0.280471f,-0.00232777f,0.103265f},{0.280471f,-0.00232743f,0.100469f},{0.280203f,-0.00178369f,0.103265f}, - {0.280008f,-0.00120978f,0.103265f},{0.280203f,-0.00178369f,0.100469f},{0.280007f,-0.00120944f,0.100469f}, - {0.279888f,-0.000612842f,0.103265f},{0.279888f,-0.000612502f,0.100469f},{0.279848f,2.16517e-018f,0.103265f}, - {0.279848f,2.16517e-018f,0.100469f},{0.326779f,0.00272711f,0.120977f},{0.326887f,0.00137858f,0.119113f}, - {0.326777f,0.00274679f,0.119113f},{0.326344f,0.00542344f,0.120977f},{0.32634f,0.00544141f,0.119113f}, - {0.326016f,0.00676244f,0.119113f},{0.326888f,0.00136573f,0.120977f},{0.326924f,5.30462e-018f,0.119113f}, - {0.326924f,1.3464e-013f,0.120977f},{0.326597f,0.0040808f,0.120977f},{0.326594f,0.00410196f,0.119113f}, - {0.325479f,0.00848488f,0.120977f},{0.325943f,0.00696342f,0.120977f},{0.325623f,0.00806238f,0.119113f}, - {0.32349f,0.0128178f,0.120977f},{0.324242f,0.0114155f,0.120977f},{0.324042f,0.0118088f,0.119113f}, - {0.324906f,0.00996949f,0.120977f},{0.325163f,0.00933854f,0.119113f},{0.324635f,0.0105882f,0.119113f}, - {0.321881f,0.0152688f,0.119113f},{0.321037f,0.0163461f,0.119113f},{0.321731f,0.0154686f,0.120977f}, - {0.323385f,0.0129975f,0.119113f},{0.322664f,0.0141518f,0.119113f},{0.322652f,0.0141704f,0.120977f}, - {0.31917f,0.0183698f,0.119113f},{0.318513f,0.0189869f,0.120977f},{0.319652f,0.017875f,0.120977f}, - {0.320132f,0.0173811f,0.119113f},{0.320732f,0.0167072f,0.120977f},{0.315039f,0.0216356f,0.120977f}, - {0.316831f,0.0203871f,0.120977f},{0.316004f,0.0209918f,0.119113f},{0.318157f,0.0193037f,0.119113f}, - {0.312491f,0.0230585f,0.119113f},{0.311255f,0.0236188f,0.119113f},{0.311174f,0.0236531f,0.120977f}, - {0.313696f,0.0224332f,0.119113f},{0.31315f,0.0227263f,0.120977f},{0.307393f,0.0248983f,0.119113f}, - {0.307414f,0.024878f,0.120977f},{0.308704f,0.0245398f,0.119113f},{0.309119f,0.0244103f,0.120977f}, - {0.309992f,0.0241129f,0.119113f},{0.303937f,0.0254985f,0.120977f},{0.304714f,0.0254058f,0.119113f}, - {0.303352f,0.0255525f,0.119113f},{0.306062f,0.0251874f,0.119113f},{0.305688f,0.0252555f,0.120977f}, - {0.302173f,0.0256204f,0.120977f},{0.300598f,0.0256263f,0.119113f},{0.300405f,0.0256204f,0.120977f}, - {0.301978f,0.0256264f,0.119113f},{0.297862f,0.0254057f,0.119113f},{0.296515f,0.0251873f,0.119113f}, - {0.29689f,0.0252554f,0.120977f},{0.298641f,0.0254985f,0.120977f},{0.299224f,0.0255524f,0.119113f}, - {0.292585f,0.0241129f,0.119113f},{0.293458f,0.0244103f,0.120977f},{0.293873f,0.0245398f,0.119113f}, - {0.295161f,0.0248864f,0.120977f},{0.295184f,0.0248983f,0.119113f},{0.289427f,0.0227264f,0.120977f}, - {0.291404f,0.0236533f,0.120977f},{0.290086f,0.0230584f,0.119113f},{0.291322f,0.0236187f,0.119113f}, - {0.287538f,0.0216357f,0.120977f},{0.287709f,0.0217438f,0.119113f},{0.286573f,0.0209917f,0.119113f}, - {0.288881f,0.0224331f,0.119113f},{0.28442f,0.0193036f,0.119113f},{0.283407f,0.0183692f,0.119113f}, - {0.284064f,0.0189869f,0.120977f},{0.285747f,0.0203873f,0.120977f},{0.285476f,0.020178f,0.119113f}, - {0.282444f,0.0173806f,0.119113f},{0.28154f,0.016346f,0.119113f},{0.281845f,0.0167073f,0.120977f}, - {0.282931f,0.0178697f,0.120977f},{0.280846f,0.0154687f,0.120977f},{0.280696f,0.0152688f,0.119113f}, - {0.279913f,0.0141517f,0.119113f},{0.279926f,0.0141707f,0.120977f},{0.279192f,0.0129974f,0.119113f}, - {0.279087f,0.0128178f,0.120977f},{0.278535f,0.0118086f,0.119113f},{0.278335f,0.0114158f,0.120977f}, - {0.277671f,0.0099697f,0.120977f},{0.277942f,0.010588f,0.119113f},{0.277414f,0.00933828f,0.119113f}, - {0.277098f,0.00848516f,0.120977f},{0.276954f,0.00806211f,0.119113f},{0.276627f,0.00696571f,0.120977f}, - {0.276233f,0.00542344f,0.120977f},{0.276561f,0.00676218f,0.119113f},{0.275983f,0.00410176f,0.119113f}, - {0.276237f,0.00544117f,0.119113f},{0.2758f,0.00274665f,0.119113f},{0.27598f,0.00408095f,0.120977f}, - {0.275798f,0.00272732f,0.120977f},{0.27569f,0.0013785f,0.119113f},{0.275653f,2.16517e-018f,0.119113f}, - {0.275689f,0.00136552f,0.120977f},{0.275653f,-1.34633e-013f,0.120977f},{0.314868f,0.0217439f,0.119113f}, - {0.317101f,0.0201781f,0.119113f},{0.325992f,-3.74266e-017f,0.103079f},{0.32739f,-6.52846e-018f,0.104198f}, - {0.327333f,-0.00172399f,0.104198f},{0.316166f,0.0173288f,0.101587f},{0.315415f,0.0161291f,0.100469f}, - {0.314325f,0.0170222f,0.100469f},{0.316449f,0.0151609f,0.100469f},{0.314477f,0.0186467f,0.101587f}, - {0.31577f,0.0217163f,0.104198f},{0.31364f,0.0213938f,0.103079f},{0.314323f,0.0226142f,0.104198f}, - {0.313184f,0.0178384f,0.100469f},{0.312708f,0.0197792f,0.101587f},{0.312824f,0.0234144f,0.104198f}, - {0.310764f,0.0192333f,0.100469f},{0.311277f,0.0241148f,0.104198f},{0.309494f,0.0198086f,0.100469f}, - {0.309689f,0.0247131f,0.104198f},{0.308188f,0.0203001f,0.100469f},{0.306853f,0.0207061f,0.100469f}, - {0.308063f,0.0252074f,0.104198f},{0.305491f,0.0210249f,0.100469f},{0.306404f,0.0255955f,0.104198f}, - {0.30472f,0.0258753f,0.104198f},{0.304107f,0.0212548f,0.100469f},{0.303013f,0.0260447f,0.104198f}, - {0.302704f,0.021394f,0.100469f},{0.301289f,0.0261017f,0.104198f},{0.317749f,0.0158329f,0.101587f}, - {0.317418f,0.0141266f,0.100469f},{0.319198f,0.0141734f,0.101587f},{0.318311f,0.0130367f,0.100469f}, - {0.319127f,0.0118953f,0.100469f},{0.320489f,0.0123685f,0.101587f},{0.319865f,0.010707f,0.100469f}, - {0.3216f,0.0104425f,0.101587f},{0.320522f,0.00947547f,0.100469f},{0.322518f,0.00842229f,0.101587f}, - {0.321097f,0.00820499f,0.100469f},{0.326496f,0.00677384f,0.104198f},{0.326884f,0.00511591f,0.104198f}, - {0.325567f,0.0045642f,0.103079f},{0.323231f,0.00633756f,0.101587f},{0.321589f,0.0069f,0.100469f}, - {0.323734f,0.00421935f,0.101587f},{0.321995f,0.00556442f,0.100469f},{0.322313f,0.00420236f,0.100469f}, - {0.324031f,0.00209692f,0.101587f},{0.322543f,0.00281829f,0.100469f},{0.327333f,0.00172376f,0.104198f}, - {0.324128f,-3.56201e-017f,0.101587f},{0.322682f,0.00141614f,0.100469f},{0.322535f,-0.00288015f,0.100469f}, - {0.322681f,-0.00144343f,0.100469f},{0.327164f,-0.00343096f,0.104198f},{0.321524f,-0.00708591f,0.100469f}, - {0.321955f,-0.00570761f,0.100469f},{0.326002f,-0.0084f,0.104198f},{0.322293f,-0.00430368f,0.100469f}, - {0.326884f,-0.00511591f,0.104198f},{0.326496f,-0.00677408f,0.104198f},{0.320389f,-0.00973971f,0.100469f}, - {0.323903f,-0.0130346f,0.104198f},{0.31969f,-0.0110032f,0.100469f},{0.325403f,-0.00998868f,0.104198f}, - {0.324703f,-0.0115354f,0.104198f},{0.321002f,-0.00843197f,0.100469f},{0.322011f,-0.0158708f,0.104198f}, - {0.320924f,-0.0171976f,0.104198f},{0.318046f,-0.0133753f,0.100469f},{0.318908f,-0.012217f,0.100469f}, - {0.323005f,-0.0144813f,0.104198f},{0.317159f,-0.0207227f,0.104198f},{0.31502f,-0.0164663f,0.100469f}, - {0.318486f,-0.0196355f,0.104198f},{0.316097f,-0.0155046f,0.100469f},{0.317107f,-0.0144728f,0.100469f}, - {0.319745f,-0.0184567f,0.104198f},{0.311436f,-0.0188871f,0.100469f},{0.312684f,-0.0181615f,0.100469f}, - {0.312708f,-0.0197792f,0.101587f},{0.313881f,-0.0173533f,0.100469f},{0.31364f,-0.0213938f,0.103079f}, - {0.314323f,-0.0226143f,0.104198f},{0.312269f,-0.0221291f,0.103079f},{0.310832f,-0.0227855f,0.103079f}, - {0.311277f,-0.0241148f,0.104198f},{0.309337f,-0.0233556f,0.103079f},{0.312824f,-0.0234145f,0.104198f}, - {0.307791f,-0.0238322f,0.103079f},{0.308062f,-0.0252075f,0.104198f},{0.306203f,-0.0242096f,0.103079f}, - {0.309688f,-0.0247132f,0.104198f},{0.304583f,-0.0244827f,0.103079f},{0.306404f,-0.0255955f,0.104198f}, - {0.304719f,-0.0258754f,0.104198f},{0.303012f,-0.0260448f,0.104198f},{0.302942f,-0.0246481f,0.103079f}, - {0.301289f,-0.0261017f,0.104198f},{0.301289f,-0.0247034f,0.103079f},{0.31577f,-0.0217163f,0.104198f}, - {0.305832f,-0.0223824f,0.101587f},{0.306042f,-0.0209041f,0.100469f},{0.3073f,-0.0220336f,0.101587f}, - {0.304335f,-0.022635f,0.101587f},{0.304624f,-0.0211784f,0.100469f},{0.303191f,-0.0213558f,0.100469f}, - {0.302817f,-0.0227878f,0.101587f},{0.301289f,-0.022839f,0.101587f},{0.307439f,-0.0205399f,0.100469f}, - {0.308807f,-0.0200791f,0.100469f},{0.310112f,-0.0210659f,0.101587f},{0.308729f,-0.0215929f,0.101587f}, - {0.310142f,-0.0195273f,0.100469f},{0.31144f,-0.0204589f,0.101587f},{0.315552f,0.0201691f,0.103079f}, - {0.311995f,0.018576f,0.100469f},{0.31738f,0.0187435f,0.103079f},{0.317159f,0.0207226f,0.104198f}, - {0.319745f,0.0184567f,0.104198f},{0.318486f,0.0196354f,0.104198f},{0.319092f,0.017126f,0.103079f}, - {0.320659f,0.015331f,0.103079f},{0.320924f,0.0171974f,0.104198f},{0.323005f,0.0144813f,0.104198f}, - {0.322011f,0.0158706f,0.104198f},{0.322055f,0.0133791f,0.103079f},{0.323258f,0.011296f,0.103079f}, - {0.323903f,0.0130343f,0.104198f},{0.324703f,0.0115351f,0.104198f},{0.324251f,0.00911062f,0.103079f}, - {0.325403f,0.00998868f,0.104198f},{0.325022f,0.00685616f,0.103079f},{0.326002f,0.00839976f,0.104198f}, - {0.325888f,0.00226928f,0.103079f},{0.327164f,0.00343072f,0.104198f},{0.322729f,3.81816e-017f,0.104198f}, - {0.322729f,-7.35642e-018f,0.10513f},{0.322692f,-0.00125938f,0.10513f},{0.322582f,-0.00250813f,0.10513f}, - {0.322692f,-0.00125925f,0.104198f},{0.3224f,-0.00374334f,0.10513f},{0.322582f,-0.00250793f,0.104198f}, - {0.3224f,-0.00374312f,0.104198f},{0.322147f,-0.00496208f,0.10513f},{0.321825f,-0.00616144f,0.10513f}, - {0.322147f,-0.00496191f,0.104198f},{0.321434f,-0.00733859f,0.10513f},{0.321825f,-0.00616138f,0.104198f}, - {0.321434f,-0.0073385f,0.104198f},{0.320976f,-0.00849054f,0.10513f},{0.320453f,-0.0096143f,0.10513f}, - {0.320976f,-0.00849036f,0.104198f},{0.319865f,-0.010707f,0.10513f},{0.320453f,-0.00961408f,0.104198f}, - {0.319865f,-0.0107068f,0.104198f},{0.319213f,-0.0117656f,0.10513f},{0.318499f,-0.0127873f,0.10513f}, - {0.319213f,-0.0117655f,0.104198f},{0.317724f,-0.0137693f,0.10513f},{0.318499f,-0.0127873f,0.104198f}, - {0.317724f,-0.0137691f,0.104198f},{0.316888f,-0.0147088f,0.10513f},{0.315997f,-0.0156004f,0.10513f}, - {0.316889f,-0.0147082f,0.104198f},{0.315058f,-0.0164352f,0.10513f},{0.315997f,-0.0155998f,0.104198f}, - {0.315058f,-0.0164352f,0.104198f},{0.314076f,-0.0172102f,0.10513f},{0.313054f,-0.0179243f,0.10513f}, - {0.314076f,-0.0172102f,0.104198f},{0.311995f,-0.018576f,0.10513f},{0.313054f,-0.0179242f,0.104198f}, - {0.311996f,-0.018576f,0.104198f},{0.310903f,-0.0191643f,0.10513f},{0.309779f,-0.019688f,0.10513f}, - {0.310903f,-0.0191643f,0.104198f},{0.308627f,-0.0201457f,0.10513f},{0.309779f,-0.0196879f,0.104198f}, - {0.308627f,-0.0201457f,0.104198f},{0.30745f,-0.0205363f,0.10513f},{0.30625f,-0.0208587f,0.10513f}, - {0.30745f,-0.0205363f,0.104198f},{0.306251f,-0.0208586f,0.104198f},{0.305032f,-0.0211114f,0.104198f}, - {0.303797f,-0.0212935f,0.104198f},{0.305032f,-0.0211115f,0.10513f},{0.302548f,-0.0214037f,0.10513f}, - {0.303796f,-0.0212936f,0.10513f},{0.301289f,-0.0214407f,0.10513f},{0.302548f,-0.0214037f,0.104198f}, - {0.301289f,-0.0214407f,0.104198f},{0.322692f,0.00125938f,0.104198f},{0.322582f,0.00250813f,0.104198f}, - {0.322692f,0.00125925f,0.10513f},{0.322582f,0.00250793f,0.10513f},{0.3224f,0.00374334f,0.104198f}, - {0.322147f,0.00496208f,0.104198f},{0.3224f,0.00374312f,0.10513f},{0.321825f,0.00616144f,0.104198f}, - {0.322147f,0.00496191f,0.10513f},{0.321825f,0.00616138f,0.10513f},{0.321434f,0.00733859f,0.104198f}, - {0.320976f,0.00849054f,0.104198f},{0.321434f,0.0073385f,0.10513f},{0.320453f,0.0096143f,0.104198f}, - {0.320976f,0.00849036f,0.10513f},{0.320453f,0.00961408f,0.10513f},{0.319865f,0.010707f,0.104198f}, - {0.319213f,0.0117656f,0.104198f},{0.319865f,0.0107068f,0.10513f},{0.318499f,0.0127873f,0.104198f}, - {0.319213f,0.0117655f,0.10513f},{0.318499f,0.0127873f,0.10513f},{0.317724f,0.0137693f,0.104198f}, - {0.316888f,0.0147088f,0.104198f},{0.317724f,0.0137691f,0.10513f},{0.315997f,0.0156004f,0.104198f}, - {0.316889f,0.0147082f,0.10513f},{0.315997f,0.0155998f,0.10513f},{0.315058f,0.0164352f,0.104198f}, - {0.314076f,0.0172102f,0.104198f},{0.315058f,0.0164352f,0.10513f},{0.313054f,0.0179243f,0.104198f}, - {0.314076f,0.0172102f,0.10513f},{0.313054f,0.0179242f,0.10513f},{0.311995f,0.018576f,0.104198f}, - {0.310903f,0.0191643f,0.104198f},{0.311996f,0.018576f,0.10513f},{0.309779f,0.019688f,0.104198f}, - {0.310903f,0.0191643f,0.10513f},{0.309779f,0.0196879f,0.10513f},{0.308627f,0.0201457f,0.104198f}, - {0.30745f,0.0205363f,0.104198f},{0.308627f,0.0201457f,0.10513f},{0.30625f,0.0208587f,0.104198f}, - {0.30745f,0.0205363f,0.10513f},{0.305032f,0.0211114f,0.10513f},{0.306251f,0.0208586f,0.10513f}, - {0.305032f,0.0211115f,0.104198f},{0.303797f,0.0212935f,0.10513f},{0.303796f,0.0212936f,0.104198f}, - {0.302548f,0.0214037f,0.104198f},{0.302548f,0.0214037f,0.10513f},{0.301289f,0.0214407f,0.104198f}, - {0.301289f,0.0214407f,0.10513f},{0.32739f,1.99664e-017f,0.10513f},{0.32739f,2.41062e-017f,0.119113f}, - {0.327354f,-0.00138032f,0.119113f},{0.327245f,-0.00275048f,0.119113f},{0.327354f,-0.00138025f,0.10513f}, - {0.327065f,-0.0041079f,0.119113f},{0.327245f,-0.00275036f,0.10513f},{0.327065f,-0.00410773f,0.10513f}, - {0.326815f,-0.00544996f,0.119113f},{0.326496f,-0.00677408f,0.119113f},{0.326815f,-0.00544975f,0.10513f}, - {0.326109f,-0.00807765f,0.119113f},{0.326496f,-0.00677384f,0.10513f},{0.326109f,-0.0080774f,0.10513f}, - {0.325655f,-0.00935809f,0.119113f},{0.325135f,-0.0106128f,0.119113f},{0.325655f,-0.00935782f,0.10513f}, - {0.324551f,-0.0118391f,0.119113f},{0.325135f,-0.0106125f,0.10513f},{0.324551f,-0.0118389f,0.10513f}, - {0.323903f,-0.0130346f,0.119113f},{0.323192f,-0.0141964f,0.119113f},{0.323903f,-0.0130343f,0.10513f}, - {0.32242f,-0.0153222f,0.119113f},{0.323192f,-0.0141962f,0.10513f},{0.32242f,-0.015322f,0.10513f}, - {0.321587f,-0.0164092f,0.119113f},{0.320695f,-0.0174549f,0.119113f},{0.321587f,-0.0164091f,0.10513f}, - {0.319745f,-0.0184567f,0.119113f},{0.320695f,-0.0174549f,0.10513f},{0.319745f,-0.0184567f,0.10513f}, - {0.318743f,-0.0194069f,0.119113f},{0.317698f,-0.0202989f,0.119113f},{0.318743f,-0.0194069f,0.10513f}, - {0.316611f,-0.0211315f,0.119113f},{0.317698f,-0.0202988f,0.10513f},{0.316611f,-0.0211314f,0.10513f}, - {0.315485f,-0.0219036f,0.119113f},{0.314323f,-0.0226143f,0.119113f},{0.315485f,-0.0219036f,0.10513f}, - {0.313127f,-0.0232624f,0.119113f},{0.314323f,-0.0226142f,0.10513f},{0.313128f,-0.0232623f,0.10513f}, - {0.311901f,-0.0238468f,0.119113f},{0.310646f,-0.0243666f,0.119113f},{0.311901f,-0.0238467f,0.10513f}, - {0.309366f,-0.0248205f,0.119113f},{0.310647f,-0.0243664f,0.10513f},{0.309366f,-0.0248204f,0.10513f}, - {0.308062f,-0.0252075f,0.119113f},{0.306738f,-0.0255265f,0.119113f},{0.308063f,-0.0252074f,0.10513f}, - {0.305396f,-0.0257766f,0.119113f},{0.306739f,-0.0255265f,0.10513f},{0.305396f,-0.0257765f,0.10513f}, - {0.304039f,-0.0259565f,0.119113f},{0.302669f,-0.0260653f,0.119113f},{0.304039f,-0.0259565f,0.10513f}, - {0.301289f,-0.0261017f,0.119113f},{0.302669f,-0.0260652f,0.10513f},{0.301289f,-0.0261017f,0.10513f}, - {0.327354f,0.00138032f,0.10513f},{0.327245f,0.00275048f,0.10513f},{0.327354f,0.00138025f,0.119113f}, - {0.327245f,0.00275036f,0.119113f},{0.327065f,0.0041079f,0.10513f},{0.326815f,0.00544996f,0.10513f}, - {0.327065f,0.00410773f,0.119113f},{0.326496f,0.00677408f,0.10513f},{0.326815f,0.00544975f,0.119113f}, - {0.326496f,0.00677384f,0.119113f},{0.326109f,0.00807765f,0.10513f},{0.325655f,0.00935809f,0.10513f}, - {0.326109f,0.0080774f,0.119113f},{0.325135f,0.0106128f,0.10513f},{0.325655f,0.00935782f,0.119113f}, - {0.325135f,0.0106125f,0.119113f},{0.324551f,0.0118391f,0.10513f},{0.323903f,0.0130346f,0.10513f}, - {0.324551f,0.0118389f,0.119113f},{0.323192f,0.0141964f,0.10513f},{0.323903f,0.0130343f,0.119113f}, - {0.323192f,0.0141962f,0.119113f},{0.32242f,0.0153222f,0.10513f},{0.321587f,0.0164092f,0.10513f}, - {0.32242f,0.015322f,0.119113f},{0.320695f,0.0174549f,0.10513f},{0.321587f,0.0164091f,0.119113f}, - {0.320695f,0.0174549f,0.119113f},{0.319745f,0.0184567f,0.10513f},{0.318743f,0.0194069f,0.10513f}, - {0.319745f,0.0184567f,0.119113f},{0.317698f,0.0202989f,0.10513f},{0.318743f,0.0194069f,0.119113f}, - {0.317698f,0.0202988f,0.119113f},{0.316611f,0.0211315f,0.10513f},{0.315485f,0.0219036f,0.10513f}, - {0.316611f,0.0211314f,0.119113f},{0.314323f,0.0226143f,0.10513f},{0.315485f,0.0219036f,0.119113f}, - {0.314323f,0.0226142f,0.119113f},{0.313127f,0.0232624f,0.10513f},{0.311901f,0.0238468f,0.10513f}, - {0.313128f,0.0232623f,0.119113f},{0.310646f,0.0243666f,0.10513f},{0.311901f,0.0238467f,0.119113f}, - {0.310647f,0.0243664f,0.119113f},{0.309366f,0.0248205f,0.10513f},{0.308062f,0.0252075f,0.10513f}, - {0.309366f,0.0248204f,0.119113f},{0.306738f,0.0255265f,0.10513f},{0.308063f,0.0252074f,0.119113f}, - {0.306739f,0.0255265f,0.119113f},{0.305396f,0.0257766f,0.10513f},{0.304039f,0.0259565f,0.10513f}, - {0.305396f,0.0257765f,0.119113f},{0.302669f,0.0260653f,0.10513f},{0.304039f,0.0259565f,0.119113f}, - {0.302669f,0.0260652f,0.119113f},{0.301289f,0.0261017f,0.10513f},{0.301289f,0.0261017f,0.119113f}, - {0.313422f,-0.00289006f,0.124706f},{0.286299f,0.00596973f,0.124706f},{0.286258f,0.00652514f,0.124706f}, - {0.282163f,0.00374099f,0.124706f},{0.293181f,-0.0152805f,0.124706f},{0.292666f,0.0149353f,0.124706f}, - {0.29756f,0.0130513f,0.124706f},{0.293181f,0.0152802f,0.124706f},{0.289069f,0.0144863f,0.124706f}, - {0.288486f,0.0146944f,0.124706f},{0.288278f,0.0103166f,0.124706f},{0.306525f,0.00984656f,0.124706f}, - {0.306144f,0.00992732f,0.124706f},{0.299424f,0.0162797f,0.124706f},{0.297508f,0.0215779f,0.124706f}, - {0.294991f,0.019053f,0.124706f},{0.310727f,0.00975506f,0.124706f},{0.310468f,0.0146618f,0.124706f}, - {0.309911f,0.0149353f,0.124706f},{0.310266f,0.00944145f,0.124706f},{0.318534f,3.09663e-018f,0.124706f}, - {0.318576f,0.000618856f,0.124706f},{0.312283f,0.0143109f,0.124706f},{0.312313f,0.0102438f,0.124706f}, - {0.31287f,0.0102437f,0.124706f},{0.322087f,-0.00452954f,0.124706f},{0.322334f,-0.00608354f,0.124706f}, - {0.322699f,-0.00463457f,0.124706f},{0.318698f,-0.00122583f,0.124706f},{0.318576f,-0.000618365f,0.124706f}, - {0.314916f,-0.00361044f,0.124706f},{0.320415f,-0.00374099f,0.124706f},{0.316278f,-0.00596973f,0.124706f}, - {0.316319f,-0.00652514f,0.124706f},{0.3215f,-0.00433369f,0.124706f},{0.316278f,-0.00708106f,0.124706f}, - {0.316153f,-0.00762403f,0.124706f},{0.321297f,-0.00891935f,0.124706f},{0.311229f,-0.00305413f,0.124706f}, - {0.311762f,-0.00288693f,0.124706f},{0.31567f,-0.00862484f,0.124706f},{0.319869f,-0.0116055f,0.124706f}, - {0.32063f,-0.0102864f,0.124706f},{0.321866f,-0.00751463f,0.124706f},{0.320938f,-0.00407246f,0.124706f}, - {0.318086f,-0.0140624f,0.124706f},{0.314643f,-0.0149788f,0.124706f},{0.31708f,-0.0151839f,0.124706f}, - {0.314916f,-0.00944085f,0.124706f},{0.315151f,-0.015333f,0.124706f},{0.31561f,-0.0157495f,0.124706f}, - {0.316008f,-0.0162251f,0.124706f},{0.315948f,-0.00814252f,0.124706f},{0.316278f,0.00708097f,0.124706f}, - {0.321866f,0.00751594f,0.124706f},{0.316154f,-0.00542663f,0.124706f},{0.319943f,-0.00333905f,0.124706f}, - {0.319529f,-0.00287783f,0.124706f},{0.319179f,-0.0023656f,0.124706f},{0.315672f,-0.00442541f,0.124706f}, - {0.315951f,-0.00490799f,0.124706f},{0.311857f,0.0013863f,0.124706f},{0.312119f,0.00109643f,0.124706f}, - {0.318699f,0.00122657f,0.124706f},{0.311542f,0.00161492f,0.124706f},{0.309396f,0.0152805f,0.124706f}, - {0.308931f,0.0156909f,0.124706f},{0.320416f,0.00374048f,0.124706f},{0.31464f,0.0149805f,0.124706f}, - {0.31708f,0.0151839f,0.124706f},{0.315148f,0.0153371f,0.124706f},{0.315611f,0.0157476f,0.124706f}, - {0.316008f,0.0162251f,0.124706f},{0.313953f,0.00999629f,0.124706f},{0.314091f,0.0146931f,0.124706f}, - {0.313507f,0.0144856f,0.124706f},{0.312901f,0.0143575f,0.124706f},{0.313421f,0.0101606f,0.124706f}, - {0.315324f,0.00906122f,0.124706f},{0.319017f,0.0128683f,0.124706f},{0.314916f,0.00944057f,0.124706f}, - {0.314455f,0.00975455f,0.124706f},{0.320629f,0.0102881f,0.124706f},{0.319868f,0.0116071f,0.124706f}, - {0.315948f,0.00814199f,0.124706f},{0.318085f,0.0140632f,0.124706f},{0.320938f,0.00407552f,0.124706f}, - {0.321499f,0.00433883f,0.124706f},{0.322334f,0.00608354f,0.124706f},{0.322089f,0.0045282f,0.124706f}, - {0.322699f,0.00463457f,0.124706f},{0.31567f,0.00862459f,0.124706f},{0.321297f,0.008921f,0.124706f}, - {0.316153f,0.00762395f,0.124706f},{0.294936f,0.0196708f,0.124706f},{0.296034f,0.0212675f,0.124706f}, - {0.294812f,0.0202771f,0.124706f},{0.308525f,0.0161593f,0.124706f},{0.308185f,0.0166773f,0.124706f}, - {0.319944f,0.00333893f,0.124706f},{0.307613f,0.0184349f,0.124706f},{0.307724f,0.0178252f,0.124706f}, - {0.31918f,0.00236609f,0.124706f},{0.319529f,0.00287783f,0.124706f},{0.290913f,0.0143468f,0.124706f}, - {0.290294f,0.0143112f,0.124706f},{0.292899f,-0.0016145f,0.124706f},{0.297601f,0.0136072f,0.124706f}, - {0.297726f,0.0141506f,0.124706f},{0.293645f,0.0156903f,0.124706f},{0.294965f,0.0184341f,0.124706f}, - {0.294853f,0.0178247f,0.124706f},{0.298964f,0.015966f,0.124706f},{0.300459f,0.0166853f,0.124706f}, - {0.299009f,0.0217877f,0.124706f},{0.299926f,0.0165216f,0.124706f},{0.294661f,0.0172353f,0.124706f}, - {0.298555f,0.0155872f,0.124706f},{0.305068f,0.0215784f,0.124706f},{0.302651f,0.0165218f,0.124706f}, - {0.301567f,0.0167668f,0.124706f},{0.302049f,0.0218936f,0.124706f},{0.30101f,0.0167671f,0.124706f}, - {0.307584f,0.0190544f,0.124706f},{0.306543f,0.0212675f,0.124706f},{0.294597f,0.0208597f,0.124706f}, - {0.307636f,0.0196718f,0.124706f},{0.307767f,0.0202777f,0.124706f},{0.30798f,0.0208597f,0.124706f}, - {0.298208f,0.0151517f,0.124706f},{0.294392f,0.0166765f,0.124706f},{0.297929f,0.0146693f,0.124706f}, - {0.303567f,0.0217881f,0.124706f},{0.302118f,0.0166848f,0.124706f},{0.286626f,0.00490799f,0.124706f}, - {0.283398f,0.0023656f,0.124706f},{0.286905f,0.00442541f,0.124706f},{0.305373f,0.00984589f,0.124706f}, - {0.305754f,0.00992719f,0.124706f},{0.292109f,0.0146616f,0.124706f},{0.288278f,-0.00115727f,0.124706f}, - {0.294964f,-0.0184349f,0.124706f},{0.294853f,-0.0178252f,0.124706f},{0.291521f,0.0144643f,0.124706f}, - {0.280711f,0.00751463f,0.124706f},{0.280243f,0.00608354f,0.124706f},{0.281639f,0.00407246f,0.124706f}, - {0.287661f,0.00944085f,0.124706f},{0.283559f,0.0128671f,0.124706f},{0.287254f,0.00906082f,0.124706f}, - {0.295379f,0.00945782f,0.124706f},{0.28049f,0.00452954f,0.124706f},{0.279878f,0.00463457f,0.124706f}, - {0.287252f,0.00398966f,0.124706f},{0.283879f,0.00122583f,0.124706f},{0.287661f,0.00361044f,0.124706f}, - {0.283048f,0.00287783f,0.124706f},{0.286423f,0.00542663f,0.124706f},{0.282634f,0.00333905f,0.124706f}, - {0.281077f,0.00433369f,0.124706f},{0.286299f,0.00708106f,0.124706f},{0.286424f,0.00762403f,0.124706f}, - {0.28128f,0.00891935f,0.124706f},{0.281947f,0.0102864f,0.124706f},{0.286907f,0.00862484f,0.124706f}, - {0.282708f,0.0116055f,0.124706f},{0.286629f,0.00814252f,0.124706f},{0.287935f,0.0149788f,0.124706f}, - {0.285497f,0.0151839f,0.124706f},{0.284491f,0.0140624f,0.124706f},{0.287426f,0.015333f,0.124706f}, - {0.291522f,-0.0144645f,0.124706f},{0.29211f,-0.0146618f,0.124706f},{0.291348f,-0.00999677f,0.124706f}, - {0.286967f,0.0157495f,0.124706f},{0.286569f,0.0162251f,0.124706f},{0.294924f,0.00883069f,0.124706f}, - {0.294804f,0.00845974f,0.124706f},{0.283676f,-0.00181243f,0.124706f},{0.283397f,-0.00236609f,0.124706f}, - {0.289676f,0.014358f,0.124706f},{0.292666f,-0.0149353f,0.124706f},{0.29185f,-0.00975506f,0.124706f}, - {0.298136f,-0.00916839f,0.124706f},{0.298331f,-0.00883048f,0.124706f},{0.290815f,-0.0101609f,0.124706f}, - {0.281639f,-0.00407552f,0.124706f},{0.280711f,-0.00751594f,0.124706f},{0.284492f,-0.0140632f,0.124706f}, - {0.285497f,-0.0151839f,0.124706f},{0.288278f,-0.0126311f,0.124706f},{0.28907f,-0.0144856f,0.124706f}, - {0.289676f,-0.0143575f,0.124706f},{0.284002f,0.000618365f,0.124706f},{0.283878f,-0.00122657f,0.124706f}, - {0.284043f,7.02122e-018f,0.124706f},{0.294052f,-0.0161593f,0.124706f},{0.294392f,-0.0166773f,0.124706f}, - {0.28743f,-0.0153371f,0.124706f},{0.287937f,-0.0149805f,0.124706f},{0.289707f,-0.0102437f,0.124706f}, - {0.289156f,-0.0101606f,0.124706f},{0.287254f,-0.00906122f,0.124706f},{0.28356f,-0.0128683f,0.124706f}, - {0.287662f,-0.00944057f,0.124706f},{0.286907f,-0.00862459f,0.124706f},{0.28271f,-0.0116071f,0.124706f}, - {0.281948f,-0.0102881f,0.124706f},{0.286629f,-0.00814199f,0.124706f},{0.286299f,-0.00708097f,0.124706f}, - {0.288122f,-0.00975455f,0.124706f},{0.288624f,-0.00999629f,0.124706f},{0.280243f,-0.00608354f,0.124706f}, - {0.286966f,-0.0157476f,0.124706f},{0.281079f,-0.00433883f,0.124706f},{0.280488f,-0.0045282f,0.124706f}, - {0.286569f,-0.0162251f,0.124706f},{0.279878f,-0.00463457f,0.124706f},{0.290264f,-0.0102438f,0.124706f}, - {0.310034f,0.00177278f,0.124706f},{0.309678f,0.0016145f,0.124706f},{0.296053f,-0.00984657f,0.124706f}, - {0.296433f,-0.00992738f,0.124706f},{0.307652f,-0.00731413f,0.124706f},{0.307457f,-0.00697672f,0.124706f}, - {0.294994f,-0.0190544f,0.124706f},{0.297509f,-0.0215784f,0.124706f},{0.311226f,-0.0126311f,0.124706f}, - {0.312283f,-0.0143112f,0.124706f},{0.312901f,-0.014358f,0.124706f},{0.304852f,-0.0141506f,0.124706f}, - {0.308932f,-0.0156903f,0.124706f},{0.304976f,-0.0136072f,0.124706f},{0.311056f,-0.0144643f,0.124706f}, - {0.310468f,-0.0146616f,0.124706f},{0.307724f,-0.0178247f,0.124706f},{0.303613f,-0.015966f,0.124706f}, - {0.307612f,-0.0184341f,0.124706f},{0.309397f,-0.0152802f,0.124706f},{0.309911f,-0.0149353f,0.124706f}, - {0.305018f,-0.0130513f,0.124706f},{0.305069f,-0.0215779f,0.124706f},{0.307586f,-0.019053f,0.124706f}, - {0.303153f,-0.0162797f,0.124706f},{0.312434f,0.000388892f,0.124706f},{0.312314f,0.000758756f,0.124706f}, - {0.28128f,-0.008921f,0.124706f},{0.286424f,-0.00762395f,0.124706f},{0.290295f,-0.0143109f,0.124706f}, - {0.309025f,0.00762671f,0.124706f},{0.290263f,-0.000758756f,0.124706f},{0.290143f,-0.000388892f,0.124706f}, - {0.293646f,-0.0156909f,0.124706f},{0.29072f,-0.0013863f,0.124706f},{0.309362f,0.00138471f,0.124706f}, - {0.300459f,-0.0166848f,0.124706f},{0.299926f,-0.0165218f,0.124706f},{0.29901f,-0.0217881f,0.124706f}, - {0.30101f,-0.0167668f,0.124706f},{0.300528f,-0.0218936f,0.124706f},{0.301567f,-0.0167671f,0.124706f}, - {0.302118f,-0.0166853f,0.124706f},{0.303568f,-0.0217877f,0.124706f},{0.302651f,-0.0165216f,0.124706f}, - {0.296034f,-0.0212675f,0.124706f},{0.294941f,-0.0196718f,0.124706f},{0.29481f,-0.0202777f,0.124706f}, - {0.294597f,-0.0208597f,0.124706f},{0.304648f,-0.0146693f,0.124706f},{0.304369f,-0.0151517f,0.124706f}, - {0.308185f,-0.0166765f,0.124706f},{0.304022f,-0.0155872f,0.124706f},{0.307916f,-0.0172353f,0.124706f}, - {0.306543f,-0.0212675f,0.124706f},{0.307641f,-0.0196708f,0.124706f},{0.30798f,-0.0208597f,0.124706f}, - {0.307765f,-0.0202771f,0.124706f},{0.318901f,0.00181243f,0.124706f},{0.311229f,0.00999677f,0.124706f}, - {0.311664f,0.0143468f,0.124706f},{0.311055f,0.0144645f,0.124706f},{0.311762f,0.0101609f,0.124706f}, - {0.310415f,0.00185398f,0.124706f},{0.310805f,0.00185425f,0.124706f},{0.311186f,0.0017734f,0.124706f}, - {0.315325f,-0.00398966f,0.124706f},{0.312313f,-0.00281666f,0.124706f},{0.319018f,-0.0128671f,0.124706f}, - {0.315323f,-0.00906082f,0.124706f},{0.309515f,0.00862453f,0.124706f},{0.297204f,0.00630002f,0.124706f}, - {0.296823f,0.00621904f,0.124706f},{0.282634f,-0.00333893f,0.124706f},{0.282161f,-0.00374048f,0.124706f}, - {0.304441f,0.00916836f,0.124706f},{0.304246f,0.00883081f,0.124706f},{0.304702f,0.0066875f,0.124706f}, - {0.308787f,0.000387896f,0.124706f},{0.308907f,0.000757801f,0.124706f},{0.313954f,-0.00305438f,0.124706f}, - {0.314456f,-0.00329623f,0.124706f},{0.312871f,-0.00281186f,0.124706f},{0.313508f,-0.0144863f,0.124706f}, - {0.314092f,-0.0146944f,0.124706f},{0.307198f,-0.00945782f,0.124706f},{0.307653f,-0.00883069f,0.124706f}, - {0.307773f,-0.00845974f,0.124706f},{0.297205f,-0.00984564f,0.124706f},{0.296823f,-0.00992724f,0.124706f}, - {0.293215f,-0.00138471f,0.124706f},{0.296985f,-0.00178272f,0.124706f},{0.304126f,-0.00369829f,0.124706f}, - {0.305373f,-0.00630002f,0.124706f},{0.305754f,-0.00621904f,0.124706f},{0.292544f,-0.00177278f,0.124706f}, - {0.284001f,-0.000618856f,0.124706f},{0.308904f,0.00708155f,0.124706f},{0.309858f,0.00906268f,0.124706f}, - {0.294051f,0.0161585f,0.124706f},{0.300526f,0.0218934f,0.124706f},{0.307917f,0.0172358f,0.124706f}, - {0.304701f,0.00945796f,0.124706f},{0.305017f,0.00968738f,0.124706f},{0.304085f,0.00807261f,0.124706f}, - {0.304126f,0.00845965f,0.124706f},{0.304126f,0.00768455f,0.124706f},{0.297933f,0.0114364f,0.124706f}, - {0.30924f,0.00813915f,0.124706f},{0.297591f,-0.00283697f,0.124706f},{0.304247f,0.00731409f,0.124706f}, - {0.304442f,0.00697679f,0.124706f},{0.296052f,0.00629974f,0.124706f},{0.29512f,0.00697672f,0.124706f}, - {0.294925f,0.00731413f,0.124706f},{0.298552f,0.0105136f,0.124706f},{0.298963f,0.0101357f,0.124706f}, - {0.297725f,0.0119527f,0.124706f},{0.288121f,0.00329623f,0.124706f},{0.283676f,0.00181168f,0.124706f}, - {0.295119f,0.00916838f,0.124706f},{0.294804f,0.00768456f,0.124706f},{0.294763f,0.00807245f,0.124706f}, - {0.295696f,0.00645825f,0.124706f},{0.295381f,0.00668694f,0.124706f},{0.296433f,0.00621891f,0.124706f}, - {0.298216f,0.0109558f,0.124706f},{0.290264f,0.00281666f,0.124706f},{0.291772f,-0.00185425f,0.124706f}, - {0.297601f,0.0124958f,0.124706f},{0.292311f,-0.00944145f,0.124706f},{0.290913f,-0.0143468f,0.124706f}, - {0.288486f,-0.0146931f,0.124706f},{0.283048f,-0.00287783f,0.124706f},{0.290459f,-0.00109643f,0.124706f}, - {0.291035f,-0.00161492f,0.124706f},{0.292162f,-0.00185398f,0.124706f},{0.291391f,-0.0017734f,0.124706f}, - {0.289706f,0.00281186f,0.124706f},{0.289155f,0.00289006f,0.124706f},{0.290815f,0.00288693f,0.124706f}, - {0.291348f,0.00305413f,0.124706f},{0.296667f,-0.0006084f,0.124706f},{0.29367f,-0.000757801f,0.124706f}, - {0.296789f,-0.00120559f,0.124706f},{0.29379f,-0.000387896f,0.124706f},{0.293673f,-0.00708155f,0.124706f}, - {0.292719f,-0.00906268f,0.124706f},{0.293062f,-0.00862453f,0.124706f},{0.293552f,-0.00762671f,0.124706f}, - {0.297252f,-0.00233026f,0.124706f},{0.288623f,0.00305438f,0.124706f},{0.306881f,-0.00645825f,0.124706f}, - {0.308526f,-0.0161585f,0.124706f},{0.302051f,-0.0218934f,0.124706f},{0.29466f,-0.0172358f,0.124706f}, - {0.297876f,-0.00945833f,0.124706f},{0.29756f,-0.00968734f,0.124706f},{0.298492f,-0.0080728f,0.124706f}, - {0.298451f,-0.00845974f,0.124706f},{0.298451f,-0.00768446f,0.124706f},{0.302495f,-0.00450236f,0.124706f}, - {0.293337f,-0.00813915f,0.124706f},{0.304987f,-0.00283787f,0.124706f},{0.304585f,-0.00329614f,0.124706f}, - {0.306144f,-0.00621891f,0.124706f},{0.306525f,-0.00629974f,0.124706f},{0.309102f,0.00109509f,0.124706f}, - {0.305595f,-0.00178435f,0.124706f},{0.304852f,-0.0119527f,0.124706f},{0.298451f,-0.00369728f,0.124706f}, - {0.297993f,-0.00329545f,0.124706f},{0.303072f,-0.00430656f,0.124706f},{0.301897f,-0.00462115f,0.124706f}, - {0.301289f,-0.00466102f,0.124706f},{0.297875f,-0.0066878f,0.124706f},{0.298958f,-0.00403597f,0.124706f}, - {0.29833f,-0.00731401f,0.124706f},{0.300082f,-0.00450189f,0.124706f},{0.298136f,-0.00697682f,0.124706f}, - {0.318901f,-0.00181168f,0.124706f},{0.311664f,-0.0143468f,0.124706f},{0.307458f,-0.00916838f,0.124706f}, - {0.307773f,-0.00768456f,0.124706f},{0.307814f,-0.00807245f,0.124706f},{0.305784f,-0.00120563f,0.124706f}, - {0.307196f,-0.00668694f,0.124706f},{0.304025f,-0.0105136f,0.124706f},{0.304644f,-0.0114364f,0.124706f}, - {0.303614f,-0.0101357f,0.124706f},{0.304361f,-0.0109558f,0.124706f},{0.305906f,-0.00060826f,0.124706f}, - {0.305325f,-0.002331f,0.124706f},{0.304976f,-0.0124958f,0.124706f},{0.303619f,-0.00403701f,0.124706f}, - {0.30068f,-0.00462104f,0.124706f},{0.299504f,-0.00430572f,0.124706f},{0.293475f,-0.00109509f,0.124706f}, - {0.322912f,-0.00625082f,0.124658f},{0.322432f,-0.00772125f,0.124658f},{0.323012f,-0.00793332f,0.124501f}, - {0.32058f,-0.0161504f,0.122798f},{0.321651f,-0.0147775f,0.122798f},{0.32134f,-0.0145522f,0.123358f}, - {0.322302f,-0.0131254f,0.123358f},{0.322627f,-0.0133286f,0.122798f},{0.319915f,-0.0155937f,0.123843f}, - {0.319486f,-0.0152344f,0.124229f},{0.318799f,-0.0168374f,0.123843f},{0.31796f,-0.0160299f,0.124501f}, - {0.317145f,-0.0174787f,0.1243f},{0.318396f,-0.0164494f,0.124229f},{0.316402f,-0.0166602f,0.124659f}, - {0.316784f,-0.0170806f,0.124523f},{0.317514f,-0.0156014f,0.124658f},{0.323163f,-0.0116335f,0.123358f}, - {0.323502f,-0.0118136f,0.122798f},{0.323918f,-0.0100875f,0.123358f},{0.322857f,-0.013472f,0.122194f}, - {0.32299f,-0.0135551f,0.12158f},{0.323741f,-0.0119407f,0.122194f},{0.322652f,-0.0141705f,0.120977f}, - {0.323489f,-0.0128179f,0.120977f},{0.321997f,-0.0150287f,0.12158f},{0.321731f,-0.0154687f,0.120977f}, - {0.320908f,-0.0164249f,0.12158f},{0.323879f,-0.0120144f,0.12158f},{0.324242f,-0.0114156f,0.120977f}, - {0.319658f,-0.0178815f,0.120977f},{0.320732f,-0.0167073f,0.120977f},{0.319733f,-0.0177348f,0.12158f}, - {0.318513f,-0.0189869f,0.120977f},{0.318482f,-0.0189523f,0.121565f},{0.324659f,-0.0104178f,0.12158f}, - {0.324906f,-0.00996957f,0.120977f},{0.325323f,-0.00877706f,0.12158f},{0.325479f,-0.00848485f,0.120977f}, - {0.32596f,-0.0069676f,0.120977f},{0.325869f,-0.00710556f,0.12158f},{0.326298f,-0.00541355f,0.121565f}, - {0.326165f,-0.00538462f,0.122132f},{0.324268f,-0.0102436f,0.122798f},{0.319424f,-0.0174384f,0.122798f}, - {0.320286f,-0.0159041f,0.123358f},{0.326344f,-0.00542344f,0.120977f},{0.324515f,-0.0103538f,0.122194f}, - {0.324625f,-0.006746f,0.123843f},{0.324838f,-0.00509752f,0.123996f},{0.324088f,-0.00659057f,0.124229f}, - {0.325276f,-0.00519238f,0.123614f},{0.32509f,-0.00688027f,0.123358f},{0.322242f,-0.0111437f,0.124229f}, - {0.322965f,-0.00966271f,0.124229f},{0.322412f,-0.00941631f,0.124501f},{0.323274f,-0.00475885f,0.124659f}, - {0.325718f,-0.00706195f,0.122194f},{0.325947f,-0.00533751f,0.12267f},{0.325458f,-0.0069868f,0.122798f}, - {0.325175f,-0.00872319f,0.122194f},{0.32187f,-0.0149364f,0.122194f},{0.320788f,-0.0163241f,0.122194f}, - {0.319619f,-0.0176259f,0.122194f},{0.31839f,-0.0188517f,0.12213f},{0.325649f,-0.00527292f,0.123168f}, - {0.324921f,-0.00863036f,0.122798f},{0.318241f,-0.0186868f,0.122667f},{0.323506f,-0.0064225f,0.124501f}, - {0.324351f,-0.00499215f,0.124301f},{0.324561f,-0.00849877f,0.123358f},{0.320949f,-0.0142682f,0.123843f}, - {0.319148f,-0.0171725f,0.123358f},{0.318036f,-0.0184612f,0.123166f},{0.323476f,-0.0098906f,0.123843f}, - {0.324107f,-0.00833292f,0.123843f},{0.322736f,-0.0114065f,0.123843f},{0.321892f,-0.0128692f,0.123843f}, - {0.317779f,-0.018178f,0.123614f},{0.323581f,-0.00814092f,0.124229f},{0.321417f,-0.0125727f,0.124229f}, - {0.320496f,-0.0139394f,0.124229f},{0.317479f,-0.0178475f,0.123995f},{0.323826f,-0.00487843f,0.124524f}, - {0.321708f,-0.0108595f,0.124501f},{0.320904f,-0.0122521f,0.124501f},{0.320006f,-0.013584f,0.124501f}, - {0.318548f,-0.0144491f,0.124658f},{0.319022f,-0.014846f,0.124501f},{0.321847f,-0.00916459f,0.124658f}, - {0.321162f,-0.0105692f,0.124658f},{0.32038f,-0.0119246f,0.124658f},{0.319506f,-0.0132209f,0.124658f}, - {0.302174f,-0.0254145f,0.122194f},{0.303907f,-0.0250226f,0.122798f},{0.302164f,-0.0251441f,0.122798f}, - {0.305705f,-0.0252029f,0.12158f},{0.303952f,-0.0254479f,0.12158f},{0.303937f,-0.0254985f,0.120977f}, - {0.303867f,-0.0246411f,0.123358f},{0.302173f,-0.0256204f,0.120977f},{0.307388f,-0.0246879f,0.122194f}, - {0.307425f,-0.0248403f,0.12158f},{0.309063f,-0.0242356f,0.122132f},{0.307414f,-0.024878f,0.120977f}, - {0.309105f,-0.0243658f,0.121565f},{0.306687f,-0.0218522f,0.124658f},{0.305173f,-0.0221712f,0.124658f}, - {0.30528f,-0.0227801f,0.124501f},{0.309119f,-0.0244103f,0.120977f},{0.305688f,-0.0252555f,0.120977f}, - {0.308786f,-0.0233704f,0.123614f},{0.307115f,-0.0235834f,0.123843f},{0.307231f,-0.0240528f,0.123358f}, - {0.303759f,-0.0236035f,0.124229f},{0.303695f,-0.0230016f,0.124501f},{0.302115f,-0.0237181f,0.124229f}, - {0.306981f,-0.02304f,0.124229f},{0.308649f,-0.0229434f,0.123996f},{0.302179f,-0.0255715f,0.12158f}, - {0.303935f,-0.0252917f,0.122194f},{0.297014f,-0.0244044f,0.123358f},{0.295254f,-0.0244252f,0.122798f}, - {0.296948f,-0.0247822f,0.122798f},{0.30816f,-0.0214191f,0.124659f},{0.300428f,-0.0247609f,0.123358f}, - {0.298672f,-0.0250231f,0.122798f},{0.300415f,-0.0251442f,0.122798f},{0.302151f,-0.0247607f,0.123358f}, - {0.295462f,-0.0235834f,0.123843f},{0.297097f,-0.0239281f,0.123843f},{0.297194f,-0.0233768f,0.124229f}, - {0.295742f,-0.0224524f,0.124501f},{0.29408f,-0.0224714f,0.1243f},{0.295597f,-0.02304f,0.124229f}, - {0.298712f,-0.0246415f,0.123358f},{0.294417f,-0.0214191f,0.124659f},{0.294244f,-0.0219595f,0.124523f}, - {0.29589f,-0.0218522f,0.124658f},{0.3004f,-0.0255716f,0.12158f},{0.300406f,-0.0254147f,0.122194f}, - {0.300405f,-0.0256204f,0.120977f},{0.298628f,-0.0254484f,0.12158f},{0.298641f,-0.0254985f,0.120977f}, - {0.296874f,-0.0252035f,0.12158f},{0.29689f,-0.0252554f,0.120977f},{0.295161f,-0.0248864f,0.120977f}, - {0.295152f,-0.0248403f,0.12158f},{0.293458f,-0.0244103f,0.120977f},{0.308995f,-0.0240236f,0.12267f}, - {0.307323f,-0.0244252f,0.122798f},{0.305677f,-0.0250482f,0.122194f},{0.298644f,-0.0252922f,0.122194f}, - {0.295189f,-0.0246879f,0.122194f},{0.296901f,-0.0250488f,0.122194f},{0.293472f,-0.0243658f,0.121565f}, - {0.293513f,-0.0242365f,0.12213f},{0.308902f,-0.0237329f,0.123168f},{0.305631f,-0.0247816f,0.122798f}, - {0.293581f,-0.0240245f,0.122667f},{0.306835f,-0.0224524f,0.124501f},{0.308497f,-0.0224691f,0.124301f}, - {0.305565f,-0.0244038f,0.123358f},{0.298762f,-0.0241606f,0.123843f},{0.295346f,-0.0240528f,0.123358f}, - {0.293674f,-0.0237345f,0.123166f},{0.303817f,-0.0241602f,0.123843f},{0.305481f,-0.0239275f,0.123843f}, - {0.302134f,-0.0242775f,0.123843f},{0.300445f,-0.0242776f,0.123843f},{0.293791f,-0.0233704f,0.123614f}, - {0.305384f,-0.0233762f,0.124229f},{0.300465f,-0.0237183f,0.124229f},{0.29882f,-0.023604f,0.124229f}, - {0.293928f,-0.0229455f,0.123995f},{0.308332f,-0.0219573f,0.124524f},{0.302094f,-0.0231133f,0.124501f}, - {0.300486f,-0.0231134f,0.124501f},{0.298883f,-0.023002f,0.124501f},{0.297405f,-0.0221717f,0.124658f}, - {0.297298f,-0.0227807f,0.124501f},{0.303631f,-0.0223867f,0.124658f},{0.302072f,-0.0224954f,0.124658f}, - {0.300507f,-0.0224956f,0.124658f},{0.298948f,-0.0223872f,0.124658f},{0.279588f,-0.013557f,0.12158f}, - {0.280709f,-0.0149379f,0.122194f},{0.279721f,-0.0134738f,0.122194f},{0.280581f,-0.0150302f,0.12158f}, - {0.279926f,-0.0141709f,0.120977f},{0.280846f,-0.0154689f,0.120977f},{0.280928f,-0.0147789f,0.122798f}, - {0.279951f,-0.0133304f,0.122798f},{0.281238f,-0.0145536f,0.123358f},{0.282958f,-0.0176259f,0.122194f}, - {0.282845f,-0.0177348f,0.12158f},{0.284187f,-0.0188513f,0.122131f},{0.284338f,-0.0186852f,0.122672f}, - {0.28403f,-0.0144499f,0.124658f},{0.283556f,-0.0148468f,0.124501f},{0.285063f,-0.0156014f,0.124658f}, - {0.284095f,-0.0189527f,0.121561f},{0.282919f,-0.0178817f,0.120977f},{0.284064f,-0.0189869f,0.120977f}, - {0.28167f,-0.0164258f,0.12158f},{0.281845f,-0.0167075f,0.120977f},{0.284181f,-0.0164494f,0.124229f}, - {0.283778f,-0.0168374f,0.123843f},{0.285097f,-0.0178479f,0.123994f},{0.281161f,-0.0125744f,0.124229f}, - {0.282082f,-0.0139408f,0.124229f},{0.282572f,-0.0135853f,0.124501f},{0.286177f,-0.0166578f,0.12466f}, - {0.283429f,-0.0171725f,0.123358f},{0.284798f,-0.018178f,0.123614f},{0.278016f,-0.00850026f,0.123358f}, - {0.277119f,-0.0069868f,0.122798f},{0.277656f,-0.00863187f,0.122798f},{0.280276f,-0.0131272f,0.123358f}, - {0.279071f,-0.0064225f,0.124501f},{0.278223f,-0.00499264f,0.1243f},{0.278489f,-0.00659057f,0.124229f}, - {0.278837f,-0.0119427f,0.122194f},{0.278699f,-0.0120165f,0.12158f},{0.277952f,-0.006746f,0.123843f}, - {0.278471f,-0.00833438f,0.123843f},{0.278996f,-0.00814234f,0.124229f},{0.27831f,-0.0102456f,0.122798f}, - {0.27866f,-0.0100893f,0.123358f},{0.279415f,-0.0116355f,0.123358f},{0.279076f,-0.0118156f,0.122798f}, - {0.279303f,-0.00475885f,0.124659f},{0.278749f,-0.00487893f,0.124523f},{0.279665f,-0.00625082f,0.124658f}, - {0.279087f,-0.012818f,0.120977f},{0.277919f,-0.0104197f,0.12158f},{0.278335f,-0.011416f,0.120977f}, - {0.277254f,-0.0087786f,0.12158f},{0.277671f,-0.00996985f,0.120977f},{0.2771f,-0.00848443f,0.120977f}, - {0.276708f,-0.00710556f,0.12158f},{0.276626f,-0.00696541f,0.120977f},{0.276233f,-0.00542344f,0.120977f}, - {0.276279f,-0.00541355f,0.121565f},{0.283153f,-0.0174384f,0.122798f},{0.281791f,-0.016325f,0.122194f}, - {0.278063f,-0.0103558f,0.122194f},{0.277402f,-0.00872472f,0.122194f},{0.276859f,-0.00706195f,0.122194f}, - {0.276412f,-0.00538482f,0.12213f},{0.284543f,-0.0184588f,0.12317f},{0.281998f,-0.0161513f,0.122798f}, - {0.276629f,-0.00533772f,0.122667f},{0.284618f,-0.0160299f,0.124501f},{0.285433f,-0.0174779f,0.1243f}, - {0.282292f,-0.015905f,0.123358f},{0.279102f,-0.00989244f,0.123843f},{0.277487f,-0.00688027f,0.123358f}, - {0.276927f,-0.00527328f,0.123166f},{0.281629f,-0.0142696f,0.123843f},{0.282663f,-0.0155946f,0.123843f}, - {0.280686f,-0.012871f,0.123843f},{0.279842f,-0.0114084f,0.123843f},{0.277301f,-0.00519238f,0.123614f}, - {0.283092f,-0.0152353f,0.124229f},{0.280336f,-0.0111456f,0.124229f},{0.279613f,-0.00966451f,0.124229f}, - {0.277737f,-0.005098f,0.123995f},{0.285796f,-0.0170773f,0.124524f},{0.281674f,-0.0122538f,0.124501f}, - {0.28087f,-0.0108613f,0.124501f},{0.280166f,-0.00941806f,0.124501f},{0.280146f,-0.0077226f,0.124658f}, - {0.279565f,-0.00793471f,0.124501f},{0.283072f,-0.0132221f,0.124658f},{0.282199f,-0.0119262f,0.124658f}, - {0.281416f,-0.010571f,0.124658f},{0.28073f,-0.0091663f,0.124658f},{0.278698f,0.0120144f,0.12158f}, - {0.278062f,0.0103538f,0.122194f},{0.278836f,0.0119407f,0.122194f},{0.277919f,0.0104178f,0.12158f}, - {0.278309f,0.0102436f,0.122798f},{0.279075f,0.0118136f,0.122798f},{0.278659f,0.0100875f,0.123358f}, - {0.276859f,0.00706195f,0.122194f},{0.276708f,0.00710556f,0.12158f},{0.276413f,0.00538462f,0.122132f}, - {0.27663f,0.00533751f,0.12267f},{0.280145f,0.00772125f,0.124658f},{0.279565f,0.00793332f,0.124501f}, - {0.279665f,0.00625082f,0.124658f},{0.276279f,0.00541355f,0.121565f},{0.277254f,0.00877706f,0.12158f}, - {0.278489f,0.00659057f,0.124229f},{0.277952f,0.006746f,0.123843f},{0.277739f,0.00509752f,0.123996f}, - {0.280335f,0.0111437f,0.124229f},{0.279612f,0.00966271f,0.124229f},{0.280165f,0.00941631f,0.124501f}, - {0.279303f,0.00475885f,0.124659f},{0.277487f,0.00688027f,0.123358f},{0.277301f,0.00519238f,0.123614f}, - {0.282291f,0.0159041f,0.123358f},{0.283153f,0.0174384f,0.122798f},{0.281997f,0.0161504f,0.122798f}, - {0.279414f,0.0116335f,0.123358f},{0.284618f,0.0160299f,0.124501f},{0.285431f,0.0174801f,0.124299f}, - {0.284181f,0.0164494f,0.124229f},{0.27972f,0.013472f,0.122194f},{0.279587f,0.0135551f,0.12158f}, - {0.283778f,0.0168374f,0.123843f},{0.282662f,0.0155937f,0.123843f},{0.283091f,0.0152344f,0.124229f}, - {0.280926f,0.0147775f,0.122798f},{0.281237f,0.0145522f,0.123358f},{0.280275f,0.0131254f,0.123358f}, - {0.27995f,0.0133286f,0.122798f},{0.286177f,0.0166578f,0.12466f},{0.285794f,0.0170797f,0.124523f}, - {0.285063f,0.0156014f,0.124658f},{0.28058f,0.0150287f,0.12158f},{0.281669f,0.0164249f,0.12158f}, - {0.282845f,0.0177348f,0.12158f},{0.284095f,0.0189527f,0.121561f},{0.277119f,0.0069868f,0.122798f}, - {0.277402f,0.00872319f,0.122194f},{0.280707f,0.0149364f,0.122194f},{0.281789f,0.0163241f,0.122194f}, - {0.282958f,0.0176259f,0.122194f},{0.284186f,0.018852f,0.122128f},{0.276929f,0.00527292f,0.123168f}, - {0.277656f,0.00863036f,0.122798f},{0.284337f,0.0186863f,0.122669f},{0.279071f,0.0064225f,0.124501f}, - {0.278226f,0.00499215f,0.124301f},{0.278016f,0.00849877f,0.123358f},{0.281628f,0.0142682f,0.123843f}, - {0.283429f,0.0171725f,0.123358f},{0.284542f,0.0184598f,0.123168f},{0.279101f,0.0098906f,0.123843f}, - {0.27847f,0.00833292f,0.123843f},{0.279841f,0.0114065f,0.123843f},{0.280685f,0.0128692f,0.123843f}, - {0.284798f,0.018178f,0.123614f},{0.278996f,0.00814092f,0.124229f},{0.28116f,0.0125727f,0.124229f}, - {0.282081f,0.0139394f,0.124229f},{0.285096f,0.0178492f,0.123993f},{0.278751f,0.00487843f,0.124524f}, - {0.280869f,0.0108595f,0.124501f},{0.281673f,0.0122521f,0.124501f},{0.282571f,0.013584f,0.124501f}, - {0.284029f,0.0144491f,0.124658f},{0.283555f,0.014846f,0.124501f},{0.28073f,0.00916459f,0.124658f}, - {0.281415f,0.0105692f,0.124658f},{0.282198f,0.0119246f,0.124658f},{0.283071f,0.0132209f,0.124658f}, - {0.300403f,0.0254145f,0.122194f},{0.29867f,0.0250226f,0.122798f},{0.300413f,0.0251441f,0.122798f}, - {0.296873f,0.0252029f,0.12158f},{0.298626f,0.0254479f,0.12158f},{0.29871f,0.0246411f,0.123358f}, - {0.295189f,0.0246879f,0.122194f},{0.295152f,0.0248403f,0.12158f},{0.293514f,0.0242356f,0.122132f}, - {0.293472f,0.0243658f,0.121565f},{0.29589f,0.0218522f,0.124658f},{0.297404f,0.0221712f,0.124658f}, - {0.297297f,0.0227801f,0.124501f},{0.293791f,0.0233704f,0.123614f},{0.295462f,0.0235834f,0.123843f}, - {0.295346f,0.0240528f,0.123358f},{0.298819f,0.0236035f,0.124229f},{0.298882f,0.0230016f,0.124501f}, - {0.300462f,0.0237181f,0.124229f},{0.295597f,0.02304f,0.124229f},{0.293928f,0.0229434f,0.123996f}, - {0.300398f,0.0255715f,0.12158f},{0.298642f,0.0252917f,0.122194f},{0.305563f,0.0244044f,0.123358f}, - {0.307323f,0.0244252f,0.122798f},{0.305629f,0.0247822f,0.122798f},{0.294417f,0.0214191f,0.124659f}, - {0.302149f,0.0247609f,0.123358f},{0.303905f,0.0250231f,0.122798f},{0.302162f,0.0251442f,0.122798f}, - {0.300426f,0.0247607f,0.123358f},{0.307115f,0.0235834f,0.123843f},{0.30548f,0.0239281f,0.123843f}, - {0.305383f,0.0233768f,0.124229f},{0.306835f,0.0224524f,0.124501f},{0.308497f,0.0224714f,0.1243f}, - {0.306981f,0.02304f,0.124229f},{0.303865f,0.0246415f,0.123358f},{0.30816f,0.0214191f,0.124659f}, - {0.308333f,0.0219595f,0.124523f},{0.306687f,0.0218522f,0.124658f},{0.302177f,0.0255716f,0.12158f}, - {0.302171f,0.0254147f,0.122194f},{0.30395f,0.0254484f,0.12158f},{0.305703f,0.0252035f,0.12158f}, - {0.307425f,0.0248403f,0.12158f},{0.293582f,0.0240236f,0.12267f},{0.295254f,0.0244252f,0.122798f}, - {0.2969f,0.0250482f,0.122194f},{0.303933f,0.0252922f,0.122194f},{0.307388f,0.0246879f,0.122194f}, - {0.305676f,0.0250488f,0.122194f},{0.309105f,0.0243658f,0.121565f},{0.309064f,0.0242365f,0.12213f}, - {0.293675f,0.0237329f,0.123168f},{0.296946f,0.0247816f,0.122798f},{0.308996f,0.0240245f,0.122667f}, - {0.295742f,0.0224524f,0.124501f},{0.29408f,0.0224691f,0.124301f},{0.297013f,0.0244038f,0.123358f}, - {0.303815f,0.0241606f,0.123843f},{0.307231f,0.0240528f,0.123358f},{0.308903f,0.0237345f,0.123166f}, - {0.29876f,0.0241602f,0.123843f},{0.297096f,0.0239275f,0.123843f},{0.300443f,0.0242775f,0.123843f}, - {0.302132f,0.0242776f,0.123843f},{0.308786f,0.0233704f,0.123614f},{0.297193f,0.0233762f,0.124229f}, - {0.302113f,0.0237183f,0.124229f},{0.303757f,0.023604f,0.124229f},{0.308649f,0.0229455f,0.123995f}, - {0.294245f,0.0219573f,0.124524f},{0.300484f,0.0231133f,0.124501f},{0.302091f,0.0231134f,0.124501f}, - {0.303694f,0.023002f,0.124501f},{0.305172f,0.0221717f,0.124658f},{0.305279f,0.0227807f,0.124501f}, - {0.298946f,0.0223867f,0.124658f},{0.300505f,0.0224954f,0.124658f},{0.30207f,0.0224956f,0.124658f}, - {0.303629f,0.0223872f,0.124658f},{0.322989f,0.013557f,0.12158f},{0.321869f,0.0149379f,0.122194f}, - {0.322856f,0.0134738f,0.122194f},{0.321996f,0.0150302f,0.12158f},{0.32165f,0.0147789f,0.122798f}, - {0.322626f,0.0133304f,0.122798f},{0.321339f,0.0145536f,0.123358f},{0.319619f,0.0176259f,0.122194f}, - {0.319733f,0.0177348f,0.12158f},{0.31839f,0.018851f,0.122132f},{0.31824f,0.0186861f,0.12267f}, - {0.318547f,0.0144499f,0.124658f},{0.319021f,0.0148468f,0.124501f},{0.317514f,0.0156014f,0.124658f}, - {0.318482f,0.0189523f,0.121565f},{0.320907f,0.0164258f,0.12158f},{0.318396f,0.0164494f,0.124229f}, - {0.318799f,0.0168374f,0.123843f},{0.317478f,0.0178459f,0.123996f},{0.321416f,0.0125744f,0.124229f}, - {0.320495f,0.0139408f,0.124229f},{0.320005f,0.0135853f,0.124501f},{0.316402f,0.0166602f,0.124659f}, - {0.319148f,0.0171725f,0.123358f},{0.317779f,0.018178f,0.123614f},{0.324561f,0.00850026f,0.123358f}, - {0.325458f,0.0069868f,0.122798f},{0.324921f,0.00863187f,0.122798f},{0.322301f,0.0131272f,0.123358f}, - {0.323506f,0.0064225f,0.124501f},{0.324354f,0.00499264f,0.1243f},{0.324088f,0.00659057f,0.124229f}, - {0.32374f,0.0119427f,0.122194f},{0.323878f,0.0120165f,0.12158f},{0.324625f,0.006746f,0.123843f}, - {0.324106f,0.00833438f,0.123843f},{0.323581f,0.00814234f,0.124229f},{0.324267f,0.0102456f,0.122798f}, - {0.323917f,0.0100893f,0.123358f},{0.323162f,0.0116355f,0.123358f},{0.323501f,0.0118156f,0.122798f}, - {0.323274f,0.00475885f,0.124659f},{0.323828f,0.00487893f,0.124523f},{0.322912f,0.00625082f,0.124658f}, - {0.324658f,0.0104197f,0.12158f},{0.325323f,0.0087786f,0.12158f},{0.325869f,0.00710556f,0.12158f}, - {0.326298f,0.00541355f,0.121565f},{0.319424f,0.0174384f,0.122798f},{0.320786f,0.016325f,0.122194f}, - {0.324515f,0.0103558f,0.122194f},{0.325175f,0.00872472f,0.122194f},{0.325718f,0.00706195f,0.122194f}, - {0.326165f,0.00538482f,0.12213f},{0.318035f,0.0184599f,0.123168f},{0.320579f,0.0161513f,0.122798f}, - {0.325948f,0.00533772f,0.122667f},{0.31796f,0.0160299f,0.124501f},{0.317143f,0.017477f,0.124301f}, - {0.320285f,0.015905f,0.123358f},{0.323475f,0.00989244f,0.123843f},{0.32509f,0.00688027f,0.123358f}, - {0.32565f,0.00527328f,0.123166f},{0.320948f,0.0142696f,0.123843f},{0.319914f,0.0155946f,0.123843f}, - {0.321891f,0.012871f,0.123843f},{0.322735f,0.0114084f,0.123843f},{0.325276f,0.00519238f,0.123614f}, - {0.319485f,0.0152353f,0.124229f},{0.322241f,0.0111456f,0.124229f},{0.322964f,0.00966451f,0.124229f}, - {0.32484f,0.005098f,0.123995f},{0.316782f,0.0170789f,0.124524f},{0.320903f,0.0122538f,0.124501f}, - {0.321707f,0.0108613f,0.124501f},{0.322411f,0.00941806f,0.124501f},{0.322432f,0.0077226f,0.124658f}, - {0.323012f,0.00793471f,0.124501f},{0.319505f,0.0132221f,0.124658f},{0.320378f,0.0119262f,0.124658f}, - {0.321161f,0.010571f,0.124658f},{0.321847f,0.0091663f,0.124658f},{0.305432f,-0.00620072f,0.0995366f}, - {0.302686f,-0.00241971f,0.0995366f},{0.303085f,-0.00214016f,0.0995366f},{0.304143f,-0.00688999f,0.0995366f}, - {0.304805f,-0.00657676f,0.0995366f},{0.303454f,-0.00713669f,0.0995366f},{0.302245f,-0.00262702f,0.0995366f}, - {0.30602f,-0.00576486f,0.0995366f},{0.306563f,-0.00527335f,0.0995366f},{0.302744f,-0.00731445f,0.0995366f}, - {0.301774f,-0.00275405f,0.0995366f},{0.30343f,-0.00179629f,0.0995366f},{0.307054f,-0.004731f,0.0995366f}, - {0.302019f,-0.00742168f,0.0995366f},{0.301289f,-0.00279661f,0.0995366f},{0.30749f,-0.00414307f,0.0995366f}, - {0.30371f,-0.00139723f,0.0995366f},{0.301289f,-0.00745764f,0.0995366f},{0.300557f,-0.0074216f,0.0995366f}, - {0.299833f,-0.00731392f,0.0995366f},{0.300803f,-0.00275426f,0.0995366f},{0.299123f,-0.00713585f,0.0995366f}, - {0.300333f,-0.0026284f,0.0995366f},{0.308179f,-0.0028536f,0.0995366f},{0.307866f,-0.00351526f,0.0995366f}, - {0.297772f,-0.00657672f,0.0995366f},{0.298434f,-0.0068893f,0.0995366f},{0.308426f,-0.00216444f,0.0995366f}, - {0.303916f,-0.000955369f,0.0995366f},{0.304042f,-0.000484912f,0.0995366f},{0.299894f,-0.00241949f,0.0995366f}, - {0.308711f,-0.000730865f,0.0995366f},{0.308603f,-0.00145464f,0.0995366f},{0.299145f,-0.0018009f,0.0995366f}, - {0.299499f,-0.00213198f,0.0995366f},{0.296015f,-0.00527224f,0.0995366f},{0.294712f,-0.00351451f,0.0995366f}, - {0.294399f,-0.00285307f,0.0995366f},{0.29866f,-0.000957231f,0.0995366f},{0.298533f,-0.000485989f,0.0995366f}, - {0.293867f,-0.000730708f,0.0995366f},{0.294152f,-0.00216422f,0.0995366f},{0.293974f,-0.00145452f,0.0995366f}, - {0.296557f,-0.00576389f,0.0995366f},{0.297145f,-0.00620014f,0.0995366f},{0.295088f,-0.00414214f,0.0995366f}, - {0.298866f,-0.00139896f,0.0995366f},{0.295524f,-0.00472993f,0.0995366f},{0.301897f,0.0121618f,0.100469f}, - {0.303073f,0.0124736f,0.100469f},{0.30362f,0.0127432f,0.100469f},{0.303454f,-0.00713585f,0.100469f}, - {0.306649f,-0.0107204f,0.100469f},{0.30871f,-0.000730708f,0.100469f},{0.31345f,-0.00060826f,0.100469f}, - {0.308425f,-0.00216422f,0.100469f},{0.314032f,-0.002331f,0.100469f},{0.308178f,-0.00285307f,0.100469f}, - {0.305326f,0.0144494f,0.100469f},{0.305594f,0.0185639f,0.100469f},{0.315586f,-0.0131013f,0.100469f}, - {0.29849f,0.021256f,0.100469f},{0.32269f,-0.0006084f,0.100469f},{0.294397f,0.0203028f,0.100469f}, - {0.293084f,0.0198085f,0.100469f},{0.322568f,-0.00120559f,0.100469f},{0.322372f,-0.00178272f,0.100469f}, - {0.314772f,-0.00329614f,0.100469f},{0.307865f,-0.00351451f,0.100469f},{0.31437f,-0.00283787f,0.100469f}, - {0.292356f,-0.0114792f,0.100469f},{0.297563f,-0.0139787f,0.100469f},{0.297226f,-0.0144948f,0.100469f}, - {0.322105f,-0.00233026f,0.100469f},{0.321364f,-0.00329545f,0.100469f},{0.321766f,-0.00283697f,0.100469f}, - {0.320906f,-0.00369728f,0.100469f},{0.315199f,-0.0112779f,0.100469f},{0.315428f,-0.0115926f,0.100469f}, - {0.299123f,-0.00713669f,0.100469f},{0.298935f,-0.0127563f,0.100469f},{0.298434f,-0.00688999f,0.100469f}, - {0.320399f,-0.00403597f,0.100469f},{0.319852f,-0.00430572f,0.100469f},{0.318068f,-0.00466102f,0.100469f}, - {0.318677f,-0.00462104f,0.100469f},{0.319275f,-0.00450189f,0.100469f},{0.287152f,0.0161201f,0.100469f}, - {0.291806f,0.0192295f,0.100469f},{0.30007f,-0.0122874f,0.100469f},{0.299834f,-0.00731445f,0.100469f}, - {0.300558f,-0.00742168f,0.100469f},{0.31746f,-0.00462115f,0.100469f},{0.299486f,-0.0124812f,0.100469f}, - {0.307489f,-0.00414214f,0.100469f},{0.298425f,-0.0131016f,0.100469f},{0.315667f,-0.01233f,0.100469f}, - {0.290537f,0.0119471f,0.100469f},{0.290379f,0.0115917f,0.100469f},{0.299886f,0.0213951f,0.100469f}, - {0.304584f,0.0200754f,0.100469f},{0.304986f,0.0196172f,0.100469f},{0.307053f,-0.00472993f,0.100469f}, - {0.30595f,0.0167797f,0.100469f},{0.30591f,0.0173884f,0.100469f},{0.308603f,-0.00145452f,0.100469f}, - {0.313762f,-0.00178435f,0.100469f},{0.31345f,0.00961418f,0.100469f},{0.312223f,0.0087231f,0.100469f}, - {0.312593f,0.00884326f,0.100469f},{0.313608f,0.0099696f,0.100469f},{0.31293f,0.00903788f,0.100469f}, - {0.31322f,0.00929843f,0.100469f},{0.314909f,-0.0110163f,0.100469f},{0.314908f,-0.014033f,0.100469f}, - {0.314571f,-0.0142276f,0.100469f},{0.314571f,-0.0108212f,0.100469f},{0.316862f,-0.00450236f,0.100469f}, - {0.30602f,-0.00576389f,0.100469f},{0.306562f,-0.00527224f,0.100469f},{0.284279f,0.0130525f,0.100469f}, - {0.293769f,-0.0200792f,0.100469f},{0.292435f,-0.0195277f,0.100469f},{0.296679f,-0.0174727f,0.100469f}, - {0.304143f,-0.0068893f,0.100469f},{0.304805f,-0.00657672f,0.100469f},{0.30202f,-0.0074216f,0.100469f}, - {0.302744f,-0.00731392f,0.100469f},{0.286128f,0.0151611f,0.100469f},{0.285169f,0.0141371f,0.100469f}, - {0.288815f,0.00178435f,0.100469f},{0.289004f,0.00120563f,0.100469f},{0.301289f,-0.00745764f,0.100469f}, - {0.29696f,-0.0150508f,0.100469f},{0.292127f,-0.011795f,0.100469f},{0.290568f,0.00536018f,0.100469f}, - {0.292596f,-0.0107426f,0.100469f},{0.297965f,-0.0135115f,0.100469f},{0.283462f,0.0119121f,0.100469f}, - {0.293974f,-0.00145464f,0.100469f},{0.294152f,-0.00216444f,0.100469f},{0.293866f,-0.000730865f,0.100469f}, - {0.281671f,0.00369728f,0.100469f},{0.281213f,0.00329545f,0.100469f},{0.28026f,0.00418323f,0.100469f}, - {0.285469f,-0.0144727f,0.100469f},{0.284531f,-0.0133751f,0.100469f},{0.283669f,-0.0122169f,0.100469f}, - {0.296659f,-0.0162427f,0.100469f},{0.291141f,-0.0188874f,0.100469f},{0.288696f,-0.0173532f,0.100469f}, - {0.287556f,-0.0164664f,0.100469f},{0.296628f,-0.0168584f,0.100469f},{0.297021f,-0.018654f,0.100469f}, - {0.295138f,-0.0205396f,0.100469f},{0.296811f,-0.0180747f,0.100469f},{0.299634f,-0.0211335f,0.100469f}, - {0.299385f,-0.0213586f,0.100469f},{0.299072f,-0.0208805f,0.100469f},{0.29766f,-0.0197045f,0.100469f}, - {0.296534f,-0.0209071f,0.100469f},{0.297306f,-0.0192003f,0.100469f},{0.298078f,-0.0201577f,0.100469f}, - {0.298551f,-0.0205519f,0.100469f},{0.297955f,-0.0211663f,0.100469f},{0.300222f,-0.0213146f,0.100469f}, - {0.300829f,-0.021419f,0.100469f},{0.29113f,-0.0123703f,0.100469f},{0.289893f,-0.0181614f,0.100469f}, - {0.286479f,-0.0155048f,0.100469f},{0.282886f,-0.0110032f,0.100469f},{0.280042f,-0.00287961f,0.100469f}, - {0.280284f,-0.00430325f,0.100469f},{0.280621f,-0.00570752f,0.100469f},{0.313573f,-0.00120563f,0.100469f}, - {0.296557f,-0.00576486f,0.100469f},{0.292357f,-0.00961513f,0.100469f},{0.292128f,-0.00930035f,0.100469f}, - {0.282188f,-0.00973944f,0.100469f},{0.2915f,-0.0122501f,0.100469f},{0.279896f,-0.00144304f,0.100469f}, - {0.290149f,0.0112759f,0.100469f},{0.289859f,0.0110154f,0.100469f},{0.295523f,-0.004731f,0.100469f}, - {0.296014f,-0.00527335f,0.100469f},{0.291838f,-0.00903878f,0.100469f},{0.291501f,-0.00884365f,0.100469f}, - {0.291131f,-0.00872342f,0.100469f},{0.295087f,-0.00414307f,0.100469f},{0.292515f,-0.00997107f,0.100469f}, - {0.297145f,-0.00620072f,0.100469f},{0.297772f,-0.00657676f,0.100469f},{0.29677f,-0.0156368f,0.100469f}, - {0.291837f,-0.0120555f,0.100469f},{0.300674f,-0.0121629f,0.100469f},{0.315231f,-0.00369829f,0.100469f}, - {0.305432f,-0.00620014f,0.100469f},{0.315738f,-0.00403701f,0.100469f},{0.313689f,0.0107408f,0.100469f}, - {0.313222f,0.011793f,0.100469f},{0.305595f,0.0149963f,0.100469f},{0.303071f,0.0210836f,0.100469f}, - {0.297106f,0.0210266f,0.100469f},{0.290618f,0.0123283f,0.100469f},{0.295739f,0.0207091f,0.100469f}, - {0.288207f,0.00283787f,0.100469f},{0.287805f,0.00329614f,0.100469f},{0.288237f,0.0170101f,0.100469f}, - {0.282721f,0.0107207f,0.100469f},{0.280986f,0.00689212f,0.100469f},{0.282725f,0.00430572f,0.100469f}, - {0.280579f,0.00554954f,0.100469f},{0.294398f,-0.0028536f,0.100469f},{0.289377f,0.0178274f,0.100469f}, - {0.289523f,0.0142272f,0.100469f},{0.289153f,0.0143475f,0.100469f},{0.282059f,0.00948339f,0.100469f}, - {0.286292f,0.00430656f,0.100469f},{0.289127f,0.00060826f,0.100469f},{0.290379f,0.0134558f,0.100469f}, - {0.290151f,0.0137705f,0.100469f},{0.290619f,0.0127183f,0.100469f},{0.290569f,0.0185682f,0.100469f}, - {0.289861f,0.0140321f,0.100469f},{0.302494f,0.0122844f,0.100469f},{0.312932f,0.0120546f,0.100469f}, - {0.312594f,0.0122497f,0.100469f},{0.313689f,0.0103508f,0.100469f},{0.30591f,0.0161715f,0.100469f}, - {0.304126f,0.0130817f,0.100469f},{0.304585f,0.0134836f,0.100469f},{0.304987f,0.0139422f,0.100469f}, - {0.313609f,0.0111223f,0.100469f},{0.31345f,0.0114782f,0.100469f},{0.312224f,0.01237f,0.100469f}, - {0.316285f,-0.00430656f,0.100469f},{0.314202f,-0.0107009f,0.100469f},{0.314201f,-0.0143478f,0.100469f}, - {0.315197f,-0.0137725f,0.100469f},{0.315427f,-0.0134567f,0.100469f},{0.315667f,-0.0127201f,0.100469f}, - {0.315586f,-0.0119486f,0.100469f},{0.281052f,-0.00708565f,0.100469f},{0.281575f,-0.00843163f,0.100469f}, - {0.292596f,-0.0103525f,0.100469f},{0.292515f,-0.0111238f,0.100469f},{0.294711f,-0.00351526f,0.100469f}, - {0.290538f,0.0130998f,0.100469f},{0.305791f,0.0155736f,0.100469f},{0.30579f,0.0179866f,0.100469f}, - {0.305324f,0.0191105f,0.100469f},{0.304126f,0.0204775f,0.100469f},{0.303619f,0.0208166f,0.100469f}, - {0.301897f,0.0214014f,0.100469f},{0.302494f,0.021279f,0.100469f},{0.280205f,0.00178272f,0.100469f}, - {0.279894f,0.00140253f,0.100469f},{0.280031f,0.00279893f,0.100469f},{0.28148f,0.00820537f,0.100469f}, - {0.284509f,0.00466102f,0.100469f},{0.2839f,0.00462104f,0.100469f},{0.285117f,0.00462115f,0.100469f}, - {0.288545f,0.002331f,0.100469f},{0.285715f,0.00450236f,0.100469f},{0.287346f,0.00369829f,0.100469f}, - {0.286839f,0.00403701f,0.100469f},{0.289152f,0.0107006f,0.100469f},{0.289522f,0.0108208f,0.100469f}, - {0.283302f,0.00450189f,0.100469f},{0.282178f,0.00403597f,0.100469f},{0.280811f,0.00283697f,0.100469f}, - {0.280472f,0.00233026f,0.100469f},{0.279887f,0.0006084f,0.100469f},{0.280009f,0.00120559f,0.100469f}, - {0.323375f,-0.0130142f,0.119113f},{0.321024f,-0.0163617f,0.119113f},{0.284862f,0.0202853f,0.119113f}, - {0.283823f,0.0193978f,0.119113f},{0.324037f,-0.0118202f,0.119113f},{0.288238f,0.0226051f,0.119113f}, - {0.287073f,0.0218911f,0.119113f},{0.325627f,-0.00805156f,0.119113f},{0.291935f,0.0243682f,0.119113f}, - {0.290672f,0.0238452f,0.119113f},{0.326598f,-0.0040778f,0.119113f},{0.295862f,0.0255314f,0.119113f}, - {0.297205f,0.0257805f,0.119113f},{0.294533f,0.0252126f,0.119113f},{0.293223f,0.0248245f,0.119113f}, - {0.299923f,0.0260573f,0.119113f},{0.29856f,0.0259588f,0.119113f},{0.32688f,-0.00136419f,0.119113f}, - {0.326779f,-0.00272502f,0.119113f},{0.289439f,0.023257f,0.119113f},{0.326021f,-0.00674482f,0.119113f}, - {0.326345f,-0.00541896f,0.119113f},{0.285946f,0.0211172f,0.119113f},{0.324633f,-0.0105928f,0.119113f}, - {0.325164f,-0.00933541f,0.119113f},{0.282832f,0.0184571f,0.119113f},{0.281891f,0.0174659f,0.119113f}, - {0.322651f,-0.0141713f,0.119113f},{0.281004f,0.0164267f,0.119113f},{0.280172f,0.0153425f,0.119113f}, - {0.279398f,0.0142163f,0.119113f},{0.321867f,-0.0152881f,0.119113f},{0.278684f,0.0130512f,0.119113f}, - {0.278032f,0.0118502f,0.119113f},{0.320125f,-0.0173888f,0.119113f},{0.277443f,0.0106168f,0.119113f}, - {0.319173f,-0.0183667f,0.119113f},{0.27692f,0.00935425f,0.119113f},{0.31817f,-0.0192925f,0.119113f}, - {0.276464f,0.00806608f,0.119113f},{0.31712f,-0.0201635f,0.119113f},{0.276076f,0.00675581f,0.119113f}, - {0.316024f,-0.0209774f,0.119113f},{0.275757f,0.00542697f,0.119113f},{0.314887f,-0.021732f,0.119113f}, - {0.275508f,0.00408325f,0.119113f},{0.313711f,-0.022425f,0.119113f},{0.27533f,0.00272836f,0.119113f}, - {0.3125f,-0.0230545f,0.119113f},{0.275223f,0.00136603f,0.119113f},{0.311257f,-0.0236185f,0.119113f}, - {0.275187f,5.40871e-017f,0.119113f},{0.309985f,-0.0241155f,0.119113f},{0.275698f,-0.00136408f,0.119113f}, - {0.275223f,-0.0013662f,0.119113f},{0.308689f,-0.0245441f,0.119113f},{0.275798f,-0.00272485f,0.119113f}, - {0.27533f,-0.00272864f,0.119113f},{0.307373f,-0.0249032f,0.119113f},{0.275979f,-0.0040775f,0.119113f}, - {0.275508f,-0.00408356f,0.119113f},{0.306038f,-0.0251918f,0.119113f},{0.304691f,-0.0254089f,0.119113f}, - {0.301971f,-0.0256265f,0.119113f},{0.276232f,-0.00541865f,0.119113f},{0.275757f,-0.00542725f,0.119113f}, - {0.29856f,-0.025959f,0.119113f},{0.297886f,-0.0254087f,0.119113f},{0.297205f,-0.0257802f,0.119113f}, - {0.277413f,-0.00933492f,0.119113f},{0.27695f,-0.00805103f,0.119113f},{0.276921f,-0.00935456f,0.119113f}, - {0.294533f,-0.0252123f,0.119113f},{0.293887f,-0.0245439f,0.119113f},{0.293223f,-0.0248241f,0.119113f}, - {0.278684f,-0.0130514f,0.119113f},{0.27854f,-0.0118198f,0.119113f},{0.278032f,-0.0118505f,0.119113f}, - {0.289439f,-0.0232571f,0.119113f},{0.290673f,-0.0238453f,0.119113f},{0.290077f,-0.0230539f,0.119113f}, - {0.281004f,-0.0164269f,0.119113f},{0.28071f,-0.0152875f,0.119113f},{0.280172f,-0.0153428f,0.119113f}, - {0.284863f,-0.0202852f,0.119113f},{0.284407f,-0.019292f,0.119113f},{0.283824f,-0.0193978f,0.119113f}, - {0.288238f,-0.022605f,0.119113f},{0.288866f,-0.0224246f,0.119113f},{0.282452f,-0.0173882f,0.119113f}, - {0.281892f,-0.017466f,0.119113f},{0.282833f,-0.0184572f,0.119113f},{0.283404f,-0.0183661f,0.119113f}, - {0.285947f,-0.021117f,0.119113f},{0.287073f,-0.021891f,0.119113f},{0.286553f,-0.0209773f,0.119113f}, - {0.28769f,-0.0217317f,0.119113f},{0.281553f,-0.016361f,0.119113f},{0.285457f,-0.0201633f,0.119113f}, - {0.292591f,-0.0241152f,0.119113f},{0.291935f,-0.024368f,0.119113f},{0.29132f,-0.023618f,0.119113f}, - {0.279202f,-0.0130136f,0.119113f},{0.279398f,-0.0142166f,0.119113f},{0.279926f,-0.0141706f,0.119113f}, - {0.296538f,-0.0251915f,0.119113f},{0.295862f,-0.0255313f,0.119113f},{0.295204f,-0.024903f,0.119113f}, - {0.277944f,-0.0105924f,0.119113f},{0.277444f,-0.0106171f,0.119113f},{0.300606f,-0.0256265f,0.119113f}, - {0.299923f,-0.0260568f,0.119113f},{0.299243f,-0.0255538f,0.119113f},{0.276076f,-0.00675606f,0.119113f}, - {0.276556f,-0.00674437f,0.119113f},{0.276465f,-0.00806637f,0.119113f},{0.303334f,-0.0255539f,0.119113f}, - {0.295839f,-0.0255265f,0.10513f},{0.297181f,-0.0257766f,0.10513f},{0.298538f,-0.0259565f,0.10513f}, - {0.291931f,-0.0243666f,0.10513f},{0.294515f,-0.0252075f,0.10513f},{0.287092f,-0.0219036f,0.10513f}, - {0.288254f,-0.0226143f,0.10513f},{0.28945f,-0.0232624f,0.10513f},{0.290676f,-0.0238468f,0.10513f}, - {0.283834f,-0.0194069f,0.10513f},{0.285967f,-0.0211315f,0.10513f},{0.280157f,-0.0153222f,0.10513f}, - {0.28099f,-0.0164092f,0.10513f},{0.281882f,-0.0174549f,0.10513f},{0.282832f,-0.0184567f,0.10513f}, - {0.278026f,-0.0118391f,0.10513f},{0.279385f,-0.0141964f,0.10513f},{0.276081f,-0.00677408f,0.10513f}, - {0.276468f,-0.00807765f,0.10513f},{0.276922f,-0.00935809f,0.10513f},{0.277442f,-0.0106128f,0.10513f}, - {0.275512f,-0.0041079f,0.10513f},{0.275332f,-0.00275048f,0.10513f},{0.275762f,-0.00544996f,0.10513f}, - {0.275223f,0.00138025f,0.10513f},{0.275187f,4.23508e-018f,0.10513f},{0.275223f,-0.00138032f,0.10513f}, - {0.275762f,0.00544975f,0.10513f},{0.275512f,0.00410773f,0.10513f},{0.275332f,0.00275036f,0.10513f}, - {0.276468f,0.0080774f,0.10513f},{0.276081f,0.00677384f,0.10513f},{0.277442f,0.0106125f,0.10513f}, - {0.278026f,0.0118389f,0.10513f},{0.276922f,0.00935782f,0.10513f},{0.279385f,0.0141962f,0.10513f}, - {0.278674f,0.0130343f,0.10513f},{0.28099f,0.0164091f,0.10513f},{0.280157f,0.015322f,0.10513f}, - {0.282832f,0.0184567f,0.10513f},{0.281882f,0.0174549f,0.10513f},{0.283834f,0.0194069f,0.10513f}, - {0.284879f,0.0202988f,0.10513f},{0.285966f,0.0211314f,0.10513f},{0.287092f,0.0219036f,0.10513f}, - {0.288254f,0.0226142f,0.10513f},{0.289449f,0.0232623f,0.10513f},{0.290676f,0.0238467f,0.10513f}, - {0.29193f,0.0243664f,0.10513f},{0.293211f,0.0248204f,0.10513f},{0.294514f,0.0252074f,0.10513f}, - {0.295839f,0.0255265f,0.10513f},{0.297181f,0.0257765f,0.10513f},{0.298538f,0.0259565f,0.10513f}, - {0.299908f,0.0260652f,0.10513f},{0.278674f,-0.0130346f,0.10513f},{0.284879f,-0.0202989f,0.10513f}, - {0.293211f,-0.0248205f,0.10513f},{0.299908f,-0.0260653f,0.10513f},{0.284864f,-0.013782f,0.10513f}, - {0.288485f,-0.0171983f,0.10513f},{0.292797f,-0.0196871f,0.10513f},{0.297566f,-0.0211136f,0.10513f}, - {0.300042f,-0.0214048f,0.10513f},{0.2988f,-0.0212945f,0.10513f},{0.293956f,-0.0201477f,0.10513f}, - {0.291666f,-0.01916f,0.10513f},{0.290569f,-0.0185682f,0.10513f},{0.289507f,-0.0179136f,0.10513f}, - {0.285693f,-0.0147136f,0.10513f},{0.286575f,-0.0155955f,0.10513f},{0.287507f,-0.0164247f,0.10513f}, - {0.282721f,-0.0107207f,0.10513f},{0.283375f,-0.0117822f,0.10513f},{0.284091f,-0.0128038f,0.10513f}, - {0.282129f,-0.00962296f,0.10513f},{0.281602f,-0.00849262f,0.10513f},{0.281141f,-0.00733354f,0.10513f}, - {0.280749f,-0.00614966f,0.10513f},{0.280426f,-0.00494495f,0.10513f},{0.280174f,-0.00372348f,0.10513f}, - {0.279993f,-0.00248937f,0.10513f},{0.279884f,-0.00124681f,0.10513f},{0.279848f,-1.52221e-017f,0.10513f}, - {0.279884f,0.00124661f,0.10513f},{0.279993f,0.00248903f,0.10513f},{0.280174f,0.00372306f,0.10513f}, - {0.280426f,0.0049445f,0.10513f},{0.280748f,0.00614923f,0.10513f},{0.281141f,0.00733314f,0.10513f}, - {0.281601f,0.00849224f,0.10513f},{0.28272f,0.0107204f,0.10513f},{0.2988f,0.0212927f,0.10513f}, - {0.300041f,0.0214054f,0.10513f},{0.284864f,0.013782f,0.10513f},{0.296343f,0.0208628f,0.10513f}, - {0.295139f,0.0205399f,0.10513f},{0.287507f,0.0164248f,0.10513f},{0.286575f,0.0155957f,0.10513f}, - {0.290568f,0.0185682f,0.10513f},{0.289507f,0.0179135f,0.10513f},{0.288485f,0.0171982f,0.10513f}, - {0.292796f,0.0196873f,0.10513f},{0.293955f,0.0201477f,0.10513f},{0.291666f,0.0191602f,0.10513f}, - {0.297567f,0.0211056f,0.10513f},{0.285693f,0.0147138f,0.10513f},{0.283375f,0.011782f,0.10513f}, - {0.28409f,0.0128037f,0.10513f},{0.282128f,0.0096226f,0.10513f},{0.296344f,-0.02086f,0.10513f}, - {0.295139f,-0.0205402f,0.10513f},{0.296327f,-0.0208587f,0.104198f},{0.297545f,-0.0211115f,0.104198f}, - {0.298781f,-0.0212936f,0.104198f},{0.292798f,-0.019688f,0.104198f},{0.295127f,-0.0205363f,0.104198f}, - {0.288501f,-0.0172102f,0.104198f},{0.289523f,-0.0179243f,0.104198f},{0.290582f,-0.018576f,0.104198f}, - {0.291674f,-0.0191643f,0.104198f},{0.285689f,-0.0147088f,0.104198f},{0.287519f,-0.0164352f,0.104198f}, - {0.282713f,-0.010707f,0.104198f},{0.283364f,-0.0117656f,0.104198f},{0.284078f,-0.0127873f,0.104198f}, - {0.281143f,-0.00733859f,0.104198f},{0.281601f,-0.00849054f,0.104198f},{0.282124f,-0.0096143f,0.104198f}, - {0.279995f,-0.00250813f,0.104198f},{0.280177f,-0.00374334f,0.104198f},{0.28043f,-0.00496208f,0.104198f}, - {0.280752f,-0.00616144f,0.104198f},{0.279848f,-2.06038e-017f,0.104198f},{0.279885f,0.00125925f,0.104198f}, - {0.279885f,-0.00125938f,0.104198f},{0.280177f,0.00374312f,0.104198f},{0.279995f,0.00250793f,0.104198f}, - {0.281143f,0.0073385f,0.104198f},{0.280752f,0.00616138f,0.104198f},{0.28043f,0.00496191f,0.104198f}, - {0.282124f,0.00961408f,0.104198f},{0.281601f,0.00849036f,0.104198f},{0.284078f,0.0127873f,0.104198f}, - {0.283364f,0.0117655f,0.104198f},{0.282713f,0.0107068f,0.104198f},{0.285688f,0.0147082f,0.104198f}, - {0.284853f,0.0137691f,0.104198f},{0.28658f,0.0155998f,0.104198f},{0.287519f,0.0164352f,0.104198f}, - {0.288501f,0.0172102f,0.104198f},{0.289523f,0.0179242f,0.104198f},{0.290582f,0.018576f,0.104198f}, - {0.291674f,0.0191643f,0.104198f},{0.292798f,0.0196879f,0.104198f},{0.29395f,0.0201457f,0.104198f}, - {0.295127f,0.0205363f,0.104198f},{0.297545f,0.0211114f,0.104198f},{0.296326f,0.0208586f,0.104198f}, - {0.29878f,0.0212935f,0.104198f},{0.300029f,0.0214037f,0.104198f},{0.284853f,-0.0137693f,0.104198f}, - {0.28658f,-0.0156004f,0.104198f},{0.29395f,-0.0201457f,0.104198f},{0.300029f,-0.0214037f,0.104198f}, - {0.285399f,-0.0207081f,0.104198f},{0.275187f,2.47615e-017f,0.104198f},{0.275243f,-0.00170747f,0.104198f}, - {0.277174f,-0.0099892f,0.104198f},{0.275689f,-0.00509254f,0.104198f},{0.276076f,-0.00675606f,0.104198f}, - {0.277879f,-0.0115449f,0.104198f},{0.279586f,-0.0145019f,0.104198f},{0.280581f,-0.0158902f,0.104198f}, - {0.294533f,-0.0252123f,0.104198f},{0.296197f,-0.0256001f,0.104198f},{0.299582f,-0.0260375f,0.104198f}, - {0.288238f,-0.022605f,0.104198f},{0.289744f,-0.0234101f,0.104198f},{0.2913f,-0.0241149f,0.104198f}, - {0.292899f,-0.0247164f,0.104198f},{0.286788f,-0.0217031f,0.104198f},{0.282833f,-0.0184572f,0.104198f}, - {0.284079f,-0.0196247f,0.104198f},{0.297882f,-0.0258794f,0.104198f},{0.281665f,-0.0172106f,0.104198f}, - {0.278684f,-0.0130514f,0.104198f},{0.276572f,-0.00839068f,0.104198f},{0.27541f,-0.00340738f,0.104198f}, - {0.275243f,0.00170697f,0.104198f},{0.27541f,0.0034068f,0.104198f},{0.276572f,0.00839024f,0.104198f}, - {0.276076f,0.00675581f,0.104198f},{0.275688f,0.00509225f,0.104198f},{0.277174f,0.00998889f,0.104198f}, - {0.277879f,0.0115449f,0.104198f},{0.278684f,0.0130512f,0.104198f},{0.280581f,0.0158901f,0.104198f}, - {0.279586f,0.0145016f,0.104198f},{0.281664f,0.0172105f,0.104198f},{0.284079f,0.0196248f,0.104198f}, - {0.286787f,0.0217032f,0.104198f},{0.285399f,0.0207084f,0.104198f},{0.288238f,0.0226051f,0.104198f}, - {0.289744f,0.0234102f,0.104198f},{0.297881f,0.0258786f,0.104198f},{0.299581f,0.0260403f,0.104198f}, - {0.296196f,0.0256003f,0.104198f},{0.294533f,0.0252126f,0.104198f},{0.292898f,0.0247167f,0.104198f}, - {0.282832f,0.0184571f,0.104198f},{0.2913f,0.024115f,0.104198f},{0.289869f,0.0197792f,0.101587f}, - {0.288101f,0.0186469f,0.101587f},{0.288937f,0.0213938f,0.103079f},{0.28338f,0.0141739f,0.101587f}, - {0.284829f,0.0158335f,0.101587f},{0.286412f,0.0173289f,0.101587f},{0.278843f,0.00421973f,0.101587f}, - {0.279347f,0.00633871f,0.101587f},{0.280059f,0.00842303f,0.101587f},{0.27845f,6.45552e-018f,0.101587f}, - {0.278546f,0.00209801f,0.101587f},{0.288937f,-0.0213938f,0.103079f},{0.289869f,-0.0197792f,0.101587f}, - {0.291137f,-0.0204589f,0.101587f},{0.292465f,-0.0210659f,0.101587f},{0.293848f,-0.0215929f,0.101587f}, - {0.295277f,-0.0220336f,0.101587f},{0.296745f,-0.0223824f,0.101587f},{0.298242f,-0.022635f,0.101587f}, - {0.29976f,-0.0227878f,0.101587f},{0.294786f,-0.0238322f,0.103079f},{0.296374f,-0.0242096f,0.103079f}, - {0.290308f,-0.0221291f,0.103079f},{0.297994f,-0.0244827f,0.103079f},{0.299636f,-0.0246481f,0.103079f}, - {0.29324f,-0.0233556f,0.103079f},{0.291745f,-0.0227855f,0.103079f},{0.282089f,0.0123693f,0.101587f}, - {0.280977f,0.0104434f,0.101587f},{0.285197f,0.0187434f,0.103079f},{0.276585f,8.86415e-018f,0.103079f}, - {0.27669f,0.00226809f,0.103079f},{0.27701f,0.00456378f,0.103079f},{0.277555f,0.00685491f,0.103079f}, - {0.278326f,0.00910982f,0.103079f},{0.279319f,0.011295f,0.103079f},{0.280521f,0.0133782f,0.103079f}, - {0.281917f,0.0153304f,0.103079f},{0.283484f,0.0171254f,0.103079f},{0.287024f,0.0201689f,0.103079f}, - {0.326888f,-0.00136552f,0.120977f},{0.326779f,-0.00272732f,0.120977f},{0.315039f,-0.0216357f,0.120977f}, - {0.31683f,-0.0203873f,0.120977f},{0.31315f,-0.0227264f,0.120977f},{0.311173f,-0.0236533f,0.120977f}, - {0.291403f,-0.0236531f,0.120977f},{0.289427f,-0.0227263f,0.120977f},{0.285747f,-0.0203871f,0.120977f}, - {0.287538f,-0.0216356f,0.120977f},{0.27598f,-0.0040808f,0.120977f},{0.275798f,-0.00272711f,0.120977f}, - {0.275689f,-0.00136573f,0.120977f},{0.326597f,-0.00408095f,0.120977f},{0.289129f,0.000612842f,0.103265f}, - {0.288547f,0.00232777f,0.103265f},{0.288815f,0.00178369f,0.103265f},{0.28901f,0.00120978f,0.103265f}, - {0.287343f,0.00370055f,0.103265f},{0.288209f,0.0028342f,0.103265f},{0.287805f,0.00329584f,0.103265f}, - {0.285121f,0.00462066f,0.103265f},{0.285718f,0.00450141f,0.103265f},{0.286293f,0.00430621f,0.103265f}, - {0.283896f,0.00462052f,0.103265f},{0.283299f,0.00450127f,0.103265f},{0.284509f,0.00466102f,0.103265f}, - {0.282181f,0.00403818f,0.103265f},{0.282725f,0.00430621f,0.103265f},{0.281213f,0.00329584f,0.103265f}, - {0.281675f,0.00370041f,0.103265f},{0.280808f,0.00283386f,0.103265f},{0.280471f,0.00232743f,0.103265f}, - {0.280203f,0.00178369f,0.103265f},{0.280007f,0.00120944f,0.103265f},{0.279888f,0.000612502f,0.103265f}, - {0.286836f,0.00403832f,0.103265f},{0.291501f,-0.00884266f,0.109791f},{0.291838f,-0.00903773f,0.109791f}, - {0.29113f,-0.00872205f,0.109791f},{0.292128f,-0.00929879f,0.109791f},{0.292357f,-0.00961469f,0.109791f}, - {0.292515f,-0.00997137f,0.109791f},{0.292596f,-0.0103527f,0.109791f},{0.292596f,-0.0107427f,0.109791f}, - {0.292354f,-0.0114796f,0.109791f},{0.292514f,-0.011124f,0.109791f},{0.291836f,-0.0120547f,0.109791f}, - {0.292125f,-0.0117943f,0.109791f},{0.291129f,-0.0123696f,0.109791f},{0.291499f,-0.0122492f,0.109791f}, - {0.314571f,-0.0108202f,0.109791f},{0.314909f,-0.0110152f,0.109791f},{0.314201f,-0.0106996f,0.109791f}, - {0.315199f,-0.0112763f,0.109791f},{0.315428f,-0.0115922f,0.109791f},{0.315586f,-0.0119489f,0.109791f}, - {0.315667f,-0.0123302f,0.109791f},{0.315667f,-0.0127202f,0.109791f},{0.315425f,-0.0134571f,0.109791f}, - {0.315585f,-0.0131015f,0.109791f},{0.314907f,-0.0140322f,0.109791f},{0.315196f,-0.0137718f,0.109791f}, - {0.3142f,-0.0143471f,0.109791f},{0.31457f,-0.0142268f,0.109791f},{0.312594f,0.0122507f,0.109791f}, - {0.312932f,0.0120557f,0.109791f},{0.312223f,0.0123713f,0.109791f},{0.313222f,0.0117946f,0.109791f}, - {0.313451f,0.0114787f,0.109791f},{0.313609f,0.011122f,0.109791f},{0.313689f,0.0107407f,0.109791f}, - {0.313689f,0.0103507f,0.109791f},{0.313448f,0.00961383f,0.109791f},{0.313607f,0.00996936f,0.109791f}, - {0.312929f,0.00903866f,0.109791f},{0.313219f,0.00929907f,0.109791f},{0.312222f,0.00872375f,0.109791f}, - {0.312592f,0.00884413f,0.109791f},{0.289523f,0.0142282f,0.109791f},{0.289861f,0.0140332f,0.109791f}, - {0.289152f,0.0143488f,0.109791f},{0.290151f,0.0137721f,0.109791f},{0.29038f,0.0134562f,0.109791f}, - {0.290538f,0.0130995f,0.109791f},{0.290619f,0.0127182f,0.109791f},{0.290618f,0.0123282f,0.109791f}, - {0.290377f,0.0115913f,0.109791f},{0.290536f,0.0119469f,0.109791f},{0.289858f,0.0110162f,0.109791f}, - {0.290148f,0.0112766f,0.109791f},{0.289151f,0.0107013f,0.109791f},{0.289521f,0.0108216f,0.109791f}, - {0.300676f,-0.0121592f,0.103265f},{0.298961f,-0.0127415f,0.103265f},{0.300079f,-0.0122784f,0.103265f}, - {0.299505f,-0.0124735f,0.103265f},{0.297588f,-0.0139458f,0.103265f},{0.29725f,-0.0144523f,0.103265f}, - {0.297993f,-0.0134838f,0.103265f},{0.296668f,-0.0161672f,0.103265f},{0.296982f,-0.014996f,0.103265f}, - {0.296787f,-0.0155702f,0.103265f},{0.296787f,-0.0179895f,0.103265f},{0.296628f,-0.0167797f,0.103265f}, - {0.296668f,-0.0173925f,0.103265f},{0.29725f,-0.0191075f,0.103265f},{0.297588f,-0.0196139f,0.103265f}, - {0.296982f,-0.0185634f,0.103265f},{0.297993f,-0.0200755f,0.103265f},{0.298455f,-0.0204802f,0.103265f}, - {0.298961f,-0.020818f,0.103265f},{0.299505f,-0.0210859f,0.103265f},{0.300079f,-0.0212811f,0.103265f}, - {0.300676f,-0.0214003f,0.103265f},{0.298454f,-0.0130793f,0.103265f},{0.313448f,-0.000612842f,0.103265f}, - {0.31403f,-0.00232777f,0.103265f},{0.313762f,-0.00178369f,0.103265f},{0.313567f,-0.00120978f,0.103265f}, - {0.315234f,-0.00370055f,0.103265f},{0.314368f,-0.0028342f,0.103265f},{0.314772f,-0.00329584f,0.103265f}, - {0.317456f,-0.00462066f,0.103265f},{0.316859f,-0.00450141f,0.103265f},{0.316285f,-0.00430621f,0.103265f}, - {0.319278f,-0.00450127f,0.103265f},{0.318681f,-0.00462052f,0.103265f},{0.318068f,-0.00466102f,0.103265f}, - {0.320396f,-0.00403818f,0.103265f},{0.319852f,-0.00430621f,0.103265f},{0.321364f,-0.00329584f,0.103265f}, - {0.320902f,-0.00370041f,0.103265f},{0.321769f,-0.00283386f,0.103265f},{0.322107f,-0.00232743f,0.103265f}, - {0.322374f,-0.00178369f,0.103265f},{0.32257f,-0.00120944f,0.103265f},{0.322689f,-0.000612502f,0.103265f}, - {0.315741f,-0.00403832f,0.103265f},{0.301901f,0.0121592f,0.103265f},{0.303616f,0.0127415f,0.103265f}, - {0.303072f,0.0124735f,0.103265f},{0.302498f,0.0122784f,0.103265f},{0.304989f,0.0139458f,0.103265f}, - {0.304123f,0.0130793f,0.103265f},{0.304584f,0.0134838f,0.103265f},{0.305909f,0.0161672f,0.103265f}, - {0.30579f,0.0155702f,0.103265f},{0.305595f,0.014996f,0.103265f},{0.305909f,0.0173925f,0.103265f}, - {0.30579f,0.0179895f,0.103265f},{0.30595f,0.0167797f,0.103265f},{0.305327f,0.0191075f,0.103265f}, - {0.305595f,0.0185634f,0.103265f},{0.304584f,0.0200755f,0.103265f},{0.304989f,0.0196139f,0.103265f}, - {0.304122f,0.0204802f,0.103265f},{0.303616f,0.020818f,0.103265f},{0.303072f,0.0210859f,0.103265f}, - {0.302498f,0.0212811f,0.103265f},{0.301901f,0.0214003f,0.103265f},{0.305327f,0.0144523f,0.103265f}, - {0.312708f,-0.0197792f,0.103265f},{0.31077f,-0.0207778f,0.103265f},{0.304545f,-0.0226057f,0.103265f}, - {0.308754f,-0.0215843f,0.103265f},{0.298032f,-0.0226056f,0.103265f},{0.302379f,-0.022813f,0.103265f}, - {0.300197f,-0.0228129f,0.103265f},{0.293823f,-0.0215842f,0.103265f},{0.295902f,-0.0221948f,0.103265f}, - {0.291806f,-0.0207777f,0.103265f},{0.289869f,-0.0197792f,0.103265f},{0.306674f,-0.0221949f,0.103265f}, - {0.31364f,-0.0213938f,0.103265f},{0.288937f,-0.0213938f,0.103265f},{0.291033f,-0.022474f,0.103265f}, - {0.297767f,-0.0244511f,0.103265f},{0.293213f,-0.0233463f,0.103265f},{0.304811f,-0.024451f,0.103265f}, - {0.300109f,-0.0246752f,0.103265f},{0.302469f,-0.0246752f,0.103265f},{0.309364f,-0.0233462f,0.103265f}, - {0.311545f,-0.0224738f,0.103265f},{0.307114f,-0.0240066f,0.103265f},{0.295463f,-0.0240067f,0.103265f}, - {0.314542f,0.0186002f,0.103265f},{0.312708f,0.0197792f,0.103265f},{0.319238f,0.0141228f,0.103265f}, - {0.317817f,0.0157616f,0.103265f},{0.316248f,0.0172577f,0.103265f},{0.321591f,0.0104612f,0.103265f}, - {0.322494f,0.00848256f,0.103265f},{0.3205f,0.0123508f,0.103265f},{0.323714f,0.00432634f,0.103265f}, - {0.323203f,0.00643279f,0.103265f},{0.324024f,0.00217707f,0.103265f},{0.324128f,-1.5323e-017f,0.103265f}, - {0.31364f,0.0213938f,0.103265f},{0.325992f,-1.67506e-017f,0.103265f},{0.325879f,0.00235542f,0.103265f}, - {0.324225f,0.00917539f,0.103265f},{0.324992f,0.0069585f,0.103265f},{0.325545f,0.00467972f,0.103265f}, - {0.322068f,0.01336f,0.103265f},{0.320703f,0.015276f,0.103265f},{0.323248f,0.0113162f,0.103265f}, - {0.319166f,0.0170487f,0.103265f},{0.317469f,0.0186667f,0.103265f},{0.315623f,0.020119f,0.103265f}, - {0.278554f,0.00217765f,0.103265f},{0.27845f,2.16517e-018f,0.103265f},{0.280083f,0.00848291f,0.103265f}, - {0.279374f,0.00643333f,0.103265f},{0.278863f,0.00432654f,0.103265f},{0.282078f,0.0123517f,0.103265f}, - {0.28334f,0.0141231f,0.103265f},{0.280987f,0.0104622f,0.103265f},{0.286329f,0.0172579f,0.103265f}, - {0.28476f,0.015762f,0.103265f},{0.288036f,0.0186006f,0.103265f},{0.289869f,0.0197792f,0.103265f}, - {0.276585f,1.02508e-017f,0.103265f},{0.288937f,0.0213938f,0.103265f},{0.286953f,0.0201186f,0.103265f}, - {0.281874f,0.0152757f,0.103265f},{0.283411f,0.0170482f,0.103265f},{0.285108f,0.0186665f,0.103265f}, - {0.279329f,0.0113151f,0.103265f},{0.278352f,0.00917501f,0.103265f},{0.280509f,0.013359f,0.103265f}, - {0.277585f,0.00695792f,0.103265f},{0.277032f,0.00467951f,0.103265f},{0.276698f,0.00235479f,0.103265f}, - {0.298535f,-0.000488516f,0.0976722f},{0.299146f,-0.00179767f,0.0976722f},{0.298866f,-0.00139727f,0.0976722f}, - {0.298661f,-0.000957717f,0.0976722f},{0.300332f,-0.00262801f,0.0976722f},{0.300801f,-0.00275376f,0.0976722f}, - {0.299493f,-0.00214411f,0.0976722f},{0.299893f,-0.00242333f,0.0976722f},{0.302246f,-0.00262748f,0.0976722f}, - {0.301777f,-0.00275356f,0.0976722f},{0.301289f,-0.00279661f,0.0976722f},{0.303086f,-0.00214219f,0.0976722f}, - {0.302686f,-0.00242266f,0.0976722f},{0.303433f,-0.00179504f,0.0976722f},{0.303712f,-0.00139564f,0.0976722f}, - {0.303917f,-0.000956449f,0.0976722f},{0.304042f,-0.000488516f,0.0976722f},{0.318698f,-0.00122594f,0.120977f}, - {0.318576f,-0.00061944f,0.120977f},{0.318534f,2.3413e-019f,0.120977f},{0.318901f,-0.0018111f,0.120977f}, - {0.319529f,-0.00287862f,0.120977f},{0.31918f,-0.00236645f,0.120977f},{0.319943f,-0.00333866f,0.120977f}, - {0.320415f,-0.00374077f,0.120977f},{0.320937f,-0.00407752f,0.120977f},{0.321498f,-0.00434093f,0.120977f}, - {0.322088f,-0.00452747f,0.120977f},{0.322699f,-0.00463457f,0.120977f},{0.318576f,0.000619763f,0.120977f}, - {0.318698f,0.00122605f,0.120977f},{0.318901f,0.00181151f,0.120977f},{0.31918f,0.00236685f,0.120977f}, - {0.31953f,0.00287881f,0.120977f},{0.319943f,0.00333885f,0.120977f},{0.320415f,0.00374104f,0.120977f}, - {0.320938f,0.00407771f,0.120977f},{0.321498f,0.00434097f,0.120977f},{0.322088f,0.00452758f,0.120977f}, - {0.322699f,0.00463457f,0.120977f},{0.308905f,0.00708542f,0.120977f},{0.309508f,0.00862355f,0.120977f}, - {0.309231f,0.0081433f,0.120977f},{0.309029f,0.00762768f,0.120977f},{0.31073f,0.00975654f,0.120977f}, - {0.309858f,0.00906182f,0.120977f},{0.31027f,0.00944325f,0.120977f},{0.312873f,0.0102431f,0.120977f}, - {0.312313f,0.0102438f,0.120977f},{0.311758f,0.0101602f,0.120977f},{0.313954f,0.0099962f,0.120977f}, - {0.313425f,0.0101597f,0.120977f},{0.314916f,0.00944071f,0.120977f},{0.315326f,0.00905963f,0.120977f}, - {0.314454f,0.00975564f,0.120977f},{0.315674f,0.00862291f,0.120977f},{0.315951f,0.0081413f,0.120977f}, - {0.316154f,0.00762524f,0.120977f},{0.316277f,0.00708542f,0.120977f},{0.311229f,0.00999655f,0.120977f}, - {0.308787f,0.000388892f,0.120977f},{0.309364f,0.0013863f,0.120977f},{0.308908f,0.000758756f,0.120977f}, - {0.310416f,0.00185425f,0.120977f},{0.309679f,0.00161492f,0.120977f},{0.310035f,0.0017734f,0.120977f}, - {0.311188f,0.00177278f,0.120977f},{0.311543f,0.0016145f,0.120977f},{0.310806f,0.00185398f,0.120977f}, - {0.311859f,0.00138471f,0.120977f},{0.312119f,0.00109509f,0.120977f},{0.312314f,0.000757801f,0.120977f}, - {0.312434f,0.000387896f,0.120977f},{0.309103f,0.00109643f,0.120977f},{0.307612f,0.0184341f,0.120977f}, - {0.307586f,0.019053f,0.120977f},{0.307641f,0.0196708f,0.120977f},{0.307724f,0.0178247f,0.120977f}, - {0.307916f,0.0172353f,0.120977f},{0.308185f,0.0166765f,0.120977f},{0.308526f,0.0161585f,0.120977f}, - {0.309911f,0.0149353f,0.120977f},{0.310468f,0.0146616f,0.120977f},{0.308932f,0.0156903f,0.120977f}, - {0.309397f,0.0152802f,0.120977f},{0.311664f,0.0143468f,0.120977f},{0.312283f,0.0143112f,0.120977f}, - {0.31561f,0.0157495f,0.120977f},{0.315151f,0.015333f,0.120977f},{0.313508f,0.0144863f,0.120977f}, - {0.314092f,0.0146944f,0.120977f},{0.314643f,0.0149788f,0.120977f},{0.316008f,0.0162251f,0.120977f}, - {0.312901f,0.014358f,0.120977f},{0.311056f,0.0144643f,0.120977f},{0.307765f,0.0202771f,0.120977f}, - {0.30798f,0.0208597f,0.120977f},{0.29896f,0.0101384f,0.120977f},{0.29793f,0.0114304f,0.120977f}, - {0.298208f,0.0109503f,0.120977f},{0.298553f,0.0105172f,0.120977f},{0.29756f,0.0130549f,0.120977f}, - {0.297725f,0.011952f,0.120977f},{0.297601f,0.0124996f,0.120977f},{0.29821f,0.0151544f,0.120977f}, - {0.297929f,0.0146689f,0.120977f},{0.297725f,0.0141474f,0.120977f},{0.298964f,0.0159666f,0.120977f}, - {0.298558f,0.01559f,0.120977f},{0.299926f,0.0165217f,0.120977f},{0.300461f,0.0166864f,0.120977f}, - {0.299423f,0.0162794f,0.120977f},{0.301014f,0.0167695f,0.120977f},{0.301569f,0.016769f,0.120977f}, - {0.302118f,0.0166865f,0.120977f},{0.302647f,0.0165233f,0.120977f},{0.297601f,0.0136068f,0.120977f}, - {0.304701f,0.00668844f,0.120977f},{0.304126f,0.00768651f,0.120977f},{0.304441f,0.00697788f,0.120977f}, - {0.304247f,0.00883213f,0.120977f},{0.304085f,0.00807381f,0.120977f},{0.304126f,0.0084617f,0.120977f}, - {0.304703f,0.00945932f,0.120977f},{0.305018f,0.00968801f,0.120977f},{0.304442f,0.00916954f,0.120977f}, - {0.305374f,0.00984652f,0.120977f},{0.305755f,0.00992735f,0.120977f},{0.306145f,0.00992722f,0.120977f}, - {0.306526f,0.00984624f,0.120977f},{0.304246f,0.00731557f,0.120977f},{0.287937f,0.0149805f,0.120977f}, - {0.28743f,0.0153371f,0.120977f},{0.293646f,0.0156909f,0.120977f},{0.293181f,0.0152805f,0.120977f}, - {0.294052f,0.0161593f,0.120977f},{0.292666f,0.0149353f,0.120977f},{0.294392f,0.0166773f,0.120977f}, - {0.29466f,0.0172358f,0.120977f},{0.294853f,0.0178252f,0.120977f},{0.29211f,0.0146618f,0.120977f}, - {0.291522f,0.0144645f,0.120977f},{0.294964f,0.0184349f,0.120977f},{0.290913f,0.0143468f,0.120977f}, - {0.294994f,0.0190544f,0.120977f},{0.29481f,0.0202777f,0.120977f},{0.294941f,0.0196718f,0.120977f}, - {0.290295f,0.0143109f,0.120977f},{0.294597f,0.0208597f,0.120977f},{0.289676f,0.0143575f,0.120977f}, - {0.288486f,0.0146931f,0.120977f},{0.28907f,0.0144856f,0.120977f},{0.286966f,0.0157476f,0.120977f}, - {0.286569f,0.0162251f,0.120977f},{0.291344f,0.00305297f,0.120977f},{0.28971f,0.00280688f,0.120977f}, - {0.290265f,0.00280698f,0.120977f},{0.290813f,0.00288948f,0.120977f},{0.288118f,0.00329833f,0.120977f}, - {0.289156f,0.00289017f,0.120977f},{0.28862f,0.00305631f,0.120977f},{0.286625f,0.00491125f,0.120977f}, - {0.286905f,0.00442515f,0.120977f},{0.287255f,0.00398713f,0.120977f},{0.286299f,0.00597044f,0.120977f}, - {0.286422f,0.00543021f,0.120977f},{0.286299f,0.00708102f,0.120977f},{0.286424f,0.00762679f,0.120977f}, - {0.286257f,0.00652376f,0.120977f},{0.286628f,0.0081466f,0.120977f},{0.286907f,0.00862774f,0.120977f}, - {0.287252f,0.00906124f,0.120977f},{0.287658f,0.00943791f,0.120977f},{0.287661f,0.00361021f,0.120977f}, - {0.297203f,0.0062997f,0.120977f},{0.29605f,0.00630037f,0.120977f},{0.296822f,0.00621894f,0.120977f}, - {0.295119f,0.0069779f,0.120977f},{0.295695f,0.00645888f,0.120977f},{0.295379f,0.0066883f,0.120977f}, - {0.294804f,0.00768661f,0.120977f},{0.294763f,0.00807365f,0.120977f},{0.294924f,0.00731544f,0.120977f}, - {0.294804f,0.00846171f,0.120977f},{0.294925f,0.00883217f,0.120977f},{0.29512f,0.00916947f,0.120977f}, - {0.29538f,0.00945876f,0.120977f},{0.296432f,0.00621907f,0.120977f},{0.283398f,-0.0023656f,0.120977f}, - {0.283676f,-0.00181168f,0.120977f},{0.283048f,-0.00287783f,0.120977f},{0.282634f,-0.00333905f,0.120977f}, - {0.282163f,-0.00374099f,0.120977f},{0.283879f,-0.00122583f,0.120977f},{0.281639f,-0.00407246f,0.120977f}, - {0.284002f,-0.000618365f,0.120977f},{0.284043f,7.02945e-018f,0.120977f},{0.284001f,0.000618856f,0.120977f}, - {0.283878f,0.00122657f,0.120977f},{0.283676f,0.00181243f,0.120977f},{0.283397f,0.00236609f,0.120977f}, - {0.283048f,0.00287783f,0.120977f},{0.282634f,0.00333893f,0.120977f},{0.282161f,0.00374048f,0.120977f}, - {0.281639f,0.00407552f,0.120977f},{0.281079f,0.00433883f,0.120977f},{0.280488f,0.0045282f,0.120977f}, - {0.279878f,0.00463457f,0.120977f},{0.28049f,-0.00452954f,0.120977f},{0.281077f,-0.00433369f,0.120977f}, - {0.279878f,-0.00463457f,0.120977f},{0.293673f,-0.00708542f,0.120977f},{0.293069f,-0.00862355f,0.120977f}, - {0.293346f,-0.0081433f,0.120977f},{0.293548f,-0.00762768f,0.120977f},{0.291847f,-0.00975654f,0.120977f}, - {0.292719f,-0.00906182f,0.120977f},{0.292307f,-0.00944325f,0.120977f},{0.289704f,-0.0102431f,0.120977f}, - {0.290265f,-0.0102438f,0.120977f},{0.290819f,-0.0101602f,0.120977f},{0.288623f,-0.0099962f,0.120977f}, - {0.289153f,-0.0101597f,0.120977f},{0.287661f,-0.00944071f,0.120977f},{0.287251f,-0.00905963f,0.120977f}, - {0.288123f,-0.00975564f,0.120977f},{0.286903f,-0.00862291f,0.120977f},{0.286626f,-0.0081413f,0.120977f}, - {0.286423f,-0.00762524f,0.120977f},{0.2863f,-0.00708542f,0.120977f},{0.291348f,-0.00999655f,0.120977f}, - {0.29379f,-0.000388892f,0.120977f},{0.293213f,-0.0013863f,0.120977f},{0.29367f,-0.000758756f,0.120977f}, - {0.292161f,-0.00185425f,0.120977f},{0.292898f,-0.00161492f,0.120977f},{0.292542f,-0.0017734f,0.120977f}, - {0.291389f,-0.00177278f,0.120977f},{0.291034f,-0.0016145f,0.120977f},{0.291771f,-0.00185398f,0.120977f}, - {0.290718f,-0.00138471f,0.120977f},{0.290458f,-0.00109509f,0.120977f},{0.290263f,-0.000757801f,0.120977f}, - {0.290143f,-0.000387896f,0.120977f},{0.293474f,-0.00109643f,0.120977f},{0.294991f,-0.019053f,0.120977f}, - {0.294965f,-0.0184341f,0.120977f},{0.286569f,-0.0162251f,0.120977f},{0.294853f,-0.0178247f,0.120977f}, - {0.294936f,-0.0196708f,0.120977f},{0.294661f,-0.0172353f,0.120977f},{0.294392f,-0.0166765f,0.120977f}, - {0.293645f,-0.0156903f,0.120977f},{0.293181f,-0.0152802f,0.120977f},{0.294051f,-0.0161585f,0.120977f}, - {0.290913f,-0.0143468f,0.120977f},{0.290294f,-0.0143112f,0.120977f},{0.292666f,-0.0149353f,0.120977f}, - {0.292109f,-0.0146616f,0.120977f},{0.286967f,-0.0157495f,0.120977f},{0.287426f,-0.015333f,0.120977f}, - {0.289069f,-0.0144863f,0.120977f},{0.288486f,-0.0146944f,0.120977f},{0.287935f,-0.0149788f,0.120977f}, - {0.289676f,-0.014358f,0.120977f},{0.291521f,-0.0144643f,0.120977f},{0.294812f,-0.0202771f,0.120977f}, - {0.294597f,-0.0208597f,0.120977f},{0.303617f,-0.0101384f,0.120977f},{0.304647f,-0.0114304f,0.120977f}, - {0.304369f,-0.0109503f,0.120977f},{0.304024f,-0.0105172f,0.120977f},{0.305017f,-0.0130549f,0.120977f}, - {0.304852f,-0.011952f,0.120977f},{0.304976f,-0.0124996f,0.120977f},{0.304367f,-0.0151544f,0.120977f}, - {0.304648f,-0.0146689f,0.120977f},{0.304853f,-0.0141474f,0.120977f},{0.303613f,-0.0159666f,0.120977f}, - {0.304019f,-0.01559f,0.120977f},{0.302651f,-0.0165217f,0.120977f},{0.302116f,-0.0166864f,0.120977f}, - {0.303154f,-0.0162794f,0.120977f},{0.301564f,-0.0167695f,0.120977f},{0.301008f,-0.016769f,0.120977f}, - {0.300459f,-0.0166865f,0.120977f},{0.29993f,-0.0165233f,0.120977f},{0.304976f,-0.0136068f,0.120977f}, - {0.297876f,-0.00668858f,0.120977f},{0.298451f,-0.00768692f,0.120977f},{0.298136f,-0.00697763f,0.120977f}, - {0.29833f,-0.00883211f,0.120977f},{0.298492f,-0.00807384f,0.120977f},{0.298451f,-0.00846133f,0.120977f}, - {0.297874f,-0.00945929f,0.120977f},{0.297559f,-0.00968796f,0.120977f},{0.298135f,-0.00916975f,0.120977f}, - {0.297203f,-0.00984651f,0.120977f},{0.296822f,-0.00992734f,0.120977f},{0.296432f,-0.00992724f,0.120977f}, - {0.296052f,-0.00984636f,0.120977f},{0.298331f,-0.00731545f,0.120977f},{0.308931f,-0.0156909f,0.120977f}, - {0.308525f,-0.0161593f,0.120977f},{0.309396f,-0.0152805f,0.120977f},{0.309911f,-0.0149353f,0.120977f}, - {0.308185f,-0.0166773f,0.120977f},{0.307917f,-0.0172358f,0.120977f},{0.307724f,-0.0178252f,0.120977f}, - {0.310468f,-0.0146618f,0.120977f},{0.307613f,-0.0184349f,0.120977f},{0.307584f,-0.0190544f,0.120977f}, - {0.311055f,-0.0144645f,0.120977f},{0.307636f,-0.0196718f,0.120977f},{0.311664f,-0.0143468f,0.120977f}, - {0.312283f,-0.0143109f,0.120977f},{0.307767f,-0.0202777f,0.120977f},{0.30798f,-0.0208597f,0.120977f}, - {0.312901f,-0.0143575f,0.120977f},{0.314091f,-0.0146931f,0.120977f},{0.313507f,-0.0144856f,0.120977f}, - {0.31464f,-0.0149805f,0.120977f},{0.315148f,-0.0153371f,0.120977f},{0.315611f,-0.0157476f,0.120977f}, - {0.316008f,-0.0162251f,0.120977f},{0.311233f,-0.00305297f,0.120977f},{0.312867f,-0.00280688f,0.120977f}, - {0.312312f,-0.00280698f,0.120977f},{0.311764f,-0.00288948f,0.120977f},{0.314459f,-0.00329833f,0.120977f}, - {0.313421f,-0.00289017f,0.120977f},{0.313957f,-0.00305631f,0.120977f},{0.315952f,-0.00491125f,0.120977f}, - {0.315672f,-0.00442515f,0.120977f},{0.315323f,-0.00398713f,0.120977f},{0.316278f,-0.00597044f,0.120977f}, - {0.316155f,-0.00543021f,0.120977f},{0.316278f,-0.00708102f,0.120977f},{0.316153f,-0.00762679f,0.120977f}, - {0.31632f,-0.00652376f,0.120977f},{0.315949f,-0.0081466f,0.120977f},{0.315671f,-0.00862774f,0.120977f}, - {0.315325f,-0.00906124f,0.120977f},{0.314919f,-0.00943791f,0.120977f},{0.314916f,-0.00361021f,0.120977f}, - {0.305375f,-0.0062997f,0.120977f},{0.306527f,-0.00630037f,0.120977f},{0.305755f,-0.00621894f,0.120977f}, - {0.307458f,-0.0069779f,0.120977f},{0.306882f,-0.00645888f,0.120977f},{0.307198f,-0.0066883f,0.120977f}, - {0.307773f,-0.00768661f,0.120977f},{0.307814f,-0.00807365f,0.120977f},{0.307653f,-0.00731544f,0.120977f}, - {0.307773f,-0.00846171f,0.120977f},{0.307652f,-0.00883217f,0.120977f},{0.307458f,-0.00916947f,0.120977f}, - {0.307197f,-0.00945876f,0.120977f},{0.306145f,-0.00621907f,0.120977f},{0.305909f,-0.000612842f,0.126571f}, - {0.305327f,-0.00232777f,0.126571f},{0.30579f,-0.00120978f,0.126571f},{0.304122f,-0.00370055f,0.126571f}, - {0.303616f,-0.00403832f,0.126571f},{0.304584f,-0.00329584f,0.126571f},{0.301901f,-0.00462066f,0.126571f}, - {0.303072f,-0.00430621f,0.126571f},{0.302498f,-0.00450141f,0.126571f},{0.300079f,-0.00450127f,0.126571f}, - {0.301289f,-0.00466102f,0.126571f},{0.300676f,-0.00462052f,0.126571f},{0.298961f,-0.00403818f,0.126571f}, - {0.298454f,-0.00370041f,0.126571f},{0.299505f,-0.00430621f,0.126571f},{0.297993f,-0.00329584f,0.126571f}, - {0.297588f,-0.00283386f,0.126571f},{0.29725f,-0.00232743f,0.126571f},{0.296982f,-0.00178369f,0.126571f}, - {0.296787f,-0.00120944f,0.126571f},{0.296668f,-0.000612502f,0.126571f},{0.304989f,-0.0028342f,0.126571f}, - {0.305595f,-0.00178369f,0.126571f},{0.299891f,-0.00241971f,0.126571f},{0.298535f,-0.000484912f,0.126571f}, - {0.298867f,-0.00139723f,0.126571f},{0.299147f,-0.00179629f,0.126571f},{0.298661f,-0.000955369f,0.126571f}, - {0.299492f,-0.00214016f,0.126571f},{0.300332f,-0.00262702f,0.126571f},{0.300803f,-0.00275405f,0.126571f}, - {0.301289f,-0.00279661f,0.126571f},{0.302244f,-0.0026284f,0.126571f},{0.301774f,-0.00275426f,0.126571f}, - {0.302684f,-0.00241949f,0.126571f},{0.304044f,-0.000485989f,0.126571f},{0.303078f,-0.00213198f,0.126571f}, - {0.303917f,-0.000957231f,0.126571f},{0.303711f,-0.00139896f,0.126571f},{0.303432f,-0.0018009f,0.126571f}, - {0.298533f,-0.000485989f,0.134028f},{0.29866f,-0.000957231f,0.134028f},{0.298866f,-0.00139896f,0.134028f}, - {0.299145f,-0.0018009f,0.134028f},{0.299499f,-0.00213198f,0.134028f},{0.299894f,-0.00241949f,0.134028f}, - {0.300333f,-0.0026284f,0.134028f},{0.300803f,-0.00275426f,0.134028f},{0.301289f,-0.00279661f,0.134028f}, - {0.301774f,-0.00275405f,0.134028f},{0.303085f,-0.00214016f,0.134028f},{0.303916f,-0.000955369f,0.134028f}, - {0.302245f,-0.00262702f,0.134028f},{0.302686f,-0.00241971f,0.134028f},{0.30343f,-0.00179629f,0.134028f}, - {0.30371f,-0.00139723f,0.134028f},{0.304042f,-0.000484912f,0.134028f},{5.39634e-017f,-0.298492f,0.127503f}, - {5.05671e-017f,-0.298492f,0.13496f},{0.000488516f,-0.298535f,0.13496f},{0.000957717f,-0.298661f,0.13496f}, - {0.00048723f,-0.298535f,0.127503f},{0.000956449f,-0.298661f,0.127503f},{0.00139564f,-0.298865f,0.127503f}, - {0.00179504f,-0.299144f,0.127503f},{0.00139727f,-0.298866f,0.13496f},{0.00179767f,-0.299146f,0.13496f}, - {0.00214219f,-0.299491f,0.127503f},{0.00214411f,-0.299493f,0.13496f},{0.00242266f,-0.299891f,0.127503f}, - {0.00262748f,-0.300331f,0.127503f},{0.00242333f,-0.299893f,0.13496f},{0.00262801f,-0.300332f,0.13496f}, - {0.00275356f,-0.3008f,0.127503f},{0.00275356f,-0.3008f,0.13496f},{0.00279661f,-0.301289f,0.13496f}, - {0.00279661f,-0.301289f,0.127503f},{-0.000488516f,-0.298535f,0.127503f},{-0.000957717f,-0.298661f,0.127503f}, - {-0.00048723f,-0.298535f,0.13496f},{-0.00139564f,-0.298865f,0.13496f},{-0.000956449f,-0.298661f,0.13496f}, - {-0.00139727f,-0.298866f,0.127503f},{-0.00179504f,-0.299144f,0.13496f},{-0.00179767f,-0.299146f,0.127503f}, - {-0.00214219f,-0.299491f,0.13496f},{-0.00242266f,-0.299891f,0.13496f},{-0.00214411f,-0.299493f,0.127503f}, - {-0.00242333f,-0.299893f,0.127503f},{-0.00262748f,-0.300331f,0.13496f},{-0.00262801f,-0.300332f,0.127503f}, - {-0.00275356f,-0.3008f,0.13496f},{-0.00275356f,-0.3008f,0.127503f},{-0.00279661f,-0.301289f,0.127503f}, - {-0.00279661f,-0.301289f,0.13496f},{4.80219e-017f,-0.296628f,0.125638f},{5.09198e-017f,-0.296628f,0.127503f}, - {0.000612842f,-0.296668f,0.127503f},{0.00120978f,-0.296787f,0.127503f},{0.000612502f,-0.296668f,0.125638f}, - {0.00178369f,-0.296982f,0.127503f},{0.00120944f,-0.296787f,0.125638f},{0.00178369f,-0.296982f,0.125638f}, - {0.00232777f,-0.29725f,0.127503f},{0.0028342f,-0.297588f,0.127503f},{0.00232743f,-0.29725f,0.125638f}, - {0.00329584f,-0.297993f,0.127503f},{0.00283386f,-0.297588f,0.125638f},{0.00329584f,-0.297993f,0.125638f}, - {0.00370055f,-0.298455f,0.127503f},{0.00403832f,-0.298961f,0.127503f},{0.00370041f,-0.298454f,0.125638f}, - {0.00430621f,-0.299505f,0.127503f},{0.00403818f,-0.298961f,0.125638f},{0.00450127f,-0.300079f,0.125638f}, - {0.00430621f,-0.299505f,0.125638f},{0.00450141f,-0.300079f,0.127503f},{0.00462052f,-0.300676f,0.125638f}, - {0.00462066f,-0.300676f,0.127503f},{0.00466102f,-0.301289f,0.125638f},{0.00466102f,-0.301289f,0.127503f}, - {-0.000612842f,-0.296668f,0.125638f},{-0.00120978f,-0.296787f,0.125638f},{-0.000612502f,-0.296668f,0.127503f}, - {-0.00120944f,-0.296787f,0.127503f},{-0.00178369f,-0.296982f,0.125638f},{-0.00232777f,-0.29725f,0.125638f}, - {-0.00178369f,-0.296982f,0.127503f},{-0.0028342f,-0.297588f,0.125638f},{-0.00232743f,-0.29725f,0.127503f}, - {-0.00283386f,-0.297588f,0.127503f},{-0.00329584f,-0.297993f,0.125638f},{-0.00370055f,-0.298455f,0.125638f}, - {-0.00329584f,-0.297993f,0.127503f},{-0.00403832f,-0.298961f,0.125638f},{-0.00370041f,-0.298454f,0.127503f}, - {-0.00403818f,-0.298961f,0.127503f},{-0.00430621f,-0.299505f,0.125638f},{-0.00450127f,-0.300079f,0.127503f}, - {-0.00430621f,-0.299505f,0.127503f},{-0.00450141f,-0.300079f,0.125638f},{-0.00462052f,-0.300676f,0.127503f}, - {-0.00466102f,-0.301289f,0.127503f},{-0.00462066f,-0.300676f,0.125638f},{-0.00466102f,-0.301289f,0.125638f}, - {0.00295812f,-0.310121f,0.125638f},{0.00315337f,-0.310458f,0.125638f},{0.00315227f,-0.310457f,0.121909f}, - {0.00295749f,-0.310119f,0.121909f},{0.0028374f,-0.30975f,0.125638f},{0.00283721f,-0.309748f,0.121909f}, - {0.00279657f,-0.309361f,0.121909f},{0.00283728f,-0.308975f,0.125638f},{0.00279668f,-0.309362f,0.125638f}, - {0.0028377f,-0.308973f,0.121909f},{0.00295753f,-0.308604f,0.125638f},{0.00295825f,-0.308603f,0.121909f}, - {0.0031524f,-0.308266f,0.125638f},{0.00315303f,-0.308265f,0.121909f},{0.0034126f,-0.307977f,0.125638f}, - {0.0034133f,-0.307976f,0.121909f},{0.00372882f,-0.307747f,0.121909f},{0.00372882f,-0.307747f,0.125638f}, - {0.00341302f,-0.310747f,0.121909f},{0.00372824f,-0.310976f,0.121909f},{0.0034143f,-0.310748f,0.125638f}, - {0.00372908f,-0.310977f,0.125638f},{0.00408362f,-0.311134f,0.121909f},{0.00408596f,-0.311135f,0.125638f}, - {0.00446544f,-0.311216f,0.121909f},{0.00485544f,-0.311216f,0.121909f},{0.00446705f,-0.311216f,0.125638f}, - {0.00485646f,-0.311216f,0.125638f},{0.00523587f,-0.311135f,0.121909f},{0.00523689f,-0.311135f,0.125638f}, - {0.00559323f,-0.310976f,0.121909f},{0.00559323f,-0.310976f,0.125638f},{0.00794301f,-0.309432f,0.125638f}, - {0.00822403f,-0.309917f,0.125638f},{0.00822143f,-0.309914f,0.121909f},{0.00773834f,-0.30891f,0.125638f}, - {0.00794151f,-0.309428f,0.121909f},{0.00773817f,-0.308909f,0.121909f},{0.00761523f,-0.30837f,0.125638f}, - {0.00761511f,-0.308369f,0.121909f},{0.00757342f,-0.307816f,0.121909f},{0.00757373f,-0.307818f,0.125638f}, - {0.00761488f,-0.307263f,0.125638f},{0.00794445f,-0.306193f,0.121909f},{0.00822146f,-0.305713f,0.125638f}, - {0.00794412f,-0.306194f,0.125638f},{0.00761534f,-0.307258f,0.121909f},{0.00773918f,-0.306715f,0.125638f}, - {0.00774028f,-0.306713f,0.121909f},{0.00822277f,-0.305712f,0.121909f},{0.00856678f,-0.30528f,0.125638f}, - {0.00856839f,-0.305278f,0.121909f},{0.00897424f,-0.304902f,0.121909f},{0.00943797f,-0.304585f,0.125638f}, - {0.00897424f,-0.304902f,0.125638f},{0.00943797f,-0.304585f,0.121909f},{0.00857075f,-0.310352f,0.121909f}, - {0.00897738f,-0.310729f,0.121909f},{0.00857178f,-0.310353f,0.125638f},{0.00897811f,-0.31073f,0.125638f}, - {0.00943459f,-0.311041f,0.121909f},{0.00943645f,-0.311043f,0.125638f},{0.00993607f,-0.311283f,0.121909f}, - {0.0104724f,-0.311449f,0.121909f},{0.00994001f,-0.311285f,0.125638f},{0.0104751f,-0.31145f,0.125638f}, - {0.0110266f,-0.311533f,0.121909f},{0.0110274f,-0.311533f,0.125638f},{0.0115811f,-0.311532f,0.121909f}, - {0.0121288f,-0.31145f,0.121909f},{0.0115832f,-0.311532f,0.125638f},{0.0121315f,-0.31145f,0.125638f}, - {0.0126606f,-0.311286f,0.121909f},{0.0126606f,-0.311286f,0.125638f},{0.0131668f,-0.311043f,0.121909f}, - {0.0131668f,-0.311043f,0.125638f},{-0.00616977f,-0.308266f,0.125638f},{-0.00636455f,-0.308604f,0.125638f}, - {-0.00636392f,-0.308603f,0.121909f},{-0.00616867f,-0.308265f,0.121909f},{-0.00590902f,-0.307976f,0.125638f}, - {-0.00590775f,-0.307976f,0.121909f},{-0.00559297f,-0.307747f,0.121909f},{-0.00523843f,-0.307589f,0.125638f}, - {-0.00559381f,-0.307747f,0.125638f},{-0.00523609f,-0.307588f,0.121909f},{-0.00485661f,-0.307508f,0.125638f}, - {-0.00485499f,-0.307507f,0.121909f},{-0.0044666f,-0.307507f,0.125638f},{-0.00446558f,-0.307508f,0.121909f}, - {-0.00408618f,-0.307588f,0.125638f},{-0.00408515f,-0.307588f,0.121909f},{-0.00372882f,-0.307747f,0.121909f}, - {-0.00372882f,-0.307747f,0.125638f},{-0.00648464f,-0.308973f,0.121909f},{-0.00652537f,-0.309361f,0.121909f}, - {-0.00648484f,-0.308975f,0.125638f},{-0.00652548f,-0.309362f,0.125638f},{-0.00648477f,-0.309748f,0.121909f}, - {-0.00648435f,-0.30975f,0.125638f},{-0.00636452f,-0.310119f,0.121909f},{-0.00616965f,-0.310457f,0.121909f}, - {-0.0063638f,-0.310121f,0.125638f},{-0.00616901f,-0.310458f,0.125638f},{-0.00590945f,-0.310746f,0.121909f}, - {-0.00590875f,-0.310747f,0.125638f},{-0.00559323f,-0.310976f,0.121909f},{-0.00559323f,-0.310976f,0.125638f}, - {-0.00308095f,-0.312239f,0.125638f},{-0.00336087f,-0.312725f,0.125638f},{-0.00335937f,-0.312721f,0.121909f}, - {-0.00273163f,-0.311801f,0.125638f},{-0.00307835f,-0.312236f,0.121909f},{-0.0027306f,-0.3118f,0.121909f}, - {-0.002325f,-0.311424f,0.125638f},{-0.00232427f,-0.311424f,0.121909f},{-0.00186593f,-0.311111f,0.121909f}, - {-0.00186779f,-0.311112f,0.125638f},{-0.00136631f,-0.31087f,0.125638f},{-0.000274996f,-0.310621f,0.121909f}, - {0.0002787f,-0.310621f,0.125638f},{-0.000275788f,-0.310621f,0.125638f},{-0.00136237f,-0.310869f,0.121909f}, - {-0.000829945f,-0.310704f,0.125638f},{-0.000827251f,-0.310704f,0.121909f},{0.000280844f,-0.310621f,0.121909f}, - {0.000826454f,-0.310703f,0.125638f},{0.000829073f,-0.310704f,0.121909f},{0.00135821f,-0.310867f,0.121909f}, - {0.00186441f,-0.31111f,0.125638f},{0.00135821f,-0.310867f,0.125638f},{0.00186441f,-0.31111f,0.121909f}, - {-0.00356405f,-0.313243f,0.121909f},{-0.00368715f,-0.313783f,0.121909f},{-0.00356421f,-0.313244f,0.125638f}, - {-0.00368727f,-0.313784f,0.125638f},{-0.00372865f,-0.314335f,0.121909f},{-0.00372896f,-0.314338f,0.125638f}, - {-0.00368751f,-0.314891f,0.121909f},{-0.0035632f,-0.315438f,0.121909f},{-0.00368704f,-0.314895f,0.125638f}, - {-0.0035621f,-0.315441f,0.125638f},{-0.00335826f,-0.31596f,0.121909f},{-0.00335794f,-0.315961f,0.125638f}, - {-0.00308092f,-0.31644f,0.121909f},{-0.0027356f,-0.316873f,0.121909f},{-0.00307961f,-0.316442f,0.125638f}, - {-0.00273399f,-0.316875f,0.125638f},{-0.00232814f,-0.317252f,0.121909f},{-0.00232814f,-0.317252f,0.125638f}, - {-0.00186441f,-0.317569f,0.121909f},{-0.00186441f,-0.317569f,0.125638f},{-0.0091279f,-0.299434f,0.125638f}, - {-0.00951793f,-0.299435f,0.125638f},{-0.0095162f,-0.299434f,0.121909f},{-0.00912617f,-0.299435f,0.121909f}, - {-0.00874642f,-0.299515f,0.125638f},{-0.00874495f,-0.299516f,0.121909f},{-0.00838954f,-0.299674f,0.121909f}, - {-0.0080757f,-0.299902f,0.125638f},{-0.00839049f,-0.299674f,0.125638f},{-0.00807379f,-0.299904f,0.121909f}, - {-0.00781413f,-0.300192f,0.125638f},{-0.00781324f,-0.300193f,0.121909f},{-0.007619f,-0.30053f,0.125638f}, - {-0.00761862f,-0.300531f,0.121909f},{-0.00749878f,-0.3009f,0.125638f},{-0.00749845f,-0.300901f,0.121909f}, - {-0.00745764f,-0.301289f,0.121909f},{-0.00745764f,-0.301289f,0.125638f},{-0.00989767f,-0.299515f,0.121909f}, - {-0.0102536f,-0.299674f,0.121909f},{-0.00989914f,-0.299516f,0.125638f},{-0.0102546f,-0.299674f,0.125638f}, - {-0.0105684f,-0.299902f,0.121909f},{-0.0105703f,-0.299904f,0.125638f},{-0.01083f,-0.300192f,0.121909f}, - {-0.0110251f,-0.30053f,0.121909f},{-0.0108309f,-0.300193f,0.125638f},{-0.0110255f,-0.300531f,0.125638f}, - {-0.0111453f,-0.3009f,0.121909f},{-0.0111456f,-0.300901f,0.125638f},{-0.0111865f,-0.301289f,0.121909f}, - {-0.0111865f,-0.301289f,0.125638f},{-0.011024f,-0.304096f,0.125638f},{-0.0115849f,-0.304096f,0.125638f}, - {-0.0115808f,-0.304096f,0.121909f},{-0.01047f,-0.304179f,0.125638f},{-0.0110199f,-0.304096f,0.121909f}, - {-0.0104688f,-0.30418f,0.121909f},{-0.00994023f,-0.304343f,0.125638f},{-0.00993938f,-0.304343f,0.121909f}, - {-0.00943935f,-0.304584f,0.121909f},{-0.00944153f,-0.304583f,0.125638f},{-0.00898119f,-0.304896f,0.125638f}, - {-0.00821944f,-0.305716f,0.121909f},{-0.00794276f,-0.306196f,0.125638f},{-0.00821991f,-0.305716f,0.125638f}, - {-0.00897771f,-0.304899f,0.121909f},{-0.00856913f,-0.305278f,0.125638f},{-0.00856753f,-0.30528f,0.121909f}, - {-0.00794193f,-0.306198f,0.121909f},{-0.00774033f,-0.306712f,0.125638f},{-0.00773931f,-0.306714f,0.121909f}, - {-0.00761603f,-0.307254f,0.121909f},{-0.00757356f,-0.307814f,0.125638f},{-0.00761603f,-0.307254f,0.125638f}, - {-0.00757356f,-0.307814f,0.121909f},{-0.0121348f,-0.304179f,0.121909f},{-0.0126645f,-0.304343f,0.121909f}, - {-0.012136f,-0.30418f,0.125638f},{-0.0126654f,-0.304343f,0.125638f},{-0.0131632f,-0.304583f,0.121909f}, - {-0.0131654f,-0.304584f,0.125638f},{-0.0136236f,-0.304896f,0.121909f},{-0.0140356f,-0.305278f,0.121909f}, - {-0.0136271f,-0.304899f,0.125638f},{-0.0140372f,-0.30528f,0.125638f},{-0.0143849f,-0.305716f,0.121909f}, - {-0.0143853f,-0.305716f,0.125638f},{-0.014662f,-0.306196f,0.121909f},{-0.0148644f,-0.306712f,0.121909f}, - {-0.0146628f,-0.306198f,0.125638f},{-0.0148654f,-0.306714f,0.125638f},{-0.0149887f,-0.307254f,0.121909f}, - {-0.0149887f,-0.307254f,0.125638f},{-0.0150312f,-0.307814f,0.121909f},{-0.0150312f,-0.307814f,0.125638f}, - {-0.00295812f,-0.292456f,0.125638f},{-0.00315337f,-0.292119f,0.125638f},{-0.00315227f,-0.29212f,0.121909f}, - {-0.00295749f,-0.292458f,0.121909f},{-0.0028374f,-0.292827f,0.125638f},{-0.00283721f,-0.292829f,0.121909f}, - {-0.00279657f,-0.293216f,0.121909f},{-0.00283728f,-0.293602f,0.125638f},{-0.00279668f,-0.293215f,0.125638f}, - {-0.0028377f,-0.293604f,0.121909f},{-0.00295753f,-0.293973f,0.125638f},{-0.00295825f,-0.293975f,0.121909f}, - {-0.0031524f,-0.294311f,0.125638f},{-0.00315303f,-0.294312f,0.121909f},{-0.0034126f,-0.2946f,0.125638f}, - {-0.0034133f,-0.294601f,0.121909f},{-0.00372882f,-0.29483f,0.121909f},{-0.00372882f,-0.29483f,0.125638f}, - {-0.00341302f,-0.29183f,0.121909f},{-0.00372824f,-0.291601f,0.121909f},{-0.0034143f,-0.291829f,0.125638f}, - {-0.00372908f,-0.291601f,0.125638f},{-0.00408362f,-0.291443f,0.121909f},{-0.00408596f,-0.291442f,0.125638f}, - {-0.00446544f,-0.291361f,0.121909f},{-0.00485544f,-0.291361f,0.121909f},{-0.00446705f,-0.291361f,0.125638f}, - {-0.00485646f,-0.291361f,0.125638f},{-0.00523587f,-0.291442f,0.121909f},{-0.00523689f,-0.291442f,0.125638f}, - {-0.00559323f,-0.291601f,0.121909f},{-0.00559323f,-0.291601f,0.125638f},{-0.00794301f,-0.293145f,0.125638f}, - {-0.00822403f,-0.29266f,0.125638f},{-0.00822143f,-0.292663f,0.121909f},{-0.00773834f,-0.293667f,0.125638f}, - {-0.00794151f,-0.293149f,0.121909f},{-0.00773817f,-0.293668f,0.121909f},{-0.00761523f,-0.294207f,0.125638f}, - {-0.00761511f,-0.294208f,0.121909f},{-0.00757342f,-0.294761f,0.121909f},{-0.00757373f,-0.294759f,0.125638f}, - {-0.00761488f,-0.295314f,0.125638f},{-0.00794445f,-0.296384f,0.121909f},{-0.00822146f,-0.296864f,0.125638f}, - {-0.00794412f,-0.296384f,0.125638f},{-0.00761534f,-0.295319f,0.121909f},{-0.00773918f,-0.295862f,0.125638f}, - {-0.00774028f,-0.295864f,0.121909f},{-0.00822277f,-0.296865f,0.121909f},{-0.00856678f,-0.297297f,0.125638f}, - {-0.00856839f,-0.297299f,0.121909f},{-0.00897424f,-0.297676f,0.121909f},{-0.00943797f,-0.297992f,0.125638f}, - {-0.00897424f,-0.297676f,0.125638f},{-0.00943797f,-0.297992f,0.121909f},{-0.00857075f,-0.292225f,0.121909f}, - {-0.00897738f,-0.291848f,0.121909f},{-0.00857178f,-0.292224f,0.125638f},{-0.00897811f,-0.291847f,0.125638f}, - {-0.00943459f,-0.291536f,0.121909f},{-0.00943645f,-0.291535f,0.125638f},{-0.00993607f,-0.291294f,0.121909f}, - {-0.0104724f,-0.291128f,0.121909f},{-0.00994001f,-0.291292f,0.125638f},{-0.0104751f,-0.291128f,0.125638f}, - {-0.0110266f,-0.291045f,0.121909f},{-0.0110274f,-0.291044f,0.125638f},{-0.0115811f,-0.291045f,0.121909f}, - {-0.0121288f,-0.291127f,0.121909f},{-0.0115832f,-0.291045f,0.125638f},{-0.0121315f,-0.291128f,0.125638f}, - {-0.0126606f,-0.291291f,0.121909f},{-0.0126606f,-0.291291f,0.125638f},{-0.0131668f,-0.291534f,0.121909f}, - {-0.0131668f,-0.291534f,0.125638f},{0.00616977f,-0.294311f,0.125638f},{0.00636455f,-0.293973f,0.125638f}, - {0.00636392f,-0.293974f,0.121909f},{0.00616867f,-0.294312f,0.121909f},{0.00590902f,-0.294601f,0.125638f}, - {0.00590775f,-0.294602f,0.121909f},{0.00559297f,-0.29483f,0.121909f},{0.00523843f,-0.294988f,0.125638f}, - {0.00559381f,-0.29483f,0.125638f},{0.00523609f,-0.294989f,0.121909f},{0.00485661f,-0.29507f,0.125638f}, - {0.00485499f,-0.29507f,0.121909f},{0.0044666f,-0.29507f,0.125638f},{0.00446558f,-0.29507f,0.121909f}, - {0.00408618f,-0.294989f,0.125638f},{0.00408515f,-0.294989f,0.121909f},{0.00372882f,-0.29483f,0.121909f}, - {0.00372882f,-0.29483f,0.125638f},{0.00648464f,-0.293604f,0.121909f},{0.00652537f,-0.293216f,0.121909f}, - {0.00648484f,-0.293602f,0.125638f},{0.00652548f,-0.293215f,0.125638f},{0.00648477f,-0.292829f,0.121909f}, - {0.00648435f,-0.292827f,0.125638f},{0.00636452f,-0.292458f,0.121909f},{0.00616965f,-0.29212f,0.121909f}, - {0.0063638f,-0.292456f,0.125638f},{0.00616901f,-0.292119f,0.125638f},{0.00590945f,-0.291831f,0.121909f}, - {0.00590875f,-0.29183f,0.125638f},{0.00559323f,-0.291601f,0.121909f},{0.00559323f,-0.291601f,0.125638f}, - {0.00308095f,-0.290338f,0.125638f},{0.00336087f,-0.289852f,0.125638f},{0.00335937f,-0.289856f,0.121909f}, - {0.00273163f,-0.290776f,0.125638f},{0.00307835f,-0.290341f,0.121909f},{0.0027306f,-0.290777f,0.121909f}, - {0.002325f,-0.291153f,0.125638f},{0.00232427f,-0.291153f,0.121909f},{0.00186593f,-0.291466f,0.121909f}, - {0.00186779f,-0.291465f,0.125638f},{0.00136631f,-0.291707f,0.125638f},{0.000274996f,-0.291956f,0.121909f}, - {-0.0002787f,-0.291956f,0.125638f},{0.000275788f,-0.291956f,0.125638f},{0.00136237f,-0.291709f,0.121909f}, - {0.000829945f,-0.291873f,0.125638f},{0.000827251f,-0.291873f,0.121909f},{-0.000280844f,-0.291956f,0.121909f}, - {-0.000826454f,-0.291874f,0.125638f},{-0.000829073f,-0.291873f,0.121909f},{-0.00135821f,-0.29171f,0.121909f}, - {-0.00186441f,-0.291467f,0.125638f},{-0.00135821f,-0.29171f,0.125638f},{-0.00186441f,-0.291467f,0.121909f}, - {0.00356405f,-0.289334f,0.121909f},{0.00368715f,-0.288794f,0.121909f},{0.00356421f,-0.289333f,0.125638f}, - {0.00368727f,-0.288793f,0.125638f},{0.00372865f,-0.288242f,0.121909f},{0.00372896f,-0.288239f,0.125638f}, - {0.00368751f,-0.287686f,0.121909f},{0.0035632f,-0.287139f,0.121909f},{0.00368704f,-0.287682f,0.125638f}, - {0.0035621f,-0.287136f,0.125638f},{0.00335826f,-0.286617f,0.121909f},{0.00335794f,-0.286617f,0.125638f}, - {0.00308092f,-0.286137f,0.121909f},{0.0027356f,-0.285704f,0.121909f},{0.00307961f,-0.286135f,0.125638f}, - {0.00273399f,-0.285702f,0.125638f},{0.00232814f,-0.285325f,0.121909f},{0.00232814f,-0.285325f,0.125638f}, - {0.00186441f,-0.285008f,0.121909f},{0.00186441f,-0.285008f,0.125638f},{0.0091279f,-0.303143f,0.125638f}, - {0.00951793f,-0.303143f,0.125638f},{0.0095162f,-0.303143f,0.121909f},{0.00912617f,-0.303143f,0.121909f}, - {0.00874642f,-0.303062f,0.125638f},{0.00874495f,-0.303061f,0.121909f},{0.00838954f,-0.302903f,0.121909f}, - {0.0080757f,-0.302675f,0.125638f},{0.00839049f,-0.302903f,0.125638f},{0.00807379f,-0.302673f,0.121909f}, - {0.00781413f,-0.302385f,0.125638f},{0.00781324f,-0.302384f,0.121909f},{0.007619f,-0.302047f,0.125638f}, - {0.00761862f,-0.302046f,0.121909f},{0.00749878f,-0.301677f,0.125638f},{0.00749845f,-0.301676f,0.121909f}, - {0.00745764f,-0.301289f,0.121909f},{0.00745764f,-0.301289f,0.125638f},{0.00989767f,-0.303062f,0.121909f}, - {0.0102536f,-0.302903f,0.121909f},{0.00989914f,-0.303061f,0.125638f},{0.0102546f,-0.302903f,0.125638f}, - {0.0105684f,-0.302675f,0.121909f},{0.0105703f,-0.302673f,0.125638f},{0.01083f,-0.302385f,0.121909f}, - {0.0110251f,-0.302047f,0.121909f},{0.0108309f,-0.302384f,0.125638f},{0.0110255f,-0.302046f,0.125638f}, - {0.0111453f,-0.301677f,0.121909f},{0.0111456f,-0.301676f,0.125638f},{0.0111865f,-0.301289f,0.121909f}, - {0.0111865f,-0.301289f,0.125638f},{0.011024f,-0.298481f,0.125638f},{0.0115849f,-0.298481f,0.125638f}, - {0.0115808f,-0.298481f,0.121909f},{0.01047f,-0.298398f,0.125638f},{0.0110199f,-0.298481f,0.121909f}, - {0.0104688f,-0.298397f,0.121909f},{0.00994023f,-0.298234f,0.125638f},{0.00993938f,-0.298234f,0.121909f}, - {0.00943935f,-0.297993f,0.121909f},{0.00944153f,-0.297994f,0.125638f},{0.00898119f,-0.297681f,0.125638f}, - {0.00821944f,-0.296861f,0.121909f},{0.00794276f,-0.296381f,0.125638f},{0.00821991f,-0.296861f,0.125638f}, - {0.00897771f,-0.297678f,0.121909f},{0.00856913f,-0.297299f,0.125638f},{0.00856753f,-0.297297f,0.121909f}, - {0.00794193f,-0.296379f,0.121909f},{0.00774033f,-0.295865f,0.125638f},{0.00773931f,-0.295863f,0.121909f}, - {0.00761603f,-0.295323f,0.121909f},{0.00757356f,-0.294763f,0.125638f},{0.00761603f,-0.295323f,0.125638f}, - {0.00757356f,-0.294763f,0.121909f},{0.0121348f,-0.298398f,0.121909f},{0.0126645f,-0.298234f,0.121909f}, - {0.012136f,-0.298397f,0.125638f},{0.0126654f,-0.298234f,0.125638f},{0.0131632f,-0.297994f,0.121909f}, - {0.0131654f,-0.297993f,0.125638f},{0.0136236f,-0.297681f,0.121909f},{0.0140356f,-0.297299f,0.121909f}, - {0.0136271f,-0.297678f,0.125638f},{0.0140372f,-0.297297f,0.125638f},{0.0143849f,-0.296861f,0.121909f}, - {0.0143853f,-0.296861f,0.125638f},{0.014662f,-0.296381f,0.121909f},{0.0148644f,-0.295865f,0.121909f}, - {0.0146628f,-0.296379f,0.125638f},{0.0148654f,-0.295863f,0.125638f},{0.0149887f,-0.295323f,0.121909f}, - {0.0149887f,-0.295323f,0.125638f},{0.0150312f,-0.294763f,0.121909f},{0.0150312f,-0.294763f,0.125638f}, - {5.2016e-017f,-0.298492f,0.100469f},{5.25144e-017f,-0.298492f,0.0986044f},{-0.000488516f,-0.298535f,0.0986044f}, - {-0.000957717f,-0.298661f,0.0986044f},{-0.00048723f,-0.298535f,0.100469f},{-0.000956449f,-0.298661f,0.100469f}, - {-0.00139564f,-0.298865f,0.100469f},{-0.00179504f,-0.299144f,0.100469f},{-0.00139727f,-0.298866f,0.0986044f}, - {-0.00179767f,-0.299146f,0.0986044f},{-0.00214219f,-0.299491f,0.100469f},{-0.00214411f,-0.299493f,0.0986044f}, - {-0.00242266f,-0.299891f,0.100469f},{-0.00262748f,-0.300331f,0.100469f},{-0.00242333f,-0.299893f,0.0986044f}, - {-0.00262801f,-0.300332f,0.0986044f},{-0.00275356f,-0.3008f,0.100469f},{-0.00275356f,-0.3008f,0.0986044f}, - {-0.00279661f,-0.301289f,0.0986044f},{-0.00279661f,-0.301289f,0.100469f},{0.000488516f,-0.298535f,0.100469f}, - {0.000957717f,-0.298661f,0.100469f},{0.00048723f,-0.298535f,0.0986044f},{0.00139564f,-0.298865f,0.0986044f}, - {0.000956449f,-0.298661f,0.0986044f},{0.00139727f,-0.298866f,0.100469f},{0.00179504f,-0.299144f,0.0986044f}, - {0.00179767f,-0.299146f,0.100469f},{0.00214219f,-0.299491f,0.0986044f},{0.00242266f,-0.299891f,0.0986044f}, - {0.00214411f,-0.299493f,0.100469f},{0.00242333f,-0.299893f,0.100469f},{0.00262748f,-0.300331f,0.0986044f}, - {0.00262801f,-0.300332f,0.100469f},{0.00275356f,-0.3008f,0.0986044f},{0.00275356f,-0.3008f,0.100469f}, - {0.00279661f,-0.301289f,0.100469f},{0.00279661f,-0.301289f,0.0986044f},{4.88499e-017f,-0.293831f,0.100469f}, - {-0.000737081f,-0.293867f,0.100469f},{5.13338e-017f,-0.293831f,0.101401f},{-0.000737081f,-0.293867f,0.101401f}, - {-0.00146169f,-0.293976f,0.100469f},{-0.00216893f,-0.294153f,0.100469f},{-0.00146169f,-0.293976f,0.101401f}, - {-0.00285391f,-0.294399f,0.100469f},{-0.00216893f,-0.294153f,0.101401f},{-0.00285391f,-0.294399f,0.101401f}, - {-0.00351173f,-0.294709f,0.100469f},{-0.00413751f,-0.295084f,0.100469f},{-0.00351173f,-0.294709f,0.101401f}, - {-0.00472635f,-0.29552f,0.100469f},{-0.00413751f,-0.295084f,0.101401f},{-0.00472635f,-0.29552f,0.101401f}, - {-0.00527335f,-0.296015f,0.100469f},{-0.00576874f,-0.296562f,0.100469f},{-0.00527335f,-0.296015f,0.101401f}, - {-0.00620465f,-0.297151f,0.100469f},{-0.00576874f,-0.296562f,0.101401f},{-0.00620465f,-0.297151f,0.101401f}, - {-0.00657906f,-0.297777f,0.100469f},{-0.00688994f,-0.298435f,0.100469f},{-0.00657906f,-0.297777f,0.101401f}, - {-0.00713527f,-0.29912f,0.100469f},{-0.00688994f,-0.298435f,0.101401f},{-0.00713527f,-0.29912f,0.101401f}, - {-0.00731301f,-0.299827f,0.100469f},{-0.00742114f,-0.300551f,0.100469f},{-0.00731301f,-0.299827f,0.101401f}, - {-0.00745764f,-0.301289f,0.100469f},{-0.00742114f,-0.300551f,0.101401f},{-0.00745764f,-0.301289f,0.101401f}, - {0.000737081f,-0.293867f,0.101401f},{0.00146169f,-0.293976f,0.101401f},{0.000737081f,-0.293867f,0.100469f}, - {0.00216893f,-0.294153f,0.101401f},{0.00146169f,-0.293976f,0.100469f},{0.00216893f,-0.294153f,0.100469f}, - {0.00285391f,-0.294399f,0.101401f},{0.00351173f,-0.294709f,0.101401f},{0.00285391f,-0.294399f,0.100469f}, - {0.00413751f,-0.295084f,0.101401f},{0.00351173f,-0.294709f,0.100469f},{0.00413751f,-0.295084f,0.100469f}, - {0.00472635f,-0.29552f,0.101401f},{0.00527335f,-0.296015f,0.101401f},{0.00472635f,-0.29552f,0.100469f}, - {0.00576874f,-0.296562f,0.101401f},{0.00527335f,-0.296015f,0.100469f},{0.00576874f,-0.296562f,0.100469f}, - {0.00620465f,-0.297151f,0.101401f},{0.00657906f,-0.297777f,0.101401f},{0.00620465f,-0.297151f,0.100469f}, - {0.00688994f,-0.298435f,0.101401f},{0.00657906f,-0.297777f,0.100469f},{0.00688994f,-0.298435f,0.100469f}, - {0.00713527f,-0.29912f,0.101401f},{0.00731301f,-0.299827f,0.101401f},{0.00713527f,-0.29912f,0.100469f}, - {0.00742114f,-0.300551f,0.101401f},{0.00731301f,-0.299827f,0.100469f},{0.00742114f,-0.300551f,0.100469f}, - {0.00745764f,-0.301289f,0.101401f},{0.00745764f,-0.301289f,0.100469f},{-0.00462052f,-0.283896f,0.101401f}, - {-0.00462066f,-0.283896f,0.104198f},{-0.00466102f,-0.284509f,0.101401f},{-0.00462052f,-0.285122f,0.104198f}, - {-0.00462066f,-0.285121f,0.101401f},{-0.00466102f,-0.284509f,0.104198f},{-0.00430621f,-0.286293f,0.101401f}, - {-0.00430621f,-0.286293f,0.104198f},{-0.00403832f,-0.286836f,0.101401f},{-0.00450127f,-0.285719f,0.104198f}, - {-0.00450141f,-0.285718f,0.101401f},{-0.00403818f,-0.286837f,0.104198f},{-0.00370041f,-0.287343f,0.104198f}, - {-0.00370055f,-0.287343f,0.101401f},{-0.00329584f,-0.287805f,0.101401f},{-0.00329584f,-0.287805f,0.104198f}, - {-0.00283386f,-0.288209f,0.104198f},{-0.0028342f,-0.288209f,0.101401f},{-0.00232777f,-0.288547f,0.101401f}, - {-0.00232743f,-0.288547f,0.104198f},{-0.00178369f,-0.288815f,0.101401f},{-0.00178369f,-0.288815f,0.104198f}, - {-0.00120944f,-0.28901f,0.104198f},{-0.00120978f,-0.28901f,0.101401f},{5.69282e-017f,-0.28917f,0.101401f}, - {-0.000612842f,-0.289129f,0.101401f},{-0.000612502f,-0.28913f,0.104198f},{5.69282e-017f,-0.28917f,0.104198f}, - {-0.00450141f,-0.283299f,0.104198f},{-0.00450127f,-0.283299f,0.101401f},{-0.00430621f,-0.282725f,0.104198f}, - {-0.00403832f,-0.282181f,0.104198f},{-0.00430621f,-0.282725f,0.101401f},{-0.00403818f,-0.282181f,0.101401f}, - {-0.00370055f,-0.281675f,0.104198f},{-0.00370041f,-0.281675f,0.101401f},{-0.00329584f,-0.281213f,0.104198f}, - {-0.0028342f,-0.280808f,0.104198f},{-0.00329584f,-0.281213f,0.101401f},{-0.00283386f,-0.280808f,0.101401f}, - {-0.00232777f,-0.280471f,0.104198f},{-0.00232743f,-0.280471f,0.101401f},{-0.00178369f,-0.280203f,0.104198f}, - {-0.00120978f,-0.280008f,0.104198f},{-0.00178369f,-0.280203f,0.101401f},{-0.00120944f,-0.280007f,0.101401f}, - {-0.000612842f,-0.279888f,0.104198f},{-0.000612502f,-0.279888f,0.101401f},{5.57866e-017f,-0.279848f,0.104198f}, - {5.57866e-017f,-0.279848f,0.101401f},{0.0173922f,-0.296668f,0.101401f},{0.0167797f,-0.296628f,0.101401f}, - {0.0173922f,-0.296668f,0.104198f},{0.0161668f,-0.296668f,0.104198f},{0.0167797f,-0.296628f,0.104198f}, - {0.0161668f,-0.296668f,0.101401f},{0.014996f,-0.296982f,0.101401f},{0.0144519f,-0.29725f,0.101401f}, - {0.014996f,-0.296982f,0.104198f},{0.0155699f,-0.296787f,0.104198f},{0.0155699f,-0.296787f,0.101401f}, - {0.0144519f,-0.29725f,0.104198f},{0.0139455f,-0.297588f,0.101401f},{0.0139455f,-0.297588f,0.104198f}, - {0.0134838f,-0.297993f,0.101401f},{0.0134838f,-0.297993f,0.104198f},{0.0130791f,-0.298455f,0.101401f}, - {0.0130791f,-0.298455f,0.104198f},{0.0127414f,-0.298961f,0.101401f},{0.0124735f,-0.299505f,0.101401f}, - {0.0127414f,-0.298961f,0.104198f},{0.0124735f,-0.299505f,0.104198f},{0.0122783f,-0.300079f,0.101401f}, - {0.0122783f,-0.300079f,0.104198f},{0.0121187f,-0.301289f,0.101401f},{0.012159f,-0.300676f,0.104198f}, - {0.012159f,-0.300676f,0.101401f},{0.0121187f,-0.301289f,0.104198f},{0.0179891f,-0.296787f,0.104198f}, - {0.0185634f,-0.296982f,0.104198f},{0.0179891f,-0.296787f,0.101401f},{0.0191071f,-0.29725f,0.104198f}, - {0.0185634f,-0.296982f,0.101401f},{0.0191071f,-0.29725f,0.101401f},{0.0196135f,-0.297588f,0.104198f}, - {0.0200755f,-0.297993f,0.104198f},{0.0196135f,-0.297588f,0.101401f},{0.0204801f,-0.298454f,0.104198f}, - {0.0200755f,-0.297993f,0.101401f},{0.0204801f,-0.298454f,0.101401f},{0.0208179f,-0.298961f,0.104198f}, - {0.0210859f,-0.299505f,0.104198f},{0.0208179f,-0.298961f,0.101401f},{0.0212809f,-0.300079f,0.104198f}, - {0.0210859f,-0.299505f,0.101401f},{0.0212809f,-0.300079f,0.101401f},{0.0214002f,-0.300676f,0.104198f}, - {0.0214407f,-0.301289f,0.104198f},{0.0214002f,-0.300676f,0.101401f},{0.0214407f,-0.301289f,0.101401f}, - {0.00462066f,-0.318681f,0.104198f},{0.00466102f,-0.318068f,0.104198f},{0.00464709f,-0.318428f,0.101401f}, - {0.00458867f,-0.317251f,0.101401f},{0.00465528f,-0.317837f,0.101401f},{0.00462052f,-0.317455f,0.104198f}, - {0.00430621f,-0.316285f,0.104198f},{0.00403818f,-0.31574f,0.104198f},{0.00423671f,-0.316126f,0.101401f}, - {0.00444837f,-0.316677f,0.101401f},{0.00450127f,-0.316858f,0.104198f},{0.00370041f,-0.315234f,0.104198f}, - {0.00361392f,-0.315125f,0.101401f},{0.00395712f,-0.315606f,0.101401f},{0.00329584f,-0.314772f,0.104198f}, - {0.00283386f,-0.314368f,0.104198f},{0.00276013f,-0.314313f,0.101401f},{0.00321274f,-0.314692f,0.101401f}, - {0.00232743f,-0.31403f,0.104198f},{0.00178369f,-0.313762f,0.104198f},{0.00226347f,-0.313993f,0.101401f}, - {0.00120944f,-0.313567f,0.104198f},{0.00116855f,-0.313559f,0.101401f},{0.00172931f,-0.313743f,0.101401f}, - {0.000589403f,-0.313444f,0.101401f},{0.000612502f,-0.313448f,0.104198f},{5.16769e-017f,-0.313407f,0.104198f}, - {5.16769e-017f,-0.313407f,0.101401f},{0.00456433f,-0.319013f,0.101401f},{0.00440833f,-0.319582f,0.101401f}, - {0.00450141f,-0.319278f,0.104198f},{0.00430621f,-0.319852f,0.104198f},{0.00418158f,-0.320128f,0.101401f}, - {0.00388773f,-0.32064f,0.101401f},{0.00403832f,-0.320396f,0.104198f},{0.00353147f,-0.321111f,0.101401f}, - {0.00370055f,-0.320902f,0.104198f},{0.00329584f,-0.321364f,0.104198f},{0.0031185f,-0.321533f,0.101401f}, - {0.00265541f,-0.321899f,0.101401f},{0.0028342f,-0.321769f,0.104198f},{0.00214963f,-0.322204f,0.101401f}, - {0.00232777f,-0.322106f,0.104198f},{0.00178369f,-0.322374f,0.104198f},{0.00160952f,-0.322443f,0.101401f}, - {0.00104053f,-0.322599f,0.101401f},{0.00120978f,-0.322569f,0.104198f},{0.000461185f,-0.322725f,0.101401f}, - {0.000612842f,-0.322689f,0.104198f},{5.28185e-017f,-0.322729f,0.104198f},{5.28185e-017f,-0.322729f,0.101401f}, - {-0.0143886f,-0.288764f,0.110723f},{-0.0143784f,-0.288958f,0.101401f},{-0.0143782f,-0.288568f,0.101401f}, - {-0.014297f,-0.288187f,0.101401f},{-0.0143526f,-0.288401f,0.110723f},{-0.0142471f,-0.288051f,0.110723f}, - {-0.0139089f,-0.287516f,0.101401f},{-0.014075f,-0.287728f,0.110723f},{-0.0141387f,-0.287832f,0.101401f}, - {-0.0136193f,-0.287256f,0.101401f},{-0.0138429f,-0.287445f,0.110723f},{-0.0135601f,-0.287213f,0.110723f}, - {-0.013282f,-0.287061f,0.101401f},{-0.0129121f,-0.286941f,0.101401f},{-0.0132377f,-0.287041f,0.110723f}, - {-0.0125242f,-0.2869f,0.101401f},{-0.0125242f,-0.2869f,0.110723f},{-0.0128879f,-0.286935f,0.110723f}, - {-0.0143523f,-0.289129f,0.110723f},{-0.0142976f,-0.28934f,0.101401f},{-0.0142453f,-0.289478f,0.110723f}, - {-0.0140726f,-0.2898f,0.110723f},{-0.0141391f,-0.289696f,0.101401f},{-0.0138409f,-0.290082f,0.110723f}, - {-0.0139105f,-0.290011f,0.101401f},{-0.0136206f,-0.290272f,0.101401f},{-0.0135587f,-0.290314f,0.110723f}, - {-0.0132367f,-0.290486f,0.110723f},{-0.013283f,-0.290467f,0.101401f},{-0.0128873f,-0.290592f,0.110723f}, - {-0.0129131f,-0.290588f,0.101401f},{-0.0125242f,-0.290629f,0.101401f},{-0.0125242f,-0.290629f,0.110723f}, - {-0.0125242f,-0.288764f,0.111843f},{0.00868228f,-0.290742f,0.110723f},{0.00869244f,-0.290936f,0.101401f}, - {0.00869272f,-0.290546f,0.101401f},{0.00877392f,-0.290165f,0.101401f},{0.0087183f,-0.290378f,0.110723f}, - {0.00882381f,-0.290028f,0.110723f},{0.00916198f,-0.289494f,0.101401f},{0.00899591f,-0.289705f,0.110723f}, - {0.00893219f,-0.289809f,0.101401f},{0.0094516f,-0.289233f,0.101401f},{0.00922803f,-0.289422f,0.110723f}, - {0.00951082f,-0.289191f,0.110723f},{0.00978889f,-0.289038f,0.101401f},{0.0101588f,-0.288918f,0.101401f}, - {0.00983322f,-0.289018f,0.110723f},{0.0105467f,-0.288877f,0.101401f},{0.0105467f,-0.288877f,0.110723f}, - {0.010183f,-0.288912f,0.110723f},{0.00871859f,-0.291106f,0.110723f},{0.00877329f,-0.291317f,0.101401f}, - {0.00882557f,-0.291456f,0.110723f},{0.00899828f,-0.291778f,0.110723f},{0.00893177f,-0.291673f,0.101401f}, - {0.00922999f,-0.29206f,0.110723f},{0.00916039f,-0.291988f,0.101401f},{0.00945026f,-0.29225f,0.101401f}, - {0.00951221f,-0.292291f,0.110723f},{0.00983423f,-0.292464f,0.110723f},{0.00978794f,-0.292445f,0.101401f}, - {0.0101836f,-0.29257f,0.110723f},{0.0101578f,-0.292565f,0.101401f},{0.0105467f,-0.292606f,0.101401f}, - {0.0105467f,-0.292606f,0.110723f},{0.0105467f,-0.290742f,0.111843f},{0.0106598f,-0.313813f,0.110723f}, - {0.0106699f,-0.314007f,0.101401f},{0.0106702f,-0.313617f,0.101401f},{0.0107514f,-0.313236f,0.101401f}, - {0.0106958f,-0.313449f,0.110723f},{0.0108013f,-0.313099f,0.110723f},{0.0111395f,-0.312564f,0.101401f}, - {0.0109734f,-0.312776f,0.110723f},{0.0109097f,-0.31288f,0.101401f},{0.0114291f,-0.312304f,0.101401f}, - {0.0112055f,-0.312493f,0.110723f},{0.0114883f,-0.312261f,0.110723f},{0.0117664f,-0.312109f,0.101401f}, - {0.0121363f,-0.311989f,0.101401f},{0.0118107f,-0.312089f,0.110723f},{0.0125242f,-0.311948f,0.101401f}, - {0.0125242f,-0.311948f,0.110723f},{0.0121605f,-0.311983f,0.110723f},{0.0106961f,-0.314177f,0.110723f}, - {0.0107508f,-0.314388f,0.101401f},{0.0108031f,-0.314527f,0.110723f},{0.0109758f,-0.314848f,0.110723f}, - {0.0109093f,-0.314744f,0.101401f},{0.0112075f,-0.315131f,0.110723f},{0.0111379f,-0.315059f,0.101401f}, - {0.0114278f,-0.315321f,0.101401f},{0.0114897f,-0.315362f,0.110723f},{0.0118117f,-0.315534f,0.110723f}, - {0.0117654f,-0.315516f,0.101401f},{0.0121611f,-0.315641f,0.110723f},{0.0121353f,-0.315636f,0.101401f}, - {0.0125242f,-0.315677f,0.101401f},{0.0125242f,-0.315677f,0.110723f},{0.0125242f,-0.313813f,0.111843f}, - {-0.0124111f,-0.311835f,0.110723f},{-0.0124009f,-0.312029f,0.101401f},{-0.0124007f,-0.311639f,0.101401f}, - {-0.0123195f,-0.311258f,0.101401f},{-0.0123751f,-0.311472f,0.110723f},{-0.0122696f,-0.311121f,0.110723f}, - {-0.0119314f,-0.310587f,0.101401f},{-0.0120975f,-0.310799f,0.110723f},{-0.0121612f,-0.310903f,0.101401f}, - {-0.0116418f,-0.310326f,0.101401f},{-0.0118654f,-0.310516f,0.110723f},{-0.0115826f,-0.310284f,0.110723f}, - {-0.0113045f,-0.310132f,0.101401f},{-0.0109346f,-0.310012f,0.101401f},{-0.0112602f,-0.310112f,0.110723f}, - {-0.0105467f,-0.309971f,0.101401f},{-0.0105467f,-0.309971f,0.110723f},{-0.0109104f,-0.310006f,0.110723f}, - {-0.0123748f,-0.312199f,0.110723f},{-0.0123201f,-0.312411f,0.101401f},{-0.0122678f,-0.312549f,0.110723f}, - {-0.0120951f,-0.312871f,0.110723f},{-0.0121616f,-0.312767f,0.101401f},{-0.0118634f,-0.313153f,0.110723f}, - {-0.011933f,-0.313082f,0.101401f},{-0.0116431f,-0.313343f,0.101401f},{-0.0115812f,-0.313385f,0.110723f}, - {-0.0112592f,-0.313557f,0.110723f},{-0.0113054f,-0.313538f,0.101401f},{-0.0109098f,-0.313663f,0.110723f}, - {-0.0109356f,-0.313659f,0.101401f},{-0.0105467f,-0.3137f,0.101401f},{-0.0105467f,-0.3137f,0.110723f}, - {-0.0105467f,-0.311835f,0.111843f},{-0.0173925f,-0.305909f,0.101401f},{-0.0173922f,-0.305909f,0.104198f}, - {-0.0167797f,-0.30595f,0.101401f},{-0.0161668f,-0.305909f,0.104198f},{-0.0161672f,-0.305909f,0.101401f}, - {-0.0167797f,-0.30595f,0.104198f},{-0.014996f,-0.305595f,0.101401f},{-0.014996f,-0.305595f,0.104198f}, - {-0.0144523f,-0.305327f,0.101401f},{-0.0155699f,-0.30579f,0.104198f},{-0.0155702f,-0.30579f,0.101401f}, - {-0.0144519f,-0.305327f,0.104198f},{-0.0139455f,-0.304989f,0.104198f},{-0.0139458f,-0.304989f,0.101401f}, - {-0.0134838f,-0.304584f,0.101401f},{-0.0134838f,-0.304584f,0.104198f},{-0.0130791f,-0.304122f,0.104198f}, - {-0.0130793f,-0.304123f,0.101401f},{-0.0127415f,-0.303616f,0.101401f},{-0.0127414f,-0.303616f,0.104198f}, - {-0.0124735f,-0.303072f,0.101401f},{-0.0124735f,-0.303072f,0.104198f},{-0.0122783f,-0.302498f,0.104198f}, - {-0.0122784f,-0.302498f,0.101401f},{-0.0121187f,-0.301289f,0.101401f},{-0.0121592f,-0.301901f,0.101401f}, - {-0.012159f,-0.301901f,0.104198f},{-0.0121187f,-0.301289f,0.104198f},{-0.0179891f,-0.30579f,0.104198f}, - {-0.0179895f,-0.30579f,0.101401f},{-0.0185634f,-0.305595f,0.104198f},{-0.0191071f,-0.305327f,0.104198f}, - {-0.0185634f,-0.305595f,0.101401f},{-0.0191075f,-0.305327f,0.101401f},{-0.0196135f,-0.304989f,0.104198f}, - {-0.0196139f,-0.304989f,0.101401f},{-0.0200755f,-0.304584f,0.104198f},{-0.0204801f,-0.304123f,0.104198f}, - {-0.0200755f,-0.304584f,0.101401f},{-0.0204802f,-0.304122f,0.101401f},{-0.0208179f,-0.303616f,0.104198f}, - {-0.020818f,-0.303616f,0.101401f},{-0.0210859f,-0.303072f,0.104198f},{-0.0212809f,-0.302498f,0.104198f}, - {-0.0210859f,-0.303072f,0.101401f},{-0.0212811f,-0.302498f,0.101401f},{-0.0214002f,-0.301901f,0.104198f}, - {-0.0214003f,-0.301901f,0.101401f},{-0.0214407f,-0.301289f,0.104198f},{-0.0214407f,-0.301289f,0.101401f}, - {0.0254902f,-0.298561f,0.121909f},{0.0255985f,-0.29991f,0.120045f},{0.0254881f,-0.298542f,0.120045f}, - {0.0250554f,-0.295865f,0.121909f},{0.0250515f,-0.295847f,0.120045f},{0.0247276f,-0.294526f,0.120045f}, - {0.0255992f,-0.299923f,0.121909f},{0.0256356f,-0.301289f,0.120045f},{0.0256356f,-0.301289f,0.121909f}, - {0.0253087f,-0.297208f,0.121909f},{0.0253054f,-0.297187f,0.120045f},{0.0241907f,-0.292804f,0.121909f}, - {0.0246545f,-0.294325f,0.121909f},{0.0243348f,-0.293226f,0.120045f},{0.0222011f,-0.288471f,0.121909f}, - {0.0229537f,-0.289873f,0.121909f},{0.0227538f,-0.28948f,0.120045f},{0.0236177f,-0.291319f,0.121909f}, - {0.0238741f,-0.29195f,0.120045f},{0.0233468f,-0.2907f,0.120045f},{0.0205925f,-0.28602f,0.120045f}, - {0.0197483f,-0.284942f,0.120045f},{0.0204428f,-0.28582f,0.121909f},{0.0220964f,-0.288291f,0.120045f}, - {0.0213756f,-0.287137f,0.120045f},{0.0213632f,-0.287118f,0.121909f},{0.0178811f,-0.282919f,0.120045f}, - {0.0172245f,-0.282302f,0.121909f},{0.0183635f,-0.283414f,0.121909f},{0.0188436f,-0.283907f,0.120045f}, - {0.0194437f,-0.284581f,0.121909f},{0.0137508f,-0.279653f,0.121909f},{0.015542f,-0.280901f,0.121909f}, - {0.014715f,-0.280297f,0.120045f},{0.0168687f,-0.281985f,0.120045f},{0.0112022f,-0.27823f,0.120045f}, - {0.00996671f,-0.27767f,0.120045f},{0.00988506f,-0.277635f,0.121909f},{0.0124072f,-0.278855f,0.120045f}, - {0.0118618f,-0.278562f,0.121909f},{0.00610419f,-0.27639f,0.120045f},{0.00612578f,-0.276411f,0.121909f}, - {0.00741505f,-0.276749f,0.120045f},{0.00783085f,-0.276878f,0.121909f},{0.00870345f,-0.277176f,0.120045f}, - {0.00264799f,-0.27579f,0.121909f},{0.00342595f,-0.275883f,0.120045f},{0.00206394f,-0.275736f,0.120045f}, - {0.00477359f,-0.276101f,0.120045f},{0.00439916f,-0.276033f,0.121909f},{0.000884103f,-0.275668f,0.121909f}, - {-0.000690516f,-0.275662f,0.120045f},{-0.000883894f,-0.275668f,0.121909f},{0.000689447f,-0.275662f,0.120045f}, - {-0.00342617f,-0.275883f,0.120045f},{-0.00477376f,-0.276101f,0.120045f},{-0.00439897f,-0.276033f,0.121909f}, - {-0.00264771f,-0.27579f,0.121909f},{-0.00206419f,-0.275736f,0.120045f},{-0.0087035f,-0.277176f,0.120045f}, - {-0.00783085f,-0.276878f,0.121909f},{-0.00741509f,-0.276749f,0.120045f},{-0.00612769f,-0.276402f,0.121909f}, - {-0.0061043f,-0.27639f,0.120045f},{-0.0118616f,-0.278562f,0.121909f},{-0.00988475f,-0.277635f,0.121909f}, - {-0.0112024f,-0.27823f,0.120045f},{-0.00996683f,-0.27767f,0.120045f},{-0.0137506f,-0.279653f,0.121909f}, - {-0.0135792f,-0.279545f,0.120045f},{-0.0147152f,-0.280297f,0.120045f},{-0.0124074f,-0.278855f,0.120045f}, - {-0.016869f,-0.281985f,0.120045f},{-0.0178817f,-0.282919f,0.120045f},{-0.0172245f,-0.282302f,0.121909f}, - {-0.0155417f,-0.280901f,0.121909f},{-0.0158127f,-0.281111f,0.120045f},{-0.0188441f,-0.283908f,0.120045f}, - {-0.0197483f,-0.284943f,0.120045f},{-0.0194435f,-0.284581f,0.121909f},{-0.0183577f,-0.283419f,0.121909f}, - {-0.0204427f,-0.28582f,0.121909f},{-0.0205925f,-0.28602f,0.120045f},{-0.0213756f,-0.287137f,0.120045f}, - {-0.021363f,-0.287118f,0.121909f},{-0.0220965f,-0.288291f,0.120045f},{-0.0222011f,-0.288471f,0.121909f}, - {-0.0227539f,-0.28948f,0.120045f},{-0.0229535f,-0.289873f,0.121909f},{-0.0236176f,-0.291319f,0.121909f}, - {-0.0233469f,-0.290701f,0.120045f},{-0.0238742f,-0.29195f,0.120045f},{-0.0241907f,-0.292803f,0.121909f}, - {-0.0243349f,-0.293226f,0.120045f},{-0.0246619f,-0.294323f,0.121909f},{-0.0250554f,-0.295865f,0.121909f}, - {-0.0247277f,-0.294526f,0.120045f},{-0.0253055f,-0.297187f,0.120045f},{-0.0250516f,-0.295847f,0.120045f}, - {-0.0254882f,-0.298542f,0.120045f},{-0.0253087f,-0.297208f,0.121909f},{-0.0254901f,-0.298561f,0.121909f}, - {-0.0255986f,-0.29991f,0.120045f},{-0.0256356f,-0.301289f,0.120045f},{-0.0255992f,-0.299923f,0.121909f}, - {-0.0256356f,-0.301289f,0.121909f},{0.013579f,-0.279545f,0.120045f},{0.0158124f,-0.28111f,0.120045f}, - {0.0247034f,-0.301289f,0.104011f},{0.0261017f,-0.301289f,0.10513f},{0.0260447f,-0.303013f,0.10513f}, - {0.0148773f,-0.28396f,0.10252f},{0.0141264f,-0.285159f,0.101401f},{0.0130365f,-0.284266f,0.101401f}, - {0.0151609f,-0.286128f,0.101401f},{0.0131883f,-0.282642f,0.10252f},{0.0144813f,-0.279572f,0.10513f}, - {0.0123517f,-0.279895f,0.104011f},{0.0130346f,-0.278674f,0.10513f},{0.0118953f,-0.28345f,0.101401f}, - {0.0114195f,-0.281509f,0.10252f},{0.0115354f,-0.277874f,0.10513f},{0.00947527f,-0.282055f,0.101401f}, - {0.00998868f,-0.277174f,0.10513f},{0.00820499f,-0.28148f,0.101401f},{0.0084f,-0.276575f,0.10513f}, - {0.00689981f,-0.280988f,0.101401f},{0.00556423f,-0.280582f,0.101401f},{0.00677408f,-0.276081f,0.10513f}, - {0.00420236f,-0.280264f,0.101401f},{0.00511591f,-0.275693f,0.10513f},{0.00343096f,-0.275413f,0.10513f}, - {0.0028181f,-0.280034f,0.101401f},{0.00172399f,-0.275244f,0.10513f},{0.00141594f,-0.279895f,0.101401f}, - {5.61862e-017f,-0.275187f,0.10513f},{0.0164604f,-0.285456f,0.10252f},{0.016129f,-0.287162f,0.101401f}, - {0.0179091f,-0.287115f,0.10252f},{0.0170221f,-0.288252f,0.101401f},{0.0178384f,-0.289393f,0.101401f}, - {0.0192f,-0.28892f,0.10252f},{0.018576f,-0.290582f,0.101401f},{0.0203119f,-0.290846f,0.10252f}, - {0.0192333f,-0.291813f,0.101401f},{0.0212292f,-0.292866f,0.10252f},{0.0198086f,-0.293084f,0.101401f}, - {0.0252075f,-0.294515f,0.10513f},{0.0255955f,-0.296173f,0.10513f},{0.0242782f,-0.296724f,0.104011f}, - {0.021942f,-0.294951f,0.10252f},{0.0203001f,-0.294389f,0.101401f},{0.0224458f,-0.297069f,0.10252f}, - {0.0207061f,-0.295724f,0.101401f},{0.0210249f,-0.297086f,0.101401f},{0.0227423f,-0.299192f,0.10252f}, - {0.0212547f,-0.29847f,0.101401f},{0.0260448f,-0.299565f,0.10513f},{0.022839f,-0.301289f,0.10252f}, - {0.0213939f,-0.299872f,0.101401f},{0.0212463f,-0.304169f,0.101401f},{0.021392f,-0.302732f,0.101401f}, - {0.0258753f,-0.30472f,0.10513f},{0.0202358f,-0.308374f,0.101401f},{0.0206669f,-0.306996f,0.101401f}, - {0.0247131f,-0.309689f,0.10513f},{0.0210042f,-0.305592f,0.101401f},{0.0255955f,-0.306404f,0.10513f}, - {0.0252074f,-0.308063f,0.10513f},{0.0191008f,-0.311028f,0.101401f},{0.0226142f,-0.314323f,0.10513f}, - {0.0184019f,-0.312292f,0.101401f},{0.0241148f,-0.311277f,0.10513f},{0.0234144f,-0.312824f,0.10513f}, - {0.019713f,-0.309721f,0.101401f},{0.0207226f,-0.317159f,0.10513f},{0.0196354f,-0.318486f,0.10513f}, - {0.0167571f,-0.314664f,0.101401f},{0.0176194f,-0.313506f,0.101401f},{0.0217163f,-0.31577f,0.10513f}, - {0.0158706f,-0.322011f,0.10513f},{0.0137317f,-0.317755f,0.101401f},{0.0171974f,-0.320924f,0.10513f}, - {0.0148089f,-0.316793f,0.101401f},{0.0158188f,-0.315761f,0.101401f},{0.0184567f,-0.319745f,0.10513f}, - {0.0101475f,-0.320176f,0.101401f},{0.0113957f,-0.31945f,0.101401f},{0.0114195f,-0.321068f,0.10252f}, - {0.0125922f,-0.318642f,0.101401f},{0.0123517f,-0.322682f,0.104011f},{0.0130343f,-0.323903f,0.10513f}, - {0.0109801f,-0.323418f,0.104011f},{0.00954347f,-0.324074f,0.104011f},{0.00998868f,-0.325403f,0.10513f}, - {0.00804836f,-0.324644f,0.104011f},{0.0115351f,-0.324703f,0.10513f},{0.00650255f,-0.325121f,0.104011f}, - {0.00677384f,-0.326496f,0.10513f},{0.00491482f,-0.325498f,0.104011f},{0.00839976f,-0.326002f,0.10513f}, - {0.00329485f,-0.325771f,0.104011f},{0.00511591f,-0.326884f,0.10513f},{0.00343072f,-0.327164f,0.10513f}, - {0.00172376f,-0.327333f,0.10513f},{0.00165296f,-0.325937f,0.104011f},{5.29897e-017f,-0.32739f,0.10513f}, - {5.29897e-017f,-0.325992f,0.104011f},{0.0144813f,-0.323005f,0.10513f},{0.00454389f,-0.323671f,0.10252f}, - {0.00475341f,-0.322193f,0.101401f},{0.00601179f,-0.323322f,0.10252f},{0.00304618f,-0.323923f,0.10252f}, - {0.00333561f,-0.322467f,0.101401f},{0.00190254f,-0.322644f,0.101401f},{0.00152821f,-0.324076f,0.10252f}, - {5.29897e-017f,-0.324128f,0.10252f},{0.00615037f,-0.321828f,0.101401f},{0.00751875f,-0.321368f,0.101401f}, - {0.00882321f,-0.322354f,0.10252f},{0.00744093f,-0.322881f,0.10252f},{0.00885315f,-0.320816f,0.101401f}, - {0.0101514f,-0.321748f,0.10252f},{0.0142636f,-0.281119f,0.104011f},{0.0107068f,-0.282713f,0.101401f}, - {0.0160914f,-0.282545f,0.104011f},{0.0158708f,-0.280566f,0.10513f},{0.0184567f,-0.282832f,0.10513f}, - {0.0171976f,-0.281653f,0.10513f},{0.0178031f,-0.284163f,0.104011f},{0.0193705f,-0.285958f,0.104011f}, - {0.0196355f,-0.284091f,0.10513f},{0.0217163f,-0.286807f,0.10513f},{0.0207227f,-0.285418f,0.10513f}, - {0.0207667f,-0.287909f,0.104011f},{0.0219695f,-0.289993f,0.104011f},{0.0226143f,-0.288254f,0.10513f}, - {0.0234145f,-0.289753f,0.10513f},{0.0229621f,-0.292178f,0.104011f},{0.0241148f,-0.2913f,0.10513f}, - {0.0237331f,-0.294432f,0.104011f},{0.0247132f,-0.292889f,0.10513f},{0.0245992f,-0.299019f,0.104011f}, - {0.0258754f,-0.297858f,0.10513f},{0.0214407f,-0.301289f,0.10513f},{0.0214407f,-0.301289f,0.106062f}, - {0.0214037f,-0.302548f,0.106062f},{0.0212935f,-0.303797f,0.106062f},{0.0214037f,-0.302548f,0.10513f}, - {0.0211114f,-0.305032f,0.106062f},{0.0212936f,-0.303796f,0.10513f},{0.0211115f,-0.305032f,0.10513f}, - {0.0208586f,-0.306251f,0.106062f},{0.0205363f,-0.30745f,0.106062f},{0.0208587f,-0.30625f,0.10513f}, - {0.0201457f,-0.308627f,0.106062f},{0.0205363f,-0.30745f,0.10513f},{0.0201457f,-0.308627f,0.10513f}, - {0.0196879f,-0.309779f,0.106062f},{0.0191643f,-0.310903f,0.106062f},{0.019688f,-0.309779f,0.10513f}, - {0.018576f,-0.311996f,0.106062f},{0.0191643f,-0.310903f,0.10513f},{0.018576f,-0.311995f,0.10513f}, - {0.0179242f,-0.313054f,0.106062f},{0.0172102f,-0.314076f,0.106062f},{0.0179243f,-0.313054f,0.10513f}, - {0.0164352f,-0.315058f,0.106062f},{0.0172102f,-0.314076f,0.10513f},{0.0164352f,-0.315058f,0.10513f}, - {0.0155998f,-0.315997f,0.106062f},{0.0147082f,-0.316889f,0.106062f},{0.0156004f,-0.315997f,0.10513f}, - {0.0137691f,-0.317724f,0.106062f},{0.0147088f,-0.316888f,0.10513f},{0.0137693f,-0.317724f,0.10513f}, - {0.0127873f,-0.318499f,0.106062f},{0.0117655f,-0.319213f,0.106062f},{0.0127873f,-0.318499f,0.10513f}, - {0.0107068f,-0.319865f,0.106062f},{0.0117656f,-0.319213f,0.10513f},{0.010707f,-0.319865f,0.10513f}, - {0.00961408f,-0.320453f,0.106062f},{0.00849036f,-0.320976f,0.106062f},{0.0096143f,-0.320453f,0.10513f}, - {0.0073385f,-0.321434f,0.106062f},{0.00849054f,-0.320976f,0.10513f},{0.00733859f,-0.321434f,0.10513f}, - {0.00616138f,-0.321825f,0.106062f},{0.00496191f,-0.322147f,0.106062f},{0.00616144f,-0.321825f,0.10513f}, - {0.00496208f,-0.322147f,0.10513f},{0.00374334f,-0.3224f,0.10513f},{0.00250813f,-0.322582f,0.10513f}, - {0.00374312f,-0.3224f,0.106062f},{0.00125925f,-0.322692f,0.106062f},{0.00250793f,-0.322582f,0.106062f}, - {5.56154e-017f,-0.322729f,0.106062f},{0.00125938f,-0.322692f,0.10513f},{5.56154e-017f,-0.322729f,0.10513f}, - {0.0214037f,-0.300029f,0.10513f},{0.0212935f,-0.29878f,0.10513f},{0.0214037f,-0.300029f,0.106062f}, - {0.0212936f,-0.298781f,0.106062f},{0.0211114f,-0.297545f,0.10513f},{0.0208586f,-0.296326f,0.10513f}, - {0.0211115f,-0.297545f,0.106062f},{0.0205363f,-0.295127f,0.10513f},{0.0208587f,-0.296327f,0.106062f}, - {0.0205363f,-0.295127f,0.106062f},{0.0201457f,-0.29395f,0.10513f},{0.0196879f,-0.292798f,0.10513f}, - {0.0201457f,-0.29395f,0.106062f},{0.0191643f,-0.291674f,0.10513f},{0.019688f,-0.292798f,0.106062f}, - {0.0191643f,-0.291674f,0.106062f},{0.018576f,-0.290582f,0.10513f},{0.0179242f,-0.289523f,0.10513f}, - {0.018576f,-0.290582f,0.106062f},{0.0172102f,-0.288501f,0.10513f},{0.0179243f,-0.289523f,0.106062f}, - {0.0172102f,-0.288501f,0.106062f},{0.0164352f,-0.287519f,0.10513f},{0.0155998f,-0.28658f,0.10513f}, - {0.0164352f,-0.287519f,0.106062f},{0.0147082f,-0.285688f,0.10513f},{0.0156004f,-0.28658f,0.106062f}, - {0.0147088f,-0.285689f,0.106062f},{0.0137691f,-0.284853f,0.10513f},{0.0127873f,-0.284078f,0.10513f}, - {0.0137693f,-0.284853f,0.106062f},{0.0117655f,-0.283364f,0.10513f},{0.0127873f,-0.284078f,0.106062f}, - {0.0117656f,-0.283364f,0.106062f},{0.0107068f,-0.282713f,0.10513f},{0.00961408f,-0.282124f,0.10513f}, - {0.010707f,-0.282713f,0.106062f},{0.00849036f,-0.281601f,0.10513f},{0.0096143f,-0.282124f,0.106062f}, - {0.00849054f,-0.281601f,0.106062f},{0.0073385f,-0.281143f,0.10513f},{0.00616138f,-0.280752f,0.10513f}, - {0.00733859f,-0.281143f,0.106062f},{0.00496191f,-0.28043f,0.10513f},{0.00616144f,-0.280752f,0.106062f}, - {0.00374334f,-0.280177f,0.106062f},{0.00496208f,-0.28043f,0.106062f},{0.00374312f,-0.280177f,0.10513f}, - {0.00250813f,-0.279995f,0.106062f},{0.00250793f,-0.279995f,0.10513f},{0.00125925f,-0.279885f,0.10513f}, - {0.00125938f,-0.279885f,0.106062f},{5.29897e-017f,-0.279848f,0.10513f},{5.29897e-017f,-0.279848f,0.106062f}, - {0.0261017f,-0.301289f,0.106062f},{0.0261017f,-0.301289f,0.120045f},{0.0260652f,-0.302669f,0.120045f}, - {0.0259565f,-0.304039f,0.120045f},{0.0260653f,-0.302669f,0.106062f},{0.0257765f,-0.305396f,0.120045f}, - {0.0259565f,-0.304039f,0.106062f},{0.0257766f,-0.305396f,0.106062f},{0.0255265f,-0.306739f,0.120045f}, - {0.0252074f,-0.308063f,0.120045f},{0.0255265f,-0.306738f,0.106062f},{0.0248204f,-0.309366f,0.120045f}, - {0.0252075f,-0.308062f,0.106062f},{0.0248205f,-0.309366f,0.106062f},{0.0243664f,-0.310647f,0.120045f}, - {0.0238467f,-0.311901f,0.120045f},{0.0243666f,-0.310646f,0.106062f},{0.0232623f,-0.313128f,0.120045f}, - {0.0238468f,-0.311901f,0.106062f},{0.0232624f,-0.313127f,0.106062f},{0.0226142f,-0.314323f,0.120045f}, - {0.0219036f,-0.315485f,0.120045f},{0.0226143f,-0.314323f,0.106062f},{0.0211314f,-0.316611f,0.120045f}, - {0.0219036f,-0.315485f,0.106062f},{0.0211315f,-0.316611f,0.106062f},{0.0202988f,-0.317698f,0.120045f}, - {0.0194069f,-0.318743f,0.120045f},{0.0202989f,-0.317698f,0.106062f},{0.0184567f,-0.319745f,0.120045f}, - {0.0194069f,-0.318743f,0.106062f},{0.0184567f,-0.319745f,0.106062f},{0.0174549f,-0.320695f,0.120045f}, - {0.0164091f,-0.321587f,0.120045f},{0.0174549f,-0.320695f,0.106062f},{0.015322f,-0.32242f,0.120045f}, - {0.0164092f,-0.321587f,0.106062f},{0.0153222f,-0.32242f,0.106062f},{0.0141962f,-0.323192f,0.120045f}, - {0.0130343f,-0.323903f,0.120045f},{0.0141964f,-0.323192f,0.106062f},{0.0118389f,-0.324551f,0.120045f}, - {0.0130346f,-0.323903f,0.106062f},{0.0118391f,-0.324551f,0.106062f},{0.0106125f,-0.325135f,0.120045f}, - {0.00935782f,-0.325655f,0.120045f},{0.0106128f,-0.325135f,0.106062f},{0.0080774f,-0.326109f,0.120045f}, - {0.00935809f,-0.325655f,0.106062f},{0.00807765f,-0.326109f,0.106062f},{0.00677384f,-0.326496f,0.120045f}, - {0.00544975f,-0.326815f,0.120045f},{0.00677408f,-0.326496f,0.106062f},{0.00410773f,-0.327065f,0.120045f}, - {0.00544996f,-0.326815f,0.106062f},{0.0041079f,-0.327065f,0.106062f},{0.00275036f,-0.327245f,0.120045f}, - {0.00138025f,-0.327354f,0.120045f},{0.00275048f,-0.327245f,0.106062f},{5.61862e-017f,-0.32739f,0.120045f}, - {0.00138032f,-0.327354f,0.106062f},{5.61862e-017f,-0.32739f,0.106062f},{0.0260652f,-0.299908f,0.106062f}, - {0.0259565f,-0.298538f,0.106062f},{0.0260653f,-0.299908f,0.120045f},{0.0259565f,-0.298538f,0.120045f}, - {0.0257765f,-0.297181f,0.106062f},{0.0255265f,-0.295839f,0.106062f},{0.0257766f,-0.297181f,0.120045f}, - {0.0252074f,-0.294514f,0.106062f},{0.0255265f,-0.295839f,0.120045f},{0.0252075f,-0.294515f,0.120045f}, - {0.0248204f,-0.293211f,0.106062f},{0.0243664f,-0.29193f,0.106062f},{0.0248205f,-0.293211f,0.120045f}, - {0.0238467f,-0.290676f,0.106062f},{0.0243666f,-0.291931f,0.120045f},{0.0238468f,-0.290676f,0.120045f}, - {0.0232623f,-0.289449f,0.106062f},{0.0226142f,-0.288254f,0.106062f},{0.0232624f,-0.28945f,0.120045f}, - {0.0219036f,-0.287092f,0.106062f},{0.0226143f,-0.288254f,0.120045f},{0.0219036f,-0.287092f,0.120045f}, - {0.0211314f,-0.285966f,0.106062f},{0.0202988f,-0.284879f,0.106062f},{0.0211315f,-0.285967f,0.120045f}, - {0.0194069f,-0.283834f,0.106062f},{0.0202989f,-0.284879f,0.120045f},{0.0194069f,-0.283834f,0.120045f}, - {0.0184567f,-0.282832f,0.106062f},{0.0174549f,-0.281882f,0.106062f},{0.0184567f,-0.282832f,0.120045f}, - {0.0164091f,-0.28099f,0.106062f},{0.0174549f,-0.281882f,0.120045f},{0.0164092f,-0.28099f,0.120045f}, - {0.015322f,-0.280157f,0.106062f},{0.0141962f,-0.279385f,0.106062f},{0.0153222f,-0.280157f,0.120045f}, - {0.0130343f,-0.278674f,0.106062f},{0.0141964f,-0.279385f,0.120045f},{0.0130346f,-0.278674f,0.120045f}, - {0.0118389f,-0.278026f,0.106062f},{0.0106125f,-0.277442f,0.106062f},{0.0118391f,-0.278026f,0.120045f}, - {0.00935782f,-0.276922f,0.106062f},{0.0106128f,-0.277442f,0.120045f},{0.00935809f,-0.276922f,0.120045f}, - {0.0080774f,-0.276468f,0.106062f},{0.00677384f,-0.276081f,0.106062f},{0.00807765f,-0.276468f,0.120045f}, - {0.00544975f,-0.275762f,0.106062f},{0.00677408f,-0.276081f,0.120045f},{0.00544996f,-0.275762f,0.120045f}, - {0.00410773f,-0.275512f,0.106062f},{0.00275036f,-0.275332f,0.106062f},{0.0041079f,-0.275512f,0.120045f}, - {0.00138025f,-0.275223f,0.106062f},{0.00275048f,-0.275332f,0.120045f},{0.00138032f,-0.275223f,0.120045f}, - {5.29897e-017f,-0.275187f,0.106062f},{5.29897e-017f,-0.275187f,0.120045f},{0.0121333f,-0.304179f,0.125638f}, - {-0.0149893f,-0.295319f,0.125638f},{-0.0150309f,-0.294763f,0.125638f},{-0.019126f,-0.297548f,0.125638f}, - {-0.00810759f,-0.316569f,0.125638f},{-0.00862289f,-0.286353f,0.125638f},{-0.00372901f,-0.288237f,0.125638f}, - {-0.00810797f,-0.286008f,0.125638f},{-0.0122191f,-0.286802f,0.125638f},{-0.012803f,-0.286594f,0.125638f}, - {-0.0130106f,-0.290972f,0.125638f},{0.00523604f,-0.291442f,0.125638f},{0.00485519f,-0.291361f,0.125638f}, - {-0.0018645f,-0.285009f,0.125638f},{-0.00378085f,-0.279711f,0.125638f},{-0.00629776f,-0.282236f,0.125638f}, - {0.00943824f,-0.291533f,0.125638f},{0.00917901f,-0.286627f,0.125638f},{0.00862289f,-0.286353f,0.125638f}, - {0.00897792f,-0.291847f,0.125638f},{0.0172458f,-0.301289f,0.125638f},{0.0172871f,-0.30067f,0.125638f}, - {0.010994f,-0.286978f,0.125638f},{0.0110243f,-0.291045f,0.125638f},{0.0115815f,-0.291045f,0.125638f}, - {0.0207988f,-0.305818f,0.125638f},{0.0210452f,-0.307372f,0.125638f},{0.021411f,-0.305923f,0.125638f}, - {0.0174099f,-0.302514f,0.125638f},{0.017287f,-0.301907f,0.125638f},{0.0136278f,-0.304899f,0.125638f}, - {0.019126f,-0.30503f,0.125638f},{0.0149893f,-0.307258f,0.125638f},{0.0150309f,-0.307814f,0.125638f}, - {0.0202118f,-0.305622f,0.125638f},{0.0149893f,-0.30837f,0.125638f},{0.0148647f,-0.308913f,0.125638f}, - {0.0200086f,-0.310208f,0.125638f},{0.00994038f,-0.304343f,0.125638f},{0.0104733f,-0.304175f,0.125638f}, - {0.0143811f,-0.309913f,0.125638f},{0.0185801f,-0.312894f,0.125638f},{0.0193415f,-0.311575f,0.125638f}, - {0.0205774f,-0.308803f,0.125638f},{0.0196492f,-0.305361f,0.125638f},{0.0167976f,-0.315351f,0.125638f}, - {0.013354f,-0.316267f,0.125638f},{0.0157911f,-0.316472f,0.125638f},{0.0136271f,-0.310729f,0.125638f}, - {0.0138626f,-0.316622f,0.125638f},{0.0143217f,-0.317038f,0.125638f},{0.0147191f,-0.317514f,0.125638f}, - {0.0146599f,-0.309431f,0.125638f},{0.0149896f,-0.294208f,0.125638f},{0.0205772f,-0.293773f,0.125638f}, - {0.0148655f,-0.306715f,0.125638f},{0.0186543f,-0.304628f,0.125638f},{0.0182401f,-0.304166f,0.125638f}, - {0.0178906f,-0.303654f,0.125638f},{0.0143836f,-0.305714f,0.125638f},{0.0146621f,-0.306197f,0.125638f}, - {0.0105684f,-0.299902f,0.125638f},{0.01083f,-0.300192f,0.125638f},{0.0174101f,-0.300062f,0.125638f}, - {0.0102536f,-0.299674f,0.125638f},{0.00810759f,-0.286008f,0.125638f},{0.00764282f,-0.285598f,0.125638f}, - {0.0191272f,-0.297548f,0.125638f},{0.0133515f,-0.286308f,0.125638f},{0.0157911f,-0.286105f,0.125638f}, - {0.013859f,-0.285951f,0.125638f},{0.0143221f,-0.285541f,0.125638f},{0.0147191f,-0.285063f,0.125638f}, - {0.0126646f,-0.291292f,0.125638f},{0.0128028f,-0.286595f,0.125638f},{0.0122189f,-0.286803f,0.125638f}, - {0.0116123f,-0.286931f,0.125638f},{0.0121324f,-0.291128f,0.125638f},{0.014035f,-0.292227f,0.125638f}, - {0.0177287f,-0.28842f,0.125638f},{0.013627f,-0.291848f,0.125638f},{0.0131664f,-0.291534f,0.125638f}, - {0.0193407f,-0.291f,0.125638f},{0.018579f,-0.289681f,0.125638f},{0.0146599f,-0.293147f,0.125638f}, - {0.0167966f,-0.287225f,0.125638f},{0.0196491f,-0.297213f,0.125638f},{0.02021f,-0.29695f,0.125638f}, - {0.0210452f,-0.295205f,0.125638f},{0.0208003f,-0.29676f,0.125638f},{0.021411f,-0.296654f,0.125638f}, - {0.0143816f,-0.292664f,0.125638f},{0.0200082f,-0.292368f,0.125638f},{0.0148642f,-0.293665f,0.125638f}, - {-0.00635281f,-0.281618f,0.125638f},{-0.00525411f,-0.280021f,0.125638f},{-0.00647672f,-0.281011f,0.125638f}, - {0.00723674f,-0.285129f,0.125638f},{0.00689651f,-0.284611f,0.125638f},{0.018655f,-0.29795f,0.125638f}, - {0.00632427f,-0.282854f,0.125638f},{0.00643592f,-0.283463f,0.125638f},{0.0178912f,-0.298922f,0.125638f}, - {0.0182407f,-0.298411f,0.125638f},{-0.010376f,-0.286942f,0.125638f},{-0.0109947f,-0.286977f,0.125638f}, - {-0.00838954f,-0.302903f,0.125638f},{-0.00368715f,-0.287681f,0.125638f},{-0.00356297f,-0.287138f,0.125638f}, - {-0.00764334f,-0.285598f,0.125638f},{-0.00632322f,-0.282854f,0.125638f},{-0.00643547f,-0.283464f,0.125638f}, - {-0.00232474f,-0.285323f,0.125638f},{-0.000829763f,-0.284603f,0.125638f},{-0.00227994f,-0.279501f,0.125638f}, - {-0.00136226f,-0.284767f,0.125638f},{-0.00662778f,-0.284053f,0.125638f},{-0.00273315f,-0.285701f,0.125638f}, - {0.00377962f,-0.27971f,0.125638f},{0.00136248f,-0.284767f,0.125638f},{0.00027877f,-0.284522f,0.125638f}, - {0.000760576f,-0.279395f,0.125638f},{-0.000278327f,-0.284521f,0.125638f},{0.00629503f,-0.282234f,0.125638f}, - {0.00525411f,-0.280021f,0.125638f},{-0.00669182f,-0.280429f,0.125638f},{0.00634749f,-0.281617f,0.125638f}, - {0.0064786f,-0.281011f,0.125638f},{0.00669182f,-0.280429f,0.125638f},{-0.0030806f,-0.286137f,0.125638f}, - {-0.00689664f,-0.284612f,0.125638f},{-0.00335928f,-0.286619f,0.125638f},{0.00227826f,-0.2795f,0.125638f}, - {0.000829582f,-0.284604f,0.125638f},{-0.0146621f,-0.296381f,0.125638f},{-0.0178906f,-0.298923f,0.125638f}, - {-0.0143836f,-0.296863f,0.125638f},{0.00408395f,-0.291443f,0.125638f},{0.00446533f,-0.291361f,0.125638f}, - {-0.00917948f,-0.286627f,0.125638f},{-0.0130106f,-0.302446f,0.125638f},{-0.00632427f,-0.319723f,0.125638f}, - {-0.00643592f,-0.319114f,0.125638f},{-0.0097673f,-0.286824f,0.125638f},{-0.0205774f,-0.293774f,0.125638f}, - {-0.0210452f,-0.295205f,0.125638f},{-0.0196492f,-0.297216f,0.125638f},{-0.0136271f,-0.291848f,0.125638f}, - {-0.0177299f,-0.288421f,0.125638f},{-0.0140346f,-0.292228f,0.125638f},{-0.00590935f,-0.291831f,0.125638f}, - {-0.0207988f,-0.296759f,0.125638f},{-0.021411f,-0.296654f,0.125638f},{-0.0140362f,-0.297299f,0.125638f}, - {-0.0174099f,-0.300063f,0.125638f},{-0.0136278f,-0.297678f,0.125638f},{-0.0182401f,-0.298411f,0.125638f}, - {-0.0148655f,-0.295862f,0.125638f},{-0.0186543f,-0.297949f,0.125638f},{-0.0202118f,-0.296955f,0.125638f}, - {-0.0149893f,-0.294207f,0.125638f},{-0.0148647f,-0.293665f,0.125638f},{-0.0200086f,-0.292369f,0.125638f}, - {-0.0193415f,-0.291002f,0.125638f},{-0.0143811f,-0.292664f,0.125638f},{-0.0185801f,-0.289683f,0.125638f}, - {-0.0146599f,-0.293146f,0.125638f},{-0.013354f,-0.28631f,0.125638f},{-0.0157911f,-0.286105f,0.125638f}, - {-0.0167976f,-0.287226f,0.125638f},{-0.0138626f,-0.285956f,0.125638f},{-0.00976653f,-0.315753f,0.125638f}, - {-0.00917901f,-0.31595f,0.125638f},{-0.00994062f,-0.311285f,0.125638f},{-0.0143217f,-0.285539f,0.125638f}, - {-0.0147191f,-0.285063f,0.125638f},{-0.00636453f,-0.292458f,0.125638f},{-0.00648481f,-0.292829f,0.125638f}, - {-0.0176127f,-0.303101f,0.125638f},{-0.0178912f,-0.303655f,0.125638f},{-0.0116126f,-0.286931f,0.125638f}, - {-0.00862289f,-0.316224f,0.125638f},{-0.00943824f,-0.311044f,0.125638f},{-0.00315227f,-0.310457f,0.125638f}, - {-0.00295749f,-0.310119f,0.125638f},{-0.0104733f,-0.311449f,0.125638f},{-0.0196491f,-0.305364f,0.125638f}, - {-0.0205772f,-0.308804f,0.125638f},{-0.0167966f,-0.315352f,0.125638f},{-0.0157911f,-0.316472f,0.125638f}, - {-0.0130106f,-0.31392f,0.125638f},{-0.0122189f,-0.315774f,0.125638f},{-0.0116123f,-0.315646f,0.125638f}, - {-0.017287f,-0.30067f,0.125638f},{-0.0174101f,-0.302515f,0.125638f},{-0.0172458f,-0.301289f,0.125638f}, - {-0.00723674f,-0.317448f,0.125638f},{-0.00689651f,-0.317966f,0.125638f},{-0.013859f,-0.316626f,0.125638f}, - {-0.0133515f,-0.316269f,0.125638f},{-0.0115815f,-0.311532f,0.125638f},{-0.0121324f,-0.311449f,0.125638f}, - {-0.014035f,-0.31035f,0.125638f},{-0.0177287f,-0.314157f,0.125638f},{-0.013627f,-0.310729f,0.125638f}, - {-0.0143816f,-0.309913f,0.125638f},{-0.018579f,-0.312896f,0.125638f},{-0.0193407f,-0.311577f,0.125638f}, - {-0.0146599f,-0.309431f,0.125638f},{-0.0149896f,-0.308369f,0.125638f},{-0.0131664f,-0.311043f,0.125638f}, - {-0.0126646f,-0.311285f,0.125638f},{-0.0210452f,-0.307372f,0.125638f},{-0.0143221f,-0.317036f,0.125638f}, - {-0.02021f,-0.305627f,0.125638f},{-0.0208003f,-0.305817f,0.125638f},{-0.0147191f,-0.317514f,0.125638f}, - {-0.021411f,-0.305923f,0.125638f},{-0.0110243f,-0.311532f,0.125638f},{0.00874495f,-0.299516f,0.125638f}, - {0.00838954f,-0.299674f,0.125638f},{-0.00523587f,-0.311135f,0.125638f},{-0.00485544f,-0.311216f,0.125638f}, - {0.0063639f,-0.308603f,0.125638f},{0.00616894f,-0.308265f,0.125638f},{-0.00629503f,-0.320343f,0.125638f}, - {-0.00377962f,-0.322867f,0.125638f},{0.0099371f,-0.31392f,0.125638f},{0.0109947f,-0.3156f,0.125638f}, - {0.0116126f,-0.315647f,0.125638f},{0.00356297f,-0.315439f,0.125638f},{0.00764334f,-0.316979f,0.125638f}, - {0.00368715f,-0.314896f,0.125638f},{0.0097673f,-0.315753f,0.125638f},{0.00917948f,-0.31595f,0.125638f}, - {0.00643547f,-0.319113f,0.125638f},{0.00232474f,-0.317255f,0.125638f},{0.00632322f,-0.319723f,0.125638f}, - {0.00810797f,-0.316569f,0.125638f},{0.00862289f,-0.316224f,0.125638f},{0.00372901f,-0.31434f,0.125638f}, - {0.00378085f,-0.322866f,0.125638f},{0.00629776f,-0.320341f,0.125638f},{0.0018645f,-0.317568f,0.125638f}, - {0.0111453f,-0.3009f,0.125638f},{0.0110251f,-0.30053f,0.125638f},{-0.0200082f,-0.31021f,0.125638f}, - {-0.0148642f,-0.308912f,0.125638f},{-0.010994f,-0.3156f,0.125638f},{0.00773683f,-0.293662f,0.125638f}, - {-0.0110251f,-0.302047f,0.125638f},{-0.0111453f,-0.301677f,0.125638f},{-0.00764282f,-0.316979f,0.125638f}, - {-0.0105684f,-0.302675f,0.125638f},{0.00807379f,-0.299904f,0.125638f},{-0.000829582f,-0.317973f,0.125638f}, - {-0.00136248f,-0.31781f,0.125638f},{-0.00227826f,-0.323077f,0.125638f},{-0.00027877f,-0.318055f,0.125638f}, - {-0.000760576f,-0.323182f,0.125638f},{0.000278327f,-0.318056f,0.125638f},{0.000829763f,-0.317974f,0.125638f}, - {0.00227994f,-0.323076f,0.125638f},{0.00136226f,-0.31781f,0.125638f},{-0.00525411f,-0.322556f,0.125638f}, - {-0.00634749f,-0.32096f,0.125638f},{-0.0064786f,-0.321566f,0.125638f},{-0.00669182f,-0.322148f,0.125638f}, - {0.00335928f,-0.315958f,0.125638f},{0.0030806f,-0.31644f,0.125638f},{0.00689664f,-0.317965f,0.125638f}, - {0.00273315f,-0.316876f,0.125638f},{0.00662778f,-0.318524f,0.125638f},{0.00525411f,-0.322556f,0.125638f}, - {0.00635281f,-0.320959f,0.125638f},{0.00669182f,-0.322148f,0.125638f},{0.00647672f,-0.321566f,0.125638f}, - {0.0176127f,-0.299476f,0.125638f},{0.00994062f,-0.291292f,0.125638f},{0.0103751f,-0.286942f,0.125638f}, - {0.00976653f,-0.286824f,0.125638f},{0.0104733f,-0.291128f,0.125638f},{0.00912617f,-0.299435f,0.125638f}, - {0.0095162f,-0.299434f,0.125638f},{0.00989767f,-0.299515f,0.125638f},{0.0140362f,-0.305278f,0.125638f}, - {0.0110245f,-0.304105f,0.125638f},{0.0177299f,-0.314156f,0.125638f},{0.0140346f,-0.310349f,0.125638f}, - {0.00822623f,-0.292664f,0.125638f},{-0.00408474f,-0.294989f,0.125638f},{-0.00446554f,-0.29507f,0.125638f}, - {-0.018655f,-0.304627f,0.125638f},{-0.0191272f,-0.305029f,0.125638f},{0.00315227f,-0.29212f,0.125638f}, - {0.00295755f,-0.292458f,0.125638f},{0.00341361f,-0.294601f,0.125638f},{0.00749845f,-0.300901f,0.125638f}, - {0.00761862f,-0.300531f,0.125638f},{0.0126655f,-0.304343f,0.125638f},{0.0131672f,-0.304585f,0.125638f}, - {0.0115822f,-0.3041f,0.125638f},{0.0122191f,-0.315775f,0.125638f},{0.012803f,-0.315983f,0.125638f}, - {0.00590935f,-0.310746f,0.125638f},{0.00636453f,-0.310119f,0.125638f},{0.00648481f,-0.309748f,0.125638f}, - {-0.00408362f,-0.311134f,0.125638f},{-0.00446544f,-0.311216f,0.125638f},{-0.00807379f,-0.302673f,0.125638f}, - {-0.00430393f,-0.303071f,0.125638f},{0.00283746f,-0.304987f,0.125638f},{0.00408474f,-0.307589f,0.125638f}, - {0.00446554f,-0.307508f,0.125638f},{-0.00874495f,-0.303061f,0.125638f},{-0.0172871f,-0.301907f,0.125638f}, - {0.00761515f,-0.294207f,0.125638f},{0.0085695f,-0.292226f,0.125638f},{-0.00723717f,-0.28513f,0.125638f}, - {-0.000762504f,-0.279395f,0.125638f},{0.00662806f,-0.284053f,0.125638f},{0.00341281f,-0.291831f,0.125638f}, - {0.00372825f,-0.291601f,0.125638f},{0.00279662f,-0.293216f,0.125638f},{0.00283723f,-0.292829f,0.125638f}, - {0.00283764f,-0.293604f,0.125638f},{-0.00335595f,-0.289852f,0.125638f},{0.00795154f,-0.293149f,0.125638f}, - {-0.00369782f,-0.304126f,0.125638f},{0.00295819f,-0.293974f,0.125638f},{0.00315308f,-0.294312f,0.125638f}, - {-0.00523619f,-0.294989f,0.125638f},{-0.00616894f,-0.294312f,0.125638f},{-0.0063639f,-0.293974f,0.125638f}, - {-0.00273651f,-0.290775f,0.125638f},{-0.00232523f,-0.291153f,0.125638f},{-0.00356376f,-0.289336f,0.125638f}, - {-0.0131672f,-0.297992f,0.125638f},{-0.0176123f,-0.299477f,0.125638f},{-0.00616972f,-0.29212f,0.125638f}, - {-0.00648443f,-0.293604f,0.125638f},{-0.00652539f,-0.293216f,0.125638f},{-0.00559278f,-0.29483f,0.125638f}, - {-0.00590766f,-0.294602f,0.125638f},{-0.0048551f,-0.29507f,0.125638f},{-0.00307294f,-0.290333f,0.125638f}, - {-0.0110245f,-0.298472f,0.125638f},{-0.0095162f,-0.303143f,0.125638f},{-0.00368758f,-0.288793f,0.125638f}, - {-0.00897792f,-0.31073f,0.125638f},{-0.0103751f,-0.315635f,0.125638f},{-0.0128028f,-0.315982f,0.125638f}, - {-0.0182407f,-0.304166f,0.125638f},{-0.01083f,-0.302385f,0.125638f},{-0.0102536f,-0.302903f,0.125638f}, - {-0.00912617f,-0.303143f,0.125638f},{-0.00989767f,-0.303062f,0.125638f},{-0.0115822f,-0.298477f,0.125638f}, - {-0.0121333f,-0.298398f,0.125638f},{-0.0104733f,-0.298402f,0.125638f},{-0.00994038f,-0.298234f,0.125638f}, - {-0.00462174f,-0.301897f,0.125638f},{-0.00761862f,-0.302046f,0.125638f},{-0.00449935f,-0.302494f,0.125638f}, - {-0.00749845f,-0.301676f,0.125638f},{-0.00761515f,-0.30837f,0.125638f},{-0.0085695f,-0.310351f,0.125638f}, - {-0.00822623f,-0.309913f,0.125638f},{-0.00773683f,-0.308915f,0.125638f},{-0.00403697f,-0.303619f,0.125638f}, - {-0.0126655f,-0.298234f,0.125638f},{0.00559278f,-0.307747f,0.125638f},{0.00723717f,-0.317447f,0.125638f}, - {0.000762504f,-0.323182f,0.125638f},{-0.00662806f,-0.318524f,0.125638f},{-0.00341302f,-0.310747f,0.125638f}, - {-0.00372824f,-0.310976f,0.125638f},{-0.00279657f,-0.309361f,0.125638f},{-0.00283721f,-0.309748f,0.125638f}, - {-0.0028377f,-0.308973f,0.125638f},{0.00120604f,-0.305791f,0.125638f},{-0.00795154f,-0.309428f,0.125638f}, - {0.003698f,-0.304126f,0.125638f},{0.00329612f,-0.304585f,0.125638f},{0.0048551f,-0.307507f,0.125638f}, - {0.00523619f,-0.307588f,0.125638f},{0.00781324f,-0.300193f,0.125638f},{0.00430606f,-0.303073f,0.125638f}, - {0.00356376f,-0.313241f,0.125638f},{-0.00283752f,-0.304986f,0.125638f},{-0.00329569f,-0.304584f,0.125638f}, - {0.00178338f,-0.305595f,0.125638f},{0.000608186f,-0.30591f,0.125638f},{5.18512e-017f,-0.30595f,0.125638f}, - {-0.0034133f,-0.307976f,0.125638f},{-0.00233082f,-0.305324f,0.125638f},{-0.00295825f,-0.308603f,0.125638f}, - {-0.00120688f,-0.30579f,0.125638f},{-0.00315303f,-0.308265f,0.125638f},{0.0176123f,-0.3031f,0.125638f}, - {0.010376f,-0.315635f,0.125638f},{0.00616972f,-0.310457f,0.125638f},{0.00648443f,-0.308973f,0.125638f}, - {0.00652539f,-0.309361f,0.125638f},{0.00449528f,-0.302494f,0.125638f},{0.00590766f,-0.307976f,0.125638f}, - {0.00273651f,-0.311802f,0.125638f},{0.00335595f,-0.312725f,0.125638f},{0.00232523f,-0.311424f,0.125638f}, - {0.00307294f,-0.312244f,0.125638f},{0.00461789f,-0.301897f,0.125638f},{0.00403651f,-0.30362f,0.125638f}, - {0.00368758f,-0.313784f,0.125638f},{0.00233031f,-0.305326f,0.125638f},{-0.00060875f,-0.30591f,0.125638f}, - {-0.00178418f,-0.305594f,0.125638f},{-0.00781324f,-0.302384f,0.125638f},{0.0216239f,-0.307539f,0.12559f}, - {0.0211432f,-0.30901f,0.12559f},{0.0217239f,-0.309222f,0.125434f},{0.0192916f,-0.317439f,0.12373f}, - {0.0203623f,-0.316066f,0.12373f},{0.0200519f,-0.315841f,0.12429f},{0.0210134f,-0.314414f,0.12429f}, - {0.0213388f,-0.314617f,0.12373f},{0.0186268f,-0.316882f,0.124775f},{0.0181976f,-0.316523f,0.125161f}, - {0.0175107f,-0.318126f,0.124775f},{0.016671f,-0.317318f,0.125434f},{0.0158563f,-0.318767f,0.125232f}, - {0.0171072f,-0.317738f,0.125161f},{0.0151138f,-0.317949f,0.125592f},{0.0154952f,-0.318369f,0.125455f}, - {0.0162253f,-0.31689f,0.12559f},{0.0218746f,-0.312922f,0.12429f},{0.0222133f,-0.313102f,0.12373f}, - {0.0226291f,-0.311376f,0.12429f},{0.0215683f,-0.31476f,0.123126f},{0.0217015f,-0.314844f,0.122512f}, - {0.0224522f,-0.313229f,0.123126f},{0.021363f,-0.315459f,0.121909f},{0.0222009f,-0.314106f,0.121909f}, - {0.0207085f,-0.316317f,0.122512f},{0.0204426f,-0.316757f,0.121909f},{0.0196196f,-0.317713f,0.122512f}, - {0.0225908f,-0.313303f,0.122512f},{0.0229535f,-0.312704f,0.121909f},{0.0183695f,-0.31917f,0.121909f}, - {0.0194435f,-0.317996f,0.121909f},{0.018444f,-0.319023f,0.122512f},{0.0172245f,-0.320275f,0.121909f}, - {0.0171931f,-0.320241f,0.122497f},{0.02337f,-0.311706f,0.122512f},{0.0236175f,-0.311258f,0.121909f}, - {0.0240343f,-0.310066f,0.122512f},{0.0241903f,-0.309773f,0.121909f},{0.024671f,-0.308256f,0.121909f}, - {0.0245807f,-0.308394f,0.122512f},{0.0250097f,-0.306702f,0.122497f},{0.024876f,-0.306673f,0.123065f}, - {0.0229794f,-0.311532f,0.12373f},{0.0181357f,-0.318727f,0.12373f},{0.0189975f,-0.317193f,0.12429f}, - {0.0250554f,-0.306712f,0.121909f},{0.0232266f,-0.311642f,0.123126f},{0.0233369f,-0.308035f,0.124775f}, - {0.0235497f,-0.306386f,0.124929f},{0.0227992f,-0.307879f,0.125161f},{0.0239879f,-0.306481f,0.124546f}, - {0.0238014f,-0.308169f,0.12429f},{0.0209535f,-0.312432f,0.125161f},{0.0216762f,-0.310951f,0.125161f}, - {0.0211235f,-0.310705f,0.125434f},{0.0219851f,-0.306047f,0.125592f},{0.0244299f,-0.308351f,0.123126f}, - {0.0246584f,-0.306626f,0.123602f},{0.0241699f,-0.308275f,0.12373f},{0.0238868f,-0.310012f,0.123126f}, - {0.0205814f,-0.316225f,0.123126f},{0.0194991f,-0.317613f,0.123126f},{0.0183308f,-0.318914f,0.123126f}, - {0.0171019f,-0.32014f,0.123062f},{0.02436f,-0.306561f,0.1241f},{0.0236326f,-0.309919f,0.12373f}, - {0.0169523f,-0.319975f,0.1236f},{0.0222178f,-0.307711f,0.125434f},{0.0230629f,-0.306281f,0.125233f}, - {0.0232723f,-0.309787f,0.12429f},{0.0196606f,-0.315557f,0.124775f},{0.0178592f,-0.318461f,0.12429f}, - {0.0167476f,-0.31975f,0.124098f},{0.0221874f,-0.311179f,0.124775f},{0.0228181f,-0.309621f,0.124775f}, - {0.0214477f,-0.312695f,0.124775f},{0.0206034f,-0.314158f,0.124775f},{0.0164907f,-0.319467f,0.124546f}, - {0.0222924f,-0.309429f,0.125161f},{0.0201286f,-0.313861f,0.125161f},{0.0192076f,-0.315228f,0.125161f}, - {0.0161909f,-0.319136f,0.124927f},{0.0225375f,-0.306167f,0.125456f},{0.0204192f,-0.312148f,0.125434f}, - {0.0196153f,-0.313541f,0.125434f},{0.0187178f,-0.314873f,0.125434f},{0.0172595f,-0.315738f,0.12559f}, - {0.0177335f,-0.316134f,0.125434f},{0.0205588f,-0.310453f,0.12559f},{0.0198733f,-0.311858f,0.12559f}, - {0.019091f,-0.313213f,0.12559f},{0.0182174f,-0.314509f,0.12559f},{0.000885136f,-0.326703f,0.123126f}, - {0.00261846f,-0.326311f,0.12373f},{0.000875717f,-0.326433f,0.12373f},{0.00441602f,-0.326491f,0.122512f}, - {0.00266296f,-0.326736f,0.122512f},{0.00264799f,-0.326787f,0.121909f},{0.00257853f,-0.32593f,0.12429f}, - {0.000884103f,-0.326909f,0.121909f},{0.00609912f,-0.325976f,0.123126f},{0.00613678f,-0.326129f,0.122512f}, - {0.0077748f,-0.325524f,0.123065f},{0.00612578f,-0.326167f,0.121909f},{0.00781658f,-0.325654f,0.122497f}, - {0.00539858f,-0.323141f,0.12559f},{0.00388481f,-0.32346f,0.12559f},{0.00399151f,-0.324069f,0.125434f}, - {0.00783085f,-0.325699f,0.121909f},{0.00439916f,-0.326544f,0.121909f},{0.00749724f,-0.324659f,0.124546f}, - {0.00582624f,-0.324872f,0.124775f},{0.00594221f,-0.325341f,0.12429f},{0.00246996f,-0.324892f,0.125161f}, - {0.00240697f,-0.32429f,0.125434f},{0.000826054f,-0.325007f,0.125161f},{0.005692f,-0.324329f,0.125161f}, - {0.00736026f,-0.324232f,0.124929f},{0.000890602f,-0.32686f,0.122512f},{0.00264662f,-0.32658f,0.123126f}, - {-0.00427461f,-0.325693f,0.12429f},{-0.00603421f,-0.325714f,0.12373f},{-0.0043408f,-0.326071f,0.12373f}, - {0.00687127f,-0.322708f,0.125592f},{-0.000860185f,-0.326049f,0.12429f},{-0.00261652f,-0.326312f,0.12373f}, - {-0.000873503f,-0.326433f,0.12373f},{0.000862365f,-0.326049f,0.12429f},{-0.00582624f,-0.324872f,0.124775f}, - {-0.00419119f,-0.325217f,0.124775f},{-0.00409462f,-0.324665f,0.125161f},{-0.00554685f,-0.323741f,0.125434f}, - {-0.00720884f,-0.32376f,0.125232f},{-0.005692f,-0.324329f,0.125161f},{-0.00257663f,-0.32593f,0.12429f}, - {-0.00687127f,-0.322708f,0.125592f},{-0.00704464f,-0.323248f,0.125455f},{-0.00539858f,-0.323141f,0.12559f}, - {-0.00088835f,-0.32686f,0.122512f},{-0.000882898f,-0.326703f,0.123126f},{-0.000883894f,-0.326909f,0.121909f}, - {-0.002661f,-0.326737f,0.122512f},{-0.00264771f,-0.326787f,0.121909f},{-0.00441458f,-0.326492f,0.122512f}, - {-0.00439897f,-0.326544f,0.121909f},{-0.00612769f,-0.326175f,0.121909f},{-0.00613678f,-0.326129f,0.122512f}, - {-0.00783085f,-0.325699f,0.121909f},{0.00770679f,-0.325312f,0.123602f},{0.00603421f,-0.325714f,0.12373f}, - {0.00438891f,-0.326337f,0.123126f},{-0.00264467f,-0.326581f,0.123126f},{-0.00609912f,-0.325976f,0.123126f}, - {-0.00438748f,-0.326337f,0.123126f},{-0.00781658f,-0.325654f,0.122497f},{-0.0077751f,-0.325525f,0.123062f}, - {0.00761353f,-0.325021f,0.1241f},{0.00434221f,-0.32607f,0.12373f},{-0.00770709f,-0.325313f,0.1236f}, - {0.00554685f,-0.323741f,0.125434f},{0.00720812f,-0.323758f,0.125233f},{0.004276f,-0.325692f,0.12429f}, - {-0.00252634f,-0.325449f,0.124775f},{-0.00594221f,-0.325341f,0.12429f},{-0.00761404f,-0.325023f,0.124098f}, - {0.00252821f,-0.325449f,0.124775f},{0.00419255f,-0.325216f,0.124775f},{0.000845536f,-0.325566f,0.124775f}, - {-0.000843398f,-0.325566f,0.124775f},{-0.00749724f,-0.324659f,0.124546f},{0.00409595f,-0.324665f,0.125161f}, - {-0.000823965f,-0.325007f,0.125161f},{-0.00246814f,-0.324892f,0.125161f},{-0.00736095f,-0.324234f,0.124927f}, - {0.00704393f,-0.323246f,0.125456f},{0.000804989f,-0.324402f,0.125434f},{-0.000802953f,-0.324402f,0.125434f}, - {-0.0024052f,-0.324291f,0.125434f},{-0.00388354f,-0.32346f,0.12559f},{-0.00399021f,-0.324069f,0.125434f}, - {0.00234263f,-0.323675f,0.12559f},{0.00078347f,-0.323784f,0.12559f},{-0.000781489f,-0.323784f,0.12559f}, - {-0.0023409f,-0.323676f,0.12559f},{-0.0217002f,-0.314846f,0.122512f},{-0.02058f,-0.316226f,0.123126f}, - {-0.021567f,-0.314762f,0.123126f},{-0.0207071f,-0.316319f,0.122512f},{-0.0213629f,-0.315459f,0.121909f}, - {-0.0204426f,-0.316757f,0.121909f},{-0.020361f,-0.316067f,0.12373f},{-0.0213375f,-0.314619f,0.12373f}, - {-0.0200505f,-0.315842f,0.12429f},{-0.0183308f,-0.318914f,0.123126f},{-0.018444f,-0.319023f,0.122512f}, - {-0.0171015f,-0.32014f,0.123063f},{-0.0169508f,-0.319974f,0.123604f},{-0.0172584f,-0.315738f,0.12559f}, - {-0.0177324f,-0.316135f,0.125434f},{-0.0162253f,-0.31689f,0.12559f},{-0.0171936f,-0.320241f,0.122494f}, - {-0.0183693f,-0.31917f,0.121909f},{-0.0172245f,-0.320275f,0.121909f},{-0.0196183f,-0.317714f,0.122512f}, - {-0.0194434f,-0.317996f,0.121909f},{-0.0171072f,-0.317738f,0.125161f},{-0.0175107f,-0.318126f,0.124775f}, - {-0.0161913f,-0.319136f,0.124927f},{-0.0201275f,-0.313863f,0.125161f},{-0.0192063f,-0.315229f,0.125161f}, - {-0.0187165f,-0.314874f,0.125434f},{-0.0151117f,-0.317946f,0.125592f},{-0.0178592f,-0.318461f,0.12429f}, - {-0.0164907f,-0.319467f,0.124546f},{-0.0232721f,-0.309789f,0.12429f},{-0.0241699f,-0.308275f,0.12373f}, - {-0.0236324f,-0.30992f,0.12373f},{-0.0210122f,-0.314416f,0.12429f},{-0.0222178f,-0.307711f,0.125434f}, - {-0.0230652f,-0.306281f,0.125232f},{-0.0227992f,-0.307879f,0.125161f},{-0.0224512f,-0.313231f,0.123126f}, - {-0.0225899f,-0.313305f,0.122512f},{-0.0233369f,-0.308035f,0.124775f},{-0.0228179f,-0.309623f,0.124775f}, - {-0.0222922f,-0.309431f,0.125161f},{-0.0229789f,-0.311534f,0.12373f},{-0.0226285f,-0.311378f,0.12429f}, - {-0.0218736f,-0.312924f,0.12429f},{-0.0222123f,-0.313104f,0.12373f},{-0.0219851f,-0.306047f,0.125592f}, - {-0.0225398f,-0.306167f,0.125455f},{-0.0216239f,-0.307539f,0.12559f},{-0.0222011f,-0.314107f,0.121909f}, - {-0.0233694f,-0.311708f,0.122512f},{-0.0229536f,-0.312705f,0.121909f},{-0.0240341f,-0.310067f,0.122512f}, - {-0.0236177f,-0.311258f,0.121909f},{-0.0241882f,-0.309773f,0.121909f},{-0.0245807f,-0.308394f,0.122512f}, - {-0.0246627f,-0.308254f,0.121909f},{-0.0250554f,-0.306712f,0.121909f},{-0.0250097f,-0.306702f,0.122497f}, - {-0.0181357f,-0.318727f,0.12373f},{-0.0194979f,-0.317614f,0.123126f},{-0.023226f,-0.311644f,0.123126f}, - {-0.0238866f,-0.310013f,0.123126f},{-0.0244299f,-0.308351f,0.123126f},{-0.024877f,-0.306673f,0.123062f}, - {-0.0167454f,-0.319747f,0.124102f},{-0.0192904f,-0.31744f,0.12373f},{-0.0246594f,-0.306626f,0.1236f}, - {-0.016671f,-0.317318f,0.125434f},{-0.0158556f,-0.318766f,0.125233f},{-0.0189963f,-0.317194f,0.12429f}, - {-0.0221869f,-0.311181f,0.124775f},{-0.0238014f,-0.308169f,0.12429f},{-0.0243617f,-0.306562f,0.124098f}, - {-0.0196592f,-0.315558f,0.124775f},{-0.0186256f,-0.316883f,0.124775f},{-0.0206021f,-0.31416f,0.124775f}, - {-0.0214468f,-0.312697f,0.124775f},{-0.0239879f,-0.306481f,0.124546f},{-0.0181964f,-0.316524f,0.125161f}, - {-0.0209526f,-0.312434f,0.125161f},{-0.0216757f,-0.310953f,0.125161f},{-0.0235519f,-0.306387f,0.124927f}, - {-0.0154922f,-0.318366f,0.125456f},{-0.0196142f,-0.313542f,0.125434f},{-0.0204183f,-0.31215f,0.125434f}, - {-0.0211229f,-0.310707f,0.125434f},{-0.021143f,-0.309011f,0.12559f},{-0.0217237f,-0.309223f,0.125434f}, - {-0.0182162f,-0.314511f,0.12559f},{-0.0190899f,-0.313215f,0.12559f},{-0.0198725f,-0.31186f,0.12559f}, - {-0.0205583f,-0.310455f,0.12559f},{-0.0225908f,-0.289274f,0.122512f},{-0.0232266f,-0.290935f,0.123126f}, - {-0.0224522f,-0.289348f,0.123126f},{-0.02337f,-0.290871f,0.122512f},{-0.0229794f,-0.291045f,0.12373f}, - {-0.0222133f,-0.289475f,0.12373f},{-0.0226291f,-0.291201f,0.12429f},{-0.0244299f,-0.294227f,0.123126f}, - {-0.0245807f,-0.294183f,0.122512f},{-0.024876f,-0.295904f,0.123065f},{-0.0246584f,-0.295951f,0.123602f}, - {-0.0211432f,-0.293567f,0.12559f},{-0.0217239f,-0.293355f,0.125434f},{-0.0216239f,-0.295038f,0.12559f}, - {-0.0250097f,-0.295875f,0.122497f},{-0.0240343f,-0.292511f,0.122512f},{-0.0227992f,-0.294698f,0.125161f}, - {-0.0233369f,-0.294543f,0.124775f},{-0.0235497f,-0.296191f,0.124929f},{-0.0209535f,-0.290145f,0.125161f}, - {-0.0216762f,-0.291626f,0.125161f},{-0.0211235f,-0.291872f,0.125434f},{-0.0219851f,-0.29653f,0.125592f}, - {-0.0238014f,-0.294408f,0.12429f},{-0.0239879f,-0.296096f,0.124546f},{-0.0189975f,-0.285384f,0.12429f}, - {-0.0181357f,-0.28385f,0.12373f},{-0.0192916f,-0.285138f,0.12373f},{-0.0218746f,-0.289655f,0.12429f}, - {-0.016671f,-0.285259f,0.125434f},{-0.0158576f,-0.283808f,0.125231f},{-0.0171072f,-0.284839f,0.125161f}, - {-0.0215683f,-0.287817f,0.123126f},{-0.0217015f,-0.287733f,0.122512f},{-0.0175107f,-0.284451f,0.124775f}, - {-0.0186268f,-0.285695f,0.124775f},{-0.0181976f,-0.286054f,0.125161f},{-0.0203623f,-0.286511f,0.12373f}, - {-0.0200519f,-0.286736f,0.12429f},{-0.0210134f,-0.288163f,0.12429f},{-0.0213388f,-0.28796f,0.12373f}, - {-0.0151117f,-0.284631f,0.125592f},{-0.0154943f,-0.284209f,0.125455f},{-0.0162253f,-0.285687f,0.12559f}, - {-0.0207085f,-0.28626f,0.122512f},{-0.0196196f,-0.284864f,0.122512f},{-0.018444f,-0.283554f,0.122512f}, - {-0.0171936f,-0.282336f,0.122494f},{-0.0241699f,-0.294302f,0.12373f},{-0.0238868f,-0.292565f,0.123126f}, - {-0.0205814f,-0.286352f,0.123126f},{-0.0194991f,-0.284964f,0.123126f},{-0.0183308f,-0.283663f,0.123126f}, - {-0.0171022f,-0.282437f,0.12306f},{-0.02436f,-0.296016f,0.1241f},{-0.0236326f,-0.292658f,0.12373f}, - {-0.0169519f,-0.282602f,0.123601f},{-0.0222178f,-0.294866f,0.125434f},{-0.0230629f,-0.296296f,0.125233f}, - {-0.0232723f,-0.29279f,0.12429f},{-0.0196606f,-0.28702f,0.124775f},{-0.0178592f,-0.284116f,0.12429f}, - {-0.0167464f,-0.282829f,0.1241f},{-0.0221874f,-0.291398f,0.124775f},{-0.0228181f,-0.292956f,0.124775f}, - {-0.0214477f,-0.289882f,0.124775f},{-0.0206034f,-0.288419f,0.124775f},{-0.0164907f,-0.283111f,0.124546f}, - {-0.0222924f,-0.293148f,0.125161f},{-0.0201286f,-0.288716f,0.125161f},{-0.0192076f,-0.287349f,0.125161f}, - {-0.0161924f,-0.283439f,0.124925f},{-0.0225375f,-0.29641f,0.125456f},{-0.0204192f,-0.290429f,0.125434f}, - {-0.0196153f,-0.289036f,0.125434f},{-0.0187178f,-0.287705f,0.125434f},{-0.0172595f,-0.286839f,0.12559f}, - {-0.0177335f,-0.286443f,0.125434f},{-0.0205588f,-0.292124f,0.12559f},{-0.0198733f,-0.290719f,0.12559f}, - {-0.019091f,-0.289364f,0.12559f},{-0.0182174f,-0.288068f,0.12559f},{-0.000885136f,-0.275874f,0.123126f}, - {-0.00261846f,-0.276266f,0.12373f},{-0.000875717f,-0.276144f,0.12373f},{-0.00441602f,-0.276086f,0.122512f}, - {-0.00266296f,-0.275841f,0.122512f},{-0.00257853f,-0.276647f,0.12429f},{-0.00609912f,-0.276601f,0.123126f}, - {-0.00613678f,-0.276448f,0.122512f},{-0.0077748f,-0.277053f,0.123065f},{-0.00781658f,-0.276923f,0.122497f}, - {-0.00539858f,-0.279436f,0.12559f},{-0.00388481f,-0.279117f,0.12559f},{-0.00399151f,-0.278508f,0.125434f}, - {-0.00749724f,-0.277918f,0.124546f},{-0.00582624f,-0.277705f,0.124775f},{-0.00594221f,-0.277236f,0.12429f}, - {-0.00246996f,-0.277685f,0.125161f},{-0.00240697f,-0.278287f,0.125434f},{-0.000826054f,-0.27757f,0.125161f}, - {-0.005692f,-0.278249f,0.125161f},{-0.00736026f,-0.278345f,0.124929f},{-0.000890602f,-0.275717f,0.122512f}, - {-0.00264662f,-0.275997f,0.123126f},{0.00427461f,-0.276884f,0.12429f},{0.00603421f,-0.276863f,0.12373f}, - {0.0043408f,-0.276506f,0.12373f},{-0.00687127f,-0.279869f,0.125592f},{0.000860185f,-0.276528f,0.12429f}, - {0.00261652f,-0.276265f,0.12373f},{0.000873503f,-0.276144f,0.12373f},{-0.000862365f,-0.276528f,0.12429f}, - {0.00582624f,-0.277705f,0.124775f},{0.00419119f,-0.27736f,0.124775f},{0.00409462f,-0.277912f,0.125161f}, - {0.00554685f,-0.278836f,0.125434f},{0.00720884f,-0.278817f,0.125232f},{0.005692f,-0.278249f,0.125161f}, - {0.00257663f,-0.276647f,0.12429f},{0.00687127f,-0.279869f,0.125592f},{0.00704464f,-0.279329f,0.125455f}, - {0.00539858f,-0.279436f,0.12559f},{0.00088835f,-0.275717f,0.122512f},{0.000882898f,-0.275874f,0.123126f}, - {0.002661f,-0.27584f,0.122512f},{0.00441458f,-0.276085f,0.122512f},{0.00613678f,-0.276448f,0.122512f}, - {-0.00770679f,-0.277265f,0.123602f},{-0.00603421f,-0.276863f,0.12373f},{-0.00438891f,-0.27624f,0.123126f}, - {0.00264467f,-0.275996f,0.123126f},{0.00609912f,-0.276601f,0.123126f},{0.00438748f,-0.27624f,0.123126f}, - {0.00781658f,-0.276923f,0.122497f},{0.0077751f,-0.277052f,0.123062f},{-0.00761353f,-0.277556f,0.1241f}, - {-0.00434221f,-0.276507f,0.12373f},{0.00770709f,-0.277264f,0.1236f},{-0.00554685f,-0.278836f,0.125434f}, - {-0.00720812f,-0.278819f,0.125233f},{-0.004276f,-0.276885f,0.12429f},{0.00252634f,-0.277128f,0.124775f}, - {0.00594221f,-0.277236f,0.12429f},{0.00761404f,-0.277554f,0.124098f},{-0.00252821f,-0.277128f,0.124775f}, - {-0.00419255f,-0.277361f,0.124775f},{-0.000845536f,-0.277011f,0.124775f},{0.000843398f,-0.277011f,0.124775f}, - {0.00749724f,-0.277918f,0.124546f},{-0.00409595f,-0.277912f,0.125161f},{0.000823965f,-0.27757f,0.125161f}, - {0.00246814f,-0.277685f,0.125161f},{0.00736095f,-0.278343f,0.124927f},{-0.00704393f,-0.279331f,0.125456f}, - {-0.000804989f,-0.278175f,0.125434f},{0.000802953f,-0.278175f,0.125434f},{0.0024052f,-0.278286f,0.125434f}, - {0.00388354f,-0.279117f,0.12559f},{0.00399021f,-0.278508f,0.125434f},{-0.00234263f,-0.278902f,0.12559f}, - {-0.00078347f,-0.278793f,0.12559f},{0.000781489f,-0.278793f,0.12559f},{0.0023409f,-0.278901f,0.12559f}, - {0.0217002f,-0.287732f,0.122512f},{0.02058f,-0.286351f,0.123126f},{0.021567f,-0.287815f,0.123126f}, - {0.0207071f,-0.286258f,0.122512f},{0.020361f,-0.28651f,0.12373f},{0.0213375f,-0.287958f,0.12373f}, - {0.0200505f,-0.286735f,0.12429f},{0.0183308f,-0.283663f,0.123126f},{0.018444f,-0.283554f,0.122512f}, - {0.0171012f,-0.282438f,0.123065f},{0.0169516f,-0.282602f,0.123602f},{0.0172584f,-0.286839f,0.12559f}, - {0.0177324f,-0.286442f,0.125434f},{0.0162253f,-0.285687f,0.12559f},{0.0171931f,-0.282336f,0.122497f}, - {0.0196183f,-0.284863f,0.122512f},{0.0171072f,-0.284839f,0.125161f},{0.0175107f,-0.284451f,0.124775f}, - {0.0161894f,-0.283443f,0.124929f},{0.0201275f,-0.288714f,0.125161f},{0.0192063f,-0.287348f,0.125161f}, - {0.0187165f,-0.287703f,0.125434f},{0.0151138f,-0.284628f,0.125592f},{0.0178592f,-0.284116f,0.12429f}, - {0.0164907f,-0.283111f,0.124546f},{0.0232721f,-0.292788f,0.12429f},{0.0241699f,-0.294302f,0.12373f}, - {0.0236324f,-0.292657f,0.12373f},{0.0210122f,-0.288161f,0.12429f},{0.0222178f,-0.294866f,0.125434f}, - {0.0230652f,-0.296296f,0.125232f},{0.0227992f,-0.294698f,0.125161f},{0.0224512f,-0.289346f,0.123126f}, - {0.0225899f,-0.289272f,0.122512f},{0.0233369f,-0.294543f,0.124775f},{0.0228179f,-0.292954f,0.124775f}, - {0.0222922f,-0.293146f,0.125161f},{0.0229789f,-0.291043f,0.12373f},{0.0226285f,-0.291199f,0.12429f}, - {0.0218736f,-0.289653f,0.12429f},{0.0222123f,-0.289473f,0.12373f},{0.0219851f,-0.29653f,0.125592f}, - {0.0225398f,-0.29641f,0.125455f},{0.0216239f,-0.295038f,0.12559f},{0.0233694f,-0.290869f,0.122512f}, - {0.0240341f,-0.29251f,0.122512f},{0.0245807f,-0.294183f,0.122512f},{0.0250097f,-0.295875f,0.122497f}, - {0.0181357f,-0.28385f,0.12373f},{0.0194979f,-0.284964f,0.123126f},{0.023226f,-0.290933f,0.123126f}, - {0.0238866f,-0.292564f,0.123126f},{0.0244299f,-0.294227f,0.123126f},{0.024877f,-0.295904f,0.123062f}, - {0.0167465f,-0.282829f,0.1241f},{0.0192904f,-0.285137f,0.12373f},{0.0246594f,-0.295951f,0.1236f}, - {0.016671f,-0.285259f,0.125434f},{0.0158548f,-0.283812f,0.125233f},{0.0189963f,-0.285384f,0.12429f}, - {0.0221869f,-0.291396f,0.124775f},{0.0238014f,-0.294408f,0.12429f},{0.0243617f,-0.296015f,0.124098f}, - {0.0196592f,-0.287019f,0.124775f},{0.0186256f,-0.285694f,0.124775f},{0.0206021f,-0.288418f,0.124775f}, - {0.0214468f,-0.28988f,0.124775f},{0.0239879f,-0.296096f,0.124546f},{0.0181964f,-0.286053f,0.125161f}, - {0.0209526f,-0.290143f,0.125161f},{0.0216757f,-0.291624f,0.125161f},{0.0235519f,-0.296191f,0.124927f}, - {0.0154936f,-0.28421f,0.125456f},{0.0196142f,-0.289035f,0.125434f},{0.0204183f,-0.290427f,0.125434f}, - {0.0211229f,-0.291871f,0.125434f},{0.021143f,-0.293566f,0.12559f},{0.0217237f,-0.293354f,0.125434f}, - {0.0182162f,-0.288066f,0.12559f},{0.0190899f,-0.289362f,0.12559f},{0.0198725f,-0.290718f,0.12559f}, - {0.0205583f,-0.292122f,0.12559f},{0.00414391f,-0.307489f,0.100469f},{0.00139737f,-0.303708f,0.100469f}, - {0.00179665f,-0.303429f,0.100469f},{0.00285439f,-0.308179f,0.100469f},{0.00351607f,-0.307865f,0.100469f}, - {0.00216513f,-0.308425f,0.100469f},{0.000956049f,-0.303916f,0.100469f},{0.0047319f,-0.307053f,0.100469f}, - {0.00527427f,-0.306562f,0.100469f},{0.00145499f,-0.308603f,0.100469f},{0.000485772f,-0.304043f,0.100469f}, - {0.00214182f,-0.303085f,0.100469f},{0.00576579f,-0.30602f,0.100469f},{0.000730938f,-0.30871f,0.100469f}, - {5.39729e-017f,-0.304085f,0.100469f},{0.00620174f,-0.305432f,0.100469f},{0.00242194f,-0.302686f,0.100469f}, - {5.29897e-017f,-0.308746f,0.100469f},{-0.000731236f,-0.30871f,0.100469f},{-0.00145532f,-0.308602f,0.100469f}, - {-0.000485107f,-0.304043f,0.100469f},{-0.00216527f,-0.308424f,0.100469f},{-0.000955564f,-0.303917f,0.100469f}, - {0.00689072f,-0.304142f,0.100469f},{0.00657793f,-0.304804f,0.100469f},{-0.00351606f,-0.307865f,0.100469f}, - {-0.00285433f,-0.308178f,0.100469f},{0.00713697f,-0.303453f,0.100469f},{0.00262754f,-0.302244f,0.100469f}, - {0.00275363f,-0.301773f,0.100469f},{-0.00139499f,-0.303708f,0.100469f},{0.00742217f,-0.302019f,0.100469f}, - {0.00731456f,-0.302743f,0.100469f},{-0.00214373f,-0.303089f,0.100469f},{-0.00178917f,-0.303421f,0.100469f}, - {-0.00527358f,-0.306561f,0.100469f},{-0.00657692f,-0.304803f,0.100469f},{-0.00688983f,-0.304142f,0.100469f}, - {-0.00262887f,-0.302246f,0.100469f},{-0.00275512f,-0.301775f,0.100469f},{-0.00742136f,-0.302019f,0.100469f}, - {-0.0071365f,-0.303453f,0.100469f},{-0.00731416f,-0.302743f,0.100469f},{-0.00473148f,-0.307052f,0.100469f}, - {-0.00414378f,-0.307489f,0.100469f},{-0.00620074f,-0.305431f,0.100469f},{-0.00242212f,-0.302687f,0.100469f}, - {-0.0057649f,-0.306018f,0.100469f},{0.00060826f,-0.289127f,0.101401f},{0.00178435f,-0.288815f,0.101401f}, - {0.002331f,-0.288545f,0.101401f},{0.00216527f,-0.308424f,0.101401f},{0.00536018f,-0.312009f,0.101401f}, - {0.00742136f,-0.302019f,0.101401f},{0.0121618f,-0.301897f,0.101401f},{0.0071365f,-0.303453f,0.101401f}, - {0.0127432f,-0.30362f,0.101401f},{0.00688983f,-0.304142f,0.101401f},{0.00403701f,-0.286839f,0.101401f}, - {0.00430572f,-0.282725f,0.101401f},{0.014297f,-0.31439f,0.101401f},{-0.00279832f,-0.280033f,0.101401f}, - {0.0214014f,-0.301897f,0.101401f},{-0.00689197f,-0.280986f,0.101401f},{-0.00820481f,-0.28148f,0.101401f}, - {0.021279f,-0.302494f,0.101401f},{0.0210836f,-0.303071f,0.101401f},{0.0134836f,-0.304585f,0.101401f}, - {0.00657692f,-0.304803f,0.101401f},{0.0130817f,-0.304126f,0.101401f},{-0.00893219f,-0.312768f,0.101401f}, - {-0.00372602f,-0.315267f,0.101401f},{-0.00406291f,-0.315783f,0.101401f},{0.0208166f,-0.303619f,0.101401f}, - {0.0200754f,-0.304584f,0.101401f},{0.0204775f,-0.304126f,0.101401f},{0.0196172f,-0.304986f,0.101401f}, - {0.0139105f,-0.312566f,0.101401f},{0.0141391f,-0.312881f,0.101401f},{-0.00216513f,-0.308425f,0.101401f}, - {-0.00235358f,-0.314045f,0.101401f},{-0.00285439f,-0.308179f,0.101401f},{0.0191105f,-0.305324f,0.101401f}, - {0.0185639f,-0.305594f,0.101401f},{0.0167797f,-0.30595f,0.101401f},{0.0173884f,-0.30591f,0.101401f}, - {0.0179866f,-0.30579f,0.101401f},{-0.0141364f,-0.285168f,0.101401f},{-0.00948265f,-0.282059f,0.101401f}, - {-0.00121835f,-0.313576f,0.101401f},{-0.00145499f,-0.308603f,0.101401f},{-0.000730938f,-0.30871f,0.101401f}, - {0.0161715f,-0.30591f,0.101401f},{-0.00180244f,-0.31377f,0.101401f},{0.00620074f,-0.305431f,0.101401f}, - {-0.00286368f,-0.31439f,0.101401f},{0.0143784f,-0.313619f,0.101401f},{-0.0107514f,-0.289341f,0.101401f}, - {-0.0109097f,-0.289697f,0.101401f},{-0.00140229f,-0.279893f,0.101401f},{0.00329545f,-0.281213f,0.101401f}, - {0.00369728f,-0.281671f,0.101401f},{0.0057649f,-0.306018f,0.101401f},{0.00466102f,-0.284509f,0.101401f}, - {0.00462104f,-0.2839f,0.101401f},{0.00731416f,-0.302743f,0.101401f},{0.0124736f,-0.303073f,0.101401f}, - {0.0121612f,-0.291674f,0.101401f},{0.0109346f,-0.292565f,0.101401f},{0.0113045f,-0.292445f,0.101401f}, - {0.0123195f,-0.291319f,0.101401f},{0.0116418f,-0.292251f,0.101401f},{0.0119314f,-0.29199f,0.101401f}, - {0.0136206f,-0.312305f,0.101401f},{0.0136193f,-0.315322f,0.101401f},{0.013282f,-0.315516f,0.101401f}, - {0.013283f,-0.31211f,0.101401f},{0.0155736f,-0.305791f,0.101401f},{0.00473148f,-0.307052f,0.101401f}, - {0.00527358f,-0.306561f,0.101401f},{-0.0170097f,-0.288236f,0.101401f},{-0.00751912f,-0.321368f,0.101401f}, - {-0.00885348f,-0.320816f,0.101401f},{-0.00460913f,-0.318761f,0.101401f},{0.00285433f,-0.308178f,0.101401f}, - {0.00351606f,-0.307865f,0.101401f},{0.000731236f,-0.30871f,0.101401f},{0.00145532f,-0.308602f,0.101401f}, - {-0.0151604f,-0.286127f,0.101401f},{-0.0161195f,-0.287151f,0.101401f},{-0.0124736f,-0.299504f,0.101401f}, - {-0.0122844f,-0.300083f,0.101401f},{5.29897e-017f,-0.308746f,0.101401f},{-0.0043287f,-0.316339f,0.101401f}, - {-0.00916198f,-0.313083f,0.101401f},{-0.0107204f,-0.295928f,0.101401f},{-0.00869272f,-0.312031f,0.101401f}, - {-0.00332386f,-0.3148f,0.101401f},{-0.017827f,-0.289376f,0.101401f},{-0.00731456f,-0.302743f,0.101401f}, - {-0.00713697f,-0.303453f,0.101401f},{-0.00742217f,-0.302019f,0.101401f},{-0.0196172f,-0.297591f,0.101401f}, - {-0.0200754f,-0.297993f,0.101401f},{-0.0210285f,-0.297105f,0.101401f},{-0.0158194f,-0.315761f,0.101401f}, - {-0.0167576f,-0.314664f,0.101401f},{-0.0176198f,-0.313505f,0.101401f},{-0.00462997f,-0.317531f,0.101401f}, - {-0.0101477f,-0.320176f,0.101401f},{-0.0125926f,-0.318642f,0.101401f},{-0.013732f,-0.317755f,0.101401f}, - {-0.00466034f,-0.318147f,0.101401f},{-0.00426727f,-0.319943f,0.101401f},{-0.00615062f,-0.321828f,0.101401f}, - {-0.00447731f,-0.319363f,0.101401f},{-0.00165506f,-0.322422f,0.101401f},{-0.00190339f,-0.322647f,0.101401f}, - {-0.0022162f,-0.322169f,0.101401f},{-0.00362862f,-0.320993f,0.101401f},{-0.00475417f,-0.322196f,0.101401f}, - {-0.00398274f,-0.320489f,0.101401f},{-0.00321095f,-0.321446f,0.101401f},{-0.00273734f,-0.32184f,0.101401f}, - {-0.00333373f,-0.322455f,0.101401f},{-0.00106651f,-0.322603f,0.101401f},{-0.000459362f,-0.322708f,0.101401f}, - {-0.0101588f,-0.313659f,0.101401f},{-0.011396f,-0.31945f,0.101401f},{-0.0148092f,-0.316793f,0.101401f}, - {-0.0184021f,-0.312292f,0.101401f},{-0.0212465f,-0.304168f,0.101401f},{-0.0210045f,-0.305592f,0.101401f}, - {-0.0206672f,-0.306996f,0.101401f},{0.0122844f,-0.302494f,0.101401f},{-0.0047319f,-0.307053f,0.101401f}, - {-0.00893177f,-0.310904f,0.101401f},{-0.00916039f,-0.310589f,0.101401f},{-0.019101f,-0.311028f,0.101401f}, - {-0.00978889f,-0.313539f,0.101401f},{-0.0213921f,-0.302732f,0.101401f},{-0.0111395f,-0.290013f,0.101401f}, - {-0.0114291f,-0.290273f,0.101401f},{-0.00576579f,-0.30602f,0.101401f},{-0.00527427f,-0.306562f,0.101401f}, - {-0.00945026f,-0.310327f,0.101401f},{-0.00978794f,-0.310132f,0.101401f},{-0.0101578f,-0.310012f,0.101401f}, - {-0.00620174f,-0.305432f,0.101401f},{-0.00877329f,-0.31126f,0.101401f},{-0.00414391f,-0.307489f,0.101401f}, - {-0.00351607f,-0.307865f,0.101401f},{-0.0045188f,-0.316925f,0.101401f},{-0.0094516f,-0.313344f,0.101401f}, - {-0.000614697f,-0.313451f,0.101401f},{0.0139422f,-0.304987f,0.101401f},{0.00414378f,-0.307489f,0.101401f}, - {0.0144494f,-0.305326f,0.101401f},{0.0124009f,-0.290548f,0.101401f},{0.011933f,-0.289496f,0.101401f}, - {0.00430656f,-0.286292f,0.101401f},{0.00178272f,-0.280205f,0.101401f},{-0.00418236f,-0.280262f,0.101401f}, - {-0.0106702f,-0.28896f,0.101401f},{-0.00554911f,-0.280579f,0.101401f},{-0.0130817f,-0.298451f,0.101401f}, - {-0.0134836f,-0.297992f,0.101401f},{-0.013052f,-0.284278f,0.101401f},{-0.0185679f,-0.290568f,0.101401f}, - {-0.0203026f,-0.294396f,0.101401f},{-0.0185639f,-0.296983f,0.101401f},{-0.0207099f,-0.295739f,0.101401f}, - {-0.00689072f,-0.304142f,0.101401f},{-0.0119116f,-0.283461f,0.101401f},{-0.0117654f,-0.287061f,0.101401f}, - {-0.0121353f,-0.286941f,0.101401f},{-0.0192293f,-0.291805f,0.101401f},{-0.0149963f,-0.296982f,0.101401f}, - {-0.0121618f,-0.30068f,0.101401f},{-0.0109093f,-0.287833f,0.101401f},{-0.0111379f,-0.287518f,0.101401f}, - {-0.0106699f,-0.28857f,0.101401f},{-0.01072f,-0.28272f,0.101401f},{-0.0114278f,-0.287256f,0.101401f}, - {0.00120563f,-0.289004f,0.101401f},{0.0116431f,-0.289234f,0.101401f},{0.0113054f,-0.289039f,0.101401f}, - {0.0124007f,-0.290938f,0.101401f},{0.00462115f,-0.285117f,0.101401f},{0.00283787f,-0.288207f,0.101401f}, - {0.00329614f,-0.287805f,0.101401f},{0.00369829f,-0.287346f,0.101401f},{0.0123201f,-0.290166f,0.101401f}, - {0.0121616f,-0.28981f,0.101401f},{0.0109356f,-0.288919f,0.101401f},{0.0149963f,-0.305595f,0.101401f}, - {0.0129131f,-0.311989f,0.101401f},{0.0129121f,-0.315636f,0.101401f},{0.0139089f,-0.315061f,0.101401f}, - {0.0141387f,-0.314745f,0.101401f},{0.0143782f,-0.314009f,0.101401f},{0.0142976f,-0.313237f,0.101401f}, - {-0.0202361f,-0.308374f,0.101401f},{-0.0197133f,-0.30972f,0.101401f},{-0.00869244f,-0.311641f,0.101401f}, - {-0.00877392f,-0.312412f,0.101401f},{-0.00657793f,-0.304804f,0.101401f},{-0.0107508f,-0.288189f,0.101401f}, - {0.00450236f,-0.285715f,0.101401f},{0.00450189f,-0.283302f,0.101401f},{0.00403597f,-0.282178f,0.101401f}, - {0.00283697f,-0.280811f,0.101401f},{0.00233026f,-0.280472f,0.101401f},{0.0006084f,-0.279887f,0.101401f}, - {0.00120559f,-0.280009f,0.101401f},{-0.0210836f,-0.299506f,0.101401f},{-0.0213948f,-0.299886f,0.101401f}, - {-0.0212572f,-0.29849f,0.101401f},{-0.0198084f,-0.293083f,0.101401f},{-0.0167797f,-0.296628f,0.101401f}, - {-0.0173884f,-0.296667f,0.101401f},{-0.0161715f,-0.296667f,0.101401f},{-0.0127432f,-0.298958f,0.101401f}, - {-0.0155736f,-0.296786f,0.101401f},{-0.0139422f,-0.29759f,0.101401f},{-0.0144494f,-0.297252f,0.101401f}, - {-0.0121363f,-0.290588f,0.101401f},{-0.0117664f,-0.290468f,0.101401f},{-0.0179866f,-0.296787f,0.101401f}, - {-0.0191105f,-0.297253f,0.101401f},{-0.0204775f,-0.298452f,0.101401f},{-0.0208166f,-0.298958f,0.101401f}, - {-0.0214014f,-0.30068f,0.101401f},{-0.021279f,-0.300083f,0.101401f},{0.0220868f,-0.314303f,0.120045f}, - {0.0197356f,-0.31765f,0.120045f},{-0.0164263f,-0.281003f,0.120045f},{-0.0174654f,-0.281891f,0.120045f}, - {0.0227481f,-0.313109f,0.120045f},{-0.0130507f,-0.278683f,0.120045f},{-0.0142159f,-0.279397f,0.120045f}, - {0.0243386f,-0.30934f,0.120045f},{-0.00935393f,-0.27692f,0.120045f},{-0.0106164f,-0.277443f,0.120045f}, - {0.0253094f,-0.305366f,0.120045f},{-0.00542685f,-0.275757f,0.120045f},{-0.00408328f,-0.275508f,0.120045f}, - {-0.0067556f,-0.276076f,0.120045f},{-0.00806585f,-0.276464f,0.120045f},{-0.00136583f,-0.275231f,0.120045f}, - {-0.00272847f,-0.27533f,0.120045f},{0.025591f,-0.302653f,0.120045f},{0.0254905f,-0.304014f,0.120045f}, - {-0.0118498f,-0.278032f,0.120045f},{0.0247326f,-0.308033f,0.120045f},{0.0250564f,-0.306708f,0.120045f}, - {-0.0153421f,-0.280171f,0.120045f},{0.0233448f,-0.311881f,0.120045f},{0.0238755f,-0.310624f,0.120045f}, - {-0.0184567f,-0.282831f,0.120045f},{-0.0193973f,-0.283823f,0.120045f},{0.0213629f,-0.31546f,0.120045f}, - {-0.0202847f,-0.284862f,0.120045f},{-0.0211166f,-0.285946f,0.120045f},{-0.0218906f,-0.287072f,0.120045f}, - {0.0205784f,-0.316577f,0.120045f},{-0.0226048f,-0.288237f,0.120045f},{-0.0232569f,-0.289438f,0.120045f}, - {0.0188369f,-0.318677f,0.120045f},{-0.0238452f,-0.290672f,0.120045f},{0.0178847f,-0.319655f,0.120045f}, - {-0.0243681f,-0.291934f,0.120045f},{0.0168818f,-0.320581f,0.120045f},{-0.0248242f,-0.293222f,0.120045f}, - {0.0158311f,-0.321452f,0.120045f},{-0.0252123f,-0.294533f,0.120045f},{0.0147355f,-0.322266f,0.120045f}, - {-0.0255314f,-0.295862f,0.120045f},{0.0135981f,-0.323021f,0.120045f},{-0.0257804f,-0.297205f,0.120045f}, - {0.0124222f,-0.323714f,0.120045f},{-0.0259588f,-0.29856f,0.120045f},{0.011211f,-0.324343f,0.120045f}, - {-0.0260659f,-0.299922f,0.120045f},{0.00996802f,-0.324907f,0.120045f},{-0.0261017f,-0.301289f,0.120045f}, - {0.00869678f,-0.325404f,0.120045f},{-0.0255903f,-0.302653f,0.120045f},{-0.0260659f,-0.302655f,0.120045f}, - {0.00740092f,-0.325833f,0.120045f},{-0.0254908f,-0.304013f,0.120045f},{-0.0259586f,-0.304017f,0.120045f}, - {0.00608407f,-0.326192f,0.120045f},{-0.0253091f,-0.305366f,0.120045f},{-0.0257802f,-0.305372f,0.120045f}, - {0.00474994f,-0.32648f,0.120045f},{0.00340235f,-0.326697f,0.120045f},{0.000682229f,-0.326915f,0.120045f}, - {-0.0250563f,-0.306707f,0.120045f},{-0.0255311f,-0.306716f,0.120045f},{-0.00272834f,-0.327248f,0.120045f}, - {-0.00340291f,-0.326697f,0.120045f},{-0.00408304f,-0.327069f,0.120045f},{-0.0238754f,-0.310623f,0.120045f}, - {-0.0243383f,-0.30934f,0.120045f},{-0.0243677f,-0.310643f,0.120045f},{-0.00675524f,-0.326501f,0.120045f}, - {-0.00740123f,-0.325832f,0.120045f},{-0.00806539f,-0.326113f,0.120045f},{-0.0226042f,-0.31434f,0.120045f}, - {-0.0227481f,-0.313108f,0.120045f},{-0.0232562f,-0.313139f,0.120045f},{-0.0118493f,-0.324546f,0.120045f}, - {-0.010616f,-0.325134f,0.120045f},{-0.011211f,-0.324342f,0.120045f},{-0.0202843f,-0.317715f,0.120045f}, - {-0.0205783f,-0.316576f,0.120045f},{-0.0211162f,-0.316631f,0.120045f},{-0.0164256f,-0.321574f,0.120045f}, - {-0.0168818f,-0.320581f,0.120045f},{-0.0174647f,-0.320686f,0.120045f},{-0.0130502f,-0.323894f,0.120045f}, - {-0.0124221f,-0.323713f,0.120045f},{-0.0188368f,-0.318677f,0.120045f},{-0.0193967f,-0.318755f,0.120045f}, - {-0.018456f,-0.319746f,0.120045f},{-0.0178847f,-0.319655f,0.120045f},{-0.0153414f,-0.322406f,0.120045f}, - {-0.0142153f,-0.32318f,0.120045f},{-0.0147355f,-0.322266f,0.120045f},{-0.0135981f,-0.32302f,0.120045f}, - {-0.0197355f,-0.31765f,0.120045f},{-0.0158312f,-0.321452f,0.120045f},{-0.00869705f,-0.325404f,0.120045f}, - {-0.00935349f,-0.325657f,0.120045f},{-0.00996818f,-0.324907f,0.120045f},{-0.0220867f,-0.314302f,0.120045f}, - {-0.0218902f,-0.315505f,0.120045f},{-0.0213628f,-0.315459f,0.120045f},{-0.00475041f,-0.32648f,0.120045f}, - {-0.00542662f,-0.32682f,0.120045f},{-0.00608443f,-0.326192f,0.120045f},{-0.0233449f,-0.311881f,0.120045f}, - {-0.0238446f,-0.311906f,0.120045f},{-0.000682695f,-0.326915f,0.120045f},{-0.00136576f,-0.327345f,0.120045f}, - {-0.00204572f,-0.326842f,0.120045f},{-0.0252122f,-0.308045f,0.120045f},{-0.0247324f,-0.308033f,0.120045f}, - {-0.024824f,-0.309355f,0.120045f},{0.00204515f,-0.326842f,0.120045f},{-0.00544975f,-0.326815f,0.106062f}, - {-0.00410773f,-0.327065f,0.106062f},{-0.00275036f,-0.327245f,0.106062f},{-0.00935782f,-0.325655f,0.106062f}, - {-0.00677384f,-0.326496f,0.106062f},{-0.0141962f,-0.323192f,0.106062f},{-0.0130343f,-0.323903f,0.106062f}, - {-0.0118389f,-0.324551f,0.106062f},{-0.0106125f,-0.325135f,0.106062f},{-0.0174549f,-0.320695f,0.106062f}, - {-0.015322f,-0.32242f,0.106062f},{-0.0211314f,-0.316611f,0.106062f},{-0.0202988f,-0.317698f,0.106062f}, - {-0.0194069f,-0.318743f,0.106062f},{-0.0184567f,-0.319745f,0.106062f},{-0.0232623f,-0.313128f,0.106062f}, - {-0.0219036f,-0.315485f,0.106062f},{-0.0252074f,-0.308063f,0.106062f},{-0.0248204f,-0.309366f,0.106062f}, - {-0.0243664f,-0.310647f,0.106062f},{-0.0238467f,-0.311901f,0.106062f},{-0.0257765f,-0.305396f,0.106062f}, - {-0.0259565f,-0.304039f,0.106062f},{-0.0255265f,-0.306739f,0.106062f},{-0.0260653f,-0.299908f,0.106062f}, - {-0.0261017f,-0.301289f,0.106062f},{-0.0260652f,-0.302669f,0.106062f},{-0.0255265f,-0.295839f,0.106062f}, - {-0.0257766f,-0.297181f,0.106062f},{-0.0259565f,-0.298538f,0.106062f},{-0.0248205f,-0.293211f,0.106062f}, - {-0.0252075f,-0.294515f,0.106062f},{-0.0238468f,-0.290676f,0.106062f},{-0.0232624f,-0.28945f,0.106062f}, - {-0.0243666f,-0.291931f,0.106062f},{-0.0219036f,-0.287092f,0.106062f},{-0.0226143f,-0.288254f,0.106062f}, - {-0.0202989f,-0.284879f,0.106062f},{-0.0211315f,-0.285967f,0.106062f},{-0.0184567f,-0.282832f,0.106062f}, - {-0.0194069f,-0.283834f,0.106062f},{-0.0174549f,-0.281882f,0.106062f},{-0.0164092f,-0.28099f,0.106062f}, - {-0.0153222f,-0.280157f,0.106062f},{-0.0141964f,-0.279385f,0.106062f},{-0.0130346f,-0.278674f,0.106062f}, - {-0.0118391f,-0.278026f,0.106062f},{-0.0106128f,-0.277442f,0.106062f},{-0.00935809f,-0.276922f,0.106062f}, - {-0.00807765f,-0.276468f,0.106062f},{-0.00677408f,-0.276081f,0.106062f},{-0.00544996f,-0.275762f,0.106062f}, - {-0.0041079f,-0.275512f,0.106062f},{-0.00275048f,-0.275332f,0.106062f},{-0.00138032f,-0.275223f,0.106062f}, - {-0.0226142f,-0.314323f,0.106062f},{-0.0164091f,-0.321587f,0.106062f},{-0.0080774f,-0.326109f,0.106062f}, - {-0.00138025f,-0.327354f,0.106062f},{-0.0164242f,-0.315071f,0.106062f},{-0.0128032f,-0.318487f,0.106062f}, - {-0.00849194f,-0.320976f,0.106062f},{-0.00372282f,-0.322402f,0.106062f},{-0.00124674f,-0.322693f,0.106062f}, - {-0.00248901f,-0.322583f,0.106062f},{-0.00733302f,-0.321436f,0.106062f},{-0.00962222f,-0.320449f,0.106062f}, - {-0.01072f,-0.319857f,0.106062f},{-0.0117816f,-0.319202f,0.106062f},{-0.0155951f,-0.316002f,0.106062f}, - {-0.0147132f,-0.316884f,0.106062f},{-0.0137815f,-0.317713f,0.106062f},{-0.0185679f,-0.312009f,0.106062f}, - {-0.0179131f,-0.313071f,0.106062f},{-0.0171977f,-0.314092f,0.106062f},{-0.0191599f,-0.310912f,0.106062f}, - {-0.0196869f,-0.309781f,0.106062f},{-0.0201474f,-0.308622f,0.106062f},{-0.0205397f,-0.307438f,0.106062f}, - {-0.0208625f,-0.306233f,0.106062f},{-0.0211148f,-0.305012f,0.106062f},{-0.0212956f,-0.303778f,0.106062f}, - {-0.0214044f,-0.302535f,0.106062f},{-0.0214407f,-0.301289f,0.106062f},{-0.0214044f,-0.300042f,0.106062f}, - {-0.0212958f,-0.298799f,0.106062f},{-0.021115f,-0.297565f,0.106062f},{-0.0208629f,-0.296344f,0.106062f}, - {-0.0205401f,-0.295139f,0.106062f},{-0.0201478f,-0.293955f,0.106062f},{-0.0196872f,-0.292796f,0.106062f}, - {-0.0185682f,-0.290568f,0.106062f},{-0.00248899f,-0.279996f,0.106062f},{-0.00124708f,-0.279883f,0.106062f}, - {-0.0164246f,-0.287506f,0.106062f},{-0.00494506f,-0.280426f,0.106062f},{-0.00614966f,-0.280749f,0.106062f}, - {-0.0137818f,-0.284864f,0.106062f},{-0.0147135f,-0.285693f,0.106062f},{-0.0107205f,-0.28272f,0.106062f}, - {-0.0117819f,-0.283375f,0.106062f},{-0.0128035f,-0.28409f,0.106062f},{-0.00849255f,-0.281601f,0.106062f}, - {-0.00733349f,-0.281141f,0.106062f},{-0.00962282f,-0.282128f,0.106062f},{-0.00372197f,-0.280183f,0.106062f}, - {-0.0155954f,-0.286575f,0.106062f},{-0.0179135f,-0.289507f,0.106062f},{-0.0171982f,-0.288485f,0.106062f}, - {-0.0191601f,-0.291666f,0.106062f},{-0.00494408f,-0.322149f,0.106062f},{-0.00614928f,-0.321829f,0.106062f}, - {-0.00496191f,-0.322147f,0.10513f},{-0.00374312f,-0.3224f,0.10513f},{-0.00250793f,-0.322582f,0.10513f}, - {-0.00849036f,-0.320976f,0.10513f},{-0.00616138f,-0.321825f,0.10513f},{-0.0127873f,-0.318499f,0.10513f}, - {-0.0117655f,-0.319213f,0.10513f},{-0.0107068f,-0.319865f,0.10513f},{-0.00961408f,-0.320453f,0.10513f}, - {-0.0155998f,-0.315997f,0.10513f},{-0.0137691f,-0.317724f,0.10513f},{-0.018576f,-0.311996f,0.10513f}, - {-0.0179242f,-0.313054f,0.10513f},{-0.0172102f,-0.314076f,0.10513f},{-0.0201457f,-0.308627f,0.10513f}, - {-0.0196879f,-0.309779f,0.10513f},{-0.0191643f,-0.310903f,0.10513f},{-0.0212935f,-0.303797f,0.10513f}, - {-0.0211114f,-0.305032f,0.10513f},{-0.0208586f,-0.306251f,0.10513f},{-0.0205363f,-0.30745f,0.10513f}, - {-0.0214407f,-0.301289f,0.10513f},{-0.0214037f,-0.300029f,0.10513f},{-0.0214037f,-0.302548f,0.10513f}, - {-0.0211115f,-0.297545f,0.10513f},{-0.0212936f,-0.298781f,0.10513f},{-0.0201457f,-0.29395f,0.10513f}, - {-0.0205363f,-0.295127f,0.10513f},{-0.0208587f,-0.296327f,0.10513f},{-0.0191643f,-0.291674f,0.10513f}, - {-0.019688f,-0.292798f,0.10513f},{-0.0172102f,-0.288501f,0.10513f},{-0.0179243f,-0.289523f,0.10513f}, - {-0.018576f,-0.290582f,0.10513f},{-0.0156004f,-0.28658f,0.10513f},{-0.0164352f,-0.287519f,0.10513f}, - {-0.0147088f,-0.285689f,0.10513f},{-0.0137693f,-0.284853f,0.10513f},{-0.0127873f,-0.284078f,0.10513f}, - {-0.0117656f,-0.283364f,0.10513f},{-0.010707f,-0.282713f,0.10513f},{-0.0096143f,-0.282124f,0.10513f}, - {-0.00849054f,-0.281601f,0.10513f},{-0.00733859f,-0.281143f,0.10513f},{-0.00616144f,-0.280752f,0.10513f}, - {-0.00374334f,-0.280177f,0.10513f},{-0.00496208f,-0.28043f,0.10513f},{-0.00250813f,-0.279995f,0.10513f}, - {-0.00125938f,-0.279885f,0.10513f},{-0.0164352f,-0.315058f,0.10513f},{-0.0147082f,-0.316889f,0.10513f}, - {-0.0073385f,-0.321434f,0.10513f},{-0.00125925f,-0.322692f,0.10513f},{-0.015889f,-0.321997f,0.10513f}, - {-0.0261017f,-0.301289f,0.10513f},{-0.0260458f,-0.302996f,0.10513f},{-0.0241144f,-0.311278f,0.10513f}, - {-0.0256f,-0.306381f,0.10513f},{-0.0252122f,-0.308045f,0.10513f},{-0.0234094f,-0.312833f,0.10513f}, - {-0.0217023f,-0.31579f,0.10513f},{-0.0207075f,-0.317179f,0.10513f},{-0.00675524f,-0.326501f,0.10513f}, - {-0.00509193f,-0.326889f,0.10513f},{-0.00170673f,-0.327326f,0.10513f},{-0.0130502f,-0.323894f,0.10513f}, - {-0.011544f,-0.324699f,0.10513f},{-0.00998811f,-0.325403f,0.10513f},{-0.00838954f,-0.326005f,0.10513f}, - {-0.0145006f,-0.322992f,0.10513f},{-0.018456f,-0.319746f,0.10513f},{-0.0172093f,-0.320913f,0.10513f}, - {-0.00340673f,-0.327168f,0.10513f},{-0.0196237f,-0.318499f,0.10513f},{-0.0226042f,-0.31434f,0.10513f}, - {-0.0247162f,-0.309679f,0.10513f},{-0.0258783f,-0.304696f,0.10513f},{-0.0260458f,-0.299582f,0.10513f}, - {-0.0258785f,-0.297882f,0.10513f},{-0.0247166f,-0.292898f,0.10513f},{-0.0252123f,-0.294533f,0.10513f}, - {-0.0256002f,-0.296196f,0.10513f},{-0.024115f,-0.2913f,0.10513f},{-0.02341f,-0.289744f,0.10513f}, - {-0.0226048f,-0.288237f,0.10513f},{-0.0207077f,-0.285398f,0.10513f},{-0.0217027f,-0.286787f,0.10513f}, - {-0.0196242f,-0.284078f,0.10513f},{-0.01721f,-0.281664f,0.10513f},{-0.0145012f,-0.279585f,0.10513f}, - {-0.0158895f,-0.28058f,0.10513f},{-0.0130507f,-0.278683f,0.10513f},{-0.0115442f,-0.277878f,0.10513f}, - {-0.00340717f,-0.27541f,0.10513f},{-0.00170718f,-0.275248f,0.10513f},{-0.00509216f,-0.275688f,0.10513f}, - {-0.0067556f,-0.276076f,0.10513f},{-0.00839014f,-0.276572f,0.10513f},{-0.0184567f,-0.282831f,0.10513f}, - {-0.00998851f,-0.277174f,0.10513f},{-0.0114195f,-0.281509f,0.10252f},{-0.0131871f,-0.282642f,0.10252f}, - {-0.0123517f,-0.279895f,0.104011f},{-0.0179085f,-0.287115f,0.10252f},{-0.0164595f,-0.285455f,0.10252f}, - {-0.0148769f,-0.28396f,0.10252f},{-0.0224459f,-0.297069f,0.10252f},{-0.0219419f,-0.29495f,0.10252f}, - {-0.0212291f,-0.292866f,0.10252f},{-0.022839f,-0.301289f,0.10252f},{-0.0227427f,-0.299191f,0.10252f}, - {-0.0123517f,-0.322682f,0.104011f},{-0.0114195f,-0.321068f,0.10252f},{-0.0101514f,-0.321748f,0.10252f}, - {-0.00882321f,-0.322354f,0.10252f},{-0.00744093f,-0.322881f,0.10252f},{-0.00601179f,-0.323322f,0.10252f}, - {-0.00454389f,-0.323671f,0.10252f},{-0.00304618f,-0.323923f,0.10252f},{-0.00152821f,-0.324076f,0.10252f}, - {-0.00650255f,-0.325121f,0.104011f},{-0.00491482f,-0.325498f,0.104011f},{-0.0109801f,-0.323418f,0.104011f}, - {-0.00329485f,-0.325771f,0.104011f},{-0.00165296f,-0.325937f,0.104011f},{-0.00804836f,-0.324644f,0.104011f}, - {-0.00954347f,-0.324074f,0.104011f},{-0.0191994f,-0.288919f,0.10252f},{-0.0203114f,-0.290845f,0.10252f}, - {-0.0160918f,-0.282545f,0.104011f},{-0.0247034f,-0.301289f,0.104011f},{-0.0245988f,-0.29902f,0.104011f}, - {-0.0242781f,-0.296725f,0.104011f},{-0.0237331f,-0.294434f,0.104011f},{-0.0229622f,-0.292179f,0.104011f}, - {-0.02197f,-0.289994f,0.104011f},{-0.0207674f,-0.28791f,0.104011f},{-0.0193711f,-0.285958f,0.104011f}, - {-0.0178041f,-0.284163f,0.104011f},{-0.0142649f,-0.28112f,0.104011f},{0.0255992f,-0.302654f,0.121909f}, - {0.0254901f,-0.304016f,0.121909f},{0.0137506f,-0.322924f,0.121909f},{0.0155417f,-0.321676f,0.121909f}, - {0.0118616f,-0.324015f,0.121909f},{0.00988475f,-0.324942f,0.121909f},{-0.00988506f,-0.324942f,0.121909f}, - {-0.0118618f,-0.324015f,0.121909f},{-0.015542f,-0.321676f,0.121909f},{-0.0137508f,-0.322924f,0.121909f}, - {-0.0253087f,-0.305369f,0.121909f},{-0.0254902f,-0.304016f,0.121909f},{-0.0255992f,-0.302654f,0.121909f}, - {0.0253087f,-0.305369f,0.121909f},{-0.0121592f,-0.300676f,0.104198f},{-0.0127415f,-0.298961f,0.104198f}, - {-0.0124735f,-0.299505f,0.104198f},{-0.0122784f,-0.300079f,0.104198f},{-0.0139458f,-0.297588f,0.104198f}, - {-0.0130793f,-0.298454f,0.104198f},{-0.0134838f,-0.297993f,0.104198f},{-0.0161672f,-0.296668f,0.104198f}, - {-0.0155702f,-0.296787f,0.104198f},{-0.014996f,-0.296982f,0.104198f},{-0.0173925f,-0.296668f,0.104198f}, - {-0.0179895f,-0.296787f,0.104198f},{-0.0167797f,-0.296628f,0.104198f},{-0.0191075f,-0.29725f,0.104198f}, - {-0.0185634f,-0.296982f,0.104198f},{-0.0200755f,-0.297993f,0.104198f},{-0.0196139f,-0.297588f,0.104198f}, - {-0.0204802f,-0.298455f,0.104198f},{-0.020818f,-0.298961f,0.104198f},{-0.0210859f,-0.299505f,0.104198f}, - {-0.0212811f,-0.300079f,0.104198f},{-0.0214003f,-0.300676f,0.104198f},{-0.0144523f,-0.29725f,0.104198f}, - {-0.00978795f,-0.310131f,0.110723f},{-0.00945021f,-0.310326f,0.110723f},{-0.0101588f,-0.310011f,0.110723f}, - {-0.00916026f,-0.310587f,0.110723f},{-0.00893114f,-0.310903f,0.110723f},{-0.00877327f,-0.31126f,0.110723f}, - {-0.00869249f,-0.311641f,0.110723f},{-0.00869285f,-0.312031f,0.110723f},{-0.00893415f,-0.312768f,0.110723f}, - {-0.00877489f,-0.312413f,0.110723f},{-0.00945258f,-0.313343f,0.110723f},{-0.00916327f,-0.313083f,0.110723f}, - {-0.0101599f,-0.313658f,0.110723f},{-0.00978972f,-0.313538f,0.110723f},{0.0132829f,-0.312109f,0.110723f}, - {0.0136207f,-0.312304f,0.110723f},{0.0129121f,-0.311988f,0.110723f},{0.0139106f,-0.312565f,0.110723f}, - {0.0141397f,-0.312881f,0.110723f},{0.0142976f,-0.313237f,0.110723f},{0.0143784f,-0.313619f,0.110723f}, - {0.014378f,-0.314009f,0.110723f},{0.0141367f,-0.314746f,0.110723f},{0.014296f,-0.31439f,0.110723f}, - {0.0136183f,-0.315321f,0.110723f},{0.0139076f,-0.31506f,0.110723f},{0.012911f,-0.315636f,0.110723f}, - {0.0132812f,-0.315515f,0.110723f},{0.0113054f,-0.289038f,0.110723f},{0.0116432f,-0.289233f,0.110723f}, - {0.0109345f,-0.288917f,0.110723f},{0.0119331f,-0.289494f,0.110723f},{0.0121622f,-0.28981f,0.110723f}, - {0.0123201f,-0.290167f,0.110723f},{0.0124009f,-0.290548f,0.110723f},{0.0124005f,-0.290938f,0.110723f}, - {0.0121592f,-0.291675f,0.110723f},{0.0123185f,-0.291319f,0.110723f},{0.0116408f,-0.29225f,0.110723f}, - {0.0119301f,-0.291989f,0.110723f},{0.0109335f,-0.292565f,0.110723f},{0.0113037f,-0.292444f,0.110723f}, - {-0.0117655f,-0.28706f,0.110723f},{-0.0114277f,-0.287255f,0.110723f},{-0.0121363f,-0.28694f,0.110723f}, - {-0.0111378f,-0.287516f,0.110723f},{-0.0109086f,-0.287832f,0.110723f},{-0.0107508f,-0.288189f,0.110723f}, - {-0.01067f,-0.28857f,0.110723f},{-0.0106704f,-0.28896f,0.110723f},{-0.0109117f,-0.289697f,0.110723f}, - {-0.0107524f,-0.289342f,0.110723f},{-0.0114301f,-0.290272f,0.110723f},{-0.0111408f,-0.290012f,0.110723f}, - {-0.0121374f,-0.290587f,0.110723f},{-0.0117672f,-0.290467f,0.110723f},{-0.000612842f,-0.313448f,0.104198f}, - {-0.00232777f,-0.31403f,0.104198f},{-0.00120978f,-0.313567f,0.104198f},{-0.00178369f,-0.313762f,0.104198f}, - {-0.00370055f,-0.315234f,0.104198f},{-0.00403832f,-0.315741f,0.104198f},{-0.00329584f,-0.314772f,0.104198f}, - {-0.00462066f,-0.317456f,0.104198f},{-0.00430621f,-0.316285f,0.104198f},{-0.00450141f,-0.316859f,0.104198f}, - {-0.00450127f,-0.319278f,0.104198f},{-0.00466102f,-0.318068f,0.104198f},{-0.00462052f,-0.318681f,0.104198f}, - {-0.00403818f,-0.320396f,0.104198f},{-0.00370041f,-0.320902f,0.104198f},{-0.00430621f,-0.319852f,0.104198f}, - {-0.00329584f,-0.321364f,0.104198f},{-0.00283386f,-0.321769f,0.104198f},{-0.00232743f,-0.322107f,0.104198f}, - {-0.00178369f,-0.322374f,0.104198f},{-0.00120944f,-0.32257f,0.104198f},{-0.000612502f,-0.322689f,0.104198f}, - {-0.0028342f,-0.314368f,0.104198f},{0.0121592f,-0.301901f,0.104198f},{0.0127415f,-0.303616f,0.104198f}, - {0.0124735f,-0.303072f,0.104198f},{0.0122784f,-0.302498f,0.104198f},{0.0139458f,-0.304989f,0.104198f}, - {0.0130793f,-0.304123f,0.104198f},{0.0134838f,-0.304584f,0.104198f},{0.0161672f,-0.305909f,0.104198f}, - {0.0155702f,-0.30579f,0.104198f},{0.014996f,-0.305595f,0.104198f},{0.0179895f,-0.30579f,0.104198f}, - {0.0173925f,-0.305909f,0.104198f},{0.0167797f,-0.30595f,0.104198f},{0.0191075f,-0.305327f,0.104198f}, - {0.0185634f,-0.305595f,0.104198f},{0.0200755f,-0.304584f,0.104198f},{0.0196139f,-0.304989f,0.104198f}, - {0.0204802f,-0.304122f,0.104198f},{0.020818f,-0.303616f,0.104198f},{0.0210859f,-0.303072f,0.104198f}, - {0.0212811f,-0.302498f,0.104198f},{0.0214003f,-0.301901f,0.104198f},{0.0144523f,-0.305327f,0.104198f}, - {0.000612842f,-0.289129f,0.104198f},{0.00232777f,-0.288547f,0.104198f},{0.00178369f,-0.288815f,0.104198f}, - {0.00120978f,-0.28901f,0.104198f},{0.00370055f,-0.287343f,0.104198f},{0.0028342f,-0.288209f,0.104198f}, - {0.00329584f,-0.287805f,0.104198f},{0.00462066f,-0.285121f,0.104198f},{0.00450141f,-0.285718f,0.104198f}, - {0.00430621f,-0.286293f,0.104198f},{0.00462052f,-0.283896f,0.104198f},{0.00450127f,-0.283299f,0.104198f}, - {0.00466102f,-0.284509f,0.104198f},{0.00403818f,-0.282181f,0.104198f},{0.00430621f,-0.282725f,0.104198f}, - {0.00329584f,-0.281213f,0.104198f},{0.00370041f,-0.281675f,0.104198f},{0.00283386f,-0.280808f,0.104198f}, - {0.00232743f,-0.280471f,0.104198f},{0.00178369f,-0.280203f,0.104198f},{0.00120944f,-0.280007f,0.104198f}, - {0.000612502f,-0.279888f,0.104198f},{0.00403832f,-0.286836f,0.104198f},{0.0114195f,-0.321068f,0.104198f}, - {0.00948155f,-0.322066f,0.104198f},{0.0032562f,-0.323894f,0.104198f},{0.00746583f,-0.322873f,0.104198f}, - {-0.00325654f,-0.323894f,0.104198f},{0.00109039f,-0.324102f,0.104198f},{-0.00109151f,-0.324101f,0.104198f}, - {-0.00746603f,-0.322873f,0.104198f},{-0.00538621f,-0.323483f,0.104198f},{-0.00948213f,-0.322066f,0.104198f}, - {-0.0114195f,-0.321068f,0.104198f},{0.00538567f,-0.323483f,0.104198f},{0.0123517f,-0.322682f,0.104198f}, - {-0.0123517f,-0.322682f,0.104198f},{-0.0102556f,-0.323763f,0.104198f},{-0.00352201f,-0.32574f,0.104198f}, - {-0.00807529f,-0.324635f,0.104198f},{0.00352238f,-0.32574f,0.104198f},{-0.00117941f,-0.325964f,0.104198f}, - {0.00118061f,-0.325964f,0.104198f},{0.0080755f,-0.324635f,0.104198f},{0.0102562f,-0.323762f,0.104198f}, - {0.0058259f,-0.325295f,0.104198f},{-0.00582532f,-0.325295f,0.104198f},{0.0132534f,-0.282688f,0.104198f}, - {0.0114195f,-0.281509f,0.104198f},{0.017949f,-0.287166f,0.104198f},{0.0165285f,-0.285527f,0.104198f}, - {0.0149596f,-0.284031f,0.104198f},{0.0203023f,-0.290827f,0.104198f},{0.0212053f,-0.292806f,0.104198f}, - {0.0192114f,-0.288938f,0.104198f},{0.0224255f,-0.296962f,0.104198f},{0.0219143f,-0.294856f,0.104198f}, - {0.0227351f,-0.299111f,0.104198f},{0.022839f,-0.301289f,0.104198f},{0.0123517f,-0.279895f,0.104198f}, - {0.0247034f,-0.301289f,0.104198f},{0.0245908f,-0.298933f,0.104198f},{0.0229363f,-0.292113f,0.104198f}, - {0.0237031f,-0.29433f,0.104198f},{0.0242561f,-0.296609f,0.104198f},{0.020779f,-0.287929f,0.104198f}, - {0.019414f,-0.286013f,0.104198f},{0.0219591f,-0.289972f,0.104198f},{0.0178774f,-0.28424f,0.104198f}, - {0.0161807f,-0.282622f,0.104198f},{0.0143348f,-0.28117f,0.104198f},{-0.0227349f,-0.299111f,0.104198f}, - {-0.022839f,-0.301289f,0.104198f},{-0.0212052f,-0.292806f,0.104198f},{-0.0219142f,-0.294855f,0.104198f}, - {-0.0224254f,-0.296962f,0.104198f},{-0.0192108f,-0.288937f,0.104198f},{-0.0179488f,-0.287165f,0.104198f}, - {-0.0203018f,-0.290826f,0.104198f},{-0.0149595f,-0.284031f,0.104198f},{-0.0165281f,-0.285527f,0.104198f}, - {-0.0132529f,-0.282688f,0.104198f},{-0.0114195f,-0.281509f,0.104198f},{-0.0247034f,-0.301289f,0.104198f}, - {-0.0123517f,-0.279895f,0.104198f},{-0.0143353f,-0.28117f,0.104198f},{-0.0194142f,-0.286013f,0.104198f}, - {-0.0178778f,-0.28424f,0.104198f},{-0.0161808f,-0.282622f,0.104198f},{-0.0219596f,-0.289973f,0.104198f}, - {-0.0229364f,-0.292114f,0.104198f},{-0.0207797f,-0.28793f,0.104198f},{-0.0237033f,-0.294331f,0.104198f}, - {-0.0242561f,-0.296609f,0.104198f},{-0.024591f,-0.298934f,0.104198f},{-0.00275356f,-0.301777f,0.0986044f}, - {-0.00214219f,-0.303086f,0.0986044f},{-0.00242266f,-0.302686f,0.0986044f},{-0.00262748f,-0.302246f,0.0986044f}, - {-0.000956449f,-0.303917f,0.0986044f},{-0.00048723f,-0.304042f,0.0986044f},{-0.00179504f,-0.303433f,0.0986044f}, - {-0.00139564f,-0.303712f,0.0986044f},{0.000957717f,-0.303916f,0.0986044f},{0.000488516f,-0.304042f,0.0986044f}, - {5.2844e-017f,-0.304085f,0.0986044f},{0.00179767f,-0.303431f,0.0986044f},{0.00139727f,-0.303711f,0.0986044f}, - {0.00214411f,-0.303084f,0.0986044f},{0.00242333f,-0.302684f,0.0986044f},{0.00262801f,-0.302245f,0.0986044f}, - {0.00275356f,-0.301777f,0.0986044f},{0.0174099f,-0.302514f,0.121909f},{0.0172871f,-0.301908f,0.121909f}, - {0.0172458f,-0.301289f,0.121909f},{0.0176121f,-0.3031f,0.121909f},{0.0182409f,-0.304167f,0.121909f}, - {0.0178912f,-0.303655f,0.121909f},{0.0186544f,-0.304627f,0.121909f},{0.0191262f,-0.305029f,0.121909f}, - {0.0196487f,-0.305366f,0.121909f},{0.0202093f,-0.305629f,0.121909f},{0.0207991f,-0.305816f,0.121909f}, - {0.021411f,-0.305923f,0.121909f},{0.0172872f,-0.300669f,0.121909f},{0.0174099f,-0.300063f,0.121909f}, - {0.0176122f,-0.299477f,0.121909f},{0.0178915f,-0.298922f,0.121909f},{0.0182411f,-0.29841f,0.121909f}, - {0.0186545f,-0.29795f,0.121909f},{0.0191266f,-0.297547f,0.121909f},{0.0196491f,-0.297211f,0.121909f}, - {0.0202094f,-0.296948f,0.121909f},{0.0207994f,-0.296761f,0.121909f},{0.021411f,-0.296654f,0.121909f}, - {0.00761603f,-0.294203f,0.121909f},{0.00821991f,-0.292665f,0.121909f},{0.00794276f,-0.293145f,0.121909f}, - {0.00774033f,-0.293661f,0.121909f},{0.00944153f,-0.291532f,0.121909f},{0.00856913f,-0.292227f,0.121909f}, - {0.00898119f,-0.291845f,0.121909f},{0.0115849f,-0.291045f,0.121909f},{0.011024f,-0.291045f,0.121909f}, - {0.01047f,-0.291128f,0.121909f},{0.0126654f,-0.291292f,0.121909f},{0.012136f,-0.291129f,0.121909f}, - {0.0136271f,-0.291848f,0.121909f},{0.0140372f,-0.292229f,0.121909f},{0.0131654f,-0.291533f,0.121909f}, - {0.0143853f,-0.292666f,0.121909f},{0.0146628f,-0.293147f,0.121909f},{0.0148654f,-0.293663f,0.121909f}, - {0.0149887f,-0.294203f,0.121909f},{0.00994023f,-0.291292f,0.121909f},{0.00749878f,-0.3009f,0.121909f}, - {0.0080757f,-0.299902f,0.121909f},{0.007619f,-0.30053f,0.121909f},{0.0091279f,-0.299434f,0.121909f}, - {0.00839049f,-0.299674f,0.121909f},{0.00874642f,-0.299515f,0.121909f},{0.00989914f,-0.299516f,0.121909f}, - {0.0102546f,-0.299674f,0.121909f},{0.00951793f,-0.299435f,0.121909f},{0.0105703f,-0.299904f,0.121909f}, - {0.0108309f,-0.300193f,0.121909f},{0.0110255f,-0.300531f,0.121909f},{0.0111456f,-0.300901f,0.121909f}, - {0.00781413f,-0.300192f,0.121909f},{0.00632322f,-0.282854f,0.121909f},{0.00629776f,-0.282236f,0.121909f}, - {0.00635281f,-0.281618f,0.121909f},{0.00643547f,-0.283464f,0.121909f},{0.00662778f,-0.284053f,0.121909f}, - {0.00689664f,-0.284612f,0.121909f},{0.00723717f,-0.28513f,0.121909f},{0.00862289f,-0.286353f,0.121909f}, - {0.00917948f,-0.286627f,0.121909f},{0.00764334f,-0.285598f,0.121909f},{0.00810797f,-0.286008f,0.121909f}, - {0.010376f,-0.286942f,0.121909f},{0.0109947f,-0.286977f,0.121909f},{0.0143217f,-0.285539f,0.121909f}, - {0.0138626f,-0.285956f,0.121909f},{0.0122191f,-0.286802f,0.121909f},{0.012803f,-0.286594f,0.121909f}, - {0.013354f,-0.28631f,0.121909f},{0.0147191f,-0.285063f,0.121909f},{0.0116126f,-0.286931f,0.121909f}, - {0.0097673f,-0.286824f,0.121909f},{0.00647672f,-0.281011f,0.121909f},{0.00669182f,-0.280429f,0.121909f}, - {-0.00232814f,-0.29115f,0.121909f},{-0.00335826f,-0.289858f,0.121909f},{-0.00308092f,-0.290338f,0.121909f}, - {-0.0027356f,-0.290771f,0.121909f},{-0.00372865f,-0.288234f,0.121909f},{-0.0035632f,-0.289337f,0.121909f}, - {-0.00368751f,-0.288789f,0.121909f},{-0.00307835f,-0.286134f,0.121909f},{-0.00335937f,-0.28662f,0.121909f}, - {-0.00356405f,-0.287141f,0.121909f},{-0.00232427f,-0.285322f,0.121909f},{-0.0027306f,-0.285699f,0.121909f}, - {-0.00136237f,-0.284767f,0.121909f},{-0.000827251f,-0.284602f,0.121909f},{-0.00186593f,-0.285009f,0.121909f}, - {-0.000274996f,-0.284519f,0.121909f},{0.000280844f,-0.284519f,0.121909f},{0.000829073f,-0.284602f,0.121909f}, - {0.00135821f,-0.284765f,0.121909f},{-0.00368715f,-0.287682f,0.121909f},{0.0034127f,-0.2946f,0.121909f}, - {0.00283723f,-0.293602f,0.121909f},{0.00315233f,-0.294311f,0.121909f},{0.00295815f,-0.292456f,0.121909f}, - {0.00279666f,-0.293215f,0.121909f},{0.00283762f,-0.292827f,0.121909f},{0.00341439f,-0.291829f,0.121909f}, - {0.00372927f,-0.291601f,0.121909f},{0.00315311f,-0.292119f,0.121909f},{0.00408585f,-0.291442f,0.121909f}, - {0.00446695f,-0.291361f,0.121909f},{0.0048565f,-0.291361f,0.121909f},{0.00523731f,-0.291442f,0.121909f}, - {0.00295751f,-0.293973f,0.121909f},{-0.0133515f,-0.286308f,0.121909f},{-0.013859f,-0.285951f,0.121909f}, - {-0.00764282f,-0.285598f,0.121909f},{-0.00810759f,-0.286008f,0.121909f},{-0.00723674f,-0.285129f,0.121909f}, - {-0.00862289f,-0.286353f,0.121909f},{-0.00689651f,-0.284611f,0.121909f},{-0.00662806f,-0.284053f,0.121909f}, - {-0.00643592f,-0.283463f,0.121909f},{-0.00917901f,-0.286627f,0.121909f},{-0.00976653f,-0.286824f,0.121909f}, - {-0.00632427f,-0.282854f,0.121909f},{-0.0103751f,-0.286942f,0.121909f},{-0.00629503f,-0.282234f,0.121909f}, - {-0.0064786f,-0.281011f,0.121909f},{-0.00634749f,-0.281617f,0.121909f},{-0.010994f,-0.286978f,0.121909f}, - {-0.00669182f,-0.280429f,0.121909f},{-0.0116123f,-0.286931f,0.121909f},{-0.0128028f,-0.286595f,0.121909f}, - {-0.0122189f,-0.286803f,0.121909f},{-0.0143221f,-0.285541f,0.121909f},{-0.0147191f,-0.285063f,0.121909f}, - {-0.00994417f,-0.298236f,0.121909f},{-0.0115782f,-0.298482f,0.121909f},{-0.0110237f,-0.298482f,0.121909f}, - {-0.0104759f,-0.298399f,0.121909f},{-0.0131702f,-0.29799f,0.121909f},{-0.0121323f,-0.298398f,0.121909f}, - {-0.0126687f,-0.298232f,0.121909f},{-0.0146632f,-0.296377f,0.121909f},{-0.0143833f,-0.296863f,0.121909f}, - {-0.014034f,-0.297301f,0.121909f},{-0.0149897f,-0.295318f,0.121909f},{-0.0148666f,-0.295858f,0.121909f}, - {-0.0149894f,-0.294208f,0.121909f},{-0.0148645f,-0.293662f,0.121909f},{-0.0150313f,-0.294765f,0.121909f}, - {-0.0146603f,-0.293142f,0.121909f},{-0.014382f,-0.292661f,0.121909f},{-0.0140364f,-0.292227f,0.121909f}, - {-0.0136305f,-0.291851f,0.121909f},{-0.0136274f,-0.297678f,0.121909f},{-0.00408601f,-0.294989f,0.121909f}, - {-0.0052381f,-0.294988f,0.121909f},{-0.00446686f,-0.29507f,0.121909f},{-0.00616977f,-0.294311f,0.121909f}, - {-0.00559379f,-0.29483f,0.121909f},{-0.00590924f,-0.2946f,0.121909f},{-0.00648482f,-0.293602f,0.121909f}, - {-0.00652543f,-0.293215f,0.121909f},{-0.0063645f,-0.293973f,0.121909f},{-0.00648441f,-0.292827f,0.121909f}, - {-0.00636386f,-0.292456f,0.121909f},{-0.00616897f,-0.292119f,0.121909f},{-0.00590844f,-0.29183f,0.121909f}, - {-0.00485671f,-0.295069f,0.121909f},{-0.0178906f,-0.303654f,0.121909f},{-0.0176123f,-0.3031f,0.121909f}, - {-0.0182401f,-0.304166f,0.121909f},{-0.0186543f,-0.304628f,0.121909f},{-0.019126f,-0.30503f,0.121909f}, - {-0.0174099f,-0.302514f,0.121909f},{-0.0196492f,-0.305361f,0.121909f},{-0.017287f,-0.301907f,0.121909f}, - {-0.0172458f,-0.301289f,0.121909f},{-0.0172871f,-0.30067f,0.121909f},{-0.0174101f,-0.300062f,0.121909f}, - {-0.0176127f,-0.299476f,0.121909f},{-0.0178912f,-0.298922f,0.121909f},{-0.0182407f,-0.298411f,0.121909f}, - {-0.018655f,-0.29795f,0.121909f},{-0.0191272f,-0.297548f,0.121909f},{-0.0196491f,-0.297213f,0.121909f}, - {-0.02021f,-0.29695f,0.121909f},{-0.0208003f,-0.29676f,0.121909f},{-0.021411f,-0.296654f,0.121909f}, - {-0.0207988f,-0.305818f,0.121909f},{-0.0202118f,-0.305622f,0.121909f},{-0.021411f,-0.305923f,0.121909f}, - {-0.00761603f,-0.308374f,0.121909f},{-0.00821991f,-0.309912f,0.121909f},{-0.00794276f,-0.309432f,0.121909f}, - {-0.00774033f,-0.308916f,0.121909f},{-0.00944153f,-0.311045f,0.121909f},{-0.00856913f,-0.31035f,0.121909f}, - {-0.00898119f,-0.310732f,0.121909f},{-0.0115849f,-0.311532f,0.121909f},{-0.011024f,-0.311532f,0.121909f}, - {-0.01047f,-0.311449f,0.121909f},{-0.0126654f,-0.311285f,0.121909f},{-0.012136f,-0.311448f,0.121909f}, - {-0.0136271f,-0.310729f,0.121909f},{-0.0140372f,-0.310348f,0.121909f},{-0.0131654f,-0.311044f,0.121909f}, - {-0.0143853f,-0.309911f,0.121909f},{-0.0146628f,-0.30943f,0.121909f},{-0.0148654f,-0.308914f,0.121909f}, - {-0.0149887f,-0.308374f,0.121909f},{-0.00994023f,-0.311285f,0.121909f},{-0.00749878f,-0.301677f,0.121909f}, - {-0.0080757f,-0.302675f,0.121909f},{-0.007619f,-0.302047f,0.121909f},{-0.0091279f,-0.303143f,0.121909f}, - {-0.00839049f,-0.302903f,0.121909f},{-0.00874642f,-0.303062f,0.121909f},{-0.00989914f,-0.303061f,0.121909f}, - {-0.0102546f,-0.302903f,0.121909f},{-0.00951793f,-0.303143f,0.121909f},{-0.0105703f,-0.302673f,0.121909f}, - {-0.0108309f,-0.302384f,0.121909f},{-0.0110255f,-0.302046f,0.121909f},{-0.0111456f,-0.301676f,0.121909f}, - {-0.00781413f,-0.302385f,0.121909f},{-0.00629776f,-0.320341f,0.121909f},{-0.00632322f,-0.319723f,0.121909f}, - {-0.0147191f,-0.317514f,0.121909f},{-0.00643547f,-0.319113f,0.121909f},{-0.00635281f,-0.320959f,0.121909f}, - {-0.00662778f,-0.318524f,0.121909f},{-0.00689664f,-0.317965f,0.121909f},{-0.00764334f,-0.316979f,0.121909f}, - {-0.00810797f,-0.316569f,0.121909f},{-0.00723717f,-0.317447f,0.121909f},{-0.010376f,-0.315635f,0.121909f}, - {-0.0109947f,-0.3156f,0.121909f},{-0.00862289f,-0.316224f,0.121909f},{-0.00917948f,-0.31595f,0.121909f}, - {-0.0143217f,-0.317038f,0.121909f},{-0.0138626f,-0.316622f,0.121909f},{-0.0122191f,-0.315775f,0.121909f}, - {-0.012803f,-0.315983f,0.121909f},{-0.013354f,-0.316267f,0.121909f},{-0.0116126f,-0.315647f,0.121909f}, - {-0.0097673f,-0.315753f,0.121909f},{-0.00647672f,-0.321566f,0.121909f},{-0.00669182f,-0.322148f,0.121909f}, - {0.00232814f,-0.311427f,0.121909f},{0.00335826f,-0.312719f,0.121909f},{0.00308092f,-0.312239f,0.121909f}, - {0.0027356f,-0.311806f,0.121909f},{0.00372865f,-0.314343f,0.121909f},{0.0035632f,-0.313241f,0.121909f}, - {0.00368751f,-0.313788f,0.121909f},{0.00307835f,-0.316443f,0.121909f},{0.00335937f,-0.315957f,0.121909f}, - {0.00356405f,-0.315436f,0.121909f},{0.00232427f,-0.317255f,0.121909f},{0.0027306f,-0.316878f,0.121909f}, - {0.00136237f,-0.31781f,0.121909f},{0.000827251f,-0.317975f,0.121909f},{0.00186593f,-0.317568f,0.121909f}, - {0.000274996f,-0.318058f,0.121909f},{-0.000280844f,-0.318058f,0.121909f},{-0.000829073f,-0.317975f,0.121909f}, - {-0.00135821f,-0.317812f,0.121909f},{0.00368715f,-0.314895f,0.121909f},{-0.0034126f,-0.307977f,0.121909f}, - {-0.00283728f,-0.308975f,0.121909f},{-0.0031524f,-0.308266f,0.121909f},{-0.00295812f,-0.310121f,0.121909f}, - {-0.00279668f,-0.309362f,0.121909f},{-0.0028374f,-0.30975f,0.121909f},{-0.0034143f,-0.310748f,0.121909f}, - {-0.00372908f,-0.310977f,0.121909f},{-0.00315337f,-0.310458f,0.121909f},{-0.00408596f,-0.311135f,0.121909f}, - {-0.00446705f,-0.311216f,0.121909f},{-0.00485646f,-0.311216f,0.121909f},{-0.00523689f,-0.311135f,0.121909f}, - {-0.00295753f,-0.308604f,0.121909f},{0.00764282f,-0.316979f,0.121909f},{0.00723674f,-0.317448f,0.121909f}, - {0.00810759f,-0.316569f,0.121909f},{0.00862289f,-0.316224f,0.121909f},{0.00689651f,-0.317966f,0.121909f}, - {0.00662806f,-0.318524f,0.121909f},{0.00643592f,-0.319114f,0.121909f},{0.00917901f,-0.31595f,0.121909f}, - {0.00632427f,-0.319723f,0.121909f},{0.00629503f,-0.320343f,0.121909f},{0.00976653f,-0.315753f,0.121909f}, - {0.00634749f,-0.32096f,0.121909f},{0.0103751f,-0.315635f,0.121909f},{0.010994f,-0.3156f,0.121909f}, - {0.0064786f,-0.321566f,0.121909f},{0.00669182f,-0.322148f,0.121909f},{0.0116123f,-0.315646f,0.121909f}, - {0.0128028f,-0.315982f,0.121909f},{0.0122189f,-0.315774f,0.121909f},{0.0133515f,-0.316269f,0.121909f}, - {0.013859f,-0.316626f,0.121909f},{0.0143221f,-0.317036f,0.121909f},{0.0147191f,-0.317514f,0.121909f}, - {0.00994417f,-0.304342f,0.121909f},{0.0115782f,-0.304095f,0.121909f},{0.0110237f,-0.304096f,0.121909f}, - {0.0104759f,-0.304178f,0.121909f},{0.0131702f,-0.304587f,0.121909f},{0.0121323f,-0.304179f,0.121909f}, - {0.0126687f,-0.304345f,0.121909f},{0.0146632f,-0.3062f,0.121909f},{0.0143833f,-0.305714f,0.121909f}, - {0.014034f,-0.305276f,0.121909f},{0.0149897f,-0.307259f,0.121909f},{0.0148666f,-0.306719f,0.121909f}, - {0.0149894f,-0.30837f,0.121909f},{0.0148645f,-0.308915f,0.121909f},{0.0150313f,-0.307812f,0.121909f}, - {0.0146603f,-0.309435f,0.121909f},{0.014382f,-0.309916f,0.121909f},{0.0140364f,-0.31035f,0.121909f}, - {0.0136305f,-0.310726f,0.121909f},{0.0136274f,-0.304899f,0.121909f},{0.00408601f,-0.307588f,0.121909f}, - {0.0052381f,-0.307589f,0.121909f},{0.00446686f,-0.307507f,0.121909f},{0.00616977f,-0.308266f,0.121909f}, - {0.00559379f,-0.307747f,0.121909f},{0.00590924f,-0.307977f,0.121909f},{0.00648482f,-0.308975f,0.121909f}, - {0.00652543f,-0.309362f,0.121909f},{0.0063645f,-0.308604f,0.121909f},{0.00648441f,-0.30975f,0.121909f}, - {0.00636386f,-0.310121f,0.121909f},{0.00616897f,-0.310458f,0.121909f},{0.00590844f,-0.310747f,0.121909f}, - {0.00485671f,-0.307508f,0.121909f},{0.00462052f,-0.301901f,0.127503f},{0.00403818f,-0.303616f,0.127503f}, - {0.00450127f,-0.302498f,0.127503f},{0.00283386f,-0.304989f,0.127503f},{0.00232743f,-0.305327f,0.127503f}, - {0.00329584f,-0.304584f,0.127503f},{0.000612502f,-0.305909f,0.127503f},{0.00178369f,-0.305595f,0.127503f}, - {0.00120944f,-0.30579f,0.127503f},{-0.00120978f,-0.30579f,0.127503f},{5.46456e-017f,-0.30595f,0.127503f}, - {-0.000612842f,-0.305909f,0.127503f},{-0.00232777f,-0.305327f,0.127503f},{-0.0028342f,-0.304989f,0.127503f}, - {-0.00178369f,-0.305595f,0.127503f},{-0.00329584f,-0.304584f,0.127503f},{-0.00370055f,-0.304122f,0.127503f}, - {-0.00403832f,-0.303616f,0.127503f},{-0.00430621f,-0.303072f,0.127503f},{-0.00450141f,-0.302498f,0.127503f}, - {-0.00462066f,-0.301901f,0.127503f},{0.00370041f,-0.304123f,0.127503f},{0.00430621f,-0.303072f,0.127503f}, - {-0.00139737f,-0.303708f,0.127503f},{-0.00275363f,-0.301773f,0.127503f},{-0.00242194f,-0.302686f,0.127503f}, - {-0.00214182f,-0.303085f,0.127503f},{-0.00262754f,-0.302244f,0.127503f},{-0.00179665f,-0.303429f,0.127503f}, - {-0.000956049f,-0.303916f,0.127503f},{-0.000485772f,-0.304043f,0.127503f},{5.20065e-017f,-0.304085f,0.127503f}, - {0.000955564f,-0.303917f,0.127503f},{0.000485107f,-0.304043f,0.127503f},{0.00139499f,-0.303708f,0.127503f}, - {0.00275512f,-0.301775f,0.127503f},{0.00178917f,-0.303421f,0.127503f},{0.00262887f,-0.302246f,0.127503f}, - {0.00242212f,-0.302687f,0.127503f},{0.00214373f,-0.303089f,0.127503f},{-0.00275512f,-0.301775f,0.13496f}, - {-0.00262887f,-0.302246f,0.13496f},{-0.00242212f,-0.302687f,0.13496f},{-0.00214373f,-0.303089f,0.13496f}, - {-0.00178917f,-0.303421f,0.13496f},{-0.00139499f,-0.303708f,0.13496f},{-0.000955564f,-0.303917f,0.13496f}, - {-0.000485107f,-0.304043f,0.13496f},{5.2317e-017f,-0.304085f,0.13496f},{0.000485772f,-0.304043f,0.13496f}, - {0.00179665f,-0.303429f,0.13496f},{0.00262754f,-0.302244f,0.13496f},{0.000956049f,-0.303916f,0.13496f}, - {0.00139737f,-0.303708f,0.13496f},{0.00214182f,-0.303085f,0.13496f},{0.00242194f,-0.302686f,0.13496f}, - {0.00275363f,-0.301773f,0.13496f},{-0.278876f,0.0027207f,0.141016f},{-0.279289f,0.00279661f,0.127503f}, - {-0.279666f,0.00276223f,0.140921f},{-0.278101f,0.00254178f,0.141133f},{-0.278432f,0.00266037f,0.127503f}, - {-0.277654f,0.00226719f,0.127503f},{-0.277449f,0.00210085f,0.141283f},{-0.276631f,0.000869207f,0.127503f}, - {-0.277032f,0.00165072f,0.127503f},{-0.276921f,0.00149803f,0.141448f},{-0.276599f,0.000793813f,0.141604f}, - {-0.276492f,-8.9946e-019f,0.127503f},{-0.276492f,-2.12873e-008f,0.141748f},{-0.280158f,0.00265777f,0.127503f}, - {-0.280438f,0.00255964f,0.140869f},{-0.280939f,0.00225612f,0.127503f},{-0.281556f,0.00163414f,0.127503f}, - {-0.28111f,0.00212367f,0.140862f},{-0.281946f,0.000869207f,0.127503f},{-0.281644f,0.00151779f,0.140892f}, - {-0.281979f,0.000793595f,0.140955f},{-0.282085f,0.0f,0.127503f},{-0.282085f,0.0f,0.141048f}, - {-0.321654f,0.00226719f,0.127503f},{-0.32241f,0.00266113f,0.141631f},{-0.321628f,0.00225617f,0.141475f}, - {-0.322432f,0.00266037f,0.127503f},{-0.321032f,0.00165072f,0.127503f},{-0.321061f,0.00161123f,0.141322f}, - {-0.320631f,0.000869207f,0.127503f},{-0.320624f,0.000861428f,0.141174f},{-0.323269f,0.00279699f,0.141768f}, - {-0.320492f,2.26626e-008f,0.141048f},{-0.320492f,9.24713e-018f,0.127503f},{-0.323289f,0.00279661f,0.127503f}, - {-0.324142f,0.00267244f,0.141876f},{-0.324922f,0.00227523f,0.141932f},{-0.324158f,0.00265777f,0.127503f}, - {-0.324939f,0.00225612f,0.127503f},{-0.325551f,0.00164828f,0.14193f},{-0.325556f,0.00163414f,0.127503f}, - {-0.325946f,0.000869207f,0.127503f},{-0.325955f,0.000867575f,0.141868f},{-0.326085f,8.90465e-018f,0.127503f}, - {-0.326085f,8.90465e-018f,0.141748f},{-0.301289f,-0.00279661f,0.136825f},{-0.300432f,-0.00266037f,0.127503f}, - {-0.302923f,-0.00226719f,0.136825f},{-0.302158f,-0.00265777f,0.127503f},{-0.302939f,-0.00225612f,0.127503f}, - {-0.302145f,-0.00266037f,0.136825f},{-0.303545f,-0.00165072f,0.136825f},{-0.303946f,-0.000869207f,0.127503f}, - {-0.304085f,3.42486e-019f,0.136825f},{-0.303946f,-0.000869207f,0.136825f},{-0.303556f,-0.00163414f,0.127503f}, - {-0.304085f,3.42486e-019f,0.127503f},{-0.300419f,-0.00265777f,0.136825f},{-0.299654f,-0.00226719f,0.127503f}, - {-0.299638f,-0.00225612f,0.136825f},{-0.299021f,-0.00163414f,0.136825f},{-0.299032f,-0.00165072f,0.127503f}, - {-0.298631f,-0.000869207f,0.136825f},{-0.298631f,-0.000869207f,0.127503f},{-0.298492f,0.0f,0.127503f}, - {-0.298492f,0.0f,0.136825f},{-0.298637f,0.00383933f,0.140336f},{-0.299639f,0.00435933f,0.127503f}, - {-0.299629f,0.00437081f,0.140342f},{-0.30073f,0.00462728f,0.127503f},{-0.298643f,0.00383758f,0.127503f}, - {-0.30072f,0.00463064f,0.140371f},{-0.297804f,0.00309444f,0.127503f},{-0.297795f,0.00308762f,0.140354f}, - {-0.297163f,0.00216892f,0.127503f},{-0.30185f,0.00463006f,0.140416f},{-0.297147f,0.00216891f,0.14039f}, - {-0.296764f,0.00111911f,0.127503f},{-0.296628f,5.60046e-014f,0.140488f},{-0.296628f,3.35892e-010f,0.127503f}, - {-0.296754f,0.00112174f,0.140439f},{-0.301853f,0.00462657f,0.127503f},{-0.302944f,0.00435716f,0.127503f}, - {-0.302946f,0.00437228f,0.140465f},{-0.303934f,0.00384698f,0.140509f},{-0.303939f,0.0038338f,0.127503f}, - {-0.304779f,0.00308862f,0.127503f},{-0.304777f,0.00309221f,0.140537f},{-0.305417f,0.00216381f,0.127503f}, - {-0.305426f,0.00217168f,0.140543f},{-0.305823f,0.00112329f,0.140525f},{-0.305814f,0.00111503f,0.127503f}, - {-0.30595f,0.0f,0.140488f},{-0.268793f,0.0031834f,0.141919f},{-0.268706f,-0.0034311f,0.143258f}, - {-0.273216f,0.00348389f,0.141453f},{-0.280744f,-0.013311f,0.142108f},{-0.281094f,-0.00749864f,0.141891f}, - {-0.27672f,-0.01447f,0.142985f},{-0.26798f,-0.0237151f,0.145107f},{-0.268531f,-0.0168317f,0.144795f}, - {-0.264f,-0.0250351f,0.14612f},{-0.2978f,-0.00309212f,0.140537f},{-0.293788f,-0.00980991f,0.140443f}, - {-0.298643f,-0.00384705f,0.140509f},{-0.281979f,-0.000788852f,0.141161f},{-0.281606f,-0.00148198f,0.141294f}, - {-0.285735f,-0.00113058f,0.140739f},{-0.302948f,-0.00437081f,0.140342f},{-0.301857f,-0.00463066f,0.140371f}, - {-0.302709f,-0.00734722f,0.140099f},{-0.308774f,0.00981015f,0.140456f},{-0.30394f,-0.00383936f,0.140336f}, - {-0.304783f,-0.0030876f,0.140354f},{-0.307737f,-0.000835134f,0.140403f},{-0.312842f,0.00565577f,0.140706f}, - {-0.308256f,0.00448849f,0.140582f},{-0.320599f,-0.000794809f,0.140955f},{-0.316415f,-0.00431412f,0.139973f}, - {-0.320936f,-0.00152033f,0.140892f},{-0.334055f,0.0168309f,0.144796f},{-0.338577f,0.0250351f,0.14612f}, - {-0.334598f,0.0237151f,0.145107f},{-0.313348f,0.0110109f,0.140705f},{-0.329718f,0.00922726f,0.143432f}, - {-0.330654f,0.0222833f,0.144104f},{-0.329893f,0.0156491f,0.143876f},{-0.329371f,-0.00348559f,0.141452f}, - {-0.329543f,0.00283697f,0.142622f},{-0.325978f,-0.000793378f,0.141605f},{-0.333794f,-0.00318417f,0.141918f}, - {-0.33388f,0.00342276f,0.143256f},{-0.334267f,-0.00969325f,0.140239f},{-0.338577f,-0.00290707f,0.142335f}, - {-0.338577f,0.00398877f,0.143878f},{-0.338577f,-0.00968775f,0.140407f},{-0.325081f,-0.00378729f,0.140965f}, - {-0.325129f,-0.00209478f,0.141284f},{-0.324474f,-0.00253473f,0.141134f},{-0.333967f,0.010107f,0.144218f}, - {-0.323703f,-0.00272118f,0.141016f},{-0.321359f,-0.00973119f,0.139327f},{-0.320799f,-0.00404127f,0.140452f}, - {-0.298312f,-0.00858894f,0.140271f},{-0.290225f,-0.000322559f,0.140392f},{-0.29535f,0.00611166f,0.139905f}, - {-0.290725f,0.0049946f,0.139783f},{-0.299868f,0.00734676f,0.140099f},{-0.299631f,-0.0043723f,0.140465f}, - {-0.281789f,0.00405908f,0.140464f},{-0.286166f,0.00435339f,0.139998f},{-0.297151f,-0.00217165f,0.140543f}, - {-0.294309f,-0.00450063f,0.140568f},{-0.280465f,-0.00253786f,0.141575f},{-0.279704f,-0.00276739f,0.141709f}, - {-0.276982f,-0.00835592f,0.14266f},{-0.278136f,-0.00255847f,0.141903f},{-0.277464f,-0.00212169f,0.141937f}, - {-0.275858f,-0.0208182f,0.143118f},{-0.264f,-0.00398877f,0.143878f},{-0.272694f,-0.0156505f,0.143875f}, - {-0.264f,0.00968775f,0.140407f},{-0.264f,0.00290707f,0.142335f},{-0.268311f,0.00969325f,0.140239f}, - {-0.281218f,0.00973122f,0.139327f},{-0.276917f,0.00972934f,0.139659f},{-0.277503f,0.00378494f,0.140965f}, - {-0.284865f,-0.0121774f,0.141276f},{-0.2853f,-0.00665136f,0.141165f},{-0.294831f,0.000816648f,0.140389f}, - {-0.278905f,-0.0027728f,0.141822f},{-0.268619f,-0.0101155f,0.144218f},{-0.264f,-0.0179944f,0.145774f}, - {-0.271923f,-0.0222833f,0.144104f},{-0.264f,-0.0109671f,0.145026f},{-0.272615f,0.0097173f,0.139971f}, - {-0.285519f,0.0097497f,0.139013f},{-0.304264f,0.00858896f,0.140271f},{-0.307222f,-0.00613049f,0.139921f}, - {-0.316849f,0.00115281f,0.140712f},{-0.311834f,-0.00500873f,0.139791f},{-0.304385f,-0.0120097f,0.13929f}, - {-0.308539f,-0.0108714f,0.138995f},{-0.300727f,-0.00463004f,0.140416f},{-0.300237f,-0.0131607f,0.139564f}, - {-0.296096f,-0.0143354f,0.139836f},{-0.289722f,-0.00566917f,0.140697f},{-0.289219f,-0.0110148f,0.140695f}, - {-0.289811f,0.0100181f,0.138847f},{-0.294038f,0.0108714f,0.138995f},{-0.298192f,0.0120097f,0.13929f}, - {-0.30234f,0.0131607f,0.139564f},{-0.306481f,0.0143354f,0.139836f},{-0.317286f,0.00666271f,0.14114f}, - {-0.321494f,0.00749967f,0.141879f},{-0.322913f,-0.00277232f,0.14092f},{-0.32566f,-0.00972932f,0.139659f}, - {-0.325656f,-0.00149718f,0.141448f},{-0.317723f,0.0121843f,0.141251f},{-0.32214f,-0.00255887f,0.140869f}, - {-0.321467f,-0.00212359f,0.140862f},{-0.312336f,0.000305779f,0.140401f},{-0.305823f,-0.00112176f,0.140439f}, - {-0.30543f,-0.00216894f,0.14039f},{-0.321845f,0.0133136f,0.142096f},{-0.325602f,0.00834704f,0.14266f}, - {-0.325864f,0.0144683f,0.142986f},{-0.273043f,-0.0028458f,0.142624f},{-0.272869f,-0.0092361f,0.143432f}, - {-0.276934f,-0.00151619f,0.141923f},{-0.276599f,-0.00079021f,0.141859f},{-0.279796f,-0.019351f,0.142144f}, - {-0.28376f,-0.0179262f,0.14121f},{-0.287806f,-0.0166178f,0.140509f},{-0.281123f,-0.00210151f,0.141433f}, - {-0.296754f,-0.00112326f,0.140525f},{-0.291943f,-0.0154659f,0.14012f},{-0.312766f,-0.0100181f,0.138847f}, - {-0.310634f,0.0154659f,0.14012f},{-0.317058f,-0.00974966f,0.139013f},{-0.318817f,0.0179262f,0.14121f}, - {-0.314771f,0.0166178f,0.140509f},{-0.322781f,0.0193511f,0.142144f},{-0.326719f,0.0208182f,0.143118f}, - {-0.329962f,-0.00971729f,0.139971f},{-0.338577f,0.0179944f,0.145774f},{-0.338577f,0.0109671f,0.145026f}, - {-0.264f,-0.0262081f,0.148238f},{-0.267733f,-0.0248064f,0.147199f},{-0.267738f,-0.0250058f,0.146766f}, - {-0.271434f,-0.0233183f,0.146165f},{-0.271439f,-0.0235291f,0.145739f},{-0.282552f,-0.0188229f,0.143165f}, - {-0.282558f,-0.0190695f,0.142766f},{-0.278832f,-0.0203019f,0.144139f},{-0.278837f,-0.0205368f,0.143731f}, - {-0.275137f,-0.022035f,0.14473f},{-0.275132f,-0.0218112f,0.145147f},{-0.29417f,-0.015307f,0.141119f}, - {-0.294165f,-0.0150041f,0.141517f},{-0.298107f,-0.0141429f,0.140834f},{-0.286329f,-0.0174212f,0.1423f}, - {-0.290221f,-0.0161629f,0.141811f},{-0.290226f,-0.0164424f,0.141416f},{-0.305963f,-0.0114006f,0.14071f}, - {-0.309927f,-0.0106866f,0.140011f},{-0.30597f,-0.0117799f,0.140283f},{-0.302024f,-0.0125814f,0.14098f}, - {-0.302035f,-0.0129503f,0.14056f},{-0.298097f,-0.0138012f,0.141246f},{-0.322165f,-0.00963024f,0.140526f}, - {-0.318066f,-0.00968708f,0.140168f},{-0.318055f,-0.0091952f,0.140649f},{-0.313966f,-0.0099197f,0.139934f}, - {-0.309914f,-0.0102596f,0.140442f},{-0.313954f,-0.00946264f,0.140382f},{-0.322157f,-0.00907526f,0.141031f}, - {-0.326264f,-0.0095489f,0.140876f},{-0.326258f,-0.00894343f,0.141413f},{-0.330364f,-0.00945311f,0.141203f}, - {-0.334468f,-0.00933687f,0.14148f},{-0.33036f,-0.00879579f,0.141773f},{-0.334465f,-0.0086246f,0.142088f}, - {-0.338577f,-0.00922107f,0.141665f},{-0.338577f,-0.00845004f,0.142301f},{-0.286338f,-0.0176856f,0.141921f}, - {-0.264f,-0.0263793f,0.147802f},{-0.264f,-0.0259023f,0.148593f},{-0.267734f,-0.0244885f,0.147557f}, - {-0.271437f,-0.0229936f,0.146522f},{-0.282562f,-0.0184899f,0.143511f},{-0.275137f,-0.0214828f,0.145501f}, - {-0.294177f,-0.0146321f,0.14188f},{-0.286341f,-0.0170843f,0.142644f},{-0.290234f,-0.0158117f,0.142162f}, - {-0.305972f,-0.010968f,0.141112f},{-0.302034f,-0.0121699f,0.141368f},{-0.298108f,-0.0134094f,0.141622f}, - {-0.31806f,-0.0086637f,0.141107f},{-0.309921f,-0.00980481f,0.140857f},{-0.31396f,-0.00897481f,0.140813f}, - {-0.32216f,-0.00849863f,0.141523f},{-0.32626f,-0.00832061f,0.14194f},{-0.330362f,-0.00812583f,0.142335f}, - {-0.334466f,-0.00790535f,0.142688f},{-0.338577f,-0.00767878f,0.142938f},{-0.278839f,-0.0199715f,0.144489f}, - {-0.264f,-0.0254953f,0.148828f},{-0.267945f,-0.0239945f,0.147747f},{-0.271858f,-0.0224149f,0.146665f}, - {-0.283628f,-0.0176882f,0.143502f},{-0.275768f,-0.0208215f,0.145592f},{-0.279683f,-0.0192329f,0.144529f}, - {-0.295955f,-0.0136618f,0.142081f},{-0.287664f,-0.0162503f,0.14274f},{-0.2918f,-0.0149457f,0.142346f}, - {-0.31263f,-0.00869072f,0.141186f},{-0.308401f,-0.00973903f,0.141305f},{-0.304248f,-0.0110356f,0.141581f}, - {-0.321265f,-0.00795144f,0.141896f},{-0.316941f,-0.0081943f,0.14144f},{-0.325589f,-0.00772122f,0.142378f}, - {-0.329914f,-0.00747253f,0.142842f},{-0.334241f,-0.00719397f,0.143263f},{-0.338577f,-0.00690556f,0.143577f}, - {-0.300098f,-0.0123399f,0.141831f},{-0.264f,-0.0250324f,0.148916f},{-0.267971f,-0.0235306f,0.147857f}, - {-0.271889f,-0.0219498f,0.146794f},{-0.283688f,-0.0172517f,0.143711f},{-0.275809f,-0.0203651f,0.14574f}, - {-0.296012f,-0.0132021f,0.142332f},{-0.287719f,-0.0158114f,0.142927f},{-0.291851f,-0.0144807f,0.142544f}, - {-0.308457f,-0.0092687f,0.141666f},{-0.304299f,-0.0105497f,0.141886f},{-0.300157f,-0.0118813f,0.142106f}, - {-0.321297f,-0.0073368f,0.142324f},{-0.316973f,-0.00759572f,0.141811f},{-0.312673f,-0.00819435f,0.141567f}, - {-0.325613f,-0.00708183f,0.142866f},{-0.32993f,-0.00678804f,0.143377f},{-0.334249f,-0.00646507f,0.143843f}, - {-0.338577f,-0.00613003f,0.144218f},{-0.279733f,-0.0187868f,0.144697f},{-0.326294f,-0.00696068f,0.143005f}, - {-0.330384f,-0.00667554f,0.143491f},{-0.334476f,-0.00636198f,0.143939f},{-0.318115f,-0.00748015f,0.141999f}, - {-0.314024f,-0.00786981f,0.141631f},{-0.322205f,-0.00722771f,0.1425f},{-0.302112f,-0.0111819f,0.142035f}, - {-0.309993f,-0.00875236f,0.14162f},{-0.290321f,-0.014914f,0.142686f},{-0.298189f,-0.0124511f,0.142242f}, - {-0.294261f,-0.0137038f,0.142453f},{-0.282633f,-0.0175985f,0.143972f},{-0.278896f,-0.0190677f,0.144928f}, - {-0.286425f,-0.0162018f,0.143129f},{-0.275179f,-0.0205663f,0.145919f},{-0.271464f,-0.022067f,0.146916f}, - {-0.267747f,-0.0235578f,0.14792f},{-0.306047f,-0.00994863f,0.141826f},{-0.338577f,-0.00603944f,0.144293f}, - {-0.272455f,-0.00744254f,0.145994f},{-0.268304f,-0.015865f,0.147531f},{-0.268397f,-0.0083666f,0.146789f}, - {-0.272638f,-0.000311244f,0.144934f},{-0.268488f,-0.000930332f,0.145573f},{-0.272193f,0.00667554f,0.143491f}, - {-0.264f,-0.00158091f,0.146182f},{-0.268101f,0.0063617f,0.143935f},{-0.264f,-0.00932143f,0.147589f}, - {-0.264f,0.00603944f,0.144293f},{-0.276379f,-0.00654234f,0.145204f},{-0.28029f,-0.00567271f,0.144415f}, - {-0.276103f,-0.0134133f,0.14569f},{-0.287869f,-0.00989537f,0.143217f},{-0.283807f,-0.0110779f,0.143908f}, - {-0.28841f,-0.00388505f,0.143059f},{-0.279922f,-0.0122295f,0.144789f},{-0.296503f,-0.0072715f,0.142814f}, - {-0.301301f,-1.23849e-006f,0.142893f},{-0.300722f,-0.00593214f,0.142703f},{-0.292161f,-0.00860427f,0.142918f}, - {-0.30924f,-0.00327255f,0.142485f},{-0.31361f,-0.00211647f,0.14253f},{-0.305494f,0.00133631f,0.142894f}, - {-0.304916f,-0.00459153f,0.142593f},{-0.334185f,0.00836678f,0.146789f},{-0.334094f,0.00093054f,0.145573f}, - {-0.329944f,0.000310969f,0.144934f},{-0.317858f,-0.00135717f,0.142953f},{-0.318318f,0.00485039f,0.143617f}, - {-0.338577f,0.00158091f,0.146182f},{-0.325928f,-0.000284983f,0.144284f},{-0.330127f,0.00744232f,0.145994f}, - {-0.338577f,0.0171357f,0.148501f},{-0.334277f,0.0158652f,0.147532f},{-0.321928f,-0.000835711f,0.143615f}, - {-0.326203f,0.00654153f,0.145205f},{-0.322295f,0.00568021f,0.144405f},{-0.309815f,0.00265603f,0.142905f}, - {-0.314151f,0.00387587f,0.143071f},{-0.292745f,-0.00267273f,0.142876f},{-0.297082f,-0.00133739f,0.142892f}, - {-0.284266f,-0.00483092f,0.143642f},{-0.272271f,-0.0146267f,0.1466f},{-0.264f,-0.0171357f,0.148501f}, - {-0.276283f,0.0069607f,0.143005f},{-0.276654f,0.000284018f,0.144284f},{-0.280372f,0.00722775f,0.1425f}, - {-0.280656f,0.000847135f,0.143625f},{-0.284462f,0.00746803f,0.141989f},{-0.284723f,0.00138663f,0.142978f}, - {-0.288553f,0.00787057f,0.141632f},{-0.288949f,0.00210321f,0.142519f},{-0.292582f,0.00875939f,0.141625f}, - {-0.293326f,0.00324421f,0.142456f},{-0.296532f,0.00994211f,0.141827f},{-0.334828f,0.023562f,0.147921f}, - {-0.338577f,0.0249766f,0.148916f},{-0.29766f,0.00458966f,0.142591f},{-0.300462f,0.0111906f,0.142034f}, - {-0.304385f,0.0124586f,0.142239f},{-0.30188f,0.00592971f,0.142704f},{-0.308317f,0.0136985f,0.142455f}, - {-0.306073f,0.00727121f,0.142816f},{-0.312257f,0.0149126f,0.142682f},{-0.310392f,0.00859914f,0.142945f}, - {-0.316149f,0.0162055f,0.143141f},{-0.314695f,0.0098903f,0.143228f},{-0.319944f,0.0175985f,0.143972f}, - {-0.31878f,0.0110874f,0.143884f},{-0.323681f,0.0190677f,0.144928f},{-0.322664f,0.012233f,0.144779f}, - {-0.327398f,0.0205663f,0.145919f},{-0.326479f,0.0134127f,0.14569f},{-0.331113f,0.0220671f,0.146916f}, - {-0.330311f,0.0146265f,0.1466f},{-0.338577f,0.00932143f,0.147589f},{-0.264f,0.00690312f,0.143579f}, - {-0.268335f,0.00719191f,0.143259f},{-0.272663f,0.00746979f,0.142843f},{-0.285643f,0.00814762f,0.141414f}, - {-0.276988f,0.0077197f,0.142379f},{-0.281312f,0.00793083f,0.141883f},{-0.298329f,0.0110361f,0.141582f}, - {-0.302474f,0.0123542f,0.141829f},{-0.289949f,0.00871456f,0.141206f},{-0.294168f,0.00976951f,0.141335f}, - {-0.314917f,0.0162476f,0.14273f},{-0.310786f,0.0149252f,0.142321f},{-0.306622f,0.0136614f,0.142081f}, - {-0.322891f,0.0192347f,0.144536f},{-0.318943f,0.0176916f,0.143534f},{-0.326807f,0.0208212f,0.145595f}, - {-0.330719f,0.022413f,0.146665f},{-0.33463f,0.0239981f,0.147749f},{-0.338577f,0.0254927f,0.148829f}, - {-0.264f,0.00767576f,0.142941f},{-0.268111f,0.00790232f,0.142685f},{-0.272215f,0.00812312f,0.142338f}, - {-0.284517f,0.00864847f,0.1411f},{-0.276317f,0.00831807f,0.141942f},{-0.280417f,0.00849626f,0.141525f}, - {-0.296607f,0.0109591f,0.141114f},{-0.288618f,0.00897354f,0.140816f},{-0.292654f,0.00981108f,0.140864f}, - {-0.308402f,0.0146249f,0.141884f},{-0.304467f,0.0134151f,0.141621f},{-0.30054f,0.0121769f,0.141369f}, - {-0.320015f,0.0184881f,0.143513f},{-0.312344f,0.0158082f,0.142159f},{-0.316233f,0.0170869f,0.142657f}, - {-0.323738f,0.0199696f,0.144491f},{-0.32744f,0.0214809f,0.145503f},{-0.33114f,0.0229915f,0.146524f}, - {-0.334841f,0.0244911f,0.147559f},{-0.338577f,0.0259001f,0.148595f},{-0.264f,0.00844643f,0.142304f}, - {-0.268112f,0.0086212f,0.142086f},{-0.272217f,0.00879266f,0.141776f},{-0.284522f,0.00917932f,0.140643f}, - {-0.27632f,0.00894054f,0.141415f},{-0.296616f,0.0113914f,0.140713f},{-0.288623f,0.00946126f,0.140385f}, - {-0.292661f,0.0102671f,0.14045f},{-0.308414f,0.0149971f,0.141521f},{-0.304478f,0.0138071f,0.141245f}, - {-0.30055f,0.0125887f,0.140981f},{-0.320025f,0.0188214f,0.143167f},{-0.312357f,0.0161597f,0.14181f}, - {-0.316245f,0.0174245f,0.142314f},{-0.323745f,0.0203004f,0.144141f},{-0.327445f,0.0218097f,0.145149f}, - {-0.331143f,0.0233168f,0.146167f},{-0.334842f,0.0248099f,0.147201f},{-0.338577f,0.0262067f,0.148241f}, - {-0.280421f,0.0090726f,0.141033f},{-0.264f,0.00921688f,0.141668f},{-0.268109f,0.00933302f,0.141483f}, - {-0.272213f,0.00944958f,0.141206f},{-0.284511f,0.00968445f,0.140171f},{-0.276314f,0.00954568f,0.140879f}, - {-0.296607f,0.0117779f,0.140285f},{-0.288611f,0.00991732f,0.139936f},{-0.29265f,0.0106844f,0.140013f}, - {-0.308407f,0.0153055f,0.141121f},{-0.304471f,0.0141412f,0.140836f},{-0.300542f,0.0129485f,0.140562f}, - {-0.320019f,0.0190685f,0.142768f},{-0.316239f,0.0176844f,0.141924f},{-0.312351f,0.016441f,0.141419f}, - {-0.32374f,0.0205358f,0.143733f},{-0.32744f,0.0220341f,0.144732f},{-0.331138f,0.0235282f,0.145742f}, - {-0.334839f,0.0250051f,0.146769f},{-0.338577f,0.0263788f,0.147805f},{-0.280413f,0.00962732f,0.140529f}, - {-0.268106f,0.00976429f,0.141114f},{-0.264f,0.00968775f,0.141279f},{-0.280402f,0.00995451f,0.140217f}, - {-0.276306f,0.00990606f,0.140549f},{-0.272207f,0.00984421f,0.140856f},{-0.292635f,0.0109184f,0.13974f}, - {-0.284498f,0.00997907f,0.139878f},{-0.304457f,0.0143137f,0.140577f},{-0.300528f,0.01314f,0.140298f}, - {-0.296593f,0.0119892f,0.140016f},{-0.316228f,0.0178005f,0.141673f},{-0.312338f,0.0165744f,0.141169f}, - {-0.308394f,0.015459f,0.140867f},{-0.323731f,0.0206269f,0.143469f},{-0.320009f,0.0191718f,0.142511f}, - {-0.327432f,0.0221132f,0.144461f},{-0.331132f,0.0235942f,0.145464f},{-0.334836f,0.0250554f,0.146485f}, - {-0.338577f,0.0264087f,0.147518f},{-0.288596f,0.0101788f,0.139657f},{-0.302478f,0.0137161f,0.140288f}, - {-0.298329f,0.0124851f,0.140002f},{-0.294164f,0.0113146f,0.139715f},{-0.28994f,0.0103804f,0.139538f}, - {-0.285632f,0.00997452f,0.139665f},{-0.281304f,0.00994023f,0.140012f},{-0.276982f,0.00991203f,0.140375f}, - {-0.272659f,0.009849f,0.140706f},{-0.268332f,0.00976769f,0.140986f},{-0.264f,0.00968775f,0.141169f}, - {-0.306628f,0.014938f,0.140581f},{-0.310795f,0.0161103f,0.140863f},{-0.314927f,0.0173564f,0.141293f}, - {-0.318949f,0.0187613f,0.142077f},{-0.322893f,0.0202782f,0.143048f},{-0.326806f,0.021842f,0.144073f}, - {-0.330714f,0.0234057f,0.145113f},{-0.334625f,0.024951f,0.146173f},{-0.338577f,0.0263814f,0.147244f}, - {-0.268582f,0.00976336f,0.140775f},{-0.264f,0.00968775f,0.140979f},{-0.282301f,0.00990978f,0.139723f}, - {-0.27773f,0.00989796f,0.140113f},{-0.273158f,0.00983969f,0.140469f},{-0.291415f,0.0106101f,0.139359f}, - {-0.295853f,0.0117247f,0.139609f},{-0.286881f,0.00998742f,0.139387f},{-0.304641f,0.0142908f,0.140193f}, - {-0.309044f,0.0155467f,0.140484f},{-0.300252f,0.0129908f,0.139902f},{-0.321941f,0.0197978f,0.142487f}, - {-0.317743f,0.0182285f,0.141521f},{-0.313441f,0.0168071f,0.140836f},{-0.326094f,0.0214356f,0.143538f}, - {-0.330239f,0.0230806f,0.14461f},{-0.334386f,0.0247084f,0.145702f},{-0.338577f,0.0262125f,0.146805f}, - {-0.268576f,0.00974593f,0.140582f},{-0.264f,0.00968775f,0.140788f},{-0.282277f,0.00985594f,0.139537f}, - {-0.277712f,0.00985469f,0.139924f},{-0.273146f,0.00980831f,0.140278f},{-0.295818f,0.0116247f,0.13941f}, - {-0.28685f,0.00992109f,0.139202f},{-0.304602f,0.0141594f,0.139977f},{-0.309003f,0.0154002f,0.140259f}, - {-0.300215f,0.0128748f,0.139695f},{-0.321909f,0.0195912f,0.142214f},{-0.317704f,0.0180446f,0.141269f}, - {-0.3134f,0.0166436f,0.140601f},{-0.326069f,0.021206f,0.143245f},{-0.330222f,0.0228275f,0.144296f}, - {-0.334378f,0.0244304f,0.145365f},{-0.338577f,0.0259067f,0.146446f},{-0.291381f,0.0105278f,0.139169f}, - {-0.268569f,0.00972275f,0.140397f},{-0.264f,0.00968775f,0.140597f},{-0.282252f,0.00978412f,0.139372f}, - {-0.277693f,0.0097971f,0.139752f},{-0.273133f,0.00976655f,0.140099f},{-0.291345f,0.0104201f,0.139009f}, - {-0.295781f,0.0114944f,0.139248f},{-0.286819f,0.00983335f,0.139043f},{-0.304563f,0.013988f,0.139811f}, - {-0.308962f,0.0152086f,0.14009f},{-0.300177f,0.0127235f,0.13953f},{-0.321876f,0.01932f,0.142022f}, - {-0.317666f,0.017804f,0.141087f},{-0.313358f,0.0164298f,0.140429f},{-0.326044f,0.0209031f,0.143041f}, - {-0.330205f,0.0224922f,0.144081f},{-0.334369f,0.0240607f,0.145139f},{-0.338577f,0.0254987f,0.146209f}, - {-0.268205f,-0.0240512f,0.145139f},{-0.264f,-0.0254987f,0.146209f},{-0.276531f,-0.0208987f,0.143038f}, - {-0.272372f,-0.0224907f,0.144081f},{-0.289223f,-0.0164319f,0.14044f},{-0.29362f,-0.015224f,0.140101f}, - {-0.284903f,-0.0177924f,0.141053f},{-0.302398f,-0.0127141f,0.139531f},{-0.306793f,-0.0114783f,0.139232f}, - {-0.298012f,-0.0139803f,0.139813f},{-0.320325f,-0.00981234f,0.139389f},{-0.315765f,-0.00988648f,0.139069f}, - {-0.311233f,-0.0103884f,0.138993f},{-0.324884f,-0.00979575f,0.139753f},{-0.329444f,-0.00976673f,0.1401f}, - {-0.334007f,-0.00972076f,0.140404f},{-0.338577f,-0.00968775f,0.140597f},{-0.280697f,-0.0193145f,0.142013f}, - {-0.268196f,-0.0244211f,0.145365f},{-0.264f,-0.0259067f,0.146446f},{-0.280665f,-0.0195856f,0.142206f}, - {-0.276506f,-0.0212016f,0.143242f},{-0.272354f,-0.0228261f,0.144296f},{-0.289182f,-0.016646f,0.140613f}, - {-0.29358f,-0.0154158f,0.14027f},{-0.284865f,-0.0180326f,0.141234f},{-0.306756f,-0.0116084f,0.139394f}, - {-0.30236f,-0.0128655f,0.139695f},{-0.297973f,-0.0141518f,0.13998f},{-0.320299f,-0.0098846f,0.139554f}, - {-0.315733f,-0.0099743f,0.139229f},{-0.311197f,-0.0104962f,0.139152f},{-0.324865f,-0.00985341f,0.139926f}, - {-0.329431f,-0.00980859f,0.140279f},{-0.334001f,-0.0097442f,0.140589f},{-0.338577f,-0.00968775f,0.140788f}, - {-0.268187f,-0.0246992f,0.145701f},{-0.264f,-0.0262125f,0.146805f},{-0.280632f,-0.019792f,0.142478f}, - {-0.276481f,-0.0214312f,0.143536f},{-0.272337f,-0.0230793f,0.144611f},{-0.293539f,-0.0155626f,0.140495f}, - {-0.284826f,-0.0182163f,0.141486f},{-0.30672f,-0.0117083f,0.139593f},{-0.302322f,-0.0129816f,0.139903f}, - {-0.297934f,-0.0142832f,0.140196f},{-0.320275f,-0.00993888f,0.139741f},{-0.315703f,-0.0100406f,0.139415f}, - {-0.311163f,-0.0105787f,0.139342f},{-0.324847f,-0.00989672f,0.140115f},{-0.329419f,-0.00984006f,0.140471f}, - {-0.333995f,-0.00976183f,0.140782f},{-0.338577f,-0.00968775f,0.140979f},{-0.289141f,-0.0168098f,0.140849f}, - {-0.264f,-0.0264087f,0.147518f},{-0.275145f,-0.0221132f,0.144461f},{-0.271445f,-0.0235942f,0.145464f}, - {-0.267741f,-0.0250554f,0.146485f},{-0.28635f,-0.0178005f,0.141673f},{-0.290239f,-0.0165745f,0.141169f}, - {-0.278846f,-0.0206269f,0.143469f},{-0.282568f,-0.0191717f,0.142511f},{-0.302049f,-0.01314f,0.140298f}, - {-0.29812f,-0.0143137f,0.140577f},{-0.294183f,-0.015459f,0.140867f},{-0.313981f,-0.0101788f,0.139657f}, - {-0.309942f,-0.0109184f,0.13974f},{-0.305984f,-0.0119892f,0.140016f},{-0.322175f,-0.00995447f,0.140217f}, - {-0.318079f,-0.00997902f,0.139878f},{-0.326272f,-0.00990604f,0.140549f},{-0.33037f,-0.0098442f,0.140856f}, - {-0.334471f,-0.00976429f,0.141114f},{-0.338577f,-0.00968775f,0.141279f},{-0.267949f,-0.0249437f,0.146173f}, - {-0.264f,-0.0263814f,0.147244f},{-0.279681f,-0.0202741f,0.143041f},{-0.27577f,-0.0218394f,0.144071f}, - {-0.271862f,-0.023405f,0.145114f},{-0.287654f,-0.0173571f,0.141303f},{-0.291791f,-0.0161317f,0.140885f}, - {-0.283621f,-0.0187523f,0.14205f},{-0.300094f,-0.0136985f,0.140292f},{-0.304247f,-0.0124827f,0.140001f}, - {-0.295948f,-0.0149357f,0.140582f},{-0.31264f,-0.010352f,0.139523f},{-0.308404f,-0.0112762f,0.139687f}, - {-0.321273f,-0.00995919f,0.140024f},{-0.31695f,-0.010024f,0.139691f},{-0.325595f,-0.00991129f,0.140376f}, - {-0.329918f,-0.00984923f,0.140707f},{-0.338577f,-0.00968775f,0.141169f},{-0.334244f,-0.00976681f,0.140992f}, - {-0.113384f,0.00379135f,0.144903f},{-0.113745f,0.00496458f,0.14459f},{-0.113263f,-0.00742307f,0.147291f}, - {-0.113263f,0.00257039f,0.145216f},{-0.114327f,0.00603944f,0.144293f},{-0.113263f,-0.00240499f,0.146356f}, - {-0.215517f,-0.0211541f,0.148776f},{-0.167133f,-0.0173396f,0.148518f},{-0.118851f,-0.013533f,0.148143f}, - {-0.117569f,-0.0132893f,0.148115f},{-0.116377f,-0.0127783f,0.148054f},{-0.115321f,-0.0120253f,0.147961f}, - {-0.114448f,-0.0110634f,0.147836f},{-0.113799f,-0.00994277f,0.14768f},{-0.113398f,-0.00870927f,0.147496f}, - {-0.113525f,-0.0123416f,0.145204f},{-0.112615f,-0.0109102f,0.145018f},{-0.114734f,-0.0135295f,0.145346f}, - {-0.15205f,-0.0164058f,0.14564f},{-0.189366f,-0.0192822f,0.145867f},{-0.226683f,-0.0221586f,0.146027f}, - {-0.112054f,-0.00932212f,0.144792f},{-0.111865f,-0.00765064f,0.144531f},{-0.119322f,0.00968775f,0.140407f}, - {-0.117633f,0.00949318f,0.140468f},{-0.112587f,0.00543154f,0.141666f},{-0.112048f,0.00387196f,0.142086f}, - {-0.116038f,0.00892517f,0.140645f},{-0.114625f,0.0080214f,0.14092f},{-0.113456f,0.00683431f,0.141269f}, - {-0.111865f,0.00223012f,0.142505f},{-0.119322f,0.00968775f,0.141279f},{-0.111865f,-0.00268915f,0.144987f}, - {-0.111865f,0.00223012f,0.14386f},{-0.111865f,-0.00765064f,0.145911f},{-0.116009f,-0.0143331f,0.145639f}, - {-0.117166f,-0.0147899f,0.146726f},{-0.117347f,-0.0148426f,0.146158f},{-0.118743f,-0.0150857f,0.146754f}, - {-0.115703f,-0.014171f,0.146666f},{-0.1144f,-0.0132538f,0.146574f},{-0.113328f,-0.0120868f,0.14645f}, - {-0.112525f,-0.0107201f,0.146296f},{-0.112032f,-0.00921907f,0.146114f},{-0.114787f,0.00815064f,0.142549f}, - {-0.113553f,0.00695586f,0.14283f},{-0.112058f,0.00391721f,0.143508f},{-0.112631f,0.00552233f,0.143157f}, - {-0.116176f,0.0089918f,0.141854f},{-0.117706f,0.00951028f,0.141426f},{-0.113829f,0.00632699f,0.144055f}, - {-0.113789f,0.0068323f,0.143638f},{-0.114001f,0.00732043f,0.143234f},{-0.114347f,0.00776225f,0.14287f}, - {-0.227685f,-0.0235779f,0.147426f},{-0.216179f,-0.0219204f,0.148625f},{-0.216137f,-0.0224876f,0.148085f}, - {-0.155057f,-0.0179164f,0.147043f},{-0.118746f,-0.0149745f,0.1473f},{-0.167425f,-0.0186837f,0.147841f}, - {-0.118809f,-0.0140869f,0.148094f},{-0.167468f,-0.0180963f,0.148384f},{-0.11877f,-0.0146193f,0.147797f}, - {-0.191371f,-0.0207472f,0.147267f},{-0.112274f,-0.00748972f,0.146886f},{-0.112435f,-0.00897658f,0.147115f}, - {-0.112116f,-0.00911758f,0.146645f},{-0.112887f,-0.0103998f,0.147311f},{-0.113376f,-0.0119652f,0.146998f}, - {-0.112592f,-0.0106014f,0.146835f},{-0.114648f,-0.0128307f,0.147613f},{-0.11572f,-0.0140507f,0.147224f}, - {-0.114435f,-0.0131339f,0.147128f},{-0.117179f,-0.0146743f,0.147286f},{-0.114951f,-0.0124497f,0.147903f}, - {-0.114003f,-0.0113986f,0.14777f},{-0.117405f,-0.0138348f,0.148064f},{-0.117272f,-0.0143101f,0.147775f}, - {-0.116101f,-0.013274f,0.148f},{-0.112748f,-0.00743905f,0.147194f},{-0.112873f,-0.00883688f,0.14741f}, - {-0.111963f,-0.00756687f,0.146419f},{-0.1133f,-0.0101719f,0.147604f},{-0.115877f,-0.0137111f,0.147711f}, - {-0.113636f,-0.0117086f,0.147479f},{-0.112073f,-0.00254212f,0.145696f},{-0.112539f,-0.0024474f,0.146152f}, - {-0.112048f,0.00239822f,0.14453f},{-0.112586f,0.00252701f,0.145044f},{-0.11229f,0.00405957f,0.14418f}, - {-0.113281f,0.00550952f,0.144258f},{-0.112863f,0.00559184f,0.143809f},{-0.112743f,0.00407172f,0.14463f}, - {-0.227099f,-0.022887f,0.146255f},{-0.227063f,-0.0233314f,0.14672f},{-0.151481f,-0.0174497f,0.14634f}, - {-0.189252f,-0.0203893f,0.146565f},{-0.189288f,-0.0199559f,0.146102f},{-0.151517f,-0.0170273f,0.145879f}, - {-0.489052f,0.0123416f,0.145204f},{-0.489962f,0.0109102f,0.145018f},{-0.487844f,0.0135295f,0.145346f}, - {-0.450527f,0.0164058f,0.14564f},{-0.413211f,0.0192822f,0.145867f},{-0.375894f,0.0221586f,0.146027f}, - {-0.490523f,0.00932212f,0.144792f},{-0.490713f,0.00765064f,0.144531f},{-0.483255f,-0.00968775f,0.140407f}, - {-0.484944f,-0.00949318f,0.140468f},{-0.48999f,-0.00543154f,0.141666f},{-0.49053f,-0.00387196f,0.142086f}, - {-0.486539f,-0.00892517f,0.140645f},{-0.487952f,-0.0080214f,0.14092f},{-0.489121f,-0.00683431f,0.141269f}, - {-0.490713f,-0.00223012f,0.142505f},{-0.489193f,-0.00379135f,0.144903f},{-0.488833f,-0.00496458f,0.14459f}, - {-0.489314f,0.00742307f,0.147291f},{-0.489314f,-0.00257039f,0.145216f},{-0.48825f,-0.00603944f,0.144293f}, - {-0.489314f,0.00240499f,0.146356f},{-0.387061f,0.0211541f,0.148776f},{-0.435444f,0.0173396f,0.148518f}, - {-0.483726f,0.013533f,0.148143f},{-0.485001f,0.0132913f,0.148115f},{-0.486194f,0.0127821f,0.148055f}, - {-0.487252f,0.0120287f,0.147962f},{-0.488124f,0.0110706f,0.147837f},{-0.488776f,0.00994698f,0.14768f}, - {-0.489178f,0.00871793f,0.147497f},{-0.483255f,-0.00968775f,0.141279f},{-0.490713f,0.00268915f,0.144987f}, - {-0.490713f,0.00765064f,0.145911f},{-0.490713f,-0.00223012f,0.14386f},{-0.486568f,0.0143331f,0.145639f}, - {-0.4854f,0.014793f,0.146726f},{-0.48523f,0.0148426f,0.146158f},{-0.483834f,0.0150857f,0.146754f}, - {-0.486869f,0.014174f,0.146667f},{-0.488168f,0.0132606f,0.146575f},{-0.489246f,0.0120925f,0.146451f}, - {-0.490048f,0.0107278f,0.146297f},{-0.490544f,0.00922792f,0.146115f},{-0.48779f,-0.00815064f,0.142549f}, - {-0.489024f,-0.00695586f,0.14283f},{-0.489946f,-0.00552233f,0.143157f},{-0.490519f,-0.00391721f,0.143508f}, - {-0.486401f,-0.0089918f,0.141854f},{-0.484871f,-0.00951028f,0.141426f},{-0.488788f,-0.0068323f,0.143638f}, - {-0.488748f,-0.00632699f,0.144055f},{-0.488576f,-0.00732043f,0.143234f},{-0.48823f,-0.00776225f,0.14287f}, - {-0.374892f,0.0235779f,0.147426f},{-0.386398f,0.0219204f,0.148625f},{-0.38644f,0.0224876f,0.148085f}, - {-0.447521f,0.0179164f,0.147043f},{-0.483831f,0.0149745f,0.1473f},{-0.435152f,0.0186837f,0.147841f}, - {-0.483769f,0.0140869f,0.148094f},{-0.435109f,0.0180963f,0.148384f},{-0.483807f,0.0146193f,0.147797f}, - {-0.411206f,0.0207472f,0.147267f},{-0.486695f,0.0137517f,0.147682f},{-0.485162f,0.013838f,0.148064f}, - {-0.485304f,0.0143462f,0.147745f},{-0.488127f,0.0131473f,0.147128f},{-0.486836f,0.0140617f,0.147224f}, - {-0.485388f,0.0146779f,0.147286f},{-0.48927f,0.0101903f,0.147606f},{-0.488565f,0.0114133f,0.147771f}, - {-0.490167f,0.00899738f,0.147089f},{-0.490614f,0.00756687f,0.146419f},{-0.490303f,0.00748972f,0.146886f}, - {-0.489978f,0.0106218f,0.146837f},{-0.489191f,0.0119815f,0.146999f},{-0.490458f,0.00912889f,0.146646f}, - {-0.489708f,0.0104352f,0.147285f},{-0.489702f,0.00884706f,0.147411f},{-0.487935f,0.0128697f,0.147584f}, - {-0.486458f,0.0132839f,0.148001f},{-0.489829f,0.00743905f,0.147194f},{-0.487613f,0.0124617f,0.147903f}, - {-0.488955f,0.0117456f,0.147451f},{-0.490504f,0.00254212f,0.145696f},{-0.490038f,0.0024474f,0.146152f}, - {-0.490529f,-0.00239822f,0.14453f},{-0.489991f,-0.00252701f,0.145044f},{-0.490287f,-0.00405957f,0.14418f}, - {-0.489296f,-0.00550952f,0.144258f},{-0.489714f,-0.00559184f,0.143809f},{-0.489834f,-0.00407172f,0.14463f}, - {-0.375514f,0.0233314f,0.14672f},{-0.375478f,0.022887f,0.146255f},{-0.45106f,0.0170273f,0.145879f}, - {-0.451096f,0.0174497f,0.14634f},{-0.413325f,0.0203893f,0.146565f},{-0.413289f,0.0199559f,0.146102f}, - {-0.299632f,-0.0043568f,0.127503f},{-0.298639f,-0.00383438f,0.127503f},{-0.297796f,-0.00308638f,0.127503f}, - {-0.29716f,-0.00216232f,0.127503f},{-0.301848f,-0.00462734f,0.127503f},{-0.300722f,-0.00462608f,0.127503f}, - {-0.303933f,-0.00383806f,0.127503f},{-0.302939f,-0.00435903f,0.127503f},{-0.304776f,-0.00309213f,0.127503f}, - {-0.305415f,-0.00216808f,0.127503f},{-0.305813f,-0.00111857f,0.127503f},{-0.296762f,-0.0011128f,0.127503f}, - {-0.298964f,0.00150163f,0.127503f},{-0.29861f,0.000787374f,0.127503f},{-0.29946f,0.00211724f,0.127503f}, - {-0.30013f,0.00254559f,0.127503f},{-0.300894f,0.00276842f,0.127503f},{-0.301689f,0.00276723f,0.127503f}, - {-0.302452f,0.00254283f,0.127503f},{-0.303112f,0.00210508f,0.127503f},{-0.303628f,0.00150519f,0.127503f}, - {-0.303974f,0.00078745f,0.127503f},{-0.302447f,0.00254559f,0.136825f},{-0.301683f,0.00276842f,0.136825f}, - {-0.298949f,0.00150519f,0.136825f},{-0.300888f,0.00276723f,0.136825f},{-0.299465f,0.00210508f,0.136825f}, - {-0.298603f,0.00078745f,0.136825f},{-0.300125f,0.00254283f,0.136825f},{-0.303117f,0.00211724f,0.136825f}, - {-0.303613f,0.00150163f,0.136825f},{-0.303967f,0.000787374f,0.136825f},{-0.322419f,-0.00265777f,0.127503f}, - {-0.321638f,-0.00225612f,0.127503f},{-0.321021f,-0.00163414f,0.127503f},{-0.324145f,-0.00266037f,0.127503f}, - {-0.324923f,-0.00226719f,0.127503f},{-0.323289f,-0.00279661f,0.127503f},{-0.325545f,-0.00165072f,0.127503f}, - {-0.325946f,-0.000869207f,0.127503f},{-0.320631f,-0.000869207f,0.127503f},{-0.278419f,-0.00265777f,0.127503f}, - {-0.277638f,-0.00225612f,0.127503f},{-0.277021f,-0.00163414f,0.127503f},{-0.280145f,-0.00266037f,0.127503f}, - {-0.279289f,-0.00279661f,0.127503f},{-0.281545f,-0.00165072f,0.127503f},{-0.280923f,-0.00226719f,0.127503f}, - {-0.281946f,-0.000869207f,0.127503f},{-0.276631f,-0.000869207f,0.127503f},{-0.0027207f,0.323702f,0.141016f}, - {-0.00279661f,0.323289f,0.127503f},{-0.00276223f,0.322911f,0.140921f},{-0.00254178f,0.324476f,0.141133f}, - {-0.00266037f,0.324145f,0.127503f},{-0.00226719f,0.324923f,0.127503f},{-0.00210085f,0.325128f,0.141283f}, - {-0.000869207f,0.325946f,0.127503f},{-0.00165072f,0.325545f,0.127503f},{-0.00149803f,0.325656f,0.141448f}, - {-0.000793813f,0.325978f,0.141604f},{-2.68373e-017f,0.326085f,0.127503f},{2.12873e-008f,0.326085f,0.141748f}, - {-0.00265777f,0.322419f,0.127503f},{-0.00255964f,0.322139f,0.140869f},{-0.00225612f,0.321638f,0.127503f}, - {-0.00163414f,0.321021f,0.127503f},{-0.00212367f,0.321467f,0.140862f},{-0.000869207f,0.320631f,0.127503f}, - {-0.00151779f,0.320933f,0.140892f},{-0.000793595f,0.320598f,0.140955f},{-2.77368e-017f,0.320492f,0.127503f}, - {-2.77368e-017f,0.320492f,0.141048f},{-0.00226719f,0.280923f,0.127503f},{-0.00266113f,0.280167f,0.141631f}, - {-0.00225617f,0.280949f,0.141475f},{-0.00266037f,0.280145f,0.127503f},{-0.00165072f,0.281545f,0.127503f}, - {-0.00161123f,0.281516f,0.141322f},{-0.000869207f,0.281946f,0.127503f},{-0.000861428f,0.281954f,0.141174f}, - {-0.00279699f,0.279308f,0.141768f},{-2.26626e-008f,0.282085f,0.141048f},{-3.69839e-017f,0.282085f,0.127503f}, - {-0.00279661f,0.279289f,0.127503f},{-0.00267244f,0.278435f,0.141876f},{-0.00227523f,0.277655f,0.141932f}, - {-0.00265777f,0.278419f,0.127503f},{-0.00225612f,0.277638f,0.127503f},{-0.00164828f,0.277026f,0.14193f}, - {-0.00163414f,0.277021f,0.127503f},{-0.000869207f,0.276631f,0.127503f},{-0.000867575f,0.276622f,0.141868f}, - {-3.66414e-017f,0.276492f,0.127503f},{-3.66414e-017f,0.276492f,0.141748f},{0.00279661f,0.301289f,0.136825f}, - {0.00266037f,0.302145f,0.127503f},{0.00226719f,0.299654f,0.136825f},{0.00265777f,0.300419f,0.127503f}, - {0.00225612f,0.299638f,0.127503f},{0.00266037f,0.300432f,0.136825f},{0.00165072f,0.299032f,0.136825f}, - {0.000869207f,0.298631f,0.127503f},{-2.80793e-017f,0.298492f,0.136825f},{0.000869207f,0.298631f,0.136825f}, - {0.00163414f,0.299021f,0.127503f},{-2.80793e-017f,0.298492f,0.127503f},{0.00265777f,0.302158f,0.136825f}, - {0.00226719f,0.302923f,0.127503f},{0.00225612f,0.302939f,0.136825f},{0.00163414f,0.303556f,0.136825f}, - {0.00165072f,0.303545f,0.127503f},{0.000869207f,0.303946f,0.136825f},{0.000869207f,0.303946f,0.127503f}, - {-2.77368e-017f,0.304085f,0.127503f},{-2.77368e-017f,0.304085f,0.136825f},{-0.00383933f,0.303941f,0.140336f}, - {-0.00435933f,0.302938f,0.127503f},{-0.00437081f,0.302948f,0.140342f},{-0.00462728f,0.301847f,0.127503f}, - {-0.00383758f,0.303934f,0.127503f},{-0.00463064f,0.301857f,0.140371f},{-0.00309444f,0.304774f,0.127503f}, - {-0.00308762f,0.304783f,0.140354f},{-0.00216892f,0.305414f,0.127503f},{-0.00463006f,0.300727f,0.140416f}, - {-0.00216891f,0.30543f,0.14039f},{-0.00111911f,0.305813f,0.127503f},{-5.60324e-014f,0.30595f,0.140488f}, - {-3.35892e-010f,0.305949f,0.127503f},{-0.00112174f,0.305823f,0.140439f},{-0.00462657f,0.300724f,0.127503f}, - {-0.00435716f,0.299633f,0.127503f},{-0.00437228f,0.299631f,0.140465f},{-0.00384698f,0.298643f,0.140509f}, - {-0.0038338f,0.298638f,0.127503f},{-0.00308862f,0.297798f,0.127503f},{-0.00309221f,0.2978f,0.140537f}, - {-0.00216381f,0.29716f,0.127503f},{-0.00217168f,0.297151f,0.140543f},{-0.00112329f,0.296754f,0.140525f}, - {-0.00111503f,0.296763f,0.127503f},{-2.77368e-017f,0.296628f,0.140488f},{-2.77368e-017f,0.296628f,0.127503f}, - {-0.0031834f,0.333784f,0.141919f},{0.0034311f,0.333871f,0.143258f},{-0.00348389f,0.329361f,0.141453f}, - {0.013311f,0.321833f,0.142108f},{0.00749864f,0.321483f,0.141891f},{0.01447f,0.325857f,0.142985f}, - {0.0237151f,0.334598f,0.145107f},{0.0168317f,0.334046f,0.144795f},{0.0250351f,0.338577f,0.14612f}, - {0.00309212f,0.304777f,0.140537f},{0.00980991f,0.308789f,0.140443f},{0.00384705f,0.303935f,0.140509f}, - {0.000788852f,0.320598f,0.141161f},{0.00148198f,0.320971f,0.141294f},{0.00113058f,0.316843f,0.140739f}, - {0.00437081f,0.299629f,0.140342f},{0.00463066f,0.30072f,0.140371f},{0.00734722f,0.299868f,0.140099f}, - {-0.00981015f,0.293803f,0.140456f},{0.00383936f,0.298637f,0.140336f},{0.0030876f,0.297795f,0.140354f}, - {0.000835134f,0.29484f,0.140403f},{-0.00565577f,0.289735f,0.140706f},{-0.00448849f,0.294321f,0.140582f}, - {0.000794809f,0.281978f,0.140955f},{0.00431412f,0.286162f,0.139973f},{0.00152033f,0.281642f,0.140892f}, - {-0.0168309f,0.268522f,0.144796f},{-0.0250351f,0.264f,0.14612f},{-0.0237151f,0.26798f,0.145107f}, - {-0.0110109f,0.289229f,0.140705f},{-0.00922726f,0.272859f,0.143432f},{-0.0222833f,0.271923f,0.144104f}, - {-0.0156491f,0.272684f,0.143876f},{0.00348559f,0.273206f,0.141452f},{-0.00283697f,0.273034f,0.142622f}, - {0.000793378f,0.276599f,0.141605f},{0.00318417f,0.268783f,0.141918f},{-0.00342276f,0.268697f,0.143256f}, - {0.00969325f,0.268311f,0.140239f},{0.00290707f,0.264f,0.142335f},{-0.00398877f,0.264f,0.143878f}, - {0.00968775f,0.264f,0.140407f},{0.00378729f,0.277496f,0.140965f},{0.00209478f,0.277448f,0.141284f}, - {0.00253473f,0.278103f,0.141134f},{-0.010107f,0.26861f,0.144218f},{0.00272118f,0.278874f,0.141016f}, - {0.00973119f,0.281218f,0.139327f},{0.00404127f,0.281779f,0.140452f},{0.00858894f,0.304265f,0.140271f}, - {0.000322559f,0.312352f,0.140392f},{-0.00611166f,0.307227f,0.139905f},{-0.0049946f,0.311852f,0.139783f}, - {-0.00734676f,0.30271f,0.140099f},{0.0043723f,0.302947f,0.140465f},{-0.00405908f,0.320788f,0.140464f}, - {-0.00435339f,0.316411f,0.139998f},{0.00217165f,0.305426f,0.140543f},{0.00450063f,0.308268f,0.140568f}, - {0.00253786f,0.322112f,0.141575f},{0.00276739f,0.322873f,0.141709f},{0.00835592f,0.325595f,0.14266f}, - {0.00255847f,0.324441f,0.141903f},{0.00212169f,0.325113f,0.141937f},{0.0208182f,0.326719f,0.143118f}, - {0.00398877f,0.338577f,0.143878f},{0.0156505f,0.329883f,0.143875f},{-0.00968775f,0.338577f,0.140407f}, - {-0.00290707f,0.338577f,0.142335f},{-0.00969325f,0.334267f,0.140239f},{-0.00973122f,0.321359f,0.139327f}, - {-0.00972934f,0.32566f,0.139659f},{-0.00378494f,0.325074f,0.140965f},{0.0121774f,0.317712f,0.141276f}, - {0.00665136f,0.317277f,0.141165f},{-0.000816648f,0.307746f,0.140389f},{0.0027728f,0.323672f,0.141822f}, - {0.0101155f,0.333958f,0.144218f},{0.0179944f,0.338577f,0.145774f},{0.0222833f,0.330654f,0.144104f}, - {0.0109671f,0.338577f,0.145026f},{-0.0097173f,0.329962f,0.139971f},{-0.0097497f,0.317058f,0.139013f}, - {-0.00858896f,0.298313f,0.140271f},{0.00613049f,0.295355f,0.139921f},{-0.00115281f,0.285728f,0.140712f}, - {0.00500873f,0.290743f,0.139791f},{0.0120097f,0.298192f,0.13929f},{0.0108714f,0.294038f,0.138995f}, - {0.00463004f,0.30185f,0.140416f},{0.0131607f,0.30234f,0.139564f},{0.0143354f,0.306481f,0.139836f}, - {0.00566917f,0.312855f,0.140697f},{0.0110148f,0.313358f,0.140695f},{-0.0100181f,0.312766f,0.138847f}, - {-0.0108714f,0.308539f,0.138995f},{-0.0120097f,0.304385f,0.13929f},{-0.0131607f,0.300237f,0.139564f}, - {-0.0143354f,0.296096f,0.139836f},{-0.00666271f,0.285291f,0.14114f},{-0.00749967f,0.281083f,0.141879f}, - {0.00277232f,0.279664f,0.14092f},{0.00972932f,0.276917f,0.139659f},{0.00149718f,0.276921f,0.141448f}, - {-0.0121843f,0.284854f,0.141251f},{0.00255887f,0.280437f,0.140869f},{0.00212359f,0.28111f,0.140862f}, - {-0.000305779f,0.290241f,0.140401f},{0.00112176f,0.296754f,0.140439f},{0.00216894f,0.297147f,0.14039f}, - {-0.0133136f,0.280732f,0.142096f},{-0.00834704f,0.276975f,0.14266f},{-0.0144683f,0.276713f,0.142986f}, - {0.0028458f,0.329534f,0.142624f},{0.0092361f,0.329708f,0.143432f},{0.00151619f,0.325643f,0.141923f}, - {0.00079021f,0.325978f,0.141859f},{0.019351f,0.322781f,0.142144f},{0.0179262f,0.318817f,0.14121f}, - {0.0166178f,0.314771f,0.140509f},{0.00210151f,0.321454f,0.141433f},{0.00112326f,0.305823f,0.140525f}, - {0.0154659f,0.310634f,0.14012f},{0.0100181f,0.289811f,0.138847f},{-0.0154659f,0.291943f,0.14012f}, - {0.00974966f,0.285519f,0.139013f},{-0.0179262f,0.28376f,0.14121f},{-0.0166178f,0.287806f,0.140509f}, - {-0.0193511f,0.279796f,0.142144f},{-0.0208182f,0.275858f,0.143118f},{0.00971729f,0.272615f,0.139971f}, - {-0.0179944f,0.264f,0.145774f},{-0.0109671f,0.264f,0.145026f},{0.0262081f,0.338577f,0.148238f}, - {0.0248064f,0.334844f,0.147199f},{0.0250058f,0.334839f,0.146766f},{0.0233183f,0.331143f,0.146165f}, - {0.0235291f,0.331138f,0.145739f},{0.0188229f,0.320025f,0.143165f},{0.0190695f,0.320019f,0.142766f}, - {0.0203019f,0.323745f,0.144139f},{0.0205368f,0.32374f,0.143731f},{0.022035f,0.32744f,0.14473f}, - {0.0218112f,0.327445f,0.145147f},{0.015307f,0.308407f,0.141119f},{0.0150041f,0.308412f,0.141517f}, - {0.0141429f,0.304471f,0.140834f},{0.0174212f,0.316248f,0.1423f},{0.0161629f,0.312356f,0.141811f}, - {0.0164424f,0.312351f,0.141416f},{0.0114006f,0.296614f,0.14071f},{0.0106866f,0.29265f,0.140011f}, - {0.0117799f,0.296607f,0.140283f},{0.0125814f,0.300553f,0.14098f},{0.0129503f,0.300542f,0.14056f}, - {0.0138012f,0.30448f,0.141246f},{0.00963024f,0.280413f,0.140526f},{0.00968708f,0.284511f,0.140168f}, - {0.0091952f,0.284522f,0.140649f},{0.0099197f,0.288611f,0.139934f},{0.0102596f,0.292663f,0.140442f}, - {0.00946264f,0.288623f,0.140382f},{0.00907526f,0.280421f,0.141031f},{0.0095489f,0.276313f,0.140876f}, - {0.00894343f,0.27632f,0.141413f},{0.00945311f,0.272213f,0.141203f},{0.00933687f,0.268109f,0.14148f}, - {0.00879579f,0.272217f,0.141773f},{0.0086246f,0.268112f,0.142088f},{0.00922107f,0.264f,0.141665f}, - {0.00845004f,0.264f,0.142301f},{0.0176856f,0.316239f,0.141921f},{0.0263793f,0.338577f,0.147802f}, - {0.0259023f,0.338577f,0.148593f},{0.0244885f,0.334843f,0.147557f},{0.0229936f,0.33114f,0.146522f}, - {0.0184899f,0.320015f,0.143511f},{0.0214828f,0.32744f,0.145501f},{0.0146321f,0.3084f,0.14188f}, - {0.0170843f,0.316236f,0.142644f},{0.0158117f,0.312343f,0.142162f},{0.010968f,0.296605f,0.141112f}, - {0.0121699f,0.300543f,0.141368f},{0.0134094f,0.304469f,0.141622f},{0.0086637f,0.284517f,0.141107f}, - {0.00980481f,0.292656f,0.140857f},{0.00897481f,0.288617f,0.140813f},{0.00849863f,0.280417f,0.141523f}, - {0.00832061f,0.276317f,0.14194f},{0.00812583f,0.272215f,0.142335f},{0.00790535f,0.268111f,0.142688f}, - {0.00767878f,0.264f,0.142938f},{0.0199715f,0.323738f,0.144489f},{0.0254953f,0.338577f,0.148828f}, - {0.0239945f,0.334632f,0.147747f},{0.0224149f,0.330719f,0.146665f},{0.0176882f,0.318949f,0.143502f}, - {0.0208215f,0.326809f,0.145592f},{0.0192329f,0.322894f,0.144529f},{0.0136618f,0.306623f,0.142081f}, - {0.0162503f,0.314913f,0.14274f},{0.0149457f,0.310777f,0.142346f},{0.00869072f,0.289947f,0.141186f}, - {0.00973903f,0.294176f,0.141305f},{0.0110356f,0.29833f,0.141581f},{0.00795144f,0.281312f,0.141896f}, - {0.0081943f,0.285636f,0.14144f},{0.00772122f,0.276988f,0.142378f},{0.00747253f,0.272663f,0.142842f}, - {0.00719397f,0.268336f,0.143263f},{0.00690556f,0.264f,0.143577f},{0.0123399f,0.302479f,0.141831f}, - {0.0250324f,0.338577f,0.148916f},{0.0235306f,0.334606f,0.147857f},{0.0219498f,0.330688f,0.146794f}, - {0.0172517f,0.318889f,0.143711f},{0.0203651f,0.326769f,0.14574f},{0.0132021f,0.306566f,0.142332f}, - {0.0158114f,0.314858f,0.142927f},{0.0144807f,0.310726f,0.142544f},{0.0092687f,0.29412f,0.141666f}, - {0.0105497f,0.298278f,0.141886f},{0.0118813f,0.30242f,0.142106f},{0.0073368f,0.28128f,0.142324f}, - {0.00759572f,0.285604f,0.141811f},{0.00819435f,0.289904f,0.141567f},{0.00708183f,0.276964f,0.142866f}, - {0.00678804f,0.272648f,0.143377f},{0.00646507f,0.268328f,0.143843f},{0.00613003f,0.264f,0.144218f}, - {0.0187868f,0.322844f,0.144697f},{0.00696068f,0.276283f,0.143005f},{0.00667554f,0.272193f,0.143491f}, - {0.00636198f,0.268101f,0.143939f},{0.00748015f,0.284462f,0.141999f},{0.00786981f,0.288553f,0.141631f}, - {0.00722771f,0.280372f,0.1425f},{0.0111819f,0.300465f,0.142035f},{0.00875236f,0.292584f,0.14162f}, - {0.014914f,0.312256f,0.142686f},{0.0124511f,0.304388f,0.142242f},{0.0137038f,0.308316f,0.142453f}, - {0.0175985f,0.319944f,0.143972f},{0.0190677f,0.323681f,0.144928f},{0.0162018f,0.316153f,0.143129f}, - {0.0205663f,0.327398f,0.145919f},{0.022067f,0.331113f,0.146916f},{0.0235578f,0.33483f,0.14792f}, - {0.00994863f,0.29653f,0.141826f},{0.00603944f,0.264f,0.144293f},{0.00744254f,0.330122f,0.145994f}, - {0.015865f,0.334273f,0.147531f},{0.0083666f,0.334181f,0.146789f},{0.000311244f,0.329939f,0.144934f}, - {0.000930332f,0.334089f,0.145573f},{-0.00667554f,0.330384f,0.143491f},{0.00158091f,0.338577f,0.146182f}, - {-0.0063617f,0.334477f,0.143935f},{0.00932143f,0.338577f,0.147589f},{-0.00603944f,0.338577f,0.144293f}, - {0.00654234f,0.326198f,0.145204f},{0.00567271f,0.322287f,0.144415f},{0.0134133f,0.326474f,0.14569f}, - {0.00989537f,0.314708f,0.143217f},{0.0110779f,0.318771f,0.143908f},{0.00388505f,0.314167f,0.143059f}, - {0.0122295f,0.322655f,0.144789f},{0.0072715f,0.306074f,0.142814f},{1.23849e-006f,0.301276f,0.142893f}, - {0.00593214f,0.301855f,0.142703f},{0.00860427f,0.310416f,0.142918f},{0.00327255f,0.293337f,0.142485f}, - {0.00211647f,0.288967f,0.14253f},{-0.00133631f,0.297083f,0.142894f},{0.00459153f,0.297661f,0.142593f}, - {-0.00836678f,0.268392f,0.146789f},{-0.00093054f,0.268483f,0.145573f},{-0.000310969f,0.272633f,0.144934f}, - {0.00135717f,0.284719f,0.142953f},{-0.00485039f,0.284259f,0.143617f},{-0.00158091f,0.264f,0.146182f}, - {0.000284983f,0.276649f,0.144284f},{-0.00744232f,0.27245f,0.145994f},{-0.0171357f,0.264f,0.148501f}, - {-0.0158652f,0.2683f,0.147532f},{0.000835711f,0.280649f,0.143615f},{-0.00654153f,0.276375f,0.145205f}, - {-0.00568021f,0.280282f,0.144405f},{-0.00265603f,0.292762f,0.142905f},{-0.00387587f,0.288426f,0.143071f}, - {0.00267273f,0.309833f,0.142876f},{0.00133739f,0.305495f,0.142892f},{0.00483092f,0.318311f,0.143642f}, - {0.0146267f,0.330306f,0.1466f},{0.0171357f,0.338577f,0.148501f},{-0.0069607f,0.326294f,0.143005f}, - {-0.000284018f,0.325924f,0.144284f},{-0.00722775f,0.322205f,0.1425f},{-0.000847135f,0.321921f,0.143625f}, - {-0.00746803f,0.318116f,0.141989f},{-0.00138663f,0.317854f,0.142978f},{-0.00787057f,0.314024f,0.141632f}, - {-0.00210321f,0.313628f,0.142519f},{-0.00875939f,0.309995f,0.141625f},{-0.00324421f,0.309251f,0.142456f}, - {-0.00994211f,0.306045f,0.141827f},{-0.023562f,0.267749f,0.147921f},{-0.0249766f,0.264f,0.148916f}, - {-0.00458966f,0.304917f,0.142591f},{-0.0111906f,0.302115f,0.142034f},{-0.0124586f,0.298192f,0.142239f}, - {-0.00592971f,0.300697f,0.142704f},{-0.0136985f,0.29426f,0.142455f},{-0.00727121f,0.296504f,0.142816f}, - {-0.0149126f,0.29032f,0.142682f},{-0.00859914f,0.292185f,0.142945f},{-0.0162055f,0.286428f,0.143141f}, - {-0.0098903f,0.287882f,0.143228f},{-0.0175985f,0.282633f,0.143972f},{-0.0110874f,0.283798f,0.143884f}, - {-0.0190677f,0.278896f,0.144928f},{-0.012233f,0.279914f,0.144779f},{-0.0205663f,0.275179f,0.145919f}, - {-0.0134127f,0.276098f,0.14569f},{-0.0220671f,0.271464f,0.146916f},{-0.0146265f,0.272266f,0.1466f}, - {-0.00932143f,0.264f,0.147589f},{-0.00690312f,0.338577f,0.143579f},{-0.00719191f,0.334242f,0.143259f}, - {-0.00746979f,0.329914f,0.142843f},{-0.00814762f,0.316934f,0.141414f},{-0.0077197f,0.325589f,0.142379f}, - {-0.00793083f,0.321266f,0.141883f},{-0.0110361f,0.304248f,0.141582f},{-0.0123542f,0.300103f,0.141829f}, - {-0.00871456f,0.312628f,0.141206f},{-0.00976951f,0.308409f,0.141335f},{-0.0162476f,0.28766f,0.14273f}, - {-0.0149252f,0.291792f,0.142321f},{-0.0136614f,0.295955f,0.142081f},{-0.0192347f,0.279686f,0.144536f}, - {-0.0176916f,0.283634f,0.143534f},{-0.0208212f,0.27577f,0.145595f},{-0.022413f,0.271858f,0.146665f}, - {-0.0239981f,0.267947f,0.147749f},{-0.0254927f,0.264f,0.148829f},{-0.00767576f,0.338577f,0.142941f}, - {-0.00790232f,0.334466f,0.142685f},{-0.00812312f,0.330362f,0.142338f},{-0.00864847f,0.31806f,0.1411f}, - {-0.00831807f,0.32626f,0.141942f},{-0.00849626f,0.32216f,0.141525f},{-0.0109591f,0.30597f,0.141114f}, - {-0.00897354f,0.313959f,0.140816f},{-0.00981108f,0.309923f,0.140864f},{-0.0146249f,0.294175f,0.141884f}, - {-0.0134151f,0.29811f,0.141621f},{-0.0121769f,0.302037f,0.141369f},{-0.0184881f,0.282562f,0.143513f}, - {-0.0158082f,0.290233f,0.142159f},{-0.0170869f,0.286345f,0.142657f},{-0.0199696f,0.278839f,0.144491f}, - {-0.0214809f,0.275137f,0.145503f},{-0.0229915f,0.271437f,0.146524f},{-0.0244911f,0.267736f,0.147559f}, - {-0.0259001f,0.264f,0.148595f},{-0.00844643f,0.338577f,0.142304f},{-0.0086212f,0.334465f,0.142086f}, - {-0.00879266f,0.33036f,0.141776f},{-0.00917932f,0.318055f,0.140643f},{-0.00894054f,0.326258f,0.141415f}, - {-0.0113914f,0.305961f,0.140713f},{-0.00946126f,0.313954f,0.140385f},{-0.0102671f,0.309916f,0.14045f}, - {-0.0149971f,0.294163f,0.141521f},{-0.0138071f,0.298099f,0.141245f},{-0.0125887f,0.302027f,0.140981f}, - {-0.0188214f,0.282552f,0.143167f},{-0.0161597f,0.29022f,0.14181f},{-0.0174245f,0.286332f,0.142314f}, - {-0.0203004f,0.278832f,0.144141f},{-0.0218097f,0.275132f,0.145149f},{-0.0233168f,0.271434f,0.146167f}, - {-0.0248099f,0.267735f,0.147201f},{-0.0262067f,0.264f,0.148241f},{-0.0090726f,0.322157f,0.141033f}, - {-0.00921688f,0.338577f,0.141668f},{-0.00933302f,0.334468f,0.141483f},{-0.00944958f,0.330364f,0.141206f}, - {-0.00968445f,0.318066f,0.140171f},{-0.00954568f,0.326264f,0.140879f},{-0.0117779f,0.30597f,0.140285f}, - {-0.00991732f,0.313966f,0.139936f},{-0.0106844f,0.309927f,0.140013f},{-0.0153055f,0.29417f,0.141121f}, - {-0.0141412f,0.298106f,0.140836f},{-0.0129485f,0.302035f,0.140562f},{-0.0190685f,0.282558f,0.142768f}, - {-0.0176844f,0.286338f,0.141924f},{-0.016441f,0.290226f,0.141419f},{-0.0205358f,0.278837f,0.143733f}, - {-0.0220341f,0.275137f,0.144732f},{-0.0235282f,0.271439f,0.145742f},{-0.0250051f,0.267738f,0.146769f}, - {-0.0263788f,0.264f,0.147805f},{-0.00962732f,0.322165f,0.140529f},{-0.00976429f,0.334471f,0.141114f}, - {-0.00968775f,0.338577f,0.141279f},{-0.00995451f,0.322175f,0.140217f},{-0.00990606f,0.326272f,0.140549f}, - {-0.00984421f,0.33037f,0.140856f},{-0.0109184f,0.309942f,0.13974f},{-0.00997907f,0.318079f,0.139878f}, - {-0.0143137f,0.29812f,0.140577f},{-0.01314f,0.302049f,0.140298f},{-0.0119892f,0.305984f,0.140016f}, - {-0.0178005f,0.28635f,0.141673f},{-0.0165744f,0.290239f,0.141169f},{-0.015459f,0.294183f,0.140867f}, - {-0.0206269f,0.278846f,0.143469f},{-0.0191718f,0.282568f,0.142511f},{-0.0221132f,0.275145f,0.144461f}, - {-0.0235942f,0.271445f,0.145464f},{-0.0250554f,0.267741f,0.146485f},{-0.0264087f,0.264f,0.147518f}, - {-0.0101788f,0.313981f,0.139657f},{-0.0137161f,0.300099f,0.140288f},{-0.0124851f,0.304248f,0.140002f}, - {-0.0113146f,0.308413f,0.139715f},{-0.0103804f,0.312637f,0.139538f},{-0.00997452f,0.316945f,0.139665f}, - {-0.00994023f,0.321273f,0.140012f},{-0.00991203f,0.325595f,0.140375f},{-0.009849f,0.329918f,0.140706f}, - {-0.00976769f,0.334245f,0.140986f},{-0.00968775f,0.338577f,0.141169f},{-0.014938f,0.295949f,0.140581f}, - {-0.0161103f,0.291782f,0.140863f},{-0.0173564f,0.28765f,0.141293f},{-0.0187613f,0.283628f,0.142077f}, - {-0.0202782f,0.279684f,0.143048f},{-0.021842f,0.275771f,0.144073f},{-0.0234057f,0.271863f,0.145113f}, - {-0.024951f,0.267952f,0.146173f},{-0.0263814f,0.264f,0.147244f},{-0.00976336f,0.333995f,0.140775f}, - {-0.00968775f,0.338577f,0.140979f},{-0.00990978f,0.320276f,0.139723f},{-0.00989796f,0.324847f,0.140113f}, - {-0.00983969f,0.329419f,0.140469f},{-0.0106101f,0.311162f,0.139359f},{-0.0117247f,0.306724f,0.139609f}, - {-0.00998742f,0.315696f,0.139387f},{-0.0142908f,0.297936f,0.140193f},{-0.0155467f,0.293533f,0.140484f}, - {-0.0129908f,0.302325f,0.139902f},{-0.0197978f,0.280636f,0.142487f},{-0.0182285f,0.284834f,0.141521f}, - {-0.0168071f,0.289136f,0.140836f},{-0.0214356f,0.276483f,0.143538f},{-0.0230806f,0.272338f,0.14461f}, - {-0.0247084f,0.268191f,0.145702f},{-0.0262125f,0.264f,0.146805f},{-0.00974593f,0.334001f,0.140582f}, - {-0.00968775f,0.338577f,0.140788f},{-0.00985594f,0.3203f,0.139537f},{-0.00985469f,0.324865f,0.139924f}, - {-0.00980831f,0.329431f,0.140278f},{-0.0116247f,0.30676f,0.13941f},{-0.00992109f,0.315727f,0.139202f}, - {-0.0141594f,0.297975f,0.139977f},{-0.0154002f,0.293574f,0.140259f},{-0.0128748f,0.302362f,0.139695f}, - {-0.0195912f,0.280668f,0.142214f},{-0.0180446f,0.284873f,0.141269f},{-0.0166436f,0.289177f,0.140601f}, - {-0.021206f,0.276508f,0.143245f},{-0.0228275f,0.272355f,0.144296f},{-0.0244304f,0.268199f,0.145365f}, - {-0.0259067f,0.264f,0.146446f},{-0.0105278f,0.311196f,0.139169f},{-0.00972275f,0.334008f,0.140397f}, - {-0.00968775f,0.338577f,0.140597f},{-0.00978412f,0.320325f,0.139372f},{-0.0097971f,0.324884f,0.139752f}, - {-0.00976655f,0.329444f,0.140099f},{-0.0104201f,0.311232f,0.139009f},{-0.0114944f,0.306797f,0.139248f}, - {-0.00983335f,0.315758f,0.139043f},{-0.013988f,0.298014f,0.139811f},{-0.0152086f,0.293615f,0.14009f}, - {-0.0127235f,0.3024f,0.13953f},{-0.01932f,0.280701f,0.142022f},{-0.017804f,0.284911f,0.141087f}, - {-0.0164298f,0.289219f,0.140429f},{-0.0209031f,0.276533f,0.143041f},{-0.0224922f,0.272372f,0.144081f}, - {-0.0240607f,0.268208f,0.145139f},{-0.0254987f,0.264f,0.146209f},{0.0240512f,0.334373f,0.145139f}, - {0.0254987f,0.338577f,0.146209f},{0.0208987f,0.326047f,0.143038f},{0.0224907f,0.330206f,0.144081f}, - {0.0164319f,0.313354f,0.14044f},{0.015224f,0.308957f,0.140101f},{0.0177924f,0.317674f,0.141053f}, - {0.0127141f,0.300179f,0.139531f},{0.0114783f,0.295784f,0.139232f},{0.0139803f,0.304565f,0.139813f}, - {0.00981234f,0.282253f,0.139389f},{0.00988648f,0.286812f,0.139069f},{0.0103884f,0.291345f,0.138993f}, - {0.00979575f,0.277693f,0.139753f},{0.00976673f,0.273133f,0.1401f},{0.00972076f,0.26857f,0.140404f}, - {0.00968775f,0.264f,0.140597f},{0.0193145f,0.32188f,0.142013f},{0.0244211f,0.334381f,0.145365f}, - {0.0259067f,0.338577f,0.146446f},{0.0195856f,0.321913f,0.142206f},{0.0212016f,0.326071f,0.143242f}, - {0.0228261f,0.330223f,0.144296f},{0.016646f,0.313395f,0.140613f},{0.0154158f,0.308997f,0.14027f}, - {0.0180326f,0.317712f,0.141234f},{0.0116084f,0.295821f,0.139394f},{0.0128655f,0.300217f,0.139695f}, - {0.0141518f,0.304604f,0.13998f},{0.0098846f,0.282278f,0.139554f},{0.0099743f,0.286844f,0.139229f}, - {0.0104962f,0.29138f,0.139152f},{0.00985341f,0.277712f,0.139926f},{0.00980859f,0.273146f,0.140279f}, - {0.0097442f,0.268576f,0.140589f},{0.00968775f,0.264f,0.140788f},{0.0246992f,0.33439f,0.145701f}, - {0.0262125f,0.338577f,0.146805f},{0.019792f,0.321945f,0.142478f},{0.0214312f,0.326096f,0.143536f}, - {0.0230793f,0.33024f,0.144611f},{0.0155626f,0.309038f,0.140495f},{0.0182163f,0.317751f,0.141486f}, - {0.0117083f,0.295857f,0.139593f},{0.0129816f,0.300255f,0.139903f},{0.0142832f,0.304643f,0.140196f}, - {0.00993888f,0.282302f,0.139741f},{0.0100406f,0.286874f,0.139415f},{0.0105787f,0.291414f,0.139342f}, - {0.00989672f,0.27773f,0.140115f},{0.00984006f,0.273158f,0.140471f},{0.00976183f,0.268582f,0.140782f}, - {0.00968775f,0.264f,0.140979f},{0.0168098f,0.313436f,0.140849f},{0.0264087f,0.338577f,0.147518f}, - {0.0221132f,0.327432f,0.144461f},{0.0235942f,0.331132f,0.145464f},{0.0250554f,0.334836f,0.146485f}, - {0.0178005f,0.316228f,0.141673f},{0.0165745f,0.312338f,0.141169f},{0.0206269f,0.323731f,0.143469f}, - {0.0191717f,0.320009f,0.142511f},{0.01314f,0.300528f,0.140298f},{0.0143137f,0.304457f,0.140577f}, - {0.015459f,0.308394f,0.140867f},{0.0101788f,0.288596f,0.139657f},{0.0109184f,0.292635f,0.13974f}, - {0.0119892f,0.296593f,0.140016f},{0.00995447f,0.280402f,0.140217f},{0.00997902f,0.284498f,0.139878f}, - {0.00990604f,0.276306f,0.140549f},{0.0098442f,0.272207f,0.140856f},{0.00976429f,0.268106f,0.141114f}, - {0.00968775f,0.264f,0.141279f},{0.0249437f,0.334628f,0.146173f},{0.0263814f,0.338577f,0.147244f}, - {0.0202741f,0.322896f,0.143041f},{0.0218394f,0.326807f,0.144071f},{0.023405f,0.330715f,0.145114f}, - {0.0173571f,0.314923f,0.141303f},{0.0161317f,0.310786f,0.140885f},{0.0187523f,0.318956f,0.14205f}, - {0.0136985f,0.302483f,0.140292f},{0.0124827f,0.29833f,0.140001f},{0.0149357f,0.306629f,0.140582f}, - {0.010352f,0.289937f,0.139523f},{0.0112762f,0.294173f,0.139687f},{0.00995919f,0.281305f,0.140024f}, - {0.010024f,0.285627f,0.139691f},{0.00991129f,0.276982f,0.140376f},{0.00984923f,0.272659f,0.140707f}, - {0.00968775f,0.264f,0.141169f},{0.00976681f,0.268333f,0.140992f},{-0.00379135f,0.489193f,0.144903f}, - {-0.00496458f,0.488833f,0.14459f},{0.00742307f,0.489314f,0.147291f},{-0.00257039f,0.489314f,0.145216f}, - {-0.00603944f,0.48825f,0.144293f},{0.00240499f,0.489314f,0.146356f},{0.0211541f,0.387061f,0.148776f}, - {0.0173396f,0.435444f,0.148518f},{0.013533f,0.483726f,0.148143f},{0.0132893f,0.485008f,0.148115f}, - {0.0127783f,0.4862f,0.148054f},{0.0120253f,0.487256f,0.147961f},{0.0110634f,0.488129f,0.147836f}, - {0.00994277f,0.488778f,0.14768f},{0.00870927f,0.489179f,0.147496f},{0.0123416f,0.489052f,0.145204f}, - {0.0109102f,0.489962f,0.145018f},{0.0135295f,0.487844f,0.145346f},{0.0164058f,0.450527f,0.14564f}, - {0.0192822f,0.413211f,0.145867f},{0.0221586f,0.375894f,0.146027f},{0.00932212f,0.490523f,0.144792f}, - {0.00765064f,0.490713f,0.144531f},{-0.00968775f,0.483255f,0.140407f},{-0.00949318f,0.484944f,0.140468f}, - {-0.00543154f,0.48999f,0.141666f},{-0.00387196f,0.49053f,0.142086f},{-0.00892517f,0.486539f,0.140645f}, - {-0.0080214f,0.487952f,0.14092f},{-0.00683431f,0.489121f,0.141269f},{-0.00223012f,0.490713f,0.142505f}, - {-0.00968775f,0.483255f,0.141279f},{0.00268915f,0.490713f,0.144987f},{-0.00223012f,0.490713f,0.14386f}, - {0.00765064f,0.490713f,0.145911f},{0.0143331f,0.486568f,0.145639f},{0.0147899f,0.485411f,0.146726f}, - {0.0148426f,0.48523f,0.146158f},{0.0150857f,0.483834f,0.146754f},{0.014171f,0.486874f,0.146666f}, - {0.0132538f,0.488177f,0.146574f},{0.0120868f,0.489249f,0.14645f},{0.0107201f,0.490052f,0.146296f}, - {0.00921907f,0.490545f,0.146114f},{-0.00815064f,0.48779f,0.142549f},{-0.00695586f,0.489024f,0.14283f}, - {-0.00391721f,0.490519f,0.143508f},{-0.00552233f,0.489946f,0.143157f},{-0.0089918f,0.486401f,0.141854f}, - {-0.00951028f,0.484871f,0.141426f},{-0.00632699f,0.488748f,0.144055f},{-0.0068323f,0.488788f,0.143638f}, - {-0.00732043f,0.488576f,0.143234f},{-0.00776225f,0.48823f,0.14287f},{0.0235779f,0.374892f,0.147426f}, - {0.0219204f,0.386398f,0.148625f},{0.0224876f,0.38644f,0.148085f},{0.0179164f,0.44752f,0.147043f}, - {0.0149745f,0.483831f,0.1473f},{0.0186837f,0.435152f,0.147841f},{0.0140869f,0.483769f,0.148094f}, - {0.0180963f,0.435109f,0.148384f},{0.0146193f,0.483807f,0.147797f},{0.0207472f,0.411206f,0.147267f}, - {0.00748972f,0.490303f,0.146886f},{0.00897658f,0.490142f,0.147115f},{0.00911758f,0.490461f,0.146645f}, - {0.0103998f,0.48969f,0.147311f},{0.0119652f,0.489201f,0.146998f},{0.0106014f,0.489986f,0.146835f}, - {0.0128307f,0.48793f,0.147613f},{0.0140507f,0.486857f,0.147224f},{0.0131339f,0.488142f,0.147128f}, - {0.0146743f,0.485398f,0.147286f},{0.0124497f,0.487626f,0.147903f},{0.0113986f,0.488574f,0.14777f}, - {0.0138348f,0.485172f,0.148064f},{0.0143101f,0.485306f,0.147775f},{0.013274f,0.486476f,0.148f}, - {0.00743905f,0.489829f,0.147194f},{0.00883688f,0.489704f,0.14741f},{0.00756687f,0.490614f,0.146419f}, - {0.0101719f,0.489277f,0.147604f},{0.0137111f,0.486701f,0.147711f},{0.0117086f,0.488941f,0.147479f}, - {0.00254212f,0.490504f,0.145696f},{0.0024474f,0.490038f,0.146152f},{-0.00239822f,0.490529f,0.14453f}, - {-0.00252701f,0.489991f,0.145044f},{-0.00405957f,0.490287f,0.14418f},{-0.00550952f,0.489296f,0.144258f}, - {-0.00559184f,0.489714f,0.143809f},{-0.00407172f,0.489834f,0.14463f},{0.022887f,0.375478f,0.146255f}, - {0.0233314f,0.375514f,0.14672f},{0.0174497f,0.451096f,0.14634f},{0.0203893f,0.413325f,0.146565f}, - {0.0199559f,0.413289f,0.146102f},{0.0170273f,0.45106f,0.145879f},{-0.0123416f,0.113525f,0.145204f}, - {-0.0109102f,0.112615f,0.145018f},{-0.0135295f,0.114734f,0.145346f},{-0.0164058f,0.15205f,0.14564f}, - {-0.0192822f,0.189366f,0.145867f},{-0.0221586f,0.226683f,0.146027f},{-0.00932212f,0.112054f,0.144792f}, - {-0.00765064f,0.111865f,0.144531f},{0.00968775f,0.119322f,0.140407f},{0.00949318f,0.117633f,0.140468f}, - {0.00543154f,0.112587f,0.141666f},{0.00387196f,0.112048f,0.142086f},{0.00892517f,0.116038f,0.140645f}, - {0.0080214f,0.114625f,0.14092f},{0.00683431f,0.113456f,0.141269f},{0.00223012f,0.111865f,0.142505f}, - {0.00379135f,0.113384f,0.144903f},{0.00496458f,0.113745f,0.14459f},{-0.00742307f,0.113263f,0.147291f}, - {0.00257039f,0.113263f,0.145216f},{0.00603944f,0.114327f,0.144293f},{-0.00240499f,0.113263f,0.146356f}, - {-0.0211541f,0.215517f,0.148776f},{-0.0173396f,0.167133f,0.148518f},{-0.013533f,0.118851f,0.148143f}, - {-0.0132913f,0.117576f,0.148115f},{-0.0127821f,0.116383f,0.148055f},{-0.0120287f,0.115326f,0.147962f}, - {-0.0110706f,0.114453f,0.147837f},{-0.00994698f,0.113801f,0.14768f},{-0.00871793f,0.1134f,0.147497f}, - {0.00968775f,0.119322f,0.141279f},{-0.00268915f,0.111865f,0.144987f},{-0.00765064f,0.111865f,0.145911f}, - {0.00223012f,0.111865f,0.14386f},{-0.0143331f,0.116009f,0.145639f},{-0.014793f,0.117177f,0.146726f}, - {-0.0148426f,0.117347f,0.146158f},{-0.0150857f,0.118743f,0.146754f},{-0.014174f,0.115708f,0.146667f}, - {-0.0132606f,0.114409f,0.146575f},{-0.0120925f,0.113332f,0.146451f},{-0.0107278f,0.112529f,0.146297f}, - {-0.00922792f,0.112033f,0.146115f},{0.00815064f,0.114787f,0.142549f},{0.00695586f,0.113553f,0.14283f}, - {0.00552233f,0.112631f,0.143157f},{0.00391721f,0.112058f,0.143508f},{0.0089918f,0.116176f,0.141854f}, - {0.00951028f,0.117706f,0.141426f},{0.0068323f,0.113789f,0.143638f},{0.00632699f,0.113829f,0.144055f}, - {0.00732043f,0.114001f,0.143234f},{0.00776225f,0.114347f,0.14287f},{-0.0235779f,0.227685f,0.147426f}, - {-0.0219204f,0.216179f,0.148625f},{-0.0224876f,0.216137f,0.148085f},{-0.0179164f,0.155057f,0.147043f}, - {-0.0149745f,0.118746f,0.1473f},{-0.0186837f,0.167425f,0.147841f},{-0.0140869f,0.118809f,0.148094f}, - {-0.0180963f,0.167468f,0.148384f},{-0.0146193f,0.11877f,0.147797f},{-0.0207472f,0.191371f,0.147267f}, - {-0.0137517f,0.115882f,0.147682f},{-0.013838f,0.117415f,0.148064f},{-0.0143462f,0.117273f,0.147745f}, - {-0.0131473f,0.11445f,0.147128f},{-0.0140617f,0.115741f,0.147224f},{-0.0146779f,0.11719f,0.147286f}, - {-0.0101903f,0.113307f,0.147606f},{-0.0114133f,0.114012f,0.147771f},{-0.00899738f,0.11241f,0.147089f}, - {-0.00756687f,0.111963f,0.146419f},{-0.00748972f,0.112274f,0.146886f},{-0.0106218f,0.112599f,0.146837f}, - {-0.0119815f,0.113386f,0.146999f},{-0.00912889f,0.112119f,0.146646f},{-0.0104352f,0.112869f,0.147285f}, - {-0.00884706f,0.112875f,0.147411f},{-0.0128697f,0.114643f,0.147584f},{-0.0132839f,0.116119f,0.148001f}, - {-0.00743905f,0.112748f,0.147194f},{-0.0124617f,0.114964f,0.147903f},{-0.0117456f,0.113623f,0.147451f}, - {-0.00254212f,0.112073f,0.145696f},{-0.0024474f,0.112539f,0.146152f},{0.00239822f,0.112048f,0.14453f}, - {0.00252701f,0.112586f,0.145044f},{0.00405957f,0.11229f,0.14418f},{0.00550952f,0.113281f,0.144258f}, - {0.00559184f,0.112863f,0.143809f},{0.00407172f,0.112743f,0.14463f},{-0.0233314f,0.227063f,0.14672f}, - {-0.022887f,0.227099f,0.146255f},{-0.0170273f,0.151517f,0.145879f},{-0.0174497f,0.151481f,0.14634f}, - {-0.0203893f,0.189252f,0.146565f},{-0.0199559f,0.189288f,0.146102f},{0.0043568f,0.302945f,0.127503f}, - {0.00383438f,0.303939f,0.127503f},{0.00308638f,0.304781f,0.127503f},{0.00216232f,0.305417f,0.127503f}, - {0.00462734f,0.300729f,0.127503f},{0.00462608f,0.301855f,0.127503f},{0.00383806f,0.298645f,0.127503f}, - {0.00435903f,0.299638f,0.127503f},{0.00309213f,0.297801f,0.127503f},{0.00216808f,0.297163f,0.127503f}, - {0.00111857f,0.296764f,0.127503f},{0.0011128f,0.305815f,0.127503f},{-0.00150163f,0.303613f,0.127503f}, - {-0.000787374f,0.303967f,0.127503f},{-0.00211724f,0.303117f,0.127503f},{-0.00254559f,0.302447f,0.127503f}, - {-0.00276842f,0.301683f,0.127503f},{-0.00276723f,0.300888f,0.127503f},{-0.00254283f,0.300125f,0.127503f}, - {-0.00210508f,0.299465f,0.127503f},{-0.00150519f,0.298949f,0.127503f},{-0.00078745f,0.298603f,0.127503f}, - {-0.00254559f,0.30013f,0.136825f},{-0.00276842f,0.300894f,0.136825f},{-0.00150519f,0.303628f,0.136825f}, - {-0.00276723f,0.301689f,0.136825f},{-0.00210508f,0.303112f,0.136825f},{-0.00078745f,0.303974f,0.136825f}, - {-0.00254283f,0.302452f,0.136825f},{-0.00211724f,0.29946f,0.136825f},{-0.00150163f,0.298964f,0.136825f}, - {-0.000787374f,0.29861f,0.136825f},{0.00265777f,0.280158f,0.127503f},{0.00225612f,0.280939f,0.127503f}, - {0.00163414f,0.281556f,0.127503f},{0.00266037f,0.278432f,0.127503f},{0.00226719f,0.277654f,0.127503f}, - {0.00279661f,0.279289f,0.127503f},{0.00165072f,0.277032f,0.127503f},{0.000869207f,0.276631f,0.127503f}, - {0.000869207f,0.281946f,0.127503f},{0.00265777f,0.324158f,0.127503f},{0.00225612f,0.324939f,0.127503f}, - {0.00163414f,0.325556f,0.127503f},{0.00266037f,0.322432f,0.127503f},{0.00279661f,0.323289f,0.127503f}, - {0.00165072f,0.321032f,0.127503f},{0.00226719f,0.321654f,0.127503f},{0.000869207f,0.320631f,0.127503f}, - {0.000869207f,0.325946f,0.127503f},{0.323702f,0.0027207f,0.140084f},{0.323289f,0.00279661f,0.126571f}, - {0.322911f,0.00276223f,0.139989f},{0.324476f,0.00254178f,0.140201f},{0.324145f,0.00266037f,0.126571f}, - {0.324923f,0.00226719f,0.126571f},{0.325128f,0.00210085f,0.140351f},{0.325946f,0.000869207f,0.126571f}, - {0.325545f,0.00165072f,0.126571f},{0.325656f,0.00149803f,0.140516f},{0.325978f,0.000793813f,0.140672f}, - {0.326085f,1.80082e-018f,0.126571f},{0.326085f,-2.12873e-008f,0.140816f},{0.322419f,0.00265777f,0.126571f}, - {0.322139f,0.00255964f,0.139937f},{0.321638f,0.00225612f,0.126571f},{0.321021f,0.00163414f,0.126571f}, - {0.321467f,0.00212367f,0.13993f},{0.320631f,0.000869207f,0.126571f},{0.320933f,0.00151779f,0.13996f}, - {0.320598f,0.000793595f,0.140023f},{0.320492f,2.70028e-018f,0.126571f},{0.320492f,2.70028e-018f,0.140116f}, - {0.280923f,0.00226719f,0.126571f},{0.280167f,0.00266113f,0.140699f},{0.280949f,0.00225617f,0.140543f}, - {0.280145f,0.00266037f,0.126571f},{0.281545f,0.00165072f,0.126571f},{0.281516f,0.00161123f,0.140389f}, - {0.281946f,0.000869207f,0.126571f},{0.281954f,0.000861428f,0.140241f},{0.279308f,0.00279699f,0.140836f}, - {0.282085f,2.26626e-008f,0.140116f},{0.282085f,1.19474e-017f,0.126571f},{0.279289f,0.00279661f,0.126571f}, - {0.278435f,0.00267244f,0.140943f},{0.277655f,0.00227523f,0.141f},{0.278419f,0.00265777f,0.126571f}, - {0.277638f,0.00225612f,0.126571f},{0.277026f,0.00164828f,0.140998f},{0.277021f,0.00163414f,0.126571f}, - {0.276631f,0.000869207f,0.126571f},{0.276622f,0.000867575f,0.140935f},{0.276492f,1.16049e-017f,0.126571f}, - {0.276492f,1.16049e-017f,0.140816f},{0.301289f,-0.00279661f,0.135893f},{0.302145f,-0.00266037f,0.126571f}, - {0.299654f,-0.00226719f,0.135893f},{0.300419f,-0.00265777f,0.126571f},{0.299638f,-0.00225612f,0.126571f}, - {0.300432f,-0.00266037f,0.135893f},{0.299032f,-0.00165072f,0.135893f},{0.298631f,-0.000869207f,0.126571f}, - {0.298492f,3.04276e-018f,0.135893f},{0.298631f,-0.000869207f,0.135893f},{0.299021f,-0.00163414f,0.126571f}, - {0.298492f,3.04276e-018f,0.126571f},{0.302158f,-0.00265777f,0.135893f},{0.302923f,-0.00226719f,0.126571f}, - {0.302939f,-0.00225612f,0.135893f},{0.303556f,-0.00163414f,0.135893f},{0.303545f,-0.00165072f,0.126571f}, - {0.303946f,-0.000869207f,0.135893f},{0.303946f,-0.000869207f,0.126571f},{0.304085f,2.70028e-018f,0.126571f}, - {0.304085f,2.70028e-018f,0.135893f},{0.303941f,0.00383933f,0.139404f},{0.302938f,0.00435933f,0.126571f}, - {0.302948f,0.00437081f,0.13941f},{0.301847f,0.00462728f,0.126571f},{0.303934f,0.00383758f,0.126571f}, - {0.301857f,0.00463064f,0.139439f},{0.304774f,0.00309444f,0.126571f},{0.304783f,0.00308762f,0.139422f}, - {0.305414f,0.00216892f,0.126571f},{0.300727f,0.00463006f,0.139484f},{0.30543f,0.00216891f,0.139458f}, - {0.305813f,0.00111911f,0.126571f},{0.30595f,5.60073e-014f,0.139555f},{0.305949f,3.35892e-010f,0.126571f}, - {0.305823f,0.00112174f,0.139506f},{0.300724f,0.00462657f,0.126571f},{0.299633f,0.00435716f,0.126571f}, - {0.299631f,0.00437228f,0.139533f},{0.298643f,0.00384698f,0.139577f},{0.298638f,0.0038338f,0.126571f}, - {0.297798f,0.00308862f,0.126571f},{0.2978f,0.00309221f,0.139605f},{0.29716f,0.00216381f,0.126571f}, - {0.297151f,0.00217168f,0.139611f},{0.296754f,0.00112329f,0.139593f},{0.296763f,0.00111503f,0.126571f}, - {0.296628f,2.70028e-018f,0.139555f},{0.296628f,2.70028e-018f,0.126571f},{0.333784f,0.0031834f,0.140987f}, - {0.333871f,-0.0034311f,0.142326f},{0.329361f,0.00348389f,0.140521f},{0.321833f,-0.013311f,0.141175f}, - {0.321483f,-0.00749864f,0.140959f},{0.325857f,-0.01447f,0.142053f},{0.334598f,-0.0237151f,0.144174f}, - {0.334046f,-0.0168317f,0.143863f},{0.338577f,-0.0250351f,0.145188f},{0.304777f,-0.00309212f,0.139605f}, - {0.308789f,-0.00980991f,0.139511f},{0.303935f,-0.00384705f,0.139577f},{0.320598f,-0.000788852f,0.140229f}, - {0.320971f,-0.00148198f,0.140362f},{0.316843f,-0.00113058f,0.139807f},{0.299629f,-0.00437081f,0.13941f}, - {0.30072f,-0.00463066f,0.139439f},{0.299868f,-0.00734722f,0.139167f},{0.293803f,0.00981015f,0.139524f}, - {0.298637f,-0.00383936f,0.139404f},{0.297795f,-0.0030876f,0.139422f},{0.29484f,-0.000835134f,0.139471f}, - {0.289735f,0.00565577f,0.139774f},{0.294321f,0.00448849f,0.13965f},{0.281978f,-0.000794809f,0.140023f}, - {0.286162f,-0.00431412f,0.13904f},{0.281642f,-0.00152033f,0.13996f},{0.268522f,0.0168309f,0.143864f}, - {0.264f,0.0250351f,0.145188f},{0.26798f,0.0237151f,0.144174f},{0.289229f,0.0110109f,0.139773f}, - {0.272859f,0.00922726f,0.1425f},{0.271923f,0.0222833f,0.143172f},{0.272684f,0.0156491f,0.142944f}, - {0.273206f,-0.00348559f,0.14052f},{0.273034f,0.00283697f,0.14169f},{0.276599f,-0.000793378f,0.140672f}, - {0.268783f,-0.00318417f,0.140986f},{0.268697f,0.00342276f,0.142324f},{0.268311f,-0.00969325f,0.139307f}, - {0.264f,-0.00290707f,0.141403f},{0.264f,0.00398877f,0.142946f},{0.264f,-0.00968775f,0.139474f}, - {0.277496f,-0.00378729f,0.140033f},{0.277448f,-0.00209478f,0.140352f},{0.278103f,-0.00253473f,0.140202f}, - {0.26861f,0.010107f,0.143286f},{0.278874f,-0.00272118f,0.140084f},{0.281218f,-0.00973119f,0.138395f}, - {0.281779f,-0.00404127f,0.13952f},{0.304265f,-0.00858894f,0.139339f},{0.312352f,-0.000322559f,0.13946f}, - {0.307227f,0.00611166f,0.138973f},{0.311852f,0.0049946f,0.138851f},{0.30271f,0.00734676f,0.139167f}, - {0.302947f,-0.0043723f,0.139533f},{0.320788f,0.00405908f,0.139532f},{0.316411f,0.00435339f,0.139066f}, - {0.305426f,-0.00217165f,0.139611f},{0.308268f,-0.00450063f,0.139635f},{0.322112f,-0.00253786f,0.140643f}, - {0.322873f,-0.00276739f,0.140776f},{0.325595f,-0.00835592f,0.141728f},{0.324441f,-0.00255847f,0.140971f}, - {0.325113f,-0.00212169f,0.141005f},{0.326719f,-0.0208182f,0.142186f},{0.338577f,-0.00398877f,0.142946f}, - {0.329883f,-0.0156505f,0.142943f},{0.338577f,0.00968775f,0.139474f},{0.338577f,0.00290707f,0.141403f}, - {0.334267f,0.00969325f,0.139307f},{0.321359f,0.00973122f,0.138395f},{0.32566f,0.00972934f,0.138727f}, - {0.325074f,0.00378494f,0.140033f},{0.317712f,-0.0121774f,0.140344f},{0.317277f,-0.00665136f,0.140233f}, - {0.307746f,0.000816648f,0.139456f},{0.323672f,-0.0027728f,0.14089f},{0.333958f,-0.0101155f,0.143286f}, - {0.338577f,-0.0179944f,0.144842f},{0.330654f,-0.0222833f,0.143172f},{0.338577f,-0.0109671f,0.144094f}, - {0.329962f,0.0097173f,0.139038f},{0.317058f,0.0097497f,0.138081f},{0.298313f,0.00858896f,0.139339f}, - {0.295355f,-0.00613049f,0.138989f},{0.285728f,0.00115281f,0.13978f},{0.290743f,-0.00500873f,0.138859f}, - {0.298192f,-0.0120097f,0.138358f},{0.294038f,-0.0108714f,0.138063f},{0.30185f,-0.00463004f,0.139484f}, - {0.30234f,-0.0131607f,0.138632f},{0.306481f,-0.0143354f,0.138904f},{0.312855f,-0.00566917f,0.139765f}, - {0.313358f,-0.0110148f,0.139763f},{0.312766f,0.0100181f,0.137915f},{0.308539f,0.0108714f,0.138063f}, - {0.304385f,0.0120097f,0.138358f},{0.300237f,0.0131607f,0.138632f},{0.296096f,0.0143354f,0.138904f}, - {0.285291f,0.00666271f,0.140207f},{0.281083f,0.00749967f,0.140947f},{0.279664f,-0.00277232f,0.139987f}, - {0.276917f,-0.00972932f,0.138727f},{0.276921f,-0.00149718f,0.140516f},{0.284854f,0.0121843f,0.140319f}, - {0.280437f,-0.00255887f,0.139937f},{0.28111f,-0.00212359f,0.13993f},{0.290241f,0.000305779f,0.139469f}, - {0.296754f,-0.00112176f,0.139506f},{0.297147f,-0.00216894f,0.139458f},{0.280732f,0.0133136f,0.141164f}, - {0.276975f,0.00834704f,0.141728f},{0.276713f,0.0144683f,0.142054f},{0.329534f,-0.0028458f,0.141692f}, - {0.329708f,-0.0092361f,0.1425f},{0.325643f,-0.00151619f,0.140991f},{0.325978f,-0.00079021f,0.140927f}, - {0.322781f,-0.019351f,0.141212f},{0.318817f,-0.0179262f,0.140278f},{0.314771f,-0.0166178f,0.139577f}, - {0.321454f,-0.00210151f,0.140501f},{0.305823f,-0.00112326f,0.139593f},{0.310634f,-0.0154659f,0.139188f}, - {0.289811f,-0.0100181f,0.137915f},{0.291943f,0.0154659f,0.139188f},{0.285519f,-0.00974966f,0.138081f}, - {0.28376f,0.0179262f,0.140277f},{0.287806f,0.0166178f,0.139577f},{0.279796f,0.0193511f,0.141212f}, - {0.275858f,0.0208182f,0.142186f},{0.272615f,-0.00971729f,0.139038f},{0.264f,0.0179944f,0.144842f}, - {0.264f,0.0109671f,0.144094f},{0.338577f,-0.0262081f,0.147306f},{0.334844f,-0.0248064f,0.146267f}, - {0.334839f,-0.0250058f,0.145834f},{0.331143f,-0.0233183f,0.145233f},{0.331138f,-0.0235291f,0.144807f}, - {0.320025f,-0.0188229f,0.142233f},{0.320019f,-0.0190695f,0.141834f},{0.323745f,-0.0203019f,0.143206f}, - {0.32374f,-0.0205368f,0.142798f},{0.32744f,-0.022035f,0.143797f},{0.327445f,-0.0218112f,0.144215f}, - {0.308407f,-0.015307f,0.140187f},{0.308412f,-0.0150041f,0.140585f},{0.304471f,-0.0141429f,0.139901f}, - {0.316248f,-0.0174212f,0.141368f},{0.312356f,-0.0161629f,0.140879f},{0.312351f,-0.0164424f,0.140484f}, - {0.296614f,-0.0114006f,0.139778f},{0.29265f,-0.0106866f,0.139078f},{0.296607f,-0.0117799f,0.13935f}, - {0.300553f,-0.0125814f,0.140047f},{0.300542f,-0.0129503f,0.139627f},{0.30448f,-0.0138012f,0.140314f}, - {0.280413f,-0.00963024f,0.139594f},{0.284511f,-0.00968708f,0.139236f},{0.284522f,-0.0091952f,0.139717f}, - {0.288611f,-0.0099197f,0.139001f},{0.292663f,-0.0102596f,0.139509f},{0.288623f,-0.00946264f,0.13945f}, - {0.280421f,-0.00907526f,0.140098f},{0.276313f,-0.0095489f,0.139944f},{0.27632f,-0.00894343f,0.140481f}, - {0.272213f,-0.00945311f,0.140271f},{0.268109f,-0.00933687f,0.140548f},{0.272217f,-0.00879579f,0.140841f}, - {0.268112f,-0.0086246f,0.141156f},{0.264f,-0.00922107f,0.140732f},{0.264f,-0.00845004f,0.141369f}, - {0.316239f,-0.0176856f,0.140989f},{0.338577f,-0.0263793f,0.14687f},{0.338577f,-0.0259023f,0.147661f}, - {0.334843f,-0.0244885f,0.146625f},{0.33114f,-0.0229936f,0.14559f},{0.320015f,-0.0184899f,0.142579f}, - {0.32744f,-0.0214828f,0.144569f},{0.3084f,-0.0146321f,0.140948f},{0.316236f,-0.0170843f,0.141711f}, - {0.312343f,-0.0158117f,0.14123f},{0.296605f,-0.010968f,0.14018f},{0.300543f,-0.0121699f,0.140436f}, - {0.304469f,-0.0134094f,0.140689f},{0.284517f,-0.0086637f,0.140175f},{0.292656f,-0.00980481f,0.139924f}, - {0.288617f,-0.00897481f,0.139881f},{0.280417f,-0.00849863f,0.14059f},{0.276317f,-0.00832061f,0.141007f}, - {0.272215f,-0.00812583f,0.141403f},{0.268111f,-0.00790535f,0.141755f},{0.264f,-0.00767878f,0.142006f}, - {0.323738f,-0.0199715f,0.143557f},{0.338577f,-0.0254953f,0.147896f},{0.334632f,-0.0239945f,0.146815f}, - {0.330719f,-0.0224149f,0.145732f},{0.318949f,-0.0176882f,0.14257f},{0.326809f,-0.0208215f,0.14466f}, - {0.322894f,-0.0192329f,0.143596f},{0.306623f,-0.0136618f,0.141149f},{0.314913f,-0.0162503f,0.141808f}, - {0.310777f,-0.0149457f,0.141414f},{0.289947f,-0.00869072f,0.140254f},{0.294176f,-0.00973903f,0.140373f}, - {0.29833f,-0.0110356f,0.140649f},{0.281312f,-0.00795144f,0.140963f},{0.285636f,-0.0081943f,0.140508f}, - {0.276988f,-0.00772122f,0.141446f},{0.272663f,-0.00747253f,0.14191f},{0.268336f,-0.00719397f,0.142331f}, - {0.264f,-0.00690556f,0.142645f},{0.302479f,-0.0123399f,0.140899f},{0.338577f,-0.0250324f,0.147984f}, - {0.334606f,-0.0235306f,0.146925f},{0.330688f,-0.0219498f,0.145862f},{0.318889f,-0.0172517f,0.142779f}, - {0.326769f,-0.0203651f,0.144808f},{0.306566f,-0.0132021f,0.1414f},{0.314858f,-0.0158114f,0.141995f}, - {0.310726f,-0.0144807f,0.141612f},{0.29412f,-0.0092687f,0.140734f},{0.298278f,-0.0105497f,0.140954f}, - {0.30242f,-0.0118813f,0.141174f},{0.28128f,-0.0073368f,0.141392f},{0.285604f,-0.00759572f,0.140879f}, - {0.289904f,-0.00819435f,0.140634f},{0.276964f,-0.00708183f,0.141934f},{0.272648f,-0.00678804f,0.142445f}, - {0.268328f,-0.00646507f,0.142911f},{0.264f,-0.00613003f,0.143285f},{0.322844f,-0.0187868f,0.143765f}, - {0.276283f,-0.00696068f,0.142073f},{0.272193f,-0.00667554f,0.142559f},{0.268101f,-0.00636198f,0.143007f}, - {0.284462f,-0.00748015f,0.141066f},{0.288553f,-0.00786981f,0.140699f},{0.280372f,-0.00722771f,0.141568f}, - {0.300465f,-0.0111819f,0.141102f},{0.292584f,-0.00875236f,0.140687f},{0.312256f,-0.014914f,0.141754f}, - {0.304388f,-0.0124511f,0.141309f},{0.308316f,-0.0137038f,0.141521f},{0.319944f,-0.0175985f,0.14304f}, - {0.323681f,-0.0190677f,0.143996f},{0.316153f,-0.0162018f,0.142196f},{0.327398f,-0.0205663f,0.144987f}, - {0.331113f,-0.022067f,0.145984f},{0.33483f,-0.0235578f,0.146988f},{0.29653f,-0.00994863f,0.140894f}, - {0.264f,-0.00603944f,0.14336f},{0.330122f,-0.00744254f,0.145062f},{0.334273f,-0.015865f,0.146599f}, - {0.334181f,-0.0083666f,0.145857f},{0.329939f,-0.000311244f,0.144002f},{0.334089f,-0.000930332f,0.144641f}, - {0.330384f,0.00667554f,0.142559f},{0.338577f,-0.00158091f,0.14525f},{0.334477f,0.0063617f,0.143002f}, - {0.338577f,-0.00932143f,0.146656f},{0.338577f,0.00603944f,0.14336f},{0.326198f,-0.00654234f,0.144272f}, - {0.322287f,-0.00567271f,0.143483f},{0.326474f,-0.0134133f,0.144758f},{0.314708f,-0.00989537f,0.142284f}, - {0.318771f,-0.0110779f,0.142976f},{0.314167f,-0.00388505f,0.142127f},{0.322655f,-0.0122295f,0.143857f}, - {0.306074f,-0.0072715f,0.141882f},{0.301276f,-1.23849e-006f,0.14196f},{0.301855f,-0.00593214f,0.141771f}, - {0.310416f,-0.00860427f,0.141986f},{0.293337f,-0.00327255f,0.141553f},{0.288967f,-0.00211647f,0.141598f}, - {0.297083f,0.00133631f,0.141962f},{0.297661f,-0.00459153f,0.141661f},{0.268392f,0.00836678f,0.145857f}, - {0.268483f,0.00093054f,0.144641f},{0.272633f,0.000310969f,0.144002f},{0.284719f,-0.00135717f,0.142021f}, - {0.284259f,0.00485039f,0.142684f},{0.264f,0.00158091f,0.14525f},{0.276649f,-0.000284983f,0.143352f}, - {0.27245f,0.00744232f,0.145062f},{0.264f,0.0171357f,0.147569f},{0.2683f,0.0158652f,0.1466f}, - {0.280649f,-0.000835711f,0.142683f},{0.276375f,0.00654153f,0.144272f},{0.280282f,0.00568021f,0.143473f}, - {0.292762f,0.00265603f,0.141973f},{0.288426f,0.00387587f,0.142138f},{0.309833f,-0.00267273f,0.141944f}, - {0.305495f,-0.00133739f,0.14196f},{0.318311f,-0.00483092f,0.14271f},{0.330306f,-0.0146267f,0.145667f}, - {0.338577f,-0.0171357f,0.147569f},{0.326294f,0.0069607f,0.142073f},{0.325924f,0.000284018f,0.143351f}, - {0.322205f,0.00722775f,0.141568f},{0.321921f,0.000847135f,0.142693f},{0.318116f,0.00746803f,0.141057f}, - {0.317854f,0.00138663f,0.142046f},{0.314024f,0.00787057f,0.1407f},{0.313628f,0.00210321f,0.141587f}, - {0.309995f,0.00875939f,0.140692f},{0.309251f,0.00324421f,0.141524f},{0.306045f,0.00994211f,0.140894f}, - {0.267749f,0.023562f,0.146989f},{0.264f,0.0249766f,0.147983f},{0.304917f,0.00458966f,0.141659f}, - {0.302115f,0.0111906f,0.141102f},{0.298192f,0.0124586f,0.141307f},{0.300697f,0.00592971f,0.141772f}, - {0.29426f,0.0136985f,0.141523f},{0.296504f,0.00727121f,0.141884f},{0.29032f,0.0149126f,0.14175f}, - {0.292185f,0.00859914f,0.142013f},{0.286428f,0.0162055f,0.142209f},{0.287882f,0.0098903f,0.142296f}, - {0.282633f,0.0175985f,0.14304f},{0.283798f,0.0110874f,0.142952f},{0.278896f,0.0190677f,0.143996f}, - {0.279914f,0.012233f,0.143847f},{0.275179f,0.0205663f,0.144987f},{0.276098f,0.0134127f,0.144758f}, - {0.271464f,0.0220671f,0.145984f},{0.272266f,0.0146265f,0.145668f},{0.264f,0.00932143f,0.146656f}, - {0.338577f,0.00690312f,0.142647f},{0.334242f,0.00719191f,0.142327f},{0.329914f,0.00746979f,0.14191f}, - {0.316934f,0.00814762f,0.140482f},{0.325589f,0.0077197f,0.141447f},{0.321266f,0.00793083f,0.14095f}, - {0.304248f,0.0110361f,0.14065f},{0.300103f,0.0123542f,0.140896f},{0.312628f,0.00871456f,0.140273f}, - {0.308409f,0.00976951f,0.140403f},{0.28766f,0.0162476f,0.141798f},{0.291792f,0.0149252f,0.141389f}, - {0.295955f,0.0136614f,0.141149f},{0.279686f,0.0192347f,0.143604f},{0.283634f,0.0176916f,0.142602f}, - {0.27577f,0.0208212f,0.144662f},{0.271858f,0.022413f,0.145733f},{0.267947f,0.0239981f,0.146816f}, - {0.264f,0.0254927f,0.147897f},{0.338577f,0.00767576f,0.142009f},{0.334466f,0.00790232f,0.141753f}, - {0.330362f,0.00812312f,0.141405f},{0.31806f,0.00864847f,0.140168f},{0.32626f,0.00831807f,0.14101f}, - {0.32216f,0.00849626f,0.140592f},{0.30597f,0.0109591f,0.140182f},{0.313959f,0.00897354f,0.139884f}, - {0.309923f,0.00981108f,0.139931f},{0.294175f,0.0146249f,0.140952f},{0.29811f,0.0134151f,0.140688f}, - {0.302037f,0.0121769f,0.140437f},{0.282562f,0.0184881f,0.142581f},{0.290233f,0.0158082f,0.141227f}, - {0.286345f,0.0170869f,0.141725f},{0.278839f,0.0199696f,0.143558f},{0.275137f,0.0214809f,0.14457f}, - {0.271437f,0.0229915f,0.145592f},{0.267736f,0.0244911f,0.146626f},{0.264f,0.0259001f,0.147663f}, - {0.338577f,0.00844643f,0.141372f},{0.334465f,0.0086212f,0.141154f},{0.33036f,0.00879266f,0.140843f}, - {0.318055f,0.00917932f,0.139711f},{0.326258f,0.00894054f,0.140483f},{0.305961f,0.0113914f,0.139781f}, - {0.313954f,0.00946126f,0.139453f},{0.309916f,0.0102671f,0.139517f},{0.294163f,0.0149971f,0.140589f}, - {0.298099f,0.0138071f,0.140313f},{0.302027f,0.0125887f,0.140048f},{0.282552f,0.0188214f,0.142234f}, - {0.29022f,0.0161597f,0.140877f},{0.286332f,0.0174245f,0.141382f},{0.278832f,0.0203004f,0.143209f}, - {0.275132f,0.0218097f,0.144217f},{0.271434f,0.0233168f,0.145235f},{0.267735f,0.0248099f,0.146269f}, - {0.264f,0.0262067f,0.147309f},{0.322157f,0.0090726f,0.140101f},{0.338577f,0.00921688f,0.140736f}, - {0.334468f,0.00933302f,0.140551f},{0.330364f,0.00944958f,0.140274f},{0.318066f,0.00968445f,0.139239f}, - {0.326264f,0.00954568f,0.139947f},{0.30597f,0.0117779f,0.139353f},{0.313966f,0.00991732f,0.139004f}, - {0.309927f,0.0106844f,0.139081f},{0.29417f,0.0153055f,0.140189f},{0.298106f,0.0141412f,0.139904f}, - {0.302035f,0.0129485f,0.13963f},{0.282558f,0.0190685f,0.141836f},{0.286338f,0.0176844f,0.140992f}, - {0.290226f,0.016441f,0.140486f},{0.278837f,0.0205358f,0.142801f},{0.275137f,0.0220341f,0.1438f}, - {0.271439f,0.0235282f,0.14481f},{0.267738f,0.0250051f,0.145837f},{0.264f,0.0263788f,0.146873f}, - {0.322165f,0.00962732f,0.139597f},{0.334471f,0.00976429f,0.140182f},{0.338577f,0.00968775f,0.140347f}, - {0.322175f,0.00995451f,0.139285f},{0.326272f,0.00990606f,0.139616f},{0.33037f,0.00984421f,0.139924f}, - {0.309942f,0.0109184f,0.138808f},{0.318079f,0.00997907f,0.138946f},{0.29812f,0.0143137f,0.139645f}, - {0.302049f,0.01314f,0.139366f},{0.305984f,0.0119892f,0.139084f},{0.28635f,0.0178005f,0.140741f}, - {0.290239f,0.0165744f,0.140236f},{0.294183f,0.015459f,0.139935f},{0.278846f,0.0206269f,0.142536f}, - {0.282568f,0.0191718f,0.141579f},{0.275145f,0.0221132f,0.143529f},{0.271445f,0.0235942f,0.144532f}, - {0.267741f,0.0250554f,0.145553f},{0.264f,0.0264087f,0.146586f},{0.313981f,0.0101788f,0.138724f}, - {0.300099f,0.0137161f,0.139356f},{0.304248f,0.0124851f,0.13907f},{0.308413f,0.0113146f,0.138783f}, - {0.312637f,0.0103804f,0.138606f},{0.316945f,0.00997452f,0.138733f},{0.321273f,0.00994023f,0.13908f}, - {0.325595f,0.00991203f,0.139443f},{0.329918f,0.009849f,0.139773f},{0.334245f,0.00976769f,0.140054f}, - {0.338577f,0.00968775f,0.140237f},{0.295949f,0.014938f,0.139648f},{0.291782f,0.0161103f,0.139931f}, - {0.28765f,0.0173564f,0.140361f},{0.283628f,0.0187613f,0.141145f},{0.279684f,0.0202782f,0.142115f}, - {0.275771f,0.021842f,0.143141f},{0.271863f,0.0234057f,0.144181f},{0.267952f,0.024951f,0.14524f}, - {0.264f,0.0263814f,0.146312f},{0.333995f,0.00976336f,0.139842f},{0.338577f,0.00968775f,0.140047f}, - {0.320276f,0.00990978f,0.138791f},{0.324847f,0.00989796f,0.139181f},{0.329419f,0.00983969f,0.139537f}, - {0.311162f,0.0106101f,0.138427f},{0.306724f,0.0117247f,0.138676f},{0.315696f,0.00998742f,0.138455f}, - {0.297936f,0.0142908f,0.139261f},{0.293533f,0.0155467f,0.139552f},{0.302325f,0.0129908f,0.13897f}, - {0.280636f,0.0197978f,0.141555f},{0.284834f,0.0182285f,0.140588f},{0.289136f,0.0168071f,0.139904f}, - {0.276483f,0.0214356f,0.142606f},{0.272338f,0.0230806f,0.143678f},{0.268191f,0.0247084f,0.144769f}, - {0.264f,0.0262125f,0.145873f},{0.334001f,0.00974593f,0.13965f},{0.338577f,0.00968775f,0.139856f}, - {0.3203f,0.00985594f,0.138605f},{0.324865f,0.00985469f,0.138992f},{0.329431f,0.00980831f,0.139346f}, - {0.30676f,0.0116247f,0.138477f},{0.315727f,0.00992109f,0.13827f},{0.297975f,0.0141594f,0.139045f}, - {0.293574f,0.0154002f,0.139327f},{0.302362f,0.0128748f,0.138762f},{0.280668f,0.0195912f,0.141282f}, - {0.284873f,0.0180446f,0.140336f},{0.289177f,0.0166436f,0.139669f},{0.276508f,0.021206f,0.142313f}, - {0.272355f,0.0228275f,0.143363f},{0.268199f,0.0244304f,0.144433f},{0.264f,0.0259067f,0.145514f}, - {0.311196f,0.0105278f,0.138237f},{0.334008f,0.00972275f,0.139465f},{0.338577f,0.00968775f,0.139665f}, - {0.320325f,0.00978412f,0.13844f},{0.324884f,0.0097971f,0.13882f},{0.329444f,0.00976655f,0.139166f}, - {0.311232f,0.0104201f,0.138077f},{0.306797f,0.0114944f,0.138315f},{0.315758f,0.00983335f,0.13811f}, - {0.298014f,0.013988f,0.138879f},{0.293615f,0.0152086f,0.139158f},{0.3024f,0.0127235f,0.138598f}, - {0.280701f,0.01932f,0.14109f},{0.284911f,0.017804f,0.140155f},{0.289219f,0.0164298f,0.139496f}, - {0.276533f,0.0209031f,0.142109f},{0.272372f,0.0224922f,0.143148f},{0.268208f,0.0240607f,0.144207f}, - {0.264f,0.0254987f,0.145277f},{0.334373f,-0.0240512f,0.144207f},{0.338577f,-0.0254987f,0.145277f}, - {0.326047f,-0.0208987f,0.142106f},{0.330206f,-0.0224907f,0.143149f},{0.313354f,-0.0164319f,0.139508f}, - {0.308957f,-0.015224f,0.139169f},{0.317674f,-0.0177924f,0.140121f},{0.300179f,-0.0127141f,0.138599f}, - {0.295784f,-0.0114783f,0.1383f},{0.304565f,-0.0139803f,0.138881f},{0.282253f,-0.00981234f,0.138457f}, - {0.286812f,-0.00988648f,0.138137f},{0.291345f,-0.0103884f,0.138061f},{0.277693f,-0.00979575f,0.138821f}, - {0.273133f,-0.00976673f,0.139168f},{0.26857f,-0.00972076f,0.139471f},{0.264f,-0.00968775f,0.139665f}, - {0.32188f,-0.0193145f,0.141081f},{0.334381f,-0.0244211f,0.144433f},{0.338577f,-0.0259067f,0.145514f}, - {0.321913f,-0.0195856f,0.141274f},{0.326071f,-0.0212016f,0.14231f},{0.330223f,-0.0228261f,0.143364f}, - {0.313395f,-0.016646f,0.139681f},{0.308997f,-0.0154158f,0.139338f},{0.317712f,-0.0180326f,0.140302f}, - {0.295821f,-0.0116084f,0.138462f},{0.300217f,-0.0128655f,0.138763f},{0.304604f,-0.0141518f,0.139047f}, - {0.282278f,-0.0098846f,0.138622f},{0.286844f,-0.0099743f,0.138297f},{0.29138f,-0.0104962f,0.13822f}, - {0.277712f,-0.00985341f,0.138994f},{0.273146f,-0.00980859f,0.139347f},{0.268576f,-0.0097442f,0.139657f}, - {0.264f,-0.00968775f,0.139856f},{0.33439f,-0.0246992f,0.144769f},{0.338577f,-0.0262125f,0.145873f}, - {0.321945f,-0.019792f,0.141546f},{0.326096f,-0.0214312f,0.142603f},{0.33024f,-0.0230793f,0.143679f}, - {0.309038f,-0.0155626f,0.139563f},{0.317751f,-0.0182163f,0.140554f},{0.295857f,-0.0117083f,0.13866f}, - {0.300255f,-0.0129816f,0.138971f},{0.304643f,-0.0142832f,0.139263f},{0.282302f,-0.00993888f,0.138809f}, - {0.286874f,-0.0100406f,0.138482f},{0.291414f,-0.0105787f,0.13841f},{0.27773f,-0.00989672f,0.139183f}, - {0.273158f,-0.00984006f,0.139539f},{0.268582f,-0.00976183f,0.139849f},{0.264f,-0.00968775f,0.140047f}, - {0.313436f,-0.0168098f,0.139917f},{0.338577f,-0.0264087f,0.146586f},{0.327432f,-0.0221132f,0.143529f}, - {0.331132f,-0.0235942f,0.144532f},{0.334836f,-0.0250554f,0.145553f},{0.316228f,-0.0178005f,0.140741f}, - {0.312338f,-0.0165745f,0.140236f},{0.323731f,-0.0206269f,0.142536f},{0.320009f,-0.0191717f,0.141579f}, - {0.300528f,-0.01314f,0.139366f},{0.304457f,-0.0143137f,0.139645f},{0.308394f,-0.015459f,0.139935f}, - {0.288596f,-0.0101788f,0.138724f},{0.292635f,-0.0109184f,0.138808f},{0.296593f,-0.0119892f,0.139084f}, - {0.280402f,-0.00995447f,0.139285f},{0.284498f,-0.00997902f,0.138946f},{0.276306f,-0.00990604f,0.139616f}, - {0.272207f,-0.0098442f,0.139924f},{0.268106f,-0.00976429f,0.140182f},{0.264f,-0.00968775f,0.140347f}, - {0.334628f,-0.0249437f,0.145241f},{0.338577f,-0.0263814f,0.146312f},{0.322896f,-0.0202741f,0.142109f}, - {0.326807f,-0.0218394f,0.143139f},{0.330715f,-0.023405f,0.144181f},{0.314923f,-0.0173571f,0.14037f}, - {0.310786f,-0.0161317f,0.139953f},{0.318956f,-0.0187523f,0.141118f},{0.302483f,-0.0136985f,0.13936f}, - {0.29833f,-0.0124827f,0.139069f},{0.306629f,-0.0149357f,0.139649f},{0.289937f,-0.010352f,0.138591f}, - {0.294173f,-0.0112762f,0.138755f},{0.281305f,-0.00995919f,0.139092f},{0.285627f,-0.010024f,0.138759f}, - {0.276982f,-0.00991129f,0.139444f},{0.272659f,-0.00984923f,0.139775f},{0.264f,-0.00968775f,0.140237f}, - {0.268333f,-0.00976681f,0.14006f},{0.489193f,0.00379135f,0.143971f},{0.488833f,0.00496458f,0.143658f}, - {0.489314f,-0.00742307f,0.146358f},{0.489314f,0.00257039f,0.144284f},{0.48825f,0.00603944f,0.14336f}, - {0.489314f,-0.00240499f,0.145424f},{0.387061f,-0.0211541f,0.147844f},{0.435444f,-0.0173396f,0.147586f}, - {0.483726f,-0.013533f,0.147211f},{0.485008f,-0.0132893f,0.147183f},{0.4862f,-0.0127783f,0.147122f}, - {0.487256f,-0.0120253f,0.147029f},{0.488129f,-0.0110634f,0.146904f},{0.488778f,-0.00994277f,0.146747f}, - {0.489179f,-0.00870927f,0.146564f},{0.489052f,-0.0123416f,0.144272f},{0.489962f,-0.0109102f,0.144086f}, - {0.487844f,-0.0135295f,0.144414f},{0.450527f,-0.0164058f,0.144708f},{0.413211f,-0.0192822f,0.144935f}, - {0.375894f,-0.0221586f,0.145095f},{0.490523f,-0.00932212f,0.14386f},{0.490713f,-0.00765064f,0.143599f}, - {0.483255f,0.00968775f,0.139474f},{0.484944f,0.00949318f,0.139536f},{0.48999f,0.00543154f,0.140734f}, - {0.49053f,0.00387196f,0.141154f},{0.486539f,0.00892517f,0.139713f},{0.487952f,0.0080214f,0.139987f}, - {0.489121f,0.00683431f,0.140337f},{0.490713f,0.00223012f,0.141572f},{0.483255f,0.00968775f,0.140347f}, - {0.490713f,-0.00268915f,0.144055f},{0.490713f,0.00223012f,0.142928f},{0.490713f,-0.00765064f,0.144979f}, - {0.486568f,-0.0143331f,0.144707f},{0.485411f,-0.0147899f,0.145794f},{0.48523f,-0.0148426f,0.145225f}, - {0.483834f,-0.0150857f,0.145821f},{0.486874f,-0.014171f,0.145734f},{0.488177f,-0.0132538f,0.145642f}, - {0.489249f,-0.0120868f,0.145518f},{0.490052f,-0.0107201f,0.145364f},{0.490545f,-0.00921907f,0.145182f}, - {0.48779f,0.00815064f,0.141617f},{0.489024f,0.00695586f,0.141898f},{0.490519f,0.00391721f,0.142576f}, - {0.489946f,0.00552233f,0.142225f},{0.486401f,0.0089918f,0.140922f},{0.484871f,0.00951028f,0.140494f}, - {0.488748f,0.00632699f,0.143123f},{0.488788f,0.0068323f,0.142705f},{0.488576f,0.00732043f,0.142302f}, - {0.48823f,0.00776225f,0.141937f},{0.374892f,-0.0235779f,0.146493f},{0.386398f,-0.0219204f,0.147693f}, - {0.38644f,-0.0224876f,0.147153f},{0.44752f,-0.0179164f,0.146111f},{0.483831f,-0.0149745f,0.146368f}, - {0.435152f,-0.0186837f,0.146909f},{0.483769f,-0.0140869f,0.147162f},{0.435109f,-0.0180963f,0.147451f}, - {0.483807f,-0.0146193f,0.146864f},{0.411206f,-0.0207472f,0.146335f},{0.490303f,-0.00748972f,0.145954f}, - {0.490142f,-0.00897658f,0.146183f},{0.490461f,-0.00911758f,0.145712f},{0.48969f,-0.0103998f,0.146379f}, - {0.489201f,-0.0119652f,0.146066f},{0.489986f,-0.0106014f,0.145903f},{0.48793f,-0.0128307f,0.14668f}, - {0.486857f,-0.0140507f,0.146292f},{0.488142f,-0.0131339f,0.146196f},{0.485398f,-0.0146743f,0.146354f}, - {0.487626f,-0.0124497f,0.14697f},{0.488574f,-0.0113986f,0.146838f},{0.485172f,-0.0138348f,0.147131f}, - {0.485306f,-0.0143101f,0.146843f},{0.486476f,-0.013274f,0.147068f},{0.489829f,-0.00743905f,0.146261f}, - {0.489704f,-0.00883688f,0.146478f},{0.490614f,-0.00756687f,0.145487f},{0.489277f,-0.0101719f,0.146672f}, - {0.486701f,-0.0137111f,0.146779f},{0.488941f,-0.0117086f,0.146547f},{0.490504f,-0.00254212f,0.144763f}, - {0.490038f,-0.0024474f,0.14522f},{0.490529f,0.00239822f,0.143598f},{0.489991f,0.00252701f,0.144111f}, - {0.490287f,0.00405957f,0.143247f},{0.489296f,0.00550952f,0.143326f},{0.489714f,0.00559184f,0.142876f}, - {0.489834f,0.00407172f,0.143698f},{0.375478f,-0.022887f,0.145323f},{0.375514f,-0.0233314f,0.145788f}, - {0.451096f,-0.0174497f,0.145407f},{0.413325f,-0.0203893f,0.145633f},{0.413289f,-0.0199559f,0.14517f}, - {0.45106f,-0.0170273f,0.144947f},{0.113525f,0.0123416f,0.144272f},{0.112615f,0.0109102f,0.144086f}, - {0.114734f,0.0135295f,0.144414f},{0.15205f,0.0164058f,0.144708f},{0.189366f,0.0192822f,0.144935f}, - {0.226683f,0.0221586f,0.145095f},{0.112054f,0.00932212f,0.14386f},{0.111865f,0.00765064f,0.143599f}, - {0.119322f,-0.00968775f,0.139474f},{0.117633f,-0.00949318f,0.139536f},{0.112587f,-0.00543154f,0.140734f}, - {0.112048f,-0.00387196f,0.141154f},{0.116038f,-0.00892517f,0.139713f},{0.114625f,-0.0080214f,0.139987f}, - {0.113456f,-0.00683431f,0.140337f},{0.111865f,-0.00223012f,0.141572f},{0.113384f,-0.00379135f,0.143971f}, - {0.113745f,-0.00496458f,0.143658f},{0.113263f,0.00742307f,0.146358f},{0.113263f,-0.00257039f,0.144284f}, - {0.114327f,-0.00603944f,0.14336f},{0.113263f,0.00240499f,0.145424f},{0.215517f,0.0211541f,0.147844f}, - {0.167133f,0.0173396f,0.147586f},{0.118851f,0.013533f,0.147211f},{0.117576f,0.0132913f,0.147183f}, - {0.116383f,0.0127821f,0.147123f},{0.115326f,0.0120287f,0.14703f},{0.114453f,0.0110706f,0.146905f}, - {0.113801f,0.00994698f,0.146748f},{0.1134f,0.00871793f,0.146565f},{0.119322f,-0.00968775f,0.140347f}, - {0.111865f,0.00268915f,0.144055f},{0.111865f,0.00765064f,0.144979f},{0.111865f,-0.00223012f,0.142928f}, - {0.116009f,0.0143331f,0.144707f},{0.117177f,0.014793f,0.145794f},{0.117347f,0.0148426f,0.145225f}, - {0.118743f,0.0150857f,0.145821f},{0.115708f,0.014174f,0.145734f},{0.114409f,0.0132606f,0.145643f}, - {0.113332f,0.0120925f,0.145519f},{0.112529f,0.0107278f,0.145364f},{0.112033f,0.00922792f,0.145183f}, - {0.114787f,-0.00815064f,0.141617f},{0.113553f,-0.00695586f,0.141898f},{0.112631f,-0.00552233f,0.142225f}, - {0.112058f,-0.00391721f,0.142576f},{0.116176f,-0.0089918f,0.140922f},{0.117706f,-0.00951028f,0.140494f}, - {0.113789f,-0.0068323f,0.142705f},{0.113829f,-0.00632699f,0.143123f},{0.114001f,-0.00732043f,0.142302f}, - {0.114347f,-0.00776225f,0.141937f},{0.227685f,0.0235779f,0.146493f},{0.216179f,0.0219204f,0.147693f}, - {0.216137f,0.0224876f,0.147153f},{0.155057f,0.0179164f,0.146111f},{0.118746f,0.0149745f,0.146368f}, - {0.167425f,0.0186837f,0.146909f},{0.118809f,0.0140869f,0.147162f},{0.167468f,0.0180963f,0.147451f}, - {0.11877f,0.0146193f,0.146864f},{0.191371f,0.0207472f,0.146335f},{0.115882f,0.0137517f,0.146749f}, - {0.117415f,0.013838f,0.147132f},{0.117273f,0.0143462f,0.146813f},{0.11445f,0.0131473f,0.146196f}, - {0.115741f,0.0140617f,0.146292f},{0.11719f,0.0146779f,0.146354f},{0.113307f,0.0101903f,0.146674f}, - {0.114012f,0.0114133f,0.146839f},{0.11241f,0.00899738f,0.146157f},{0.111963f,0.00756687f,0.145487f}, - {0.112274f,0.00748972f,0.145954f},{0.112599f,0.0106218f,0.145905f},{0.113386f,0.0119815f,0.146067f}, - {0.112119f,0.00912889f,0.145714f},{0.112869f,0.0104352f,0.146353f},{0.112875f,0.00884706f,0.146479f}, - {0.114643f,0.0128697f,0.146651f},{0.116119f,0.0132839f,0.147069f},{0.112748f,0.00743905f,0.146261f}, - {0.114964f,0.0124617f,0.146971f},{0.113623f,0.0117456f,0.146519f},{0.112073f,0.00254212f,0.144763f}, - {0.112539f,0.0024474f,0.14522f},{0.112048f,-0.00239822f,0.143598f},{0.112586f,-0.00252701f,0.144111f}, - {0.11229f,-0.00405957f,0.143247f},{0.113281f,-0.00550952f,0.143326f},{0.112863f,-0.00559184f,0.142876f}, - {0.112743f,-0.00407172f,0.143698f},{0.227063f,0.0233314f,0.145788f},{0.227099f,0.022887f,0.145323f}, - {0.151517f,0.0170273f,0.144947f},{0.151481f,0.0174497f,0.145407f},{0.189252f,0.0203893f,0.145633f}, - {0.189288f,0.0199559f,0.14517f},{0.302945f,-0.0043568f,0.126571f},{0.303939f,-0.00383438f,0.126571f}, - {0.304781f,-0.00308638f,0.126571f},{0.305417f,-0.00216232f,0.126571f},{0.300729f,-0.00462734f,0.126571f}, - {0.301855f,-0.00462608f,0.126571f},{0.298645f,-0.00383806f,0.126571f},{0.299638f,-0.00435903f,0.126571f}, - {0.297801f,-0.00309213f,0.126571f},{0.297163f,-0.00216808f,0.126571f},{0.296764f,-0.00111857f,0.126571f}, - {0.305815f,-0.0011128f,0.126571f},{0.303613f,0.00150163f,0.126571f},{0.303967f,0.000787374f,0.126571f}, - {0.303117f,0.00211724f,0.126571f},{0.302447f,0.00254559f,0.126571f},{0.301683f,0.00276842f,0.126571f}, - {0.300888f,0.00276723f,0.126571f},{0.300125f,0.00254283f,0.126571f},{0.299465f,0.00210508f,0.126571f}, - {0.298949f,0.00150519f,0.126571f},{0.298603f,0.00078745f,0.126571f},{0.30013f,0.00254559f,0.135893f}, - {0.300894f,0.00276842f,0.135893f},{0.303628f,0.00150519f,0.135893f},{0.301689f,0.00276723f,0.135893f}, - {0.303112f,0.00210508f,0.135893f},{0.303974f,0.00078745f,0.135893f},{0.302452f,0.00254283f,0.135893f}, - {0.29946f,0.00211724f,0.135893f},{0.298964f,0.00150163f,0.135893f},{0.29861f,0.000787374f,0.135893f}, - {0.280158f,-0.00265777f,0.126571f},{0.280939f,-0.00225612f,0.126571f},{0.281556f,-0.00163414f,0.126571f}, - {0.278432f,-0.00266037f,0.126571f},{0.277654f,-0.00226719f,0.126571f},{0.279289f,-0.00279661f,0.126571f}, - {0.277032f,-0.00165072f,0.126571f},{0.276631f,-0.000869207f,0.126571f},{0.281946f,-0.000869207f,0.126571f}, - {0.324158f,-0.00265777f,0.126571f},{0.324939f,-0.00225612f,0.126571f},{0.325556f,-0.00163414f,0.126571f}, - {0.322432f,-0.00266037f,0.126571f},{0.323289f,-0.00279661f,0.126571f},{0.321032f,-0.00165072f,0.126571f}, - {0.321654f,-0.00226719f,0.126571f},{0.320631f,-0.000869207f,0.126571f},{0.325946f,-0.000869207f,0.126571f}, - {-0.0027207f,-0.278876f,0.141016f},{-0.00279661f,-0.279289f,0.127503f},{-0.00276223f,-0.279666f,0.140921f}, - {-0.00254178f,-0.278101f,0.141133f},{-0.00266037f,-0.278432f,0.127503f},{-0.00226719f,-0.277654f,0.127503f}, - {-0.00210085f,-0.277449f,0.141283f},{-0.000869207f,-0.276631f,0.127503f},{-0.00165072f,-0.277032f,0.127503f}, - {-0.00149803f,-0.276921f,0.141448f},{-0.000793813f,-0.276599f,0.141604f},{8.0384e-017f,-0.276492f,0.127503f}, - {2.12873e-008f,-0.276492f,0.141748f},{-0.00265777f,-0.280158f,0.127503f},{-0.00255964f,-0.280438f,0.140869f}, - {-0.00225612f,-0.280939f,0.127503f},{-0.00163414f,-0.281556f,0.127503f},{-0.00212367f,-0.28111f,0.140862f}, - {-0.000869207f,-0.281946f,0.127503f},{-0.00151779f,-0.281644f,0.140892f},{-0.000793595f,-0.281979f,0.140955f}, - {7.94845e-017f,-0.282085f,0.127503f},{7.94845e-017f,-0.282085f,0.141048f},{-0.00226719f,-0.321654f,0.127503f}, - {-0.00266113f,-0.32241f,0.141631f},{-0.00225617f,-0.321628f,0.141475f},{-0.00266037f,-0.322432f,0.127503f}, - {-0.00165072f,-0.321032f,0.127503f},{-0.00161123f,-0.321061f,0.141322f},{-0.000869207f,-0.320631f,0.127503f}, - {-0.000861428f,-0.320624f,0.141174f},{-0.00279699f,-0.323269f,0.141768f},{-2.26626e-008f,-0.320492f,0.141048f}, - {7.02374e-017f,-0.320492f,0.127503f},{-0.00279661f,-0.323289f,0.127503f},{-0.00267244f,-0.324142f,0.141876f}, - {-0.00227523f,-0.324922f,0.141932f},{-0.00265777f,-0.324158f,0.127503f},{-0.00225612f,-0.324939f,0.127503f}, - {-0.00164828f,-0.325551f,0.14193f},{-0.00163414f,-0.325556f,0.127503f},{-0.000869207f,-0.325946f,0.127503f}, - {-0.000867575f,-0.325955f,0.141868f},{7.05799e-017f,-0.326085f,0.127503f},{7.05799e-017f,-0.326085f,0.141748f}, - {0.00279661f,-0.301289f,0.136825f},{0.00266037f,-0.300432f,0.127503f},{0.00226719f,-0.302923f,0.136825f}, - {0.00265777f,-0.302158f,0.127503f},{0.00225612f,-0.302939f,0.127503f},{0.00266037f,-0.302145f,0.136825f}, - {0.00165072f,-0.303545f,0.136825f},{0.000869207f,-0.303946f,0.127503f},{7.91421e-017f,-0.304085f,0.136825f}, - {0.000869207f,-0.303946f,0.136825f},{0.00163414f,-0.303556f,0.127503f},{7.91421e-017f,-0.304085f,0.127503f}, - {0.00265777f,-0.300419f,0.136825f},{0.00226719f,-0.299654f,0.127503f},{0.00225612f,-0.299638f,0.136825f}, - {0.00163414f,-0.299021f,0.136825f},{0.00165072f,-0.299032f,0.127503f},{0.000869207f,-0.298631f,0.136825f}, - {0.000869207f,-0.298631f,0.127503f},{7.94845e-017f,-0.298492f,0.127503f},{7.94845e-017f,-0.298492f,0.136825f}, - {-0.00383933f,-0.298637f,0.140336f},{-0.00435933f,-0.299639f,0.127503f},{-0.00437081f,-0.299629f,0.140342f}, - {-0.00462728f,-0.30073f,0.127503f},{-0.00383758f,-0.298643f,0.127503f},{-0.00463064f,-0.30072f,0.140371f}, - {-0.00309444f,-0.297804f,0.127503f},{-0.00308762f,-0.297795f,0.140354f},{-0.00216892f,-0.297163f,0.127503f}, - {-0.00463006f,-0.30185f,0.140416f},{-0.00216891f,-0.297147f,0.14039f},{-0.00111911f,-0.296764f,0.127503f}, - {-5.59251e-014f,-0.296628f,0.140488f},{-3.35892e-010f,-0.296628f,0.127503f},{-0.00112174f,-0.296754f,0.140439f}, - {-0.00462657f,-0.301853f,0.127503f},{-0.00435716f,-0.302944f,0.127503f},{-0.00437228f,-0.302946f,0.140465f}, - {-0.00384698f,-0.303934f,0.140509f},{-0.0038338f,-0.303939f,0.127503f},{-0.00308862f,-0.304779f,0.127503f}, - {-0.00309221f,-0.304777f,0.140537f},{-0.00216381f,-0.305417f,0.127503f},{-0.00217168f,-0.305426f,0.140543f}, - {-0.00112329f,-0.305823f,0.140525f},{-0.00111503f,-0.305814f,0.127503f},{7.94845e-017f,-0.30595f,0.140488f}, - {7.94845e-017f,-0.30595f,0.127503f},{-0.0031834f,-0.268793f,0.141919f},{0.0034311f,-0.268706f,0.143258f}, - {-0.00348389f,-0.273216f,0.141453f},{0.013311f,-0.280744f,0.142108f},{0.00749864f,-0.281094f,0.141891f}, - {0.01447f,-0.27672f,0.142985f},{0.0237151f,-0.26798f,0.145107f},{0.0168317f,-0.268531f,0.144795f}, - {0.0250351f,-0.264f,0.14612f},{0.00309212f,-0.2978f,0.140537f},{0.00980991f,-0.293788f,0.140443f}, - {0.00384705f,-0.298643f,0.140509f},{0.000788852f,-0.281979f,0.141161f},{0.00148198f,-0.281606f,0.141294f}, - {0.00113058f,-0.285735f,0.140739f},{0.00437081f,-0.302948f,0.140342f},{0.00463066f,-0.301857f,0.140371f}, - {0.00734722f,-0.302709f,0.140099f},{-0.00981015f,-0.308774f,0.140456f},{0.00383936f,-0.30394f,0.140336f}, - {0.0030876f,-0.304783f,0.140354f},{0.000835134f,-0.307737f,0.140403f},{-0.00565577f,-0.312842f,0.140706f}, - {-0.00448849f,-0.308256f,0.140582f},{0.000794809f,-0.320599f,0.140955f},{0.00431412f,-0.316415f,0.139973f}, - {0.00152033f,-0.320936f,0.140892f},{-0.0168309f,-0.334055f,0.144796f},{-0.0250351f,-0.338577f,0.14612f}, - {-0.0237151f,-0.334598f,0.145107f},{-0.0110109f,-0.313348f,0.140705f},{-0.00922726f,-0.329718f,0.143432f}, - {-0.0222833f,-0.330654f,0.144104f},{-0.0156491f,-0.329893f,0.143876f},{0.00348559f,-0.329371f,0.141452f}, - {-0.00283697f,-0.329543f,0.142622f},{0.000793378f,-0.325978f,0.141605f},{0.00318417f,-0.333794f,0.141918f}, - {-0.00342276f,-0.33388f,0.143256f},{0.00969325f,-0.334267f,0.140239f},{0.00290707f,-0.338577f,0.142335f}, - {-0.00398877f,-0.338577f,0.143878f},{0.00968775f,-0.338577f,0.140407f},{0.00378729f,-0.325081f,0.140965f}, - {0.00209478f,-0.325129f,0.141284f},{0.00253473f,-0.324474f,0.141134f},{-0.010107f,-0.333967f,0.144218f}, - {0.00272118f,-0.323703f,0.141016f},{0.00973119f,-0.321359f,0.139327f},{0.00404127f,-0.320799f,0.140452f}, - {0.00858894f,-0.298312f,0.140271f},{0.000322559f,-0.290225f,0.140392f},{-0.00611166f,-0.29535f,0.139905f}, - {-0.0049946f,-0.290725f,0.139783f},{-0.00734676f,-0.299868f,0.140099f},{0.0043723f,-0.299631f,0.140465f}, - {-0.00405908f,-0.281789f,0.140464f},{-0.00435339f,-0.286166f,0.139998f},{0.00217165f,-0.297151f,0.140543f}, - {0.00450063f,-0.294309f,0.140568f},{0.00253786f,-0.280465f,0.141575f},{0.00276739f,-0.279704f,0.141709f}, - {0.00835592f,-0.276982f,0.14266f},{0.00255847f,-0.278136f,0.141903f},{0.00212169f,-0.277464f,0.141937f}, - {0.0208182f,-0.275858f,0.143118f},{0.00398877f,-0.264f,0.143878f},{0.0156505f,-0.272694f,0.143875f}, - {-0.00968775f,-0.264f,0.140407f},{-0.00290707f,-0.264f,0.142335f},{-0.00969325f,-0.268311f,0.140239f}, - {-0.00973122f,-0.281218f,0.139327f},{-0.00972934f,-0.276917f,0.139659f},{-0.00378494f,-0.277503f,0.140965f}, - {0.0121774f,-0.284865f,0.141276f},{0.00665136f,-0.2853f,0.141165f},{-0.000816648f,-0.294831f,0.140389f}, - {0.0027728f,-0.278905f,0.141822f},{0.0101155f,-0.268619f,0.144218f},{0.0179944f,-0.264f,0.145774f}, - {0.0222833f,-0.271923f,0.144104f},{0.0109671f,-0.264f,0.145026f},{-0.0097173f,-0.272615f,0.139971f}, - {-0.0097497f,-0.285519f,0.139013f},{-0.00858896f,-0.304264f,0.140271f},{0.00613049f,-0.307222f,0.139921f}, - {-0.00115281f,-0.316849f,0.140712f},{0.00500873f,-0.311834f,0.139791f},{0.0120097f,-0.304385f,0.13929f}, - {0.0108714f,-0.308539f,0.138995f},{0.00463004f,-0.300727f,0.140416f},{0.0131607f,-0.300237f,0.139564f}, - {0.0143354f,-0.296096f,0.139836f},{0.00566917f,-0.289722f,0.140697f},{0.0110148f,-0.289219f,0.140695f}, - {-0.0100181f,-0.289811f,0.138847f},{-0.0108714f,-0.294038f,0.138995f},{-0.0120097f,-0.298192f,0.13929f}, - {-0.0131607f,-0.30234f,0.139564f},{-0.0143354f,-0.306481f,0.139836f},{-0.00666271f,-0.317286f,0.14114f}, - {-0.00749967f,-0.321494f,0.141879f},{0.00277232f,-0.322913f,0.14092f},{0.00972932f,-0.32566f,0.139659f}, - {0.00149718f,-0.325656f,0.141448f},{-0.0121843f,-0.317723f,0.141251f},{0.00255887f,-0.32214f,0.140869f}, - {0.00212359f,-0.321467f,0.140862f},{-0.000305779f,-0.312336f,0.140401f},{0.00112176f,-0.305823f,0.140439f}, - {0.00216894f,-0.30543f,0.14039f},{-0.0133136f,-0.321845f,0.142096f},{-0.00834704f,-0.325602f,0.14266f}, - {-0.0144683f,-0.325864f,0.142986f},{0.0028458f,-0.273043f,0.142624f},{0.0092361f,-0.272869f,0.143432f}, - {0.00151619f,-0.276934f,0.141923f},{0.00079021f,-0.276599f,0.141859f},{0.019351f,-0.279796f,0.142144f}, - {0.0179262f,-0.28376f,0.14121f},{0.0166178f,-0.287806f,0.140509f},{0.00210151f,-0.281123f,0.141433f}, - {0.00112326f,-0.296754f,0.140525f},{0.0154659f,-0.291943f,0.14012f},{0.0100181f,-0.312766f,0.138847f}, - {-0.0154659f,-0.310634f,0.14012f},{0.00974966f,-0.317058f,0.139013f},{-0.0179262f,-0.318817f,0.14121f}, - {-0.0166178f,-0.314771f,0.140509f},{-0.0193511f,-0.322781f,0.142144f},{-0.0208182f,-0.326719f,0.143118f}, - {0.00971729f,-0.329962f,0.139971f},{-0.0179944f,-0.338577f,0.145774f},{-0.0109671f,-0.338577f,0.145026f}, - {0.0262081f,-0.264f,0.148238f},{0.0248064f,-0.267733f,0.147199f},{0.0250058f,-0.267738f,0.146766f}, - {0.0233183f,-0.271434f,0.146165f},{0.0235291f,-0.271439f,0.145739f},{0.0188229f,-0.282552f,0.143165f}, - {0.0190695f,-0.282558f,0.142766f},{0.0203019f,-0.278832f,0.144139f},{0.0205368f,-0.278837f,0.143731f}, - {0.022035f,-0.275137f,0.14473f},{0.0218112f,-0.275132f,0.145147f},{0.015307f,-0.29417f,0.141119f}, - {0.0150041f,-0.294165f,0.141517f},{0.0141429f,-0.298107f,0.140834f},{0.0174212f,-0.286329f,0.1423f}, - {0.0161629f,-0.290221f,0.141811f},{0.0164424f,-0.290226f,0.141416f},{0.0114006f,-0.305963f,0.14071f}, - {0.0106866f,-0.309927f,0.140011f},{0.0117799f,-0.30597f,0.140283f},{0.0125814f,-0.302024f,0.14098f}, - {0.0129503f,-0.302035f,0.14056f},{0.0138012f,-0.298097f,0.141246f},{0.00963024f,-0.322165f,0.140526f}, - {0.00968708f,-0.318066f,0.140168f},{0.0091952f,-0.318055f,0.140649f},{0.0099197f,-0.313966f,0.139934f}, - {0.0102596f,-0.309914f,0.140442f},{0.00946264f,-0.313954f,0.140382f},{0.00907526f,-0.322157f,0.141031f}, - {0.0095489f,-0.326264f,0.140876f},{0.00894343f,-0.326258f,0.141413f},{0.00945311f,-0.330364f,0.141203f}, - {0.00933687f,-0.334468f,0.14148f},{0.00879579f,-0.33036f,0.141773f},{0.0086246f,-0.334465f,0.142088f}, - {0.00922107f,-0.338577f,0.141665f},{0.00845004f,-0.338577f,0.142301f},{0.0176856f,-0.286338f,0.141921f}, - {0.0263793f,-0.264f,0.147802f},{0.0259023f,-0.264f,0.148593f},{0.0244885f,-0.267734f,0.147557f}, - {0.0229936f,-0.271437f,0.146522f},{0.0184899f,-0.282562f,0.143511f},{0.0214828f,-0.275137f,0.145501f}, - {0.0146321f,-0.294177f,0.14188f},{0.0170843f,-0.286341f,0.142644f},{0.0158117f,-0.290234f,0.142162f}, - {0.010968f,-0.305972f,0.141112f},{0.0121699f,-0.302034f,0.141368f},{0.0134094f,-0.298108f,0.141622f}, - {0.0086637f,-0.31806f,0.141107f},{0.00980481f,-0.309921f,0.140857f},{0.00897481f,-0.31396f,0.140813f}, - {0.00849863f,-0.32216f,0.141523f},{0.00832061f,-0.32626f,0.14194f},{0.00812583f,-0.330362f,0.142335f}, - {0.00790535f,-0.334466f,0.142688f},{0.00767878f,-0.338577f,0.142938f},{0.0199715f,-0.278839f,0.144489f}, - {0.0254953f,-0.264f,0.148828f},{0.0239945f,-0.267945f,0.147747f},{0.0224149f,-0.271858f,0.146665f}, - {0.0176882f,-0.283628f,0.143502f},{0.0208215f,-0.275768f,0.145592f},{0.0192329f,-0.279683f,0.144529f}, - {0.0136618f,-0.295955f,0.142081f},{0.0162503f,-0.287664f,0.14274f},{0.0149457f,-0.2918f,0.142346f}, - {0.00869072f,-0.31263f,0.141186f},{0.00973903f,-0.308401f,0.141305f},{0.0110356f,-0.304248f,0.141581f}, - {0.00795144f,-0.321265f,0.141896f},{0.0081943f,-0.316941f,0.14144f},{0.00772122f,-0.325589f,0.142378f}, - {0.00747253f,-0.329914f,0.142842f},{0.00719397f,-0.334241f,0.143263f},{0.00690556f,-0.338577f,0.143577f}, - {0.0123399f,-0.300098f,0.141831f},{0.0250324f,-0.264f,0.148916f},{0.0235306f,-0.267971f,0.147857f}, - {0.0219498f,-0.271889f,0.146794f},{0.0172517f,-0.283688f,0.143711f},{0.0203651f,-0.275809f,0.14574f}, - {0.0132021f,-0.296012f,0.142332f},{0.0158114f,-0.287719f,0.142927f},{0.0144807f,-0.291851f,0.142544f}, - {0.0092687f,-0.308457f,0.141666f},{0.0105497f,-0.304299f,0.141886f},{0.0118813f,-0.300157f,0.142106f}, - {0.0073368f,-0.321297f,0.142324f},{0.00759572f,-0.316973f,0.141811f},{0.00819435f,-0.312673f,0.141567f}, - {0.00708183f,-0.325613f,0.142866f},{0.00678804f,-0.32993f,0.143377f},{0.00646507f,-0.334249f,0.143843f}, - {0.00613003f,-0.338577f,0.144218f},{0.0187868f,-0.279733f,0.144697f},{0.00696068f,-0.326294f,0.143005f}, - {0.00667554f,-0.330384f,0.143491f},{0.00636198f,-0.334476f,0.143939f},{0.00748015f,-0.318115f,0.141999f}, - {0.00786981f,-0.314024f,0.141631f},{0.00722771f,-0.322205f,0.1425f},{0.0111819f,-0.302112f,0.142035f}, - {0.00875236f,-0.309993f,0.14162f},{0.014914f,-0.290321f,0.142686f},{0.0124511f,-0.298189f,0.142242f}, - {0.0137038f,-0.294261f,0.142453f},{0.0175985f,-0.282633f,0.143972f},{0.0190677f,-0.278896f,0.144928f}, - {0.0162018f,-0.286425f,0.143129f},{0.0205663f,-0.275179f,0.145919f},{0.022067f,-0.271464f,0.146916f}, - {0.0235578f,-0.267747f,0.14792f},{0.00994863f,-0.306047f,0.141826f},{0.00603944f,-0.338577f,0.144293f}, - {0.00744254f,-0.272455f,0.145994f},{0.015865f,-0.268304f,0.147531f},{0.0083666f,-0.268397f,0.146789f}, - {0.000311244f,-0.272638f,0.144934f},{0.000930332f,-0.268488f,0.145573f},{-0.00667554f,-0.272193f,0.143491f}, - {0.00158091f,-0.264f,0.146182f},{-0.0063617f,-0.268101f,0.143935f},{0.00932143f,-0.264f,0.147589f}, - {-0.00603944f,-0.264f,0.144293f},{0.00654234f,-0.276379f,0.145204f},{0.00567271f,-0.28029f,0.144415f}, - {0.0134133f,-0.276103f,0.14569f},{0.00989537f,-0.287869f,0.143217f},{0.0110779f,-0.283807f,0.143908f}, - {0.00388505f,-0.28841f,0.143059f},{0.0122295f,-0.279922f,0.144789f},{0.0072715f,-0.296503f,0.142814f}, - {1.23849e-006f,-0.301301f,0.142893f},{0.00593214f,-0.300722f,0.142703f},{0.00860427f,-0.292161f,0.142918f}, - {0.00327255f,-0.30924f,0.142485f},{0.00211647f,-0.31361f,0.14253f},{-0.00133631f,-0.305494f,0.142894f}, - {0.00459153f,-0.304916f,0.142593f},{-0.00836678f,-0.334185f,0.146789f},{-0.00093054f,-0.334094f,0.145573f}, - {-0.000310969f,-0.329944f,0.144934f},{0.00135717f,-0.317858f,0.142953f},{-0.00485039f,-0.318318f,0.143617f}, - {-0.00158091f,-0.338577f,0.146182f},{0.000284983f,-0.325928f,0.144284f},{-0.00744232f,-0.330127f,0.145994f}, - {-0.0171357f,-0.338577f,0.148501f},{-0.0158652f,-0.334277f,0.147532f},{0.000835711f,-0.321928f,0.143615f}, - {-0.00654153f,-0.326203f,0.145205f},{-0.00568021f,-0.322295f,0.144405f},{-0.00265603f,-0.309815f,0.142905f}, - {-0.00387587f,-0.314151f,0.143071f},{0.00267273f,-0.292745f,0.142876f},{0.00133739f,-0.297082f,0.142892f}, - {0.00483092f,-0.284266f,0.143642f},{0.0146267f,-0.272271f,0.1466f},{0.0171357f,-0.264f,0.148501f}, - {-0.0069607f,-0.276283f,0.143005f},{-0.000284018f,-0.276654f,0.144284f},{-0.00722775f,-0.280372f,0.1425f}, - {-0.000847135f,-0.280656f,0.143625f},{-0.00746803f,-0.284462f,0.141989f},{-0.00138663f,-0.284723f,0.142978f}, - {-0.00787057f,-0.288553f,0.141632f},{-0.00210321f,-0.288949f,0.142519f},{-0.00875939f,-0.292582f,0.141625f}, - {-0.00324421f,-0.293326f,0.142456f},{-0.00994211f,-0.296532f,0.141827f},{-0.023562f,-0.334828f,0.147921f}, - {-0.0249766f,-0.338577f,0.148916f},{-0.00458966f,-0.29766f,0.142591f},{-0.0111906f,-0.300462f,0.142034f}, - {-0.0124586f,-0.304385f,0.142239f},{-0.00592971f,-0.30188f,0.142704f},{-0.0136985f,-0.308317f,0.142455f}, - {-0.00727121f,-0.306073f,0.142816f},{-0.0149126f,-0.312257f,0.142682f},{-0.00859914f,-0.310392f,0.142945f}, - {-0.0162055f,-0.316149f,0.143141f},{-0.0098903f,-0.314695f,0.143228f},{-0.0175985f,-0.319944f,0.143972f}, - {-0.0110874f,-0.31878f,0.143884f},{-0.0190677f,-0.323681f,0.144928f},{-0.012233f,-0.322664f,0.144779f}, - {-0.0205663f,-0.327398f,0.145919f},{-0.0134127f,-0.326479f,0.14569f},{-0.0220671f,-0.331113f,0.146916f}, - {-0.0146265f,-0.330311f,0.1466f},{-0.00932143f,-0.338577f,0.147589f},{-0.00690312f,-0.264f,0.143579f}, - {-0.00719191f,-0.268335f,0.143259f},{-0.00746979f,-0.272663f,0.142843f},{-0.00814762f,-0.285643f,0.141414f}, - {-0.0077197f,-0.276988f,0.142379f},{-0.00793083f,-0.281312f,0.141883f},{-0.0110361f,-0.298329f,0.141582f}, - {-0.0123542f,-0.302474f,0.141829f},{-0.00871456f,-0.289949f,0.141206f},{-0.00976951f,-0.294168f,0.141335f}, - {-0.0162476f,-0.314917f,0.14273f},{-0.0149252f,-0.310786f,0.142321f},{-0.0136614f,-0.306622f,0.142081f}, - {-0.0192347f,-0.322891f,0.144536f},{-0.0176916f,-0.318943f,0.143534f},{-0.0208212f,-0.326807f,0.145595f}, - {-0.022413f,-0.330719f,0.146665f},{-0.0239981f,-0.33463f,0.147749f},{-0.0254927f,-0.338577f,0.148829f}, - {-0.00767576f,-0.264f,0.142941f},{-0.00790232f,-0.268111f,0.142685f},{-0.00812312f,-0.272215f,0.142338f}, - {-0.00864847f,-0.284517f,0.1411f},{-0.00831807f,-0.276317f,0.141942f},{-0.00849626f,-0.280417f,0.141525f}, - {-0.0109591f,-0.296607f,0.141114f},{-0.00897354f,-0.288618f,0.140816f},{-0.00981108f,-0.292654f,0.140864f}, - {-0.0146249f,-0.308402f,0.141884f},{-0.0134151f,-0.304467f,0.141621f},{-0.0121769f,-0.30054f,0.141369f}, - {-0.0184881f,-0.320015f,0.143513f},{-0.0158082f,-0.312344f,0.142159f},{-0.0170869f,-0.316233f,0.142657f}, - {-0.0199696f,-0.323738f,0.144491f},{-0.0214809f,-0.32744f,0.145503f},{-0.0229915f,-0.33114f,0.146524f}, - {-0.0244911f,-0.334841f,0.147559f},{-0.0259001f,-0.338577f,0.148595f},{-0.00844643f,-0.264f,0.142304f}, - {-0.0086212f,-0.268112f,0.142086f},{-0.00879266f,-0.272217f,0.141776f},{-0.00917932f,-0.284522f,0.140643f}, - {-0.00894054f,-0.27632f,0.141415f},{-0.0113914f,-0.296616f,0.140713f},{-0.00946126f,-0.288623f,0.140385f}, - {-0.0102671f,-0.292661f,0.14045f},{-0.0149971f,-0.308414f,0.141521f},{-0.0138071f,-0.304478f,0.141245f}, - {-0.0125887f,-0.30055f,0.140981f},{-0.0188214f,-0.320025f,0.143167f},{-0.0161597f,-0.312357f,0.14181f}, - {-0.0174245f,-0.316245f,0.142314f},{-0.0203004f,-0.323745f,0.144141f},{-0.0218097f,-0.327445f,0.145149f}, - {-0.0233168f,-0.331143f,0.146167f},{-0.0248099f,-0.334842f,0.147201f},{-0.0262067f,-0.338577f,0.148241f}, - {-0.0090726f,-0.280421f,0.141033f},{-0.00921688f,-0.264f,0.141668f},{-0.00933302f,-0.268109f,0.141483f}, - {-0.00944958f,-0.272213f,0.141206f},{-0.00968445f,-0.284511f,0.140171f},{-0.00954568f,-0.276314f,0.140879f}, - {-0.0117779f,-0.296607f,0.140285f},{-0.00991732f,-0.288611f,0.139936f},{-0.0106844f,-0.29265f,0.140013f}, - {-0.0153055f,-0.308407f,0.141121f},{-0.0141412f,-0.304471f,0.140836f},{-0.0129485f,-0.300542f,0.140562f}, - {-0.0190685f,-0.320019f,0.142768f},{-0.0176844f,-0.316239f,0.141924f},{-0.016441f,-0.312351f,0.141419f}, - {-0.0205358f,-0.32374f,0.143733f},{-0.0220341f,-0.32744f,0.144732f},{-0.0235282f,-0.331138f,0.145742f}, - {-0.0250051f,-0.334839f,0.146769f},{-0.0263788f,-0.338577f,0.147805f},{-0.00962732f,-0.280413f,0.140529f}, - {-0.00976429f,-0.268106f,0.141114f},{-0.00968775f,-0.264f,0.141279f},{-0.00995451f,-0.280402f,0.140217f}, - {-0.00990606f,-0.276306f,0.140549f},{-0.00984421f,-0.272207f,0.140856f},{-0.0109184f,-0.292635f,0.13974f}, - {-0.00997907f,-0.284498f,0.139878f},{-0.0143137f,-0.304457f,0.140577f},{-0.01314f,-0.300528f,0.140298f}, - {-0.0119892f,-0.296593f,0.140016f},{-0.0178005f,-0.316228f,0.141673f},{-0.0165744f,-0.312338f,0.141169f}, - {-0.015459f,-0.308394f,0.140867f},{-0.0206269f,-0.323731f,0.143469f},{-0.0191718f,-0.320009f,0.142511f}, - {-0.0221132f,-0.327432f,0.144461f},{-0.0235942f,-0.331132f,0.145464f},{-0.0250554f,-0.334836f,0.146485f}, - {-0.0264087f,-0.338577f,0.147518f},{-0.0101788f,-0.288596f,0.139657f},{-0.0137161f,-0.302478f,0.140288f}, - {-0.0124851f,-0.298329f,0.140002f},{-0.0113146f,-0.294164f,0.139715f},{-0.0103804f,-0.28994f,0.139538f}, - {-0.00997452f,-0.285632f,0.139665f},{-0.00994023f,-0.281304f,0.140012f},{-0.00991203f,-0.276982f,0.140375f}, - {-0.009849f,-0.272659f,0.140706f},{-0.00976769f,-0.268332f,0.140986f},{-0.00968775f,-0.264f,0.141169f}, - {-0.014938f,-0.306628f,0.140581f},{-0.0161103f,-0.310795f,0.140863f},{-0.0173564f,-0.314927f,0.141293f}, - {-0.0187613f,-0.318949f,0.142077f},{-0.0202782f,-0.322893f,0.143048f},{-0.021842f,-0.326806f,0.144073f}, - {-0.0234057f,-0.330714f,0.145113f},{-0.024951f,-0.334625f,0.146173f},{-0.0263814f,-0.338577f,0.147244f}, - {-0.00976336f,-0.268582f,0.140775f},{-0.00968775f,-0.264f,0.140979f},{-0.00990978f,-0.282301f,0.139723f}, - {-0.00989796f,-0.27773f,0.140113f},{-0.00983969f,-0.273158f,0.140469f},{-0.0106101f,-0.291415f,0.139359f}, - {-0.0117247f,-0.295853f,0.139609f},{-0.00998742f,-0.286881f,0.139387f},{-0.0142908f,-0.304641f,0.140193f}, - {-0.0155467f,-0.309044f,0.140484f},{-0.0129908f,-0.300252f,0.139902f},{-0.0197978f,-0.321941f,0.142487f}, - {-0.0182285f,-0.317743f,0.141521f},{-0.0168071f,-0.313441f,0.140836f},{-0.0214356f,-0.326094f,0.143538f}, - {-0.0230806f,-0.330239f,0.14461f},{-0.0247084f,-0.334386f,0.145702f},{-0.0262125f,-0.338577f,0.146805f}, - {-0.00974593f,-0.268576f,0.140582f},{-0.00968775f,-0.264f,0.140788f},{-0.00985594f,-0.282277f,0.139537f}, - {-0.00985469f,-0.277712f,0.139924f},{-0.00980831f,-0.273146f,0.140278f},{-0.0116247f,-0.295818f,0.13941f}, - {-0.00992109f,-0.28685f,0.139202f},{-0.0141594f,-0.304602f,0.139977f},{-0.0154002f,-0.309003f,0.140259f}, - {-0.0128748f,-0.300215f,0.139695f},{-0.0195912f,-0.321909f,0.142214f},{-0.0180446f,-0.317704f,0.141269f}, - {-0.0166436f,-0.3134f,0.140601f},{-0.021206f,-0.326069f,0.143245f},{-0.0228275f,-0.330222f,0.144296f}, - {-0.0244304f,-0.334378f,0.145365f},{-0.0259067f,-0.338577f,0.146446f},{-0.0105278f,-0.291381f,0.139169f}, - {-0.00972275f,-0.268569f,0.140397f},{-0.00968775f,-0.264f,0.140597f},{-0.00978412f,-0.282252f,0.139372f}, - {-0.0097971f,-0.277693f,0.139752f},{-0.00976655f,-0.273133f,0.140099f},{-0.0104201f,-0.291345f,0.139009f}, - {-0.0114944f,-0.295781f,0.139248f},{-0.00983335f,-0.286819f,0.139043f},{-0.013988f,-0.304563f,0.139811f}, - {-0.0152086f,-0.308962f,0.14009f},{-0.0127235f,-0.300177f,0.13953f},{-0.01932f,-0.321876f,0.142022f}, - {-0.017804f,-0.317666f,0.141087f},{-0.0164298f,-0.313358f,0.140429f},{-0.0209031f,-0.326044f,0.143041f}, - {-0.0224922f,-0.330205f,0.144081f},{-0.0240607f,-0.334369f,0.145139f},{-0.0254987f,-0.338577f,0.146209f}, - {0.0240512f,-0.268205f,0.145139f},{0.0254987f,-0.264f,0.146209f},{0.0208987f,-0.276531f,0.143038f}, - {0.0224907f,-0.272372f,0.144081f},{0.0164319f,-0.289223f,0.14044f},{0.015224f,-0.29362f,0.140101f}, - {0.0177924f,-0.284903f,0.141053f},{0.0127141f,-0.302398f,0.139531f},{0.0114783f,-0.306793f,0.139232f}, - {0.0139803f,-0.298012f,0.139813f},{0.00981234f,-0.320325f,0.139389f},{0.00988648f,-0.315765f,0.139069f}, - {0.0103884f,-0.311233f,0.138993f},{0.00979575f,-0.324884f,0.139753f},{0.00976673f,-0.329444f,0.1401f}, - {0.00972076f,-0.334007f,0.140404f},{0.00968775f,-0.338577f,0.140597f},{0.0193145f,-0.280697f,0.142013f}, - {0.0244211f,-0.268196f,0.145365f},{0.0259067f,-0.264f,0.146446f},{0.0195856f,-0.280665f,0.142206f}, - {0.0212016f,-0.276506f,0.143242f},{0.0228261f,-0.272354f,0.144296f},{0.016646f,-0.289182f,0.140613f}, - {0.0154158f,-0.29358f,0.14027f},{0.0180326f,-0.284865f,0.141234f},{0.0116084f,-0.306756f,0.139394f}, - {0.0128655f,-0.30236f,0.139695f},{0.0141518f,-0.297973f,0.13998f},{0.0098846f,-0.320299f,0.139554f}, - {0.0099743f,-0.315733f,0.139229f},{0.0104962f,-0.311197f,0.139152f},{0.00985341f,-0.324865f,0.139926f}, - {0.00980859f,-0.329431f,0.140279f},{0.0097442f,-0.334001f,0.140589f},{0.00968775f,-0.338577f,0.140788f}, - {0.0246992f,-0.268187f,0.145701f},{0.0262125f,-0.264f,0.146805f},{0.019792f,-0.280632f,0.142478f}, - {0.0214312f,-0.276481f,0.143536f},{0.0230793f,-0.272337f,0.144611f},{0.0155626f,-0.293539f,0.140495f}, - {0.0182163f,-0.284826f,0.141486f},{0.0117083f,-0.30672f,0.139593f},{0.0129816f,-0.302322f,0.139903f}, - {0.0142832f,-0.297934f,0.140196f},{0.00993888f,-0.320275f,0.139741f},{0.0100406f,-0.315703f,0.139415f}, - {0.0105787f,-0.311163f,0.139342f},{0.00989672f,-0.324847f,0.140115f},{0.00984006f,-0.329419f,0.140471f}, - {0.00976183f,-0.333995f,0.140782f},{0.00968775f,-0.338577f,0.140979f},{0.0168098f,-0.289141f,0.140849f}, - {0.0264087f,-0.264f,0.147518f},{0.0221132f,-0.275145f,0.144461f},{0.0235942f,-0.271445f,0.145464f}, - {0.0250554f,-0.267741f,0.146485f},{0.0178005f,-0.28635f,0.141673f},{0.0165745f,-0.290239f,0.141169f}, - {0.0206269f,-0.278846f,0.143469f},{0.0191717f,-0.282568f,0.142511f},{0.01314f,-0.302049f,0.140298f}, - {0.0143137f,-0.29812f,0.140577f},{0.015459f,-0.294183f,0.140867f},{0.0101788f,-0.313981f,0.139657f}, - {0.0109184f,-0.309942f,0.13974f},{0.0119892f,-0.305984f,0.140016f},{0.00995447f,-0.322175f,0.140217f}, - {0.00997902f,-0.318079f,0.139878f},{0.00990604f,-0.326272f,0.140549f},{0.0098442f,-0.33037f,0.140856f}, - {0.00976429f,-0.334471f,0.141114f},{0.00968775f,-0.338577f,0.141279f},{0.0249437f,-0.267949f,0.146173f}, - {0.0263814f,-0.264f,0.147244f},{0.0202741f,-0.279681f,0.143041f},{0.0218394f,-0.27577f,0.144071f}, - {0.023405f,-0.271862f,0.145114f},{0.0173571f,-0.287654f,0.141303f},{0.0161317f,-0.291791f,0.140885f}, - {0.0187523f,-0.283621f,0.14205f},{0.0136985f,-0.300094f,0.140292f},{0.0124827f,-0.304247f,0.140001f}, - {0.0149357f,-0.295948f,0.140582f},{0.010352f,-0.31264f,0.139523f},{0.0112762f,-0.308404f,0.139687f}, - {0.00995919f,-0.321273f,0.140024f},{0.010024f,-0.31695f,0.139691f},{0.00991129f,-0.325595f,0.140376f}, - {0.00984923f,-0.329918f,0.140707f},{0.00968775f,-0.338577f,0.141169f},{0.00976681f,-0.334244f,0.140992f}, - {-0.00379135f,-0.113384f,0.144903f},{-0.00496458f,-0.113745f,0.14459f},{0.00742307f,-0.113263f,0.147291f}, - {-0.00257039f,-0.113263f,0.145216f},{-0.00603944f,-0.114327f,0.144293f},{0.00240499f,-0.113263f,0.146356f}, - {0.0211541f,-0.215517f,0.148776f},{0.0173396f,-0.167133f,0.148518f},{0.013533f,-0.118851f,0.148143f}, - {0.0132893f,-0.117569f,0.148115f},{0.0127783f,-0.116377f,0.148054f},{0.0120253f,-0.115321f,0.147961f}, - {0.0110634f,-0.114448f,0.147836f},{0.00994277f,-0.113799f,0.14768f},{0.00870927f,-0.113398f,0.147496f}, - {0.0123416f,-0.113525f,0.145204f},{0.0109102f,-0.112615f,0.145018f},{0.0135295f,-0.114734f,0.145346f}, - {0.0164058f,-0.15205f,0.14564f},{0.0192822f,-0.189366f,0.145867f},{0.0221586f,-0.226683f,0.146027f}, - {0.00932212f,-0.112054f,0.144792f},{0.00765064f,-0.111865f,0.144531f},{-0.00968775f,-0.119322f,0.140407f}, - {-0.00949318f,-0.117633f,0.140468f},{-0.00543154f,-0.112587f,0.141666f},{-0.00387196f,-0.112048f,0.142086f}, - {-0.00892517f,-0.116038f,0.140645f},{-0.0080214f,-0.114625f,0.14092f},{-0.00683431f,-0.113456f,0.141269f}, - {-0.00223012f,-0.111865f,0.142505f},{-0.00968775f,-0.119322f,0.141279f},{0.00268915f,-0.111865f,0.144987f}, - {-0.00223012f,-0.111865f,0.14386f},{0.00765064f,-0.111865f,0.145911f},{0.0143331f,-0.116009f,0.145639f}, - {0.0147899f,-0.117166f,0.146726f},{0.0148426f,-0.117347f,0.146158f},{0.0150857f,-0.118743f,0.146754f}, - {0.014171f,-0.115703f,0.146666f},{0.0132538f,-0.1144f,0.146574f},{0.0120868f,-0.113328f,0.14645f}, - {0.0107201f,-0.112525f,0.146296f},{0.00921907f,-0.112032f,0.146114f},{-0.00815064f,-0.114787f,0.142549f}, - {-0.00695586f,-0.113553f,0.14283f},{-0.00391721f,-0.112058f,0.143508f},{-0.00552233f,-0.112631f,0.143157f}, - {-0.0089918f,-0.116176f,0.141854f},{-0.00951028f,-0.117706f,0.141426f},{-0.00632699f,-0.113829f,0.144055f}, - {-0.0068323f,-0.113789f,0.143638f},{-0.00732043f,-0.114001f,0.143234f},{-0.00776225f,-0.114347f,0.14287f}, - {0.0235779f,-0.227685f,0.147426f},{0.0219204f,-0.216179f,0.148625f},{0.0224876f,-0.216137f,0.148085f}, - {0.0179164f,-0.155057f,0.147043f},{0.0149745f,-0.118746f,0.1473f},{0.0186837f,-0.167425f,0.147841f}, - {0.0140869f,-0.118809f,0.148094f},{0.0180963f,-0.167468f,0.148384f},{0.0146193f,-0.11877f,0.147797f}, - {0.0207472f,-0.191371f,0.147267f},{0.00748972f,-0.112274f,0.146886f},{0.00897658f,-0.112435f,0.147115f}, - {0.00911758f,-0.112116f,0.146645f},{0.0103998f,-0.112887f,0.147311f},{0.0119652f,-0.113376f,0.146998f}, - {0.0106014f,-0.112592f,0.146835f},{0.0128307f,-0.114648f,0.147613f},{0.0140507f,-0.11572f,0.147224f}, - {0.0131339f,-0.114435f,0.147128f},{0.0146743f,-0.117179f,0.147286f},{0.0124497f,-0.114951f,0.147903f}, - {0.0113986f,-0.114003f,0.14777f},{0.0138348f,-0.117405f,0.148064f},{0.0143101f,-0.117272f,0.147775f}, - {0.013274f,-0.116101f,0.148f},{0.00743905f,-0.112748f,0.147194f},{0.00883688f,-0.112873f,0.14741f}, - {0.00756687f,-0.111963f,0.146419f},{0.0101719f,-0.1133f,0.147604f},{0.0137111f,-0.115877f,0.147711f}, - {0.0117086f,-0.113636f,0.147479f},{0.00254212f,-0.112073f,0.145696f},{0.0024474f,-0.112539f,0.146152f}, - {-0.00239822f,-0.112048f,0.14453f},{-0.00252701f,-0.112586f,0.145044f},{-0.00405957f,-0.11229f,0.14418f}, - {-0.00550952f,-0.113281f,0.144258f},{-0.00559184f,-0.112863f,0.143809f},{-0.00407172f,-0.112743f,0.14463f}, - {0.022887f,-0.227099f,0.146255f},{0.0233314f,-0.227063f,0.14672f},{0.0174497f,-0.151481f,0.14634f}, - {0.0203893f,-0.189252f,0.146565f},{0.0199559f,-0.189288f,0.146102f},{0.0170273f,-0.151517f,0.145879f}, - {-0.0123416f,-0.489052f,0.145204f},{-0.0109102f,-0.489962f,0.145018f},{-0.0135295f,-0.487844f,0.145346f}, - {-0.0164058f,-0.450527f,0.14564f},{-0.0192822f,-0.413211f,0.145867f},{-0.0221586f,-0.375894f,0.146027f}, - {-0.00932212f,-0.490523f,0.144792f},{-0.00765064f,-0.490713f,0.144531f},{0.00968775f,-0.483255f,0.140407f}, - {0.00949318f,-0.484944f,0.140468f},{0.00543154f,-0.48999f,0.141666f},{0.00387196f,-0.49053f,0.142086f}, - {0.00892517f,-0.486539f,0.140645f},{0.0080214f,-0.487952f,0.14092f},{0.00683431f,-0.489121f,0.141269f}, - {0.00223012f,-0.490713f,0.142505f},{0.00379135f,-0.489193f,0.144903f},{0.00496458f,-0.488833f,0.14459f}, - {-0.00742307f,-0.489314f,0.147291f},{0.00257039f,-0.489314f,0.145216f},{0.00603944f,-0.48825f,0.144293f}, - {-0.00240499f,-0.489314f,0.146356f},{-0.0211541f,-0.387061f,0.148776f},{-0.0173396f,-0.435444f,0.148518f}, - {-0.013533f,-0.483726f,0.148143f},{-0.0132913f,-0.485001f,0.148115f},{-0.0127821f,-0.486194f,0.148055f}, - {-0.0120287f,-0.487252f,0.147962f},{-0.0110706f,-0.488124f,0.147837f},{-0.00994698f,-0.488776f,0.14768f}, - {-0.00871793f,-0.489178f,0.147497f},{0.00968775f,-0.483255f,0.141279f},{-0.00268915f,-0.490713f,0.144987f}, - {-0.00765064f,-0.490713f,0.145911f},{0.00223012f,-0.490713f,0.14386f},{-0.0143331f,-0.486568f,0.145639f}, - {-0.014793f,-0.4854f,0.146726f},{-0.0148426f,-0.48523f,0.146158f},{-0.0150857f,-0.483834f,0.146754f}, - {-0.014174f,-0.486869f,0.146667f},{-0.0132606f,-0.488168f,0.146575f},{-0.0120925f,-0.489246f,0.146451f}, - {-0.0107278f,-0.490048f,0.146297f},{-0.00922792f,-0.490544f,0.146115f},{0.00815064f,-0.48779f,0.142549f}, - {0.00695586f,-0.489024f,0.14283f},{0.00552233f,-0.489946f,0.143157f},{0.00391721f,-0.490519f,0.143508f}, - {0.0089918f,-0.486401f,0.141854f},{0.00951028f,-0.484871f,0.141426f},{0.0068323f,-0.488788f,0.143638f}, - {0.00632699f,-0.488748f,0.144055f},{0.00732043f,-0.488576f,0.143234f},{0.00776225f,-0.48823f,0.14287f}, - {-0.0235779f,-0.374892f,0.147426f},{-0.0219204f,-0.386398f,0.148625f},{-0.0224876f,-0.38644f,0.148085f}, - {-0.0179164f,-0.447521f,0.147043f},{-0.0149745f,-0.483831f,0.1473f},{-0.0186837f,-0.435152f,0.147841f}, - {-0.0140869f,-0.483769f,0.148094f},{-0.0180963f,-0.435109f,0.148384f},{-0.0146193f,-0.483807f,0.147797f}, - {-0.0207472f,-0.411206f,0.147267f},{-0.0137517f,-0.486695f,0.147682f},{-0.013838f,-0.485162f,0.148064f}, - {-0.0143462f,-0.485304f,0.147745f},{-0.0131473f,-0.488127f,0.147128f},{-0.0140617f,-0.486836f,0.147224f}, - {-0.0146779f,-0.485388f,0.147286f},{-0.0101903f,-0.48927f,0.147606f},{-0.0114133f,-0.488565f,0.147771f}, - {-0.00899738f,-0.490167f,0.147089f},{-0.00756687f,-0.490614f,0.146419f},{-0.00748972f,-0.490303f,0.146886f}, - {-0.0106218f,-0.489978f,0.146837f},{-0.0119815f,-0.489191f,0.146999f},{-0.00912889f,-0.490458f,0.146646f}, - {-0.0104352f,-0.489708f,0.147285f},{-0.00884706f,-0.489702f,0.147411f},{-0.0128697f,-0.487935f,0.147584f}, - {-0.0132839f,-0.486458f,0.148001f},{-0.00743905f,-0.489829f,0.147194f},{-0.0124617f,-0.487613f,0.147903f}, - {-0.0117456f,-0.488955f,0.147451f},{-0.00254212f,-0.490504f,0.145696f},{-0.0024474f,-0.490038f,0.146152f}, - {0.00239822f,-0.490529f,0.14453f},{0.00252701f,-0.489991f,0.145044f},{0.00405957f,-0.490287f,0.14418f}, - {0.00550952f,-0.489296f,0.144258f},{0.00559184f,-0.489714f,0.143809f},{0.00407172f,-0.489834f,0.14463f}, - {-0.0233314f,-0.375514f,0.14672f},{-0.022887f,-0.375478f,0.146255f},{-0.0170273f,-0.45106f,0.145879f}, - {-0.0174497f,-0.451096f,0.14634f},{-0.0203893f,-0.413325f,0.146565f},{-0.0199559f,-0.413289f,0.146102f}, - {0.0043568f,-0.299632f,0.127503f},{0.00383438f,-0.298639f,0.127503f},{0.00308638f,-0.297796f,0.127503f}, - {0.00216232f,-0.29716f,0.127503f},{0.00462734f,-0.301848f,0.127503f},{0.00462608f,-0.300722f,0.127503f}, - {0.00383806f,-0.303933f,0.127503f},{0.00435903f,-0.302939f,0.127503f},{0.00309213f,-0.304776f,0.127503f}, - {0.00216808f,-0.305415f,0.127503f},{0.00111857f,-0.305813f,0.127503f},{0.0011128f,-0.296762f,0.127503f}, - {-0.00150163f,-0.298964f,0.127503f},{-0.000787374f,-0.29861f,0.127503f},{-0.00211724f,-0.29946f,0.127503f}, - {-0.00254559f,-0.30013f,0.127503f},{-0.00276842f,-0.300894f,0.127503f},{-0.00276723f,-0.301689f,0.127503f}, - {-0.00254283f,-0.302452f,0.127503f},{-0.00210508f,-0.303112f,0.127503f},{-0.00150519f,-0.303628f,0.127503f}, - {-0.00078745f,-0.303974f,0.127503f},{-0.00254559f,-0.302447f,0.136825f},{-0.00276842f,-0.301683f,0.136825f}, - {-0.00150519f,-0.298949f,0.136825f},{-0.00276723f,-0.300888f,0.136825f},{-0.00210508f,-0.299465f,0.136825f}, - {-0.00078745f,-0.298603f,0.136825f},{-0.00254283f,-0.300125f,0.136825f},{-0.00211724f,-0.303117f,0.136825f}, - {-0.00150163f,-0.303613f,0.136825f},{-0.000787374f,-0.303967f,0.136825f},{0.00265777f,-0.322419f,0.127503f}, - {0.00225612f,-0.321638f,0.127503f},{0.00163414f,-0.321021f,0.127503f},{0.00266037f,-0.324145f,0.127503f}, - {0.00226719f,-0.324923f,0.127503f},{0.00279661f,-0.323289f,0.127503f},{0.00165072f,-0.325545f,0.127503f}, - {0.000869207f,-0.325946f,0.127503f},{0.000869207f,-0.320631f,0.127503f},{0.00265777f,-0.278419f,0.127503f}, - {0.00225612f,-0.277638f,0.127503f},{0.00163414f,-0.277021f,0.127503f},{0.00266037f,-0.280145f,0.127503f}, - {0.00279661f,-0.279289f,0.127503f},{0.00165072f,-0.281545f,0.127503f},{0.00226719f,-0.280923f,0.127503f}, - {0.000869207f,-0.281946f,0.127503f},{0.000869207f,-0.276631f,0.127503f},{0.14024f,0.0905829f,-0.141015f}, - {0.136285f,0.0947137f,-0.142188f},{0.141059f,0.0890842f,-0.140701f},{0.164944f,0.0609206f,-0.129448f}, - {0.166387f,0.0597515f,-0.12867f},{0.162134f,0.0647663f,-0.131224f},{0.121812f,0.11117f,-0.145366f}, - {0.121542f,0.1109f,-0.145713f},{0.12625f,0.10535f,-0.144944f},{0.13153f,0.100321f,-0.143429f}, - {0.135762f,0.095863f,-0.142366f},{0.130854f,0.0995405f,-0.144466f},{0.126104f,0.105142f,-0.145472f}, - {0.122103f,0.111436f,-0.145199f},{0.126512f,0.105627f,-0.144598f},{0.1268f,0.105898f,-0.144431f}, - {0.112085f,0.121672f,-0.147719f},{0.112073f,0.121686f,-0.147105f},{0.107472f,0.127074f,-0.147351f}, - {0.121386f,0.110705f,-0.146243f},{0.107827f,0.127376f,-0.148558f},{0.112579f,0.122056f,-0.148599f}, - {0.112283f,0.121818f,-0.148251f},{0.107534f,0.127127f,-0.148015f},{0.117758f,0.117092f,-0.148493f}, - {0.117549f,0.116806f,-0.148445f},{0.112883f,0.122308f,-0.148767f},{0.113146f,0.12253f,-0.14881f}, - {0.108275f,0.127755f,-0.148876f},{0.10853f,0.127972f,-0.148916f},{0.149108f,0.0801256f,-0.137702f}, - {0.145845f,0.0834412f,-0.138964f},{0.150634f,0.0777938f,-0.136973f},{0.14469f,0.0853356f,-0.13946f}, - {0.15542f,0.0721513f,-0.134725f},{0.153491f,0.0749577f,-0.135742f},{0.159928f,0.0662252f,-0.132375f}, - {0.160192f,0.0665236f,-0.132217f},{0.157834f,0.0698365f,-0.133582f},{0.169666f,0.0553525f,-0.126416f}, - {0.170589f,0.0547966f,-0.125923f},{0.178987f,0.0443625f,-0.119568f},{0.183567f,0.0389616f,-0.115753f}, - {0.182854f,0.040335f,-0.116543f},{0.17435f,0.0498296f,-0.123123f},{0.194531f,0.0265656f,-0.105516f}, - {0.19071f,0.0310716f,-0.109369f},{0.192523f,0.028401f,-0.107358f},{0.186816f,0.0356628f,-0.113046f}, - {0.201944f,0.0178247f,-0.0972923f},{0.201149f,0.0182303f,-0.0979722f},{0.205317f,0.0133161f,-0.0929223f}, - {0.196882f,0.0232619f,-0.102786f},{0.212441f,0.00544782f,-0.0837205f},{0.213321f,0.00387764f,-0.0821464f}, - {0.215761f,0.00153276f,-0.0788827f},{0.209376f,0.00852884f,-0.0876442f},{0.225146f,-0.009533f,-0.0634868f}, - {0.222116f,-0.00596092f,-0.0687614f},{0.224391f,-0.00917553f,-0.0644306f},{0.218987f,-0.00227125f,-0.0738949f}, - {0.220835f,-0.00498246f,-0.0705292f},{0.233609f,-0.0195123f,-0.0468636f},{0.231071f,-0.0170525f,-0.0517099f}, - {0.234185f,-0.0207242f,-0.0451124f},{0.227805f,-0.013201f,-0.0581535f},{0.239939f,-0.0275089f,-0.0315071f}, - {0.241084f,-0.0283265f,-0.0291439f},{0.238706f,-0.0255224f,-0.0351637f},{0.236213f,-0.0225835f,-0.041072f}, - {0.247512f,-0.0359059f,-0.010468f},{0.245489f,-0.0335205f,-0.0167907f},{0.247339f,-0.0362343f,-0.0102766f}, - {0.242572f,-0.0306138f,-0.0245261f},{0.249469f,-0.0387463f,-0.0030353f},{0.25119f,-0.0402428f,0.00244111f}, - {0.249413f,-0.0381473f,-0.00405553f},{0.254843f,-0.0450829f,0.0189909f},{0.254367f,-0.0439888f,0.0156645f}, - {0.253221f,-0.0431703f,0.0116119f},{0.252842f,-0.0421905f,0.00901635f},{0.25143f,-0.0410583f,0.00426541f}, - {0.257032f,-0.0471308f,0.0291557f},{0.257585f,-0.0483159f,0.0337941f},{0.258169f,-0.0484718f,0.0359868f}, - {0.256297f,-0.0467975f,0.0263892f},{0.255764f,-0.0456361f,0.0223796f},{0.259175f,-0.0496578f,0.0428671f}, - {0.259671f,-0.0507748f,0.0485748f},{0.260048f,-0.0506878f,0.0497904f},{0.258709f,-0.0496406f,0.0411933f}, - {0.262173f,-0.0537259f,0.0848371f},{0.262476f,-0.0535502f,0.0918925f},{0.262408f,-0.0534705f,0.0848393f}, - {0.260789f,-0.0515609f,0.0567509f},{0.260474f,-0.0517219f,0.0559272f},{0.261618f,-0.0530714f,0.0705019f}, - {0.261426f,-0.0534542f,0.0704868f},{0.261775f,-0.0538661f,0.077694f},{0.262205f,-0.0532315f,0.0777923f}, - {0.261395f,-0.0522762f,0.0637421f},{0.261868f,-0.0528332f,0.0707579f},{0.261967f,-0.053483f,0.0777041f}, - {0.261122f,-0.0524859f,0.0632397f},{0.26171f,-0.054377f,0.0776733f},{0.262073f,-0.0551849f,0.084806f}, - {0.261917f,-0.0546204f,0.0848218f},{0.259477f,-0.051156f,0.0485442f},{0.258514f,-0.050021f,0.0411575f}, - {0.26136f,-0.0539645f,0.0704555f},{0.260929f,-0.0528684f,0.0632194f},{0.260863f,-0.0533778f,0.0631775f}, - {0.259408f,-0.0516629f,0.0484808f},{0.261911f,-0.0549937f,0.0703525f},{0.261411f,-0.0544042f,0.0630396f}, - {0.262441f,-0.055239f,0.0703047f},{0.261017f,-0.0539394f,0.0631135f},{0.261516f,-0.0545274f,0.0704077f}, - {0.262955f,-0.0552578f,0.0702734f},{0.263308f,-0.0556738f,0.0775525f},{0.263265f,-0.0560102f,0.0918925f}, - {0.263001f,-0.0558996f,0.0847721f},{0.263516f,-0.0559194f,0.0847617f},{0.263926f,-0.0557923f,0.0847568f}, - {0.263974f,-0.0558822f,0.0918925f},{0.263625f,-0.0559923f,0.0918925f},{0.264284f,-0.055683f,0.0918925f}, - {0.256101f,-0.0471759f,0.026343f},{0.237143f,-0.0242111f,-0.0383737f},{0.243346f,-0.0309933f,-0.0230178f}, - {0.24504f,-0.033523f,-0.0174448f},{0.239731f,-0.0278737f,-0.0315942f},{0.230894f,-0.0163116f,-0.0525331f}, - {0.228073f,-0.0129842f,-0.0580758f},{0.217143f,-0.000628865f,-0.0764381f},{0.209029f,0.00947049f,-0.088404f}, - {0.220614f,-0.00533134f,-0.0706439f},{0.220489f,-0.00577124f,-0.0708815f},{0.224052f,-0.0099734f,-0.0647696f}, - {0.205529f,0.0135974f,-0.0929293f},{0.198277f,0.0221487f,-0.101489f},{0.178826f,0.0450842f,-0.119856f}, - {0.174737f,0.0499061f,-0.122984f},{0.188082f,0.0336377f,-0.111682f},{0.20076f,0.0174918f,-0.098384f}, - {0.196643f,0.0229329f,-0.102924f},{0.196483f,0.0225343f,-0.103209f},{0.13126f,0.101171f,-0.14351f}, - {0.126738f,0.106503f,-0.144448f},{0.1222f,0.111854f,-0.145179f},{0.11225f,0.121856f,-0.146574f}, - {0.107533f,0.127126f,-0.147023f},{0.117445f,0.116929f,-0.145739f},{0.11765f,0.117219f,-0.145701f}, - {0.112831f,0.122369f,-0.146057f},{0.113092f,0.122593f,-0.146014f},{0.107472f,0.127075f,-0.147687f}, - {0.108274f,0.127755f,-0.146158f},{0.10853f,0.127972f,-0.146119f},{0.108041f,0.127557f,-0.146297f}, - {0.107823f,0.127372f,-0.146474f},{0.112534f,0.12211f,-0.146225f},{0.107652f,0.127227f,-0.146724f}, - {0.11715f,0.116666f,-0.145907f},{0.131245f,0.100046f,-0.143596f},{0.136004f,0.0944352f,-0.142353f}, - {0.140782f,0.0888017f,-0.140865f},{0.145571f,0.0831547f,-0.139127f},{0.150363f,0.0775033f,-0.137134f}, - {0.155152f,0.0718569f,-0.134885f},{0.164476f,0.0602748f,-0.129928f},{0.169209f,0.0546946f,-0.12689f}, - {0.164683f,0.0606183f,-0.129604f},{0.169409f,0.0550462f,-0.126571f},{0.174096f,0.0495195f,-0.123274f}, - {0.178736f,0.0440485f,-0.119717f},{0.183319f,0.0386437f,-0.1159f},{0.187838f,0.0333161f,-0.111826f}, - {0.192282f,0.0280757f,-0.107499f},{0.200914f,0.0178978f,-0.0981062f},{0.205084f,0.0129801f,-0.0930527f}, - {0.209147f,0.00818951f,-0.087771f},{0.213094f,0.00353502f,-0.0822693f},{0.216919f,-0.000974661f,-0.0765569f}, - {0.224172f,-0.00952736f,-0.0645409f},{0.227589f,-0.0135557f,-0.0582594f},{0.230857f,-0.0174099f,-0.0518113f}, - {0.233973f,-0.0210842f,-0.0452091f},{0.236933f,-0.0245736f,-0.0384656f},{0.247174f,-0.0376161f,-0.0107265f}, - {0.244746f,-0.0343736f,-0.017682f},{0.244864f,-0.0348929f,-0.0179263f},{0.242366f,-0.0309808f,-0.0246083f}, - {0.244835f,-0.033892f,-0.017522f},{0.247136f,-0.0366052f,-0.0103487f},{0.249268f,-0.039119f,-0.0031023f}, - {0.25123f,-0.0414326f,0.00420356f},{0.253023f,-0.0435461f,0.0115553f},{0.254646f,-0.0454601f,0.0189394f}, - {0.25739f,-0.0486953f,0.0337531f},{0.258444f,-0.0505263f,0.0410833f},{0.26028f,-0.0521038f,0.0559018f}, - {0.261981f,-0.0541092f,0.0848321f},{0.262065f,-0.0541415f,0.0918925f},{0.262228f,-0.0538242f,0.0918925f}, - {0.107655f,0.12723f,-0.14831f},{0.116874f,0.116405f,-0.146254f},{0.130989f,0.0997606f,-0.14394f}, - {0.135755f,0.0941412f,-0.142695f},{0.14054f,0.0884994f,-0.141205f},{0.145336f,0.0828442f,-0.139464f}, - {0.150136f,0.0771845f,-0.137469f},{0.154931f,0.0715299f,-0.135216f},{0.159714f,0.0658899f,-0.132703f}, - {0.173903f,0.0491597f,-0.123589f},{0.173863f,0.0488268f,-0.12407f},{0.17852f,0.0433355f,-0.120499f}, - {0.17855f,0.0436807f,-0.120026f},{0.18314f,0.0382681f,-0.116203f},{0.187665f,0.0329327f,-0.112124f}, - {0.192115f,0.0276847f,-0.10779f},{0.209044f,0.00734409f,-0.0884349f},{0.209305f,0.00703665f,-0.0888979f}, - {0.213277f,0.00235295f,-0.0833616f},{0.204936f,0.012567f,-0.0933231f},{0.209005f,0.00776938f,-0.0880336f}, - {0.212958f,0.00310807f,-0.0825239f},{0.216788f,-0.00140821f,-0.0768032f},{0.230834f,-0.0183499f,-0.0523423f}, - {0.231151f,-0.0187233f,-0.0527127f},{0.234287f,-0.0224207f,-0.046069f},{0.227474f,-0.0140076f,-0.0584789f}, - {0.230747f,-0.0178675f,-0.0520214f},{0.233868f,-0.0215472f,-0.0454095f},{0.236831f,-0.0250416f,-0.0386562f}, - {0.239634f,-0.0283465f,-0.0317747f},{0.242273f,-0.0314582f,-0.0247786f},{0.24705f,-0.0370908f,-0.0104982f}, - {0.249185f,-0.0396083f,-0.00324118f},{0.25115f,-0.0419253f,0.00407537f},{0.252945f,-0.0440419f,0.0114378f}, - {0.254571f,-0.0459587f,0.0188328f},{0.256028f,-0.0476769f,0.0262471f},{0.257318f,-0.0491986f,0.0336681f}, - {0.260213f,-0.052612f,0.0558492f},{0.262263f,-0.0554082f,0.077605f},{0.261986f,-0.054502f,0.0918925f}, - {0.117242f,0.116558f,-0.148277f},{0.116707f,0.116222f,-0.146785f},{0.135631f,0.0939085f,-0.143218f}, - {0.135703f,0.0938233f,-0.143822f},{0.14051f,0.0881545f,-0.142325f},{0.140426f,0.0882542f,-0.141725f}, - {0.145233f,0.0825863f,-0.13998f},{0.150043f,0.076914f,-0.137981f},{0.154849f,0.0712468f,-0.135723f}, - {0.159643f,0.0655943f,-0.133204f},{0.164416f,0.0599666f,-0.130423f},{0.169159f,0.0543739f,-0.127378f}, - {0.183121f,0.0379109f,-0.116668f},{0.183315f,0.0376819f,-0.117203f},{0.187862f,0.0323208f,-0.113104f}, - {0.187656f,0.0325635f,-0.112579f},{0.192116f,0.0273038f,-0.108236f},{0.196494f,0.022142f,-0.103644f}, - {0.20078f,0.0170882f,-0.0988083f},{0.204966f,0.0121524f,-0.0937362f},{0.213006f,0.00267239f,-0.0829128f}, - {0.216844f,-0.00185395f,-0.0771794f},{0.220553f,-0.00622672f,-0.0712445f},{0.224125f,-0.0104382f,-0.065119f}, - {0.227554f,-0.0144815f,-0.0588143f},{0.233962f,-0.0220378f,-0.0457157f},{0.236932f,-0.0255401f,-0.0389474f}, - {0.239741f,-0.0288523f,-0.0320505f},{0.242386f,-0.0319709f,-0.0250388f},{0.249313f,-0.0401392f,-0.00345334f}, - {0.249678f,-0.0405686f,-0.00369814f},{0.251652f,-0.0428967f,0.00365355f},{0.251283f,-0.0424614f,0.00387953f}, - {0.253082f,-0.0445827f,0.0112584f},{0.254711f,-0.0465038f,0.0186698f},{0.256171f,-0.0482259f,0.0261007f}, - {0.257465f,-0.049751f,0.0335382f},{0.258593f,-0.0510816f,0.04097f},{0.259559f,-0.0522207f,0.048384f}, - {0.260366f,-0.053172f,0.0557688f},{0.261866f,-0.0549408f,0.0776416f},{0.262004f,-0.0548614f,0.0918925f}, - {0.121422f,0.110663f,-0.146855f},{0.126152f,0.105086f,-0.146081f},{0.116731f,0.116194f,-0.147398f}, - {0.130914f,0.0994698f,-0.145073f},{0.145329f,0.0824721f,-0.140576f},{0.150152f,0.0767852f,-0.138571f}, - {0.154971f,0.0711034f,-0.136307f},{0.155264f,0.071138f,-0.136814f},{0.16008f,0.0654584f,-0.134283f}, - {0.159777f,0.0654364f,-0.133782f},{0.164562f,0.0597942f,-0.130993f},{0.169317f,0.0541872f,-0.127941f}, - {0.174034f,0.0486258f,-0.124624f},{0.178703f,0.0431205f,-0.121044f},{0.192334f,0.0270476f,-0.10875f}, - {0.192709f,0.0269844f,-0.109195f},{0.197108f,0.0217978f,-0.104581f},{0.196723f,0.0218725f,-0.104146f}, - {0.20102f,0.0168058f,-0.0992979f},{0.205216f,0.0118573f,-0.0942128f},{0.217125f,-0.00218501f,-0.0776135f}, - {0.217556f,-0.0023131f,-0.0779897f},{0.221282f,-0.00670683f,-0.0720263f},{0.220843f,-0.00656901f,-0.0716633f}, - {0.224424f,-0.0107914f,-0.0655221f},{0.227862f,-0.0148449f,-0.0592012f},{0.237264f,-0.025932f,-0.0392833f}, - {0.23774f,-0.0261128f,-0.0395744f},{0.240562f,-0.0294409f,-0.0326445f},{0.240081f,-0.0292527f,-0.0323688f}, - {0.242732f,-0.0323793f,-0.025339f},{0.245217f,-0.0353088f,-0.0182083f},{0.247532f,-0.038039f,-0.01099f}, - {0.253456f,-0.0450235f,0.0110514f},{0.255089f,-0.0469495f,0.0184819f},{0.255604f,-0.0471769f,0.0183189f}, - {0.257071f,-0.0489073f,0.0257854f},{0.256553f,-0.048676f,0.0259318f},{0.25785f,-0.050205f,0.0333884f}, - {0.258981f,-0.051539f,0.0408392f},{0.25995f,-0.0526811f,0.0482723f},{0.260759f,-0.0536348f,0.0556761f}, - {0.26247f,-0.0556528f,0.0847878f},{0.262314f,-0.055521f,0.0918925f},{0.262114f,-0.0552103f,0.0918925f}, - {0.12164f,0.110785f,-0.147384f},{0.12638f,0.105196f,-0.14661f},{0.116939f,0.116328f,-0.147929f}, - {0.131153f,0.0995673f,-0.145599f},{0.135953f,0.0939083f,-0.144345f},{0.140771f,0.0882269f,-0.142845f}, - {0.145601f,0.0825319f,-0.141092f},{0.150434f,0.0768324f,-0.139082f},{0.164876f,0.0598037f,-0.131488f}, - {0.170021f,0.0543241f,-0.128748f},{0.169642f,0.0541843f,-0.128429f},{0.174369f,0.0486105f,-0.125105f}, - {0.179048f,0.043093f,-0.121517f},{0.183671f,0.0376423f,-0.117667f},{0.188227f,0.0322693f,-0.113559f}, - {0.20184f,0.0168054f,-0.1f},{0.201414f,0.0167199f,-0.0997223f},{0.20562f,0.0117604f,-0.0946258f}, - {0.209718f,0.00692902f,-0.0892991f},{0.213699f,0.00223494f,-0.0837506f},{0.225331f,-0.0108931f,-0.0661002f}, - {0.224871f,-0.0109385f,-0.0658715f},{0.228316f,-0.0150011f,-0.0595366f},{0.231613f,-0.0188881f,-0.0530336f}, - {0.234755f,-0.0225937f,-0.0463752f},{0.243706f,-0.0325604f,-0.0257695f},{0.24322f,-0.0325744f,-0.0255992f}, - {0.24571f,-0.0355104f,-0.0184526f},{0.24803f,-0.0382467f,-0.0112184f},{0.25018f,-0.0407819f,-0.00391029f}, - {0.252159f,-0.0431152f,0.00345771f},{0.253967f,-0.0452467f,0.0108719f},{0.258371f,-0.0504397f,0.0332586f}, - {0.260015f,-0.0517904f,0.0406518f},{0.259505f,-0.0517766f,0.0407259f},{0.260475f,-0.0529213f,0.0481755f}, - {0.261286f,-0.0538771f,0.0555957f},{0.26194f,-0.0546482f,0.0629755f},{0.262793f,-0.0556544f,0.0775733f}, - {0.262905f,-0.0559313f,0.0918925f},{0.26258f,-0.0557625f,0.0918925f},{0.108037f,0.127554f,-0.148751f}, - {0.12195f,0.111007f,-0.147731f},{0.126697f,0.105409f,-0.146955f},{0.131477f,0.0997729f,-0.145943f}, - {0.136283f,0.0941057f,-0.144688f},{0.141109f,0.0884161f,-0.143185f},{0.145945f,0.0827128f,-0.141429f}, - {0.150786f,0.077005f,-0.139417f},{0.155622f,0.0713023f,-0.137145f},{0.160446f,0.0656145f,-0.134611f}, - {0.165249f,0.0599517f,-0.131812f},{0.175103f,0.0489424f,-0.125571f},{0.179652f,0.0441098f,-0.122344f}, - {0.179792f,0.043413f,-0.121975f},{0.174755f,0.0487422f,-0.125419f},{0.179441f,0.0432167f,-0.121826f}, - {0.18407f,0.0377581f,-0.117971f},{0.188634f,0.0323774f,-0.113856f},{0.193122f,0.0270848f,-0.109486f}, - {0.197527f,0.0218907f,-0.104866f},{0.206052f,0.0118387f,-0.0948962f},{0.206422f,0.0120131f,-0.0950266f}, - {0.210155f,0.00700034f,-0.0895618f},{0.214142f,0.00229945f,-0.0840052f},{0.218005f,-0.00225518f,-0.0782359f}, - {0.221737f,-0.00665528f,-0.072264f},{0.229166f,-0.0148059f,-0.059862f},{0.232332f,-0.0180071f,-0.0542297f}, - {0.23247f,-0.0187013f,-0.053345f},{0.228781f,-0.0149616f,-0.059756f},{0.232082f,-0.0188542f,-0.0532437f}, - {0.235229f,-0.0225652f,-0.0465757f},{0.238218f,-0.0260893f,-0.039765f},{0.241045f,-0.0294223f,-0.0328251f}, - {0.2462f,-0.0355006f,-0.0186126f},{0.248923f,-0.0381014f,-0.0114399f},{0.248524f,-0.0382409f,-0.0113678f}, - {0.250677f,-0.0407797f,-0.00404916f},{0.252658f,-0.0431164f,0.00332952f},{0.254469f,-0.045251f,0.0107545f}, - {0.256108f,-0.047184f,0.0182123f},{0.257578f,-0.0489169f,0.0256896f},{0.258879f,-0.0504515f,0.0331736f}, - {0.260987f,-0.0529367f,0.0481121f},{0.261799f,-0.0538939f,0.0555431f},{0.262453f,-0.0546661f,0.0629336f}, - {0.12226f,0.111251f,-0.147899f},{0.127011f,0.105649f,-0.147122f},{0.131794f,0.100009f,-0.146109f}, - {0.136604f,0.0943376f,-0.144853f},{0.141433f,0.0886439f,-0.143349f},{0.146273f,0.0829367f,-0.141592f}, - {0.151117f,0.077225f,-0.139579f},{0.155957f,0.0715183f,-0.137305f},{0.160784f,0.0658265f,-0.134769f}, - {0.16559f,0.0601597f,-0.131968f},{0.170366f,0.0545282f,-0.128902f},{0.184425f,0.0379506f,-0.118117f}, - {0.188991f,0.0325661f,-0.114f},{0.193483f,0.0272698f,-0.109627f},{0.197891f,0.0220721f,-0.105003f}, - {0.202207f,0.0169833f,-0.100134f},{0.203042f,0.0165301f,-0.0995149f},{0.210528f,0.00717136f,-0.0896885f}, - {0.214517f,0.00246719f,-0.0841281f},{0.218383f,-0.00209063f,-0.0783547f},{0.222117f,-0.0064938f,-0.0723786f}, - {0.225713f,-0.0107346f,-0.0662105f},{0.235619f,-0.0224148f,-0.0466724f},{0.23861f,-0.0259414f,-0.039857f}, - {0.241439f,-0.0292767f,-0.0329122f},{0.244102f,-0.032417f,-0.0258517f},{0.246597f,-0.0353593f,-0.0186898f}, - {0.247098f,-0.035418f,-0.0180672f},{0.251077f,-0.0406421f,-0.00411618f},{0.25306f,-0.0429804f,0.00326766f}, - {0.254872f,-0.0451164f,0.0106978f},{0.256512f,-0.0470508f,0.0181608f},{0.257983f,-0.0487849f,0.0256434f}, - {0.259285f,-0.0503206f,0.0331326f},{0.260422f,-0.0516605f,0.040616f},{0.261395f,-0.0528075f,0.0480815f}, - {0.262207f,-0.0537654f,0.0555177f},{0.262862f,-0.0545382f,0.0629134f},{0.263364f,-0.0551303f,0.0702583f}, - {0.263717f,-0.0555466f,0.0775425f},{0.122361f,0.111664f,-0.147965f},{0.126952f,0.106251f,-0.147226f}, - {0.131527f,0.100856f,-0.146277f},{0.136082f,0.0954854f,-0.145118f},{0.140613f,0.0901431f,-0.143752f}, - {0.145115f,0.0848342f,-0.142179f},{0.149585f,0.0795631f,-0.1404f},{0.154019f,0.0743346f,-0.138417f}, - {0.158414f,0.069153f,-0.136232f},{0.162764f,0.0640231f,-0.133846f},{0.167067f,0.0589495f,-0.131262f}, - {0.171319f,0.0539366f,-0.128482f},{0.175515f,0.0489885f,-0.125509f},{0.183727f,0.0393048f,-0.118992f}, - {0.187736f,0.0345778f,-0.115454f},{0.191676f,0.0299328f,-0.111734f},{0.195542f,0.0253738f,-0.107835f}, - {0.199332f,0.0209049f,-0.103761f},{0.206669f,0.0122532f,-0.0951008f},{0.21021f,0.00807804f,-0.0905224f}, - {0.213662f,0.00400799f,-0.0857837f},{0.217021f,4.68757e-005f,-0.080889f},{0.220285f,-0.00380184f,-0.0758426f}, - {0.223451f,-0.00753479f,-0.0706488f},{0.226516f,-0.0111487f,-0.0653124f},{0.229477f,-0.0146406f,-0.0598376f}, - {0.235079f,-0.0212454f,-0.0484934f},{0.237714f,-0.0243525f,-0.042634f},{0.240235f,-0.027326f,-0.0366563f}, - {0.242642f,-0.030163f,-0.0305656f},{0.24493f,-0.0328612f,-0.0243674f},{0.249145f,-0.0378313f,-0.0116704f}, - {0.251068f,-0.0400991f,-0.00518257f},{0.252866f,-0.0422192f,0.00139061f},{0.254537f,-0.0441898f,0.00804317f}, - {0.25608f,-0.0460092f,0.0147693f},{0.257494f,-0.0476758f,0.0215631f},{0.258776f,-0.0491881f,0.0284189f}, - {0.259927f,-0.0505448f,0.0353305f},{0.260944f,-0.0517447f,0.0422916f},{0.261828f,-0.0527868f,0.0492962f}, - {0.262577f,-0.0536701f,0.0563382f},{0.263191f,-0.0543939f,0.0634117f},{0.263669f,-0.0549575f,0.0705101f}, - {0.264011f,-0.0553604f,0.0776272f},{0.264216f,-0.0556023f,0.0847567f},{-0.0421135f,0.305602f,0.0428677f}, - {-0.0431344f,0.306274f,0.0485758f},{-0.0421725f,0.30514f,0.0411945f},{-0.0348943f,0.296558f,0.00426646f}, - {-0.0341289f,0.296187f,0.00244165f},{-0.0357808f,0.298135f,0.00901696f},{-0.0445856f,0.307985f,0.0632405f}, - {-0.0450821f,0.30857f,0.0705025f},{-0.0449943f,0.307857f,0.0632202f},{-0.0437274f,0.307505f,0.0567511f}, - {-0.0443341f,0.308221f,0.0637424f},{-0.0465618f,0.309118f,0.084822f},{-0.0467942f,0.309247f,0.0918925f}, - {-0.047093f,0.309365f,0.0848062f},{-0.0460053f,0.308462f,0.0704561f},{-0.0455077f,0.307875f,0.0631783f}, - {-0.0454912f,0.308443f,0.0704874f},{-0.0474899f,0.309833f,0.084788f},{-0.0476948f,0.310316f,0.0918925f}, - {-0.0476466f,0.310397f,0.0847723f},{-0.0465353f,0.308707f,0.0704083f},{-0.0460366f,0.308119f,0.0631143f}, - {-0.0473898f,0.311292f,0.084757f},{-0.0471813f,0.311046f,0.0775429f},{-0.047582f,0.310908f,0.084762f}, - {-0.0477127f,0.310676f,0.0918925f},{-0.0472235f,0.311628f,0.0918925f},{-0.0474707f,0.311354f,0.0918925f}, - {-0.0469501f,0.311305f,0.0776267f},{-0.0439376f,0.307221f,0.0559281f},{-0.042987f,0.306632f,0.0497909f}, - {-0.0471552f,0.311547f,0.0847564f},{-0.0399705f,0.303075f,0.0291561f},{-0.0410491f,0.303815f,0.0337954f}, - {-0.0397614f,0.302297f,0.0263905f},{-0.0411077f,0.304416f,0.0359874f},{-0.0383074f,0.300582f,0.0189921f}, - {-0.0387028f,0.301581f,0.0223799f},{-0.0366854f,0.29867f,0.0116131f},{-0.0373058f,0.299933f,0.015665f}, - {-0.0329336f,0.294246f,-0.00303443f},{-0.0323518f,0.294092f,-0.0040552f},{-0.0285038f,0.289022f,-0.0174445f}, - {-0.0260366f,0.286113f,-0.0245261f},{-0.0262848f,0.286938f,-0.0230172f},{-0.0308032f,0.291734f,-0.010276f}, - {-0.0191526f,0.278528f,-0.0410717f},{-0.021645f,0.281467f,-0.0351634f},{-0.0206068f,0.279711f,-0.0383731f}, - {-0.0240231f,0.284271f,-0.0291434f},{-0.0138336f,0.272256f,-0.0525327f},{-0.0145359f,0.272552f,-0.051709f}, - {-0.0112697f,0.268701f,-0.0581524f},{-0.0176497f,0.276224f,-0.0451116f},{-0.00505546f,0.261906f,-0.0687612f}, - {-0.00429986f,0.260483f,-0.0705281f},{-0.0019264f,0.258216f,-0.0738946f},{-0.00785583f,0.264676f,-0.0644294f}, - {0.00803165f,0.246474f,-0.088404f},{0.00462002f,0.250497f,-0.0837203f},{0.00715869f,0.246971f,-0.0876434f}, - {0.0012997f,0.254412f,-0.0788824f},{0.0032141f,0.251623f,-0.0821454f},{0.0187835f,0.233796f,-0.101489f}, - {0.0153863f,0.23727f,-0.0979716f},{0.0196536f,0.232238f,-0.102786f},{0.0112187f,0.242184f,-0.0929216f}, - {0.0284535f,0.221862f,-0.111682f},{0.0302445f,0.220282f,-0.113046f},{0.0263509f,0.224873f,-0.109369f}, - {0.0225294f,0.229379f,-0.105516f},{0.042324f,0.206039f,-0.122984f},{0.0382345f,0.210861f,-0.119856f}, - {0.0421853f,0.20567f,-0.123123f},{0.0329688f,0.216538f,-0.115753f},{0.046869f,0.200148f,-0.126416f}, - {0.0506736f,0.196194f,-0.12867f},{0.0464716f,0.201148f,-0.125923f},{0.0611154f,0.183349f,-0.134725f}, - {0.0592264f,0.186109f,-0.133582f},{0.0563427f,0.188977f,-0.132217f},{0.0549264f,0.191179f,-0.131224f}, - {0.051591f,0.19458f,-0.129448f},{0.0679525f,0.175819f,-0.137702f},{0.0659006f,0.177707f,-0.136973f}, - {0.0706901f,0.172059f,-0.138964f},{0.0635697f,0.180987f,-0.135742f},{0.076821f,0.165362f,-0.141015f}, - {0.0754758f,0.166416f,-0.140701f},{0.0802502f,0.160787f,-0.142188f},{0.0723708f,0.170609f,-0.13946f}, - {0.085801f,0.154773f,-0.143511f},{0.081299f,0.160082f,-0.142366f},{0.0850057f,0.155179f,-0.14343f}, - {0.0935937f,0.143476f,-0.146244f},{0.0938119f,0.143598f,-0.145714f},{0.0891046f,0.149149f,-0.144944f}, - {0.103705f,0.133131f,-0.146058f},{0.0994105f,0.138726f,-0.145701f},{0.0990909f,0.138571f,-0.145739f}, - {0.103968f,0.133352f,-0.146015f},{0.0944326f,0.144064f,-0.145199f},{0.0897354f,0.149602f,-0.144432f}, - {0.0941219f,0.14382f,-0.145367f},{0.0948607f,0.144091f,-0.145179f},{0.0903229f,0.149442f,-0.144449f}, - {0.0751518f,0.166188f,-0.140865f},{0.0795988f,0.160357f,-0.142696f},{0.0799295f,0.160555f,-0.142353f}, - {0.0888759f,0.149039f,-0.145472f},{0.0894214f,0.149362f,-0.144599f},{0.093558f,0.143518f,-0.146855f}, - {0.0982489f,0.137987f,-0.147398f},{0.0982726f,0.137959f,-0.146786f},{0.0939839f,0.143983f,-0.147732f}, - {0.098692f,0.138431f,-0.148277f},{0.0937144f,0.143713f,-0.147385f},{0.103072f,0.132679f,-0.148251f}, - {0.103355f,0.132933f,-0.148599f},{0.103653f,0.133192f,-0.148767f},{0.103915f,0.133415f,-0.14881f}, - {0.0655698f,0.177487f,-0.137135f},{0.0240122f,0.227099f,-0.107358f},{0.0342068f,0.21561f,-0.116543f}, - {0.0375489f,0.211137f,-0.119568f},{0.0280962f,0.221673f,-0.111826f},{0.0151164f,0.23812f,-0.097292f}, - {0.0115314f,0.242348f,-0.0929291f},{-0.000607728f,0.256129f,-0.076437f},{-0.00808476f,0.265478f,-0.0634867f}, - {0.00283905f,0.251455f,-0.0822683f},{0.00239561f,0.25139f,-0.0825229f},{0.00634876f,0.246729f,-0.0880327f}, - {-0.0110117f,0.268929f,-0.0580755f},{-0.0165481f,0.275457f,-0.0468631f},{-0.028428f,0.289465f,-0.0167902f}, - {-0.0304509f,0.29185f,-0.0104677f},{-0.0234034f,0.283008f,-0.0315068f},{-0.0153929f,0.272365f,-0.0520204f}, - {-0.0180395f,0.276074f,-0.0452083f},{-0.0185135f,0.276045f,-0.0454087f},{-0.0370886f,0.298535f,0.0115564f}, - {-0.0448065f,0.308778f,0.0707584f},{-0.0473856f,0.309657f,0.0918925f},{-0.0451443f,0.309176f,0.0777929f}, - {-0.0454312f,0.308982f,0.0777045f},{-0.0460469f,0.309098f,0.0848323f},{-0.0464337f,0.309168f,0.0918925f}, - {-0.045347f,0.309415f,0.0848396f},{-0.0456374f,0.309225f,0.0848373f},{-0.0457254f,0.309296f,0.0918925f}, - {-0.0460743f,0.309186f,0.0918925f},{-0.0454147f,0.309495f,0.0918925f},{-0.0471187f,0.309415f,0.0918925f}, - {-0.0475847f,0.309968f,0.0918925f},{-0.0458406f,0.308855f,0.0776945f},{-0.0443459f,0.307092f,0.0559028f}, - {-0.0435421f,0.306145f,0.0485453f},{-0.0425796f,0.30501f,0.0411587f},{-0.0414554f,0.303684f,0.0337544f}, - {-0.0401668f,0.302165f,0.0263442f},{-0.0387117f,0.300449f,0.0189407f},{-0.0357954f,0.296423f,0.00407642f}, - {-0.0338304f,0.294106f,-0.00324031f},{-0.0352962f,0.296422f,0.00420461f},{-0.0333341f,0.294108f,-0.00310144f}, - {-0.0312023f,0.291594f,-0.0103481f},{-0.0289012f,0.288881f,-0.0175217f},{-0.0264323f,0.28597f,-0.0246083f}, - {-0.0237973f,0.282863f,-0.0315939f},{-0.0209987f,0.279563f,-0.038465f},{-0.0149235f,0.272399f,-0.0518103f}, - {-0.0116549f,0.268545f,-0.0582583f},{-0.00823869f,0.264517f,-0.0645398f},{-0.00468021f,0.260321f,-0.0706427f}, - {-0.00098547f,0.255965f,-0.0765558f},{0.00678642f,0.2468f,-0.0877701f},{0.0108493f,0.24201f,-0.093052f}, - {0.0150199f,0.237092f,-0.0981056f},{0.0192902f,0.232057f,-0.102923f},{0.0236518f,0.226914f,-0.107499f}, - {0.0411164f,0.205354f,-0.12407f},{0.0368049f,0.210817f,-0.120026f},{0.0364596f,0.210845f,-0.120499f}, - {0.0326147f,0.216345f,-0.1159f},{0.0371981f,0.210941f,-0.119717f},{0.0418378f,0.20547f,-0.123274f}, - {0.0465247f,0.199943f,-0.126571f},{0.0512501f,0.194372f,-0.129604f},{0.0560052f,0.188765f,-0.132375f}, - {0.0607812f,0.183133f,-0.134885f},{0.0703627f,0.171835f,-0.139127f},{0.0748141f,0.165999f,-0.141206f}, - {0.0846884f,0.154943f,-0.143596f},{0.0987835f,0.138323f,-0.145907f},{0.1034f,0.132879f,-0.146226f}, - {-0.0473737f,0.310663f,0.0775529f},{-0.0463552f,0.308874f,0.0776737f},{-0.0448583f,0.307109f,0.0558501f}, - {-0.0440534f,0.30616f,0.0484819f},{-0.0430895f,0.305024f,0.0410845f},{-0.0419636f,0.303696f,0.0336694f}, - {-0.0406731f,0.302174f,0.0262484f},{-0.0392159f,0.300456f,0.018834f},{-0.0375904f,0.298539f,0.011439f}, - {-0.0316955f,0.291588f,-0.0104976f},{-0.0321936f,0.291796f,-0.0107259f},{-0.029884f,0.289073f,-0.017926f}, - {-0.0293911f,0.288871f,-0.0176816f},{-0.0269185f,0.285956f,-0.0247786f},{-0.0242797f,0.282844f,-0.0317744f}, - {-0.0214769f,0.279539f,-0.0386556f},{-0.00914513f,0.264619f,-0.0651178f},{-0.00944459f,0.264972f,-0.065521f}, - {-0.00586379f,0.26075f,-0.0716622f},{-0.0121196f,0.268506f,-0.0584778f},{-0.00869832f,0.264472f,-0.0647685f}, - {-0.00513464f,0.26027f,-0.0708804f},{-0.0014345f,0.255907f,-0.0768021f},{0.0141994f,0.237092f,-0.0988077f}, - {0.0139599f,0.237375f,-0.0992973f},{0.018257f,0.232308f,-0.104145f},{0.0104176f,0.241931f,-0.0933224f}, - {0.0145943f,0.237006f,-0.0983834f},{0.0188708f,0.231964f,-0.103208f},{0.0232388f,0.226813f,-0.10779f}, - {0.0276897f,0.221565f,-0.112123f},{0.0322148f,0.216229f,-0.116203f},{0.0414513f,0.205338f,-0.123589f}, - {0.0461451f,0.199804f,-0.12689f},{0.0508775f,0.194224f,-0.129928f},{0.0556395f,0.188609f,-0.132703f}, - {0.0604225f,0.182969f,-0.135216f},{0.0652181f,0.177314f,-0.137469f},{0.0700179f,0.171654f,-0.139465f}, - {0.0843646f,0.154738f,-0.14394f},{0.102895f,0.132508f,-0.147719f},{0.0984804f,0.138093f,-0.146255f}, - {0.103104f,0.132641f,-0.146574f},{-0.0453858f,0.307352f,0.0557698f},{-0.046886f,0.309121f,0.077642f}, - {-0.044579f,0.3064f,0.0483851f},{-0.0449695f,0.306861f,0.0482734f},{-0.0440009f,0.305719f,0.0408405f}, - {-0.043613f,0.305261f,0.0409712f},{-0.0424846f,0.303931f,0.0335395f},{-0.0411912f,0.302406f,0.026102f}, - {-0.0397308f,0.300684f,0.0186711f},{-0.0381016f,0.298763f,0.0112596f},{-0.0363027f,0.296641f,0.00388058f}, - {-0.0343333f,0.294319f,-0.00345247f},{-0.0274059f,0.286151f,-0.0250388f},{-0.0277523f,0.286559f,-0.025339f}, - {-0.0251008f,0.283433f,-0.0323684f},{-0.0247612f,0.283032f,-0.0320502f},{-0.0219523f,0.27972f,-0.0389468f}, - {-0.0189822f,0.276218f,-0.0457149f},{-0.0158546f,0.27253f,-0.0523413f},{-0.012574f,0.268662f,-0.0588132f}, - {-0.0055735f,0.260407f,-0.0712434f},{-0.00186511f,0.256035f,-0.0771783f},{0.00197355f,0.251508f,-0.0829118f}, - {0.00593551f,0.246837f,-0.088434f},{0.0100134f,0.242028f,-0.0937354f},{0.0184855f,0.232039f,-0.103643f}, - {0.0228632f,0.226877f,-0.108235f},{0.0273241f,0.221617f,-0.112578f},{0.0318592f,0.216269f,-0.116668f}, - {0.0458206f,0.199807f,-0.127378f},{0.0456623f,0.199993f,-0.127941f},{0.0504174f,0.194386f,-0.130993f}, - {0.0505635f,0.194214f,-0.130423f},{0.0553362f,0.188587f,-0.133204f},{0.0601299f,0.182934f,-0.135723f}, - {0.0649361f,0.177267f,-0.137981f},{0.0697467f,0.171595f,-0.139981f},{0.0745535f,0.165927f,-0.141725f}, - {0.0793489f,0.160272f,-0.143219f},{0.0841253f,0.15464f,-0.144466f},{0.102907f,0.132495f,-0.147106f}, - {-0.0469308f,0.309173f,0.0703531f},{-0.0464308f,0.308584f,0.0630404f},{-0.0472824f,0.309588f,0.0776054f}, - {-0.0457783f,0.307814f,0.055677f},{-0.0428696f,0.304385f,0.0333897f},{-0.0415729f,0.302856f,0.0259331f}, - {-0.0401088f,0.301129f,0.0184831f},{-0.0402491f,0.301674f,0.0183202f},{-0.0386121f,0.299744f,0.0108731f}, - {-0.0384754f,0.299203f,0.0110526f},{-0.0366719f,0.297077f,0.00365461f},{-0.0346974f,0.294749f,-0.00369726f}, - {-0.0325522f,0.292219f,-0.0109894f},{-0.0302367f,0.289489f,-0.0182079f},{-0.0222846f,0.280112f,-0.0392827f}, - {-0.0223853f,0.280611f,-0.0395738f},{-0.019401f,0.277092f,-0.0463744f},{-0.0193069f,0.276601f,-0.0460682f}, - {-0.0161713f,0.272904f,-0.0527117f},{-0.0128823f,0.269025f,-0.0592001f},{-0.00214587f,0.256366f,-0.0776124f}, - {-0.00220193f,0.256811f,-0.0779886f},{0.00165512f,0.252264f,-0.0837496f},{0.00170264f,0.251828f,-0.0833607f}, - {0.00567477f,0.247144f,-0.088897f},{0.00976312f,0.242323f,-0.094212f},{0.022646f,0.227133f,-0.108749f}, - {0.0226449f,0.227514f,-0.109195f},{0.0271272f,0.222229f,-0.113558f},{0.0271182f,0.221859f,-0.113103f}, - {0.031665f,0.216498f,-0.117203f},{0.0362772f,0.21106f,-0.121044f},{0.0409459f,0.205555f,-0.124624f}, - {0.0552022f,0.188744f,-0.133782f},{0.0600083f,0.183077f,-0.136307f},{0.0600902f,0.183361f,-0.136814f}, - {0.0649195f,0.177666f,-0.139083f},{0.0648269f,0.177396f,-0.138571f},{0.0696498f,0.171709f,-0.140576f}, - {0.0744689f,0.166026f,-0.142325f},{0.0792766f,0.160357f,-0.143823f},{0.0840654f,0.154711f,-0.145073f}, - {0.0888281f,0.149095f,-0.146082f},{-0.0470862f,0.309736f,0.0703053f},{-0.0465851f,0.309145f,0.0629764f}, - {-0.0474386f,0.310152f,0.0775737f},{-0.0459312f,0.308374f,0.0555966f},{-0.0451206f,0.307418f,0.0481766f}, - {-0.0441499f,0.306274f,0.0407271f},{-0.043016f,0.304937f,0.0332599f},{-0.0417165f,0.303405f,0.0257867f}, - {-0.0368045f,0.297613f,0.00345877f},{-0.0347426f,0.295769f,-0.00404829f},{-0.0348257f,0.295279f,-0.00390942f}, - {-0.0326757f,0.292744f,-0.0112177f},{-0.0303551f,0.290008f,-0.0184523f},{-0.0278652f,0.287072f,-0.0255992f}, - {-0.0252078f,0.283939f,-0.0326442f},{-0.0161484f,0.273844f,-0.0532427f},{-0.0162585f,0.273386f,-0.0530326f}, - {-0.0129621f,0.269499f,-0.0595354f},{-0.00951684f,0.265437f,-0.0658703f},{-0.00592809f,0.261205f,-0.0720252f}, - {0.0057779f,0.24799f,-0.0895609f},{0.00563608f,0.247569f,-0.0892982f},{0.00973349f,0.242738f,-0.0946251f}, - {0.0139396f,0.237778f,-0.0997217f},{0.0182462f,0.2327f,-0.10458f},{0.0318636f,0.217231f,-0.117971f}, - {0.031684f,0.216855f,-0.117667f},{0.0363064f,0.211405f,-0.121517f},{0.0409855f,0.205888f,-0.125105f}, - {0.0457124f,0.200314f,-0.128429f},{0.050478f,0.194695f,-0.131488f},{0.0552735f,0.18904f,-0.134283f}, - {0.0697531f,0.171967f,-0.141092f},{0.0748247f,0.166574f,-0.143185f},{0.0745829f,0.166272f,-0.142845f}, - {0.0794013f,0.16059f,-0.144346f},{0.0842006f,0.154931f,-0.145599f},{0.0889739f,0.149303f,-0.14661f}, - {0.0984157f,0.13817f,-0.147929f},{-0.0476338f,0.311036f,0.0918925f},{-0.0470208f,0.310247f,0.070274f}, - {-0.046519f,0.309655f,0.0629344f},{-0.0458641f,0.308883f,0.055544f},{-0.0450523f,0.307925f,0.0481132f}, - {-0.0440802f,0.306779f,0.040653f},{-0.0429447f,0.30544f,0.0331749f},{-0.0416433f,0.303906f,0.0256909f}, - {-0.0401738f,0.302173f,0.0182135f},{-0.0385344f,0.30024f,0.0107557f},{-0.0367242f,0.298105f,0.00333058f}, - {-0.0323867f,0.293601f,-0.0114393f},{-0.0300372f,0.291363f,-0.0180677f},{-0.0300611f,0.290859f,-0.0186894f}, - {-0.0325894f,0.29323f,-0.0113672f},{-0.0302655f,0.29049f,-0.0186123f},{-0.0277719f,0.287549f,-0.0257695f}, - {-0.0251106f,0.284411f,-0.0328247f},{-0.0222841f,0.281079f,-0.0397644f},{-0.0192955f,0.277555f,-0.0465748f}, - {-0.0128473f,0.269951f,-0.0597549f},{-0.0126308f,0.270306f,-0.0598609f},{-0.00939697f,0.265883f,-0.066099f}, - {-0.00580302f,0.261645f,-0.0722628f},{-0.00207146f,0.257245f,-0.0782348f},{0.00179119f,0.25269f,-0.0840042f}, - {0.0101136f,0.243487f,-0.0950259f},{0.0140191f,0.239414f,-0.0995152f},{0.0143288f,0.238517f,-0.100133f}, - {0.00988127f,0.243151f,-0.0948954f},{0.0140934f,0.238184f,-0.0999994f},{0.0184063f,0.233099f,-0.104865f}, - {0.0228114f,0.227905f,-0.109486f},{0.0273001f,0.222612f,-0.113856f},{0.0364927f,0.211773f,-0.121826f}, - {0.0414329f,0.206557f,-0.125571f},{0.0411786f,0.206247f,-0.125419f},{0.0459123f,0.200666f,-0.128748f}, - {0.0506848f,0.195038f,-0.131812f},{0.0554873f,0.189375f,-0.134611f},{0.0603109f,0.183688f,-0.137145f}, - {0.0651472f,0.177985f,-0.139417f},{0.0699878f,0.172277f,-0.14143f},{0.07965f,0.160884f,-0.144688f}, - {0.0844564f,0.155217f,-0.145943f},{0.0892366f,0.14958f,-0.146956f},{-0.0468282f,0.310629f,0.0702589f}, - {-0.046326f,0.310037f,0.0629142f},{-0.0456706f,0.309264f,0.0555186f},{-0.0448583f,0.308307f,0.0480826f}, - {-0.0438855f,0.30716f,0.0406172f},{-0.0427492f,0.30582f,0.0331338f},{-0.0414469f,0.304284f,0.0256447f}, - {-0.0399763f,0.30255f,0.0181621f},{-0.0383359f,0.300616f,0.010699f},{-0.0365244f,0.29848f,0.00326873f}, - {-0.0345413f,0.296141f,-0.0041153f},{-0.0275658f,0.287916f,-0.0258517f},{-0.0249027f,0.284776f,-0.0329118f}, - {-0.0220742f,0.281441f,-0.0398563f},{-0.0190835f,0.277915f,-0.0466715f},{-0.0159342f,0.274201f,-0.0533441f}, - {-0.0152712f,0.273952f,-0.0542301f},{-0.00917805f,0.266235f,-0.0662094f},{-0.00558159f,0.261994f,-0.0723775f}, - {-0.00184742f,0.257591f,-0.0783537f},{0.00201793f,0.253033f,-0.0841271f},{0.00600743f,0.248329f,-0.0896876f}, - {0.0186446f,0.233428f,-0.105003f},{0.0230528f,0.22823f,-0.109627f},{0.0275447f,0.222934f,-0.114f}, - {0.0321114f,0.217549f,-0.118117f},{0.0367437f,0.212087f,-0.121975f},{0.0374089f,0.211834f,-0.122344f}, - {0.0461698f,0.200972f,-0.128902f},{0.0509457f,0.195341f,-0.131968f},{0.0557515f,0.189674f,-0.134769f}, - {0.0605785f,0.183982f,-0.137305f},{0.0654182f,0.178275f,-0.139579f},{0.0702622f,0.172564f,-0.141593f}, - {0.0751025f,0.166856f,-0.143349f},{0.0799311f,0.161163f,-0.144853f},{0.0847408f,0.155491f,-0.146109f}, - {0.0895244f,0.149851f,-0.147123f},{0.094275f,0.144249f,-0.147899f},{0.0989864f,0.138694f,-0.148445f}, - {-0.0466084f,0.310902f,0.0705096f},{-0.0461304f,0.310339f,0.0634113f},{-0.0455166f,0.309615f,0.056338f}, - {-0.0447675f,0.308732f,0.0492957f},{-0.0438837f,0.30769f,0.042291f},{-0.0428661f,0.30649f,0.0353299f}, - {-0.0417155f,0.305133f,0.0284186f},{-0.0404329f,0.303621f,0.0215629f},{-0.0390195f,0.301954f,0.0147688f}, - {-0.0374764f,0.300135f,0.00804257f},{-0.0358052f,0.298164f,0.00139006f},{-0.0340072f,0.296044f,-0.00518291f}, - {-0.032084f,0.293776f,-0.0116708f},{-0.0278688f,0.288806f,-0.024368f},{-0.0255805f,0.286108f,-0.0305661f}, - {-0.0231746f,0.283271f,-0.0366566f},{-0.0206528f,0.280297f,-0.0426344f},{-0.0180176f,0.27719f,-0.0484939f}, - {-0.0124162f,0.270585f,-0.0598379f},{-0.00945494f,0.267093f,-0.0653124f},{-0.00638994f,0.263479f,-0.0706491f}, - {-0.00322406f,0.259746f,-0.0758429f},{3.99566e-005f,0.255898f,-0.0808893f},{0.00339924f,0.251936f,-0.0857839f}, - {0.00685086f,0.247867f,-0.0905225f},{0.0103919f,0.243691f,-0.095101f},{0.0177293f,0.235039f,-0.103761f}, - {0.0215192f,0.230571f,-0.107835f},{0.0253855f,0.226012f,-0.111734f},{0.029325f,0.221366f,-0.115454f}, - {0.0333339f,0.216639f,-0.118992f},{0.0415463f,0.206956f,-0.125509f},{0.0457426f,0.202008f,-0.128482f}, - {0.0499941f,0.196995f,-0.131262f},{0.054297f,0.191921f,-0.133846f},{0.0586474f,0.186791f,-0.136231f}, - {0.0630417f,0.18161f,-0.138417f},{0.067476f,0.176381f,-0.1404f},{0.0719463f,0.17111f,-0.142179f}, - {0.0764488f,0.165801f,-0.143752f},{0.0809793f,0.160459f,-0.145118f},{0.0855341f,0.155088f,-0.146276f}, - {0.0901092f,0.149694f,-0.147225f},{0.0947004f,0.14428f,-0.147964f},{0.0993037f,0.138852f,-0.148493f}, - {-0.0215492f,0.281886f,-0.0398563f},{-0.0185585f,0.27836f,-0.0466715f},{-0.0108014f,0.27079f,-0.0592001f}, - {-0.00781054f,0.266884f,-0.0658703f},{-0.0112558f,0.270946f,-0.0595354f},{-0.0270408f,0.288362f,-0.0258517f}, - {-0.0243777f,0.285221f,-0.0329118f},{-0.0318617f,0.294046f,-0.0114393f},{-0.0295361f,0.291304f,-0.0186894f}, - {-0.0340163f,0.296587f,-0.0041153f},{-0.0359994f,0.298925f,0.00326873f},{-0.0378109f,0.301061f,0.010699f}, - {-0.0309694f,0.294191f,-0.0112177f},{-0.0314626f,0.294186f,-0.0113672f},{-0.0331194f,0.296727f,-0.00390942f}, - {-0.0394513f,0.302995f,0.0181621f},{-0.0409219f,0.304729f,0.0256447f},{-0.0422242f,0.306265f,0.0331338f}, - {-0.0433605f,0.307605f,0.0406172f},{-0.0443333f,0.308752f,0.0480826f},{-0.0451456f,0.30971f,0.0555186f}, - {-0.045801f,0.310482f,0.0629142f},{-0.0463032f,0.311075f,0.0702589f},{-0.045894f,0.311202f,0.070274f}, - {-0.0453922f,0.31061f,0.0629344f},{-0.0451123f,0.30967f,0.0848373f},{-0.0449201f,0.310054f,0.0848323f}, - {-0.0448555f,0.310565f,0.084822f},{-0.0449255f,0.310447f,0.0918925f},{-0.0451675f,0.309769f,0.0918925f}, - {-0.0449062f,0.309427f,0.0777045f},{-0.0445571f,0.309016f,0.0705025f},{-0.0443644f,0.309399f,0.0704874f}, - {-0.0453799f,0.311183f,0.0703053f},{-0.0448788f,0.310592f,0.0629764f},{-0.0443499f,0.310348f,0.0630404f}, - {-0.0442249f,0.309821f,0.0555966f},{-0.0448499f,0.310938f,0.0703531f},{-0.0466563f,0.311491f,0.0775429f}, - {-0.0462046f,0.311955f,0.0918925f},{-0.0459403f,0.311844f,0.0847723f},{-0.0464552f,0.311864f,0.084762f}, - {-0.045844f,0.311876f,0.0918925f},{-0.0454091f,0.311597f,0.084788f},{-0.0455195f,0.311707f,0.0918925f}, - {-0.046564f,0.311937f,0.0918925f},{-0.0468648f,0.311737f,0.084757f},{-0.0469128f,0.311827f,0.0918925f}, - {-0.0450122f,0.311129f,0.0848062f},{-0.0449434f,0.310806f,0.0918925f},{-0.0154092f,0.274646f,-0.0533441f}, - {-0.0121057f,0.270751f,-0.0598609f},{-0.00865303f,0.26668f,-0.0662094f},{-0.00505658f,0.262439f,-0.0723775f}, - {-0.00132241f,0.258036f,-0.0783537f},{0.00254294f,0.253478f,-0.0841271f},{0.0110081f,0.244107f,-0.0948954f}, - {0.00734237f,0.249017f,-0.0892982f},{0.0114398f,0.244185f,-0.0946251f},{0.00653244f,0.248774f,-0.0896876f}, - {0.0106387f,0.243932f,-0.0950259f},{0.0148538f,0.238962f,-0.100133f},{0.0191697f,0.233873f,-0.105003f}, - {0.0235778f,0.228675f,-0.109627f},{0.0280697f,0.223379f,-0.114f},{0.0326364f,0.217994f,-0.118117f}, - {0.0426918f,0.207335f,-0.125105f},{0.0430268f,0.207319f,-0.124624f},{0.0474187f,0.201761f,-0.128429f}, - {0.0372687f,0.212532f,-0.121975f},{0.0419579f,0.207003f,-0.125571f},{0.0466949f,0.201417f,-0.128902f}, - {0.0514707f,0.195786f,-0.131968f},{0.0562765f,0.190119f,-0.134769f},{0.0611035f,0.184427f,-0.137305f}, - {0.0659432f,0.178721f,-0.139579f},{0.0707872f,0.173009f,-0.141593f},{0.0759515f,0.16753f,-0.143185f}, - {0.0756275f,0.167302f,-0.143349f},{0.0711147f,0.173233f,-0.14143f},{0.0804562f,0.161608f,-0.144853f}, - {0.0900494f,0.150296f,-0.147123f},{0.0855832f,0.156172f,-0.145943f},{0.0903634f,0.150536f,-0.146956f}, - {0.0956389f,0.145282f,-0.146855f},{0.0956746f,0.14524f,-0.146244f},{0.10033f,0.139751f,-0.147398f}, - {0.0813575f,0.162122f,-0.143823f},{0.0861462f,0.156476f,-0.145073f},{0.0859069f,0.156378f,-0.145599f}, - {0.0952487f,0.144775f,-0.145367f},{0.0955182f,0.145045f,-0.145714f},{0.0905482f,0.150318f,-0.144599f}, - {0.104527f,0.133835f,-0.146226f},{0.109238f,0.128572f,-0.146474f},{0.10481f,0.134088f,-0.146574f}, - {0.100122f,0.139617f,-0.147929f},{0.0954207f,0.14516f,-0.147385f},{0.10902f,0.128388f,-0.146297f}, - {0.10423f,0.133576f,-0.146058f},{0.108787f,0.12819f,-0.146158f},{0.0906802f,0.15075f,-0.14661f}, - {0.0909089f,0.15086f,-0.146082f},{0.0998188f,0.139387f,-0.148277f},{0.0951107f,0.144938f,-0.147732f}, - {0.0852658f,0.155937f,-0.146109f},{0.0948f,0.144695f,-0.147899f},{0.0995114f,0.139139f,-0.148445f}, - {0.104178f,0.133637f,-0.148767f},{0.108786f,0.128189f,-0.148876f},{-0.0450535f,0.311155f,0.0918925f}, - {-0.0462469f,0.311618f,0.0775529f},{-0.0447373f,0.309838f,0.055544f},{-0.0439255f,0.308881f,0.0481132f}, - {-0.0429534f,0.307735f,0.040653f},{-0.0418179f,0.306396f,0.0331749f},{-0.0405165f,0.304861f,0.0256909f}, - {-0.039047f,0.303129f,0.0182135f},{-0.0374076f,0.301196f,0.0107557f},{-0.0355974f,0.299061f,0.00333058f}, - {-0.0336158f,0.296724f,-0.00404829f},{-0.0291387f,0.291445f,-0.0186123f},{-0.0266451f,0.288505f,-0.0257695f}, - {-0.0239838f,0.285367f,-0.0328247f},{-0.0211573f,0.282034f,-0.0397644f},{-0.0181687f,0.27851f,-0.0465748f}, - {-0.0150216f,0.274799f,-0.0532427f},{-0.0117205f,0.270907f,-0.0597549f},{-0.00827017f,0.266838f,-0.066099f}, - {-0.00467622f,0.262601f,-0.0722628f},{-0.000944657f,0.258201f,-0.0782348f},{0.00291799f,0.253646f,-0.0840042f}, - {0.0069047f,0.248945f,-0.0895609f},{0.0152202f,0.23914f,-0.0999994f},{0.0195331f,0.234055f,-0.104865f}, - {0.0239382f,0.22886f,-0.109486f},{0.0284269f,0.223568f,-0.113856f},{0.0329904f,0.218187f,-0.117971f}, - {0.0376195f,0.212728f,-0.121826f},{0.0423054f,0.207203f,-0.125419f},{0.0470391f,0.201621f,-0.128748f}, - {0.0518116f,0.195994f,-0.131812f},{0.0566141f,0.190331f,-0.134611f},{0.0614377f,0.184643f,-0.137145f}, - {0.066274f,0.178941f,-0.139417f},{0.0807768f,0.16184f,-0.144688f},{0.0811076f,0.162037f,-0.144346f}, - {0.104482f,0.133888f,-0.148599f},{0.109024f,0.128391f,-0.148751f},{-0.0457323f,0.311599f,0.0775737f}, - {-0.0434143f,0.308866f,0.0481766f},{-0.0424436f,0.307721f,0.0407271f},{-0.0413097f,0.306384f,0.0332599f}, - {-0.0400102f,0.304852f,0.0257867f},{-0.0385428f,0.303121f,0.0183202f},{-0.0369058f,0.301191f,0.0108731f}, - {-0.0350982f,0.29906f,0.00345877f},{-0.0261589f,0.288519f,-0.0255992f},{-0.0286488f,0.291455f,-0.0184523f}, - {-0.0281559f,0.291253f,-0.0182079f},{-0.0235015f,0.285386f,-0.0326442f},{-0.020679f,0.282058f,-0.0395738f}, - {-0.0176947f,0.278539f,-0.0463744f},{-0.0145522f,0.274833f,-0.0530326f},{-0.0042218f,0.262652f,-0.0720252f}, - {-0.000495634f,0.258259f,-0.0779886f},{0.00336142f,0.253711f,-0.0837496f},{0.0203378f,0.234073f,-0.104145f}, - {0.0205663f,0.233803f,-0.103643f},{0.0247268f,0.228898f,-0.108749f},{0.0156459f,0.239226f,-0.0997217f}, - {0.0199525f,0.234147f,-0.10458f},{0.0243512f,0.228961f,-0.109195f},{0.0288334f,0.223676f,-0.113558f}, - {0.0333903f,0.218302f,-0.117667f},{0.0380127f,0.212852f,-0.121517f},{0.0521843f,0.196142f,-0.131488f}, - {0.0569798f,0.190487f,-0.134283f},{0.0617965f,0.184808f,-0.136814f},{0.0666258f,0.179113f,-0.139083f}, - {0.0714594f,0.173414f,-0.141092f},{0.0762892f,0.167719f,-0.142845f},{0.109589f,0.12887f,-0.147687f}, - {0.104976f,0.134273f,-0.147719f},{0.104987f,0.134259f,-0.147106f},{0.104778f,0.134126f,-0.148251f}, - {0.109234f,0.128569f,-0.148558f},{-0.0452527f,0.311466f,0.0918925f},{-0.0452015f,0.311353f,0.0776054f}, - {-0.0436974f,0.309579f,0.055677f},{-0.0428886f,0.308625f,0.0482734f},{-0.0404037f,0.305695f,0.0335395f}, - {-0.0394921f,0.30462f,0.0259331f},{-0.0407888f,0.306149f,0.0333897f},{-0.0419201f,0.307483f,0.0408405f}, - {-0.0380279f,0.302894f,0.0184831f},{-0.0363946f,0.300968f,0.0110526f},{-0.034591f,0.298841f,0.00365461f}, - {-0.0326166f,0.296513f,-0.00369726f},{-0.0304713f,0.293984f,-0.0109894f},{-0.0226804f,0.284797f,-0.0320502f}, - {-0.0202037f,0.281877f,-0.0392827f},{-0.0230199f,0.285197f,-0.0323684f},{-0.0256714f,0.288324f,-0.025339f}, - {-0.017226f,0.278366f,-0.0460682f},{-0.0140905f,0.274668f,-0.0527117f},{-0.00349265f,0.262172f,-0.0712434f}, - {-6.50204e-005f,0.25813f,-0.0776124f},{-0.00378294f,0.262514f,-0.0716622f},{-0.00736374f,0.266737f,-0.065521f}, - {0.00378349f,0.253593f,-0.0833607f},{0.00775562f,0.248909f,-0.088897f},{0.011844f,0.244088f,-0.094212f}, - {0.0160407f,0.23914f,-0.0992973f},{0.0291991f,0.223624f,-0.113103f},{0.0337459f,0.218263f,-0.117203f}, - {0.0383581f,0.212824f,-0.121044f},{0.0526444f,0.195979f,-0.130423f},{0.0572831f,0.190509f,-0.133782f}, - {0.0524982f,0.196151f,-0.130993f},{0.0477432f,0.201758f,-0.127941f},{0.0620891f,0.184842f,-0.136307f}, - {0.0669077f,0.17916f,-0.138571f},{0.0717306f,0.173474f,-0.140576f},{0.0765498f,0.167791f,-0.142325f}, - {0.100187f,0.13954f,-0.146255f},{0.0909567f,0.150803f,-0.145472f},{0.109527f,0.128818f,-0.148015f}, - {0.109406f,0.128715f,-0.14831f},{-0.0444545f,0.310472f,0.0704083f},{-0.0448052f,0.310885f,0.077642f}, - {-0.0439558f,0.309884f,0.0631143f},{-0.0433049f,0.309116f,0.0557698f},{-0.0424982f,0.308165f,0.0483851f}, - {-0.0415321f,0.307026f,0.0409712f},{-0.0391104f,0.30417f,0.026102f},{-0.0342218f,0.298406f,0.00388058f}, - {-0.0360208f,0.300527f,0.0112596f},{-0.0358841f,0.299986f,0.011439f},{-0.0376499f,0.302448f,0.0186711f}, - {-0.0322525f,0.296084f,-0.00345247f},{-0.0301127f,0.293561f,-0.0107259f},{-0.0278032f,0.290838f,-0.017926f}, - {-0.0253251f,0.287916f,-0.0250388f},{-0.0137967f,0.273355f,-0.0518103f},{-0.0136866f,0.273813f,-0.0520204f}, - {-0.0169127f,0.277029f,-0.0452083f},{-0.0198714f,0.281485f,-0.0389468f},{-0.0169013f,0.277983f,-0.0457149f}, - {-0.0137738f,0.274295f,-0.0523413f},{-0.0104931f,0.270427f,-0.0588132f},{-0.00706428f,0.266384f,-0.0651178f}, - {0.00791323f,0.247756f,-0.0877701f},{0.00805506f,0.248176f,-0.0880327f},{0.00396585f,0.252411f,-0.0822683f}, - {0.000215743f,0.257799f,-0.0771783f},{0.0040544f,0.253273f,-0.0829118f},{0.00801636f,0.248601f,-0.088434f}, - {0.0120942f,0.243793f,-0.0937354f},{0.0162803f,0.238857f,-0.0988077f},{0.0339401f,0.218034f,-0.116668f}, - {0.0294049f,0.223381f,-0.112578f},{0.029396f,0.223012f,-0.112123f},{0.0249441f,0.228641f,-0.108235f}, - {0.0385404f,0.212609f,-0.120499f},{0.0431972f,0.207118f,-0.12407f},{0.0479015f,0.201571f,-0.127378f}, - {0.057417f,0.190351f,-0.133204f},{0.0718275f,0.173359f,-0.139981f},{0.067017f,0.179032f,-0.137981f}, - {0.0669244f,0.178761f,-0.137469f},{0.0622107f,0.184699f,-0.135723f},{0.0766344f,0.167691f,-0.141725f}, - {0.0814297f,0.162037f,-0.143219f},{0.0862062f,0.156405f,-0.144466f},{0.0908109f,0.150596f,-0.144944f}, - {0.100353f,0.139723f,-0.146786f},{-0.044299f,0.309909f,0.0704561f},{-0.0446489f,0.310321f,0.0776737f}, - {-0.0438014f,0.309322f,0.0631783f},{-0.043152f,0.308556f,0.0558501f},{-0.0423471f,0.307607f,0.0484819f}, - {-0.0413832f,0.306471f,0.0410845f},{-0.0402573f,0.305143f,0.0336694f},{-0.0389668f,0.303621f,0.0262484f}, - {-0.0375096f,0.301903f,0.018834f},{-0.0341694f,0.297377f,0.00420461f},{-0.0322073f,0.295064f,-0.00310144f}, - {-0.0321242f,0.295553f,-0.00324031f},{-0.0340891f,0.29787f,0.00407642f},{-0.0299892f,0.293036f,-0.0104976f}, - {-0.0276848f,0.290318f,-0.0176816f},{-0.0252122f,0.287403f,-0.0247786f},{-0.0225734f,0.284291f,-0.0317744f}, - {-0.0197706f,0.280986f,-0.0386556f},{-0.0168072f,0.277492f,-0.0454087f},{-0.0104133f,0.269953f,-0.0584778f}, - {-0.00699203f,0.265919f,-0.0647685f},{-0.00342834f,0.261717f,-0.0708804f},{0.000271795f,0.257354f,-0.0768021f}, - {0.00410191f,0.252837f,-0.0825229f},{0.0121239f,0.243378f,-0.0933224f},{0.0163006f,0.238454f,-0.0983834f}, - {0.0205771f,0.233411f,-0.103208f},{0.0249451f,0.22826f,-0.10779f},{0.0337415f,0.217301f,-0.1159f}, - {0.0383249f,0.211896f,-0.119717f},{0.0385112f,0.212264f,-0.120026f},{0.0339211f,0.217677f,-0.116203f}, - {0.0431576f,0.206785f,-0.123589f},{0.0478514f,0.201251f,-0.12689f},{0.0525838f,0.195671f,-0.129928f}, - {0.0573458f,0.190056f,-0.132703f},{0.0621288f,0.184416f,-0.135216f},{0.0717242f,0.173101f,-0.139465f}, - {0.0762786f,0.167144f,-0.140865f},{0.0810563f,0.16151f,-0.142353f},{0.0813051f,0.161804f,-0.142696f}, - {0.0765204f,0.167446f,-0.141206f},{0.0860709f,0.156185f,-0.14394f},{0.109528f,0.128818f,-0.147023f}, - {0.109589f,0.12887f,-0.147351f},{-0.0450044f,0.310086f,0.0918925f},{-0.0447138f,0.309811f,0.0776945f}, - {-0.0438675f,0.308813f,0.0632202f},{-0.0432191f,0.308048f,0.0559028f},{-0.0440605f,0.30843f,0.0632405f}, - {-0.0424153f,0.3071f,0.0485453f},{-0.0414528f,0.305965f,0.0411587f},{-0.0403286f,0.30464f,0.0337544f}, - {-0.03904f,0.30312f,0.0263442f},{-0.0375849f,0.301405f,0.0189407f},{-0.0359618f,0.299491f,0.0115564f}, - {-0.0279788f,0.289468f,-0.0174445f},{-0.0302782f,0.292179f,-0.010276f},{-0.0300755f,0.29255f,-0.0103481f}, - {-0.0277744f,0.289837f,-0.0175217f},{-0.0253055f,0.286925f,-0.0246083f},{-0.0226705f,0.283818f,-0.0315939f}, - {-0.0198719f,0.280518f,-0.038465f},{-0.0107446f,0.269146f,-0.0581524f},{-0.0105281f,0.269501f,-0.0582583f}, - {-0.0140109f,0.272998f,-0.051709f},{-0.00711189f,0.265473f,-0.0645398f},{-0.00355341f,0.261277f,-0.0706427f}, - {0.00014133f,0.25692f,-0.0765558f},{0.0117437f,0.242629f,-0.0929216f},{0.0159114f,0.237715f,-0.0979716f}, - {0.0119761f,0.242965f,-0.093052f},{0.0161467f,0.238048f,-0.0981056f},{0.020417f,0.233012f,-0.102923f}, - {0.0247786f,0.227869f,-0.107499f},{0.029223f,0.222629f,-0.111826f},{0.0427103f,0.206115f,-0.123123f}, - {0.0429646f,0.206426f,-0.123274f},{0.0380739f,0.211582f,-0.119568f},{0.0476515f,0.200899f,-0.126571f}, - {0.0523769f,0.195327f,-0.129604f},{0.057132f,0.18972f,-0.132375f},{0.061908f,0.184089f,-0.134885f}, - {0.0666966f,0.178442f,-0.137135f},{0.0714895f,0.172791f,-0.139127f},{0.0858152f,0.155899f,-0.143596f}, - {0.0996159f,0.139016f,-0.145739f},{0.0949576f,0.144509f,-0.145199f},{0.0999103f,0.139279f,-0.145907f}, - {0.109409f,0.128718f,-0.146724f},{-0.0434125f,0.307666f,0.0559281f},{-0.0426093f,0.306719f,0.0485758f}, - {-0.0416475f,0.305585f,0.0411945f},{-0.0405241f,0.30426f,0.0337954f},{-0.0392364f,0.302742f,0.0263905f}, - {-0.0377824f,0.301027f,0.0189921f},{-0.0361604f,0.299115f,0.0116131f},{-0.0343693f,0.297003f,0.00426646f}, - {-0.0324086f,0.294691f,-0.00303443f},{-0.0255116f,0.286558f,-0.0245261f},{-0.0228784f,0.283454f,-0.0315068f}, - {-0.0200818f,0.280156f,-0.0383731f},{-0.0171247f,0.276669f,-0.0451116f},{-0.00733081f,0.265121f,-0.0644294f}, - {-0.00377484f,0.260928f,-0.0705281f},{-8.27133e-005f,0.256574f,-0.076437f},{0.00373911f,0.252068f,-0.0821454f}, - {0.00768371f,0.247417f,-0.0876434f},{0.0201786f,0.232683f,-0.102786f},{0.0245372f,0.227544f,-0.107358f}, - {0.0289785f,0.222307f,-0.111682f},{0.0334938f,0.216983f,-0.115753f},{0.047394f,0.200593f,-0.126416f}, - {0.052116f,0.195025f,-0.129448f},{0.0568677f,0.189422f,-0.132217f},{0.0616404f,0.183794f,-0.134725f}, - {0.0664256f,0.178152f,-0.136973f},{0.0712151f,0.172504f,-0.138964f},{0.0760009f,0.166861f,-0.140701f}, - {0.0807752f,0.161232f,-0.142188f},{0.0855307f,0.155624f,-0.14343f},{0.0902604f,0.150047f,-0.144432f}, - {0.211424f,0.00837609f,-0.0892991f},{0.207327f,0.0132075f,-0.0946258f},{0.207297f,0.0136221f,-0.0942128f}, - {0.189516f,0.0330114f,-0.114f},{0.194008f,0.0277151f,-0.109627f},{0.18495f,0.0383959f,-0.118117f}, - {0.180317f,0.0438583f,-0.121975f},{0.175628f,0.0493877f,-0.125571f},{0.170891f,0.0549734f,-0.128902f}, - {0.166115f,0.0606049f,-0.131968f},{0.161309f,0.0662717f,-0.134769f},{0.175882f,0.0496979f,-0.125419f}, - {0.171348f,0.0556313f,-0.128429f},{0.176075f,0.0500576f,-0.125105f},{0.156482f,0.0719635f,-0.137305f}, - {0.151642f,0.0776702f,-0.139579f},{0.146798f,0.0833819f,-0.141592f},{0.137129f,0.0947828f,-0.144853f}, - {0.141958f,0.0890892f,-0.143349f},{0.132319f,0.100454f,-0.146109f},{0.127536f,0.106094f,-0.147122f}, - {0.122786f,0.111696f,-0.147899f},{0.113356f,0.122814f,-0.146057f},{0.123077f,0.111963f,-0.147731f}, - {0.127824f,0.106365f,-0.146955f},{0.122628f,0.111882f,-0.145199f},{0.122939f,0.112125f,-0.145366f}, - {0.11797f,0.117374f,-0.145739f},{0.128232f,0.10685f,-0.146081f},{0.13286f,0.101014f,-0.145599f}, - {0.128086f,0.106643f,-0.14661f},{0.113957f,0.123303f,-0.146574f},{0.114154f,0.12345f,-0.147105f}, - {0.11366f,0.123066f,-0.146225f},{0.123346f,0.112232f,-0.147384f},{0.114166f,0.123436f,-0.147719f}, - {0.113408f,0.122753f,-0.148767f},{0.113706f,0.123012f,-0.148599f},{0.118074f,0.117251f,-0.148445f}, - {0.113989f,0.123266f,-0.148251f},{0.123502f,0.112427f,-0.146855f},{0.198416f,0.0225174f,-0.105003f}, - {0.202732f,0.0174285f,-0.100134f},{0.206947f,0.0124584f,-0.0950266f},{0.211053f,0.00761661f,-0.0896885f}, - {0.215042f,0.00291244f,-0.0841281f},{0.218908f,-0.00164537f,-0.0783547f},{0.222642f,-0.00604854f,-0.0723786f}, - {0.229908f,-0.014006f,-0.059756f},{0.226577f,-0.00949148f,-0.0658715f},{0.230023f,-0.0135541f,-0.0595366f}, - {0.226238f,-0.0102893f,-0.0662105f},{0.229691f,-0.0143607f,-0.059862f},{0.232995f,-0.018256f,-0.053345f}, - {0.236144f,-0.0219695f,-0.0466724f},{0.239135f,-0.0254962f,-0.039857f},{0.241964f,-0.0288315f,-0.0329122f}, - {0.244627f,-0.0319717f,-0.0258517f},{0.249737f,-0.0367996f,-0.0112184f},{0.249613f,-0.0362743f,-0.01099f}, - {0.251887f,-0.0393348f,-0.00391029f},{0.247122f,-0.034914f,-0.0186898f},{0.249448f,-0.0376562f,-0.0114399f}, - {0.251602f,-0.0401968f,-0.00411618f},{0.253585f,-0.0425352f,0.00326766f},{0.255397f,-0.0446712f,0.0106978f}, - {0.257037f,-0.0466056f,0.0181608f},{0.258508f,-0.0483397f,0.0256434f},{0.25981f,-0.0498754f,0.0331326f}, - {0.261141f,-0.0508348f,0.0406518f},{0.260947f,-0.0512152f,0.040616f},{0.260006f,-0.0494959f,0.0331736f}, - {0.26192f,-0.0523623f,0.0480815f},{0.264708f,-0.0544525f,0.0847721f},{0.264344f,-0.0536435f,0.077605f}, - {0.264551f,-0.0538881f,0.0847878f},{0.263067f,-0.0525174f,0.0704555f},{0.263597f,-0.0527627f,0.0704077f}, - {0.262569f,-0.0519307f,0.0631775f},{0.262925f,-0.0529383f,0.0555431f},{0.26358f,-0.0537105f,0.0629336f}, - {0.263387f,-0.0540929f,0.0629134f},{0.262552f,-0.0524986f,0.0704868f},{0.262056f,-0.0519127f,0.0632194f}, - {0.263108f,-0.0531536f,0.0848321f},{0.263495f,-0.053223f,0.0918925f},{0.263623f,-0.0531734f,0.0848218f}, - {0.263492f,-0.0526395f,0.0630396f},{0.264147f,-0.0537919f,0.0703047f},{0.263646f,-0.0532011f,0.0629755f}, - {0.262698f,-0.0532807f,0.0848371f},{0.263135f,-0.0532409f,0.0918925f},{0.262839f,-0.0518701f,0.0556761f}, - {0.262992f,-0.05243f,0.0555957f},{0.262031f,-0.0509164f,0.0482723f},{0.262786f,-0.053351f,0.0918925f}, - {0.262732f,-0.0533202f,0.0555177f},{0.264242f,-0.0551013f,0.0775425f},{0.263889f,-0.054685f,0.0702583f}, - {0.264082f,-0.0543022f,0.0702734f},{0.264451f,-0.055347f,0.0847568f},{0.118369f,0.117514f,-0.148277f}, - {0.132604f,0.100729f,-0.145943f},{0.13741f,0.0950613f,-0.144688f},{0.142235f,0.0893717f,-0.143185f}, - {0.147072f,0.0836684f,-0.141429f},{0.151913f,0.0779607f,-0.139417f},{0.156749f,0.072258f,-0.137145f}, - {0.161573f,0.0665701f,-0.134611f},{0.166375f,0.0609073f,-0.131812f},{0.171148f,0.0552797f,-0.128748f}, - {0.180568f,0.0441723f,-0.121826f},{0.185197f,0.0387137f,-0.117971f},{0.189761f,0.033333f,-0.113856f}, - {0.194249f,0.0280404f,-0.109486f},{0.198654f,0.0228463f,-0.104866f},{0.202967f,0.017761f,-0.1f}, - {0.207179f,0.0127943f,-0.0948962f},{0.211282f,0.00795595f,-0.0895618f},{0.215269f,0.00325506f,-0.0840052f}, - {0.219132f,-0.00129956f,-0.0782359f},{0.222863f,-0.00569967f,-0.072264f},{0.226457f,-0.00993752f,-0.0661002f}, - {0.233209f,-0.0178986f,-0.0532437f},{0.236356f,-0.0216096f,-0.0465757f},{0.239345f,-0.0251337f,-0.039765f}, - {0.242172f,-0.0284667f,-0.0328251f},{0.244833f,-0.0316048f,-0.0257695f},{0.247326f,-0.034545f,-0.0186126f}, - {0.24965f,-0.0372852f,-0.0113678f},{0.251803f,-0.0398241f,-0.00404916f},{0.253785f,-0.0421608f,0.00332952f}, - {0.255595f,-0.0442954f,0.0107545f},{0.257235f,-0.0462284f,0.0182123f},{0.258704f,-0.0479613f,0.0256896f}, - {0.262114f,-0.0519811f,0.0481121f},{0.262182f,-0.0514742f,0.0481755f},{0.264643f,-0.0549637f,0.0847617f}, - {0.264435f,-0.0547182f,0.0775525f},{0.264695f,-0.0550917f,0.0918925f},{0.264532f,-0.055409f,0.0918925f}, - {0.118645f,0.117775f,-0.147929f},{0.137659f,0.0953554f,-0.144345f},{0.142477f,0.089674f,-0.142845f}, - {0.147307f,0.083979f,-0.141092f},{0.152141f,0.0782795f,-0.139082f},{0.15697f,0.072585f,-0.136814f}, - {0.161787f,0.0669054f,-0.134283f},{0.166582f,0.0612508f,-0.131488f},{0.185377f,0.0390894f,-0.117667f}, - {0.180754f,0.04454f,-0.121517f},{0.180784f,0.0448852f,-0.121044f},{0.189934f,0.0337164f,-0.113559f}, - {0.194416f,0.0284315f,-0.109195f},{0.198814f,0.0232449f,-0.104581f},{0.203121f,0.0181669f,-0.0997223f}, - {0.215405f,0.00368201f,-0.0837506f},{0.219262f,-0.000866029f,-0.0779897f},{0.222988f,-0.00525976f,-0.0720263f}, - {0.236368f,-0.020656f,-0.046069f},{0.236043f,-0.0202731f,-0.0457157f},{0.239345f,-0.0241672f,-0.0392833f}, - {0.233319f,-0.017441f,-0.0530336f},{0.236462f,-0.0211466f,-0.0463752f},{0.239446f,-0.0246657f,-0.0395744f}, - {0.242269f,-0.0279938f,-0.0326445f},{0.244926f,-0.0311274f,-0.0255992f},{0.247416f,-0.0340633f,-0.0184526f}, - {0.253865f,-0.0416681f,0.00345771f},{0.255673f,-0.0437996f,0.0108719f},{0.25731f,-0.0457298f,0.0183189f}, - {0.258778f,-0.0474602f,0.0257854f},{0.260077f,-0.0489926f,0.0332586f},{0.261211f,-0.0503296f,0.0407259f}, - {0.2645f,-0.0542073f,0.0775733f},{0.263992f,-0.053229f,0.0703525f},{0.264774f,-0.0547312f,0.0918925f}, - {0.118812f,0.117958f,-0.147398f},{0.132995f,0.101235f,-0.145073f},{0.137784f,0.095588f,-0.143822f}, - {0.147313f,0.0843511f,-0.13998f},{0.152233f,0.0785499f,-0.138571f},{0.14741f,0.0842368f,-0.140576f}, - {0.142591f,0.0899192f,-0.142325f},{0.157052f,0.0728681f,-0.136307f},{0.161858f,0.0672011f,-0.133782f}, - {0.166643f,0.061559f,-0.130993f},{0.171398f,0.055952f,-0.127941f},{0.176115f,0.0503905f,-0.124624f}, - {0.189737f,0.0343283f,-0.112579f},{0.194415f,0.0288123f,-0.10875f},{0.189942f,0.0340856f,-0.113104f}, - {0.185396f,0.0394466f,-0.117203f},{0.198803f,0.0236373f,-0.104146f},{0.2031f,0.0185705f,-0.0992979f}, - {0.215087f,0.00443712f,-0.0829128f},{0.219206f,-0.000420286f,-0.0776135f},{0.215358f,0.00411768f,-0.0833616f}, - {0.211385f,0.00880137f,-0.0888979f},{0.222924f,-0.00480429f,-0.0716633f},{0.226505f,-0.00902663f,-0.0655221f}, - {0.229943f,-0.0130802f,-0.0592012f},{0.233232f,-0.0169586f,-0.0527127f},{0.242162f,-0.027488f,-0.0323688f}, - {0.244813f,-0.0306146f,-0.025339f},{0.247298f,-0.0335441f,-0.0182083f},{0.253364f,-0.0406967f,0.00387953f}, - {0.255536f,-0.0432588f,0.0110514f},{0.253733f,-0.041132f,0.00365355f},{0.251758f,-0.0388039f,-0.00369814f}, - {0.25717f,-0.0451848f,0.0184819f},{0.258634f,-0.0469113f,0.0259318f},{0.259931f,-0.0484403f,0.0333884f}, - {0.261062f,-0.0497743f,0.0408392f},{0.263098f,-0.0521747f,0.0631135f},{0.264756f,-0.0543717f,0.0918925f}, - {0.123467f,0.112469f,-0.146243f},{0.118788f,0.117986f,-0.146785f},{0.128185f,0.106907f,-0.145472f}, - {0.132935f,0.101305f,-0.144466f},{0.137711f,0.0956732f,-0.143218f},{0.142507f,0.0900189f,-0.141725f}, - {0.152124f,0.0786788f,-0.137981f},{0.166497f,0.0617313f,-0.130423f},{0.161724f,0.067359f,-0.133204f}, - {0.161421f,0.067337f,-0.132703f},{0.15693f,0.0730115f,-0.135723f},{0.17124f,0.0561387f,-0.127378f}, - {0.175944f,0.0505915f,-0.12407f},{0.180601f,0.0451003f,-0.120499f},{0.185202f,0.0396756f,-0.116668f}, - {0.20204f,0.0188534f,-0.0981062f},{0.202466f,0.0189389f,-0.098384f},{0.19777f,0.0238885f,-0.102924f}, - {0.194197f,0.0290685f,-0.108236f},{0.198575f,0.0239067f,-0.103644f},{0.202861f,0.018853f,-0.0988083f}, - {0.207047f,0.0139172f,-0.0937362f},{0.211125f,0.00910882f,-0.0884349f},{0.225299f,-0.00857174f,-0.0645409f}, - {0.225759f,-0.00852633f,-0.0647696f},{0.22174f,-0.00437572f,-0.0706439f},{0.218925f,-8.92274e-005f,-0.0771794f}, - {0.222634f,-0.004462f,-0.0712445f},{0.226205f,-0.00867353f,-0.065119f},{0.229634f,-0.0127167f,-0.0588143f}, - {0.232915f,-0.0165852f,-0.0523423f},{0.244467f,-0.0302062f,-0.0250388f},{0.241822f,-0.0270876f,-0.0320505f}, - {0.241341f,-0.0268995f,-0.0317747f},{0.239013f,-0.0237754f,-0.0389474f},{0.246945f,-0.0331282f,-0.0179263f}, - {0.249254f,-0.0358514f,-0.0107265f},{0.251394f,-0.0383745f,-0.00345334f},{0.255163f,-0.042818f,0.0112584f}, - {0.259546f,-0.0479863f,0.0335382f},{0.258252f,-0.0464612f,0.0261007f},{0.257734f,-0.0462299f,0.0262471f}, - {0.256792f,-0.044739f,0.0186698f},{0.260674f,-0.0493168f,0.04097f},{0.26164f,-0.050456f,0.048384f}, - {0.262447f,-0.0514073f,0.0557688f},{0.263947f,-0.0531761f,0.0776416f},{0.264154f,-0.0534201f,0.084806f}, - {0.264446f,-0.0537122f,0.0918925f},{0.264646f,-0.0540229f,0.0918925f},{0.123249f,0.112347f,-0.145713f}, - {0.11858f,0.117852f,-0.146254f},{0.127956f,0.106797f,-0.144944f},{0.132696f,0.101208f,-0.14394f}, - {0.137461f,0.0955882f,-0.142695f},{0.142246f,0.0899465f,-0.141205f},{0.147042f,0.0842913f,-0.139464f}, - {0.151842f,0.0786316f,-0.137469f},{0.156638f,0.0729769f,-0.135216f},{0.16581f,0.0615739f,-0.129604f}, - {0.170536f,0.0560018f,-0.126571f},{0.170915f,0.0561416f,-0.12689f},{0.166183f,0.0617218f,-0.129928f}, - {0.175609f,0.0506068f,-0.123589f},{0.180256f,0.0451278f,-0.120026f},{0.184846f,0.0397152f,-0.116203f}, - {0.189371f,0.0343798f,-0.112124f},{0.193822f,0.0291317f,-0.10779f},{0.19819f,0.0239814f,-0.103209f}, - {0.206643f,0.0140141f,-0.0933231f},{0.210711f,0.00921645f,-0.0880336f},{0.214665f,0.00455514f,-0.0825239f}, - {0.218495f,3.88646e-005f,-0.0768032f},{0.222195f,-0.00432417f,-0.0708815f},{0.22918f,-0.0125605f,-0.0584789f}, - {0.232453f,-0.0164204f,-0.0520214f},{0.235574f,-0.0201001f,-0.0454095f},{0.238538f,-0.0235946f,-0.0386562f}, - {0.243493f,-0.0300252f,-0.0246083f},{0.245962f,-0.0329364f,-0.017522f},{0.246452f,-0.0329266f,-0.017682f}, - {0.243979f,-0.0300111f,-0.0247786f},{0.248756f,-0.0356438f,-0.0104982f},{0.250891f,-0.0381612f,-0.00324118f}, - {0.252856f,-0.0404783f,0.00407537f},{0.254651f,-0.0425948f,0.0114378f},{0.256277f,-0.0445116f,0.0188328f}, - {0.259025f,-0.0477516f,0.0336681f},{0.259641f,-0.0490654f,0.0411575f},{0.260603f,-0.0502004f,0.0485442f}, - {0.261115f,-0.0502158f,0.0484808f},{0.260151f,-0.0490792f,0.0410833f},{0.26192f,-0.051165f,0.0558492f}, - {0.263416f,-0.0529299f,0.0776733f},{0.263855f,-0.0533019f,0.0918925f},{0.26418f,-0.0534707f,0.0918925f}, - {0.118277f,0.117622f,-0.145907f},{0.127639f,0.106583f,-0.144598f},{0.132372f,0.101002f,-0.143596f}, - {0.127325f,0.106343f,-0.144431f},{0.137131f,0.0953908f,-0.142353f},{0.141908f,0.0897573f,-0.140865f}, - {0.146697f,0.0841104f,-0.139127f},{0.15149f,0.0784589f,-0.137134f},{0.156279f,0.0728125f,-0.134885f}, - {0.161055f,0.0671808f,-0.132375f},{0.179512f,0.0448077f,-0.119568f},{0.174875f,0.0502749f,-0.123123f}, - {0.175223f,0.0504751f,-0.123274f},{0.179863f,0.0450041f,-0.119717f},{0.184446f,0.0395993f,-0.1159f}, - {0.188964f,0.0342717f,-0.111826f},{0.193409f,0.0290313f,-0.107499f},{0.205842f,0.0137614f,-0.0929223f}, - {0.206211f,0.0139358f,-0.0930527f},{0.201674f,0.0186755f,-0.0979722f},{0.210274f,0.00914513f,-0.087771f}, - {0.214221f,0.00449063f,-0.0822693f},{0.218046f,-1.90473e-005f,-0.0765569f},{0.22833f,-0.0127558f,-0.0581535f}, - {0.231596f,-0.0166073f,-0.0517099f},{0.228715f,-0.0126001f,-0.0582594f},{0.231984f,-0.0164543f,-0.0518113f}, - {0.2351f,-0.0201286f,-0.0452091f},{0.238059f,-0.023618f,-0.0384656f},{0.240858f,-0.026918f,-0.0315942f}, - {0.247864f,-0.035789f,-0.0102766f},{0.248263f,-0.0356496f,-0.0103487f},{0.245565f,-0.0330777f,-0.0174448f}, - {0.250395f,-0.0381634f,-0.0031023f},{0.252357f,-0.040477f,0.00420356f},{0.25415f,-0.0425905f,0.0115553f}, - {0.255773f,-0.0445045f,0.0189394f},{0.257228f,-0.0462203f,0.026343f},{0.258517f,-0.0477397f,0.0337531f}, - {0.261407f,-0.0511481f,0.0559018f},{0.262492f,-0.0530377f,0.0777041f},{0.262143f,-0.0526261f,0.0705019f}, - {0.262902f,-0.0529105f,0.077694f},{0.132055f,0.100766f,-0.143429f},{0.13681f,0.095159f,-0.142188f}, - {0.141584f,0.0895295f,-0.140701f},{0.14637f,0.0838865f,-0.138964f},{0.151159f,0.078239f,-0.136973f}, - {0.155945f,0.0725966f,-0.134725f},{0.160717f,0.0669689f,-0.132217f},{0.165469f,0.0613659f,-0.129448f}, - {0.170191f,0.0557978f,-0.126416f},{0.184092f,0.0394068f,-0.115753f},{0.188607f,0.034083f,-0.111682f}, - {0.193048f,0.0288463f,-0.107358f},{0.197407f,0.0237071f,-0.102786f},{0.209901f,0.0089741f,-0.0876442f}, - {0.213846f,0.00432289f,-0.0821464f},{0.217668f,-0.000183612f,-0.0764381f},{0.22136f,-0.00453721f,-0.0705292f}, - {0.224916f,-0.00873028f,-0.0644306f},{0.23471f,-0.020279f,-0.0451124f},{0.237668f,-0.0237659f,-0.0383737f}, - {0.240464f,-0.0270636f,-0.0315071f},{0.243098f,-0.0301686f,-0.0245261f},{0.249994f,-0.038301f,-0.0030353f}, - {0.251955f,-0.0406131f,0.00426541f},{0.253746f,-0.042725f,0.0116119f},{0.255368f,-0.0446377f,0.0189909f}, - {0.256823f,-0.0463522f,0.0263892f},{0.25811f,-0.0478706f,0.0337941f},{0.259234f,-0.0491954f,0.0411933f}, - {0.260196f,-0.0503295f,0.0485748f},{0.260999f,-0.0512766f,0.0559272f},{0.261647f,-0.0520407f,0.0632397f}, - {-0.164482f,0.077386f,-0.141015f},{-0.160376f,0.0813663f,-0.142188f},{-0.165975f,0.076557f,-0.140701f}, - {-0.193989f,0.0524965f,-0.129448f},{-0.195149f,0.0510464f,-0.12867f},{-0.190161f,0.0553306f,-0.131224f}, - {-0.144011f,0.0959421f,-0.145366f},{-0.144282f,0.0962099f,-0.145713f},{-0.149803f,0.0914681f,-0.144944f}, - {-0.154798f,0.0861567f,-0.143429f},{-0.15923f,0.0818969f,-0.142366f},{-0.155583f,0.0868273f,-0.144466f}, - {-0.150012f,0.0916126f,-0.145472f},{-0.143742f,0.0956526f,-0.145199f},{-0.149524f,0.0912072f,-0.144598f}, - {-0.149251f,0.0909211f,-0.144431f},{-0.13357f,0.105734f,-0.147719f},{-0.133556f,0.105746f,-0.147105f}, - {-0.128196f,0.110381f,-0.147351f},{-0.144478f,0.096365f,-0.146243f},{-0.127892f,0.110028f,-0.148558f}, - {-0.133182f,0.105243f,-0.148599f},{-0.133422f,0.105538f,-0.148251f},{-0.128143f,0.11032f,-0.148015f}, - {-0.138114f,0.100033f,-0.148493f},{-0.138401f,0.10024f,-0.148445f},{-0.132929f,0.10494f,-0.148767f}, - {-0.132705f,0.104679f,-0.14881f},{-0.12751f,0.109583f,-0.148876f},{-0.127291f,0.109328f,-0.148916f}, - {-0.174884f,0.0684522f,-0.137702f},{-0.171588f,0.0717361f,-0.138964f},{-0.177206f,0.0669114f,-0.136973f}, - {-0.169701f,0.0729032f,-0.13946f},{-0.182818f,0.062091f,-0.134725f},{-0.180024f,0.0640372f,-0.135742f}, - {-0.188716f,0.0575456f,-0.132375f},{-0.188416f,0.0572832f,-0.132217f},{-0.185118f,0.0596621f,-0.133582f}, - {-0.199528f,0.0477396f,-0.126416f},{-0.200078f,0.0468134f,-0.125923f},{-0.210459f,0.0383507f,-0.119568f}, - {-0.215831f,0.0337366f,-0.115753f},{-0.214463f,0.0344587f,-0.116543f},{-0.205021f,0.0430213f,-0.123123f}, - {-0.228159f,0.0226953f,-0.105516f},{-0.223677f,0.0265448f,-0.109369f},{-0.226336f,0.0247146f,-0.107358f}, - {-0.21911f,0.0304671f,-0.113046f},{-0.236853f,0.0152278f,-0.0972923f},{-0.236452f,0.0160256f,-0.0979722f}, - {-0.24134f,0.0118274f,-0.0929223f},{-0.231448f,0.0203242f,-0.102786f},{-0.249164f,0.00465414f,-0.0837205f}, - {-0.250729f,0.00376401f,-0.0821464f},{-0.253058f,0.00130946f,-0.0788827f},{-0.246102f,0.00773759f,-0.0876442f}, - {-0.264065f,-0.00814415f,-0.0634868f},{-0.260512f,-0.00509248f,-0.0687614f},{-0.263712f,-0.00738746f,-0.0644306f}, - {-0.256842f,-0.00194036f,-0.0738949f},{-0.259542f,-0.00380527f,-0.0705292f},{-0.273991f,-0.0166696f,-0.0468636f}, - {-0.271547f,-0.0141168f,-0.0517099f},{-0.2752f,-0.0172537f,-0.0451124f},{-0.267717f,-0.0108265f,-0.0581535f}, - {-0.281948f,-0.0230499f,-0.0315071f},{-0.282759f,-0.0241996f,-0.0291439f},{-0.27997f,-0.0218041f,-0.0351637f}, - {-0.277046f,-0.0192933f,-0.041072f},{-0.290298f,-0.0306748f,-0.010468f},{-0.287925f,-0.0286369f,-0.0167907f}, - {-0.290627f,-0.030504f,-0.0102766f},{-0.285037f,-0.0257024f,-0.0245261f},{-0.293126f,-0.0326501f,-0.0030353f}, - {-0.294612f,-0.0343798f,0.00244111f},{-0.292527f,-0.0325897f,-0.00405553f},{-0.299429f,-0.0380636f,0.0189909f}, - {-0.298338f,-0.0375801f,0.0156645f},{-0.297526f,-0.0364296f,0.0116119f},{-0.296549f,-0.0360438f,0.00901635f}, - {-0.295426f,-0.0346253f,0.00426541f},{-0.301463f,-0.0402644f,0.0291557f},{-0.302645f,-0.0408255f,0.0337941f}, - {-0.302797f,-0.04141f,0.0359868f},{-0.301134f,-0.0395283f,0.0263892f},{-0.299976f,-0.0389874f,0.0223796f}, - {-0.303977f,-0.0424232f,0.0428671f},{-0.30509f,-0.0429262f,0.0485748f},{-0.305001f,-0.0433031f,0.0497904f}, - {-0.303962f,-0.0419573f,0.0411933f},{-0.308026f,-0.0454474f,0.0848371f},{-0.307848f,-0.0457485f,0.0918925f}, - {-0.307769f,-0.0456805f,0.0848393f},{-0.305869f,-0.044049f,0.0567509f},{-0.306032f,-0.0437353f,0.0559272f}, - {-0.307375f,-0.0448882f,0.0705019f},{-0.307759f,-0.0446979f,0.0704868f},{-0.308168f,-0.0450498f,0.077694f}, - {-0.307531f,-0.0454763f,0.0777923f},{-0.306581f,-0.0446602f,0.0637421f},{-0.307135f,-0.0451361f,0.0707579f}, - {-0.307784f,-0.0452398f,0.0777041f},{-0.306792f,-0.044388f,0.0632397f},{-0.30868f,-0.0449881f,0.0776733f}, - {-0.309485f,-0.0453564f,0.084806f},{-0.308922f,-0.0451961f,0.0848218f},{-0.305473f,-0.0427346f,0.0485442f}, - {-0.304344f,-0.041765f,0.0411575f},{-0.308269f,-0.0446357f,0.0704555f},{-0.307176f,-0.0441974f,0.0632194f}, - {-0.307686f,-0.0441345f,0.0631775f},{-0.30598f,-0.0426695f,0.0484808f},{-0.309295f,-0.0451931f,0.0703525f}, - {-0.308709f,-0.0446894f,0.0630396f},{-0.309537f,-0.0457246f,0.0703047f},{-0.308247f,-0.0442923f,0.0631135f}, - {-0.308831f,-0.0447947f,0.0704077f},{-0.309553f,-0.0462388f,0.0702734f},{-0.309967f,-0.0465942f,0.0775525f}, - {-0.310303f,-0.0465537f,0.0918925f},{-0.310194f,-0.0462889f,0.0847721f},{-0.310211f,-0.046804f,0.0847617f}, - {-0.310081f,-0.0472127f,0.0847568f},{-0.310171f,-0.0472612f,0.0918925f},{-0.310283f,-0.046913f,0.0918925f}, - {-0.30997f,-0.0475707f,0.0918925f},{-0.301514f,-0.0393343f,0.026343f},{-0.278668f,-0.0202326f,-0.0383737f}, - {-0.285411f,-0.0264779f,-0.0230178f},{-0.28793f,-0.0281877f,-0.0174448f},{-0.282314f,-0.0228442f,-0.0315942f}, - {-0.270808f,-0.0139352f,-0.0525331f},{-0.267498f,-0.0110925f,-0.0580758f},{-0.255211f,-8.59432e-005f,-0.0764381f}, - {-0.245163f,0.00809075f,-0.088404f},{-0.259892f,-0.00358602f,-0.0706439f},{-0.260333f,-0.0034637f,-0.0708815f}, - {-0.264512f,-0.00705366f,-0.0647696f},{-0.241058f,0.0116164f,-0.0929293f},{-0.232552f,0.0189219f,-0.101489f}, - {-0.209739f,0.0385159f,-0.119856f},{-0.204942f,0.0426353f,-0.122984f},{-0.221127f,0.0291884f,-0.111682f}, - {-0.237193f,0.0164102f,-0.098384f},{-0.231778f,0.0205605f,-0.102924f},{-0.232178f,0.0207181f,-0.103209f}, - {-0.15395f,0.0864318f,-0.14351f},{-0.148646f,0.090987f,-0.144448f},{-0.143324f,0.0955583f,-0.145179f}, - {-0.133384f,0.10557f,-0.146574f},{-0.128144f,0.110321f,-0.147023f},{-0.138279f,0.100345f,-0.145739f}, - {-0.137988f,0.100142f,-0.145701f},{-0.132868f,0.104993f,-0.146057f},{-0.132642f,0.104733f,-0.146014f}, - {-0.128196f,0.110381f,-0.147687f},{-0.12751f,0.109583f,-0.146158f},{-0.127291f,0.109328f,-0.146119f}, - {-0.12771f,0.109815f,-0.146297f},{-0.127896f,0.110032f,-0.146474f},{-0.133129f,0.105289f,-0.146225f}, - {-0.128042f,0.110202f,-0.146724f},{-0.138543f,0.100638f,-0.145907f},{-0.155075f,0.0864395f,-0.143596f}, - {-0.160656f,0.0816457f,-0.142353f},{-0.16626f,0.0768329f,-0.140865f},{-0.171877f,0.0720087f,-0.139127f}, - {-0.177498f,0.0671806f,-0.137134f},{-0.183114f,0.0623568f,-0.134885f},{-0.194638f,0.0529602f,-0.129928f}, - {-0.200189f,0.0481929f,-0.12689f},{-0.194293f,0.0527555f,-0.129604f},{-0.199836f,0.0479952f,-0.126571f}, - {-0.205333f,0.0432736f,-0.123274f},{-0.210775f,0.0385997f,-0.119717f},{-0.216151f,0.0339824f,-0.1159f}, - {-0.22145f,0.0294309f,-0.111826f},{-0.226663f,0.024954f,-0.107499f},{-0.236786f,0.0162589f,-0.0981062f}, - {-0.241678f,0.0120577f,-0.0930527f},{-0.246443f,0.00796499f,-0.087771f},{-0.251073f,0.00398861f,-0.0822693f}, - {-0.255558f,0.000135934f,-0.0765569f},{-0.264066f,-0.00717073f,-0.0645409f},{-0.268073f,-0.0106122f,-0.0582594f}, - {-0.271906f,-0.0139049f,-0.0518113f},{-0.275561f,-0.0170439f,-0.0452091f},{-0.279032f,-0.0200249f,-0.0384656f}, - {-0.29201f,-0.0303472f,-0.0107265f},{-0.288783f,-0.0278991f,-0.017682f},{-0.289301f,-0.0280207f,-0.0179263f}, - {-0.285405f,-0.0254986f,-0.0246083f},{-0.288301f,-0.0279857f,-0.017522f},{-0.290999f,-0.0303036f,-0.0103487f}, - {-0.2935f,-0.0324512f,-0.0031023f},{-0.295801f,-0.0344278f,0.00420356f},{-0.297903f,-0.0362334f,0.0115553f}, - {-0.299807f,-0.0378685f,0.0189394f},{-0.303025f,-0.0406324f,0.0337531f},{-0.30485f,-0.0416984f,0.0410833f}, - {-0.306415f,-0.0435442f,0.0559018f},{-0.30841f,-0.0452575f,0.0848321f},{-0.308442f,-0.0453419f,0.0918925f}, - {-0.308124f,-0.045503f,0.0918925f},{-0.128039f,0.110199f,-0.14831f},{-0.138807f,0.100913f,-0.146254f}, - {-0.155362f,0.0866934f,-0.14394f},{-0.160952f,0.0818926f,-0.142695f},{-0.166563f,0.0770728f,-0.141205f}, - {-0.172189f,0.0722415f,-0.139464f},{-0.177818f,0.0674064f,-0.137469f},{-0.183443f,0.0625755f,-0.135216f}, - {-0.189053f,0.0577573f,-0.132703f},{-0.205694f,0.0434645f,-0.123589f},{-0.206027f,0.043502f,-0.12407f}, - {-0.211489f,0.0388108f,-0.120499f},{-0.211144f,0.0387837f,-0.120026f},{-0.216528f,0.0341596f,-0.116203f}, - {-0.221835f,0.0296015f,-0.112124f},{-0.227055f,0.0251181f,-0.10779f},{-0.247289f,0.00806285f,-0.0884349f}, - {-0.247595f,0.00780019f,-0.0888979f},{-0.252254f,0.00379886f,-0.0833616f},{-0.242092f,0.0122029f,-0.0933231f}, - {-0.246864f,0.0081042f,-0.0880336f},{-0.251501f,0.00412199f,-0.0825239f},{-0.255993f,0.000263687f,-0.0768032f}, - {-0.272846f,-0.0138878f,-0.0523423f},{-0.273218f,-0.0142069f,-0.0527127f},{-0.276895f,-0.0173656f,-0.046069f}, - {-0.268525f,-0.0105001f,-0.0584789f},{-0.272364f,-0.0137976f,-0.0520214f},{-0.276025f,-0.0169413f,-0.0454095f}, - {-0.2795f,-0.0199266f,-0.0386562f},{-0.282788f,-0.02275f,-0.0317747f},{-0.285883f,-0.0254083f,-0.0247786f}, - {-0.291486f,-0.0302204f,-0.0104982f},{-0.29399f,-0.0323711f,-0.00324118f},{-0.296294f,-0.0343506f,0.00407537f}, - {-0.2984f,-0.0361588f,0.0114378f},{-0.300306f,-0.0377963f,0.0188328f},{-0.302015f,-0.0392642f,0.0262471f}, - {-0.303529f,-0.0405642f,0.0336681f},{-0.306924f,-0.0434803f,0.0558492f},{-0.309707f,-0.0455472f,0.077605f}, - {-0.308803f,-0.0452653f,0.0918925f},{-0.138651f,0.100546f,-0.148277f},{-0.138991f,0.101078f,-0.146785f}, - {-0.161185f,0.0820158f,-0.143218f},{-0.16127f,0.081943f,-0.143822f},{-0.166909f,0.0771001f,-0.142325f}, - {-0.166809f,0.0771853f,-0.141725f},{-0.172447f,0.0723432f,-0.13998f},{-0.178089f,0.0674973f,-0.137981f}, - {-0.183726f,0.0626556f,-0.135723f},{-0.189349f,0.0578266f,-0.133204f},{-0.194947f,0.0530188f,-0.130423f}, - {-0.200509f,0.048241f,-0.127378f},{-0.216885f,0.0341764f,-0.116668f},{-0.217113f,0.0339808f,-0.117203f}, - {-0.222445f,0.0294008f,-0.113104f},{-0.222204f,0.0296081f,-0.112579f},{-0.227436f,0.0251146f,-0.108236f}, - {-0.23257f,0.0207049f,-0.103644f},{-0.237597f,0.0163874f,-0.0988083f},{-0.242506f,0.0121707f,-0.0937362f}, - {-0.251936f,0.00407176f,-0.0829128f},{-0.256438f,0.00020485f,-0.0771794f},{-0.260788f,-0.00353086f,-0.0712445f}, - {-0.264977f,-0.00712881f,-0.065119f},{-0.268999f,-0.010583f,-0.0588143f},{-0.276515f,-0.0170385f,-0.0457157f}, - {-0.279998f,-0.0200305f,-0.0389474f},{-0.283293f,-0.0228602f,-0.0320505f},{-0.286395f,-0.0255244f,-0.0250388f}, - {-0.29452f,-0.0325027f,-0.00345334f},{-0.294947f,-0.0328695f,-0.00369814f},{-0.297263f,-0.0348585f,0.00365355f}, - {-0.29683f,-0.0344866f,0.00387953f},{-0.29894f,-0.0362988f,0.0112584f},{-0.30085f,-0.03794f,0.0186698f}, - {-0.302563f,-0.0394112f,0.0261007f},{-0.30408f,-0.0407141f,0.0335382f},{-0.305404f,-0.0418509f,0.04097f}, - {-0.306537f,-0.0428241f,0.048384f},{-0.307483f,-0.0436367f,0.0557688f},{-0.309243f,-0.0451479f,0.0776416f}, - {-0.309162f,-0.0452855f,0.0918925f},{-0.14452f,0.0963291f,-0.146855f},{-0.150068f,0.0915645f,-0.146081f}, - {-0.139019f,0.101054f,-0.147398f},{-0.155654f,0.0867669f,-0.145073f},{-0.172561f,0.0722455f,-0.140576f}, - {-0.178217f,0.0673872f,-0.138571f},{-0.183869f,0.0625331f,-0.136307f},{-0.183833f,0.0622407f,-0.136814f}, - {-0.189482f,0.0573886f,-0.134283f},{-0.189506f,0.0576918f,-0.133782f},{-0.195118f,0.0528716f,-0.130993f}, - {-0.200695f,0.0480815f,-0.127941f},{-0.206227f,0.0433303f,-0.124624f},{-0.211703f,0.0386271f,-0.121044f}, - {-0.22769f,0.0248958f,-0.10875f},{-0.227751f,0.0245198f,-0.109195f},{-0.23291f,0.0200889f,-0.104581f}, - {-0.232838f,0.0204747f,-0.104146f},{-0.237878f,0.0161461f,-0.0992979f},{-0.2428f,0.0119186f,-0.0942128f}, - {-0.256767f,-7.79773e-005f,-0.0776135f},{-0.256893f,-0.000509374f,-0.0779897f},{-0.261263f,-0.00426299f,-0.0720263f}, - {-0.261128f,-0.00382328f,-0.0716633f},{-0.265328f,-0.00743047f,-0.0655221f},{-0.26936f,-0.0108935f,-0.0592012f}, - {-0.280388f,-0.0203653f,-0.0392833f},{-0.280566f,-0.0208417f,-0.0395744f},{-0.283876f,-0.023685f,-0.0326445f}, - {-0.283691f,-0.0232022f,-0.0323688f},{-0.286801f,-0.0258733f,-0.025339f},{-0.289715f,-0.028376f,-0.0182083f}, - {-0.292431f,-0.0307085f,-0.01099f},{-0.299378f,-0.0366754f,0.0110514f},{-0.301294f,-0.0383208f,0.0184819f}, - {-0.301518f,-0.038837f,0.0183189f},{-0.303239f,-0.0403153f,0.0257854f},{-0.303011f,-0.0397958f,0.0259318f}, - {-0.304532f,-0.041102f,0.0333884f},{-0.305859f,-0.0422417f,0.0408392f},{-0.306995f,-0.0432174f,0.0482723f}, - {-0.307944f,-0.0440321f,0.0556761f},{-0.309951f,-0.0457562f,0.0847878f},{-0.30982f,-0.0455988f,0.0918925f}, - {-0.309511f,-0.0453977f,0.0918925f},{-0.144396f,0.0961117f,-0.147384f},{-0.149956f,0.0913365f,-0.14661f}, - {-0.138883f,0.100847f,-0.147929f},{-0.155555f,0.0865282f,-0.145599f},{-0.161183f,0.0816937f,-0.144345f}, - {-0.166835f,0.07684f,-0.142845f},{-0.172499f,0.0719747f,-0.141092f},{-0.178168f,0.0671055f,-0.139082f}, - {-0.195107f,0.0525577f,-0.131488f},{-0.200554f,0.0473783f,-0.128748f},{-0.200696f,0.047757f,-0.128429f}, - {-0.20624f,0.0429952f,-0.125105f},{-0.211728f,0.0382816f,-0.121517f},{-0.21715f,0.033625f,-0.117667f}, - {-0.222494f,0.0290348f,-0.113559f},{-0.237873f,0.0153256f,-0.1f},{-0.237961f,0.0157507f,-0.0997223f}, - {-0.242894f,0.0115138f,-0.0946258f},{-0.2477f,0.00738628f,-0.0892991f},{-0.252369f,0.00337607f,-0.0837506f}, - {-0.265424f,-0.00833753f,-0.0661002f},{-0.265472f,-0.00787819f,-0.0658715f},{-0.269513f,-0.0113489f,-0.0595366f}, - {-0.27338f,-0.0146696f,-0.0530336f},{-0.277066f,-0.0178353f,-0.0463752f},{-0.286976f,-0.0268481f,-0.0257695f}, - {-0.286993f,-0.026362f,-0.0255992f},{-0.289914f,-0.0288702f,-0.0184526f},{-0.292635f,-0.0312079f,-0.0112184f}, - {-0.295157f,-0.0333737f,-0.00391029f},{-0.297478f,-0.0353671f,0.00345771f},{-0.299598f,-0.037188f,0.0108719f}, - {-0.304763f,-0.0416245f,0.0332586f},{-0.306104f,-0.0432766f,0.0406518f},{-0.306093f,-0.0427667f,0.0407259f}, - {-0.307232f,-0.0437445f,0.0481755f},{-0.308183f,-0.0445611f,0.0555957f},{-0.30895f,-0.0452198f,0.0629755f}, - {-0.30995f,-0.0460795f,0.0775733f},{-0.310227f,-0.0461927f,0.0918925f},{-0.31006f,-0.0458671f,0.0918925f}, - {-0.127713f,0.109819f,-0.148751f},{-0.144173f,0.0958031f,-0.147731f},{-0.149741f,0.091021f,-0.146955f}, - {-0.155347f,0.0862057f,-0.145943f},{-0.160984f,0.0813642f,-0.144688f},{-0.166643f,0.0765035f,-0.143185f}, - {-0.172316f,0.0716311f,-0.141429f},{-0.177994f,0.0667549f,-0.139417f},{-0.183666f,0.061883f,-0.137145f}, - {-0.189324f,0.0570238f,-0.134611f},{-0.194956f,0.052186f,-0.131812f},{-0.205904f,0.0422634f,-0.125571f}, - {-0.210708f,0.0376835f,-0.122344f},{-0.211404f,0.0375395f,-0.121975f},{-0.206106f,0.0426097f,-0.125419f}, - {-0.211602f,0.0378891f,-0.121826f},{-0.217032f,0.0332258f,-0.117971f},{-0.222384f,0.028629f,-0.113856f}, - {-0.227648f,0.0241074f,-0.109486f},{-0.232815f,0.0196701f,-0.104866f},{-0.242813f,0.0110826f,-0.0948962f}, - {-0.242637f,0.0107143f,-0.0950266f},{-0.247626f,0.00694907f,-0.0895618f},{-0.252302f,0.00293304f,-0.0840052f}, - {-0.256832f,-0.000958027f,-0.0782359f},{-0.261209f,-0.00471708f,-0.072264f},{-0.269313f,-0.0121976f,-0.059862f}, - {-0.272494f,-0.0153837f,-0.0542297f},{-0.273188f,-0.0155254f,-0.053345f},{-0.269471f,-0.0118133f,-0.059756f}, - {-0.273343f,-0.0151388f,-0.0532437f},{-0.277034f,-0.0183091f,-0.0465757f},{-0.280539f,-0.0213198f,-0.039765f}, - {-0.283855f,-0.0241672f,-0.0328251f},{-0.289901f,-0.02936f,-0.0186126f},{-0.292484f,-0.0320992f,-0.0114399f}, - {-0.292626f,-0.031701f,-0.0113678f},{-0.295152f,-0.03387f,-0.00404916f},{-0.297476f,-0.0358663f,0.00332952f}, - {-0.299599f,-0.0376898f,0.0107545f},{-0.301522f,-0.0393413f,0.0182123f},{-0.303246f,-0.0408217f,0.0256896f}, - {-0.304772f,-0.0421327f,0.0331736f},{-0.307244f,-0.0442558f,0.0481121f},{-0.308196f,-0.0450736f,0.0555431f}, - {-0.308964f,-0.0457333f,0.0629336f},{-0.143927f,0.095494f,-0.147899f},{-0.149499f,0.0907085f,-0.147122f}, - {-0.155109f,0.0858899f,-0.146109f},{-0.16075f,0.081045f,-0.144853f},{-0.166413f,0.0761809f,-0.143349f}, - {-0.17209f,0.0713051f,-0.141592f},{-0.177772f,0.0664255f,-0.139579f},{-0.183448f,0.0615502f,-0.137305f}, - {-0.189109f,0.0566876f,-0.134769f},{-0.194746f,0.0518464f,-0.131968f},{-0.200348f,0.0470353f,-0.128902f}, - {-0.216837f,0.032873f,-0.118117f},{-0.222193f,0.0282729f,-0.114f},{-0.227461f,0.0237482f,-0.109627f}, - {-0.232631f,0.0193078f,-0.105003f},{-0.237693f,0.0149603f,-0.100134f},{-0.238141f,0.0141219f,-0.0995149f}, - {-0.247453f,0.00657788f,-0.0896885f},{-0.252132f,0.00255905f,-0.0841281f},{-0.256665f,-0.00133474f,-0.0783547f}, - {-0.261045f,-0.00509642f,-0.0723786f},{-0.265263f,-0.00871939f,-0.0662105f},{-0.276881f,-0.0186979f,-0.0466724f}, - {-0.280389f,-0.0217108f,-0.039857f},{-0.283707f,-0.0245601f,-0.0329122f},{-0.28683f,-0.0272429f,-0.0258517f}, - {-0.289757f,-0.0297565f,-0.0186898f},{-0.289812f,-0.030258f,-0.0180672f},{-0.295012f,-0.0342697f,-0.00411618f}, - {-0.297337f,-0.0362674f,0.00326766f},{-0.299462f,-0.0380922f,0.0106978f},{-0.301386f,-0.0397448f,0.0181608f}, - {-0.303111f,-0.0412262f,0.0256434f},{-0.304639f,-0.0425382f,0.0331326f},{-0.305971f,-0.0436828f,0.040616f}, - {-0.307112f,-0.0446628f,0.0480815f},{-0.308065f,-0.0454811f,0.0555177f},{-0.308834f,-0.0461413f,0.0629134f}, - {-0.309423f,-0.0466471f,0.0702583f},{-0.309837f,-0.0470028f,0.0775425f},{-0.143513f,0.0953962f,-0.147965f}, - {-0.148897f,0.0907713f,-0.147226f},{-0.154263f,0.0861627f,-0.146277f},{-0.159606f,0.0815743f,-0.145118f}, - {-0.164919f,0.0770103f,-0.143752f},{-0.1702f,0.0724748f,-0.142179f},{-0.175443f,0.0679717f,-0.1404f}, - {-0.180644f,0.0635049f,-0.138417f},{-0.185798f,0.0590782f,-0.136232f},{-0.1909f,0.0546957f,-0.133846f}, - {-0.195947f,0.0503613f,-0.131262f},{-0.200933f,0.0460786f,-0.128482f},{-0.205855f,0.0418515f,-0.125509f}, - {-0.215487f,0.0335786f,-0.118992f},{-0.220189f,0.0295402f,-0.115454f},{-0.224809f,0.0255719f,-0.111734f}, - {-0.229344f,0.0216771f,-0.107835f},{-0.233789f,0.0178593f,-0.103761f},{-0.242395f,0.0104681f,-0.0951008f}, - {-0.246548f,0.00690116f,-0.0905224f},{-0.250596f,0.00342407f,-0.0857837f},{-0.254536f,4.00465e-005f,-0.080889f}, - {-0.258365f,-0.00324795f,-0.0758426f},{-0.262078f,-0.00643705f,-0.0706488f},{-0.265672f,-0.00952448f,-0.0653124f}, - {-0.269146f,-0.0125076f,-0.0598376f},{-0.275715f,-0.0181502f,-0.0484934f},{-0.278806f,-0.0208047f,-0.042634f}, - {-0.281763f,-0.0233449f,-0.0366563f},{-0.284585f,-0.0257686f,-0.0305656f},{-0.287269f,-0.0280737f,-0.0243674f}, - {-0.292213f,-0.0323197f,-0.0116704f},{-0.294469f,-0.0342571f,-0.00518257f},{-0.296578f,-0.0360684f,0.00139061f}, - {-0.298538f,-0.0377519f,0.00804317f},{-0.300347f,-0.0393062f,0.0147693f},{-0.302005f,-0.04073f,0.0215631f}, - {-0.303509f,-0.042022f,0.0284189f},{-0.304859f,-0.043181f,0.0353305f},{-0.306052f,-0.0442061f,0.0422916f}, - {-0.307089f,-0.0450964f,0.0492962f},{-0.307967f,-0.045851f,0.0563382f},{-0.308687f,-0.0464693f,0.0634117f}, - {-0.309248f,-0.0469508f,0.0705101f},{-0.309649f,-0.047295f,0.0776272f},{-0.309889f,-0.0475017f,0.0847567f}, - {0.0493934f,0.26108f,0.0428677f},{0.0500586f,0.262105f,0.0485758f},{0.0489305f,0.261136f,0.0411945f}, - {0.0403941f,0.253804f,0.00426646f},{0.0400286f,0.253036f,0.00244165f},{0.041966f,0.2547f,0.00901696f}, - {0.0517606f,0.263566f,0.0632405f},{0.052343f,0.264067f,0.0705025f},{0.0516301f,0.263974f,0.0632202f}, - {0.0512863f,0.262705f,0.0567511f},{0.0519978f,0.263316f,0.0637424f},{0.0528812f,0.26555f,0.084822f}, - {0.0530084f,0.265783f,0.0918925f},{0.0531246f,0.266082f,0.0848062f},{0.0522285f,0.264989f,0.0704561f}, - {0.0516449f,0.264488f,0.0631783f},{0.0522129f,0.264475f,0.0704874f},{0.0535901f,0.266482f,0.084788f}, - {0.0540726f,0.26669f,0.0918925f},{0.0541535f,0.266643f,0.0847723f},{0.0524705f,0.265521f,0.0704083f}, - {0.0518855f,0.265018f,0.0631143f},{0.0550496f,0.266391f,0.084757f},{0.0548051f,0.266181f,0.0775429f}, - {0.0546651f,0.266581f,0.084762f},{0.0544319f,0.26671f,0.0918925f},{0.0553868f,0.266227f,0.0918925f}, - {0.0551112f,0.266473f,0.0918925f},{0.0550661f,0.265952f,0.0776267f},{0.0510006f,0.262914f,0.0559281f}, - {0.0504179f,0.261959f,0.0497909f},{0.0553066f,0.266158f,0.0847564f},{0.0468799f,0.258921f,0.0291561f}, - {0.0476128f,0.260004f,0.0337954f},{0.0461026f,0.258707f,0.0263905f},{0.0482137f,0.260066f,0.0359874f}, - {0.0443972f,0.257242f,0.0189921f},{0.0453931f,0.257644f,0.0223799f},{0.0424948f,0.255608f,0.0116131f}, - {0.0437546f,0.256236f,0.015665f},{0.0380944f,0.251829f,-0.00303443f},{0.0379442f,0.251246f,-0.0040552f}, - {0.0328989f,0.247366f,-0.0174445f},{0.0300052f,0.244881f,-0.0245261f},{0.0308284f,0.245134f,-0.0230172f}, - {0.0355958f,0.249683f,-0.010276f},{0.0224634f,0.23795f,-0.0410717f},{0.0253866f,0.240461f,-0.0351634f}, - {0.0236368f,0.239411f,-0.0383731f},{0.0281758f,0.242856f,-0.0291434f},{0.016225f,0.232592f,-0.0525327f}, - {0.0165165f,0.233296f,-0.051709f},{0.0126856f,0.230006f,-0.0581524f},{0.0201686f,0.236433f,-0.0451116f}, - {0.00592937f,0.223749f,-0.0687612f},{0.004511f,0.222985f,-0.0705281f},{0.00225941f,0.220597f,-0.0738946f}, - {0.00868167f,0.226567f,-0.0644294f},{-0.00942004f,0.210566f,-0.088404f},{-0.00541866f,0.214002f,-0.0837203f}, - {-0.00892832f,0.211442f,-0.0876434f},{-0.00152437f,0.217347f,-0.0788824f},{-0.00430185f,0.215415f,-0.0821454f}, - {-0.0220305f,0.199735f,-0.101489f},{-0.0185782f,0.203154f,-0.0979716f},{-0.0235832f,0.198855f,-0.102786f}, - {-0.0136901f,0.207352f,-0.0929216f},{-0.0339042f,0.189991f,-0.111682f},{-0.0354727f,0.18819f,-0.113046f}, - {-0.030906f,0.192112f,-0.109369f},{-0.026424f,0.195961f,-0.105516f},{-0.0496403f,0.176021f,-0.122984f}, - {-0.0448439f,0.180141f,-0.119856f},{-0.0500098f,0.176158f,-0.123123f},{-0.0392f,0.185442f,-0.115753f}, - {-0.055503f,0.17144f,-0.126416f},{-0.0594332f,0.16761f,-0.12867f},{-0.0545048f,0.171843f,-0.125923f}, - {-0.0722122f,0.157088f,-0.134725f},{-0.0694645f,0.158995f,-0.133582f},{-0.0666145f,0.161896f,-0.132217f}, - {-0.0644212f,0.163326f,-0.131224f},{-0.0610414f,0.166683f,-0.129448f},{-0.079699f,0.150204f,-0.137702f}, - {-0.0778246f,0.152268f,-0.136973f},{-0.083442f,0.147443f,-0.138964f},{-0.0745587f,0.154619f,-0.135742f}, - {-0.0901005f,0.141271f,-0.141015f},{-0.089055f,0.142623f,-0.140701f},{-0.0946547f,0.137813f,-0.142188f}, - {-0.0848811f,0.145754f,-0.13946f},{-0.100633f,0.132225f,-0.143511f},{-0.0953526f,0.13676f,-0.142366f}, - {-0.100232f,0.133023f,-0.14343f},{-0.111882f,0.124362f,-0.146244f},{-0.111758f,0.124144f,-0.145714f}, - {-0.106237f,0.128886f,-0.144944f},{-0.122163f,0.114186f,-0.146058f},{-0.116595f,0.118515f,-0.145701f}, - {-0.116752f,0.118834f,-0.145739f},{-0.121941f,0.113924f,-0.146015f},{-0.111289f,0.123526f,-0.145199f}, - {-0.10578f,0.128258f,-0.144432f},{-0.111534f,0.123836f,-0.145367f},{-0.111259f,0.123099f,-0.145179f}, - {-0.105936f,0.12767f,-0.144449f},{-0.0892849f,0.142945f,-0.140865f},{-0.095088f,0.138462f,-0.142696f}, - {-0.0948885f,0.138132f,-0.142353f},{-0.106348f,0.129114f,-0.145472f},{-0.106021f,0.128571f,-0.144599f}, - {-0.11184f,0.124398f,-0.146855f},{-0.117342f,0.119672f,-0.147398f},{-0.117369f,0.119648f,-0.146786f}, - {-0.111372f,0.123975f,-0.147732f},{-0.116894f,0.119232f,-0.148277f},{-0.111644f,0.124242f,-0.147385f}, - {-0.122619f,0.114816f,-0.148251f},{-0.122363f,0.114535f,-0.148599f},{-0.122103f,0.114239f,-0.148767f}, - {-0.121878f,0.113978f,-0.14881f},{-0.0780466f,0.152598f,-0.137135f},{-0.0286952f,0.194464f,-0.107358f}, - {-0.04012f,0.184198f,-0.116543f},{-0.0445719f,0.180828f,-0.119568f},{-0.0340952f,0.190347f,-0.111826f}, - {-0.0177295f,0.203429f,-0.097292f},{-0.0135248f,0.20704f,-0.0929291f},{0.000180634f,0.219265f,-0.076437f}, - {0.00948232f,0.226801f,-0.0634867f},{-0.00447193f,0.215789f,-0.0822683f},{-0.00453921f,0.216232f,-0.0825229f}, - {-0.00917572f,0.21225f,-0.0880327f},{0.0129153f,0.229749f,-0.0580755f},{0.0194086f,0.235326f,-0.0468631f}, - {0.0333422f,0.247293f,-0.0167902f},{0.0357148f,0.249331f,-0.0104677f},{0.0269169f,0.242229f,-0.0315068f}, - {0.0163243f,0.234152f,-0.0520204f},{0.0200158f,0.236821f,-0.0452083f},{0.0199843f,0.237295f,-0.0454087f}, - {0.0423578f,0.256011f,0.0115564f},{0.0525519f,0.263792f,0.0707584f},{0.0534149f,0.266377f,0.0918925f}, - {0.0529481f,0.264133f,0.0777929f},{0.0527525f,0.264418f,0.0777045f},{0.0528646f,0.265035f,0.0848323f}, - {0.0529317f,0.265422f,0.0918925f},{0.0531859f,0.264337f,0.0848396f},{0.0529943f,0.264626f,0.0848373f}, - {0.0530642f,0.264714f,0.0918925f},{0.0529519f,0.265063f,0.0918925f},{0.0532653f,0.264405f,0.0918925f}, - {0.0531751f,0.266108f,0.0918925f},{0.0537244f,0.266578f,0.0918925f},{0.0526227f,0.264827f,0.0776945f}, - {0.0508696f,0.263321f,0.0559028f},{0.0499269f,0.262512f,0.0485453f},{0.048798f,0.261542f,0.0411587f}, - {0.0474794f,0.260409f,0.0337544f},{0.0459681f,0.259111f,0.0263442f},{0.0442615f,0.257646f,0.0189407f}, - {0.0402537f,0.254704f,0.00407642f},{0.037949f,0.252725f,-0.00324031f},{0.0402556f,0.254205f,0.00420461f}, - {0.0379543f,0.252228f,-0.00310144f},{0.0354539f,0.250081f,-0.0103481f},{0.0327551f,0.247763f,-0.0175217f}, - {0.0298594f,0.245276f,-0.0246083f},{0.0267689f,0.242622f,-0.0315939f},{0.0234865f,0.239802f,-0.038465f}, - {0.0163611f,0.233683f,-0.0518103f},{0.0125275f,0.23039f,-0.0582583f},{0.00852075f,0.226949f,-0.0645398f}, - {0.00434714f,0.223364f,-0.0706427f},{1.37117e-005f,0.219642f,-0.0765558f},{-0.00910166f,0.211813f,-0.0877701f}, - {-0.0138668f,0.20772f,-0.093052f},{-0.0187584f,0.203519f,-0.0981056f},{-0.0237669f,0.199217f,-0.102923f}, - {-0.0288825f,0.194824f,-0.107499f},{-0.050333f,0.177225f,-0.12407f},{-0.0448966f,0.18157f,-0.120026f}, - {-0.0448712f,0.181916f,-0.120499f},{-0.0393947f,0.185795f,-0.1159f},{-0.0447704f,0.181178f,-0.119717f}, - {-0.0502121f,0.176504f,-0.123274f},{-0.0557093f,0.171783f,-0.126571f},{-0.0612515f,0.167022f,-0.129604f}, - {-0.0668286f,0.162232f,-0.132375f},{-0.0724302f,0.157421f,-0.134885f},{-0.0836679f,0.147769f,-0.139127f}, - {-0.0894762f,0.143282f,-0.141206f},{-0.10047f,0.133338f,-0.143596f},{-0.117002f,0.11914f,-0.145907f}, - {-0.122417f,0.114489f,-0.146226f},{0.0544208f,0.266371f,0.0775529f},{0.0526389f,0.265342f,0.0776737f}, - {0.0508832f,0.263834f,0.0558501f},{0.0499391f,0.263023f,0.0484819f},{0.0488086f,0.262052f,0.0410845f}, - {0.0474881f,0.260918f,0.0336694f},{0.0459745f,0.259618f,0.0262484f},{0.0442655f,0.25815f,0.018834f}, - {0.0423589f,0.256512f,0.011439f},{0.035445f,0.250574f,-0.0104976f},{0.0356495f,0.251073f,-0.0107259f}, - {0.0329408f,0.248747f,-0.017926f},{0.0327422f,0.248253f,-0.0176816f},{0.0298423f,0.245762f,-0.0247786f}, - {0.0267473f,0.243104f,-0.0317744f},{0.02346f,0.24028f,-0.0386556f},{0.00861687f,0.227856f,-0.0651178f}, - {0.00896809f,0.228157f,-0.065521f},{0.0047683f,0.22455f,-0.0716622f},{0.0124851f,0.230854f,-0.0584778f}, - {0.00847247f,0.227408f,-0.0647685f},{0.00429275f,0.223818f,-0.0708804f},{-4.70058e-005f,0.220091f,-0.0768021f}, - {-0.0187631f,0.20434f,-0.0988077f},{-0.0184822f,0.204581f,-0.0992973f},{-0.0235221f,0.200252f,-0.104145f}, - {-0.0139479f,0.208152f,-0.0933224f},{-0.0188466f,0.203944f,-0.0983834f},{-0.0238624f,0.199636f,-0.103208f}, - {-0.0289854f,0.195236f,-0.10779f},{-0.0342058f,0.190752f,-0.112123f},{-0.0395131f,0.186194f,-0.116203f}, - {-0.0503463f,0.17689f,-0.123589f},{-0.0558515f,0.172161f,-0.12689f},{-0.0614018f,0.167394f,-0.129928f}, - {-0.066987f,0.162597f,-0.132703f},{-0.0725969f,0.157779f,-0.135216f},{-0.0782214f,0.152948f,-0.137469f}, - {-0.083851f,0.148113f,-0.139465f},{-0.100678f,0.133661f,-0.14394f},{-0.122791f,0.114992f,-0.147719f}, - {-0.117234f,0.119441f,-0.146255f},{-0.122656f,0.114784f,-0.146574f},{0.0511222f,0.264363f,0.0557698f}, - {0.0528818f,0.265874f,0.077642f},{0.050176f,0.26355f,0.0483851f},{0.0506339f,0.263943f,0.0482734f}, - {0.049498f,0.262968f,0.0408405f},{0.0490429f,0.262577f,0.0409712f},{0.0477195f,0.26144f,0.0335395f}, - {0.0462026f,0.260137f,0.026102f},{0.0444897f,0.258666f,0.0186711f},{0.0425789f,0.257025f,0.0112596f}, - {0.040469f,0.255213f,0.00388058f},{0.0381592f,0.253229f,-0.00345247f},{0.0300343f,0.246251f,-0.0250388f}, - {0.0304405f,0.2466f,-0.025339f},{0.0273306f,0.243929f,-0.0323684f},{0.0269324f,0.243587f,-0.0320502f}, - {0.0236379f,0.240757f,-0.0389468f},{0.0201544f,0.237765f,-0.0457149f},{0.0164862f,0.234614f,-0.0523413f}, - {0.0126385f,0.23131f,-0.0588132f},{0.00442784f,0.224258f,-0.0712434f},{7.83923e-005f,0.220522f,-0.0771783f}, - {-0.00442383f,0.216655f,-0.0829118f},{-0.00907067f,0.212664f,-0.088434f},{-0.0138535f,0.208556f,-0.0937354f}, - {-0.0237901f,0.200022f,-0.103643f},{-0.0289246f,0.195612f,-0.108235f},{-0.0341565f,0.191118f,-0.112578f}, - {-0.0394757f,0.18655f,-0.116668f},{-0.0558505f,0.172486f,-0.127378f},{-0.0556648f,0.172645f,-0.127941f}, - {-0.0612418f,0.167855f,-0.130993f},{-0.0614133f,0.167708f,-0.130423f},{-0.0670109f,0.1629f,-0.133204f}, - {-0.0726333f,0.158071f,-0.135723f},{-0.0782704f,0.15323f,-0.137981f},{-0.0839125f,0.148384f,-0.139981f}, - {-0.0895502f,0.143542f,-0.141725f},{-0.0951746f,0.138711f,-0.143219f},{-0.100777f,0.1339f,-0.144466f}, - {-0.122804f,0.11498f,-0.147106f},{0.0529343f,0.265919f,0.0703531f},{0.0523479f,0.265415f,0.0630404f}, - {0.0533467f,0.266273f,0.0776054f},{0.0515825f,0.264758f,0.055677f},{0.0481711f,0.261828f,0.0333897f}, - {0.0466503f,0.260522f,0.0259331f},{0.044933f,0.259047f,0.0184831f},{0.0454772f,0.259191f,0.0183202f}, - {0.0435573f,0.257542f,0.0108731f},{0.0430173f,0.257402f,0.0110526f},{0.040902f,0.255585f,0.00365461f}, - {0.0385862f,0.253596f,-0.00369726f},{0.0360702f,0.251435f,-0.0109894f},{0.0333545f,0.249102f,-0.0182079f}, - {0.0240277f,0.241092f,-0.0392827f},{0.0245255f,0.241196f,-0.0395738f},{0.0210253f,0.238189f,-0.0463744f}, - {0.0205352f,0.238092f,-0.0460682f},{0.0168576f,0.234933f,-0.0527117f},{0.013f,0.23162f,-0.0592001f}, - {0.00040769f,0.220805f,-0.0776124f},{0.000853084f,0.220864f,-0.0779886f},{-0.00367072f,0.216978f,-0.0837496f}, - {-0.00410608f,0.216928f,-0.0833607f},{-0.00876485f,0.212927f,-0.088897f},{-0.0135599f,0.208808f,-0.094212f}, - {-0.0286697f,0.195831f,-0.108749f},{-0.0282889f,0.195834f,-0.109195f},{-0.0335459f,0.191319f,-0.113558f}, - {-0.0339151f,0.191326f,-0.113103f},{-0.0392479f,0.186745f,-0.117203f},{-0.0446573f,0.182099f,-0.121044f}, - {-0.0501331f,0.177396f,-0.124624f},{-0.0668538f,0.163035f,-0.133782f},{-0.0724906f,0.158194f,-0.136307f}, - {-0.072207f,0.158114f,-0.136814f},{-0.0778712f,0.153249f,-0.139083f},{-0.0781422f,0.15334f,-0.138571f}, - {-0.0837988f,0.148482f,-0.140576f},{-0.0894511f,0.143627f,-0.142325f},{-0.0950898f,0.138784f,-0.143823f}, - {-0.100706f,0.13396f,-0.145073f},{-0.106292f,0.129162f,-0.146082f},{0.0534963f,0.266078f,0.0703053f}, - {0.0529085f,0.265573f,0.0629764f},{0.0539095f,0.266433f,0.0775737f},{0.0521415f,0.264914f,0.0555966f}, - {0.0511908f,0.264098f,0.0481766f},{0.0500523f,0.26312f,0.0407271f},{0.0487225f,0.261978f,0.0332599f}, - {0.0471983f,0.260669f,0.0257867f},{0.0414372f,0.255721f,0.00345877f},{0.0396062f,0.253647f,-0.00404829f}, - {0.0391164f,0.253727f,-0.00390942f},{0.0365947f,0.251562f,-0.0112177f},{0.033873f,0.249224f,-0.0184523f}, - {0.0309526f,0.246716f,-0.0255992f},{0.0278358f,0.244039f,-0.0326442f},{0.0177978f,0.234916f,-0.0532427f}, - {0.0173395f,0.235024f,-0.0530326f},{0.0134733f,0.231703f,-0.0595354f},{0.00943248f,0.228232f,-0.0658703f}, - {0.00522337f,0.224617f,-0.0720252f},{-0.0079188f,0.212829f,-0.0895609f},{-0.00833983f,0.212968f,-0.0892982f}, - {-0.0131455f,0.208841f,-0.0946251f},{-0.0180787f,0.204604f,-0.0997217f},{-0.0231298f,0.200265f,-0.10458f}, - {-0.0385138f,0.186551f,-0.117971f},{-0.0388905f,0.186729f,-0.117667f},{-0.044312f,0.182072f,-0.121517f}, - {-0.0497999f,0.177359f,-0.125105f},{-0.0553439f,0.172597f,-0.128429f},{-0.0609333f,0.167797f,-0.131488f}, - {-0.0665577f,0.162966f,-0.134283f},{-0.0835403f,0.14838f,-0.141092f},{-0.0889013f,0.143275f,-0.143185f}, - {-0.0892051f,0.143514f,-0.142845f},{-0.0948564f,0.138661f,-0.144346f},{-0.100485f,0.133826f,-0.145599f}, - {-0.106084f,0.129018f,-0.14661f},{-0.117158f,0.119507f,-0.147929f},{0.0547929f,0.266634f,0.0918925f}, - {0.0540069f,0.266016f,0.070274f},{0.0534183f,0.26551f,0.0629344f},{0.0526502f,0.264851f,0.055544f}, - {0.0516981f,0.264033f,0.0481132f},{0.050558f,0.263054f,0.040653f},{0.0492262f,0.26191f,0.0331749f}, - {0.0476998f,0.260599f,0.0256909f},{0.0459762f,0.259118f,0.0182135f},{0.0440535f,0.257467f,0.0107557f}, - {0.0419304f,0.255643f,0.00333058f},{0.037453f,0.251278f,-0.0114393f},{0.0352296f,0.248914f,-0.0180677f}, - {0.0347255f,0.248935f,-0.0186894f},{0.0370809f,0.251478f,-0.0113672f},{0.0343552f,0.249137f,-0.0186123f}, - {0.0314306f,0.246625f,-0.0257695f},{0.0283092f,0.243945f,-0.0328247f},{0.0249941f,0.241097f,-0.0397644f}, - {0.0214889f,0.238087f,-0.0465748f},{0.013926f,0.231591f,-0.0597549f},{0.014282f,0.231377f,-0.0598609f}, - {0.00987926f,0.228115f,-0.066099f},{0.00566404f,0.224495f,-0.0722628f},{0.00128743f,0.220736f,-0.0782348f}, - {-0.00324293f,0.216845f,-0.0840042f},{-0.0123941f,0.208465f,-0.0950259f},{-0.0164425f,0.204534f,-0.0995152f}, - {-0.0173378f,0.204219f,-0.100133f},{-0.0127315f,0.208695f,-0.0948954f},{-0.0176718f,0.204452f,-0.0999994f}, - {-0.0227302f,0.200108f,-0.104865f},{-0.0278968f,0.19567f,-0.109486f},{-0.0331614f,0.191149f,-0.113856f}, - {-0.0439431f,0.181888f,-0.121826f},{-0.0491273f,0.176916f,-0.125571f},{-0.049439f,0.177168f,-0.125419f}, - {-0.054991f,0.1724f,-0.128748f},{-0.0605885f,0.167592f,-0.131812f},{-0.0662211f,0.162754f,-0.134611f}, - {-0.0718786f,0.157895f,-0.137145f},{-0.0775509f,0.153023f,-0.139417f},{-0.0832283f,0.148147f,-0.14143f}, - {-0.0945608f,0.138414f,-0.144688f},{-0.100198f,0.133572f,-0.145943f},{-0.105804f,0.128757f,-0.146956f}, - {0.0543909f,0.265826f,0.0702589f},{0.0538019f,0.26532f,0.0629142f},{0.0530333f,0.264659f,0.0555186f}, - {0.0520805f,0.263841f,0.0480826f},{0.0509396f,0.262861f,0.0406172f},{0.0496069f,0.261717f,0.0331338f}, - {0.0480794f,0.260405f,0.0256447f},{0.0463547f,0.258923f,0.0181621f},{0.0444306f,0.257271f,0.010699f}, - {0.042306f,0.255446f,0.00326873f},{0.0399801f,0.253448f,-0.0041153f},{0.0317988f,0.246422f,-0.0258517f}, - {0.0286753f,0.243739f,-0.0329118f},{0.0253579f,0.24089f,-0.0398563f},{0.0218502f,0.237877f,-0.0466715f}, - {0.0181565f,0.234704f,-0.0533441f},{0.0179111f,0.23404f,-0.0542301f},{0.0102325f,0.227899f,-0.0662094f}, - {0.0060143f,0.224276f,-0.0723775f},{0.00163463f,0.220514f,-0.0783537f},{-0.0028989f,0.21662f,-0.0841271f}, - {-0.00757805f,0.212602f,-0.0896876f},{-0.0223998f,0.199871f,-0.105003f},{-0.02757f,0.195431f,-0.109627f}, - {-0.0328383f,0.190906f,-0.114f},{-0.0381944f,0.186306f,-0.118117f},{-0.0436275f,0.181639f,-0.121975f}, - {-0.0438755f,0.180973f,-0.122344f},{-0.0546831f,0.172144f,-0.128902f},{-0.0602845f,0.167333f,-0.131968f}, - {-0.0659211f,0.162492f,-0.134769f},{-0.0715825f,0.157629f,-0.137305f},{-0.0772588f,0.152754f,-0.139579f}, - {-0.0829402f,0.147874f,-0.141593f},{-0.0886171f,0.142999f,-0.143349f},{-0.0942805f,0.138134f,-0.144853f}, - {-0.0999216f,0.133289f,-0.146109f},{-0.105532f,0.128471f,-0.147123f},{-0.111104f,0.123685f,-0.147899f}, - {-0.11663f,0.118939f,-0.148445f},{0.0546653f,0.265607f,0.0705096f},{0.0541047f,0.265126f,0.0634113f}, - {0.0533848f,0.264508f,0.056338f},{0.0525062f,0.263753f,0.0492957f},{0.0514696f,0.262863f,0.042291f}, - {0.0502761f,0.261838f,0.0353299f},{0.0489266f,0.260679f,0.0284186f},{0.0474223f,0.259387f,0.0215629f}, - {0.0457645f,0.257963f,0.0147688f},{0.0439548f,0.256408f,0.00804257f},{0.0419946f,0.254725f,0.00139006f}, - {0.0398858f,0.252914f,-0.00518291f},{0.0376301f,0.250976f,-0.0116708f},{0.0326863f,0.24673f,-0.024368f}, - {0.0300025f,0.244425f,-0.0305661f},{0.0271806f,0.242001f,-0.0366566f},{0.0242229f,0.239461f,-0.0426344f}, - {0.0211322f,0.236806f,-0.0484939f},{0.0145625f,0.231164f,-0.0598379f},{0.0110894f,0.228181f,-0.0653124f}, - {0.00749453f,0.225093f,-0.0706491f},{0.00378138f,0.221904f,-0.0758429f},{-4.68637e-005f,0.218616f,-0.0808893f}, - {-0.00398685f,0.215232f,-0.0857839f},{-0.00803512f,0.211755f,-0.0905225f},{-0.0121883f,0.208188f,-0.095101f}, - {-0.020794f,0.200797f,-0.103761f},{-0.025239f,0.196979f,-0.107835f},{-0.0297737f,0.193084f,-0.111734f}, - {-0.0343942f,0.189116f,-0.115454f},{-0.0390962f,0.185078f,-0.118992f},{-0.0487282f,0.176805f,-0.125509f}, - {-0.0536499f,0.172578f,-0.128482f},{-0.0586363f,0.168295f,-0.131262f},{-0.063683f,0.16396f,-0.133846f}, - {-0.0687854f,0.159578f,-0.136231f},{-0.0739393f,0.155151f,-0.138417f},{-0.0791401f,0.150685f,-0.1404f}, - {-0.0843832f,0.146181f,-0.142179f},{-0.089664f,0.141646f,-0.143752f},{-0.0949777f,0.137082f,-0.145118f}, - {-0.10032f,0.132494f,-0.146276f},{-0.105686f,0.127885f,-0.147225f},{-0.111071f,0.12326f,-0.147964f}, - {-0.11647f,0.118623f,-0.148493f},{0.0258064f,0.240367f,-0.0398563f},{0.0222987f,0.237355f,-0.0466715f}, - {0.0147777f,0.22955f,-0.0592001f},{0.0108902f,0.226535f,-0.0658703f},{0.0149311f,0.230006f,-0.0595354f}, - {0.0322473f,0.245899f,-0.0258517f},{0.0291238f,0.243217f,-0.0329118f},{0.0379016f,0.250756f,-0.0114393f}, - {0.035174f,0.248413f,-0.0186894f},{0.0404286f,0.252926f,-0.0041153f},{0.0427545f,0.254924f,0.00326873f}, - {0.0448791f,0.256749f,0.010699f},{0.0380524f,0.249864f,-0.0112177f},{0.0380435f,0.250358f,-0.0113672f}, - {0.0405741f,0.25203f,-0.00390942f},{0.0468032f,0.258401f,0.0181621f},{0.048528f,0.259882f,0.0256447f}, - {0.0500554f,0.261194f,0.0331338f},{0.0513881f,0.262339f,0.0406172f},{0.052529f,0.263319f,0.0480826f}, - {0.0534818f,0.264137f,0.0555186f},{0.0542505f,0.264797f,0.0629142f},{0.0548395f,0.265303f,0.0702589f}, - {0.0549696f,0.264895f,0.070274f},{0.054381f,0.264389f,0.0629344f},{0.0534428f,0.264104f,0.0848373f}, - {0.0538273f,0.263914f,0.0848323f},{0.0543389f,0.263852f,0.084822f},{0.0542202f,0.263922f,0.0918925f}, - {0.0535408f,0.26416f,0.0918925f},{0.053201f,0.263896f,0.0777045f},{0.0527915f,0.263544f,0.0705025f}, - {0.0531755f,0.263354f,0.0704874f},{0.054954f,0.264381f,0.0703053f},{0.0543662f,0.263876f,0.0629764f}, - {0.0541256f,0.263346f,0.0630404f},{0.0535992f,0.263217f,0.0555966f},{0.054712f,0.263849f,0.0703531f}, - {0.0552536f,0.265659f,0.0775429f},{0.0557203f,0.26521f,0.0918925f},{0.0556112f,0.264945f,0.0847723f}, - {0.0556278f,0.26546f,0.084762f},{0.0556436f,0.264849f,0.0918925f},{0.0553678f,0.264412f,0.084788f}, - {0.0554769f,0.264524f,0.0918925f},{0.0557001f,0.26557f,0.0918925f},{0.0554981f,0.265869f,0.084757f}, - {0.0555879f,0.265918f,0.0918925f},{0.0549023f,0.264013f,0.0848062f},{0.0545795f,0.263942f,0.0918925f}, - {0.018605f,0.234182f,-0.0533441f},{0.0147305f,0.230855f,-0.0598609f},{0.010681f,0.227376f,-0.0662094f}, - {0.00646282f,0.223754f,-0.0723775f},{0.00208315f,0.219992f,-0.0783537f},{-0.00245038f,0.216098f,-0.0841271f}, - {-0.0117689f,0.207575f,-0.0948954f},{-0.00688212f,0.211271f,-0.0892982f},{-0.0116878f,0.207143f,-0.0946251f}, - {-0.00712952f,0.212079f,-0.0896876f},{-0.0119456f,0.207943f,-0.0950259f},{-0.0168893f,0.203697f,-0.100133f}, - {-0.0219512f,0.199349f,-0.105003f},{-0.0271214f,0.194909f,-0.109627f},{-0.0323898f,0.190384f,-0.114f}, - {-0.0377459f,0.185784f,-0.118117f},{-0.0483422f,0.175662f,-0.125105f},{-0.0483555f,0.175327f,-0.124624f}, - {-0.0538862f,0.1709f,-0.128429f},{-0.043179f,0.181117f,-0.121975f},{-0.0486787f,0.176393f,-0.125571f}, - {-0.0542346f,0.171622f,-0.128902f},{-0.059836f,0.166811f,-0.131968f},{-0.0654725f,0.16197f,-0.134769f}, - {-0.071134f,0.157107f,-0.137305f},{-0.0768103f,0.152232f,-0.139579f},{-0.0824916f,0.147352f,-0.141593f}, - {-0.0879387f,0.142154f,-0.143185f},{-0.0881686f,0.142476f,-0.143349f},{-0.0822657f,0.147026f,-0.14143f}, - {-0.093832f,0.137612f,-0.144853f},{-0.105084f,0.127948f,-0.147123f},{-0.0992353f,0.132451f,-0.145943f}, - {-0.104842f,0.127636f,-0.146956f},{-0.110062f,0.122328f,-0.146855f},{-0.110104f,0.122292f,-0.146244f}, - {-0.115564f,0.117602f,-0.147398f},{-0.0933121f,0.136714f,-0.143823f},{-0.0989286f,0.13189f,-0.145073f}, - {-0.0990277f,0.132129f,-0.145599f},{-0.110572f,0.122715f,-0.145367f},{-0.1103f,0.122447f,-0.145714f}, - {-0.105059f,0.12745f,-0.144599f},{-0.121454f,0.113368f,-0.146226f},{-0.126687f,0.108624f,-0.146474f}, - {-0.121199f,0.113087f,-0.146574f},{-0.1157f,0.117809f,-0.147929f},{-0.110186f,0.122545f,-0.147385f}, - {-0.126873f,0.108841f,-0.146297f},{-0.121715f,0.113664f,-0.146058f},{-0.127073f,0.109073f,-0.146158f}, - {-0.104626f,0.12732f,-0.14661f},{-0.104515f,0.127092f,-0.146082f},{-0.115932f,0.118111f,-0.148277f}, - {-0.11041f,0.122854f,-0.147732f},{-0.0994731f,0.132767f,-0.146109f},{-0.110655f,0.123163f,-0.147899f}, - {-0.116181f,0.118417f,-0.148445f},{-0.121654f,0.113716f,-0.148767f},{-0.127073f,0.109074f,-0.148876f}, - {0.0549276f,0.264054f,0.0918925f},{0.0553834f,0.26525f,0.0775529f},{0.0536128f,0.26373f,0.055544f}, - {0.0526607f,0.262912f,0.0481132f},{0.0515206f,0.261933f,0.040653f},{0.0501889f,0.260789f,0.0331749f}, - {0.0486625f,0.259478f,0.0256909f},{0.0469389f,0.257998f,0.0182135f},{0.0450162f,0.256346f,0.0107557f}, - {0.042893f,0.254523f,0.00333058f},{0.0405688f,0.252526f,-0.00404829f},{0.0353178f,0.248016f,-0.0186123f}, - {0.0323932f,0.245505f,-0.0257695f},{0.0292719f,0.242824f,-0.0328247f},{0.0259568f,0.239976f,-0.0397644f}, - {0.0224515f,0.236966f,-0.0465748f},{0.0187604f,0.233796f,-0.0532427f},{0.0148886f,0.23047f,-0.0597549f}, - {0.0108419f,0.226995f,-0.066099f},{0.00662668f,0.223374f,-0.0722628f},{0.00225007f,0.219615f,-0.0782348f}, - {-0.00228029f,0.215724f,-0.0840042f},{-0.00695617f,0.211708f,-0.0895609f},{-0.0167092f,0.203331f,-0.0999994f}, - {-0.0217676f,0.198987f,-0.104865f},{-0.0269342f,0.194549f,-0.109486f},{-0.0321988f,0.190028f,-0.113856f}, - {-0.0375512f,0.185431f,-0.117971f},{-0.0429805f,0.180768f,-0.121826f},{-0.0484764f,0.176047f,-0.125419f}, - {-0.0540283f,0.171279f,-0.128748f},{-0.0596258f,0.166471f,-0.131812f},{-0.0652585f,0.161633f,-0.134611f}, - {-0.070916f,0.156774f,-0.137145f},{-0.0765883f,0.151902f,-0.139417f},{-0.0935981f,0.137293f,-0.144688f}, - {-0.0933987f,0.136964f,-0.144346f},{-0.121401f,0.113414f,-0.148599f},{-0.12687f,0.108837f,-0.148751f}, - {0.0553672f,0.264736f,0.0775737f},{0.0526485f,0.262401f,0.0481766f},{0.05151f,0.261423f,0.0407271f}, - {0.0501802f,0.260281f,0.0332599f},{0.048656f,0.258972f,0.0257867f},{0.0469349f,0.257493f,0.0183202f}, - {0.045015f,0.255844f,0.0108731f},{0.0428949f,0.254024f,0.00345877f},{0.0324103f,0.245018f,-0.0255992f}, - {0.0353307f,0.247527f,-0.0184523f},{0.0351321f,0.247032f,-0.0182079f},{0.0292935f,0.242341f,-0.0326442f}, - {0.0259832f,0.239498f,-0.0395738f},{0.022483f,0.236492f,-0.0463744f},{0.0187972f,0.233326f,-0.0530326f}, - {0.00668107f,0.22292f,-0.0720252f},{0.00231079f,0.219167f,-0.0779886f},{-0.00221301f,0.215281f,-0.0837496f}, - {-0.0217444f,0.198182f,-0.104145f},{-0.0220124f,0.197952f,-0.103643f},{-0.0268921f,0.193761f,-0.108749f}, - {-0.016621f,0.202906f,-0.0997217f},{-0.0216721f,0.198568f,-0.10458f},{-0.0268312f,0.194137f,-0.109195f}, - {-0.0320882f,0.189622f,-0.113558f},{-0.0374328f,0.185032f,-0.117667f},{-0.0428543f,0.180375f,-0.121517f}, - {-0.0594756f,0.166099f,-0.131488f},{-0.0651f,0.161269f,-0.134283f},{-0.0707493f,0.156417f,-0.136814f}, - {-0.0764135f,0.151552f,-0.139083f},{-0.0820826f,0.146683f,-0.141092f},{-0.0877474f,0.141817f,-0.142845f}, - {-0.126387f,0.108276f,-0.147687f},{-0.121013f,0.112922f,-0.147719f},{-0.121027f,0.112911f,-0.147106f}, - {-0.121161f,0.113119f,-0.148251f},{-0.12669f,0.108628f,-0.148558f},{0.0552371f,0.264255f,0.0918925f}, - {0.0551243f,0.264203f,0.0776054f},{0.0533602f,0.262688f,0.055677f},{0.0524116f,0.261874f,0.0482734f}, - {0.0494972f,0.25937f,0.0335395f},{0.048428f,0.258452f,0.0259331f},{0.0499488f,0.259758f,0.0333897f}, - {0.0512756f,0.260898f,0.0408405f},{0.0467107f,0.256977f,0.0184831f},{0.044795f,0.255332f,0.0110526f}, - {0.0426797f,0.253515f,0.00365461f},{0.0403639f,0.251526f,-0.00369726f},{0.0378479f,0.249365f,-0.0109894f}, - {0.0287101f,0.241517f,-0.0320502f},{0.0258054f,0.239022f,-0.0392827f},{0.0291083f,0.241859f,-0.0323684f}, - {0.0322182f,0.24453f,-0.025339f},{0.0223129f,0.236022f,-0.0460682f},{0.0186353f,0.232864f,-0.0527117f}, - {0.00620553f,0.222188f,-0.0712434f},{0.00218538f,0.218735f,-0.0776124f},{0.006546f,0.22248f,-0.0716622f}, - {0.0107458f,0.226088f,-0.065521f},{-0.00232839f,0.214858f,-0.0833607f},{-0.00698716f,0.210857f,-0.088897f}, - {-0.0117822f,0.206739f,-0.094212f},{-0.0167045f,0.202511f,-0.0992973f},{-0.0321374f,0.189256f,-0.113103f}, - {-0.0374702f,0.184676f,-0.117203f},{-0.0428796f,0.18003f,-0.121044f},{-0.0596356f,0.165638f,-0.130423f}, - {-0.0650762f,0.160965f,-0.133782f},{-0.0594641f,0.165786f,-0.130993f},{-0.0538871f,0.170576f,-0.127941f}, - {-0.0707129f,0.156124f,-0.136307f},{-0.0763645f,0.15127f,-0.138571f},{-0.0820211f,0.146412f,-0.140576f}, - {-0.0876734f,0.141557f,-0.142325f},{-0.115776f,0.117744f,-0.146255f},{-0.104571f,0.127044f,-0.145472f}, - {-0.12644f,0.108337f,-0.148015f},{-0.126544f,0.108458f,-0.14831f},{0.0542482f,0.263451f,0.0704083f}, - {0.0546595f,0.263804f,0.077642f},{0.0536632f,0.262949f,0.0631143f},{0.0528999f,0.262293f,0.0557698f}, - {0.0519537f,0.26148f,0.0483851f},{0.0508206f,0.260507f,0.0409712f},{0.0479802f,0.258067f,0.026102f}, - {0.0422467f,0.253143f,0.00388058f},{0.0443566f,0.254955f,0.0112596f},{0.0438167f,0.254815f,0.011439f}, - {0.0462674f,0.256596f,0.0186711f},{0.0399369f,0.251159f,-0.00345247f},{0.0374272f,0.249004f,-0.0107259f}, - {0.0347185f,0.246677f,-0.017926f},{0.031812f,0.244181f,-0.0250388f},{0.0173238f,0.232562f,-0.0518103f}, - {0.017782f,0.232454f,-0.0520204f},{0.0209784f,0.235701f,-0.0452083f},{0.0254156f,0.238687f,-0.0389468f}, - {0.0219321f,0.235695f,-0.0457149f},{0.0182639f,0.232545f,-0.0523413f},{0.0144162f,0.22924f,-0.0588132f}, - {0.0103946f,0.225786f,-0.0651178f},{-0.00813902f,0.210692f,-0.0877701f},{-0.00771801f,0.210553f,-0.0880327f}, - {-0.00350929f,0.214669f,-0.0822683f},{0.00185609f,0.218452f,-0.0771783f},{-0.00264613f,0.214585f,-0.0829118f}, - {-0.00729298f,0.210594f,-0.088434f},{-0.0120758f,0.206487f,-0.0937354f},{-0.0169854f,0.20227f,-0.0988077f}, - {-0.037698f,0.18448f,-0.116668f},{-0.0323788f,0.189049f,-0.112578f},{-0.0327481f,0.189055f,-0.112123f}, - {-0.0271469f,0.193542f,-0.108235f},{-0.0430935f,0.179846f,-0.120499f},{-0.0485553f,0.175155f,-0.12407f}, - {-0.0540728f,0.170416f,-0.127378f},{-0.0652332f,0.160831f,-0.133204f},{-0.0821348f,0.146314f,-0.139981f}, - {-0.0764927f,0.15116f,-0.137981f},{-0.0767637f,0.151251f,-0.137469f},{-0.0708556f,0.156002f,-0.135723f}, - {-0.0877726f,0.141472f,-0.141725f},{-0.0933968f,0.136641f,-0.143219f},{-0.098999f,0.13183f,-0.144466f}, - {-0.104779f,0.127189f,-0.144944f},{-0.115592f,0.117579f,-0.146786f},{0.0536862f,0.263292f,0.0704561f}, - {0.0540966f,0.263644f,0.0776737f},{0.0531026f,0.262791f,0.0631783f},{0.0523409f,0.262136f,0.0558501f}, - {0.0513968f,0.261326f,0.0484819f},{0.0502663f,0.260355f,0.0410845f},{0.0489458f,0.25922f,0.0336694f}, - {0.0474322f,0.257921f,0.0262484f},{0.0457232f,0.256453f,0.018834f},{0.0412182f,0.253084f,0.00420461f}, - {0.0389169f,0.251108f,-0.00310144f},{0.0394067f,0.251028f,-0.00324031f},{0.0417114f,0.253007f,0.00407642f}, - {0.0369027f,0.248877f,-0.0104976f},{0.0342f,0.246556f,-0.0176816f},{0.0313f,0.244065f,-0.0247786f}, - {0.028205f,0.241407f,-0.0317744f},{0.0249178f,0.238583f,-0.0386556f},{0.021442f,0.235598f,-0.0454087f}, - {0.0139428f,0.229157f,-0.0584778f},{0.00993018f,0.225711f,-0.0647685f},{0.00575046f,0.222121f,-0.0708804f}, - {0.0014107f,0.218393f,-0.0768021f},{-0.0030815f,0.214535f,-0.0825229f},{-0.0124902f,0.206454f,-0.0933224f}, - {-0.0173889f,0.202247f,-0.0983834f},{-0.0224047f,0.197939f,-0.103208f},{-0.0275277f,0.193539f,-0.10779f}, - {-0.0384321f,0.184674f,-0.1159f},{-0.0438078f,0.180057f,-0.119717f},{-0.0434389f,0.179873f,-0.120026f}, - {-0.0380553f,0.184497f,-0.116203f},{-0.0488885f,0.175192f,-0.123589f},{-0.0543937f,0.170464f,-0.12689f}, - {-0.0599441f,0.165697f,-0.129928f},{-0.0655293f,0.1609f,-0.132703f},{-0.0711392f,0.156082f,-0.135216f}, - {-0.0823933f,0.146416f,-0.139465f},{-0.0883223f,0.141824f,-0.140865f},{-0.0939259f,0.137011f,-0.142353f}, - {-0.0936303f,0.136765f,-0.142696f},{-0.0880185f,0.141584f,-0.141206f},{-0.09922f,0.131964f,-0.14394f}, - {-0.126439f,0.108336f,-0.147023f},{-0.126387f,0.108275f,-0.147351f},{0.0538591f,0.263998f,0.0918925f}, - {0.0535853f,0.263706f,0.0776945f},{0.0525928f,0.262854f,0.0632202f},{0.0518322f,0.2622f,0.0559028f}, - {0.0522092f,0.263044f,0.0632405f},{0.0508895f,0.261391f,0.0485453f},{0.0497606f,0.260421f,0.0411587f}, - {0.048442f,0.259289f,0.0337544f},{0.0469307f,0.257991f,0.0263442f},{0.0452241f,0.256525f,0.0189407f}, - {0.0433204f,0.25489f,0.0115564f},{0.0333475f,0.246844f,-0.0174445f},{0.0360443f,0.249161f,-0.010276f}, - {0.0364165f,0.24896f,-0.0103481f},{0.0337177f,0.246642f,-0.0175217f},{0.030822f,0.244155f,-0.0246083f}, - {0.0277315f,0.241501f,-0.0315939f},{0.0244491f,0.238682f,-0.038465f},{0.0131342f,0.229483f,-0.0581524f}, - {0.0134902f,0.229269f,-0.0582583f},{0.016965f,0.232774f,-0.051709f},{0.00948339f,0.225828f,-0.0645398f}, - {0.00530978f,0.222243f,-0.0706427f},{0.00097635f,0.218521f,-0.0765558f},{-0.0132416f,0.20683f,-0.0929216f}, - {-0.0181297f,0.202631f,-0.0979716f},{-0.0129042f,0.206599f,-0.093052f},{-0.0177958f,0.202398f,-0.0981056f}, - {-0.0228042f,0.198097f,-0.102923f},{-0.0279198f,0.193703f,-0.107499f},{-0.0331325f,0.189226f,-0.111826f}, - {-0.0495612f,0.175636f,-0.123123f},{-0.0492495f,0.175383f,-0.123274f},{-0.0441234f,0.180306f,-0.119568f}, - {-0.0547466f,0.170662f,-0.126571f},{-0.0602889f,0.165902f,-0.129604f},{-0.0658659f,0.161112f,-0.132375f}, - {-0.0714676f,0.156301f,-0.134885f},{-0.0770839f,0.151477f,-0.137135f},{-0.0827053f,0.146649f,-0.139127f}, - {-0.0995074f,0.132218f,-0.143596f},{-0.116304f,0.118312f,-0.145739f},{-0.11084f,0.123004f,-0.145199f}, - {-0.116039f,0.118019f,-0.145907f},{-0.126541f,0.108454f,-0.146724f},{0.0514492f,0.262391f,0.0559281f}, - {0.0505071f,0.261582f,0.0485758f},{0.049379f,0.260613f,0.0411945f},{0.0480614f,0.259482f,0.0337954f}, - {0.0465511f,0.258185f,0.0263905f},{0.0448457f,0.25672f,0.0189921f},{0.0429433f,0.255086f,0.0116131f}, - {0.0408426f,0.253282f,0.00426646f},{0.038543f,0.251307f,-0.00303443f},{0.0304538f,0.244359f,-0.0245261f}, - {0.0273654f,0.241706f,-0.0315068f},{0.0240853f,0.238889f,-0.0383731f},{0.0206171f,0.23591f,-0.0451116f}, - {0.00913019f,0.226044f,-0.0644294f},{0.00495953f,0.222462f,-0.0705281f},{0.00062916f,0.218743f,-0.076437f}, - {-0.00385332f,0.214893f,-0.0821454f},{-0.00847979f,0.21092f,-0.0876434f},{-0.0231347f,0.198333f,-0.102786f}, - {-0.0282467f,0.193942f,-0.107358f},{-0.0334557f,0.189468f,-0.111682f},{-0.0387515f,0.18492f,-0.115753f}, - {-0.0550545f,0.170917f,-0.126416f},{-0.0605929f,0.166161f,-0.129448f},{-0.066166f,0.161374f,-0.132217f}, - {-0.0717637f,0.156566f,-0.134725f},{-0.0773761f,0.151746f,-0.136973f},{-0.0829935f,0.146921f,-0.138964f}, - {-0.0886065f,0.1421f,-0.140701f},{-0.0942061f,0.137291f,-0.142188f},{-0.0997837f,0.1325f,-0.14343f}, - {-0.105331f,0.127736f,-0.144432f},{-0.246242f,0.00568906f,-0.0892991f},{-0.241437f,0.00981657f,-0.0946258f}, - {-0.241022f,0.00984878f,-0.0942128f},{-0.221744f,0.0277507f,-0.114f},{-0.227012f,0.023226f,-0.109627f}, - {-0.216388f,0.0323507f,-0.118117f},{-0.210955f,0.0370173f,-0.121975f},{-0.205455f,0.0417412f,-0.125571f}, - {-0.199899f,0.0465131f,-0.128902f},{-0.194298f,0.0513242f,-0.131968f},{-0.188661f,0.0561654f,-0.134769f}, - {-0.205143f,0.0414889f,-0.125419f},{-0.199238f,0.0460598f,-0.128429f},{-0.204783f,0.041298f,-0.125105f}, - {-0.182999f,0.061028f,-0.137305f},{-0.177323f,0.0659033f,-0.139579f},{-0.171642f,0.0707829f,-0.141592f}, - {-0.160302f,0.0805227f,-0.144853f},{-0.165965f,0.0756586f,-0.143349f},{-0.154661f,0.0853677f,-0.146109f}, - {-0.14905f,0.0901863f,-0.147122f},{-0.143479f,0.0949717f,-0.147899f},{-0.132419f,0.10447f,-0.146057f}, - {-0.14321f,0.0946823f,-0.147731f},{-0.148778f,0.0899002f,-0.146955f},{-0.143294f,0.0951304f,-0.145199f}, - {-0.143048f,0.0948213f,-0.145366f},{-0.13783f,0.0998229f,-0.145739f},{-0.14829f,0.0894947f,-0.146081f}, - {-0.154097f,0.084831f,-0.145599f},{-0.148499f,0.0896393f,-0.14661f},{-0.131926f,0.103873f,-0.146574f}, - {-0.131778f,0.103676f,-0.147105f},{-0.132166f,0.104168f,-0.146225f},{-0.142939f,0.0944145f,-0.147384f}, - {-0.131792f,0.103664f,-0.147719f},{-0.13248f,0.104418f,-0.148767f},{-0.132219f,0.104122f,-0.148599f}, - {-0.137953f,0.0997176f,-0.148445f},{-0.131964f,0.10384f,-0.148251f},{-0.142742f,0.0942593f,-0.146855f}, - {-0.232183f,0.0187856f,-0.105003f},{-0.237244f,0.0144381f,-0.100134f},{-0.242188f,0.010192f,-0.0950266f}, - {-0.247004f,0.00605566f,-0.0896885f},{-0.251683f,0.00203683f,-0.0841281f},{-0.256217f,-0.00185696f,-0.0783547f}, - {-0.260596f,-0.00561864f,-0.0723786f},{-0.268508f,-0.0129341f,-0.059756f},{-0.264015f,-0.00957541f,-0.0658715f}, - {-0.268056f,-0.0130461f,-0.0595366f},{-0.264815f,-0.00924161f,-0.0662105f},{-0.268864f,-0.0127198f,-0.059862f}, - {-0.272739f,-0.0160476f,-0.053345f},{-0.276433f,-0.0192201f,-0.0466724f},{-0.279941f,-0.022233f,-0.039857f}, - {-0.283258f,-0.0250823f,-0.0329122f},{-0.286382f,-0.0277651f,-0.0258517f},{-0.291178f,-0.0329051f,-0.0112184f}, - {-0.290653f,-0.0327782f,-0.01099f},{-0.293699f,-0.0350709f,-0.00391029f},{-0.289308f,-0.0302787f,-0.0186898f}, - {-0.292036f,-0.0326214f,-0.0114399f},{-0.294563f,-0.0347919f,-0.00411618f},{-0.296889f,-0.0367896f,0.00326766f}, - {-0.299014f,-0.0386144f,0.0106978f},{-0.300938f,-0.040267f,0.0181608f},{-0.302663f,-0.0417484f,0.0256434f}, - {-0.30419f,-0.0430604f,0.0331326f},{-0.305141f,-0.0443974f,0.0406518f},{-0.305523f,-0.044205f,0.040616f}, - {-0.303809f,-0.0432535f,0.0331736f},{-0.306664f,-0.045185f,0.0480815f},{-0.308737f,-0.0479862f,0.0847721f}, - {-0.30793f,-0.0476169f,0.077605f},{-0.308173f,-0.0478259f,0.0847878f},{-0.306812f,-0.0463329f,0.0704555f}, - {-0.307054f,-0.0468645f,0.0704077f},{-0.306228f,-0.0458317f,0.0631775f},{-0.307233f,-0.0461944f,0.0555431f}, - {-0.308002f,-0.0468541f,0.0629336f},{-0.308385f,-0.0466635f,0.0629134f},{-0.306796f,-0.0458187f,0.0704868f}, - {-0.306213f,-0.0453183f,0.0632194f},{-0.307448f,-0.0463783f,0.0848321f},{-0.307515f,-0.0467654f,0.0918925f}, - {-0.307464f,-0.0468934f,0.0848218f},{-0.306931f,-0.0467592f,0.0630396f},{-0.308079f,-0.0474218f,0.0703047f}, - {-0.307492f,-0.046917f,0.0629755f},{-0.307577f,-0.0459696f,0.0848371f},{-0.307535f,-0.0464061f,0.0918925f}, - {-0.306166f,-0.0461019f,0.0556761f},{-0.306725f,-0.0462583f,0.0555957f},{-0.305217f,-0.0452871f,0.0482723f}, - {-0.307647f,-0.046058f,0.0918925f},{-0.307617f,-0.0460033f,0.0555177f},{-0.309388f,-0.047525f,0.0775425f}, - {-0.308974f,-0.0471693f,0.0702583f},{-0.30859f,-0.0473596f,0.0702734f},{-0.309633f,-0.0477349f,0.0847568f}, - {-0.137688f,0.0994249f,-0.148277f},{-0.154384f,0.0850849f,-0.145943f},{-0.160021f,0.0802434f,-0.144688f}, - {-0.165681f,0.0753827f,-0.143185f},{-0.171354f,0.0705103f,-0.141429f},{-0.177031f,0.0656341f,-0.139417f}, - {-0.182703f,0.0607622f,-0.137145f},{-0.188361f,0.055903f,-0.134611f},{-0.193994f,0.0510652f,-0.131812f}, - {-0.199591f,0.0462575f,-0.128748f},{-0.21064f,0.0367683f,-0.121826f},{-0.216069f,0.032105f,-0.117971f}, - {-0.221421f,0.0275082f,-0.113856f},{-0.226686f,0.0229866f,-0.109486f},{-0.231852f,0.0185493f,-0.104866f}, - {-0.23691f,0.0142048f,-0.1f},{-0.241851f,0.00996175f,-0.0948962f},{-0.246663f,0.00582826f,-0.0895618f}, - {-0.251339f,0.00181224f,-0.0840052f},{-0.25587f,-0.00207883f,-0.0782359f},{-0.260246f,-0.00583789f,-0.072264f}, - {-0.264462f,-0.00945834f,-0.0661002f},{-0.27238f,-0.0162596f,-0.0532437f},{-0.276071f,-0.0194299f,-0.0465757f}, - {-0.279577f,-0.0224406f,-0.039765f},{-0.282892f,-0.025288f,-0.0328251f},{-0.286013f,-0.0279689f,-0.0257695f}, - {-0.288938f,-0.0304808f,-0.0186126f},{-0.291664f,-0.0328218f,-0.0113678f},{-0.294189f,-0.0349908f,-0.00404916f}, - {-0.296513f,-0.0369871f,0.00332952f},{-0.298637f,-0.0388106f,0.0107545f},{-0.300559f,-0.0404621f,0.0182123f}, - {-0.302283f,-0.0419425f,0.0256896f},{-0.306281f,-0.0453766f,0.0481121f},{-0.305774f,-0.0454417f,0.0481755f}, - {-0.309248f,-0.0479248f,0.0847617f},{-0.309004f,-0.047715f,0.0775525f},{-0.309376f,-0.0479772f,0.0918925f}, - {-0.309694f,-0.0478162f,0.0918925f},{-0.137425f,0.0991502f,-0.147929f},{-0.159726f,0.0799965f,-0.144345f}, - {-0.165377f,0.0751428f,-0.142845f},{-0.171042f,0.0702775f,-0.141092f},{-0.176711f,0.0654083f,-0.139082f}, - {-0.182375f,0.0605435f,-0.136814f},{-0.188024f,0.0556914f,-0.134283f},{-0.193649f,0.0508605f,-0.131488f}, - {-0.215692f,0.0319277f,-0.117667f},{-0.210271f,0.0365843f,-0.121517f},{-0.209925f,0.0365573f,-0.121044f}, - {-0.221037f,0.0273376f,-0.113559f},{-0.226294f,0.0228226f,-0.109195f},{-0.231453f,0.0183917f,-0.104581f}, - {-0.236503f,0.0140535f,-0.0997223f},{-0.250911f,0.00167885f,-0.0837506f},{-0.255435f,-0.00220659f,-0.0779897f}, - {-0.259806f,-0.00596021f,-0.0720263f},{-0.275118f,-0.0194353f,-0.046069f},{-0.274737f,-0.0191082f,-0.0457157f}, - {-0.27861f,-0.022435f,-0.0392833f},{-0.271922f,-0.0163668f,-0.0530336f},{-0.275608f,-0.0195325f,-0.0463752f}, - {-0.279108f,-0.0225389f,-0.0395744f},{-0.282419f,-0.0253822f,-0.0326445f},{-0.285535f,-0.0280592f,-0.0255992f}, - {-0.288456f,-0.0305674f,-0.0184526f},{-0.29602f,-0.0370643f,0.00345771f},{-0.29814f,-0.0388852f,0.0108719f}, - {-0.30006f,-0.0405343f,0.0183189f},{-0.301781f,-0.0420125f,0.0257854f},{-0.303306f,-0.0433217f,0.0332586f}, - {-0.304636f,-0.0444639f,0.0407259f},{-0.308493f,-0.0477767f,0.0775733f},{-0.307518f,-0.0472628f,0.0703525f}, - {-0.309015f,-0.0480539f,0.0918925f},{-0.137241f,0.0989846f,-0.147398f},{-0.153876f,0.0846971f,-0.145073f}, - {-0.159492f,0.0798733f,-0.143822f},{-0.170669f,0.0702734f,-0.13998f},{-0.17644f,0.0653174f,-0.138571f}, - {-0.170783f,0.0701758f,-0.140576f},{-0.165131f,0.0750303f,-0.142325f},{-0.182091f,0.0604634f,-0.136307f}, - {-0.187728f,0.055622f,-0.133782f},{-0.19334f,0.0508018f,-0.130993f},{-0.198917f,0.0460117f,-0.127941f}, - {-0.204449f,0.0412605f,-0.124624f},{-0.220426f,0.0275383f,-0.112579f},{-0.225913f,0.022826f,-0.10875f}, - {-0.220668f,0.027331f,-0.113104f},{-0.215335f,0.031911f,-0.117203f},{-0.23106f,0.0184049f,-0.104146f}, - {-0.2361f,0.0140763f,-0.0992979f},{-0.250158f,0.00200198f,-0.0829128f},{-0.25499f,-0.00214776f,-0.0776135f}, - {-0.250476f,0.00172908f,-0.0833616f},{-0.245817f,0.00573041f,-0.0888979f},{-0.25935f,-0.00589306f,-0.0716633f}, - {-0.26355f,-0.00950025f,-0.0655221f},{-0.267582f,-0.0129633f,-0.0592012f},{-0.27144f,-0.0162766f,-0.0527127f}, - {-0.281913f,-0.025272f,-0.0323688f},{-0.285023f,-0.0279431f,-0.025339f},{-0.287937f,-0.0304458f,-0.0182083f}, - {-0.295052f,-0.0365564f,0.00387953f},{-0.2976f,-0.0387452f,0.0110514f},{-0.295485f,-0.0369283f,0.00365355f}, - {-0.293169f,-0.0349393f,-0.00369814f},{-0.299516f,-0.0403906f,0.0184819f},{-0.301233f,-0.0418655f,0.0259318f}, - {-0.302754f,-0.0431718f,0.0333884f},{-0.304081f,-0.0443114f,0.0408392f},{-0.306469f,-0.0463621f,0.0631135f}, - {-0.308656f,-0.0480337f,0.0918925f},{-0.142701f,0.0942953f,-0.146243f},{-0.137213f,0.0990084f,-0.146785f}, - {-0.148234f,0.0895429f,-0.145472f},{-0.153805f,0.0847575f,-0.144466f},{-0.159408f,0.079946f,-0.143218f}, - {-0.165032f,0.0751155f,-0.141725f},{-0.176312f,0.0654275f,-0.137981f},{-0.193169f,0.0509491f,-0.130423f}, - {-0.187571f,0.0557569f,-0.133204f},{-0.187595f,0.05606f,-0.132703f},{-0.181949f,0.0605859f,-0.135723f}, - {-0.198732f,0.0461712f,-0.127378f},{-0.204249f,0.0414322f,-0.12407f},{-0.209711f,0.036741f,-0.120499f}, - {-0.215107f,0.0321066f,-0.116668f},{-0.235824f,0.0151381f,-0.0981062f},{-0.235736f,0.014713f,-0.098384f}, - {-0.230815f,0.0194397f,-0.102924f},{-0.225658f,0.0230449f,-0.108236f},{-0.230792f,0.0186351f,-0.103644f}, - {-0.235819f,0.0143176f,-0.0988083f},{-0.240729f,0.0101009f,-0.0937362f},{-0.245511f,0.00599306f,-0.0884349f}, - {-0.263103f,-0.00829154f,-0.0645409f},{-0.263055f,-0.00875088f,-0.0647696f},{-0.258929f,-0.00470683f,-0.0706439f}, - {-0.25466f,-0.00186493f,-0.0771794f},{-0.25901f,-0.00560064f,-0.0712445f},{-0.263199f,-0.00919859f,-0.065119f}, - {-0.267221f,-0.0126528f,-0.0588143f},{-0.271069f,-0.0159576f,-0.0523423f},{-0.284617f,-0.0275942f,-0.0250388f}, - {-0.281515f,-0.02493f,-0.0320505f},{-0.28133f,-0.0244472f,-0.0317747f},{-0.278221f,-0.0221003f,-0.0389474f}, - {-0.287524f,-0.0300905f,-0.0179263f},{-0.290232f,-0.032417f,-0.0107265f},{-0.292742f,-0.0345725f,-0.00345334f}, - {-0.297162f,-0.0383686f,0.0112584f},{-0.302303f,-0.0427839f,0.0335382f},{-0.300786f,-0.041481f,0.0261007f}, - {-0.300558f,-0.0409614f,0.0262471f},{-0.299073f,-0.0400098f,0.0186698f},{-0.303626f,-0.0439206f,0.04097f}, - {-0.304759f,-0.0448938f,0.048384f},{-0.305705f,-0.0457065f,0.0557688f},{-0.307465f,-0.0472177f,0.0776416f}, - {-0.307708f,-0.0474261f,0.084806f},{-0.307998f,-0.0477204f,0.0918925f},{-0.308307f,-0.0479214f,0.0918925f}, - {-0.142824f,0.0945127f,-0.145713f},{-0.137349f,0.0992153f,-0.146254f},{-0.148345f,0.0897709f,-0.144944f}, - {-0.153904f,0.0849962f,-0.14394f},{-0.159494f,0.0801954f,-0.142695f},{-0.165106f,0.0753756f,-0.141205f}, - {-0.170731f,0.0705443f,-0.139464f},{-0.176361f,0.0657091f,-0.137469f},{-0.181985f,0.0608783f,-0.135216f}, - {-0.193331f,0.0516347f,-0.129604f},{-0.198873f,0.0468744f,-0.126571f},{-0.198731f,0.0464957f,-0.12689f}, - {-0.19318f,0.0512629f,-0.129928f},{-0.204236f,0.0417672f,-0.123589f},{-0.209686f,0.0370865f,-0.120026f}, - {-0.21507f,0.0324624f,-0.116203f},{-0.220377f,0.0279043f,-0.112124f},{-0.225597f,0.0234208f,-0.10779f}, - {-0.23072f,0.0190209f,-0.103209f},{-0.240634f,0.0105057f,-0.0933231f},{-0.245406f,0.00640698f,-0.0880336f}, - {-0.250043f,0.00242477f,-0.0825239f},{-0.254535f,-0.00143353f,-0.0768032f},{-0.258875f,-0.00516092f,-0.0708815f}, - {-0.267067f,-0.0121974f,-0.0584789f},{-0.270907f,-0.0154949f,-0.0520214f},{-0.274567f,-0.0186385f,-0.0454095f}, - {-0.278043f,-0.0216238f,-0.0386562f},{-0.284442f,-0.0266194f,-0.0246083f},{-0.287338f,-0.0291065f,-0.017522f}, - {-0.287325f,-0.0295963f,-0.017682f},{-0.284425f,-0.0271056f,-0.0247786f},{-0.290028f,-0.0319176f,-0.0104982f}, - {-0.292532f,-0.0340683f,-0.00324118f},{-0.294837f,-0.0360478f,0.00407537f},{-0.296942f,-0.037856f,0.0114378f}, - {-0.298849f,-0.0394935f,0.0188328f},{-0.302071f,-0.0422615f,0.0336681f},{-0.303381f,-0.0428858f,0.0411575f}, - {-0.30451f,-0.0438554f,0.0485442f},{-0.304522f,-0.0443667f,0.0484808f},{-0.303392f,-0.0433957f,0.0410833f}, - {-0.305467f,-0.0451776f,0.0558492f},{-0.307222f,-0.0466854f,0.0776733f},{-0.307591f,-0.0471265f,0.0918925f}, - {-0.307758f,-0.047452f,0.0918925f},{-0.137581f,0.0995171f,-0.145907f},{-0.148561f,0.0900864f,-0.144598f}, - {-0.154112f,0.0853187f,-0.143596f},{-0.148803f,0.0903988f,-0.144431f},{-0.159694f,0.0805249f,-0.142353f}, - {-0.165297f,0.0757121f,-0.140865f},{-0.170914f,0.0708878f,-0.139127f},{-0.176535f,0.0660598f,-0.137134f}, - {-0.182152f,0.061236f,-0.134885f},{-0.187753f,0.0564248f,-0.132375f},{-0.210011f,0.0378285f,-0.119568f}, - {-0.204573f,0.0424991f,-0.123123f},{-0.20437f,0.0421528f,-0.123274f},{-0.209812f,0.0374789f,-0.119717f}, - {-0.215188f,0.0328616f,-0.1159f},{-0.220487f,0.0283101f,-0.111826f},{-0.2257f,0.0238332f,-0.107499f}, - {-0.240892f,0.0113052f,-0.0929223f},{-0.240715f,0.0109369f,-0.0930527f},{-0.236004f,0.0155034f,-0.0979722f}, - {-0.24548f,0.00684419f,-0.087771f},{-0.25011f,0.0028678f,-0.0822693f},{-0.254596f,-0.000984871f,-0.0765569f}, - {-0.267268f,-0.0113487f,-0.0581535f},{-0.271099f,-0.0146391f,-0.0517099f},{-0.26711f,-0.011733f,-0.0582594f}, - {-0.270944f,-0.0150257f,-0.0518113f},{-0.274598f,-0.0181647f,-0.0452091f},{-0.278069f,-0.0211457f,-0.0384656f}, - {-0.281352f,-0.023965f,-0.0315942f},{-0.290179f,-0.0310263f,-0.0102766f},{-0.290037f,-0.0314244f,-0.0103487f}, - {-0.287482f,-0.02871f,-0.0174448f},{-0.292537f,-0.033572f,-0.0031023f},{-0.294839f,-0.0355486f,0.00420356f}, - {-0.296941f,-0.0373542f,0.0115553f},{-0.298845f,-0.0389893f,0.0189394f},{-0.300551f,-0.0404551f,0.026343f}, - {-0.302063f,-0.0417532f,0.0337531f},{-0.305453f,-0.044665f,0.0559018f},{-0.307336f,-0.0457621f,0.0777041f}, - {-0.306926f,-0.0454104f,0.0705019f},{-0.307206f,-0.0461706f,0.077694f},{-0.15435f,0.0856345f,-0.143429f}, - {-0.159927f,0.0808441f,-0.142188f},{-0.165527f,0.0760347f,-0.140701f},{-0.17114f,0.0712139f,-0.138964f}, - {-0.176757f,0.0663892f,-0.136973f},{-0.18237f,0.0615688f,-0.134725f},{-0.187968f,0.056761f,-0.132217f}, - {-0.193541f,0.0519743f,-0.129448f},{-0.199079f,0.0472174f,-0.126416f},{-0.215383f,0.0332144f,-0.115753f}, - {-0.220678f,0.0286662f,-0.111682f},{-0.225887f,0.0241924f,-0.107358f},{-0.230999f,0.019802f,-0.102786f}, - {-0.245654f,0.00721537f,-0.0876442f},{-0.25028f,0.00324179f,-0.0821464f},{-0.254763f,-0.000608165f,-0.0764381f}, - {-0.259093f,-0.00432749f,-0.0705292f},{-0.263264f,-0.00790968f,-0.0644306f},{-0.274751f,-0.0177759f,-0.0451124f}, - {-0.27822f,-0.0207548f,-0.0383737f},{-0.2815f,-0.0235721f,-0.0315071f},{-0.284588f,-0.0262246f,-0.0245261f}, - {-0.292677f,-0.0331723f,-0.0030353f},{-0.294977f,-0.0351475f,0.00426541f},{-0.297078f,-0.0369518f,0.0116119f}, - {-0.29898f,-0.0385858f,0.0189909f},{-0.300686f,-0.0400505f,0.0263892f},{-0.302196f,-0.0413477f,0.0337941f}, - {-0.303514f,-0.0424795f,0.0411933f},{-0.304642f,-0.0434484f,0.0485748f},{-0.305584f,-0.0442575f,0.0559272f}, - {-0.306344f,-0.0449103f,0.0632397f},{0.164482f,-0.077386f,-0.141015f},{0.160376f,-0.0813663f,-0.142188f}, - {0.165975f,-0.076557f,-0.140701f},{0.193989f,-0.0524965f,-0.129448f},{0.195149f,-0.0510464f,-0.12867f}, - {0.190161f,-0.0553306f,-0.131224f},{0.144011f,-0.0959421f,-0.145366f},{0.144282f,-0.0962099f,-0.145713f}, - {0.149803f,-0.0914681f,-0.144944f},{0.154798f,-0.0861567f,-0.143429f},{0.15923f,-0.0818969f,-0.142366f}, - {0.155583f,-0.0868273f,-0.144466f},{0.150012f,-0.0916126f,-0.145472f},{0.143742f,-0.0956526f,-0.145199f}, - {0.149524f,-0.0912072f,-0.144598f},{0.149251f,-0.0909211f,-0.144431f},{0.13357f,-0.105734f,-0.147719f}, - {0.133556f,-0.105746f,-0.147105f},{0.128196f,-0.110381f,-0.147351f},{0.144478f,-0.096365f,-0.146243f}, - {0.127892f,-0.110028f,-0.148558f},{0.133182f,-0.105243f,-0.148599f},{0.133422f,-0.105538f,-0.148251f}, - {0.128143f,-0.11032f,-0.148015f},{0.138114f,-0.100033f,-0.148493f},{0.138401f,-0.10024f,-0.148445f}, - {0.132929f,-0.10494f,-0.148767f},{0.132705f,-0.104679f,-0.14881f},{0.12751f,-0.109583f,-0.148876f}, - {0.127291f,-0.109328f,-0.148916f},{0.174884f,-0.0684522f,-0.137702f},{0.171588f,-0.0717361f,-0.138964f}, - {0.177206f,-0.0669114f,-0.136973f},{0.169701f,-0.0729032f,-0.13946f},{0.182818f,-0.062091f,-0.134725f}, - {0.180024f,-0.0640372f,-0.135742f},{0.188716f,-0.0575456f,-0.132375f},{0.188416f,-0.0572832f,-0.132217f}, - {0.185118f,-0.0596621f,-0.133582f},{0.199528f,-0.0477396f,-0.126416f},{0.200078f,-0.0468134f,-0.125923f}, - {0.210459f,-0.0383507f,-0.119568f},{0.215831f,-0.0337366f,-0.115753f},{0.214463f,-0.0344587f,-0.116543f}, - {0.205021f,-0.0430213f,-0.123123f},{0.228159f,-0.0226953f,-0.105516f},{0.223677f,-0.0265448f,-0.109369f}, - {0.226336f,-0.0247146f,-0.107358f},{0.21911f,-0.0304671f,-0.113046f},{0.236853f,-0.0152278f,-0.0972923f}, - {0.236452f,-0.0160256f,-0.0979722f},{0.24134f,-0.0118274f,-0.0929223f},{0.231448f,-0.0203242f,-0.102786f}, - {0.249164f,-0.00465414f,-0.0837205f},{0.250729f,-0.00376401f,-0.0821464f},{0.253058f,-0.00130946f,-0.0788827f}, - {0.246102f,-0.00773759f,-0.0876442f},{0.264065f,0.00814415f,-0.0634868f},{0.260512f,0.00509248f,-0.0687614f}, - {0.263712f,0.00738746f,-0.0644306f},{0.256842f,0.00194036f,-0.0738949f},{0.259542f,0.00380527f,-0.0705292f}, - {0.273991f,0.0166696f,-0.0468636f},{0.271547f,0.0141168f,-0.0517099f},{0.2752f,0.0172537f,-0.0451124f}, - {0.267717f,0.0108265f,-0.0581535f},{0.281948f,0.0230499f,-0.0315071f},{0.282759f,0.0241996f,-0.0291439f}, - {0.27997f,0.0218041f,-0.0351637f},{0.277046f,0.0192933f,-0.041072f},{0.290298f,0.0306748f,-0.010468f}, - {0.287925f,0.0286369f,-0.0167907f},{0.290627f,0.030504f,-0.0102766f},{0.285037f,0.0257024f,-0.0245261f}, - {0.293126f,0.0326501f,-0.0030353f},{0.294612f,0.0343798f,0.00244111f},{0.292527f,0.0325897f,-0.00405553f}, - {0.299429f,0.0380636f,0.0189909f},{0.298338f,0.0375801f,0.0156645f},{0.297526f,0.0364296f,0.0116119f}, - {0.296549f,0.0360438f,0.00901635f},{0.295426f,0.0346253f,0.00426541f},{0.301463f,0.0402644f,0.0291557f}, - {0.302645f,0.0408255f,0.0337941f},{0.302797f,0.04141f,0.0359868f},{0.301134f,0.0395283f,0.0263892f}, - {0.299976f,0.0389874f,0.0223796f},{0.303977f,0.0424232f,0.0428671f},{0.30509f,0.0429262f,0.0485748f}, - {0.305001f,0.0433031f,0.0497904f},{0.303962f,0.0419573f,0.0411933f},{0.308026f,0.0454474f,0.0848371f}, - {0.307848f,0.0457485f,0.0918925f},{0.307769f,0.0456805f,0.0848393f},{0.305869f,0.044049f,0.0567509f}, - {0.306032f,0.0437353f,0.0559272f},{0.307375f,0.0448882f,0.0705019f},{0.307759f,0.0446979f,0.0704868f}, - {0.308168f,0.0450498f,0.077694f},{0.307531f,0.0454763f,0.0777923f},{0.306581f,0.0446602f,0.0637421f}, - {0.307135f,0.0451361f,0.0707579f},{0.307784f,0.0452398f,0.0777041f},{0.306792f,0.044388f,0.0632397f}, - {0.30868f,0.0449881f,0.0776733f},{0.309485f,0.0453564f,0.084806f},{0.308922f,0.0451961f,0.0848218f}, - {0.305473f,0.0427346f,0.0485442f},{0.304344f,0.041765f,0.0411575f},{0.308269f,0.0446357f,0.0704555f}, - {0.307176f,0.0441974f,0.0632194f},{0.307686f,0.0441345f,0.0631775f},{0.30598f,0.0426695f,0.0484808f}, - {0.309295f,0.0451931f,0.0703525f},{0.308709f,0.0446894f,0.0630396f},{0.309537f,0.0457246f,0.0703047f}, - {0.308247f,0.0442923f,0.0631135f},{0.308831f,0.0447947f,0.0704077f},{0.309553f,0.0462388f,0.0702734f}, - {0.309967f,0.0465942f,0.0775525f},{0.310303f,0.0465537f,0.0918925f},{0.310194f,0.0462889f,0.0847721f}, - {0.310211f,0.046804f,0.0847617f},{0.310081f,0.0472127f,0.0847568f},{0.310171f,0.0472612f,0.0918925f}, - {0.310283f,0.046913f,0.0918925f},{0.30997f,0.0475707f,0.0918925f},{0.301514f,0.0393343f,0.026343f}, - {0.278668f,0.0202326f,-0.0383737f},{0.285411f,0.0264779f,-0.0230178f},{0.28793f,0.0281877f,-0.0174448f}, - {0.282314f,0.0228442f,-0.0315942f},{0.270808f,0.0139352f,-0.0525331f},{0.267498f,0.0110925f,-0.0580758f}, - {0.255211f,8.59432e-005f,-0.0764381f},{0.245163f,-0.00809075f,-0.088404f},{0.259892f,0.00358602f,-0.0706439f}, - {0.260333f,0.0034637f,-0.0708815f},{0.264512f,0.00705366f,-0.0647696f},{0.241058f,-0.0116164f,-0.0929293f}, - {0.232552f,-0.0189219f,-0.101489f},{0.209739f,-0.0385159f,-0.119856f},{0.204942f,-0.0426353f,-0.122984f}, - {0.221127f,-0.0291884f,-0.111682f},{0.237193f,-0.0164102f,-0.098384f},{0.231778f,-0.0205605f,-0.102924f}, - {0.232178f,-0.0207181f,-0.103209f},{0.15395f,-0.0864318f,-0.14351f},{0.148646f,-0.090987f,-0.144448f}, - {0.143324f,-0.0955583f,-0.145179f},{0.133384f,-0.10557f,-0.146574f},{0.128144f,-0.110321f,-0.147023f}, - {0.138279f,-0.100345f,-0.145739f},{0.137988f,-0.100142f,-0.145701f},{0.132868f,-0.104993f,-0.146057f}, - {0.132642f,-0.104733f,-0.146014f},{0.128196f,-0.110381f,-0.147687f},{0.12751f,-0.109583f,-0.146158f}, - {0.127291f,-0.109328f,-0.146119f},{0.12771f,-0.109815f,-0.146297f},{0.127896f,-0.110032f,-0.146474f}, - {0.133129f,-0.105289f,-0.146225f},{0.128042f,-0.110202f,-0.146724f},{0.138543f,-0.100638f,-0.145907f}, - {0.155075f,-0.0864395f,-0.143596f},{0.160656f,-0.0816457f,-0.142353f},{0.16626f,-0.0768329f,-0.140865f}, - {0.171877f,-0.0720087f,-0.139127f},{0.177498f,-0.0671806f,-0.137134f},{0.183114f,-0.0623568f,-0.134885f}, - {0.194638f,-0.0529602f,-0.129928f},{0.200189f,-0.0481929f,-0.12689f},{0.194293f,-0.0527555f,-0.129604f}, - {0.199836f,-0.0479952f,-0.126571f},{0.205333f,-0.0432736f,-0.123274f},{0.210775f,-0.0385997f,-0.119717f}, - {0.216151f,-0.0339824f,-0.1159f},{0.22145f,-0.0294309f,-0.111826f},{0.226663f,-0.024954f,-0.107499f}, - {0.236786f,-0.0162589f,-0.0981062f},{0.241678f,-0.0120577f,-0.0930527f},{0.246443f,-0.00796499f,-0.087771f}, - {0.251073f,-0.00398861f,-0.0822693f},{0.255558f,-0.000135934f,-0.0765569f},{0.264066f,0.00717073f,-0.0645409f}, - {0.268073f,0.0106122f,-0.0582594f},{0.271906f,0.0139049f,-0.0518113f},{0.275561f,0.0170439f,-0.0452091f}, - {0.279032f,0.0200249f,-0.0384656f},{0.29201f,0.0303472f,-0.0107265f},{0.288783f,0.0278991f,-0.017682f}, - {0.289301f,0.0280207f,-0.0179263f},{0.285405f,0.0254986f,-0.0246083f},{0.288301f,0.0279857f,-0.017522f}, - {0.290999f,0.0303036f,-0.0103487f},{0.2935f,0.0324512f,-0.0031023f},{0.295801f,0.0344278f,0.00420356f}, - {0.297903f,0.0362334f,0.0115553f},{0.299807f,0.0378685f,0.0189394f},{0.303025f,0.0406324f,0.0337531f}, - {0.30485f,0.0416984f,0.0410833f},{0.306415f,0.0435442f,0.0559018f},{0.30841f,0.0452575f,0.0848321f}, - {0.308442f,0.0453419f,0.0918925f},{0.308124f,0.045503f,0.0918925f},{0.128039f,-0.110199f,-0.14831f}, - {0.138807f,-0.100913f,-0.146254f},{0.155362f,-0.0866934f,-0.14394f},{0.160952f,-0.0818926f,-0.142695f}, - {0.166563f,-0.0770728f,-0.141205f},{0.172189f,-0.0722415f,-0.139464f},{0.177818f,-0.0674064f,-0.137469f}, - {0.183443f,-0.0625755f,-0.135216f},{0.189053f,-0.0577573f,-0.132703f},{0.205694f,-0.0434645f,-0.123589f}, - {0.206027f,-0.043502f,-0.12407f},{0.211489f,-0.0388108f,-0.120499f},{0.211144f,-0.0387837f,-0.120026f}, - {0.216528f,-0.0341596f,-0.116203f},{0.221835f,-0.0296015f,-0.112124f},{0.227055f,-0.0251181f,-0.10779f}, - {0.247289f,-0.00806285f,-0.0884349f},{0.247595f,-0.00780019f,-0.0888979f},{0.252254f,-0.00379886f,-0.0833616f}, - {0.242092f,-0.0122029f,-0.0933231f},{0.246864f,-0.0081042f,-0.0880336f},{0.251501f,-0.00412199f,-0.0825239f}, - {0.255993f,-0.000263687f,-0.0768032f},{0.272846f,0.0138878f,-0.0523423f},{0.273218f,0.0142069f,-0.0527127f}, - {0.276895f,0.0173656f,-0.046069f},{0.268525f,0.0105001f,-0.0584789f},{0.272364f,0.0137976f,-0.0520214f}, - {0.276025f,0.0169413f,-0.0454095f},{0.2795f,0.0199266f,-0.0386562f},{0.282788f,0.02275f,-0.0317747f}, - {0.285883f,0.0254083f,-0.0247786f},{0.291486f,0.0302204f,-0.0104982f},{0.29399f,0.0323711f,-0.00324118f}, - {0.296294f,0.0343506f,0.00407537f},{0.2984f,0.0361588f,0.0114378f},{0.300306f,0.0377963f,0.0188328f}, - {0.302015f,0.0392642f,0.0262471f},{0.303529f,0.0405642f,0.0336681f},{0.306924f,0.0434803f,0.0558492f}, - {0.309707f,0.0455472f,0.077605f},{0.308803f,0.0452653f,0.0918925f},{0.138651f,-0.100546f,-0.148277f}, - {0.138991f,-0.101078f,-0.146785f},{0.161185f,-0.0820158f,-0.143218f},{0.16127f,-0.081943f,-0.143822f}, - {0.166909f,-0.0771001f,-0.142325f},{0.166809f,-0.0771853f,-0.141725f},{0.172447f,-0.0723432f,-0.13998f}, - {0.178089f,-0.0674973f,-0.137981f},{0.183726f,-0.0626556f,-0.135723f},{0.189349f,-0.0578266f,-0.133204f}, - {0.194947f,-0.0530188f,-0.130423f},{0.200509f,-0.048241f,-0.127378f},{0.216885f,-0.0341764f,-0.116668f}, - {0.217113f,-0.0339808f,-0.117203f},{0.222445f,-0.0294008f,-0.113104f},{0.222204f,-0.0296081f,-0.112579f}, - {0.227436f,-0.0251146f,-0.108236f},{0.23257f,-0.0207049f,-0.103644f},{0.237597f,-0.0163874f,-0.0988083f}, - {0.242506f,-0.0121707f,-0.0937362f},{0.251936f,-0.00407176f,-0.0829128f},{0.256438f,-0.00020485f,-0.0771794f}, - {0.260788f,0.00353086f,-0.0712445f},{0.264977f,0.00712881f,-0.065119f},{0.268999f,0.010583f,-0.0588143f}, - {0.276515f,0.0170385f,-0.0457157f},{0.279998f,0.0200305f,-0.0389474f},{0.283293f,0.0228602f,-0.0320505f}, - {0.286395f,0.0255244f,-0.0250388f},{0.29452f,0.0325027f,-0.00345334f},{0.294947f,0.0328695f,-0.00369814f}, - {0.297263f,0.0348585f,0.00365355f},{0.29683f,0.0344866f,0.00387953f},{0.29894f,0.0362988f,0.0112584f}, - {0.30085f,0.03794f,0.0186698f},{0.302563f,0.0394112f,0.0261007f},{0.30408f,0.0407141f,0.0335382f}, - {0.305404f,0.0418509f,0.04097f},{0.306537f,0.0428241f,0.048384f},{0.307483f,0.0436367f,0.0557688f}, - {0.309243f,0.0451479f,0.0776416f},{0.309162f,0.0452855f,0.0918925f},{0.14452f,-0.0963291f,-0.146855f}, - {0.150068f,-0.0915645f,-0.146081f},{0.139019f,-0.101054f,-0.147398f},{0.155654f,-0.0867669f,-0.145073f}, - {0.172561f,-0.0722455f,-0.140576f},{0.178217f,-0.0673872f,-0.138571f},{0.183869f,-0.0625331f,-0.136307f}, - {0.183833f,-0.0622407f,-0.136814f},{0.189482f,-0.0573886f,-0.134283f},{0.189506f,-0.0576918f,-0.133782f}, - {0.195118f,-0.0528716f,-0.130993f},{0.200695f,-0.0480815f,-0.127941f},{0.206227f,-0.0433303f,-0.124624f}, - {0.211703f,-0.0386271f,-0.121044f},{0.22769f,-0.0248958f,-0.10875f},{0.227751f,-0.0245198f,-0.109195f}, - {0.23291f,-0.0200889f,-0.104581f},{0.232838f,-0.0204747f,-0.104146f},{0.237878f,-0.0161461f,-0.0992979f}, - {0.2428f,-0.0119186f,-0.0942128f},{0.256767f,7.79773e-005f,-0.0776135f},{0.256893f,0.000509374f,-0.0779897f}, - {0.261263f,0.00426299f,-0.0720263f},{0.261128f,0.00382328f,-0.0716633f},{0.265328f,0.00743047f,-0.0655221f}, - {0.26936f,0.0108935f,-0.0592012f},{0.280388f,0.0203653f,-0.0392833f},{0.280566f,0.0208417f,-0.0395744f}, - {0.283876f,0.023685f,-0.0326445f},{0.283691f,0.0232022f,-0.0323688f},{0.286801f,0.0258733f,-0.025339f}, - {0.289715f,0.028376f,-0.0182083f},{0.292431f,0.0307085f,-0.01099f},{0.299378f,0.0366754f,0.0110514f}, - {0.301294f,0.0383208f,0.0184819f},{0.301518f,0.038837f,0.0183189f},{0.303239f,0.0403153f,0.0257854f}, - {0.303011f,0.0397958f,0.0259318f},{0.304532f,0.041102f,0.0333884f},{0.305859f,0.0422417f,0.0408392f}, - {0.306995f,0.0432174f,0.0482723f},{0.307944f,0.0440321f,0.0556761f},{0.309951f,0.0457562f,0.0847878f}, - {0.30982f,0.0455988f,0.0918925f},{0.309511f,0.0453977f,0.0918925f},{0.144396f,-0.0961117f,-0.147384f}, - {0.149956f,-0.0913365f,-0.14661f},{0.138883f,-0.100847f,-0.147929f},{0.155555f,-0.0865282f,-0.145599f}, - {0.161183f,-0.0816937f,-0.144345f},{0.166835f,-0.07684f,-0.142845f},{0.172499f,-0.0719747f,-0.141092f}, - {0.178168f,-0.0671055f,-0.139082f},{0.195107f,-0.0525577f,-0.131488f},{0.200554f,-0.0473783f,-0.128748f}, - {0.200696f,-0.047757f,-0.128429f},{0.20624f,-0.0429952f,-0.125105f},{0.211728f,-0.0382816f,-0.121517f}, - {0.21715f,-0.033625f,-0.117667f},{0.222494f,-0.0290348f,-0.113559f},{0.237873f,-0.0153256f,-0.1f}, - {0.237961f,-0.0157507f,-0.0997223f},{0.242894f,-0.0115138f,-0.0946258f},{0.2477f,-0.00738628f,-0.0892991f}, - {0.252369f,-0.00337607f,-0.0837506f},{0.265424f,0.00833753f,-0.0661002f},{0.265472f,0.00787819f,-0.0658715f}, - {0.269513f,0.0113489f,-0.0595366f},{0.27338f,0.0146696f,-0.0530336f},{0.277066f,0.0178353f,-0.0463752f}, - {0.286976f,0.0268481f,-0.0257695f},{0.286993f,0.026362f,-0.0255992f},{0.289914f,0.0288702f,-0.0184526f}, - {0.292635f,0.0312079f,-0.0112184f},{0.295157f,0.0333737f,-0.00391029f},{0.297478f,0.0353671f,0.00345771f}, - {0.299598f,0.037188f,0.0108719f},{0.304763f,0.0416245f,0.0332586f},{0.306104f,0.0432766f,0.0406518f}, - {0.306093f,0.0427667f,0.0407259f},{0.307232f,0.0437445f,0.0481755f},{0.308183f,0.0445611f,0.0555957f}, - {0.30895f,0.0452198f,0.0629755f},{0.30995f,0.0460795f,0.0775733f},{0.310227f,0.0461927f,0.0918925f}, - {0.31006f,0.0458671f,0.0918925f},{0.127713f,-0.109819f,-0.148751f},{0.144173f,-0.0958031f,-0.147731f}, - {0.149741f,-0.091021f,-0.146955f},{0.155347f,-0.0862057f,-0.145943f},{0.160984f,-0.0813642f,-0.144688f}, - {0.166643f,-0.0765035f,-0.143185f},{0.172316f,-0.0716311f,-0.141429f},{0.177994f,-0.0667549f,-0.139417f}, - {0.183666f,-0.061883f,-0.137145f},{0.189324f,-0.0570238f,-0.134611f},{0.194956f,-0.052186f,-0.131812f}, - {0.205904f,-0.0422634f,-0.125571f},{0.210708f,-0.0376835f,-0.122344f},{0.211404f,-0.0375395f,-0.121975f}, - {0.206106f,-0.0426097f,-0.125419f},{0.211602f,-0.0378891f,-0.121826f},{0.217032f,-0.0332258f,-0.117971f}, - {0.222384f,-0.028629f,-0.113856f},{0.227648f,-0.0241074f,-0.109486f},{0.232815f,-0.0196701f,-0.104866f}, - {0.242813f,-0.0110826f,-0.0948962f},{0.242637f,-0.0107143f,-0.0950266f},{0.247626f,-0.00694907f,-0.0895618f}, - {0.252302f,-0.00293304f,-0.0840052f},{0.256832f,0.000958027f,-0.0782359f},{0.261209f,0.00471708f,-0.072264f}, - {0.269313f,0.0121976f,-0.059862f},{0.272494f,0.0153837f,-0.0542297f},{0.273188f,0.0155254f,-0.053345f}, - {0.269471f,0.0118133f,-0.059756f},{0.273343f,0.0151388f,-0.0532437f},{0.277034f,0.0183091f,-0.0465757f}, - {0.280539f,0.0213198f,-0.039765f},{0.283855f,0.0241672f,-0.0328251f},{0.289901f,0.02936f,-0.0186126f}, - {0.292484f,0.0320992f,-0.0114399f},{0.292626f,0.031701f,-0.0113678f},{0.295152f,0.03387f,-0.00404916f}, - {0.297476f,0.0358663f,0.00332952f},{0.299599f,0.0376898f,0.0107545f},{0.301522f,0.0393413f,0.0182123f}, - {0.303246f,0.0408217f,0.0256896f},{0.304772f,0.0421327f,0.0331736f},{0.307244f,0.0442558f,0.0481121f}, - {0.308196f,0.0450736f,0.0555431f},{0.308964f,0.0457333f,0.0629336f},{0.143927f,-0.095494f,-0.147899f}, - {0.149499f,-0.0907085f,-0.147122f},{0.155109f,-0.0858899f,-0.146109f},{0.16075f,-0.081045f,-0.144853f}, - {0.166413f,-0.0761809f,-0.143349f},{0.17209f,-0.0713051f,-0.141592f},{0.177772f,-0.0664255f,-0.139579f}, - {0.183448f,-0.0615502f,-0.137305f},{0.189109f,-0.0566876f,-0.134769f},{0.194746f,-0.0518464f,-0.131968f}, - {0.200348f,-0.0470353f,-0.128902f},{0.216837f,-0.032873f,-0.118117f},{0.222193f,-0.0282729f,-0.114f}, - {0.227461f,-0.0237482f,-0.109627f},{0.232631f,-0.0193078f,-0.105003f},{0.237693f,-0.0149603f,-0.100134f}, - {0.238141f,-0.0141219f,-0.0995149f},{0.247453f,-0.00657788f,-0.0896885f},{0.252132f,-0.00255905f,-0.0841281f}, - {0.256665f,0.00133474f,-0.0783547f},{0.261045f,0.00509642f,-0.0723786f},{0.265263f,0.00871939f,-0.0662105f}, - {0.276881f,0.0186979f,-0.0466724f},{0.280389f,0.0217108f,-0.039857f},{0.283707f,0.0245601f,-0.0329122f}, - {0.28683f,0.0272429f,-0.0258517f},{0.289757f,0.0297565f,-0.0186898f},{0.289812f,0.030258f,-0.0180672f}, - {0.295012f,0.0342697f,-0.00411618f},{0.297337f,0.0362674f,0.00326766f},{0.299462f,0.0380922f,0.0106978f}, - {0.301386f,0.0397448f,0.0181608f},{0.303111f,0.0412262f,0.0256434f},{0.304639f,0.0425382f,0.0331326f}, - {0.305971f,0.0436828f,0.040616f},{0.307112f,0.0446628f,0.0480815f},{0.308065f,0.0454811f,0.0555177f}, - {0.308834f,0.0461413f,0.0629134f},{0.309423f,0.0466471f,0.0702583f},{0.309837f,0.0470028f,0.0775425f}, - {0.143513f,-0.0953962f,-0.147965f},{0.148897f,-0.0907713f,-0.147226f},{0.154263f,-0.0861627f,-0.146277f}, - {0.159606f,-0.0815743f,-0.145118f},{0.164919f,-0.0770103f,-0.143752f},{0.1702f,-0.0724748f,-0.142179f}, - {0.175443f,-0.0679717f,-0.1404f},{0.180644f,-0.0635049f,-0.138417f},{0.185798f,-0.0590782f,-0.136232f}, - {0.1909f,-0.0546957f,-0.133846f},{0.195947f,-0.0503613f,-0.131262f},{0.200933f,-0.0460786f,-0.128482f}, - {0.205855f,-0.0418515f,-0.125509f},{0.215487f,-0.0335786f,-0.118992f},{0.220189f,-0.0295402f,-0.115454f}, - {0.224809f,-0.0255719f,-0.111734f},{0.229344f,-0.0216771f,-0.107835f},{0.233789f,-0.0178593f,-0.103761f}, - {0.242395f,-0.0104681f,-0.0951008f},{0.246548f,-0.00690116f,-0.0905224f},{0.250596f,-0.00342407f,-0.0857837f}, - {0.254536f,-4.00465e-005f,-0.080889f},{0.258365f,0.00324795f,-0.0758426f},{0.262078f,0.00643705f,-0.0706488f}, - {0.265672f,0.00952448f,-0.0653124f},{0.269146f,0.0125076f,-0.0598376f},{0.275715f,0.0181502f,-0.0484934f}, - {0.278806f,0.0208047f,-0.042634f},{0.281763f,0.0233449f,-0.0366563f},{0.284585f,0.0257686f,-0.0305656f}, - {0.287269f,0.0280737f,-0.0243674f},{0.292213f,0.0323197f,-0.0116704f},{0.294469f,0.0342571f,-0.00518257f}, - {0.296578f,0.0360684f,0.00139061f},{0.298538f,0.0377519f,0.00804317f},{0.300347f,0.0393062f,0.0147693f}, - {0.302005f,0.04073f,0.0215631f},{0.303509f,0.042022f,0.0284189f},{0.304859f,0.043181f,0.0353305f}, - {0.306052f,0.0442061f,0.0422916f},{0.307089f,0.0450964f,0.0492962f},{0.307967f,0.045851f,0.0563382f}, - {0.308687f,0.0464693f,0.0634117f},{0.309248f,0.0469508f,0.0705101f},{0.309649f,0.047295f,0.0776272f}, - {0.309889f,0.0475017f,0.0847567f},{-0.0493934f,-0.26108f,0.0428677f},{-0.0500586f,-0.262105f,0.0485758f}, - {-0.0489305f,-0.261136f,0.0411945f},{-0.0403941f,-0.253804f,0.00426646f},{-0.0400286f,-0.253036f,0.00244165f}, - {-0.041966f,-0.2547f,0.00901696f},{-0.0517606f,-0.263566f,0.0632405f},{-0.052343f,-0.264067f,0.0705025f}, - {-0.0516301f,-0.263974f,0.0632202f},{-0.0512863f,-0.262705f,0.0567511f},{-0.0519978f,-0.263316f,0.0637424f}, - {-0.0528812f,-0.26555f,0.084822f},{-0.0530084f,-0.265783f,0.0918925f},{-0.0531246f,-0.266082f,0.0848062f}, - {-0.0522285f,-0.264989f,0.0704561f},{-0.0516449f,-0.264488f,0.0631783f},{-0.0522129f,-0.264475f,0.0704874f}, - {-0.0535901f,-0.266482f,0.084788f},{-0.0540726f,-0.26669f,0.0918925f},{-0.0541535f,-0.266643f,0.0847723f}, - {-0.0524705f,-0.265521f,0.0704083f},{-0.0518855f,-0.265018f,0.0631143f},{-0.0550496f,-0.266391f,0.084757f}, - {-0.0548051f,-0.266181f,0.0775429f},{-0.0546651f,-0.266581f,0.084762f},{-0.0544319f,-0.26671f,0.0918925f}, - {-0.0553868f,-0.266227f,0.0918925f},{-0.0551112f,-0.266473f,0.0918925f},{-0.0550661f,-0.265952f,0.0776267f}, - {-0.0510006f,-0.262914f,0.0559281f},{-0.0504179f,-0.261959f,0.0497909f},{-0.0553066f,-0.266158f,0.0847564f}, - {-0.0468799f,-0.258921f,0.0291561f},{-0.0476128f,-0.260004f,0.0337954f},{-0.0461026f,-0.258707f,0.0263905f}, - {-0.0482137f,-0.260066f,0.0359874f},{-0.0443972f,-0.257242f,0.0189921f},{-0.0453931f,-0.257644f,0.0223799f}, - {-0.0424948f,-0.255608f,0.0116131f},{-0.0437546f,-0.256236f,0.015665f},{-0.0380944f,-0.251829f,-0.00303443f}, - {-0.0379442f,-0.251246f,-0.0040552f},{-0.0328989f,-0.247366f,-0.0174445f},{-0.0300052f,-0.244881f,-0.0245261f}, - {-0.0308284f,-0.245134f,-0.0230172f},{-0.0355958f,-0.249683f,-0.010276f},{-0.0224634f,-0.23795f,-0.0410717f}, - {-0.0253866f,-0.240461f,-0.0351634f},{-0.0236368f,-0.239411f,-0.0383731f},{-0.0281758f,-0.242856f,-0.0291434f}, - {-0.016225f,-0.232592f,-0.0525327f},{-0.0165165f,-0.233296f,-0.051709f},{-0.0126856f,-0.230006f,-0.0581524f}, - {-0.0201686f,-0.236433f,-0.0451116f},{-0.00592937f,-0.223749f,-0.0687612f},{-0.004511f,-0.222985f,-0.0705281f}, - {-0.00225941f,-0.220597f,-0.0738946f},{-0.00868167f,-0.226567f,-0.0644294f},{0.00942004f,-0.210566f,-0.088404f}, - {0.00541866f,-0.214002f,-0.0837203f},{0.00892832f,-0.211442f,-0.0876434f},{0.00152437f,-0.217347f,-0.0788824f}, - {0.00430185f,-0.215415f,-0.0821454f},{0.0220305f,-0.199735f,-0.101489f},{0.0185782f,-0.203154f,-0.0979716f}, - {0.0235832f,-0.198855f,-0.102786f},{0.0136901f,-0.207352f,-0.0929216f},{0.0339042f,-0.189991f,-0.111682f}, - {0.0354727f,-0.18819f,-0.113046f},{0.030906f,-0.192112f,-0.109369f},{0.026424f,-0.195961f,-0.105516f}, - {0.0496403f,-0.176021f,-0.122984f},{0.0448439f,-0.180141f,-0.119856f},{0.0500098f,-0.176158f,-0.123123f}, - {0.0392f,-0.185442f,-0.115753f},{0.055503f,-0.17144f,-0.126416f},{0.0594332f,-0.16761f,-0.12867f}, - {0.0545048f,-0.171843f,-0.125923f},{0.0722122f,-0.157088f,-0.134725f},{0.0694645f,-0.158995f,-0.133582f}, - {0.0666145f,-0.161896f,-0.132217f},{0.0644212f,-0.163326f,-0.131224f},{0.0610414f,-0.166683f,-0.129448f}, - {0.079699f,-0.150204f,-0.137702f},{0.0778246f,-0.152268f,-0.136973f},{0.083442f,-0.147443f,-0.138964f}, - {0.0745587f,-0.154619f,-0.135742f},{0.0901005f,-0.141271f,-0.141015f},{0.089055f,-0.142623f,-0.140701f}, - {0.0946547f,-0.137813f,-0.142188f},{0.0848811f,-0.145754f,-0.13946f},{0.100633f,-0.132225f,-0.143511f}, - {0.0953526f,-0.13676f,-0.142366f},{0.100232f,-0.133023f,-0.14343f},{0.111882f,-0.124362f,-0.146244f}, - {0.111758f,-0.124144f,-0.145714f},{0.106237f,-0.128886f,-0.144944f},{0.122163f,-0.114186f,-0.146058f}, - {0.116595f,-0.118515f,-0.145701f},{0.116752f,-0.118834f,-0.145739f},{0.121941f,-0.113924f,-0.146015f}, - {0.111289f,-0.123526f,-0.145199f},{0.10578f,-0.128258f,-0.144432f},{0.111534f,-0.123836f,-0.145367f}, - {0.111259f,-0.123099f,-0.145179f},{0.105936f,-0.12767f,-0.144449f},{0.0892849f,-0.142945f,-0.140865f}, - {0.095088f,-0.138462f,-0.142696f},{0.0948885f,-0.138132f,-0.142353f},{0.106348f,-0.129114f,-0.145472f}, - {0.106021f,-0.128571f,-0.144599f},{0.11184f,-0.124398f,-0.146855f},{0.117342f,-0.119672f,-0.147398f}, - {0.117369f,-0.119648f,-0.146786f},{0.111372f,-0.123975f,-0.147732f},{0.116894f,-0.119232f,-0.148277f}, - {0.111644f,-0.124242f,-0.147385f},{0.122619f,-0.114816f,-0.148251f},{0.122363f,-0.114535f,-0.148599f}, - {0.122103f,-0.114239f,-0.148767f},{0.121878f,-0.113978f,-0.14881f},{0.0780466f,-0.152598f,-0.137135f}, - {0.0286952f,-0.194464f,-0.107358f},{0.04012f,-0.184198f,-0.116543f},{0.0445719f,-0.180828f,-0.119568f}, - {0.0340952f,-0.190347f,-0.111826f},{0.0177295f,-0.203429f,-0.097292f},{0.0135248f,-0.20704f,-0.0929291f}, - {-0.000180634f,-0.219265f,-0.076437f},{-0.00948232f,-0.226801f,-0.0634867f},{0.00447193f,-0.215789f,-0.0822683f}, - {0.00453921f,-0.216232f,-0.0825229f},{0.00917572f,-0.21225f,-0.0880327f},{-0.0129153f,-0.229749f,-0.0580755f}, - {-0.0194086f,-0.235326f,-0.0468631f},{-0.0333422f,-0.247293f,-0.0167902f},{-0.0357148f,-0.249331f,-0.0104677f}, - {-0.0269169f,-0.242229f,-0.0315068f},{-0.0163243f,-0.234152f,-0.0520204f},{-0.0200158f,-0.236821f,-0.0452083f}, - {-0.0199843f,-0.237295f,-0.0454087f},{-0.0423578f,-0.256011f,0.0115564f},{-0.0525519f,-0.263792f,0.0707584f}, - {-0.0534149f,-0.266377f,0.0918925f},{-0.0529481f,-0.264133f,0.0777929f},{-0.0527525f,-0.264418f,0.0777045f}, - {-0.0528646f,-0.265035f,0.0848323f},{-0.0529317f,-0.265422f,0.0918925f},{-0.0531859f,-0.264337f,0.0848396f}, - {-0.0529943f,-0.264626f,0.0848373f},{-0.0530642f,-0.264714f,0.0918925f},{-0.0529519f,-0.265063f,0.0918925f}, - {-0.0532653f,-0.264405f,0.0918925f},{-0.0531751f,-0.266108f,0.0918925f},{-0.0537244f,-0.266578f,0.0918925f}, - {-0.0526227f,-0.264827f,0.0776945f},{-0.0508696f,-0.263321f,0.0559028f},{-0.0499269f,-0.262512f,0.0485453f}, - {-0.048798f,-0.261542f,0.0411587f},{-0.0474794f,-0.260409f,0.0337544f},{-0.0459681f,-0.259111f,0.0263442f}, - {-0.0442615f,-0.257646f,0.0189407f},{-0.0402537f,-0.254704f,0.00407642f},{-0.037949f,-0.252725f,-0.00324031f}, - {-0.0402556f,-0.254205f,0.00420461f},{-0.0379543f,-0.252228f,-0.00310144f},{-0.0354539f,-0.250081f,-0.0103481f}, - {-0.0327551f,-0.247763f,-0.0175217f},{-0.0298594f,-0.245276f,-0.0246083f},{-0.0267689f,-0.242622f,-0.0315939f}, - {-0.0234865f,-0.239802f,-0.038465f},{-0.0163611f,-0.233683f,-0.0518103f},{-0.0125275f,-0.23039f,-0.0582583f}, - {-0.00852075f,-0.226949f,-0.0645398f},{-0.00434714f,-0.223364f,-0.0706427f},{-1.37117e-005f,-0.219642f,-0.0765558f}, - {0.00910166f,-0.211813f,-0.0877701f},{0.0138668f,-0.20772f,-0.093052f},{0.0187584f,-0.203519f,-0.0981056f}, - {0.0237669f,-0.199217f,-0.102923f},{0.0288825f,-0.194824f,-0.107499f},{0.050333f,-0.177225f,-0.12407f}, - {0.0448966f,-0.18157f,-0.120026f},{0.0448712f,-0.181916f,-0.120499f},{0.0393947f,-0.185795f,-0.1159f}, - {0.0447704f,-0.181178f,-0.119717f},{0.0502121f,-0.176504f,-0.123274f},{0.0557093f,-0.171783f,-0.126571f}, - {0.0612515f,-0.167022f,-0.129604f},{0.0668286f,-0.162232f,-0.132375f},{0.0724302f,-0.157421f,-0.134885f}, - {0.0836679f,-0.147769f,-0.139127f},{0.0894762f,-0.143282f,-0.141206f},{0.10047f,-0.133338f,-0.143596f}, - {0.117002f,-0.11914f,-0.145907f},{0.122417f,-0.114489f,-0.146226f},{-0.0544208f,-0.266371f,0.0775529f}, - {-0.0526389f,-0.265342f,0.0776737f},{-0.0508832f,-0.263834f,0.0558501f},{-0.0499391f,-0.263023f,0.0484819f}, - {-0.0488086f,-0.262052f,0.0410845f},{-0.0474881f,-0.260918f,0.0336694f},{-0.0459745f,-0.259618f,0.0262484f}, - {-0.0442655f,-0.25815f,0.018834f},{-0.0423589f,-0.256512f,0.011439f},{-0.035445f,-0.250574f,-0.0104976f}, - {-0.0356495f,-0.251073f,-0.0107259f},{-0.0329408f,-0.248747f,-0.017926f},{-0.0327422f,-0.248253f,-0.0176816f}, - {-0.0298423f,-0.245762f,-0.0247786f},{-0.0267473f,-0.243104f,-0.0317744f},{-0.02346f,-0.24028f,-0.0386556f}, - {-0.00861687f,-0.227856f,-0.0651178f},{-0.00896809f,-0.228157f,-0.065521f},{-0.0047683f,-0.22455f,-0.0716622f}, - {-0.0124851f,-0.230854f,-0.0584778f},{-0.00847247f,-0.227408f,-0.0647685f},{-0.00429275f,-0.223818f,-0.0708804f}, - {4.70058e-005f,-0.220091f,-0.0768021f},{0.0187631f,-0.20434f,-0.0988077f},{0.0184822f,-0.204581f,-0.0992973f}, - {0.0235221f,-0.200252f,-0.104145f},{0.0139479f,-0.208152f,-0.0933224f},{0.0188466f,-0.203944f,-0.0983834f}, - {0.0238624f,-0.199636f,-0.103208f},{0.0289854f,-0.195236f,-0.10779f},{0.0342058f,-0.190752f,-0.112123f}, - {0.0395131f,-0.186194f,-0.116203f},{0.0503463f,-0.17689f,-0.123589f},{0.0558515f,-0.172161f,-0.12689f}, - {0.0614018f,-0.167394f,-0.129928f},{0.066987f,-0.162597f,-0.132703f},{0.0725969f,-0.157779f,-0.135216f}, - {0.0782214f,-0.152948f,-0.137469f},{0.083851f,-0.148113f,-0.139465f},{0.100678f,-0.133661f,-0.14394f}, - {0.122791f,-0.114992f,-0.147719f},{0.117234f,-0.119441f,-0.146255f},{0.122656f,-0.114784f,-0.146574f}, - {-0.0511222f,-0.264363f,0.0557698f},{-0.0528818f,-0.265874f,0.077642f},{-0.050176f,-0.26355f,0.0483851f}, - {-0.0506339f,-0.263943f,0.0482734f},{-0.049498f,-0.262968f,0.0408405f},{-0.0490429f,-0.262577f,0.0409712f}, - {-0.0477195f,-0.26144f,0.0335395f},{-0.0462026f,-0.260137f,0.026102f},{-0.0444897f,-0.258666f,0.0186711f}, - {-0.0425789f,-0.257025f,0.0112596f},{-0.040469f,-0.255213f,0.00388058f},{-0.0381592f,-0.253229f,-0.00345247f}, - {-0.0300343f,-0.246251f,-0.0250388f},{-0.0304405f,-0.2466f,-0.025339f},{-0.0273306f,-0.243929f,-0.0323684f}, - {-0.0269324f,-0.243587f,-0.0320502f},{-0.0236379f,-0.240757f,-0.0389468f},{-0.0201544f,-0.237765f,-0.0457149f}, - {-0.0164862f,-0.234614f,-0.0523413f},{-0.0126385f,-0.23131f,-0.0588132f},{-0.00442784f,-0.224258f,-0.0712434f}, - {-7.83923e-005f,-0.220522f,-0.0771783f},{0.00442383f,-0.216655f,-0.0829118f},{0.00907067f,-0.212664f,-0.088434f}, - {0.0138535f,-0.208556f,-0.0937354f},{0.0237901f,-0.200022f,-0.103643f},{0.0289246f,-0.195612f,-0.108235f}, - {0.0341565f,-0.191118f,-0.112578f},{0.0394757f,-0.18655f,-0.116668f},{0.0558505f,-0.172486f,-0.127378f}, - {0.0556648f,-0.172645f,-0.127941f},{0.0612418f,-0.167855f,-0.130993f},{0.0614133f,-0.167708f,-0.130423f}, - {0.0670109f,-0.1629f,-0.133204f},{0.0726333f,-0.158071f,-0.135723f},{0.0782704f,-0.15323f,-0.137981f}, - {0.0839125f,-0.148384f,-0.139981f},{0.0895502f,-0.143542f,-0.141725f},{0.0951746f,-0.138711f,-0.143219f}, - {0.100777f,-0.1339f,-0.144466f},{0.122804f,-0.11498f,-0.147106f},{-0.0529343f,-0.265919f,0.0703531f}, - {-0.0523479f,-0.265415f,0.0630404f},{-0.0533467f,-0.266273f,0.0776054f},{-0.0515825f,-0.264758f,0.055677f}, - {-0.0481711f,-0.261828f,0.0333897f},{-0.0466503f,-0.260522f,0.0259331f},{-0.044933f,-0.259047f,0.0184831f}, - {-0.0454772f,-0.259191f,0.0183202f},{-0.0435573f,-0.257542f,0.0108731f},{-0.0430173f,-0.257402f,0.0110526f}, - {-0.040902f,-0.255585f,0.00365461f},{-0.0385862f,-0.253596f,-0.00369726f},{-0.0360702f,-0.251435f,-0.0109894f}, - {-0.0333545f,-0.249102f,-0.0182079f},{-0.0240277f,-0.241092f,-0.0392827f},{-0.0245255f,-0.241196f,-0.0395738f}, - {-0.0210253f,-0.238189f,-0.0463744f},{-0.0205352f,-0.238092f,-0.0460682f},{-0.0168576f,-0.234933f,-0.0527117f}, - {-0.013f,-0.23162f,-0.0592001f},{-0.00040769f,-0.220805f,-0.0776124f},{-0.000853084f,-0.220864f,-0.0779886f}, - {0.00367072f,-0.216978f,-0.0837496f},{0.00410608f,-0.216928f,-0.0833607f},{0.00876485f,-0.212927f,-0.088897f}, - {0.0135599f,-0.208808f,-0.094212f},{0.0286697f,-0.195831f,-0.108749f},{0.0282889f,-0.195834f,-0.109195f}, - {0.0335459f,-0.191319f,-0.113558f},{0.0339151f,-0.191326f,-0.113103f},{0.0392479f,-0.186745f,-0.117203f}, - {0.0446573f,-0.182099f,-0.121044f},{0.0501331f,-0.177396f,-0.124624f},{0.0668538f,-0.163035f,-0.133782f}, - {0.0724906f,-0.158194f,-0.136307f},{0.072207f,-0.158114f,-0.136814f},{0.0778712f,-0.153249f,-0.139083f}, - {0.0781422f,-0.15334f,-0.138571f},{0.0837988f,-0.148482f,-0.140576f},{0.0894511f,-0.143627f,-0.142325f}, - {0.0950898f,-0.138784f,-0.143823f},{0.100706f,-0.13396f,-0.145073f},{0.106292f,-0.129162f,-0.146082f}, - {-0.0534963f,-0.266078f,0.0703053f},{-0.0529085f,-0.265573f,0.0629764f},{-0.0539095f,-0.266433f,0.0775737f}, - {-0.0521415f,-0.264914f,0.0555966f},{-0.0511908f,-0.264098f,0.0481766f},{-0.0500523f,-0.26312f,0.0407271f}, - {-0.0487225f,-0.261978f,0.0332599f},{-0.0471983f,-0.260669f,0.0257867f},{-0.0414372f,-0.255721f,0.00345877f}, - {-0.0396062f,-0.253647f,-0.00404829f},{-0.0391164f,-0.253727f,-0.00390942f},{-0.0365947f,-0.251562f,-0.0112177f}, - {-0.033873f,-0.249224f,-0.0184523f},{-0.0309526f,-0.246716f,-0.0255992f},{-0.0278358f,-0.244039f,-0.0326442f}, - {-0.0177978f,-0.234916f,-0.0532427f},{-0.0173395f,-0.235024f,-0.0530326f},{-0.0134733f,-0.231703f,-0.0595354f}, - {-0.00943248f,-0.228232f,-0.0658703f},{-0.00522337f,-0.224617f,-0.0720252f},{0.0079188f,-0.212829f,-0.0895609f}, - {0.00833983f,-0.212968f,-0.0892982f},{0.0131455f,-0.208841f,-0.0946251f},{0.0180787f,-0.204604f,-0.0997217f}, - {0.0231298f,-0.200265f,-0.10458f},{0.0385138f,-0.186551f,-0.117971f},{0.0388905f,-0.186729f,-0.117667f}, - {0.044312f,-0.182072f,-0.121517f},{0.0497999f,-0.177359f,-0.125105f},{0.0553439f,-0.172597f,-0.128429f}, - {0.0609333f,-0.167797f,-0.131488f},{0.0665577f,-0.162966f,-0.134283f},{0.0835403f,-0.14838f,-0.141092f}, - {0.0889013f,-0.143275f,-0.143185f},{0.0892051f,-0.143514f,-0.142845f},{0.0948564f,-0.138661f,-0.144346f}, - {0.100485f,-0.133826f,-0.145599f},{0.106084f,-0.129018f,-0.14661f},{0.117158f,-0.119507f,-0.147929f}, - {-0.0547929f,-0.266634f,0.0918925f},{-0.0540069f,-0.266016f,0.070274f},{-0.0534183f,-0.26551f,0.0629344f}, - {-0.0526502f,-0.264851f,0.055544f},{-0.0516981f,-0.264033f,0.0481132f},{-0.050558f,-0.263054f,0.040653f}, - {-0.0492262f,-0.26191f,0.0331749f},{-0.0476998f,-0.260599f,0.0256909f},{-0.0459762f,-0.259118f,0.0182135f}, - {-0.0440535f,-0.257467f,0.0107557f},{-0.0419304f,-0.255643f,0.00333058f},{-0.037453f,-0.251278f,-0.0114393f}, - {-0.0352296f,-0.248914f,-0.0180677f},{-0.0347255f,-0.248935f,-0.0186894f},{-0.0370809f,-0.251478f,-0.0113672f}, - {-0.0343552f,-0.249137f,-0.0186123f},{-0.0314306f,-0.246625f,-0.0257695f},{-0.0283092f,-0.243945f,-0.0328247f}, - {-0.0249941f,-0.241097f,-0.0397644f},{-0.0214889f,-0.238087f,-0.0465748f},{-0.013926f,-0.231591f,-0.0597549f}, - {-0.014282f,-0.231377f,-0.0598609f},{-0.00987926f,-0.228115f,-0.066099f},{-0.00566404f,-0.224495f,-0.0722628f}, - {-0.00128743f,-0.220736f,-0.0782348f},{0.00324293f,-0.216845f,-0.0840042f},{0.0123941f,-0.208465f,-0.0950259f}, - {0.0164425f,-0.204534f,-0.0995152f},{0.0173378f,-0.204219f,-0.100133f},{0.0127315f,-0.208695f,-0.0948954f}, - {0.0176718f,-0.204452f,-0.0999994f},{0.0227302f,-0.200108f,-0.104865f},{0.0278968f,-0.19567f,-0.109486f}, - {0.0331614f,-0.191149f,-0.113856f},{0.0439431f,-0.181888f,-0.121826f},{0.0491273f,-0.176916f,-0.125571f}, - {0.049439f,-0.177168f,-0.125419f},{0.054991f,-0.1724f,-0.128748f},{0.0605885f,-0.167592f,-0.131812f}, - {0.0662211f,-0.162754f,-0.134611f},{0.0718786f,-0.157895f,-0.137145f},{0.0775509f,-0.153023f,-0.139417f}, - {0.0832283f,-0.148147f,-0.14143f},{0.0945608f,-0.138414f,-0.144688f},{0.100198f,-0.133572f,-0.145943f}, - {0.105804f,-0.128757f,-0.146956f},{-0.0543909f,-0.265826f,0.0702589f},{-0.0538019f,-0.26532f,0.0629142f}, - {-0.0530333f,-0.264659f,0.0555186f},{-0.0520805f,-0.263841f,0.0480826f},{-0.0509396f,-0.262861f,0.0406172f}, - {-0.0496069f,-0.261717f,0.0331338f},{-0.0480794f,-0.260405f,0.0256447f},{-0.0463547f,-0.258923f,0.0181621f}, - {-0.0444306f,-0.257271f,0.010699f},{-0.042306f,-0.255446f,0.00326873f},{-0.0399801f,-0.253448f,-0.0041153f}, - {-0.0317988f,-0.246422f,-0.0258517f},{-0.0286753f,-0.243739f,-0.0329118f},{-0.0253579f,-0.24089f,-0.0398563f}, - {-0.0218502f,-0.237877f,-0.0466715f},{-0.0181565f,-0.234704f,-0.0533441f},{-0.0179111f,-0.23404f,-0.0542301f}, - {-0.0102325f,-0.227899f,-0.0662094f},{-0.0060143f,-0.224276f,-0.0723775f},{-0.00163463f,-0.220514f,-0.0783537f}, - {0.0028989f,-0.21662f,-0.0841271f},{0.00757805f,-0.212602f,-0.0896876f},{0.0223998f,-0.199871f,-0.105003f}, - {0.02757f,-0.195431f,-0.109627f},{0.0328383f,-0.190906f,-0.114f},{0.0381944f,-0.186306f,-0.118117f}, - {0.0436275f,-0.181639f,-0.121975f},{0.0438755f,-0.180973f,-0.122344f},{0.0546831f,-0.172144f,-0.128902f}, - {0.0602845f,-0.167333f,-0.131968f},{0.0659211f,-0.162492f,-0.134769f},{0.0715825f,-0.157629f,-0.137305f}, - {0.0772588f,-0.152754f,-0.139579f},{0.0829402f,-0.147874f,-0.141593f},{0.0886171f,-0.142999f,-0.143349f}, - {0.0942805f,-0.138134f,-0.144853f},{0.0999216f,-0.133289f,-0.146109f},{0.105532f,-0.128471f,-0.147123f}, - {0.111104f,-0.123685f,-0.147899f},{0.11663f,-0.118939f,-0.148445f},{-0.0546653f,-0.265607f,0.0705096f}, - {-0.0541047f,-0.265126f,0.0634113f},{-0.0533848f,-0.264508f,0.056338f},{-0.0525062f,-0.263753f,0.0492957f}, - {-0.0514696f,-0.262863f,0.042291f},{-0.0502761f,-0.261838f,0.0353299f},{-0.0489266f,-0.260679f,0.0284186f}, - {-0.0474223f,-0.259387f,0.0215629f},{-0.0457645f,-0.257963f,0.0147688f},{-0.0439548f,-0.256408f,0.00804257f}, - {-0.0419946f,-0.254725f,0.00139006f},{-0.0398858f,-0.252914f,-0.00518291f},{-0.0376301f,-0.250976f,-0.0116708f}, - {-0.0326863f,-0.24673f,-0.024368f},{-0.0300025f,-0.244425f,-0.0305661f},{-0.0271806f,-0.242001f,-0.0366566f}, - {-0.0242229f,-0.239461f,-0.0426344f},{-0.0211322f,-0.236806f,-0.0484939f},{-0.0145625f,-0.231164f,-0.0598379f}, - {-0.0110894f,-0.228181f,-0.0653124f},{-0.00749453f,-0.225093f,-0.0706491f},{-0.00378138f,-0.221904f,-0.0758429f}, - {4.68637e-005f,-0.218616f,-0.0808893f},{0.00398685f,-0.215232f,-0.0857839f},{0.00803512f,-0.211755f,-0.0905225f}, - {0.0121883f,-0.208188f,-0.095101f},{0.020794f,-0.200797f,-0.103761f},{0.025239f,-0.196979f,-0.107835f}, - {0.0297737f,-0.193084f,-0.111734f},{0.0343942f,-0.189116f,-0.115454f},{0.0390962f,-0.185078f,-0.118992f}, - {0.0487282f,-0.176805f,-0.125509f},{0.0536499f,-0.172578f,-0.128482f},{0.0586363f,-0.168295f,-0.131262f}, - {0.063683f,-0.16396f,-0.133846f},{0.0687854f,-0.159578f,-0.136231f},{0.0739393f,-0.155151f,-0.138417f}, - {0.0791401f,-0.150685f,-0.1404f},{0.0843832f,-0.146181f,-0.142179f},{0.089664f,-0.141646f,-0.143752f}, - {0.0949777f,-0.137082f,-0.145118f},{0.10032f,-0.132494f,-0.146276f},{0.105686f,-0.127885f,-0.147225f}, - {0.111071f,-0.12326f,-0.147964f},{0.11647f,-0.118623f,-0.148493f},{-0.0258064f,-0.240367f,-0.0398563f}, - {-0.0222987f,-0.237355f,-0.0466715f},{-0.0147777f,-0.22955f,-0.0592001f},{-0.0108902f,-0.226535f,-0.0658703f}, - {-0.0149311f,-0.230006f,-0.0595354f},{-0.0322473f,-0.245899f,-0.0258517f},{-0.0291238f,-0.243217f,-0.0329118f}, - {-0.0379016f,-0.250756f,-0.0114393f},{-0.035174f,-0.248413f,-0.0186894f},{-0.0404286f,-0.252926f,-0.0041153f}, - {-0.0427545f,-0.254924f,0.00326873f},{-0.0448791f,-0.256749f,0.010699f},{-0.0380524f,-0.249864f,-0.0112177f}, - {-0.0380435f,-0.250358f,-0.0113672f},{-0.0405741f,-0.25203f,-0.00390942f},{-0.0468032f,-0.258401f,0.0181621f}, - {-0.048528f,-0.259882f,0.0256447f},{-0.0500554f,-0.261194f,0.0331338f},{-0.0513881f,-0.262339f,0.0406172f}, - {-0.052529f,-0.263319f,0.0480826f},{-0.0534818f,-0.264137f,0.0555186f},{-0.0542505f,-0.264797f,0.0629142f}, - {-0.0548395f,-0.265303f,0.0702589f},{-0.0549696f,-0.264895f,0.070274f},{-0.054381f,-0.264389f,0.0629344f}, - {-0.0534428f,-0.264104f,0.0848373f},{-0.0538273f,-0.263914f,0.0848323f},{-0.0543389f,-0.263852f,0.084822f}, - {-0.0542202f,-0.263922f,0.0918925f},{-0.0535408f,-0.26416f,0.0918925f},{-0.053201f,-0.263896f,0.0777045f}, - {-0.0527915f,-0.263544f,0.0705025f},{-0.0531755f,-0.263354f,0.0704874f},{-0.054954f,-0.264381f,0.0703053f}, - {-0.0543662f,-0.263876f,0.0629764f},{-0.0541256f,-0.263346f,0.0630404f},{-0.0535992f,-0.263217f,0.0555966f}, - {-0.054712f,-0.263849f,0.0703531f},{-0.0552536f,-0.265659f,0.0775429f},{-0.0557203f,-0.26521f,0.0918925f}, - {-0.0556112f,-0.264945f,0.0847723f},{-0.0556278f,-0.26546f,0.084762f},{-0.0556436f,-0.264849f,0.0918925f}, - {-0.0553678f,-0.264412f,0.084788f},{-0.0554769f,-0.264524f,0.0918925f},{-0.0557001f,-0.26557f,0.0918925f}, - {-0.0554981f,-0.265869f,0.084757f},{-0.0555879f,-0.265918f,0.0918925f},{-0.0549023f,-0.264013f,0.0848062f}, - {-0.0545795f,-0.263942f,0.0918925f},{-0.018605f,-0.234182f,-0.0533441f},{-0.0147305f,-0.230855f,-0.0598609f}, - {-0.010681f,-0.227376f,-0.0662094f},{-0.00646282f,-0.223754f,-0.0723775f},{-0.00208315f,-0.219992f,-0.0783537f}, - {0.00245038f,-0.216098f,-0.0841271f},{0.0117689f,-0.207575f,-0.0948954f},{0.00688212f,-0.211271f,-0.0892982f}, - {0.0116878f,-0.207143f,-0.0946251f},{0.00712952f,-0.212079f,-0.0896876f},{0.0119456f,-0.207943f,-0.0950259f}, - {0.0168893f,-0.203697f,-0.100133f},{0.0219512f,-0.199349f,-0.105003f},{0.0271214f,-0.194909f,-0.109627f}, - {0.0323898f,-0.190384f,-0.114f},{0.0377459f,-0.185784f,-0.118117f},{0.0483422f,-0.175662f,-0.125105f}, - {0.0483555f,-0.175327f,-0.124624f},{0.0538862f,-0.1709f,-0.128429f},{0.043179f,-0.181117f,-0.121975f}, - {0.0486787f,-0.176393f,-0.125571f},{0.0542346f,-0.171622f,-0.128902f},{0.059836f,-0.166811f,-0.131968f}, - {0.0654725f,-0.16197f,-0.134769f},{0.071134f,-0.157107f,-0.137305f},{0.0768103f,-0.152232f,-0.139579f}, - {0.0824916f,-0.147352f,-0.141593f},{0.0879387f,-0.142154f,-0.143185f},{0.0881686f,-0.142476f,-0.143349f}, - {0.0822657f,-0.147026f,-0.14143f},{0.093832f,-0.137612f,-0.144853f},{0.105084f,-0.127948f,-0.147123f}, - {0.0992353f,-0.132451f,-0.145943f},{0.104842f,-0.127636f,-0.146956f},{0.110062f,-0.122328f,-0.146855f}, - {0.110104f,-0.122292f,-0.146244f},{0.115564f,-0.117602f,-0.147398f},{0.0933121f,-0.136714f,-0.143823f}, - {0.0989286f,-0.13189f,-0.145073f},{0.0990277f,-0.132129f,-0.145599f},{0.110572f,-0.122715f,-0.145367f}, - {0.1103f,-0.122447f,-0.145714f},{0.105059f,-0.12745f,-0.144599f},{0.121454f,-0.113368f,-0.146226f}, - {0.126687f,-0.108624f,-0.146474f},{0.121199f,-0.113087f,-0.146574f},{0.1157f,-0.117809f,-0.147929f}, - {0.110186f,-0.122545f,-0.147385f},{0.126873f,-0.108841f,-0.146297f},{0.121715f,-0.113664f,-0.146058f}, - {0.127073f,-0.109073f,-0.146158f},{0.104626f,-0.12732f,-0.14661f},{0.104515f,-0.127092f,-0.146082f}, - {0.115932f,-0.118111f,-0.148277f},{0.11041f,-0.122854f,-0.147732f},{0.0994731f,-0.132767f,-0.146109f}, - {0.110655f,-0.123163f,-0.147899f},{0.116181f,-0.118417f,-0.148445f},{0.121654f,-0.113716f,-0.148767f}, - {0.127073f,-0.109074f,-0.148876f},{-0.0549276f,-0.264054f,0.0918925f},{-0.0553834f,-0.26525f,0.0775529f}, - {-0.0536128f,-0.26373f,0.055544f},{-0.0526607f,-0.262912f,0.0481132f},{-0.0515206f,-0.261933f,0.040653f}, - {-0.0501889f,-0.260789f,0.0331749f},{-0.0486625f,-0.259478f,0.0256909f},{-0.0469389f,-0.257998f,0.0182135f}, - {-0.0450162f,-0.256346f,0.0107557f},{-0.042893f,-0.254523f,0.00333058f},{-0.0405688f,-0.252526f,-0.00404829f}, - {-0.0353178f,-0.248016f,-0.0186123f},{-0.0323932f,-0.245505f,-0.0257695f},{-0.0292719f,-0.242824f,-0.0328247f}, - {-0.0259568f,-0.239976f,-0.0397644f},{-0.0224515f,-0.236966f,-0.0465748f},{-0.0187604f,-0.233796f,-0.0532427f}, - {-0.0148886f,-0.23047f,-0.0597549f},{-0.0108419f,-0.226995f,-0.066099f},{-0.00662668f,-0.223374f,-0.0722628f}, - {-0.00225007f,-0.219615f,-0.0782348f},{0.00228029f,-0.215724f,-0.0840042f},{0.00695617f,-0.211708f,-0.0895609f}, - {0.0167092f,-0.203331f,-0.0999994f},{0.0217676f,-0.198987f,-0.104865f},{0.0269342f,-0.194549f,-0.109486f}, - {0.0321988f,-0.190028f,-0.113856f},{0.0375512f,-0.185431f,-0.117971f},{0.0429805f,-0.180768f,-0.121826f}, - {0.0484764f,-0.176047f,-0.125419f},{0.0540283f,-0.171279f,-0.128748f},{0.0596258f,-0.166471f,-0.131812f}, - {0.0652585f,-0.161633f,-0.134611f},{0.070916f,-0.156774f,-0.137145f},{0.0765883f,-0.151902f,-0.139417f}, - {0.0935981f,-0.137293f,-0.144688f},{0.0933987f,-0.136964f,-0.144346f},{0.121401f,-0.113414f,-0.148599f}, - {0.12687f,-0.108837f,-0.148751f},{-0.0553672f,-0.264736f,0.0775737f},{-0.0526485f,-0.262401f,0.0481766f}, - {-0.05151f,-0.261423f,0.0407271f},{-0.0501802f,-0.260281f,0.0332599f},{-0.048656f,-0.258972f,0.0257867f}, - {-0.0469349f,-0.257493f,0.0183202f},{-0.045015f,-0.255844f,0.0108731f},{-0.0428949f,-0.254024f,0.00345877f}, - {-0.0324103f,-0.245018f,-0.0255992f},{-0.0353307f,-0.247527f,-0.0184523f},{-0.0351321f,-0.247032f,-0.0182079f}, - {-0.0292935f,-0.242341f,-0.0326442f},{-0.0259832f,-0.239498f,-0.0395738f},{-0.022483f,-0.236492f,-0.0463744f}, - {-0.0187972f,-0.233326f,-0.0530326f},{-0.00668107f,-0.22292f,-0.0720252f},{-0.00231079f,-0.219167f,-0.0779886f}, - {0.00221301f,-0.215281f,-0.0837496f},{0.0217444f,-0.198182f,-0.104145f},{0.0220124f,-0.197952f,-0.103643f}, - {0.0268921f,-0.193761f,-0.108749f},{0.016621f,-0.202906f,-0.0997217f},{0.0216721f,-0.198568f,-0.10458f}, - {0.0268312f,-0.194137f,-0.109195f},{0.0320882f,-0.189622f,-0.113558f},{0.0374328f,-0.185032f,-0.117667f}, - {0.0428543f,-0.180375f,-0.121517f},{0.0594756f,-0.166099f,-0.131488f},{0.0651f,-0.161269f,-0.134283f}, - {0.0707493f,-0.156417f,-0.136814f},{0.0764135f,-0.151552f,-0.139083f},{0.0820826f,-0.146683f,-0.141092f}, - {0.0877474f,-0.141817f,-0.142845f},{0.126387f,-0.108276f,-0.147687f},{0.121013f,-0.112922f,-0.147719f}, - {0.121027f,-0.112911f,-0.147106f},{0.121161f,-0.113119f,-0.148251f},{0.12669f,-0.108628f,-0.148558f}, - {-0.0552371f,-0.264255f,0.0918925f},{-0.0551243f,-0.264203f,0.0776054f},{-0.0533602f,-0.262688f,0.055677f}, - {-0.0524116f,-0.261874f,0.0482734f},{-0.0494972f,-0.25937f,0.0335395f},{-0.048428f,-0.258452f,0.0259331f}, - {-0.0499488f,-0.259758f,0.0333897f},{-0.0512756f,-0.260898f,0.0408405f},{-0.0467107f,-0.256977f,0.0184831f}, - {-0.044795f,-0.255332f,0.0110526f},{-0.0426797f,-0.253515f,0.00365461f},{-0.0403639f,-0.251526f,-0.00369726f}, - {-0.0378479f,-0.249365f,-0.0109894f},{-0.0287101f,-0.241517f,-0.0320502f},{-0.0258054f,-0.239022f,-0.0392827f}, - {-0.0291083f,-0.241859f,-0.0323684f},{-0.0322182f,-0.24453f,-0.025339f},{-0.0223129f,-0.236022f,-0.0460682f}, - {-0.0186353f,-0.232864f,-0.0527117f},{-0.00620553f,-0.222188f,-0.0712434f},{-0.00218538f,-0.218735f,-0.0776124f}, - {-0.006546f,-0.22248f,-0.0716622f},{-0.0107458f,-0.226088f,-0.065521f},{0.00232839f,-0.214858f,-0.0833607f}, - {0.00698716f,-0.210857f,-0.088897f},{0.0117822f,-0.206739f,-0.094212f},{0.0167045f,-0.202511f,-0.0992973f}, - {0.0321374f,-0.189256f,-0.113103f},{0.0374702f,-0.184676f,-0.117203f},{0.0428796f,-0.18003f,-0.121044f}, - {0.0596356f,-0.165638f,-0.130423f},{0.0650762f,-0.160965f,-0.133782f},{0.0594641f,-0.165786f,-0.130993f}, - {0.0538871f,-0.170576f,-0.127941f},{0.0707129f,-0.156124f,-0.136307f},{0.0763645f,-0.15127f,-0.138571f}, - {0.0820211f,-0.146412f,-0.140576f},{0.0876734f,-0.141557f,-0.142325f},{0.115776f,-0.117744f,-0.146255f}, - {0.104571f,-0.127044f,-0.145472f},{0.12644f,-0.108337f,-0.148015f},{0.126544f,-0.108458f,-0.14831f}, - {-0.0542482f,-0.263451f,0.0704083f},{-0.0546595f,-0.263804f,0.077642f},{-0.0536632f,-0.262949f,0.0631143f}, - {-0.0528999f,-0.262293f,0.0557698f},{-0.0519537f,-0.26148f,0.0483851f},{-0.0508206f,-0.260507f,0.0409712f}, - {-0.0479802f,-0.258067f,0.026102f},{-0.0422467f,-0.253143f,0.00388058f},{-0.0443566f,-0.254955f,0.0112596f}, - {-0.0438167f,-0.254815f,0.011439f},{-0.0462674f,-0.256596f,0.0186711f},{-0.0399369f,-0.251159f,-0.00345247f}, - {-0.0374272f,-0.249004f,-0.0107259f},{-0.0347185f,-0.246677f,-0.017926f},{-0.031812f,-0.244181f,-0.0250388f}, - {-0.0173238f,-0.232562f,-0.0518103f},{-0.017782f,-0.232454f,-0.0520204f},{-0.0209784f,-0.235701f,-0.0452083f}, - {-0.0254156f,-0.238687f,-0.0389468f},{-0.0219321f,-0.235695f,-0.0457149f},{-0.0182639f,-0.232545f,-0.0523413f}, - {-0.0144162f,-0.22924f,-0.0588132f},{-0.0103946f,-0.225786f,-0.0651178f},{0.00813902f,-0.210692f,-0.0877701f}, - {0.00771801f,-0.210553f,-0.0880327f},{0.00350929f,-0.214669f,-0.0822683f},{-0.00185609f,-0.218452f,-0.0771783f}, - {0.00264613f,-0.214585f,-0.0829118f},{0.00729298f,-0.210594f,-0.088434f},{0.0120758f,-0.206487f,-0.0937354f}, - {0.0169854f,-0.20227f,-0.0988077f},{0.037698f,-0.18448f,-0.116668f},{0.0323788f,-0.189049f,-0.112578f}, - {0.0327481f,-0.189055f,-0.112123f},{0.0271469f,-0.193542f,-0.108235f},{0.0430935f,-0.179846f,-0.120499f}, - {0.0485553f,-0.175155f,-0.12407f},{0.0540728f,-0.170416f,-0.127378f},{0.0652332f,-0.160831f,-0.133204f}, - {0.0821348f,-0.146314f,-0.139981f},{0.0764927f,-0.15116f,-0.137981f},{0.0767637f,-0.151251f,-0.137469f}, - {0.0708556f,-0.156002f,-0.135723f},{0.0877726f,-0.141472f,-0.141725f},{0.0933968f,-0.136641f,-0.143219f}, - {0.098999f,-0.13183f,-0.144466f},{0.104779f,-0.127189f,-0.144944f},{0.115592f,-0.117579f,-0.146786f}, - {-0.0536862f,-0.263292f,0.0704561f},{-0.0540966f,-0.263644f,0.0776737f},{-0.0531026f,-0.262791f,0.0631783f}, - {-0.0523409f,-0.262136f,0.0558501f},{-0.0513968f,-0.261326f,0.0484819f},{-0.0502663f,-0.260355f,0.0410845f}, - {-0.0489458f,-0.25922f,0.0336694f},{-0.0474322f,-0.257921f,0.0262484f},{-0.0457232f,-0.256453f,0.018834f}, - {-0.0412182f,-0.253084f,0.00420461f},{-0.0389169f,-0.251108f,-0.00310144f},{-0.0394067f,-0.251028f,-0.00324031f}, - {-0.0417114f,-0.253007f,0.00407642f},{-0.0369027f,-0.248877f,-0.0104976f},{-0.0342f,-0.246556f,-0.0176816f}, - {-0.0313f,-0.244065f,-0.0247786f},{-0.028205f,-0.241407f,-0.0317744f},{-0.0249178f,-0.238583f,-0.0386556f}, - {-0.021442f,-0.235598f,-0.0454087f},{-0.0139428f,-0.229157f,-0.0584778f},{-0.00993018f,-0.225711f,-0.0647685f}, - {-0.00575046f,-0.222121f,-0.0708804f},{-0.0014107f,-0.218393f,-0.0768021f},{0.0030815f,-0.214535f,-0.0825229f}, - {0.0124902f,-0.206454f,-0.0933224f},{0.0173889f,-0.202247f,-0.0983834f},{0.0224047f,-0.197939f,-0.103208f}, - {0.0275277f,-0.193539f,-0.10779f},{0.0384321f,-0.184674f,-0.1159f},{0.0438078f,-0.180057f,-0.119717f}, - {0.0434389f,-0.179873f,-0.120026f},{0.0380553f,-0.184497f,-0.116203f},{0.0488885f,-0.175192f,-0.123589f}, - {0.0543937f,-0.170464f,-0.12689f},{0.0599441f,-0.165697f,-0.129928f},{0.0655293f,-0.1609f,-0.132703f}, - {0.0711392f,-0.156082f,-0.135216f},{0.0823933f,-0.146416f,-0.139465f},{0.0883223f,-0.141824f,-0.140865f}, - {0.0939259f,-0.137011f,-0.142353f},{0.0936303f,-0.136765f,-0.142696f},{0.0880185f,-0.141584f,-0.141206f}, - {0.09922f,-0.131964f,-0.14394f},{0.126439f,-0.108336f,-0.147023f},{0.126387f,-0.108275f,-0.147351f}, - {-0.0538591f,-0.263998f,0.0918925f},{-0.0535853f,-0.263706f,0.0776945f},{-0.0525928f,-0.262854f,0.0632202f}, - {-0.0518322f,-0.2622f,0.0559028f},{-0.0522092f,-0.263044f,0.0632405f},{-0.0508895f,-0.261391f,0.0485453f}, - {-0.0497606f,-0.260421f,0.0411587f},{-0.048442f,-0.259289f,0.0337544f},{-0.0469307f,-0.257991f,0.0263442f}, - {-0.0452241f,-0.256525f,0.0189407f},{-0.0433204f,-0.25489f,0.0115564f},{-0.0333475f,-0.246844f,-0.0174445f}, - {-0.0360443f,-0.249161f,-0.010276f},{-0.0364165f,-0.24896f,-0.0103481f},{-0.0337177f,-0.246642f,-0.0175217f}, - {-0.030822f,-0.244155f,-0.0246083f},{-0.0277315f,-0.241501f,-0.0315939f},{-0.0244491f,-0.238682f,-0.038465f}, - {-0.0131342f,-0.229483f,-0.0581524f},{-0.0134902f,-0.229269f,-0.0582583f},{-0.016965f,-0.232774f,-0.051709f}, - {-0.00948339f,-0.225828f,-0.0645398f},{-0.00530978f,-0.222243f,-0.0706427f},{-0.00097635f,-0.218521f,-0.0765558f}, - {0.0132416f,-0.20683f,-0.0929216f},{0.0181297f,-0.202631f,-0.0979716f},{0.0129042f,-0.206599f,-0.093052f}, - {0.0177958f,-0.202398f,-0.0981056f},{0.0228042f,-0.198097f,-0.102923f},{0.0279198f,-0.193703f,-0.107499f}, - {0.0331325f,-0.189226f,-0.111826f},{0.0495612f,-0.175636f,-0.123123f},{0.0492495f,-0.175383f,-0.123274f}, - {0.0441234f,-0.180306f,-0.119568f},{0.0547466f,-0.170662f,-0.126571f},{0.0602889f,-0.165902f,-0.129604f}, - {0.0658659f,-0.161112f,-0.132375f},{0.0714676f,-0.156301f,-0.134885f},{0.0770839f,-0.151477f,-0.137135f}, - {0.0827053f,-0.146649f,-0.139127f},{0.0995074f,-0.132218f,-0.143596f},{0.116304f,-0.118312f,-0.145739f}, - {0.11084f,-0.123004f,-0.145199f},{0.116039f,-0.118019f,-0.145907f},{0.126541f,-0.108454f,-0.146724f}, - {-0.0514492f,-0.262391f,0.0559281f},{-0.0505071f,-0.261582f,0.0485758f},{-0.049379f,-0.260613f,0.0411945f}, - {-0.0480614f,-0.259482f,0.0337954f},{-0.0465511f,-0.258185f,0.0263905f},{-0.0448457f,-0.25672f,0.0189921f}, - {-0.0429433f,-0.255086f,0.0116131f},{-0.0408426f,-0.253282f,0.00426646f},{-0.038543f,-0.251307f,-0.00303443f}, - {-0.0304538f,-0.244359f,-0.0245261f},{-0.0273654f,-0.241706f,-0.0315068f},{-0.0240853f,-0.238889f,-0.0383731f}, - {-0.0206171f,-0.23591f,-0.0451116f},{-0.00913019f,-0.226044f,-0.0644294f},{-0.00495953f,-0.222462f,-0.0705281f}, - {-0.00062916f,-0.218743f,-0.076437f},{0.00385332f,-0.214893f,-0.0821454f},{0.00847979f,-0.21092f,-0.0876434f}, - {0.0231347f,-0.198333f,-0.102786f},{0.0282467f,-0.193942f,-0.107358f},{0.0334557f,-0.189468f,-0.111682f}, - {0.0387515f,-0.18492f,-0.115753f},{0.0550545f,-0.170917f,-0.126416f},{0.0605929f,-0.166161f,-0.129448f}, - {0.066166f,-0.161374f,-0.132217f},{0.0717637f,-0.156566f,-0.134725f},{0.0773761f,-0.151746f,-0.136973f}, - {0.0829935f,-0.146921f,-0.138964f},{0.0886065f,-0.1421f,-0.140701f},{0.0942061f,-0.137291f,-0.142188f}, - {0.0997837f,-0.1325f,-0.14343f},{0.105331f,-0.127736f,-0.144432f},{0.246242f,-0.00568906f,-0.0892991f}, - {0.241437f,-0.00981657f,-0.0946258f},{0.241022f,-0.00984878f,-0.0942128f},{0.221744f,-0.0277507f,-0.114f}, - {0.227012f,-0.023226f,-0.109627f},{0.216388f,-0.0323507f,-0.118117f},{0.210955f,-0.0370173f,-0.121975f}, - {0.205455f,-0.0417412f,-0.125571f},{0.199899f,-0.0465131f,-0.128902f},{0.194298f,-0.0513242f,-0.131968f}, - {0.188661f,-0.0561654f,-0.134769f},{0.205143f,-0.0414889f,-0.125419f},{0.199238f,-0.0460598f,-0.128429f}, - {0.204783f,-0.041298f,-0.125105f},{0.182999f,-0.061028f,-0.137305f},{0.177323f,-0.0659033f,-0.139579f}, - {0.171642f,-0.0707829f,-0.141592f},{0.160302f,-0.0805227f,-0.144853f},{0.165965f,-0.0756586f,-0.143349f}, - {0.154661f,-0.0853677f,-0.146109f},{0.14905f,-0.0901863f,-0.147122f},{0.143479f,-0.0949717f,-0.147899f}, - {0.132419f,-0.10447f,-0.146057f},{0.14321f,-0.0946823f,-0.147731f},{0.148778f,-0.0899002f,-0.146955f}, - {0.143294f,-0.0951304f,-0.145199f},{0.143048f,-0.0948213f,-0.145366f},{0.13783f,-0.0998229f,-0.145739f}, - {0.14829f,-0.0894947f,-0.146081f},{0.154097f,-0.084831f,-0.145599f},{0.148499f,-0.0896393f,-0.14661f}, - {0.131926f,-0.103873f,-0.146574f},{0.131778f,-0.103676f,-0.147105f},{0.132166f,-0.104168f,-0.146225f}, - {0.142939f,-0.0944145f,-0.147384f},{0.131792f,-0.103664f,-0.147719f},{0.13248f,-0.104418f,-0.148767f}, - {0.132219f,-0.104122f,-0.148599f},{0.137953f,-0.0997176f,-0.148445f},{0.131964f,-0.10384f,-0.148251f}, - {0.142742f,-0.0942593f,-0.146855f},{0.232183f,-0.0187856f,-0.105003f},{0.237244f,-0.0144381f,-0.100134f}, - {0.242188f,-0.010192f,-0.0950266f},{0.247004f,-0.00605566f,-0.0896885f},{0.251683f,-0.00203683f,-0.0841281f}, - {0.256217f,0.00185696f,-0.0783547f},{0.260596f,0.00561864f,-0.0723786f},{0.268508f,0.0129341f,-0.059756f}, - {0.264015f,0.00957541f,-0.0658715f},{0.268056f,0.0130461f,-0.0595366f},{0.264815f,0.00924161f,-0.0662105f}, - {0.268864f,0.0127198f,-0.059862f},{0.272739f,0.0160476f,-0.053345f},{0.276433f,0.0192201f,-0.0466724f}, - {0.279941f,0.022233f,-0.039857f},{0.283258f,0.0250823f,-0.0329122f},{0.286382f,0.0277651f,-0.0258517f}, - {0.291178f,0.0329051f,-0.0112184f},{0.290653f,0.0327782f,-0.01099f},{0.293699f,0.0350709f,-0.00391029f}, - {0.289308f,0.0302787f,-0.0186898f},{0.292036f,0.0326214f,-0.0114399f},{0.294563f,0.0347919f,-0.00411618f}, - {0.296889f,0.0367896f,0.00326766f},{0.299014f,0.0386144f,0.0106978f},{0.300938f,0.040267f,0.0181608f}, - {0.302663f,0.0417484f,0.0256434f},{0.30419f,0.0430604f,0.0331326f},{0.305141f,0.0443974f,0.0406518f}, - {0.305523f,0.044205f,0.040616f},{0.303809f,0.0432535f,0.0331736f},{0.306664f,0.045185f,0.0480815f}, - {0.308737f,0.0479862f,0.0847721f},{0.30793f,0.0476169f,0.077605f},{0.308173f,0.0478259f,0.0847878f}, - {0.306812f,0.0463329f,0.0704555f},{0.307054f,0.0468645f,0.0704077f},{0.306228f,0.0458317f,0.0631775f}, - {0.307233f,0.0461944f,0.0555431f},{0.308002f,0.0468541f,0.0629336f},{0.308385f,0.0466635f,0.0629134f}, - {0.306796f,0.0458187f,0.0704868f},{0.306213f,0.0453183f,0.0632194f},{0.307448f,0.0463783f,0.0848321f}, - {0.307515f,0.0467654f,0.0918925f},{0.307464f,0.0468934f,0.0848218f},{0.306931f,0.0467592f,0.0630396f}, - {0.308079f,0.0474218f,0.0703047f},{0.307492f,0.046917f,0.0629755f},{0.307577f,0.0459696f,0.0848371f}, - {0.307535f,0.0464061f,0.0918925f},{0.306166f,0.0461019f,0.0556761f},{0.306725f,0.0462583f,0.0555957f}, - {0.305217f,0.0452871f,0.0482723f},{0.307647f,0.046058f,0.0918925f},{0.307617f,0.0460033f,0.0555177f}, - {0.309388f,0.047525f,0.0775425f},{0.308974f,0.0471693f,0.0702583f},{0.30859f,0.0473596f,0.0702734f}, - {0.309633f,0.0477349f,0.0847568f},{0.137688f,-0.0994249f,-0.148277f},{0.154384f,-0.0850849f,-0.145943f}, - {0.160021f,-0.0802434f,-0.144688f},{0.165681f,-0.0753827f,-0.143185f},{0.171354f,-0.0705103f,-0.141429f}, - {0.177031f,-0.0656341f,-0.139417f},{0.182703f,-0.0607622f,-0.137145f},{0.188361f,-0.055903f,-0.134611f}, - {0.193994f,-0.0510652f,-0.131812f},{0.199591f,-0.0462575f,-0.128748f},{0.21064f,-0.0367683f,-0.121826f}, - {0.216069f,-0.032105f,-0.117971f},{0.221421f,-0.0275082f,-0.113856f},{0.226686f,-0.0229866f,-0.109486f}, - {0.231852f,-0.0185493f,-0.104866f},{0.23691f,-0.0142048f,-0.1f},{0.241851f,-0.00996175f,-0.0948962f}, - {0.246663f,-0.00582826f,-0.0895618f},{0.251339f,-0.00181224f,-0.0840052f},{0.25587f,0.00207883f,-0.0782359f}, - {0.260246f,0.00583789f,-0.072264f},{0.264462f,0.00945834f,-0.0661002f},{0.27238f,0.0162596f,-0.0532437f}, - {0.276071f,0.0194299f,-0.0465757f},{0.279577f,0.0224406f,-0.039765f},{0.282892f,0.025288f,-0.0328251f}, - {0.286013f,0.0279689f,-0.0257695f},{0.288938f,0.0304808f,-0.0186126f},{0.291664f,0.0328218f,-0.0113678f}, - {0.294189f,0.0349908f,-0.00404916f},{0.296513f,0.0369871f,0.00332952f},{0.298637f,0.0388106f,0.0107545f}, - {0.300559f,0.0404621f,0.0182123f},{0.302283f,0.0419425f,0.0256896f},{0.306281f,0.0453766f,0.0481121f}, - {0.305774f,0.0454417f,0.0481755f},{0.309248f,0.0479248f,0.0847617f},{0.309004f,0.047715f,0.0775525f}, - {0.309376f,0.0479772f,0.0918925f},{0.309694f,0.0478162f,0.0918925f},{0.137425f,-0.0991502f,-0.147929f}, - {0.159726f,-0.0799965f,-0.144345f},{0.165377f,-0.0751428f,-0.142845f},{0.171042f,-0.0702775f,-0.141092f}, - {0.176711f,-0.0654083f,-0.139082f},{0.182375f,-0.0605435f,-0.136814f},{0.188024f,-0.0556914f,-0.134283f}, - {0.193649f,-0.0508605f,-0.131488f},{0.215692f,-0.0319277f,-0.117667f},{0.210271f,-0.0365843f,-0.121517f}, - {0.209925f,-0.0365573f,-0.121044f},{0.221037f,-0.0273376f,-0.113559f},{0.226294f,-0.0228226f,-0.109195f}, - {0.231453f,-0.0183917f,-0.104581f},{0.236503f,-0.0140535f,-0.0997223f},{0.250911f,-0.00167885f,-0.0837506f}, - {0.255435f,0.00220659f,-0.0779897f},{0.259806f,0.00596021f,-0.0720263f},{0.275118f,0.0194353f,-0.046069f}, - {0.274737f,0.0191082f,-0.0457157f},{0.27861f,0.022435f,-0.0392833f},{0.271922f,0.0163668f,-0.0530336f}, - {0.275608f,0.0195325f,-0.0463752f},{0.279108f,0.0225389f,-0.0395744f},{0.282419f,0.0253822f,-0.0326445f}, - {0.285535f,0.0280592f,-0.0255992f},{0.288456f,0.0305674f,-0.0184526f},{0.29602f,0.0370643f,0.00345771f}, - {0.29814f,0.0388852f,0.0108719f},{0.30006f,0.0405343f,0.0183189f},{0.301781f,0.0420125f,0.0257854f}, - {0.303306f,0.0433217f,0.0332586f},{0.304636f,0.0444639f,0.0407259f},{0.308493f,0.0477767f,0.0775733f}, - {0.307518f,0.0472628f,0.0703525f},{0.309015f,0.0480539f,0.0918925f},{0.137241f,-0.0989846f,-0.147398f}, - {0.153876f,-0.0846971f,-0.145073f},{0.159492f,-0.0798733f,-0.143822f},{0.170669f,-0.0702734f,-0.13998f}, - {0.17644f,-0.0653174f,-0.138571f},{0.170783f,-0.0701758f,-0.140576f},{0.165131f,-0.0750303f,-0.142325f}, - {0.182091f,-0.0604634f,-0.136307f},{0.187728f,-0.055622f,-0.133782f},{0.19334f,-0.0508018f,-0.130993f}, - {0.198917f,-0.0460117f,-0.127941f},{0.204449f,-0.0412605f,-0.124624f},{0.220426f,-0.0275383f,-0.112579f}, - {0.225913f,-0.022826f,-0.10875f},{0.220668f,-0.027331f,-0.113104f},{0.215335f,-0.031911f,-0.117203f}, - {0.23106f,-0.0184049f,-0.104146f},{0.2361f,-0.0140763f,-0.0992979f},{0.250158f,-0.00200198f,-0.0829128f}, - {0.25499f,0.00214776f,-0.0776135f},{0.250476f,-0.00172908f,-0.0833616f},{0.245817f,-0.00573041f,-0.0888979f}, - {0.25935f,0.00589306f,-0.0716633f},{0.26355f,0.00950025f,-0.0655221f},{0.267582f,0.0129633f,-0.0592012f}, - {0.27144f,0.0162766f,-0.0527127f},{0.281913f,0.025272f,-0.0323688f},{0.285023f,0.0279431f,-0.025339f}, - {0.287937f,0.0304458f,-0.0182083f},{0.295052f,0.0365564f,0.00387953f},{0.2976f,0.0387452f,0.0110514f}, - {0.295485f,0.0369283f,0.00365355f},{0.293169f,0.0349393f,-0.00369814f},{0.299516f,0.0403906f,0.0184819f}, - {0.301233f,0.0418655f,0.0259318f},{0.302754f,0.0431718f,0.0333884f},{0.304081f,0.0443114f,0.0408392f}, - {0.306469f,0.0463621f,0.0631135f},{0.308656f,0.0480337f,0.0918925f},{0.142701f,-0.0942953f,-0.146243f}, - {0.137213f,-0.0990084f,-0.146785f},{0.148234f,-0.0895429f,-0.145472f},{0.153805f,-0.0847575f,-0.144466f}, - {0.159408f,-0.079946f,-0.143218f},{0.165032f,-0.0751155f,-0.141725f},{0.176312f,-0.0654275f,-0.137981f}, - {0.193169f,-0.0509491f,-0.130423f},{0.187571f,-0.0557569f,-0.133204f},{0.187595f,-0.05606f,-0.132703f}, - {0.181949f,-0.0605859f,-0.135723f},{0.198732f,-0.0461712f,-0.127378f},{0.204249f,-0.0414322f,-0.12407f}, - {0.209711f,-0.036741f,-0.120499f},{0.215107f,-0.0321066f,-0.116668f},{0.235824f,-0.0151381f,-0.0981062f}, - {0.235736f,-0.014713f,-0.098384f},{0.230815f,-0.0194397f,-0.102924f},{0.225658f,-0.0230449f,-0.108236f}, - {0.230792f,-0.0186351f,-0.103644f},{0.235819f,-0.0143176f,-0.0988083f},{0.240729f,-0.0101009f,-0.0937362f}, - {0.245511f,-0.00599306f,-0.0884349f},{0.263103f,0.00829154f,-0.0645409f},{0.263055f,0.00875088f,-0.0647696f}, - {0.258929f,0.00470683f,-0.0706439f},{0.25466f,0.00186493f,-0.0771794f},{0.25901f,0.00560064f,-0.0712445f}, - {0.263199f,0.00919859f,-0.065119f},{0.267221f,0.0126528f,-0.0588143f},{0.271069f,0.0159576f,-0.0523423f}, - {0.284617f,0.0275942f,-0.0250388f},{0.281515f,0.02493f,-0.0320505f},{0.28133f,0.0244472f,-0.0317747f}, - {0.278221f,0.0221003f,-0.0389474f},{0.287524f,0.0300905f,-0.0179263f},{0.290232f,0.032417f,-0.0107265f}, - {0.292742f,0.0345725f,-0.00345334f},{0.297162f,0.0383686f,0.0112584f},{0.302303f,0.0427839f,0.0335382f}, - {0.300786f,0.041481f,0.0261007f},{0.300558f,0.0409614f,0.0262471f},{0.299073f,0.0400098f,0.0186698f}, - {0.303626f,0.0439206f,0.04097f},{0.304759f,0.0448938f,0.048384f},{0.305705f,0.0457065f,0.0557688f}, - {0.307465f,0.0472177f,0.0776416f},{0.307708f,0.0474261f,0.084806f},{0.307998f,0.0477204f,0.0918925f}, - {0.308307f,0.0479214f,0.0918925f},{0.142824f,-0.0945127f,-0.145713f},{0.137349f,-0.0992153f,-0.146254f}, - {0.148345f,-0.0897709f,-0.144944f},{0.153904f,-0.0849962f,-0.14394f},{0.159494f,-0.0801954f,-0.142695f}, - {0.165106f,-0.0753756f,-0.141205f},{0.170731f,-0.0705443f,-0.139464f},{0.176361f,-0.0657091f,-0.137469f}, - {0.181985f,-0.0608783f,-0.135216f},{0.193331f,-0.0516347f,-0.129604f},{0.198873f,-0.0468744f,-0.126571f}, - {0.198731f,-0.0464957f,-0.12689f},{0.19318f,-0.0512629f,-0.129928f},{0.204236f,-0.0417672f,-0.123589f}, - {0.209686f,-0.0370865f,-0.120026f},{0.21507f,-0.0324624f,-0.116203f},{0.220377f,-0.0279043f,-0.112124f}, - {0.225597f,-0.0234208f,-0.10779f},{0.23072f,-0.0190209f,-0.103209f},{0.240634f,-0.0105057f,-0.0933231f}, - {0.245406f,-0.00640698f,-0.0880336f},{0.250043f,-0.00242477f,-0.0825239f},{0.254535f,0.00143353f,-0.0768032f}, - {0.258875f,0.00516092f,-0.0708815f},{0.267067f,0.0121974f,-0.0584789f},{0.270907f,0.0154949f,-0.0520214f}, - {0.274567f,0.0186385f,-0.0454095f},{0.278043f,0.0216238f,-0.0386562f},{0.284442f,0.0266194f,-0.0246083f}, - {0.287338f,0.0291065f,-0.017522f},{0.287325f,0.0295963f,-0.017682f},{0.284425f,0.0271056f,-0.0247786f}, - {0.290028f,0.0319176f,-0.0104982f},{0.292532f,0.0340683f,-0.00324118f},{0.294837f,0.0360478f,0.00407537f}, - {0.296942f,0.037856f,0.0114378f},{0.298849f,0.0394935f,0.0188328f},{0.302071f,0.0422615f,0.0336681f}, - {0.303381f,0.0428858f,0.0411575f},{0.30451f,0.0438554f,0.0485442f},{0.304522f,0.0443667f,0.0484808f}, - {0.303392f,0.0433957f,0.0410833f},{0.305467f,0.0451776f,0.0558492f},{0.307222f,0.0466854f,0.0776733f}, - {0.307591f,0.0471265f,0.0918925f},{0.307758f,0.047452f,0.0918925f},{0.137581f,-0.0995171f,-0.145907f}, - {0.148561f,-0.0900864f,-0.144598f},{0.154112f,-0.0853187f,-0.143596f},{0.148803f,-0.0903988f,-0.144431f}, - {0.159694f,-0.0805249f,-0.142353f},{0.165297f,-0.0757121f,-0.140865f},{0.170914f,-0.0708878f,-0.139127f}, - {0.176535f,-0.0660598f,-0.137134f},{0.182152f,-0.061236f,-0.134885f},{0.187753f,-0.0564248f,-0.132375f}, - {0.210011f,-0.0378285f,-0.119568f},{0.204573f,-0.0424991f,-0.123123f},{0.20437f,-0.0421528f,-0.123274f}, - {0.209812f,-0.0374789f,-0.119717f},{0.215188f,-0.0328616f,-0.1159f},{0.220487f,-0.0283101f,-0.111826f}, - {0.2257f,-0.0238332f,-0.107499f},{0.240892f,-0.0113052f,-0.0929223f},{0.240715f,-0.0109369f,-0.0930527f}, - {0.236004f,-0.0155034f,-0.0979722f},{0.24548f,-0.00684419f,-0.087771f},{0.25011f,-0.0028678f,-0.0822693f}, - {0.254596f,0.000984871f,-0.0765569f},{0.267268f,0.0113487f,-0.0581535f},{0.271099f,0.0146391f,-0.0517099f}, - {0.26711f,0.011733f,-0.0582594f},{0.270944f,0.0150257f,-0.0518113f},{0.274598f,0.0181647f,-0.0452091f}, - {0.278069f,0.0211457f,-0.0384656f},{0.281352f,0.023965f,-0.0315942f},{0.290179f,0.0310263f,-0.0102766f}, - {0.290037f,0.0314244f,-0.0103487f},{0.287482f,0.02871f,-0.0174448f},{0.292537f,0.033572f,-0.0031023f}, - {0.294839f,0.0355486f,0.00420356f},{0.296941f,0.0373542f,0.0115553f},{0.298845f,0.0389893f,0.0189394f}, - {0.300551f,0.0404551f,0.026343f},{0.302063f,0.0417532f,0.0337531f},{0.305453f,0.044665f,0.0559018f}, - {0.307336f,0.0457621f,0.0777041f},{0.306926f,0.0454104f,0.0705019f},{0.307206f,0.0461706f,0.077694f}, - {0.15435f,-0.0856345f,-0.143429f},{0.159927f,-0.0808441f,-0.142188f},{0.165527f,-0.0760347f,-0.140701f}, - {0.17114f,-0.0712139f,-0.138964f},{0.176757f,-0.0663892f,-0.136973f},{0.18237f,-0.0615688f,-0.134725f}, - {0.187968f,-0.056761f,-0.132217f},{0.193541f,-0.0519743f,-0.129448f},{0.199079f,-0.0472174f,-0.126416f}, - {0.215383f,-0.0332144f,-0.115753f},{0.220678f,-0.0286662f,-0.111682f},{0.225887f,-0.0241924f,-0.107358f}, - {0.230999f,-0.019802f,-0.102786f},{0.245654f,-0.00721537f,-0.0876442f},{0.25028f,-0.00324179f,-0.0821464f}, - {0.254763f,0.000608165f,-0.0764381f},{0.259093f,0.00432749f,-0.0705292f},{0.263264f,0.00790968f,-0.0644306f}, - {0.274751f,0.0177759f,-0.0451124f},{0.27822f,0.0207548f,-0.0383737f},{0.2815f,0.0235721f,-0.0315071f}, - {0.284588f,0.0262246f,-0.0245261f},{0.292677f,0.0331723f,-0.0030353f},{0.294977f,0.0351475f,0.00426541f}, - {0.297078f,0.0369518f,0.0116119f},{0.29898f,0.0385858f,0.0189909f},{0.300686f,0.0400505f,0.0263892f}, - {0.302196f,0.0413477f,0.0337941f},{0.303514f,0.0424795f,0.0411933f},{0.304642f,0.0434484f,0.0485748f}, - {0.305584f,0.0442575f,0.0559272f},{0.306344f,0.0449103f,0.0632397f},{-0.0768213f,-0.165362f,-0.141015f}, - {-0.0807759f,-0.161231f,-0.142188f},{-0.0760016f,-0.16686f,-0.140701f},{-0.0521167f,-0.195024f,-0.129448f}, - {-0.0506739f,-0.196193f,-0.12867f},{-0.0549268f,-0.191178f,-0.131224f},{-0.0952491f,-0.144775f,-0.145366f}, - {-0.0955186f,-0.145045f,-0.145713f},{-0.0908114f,-0.150595f,-0.144944f},{-0.0855313f,-0.155624f,-0.143429f}, - {-0.0812993f,-0.160082f,-0.142366f},{-0.0862068f,-0.156404f,-0.144466f},{-0.0909572f,-0.150803f,-0.145472f}, - {-0.094958f,-0.144508f,-0.145199f},{-0.0905487f,-0.150317f,-0.144598f},{-0.0902609f,-0.150047f,-0.144431f}, - {-0.104976f,-0.134273f,-0.147719f},{-0.104988f,-0.134259f,-0.147105f},{-0.109589f,-0.12887f,-0.147351f}, - {-0.095675f,-0.14524f,-0.146243f},{-0.109234f,-0.128569f,-0.148558f},{-0.104482f,-0.133888f,-0.148599f}, - {-0.104778f,-0.134126f,-0.148251f},{-0.109527f,-0.128818f,-0.148015f},{-0.0993034f,-0.138852f,-0.148493f}, - {-0.0995117f,-0.139139f,-0.148445f},{-0.104178f,-0.133637f,-0.148767f},{-0.103915f,-0.133415f,-0.14881f}, - {-0.108786f,-0.128189f,-0.148876f},{-0.10853f,-0.127972f,-0.148916f},{-0.0679527f,-0.175819f,-0.137702f}, - {-0.0712159f,-0.172503f,-0.138964f},{-0.0664265f,-0.178151f,-0.136973f},{-0.0723712f,-0.170609f,-0.13946f}, - {-0.0616412f,-0.183793f,-0.134725f},{-0.0635699f,-0.180987f,-0.135742f},{-0.0571328f,-0.189719f,-0.132375f}, - {-0.0568685f,-0.189421f,-0.132217f},{-0.0592267f,-0.186108f,-0.133582f},{-0.0473945f,-0.200592f,-0.126416f}, - {-0.0464718f,-0.201148f,-0.125923f},{-0.0380742f,-0.211582f,-0.119568f},{-0.0334938f,-0.216983f,-0.115753f}, - {-0.0342072f,-0.21561f,-0.116543f},{-0.0427107f,-0.206115f,-0.123123f},{-0.0225297f,-0.229379f,-0.105516f}, - {-0.0263511f,-0.224873f,-0.109369f},{-0.0245376f,-0.227544f,-0.107358f},{-0.0302448f,-0.220282f,-0.113046f}, - {-0.0151167f,-0.23812f,-0.0972923f},{-0.015912f,-0.237714f,-0.0979722f},{-0.0117444f,-0.242629f,-0.0929223f}, - {-0.0201792f,-0.232683f,-0.102786f},{-0.00462018f,-0.250497f,-0.0837205f},{-0.00373985f,-0.252067f,-0.0821464f}, - {-0.0012999f,-0.254412f,-0.0788827f},{-0.00768443f,-0.247416f,-0.0876442f},{0.00808472f,-0.265478f,-0.0634868f}, - {0.00505532f,-0.261906f,-0.0687614f},{0.00733025f,-0.26512f,-0.0644306f},{0.0019262f,-0.258216f,-0.0738949f}, - {0.0037742f,-0.260927f,-0.0705292f},{0.0165479f,-0.275457f,-0.0468636f},{0.0140105f,-0.272997f,-0.0517099f}, - {0.0171244f,-0.276669f,-0.0451124f},{0.0107442f,-0.269146f,-0.0581535f},{0.0228784f,-0.283454f,-0.0315071f}, - {0.0240231f,-0.284271f,-0.0291439f},{0.021645f,-0.281467f,-0.0351637f},{0.0191525f,-0.278528f,-0.041072f}, - {0.0304509f,-0.291851f,-0.010468f},{0.028428f,-0.289465f,-0.0167907f},{0.0302782f,-0.292179f,-0.0102766f}, - {0.0255116f,-0.286558f,-0.0245261f},{0.0324085f,-0.294691f,-0.0030353f},{0.034129f,-0.296187f,0.00244111f}, - {0.0323519f,-0.294092f,-0.00405553f},{0.0377825f,-0.301028f,0.0189909f},{0.0373059f,-0.299933f,0.0156645f}, - {0.0361604f,-0.299115f,0.0116119f},{0.0357808f,-0.298135f,0.00901635f},{0.0343693f,-0.297003f,0.00426541f}, - {0.0399706f,-0.303075f,0.0291557f},{0.0405243f,-0.304261f,0.0337941f},{0.0411078f,-0.304416f,0.0359868f}, - {0.0392366f,-0.302742f,0.0263892f},{0.0387029f,-0.301581f,0.0223796f},{0.0421137f,-0.305602f,0.0428671f}, - {0.0426097f,-0.306719f,0.0485748f},{0.0429872f,-0.306632f,0.0497904f},{0.0416478f,-0.305585f,0.0411933f}, - {0.0451124f,-0.309671f,0.0848371f},{0.0454147f,-0.309495f,0.0918925f},{0.0453472f,-0.309415f,0.0848393f}, - {0.0437276f,-0.307506f,0.0567509f},{0.0434129f,-0.307667f,0.0559272f},{0.0445573f,-0.309016f,0.0705019f}, - {0.0443647f,-0.309399f,0.0704868f},{0.044714f,-0.309811f,0.077694f},{0.0451444f,-0.309176f,0.0777923f}, - {0.0443343f,-0.308221f,0.0637421f},{0.0448067f,-0.308778f,0.0707579f},{0.0449064f,-0.309428f,0.0777041f}, - {0.0440608f,-0.308431f,0.0632397f},{0.0446491f,-0.310322f,0.0776733f},{0.0450123f,-0.31113f,0.084806f}, - {0.0448556f,-0.310565f,0.0848218f},{0.0424156f,-0.307101f,0.0485442f},{0.0414531f,-0.305966f,0.0411575f}, - {0.0442993f,-0.309909f,0.0704555f},{0.0438679f,-0.308813f,0.0632194f},{0.0438017f,-0.309322f,0.0631775f}, - {0.0423474f,-0.307608f,0.0484808f},{0.0448502f,-0.310938f,0.0703525f},{0.0443502f,-0.310349f,0.0630396f}, - {0.0453802f,-0.311184f,0.0703047f},{0.043956f,-0.309884f,0.0631135f},{0.0444547f,-0.310472f,0.0704077f}, - {0.0458943f,-0.311202f,0.0702734f},{0.0462471f,-0.311618f,0.0775525f},{0.0462046f,-0.311955f,0.0918925f}, - {0.0459404f,-0.311844f,0.0847721f},{0.0464553f,-0.311864f,0.0847617f},{0.0468649f,-0.311737f,0.0847568f}, - {0.0469128f,-0.311827f,0.0918925f},{0.046564f,-0.311937f,0.0918925f},{0.0472235f,-0.311628f,0.0918925f}, - {0.0390402f,-0.303121f,0.026343f},{0.0200816f,-0.280156f,-0.0383737f},{0.0262847f,-0.286938f,-0.0230178f}, - {0.0279788f,-0.289468f,-0.0174448f},{0.0226704f,-0.283818f,-0.0315942f},{0.0138335f,-0.272256f,-0.0525331f}, - {0.0110116f,-0.268929f,-0.0580758f},{8.20141e-005f,-0.256573f,-0.0764381f},{-0.00803171f,-0.246474f,-0.088404f}, - {0.00355277f,-0.261276f,-0.0706439f},{0.0034277f,-0.261716f,-0.0708815f},{0.00699146f,-0.265918f,-0.0647696f}, - {-0.0115316f,-0.242347f,-0.0929293f},{-0.0187838f,-0.233796f,-0.101489f},{-0.0382349f,-0.21086f,-0.119856f}, - {-0.0423242f,-0.206039f,-0.122984f},{-0.0289787f,-0.222307f,-0.111682f},{-0.0163012f,-0.238453f,-0.098384f}, - {-0.0204175f,-0.233012f,-0.102924f},{-0.0205776f,-0.23341f,-0.103209f},{-0.0858011f,-0.154773f,-0.14351f}, - {-0.0903231f,-0.149441f,-0.144448f},{-0.094861f,-0.14409f,-0.145179f},{-0.10481f,-0.134088f,-0.146574f}, - {-0.109528f,-0.128818f,-0.147023f},{-0.0996162f,-0.139016f,-0.145739f},{-0.0994109f,-0.138726f,-0.145701f}, - {-0.10423f,-0.133576f,-0.146057f},{-0.103969f,-0.133351f,-0.146014f},{-0.109589f,-0.12887f,-0.147687f}, - {-0.108787f,-0.12819f,-0.146158f},{-0.10853f,-0.127972f,-0.146119f},{-0.10902f,-0.128388f,-0.146297f}, - {-0.109238f,-0.128572f,-0.146474f},{-0.104527f,-0.133835f,-0.146225f},{-0.109409f,-0.128718f,-0.146724f}, - {-0.0999106f,-0.139278f,-0.145907f},{-0.0858158f,-0.155898f,-0.143596f},{-0.081057f,-0.161509f,-0.142353f}, - {-0.0762794f,-0.167143f,-0.140865f},{-0.0714903f,-0.17279f,-0.139127f},{-0.0666975f,-0.178441f,-0.137134f}, - {-0.0619089f,-0.184088f,-0.134885f},{-0.0525844f,-0.19567f,-0.129928f},{-0.047852f,-0.20125f,-0.12689f}, - {-0.0523776f,-0.195326f,-0.129604f},{-0.0476521f,-0.200898f,-0.126571f},{-0.042965f,-0.206425f,-0.123274f}, - {-0.0383251f,-0.211896f,-0.119717f},{-0.0337415f,-0.217301f,-0.1159f},{-0.0292233f,-0.222629f,-0.111826f}, - {-0.024779f,-0.227869f,-0.107499f},{-0.0161473f,-0.238047f,-0.0981062f},{-0.0119768f,-0.242965f,-0.0930527f}, - {-0.00791396f,-0.247755f,-0.087771f},{-0.00396659f,-0.25241f,-0.0822693f},{-0.000142029f,-0.256919f,-0.0765569f}, - {0.00711132f,-0.265472f,-0.0645409f},{0.0105277f,-0.2695f,-0.0582594f},{0.0137963f,-0.273355f,-0.0518113f}, - {0.0169124f,-0.277029f,-0.0452091f},{0.0198717f,-0.280518f,-0.0384656f},{0.0301127f,-0.293561f,-0.0107265f}, - {0.0276847f,-0.290318f,-0.017682f},{0.0278031f,-0.290838f,-0.0179263f},{0.0253055f,-0.286925f,-0.0246083f}, - {0.0277744f,-0.289837f,-0.017522f},{0.0300754f,-0.29255f,-0.0103487f},{0.0322073f,-0.295064f,-0.0031023f}, - {0.0341695f,-0.297377f,0.00420356f},{0.0359619f,-0.299491f,0.0115553f},{0.0375851f,-0.301405f,0.0189394f}, - {0.0403288f,-0.30464f,0.0337531f},{0.0413834f,-0.306471f,0.0410833f},{0.0432194f,-0.308048f,0.0559018f}, - {0.0449202f,-0.310054f,0.0848321f},{0.0450044f,-0.310086f,0.0918925f},{0.0451675f,-0.309769f,0.0918925f}, - {-0.109406f,-0.128715f,-0.14831f},{-0.100187f,-0.13954f,-0.146254f},{-0.0860715f,-0.156184f,-0.14394f}, - {-0.0813058f,-0.161803f,-0.142695f},{-0.0765212f,-0.167445f,-0.141205f},{-0.0717251f,-0.1731f,-0.139464f}, - {-0.0669252f,-0.17876f,-0.137469f},{-0.0621296f,-0.184415f,-0.135216f},{-0.0573465f,-0.190055f,-0.132703f}, - {-0.043158f,-0.206785f,-0.123589f},{-0.0431976f,-0.207118f,-0.12407f},{-0.0385406f,-0.212609f,-0.120499f}, - {-0.0385114f,-0.212264f,-0.120026f},{-0.0339211f,-0.217677f,-0.116203f},{-0.0293962f,-0.223012f,-0.112124f}, - {-0.0249455f,-0.22826f,-0.10779f},{-0.0080171f,-0.248601f,-0.0884349f},{-0.00775636f,-0.248908f,-0.0888979f}, - {-0.00378422f,-0.253592f,-0.0833616f},{-0.0121246f,-0.243378f,-0.0933231f},{-0.0080558f,-0.248175f,-0.0880336f}, - {-0.00410265f,-0.252837f,-0.0825239f},{-0.000272494f,-0.257353f,-0.0768032f},{0.0137734f,-0.274295f,-0.0523423f}, - {0.0140901f,-0.274668f,-0.0527127f},{0.0172258f,-0.278365f,-0.046069f},{0.0104128f,-0.269952f,-0.0584789f}, - {0.0136862f,-0.273812f,-0.0520214f},{0.0168069f,-0.277492f,-0.0454095f},{0.0197705f,-0.280986f,-0.0386562f}, - {0.0225733f,-0.284291f,-0.0317747f},{0.0252122f,-0.287403f,-0.0247786f},{0.0299891f,-0.293035f,-0.0104982f}, - {0.0321241f,-0.295553f,-0.00324118f},{0.0340892f,-0.29787f,0.00407537f},{0.0358842f,-0.299987f,0.0114378f}, - {0.0375098f,-0.301903f,0.0188328f},{0.038967f,-0.303622f,0.0262471f},{0.0402575f,-0.305143f,0.0336681f}, - {0.0431523f,-0.308557f,0.0558492f},{0.0452017f,-0.311353f,0.077605f},{0.0449255f,-0.310447f,0.0918925f}, - {-0.0998191f,-0.139386f,-0.148277f},{-0.100354f,-0.139723f,-0.146785f},{-0.0814304f,-0.162036f,-0.143218f}, - {-0.0813582f,-0.162121f,-0.143822f},{-0.0765506f,-0.16779f,-0.142325f},{-0.0766352f,-0.16769f,-0.141725f}, - {-0.0718284f,-0.173358f,-0.13998f},{-0.0670178f,-0.179031f,-0.137981f},{-0.0622115f,-0.184698f,-0.135723f}, - {-0.0574178f,-0.19035f,-0.133204f},{-0.0526451f,-0.195978f,-0.130423f},{-0.0479021f,-0.201571f,-0.127378f}, - {-0.0339401f,-0.218034f,-0.116668f},{-0.0337459f,-0.218263f,-0.117203f},{-0.0291993f,-0.223624f,-0.113104f}, - {-0.0294051f,-0.223381f,-0.112579f},{-0.0249445f,-0.228641f,-0.108236f},{-0.0205669f,-0.233803f,-0.103644f}, - {-0.0162809f,-0.238856f,-0.0988083f},{-0.0120949f,-0.243792f,-0.0937362f},{-0.00405513f,-0.253272f,-0.0829128f}, - {-0.000216443f,-0.257799f,-0.0771794f},{0.00349201f,-0.262171f,-0.0712445f},{0.00706371f,-0.266383f,-0.065119f}, - {0.0104927f,-0.270426f,-0.0588143f},{0.016901f,-0.277982f,-0.0457157f},{0.0198712f,-0.281485f,-0.0389474f}, - {0.0226803f,-0.284797f,-0.0320505f},{0.0253251f,-0.287916f,-0.0250388f},{0.0322524f,-0.296084f,-0.00345334f}, - {0.0326166f,-0.296513f,-0.00369814f},{0.034591f,-0.298841f,0.00365355f},{0.0342218f,-0.298406f,0.00387953f}, - {0.0360209f,-0.300527f,0.0112584f},{0.0376501f,-0.302448f,0.0186698f},{0.0391106f,-0.304171f,0.0261007f}, - {0.0404039f,-0.305696f,0.0335382f},{0.0415324f,-0.307026f,0.04097f},{0.0424985f,-0.308165f,0.048384f}, - {0.0433052f,-0.309117f,0.0557688f},{0.0448054f,-0.310885f,0.0776416f},{0.0449434f,-0.310806f,0.0918925f}, - {-0.0956393f,-0.145282f,-0.146855f},{-0.0909094f,-0.150859f,-0.146081f},{-0.10033f,-0.139751f,-0.147398f}, - {-0.0861468f,-0.156475f,-0.145073f},{-0.0717315f,-0.173473f,-0.140576f},{-0.0669086f,-0.179159f,-0.138571f}, - {-0.0620899f,-0.184841f,-0.136307f},{-0.0617973f,-0.184807f,-0.136814f},{-0.0569805f,-0.190486f,-0.134283f}, - {-0.0572839f,-0.190508f,-0.133782f},{-0.0524989f,-0.19615f,-0.130993f},{-0.0477437f,-0.201757f,-0.127941f}, - {-0.0430272f,-0.207319f,-0.124624f},{-0.0383583f,-0.212824f,-0.121044f},{-0.0247272f,-0.228897f,-0.10875f}, - {-0.0243516f,-0.22896f,-0.109195f},{-0.019953f,-0.234147f,-0.104581f},{-0.0203383f,-0.234072f,-0.104146f}, - {-0.0160414f,-0.239139f,-0.0992979f},{-0.0118447f,-0.244087f,-0.0942128f},{6.43211e-005f,-0.25813f,-0.0776135f}, - {0.000494926f,-0.258258f,-0.0779897f},{0.00422115f,-0.262651f,-0.0720263f},{0.0037823f,-0.262514f,-0.0716633f}, - {0.00736317f,-0.266736f,-0.0655221f},{0.0108009f,-0.27079f,-0.0592012f},{0.0202036f,-0.281877f,-0.0392833f}, - {0.0206789f,-0.282057f,-0.0395744f},{0.0235014f,-0.285386f,-0.0326445f},{0.0230198f,-0.285197f,-0.0323688f}, - {0.0256714f,-0.288324f,-0.025339f},{0.0281559f,-0.291253f,-0.0182083f},{0.0304713f,-0.293984f,-0.01099f}, - {0.0363947f,-0.300968f,0.0110514f},{0.0380281f,-0.302894f,0.0184819f},{0.0385429f,-0.303122f,0.0183189f}, - {0.0400104f,-0.304852f,0.0257854f},{0.0394923f,-0.304621f,0.0259318f},{0.040789f,-0.30615f,0.0333884f}, - {0.0419203f,-0.307484f,0.0408392f},{0.0428889f,-0.308626f,0.0482723f},{0.0436977f,-0.309579f,0.0556761f}, - {0.0454092f,-0.311597f,0.0847878f},{0.0452527f,-0.311466f,0.0918925f},{0.0450535f,-0.311155f,0.0918925f}, - {-0.0954211f,-0.14516f,-0.147384f},{-0.0906807f,-0.150749f,-0.14661f},{-0.100122f,-0.139616f,-0.147929f}, - {-0.0859076f,-0.156377f,-0.145599f},{-0.0811083f,-0.162036f,-0.144345f},{-0.07629f,-0.167718f,-0.142845f}, - {-0.0714602f,-0.173413f,-0.141092f},{-0.0666266f,-0.179112f,-0.139082f},{-0.052185f,-0.196141f,-0.131488f}, - {-0.0470397f,-0.201621f,-0.128748f},{-0.0474192f,-0.20176f,-0.128429f},{-0.0426922f,-0.207334f,-0.125105f}, - {-0.0380129f,-0.212852f,-0.121517f},{-0.0333903f,-0.218302f,-0.117667f},{-0.0288337f,-0.223675f,-0.113559f}, - {-0.0152209f,-0.239139f,-0.1f},{-0.0156465f,-0.239225f,-0.0997223f},{-0.0114405f,-0.244184f,-0.0946258f}, - {-0.00734311f,-0.249016f,-0.0892991f},{-0.00336217f,-0.25371f,-0.0837506f},{0.0082696f,-0.266838f,-0.0661002f}, - {0.00780997f,-0.266883f,-0.0658715f},{0.0112554f,-0.270946f,-0.0595366f},{0.0145518f,-0.274833f,-0.0530336f}, - {0.0176944f,-0.278538f,-0.0463752f},{0.0266451f,-0.288505f,-0.0257695f},{0.0261589f,-0.288519f,-0.0255992f}, - {0.0286488f,-0.291455f,-0.0184526f},{0.0309694f,-0.294191f,-0.0112184f},{0.0331194f,-0.296727f,-0.00391029f}, - {0.0350983f,-0.29906f,0.00345771f},{0.0369059f,-0.301191f,0.0108719f},{0.04131f,-0.306384f,0.0332586f}, - {0.0429537f,-0.307735f,0.0406518f},{0.0424438f,-0.307721f,0.0407259f},{0.0434146f,-0.308866f,0.0481755f}, - {0.0442252f,-0.309822f,0.0555957f},{0.0448791f,-0.310593f,0.0629755f},{0.0457325f,-0.311599f,0.0775733f}, - {0.045844f,-0.311876f,0.0918925f},{0.0455195f,-0.311707f,0.0918925f},{-0.109024f,-0.128391f,-0.148751f}, - {-0.0951111f,-0.144938f,-0.147731f},{-0.0903639f,-0.150535f,-0.146955f},{-0.0855838f,-0.156172f,-0.145943f}, - {-0.0807776f,-0.161839f,-0.144688f},{-0.0759523f,-0.167529f,-0.143185f},{-0.0711155f,-0.173232f,-0.141429f}, - {-0.0662749f,-0.17894f,-0.139417f},{-0.0614385f,-0.184642f,-0.137145f},{-0.0566148f,-0.19033f,-0.134611f}, - {-0.0518123f,-0.195993f,-0.131812f},{-0.0419583f,-0.207002f,-0.125571f},{-0.0374085f,-0.211835f,-0.122344f}, - {-0.0372689f,-0.212532f,-0.121975f},{-0.0423058f,-0.207202f,-0.125419f},{-0.0376197f,-0.212728f,-0.121826f}, - {-0.0329904f,-0.218187f,-0.117971f},{-0.0284272f,-0.223567f,-0.113856f},{-0.0239386f,-0.22886f,-0.109486f}, - {-0.0195336f,-0.234054f,-0.104866f},{-0.0110088f,-0.244106f,-0.0948962f},{-0.0106394f,-0.243932f,-0.0950266f}, - {-0.00690545f,-0.248944f,-0.0895618f},{-0.00291873f,-0.253645f,-0.0840052f},{0.000943949f,-0.2582f,-0.0782359f}, - {0.00467558f,-0.2626f,-0.072264f},{0.0121053f,-0.270751f,-0.059862f},{0.0152714f,-0.273952f,-0.0542297f}, - {0.0154088f,-0.274646f,-0.053345f},{0.01172f,-0.270906f,-0.059756f},{0.0150212f,-0.274799f,-0.0532437f}, - {0.0181684f,-0.27851f,-0.0465757f},{0.0211572f,-0.282034f,-0.039765f},{0.0239838f,-0.285367f,-0.0328251f}, - {0.0291386f,-0.291445f,-0.0186126f},{0.0318617f,-0.294046f,-0.0114399f},{0.0314626f,-0.294185f,-0.0113678f}, - {0.0336157f,-0.296724f,-0.00404916f},{0.0355975f,-0.299061f,0.00332952f},{0.0374077f,-0.301196f,0.0107545f}, - {0.0390471f,-0.303129f,0.0182123f},{0.0405167f,-0.304862f,0.0256896f},{0.0418182f,-0.306396f,0.0331736f}, - {0.0439258f,-0.308881f,0.0481121f},{0.0447376f,-0.309839f,0.0555431f},{0.0453925f,-0.310611f,0.0629336f}, - {-0.0948004f,-0.144694f,-0.147899f},{-0.0900499f,-0.150296f,-0.147122f},{-0.0852665f,-0.155936f,-0.146109f}, - {-0.0804569f,-0.161607f,-0.144853f},{-0.0756283f,-0.167301f,-0.143349f},{-0.0707881f,-0.173008f,-0.141592f}, - {-0.0659441f,-0.17872f,-0.139579f},{-0.0611044f,-0.184426f,-0.137305f},{-0.0562773f,-0.190118f,-0.134769f}, - {-0.0514714f,-0.195785f,-0.131968f},{-0.0466954f,-0.201416f,-0.128902f},{-0.0326364f,-0.217994f,-0.118117f}, - {-0.0280699f,-0.223379f,-0.114f},{-0.0235782f,-0.228675f,-0.109627f},{-0.0191702f,-0.233873f,-0.105003f}, - {-0.0148544f,-0.238961f,-0.100134f},{-0.0140188f,-0.239415f,-0.0995149f},{-0.00653318f,-0.248773f,-0.0896885f}, - {-0.00254368f,-0.253477f,-0.0841281f},{0.0013217f,-0.258035f,-0.0783547f},{0.00505593f,-0.262438f,-0.0723786f}, - {0.00865246f,-0.266679f,-0.0662105f},{0.0185582f,-0.278359f,-0.0466724f},{0.021549f,-0.281886f,-0.039857f}, - {0.0243776f,-0.285221f,-0.0329122f},{0.0270408f,-0.288362f,-0.0258517f},{0.0295361f,-0.291304f,-0.0186898f}, - {0.0300372f,-0.291363f,-0.0180672f},{0.0340163f,-0.296587f,-0.00411618f},{0.0359994f,-0.298925f,0.00326766f}, - {0.0378109f,-0.301061f,0.0106978f},{0.0394515f,-0.302996f,0.0181608f},{0.0409221f,-0.30473f,0.0256434f}, - {0.0422245f,-0.306265f,0.0331326f},{0.0433608f,-0.307605f,0.040616f},{0.0443336f,-0.308752f,0.0480815f}, - {0.0451459f,-0.30971f,0.0555177f},{0.0458013f,-0.310483f,0.0629134f},{0.0463034f,-0.311075f,0.0702583f}, - {0.0466565f,-0.311491f,0.0775425f},{-0.0947f,-0.14428f,-0.147965f},{-0.0901089f,-0.149694f,-0.147226f}, - {-0.0855339f,-0.155088f,-0.146277f},{-0.080979f,-0.160459f,-0.145118f},{-0.0764484f,-0.165802f,-0.143752f}, - {-0.071946f,-0.17111f,-0.142179f},{-0.0674757f,-0.176382f,-0.1404f},{-0.0630415f,-0.18161f,-0.138417f}, - {-0.0586471f,-0.186792f,-0.136232f},{-0.0542966f,-0.191922f,-0.133846f},{-0.0499938f,-0.196995f,-0.131262f}, - {-0.0457424f,-0.202008f,-0.128482f},{-0.0415461f,-0.206956f,-0.125509f},{-0.0333335f,-0.21664f,-0.118992f}, - {-0.0293246f,-0.221367f,-0.115454f},{-0.0253853f,-0.226012f,-0.111734f},{-0.0215189f,-0.230571f,-0.107835f}, - {-0.017729f,-0.23504f,-0.103761f},{-0.0103917f,-0.243691f,-0.0951008f},{-0.0068508f,-0.247867f,-0.0905224f}, - {-0.00339908f,-0.251937f,-0.0857837f},{-3.97542e-005f,-0.255898f,-0.080889f},{0.00322425f,-0.259746f,-0.0758426f}, - {0.00639008f,-0.263479f,-0.0706488f},{0.00945498f,-0.267093f,-0.0653124f},{0.0124163f,-0.270585f,-0.0598376f}, - {0.0180177f,-0.27719f,-0.0484934f},{0.0206528f,-0.280297f,-0.042634f},{0.0231745f,-0.283271f,-0.0366563f}, - {0.0255806f,-0.286108f,-0.0305656f},{0.0278688f,-0.288806f,-0.0243674f},{0.0320839f,-0.293776f,-0.0116704f}, - {0.0340071f,-0.296044f,-0.00518257f},{0.0358052f,-0.298164f,0.00139061f},{0.0374764f,-0.300134f,0.00804317f}, - {0.0390194f,-0.301954f,0.0147693f},{0.0404328f,-0.30362f,0.0215631f},{0.0417153f,-0.305133f,0.0284189f}, - {0.0428659f,-0.306489f,0.0353305f},{0.0438836f,-0.307689f,0.0422916f},{0.0447673f,-0.308731f,0.0492962f}, - {0.0455164f,-0.309615f,0.0563382f},{0.0461302f,-0.310339f,0.0634117f},{0.0466082f,-0.310902f,0.0705101f}, - {0.0469499f,-0.311305f,0.0776272f},{0.0471551f,-0.311547f,0.0847567f},{-0.259174f,0.0496576f,0.0428677f}, - {-0.260195f,0.0503292f,0.0485758f},{-0.259233f,0.0491951f,0.0411945f},{-0.251955f,0.040613f,0.00426646f}, - {-0.25119f,0.0402427f,0.00244165f},{-0.252842f,0.0421904f,0.00901696f},{-0.261646f,0.0520403f,0.0632405f}, - {-0.262143f,0.0526258f,0.0705025f},{-0.262055f,0.0519124f,0.0632202f},{-0.260788f,0.0515606f,0.0567511f}, - {-0.261395f,0.052276f,0.0637424f},{-0.263623f,0.0531732f,0.084822f},{-0.263855f,0.0533019f,0.0918925f}, - {-0.264154f,0.05342f,0.0848062f},{-0.263066f,0.0525171f,0.0704561f},{-0.262569f,0.0519303f,0.0631783f}, - {-0.262552f,0.0524983f,0.0704874f},{-0.264551f,0.053888f,0.084788f},{-0.264756f,0.0543717f,0.0918925f}, - {-0.264708f,0.0544524f,0.0847723f},{-0.263596f,0.0527624f,0.0704083f},{-0.263098f,0.0521743f,0.0631143f}, - {-0.264451f,0.0553469f,0.084757f},{-0.264242f,0.0551011f,0.0775429f},{-0.264643f,0.0549636f,0.084762f}, - {-0.264774f,0.0547312f,0.0918925f},{-0.264284f,0.055683f,0.0918925f},{-0.264532f,0.055409f,0.0918925f}, - {-0.264011f,0.0553606f,0.0776267f},{-0.260998f,0.0512763f,0.0559281f},{-0.260048f,0.0506876f,0.0497909f}, - {-0.264216f,0.0556025f,0.0847564f},{-0.257031f,0.0471307f,0.0291561f},{-0.25811f,0.0478703f,0.0337954f}, - {-0.256822f,0.046352f,0.0263905f},{-0.258169f,0.0484716f,0.0359874f},{-0.255368f,0.0446375f,0.0189921f}, - {-0.255764f,0.0456359f,0.0223799f},{-0.253746f,0.0427249f,0.0116131f},{-0.254367f,0.0439887f,0.015665f}, - {-0.249995f,0.038301f,-0.00303443f},{-0.249413f,0.0381472f,-0.0040552f},{-0.245565f,0.0330777f,-0.0174445f}, - {-0.243098f,0.0301686f,-0.0245261f},{-0.243346f,0.0309933f,-0.0230172f},{-0.247864f,0.035789f,-0.010276f}, - {-0.236214f,0.0225835f,-0.0410717f},{-0.238706f,0.0255224f,-0.0351634f},{-0.237668f,0.0237661f,-0.0383731f}, - {-0.241084f,0.0283265f,-0.0291434f},{-0.230895f,0.0163118f,-0.0525327f},{-0.231597f,0.0166077f,-0.051709f}, - {-0.228331f,0.0127563f,-0.0581524f},{-0.234711f,0.0202793f,-0.0451116f},{-0.222116f,0.00596108f,-0.0687612f}, - {-0.221361f,0.00453797f,-0.0705281f},{-0.218987f,0.00227149f,-0.0738946f},{-0.224917f,0.00873094f,-0.0644294f}, - {-0.209029f,-0.00947042f,-0.088404f},{-0.212441f,-0.00544764f,-0.0837203f},{-0.209902f,-0.00897324f,-0.0876434f}, - {-0.215761f,-0.00153252f,-0.0788824f},{-0.213847f,-0.00432202f,-0.0821454f},{-0.198277f,-0.0221483f,-0.101489f}, - {-0.201675f,-0.0186748f,-0.0979716f},{-0.197407f,-0.0237065f,-0.102786f},{-0.205842f,-0.0137605f,-0.0929216f}, - {-0.188607f,-0.0340827f,-0.111682f},{-0.186816f,-0.0356624f,-0.113046f},{-0.19071f,-0.0310714f,-0.109369f}, - {-0.194531f,-0.0265653f,-0.105516f},{-0.174737f,-0.0499058f,-0.122984f},{-0.178826f,-0.0450837f,-0.119856f}, - {-0.174876f,-0.0502744f,-0.123123f},{-0.184092f,-0.0394068f,-0.115753f},{-0.170192f,-0.0557971f,-0.126416f}, - {-0.166387f,-0.0597511f,-0.12867f},{-0.170589f,-0.0547964f,-0.125923f},{-0.155946f,-0.0725956f,-0.134725f}, - {-0.157835f,-0.0698361f,-0.133582f},{-0.160718f,-0.066968f,-0.132217f},{-0.162134f,-0.0647658f,-0.131224f}, - {-0.16547f,-0.0613651f,-0.129448f},{-0.149108f,-0.0801253f,-0.137702f},{-0.15116f,-0.078238f,-0.136973f}, - {-0.146371f,-0.0838855f,-0.138964f},{-0.153491f,-0.0749575f,-0.135742f},{-0.14024f,-0.0905825f,-0.141015f}, - {-0.141585f,-0.0895285f,-0.140701f},{-0.136811f,-0.0951581f,-0.142188f},{-0.14469f,-0.0853352f,-0.13946f}, - {-0.13126f,-0.101171f,-0.143511f},{-0.135762f,-0.0958627f,-0.142366f},{-0.132055f,-0.100766f,-0.14343f}, - {-0.123467f,-0.112469f,-0.146244f},{-0.123249f,-0.112347f,-0.145714f},{-0.127956f,-0.106796f,-0.144944f}, - {-0.113356f,-0.122814f,-0.146058f},{-0.11765f,-0.117219f,-0.145701f},{-0.11797f,-0.117374f,-0.145739f}, - {-0.113092f,-0.122593f,-0.146015f},{-0.122628f,-0.111881f,-0.145199f},{-0.127326f,-0.106343f,-0.144432f}, - {-0.122939f,-0.112125f,-0.145367f},{-0.1222f,-0.111854f,-0.145179f},{-0.126738f,-0.106503f,-0.144449f}, - {-0.141909f,-0.0897564f,-0.140865f},{-0.137462f,-0.0955874f,-0.142696f},{-0.137131f,-0.09539f,-0.142353f}, - {-0.128185f,-0.106906f,-0.145472f},{-0.12764f,-0.106582f,-0.144599f},{-0.123503f,-0.112427f,-0.146855f}, - {-0.118812f,-0.117958f,-0.147398f},{-0.118788f,-0.117986f,-0.146786f},{-0.123077f,-0.111962f,-0.147732f}, - {-0.118369f,-0.117514f,-0.148277f},{-0.123347f,-0.112232f,-0.147385f},{-0.113989f,-0.123265f,-0.148251f}, - {-0.113706f,-0.123012f,-0.148599f},{-0.113408f,-0.122753f,-0.148767f},{-0.113146f,-0.12253f,-0.14881f}, - {-0.151491f,-0.078458f,-0.137135f},{-0.193049f,-0.0288458f,-0.107358f},{-0.182854f,-0.0403346f,-0.116543f}, - {-0.179512f,-0.0448075f,-0.119568f},{-0.188965f,-0.0342715f,-0.111826f},{-0.201945f,-0.0178243f,-0.097292f}, - {-0.205529f,-0.0135971f,-0.0929291f},{-0.217669f,0.000184436f,-0.076437f},{-0.225146f,0.00953304f,-0.0634867f}, - {-0.214222f,-0.00448977f,-0.0822683f},{-0.214665f,-0.00455427f,-0.0825229f},{-0.210712f,-0.00921558f,-0.0880327f}, - {-0.228073f,0.0129843f,-0.0580755f},{-0.233609f,0.0195124f,-0.0468631f},{-0.245489f,0.0335205f,-0.0167902f}, - {-0.247512f,0.0359058f,-0.0104677f},{-0.240464f,0.0270637f,-0.0315068f},{-0.232454f,0.0164208f,-0.0520204f}, - {-0.2351f,0.0201289f,-0.0452083f},{-0.235574f,0.0201004f,-0.0454087f},{-0.25415f,0.0425904f,0.0115564f}, - {-0.261867f,0.052833f,0.0707584f},{-0.264446f,0.0537122f,0.0918925f},{-0.262205f,0.0532313f,0.0777929f}, - {-0.262492f,0.0530375f,0.0777045f},{-0.263108f,0.0531535f,0.0848323f},{-0.263495f,0.053223f,0.0918925f}, - {-0.262408f,0.0534704f,0.0848396f},{-0.262698f,0.0532806f,0.0848373f},{-0.262786f,0.053351f,0.0918925f}, - {-0.263135f,0.0532409f,0.0918925f},{-0.262476f,0.0535502f,0.0918925f},{-0.26418f,0.0534707f,0.0918925f}, - {-0.264646f,0.0540229f,0.0918925f},{-0.262902f,0.0529103f,0.0776945f},{-0.261407f,0.0511478f,0.0559028f}, - {-0.260603f,0.0502f,0.0485453f},{-0.259641f,0.0490651f,0.0411587f},{-0.258516f,0.0477394f,0.0337544f}, - {-0.257228f,0.04622f,0.0263442f},{-0.255773f,0.0445043f,0.0189407f},{-0.252856f,0.0404782f,0.00407642f}, - {-0.250891f,0.0381612f,-0.00324031f},{-0.252357f,0.040477f,0.00420461f},{-0.250395f,0.0381634f,-0.00310144f}, - {-0.248263f,0.0356496f,-0.0103481f},{-0.245962f,0.0329364f,-0.0175217f},{-0.243493f,0.0300252f,-0.0246083f}, - {-0.240858f,0.0269181f,-0.0315939f},{-0.23806f,0.0236182f,-0.038465f},{-0.231984f,0.0164547f,-0.0518103f}, - {-0.228716f,0.0126006f,-0.0582583f},{-0.2253f,0.00857242f,-0.0645398f},{-0.221741f,0.00437648f,-0.0706427f}, - {-0.218046f,1.98718e-005f,-0.0765558f},{-0.210275f,-0.00914426f,-0.0877701f},{-0.206212f,-0.0139349f,-0.093052f}, - {-0.202041f,-0.0188527f,-0.0981056f},{-0.197771f,-0.0238879f,-0.102923f},{-0.193409f,-0.0290309f,-0.107499f}, - {-0.175945f,-0.050591f,-0.12407f},{-0.180256f,-0.0451276f,-0.120026f},{-0.180601f,-0.0451f,-0.120499f}, - {-0.184446f,-0.0395993f,-0.1159f},{-0.179863f,-0.0450038f,-0.119717f},{-0.175223f,-0.0504746f,-0.123274f}, - {-0.170536f,-0.0560012f,-0.126571f},{-0.165811f,-0.0615731f,-0.129604f},{-0.161056f,-0.0671799f,-0.132375f}, - {-0.15628f,-0.0728116f,-0.134885f},{-0.146698f,-0.0841094f,-0.139127f},{-0.142247f,-0.0899456f,-0.141206f}, - {-0.132373f,-0.101001f,-0.143596f},{-0.118277f,-0.117621f,-0.145907f},{-0.11366f,-0.123065f,-0.146226f}, - {-0.264435f,0.054718f,0.0775529f},{-0.263416f,0.0529297f,0.0776737f},{-0.261919f,0.0511646f,0.0558501f}, - {-0.261114f,0.0502154f,0.0484819f},{-0.26015f,0.0490789f,0.0410845f},{-0.259025f,0.0477513f,0.0336694f}, - {-0.257734f,0.0462296f,0.0262484f},{-0.256277f,0.0445114f,0.018834f},{-0.254651f,0.0425947f,0.011439f}, - {-0.248756f,0.0356438f,-0.0104976f},{-0.249254f,0.0358515f,-0.0107259f},{-0.246945f,0.0331282f,-0.017926f}, - {-0.246452f,0.0329266f,-0.0176816f},{-0.243979f,0.0300111f,-0.0247786f},{-0.241341f,0.0268995f,-0.0317744f}, - {-0.238538f,0.0235948f,-0.0386556f},{-0.226206f,0.0086742f,-0.0651178f},{-0.226506f,0.0090273f,-0.065521f}, - {-0.222925f,0.00480505f,-0.0716622f},{-0.22918f,0.0125611f,-0.0584778f},{-0.225759f,0.008527f,-0.0647685f}, - {-0.222196f,0.00432493f,-0.0708804f},{-0.218495f,-3.80402e-005f,-0.0768021f},{-0.202862f,-0.0188522f,-0.0988077f}, - {-0.203101f,-0.0185698f,-0.0992973f},{-0.198804f,-0.0236366f,-0.104145f},{-0.206643f,-0.0140133f,-0.0933224f}, - {-0.202467f,-0.0189382f,-0.0983834f},{-0.19819f,-0.0239808f,-0.103208f},{-0.193822f,-0.0291313f,-0.10779f}, - {-0.189371f,-0.0343795f,-0.112123f},{-0.184846f,-0.0397152f,-0.116203f},{-0.17561f,-0.0506063f,-0.123589f}, - {-0.170916f,-0.056141f,-0.12689f},{-0.166183f,-0.061721f,-0.129928f},{-0.161421f,-0.0673361f,-0.132703f}, - {-0.156638f,-0.072976f,-0.135216f},{-0.151843f,-0.0786306f,-0.137469f},{-0.147043f,-0.0842903f,-0.139465f}, - {-0.132696f,-0.101207f,-0.14394f},{-0.114166f,-0.123436f,-0.147719f},{-0.118581f,-0.117851f,-0.146255f}, - {-0.113957f,-0.123303f,-0.146574f},{-0.262447f,0.0514069f,0.0557698f},{-0.263947f,0.0531759f,0.077642f}, - {-0.26164f,0.0504556f,0.0483851f},{-0.26203f,0.050916f,0.0482734f},{-0.261062f,0.0497739f,0.0408405f}, - {-0.260674f,0.0493165f,0.0409712f},{-0.259545f,0.047986f,0.0335395f},{-0.258252f,0.0464609f,0.026102f}, - {-0.256792f,0.0447389f,0.0186711f},{-0.255163f,0.0428179f,0.0112596f},{-0.253364f,0.0406967f,0.00388058f}, - {-0.251394f,0.0383745f,-0.00345247f},{-0.244467f,0.0302062f,-0.0250388f},{-0.244813f,0.0306146f,-0.025339f}, - {-0.242162f,0.0274881f,-0.0323684f},{-0.241822f,0.0270877f,-0.0320502f},{-0.239013f,0.0237756f,-0.0389468f}, - {-0.236043f,0.0202734f,-0.0457149f},{-0.232916f,0.0165856f,-0.0523413f},{-0.229635f,0.0127173f,-0.0588132f}, - {-0.222634f,0.00446276f,-0.0712434f},{-0.218926f,9.00519e-005f,-0.0771783f},{-0.215087f,-0.00443625f,-0.0829118f}, - {-0.211125f,-0.00910795f,-0.088434f},{-0.207048f,-0.0139163f,-0.0937354f},{-0.198575f,-0.0239061f,-0.103643f}, - {-0.194198f,-0.0290681f,-0.108235f},{-0.189737f,-0.034328f,-0.112578f},{-0.185202f,-0.0396756f,-0.116668f}, - {-0.17124f,-0.056138f,-0.127378f},{-0.171399f,-0.0559513f,-0.127941f},{-0.166644f,-0.0615582f,-0.130993f}, - {-0.166497f,-0.0617305f,-0.130423f},{-0.161725f,-0.0673581f,-0.133204f},{-0.156931f,-0.0730105f,-0.135723f}, - {-0.152125f,-0.0786778f,-0.137981f},{-0.147314f,-0.0843501f,-0.139981f},{-0.142507f,-0.090018f,-0.141725f}, - {-0.137712f,-0.0956724f,-0.143219f},{-0.132936f,-0.101305f,-0.144466f},{-0.114154f,-0.12345f,-0.147106f}, - {-0.263992f,0.0532287f,0.0703531f},{-0.263492f,0.0526391f,0.0630404f},{-0.264343f,0.0536432f,0.0776054f}, - {-0.262839f,0.0518697f,0.055677f},{-0.259931f,0.04844f,0.0333897f},{-0.258634f,0.046911f,0.0259331f}, - {-0.25717f,0.0451846f,0.0184831f},{-0.25731f,0.0457297f,0.0183202f},{-0.255673f,0.0437995f,0.0108731f}, - {-0.255536f,0.0432587f,0.0110526f},{-0.253733f,0.041132f,0.00365461f},{-0.251758f,0.0388039f,-0.00369726f}, - {-0.249613f,0.0362743f,-0.0109894f},{-0.247298f,0.0335441f,-0.0182079f},{-0.239346f,0.0241674f,-0.0392827f}, - {-0.239446f,0.0246659f,-0.0395738f},{-0.236462f,0.0211469f,-0.0463744f},{-0.236368f,0.0206563f,-0.0460682f}, - {-0.233232f,0.016959f,-0.0527117f},{-0.229943f,0.0130808f,-0.0592001f},{-0.219207f,0.000421111f,-0.0776124f}, - {-0.219263f,0.000866864f,-0.0779886f},{-0.215406f,-0.00368113f,-0.0837496f},{-0.215358f,-0.00411681f,-0.0833607f}, - {-0.211386f,-0.0088005f,-0.088897f},{-0.207298f,-0.0136212f,-0.094212f},{-0.194415f,-0.0288119f,-0.108749f}, - {-0.194416f,-0.028431f,-0.109195f},{-0.189934f,-0.0337161f,-0.113558f},{-0.189943f,-0.0340853f,-0.113103f}, - {-0.185396f,-0.0394466f,-0.117203f},{-0.180784f,-0.044885f,-0.121044f},{-0.176115f,-0.0503901f,-0.124624f}, - {-0.161859f,-0.0672002f,-0.133782f},{-0.157053f,-0.0728671f,-0.136307f},{-0.156971f,-0.0725841f,-0.136814f}, - {-0.152141f,-0.0782785f,-0.139083f},{-0.152234f,-0.078549f,-0.138571f},{-0.147411f,-0.0842358f,-0.140576f}, - {-0.142592f,-0.0899183f,-0.142325f},{-0.137784f,-0.0955872f,-0.143823f},{-0.132996f,-0.101234f,-0.145073f}, - {-0.128233f,-0.10685f,-0.146082f},{-0.264147f,0.0537916f,0.0703053f},{-0.263646f,0.0532007f,0.0629764f}, - {-0.2645f,0.0542071f,0.0775737f},{-0.262992f,0.0524296f,0.0555966f},{-0.262181f,0.0514738f,0.0481766f}, - {-0.261211f,0.0503292f,0.0407271f},{-0.260077f,0.0489923f,0.0332599f},{-0.258777f,0.04746f,0.0257867f}, - {-0.253865f,0.0416681f,0.00345877f},{-0.251803f,0.0398241f,-0.00404829f},{-0.251887f,0.0393348f,-0.00390942f}, - {-0.249737f,0.0367997f,-0.0112177f},{-0.247416f,0.0340634f,-0.0184523f},{-0.244926f,0.0311274f,-0.0255992f}, - {-0.242269f,0.0279939f,-0.0326442f},{-0.233209f,0.0178991f,-0.0532427f},{-0.233319f,0.0174415f,-0.0530326f}, - {-0.230023f,0.0135546f,-0.0595354f},{-0.226578f,0.00949215f,-0.0658703f},{-0.222989f,0.00526052f,-0.0720252f}, - {-0.211283f,-0.00795507f,-0.0895609f},{-0.211425f,-0.00837522f,-0.0892982f},{-0.207327f,-0.0132066f,-0.0946251f}, - {-0.203121f,-0.0181662f,-0.0997217f},{-0.198815f,-0.0232443f,-0.10458f},{-0.185197f,-0.0387137f,-0.117971f}, - {-0.185377f,-0.0390894f,-0.117667f},{-0.180754f,-0.0445398f,-0.121517f},{-0.176075f,-0.0500571f,-0.125105f}, - {-0.171349f,-0.0556307f,-0.128429f},{-0.166583f,-0.06125f,-0.131488f},{-0.161787f,-0.0669045f,-0.134283f}, - {-0.147308f,-0.083978f,-0.141092f},{-0.142236f,-0.0893707f,-0.143185f},{-0.142478f,-0.089673f,-0.142845f}, - {-0.13766f,-0.0953545f,-0.144346f},{-0.13286f,-0.101014f,-0.145599f},{-0.128087f,-0.106642f,-0.14661f}, - {-0.118645f,-0.117775f,-0.147929f},{-0.264695f,0.0550917f,0.0918925f},{-0.264082f,0.0543019f,0.070274f}, - {-0.26358f,0.0537101f,0.0629344f},{-0.262925f,0.0529379f,0.055544f},{-0.262113f,0.0519807f,0.0481132f}, - {-0.261141f,0.0508345f,0.040653f},{-0.260006f,0.0494956f,0.0331749f},{-0.258704f,0.047961f,0.0256909f}, - {-0.257235f,0.0462282f,0.0182135f},{-0.255595f,0.0442953f,0.0107557f},{-0.253785f,0.0421608f,0.00333058f}, - {-0.249448f,0.0376562f,-0.0114393f},{-0.247098f,0.035418f,-0.0180677f},{-0.247122f,0.034914f,-0.0186894f}, - {-0.24965f,0.0372853f,-0.0113672f},{-0.247326f,0.034545f,-0.0186123f},{-0.244833f,0.0316048f,-0.0257695f}, - {-0.242172f,0.0284668f,-0.0328247f},{-0.239345f,0.0251339f,-0.0397644f},{-0.236356f,0.0216099f,-0.0465748f}, - {-0.229908f,0.0140066f,-0.0597549f},{-0.229692f,0.0143612f,-0.0598609f},{-0.226458f,0.00993819f,-0.066099f}, - {-0.222864f,0.00570042f,-0.0722628f},{-0.219132f,0.0013004f,-0.0782348f},{-0.21527f,-0.00325419f,-0.0840042f}, - {-0.206947f,-0.0124575f,-0.0950259f},{-0.203042f,-0.0165305f,-0.0995152f},{-0.202732f,-0.0174277f,-0.100133f}, - {-0.20718f,-0.0127935f,-0.0948954f},{-0.202967f,-0.0177602f,-0.0999994f},{-0.198655f,-0.0228457f,-0.104865f}, - {-0.19425f,-0.0280399f,-0.109486f},{-0.189761f,-0.0333327f,-0.113856f},{-0.180568f,-0.0441721f,-0.121826f}, - {-0.175628f,-0.0493872f,-0.125571f},{-0.175882f,-0.0496974f,-0.125419f},{-0.171149f,-0.055279f,-0.128748f}, - {-0.166376f,-0.0609065f,-0.131812f},{-0.161574f,-0.0665692f,-0.134611f},{-0.15675f,-0.072257f,-0.137145f}, - {-0.151914f,-0.0779597f,-0.139417f},{-0.147073f,-0.0836674f,-0.14143f},{-0.137411f,-0.0950605f,-0.144688f}, - {-0.132605f,-0.100728f,-0.145943f},{-0.127824f,-0.106364f,-0.146956f},{-0.263889f,0.0546847f,0.0702589f}, - {-0.263387f,0.0540926f,0.0629142f},{-0.262732f,0.0533198f,0.0555186f},{-0.261919f,0.0523619f,0.0480826f}, - {-0.260946f,0.0512149f,0.0406172f},{-0.25981f,0.0498751f,0.0331338f},{-0.258508f,0.0483394f,0.0256447f}, - {-0.257037f,0.0466054f,0.0181621f},{-0.255397f,0.0446711f,0.010699f},{-0.253585f,0.0425351f,0.00326873f}, - {-0.251602f,0.0401968f,-0.0041153f},{-0.244627f,0.0319717f,-0.0258517f},{-0.241964f,0.0288315f,-0.0329118f}, - {-0.239135f,0.0254964f,-0.0398563f},{-0.236144f,0.0219699f,-0.0466715f},{-0.232995f,0.0182565f,-0.0533441f}, - {-0.232332f,0.0180069f,-0.0542301f},{-0.226239f,0.01029f,-0.0662094f},{-0.222643f,0.0060493f,-0.0723775f}, - {-0.218908f,0.00164621f,-0.0783537f},{-0.215043f,-0.00291157f,-0.0841271f},{-0.211054f,-0.00761574f,-0.0896876f}, - {-0.198416f,-0.0225168f,-0.105003f},{-0.194008f,-0.0277146f,-0.109627f},{-0.189516f,-0.0330111f,-0.114f}, - {-0.18495f,-0.0383959f,-0.118117f},{-0.180317f,-0.043858f,-0.121975f},{-0.179652f,-0.0441102f,-0.122344f}, - {-0.170891f,-0.0549727f,-0.128902f},{-0.166115f,-0.0606041f,-0.131968f},{-0.161309f,-0.0662708f,-0.134769f}, - {-0.156482f,-0.0719626f,-0.137305f},{-0.151643f,-0.0776692f,-0.139579f},{-0.146799f,-0.083381f,-0.141593f}, - {-0.141958f,-0.0890883f,-0.143349f},{-0.13713f,-0.094782f,-0.144853f},{-0.13232f,-0.100453f,-0.146109f}, - {-0.127537f,-0.106094f,-0.147123f},{-0.122786f,-0.111695f,-0.147899f},{-0.118075f,-0.117251f,-0.148445f}, - {-0.263669f,0.0549577f,0.0705096f},{-0.263191f,0.0543941f,0.0634113f},{-0.262578f,0.0536704f,0.056338f}, - {-0.261828f,0.052787f,0.0492957f},{-0.260945f,0.0517449f,0.042291f},{-0.259927f,0.050545f,0.0353299f}, - {-0.258776f,0.0491883f,0.0284186f},{-0.257494f,0.047676f,0.0215629f},{-0.25608f,0.0460093f,0.0147688f}, - {-0.254537f,0.0441899f,0.00804257f},{-0.252866f,0.0422193f,0.00139006f},{-0.251068f,0.0400992f,-0.00518291f}, - {-0.249145f,0.0378314f,-0.0116708f},{-0.24493f,0.0328611f,-0.024368f},{-0.242641f,0.030163f,-0.0305661f}, - {-0.240235f,0.027326f,-0.0366566f},{-0.237714f,0.0243525f,-0.0426344f},{-0.235078f,0.0212452f,-0.0484939f}, - {-0.229477f,0.0146404f,-0.0598379f},{-0.226516f,0.0111487f,-0.0653124f},{-0.223451f,0.00753462f,-0.0706491f}, - {-0.220285f,0.00380161f,-0.0758429f},{-0.217021f,-4.71144e-005f,-0.0808893f},{-0.213662f,-0.00400817f,-0.0857839f}, - {-0.21021f,-0.0080781f,-0.0905225f},{-0.206669f,-0.0122535f,-0.095101f},{-0.199332f,-0.0209053f,-0.103761f}, - {-0.195542f,-0.025374f,-0.107835f},{-0.191675f,-0.029933f,-0.111734f},{-0.187736f,-0.0345782f,-0.115454f}, - {-0.183727f,-0.0393053f,-0.118992f},{-0.175515f,-0.0489888f,-0.125509f},{-0.171318f,-0.0539368f,-0.128482f}, - {-0.167067f,-0.0589499f,-0.131262f},{-0.162764f,-0.0640236f,-0.133846f},{-0.158413f,-0.0691534f,-0.136231f}, - {-0.154019f,-0.0743348f,-0.138417f},{-0.149585f,-0.0795634f,-0.1404f},{-0.145115f,-0.0848346f,-0.142179f}, - {-0.140612f,-0.0901436f,-0.143752f},{-0.136082f,-0.0954858f,-0.145118f},{-0.131527f,-0.100856f,-0.146276f}, - {-0.126952f,-0.106251f,-0.147225f},{-0.122361f,-0.111665f,-0.147964f},{-0.117757f,-0.117093f,-0.148493f}, - {-0.23861f,0.0259416f,-0.0398563f},{-0.235619f,0.0224151f,-0.0466715f},{-0.227862f,0.0148455f,-0.0592001f}, - {-0.224871f,0.0109392f,-0.0658703f},{-0.228317f,0.0150017f,-0.0595354f},{-0.244102f,0.032417f,-0.0258517f}, - {-0.241439f,0.0292768f,-0.0329118f},{-0.248923f,0.0381015f,-0.0114393f},{-0.246597f,0.0353593f,-0.0186894f}, - {-0.251077f,0.0406421f,-0.0041153f},{-0.25306f,0.0429804f,0.00326873f},{-0.254872f,0.0451164f,0.010699f}, - {-0.24803f,0.0382467f,-0.0112177f},{-0.248524f,0.0382409f,-0.0113672f},{-0.25018f,0.0407819f,-0.00390942f}, - {-0.256512f,0.0470507f,0.0181621f},{-0.257983f,0.0487847f,0.0256447f},{-0.259285f,0.0503203f,0.0331338f}, - {-0.260421f,0.0516601f,0.0406172f},{-0.261394f,0.0528072f,0.0480826f},{-0.262207f,0.053765f,0.0555186f}, - {-0.262862f,0.0545378f,0.0629142f},{-0.263364f,0.05513f,0.0702589f},{-0.262955f,0.0552575f,0.070274f}, - {-0.262453f,0.0546658f,0.0629344f},{-0.262173f,0.0537258f,0.0848373f},{-0.261981f,0.0541091f,0.0848323f}, - {-0.261916f,0.0546203f,0.084822f},{-0.261986f,0.054502f,0.0918925f},{-0.262228f,0.0538242f,0.0918925f}, - {-0.261967f,0.0534828f,0.0777045f},{-0.261618f,0.0530711f,0.0705025f},{-0.261425f,0.0534539f,0.0704874f}, - {-0.262441f,0.0552387f,0.0703053f},{-0.26194f,0.0546478f,0.0629764f},{-0.261411f,0.0544038f,0.0630404f}, - {-0.261286f,0.0538767f,0.0555966f},{-0.261911f,0.0549934f,0.0703531f},{-0.263717f,0.0555463f,0.0775429f}, - {-0.263265f,0.0560102f,0.0918925f},{-0.263001f,0.0558995f,0.0847723f},{-0.263516f,0.0559192f,0.084762f}, - {-0.262905f,0.0559313f,0.0918925f},{-0.26247f,0.0556527f,0.084788f},{-0.26258f,0.0557625f,0.0918925f}, - {-0.263625f,0.0559923f,0.0918925f},{-0.263926f,0.0557921f,0.084757f},{-0.263974f,0.0558822f,0.0918925f}, - {-0.262073f,0.0551847f,0.0848062f},{-0.262004f,0.0548614f,0.0918925f},{-0.23247f,0.0187017f,-0.0533441f}, - {-0.229167f,0.0148065f,-0.0598609f},{-0.225714f,0.0107353f,-0.0662094f},{-0.222117f,0.00649456f,-0.0723775f}, - {-0.218383f,0.00209146f,-0.0783537f},{-0.214518f,-0.00246632f,-0.0841271f},{-0.206053f,-0.0118379f,-0.0948954f}, - {-0.209719f,-0.00692815f,-0.0892982f},{-0.205621f,-0.0117596f,-0.0946251f},{-0.210528f,-0.00717049f,-0.0896876f}, - {-0.206422f,-0.0120123f,-0.0950259f},{-0.202207f,-0.0169825f,-0.100133f},{-0.197891f,-0.0220715f,-0.105003f}, - {-0.193483f,-0.0272694f,-0.109627f},{-0.188991f,-0.0325659f,-0.114f},{-0.184425f,-0.0379506f,-0.118117f}, - {-0.174369f,-0.04861f,-0.125105f},{-0.174034f,-0.0486253f,-0.124624f},{-0.169642f,-0.0541836f,-0.128429f}, - {-0.179792f,-0.0434128f,-0.121975f},{-0.175103f,-0.0489419f,-0.125571f},{-0.170366f,-0.0545275f,-0.128902f}, - {-0.16559f,-0.0601589f,-0.131968f},{-0.160784f,-0.0658256f,-0.134769f},{-0.155957f,-0.0715173f,-0.137305f}, - {-0.151118f,-0.077224f,-0.139579f},{-0.146274f,-0.0829357f,-0.141593f},{-0.141109f,-0.0884151f,-0.143185f}, - {-0.141433f,-0.088643f,-0.143349f},{-0.145946f,-0.0827118f,-0.14143f},{-0.136605f,-0.0943367f,-0.144853f}, - {-0.127012f,-0.105648f,-0.147123f},{-0.131478f,-0.0997722f,-0.145943f},{-0.126698f,-0.105409f,-0.146956f}, - {-0.121422f,-0.110662f,-0.146855f},{-0.121386f,-0.110704f,-0.146244f},{-0.116731f,-0.116193f,-0.147398f}, - {-0.135703f,-0.0938225f,-0.143823f},{-0.130915f,-0.099469f,-0.145073f},{-0.131154f,-0.0995666f,-0.145599f}, - {-0.121812f,-0.111169f,-0.145367f},{-0.121543f,-0.1109f,-0.145714f},{-0.126513f,-0.105627f,-0.144599f}, - {-0.112534f,-0.12211f,-0.146226f},{-0.107823f,-0.127372f,-0.146474f},{-0.112251f,-0.121856f,-0.146574f}, - {-0.116939f,-0.116328f,-0.147929f},{-0.12164f,-0.110785f,-0.147385f},{-0.108041f,-0.127557f,-0.146297f}, - {-0.112831f,-0.122369f,-0.146058f},{-0.108274f,-0.127755f,-0.146158f},{-0.126381f,-0.105195f,-0.14661f}, - {-0.126152f,-0.105085f,-0.146082f},{-0.117242f,-0.116558f,-0.148277f},{-0.12195f,-0.111006f,-0.147732f}, - {-0.131795f,-0.100008f,-0.146109f},{-0.122261f,-0.11125f,-0.147899f},{-0.117549f,-0.116805f,-0.148445f}, - {-0.112883f,-0.122308f,-0.148767f},{-0.108275f,-0.127755f,-0.148876f},{-0.262114f,0.0552103f,0.0918925f}, - {-0.263308f,0.0556736f,0.0775529f},{-0.261798f,0.0538935f,0.055544f},{-0.260986f,0.0529363f,0.0481132f}, - {-0.260014f,0.0517901f,0.040653f},{-0.258879f,0.0504512f,0.0331749f},{-0.257577f,0.0489167f,0.0256909f}, - {-0.256108f,0.0471839f,0.0182135f},{-0.254469f,0.0452509f,0.0107557f},{-0.252658f,0.0431164f,0.00333058f}, - {-0.250677f,0.0407797f,-0.00404829f},{-0.2462f,0.0355006f,-0.0186123f},{-0.243706f,0.0325604f,-0.0257695f}, - {-0.241045f,0.0294224f,-0.0328247f},{-0.238218f,0.0260895f,-0.0397644f},{-0.23523f,0.0225655f,-0.0465748f}, - {-0.232083f,0.0188547f,-0.0532427f},{-0.228781f,0.0149622f,-0.0597549f},{-0.225331f,0.0108938f,-0.066099f}, - {-0.221737f,0.00665604f,-0.0722628f},{-0.218006f,0.00225601f,-0.0782348f},{-0.214143f,-0.00229858f,-0.0840042f}, - {-0.210156f,-0.00699946f,-0.0895609f},{-0.201841f,-0.0168046f,-0.0999994f},{-0.197528f,-0.0218901f,-0.104865f}, - {-0.193123f,-0.0270843f,-0.109486f},{-0.188634f,-0.0323771f,-0.113856f},{-0.18407f,-0.0377581f,-0.117971f}, - {-0.179441f,-0.0432164f,-0.121826f},{-0.174756f,-0.0487418f,-0.125419f},{-0.170022f,-0.0543234f,-0.128748f}, - {-0.165249f,-0.0599509f,-0.131812f},{-0.160447f,-0.0656136f,-0.134611f},{-0.155623f,-0.0713014f,-0.137145f}, - {-0.150787f,-0.0770041f,-0.139417f},{-0.136284f,-0.0941049f,-0.144688f},{-0.135953f,-0.0939075f,-0.144346f}, - {-0.112579f,-0.122056f,-0.148599f},{-0.108037f,-0.127554f,-0.148751f},{-0.262793f,0.0556542f,0.0775737f}, - {-0.260475f,0.0529209f,0.0481766f},{-0.259504f,0.0517763f,0.0407271f},{-0.258371f,0.0504394f,0.0332599f}, - {-0.257071f,0.048907f,0.0257867f},{-0.255604f,0.0471768f,0.0183202f},{-0.253967f,0.0452466f,0.0108731f}, - {-0.252159f,0.0431152f,0.00345877f},{-0.24322f,0.0325744f,-0.0255992f},{-0.24571f,0.0355104f,-0.0184523f}, - {-0.245217f,0.0353088f,-0.0182079f},{-0.240562f,0.029441f,-0.0326442f},{-0.23774f,0.0261129f,-0.0395738f}, - {-0.234756f,0.022594f,-0.0463744f},{-0.231613f,0.0188886f,-0.0530326f},{-0.221283f,0.00670759f,-0.0720252f}, - {-0.217557f,0.00231394f,-0.0779886f},{-0.2137f,-0.00223406f,-0.0837496f},{-0.196723f,-0.0218719f,-0.104145f}, - {-0.196495f,-0.0221414f,-0.103643f},{-0.192334f,-0.0270471f,-0.108749f},{-0.201415f,-0.0167191f,-0.0997217f}, - {-0.197108f,-0.0217972f,-0.10458f},{-0.19271f,-0.0269839f,-0.109195f},{-0.188227f,-0.0322691f,-0.113558f}, - {-0.183671f,-0.0376423f,-0.117667f},{-0.179048f,-0.0430927f,-0.121517f},{-0.164877f,-0.0598029f,-0.131488f}, - {-0.160081f,-0.0654575f,-0.134283f},{-0.155264f,-0.071137f,-0.136814f},{-0.150435f,-0.0768314f,-0.139083f}, - {-0.145602f,-0.0825309f,-0.141092f},{-0.140772f,-0.088226f,-0.142845f},{-0.107472f,-0.127075f,-0.147687f}, - {-0.112085f,-0.121672f,-0.147719f},{-0.112074f,-0.121685f,-0.147106f},{-0.112283f,-0.121818f,-0.148251f}, - {-0.107827f,-0.127376f,-0.148558f},{-0.262314f,0.055521f,0.0918925f},{-0.262262f,0.055408f,0.0776054f}, - {-0.260758f,0.0536344f,0.055677f},{-0.25995f,0.0526807f,0.0482734f},{-0.257465f,0.0497507f,0.0335395f}, - {-0.256553f,0.0486758f,0.0259331f},{-0.25785f,0.0502047f,0.0333897f},{-0.258981f,0.0515387f,0.0408405f}, - {-0.255089f,0.0469493f,0.0184831f},{-0.253456f,0.0450234f,0.0110526f},{-0.251652f,0.0428967f,0.00365461f}, - {-0.249678f,0.0405686f,-0.00369726f},{-0.247532f,0.0380391f,-0.0109894f},{-0.239741f,0.0288524f,-0.0320502f}, - {-0.237265f,0.0259322f,-0.0392827f},{-0.240081f,0.0292528f,-0.0323684f},{-0.242732f,0.0323793f,-0.025339f}, - {-0.234287f,0.022421f,-0.0460682f},{-0.231151f,0.0187238f,-0.0527117f},{-0.220554f,0.00622748f,-0.0712434f}, - {-0.217126f,0.00218583f,-0.0776124f},{-0.220844f,0.00656977f,-0.0716622f},{-0.224425f,0.010792f,-0.065521f}, - {-0.213277f,-0.00235208f,-0.0833607f},{-0.209305f,-0.00703577f,-0.088897f},{-0.205217f,-0.0118565f,-0.094212f}, - {-0.20102f,-0.0168051f,-0.0992973f},{-0.187862f,-0.0323206f,-0.113103f},{-0.183315f,-0.0376819f,-0.117203f}, - {-0.178703f,-0.0431203f,-0.121044f},{-0.164417f,-0.0599658f,-0.130423f},{-0.159778f,-0.0654355f,-0.133782f}, - {-0.164563f,-0.0597934f,-0.130993f},{-0.169318f,-0.0541866f,-0.127941f},{-0.154972f,-0.0711024f,-0.136307f}, - {-0.150153f,-0.0767842f,-0.138571f},{-0.14533f,-0.0824711f,-0.140576f},{-0.140511f,-0.0881536f,-0.142325f}, - {-0.116874f,-0.116404f,-0.146255f},{-0.126104f,-0.105141f,-0.145472f},{-0.107534f,-0.127127f,-0.148015f}, - {-0.107655f,-0.12723f,-0.14831f},{-0.261515f,0.0545271f,0.0704083f},{-0.261866f,0.0549406f,0.077642f}, - {-0.261017f,0.053939f,0.0631143f},{-0.260366f,0.0531716f,0.0557698f},{-0.259559f,0.0522203f,0.0483851f}, - {-0.258593f,0.0510812f,0.0409712f},{-0.256171f,0.0482257f,0.026102f},{-0.251283f,0.0424614f,0.00388058f}, - {-0.253082f,0.0445826f,0.0112596f},{-0.252945f,0.0440418f,0.011439f},{-0.254711f,0.0465036f,0.0186711f}, - {-0.249313f,0.0401392f,-0.00345247f},{-0.247174f,0.0376162f,-0.0107259f},{-0.244864f,0.0348929f,-0.017926f}, - {-0.242386f,0.0319709f,-0.0250388f},{-0.230858f,0.0174103f,-0.0518103f},{-0.230748f,0.0178679f,-0.0520204f}, - {-0.233974f,0.0210845f,-0.0452083f},{-0.236932f,0.0255403f,-0.0389468f},{-0.233962f,0.0220381f,-0.0457149f}, - {-0.230835f,0.0183503f,-0.0523413f},{-0.227554f,0.014482f,-0.0588132f},{-0.224125f,0.0104389f,-0.0651178f}, - {-0.209148f,-0.00818865f,-0.0877701f},{-0.209006f,-0.00776851f,-0.0880327f},{-0.213095f,-0.00353415f,-0.0822683f}, - {-0.216845f,0.00185478f,-0.0771783f},{-0.213007f,-0.00267152f,-0.0829118f},{-0.209045f,-0.00734323f,-0.088434f}, - {-0.204967f,-0.0121516f,-0.0937354f},{-0.200781f,-0.0170875f,-0.0988077f},{-0.183121f,-0.0379109f,-0.116668f}, - {-0.187656f,-0.0325633f,-0.112578f},{-0.187665f,-0.0329324f,-0.112123f},{-0.192117f,-0.0273033f,-0.108235f}, - {-0.178521f,-0.0433353f,-0.120499f},{-0.173864f,-0.0488263f,-0.12407f},{-0.169159f,-0.0543733f,-0.127378f}, - {-0.159644f,-0.0655934f,-0.133204f},{-0.145233f,-0.0825854f,-0.139981f},{-0.150044f,-0.0769131f,-0.137981f}, - {-0.150137f,-0.0771835f,-0.137469f},{-0.15485f,-0.0712458f,-0.135723f},{-0.140427f,-0.0882533f,-0.141725f}, - {-0.135631f,-0.0939077f,-0.143219f},{-0.130855f,-0.0995398f,-0.144466f},{-0.12625f,-0.105349f,-0.144944f}, - {-0.116707f,-0.116221f,-0.146786f},{-0.26136f,0.0539641f,0.0704561f},{-0.26171f,0.0543767f,0.0776737f}, - {-0.260862f,0.0533774f,0.0631783f},{-0.260213f,0.0526117f,0.0558501f},{-0.259408f,0.0516625f,0.0484819f}, - {-0.258444f,0.0505259f,0.0410845f},{-0.257318f,0.0491984f,0.0336694f},{-0.256028f,0.0476767f,0.0262484f}, - {-0.254571f,0.0459585f,0.018834f},{-0.25123f,0.0414326f,0.00420461f},{-0.249268f,0.039119f,-0.00310144f}, - {-0.249185f,0.0396083f,-0.00324031f},{-0.25115f,0.0419253f,0.00407642f},{-0.24705f,0.0370909f,-0.0104976f}, - {-0.244746f,0.0343737f,-0.0176816f},{-0.242273f,0.0314582f,-0.0247786f},{-0.239634f,0.0283466f,-0.0317744f}, - {-0.236832f,0.0250418f,-0.0386556f},{-0.233868f,0.0215475f,-0.0454087f},{-0.227474f,0.0140082f,-0.0584778f}, - {-0.224053f,0.00997407f,-0.0647685f},{-0.220489f,0.005772f,-0.0708804f},{-0.216789f,0.00140903f,-0.0768021f}, - {-0.212959f,-0.0031072f,-0.0825229f},{-0.204937f,-0.0125662f,-0.0933224f},{-0.20076f,-0.0174911f,-0.0983834f}, - {-0.196484f,-0.0225337f,-0.103208f},{-0.192116f,-0.0276842f,-0.10779f},{-0.183319f,-0.0386437f,-0.1159f}, - {-0.178736f,-0.0440482f,-0.119717f},{-0.17855f,-0.0436805f,-0.120026f},{-0.18314f,-0.0382681f,-0.116203f}, - {-0.173903f,-0.0491593f,-0.123589f},{-0.169209f,-0.0546939f,-0.12689f},{-0.164477f,-0.060274f,-0.129928f}, - {-0.159715f,-0.065889f,-0.132703f},{-0.154932f,-0.0715289f,-0.135216f},{-0.145337f,-0.0828432f,-0.139465f}, - {-0.140782f,-0.0888008f,-0.140865f},{-0.136005f,-0.0944344f,-0.142353f},{-0.135756f,-0.0941403f,-0.142696f}, - {-0.140541f,-0.0884985f,-0.141206f},{-0.13099f,-0.0997599f,-0.14394f},{-0.107533f,-0.127126f,-0.147023f}, - {-0.107472f,-0.127074f,-0.147351f},{-0.262065f,0.0541415f,0.0918925f},{-0.261775f,0.0538659f,0.0776945f}, - {-0.260928f,0.052868f,0.0632202f},{-0.26028f,0.0521034f,0.0559028f},{-0.261121f,0.0524856f,0.0632405f}, - {-0.259476f,0.0511556f,0.0485453f},{-0.258514f,0.0500207f,0.0411587f},{-0.25739f,0.0486951f,0.0337544f}, - {-0.256101f,0.0471756f,0.0263442f},{-0.254646f,0.0454599f,0.0189407f},{-0.253023f,0.043546f,0.0115564f}, - {-0.24504f,0.033523f,-0.0174445f},{-0.247339f,0.0362343f,-0.010276f},{-0.247136f,0.0366052f,-0.0103481f}, - {-0.244835f,0.033892f,-0.0175217f},{-0.242366f,0.0309808f,-0.0246083f},{-0.239731f,0.0278737f,-0.0315939f}, - {-0.236933f,0.0245738f,-0.038465f},{-0.227806f,0.0132016f,-0.0581524f},{-0.227589f,0.0135563f,-0.0582583f}, - {-0.231072f,0.0170529f,-0.051709f},{-0.224173f,0.00952803f,-0.0645398f},{-0.220614f,0.0053321f,-0.0706427f}, - {-0.21692f,0.000975486f,-0.0765558f},{-0.205317f,-0.0133153f,-0.0929216f},{-0.20115f,-0.0182295f,-0.0979716f}, - {-0.205085f,-0.0129793f,-0.093052f},{-0.200914f,-0.017897f,-0.0981056f},{-0.196644f,-0.0229323f,-0.102923f}, - {-0.192282f,-0.0280753f,-0.107499f},{-0.187838f,-0.0333159f,-0.111826f},{-0.174351f,-0.0498292f,-0.123123f}, - {-0.174096f,-0.049519f,-0.123274f},{-0.178987f,-0.0443622f,-0.119568f},{-0.169409f,-0.0550456f,-0.126571f}, - {-0.164684f,-0.0606175f,-0.129604f},{-0.159929f,-0.0662243f,-0.132375f},{-0.155153f,-0.071856f,-0.134885f}, - {-0.150364f,-0.0775023f,-0.137135f},{-0.145571f,-0.0831538f,-0.139127f},{-0.131246f,-0.100046f,-0.143596f}, - {-0.117445f,-0.116929f,-0.145739f},{-0.122103f,-0.111436f,-0.145199f},{-0.117151f,-0.116666f,-0.145907f}, - {-0.107652f,-0.127227f,-0.146724f},{-0.260473f,0.0517215f,0.0559281f},{-0.25967f,0.0507744f,0.0485758f}, - {-0.258708f,0.0496403f,0.0411945f},{-0.257585f,0.0483156f,0.0337954f},{-0.256297f,0.0467972f,0.0263905f}, - {-0.254843f,0.0450828f,0.0189921f},{-0.253221f,0.0431702f,0.0116131f},{-0.25143f,0.0410583f,0.00426646f}, - {-0.249469f,0.0387463f,-0.00303443f},{-0.242572f,0.0306138f,-0.0245261f},{-0.239939f,0.027509f,-0.0315068f}, - {-0.237143f,0.0242113f,-0.0383731f},{-0.234186f,0.0207246f,-0.0451116f},{-0.224392f,0.00917619f,-0.0644294f}, - {-0.220836f,0.00498322f,-0.0705281f},{-0.217144f,0.000629689f,-0.076437f},{-0.213322f,-0.00387677f,-0.0821454f}, - {-0.209377f,-0.00852799f,-0.0876434f},{-0.196882f,-0.0232612f,-0.102786f},{-0.192524f,-0.0284006f,-0.107358f}, - {-0.188082f,-0.0336375f,-0.111682f},{-0.183567f,-0.0389616f,-0.115753f},{-0.169667f,-0.0553518f,-0.126416f}, - {-0.164945f,-0.0609198f,-0.129448f},{-0.160193f,-0.0665227f,-0.132217f},{-0.15542f,-0.0721504f,-0.134725f}, - {-0.150635f,-0.0777928f,-0.136973f},{-0.145846f,-0.0834402f,-0.138964f},{-0.14106f,-0.0890833f,-0.140701f}, - {-0.136286f,-0.0947129f,-0.142188f},{-0.13153f,-0.10032f,-0.14343f},{-0.126801f,-0.105897f,-0.144432f}, - {-0.00563681f,-0.247569f,-0.0892991f},{-0.0097342f,-0.242737f,-0.0946258f},{-0.00976382f,-0.242323f,-0.0942128f}, - {-0.0275449f,-0.222933f,-0.114f},{-0.0230532f,-0.22823f,-0.109627f},{-0.0321114f,-0.217549f,-0.118117f}, - {-0.0367439f,-0.212086f,-0.121975f},{-0.0414333f,-0.206557f,-0.125571f},{-0.0461704f,-0.200971f,-0.128902f}, - {-0.0509464f,-0.19534f,-0.131968f},{-0.0557523f,-0.189673f,-0.134769f},{-0.041179f,-0.206247f,-0.125419f}, - {-0.0457129f,-0.200313f,-0.128429f},{-0.0409859f,-0.205887f,-0.125105f},{-0.0605794f,-0.183981f,-0.137305f}, - {-0.0654191f,-0.178274f,-0.139579f},{-0.0702631f,-0.172563f,-0.141592f},{-0.0799319f,-0.161162f,-0.144853f}, - {-0.0751032f,-0.166855f,-0.143349f},{-0.0847415f,-0.155491f,-0.146109f},{-0.0895249f,-0.14985f,-0.147122f}, - {-0.0942754f,-0.144249f,-0.147899f},{-0.103705f,-0.13313f,-0.146057f},{-0.0939843f,-0.143982f,-0.147731f}, - {-0.0892371f,-0.14958f,-0.146955f},{-0.094433f,-0.144063f,-0.145199f},{-0.0941223f,-0.143819f,-0.145366f}, - {-0.0990912f,-0.13857f,-0.145739f},{-0.0888286f,-0.149094f,-0.146081f},{-0.0842013f,-0.15493f,-0.145599f}, - {-0.0889744f,-0.149302f,-0.14661f},{-0.103104f,-0.132641f,-0.146574f},{-0.102907f,-0.132494f,-0.147105f}, - {-0.103401f,-0.132879f,-0.146225f},{-0.0937148f,-0.143713f,-0.147384f},{-0.102895f,-0.132508f,-0.147719f}, - {-0.103653f,-0.133192f,-0.148767f},{-0.103355f,-0.132933f,-0.148599f},{-0.0989867f,-0.138694f,-0.148445f}, - {-0.103072f,-0.132679f,-0.148251f},{-0.0935584f,-0.143517f,-0.146855f},{-0.0186452f,-0.233427f,-0.105003f}, - {-0.0143294f,-0.238516f,-0.100134f},{-0.0101144f,-0.243486f,-0.0950266f},{-0.00600817f,-0.248328f,-0.0896885f}, - {-0.00201866f,-0.253032f,-0.0841281f},{0.00184672f,-0.25759f,-0.0783547f},{0.00558095f,-0.261993f,-0.0723786f}, - {0.0128468f,-0.269951f,-0.059756f},{0.00951627f,-0.265436f,-0.0658715f},{0.0129617f,-0.269499f,-0.0595366f}, - {0.00917748f,-0.266234f,-0.0662105f},{0.0126303f,-0.270305f,-0.059862f},{0.0159338f,-0.274201f,-0.053345f}, - {0.0190832f,-0.277914f,-0.0466724f},{0.022074f,-0.281441f,-0.039857f},{0.0249026f,-0.284776f,-0.0329122f}, - {0.0275658f,-0.287916f,-0.0258517f},{0.0326757f,-0.292744f,-0.0112184f},{0.0325522f,-0.292219f,-0.01099f}, - {0.0348257f,-0.295279f,-0.00391029f},{0.0300611f,-0.290859f,-0.0186898f},{0.0323867f,-0.293601f,-0.0114399f}, - {0.0345413f,-0.296141f,-0.00411618f},{0.0365244f,-0.29848f,0.00326766f},{0.0383359f,-0.300616f,0.0106978f}, - {0.0399765f,-0.30255f,0.0181608f},{0.0414471f,-0.304284f,0.0256434f},{0.0427495f,-0.30582f,0.0331326f}, - {0.0440805f,-0.306779f,0.0406518f},{0.0438858f,-0.30716f,0.040616f},{0.042945f,-0.305441f,0.0331736f}, - {0.0448586f,-0.308307f,0.0480815f},{0.0476467f,-0.310397f,0.0847721f},{0.0472826f,-0.309588f,0.077605f}, - {0.04749f,-0.309833f,0.0847878f},{0.0460056f,-0.308462f,0.0704555f},{0.0465356f,-0.308707f,0.0704077f}, - {0.045508f,-0.307875f,0.0631775f},{0.0458644f,-0.308883f,0.0555431f},{0.0465193f,-0.309655f,0.0629336f}, - {0.0463263f,-0.310038f,0.0629134f},{0.0454915f,-0.308443f,0.0704868f},{0.0449947f,-0.307857f,0.0632194f}, - {0.046047f,-0.309098f,0.0848321f},{0.0464337f,-0.309168f,0.0918925f},{0.0465619f,-0.309118f,0.0848218f}, - {0.0464311f,-0.308584f,0.0630396f},{0.0470865f,-0.309737f,0.0703047f},{0.0465854f,-0.309146f,0.0629755f}, - {0.0456375f,-0.309225f,0.0848371f},{0.0460743f,-0.309186f,0.0918925f},{0.0457786f,-0.307815f,0.0556761f}, - {0.0459315f,-0.308375f,0.0555957f},{0.0449698f,-0.306861f,0.0482723f},{0.0457254f,-0.309296f,0.0918925f}, - {0.0456709f,-0.309265f,0.0555177f},{0.0471815f,-0.311046f,0.0775425f},{0.0468284f,-0.31063f,0.0702583f}, - {0.0470211f,-0.310247f,0.0702734f},{0.0473899f,-0.311292f,0.0847568f},{-0.0986923f,-0.138431f,-0.148277f}, - {-0.084457f,-0.155216f,-0.145943f},{-0.0796508f,-0.160883f,-0.144688f},{-0.0748255f,-0.166573f,-0.143185f}, - {-0.0699887f,-0.172276f,-0.141429f},{-0.0651481f,-0.177984f,-0.139417f},{-0.0603117f,-0.183687f,-0.137145f}, - {-0.055488f,-0.189375f,-0.134611f},{-0.0506855f,-0.195037f,-0.131812f},{-0.0459129f,-0.200665f,-0.128748f}, - {-0.0364929f,-0.211772f,-0.121826f},{-0.0318636f,-0.217231f,-0.117971f},{-0.0273004f,-0.222612f,-0.113856f}, - {-0.0228118f,-0.227904f,-0.109486f},{-0.0184068f,-0.233098f,-0.104866f},{-0.0140941f,-0.238184f,-0.1f}, - {-0.00988197f,-0.24315f,-0.0948962f},{-0.00577865f,-0.247989f,-0.0895618f},{-0.00179193f,-0.25269f,-0.0840052f}, - {0.00207075f,-0.257244f,-0.0782359f},{0.00580238f,-0.261644f,-0.072264f},{0.0093964f,-0.265882f,-0.0661002f}, - {0.016148f,-0.273843f,-0.0532437f},{0.0192952f,-0.277554f,-0.0465757f},{0.022284f,-0.281078f,-0.039765f}, - {0.0251106f,-0.284411f,-0.0328251f},{0.0277719f,-0.287549f,-0.0257695f},{0.0302654f,-0.29049f,-0.0186126f}, - {0.0325894f,-0.29323f,-0.0113678f},{0.0347425f,-0.295769f,-0.00404916f},{0.0367243f,-0.298105f,0.00332952f}, - {0.0385345f,-0.30024f,0.0107545f},{0.0401739f,-0.302173f,0.0182123f},{0.0416435f,-0.303906f,0.0256896f}, - {0.0450526f,-0.307926f,0.0481121f},{0.0451209f,-0.307419f,0.0481755f},{0.0475821f,-0.310908f,0.0847617f}, - {0.0473739f,-0.310663f,0.0775525f},{0.0476338f,-0.311036f,0.0918925f},{0.0474707f,-0.311354f,0.0918925f}, - {-0.0984159f,-0.138169f,-0.147929f},{-0.079402f,-0.160589f,-0.144345f},{-0.0745837f,-0.166271f,-0.142845f}, - {-0.0697539f,-0.171966f,-0.141092f},{-0.0649203f,-0.177665f,-0.139082f},{-0.060091f,-0.18336f,-0.136814f}, - {-0.0552742f,-0.189039f,-0.134283f},{-0.0504787f,-0.194694f,-0.131488f},{-0.031684f,-0.216855f,-0.117667f}, - {-0.0363066f,-0.211405f,-0.121517f},{-0.0362774f,-0.211059f,-0.121044f},{-0.0271274f,-0.222228f,-0.113559f}, - {-0.0226453f,-0.227513f,-0.109195f},{-0.0182467f,-0.2327f,-0.104581f},{-0.0139402f,-0.237778f,-0.0997223f}, - {-0.00165587f,-0.252263f,-0.0837506f},{0.00220122f,-0.256811f,-0.0779897f},{0.00592745f,-0.261204f,-0.0720263f}, - {0.0193066f,-0.276601f,-0.046069f},{0.0189819f,-0.276218f,-0.0457157f},{0.0222844f,-0.280112f,-0.0392833f}, - {0.0162581f,-0.273386f,-0.0530336f},{0.0194007f,-0.277091f,-0.0463752f},{0.0223852f,-0.28061f,-0.0395744f}, - {0.0252077f,-0.283938f,-0.0326445f},{0.0278652f,-0.287072f,-0.0255992f},{0.0303551f,-0.290008f,-0.0184526f}, - {0.0368046f,-0.297613f,0.00345771f},{0.0386122f,-0.299744f,0.0108719f},{0.0402492f,-0.301674f,0.0183189f}, - {0.0417167f,-0.303405f,0.0257854f},{0.0430163f,-0.304937f,0.0332586f},{0.0441501f,-0.306274f,0.0407259f}, - {0.0474388f,-0.310152f,0.0775733f},{0.046931f,-0.309174f,0.0703525f},{0.0477127f,-0.310676f,0.0918925f}, - {-0.0982492f,-0.137986f,-0.147398f},{-0.084066f,-0.15471f,-0.145073f},{-0.0792773f,-0.160357f,-0.143822f}, - {-0.0697475f,-0.171594f,-0.13998f},{-0.0648277f,-0.177395f,-0.138571f},{-0.0696506f,-0.171708f,-0.140576f}, - {-0.0744697f,-0.166025f,-0.142325f},{-0.0600091f,-0.183077f,-0.136307f},{-0.055203f,-0.188744f,-0.133782f}, - {-0.050418f,-0.194386f,-0.130993f},{-0.0456629f,-0.199993f,-0.127941f},{-0.0409464f,-0.205554f,-0.124624f}, - {-0.0273243f,-0.221616f,-0.112579f},{-0.0226464f,-0.227132f,-0.10875f},{-0.0271185f,-0.221859f,-0.113104f}, - {-0.031665f,-0.216498f,-0.117203f},{-0.0182575f,-0.232307f,-0.104146f},{-0.0139605f,-0.237374f,-0.0992979f}, - {-0.00197428f,-0.251508f,-0.0829128f},{0.00214517f,-0.256365f,-0.0776135f},{-0.00170337f,-0.251827f,-0.0833616f}, - {-0.00567551f,-0.247143f,-0.0888979f},{0.00586315f,-0.260749f,-0.0716633f},{0.00944402f,-0.264971f,-0.0655221f}, - {0.0128818f,-0.269025f,-0.0592012f},{0.0161709f,-0.272903f,-0.0527127f},{0.0251007f,-0.283433f,-0.0323688f}, - {0.0277523f,-0.286559f,-0.025339f},{0.0302367f,-0.289489f,-0.0182083f},{0.0363027f,-0.296641f,0.00387953f}, - {0.0384755f,-0.299203f,0.0110514f},{0.0366719f,-0.297077f,0.00365355f},{0.0346974f,-0.294749f,-0.00369814f}, - {0.0401089f,-0.301129f,0.0184819f},{0.0415731f,-0.302856f,0.0259318f},{0.0428699f,-0.304385f,0.0333884f}, - {0.0440012f,-0.305719f,0.0408392f},{0.0460369f,-0.308119f,0.0631135f},{0.0476948f,-0.310316f,0.0918925f}, - {-0.0935941f,-0.143475f,-0.146243f},{-0.0982728f,-0.137958f,-0.146785f},{-0.0888764f,-0.149038f,-0.145472f}, - {-0.084126f,-0.154639f,-0.144466f},{-0.0793496f,-0.160271f,-0.143218f},{-0.0745543f,-0.165926f,-0.141725f}, - {-0.064937f,-0.177266f,-0.137981f},{-0.0505642f,-0.194213f,-0.130423f},{-0.0553369f,-0.188586f,-0.133204f}, - {-0.0556402f,-0.188608f,-0.132703f},{-0.0601307f,-0.182933f,-0.135723f},{-0.0458212f,-0.199806f,-0.127378f}, - {-0.0411168f,-0.205353f,-0.12407f},{-0.0364598f,-0.210844f,-0.120499f},{-0.0318592f,-0.216269f,-0.116668f}, - {-0.0150205f,-0.237091f,-0.0981062f},{-0.0145949f,-0.237006f,-0.098384f},{-0.0192907f,-0.232056f,-0.102924f}, - {-0.0228636f,-0.226876f,-0.108236f},{-0.018486f,-0.232038f,-0.103644f},{-0.0142f,-0.237092f,-0.0988083f}, - {-0.0100141f,-0.242028f,-0.0937362f},{-0.00593625f,-0.246836f,-0.0884349f},{0.00823812f,-0.264516f,-0.0645409f}, - {0.00869775f,-0.264471f,-0.0647696f},{0.00467957f,-0.26032f,-0.0706439f},{0.00186441f,-0.256034f,-0.0771794f}, - {0.00557286f,-0.260407f,-0.0712445f},{0.00914456f,-0.264618f,-0.065119f},{0.0125735f,-0.268661f,-0.0588143f}, - {0.0158543f,-0.27253f,-0.0523423f},{0.0274059f,-0.286151f,-0.0250388f},{0.0247611f,-0.283032f,-0.0320505f}, - {0.0242796f,-0.282844f,-0.0317747f},{0.0219521f,-0.27972f,-0.0389474f},{0.029884f,-0.289073f,-0.0179263f}, - {0.0321935f,-0.291796f,-0.0107265f},{0.0343333f,-0.294319f,-0.00345334f},{0.0381017f,-0.298763f,0.0112584f}, - {0.0424848f,-0.303931f,0.0335382f},{0.0411914f,-0.302406f,0.0261007f},{0.0406733f,-0.302175f,0.0262471f}, - {0.0397309f,-0.300684f,0.0186698f},{0.0436132f,-0.305261f,0.04097f},{0.0445793f,-0.306401f,0.048384f}, - {0.0453861f,-0.307352f,0.0557688f},{0.0468862f,-0.309121f,0.0776416f},{0.0470932f,-0.309365f,0.084806f}, - {0.0473856f,-0.309657f,0.0918925f},{0.0475847f,-0.309968f,0.0918925f},{-0.0938123f,-0.143598f,-0.145713f}, - {-0.0984806f,-0.138093f,-0.146254f},{-0.0891051f,-0.149148f,-0.144944f},{-0.0843652f,-0.154737f,-0.14394f}, - {-0.0795995f,-0.160356f,-0.142695f},{-0.0748149f,-0.165998f,-0.141205f},{-0.0700188f,-0.171653f,-0.139464f}, - {-0.0652189f,-0.177313f,-0.137469f},{-0.0604233f,-0.182968f,-0.135216f},{-0.0512508f,-0.194371f,-0.129604f}, - {-0.0465253f,-0.199943f,-0.126571f},{-0.0461457f,-0.199803f,-0.12689f},{-0.0508781f,-0.194223f,-0.129928f}, - {-0.0414517f,-0.205338f,-0.123589f},{-0.0368051f,-0.210817f,-0.120026f},{-0.0322148f,-0.216229f,-0.116203f}, - {-0.0276899f,-0.221565f,-0.112124f},{-0.0232392f,-0.226813f,-0.10779f},{-0.0188713f,-0.231963f,-0.103209f}, - {-0.0104183f,-0.241931f,-0.0933231f},{-0.0063495f,-0.246728f,-0.0880336f},{-0.00239635f,-0.25139f,-0.0825239f}, - {0.0014338f,-0.255906f,-0.0768032f},{0.00513399f,-0.260269f,-0.0708815f},{0.0121191f,-0.268505f,-0.0584789f}, - {0.0153925f,-0.272365f,-0.0520214f},{0.0185132f,-0.276045f,-0.0454095f},{0.0214768f,-0.279539f,-0.0386562f}, - {0.0264323f,-0.28597f,-0.0246083f},{0.0289012f,-0.288881f,-0.017522f},{0.029391f,-0.288871f,-0.017682f}, - {0.0269185f,-0.285956f,-0.0247786f},{0.0316954f,-0.291588f,-0.0104982f},{0.0338304f,-0.294106f,-0.00324118f}, - {0.0357955f,-0.296423f,0.00407537f},{0.0375905f,-0.298539f,0.0114378f},{0.0392161f,-0.300456f,0.0188328f}, - {0.0419638f,-0.303696f,0.0336681f},{0.0425799f,-0.30501f,0.0411575f},{0.0435424f,-0.306145f,0.0485442f}, - {0.0440537f,-0.30616f,0.0484808f},{0.0430897f,-0.305024f,0.0410833f},{0.0448586f,-0.30711f,0.0558492f}, - {0.0463554f,-0.308875f,0.0776733f},{0.0467942f,-0.309247f,0.0918925f},{0.0471187f,-0.309415f,0.0918925f}, - {-0.0987838f,-0.138323f,-0.145907f},{-0.0894219f,-0.149362f,-0.144598f},{-0.084689f,-0.154943f,-0.143596f}, - {-0.0897359f,-0.149602f,-0.144431f},{-0.0799302f,-0.160554f,-0.142353f},{-0.0751526f,-0.166187f,-0.140865f}, - {-0.0703635f,-0.171834f,-0.139127f},{-0.0655707f,-0.177486f,-0.137134f},{-0.0607821f,-0.183132f,-0.134885f}, - {-0.056006f,-0.188764f,-0.132375f},{-0.0375491f,-0.211137f,-0.119568f},{-0.0421857f,-0.20567f,-0.123123f}, - {-0.0418382f,-0.20547f,-0.123274f},{-0.0371983f,-0.210941f,-0.119717f},{-0.0326147f,-0.216345f,-0.1159f}, - {-0.0280965f,-0.221673f,-0.111826f},{-0.0236522f,-0.226913f,-0.107499f},{-0.0112194f,-0.242183f,-0.0929223f}, - {-0.01085f,-0.242009f,-0.0930527f},{-0.015387f,-0.237269f,-0.0979722f},{-0.00678716f,-0.2468f,-0.087771f}, - {-0.00283979f,-0.251454f,-0.0822693f},{0.000984771f,-0.255964f,-0.0765569f},{0.0112692f,-0.2687f,-0.0581535f}, - {0.0145356f,-0.272552f,-0.0517099f},{0.0116545f,-0.268545f,-0.0582594f},{0.0149231f,-0.272399f,-0.0518113f}, - {0.0180392f,-0.276073f,-0.0452091f},{0.0209985f,-0.279563f,-0.0384656f},{0.0237972f,-0.282863f,-0.0315942f}, - {0.0308032f,-0.291734f,-0.0102766f},{0.0312022f,-0.291594f,-0.0103487f},{0.0285038f,-0.289022f,-0.0174448f}, - {0.0333341f,-0.294108f,-0.0031023f},{0.0352963f,-0.296422f,0.00420356f},{0.0370887f,-0.298535f,0.0115553f}, - {0.0387119f,-0.300449f,0.0189394f},{0.040167f,-0.302165f,0.026343f},{0.0414556f,-0.303684f,0.0337531f}, - {0.0443462f,-0.307093f,0.0559018f},{0.0454314f,-0.308982f,0.0777041f},{0.0450823f,-0.308571f,0.0705019f}, - {0.0458408f,-0.308855f,0.077694f},{-0.0850063f,-0.155178f,-0.143429f},{-0.0802509f,-0.160786f,-0.142188f}, - {-0.0754766f,-0.166415f,-0.140701f},{-0.0706909f,-0.172058f,-0.138964f},{-0.0659015f,-0.177706f,-0.136973f}, - {-0.0611162f,-0.183348f,-0.134725f},{-0.0563435f,-0.188976f,-0.132217f},{-0.0515917f,-0.194579f,-0.129448f}, - {-0.0468695f,-0.200147f,-0.126416f},{-0.0329688f,-0.216538f,-0.115753f},{-0.0284537f,-0.221862f,-0.111682f}, - {-0.0240126f,-0.227098f,-0.107358f},{-0.0196542f,-0.232238f,-0.102786f},{-0.00715942f,-0.246971f,-0.0876442f}, - {-0.00321483f,-0.251622f,-0.0821464f},{0.000607029f,-0.256128f,-0.0764381f},{0.00429921f,-0.260482f,-0.0705292f}, - {0.00785526f,-0.264675f,-0.0644306f},{0.0176495f,-0.276224f,-0.0451124f},{0.0206066f,-0.279711f,-0.0383737f}, - {0.0234034f,-0.283008f,-0.0315071f},{0.0260366f,-0.286113f,-0.0245261f},{0.0329336f,-0.294246f,-0.0030353f}, - {0.0348943f,-0.296558f,0.00426541f},{0.0366855f,-0.29867f,0.0116119f},{0.0383075f,-0.300582f,0.0189909f}, - {0.0397616f,-0.302297f,0.0263892f},{0.0410493f,-0.303815f,0.0337941f},{0.0421728f,-0.30514f,0.0411933f}, - {0.0431347f,-0.306274f,0.0485748f},{0.0439379f,-0.307221f,0.0559272f},{0.0445859f,-0.307985f,0.0632397f}, - {-0.0391526f,0.0783052f,0.0434179f},{-0.0388614f,0.0783204f,0.0340958f},{-0.0394464f,0.0783208f,0.0340958f}, - {-0.0400182f,0.0784426f,0.0340958f},{-0.0396981f,0.0783592f,0.0434179f},{-0.0402232f,0.0785175f,0.0434179f}, - {-0.041025f,0.0790247f,0.0340958f},{-0.0407075f,0.0787756f,0.0434179f},{-0.0405514f,0.0786801f,0.0340958f}, - {-0.0414158f,0.0794592f,0.0340958f},{-0.0411317f,0.0791238f,0.0434179f},{-0.0414795f,0.079548f,0.0434179f}, - {-0.0417077f,0.0799651f,0.0340958f},{-0.041888f,0.08052f,0.0340958f},{-0.0417379f,0.0800316f,0.0434179f}, - {-0.0419492f,0.0811018f,0.0434179f},{-0.0418971f,0.0805563f,0.0434179f},{-0.0386063f,0.0783596f,0.0434179f}, - {-0.0382892f,0.0784417f,0.0340958f},{-0.0380818f,0.0785201f,0.0434179f},{-0.037599f,0.0787792f,0.0434179f}, - {-0.0377553f,0.0786794f,0.0340958f},{-0.0371757f,0.0791268f,0.0434179f},{-0.0372831f,0.0790223f,0.0340958f}, - {-0.0368907f,0.0794572f,0.0340958f},{-0.0368282f,0.0795501f,0.0434179f},{-0.0365701f,0.0800331f,0.0434179f}, - {-0.036598f,0.0799637f,0.0340958f},{-0.0364108f,0.0805572f,0.0434179f},{-0.0364177f,0.0805185f,0.0340958f}, - {-0.036356f,0.0811018f,0.0434179f},{-0.0391526f,0.0811018f,0.0450982f},{-0.035689f,0.0842218f,0.0359602f}, - {-0.035116f,0.0834323f,0.0359602f},{-0.0353809f,0.08384f,0.0340958f},{-0.0391526f,0.0857628f,0.0359602f}, - {-0.0391526f,0.0857628f,0.0340958f},{-0.0398869f,0.0857044f,0.0340958f},{-0.0349993f,0.0832175f,0.0340958f}, - {-0.0347708f,0.0826925f,0.0359602f},{-0.0347209f,0.0825456f,0.0340958f},{-0.0345623f,0.0819115f,0.0359602f}, - {-0.03455f,0.0818361f,0.0340958f},{-0.0344918f,0.0811018f,0.0359602f},{-0.0344916f,0.0811018f,0.0340958f}, - {-0.0358568f,0.0843977f,0.0340958f},{-0.0364173f,0.0848756f,0.0340958f},{-0.0364146f,0.084874f,0.0359602f}, - {-0.0370399f,0.0852564f,0.0340958f},{-0.0372574f,0.0853604f,0.0359602f},{-0.0377117f,0.0855347f,0.0340958f}, - {-0.0381842f,0.0856612f,0.0359602f},{-0.0384218f,0.085705f,0.0340958f},{-0.0410494f,0.0853588f,0.0359602f}, - {-0.0401233f,0.0856603f,0.0359602f},{-0.0405964f,0.0855335f,0.0340958f},{-0.0424484f,0.0843977f,0.0340958f}, - {-0.0418918f,0.0848727f,0.0359602f},{-0.0418907f,0.0848735f,0.0340958f},{-0.0412683f,0.0852551f,0.0340958f}, - {-0.0435327f,0.0826912f,0.0359602f},{-0.0431892f,0.0834324f,0.0359602f},{-0.0433072f,0.0832145f,0.0340958f}, - {-0.0426166f,0.0842194f,0.0359602f},{-0.0429264f,0.0838371f,0.0340958f},{-0.0437552f,0.0818361f,0.0340958f}, - {-0.0437427f,0.0819107f,0.0359602f},{-0.0435855f,0.0825427f,0.0340958f},{-0.0438136f,0.0811018f,0.0340958f}, - {-0.0438134f,0.0811018f,0.0359602f},{-0.0391526f,0.0838984f,0.062062f},{-0.0388614f,0.0838832f,0.071384f}, - {-0.0394464f,0.0838828f,0.071384f},{-0.0400182f,0.083761f,0.071384f},{-0.0396981f,0.0838444f,0.062062f}, - {-0.0402232f,0.0836861f,0.062062f},{-0.041025f,0.0831789f,0.071384f},{-0.0407075f,0.083428f,0.062062f}, - {-0.0405514f,0.0835236f,0.071384f},{-0.0414158f,0.0827444f,0.071384f},{-0.0411317f,0.0830798f,0.062062f}, - {-0.0414795f,0.0826556f,0.062062f},{-0.0417077f,0.0822385f,0.071384f},{-0.041888f,0.0816837f,0.071384f}, - {-0.0417379f,0.082172f,0.062062f},{-0.0419492f,0.0811018f,0.071384f},{-0.0419492f,0.0811018f,0.062062f}, - {-0.0418971f,0.0816473f,0.062062f},{-0.0386063f,0.083844f,0.062062f},{-0.0382892f,0.0837619f,0.071384f}, - {-0.0380818f,0.0836835f,0.062062f},{-0.037599f,0.0834244f,0.062062f},{-0.0377553f,0.0835242f,0.071384f}, - {-0.0371757f,0.0830768f,0.062062f},{-0.0372831f,0.0831813f,0.071384f},{-0.0368907f,0.0827465f,0.071384f}, - {-0.0368282f,0.0826535f,0.062062f},{-0.0365701f,0.0821705f,0.062062f},{-0.036598f,0.0822399f,0.071384f}, - {-0.0364108f,0.0816464f,0.062062f},{-0.0364177f,0.0816851f,0.071384f},{-0.036356f,0.0811018f,0.071384f}, - {-0.036356f,0.0811018f,0.062062f},{-0.0391526f,0.0811018f,0.0603816f},{-0.035689f,0.0779818f,0.0695196f}, - {-0.035116f,0.0787713f,0.0695196f},{-0.0353809f,0.0783636f,0.071384f},{-0.0391526f,0.0764408f,0.0695196f}, - {-0.0391526f,0.0764408f,0.071384f},{-0.0398869f,0.0764992f,0.071384f},{-0.0349993f,0.0789861f,0.071384f}, - {-0.0347708f,0.0795111f,0.0695196f},{-0.0347209f,0.079658f,0.071384f},{-0.0345623f,0.0802921f,0.0695196f}, - {-0.03455f,0.0803675f,0.071384f},{-0.0344918f,0.0811018f,0.0695196f},{-0.0344916f,0.0811018f,0.071384f}, - {-0.0358568f,0.077806f,0.071384f},{-0.0364173f,0.077328f,0.071384f},{-0.0364146f,0.0773296f,0.0695196f}, - {-0.0370399f,0.0769472f,0.071384f},{-0.0372574f,0.0768432f,0.0695196f},{-0.0377117f,0.0766689f,0.071384f}, - {-0.0381842f,0.0765424f,0.0695196f},{-0.0384218f,0.0764986f,0.071384f},{-0.0410494f,0.0768448f,0.0695196f}, - {-0.0401233f,0.0765433f,0.0695196f},{-0.0405964f,0.0766702f,0.071384f},{-0.0424484f,0.077806f,0.071384f}, - {-0.0418918f,0.0773309f,0.0695196f},{-0.0418907f,0.0773301f,0.071384f},{-0.0412683f,0.0769485f,0.071384f}, - {-0.0435327f,0.0795124f,0.0695196f},{-0.0431892f,0.0787712f,0.0695196f},{-0.0433072f,0.0789891f,0.071384f}, - {-0.0426166f,0.0779842f,0.0695196f},{-0.0429264f,0.0783665f,0.071384f},{-0.0437552f,0.0803675f,0.071384f}, - {-0.0437427f,0.0802929f,0.0695196f},{-0.0435855f,0.079661f,0.071384f},{-0.0438136f,0.0811018f,0.071384f}, - {-0.0438134f,0.0811018f,0.0695196f},{-0.0337705f,0.0811018f,0.0359602f},{-0.0351159f,0.0834324f,0.0695196f}, - {-0.0364616f,0.0857628f,0.0359602f},{-0.0364616f,0.0857628f,0.0695196f},{-0.0337705f,0.0811018f,0.0695196f}, - {-0.0388588f,0.0838828f,0.0340958f},{-0.0394438f,0.0838832f,0.0340958f},{-0.0405499f,0.0835242f,0.0340958f}, - {-0.040016f,0.0837619f,0.0340958f},{-0.0345484f,0.0803724f,0.0340958f},{-0.0347196f,0.0796609f,0.0340958f}, - {-0.0365975f,0.0822385f,0.0340958f},{-0.0364172f,0.0816837f,0.0340958f},{-0.0368894f,0.0827444f,0.0340958f}, - {-0.0372802f,0.0831789f,0.0340958f},{-0.0377538f,0.0835236f,0.0340958f},{-0.038287f,0.083761f,0.0340958f}, - {-0.0358645f,0.0778104f,0.0340958f},{-0.0364144f,0.0773296f,0.0340958f},{-0.0377132f,0.0766684f,0.0340958f}, - {-0.0370378f,0.0769479f,0.0340958f},{-0.038424f,0.076498f,0.0340958f},{-0.0410221f,0.0831813f,0.0340958f}, - {-0.0414831f,0.0834323f,0.0340958f},{-0.0398819f,0.0764984f,0.0340958f},{-0.0391526f,0.0764408f,0.0340958f}, - {-0.0412686f,0.0769492f,0.0340958f},{-0.0418918f,0.0773311f,0.0340958f},{-0.0405931f,0.0766694f,0.0340958f}, - {-0.0417072f,0.0822399f,0.0340958f},{-0.0414145f,0.0827465f,0.0340958f},{-0.0424471f,0.0778077f,0.0340958f}, - {-0.0433038f,0.0789871f,0.0340958f},{-0.0435854f,0.0796621f,0.0340958f},{-0.0437559f,0.0803733f,0.0340958f}, - {-0.0418875f,0.0816851f,0.0340958f},{-0.042921f,0.0783646f,0.0340958f},{-0.0349967f,0.0789819f,0.0340958f}, - {-0.0353925f,0.07837f,0.0340958f},{-0.0445347f,0.0811018f,0.0359602f},{-0.0431893f,0.0787712f,0.0359602f}, - {-0.0418436f,0.0764408f,0.0359602f},{-0.0418436f,0.0764408f,0.0695196f},{-0.0445347f,0.0811018f,0.0695196f}, - {-0.0364616f,0.0764408f,0.0359602f},{-0.0351159f,0.0787712f,0.0359602f},{-0.0364616f,0.0764408f,0.0695196f}, - {-0.0391526f,0.0764412f,0.0359602f},{-0.0391526f,0.0857625f,0.0695196f},{-0.0418436f,0.0857628f,0.0359602f}, - {-0.0418436f,0.0857628f,0.0695196f},{-0.0364144f,0.084874f,0.071384f},{-0.0358645f,0.0843932f,0.071384f}, - {-0.0437559f,0.0818303f,0.071384f},{-0.0435854f,0.0825415f,0.071384f},{-0.0370378f,0.0852557f,0.071384f}, - {-0.0377132f,0.0855352f,0.071384f},{-0.038424f,0.0857056f,0.071384f},{-0.0391526f,0.0857628f,0.071384f}, - {-0.0405931f,0.0855343f,0.071384f},{-0.0412686f,0.0852544f,0.071384f},{-0.0398819f,0.0857052f,0.071384f}, - {-0.0418918f,0.0848725f,0.071384f},{-0.0353925f,0.0838337f,0.071384f},{-0.0345484f,0.0818312f,0.071384f}, - {-0.0424471f,0.0843959f,0.071384f},{-0.0364172f,0.08052f,0.071384f},{-0.0368221f,0.0787713f,0.071384f}, - {-0.0368894f,0.0794592f,0.071384f},{-0.040016f,0.0784417f,0.071384f},{-0.0394438f,0.0783204f,0.071384f}, - {-0.038287f,0.0784426f,0.071384f},{-0.0410221f,0.0790223f,0.071384f},{-0.0405499f,0.0786794f,0.071384f}, - {-0.0417072f,0.0799637f,0.071384f},{-0.0414145f,0.0794572f,0.071384f},{-0.0388588f,0.0783208f,0.071384f}, - {-0.0418875f,0.0805185f,0.071384f},{-0.0365975f,0.0799651f,0.071384f},{-0.0377538f,0.0786801f,0.071384f}, - {-0.0433038f,0.0832165f,0.071384f},{-0.0347196f,0.0825428f,0.071384f},{-0.0349967f,0.0832217f,0.071384f}, - {-0.042921f,0.083839f,0.071384f},{-0.0372802f,0.0790247f,0.071384f},{-0.0431893f,0.0834324f,0.0695196f}, - {-0.0345623f,0.081909f,0.0695196f},{-0.0356893f,0.0842209f,0.0695196f},{-0.0347719f,0.0826889f,0.0695196f}, - {-0.0381833f,0.0856608f,0.0695196f},{-0.0364121f,0.0848714f,0.0695196f},{-0.0372548f,0.0853584f,0.0695196f}, - {-0.041893f,0.0848726f,0.0695196f},{-0.041049f,0.08536f,0.0695196f},{-0.0401215f,0.0856611f,0.0695196f}, - {-0.0426157f,0.0842217f,0.0695196f},{-0.0435351f,0.0826902f,0.0695196f},{-0.0437434f,0.0819096f,0.0695196f}, - {-0.0417086f,0.0799637f,0.062062f},{-0.041416f,0.0794571f,0.062062f},{-0.0418896f,0.08052f,0.062062f}, - {-0.0410244f,0.0790222f,0.062062f},{-0.0405506f,0.0786785f,0.062062f},{-0.0400156f,0.0784417f,0.062062f}, - {-0.0394436f,0.0783205f,0.062062f},{-0.0388585f,0.078321f,0.062062f},{-0.0377533f,0.078683f,0.062062f}, - {-0.0382866f,0.0784441f,0.062062f},{-0.0368906f,0.0794606f,0.062062f},{-0.0372812f,0.0790267f,0.062062f}, - {-0.0364182f,0.0805216f,0.062062f},{-0.0365988f,0.0799663f,0.062062f},{-0.0345623f,0.0802946f,0.0359602f}, - {-0.035689f,0.077983f,0.0359602f},{-0.0347719f,0.0795147f,0.0359602f},{-0.0381819f,0.0765431f,0.0359602f}, - {-0.0364115f,0.0773327f,0.0359602f},{-0.0372538f,0.0768457f,0.0359602f},{-0.0418924f,0.0773306f,0.0359602f}, - {-0.041048f,0.0768432f,0.0359602f},{-0.0401201f,0.0765423f,0.0359602f},{-0.0426154f,0.0779817f,0.0359602f}, - {-0.0435351f,0.0795134f,0.0359602f},{-0.0437434f,0.080294f,0.0359602f},{-0.0417086f,0.0822399f,0.0434179f}, - {-0.041416f,0.0827465f,0.0434179f},{-0.0418896f,0.0816836f,0.0434179f},{-0.0410244f,0.0831814f,0.0434179f}, - {-0.0405506f,0.0835251f,0.0434179f},{-0.0400156f,0.0837619f,0.0434179f},{-0.0394436f,0.0838831f,0.0434179f}, - {-0.0388585f,0.0838826f,0.0434179f},{-0.0377533f,0.0835206f,0.0434179f},{-0.0382866f,0.0837595f,0.0434179f}, - {-0.0368906f,0.082743f,0.0434179f},{-0.0372812f,0.0831769f,0.0434179f},{-0.0364182f,0.081682f,0.0434179f}, - {-0.0365988f,0.0822373f,0.0434179f},{0.0389901f,-0.0783099f,0.0434179f},{0.0387003f,-0.0783421f,0.0340958f}, - {0.0392843f,-0.0783085f,0.0340958f},{0.0398623f,-0.0783968f,0.0340958f},{0.0395378f,-0.0783322f,0.0434179f}, - {0.0400712f,-0.0784597f,0.0434179f},{0.0409011f,-0.0789195f,0.0340958f},{0.0405697f,-0.0786892f,0.0434179f}, - {0.0404083f,-0.0786029f,0.0340958f},{0.0413165f,-0.0793305f,0.0340958f},{0.0410134f,-0.0790122f,0.0434179f}, - {0.0413853f,-0.0794154f,0.0434179f},{0.0416374f,-0.0798186f,0.0340958f},{0.0418496f,-0.080362f,0.0340958f}, - {0.0416714f,-0.0798832f,0.0434179f},{0.0419445f,-0.0809393f,0.0340958f},{0.0419445f,-0.0809393f,0.0434179f}, - {0.0418608f,-0.0803977f,0.0434179f},{0.0384479f,-0.078396f,0.0434179f},{0.0381361f,-0.0784964f,0.0340958f}, - {0.0379336f,-0.0785867f,0.0434179f},{0.0374667f,-0.0788734f,0.0434179f},{0.0376169f,-0.0787647f,0.0340958f}, - {0.0370643f,-0.0792449f,0.0434179f},{0.0371654f,-0.0791345f,0.0340958f},{0.036799f,-0.0795913f,0.0340958f}, - {0.036742f,-0.0796878f,0.0434179f},{0.0365123f,-0.080185f,0.0434179f},{0.0365362f,-0.080114f,0.0340958f}, - {0.0363838f,-0.0807174f,0.0434179f},{0.0363884f,-0.0806783f,0.0340958f},{0.0363607f,-0.0812643f,0.0340958f}, - {0.0363607f,-0.0812643f,0.0434179f},{0.0391526f,-0.0811018f,0.0450982f},{0.0358762f,-0.0844178f,0.0359602f}, - {0.0352583f,-0.0836629f,0.0359602f},{0.0355463f,-0.0840545f,0.0340958f},{0.0394234f,-0.085755f,0.0359602f}, - {0.0394234f,-0.085755f,0.0340958f},{0.0401531f,-0.085654f,0.0340958f},{0.0351292f,-0.0834552f,0.0340958f}, - {0.0348706f,-0.0829444f,0.0359602f},{0.0348123f,-0.0828006f,0.0340958f},{0.0346171f,-0.0821768f,0.0359602f}, - {0.0346004f,-0.0821023f,0.0340958f},{0.0344997f,-0.0813726f,0.0359602f},{0.0344994f,-0.0813726f,0.0340958f}, - {0.0360538f,-0.0845836f,0.0340958f},{0.0366412f,-0.0850281f,0.0340958f},{0.0366384f,-0.0850267f,0.0359602f}, - {0.0372848f,-0.0853721f,0.0340958f},{0.037508f,-0.0854633f,0.0359602f},{0.0379717f,-0.0856109f,0.0340958f}, - {0.0384507f,-0.0857098f,0.0359602f},{0.0386904f,-0.0857397f,0.0340958f},{0.0412936f,-0.0852414f,0.0359602f}, - {0.0403865f,-0.0855962f,0.0359602f},{0.0408514f,-0.0854421f,0.0340958f},{0.0426344f,-0.0842006f,0.0340958f}, - {0.0421063f,-0.0847072f,0.0359602f},{0.0421053f,-0.0847081f,0.0340958f},{0.041506f,-0.0851252f,0.0340958f}, - {0.0436176f,-0.082434f,0.0359602f},{0.0433178f,-0.0831939f,0.0359602f},{0.0434229f,-0.0829696f,0.0340958f}, - {0.0427919f,-0.0840129f,0.0359602f},{0.0430789f,-0.0836132f,0.0340958f},{0.0437901f,-0.0815675f,0.0340958f}, - {0.0437819f,-0.0816426f,0.0359602f},{0.0436617f,-0.0822827f,0.0340958f},{0.0438057f,-0.080831f,0.0340958f}, - {0.0438055f,-0.080831f,0.0359602f},{0.0393151f,-0.0838937f,0.062062f},{0.0390235f,-0.0838954f,0.071384f}, - {0.0396075f,-0.083861f,0.071384f},{0.0401713f,-0.0837062f,0.071384f},{0.0398565f,-0.0838081f,0.062062f}, - {0.0403715f,-0.0836196f,0.062062f},{0.0411425f,-0.0830666f,0.071384f},{0.04084f,-0.0833337f,0.062062f}, - {0.0406897f,-0.0834382f,0.071384f},{0.0415074f,-0.0826102f,0.071384f},{0.0412433f,-0.0829615f,0.062062f}, - {0.0415658f,-0.0825178f,0.062062f},{0.0417695f,-0.0820881f,0.071384f},{0.0419172f,-0.0815237f,0.071384f}, - {0.0417958f,-0.08202f,0.062062f},{0.0419445f,-0.0809393f,0.071384f},{0.0419445f,-0.0809393f,0.062062f}, - {0.0419241f,-0.081487f,0.062062f},{0.0387666f,-0.0838711f,0.062062f},{0.0384452f,-0.0838076f,0.071384f}, - {0.0382336f,-0.0837413f,0.062062f},{0.0377365f,-0.0835108f,0.062062f},{0.0378984f,-0.0836013f,0.071384f}, - {0.0372938f,-0.0831884f,0.062062f},{0.0374071f,-0.0832864f,0.071384f},{0.0369901f,-0.0828751f,0.071384f}, - {0.0369223f,-0.0827859f,0.062062f},{0.0366365f,-0.0823187f,0.062062f},{0.0366685f,-0.0823864f,0.071384f}, - {0.0364471f,-0.0818048f,0.062062f},{0.0364562f,-0.0818431f,0.071384f},{0.0363607f,-0.0812643f,0.071384f}, - {0.0363607f,-0.0812643f,0.062062f},{0.0391526f,-0.0811018f,0.0603816f},{0.0355136f,-0.0781883f,0.0695196f}, - {0.0349875f,-0.0790097f,0.0695196f},{0.0352282f,-0.0785874f,0.071384f},{0.0388818f,-0.0764487f,0.0695196f}, - {0.0388818f,-0.0764487f,0.071384f},{0.0396183f,-0.0764643f,0.071384f},{0.0348834f,-0.079231f,0.071384f}, - {0.0346858f,-0.0797684f,0.0695196f},{0.0346446f,-0.0799179f,0.071384f},{0.034523f,-0.0805601f,0.0695196f}, - {0.0345151f,-0.0806361f,0.071384f},{0.0344996f,-0.0813726f,0.0695196f},{0.0344994f,-0.0813726f,0.071384f}, - {0.0356708f,-0.078003f,0.071384f},{0.0362027f,-0.0774933f,0.071384f},{0.0362001f,-0.0774951f,0.0695196f}, - {0.0368021f,-0.077077f,0.071384f},{0.0370131f,-0.0769605f,0.0695196f},{0.0374566f,-0.0767601f,0.071384f}, - {0.0379209f,-0.0766064f,0.0695196f},{0.0381555f,-0.0765489f,0.071384f},{0.0407989f,-0.0767418f,0.0695196f}, - {0.0398569f,-0.0764946f,0.0695196f},{0.0403365f,-0.0765938f,0.071384f},{0.0422514f,-0.07762f,0.071384f}, - {0.0416681f,-0.0771781f,0.0695196f},{0.041667f,-0.0771774f,0.071384f},{0.0410234f,-0.0768326f,0.071384f}, - {0.0434329f,-0.0792607f,0.0695196f},{0.043047f,-0.0785407f,0.0695196f},{0.0431774f,-0.0787513f,0.071384f}, - {0.0424296f,-0.0777882f,0.0695196f},{0.0427611f,-0.0781519f,0.071384f},{0.0437048f,-0.0801013f,0.071384f}, - {0.0436879f,-0.0800276f,0.0695196f},{0.0434943f,-0.0794058f,0.071384f},{0.0438057f,-0.080831f,0.071384f}, - {0.0438056f,-0.080831f,0.0695196f},{0.0337796f,-0.0814145f,0.0359602f},{0.0352581f,-0.083663f,0.0695196f}, - {0.0367369f,-0.0859113f,0.0359602f},{0.0367369f,-0.0859113f,0.0695196f},{0.0337796f,-0.0814145f,0.0695196f}, - {0.0390208f,-0.0838951f,0.0340958f},{0.0396049f,-0.0838616f,0.0340958f},{0.0406883f,-0.0834389f,0.0340958f}, - {0.0401691f,-0.0837073f,0.0340958f},{0.0345138f,-0.0806411f,0.0340958f},{0.0346434f,-0.0799208f,0.0340958f}, - {0.0366678f,-0.082385f,0.0340958f},{0.0364556f,-0.0818416f,0.0340958f},{0.0369886f,-0.0828732f,0.0340958f}, - {0.037404f,-0.0832841f,0.0340958f},{0.0378969f,-0.0836007f,0.0340958f},{0.0384429f,-0.0838068f,0.0340958f}, - {0.0356789f,-0.078007f,0.0340958f},{0.0361998f,-0.0774951f,0.0340958f},{0.0374581f,-0.0767596f,0.0340958f}, - {0.0368f,-0.0770778f,0.0340958f},{0.0381577f,-0.0765482f,0.0340958f},{0.0411398f,-0.0830691f,0.0340958f}, - {0.0416146f,-0.083293f,0.0340958f},{0.0396132f,-0.0764638f,0.0340958f},{0.0388818f,-0.0764487f,0.0340958f}, - {0.0410238f,-0.0768332f,0.0340958f},{0.0416681f,-0.0771784f,0.0340958f},{0.0403331f,-0.0765932f,0.0340958f}, - {0.041769f,-0.0820896f,0.0340958f},{0.0415062f,-0.0826123f,0.0340958f},{0.0422501f,-0.0776219f,0.0340958f}, - {0.043174f,-0.0787495f,0.0340958f},{0.0434943f,-0.079407f,0.0340958f},{0.0437058f,-0.0801071f,0.0340958f}, - {0.0419168f,-0.0815253f,0.0340958f},{0.0427556f,-0.0781503f,0.0340958f},{0.0348806f,-0.0792269f,0.0340958f}, - {0.0352401f,-0.078593f,0.0340958f},{0.0445256f,-0.0807891f,0.0359602f},{0.0430471f,-0.0785406f,0.0359602f}, - {0.0415683f,-0.0762923f,0.0359602f},{0.0415683f,-0.0762923f,0.0695196f},{0.0445256f,-0.0807891f,0.0695196f}, - {0.0361953f,-0.076605f,0.0359602f},{0.0349873f,-0.0790097f,0.0359602f},{0.0361953f,-0.076605f,0.0695196f}, - {0.0388818f,-0.0764491f,0.0359602f},{0.0394234f,-0.0857546f,0.0695196f},{0.0421099f,-0.0855986f,0.0359602f}, - {0.0421099f,-0.0855986f,0.0695196f},{0.0366381f,-0.0850267f,0.071384f},{0.0360613f,-0.0845787f,0.071384f}, - {0.0437905f,-0.0815617f,0.071384f},{0.0436616f,-0.0822815f,0.071384f},{0.0372827f,-0.0853716f,0.071384f}, - {0.0379732f,-0.0856113f,0.071384f},{0.0386927f,-0.0857401f,0.071384f},{0.0394234f,-0.085755f,0.071384f}, - {0.0408481f,-0.0854431f,0.071384f},{0.0415063f,-0.0851245f,0.071384f},{0.0401481f,-0.0856551f,0.071384f}, - {0.0421062f,-0.084707f,0.071384f},{0.0355575f,-0.0840475f,0.071384f},{0.0345985f,-0.0820975f,0.071384f}, - {0.0426329f,-0.0841989f,0.071384f},{0.036388f,-0.0806799f,0.071384f},{0.0366906f,-0.0789106f,0.071384f}, - {0.0367978f,-0.0795934f,0.071384f},{0.03986f,-0.078396f,0.071384f},{0.0392817f,-0.0783082f,0.071384f}, - {0.0381339f,-0.0784974f,0.071384f},{0.0408981f,-0.0789173f,0.071384f},{0.0404068f,-0.0786023f,0.071384f}, - {0.0416367f,-0.0798172f,0.071384f},{0.0413151f,-0.0793285f,0.071384f},{0.0386977f,-0.0783426f,0.071384f}, - {0.041849f,-0.0803606f,0.071384f},{0.0365357f,-0.0801155f,0.071384f},{0.0376155f,-0.0787654f,0.071384f}, - {0.0434197f,-0.0829717f,0.071384f},{0.0348108f,-0.0827979f,0.071384f},{0.0351269f,-0.0834596f,0.071384f}, - {0.0430736f,-0.0836154f,0.071384f},{0.0371627f,-0.079137f,0.071384f},{0.0433179f,-0.0831939f,0.0695196f}, - {0.034617f,-0.0821743f,0.0695196f},{0.0358763f,-0.0844168f,0.0695196f},{0.0348715f,-0.0829407f,0.0695196f}, - {0.0384498f,-0.0857094f,0.0695196f},{0.0366357f,-0.0850242f,0.0695196f},{0.0375053f,-0.0854614f,0.0695196f}, - {0.0421074f,-0.084707f,0.0695196f},{0.0412932f,-0.0852426f,0.0695196f},{0.0403848f,-0.0855971f,0.0695196f}, - {0.0427911f,-0.0840152f,0.0695196f},{0.0436199f,-0.0824329f,0.0695196f},{0.0437826f,-0.0816416f,0.0695196f}, - {0.0416382f,-0.0798171f,0.062062f},{0.0413167f,-0.0793284f,0.062062f},{0.0418511f,-0.080362f,0.062062f}, - {0.0409005f,-0.0789169f,0.062062f},{0.0404074f,-0.0786014f,0.062062f},{0.0398596f,-0.078396f,0.062062f}, - {0.0392815f,-0.0783083f,0.062062f},{0.0386975f,-0.0783428f,0.062062f},{0.0376151f,-0.0787684f,0.062062f}, - {0.0381337f,-0.0784989f,0.062062f},{0.036799f,-0.0795948f,0.062062f},{0.0371638f,-0.0791389f,0.062062f}, - {0.0363891f,-0.0806814f,0.062062f},{0.0365371f,-0.0801166f,0.062062f},{0.0345232f,-0.0805627f,0.0359602f}, - {0.0355137f,-0.0781895f,0.0359602f},{0.0346871f,-0.0797719f,0.0359602f},{0.0379187f,-0.0766072f,0.0359602f}, - {0.0361971f,-0.0774983f,0.0359602f},{0.0370098f,-0.0769632f,0.0359602f},{0.0416687f,-0.0771778f,0.0359602f}, - {0.0407974f,-0.0767403f,0.0359602f},{0.0398536f,-0.0764937f,0.0359602f},{0.0424283f,-0.0777858f,0.0359602f}, - {0.0434354f,-0.0792615f,0.0359602f},{0.0436887f,-0.0800286f,0.0359602f},{0.0417704f,-0.0820895f,0.0434179f}, - {0.0415078f,-0.0826122f,0.0434179f},{0.0419187f,-0.0815236f,0.0434179f},{0.0411421f,-0.0830692f,0.0434179f}, - {0.040689f,-0.0834398f,0.0434179f},{0.0401687f,-0.0837073f,0.0434179f},{0.0396047f,-0.0838615f,0.0434179f}, - {0.0390206f,-0.083895f,0.0434179f},{0.0378962f,-0.0835978f,0.0434179f},{0.0384425f,-0.0838053f,0.0434179f}, - {0.0369897f,-0.0828716f,0.0434179f},{0.0374049f,-0.0832822f,0.0434179f},{0.0364565f,-0.0818399f,0.0434179f}, - {0.036669f,-0.0823837f,0.0434179f},{-0.0391526f,-0.0783052f,0.0434179f},{-0.0394438f,-0.0783204f,0.0340958f}, - {-0.0388588f,-0.0783208f,0.0340958f},{-0.038287f,-0.0784426f,0.0340958f},{-0.0386071f,-0.0783592f,0.0434179f}, - {-0.038082f,-0.0785175f,0.0434179f},{-0.0372802f,-0.0790247f,0.0340958f},{-0.0375977f,-0.0787756f,0.0434179f}, - {-0.0377538f,-0.0786801f,0.0340958f},{-0.0368894f,-0.0794592f,0.0340958f},{-0.0371735f,-0.0791238f,0.0434179f}, - {-0.0368257f,-0.079548f,0.0434179f},{-0.0365975f,-0.0799651f,0.0340958f},{-0.0364172f,-0.08052f,0.0340958f}, - {-0.0365672f,-0.0800316f,0.0434179f},{-0.036356f,-0.0811018f,0.0434179f},{-0.0364081f,-0.0805563f,0.0434179f}, - {-0.0396989f,-0.0783596f,0.0434179f},{-0.040016f,-0.0784417f,0.0340958f},{-0.0402234f,-0.0785201f,0.0434179f}, - {-0.0407062f,-0.0787792f,0.0434179f},{-0.0405499f,-0.0786794f,0.0340958f},{-0.0411295f,-0.0791268f,0.0434179f}, - {-0.0410221f,-0.0790223f,0.0340958f},{-0.0414145f,-0.0794572f,0.0340958f},{-0.041477f,-0.0795501f,0.0434179f}, - {-0.0417351f,-0.0800331f,0.0434179f},{-0.0417072f,-0.0799637f,0.0340958f},{-0.0418944f,-0.0805572f,0.0434179f}, - {-0.0418875f,-0.0805185f,0.0340958f},{-0.0419492f,-0.0811018f,0.0434179f},{-0.0391526f,-0.0811018f,0.0450982f}, - {-0.0426161f,-0.0842218f,0.0359602f},{-0.0431891f,-0.0834323f,0.0359602f},{-0.0429243f,-0.08384f,0.0340958f}, - {-0.0391526f,-0.0857628f,0.0359602f},{-0.0391526f,-0.0857628f,0.0340958f},{-0.0384183f,-0.0857044f,0.0340958f}, - {-0.0433059f,-0.0832175f,0.0340958f},{-0.0435344f,-0.0826925f,0.0359602f},{-0.0435842f,-0.0825456f,0.0340958f}, - {-0.0437429f,-0.0819115f,0.0359602f},{-0.0437552f,-0.0818361f,0.0340958f},{-0.0438134f,-0.0811018f,0.0359602f}, - {-0.0438136f,-0.0811018f,0.0340958f},{-0.0424484f,-0.0843976f,0.0340958f},{-0.0418879f,-0.0848756f,0.0340958f}, - {-0.0418906f,-0.084874f,0.0359602f},{-0.0412653f,-0.0852564f,0.0340958f},{-0.0410478f,-0.0853604f,0.0359602f}, - {-0.0405934f,-0.0855347f,0.0340958f},{-0.040121f,-0.0856612f,0.0359602f},{-0.0398834f,-0.085705f,0.0340958f}, - {-0.0372558f,-0.0853588f,0.0359602f},{-0.0381819f,-0.0856603f,0.0359602f},{-0.0377088f,-0.0855335f,0.0340958f}, - {-0.0358568f,-0.0843976f,0.0340958f},{-0.0364134f,-0.0848727f,0.0359602f},{-0.0364144f,-0.0848735f,0.0340958f}, - {-0.0370369f,-0.0852551f,0.0340958f},{-0.0347725f,-0.0826912f,0.0359602f},{-0.0351159f,-0.0834324f,0.0359602f}, - {-0.034998f,-0.0832145f,0.0340958f},{-0.0356886f,-0.0842194f,0.0359602f},{-0.0353788f,-0.0838371f,0.0340958f}, - {-0.03455f,-0.0818361f,0.0340958f},{-0.0345625f,-0.0819107f,0.0359602f},{-0.0347197f,-0.0825427f,0.0340958f}, - {-0.0344916f,-0.0811018f,0.0340958f},{-0.0344918f,-0.0811018f,0.0359602f},{-0.0391526f,-0.0838984f,0.062062f}, - {-0.0394438f,-0.0838832f,0.071384f},{-0.0388588f,-0.0838828f,0.071384f},{-0.038287f,-0.083761f,0.071384f}, - {-0.0386071f,-0.0838444f,0.062062f},{-0.038082f,-0.0836861f,0.062062f},{-0.0372802f,-0.0831789f,0.071384f}, - {-0.0375977f,-0.083428f,0.062062f},{-0.0377538f,-0.0835236f,0.071384f},{-0.0368894f,-0.0827444f,0.071384f}, - {-0.0371735f,-0.0830798f,0.062062f},{-0.0368257f,-0.0826556f,0.062062f},{-0.0365975f,-0.0822385f,0.071384f}, - {-0.0364172f,-0.0816837f,0.071384f},{-0.0365672f,-0.082172f,0.062062f},{-0.036356f,-0.0811018f,0.071384f}, - {-0.036356f,-0.0811018f,0.062062f},{-0.0364081f,-0.0816473f,0.062062f},{-0.0396989f,-0.083844f,0.062062f}, - {-0.040016f,-0.0837619f,0.071384f},{-0.0402234f,-0.0836835f,0.062062f},{-0.0407062f,-0.0834244f,0.062062f}, - {-0.0405499f,-0.0835242f,0.071384f},{-0.0411295f,-0.0830768f,0.062062f},{-0.0410221f,-0.0831813f,0.071384f}, - {-0.0414145f,-0.0827465f,0.071384f},{-0.041477f,-0.0826535f,0.062062f},{-0.0417351f,-0.0821705f,0.062062f}, - {-0.0417072f,-0.0822399f,0.071384f},{-0.0418944f,-0.0816464f,0.062062f},{-0.0418875f,-0.0816851f,0.071384f}, - {-0.0419492f,-0.0811018f,0.071384f},{-0.0419492f,-0.0811018f,0.062062f},{-0.0391526f,-0.0811018f,0.0603816f}, - {-0.0426161f,-0.0779818f,0.0695196f},{-0.0431891f,-0.0787713f,0.0695196f},{-0.0429243f,-0.0783636f,0.071384f}, - {-0.0391526f,-0.0764408f,0.0695196f},{-0.0391526f,-0.0764408f,0.071384f},{-0.0384183f,-0.0764992f,0.071384f}, - {-0.0433059f,-0.0789861f,0.071384f},{-0.0435344f,-0.0795111f,0.0695196f},{-0.0435842f,-0.079658f,0.071384f}, - {-0.0437429f,-0.0802921f,0.0695196f},{-0.0437552f,-0.0803675f,0.071384f},{-0.0438134f,-0.0811018f,0.0695196f}, - {-0.0438136f,-0.0811018f,0.071384f},{-0.0424484f,-0.077806f,0.071384f},{-0.0418879f,-0.077328f,0.071384f}, - {-0.0418906f,-0.0773296f,0.0695196f},{-0.0412653f,-0.0769472f,0.071384f},{-0.0410478f,-0.0768432f,0.0695196f}, - {-0.0405934f,-0.0766689f,0.071384f},{-0.040121f,-0.0765424f,0.0695196f},{-0.0398834f,-0.0764986f,0.071384f}, - {-0.0372558f,-0.0768448f,0.0695196f},{-0.0381819f,-0.0765433f,0.0695196f},{-0.0377088f,-0.0766702f,0.071384f}, - {-0.0358568f,-0.077806f,0.071384f},{-0.0364134f,-0.0773309f,0.0695196f},{-0.0364144f,-0.0773301f,0.071384f}, - {-0.0370369f,-0.0769485f,0.071384f},{-0.0347725f,-0.0795124f,0.0695196f},{-0.0351159f,-0.0787712f,0.0695196f}, - {-0.034998f,-0.0789891f,0.071384f},{-0.0356886f,-0.0779842f,0.0695196f},{-0.0353788f,-0.0783665f,0.071384f}, - {-0.03455f,-0.0803675f,0.071384f},{-0.0345625f,-0.0802929f,0.0695196f},{-0.0347197f,-0.079661f,0.071384f}, - {-0.0344916f,-0.0811018f,0.071384f},{-0.0344918f,-0.0811018f,0.0695196f},{-0.0445347f,-0.0811018f,0.0359602f}, - {-0.0431893f,-0.0834324f,0.0695196f},{-0.0418436f,-0.0857628f,0.0359602f},{-0.0418436f,-0.0857628f,0.0695196f}, - {-0.0445347f,-0.0811018f,0.0695196f},{-0.0394464f,-0.0838828f,0.0340958f},{-0.0388614f,-0.0838832f,0.0340958f}, - {-0.0377553f,-0.0835242f,0.0340958f},{-0.0382892f,-0.0837619f,0.0340958f},{-0.0437568f,-0.0803724f,0.0340958f}, - {-0.0435856f,-0.0796609f,0.0340958f},{-0.0417077f,-0.0822385f,0.0340958f},{-0.041888f,-0.0816837f,0.0340958f}, - {-0.0414158f,-0.0827444f,0.0340958f},{-0.041025f,-0.0831789f,0.0340958f},{-0.0405514f,-0.0835236f,0.0340958f}, - {-0.0400182f,-0.083761f,0.0340958f},{-0.0424407f,-0.0778104f,0.0340958f},{-0.0418908f,-0.0773296f,0.0340958f}, - {-0.040592f,-0.0766684f,0.0340958f},{-0.0412674f,-0.0769479f,0.0340958f},{-0.0398812f,-0.076498f,0.0340958f}, - {-0.0372831f,-0.0831813f,0.0340958f},{-0.0368221f,-0.0834323f,0.0340958f},{-0.0384233f,-0.0764984f,0.0340958f}, - {-0.0391526f,-0.0764408f,0.0340958f},{-0.0370366f,-0.0769492f,0.0340958f},{-0.0364134f,-0.0773311f,0.0340958f}, - {-0.0377121f,-0.0766694f,0.0340958f},{-0.036598f,-0.0822399f,0.0340958f},{-0.0368907f,-0.0827465f,0.0340958f}, - {-0.0358581f,-0.0778077f,0.0340958f},{-0.0350014f,-0.0789871f,0.0340958f},{-0.0347198f,-0.0796621f,0.0340958f}, - {-0.0345493f,-0.0803733f,0.0340958f},{-0.0364177f,-0.0816851f,0.0340958f},{-0.0353842f,-0.0783646f,0.0340958f}, - {-0.0433085f,-0.0789819f,0.0340958f},{-0.0429127f,-0.07837f,0.0340958f},{-0.0337705f,-0.0811018f,0.0359602f}, - {-0.0351159f,-0.0787712f,0.0359602f},{-0.0364616f,-0.0764408f,0.0359602f},{-0.0364616f,-0.0764408f,0.0695196f}, - {-0.0337705f,-0.0811018f,0.0695196f},{-0.0418436f,-0.0764408f,0.0359602f},{-0.0431893f,-0.0787712f,0.0359602f}, - {-0.0418436f,-0.0764408f,0.0695196f},{-0.0391526f,-0.0764412f,0.0359602f},{-0.0391526f,-0.0857625f,0.0695196f}, - {-0.0364616f,-0.0857628f,0.0359602f},{-0.0364616f,-0.0857628f,0.0695196f},{-0.0418908f,-0.084874f,0.071384f}, - {-0.0424407f,-0.0843932f,0.071384f},{-0.0345493f,-0.0818303f,0.071384f},{-0.0347198f,-0.0825415f,0.071384f}, - {-0.0412674f,-0.0852557f,0.071384f},{-0.040592f,-0.0855352f,0.071384f},{-0.0398812f,-0.0857056f,0.071384f}, - {-0.0391526f,-0.0857628f,0.071384f},{-0.0377121f,-0.0855343f,0.071384f},{-0.0370366f,-0.0852544f,0.071384f}, - {-0.0384233f,-0.0857052f,0.071384f},{-0.0364134f,-0.0848725f,0.071384f},{-0.0429127f,-0.0838337f,0.071384f}, - {-0.0437568f,-0.0818312f,0.071384f},{-0.0358581f,-0.0843959f,0.071384f},{-0.041888f,-0.08052f,0.071384f}, - {-0.0414831f,-0.0787713f,0.071384f},{-0.0414158f,-0.0794592f,0.071384f},{-0.0382892f,-0.0784417f,0.071384f}, - {-0.0388614f,-0.0783204f,0.071384f},{-0.0400182f,-0.0784426f,0.071384f},{-0.0372831f,-0.0790223f,0.071384f}, - {-0.0377553f,-0.0786794f,0.071384f},{-0.036598f,-0.0799637f,0.071384f},{-0.0368907f,-0.0794572f,0.071384f}, - {-0.0394464f,-0.0783208f,0.071384f},{-0.0364177f,-0.0805185f,0.071384f},{-0.0417077f,-0.0799651f,0.071384f}, - {-0.0405514f,-0.0786801f,0.071384f},{-0.0350014f,-0.0832165f,0.071384f},{-0.0435856f,-0.0825428f,0.071384f}, - {-0.0433085f,-0.0832217f,0.071384f},{-0.0353842f,-0.083839f,0.071384f},{-0.041025f,-0.0790247f,0.071384f}, - {-0.0351159f,-0.0834324f,0.0695196f},{-0.0437429f,-0.081909f,0.0695196f},{-0.0426159f,-0.0842209f,0.0695196f}, - {-0.0435333f,-0.0826889f,0.0695196f},{-0.0401218f,-0.0856608f,0.0695196f},{-0.0418931f,-0.0848714f,0.0695196f}, - {-0.0410504f,-0.0853584f,0.0695196f},{-0.0364122f,-0.0848726f,0.0695196f},{-0.0372562f,-0.08536f,0.0695196f}, - {-0.0381837f,-0.0856611f,0.0695196f},{-0.0356895f,-0.0842217f,0.0695196f},{-0.0347701f,-0.0826902f,0.0695196f}, - {-0.0345618f,-0.0819096f,0.0695196f},{-0.0365965f,-0.0799637f,0.062062f},{-0.0368892f,-0.0794571f,0.062062f}, - {-0.0364156f,-0.08052f,0.062062f},{-0.0372807f,-0.0790222f,0.062062f},{-0.0377546f,-0.0786785f,0.062062f}, - {-0.0382896f,-0.0784417f,0.062062f},{-0.0388616f,-0.0783205f,0.062062f},{-0.0394467f,-0.078321f,0.062062f}, - {-0.0405519f,-0.078683f,0.062062f},{-0.0400186f,-0.0784441f,0.062062f},{-0.0414146f,-0.0794606f,0.062062f}, - {-0.041024f,-0.0790267f,0.062062f},{-0.041887f,-0.0805216f,0.062062f},{-0.0417064f,-0.0799663f,0.062062f}, - {-0.0437429f,-0.0802946f,0.0359602f},{-0.0426161f,-0.077983f,0.0359602f},{-0.0435333f,-0.0795147f,0.0359602f}, - {-0.0401233f,-0.0765431f,0.0359602f},{-0.0418937f,-0.0773327f,0.0359602f},{-0.0410514f,-0.0768457f,0.0359602f}, - {-0.0364128f,-0.0773306f,0.0359602f},{-0.0372572f,-0.0768432f,0.0359602f},{-0.0381851f,-0.0765422f,0.0359602f}, - {-0.0356898f,-0.0779817f,0.0359602f},{-0.0347701f,-0.0795134f,0.0359602f},{-0.0345618f,-0.080294f,0.0359602f}, - {-0.0365965f,-0.0822399f,0.0434179f},{-0.0368892f,-0.0827465f,0.0434179f},{-0.0364156f,-0.0816836f,0.0434179f}, - {-0.0372807f,-0.0831814f,0.0434179f},{-0.0377546f,-0.0835251f,0.0434179f},{-0.0382896f,-0.0837619f,0.0434179f}, - {-0.0388616f,-0.0838831f,0.0434179f},{-0.0394467f,-0.0838826f,0.0434179f},{-0.0405519f,-0.0835206f,0.0434179f}, - {-0.0400186f,-0.0837595f,0.0434179f},{-0.0414146f,-0.082743f,0.0434179f},{-0.041024f,-0.0831769f,0.0434179f}, - {-0.041887f,-0.081682f,0.0434179f},{-0.0417064f,-0.0822373f,0.0434179f},{0.0391526f,0.0838984f,0.0434179f}, - {0.0388614f,0.0838832f,0.0340958f},{0.0394464f,0.0838828f,0.0340958f},{0.0400182f,0.083761f,0.0340958f}, - {0.0396981f,0.0838444f,0.0434179f},{0.0402232f,0.0836861f,0.0434179f},{0.041025f,0.0831789f,0.0340958f}, - {0.0407075f,0.083428f,0.0434179f},{0.0405514f,0.0835236f,0.0340958f},{0.0414158f,0.0827444f,0.0340958f}, - {0.0411317f,0.0830798f,0.0434179f},{0.0414795f,0.0826556f,0.0434179f},{0.0417077f,0.0822385f,0.0340958f}, - {0.041888f,0.0816837f,0.0340958f},{0.0417379f,0.082172f,0.0434179f},{0.0419492f,0.0811018f,0.0434179f}, - {0.0418971f,0.0816473f,0.0434179f},{0.0386063f,0.083844f,0.0434179f},{0.0382892f,0.0837619f,0.0340958f}, - {0.0380818f,0.0836835f,0.0434179f},{0.037599f,0.0834244f,0.0434179f},{0.0377553f,0.0835242f,0.0340958f}, - {0.0371757f,0.0830768f,0.0434179f},{0.0372831f,0.0831813f,0.0340958f},{0.0368907f,0.0827465f,0.0340958f}, - {0.0368282f,0.0826535f,0.0434179f},{0.0365701f,0.0821705f,0.0434179f},{0.036598f,0.0822399f,0.0340958f}, - {0.0364108f,0.0816464f,0.0434179f},{0.0364177f,0.0816851f,0.0340958f},{0.036356f,0.0811018f,0.0434179f}, - {0.0391526f,0.0811018f,0.0450982f},{0.035689f,0.0779818f,0.0359602f},{0.035116f,0.0787713f,0.0359602f}, - {0.0353809f,0.0783636f,0.0340958f},{0.0391526f,0.0764408f,0.0359602f},{0.0391526f,0.0764408f,0.0340958f}, - {0.0398869f,0.0764992f,0.0340958f},{0.0349993f,0.0789861f,0.0340958f},{0.0347708f,0.0795111f,0.0359602f}, - {0.0347209f,0.079658f,0.0340958f},{0.0345623f,0.0802921f,0.0359602f},{0.03455f,0.0803675f,0.0340958f}, - {0.0344918f,0.0811018f,0.0359602f},{0.0344916f,0.0811018f,0.0340958f},{0.0358568f,0.077806f,0.0340958f}, - {0.0364173f,0.077328f,0.0340958f},{0.0364146f,0.0773296f,0.0359602f},{0.0370399f,0.0769472f,0.0340958f}, - {0.0372574f,0.0768432f,0.0359602f},{0.0377117f,0.0766689f,0.0340958f},{0.0381842f,0.0765424f,0.0359602f}, - {0.0384218f,0.0764986f,0.0340958f},{0.0410494f,0.0768448f,0.0359602f},{0.0401233f,0.0765433f,0.0359602f}, - {0.0405964f,0.0766702f,0.0340958f},{0.0424484f,0.077806f,0.0340958f},{0.0418918f,0.0773309f,0.0359602f}, - {0.0418907f,0.0773301f,0.0340958f},{0.0412683f,0.0769485f,0.0340958f},{0.0435327f,0.0795124f,0.0359602f}, - {0.0431892f,0.0787712f,0.0359602f},{0.0433072f,0.0789891f,0.0340958f},{0.0426166f,0.0779842f,0.0359602f}, - {0.0429264f,0.0783665f,0.0340958f},{0.0437552f,0.0803675f,0.0340958f},{0.0437427f,0.0802929f,0.0359602f}, - {0.0435855f,0.079661f,0.0340958f},{0.0438136f,0.0811018f,0.0340958f},{0.0438134f,0.0811018f,0.0359602f}, - {0.0391526f,0.0783052f,0.062062f},{0.0388614f,0.0783204f,0.071384f},{0.0394464f,0.0783208f,0.071384f}, - {0.0400182f,0.0784426f,0.071384f},{0.0396981f,0.0783592f,0.062062f},{0.0402232f,0.0785175f,0.062062f}, - {0.041025f,0.0790247f,0.071384f},{0.0407075f,0.0787756f,0.062062f},{0.0405514f,0.0786801f,0.071384f}, - {0.0414158f,0.0794592f,0.071384f},{0.0411317f,0.0791238f,0.062062f},{0.0414795f,0.079548f,0.062062f}, - {0.0417077f,0.0799651f,0.071384f},{0.041888f,0.08052f,0.071384f},{0.0417379f,0.0800316f,0.062062f}, - {0.0419492f,0.0811018f,0.071384f},{0.0419492f,0.0811018f,0.062062f},{0.0418971f,0.0805563f,0.062062f}, - {0.0386063f,0.0783596f,0.062062f},{0.0382892f,0.0784417f,0.071384f},{0.0380818f,0.0785201f,0.062062f}, - {0.037599f,0.0787792f,0.062062f},{0.0377553f,0.0786794f,0.071384f},{0.0371757f,0.0791268f,0.062062f}, - {0.0372831f,0.0790223f,0.071384f},{0.0368907f,0.0794572f,0.071384f},{0.0368282f,0.0795501f,0.062062f}, - {0.0365701f,0.0800331f,0.062062f},{0.036598f,0.0799637f,0.071384f},{0.0364108f,0.0805572f,0.062062f}, - {0.0364177f,0.0805185f,0.071384f},{0.036356f,0.0811018f,0.071384f},{0.036356f,0.0811018f,0.062062f}, - {0.0391526f,0.0811018f,0.0603816f},{0.035689f,0.0842218f,0.0695196f},{0.035116f,0.0834323f,0.0695196f}, - {0.0353809f,0.08384f,0.071384f},{0.0391526f,0.0857628f,0.0695196f},{0.0391526f,0.0857628f,0.071384f}, - {0.0398869f,0.0857044f,0.071384f},{0.0349993f,0.0832175f,0.071384f},{0.0347708f,0.0826925f,0.0695196f}, - {0.0347209f,0.0825456f,0.071384f},{0.0345623f,0.0819115f,0.0695196f},{0.03455f,0.0818361f,0.071384f}, - {0.0344918f,0.0811018f,0.0695196f},{0.0344916f,0.0811018f,0.071384f},{0.0358568f,0.0843977f,0.071384f}, - {0.0364173f,0.0848756f,0.071384f},{0.0364146f,0.084874f,0.0695196f},{0.0370399f,0.0852564f,0.071384f}, - {0.0372574f,0.0853604f,0.0695196f},{0.0377117f,0.0855347f,0.071384f},{0.0381842f,0.0856612f,0.0695196f}, - {0.0384218f,0.085705f,0.071384f},{0.0410494f,0.0853588f,0.0695196f},{0.0401233f,0.0856603f,0.0695196f}, - {0.0405964f,0.0855335f,0.071384f},{0.0424484f,0.0843977f,0.071384f},{0.0418918f,0.0848727f,0.0695196f}, - {0.0418907f,0.0848735f,0.071384f},{0.0412683f,0.0852551f,0.071384f},{0.0435327f,0.0826912f,0.0695196f}, - {0.0431892f,0.0834324f,0.0695196f},{0.0433072f,0.0832145f,0.071384f},{0.0426166f,0.0842194f,0.0695196f}, - {0.0429264f,0.0838371f,0.071384f},{0.0437552f,0.0818361f,0.071384f},{0.0437427f,0.0819107f,0.0695196f}, - {0.0435855f,0.0825427f,0.071384f},{0.0438136f,0.0811018f,0.071384f},{0.0438134f,0.0811018f,0.0695196f}, - {0.0337705f,0.0811018f,0.0359602f},{0.0351159f,0.0787712f,0.0695196f},{0.0364616f,0.0764408f,0.0359602f}, - {0.0364616f,0.0764408f,0.0695196f},{0.0337705f,0.0811018f,0.0695196f},{0.0388588f,0.0783208f,0.0340958f}, - {0.0394438f,0.0783204f,0.0340958f},{0.0405499f,0.0786794f,0.0340958f},{0.040016f,0.0784417f,0.0340958f}, - {0.0345484f,0.0818312f,0.0340958f},{0.0347196f,0.0825428f,0.0340958f},{0.0365975f,0.0799651f,0.0340958f}, - {0.0364172f,0.08052f,0.0340958f},{0.0368894f,0.0794592f,0.0340958f},{0.0372802f,0.0790247f,0.0340958f}, - {0.0377538f,0.0786801f,0.0340958f},{0.038287f,0.0784426f,0.0340958f},{0.0358645f,0.0843932f,0.0340958f}, - {0.0364144f,0.084874f,0.0340958f},{0.0377132f,0.0855352f,0.0340958f},{0.0370378f,0.0852557f,0.0340958f}, - {0.038424f,0.0857056f,0.0340958f},{0.0410221f,0.0790223f,0.0340958f},{0.0414831f,0.0787713f,0.0340958f}, - {0.0398819f,0.0857052f,0.0340958f},{0.0391526f,0.0857628f,0.0340958f},{0.0412686f,0.0852544f,0.0340958f}, - {0.0418918f,0.0848725f,0.0340958f},{0.0405931f,0.0855343f,0.0340958f},{0.0417072f,0.0799637f,0.0340958f}, - {0.0414145f,0.0794572f,0.0340958f},{0.0424471f,0.0843959f,0.0340958f},{0.0433038f,0.0832165f,0.0340958f}, - {0.0435854f,0.0825415f,0.0340958f},{0.0437559f,0.0818303f,0.0340958f},{0.0418875f,0.0805185f,0.0340958f}, - {0.042921f,0.083839f,0.0340958f},{0.0349967f,0.0832217f,0.0340958f},{0.0353925f,0.0838337f,0.0340958f}, - {0.0445347f,0.0811018f,0.0359602f},{0.0431893f,0.0834324f,0.0359602f},{0.0418436f,0.0857628f,0.0359602f}, - {0.0418436f,0.0857628f,0.0695196f},{0.0445347f,0.0811018f,0.0695196f},{0.0364616f,0.0857628f,0.0359602f}, - {0.0351159f,0.0834324f,0.0359602f},{0.0364616f,0.0857628f,0.0695196f},{0.0391526f,0.0857624f,0.0359602f}, - {0.0391526f,0.0764411f,0.0695196f},{0.0418436f,0.0764408f,0.0359602f},{0.0418436f,0.0764408f,0.0695196f}, - {0.0364144f,0.0773296f,0.071384f},{0.0358645f,0.0778104f,0.071384f},{0.0437559f,0.0803733f,0.071384f}, - {0.0435854f,0.0796621f,0.071384f},{0.0370378f,0.0769479f,0.071384f},{0.0377132f,0.0766684f,0.071384f}, - {0.038424f,0.076498f,0.071384f},{0.0391526f,0.0764408f,0.071384f},{0.0405931f,0.0766694f,0.071384f}, - {0.0412686f,0.0769492f,0.071384f},{0.0398819f,0.0764984f,0.071384f},{0.0418918f,0.0773311f,0.071384f}, - {0.0353925f,0.07837f,0.071384f},{0.0345484f,0.0803724f,0.071384f},{0.0424471f,0.0778077f,0.071384f}, - {0.0364172f,0.0816837f,0.071384f},{0.0368221f,0.0834323f,0.071384f},{0.0368894f,0.0827444f,0.071384f}, - {0.040016f,0.0837619f,0.071384f},{0.0394438f,0.0838832f,0.071384f},{0.038287f,0.083761f,0.071384f}, - {0.0410221f,0.0831813f,0.071384f},{0.0405499f,0.0835242f,0.071384f},{0.0417072f,0.0822399f,0.071384f}, - {0.0414145f,0.0827465f,0.071384f},{0.0388588f,0.0838828f,0.071384f},{0.0418875f,0.0816851f,0.071384f}, - {0.0365975f,0.0822385f,0.071384f},{0.0377538f,0.0835236f,0.071384f},{0.0433038f,0.0789871f,0.071384f}, - {0.0347196f,0.0796609f,0.071384f},{0.0349967f,0.0789819f,0.071384f},{0.042921f,0.0783646f,0.071384f}, - {0.0372802f,0.0831789f,0.071384f},{0.0431893f,0.0787712f,0.0695196f},{0.0345623f,0.0802946f,0.0695196f}, - {0.0356893f,0.0779827f,0.0695196f},{0.0347719f,0.0795147f,0.0695196f},{0.0381833f,0.0765428f,0.0695196f}, - {0.0364121f,0.0773322f,0.0695196f},{0.0372548f,0.0768453f,0.0695196f},{0.041893f,0.0773311f,0.0695196f}, - {0.041049f,0.0768436f,0.0695196f},{0.0401215f,0.0765425f,0.0695196f},{0.0426157f,0.077982f,0.0695196f}, - {0.0435351f,0.0795134f,0.0695196f},{0.0437434f,0.080294f,0.0695196f},{0.0417086f,0.0822399f,0.062062f}, - {0.041416f,0.0827465f,0.062062f},{0.0418896f,0.0816836f,0.062062f},{0.0410244f,0.0831814f,0.062062f}, - {0.0405506f,0.0835251f,0.062062f},{0.0400156f,0.0837619f,0.062062f},{0.0394436f,0.0838831f,0.062062f}, - {0.0388585f,0.0838826f,0.062062f},{0.0377533f,0.0835206f,0.062062f},{0.0382866f,0.0837595f,0.062062f}, - {0.0368906f,0.082743f,0.062062f},{0.0372812f,0.0831769f,0.062062f},{0.0364182f,0.081682f,0.062062f}, - {0.0365988f,0.0822373f,0.062062f},{0.0345623f,0.081909f,0.0359602f},{0.035689f,0.0842206f,0.0359602f}, - {0.0347719f,0.0826889f,0.0359602f},{0.0381819f,0.0856605f,0.0359602f},{0.0364115f,0.0848709f,0.0359602f}, - {0.0372538f,0.0853579f,0.0359602f},{0.0418924f,0.084873f,0.0359602f},{0.041048f,0.0853604f,0.0359602f}, - {0.0401201f,0.0856614f,0.0359602f},{0.0426154f,0.0842219f,0.0359602f},{0.0435351f,0.0826902f,0.0359602f}, - {0.0437434f,0.0819096f,0.0359602f},{0.0417086f,0.0799637f,0.0434179f},{0.041416f,0.0794571f,0.0434179f}, - {0.0418896f,0.08052f,0.0434179f},{0.0410244f,0.0790222f,0.0434179f},{0.0405506f,0.0786785f,0.0434179f}, - {0.0400156f,0.0784417f,0.0434179f},{0.0394436f,0.0783205f,0.0434179f},{0.0388585f,0.078321f,0.0434179f}, - {0.0377533f,0.078683f,0.0434179f},{0.0382866f,0.0784441f,0.0434179f},{0.0368906f,0.0794606f,0.0434179f}, - {0.0372812f,0.0790267f,0.0434179f},{0.0364182f,0.0805216f,0.0434179f},{0.0365988f,0.0799663f,0.0434179f}, - {-0.023239f,-0.071786f,0.071384f},{-0.0231144f,-0.0708235f,0.0732484f},{-0.023239f,-0.0717882f,0.0732484f}, - {-0.0231106f,-0.0727502f,0.071384f},{-0.0231103f,-0.0727513f,0.0732484f},{-0.0227371f,-0.0736484f,0.071384f}, - {-0.0227371f,-0.0736484f,0.0732484f},{-0.0231141f,-0.0708224f,0.071384f},{-0.0227444f,-0.0699238f,0.0732484f}, - {-0.0227444f,-0.0699238f,0.071384f},{-0.0225127f,-0.00424291f,0.071384f},{-0.0216035f,-0.00385992f,0.0732484f}, - {-0.0225146f,-0.00424405f,0.0732484f},{-0.0232912f,-0.00485238f,0.071384f},{-0.023292f,-0.00485321f,0.0732484f}, - {-0.0238822f,-0.00564511f,0.071384f},{-0.0238822f,-0.00564511f,0.0732484f},{-0.0216024f,-0.00385961f,0.071384f}, - {-0.0206235f,-0.00372882f,0.0732484f},{-0.0206235f,-0.00372882f,0.071384f},{-0.0243511f,0.0075482f,0.071384f}, - {-0.024197f,0.00852259f,0.0732484f},{-0.0243512f,0.00754595f,0.0732484f},{-0.024244f,0.0065653f,0.071384f}, - {-0.0242437f,0.00656417f,0.0732484f},{-0.0238822f,0.00564511f,0.071384f},{-0.0238822f,0.00564511f,0.0732484f}, - {-0.0241967f,0.00852371f,0.071384f},{-0.0237915f,0.00942436f,0.0732484f},{-0.0237915f,0.00942436f,0.071384f}, - {-0.0213716f,0.0750107f,0.071384f},{-0.0204747f,0.0753817f,0.0732484f},{-0.0213735f,0.0750096f,0.0732484f}, - {-0.022144f,0.0744194f,0.071384f},{-0.0221448f,0.0744186f,0.0732484f},{-0.0227371f,0.0736484f,0.071384f}, - {-0.0227371f,0.0736484f,0.0732484f},{-0.0204736f,0.075382f,0.071384f},{-0.0195103f,0.0755086f,0.0732484f}, - {-0.0195103f,0.0755086f,0.071384f},{-0.0391526f,-0.00279661f,0.071384f},{-0.0397007f,-0.00274238f,0.0732484f}, - {-0.0391526f,-0.00279661f,0.0732484f},{-0.0380824f,-0.00258373f,0.0732484f},{-0.0380824f,-0.00258373f,0.071384f}, - {-0.0386045f,-0.00274238f,0.0732484f},{-0.0386045f,-0.00274238f,0.071384f},{-0.037601f,-0.00232674f,0.071384f}, - {-0.0371751f,-0.00197751f,0.071384f},{-0.0371751f,-0.00197751f,0.0732484f},{-0.0368259f,-0.00155157f,0.071384f}, - {-0.0368259f,-0.00155157f,0.0732484f},{-0.037601f,-0.00232674f,0.0732484f},{-0.036356f,3.97423e-017f,0.071384f}, - {-0.0364102f,-0.000548134f,0.071384f},{-0.0364102f,-0.000548134f,0.0732484f},{-0.0365689f,-0.00107022f,0.0732484f}, - {-0.0365689f,-0.00107022f,0.071384f},{-0.036356f,3.97423e-017f,0.0732484f},{-0.0397007f,-0.00274238f,0.071384f}, - {-0.0402228f,-0.00258373f,0.0732484f},{-0.0402228f,-0.00258373f,0.071384f},{-0.0407042f,-0.00232674f,0.071384f}, - {-0.0407042f,-0.00232674f,0.0732484f},{-0.0411301f,-0.00197751f,0.071384f},{-0.0411301f,-0.00197751f,0.0732484f}, - {-0.0414793f,-0.00155157f,0.0732484f},{-0.0414793f,-0.00155157f,0.071384f},{-0.0417363f,-0.00107022f,0.071384f}, - {-0.0417363f,-0.00107022f,0.0732484f},{-0.041895f,-0.000548134f,0.071384f},{-0.041895f,-0.000548134f,0.0732484f}, - {-0.0419492f,3.97423e-017f,0.0732484f},{-0.0419492f,3.97423e-017f,0.071384f},{0.0391526f,-0.00279661f,0.071384f}, - {0.0386045f,-0.00274238f,0.0732484f},{0.0391526f,-0.00279661f,0.0732484f},{0.0402228f,-0.00258373f,0.0732484f}, - {0.0402228f,-0.00258373f,0.071384f},{0.0397007f,-0.00274238f,0.0732484f},{0.0397007f,-0.00274238f,0.071384f}, - {0.0407042f,-0.00232674f,0.071384f},{0.0411301f,-0.00197751f,0.071384f},{0.0411301f,-0.00197751f,0.0732484f}, - {0.0414793f,-0.00155157f,0.071384f},{0.0414793f,-0.00155157f,0.0732484f},{0.0407042f,-0.00232674f,0.0732484f}, - {0.0419492f,3.97423e-017f,0.071384f},{0.041895f,-0.000548134f,0.071384f},{0.041895f,-0.000548134f,0.0732484f}, - {0.0417363f,-0.00107022f,0.0732484f},{0.0417363f,-0.00107022f,0.071384f},{0.0419492f,3.97423e-017f,0.0732484f}, - {0.0386045f,-0.00274238f,0.071384f},{0.0380824f,-0.00258373f,0.0732484f},{0.0380824f,-0.00258373f,0.071384f}, - {0.037601f,-0.00232674f,0.071384f},{0.037601f,-0.00232674f,0.0732484f},{0.0371751f,-0.00197751f,0.071384f}, - {0.0371751f,-0.00197751f,0.0732484f},{0.0368259f,-0.00155157f,0.0732484f},{0.0368259f,-0.00155157f,0.071384f}, - {0.0365689f,-0.00107022f,0.071384f},{0.0365689f,-0.00107022f,0.0732484f},{0.0364102f,-0.000548134f,0.071384f}, - {0.0364102f,-0.000548134f,0.0732484f},{0.036356f,3.97423e-017f,0.0732484f},{0.036356f,3.97423e-017f,0.071384f}, - {-0.0391526f,0.0783052f,0.071384f},{-0.0397007f,0.0783594f,0.0732484f},{-0.0391526f,0.0783052f,0.0732484f}, - {-0.0380824f,0.0785181f,0.0732484f},{-0.0380824f,0.0785181f,0.071384f},{-0.0386045f,0.0783594f,0.0732484f}, - {-0.0386045f,0.0783594f,0.071384f},{-0.037601f,0.0787751f,0.071384f},{-0.0371751f,0.0791243f,0.071384f}, - {-0.0371751f,0.0791243f,0.0732484f},{-0.0368259f,0.0795502f,0.071384f},{-0.0368259f,0.0795502f,0.0732484f}, - {-0.037601f,0.0787751f,0.0732484f},{-0.0364102f,0.0805537f,0.071384f},{-0.0364102f,0.0805537f,0.0732484f}, - {-0.0365689f,0.0800316f,0.0732484f},{-0.0365689f,0.0800316f,0.071384f},{-0.036356f,0.0811018f,0.0732484f}, - {-0.0397007f,0.0783594f,0.071384f},{-0.0402228f,0.0785181f,0.0732484f},{-0.0402228f,0.0785181f,0.071384f}, - {-0.0407042f,0.0787751f,0.071384f},{-0.0407042f,0.0787751f,0.0732484f},{-0.0411301f,0.0791243f,0.071384f}, - {-0.0411301f,0.0791243f,0.0732484f},{-0.0414793f,0.0795502f,0.0732484f},{-0.0414793f,0.0795502f,0.071384f}, - {-0.0417363f,0.0800316f,0.071384f},{-0.0417363f,0.0800316f,0.0732484f},{-0.041895f,0.0805537f,0.071384f}, - {-0.041895f,0.0805537f,0.0732484f},{-0.0419492f,0.0811018f,0.0732484f},{0.0391526f,0.0783052f,0.071384f}, - {0.0386045f,0.0783594f,0.0732484f},{0.0391526f,0.0783052f,0.0732484f},{0.0402228f,0.0785181f,0.0732484f}, - {0.0402228f,0.0785181f,0.071384f},{0.0397007f,0.0783594f,0.0732484f},{0.0397007f,0.0783594f,0.071384f}, - {0.0407042f,0.0787751f,0.071384f},{0.0411301f,0.0791243f,0.071384f},{0.0411301f,0.0791243f,0.0732484f}, - {0.0414793f,0.0795502f,0.071384f},{0.0414793f,0.0795502f,0.0732484f},{0.0407042f,0.0787751f,0.0732484f}, - {0.041895f,0.0805537f,0.071384f},{0.041895f,0.0805537f,0.0732484f},{0.0417363f,0.0800316f,0.0732484f}, - {0.0417363f,0.0800316f,0.071384f},{0.0419492f,0.0811018f,0.0732484f},{0.0386045f,0.0783594f,0.071384f}, - {0.0380824f,0.0785181f,0.0732484f},{0.0380824f,0.0785181f,0.071384f},{0.037601f,0.0787751f,0.071384f}, - {0.037601f,0.0787751f,0.0732484f},{0.0371751f,0.0791243f,0.071384f},{0.0371751f,0.0791243f,0.0732484f}, - {0.0368259f,0.0795502f,0.0732484f},{0.0368259f,0.0795502f,0.071384f},{0.0365689f,0.0800316f,0.071384f}, - {0.0365689f,0.0800316f,0.0732484f},{0.0364102f,0.0805537f,0.071384f},{0.0364102f,0.0805537f,0.0732484f}, - {0.036356f,0.0811018f,0.0732484f},{0.0391526f,-0.0838984f,0.071384f},{0.0386045f,-0.0838442f,0.0732484f}, - {0.0391526f,-0.0838984f,0.0732484f},{0.0402228f,-0.0836855f,0.0732484f},{0.0402228f,-0.0836855f,0.071384f}, - {0.0397007f,-0.0838442f,0.0732484f},{0.0397007f,-0.0838442f,0.071384f},{0.0407042f,-0.0834285f,0.071384f}, - {0.0411301f,-0.0830793f,0.071384f},{0.0411301f,-0.0830793f,0.0732484f},{0.0414793f,-0.0826534f,0.071384f}, - {0.0414793f,-0.0826534f,0.0732484f},{0.0407042f,-0.0834285f,0.0732484f},{0.0419492f,-0.0811018f,0.071384f}, - {0.041895f,-0.0816499f,0.071384f},{0.041895f,-0.0816499f,0.0732484f},{0.0417363f,-0.082172f,0.0732484f}, - {0.0417363f,-0.082172f,0.071384f},{0.0419492f,-0.0811018f,0.0732484f},{0.0386045f,-0.0838442f,0.071384f}, - {0.0380824f,-0.0836855f,0.0732484f},{0.0380824f,-0.0836855f,0.071384f},{0.037601f,-0.0834285f,0.071384f}, - {0.037601f,-0.0834285f,0.0732484f},{0.0371751f,-0.0830793f,0.071384f},{0.0371751f,-0.0830793f,0.0732484f}, - {0.0368259f,-0.0826534f,0.0732484f},{0.0368259f,-0.0826534f,0.071384f},{0.0365689f,-0.082172f,0.071384f}, - {0.0365689f,-0.082172f,0.0732484f},{0.0364102f,-0.0816499f,0.071384f},{0.0364102f,-0.0816499f,0.0732484f}, - {0.036356f,-0.0811018f,0.0732484f},{0.036356f,-0.0811018f,0.071384f},{-0.0391526f,-0.0838984f,0.071384f}, - {-0.0397007f,-0.0838442f,0.0732484f},{-0.0391526f,-0.0838984f,0.0732484f},{-0.0380824f,-0.0836855f,0.0732484f}, - {-0.0380824f,-0.0836855f,0.071384f},{-0.0386045f,-0.0838442f,0.0732484f},{-0.0386045f,-0.0838442f,0.071384f}, - {-0.037601f,-0.0834285f,0.071384f},{-0.0371751f,-0.0830793f,0.071384f},{-0.0371751f,-0.0830793f,0.0732484f}, - {-0.0368259f,-0.0826534f,0.071384f},{-0.0368259f,-0.0826534f,0.0732484f},{-0.037601f,-0.0834285f,0.0732484f}, - {-0.0364102f,-0.0816499f,0.071384f},{-0.0364102f,-0.0816499f,0.0732484f},{-0.0365689f,-0.082172f,0.0732484f}, - {-0.0365689f,-0.082172f,0.071384f},{-0.036356f,-0.0811018f,0.0732484f},{-0.0397007f,-0.0838442f,0.071384f}, - {-0.0402228f,-0.0836855f,0.0732484f},{-0.0402228f,-0.0836855f,0.071384f},{-0.0407042f,-0.0834285f,0.071384f}, - {-0.0407042f,-0.0834285f,0.0732484f},{-0.0411301f,-0.0830793f,0.071384f},{-0.0411301f,-0.0830793f,0.0732484f}, - {-0.0414793f,-0.0826534f,0.0732484f},{-0.0414793f,-0.0826534f,0.071384f},{-0.0417363f,-0.082172f,0.071384f}, - {-0.0417363f,-0.082172f,0.0732484f},{-0.041895f,-0.0816499f,0.071384f},{-0.041895f,-0.0816499f,0.0732484f}, - {-0.0419492f,-0.0811018f,0.0732484f},{0.0225785f,-0.0258241f,0.071384f},{0.0237254f,-0.0222932f,0.071384f}, - {0.0237253f,-0.0222933f,0.0732484f},{0.0216792f,-0.0294283f,0.071384f},{0.0225785f,-0.0258242f,0.0732484f}, - {0.0216792f,-0.0294286f,0.0732484f},{0.0210317f,-0.0330928f,0.071384f},{0.0206399f,-0.0368049f,0.0732484f}, - {0.0205085f,-0.0405509f,0.071384f},{0.02064f,-0.0368047f,0.071384f},{0.0210316f,-0.0330931f,0.0732484f}, - {0.0205085f,-0.0405509f,0.0732484f},{0.0251155f,-0.0188485f,0.0732484f},{0.0267447f,-0.0155029f,0.0732484f}, - {0.0251156f,-0.0188483f,0.071384f},{0.0267448f,-0.0155026f,0.071384f},{0.0286089f,-0.0122693f,0.0732484f}, - {0.028609f,-0.0122691f,0.071384f},{0.0307038f,-0.00916071f,0.0732484f},{0.0307038f,-0.00916071f,0.071384f}, - {-0.03984f,-0.0885276f,0.0732484f},{-0.0398371f,-0.0885279f,0.071384f},{-0.0387004f,-0.0885456f,0.071384f}, - {-0.0409568f,-0.0883379f,0.071384f},{-0.0409588f,-0.0883374f,0.0732484f},{-0.0420378f,-0.0879786f,0.0732484f}, - {-0.042035f,-0.0879797f,0.071384f},{-0.0430486f,-0.0874608f,0.0732484f},{-0.043047f,-0.0874618f,0.071384f}, - {-0.0439672f,-0.0867969f,0.071384f},{-0.0439685f,-0.086796f,0.0732484f},{-0.0447784f,-0.0859974f,0.0732484f}, - {-0.0447773f,-0.0859985f,0.071384f},{-0.045456f,-0.0850872f,0.0732484f},{-0.0454557f,-0.0850877f,0.071384f}, - {-0.0459883f,-0.0840833f,0.0732484f},{-0.0459883f,-0.0840833f,0.071384f},{-0.0387033f,-0.0885458f,0.0732484f}, - {-0.037576f,-0.0883909f,0.071384f},{-0.0375781f,-0.0883913f,0.0732484f},{-0.0364863f,-0.0880664f,0.071384f}, - {-0.0364891f,-0.0880674f,0.0732484f},{-0.0354613f,-0.0875818f,0.0732484f},{-0.0354596f,-0.0875808f,0.071384f}, - {-0.0345192f,-0.0869454f,0.071384f},{-0.0345204f,-0.0869463f,0.0732484f},{-0.0336844f,-0.0861728f,0.071384f}, - {-0.0336855f,-0.0861739f,0.0732484f},{-0.0329787f,-0.085285f,0.0732484f},{-0.0329784f,-0.0852846f,0.071384f}, - {-0.0324146f,-0.0842979f,0.071384f},{-0.0324146f,-0.0842979f,0.0732484f},{-0.0440592f,-0.00561614f,0.071384f}, - {-0.0430328f,-0.00636862f,0.071384f},{-0.0440603f,-0.00561515f,0.0732484f},{-0.044941f,-0.00470215f,0.0732484f}, - {-0.0449406f,-0.00470266f,0.071384f},{-0.0456552f,-0.0036514f,0.0732484f},{-0.0456542f,-0.00365287f,0.071384f}, - {-0.046181f,-0.00249363f,0.071384f},{-0.0461811f,-0.00249326f,0.0732484f},{-0.046502f,-0.00126624f,0.0732484f}, - {-0.0465017f,-0.00126733f,0.071384f},{-0.0466102f,3.97423e-017f,0.0732484f},{-0.0466102f,3.97423e-017f,0.071384f}, - {-0.0430341f,-0.00636786f,0.0732484f},{-0.0418973f,-0.00693419f,0.071384f},{-0.0418979f,-0.00693393f,0.0732484f}, - {-0.0406822f,-0.00729899f,0.0732484f},{-0.0406805f,-0.00729943f,0.071384f},{-0.0394178f,-0.00745289f,0.071384f}, - {-0.0394182f,-0.00745292f,0.0732484f},{-0.0381511f,-0.00739011f,0.071384f},{-0.0381522f,-0.00739019f,0.0732484f}, - {-0.0369109f,-0.00711273f,0.071384f},{-0.0369109f,-0.00711273f,0.0732484f},{-0.0450626f,0.0765535f,0.0732484f}, - {-0.0450608f,0.0765512f,0.071384f},{-0.0443005f,0.075706f,0.071384f},{-0.0456834f,0.0775011f,0.071384f}, - {-0.0456844f,0.0775029f,0.0732484f},{-0.0461555f,0.0785378f,0.0732484f},{-0.0461544f,0.078535f,0.071384f}, - {-0.0464637f,0.0796309f,0.0732484f},{-0.0464633f,0.079629f,0.071384f},{-0.0466021f,0.0807558f,0.071384f}, - {-0.0466023f,0.0807574f,0.0732484f},{-0.046568f,0.0818943f,0.0732484f},{-0.0465681f,0.0818927f,0.071384f}, - {-0.046362f,0.0830101f,0.0732484f},{-0.0463621f,0.0830096f,0.071384f},{-0.0459883f,0.0840833f,0.0732484f}, - {-0.0459883f,0.0840833f,0.071384f},{-0.0443026f,0.0757081f,0.0732484f},{-0.0434222f,0.0749873f,0.071384f}, - {-0.0434238f,0.0749885f,0.0732484f},{-0.0424429f,0.0744094f,0.071384f},{-0.0424456f,0.0744107f,0.0732484f}, - {-0.0413904f,0.0739879f,0.0732484f},{-0.0413886f,0.0739873f,0.071384f},{-0.040283f,0.0737303f,0.071384f}, - {-0.0402846f,0.0737307f,0.0732484f},{-0.0391489f,0.0736442f,0.071384f},{-0.0391504f,0.0736443f,0.0732484f}, - {-0.0380181f,0.073731f,0.0732484f},{-0.0380175f,0.073731f,0.071384f},{-0.0369109f,0.0739891f,0.071384f}, - {-0.0369109f,0.0739891f,0.0732484f},{0.0225785f,0.0552777f,0.071384f},{0.0237254f,0.0588086f,0.071384f}, - {0.0237253f,0.0588085f,0.0732484f},{0.0216792f,0.0516735f,0.071384f},{0.0225785f,0.0552776f,0.0732484f}, - {0.0216792f,0.0516732f,0.0732484f},{0.0210317f,0.048009f,0.071384f},{0.0206399f,0.0442969f,0.0732484f}, - {0.0205085f,0.0405509f,0.071384f},{0.02064f,0.0442971f,0.071384f},{0.0210316f,0.0480087f,0.0732484f}, - {0.0205085f,0.0405509f,0.0732484f},{0.0251155f,0.0622533f,0.0732484f},{0.0267447f,0.0655989f,0.0732484f}, - {0.0251156f,0.0622535f,0.071384f},{0.0267448f,0.0655992f,0.071384f},{0.0286089f,0.0688326f,0.0732484f}, - {0.028609f,0.0688327f,0.071384f},{0.0307038f,0.0719411f,0.0732484f},{0.0307038f,0.0719411f,0.071384f}, - {0.0167768f,-0.0552561f,0.0732484f},{0.0159195f,-0.0513911f,0.0732484f},{0.0167768f,-0.0552561f,0.071384f}, - {0.0159195f,-0.0513911f,0.071384f},{0.0153227f,-0.0474729f,0.0732484f},{0.0149897f,-0.0435148f,0.0732484f}, - {0.0153227f,-0.0474729f,0.071384f},{0.0149241f,-0.0395297f,0.0732484f},{0.0149897f,-0.0435148f,0.071384f}, - {0.0149241f,-0.0395297f,0.071384f},{0.0178914f,-0.059055f,0.071384f},{0.0192597f,-0.0627747f,0.071384f}, - {0.0178914f,-0.059055f,0.0732484f},{0.0208785f,-0.066402f,0.071384f},{0.0192597f,-0.0627747f,0.0732484f}, - {0.0208785f,-0.066402f,0.0732484f},{0.0227444f,-0.0699238f,0.071384f},{0.0227444f,-0.0699238f,0.0732484f}, - {0.0173199f,0.0238768f,0.0732484f},{0.0163293f,0.0277099f,0.0732484f},{0.0173199f,0.0238768f,0.071384f}, - {0.0163293f,0.0277099f,0.071384f},{0.0155973f,0.031605f,0.0732484f},{0.0151276f,0.0355493f,0.0732484f}, - {0.0155973f,0.031605f,0.071384f},{0.0149241f,0.0395297f,0.0732484f},{0.0151276f,0.0355493f,0.071384f}, - {0.0149241f,0.0395297f,0.071384f},{0.0185653f,0.0201187f,0.071384f},{0.0200615f,0.0164487f,0.071384f}, - {0.0185653f,0.0201187f,0.0732484f},{0.0218049f,0.0128796f,0.071384f},{0.0200615f,0.0164487f,0.0732484f}, - {0.0218049f,0.0128796f,0.0732484f},{0.0237915f,0.00942436f,0.071384f},{0.0237915f,0.00942436f,0.0732484f}, - {0.0149897f,0.0435148f,0.0732484f},{0.0167768f,0.0552561f,0.0732484f},{0.0159195f,0.0513911f,0.071384f}, - {0.0159195f,0.0513911f,0.0732484f},{0.0153227f,0.0474729f,0.0732484f},{0.0153227f,0.0474729f,0.071384f}, - {0.0149897f,0.0435148f,0.071384f},{0.0192597f,0.0627747f,0.071384f},{0.0192597f,0.0627747f,0.0732484f}, - {0.0208785f,0.066402f,0.0732484f},{0.0167768f,0.0552561f,0.071384f},{0.0178914f,0.059055f,0.0732484f}, - {0.0178914f,0.059055f,0.071384f},{0.0227444f,0.0699238f,0.0732484f},{0.0208785f,0.066402f,0.071384f}, - {0.0227444f,0.0699238f,0.071384f},{-0.0206235f,0.00372882f,0.071384f},{-0.0206235f,0.00372882f,0.0732484f}, - {0.0206235f,0.00372882f,0.0732484f},{0.0206235f,0.00372882f,0.071384f},{-0.0149256f,0.0416576f,0.0732484f}, - {-0.0149993f,0.0374031f,0.0732484f},{-0.0149257f,0.0416577f,0.071384f},{-0.0151577f,0.0458938f,0.071384f}, - {-0.0151576f,0.0458937f,0.0732484f},{-0.0156914f,0.0500904f,0.071384f},{-0.0156914f,0.0500902f,0.0732484f}, - {-0.0165229f,0.0542313f,0.0732484f},{-0.016523f,0.0542315f,0.071384f},{-0.0176481f,0.0583013f,0.071384f}, - {-0.017648f,0.0583011f,0.0732484f},{-0.0190628f,0.0622838f,0.071384f},{-0.0190627f,0.0622837f,0.0732484f}, - {-0.0207629f,0.0661632f,0.0732484f},{-0.0207629f,0.0661633f,0.071384f},{-0.0227444f,0.0699238f,0.071384f}, - {-0.0227444f,0.0699238f,0.0732484f},{-0.0149993f,0.0374031f,0.071384f},{-0.0153777f,0.0331776f,0.071384f}, - {-0.0153777f,0.0331775f,0.0732484f},{-0.0160564f,0.0290019f,0.0732484f},{-0.0160564f,0.0290021f,0.071384f}, - {-0.0170307f,0.024892f,0.0732484f},{-0.0170307f,0.0248922f,0.071384f},{-0.018296f,0.0208638f,0.071384f}, - {-0.018296f,0.0208636f,0.0732484f},{-0.0198477f,0.0169324f,0.0732484f},{-0.0198476f,0.0169326f,0.071384f}, - {-0.021681f,0.0131141f,0.0732484f},{-0.021681f,0.0131142f,0.071384f},{0.0151276f,-0.0355493f,0.0732484f}, - {0.0173199f,-0.0238768f,0.0732484f},{0.0163293f,-0.0277099f,0.071384f},{0.0163293f,-0.0277099f,0.0732484f}, - {0.0155973f,-0.031605f,0.0732484f},{0.0155973f,-0.031605f,0.071384f},{0.0151276f,-0.0355493f,0.071384f}, - {0.0200615f,-0.0164487f,0.071384f},{0.0200615f,-0.0164487f,0.0732484f},{0.0218049f,-0.0128796f,0.0732484f}, - {0.0173199f,-0.0238768f,0.071384f},{0.0185653f,-0.0201187f,0.0732484f},{0.0185653f,-0.0201187f,0.071384f}, - {0.0237915f,-0.00942436f,0.0732484f},{0.0218049f,-0.0128796f,0.071384f},{0.0237915f,-0.00942436f,0.071384f}, - {-0.0195103f,-0.0755086f,0.071384f},{0.0195103f,-0.0755086f,0.0732484f},{0.0195103f,-0.0755086f,0.071384f}, - {-0.0195103f,-0.0755086f,0.0732484f},{-0.0149993f,-0.0374031f,0.0732484f},{-0.0149257f,-0.0416576f,0.0732484f}, - {-0.0149993f,-0.0374031f,0.071384f},{-0.0153777f,-0.0331775f,0.071384f},{-0.0153777f,-0.0331776f,0.0732484f}, - {-0.0160564f,-0.0290019f,0.071384f},{-0.0160564f,-0.0290021f,0.0732484f},{-0.0170307f,-0.0248922f,0.0732484f}, - {-0.0170307f,-0.024892f,0.071384f},{-0.018296f,-0.0208636f,0.071384f},{-0.018296f,-0.0208638f,0.0732484f}, - {-0.0198477f,-0.0169324f,0.071384f},{-0.0198476f,-0.0169326f,0.0732484f},{-0.021681f,-0.0131142f,0.0732484f}, - {-0.021681f,-0.0131141f,0.071384f},{-0.0237915f,-0.00942436f,0.071384f},{-0.0237915f,-0.00942436f,0.0732484f}, - {-0.0149256f,-0.0416576f,0.071384f},{-0.0151576f,-0.0458937f,0.071384f},{-0.0151577f,-0.0458938f,0.0732484f}, - {-0.0156914f,-0.0500904f,0.0732484f},{-0.0156914f,-0.0500902f,0.071384f},{-0.016523f,-0.0542315f,0.0732484f}, - {-0.0165229f,-0.0542313f,0.071384f},{-0.017648f,-0.0583011f,0.071384f},{-0.0176481f,-0.0583013f,0.0732484f}, - {-0.0190628f,-0.0622838f,0.0732484f},{-0.0190627f,-0.0622837f,0.071384f},{-0.0207629f,-0.0661633f,0.0732484f}, - {-0.0207629f,-0.0661632f,0.071384f},{0.02064f,0.0368047f,0.0732484f},{0.0206399f,0.0368049f,0.071384f}, - {0.0225785f,0.0258241f,0.0732484f},{0.0225785f,0.0258242f,0.071384f},{0.0216792f,0.0294283f,0.0732484f}, - {0.0216792f,0.0294286f,0.071384f},{0.0210316f,0.0330931f,0.071384f},{0.0210317f,0.0330928f,0.0732484f}, - {0.0267447f,0.0155029f,0.071384f},{0.0251156f,0.0188483f,0.0732484f},{0.0267448f,0.0155026f,0.0732484f}, - {0.0237253f,0.0222933f,0.071384f},{0.0237254f,0.0222932f,0.0732484f},{0.0251155f,0.0188485f,0.071384f}, - {0.028609f,0.0122691f,0.0732484f},{0.0286089f,0.0122693f,0.071384f},{0.0307038f,0.00916071f,0.0732484f}, - {0.0307038f,0.00916071f,0.071384f},{0.0462025f,0.0835337f,0.0732484f},{0.0457312f,0.0846141f,0.071384f}, - {0.0457326f,0.0846116f,0.0732484f},{0.0450998f,0.0856014f,0.0732484f},{0.0450987f,0.085603f,0.071384f}, - {0.044317f,0.0864818f,0.071384f},{0.0443187f,0.0864801f,0.0732484f},{0.0434093f,0.0872252f,0.0732484f}, - {0.0434083f,0.0872259f,0.071384f},{0.0423945f,0.087818f,0.071384f},{0.0423947f,0.0878178f,0.0732484f}, - {0.0412975f,0.0882443f,0.071384f},{0.041298f,0.0882442f,0.0732484f},{0.040151f,0.0884923f,0.0732484f}, - {0.0401493f,0.0884924f,0.071384f},{0.0389772f,0.0885573f,0.0732484f},{0.0389749f,0.0885572f,0.071384f}, - {0.0378063f,0.0884369f,0.071384f},{0.0378083f,0.0884373f,0.0732484f},{0.0366734f,0.0881351f,0.0732484f}, - {0.0366703f,0.0881341f,0.071384f},{0.0355963f,0.0876568f,0.071384f},{0.0355984f,0.087658f,0.0732484f}, - {0.0346116f,0.0870176f,0.071384f},{0.0346134f,0.0870188f,0.0732484f},{0.0337395f,0.0862314f,0.0732484f}, - {0.0337379f,0.0862299f,0.071384f},{0.0330004f,0.0853169f,0.071384f},{0.0330008f,0.0853175f,0.0732484f}, - {0.0324146f,0.0842979f,0.071384f},{0.0324146f,0.0842979f,0.0732484f},{0.0462016f,0.0835364f,0.071384f}, - {0.0464969f,0.0823973f,0.0732484f},{0.0464965f,0.0823992f,0.071384f},{0.0466091f,0.0812265f,0.0732484f}, - {0.046609f,0.0812289f,0.071384f},{0.0465363f,0.0800543f,0.0732484f},{0.0465364f,0.0800555f,0.071384f}, - {0.0462805f,0.0789088f,0.071384f},{0.0462804f,0.0789085f,0.0732484f},{0.0458466f,0.0778144f,0.0732484f}, - {0.0458468f,0.0778149f,0.071384f},{0.0452473f,0.0768042f,0.0732484f},{0.0452483f,0.0768055f,0.071384f}, - {0.0444957f,0.0758993f,0.0732484f},{0.0444974f,0.075901f,0.071384f},{0.0436142f,0.075126f,0.071384f}, - {0.0436125f,0.0751248f,0.0732484f},{0.0426177f,0.0744982f,0.0732484f},{0.0426206f,0.0744998f,0.071384f}, - {0.0415395f,0.0740365f,0.071384f},{0.0415373f,0.0740358f,0.0732484f},{0.0403988f,0.073749f,0.0732484f}, - {0.0404009f,0.0737495f,0.071384f},{0.0392271f,0.0736446f,0.0732484f},{0.0392293f,0.0736447f,0.071384f}, - {0.038057f,0.0737251f,0.071384f},{0.0380562f,0.0737252f,0.0732484f},{0.0369109f,0.0739891f,0.0732484f}, - {0.0369109f,0.0739891f,0.071384f},{0.027361f,0.0811018f,0.071384f},{-0.027361f,0.0811018f,0.071384f}, - {-0.027361f,0.0811018f,0.0732484f},{0.027361f,0.0811018f,0.0732484f},{-0.0454557f,0.0850877f,0.0732484f}, - {-0.043047f,0.0874618f,0.0732484f},{-0.0430486f,0.0874608f,0.071384f},{-0.0439672f,0.0867969f,0.0732484f}, - {-0.0447773f,0.0859985f,0.0732484f},{-0.0439685f,0.086796f,0.071384f},{-0.0447784f,0.0859974f,0.071384f}, - {-0.03984f,0.0885276f,0.071384f},{-0.0409568f,0.0883379f,0.0732484f},{-0.0398371f,0.0885279f,0.0732484f}, - {-0.0420378f,0.0879786f,0.071384f},{-0.042035f,0.0879797f,0.0732484f},{-0.0409588f,0.0883374f,0.071384f}, - {-0.037576f,0.0883909f,0.0732484f},{-0.0364863f,0.0880664f,0.0732484f},{-0.0364891f,0.0880674f,0.071384f}, - {-0.0387004f,0.0885456f,0.0732484f},{-0.0375781f,0.0883913f,0.071384f},{-0.0387033f,0.0885458f,0.071384f}, - {-0.0354596f,0.0875809f,0.0732484f},{-0.0345192f,0.0869454f,0.0732484f},{-0.0345204f,0.0869463f,0.071384f}, - {-0.0354613f,0.0875818f,0.071384f},{-0.0336855f,0.0861739f,0.071384f},{-0.0336844f,0.0861728f,0.0732484f}, - {-0.0329784f,0.0852846f,0.0732484f},{-0.0329787f,0.085285f,0.071384f},{-0.0324146f,0.0842979f,0.0732484f}, - {-0.0324146f,0.0842979f,0.071384f},{-0.045456f,0.0850872f,0.071384f},{-0.021027f,0.0331264f,0.0732484f}, - {-0.0206381f,0.0368319f,0.0732484f},{-0.0206381f,0.0368317f,0.071384f},{-0.0205085f,0.0405509f,0.0732484f}, - {-0.0205085f,0.0405509f,0.071384f},{-0.021027f,0.0331261f,0.071384f},{-0.0216751f,0.0294476f,0.071384f}, - {-0.0216749f,0.0294486f,0.0732484f},{-0.0237299f,0.0222807f,0.0732484f},{-0.0225785f,0.0258242f,0.0732484f}, - {-0.0225785f,0.025824f,0.071384f},{-0.0237299f,0.0222806f,0.071384f},{-0.0267542f,0.0154851f,0.0732484f}, - {-0.0251237f,0.01883f,0.071384f},{-0.0267544f,0.0154848f,0.071384f},{-0.0286161f,0.0122577f,0.0732484f}, - {-0.0251236f,0.0188302f,0.0732484f},{-0.0286162f,0.0122575f,0.071384f},{-0.0307038f,0.00916071f,0.0732484f}, - {-0.0307038f,0.00916071f,0.071384f},{-0.0206381f,0.0442701f,0.0732484f},{-0.0206381f,0.0442699f,0.071384f}, - {-0.021027f,0.0479754f,0.071384f},{-0.021027f,0.0479757f,0.0732484f},{-0.0216751f,0.0516542f,0.0732484f}, - {-0.0216749f,0.0516532f,0.071384f},{-0.0225785f,0.0552778f,0.0732484f},{-0.0225785f,0.0552777f,0.071384f}, - {-0.0237299f,0.0588211f,0.071384f},{-0.0237299f,0.0588212f,0.0732484f},{-0.0251237f,0.0622718f,0.0732484f}, - {-0.0251236f,0.0622716f,0.071384f},{-0.0267544f,0.065617f,0.0732484f},{-0.0267542f,0.0656167f,0.071384f}, - {-0.0286161f,0.0688441f,0.071384f},{-0.0286162f,0.0688443f,0.0732484f},{-0.0307038f,0.0719411f,0.071384f}, - {-0.0307038f,0.0719411f,0.0732484f},{-0.0465017f,0.00126733f,0.0732484f},{-0.044941f,0.00470215f,0.071384f}, - {-0.0456552f,0.0036514f,0.071384f},{-0.0449406f,0.00470266f,0.0732484f},{-0.0456542f,0.00365287f,0.0732484f}, - {-0.0461811f,0.00249326f,0.071384f},{-0.046181f,0.00249363f,0.0732484f},{-0.0430341f,0.00636786f,0.071384f}, - {-0.0418973f,0.00693419f,0.0732484f},{-0.0418979f,0.00693393f,0.071384f},{-0.0440592f,0.00561614f,0.0732484f}, - {-0.0430328f,0.00636862f,0.0732484f},{-0.0440603f,0.00561515f,0.071384f},{-0.0406822f,0.00729899f,0.071384f}, - {-0.0394178f,0.00745289f,0.0732484f},{-0.0394182f,0.00745292f,0.071384f},{-0.0406805f,0.00729943f,0.0732484f}, - {-0.0381522f,0.00739019f,0.071384f},{-0.0381511f,0.00739011f,0.0732484f},{-0.0369109f,0.00711273f,0.0732484f}, - {-0.0369109f,0.00711273f,0.071384f},{-0.046502f,0.00126624f,0.071384f},{-0.021027f,-0.0479754f,0.0732484f}, - {-0.0206381f,-0.0442699f,0.0732484f},{-0.0206381f,-0.0442701f,0.071384f},{-0.0205085f,-0.0405509f,0.0732484f}, - {-0.0205085f,-0.0405509f,0.071384f},{-0.021027f,-0.0479757f,0.071384f},{-0.0216751f,-0.0516542f,0.071384f}, - {-0.0216749f,-0.0516532f,0.0732484f},{-0.0237299f,-0.0588211f,0.0732484f},{-0.0225785f,-0.0552777f,0.0732484f}, - {-0.0225785f,-0.0552778f,0.071384f},{-0.0237299f,-0.0588212f,0.071384f},{-0.0267542f,-0.0656167f,0.0732484f}, - {-0.0251237f,-0.0622718f,0.071384f},{-0.0267544f,-0.065617f,0.071384f},{-0.0286161f,-0.0688441f,0.0732484f}, - {-0.0251236f,-0.0622716f,0.0732484f},{-0.0286162f,-0.0688443f,0.071384f},{-0.0307038f,-0.0719411f,0.0732484f}, - {-0.0307038f,-0.0719411f,0.071384f},{-0.0206381f,-0.0368317f,0.0732484f},{-0.0206381f,-0.0368319f,0.071384f}, - {-0.021027f,-0.0331264f,0.071384f},{-0.021027f,-0.0331261f,0.0732484f},{-0.0216751f,-0.0294476f,0.0732484f}, - {-0.0216749f,-0.0294486f,0.071384f},{-0.0225785f,-0.025824f,0.0732484f},{-0.0225785f,-0.0258241f,0.071384f}, - {-0.0237299f,-0.0222807f,0.071384f},{-0.0237299f,-0.0222806f,0.0732484f},{-0.0251237f,-0.01883f,0.0732484f}, - {-0.0251236f,-0.0188302f,0.071384f},{-0.0267544f,-0.0154848f,0.0732484f},{-0.0267542f,-0.0154851f,0.071384f}, - {-0.0286161f,-0.0122577f,0.071384f},{-0.0286162f,-0.0122575f,0.0732484f},{-0.0307038f,-0.00916071f,0.071384f}, - {-0.0307038f,-0.00916071f,0.0732484f},{-0.0463621f,-0.0830096f,0.0732484f},{-0.0464633f,-0.079629f,0.0732484f}, - {-0.0464637f,-0.0796309f,0.071384f},{-0.0466021f,-0.0807558f,0.0732484f},{-0.0465681f,-0.0818927f,0.0732484f}, - {-0.0466023f,-0.0807574f,0.071384f},{-0.046568f,-0.0818943f,0.071384f},{-0.0450626f,-0.0765535f,0.071384f}, - {-0.0456834f,-0.0775011f,0.0732484f},{-0.0450608f,-0.0765512f,0.0732484f},{-0.0461555f,-0.0785378f,0.071384f}, - {-0.0461544f,-0.078535f,0.0732484f},{-0.0456844f,-0.0775029f,0.071384f},{-0.0434222f,-0.0749873f,0.0732484f}, - {-0.0424429f,-0.0744094f,0.0732484f},{-0.0424456f,-0.0744108f,0.071384f},{-0.0443005f,-0.075706f,0.0732484f}, - {-0.0434238f,-0.0749885f,0.071384f},{-0.0443026f,-0.0757081f,0.071384f},{-0.0413886f,-0.0739873f,0.0732484f}, - {-0.040283f,-0.0737303f,0.0732484f},{-0.0402846f,-0.0737307f,0.071384f},{-0.0413904f,-0.0739879f,0.071384f}, - {-0.0391504f,-0.0736443f,0.071384f},{-0.0391489f,-0.0736442f,0.0732484f},{-0.0380175f,-0.073731f,0.0732484f}, - {-0.0380181f,-0.073731f,0.071384f},{-0.0369109f,-0.0739891f,0.0732484f},{-0.0369109f,-0.0739891f,0.071384f}, - {-0.046362f,-0.0830101f,0.071384f},{0.027361f,-0.0811018f,0.0732484f},{-0.027361f,-0.0811018f,0.071384f}, - {0.027361f,-0.0811018f,0.071384f},{-0.027361f,-0.0811018f,0.0732484f},{0.0457312f,-0.0846141f,0.0732484f}, - {0.0462025f,-0.0835337f,0.071384f},{0.0462016f,-0.0835364f,0.0732484f},{0.0464965f,-0.0823992f,0.0732484f}, - {0.0464969f,-0.0823973f,0.071384f},{0.0466091f,-0.0812265f,0.071384f},{0.046609f,-0.0812289f,0.0732484f}, - {0.0465364f,-0.0800555f,0.0732484f},{0.0465363f,-0.0800543f,0.071384f},{0.0462804f,-0.0789085f,0.071384f}, - {0.0462805f,-0.0789088f,0.0732484f},{0.0458466f,-0.0778144f,0.071384f},{0.0458468f,-0.0778149f,0.0732484f}, - {0.0452483f,-0.0768055f,0.0732484f},{0.0452473f,-0.0768041f,0.071384f},{0.0444974f,-0.075901f,0.0732484f}, - {0.0444957f,-0.0758994f,0.071384f},{0.0436125f,-0.0751248f,0.071384f},{0.0436142f,-0.075126f,0.0732484f}, - {0.0426206f,-0.0744997f,0.0732484f},{0.0426177f,-0.0744982f,0.071384f},{0.0415373f,-0.0740358f,0.071384f}, - {0.0415395f,-0.0740365f,0.0732484f},{0.0403988f,-0.073749f,0.071384f},{0.0404009f,-0.0737495f,0.0732484f}, - {0.0392293f,-0.0736447f,0.0732484f},{0.0392271f,-0.0736446f,0.071384f},{0.0380562f,-0.0737252f,0.071384f}, - {0.038057f,-0.0737251f,0.0732484f},{0.0369109f,-0.0739891f,0.071384f},{0.0369109f,-0.0739891f,0.0732484f}, - {0.0457326f,-0.0846116f,0.071384f},{0.0450987f,-0.085603f,0.0732484f},{0.0450998f,-0.0856014f,0.071384f}, - {0.044317f,-0.0864818f,0.0732484f},{0.0443187f,-0.0864801f,0.071384f},{0.0434083f,-0.0872259f,0.0732484f}, - {0.0434093f,-0.0872252f,0.071384f},{0.0423947f,-0.0878178f,0.071384f},{0.0423945f,-0.087818f,0.0732484f}, - {0.0412975f,-0.0882443f,0.0732484f},{0.041298f,-0.0882442f,0.071384f},{0.0401493f,-0.0884924f,0.0732484f}, - {0.040151f,-0.0884923f,0.071384f},{0.0389749f,-0.0885572f,0.0732484f},{0.0389772f,-0.0885573f,0.071384f}, - {0.0378083f,-0.0884373f,0.071384f},{0.0378063f,-0.0884369f,0.0732484f},{0.0366703f,-0.088134f,0.0732484f}, - {0.0366734f,-0.0881351f,0.071384f},{0.0355984f,-0.087658f,0.071384f},{0.0355963f,-0.0876568f,0.0732484f}, - {0.0346116f,-0.0870176f,0.0732484f},{0.0346134f,-0.0870188f,0.071384f},{0.0337379f,-0.0862299f,0.0732484f}, - {0.0337395f,-0.0862314f,0.071384f},{0.0330008f,-0.0853175f,0.071384f},{0.0330004f,-0.0853169f,0.0732484f}, - {0.0324146f,-0.0842979f,0.0732484f},{0.0324146f,-0.0842979f,0.071384f},{0.02064f,-0.0442971f,0.0732484f}, - {0.0206399f,-0.0442969f,0.071384f},{0.0225785f,-0.0552777f,0.0732484f},{0.0225785f,-0.0552776f,0.071384f}, - {0.0216792f,-0.0516735f,0.0732484f},{0.0216792f,-0.0516732f,0.071384f},{0.0210316f,-0.0480087f,0.071384f}, - {0.0210317f,-0.048009f,0.0732484f},{0.0267447f,-0.0655989f,0.071384f},{0.0251156f,-0.0622535f,0.0732484f}, - {0.0267448f,-0.0655992f,0.0732484f},{0.0237253f,-0.0588085f,0.071384f},{0.0237254f,-0.0588086f,0.0732484f}, - {0.0251155f,-0.0622533f,0.071384f},{0.028609f,-0.0688327f,0.0732484f},{0.0286089f,-0.0688325f,0.071384f}, - {0.0307038f,-0.0719411f,0.0732484f},{0.0307038f,-0.0719411f,0.071384f},{0.0206235f,-0.00372882f,0.071384f}, - {0.0206235f,-0.00372882f,0.0732484f},{0.0466102f,3.97423e-017f,0.0732484f},{0.0466102f,3.97423e-017f,0.071384f}, - {0.0465018f,0.00126639f,0.071384f},{0.0461802f,0.00249579f,0.071384f},{0.0465022f,0.00126441f,0.0732484f}, - {0.0456552f,0.00365135f,0.071384f},{0.0461804f,0.00249531f,0.0732484f},{0.0456558f,0.00365019f,0.0732484f}, - {0.0449402f,0.00470316f,0.071384f},{0.0440587f,0.00561661f,0.071384f},{0.0449409f,0.00470218f,0.0732484f}, - {0.043034f,0.00636795f,0.071384f},{0.0440594f,0.00561601f,0.0732484f},{0.0430353f,0.00636709f,0.0732484f}, - {0.0418963f,0.00693455f,0.071384f},{0.040681f,0.00729936f,0.071384f},{0.0418969f,0.00693434f,0.0732484f}, - {0.0394182f,0.00745287f,0.071384f},{0.0406822f,0.00729903f,0.0732484f},{0.0394186f,0.0074529f,0.0732484f}, - {0.0381506f,0.00739003f,0.071384f},{0.0369109f,0.00711273f,0.071384f},{0.0381517f,0.00739014f,0.0732484f}, - {0.0369109f,0.00711273f,0.0732484f},{0.0465018f,-0.00126639f,0.0732484f},{0.0465022f,-0.00126441f,0.071384f}, - {0.0461802f,-0.00249579f,0.0732484f},{0.0456552f,-0.00365135f,0.0732484f},{0.0461804f,-0.00249531f,0.071384f}, - {0.0449402f,-0.00470316f,0.0732484f},{0.0456558f,-0.00365019f,0.071384f},{0.0449409f,-0.00470218f,0.071384f}, - {0.0440587f,-0.00561661f,0.0732484f},{0.043034f,-0.00636795f,0.0732484f},{0.0440594f,-0.00561601f,0.071384f}, - {0.0418963f,-0.00693455f,0.0732484f},{0.0430353f,-0.00636709f,0.071384f},{0.0418969f,-0.00693434f,0.071384f}, - {0.040681f,-0.00729936f,0.0732484f},{0.0394182f,-0.00745287f,0.0732484f},{0.0406822f,-0.00729903f,0.071384f}, - {0.0381506f,-0.00739003f,0.0732484f},{0.0394186f,-0.0074529f,0.071384f},{0.0381517f,-0.00739014f,0.071384f}, - {0.0369109f,-0.00711273f,0.0732484f},{0.0369109f,-0.00711273f,0.071384f},{0.0195103f,0.0755086f,0.071384f}, - {0.0195103f,0.0755086f,0.0732484f},{0.0418944f,0.000544649f,0.0732484f},{-0.0396981f,0.00274259f,0.0732484f}, - {-0.0346445f,-0.00688452f,0.0732484f},{-0.033477f,-0.00713571f,0.0732484f},{0.0417351f,0.00106869f,0.0732484f}, - {-0.0323894f,-0.0734732f,0.0732484f},{-0.033477f,-0.0739661f,0.0732484f},{-0.029784f,-0.081654f,0.0732484f}, - {0.0396989f,-0.0783596f,0.0732484f},{0.0402234f,-0.0785201f,0.0732484f},{0.038082f,0.0836861f,0.0732484f}, - {0.0386071f,0.0838444f,0.0732484f},{0.041477f,0.00155172f,0.0732484f},{0.041477f,-0.0795501f,0.0732484f}, - {0.0411295f,-0.0791268f,0.0732484f},{0.0417351f,-0.0800331f,0.0732484f},{0.0411295f,0.00197505f,0.0732484f}, - {0.0418944f,-0.0805572f,0.0732484f},{0.0407062f,0.00232262f,0.0732484f},{0.0402234f,0.00258168f,0.0732484f}, - {0.0396989f,0.00274216f,0.0732484f},{0.0391526f,0.00279661f,0.0732484f},{0.0386071f,0.00274259f,0.0732484f}, - {0.038082f,0.00258432f,0.0732484f},{0.0358134f,0.00688407f,0.0732484f},{0.0375977f,0.00232618f,0.0732484f}, - {0.0364081f,0.000545524f,0.0732484f},{0.0236456f,0.00527349f,0.0732484f},{0.0365672f,0.00107021f,0.0732484f}, - {0.033477f,0.00713571f,0.0732484f},{0.0371735f,0.00197799f,0.0732484f},{0.0346445f,0.00688452f,0.0732484f}, - {0.0346482f,-0.00688511f,0.0732484f},{0.0241643f,0.0086281f,0.0732484f},{0.0243399f,0.00776655f,0.0732484f}, - {0.0230511f,-0.00462716f,0.0732484f},{0.023646f,-0.00527393f,0.0732484f},{-0.0396981f,0.0838444f,0.0732484f}, - {-0.0402232f,0.0836861f,0.0732484f},{-0.0386063f,0.083844f,0.0732484f},{-0.0380818f,0.0836835f,0.0732484f}, - {-0.0346445f,0.0742173f,0.0732484f},{-0.0308772f,0.0823454f,0.0732484f},{0.0211824f,0.075113f,0.0732484f}, - {0.0219051f,0.0746381f,0.0732484f},{0.0358165f,0.0742161f,0.0732484f},{0.0323894f,0.0734732f,0.0732484f}, - {0.033477f,0.0739661f,0.0732484f},{0.029784f,0.081654f,0.0732484f},{0.03177f,0.0832527f,0.0732484f}, - {0.0364081f,0.0816473f,0.0732484f},{0.0375977f,0.083428f,0.0732484f},{0.0371735f,0.0830798f,0.0732484f}, - {0.0407062f,0.0834244f,0.0732484f},{0.0417351f,0.0821705f,0.0732484f},{0.0418944f,0.0816464f,0.0732484f}, - {0.041477f,0.0826535f,0.0732484f},{0.0411295f,0.0830768f,0.0732484f},{0.0396989f,0.083844f,0.0732484f}, - {0.0402234f,0.0836835f,0.0732484f},{0.0391526f,0.0838984f,0.0732484f},{0.0365672f,0.082172f,0.0732484f}, - {0.0368257f,0.0826556f,0.0732484f},{0.0346482f,0.0742167f,0.0732484f},{0.0308757f,0.0823441f,0.0732484f}, - {0.0285789f,0.0812367f,0.0732484f},{0.0314497f,0.072778f,0.0732484f},{0.0224988f,0.0740097f,0.0732484f}, - {0.0229321f,0.0732614f,0.0732484f},{0.0203695f,0.0754087f,0.0732484f},{-0.0314481f,0.0727748f,0.0732484f}, - {-0.0285817f,0.0812363f,0.0732484f},{-0.0231141f,0.0708224f,0.0732484f},{-0.0407075f,0.083428f,0.0732484f}, - {-0.0411317f,0.0830798f,0.0732484f},{-0.0417379f,0.082172f,0.0732484f},{-0.0418971f,0.0816473f,0.0732484f}, - {-0.0414795f,0.0826556f,0.0732484f},{-0.0391526f,0.0838984f,0.0732484f},{-0.0358134f,0.0742177f,0.0732484f}, - {-0.037599f,0.0834244f,0.0732484f},{-0.033477f,0.0739661f,0.0732484f},{-0.0418971f,0.000545524f,0.0732484f}, - {-0.0371757f,0.0830768f,0.0732484f},{-0.0368282f,0.0826535f,0.0732484f},{-0.0365701f,0.0821705f,0.0732484f}, - {-0.0323867f,0.0734705f,0.0732484f},{-0.0297859f,0.0816548f,0.0732484f},{-0.0231106f,0.0727502f,0.0732484f}, - {-0.0241967f,-0.00852371f,0.0732484f},{-0.0323867f,-0.00763125f,0.0732484f},{-0.0314481f,-0.00832702f,0.0732484f}, - {-0.033477f,0.00713571f,0.0732484f},{-0.0365701f,0.00106869f,0.0732484f},{-0.0364108f,0.000544649f,0.0732484f}, - {-0.0323894f,0.00762858f,0.0732484f},{-0.0386063f,0.00274216f,0.0732484f},{-0.0391526f,0.00279661f,0.0732484f}, - {-0.0368282f,0.00155172f,0.0732484f},{-0.0417379f,0.00107021f,0.0732484f},{-0.0414795f,0.0015538f,0.0732484f}, - {-0.0411317f,0.00197799f,0.0732484f},{-0.0407075f,0.00232618f,0.0732484f},{-0.0402232f,0.00258432f,0.0732484f}, - {-0.0418971f,-0.0805563f,0.0732484f},{-0.0417379f,-0.0800316f,0.0732484f},{-0.0358134f,-0.00688407f,0.0732484f}, - {-0.0225127f,0.00424291f,0.0732484f},{-0.0380818f,0.00258168f,0.0732484f},{-0.0358165f,0.00688568f,0.0732484f}, - {0.0214967f,-0.00383203f,0.0732484f},{0.0223196f,0.0041374f,0.0732484f},{0.0214955f,0.00383263f,0.0732484f}, - {-0.0216024f,0.00385961f,0.0732484f},{-0.024244f,-0.0065653f,0.0732484f},{0.0314497f,-0.00832383f,0.0732484f}, - {0.0243085f,-0.00688932f,0.0732484f},{0.0364081f,-0.0805563f,0.0732484f},{0.0308772f,-0.0823454f,0.0732484f}, - {0.0314481f,-0.0727748f,0.0732484f},{0.0285817f,-0.0812363f,0.0732484f},{0.0230854f,-0.0707188f,0.0732484f}, - {-0.0285788f,-0.0812367f,0.0732484f},{-0.0213716f,-0.0750107f,0.0732484f},{-0.022144f,-0.0744194f,0.0732484f}, - {-0.0365701f,-0.0800331f,0.0732484f},{-0.0391526f,-0.0783052f,0.0732484f},{-0.03177f,-0.0832527f,0.0732484f}, - {-0.0308757f,-0.0823441f,0.0732484f},{-0.0364108f,-0.0805572f,0.0732484f},{-0.0414795f,-0.079548f,0.0732484f}, - {-0.0411317f,-0.0791238f,0.0732484f},{-0.0407075f,-0.0787756f,0.0732484f},{-0.0402232f,-0.0785175f,0.0732484f}, - {-0.0396981f,-0.0783592f,0.0732484f},{-0.0386063f,-0.0783596f,0.0732484f},{-0.0368282f,-0.0795501f,0.0732484f}, - {-0.0371757f,-0.0791268f,0.0732484f},{-0.0346482f,-0.0742167f,0.0732484f},{-0.0358165f,-0.0742161f,0.0732484f}, - {0.0386071f,-0.0783592f,0.0732484f},{0.038082f,-0.0785175f,0.0732484f},{-0.0314497f,-0.072778f,0.0732484f}, - {0.0391526f,-0.0783052f,0.0732484f},{0.0407062f,-0.0787792f,0.0732484f},{0.0358134f,-0.0742177f,0.0732484f}, - {0.0375977f,-0.0787756f,0.0732484f},{0.0368257f,-0.079548f,0.0732484f},{0.0346445f,-0.0742173f,0.0732484f}, - {0.0365672f,-0.0800316f,0.0732484f},{0.0371735f,-0.0791238f,0.0732484f},{0.0297859f,-0.0816548f,0.0732484f}, - {0.033477f,-0.0739661f,0.0732484f},{0.0317708f,-0.0832554f,0.0732484f},{0.0323867f,-0.0734706f,0.0732484f}, - {0.0229318f,-0.0732619f,0.0732484f},{0.0223212f,-0.0041373f,0.0732484f},{0.0240731f,-0.00604206f,0.0732484f}, - {0.0323894f,-0.00762858f,0.0732484f},{0.0243087f,0.00688805f,0.0732484f},{0.0314481f,0.00832702f,0.0732484f}, - {0.0323867f,0.00763125f,0.0732484f},{0.0358165f,-0.00688568f,0.0732484f},{-0.023239f,0.071786f,0.0732484f}, - {0.0232328f,0.0715697f,0.0732484f},{0.0230844f,0.0707181f,0.0732484f},{0.0231812f,0.072433f,0.0732484f}, - {0.0240729f,0.00604156f,0.0732484f},{0.02305f,0.00462664f,0.0732484f},{0.033477f,-0.00713571f,0.0732484f}, - {0.024339f,-0.00776783f,0.0732484f},{0.0241632f,-0.00862874f,0.0732484f},{-0.0314497f,0.00832383f,0.0732484f}, - {-0.0346482f,0.00688511f,0.0732484f},{0.0231813f,-0.0724342f,0.0732484f},{0.0232336f,-0.071571f,0.0732484f}, - {0.021904f,-0.0746385f,0.0732484f},{0.0224985f,-0.0740101f,0.0732484f},{0.0203684f,-0.0754081f,0.0732484f}, - {0.0211809f,-0.0751129f,0.0732484f},{-0.0204736f,-0.075382f,0.0732484f},{-0.0243511f,-0.0075482f,0.0732484f}, - {-0.0232912f,0.00485238f,0.0732484f},{-0.0380818f,-0.0785201f,0.0732484f},{-0.037599f,-0.0787792f,0.0732484f}, - {-0.0364108f,0.0816464f,0.0732484f},{-0.0317708f,0.0832554f,0.0732484f},{0.0368257f,0.0015538f,0.0732484f}, - {-0.037599f,0.00232262f,0.0732484f},{-0.0371757f,0.00197505f,0.0732484f},{0.0314481f,0.0727748f,0.071384f}, - {0.0229318f,0.0732619f,0.071384f},{-0.0358134f,-0.0742177f,0.071384f},{-0.0375977f,-0.0787756f,0.071384f}, - {-0.038082f,-0.0785175f,0.071384f},{-0.0391526f,-0.0783052f,0.071384f},{0.0243399f,-0.00776655f,0.071384f}, - {0.0243087f,-0.00688805f,0.071384f},{0.0358165f,0.00688568f,0.071384f},{0.0380818f,0.00258168f,0.071384f}, - {0.037599f,0.00232262f,0.071384f},{0.0241643f,-0.0086281f,0.071384f},{0.033477f,-0.00713571f,0.071384f}, - {0.0323867f,-0.00763125f,0.071384f},{0.0396981f,0.00274259f,0.071384f},{0.0391526f,0.00279661f,0.071384f}, - {0.0407075f,0.00232618f,0.071384f},{0.0402232f,0.00258432f,0.071384f},{0.0417379f,0.00107021f,0.071384f}, - {0.0358134f,-0.00688407f,0.071384f},{0.0346445f,-0.00688452f,0.071384f},{0.0417379f,0.082172f,0.071384f}, - {0.0407075f,0.083428f,0.071384f},{0.0402232f,0.0836861f,0.071384f},{0.0396981f,0.0838444f,0.071384f}, - {0.0418971f,0.000545524f,0.071384f},{0.0414795f,0.0015538f,0.071384f},{0.0411317f,0.00197799f,0.071384f}, - {0.0386063f,0.00274216f,0.071384f},{0.033477f,0.00713571f,0.071384f},{0.0364108f,0.000544649f,0.071384f}, - {0.0323894f,0.00762858f,0.071384f},{0.0240729f,-0.00604156f,0.071384f},{0.0236456f,-0.00527349f,0.071384f}, - {0.0223212f,0.0041373f,0.071384f},{0.0230511f,0.00462716f,0.071384f},{0.0223196f,-0.0041374f,0.071384f}, - {0.0346482f,0.00688511f,0.071384f},{0.0368282f,0.00155172f,0.071384f},{0.0365701f,0.00106869f,0.071384f}, - {-0.0346445f,-0.0742173f,0.071384f},{-0.0371735f,-0.0791238f,0.071384f},{-0.0386071f,-0.0783592f,0.071384f}, - {-0.0396989f,-0.0783596f,0.071384f},{-0.0402234f,-0.0785201f,0.071384f},{-0.0417351f,-0.0800331f,0.071384f}, - {-0.0407062f,-0.0787792f,0.071384f},{-0.0411295f,-0.0791268f,0.071384f},{-0.041477f,-0.0795501f,0.071384f}, - {-0.0285817f,-0.0812363f,0.071384f},{-0.0323867f,-0.0734706f,0.071384f},{-0.0314481f,-0.0727748f,0.071384f}, - {-0.0365672f,-0.0800316f,0.071384f},{-0.0308772f,-0.0823454f,0.071384f},{-0.0364081f,-0.0805563f,0.071384f}, - {0.029784f,-0.081654f,0.071384f},{0.0323894f,-0.0734732f,0.071384f},{0.033477f,-0.0739661f,0.071384f}, - {0.0219051f,-0.0746381f,0.071384f},{0.0211824f,-0.075113f,0.071384f},{0.0391526f,-0.0783052f,0.071384f}, - {0.0396981f,-0.0783592f,0.071384f},{0.0386063f,-0.0783596f,0.071384f},{0.0411317f,-0.0791238f,0.071384f}, - {0.0407075f,-0.0787756f,0.071384f},{0.0414795f,-0.079548f,0.071384f},{0.0365701f,-0.0800331f,0.071384f}, - {0.0417379f,-0.0800316f,0.071384f},{0.0418971f,-0.0805563f,0.071384f},{0.03177f,-0.0832527f,0.071384f}, - {0.0308757f,-0.0823441f,0.071384f},{0.0364108f,-0.0805572f,0.071384f},{0.0402232f,-0.0785175f,0.071384f}, - {0.0380818f,-0.0785201f,0.071384f},{0.0346482f,-0.0742167f,0.071384f},{0.0368282f,-0.0795501f,0.071384f}, - {0.0371757f,-0.0791268f,0.071384f},{0.0285789f,-0.0812367f,0.071384f},{0.0314497f,-0.072778f,0.071384f}, - {0.0224988f,-0.0740097f,0.071384f},{0.0229321f,-0.0732614f,0.071384f},{0.0230844f,-0.0707181f,0.071384f}, - {-0.0418944f,-0.0805572f,0.071384f},{-0.033477f,-0.0739661f,0.071384f},{-0.0297859f,-0.0816548f,0.071384f}, - {-0.0317708f,-0.0832554f,0.071384f},{-0.0243512f,-0.00754595f,0.071384f},{-0.0242437f,-0.00656417f,0.071384f}, - {-0.0216035f,0.00385992f,0.071384f},{-0.024197f,-0.00852259f,0.071384f},{-0.0323867f,0.00763125f,0.071384f}, - {-0.0364081f,0.000545524f,0.071384f},{-0.0418944f,0.000544649f,0.071384f},{-0.0411295f,0.00197505f,0.071384f}, - {-0.0407062f,0.00232262f,0.071384f},{-0.0386071f,0.00274259f,0.071384f},{-0.0391526f,0.00279661f,0.071384f}, - {-0.0358134f,0.00688407f,0.071384f},{-0.0375977f,0.00232618f,0.071384f},{-0.038082f,0.00258432f,0.071384f}, - {-0.041477f,0.00155172f,0.071384f},{-0.0417351f,0.00106869f,0.071384f},{-0.0402234f,0.00258168f,0.071384f}, - {-0.0371735f,0.00197799f,0.071384f},{-0.0346445f,0.00688452f,0.071384f},{-0.0396989f,0.00274216f,0.071384f}, - {-0.0358165f,-0.00688568f,0.071384f},{-0.033477f,0.00713571f,0.071384f},{-0.023292f,0.00485321f,0.071384f}, - {-0.0346482f,-0.00688511f,0.071384f},{0.0314497f,0.00832383f,0.071384f},{0.0243085f,0.00688932f,0.071384f}, - {0.0230854f,0.0707188f,0.071384f},{-0.0346482f,0.0742167f,0.071384f},{-0.033477f,0.0739661f,0.071384f}, - {-0.0231144f,0.0708235f,0.071384f},{-0.0368257f,0.0826556f,0.071384f},{-0.0396989f,0.083844f,0.071384f}, - {-0.0391526f,0.0838984f,0.071384f},{-0.0375977f,0.083428f,0.071384f},{-0.038082f,0.0836861f,0.071384f}, - {-0.0411295f,0.0830768f,0.071384f},{-0.041477f,0.0826535f,0.071384f},{-0.0371735f,0.0830798f,0.071384f}, - {-0.0418944f,0.0816464f,0.071384f},{-0.0417351f,0.0821705f,0.071384f},{-0.0402234f,0.0836835f,0.071384f}, - {-0.0386071f,0.0838444f,0.071384f},{-0.0407062f,0.0834244f,0.071384f},{-0.0364081f,0.0816473f,0.071384f}, - {-0.0365672f,0.082172f,0.071384f},{-0.03177f,0.0832527f,0.071384f},{-0.0308757f,0.0823441f,0.071384f}, - {-0.0358165f,0.0742161f,0.071384f},{-0.029784f,0.081654f,0.071384f},{-0.0323894f,0.0734732f,0.071384f}, - {-0.0285788f,0.0812367f,0.071384f},{-0.0314497f,0.072778f,0.071384f},{-0.0231103f,0.0727513f,0.071384f}, - {0.0391526f,0.0838984f,0.071384f},{0.0380818f,0.0836835f,0.071384f},{0.0386063f,0.083844f,0.071384f}, - {0.0414795f,0.0826556f,0.071384f},{0.0411317f,0.0830798f,0.071384f},{0.0418971f,0.0816473f,0.071384f}, - {0.0358134f,0.0742177f,0.071384f},{0.0346445f,0.0742173f,0.071384f},{0.033477f,0.0739661f,0.071384f}, - {0.0371757f,0.0830768f,0.071384f},{0.037599f,0.0834244f,0.071384f},{0.0368282f,0.0826535f,0.071384f}, - {0.0308772f,0.0823454f,0.071384f},{0.0323867f,0.0734705f,0.071384f},{0.0297859f,0.0816548f,0.071384f}, - {0.0285817f,0.0812363f,0.071384f},{0.0187991f,0.0422603f,0.071384f},{0.0232336f,0.071571f,0.071384f}, - {0.0231813f,0.0724342f,0.071384f},{0.021904f,0.0746385f,0.071384f},{0.0224985f,0.0740101f,0.071384f}, - {0.0203684f,0.0754081f,0.071384f},{0.0211809f,0.0751129f,0.071384f},{-0.023239f,0.0717882f,0.071384f}, - {0.024339f,0.00776783f,0.071384f},{0.0241632f,0.00862874f,0.071384f},{-0.0314481f,0.00832702f,0.071384f}, - {-0.0225146f,0.00424405f,0.071384f},{-0.0323894f,-0.00762858f,0.071384f},{-0.0314497f,-0.00832383f,0.071384f}, - {0.023646f,0.00527393f,0.071384f},{0.0240731f,0.00604206f,0.071384f},{0.0314481f,-0.00832702f,0.071384f}, - {0.02305f,-0.00462664f,0.071384f},{0.0214955f,-0.00383263f,0.071384f},{0.0214967f,0.00383203f,0.071384f}, - {-0.033477f,-0.00713571f,0.071384f},{-0.0213735f,-0.0750096f,0.071384f},{-0.0221448f,-0.0744186f,0.071384f}, - {-0.0204747f,-0.0753817f,0.071384f},{0.0232328f,-0.0715697f,0.071384f},{0.0231812f,-0.072433f,0.071384f}, - {0.0203695f,-0.0754087f,0.071384f},{-0.0368257f,-0.079548f,0.071384f},{0.0358165f,-0.0742161f,0.071384f}, - {0.037599f,-0.0787792f,0.071384f},{0.0365701f,0.0821705f,0.071384f},{0.0364108f,0.0816464f,0.071384f}, - {0.0317708f,0.0832554f,0.071384f},{0.0371757f,0.00197505f,0.071384f},{-0.0368257f,0.0015538f,0.071384f}, - {-0.0365672f,0.00107021f,0.071384f},{0.0386654f,0.0838556f,0.0732484f},{0.0391526f,0.0838984f,0.080706f}, - {0.0396411f,0.0838554f,0.0732484f},{0.040109f,0.0837298f,0.080706f},{0.0396398f,0.0838556f,0.080706f}, - {0.0401103f,0.0837293f,0.0732484f},{0.0405482f,0.0835251f,0.080706f},{0.0405499f,0.0835245f,0.0732484f}, - {0.0409476f,0.0832459f,0.080706f},{0.0412967f,0.0828968f,0.0732484f},{0.0412948f,0.0828995f,0.080706f}, - {0.0409503f,0.083244f,0.0732484f},{0.0415759f,0.0824974f,0.0732484f},{0.0415753f,0.0824991f,0.080706f}, - {0.0417806f,0.0820583f,0.0732484f},{0.0417801f,0.0820595f,0.080706f},{0.0419062f,0.0815903f,0.080706f}, - {0.0419062f,0.0815903f,0.0732484f},{0.0419492f,0.0811018f,0.080706f},{0.0386641f,0.0838554f,0.080706f}, - {0.0381949f,0.0837293f,0.080706f},{0.0381961f,0.0837298f,0.0732484f},{0.037757f,0.0835251f,0.0732484f}, - {0.0377553f,0.0835245f,0.080706f},{0.0373549f,0.083244f,0.080706f},{0.0373576f,0.0832459f,0.0732484f}, - {0.0370085f,0.0828968f,0.080706f},{0.0370104f,0.0828995f,0.0732484f},{0.0367299f,0.0824991f,0.0732484f}, - {0.0367293f,0.0824974f,0.080706f},{0.0365246f,0.0820583f,0.080706f},{0.0365251f,0.0820595f,0.0732484f}, - {0.036399f,0.0815903f,0.080706f},{0.036399f,0.0815903f,0.0732484f},{0.036356f,0.0811018f,0.080706f}, - {0.0351171f,0.0787719f,0.0751128f},{0.0351836f,0.0786864f,0.0732484f},{0.0355373f,0.0781593f,0.0732484f}, - {0.0394705f,0.0764554f,0.0732484f},{0.0391526f,0.0764408f,0.0751128f},{0.0388355f,0.076451f,0.0732484f}, - {0.0348819f,0.0792468f,0.0732484f},{0.034847f,0.0793182f,0.0751128f},{0.034664f,0.0798436f,0.0732484f}, - {0.0346475f,0.079899f,0.0751128f},{0.0345395f,0.080468f,0.0732484f},{0.0345304f,0.0804959f,0.0751128f}, - {0.0344916f,0.0811018f,0.0732484f},{0.0344918f,0.0811018f,0.0751128f},{0.0356898f,0.0779809f,0.0751128f}, - {0.0364147f,0.0773294f,0.0751128f},{0.0359728f,0.0776969f,0.0732484f},{0.0370083f,0.076961f,0.0732484f}, - {0.0364669f,0.0772961f,0.0732484f},{0.037596f,0.0767216f,0.0732484f},{0.0372582f,0.0768428f,0.0751128f}, - {0.0381846f,0.0765423f,0.0751128f},{0.0382078f,0.0765464f,0.0732484f},{0.0407151f,0.0767081f,0.0732484f}, - {0.041049f,0.0768446f,0.0751128f},{0.0401226f,0.0765432f,0.0751128f},{0.0401013f,0.0765401f,0.0732484f}, - {0.0423348f,0.0776954f,0.0732484f},{0.0418908f,0.0773301f,0.0751128f},{0.0418394f,0.0772978f,0.0732484f}, - {0.0412894f,0.0769789f,0.0732484f},{0.0431881f,0.0787719f,0.0751128f},{0.0431347f,0.0786808f,0.0732484f}, - {0.0434289f,0.0792447f,0.0732484f},{0.0426156f,0.0779832f,0.0751128f},{0.0427645f,0.0781631f,0.0732484f}, - {0.0436546f,0.079901f,0.0751128f},{0.0436222f,0.0798502f,0.0732484f},{0.0437699f,0.0804677f,0.0732484f}, - {0.0434582f,0.0793181f,0.0751128f},{0.0438136f,0.0811018f,0.0732484f},{0.0437742f,0.0804963f,0.0751128f}, - {0.0438134f,0.0811018f,0.0751128f},{0.0391526f,0.0857628f,0.0900281f},{0.0418436f,0.0857628f,0.0751128f}, - {0.0391526f,0.0857628f,0.0751128f},{0.0364616f,0.0857628f,0.0751128f},{0.0364616f,0.0857628f,0.0900281f}, - {0.0418436f,0.0857628f,0.0900281f},{0.0386654f,0.078348f,0.0918925f},{0.0391526f,0.0783052f,0.0918925f}, - {0.0391526f,0.0783052f,0.0844349f},{0.0396411f,0.0783482f,0.0918925f},{0.040109f,0.0784738f,0.0844349f}, - {0.0396398f,0.078348f,0.0844349f},{0.0401103f,0.0784743f,0.0918925f},{0.0405482f,0.0786785f,0.0844349f}, - {0.0405499f,0.0786791f,0.0918925f},{0.0409476f,0.0789577f,0.0844349f},{0.0412967f,0.0793068f,0.0918925f}, - {0.0412948f,0.0793041f,0.0844349f},{0.0409503f,0.0789596f,0.0918925f},{0.0415759f,0.0797062f,0.0918925f}, - {0.0415753f,0.0797045f,0.0844349f},{0.0417806f,0.0801454f,0.0918925f},{0.0417801f,0.0801441f,0.0844349f}, - {0.0419062f,0.0806133f,0.0844349f},{0.0419062f,0.0806133f,0.0918925f},{0.0419492f,0.0811018f,0.0918925f}, - {0.0419492f,0.0811018f,0.0844349f},{0.0386641f,0.0783482f,0.0844349f},{0.0381949f,0.0784743f,0.0844349f}, - {0.0381961f,0.0784738f,0.0918925f},{0.037757f,0.0786785f,0.0918925f},{0.0377553f,0.0786791f,0.0844349f}, - {0.0373549f,0.0789596f,0.0844349f},{0.0373576f,0.0789577f,0.0918925f},{0.0370085f,0.0793068f,0.0844349f}, - {0.0370104f,0.0793041f,0.0918925f},{0.0367299f,0.0797045f,0.0918925f},{0.0367293f,0.0797062f,0.0844349f}, - {0.0365246f,0.0801454f,0.0844349f},{0.0365251f,0.0801441f,0.0918925f},{0.036399f,0.0806133f,0.0844349f}, - {0.036399f,0.0806133f,0.0918925f},{0.036356f,0.0811018f,0.0918925f},{0.036356f,0.0811018f,0.0844349f}, - {0.0351171f,0.0834317f,0.0900281f},{0.0351836f,0.0835172f,0.0918925f},{0.0355373f,0.0840443f,0.0918925f}, - {0.0394705f,0.0857482f,0.0918925f},{0.0388355f,0.0857526f,0.0918925f},{0.0348819f,0.0829568f,0.0918925f}, - {0.034847f,0.0828854f,0.0900281f},{0.034664f,0.08236f,0.0918925f},{0.0346475f,0.0823046f,0.0900281f}, - {0.0345395f,0.0817356f,0.0918925f},{0.0345304f,0.0817077f,0.0900281f},{0.0344916f,0.0811018f,0.0918925f}, - {0.0344917f,0.0811018f,0.0900281f},{0.0356898f,0.0842227f,0.0900281f},{0.0364147f,0.0848742f,0.0900281f}, - {0.0359728f,0.0845067f,0.0918925f},{0.0370083f,0.0852426f,0.0918925f},{0.0364669f,0.0849075f,0.0918925f}, - {0.037596f,0.0854821f,0.0918925f},{0.0372582f,0.0853608f,0.0900281f},{0.0381846f,0.0856613f,0.0900281f}, - {0.0382078f,0.0856572f,0.0918925f},{0.0407151f,0.0854955f,0.0918925f},{0.041049f,0.0853591f,0.0900281f}, - {0.0401226f,0.0856604f,0.0900281f},{0.0401013f,0.0856635f,0.0918925f},{0.0423348f,0.0845082f,0.0918925f}, - {0.0418908f,0.0848735f,0.0900281f},{0.0418394f,0.0849058f,0.0918925f},{0.0412894f,0.0852247f,0.0918925f}, - {0.0431881f,0.0834317f,0.0900281f},{0.0431347f,0.0835228f,0.0918925f},{0.0434289f,0.0829589f,0.0918925f}, - {0.0426156f,0.0842204f,0.0900281f},{0.0427645f,0.0840405f,0.0918925f},{0.0436546f,0.0823026f,0.0900281f}, - {0.0436222f,0.0823534f,0.0918925f},{0.0437699f,0.0817359f,0.0918925f},{0.0434582f,0.0828855f,0.0900281f}, - {0.0438136f,0.0811018f,0.0918925f},{0.0437742f,0.0817073f,0.0900281f},{0.0438134f,0.0811018f,0.0900281f}, - {0.0337705f,0.0811018f,0.0751128f},{0.0351171f,0.0787719f,0.0900281f},{0.0364616f,0.0764408f,0.0751128f}, - {0.0364616f,0.0764408f,0.0900281f},{0.0337705f,0.0811018f,0.0900281f},{0.0417795f,0.0801478f,0.0732484f}, - {0.0419056f,0.0806167f,0.0732484f},{0.0359715f,0.0845087f,0.0732484f},{0.0364649f,0.0849099f,0.0732484f}, - {0.0409507f,0.0789629f,0.0732484f},{0.041295f,0.0793075f,0.0732484f},{0.0396393f,0.0783484f,0.0732484f}, - {0.0401104f,0.0784759f,0.0732484f},{0.0405519f,0.078683f,0.0732484f},{0.0386677f,0.0783479f,0.0732484f}, - {0.0381969f,0.0784733f,0.0732484f},{0.0377546f,0.0786785f,0.0732484f},{0.0365233f,0.0801446f,0.0732484f}, - {0.0373546f,0.0789579f,0.0732484f},{0.0367296f,0.0797026f,0.0732484f},{0.0370095f,0.079303f,0.0732484f}, - {0.036397f,0.0806159f,0.0732484f},{0.0345334f,0.0817376f,0.0732484f},{0.0351704f,0.0835247f,0.0732484f}, - {0.0348854f,0.0829569f,0.0732484f},{0.0346707f,0.0823578f,0.0732484f},{0.0355373f,0.0840442f,0.0732484f}, - {0.0370084f,0.0852404f,0.0732484f},{0.0382048f,0.0856654f,0.0732484f},{0.0388351f,0.085752f,0.0732484f}, - {0.0394712f,0.0857519f,0.0732484f},{0.0375921f,0.0854939f,0.0732484f},{0.0401013f,0.0856652f,0.0732484f}, - {0.0407137f,0.0854936f,0.0732484f},{0.0418405f,0.0849096f,0.0732484f},{0.0412969f,0.0852402f,0.0732484f}, - {0.042334f,0.084508f,0.0732484f},{0.0434248f,0.0829572f,0.0732484f},{0.0427684f,0.0840431f,0.0732484f}, - {0.0431324f,0.0835222f,0.0732484f},{0.0436384f,0.0823587f,0.0732484f},{0.0437705f,0.0817364f,0.0732484f}, - {0.041574f,0.0797065f,0.0732484f},{0.0445347f,0.0811018f,0.0751128f},{0.0431881f,0.0834317f,0.0751128f}, - {0.0445347f,0.0811018f,0.0900281f},{0.0351171f,0.0834317f,0.0751128f},{0.0419082f,0.0806159f,0.080706f}, - {0.0412957f,0.079303f,0.080706f},{0.0415756f,0.0797026f,0.080706f},{0.0417819f,0.0801446f,0.080706f}, - {0.0401082f,0.0784733f,0.080706f},{0.0396375f,0.0783479f,0.080706f},{0.0405506f,0.0786785f,0.080706f}, - {0.0381948f,0.0784759f,0.080706f},{0.0386659f,0.0783484f,0.080706f},{0.0391526f,0.0783052f,0.080706f}, - {0.0373545f,0.0789629f,0.080706f},{0.0377533f,0.078683f,0.080706f},{0.0367312f,0.0797065f,0.080706f}, - {0.0370102f,0.0793075f,0.080706f},{0.0365256f,0.0801478f,0.080706f},{0.0363996f,0.0806167f,0.080706f}, - {0.0409506f,0.0789579f,0.080706f},{0.0391526f,0.0764408f,0.0900281f},{0.0418436f,0.0764408f,0.0751128f}, - {0.0418436f,0.0764408f,0.0900281f},{0.0346707f,0.0798458f,0.0918925f},{0.0391526f,0.0838984f,0.0918925f}, - {0.0359715f,0.0776949f,0.0918925f},{0.0364649f,0.0772937f,0.0918925f},{0.0355373f,0.0781595f,0.0918925f}, - {0.0351704f,0.0786789f,0.0918925f},{0.0388351f,0.0764516f,0.0918925f},{0.0382048f,0.0765382f,0.0918925f}, - {0.0375921f,0.0767097f,0.0918925f},{0.0407137f,0.07671f,0.0918925f},{0.0401013f,0.0765384f,0.0918925f}, - {0.0370084f,0.0769632f,0.0918925f},{0.0394712f,0.0764517f,0.0918925f},{0.0412969f,0.0769634f,0.0918925f}, - {0.0418405f,0.077294f,0.0918925f},{0.042334f,0.0776957f,0.0918925f},{0.0431324f,0.0786814f,0.0918925f}, - {0.0434248f,0.0792464f,0.0918925f},{0.0436384f,0.0798449f,0.0918925f},{0.0367296f,0.082501f,0.0918925f}, - {0.0365233f,0.082059f,0.0918925f},{0.0377546f,0.0835251f,0.0918925f},{0.0437705f,0.0804672f,0.0918925f}, - {0.0419056f,0.0815869f,0.0918925f},{0.0417795f,0.0820558f,0.0918925f},{0.041295f,0.0828961f,0.0918925f}, - {0.041574f,0.0824971f,0.0918925f},{0.0373546f,0.0832457f,0.0918925f},{0.0405519f,0.0835206f,0.0918925f}, - {0.0409507f,0.0832407f,0.0918925f},{0.0396393f,0.0838552f,0.0918925f},{0.0401104f,0.0837277f,0.0918925f}, - {0.0381969f,0.0837303f,0.0918925f},{0.0386677f,0.0838558f,0.0918925f},{0.0370095f,0.0829006f,0.0918925f}, - {0.036397f,0.0815877f,0.0918925f},{0.0345334f,0.080466f,0.0918925f},{0.0348854f,0.0792467f,0.0918925f}, - {0.0427684f,0.0781605f,0.0918925f},{0.0431881f,0.0787719f,0.0900281f},{0.034531f,0.0804963f,0.0900281f}, - {0.034847f,0.0793181f,0.0900281f},{0.0346506f,0.079901f,0.0900281f},{0.0356896f,0.0779832f,0.0900281f}, - {0.0381825f,0.0765432f,0.0900281f},{0.0372562f,0.0768446f,0.0900281f},{0.0418905f,0.0773294f,0.0900281f}, - {0.0401206f,0.0765423f,0.0900281f},{0.0426154f,0.0779809f,0.0900281f},{0.0434581f,0.0793182f,0.0900281f}, - {0.0436577f,0.079899f,0.0900281f},{0.0437748f,0.0804959f,0.0900281f},{0.041047f,0.0768428f,0.0900281f}, - {0.0364144f,0.0773301f,0.0900281f},{0.0401082f,0.0837303f,0.0844349f},{0.0386659f,0.0838552f,0.0844349f}, - {0.0381948f,0.0837277f,0.0844349f},{0.0365256f,0.0820558f,0.0844349f},{0.0391526f,0.0838984f,0.0844349f}, - {0.0396375f,0.0838558f,0.0844349f},{0.0370102f,0.0828961f,0.0844349f},{0.0367312f,0.0824971f,0.0844349f}, - {0.0377533f,0.0835206f,0.0844349f},{0.0373545f,0.0832407f,0.0844349f},{0.0363996f,0.0815869f,0.0844349f}, - {0.0405506f,0.0835251f,0.0844349f},{0.0412957f,0.0829006f,0.0844349f},{0.0409506f,0.0832457f,0.0844349f}, - {0.0415756f,0.082501f,0.0844349f},{0.0417819f,0.082059f,0.0844349f},{0.0419082f,0.0815877f,0.0844349f}, - {0.034531f,0.0817073f,0.0751128f},{0.034847f,0.0828855f,0.0751128f},{0.0346506f,0.0823026f,0.0751128f}, - {0.0356896f,0.0842204f,0.0751128f},{0.0381825f,0.0856604f,0.0751128f},{0.0372562f,0.0853591f,0.0751128f}, - {0.0418905f,0.0848742f,0.0751128f},{0.0401206f,0.0856613f,0.0751128f},{0.0426154f,0.0842227f,0.0751128f}, - {0.0434581f,0.0828854f,0.0751128f},{0.0436577f,0.0823046f,0.0751128f},{0.0437748f,0.0817077f,0.0751128f}, - {0.041047f,0.0853608f,0.0751128f},{0.0364144f,0.0848735f,0.0751128f},{-0.0396398f,-0.078348f,0.0732484f}, - {-0.0391526f,-0.0783052f,0.080706f},{-0.0386641f,-0.0783482f,0.0732484f},{-0.0381961f,-0.0784738f,0.080706f}, - {-0.0386654f,-0.078348f,0.080706f},{-0.0381949f,-0.0784743f,0.0732484f},{-0.037757f,-0.0786785f,0.080706f}, - {-0.0377553f,-0.0786791f,0.0732484f},{-0.0373576f,-0.0789577f,0.080706f},{-0.0370085f,-0.0793068f,0.0732484f}, - {-0.0370104f,-0.0793041f,0.080706f},{-0.0373549f,-0.0789596f,0.0732484f},{-0.0367293f,-0.0797062f,0.0732484f}, - {-0.0367299f,-0.0797045f,0.080706f},{-0.0365246f,-0.0801454f,0.0732484f},{-0.0365251f,-0.0801441f,0.080706f}, - {-0.036399f,-0.0806133f,0.080706f},{-0.036399f,-0.0806133f,0.0732484f},{-0.036356f,-0.0811018f,0.080706f}, - {-0.0396411f,-0.0783482f,0.080706f},{-0.0401103f,-0.0784743f,0.080706f},{-0.040109f,-0.0784738f,0.0732484f}, - {-0.0405482f,-0.0786785f,0.0732484f},{-0.0405499f,-0.0786791f,0.080706f},{-0.0409503f,-0.0789596f,0.080706f}, - {-0.0409476f,-0.0789577f,0.0732484f},{-0.0412967f,-0.0793068f,0.080706f},{-0.0412948f,-0.0793041f,0.0732484f}, - {-0.0415753f,-0.0797045f,0.0732484f},{-0.0415759f,-0.0797062f,0.080706f},{-0.0417806f,-0.0801454f,0.080706f}, - {-0.0417801f,-0.0801441f,0.0732484f},{-0.0419062f,-0.0806133f,0.080706f},{-0.0419062f,-0.0806133f,0.0732484f}, - {-0.0419492f,-0.0811018f,0.080706f},{-0.0431881f,-0.0834317f,0.0751128f},{-0.0431216f,-0.0835172f,0.0732484f}, - {-0.0427679f,-0.0840443f,0.0732484f},{-0.0388347f,-0.0857482f,0.0732484f},{-0.0391526f,-0.0857628f,0.0751128f}, - {-0.0394697f,-0.0857526f,0.0732484f},{-0.0434233f,-0.0829568f,0.0732484f},{-0.0434581f,-0.0828854f,0.0751128f}, - {-0.0436412f,-0.08236f,0.0732484f},{-0.0436577f,-0.0823046f,0.0751128f},{-0.0437656f,-0.0817356f,0.0732484f}, - {-0.0437748f,-0.0817077f,0.0751128f},{-0.0438136f,-0.0811018f,0.0732484f},{-0.0438134f,-0.0811018f,0.0751128f}, - {-0.0426154f,-0.0842227f,0.0751128f},{-0.0418905f,-0.0848742f,0.0751128f},{-0.0423324f,-0.0845067f,0.0732484f}, - {-0.0412969f,-0.0852426f,0.0732484f},{-0.0418383f,-0.0849075f,0.0732484f},{-0.0407092f,-0.0854821f,0.0732484f}, - {-0.041047f,-0.0853608f,0.0751128f},{-0.0401206f,-0.0856613f,0.0751128f},{-0.0400974f,-0.0856572f,0.0732484f}, - {-0.0375901f,-0.0854955f,0.0732484f},{-0.0372562f,-0.0853591f,0.0751128f},{-0.0381825f,-0.0856604f,0.0751128f}, - {-0.0382039f,-0.0856635f,0.0732484f},{-0.0359704f,-0.0845082f,0.0732484f},{-0.0364144f,-0.0848735f,0.0751128f}, - {-0.0364658f,-0.0849058f,0.0732484f},{-0.0370158f,-0.0852247f,0.0732484f},{-0.0351171f,-0.0834317f,0.0751128f}, - {-0.0351705f,-0.0835228f,0.0732484f},{-0.0348763f,-0.0829589f,0.0732484f},{-0.0356896f,-0.0842204f,0.0751128f}, - {-0.0355407f,-0.0840405f,0.0732484f},{-0.0346506f,-0.0823026f,0.0751128f},{-0.034683f,-0.0823534f,0.0732484f}, - {-0.0345353f,-0.0817359f,0.0732484f},{-0.034847f,-0.0828855f,0.0751128f},{-0.0344916f,-0.0811018f,0.0732484f}, - {-0.034531f,-0.0817073f,0.0751128f},{-0.0344918f,-0.0811018f,0.0751128f},{-0.0391526f,-0.0764408f,0.0900281f}, - {-0.0364616f,-0.0764408f,0.0751128f},{-0.0391526f,-0.0764408f,0.0751128f},{-0.0418436f,-0.0764408f,0.0751128f}, - {-0.0418436f,-0.0764408f,0.0900281f},{-0.0364616f,-0.0764408f,0.0900281f},{-0.0396398f,-0.0838556f,0.0918925f}, - {-0.0391526f,-0.0838984f,0.0918925f},{-0.0391526f,-0.0838984f,0.0844349f},{-0.0386641f,-0.0838554f,0.0918925f}, - {-0.0381961f,-0.0837298f,0.0844349f},{-0.0386654f,-0.0838556f,0.0844349f},{-0.0381949f,-0.0837293f,0.0918925f}, - {-0.037757f,-0.0835251f,0.0844349f},{-0.0377553f,-0.0835245f,0.0918925f},{-0.0373576f,-0.0832459f,0.0844349f}, - {-0.0370085f,-0.0828968f,0.0918925f},{-0.0370104f,-0.0828995f,0.0844349f},{-0.0373549f,-0.083244f,0.0918925f}, - {-0.0367293f,-0.0824974f,0.0918925f},{-0.0367299f,-0.0824991f,0.0844349f},{-0.0365246f,-0.0820583f,0.0918925f}, - {-0.0365251f,-0.0820595f,0.0844349f},{-0.036399f,-0.0815903f,0.0844349f},{-0.036399f,-0.0815903f,0.0918925f}, - {-0.036356f,-0.0811018f,0.0918925f},{-0.036356f,-0.0811018f,0.0844349f},{-0.0396411f,-0.0838554f,0.0844349f}, - {-0.0401103f,-0.0837293f,0.0844349f},{-0.040109f,-0.0837298f,0.0918925f},{-0.0405482f,-0.0835251f,0.0918925f}, - {-0.0405499f,-0.0835245f,0.0844349f},{-0.0409503f,-0.083244f,0.0844349f},{-0.0409476f,-0.0832459f,0.0918925f}, - {-0.0412967f,-0.0828968f,0.0844349f},{-0.0412948f,-0.0828995f,0.0918925f},{-0.0415753f,-0.0824991f,0.0918925f}, - {-0.0415759f,-0.0824974f,0.0844349f},{-0.0417806f,-0.0820583f,0.0844349f},{-0.0417801f,-0.0820595f,0.0918925f}, - {-0.0419062f,-0.0815903f,0.0844349f},{-0.0419062f,-0.0815903f,0.0918925f},{-0.0419492f,-0.0811018f,0.0918925f}, - {-0.0419492f,-0.0811018f,0.0844349f},{-0.0431881f,-0.0787719f,0.0900281f},{-0.0431216f,-0.0786864f,0.0918925f}, - {-0.0427679f,-0.0781593f,0.0918925f},{-0.0388347f,-0.0764554f,0.0918925f},{-0.0394697f,-0.076451f,0.0918925f}, - {-0.0434233f,-0.0792468f,0.0918925f},{-0.0434581f,-0.0793182f,0.0900281f},{-0.0436412f,-0.0798436f,0.0918925f}, - {-0.0436577f,-0.079899f,0.0900281f},{-0.0437656f,-0.080468f,0.0918925f},{-0.0437748f,-0.0804959f,0.0900281f}, - {-0.0438136f,-0.0811018f,0.0918925f},{-0.0438134f,-0.0811018f,0.0900281f},{-0.0426154f,-0.0779809f,0.0900281f}, - {-0.0418905f,-0.0773294f,0.0900281f},{-0.0423324f,-0.0776969f,0.0918925f},{-0.0412969f,-0.076961f,0.0918925f}, - {-0.0418383f,-0.0772961f,0.0918925f},{-0.0407092f,-0.0767215f,0.0918925f},{-0.041047f,-0.0768428f,0.0900281f}, - {-0.0401206f,-0.0765423f,0.0900281f},{-0.0400974f,-0.0765464f,0.0918925f},{-0.0375901f,-0.0767081f,0.0918925f}, - {-0.0372562f,-0.0768445f,0.0900281f},{-0.0381825f,-0.0765432f,0.0900281f},{-0.0382039f,-0.0765401f,0.0918925f}, - {-0.0359704f,-0.0776954f,0.0918925f},{-0.0364144f,-0.0773301f,0.0900281f},{-0.0364658f,-0.0772978f,0.0918925f}, - {-0.0370158f,-0.0769789f,0.0918925f},{-0.0351171f,-0.0787719f,0.0900281f},{-0.0351705f,-0.0786808f,0.0918925f}, - {-0.0348763f,-0.0792447f,0.0918925f},{-0.0356896f,-0.0779832f,0.0900281f},{-0.0355407f,-0.0781631f,0.0918925f}, - {-0.0346506f,-0.079901f,0.0900281f},{-0.034683f,-0.0798502f,0.0918925f},{-0.0345353f,-0.0804677f,0.0918925f}, - {-0.034847f,-0.0793181f,0.0900281f},{-0.0344916f,-0.0811018f,0.0918925f},{-0.034531f,-0.0804963f,0.0900281f}, - {-0.0344917f,-0.0811018f,0.0900281f},{-0.0445347f,-0.0811018f,0.0751128f},{-0.0431881f,-0.0834317f,0.0900281f}, - {-0.0418436f,-0.0857628f,0.0751128f},{-0.0418436f,-0.0857628f,0.0900281f},{-0.0445347f,-0.0811018f,0.0900281f}, - {-0.0365256f,-0.0820558f,0.0732484f},{-0.0363996f,-0.0815869f,0.0732484f},{-0.0423336f,-0.0776949f,0.0732484f}, - {-0.0418403f,-0.0772937f,0.0732484f},{-0.0373545f,-0.0832407f,0.0732484f},{-0.0370102f,-0.0828961f,0.0732484f}, - {-0.0386659f,-0.0838552f,0.0732484f},{-0.0381948f,-0.0837277f,0.0732484f},{-0.0377533f,-0.0835206f,0.0732484f}, - {-0.0396375f,-0.0838558f,0.0732484f},{-0.0401082f,-0.0837303f,0.0732484f},{-0.0405506f,-0.0835251f,0.0732484f}, - {-0.0417819f,-0.082059f,0.0732484f},{-0.0409506f,-0.0832457f,0.0732484f},{-0.0415756f,-0.082501f,0.0732484f}, - {-0.0412957f,-0.0829006f,0.0732484f},{-0.0419082f,-0.0815877f,0.0732484f},{-0.0437718f,-0.080466f,0.0732484f}, - {-0.0431348f,-0.0786789f,0.0732484f},{-0.0434198f,-0.0792467f,0.0732484f},{-0.0436345f,-0.0798458f,0.0732484f}, - {-0.0427679f,-0.0781594f,0.0732484f},{-0.0412968f,-0.0769632f,0.0732484f},{-0.0401004f,-0.0765382f,0.0732484f}, - {-0.0394701f,-0.0764516f,0.0732484f},{-0.038834f,-0.0764517f,0.0732484f},{-0.0407131f,-0.0767097f,0.0732484f}, - {-0.0382039f,-0.0765384f,0.0732484f},{-0.0375915f,-0.07671f,0.0732484f},{-0.0364646f,-0.077294f,0.0732484f}, - {-0.0370082f,-0.0769634f,0.0732484f},{-0.0359712f,-0.0776957f,0.0732484f},{-0.0348804f,-0.0792464f,0.0732484f}, - {-0.0355368f,-0.0781605f,0.0732484f},{-0.0351728f,-0.0786814f,0.0732484f},{-0.0346667f,-0.0798449f,0.0732484f}, - {-0.0345346f,-0.0804672f,0.0732484f},{-0.0367312f,-0.0824971f,0.0732484f},{-0.0337705f,-0.0811018f,0.0751128f}, - {-0.0351171f,-0.0787719f,0.0751128f},{-0.0337705f,-0.0811018f,0.0900281f},{-0.0431881f,-0.0787719f,0.0751128f}, - {-0.036397f,-0.0815877f,0.080706f},{-0.0370095f,-0.0829006f,0.080706f},{-0.0367296f,-0.082501f,0.080706f}, - {-0.0365233f,-0.082059f,0.080706f},{-0.0381969f,-0.0837303f,0.080706f},{-0.0386677f,-0.0838558f,0.080706f}, - {-0.0377546f,-0.0835251f,0.080706f},{-0.0401104f,-0.0837277f,0.080706f},{-0.0396392f,-0.0838552f,0.080706f}, - {-0.0391526f,-0.0838984f,0.080706f},{-0.0409507f,-0.0832407f,0.080706f},{-0.0405519f,-0.0835206f,0.080706f}, - {-0.041574f,-0.0824971f,0.080706f},{-0.041295f,-0.0828961f,0.080706f},{-0.0417795f,-0.0820558f,0.080706f}, - {-0.0419056f,-0.0815869f,0.080706f},{-0.0373546f,-0.0832457f,0.080706f},{-0.0391526f,-0.0857628f,0.0900281f}, - {-0.0364616f,-0.0857628f,0.0751128f},{-0.0364616f,-0.0857628f,0.0900281f},{-0.0436345f,-0.0823578f,0.0918925f}, - {-0.0391526f,-0.0783052f,0.0918925f},{-0.0423336f,-0.0845087f,0.0918925f},{-0.0418403f,-0.0849099f,0.0918925f}, - {-0.0427679f,-0.0840442f,0.0918925f},{-0.0431348f,-0.0835247f,0.0918925f},{-0.0394701f,-0.085752f,0.0918925f}, - {-0.0401004f,-0.0856654f,0.0918925f},{-0.0407131f,-0.0854939f,0.0918925f},{-0.0375915f,-0.0854936f,0.0918925f}, - {-0.0382039f,-0.0856652f,0.0918925f},{-0.0412968f,-0.0852404f,0.0918925f},{-0.038834f,-0.0857519f,0.0918925f}, - {-0.0370082f,-0.0852402f,0.0918925f},{-0.0364646f,-0.0849096f,0.0918925f},{-0.0359712f,-0.084508f,0.0918925f}, - {-0.0351728f,-0.0835222f,0.0918925f},{-0.0348804f,-0.0829572f,0.0918925f},{-0.0346667f,-0.0823587f,0.0918925f}, - {-0.0415756f,-0.0797026f,0.0918925f},{-0.0417819f,-0.0801446f,0.0918925f},{-0.0405506f,-0.0786785f,0.0918925f}, - {-0.0345346f,-0.0817364f,0.0918925f},{-0.0363996f,-0.0806167f,0.0918925f},{-0.0365256f,-0.0801478f,0.0918925f}, - {-0.0370102f,-0.0793075f,0.0918925f},{-0.0367312f,-0.0797065f,0.0918925f},{-0.0409506f,-0.0789579f,0.0918925f}, - {-0.0377533f,-0.078683f,0.0918925f},{-0.0373545f,-0.0789629f,0.0918925f},{-0.0386659f,-0.0783484f,0.0918925f}, - {-0.0381948f,-0.0784759f,0.0918925f},{-0.0401082f,-0.0784733f,0.0918925f},{-0.0396375f,-0.0783479f,0.0918925f}, - {-0.0412957f,-0.079303f,0.0918925f},{-0.0419082f,-0.0806159f,0.0918925f},{-0.0437718f,-0.0817376f,0.0918925f}, - {-0.0434198f,-0.0829569f,0.0918925f},{-0.0355368f,-0.0840431f,0.0918925f},{-0.0351171f,-0.0834317f,0.0900281f}, - {-0.0437742f,-0.0817073f,0.0900281f},{-0.0434582f,-0.0828855f,0.0900281f},{-0.0436546f,-0.0823026f,0.0900281f}, - {-0.0426156f,-0.0842204f,0.0900281f},{-0.0401226f,-0.0856604f,0.0900281f},{-0.041049f,-0.0853591f,0.0900281f}, - {-0.0364147f,-0.0848742f,0.0900281f},{-0.0381846f,-0.0856613f,0.0900281f},{-0.0356898f,-0.0842227f,0.0900281f}, - {-0.034847f,-0.0828854f,0.0900281f},{-0.0346475f,-0.0823046f,0.0900281f},{-0.0345304f,-0.0817077f,0.0900281f}, - {-0.0372582f,-0.0853608f,0.0900281f},{-0.0418908f,-0.0848735f,0.0900281f},{-0.0381969f,-0.0784733f,0.0844349f}, - {-0.0396392f,-0.0783484f,0.0844349f},{-0.0401104f,-0.0784759f,0.0844349f},{-0.0417795f,-0.0801478f,0.0844349f}, - {-0.0391526f,-0.0783052f,0.0844349f},{-0.0386677f,-0.0783479f,0.0844349f},{-0.041295f,-0.0793075f,0.0844349f}, - {-0.041574f,-0.0797065f,0.0844349f},{-0.0405519f,-0.078683f,0.0844349f},{-0.0409507f,-0.0789629f,0.0844349f}, - {-0.0419056f,-0.0806167f,0.0844349f},{-0.0377546f,-0.0786785f,0.0844349f},{-0.0370095f,-0.079303f,0.0844349f}, - {-0.0373546f,-0.0789579f,0.0844349f},{-0.0367296f,-0.0797026f,0.0844349f},{-0.0365233f,-0.0801446f,0.0844349f}, - {-0.036397f,-0.0806159f,0.0844349f},{-0.0437742f,-0.0804963f,0.0751128f},{-0.0434582f,-0.0793181f,0.0751128f}, - {-0.0436546f,-0.079901f,0.0751128f},{-0.0426156f,-0.0779832f,0.0751128f},{-0.0401226f,-0.0765432f,0.0751128f}, - {-0.041049f,-0.0768445f,0.0751128f},{-0.0364147f,-0.0773294f,0.0751128f},{-0.0381846f,-0.0765423f,0.0751128f}, - {-0.0356898f,-0.0779809f,0.0751128f},{-0.034847f,-0.0793182f,0.0751128f},{-0.0346475f,-0.079899f,0.0751128f}, - {-0.0345304f,-0.0804959f,0.0751128f},{-0.0372582f,-0.0768428f,0.0751128f},{-0.0418908f,-0.0773301f,0.0751128f}, - {-0.0396398f,0.0838556f,0.0732484f},{-0.0391526f,0.0838984f,0.080706f},{-0.0386641f,0.0838554f,0.0732484f}, - {-0.0381961f,0.0837298f,0.080706f},{-0.0386654f,0.0838556f,0.080706f},{-0.0381949f,0.0837293f,0.0732484f}, - {-0.037757f,0.0835251f,0.080706f},{-0.0377553f,0.0835245f,0.0732484f},{-0.0373576f,0.0832459f,0.080706f}, - {-0.0370085f,0.0828968f,0.0732484f},{-0.0370104f,0.0828995f,0.080706f},{-0.0373549f,0.083244f,0.0732484f}, - {-0.0367293f,0.0824974f,0.0732484f},{-0.0367299f,0.0824991f,0.080706f},{-0.0365246f,0.0820583f,0.0732484f}, - {-0.0365251f,0.0820595f,0.080706f},{-0.036399f,0.0815903f,0.080706f},{-0.036399f,0.0815903f,0.0732484f}, - {-0.036356f,0.0811018f,0.080706f},{-0.0396411f,0.0838554f,0.080706f},{-0.0401103f,0.0837293f,0.080706f}, - {-0.040109f,0.0837298f,0.0732484f},{-0.0405482f,0.0835251f,0.0732484f},{-0.0405499f,0.0835245f,0.080706f}, - {-0.0409503f,0.083244f,0.080706f},{-0.0409476f,0.0832459f,0.0732484f},{-0.0412967f,0.0828968f,0.080706f}, - {-0.0412948f,0.0828995f,0.0732484f},{-0.0415753f,0.0824991f,0.0732484f},{-0.0415759f,0.0824974f,0.080706f}, - {-0.0417806f,0.0820583f,0.080706f},{-0.0417801f,0.0820595f,0.0732484f},{-0.0419062f,0.0815903f,0.080706f}, - {-0.0419062f,0.0815903f,0.0732484f},{-0.0419492f,0.0811018f,0.080706f},{-0.0431881f,0.0787719f,0.0751128f}, - {-0.0431216f,0.0786864f,0.0732484f},{-0.0427679f,0.0781593f,0.0732484f},{-0.0388347f,0.0764554f,0.0732484f}, - {-0.0391526f,0.0764408f,0.0751128f},{-0.0394697f,0.076451f,0.0732484f},{-0.0434233f,0.0792468f,0.0732484f}, - {-0.0434581f,0.0793182f,0.0751128f},{-0.0436412f,0.0798436f,0.0732484f},{-0.0436577f,0.079899f,0.0751128f}, - {-0.0437656f,0.080468f,0.0732484f},{-0.0437748f,0.0804959f,0.0751128f},{-0.0438136f,0.0811018f,0.0732484f}, - {-0.0438134f,0.0811018f,0.0751128f},{-0.0426154f,0.0779809f,0.0751128f},{-0.0418905f,0.0773294f,0.0751128f}, - {-0.0423324f,0.0776969f,0.0732484f},{-0.0412969f,0.076961f,0.0732484f},{-0.0418383f,0.0772961f,0.0732484f}, - {-0.0407092f,0.0767216f,0.0732484f},{-0.041047f,0.0768428f,0.0751128f},{-0.0401206f,0.0765423f,0.0751128f}, - {-0.0400974f,0.0765464f,0.0732484f},{-0.0375901f,0.0767081f,0.0732484f},{-0.0372562f,0.0768446f,0.0751128f}, - {-0.0381825f,0.0765432f,0.0751128f},{-0.0382039f,0.0765401f,0.0732484f},{-0.0359704f,0.0776954f,0.0732484f}, - {-0.0364144f,0.0773301f,0.0751128f},{-0.0364658f,0.0772978f,0.0732484f},{-0.0370158f,0.0769789f,0.0732484f}, - {-0.0351171f,0.0787719f,0.0751128f},{-0.0351705f,0.0786808f,0.0732484f},{-0.0348763f,0.0792447f,0.0732484f}, - {-0.0356896f,0.0779832f,0.0751128f},{-0.0355407f,0.0781631f,0.0732484f},{-0.0346506f,0.079901f,0.0751128f}, - {-0.034683f,0.0798502f,0.0732484f},{-0.0345353f,0.0804677f,0.0732484f},{-0.034847f,0.0793181f,0.0751128f}, - {-0.0344916f,0.0811018f,0.0732484f},{-0.034531f,0.0804963f,0.0751128f},{-0.0344918f,0.0811018f,0.0751128f}, - {-0.0391526f,0.0857628f,0.0900281f},{-0.0364616f,0.0857628f,0.0751128f},{-0.0391526f,0.0857628f,0.0751128f}, - {-0.0418436f,0.0857628f,0.0751128f},{-0.0418436f,0.0857628f,0.0900281f},{-0.0364616f,0.0857628f,0.0900281f}, - {-0.0396398f,0.078348f,0.0918925f},{-0.0391526f,0.0783052f,0.0918925f},{-0.0391526f,0.0783052f,0.0844349f}, - {-0.0386641f,0.0783482f,0.0918925f},{-0.0381961f,0.0784738f,0.0844349f},{-0.0386654f,0.078348f,0.0844349f}, - {-0.0381949f,0.0784743f,0.0918925f},{-0.037757f,0.0786785f,0.0844349f},{-0.0377553f,0.0786791f,0.0918925f}, - {-0.0373576f,0.0789577f,0.0844349f},{-0.0370085f,0.0793068f,0.0918925f},{-0.0370104f,0.0793041f,0.0844349f}, - {-0.0373549f,0.0789596f,0.0918925f},{-0.0367293f,0.0797062f,0.0918925f},{-0.0367299f,0.0797045f,0.0844349f}, - {-0.0365246f,0.0801454f,0.0918925f},{-0.0365251f,0.0801441f,0.0844349f},{-0.036399f,0.0806133f,0.0844349f}, - {-0.036399f,0.0806133f,0.0918925f},{-0.036356f,0.0811018f,0.0918925f},{-0.036356f,0.0811018f,0.0844349f}, - {-0.0396411f,0.0783482f,0.0844349f},{-0.0401103f,0.0784743f,0.0844349f},{-0.040109f,0.0784738f,0.0918925f}, - {-0.0405482f,0.0786785f,0.0918925f},{-0.0405499f,0.0786791f,0.0844349f},{-0.0409503f,0.0789596f,0.0844349f}, - {-0.0409476f,0.0789577f,0.0918925f},{-0.0412967f,0.0793068f,0.0844349f},{-0.0412948f,0.0793041f,0.0918925f}, - {-0.0415753f,0.0797045f,0.0918925f},{-0.0415759f,0.0797062f,0.0844349f},{-0.0417806f,0.0801454f,0.0844349f}, - {-0.0417801f,0.0801441f,0.0918925f},{-0.0419062f,0.0806133f,0.0844349f},{-0.0419062f,0.0806133f,0.0918925f}, - {-0.0419492f,0.0811018f,0.0918925f},{-0.0419492f,0.0811018f,0.0844349f},{-0.0431881f,0.0834317f,0.0900281f}, - {-0.0431216f,0.0835172f,0.0918925f},{-0.0427679f,0.0840443f,0.0918925f},{-0.0388347f,0.0857482f,0.0918925f}, - {-0.0394697f,0.0857526f,0.0918925f},{-0.0434233f,0.0829568f,0.0918925f},{-0.0434581f,0.0828854f,0.0900281f}, - {-0.0436412f,0.08236f,0.0918925f},{-0.0436577f,0.0823046f,0.0900281f},{-0.0437656f,0.0817356f,0.0918925f}, - {-0.0437748f,0.0817077f,0.0900281f},{-0.0438136f,0.0811018f,0.0918925f},{-0.0438134f,0.0811018f,0.0900281f}, - {-0.0426154f,0.0842227f,0.0900281f},{-0.0418905f,0.0848742f,0.0900281f},{-0.0423324f,0.0845067f,0.0918925f}, - {-0.0412969f,0.0852426f,0.0918925f},{-0.0418383f,0.0849075f,0.0918925f},{-0.0407092f,0.0854821f,0.0918925f}, - {-0.041047f,0.0853608f,0.0900281f},{-0.0401206f,0.0856613f,0.0900281f},{-0.0400974f,0.0856572f,0.0918925f}, - {-0.0375901f,0.0854955f,0.0918925f},{-0.0372562f,0.0853591f,0.0900281f},{-0.0381825f,0.0856604f,0.0900281f}, - {-0.0382039f,0.0856635f,0.0918925f},{-0.0359704f,0.0845082f,0.0918925f},{-0.0364144f,0.0848735f,0.0900281f}, - {-0.0364658f,0.0849058f,0.0918925f},{-0.0370158f,0.0852247f,0.0918925f},{-0.0351171f,0.0834317f,0.0900281f}, - {-0.0351705f,0.0835228f,0.0918925f},{-0.0348763f,0.0829589f,0.0918925f},{-0.0356896f,0.0842204f,0.0900281f}, - {-0.0355407f,0.0840405f,0.0918925f},{-0.0346506f,0.0823026f,0.0900281f},{-0.034683f,0.0823534f,0.0918925f}, - {-0.0345353f,0.0817359f,0.0918925f},{-0.034847f,0.0828855f,0.0900281f},{-0.0344916f,0.0811018f,0.0918925f}, - {-0.034531f,0.0817073f,0.0900281f},{-0.0344917f,0.0811018f,0.0900281f},{-0.0445347f,0.0811018f,0.0751128f}, - {-0.0431881f,0.0787719f,0.0900281f},{-0.0418436f,0.0764408f,0.0751128f},{-0.0418436f,0.0764408f,0.0900281f}, - {-0.0445347f,0.0811018f,0.0900281f},{-0.0365256f,0.0801478f,0.0732484f},{-0.0363996f,0.0806167f,0.0732484f}, - {-0.0423336f,0.0845087f,0.0732484f},{-0.0418403f,0.0849099f,0.0732484f},{-0.0373545f,0.0789629f,0.0732484f}, - {-0.0370102f,0.0793075f,0.0732484f},{-0.0386659f,0.0783484f,0.0732484f},{-0.0381948f,0.0784759f,0.0732484f}, - {-0.0377533f,0.078683f,0.0732484f},{-0.0396375f,0.0783479f,0.0732484f},{-0.0401082f,0.0784733f,0.0732484f}, - {-0.0405506f,0.0786785f,0.0732484f},{-0.0417819f,0.0801446f,0.0732484f},{-0.0409506f,0.0789579f,0.0732484f}, - {-0.0415756f,0.0797026f,0.0732484f},{-0.0412957f,0.079303f,0.0732484f},{-0.0419082f,0.0806159f,0.0732484f}, - {-0.0437718f,0.0817376f,0.0732484f},{-0.0431348f,0.0835247f,0.0732484f},{-0.0434198f,0.0829569f,0.0732484f}, - {-0.0436345f,0.0823578f,0.0732484f},{-0.0427679f,0.0840442f,0.0732484f},{-0.0412968f,0.0852404f,0.0732484f}, - {-0.0401004f,0.0856654f,0.0732484f},{-0.0394701f,0.085752f,0.0732484f},{-0.038834f,0.0857519f,0.0732484f}, - {-0.0407131f,0.0854939f,0.0732484f},{-0.0382039f,0.0856652f,0.0732484f},{-0.0375915f,0.0854936f,0.0732484f}, - {-0.0364646f,0.0849096f,0.0732484f},{-0.0370082f,0.0852402f,0.0732484f},{-0.0359712f,0.084508f,0.0732484f}, - {-0.0348804f,0.0829572f,0.0732484f},{-0.0355368f,0.0840431f,0.0732484f},{-0.0351728f,0.0835222f,0.0732484f}, - {-0.0346667f,0.0823587f,0.0732484f},{-0.0345346f,0.0817364f,0.0732484f},{-0.0367312f,0.0797065f,0.0732484f}, - {-0.0337705f,0.0811018f,0.0751128f},{-0.0351171f,0.0834317f,0.0751128f},{-0.0337705f,0.0811018f,0.0900281f}, - {-0.0431881f,0.0834317f,0.0751128f},{-0.036397f,0.0806159f,0.080706f},{-0.0370095f,0.079303f,0.080706f}, - {-0.0367296f,0.0797026f,0.080706f},{-0.0365233f,0.0801446f,0.080706f},{-0.0381969f,0.0784733f,0.080706f}, - {-0.0386677f,0.0783479f,0.080706f},{-0.0377546f,0.0786785f,0.080706f},{-0.0401104f,0.0784759f,0.080706f}, - {-0.0396392f,0.0783484f,0.080706f},{-0.0391526f,0.0783052f,0.080706f},{-0.0409507f,0.0789629f,0.080706f}, - {-0.0405519f,0.078683f,0.080706f},{-0.041574f,0.0797065f,0.080706f},{-0.041295f,0.0793075f,0.080706f}, - {-0.0417795f,0.0801478f,0.080706f},{-0.0419056f,0.0806167f,0.080706f},{-0.0373546f,0.0789579f,0.080706f}, - {-0.0391526f,0.0764408f,0.0900281f},{-0.0364616f,0.0764408f,0.0751128f},{-0.0364616f,0.0764408f,0.0900281f}, - {-0.0436345f,0.0798458f,0.0918925f},{-0.0391526f,0.0838984f,0.0918925f},{-0.0423336f,0.0776949f,0.0918925f}, - {-0.0418403f,0.0772937f,0.0918925f},{-0.0427679f,0.0781595f,0.0918925f},{-0.0431348f,0.0786789f,0.0918925f}, - {-0.0394701f,0.0764516f,0.0918925f},{-0.0401004f,0.0765382f,0.0918925f},{-0.0407131f,0.0767097f,0.0918925f}, - {-0.0375915f,0.07671f,0.0918925f},{-0.0382039f,0.0765384f,0.0918925f},{-0.0412968f,0.0769632f,0.0918925f}, - {-0.038834f,0.0764517f,0.0918925f},{-0.0370082f,0.0769634f,0.0918925f},{-0.0364646f,0.077294f,0.0918925f}, - {-0.0359712f,0.0776957f,0.0918925f},{-0.0351728f,0.0786814f,0.0918925f},{-0.0348804f,0.0792464f,0.0918925f}, - {-0.0346667f,0.0798449f,0.0918925f},{-0.0415756f,0.082501f,0.0918925f},{-0.0417819f,0.082059f,0.0918925f}, - {-0.0405506f,0.0835251f,0.0918925f},{-0.0345346f,0.0804672f,0.0918925f},{-0.0363996f,0.0815869f,0.0918925f}, - {-0.0365256f,0.0820558f,0.0918925f},{-0.0370102f,0.0828961f,0.0918925f},{-0.0367312f,0.0824971f,0.0918925f}, - {-0.0409506f,0.0832457f,0.0918925f},{-0.0377533f,0.0835206f,0.0918925f},{-0.0373545f,0.0832407f,0.0918925f}, - {-0.0386659f,0.0838552f,0.0918925f},{-0.0381948f,0.0837277f,0.0918925f},{-0.0401082f,0.0837303f,0.0918925f}, - {-0.0396375f,0.0838558f,0.0918925f},{-0.0412957f,0.0829006f,0.0918925f},{-0.0419082f,0.0815877f,0.0918925f}, - {-0.0437718f,0.080466f,0.0918925f},{-0.0434198f,0.0792467f,0.0918925f},{-0.0355368f,0.0781605f,0.0918925f}, - {-0.0351171f,0.0787719f,0.0900281f},{-0.0437742f,0.0804963f,0.0900281f},{-0.0434582f,0.0793181f,0.0900281f}, - {-0.0436546f,0.079901f,0.0900281f},{-0.0426156f,0.0779832f,0.0900281f},{-0.0401226f,0.0765432f,0.0900281f}, - {-0.041049f,0.0768446f,0.0900281f},{-0.0364147f,0.0773294f,0.0900281f},{-0.0381846f,0.0765423f,0.0900281f}, - {-0.0356898f,0.0779809f,0.0900281f},{-0.034847f,0.0793182f,0.0900281f},{-0.0346475f,0.079899f,0.0900281f}, - {-0.0345304f,0.0804959f,0.0900281f},{-0.0372582f,0.0768428f,0.0900281f},{-0.0418908f,0.0773301f,0.0900281f}, - {-0.0381969f,0.0837303f,0.0844349f},{-0.0396392f,0.0838552f,0.0844349f},{-0.0401104f,0.0837277f,0.0844349f}, - {-0.0417795f,0.0820558f,0.0844349f},{-0.0391526f,0.0838984f,0.0844349f},{-0.0386677f,0.0838558f,0.0844349f}, - {-0.041295f,0.0828961f,0.0844349f},{-0.041574f,0.0824971f,0.0844349f},{-0.0405519f,0.0835206f,0.0844349f}, - {-0.0409507f,0.0832407f,0.0844349f},{-0.0419056f,0.0815869f,0.0844349f},{-0.0377546f,0.0835251f,0.0844349f}, - {-0.0370095f,0.0829006f,0.0844349f},{-0.0373546f,0.0832457f,0.0844349f},{-0.0367296f,0.082501f,0.0844349f}, - {-0.0365233f,0.082059f,0.0844349f},{-0.036397f,0.0815877f,0.0844349f},{-0.0437742f,0.0817073f,0.0751128f}, - {-0.0434582f,0.0828855f,0.0751128f},{-0.0436546f,0.0823026f,0.0751128f},{-0.0426156f,0.0842204f,0.0751128f}, - {-0.0401226f,0.0856604f,0.0751128f},{-0.041049f,0.0853591f,0.0751128f},{-0.0364147f,0.0848742f,0.0751128f}, - {-0.0381846f,0.0856613f,0.0751128f},{-0.0356898f,0.0842227f,0.0751128f},{-0.034847f,0.0828854f,0.0751128f}, - {-0.0346475f,0.0823046f,0.0751128f},{-0.0345304f,0.0817077f,0.0751128f},{-0.0372582f,0.0853608f,0.0751128f}, - {-0.0418908f,0.0848735f,0.0751128f},{0.0386654f,-0.078348f,0.0732484f},{0.0391526f,-0.0783052f,0.080706f}, - {0.0396411f,-0.0783482f,0.0732484f},{0.040109f,-0.0784738f,0.080706f},{0.0396398f,-0.078348f,0.080706f}, - {0.0401103f,-0.0784743f,0.0732484f},{0.0405482f,-0.0786785f,0.080706f},{0.0405499f,-0.0786791f,0.0732484f}, - {0.0409476f,-0.0789577f,0.080706f},{0.0412967f,-0.0793068f,0.0732484f},{0.0412948f,-0.0793041f,0.080706f}, - {0.0409503f,-0.0789596f,0.0732484f},{0.0415759f,-0.0797062f,0.0732484f},{0.0415753f,-0.0797045f,0.080706f}, - {0.0417806f,-0.0801454f,0.0732484f},{0.0417801f,-0.0801441f,0.080706f},{0.0419062f,-0.0806133f,0.080706f}, - {0.0419062f,-0.0806133f,0.0732484f},{0.0419492f,-0.0811018f,0.080706f},{0.0386641f,-0.0783482f,0.080706f}, - {0.0381949f,-0.0784743f,0.080706f},{0.0381961f,-0.0784738f,0.0732484f},{0.037757f,-0.0786785f,0.0732484f}, - {0.0377553f,-0.0786791f,0.080706f},{0.0373549f,-0.0789596f,0.080706f},{0.0373576f,-0.0789577f,0.0732484f}, - {0.0370085f,-0.0793068f,0.080706f},{0.0370104f,-0.0793041f,0.0732484f},{0.0367299f,-0.0797045f,0.0732484f}, - {0.0367293f,-0.0797062f,0.080706f},{0.0365246f,-0.0801454f,0.080706f},{0.0365251f,-0.0801441f,0.0732484f}, - {0.036399f,-0.0806133f,0.080706f},{0.036399f,-0.0806133f,0.0732484f},{0.036356f,-0.0811018f,0.080706f}, - {0.0351171f,-0.0834317f,0.0751128f},{0.0351836f,-0.0835172f,0.0732484f},{0.0355373f,-0.0840443f,0.0732484f}, - {0.0394705f,-0.0857482f,0.0732484f},{0.0391526f,-0.0857628f,0.0751128f},{0.0388355f,-0.0857526f,0.0732484f}, - {0.0348819f,-0.0829568f,0.0732484f},{0.034847f,-0.0828854f,0.0751128f},{0.034664f,-0.08236f,0.0732484f}, - {0.0346475f,-0.0823046f,0.0751128f},{0.0345395f,-0.0817356f,0.0732484f},{0.0345304f,-0.0817077f,0.0751128f}, - {0.0344916f,-0.0811018f,0.0732484f},{0.0344918f,-0.0811018f,0.0751128f},{0.0356898f,-0.0842227f,0.0751128f}, - {0.0364147f,-0.0848742f,0.0751128f},{0.0359728f,-0.0845067f,0.0732484f},{0.0370083f,-0.0852426f,0.0732484f}, - {0.0364669f,-0.0849075f,0.0732484f},{0.037596f,-0.0854821f,0.0732484f},{0.0372582f,-0.0853608f,0.0751128f}, - {0.0381846f,-0.0856613f,0.0751128f},{0.0382078f,-0.0856572f,0.0732484f},{0.0407151f,-0.0854955f,0.0732484f}, - {0.041049f,-0.0853591f,0.0751128f},{0.0401226f,-0.0856604f,0.0751128f},{0.0401013f,-0.0856635f,0.0732484f}, - {0.0423348f,-0.0845082f,0.0732484f},{0.0418908f,-0.0848735f,0.0751128f},{0.0418394f,-0.0849058f,0.0732484f}, - {0.0412894f,-0.0852247f,0.0732484f},{0.0431881f,-0.0834317f,0.0751128f},{0.0431347f,-0.0835228f,0.0732484f}, - {0.0434289f,-0.0829589f,0.0732484f},{0.0426156f,-0.0842204f,0.0751128f},{0.0427645f,-0.0840405f,0.0732484f}, - {0.0436546f,-0.0823026f,0.0751128f},{0.0436222f,-0.0823534f,0.0732484f},{0.0437699f,-0.0817359f,0.0732484f}, - {0.0434582f,-0.0828855f,0.0751128f},{0.0438136f,-0.0811018f,0.0732484f},{0.0437742f,-0.0817073f,0.0751128f}, - {0.0438134f,-0.0811018f,0.0751128f},{0.0391526f,-0.0764408f,0.0900281f},{0.0418436f,-0.0764408f,0.0751128f}, - {0.0391526f,-0.0764408f,0.0751128f},{0.0364616f,-0.0764408f,0.0751128f},{0.0364616f,-0.0764408f,0.0900281f}, - {0.0418436f,-0.0764408f,0.0900281f},{0.0386654f,-0.0838556f,0.0918925f},{0.0391526f,-0.0838984f,0.0918925f}, - {0.0391526f,-0.0838984f,0.0844349f},{0.0396411f,-0.0838554f,0.0918925f},{0.040109f,-0.0837298f,0.0844349f}, - {0.0396398f,-0.0838556f,0.0844349f},{0.0401103f,-0.0837293f,0.0918925f},{0.0405482f,-0.0835251f,0.0844349f}, - {0.0405499f,-0.0835245f,0.0918925f},{0.0409476f,-0.0832459f,0.0844349f},{0.0412967f,-0.0828968f,0.0918925f}, - {0.0412948f,-0.0828995f,0.0844349f},{0.0409503f,-0.083244f,0.0918925f},{0.0415759f,-0.0824974f,0.0918925f}, - {0.0415753f,-0.0824991f,0.0844349f},{0.0417806f,-0.0820583f,0.0918925f},{0.0417801f,-0.0820595f,0.0844349f}, - {0.0419062f,-0.0815903f,0.0844349f},{0.0419062f,-0.0815903f,0.0918925f},{0.0419492f,-0.0811018f,0.0918925f}, - {0.0419492f,-0.0811018f,0.0844349f},{0.0386641f,-0.0838554f,0.0844349f},{0.0381949f,-0.0837293f,0.0844349f}, - {0.0381961f,-0.0837298f,0.0918925f},{0.037757f,-0.0835251f,0.0918925f},{0.0377553f,-0.0835245f,0.0844349f}, - {0.0373549f,-0.083244f,0.0844349f},{0.0373576f,-0.0832459f,0.0918925f},{0.0370085f,-0.0828968f,0.0844349f}, - {0.0370104f,-0.0828995f,0.0918925f},{0.0367299f,-0.0824991f,0.0918925f},{0.0367293f,-0.0824974f,0.0844349f}, - {0.0365246f,-0.0820583f,0.0844349f},{0.0365251f,-0.0820595f,0.0918925f},{0.036399f,-0.0815903f,0.0844349f}, - {0.036399f,-0.0815903f,0.0918925f},{0.036356f,-0.0811018f,0.0918925f},{0.036356f,-0.0811018f,0.0844349f}, - {0.0351171f,-0.0787719f,0.0900281f},{0.0351836f,-0.0786864f,0.0918925f},{0.0355373f,-0.0781593f,0.0918925f}, - {0.0394705f,-0.0764554f,0.0918925f},{0.0388355f,-0.076451f,0.0918925f},{0.0348819f,-0.0792468f,0.0918925f}, - {0.034847f,-0.0793182f,0.0900281f},{0.034664f,-0.0798436f,0.0918925f},{0.0346475f,-0.079899f,0.0900281f}, - {0.0345395f,-0.080468f,0.0918925f},{0.0345304f,-0.0804959f,0.0900281f},{0.0344916f,-0.0811018f,0.0918925f}, - {0.0344917f,-0.0811018f,0.0900281f},{0.0356898f,-0.0779809f,0.0900281f},{0.0364147f,-0.0773294f,0.0900281f}, - {0.0359728f,-0.0776969f,0.0918925f},{0.0370083f,-0.076961f,0.0918925f},{0.0364669f,-0.0772961f,0.0918925f}, - {0.037596f,-0.0767215f,0.0918925f},{0.0372582f,-0.0768428f,0.0900281f},{0.0381846f,-0.0765423f,0.0900281f}, - {0.0382078f,-0.0765464f,0.0918925f},{0.0407151f,-0.0767081f,0.0918925f},{0.041049f,-0.0768445f,0.0900281f}, - {0.0401226f,-0.0765432f,0.0900281f},{0.0401013f,-0.0765401f,0.0918925f},{0.0423348f,-0.0776954f,0.0918925f}, - {0.0418908f,-0.0773301f,0.0900281f},{0.0418394f,-0.0772978f,0.0918925f},{0.0412894f,-0.0769789f,0.0918925f}, - {0.0431881f,-0.0787719f,0.0900281f},{0.0431347f,-0.0786808f,0.0918925f},{0.0434289f,-0.0792447f,0.0918925f}, - {0.0426156f,-0.0779832f,0.0900281f},{0.0427645f,-0.0781631f,0.0918925f},{0.0436546f,-0.079901f,0.0900281f}, - {0.0436222f,-0.0798502f,0.0918925f},{0.0437699f,-0.0804677f,0.0918925f},{0.0434582f,-0.0793181f,0.0900281f}, - {0.0438136f,-0.0811018f,0.0918925f},{0.0437742f,-0.0804963f,0.0900281f},{0.0438134f,-0.0811018f,0.0900281f}, - {0.0337705f,-0.0811018f,0.0751128f},{0.0351171f,-0.0834317f,0.0900281f},{0.0364616f,-0.0857628f,0.0751128f}, - {0.0364616f,-0.0857628f,0.0900281f},{0.0337705f,-0.0811018f,0.0900281f},{0.0417795f,-0.0820558f,0.0732484f}, - {0.0419056f,-0.0815869f,0.0732484f},{0.0359715f,-0.0776949f,0.0732484f},{0.0364649f,-0.0772937f,0.0732484f}, - {0.0409507f,-0.0832407f,0.0732484f},{0.041295f,-0.0828961f,0.0732484f},{0.0396393f,-0.0838552f,0.0732484f}, - {0.0401104f,-0.0837277f,0.0732484f},{0.0405519f,-0.0835206f,0.0732484f},{0.0386677f,-0.0838558f,0.0732484f}, - {0.0381969f,-0.0837303f,0.0732484f},{0.0377546f,-0.0835251f,0.0732484f},{0.0365233f,-0.082059f,0.0732484f}, - {0.0373546f,-0.0832457f,0.0732484f},{0.0367296f,-0.082501f,0.0732484f},{0.0370095f,-0.0829006f,0.0732484f}, - {0.036397f,-0.0815877f,0.0732484f},{0.0345334f,-0.080466f,0.0732484f},{0.0351704f,-0.0786789f,0.0732484f}, - {0.0348854f,-0.0792467f,0.0732484f},{0.0346707f,-0.0798458f,0.0732484f},{0.0355373f,-0.0781594f,0.0732484f}, - {0.0370084f,-0.0769632f,0.0732484f},{0.0382048f,-0.0765382f,0.0732484f},{0.0388351f,-0.0764516f,0.0732484f}, - {0.0394712f,-0.0764517f,0.0732484f},{0.0375921f,-0.0767097f,0.0732484f},{0.0401013f,-0.0765384f,0.0732484f}, - {0.0407137f,-0.07671f,0.0732484f},{0.0418405f,-0.077294f,0.0732484f},{0.0412969f,-0.0769634f,0.0732484f}, - {0.042334f,-0.0776957f,0.0732484f},{0.0434248f,-0.0792464f,0.0732484f},{0.0427684f,-0.0781605f,0.0732484f}, - {0.0431324f,-0.0786814f,0.0732484f},{0.0436384f,-0.0798449f,0.0732484f},{0.0437705f,-0.0804672f,0.0732484f}, - {0.041574f,-0.0824971f,0.0732484f},{0.0445347f,-0.0811018f,0.0751128f},{0.0431881f,-0.0787719f,0.0751128f}, - {0.0445347f,-0.0811018f,0.0900281f},{0.0351171f,-0.0787719f,0.0751128f},{0.0419082f,-0.0815877f,0.080706f}, - {0.0412957f,-0.0829006f,0.080706f},{0.0415756f,-0.082501f,0.080706f},{0.0417819f,-0.082059f,0.080706f}, - {0.0401082f,-0.0837303f,0.080706f},{0.0396375f,-0.0838558f,0.080706f},{0.0405506f,-0.0835251f,0.080706f}, - {0.0381948f,-0.0837277f,0.080706f},{0.0386659f,-0.0838552f,0.080706f},{0.0391526f,-0.0838984f,0.080706f}, - {0.0373545f,-0.0832407f,0.080706f},{0.0377533f,-0.0835206f,0.080706f},{0.0367312f,-0.0824971f,0.080706f}, - {0.0370102f,-0.0828961f,0.080706f},{0.0365256f,-0.0820558f,0.080706f},{0.0363996f,-0.0815869f,0.080706f}, - {0.0409506f,-0.0832457f,0.080706f},{0.0391526f,-0.0857628f,0.0900281f},{0.0418436f,-0.0857628f,0.0751128f}, - {0.0418436f,-0.0857628f,0.0900281f},{0.0346707f,-0.0823578f,0.0918925f},{0.0391526f,-0.0783052f,0.0918925f}, - {0.0359715f,-0.0845087f,0.0918925f},{0.0364649f,-0.0849099f,0.0918925f},{0.0355373f,-0.0840442f,0.0918925f}, - {0.0351704f,-0.0835247f,0.0918925f},{0.0388351f,-0.085752f,0.0918925f},{0.0382048f,-0.0856654f,0.0918925f}, - {0.0375921f,-0.0854939f,0.0918925f},{0.0407137f,-0.0854936f,0.0918925f},{0.0401013f,-0.0856652f,0.0918925f}, - {0.0370084f,-0.0852404f,0.0918925f},{0.0394712f,-0.0857519f,0.0918925f},{0.0412969f,-0.0852402f,0.0918925f}, - {0.0418405f,-0.0849096f,0.0918925f},{0.042334f,-0.084508f,0.0918925f},{0.0431324f,-0.0835222f,0.0918925f}, - {0.0434248f,-0.0829572f,0.0918925f},{0.0436384f,-0.0823587f,0.0918925f},{0.0367296f,-0.0797026f,0.0918925f}, - {0.0365233f,-0.0801446f,0.0918925f},{0.0377546f,-0.0786785f,0.0918925f},{0.0437705f,-0.0817364f,0.0918925f}, - {0.0419056f,-0.0806167f,0.0918925f},{0.0417795f,-0.0801478f,0.0918925f},{0.041295f,-0.0793075f,0.0918925f}, - {0.041574f,-0.0797065f,0.0918925f},{0.0373546f,-0.0789579f,0.0918925f},{0.0405519f,-0.078683f,0.0918925f}, - {0.0409507f,-0.0789629f,0.0918925f},{0.0396393f,-0.0783484f,0.0918925f},{0.0401104f,-0.0784759f,0.0918925f}, - {0.0381969f,-0.0784733f,0.0918925f},{0.0386677f,-0.0783479f,0.0918925f},{0.0370095f,-0.079303f,0.0918925f}, - {0.036397f,-0.0806159f,0.0918925f},{0.0345334f,-0.0817376f,0.0918925f},{0.0348854f,-0.0829569f,0.0918925f}, - {0.0427684f,-0.0840431f,0.0918925f},{0.0431881f,-0.0834317f,0.0900281f},{0.034531f,-0.0817073f,0.0900281f}, - {0.034847f,-0.0828855f,0.0900281f},{0.0346506f,-0.0823026f,0.0900281f},{0.0356896f,-0.0842204f,0.0900281f}, - {0.0381825f,-0.0856604f,0.0900281f},{0.0372562f,-0.0853591f,0.0900281f},{0.0418905f,-0.0848742f,0.0900281f}, - {0.0401206f,-0.0856613f,0.0900281f},{0.0426154f,-0.0842227f,0.0900281f},{0.0434581f,-0.0828854f,0.0900281f}, - {0.0436577f,-0.0823046f,0.0900281f},{0.0437748f,-0.0817077f,0.0900281f},{0.041047f,-0.0853608f,0.0900281f}, - {0.0364144f,-0.0848735f,0.0900281f},{0.0401082f,-0.0784733f,0.0844349f},{0.0386659f,-0.0783484f,0.0844349f}, - {0.0381948f,-0.0784759f,0.0844349f},{0.0365256f,-0.0801478f,0.0844349f},{0.0391526f,-0.0783052f,0.0844349f}, - {0.0396375f,-0.0783479f,0.0844349f},{0.0370102f,-0.0793075f,0.0844349f},{0.0367312f,-0.0797065f,0.0844349f}, - {0.0377533f,-0.078683f,0.0844349f},{0.0373545f,-0.0789629f,0.0844349f},{0.0363996f,-0.0806167f,0.0844349f}, - {0.0405506f,-0.0786785f,0.0844349f},{0.0412957f,-0.079303f,0.0844349f},{0.0409506f,-0.0789579f,0.0844349f}, - {0.0415756f,-0.0797026f,0.0844349f},{0.0417819f,-0.0801446f,0.0844349f},{0.0419082f,-0.0806159f,0.0844349f}, - {0.034531f,-0.0804963f,0.0751128f},{0.034847f,-0.0793181f,0.0751128f},{0.0346506f,-0.079901f,0.0751128f}, - {0.0356896f,-0.0779832f,0.0751128f},{0.0381825f,-0.0765432f,0.0751128f},{0.0372562f,-0.0768445f,0.0751128f}, - {0.0418905f,-0.0773294f,0.0751128f},{0.0401206f,-0.0765423f,0.0751128f},{0.0426154f,-0.0779809f,0.0751128f}, - {0.0434581f,-0.0793182f,0.0751128f},{0.0436577f,-0.079899f,0.0751128f},{0.0437748f,-0.0804959f,0.0751128f}, - {0.041047f,-0.0768428f,0.0751128f},{0.0364144f,-0.0773301f,0.0751128f},{0.0205353f,-0.305423f,0.0918925f}, - {0.0197119f,-0.306322f,0.0918925f},{0.0197119f,-0.306322f,0.100469f},{0.018681f,-0.306977f,0.0918925f}, - {0.0175301f,-0.30734f,0.100469f},{0.0186838f,-0.306976f,0.100469f},{0.0163096f,-0.307394f,0.0918925f}, - {0.0163096f,-0.307394f,0.100469f},{0.0175273f,-0.307341f,0.0918925f},{0.0205366f,-0.30542f,0.100469f}, - {0.0210952f,-0.304347f,0.100469f},{0.0210939f,-0.30435f,0.0918925f},{0.0213591f,-0.303157f,0.0918925f}, - {0.0213591f,-0.303157f,0.100469f},{0.0124916f,-0.297856f,0.0918925f},{0.0131454f,-0.29683f,0.0918925f}, - {0.0131452f,-0.29683f,0.100469f},{0.014044f,-0.296007f,0.0918925f},{0.01512f,-0.295447f,0.100469f}, - {0.0140418f,-0.296008f,0.100469f},{0.0163096f,-0.295183f,0.0918925f},{0.0163096f,-0.295183f,0.100469f}, - {0.0151227f,-0.295446f,0.0918925f},{0.0124909f,-0.297858f,0.100469f},{0.0121253f,-0.299018f,0.100469f}, - {0.0121261f,-0.299015f,0.0918925f},{0.012073f,-0.300232f,0.0918925f},{0.012073f,-0.300232f,0.100469f}, - {-0.305423f,-0.0205353f,0.0918925f},{-0.306322f,-0.0197119f,0.0918925f},{-0.306322f,-0.0197119f,0.100469f}, - {-0.306977f,-0.018681f,0.0918925f},{-0.30734f,-0.0175301f,0.100469f},{-0.306976f,-0.0186838f,0.100469f}, - {-0.307394f,-0.0163096f,0.0918925f},{-0.307394f,-0.0163096f,0.100469f},{-0.307341f,-0.0175273f,0.0918925f}, - {-0.30542f,-0.0205366f,0.100469f},{-0.304347f,-0.0210952f,0.100469f},{-0.30435f,-0.0210939f,0.0918925f}, - {-0.303157f,-0.0213591f,0.0918925f},{-0.303157f,-0.0213591f,0.100469f},{-0.297855f,-0.0124921f,0.0918925f}, - {-0.29683f,-0.0131453f,0.0918925f},{-0.29683f,-0.0131452f,0.100469f},{-0.296007f,-0.0140439f,0.0918925f}, - {-0.295447f,-0.01512f,0.100469f},{-0.296009f,-0.0140413f,0.100469f},{-0.295183f,-0.0163096f,0.0918925f}, - {-0.295183f,-0.0163096f,0.100469f},{-0.295446f,-0.0151233f,0.0918925f},{-0.297858f,-0.0124909f,0.100469f}, - {-0.299018f,-0.0121254f,0.100469f},{-0.299015f,-0.012126f,0.0918925f},{-0.300232f,-0.012073f,0.0918925f}, - {-0.300232f,-0.012073f,0.100469f},{-0.0205353f,0.305423f,0.0918925f},{-0.0197119f,0.306322f,0.0918925f}, - {-0.0197119f,0.306322f,0.100469f},{-0.018681f,0.306977f,0.0918925f},{-0.0175301f,0.30734f,0.100469f}, - {-0.0186838f,0.306976f,0.100469f},{-0.0163096f,0.307394f,0.0918925f},{-0.0163096f,0.307394f,0.100469f}, - {-0.0175273f,0.307341f,0.0918925f},{-0.0205366f,0.30542f,0.100469f},{-0.0210952f,0.304347f,0.100469f}, - {-0.0210939f,0.30435f,0.0918925f},{-0.0213591f,0.303157f,0.0918925f},{-0.0213591f,0.303157f,0.100469f}, - {-0.0124916f,0.297856f,0.0918925f},{-0.0131454f,0.29683f,0.0918925f},{-0.0131452f,0.29683f,0.100469f}, - {-0.014044f,0.296007f,0.0918925f},{-0.01512f,0.295447f,0.100469f},{-0.0140418f,0.296008f,0.100469f}, - {-0.0163096f,0.295183f,0.0918925f},{-0.0163096f,0.295183f,0.100469f},{-0.0151227f,0.295446f,0.0918925f}, - {-0.0124909f,0.297858f,0.100469f},{-0.0121253f,0.299018f,0.100469f},{-0.0121261f,0.299015f,0.0918925f}, - {-0.012073f,0.300232f,0.0918925f},{-0.012073f,0.300232f,0.100469f},{-0.00413429f,-0.321824f,0.0918925f}, - {-0.005033f,-0.321f,0.0918925f},{-0.005033f,-0.321f,0.100469f},{-0.00568869f,-0.31997f,0.0918925f}, - {-0.00605158f,-0.318819f,0.100469f},{-0.00568781f,-0.319972f,0.100469f},{-0.00610573f,-0.317598f,0.0918925f}, - {-0.00610573f,-0.317598f,0.100469f},{-0.00605247f,-0.318816f,0.0918925f},{-0.00413168f,-0.321825f,0.100469f}, - {-0.00305863f,-0.322384f,0.100469f},{-0.00306124f,-0.322382f,0.0918925f},{-0.00186868f,-0.322648f,0.0918925f}, - {-0.00186868f,-0.322648f,0.100469f},{0.00343343f,-0.313781f,0.0918925f},{0.00445856f,-0.314434f,0.0918925f}, - {0.00445842f,-0.314434f,0.100469f},{0.00528145f,-0.315332f,0.0918925f},{0.00584165f,-0.316409f,0.100469f}, - {0.0052798f,-0.31533f,0.100469f},{0.00610573f,-0.317598f,0.0918925f},{0.00610573f,-0.317598f,0.100469f}, - {0.00584289f,-0.316412f,0.0918925f},{0.00343061f,-0.313779f,0.100469f},{0.00227009f,-0.313414f,0.100469f}, - {0.00227354f,-0.313415f,0.0918925f},{0.00105623f,-0.313362f,0.0918925f},{0.00105623f,-0.313362f,0.100469f}, - {-0.321824f,0.00413429f,0.0918925f},{-0.321f,0.005033f,0.0918925f},{-0.321f,0.005033f,0.100469f}, - {-0.31997f,0.00568869f,0.0918925f},{-0.318819f,0.00605158f,0.100469f},{-0.319972f,0.00568781f,0.100469f}, - {-0.317598f,0.00610573f,0.0918925f},{-0.317598f,0.00610573f,0.100469f},{-0.318816f,0.00605247f,0.0918925f}, - {-0.321825f,0.00413168f,0.100469f},{-0.322384f,0.00305863f,0.100469f},{-0.322382f,0.00306124f,0.0918925f}, - {-0.322648f,0.00186868f,0.0918925f},{-0.322648f,0.00186868f,0.100469f},{-0.313781f,-0.00343343f,0.0918925f}, - {-0.314434f,-0.00445856f,0.0918925f},{-0.314434f,-0.00445842f,0.100469f},{-0.315332f,-0.00528145f,0.0918925f}, - {-0.316409f,-0.00584165f,0.100469f},{-0.31533f,-0.0052798f,0.100469f},{-0.317598f,-0.00610573f,0.0918925f}, - {-0.317598f,-0.00610573f,0.100469f},{-0.316412f,-0.00584289f,0.0918925f},{-0.313779f,-0.00343061f,0.100469f}, - {-0.313414f,-0.00227009f,0.100469f},{-0.313415f,-0.00227354f,0.0918925f},{-0.313362f,-0.00105623f,0.0918925f}, - {-0.313362f,-0.00105623f,0.100469f},{0.00413429f,0.321824f,0.0918925f},{0.005033f,0.321f,0.0918925f}, - {0.005033f,0.321f,0.100469f},{0.00568869f,0.31997f,0.0918925f},{0.00605158f,0.318819f,0.100469f}, - {0.00568781f,0.319972f,0.100469f},{0.00610573f,0.317598f,0.0918925f},{0.00610573f,0.317598f,0.100469f}, - {0.00605247f,0.318816f,0.0918925f},{0.00413168f,0.321825f,0.100469f},{0.00305863f,0.322384f,0.100469f}, - {0.00306124f,0.322382f,0.0918925f},{0.00186868f,0.322648f,0.0918925f},{0.00186868f,0.322648f,0.100469f}, - {-0.00343343f,0.313781f,0.0918925f},{-0.00445856f,0.314434f,0.0918925f},{-0.00445842f,0.314434f,0.100469f}, - {-0.00528145f,0.315332f,0.0918925f},{-0.00584165f,0.316409f,0.100469f},{-0.0052798f,0.31533f,0.100469f}, - {-0.00610573f,0.317598f,0.0918925f},{-0.00610573f,0.317598f,0.100469f},{-0.00584289f,0.316412f,0.0918925f}, - {-0.00343061f,0.313779f,0.100469f},{-0.00227009f,0.313414f,0.100469f},{-0.00227354f,0.313415f,0.0918925f}, - {-0.00105623f,0.313362f,0.0918925f},{-0.00105623f,0.313362f,0.100469f},{-0.0205353f,-0.297154f,0.0918925f}, - {-0.0197119f,-0.296256f,0.0918925f},{-0.0197119f,-0.296256f,0.100469f},{-0.018681f,-0.2956f,0.0918925f}, - {-0.0175301f,-0.295237f,0.100469f},{-0.0186838f,-0.295601f,0.100469f},{-0.0163096f,-0.295183f,0.0918925f}, - {-0.0163096f,-0.295183f,0.100469f},{-0.0175273f,-0.295236f,0.0918925f},{-0.0205366f,-0.297157f,0.100469f}, - {-0.0210952f,-0.29823f,0.100469f},{-0.0210939f,-0.298227f,0.0918925f},{-0.0213591f,-0.29942f,0.0918925f}, - {-0.0213591f,-0.29942f,0.100469f},{-0.0124916f,-0.304721f,0.0918925f},{-0.0131454f,-0.305747f,0.0918925f}, - {-0.0131452f,-0.305747f,0.100469f},{-0.014044f,-0.30657f,0.0918925f},{-0.01512f,-0.30713f,0.100469f}, - {-0.0140418f,-0.306569f,0.100469f},{-0.0163096f,-0.307394f,0.0918925f},{-0.0163096f,-0.307394f,0.100469f}, - {-0.0151227f,-0.307131f,0.0918925f},{-0.0124909f,-0.304719f,0.100469f},{-0.0121253f,-0.303559f,0.100469f}, - {-0.0121261f,-0.303562f,0.0918925f},{-0.012073f,-0.302345f,0.0918925f},{-0.012073f,-0.302345f,0.100469f}, - {-0.297154f,0.0205353f,0.0918925f},{-0.296256f,0.0197119f,0.0918925f},{-0.296256f,0.0197119f,0.100469f}, - {-0.2956f,0.018681f,0.0918925f},{-0.295237f,0.0175301f,0.100469f},{-0.295601f,0.0186838f,0.100469f}, - {-0.295183f,0.0163096f,0.0918925f},{-0.295183f,0.0163096f,0.100469f},{-0.295236f,0.0175273f,0.0918925f}, - {-0.297157f,0.0205366f,0.100469f},{-0.29823f,0.0210952f,0.100469f},{-0.298227f,0.0210939f,0.0918925f}, - {-0.29942f,0.0213591f,0.0918925f},{-0.29942f,0.0213591f,0.100469f},{-0.304721f,0.0124916f,0.0918925f}, - {-0.305747f,0.0131454f,0.0918925f},{-0.305747f,0.0131452f,0.100469f},{-0.30657f,0.014044f,0.0918925f}, - {-0.30713f,0.01512f,0.100469f},{-0.306569f,0.0140418f,0.100469f},{-0.307394f,0.0163096f,0.0918925f}, - {-0.307394f,0.0163096f,0.100469f},{-0.307131f,0.0151227f,0.0918925f},{-0.304719f,0.0124909f,0.100469f}, - {-0.303559f,0.0121253f,0.100469f},{-0.303562f,0.0121261f,0.0918925f},{-0.302345f,0.012073f,0.0918925f}, - {-0.302345f,0.012073f,0.100469f},{0.0205329f,0.297151f,0.0918925f},{0.0197119f,0.296256f,0.0918925f}, - {0.0197119f,0.296256f,0.100469f},{0.0186836f,0.295601f,0.0918925f},{0.0175301f,0.295237f,0.100469f}, - {0.0186838f,0.295601f,0.100469f},{0.0163096f,0.295183f,0.0918925f},{0.0163096f,0.295183f,0.100469f}, - {0.0175235f,0.295236f,0.0918925f},{0.0205366f,0.297157f,0.100469f},{0.0210952f,0.29823f,0.100469f}, - {0.0210948f,0.29823f,0.0918925f},{0.0213591f,0.29942f,0.0918925f},{0.0213591f,0.29942f,0.100469f}, - {0.0124921f,0.304722f,0.0918925f},{0.0131453f,0.305747f,0.0918925f},{0.0131452f,0.305747f,0.100469f}, - {0.0140439f,0.30657f,0.0918925f},{0.01512f,0.30713f,0.100469f},{0.0140413f,0.306568f,0.100469f}, - {0.0163096f,0.307394f,0.0918925f},{0.0163096f,0.307394f,0.100469f},{0.0151233f,0.307131f,0.0918925f}, - {0.0124909f,0.304719f,0.100469f},{0.0121254f,0.303559f,0.100469f},{0.012126f,0.303562f,0.0918925f}, - {0.012073f,0.302345f,0.0918925f},{0.012073f,0.302345f,0.100469f},{0.00413429f,-0.280753f,0.0918925f}, - {0.005033f,-0.281577f,0.0918925f},{0.005033f,-0.281577f,0.100469f},{0.00568869f,-0.282607f,0.0918925f}, - {0.00605158f,-0.283758f,0.100469f},{0.00568781f,-0.282605f,0.100469f},{0.00610573f,-0.284979f,0.0918925f}, - {0.00610573f,-0.284979f,0.100469f},{0.00605247f,-0.283761f,0.0918925f},{0.00413168f,-0.280752f,0.100469f}, - {0.00305863f,-0.280193f,0.100469f},{0.00306124f,-0.280195f,0.0918925f},{0.00186868f,-0.279929f,0.0918925f}, - {0.00186868f,-0.279929f,0.100469f},{-0.00343343f,-0.288796f,0.0918925f},{-0.00445856f,-0.288143f,0.0918925f}, - {-0.00445842f,-0.288143f,0.100469f},{-0.00528145f,-0.287245f,0.0918925f},{-0.00584165f,-0.286169f,0.100469f}, - {-0.0052798f,-0.287247f,0.100469f},{-0.00610573f,-0.284979f,0.0918925f},{-0.00610573f,-0.284979f,0.100469f}, - {-0.00584289f,-0.286165f,0.0918925f},{-0.00343061f,-0.288798f,0.100469f},{-0.00227009f,-0.289163f,0.100469f}, - {-0.00227354f,-0.289162f,0.0918925f},{-0.00105623f,-0.289216f,0.0918925f},{-0.00105623f,-0.289216f,0.100469f}, - {-0.280753f,-0.00413429f,0.0918925f},{-0.281577f,-0.005033f,0.0918925f},{-0.281577f,-0.005033f,0.100469f}, - {-0.282607f,-0.00568869f,0.0918925f},{-0.283758f,-0.00605158f,0.100469f},{-0.282605f,-0.00568781f,0.100469f}, - {-0.284979f,-0.00610573f,0.0918925f},{-0.284979f,-0.00610573f,0.100469f},{-0.283761f,-0.00605247f,0.0918925f}, - {-0.280752f,-0.00413168f,0.100469f},{-0.280193f,-0.00305863f,0.100469f},{-0.280195f,-0.00306124f,0.0918925f}, - {-0.279929f,-0.00186868f,0.0918925f},{-0.279929f,-0.00186868f,0.100469f},{-0.288796f,0.00343343f,0.0918925f}, - {-0.288143f,0.00445856f,0.0918925f},{-0.288143f,0.00445842f,0.100469f},{-0.287245f,0.00528145f,0.0918925f}, - {-0.286169f,0.00584165f,0.100469f},{-0.287247f,0.0052798f,0.100469f},{-0.284979f,0.00610573f,0.0918925f}, - {-0.284979f,0.00610573f,0.100469f},{-0.286165f,0.00584289f,0.0918925f},{-0.288798f,0.00343061f,0.100469f}, - {-0.289163f,0.00227009f,0.100469f},{-0.289162f,0.00227354f,0.0918925f},{-0.289216f,0.00105623f,0.0918925f}, - {-0.289216f,0.00105623f,0.100469f},{-0.00413429f,0.280753f,0.0918925f},{-0.005033f,0.281577f,0.0918925f}, - {-0.005033f,0.281577f,0.100469f},{-0.00568869f,0.282607f,0.0918925f},{-0.00605158f,0.283758f,0.100469f}, - {-0.00568781f,0.282605f,0.100469f},{-0.00610573f,0.284979f,0.0918925f},{-0.00610573f,0.284979f,0.100469f}, - {-0.00605247f,0.283761f,0.0918925f},{-0.00413168f,0.280752f,0.100469f},{-0.00305863f,0.280193f,0.100469f}, - {-0.00306124f,0.280195f,0.0918925f},{-0.00186868f,0.279929f,0.0918925f},{-0.00186868f,0.279929f,0.100469f}, - {0.00343343f,0.288796f,0.0918925f},{0.00445856f,0.288143f,0.0918925f},{0.00445842f,0.288143f,0.100469f}, - {0.00528145f,0.287245f,0.0918925f},{0.00584165f,0.286169f,0.100469f},{0.0052798f,0.287247f,0.100469f}, - {0.00610573f,0.284979f,0.0918925f},{0.00610573f,0.284979f,0.100469f},{0.00584289f,0.286165f,0.0918925f}, - {0.00343061f,0.288798f,0.100469f},{0.00227009f,0.289163f,0.100469f},{0.00227354f,0.289162f,0.0918925f}, - {0.00105623f,0.289216f,0.0918925f},{0.00105623f,0.289216f,0.100469f},{0.305423f,0.0205353f,0.0918925f}, - {0.306322f,0.0197119f,0.0918925f},{0.306322f,0.0197119f,0.100469f},{0.306977f,0.018681f,0.0918925f}, - {0.30734f,0.0175301f,0.100469f},{0.306976f,0.0186838f,0.100469f},{0.307394f,0.0163096f,0.0918925f}, - {0.307394f,0.0163096f,0.100469f},{0.307341f,0.0175273f,0.0918925f},{0.30542f,0.0205366f,0.100469f}, - {0.304347f,0.0210952f,0.100469f},{0.30435f,0.0210939f,0.0918925f},{0.303157f,0.0213591f,0.0918925f}, - {0.303157f,0.0213591f,0.100469f},{0.297856f,0.0124916f,0.0918925f},{0.29683f,0.0131454f,0.0918925f}, - {0.29683f,0.0131452f,0.100469f},{0.296007f,0.014044f,0.0918925f},{0.295447f,0.01512f,0.100469f}, - {0.296008f,0.0140418f,0.100469f},{0.295183f,0.0163096f,0.0918925f},{0.295183f,0.0163096f,0.100469f}, - {0.295446f,0.0151227f,0.0918925f},{0.297858f,0.0124909f,0.100469f},{0.299018f,0.0121253f,0.100469f}, - {0.299015f,0.0121261f,0.0918925f},{0.300232f,0.012073f,0.0918925f},{0.300232f,0.012073f,0.100469f}, - {0.321824f,-0.00413429f,0.0918925f},{0.321f,-0.005033f,0.0918925f},{0.321f,-0.005033f,0.100469f}, - {0.31997f,-0.00568869f,0.0918925f},{0.318819f,-0.00605158f,0.100469f},{0.319972f,-0.00568781f,0.100469f}, - {0.317598f,-0.00610573f,0.0918925f},{0.317598f,-0.00610573f,0.100469f},{0.318816f,-0.00605247f,0.0918925f}, - {0.321825f,-0.00413168f,0.100469f},{0.322384f,-0.00305863f,0.100469f},{0.322382f,-0.00306124f,0.0918925f}, - {0.322648f,-0.00186868f,0.0918925f},{0.322648f,-0.00186868f,0.100469f},{0.313781f,0.00343343f,0.0918925f}, - {0.314434f,0.00445856f,0.0918925f},{0.314434f,0.00445842f,0.100469f},{0.315332f,0.00528145f,0.0918925f}, - {0.316409f,0.00584165f,0.100469f},{0.31533f,0.0052798f,0.100469f},{0.317598f,0.00610573f,0.0918925f}, - {0.317598f,0.00610573f,0.100469f},{0.316412f,0.00584289f,0.0918925f},{0.313779f,0.00343061f,0.100469f}, - {0.313414f,0.00227009f,0.100469f},{0.313415f,0.00227354f,0.0918925f},{0.313362f,0.00105623f,0.0918925f}, - {0.313362f,0.00105623f,0.100469f},{0.297151f,-0.0205329f,0.0918925f},{0.296256f,-0.0197119f,0.0918925f}, - {0.296256f,-0.0197119f,0.100469f},{0.295601f,-0.0186836f,0.0918925f},{0.295237f,-0.0175301f,0.100469f}, - {0.295601f,-0.0186838f,0.100469f},{0.295183f,-0.0163096f,0.0918925f},{0.295183f,-0.0163096f,0.100469f}, - {0.295236f,-0.0175235f,0.0918925f},{0.297157f,-0.0205366f,0.100469f},{0.29823f,-0.0210952f,0.100469f}, - {0.29823f,-0.0210948f,0.0918925f},{0.29942f,-0.0213591f,0.0918925f},{0.29942f,-0.0213591f,0.100469f}, - {0.304721f,-0.0124916f,0.0918925f},{0.305747f,-0.0131454f,0.0918925f},{0.305747f,-0.0131452f,0.100469f}, - {0.30657f,-0.014044f,0.0918925f},{0.30713f,-0.01512f,0.100469f},{0.306569f,-0.0140418f,0.100469f}, - {0.307394f,-0.0163096f,0.0918925f},{0.307394f,-0.0163096f,0.100469f},{0.307131f,-0.0151227f,0.0918925f}, - {0.304719f,-0.0124909f,0.100469f},{0.303559f,-0.0121253f,0.100469f},{0.303562f,-0.0121261f,0.0918925f}, - {0.302345f,-0.012073f,0.0918925f},{0.302345f,-0.012073f,0.100469f},{-0.313522f,-0.0153056f,0.0918925f}, - {-0.314107f,-0.015305f,0.0918925f},{-0.314104f,-0.0153056f,0.100469f},{-0.313518f,-0.015305f,0.100469f}, - {-0.312949f,-0.0151842f,0.0918925f},{-0.312948f,-0.0151836f,0.100469f},{-0.312414f,-0.014946f,0.100469f}, - {-0.311943f,-0.0146037f,0.0918925f},{-0.312416f,-0.0149467f,0.0918925f},{-0.31194f,-0.0146009f,0.100469f}, - {-0.311551f,-0.0141686f,0.0918925f},{-0.31155f,-0.0141674f,0.100469f},{-0.311258f,-0.0136627f,0.0918925f}, - {-0.311257f,-0.0136603f,0.100469f},{-0.311078f,-0.0131075f,0.0918925f},{-0.311077f,-0.013106f,0.100469f}, - {-0.311016f,-0.0125242f,0.100469f},{-0.311016f,-0.0125242f,0.0918925f},{-0.314676f,-0.0151842f,0.100469f}, - {-0.31521f,-0.0149467f,0.100469f},{-0.314678f,-0.0151836f,0.0918925f},{-0.315212f,-0.014946f,0.0918925f}, - {-0.315682f,-0.0146037f,0.100469f},{-0.315685f,-0.0146009f,0.0918925f},{-0.316075f,-0.0141686f,0.100469f}, - {-0.316367f,-0.0136627f,0.100469f},{-0.316076f,-0.0141674f,0.0918925f},{-0.316368f,-0.0136603f,0.0918925f}, - {-0.316548f,-0.0131075f,0.100469f},{-0.316548f,-0.013106f,0.0918925f},{-0.316609f,-0.0125242f,0.100469f}, - {-0.316609f,-0.0125242f,0.0918925f},{-0.313522f,0.00974281f,0.0918925f},{-0.314107f,0.0097434f,0.0918925f}, - {-0.314104f,0.00974281f,0.100469f},{-0.313518f,0.0097434f,0.100469f},{-0.312949f,0.00986419f,0.0918925f}, - {-0.312948f,0.00986481f,0.100469f},{-0.312414f,0.0101024f,0.100469f},{-0.311943f,0.0104447f,0.0918925f}, - {-0.312416f,0.0101017f,0.0918925f},{-0.31194f,0.0104475f,0.100469f},{-0.311551f,0.0108798f,0.0918925f}, - {-0.31155f,0.010881f,0.100469f},{-0.311258f,0.0113857f,0.0918925f},{-0.311257f,0.0113881f,0.100469f}, - {-0.311078f,0.0119409f,0.0918925f},{-0.311077f,0.0119424f,0.100469f},{-0.311016f,0.0125242f,0.100469f}, - {-0.314676f,0.00986419f,0.100469f},{-0.31521f,0.0101017f,0.100469f},{-0.314678f,0.00986481f,0.0918925f}, - {-0.315212f,0.0101024f,0.0918925f},{-0.315682f,0.0104447f,0.100469f},{-0.315685f,0.0104475f,0.0918925f}, - {-0.316075f,0.0108798f,0.100469f},{-0.316367f,0.0113857f,0.100469f},{-0.316076f,0.010881f,0.0918925f}, - {-0.316368f,0.0113881f,0.0918925f},{-0.316548f,0.0119409f,0.100469f},{-0.316548f,0.0119424f,0.0918925f}, - {-0.316609f,0.0125242f,0.100469f},{-0.288473f,0.00974281f,0.0918925f},{-0.289059f,0.0097434f,0.0918925f}, - {-0.289055f,0.00974281f,0.100469f},{-0.28847f,0.0097434f,0.100469f},{-0.287901f,0.00986419f,0.0918925f}, - {-0.287899f,0.00986481f,0.100469f},{-0.287366f,0.0101024f,0.100469f},{-0.286895f,0.0104447f,0.0918925f}, - {-0.287367f,0.0101017f,0.0918925f},{-0.286892f,0.0104475f,0.100469f},{-0.286502f,0.0108798f,0.0918925f}, - {-0.286501f,0.010881f,0.100469f},{-0.28621f,0.0113857f,0.0918925f},{-0.286209f,0.0113881f,0.100469f}, - {-0.286029f,0.0119409f,0.0918925f},{-0.286029f,0.0119424f,0.100469f},{-0.285968f,0.0125242f,0.100469f}, - {-0.285968f,0.0125242f,0.0918925f},{-0.289628f,0.00986419f,0.100469f},{-0.290161f,0.0101017f,0.100469f}, - {-0.289629f,0.00986481f,0.0918925f},{-0.290163f,0.0101024f,0.0918925f},{-0.290634f,0.0104447f,0.100469f}, - {-0.290637f,0.0104475f,0.0918925f},{-0.291026f,0.0108798f,0.100469f},{-0.291319f,0.0113857f,0.100469f}, - {-0.291027f,0.010881f,0.0918925f},{-0.29132f,0.0113881f,0.0918925f},{-0.291499f,0.0119409f,0.100469f}, - {-0.2915f,0.0119424f,0.0918925f},{-0.291561f,0.0125242f,0.100469f},{-0.291561f,0.0125242f,0.0918925f}, - {-0.288473f,-0.0153056f,0.0918925f},{-0.289059f,-0.015305f,0.0918925f},{-0.289055f,-0.0153056f,0.100469f}, - {-0.28847f,-0.015305f,0.100469f},{-0.287901f,-0.0151842f,0.0918925f},{-0.287899f,-0.0151836f,0.100469f}, - {-0.287366f,-0.014946f,0.100469f},{-0.286895f,-0.0146037f,0.0918925f},{-0.287367f,-0.0149467f,0.0918925f}, - {-0.286892f,-0.0146009f,0.100469f},{-0.286502f,-0.0141686f,0.0918925f},{-0.286501f,-0.0141674f,0.100469f}, - {-0.28621f,-0.0136627f,0.0918925f},{-0.286209f,-0.0136603f,0.100469f},{-0.286029f,-0.0131075f,0.0918925f}, - {-0.286029f,-0.013106f,0.100469f},{-0.285968f,-0.0125242f,0.100469f},{-0.289628f,-0.0151842f,0.100469f}, - {-0.290161f,-0.0149467f,0.100469f},{-0.289629f,-0.0151836f,0.0918925f},{-0.290163f,-0.014946f,0.0918925f}, - {-0.290634f,-0.0146037f,0.100469f},{-0.290637f,-0.0146009f,0.0918925f},{-0.291026f,-0.0141686f,0.100469f}, - {-0.291319f,-0.0136627f,0.100469f},{-0.291027f,-0.0141674f,0.0918925f},{-0.29132f,-0.0136603f,0.0918925f}, - {-0.291499f,-0.0131075f,0.100469f},{-0.2915f,-0.013106f,0.0918925f},{-0.291561f,-0.0125242f,0.100469f}, - {0.0128153f,0.311031f,0.0918925f},{0.0122298f,0.311032f,0.0918925f},{0.0122331f,0.311031f,0.100469f}, - {0.0128186f,0.311032f,0.100469f},{0.0133877f,0.311153f,0.0918925f},{0.0133893f,0.311153f,0.100469f}, - {0.013923f,0.311391f,0.100469f},{0.0143937f,0.311733f,0.0918925f},{0.0139213f,0.31139f,0.0918925f}, - {0.0143968f,0.311736f,0.100469f},{0.0147862f,0.312168f,0.0918925f},{0.0147871f,0.312169f,0.100469f}, - {0.0150786f,0.312674f,0.0918925f},{0.0150796f,0.312677f,0.100469f},{0.0152591f,0.313229f,0.0918925f}, - {0.0152596f,0.313231f,0.100469f},{0.0153208f,0.313813f,0.100469f},{0.0116607f,0.311153f,0.100469f}, - {0.0111271f,0.31139f,0.100469f},{0.0116591f,0.311153f,0.0918925f},{0.0111254f,0.311391f,0.0918925f}, - {0.0106546f,0.311733f,0.100469f},{0.0106515f,0.311736f,0.0918925f},{0.0102622f,0.312168f,0.100469f}, - {0.00996978f,0.312674f,0.100469f},{0.0102613f,0.312169f,0.0918925f},{0.00996883f,0.312677f,0.0918925f}, - {0.00978928f,0.313229f,0.100469f},{0.0097888f,0.313231f,0.0918925f},{0.00972758f,0.313813f,0.100469f}, - {0.0128153f,0.285983f,0.0918925f},{0.0122298f,0.285984f,0.0918925f},{0.0122331f,0.285983f,0.100469f}, - {0.0128186f,0.285984f,0.100469f},{0.0133877f,0.286104f,0.0918925f},{0.0133893f,0.286105f,0.100469f}, - {0.013923f,0.286343f,0.100469f},{0.0143937f,0.286685f,0.0918925f},{0.0139213f,0.286342f,0.0918925f}, - {0.0143968f,0.286688f,0.100469f},{0.0147862f,0.28712f,0.0918925f},{0.0147871f,0.287121f,0.100469f}, - {0.0150786f,0.287626f,0.0918925f},{0.0150796f,0.287628f,0.100469f},{0.0152591f,0.288181f,0.0918925f}, - {0.0152596f,0.288183f,0.100469f},{0.0153208f,0.288764f,0.100469f},{0.0153208f,0.288764f,0.0918925f}, - {0.0116607f,0.286104f,0.100469f},{0.0111271f,0.286342f,0.100469f},{0.0116591f,0.286105f,0.0918925f}, - {0.0111254f,0.286343f,0.0918925f},{0.0106546f,0.286685f,0.100469f},{0.0106515f,0.286688f,0.0918925f}, - {0.0102622f,0.28712f,0.100469f},{0.00996978f,0.287626f,0.100469f},{0.0102613f,0.287121f,0.0918925f}, - {0.00996883f,0.287628f,0.0918925f},{0.00978928f,0.288181f,0.100469f},{0.0097888f,0.288183f,0.0918925f}, - {0.00972758f,0.288764f,0.100469f},{0.00972758f,0.288764f,0.0918925f},{-0.0122331f,0.311031f,0.0918925f}, - {-0.0128186f,0.311032f,0.0918925f},{-0.0128153f,0.311031f,0.100469f},{-0.0122298f,0.311032f,0.100469f}, - {-0.0116607f,0.311153f,0.0918925f},{-0.0116591f,0.311153f,0.100469f},{-0.0111254f,0.311391f,0.100469f}, - {-0.0106546f,0.311733f,0.0918925f},{-0.0111271f,0.31139f,0.0918925f},{-0.0106515f,0.311736f,0.100469f}, - {-0.0102622f,0.312168f,0.0918925f},{-0.0102613f,0.312169f,0.100469f},{-0.00996978f,0.312674f,0.0918925f}, - {-0.00996883f,0.312677f,0.100469f},{-0.00978928f,0.313229f,0.0918925f},{-0.0097888f,0.313231f,0.100469f}, - {-0.00972758f,0.313813f,0.100469f},{-0.00972758f,0.313813f,0.0918925f},{-0.0133877f,0.311153f,0.100469f}, - {-0.0139213f,0.31139f,0.100469f},{-0.0133893f,0.311153f,0.0918925f},{-0.013923f,0.311391f,0.0918925f}, - {-0.0143937f,0.311733f,0.100469f},{-0.0143968f,0.311736f,0.0918925f},{-0.0147862f,0.312168f,0.100469f}, - {-0.0150786f,0.312674f,0.100469f},{-0.0147871f,0.312169f,0.0918925f},{-0.0150796f,0.312677f,0.0918925f}, - {-0.0152591f,0.313229f,0.100469f},{-0.0152596f,0.313231f,0.0918925f},{-0.0153208f,0.313813f,0.100469f}, - {-0.0153208f,0.313813f,0.0918925f},{-0.0122331f,0.285983f,0.0918925f},{-0.0128186f,0.285984f,0.0918925f}, - {-0.0128153f,0.285983f,0.100469f},{-0.0122298f,0.285984f,0.100469f},{-0.0116607f,0.286104f,0.0918925f}, - {-0.0116591f,0.286105f,0.100469f},{-0.0111254f,0.286343f,0.100469f},{-0.0106546f,0.286685f,0.0918925f}, - {-0.0111271f,0.286342f,0.0918925f},{-0.0106515f,0.286688f,0.100469f},{-0.0102622f,0.28712f,0.0918925f}, - {-0.0102613f,0.287121f,0.100469f},{-0.00996978f,0.287626f,0.0918925f},{-0.00996883f,0.287628f,0.100469f}, - {-0.00978928f,0.288181f,0.0918925f},{-0.0097888f,0.288183f,0.100469f},{-0.00972758f,0.288764f,0.100469f}, - {-0.0133877f,0.286104f,0.100469f},{-0.0139213f,0.286342f,0.100469f},{-0.0133893f,0.286105f,0.0918925f}, - {-0.013923f,0.286343f,0.0918925f},{-0.0143937f,0.286685f,0.100469f},{-0.0143968f,0.286688f,0.0918925f}, - {-0.0147862f,0.28712f,0.100469f},{-0.0150786f,0.287626f,0.100469f},{-0.0147871f,0.287121f,0.0918925f}, - {-0.0150796f,0.287628f,0.0918925f},{-0.0152591f,0.288181f,0.100469f},{-0.0152596f,0.288183f,0.0918925f}, - {-0.0153208f,0.288764f,0.100469f},{0.314104f,0.00974281f,0.0918925f},{0.313518f,0.0097434f,0.0918925f}, - {0.313522f,0.00974281f,0.100469f},{0.314107f,0.0097434f,0.100469f},{0.314676f,0.00986419f,0.0918925f}, - {0.314678f,0.00986481f,0.100469f},{0.315212f,0.0101024f,0.100469f},{0.315682f,0.0104447f,0.0918925f}, - {0.31521f,0.0101017f,0.0918925f},{0.315685f,0.0104475f,0.100469f},{0.316075f,0.0108798f,0.0918925f}, - {0.316076f,0.010881f,0.100469f},{0.316367f,0.0113857f,0.0918925f},{0.316368f,0.0113881f,0.100469f}, - {0.316548f,0.0119409f,0.0918925f},{0.316548f,0.0119424f,0.100469f},{0.316609f,0.0125242f,0.100469f}, - {0.316609f,0.0125242f,0.0918925f},{0.312949f,0.00986419f,0.100469f},{0.312416f,0.0101017f,0.100469f}, - {0.312948f,0.00986481f,0.0918925f},{0.312414f,0.0101024f,0.0918925f},{0.311943f,0.0104447f,0.100469f}, - {0.31194f,0.0104475f,0.0918925f},{0.311551f,0.0108798f,0.100469f},{0.311258f,0.0113857f,0.100469f}, - {0.31155f,0.010881f,0.0918925f},{0.311257f,0.0113881f,0.0918925f},{0.311078f,0.0119409f,0.100469f}, - {0.311077f,0.0119424f,0.0918925f},{0.311016f,0.0125242f,0.100469f},{0.311016f,0.0125242f,0.0918925f}, - {0.289055f,0.00974281f,0.0918925f},{0.28847f,0.0097434f,0.0918925f},{0.288473f,0.00974281f,0.100469f}, - {0.289059f,0.0097434f,0.100469f},{0.289628f,0.00986419f,0.0918925f},{0.289629f,0.00986481f,0.100469f}, - {0.290163f,0.0101024f,0.100469f},{0.290634f,0.0104447f,0.0918925f},{0.290161f,0.0101017f,0.0918925f}, - {0.290637f,0.0104475f,0.100469f},{0.291026f,0.0108798f,0.0918925f},{0.291027f,0.010881f,0.100469f}, - {0.291319f,0.0113857f,0.0918925f},{0.29132f,0.0113881f,0.100469f},{0.291499f,0.0119409f,0.0918925f}, - {0.2915f,0.0119424f,0.100469f},{0.291561f,0.0125242f,0.100469f},{0.287901f,0.00986419f,0.100469f}, - {0.287367f,0.0101017f,0.100469f},{0.287899f,0.00986481f,0.0918925f},{0.287366f,0.0101024f,0.0918925f}, - {0.286895f,0.0104447f,0.100469f},{0.286892f,0.0104475f,0.0918925f},{0.286502f,0.0108798f,0.100469f}, - {0.28621f,0.0113857f,0.100469f},{0.286501f,0.010881f,0.0918925f},{0.286209f,0.0113881f,0.0918925f}, - {0.286029f,0.0119409f,0.100469f},{0.286029f,0.0119424f,0.0918925f},{0.285968f,0.0125242f,0.100469f}, - {0.289055f,-0.0153056f,0.0918925f},{0.28847f,-0.015305f,0.0918925f},{0.288473f,-0.0153056f,0.100469f}, - {0.289059f,-0.015305f,0.100469f},{0.289628f,-0.0151842f,0.0918925f},{0.289629f,-0.0151836f,0.100469f}, - {0.290163f,-0.014946f,0.100469f},{0.290634f,-0.0146037f,0.0918925f},{0.290161f,-0.0149467f,0.0918925f}, - {0.290637f,-0.0146009f,0.100469f},{0.291026f,-0.0141686f,0.0918925f},{0.291027f,-0.0141674f,0.100469f}, - {0.291319f,-0.0136627f,0.0918925f},{0.29132f,-0.0136603f,0.100469f},{0.291499f,-0.0131075f,0.0918925f}, - {0.2915f,-0.013106f,0.100469f},{0.291561f,-0.0125242f,0.100469f},{0.291561f,-0.0125242f,0.0918925f}, - {0.287901f,-0.0151842f,0.100469f},{0.287367f,-0.0149467f,0.100469f},{0.287899f,-0.0151836f,0.0918925f}, - {0.287366f,-0.014946f,0.0918925f},{0.286895f,-0.0146037f,0.100469f},{0.286892f,-0.0146009f,0.0918925f}, - {0.286502f,-0.0141686f,0.100469f},{0.28621f,-0.0136627f,0.100469f},{0.286501f,-0.0141674f,0.0918925f}, - {0.286209f,-0.0136603f,0.0918925f},{0.286029f,-0.0131075f,0.100469f},{0.286029f,-0.013106f,0.0918925f}, - {0.285968f,-0.0125242f,0.100469f},{0.285968f,-0.0125242f,0.0918925f},{0.314104f,-0.0153056f,0.0918925f}, - {0.313518f,-0.015305f,0.0918925f},{0.313522f,-0.0153056f,0.100469f},{0.314107f,-0.015305f,0.100469f}, - {0.314676f,-0.0151842f,0.0918925f},{0.314678f,-0.0151836f,0.100469f},{0.315212f,-0.014946f,0.100469f}, - {0.315682f,-0.0146037f,0.0918925f},{0.31521f,-0.0149467f,0.0918925f},{0.315685f,-0.0146009f,0.100469f}, - {0.316075f,-0.0141686f,0.0918925f},{0.316076f,-0.0141674f,0.100469f},{0.316367f,-0.0136627f,0.0918925f}, - {0.316368f,-0.0136603f,0.100469f},{0.316548f,-0.0131075f,0.0918925f},{0.316548f,-0.013106f,0.100469f}, - {0.316609f,-0.0125242f,0.100469f},{0.312949f,-0.0151842f,0.100469f},{0.312416f,-0.0149467f,0.100469f}, - {0.312948f,-0.0151836f,0.0918925f},{0.312414f,-0.014946f,0.0918925f},{0.311943f,-0.0146037f,0.100469f}, - {0.31194f,-0.0146009f,0.0918925f},{0.311551f,-0.0141686f,0.100469f},{0.311258f,-0.0136627f,0.100469f}, - {0.31155f,-0.0141674f,0.0918925f},{0.311257f,-0.0136603f,0.0918925f},{0.311078f,-0.0131075f,0.100469f}, - {0.311077f,-0.013106f,0.0918925f},{0.311016f,-0.0125242f,0.100469f},{-0.0122331f,-0.316594f,0.0918925f}, - {-0.0128186f,-0.316594f,0.0918925f},{-0.0128153f,-0.316594f,0.100469f},{-0.0122298f,-0.316594f,0.100469f}, - {-0.0116607f,-0.316473f,0.0918925f},{-0.0116591f,-0.316472f,0.100469f},{-0.0111254f,-0.316235f,0.100469f}, - {-0.0106546f,-0.315892f,0.0918925f},{-0.0111271f,-0.316235f,0.0918925f},{-0.0106515f,-0.315889f,0.100469f}, - {-0.0102622f,-0.315457f,0.0918925f},{-0.0102613f,-0.315456f,0.100469f},{-0.00996978f,-0.314951f,0.0918925f}, - {-0.00996883f,-0.314949f,0.100469f},{-0.00978928f,-0.314396f,0.0918925f},{-0.0097888f,-0.314395f,0.100469f}, - {-0.00972758f,-0.313813f,0.100469f},{-0.0133877f,-0.316473f,0.100469f},{-0.0139213f,-0.316235f,0.100469f}, - {-0.0133893f,-0.316472f,0.0918925f},{-0.013923f,-0.316235f,0.0918925f},{-0.0143937f,-0.315892f,0.100469f}, - {-0.0143968f,-0.315889f,0.0918925f},{-0.0147862f,-0.315457f,0.100469f},{-0.0150786f,-0.314951f,0.100469f}, - {-0.0147871f,-0.315456f,0.0918925f},{-0.0150796f,-0.314949f,0.0918925f},{-0.0152591f,-0.314396f,0.100469f}, - {-0.0152596f,-0.314395f,0.0918925f},{-0.0153208f,-0.313813f,0.100469f},{-0.0122331f,-0.291546f,0.0918925f}, - {-0.0128186f,-0.291545f,0.0918925f},{-0.0128153f,-0.291546f,0.100469f},{-0.0122298f,-0.291545f,0.100469f}, - {-0.0116607f,-0.291424f,0.0918925f},{-0.0116591f,-0.291424f,0.100469f},{-0.0111254f,-0.291186f,0.100469f}, - {-0.0106546f,-0.290844f,0.0918925f},{-0.0111271f,-0.291187f,0.0918925f},{-0.0106515f,-0.290841f,0.100469f}, - {-0.0102622f,-0.290409f,0.0918925f},{-0.0102613f,-0.290408f,0.100469f},{-0.00996978f,-0.289903f,0.0918925f}, - {-0.00996883f,-0.2899f,0.100469f},{-0.00978928f,-0.289348f,0.0918925f},{-0.0097888f,-0.289346f,0.100469f}, - {-0.00972758f,-0.288764f,0.100469f},{-0.00972758f,-0.288764f,0.0918925f},{-0.0133877f,-0.291424f,0.100469f}, - {-0.0139213f,-0.291187f,0.100469f},{-0.0133893f,-0.291424f,0.0918925f},{-0.013923f,-0.291186f,0.0918925f}, - {-0.0143937f,-0.290844f,0.100469f},{-0.0143968f,-0.290841f,0.0918925f},{-0.0147862f,-0.290409f,0.100469f}, - {-0.0150786f,-0.289903f,0.100469f},{-0.0147871f,-0.290408f,0.0918925f},{-0.0150796f,-0.2899f,0.0918925f}, - {-0.0152591f,-0.289348f,0.100469f},{-0.0152596f,-0.289346f,0.0918925f},{-0.0153208f,-0.288764f,0.100469f}, - {-0.0153208f,-0.288764f,0.0918925f},{0.0128153f,-0.291546f,0.0918925f},{0.0122298f,-0.291545f,0.0918925f}, - {0.0122331f,-0.291546f,0.100469f},{0.0128186f,-0.291545f,0.100469f},{0.0133877f,-0.291424f,0.0918925f}, - {0.0133893f,-0.291424f,0.100469f},{0.013923f,-0.291186f,0.100469f},{0.0143937f,-0.290844f,0.0918925f}, - {0.0139213f,-0.291187f,0.0918925f},{0.0143968f,-0.290841f,0.100469f},{0.0147862f,-0.290409f,0.0918925f}, - {0.0147871f,-0.290408f,0.100469f},{0.0150786f,-0.289903f,0.0918925f},{0.0150796f,-0.2899f,0.100469f}, - {0.0152591f,-0.289348f,0.0918925f},{0.0152596f,-0.289346f,0.100469f},{0.0153208f,-0.288764f,0.100469f}, - {0.0116607f,-0.291424f,0.100469f},{0.0111271f,-0.291187f,0.100469f},{0.0116591f,-0.291424f,0.0918925f}, - {0.0111254f,-0.291186f,0.0918925f},{0.0106546f,-0.290844f,0.100469f},{0.0106515f,-0.290841f,0.0918925f}, - {0.0102622f,-0.290409f,0.100469f},{0.00996978f,-0.289903f,0.100469f},{0.0102613f,-0.290408f,0.0918925f}, - {0.00996883f,-0.2899f,0.0918925f},{0.00978928f,-0.289348f,0.100469f},{0.0097888f,-0.289346f,0.0918925f}, - {0.00972758f,-0.288764f,0.100469f},{0.0128153f,-0.316594f,0.0918925f},{0.0122298f,-0.316594f,0.0918925f}, - {0.0122331f,-0.316594f,0.100469f},{0.0128186f,-0.316594f,0.100469f},{0.0133877f,-0.316473f,0.0918925f}, - {0.0133893f,-0.316472f,0.100469f},{0.013923f,-0.316235f,0.100469f},{0.0143937f,-0.315892f,0.0918925f}, - {0.0139213f,-0.316235f,0.0918925f},{0.0143968f,-0.315889f,0.100469f},{0.0147862f,-0.315457f,0.0918925f}, - {0.0147871f,-0.315456f,0.100469f},{0.0150786f,-0.314951f,0.0918925f},{0.0150796f,-0.314949f,0.100469f}, - {0.0152591f,-0.314396f,0.0918925f},{0.0152596f,-0.314395f,0.100469f},{0.0153208f,-0.313813f,0.100469f}, - {0.0153208f,-0.313813f,0.0918925f},{0.0116607f,-0.316473f,0.100469f},{0.0111271f,-0.316235f,0.100469f}, - {0.0116591f,-0.316472f,0.0918925f},{0.0111254f,-0.316235f,0.0918925f},{0.0106546f,-0.315892f,0.100469f}, - {0.0106515f,-0.315889f,0.0918925f},{0.0102622f,-0.315457f,0.100469f},{0.00996978f,-0.314951f,0.100469f}, - {0.0102613f,-0.315456f,0.0918925f},{0.00996883f,-0.314949f,0.0918925f},{0.00978928f,-0.314396f,0.100469f}, - {0.0097888f,-0.314395f,0.0918925f},{0.00972758f,-0.313813f,0.100469f},{0.00972758f,-0.313813f,0.0918925f}, - {-0.254583f,-0.00139831f,0.0918925f},{-0.255011f,-0.00133018f,0.100469f},{-0.254583f,-0.00139831f,0.100469f}, - {-0.253766f,-0.0011336f,0.0918925f},{-0.254148f,-0.00132889f,0.100469f},{-0.253758f,-0.00112806f,0.100469f}, - {-0.254155f,-0.00133018f,0.0918925f},{-0.253455f,-0.000825358f,0.0918925f},{-0.253254f,-0.000434603f,0.100469f}, - {-0.253185f,2.35333e-017f,0.0918925f},{-0.253254f,-0.000434603f,0.0918925f},{-0.253449f,-0.00081707f,0.100469f}, - {-0.253185f,2.35333e-017f,0.100469f},{-0.255018f,-0.00132889f,0.0918925f},{-0.2554f,-0.0011336f,0.100469f}, - {-0.255408f,-0.00112806f,0.0918925f},{-0.255717f,-0.00081707f,0.0918925f},{-0.255711f,-0.000825358f,0.100469f}, - {-0.255912f,-0.000434603f,0.0918925f},{-0.255912f,-0.000434603f,0.100469f},{-0.255981f,2.33621e-017f,0.100469f}, - {-0.255981f,2.33621e-017f,0.0918925f},{0.217061f,-0.00139831f,0.0918925f},{0.216633f,-0.00133018f,0.100469f}, - {0.217061f,-0.00139831f,0.100469f},{0.217878f,-0.0011336f,0.0918925f},{0.217496f,-0.00132889f,0.100469f}, - {0.217886f,-0.00112806f,0.100469f},{0.217489f,-0.00133018f,0.0918925f},{0.218189f,-0.000825358f,0.0918925f}, - {0.21839f,-0.000434603f,0.100469f},{0.218459f,1.5386e-017f,0.0918925f},{0.21839f,-0.000434603f,0.0918925f}, - {0.218195f,-0.00081707f,0.100469f},{0.218459f,1.5386e-017f,0.100469f},{0.216626f,-0.00132889f,0.0918925f}, - {0.216244f,-0.0011336f,0.100469f},{0.216236f,-0.00112806f,0.0918925f},{0.215927f,-0.00081707f,0.0918925f}, - {0.215933f,-0.000825358f,0.100469f},{0.215732f,-0.000434603f,0.0918925f},{0.215732f,-0.000434603f,0.100469f}, - {0.215663f,1.52148e-017f,0.100469f},{0.215663f,1.52148e-017f,0.0918925f},{2.89787e-017f,0.254546f,0.0918925f}, - {-0.000428086f,0.254614f,0.100469f},{2.89787e-017f,0.254546f,0.100469f},{0.00081707f,0.254811f,0.0918925f}, - {0.000434603f,0.254616f,0.100469f},{0.000825358f,0.254817f,0.100469f},{0.000428086f,0.254614f,0.0918925f}, - {0.00112806f,0.255119f,0.0918925f},{0.00132889f,0.25551f,0.100469f},{0.00139831f,0.255945f,0.0918925f}, - {0.00132889f,0.25551f,0.0918925f},{0.0011336f,0.255128f,0.100469f},{0.00139831f,0.255945f,0.100469f}, - {-0.000434603f,0.254616f,0.0918925f},{-0.00081707f,0.254811f,0.100469f},{-0.000825358f,0.254817f,0.0918925f}, - {-0.0011336f,0.255128f,0.0918925f},{-0.00112806f,0.255119f,0.100469f},{-0.00132889f,0.25551f,0.0918925f}, - {-0.00132889f,0.25551f,0.100469f},{-0.00139831f,0.255945f,0.100469f},{-0.00139831f,0.255945f,0.0918925f}, - {2.89787e-017f,0.217258f,0.0918925f},{-0.000428086f,0.217326f,0.100469f},{2.89787e-017f,0.217258f,0.100469f}, - {0.00081707f,0.217523f,0.0918925f},{0.000434603f,0.217328f,0.100469f},{0.000825358f,0.217528f,0.100469f}, - {0.000428086f,0.217326f,0.0918925f},{0.00112806f,0.217831f,0.0918925f},{0.00132889f,0.218222f,0.100469f}, - {0.00139831f,0.218656f,0.0918925f},{0.00132889f,0.218222f,0.0918925f},{0.0011336f,0.217839f,0.100469f}, - {0.00139831f,0.218656f,0.100469f},{-0.000434603f,0.217328f,0.0918925f},{-0.00081707f,0.217523f,0.100469f}, - {-0.000825358f,0.217528f,0.0918925f},{-0.0011336f,0.217839f,0.0918925f},{-0.00112806f,0.217831f,0.100469f}, - {-0.00132889f,0.218222f,0.0918925f},{-0.00132889f,0.218222f,0.100469f},{-0.00139831f,0.218656f,0.100469f}, - {-0.00139831f,0.218656f,0.0918925f},{0.254583f,-0.00139831f,0.0918925f},{0.254155f,-0.00133018f,0.100469f}, - {0.254583f,-0.00139831f,0.100469f},{0.2554f,-0.0011336f,0.0918925f},{0.255018f,-0.00132889f,0.100469f}, - {0.255408f,-0.00112806f,0.100469f},{0.255011f,-0.00133018f,0.0918925f},{0.255711f,-0.000825358f,0.0918925f}, - {0.255912f,-0.000434603f,0.100469f},{0.255981f,2.35333e-017f,0.0918925f},{0.255912f,-0.000434603f,0.0918925f}, - {0.255717f,-0.00081707f,0.100469f},{0.255981f,2.35333e-017f,0.100469f},{0.254148f,-0.00132889f,0.0918925f}, - {0.253766f,-0.0011336f,0.100469f},{0.253758f,-0.00112806f,0.0918925f},{0.253449f,-0.00081707f,0.0918925f}, - {0.253455f,-0.000825358f,0.100469f},{0.253254f,-0.000434603f,0.0918925f},{0.253254f,-0.000434603f,0.100469f}, - {0.253185f,2.33621e-017f,0.100469f},{0.253185f,2.33621e-017f,0.0918925f},{5.54736e-017f,-0.257343f,0.0918925f}, - {-0.000428086f,-0.257275f,0.100469f},{2.89787e-017f,-0.257343f,0.100469f},{0.00081707f,-0.257078f,0.0918925f}, - {0.000434603f,-0.257274f,0.100469f},{0.000825358f,-0.257073f,0.100469f},{0.000428086f,-0.257275f,0.0918925f}, - {0.00112806f,-0.25677f,0.0918925f},{0.00132889f,-0.256379f,0.100469f},{0.00139831f,-0.255945f,0.0918925f}, - {0.00132889f,-0.256379f,0.0918925f},{0.0011336f,-0.256762f,0.100469f},{0.00139831f,-0.255945f,0.100469f}, - {-0.000434603f,-0.257274f,0.0918925f},{-0.00081707f,-0.257078f,0.100469f},{-0.000825358f,-0.257073f,0.0918925f}, - {-0.0011336f,-0.256762f,0.0918925f},{-0.00112806f,-0.25677f,0.100469f},{-0.00132889f,-0.256379f,0.0918925f}, - {-0.00132889f,-0.256379f,0.100469f},{-0.00139831f,-0.255945f,0.100469f},{-0.00139831f,-0.255945f,0.0918925f}, - {5.54736e-017f,-0.220055f,0.0918925f},{-0.000428086f,-0.219987f,0.100469f},{2.89787e-017f,-0.220055f,0.100469f}, - {0.00081707f,-0.21979f,0.0918925f},{0.000434603f,-0.219985f,0.100469f},{0.000825358f,-0.219785f,0.100469f}, - {0.000428086f,-0.219987f,0.0918925f},{0.00112806f,-0.219482f,0.0918925f},{0.00132889f,-0.219091f,0.100469f}, - {0.00139831f,-0.218656f,0.0918925f},{0.00132889f,-0.219091f,0.0918925f},{0.0011336f,-0.219474f,0.100469f}, - {0.00139831f,-0.218656f,0.100469f},{-0.000434603f,-0.219985f,0.0918925f},{-0.00081707f,-0.21979f,0.100469f}, - {-0.000825358f,-0.219785f,0.0918925f},{-0.0011336f,-0.219474f,0.0918925f},{-0.00112806f,-0.219482f,0.100469f}, - {-0.00132889f,-0.219091f,0.0918925f},{-0.00132889f,-0.219091f,0.100469f},{-0.00139831f,-0.218656f,0.100469f}, - {-0.00139831f,-0.218656f,0.0918925f},{-0.217061f,-0.00139831f,0.0918925f},{-0.217489f,-0.00133018f,0.100469f}, - {-0.217061f,-0.00139831f,0.100469f},{-0.216244f,-0.0011336f,0.0918925f},{-0.216626f,-0.00132889f,0.100469f}, - {-0.216236f,-0.00112806f,0.100469f},{-0.216633f,-0.00133018f,0.0918925f},{-0.215933f,-0.000825358f,0.0918925f}, - {-0.215732f,-0.000434603f,0.100469f},{-0.215663f,1.5386e-017f,0.0918925f},{-0.215732f,-0.000434603f,0.0918925f}, - {-0.215927f,-0.00081707f,0.100469f},{-0.215663f,1.5386e-017f,0.100469f},{-0.217496f,-0.00132889f,0.0918925f}, - {-0.217878f,-0.0011336f,0.100469f},{-0.217886f,-0.00112806f,0.0918925f},{-0.218195f,-0.00081707f,0.0918925f}, - {-0.218189f,-0.000825358f,0.100469f},{-0.21839f,-0.000434603f,0.0918925f},{-0.21839f,-0.000434603f,0.100469f}, - {-0.218459f,1.52148e-017f,0.100469f},{-0.218459f,1.52148e-017f,0.0918925f},{-0.0206412f,-0.0600622f,0.0918925f}, - {-0.0218566f,-0.0614015f,0.0918925f},{-0.0218559f,-0.0614007f,0.100469f},{-0.0446572f,-0.069784f,0.100469f}, - {-0.0428559f,-0.0699006f,0.0918925f},{-0.0446573f,-0.069784f,0.0918925f},{-0.0410436f,-0.0699007f,0.0918925f}, - {-0.0428548f,-0.0699007f,0.100469f},{-0.0464389f,-0.0695527f,0.100469f},{-0.0464391f,-0.0695526f,0.0918925f}, - {-0.0481956f,-0.0692089f,0.100469f},{-0.0481959f,-0.0692088f,0.0918925f},{-0.0499225f,-0.0687547f,0.100469f}, - {-0.0499226f,-0.0687546f,0.0918925f},{-0.0516141f,-0.0681921f,0.100469f},{-0.0564273f,-0.065876f,0.100469f}, - {-0.0548716f,-0.0667507f,0.100469f},{-0.0548718f,-0.0667507f,0.0918925f},{-0.0516143f,-0.0681921f,0.0918925f}, - {-0.0532658f,-0.0675234f,0.0918925f},{-0.0532655f,-0.0675235f,0.100469f},{-0.0579272f,-0.0649016f,0.100469f}, - {-0.0564274f,-0.065876f,0.0918925f},{-0.0579275f,-0.0649015f,0.0918925f},{-0.0593666f,-0.0638294f,0.100469f}, - {-0.0607404f,-0.0626615f,0.0918925f},{-0.0607403f,-0.0626615f,0.100469f},{-0.0593668f,-0.0638293f,0.0918925f}, - {-0.0620418f,-0.0614015f,0.100469f},{-0.0620425f,-0.0614007f,0.0918925f},{-0.0632572f,-0.0600622f,0.100469f}, - {-0.0632573f,-0.0600619f,0.0918925f},{-0.0643775f,-0.0586549f,0.0918925f},{-0.0643775f,-0.058655f,0.100469f}, - {-0.0693947f,-0.0473208f,0.100469f},{-0.0689955f,-0.0490631f,0.0918925f},{-0.0693947f,-0.0473207f,0.0918925f}, - {-0.066326f,-0.055656f,0.0918925f},{-0.0671499f,-0.0540747f,0.100469f},{-0.0663259f,-0.0556563f,0.100469f}, - {-0.0654011f,-0.0571847f,0.100469f},{-0.0654012f,-0.0571845f,0.0918925f},{-0.06715f,-0.0540746f,0.0918925f}, - {-0.0678709f,-0.0524453f,0.100469f},{-0.067871f,-0.0524451f,0.0918925f},{-0.0684867f,-0.0507732f,0.100469f}, - {-0.0684868f,-0.0507729f,0.0918925f},{-0.0689954f,-0.0490633f,0.100469f},{-0.0696826f,-0.0455508f,0.0918925f}, - {-0.0698568f,-0.0437586f,0.0918925f},{-0.0698567f,-0.0437588f,0.100469f},{-0.0696825f,-0.045551f,0.100469f}, - {-0.0699153f,-0.0419492f,0.100469f},{-0.0699153f,-0.0419492f,0.0918925f},{-0.0410425f,-0.0699006f,0.100469f}, - {-0.0392411f,-0.069784f,0.100469f},{-0.0392412f,-0.069784f,0.0918925f},{-0.0374596f,-0.0695527f,0.0918925f}, - {-0.0374593f,-0.0695526f,0.100469f},{-0.0357025f,-0.0692088f,0.100469f},{-0.0357028f,-0.0692089f,0.0918925f}, - {-0.0339758f,-0.0687546f,0.100469f},{-0.033976f,-0.0687547f,0.0918925f},{-0.0322843f,-0.0681921f,0.0918925f}, - {-0.0322841f,-0.0681921f,0.100469f},{-0.0306327f,-0.0675234f,0.100469f},{-0.030633f,-0.0675235f,0.0918925f}, - {-0.0290267f,-0.0667507f,0.100469f},{-0.0290268f,-0.0667507f,0.0918925f},{-0.0274712f,-0.065876f,0.0918925f}, - {-0.027471f,-0.065876f,0.100469f},{-0.0259709f,-0.0649015f,0.100469f},{-0.0259712f,-0.0649016f,0.0918925f}, - {-0.0245316f,-0.0638293f,0.100469f},{-0.0245318f,-0.0638294f,0.0918925f},{-0.0231581f,-0.0626615f,0.0918925f}, - {-0.023158f,-0.0626615f,0.100469f},{-0.0206411f,-0.0600619f,0.100469f},{-0.0195209f,-0.0586549f,0.100469f}, - {-0.0195209f,-0.058655f,0.0918925f},{-0.0184973f,-0.0571847f,0.0918925f},{-0.0184973f,-0.0571845f,0.100469f}, - {-0.0175724f,-0.055656f,0.100469f},{-0.0175725f,-0.0556563f,0.0918925f},{-0.0167485f,-0.0540746f,0.100469f}, - {-0.0167485f,-0.0540747f,0.0918925f},{-0.0160275f,-0.0524453f,0.0918925f},{-0.0160275f,-0.0524451f,0.100469f}, - {-0.0154116f,-0.0507729f,0.100469f},{-0.0154117f,-0.0507732f,0.0918925f},{-0.014903f,-0.0490631f,0.100469f}, - {-0.014903f,-0.0490633f,0.0918925f},{-0.0145037f,-0.0473208f,0.0918925f},{-0.0145037f,-0.0473207f,0.100469f}, - {-0.0142158f,-0.0455508f,0.100469f},{-0.0142159f,-0.045551f,0.0918925f},{-0.0140416f,-0.0437586f,0.100469f}, - {-0.0140417f,-0.0437588f,0.0918925f},{-0.0139831f,-0.0419492f,0.0918925f},{-0.0139831f,-0.0419492f,0.100469f}, - {-0.0206412f,0.0238362f,0.0918925f},{-0.0218566f,0.0224969f,0.0918925f},{-0.0218559f,0.0224977f,0.100469f}, - {-0.0446572f,0.0141144f,0.100469f},{-0.0428559f,0.0139978f,0.0918925f},{-0.0446573f,0.0141144f,0.0918925f}, - {-0.0410436f,0.0139977f,0.0918925f},{-0.0428548f,0.0139977f,0.100469f},{-0.0464389f,0.0143457f,0.100469f}, - {-0.0464391f,0.0143458f,0.0918925f},{-0.0481956f,0.0146895f,0.100469f},{-0.0481959f,0.0146896f,0.0918925f}, - {-0.0499225f,0.0151437f,0.100469f},{-0.0499226f,0.0151438f,0.0918925f},{-0.0516141f,0.0157063f,0.100469f}, - {-0.0564273f,0.0180224f,0.100469f},{-0.0548716f,0.0171477f,0.100469f},{-0.0548718f,0.0171478f,0.0918925f}, - {-0.0516143f,0.0157063f,0.0918925f},{-0.0532658f,0.016375f,0.0918925f},{-0.0532655f,0.0163749f,0.100469f}, - {-0.0579272f,0.0189968f,0.100469f},{-0.0564274f,0.0180224f,0.0918925f},{-0.0579275f,0.018997f,0.0918925f}, - {-0.0593666f,0.020069f,0.100469f},{-0.0607404f,0.0212369f,0.0918925f},{-0.0607403f,0.0212369f,0.100469f}, - {-0.0593668f,0.0200691f,0.0918925f},{-0.0620418f,0.0224969f,0.100469f},{-0.0620425f,0.0224977f,0.0918925f}, - {-0.0632572f,0.0238362f,0.100469f},{-0.0632573f,0.0238365f,0.0918925f},{-0.0643775f,0.0252435f,0.0918925f}, - {-0.0643775f,0.0252434f,0.100469f},{-0.0693947f,0.0365776f,0.100469f},{-0.0689955f,0.0348353f,0.0918925f}, - {-0.0693947f,0.0365777f,0.0918925f},{-0.066326f,0.0282424f,0.0918925f},{-0.0671499f,0.0298237f,0.100469f}, - {-0.0663259f,0.0282422f,0.100469f},{-0.0654011f,0.0267137f,0.100469f},{-0.0654012f,0.0267139f,0.0918925f}, - {-0.06715f,0.0298238f,0.0918925f},{-0.0678709f,0.0314531f,0.100469f},{-0.067871f,0.0314533f,0.0918925f}, - {-0.0684867f,0.0331252f,0.100469f},{-0.0684868f,0.0331255f,0.0918925f},{-0.0689954f,0.0348351f,0.100469f}, - {-0.0696826f,0.0383477f,0.0918925f},{-0.0698568f,0.0401399f,0.0918925f},{-0.0698567f,0.0401396f,0.100469f}, - {-0.0696825f,0.0383474f,0.100469f},{-0.0699153f,0.0419492f,0.100469f},{-0.0699153f,0.0419492f,0.0918925f}, - {-0.0410425f,0.0139978f,0.100469f},{-0.0392411f,0.0141144f,0.100469f},{-0.0392412f,0.0141144f,0.0918925f}, - {-0.0374596f,0.0143457f,0.0918925f},{-0.0374593f,0.0143458f,0.100469f},{-0.0357025f,0.0146896f,0.100469f}, - {-0.0357028f,0.0146895f,0.0918925f},{-0.0339758f,0.0151438f,0.100469f},{-0.033976f,0.0151437f,0.0918925f}, - {-0.0322843f,0.0157063f,0.0918925f},{-0.0322841f,0.0157063f,0.100469f},{-0.0306327f,0.016375f,0.100469f}, - {-0.030633f,0.0163749f,0.0918925f},{-0.0290267f,0.0171478f,0.100469f},{-0.0290268f,0.0171477f,0.0918925f}, - {-0.0274712f,0.0180224f,0.0918925f},{-0.027471f,0.0180224f,0.100469f},{-0.0259709f,0.018997f,0.100469f}, - {-0.0259712f,0.0189968f,0.0918925f},{-0.0245316f,0.0200691f,0.100469f},{-0.0245318f,0.020069f,0.0918925f}, - {-0.0231581f,0.0212369f,0.0918925f},{-0.023158f,0.0212369f,0.100469f},{-0.0206411f,0.0238365f,0.100469f}, - {-0.0195209f,0.0252435f,0.100469f},{-0.0195209f,0.0252434f,0.0918925f},{-0.0184973f,0.0267137f,0.0918925f}, - {-0.0184973f,0.0267139f,0.100469f},{-0.0175724f,0.0282424f,0.100469f},{-0.0175725f,0.0282422f,0.0918925f}, - {-0.0167485f,0.0298238f,0.100469f},{-0.0167485f,0.0298237f,0.0918925f},{-0.0160275f,0.0314531f,0.0918925f}, - {-0.0160275f,0.0314533f,0.100469f},{-0.0154116f,0.0331255f,0.100469f},{-0.0154117f,0.0331252f,0.0918925f}, - {-0.014903f,0.0348353f,0.100469f},{-0.014903f,0.0348351f,0.0918925f},{-0.0145037f,0.0365776f,0.0918925f}, - {-0.0145037f,0.0365777f,0.100469f},{-0.0142158f,0.0383477f,0.100469f},{-0.0142159f,0.0383474f,0.0918925f}, - {-0.0140416f,0.0401399f,0.100469f},{-0.0140417f,0.0401396f,0.0918925f},{-0.0139831f,0.0419492f,0.0918925f}, - {-0.0139831f,0.0419492f,0.100469f},{0.0632572f,-0.0600622f,0.0918925f},{0.0620418f,-0.0614015f,0.0918925f}, - {0.0620425f,-0.0614007f,0.100469f},{0.0392412f,-0.069784f,0.100469f},{0.0410425f,-0.0699006f,0.0918925f}, - {0.0392411f,-0.069784f,0.0918925f},{0.0428548f,-0.0699007f,0.0918925f},{0.0410436f,-0.0699007f,0.100469f}, - {0.0374596f,-0.0695527f,0.100469f},{0.0374593f,-0.0695526f,0.0918925f},{0.0357028f,-0.0692089f,0.100469f}, - {0.0357025f,-0.0692088f,0.0918925f},{0.033976f,-0.0687547f,0.100469f},{0.0339758f,-0.0687546f,0.0918925f}, - {0.0322843f,-0.0681921f,0.100469f},{0.0274712f,-0.065876f,0.100469f},{0.0290268f,-0.0667507f,0.100469f}, - {0.0290267f,-0.0667507f,0.0918925f},{0.0322841f,-0.0681921f,0.0918925f},{0.0306327f,-0.0675234f,0.0918925f}, - {0.030633f,-0.0675235f,0.100469f},{0.0259712f,-0.0649016f,0.100469f},{0.027471f,-0.065876f,0.0918925f}, - {0.0259709f,-0.0649015f,0.0918925f},{0.0245318f,-0.0638294f,0.100469f},{0.023158f,-0.0626615f,0.0918925f}, - {0.0231581f,-0.0626615f,0.100469f},{0.0245316f,-0.0638293f,0.0918925f},{0.0218566f,-0.0614015f,0.100469f}, - {0.0218559f,-0.0614007f,0.0918925f},{0.0206412f,-0.0600622f,0.100469f},{0.0206411f,-0.0600619f,0.0918925f}, - {0.0195209f,-0.0586549f,0.0918925f},{0.0195209f,-0.058655f,0.100469f},{0.0145037f,-0.0473208f,0.100469f}, - {0.014903f,-0.0490631f,0.0918925f},{0.0145037f,-0.0473207f,0.0918925f},{0.0175724f,-0.055656f,0.0918925f}, - {0.0167485f,-0.0540747f,0.100469f},{0.0175725f,-0.0556563f,0.100469f},{0.0184973f,-0.0571847f,0.100469f}, - {0.0184973f,-0.0571845f,0.0918925f},{0.0167485f,-0.0540746f,0.0918925f},{0.0160275f,-0.0524453f,0.100469f}, - {0.0160275f,-0.0524451f,0.0918925f},{0.0154117f,-0.0507732f,0.100469f},{0.0154116f,-0.0507729f,0.0918925f}, - {0.014903f,-0.0490633f,0.100469f},{0.0142158f,-0.0455508f,0.0918925f},{0.0140416f,-0.0437586f,0.0918925f}, - {0.0140417f,-0.0437588f,0.100469f},{0.0142159f,-0.045551f,0.100469f},{0.0139831f,-0.0419492f,0.100469f}, - {0.0139831f,-0.0419492f,0.0918925f},{0.0428559f,-0.0699006f,0.100469f},{0.0446573f,-0.069784f,0.100469f}, - {0.0446572f,-0.069784f,0.0918925f},{0.0464389f,-0.0695527f,0.0918925f},{0.0464391f,-0.0695526f,0.100469f}, - {0.0481959f,-0.0692088f,0.100469f},{0.0481956f,-0.0692089f,0.0918925f},{0.0499226f,-0.0687546f,0.100469f}, - {0.0499225f,-0.0687547f,0.0918925f},{0.0516141f,-0.0681921f,0.0918925f},{0.0516143f,-0.0681921f,0.100469f}, - {0.0532658f,-0.0675234f,0.100469f},{0.0532655f,-0.0675235f,0.0918925f},{0.0548718f,-0.0667507f,0.100469f}, - {0.0548716f,-0.0667507f,0.0918925f},{0.0564273f,-0.065876f,0.0918925f},{0.0564274f,-0.065876f,0.100469f}, - {0.0579275f,-0.0649015f,0.100469f},{0.0579272f,-0.0649016f,0.0918925f},{0.0593668f,-0.0638293f,0.100469f}, - {0.0593666f,-0.0638294f,0.0918925f},{0.0607403f,-0.0626615f,0.0918925f},{0.0607404f,-0.0626615f,0.100469f}, - {0.0632573f,-0.0600619f,0.100469f},{0.0643775f,-0.0586549f,0.100469f},{0.0643775f,-0.058655f,0.0918925f}, - {0.0654011f,-0.0571847f,0.0918925f},{0.0654012f,-0.0571845f,0.100469f},{0.066326f,-0.055656f,0.100469f}, - {0.0663259f,-0.0556563f,0.0918925f},{0.06715f,-0.0540746f,0.100469f},{0.0671499f,-0.0540747f,0.0918925f}, - {0.0678709f,-0.0524453f,0.0918925f},{0.067871f,-0.0524451f,0.100469f},{0.0684868f,-0.0507729f,0.100469f}, - {0.0684867f,-0.0507732f,0.0918925f},{0.0689955f,-0.0490631f,0.100469f},{0.0689954f,-0.0490633f,0.0918925f}, - {0.0693947f,-0.0473208f,0.0918925f},{0.0693947f,-0.0473207f,0.100469f},{0.0696826f,-0.0455508f,0.100469f}, - {0.0696825f,-0.045551f,0.0918925f},{0.0698568f,-0.0437586f,0.100469f},{0.0698567f,-0.0437588f,0.0918925f}, - {0.0699153f,-0.0419492f,0.0918925f},{0.0699153f,-0.0419492f,0.100469f},{0.0632572f,0.0238362f,0.0918925f}, - {0.0620418f,0.0224969f,0.0918925f},{0.0620425f,0.0224977f,0.100469f},{0.0392412f,0.0141144f,0.100469f}, - {0.0410425f,0.0139978f,0.0918925f},{0.0392411f,0.0141144f,0.0918925f},{0.0428548f,0.0139977f,0.0918925f}, - {0.0410436f,0.0139977f,0.100469f},{0.0374596f,0.0143457f,0.100469f},{0.0374593f,0.0143458f,0.0918925f}, - {0.0357028f,0.0146895f,0.100469f},{0.0357025f,0.0146896f,0.0918925f},{0.033976f,0.0151437f,0.100469f}, - {0.0339758f,0.0151438f,0.0918925f},{0.0322843f,0.0157063f,0.100469f},{0.0274712f,0.0180224f,0.100469f}, - {0.0290268f,0.0171477f,0.100469f},{0.0290267f,0.0171478f,0.0918925f},{0.0322841f,0.0157063f,0.0918925f}, - {0.0306327f,0.016375f,0.0918925f},{0.030633f,0.0163749f,0.100469f},{0.0259712f,0.0189968f,0.100469f}, - {0.027471f,0.0180224f,0.0918925f},{0.0259709f,0.018997f,0.0918925f},{0.0245318f,0.020069f,0.100469f}, - {0.023158f,0.0212369f,0.0918925f},{0.0231581f,0.0212369f,0.100469f},{0.0245316f,0.0200691f,0.0918925f}, - {0.0218566f,0.0224969f,0.100469f},{0.0218559f,0.0224977f,0.0918925f},{0.0206412f,0.0238362f,0.100469f}, - {0.0206411f,0.0238365f,0.0918925f},{0.0195209f,0.0252435f,0.0918925f},{0.0195209f,0.0252434f,0.100469f}, - {0.0145037f,0.0365776f,0.100469f},{0.014903f,0.0348353f,0.0918925f},{0.0145037f,0.0365777f,0.0918925f}, - {0.0175724f,0.0282424f,0.0918925f},{0.0167485f,0.0298237f,0.100469f},{0.0175725f,0.0282422f,0.100469f}, - {0.0184973f,0.0267137f,0.100469f},{0.0184973f,0.0267139f,0.0918925f},{0.0167485f,0.0298238f,0.0918925f}, - {0.0160275f,0.0314531f,0.100469f},{0.0160275f,0.0314533f,0.0918925f},{0.0154117f,0.0331252f,0.100469f}, - {0.0154116f,0.0331255f,0.0918925f},{0.014903f,0.0348351f,0.100469f},{0.0142158f,0.0383477f,0.0918925f}, - {0.0140416f,0.0401399f,0.0918925f},{0.0140417f,0.0401396f,0.100469f},{0.0142159f,0.0383474f,0.100469f}, - {0.0139831f,0.0419492f,0.100469f},{0.0139831f,0.0419492f,0.0918925f},{0.0428559f,0.0139978f,0.100469f}, - {0.0446573f,0.0141144f,0.100469f},{0.0446572f,0.0141144f,0.0918925f},{0.0464389f,0.0143457f,0.0918925f}, - {0.0464391f,0.0143458f,0.100469f},{0.0481959f,0.0146896f,0.100469f},{0.0481956f,0.0146895f,0.0918925f}, - {0.0499226f,0.0151438f,0.100469f},{0.0499225f,0.0151437f,0.0918925f},{0.0516141f,0.0157063f,0.0918925f}, - {0.0516143f,0.0157063f,0.100469f},{0.0532658f,0.016375f,0.100469f},{0.0532655f,0.0163749f,0.0918925f}, - {0.0548718f,0.0171478f,0.100469f},{0.0548716f,0.0171477f,0.0918925f},{0.0564273f,0.0180224f,0.0918925f}, - {0.0564274f,0.0180224f,0.100469f},{0.0579275f,0.018997f,0.100469f},{0.0579272f,0.0189968f,0.0918925f}, - {0.0593668f,0.0200691f,0.100469f},{0.0593666f,0.020069f,0.0918925f},{0.0607403f,0.0212369f,0.0918925f}, - {0.0607404f,0.0212369f,0.100469f},{0.0632573f,0.0238365f,0.100469f},{0.0643775f,0.0252435f,0.100469f}, - {0.0643775f,0.0252434f,0.0918925f},{0.0654011f,0.0267137f,0.0918925f},{0.0654012f,0.0267139f,0.100469f}, - {0.066326f,0.0282424f,0.100469f},{0.0663259f,0.0282422f,0.0918925f},{0.06715f,0.0298238f,0.100469f}, - {0.0671499f,0.0298237f,0.0918925f},{0.0678709f,0.0314531f,0.0918925f},{0.067871f,0.0314533f,0.100469f}, - {0.0684868f,0.0331255f,0.100469f},{0.0684867f,0.0331252f,0.0918925f},{0.0689955f,0.0348353f,0.100469f}, - {0.0689954f,0.0348351f,0.0918925f},{0.0693947f,0.0365776f,0.0918925f},{0.0693947f,0.0365777f,0.100469f}, - {0.0696826f,0.0383477f,0.100469f},{0.0696825f,0.0383474f,0.0918925f},{0.0698568f,0.0401399f,0.100469f}, - {0.0698567f,0.0401396f,0.0918925f},{0.0699153f,0.0419492f,0.0918925f},{0.0699153f,0.0419492f,0.100469f}, - {0.0394436f,-0.0838832f,0.0918925f},{0.0388582f,-0.0838826f,0.0918925f},{0.0388615f,-0.0838832f,0.100469f}, - {0.039447f,-0.0838826f,0.100469f},{0.0400161f,-0.0837618f,0.0918925f},{0.0400177f,-0.0837612f,0.100469f}, - {0.0405514f,-0.0835236f,0.100469f},{0.0410221f,-0.0831813f,0.0918925f},{0.0405497f,-0.0835243f,0.0918925f}, - {0.0410252f,-0.0831785f,0.100469f},{0.0414146f,-0.0827462f,0.0918925f},{0.0414155f,-0.082745f,0.100469f}, - {0.041707f,-0.0822403f,0.0918925f},{0.041708f,-0.0822379f,0.100469f},{0.0418875f,-0.0816851f,0.0918925f}, - {0.041888f,-0.0816836f,0.100469f},{0.0419492f,-0.0811018f,0.100469f},{0.0382891f,-0.0837618f,0.100469f}, - {0.0377555f,-0.0835243f,0.100469f},{0.0382875f,-0.0837612f,0.0918925f},{0.0377538f,-0.0835236f,0.0918925f}, - {0.037283f,-0.0831813f,0.100469f},{0.0372799f,-0.0831785f,0.0918925f},{0.0368906f,-0.0827462f,0.100469f}, - {0.0365982f,-0.0822403f,0.100469f},{0.0368897f,-0.082745f,0.0918925f},{0.0365972f,-0.0822379f,0.0918925f}, - {0.0364177f,-0.0816851f,0.100469f},{0.0364172f,-0.0816836f,0.0918925f},{0.036356f,-0.0811018f,0.100469f}, - {-0.0388615f,-0.0838832f,0.0918925f},{-0.039447f,-0.0838826f,0.0918925f},{-0.0394436f,-0.0838832f,0.100469f}, - {-0.0388582f,-0.0838826f,0.100469f},{-0.0382891f,-0.0837618f,0.0918925f},{-0.0382875f,-0.0837612f,0.100469f}, - {-0.0377538f,-0.0835236f,0.100469f},{-0.037283f,-0.0831813f,0.0918925f},{-0.0377555f,-0.0835243f,0.0918925f}, - {-0.0372799f,-0.0831785f,0.100469f},{-0.0368906f,-0.0827462f,0.0918925f},{-0.0368897f,-0.082745f,0.100469f}, - {-0.0365982f,-0.0822403f,0.0918925f},{-0.0365972f,-0.0822379f,0.100469f},{-0.0364177f,-0.0816851f,0.0918925f}, - {-0.0364172f,-0.0816836f,0.100469f},{-0.036356f,-0.0811018f,0.100469f},{-0.0400161f,-0.0837618f,0.100469f}, - {-0.0405497f,-0.0835243f,0.100469f},{-0.0400177f,-0.0837612f,0.0918925f},{-0.0405514f,-0.0835236f,0.0918925f}, - {-0.0410221f,-0.0831813f,0.100469f},{-0.0410252f,-0.0831785f,0.0918925f},{-0.0414146f,-0.0827462f,0.100469f}, - {-0.041707f,-0.0822403f,0.100469f},{-0.0414155f,-0.082745f,0.0918925f},{-0.041708f,-0.0822379f,0.0918925f}, - {-0.0418875f,-0.0816851f,0.100469f},{-0.041888f,-0.0816836f,0.0918925f},{-0.0419492f,-0.0811018f,0.100469f}, - {0.0394436f,0.0783204f,0.0918925f},{0.0388582f,0.078321f,0.0918925f},{0.0388615f,0.0783204f,0.100469f}, - {0.039447f,0.078321f,0.100469f},{0.0400161f,0.0784418f,0.0918925f},{0.0400177f,0.0784424f,0.100469f}, - {0.0405514f,0.07868f,0.100469f},{0.0410221f,0.0790223f,0.0918925f},{0.0405497f,0.0786793f,0.0918925f}, - {0.0410252f,0.0790251f,0.100469f},{0.0414146f,0.0794574f,0.0918925f},{0.0414155f,0.0794586f,0.100469f}, - {0.041707f,0.0799633f,0.0918925f},{0.041708f,0.0799657f,0.100469f},{0.0418875f,0.0805185f,0.0918925f}, - {0.041888f,0.08052f,0.100469f},{0.0419492f,0.0811018f,0.100469f},{0.0382891f,0.0784418f,0.100469f}, - {0.0377555f,0.0786793f,0.100469f},{0.0382875f,0.0784424f,0.0918925f},{0.0377538f,0.07868f,0.0918925f}, - {0.037283f,0.0790223f,0.100469f},{0.0372799f,0.0790251f,0.0918925f},{0.0368906f,0.0794574f,0.100469f}, - {0.0365982f,0.0799633f,0.100469f},{0.0368897f,0.0794586f,0.0918925f},{0.0365972f,0.0799657f,0.0918925f}, - {0.0364177f,0.0805185f,0.100469f},{0.0364172f,0.08052f,0.0918925f},{0.036356f,0.0811018f,0.100469f}, - {-0.0388615f,0.0783204f,0.0918925f},{-0.039447f,0.078321f,0.0918925f},{-0.0394436f,0.0783204f,0.100469f}, - {-0.0388582f,0.078321f,0.100469f},{-0.0382891f,0.0784418f,0.0918925f},{-0.0382875f,0.0784424f,0.100469f}, - {-0.0377538f,0.07868f,0.100469f},{-0.037283f,0.0790223f,0.0918925f},{-0.0377555f,0.0786793f,0.0918925f}, - {-0.0372799f,0.0790251f,0.100469f},{-0.0368906f,0.0794574f,0.0918925f},{-0.0368897f,0.0794586f,0.100469f}, - {-0.0365982f,0.0799633f,0.0918925f},{-0.0365972f,0.0799657f,0.100469f},{-0.0364177f,0.0805185f,0.0918925f}, - {-0.0364172f,0.08052f,0.100469f},{-0.036356f,0.0811018f,0.100469f},{-0.0400161f,0.0784418f,0.100469f}, - {-0.0405497f,0.0786793f,0.100469f},{-0.0400177f,0.0784424f,0.0918925f},{-0.0405514f,0.07868f,0.0918925f}, - {-0.0410221f,0.0790223f,0.100469f},{-0.0410252f,0.0790251f,0.0918925f},{-0.0414146f,0.0794574f,0.100469f}, - {-0.041707f,0.0799633f,0.100469f},{-0.0414155f,0.0794586f,0.0918925f},{-0.041708f,0.0799657f,0.0918925f}, - {-0.0418875f,0.0805185f,0.100469f},{-0.041888f,0.08052f,0.0918925f},{-0.0419492f,0.0811018f,0.100469f}, - {-0.0808108f,0.0783204f,0.0918925f},{-0.0813962f,0.078321f,0.0918925f},{-0.0813929f,0.0783204f,0.100469f}, - {-0.0808074f,0.078321f,0.100469f},{-0.0802383f,0.0784418f,0.0918925f},{-0.0802367f,0.0784424f,0.100469f}, - {-0.079703f,0.07868f,0.100469f},{-0.0792323f,0.0790223f,0.0918925f},{-0.0797047f,0.0786793f,0.0918925f}, - {-0.0792292f,0.0790251f,0.100469f},{-0.0788398f,0.0794574f,0.0918925f},{-0.0788389f,0.0794586f,0.100469f}, - {-0.0785474f,0.0799633f,0.0918925f},{-0.0785464f,0.0799657f,0.100469f},{-0.0783669f,0.0805185f,0.0918925f}, - {-0.0783664f,0.08052f,0.100469f},{-0.0783052f,0.0811018f,0.100469f},{-0.0783052f,0.0811018f,0.0918925f}, - {-0.0819653f,0.0784418f,0.100469f},{-0.0824989f,0.0786793f,0.100469f},{-0.0819669f,0.0784424f,0.0918925f}, - {-0.0825006f,0.07868f,0.0918925f},{-0.0829714f,0.0790223f,0.100469f},{-0.0829744f,0.0790251f,0.0918925f}, - {-0.0833638f,0.0794574f,0.100469f},{-0.0836562f,0.0799633f,0.100469f},{-0.0833647f,0.0794586f,0.0918925f}, - {-0.0836572f,0.0799657f,0.0918925f},{-0.0838367f,0.0805185f,0.100469f},{-0.0838372f,0.08052f,0.0918925f}, - {-0.0838984f,0.0811018f,0.100469f},{-0.0838984f,0.0811018f,0.0918925f},{0.0813929f,0.0783204f,0.0918925f}, - {0.0808074f,0.078321f,0.0918925f},{0.0808108f,0.0783204f,0.100469f},{0.0813962f,0.078321f,0.100469f}, - {0.0819653f,0.0784418f,0.0918925f},{0.0819669f,0.0784424f,0.100469f},{0.0825006f,0.07868f,0.100469f}, - {0.0829714f,0.0790223f,0.0918925f},{0.0824989f,0.0786793f,0.0918925f},{0.0829744f,0.0790251f,0.100469f}, - {0.0833638f,0.0794574f,0.0918925f},{0.0833647f,0.0794586f,0.100469f},{0.0836562f,0.0799633f,0.0918925f}, - {0.0836572f,0.0799657f,0.100469f},{0.0838367f,0.0805185f,0.0918925f},{0.0838372f,0.08052f,0.100469f}, - {0.0838984f,0.0811018f,0.100469f},{0.0838984f,0.0811018f,0.0918925f},{0.0802383f,0.0784418f,0.100469f}, - {0.0797047f,0.0786793f,0.100469f},{0.0802367f,0.0784424f,0.0918925f},{0.079703f,0.07868f,0.0918925f}, - {0.0792323f,0.0790223f,0.100469f},{0.0792292f,0.0790251f,0.0918925f},{0.0788398f,0.0794574f,0.100469f}, - {0.0785474f,0.0799633f,0.100469f},{0.0788389f,0.0794586f,0.0918925f},{0.0785464f,0.0799657f,0.0918925f}, - {0.0783669f,0.0805185f,0.100469f},{0.0783664f,0.08052f,0.0918925f},{0.0783052f,0.0811018f,0.100469f}, - {0.0783052f,0.0811018f,0.0918925f},{0.0813929f,-0.0838832f,0.0918925f},{0.0808074f,-0.0838826f,0.0918925f}, - {0.0808108f,-0.0838832f,0.100469f},{0.0813962f,-0.0838826f,0.100469f},{0.0819653f,-0.0837618f,0.0918925f}, - {0.0819669f,-0.0837612f,0.100469f},{0.0825006f,-0.0835236f,0.100469f},{0.0829714f,-0.0831813f,0.0918925f}, - {0.0824989f,-0.0835243f,0.0918925f},{0.0829744f,-0.0831785f,0.100469f},{0.0833638f,-0.0827462f,0.0918925f}, - {0.0833647f,-0.082745f,0.100469f},{0.0836562f,-0.0822403f,0.0918925f},{0.0836572f,-0.0822379f,0.100469f}, - {0.0838367f,-0.0816851f,0.0918925f},{0.0838372f,-0.0816836f,0.100469f},{0.0838984f,-0.0811018f,0.100469f}, - {0.0838984f,-0.0811018f,0.0918925f},{0.0802383f,-0.0837618f,0.100469f},{0.0797047f,-0.0835243f,0.100469f}, - {0.0802367f,-0.0837612f,0.0918925f},{0.079703f,-0.0835236f,0.0918925f},{0.0792323f,-0.0831813f,0.100469f}, - {0.0792292f,-0.0831785f,0.0918925f},{0.0788398f,-0.0827462f,0.100469f},{0.0785474f,-0.0822403f,0.100469f}, - {0.0788389f,-0.082745f,0.0918925f},{0.0785464f,-0.0822379f,0.0918925f},{0.0783669f,-0.0816851f,0.100469f}, - {0.0783664f,-0.0816836f,0.0918925f},{0.0783052f,-0.0811018f,0.100469f},{0.0783052f,-0.0811018f,0.0918925f}, - {-0.0603023f,-0.0838832f,0.0918925f},{-0.0608877f,-0.0838826f,0.0918925f},{-0.0608844f,-0.0838832f,0.100469f}, - {-0.0602989f,-0.0838826f,0.100469f},{-0.0597298f,-0.0837618f,0.0918925f},{-0.0597282f,-0.0837612f,0.100469f}, - {-0.0591945f,-0.0835236f,0.100469f},{-0.0587238f,-0.0831813f,0.0918925f},{-0.0591962f,-0.0835243f,0.0918925f}, - {-0.0587207f,-0.0831785f,0.100469f},{-0.0583313f,-0.0827462f,0.0918925f},{-0.0583304f,-0.082745f,0.100469f}, - {-0.0580389f,-0.0822403f,0.0918925f},{-0.0580379f,-0.0822379f,0.100469f},{-0.0578584f,-0.0816851f,0.0918925f}, - {-0.0578579f,-0.0816836f,0.100469f},{-0.0577967f,-0.0811018f,0.100469f},{-0.0577967f,-0.0811018f,0.0918925f}, - {-0.0614568f,-0.0837618f,0.100469f},{-0.0619904f,-0.0835243f,0.100469f},{-0.0614584f,-0.0837612f,0.0918925f}, - {-0.0619921f,-0.0835236f,0.0918925f},{-0.0624629f,-0.0831813f,0.100469f},{-0.0624659f,-0.0831785f,0.0918925f}, - {-0.0628553f,-0.0827462f,0.100469f},{-0.0631477f,-0.0822403f,0.100469f},{-0.0628562f,-0.082745f,0.0918925f}, - {-0.0631487f,-0.0822379f,0.0918925f},{-0.0633282f,-0.0816851f,0.100469f},{-0.0633287f,-0.0816836f,0.0918925f}, - {-0.0633899f,-0.0811018f,0.100469f},{-0.0633899f,-0.0811018f,0.0918925f},{0.280753f,0.00413429f,0.0918925f}, - {0.281577f,0.005033f,0.0918925f},{0.281577f,0.005033f,0.100469f},{0.282607f,0.00568869f,0.0918925f}, - {0.283758f,0.00605158f,0.100469f},{0.282605f,0.00568781f,0.100469f},{0.284979f,0.00610573f,0.0918925f}, - {0.284979f,0.00610573f,0.100469f},{0.283761f,0.00605247f,0.0918925f},{0.280752f,0.00413168f,0.100469f}, - {0.280193f,0.00305863f,0.100469f},{0.280195f,0.00306124f,0.0918925f},{0.279929f,0.00186868f,0.0918925f}, - {0.279929f,0.00186868f,0.100469f},{0.288796f,-0.00343343f,0.0918925f},{0.288143f,-0.00445856f,0.0918925f}, - {0.288143f,-0.00445842f,0.100469f},{0.287245f,-0.00528145f,0.0918925f},{0.286169f,-0.00584165f,0.100469f}, - {0.287247f,-0.0052798f,0.100469f},{0.284979f,-0.00610573f,0.0918925f},{0.284979f,-0.00610573f,0.100469f}, - {0.286165f,-0.00584289f,0.0918925f},{0.288798f,-0.00343061f,0.100469f},{0.289163f,-0.00227009f,0.100469f}, - {0.289162f,-0.00227354f,0.0918925f},{0.289216f,-0.00105623f,0.0918925f},{0.289216f,-0.00105623f,0.100469f}, - {-0.301706f,-0.00557749f,0.100469f},{-0.300865f,-0.00557653f,0.100469f},{-0.300871f,-0.00557749f,0.0918925f}, - {-0.302537f,-0.00545222f,0.100469f},{-0.301712f,-0.00557653f,0.0918925f},{-0.302539f,-0.00545147f,0.0918925f}, - {-0.303332f,-0.00520667f,0.100469f},{-0.303333f,-0.00520615f,0.0918925f},{-0.304083f,-0.00484531f,0.0918925f}, - {-0.30408f,-0.00484666f,0.100469f},{-0.30477f,-0.00437673f,0.100469f},{-0.305913f,-0.00314621f,0.0918925f}, - {-0.306328f,-0.0024268f,0.100469f},{-0.305912f,-0.00314718f,0.100469f},{-0.304776f,-0.00437292f,0.0918925f}, - {-0.305388f,-0.00380457f,0.100469f},{-0.305391f,-0.00380129f,0.0918925f},{-0.306329f,-0.0024238f,0.0918925f}, - {-0.306632f,-0.00165337f,0.100469f},{-0.306633f,-0.00164971f,0.0918925f},{-0.306818f,-0.000839977f,0.0918925f}, - {-0.306882f,1.19421e-018f,0.100469f},{-0.306818f,-0.000839977f,0.100469f},{-0.306882f,1.19421e-018f,0.0918925f}, - {-0.30004f,-0.00545222f,0.0918925f},{-0.299245f,-0.00520667f,0.0918925f},{-0.300038f,-0.00545147f,0.100469f}, - {-0.299244f,-0.00520615f,0.100469f},{-0.298497f,-0.00484666f,0.0918925f},{-0.298494f,-0.00484531f,0.100469f}, - {-0.297807f,-0.00437673f,0.0918925f},{-0.297189f,-0.00380457f,0.0918925f},{-0.297802f,-0.00437292f,0.100469f}, - {-0.297186f,-0.00380129f,0.100469f},{-0.296665f,-0.00314718f,0.0918925f},{-0.296664f,-0.00314621f,0.100469f}, - {-0.296249f,-0.0024268f,0.0918925f},{-0.295945f,-0.00165337f,0.0918925f},{-0.296248f,-0.0024238f,0.100469f}, - {-0.295944f,-0.00164971f,0.100469f},{-0.295759f,-0.000839977f,0.0918925f},{-0.295759f,-0.000839977f,0.100469f}, - {-0.295695f,5.09237e-019f,0.0918925f},{-0.295695f,5.09237e-019f,0.100469f},{-0.000417625f,0.295711f,0.100469f}, - {0.000423769f,0.295712f,0.100469f},{0.000417625f,0.295711f,0.0918925f},{-0.00124862f,0.295836f,0.100469f}, - {-0.000423769f,0.295712f,0.0918925f},{-0.00125042f,0.295837f,0.0918925f},{-0.00204323f,0.296082f,0.100469f}, - {-0.0020445f,0.296082f,0.0918925f},{-0.00279455f,0.296443f,0.0918925f},{-0.00279128f,0.296442f,0.100469f}, - {-0.00348179f,0.296912f,0.100469f},{-0.00462441f,0.298142f,0.0918925f},{-0.00503944f,0.298862f,0.100469f}, - {-0.00462371f,0.298141f,0.100469f},{-0.00348701f,0.296916f,0.0918925f},{-0.00409988f,0.297484f,0.100469f}, - {-0.00410228f,0.297487f,0.0918925f},{-0.00504068f,0.298865f,0.0918925f},{-0.00534308f,0.299635f,0.100469f}, - {-0.0053446f,0.299639f,0.0918925f},{-0.00552953f,0.300449f,0.0918925f},{-0.00559323f,0.301289f,0.100469f}, - {-0.00552953f,0.300449f,0.100469f},{-0.00559323f,0.301289f,0.0918925f},{0.00124862f,0.295836f,0.0918925f}, - {0.00204323f,0.296082f,0.0918925f},{0.00125042f,0.295837f,0.100469f},{0.0020445f,0.296082f,0.100469f}, - {0.00279128f,0.296442f,0.0918925f},{0.00279455f,0.296443f,0.100469f},{0.00348179f,0.296912f,0.0918925f}, - {0.00409988f,0.297484f,0.0918925f},{0.00348701f,0.296916f,0.100469f},{0.00410228f,0.297487f,0.100469f}, - {0.00462371f,0.298141f,0.0918925f},{0.00462441f,0.298142f,0.100469f},{0.00503944f,0.298862f,0.0918925f}, - {0.00534308f,0.299635f,0.0918925f},{0.00504068f,0.298865f,0.100469f},{0.0053446f,0.299639f,0.100469f}, - {0.00552953f,0.300449f,0.0918925f},{0.00552953f,0.300449f,0.100469f},{0.00559323f,0.301289f,0.0918925f}, - {0.00559323f,0.301289f,0.100469f},{0.300871f,-0.00557749f,0.100469f},{0.301712f,-0.00557653f,0.100469f}, - {0.301706f,-0.00557749f,0.0918925f},{0.30004f,-0.00545222f,0.100469f},{0.300865f,-0.00557653f,0.0918925f}, - {0.300038f,-0.00545147f,0.0918925f},{0.299245f,-0.00520667f,0.100469f},{0.299244f,-0.00520615f,0.0918925f}, - {0.298494f,-0.00484531f,0.0918925f},{0.298497f,-0.00484666f,0.100469f},{0.297807f,-0.00437673f,0.100469f}, - {0.296664f,-0.00314621f,0.0918925f},{0.296249f,-0.0024268f,0.100469f},{0.296665f,-0.00314718f,0.100469f}, - {0.297802f,-0.00437292f,0.0918925f},{0.297189f,-0.00380457f,0.100469f},{0.297186f,-0.00380129f,0.0918925f}, - {0.296248f,-0.0024238f,0.0918925f},{0.295945f,-0.00165337f,0.100469f},{0.295944f,-0.00164971f,0.0918925f}, - {0.295759f,-0.000839977f,0.0918925f},{0.295695f,1.19421e-018f,0.100469f},{0.295759f,-0.000839977f,0.100469f}, - {0.295695f,1.19421e-018f,0.0918925f},{0.302537f,-0.00545222f,0.0918925f},{0.303332f,-0.00520667f,0.0918925f}, - {0.302539f,-0.00545147f,0.100469f},{0.303333f,-0.00520615f,0.100469f},{0.30408f,-0.00484666f,0.0918925f}, - {0.304083f,-0.00484531f,0.100469f},{0.30477f,-0.00437673f,0.0918925f},{0.305388f,-0.00380457f,0.0918925f}, - {0.304776f,-0.00437292f,0.100469f},{0.305391f,-0.00380129f,0.100469f},{0.305912f,-0.00314718f,0.0918925f}, - {0.305913f,-0.00314621f,0.100469f},{0.306328f,-0.0024268f,0.0918925f},{0.306632f,-0.00165337f,0.0918925f}, - {0.306329f,-0.0024238f,0.100469f},{0.306633f,-0.00164971f,0.100469f},{0.306818f,-0.000839977f,0.0918925f}, - {0.306818f,-0.000839977f,0.100469f},{0.306882f,5.09237e-019f,0.0918925f},{0.306882f,5.09237e-019f,0.100469f}, - {-0.000417625f,-0.306866f,0.100469f},{0.000423769f,-0.306865f,0.100469f},{0.000417625f,-0.306866f,0.0918925f}, - {-0.00124862f,-0.306741f,0.100469f},{-0.000423769f,-0.306865f,0.0918925f},{-0.00125042f,-0.30674f,0.0918925f}, - {-0.00204323f,-0.306495f,0.100469f},{-0.0020445f,-0.306495f,0.0918925f},{-0.00279455f,-0.306134f,0.0918925f}, - {-0.00279128f,-0.306135f,0.100469f},{-0.00348179f,-0.305665f,0.100469f},{-0.00462441f,-0.304435f,0.0918925f}, - {-0.00503944f,-0.303715f,0.100469f},{-0.00462371f,-0.304436f,0.100469f},{-0.00348701f,-0.305661f,0.0918925f}, - {-0.00409988f,-0.305093f,0.100469f},{-0.00410228f,-0.30509f,0.0918925f},{-0.00504068f,-0.303712f,0.0918925f}, - {-0.00534308f,-0.302942f,0.100469f},{-0.0053446f,-0.302938f,0.0918925f},{-0.00552953f,-0.302129f,0.0918925f}, - {-0.00559323f,-0.301289f,0.100469f},{-0.00552953f,-0.302129f,0.100469f},{-0.00559323f,-0.301289f,0.0918925f}, - {0.00124862f,-0.306741f,0.0918925f},{0.00204323f,-0.306495f,0.0918925f},{0.00125042f,-0.30674f,0.100469f}, - {0.0020445f,-0.306495f,0.100469f},{0.00279128f,-0.306135f,0.0918925f},{0.00279455f,-0.306134f,0.100469f}, - {0.00348179f,-0.305665f,0.0918925f},{0.00409988f,-0.305093f,0.0918925f},{0.00348701f,-0.305661f,0.100469f}, - {0.00410228f,-0.30509f,0.100469f},{0.00462371f,-0.304436f,0.0918925f},{0.00462441f,-0.304435f,0.100469f}, - {0.00503944f,-0.303715f,0.0918925f},{0.00534308f,-0.302942f,0.0918925f},{0.00504068f,-0.303712f,0.100469f}, - {0.0053446f,-0.302938f,0.100469f},{0.00552953f,-0.302129f,0.0918925f},{0.00552953f,-0.302129f,0.100469f}, - {0.00559323f,-0.301289f,0.0918925f},{0.00559323f,-0.301289f,0.100469f},{-0.0348217f,0.314624f,0.0918925f}, - {-0.0337164f,0.317214f,0.100469f},{-0.0337175f,0.317211f,0.0918925f},{-0.0324231f,0.319705f,0.0918925f}, - {-0.0324223f,0.319706f,0.100469f},{-0.0309468f,0.32209f,0.100469f},{-0.0309475f,0.322089f,0.0918925f}, - {-0.0292965f,0.324356f,0.100469f},{-0.0292972f,0.324355f,0.0918925f},{-0.0274788f,0.326494f,0.0918925f}, - {-0.0274777f,0.326495f,0.100469f},{-0.0254989f,0.328495f,0.100469f},{-0.0255009f,0.328493f,0.0918925f}, - {-0.0233785f,0.330338f,0.100469f},{-0.0233795f,0.330337f,0.0918925f},{-0.0211301f,0.332012f,0.0918925f}, - {-0.0211293f,0.332013f,0.100469f},{-0.0187614f,0.333513f,0.100469f},{-0.0187622f,0.333513f,0.0918925f}, - {-0.0162847f,0.334833f,0.100469f},{-0.0162855f,0.334832f,0.0918925f},{-0.0137109f,0.335964f,0.0918925f}, - {-0.0137094f,0.335965f,0.100469f},{-0.0110591f,0.336899f,0.100469f},{-0.0110599f,0.336899f,0.0918925f}, - {-0.00835103f,0.33763f,0.100469f},{-0.00835149f,0.337629f,0.0918925f},{-0.00559768f,0.338154f,0.0918925f}, - {-0.00559736f,0.338154f,0.100469f},{-0.00280978f,0.338471f,0.100469f},{-0.00280994f,0.338471f,0.0918925f}, - {-6.08556e-017f,0.338577f,0.100469f},{-6.08556e-017f,0.338577f,0.0918925f},{-0.0348209f,0.314627f,0.100469f}, - {-0.0357267f,0.311966f,0.0918925f},{-0.0357264f,0.311967f,0.100469f},{-0.036428f,0.309251f,0.0918925f}, - {-0.0364278f,0.309253f,0.100469f},{-0.0369231f,0.306493f,0.100469f},{-0.0369234f,0.306492f,0.0918925f}, - {-0.0372102f,0.303699f,0.0918925f},{-0.03721f,0.303701f,0.100469f},{-0.0372859f,0.300887f,0.0918925f}, - {-0.037286f,0.300889f,0.100469f},{-0.0371501f,0.298082f,0.100469f},{-0.0371499f,0.298081f,0.0918925f}, - {-0.0368038f,0.295298f,0.0918925f},{-0.036804f,0.295299f,0.100469f},{-0.0362498f,0.29255f,0.0918925f}, - {-0.03625f,0.292551f,0.100469f},{-0.0354901f,0.289849f,0.100469f},{-0.0354899f,0.289848f,0.0918925f}, - {-0.0345264f,0.287205f,0.0918925f},{-0.034527f,0.287207f,0.100469f},{-0.0333678f,0.284645f,0.0918925f}, - {-0.0333682f,0.284646f,0.100469f},{-0.0320226f,0.282185f,0.100469f},{-0.0320224f,0.282184f,0.0918925f}, - {-0.0304967f,0.279833f,0.0918925f},{-0.0304969f,0.279833f,0.100469f},{-0.0287972f,0.2776f,0.0918925f}, - {-0.0287973f,0.2776f,0.100469f},{-0.0269304f,0.275498f,0.0918925f},{-0.0269304f,0.275498f,0.100469f}, - {-0.314624f,-0.0348217f,0.0918925f},{-0.317214f,-0.0337164f,0.100469f},{-0.317211f,-0.0337175f,0.0918925f}, - {-0.319705f,-0.0324231f,0.0918925f},{-0.319706f,-0.0324223f,0.100469f},{-0.32209f,-0.0309468f,0.100469f}, - {-0.322089f,-0.0309475f,0.0918925f},{-0.324356f,-0.0292965f,0.100469f},{-0.324355f,-0.0292972f,0.0918925f}, - {-0.326494f,-0.0274788f,0.0918925f},{-0.326495f,-0.0274777f,0.100469f},{-0.328495f,-0.0254989f,0.100469f}, - {-0.328493f,-0.0255009f,0.0918925f},{-0.330338f,-0.0233785f,0.100469f},{-0.330337f,-0.0233795f,0.0918925f}, - {-0.332012f,-0.0211301f,0.0918925f},{-0.332013f,-0.0211293f,0.100469f},{-0.333513f,-0.0187614f,0.100469f}, - {-0.333513f,-0.0187622f,0.0918925f},{-0.334833f,-0.0162847f,0.100469f},{-0.334832f,-0.0162855f,0.0918925f}, - {-0.335964f,-0.0137109f,0.0918925f},{-0.335965f,-0.0137094f,0.100469f},{-0.336899f,-0.0110591f,0.100469f}, - {-0.336899f,-0.0110599f,0.0918925f},{-0.33763f,-0.00835103f,0.100469f},{-0.337629f,-0.00835149f,0.0918925f}, - {-0.338154f,-0.00559768f,0.0918925f},{-0.338154f,-0.00559736f,0.100469f},{-0.338471f,-0.00280978f,0.100469f}, - {-0.338471f,-0.00280994f,0.0918925f},{-0.338577f,5.09237e-019f,0.100469f},{-0.338577f,5.09237e-019f,0.0918925f}, - {-0.314627f,-0.0348209f,0.100469f},{-0.311966f,-0.0357267f,0.0918925f},{-0.311967f,-0.0357264f,0.100469f}, - {-0.309251f,-0.036428f,0.0918925f},{-0.309253f,-0.0364278f,0.100469f},{-0.306493f,-0.0369231f,0.100469f}, - {-0.306492f,-0.0369234f,0.0918925f},{-0.303699f,-0.0372102f,0.0918925f},{-0.303701f,-0.03721f,0.100469f}, - {-0.300887f,-0.0372859f,0.0918925f},{-0.300889f,-0.037286f,0.100469f},{-0.298082f,-0.0371501f,0.100469f}, - {-0.298081f,-0.0371499f,0.0918925f},{-0.295298f,-0.0368038f,0.0918925f},{-0.295299f,-0.036804f,0.100469f}, - {-0.29255f,-0.0362498f,0.0918925f},{-0.292551f,-0.03625f,0.100469f},{-0.289849f,-0.0354901f,0.100469f}, - {-0.289848f,-0.0354899f,0.0918925f},{-0.287205f,-0.0345264f,0.0918925f},{-0.287207f,-0.034527f,0.100469f}, - {-0.284645f,-0.0333678f,0.0918925f},{-0.284646f,-0.0333682f,0.100469f},{-0.282185f,-0.0320226f,0.100469f}, - {-0.282184f,-0.0320224f,0.0918925f},{-0.279833f,-0.0304967f,0.0918925f},{-0.279833f,-0.0304969f,0.100469f}, - {-0.2776f,-0.0287972f,0.0918925f},{-0.2776f,-0.0287973f,0.100469f},{-0.275498f,-0.0269304f,0.0918925f}, - {-0.275498f,-0.0269304f,0.100469f},{0.0348217f,-0.314624f,0.0918925f},{0.0337164f,-0.317214f,0.100469f}, - {0.0337175f,-0.317211f,0.0918925f},{0.0324231f,-0.319705f,0.0918925f},{0.0324223f,-0.319706f,0.100469f}, - {0.0309468f,-0.32209f,0.100469f},{0.0309475f,-0.322089f,0.0918925f},{0.0292965f,-0.324356f,0.100469f}, - {0.0292972f,-0.324355f,0.0918925f},{0.0274788f,-0.326494f,0.0918925f},{0.0274777f,-0.326495f,0.100469f}, - {0.0254989f,-0.328495f,0.100469f},{0.0255009f,-0.328493f,0.0918925f},{0.0233785f,-0.330338f,0.100469f}, - {0.0233795f,-0.330337f,0.0918925f},{0.0211301f,-0.332012f,0.0918925f},{0.0211293f,-0.332013f,0.100469f}, - {0.0187614f,-0.333513f,0.100469f},{0.0187622f,-0.333513f,0.0918925f},{0.0162847f,-0.334833f,0.100469f}, - {0.0162855f,-0.334832f,0.0918925f},{0.0137109f,-0.335964f,0.0918925f},{0.0137094f,-0.335965f,0.100469f}, - {0.0110591f,-0.336899f,0.100469f},{0.0110599f,-0.336899f,0.0918925f},{0.00835103f,-0.33763f,0.100469f}, - {0.00835149f,-0.337629f,0.0918925f},{0.00559768f,-0.338154f,0.0918925f},{0.00559736f,-0.338154f,0.100469f}, - {0.00280978f,-0.338471f,0.100469f},{0.00280994f,-0.338471f,0.0918925f},{5.51904e-017f,-0.338577f,0.100469f}, - {5.51904e-017f,-0.338577f,0.0918925f},{0.0348209f,-0.314627f,0.100469f},{0.0357267f,-0.311966f,0.0918925f}, - {0.0357264f,-0.311967f,0.100469f},{0.036428f,-0.309251f,0.0918925f},{0.0364278f,-0.309253f,0.100469f}, - {0.0369231f,-0.306493f,0.100469f},{0.0369234f,-0.306492f,0.0918925f},{0.0372102f,-0.303699f,0.0918925f}, - {0.03721f,-0.303701f,0.100469f},{0.0372859f,-0.300887f,0.0918925f},{0.037286f,-0.300889f,0.100469f}, - {0.0371501f,-0.298082f,0.100469f},{0.0371499f,-0.298081f,0.0918925f},{0.0368038f,-0.295298f,0.0918925f}, - {0.036804f,-0.295299f,0.100469f},{0.0362498f,-0.29255f,0.0918925f},{0.03625f,-0.292551f,0.100469f}, - {0.0354901f,-0.289849f,0.100469f},{0.0354899f,-0.289848f,0.0918925f},{0.0345264f,-0.287205f,0.0918925f}, - {0.034527f,-0.287207f,0.100469f},{0.0333678f,-0.284645f,0.0918925f},{0.0333682f,-0.284646f,0.100469f}, - {0.0320226f,-0.282185f,0.100469f},{0.0320224f,-0.282184f,0.0918925f},{0.0304967f,-0.279833f,0.0918925f}, - {0.0304969f,-0.279833f,0.100469f},{0.0287972f,-0.2776f,0.0918925f},{0.0287973f,-0.2776f,0.100469f}, - {0.0269304f,-0.275498f,0.0918925f},{0.0269304f,-0.275498f,0.100469f},{-0.0768194f,-0.0930843f,0.100469f}, - {-0.079125f,-0.0926561f,0.100469f},{0.0167528f,-0.0298143f,0.100469f},{-0.0167532f,-0.0298151f,0.100469f}, - {-0.0160285f,-0.0314546f,0.100469f},{-0.107313f,-0.0145465f,0.100469f},{-0.107316f,0.0145474f,0.100469f}, - {-0.109619f,-0.0141179f,0.100469f},{-0.0745764f,-0.0932205f,0.100469f},{-0.0932205f,-0.0326272f,0.100469f}, - {-0.0696868f,-0.0383722f,0.100469f},{-0.0694022f,-0.0366018f,0.100469f},{-0.306315f,0.00242058f,0.100469f}, - {-0.313415f,0.00227358f,0.100469f},{-0.306637f,0.00165192f,0.100469f},{-0.27258f,-0.0243605f,0.100469f}, - {-0.29667f,0.00314874f,0.100469f},{-0.296252f,0.00242484f,0.100469f},{0.0145465f,-0.107313f,0.100469f}, - {-0.0145474f,-0.107316f,0.100469f},{-0.0141193f,-0.109622f,0.100469f},{-0.0628562f,-0.0794586f,0.100469f}, - {-0.0932205f,-0.0745764f,0.100469f},{-0.0631487f,-0.0799657f,0.100469f},{-0.2915f,-0.0119424f,0.100469f}, - {-0.304721f,-0.0124916f,0.100469f},{-0.0326272f,-0.0932205f,0.100469f},{-0.0877597f,-0.0877597f,0.100469f}, - {-0.0858213f,-0.089447f,0.100469f},{-0.0633287f,-0.08052f,0.100469f},{-0.0365982f,-0.0799633f,0.100469f}, - {-0.0368906f,-0.0794574f,0.100469f},{-0.0213792f,-0.0969955f,0.100469f},{-0.0194438f,-0.0986812f,0.100469f}, - {-0.0259491f,-0.0190126f,0.100469f},{-0.0274515f,-0.0180347f,0.100469f},{0.0213822f,-0.0969939f,0.100469f}, - {0.0194438f,-0.0986812f,0.100469f},{-0.0177565f,-0.10062f,0.100469f},{0.0177581f,-0.100617f,0.100469f}, - {0.0745764f,-0.0932205f,0.100469f},{-0.0152921f,-0.105002f,0.100469f},{0.0152921f,-0.105002f,0.100469f}, - {0.0163653f,-0.102745f,0.100469f},{-0.0163644f,-0.102748f,0.100469f},{0.0141179f,-0.109619f,0.100469f}, - {-0.00227358f,-0.313415f,0.100469f},{-0.00105623f,-0.313362f,0.100469f},{-0.00343287f,-0.31378f,0.100469f}, - {0.0213591f,-0.29942f,0.100469f},{0.0186351f,-0.295578f,0.100469f},{0.0131454f,-0.305747f,0.100469f}, - {0.0122298f,-0.311032f,0.100469f},{0.014044f,-0.30657f,0.100469f},{-0.0116607f,-0.311153f,0.100469f}, - {-0.0111271f,-0.31139f,0.100469f},{0.00298716f,-0.322407f,0.100469f},{0.00408405f,-0.321856f,0.100469f}, - {-0.0151227f,-0.295446f,0.100469f},{-0.00461423f,-0.29814f,0.100469f},{-0.0131454f,-0.29683f,0.100469f}, - {-0.0324248f,-0.319702f,0.100469f},{-0.0309477f,-0.322089f,0.100469f},{-0.0292931f,-0.324357f,0.100469f}, - {-0.0274755f,-0.326496f,0.100469f},{-0.0121261f,-0.299015f,0.100469f},{-0.00502626f,-0.298868f,0.100469f}, - {-0.0124916f,-0.297856f,0.100469f},{-0.0102622f,-0.312168f,0.100469f},{-0.0211299f,-0.332011f,0.100469f}, - {-0.0187591f,-0.333514f,0.100469f},{-0.295223f,-0.0174585f,0.100469f},{-0.29719f,0.00380369f,0.100469f}, - {-0.301289f,-0.0214407f,0.100469f},{-0.29942f,-0.0213591f,0.100469f},{-0.00584288f,-0.316411f,0.100469f}, - {0.00571052f,-0.319924f,0.100469f},{-0.297802f,0.0043727f,0.100469f},{-0.297856f,0.0124916f,0.100469f}, - {-0.298493f,0.00484368f,0.100469f},{0.0139213f,-0.31139f,0.100469f},{0.0143937f,-0.311733f,0.100469f}, - {-0.302532f,0.00545321f,0.100469f},{-0.301706f,0.00557763f,0.100469f},{-0.312949f,-0.00986419f,0.100469f}, - {-0.312416f,-0.0101017f,0.100469f},{0.0106515f,-0.311736f,0.100469f},{0.0111254f,-0.311391f,0.100469f}, - {-0.30087f,0.00557747f,0.100469f},{-0.301289f,0.0121187f,0.100469f},{-0.31378f,0.00343287f,0.100469f}, - {5.8201e-009f,-0.313407f,0.100469f},{0.0214407f,-0.301289f,0.100469f},{0.0174585f,-0.295223f,0.100469f}, - {0.0197119f,-0.296256f,0.100469f},{0.0121261f,-0.303562f,0.100469f},{0.0147862f,-0.312168f,0.100469f}, - {0.005033f,-0.321f,0.100469f},{0.0147862f,-0.28712f,0.100469f},{0.00409889f,-0.297485f,0.100469f}, - {0.0046188f,-0.29814f,0.100469f},{0.00503626f,-0.298864f,0.100469f},{0.0364172f,-0.08052f,0.100469f}, - {-0.00996978f,-0.312674f,0.100469f},{-0.00445857f,-0.314434f,0.100469f},{-0.00835238f,-0.337628f,0.100469f}, - {-0.0110628f,-0.336897f,0.100469f},{0.00186868f,-0.322648f,0.100469f},{-6.42929e-017f,-0.322729f,0.100469f}, - {-0.00534833f,-0.299637f,0.100469f},{-0.00409933f,-0.297483f,0.100469f},{-0.00348669f,-0.296915f,0.100469f}, - {-0.0255017f,-0.328493f,0.100469f},{-0.0233817f,-0.330334f,0.100469f},{-0.00553085f,-0.300454f,0.100469f}, - {-0.00132352f,-0.218226f,0.100469f},{-0.0139831f,-0.243259f,0.100469f},{-0.00124367f,-0.295835f,0.100469f}, - {-0.00041711f,-0.295711f,0.100469f},{-0.0139831f,-0.111865f,0.100469f},{0.0139831f,-0.111865f,0.100469f}, - {0.0166349f,-0.258757f,0.100469f},{0.0154692f,-0.254935f,0.100469f},{-0.0214407f,-0.301289f,0.100469f}, - {-0.0372872f,-0.300891f,0.100469f},{-0.0371926f,-0.303697f,0.100469f},{-0.00132352f,-0.255514f,0.100469f}, - {-0.00112134f,-0.255125f,0.100469f},{-0.0146388f,-0.25105f,0.100469f},{0.00584288f,-0.286166f,0.100469f}, - {0.0102613f,-0.287121f,0.100469f},{0.0146388f,-0.251049f,0.100469f},{0.0013304f,-0.255513f,0.100469f}, - {0.0139831f,-0.243259f,0.100469f},{0.000433147f,-0.254615f,0.100469f},{0.0141453f,-0.247143f,0.100469f}, - {0.000819963f,-0.254817f,0.100469f},{0.00112493f,-0.255127f,0.100469f},{-0.0154693f,-0.254936f,0.100469f}, - {3.01689e-017f,-0.254546f,0.100469f},{-0.000431051f,-0.254614f,0.100469f},{0.0372799f,-0.0790251f,0.100469f}, - {0.0836959f,-0.0908383f,0.100469f},{0.0814392f,-0.0919114f,0.100469f},{0.0768218f,-0.0930856f,0.100469f}, - {0.0937839f,-0.0280757f,0.100469f},{0.0663164f,-0.0282257f,0.100469f},{0.0671452f,-0.0298151f,0.100469f}, - {0.089447f,-0.0858213f,0.100469f},{0.0908391f,-0.0836927f,0.100469f},{0.0919114f,-0.0814392f,0.100469f}, - {0.0926561f,-0.079125f,0.100469f},{0.0836562f,-0.0799633f,0.100469f},{0.0838367f,-0.0805185f,0.100469f}, - {0.0932205f,-0.0745764f,0.100469f},{0.0829714f,-0.0790223f,0.100469f},{0.0833638f,-0.0794574f,0.100469f}, - {0.0877597f,-0.0877597f,0.100469f},{0.107313f,0.0145465f,0.100469f},{0.105002f,-0.0152921f,0.100469f}, - {0.107316f,-0.0145474f,0.100469f},{0.0819653f,-0.0784418f,0.100469f},{0.0813929f,-0.0783204f,0.100469f}, - {0.0858243f,-0.0894455f,0.100469f},{0.0932205f,-0.0326272f,0.100469f},{-0.0142141f,-0.0383731f,0.100469f}, - {0.0144962f,-0.0366018f,0.100469f},{-0.0145004f,-0.0366037f,0.100469f},{0.0932205f,0.0326272f,0.100469f}, - {0.102748f,-0.0163644f,0.100469f},{0.105002f,0.0152921f,0.100469f},{0.102745f,0.0163653f,0.100469f}, - {0.0986812f,-0.0194438f,0.100469f},{0.100617f,0.0177581f,0.100469f},{0.0986812f,0.0194438f,0.100469f}, - {0.109619f,0.0141179f,0.100469f},{0.109622f,-0.0141193f,0.100469f},{0.290634f,0.0146037f,0.100469f}, - {0.291026f,0.0141686f,0.100469f},{0.111865f,0.0139831f,0.100469f},{0.311372f,-0.035899f,0.100469f}, - {0.314002f,-0.0350539f,0.100469f},{0.305373f,-0.0205678f,0.100469f},{0.305907f,0.00314874f,0.100469f}, - {0.306325f,0.00242484f,0.100469f},{0.319924f,0.00571052f,0.100469f},{0.313415f,-0.00227358f,0.100469f}, - {0.315682f,-0.0104447f,0.100469f},{0.316075f,-0.0108798f,0.100469f},{0.299015f,-0.0121261f,0.100469f}, - {0.300232f,-0.012073f,0.100469f},{0.335522f,0.0147828f,0.100469f},{0.334333f,0.0172772f,0.100469f}, - {0.321f,0.005033f,0.100469f},{0.31194f,-0.0104475f,0.100469f},{0.331418f,-0.0219665f,0.100469f}, - {0.337328f,-0.00956357f,0.100469f},{0.335521f,-0.0147817f,0.100469f},{0.334333f,-0.0172761f,0.100469f}, - {0.322729f,-7.81484e-018f,0.100469f},{0.338551f,-0.00138096f,0.100469f},{0.338551f,0.00138181f,0.100469f}, - {0.332963f,-0.0196753f,0.100469f},{0.33733f,0.00956509f,0.100469f},{0.321856f,0.00408405f,0.100469f}, - {0.322407f,0.00298716f,0.100469f},{0.337939f,0.00686983f,0.100469f},{0.322648f,0.00186868f,0.100469f}, - {0.338347f,0.00413689f,0.100469f},{0.312414f,-0.0101024f,0.100469f},{0.329709f,-0.024138f,0.100469f}, - {0.314434f,-0.00445857f,0.100469f},{0.313518f,-0.0097434f,0.100469f},{0.315333f,-0.00528144f,0.100469f}, - {0.327844f,-0.0261764f,0.100469f},{0.325832f,-0.0280694f,0.100469f},{0.297856f,-0.0124916f,0.100469f}, - {0.31521f,-0.0101017f,0.100469f},{0.323687f,-0.0298108f,0.100469f},{0.295446f,-0.0151227f,0.100469f}, - {0.319039f,-0.032792f,0.100469f},{0.321418f,-0.0313879f,0.100469f},{0.307354f,-0.0174585f,0.100469f}, - {0.306322f,-0.0197119f,0.100469f},{0.321418f,0.0313882f,0.100469f},{0.314676f,0.0151842f,0.100469f}, - {0.323687f,0.0298117f,0.100469f},{0.325828f,0.0280668f,0.100469f},{0.31521f,0.0149467f,0.100469f}, - {0.315682f,0.0146037f,0.100469f},{0.305959f,0.0369915f,0.100469f},{0.303208f,0.0372381f,0.100469f}, - {0.294948f,0.0367442f,0.100469f},{0.29942f,0.0213591f,0.100469f},{0.297686f,0.037113f,0.100469f}, - {0.312414f,0.014946f,0.100469f},{0.31194f,0.0146009f,0.100469f},{0.296256f,0.0197119f,0.100469f}, - {0.28847f,0.015305f,0.100469f},{0.289055f,0.0153056f,0.100469f},{0.30657f,0.014044f,0.100469f}, - {0.305747f,0.0131454f,0.100469f},{0.303562f,0.0121261f,0.100469f},{0.302345f,0.012073f,0.100469f}, - {0.302534f,0.00545274f,0.100469f},{0.290161f,0.0149467f,0.100469f},{0.295223f,0.0174585f,0.100469f}, - {0.289628f,0.0151842f,0.100469f},{0.286209f,0.0136603f,0.100469f},{0.27258f,0.0243605f,0.100469f}, - {0.286029f,0.013106f,0.100469f},{0.288143f,0.00445857f,0.100469f},{0.269417f,0.0220151f,0.100469f}, - {0.287245f,0.00528144f,0.100469f},{0.297802f,0.00437403f,0.100469f},{0.255403f,0.00112774f,0.100469f}, - {0.254935f,0.0154692f,0.100469f},{0.255016f,0.00132937f,0.100469f},{0.297189f,0.00380587f,0.100469f}, - {0.289162f,0.00227358f,0.100469f},{0.296262f,0.00242058f,0.100469f},{0.288797f,0.00343287f,0.100469f}, - {0.300045f,0.00545321f,0.100469f},{0.282071f,-0.0319552f,0.100469f},{0.28449f,-0.0332908f,0.100469f}, - {0.289216f,0.00105623f,0.100469f},{0.28917f,-5.8201e-009f,0.100469f},{0.28383f,-0.00606509f,0.100469f}, - {0.286209f,-0.0113881f,0.100469f},{0.286501f,-0.010881f,0.100469f},{0.111865f,-0.0139831f,0.100469f}, - {0.291026f,-0.0108798f,0.100469f},{0.269418f,-0.0220158f,0.100469f},{0.281577f,-0.005033f,0.100469f}, - {0.275498f,-0.0269304f,0.100469f},{0.243259f,0.0139831f,0.100469f},{0.243259f,-0.0139831f,0.100469f}, - {0.279848f,1.74344e-017f,0.100469f},{0.295758f,0.000834183f,0.100469f},{0.29594f,0.00165192f,0.100469f}, - {0.27258f,-0.024361f,0.100469f},{0.258757f,-0.016635f,0.100469f},{0.254936f,-0.0154693f,0.100469f}, - {0.279929f,-0.00186868f,0.100469f},{0.28017f,-0.00298716f,0.100469f},{0.253259f,0.000430548f,0.100469f}, - {0.253462f,0.000819718f,0.100469f},{0.247143f,0.0141453f,0.100469f},{0.25105f,-0.0146388f,0.100469f}, - {0.247144f,-0.0141452f,0.100469f},{0.218391f,0.000431293f,0.100469f},{0.218186f,0.000817561f,0.100469f}, - {0.10062f,-0.0177565f,0.100469f},{0.0933567f,0.0303842f,0.100469f},{0.0418875f,0.0816851f,0.100469f}, - {0.0516079f,0.0681943f,0.100469f},{0.0709097f,0.0709097f,0.100469f},{0.0548849f,0.0667435f,0.100469f}, - {0.0564469f,0.0658638f,0.100469f},{-0.0245125f,0.0638136f,0.100469f},{-0.0235109f,0.0956018f,0.100469f}, - {-0.0259491f,0.0648858f,0.100469f},{-0.0185115f,-0.0266927f,0.100469f},{0.0195369f,-0.0252221f,0.100469f}, - {-0.019537f,-0.0252222f,0.100469f},{0.0185112f,-0.0266922f,0.100469f},{0.0548849f,-0.0171549f,0.100469f}, - {0.0175819f,-0.028225f,0.100469f},{-0.0175821f,-0.0282257f,0.100469f},{0.0838367f,0.0816851f,0.100469f}, - {0.0894455f,0.0858243f,0.100469f},{0.0836562f,0.0822403f,0.100469f},{0.092657f,0.0791278f,0.100469f}, - {0.0919114f,0.0814392f,0.100469f},{0.0908383f,0.0836959f,0.100469f},{0.0792292f,0.0831785f,0.100469f}, - {0.079703f,0.0835236f,0.100469f},{0.0768194f,0.0930843f,0.100469f},{0.0829714f,0.0831813f,0.100469f}, - {0.0877597f,0.0877597f,0.100469f},{0.0824989f,0.0835243f,0.100469f},{0.0326272f,0.0932205f,0.100469f}, - {0.0388582f,0.0838826f,0.100469f},{0.0394436f,0.0838832f,0.100469f},{0.0745764f,0.0932205f,0.100469f}, - {0.0783664f,0.0816836f,0.100469f},{0.079125f,0.0926561f,0.100469f},{0.0802367f,0.0837612f,0.100469f}, - {0.0785464f,0.0822379f,0.100469f},{0.0788389f,0.082745f,0.100469f},{0.0808074f,0.0838826f,0.100469f}, - {0.0813929f,0.0838832f,0.100469f},{0.0836927f,0.0908391f,0.100469f},{0.0930856f,0.0768218f,0.100469f}, - {0.0481725f,-0.0146844f,0.100469f},{0.0499065f,-0.0151392f,0.100469f},{-0.0339919f,0.0687593f,0.100469f}, - {-0.0306287f,0.0675214f,0.100469f},{-0.0290135f,0.0667435f,0.100469f},{-0.0969939f,-0.0213822f,0.100469f}, - {-0.0632437f,-0.0238204f,0.100469f},{-0.0620385f,-0.0224931f,0.100469f},{0.0163644f,0.102748f,0.100469f}, - {-0.0163653f,0.102745f,0.100469f},{-0.0177581f,0.100617f,0.100469f},{-0.0218598f,0.0614045f,0.100469f}, - {-0.0213822f,0.0969939f,0.100469f},{-0.0231475f,0.0626516f,0.100469f},{0.0152921f,0.105002f,0.100469f}, - {0.0145474f,0.107316f,0.100469f},{-0.0152921f,0.105002f,0.100469f},{-0.0145465f,0.107313f,0.100469f}, - {0.0141193f,0.109622f,0.100469f},{0.0139831f,0.111865f,0.100469f},{-0.0141179f,0.109619f,0.100469f}, - {-0.0139831f,0.111865f,0.100469f},{-0.00584288f,0.286166f,0.100469f},{-0.0131454f,0.305747f,0.100469f}, - {-0.0147871f,0.290408f,0.100469f},{-0.0143968f,0.290841f,0.100469f},{-0.00348669f,0.305663f,0.100469f}, - {-0.00279621f,0.306133f,0.100469f},{-0.0220151f,0.269417f,0.100469f},{-0.00124367f,0.306742f,0.100469f}, - {7.81291e-017f,0.322729f,0.100469f},{-0.00186868f,0.322648f,0.100469f},{0.0121261f,0.299015f,0.100469f}, - {0.0143937f,0.290844f,0.100469f},{0.0147862f,0.290409f,0.100469f},{0.0106515f,0.290841f,0.100469f}, - {0.0372872f,0.300891f,0.100469f},{0.0371926f,0.303697f,0.100469f},{0.0214407f,0.301289f,0.100469f}, - {0.0111254f,0.291186f,0.100469f},{0.0152591f,0.289348f,0.100469f},{0.0122298f,0.291545f,0.100469f}, - {0.014044f,0.296007f,0.100469f},{0.0131454f,0.29683f,0.100469f},{0.0197119f,0.306322f,0.100469f}, - {0.0324248f,0.319702f,0.100469f},{0.0174585f,0.307354f,0.100469f},{0.0186351f,0.306999f,0.100469f}, - {0.033718f,0.31721f,0.100469f},{0.0116591f,0.316472f,0.100469f},{0.0122298f,0.316594f,0.100469f}, - {0.0150786f,0.314951f,0.100469f},{0.0292931f,0.324357f,0.100469f},{0.0147862f,0.315457f,0.100469f}, - {-0.005033f,0.321f,0.100469f},{0.0269304f,0.275498f,0.100469f},{-0.0147871f,0.315456f,0.100469f}, - {-0.0122331f,0.316594f,0.100469f},{-0.00571052f,0.319924f,0.100469f},{-0.014044f,0.30657f,0.100469f}, - {-0.0213591f,0.29942f,0.100469f},{-0.0214407f,0.301289f,0.100469f},{-0.00409933f,0.305094f,0.100469f}, - {-0.0150796f,0.2899f,0.100469f},{-0.0186351f,0.295578f,0.100469f},{-0.0152596f,0.289346f,0.100469f}, - {-0.00204265f,0.306496f,0.100469f},{-0.0152596f,0.314395f,0.100469f},{-0.0243605f,0.27258f,0.100469f}, - {-5.8201e-009f,0.313407f,0.100469f},{-0.00041711f,0.306866f,0.100469f},{0.000418664f,0.306866f,0.100469f}, - {-0.0111271f,0.291187f,0.100469f},{-0.0116607f,0.291424f,0.100469f},{-0.0121261f,0.303562f,0.100469f}, - {-0.00534833f,0.30294f,0.100469f},{-0.00502626f,0.303709f,0.100469f},{-0.0128186f,0.316594f,0.100469f}, - {-0.0133893f,0.316472f,0.100469f},{0.00528144f,0.315333f,0.100469f},{0.0097888f,0.314395f,0.100469f}, - {-0.00445857f,0.288143f,0.100469f},{-0.00343287f,0.288797f,0.100469f},{-0.00996978f,0.289903f,0.100469f}, - {0.000819963f,0.257072f,0.100469f},{0.0181266f,0.262471f,0.100469f},{0.00298716f,0.28017f,0.100469f}, - {-0.00082033f,0.257077f,0.100469f},{-0.0181265f,0.262471f,0.100469f},{-0.0166349f,0.258757f,0.100469f}, - {-0.00978928f,0.314396f,0.100469f},{-0.305903f,0.00314864f,0.100469f},{0.00559444f,0.338154f,0.100469f}, - {0.00280508f,0.338471f,0.100469f},{0.0046188f,0.304437f,0.100469f},{0.00503626f,0.303713f,0.100469f}, - {0.00553077f,0.302122f,0.100469f},{0.0139213f,0.291187f,0.100469f},{0.0097888f,0.289346f,0.100469f}, - {0.0354896f,0.289845f,0.100469f},{0.0345284f,0.287208f,0.100469f},{0.0154693f,0.254936f,0.100469f}, - {0.0146388f,0.25105f,0.100469f},{0.0320239f,0.282186f,0.100469f},{0.0333708f,0.284649f,0.100469f}, - {-0.0548845f,-0.0171541f,0.100469f},{0.0304957f,0.279831f,0.100469f},{0.0013304f,0.256376f,0.100469f}, - {-0.00132352f,0.256375f,0.100469f},{-0.00112134f,0.256764f,0.100469f},{-0.0154692f,0.254935f,0.100469f}, - {-0.0141453f,0.247143f,0.100469f},{0.0139831f,0.243259f,0.100469f},{0.016635f,0.258757f,0.100469f}, - {0.0141452f,0.247144f,0.100469f},{0.00112493f,0.256762f,0.100469f},{-0.0139831f,0.243259f,0.100469f}, - {-0.00082033f,0.219789f,0.100469f},{-0.000431051f,0.219987f,0.100469f},{0.0177565f,0.10062f,0.100469f}, - {-0.0194438f,0.0986812f,0.100469f},{0.0194438f,0.0986812f,0.100469f},{-0.0357259f,0.069214f,0.100469f}, - {-0.0322905f,0.0681943f,0.100469f},{-0.0306287f,-0.016377f,0.100469f},{-0.0322905f,-0.0157041f,0.100469f}, - {-0.0339919f,-0.0151392f,0.100469f},{-0.0671457f,-0.0298143f,0.100469f},{-0.0663166f,-0.028225f,0.100469f}, - {-0.0937848f,-0.0280785f,0.100469f},{-0.0532694f,-0.0163764f,0.100469f},{-0.0516077f,-0.0157037f,0.100469f}, - {-0.0877597f,0.0877597f,0.100469f},{-0.0829744f,0.0831785f,0.100469f},{-0.0825006f,0.0835236f,0.100469f}, - {-0.0919114f,0.0814392f,0.100469f},{-0.0926561f,0.079125f,0.100469f},{-0.0930843f,0.0768194f,0.100469f}, - {-0.0932205f,0.0745764f,0.100469f},{-0.0908391f,0.0836927f,0.100469f},{-0.0838372f,0.0816836f,0.100469f}, - {-0.089447f,0.0858213f,0.100469f},{-0.0836572f,0.0822379f,0.100469f},{-0.0819669f,0.0837612f,0.100469f}, - {-0.0836959f,0.0908383f,0.100469f},{-0.0858243f,0.0894455f,0.100469f},{-0.0932205f,0.0326272f,0.100469f}, - {-0.0933553f,0.0303817f,0.100469f},{-0.0814392f,0.0919114f,0.100469f},{-0.0813962f,0.0838826f,0.100469f}, - {-0.0808108f,0.0838832f,0.100469f},{-0.0696868f,0.0455262f,0.100469f},{-0.0694022f,0.0472966f,0.100469f}, - {-0.0797047f,0.0835243f,0.100469f},{-0.0791278f,0.092657f,0.100469f},{-0.0802383f,0.0837618f,0.100469f}, - {-0.0579489f,-0.0190117f,0.100469f},{-0.0593856f,-0.0200839f,0.100469f},{-0.0956018f,-0.0235109f,0.100469f}, - {-0.0643615f,-0.0252221f,0.100469f},{-0.0933567f,-0.0303842f,0.100469f},{-0.0678671f,-0.0314549f,0.100469f}, - {-0.105002f,-0.0152921f,0.100469f},{-0.102745f,-0.0163653f,0.100469f},{-0.102748f,0.0163644f,0.100469f}, - {-0.100617f,-0.0177581f,0.100469f},{-0.10062f,0.0177565f,0.100469f},{-0.109622f,0.0141193f,0.100469f}, - {-0.105002f,0.0152921f,0.100469f},{-0.111865f,0.0139831f,0.100469f},{-0.111865f,-0.0139831f,0.100469f}, - {-0.254936f,0.0154693f,0.100469f},{-0.258757f,0.016635f,0.100469f},{-0.255403f,0.00113282f,0.100469f}, - {-0.247143f,-0.0141453f,0.100469f},{-0.316411f,0.00584288f,0.100469f},{-0.322648f,-0.00186868f,0.100469f}, - {-0.322407f,-0.00298716f,0.100469f},{-0.321f,-0.005033f,0.100469f},{-0.304775f,0.00437403f,0.100469f}, - {-0.305388f,0.00380587f,0.100469f},{-0.304085f,0.00484444f,0.100469f},{-0.336897f,0.0110628f,0.100469f}, - {-0.335964f,0.0137103f,0.100469f},{-0.303331f,0.00520701f,0.100469f},{-0.315212f,0.014946f,0.100469f}, - {-0.326496f,0.0274755f,0.100469f},{-0.315685f,0.0146009f,0.100469f},{-0.314107f,0.015305f,0.100469f}, - {-0.319702f,0.0324248f,0.100469f},{-0.314678f,0.0151836f,0.100469f},{-0.313522f,0.0153056f,0.100469f}, - {-0.306999f,0.0186351f,0.100469f},{-0.306322f,0.0197119f,0.100469f},{-0.311551f,-0.0108798f,0.100469f}, - {-0.311943f,-0.0104447f,0.100469f},{-0.311258f,-0.0113857f,0.100469f},{-0.305747f,-0.0131454f,0.100469f}, - {-0.311943f,0.0146037f,0.100469f},{-0.307354f,0.0174585f,0.100469f},{-0.312416f,0.0149467f,0.100469f}, - {-0.289059f,0.015305f,0.100469f},{-0.289629f,0.0151836f,0.100469f},{-0.307131f,-0.0151227f,0.100469f}, - {-0.269417f,-0.0220151f,0.100469f},{-0.290637f,-0.0104475f,0.100469f},{-0.262471f,-0.0181265f,0.100469f}, - {-0.266037f,-0.0199275f,0.100469f},{-0.302345f,-0.012073f,0.100469f},{-0.303562f,-0.0121261f,0.100469f}, - {-0.295758f,0.000833312f,0.100469f},{-0.290163f,-0.0101024f,0.100469f},{-0.295946f,0.00164777f,0.100469f}, - {-0.262471f,0.0181266f,0.100469f},{-0.266037f,0.019928f,0.100469f},{-0.28017f,0.00298716f,0.100469f}, - {-0.28383f,0.00606509f,0.100469f},{-0.282653f,0.00571052f,0.100469f},{-0.287367f,-0.0101017f,0.100469f}, - {-0.286895f,-0.0104447f,0.100469f},{-0.287245f,-0.00528144f,0.100469f},{-0.288143f,-0.00445857f,0.100469f}, - {-0.289059f,-0.0097434f,0.100469f},{-0.269418f,0.0220158f,0.100469f},{-0.281577f,0.005033f,0.100469f}, - {-0.258757f,-0.0166349f,0.100469f},{-0.255704f,0.000819718f,0.100469f},{-0.255906f,0.000430548f,0.100469f}, - {-0.25105f,0.0146388f,0.100469f},{-0.254583f,0.00139831f,0.100469f},{-0.255014f,0.00133028f,0.100469f}, - {-0.243259f,0.0139831f,0.100469f},{-0.253253f,0.000431293f,0.100469f},{-0.216628f,0.00132937f,0.100469f}, - {-0.216241f,0.00112774f,0.100469f},{-0.0986812f,0.0194438f,0.100469f},{-0.0945295f,-0.0257644f,0.100469f}, - {-0.0653872f,-0.0266922f,0.100469f},{-0.0986812f,-0.0194438f,0.100469f},{-0.0684765f,-0.0331407f,0.100469f}, - {-0.0464123f,-0.0143415f,0.100469f},{-0.048172f,-0.0146841f,0.100469f},{-0.0698583f,-0.040157f,0.100469f}, - {0.0235109f,-0.0956018f,0.100469f},{-0.0908383f,-0.0836959f,0.100469f},{-0.0894455f,-0.0858243f,0.100469f}, - {0.0257644f,-0.0945295f,0.100469f},{0.0388582f,-0.078321f,0.100469f},{0.0410221f,-0.0790223f,0.100469f}, - {0.0303842f,-0.0933567f,0.100469f},{-0.0235077f,-0.0956027f,0.100469f},{-0.0257644f,-0.0945295f,0.100469f}, - {-0.0280757f,-0.0937839f,0.100469f},{-0.0364177f,-0.0805185f,0.100469f},{-0.037283f,-0.0790223f,0.100469f}, - {-0.0388615f,-0.0783204f,0.100469f},{-0.039447f,-0.078321f,0.100469f},{-0.0382891f,-0.0784418f,0.100469f}, - {-0.0377555f,-0.0786793f,0.100469f},{-0.0414155f,-0.0794586f,0.100469f},{-0.0405514f,-0.07868f,0.100469f}, - {-0.0400177f,-0.0784424f,0.100469f},{-0.041708f,-0.0799657f,0.100469f},{-0.0578584f,-0.0805185f,0.100469f}, - {-0.0580389f,-0.0799633f,0.100469f},{-0.0587238f,-0.0790223f,0.100469f},{-0.0591962f,-0.0786793f,0.100469f}, - {-0.0583313f,-0.0794574f,0.100469f},{-0.0614584f,-0.0784424f,0.100469f},{-0.0608877f,-0.078321f,0.100469f}, - {-0.0603023f,-0.0783204f,0.100469f},{-0.0597298f,-0.0784418f,0.100469f},{-0.0624659f,-0.0790251f,0.100469f}, - {-0.0619921f,-0.07868f,0.100469f},{-0.0814392f,-0.0919114f,0.100469f},{-0.0836927f,-0.0908391f,0.100469f}, - {-0.0689986f,-0.0348554f,0.100469f},{-0.0607507f,-0.021246f,0.100469f},{-0.0564465f,-0.0180338f,0.100469f}, - {-0.0499063f,-0.0151388f,0.100469f},{-0.0428452f,-0.0139974f,0.100469f},{-0.0357259f,-0.0146844f,0.100469f}, - {-0.0392635f,-0.0141124f,0.100469f},{0.0306291f,-0.0163764f,0.100469f},{-0.0653872f,0.0572063f,0.100469f}, - {-0.0326272f,0.0932205f,0.100469f},{-0.0377555f,0.0835243f,0.100469f},{-0.037283f,0.0831813f,0.100469f}, - {0.0290139f,-0.0171541f,0.100469f},{0.0306291f,0.0675221f,0.100469f},{0.0290139f,0.0667443f,0.100469f}, - {-0.0365982f,0.0822403f,0.100469f},{-0.0364177f,0.0816851f,0.100469f},{-0.0303842f,0.0933567f,0.100469f}, - {0.0374861f,-0.0143415f,0.100469f},{-0.0257644f,0.0945295f,0.100469f},{-0.0280785f,0.0937848f,0.100469f}, - {0.0322907f,-0.0157037f,0.100469f},{0.0245128f,-0.0200839f,0.100469f},{0.0206547f,-0.0238204f,0.100469f}, - {-0.0154086f,-0.033137f,0.100469f},{0.0160313f,-0.0314549f,0.100469f},{-0.0148988f,-0.034856f,0.100469f}, - {0.0154219f,-0.0331407f,0.100469f},{0.0148999f,-0.0348554f,0.100469f},{0.0140401f,-0.040157f,0.100469f}, - {0.0142116f,-0.0383722f,0.100469f},{-0.0140402f,-0.0401574f,0.100469f},{0.0937848f,0.0280785f,0.100469f}, - {0.0956018f,0.0235109f,0.100469f},{0.0632438f,-0.0238208f,0.100469f},{0.0643614f,-0.0252222f,0.100469f}, - {0.0956027f,-0.0235077f,0.100469f},{0.0802367f,-0.0784424f,0.100469f},{0.0788389f,-0.0794586f,0.100469f}, - {0.0785464f,-0.0799657f,0.100469f},{0.0792292f,-0.0790251f,0.100469f},{0.0783664f,-0.08052f,0.100469f}, - {0.0791278f,-0.092657f,0.100469f},{0.0418875f,-0.0805185f,0.100469f},{0.0414146f,-0.0794574f,0.100469f}, - {0.041707f,-0.0799633f,0.100469f},{0.0394436f,-0.0783204f,0.100469f},{0.0400161f,-0.0784418f,0.100469f}, - {0.0365972f,-0.0799657f,0.100469f},{0.0368897f,-0.0794586f,0.100469f},{0.0326272f,-0.0932205f,0.100469f}, - {0.0280785f,-0.0937848f,0.100469f},{0.0945295f,0.0257644f,0.100469f},{0.0322907f,0.0681947f,0.100469f}, - {-0.0245125f,-0.0200848f,0.100469f},{-0.0206546f,-0.0238208f,0.100469f},{0.0218599f,-0.0224931f,0.100469f}, - {0.0231477f,-0.021246f,0.100469f},{-0.0218598f,-0.0224939f,0.100469f},{0.0274519f,-0.0180338f,0.100469f}, - {0.0357264f,-0.0146841f,0.100469f},{0.0392642f,-0.0141123f,0.100469f},{0.0410532f,-0.0139974f,0.100469f}, - {-0.0446342f,0.0697861f,0.100469f},{0.0428459f,-0.0139975f,0.100469f},{0.0678699f,0.0524438f,0.100469f}, - {0.0932205f,0.0745764f,0.100469f},{0.0374861f,0.069557f,0.100469f},{0.0357264f,0.0692143f,0.100469f}, - {0.0428459f,0.069901f,0.100469f},{0.0446349f,0.0697861f,0.100469f},{0.0392642f,0.0697861f,0.100469f}, - {0.0579493f,-0.0190126f,0.100469f},{0.0410532f,0.069901f,0.100469f},{0.0593859f,-0.0200848f,0.100469f}, - {0.0607509f,-0.0212468f,0.100469f},{0.0969939f,0.0213822f,0.100469f},{0.0620386f,-0.0224939f,0.100469f}, - {0.0969955f,-0.0213792f,0.100469f},{0.0653869f,-0.0266927f,0.100469f},{0.0945295f,-0.0257644f,0.100469f}, - {0.0678699f,-0.0314546f,0.100469f},{0.0933553f,-0.0303817f,0.100469f},{0.0684898f,-0.033137f,0.100469f}, - {0.0689996f,-0.034856f,0.100469f},{0.0696843f,-0.0383731f,0.100469f},{0.069398f,-0.0366037f,0.100469f}, - {0.0698582f,-0.0401574f,0.100469f},{0.0097888f,-0.313231f,0.100469f},{-3.0178e-017f,-0.279848f,0.100469f}, - {-0.0213591f,-0.303157f,0.100469f},{-0.0369236f,-0.30649f,0.100469f},{-0.0211188f,-0.304276f,0.100469f}, - {0.00606509f,-0.318747f,0.100469f},{-0.0106546f,-0.311733f,0.100469f},{-0.0162807f,-0.334834f,0.100469f}, - {-0.0205678f,-0.305373f,0.100469f},{-0.0357252f,-0.311971f,0.100469f},{-0.0348202f,-0.314629f,0.100469f}, - {-0.014044f,-0.296007f,0.100469f},{0.00227358f,-0.289162f,0.100469f},{0.00105623f,-0.289216f,0.100469f}, - {0.00124497f,-0.295836f,0.100469f},{-0.00279621f,-0.296444f,0.100469f},{-0.0362494f,-0.292548f,0.100469f}, - {-0.0368049f,-0.295301f,0.100469f},{-0.00204265f,-0.296082f,0.100469f},{-0.0345284f,-0.287208f,0.100469f}, - {-0.0354896f,-0.289845f,0.100469f},{0.000418664f,-0.295711f,0.100469f},{-5.8201e-009f,-0.28917f,0.100469f}, - {-0.0150796f,-0.287628f,0.100469f},{-0.0287947f,-0.277597f,0.100469f},{-0.0304957f,-0.279831f,0.100469f}, - {0.00348695f,-0.296916f,0.100469f},{0.00343287f,-0.288797f,0.100469f},{0.002796f,-0.296445f,0.100469f}, - {0.0181265f,-0.262471f,0.100469f},{-0.0143968f,-0.286688f,0.100469f},{-0.013923f,-0.286343f,0.100469f}, - {-0.024361f,-0.27258f,0.100469f},{-0.00298716f,-0.28017f,0.100469f},{-0.0181266f,-0.262471f,0.100469f}, - {0.00553077f,-0.300455f,0.100469f},{0.0143937f,-0.286685f,0.100469f},{0.0243605f,-0.27258f,0.100469f}, - {0.0150786f,-0.287626f,0.100469f},{0.0152591f,-0.288181f,0.100469f},{0.0124916f,-0.304721f,0.100469f}, - {0.306819f,0.000833312f,0.100469f},{0.295578f,0.0186351f,0.100469f},{0.306999f,-0.0186351f,0.100469f}, - {0.291319f,-0.0113857f,0.100469f},{0.29683f,-0.0131454f,0.100469f},{0.297687f,-0.0371146f,0.100469f}, - {0.294949f,-0.0367459f,0.100469f},{0.287899f,-0.00986481f,0.100469f},{0.287366f,-0.0101024f,0.100469f}, - {0.289628f,-0.00986419f,0.100469f},{0.290161f,-0.0101017f,0.100469f},{0.289591f,-0.0354067f,0.100469f}, - {0.292245f,-0.036175f,0.100469f},{0.287001f,-0.0344436f,0.100469f},{0.258757f,0.0166349f,0.100469f}, - {0.255708f,0.000817561f,0.100469f},{0.262471f,0.0181265f,0.100469f},{0.254152f,0.00133028f,0.100469f}, - {0.251049f,0.0146388f,0.100469f},{0.253763f,0.00113282f,0.100469f},{0.266037f,0.0199275f,0.100469f}, - {0.286166f,0.00584288f,0.100469f},{0.287899f,0.0151836f,0.100469f},{0.282071f,0.0319538f,0.100469f}, - {0.279758f,0.0304433f,0.100469f},{0.311077f,0.013106f,0.100469f},{0.28449f,0.0332889f,0.100469f}, - {0.287001f,0.0344412f,0.100469f},{0.304776f,0.0043727f,0.100469f},{0.304721f,0.0124916f,0.100469f}, - {0.304085f,0.00484368f,0.100469f},{0.297204f,0.0205678f,0.100469f},{0.298301f,0.0211188f,0.100469f}, - {0.292244f,0.0361745f,0.100469f},{0.312948f,0.0151836f,0.100469f},{0.313518f,0.015305f,0.100469f}, - {0.300444f,0.0372784f,0.100469f},{0.314002f,0.035054f,0.100469f},{0.311371f,0.0358991f,0.100469f}, - {0.319038f,0.0327925f,0.100469f},{0.316562f,0.0340166f,0.100469f},{0.306631f,0.00164777f,0.100469f}, - {0.316367f,0.0136627f,0.100469f},{0.316548f,0.0131075f,0.100469f},{0.331419f,0.0219685f,0.100469f}, - {0.332963f,0.0196768f,0.100469f},{0.31378f,-0.00343287f,0.100469f},{0.318747f,0.00606509f,0.100469f}, - {0.00606509f,0.28383f,0.100469f},{0.0139213f,0.316235f,0.100469f},{0.0233817f,0.330334f,0.100469f}, - {0.0133877f,0.316473f,0.100469f},{0.00124497f,0.306741f,0.100469f},{0.00227358f,0.313415f,0.100469f}, - {0.00105623f,0.313362f,0.100469f},{-0.00105623f,0.289216f,0.100469f},{-0.00227358f,0.289162f,0.100469f}, - {0.0287947f,0.277597f,0.100469f},{-0.0106546f,0.290844f,0.100469f},{-0.0197119f,0.296256f,0.100469f}, - {-0.0211188f,0.298301f,0.100469f},{-0.0143968f,0.315889f,0.100469f},{-0.013923f,0.316235f,0.100469f}, - {-0.00606509f,0.318747f,0.100469f},{-0.0116607f,0.316473f,0.100469f},{-0.0111271f,0.316235f,0.100469f}, - {0.00445857f,0.314434f,0.100469f},{-0.0106546f,0.315892f,0.100469f},{-0.0102622f,0.315457f,0.100469f}, - {0.00343287f,0.31378f,0.100469f},{-0.00408405f,0.321856f,0.100469f},{-0.00298716f,0.322407f,0.100469f}, - {0.0110628f,0.336897f,0.100469f},{0.00835238f,0.337628f,0.100469f},{0.0187591f,0.333514f,0.100469f}, - {0.0128153f,0.316594f,0.100469f},{0.0309477f,0.322089f,0.100469f},{0.0152591f,0.314396f,0.100469f}, - {0.0124916f,0.297856f,0.100469f},{0.0205678f,0.305373f,0.100469f},{0.0357252f,0.311971f,0.100469f}, - {0.0348202f,0.314629f,0.100469f},{-0.296256f,-0.0197119f,0.100469f},{-0.300232f,0.012073f,0.100469f}, - {-0.300044f,0.00545274f,0.100469f},{-0.299015f,0.0121261f,0.100469f},{-0.295578f,-0.0186351f,0.100469f}, - {-0.298301f,-0.0211188f,0.100469f},{-0.297204f,-0.0205678f,0.100469f},{-0.316076f,-0.010881f,0.100469f}, - {-0.315685f,-0.0104475f,0.100469f},{-0.318747f,-0.00606509f,0.100469f},{-0.316368f,-0.0113881f,0.100469f}, - {-0.322729f,1.62449e-016f,0.100469f},{-0.337628f,0.00835238f,0.100469f},{-0.338154f,0.00559444f,0.100469f}, - {-0.316548f,0.013106f,0.100469f},{-0.333514f,0.0187591f,0.100469f},{-0.328493f,0.0255017f,0.100469f}, - {-0.330334f,0.0233817f,0.100469f},{-0.316076f,0.0141674f,0.100469f},{-0.324357f,0.0292931f,0.100469f}, - {-0.311551f,0.0141686f,0.100469f},{-0.291027f,0.0141674f,0.100469f},{-0.290637f,0.0146009f,0.100469f}, - {-0.296007f,0.014044f,0.100469f},{-0.299245f,0.00520628f,0.100469f},{-0.30649f,0.0369236f,0.100469f}, - {-0.309253f,0.0364276f,0.100469f},{-0.304276f,0.0211188f,0.100469f},{-0.303697f,0.0371926f,0.100469f}, - {-0.301289f,0.0214407f,0.100469f},{-0.300891f,0.0372872f,0.100469f},{-0.298087f,0.0371512f,0.100469f}, - {-0.295301f,0.0368049f,0.100469f},{-0.287208f,0.0345284f,0.100469f},{-0.289845f,0.0354896f,0.100469f}, - {-0.286895f,0.0146037f,0.100469f},{-0.275498f,0.0269304f,0.100469f},{-0.277597f,0.0287947f,0.100469f}, - {-0.282186f,0.0320239f,0.100469f},{-0.288473f,0.0153056f,0.100469f},{-0.287901f,0.0151842f,0.100469f}, - {-0.288797f,-0.00343287f,0.100469f},{-0.289162f,-0.00227358f,0.100469f},{-0.27258f,0.024361f,0.100469f}, - {-0.28621f,0.0136627f,0.100469f},{-0.286029f,0.0131075f,0.100469f},{-0.286029f,-0.0119409f,0.100469f}, - {-0.28621f,-0.0113857f,0.100469f},{0.255913f,0.000431293f,0.100469f},{0.279758f,-0.0304444f,0.100469f}, - {0.280721f,-0.00408405f,0.100469f},{0.266037f,-0.019928f,0.100469f},{0.262471f,-0.0181266f,0.100469f}, - {0.254583f,0.00139831f,0.100469f},{0.299246f,0.00520701f,0.100469f},{0.300871f,0.00557763f,0.100469f}, - {0.301707f,0.00557747f,0.100469f},{0.301289f,0.0121187f,0.100469f},{0.296674f,0.00314864f,0.100469f}, - {0.277562f,0.0287659f,0.100469f},{0.287366f,0.014946f,0.100469f},{0.275498f,0.0269304f,0.100469f}, - {0.286501f,0.0141674f,0.100469f},{0.286892f,0.0146009f,0.100469f},{0.289055f,-0.00974281f,0.100469f}, - {0.290634f,-0.0104447f,0.100469f},{0.300445f,-0.0372813f,0.100469f},{0.303207f,-0.0372145f,0.100469f}, - {0.282653f,-0.00571052f,0.100469f},{0.286029f,-0.0119424f,0.100469f},{-0.041888f,-0.08052f,0.100469f}, - {-0.0410252f,-0.0790251f,0.100469f},{-0.0930856f,-0.0768218f,0.100469f},{-0.0919114f,-0.0814392f,0.100469f}, - {-0.092657f,-0.0791278f,0.100469f},{0.0808074f,-0.078321f,0.100469f},{0.079703f,-0.07868f,0.100469f}, - {0.0824989f,-0.0786793f,0.100469f},{0.0930843f,-0.0768194f,0.100469f},{0.0814392f,0.0919114f,0.100469f}, - {0.0632438f,0.0600777f,0.100469f},{0.0643614f,0.0586762f,0.100469f},{0.0653869f,0.0572057f,0.100469f}, - {0.0663164f,0.0556727f,0.100469f},{0.0464129f,0.0695568f,0.100469f},{0.0481725f,0.069214f,0.100469f}, - {0.0499065f,0.0687593f,0.100469f},{0.0819653f,0.0837618f,0.100469f},{0.0858213f,0.089447f,0.100469f}, - {0.0833638f,0.0827462f,0.100469f},{-0.0689986f,0.0490431f,0.100469f},{-0.0684765f,0.0507578f,0.100469f}, - {-0.0833647f,0.082745f,0.100469f},{-0.0698583f,0.0437414f,0.100469f},{-0.041888f,0.0816836f,0.100469f}, - {-0.0516077f,0.0681947f,0.100469f},{-0.0969955f,0.0213792f,0.100469f},{-0.0499063f,0.0687596f,0.100469f}, - {-0.0937839f,0.0280757f,0.100469f},{-0.0768218f,0.0930856f,0.100469f},{-0.0745764f,0.0932205f,0.100469f}, - {-0.0792323f,0.0831813f,0.100469f},{-0.0785474f,0.0822403f,0.100469f},{-0.0788398f,0.0827462f,0.100469f}, - {-0.0783669f,0.0816851f,0.100469f},{-0.0410252f,0.0831785f,0.100469f},{-0.0405514f,0.0835236f,0.100469f}, - {-0.0290135f,-0.0171549f,0.100469f},{-0.0620385f,0.0614053f,0.100469f},{-0.0632437f,0.0600781f,0.100469f}, - {-0.0607507f,0.0626525f,0.100469f},{-0.0593856f,0.0638145f,0.100469f},{-0.0579489f,0.0648867f,0.100469f}, - {-0.0564465f,0.0658647f,0.100469f},{-0.041708f,0.0822379f,0.100469f},{-0.0548845f,0.0667443f,0.100469f}, - {-0.0532694f,0.0675221f,0.100469f},{-0.0414155f,0.082745f,0.100469f},{-0.0400177f,0.0837612f,0.100469f}, - {-0.0388615f,0.0838832f,0.100469f},{-0.039447f,0.0838826f,0.100469f},{-0.0382891f,0.0837618f,0.100469f}, - {-0.0368906f,0.0827462f,0.100469f},{0.0257644f,0.0945295f,0.100469f},{0.0280757f,0.0937839f,0.100469f}, - {0.0303817f,0.0933553f,0.100469f},{0.0364172f,0.0816836f,0.100469f},{0.0564469f,-0.0180347f,0.100469f}, - {0.0532697f,-0.016377f,0.100469f},{0.0516079f,-0.0157041f,0.100469f},{0.0446349f,-0.0141124f,0.100469f}, - {0.0259495f,0.0648867f,0.100469f},{0.0235077f,0.0956027f,0.100469f},{-0.0231475f,-0.0212468f,0.100469f}, - {0.0245128f,0.0638145f,0.100469f},{0.0365972f,0.0822379f,0.100469f},{0.0368897f,0.082745f,0.100469f}, - {0.0372799f,0.0831785f,0.100469f},{0.0382875f,0.0837612f,0.100469f},{0.0377538f,0.0835236f,0.100469f}, - {0.0400161f,0.0837618f,0.100469f},{0.0405497f,0.0835243f,0.100469f},{0.0414146f,0.0827462f,0.100469f}, - {0.0410221f,0.0831813f,0.100469f},{0.041707f,0.0822403f,0.100469f},{-0.0303817f,-0.0933553f,0.100469f}, - {0.0377538f,-0.07868f,0.100469f},{0.0382875f,-0.0784424f,0.100469f},{0.0405497f,-0.0786793f,0.100469f}, - {0.0339921f,0.0687596f,0.100469f},{0.0464129f,-0.0143416f,0.100469f},{0.0274519f,0.0658647f,0.100469f}, - {0.0339921f,-0.0151388f,0.100469f},{0.0259495f,-0.0190117f,0.100469f},{0.0213792f,0.0969955f,0.100469f}, - {0.0231477f,0.0626525f,0.100469f},{-0.0142141f,0.0455253f,0.100469f},{-0.0140402f,0.043741f,0.100469f}, - {0.0142116f,0.0455262f,0.100469f},{0.0140401f,0.0437414f,0.100469f},{0.0144962f,0.0472966f,0.100469f}, - {0.0148999f,0.0490431f,0.100469f},{-0.0145004f,0.0472947f,0.100469f},{-0.0410525f,0.069901f,0.100469f}, - {-0.0428452f,0.069901f,0.100469f},{-0.0392635f,0.0697861f,0.100469f},{0.0154219f,0.0507578f,0.100469f}, - {0.0160313f,0.0524435f,0.100469f},{-0.0154086f,0.0507615f,0.100469f},{-0.0167532f,0.0540833f,0.100469f}, - {-0.0160285f,0.0524438f,0.100469f},{0.0167528f,0.0540841f,0.100469f},{-0.0374855f,0.0695568f,0.100469f}, - {0.0185112f,0.0572063f,0.100469f},{-0.0185115f,0.0572057f,0.100469f},{-0.0175821f,0.0556727f,0.100469f}, - {0.0206547f,0.0600781f,0.100469f},{-0.0206546f,0.0600777f,0.100469f},{-0.019537f,0.0586762f,0.100469f}, - {-0.0274515f,0.0658638f,0.100469f},{0.0218599f,0.0614053f,0.100469f},{0.0532697f,0.0675214f,0.100469f}, - {0.0579493f,0.0648858f,0.100469f},{0.0593859f,0.0638136f,0.100469f},{0.0607509f,0.0626516f,0.100469f}, - {0.0620386f,0.0614045f,0.100469f},{0.0671452f,0.0540833f,0.100469f},{0.0684898f,0.0507615f,0.100469f}, - {0.0689996f,0.0490425f,0.100469f},{0.0696843f,0.0455253f,0.100469f},{0.069398f,0.0472947f,0.100469f}, - {0.0698582f,0.043741f,0.100469f},{-0.048172f,0.0692143f,0.100469f},{-0.0464123f,0.069557f,0.100469f}, - {-0.0374855f,-0.0143416f,0.100469f},{-0.0410525f,-0.0139975f,0.100469f},{-0.0446342f,-0.0141123f,0.100469f}, - {-0.0956027f,0.0235077f,0.100469f},{-0.0945295f,0.0257644f,0.100469f},{-0.0678671f,0.0524435f,0.100469f}, - {-0.0671457f,0.0540841f,0.100469f},{-0.0663166f,0.0556734f,0.100469f},{-0.0643615f,0.0586764f,0.100469f}, - {0.0195369f,0.0586764f,0.100469f},{0.0175819f,0.0556734f,0.100469f},{-0.0148988f,0.0490425f,0.100469f}, - {-0.243259f,-0.0139831f,0.100469f},{-0.218182f,0.000819718f,0.100469f},{-0.218384f,0.000430548f,0.100469f}, - {-0.217492f,0.00133028f,0.100469f},{-0.217881f,0.00113282f,0.100469f},{-0.217061f,0.00139831f,0.100469f}, - {-0.215936f,0.000817561f,0.100469f},{-0.215731f,0.000431293f,0.100469f},{-0.00112134f,-0.217837f,0.100469f}, - {-0.00082033f,-0.217524f,0.100469f},{-0.000431051f,-0.217326f,0.100469f},{3.14109e-017f,-0.217258f,0.100469f}, - {0.000819963f,-0.217529f,0.100469f},{0.000433147f,-0.217327f,0.100469f},{0.0013304f,-0.218225f,0.100469f}, - {0.00112493f,-0.217839f,0.100469f},{-0.016635f,-0.258757f,0.100469f},{-0.005033f,-0.281577f,0.100469f}, - {-0.0128186f,-0.285984f,0.100469f},{-0.0122331f,-0.285983f,0.100469f},{-0.0141452f,-0.247144f,0.100469f}, - {-0.00082033f,-0.254812f,0.100469f},{0.0106515f,-0.286688f,0.100469f},{0.00204334f,-0.296082f,0.100469f}, - {-0.00186868f,-0.279929f,0.100469f},{0.00445857f,-0.288143f,0.100469f},{-0.00408405f,-0.280721f,0.100469f}, - {-0.019928f,-0.266037f,0.100469f},{-0.00112134f,0.219476f,0.100469f},{-0.00132352f,0.219087f,0.100469f}, - {2.64296e-017f,0.220055f,0.100469f},{0.000819963f,0.219784f,0.100469f},{0.000433147f,0.219986f,0.100469f}, - {0.0013304f,0.219088f,0.100469f},{0.00112493f,0.219474f,0.100469f},{-0.0146388f,0.251049f,0.100469f}, - {0.019928f,0.266037f,0.100469f},{0.00408405f,0.280721f,0.100469f},{0.000433147f,0.257274f,0.100469f}, - {0.00186868f,0.279929f,0.100469f},{2.76524e-017f,0.257343f,0.100469f},{-0.000431051f,0.257275f,0.100469f}, - {0.005033f,0.281577f,0.100469f},{0.0220158f,0.269418f,0.100469f},{0.21663f,0.00133028f,0.100469f}, - {0.217061f,0.00139831f,0.100469f},{0.21594f,0.000819718f,0.100469f},{0.215737f,0.000430548f,0.100469f}, - {0.216241f,0.00113282f,0.100469f},{0.217881f,0.00112774f,0.100469f},{0.217494f,0.00132937f,0.100469f}, - {-0.254935f,-0.0154692f,0.100469f},{-0.251049f,-0.0146388f,0.100469f},{-0.25415f,0.00132937f,0.100469f}, - {-0.253763f,0.00112774f,0.100469f},{-0.247144f,0.0141452f,0.100469f},{-0.253458f,0.000817561f,0.100469f}, - {0.00996883f,-0.312677f,0.100469f},{0.0102613f,-0.312169f,0.100469f},{0.0116591f,-0.311153f,0.100469f}, - {0.0128153f,-0.311031f,0.100469f},{0.0151227f,-0.307131f,0.100469f},{0.0205678f,-0.297204f,0.100469f}, - {0.0211188f,-0.298301f,0.100469f},{0.00534277f,-0.299641f,0.100469f},{0.0150786f,-0.312674f,0.100469f}, - {0.012073f,-0.302345f,0.100469f},{0.0121187f,-0.301289f,0.100469f},{0.00528144f,-0.287245f,0.100469f}, - {0.0097888f,-0.288183f,0.100469f},{-0.0102622f,-0.28712f,0.100469f},{-0.00996978f,-0.287626f,0.100469f}, - {-0.0116607f,-0.286104f,0.100469f},{-0.00606509f,-0.28383f,0.100469f},{-0.00571052f,-0.282653f,0.100469f}, - {-0.0220158f,-0.269418f,0.100469f},{-0.0133893f,-0.286105f,0.100469f},{0.0133877f,-0.286104f,0.100469f}, - {0.0220151f,-0.269417f,0.100469f},{0.0128153f,-0.285983f,0.100469f},{0.0199275f,-0.266037f,0.100469f}, - {0.0139213f,-0.286342f,0.100469f},{-0.0320239f,-0.282186f,0.100469f},{-0.0152596f,-0.288183f,0.100469f}, - {-0.0147871f,-0.312169f,0.100469f},{-0.0143968f,-0.311736f,0.100469f},{-0.0150796f,-0.312677f,0.100469f}, - {-0.0174585f,-0.307354f,0.100469f},{-0.0186351f,-0.306999f,0.100469f},{-0.0364276f,-0.309253f,0.100469f}, - {-0.0371512f,-0.298087f,0.100469f},{-0.0333708f,-0.284649f,0.100469f},{-0.0147871f,-0.287121f,0.100469f}, - {-0.0269304f,-0.275498f,0.100469f},{-0.0111271f,-0.286342f,0.100469f},{-0.0106546f,-0.286685f,0.100469f}, - {0.0116591f,-0.286105f,0.100469f},{0.0111254f,-0.286343f,0.100469f},{-0.00978928f,-0.288181f,0.100469f}, - {-0.0137103f,-0.335964f,0.100469f},{-0.00280508f,-0.338471f,0.100469f},{-0.00559444f,-0.338154f,0.100469f}, - {-0.0152596f,-0.313231f,0.100469f},{-0.0197119f,-0.306322f,0.100469f},{-0.033718f,-0.31721f,0.100469f}, - {-0.013923f,-0.311391f,0.100469f},{-0.0133893f,-0.311153f,0.100469f},{-0.0122331f,-0.311031f,0.100469f}, - {-0.0128186f,-0.311032f,0.100469f},{-0.012073f,-0.300232f,0.100469f},{-0.0121187f,-0.301289f,0.100469f}, - {-0.00978928f,-0.313229f,0.100469f},{-0.00528144f,-0.315333f,0.100469f},{0.301289f,-0.0121187f,0.100469f}, - {0.316563f,-0.0340163f,0.100469f},{0.311077f,-0.0119424f,0.100469f},{0.311257f,-0.0113881f,0.100469f}, - {0.31155f,-0.010881f,0.100469f},{0.312948f,-0.00986481f,0.100469f},{0.314104f,-0.00974281f,0.100469f}, - {0.316411f,-0.00584288f,0.100469f},{0.316548f,-0.0119409f,0.100469f},{0.338346f,-0.00413651f,0.100469f}, - {0.308687f,-0.036547f,0.100469f},{0.304276f,-0.0211188f,0.100469f},{0.30596f,-0.0369944f,0.100469f}, - {0.286892f,-0.0104475f,0.100469f},{0.303157f,-0.0213591f,0.100469f},{0.277563f,-0.0287664f,0.100469f}, - {0.28847f,-0.0097434f,0.100469f},{0.291499f,-0.0119409f,0.100469f},{0.296007f,-0.014044f,0.100469f}, - {0.298492f,0.00484444f,0.100469f},{0.303332f,0.00520628f,0.100469f},{0.291499f,0.0131075f,0.100469f}, - {0.305387f,0.00380369f,0.100469f},{0.31155f,0.0141674f,0.100469f},{0.316075f,0.0141686f,0.100469f}, - {0.32971f,0.0241396f,0.100469f},{0.327834f,0.0261674f,0.100469f},{0.316367f,-0.0113857f,0.100469f}, - {0.336523f,0.0122076f,0.100469f},{0.313362f,-0.00105623f,0.100469f},{0.313407f,5.8201e-009f,0.100469f}, - {0.307131f,0.0151227f,0.100469f},{0.28959f,0.035405f,0.100469f},{0.314104f,0.0153056f,0.100469f}, - {5.35539e-017f,0.279848f,0.100469f},{-0.0102622f,0.290409f,0.100469f},{0.024361f,0.27258f,0.100469f}, - {-0.0199275f,0.266037f,0.100469f},{-0.0174585f,0.295223f,0.100469f},{-0.00553085f,0.302123f,0.100469f}, - {-0.0128186f,0.291545f,0.100469f},{-0.0122331f,0.291546f,0.100469f},{-0.00461423f,0.304437f,0.100469f}, - {-0.012073f,0.302345f,0.100469f},{-0.0121187f,0.301289f,0.100469f},{-0.00978928f,0.289348f,0.100469f}, - {-0.00528144f,0.287245f,0.100469f},{-0.0150796f,0.314949f,0.100469f},{-0.0151227f,0.307131f,0.100469f}, - {-0.0124916f,0.304721f,0.100469f},{-0.013923f,0.291186f,0.100469f},{-0.0133893f,0.291424f,0.100469f}, - {-0.0205678f,0.297204f,0.100469f},{0.00204334f,0.306495f,0.100469f},{0.00348695f,0.305661f,0.100469f}, - {0.00409889f,0.305092f,0.100469f},{0.002796f,0.306132f,0.100469f},{5.8201e-009f,0.28917f,0.100469f}, - {0.00571052f,0.282653f,0.100469f},{0.00996883f,0.2899f,0.100469f},{0.0102613f,0.290408f,0.100469f}, - {0.0116591f,0.291424f,0.100469f},{0.0128153f,0.291546f,0.100469f},{0.0151227f,0.295446f,0.100469f}, - {0.0211188f,0.304276f,0.100469f},{0.0369236f,0.30649f,0.100469f},{0.0364276f,0.309253f,0.100469f}, - {0.0213591f,0.303157f,0.100469f},{0.0371512f,0.298087f,0.100469f},{0.0368049f,0.295301f,0.100469f}, - {0.0362494f,0.292548f,0.100469f},{0.00534277f,0.302936f,0.100469f},{0.0143937f,0.315892f,0.100469f}, - {0.0274755f,0.326496f,0.100469f},{0.0255017f,0.328493f,0.100469f},{0.0150786f,0.289903f,0.100469f}, - {0.012073f,0.300232f,0.100469f},{0.0121187f,0.301289f,0.100469f},{0.0137103f,0.335964f,0.100469f}, - {0.00584288f,0.316411f,0.100469f},{0.0106515f,0.315889f,0.100469f},{0.0111254f,0.316235f,0.100469f}, - {0.0102613f,0.315456f,0.100469f},{0.0162807f,0.334834f,0.100469f},{0.0211299f,0.332011f,0.100469f}, - {-0.301289f,-0.0121187f,0.100469f},{-0.29132f,-0.0113881f,0.100469f},{-0.291027f,-0.010881f,0.100469f}, - {-0.289629f,-0.00986481f,0.100469f},{-0.288473f,-0.00974281f,0.100469f},{-0.286166f,-0.00584288f,0.100469f}, - {-0.286502f,-0.0108798f,0.100469f},{-0.280721f,0.00408405f,0.100469f},{-0.279848f,6.36295e-017f,0.100469f}, - {-0.279929f,0.00186868f,0.100469f},{-0.289216f,-0.00105623f,0.100469f},{-0.28917f,5.8201e-009f,0.100469f}, - {-0.29683f,0.0131454f,0.100469f},{-0.2915f,0.013106f,0.100469f},{-0.295446f,0.0151227f,0.100469f}, - {-0.312949f,0.0151842f,0.100469f},{-0.31721f,0.033718f,0.100469f},{-0.303157f,0.0213591f,0.100469f}, - {-0.292548f,0.0362494f,0.100469f},{-0.284649f,0.0333708f,0.100469f},{-0.279831f,0.0304957f,0.100469f}, - {-0.287367f,0.0149467f,0.100469f},{-0.286502f,0.0141686f,0.100469f},{-0.316368f,0.0136603f,0.100469f}, - {-0.332011f,0.0211299f,0.100469f},{-0.314434f,0.00445857f,0.100469f},{-0.315333f,0.00528144f,0.100469f}, - {-0.306819f,0.000834183f,0.100469f},{-0.316548f,-0.0119424f,0.100469f},{-0.319924f,-0.00571052f,0.100469f}, - {-0.321856f,-0.00408405f,0.100469f},{-0.338471f,0.00280508f,0.100469f},{-0.334834f,0.0162807f,0.100469f}, - {-0.322089f,0.0309477f,0.100469f},{-0.314629f,0.0348202f,0.100469f},{-0.305373f,0.0205678f,0.100469f}, - {-0.311971f,0.0357252f,0.100469f},{-0.290163f,0.014946f,0.100469f},{-0.311078f,0.0131075f,0.100469f}, - {-0.315212f,-0.0101024f,0.100469f},{-0.314678f,-0.00986481f,0.100469f},{-0.313522f,-0.00974281f,0.100469f}, - {-0.314107f,-0.0097434f,0.100469f},{-0.313362f,0.00105623f,0.100469f},{-0.313407f,-5.8201e-009f,0.100469f}, - {-0.311078f,-0.0119409f,0.100469f},{-0.30657f,-0.014044f,0.100469f},{0.337938f,-0.00686904f,0.100469f}, - {0.336521f,-0.0122059f,0.100469f},{0.314676f,-0.00986419f,0.100469f},{0.291319f,0.0136627f,0.100469f}, - {0.308686f,0.0365475f,0.100469f},{0.311257f,0.0136603f,0.100469f},{-0.287901f,-0.00986419f,0.100469f}, - {0.0122298f,-0.285984f,0.100469f},{0.00996883f,-0.287628f,0.100469f},{0.0133877f,0.291424f,0.100469f}, - {-0.311258f,0.0136627f,0.100469f},{-0.29132f,0.0136603f,0.100469f},{-0.00996978f,0.314951f,0.100469f}, - {0.00996883f,0.314949f,0.100469f},{0.0152591f,-0.313229f,0.100469f},{0.0133877f,-0.311153f,0.100469f}, - {-0.0836959f,-0.0908383f,0.0918925f},{-0.0858243f,-0.0894455f,0.0918925f},{-0.0633282f,-0.0805185f,0.0918925f}, - {-0.0671452f,-0.0298151f,0.0918925f},{-0.0937839f,-0.0280757f,0.0918925f},{-0.0663164f,-0.0282257f,0.0918925f}, - {-0.0580379f,-0.0799657f,0.0918925f},{0.0145474f,-0.107316f,0.0918925f},{-0.0141179f,-0.109619f,0.0918925f}, - {-0.0145465f,-0.107313f,0.0918925f},{-0.089447f,-0.0858213f,0.0918925f},{-0.0908391f,-0.0836927f,0.0918925f}, - {-0.0877597f,-0.0877597f,0.0918925f},{-0.005033f,-0.281577f,0.0918925f},{-0.0057111f,-0.28266f,0.0918925f}, - {-0.0122298f,-0.285984f,0.0918925f},{-0.0919114f,-0.0814392f,0.0918925f},{-0.0631477f,-0.0799633f,0.0918925f}, - {-0.0619904f,-0.0786793f,0.0918925f},{-0.0624629f,-0.0790223f,0.0918925f},{-0.0932205f,-0.0745764f,0.0918925f}, - {-0.0628553f,-0.0794574f,0.0918925f},{-0.0362489f,-0.292548f,0.0918925f},{-0.0333688f,-0.28465f,0.0918925f}, - {-0.0320225f,-0.282186f,0.0918925f},{-0.0926561f,-0.079125f,0.0918925f},{-0.0930843f,-0.0768194f,0.0918925f}, - {-0.0932205f,-0.0326272f,0.0918925f},{-0.0602989f,-0.078321f,0.0918925f},{-0.0597282f,-0.0784424f,0.0918925f}, - {-0.100617f,0.0177581f,0.0918925f},{-0.0986812f,0.0194438f,0.0918925f},{-0.10062f,-0.0177565f,0.0918925f}, - {0.0194438f,0.0986812f,0.0918925f},{0.0206546f,0.0600777f,0.0918925f},{-0.0206547f,0.0600781f,0.0918925f}, - {-0.105002f,0.0152921f,0.0918925f},{-0.102745f,0.0163653f,0.0918925f},{-0.105002f,-0.0152921f,0.0918925f}, - {-0.102748f,-0.0163644f,0.0918925f},{-0.107316f,-0.0145474f,0.0918925f},{-0.109622f,-0.0141193f,0.0918925f}, - {-0.107313f,0.0145465f,0.0918925f},{-0.312414f,-0.0101024f,0.0918925f},{-0.312948f,-0.00986481f,0.0918925f}, - {-0.109619f,0.0141179f,0.0918925f},{-0.313414f,0.00227064f,0.0918925f},{-0.306819f,0.000833312f,0.0918925f}, - {-0.313362f,0.00105623f,0.0918925f},{-0.313518f,0.015305f,0.0918925f},{-0.307f,0.0186287f,0.0918925f}, - {-0.312948f,0.0151836f,0.0918925f},{-0.287207f,0.034526f,0.0918925f},{-0.28465f,0.0333688f,0.0918925f}, - {-0.287366f,0.014946f,0.0918925f},{-0.27983f,0.0304947f,0.0918925f},{-0.277597f,0.0287942f,0.0918925f}, - {-0.313779f,0.00343053f,0.0918925f},{-0.306325f,0.00242484f,0.0918925f},{-0.322729f,1.62449e-016f,0.0918925f}, - {-0.322648f,-0.00186868f,0.0918925f},{-0.300045f,0.00545321f,0.0918925f},{-0.300232f,0.012073f,0.0918925f}, - {-0.299018f,0.0121253f,0.0918925f},{-0.304719f,-0.0124909f,0.0918925f},{-0.311257f,-0.0113881f,0.0918925f}, - {-0.31155f,-0.010881f,0.0918925f},{-0.30713f,-0.01512f,0.0918925f},{-0.295577f,-0.0186287f,0.0918925f}, - {0.0152596f,-0.313231f,0.0918925f},{-0.316075f,-0.0108798f,0.0918925f},{-0.316367f,-0.0113857f,0.0918925f}, - {-0.318741f,-0.00606332f,0.0918925f},{-0.00105623f,-0.313362f,0.0918925f},{-0.00227064f,-0.313414f,0.0918925f}, - {0.00348669f,-0.296915f,0.0918925f},{0.00409933f,-0.297483f,0.0918925f},{-0.316548f,-0.0119409f,0.0918925f}, - {-0.319917f,-0.0057111f,0.0918925f},{-0.298492f,0.00484444f,0.0918925f},{-0.297858f,0.0124909f,0.0918925f}, - {-0.297802f,0.00437403f,0.0918925f},{-0.301289f,0.0121187f,0.0918925f},{-0.300871f,0.00557763f,0.0918925f}, - {-0.301707f,0.00557747f,0.0918925f},{-0.0274641f,-0.326484f,0.0918925f},{-0.314104f,0.0153056f,0.0918925f}, - {-0.314676f,0.0151842f,0.0918925f},{-0.319701f,0.0324249f,0.0918925f},{-0.00343053f,-0.313779f,0.0918925f}, - {-0.0102613f,-0.312169f,0.0918925f},{-0.0211319f,-0.332012f,0.0918925f},{-0.0233837f,-0.330334f,0.0918925f}, - {-0.305907f,0.00314874f,0.0918925f},{-0.311077f,0.013106f,0.0918925f},{-0.0131452f,-0.29683f,0.0918925f}, - {-0.0140418f,-0.296008f,0.0918925f},{-0.292548f,0.0362489f,0.0918925f},{-0.2953f,0.0368031f,0.0918925f}, - {-0.306322f,0.0197119f,0.0918925f},{-0.289055f,0.0153056f,0.0918925f},{-0.291499f,0.0131075f,0.0918925f}, - {-0.296008f,0.0140418f,0.0918925f},{-0.302534f,0.00545274f,0.0918925f},{-0.303332f,0.00520628f,0.0918925f}, - {-0.332012f,0.0211319f,0.0918925f},{-0.316367f,0.0136627f,0.0918925f},{-0.316548f,0.0131075f,0.0918925f}, - {-0.313518f,-0.0097434f,0.0918925f},{-0.27258f,0.0243605f,0.0918925f},{-0.286209f,0.0136603f,0.0918925f}, - {-0.286501f,0.0141674f,0.0918925f},{-0.255913f,0.000431293f,0.0918925f},{-0.279929f,0.00186868f,0.0918925f}, - {-0.280169f,0.00299304f,0.0918925f},{-0.266037f,0.0199275f,0.0918925f},{-0.280722f,0.00409024f,0.0918925f}, - {-0.334835f,0.0162821f,0.0918925f},{-0.335965f,0.0137123f,0.0918925f},{-0.31521f,-0.0101017f,0.0918925f}, - {-0.279848f,6.36295e-017f,0.0918925f},{-0.305379f,0.0205661f,0.0918925f},{-0.314628f,0.0348205f,0.0918925f}, - {-0.311971f,0.0357253f,0.0918925f},{-0.336898f,0.0110641f,0.0918925f},{-0.31194f,-0.0104475f,0.0918925f}, - {0.0128186f,0.316594f,0.0918925f},{0.0187595f,0.333514f,0.0918925f},{0.0133893f,0.316472f,0.0918925f}, - {-0.291319f,-0.0113857f,0.0918925f},{0.036428f,0.309253f,0.0918925f},{0.0369213f,0.306489f,0.0918925f}, - {0.0211196f,0.304282f,0.0918925f},{-0.291026f,-0.0108798f,0.0918925f},{-0.243259f,-0.0139831f,0.0918925f}, - {-0.281577f,0.005033f,0.0918925f},{-0.28266f,0.0057111f,0.0918925f},{-0.111865f,-0.0139831f,0.0918925f}, - {-0.111865f,0.0139831f,0.0918925f},{-0.254935f,0.0154692f,0.0918925f},{-0.254583f,0.00139831f,0.0918925f}, - {-0.255016f,0.00132937f,0.0918925f},{-0.296262f,0.00242058f,0.0918925f},{-0.29594f,0.00165192f,0.0918925f}, - {-0.251049f,0.0146388f,0.0918925f},{-0.297189f,0.00380587f,0.0918925f},{-0.247144f,-0.0141452f,0.0918925f}, - {-0.253763f,0.00113282f,0.0918925f},{-0.254152f,0.00133028f,0.0918925f},{-0.262471f,0.0181265f,0.0918925f}, - {-0.258757f,0.0166349f,0.0918925f},{-0.255708f,0.000817561f,0.0918925f},{-0.253462f,0.000819718f,0.0918925f}, - {-0.247143f,0.0141453f,0.0918925f},{-0.243259f,0.0139831f,0.0918925f},{-0.253259f,0.000430548f,0.0918925f}, - {-0.258757f,-0.016635f,0.0918925f},{-0.25105f,-0.0146388f,0.0918925f},{-0.254936f,-0.0154693f,0.0918925f}, - {-0.0956018f,0.0235109f,0.0918925f},{-0.0986812f,-0.0194438f,0.0918925f},{-0.0564469f,0.0658638f,0.0918925f}, - {-0.0339921f,0.0687596f,0.0918925f},{-0.0322907f,0.0681947f,0.0918925f},{-0.0933567f,0.0303842f,0.0918925f}, - {-0.0932205f,0.0326272f,0.0918925f},{-0.0357264f,0.0692143f,0.0918925f},{-0.0374861f,0.069557f,0.0918925f}, - {-0.0937848f,0.0280785f,0.0918925f},{0.0175821f,0.0556727f,0.0918925f},{-0.0167528f,0.0540841f,0.0918925f}, - {-0.0175819f,0.0556734f,0.0918925f},{0.0937848f,-0.0280785f,0.0918925f},{0.0663166f,-0.028225f,0.0918925f}, - {0.0945295f,-0.0257644f,0.0918925f},{-0.079125f,0.0926561f,0.0918925f},{-0.079703f,0.0835236f,0.0918925f}, - {-0.0802367f,0.0837612f,0.0918925f},{-0.0516079f,-0.0157041f,0.0918925f},{-0.0813929f,0.0838832f,0.0918925f}, - {-0.0836927f,0.0908391f,0.0918925f},{-0.0814392f,0.0919114f,0.0918925f},{-0.0768194f,0.0930843f,0.0918925f}, - {-0.0792292f,0.0831785f,0.0918925f},{-0.0829714f,0.0831813f,0.0918925f},{-0.0877597f,0.0877597f,0.0918925f}, - {-0.0824989f,0.0835243f,0.0918925f},{-0.0745764f,0.0932205f,0.0918925f},{-0.0785464f,0.0822379f,0.0918925f}, - {-0.0788389f,0.082745f,0.0918925f},{-0.0836562f,0.0822403f,0.0918925f},{-0.0838367f,0.0816851f,0.0918925f}, - {-0.0894455f,0.0858243f,0.0918925f},{-0.0783664f,0.0816836f,0.0918925f},{-0.0919114f,0.0814392f,0.0918925f}, - {-0.0908383f,0.0836959f,0.0918925f},{-0.092657f,0.0791278f,0.0918925f},{-0.0808074f,0.0838826f,0.0918925f}, - {-0.0388582f,0.0838826f,0.0918925f},{-0.0394436f,0.0838832f,0.0918925f},{-0.0326272f,0.0932205f,0.0918925f}, - {-0.0930856f,0.0768218f,0.0918925f},{-0.0339921f,-0.0151388f,0.0918925f},{-0.0322907f,-0.0157037f,0.0918925f}, - {-0.0464129f,-0.0143416f,0.0918925f},{0.0322905f,0.0681943f,0.0918925f},{0.0339919f,0.0687593f,0.0918925f}, - {0.0932205f,-0.0745764f,0.0918925f},{0.0825006f,-0.07868f,0.0918925f},{0.0819669f,-0.0784424f,0.0918925f}, - {-0.0163644f,0.102748f,0.0918925f},{0.0152921f,0.105002f,0.0918925f},{0.0163653f,0.102745f,0.0918925f}, - {-0.0194438f,0.0986812f,0.0918925f},{0.0177581f,0.100617f,0.0918925f},{-0.0152921f,0.105002f,0.0918925f}, - {0.0145465f,0.107313f,0.0918925f},{0.0141179f,0.109619f,0.0918925f},{-0.0145474f,0.107316f,0.0918925f}, - {-0.0141193f,0.109622f,0.0918925f},{0.0139831f,0.111865f,0.0918925f},{0.00348669f,0.305663f,0.0918925f}, - {0.00343053f,0.313779f,0.0918925f},{0.0140418f,0.296008f,0.0918925f},{0.0122331f,0.291546f,0.0918925f}, - {0.0131452f,0.29683f,0.0918925f},{0.0372093f,0.303697f,0.0918925f},{0.0372859f,0.30089f,0.0918925f}, - {0.0214407f,0.301289f,0.0918925f},{0.0152596f,0.314395f,0.0918925f},{0.0309479f,0.322088f,0.0918925f}, - {0.0324249f,0.319701f,0.0918925f},{0.00227064f,0.313414f,0.0918925f},{0.00124367f,0.306742f,0.0918925f}, - {0.00105623f,0.313362f,0.0918925f},{0.0292956f,0.324358f,0.0918925f},{0.0147871f,0.315456f,0.0918925f}, - {0.0274641f,0.326484f,0.0918925f},{-0.00553077f,0.302122f,0.0918925f},{-0.012073f,0.302345f,0.0918925f}, - {-0.00348695f,0.305661f,0.0918925f},{-0.002796f,0.306132f,0.0918925f},{0.0106546f,0.315892f,0.0918925f}, - {-0.0121253f,0.303559f,0.0918925f},{-0.0124909f,0.304719f,0.0918925f},{-0.00503626f,0.303713f,0.0918925f}, - {-0.0046188f,0.304437f,0.0918925f},{7.81291e-017f,0.322729f,0.0918925f},{0.00280586f,0.338471f,0.0918925f}, - {-0.00409889f,0.305092f,0.0918925f},{-0.00186868f,0.322648f,0.0918925f},{-0.00409024f,0.321855f,0.0918925f}, - {-0.00204334f,0.306495f,0.0918925f},{-0.00124497f,0.306741f,0.0918925f},{-5.8201e-009f,0.313407f,0.0918925f}, - {0.00041711f,0.306866f,0.0918925f},{-0.0152591f,0.314396f,0.0918925f},{-0.0150786f,0.314951f,0.0918925f}, - {-0.000418664f,0.306866f,0.0918925f},{-0.0131452f,0.305747f,0.0918925f},{-0.0143937f,0.290844f,0.0918925f}, - {-0.0139213f,0.291187f,0.0918925f},{-0.0133877f,0.291424f,0.0918925f},{-0.0122298f,0.291545f,0.0918925f}, - {0.0213591f,0.303157f,0.0918925f},{0.00279621f,0.306133f,0.0918925f},{0.0371496f,0.298086f,0.0918925f}, - {0.0186287f,0.307f,0.0918925f},{0.00409933f,0.305094f,0.0918925f},{0.01512f,0.295447f,0.0918925f}, - {0.013923f,0.291186f,0.0918925f},{0.0362489f,0.292548f,0.0918925f},{0.0152596f,0.289346f,0.0918925f}, - {0.0333688f,0.28465f,0.0918925f},{0.034526f,0.287207f,0.0918925f},{0.00082033f,0.257077f,0.0918925f}, - {0.000431051f,0.257275f,0.0918925f},{0.00299304f,0.280169f,0.0918925f},{0.00534833f,0.30294f,0.0918925f}, - {0.00553085f,0.302123f,0.0918925f},{0.00996978f,0.289903f,0.0918925f},{0.0269304f,0.275498f,0.0918925f}, - {0.0220151f,0.269417f,0.0918925f},{0.0320225f,0.282186f,0.0918925f},{0.0287942f,0.277597f,0.0918925f}, - {-0.0213591f,0.29942f,0.0918925f},{0.00606332f,0.283836f,0.0918925f},{-0.0579493f,-0.0190126f,0.0918925f}, - {-0.0593859f,-0.0200848f,0.0918925f},{-0.0139831f,0.111865f,0.0918925f},{-0.0106515f,0.290841f,0.0918925f}, - {-0.0141452f,0.247144f,0.0918925f},{0.00112134f,0.256764f,0.0918925f},{0.0166349f,0.258757f,0.0918925f}, - {0.00132352f,0.256375f,0.0918925f},{0.00186868f,0.279929f,0.0918925f},{2.7892e-017f,0.257343f,0.0918925f}, - {0.0154692f,0.254935f,0.0918925f},{-0.024361f,0.27258f,0.0918925f},{0.0146388f,0.251049f,0.0918925f}, - {-0.00343053f,0.288798f,0.0918925f},{-0.0102613f,0.290408f,0.0918925f},{0.0141453f,0.247143f,0.0918925f}, - {-0.0181266f,0.262471f,0.0918925f},{-0.000819963f,0.257072f,0.0918925f},{-0.016635f,0.258757f,0.0918925f}, - {-0.0139831f,0.243259f,0.0918925f},{-0.00112493f,0.256762f,0.0918925f},{-0.0013304f,0.256376f,0.0918925f}, - {-0.0146388f,0.25105f,0.0918925f},{-0.0177565f,0.10062f,0.0918925f},{0.0257644f,0.0945295f,0.0918925f}, - {0.0259491f,0.0648858f,0.0918925f},{0.0235109f,0.0956018f,0.0918925f},{0.0245125f,0.0638136f,0.0918925f}, - {0.0290135f,0.0667435f,0.0918925f},{0.0274515f,0.0658638f,0.0918925f},{0.0154086f,-0.033137f,0.0918925f}, - {-0.0154219f,-0.0331407f,0.0918925f},{0.0160285f,-0.0314546f,0.0918925f},{0.0357259f,0.069214f,0.0918925f}, - {0.0548845f,-0.0171541f,0.0918925f},{0.0564465f,-0.0180338f,0.0918925f},{0.089447f,0.0858213f,0.0918925f}, - {0.0838372f,0.0816836f,0.0918925f},{0.0836572f,0.0822379f,0.0918925f},{0.0836959f,0.0908383f,0.0918925f}, - {0.0808108f,0.0838832f,0.0918925f},{0.0814392f,0.0919114f,0.0918925f},{0.0829744f,0.0831785f,0.0918925f}, - {0.0825006f,0.0835236f,0.0918925f},{0.0877597f,0.0877597f,0.0918925f},{0.0819669f,0.0837612f,0.0918925f}, - {0.0858243f,0.0894455f,0.0918925f},{0.0930843f,0.0768194f,0.0918925f},{0.0908391f,0.0836927f,0.0918925f}, - {0.107313f,-0.0145465f,0.0918925f},{0.107316f,0.0145474f,0.0918925f},{0.109622f,0.0141193f,0.0918925f}, - {0.0932205f,0.0745764f,0.0918925f},{0.0932205f,0.0326272f,0.0918925f},{0.0919114f,0.0814392f,0.0918925f}, - {0.0926561f,0.079125f,0.0918925f},{0.0698583f,0.0437414f,0.0918925f},{0.0696868f,0.0455262f,0.0918925f}, - {0.0833647f,0.082745f,0.0918925f},{0.0932205f,-0.0326272f,0.0918925f},{0.100617f,-0.0177581f,0.0918925f}, - {0.102748f,0.0163644f,0.0918925f},{0.102745f,-0.0163653f,0.0918925f},{0.0653872f,-0.0266922f,0.0918925f}, - {0.0956018f,-0.0235109f,0.0918925f},{0.105002f,-0.0152921f,0.0918925f},{0.105002f,0.0152921f,0.0918925f}, - {0.111865f,0.0139831f,0.0918925f},{0.109619f,-0.0141179f,0.0918925f},{0.111865f,-0.0139831f,0.0918925f}, - {0.290637f,-0.0104475f,0.0918925f},{0.32971f,-0.0241396f,0.0918925f},{0.301289f,-0.0214407f,0.0918925f}, - {0.303157f,-0.0213591f,0.0918925f},{0.303208f,-0.0372381f,0.0918925f},{0.306637f,0.00165192f,0.0918925f}, - {0.306315f,0.00242058f,0.0918925f},{0.316076f,-0.010881f,0.0918925f},{0.315685f,-0.0104475f,0.0918925f}, - {0.279758f,-0.0304433f,0.0918925f},{0.312949f,-0.00986419f,0.0918925f},{0.314434f,-0.00445839f,0.0918925f}, - {0.313522f,-0.00974281f,0.0918925f},{0.304719f,0.0124909f,0.0918925f},{0.325832f,0.0280694f,0.0918925f}, - {0.315685f,0.0146009f,0.0918925f},{0.315212f,0.014946f,0.0918925f},{0.29719f,0.00380369f,0.0918925f}, - {0.297802f,0.0043727f,0.0918925f},{0.306569f,0.0140418f,0.0918925f},{0.305747f,0.0131452f,0.0918925f}, - {0.300044f,0.00545274f,0.0918925f},{0.299245f,0.00520628f,0.0918925f},{0.314107f,0.015305f,0.0918925f}, - {0.319039f,0.032792f,0.0918925f},{0.321418f,0.0313879f,0.0918925f},{0.332963f,0.0196753f,0.0918925f}, - {0.334333f,0.0172761f,0.0918925f},{0.316548f,0.013106f,0.0918925f},{0.302345f,0.012073f,0.0918925f}, - {0.301706f,0.00557763f,0.0918925f},{0.301289f,0.0121187f,0.0918925f},{0.338551f,0.00138096f,0.0918925f}, - {0.322648f,0.00186868f,0.0918925f},{0.338346f,0.00413651f,0.0918925f},{0.335521f,0.0147817f,0.0918925f}, - {0.321855f,0.00409024f,0.0918925f},{0.321f,0.005033f,0.0918925f},{0.338551f,-0.00138181f,0.0918925f}, - {0.322729f,-7.81484e-018f,0.0918925f},{0.287367f,-0.0101017f,0.0918925f},{0.286895f,-0.0104447f,0.0918925f}, - {0.306819f,0.000834183f,0.0918925f},{0.319038f,-0.0327925f,0.0918925f},{0.316562f,-0.0340166f,0.0918925f}, - {0.306322f,-0.0197119f,0.0918925f},{0.292244f,-0.0361745f,0.0918925f},{0.304282f,-0.0211196f,0.0918925f}, - {0.305959f,-0.0369915f,0.0918925f},{0.311258f,-0.0113857f,0.0918925f},{0.307f,-0.0186287f,0.0918925f}, - {0.313414f,-0.00227064f,0.0918925f},{0.313362f,-0.00105623f,0.0918925f},{0.323687f,-0.0298117f,0.0918925f}, - {0.325828f,-0.0280668f,0.0918925f},{0.29132f,-0.0113881f,0.0918925f},{0.291027f,-0.010881f,0.0918925f}, - {0.297858f,-0.0124909f,0.0918925f},{0.295447f,-0.01512f,0.0918925f},{0.289629f,-0.00986481f,0.0918925f}, - {0.289059f,-0.0097434f,0.0918925f},{0.331419f,-0.0219685f,0.0918925f},{0.316548f,-0.0119424f,0.0918925f}, - {0.277562f,-0.0287659f,0.0918925f},{0.275498f,-0.0269304f,0.0918925f},{0.27258f,-0.0243605f,0.0918925f}, - {0.269417f,-0.0220151f,0.0918925f},{0.316368f,-0.0113881f,0.0918925f},{0.338347f,-0.00413689f,0.0918925f}, - {0.305388f,0.00380587f,0.0918925f},{0.304775f,0.00437403f,0.0918925f},{0.31533f,-0.00528033f,0.0918925f}, - {0.337938f,0.00686904f,0.0918925f},{0.322408f,0.00299304f,0.0918925f},{0.304085f,0.00484444f,0.0918925f}, - {0.336521f,0.0122059f,0.0918925f},{0.303559f,0.0121253f,0.0918925f},{0.302532f,0.00545321f,0.0918925f}, - {0.0877597f,-0.0877597f,0.0918925f},{0.30087f,0.00557747f,0.0918925f},{0.316368f,0.0136603f,0.0918925f}, - {0.329709f,0.024138f,0.0918925f},{0.331418f,0.0219665f,0.0918925f},{0.28917f,-5.8201e-009f,0.0918925f}, - {0.314002f,0.0350539f,0.0918925f},{0.29667f,0.00314874f,0.0918925f},{0.254583f,0.00139831f,0.0918925f}, - {0.254936f,0.0154693f,0.0918925f},{0.255014f,0.00133028f,0.0918925f},{0.287247f,0.00528033f,0.0918925f}, - {0.288143f,0.00445839f,0.0918925f},{0.0678671f,-0.0314549f,0.0918925f},{0.0933567f,-0.0303842f,0.0918925f}, - {0.0684765f,-0.0331407f,0.0918925f},{0.266037f,0.019928f,0.0918925f},{0.279848f,1.74344e-017f,0.0918925f}, - {0.279929f,-0.00186868f,0.0918925f},{0.254935f,-0.0154692f,0.0918925f},{0.251049f,-0.0146388f,0.0918925f}, - {0.255906f,0.000430548f,0.0918925f},{0.262471f,0.0181266f,0.0918925f},{0.243259f,0.0139831f,0.0918925f}, - {0.253253f,0.000431293f,0.0918925f},{0.255704f,0.000819718f,0.0918925f},{0.258757f,0.016635f,0.0918925f}, - {0.25105f,0.0146388f,0.0918925f},{0.255403f,0.00113282f,0.0918925f},{0.218384f,0.000430548f,0.0918925f}, - {0.10062f,0.0177565f,0.0918925f},{0.0986812f,-0.0194438f,0.0918925f},{0.0986812f,0.0194438f,0.0918925f}, - {0.0643615f,-0.0252221f,0.0918925f},{0.0698583f,-0.040157f,0.0918925f},{-0.0372799f,-0.0790251f,0.0918925f}, - {-0.0377538f,-0.07868f,0.0918925f},{0.0814392f,-0.0919114f,0.0918925f},{0.079125f,-0.0926561f,0.0918925f}, - {0.0768194f,-0.0930843f,0.0918925f},{0.0836927f,-0.0908391f,0.0918925f},{0.0919114f,-0.0814392f,0.0918925f}, - {0.0908383f,-0.0836959f,0.0918925f},{0.0858213f,-0.089447f,0.0918925f},{0.0745764f,-0.0932205f,0.0918925f}, - {0.0894455f,-0.0858243f,0.0918925f},{0.0194438f,-0.0986812f,0.0918925f},{0.0213792f,-0.0969955f,0.0918925f}, - {0.0280757f,-0.0937839f,0.0918925f},{0.0257644f,-0.0945295f,0.0918925f},{-0.0583304f,-0.0794586f,0.0918925f}, - {-0.0235109f,-0.0956018f,0.0918925f},{-0.0326272f,-0.0932205f,0.0918925f},{-0.0152921f,-0.105002f,0.0918925f}, - {-0.0163653f,-0.102745f,0.0918925f},{0.0163644f,-0.102748f,0.0918925f},{-0.0177581f,-0.100617f,0.0918925f}, - {0.0177565f,-0.10062f,0.0918925f},{0.0141193f,-0.109622f,0.0918925f},{0.0152921f,-0.105002f,0.0918925f}, - {0.0139831f,-0.111865f,0.0918925f},{-0.0139831f,-0.111865f,0.0918925f},{0.00132352f,-0.255514f,0.0918925f}, - {0.0146388f,-0.25105f,0.0918925f},{0.0154693f,-0.254936f,0.0918925f},{-0.00996883f,-0.312677f,0.0918925f}, - {-0.0292956f,-0.324358f,0.0918925f},{-0.0187595f,-0.333514f,0.0918925f},{-0.00559549f,-0.338155f,0.0918925f}, - {-0.00835325f,-0.33763f,0.0918925f},{-0.0137123f,-0.335965f,0.0918925f},{-0.0110641f,-0.336898f,0.0918925f}, - {0.0121253f,-0.303559f,0.0918925f},{0.012073f,-0.302345f,0.0918925f},{-6.42929e-017f,-0.322729f,0.0918925f}, - {0.00186868f,-0.322648f,0.0918925f},{0.00996978f,-0.312674f,0.0918925f},{0.0057111f,-0.319917f,0.0918925f}, - {0.00553085f,-0.300454f,0.0918925f},{0.00534833f,-0.299637f,0.0918925f},{5.8201e-009f,-0.313407f,0.0918925f}, - {0.013923f,-0.311391f,0.0918925f},{0.01512f,-0.30713f,0.0918925f},{0.0122331f,-0.311031f,0.0918925f}, - {0.0131452f,-0.305747f,0.0918925f},{0.0140418f,-0.306569f,0.0918925f},{-0.0324249f,-0.319701f,0.0918925f}, - {-0.0337184f,-0.31721f,0.0918925f},{-0.0197119f,-0.306322f,0.0918925f},{-0.0186287f,-0.307f,0.0918925f}, - {-0.0152591f,-0.313229f,0.0918925f},{-0.0116591f,-0.311153f,0.0918925f},{-0.0111254f,-0.311391f,0.0918925f}, - {-0.0139213f,-0.31139f,0.0918925f},{-0.0122298f,-0.311032f,0.0918925f},{-0.0121253f,-0.299018f,0.0918925f}, - {-0.0124909f,-0.297858f,0.0918925f},{-0.00503626f,-0.298864f,0.0918925f},{-0.00186868f,-0.279929f,0.0918925f}, - {0.0102622f,-0.28712f,0.0918925f},{0.00584159f,-0.286169f,0.0918925f},{-0.0128153f,-0.285983f,0.0918925f}, - {-0.0097888f,-0.288183f,0.0918925f},{-0.0269304f,-0.275498f,0.0918925f},{-0.0147862f,-0.28712f,0.0918925f}, - {-0.0287942f,-0.277597f,0.0918925f},{-0.012073f,-0.300232f,0.0918925f},{-0.00553077f,-0.300455f,0.0918925f}, - {0.00279621f,-0.296444f,0.0918925f},{0.00343053f,-0.288798f,0.0918925f},{0.0211196f,-0.298295f,0.0918925f}, - {0.0213591f,-0.29942f,0.0918925f},{-0.00124497f,-0.295836f,0.0918925f},{-0.00204334f,-0.296082f,0.0918925f}, - {-5.8201e-009f,-0.28917f,0.0918925f},{0.00105623f,-0.289216f,0.0918925f},{0.00041711f,-0.295711f,0.0918925f}, - {-3.0178e-017f,-0.279848f,0.0918925f},{0.0122331f,-0.285983f,0.0918925f},{-0.0166349f,-0.258757f,0.0918925f}, - {-0.0154692f,-0.254935f,0.0918925f},{0.019928f,-0.266037f,0.0918925f},{-0.0146388f,-0.251049f,0.0918925f}, - {-0.0013304f,-0.255513f,0.0918925f},{0.016635f,-0.258757f,0.0918925f},{0.0141452f,-0.247144f,0.0918925f}, - {0.00112134f,-0.255125f,0.0918925f},{-0.000433147f,-0.254615f,0.0918925f},{-0.0139831f,-0.243259f,0.0918925f}, - {3.00981e-017f,-0.254546f,0.0918925f},{0.0139831f,-0.243259f,0.0918925f},{0.000431051f,-0.254614f,0.0918925f}, - {0.00132352f,-0.218226f,0.0918925f},{-0.0257644f,-0.0945295f,0.0918925f},{-0.0194438f,-0.0986812f,0.0918925f}, - {-0.0364172f,-0.08052f,0.0918925f},{-0.0365972f,-0.0799657f,0.0918925f},{-0.0368897f,-0.0794586f,0.0918925f}, - {-0.0956027f,-0.0235077f,0.0918925f},{-0.0969955f,-0.0213792f,0.0918925f},{-0.0632438f,-0.0238208f,0.0918925f}, - {-0.0945295f,0.0257644f,0.0918925f},{-0.0608844f,-0.0783204f,0.0918925f},{-0.0814392f,-0.0919114f,0.0918925f}, - {-0.0791278f,-0.092657f,0.0918925f},{-0.0768218f,-0.0930856f,0.0918925f},{-0.0614568f,-0.0784418f,0.0918925f}, - {-0.0591945f,-0.07868f,0.0918925f},{-0.0587207f,-0.0790251f,0.0918925f},{-0.0418875f,-0.0805185f,0.0918925f}, - {-0.0578579f,-0.08052f,0.0918925f},{-0.041707f,-0.0799633f,0.0918925f},{-0.0414146f,-0.0794574f,0.0918925f}, - {-0.0400161f,-0.0784418f,0.0918925f},{-0.0745764f,-0.0932205f,0.0918925f},{-0.0213822f,-0.0969939f,0.0918925f}, - {-0.0303842f,-0.0933567f,0.0918925f},{-0.0280785f,-0.0937848f,0.0918925f},{0.0833647f,-0.0794586f,0.0918925f}, - {0.0930856f,-0.0768218f,0.0918925f},{0.0836572f,-0.0799657f,0.0918925f},{0.0808108f,-0.0783204f,0.0918925f}, - {-0.0144962f,-0.0366018f,0.0918925f},{-0.0148999f,-0.0348554f,0.0918925f},{0.0148988f,-0.034856f,0.0918925f}, - {0.0145004f,-0.0366037f,0.0918925f},{0.0142141f,-0.0383731f,0.0918925f},{-0.0142116f,-0.0383722f,0.0918925f}, - {0.0167532f,-0.0298151f,0.0918925f},{-0.0167528f,-0.0298143f,0.0918925f},{0.0175821f,-0.0282257f,0.0918925f}, - {-0.0195369f,-0.0252221f,0.0918925f},{-0.0206547f,-0.0238204f,0.0918925f},{0.0206546f,-0.0238208f,0.0918925f}, - {0.0185115f,-0.0266927f,0.0918925f},{-0.0175819f,-0.028225f,0.0918925f},{-0.0185112f,-0.0266922f,0.0918925f}, - {0.0694022f,-0.0366018f,0.0918925f},{0.0696868f,-0.0383722f,0.0918925f},{-0.0392642f,-0.0141123f,0.0918925f}, - {-0.0410532f,-0.0139974f,0.0918925f},{0.0231475f,0.0626516f,0.0918925f},{0.0218598f,0.0614045f,0.0918925f}, - {0.0213822f,0.0969939f,0.0918925f},{0.0969939f,-0.0213822f,0.0918925f},{0.0632437f,-0.0238204f,0.0918925f}, - {0.0620385f,-0.0224931f,0.0918925f},{0.0516077f,-0.0157037f,0.0918925f},{0.0357259f,-0.0146844f,0.0918925f}, - {0.0339919f,-0.0151392f,0.0918925f},{-0.0218599f,-0.0224931f,0.0918925f},{0.0218598f,-0.0224939f,0.0918925f}, - {0.0290135f,-0.0171549f,0.0918925f},{0.0306287f,-0.016377f,0.0918925f},{0.0303842f,0.0933567f,0.0918925f}, - {0.0365982f,0.0822403f,0.0918925f},{0.0364177f,0.0816851f,0.0918925f},{0.0428452f,0.069901f,0.0918925f}, - {0.0410525f,0.069901f,0.0918925f},{-0.0290139f,0.0667443f,0.0918925f},{-0.0306291f,0.0675221f,0.0918925f}, - {-0.0418875f,0.0816851f,0.0918925f},{-0.0516079f,0.0681943f,0.0918925f},{-0.0428459f,0.069901f,0.0918925f}, - {-0.0410532f,0.069901f,0.0918925f},{-0.0392642f,0.0697861f,0.0918925f},{-0.0607509f,-0.0212468f,0.0918925f}, - {-0.0969939f,0.0213822f,0.0918925f},{-0.0620386f,-0.0224939f,0.0918925f},{-0.0643614f,-0.0252222f,0.0918925f}, - {-0.0653869f,-0.0266927f,0.0918925f},{-0.0945295f,-0.0257644f,0.0918925f},{-0.0678699f,-0.0314546f,0.0918925f}, - {-0.0933553f,-0.0303817f,0.0918925f},{-0.0684898f,-0.033137f,0.0918925f},{-0.0689996f,-0.034856f,0.0918925f}, - {-0.0696843f,-0.0383731f,0.0918925f},{-0.069398f,-0.0366037f,0.0918925f},{-0.0698582f,-0.0401574f,0.0918925f}, - {0.0140402f,-0.0401574f,0.0918925f},{-0.0140401f,-0.040157f,0.0918925f},{0.041888f,-0.08052f,0.0918925f}, - {0.0235077f,-0.0956027f,0.0918925f},{0.0368906f,-0.0794574f,0.0918925f},{0.0365982f,-0.0799633f,0.0918925f}, - {0.0364177f,-0.0805185f,0.0918925f},{0.037283f,-0.0790223f,0.0918925f},{0.0388615f,-0.0783204f,0.0918925f}, - {0.039447f,-0.078321f,0.0918925f},{0.0382891f,-0.0784418f,0.0918925f},{0.0377555f,-0.0786793f,0.0918925f}, - {0.041708f,-0.0799657f,0.0918925f},{0.0414155f,-0.0794586f,0.0918925f},{0.0405514f,-0.07868f,0.0918925f}, - {0.0400177f,-0.0784424f,0.0918925f},{0.0410252f,-0.0790251f,0.0918925f},{0.0326272f,-0.0932205f,0.0918925f}, - {0.0788398f,-0.0794574f,0.0918925f},{0.0785474f,-0.0799633f,0.0918925f},{0.0783669f,-0.0805185f,0.0918925f}, - {0.0797047f,-0.0786793f,0.0918925f},{0.0792323f,-0.0790223f,0.0918925f},{0.0813962f,-0.078321f,0.0918925f}, - {0.0829744f,-0.0790251f,0.0918925f},{0.0689986f,-0.0348554f,0.0918925f},{0.0671457f,-0.0298143f,0.0918925f}, - {0.0607507f,-0.021246f,0.0918925f},{0.048172f,0.0692143f,0.0918925f},{0.0464123f,0.069557f,0.0918925f}, - {0.0532694f,-0.0163764f,0.0918925f},{0.0593856f,-0.0200839f,0.0918925f},{0.0579489f,-0.0190117f,0.0918925f}, - {-0.0532697f,-0.016377f,0.0918925f},{-0.0548849f,-0.0171549f,0.0918925f},{0.0464123f,-0.0143415f,0.0918925f}, - {0.048172f,-0.0146841f,0.0918925f},{0.0499063f,-0.0151388f,0.0918925f},{0.0428452f,-0.0139974f,0.0918925f}, - {0.0446342f,-0.0141123f,0.0918925f},{0.0280785f,0.0937848f,0.0918925f},{0.0392635f,-0.0141124f,0.0918925f}, - {-0.0160313f,0.0524435f,0.0918925f},{0.0167532f,0.0540833f,0.0918925f},{0.0160285f,0.0524438f,0.0918925f}, - {0.0274515f,-0.0180347f,0.0918925f},{0.0322905f,-0.0157041f,0.0918925f},{-0.0140401f,0.0437414f,0.0918925f}, - {-0.0142116f,0.0455262f,0.0918925f},{0.0142141f,0.0455253f,0.0918925f},{0.0446342f,0.0697861f,0.0918925f}, - {0.037283f,0.0831813f,0.0918925f},{0.0326272f,0.0932205f,0.0918925f},{0.0377555f,0.0835243f,0.0918925f}, - {-0.0259495f,-0.0190117f,0.0918925f},{-0.0274519f,-0.0180338f,0.0918925f},{0.0374855f,0.0695568f,0.0918925f}, - {-0.0564469f,-0.0180347f,0.0918925f},{-0.0306291f,-0.0163764f,0.0918925f},{-0.0428459f,-0.0139975f,0.0918925f}, - {-0.0446349f,-0.0141124f,0.0918925f},{-0.0290139f,-0.0171541f,0.0918925f},{0.019537f,-0.0252222f,0.0918925f}, - {-0.0160313f,-0.0314549f,0.0918925f},{-0.0106515f,-0.311736f,0.0918925f},{0.0186287f,-0.295577f,0.0918925f}, - {0.00606332f,-0.318741f,0.0918925f},{0.00124367f,-0.295835f,0.0918925f},{0.00227064f,-0.289163f,0.0918925f}, - {0.0152596f,-0.288183f,0.0918925f},{0.0205661f,-0.297198f,0.0918925f},{0.0197119f,-0.296256f,0.0918925f}, - {0.0150796f,-0.287628f,0.0918925f},{0.024361f,-0.27258f,0.0918925f},{0.0143968f,-0.286688f,0.0918925f}, - {0.013923f,-0.286343f,0.0918925f},{-0.0046188f,-0.29814f,0.0918925f},{-0.0152591f,-0.288181f,0.0918925f}, - {-0.0304947f,-0.27983f,0.0918925f},{-0.0150786f,-0.287626f,0.0918925f},{-0.034526f,-0.287207f,0.0918925f}, - {-0.0354881f,-0.289845f,0.0918925f},{-0.0213591f,-0.303157f,0.0918925f},{-0.0372093f,-0.303697f,0.0918925f}, - {-0.0214407f,-0.301289f,0.0918925f},{-0.0211196f,-0.304282f,0.0918925f},{-0.0205661f,-0.305379f,0.0918925f}, - {-0.0357253f,-0.311971f,0.0918925f},{-0.0309479f,-0.322088f,0.0918925f},{-0.0255029f,-0.328493f,0.0918925f}, - {-0.00584159f,-0.316409f,0.0918925f},{-0.00280586f,-0.338471f,0.0918925f},{-0.0162821f,-0.334835f,0.0918925f}, - {0.005033f,-0.321f,0.0918925f},{0.0102622f,-0.312168f,0.0918925f},{0.00409024f,-0.321855f,0.0918925f}, - {0.00502626f,-0.298868f,0.0918925f},{0.0150796f,-0.312677f,0.0918925f},{0.319917f,0.0057111f,0.0918925f}, - {0.327844f,0.0261764f,0.0918925f},{0.316076f,0.0141674f,0.0918925f},{0.314678f,0.0151836f,0.0918925f}, - {0.323687f,0.0298108f,0.0918925f},{0.313522f,0.0153056f,0.0918925f},{0.291027f,0.0141674f,0.0918925f}, - {0.30713f,0.01512f,0.0918925f},{0.311551f,0.0141686f,0.0918925f},{0.289629f,0.0151836f,0.0918925f}, - {0.289059f,0.015305f,0.0918925f},{0.295577f,0.0186287f,0.0918925f},{0.288798f,0.00343053f,0.0918925f}, - {0.296252f,0.00242484f,0.0918925f},{0.295946f,0.00164777f,0.0918925f},{0.289163f,0.00227064f,0.0918925f}, - {0.311078f,0.0131075f,0.0918925f},{0.295758f,0.000833312f,0.0918925f},{0.289216f,0.00105623f,0.0918925f}, - {0.258757f,-0.0166349f,0.0918925f},{0.262471f,-0.0181265f,0.0918925f},{0.266037f,-0.0199275f,0.0918925f}, - {0.280169f,-0.00299304f,0.0918925f},{0.280722f,-0.00409024f,0.0918925f},{0.283836f,-0.00606332f,0.0918925f}, - {0.28621f,-0.0113857f,0.0918925f},{0.28266f,-0.0057111f,0.0918925f},{0.281577f,-0.005033f,0.0918925f}, - {0.307352f,-0.0174528f,0.0918925f},{0.282071f,-0.0319538f,0.0918925f},{0.297686f,-0.037113f,0.0918925f}, - {0.294948f,-0.0367442f,0.0918925f},{0.28449f,-0.0332889f,0.0918925f},{0.311551f,-0.0108798f,0.0918925f}, - {0.308686f,-0.0365475f,0.0918925f},{0.321418f,-0.0313882f,0.0918925f},{0.327834f,-0.0261674f,0.0918925f}, - {0.332963f,-0.0196768f,0.0918925f},{0.334333f,-0.0172772f,0.0918925f},{-0.0111254f,0.291186f,0.0918925f}, - {-0.0116591f,0.291424f,0.0918925f},{-0.0205661f,0.297198f,0.0918925f},{0.013923f,0.316235f,0.0918925f}, - {0.0255029f,0.328493f,0.0918925f},{0.0143968f,0.315889f,0.0918925f},{0.0233837f,0.330334f,0.0918925f}, - {0.0122331f,0.316594f,0.0918925f},{-0.0102613f,0.315456f,0.0918925f},{0.0102622f,0.315457f,0.0918925f}, - {0.00584159f,0.316409f,0.0918925f},{-0.0122298f,0.316594f,0.0918925f},{-0.0057111f,0.319917f,0.0918925f}, - {-0.0116591f,0.316472f,0.0918925f},{-0.005033f,0.321f,0.0918925f},{-0.0133877f,0.316473f,0.0918925f}, - {-0.0128153f,0.316594f,0.0918925f},{-0.0147862f,0.315457f,0.0918925f},{-0.01512f,0.30713f,0.0918925f}, - {-0.0147862f,0.290409f,0.0918925f},{-0.0152591f,0.289348f,0.0918925f},{-0.0186287f,0.295577f,0.0918925f}, - {-0.00105623f,0.289216f,0.0918925f},{-0.00227064f,0.289163f,0.0918925f},{0.0181265f,0.262471f,0.0918925f}, - {0.005033f,0.281577f,0.0918925f},{0.0057111f,0.28266f,0.0918925f},{0.0121253f,0.299018f,0.0918925f}, - {0.012073f,0.300232f,0.0918925f},{0.00502626f,0.303709f,0.0918925f},{0.0243605f,0.27258f,0.0918925f}, - {0.0304947f,0.27983f,0.0918925f},{0.0150796f,0.2899f,0.0918925f},{-0.303559f,-0.0121253f,0.0918925f}, - {-0.302345f,-0.012073f,0.0918925f},{-0.321855f,-0.00409024f,0.0918925f},{-0.295225f,-0.0174528f,0.0918925f}, - {-0.286892f,0.0146009f,0.0918925f},{-0.275498f,0.0269304f,0.0918925f},{-0.287899f,0.0151836f,0.0918925f}, - {-0.28847f,0.015305f,0.0918925f},{-0.282186f,0.0320225f,0.0918925f},{-0.289628f,0.0151842f,0.0918925f}, - {-0.290161f,0.0149467f,0.0918925f},{-0.289845f,0.0354881f,0.0918925f},{-0.291319f,0.0136627f,0.0918925f}, - {-0.295447f,0.01512f,0.0918925f},{-0.307352f,0.0174528f,0.0918925f},{-0.31194f,0.0146009f,0.0918925f}, - {-0.312414f,0.014946f,0.0918925f},{-0.298086f,0.0371496f,0.0918925f},{-0.301289f,0.0214407f,0.0918925f}, - {-0.30089f,0.0372859f,0.0918925f},{-0.303157f,0.0213591f,0.0918925f},{-0.303697f,0.0372093f,0.0918925f}, - {-0.304282f,0.0211196f,0.0918925f},{-0.324358f,0.0292956f,0.0918925f},{-0.31521f,0.0149467f,0.0918925f}, - {-0.330334f,0.0233837f,0.0918925f},{-0.316075f,0.0141686f,0.0918925f},{-0.333514f,0.0187595f,0.0918925f}, - {-0.316409f,0.00584159f,0.0918925f},{-0.296256f,-0.0197119f,0.0918925f},{-0.29942f,-0.0213591f,0.0918925f}, - {-0.298295f,-0.0211196f,0.0918925f},{-0.289216f,-0.00105623f,0.0918925f},{-0.289163f,-0.00227064f,0.0918925f}, - {-0.295758f,0.000834183f,0.0918925f},{-0.262471f,-0.0181266f,0.0918925f},{0.269418f,0.0220158f,0.0918925f}, - {0.290163f,-0.0101024f,0.0918925f},{0.288473f,-0.00974281f,0.0918925f},{0.287901f,-0.00986419f,0.0918925f}, - {0.301289f,-0.0121187f,0.0918925f},{0.287001f,0.0344436f,0.0918925f},{0.296256f,0.0197119f,0.0918925f}, - {0.28449f,0.0332908f,0.0918925f},{0.298295f,0.0211196f,0.0918925f},{0.292245f,0.036175f,0.0918925f}, - {0.294949f,0.0367459f,0.0918925f},{0.279758f,0.0304444f,0.0918925f},{0.282071f,0.0319552f,0.0918925f}, - {0.287901f,0.0151842f,0.0918925f},{0.286895f,0.0146037f,0.0918925f},{0.277563f,0.0287664f,0.0918925f}, - {0.287367f,0.0149467f,0.0918925f},{0.27258f,0.024361f,0.0918925f},{0.28621f,0.0136627f,0.0918925f}, - {0.286029f,0.0131075f,0.0918925f},{-0.0410221f,-0.0790223f,0.0918925f},{0.0802383f,-0.0784418f,0.0918925f}, - {0.0838372f,-0.08052f,0.0918925f},{0.092657f,-0.0791278f,0.0918925f},{0.0678671f,0.0524435f,0.0918925f}, - {0.0684765f,0.0507578f,0.0918925f},{0.0797047f,0.0835243f,0.0918925f},{0.0791278f,0.092657f,0.0918925f}, - {0.0802383f,0.0837618f,0.0918925f},{0.0694022f,0.0472966f,0.0918925f},{0.0689986f,0.0490431f,0.0918925f}, - {0.0516077f,0.0681947f,0.0918925f},{0.041888f,0.0816836f,0.0918925f},{0.0969955f,0.0213792f,0.0918925f}, - {0.0956027f,0.0235077f,0.0918925f},{0.0259491f,-0.0190126f,0.0918925f},{0.0813962f,0.0838826f,0.0918925f}, - {0.0768218f,0.0930856f,0.0918925f},{0.0745764f,0.0932205f,0.0918925f},{0.0792323f,0.0831813f,0.0918925f}, - {0.0785474f,0.0822403f,0.0918925f},{0.0788398f,0.0827462f,0.0918925f},{0.0709097f,0.0709097f,0.0918925f}, - {0.0783669f,0.0816851f,0.0918925f},{-0.0446349f,0.0697861f,0.0918925f},{-0.0932205f,0.0745764f,0.0918925f}, - {-0.0643614f,0.0586762f,0.0918925f},{-0.0653869f,0.0572057f,0.0918925f},{-0.0593859f,0.0638136f,0.0918925f}, - {-0.0620386f,0.0614045f,0.0918925f},{-0.0632438f,0.0600777f,0.0918925f},{-0.0464129f,0.0695568f,0.0918925f}, - {-0.0481725f,0.069214f,0.0918925f},{-0.0499065f,0.0687593f,0.0918925f},{-0.0819653f,0.0837618f,0.0918925f}, - {-0.0858213f,0.089447f,0.0918925f},{-0.0833638f,0.0827462f,0.0918925f},{-0.0257644f,0.0945295f,0.0918925f}, - {-0.0280757f,0.0937839f,0.0918925f},{-0.0364172f,0.0816836f,0.0918925f},{-0.0303817f,0.0933553f,0.0918925f}, - {0.0306287f,0.0675214f,0.0918925f},{-0.0235077f,0.0956027f,0.0918925f},{-0.0259495f,0.0648867f,0.0918925f}, - {-0.0365972f,0.0822379f,0.0918925f},{-0.0368897f,0.082745f,0.0918925f},{-0.0372799f,0.0831785f,0.0918925f}, - {-0.0382875f,0.0837612f,0.0918925f},{-0.0377538f,0.0835236f,0.0918925f},{-0.0400161f,0.0837618f,0.0918925f}, - {-0.0405497f,0.0835243f,0.0918925f},{-0.0414146f,0.0827462f,0.0918925f},{-0.0410221f,0.0831813f,0.0918925f}, - {-0.041707f,0.0822403f,0.0918925f},{0.0643615f,0.0586764f,0.0918925f},{0.0653872f,0.0572063f,0.0918925f}, - {0.0410252f,0.0831785f,0.0918925f},{0.0405514f,0.0835236f,0.0918925f},{0.0245125f,-0.0200848f,0.0918925f}, - {0.0231475f,-0.0212468f,0.0918925f},{0.0499063f,0.0687596f,0.0918925f},{0.0632437f,0.0600781f,0.0918925f}, - {0.0620385f,0.0614053f,0.0918925f},{0.0579489f,0.0648867f,0.0918925f},{0.0564465f,0.0658647f,0.0918925f}, - {0.0548845f,0.0667443f,0.0918925f},{0.041708f,0.0822379f,0.0918925f},{0.0414155f,0.082745f,0.0918925f}, - {0.0400177f,0.0837612f,0.0918925f},{0.0388615f,0.0838832f,0.0918925f},{0.039447f,0.0838826f,0.0918925f}, - {0.0382891f,0.0837618f,0.0918925f},{0.0368906f,0.0827462f,0.0918925f},{-0.0388582f,-0.078321f,0.0918925f}, - {-0.0382875f,-0.0784424f,0.0918925f},{-0.0394436f,-0.0783204f,0.0918925f},{-0.0405497f,-0.0786793f,0.0918925f}, - {0.0303817f,-0.0933553f,0.0918925f},{-0.0499065f,-0.0151392f,0.0918925f},{0.0392635f,0.0697861f,0.0918925f}, - {-0.0357264f,-0.0146841f,0.0918925f},{-0.0374861f,-0.0143415f,0.0918925f},{-0.0231477f,-0.021246f,0.0918925f}, - {-0.0245128f,-0.0200839f,0.0918925f},{0.0374855f,-0.0143416f,0.0918925f},{0.0410525f,-0.0139975f,0.0918925f}, - {0.0945295f,0.0257644f,0.0918925f},{0.0937839f,0.0280757f,0.0918925f},{0.0933553f,0.0303817f,0.0918925f}, - {0.0671457f,0.0540841f,0.0918925f},{0.0663166f,0.0556734f,0.0918925f},{0.0532694f,0.0675221f,0.0918925f}, - {0.0593856f,0.0638145f,0.0918925f},{-0.0195369f,0.0586764f,0.0918925f},{0.019537f,0.0586762f,0.0918925f}, - {-0.0185112f,0.0572063f,0.0918925f},{0.0185115f,0.0572057f,0.0918925f},{-0.0154219f,0.0507578f,0.0918925f}, - {0.0154086f,0.0507615f,0.0918925f},{-0.0148999f,0.0490431f,0.0918925f},{0.0145004f,0.0472947f,0.0918925f}, - {-0.0144962f,0.0472966f,0.0918925f},{0.0148988f,0.0490425f,0.0918925f},{0.0140402f,0.043741f,0.0918925f}, - {-0.0671452f,0.0540833f,0.0918925f},{-0.0678699f,0.0524438f,0.0918925f},{-0.0481725f,-0.0146844f,0.0918925f}, - {-0.0274519f,0.0658647f,0.0918925f},{-0.0245128f,0.0638145f,0.0918925f},{-0.0213792f,0.0969955f,0.0918925f}, - {-0.0231477f,0.0626525f,0.0918925f},{-0.0218599f,0.0614053f,0.0918925f},{-0.0532697f,0.0675214f,0.0918925f}, - {-0.0548849f,0.0667435f,0.0918925f},{-0.0579493f,0.0648858f,0.0918925f},{-0.0607509f,0.0626516f,0.0918925f}, - {-0.0663164f,0.0556727f,0.0918925f},{-0.0684898f,0.0507615f,0.0918925f},{-0.0689996f,0.0490425f,0.0918925f}, - {-0.0696843f,0.0455253f,0.0918925f},{-0.069398f,0.0472947f,0.0918925f},{-0.0698582f,0.043741f,0.0918925f}, - {-0.21663f,0.00133028f,0.0918925f},{-0.217061f,0.00139831f,0.0918925f},{-0.218391f,0.000431293f,0.0918925f}, - {-0.218186f,0.000817561f,0.0918925f},{-0.21594f,0.000819718f,0.0918925f},{-0.215737f,0.000430548f,0.0918925f}, - {-0.216241f,0.00113282f,0.0918925f},{-0.217881f,0.00112774f,0.0918925f},{-0.217494f,0.00132937f,0.0918925f}, - {0.00112134f,-0.217837f,0.0918925f},{0.00082033f,-0.217524f,0.0918925f},{0.000431051f,-0.217326f,0.0918925f}, - {3.13209e-017f,-0.217258f,0.0918925f},{-0.000819963f,-0.217529f,0.0918925f},{-0.000433147f,-0.217327f,0.0918925f}, - {-0.0013304f,-0.218225f,0.0918925f},{-0.00112493f,-0.217839f,0.0918925f},{-0.000819963f,-0.254817f,0.0918925f}, - {-0.00112493f,-0.255127f,0.0918925f},{-0.0141453f,-0.247143f,0.0918925f},{0.00082033f,-0.254812f,0.0918925f}, - {0.0128186f,-0.285984f,0.0918925f},{0.0220158f,-0.269418f,0.0918925f},{0.0133893f,-0.286105f,0.0918925f}, - {-0.0181265f,-0.262471f,0.0918925f},{0.00445839f,-0.288143f,0.0918925f},{0.00528033f,-0.287247f,0.0918925f}, - {0.0181266f,-0.262471f,0.0918925f},{0.247143f,-0.0141453f,0.0918925f},{0.243259f,-0.0139831f,0.0918925f}, - {0.25415f,0.00132937f,0.0918925f},{0.253763f,0.00112774f,0.0918925f},{0.247144f,0.0141452f,0.0918925f}, - {0.253458f,0.000817561f,0.0918925f},{0.000431051f,0.219987f,0.0918925f},{0.0139831f,0.243259f,0.0918925f}, - {0.00082033f,0.219789f,0.0918925f},{0.00112134f,0.219476f,0.0918925f},{0.00132352f,0.219087f,0.0918925f}, - {2.65983e-017f,0.220055f,0.0918925f},{-0.000819963f,0.219784f,0.0918925f},{-0.000433147f,0.219986f,0.0918925f}, - {-0.0013304f,0.219088f,0.0918925f},{-0.00112493f,0.219474f,0.0918925f},{-0.0154693f,0.254936f,0.0918925f}, - {-0.000433147f,0.257274f,0.0918925f},{5.35539e-017f,0.279848f,0.0918925f},{-0.0220158f,0.269418f,0.0918925f}, - {-0.019928f,0.266037f,0.0918925f},{0.216628f,0.00132937f,0.0918925f},{0.216241f,0.00112774f,0.0918925f}, - {0.217881f,0.00113282f,0.0918925f},{0.218182f,0.000819718f,0.0918925f},{0.217061f,0.00139831f,0.0918925f}, - {0.217492f,0.00133028f,0.0918925f},{0.215936f,0.000817561f,0.0918925f},{0.215731f,0.000431293f,0.0918925f}, - {-0.255403f,0.00112774f,0.0918925f},{-0.286029f,-0.0119424f,0.0918925f},{-0.286209f,-0.0113881f,0.0918925f}, - {-0.27258f,-0.024361f,0.0918925f},{-0.269418f,-0.0220158f,0.0918925f},{-0.266037f,-0.019928f,0.0918925f}, - {0.0111271f,-0.31139f,0.0918925f},{0.0106546f,-0.311733f,0.0918925f},{0.00299304f,-0.322408f,0.0918925f}, - {0.0147871f,-0.312169f,0.0918925f},{0.0143968f,-0.311736f,0.0918925f},{0.0174528f,-0.295225f,0.0918925f}, - {0.0124909f,-0.304719f,0.0918925f},{0.00978928f,-0.313229f,0.0918925f},{0.00204265f,-0.296082f,0.0918925f}, - {-0.000418664f,-0.295711f,0.0918925f},{0.00461423f,-0.29814f,0.0918925f},{0.0116607f,-0.311153f,0.0918925f}, - {0.0147871f,-0.287121f,0.0918925f},{0.0116607f,-0.286104f,0.0918925f},{0.0111271f,-0.286342f,0.0918925f}, - {0.0106546f,-0.286685f,0.0918925f},{-0.0102613f,-0.287121f,0.0918925f},{-0.00409889f,-0.297485f,0.0918925f}, - {-0.0106515f,-0.286688f,0.0918925f},{-0.0111254f,-0.286343f,0.0918925f},{-0.00606332f,-0.283836f,0.0918925f}, - {-0.0243605f,-0.27258f,0.0918925f},{-0.0139213f,-0.286342f,0.0918925f},{-0.0143937f,-0.286685f,0.0918925f}, - {-0.0368031f,-0.2953f,0.0918925f},{-0.0371496f,-0.298086f,0.0918925f},{-0.01512f,-0.295447f,0.0918925f}, - {-0.0150786f,-0.312674f,0.0918925f},{-0.0174528f,-0.307352f,0.0918925f},{-0.0147862f,-0.312168f,0.0918925f}, - {-0.0128153f,-0.311031f,0.0918925f},{-0.00534277f,-0.299641f,0.0918925f},{-0.00348695f,-0.296916f,0.0918925f}, - {0.00978928f,-0.288181f,0.0918925f},{-0.002796f,-0.296445f,0.0918925f},{-0.0116591f,-0.286105f,0.0918925f}, - {0.00996978f,-0.287626f,0.0918925f},{-0.00299304f,-0.280169f,0.0918925f},{-0.0133877f,-0.286104f,0.0918925f}, - {-0.0220151f,-0.269417f,0.0918925f},{-0.0199275f,-0.266037f,0.0918925f},{-0.00528033f,-0.31533f,0.0918925f}, - {-0.0097888f,-0.313231f,0.0918925f},{-0.00445839f,-0.314434f,0.0918925f},{-0.0133877f,-0.311153f,0.0918925f}, - {-0.0143937f,-0.311733f,0.0918925f},{-0.0372859f,-0.30089f,0.0918925f},{-0.0369213f,-0.306489f,0.0918925f}, - {-0.036428f,-0.309253f,0.0918925f},{-0.0348205f,-0.314628f,0.0918925f},{0.312416f,-0.0101017f,0.0918925f}, - {0.311943f,-0.0104447f,0.0918925f},{0.305379f,-0.0205661f,0.0918925f},{0.311371f,-0.0358991f,0.0918925f}, - {0.300444f,-0.0372784f,0.0918925f},{0.314002f,-0.035054f,0.0918925f},{0.33733f,-0.00956509f,0.0918925f}, - {0.335522f,-0.0147828f,0.0918925f},{0.336523f,-0.0122076f,0.0918925f},{0.315212f,-0.0101024f,0.0918925f}, - {0.316409f,-0.00584159f,0.0918925f},{0.337939f,-0.00686983f,0.0918925f},{0.313779f,-0.00343053f,0.0918925f}, - {0.311078f,-0.0119409f,0.0918925f},{0.287001f,-0.0344412f,0.0918925f},{0.28959f,-0.035405f,0.0918925f}, - {0.296008f,-0.0140418f,0.0918925f},{0.2915f,-0.0119424f,0.0918925f},{0.29683f,-0.0131452f,0.0918925f}, - {0.300232f,-0.012073f,0.0918925f},{0.299018f,-0.0121253f,0.0918925f},{0.286502f,-0.0108798f,0.0918925f}, - {0.286029f,-0.0119409f,0.0918925f},{0.300445f,0.0372813f,0.0918925f},{0.303207f,0.0372145f,0.0918925f}, - {0.286169f,0.00584159f,0.0918925f},{0.297687f,0.0371146f,0.0918925f},{0.29942f,0.0213591f,0.0918925f}, - {0.30596f,0.0369944f,0.0918925f},{0.298493f,0.00484368f,0.0918925f},{0.290637f,0.0146009f,0.0918925f}, - {0.2915f,0.013106f,0.0918925f},{0.308687f,0.036547f,0.0918925f},{0.289591f,0.0354067f,0.0918925f}, - {0.297198f,0.0205661f,0.0918925f},{0.288473f,0.0153056f,0.0918925f},{0.275498f,0.0269304f,0.0918925f}, - {0.286502f,0.0141686f,0.0918925f},{0.303331f,0.00520701f,0.0918925f},{0.305903f,0.00314864f,0.0918925f}, - {0.318741f,0.00606332f,0.0918925f},{0.337328f,0.00956357f,0.0918925f},{0.312416f,0.0149467f,0.0918925f}, - {0.312949f,0.0151842f,0.0918925f},{0.311943f,0.0146037f,0.0918925f},{0.311372f,0.035899f,0.0918925f}, - {0.311258f,0.0136627f,0.0918925f},{0.295225f,0.0174528f,0.0918925f},{0.290163f,0.014946f,0.0918925f}, - {5.8201e-009f,0.28917f,0.0918925f},{-0.00996883f,0.2899f,0.0918925f},{-0.00528033f,0.287247f,0.0918925f}, - {-0.0097888f,0.289346f,0.0918925f},{-0.00445839f,0.288143f,0.0918925f},{-0.00584159f,0.286169f,0.0918925f}, - {-0.0128153f,0.291546f,0.0918925f},{-0.0140418f,0.306569f,0.0918925f},{-0.0211196f,0.298295f,0.0918925f}, - {-0.0197119f,0.296256f,0.0918925f},{-0.0143937f,0.315892f,0.0918925f},{-0.0139213f,0.316235f,0.0918925f}, - {-0.0150786f,0.289903f,0.0918925f},{-0.0174528f,0.295225f,0.0918925f},{-0.00534277f,0.302936f,0.0918925f}, - {0.00996978f,0.314951f,0.0918925f},{0.00978928f,0.314396f,0.0918925f},{0.00445839f,0.314434f,0.0918925f}, - {0.00528033f,0.31533f,0.0918925f},{-0.0106515f,0.315889f,0.0918925f},{-0.0097888f,0.314395f,0.0918925f}, - {0.0116607f,0.316473f,0.0918925f},{0.0111271f,0.316235f,0.0918925f},{0.0137123f,0.335965f,0.0918925f}, - {0.0110641f,0.336898f,0.0918925f},{-0.00299304f,0.322408f,0.0918925f},{0.0102622f,0.290409f,0.0918925f}, - {0.0111271f,0.291187f,0.0918925f},{0.0106546f,0.290844f,0.0918925f},{0.0199275f,0.266037f,0.0918925f}, - {0.0147871f,0.290408f,0.0918925f},{0.0143968f,0.290841f,0.0918925f},{0.0354881f,0.289845f,0.0918925f}, - {0.0174528f,0.307352f,0.0918925f},{0.0368031f,0.2953f,0.0918925f},{0.0124909f,0.297858f,0.0918925f}, - {0.00978928f,0.289348f,0.0918925f},{0.00204265f,0.306496f,0.0918925f},{0.0150796f,0.314949f,0.0918925f}, - {0.00461423f,0.304437f,0.0918925f},{0.0116607f,0.291424f,0.0918925f},{0.0205661f,0.305379f,0.0918925f}, - {0.0357253f,0.311971f,0.0918925f},{0.0337184f,0.31721f,0.0918925f},{0.0197119f,0.306322f,0.0918925f}, - {0.0211319f,0.332012f,0.0918925f},{0.0162821f,0.334835f,0.0918925f},{0.00835325f,0.33763f,0.0918925f}, - {0.00559549f,0.338155f,0.0918925f},{-0.00606332f,0.318741f,0.0918925f},{-0.0111254f,0.316235f,0.0918925f}, - {-0.290161f,-0.0101017f,0.0918925f},{-0.290634f,-0.0104447f,0.0918925f},{-0.297198f,-0.0205661f,0.0918925f}, - {-0.286501f,-0.010881f,0.0918925f},{-0.289628f,-0.00986419f,0.0918925f},{-0.288143f,-0.00445839f,0.0918925f}, - {-0.289055f,-0.00974281f,0.0918925f},{-0.286892f,-0.0104475f,0.0918925f},{-0.283836f,0.00606332f,0.0918925f}, - {-0.286029f,0.013106f,0.0918925f},{-0.288798f,-0.00343053f,0.0918925f},{-0.291499f,-0.0119409f,0.0918925f}, - {-0.299246f,0.00520701f,0.0918925f},{-0.269417f,0.0220151f,0.0918925f},{-0.296674f,0.00314864f,0.0918925f}, - {-0.287247f,-0.00528033f,0.0918925f},{-0.286169f,-0.00584159f,0.0918925f},{-0.28847f,-0.0097434f,0.0918925f}, - {-0.290634f,0.0146037f,0.0918925f},{-0.291026f,0.0141686f,0.0918925f},{-0.305387f,0.00380369f,0.0918925f}, - {-0.328493f,0.0255029f,0.0918925f},{-0.326484f,0.0274641f,0.0918925f},{-0.315682f,0.0146037f,0.0918925f}, - {-0.338471f,0.00280586f,0.0918925f},{-0.338155f,0.00559549f,0.0918925f},{-0.33763f,0.00835325f,0.0918925f}, - {-0.314434f,0.00445839f,0.0918925f},{-0.314104f,-0.00974281f,0.0918925f},{-0.306631f,0.00164777f,0.0918925f}, - {-0.304776f,0.0043727f,0.0918925f},{-0.29683f,0.0131452f,0.0918925f},{-0.31155f,0.0141674f,0.0918925f}, - {-0.304085f,0.00484368f,0.0918925f},{-0.306489f,0.0369213f,0.0918925f},{-0.309253f,0.036428f,0.0918925f}, - {-0.31721f,0.0337184f,0.0918925f},{-0.322088f,0.0309479f,0.0918925f},{-0.301289f,-0.0121187f,0.0918925f}, - {-0.306569f,-0.0140418f,0.0918925f},{-0.311077f,-0.0119424f,0.0918925f},{-0.305747f,-0.0131452f,0.0918925f}, - {-0.314676f,-0.00986419f,0.0918925f},{-0.315682f,-0.0104447f,0.0918925f},{-0.31533f,0.00528033f,0.0918925f}, - {-0.322408f,-0.00299304f,0.0918925f},{-0.321f,-0.005033f,0.0918925f},{0.314107f,-0.0097434f,0.0918925f}, - {0.313407f,5.8201e-009f,0.0918925f},{0.314678f,-0.00986481f,0.0918925f},{0.29132f,0.0136603f,0.0918925f}, - {0.316563f,0.0340163f,0.0918925f},{0.00409024f,0.280722f,0.0918925f},{-0.287366f,-0.0101024f,0.0918925f}, - {-0.28917f,5.8201e-009f,0.0918925f},{-0.287899f,-0.00986481f,0.0918925f},{-0.00409024f,-0.280722f,0.0918925f}, - {-0.00996883f,-0.287628f,0.0918925f},{0.0128186f,0.291545f,0.0918925f},{0.0348205f,0.314628f,0.0918925f}, - {0.0121187f,0.301289f,0.0918925f},{0.0133893f,0.291424f,0.0918925f},{-0.311257f,0.0136603f,0.0918925f}, - {-0.0121187f,-0.301289f,0.0918925f},{-0.00996883f,0.314949f,0.0918925f},{-0.313407f,-5.8201e-009f,0.0918925f}, - {-0.0121187f,0.301289f,0.0918925f},{0.0128186f,-0.311032f,0.0918925f},{0.0121187f,-0.301289f,0.0918925f}, - {0.0133893f,-0.311153f,0.0918925f},{0.0607507f,0.0626525f,0.0918925f} -}; -static GLfloat normals [22155][3] = { - {0.999998f,0.00196876f,-9.24455e-016f},{0.965341f,-0.260991f,9.65861e-017f},{0.964306f,0.26479f,-7.4874e-016f}, - {0.865368f,0.501136f,0.0f},{0.867335f,-0.497725f,0.0f},{0.506909f,-0.862f,-5.55448e-015f}, - {0.258065f,-0.966128f,2.28729e-015f},{0.718867f,-0.695147f,-9.80072e-016f},{0.873911f,-0.486086f,0.0f}, - {0.258065f,-0.966128f,-3.05132e-015f},{7.00858e-015f,-1.0f,0.0f},{1.40172e-014f,-1.0f,0.0f}, - {0.999712f,-0.0239869f,-3.77413e-016f},{0.956928f,-0.290324f,-1.0624e-015f},{0.969751f,0.244096f,7.01312e-016f}, - {0.873911f,0.486086f,0.0f},{0.849592f,-0.52744f,0.0f},{0.499432f,-0.866353f,8.15683e-015f}, - {0.254108f,-0.967176f,-5.91491e-015f},{0.709621f,-0.704584f,7.54622e-015f},{0.865368f,-0.501136f,0.0f}, - {0.0f,-1.0f,0.0f},{1.18424e-015f,1.0f,1.4803e-015f},{0.194654f,0.980872f,-4.34694e-015f}, - {-1.18424e-015f,1.0f,1.4803e-015f},{-0.384009f,0.923329f,-2.06797e-015f},{-0.382179f,0.924088f,-2.06073e-015f}, - {-0.196168f,0.98057f,-1.46061e-015f},{-0.194653f,0.980872f,-5.09094e-015f},{-0.555293f,0.831655f,2.44935e-015f}, - {-0.707075f,0.707139f,2.06083e-015f},{-0.707765f,0.706447f,-1.38061e-015f},{-0.831545f,0.555458f,-3.09244e-016f}, - {-0.831851f,0.554999f,-1.04211e-015f},{-0.556611f,0.830773f,-3.07448e-016f},{-1.0f,-1.4803e-016f,0.0f}, - {-0.980825f,0.19489f,6.04239e-016f},{-0.98085f,0.194766f,-2.58442e-016f},{-0.924075f,0.382212f,1.80893e-016f}, - {-0.923954f,0.382504f,2.12633e-015f},{-1.0f,-1.66533e-016f,0.0f},{0.196168f,0.98057f,-1.81492e-017f}, - {0.382179f,0.924088f,2.66513e-015f},{0.384009f,0.923329f,-2.7336e-015f},{0.556611f,0.830773f,4.91917e-015f}, - {0.555293f,0.831655f,-5.13749e-017f},{0.707766f,0.706447f,-2.0915e-015f},{0.707075f,0.707139f,0.0f}, - {0.831545f,0.555458f,1.64449e-015f},{0.831851f,0.554999f,3.13233e-015f},{0.924075f,0.382212f,2.26315e-015f}, - {0.923954f,0.382504f,2.09391e-015f},{0.98085f,0.194766f,1.81494e-016f},{0.980825f,0.19489f,0.0f}, - {1.0f,7.40149e-017f,0.0f},{0.194654f,0.980872f,-5.22038e-015f},{-0.384009f,0.923329f,-2.90287e-015f}, - {-0.382179f,0.924088f,-2.05189e-015f},{-0.196168f,0.98057f,-1.16115e-015f},{-0.194653f,0.980872f,-5.08194e-015f}, - {-0.555293f,0.831655f,2.46219e-015f},{-0.707075f,0.707139f,1.9627e-015f},{-0.707765f,0.706447f,-1.17598e-015f}, - {-0.831545f,0.555458f,4.25627e-015f},{-0.831851f,0.554999f,-1.00122e-015f},{-0.556611f,0.830773f,1.04527e-016f}, - {-1.0f,2.36848e-015f,0.0f},{-0.980825f,0.19489f,-1.05575e-015f},{-0.98085f,0.194766f,-2.81743e-015f}, - {-0.924075f,0.382212f,4.08156e-015f},{-0.923954f,0.382504f,5.81678e-015f},{0.196168f,0.98057f,0.0f}, - {0.382179f,0.924088f,3.86733e-015f},{0.556611f,0.830773f,3.27127e-015f},{0.555293f,0.831655f,1.644e-015f}, - {0.707075f,0.707139f,2.09336e-015f},{0.831545f,0.555458f,4.10635e-015f},{0.831851f,0.554999f,5.74903e-015f}, - {0.923954f,0.382504f,7.73578e-015f},{0.98085f,0.194766f,0.0f},{0.980825f,0.19489f,-5.80765e-015f}, - {1.0f,1.4803e-016f,0.0f},{1.0f,0.0f,0.0f},{2.36848e-015f,1.0f,2.96059e-015f}, - {0.194654f,0.980872f,-2.90396e-015f},{-2.36848e-015f,1.0f,2.96059e-015f},{-0.384009f,0.923329f,6.90506e-015f}, - {-0.382179f,0.924088f,1.3856e-015f},{-0.196168f,0.98057f,2.91215e-015f},{-0.194653f,0.980872f,-1.46099e-015f}, - {-0.555293f,0.831655f,-9.90657e-015f},{-0.707075f,0.707139f,4.01536e-015f},{-0.707765f,0.706447f,-3.98705e-015f}, - {-0.831545f,0.555458f,-4.559e-015f},{-0.831851f,0.554999f,-1.44976e-015f},{-0.556611f,0.830773f,1.79963e-015f}, - {-1.0f,-7.40149e-017f,0.0f},{-0.980825f,0.19489f,-6.37078e-016f},{-0.98085f,0.194766f,4.68159e-016f}, - {-0.924075f,0.382212f,-2.81417e-015f},{-0.923954f,0.382504f,2.58471e-015f},{-1.0f,-8.32667e-017f,0.0f}, - {0.196168f,0.98057f,9.0746e-018f},{0.382179f,0.924088f,-5.43634e-015f},{0.384009f,0.923329f,0.0f}, - {0.556611f,0.830773f,9.78684e-015f},{0.555293f,0.831655f,0.0f},{0.707766f,0.706447f,-4.11753e-015f}, - {0.707075f,0.707139f,-4.1871e-015f},{0.831545f,0.555458f,9.86691e-015f},{0.831851f,0.554999f,-3.13233e-015f}, - {0.924075f,0.382212f,0.0f},{0.923954f,0.382504f,1.70966e-016f},{0.98085f,0.194766f,-1.81494e-016f}, - {0.980825f,0.19489f,-1.81489e-016f},{0.194654f,0.980872f,-2.03953e-015f},{-0.384009f,0.923329f,6.83401e-015f}, - {-0.382179f,0.924088f,1.08506e-015f},{-0.196168f,0.98057f,2.61268e-015f},{-0.194653f,0.980872f,-1.45198e-015f}, - {-0.555293f,0.831655f,-1.12873e-014f},{-0.707075f,0.707139f,6.67295e-015f},{-0.707765f,0.706447f,-5.10024e-015f}, - {-0.831545f,0.555458f,-7.65076e-015f},{-0.831851f,0.554999f,2.55421e-016f},{-0.556611f,0.830773f,3.2866e-015f}, - {-1.0f,0.0f,0.0f},{-0.980825f,0.19489f,-4.16548e-015f},{-0.98085f,0.194766f,-4.00449e-015f}, - {-0.924075f,0.382212f,-2.98516e-015f},{-0.923954f,0.382504f,2.15596e-015f},{0.196168f,0.98057f,-1.16155e-015f}, - {0.382179f,0.924088f,-4.34023e-015f},{0.384009f,0.923329f,-1.1369e-015f},{0.556611f,0.830773f,8.19043e-015f}, - {0.707766f,0.706447f,-6.27842e-015f},{0.831545f,0.555458f,1.23288e-014f},{0.831851f,0.554999f,-5.74903e-015f}, - {0.924075f,0.382212f,5.47162e-015f},{0.923954f,0.382504f,0.0f},{1.0f,-2.36848e-015f,0.0f}, - {-1.11022e-016f,1.0f,-2.46519e-030f},{0.194654f,0.980872f,9.51248e-016f},{-8.55798e-017f,1.0f,-2.50285e-030f}, - {-0.384009f,0.923329f,2.80418e-017f},{-0.382179f,0.924088f,-4.08548e-016f},{-0.196168f,0.98057f,-4.24234e-016f}, - {-0.194653f,0.980872f,-2.57762e-017f},{-0.555293f,0.831655f,-1.38085e-015f},{-0.707075f,0.707139f,2.68038e-015f}, - {-0.707765f,0.706447f,-1.1513e-015f},{-0.831545f,0.555458f,-3.26839e-015f},{-0.831851f,0.554999f,1.655e-015f}, - {-0.556611f,0.830773f,1.3746e-015f},{-0.980825f,0.19489f,-3.69749e-015f},{-0.98085f,0.194766f,-4.67541e-015f}, - {-0.924075f,0.382212f,-4.42657e-017f},{-0.923954f,0.382504f,-4.39043e-016f},{0.196168f,0.98057f,-1.23359e-015f}, - {0.382179f,0.924088f,1.04983e-015f},{0.384009f,0.923329f,-1.10337e-015f},{0.556611f,0.830773f,-1.58124e-015f}, - {0.555293f,0.831655f,1.76503e-015f},{0.707766f,0.706447f,-2.16446e-015f},{0.707075f,0.707139f,-1.46822e-016f}, - {0.831545f,0.555458f,2.45291e-015f},{0.831851f,0.554999f,-2.41485e-015f},{0.924075f,0.382212f,5.47867e-015f}, - {0.923954f,0.382504f,-1.28171e-017f},{0.98085f,0.194766f,-4.03904e-018f},{0.980825f,0.19489f,-5.81213e-015f}, - {-3.70074e-017f,1.0f,-1.71194e-033f},{0.194654f,0.980872f,9.00454e-018f},{-4.16334e-017f,1.0f,-1.92593e-033f}, - {-0.384009f,0.923329f,-1.03189e-016f},{-0.382179f,0.924088f,-9.4335e-017f},{-0.196168f,0.98057f,-9.07461e-018f}, - {-0.194653f,0.980872f,-9.97534e-017f},{-0.555293f,0.831655f,-8.97873e-017f},{-0.707075f,0.707139f,-8.87483e-021f}, - {-0.707765f,0.706447f,5.72963e-017f},{-0.831545f,0.555458f,6.3335e-017f},{-0.831851f,0.554999f,-1.05011e-016f}, - {-0.556611f,0.830773f,-3.8431e-017f},{-0.980825f,0.19489f,1.298e-016f},{-0.98085f,0.194766f,8.73054e-017f}, - {-0.924075f,0.382212f,4.8286e-017f},{-0.923954f,0.382504f,-4.12339e-017f},{0.196168f,0.98057f,7.25718e-017f}, - {0.382179f,0.924088f,1.47781e-017f},{0.556611f,0.830773f,-7.6862e-017f},{0.707766f,0.706447f,0.0f}, - {0.707075f,0.707139f,-6.54235e-017f},{0.831545f,0.555458f,0.0f},{0.831851f,0.554999f,-1.53923e-016f}, - {0.923954f,0.382504f,-1.53271e-016f},{0.961369f,-0.275264f,-5.33819e-015f},{0.939639f,-0.342168f,2.53256e-016f}, - {0.978324f,-0.207082f,-3.06688e-015f},{0.990413f,-0.138135f,5.26556e-015f},{0.997621f,-0.068939f,2.88059e-015f}, - {1.0f,-8.02768e-016f,0.0f},{0.913294f,-0.4073f,-1.80878e-015f},{0.882564f,-0.470193f,-2.7841e-015f}, - {0.847736f,-0.530418f,0.0f},{0.809153f,-0.587599f,0.0f},{-0.0920911f,-0.995751f,0.0f}, - {-0.0918041f,-0.995777f,0.0f},{0.0605578f,-0.998165f,0.0f},{-0.241953f,-0.970288f,0.0f}, - {-0.242471f,-0.970159f,0.0f},{-0.387096f,-0.92204f,0.0f},{-0.386523f,-0.92228f,0.0f}, - {-0.522668f,-0.852537f,0.0f},{-0.522154f,-0.852851f,0.0f},{-0.645678f,-0.76361f,0.0f}, - {-0.646072f,-0.763276f,0.0f},{-0.754469f,-0.656336f,0.0f},{-0.754213f,-0.65663f,0.0f}, - {-0.84535f,-0.534213f,0.0f},{-0.845231f,-0.5344f,0.0f},{-0.916608f,-0.399787f,0.0f}, - {0.0602701f,-0.998182f,0.0f},{0.211672f,-0.977341f,0.0f},{0.21115f,-0.977454f,0.0f}, - {0.357746f,-0.933819f,0.0f},{0.357166f,-0.934041f,0.0f},{0.494924f,-0.868936f,0.0f}, - {0.495448f,-0.868638f,0.0f},{0.621613f,-0.783324f,0.0f},{0.621208f,-0.783646f,0.0f}, - {0.733337f,-0.679865f,0.0f},{0.733072f,-0.680151f,0.0f},{0.82791f,-0.560861f,0.0f}, - {0.828034f,-0.560677f,0.0f},{0.903508f,-0.428571f,0.0f},{-0.657856f,-0.753144f,0.0f}, - {-0.520449f,-0.853893f,0.0f},{-0.657957f,-0.753056f,0.0f},{-0.776263f,-0.63041f,0.0f}, - {-0.776125f,-0.630579f,0.0f},{-0.872027f,-0.489458f,0.0f},{-0.871886f,-0.489709f,0.0f}, - {-0.942365f,-0.334588f,0.0f},{-0.942433f,-0.334396f,0.0f},{-0.985518f,-0.169572f,0.0f}, - {-0.985476f,-0.169813f,0.0f},{-1.0f,6.88373e-017f,0.0f},{-0.520564f,-0.853823f,0.0f}, - {-0.367913f,-0.92986f,0.0f},{-0.368116f,-0.92978f,0.0f},{-0.204975f,-0.978767f,0.0f}, - {-0.204694f,-0.978826f,0.0f},{-0.0356397f,-0.999365f,0.0f},{-0.0358431f,-0.999357f,0.0f}, - {0.134513f,-0.990912f,0.0f},{0.13427f,-0.990945f,0.0f},{0.300596f,-0.953752f,0.0f}, - {-0.792435f,-0.609957f,0.0f},{-0.792259f,-0.610185f,0.0f},{-0.69035f,-0.723475f,0.0f}, - {-0.87573f,-0.482801f,0.0f},{-0.875988f,-0.482333f,0.0f},{-0.939116f,-0.343601f,0.0f}, - {-0.938902f,-0.344184f,0.0f},{-0.980413f,-0.196955f,0.0f},{-0.980294f,-0.197546f,0.0f}, - {-0.998928f,-0.0463011f,0.0f},{-0.998951f,-0.0457846f,0.0f},{-0.994322f,0.106415f,0.0f}, - {-0.994363f,0.106027f,0.0f},{-0.966649f,0.256106f,0.0f},{-0.966705f,0.255892f,0.0f}, - {-0.916608f,0.399787f,0.0f},{-0.690559f,-0.723276f,0.0f},{-0.57228f,-0.820058f,0.0f}, - {-0.572718f,-0.819753f,0.0f},{-0.441003f,-0.897506f,0.0f},{-0.44156f,-0.897232f,0.0f}, - {-0.300123f,-0.953901f,0.0f},{-0.299547f,-0.954081f,0.0f},{-0.151186f,-0.988505f,0.0f}, - {-0.151697f,-0.988427f,0.0f},{0.00064926f,-1.0f,0.0f},{0.000259834f,-1.0f,0.0f}, - {0.152209f,-0.988348f,0.0f},{0.152428f,-0.988315f,0.0f},{0.961369f,-0.275264f,1.42615e-015f}, - {0.939639f,-0.342168f,-2.66114e-015f},{0.978324f,-0.207082f,-4.59815e-016f},{0.990413f,-0.138135f,-2.85529e-015f}, - {0.997621f,-0.068939f,3.76161e-015f},{1.0f,-1.00346e-016f,0.0f},{0.913294f,-0.4073f,1.05976e-015f}, - {0.847736f,-0.530418f,2.5098e-015f},{-0.968457f,-0.249181f,0.0f},{-0.983089f,-0.183127f,0.0f}, - {-0.993204f,-0.116388f,0.0f},{-0.998778f,-0.0494258f,0.0f},{-0.99985f,0.0173044f,0.0f}, - {-0.99985f,0.0173044f,0.0f},{-0.949392f,-0.314094f,0.0f},{-0.926039f,-0.377427f,0.0f}, - {-0.898602f,-0.438764f,0.0f},{-0.867335f,-0.497725f,0.0f},{-0.959254f,-0.282544f,0.0f}, - {-0.976164f,-0.217036f,0.0f},{-0.988582f,-0.150687f,0.0f},{-0.996469f,-0.0839576f,0.0f}, - {-0.99985f,-0.0173044f,0.0f},{-0.99985f,-0.0173045f,0.0f},{-0.937954f,-0.346759f,0.0f}, - {-0.912424f,-0.409245f,0.0f},{-0.882881f,-0.469596f,0.0f},{-0.849592f,-0.52744f,0.0f}, - {-0.998778f,0.0494258f,0.0f},{-0.968457f,0.249181f,0.0f},{-0.983089f,0.183127f,0.0f}, - {-0.993204f,0.116388f,0.0f},{-0.926039f,0.377427f,0.0f},{-0.898602f,0.438764f,0.0f}, - {-0.949392f,0.314094f,0.0f},{-0.867335f,0.497725f,0.0f},{-0.867335f,0.497725f,0.0f}, - {0.0f,1.0f,0.0f},{0.999811f,0.0194669f,0.0f},{0.998538f,-0.0540524f,0.0f}, - {0.995686f,0.0927821f,0.0f},{0.986243f,0.165305f,0.0f},{0.986243f,0.165305f,0.0f}, - {0.971639f,0.236469f,0.0f},{0.971639f,0.236469f,0.0f},{0.952114f,0.305744f,0.0f}, - {0.927972f,0.372649f,0.0f},{0.927972f,0.372649f,0.0f},{0.899577f,0.436762f,0.0f}, - {0.867335f,0.497725f,0.0f},{0.998538f,-0.0540524f,0.0f},{0.99188f,-0.127181f,0.0f}, - {0.99188f,-0.127181f,0.0f},{0.979932f,-0.199334f,0.0f},{0.979932f,-0.199333f,0.0f}, - {0.962874f,-0.26995f,0.0f},{0.962874f,-0.269949f,0.0f},{0.940964f,-0.338508f,0.0f}, - {0.940964f,-0.338508f,0.0f},{0.914521f,-0.404537f,0.0f},{0.914521f,-0.404537f,0.0f}, - {0.883925f,-0.467629f,0.0f},{0.883925f,-0.467629f,0.0f},{0.849592f,-0.52744f,0.0f}, - {-0.996469f,0.0839576f,0.0f},{-0.959254f,0.282544f,0.0f},{-0.976164f,0.217036f,0.0f}, - {-0.988582f,0.150687f,0.0f},{-0.912424f,0.409245f,0.0f},{-0.882881f,0.469596f,0.0f}, - {-0.937954f,0.346759f,0.0f},{-0.849592f,0.52744f,0.0f},{-0.849592f,0.52744f,0.0f}, - {9.54098e-018f,1.0f,0.0f},{0.998538f,0.0540524f,0.0f},{0.999811f,-0.0194669f,0.0f}, - {0.99188f,0.127181f,0.0f},{0.979932f,0.199334f,0.0f},{0.979932f,0.199334f,0.0f}, - {0.962874f,0.26995f,0.0f},{0.962874f,0.269949f,0.0f},{0.940964f,0.338508f,0.0f}, - {0.940964f,0.338508f,0.0f},{0.914521f,0.404537f,0.0f},{0.883925f,0.467629f,0.0f}, - {0.849592f,0.52744f,0.0f},{0.999811f,-0.0194669f,0.0f},{0.995686f,-0.0927821f,0.0f}, - {0.995686f,-0.0927822f,0.0f},{0.986243f,-0.165305f,0.0f},{0.986243f,-0.165305f,0.0f}, - {0.971639f,-0.236469f,0.0f},{0.971639f,-0.236469f,0.0f},{0.952114f,-0.305744f,0.0f}, - {0.952114f,-0.305744f,0.0f},{0.927972f,-0.372649f,0.0f},{0.927972f,-0.372649f,0.0f}, - {0.899577f,-0.436762f,0.0f},{0.899577f,-0.436762f,0.0f},{0.867335f,-0.497725f,0.0f}, - {1.0f,9.53287e-016f,0.0f},{0.997621f,0.068939f,0.0f},{0.961369f,0.275264f,3.04084e-016f}, - {0.978324f,0.207082f,-2.28333e-015f},{0.990413f,0.138135f,-2.93221e-015f},{0.882564f,0.470193f,-5.05182e-015f}, - {0.913294f,0.4073f,-3.19261e-015f},{0.939639f,0.342168f,5.36697e-016f},{0.847736f,0.530418f,6.88954e-016f}, - {0.809153f,0.587599f,0.0f},{1.0f,8.02768e-016f,0.0f},{0.94476f,0.327762f,0.0f}, - {0.882975f,0.469421f,0.0f},{0.882376f,0.470545f,0.0f},{0.797544f,0.603261f,0.0f}, - {0.797239f,0.603663f,0.0f},{0.692511f,0.721407f,0.0f},{0.692894f,0.721039f,0.0f}, - {0.571027f,0.820932f,0.0f},{0.570592f,0.821233f,0.0f},{0.434522f,0.900661f,0.0f}, - {0.434952f,0.900454f,0.0f},{0.287641f,0.957738f,0.0f},{0.288064f,0.957611f,0.0f}, - {0.133924f,0.990992f,0.0f},{0.133632f,0.991031f,0.0f},{-0.0235175f,0.999723f,0.0f}, - {-0.0237111f,0.999719f,0.0f},{-0.180697f,0.983539f,0.0f},{-0.180207f,0.983629f,0.0f}, - {-0.332466f,0.943115f,0.0f},{-0.333066f,0.942903f,0.0f},{-0.477082f,0.878859f,0.0f}, - {-0.47651f,0.879169f,0.0f},{-0.609201f,0.793016f,0.0f},{-0.608742f,0.793368f,0.0f}, - {-0.725859f,0.687844f,0.0f},{-0.726169f,0.687517f,0.0f},{-0.825089f,0.565003f,0.0f}, - {-0.82494f,0.565221f,0.0f},{-0.903508f,0.428571f,0.0f},{0.945177f,0.326559f,0.0f}, - {0.984817f,0.173596f,0.0f},{0.984729f,0.174093f,0.0f},{0.99986f,0.0167358f,0.0f}, - {0.999851f,0.0172664f,0.0f},{0.990076f,-0.140534f,0.0f},{0.99015f,-0.140011f,0.0f}, - {0.955854f,-0.293842f,0.0f},{0.955714f,-0.294298f,0.0f},{0.897616f,-0.440778f,0.0f}, - {0.897811f,-0.440382f,0.0f},{0.817237f,-0.576301f,0.0f},{0.817407f,-0.57606f,0.0f}, - {0.716558f,-0.697528f,0.0f},{0.716693f,-0.697389f,0.0f},{0.598295f,-0.801276f,0.0f}, - {0.597896f,-0.801574f,0.0f},{0.464451f,-0.885599f,0.0f},{0.465014f,-0.885303f,0.0f}, - {0.32015f,-0.947367f,0.0f},{0.319533f,-0.947575f,0.0f},{0.166733f,-0.986002f,0.0f}, - {0.167304f,-0.985905f,0.0f},{0.00983556f,-0.999952f,0.0f},{0.0102859f,-0.999947f,0.0f}, - {-0.146993f,-0.989138f,0.0f},{-0.147254f,-0.989099f,0.0f},{-0.300595f,-0.953752f,0.0f}, - {-0.300596f,-0.953752f,0.0f},{-2.28983e-015f,1.0f,8.32667e-017f},{-2.28983e-015f,1.0f,0.0f}, - {-2.22045e-015f,1.0f,0.0f},{-2.22045e-015f,1.0f,8.32667e-017f},{-0.845231f,0.5344f,0.0f}, - {-0.522153f,0.852852f,0.0f},{-0.522668f,0.852537f,0.0f},{-0.645678f,0.76361f,0.0f}, - {-0.754213f,0.65663f,0.0f},{-0.646072f,0.763276f,0.0f},{-0.754469f,0.656336f,0.0f}, - {-0.0920911f,0.995751f,0.0f},{-0.241953f,0.970288f,0.0f},{-0.0918041f,0.995777f,0.0f}, - {-0.387096f,0.92204f,0.0f},{-0.386523f,0.92228f,0.0f},{-0.242471f,0.970159f,0.0f}, - {0.211672f,0.977341f,0.0f},{0.357746f,0.933819f,0.0f},{0.357166f,0.934041f,0.0f}, - {0.0605578f,0.998165f,0.0f},{0.21115f,0.977454f,0.0f},{0.0602701f,0.998182f,0.0f}, - {0.495448f,0.868638f,0.0f},{0.621613f,0.783324f,0.0f},{0.621208f,0.783646f,0.0f}, - {0.494924f,0.868936f,0.0f},{0.733072f,0.680151f,0.0f},{0.733337f,0.679865f,0.0f}, - {0.828034f,0.560677f,0.0f},{0.82791f,0.560861f,0.0f},{0.903508f,0.428571f,0.0f}, - {-0.84535f,0.534213f,0.0f},{-0.990276f,0.13912f,4.54011e-017f},{-0.997566f,0.0697293f,1.60177e-015f}, - {-0.997566f,0.0697342f,0.0f},{-1.0f,-2.07578e-015f,-1.4803e-015f},{-1.0f,-2.02806e-015f,-1.4803e-015f}, - {-0.990274f,0.139127f,-3.66475e-016f},{-0.978162f,0.207842f,5.24967e-016f},{-0.978164f,0.207833f,3.07655e-016f}, - {-0.939737f,0.341898f,-3.47773e-016f},{-0.961291f,0.275537f,6.37877e-016f},{-0.961289f,0.275544f,-1.52727e-015f}, - {-0.939735f,0.341905f,-2.37226e-015f},{-0.883033f,0.46931f,2.77887e-015f},{-0.913605f,0.406602f,-3.38102e-016f}, - {-0.883029f,0.469318f,3.10571e-015f},{-0.848158f,0.529743f,2.82283e-015f},{-0.913609f,0.406593f,-1.20376e-015f}, - {-0.848155f,0.529748f,3.45062e-015f},{-0.809153f,0.587599f,0.0f},{-0.997566f,-0.0697342f,-4.56646e-016f}, - {-0.997566f,-0.0697293f,-4.12881e-016f},{-0.990276f,-0.13912f,-3.60924e-017f},{-0.990274f,-0.139127f,-1.04149e-015f}, - {-0.978162f,-0.207842f,4.88599e-016f},{-0.978164f,-0.207833f,1.561e-015f},{-0.961289f,-0.275544f,-1.12821e-015f}, - {-0.961291f,-0.275536f,-1.92629e-015f},{-0.939737f,-0.341898f,-9.44673e-016f},{-0.939735f,-0.341905f,1.30061e-015f}, - {-0.913605f,-0.406602f,-9.66815e-016f},{-0.913609f,-0.406593f,3.57334e-015f},{-0.883029f,-0.469318f,8.53281e-016f}, - {-0.883033f,-0.46931f,1.45735e-015f},{-0.848158f,-0.529743f,7.38791e-015f},{-0.848155f,-0.529748f,-1.31471e-015f}, - {-0.809153f,-0.587599f,0.0f},{-0.985476f,0.169813f,0.0f},{-1.0f,1.78369e-011f,0.0f}, - {-0.776263f,0.630409f,0.0f},{-0.872027f,0.489458f,0.0f},{-0.776125f,0.630579f,0.0f}, - {-0.871886f,0.489709f,0.0f},{-0.942433f,0.334396f,0.0f},{-0.942365f,0.334588f,0.0f}, - {-0.520564f,0.853823f,0.0f},{-0.367913f,0.92986f,0.0f},{-0.368116f,0.92978f,0.0f}, - {-0.657856f,0.753144f,0.0f},{-0.520449f,0.853893f,0.0f},{-0.657957f,0.753056f,0.0f}, - {-0.204975f,0.978767f,0.0f},{-0.0356397f,0.999365f,0.0f},{-0.0358431f,0.999357f,0.0f}, - {-0.204694f,0.978826f,0.0f},{0.13427f,0.990945f,0.0f},{0.134513f,0.990912f,0.0f}, - {0.300596f,0.953752f,0.0f},{-0.985518f,0.169572f,0.0f},{-0.990276f,0.13912f,3.04173e-018f}, - {-0.997566f,0.0697293f,-7.25445e-016f},{-0.997566f,0.0697342f,-1.94658e-015f},{-1.0f,-8.49997e-016f,7.40149e-016f}, - {-1.0f,-8.58945e-016f,7.40149e-016f},{-0.990274f,0.139127f,9.99482e-016f},{-0.978162f,0.207842f,-1.31242e-016f}, - {-0.978164f,0.207833f,-7.23987e-016f},{-0.939737f,0.341898f,1.07513e-015f},{-0.961291f,0.275537f,4.9842e-017f}, - {-0.961289f,0.275544f,-1.06724e-015f},{-0.939735f,0.341905f,4.42483e-016f},{-0.883033f,0.46931f,-5.00468e-016f}, - {-0.913605f,0.406602f,-9.39994e-016f},{-0.883029f,0.469318f,-3.26786e-016f},{-0.848158f,0.529743f,-3.13882e-016f}, - {-0.913609f,0.406593f,1.31525e-015f},{-0.848155f,0.529748f,3.92093e-016f},{-0.997566f,-0.0697342f,-8.82967e-016f}, - {-0.997566f,-0.0697293f,-1.86325e-015f},{-0.990276f,-0.13912f,5.61064e-016f},{-0.990274f,-0.139127f,-7.12127e-016f}, - {-0.978162f,-0.207842f,1.37216e-015f},{-0.978164f,-0.207833f,7.76865e-016f},{-0.961289f,-0.275544f,-2.27402e-016f}, - {-0.961291f,-0.275536f,5.04744e-016f},{-0.939737f,-0.341898f,1.28058e-015f},{-0.939735f,-0.341905f,-4.46437e-016f}, - {-0.913605f,-0.406602f,-3.06567e-015f},{-0.913609f,-0.406593f,-3.10301e-016f},{-0.883029f,-0.469318f,2.3739e-015f}, - {-0.883033f,-0.46931f,-1.98045e-016f},{-0.848158f,-0.529743f,-1.16918e-015f},{-0.848155f,-0.529748f,-6.74661e-017f}, - {-0.966705f,-0.255892f,0.0f},{-0.980294f,0.197546f,0.0f},{-0.980413f,0.196955f,0.0f}, - {-0.998928f,0.0463011f,0.0f},{-0.994363f,-0.106027f,0.0f},{-0.998951f,0.0457847f,0.0f}, - {-0.994322f,-0.106415f,0.0f},{-0.792435f,0.609957f,0.0f},{-0.87573f,0.482801f,0.0f}, - {-0.792259f,0.610185f,0.0f},{-0.939116f,0.343601f,0.0f},{-0.938902f,0.344184f,0.0f}, - {-0.875988f,0.482333f,0.0f},{-0.57228f,0.820058f,0.0f},{-0.441003f,0.897506f,0.0f}, - {-0.44156f,0.897232f,0.0f},{-0.69035f,0.723475f,0.0f},{-0.572718f,0.819753f,0.0f}, - {-0.690559f,0.723276f,0.0f},{-0.299547f,0.954081f,0.0f},{-0.151186f,0.988505f,0.0f}, - {-0.151697f,0.988427f,0.0f},{-0.300122f,0.953901f,0.0f},{0.000259834f,1.0f,0.0f}, - {0.000649324f,1.0f,0.0f},{0.152428f,0.988315f,0.0f},{0.152209f,0.988348f,0.0f}, - {-0.966649f,-0.256106f,0.0f},{4.44835e-016f,-1.0f,0.0f},{4.44835e-016f,-1.0f,2.25528e-032f}, - {0.882975f,-0.469421f,0.0f},{0.94476f,-0.327762f,0.0f},{0.945177f,-0.326558f,0.0f}, - {0.984729f,-0.174093f,0.0f},{0.984817f,-0.173596f,0.0f},{0.99986f,-0.0167358f,0.0f}, - {0.999851f,-0.0172664f,0.0f},{0.99015f,0.140011f,0.0f},{0.990076f,0.140534f,0.0f}, - {0.955714f,0.294298f,0.0f},{0.955854f,0.293842f,0.0f},{0.897616f,0.440778f,0.0f}, - {0.897811f,0.440382f,0.0f},{0.817407f,0.57606f,0.0f},{0.817237f,0.576301f,0.0f}, - {0.716693f,0.697389f,0.0f},{0.716558f,0.697528f,0.0f},{0.597896f,0.801574f,0.0f}, - {0.598295f,0.801276f,0.0f},{0.465014f,0.885303f,0.0f},{0.464451f,0.885599f,0.0f}, - {0.319533f,0.947575f,0.0f},{0.32015f,0.947367f,0.0f},{0.166733f,0.986002f,0.0f}, - {0.167304f,0.985905f,0.0f},{0.0102858f,0.999947f,0.0f},{0.00983533f,0.999952f,0.0f}, - {-0.147254f,0.989099f,0.0f},{-0.146993f,0.989138f,0.0f},{-0.300596f,0.953752f,0.0f}, - {0.882376f,-0.470545f,0.0f},{0.797239f,-0.603663f,0.0f},{0.797544f,-0.603261f,0.0f}, - {0.692511f,-0.721407f,0.0f},{0.692894f,-0.721039f,0.0f},{0.570593f,-0.821233f,0.0f}, - {0.571027f,-0.820931f,0.0f},{0.434952f,-0.900454f,0.0f},{0.434522f,-0.900661f,0.0f}, - {0.287641f,-0.957738f,0.0f},{0.288064f,-0.957611f,0.0f},{0.133632f,-0.991031f,0.0f}, - {0.133924f,-0.990992f,0.0f},{-0.023711f,-0.999719f,0.0f},{-0.0235174f,-0.999723f,0.0f}, - {-0.180207f,-0.983629f,0.0f},{-0.180697f,-0.983539f,0.0f},{-0.333066f,-0.942903f,0.0f}, - {-0.332466f,-0.943115f,0.0f},{-0.47651f,-0.879169f,0.0f},{-0.477082f,-0.878859f,0.0f}, - {-0.609201f,-0.793016f,0.0f},{-0.608742f,-0.793368f,0.0f},{-0.726169f,-0.687517f,0.0f}, - {-0.725859f,-0.687844f,0.0f},{-0.82494f,-0.565221f,0.0f},{-0.825089f,-0.565003f,0.0f}, - {-0.903508f,-0.428572f,0.0f},{-0.903508f,-0.428571f,0.0f},{1.0f,4.36505e-015f,0.0f}, - {0.997621f,0.068939f,-5.80505e-015f},{0.961369f,0.275264f,2.84622e-015f},{0.961369f,0.275264f,-3.04084e-016f}, - {0.978324f,0.207082f,-2.58988e-015f},{0.990413f,0.138135f,-1.46611e-015f},{0.882564f,0.470193f,-4.24366e-015f}, - {0.913294f,0.4073f,5.21937e-015f},{0.939639f,0.342168f,-2.1809e-015f},{0.847736f,0.530418f,5.12961e-015f}, - {1.0f,4.01384e-015f,0.0f},{1.0f,-1.21154e-014f,0.0f},{1.0f,-1.32168e-014f,0.0f}, - {0.985476f,0.169813f,0.0f},{0.942365f,0.334588f,0.0f},{0.985518f,0.169572f,0.0f}, - {0.871886f,0.489709f,0.0f},{0.942433f,0.334396f,0.0f},{0.872027f,0.489458f,0.0f}, - {0.776125f,0.630579f,0.0f},{0.657856f,0.753144f,0.0f},{0.776263f,0.63041f,0.0f}, - {0.520449f,0.853893f,0.0f},{0.657957f,0.753055f,0.0f},{0.520564f,0.853823f,0.0f}, - {0.367913f,0.92986f,0.0f},{0.204694f,0.978826f,0.0f},{0.368116f,0.92978f,0.0f}, - {0.0356397f,0.999365f,0.0f},{0.204975f,0.978767f,0.0f},{0.0358431f,0.999357f,0.0f}, - {-0.134513f,0.990912f,0.0f},{-0.13427f,0.990945f,0.0f},{0.985476f,-0.169813f,0.0f}, - {0.985518f,-0.169572f,0.0f},{0.942365f,-0.334588f,0.0f},{0.871886f,-0.489709f,0.0f}, - {0.942433f,-0.334396f,0.0f},{0.776125f,-0.630579f,0.0f},{0.872027f,-0.489458f,0.0f}, - {0.776263f,-0.63041f,0.0f},{0.657856f,-0.753144f,0.0f},{0.520449f,-0.853893f,0.0f}, - {0.657957f,-0.753055f,0.0f},{0.367913f,-0.92986f,0.0f},{0.520564f,-0.853823f,0.0f}, - {0.368116f,-0.92978f,0.0f},{0.204694f,-0.978826f,0.0f},{0.0356397f,-0.999365f,0.0f}, - {0.204975f,-0.978767f,0.0f},{-0.134513f,-0.990912f,0.0f},{0.0358431f,-0.999357f,0.0f}, - {-0.13427f,-0.990945f,0.0f},{-0.300595f,-0.953752f,0.0f},{-4.44089e-016f,-1.0f,0.0f}, - {0.0f,0.0f,1.0f},{0.0f,-8.67362e-019f,1.0f},{0.0f,-1.73472e-018f,1.0f}, - {0.0f,1.73472e-018f,1.0f},{0.0f,0.0f,-1.0f},{-1.0f,-1.52656e-016f,0.0f}, - {-0.980825f,-0.19489f,1.45281e-019f},{-0.98085f,-0.194766f,1.81637e-016f},{-0.707075f,-0.707139f,-1.96173e-016f}, - {-0.707766f,-0.706447f,-6.53208e-017f},{-0.831545f,-0.555458f,-8.35793e-018f},{-0.831851f,-0.554999f,-8.37482e-018f}, - {-0.924075f,-0.382212f,-1.1598e-017f},{-0.923954f,-0.382504f,6.09686e-018f},{-0.196168f,-0.98057f,3.23122e-017f}, - {-0.194654f,-0.980872f,-4.92519e-017f},{4.20972e-017f,-1.0f,-3.82702e-017f},{-0.555293f,-0.831655f,-6.45083e-017f}, - {-0.382179f,-0.924088f,-8.45327e-018f},{-0.384009f,-0.923329f,-9.41977e-017f},{0.384009f,-0.923329f,-1.56138e-016f}, - {0.555293f,-0.831655f,-1.12494e-016f},{0.382179f,-0.924088f,9.4505e-017f},{0.196168f,-0.98057f,-2.71773e-017f}, - {0.194653f,-0.980872f,6.34884e-017f},{4.54604e-017f,-1.0f,-3.82702e-017f},{0.707765f,-0.706447f,1.01783e-016f}, - {0.831545f,-0.555458f,-2.48815e-017f},{0.707075f,-0.707139f,9.34854e-017f},{0.556611f,-0.830773f,-8.68647e-017f}, - {0.831851f,-0.554999f,-8.49237e-019f},{0.923954f,-0.382504f,-9.704e-017f},{0.980825f,-0.19489f,1.73729e-016f}, - {0.924075f,-0.382212f,1.6343e-016f},{0.98085f,-0.194766f,1.40245e-016f},{1.0f,-7.40149e-017f,0.0f}, - {-0.556611f,-0.830773f,-1.92896e-016f},{-1.0f,1.4803e-016f,0.0f},{-0.980825f,-0.19489f,-4.38694e-018f}, - {-0.98085f,-0.194766f,4.18233e-018f},{-0.707075f,-0.707139f,-4.93567e-017f},{-0.707766f,-0.706447f,-2.15703e-015f}, - {-0.831545f,-0.555458f,-5.07927e-017f},{-0.831851f,-0.554999f,-4.9305e-015f},{-0.924075f,-0.382212f,3.43955e-017f}, - {-0.923954f,-0.382504f,-5.46969e-015f},{-0.196168f,-0.98057f,-3.58397e-016f},{-0.194654f,-0.980872f,-7.12354e-016f}, - {1.16112e-016f,-1.0f,-3.82702e-017f},{-0.555293f,-0.831655f,1.61234e-015f},{-0.382179f,-0.924088f,1.08551e-016f}, - {-0.384009f,-0.923329f,-1.31452e-015f},{0.384009f,-0.923329f,-3.29687e-016f},{0.555293f,-0.831655f,-1.59609e-015f}, - {0.382179f,-0.924088f,-1.27979e-015f},{0.196168f,-0.98057f,-1.20008e-015f},{0.194653f,-0.980872f,-1.9888e-016f}, - {8.70936e-017f,-1.0f,-3.82702e-017f},{0.707765f,-0.706447f,2.35803e-015f},{0.831545f,-0.555458f,3.17694e-015f}, - {0.707075f,-0.707139f,-9.84182e-016f},{0.556611f,-0.830773f,1.53785e-015f},{0.831851f,-0.554999f,1.40897e-015f}, - {0.923954f,-0.382504f,-2.22899e-015f},{0.980825f,-0.19489f,3.27834e-015f},{0.924075f,-0.382212f,3.28529e-015f}, - {0.98085f,-0.194766f,-9.75854e-016f},{1.0f,2.36848e-015f,0.0f},{-0.556611f,-0.830773f,1.67042e-015f}, - {-0.980825f,-0.19489f,0.0f},{-0.98085f,-0.194766f,0.0f},{-0.707075f,-0.707139f,1.25613e-014f}, - {-0.707766f,-0.706447f,-6.27842e-015f},{-0.831545f,-0.555458f,0.0f},{-0.831851f,-0.554999f,-4.92555e-015f}, - {-0.924075f,-0.382212f,0.0f},{-0.923954f,-0.382504f,-5.47091e-015f},{-0.196168f,-0.98057f,-2.90387e-016f}, - {-0.194654f,-0.980872f,2.32767e-015f},{-2.36848e-015f,-1.0f,5.92119e-015f},{-0.555293f,-0.831655f,1.644e-015f}, - {-0.382179f,-0.924088f,0.0f},{-0.384009f,-0.923329f,-1.1369e-015f},{0.384009f,-0.923329f,-1.65103e-015f}, - {0.555293f,-0.831655f,-4.10619e-015f},{0.382179f,-0.924088f,5.70815e-015f},{0.196168f,-0.98057f,-1.30674e-015f}, - {0.194653f,-0.980872f,4.0678e-015f},{2.2084e-031f,-1.0f,5.92119e-015f},{0.707765f,-0.706447f,1.05014e-015f}, - {0.831545f,-0.555458f,1.1685e-014f},{0.707075f,-0.707139f,-5.88803e-015f},{0.556611f,-0.830773f,8.27016e-016f}, - {0.831851f,-0.554999f,2.82305e-015f},{0.923954f,-0.382504f,-2.11639e-015f},{0.980825f,-0.19489f,1.50995e-015f}, - {0.924075f,-0.382212f,3.07935e-015f},{0.98085f,-0.194766f,-2.25716e-015f},{-0.556611f,-0.830773f,1.6479e-015f}, - {-0.707075f,-0.707139f,1.24959e-014f},{-0.707766f,-0.706447f,-4.18301e-015f},{-0.831851f,-0.554999f,1.53923e-016f}, - {-0.924075f,-0.382212f,1.70988e-016f},{-0.923954f,-0.382504f,-1.70966e-016f},{-0.196168f,-0.98057f,0.0f}, - {-0.194654f,-0.980872f,2.89496e-015f},{-0.555293f,-0.831655f,5.13749e-017f},{-0.382179f,-0.924088f,-3.53586e-017f}, - {-0.384009f,-0.923329f,-3.5528e-017f},{0.384009f,-0.923329f,-1.34904e-015f},{0.555293f,-0.831655f,-2.51357e-015f}, - {0.382179f,-0.924088f,6.82195e-015f},{0.196168f,-0.98057f,9.07461e-018f},{0.194653f,-0.980872f,4.37396e-015f}, - {0.707765f,-0.706447f,-1.17623e-015f},{0.831545f,-0.555458f,8.7231e-015f},{0.707075f,-0.707139f,-4.93948e-015f}, - {0.556611f,-0.830773f,-6.85704e-016f},{0.831851f,-0.554999f,1.51229e-015f},{0.923954f,-0.382504f,1.13336e-017f}, - {0.980825f,-0.19489f,-1.84175e-015f},{0.924075f,-0.382212f,-4.11823e-017f},{0.98085f,-0.194766f,-1.37362e-015f}, - {-0.556611f,-0.830773f,-5.14968e-017f},{-1.0f,-2.36848e-015f,0.0f},{-0.980825f,-0.19489f,1.15398e-015f}, - {-0.98085f,-0.194766f,-5.8078e-015f},{-0.707075f,-0.707139f,-4.18672e-015f},{-0.707766f,-0.706447f,-3.90231e-018f}, - {-0.831545f,-0.555458f,-1.64449e-015f},{-0.831851f,-0.554999f,-1.64313e-015f},{-0.923954f,-0.382504f,0.0f}, - {-0.194654f,-0.980872f,1.16384e-015f},{-1.18424e-015f,-1.0f,2.96059e-015f},{-0.555293f,-0.831655f,-4.92439e-015f}, - {-0.382179f,-0.924088f,-3.86733e-015f},{-0.384009f,-0.923329f,0.0f},{0.384009f,-0.923329f,7.37719e-016f}, - {0.555293f,-0.831655f,6.15548e-015f},{0.382179f,-0.924088f,-1.29612e-015f},{0.196168f,-0.98057f,2.90388e-016f}, - {0.194653f,-0.980872f,8.70064e-016f},{1.1042e-031f,-1.0f,2.96059e-015f},{0.707765f,-0.706447f,5.22145e-016f}, - {0.831545f,-0.555458f,-4.18055e-015f},{0.707075f,-0.707139f,-2.09354e-015f},{0.556611f,-0.830773f,-3.39113e-015f}, - {0.831851f,-0.554999f,3.13065e-015f},{0.923954f,-0.382504f,-1.37855e-015f},{0.980825f,-0.19489f,1.62549e-015f}, - {0.924075f,-0.382212f,4.51372e-015f},{0.98085f,-0.194766f,-1.82655e-015f},{1.0f,-1.4803e-016f,0.0f}, - {-0.556611f,-0.830773f,0.0f},{-0.98085f,-0.194766f,1.81494e-016f},{-0.707075f,-0.707139f,-6.54176e-017f}, - {-0.707766f,-0.706447f,2.0915e-015f},{-0.196168f,-0.98057f,-9.0746e-018f},{-0.194654f,-0.980872f,1.45198e-015f}, - {-0.382179f,-0.924088f,-2.77121e-015f},{0.384009f,-0.923329f,-7.36693e-016f},{0.555293f,-0.831655f,6.1298e-015f}, - {0.382179f,-0.924088f,7.10482e-016f},{0.196168f,-0.98057f,0.0f},{0.194653f,-0.980872f,7.25991e-016f}, - {0.707765f,-0.706447f,1.02144e-015f},{0.831545f,-0.555458f,-2.93013e-016f},{0.707075f,-0.707139f,-1.89729e-015f}, - {0.556611f,-0.830773f,-1.57586e-015f},{0.831851f,-0.554999f,1.11762e-015f},{0.923954f,-0.382504f,-1.18487e-015f}, - {0.980825f,-0.19489f,-5.42824e-018f},{0.924075f,-0.382212f,-3.75468e-016f},{0.98085f,-0.194766f,1.1167e-015f}, - {0.964306f,-0.26479f,-8.54143e-016f},{0.965341f,0.260991f,-9.92332e-016f},{0.999998f,-0.00196876f,9.33927e-016f}, - {-0.801458f,-0.598051f,5.32077e-015f},{-0.917689f,-0.397299f,-1.49105e-015f},{-0.917616f,-0.397468f,-6.24691e-015f}, - {-0.801348f,-0.598198f,-1.4703e-015f},{-0.641892f,-0.766795f,-2.89037e-015f},{-0.642216f,-0.766524f,1.1573e-014f}, - {-0.230441f,-0.973086f,-3.46847e-015f},{-0.448409f,-0.893828f,8.3968e-015f},{-0.448005f,-0.894031f,-2.52105e-015f}, - {-0.230122f,-0.973162f,-4.53038e-015f},{-0.98448f,-0.175498f,-1.45732e-015f},{-0.998433f,0.0559597f,2.95596e-015f}, - {-0.984554f,-0.175082f,-1.87817e-015f},{-0.998408f,0.0564113f,2.28784e-015f},{-0.958688f,0.28446f,3.99223e-015f}, - {-0.958595f,0.284774f,3.98982e-015f},{0.718867f,0.695147f,4.38213e-015f},{0.718867f,0.695147f,-2.66034e-016f}, - {0.258065f,0.966128f,4.76769e-016f},{-1.40172e-014f,1.0f,0.0f},{0.506909f,0.862f,6.5491e-015f}, - {-2.10257e-014f,1.0f,0.0f},{0.969751f,-0.244096f,-3.5888e-016f},{0.956928f,0.290324f,-2.78281e-016f}, - {0.999712f,0.0239869f,-1.31722e-016f},{-0.925087f,0.379756f,3.80183e-015f},{-0.810449f,0.58581f,4.06854e-015f}, - {-0.810565f,0.585648f,-2.66995e-016f},{-0.925162f,0.379572f,1.89621e-015f},{-0.988265f,0.152747f,3.03551e-015f}, - {-0.996526f,-0.0832844f,-3.77295e-016f},{-0.996566f,-0.0828045f,-1.86673e-015f},{-0.988334f,0.152299f,-2.57409e-015f}, - {-0.949486f,-0.313809f,-5.48639e-015f},{-0.949377f,-0.314139f,1.66453e-015f},{-0.651023f,0.759058f,-4.17468e-015f}, - {-0.455278f,0.890349f,1.28807e-015f},{-0.650679f,0.759353f,-3.53307e-015f},{-0.45485f,0.890568f,-1.28999e-015f}, - {-0.234187f,0.972192f,1.38667e-015f},{-0.233849f,0.972273f,0.0f},{-5.08163e-016f,1.0f,0.0f}, - {-0.810565f,-0.585648f,-2.93375e-015f},{-0.925162f,-0.379572f,-6.84758e-016f},{-0.925087f,-0.379756f,1.3694e-015f}, - {-0.810449f,-0.58581f,-4.73361e-015f},{-0.651023f,-0.759058f,-1.72543e-015f},{-0.45485f,-0.890568f,-8.32791e-016f}, - {-0.455278f,-0.890349f,2.46088e-015f},{-0.650679f,-0.759353f,-3.9742e-015f},{4.0653e-015f,-1.0f,0.0f}, - {-0.234187f,-0.972192f,4.48967e-016f},{-0.233849f,-0.972273f,-2.92082e-015f},{-0.988265f,-0.152747f,1.23682e-015f}, - {-0.996566f,0.0828045f,2.45151e-016f},{-0.988334f,-0.152299f,4.16364e-015f},{-0.996526f,0.0832843f,4.93142e-016f}, - {-0.949486f,0.313809f,0.0f},{-0.949377f,0.314139f,-9.30039e-016f},{-0.917616f,0.397468f,1.07392e-015f}, - {-0.801348f,0.598198f,7.5915e-016f},{-0.801458f,0.598051f,3.66985e-015f},{-0.917689f,0.397299f,3.03814e-015f}, - {-0.984554f,0.175082f,-5.42488e-016f},{-0.98448f,0.175498f,-2.04441e-015f},{-0.958688f,-0.28446f,9.93802e-016f}, - {-0.998433f,-0.0559597f,8.52548e-017f},{-0.998408f,-0.0564112f,5.09934e-015f},{-0.958595f,-0.284774f,-3.46074e-015f}, - {-0.642216f,0.766524f,-1.23434e-015f},{-0.448409f,0.893828f,-1.65391e-016f},{-0.641892f,0.766795f,-1.41886e-016f}, - {-0.448005f,0.894031f,-1.65429e-016f},{-0.230441f,0.973086f,-1.04236e-015f},{-0.230122f,0.973162f,1.04144e-015f}, - {-2.5659e-016f,1.0f,0.0f},{0.709621f,0.704584f,3.94851e-016f},{0.254108f,0.967176f,9.46083e-017f}, - {0.499432f,0.866353f,4.18692e-016f},{-3.8902e-016f,1.0f,0.0f},{0.43334f,-0.90123f,-1.30162e-016f}, - {0.628551f,-0.777768f,1.84857e-017f},{0.788356f,-0.61522f,9.057e-018f},{0.788356f,-0.61522f,1.5327e-016f}, - {0.217989f,-0.975951f,2.24194e-018f},{5.05322e-016f,-1.0f,0.0f},{-0.104301f,0.994546f,1.88853e-016f}, - {-0.313328f,0.949645f,2.55439e-016f},{-0.508034f,0.861337f,-3.91932e-016f},{-0.675985f,0.736915f,5.02496e-017f}, - {0.104717f,0.994502f,9.68824e-018f},{0.104717f,0.994502f,-3.48663e-016f},{-0.508034f,-0.861337f,2.55007e-015f}, - {-0.313328f,-0.949645f,5.86924e-016f},{-0.104301f,-0.994546f,3.32457e-015f},{0.104717f,-0.994502f,-2.20034e-016f}, - {-0.675985f,-0.736915f,1.93154e-015f},{-0.104301f,0.994546f,-2.9348e-015f},{-0.313328f,0.949645f,-2.10139e-015f}, - {-0.508034f,0.861337f,2.51193e-016f},{-0.675985f,0.736915f,-2.46257e-015f},{-0.508034f,0.861337f,-1.08628e-015f}, - {0.104717f,0.994502f,-2.94432e-015f},{-0.508034f,-0.861337f,-2.36206e-015f},{-0.313328f,-0.949645f,8.49252e-015f}, - {-0.104301f,-0.994546f,3.30527e-015f},{0.104717f,-0.994502f,-8.68343e-015f},{-0.675985f,-0.736915f,2.50165e-016f}, - {0.628551f,0.777768f,-2.30266e-015f},{0.433341f,0.90123f,8.09474e-015f},{0.217989f,0.975951f,-9.69688e-015f}, - {0.788356f,0.61522f,7.28566e-015f},{-0.43334f,0.90123f,2.77046e-015f},{-0.628551f,0.777768f,1.84916e-015f}, - {-0.788356f,0.61522f,-2.91035e-015f},{-0.217989f,0.975951f,1.29075e-015f},{1.10775e-015f,1.0f,0.0f}, - {0.104301f,-0.994546f,-8.67894e-015f},{0.313328f,-0.949645f,4.68109e-015f},{0.508034f,-0.861337f,-8.439e-015f}, - {0.675985f,-0.736915f,-1.0665e-015f},{-0.104717f,-0.994502f,1.73559e-014f},{0.508034f,0.861337f,2.93947e-016f}, - {0.313328f,0.949645f,-4.18867e-015f},{0.104301f,0.994546f,-1.47222e-015f},{-0.104717f,0.994502f,7.95314e-016f}, - {0.675985f,0.736915f,-4.00264e-015f},{0.104301f,-0.994546f,-1.54397e-016f},{0.313328f,-0.949645f,7.14982e-018f}, - {0.508034f,-0.861337f,-9.40051e-017f},{0.675985f,-0.736915f,1.6011e-015f},{-0.104717f,-0.994502f,3.10024e-016f}, - {0.508034f,0.861337f,0.0f},{0.313328f,0.949645f,-1.4405e-016f},{0.104301f,0.994546f,-4.17183e-016f}, - {-0.104717f,0.994502f,2.05762e-016f},{0.675985f,0.736915f,0.0f},{0.675985f,0.736915f,2.27403e-015f}, - {-0.628551f,-0.777768f,1.89686e-015f},{-0.433341f,-0.90123f,1.60368e-015f},{-0.217989f,-0.975951f,5.05612e-016f}, - {-0.217989f,-0.975951f,4.12034e-016f},{6.12323e-017f,-1.0f,0.0f},{-0.788356f,-0.61522f,2.39092e-015f}, - {-0.980872f,0.194654f,-1.44073e-016f},{-1.0f,-2.96059e-016f,-3.28692e-031f},{-0.923329f,-0.384009f,-2.13958e-016f}, - {-0.924088f,-0.382179f,9.40449e-016f},{-0.98057f,-0.196168f,-7.62016e-016f},{-0.980872f,-0.194653f,6.1653e-016f}, - {-0.831655f,-0.555293f,6.67161e-016f},{-0.707139f,-0.707075f,-4.57955e-016f},{-0.706447f,-0.707765f,4.57334e-016f}, - {-0.555458f,-0.831545f,8.32431e-017f},{-0.554999f,-0.831851f,-2.05391e-016f},{-0.830773f,-0.556611f,-3.85076e-016f}, - {-0.19489f,-0.980825f,-3.63028e-018f},{-0.194766f,-0.98085f,-2.22141e-016f},{-0.382212f,-0.924075f,5.86375e-016f}, - {-0.382504f,-0.923954f,-2.95917e-016f},{-1.85037e-017f,-1.0f,0.0f},{-0.98057f,0.196168f,-1.01605e-015f}, - {-0.924088f,0.382179f,-1.22649e-015f},{-0.923329f,0.384009f,-1.99588e-016f},{-0.830773f,0.556611f,-1.04527e-016f}, - {-0.831655f,0.555293f,-4.10999e-016f},{-0.706447f,0.707766f,5.22876e-016f},{-0.707139f,0.707075f,5.23388e-016f}, - {-0.555458f,0.831545f,-6.15467e-016f},{-0.554999f,0.831851f,-4.10782e-016f},{-0.382212f,0.924075f,-1.36791e-015f}, - {-0.382504f,0.923954f,0.0f},{-0.194766f,0.98085f,-8.7013e-016f},{-0.19489f,0.980825f,0.0f}, - {-3.33067e-016f,1.0f,0.0f},{-2.96059e-016f,1.0f,0.0f},{-0.980872f,0.194654f,0.0f}, - {-0.923329f,-0.384009f,7.57929e-018f},{-0.924088f,-0.382179f,2.41708e-016f},{-0.98057f,-0.196168f,-1.26994e-016f}, - {-0.980872f,-0.194653f,-9.14525e-017f},{-0.831655f,-0.555293f,4.10524e-016f},{-0.707139f,-0.707075f,1.14487e-016f}, - {-0.706447f,-0.707765f,-5.72353e-016f},{-0.555458f,-0.831545f,-9.69264e-018f},{-0.554999f,-0.831851f,4.97064e-016f}, - {-0.830773f,-0.556611f,5.13819e-016f},{-2.96059e-016f,-1.0f,0.0f},{-0.19489f,-0.980825f,-1.02781e-015f}, - {-0.194766f,-0.98085f,8.39508e-016f},{-0.382212f,-0.924075f,4.37371e-016f},{-0.382504f,-0.923954f,1.06278e-016f}, - {-5.92119e-016f,-1.0f,0.0f},{-0.98057f,0.196168f,-7.25968e-017f},{-0.924088f,0.382179f,0.0f}, - {-0.923329f,0.384009f,-1.42112e-016f},{-0.830773f,0.556611f,-5.13435e-016f},{-0.831655f,0.555293f,2.055e-016f}, - {-0.706447f,0.707766f,-1.04673e-015f},{-0.707139f,0.707075f,2.6167e-016f},{-0.555458f,0.831545f,6.15467e-016f}, - {-0.382212f,0.924075f,0.0f},{-0.194766f,0.98085f,7.25975e-016f},{-0.19489f,0.980825f,-8.70204e-016f}, - {-1.85037e-017f,1.0f,0.0f},{-0.144611f,0.989489f,-3.80291e-017f},{0.0759712f,0.99711f,-5.623e-017f}, - {-0.358149f,0.933664f,-9.55933e-016f},{-0.358149f,0.933664f,1.99014e-016f},{-0.549837f,0.835272f,0.0f}, - {0.2878f,0.957691f,0.0f},{0.707107f,-0.707107f,0.0f},{0.54721f,-0.836995f,0.0f}, - {0.368095f,-0.929788f,0.0f},{0.181963f,-0.983305f,0.0f},{1.53707e-012f,-1.0f,0.0f}, - {8.42952e-008f,-1.0f,0.0f},{0.836995f,-0.54721f,0.0f},{0.929788f,-0.368095f,0.0f}, - {0.983305f,-0.181963f,0.0f},{1.0f,3.07487e-012f,0.0f},{1.0f,3.07526e-012f,0.0f}, - {-0.739259f,0.673422f,0.0f},{-0.710614f,0.703582f,0.0f},{-0.739259f,0.673421f,0.0f}, - {-0.766626f,0.642094f,0.0f},{-0.766624f,0.642096f,0.0f},{-0.792665f,0.609658f,0.0f}, - {-0.792663f,0.60966f,0.0f},{-0.817331f,0.576168f,0.0f},{-0.817333f,0.576166f,0.0f}, - {-0.840587f,0.541677f,0.0f},{-0.840585f,0.54168f,0.0f},{-0.862386f,0.506252f,0.0f}, - {-0.862384f,0.506254f,0.0f},{-0.882691f,0.469953f,0.0f},{-0.882693f,0.46995f,0.0f}, - {-0.901473f,0.432835f,0.0f},{-0.901471f,0.432838f,0.0f},{-0.918693f,0.394972f,0.0f}, - {-0.918692f,0.394974f,0.0f},{-0.934323f,0.356428f,0.0f},{-0.934324f,0.356425f,0.0f}, - {-0.948338f,0.317262f,0.0f},{-0.948337f,0.317264f,0.0f},{-0.960711f,0.277549f,0.0f}, - {-0.960711f,0.277552f,0.0f},{-0.971422f,0.237359f,0.0f},{-0.971423f,0.237356f,0.0f}, - {-0.980453f,0.196753f,0.0f},{-0.980453f,0.196756f,0.0f},{-0.987787f,0.155809f,0.0f}, - {-0.987787f,0.155812f,0.0f},{-0.993412f,0.114599f,0.0f},{-0.993412f,0.114596f,0.0f}, - {-0.997318f,0.0731848f,0.0f},{-0.997318f,0.073187f,0.0f},{-0.999499f,0.0316463f,0.0f}, - {-0.999499f,0.0316489f,0.0f},{-0.999951f,-0.00994395f,0.0f},{-0.999951f,-0.00994627f,0.0f}, - {-0.998672f,-0.0515206f,0.0f},{-0.710614f,0.703582f,0.0f},{-0.680741f,0.732525f,0.0f}, - {-0.680739f,0.732526f,0.0f},{-0.649687f,0.760202f,0.0f},{-0.649688f,0.760201f,0.0f}, - {-0.61751f,0.786563f,0.0f},{-0.617513f,0.786561f,0.0f},{-0.584268f,0.811561f,0.0f}, - {-0.584265f,0.811563f,0.0f},{-0.55001f,0.835158f,0.0f},{-0.550013f,0.835156f,0.0f}, - {-0.514803f,0.857309f,0.0f},{-0.514806f,0.857307f,0.0f},{-0.478708f,0.877974f,0.0f}, - {-0.478705f,0.877976f,0.0f},{-0.441779f,0.897124f,0.0f},{-0.441782f,0.897123f,0.0f}, - {-0.404088f,0.91472f,0.0f},{-0.404092f,0.914719f,0.0f},{-0.365702f,0.930732f,0.0f}, - {-0.365699f,0.930733f,0.0f},{-0.326677f,0.945136f,0.0f},{-0.326679f,0.945135f,0.0f}, - {-0.287089f,0.957904f,0.0f},{-0.287092f,0.957903f,0.0f},{-0.247008f,0.969013f,0.0f}, - {-0.247006f,0.969014f,0.0f},{-0.206494f,0.978448f,0.0f},{-0.206496f,0.978447f,0.0f}, - {-0.165625f,0.986189f,0.0f},{-0.165628f,0.986188f,0.0f},{-0.124472f,0.992223f,0.0f}, - {-0.12447f,0.992223f,0.0f},{-0.0830991f,0.996541f,0.0f},{-0.0831017f,0.996541f,0.0f}, - {-0.041585f,0.999135f,0.0f},{-0.0415873f,0.999135f,0.0f},{-1.92868e-016f,1.0f,0.0f}, - {-8.64379e-008f,1.0f,0.0f},{-0.0572333f,0.998361f,1.89979e-016f},{3.3736e-016f,1.0f,0.0f}, - {-0.114279f,0.993449f,0.0f},{-0.707107f,0.707107f,0.0f},{-0.822154f,0.569266f,0.0f}, - {-0.910446f,0.413628f,0.0f},{-0.821945f,0.569567f,0.0f},{-0.910644f,0.413191f,0.0f}, - {-0.969699f,0.244303f,0.0f},{-0.969779f,0.243984f,0.0f},{-0.997734f,0.0672808f,0.0f}, - {-0.993705f,-0.11203f,0.0f},{-0.997765f,0.0668255f,0.0f},{-0.957691f,-0.2878f,0.0f}, - {-0.993663f,-0.112396f,0.0f},{-0.569266f,0.822154f,0.0f},{-0.569567f,0.821945f,0.0f}, - {-0.413628f,0.910446f,0.0f},{-0.244303f,0.969699f,0.0f},{-0.413191f,0.910644f,0.0f}, - {-0.243985f,0.969779f,0.0f},{-0.0672808f,0.997734f,0.0f},{-0.0668255f,0.997765f,0.0f}, - {0.11203f,0.993705f,0.0f},{0.112396f,0.993663f,0.0f},{-0.823338f,-0.567551f,2.91569e-016f}, - {-0.877128f,-0.480256f,-1.36506e-015f},{-0.877118f,-0.480275f,1.00957e-015f},{-0.823334f,-0.567558f,5.00925e-017f}, - {-0.760897f,-0.648872f,1.44361e-016f},{-0.921684f,-0.387941f,1.25621e-016f},{-0.921695f,-0.387915f,6.82191e-016f}, - {-0.956563f,-0.291525f,-6.81027e-016f},{-0.956571f,-0.291499f,-7.61943e-016f},{-0.981386f,-0.192047f,6.553e-016f}, - {-0.98139f,-0.192025f,1.77659e-017f},{-0.995897f,-0.0904984f,-8.37279e-018f},{-0.995893f,-0.0905325f,-1.67519e-017f}, - {-0.999929f,0.0119218f,1.48019e-015f},{-0.993449f,0.114279f,0.0f},{-0.999926f,0.0121699f,0.0f}, - {-0.690461f,-0.723369f,-9.58068e-017f},{-0.760892f,-0.648879f,1.7081e-016f},{-0.690446f,-0.723384f,-1.49808e-016f}, - {-0.612765f,-0.790265f,1.16954e-016f},{-0.612743f,-0.790282f,-1.7266e-016f},{-0.528625f,-0.848856f,3.32998e-016f}, - {-0.438929f,-0.898522f,-5.4393e-016f},{-0.528601f,-0.84887f,4.57239e-016f},{-0.438908f,-0.898532f,-2.60926e-016f}, - {-0.344602f,-0.938749f,1.75687e-016f},{-0.34457f,-0.938761f,5.73784e-016f},{-0.246664f,-0.969101f,-5.54286e-016f}, - {-0.146104f,-0.989269f,0.0f},{-0.246424f,-0.969162f,-8.55909e-016f},{0.505064f,-0.863082f,-2.96041e-016f}, - {0.342733f,-0.939433f,-1.39064e-015f},{0.653412f,-0.757002f,-4.80673e-016f},{0.174993f,-0.98457f,-7.12538e-016f}, - {0.00988645f,-0.999951f,0.0f},{0.780028f,-0.625744f,-1.42742e-017f},{0.879277f,-0.47631f,-1.99991e-016f}, - {0.948437f,-0.316965f,-3.53543e-016f},{0.987776f,-0.155878f,8.15532e-017f},{1.0f,-1.95899e-012f,0.0f}, - {1.0f,-1.95907e-012f,0.0f},{-0.181963f,-0.983305f,0.0f},{-4.18691e-016f,-1.0f,0.0f}, - {-2.09346e-016f,-1.0f,0.0f},{-0.707107f,-0.707107f,0.0f},{-0.54721f,-0.836995f,0.0f}, - {-0.368095f,-0.929788f,0.0f},{-0.929788f,-0.368095f,0.0f},{-0.983305f,-0.181963f,0.0f}, - {-0.836995f,-0.54721f,0.0f},{-1.0f,-2.61682e-016f,0.0f},{-1.0f,-8.42937e-008f,0.0f}, - {-0.901678f,-0.432409f,-4.8007e-016f},{-0.823027f,-0.568002f,1.63014e-016f},{-0.957351f,-0.288928f,2.01882e-015f}, - {-0.957351f,-0.288928f,0.0f},{-0.989708f,-0.143098f,7.32531e-016f},{-0.72348f,-0.690346f,-1.05257e-015f}, - {-1.0f,-4.36853e-016f,0.0f},{-1.0f,-9.28313e-016f,0.0f},{-0.60671f,-0.794923f,-3.38738e-016f}, - {-0.477546f,-0.878607f,-8.64155e-016f},{-0.341342f,-0.939939f,-3.74916e-016f},{-0.203325f,-0.979111f,0.0f}, - {-0.791675f,-0.610942f,0.0f},{-0.765522f,-0.64341f,0.0f},{-0.738038f,-0.674759f,0.0f}, - {-0.765522f,-0.643409f,0.0f},{-0.709271f,-0.704936f,0.0f},{-0.738039f,-0.674758f,0.0f}, - {-0.709273f,-0.704934f,0.0f},{-0.679272f,-0.733887f,0.0f},{-0.648092f,-0.761562f,0.0f}, - {-0.679273f,-0.733885f,0.0f},{-0.615785f,-0.787914f,0.0f},{-0.648094f,-0.761561f,0.0f}, - {-0.615787f,-0.787913f,0.0f},{-0.582409f,-0.812896f,0.0f},{-0.54802f,-0.836465f,0.0f}, - {-0.58241f,-0.812895f,0.0f},{-0.512678f,-0.858581f,0.0f},{-0.548021f,-0.836464f,0.0f}, - {-0.51268f,-0.85858f,0.0f},{-0.476445f,-0.879204f,0.0f},{-0.439385f,-0.898299f,0.0f}, - {-0.476447f,-0.879203f,0.0f},{-0.40156f,-0.915833f,0.0f},{-0.439387f,-0.898298f,0.0f}, - {-0.401562f,-0.915832f,0.0f},{-0.363038f,-0.931774f,0.0f},{-0.323885f,-0.946097f,0.0f}, - {-0.36304f,-0.931774f,0.0f},{-0.284168f,-0.958774f,0.0f},{-0.323886f,-0.946096f,0.0f}, - {-0.28417f,-0.958774f,0.0f},{-0.243959f,-0.969786f,0.0f},{-0.24396f,-0.969785f,0.0f}, - {-0.816453f,-0.577412f,0.0f},{-0.816452f,-0.577413f,0.0f},{-0.839811f,-0.542879f,0.0f}, - {-0.861709f,-0.507402f,0.0f},{-0.83981f,-0.54288f,0.0f},{-0.88211f,-0.471044f,0.0f}, - {-0.861708f,-0.507404f,0.0f},{-0.882109f,-0.471046f,0.0f},{-0.900977f,-0.433866f,0.0f}, - {-0.918278f,-0.395935f,0.0f},{-0.900976f,-0.433869f,0.0f},{-0.933984f,-0.357316f,0.0f}, - {-0.918278f,-0.395937f,0.0f},{-0.933983f,-0.357318f,0.0f},{-0.948065f,-0.318075f,0.0f}, - {-0.960499f,-0.278282f,0.0f},{-0.948065f,-0.318077f,0.0f},{-0.971264f,-0.238005f,0.0f}, - {-0.960499f,-0.278284f,0.0f},{-0.971263f,-0.238007f,0.0f},{-0.98034f,-0.197314f,0.0f}, - {-0.987713f,-0.15628f,0.0f},{-0.98034f,-0.197316f,0.0f},{-0.993368f,-0.114975f,0.0f}, - {-0.987712f,-0.156283f,0.0f},{-0.993368f,-0.114977f,0.0f},{-0.997297f,-0.0734701f,0.0f}, - {-0.999493f,-0.0318375f,0.0f},{-0.997297f,-0.0734722f,0.0f},{-0.999951f,0.00985025f,0.0f}, - {-0.999493f,-0.0318392f,0.0f},{-0.999951f,0.00984923f,0.0f},{-0.998672f,0.0515206f,0.0f}, - {-0.5f,-0.866025f,0.0f},{-0.5f,-0.866025f,-4.07254e-016f},{0.997498f,-0.0706974f,4.22047e-015f}, - {0.999099f,-0.042441f,-4.49972e-015f},{0.999099f,-0.0424415f,-8.87378e-015f},{0.9999f,0.0141508f,-1.48015e-015f}, - {0.9999f,-0.014151f,0.0f},{0.9999f,-0.0141508f,-7.42169e-015f},{0.997498f,-0.0706979f,1.47659e-015f}, - {0.995098f,-0.0988972f,5.89216e-015f},{0.995098f,-0.0988976f,5.59937e-015f},{0.9919f,-0.127018f,-1.17465e-014f}, - {0.9919f,-0.127018f,-1.72436e-014f},{0.987909f,-0.155036f,-5.3906e-015f},{0.987909f,-0.155037f,5.84959e-015f}, - {0.983126f,-0.182932f,-2.36905e-015f},{0.983126f,-0.182931f,8.73191e-015f},{0.971202f,-0.238259f,8.626e-015f}, - {0.96407f,-0.265648f,-7.28139e-015f},{0.96407f,-0.265647f,-1.29898e-014f},{0.977555f,-0.210679f,-4.54082e-015f}, - {0.977555f,-0.21068f,0.0f},{0.971202f,-0.238258f,-1.29121e-014f},{0.956167f,-0.292823f,-1.73386e-015f}, - {0.956167f,-0.292823f,0.0f},{0.947497f,-0.319764f,5.61031e-015f},{0.947497f,-0.319764f,-1.89338e-015f}, - {0.938069f,-0.346449f,0.0f},{0.938069f,-0.346449f,7.60587e-015f},{0.927889f,-0.372856f,9.90971e-015f}, - {0.905308f,-0.424755f,5.3605e-015f},{0.905309f,-0.424755f,3.304e-016f},{0.916966f,-0.398966f,4.7247e-015f}, - {0.916966f,-0.398965f,5.42953e-015f},{0.927889f,-0.372857f,-7.70196e-015f},{0.892926f,-0.450204f,0.0f}, - {0.892926f,-0.450204f,5.33148e-015f},{0.879828f,-0.475292f,1.04193e-014f},{0.879828f,-0.475292f,1.04193e-014f}, - {0.866025f,-0.5f,0.0f},{0.9999f,0.014151f,8.90184e-015f},{0.999099f,0.042441f,-1.04784e-014f}, - {0.999099f,0.0424415f,-1.61429e-014f},{0.997498f,0.0706974f,8.65025e-015f},{0.995098f,0.0988972f,2.94608e-015f}, - {0.997498f,0.0706979f,-1.09175e-014f},{0.995098f,0.0988976f,1.39984e-015f},{0.9919f,0.127018f,-1.06363e-014f}, - {0.9919f,0.127018f,9.63801e-015f},{0.987909f,0.155036f,-7.40539e-015f},{0.983126f,0.182931f,-7.57272e-015f}, - {0.987909f,0.155037f,-2.5165e-015f},{0.983126f,0.182932f,2.18298e-015f},{0.977555f,0.210679f,7.64703e-015f}, - {0.977555f,0.21068f,-4.23518e-015f},{0.971202f,0.238258f,-1.03144e-014f},{0.96407f,0.265647f,-7.60334e-015f}, - {0.971202f,0.238259f,1.75636e-015f},{0.96407f,0.265648f,1.0869e-014f},{0.956167f,0.292823f,5.12754e-015f}, - {0.956167f,0.292823f,-8.24033e-015f},{0.947497f,0.319764f,3.07966e-016f},{0.938069f,0.346449f,-1.05337e-014f}, - {0.947497f,0.319764f,-8.2576e-015f},{0.938069f,0.346449f,-1.87656e-015f},{0.927889f,0.372856f,3.1746e-015f}, - {0.927889f,0.372857f,-3.31849e-015f},{0.916966f,0.398965f,3.06056e-015f},{0.905309f,0.424755f,7.49538e-015f}, - {0.916966f,0.398966f,4.02549e-015f},{0.905308f,0.424755f,1.46943e-015f},{0.892926f,0.450204f,-1.18685e-014f}, - {0.892926f,0.450204f,1.25672e-015f},{0.879828f,0.475292f,4.58408e-015f},{0.866025f,0.5f,0.0f}, - {0.879828f,0.475292f,1.83809e-015f},{0.5f,0.866025f,0.0f},{0.78179f,0.623541f,-1.15728e-015f}, - {0.807718f,0.589568f,-2.39133e-015f},{0.807717f,0.589571f,9.60223e-017f},{0.754434f,0.656376f,-5.72909e-015f}, - {0.754433f,0.656377f,-7.23689e-015f},{0.7257f,0.688011f,1.01846e-015f},{0.832169f,0.554522f,1.64171e-015f}, - {0.781789f,0.623543f,4.8494e-015f},{0.832171f,0.554519f,4.10543e-015f},{0.855102f,0.51846f,-9.96661e-016f}, - {0.855104f,0.518456f,1.53494e-015f},{0.876475f,0.481448f,-5.18977e-015f},{0.876473f,0.48145f,-4.02026e-015f}, - {0.896244f,0.443562f,-2.65341e-015f},{0.896245f,0.443559f,-3.96662e-015f},{0.914379f,0.40486f,0.0f}, - {0.930841f,0.365425f,0.0f},{0.914377f,0.404864f,-2.39728e-015f},{0.930842f,0.365423f,0.0f}, - {0.945605f,0.325317f,-3.67284e-015f},{0.945604f,0.32532f,0.0f},{0.97944f,0.201738f,3.58358e-015f}, - {0.969926f,0.243399f,-1.44121e-015f},{0.97944f,0.201735f,-3.41043e-015f},{0.95864f,0.284621f,7.36158e-015f}, - {0.958641f,0.284618f,-5.6763e-015f},{0.969926f,0.243401f,5.74311e-015f},{0.987165f,0.159705f,9.45645e-016f}, - {0.993087f,0.117381f,-1.03704e-014f},{0.987165f,0.159703f,-4.89956e-015f},{0.993087f,0.117378f,-6.9502e-016f}, - {0.997196f,0.07484f,0.0f},{0.999483f,0.0321655f,6.29904e-015f},{0.999482f,0.032168f,-5.91813e-015f}, - {0.997195f,0.0748434f,-8.86324e-016f},{0.999944f,-0.0105685f,-5.7957e-015f},{0.999944f,-0.0105657f,5.92086e-015f}, - {0.99858f,-0.0532826f,0.0f},{0.99858f,-0.05328f,0.0f},{0.995391f,-0.0958981f,0.0f}, - {0.695642f,0.718389f,-2.12686e-015f},{0.725699f,0.688012f,-3.16696e-015f},{0.69564f,0.718391f,6.73571e-017f}, - {0.664312f,0.747455f,3.69231e-016f},{0.66431f,0.747457f,-4.91688e-015f},{0.631769f,0.775156f,-3.61476e-016f}, - {0.598073f,0.801442f,-8.85326e-016f},{0.631767f,0.775159f,-5.10676e-016f},{0.59807f,0.801444f,-2.51436e-015f}, - {0.563284f,0.826264f,-2.63707e-016f},{0.563281f,0.826266f,-4.79448e-015f},{0.527466f,0.849576f,2.47204e-015f}, - {0.490685f,0.871337f,-7.45068e-016f},{0.527463f,0.849578f,6.28814e-016f},{0.490682f,0.871339f,-4.66609e-016f}, - {0.453007f,0.891507f,-5.36872e-018f},{0.453005f,0.891508f,1.90646e-015f},{0.414503f,0.910048f,-9.01947e-016f}, - {0.375241f,0.926927f,-7.55498e-016f},{0.414499f,0.91005f,-3.44627e-015f},{0.375238f,0.926928f,-8.26493e-018f}, - {0.335293f,0.942114f,7.4317e-016f},{0.335291f,0.942115f,-1.38718e-015f},{0.294734f,0.955579f,-6.60361e-018f}, - {0.253636f,0.9673f,1.39186e-016f},{0.294731f,0.95558f,-4.80822e-016f},{0.253634f,0.9673f,-1.1694e-015f}, - {0.212076f,0.977253f,-1.09093e-015f},{0.212073f,0.977254f,-1.42807e-015f},{0.170128f,0.985422f,-8.58064e-016f}, - {0.127868f,0.991791f,1.21011e-015f},{0.170124f,0.985423f,3.47036e-015f},{0.127866f,0.991791f,2.85545e-016f}, - {0.0853758f,0.996349f,-4.87227e-016f},{0.0853729f,0.996349f,3.21028e-015f},{0.0427275f,0.999087f,-3.76158e-016f}, - {1.41083e-016f,1.0f,0.0f},{0.0427249f,0.999087f,-2.9625e-015f},{1.54309e-016f,1.0f,0.0f}, - {1.0f,5.04647e-017f,0.0f},{1.0f,5.3829e-017f,0.0f},{0.998532f,0.0541567f,0.0f}, - {0.994135f,0.108145f,0.0f},{0.998534f,0.0541301f,0.0f},{0.986822f,0.161808f,0.0f}, - {0.99414f,0.108105f,0.0f},{0.986829f,0.161767f,0.0f},{0.976616f,0.214992f,0.0f}, - {0.963545f,0.267546f,0.0f},{0.976622f,0.214964f,0.0f},{0.947644f,0.319328f,0.0f}, - {0.963549f,0.267531f,0.0f},{0.947653f,0.319303f,0.0f},{0.928963f,0.370172f,0.0f}, - {0.90756f,0.419923f,0.0f},{0.928977f,0.370136f,0.0f},{0.883495f,0.46844f,0.0f}, - {0.907577f,0.419887f,0.0f},{0.883512f,0.468409f,0.0f},{0.856841f,0.515581f,0.0f}, - {0.827674f,0.56121f,0.0f},{0.856854f,0.515559f,0.0f},{0.796076f,0.605197f,0.0f}, - {0.827681f,0.561199f,0.0f},{0.796082f,0.605188f,0.0f},{0.762141f,0.647411f,0.0f}, - {0.725973f,0.687723f,0.0f},{0.762151f,0.6474f,0.0f},{0.687676f,0.726018f,0.0f}, - {0.725983f,0.687712f,0.0f},{0.687687f,0.726007f,0.0f},{0.647361f,0.762183f,0.0f}, - {0.605148f,0.796113f,0.0f},{0.647375f,0.762171f,0.0f},{0.56116f,0.827707f,0.0f}, - {0.605164f,0.796101f,0.0f},{0.561178f,0.827695f,0.0f},{0.515527f,0.856873f,0.0f}, - {0.468383f,0.883526f,0.0f},{0.515545f,0.856862f,0.0f},{0.419866f,0.907586f,0.0f}, - {0.4684f,0.883516f,0.0f},{0.419884f,0.907578f,0.0f},{0.370116f,0.928986f,0.0f}, - {0.319279f,0.947661f,0.0f},{0.370136f,0.928977f,0.0f},{0.267507f,0.963556f,0.0f}, - {0.319301f,0.947653f,0.0f},{0.267528f,0.96355f,0.0f},{0.214954f,0.976624f,0.0f}, - {0.16177f,0.986829f,0.0f},{0.214973f,0.97662f,0.0f},{0.108111f,0.994139f,0.0f}, - {0.161786f,0.986826f,0.0f},{0.108145f,0.994135f,0.0f},{0.0538298f,0.99855f,0.0f}, - {-2.15316e-016f,1.0f,0.0f},{0.0538044f,0.998551f,0.0f},{-2.35502e-016f,1.0f,0.0f}, - {0.998532f,-0.0541566f,0.0f},{0.998534f,-0.0541302f,0.0f},{0.994135f,-0.108145f,0.0f}, - {0.986822f,-0.161808f,0.0f},{0.99414f,-0.108105f,0.0f},{0.976616f,-0.214992f,0.0f}, - {0.986829f,-0.161767f,0.0f},{0.976622f,-0.214964f,0.0f},{0.963545f,-0.267546f,0.0f}, - {0.947644f,-0.319328f,0.0f},{0.963549f,-0.267531f,0.0f},{0.928963f,-0.370172f,0.0f}, - {0.947653f,-0.319303f,0.0f},{0.928977f,-0.370136f,0.0f},{0.90756f,-0.419923f,0.0f}, - {0.883495f,-0.46844f,0.0f},{0.907577f,-0.419887f,0.0f},{0.856841f,-0.515581f,0.0f}, - {0.883512f,-0.468409f,0.0f},{0.856854f,-0.515559f,0.0f},{0.827674f,-0.56121f,0.0f}, - {0.796076f,-0.605197f,0.0f},{0.827681f,-0.561199f,0.0f},{0.762141f,-0.647411f,0.0f}, - {0.796082f,-0.605188f,0.0f},{0.762151f,-0.6474f,0.0f},{0.725973f,-0.687723f,0.0f}, - {0.687676f,-0.726018f,0.0f},{0.725983f,-0.687712f,0.0f},{0.647361f,-0.762183f,0.0f}, - {0.687687f,-0.726007f,0.0f},{0.647375f,-0.762171f,0.0f},{0.605148f,-0.796113f,0.0f}, - {0.56116f,-0.827707f,0.0f},{0.605164f,-0.796101f,0.0f},{0.515527f,-0.856873f,0.0f}, - {0.561178f,-0.827695f,0.0f},{0.515545f,-0.856862f,0.0f},{0.468383f,-0.883526f,0.0f}, - {0.419866f,-0.907586f,0.0f},{0.468401f,-0.883516f,0.0f},{0.370116f,-0.928986f,0.0f}, - {0.419884f,-0.907578f,0.0f},{0.370136f,-0.928977f,0.0f},{0.319279f,-0.947661f,0.0f}, - {0.267507f,-0.963556f,0.0f},{0.319301f,-0.947653f,0.0f},{0.214954f,-0.976624f,0.0f}, - {0.267528f,-0.96355f,0.0f},{0.214973f,-0.97662f,0.0f},{0.16177f,-0.986829f,0.0f}, - {0.108111f,-0.994139f,0.0f},{0.161786f,-0.986826f,0.0f},{0.0538298f,-0.99855f,0.0f}, - {0.108145f,-0.994135f,0.0f},{0.0538045f,-0.998551f,0.0f},{1.19209e-007f,-1.0f,0.0f}, - {0.69564f,-0.718391f,-2.2967e-015f},{0.66431f,-0.747457f,4.30948e-015f},{0.664312f,-0.747455f,-2.35972e-015f}, - {0.725699f,-0.688012f,-2.11837e-015f},{0.7257f,-0.688011f,-4.7761e-015f},{0.754433f,-0.656377f,-3.42054e-015f}, - {0.631769f,-0.775156f,1.02241e-015f},{0.695642f,-0.718389f,1.63365e-016f},{0.631766f,-0.775159f,1.30928e-015f}, - {0.598073f,-0.801442f,-4.02386e-016f},{0.59807f,-0.801444f,3.14782e-015f},{0.563281f,-0.826266f,2.05014e-015f}, - {0.563284f,-0.826264f,2.15457e-016f},{0.527466f,-0.849576f,3.68245e-015f},{0.527463f,-0.849578f,-9.04405e-017f}, - {0.490682f,-0.871339f,2.82586e-015f},{0.453007f,-0.891507f,-1.11336e-015f},{0.490685f,-0.871337f,-3.98744e-016f}, - {0.453005f,-0.891508f,8.87668e-016f},{0.414499f,-0.91005f,3.62163e-016f},{0.414503f,-0.910048f,-2.33213e-015f}, - {0.294734f,-0.955579f,1.39294e-015f},{0.335291f,-0.942115f,1.29026e-015f},{0.294731f,-0.95558f,9.56661e-016f}, - {0.375241f,-0.926927f,3.09815e-015f},{0.375238f,-0.926928f,3.53892e-016f},{0.335293f,-0.942114f,1.78659e-015f}, - {0.253636f,-0.9673f,4.48455e-017f},{0.212075f,-0.977253f,9.31315e-017f},{0.253634f,-0.9673f,-3.87537e-015f}, - {0.212073f,-0.977254f,1.53976e-015f},{0.170124f,-0.985423f,-1.33727e-015f},{0.127866f,-0.991791f,1.31222e-015f}, - {0.127868f,-0.991791f,-1.43479e-015f},{0.170128f,-0.985422f,-1.08544e-015f},{0.0853729f,-0.996349f,-2.96511e-015f}, - {0.0853758f,-0.996349f,1.45956e-015f},{0.0427249f,-0.999087f,-1.45746e-015f},{0.0427275f,-0.999087f,2.97938e-015f}, - {1.41083e-016f,-1.0f,0.0f},{1.54309e-016f,-1.0f,0.0f},{0.781789f,-0.623543f,-8.12728e-016f}, - {0.754434f,-0.656376f,-2.4015e-015f},{0.78179f,-0.623541f,-9.35104e-016f},{0.807717f,-0.589571f,-3.8494e-015f}, - {0.807718f,-0.589569f,8.37214e-016f},{0.832169f,-0.554522f,-3.65599e-015f},{0.855102f,-0.51846f,-4.07623e-015f}, - {0.832171f,-0.554519f,2.81113e-015f},{0.855104f,-0.518456f,2.96789e-016f},{0.876473f,-0.48145f,3.95802e-015f}, - {0.876475f,-0.481448f,6.89284e-016f},{0.896244f,-0.443562f,7.12651e-016f},{0.914377f,-0.404864f,-1.93578e-015f}, - {0.896245f,-0.443559f,5.43092e-015f},{0.914379f,-0.40486f,-5.84661e-015f},{0.930841f,-0.365425f,1.20115e-015f}, - {0.930842f,-0.365423f,3.55128e-015f},{0.945604f,-0.32532f,2.23888e-015f},{0.95864f,-0.284621f,5.39664e-015f}, - {0.945605f,-0.325317f,4.0151e-015f},{0.958641f,-0.284618f,-2.22393e-015f},{0.969926f,-0.243401f,4.33048e-015f}, - {0.969926f,-0.243399f,4.23515e-015f},{0.97944f,-0.201738f,4.2777e-015f},{0.987165f,-0.159705f,5.95984e-015f}, - {0.97944f,-0.201735f,6.68731e-016f},{0.987165f,-0.159703f,-8.70338e-015f},{0.993087f,-0.117381f,-6.76187e-015f}, - {0.993087f,-0.117378f,7.13795e-015f},{0.997195f,-0.0748434f,-4.49833e-016f},{0.999482f,-0.0321679f,5.88869e-015f}, - {0.997196f,-0.07484f,-1.11652e-015f},{0.999483f,-0.0321656f,-2.74195e-016f},{0.999944f,0.0105657f,5.2388e-015f}, - {0.999944f,0.0105686f,-6.15843e-016f},{0.99858f,0.05328f,7.92959e-015f},{0.995391f,0.0958981f,0.0f}, - {0.99858f,0.0532825f,4.50329e-015f},{0.5f,-0.866025f,0.0f},{-0.9999f,-0.0141122f,0.0f}, - {-0.9999f,0.0141124f,0.0f},{-0.9999f,-0.0141125f,0.0f},{-0.999104f,-0.0423259f,0.0f}, - {-0.999104f,-0.0423254f,0.0f},{-0.997511f,-0.0705055f,0.0f},{-0.997511f,-0.0705051f,0.0f}, - {-0.995124f,-0.0986284f,0.0f},{-0.995124f,-0.0986291f,0.0f},{-0.991944f,-0.126674f,0.0f}, - {-0.991944f,-0.126673f,0.0f},{-0.987974f,-0.154618f,0.0f},{-0.987974f,-0.154617f,0.0f}, - {-0.983217f,-0.182438f,0.0f},{-0.983217f,-0.182439f,0.0f},{-0.977677f,-0.210114f,0.0f}, - {-0.977677f,-0.210113f,0.0f},{-0.971358f,-0.237622f,0.0f},{-0.971358f,-0.237622f,0.0f}, - {-0.964265f,-0.26494f,0.0f},{-0.964265f,-0.264941f,0.0f},{-0.956403f,-0.292049f,0.0f}, - {-0.956404f,-0.292048f,0.0f},{-0.94778f,-0.318924f,0.0f},{-0.947781f,-0.318923f,0.0f}, - {-0.938403f,-0.345544f,0.0f},{-0.938402f,-0.345545f,0.0f},{-0.928277f,-0.371891f,0.0f}, - {-0.928277f,-0.37189f,0.0f},{-0.917411f,-0.39794f,0.0f},{-0.917412f,-0.397939f,0.0f}, - {-0.905816f,-0.423672f,0.0f},{-0.905815f,-0.423672f,0.0f},{-0.893498f,-0.449067f,0.0f}, - {-0.893498f,-0.449067f,0.0f},{-0.880469f,-0.474105f,0.0f},{-0.880469f,-0.474104f,0.0f}, - {-0.866738f,-0.498763f,0.0f},{-0.866738f,-0.498764f,0.0f},{-0.852317f,-0.523026f,0.0f}, - {-0.9999f,0.0141122f,0.0f},{-0.999104f,0.0423254f,0.0f},{-0.999104f,0.0423259f,0.0f}, - {-0.997511f,0.0705055f,0.0f},{-0.997511f,0.0705051f,0.0f},{-0.995124f,0.0986291f,0.0f}, - {-0.995124f,0.0986285f,0.0f},{-0.991944f,0.126673f,0.0f},{-0.991944f,0.126674f,0.0f}, - {-0.987974f,0.154618f,0.0f},{-0.987974f,0.154617f,0.0f},{-0.983217f,0.182439f,0.0f}, - {-0.983217f,0.182438f,0.0f},{-0.977677f,0.210113f,0.0f},{-0.977677f,0.210114f,0.0f}, - {-0.971358f,0.237622f,0.0f},{-0.971358f,0.237622f,0.0f},{-0.964265f,0.264941f,0.0f}, - {-0.964265f,0.26494f,0.0f},{-0.956404f,0.292048f,0.0f},{-0.956403f,0.292049f,0.0f}, - {-0.94778f,0.318924f,0.0f},{-0.947781f,0.318923f,0.0f},{-0.938402f,0.345545f,0.0f}, - {-0.938403f,0.345544f,0.0f},{-0.928277f,0.37189f,0.0f},{-0.928277f,0.371891f,0.0f}, - {-0.917411f,0.39794f,0.0f},{-0.917412f,0.397939f,0.0f},{-0.905815f,0.423672f,0.0f}, - {-0.905816f,0.423672f,0.0f},{-0.893498f,0.449067f,0.0f},{-0.893498f,0.449067f,0.0f}, - {-0.880469f,0.474104f,0.0f},{-0.880469f,0.474104f,0.0f},{-0.866738f,0.498764f,0.0f}, - {-0.866738f,0.498764f,0.0f},{-0.852317f,0.523026f,0.0f},{-0.5f,0.866025f,0.0f}, - {-0.5f,0.866025f,-7.6671e-016f},{0.0f,-4.33681e-019f,1.0f},{0.0f,4.33681e-019f,1.0f}, - {-0.884642f,0.466272f,2.20644e-016f},{-0.777982f,0.628286f,5.89571e-016f},{-0.778033f,0.628223f,-5.53502e-016f}, - {-0.957996f,0.286781f,1.48116e-016f},{-0.88468f,0.466199f,-5.1317e-016f},{-0.958053f,0.286593f,-1.63827e-016f}, - {-0.995238f,-0.0974696f,3.44802e-016f},{-0.995356f,0.0962625f,-1.06856e-016f},{-0.995222f,-0.097635f,-4.56953e-017f}, - {-0.995334f,0.0964852f,-1.31963e-016f},{-0.642168f,0.766564f,0.0f},{-0.482138f,0.876095f,-7.37654e-016f}, - {-0.642017f,0.76669f,-1.10523e-015f},{-0.481942f,0.876203f,7.37698e-016f},{-0.303947f,0.952689f,0.0f}, - {-0.303789f,0.952739f,0.0f},{-0.715999f,0.698102f,1.29175e-016f},{-0.945908f,0.324434f,-5.70109e-016f}, - {-0.945908f,0.324434f,-3.35048e-016f},{-0.851699f,0.524032f,7.27349e-016f},{3.33067e-016f,-1.0f,0.0f}, - {0.19489f,-0.980825f,0.0f},{0.194766f,-0.98085f,-8.7013e-016f},{0.707139f,-0.707075f,5.23388e-016f}, - {0.706447f,-0.707766f,5.22876e-016f},{0.555458f,-0.831545f,-6.15467e-016f},{0.554999f,-0.831851f,-4.10782e-016f}, - {0.382212f,-0.924075f,-1.36791e-015f},{0.382504f,-0.923954f,0.0f},{0.98057f,-0.196168f,-1.01605e-015f}, - {0.980872f,-0.194654f,-1.44073e-016f},{0.831655f,-0.555293f,-4.10999e-016f},{0.924088f,-0.382179f,-1.22649e-015f}, - {0.923329f,-0.384009f,-1.99588e-016f},{0.923329f,0.384009f,-2.13958e-016f},{0.831655f,0.555293f,6.67161e-016f}, - {0.924088f,0.382179f,9.40449e-016f},{0.98057f,0.196168f,-7.62016e-016f},{0.980872f,0.194653f,6.1653e-016f}, - {1.0f,2.96059e-016f,-3.28692e-031f},{0.706447f,0.707765f,4.57334e-016f},{0.555458f,0.831545f,8.32431e-017f}, - {0.707139f,0.707075f,-4.57955e-016f},{0.830773f,0.556611f,-3.85076e-016f},{0.554999f,0.831851f,-2.05391e-016f}, - {0.382504f,0.923954f,-2.95917e-016f},{0.19489f,0.980825f,-3.63028e-018f},{0.382212f,0.924075f,5.86375e-016f}, - {0.194766f,0.98085f,-2.22141e-016f},{1.85037e-017f,1.0f,0.0f},{0.830773f,-0.556611f,-1.04527e-016f}, - {2.96059e-016f,-1.0f,0.0f},{1.85037e-017f,-1.0f,0.0f},{0.19489f,-0.980825f,-8.70204e-016f}, - {0.194766f,-0.98085f,7.25975e-016f},{0.707139f,-0.707075f,2.6167e-016f},{0.706447f,-0.707766f,-1.04673e-015f}, - {0.555458f,-0.831545f,6.15467e-016f},{0.382212f,-0.924075f,0.0f},{0.98057f,-0.196168f,-7.25968e-017f}, - {0.980872f,-0.194654f,0.0f},{0.831655f,-0.555293f,2.055e-016f},{0.924088f,-0.382179f,0.0f}, - {0.923329f,-0.384009f,-1.42112e-016f},{0.923329f,0.384009f,7.57929e-018f},{0.831655f,0.555293f,4.10524e-016f}, - {0.924088f,0.382179f,2.41708e-016f},{0.98057f,0.196168f,-1.26994e-016f},{0.980872f,0.194653f,-9.14525e-017f}, - {0.706447f,0.707765f,-5.72353e-016f},{0.555458f,0.831545f,-9.69264e-018f},{0.707139f,0.707075f,1.14487e-016f}, - {0.830773f,0.556611f,5.13819e-016f},{0.554999f,0.831851f,4.97064e-016f},{0.382504f,0.923954f,1.06278e-016f}, - {0.19489f,0.980825f,-1.02781e-015f},{0.382212f,0.924075f,4.37371e-016f},{0.194766f,0.98085f,8.39508e-016f}, - {2.96059e-016f,1.0f,0.0f},{5.92119e-016f,1.0f,0.0f},{0.830773f,-0.556611f,-5.13435e-016f}, - {0.144611f,-0.989489f,-3.80291e-017f},{-0.0759712f,-0.99711f,-5.623e-017f},{0.358149f,-0.933664f,-9.55933e-016f}, - {0.358149f,-0.933664f,1.99014e-016f},{0.549837f,-0.835272f,0.0f},{-0.2878f,-0.957691f,0.0f}, - {-0.54721f,0.836995f,0.0f},{-0.368095f,0.929788f,0.0f},{-0.181963f,0.983305f,0.0f}, - {-1.53707e-012f,1.0f,0.0f},{-8.42952e-008f,1.0f,0.0f},{-0.836995f,0.54721f,0.0f}, - {-0.929788f,0.368095f,0.0f},{-0.983305f,0.181963f,0.0f},{-1.0f,-3.07487e-012f,0.0f}, - {-1.0f,-3.07526e-012f,0.0f},{0.739259f,-0.673422f,0.0f},{0.710614f,-0.703582f,0.0f}, - {0.739259f,-0.673421f,0.0f},{0.766626f,-0.642094f,0.0f},{0.766624f,-0.642096f,0.0f}, - {0.792665f,-0.609658f,0.0f},{0.792663f,-0.60966f,0.0f},{0.817331f,-0.576168f,0.0f}, - {0.817333f,-0.576166f,0.0f},{0.840587f,-0.541677f,0.0f},{0.840585f,-0.54168f,0.0f}, - {0.862386f,-0.506252f,0.0f},{0.862384f,-0.506254f,0.0f},{0.882691f,-0.469953f,0.0f}, - {0.882693f,-0.46995f,0.0f},{0.901473f,-0.432835f,0.0f},{0.901471f,-0.432838f,0.0f}, - {0.918693f,-0.394972f,0.0f},{0.918692f,-0.394974f,0.0f},{0.934323f,-0.356428f,0.0f}, - {0.934324f,-0.356425f,0.0f},{0.948338f,-0.317262f,0.0f},{0.948337f,-0.317264f,0.0f}, - {0.960711f,-0.277549f,0.0f},{0.960711f,-0.277552f,0.0f},{0.971422f,-0.237359f,0.0f}, - {0.971423f,-0.237356f,0.0f},{0.980453f,-0.196753f,0.0f},{0.980453f,-0.196756f,0.0f}, - {0.987787f,-0.155809f,0.0f},{0.987787f,-0.155812f,0.0f},{0.993412f,-0.114599f,0.0f}, - {0.993412f,-0.114596f,0.0f},{0.997318f,-0.0731848f,0.0f},{0.997318f,-0.073187f,0.0f}, - {0.999499f,-0.0316463f,0.0f},{0.999499f,-0.0316489f,0.0f},{0.999951f,0.00994395f,0.0f}, - {0.999951f,0.00994627f,0.0f},{0.998672f,0.0515206f,0.0f},{0.710614f,-0.703582f,0.0f}, - {0.680741f,-0.732525f,0.0f},{0.680739f,-0.732526f,0.0f},{0.649687f,-0.760202f,0.0f}, - {0.649688f,-0.760201f,0.0f},{0.61751f,-0.786563f,0.0f},{0.617513f,-0.786561f,0.0f}, - {0.584268f,-0.811561f,0.0f},{0.584265f,-0.811563f,0.0f},{0.55001f,-0.835158f,0.0f}, - {0.550013f,-0.835156f,0.0f},{0.514803f,-0.857309f,0.0f},{0.514806f,-0.857307f,0.0f}, - {0.478708f,-0.877974f,0.0f},{0.478705f,-0.877976f,0.0f},{0.441779f,-0.897124f,0.0f}, - {0.441782f,-0.897123f,0.0f},{0.404088f,-0.91472f,0.0f},{0.404092f,-0.914719f,0.0f}, - {0.365702f,-0.930732f,0.0f},{0.365699f,-0.930733f,0.0f},{0.326677f,-0.945136f,0.0f}, - {0.326679f,-0.945135f,0.0f},{0.287089f,-0.957904f,0.0f},{0.287092f,-0.957903f,0.0f}, - {0.247008f,-0.969013f,0.0f},{0.247006f,-0.969014f,0.0f},{0.206494f,-0.978448f,0.0f}, - {0.206496f,-0.978447f,0.0f},{0.165625f,-0.986189f,0.0f},{0.165628f,-0.986188f,0.0f}, - {0.124472f,-0.992223f,0.0f},{0.12447f,-0.992223f,0.0f},{0.0830991f,-0.996541f,0.0f}, - {0.0831017f,-0.996541f,0.0f},{0.041585f,-0.999135f,0.0f},{0.0415873f,-0.999135f,0.0f}, - {1.92868e-016f,-1.0f,0.0f},{8.64379e-008f,-1.0f,0.0f},{0.0572333f,-0.998361f,1.89979e-016f}, - {-3.3736e-016f,-1.0f,0.0f},{0.114279f,-0.993449f,0.0f},{0.822154f,-0.569266f,0.0f}, - {0.910446f,-0.413628f,0.0f},{0.821945f,-0.569567f,0.0f},{0.910644f,-0.413191f,0.0f}, - {0.969699f,-0.244303f,0.0f},{0.969779f,-0.243984f,0.0f},{0.997734f,-0.0672808f,0.0f}, - {0.993705f,0.11203f,0.0f},{0.997765f,-0.0668255f,0.0f},{0.957691f,0.2878f,0.0f}, - {0.993663f,0.112396f,0.0f},{0.569266f,-0.822154f,0.0f},{0.569567f,-0.821945f,0.0f}, - {0.413628f,-0.910446f,0.0f},{0.244303f,-0.969699f,0.0f},{0.413191f,-0.910644f,0.0f}, - {0.243985f,-0.969779f,0.0f},{0.0672808f,-0.997734f,0.0f},{0.0668255f,-0.997765f,0.0f}, - {-0.11203f,-0.993705f,0.0f},{-0.112396f,-0.993663f,0.0f},{0.823338f,0.567551f,2.91569e-016f}, - {0.877128f,0.480256f,-1.36506e-015f},{0.877118f,0.480275f,1.00957e-015f},{0.823334f,0.567558f,5.00925e-017f}, - {0.760897f,0.648872f,1.44361e-016f},{0.921684f,0.387941f,1.25621e-016f},{0.921695f,0.387915f,6.82191e-016f}, - {0.956563f,0.291525f,-6.81027e-016f},{0.956571f,0.291499f,-7.61943e-016f},{0.981386f,0.192047f,6.553e-016f}, - {0.98139f,0.192025f,1.77659e-017f},{0.995897f,0.0904984f,-8.37279e-018f},{0.995893f,0.0905325f,-1.67519e-017f}, - {0.999929f,-0.0119218f,1.48019e-015f},{0.993449f,-0.114279f,0.0f},{0.999926f,-0.0121699f,0.0f}, - {0.690461f,0.723369f,-9.58068e-017f},{0.760892f,0.648879f,1.7081e-016f},{0.690446f,0.723384f,-1.49808e-016f}, - {0.612765f,0.790265f,1.16954e-016f},{0.612743f,0.790282f,-1.7266e-016f},{0.528625f,0.848856f,3.32998e-016f}, - {0.438929f,0.898522f,-5.4393e-016f},{0.528601f,0.84887f,4.57239e-016f},{0.438908f,0.898532f,-2.60926e-016f}, - {0.344602f,0.938749f,1.75687e-016f},{0.34457f,0.938761f,5.73784e-016f},{0.246664f,0.969101f,-5.54286e-016f}, - {0.146104f,0.989269f,0.0f},{0.246424f,0.969162f,-8.55909e-016f},{-0.505064f,0.863082f,-2.96041e-016f}, - {-0.342733f,0.939433f,-1.39064e-015f},{-0.653412f,0.757002f,-4.80673e-016f},{-0.174993f,0.98457f,-7.12538e-016f}, - {-0.00988645f,0.999951f,0.0f},{-0.780028f,0.625744f,-1.42742e-017f},{-0.879277f,0.47631f,-1.99991e-016f}, - {-0.948437f,0.316965f,-3.53543e-016f},{-0.987776f,0.155878f,8.15532e-017f},{-1.0f,1.95899e-012f,0.0f}, - {-1.0f,1.95907e-012f,0.0f},{0.181963f,0.983305f,0.0f},{4.18691e-016f,1.0f,0.0f}, - {2.09346e-016f,1.0f,0.0f},{0.707107f,0.707107f,0.0f},{0.54721f,0.836995f,0.0f}, - {0.368095f,0.929788f,0.0f},{0.929788f,0.368095f,0.0f},{0.983305f,0.181963f,0.0f}, - {0.836995f,0.54721f,0.0f},{1.0f,2.61682e-016f,0.0f},{1.0f,8.42937e-008f,0.0f}, - {0.901678f,0.432409f,-4.8007e-016f},{0.823027f,0.568002f,1.63014e-016f},{0.957351f,0.288928f,2.01882e-015f}, - {0.957351f,0.288928f,0.0f},{0.989708f,0.143098f,7.32531e-016f},{0.72348f,0.690346f,-1.05257e-015f}, - {1.0f,4.36853e-016f,0.0f},{1.0f,9.28313e-016f,0.0f},{0.60671f,0.794923f,-3.38738e-016f}, - {0.477546f,0.878607f,-8.64155e-016f},{0.341342f,0.939939f,-3.74916e-016f},{0.203325f,0.979111f,0.0f}, - {0.791675f,0.610942f,0.0f},{0.765522f,0.64341f,0.0f},{0.738038f,0.674759f,0.0f}, - {0.765522f,0.643409f,0.0f},{0.709271f,0.704936f,0.0f},{0.738039f,0.674758f,0.0f}, - {0.709273f,0.704934f,0.0f},{0.679272f,0.733887f,0.0f},{0.648092f,0.761562f,0.0f}, - {0.679273f,0.733885f,0.0f},{0.615785f,0.787914f,0.0f},{0.648094f,0.761561f,0.0f}, - {0.615787f,0.787913f,0.0f},{0.582409f,0.812896f,0.0f},{0.54802f,0.836465f,0.0f}, - {0.58241f,0.812895f,0.0f},{0.512678f,0.858581f,0.0f},{0.548021f,0.836464f,0.0f}, - {0.51268f,0.85858f,0.0f},{0.476445f,0.879204f,0.0f},{0.439385f,0.898299f,0.0f}, - {0.476447f,0.879203f,0.0f},{0.40156f,0.915833f,0.0f},{0.439387f,0.898298f,0.0f}, - {0.401562f,0.915832f,0.0f},{0.363038f,0.931774f,0.0f},{0.323885f,0.946097f,0.0f}, - {0.36304f,0.931774f,0.0f},{0.284168f,0.958774f,0.0f},{0.323886f,0.946096f,0.0f}, - {0.28417f,0.958774f,0.0f},{0.243959f,0.969786f,0.0f},{0.24396f,0.969785f,0.0f}, - {0.816453f,0.577412f,0.0f},{0.816452f,0.577413f,0.0f},{0.839811f,0.542879f,0.0f}, - {0.861709f,0.507402f,0.0f},{0.83981f,0.54288f,0.0f},{0.88211f,0.471044f,0.0f}, - {0.861708f,0.507404f,0.0f},{0.882109f,0.471046f,0.0f},{0.900977f,0.433866f,0.0f}, - {0.918278f,0.395935f,0.0f},{0.900976f,0.433869f,0.0f},{0.933984f,0.357316f,0.0f}, - {0.918278f,0.395937f,0.0f},{0.933983f,0.357318f,0.0f},{0.948065f,0.318075f,0.0f}, - {0.960499f,0.278282f,0.0f},{0.948065f,0.318077f,0.0f},{0.971264f,0.238005f,0.0f}, - {0.960499f,0.278284f,0.0f},{0.971263f,0.238007f,0.0f},{0.98034f,0.197314f,0.0f}, - {0.987713f,0.15628f,0.0f},{0.98034f,0.197316f,0.0f},{0.993368f,0.114975f,0.0f}, - {0.987712f,0.156283f,0.0f},{0.993368f,0.114977f,0.0f},{0.997297f,0.0734701f,0.0f}, - {0.999493f,0.0318375f,0.0f},{0.997297f,0.0734722f,0.0f},{0.999951f,-0.00985025f,0.0f}, - {0.999493f,0.0318392f,0.0f},{0.999951f,-0.00984923f,0.0f},{0.998672f,-0.0515206f,0.0f}, - {0.5f,0.866025f,-4.07254e-016f},{-0.997498f,0.0706974f,4.22047e-015f},{-0.999099f,0.042441f,-4.49972e-015f}, - {-0.999099f,0.0424415f,-8.87378e-015f},{-0.9999f,-0.0141508f,-1.48015e-015f},{-0.9999f,0.014151f,0.0f}, - {-0.9999f,0.0141508f,-7.42169e-015f},{-0.997498f,0.0706979f,1.47659e-015f},{-0.995098f,0.0988972f,5.89216e-015f}, - {-0.995098f,0.0988976f,5.59937e-015f},{-0.9919f,0.127018f,-1.17465e-014f},{-0.9919f,0.127018f,-1.72436e-014f}, - {-0.987909f,0.155036f,-5.3906e-015f},{-0.987909f,0.155037f,5.84959e-015f},{-0.983126f,0.182932f,-2.36905e-015f}, - {-0.983126f,0.182931f,8.73191e-015f},{-0.971202f,0.238259f,8.626e-015f},{-0.96407f,0.265648f,-7.28139e-015f}, - {-0.96407f,0.265647f,-1.29898e-014f},{-0.977555f,0.210679f,-4.54082e-015f},{-0.977555f,0.21068f,0.0f}, - {-0.971202f,0.238258f,-1.29121e-014f},{-0.956167f,0.292823f,-1.73386e-015f},{-0.956167f,0.292823f,0.0f}, - {-0.947497f,0.319764f,5.61031e-015f},{-0.947497f,0.319764f,-1.89338e-015f},{-0.938069f,0.346449f,0.0f}, - {-0.938069f,0.346449f,7.60587e-015f},{-0.927889f,0.372856f,9.90971e-015f},{-0.905308f,0.424755f,5.3605e-015f}, - {-0.905309f,0.424755f,3.304e-016f},{-0.916966f,0.398966f,4.7247e-015f},{-0.916966f,0.398965f,5.42953e-015f}, - {-0.927889f,0.372857f,-7.70196e-015f},{-0.892926f,0.450204f,0.0f},{-0.892926f,0.450204f,5.33148e-015f}, - {-0.879828f,0.475292f,1.04193e-014f},{-0.879828f,0.475292f,1.04193e-014f},{-0.866025f,0.5f,0.0f}, - {-0.9999f,-0.014151f,8.90184e-015f},{-0.999099f,-0.042441f,-1.04784e-014f},{-0.999099f,-0.0424415f,-1.61429e-014f}, - {-0.997498f,-0.0706974f,8.65025e-015f},{-0.995098f,-0.0988972f,2.94608e-015f},{-0.997498f,-0.0706979f,-1.09175e-014f}, - {-0.995098f,-0.0988976f,1.39984e-015f},{-0.9919f,-0.127018f,-1.06363e-014f},{-0.9919f,-0.127018f,9.63801e-015f}, - {-0.987909f,-0.155036f,-7.40539e-015f},{-0.983126f,-0.182931f,-7.57272e-015f},{-0.987909f,-0.155037f,-2.5165e-015f}, - {-0.983126f,-0.182932f,2.18298e-015f},{-0.977555f,-0.210679f,7.64703e-015f},{-0.977555f,-0.21068f,-4.23518e-015f}, - {-0.971202f,-0.238258f,-1.03144e-014f},{-0.96407f,-0.265647f,-7.60334e-015f},{-0.971202f,-0.238259f,1.75636e-015f}, - {-0.96407f,-0.265648f,1.0869e-014f},{-0.956167f,-0.292823f,5.12754e-015f},{-0.956167f,-0.292823f,-8.24033e-015f}, - {-0.947497f,-0.319764f,3.07966e-016f},{-0.938069f,-0.346449f,-1.05337e-014f},{-0.947497f,-0.319764f,-8.2576e-015f}, - {-0.938069f,-0.346449f,-1.87656e-015f},{-0.927889f,-0.372856f,3.1746e-015f},{-0.927889f,-0.372857f,-3.31849e-015f}, - {-0.916966f,-0.398965f,3.06056e-015f},{-0.905309f,-0.424755f,7.49538e-015f},{-0.916966f,-0.398966f,4.02549e-015f}, - {-0.905308f,-0.424755f,1.46943e-015f},{-0.892926f,-0.450204f,-1.18685e-014f},{-0.892926f,-0.450204f,1.25672e-015f}, - {-0.879828f,-0.475292f,4.58408e-015f},{-0.866025f,-0.5f,0.0f},{-0.879828f,-0.475292f,1.83809e-015f}, - {-0.78179f,-0.623541f,-1.15728e-015f},{-0.807718f,-0.589568f,-2.39133e-015f},{-0.807717f,-0.589571f,9.60223e-017f}, - {-0.754434f,-0.656376f,-5.72909e-015f},{-0.754433f,-0.656377f,-7.23689e-015f},{-0.7257f,-0.688011f,1.01846e-015f}, - {-0.832169f,-0.554522f,1.64171e-015f},{-0.781789f,-0.623543f,4.8494e-015f},{-0.832171f,-0.554519f,4.10543e-015f}, - {-0.855102f,-0.51846f,-9.96661e-016f},{-0.855104f,-0.518456f,1.53494e-015f},{-0.876475f,-0.481448f,-5.18977e-015f}, - {-0.876473f,-0.48145f,-4.02026e-015f},{-0.896244f,-0.443562f,-2.65341e-015f},{-0.896245f,-0.443559f,-3.96662e-015f}, - {-0.914379f,-0.40486f,0.0f},{-0.930841f,-0.365425f,0.0f},{-0.914377f,-0.404864f,-2.39728e-015f}, - {-0.930842f,-0.365423f,0.0f},{-0.945605f,-0.325317f,-3.67284e-015f},{-0.945604f,-0.32532f,0.0f}, - {-0.97944f,-0.201738f,3.58358e-015f},{-0.969926f,-0.243399f,-1.44121e-015f},{-0.97944f,-0.201735f,-3.41043e-015f}, - {-0.95864f,-0.284621f,7.36158e-015f},{-0.958641f,-0.284618f,-5.6763e-015f},{-0.969926f,-0.243401f,5.74311e-015f}, - {-0.987165f,-0.159705f,9.45645e-016f},{-0.993087f,-0.117381f,-1.03704e-014f},{-0.987165f,-0.159703f,-4.89956e-015f}, - {-0.993087f,-0.117378f,-6.9502e-016f},{-0.997196f,-0.07484f,0.0f},{-0.999483f,-0.0321655f,6.29904e-015f}, - {-0.999482f,-0.032168f,-5.91813e-015f},{-0.997195f,-0.0748434f,-8.86324e-016f},{-0.999944f,0.0105685f,-5.7957e-015f}, - {-0.999944f,0.0105657f,5.92086e-015f},{-0.99858f,0.0532826f,0.0f},{-0.99858f,0.05328f,0.0f}, - {-0.995391f,0.0958981f,0.0f},{-0.695642f,-0.718389f,-2.12686e-015f},{-0.725699f,-0.688012f,-3.16696e-015f}, - {-0.69564f,-0.718391f,6.73571e-017f},{-0.664312f,-0.747455f,3.69231e-016f},{-0.66431f,-0.747457f,-4.91688e-015f}, - {-0.631769f,-0.775156f,-3.61476e-016f},{-0.598073f,-0.801442f,-8.85326e-016f},{-0.631767f,-0.775159f,-5.10676e-016f}, - {-0.59807f,-0.801444f,-2.51436e-015f},{-0.563284f,-0.826264f,-2.63707e-016f},{-0.563281f,-0.826266f,-4.79448e-015f}, - {-0.527466f,-0.849576f,2.47204e-015f},{-0.490685f,-0.871337f,-7.45068e-016f},{-0.527463f,-0.849578f,6.28814e-016f}, - {-0.490682f,-0.871339f,-4.66609e-016f},{-0.453007f,-0.891507f,-5.36872e-018f},{-0.453005f,-0.891508f,1.90646e-015f}, - {-0.414503f,-0.910048f,-9.01947e-016f},{-0.375241f,-0.926927f,-7.55498e-016f},{-0.414499f,-0.91005f,-3.44627e-015f}, - {-0.375238f,-0.926928f,-8.26493e-018f},{-0.335293f,-0.942114f,7.4317e-016f},{-0.335291f,-0.942115f,-1.38718e-015f}, - {-0.294734f,-0.955579f,-6.60361e-018f},{-0.253636f,-0.9673f,1.39186e-016f},{-0.294731f,-0.95558f,-4.80822e-016f}, - {-0.253634f,-0.9673f,-1.1694e-015f},{-0.212076f,-0.977253f,-1.09093e-015f},{-0.212073f,-0.977254f,-1.42807e-015f}, - {-0.170128f,-0.985422f,-8.58064e-016f},{-0.127868f,-0.991791f,1.21011e-015f},{-0.170124f,-0.985423f,3.47036e-015f}, - {-0.127866f,-0.991791f,2.85545e-016f},{-0.0853758f,-0.996349f,-4.87227e-016f},{-0.0853729f,-0.996349f,3.21028e-015f}, - {-0.0427275f,-0.999087f,-3.76158e-016f},{-1.41083e-016f,-1.0f,0.0f},{-0.0427249f,-0.999087f,-2.9625e-015f}, - {-1.54309e-016f,-1.0f,0.0f},{-1.0f,-5.04647e-017f,0.0f},{-1.0f,-5.3829e-017f,0.0f}, - {-0.998532f,-0.0541567f,0.0f},{-0.994135f,-0.108145f,0.0f},{-0.998534f,-0.0541301f,0.0f}, - {-0.986822f,-0.161808f,0.0f},{-0.99414f,-0.108105f,0.0f},{-0.986829f,-0.161767f,0.0f}, - {-0.976616f,-0.214992f,0.0f},{-0.963545f,-0.267546f,0.0f},{-0.976622f,-0.214964f,0.0f}, - {-0.947644f,-0.319328f,0.0f},{-0.963549f,-0.267531f,0.0f},{-0.947653f,-0.319303f,0.0f}, - {-0.928963f,-0.370172f,0.0f},{-0.90756f,-0.419923f,0.0f},{-0.928977f,-0.370136f,0.0f}, - {-0.883495f,-0.46844f,0.0f},{-0.907577f,-0.419887f,0.0f},{-0.883512f,-0.468409f,0.0f}, - {-0.856841f,-0.515581f,0.0f},{-0.827674f,-0.56121f,0.0f},{-0.856854f,-0.515559f,0.0f}, - {-0.796076f,-0.605197f,0.0f},{-0.827681f,-0.561199f,0.0f},{-0.796082f,-0.605188f,0.0f}, - {-0.762141f,-0.647411f,0.0f},{-0.725973f,-0.687723f,0.0f},{-0.762151f,-0.6474f,0.0f}, - {-0.687676f,-0.726018f,0.0f},{-0.725983f,-0.687712f,0.0f},{-0.687687f,-0.726007f,0.0f}, - {-0.647361f,-0.762183f,0.0f},{-0.605148f,-0.796113f,0.0f},{-0.647375f,-0.762171f,0.0f}, - {-0.56116f,-0.827707f,0.0f},{-0.605164f,-0.796101f,0.0f},{-0.561178f,-0.827695f,0.0f}, - {-0.515527f,-0.856873f,0.0f},{-0.468383f,-0.883526f,0.0f},{-0.515545f,-0.856862f,0.0f}, - {-0.419866f,-0.907586f,0.0f},{-0.4684f,-0.883516f,0.0f},{-0.419884f,-0.907578f,0.0f}, - {-0.370116f,-0.928986f,0.0f},{-0.319279f,-0.947661f,0.0f},{-0.370136f,-0.928977f,0.0f}, - {-0.267507f,-0.963556f,0.0f},{-0.319301f,-0.947653f,0.0f},{-0.267528f,-0.96355f,0.0f}, - {-0.214954f,-0.976624f,0.0f},{-0.16177f,-0.986829f,0.0f},{-0.214973f,-0.97662f,0.0f}, - {-0.108111f,-0.994139f,0.0f},{-0.161786f,-0.986826f,0.0f},{-0.108145f,-0.994135f,0.0f}, - {-0.0538298f,-0.99855f,0.0f},{2.15316e-016f,-1.0f,0.0f},{-0.0538044f,-0.998551f,0.0f}, - {2.35502e-016f,-1.0f,0.0f},{-0.998532f,0.0541566f,0.0f},{-0.998534f,0.0541302f,0.0f}, - {-0.994135f,0.108145f,0.0f},{-0.986822f,0.161808f,0.0f},{-0.99414f,0.108105f,0.0f}, - {-0.976616f,0.214992f,0.0f},{-0.986829f,0.161767f,0.0f},{-0.976622f,0.214964f,0.0f}, - {-0.963545f,0.267546f,0.0f},{-0.947644f,0.319328f,0.0f},{-0.963549f,0.267531f,0.0f}, - {-0.928963f,0.370172f,0.0f},{-0.947653f,0.319303f,0.0f},{-0.928977f,0.370136f,0.0f}, - {-0.90756f,0.419923f,0.0f},{-0.883495f,0.46844f,0.0f},{-0.907577f,0.419887f,0.0f}, - {-0.856841f,0.515581f,0.0f},{-0.883512f,0.468409f,0.0f},{-0.856854f,0.515559f,0.0f}, - {-0.827674f,0.56121f,0.0f},{-0.796076f,0.605197f,0.0f},{-0.827681f,0.561199f,0.0f}, - {-0.762141f,0.647411f,0.0f},{-0.796082f,0.605188f,0.0f},{-0.762151f,0.6474f,0.0f}, - {-0.725973f,0.687723f,0.0f},{-0.687676f,0.726018f,0.0f},{-0.725983f,0.687712f,0.0f}, - {-0.647361f,0.762183f,0.0f},{-0.687687f,0.726007f,0.0f},{-0.647375f,0.762171f,0.0f}, - {-0.605148f,0.796113f,0.0f},{-0.56116f,0.827707f,0.0f},{-0.605164f,0.796101f,0.0f}, - {-0.515527f,0.856873f,0.0f},{-0.561178f,0.827695f,0.0f},{-0.515545f,0.856862f,0.0f}, - {-0.468383f,0.883526f,0.0f},{-0.419866f,0.907586f,0.0f},{-0.468401f,0.883516f,0.0f}, - {-0.370116f,0.928986f,0.0f},{-0.419884f,0.907578f,0.0f},{-0.370136f,0.928977f,0.0f}, - {-0.319279f,0.947661f,0.0f},{-0.267507f,0.963556f,0.0f},{-0.319301f,0.947653f,0.0f}, - {-0.214954f,0.976624f,0.0f},{-0.267528f,0.96355f,0.0f},{-0.214973f,0.97662f,0.0f}, - {-0.16177f,0.986829f,0.0f},{-0.108111f,0.994139f,0.0f},{-0.161786f,0.986826f,0.0f}, - {-0.0538298f,0.99855f,0.0f},{-0.108145f,0.994135f,0.0f},{-0.0538045f,0.998551f,0.0f}, - {-1.19209e-007f,1.0f,0.0f},{-0.69564f,0.718391f,-2.2967e-015f},{-0.66431f,0.747457f,4.30948e-015f}, - {-0.664312f,0.747455f,-2.35972e-015f},{-0.725699f,0.688012f,-2.11837e-015f},{-0.7257f,0.688011f,-4.7761e-015f}, - {-0.754433f,0.656377f,-3.42054e-015f},{-0.631769f,0.775156f,1.02241e-015f},{-0.695642f,0.718389f,1.63365e-016f}, - {-0.631766f,0.775159f,1.30928e-015f},{-0.598073f,0.801442f,-4.02386e-016f},{-0.59807f,0.801444f,3.14782e-015f}, - {-0.563281f,0.826266f,2.05014e-015f},{-0.563284f,0.826264f,2.15457e-016f},{-0.527466f,0.849576f,3.68245e-015f}, - {-0.527463f,0.849578f,-9.04405e-017f},{-0.490682f,0.871339f,2.82586e-015f},{-0.453007f,0.891507f,-1.11336e-015f}, - {-0.490685f,0.871337f,-3.98744e-016f},{-0.453005f,0.891508f,8.87668e-016f},{-0.414499f,0.91005f,3.62163e-016f}, - {-0.414503f,0.910048f,-2.33213e-015f},{-0.294734f,0.955579f,1.39294e-015f},{-0.335291f,0.942115f,1.29026e-015f}, - {-0.294731f,0.95558f,9.56661e-016f},{-0.375241f,0.926927f,3.09815e-015f},{-0.375238f,0.926928f,3.53892e-016f}, - {-0.335293f,0.942114f,1.78659e-015f},{-0.253636f,0.9673f,4.48455e-017f},{-0.212075f,0.977253f,9.31315e-017f}, - {-0.253634f,0.9673f,-3.87537e-015f},{-0.212073f,0.977254f,1.53976e-015f},{-0.170124f,0.985423f,-1.33727e-015f}, - {-0.127866f,0.991791f,1.31222e-015f},{-0.127868f,0.991791f,-1.43479e-015f},{-0.170128f,0.985422f,-1.08544e-015f}, - {-0.0853729f,0.996349f,-2.96511e-015f},{-0.0853758f,0.996349f,1.45956e-015f},{-0.0427249f,0.999087f,-1.45746e-015f}, - {-0.0427275f,0.999087f,2.97938e-015f},{-1.41083e-016f,1.0f,0.0f},{-1.54309e-016f,1.0f,0.0f}, - {-0.781789f,0.623543f,-8.12728e-016f},{-0.754434f,0.656376f,-2.4015e-015f},{-0.78179f,0.623541f,-9.35104e-016f}, - {-0.807717f,0.589571f,-3.8494e-015f},{-0.807718f,0.589569f,8.37214e-016f},{-0.832169f,0.554522f,-3.65599e-015f}, - {-0.855102f,0.51846f,-4.07623e-015f},{-0.832171f,0.554519f,2.81113e-015f},{-0.855104f,0.518456f,2.96789e-016f}, - {-0.876473f,0.48145f,3.95802e-015f},{-0.876475f,0.481448f,6.89284e-016f},{-0.896244f,0.443562f,7.12651e-016f}, - {-0.914377f,0.404864f,-1.93578e-015f},{-0.896245f,0.443559f,5.43092e-015f},{-0.914379f,0.40486f,-5.84661e-015f}, - {-0.930841f,0.365425f,1.20115e-015f},{-0.930842f,0.365423f,3.55128e-015f},{-0.945604f,0.32532f,2.23888e-015f}, - {-0.95864f,0.284621f,5.39664e-015f},{-0.945605f,0.325317f,4.0151e-015f},{-0.958641f,0.284618f,-2.22393e-015f}, - {-0.969926f,0.243401f,4.33048e-015f},{-0.969926f,0.243399f,4.23515e-015f},{-0.97944f,0.201738f,4.2777e-015f}, - {-0.987165f,0.159705f,5.95984e-015f},{-0.97944f,0.201735f,6.68731e-016f},{-0.987165f,0.159703f,-8.70338e-015f}, - {-0.993087f,0.117381f,-6.76187e-015f},{-0.993087f,0.117378f,7.13795e-015f},{-0.997195f,0.0748434f,-4.49833e-016f}, - {-0.999482f,0.0321679f,5.88869e-015f},{-0.997196f,0.07484f,-1.11652e-015f},{-0.999483f,0.0321656f,-2.74195e-016f}, - {-0.999944f,-0.0105657f,5.2388e-015f},{-0.999944f,-0.0105686f,-6.15843e-016f},{-0.99858f,-0.05328f,7.92959e-015f}, - {-0.995391f,-0.0958981f,0.0f},{-0.99858f,-0.0532825f,4.50329e-015f},{0.9999f,0.0141122f,0.0f}, - {0.9999f,-0.0141124f,0.0f},{0.9999f,0.0141125f,0.0f},{0.999104f,0.0423259f,0.0f}, - {0.999104f,0.0423254f,0.0f},{0.997511f,0.0705055f,0.0f},{0.997511f,0.0705051f,0.0f}, - {0.995124f,0.0986284f,0.0f},{0.995124f,0.0986291f,0.0f},{0.991944f,0.126674f,0.0f}, - {0.991944f,0.126673f,0.0f},{0.987974f,0.154618f,0.0f},{0.987974f,0.154617f,0.0f}, - {0.983217f,0.182438f,0.0f},{0.983217f,0.182439f,0.0f},{0.977677f,0.210114f,0.0f}, - {0.977677f,0.210113f,0.0f},{0.971358f,0.237622f,0.0f},{0.971358f,0.237622f,0.0f}, - {0.964265f,0.26494f,0.0f},{0.964265f,0.264941f,0.0f},{0.956403f,0.292049f,0.0f}, - {0.956404f,0.292048f,0.0f},{0.94778f,0.318924f,0.0f},{0.947781f,0.318923f,0.0f}, - {0.938403f,0.345544f,0.0f},{0.938402f,0.345545f,0.0f},{0.928277f,0.371891f,0.0f}, - {0.928277f,0.37189f,0.0f},{0.917411f,0.39794f,0.0f},{0.917412f,0.397939f,0.0f}, - {0.905816f,0.423672f,0.0f},{0.905815f,0.423672f,0.0f},{0.893498f,0.449067f,0.0f}, - {0.893498f,0.449067f,0.0f},{0.880469f,0.474105f,0.0f},{0.880469f,0.474104f,0.0f}, - {0.866738f,0.498763f,0.0f},{0.866738f,0.498764f,0.0f},{0.852317f,0.523026f,0.0f}, - {0.9999f,-0.0141122f,0.0f},{0.999104f,-0.0423254f,0.0f},{0.999104f,-0.0423259f,0.0f}, - {0.997511f,-0.0705055f,0.0f},{0.997511f,-0.0705051f,0.0f},{0.995124f,-0.0986291f,0.0f}, - {0.995124f,-0.0986285f,0.0f},{0.991944f,-0.126673f,0.0f},{0.991944f,-0.126674f,0.0f}, - {0.987974f,-0.154618f,0.0f},{0.987974f,-0.154617f,0.0f},{0.983217f,-0.182439f,0.0f}, - {0.983217f,-0.182438f,0.0f},{0.977677f,-0.210113f,0.0f},{0.977677f,-0.210114f,0.0f}, - {0.971358f,-0.237622f,0.0f},{0.971358f,-0.237622f,0.0f},{0.964265f,-0.264941f,0.0f}, - {0.964265f,-0.26494f,0.0f},{0.956404f,-0.292048f,0.0f},{0.956403f,-0.292049f,0.0f}, - {0.94778f,-0.318924f,0.0f},{0.947781f,-0.318923f,0.0f},{0.938402f,-0.345545f,0.0f}, - {0.938403f,-0.345544f,0.0f},{0.928277f,-0.37189f,0.0f},{0.928277f,-0.371891f,0.0f}, - {0.917411f,-0.39794f,0.0f},{0.917412f,-0.397939f,0.0f},{0.905815f,-0.423672f,0.0f}, - {0.905816f,-0.423672f,0.0f},{0.893498f,-0.449067f,0.0f},{0.893498f,-0.449067f,0.0f}, - {0.880469f,-0.474104f,0.0f},{0.880469f,-0.474104f,0.0f},{0.866738f,-0.498764f,0.0f}, - {0.866738f,-0.498764f,0.0f},{0.852317f,-0.523026f,0.0f},{0.5f,-0.866025f,-7.6671e-016f}, - {0.884642f,-0.466272f,2.20644e-016f},{0.777982f,-0.628286f,5.89571e-016f},{0.778033f,-0.628223f,-5.53502e-016f}, - {0.957996f,-0.286781f,1.48116e-016f},{0.88468f,-0.466199f,-5.1317e-016f},{0.958053f,-0.286593f,-1.63827e-016f}, - {0.995238f,0.0974696f,3.44802e-016f},{0.995356f,-0.0962625f,-1.06856e-016f},{0.995222f,0.097635f,-4.56953e-017f}, - {0.995334f,-0.0964852f,-1.31963e-016f},{0.642168f,-0.766564f,0.0f},{0.482138f,-0.876095f,-7.37654e-016f}, - {0.642017f,-0.76669f,-1.10523e-015f},{0.481942f,-0.876203f,7.37698e-016f},{0.303947f,-0.952689f,0.0f}, - {0.303789f,-0.952739f,0.0f},{0.715999f,-0.698102f,1.29175e-016f},{0.945908f,-0.324434f,-5.70109e-016f}, - {0.945908f,-0.324434f,-3.35048e-016f},{0.851699f,-0.524032f,7.27349e-016f},{0.194654f,0.980872f,-1.44073e-016f}, - {-2.96059e-016f,1.0f,-3.28692e-031f},{-0.384009f,0.923329f,-2.13958e-016f},{-0.382179f,0.924088f,9.40449e-016f}, - {-0.196168f,0.98057f,-7.62016e-016f},{-0.194653f,0.980872f,6.1653e-016f},{-0.555293f,0.831655f,6.67161e-016f}, - {-0.707075f,0.707139f,-4.57955e-016f},{-0.707765f,0.706447f,4.57334e-016f},{-0.831545f,0.555458f,8.32431e-017f}, - {-0.831851f,0.554999f,-2.05391e-016f},{-0.556611f,0.830773f,-3.85076e-016f},{-0.980825f,0.19489f,-3.63028e-018f}, - {-0.98085f,0.194766f,-2.22141e-016f},{-0.924075f,0.382212f,5.86375e-016f},{-0.923954f,0.382504f,-2.95917e-016f}, - {-1.0f,1.85037e-017f,0.0f},{0.196168f,0.98057f,-1.01605e-015f},{0.382179f,0.924088f,-1.22649e-015f}, - {0.384009f,0.923329f,-1.99588e-016f},{0.556611f,0.830773f,-1.04527e-016f},{0.555293f,0.831655f,-4.10999e-016f}, - {0.707766f,0.706447f,5.22876e-016f},{0.707075f,0.707139f,5.23388e-016f},{0.831545f,0.555458f,-6.15467e-016f}, - {0.831851f,0.554999f,-4.10782e-016f},{0.924075f,0.382212f,-1.36791e-015f},{0.98085f,0.194766f,-8.7013e-016f}, - {1.0f,3.33067e-016f,0.0f},{1.0f,2.96059e-016f,0.0f},{0.194654f,0.980872f,0.0f}, - {-0.384009f,0.923329f,7.57929e-018f},{-0.382179f,0.924088f,2.41708e-016f},{-0.196168f,0.98057f,-1.26994e-016f}, - {-0.194653f,0.980872f,-9.14525e-017f},{-0.555293f,0.831655f,4.10524e-016f},{-0.707075f,0.707139f,1.14487e-016f}, - {-0.707765f,0.706447f,-5.72353e-016f},{-0.831545f,0.555458f,-9.69264e-018f},{-0.831851f,0.554999f,4.97064e-016f}, - {-0.556611f,0.830773f,5.13819e-016f},{-1.0f,2.96059e-016f,0.0f},{-0.980825f,0.19489f,-1.02781e-015f}, - {-0.98085f,0.194766f,8.39508e-016f},{-0.924075f,0.382212f,4.37371e-016f},{-0.923954f,0.382504f,1.06278e-016f}, - {-1.0f,5.92119e-016f,0.0f},{0.196168f,0.98057f,-7.25968e-017f},{0.382179f,0.924088f,0.0f}, - {0.384009f,0.923329f,-1.42112e-016f},{0.556611f,0.830773f,-5.13435e-016f},{0.555293f,0.831655f,2.055e-016f}, - {0.707766f,0.706447f,-1.04673e-015f},{0.707075f,0.707139f,2.6167e-016f},{0.831545f,0.555458f,6.15467e-016f}, - {0.98085f,0.194766f,7.25975e-016f},{0.980825f,0.19489f,-8.70204e-016f},{1.0f,1.85037e-017f,0.0f}, - {0.989489f,0.144611f,-3.80291e-017f},{0.99711f,-0.0759712f,-5.623e-017f},{0.933664f,0.358149f,-9.55933e-016f}, - {0.933664f,0.358149f,1.99014e-016f},{0.835272f,0.549837f,0.0f},{0.957691f,-0.2878f,0.0f}, - {-1.0f,-1.53707e-012f,0.0f},{-1.0f,-8.42952e-008f,0.0f},{3.07487e-012f,-1.0f,0.0f}, - {3.07526e-012f,-1.0f,0.0f},{0.673422f,0.739259f,0.0f},{0.703582f,0.710614f,0.0f}, - {0.673421f,0.739259f,0.0f},{0.642094f,0.766626f,0.0f},{0.642096f,0.766624f,0.0f}, - {0.609658f,0.792665f,0.0f},{0.60966f,0.792663f,0.0f},{0.576168f,0.817331f,0.0f}, - {0.576166f,0.817333f,0.0f},{0.541677f,0.840587f,0.0f},{0.54168f,0.840585f,0.0f}, - {0.506252f,0.862386f,0.0f},{0.506254f,0.862384f,0.0f},{0.469953f,0.882691f,0.0f}, - {0.46995f,0.882693f,0.0f},{0.432835f,0.901473f,0.0f},{0.432838f,0.901471f,0.0f}, - {0.394972f,0.918693f,0.0f},{0.394974f,0.918692f,0.0f},{0.356428f,0.934323f,0.0f}, - {0.356425f,0.934324f,0.0f},{0.317262f,0.948338f,0.0f},{0.317264f,0.948337f,0.0f}, - {0.277549f,0.960711f,0.0f},{0.277552f,0.960711f,0.0f},{0.237359f,0.971422f,0.0f}, - {0.237356f,0.971423f,0.0f},{0.196753f,0.980453f,0.0f},{0.196756f,0.980453f,0.0f}, - {0.155809f,0.987787f,0.0f},{0.155812f,0.987787f,0.0f},{0.114599f,0.993412f,0.0f}, - {0.114596f,0.993412f,0.0f},{0.0731848f,0.997318f,0.0f},{0.073187f,0.997318f,0.0f}, - {0.0316463f,0.999499f,0.0f},{0.0316489f,0.999499f,0.0f},{-0.00994395f,0.999951f,0.0f}, - {-0.00994627f,0.999951f,0.0f},{-0.0515206f,0.998672f,0.0f},{0.703582f,0.710614f,0.0f}, - {0.732525f,0.680741f,0.0f},{0.732526f,0.680739f,0.0f},{0.760202f,0.649687f,0.0f}, - {0.760201f,0.649688f,0.0f},{0.786563f,0.61751f,0.0f},{0.786561f,0.617513f,0.0f}, - {0.811561f,0.584268f,0.0f},{0.811563f,0.584265f,0.0f},{0.835158f,0.55001f,0.0f}, - {0.835156f,0.550013f,0.0f},{0.857309f,0.514803f,0.0f},{0.857307f,0.514806f,0.0f}, - {0.877974f,0.478708f,0.0f},{0.877976f,0.478705f,0.0f},{0.897124f,0.441779f,0.0f}, - {0.897123f,0.441782f,0.0f},{0.91472f,0.404088f,0.0f},{0.914719f,0.404092f,0.0f}, - {0.930732f,0.365702f,0.0f},{0.930733f,0.365699f,0.0f},{0.945136f,0.326677f,0.0f}, - {0.945135f,0.326679f,0.0f},{0.957904f,0.287089f,0.0f},{0.957903f,0.287092f,0.0f}, - {0.969013f,0.247008f,0.0f},{0.969014f,0.247006f,0.0f},{0.978448f,0.206494f,0.0f}, - {0.978447f,0.206496f,0.0f},{0.986189f,0.165625f,0.0f},{0.986188f,0.165628f,0.0f}, - {0.992223f,0.124472f,0.0f},{0.992223f,0.12447f,0.0f},{0.996541f,0.0830991f,0.0f}, - {0.996541f,0.0831017f,0.0f},{0.999135f,0.041585f,0.0f},{0.999135f,0.0415873f,0.0f}, - {1.0f,1.92868e-016f,0.0f},{1.0f,8.64379e-008f,0.0f},{0.998361f,0.0572333f,1.89979e-016f}, - {1.0f,-3.3736e-016f,0.0f},{0.993449f,0.114279f,0.0f},{0.569266f,0.822154f,0.0f}, - {0.413628f,0.910446f,0.0f},{0.569567f,0.821945f,0.0f},{0.413191f,0.910644f,0.0f}, - {0.244303f,0.969699f,0.0f},{0.243984f,0.969779f,0.0f},{0.0672808f,0.997734f,0.0f}, - {-0.11203f,0.993705f,0.0f},{0.0668255f,0.997765f,0.0f},{-0.2878f,0.957691f,0.0f}, - {-0.112396f,0.993663f,0.0f},{0.822154f,0.569266f,0.0f},{0.821945f,0.569567f,0.0f}, - {0.910446f,0.413628f,0.0f},{0.969699f,0.244303f,0.0f},{0.910644f,0.413191f,0.0f}, - {0.969779f,0.243985f,0.0f},{0.997734f,0.0672808f,0.0f},{0.997765f,0.0668255f,0.0f}, - {0.993705f,-0.11203f,0.0f},{0.993663f,-0.112396f,0.0f},{-0.567551f,0.823338f,2.91569e-016f}, - {-0.480256f,0.877128f,-1.36506e-015f},{-0.480275f,0.877118f,1.00957e-015f},{-0.567558f,0.823334f,5.00925e-017f}, - {-0.648872f,0.760897f,1.44361e-016f},{-0.387941f,0.921684f,1.25621e-016f},{-0.387915f,0.921695f,6.82191e-016f}, - {-0.291525f,0.956563f,-6.81027e-016f},{-0.291499f,0.956571f,-7.61943e-016f},{-0.192047f,0.981386f,6.553e-016f}, - {-0.192025f,0.98139f,1.77659e-017f},{-0.0904984f,0.995897f,-8.37279e-018f},{-0.0905325f,0.995893f,-1.67519e-017f}, - {0.0119218f,0.999929f,1.48019e-015f},{0.114279f,0.993449f,0.0f},{0.0121699f,0.999926f,0.0f}, - {-0.723369f,0.690461f,-9.58068e-017f},{-0.648879f,0.760892f,1.7081e-016f},{-0.723384f,0.690446f,-1.49808e-016f}, - {-0.790265f,0.612765f,1.16954e-016f},{-0.790282f,0.612743f,-1.7266e-016f},{-0.848856f,0.528625f,3.32998e-016f}, - {-0.898522f,0.438929f,-5.4393e-016f},{-0.84887f,0.528601f,4.57239e-016f},{-0.898532f,0.438908f,-2.60926e-016f}, - {-0.938749f,0.344602f,1.75687e-016f},{-0.938761f,0.34457f,5.73784e-016f},{-0.969101f,0.246664f,-5.54286e-016f}, - {-0.989269f,0.146104f,0.0f},{-0.969162f,0.246424f,-8.55909e-016f},{-0.863082f,-0.505064f,-2.96041e-016f}, - {-0.939433f,-0.342733f,-1.39064e-015f},{-0.757002f,-0.653412f,-4.80673e-016f},{-0.98457f,-0.174993f,-7.12538e-016f}, - {-0.999951f,-0.00988645f,0.0f},{-0.625744f,-0.780028f,-1.42742e-017f},{-0.47631f,-0.879277f,-1.99991e-016f}, - {-0.316965f,-0.948437f,-3.53543e-016f},{-0.155878f,-0.987776f,8.15532e-017f},{-1.95899e-012f,-1.0f,0.0f}, - {-1.95907e-012f,-1.0f,0.0f},{-1.0f,4.18691e-016f,0.0f},{-1.0f,2.09346e-016f,0.0f}, - {-2.61682e-016f,1.0f,0.0f},{-8.42937e-008f,1.0f,0.0f},{-0.432409f,0.901678f,-4.8007e-016f}, - {-0.568002f,0.823027f,1.63014e-016f},{-0.288928f,0.957351f,2.01882e-015f},{-0.288928f,0.957351f,0.0f}, - {-0.143098f,0.989708f,7.32531e-016f},{-0.690346f,0.72348f,-1.05257e-015f},{-4.36853e-016f,1.0f,0.0f}, - {-9.28313e-016f,1.0f,0.0f},{-0.794923f,0.60671f,-3.38738e-016f},{-0.878607f,0.477546f,-8.64155e-016f}, - {-0.939939f,0.341342f,-3.74916e-016f},{-0.979111f,0.203325f,0.0f},{-0.610942f,0.791675f,0.0f}, - {-0.64341f,0.765522f,0.0f},{-0.674759f,0.738038f,0.0f},{-0.643409f,0.765522f,0.0f}, - {-0.704936f,0.709271f,0.0f},{-0.674758f,0.738039f,0.0f},{-0.704934f,0.709273f,0.0f}, - {-0.733887f,0.679272f,0.0f},{-0.761562f,0.648092f,0.0f},{-0.733885f,0.679273f,0.0f}, - {-0.787914f,0.615785f,0.0f},{-0.761561f,0.648094f,0.0f},{-0.787913f,0.615787f,0.0f}, - {-0.812896f,0.582409f,0.0f},{-0.836465f,0.54802f,0.0f},{-0.812895f,0.58241f,0.0f}, - {-0.858581f,0.512678f,0.0f},{-0.836464f,0.548021f,0.0f},{-0.85858f,0.51268f,0.0f}, - {-0.879204f,0.476445f,0.0f},{-0.898299f,0.439385f,0.0f},{-0.879203f,0.476447f,0.0f}, - {-0.915833f,0.40156f,0.0f},{-0.898298f,0.439387f,0.0f},{-0.915832f,0.401562f,0.0f}, - {-0.931774f,0.363038f,0.0f},{-0.946097f,0.323885f,0.0f},{-0.931774f,0.36304f,0.0f}, - {-0.958774f,0.284168f,0.0f},{-0.946096f,0.323886f,0.0f},{-0.958774f,0.28417f,0.0f}, - {-0.969786f,0.243959f,0.0f},{-0.969785f,0.24396f,0.0f},{-0.577412f,0.816453f,0.0f}, - {-0.577413f,0.816452f,0.0f},{-0.542879f,0.839811f,0.0f},{-0.507402f,0.861709f,0.0f}, - {-0.54288f,0.83981f,0.0f},{-0.471044f,0.88211f,0.0f},{-0.507404f,0.861708f,0.0f}, - {-0.471046f,0.882109f,0.0f},{-0.433866f,0.900977f,0.0f},{-0.395935f,0.918278f,0.0f}, - {-0.433869f,0.900976f,0.0f},{-0.357316f,0.933984f,0.0f},{-0.395937f,0.918278f,0.0f}, - {-0.357318f,0.933983f,0.0f},{-0.318075f,0.948065f,0.0f},{-0.278282f,0.960499f,0.0f}, - {-0.318077f,0.948065f,0.0f},{-0.238005f,0.971264f,0.0f},{-0.278284f,0.960499f,0.0f}, - {-0.238007f,0.971263f,0.0f},{-0.197314f,0.98034f,0.0f},{-0.15628f,0.987713f,0.0f}, - {-0.197316f,0.98034f,0.0f},{-0.114975f,0.993368f,0.0f},{-0.156283f,0.987712f,0.0f}, - {-0.114977f,0.993368f,0.0f},{-0.0734701f,0.997297f,0.0f},{-0.0318375f,0.999493f,0.0f}, - {-0.0734722f,0.997297f,0.0f},{0.00985025f,0.999951f,0.0f},{-0.0318392f,0.999493f,0.0f}, - {0.00984923f,0.999951f,0.0f},{0.0515206f,0.998672f,0.0f},{-0.866025f,0.5f,-4.07254e-016f}, - {-0.0706974f,-0.997498f,4.22047e-015f},{-0.042441f,-0.999099f,-4.49972e-015f},{-0.0424415f,-0.999099f,-8.87378e-015f}, - {0.0141508f,-0.9999f,-1.48015e-015f},{-0.014151f,-0.9999f,0.0f},{-0.0141508f,-0.9999f,-7.42169e-015f}, - {-0.0706979f,-0.997498f,1.47659e-015f},{-0.0988972f,-0.995098f,5.89216e-015f},{-0.0988976f,-0.995098f,5.59937e-015f}, - {-0.127018f,-0.9919f,-1.17465e-014f},{-0.127018f,-0.9919f,-1.72436e-014f},{-0.155036f,-0.987909f,-5.3906e-015f}, - {-0.155037f,-0.987909f,5.84959e-015f},{-0.182932f,-0.983126f,-2.36905e-015f},{-0.182931f,-0.983126f,8.73191e-015f}, - {-0.238259f,-0.971202f,8.626e-015f},{-0.265648f,-0.96407f,-7.28139e-015f},{-0.265647f,-0.96407f,-1.29898e-014f}, - {-0.210679f,-0.977555f,-4.54082e-015f},{-0.21068f,-0.977555f,0.0f},{-0.238258f,-0.971202f,-1.29121e-014f}, - {-0.292823f,-0.956167f,-1.73386e-015f},{-0.292823f,-0.956167f,0.0f},{-0.319764f,-0.947497f,5.61031e-015f}, - {-0.319764f,-0.947497f,-1.89338e-015f},{-0.346449f,-0.938069f,0.0f},{-0.346449f,-0.938069f,7.60587e-015f}, - {-0.372856f,-0.927889f,9.90971e-015f},{-0.424755f,-0.905308f,5.3605e-015f},{-0.424755f,-0.905309f,3.304e-016f}, - {-0.398966f,-0.916966f,4.7247e-015f},{-0.398965f,-0.916966f,5.42953e-015f},{-0.372857f,-0.927889f,-7.70196e-015f}, - {-0.450204f,-0.892926f,0.0f},{-0.450204f,-0.892926f,5.33148e-015f},{-0.475292f,-0.879828f,1.04193e-014f}, - {-0.475292f,-0.879828f,1.04193e-014f},{0.014151f,-0.9999f,8.90184e-015f},{0.042441f,-0.999099f,-1.04784e-014f}, - {0.0424415f,-0.999099f,-1.61429e-014f},{0.0706974f,-0.997498f,8.65025e-015f},{0.0988972f,-0.995098f,2.94608e-015f}, - {0.0706979f,-0.997498f,-1.09175e-014f},{0.0988976f,-0.995098f,1.39984e-015f},{0.127018f,-0.9919f,-1.06363e-014f}, - {0.127018f,-0.9919f,9.63801e-015f},{0.155036f,-0.987909f,-7.40539e-015f},{0.182931f,-0.983126f,-7.57272e-015f}, - {0.155037f,-0.987909f,-2.5165e-015f},{0.182932f,-0.983126f,2.18298e-015f},{0.210679f,-0.977555f,7.64703e-015f}, - {0.21068f,-0.977555f,-4.23518e-015f},{0.238258f,-0.971202f,-1.03144e-014f},{0.265647f,-0.96407f,-7.60334e-015f}, - {0.238259f,-0.971202f,1.75636e-015f},{0.265648f,-0.96407f,1.0869e-014f},{0.292823f,-0.956167f,5.12754e-015f}, - {0.292823f,-0.956167f,-8.24033e-015f},{0.319764f,-0.947497f,3.07966e-016f},{0.346449f,-0.938069f,-1.05337e-014f}, - {0.319764f,-0.947497f,-8.2576e-015f},{0.346449f,-0.938069f,-1.87656e-015f},{0.372856f,-0.927889f,3.1746e-015f}, - {0.372857f,-0.927889f,-3.31849e-015f},{0.398965f,-0.916966f,3.06056e-015f},{0.424755f,-0.905309f,7.49538e-015f}, - {0.398966f,-0.916966f,4.02549e-015f},{0.424755f,-0.905308f,1.46943e-015f},{0.450204f,-0.892926f,-1.18685e-014f}, - {0.450204f,-0.892926f,1.25672e-015f},{0.475292f,-0.879828f,4.58408e-015f},{0.475292f,-0.879828f,1.83809e-015f}, - {0.623541f,-0.78179f,-1.15728e-015f},{0.589568f,-0.807718f,-2.39133e-015f},{0.589571f,-0.807717f,9.60223e-017f}, - {0.656376f,-0.754434f,-5.72909e-015f},{0.656377f,-0.754433f,-7.23689e-015f},{0.688011f,-0.7257f,1.01846e-015f}, - {0.554522f,-0.832169f,1.64171e-015f},{0.623543f,-0.781789f,4.8494e-015f},{0.554519f,-0.832171f,4.10543e-015f}, - {0.51846f,-0.855102f,-9.96661e-016f},{0.518456f,-0.855104f,1.53494e-015f},{0.481448f,-0.876475f,-5.18977e-015f}, - {0.48145f,-0.876473f,-4.02026e-015f},{0.443562f,-0.896244f,-2.65341e-015f},{0.443559f,-0.896245f,-3.96662e-015f}, - {0.40486f,-0.914379f,0.0f},{0.365425f,-0.930841f,0.0f},{0.404864f,-0.914377f,-2.39728e-015f}, - {0.365423f,-0.930842f,0.0f},{0.325317f,-0.945605f,-3.67284e-015f},{0.32532f,-0.945604f,0.0f}, - {0.201738f,-0.97944f,3.58358e-015f},{0.243399f,-0.969926f,-1.44121e-015f},{0.201735f,-0.97944f,-3.41043e-015f}, - {0.284621f,-0.95864f,7.36158e-015f},{0.284618f,-0.958641f,-5.6763e-015f},{0.243401f,-0.969926f,5.74311e-015f}, - {0.159705f,-0.987165f,9.45645e-016f},{0.117381f,-0.993087f,-1.03704e-014f},{0.159703f,-0.987165f,-4.89956e-015f}, - {0.117378f,-0.993087f,-6.9502e-016f},{0.07484f,-0.997196f,0.0f},{0.0321655f,-0.999483f,6.29904e-015f}, - {0.032168f,-0.999482f,-5.91813e-015f},{0.0748434f,-0.997195f,-8.86324e-016f},{-0.0105685f,-0.999944f,-5.7957e-015f}, - {-0.0105657f,-0.999944f,5.92086e-015f},{-0.0532826f,-0.99858f,0.0f},{-0.05328f,-0.99858f,0.0f}, - {-0.0958981f,-0.995391f,0.0f},{0.718389f,-0.695642f,-2.12686e-015f},{0.688012f,-0.725699f,-3.16696e-015f}, - {0.718391f,-0.69564f,6.73571e-017f},{0.747455f,-0.664312f,3.69231e-016f},{0.747457f,-0.66431f,-4.91688e-015f}, - {0.775156f,-0.631769f,-3.61476e-016f},{0.801442f,-0.598073f,-8.85326e-016f},{0.775159f,-0.631767f,-5.10676e-016f}, - {0.801444f,-0.59807f,-2.51436e-015f},{0.826264f,-0.563284f,-2.63707e-016f},{0.826266f,-0.563281f,-4.79448e-015f}, - {0.849576f,-0.527466f,2.47204e-015f},{0.871337f,-0.490685f,-7.45068e-016f},{0.849578f,-0.527463f,6.28814e-016f}, - {0.871339f,-0.490682f,-4.66609e-016f},{0.891507f,-0.453007f,-5.36872e-018f},{0.891508f,-0.453005f,1.90646e-015f}, - {0.910048f,-0.414503f,-9.01947e-016f},{0.926927f,-0.375241f,-7.55498e-016f},{0.91005f,-0.414499f,-3.44627e-015f}, - {0.926928f,-0.375238f,-8.26493e-018f},{0.942114f,-0.335293f,7.4317e-016f},{0.942115f,-0.335291f,-1.38718e-015f}, - {0.955579f,-0.294734f,-6.60361e-018f},{0.9673f,-0.253636f,1.39186e-016f},{0.95558f,-0.294731f,-4.80822e-016f}, - {0.9673f,-0.253634f,-1.1694e-015f},{0.977253f,-0.212076f,-1.09093e-015f},{0.977254f,-0.212073f,-1.42807e-015f}, - {0.985422f,-0.170128f,-8.58064e-016f},{0.991791f,-0.127868f,1.21011e-015f},{0.985423f,-0.170124f,3.47036e-015f}, - {0.991791f,-0.127866f,2.85545e-016f},{0.996349f,-0.0853758f,-4.87227e-016f},{0.996349f,-0.0853729f,3.21028e-015f}, - {0.999087f,-0.0427275f,-3.76158e-016f},{1.0f,-1.41083e-016f,0.0f},{0.999087f,-0.0427249f,-2.9625e-015f}, - {1.0f,-1.54309e-016f,0.0f},{5.04647e-017f,-1.0f,0.0f},{5.3829e-017f,-1.0f,0.0f}, - {0.0541567f,-0.998532f,0.0f},{0.108145f,-0.994135f,0.0f},{0.0541301f,-0.998534f,0.0f}, - {0.161808f,-0.986822f,0.0f},{0.108105f,-0.99414f,0.0f},{0.161767f,-0.986829f,0.0f}, - {0.214992f,-0.976616f,0.0f},{0.267546f,-0.963545f,0.0f},{0.214964f,-0.976622f,0.0f}, - {0.319328f,-0.947644f,0.0f},{0.267531f,-0.963549f,0.0f},{0.319303f,-0.947653f,0.0f}, - {0.370172f,-0.928963f,0.0f},{0.419923f,-0.90756f,0.0f},{0.370136f,-0.928977f,0.0f}, - {0.46844f,-0.883495f,0.0f},{0.419887f,-0.907577f,0.0f},{0.468409f,-0.883512f,0.0f}, - {0.515581f,-0.856841f,0.0f},{0.56121f,-0.827674f,0.0f},{0.515559f,-0.856854f,0.0f}, - {0.605197f,-0.796076f,0.0f},{0.561199f,-0.827681f,0.0f},{0.605188f,-0.796082f,0.0f}, - {0.647411f,-0.762141f,0.0f},{0.687723f,-0.725973f,0.0f},{0.6474f,-0.762151f,0.0f}, - {0.726018f,-0.687676f,0.0f},{0.687712f,-0.725983f,0.0f},{0.726007f,-0.687687f,0.0f}, - {0.762183f,-0.647361f,0.0f},{0.796113f,-0.605148f,0.0f},{0.762171f,-0.647375f,0.0f}, - {0.827707f,-0.56116f,0.0f},{0.796101f,-0.605164f,0.0f},{0.827695f,-0.561178f,0.0f}, - {0.856873f,-0.515527f,0.0f},{0.883526f,-0.468383f,0.0f},{0.856862f,-0.515545f,0.0f}, - {0.907586f,-0.419866f,0.0f},{0.883516f,-0.4684f,0.0f},{0.907578f,-0.419884f,0.0f}, - {0.928986f,-0.370116f,0.0f},{0.947661f,-0.319279f,0.0f},{0.928977f,-0.370136f,0.0f}, - {0.963556f,-0.267507f,0.0f},{0.947653f,-0.319301f,0.0f},{0.96355f,-0.267528f,0.0f}, - {0.976624f,-0.214954f,0.0f},{0.986829f,-0.16177f,0.0f},{0.97662f,-0.214973f,0.0f}, - {0.994139f,-0.108111f,0.0f},{0.986826f,-0.161786f,0.0f},{0.994135f,-0.108145f,0.0f}, - {0.99855f,-0.0538298f,0.0f},{1.0f,2.15316e-016f,0.0f},{0.998551f,-0.0538044f,0.0f}, - {1.0f,2.35502e-016f,0.0f},{-0.0541566f,-0.998532f,0.0f},{-0.0541302f,-0.998534f,0.0f}, - {-0.108145f,-0.994135f,0.0f},{-0.161808f,-0.986822f,0.0f},{-0.108105f,-0.99414f,0.0f}, - {-0.214992f,-0.976616f,0.0f},{-0.161767f,-0.986829f,0.0f},{-0.214964f,-0.976622f,0.0f}, - {-0.267546f,-0.963545f,0.0f},{-0.319328f,-0.947644f,0.0f},{-0.267531f,-0.963549f,0.0f}, - {-0.370172f,-0.928963f,0.0f},{-0.319303f,-0.947653f,0.0f},{-0.370136f,-0.928977f,0.0f}, - {-0.419923f,-0.90756f,0.0f},{-0.46844f,-0.883495f,0.0f},{-0.419887f,-0.907577f,0.0f}, - {-0.515581f,-0.856841f,0.0f},{-0.468409f,-0.883512f,0.0f},{-0.515559f,-0.856854f,0.0f}, - {-0.56121f,-0.827674f,0.0f},{-0.605197f,-0.796076f,0.0f},{-0.561199f,-0.827681f,0.0f}, - {-0.647411f,-0.762141f,0.0f},{-0.605188f,-0.796082f,0.0f},{-0.6474f,-0.762151f,0.0f}, - {-0.687723f,-0.725973f,0.0f},{-0.726018f,-0.687676f,0.0f},{-0.687712f,-0.725983f,0.0f}, - {-0.762183f,-0.647361f,0.0f},{-0.726007f,-0.687687f,0.0f},{-0.762171f,-0.647375f,0.0f}, - {-0.796113f,-0.605148f,0.0f},{-0.827707f,-0.56116f,0.0f},{-0.796101f,-0.605164f,0.0f}, - {-0.856873f,-0.515527f,0.0f},{-0.827695f,-0.561178f,0.0f},{-0.856862f,-0.515545f,0.0f}, - {-0.883526f,-0.468383f,0.0f},{-0.907586f,-0.419866f,0.0f},{-0.883516f,-0.468401f,0.0f}, - {-0.928986f,-0.370116f,0.0f},{-0.907578f,-0.419884f,0.0f},{-0.928977f,-0.370136f,0.0f}, - {-0.947661f,-0.319279f,0.0f},{-0.963556f,-0.267507f,0.0f},{-0.947653f,-0.319301f,0.0f}, - {-0.976624f,-0.214954f,0.0f},{-0.96355f,-0.267528f,0.0f},{-0.97662f,-0.214973f,0.0f}, - {-0.986829f,-0.16177f,0.0f},{-0.994139f,-0.108111f,0.0f},{-0.986826f,-0.161786f,0.0f}, - {-0.99855f,-0.0538298f,0.0f},{-0.994135f,-0.108145f,0.0f},{-0.998551f,-0.0538045f,0.0f}, - {-1.0f,-1.19209e-007f,0.0f},{-0.718391f,-0.69564f,-2.2967e-015f},{-0.747457f,-0.66431f,4.30948e-015f}, - {-0.747455f,-0.664312f,-2.35972e-015f},{-0.688012f,-0.725699f,-2.11837e-015f},{-0.688011f,-0.7257f,-4.7761e-015f}, - {-0.656377f,-0.754433f,-3.42054e-015f},{-0.775156f,-0.631769f,1.02241e-015f},{-0.718389f,-0.695642f,1.63365e-016f}, - {-0.775159f,-0.631766f,1.30928e-015f},{-0.801442f,-0.598073f,-4.02386e-016f},{-0.801444f,-0.59807f,3.14782e-015f}, - {-0.826266f,-0.563281f,2.05014e-015f},{-0.826264f,-0.563284f,2.15457e-016f},{-0.849576f,-0.527466f,3.68245e-015f}, - {-0.849578f,-0.527463f,-9.04405e-017f},{-0.871339f,-0.490682f,2.82586e-015f},{-0.891507f,-0.453007f,-1.11336e-015f}, - {-0.871337f,-0.490685f,-3.98744e-016f},{-0.891508f,-0.453005f,8.87668e-016f},{-0.91005f,-0.414499f,3.62163e-016f}, - {-0.910048f,-0.414503f,-2.33213e-015f},{-0.955579f,-0.294734f,1.39294e-015f},{-0.942115f,-0.335291f,1.29026e-015f}, - {-0.95558f,-0.294731f,9.56661e-016f},{-0.926927f,-0.375241f,3.09815e-015f},{-0.926928f,-0.375238f,3.53892e-016f}, - {-0.942114f,-0.335293f,1.78659e-015f},{-0.9673f,-0.253636f,4.48455e-017f},{-0.977253f,-0.212075f,9.31315e-017f}, - {-0.9673f,-0.253634f,-3.87537e-015f},{-0.977254f,-0.212073f,1.53976e-015f},{-0.985423f,-0.170124f,-1.33727e-015f}, - {-0.991791f,-0.127866f,1.31222e-015f},{-0.991791f,-0.127868f,-1.43479e-015f},{-0.985422f,-0.170128f,-1.08544e-015f}, - {-0.996349f,-0.0853729f,-2.96511e-015f},{-0.996349f,-0.0853758f,1.45956e-015f},{-0.999087f,-0.0427249f,-1.45746e-015f}, - {-0.999087f,-0.0427275f,2.97938e-015f},{-1.0f,-1.41083e-016f,0.0f},{-1.0f,-1.54309e-016f,0.0f}, - {-0.623543f,-0.781789f,-8.12728e-016f},{-0.656376f,-0.754434f,-2.4015e-015f},{-0.623541f,-0.78179f,-9.35104e-016f}, - {-0.589571f,-0.807717f,-3.8494e-015f},{-0.589569f,-0.807718f,8.37214e-016f},{-0.554522f,-0.832169f,-3.65599e-015f}, - {-0.51846f,-0.855102f,-4.07623e-015f},{-0.554519f,-0.832171f,2.81113e-015f},{-0.518456f,-0.855104f,2.96789e-016f}, - {-0.48145f,-0.876473f,3.95802e-015f},{-0.481448f,-0.876475f,6.89284e-016f},{-0.443562f,-0.896244f,7.12651e-016f}, - {-0.404864f,-0.914377f,-1.93578e-015f},{-0.443559f,-0.896245f,5.43092e-015f},{-0.40486f,-0.914379f,-5.84661e-015f}, - {-0.365425f,-0.930841f,1.20115e-015f},{-0.365423f,-0.930842f,3.55128e-015f},{-0.32532f,-0.945604f,2.23888e-015f}, - {-0.284621f,-0.95864f,5.39664e-015f},{-0.325317f,-0.945605f,4.0151e-015f},{-0.284618f,-0.958641f,-2.22393e-015f}, - {-0.243401f,-0.969926f,4.33048e-015f},{-0.243399f,-0.969926f,4.23515e-015f},{-0.201738f,-0.97944f,4.2777e-015f}, - {-0.159705f,-0.987165f,5.95984e-015f},{-0.201735f,-0.97944f,6.68731e-016f},{-0.159703f,-0.987165f,-8.70338e-015f}, - {-0.117381f,-0.993087f,-6.76187e-015f},{-0.117378f,-0.993087f,7.13795e-015f},{-0.0748434f,-0.997195f,-4.49833e-016f}, - {-0.0321679f,-0.999482f,5.88869e-015f},{-0.07484f,-0.997196f,-1.11652e-015f},{-0.0321656f,-0.999483f,-2.74195e-016f}, - {0.0105657f,-0.999944f,5.2388e-015f},{0.0105686f,-0.999944f,-6.15843e-016f},{0.05328f,-0.99858f,7.92959e-015f}, - {0.0958981f,-0.995391f,0.0f},{0.0532825f,-0.99858f,4.50329e-015f},{-0.0141122f,0.9999f,0.0f}, - {0.0141124f,0.9999f,0.0f},{-0.0141125f,0.9999f,0.0f},{-0.0423259f,0.999104f,0.0f}, - {-0.0423254f,0.999104f,0.0f},{-0.0705055f,0.997511f,0.0f},{-0.0705051f,0.997511f,0.0f}, - {-0.0986284f,0.995124f,0.0f},{-0.0986291f,0.995124f,0.0f},{-0.126674f,0.991944f,0.0f}, - {-0.126673f,0.991944f,0.0f},{-0.154618f,0.987974f,0.0f},{-0.154617f,0.987974f,0.0f}, - {-0.182438f,0.983217f,0.0f},{-0.182439f,0.983217f,0.0f},{-0.210114f,0.977677f,0.0f}, - {-0.210113f,0.977677f,0.0f},{-0.237622f,0.971358f,0.0f},{-0.237622f,0.971358f,0.0f}, - {-0.26494f,0.964265f,0.0f},{-0.264941f,0.964265f,0.0f},{-0.292049f,0.956403f,0.0f}, - {-0.292048f,0.956404f,0.0f},{-0.318924f,0.94778f,0.0f},{-0.318923f,0.947781f,0.0f}, - {-0.345544f,0.938403f,0.0f},{-0.345545f,0.938402f,0.0f},{-0.371891f,0.928277f,0.0f}, - {-0.37189f,0.928277f,0.0f},{-0.39794f,0.917411f,0.0f},{-0.397939f,0.917412f,0.0f}, - {-0.423672f,0.905816f,0.0f},{-0.423672f,0.905815f,0.0f},{-0.449067f,0.893498f,0.0f}, - {-0.449067f,0.893498f,0.0f},{-0.474105f,0.880469f,0.0f},{-0.474104f,0.880469f,0.0f}, - {-0.498763f,0.866738f,0.0f},{-0.498764f,0.866738f,0.0f},{-0.523026f,0.852317f,0.0f}, - {0.0141122f,0.9999f,0.0f},{0.0423254f,0.999104f,0.0f},{0.0423259f,0.999104f,0.0f}, - {0.0705055f,0.997511f,0.0f},{0.0705051f,0.997511f,0.0f},{0.0986291f,0.995124f,0.0f}, - {0.0986285f,0.995124f,0.0f},{0.126673f,0.991944f,0.0f},{0.126674f,0.991944f,0.0f}, - {0.154618f,0.987974f,0.0f},{0.154617f,0.987974f,0.0f},{0.182439f,0.983217f,0.0f}, - {0.182438f,0.983217f,0.0f},{0.210113f,0.977677f,0.0f},{0.210114f,0.977677f,0.0f}, - {0.237622f,0.971358f,0.0f},{0.237622f,0.971358f,0.0f},{0.264941f,0.964265f,0.0f}, - {0.26494f,0.964265f,0.0f},{0.292048f,0.956404f,0.0f},{0.292049f,0.956403f,0.0f}, - {0.318924f,0.94778f,0.0f},{0.318923f,0.947781f,0.0f},{0.345545f,0.938402f,0.0f}, - {0.345544f,0.938403f,0.0f},{0.37189f,0.928277f,0.0f},{0.371891f,0.928277f,0.0f}, - {0.39794f,0.917411f,0.0f},{0.397939f,0.917412f,0.0f},{0.423672f,0.905815f,0.0f}, - {0.423672f,0.905816f,0.0f},{0.449067f,0.893498f,0.0f},{0.449067f,0.893498f,0.0f}, - {0.474104f,0.880469f,0.0f},{0.474104f,0.880469f,0.0f},{0.498764f,0.866738f,0.0f}, - {0.498764f,0.866738f,0.0f},{0.523026f,0.852317f,0.0f},{0.866025f,0.5f,-7.6671e-016f}, - {-4.33681e-019f,0.0f,1.0f},{4.33681e-019f,0.0f,1.0f},{0.466272f,0.884642f,2.20644e-016f}, - {0.628286f,0.777982f,5.89571e-016f},{0.628223f,0.778033f,-5.53502e-016f},{0.286781f,0.957996f,1.48116e-016f}, - {0.466199f,0.88468f,-5.1317e-016f},{0.286593f,0.958053f,-1.63827e-016f},{-0.0974696f,0.995238f,3.44802e-016f}, - {0.0962625f,0.995356f,-1.06856e-016f},{-0.097635f,0.995222f,-4.56953e-017f},{0.0964852f,0.995334f,-1.31963e-016f}, - {0.766564f,0.642168f,0.0f},{0.876095f,0.482138f,-7.37654e-016f},{0.76669f,0.642017f,-1.10523e-015f}, - {0.876203f,0.481942f,7.37698e-016f},{0.952689f,0.303947f,0.0f},{0.952739f,0.303789f,0.0f}, - {0.698102f,0.715999f,1.29175e-016f},{0.324434f,0.945908f,-5.70109e-016f},{0.324434f,0.945908f,-3.35048e-016f}, - {0.524032f,0.851699f,7.27349e-016f},{-1.0f,-3.33067e-016f,0.0f},{-0.98085f,-0.194766f,-8.7013e-016f}, - {-0.707075f,-0.707139f,5.23388e-016f},{-0.707766f,-0.706447f,5.22876e-016f},{-0.831545f,-0.555458f,-6.15467e-016f}, - {-0.831851f,-0.554999f,-4.10782e-016f},{-0.924075f,-0.382212f,-1.36791e-015f},{-0.196168f,-0.98057f,-1.01605e-015f}, - {-0.194654f,-0.980872f,-1.44073e-016f},{-0.555293f,-0.831655f,-4.10999e-016f},{-0.382179f,-0.924088f,-1.22649e-015f}, - {-0.384009f,-0.923329f,-1.99588e-016f},{0.384009f,-0.923329f,-2.13958e-016f},{0.555293f,-0.831655f,6.67161e-016f}, - {0.382179f,-0.924088f,9.40449e-016f},{0.196168f,-0.98057f,-7.62016e-016f},{0.194653f,-0.980872f,6.1653e-016f}, - {2.96059e-016f,-1.0f,-3.28692e-031f},{0.707765f,-0.706447f,4.57334e-016f},{0.831545f,-0.555458f,8.32431e-017f}, - {0.707075f,-0.707139f,-4.57955e-016f},{0.556611f,-0.830773f,-3.85076e-016f},{0.831851f,-0.554999f,-2.05391e-016f}, - {0.923954f,-0.382504f,-2.95917e-016f},{0.980825f,-0.19489f,-3.63028e-018f},{0.924075f,-0.382212f,5.86375e-016f}, - {0.98085f,-0.194766f,-2.22141e-016f},{1.0f,-1.85037e-017f,0.0f},{-0.556611f,-0.830773f,-1.04527e-016f}, - {-1.0f,-2.96059e-016f,0.0f},{-1.0f,-1.85037e-017f,0.0f},{-0.980825f,-0.19489f,-8.70204e-016f}, - {-0.98085f,-0.194766f,7.25975e-016f},{-0.707075f,-0.707139f,2.6167e-016f},{-0.707766f,-0.706447f,-1.04673e-015f}, - {-0.831545f,-0.555458f,6.15467e-016f},{-0.196168f,-0.98057f,-7.25968e-017f},{-0.194654f,-0.980872f,0.0f}, - {-0.555293f,-0.831655f,2.055e-016f},{-0.384009f,-0.923329f,-1.42112e-016f},{0.384009f,-0.923329f,7.57929e-018f}, - {0.555293f,-0.831655f,4.10524e-016f},{0.382179f,-0.924088f,2.41708e-016f},{0.196168f,-0.98057f,-1.26994e-016f}, - {0.194653f,-0.980872f,-9.14525e-017f},{0.707765f,-0.706447f,-5.72353e-016f},{0.831545f,-0.555458f,-9.69264e-018f}, - {0.707075f,-0.707139f,1.14487e-016f},{0.556611f,-0.830773f,5.13819e-016f},{0.831851f,-0.554999f,4.97064e-016f}, - {0.923954f,-0.382504f,1.06278e-016f},{0.980825f,-0.19489f,-1.02781e-015f},{0.924075f,-0.382212f,4.37371e-016f}, - {0.98085f,-0.194766f,8.39508e-016f},{1.0f,-2.96059e-016f,0.0f},{1.0f,-5.92119e-016f,0.0f}, - {-0.556611f,-0.830773f,-5.13435e-016f},{-0.989489f,-0.144611f,-3.80291e-017f},{-0.99711f,0.0759712f,-5.623e-017f}, - {-0.933664f,-0.358149f,-9.55933e-016f},{-0.933664f,-0.358149f,1.99014e-016f},{-0.835272f,-0.549837f,0.0f}, - {-0.957691f,0.2878f,0.0f},{1.0f,1.53707e-012f,0.0f},{1.0f,8.42952e-008f,0.0f}, - {-3.07487e-012f,1.0f,0.0f},{-3.07526e-012f,1.0f,0.0f},{-0.673422f,-0.739259f,0.0f}, - {-0.703582f,-0.710614f,0.0f},{-0.673421f,-0.739259f,0.0f},{-0.642094f,-0.766626f,0.0f}, - {-0.642096f,-0.766624f,0.0f},{-0.609658f,-0.792665f,0.0f},{-0.60966f,-0.792663f,0.0f}, - {-0.576168f,-0.817331f,0.0f},{-0.576166f,-0.817333f,0.0f},{-0.541677f,-0.840587f,0.0f}, - {-0.54168f,-0.840585f,0.0f},{-0.506252f,-0.862386f,0.0f},{-0.506254f,-0.862384f,0.0f}, - {-0.469953f,-0.882691f,0.0f},{-0.46995f,-0.882693f,0.0f},{-0.432835f,-0.901473f,0.0f}, - {-0.432838f,-0.901471f,0.0f},{-0.394972f,-0.918693f,0.0f},{-0.394974f,-0.918692f,0.0f}, - {-0.356428f,-0.934323f,0.0f},{-0.356425f,-0.934324f,0.0f},{-0.317262f,-0.948338f,0.0f}, - {-0.317264f,-0.948337f,0.0f},{-0.277549f,-0.960711f,0.0f},{-0.277552f,-0.960711f,0.0f}, - {-0.237359f,-0.971422f,0.0f},{-0.237356f,-0.971423f,0.0f},{-0.196753f,-0.980453f,0.0f}, - {-0.196756f,-0.980453f,0.0f},{-0.155809f,-0.987787f,0.0f},{-0.155812f,-0.987787f,0.0f}, - {-0.114599f,-0.993412f,0.0f},{-0.114596f,-0.993412f,0.0f},{-0.0731848f,-0.997318f,0.0f}, - {-0.073187f,-0.997318f,0.0f},{-0.0316463f,-0.999499f,0.0f},{-0.0316489f,-0.999499f,0.0f}, - {0.00994395f,-0.999951f,0.0f},{0.00994627f,-0.999951f,0.0f},{0.0515206f,-0.998672f,0.0f}, - {-0.703582f,-0.710614f,0.0f},{-0.732525f,-0.680741f,0.0f},{-0.732526f,-0.680739f,0.0f}, - {-0.760202f,-0.649687f,0.0f},{-0.760201f,-0.649688f,0.0f},{-0.786563f,-0.61751f,0.0f}, - {-0.786561f,-0.617513f,0.0f},{-0.811561f,-0.584268f,0.0f},{-0.811563f,-0.584265f,0.0f}, - {-0.835158f,-0.55001f,0.0f},{-0.835156f,-0.550013f,0.0f},{-0.857309f,-0.514803f,0.0f}, - {-0.857307f,-0.514806f,0.0f},{-0.877974f,-0.478708f,0.0f},{-0.877976f,-0.478705f,0.0f}, - {-0.897124f,-0.441779f,0.0f},{-0.897123f,-0.441782f,0.0f},{-0.91472f,-0.404088f,0.0f}, - {-0.914719f,-0.404092f,0.0f},{-0.930732f,-0.365702f,0.0f},{-0.930733f,-0.365699f,0.0f}, - {-0.945136f,-0.326677f,0.0f},{-0.945135f,-0.326679f,0.0f},{-0.957904f,-0.287089f,0.0f}, - {-0.957903f,-0.287092f,0.0f},{-0.969013f,-0.247008f,0.0f},{-0.969014f,-0.247006f,0.0f}, - {-0.978448f,-0.206494f,0.0f},{-0.978447f,-0.206496f,0.0f},{-0.986189f,-0.165625f,0.0f}, - {-0.986188f,-0.165628f,0.0f},{-0.992223f,-0.124472f,0.0f},{-0.992223f,-0.12447f,0.0f}, - {-0.996541f,-0.0830991f,0.0f},{-0.996541f,-0.0831017f,0.0f},{-0.999135f,-0.041585f,0.0f}, - {-0.999135f,-0.0415873f,0.0f},{-1.0f,-1.92868e-016f,0.0f},{-1.0f,-8.64379e-008f,0.0f}, - {-0.998361f,-0.0572333f,1.89979e-016f},{-1.0f,3.3736e-016f,0.0f},{-0.993449f,-0.114279f,0.0f}, - {-0.569266f,-0.822154f,0.0f},{-0.413628f,-0.910446f,0.0f},{-0.569567f,-0.821945f,0.0f}, - {-0.413191f,-0.910644f,0.0f},{-0.244303f,-0.969699f,0.0f},{-0.243984f,-0.969779f,0.0f}, - {-0.0672808f,-0.997734f,0.0f},{0.11203f,-0.993705f,0.0f},{-0.0668255f,-0.997765f,0.0f}, - {0.2878f,-0.957691f,0.0f},{0.112396f,-0.993663f,0.0f},{-0.822154f,-0.569266f,0.0f}, - {-0.821945f,-0.569567f,0.0f},{-0.910446f,-0.413628f,0.0f},{-0.969699f,-0.244303f,0.0f}, - {-0.910644f,-0.413191f,0.0f},{-0.969779f,-0.243985f,0.0f},{-0.997734f,-0.0672808f,0.0f}, - {-0.997765f,-0.0668255f,0.0f},{-0.993705f,0.11203f,0.0f},{-0.993663f,0.112396f,0.0f}, - {0.567551f,-0.823338f,2.91569e-016f},{0.480256f,-0.877128f,-1.36506e-015f},{0.480275f,-0.877118f,1.00957e-015f}, - {0.567558f,-0.823334f,5.00925e-017f},{0.648872f,-0.760897f,1.44361e-016f},{0.387941f,-0.921684f,1.25621e-016f}, - {0.387915f,-0.921695f,6.82191e-016f},{0.291525f,-0.956563f,-6.81027e-016f},{0.291499f,-0.956571f,-7.61943e-016f}, - {0.192047f,-0.981386f,6.553e-016f},{0.192025f,-0.98139f,1.77659e-017f},{0.0904984f,-0.995897f,-8.37279e-018f}, - {0.0905325f,-0.995893f,-1.67519e-017f},{-0.0119218f,-0.999929f,1.48019e-015f},{-0.114279f,-0.993449f,0.0f}, - {-0.0121699f,-0.999926f,0.0f},{0.723369f,-0.690461f,-9.58068e-017f},{0.648879f,-0.760892f,1.7081e-016f}, - {0.723384f,-0.690446f,-1.49808e-016f},{0.790265f,-0.612765f,1.16954e-016f},{0.790282f,-0.612743f,-1.7266e-016f}, - {0.848856f,-0.528625f,3.32998e-016f},{0.898522f,-0.438929f,-5.4393e-016f},{0.84887f,-0.528601f,4.57239e-016f}, - {0.898532f,-0.438908f,-2.60926e-016f},{0.938749f,-0.344602f,1.75687e-016f},{0.938761f,-0.34457f,5.73784e-016f}, - {0.969101f,-0.246664f,-5.54286e-016f},{0.989269f,-0.146104f,0.0f},{0.969162f,-0.246424f,-8.55909e-016f}, - {0.863082f,0.505064f,-2.96041e-016f},{0.939433f,0.342733f,-1.39064e-015f},{0.757002f,0.653412f,-4.80673e-016f}, - {0.98457f,0.174993f,-7.12538e-016f},{0.999951f,0.00988645f,0.0f},{0.625744f,0.780028f,-1.42742e-017f}, - {0.47631f,0.879277f,-1.99991e-016f},{0.316965f,0.948437f,-3.53543e-016f},{0.155878f,0.987776f,8.15532e-017f}, - {1.95899e-012f,1.0f,0.0f},{1.95907e-012f,1.0f,0.0f},{1.0f,-4.18691e-016f,0.0f}, - {1.0f,-2.09346e-016f,0.0f},{2.61682e-016f,-1.0f,0.0f},{8.42937e-008f,-1.0f,0.0f}, - {0.432409f,-0.901678f,-4.8007e-016f},{0.568002f,-0.823027f,1.63014e-016f},{0.288928f,-0.957351f,2.01882e-015f}, - {0.288928f,-0.957351f,0.0f},{0.143098f,-0.989708f,7.32531e-016f},{0.690346f,-0.72348f,-1.05257e-015f}, - {4.36853e-016f,-1.0f,0.0f},{9.28313e-016f,-1.0f,0.0f},{0.794923f,-0.60671f,-3.38738e-016f}, - {0.878607f,-0.477546f,-8.64155e-016f},{0.939939f,-0.341342f,-3.74916e-016f},{0.979111f,-0.203325f,0.0f}, - {0.610942f,-0.791675f,0.0f},{0.64341f,-0.765522f,0.0f},{0.674759f,-0.738038f,0.0f}, - {0.643409f,-0.765522f,0.0f},{0.704936f,-0.709271f,0.0f},{0.674758f,-0.738039f,0.0f}, - {0.704934f,-0.709273f,0.0f},{0.733887f,-0.679272f,0.0f},{0.761562f,-0.648092f,0.0f}, - {0.733885f,-0.679273f,0.0f},{0.787914f,-0.615785f,0.0f},{0.761561f,-0.648094f,0.0f}, - {0.787913f,-0.615787f,0.0f},{0.812896f,-0.582409f,0.0f},{0.836465f,-0.54802f,0.0f}, - {0.812895f,-0.58241f,0.0f},{0.858581f,-0.512678f,0.0f},{0.836464f,-0.548021f,0.0f}, - {0.85858f,-0.51268f,0.0f},{0.879204f,-0.476445f,0.0f},{0.898299f,-0.439385f,0.0f}, - {0.879203f,-0.476447f,0.0f},{0.915833f,-0.40156f,0.0f},{0.898298f,-0.439387f,0.0f}, - {0.915832f,-0.401562f,0.0f},{0.931774f,-0.363038f,0.0f},{0.946097f,-0.323885f,0.0f}, - {0.931774f,-0.36304f,0.0f},{0.958774f,-0.284168f,0.0f},{0.946096f,-0.323886f,0.0f}, - {0.958774f,-0.28417f,0.0f},{0.969786f,-0.243959f,0.0f},{0.969785f,-0.24396f,0.0f}, - {0.577412f,-0.816453f,0.0f},{0.577413f,-0.816452f,0.0f},{0.542879f,-0.839811f,0.0f}, - {0.507402f,-0.861709f,0.0f},{0.54288f,-0.83981f,0.0f},{0.471044f,-0.88211f,0.0f}, - {0.507404f,-0.861708f,0.0f},{0.471046f,-0.882109f,0.0f},{0.433866f,-0.900977f,0.0f}, - {0.395935f,-0.918278f,0.0f},{0.433869f,-0.900976f,0.0f},{0.357316f,-0.933984f,0.0f}, - {0.395937f,-0.918278f,0.0f},{0.357318f,-0.933983f,0.0f},{0.318075f,-0.948065f,0.0f}, - {0.278282f,-0.960499f,0.0f},{0.318077f,-0.948065f,0.0f},{0.238005f,-0.971264f,0.0f}, - {0.278284f,-0.960499f,0.0f},{0.238007f,-0.971263f,0.0f},{0.197314f,-0.98034f,0.0f}, - {0.15628f,-0.987713f,0.0f},{0.197316f,-0.98034f,0.0f},{0.114975f,-0.993368f,0.0f}, - {0.156283f,-0.987712f,0.0f},{0.114977f,-0.993368f,0.0f},{0.0734701f,-0.997297f,0.0f}, - {0.0318375f,-0.999493f,0.0f},{0.0734722f,-0.997297f,0.0f},{-0.00985025f,-0.999951f,0.0f}, - {0.0318392f,-0.999493f,0.0f},{-0.00984923f,-0.999951f,0.0f},{-0.0515206f,-0.998672f,0.0f}, - {0.866025f,-0.5f,-4.07254e-016f},{0.0706974f,0.997498f,4.22047e-015f},{0.042441f,0.999099f,-4.49972e-015f}, - {0.0424415f,0.999099f,-8.87378e-015f},{-0.0141508f,0.9999f,-1.48015e-015f},{0.014151f,0.9999f,0.0f}, - {0.0141508f,0.9999f,-7.42169e-015f},{0.0706979f,0.997498f,1.47659e-015f},{0.0988972f,0.995098f,5.89216e-015f}, - {0.0988976f,0.995098f,5.59937e-015f},{0.127018f,0.9919f,-1.17465e-014f},{0.127018f,0.9919f,-1.72436e-014f}, - {0.155036f,0.987909f,-5.3906e-015f},{0.155037f,0.987909f,5.84959e-015f},{0.182932f,0.983126f,-2.36905e-015f}, - {0.182931f,0.983126f,8.73191e-015f},{0.238259f,0.971202f,8.626e-015f},{0.265648f,0.96407f,-7.28139e-015f}, - {0.265647f,0.96407f,-1.29898e-014f},{0.210679f,0.977555f,-4.54082e-015f},{0.21068f,0.977555f,0.0f}, - {0.238258f,0.971202f,-1.29121e-014f},{0.292823f,0.956167f,-1.73386e-015f},{0.292823f,0.956167f,0.0f}, - {0.319764f,0.947497f,5.61031e-015f},{0.319764f,0.947497f,-1.89338e-015f},{0.346449f,0.938069f,0.0f}, - {0.346449f,0.938069f,7.60587e-015f},{0.372856f,0.927889f,9.90971e-015f},{0.424755f,0.905308f,5.3605e-015f}, - {0.424755f,0.905309f,3.304e-016f},{0.398966f,0.916966f,4.7247e-015f},{0.398965f,0.916966f,5.42953e-015f}, - {0.372857f,0.927889f,-7.70196e-015f},{0.450204f,0.892926f,0.0f},{0.450204f,0.892926f,5.33148e-015f}, - {0.475292f,0.879828f,1.04193e-014f},{0.475292f,0.879828f,1.04193e-014f},{-0.014151f,0.9999f,8.90184e-015f}, - {-0.042441f,0.999099f,-1.04784e-014f},{-0.0424415f,0.999099f,-1.61429e-014f},{-0.0706974f,0.997498f,8.65025e-015f}, - {-0.0988972f,0.995098f,2.94608e-015f},{-0.0706979f,0.997498f,-1.09175e-014f},{-0.0988976f,0.995098f,1.39984e-015f}, - {-0.127018f,0.9919f,-1.06363e-014f},{-0.127018f,0.9919f,9.63801e-015f},{-0.155036f,0.987909f,-7.40539e-015f}, - {-0.182931f,0.983126f,-7.57272e-015f},{-0.155037f,0.987909f,-2.5165e-015f},{-0.182932f,0.983126f,2.18298e-015f}, - {-0.210679f,0.977555f,7.64703e-015f},{-0.21068f,0.977555f,-4.23518e-015f},{-0.238258f,0.971202f,-1.03144e-014f}, - {-0.265647f,0.96407f,-7.60334e-015f},{-0.238259f,0.971202f,1.75636e-015f},{-0.265648f,0.96407f,1.0869e-014f}, - {-0.292823f,0.956167f,5.12754e-015f},{-0.292823f,0.956167f,-8.24033e-015f},{-0.319764f,0.947497f,3.07966e-016f}, - {-0.346449f,0.938069f,-1.05337e-014f},{-0.319764f,0.947497f,-8.2576e-015f},{-0.346449f,0.938069f,-1.87656e-015f}, - {-0.372856f,0.927889f,3.1746e-015f},{-0.372857f,0.927889f,-3.31849e-015f},{-0.398965f,0.916966f,3.06056e-015f}, - {-0.424755f,0.905309f,7.49538e-015f},{-0.398966f,0.916966f,4.02549e-015f},{-0.424755f,0.905308f,1.46943e-015f}, - {-0.450204f,0.892926f,-1.18685e-014f},{-0.450204f,0.892926f,1.25672e-015f},{-0.475292f,0.879828f,4.58408e-015f}, - {-0.475292f,0.879828f,1.83809e-015f},{-0.623541f,0.78179f,-1.15728e-015f},{-0.589568f,0.807718f,-2.39133e-015f}, - {-0.589571f,0.807717f,9.60223e-017f},{-0.656376f,0.754434f,-5.72909e-015f},{-0.656377f,0.754433f,-7.23689e-015f}, - {-0.688011f,0.7257f,1.01846e-015f},{-0.554522f,0.832169f,1.64171e-015f},{-0.623543f,0.781789f,4.8494e-015f}, - {-0.554519f,0.832171f,4.10543e-015f},{-0.51846f,0.855102f,-9.96661e-016f},{-0.518456f,0.855104f,1.53494e-015f}, - {-0.481448f,0.876475f,-5.18977e-015f},{-0.48145f,0.876473f,-4.02026e-015f},{-0.443562f,0.896244f,-2.65341e-015f}, - {-0.443559f,0.896245f,-3.96662e-015f},{-0.40486f,0.914379f,0.0f},{-0.365425f,0.930841f,0.0f}, - {-0.404864f,0.914377f,-2.39728e-015f},{-0.365423f,0.930842f,0.0f},{-0.325317f,0.945605f,-3.67284e-015f}, - {-0.32532f,0.945604f,0.0f},{-0.201738f,0.97944f,3.58358e-015f},{-0.243399f,0.969926f,-1.44121e-015f}, - {-0.201735f,0.97944f,-3.41043e-015f},{-0.284621f,0.95864f,7.36158e-015f},{-0.284618f,0.958641f,-5.6763e-015f}, - {-0.243401f,0.969926f,5.74311e-015f},{-0.159705f,0.987165f,9.45645e-016f},{-0.117381f,0.993087f,-1.03704e-014f}, - {-0.159703f,0.987165f,-4.89956e-015f},{-0.117378f,0.993087f,-6.9502e-016f},{-0.07484f,0.997196f,0.0f}, - {-0.0321655f,0.999483f,6.29904e-015f},{-0.032168f,0.999482f,-5.91813e-015f},{-0.0748434f,0.997195f,-8.86324e-016f}, - {0.0105685f,0.999944f,-5.7957e-015f},{0.0105657f,0.999944f,5.92086e-015f},{0.0532826f,0.99858f,0.0f}, - {0.05328f,0.99858f,0.0f},{0.0958981f,0.995391f,0.0f},{-0.718389f,0.695642f,-2.12686e-015f}, - {-0.688012f,0.725699f,-3.16696e-015f},{-0.718391f,0.69564f,6.73571e-017f},{-0.747455f,0.664312f,3.69231e-016f}, - {-0.747457f,0.66431f,-4.91688e-015f},{-0.775156f,0.631769f,-3.61476e-016f},{-0.801442f,0.598073f,-8.85326e-016f}, - {-0.775159f,0.631767f,-5.10676e-016f},{-0.801444f,0.59807f,-2.51436e-015f},{-0.826264f,0.563284f,-2.63707e-016f}, - {-0.826266f,0.563281f,-4.79448e-015f},{-0.849576f,0.527466f,2.47204e-015f},{-0.871337f,0.490685f,-7.45068e-016f}, - {-0.849578f,0.527463f,6.28814e-016f},{-0.871339f,0.490682f,-4.66609e-016f},{-0.891507f,0.453007f,-5.36872e-018f}, - {-0.891508f,0.453005f,1.90646e-015f},{-0.910048f,0.414503f,-9.01947e-016f},{-0.926927f,0.375241f,-7.55498e-016f}, - {-0.91005f,0.414499f,-3.44627e-015f},{-0.926928f,0.375238f,-8.26493e-018f},{-0.942114f,0.335293f,7.4317e-016f}, - {-0.942115f,0.335291f,-1.38718e-015f},{-0.955579f,0.294734f,-6.60361e-018f},{-0.9673f,0.253636f,1.39186e-016f}, - {-0.95558f,0.294731f,-4.80822e-016f},{-0.9673f,0.253634f,-1.1694e-015f},{-0.977253f,0.212076f,-1.09093e-015f}, - {-0.977254f,0.212073f,-1.42807e-015f},{-0.985422f,0.170128f,-8.58064e-016f},{-0.991791f,0.127868f,1.21011e-015f}, - {-0.985423f,0.170124f,3.47036e-015f},{-0.991791f,0.127866f,2.85545e-016f},{-0.996349f,0.0853758f,-4.87227e-016f}, - {-0.996349f,0.0853729f,3.21028e-015f},{-0.999087f,0.0427275f,-3.76158e-016f},{-1.0f,1.41083e-016f,0.0f}, - {-0.999087f,0.0427249f,-2.9625e-015f},{-1.0f,1.54309e-016f,0.0f},{-5.04647e-017f,1.0f,0.0f}, - {-5.3829e-017f,1.0f,0.0f},{-0.0541567f,0.998532f,0.0f},{-0.108145f,0.994135f,0.0f}, - {-0.0541301f,0.998534f,0.0f},{-0.161808f,0.986822f,0.0f},{-0.108105f,0.99414f,0.0f}, - {-0.161767f,0.986829f,0.0f},{-0.214992f,0.976616f,0.0f},{-0.267546f,0.963545f,0.0f}, - {-0.214964f,0.976622f,0.0f},{-0.319328f,0.947644f,0.0f},{-0.267531f,0.963549f,0.0f}, - {-0.319303f,0.947653f,0.0f},{-0.370172f,0.928963f,0.0f},{-0.419923f,0.90756f,0.0f}, - {-0.370136f,0.928977f,0.0f},{-0.46844f,0.883495f,0.0f},{-0.419887f,0.907577f,0.0f}, - {-0.468409f,0.883512f,0.0f},{-0.515581f,0.856841f,0.0f},{-0.56121f,0.827674f,0.0f}, - {-0.515559f,0.856854f,0.0f},{-0.605197f,0.796076f,0.0f},{-0.561199f,0.827681f,0.0f}, - {-0.605188f,0.796082f,0.0f},{-0.647411f,0.762141f,0.0f},{-0.687723f,0.725973f,0.0f}, - {-0.6474f,0.762151f,0.0f},{-0.726018f,0.687676f,0.0f},{-0.687712f,0.725983f,0.0f}, - {-0.726007f,0.687687f,0.0f},{-0.762183f,0.647361f,0.0f},{-0.796113f,0.605148f,0.0f}, - {-0.762171f,0.647375f,0.0f},{-0.827707f,0.56116f,0.0f},{-0.796101f,0.605164f,0.0f}, - {-0.827695f,0.561178f,0.0f},{-0.856873f,0.515527f,0.0f},{-0.883526f,0.468383f,0.0f}, - {-0.856862f,0.515545f,0.0f},{-0.907586f,0.419866f,0.0f},{-0.883516f,0.4684f,0.0f}, - {-0.907578f,0.419884f,0.0f},{-0.928986f,0.370116f,0.0f},{-0.947661f,0.319279f,0.0f}, - {-0.928977f,0.370136f,0.0f},{-0.963556f,0.267507f,0.0f},{-0.947653f,0.319301f,0.0f}, - {-0.96355f,0.267528f,0.0f},{-0.976624f,0.214954f,0.0f},{-0.986829f,0.16177f,0.0f}, - {-0.97662f,0.214973f,0.0f},{-0.994139f,0.108111f,0.0f},{-0.986826f,0.161786f,0.0f}, - {-0.994135f,0.108145f,0.0f},{-0.99855f,0.0538298f,0.0f},{-1.0f,-2.15316e-016f,0.0f}, - {-0.998551f,0.0538044f,0.0f},{-1.0f,-2.35502e-016f,0.0f},{0.0541566f,0.998532f,0.0f}, - {0.0541302f,0.998534f,0.0f},{0.108145f,0.994135f,0.0f},{0.161808f,0.986822f,0.0f}, - {0.108105f,0.99414f,0.0f},{0.214992f,0.976616f,0.0f},{0.161767f,0.986829f,0.0f}, - {0.214964f,0.976622f,0.0f},{0.267546f,0.963545f,0.0f},{0.319328f,0.947644f,0.0f}, - {0.267531f,0.963549f,0.0f},{0.370172f,0.928963f,0.0f},{0.319303f,0.947653f,0.0f}, - {0.370136f,0.928977f,0.0f},{0.419923f,0.90756f,0.0f},{0.46844f,0.883495f,0.0f}, - {0.419887f,0.907577f,0.0f},{0.515581f,0.856841f,0.0f},{0.468409f,0.883512f,0.0f}, - {0.515559f,0.856854f,0.0f},{0.56121f,0.827674f,0.0f},{0.605197f,0.796076f,0.0f}, - {0.561199f,0.827681f,0.0f},{0.647411f,0.762141f,0.0f},{0.605188f,0.796082f,0.0f}, - {0.6474f,0.762151f,0.0f},{0.687723f,0.725973f,0.0f},{0.726018f,0.687676f,0.0f}, - {0.687712f,0.725983f,0.0f},{0.762183f,0.647361f,0.0f},{0.726007f,0.687687f,0.0f}, - {0.762171f,0.647375f,0.0f},{0.796113f,0.605148f,0.0f},{0.827707f,0.56116f,0.0f}, - {0.796101f,0.605164f,0.0f},{0.856873f,0.515527f,0.0f},{0.827695f,0.561178f,0.0f}, - {0.856862f,0.515545f,0.0f},{0.883526f,0.468383f,0.0f},{0.907586f,0.419866f,0.0f}, - {0.883516f,0.468401f,0.0f},{0.928986f,0.370116f,0.0f},{0.907578f,0.419884f,0.0f}, - {0.928977f,0.370136f,0.0f},{0.947661f,0.319279f,0.0f},{0.963556f,0.267507f,0.0f}, - {0.947653f,0.319301f,0.0f},{0.976624f,0.214954f,0.0f},{0.96355f,0.267528f,0.0f}, - {0.97662f,0.214973f,0.0f},{0.986829f,0.16177f,0.0f},{0.994139f,0.108111f,0.0f}, - {0.986826f,0.161786f,0.0f},{0.99855f,0.0538298f,0.0f},{0.994135f,0.108145f,0.0f}, - {0.998551f,0.0538045f,0.0f},{1.0f,1.19209e-007f,0.0f},{0.718391f,0.69564f,-2.2967e-015f}, - {0.747457f,0.66431f,4.30948e-015f},{0.747455f,0.664312f,-2.35972e-015f},{0.688012f,0.725699f,-2.11837e-015f}, - {0.688011f,0.7257f,-4.7761e-015f},{0.656377f,0.754433f,-3.42054e-015f},{0.775156f,0.631769f,1.02241e-015f}, - {0.718389f,0.695642f,1.63365e-016f},{0.775159f,0.631766f,1.30928e-015f},{0.801442f,0.598073f,-4.02386e-016f}, - {0.801444f,0.59807f,3.14782e-015f},{0.826266f,0.563281f,2.05014e-015f},{0.826264f,0.563284f,2.15457e-016f}, - {0.849576f,0.527466f,3.68245e-015f},{0.849578f,0.527463f,-9.04405e-017f},{0.871339f,0.490682f,2.82586e-015f}, - {0.891507f,0.453007f,-1.11336e-015f},{0.871337f,0.490685f,-3.98744e-016f},{0.891508f,0.453005f,8.87668e-016f}, - {0.91005f,0.414499f,3.62163e-016f},{0.910048f,0.414503f,-2.33213e-015f},{0.955579f,0.294734f,1.39294e-015f}, - {0.942115f,0.335291f,1.29026e-015f},{0.95558f,0.294731f,9.56661e-016f},{0.926927f,0.375241f,3.09815e-015f}, - {0.926928f,0.375238f,3.53892e-016f},{0.942114f,0.335293f,1.78659e-015f},{0.9673f,0.253636f,4.48455e-017f}, - {0.977253f,0.212075f,9.31315e-017f},{0.9673f,0.253634f,-3.87537e-015f},{0.977254f,0.212073f,1.53976e-015f}, - {0.985423f,0.170124f,-1.33727e-015f},{0.991791f,0.127866f,1.31222e-015f},{0.991791f,0.127868f,-1.43479e-015f}, - {0.985422f,0.170128f,-1.08544e-015f},{0.996349f,0.0853729f,-2.96511e-015f},{0.996349f,0.0853758f,1.45956e-015f}, - {0.999087f,0.0427249f,-1.45746e-015f},{0.999087f,0.0427275f,2.97938e-015f},{1.0f,1.41083e-016f,0.0f}, - {1.0f,1.54309e-016f,0.0f},{0.623543f,0.781789f,-8.12728e-016f},{0.656376f,0.754434f,-2.4015e-015f}, - {0.623541f,0.78179f,-9.35104e-016f},{0.589571f,0.807717f,-3.8494e-015f},{0.589569f,0.807718f,8.37214e-016f}, - {0.554522f,0.832169f,-3.65599e-015f},{0.51846f,0.855102f,-4.07623e-015f},{0.554519f,0.832171f,2.81113e-015f}, - {0.518456f,0.855104f,2.96789e-016f},{0.48145f,0.876473f,3.95802e-015f},{0.481448f,0.876475f,6.89284e-016f}, - {0.443562f,0.896244f,7.12651e-016f},{0.404864f,0.914377f,-1.93578e-015f},{0.443559f,0.896245f,5.43092e-015f}, - {0.40486f,0.914379f,-5.84661e-015f},{0.365425f,0.930841f,1.20115e-015f},{0.365423f,0.930842f,3.55128e-015f}, - {0.32532f,0.945604f,2.23888e-015f},{0.284621f,0.95864f,5.39664e-015f},{0.325317f,0.945605f,4.0151e-015f}, - {0.284618f,0.958641f,-2.22393e-015f},{0.243401f,0.969926f,4.33048e-015f},{0.243399f,0.969926f,4.23515e-015f}, - {0.201738f,0.97944f,4.2777e-015f},{0.159705f,0.987165f,5.95984e-015f},{0.201735f,0.97944f,6.68731e-016f}, - {0.159703f,0.987165f,-8.70338e-015f},{0.117381f,0.993087f,-6.76187e-015f},{0.117378f,0.993087f,7.13795e-015f}, - {0.0748434f,0.997195f,-4.49833e-016f},{0.0321679f,0.999482f,5.88869e-015f},{0.07484f,0.997196f,-1.11652e-015f}, - {0.0321656f,0.999483f,-2.74195e-016f},{-0.0105657f,0.999944f,5.2388e-015f},{-0.0105686f,0.999944f,-6.15843e-016f}, - {-0.05328f,0.99858f,7.92959e-015f},{-0.0958981f,0.995391f,0.0f},{-0.0532825f,0.99858f,4.50329e-015f}, - {0.0141122f,-0.9999f,0.0f},{-0.0141124f,-0.9999f,0.0f},{0.0141125f,-0.9999f,0.0f}, - {0.0423259f,-0.999104f,0.0f},{0.0423254f,-0.999104f,0.0f},{0.0705055f,-0.997511f,0.0f}, - {0.0705051f,-0.997511f,0.0f},{0.0986284f,-0.995124f,0.0f},{0.0986291f,-0.995124f,0.0f}, - {0.126674f,-0.991944f,0.0f},{0.126673f,-0.991944f,0.0f},{0.154618f,-0.987974f,0.0f}, - {0.154617f,-0.987974f,0.0f},{0.182438f,-0.983217f,0.0f},{0.182439f,-0.983217f,0.0f}, - {0.210114f,-0.977677f,0.0f},{0.210113f,-0.977677f,0.0f},{0.237622f,-0.971358f,0.0f}, - {0.237622f,-0.971358f,0.0f},{0.26494f,-0.964265f,0.0f},{0.264941f,-0.964265f,0.0f}, - {0.292049f,-0.956403f,0.0f},{0.292048f,-0.956404f,0.0f},{0.318924f,-0.94778f,0.0f}, - {0.318923f,-0.947781f,0.0f},{0.345544f,-0.938403f,0.0f},{0.345545f,-0.938402f,0.0f}, - {0.371891f,-0.928277f,0.0f},{0.37189f,-0.928277f,0.0f},{0.39794f,-0.917411f,0.0f}, - {0.397939f,-0.917412f,0.0f},{0.423672f,-0.905816f,0.0f},{0.423672f,-0.905815f,0.0f}, - {0.449067f,-0.893498f,0.0f},{0.449067f,-0.893498f,0.0f},{0.474105f,-0.880469f,0.0f}, - {0.474104f,-0.880469f,0.0f},{0.498763f,-0.866738f,0.0f},{0.498764f,-0.866738f,0.0f}, - {0.523026f,-0.852317f,0.0f},{-0.0141122f,-0.9999f,0.0f},{-0.0423254f,-0.999104f,0.0f}, - {-0.0423259f,-0.999104f,0.0f},{-0.0705055f,-0.997511f,0.0f},{-0.0705051f,-0.997511f,0.0f}, - {-0.0986291f,-0.995124f,0.0f},{-0.0986285f,-0.995124f,0.0f},{-0.126673f,-0.991944f,0.0f}, - {-0.126674f,-0.991944f,0.0f},{-0.154618f,-0.987974f,0.0f},{-0.154617f,-0.987974f,0.0f}, - {-0.182439f,-0.983217f,0.0f},{-0.182438f,-0.983217f,0.0f},{-0.210113f,-0.977677f,0.0f}, - {-0.210114f,-0.977677f,0.0f},{-0.237622f,-0.971358f,0.0f},{-0.237622f,-0.971358f,0.0f}, - {-0.264941f,-0.964265f,0.0f},{-0.26494f,-0.964265f,0.0f},{-0.292048f,-0.956404f,0.0f}, - {-0.292049f,-0.956403f,0.0f},{-0.318924f,-0.94778f,0.0f},{-0.318923f,-0.947781f,0.0f}, - {-0.345545f,-0.938402f,0.0f},{-0.345544f,-0.938403f,0.0f},{-0.37189f,-0.928277f,0.0f}, - {-0.371891f,-0.928277f,0.0f},{-0.39794f,-0.917411f,0.0f},{-0.397939f,-0.917412f,0.0f}, - {-0.423672f,-0.905815f,0.0f},{-0.423672f,-0.905816f,0.0f},{-0.449067f,-0.893498f,0.0f}, - {-0.449067f,-0.893498f,0.0f},{-0.474104f,-0.880469f,0.0f},{-0.474104f,-0.880469f,0.0f}, - {-0.498764f,-0.866738f,0.0f},{-0.498764f,-0.866738f,0.0f},{-0.523026f,-0.852317f,0.0f}, - {-0.866025f,-0.5f,-7.6671e-016f},{-0.466272f,-0.884642f,2.20644e-016f},{-0.628286f,-0.777982f,5.89571e-016f}, - {-0.628223f,-0.778033f,-5.53502e-016f},{-0.286781f,-0.957996f,1.48116e-016f},{-0.466199f,-0.88468f,-5.1317e-016f}, - {-0.286593f,-0.958053f,-1.63827e-016f},{0.0974696f,-0.995238f,3.44802e-016f},{-0.0962625f,-0.995356f,-1.06856e-016f}, - {0.097635f,-0.995222f,-4.56953e-017f},{-0.0964852f,-0.995334f,-1.31963e-016f},{-0.766564f,-0.642168f,0.0f}, - {-0.876095f,-0.482138f,-7.37654e-016f},{-0.76669f,-0.642017f,-1.10523e-015f},{-0.876203f,-0.481942f,7.37698e-016f}, - {-0.952689f,-0.303947f,0.0f},{-0.952739f,-0.303789f,0.0f},{-0.698102f,-0.715999f,1.29175e-016f}, - {-0.324434f,-0.945908f,-5.70109e-016f},{-0.324434f,-0.945908f,-3.35048e-016f},{-0.524032f,-0.851699f,7.27349e-016f}, - {-4.59243e-017f,1.0f,0.0f},{-4.12983e-017f,1.0f,0.0f},{0.173688f,0.984801f,0.0f}, - {0.342031f,0.939689f,0.0f},{0.173343f,0.984861f,0.0f},{0.341751f,0.939791f,0.0f}, - {0.499517f,0.866304f,0.0f},{0.642133f,0.766593f,0.0f},{0.50031f,0.865846f,0.0f}, - {0.64411f,0.764933f,0.0f},{0.765765f,0.64312f,0.0f},{0.766272f,0.642516f,0.0f}, - {0.865946f,0.500137f,0.0f},{0.939669f,0.342084f,0.0f},{0.866231f,0.499643f,0.0f}, - {0.939879f,0.341507f,0.0f},{0.984809f,0.173642f,0.0f},{0.984871f,0.173291f,0.0f}, - {-0.173688f,0.984801f,0.0f},{-0.342031f,0.939689f,0.0f},{-0.173343f,0.984861f,0.0f}, - {-0.499517f,0.866304f,0.0f},{-0.341751f,0.939791f,0.0f},{-0.50031f,0.865846f,0.0f}, - {-0.642133f,0.766593f,0.0f},{-0.64411f,0.764933f,0.0f},{-0.765765f,0.64312f,0.0f}, - {-0.865946f,0.500137f,0.0f},{-0.766272f,0.642516f,0.0f},{-0.866231f,0.499643f,0.0f}, - {-0.939669f,0.342084f,0.0f},{-0.939879f,0.341507f,0.0f},{-0.984809f,0.173642f,0.0f}, - {-0.984871f,0.173291f,0.0f},{-1.0f,7.40149e-017f,0.0f},{-1.0f,8.32667e-017f,0.0f}, - {0.130634f,0.991431f,0.0f},{0.258991f,0.96588f,0.0f},{0.130461f,0.991453f,0.0f}, - {0.382876f,0.9238f,0.0f},{0.258717f,0.965953f,0.0f},{0.382576f,0.923924f,0.0f}, - {0.500177f,0.865923f,0.0f},{0.608898f,0.793249f,0.0f},{0.499909f,0.866078f,0.0f}, - {0.707182f,0.707032f,0.0f},{0.608701f,0.7934f,0.0f},{0.70708f,0.707133f,0.0f}, - {0.793414f,0.608682f,0.0f},{0.866063f,0.499935f,0.0f},{0.793302f,0.608828f,0.0f}, - {0.923898f,0.38264f,0.0f},{0.865926f,0.500171f,0.0f},{0.965902f,0.258907f,0.0f}, - {0.923984f,0.382431f,0.0f},{0.966265f,0.257551f,0.0f},{0.991435f,0.130601f,0.0f}, - {0.99153f,0.129881f,0.0f},{1.0f,8.88178e-017f,0.0f},{-0.130634f,0.991431f,0.0f}, - {-0.258991f,0.96588f,0.0f},{-0.130461f,0.991453f,0.0f},{-0.258717f,0.965953f,0.0f}, - {-0.382876f,0.9238f,0.0f},{-0.500177f,0.865923f,0.0f},{-0.382576f,0.923924f,0.0f}, - {-0.608898f,0.793249f,0.0f},{-0.499909f,0.866078f,0.0f},{-0.608701f,0.7934f,0.0f}, - {-0.707182f,0.707032f,0.0f},{-0.793414f,0.608682f,0.0f},{-0.70708f,0.707134f,0.0f}, - {-0.866063f,0.499936f,0.0f},{-0.793302f,0.608828f,0.0f},{-0.865926f,0.500171f,0.0f}, - {-0.923898f,0.38264f,0.0f},{-0.965902f,0.258907f,0.0f},{-0.923984f,0.382431f,0.0f}, - {-0.966265f,0.257551f,0.0f},{-0.991435f,0.130601f,0.0f},{-0.99153f,0.129881f,0.0f}, - {0.913335f,0.40721f,7.99247e-017f},{0.808642f,0.588301f,3.74072e-017f},{0.809321f,0.587366f,1.2922e-016f}, - {0.913805f,0.406154f,-3.28816e-017f},{0.977984f,0.208678f,5.8208e-017f},{0.978488f,0.206306f,5.99861e-018f}, - {0.999999f,-0.00162857f,2.63678e-019f},{0.97822f,-0.207569f,-8.05697e-017f},{1.0f,0.000654662f,6.93738e-017f}, - {0.977876f,-0.209184f,1.45735e-017f},{0.913594f,-0.406629f,-1.15091e-016f},{0.913137f,-0.407652f,-4.53528e-017f}, - {0.809021f,-0.58778f,2.29704e-017f},{0.80856f,-0.588414f,1.22753e-016f},{0.669069f,-0.7432f,-6.9929e-017f}, - {0.668748f,-0.743489f,-3.64576e-017f},{0.669713f,0.74262f,-6.87062e-017f},{0.500567f,0.865698f,-4.63117e-017f}, - {0.66791f,0.744242f,7.06215e-018f},{0.498589f,0.866839f,1.14269e-016f},{0.30935f,0.950948f,-5.56503e-016f}, - {0.30778f,0.951458f,-4.71214e-016f},{0.104646f,0.99451f,-2.03385e-016f},{-0.104522f,0.994523f,-3.87388e-016f}, - {0.103531f,0.994626f,-1.84043e-016f},{-0.105302f,0.99444f,1.94848e-017f},{-0.309096f,0.951031f,0.0f}, - {-0.309506f,0.950897f,-5.72701e-017f},{0.900926f,0.433972f,8.6404e-017f},{0.826202f,0.563374f,-2.43165e-017f}, - {0.826294f,0.563239f,2.43374e-017f},{0.955531f,0.294892f,6.11214e-017f},{0.900997f,0.433825f,-3.70517e-017f}, - {0.955592f,0.294693f,-3.87521e-016f},{0.988805f,0.149217f,6.64494e-017f},{0.988837f,0.149001f,-2.17435e-016f}, - {1.0f,1.20654e-005f,-2.79068e-022f},{1.0f,0.000192253f,1.7787e-020f},{0.988875f,-0.148747f,1.44115e-016f}, - {0.900667f,-0.43451f,4.63232e-017f},{0.826465f,-0.562987f,2.00756e-016f},{0.901106f,-0.4336f,5.63359e-017f}, - {0.988831f,-0.14904f,-1.04015e-016f},{0.955631f,-0.294565f,-1.19073e-016f},{0.95558f,-0.294731f,1.85876e-017f}, - {0.825308f,-0.564682f,7.07051e-017f},{0.733215f,-0.679997f,6.20149e-017f},{0.733055f,-0.68017f,8.707e-017f}, - {0.623408f,-0.781897f,1.16904e-016f},{0.623556f,-0.781778f,-3.96622e-018f},{0.733149f,0.680068f,2.61498e-016f}, - {0.623627f,0.781722f,-1.73901e-016f},{0.733007f,0.680221f,-2.51732e-016f},{0.623458f,0.781857f,-4.04708e-016f}, - {0.500166f,0.865929f,9.25494e-017f},{0.500011f,0.866019f,-9.25205e-017f},{0.365619f,0.930764f,-6.76531e-017f}, - {0.222715f,0.974884f,0.0f},{0.365343f,0.930873f,-3.0745e-016f},{0.222546f,0.974922f,-3.60794e-016f}, - {0.0750445f,0.99718f,1.84515e-016f},{0.0740373f,0.997255f,0.0f},{-0.0743287f,0.997234f,0.0f}, - {-0.222287f,0.974981f,-4.43078e-016f},{-0.0763749f,0.997079f,2.82644e-017f},{-0.222517f,0.974929f,8.23479e-017f}, - {-0.365262f,0.930905f,-3.44504e-016f},{-0.365439f,0.930835f,0.0f},{0.809321f,-0.587366f,1.2922e-016f}, - {0.913805f,-0.406154f,8.45439e-017f},{0.913335f,-0.40721f,-7.99247e-017f},{0.808642f,-0.588301f,2.03856e-017f}, - {0.669713f,-0.74262f,8.75691e-017f},{0.66791f,-0.744242f,1.34181e-016f},{0.498589f,-0.866839f,2.64187e-016f}, - {0.30935f,-0.950948f,-3.88237e-017f},{0.500567f,-0.865698f,3.37814e-017f},{0.30778f,-0.951458f,4.53145e-017f}, - {0.104646f,-0.99451f,7.86897e-017f},{0.103531f,-0.994626f,8.15879e-017f},{-0.104522f,-0.994523f,4.82678e-017f}, - {-0.105302f,-0.99444f,-1.17707e-017f},{-0.309096f,-0.951031f,-6.56523e-017f},{-0.309506f,-0.950897f,3.18526e-017f}, - {0.977984f,-0.208678f,1.93066e-017f},{1.0f,-0.000654662f,0.0f},{0.978488f,-0.206306f,2.00144e-016f}, - {0.999999f,0.00162868f,-1.85338e-016f},{0.97822f,0.207569f,-7.6816e-017f},{0.977876f,0.209183f,-1.29178e-016f}, - {0.913594f,0.406629f,-7.52414e-017f},{0.809021f,0.58778f,1.49699e-016f},{0.913137f,0.407652f,2.44395e-016f}, - {0.80856f,0.588414f,3.67371e-016f},{0.669069f,0.7432f,2.75039e-016f},{0.668748f,0.743489f,-2.75146e-016f}, - {0.826294f,-0.563239f,6.1666e-017f},{0.900997f,-0.433825f,3.08521e-018f},{0.900926f,-0.433972f,-5.64113e-017f}, - {0.733149f,-0.680068f,-2.56587e-016f},{0.826202f,-0.563374f,-1.46813e-016f},{0.733007f,-0.680221f,1.63368e-016f}, - {0.623628f,-0.781722f,-7.95359e-017f},{0.623458f,-0.781857f,-7.21018e-018f},{0.50001f,-0.866019f,1.15651e-017f}, - {0.500166f,-0.865929f,1.23064e-016f},{0.365619f,-0.930764f,1.23884e-016f},{0.0740373f,-0.997256f,1.28434e-018f}, - {-0.0743287f,-0.997234f,-3.03579e-016f},{0.0750446f,-0.99718f,-2.99946e-016f},{0.365343f,-0.930873f,5.04555e-017f}, - {0.222715f,-0.974884f,4.70292e-017f},{0.222546f,-0.974922f,3.93084e-017f},{-0.0763749f,-0.997079f,-3.81629e-016f}, - {-0.222287f,-0.974981f,-8.52052e-017f},{-0.222517f,-0.974929f,8.99959e-017f},{-0.365439f,-0.930835f,-2.28984e-016f}, - {-0.365262f,-0.930905f,2.02233e-016f},{0.955531f,-0.294892f,-6.63033e-017f},{0.988805f,-0.149216f,9.47978e-018f}, - {0.955592f,-0.294693f,-1.98923e-016f},{0.988837f,-0.149002f,-1.41928e-016f},{1.0f,-0.000192142f,-2.31296e-017f}, - {1.0f,-1.21766e-005f,-2.31342e-017f},{0.988875f,0.148747f,1.00792e-016f},{0.955631f,0.294565f,1.09011e-016f}, - {0.988831f,0.14904f,5.5156e-017f},{0.95558f,0.294731f,6.48678e-017f},{0.901106f,0.4336f,0.0f}, - {0.900667f,0.43451f,0.0f},{0.826465f,0.562987f,-2.46579e-016f},{0.733215f,0.679997f,-2.85567e-016f}, - {0.825308f,0.564682f,3.81782e-017f},{0.733055f,0.68017f,3.19535e-016f},{0.623556f,0.781778f,2.88453e-017f}, - {0.623408f,0.781897f,0.0f},{-0.104013f,-0.994576f,-5.73969e-018f},{0.105163f,-0.994455f,-5.04765e-018f}, - {0.104013f,-0.994576f,-5.37603e-017f},{-0.105163f,-0.994455f,-2.56228e-017f},{-0.308272f,-0.951298f,-1.34015e-017f}, - {-0.310578f,-0.950548f,7.65272e-018f},{-0.50141f,-0.86521f,-4.26767e-017f},{-0.66887f,-0.743379f,-1.02395e-016f}, - {-0.499433f,-0.866353f,-6.51189e-017f},{-0.670096f,-0.742274f,-1.6733e-017f},{-0.808947f,-0.587881f,-4.74286e-017f}, - {-0.809606f,-0.586974f,-1.22396e-016f},{-0.913543f,-0.406743f,1.98726e-016f},{-0.913862f,-0.406026f,6.87164e-017f}, - {-0.978165f,-0.20783f,2.25061e-016f},{-0.978254f,-0.207408f,-6.67845e-017f},{-1.0f,2.22045e-016f,0.0f}, - {0.308272f,-0.951298f,-2.63823e-017f},{0.499433f,-0.866353f,-1.48319e-016f},{0.310578f,-0.950548f,8.91888e-017f}, - {0.50141f,-0.86521f,1.30238e-016f},{0.66887f,-0.743379f,-2.55902e-017f},{0.670096f,-0.742274f,9.43118e-018f}, - {0.808947f,-0.587881f,-2.24438e-017f},{0.913543f,-0.406743f,2.2274e-018f},{0.809606f,-0.586974f,-2.2055e-017f}, - {0.913862f,-0.406026f,2.39531e-018f},{0.978165f,-0.20783f,5.02738e-019f},{0.978254f,-0.207408f,-3.61477e-016f}, - {1.0f,-9.4369e-016f,0.0f},{1.0f,-4.44089e-016f,0.0f},{-0.0746326f,-0.997211f,3.23205e-017f}, - {0.074795f,-0.997199f,-1.38399e-017f},{0.0746326f,-0.997211f,-5.99401e-017f},{-0.222381f,-0.97496f,0.0f}, - {-0.074795f,-0.997199f,-4.61297e-017f},{-0.222585f,-0.974913f,4.11864e-017f},{-0.365177f,-0.930938f,-9.83825e-017f}, - {-0.365379f,-0.930859f,1.2274e-017f},{-0.49999f,-0.866031f,-4.93565e-017f},{-0.499833f,-0.866122f,-4.3155e-017f}, - {-0.623256f,-0.782018f,1.09954e-016f},{-0.82663f,-0.562746f,3.25403e-018f},{-0.900794f,-0.434246f,1.50224e-016f}, - {-0.826061f,-0.563581f,1.56111e-016f},{-0.623488f,-0.781833f,4.15463e-017f},{-0.732917f,-0.680318f,6.65918e-017f}, - {-0.733034f,-0.680192f,2.58522e-016f},{-0.901683f,-0.432397f,-2.442e-016f},{-0.955502f,-0.294984f,1.58495e-016f}, - {-0.955572f,-0.294759f,-5.2973e-017f},{-0.988846f,-0.148938f,8.9777e-017f},{-0.988818f,-0.149126f,7.06523e-017f}, - {-1.0f,1.11022e-016f,0.0f},{0.222381f,-0.97496f,-4.11488e-017f},{0.365177f,-0.930938f,-6.75713e-017f}, - {0.222585f,-0.974913f,-8.23729e-017f},{0.365379f,-0.930859f,-6.76088e-017f},{0.499834f,-0.866121f,1.7262e-016f}, - {0.499989f,-0.866031f,-8.0124e-017f},{0.623256f,-0.782018f,0.0f},{0.732917f,-0.680318f,0.0f}, - {0.623488f,-0.781833f,0.0f},{0.733034f,-0.680192f,-2.71277e-016f},{0.826061f,-0.563581f,0.0f}, - {0.82663f,-0.562746f,-1.04129e-016f},{0.900794f,-0.434246f,3.33361e-016f},{0.955502f,-0.294984f,0.0f}, - {0.901683f,-0.432397f,0.0f},{0.955572f,-0.294759f,5.45414e-017f},{0.988818f,-0.149126f,0.0f}, - {0.988846f,-0.148938f,2.75591e-017f},{1.0f,-4.996e-016f,0.0f},{1.0f,-6.66134e-016f,0.0f}, - {-0.913335f,-0.40721f,-4.22502e-017f},{-0.808642f,-0.588301f,-1.70216e-017f},{-0.809321f,-0.587366f,-2.37904e-016f}, - {-0.913805f,-0.406154f,-3.28816e-017f},{-0.977984f,-0.208678f,-4.85547e-017f},{-0.978488f,-0.206306f,5.48077e-017f}, - {-0.999999f,0.00162857f,4.59202e-017f},{-0.97822f,0.207569f,6.16976e-017f},{-1.0f,-0.000654662f,-1.21137e-019f}, - {-0.977876f,0.209184f,-1.1309e-017f},{-0.913594f,0.406629f,-1.82302e-017f},{-0.913137f,0.407652f,-6.61902e-017f}, - {-0.809021f,0.58778f,3.39878e-018f},{-0.80856f,0.588414f,-4.63496e-017f},{-0.669069f,0.7432f,-3.99078e-017f}, - {-0.668748f,0.743489f,-1.35216e-017f},{-0.669713f,-0.74262f,1.44158e-016f},{-0.500567f,-0.865698f,1.60186e-016f}, - {-0.66791f,-0.744242f,1.44775e-016f},{-0.498589f,-0.866839f,-1.14269e-016f},{-0.30935f,-0.950948f,-2.04581e-016f}, - {-0.30778f,-0.951458f,0.0f},{-0.104646f,-0.99451f,-1.84021e-016f},{0.104522f,-0.994523f,-3.87388e-016f}, - {-0.103531f,-0.994626f,3.68086e-016f},{0.105302f,-0.99444f,-3.68017e-016f},{0.309096f,-0.951031f,0.0f}, - {0.309506f,-0.950897f,-4.09173e-016f},{-0.900926f,-0.433972f,-8.03009e-017f},{-0.826202f,-0.563374f,2.29317e-016f}, - {-0.826294f,-0.563239f,5.21101e-017f},{-0.955531f,-0.294892f,6.76768e-017f},{-0.900997f,-0.433825f,-2.43906e-016f}, - {-0.955592f,-0.294693f,-1.2269e-016f},{-0.988805f,-0.149217f,-6.90265e-018f},{-0.988837f,-0.149001f,1.19057e-016f}, - {-1.0f,-1.20654e-005f,4.62596e-017f},{-1.0f,-0.000192253f,9.25097e-017f},{-0.988875f,0.148747f,1.64758e-016f}, - {-0.900667f,0.43451f,-2.6511e-016f},{-0.826465f,0.562987f,-1.78554e-016f},{-0.901106f,0.4336f,8.0232e-017f}, - {-0.988831f,0.14904f,9.49325e-017f},{-0.955631f,0.294565f,-1.18836e-017f},{-0.95558f,0.294731f,1.83741e-016f}, - {-0.825308f,0.564682f,1.30735e-016f},{-0.733215f,0.679997f,-5.59715e-017f},{-0.733055f,0.68017f,3.51996e-017f}, - {-0.623408f,0.781897f,1.10427e-016f},{-0.623556f,0.781778f,-6.84852e-018f},{-0.733149f,-0.680068f,-1.16016e-016f}, - {-0.623627f,-0.781722f,-2.89295e-016f},{-0.733007f,-0.680221f,0.0f},{-0.623458f,-0.781857f,2.30726e-016f}, - {-0.500166f,-0.865929f,-1.85099e-016f},{-0.500011f,-0.866019f,-9.25205e-017f},{-0.365619f,-0.930764f,-5.16678e-016f}, - {-0.222715f,-0.974884f,1.8039e-016f},{-0.365343f,-0.930873f,-6.7602e-017f},{-0.222546f,-0.974922f,-3.60794e-016f}, - {-0.0750445f,-0.99718f,3.96803e-016f},{-0.0740373f,-0.997255f,0.0f},{0.0743287f,-0.997234f,0.0f}, - {0.222287f,-0.974981f,-8.22628e-017f},{0.0763749f,-0.997079f,0.0f},{0.222517f,-0.974929f,-3.60796e-016f}, - {0.365262f,-0.930905f,-3.44504e-016f},{0.365439f,-0.930835f,0.0f},{-0.809321f,0.587366f,-1.63027e-016f}, - {-0.913805f,0.406154f,2.48937e-016f},{-0.913335f,0.40721f,9.15149e-018f},{-0.808642f,0.588301f,3.40432e-017f}, - {-0.669713f,0.74262f,1.58275e-016f},{-0.66791f,0.744242f,-1.89796e-017f},{-0.498589f,0.866839f,-9.04411e-018f}, - {-0.30935f,0.950948f,1.30911e-016f},{-0.500567f,0.865698f,-4.94443e-017f},{-0.30778f,0.951458f,2.91257e-017f}, - {-0.104646f,0.99451f,1.16829e-016f},{-0.103531f,0.994626f,-6.18321e-017f},{0.104522f,0.994523f,3.11622e-017f}, - {0.105302f,0.99444f,2.24587e-017f},{0.309096f,0.951031f,-1.31801e-016f},{0.309506f,0.950897f,3.8811e-017f}, - {-0.977984f,0.208678f,-9.04817e-017f},{-1.0f,0.000654662f,-1.21137e-019f},{-0.978488f,0.206306f,5.2354e-017f}, - {-0.999999f,-0.00162868f,-1.85338e-016f},{-0.97822f,-0.207569f,-9.05036e-017f},{-0.977876f,-0.209183f,-5.1765e-017f}, - {-0.913594f,-0.406629f,-7.52414e-017f},{-0.809021f,-0.58778f,-1.49699e-016f},{-0.913137f,-0.407652f,7.54309e-017f}, - {-0.80856f,-0.588414f,1.49614e-016f},{-0.669069f,-0.7432f,3.98842e-016f},{-0.668748f,-0.743489f,0.0f}, - {-0.826294f,0.563239f,-1.23332e-016f},{-0.900997f,0.433825f,6.25192e-017f},{-0.900926f,0.433972f,-6.10305e-018f}, - {-0.733149f,0.680068f,1.0888e-016f},{-0.826202f,0.563374f,3.30128e-017f},{-0.733007f,0.680221f,2.90247e-017f}, - {-0.623628f,0.781722f,2.82083e-016f},{-0.623458f,0.781857f,3.62854e-017f},{-0.50001f,0.866019f,2.14764e-016f}, - {-0.500166f,0.865929f,-6.03025e-017f},{-0.365619f,0.930764f,5.46844e-017f},{-0.0740373f,0.997256f,-1.62533e-016f}, - {0.0743287f,0.997234f,-1.15704e-016f},{-0.0750446f,0.99718f,2.87654e-016f},{-0.365343f,0.930873f,-1.82809e-016f}, - {-0.222715f,0.974884f,-6.76461e-017f},{-0.222546f,0.974922f,2.62874e-016f},{0.0763749f,0.997079f,-2.1338e-016f}, - {0.222287f,0.974981f,-2.68797e-016f},{0.222517f,0.974929f,-7.60189e-017f},{0.365439f,0.930835f,-1.46759e-016f}, - {0.365262f,0.930905f,2.96533e-016f},{-0.955531f,0.294892f,7.66671e-017f},{-0.988805f,0.149216f,6.38722e-017f}, - {-0.955592f,0.294693f,-1.10513e-016f},{-0.988837f,0.149002f,2.28714e-017f},{-1.0f,0.000192142f,0.0f}, - {-1.0f,1.21766e-005f,2.31342e-017f},{-0.988875f,-0.148747f,-4.57447e-017f},{-0.955631f,-0.294565f,1.53218e-016f}, - {-0.988831f,-0.14904f,0.0f},{-0.95558f,-0.294731f,0.0f},{-0.901106f,-0.4336f,-8.3369e-017f}, - {-0.900667f,-0.43451f,4.16642e-017f},{-0.826465f,-0.562987f,-3.82317e-017f},{-0.733215f,-0.679997f,0.0f}, - {-0.825308f,-0.564682f,-1.70796e-016f},{-0.733055f,-0.68017f,-6.78212e-017f},{-0.623556f,-0.781778f,-2.88453e-017f}, - {-0.623408f,-0.781897f,-2.88384e-017f},{0.104013f,0.994576f,7.26654e-018f},{-0.105163f,0.994455f,-2.43825e-017f}, - {-0.104013f,0.994576f,8.93001e-017f},{0.105163f,0.994455f,1.32311e-017f},{0.308272f,0.951298f,-7.55182e-017f}, - {0.310578f,0.950548f,-4.45961e-018f},{0.50141f,0.86521f,-6.50915e-017f},{0.66887f,0.743379f,1.15799e-016f}, - {0.499433f,0.866353f,-4.79524e-017f},{0.670096f,0.742274f,-6.82852e-017f},{0.808947f,0.587881f,-6.27019e-017f}, - {0.809606f,0.586974f,-1.8867e-016f},{0.913543f,0.406743f,2.68879e-016f},{0.913862f,0.406026f,5.33518e-018f}, - {0.978165f,0.20783f,-6.04996e-017f},{0.978254f,0.207408f,1.68043e-016f},{1.0f,2.498e-016f,0.0f}, - {-0.308272f,0.951298f,-7.04878e-018f},{-0.499433f,0.866353f,6.84015e-018f},{-0.310578f,0.950548f,5.99884e-018f}, - {-0.50141f,0.86521f,6.84674e-018f},{-0.66887f,0.743379f,7.13059e-018f},{-0.670096f,0.742274f,1.31123e-016f}, - {-0.808947f,0.587881f,6.66802e-018f},{-0.913543f,0.406743f,-3.42154e-016f},{-0.809606f,0.586974f,2.02398e-017f}, - {-0.913862f,0.406026f,-4.06525e-018f},{-0.978165f,0.20783f,6.87323e-019f},{-0.978254f,0.207408f,-3.6134e-016f}, - {-1.0f,-3.88578e-016f,0.0f},{-1.0f,4.44089e-016f,0.0f},{0.0746326f,0.997211f,-1.85107e-017f}, - {-0.074795f,0.997199f,-2.76797e-017f},{-0.0746326f,0.997211f,-4.61303e-017f},{0.222381f,0.97496f,-1.06824e-016f}, - {0.074795f,0.997199f,4.61297e-017f},{0.222585f,0.974913f,-2.05932e-017f},{0.365177f,0.930938f,3.37857e-017f}, - {0.365379f,0.930859f,-6.76088e-017f},{0.49999f,0.866031f,-1.32579e-016f},{0.499833f,0.866122f,1.49498e-016f}, - {0.623256f,0.782018f,-1.46129e-016f},{0.82663f,0.562746f,-2.18847e-016f},{0.900794f,0.434246f,8.55296e-017f}, - {0.826061f,0.563581f,1.43299e-016f},{0.623488f,0.781833f,2.1746e-017f},{0.732917f,0.680318f,-1.16232e-016f}, - {0.733034f,0.680192f,2.20413e-016f},{0.901683f,0.432397f,-2.49017e-016f},{0.955502f,0.294984f,-5.72353e-017f}, - {0.955572f,0.294759f,-1.44419e-016f},{0.988846f,0.148938f,-1.64846e-016f},{1.0f,-1.11022e-016f,0.0f}, - {0.988818f,0.149126f,-1.13952e-016f},{1.0f,-2.35922e-016f,0.0f},{-0.222381f,0.97496f,0.0f}, - {-0.365177f,0.930938f,-6.75713e-017f},{-0.222585f,0.974913f,-4.90112e-017f},{-0.365379f,0.930859f,6.76088e-017f}, - {-0.499834f,0.866121f,-1.04843e-016f},{-0.499989f,0.866031f,0.0f},{-0.623256f,0.782018f,2.30651e-016f}, - {-0.732917f,0.680318f,-3.97118e-016f},{-0.623488f,0.781833f,-7.23341e-017f},{-0.733034f,0.680192f,0.0f}, - {-0.826061f,0.563581f,0.0f},{-0.82663f,0.562746f,2.01786e-016f},{-0.900794f,0.434246f,-4.13713e-016f}, - {-0.955502f,0.294984f,-3.53607e-016f},{-0.901683f,0.432397f,0.0f},{-0.955572f,0.294759f,-3.53633e-016f}, - {-0.988818f,0.149126f,-3.65936e-016f},{-0.988846f,0.148938f,2.75591e-017f},{-1.0f,-2.498e-016f,0.0f}, - {4.59243e-017f,1.0f,0.0f},{4.12983e-017f,1.0f,0.0f},{-0.173688f,0.984801f,0.0f}, - {-0.342031f,0.939689f,0.0f},{-0.173343f,0.984861f,0.0f},{-0.341751f,0.939791f,0.0f}, - {-0.499517f,0.866304f,0.0f},{-0.642133f,0.766593f,0.0f},{-0.50031f,0.865846f,0.0f}, - {-0.765765f,0.64312f,0.0f},{-0.766272f,0.642516f,0.0f},{-0.865946f,0.500137f,0.0f}, - {-0.939669f,0.342084f,0.0f},{-0.866231f,0.499643f,0.0f},{-0.939879f,0.341507f,0.0f}, - {-0.984809f,0.173642f,0.0f},{-0.984871f,0.173291f,0.0f},{0.173688f,0.984801f,0.0f}, - {0.342031f,0.939689f,0.0f},{0.173343f,0.984861f,0.0f},{0.499517f,0.866304f,0.0f}, - {0.341751f,0.939791f,0.0f},{0.50031f,0.865846f,0.0f},{0.642133f,0.766593f,0.0f}, - {0.765765f,0.64312f,0.0f},{0.865946f,0.500137f,0.0f},{0.766272f,0.642516f,0.0f}, - {0.866231f,0.499643f,0.0f},{0.939669f,0.342084f,0.0f},{0.939879f,0.341507f,0.0f}, - {0.984809f,0.173642f,0.0f},{0.984871f,0.173291f,0.0f},{1.0f,8.32667e-017f,0.0f}, - {4.24548e-017f,1.0f,0.0f},{-0.0981573f,0.995171f,0.0f},{-0.0979559f,0.995191f,0.0f}, - {-0.195278f,0.980748f,0.0f},{-0.290455f,0.956889f,0.0f},{-0.194999f,0.980803f,0.0f}, - {-0.382807f,0.923829f,0.0f},{-0.290209f,0.956963f,0.0f},{-0.382668f,0.923886f,0.0f}, - {-0.471474f,0.88188f,0.0f},{-0.555711f,0.831376f,0.0f},{-0.471468f,0.881883f,0.0f}, - {-0.634547f,0.772884f,0.0f},{-0.555621f,0.831435f,0.0f},{-0.634433f,0.772978f,0.0f}, - {-0.707246f,0.706968f,0.0f},{-0.773125f,0.634253f,0.0f},{-0.707144f,0.70707f,0.0f}, - {-0.83156f,0.555435f,0.0f},{-0.773048f,0.634347f,0.0f},{-0.831507f,0.555514f,0.0f}, - {-0.881988f,0.471271f,0.0f},{-0.923925f,0.382573f,0.0f},{-0.881956f,0.471332f,0.0f}, - {-0.956966f,0.290201f,0.0f},{-0.923909f,0.382613f,0.0f},{-0.956961f,0.290216f,0.0f}, - {-0.980794f,0.195045f,0.0f},{-0.995188f,0.0979878f,0.0f},{-0.980794f,0.195048f,0.0f}, - {-1.0f,5.55112e-017f,0.0f},{-0.995188f,0.0979889f,0.0f},{0.0981573f,0.995171f,0.0f}, - {0.195278f,0.980748f,0.0f},{0.0979559f,0.995191f,0.0f},{0.290455f,0.956889f,0.0f}, - {0.194999f,0.980803f,0.0f},{0.290209f,0.956963f,0.0f},{0.382806f,0.923829f,0.0f}, - {0.471474f,0.88188f,0.0f},{0.382668f,0.923886f,0.0f},{0.555711f,0.831376f,0.0f}, - {0.471468f,0.881883f,0.0f},{0.555621f,0.831435f,0.0f},{0.634547f,0.772884f,0.0f}, - {0.707246f,0.706968f,0.0f},{0.634433f,0.772978f,0.0f},{0.773125f,0.634253f,0.0f}, - {0.707144f,0.70707f,0.0f},{0.773048f,0.634347f,0.0f},{0.83156f,0.555435f,0.0f}, - {0.881988f,0.471271f,0.0f},{0.831507f,0.555514f,0.0f},{0.923925f,0.382573f,0.0f}, - {0.881956f,0.471332f,0.0f},{0.923909f,0.382613f,0.0f},{0.956966f,0.290201f,0.0f}, - {0.980794f,0.195045f,0.0f},{0.956961f,0.290216f,0.0f},{0.995188f,0.0979878f,0.0f}, - {0.980794f,0.195048f,0.0f},{0.995188f,0.0979889f,0.0f},{1.0f,4.00033e-013f,0.0f}, - {0.991431f,-0.130634f,-1.5026e-016f},{0.991453f,-0.130461f,6.85852e-017f},{1.0f,1.04594e-016f,-3.83638e-017f}, - {0.991431f,0.130634f,-3.21402e-016f},{0.991453f,0.130461f,-2.89173e-016f},{1.0f,1.11699e-016f,-3.83638e-017f}, - {0.923924f,0.382576f,2.83996e-016f},{0.9238f,0.382876f,8.53933e-017f},{0.866078f,0.499909f,2.08963e-017f}, - {0.96588f,0.258991f,-8.55181e-017f},{0.965953f,0.258717f,-5.34314e-017f},{0.865923f,0.500177f,-5.73979e-017f}, - {0.793249f,0.608898f,1.92916e-016f},{0.7934f,0.608701f,4.93259e-016f},{0.707134f,0.70708f,4.70843e-017f}, - {0.707032f,0.707182f,-1.83528e-017f},{0.608682f,0.793414f,1.24226e-016f},{0.608828f,0.793302f,-1.11741e-017f}, - {0.500171f,0.865926f,1.14799e-016f},{0.499936f,0.866063f,-2.19067e-016f},{0.382431f,0.923984f,1.50382e-016f}, - {0.38264f,0.923898f,2.91616e-016f},{0.257551f,0.966265f,2.03303e-016f},{0.258907f,0.965902f,-1.91601e-016f}, - {-1.77636e-016f,1.0f,0.0f},{0.130601f,0.991435f,-1.66716e-016f},{0.129881f,0.99153f,1.2663e-016f}, - {0.965953f,-0.258717f,-3.26128e-016f},{0.96588f,-0.258991f,1.67594e-016f},{0.923924f,-0.382575f,3.19072e-016f}, - {0.866078f,-0.499909f,5.5648e-017f},{0.9238f,-0.382876f,5.08067e-016f},{0.865923f,-0.500177f,-5.77672e-016f}, - {0.7934f,-0.608701f,3.62925e-016f},{0.793249f,-0.608898f,3.6309e-016f},{0.707134f,-0.70708f,2.68425e-016f}, - {0.608828f,-0.793302f,-3.58676e-017f},{0.707032f,-0.707182f,-8.0417e-017f},{0.608682f,-0.793414f,-3.58121e-017f}, - {0.500171f,-0.865926f,-3.26581e-017f},{0.499936f,-0.866063f,8.52937e-016f},{0.382431f,-0.923984f,1.98887e-017f}, - {0.258907f,-0.965902f,-4.21509e-018f},{0.38264f,-0.923897f,-3.73789e-018f},{0.257551f,-0.966265f,-4.04087e-018f}, - {0.130601f,-0.991435f,1.01608e-018f},{0.129881f,-0.99153f,1.04991e-018f},{-3.9968e-016f,-1.0f,0.0f}, - {-3.55271e-016f,-1.0f,0.0f},{0.130634f,0.991431f,2.24771e-017f},{-6.81879e-017f,1.0f,-3.5727e-016f}, - {0.130461f,0.991453f,4.82088e-017f},{-0.130634f,0.991431f,-8.9037e-017f},{-2.8908e-017f,1.0f,-3.5727e-016f}, - {-0.130461f,0.991453f,-1.21252e-016f},{-0.382576f,0.923924f,-2.393e-016f},{-0.499909f,0.866078f,-4.33042e-017f}, - {-0.382876f,0.9238f,-9.77137e-017f},{-0.258991f,0.96588f,2.71446e-017f},{-0.258717f,0.965953f,-4.91388e-018f}, - {-0.500177f,0.865923f,3.49703e-017f},{-0.608701f,0.7934f,-4.24266e-016f},{-0.608898f,0.793249f,-1.2395e-016f}, - {-0.70708f,0.707134f,-3.52173e-017f},{-0.707182f,0.707032f,7.38213e-017f},{-0.793302f,0.608828f,3.61888e-017f}, - {-0.793414f,0.608682f,-9.92222e-017f},{-0.865926f,0.500171f,-1.27451e-016f},{-0.923984f,0.382431f,-1.43542e-016f}, - {-0.866063f,0.499936f,2.37252e-016f},{-0.923898f,0.38264f,-2.84771e-016f},{-0.965902f,0.258907f,1.93798e-016f}, - {-0.966265f,0.257551f,-2.0112e-016f},{-1.0f,-1.77636e-016f,0.0f},{-0.99153f,0.129881f,-1.26366e-016f}, - {-0.991435f,0.130601f,1.66981e-016f},{0.258717f,0.965953f,5.79845e-016f},{0.382575f,0.923924f,5.8645e-017f}, - {0.258991f,0.96588f,8.61504e-017f},{0.499909f,0.866078f,-1.08244e-016f},{0.382876f,0.9238f,-1.30347e-016f}, - {0.500177f,0.865923f,7.38772e-016f},{0.608701f,0.7934f,-1.95732e-016f},{0.70708f,0.707134f,-3.63162e-016f}, - {0.608898f,0.793249f,-1.95892e-016f},{0.793302f,0.608828f,-3.00139e-017f},{0.707182f,0.707032f,7.29313e-017f}, - {0.793414f,0.608682f,-3.00317e-017f},{0.865926f,0.500171f,-8.48302e-018f},{0.923984f,0.382431f,5.81523e-018f}, - {0.866063f,0.499936f,-8.32361e-016f},{0.965902f,0.258907f,-3.62871e-018f},{0.923897f,0.38264f,5.83784e-018f}, - {0.966265f,0.257551f,-3.69043e-018f},{0.991435f,0.130601f,-1.6072e-018f},{1.0f,-3.9968e-016f,0.0f}, - {0.99153f,0.129881f,-1.61926e-018f},{1.0f,-3.55271e-016f,0.0f},{-0.991453f,0.130461f,-1.07072e-016f}, - {-1.0f,-1.34854e-016f,-1.10604e-016f},{-0.997004f,0.0773514f,-4.85361e-018f},{-0.984529f,-0.17522f,8.76624e-017f}, - {-0.998781f,-0.0493566f,-2.22428e-016f},{-0.991431f,-0.130634f,-2.6656e-016f},{-0.9238f,-0.382876f,3.55937e-016f}, - {-0.865923f,-0.500177f,4.04041e-018f},{-0.909095f,-0.416588f,2.40191e-017f},{-0.954476f,-0.298289f,8.81846e-017f}, - {-0.96588f,-0.258991f,2.25831e-017f},{-0.793249f,-0.608898f,2.61332e-018f},{-0.775518f,-0.631325f,1.12436e-017f}, - {-0.849113f,-0.528211f,-2.89297e-017f},{-0.707032f,-0.707182f,2.19638e-016f},{-0.608682f,-0.793414f,3.18903e-016f}, - {-0.592379f,-0.805659f,7.30288e-018f},{-0.689484f,-0.724301f,-1.76238e-016f},{-0.499936f,-0.866063f,6.507e-017f}, - {-0.38264f,-0.923898f,2.20941e-016f},{-0.485846f,-0.874044f,2.27593e-017f},{-0.257551f,-0.966265f,1.69139e-016f}, - {-0.250953f,-0.967999f,3.56251e-016f},{-0.370923f,-0.928664f,-1.56513e-017f},{-0.126499f,-0.991967f,2.38761e-016f}, - {-0.129881f,-0.99153f,1.18458e-016f},{1.77636e-016f,-1.0f,0.0f},{-0.979208f,0.202861f,-5.41817e-017f}, - {-0.945695f,0.325055f,-2.584e-016f},{-0.965953f,0.258717f,-1.0161e-016f},{-0.923924f,0.382575f,-9.44417e-017f}, - {-0.897003f,0.442024f,5.64015e-016f},{-0.833912f,0.551898f,-3.53721e-016f},{-0.866078f,0.499909f,2.10067e-017f}, - {-0.757439f,0.652906f,3.44065e-016f},{-0.7934f,0.608701f,3.22157e-016f},{-0.707134f,0.70708f,2.17729e-017f}, - {-0.668817f,0.743427f,2.1497e-017f},{-0.569477f,0.822007f,4.2577e-016f},{-0.608828f,0.793302f,2.07916e-017f}, - {-0.461029f,0.887385f,4.62743e-017f},{-0.500171f,0.865926f,-8.66628e-016f},{-0.382431f,0.923984f,-7.93122e-018f}, - {-0.345178f,0.938537f,9.19408e-016f},{-0.221677f,0.97512f,9.65517e-016f},{-0.258907f,0.965902f,-4.49664e-018f}, - {-0.0988218f,0.995105f,2.20458e-019f},{-0.130601f,0.991435f,-1.82934e-018f},{-3.77476e-016f,1.0f,0.0f}, - {0.994576f,0.104013f,-2.37446e-016f},{0.994455f,-0.105163f,2.4662e-016f},{0.950548f,-0.310578f,3.73545e-016f}, - {0.980872f,-0.194653f,3.75714e-016f},{0.924088f,-0.382179f,3.99499e-016f},{0.742274f,-0.670096f,9.66286e-016f}, - {0.831655f,-0.555293f,7.03883e-016f},{0.86521f,-0.50141f,8.23015e-016f},{0.586974f,-0.809606f,8.82738e-016f}, - {0.707139f,-0.707075f,7.98094e-016f},{0.555458f,-0.831545f,1.00906e-015f},{0.406026f,-0.913862f,9.73266e-016f}, - {0.207408f,-0.978254f,1.11318e-015f},{0.382504f,-0.923954f,1.10236e-015f},{-9.4369e-016f,-1.0f,1.18424e-015f}, - {-4.44089e-016f,-1.0f,1.18424e-015f},{0.19489f,-0.980825f,1.0979e-015f},{0.98057f,0.196168f,-3.04887e-016f}, - {0.951298f,0.308272f,-4.35477e-016f},{0.923329f,0.384009f,-5.11603e-016f},{0.830773f,0.556611f,-7.00357e-016f}, - {0.866353f,0.499433f,-5.27324e-016f},{0.706447f,0.707766f,-8.90548e-016f},{0.743379f,0.66887f,-7.97616e-016f}, - {0.587881f,0.808947f,-9.57986e-016f},{0.554999f,0.831851f,-9.44127e-016f},{0.382212f,0.924075f,-1.23111e-015f}, - {0.406743f,0.913543f,-1.27729e-015f},{0.194766f,0.98085f,-1.13273e-015f},{0.20783f,0.978165f,-1.01358e-015f}, - {6.57384e-032f,1.0f,-1.18424e-015f},{0.0f,1.0f,-1.18424e-015f},{0.197004f,0.475871f,-0.857167f}, - {0.286082f,0.428277f,-0.857167f},{-2.0793e-011f,-0.515038f,-0.857167f},{0.100376f,0.505162f,-0.857167f}, - {8.71248e-012f,0.515038f,-0.857167f},{0.364203f,0.36417f,-0.857167f},{0.428334f,0.285997f,-0.857167f}, - {0.475941f,0.196837f,-0.857167f},{0.505186f,0.100254f,-0.857167f},{0.515038f,-1.86582e-015f,-0.857167f}, - {0.47555f,-0.19778f,-0.857167f},{0.505031f,-0.101034f,-0.857167f},{0.363847f,-0.364526f,-0.857167f}, - {0.42788f,-0.286676f,-0.857167f},{0.196854f,-0.475934f,-0.857167f},{0.285846f,-0.428435f,-0.857167f}, - {1.26614e-015f,-0.515038f,-0.857167f},{0.100312f,-0.505175f,-0.857167f},{0.994576f,0.104013f,-5.34124e-017f}, - {0.994455f,-0.105163f,4.1204e-017f},{0.950548f,-0.310578f,3.38367e-016f},{0.980872f,-0.194653f,1.90615e-016f}, - {0.924088f,-0.382179f,2.52153e-016f},{0.742274f,-0.670096f,8.23884e-016f},{0.831655f,-0.555293f,6.83239e-016f}, - {0.86521f,-0.50141f,6.78022e-016f},{0.586974f,-0.809606f,9.23936e-016f},{0.707139f,-0.707075f,8.43888e-016f}, - {0.555458f,-0.831545f,1.05336e-015f},{0.406026f,-0.913862f,1.11933e-015f},{0.207408f,-0.978254f,1.18377e-015f}, - {0.382504f,-0.923954f,1.10248e-015f},{-5.55112e-017f,-1.0f,1.18424e-015f},{0.0f,-1.0f,1.18424e-015f}, - {0.19489f,-0.980825f,1.11609e-015f},{0.98057f,0.196168f,-1.96021e-016f},{0.951298f,0.308272f,-3.17474e-016f}, - {0.923329f,0.384009f,-5.08887e-016f},{0.830773f,0.556611f,-6.79452e-016f},{0.866353f,0.499433f,-4.53393e-016f}, - {0.706447f,0.707766f,-7.3349e-016f},{0.743379f,0.66887f,-6.87574e-016f},{0.587881f,0.808947f,-9.74348e-016f}, - {0.554999f,0.831851f,-9.8511e-016f},{0.382212f,0.924075f,-1.09432e-015f},{0.406743f,0.913543f,-9.4662e-016f}, - {0.194766f,0.98085f,-9.87533e-016f},{4.16334e-016f,1.0f,-1.18424e-015f},{0.0f,-0.515038f,-0.857167f}, - {8.71235e-012f,0.515038f,-0.857167f},{0.515038f,-2.11803e-015f,-0.857167f},{7.89703e-016f,-0.515038f,-0.857167f}, - {1.0f,6.57384e-032f,7.40149e-017f},{0.994576f,0.104013f,-1.89091e-016f},{0.994455f,-0.105163f,2.07702e-016f}, - {0.950548f,-0.310578f,3.67798e-016f},{0.980872f,-0.194653f,1.0721e-016f},{0.924088f,-0.382179f,4.00133e-016f}, - {0.742274f,-0.670096f,8.8302e-016f},{0.831655f,-0.555293f,6.21707e-016f},{0.586974f,-0.809606f,8.44444e-016f}, - {0.707139f,-0.707075f,7.32676e-016f},{0.555458f,-0.831545f,8.05154e-016f},{0.406026f,-0.913862f,1.0147e-015f}, - {0.207408f,-0.978254f,9.49547e-016f},{0.382504f,-0.923954f,1.06648e-015f},{9.15934e-016f,-1.0f,1.03621e-015f}, - {0.0f,-1.0f,1.03621e-015f},{0.19489f,-0.980825f,1.15631e-015f},{0.98057f,0.196168f,-2.3231e-016f}, - {0.923329f,0.384009f,-2.61233e-016f},{0.866353f,0.499433f,-7.19693e-016f},{0.706447f,0.707766f,-7.33587e-016f}, - {0.743379f,0.66887f,-5.83047e-016f},{0.587881f,0.808947f,-1.07773e-015f},{0.554999f,0.831851f,-1.10825e-015f}, - {0.20783f,0.978165f,-1.18915e-015f},{-3.88578e-016f,1.0f,-1.18424e-015f},{4.44089e-016f,1.0f,-1.18424e-015f}, - {8.71311e-012f,0.515038f,-0.857167f},{0.515038f,-7.70404e-016f,-0.857167f},{5.42398e-016f,-0.515038f,-0.857167f}, - {1.0f,-2.22045e-016f,-7.40149e-017f},{0.994576f,0.104013f,-4.57139e-017f},{0.994455f,-0.105163f,1.02395e-017f}, - {0.950548f,-0.310578f,2.38582e-016f},{0.980872f,-0.194653f,1.6512e-016f},{0.924088f,-0.382179f,4.96816e-016f}, - {0.742274f,-0.670096f,7.74955e-016f},{0.831655f,-0.555293f,7.08878e-016f},{0.86521f,-0.50141f,4.90092e-016f}, - {0.586974f,-0.809606f,1.02824e-015f},{0.707139f,-0.707075f,9.74729e-016f},{0.555458f,-0.831545f,9.46272e-016f}, - {0.406026f,-0.913862f,1.24486e-015f},{0.207408f,-0.978254f,1.21316e-015f},{0.382504f,-0.923954f,1.12889e-015f}, - {4.44089e-016f,-1.0f,1.18424e-015f},{0.19489f,-0.980825f,1.27861e-015f},{0.98057f,0.196168f,-1.59733e-016f}, - {0.951298f,0.308272f,-2.94657e-016f},{0.923329f,0.384009f,-5.23098e-016f},{0.830773f,0.556611f,-7.61847e-016f}, - {0.706447f,0.707766f,-8.38163e-016f},{0.743379f,0.66887f,-7.3708e-016f},{0.587881f,0.808947f,-8.38238e-016f}, - {0.554999f,0.831851f,-9.44031e-016f},{0.194766f,0.98085f,-1.19039e-015f},{0.20783f,0.978165f,-1.12761e-015f}, - {-4.996e-016f,1.0f,-1.18424e-015f},{-4.44089e-016f,1.0f,-1.18424e-015f},{2.0793e-011f,-0.515038f,-0.857167f}, - {8.7127e-012f,0.515038f,-0.857167f},{0.515038f,-8.60974e-016f,-0.857167f},{5.6139e-016f,-0.515038f,-0.857167f}, - {0.130634f,0.991431f,9.00714e-017f},{0.130461f,0.991453f,6.43735e-017f},{-4.44089e-017f,1.0f,1.11862e-030f}, - {-0.130634f,0.991431f,1.22301e-016f},{-0.130461f,0.991453f,3.21868e-017f},{-4.71845e-017f,1.0f,1.11999e-030f}, - {-0.382576f,0.923924f,1.78148e-017f},{-0.382876f,0.9238f,4.72309e-017f},{-0.499909f,0.866078f,-1.52008e-016f}, - {-0.258991f,0.96588f,-2.14995e-016f},{-0.258717f,0.965953f,-6.38297e-017f},{-0.500177f,0.865923f,-2.3022e-016f}, - {-0.608898f,0.793249f,1.50225e-016f},{-0.608701f,0.7934f,4.50529e-016f},{-0.70708f,0.707134f,6.5418e-017f}, - {-0.707182f,0.707032f,-4.36183e-017f},{-0.793414f,0.608682f,7.34055e-017f},{-0.793302f,0.608828f,-6.2017e-017f}, - {-0.865926f,0.500171f,1.08892e-016f},{-0.866063f,0.499936f,-2.24963e-016f},{-0.923984f,0.382431f,1.36579e-016f}, - {-0.923898f,0.38264f,2.77802e-016f},{-0.966265f,0.257551f,1.98912e-016f},{-0.965902f,0.258907f,-1.96021e-016f}, - {-0.991435f,0.130601f,-1.67248e-016f},{-0.99153f,0.129881f,1.26101e-016f},{0.258717f,0.965953f,-2.55319e-016f}, - {0.258991f,0.96588f,-1.19149e-016f},{0.382575f,0.923924f,1.67951e-030f},{0.499909f,0.866078f,2.46671e-016f}, - {0.382876f,0.9238f,1.88923e-016f},{0.500177f,0.865923f,-3.86789e-016f},{0.608701f,0.7934f,3.00353e-016f}, - {0.608898f,0.793249f,3.0045e-016f},{0.70708f,0.707134f,2.61666e-016f},{0.793302f,0.608828f,-7.51038e-017f}, - {0.707182f,0.707032f,1.87217e-030f},{0.793414f,0.608682f,1.78765e-030f},{0.865926f,0.500171f,1.61435e-030f}, - {0.866063f,0.499936f,8.23851e-016f},{0.923984f,0.382431f,1.3463e-030f},{0.965902f,0.258907f,9.865e-031f}, - {0.923897f,0.38264f,1.34684e-030f},{0.966265f,0.257551f,9.82132e-031f},{0.991435f,0.130601f,5.35361e-031f}, - {0.99153f,0.129881f,5.32617e-031f},{0.994856f,0.101296f,0.0f},{0.998601f,0.0528865f,0.0f}, - {0.994333f,0.106314f,0.0f},{0.977365f,0.211559f,0.0f},{0.977403f,0.211384f,0.0f}, - {0.964768f,0.263101f,0.0f},{0.998775f,0.049491f,0.0f},{1.0f,1.19209e-007f,0.0f}, - {1.0f,1.93784e-016f,0.0f},{0.987859f,0.155356f,0.0f},{0.987268f,0.159066f,0.0f}, - {0.943659f,0.330919f,0.0f},{0.962422f,0.27156f,0.0f},{0.949398f,0.314075f,0.0f}, - {0.866023f,0.500004f,0.0f},{0.89538f,0.445304f,0.0f},{0.887356f,0.461084f,0.0f}, - {0.921283f,0.388894f,0.0f},{0.931337f,0.364157f,0.0f},{0.910637f,0.413206f,0.0f}, - {0.802718f,0.596359f,0.0f},{0.769841f,0.638236f,0.0f},{0.797431f,0.60341f,0.0f}, - {0.861559f,0.507658f,0.0f},{0.833319f,0.552792f,0.0f},{0.833335f,0.552769f,0.0f}, - {0.697641f,0.716448f,0.0f},{0.671898f,0.740644f,0.0f},{0.716559f,0.697526f,0.0f}, - {0.734782f,0.678303f,0.0f},{0.758457f,0.651723f,0.0f},{0.541517f,0.84069f,0.0f}, - {0.609678f,0.792649f,0.0f},{0.574801f,0.818293f,0.0f},{0.658522f,0.752561f,0.0f}, - {0.437309f,0.899311f,0.0f},{0.388825f,0.921312f,0.0f},{0.388834f,0.921308f,0.0f}, - {0.484556f,0.87476f,0.0f},{0.467738f,0.883867f,0.0f},{0.237326f,0.97143f,0.0f}, - {0.239133f,0.970987f,0.0f},{0.288698f,0.95742f,0.0f},{0.305468f,0.952202f,0.0f}, - {0.339241f,0.940699f,0.0f},{0.103293f,0.994651f,0.0f},{0.132709f,0.991155f,0.0f}, - {0.079772f,0.996813f,0.0f},{0.185276f,0.982686f,0.0f},{0.171605f,0.985166f,0.0f}, - {0.0344868f,0.999405f,0.0f},{-0.0266303f,0.999645f,0.0f},{-0.03448f,0.999405f,0.0f}, - {0.0266126f,0.999646f,0.0f},{-0.132754f,0.991149f,0.0f},{-0.185314f,0.982679f,0.0f}, - {-0.171593f,0.985168f,0.0f},{-0.10328f,0.994652f,0.0f},{-0.0798119f,0.99681f,0.0f}, - {-0.339268f,0.94069f,0.0f},{-0.305468f,0.952202f,0.0f},{-0.288713f,0.957416f,0.0f}, - {-0.239168f,0.970978f,0.0f},{-0.237346f,0.971425f,0.0f},{-0.467738f,0.883867f,0.0f}, - {-0.388834f,0.921308f,0.0f},{-0.437338f,0.899297f,0.0f},{-0.388857f,0.921298f,0.0f}, - {-0.541517f,0.84069f,0.0f},{-0.530443f,0.847721f,0.0f},{-0.574807f,0.818289f,0.0f}, - {-0.484577f,0.874749f,0.0f},{-0.658536f,0.752549f,0.0f},{-0.697657f,0.716432f,0.0f}, - {-0.671898f,0.740644f,0.0f},{-0.609678f,0.792649f,0.0f},{-0.617547f,0.786534f,0.0f}, - {-0.734799f,0.678285f,0.0f},{-0.769857f,0.638216f,0.0f},{-0.758453f,0.651728f,0.0f}, - {-0.716553f,0.697532f,0.0f},{-0.797427f,0.603416f,0.0f},{-0.802733f,0.596339f,0.0f}, - {-0.833333f,0.552771f,0.0f},{-0.833328f,0.552779f,0.0f},{-0.861571f,0.507638f,0.0f}, - {-0.866021f,0.500008f,0.0f},{-0.887366f,0.461066f,0.0f},{-0.895373f,0.445318f,0.0f}, - {-0.921279f,0.388903f,0.0f},{-0.910645f,0.413189f,0.0f},{-0.931345f,0.364138f,0.0f}, - {-0.943631f,0.330998f,0.0f},{-0.949405f,0.314055f,0.0f},{-0.962355f,0.271796f,0.0f}, - {-0.977365f,0.211559f,0.0f},{-0.964773f,0.263083f,0.0f},{-0.98727f,0.159053f,0.0f}, - {-0.977407f,0.211368f,0.0f},{-0.994335f,0.106287f,0.0f},{-0.987859f,0.155356f,0.0f}, - {-0.994856f,0.101296f,0.0f},{-0.9986f,0.0529056f,0.0f},{-0.998775f,0.049491f,0.0f}, - {0.53043f,0.847729f,0.0f},{0.617538f,0.786541f,0.0f},{0.624695f,-9.46817e-016f,-0.780869f}, - {0.624695f,-9.5349e-016f,-0.780869f},{0.623357f,-0.040871f,-0.780869f},{0.409092f,0.47211f,-0.780869f}, - {0.411878f,0.469681f,-0.780869f},{0.380282f,0.495611f,-0.780869f},{0.441714f,0.441739f,-0.780869f}, - {0.362367f,0.508856f,-0.780869f},{0.347057f,0.519418f,-0.780869f},{0.312348f,0.541002f,-0.780869f}, - {0.312341f,0.541005f,-0.780869f},{0.347056f,0.519419f,-0.780869f},{0.276286f,0.560277f,-0.780869f}, - {0.276287f,0.560276f,-0.780869f},{0.239058f,0.577144f,-0.780869f},{0.239054f,0.577146f,-0.780869f}, - {0.200802f,0.591543f,-0.780869f},{0.200803f,0.591542f,-0.780869f},{0.161685f,0.603409f,-0.780869f}, - {0.161681f,0.60341f,-0.780869f},{0.121783f,0.612709f,-0.780869f},{0.121874f,0.612691f,-0.780869f}, - {0.0815751f,0.619346f,-0.780869f},{0.0813198f,0.61938f,-0.780869f},{0.0406682f,0.62337f,-0.780869f}, - {0.0408792f,0.623356f,-0.780869f},{6.31627e-017f,0.624695f,-0.780869f},{9.6494e-017f,0.624695f,-0.780869f}, - {0.452119f,0.431082f,-0.780869f},{0.469659f,0.411903f,-0.780869f},{0.491049f,0.386154f,-0.780869f}, - {0.495594f,0.380303f,-0.780869f},{0.519406f,0.347075f,-0.780869f},{0.525532f,0.337728f,-0.780869f}, - {0.540994f,0.31236f,-0.780869f},{0.555257f,0.286241f,-0.780869f},{0.560267f,0.276306f,-0.780869f}, - {0.579951f,0.232166f,-0.780869f},{0.577139f,0.239071f,-0.780869f},{0.603409f,0.161685f,-0.780869f}, - {0.612693f,0.121866f,-0.780869f},{0.613402f,0.118247f,-0.780869f},{0.599395f,0.175983f,-0.780869f}, - {0.591539f,0.200813f,-0.780869f},{0.613408f,0.118216f,-0.780869f},{0.603405f,0.161699f,-0.780869f}, - {0.612688f,0.12189f,-0.780869f},{0.621867f,0.0593712f,-0.780869f},{0.619348f,0.0815574f,-0.780869f}, - {0.623358f,0.0408492f,-0.780869f},{0.624695f,-9.55166e-016f,-0.780869f},{0.623358f,0.0408553f,-0.780869f}, - {0.619036f,-0.0838959f,-0.780869f},{0.623279f,-0.0420416f,-0.780869f},{0.619348f,-0.0815572f,-0.780869f}, - {0.589599f,-0.206439f,-0.780869f},{0.602157f,-0.166284f,-0.780869f},{0.591537f,-0.200819f,-0.780869f}, - {0.611985f,-0.125373f,-0.780869f},{0.612689f,-0.121886f,-0.780869f},{0.603406f,-0.161693f,-0.780869f}, - {0.556524f,-0.283768f,-0.780869f},{0.540992f,-0.312365f,-0.780869f},{0.536161f,-0.320586f,-0.780869f}, - {0.577134f,-0.239082f,-0.780869f},{0.560263f,-0.276314f,-0.780869f},{0.574364f,-0.245661f,-0.780869f}, - {0.495593f,-0.380304f,-0.780869f},{0.469657f,-0.411906f,-0.780869f},{0.488247f,-0.389691f,-0.780869f}, - {0.513369f,-0.355945f,-0.780869f},{0.519405f,-0.347077f,-0.780869f},{0.380275f,-0.495616f,-0.780869f}, - {0.400096f,-0.479758f,-0.780869f},{0.411873f,-0.469686f,-0.780869f},{0.431479f,-0.451741f,-0.780869f}, - {0.460909f,-0.421672f,-0.780869f},{0.441709f,-0.441743f,-0.780869f},{0.295665f,-0.550296f,-0.780869f}, - {0.332035f,-0.529147f,-0.780869f},{0.312348f,-0.541002f,-0.780869f},{0.366898f,-0.505599f,-0.780869f}, - {0.31233f,-0.541012f,-0.780869f},{0.276304f,-0.560268f,-0.780869f},{0.239076f,-0.577137f,-0.780869f}, - {0.239048f,-0.577148f,-0.780869f},{0.200811f,-0.591539f,-0.780869f},{0.276284f,-0.560278f,-0.780869f}, - {0.161687f,-0.603408f,-0.780869f},{0.161672f,-0.603412f,-0.780869f},{0.121883f,-0.612689f,-0.780869f}, - {0.200788f,-0.591547f,-0.780869f},{0.0815507f,-0.619349f,-0.780869f},{0.121867f,-0.612693f,-0.780869f}, - {0.0815307f,-0.619352f,-0.780869f},{0.0407198f,-0.623367f,-0.780869f},{0.0408636f,-0.623357f,-0.780869f}, - {-6.68781e-017f,-0.624695f,-0.780869f},{0.0f,-0.624695f,-0.780869f},{0.347044f,-0.519427f,-0.780869f}, - {0.121858f,-0.612694f,-0.780869f},{0.13845f,-0.60916f,-0.780869f},{0.161673f,-0.603412f,-0.780869f}, - {0.0815244f,-0.619353f,-0.780869f},{0.0972037f,-0.617086f,-0.780869f},{0.0554519f,-0.622229f,-0.780869f}, - {0.040847f,-0.623358f,-0.780869f},{-3.53852e-018f,-0.624695f,-0.780869f},{0.0134175f,-0.624551f,-0.780869f}, - {0.179217f,-0.598436f,-0.780869f},{0.219081f,-0.585019f,-0.780869f},{0.238818f,-0.577243f,-0.780869f}, - {0.20082f,-0.591536f,-0.780869f},{0.257958f,-0.568948f,-0.780869f},{0.276277f,-0.560281f,-0.780869f}, - {0.624695f,-9.4344e-016f,-0.780869f},{0.362343f,0.508873f,-0.780869f},{0.31234f,0.541006f,-0.780869f}, - {0.409076f,0.472124f,-0.780869f},{0.380283f,0.49561f,-0.780869f},{0.441721f,0.441731f,-0.780869f}, - {0.411883f,0.469676f,-0.780869f},{0.452096f,0.431107f,-0.780869f},{0.49103f,0.386178f,-0.780869f}, - {0.469665f,0.411897f,-0.780869f},{0.519411f,0.347068f,-0.780869f},{0.495597f,0.3803f,-0.780869f}, - {0.525513f,0.337758f,-0.780869f},{0.555239f,0.286275f,-0.780869f},{0.541001f,0.312349f,-0.780869f}, - {0.560272f,0.276296f,-0.780869f},{0.579937f,0.232201f,-0.780869f},{0.577143f,0.23906f,-0.780869f}, - {0.599383f,0.176024f,-0.780869f},{0.591542f,0.200803f,-0.780869f},{0.621866f,0.0593873f,-0.780869f}, - {0.619352f,0.0815289f,-0.780869f},{1.0f,1.19209e-007f,-8.82326e-023f},{1.0f,3.38566e-017f,-2.50589e-032f}, - {0.998307f,-0.058159f,4.30463e-017f},{0.993236f,-0.116116f,8.5943e-017f},{0.998309f,-0.0581378f,4.30306e-017f}, - {0.984803f,-0.173675f,1.28545e-016f},{0.99324f,-0.11608f,8.59168e-017f},{0.984811f,-0.173633f,2.57028e-016f}, - {0.973038f,-0.230643f,1.7071e-016f},{0.957982f,-0.286828f,0.0f},{0.973049f,-0.2306f,1.70678e-016f}, - {0.939685f,-0.342042f,5.06323e-016f},{0.957993f,-0.28679f,0.0f},{0.939696f,-0.342012f,5.0628e-016f}, - {0.918208f,-0.396098f,5.86343e-016f},{0.893624f,-0.448816f,6.64382e-016f},{0.918216f,-0.396079f,5.86315e-016f}, - {0.866013f,-0.500021f,7.40179e-016f},{0.893631f,-0.448803f,0.0f},{0.866023f,-0.500004f,7.40154e-016f}, - {0.835473f,-0.549532f,8.13471e-016f},{0.802106f,-0.597181f,8.84005e-016f},{0.835486f,-0.549512f,0.0f}, - {0.766027f,-0.642808f,9.51547e-016f},{0.802121f,-0.597162f,8.83977e-016f},{0.766041f,-0.642791f,0.0f}, - {0.727358f,-0.686258f,0.0f},{0.686227f,-0.727388f,0.0f},{0.727369f,-0.686246f,0.0f}, - {0.642773f,-0.766057f,0.0f},{0.686238f,-0.727377f,0.0f},{0.642785f,-0.766046f,1.13398e-015f}, - {0.597145f,-0.802133f,0.0f},{0.549498f,-0.835495f,0.0f},{0.597158f,-0.802124f,0.0f}, - {0.499989f,-0.866032f,0.0f},{0.549511f,-0.835486f,0.0f},{0.500008f,-0.866021f,0.0f}, - {0.448787f,-0.893639f,0.0f},{0.396067f,-0.918221f,0.0f},{0.448811f,-0.893627f,0.0f}, - {0.342011f,-0.939696f,0.0f},{0.396094f,-0.91821f,0.0f},{0.342035f,-0.939687f,0.0f}, - {0.286798f,-0.957991f,0.0f},{0.230613f,-0.973045f,0.0f},{0.286837f,-0.957979f,0.0f}, - {0.230535f,-0.973064f,0.0f},{0.173651f,-0.984807f,0.0f},{0.116108f,-0.993237f,0.0f}, - {0.173275f,-0.984873f,0.0f},{0.0581642f,-0.998307f,0.0f},{0.11595f,-0.993255f,0.0f}, - {1.30331e-016f,-1.0f,0.0f},{0.0581517f,-0.998308f,0.0f},{1.54466e-016f,-1.0f,0.0f}, - {0.998307f,0.0581591f,-4.30464e-017f},{0.993236f,0.116116f,-8.5943e-017f},{0.998309f,0.0581377f,-4.30305e-017f}, - {0.99324f,0.11608f,0.0f},{0.984803f,0.173675f,0.0f},{0.973038f,0.230643f,-1.7071e-016f}, - {0.984811f,0.173632f,-1.28514e-016f},{0.957982f,0.286828f,-2.12296e-016f},{0.973049f,0.2306f,-1.70678e-016f}, - {0.957994f,0.28679f,-2.12267e-016f},{0.939685f,0.342042f,-2.53162e-016f},{0.918208f,0.396098f,-2.93171e-016f}, - {0.939696f,0.342012f,-2.5314e-016f},{0.893624f,0.448817f,-3.32191e-016f},{0.918216f,0.396079f,-2.93157e-016f}, - {0.893631f,0.448803f,-1.66091e-016f},{0.866013f,0.500021f,-1.85045e-016f},{0.835473f,0.549532f,-2.03368e-016f}, - {0.866023f,0.500004f,-3.70077e-016f},{0.802106f,0.597181f,-2.21001e-016f},{0.835486f,0.549512f,-2.0336e-016f}, - {0.802121f,0.597162f,-2.20994e-016f},{0.766027f,0.642808f,-2.37887e-016f},{0.727358f,0.686259f,0.0f}, - {0.766042f,0.642791f,-2.3788e-016f},{0.686227f,0.727388f,-2.69188e-016f},{0.72737f,0.686246f,-2.53962e-016f}, - {0.686238f,0.727377f,-2.69184e-016f},{0.642773f,0.766057f,-1.41749e-016f},{0.597145f,0.802133f,-1.48424e-016f}, - {0.642785f,0.766046f,-1.41747e-016f},{0.549498f,0.835495f,-1.54598e-016f},{0.597158f,0.802124f,-2.96845e-016f}, - {0.549511f,0.835486f,-1.54596e-016f},{0.499989f,0.866032f,0.0f},{0.448787f,0.893639f,-1.65356e-016f}, - {0.500008f,0.866021f,-1.60246e-016f},{0.396067f,0.918222f,-8.49526e-017f},{0.448811f,0.893627f,-8.26771e-017f}, - {0.396094f,0.91821f,-8.49515e-017f},{0.342011f,0.939696f,-8.69394e-017f},{0.286798f,0.957991f,-4.4316e-017f}, - {0.342035f,0.939687f,-8.69385e-017f},{0.230613f,0.973045f,-4.50124e-017f},{0.286837f,0.957979f,-4.43155e-017f}, - {0.173651f,0.984807f,-2.27782e-017f},{0.230535f,0.973064f,-4.50133e-017f},{0.173275f,0.984873f,-2.27798e-017f}, - {0.116108f,0.993237f,-1.14866e-017f},{0.11595f,0.993255f,-1.14868e-017f},{0.0581641f,0.998307f,-2.88631e-018f}, - {0.0581517f,0.998308f,-2.88631e-018f},{3.49254e-012f,1.0f,-9.79579e-039f},{8.206e-017f,1.0f,0.0f}, - {1.0f,7.76449e-017f,-9.195e-032f},{1.0f,6.17846e-017f,-7.31676e-032f},{0.998629f,-0.052353f,6.19984e-017f}, - {0.994519f,-0.104553f,1.34134e-016f},{0.99863f,-0.052328f,6.19688e-017f},{0.987684f,-0.156459f,2.00725e-016f}, - {0.994523f,-0.104515f,1.23771e-016f},{0.987691f,-0.156421f,2.00676e-016f},{0.978143f,-0.207932f,2.66762e-016f}, - {0.965922f,-0.258835f,3.06522e-016f},{0.978149f,-0.207904f,2.46208e-016f},{0.951049f,-0.30904f,3.65977e-016f}, - {0.965925f,-0.258822f,3.06506e-016f},{0.951055f,-0.309021f,3.65954e-016f},{0.933568f,-0.3584f,4.2443e-016f}, - {0.913531f,-0.40677f,4.81712e-016f},{0.933581f,-0.358367f,3.89026e-016f},{0.890991f,-0.454022f,5.3767e-016f}, - {0.913546f,-0.406734f,5.2181e-016f},{0.891007f,-0.453989f,5.37631e-016f},{0.866009f,-0.500028f,5.92152e-016f}, - {0.838655f,-0.544663f,6.45011e-016f},{0.866024f,-0.500002f,6.41465e-016f},{0.809001f,-0.587808f,6.38096e-016f}, - {0.838665f,-0.544647f,5.91242e-016f},{0.809009f,-0.587797f,6.96091e-016f},{0.777125f,-0.629346f,7.45295e-016f}, - {0.74312f,-0.669158f,7.92442e-016f},{0.777137f,-0.629331f,8.07384e-016f},{0.70708f,-0.707134f,8.37415e-016f}, - {0.743137f,-0.66914f,6.60351e-016f},{0.707099f,-0.707115f,8.37392e-016f},{0.669102f,-0.74317f,8.80091e-016f}, - {0.629291f,-0.777169f,9.20353e-016f},{0.669122f,-0.743152f,1.02675e-015f},{0.587756f,-0.809038f,1.11778e-015f}, - {0.629312f,-0.777153f,9.20334e-016f},{0.587776f,-0.809023f,1.11776e-015f},{0.54461f,-0.838689f,9.93208e-016f}, - {0.499972f,-0.866041f,1.0256e-015f},{0.54463f,-0.838677f,9.93193e-016f},{0.453965f,-0.891019f,1.05518e-015f}, - {0.49999f,-0.866031f,1.02559e-015f},{0.45398f,-0.891012f,1.05517e-015f},{0.406714f,-0.913555f,9.01556e-016f}, - {0.358347f,-0.933588f,1.10559e-015f},{0.406729f,-0.913549f,9.01549e-016f},{0.308997f,-0.951063f,1.12628e-015f}, - {0.358363f,-0.933582f,1.10558e-015f},{0.309013f,-0.951058f,1.12628e-015f},{0.258801f,-0.965931f,1.33454e-015f}, - {0.207899f,-0.97815f,1.35142e-015f},{0.258815f,-0.965927f,1.14389e-015f},{0.156426f,-0.98769f,9.74716e-016f}, - {0.207911f,-0.978148f,1.15836e-015f},{0.156436f,-0.987688f,1.16966e-015f},{0.104524f,-0.994522f,1.17775e-015f}, - {0.0520121f,-0.998646f,9.85529e-016f},{0.104542f,-0.99452f,1.17775e-015f},{1.58603e-016f,-1.0f,1.18424e-015f}, - {0.0519994f,-0.998647f,1.18264e-015f},{1.19209e-007f,-1.0f,1.18424e-015f},{0.998629f,0.0523531f,-6.19985e-017f}, - {0.994519f,0.104553f,-1.13498e-016f},{0.99863f,0.0523281f,-6.19689e-017f},{0.994523f,0.104515f,-1.23771e-016f}, - {0.987684f,0.156459f,-1.85285e-016f},{0.978143f,0.207932f,-2.46241e-016f},{0.987691f,0.156421f,-1.92958e-016f}, - {0.965922f,0.258835f,-3.19294e-016f},{0.978149f,0.207904f,-2.46208e-016f},{0.965925f,0.258822f,-3.19278e-016f}, - {0.951049f,0.30904f,-3.81226e-016f},{0.933568f,0.3584f,-3.71377e-016f},{0.951055f,0.309021f,-3.65954e-016f}, - {0.913531f,0.40677f,-4.81712e-016f},{0.933581f,0.358367f,-4.24392e-016f},{0.913546f,0.406734f,-5.0174e-016f}, - {0.890991f,0.454022f,-5.71274e-016f},{0.866009f,0.500028f,-6.16825e-016f},{0.891007f,0.453989f,-5.71233e-016f}, - {0.838655f,0.544663f,-6.58448e-016f},{0.866024f,0.500002f,-5.92122e-016f},{0.838665f,0.544647f,-6.31554e-016f}, - {0.809001f,0.587808f,-6.52598e-016f},{0.777125f,0.629346f,-7.60822e-016f},{0.809009f,0.587797f,-6.8884e-016f}, - {0.74312f,0.669158f,-8.50225e-016f},{0.777137f,0.629331f,-7.60804e-016f},{0.743137f,0.66914f,-8.6671e-016f}, - {0.70708f,0.707134f,-7.50184e-016f},{0.669102f,0.74317f,-9.12177e-016f},{0.707099f,0.707115f,-8.72284e-016f}, - {0.629291f,0.77717f,-9.44321e-016f},{0.669122f,0.743152f,-8.75485e-016f},{0.629312f,0.777153f,-7.71738e-016f}, - {0.587756f,0.809038f,-9.38133e-016f},{0.54461f,0.838689f,-9.46651e-016f},{0.587776f,0.809024f,-9.58076e-016f}, - {0.499972f,0.866041f,-9.66841e-016f},{0.54463f,0.838677f,-9.46637e-016f},{0.49999f,0.866031f,-9.64159e-016f}, - {0.453965f,0.891019f,-1.1541e-015f},{0.406714f,0.913555f,-1.12976e-015f},{0.45398f,0.891012f,-1.12112e-015f}, - {0.358347f,0.933588f,-1.1459e-015f},{0.406729f,0.913549f,-1.1692e-015f},{0.358363f,0.933582f,-1.09407e-015f}, - {0.308997f,0.951063f,-1.12995e-015f},{0.258801f,0.965931f,-1.09251e-015f},{0.309013f,0.951058f,-1.10648e-015f}, - {0.207899f,0.97815f,-1.09633e-015f},{0.258815f,0.965927f,-1.11335e-015f},{0.207911f,0.978148f,-1.29222e-015f}, - {0.156426f,0.98769f,-1.07876e-015f},{0.104524f,0.994522f,-1.04604e-015f},{0.156436f,0.987688f,-1.27522e-015f}, - {0.0520121f,0.998646f,-1.21422e-015f},{0.104542f,0.99452f,-1.24232e-015f},{0.0519993f,0.998647f,-1.21422e-015f}, - {5.52976e-012f,1.0f,-1.18424e-015f},{-4.7581e-017f,1.0f,-1.18424e-015f},{0.0f,1.38778e-017f,1.0f}, - {0.0f,-1.38778e-017f,1.0f},{0.0f,-2.77556e-017f,1.0f},{0.0f,2.77556e-017f,1.0f}, - {0.0f,1.04083e-017f,1.0f},{0.0f,5.20417e-018f,1.0f},{0.0f,-2.12504e-017f,1.0f}, - {0.0f,6.93889e-018f,1.0f},{0.0f,-1.73472e-017f,1.0f},{0.0f,-1.04083e-017f,1.0f}, - {0.0f,-2.08167e-017f,1.0f},{0.0f,2.42861e-017f,1.0f},{0.0f,1.73472e-017f,1.0f}, - {0.0f,-2.25514e-017f,1.0f},{0.0f,-6.93889e-018f,1.0f},{0.0f,2.08167e-017f,1.0f}, - {0.0f,-5.20417e-018f,1.0f},{0.0f,3.46945e-018f,1.0f},{0.0f,-3.46945e-018f,1.0f}, - {0.0f,-2.42861e-017f,1.0f},{0.0f,5.55112e-017f,1.0f},{0.0f,-5.55112e-017f,1.0f}, - {0.15501f,-0.0448068f,0.986896f},{0.151564f,-0.0553554f,0.986896f},{0.307074f,-0.112152f,0.945054f}, - {0.668812f,-0.559936f,0.489042f},{0.705929f,-0.51235f,0.489042f},{0.622414f,-0.451736f,0.639168f}, - {0.652262f,-0.407453f,0.639168f},{0.739783f,-0.462125f,0.489042f},{0.490087f,-0.410306f,0.769067f}, - {0.374976f,-0.313934f,0.87226f},{0.460725f,-0.443021f,0.769067f},{0.235646f,-0.226591f,0.945054f}, - {0.305444f,-0.336696f,0.890696f},{0.352511f,-0.338965f,0.87226f},{0.104942f,-0.115679f,0.987727f}, - {0.207967f,-0.229246f,0.950892f},{0.116309f,-0.11184f,0.986896f},{0.678996f,-0.361149f,0.639168f}, - {0.770104f,-0.409608f,0.489042f},{0.702422f,-0.313158f,0.639168f},{6.07606e-008f,-5.84258e-008f,1.0f}, - {5.66367e-008f,-6.24316e-008f,1.0f},{0.801521f,-0.500692f,0.326914f},{0.837008f,-0.52286f,0.161356f}, - {0.834372f,-0.443791f,0.326914f},{0.833339f,-0.552763f,1.22111e-009f},{0.866025f,-0.5f,2.96063e-015f}, - {0.798705f,-0.579685f,0.161356f},{0.797438f,-0.603401f,1.88811e-015f},{0.75671f,-0.633525f,0.161356f}, - {0.871314f,-0.46344f,0.161356f},{0.895381f,-0.445302f,8.1345e-010f},{0.716504f,-0.697583f,3.07674e-011f}, - {0.758466f,-0.651713f,3.54258e-015f},{0.711375f,-0.684039f,0.161356f},{0.671898f,-0.740644f,0.0f}, - {0.66364f,-0.731542f,0.156297f},{0.901374f,-0.401856f,0.161356f},{0.921284f,-0.38889f,4.19485e-015f}, - {0.927004f,-0.338567f,0.161356f},{0.943637f,-0.330981f,3.15625e-010f},{0.962368f,-0.27175f,4.29443e-015f}, - {0.948083f,-0.27405f,0.161356f},{0.965371f,-0.208962f,0.156188f},{0.929369f,-0.201169f,0.309522f}, - {0.796673f,-0.355178f,0.489042f},{0.628743f,-0.604582f,0.489042f},{0.589688f,-0.493693f,0.639168f}, - {0.977365f,-0.211559f,2.52172e-015f},{0.863158f,-0.384819f,0.326914f},{0.61403f,-0.177489f,0.769067f}, - {0.574515f,-0.124358f,0.808992f},{0.469808f,-0.135801f,0.87226f},{0.691102f,-0.149594f,0.707107f}, - {0.738821f,-0.213561f,0.639168f},{9.17498e-016f,3.64703e-016f,1.0f},{2.19934e-015f,-9.00417e-016f,1.0f}, - {0.431766f,-0.229651f,0.87226f},{0.446663f,-0.199134f,0.87226f},{0.298584f,-0.133117f,0.945054f}, - {0.152759f,-0.0330659f,0.98771f},{0.907886f,-0.262431f,0.326914f},{0.870535f,-0.188434f,0.454599f}, - {0.837955f,-0.242217f,0.489042f},{0.887701f,-0.324213f,0.326914f},{0.764842f,-0.555108f,0.326914f}, - {0.724627f,-0.606665f,0.326914f},{0.681215f,-0.655037f,0.326914f},{0.639091f,-0.70448f,0.308658f}, - {0.79069f,-0.171151f,0.587806f},{0.819325f,-0.29924f,0.489042f},{0.59887f,-0.660144f,0.453393f}, - {0.314057f,-0.0907801f,0.945054f},{0.44313f,-0.0959191f,0.891311f},{0.722395f,-0.263838f,0.639168f}, - {0.517285f,-0.375435f,0.769067f},{0.55436f,-0.533057f,0.639168f},{0.54356f,-0.599175f,0.58782f}, - {0.583779f,-0.260264f,0.769067f},{0.600378f,-0.219275f,0.769067f},{0.56431f,-0.300149f,0.769067f}, - {0.542092f,-0.338632f,0.769067f},{0.475103f,-0.523714f,0.707107f},{0.459363f,-0.167772f,0.87226f}, - {0.414767f,-0.259095f,0.87226f},{0.395786f,-0.287254f,0.87226f},{0.394946f,-0.435355f,0.809002f}, - {0.301672f,-0.0652993f,0.951173f},{0.288626f,-0.153517f,0.945054f},{0.277263f,-0.1732f,0.945054f}, - {0.264575f,-0.192023f,0.945054f},{0.123721f,-0.103581f,0.986896f},{0.250663f,-0.209858f,0.945054f}, - {0.147374f,-0.0657031f,0.986896f},{0.142459f,-0.075772f,0.986896f},{0.13685f,-0.085487f,0.986896f}, - {0.130587f,-0.0947778f,0.986896f},{8.87339e-016f,-1.30421e-016f,1.0f},{2.79757e-015f,-1.76166e-015f,1.0f}, - {3.59024e-015f,-1.95786e-015f,1.0f},{7.32027e-016f,-1.12982e-015f,1.0f},{6.46328e-008f,-5.41113e-008f,1.0f}, - {0.0328513f,-0.944483f,0.326914f},{0.0907435f,-0.867527f,0.489042f},{0.0303209f,-0.871733f,0.489042f}, - {0.170294f,-0.972093f,0.161356f},{0.102669f,-0.981541f,0.161356f},{0.103293f,-0.994651f,6.83652e-010f}, - {0.080008f,-0.764894f,0.639168f},{0.0344869f,-0.999405f,-3.61854e-015f},{0.226672f,-0.917468f,0.326914f}, - {0.236707f,-0.958089f,0.161356f},{0.290467f,-0.905442f,0.309522f},{0.239133f,-0.970987f,1.70293e-010f}, - {0.301719f,-0.940516f,0.156188f},{0.0387014f,-0.156646f,0.986896f},{0.0278429f,-0.158936f,0.986896f}, - {0.0564107f,-0.32201f,0.945054f},{0.305468f,-0.952202f,1.00419e-015f},{0.171605f,-0.985166f,1.49536e-016f}, - {0.215998f,-0.673309f,0.707107f},{0.153305f,-0.62051f,0.769067f},{0.184461f,-0.746618f,0.639168f}, - {0.0508762f,-0.486388f,0.87226f},{0.0340097f,-0.32514f,0.945054f},{0.0169997f,-0.488746f,0.87226f}, - {0.117297f,-0.474766f,0.87226f},{0.17956f,-0.559723f,0.808992f},{0.0343058f,-0.9863f,0.161356f}, - {0.0983164f,-0.939926f,0.326914f},{-1.84702e-016f,-8.4923e-016f,1.0f},{-5.3061e-016f,-3.14148e-015f,1.0f}, - {-0.132707f,-0.757531f,0.639168f},{-0.209212f,-0.846799f,0.489042f},{-0.150513f,-0.859176f,0.489042f}, - {0.0477436f,-0.148826f,0.98771f},{-1.3262e-015f,8.93678e-016f,1.0f},{-0.0267338f,-0.768603f,0.639168f}, - {-0.0907434f,-0.867527f,0.489042f},{-0.030321f,-0.871733f,0.489042f},{0.0267338f,-0.768603f,0.639168f}, - {-0.153305f,-0.62051f,0.769067f},{-0.110292f,-0.62958f,0.769067f},{-0.0843867f,-0.481706f,0.87226f}, - {-0.0784104f,-0.317371f,0.945054f},{-0.138865f,-0.432871f,0.890696f},{-0.117297f,-0.474767f,0.87226f}, - {-0.080008f,-0.764894f,0.639168f},{-0.0477103f,-0.148722f,0.987727f},{-0.094549f,-0.294728f,0.950892f}, - {-0.0387014f,-0.156646f,0.986896f},{-0.0343058f,-0.9863f,0.161356f},{-0.0328514f,-0.944483f,0.326914f}, - {-2.02179e-008f,-8.18332e-008f,1.0f},{-2.5749e-008f,-8.02647e-008f,1.0f},{-0.0344801f,-0.999405f,1.75276e-009f}, - {-0.102669f,-0.981541f,0.161356f},{-0.10328f,-0.994652f,2.54736e-015f},{-0.170294f,-0.972093f,0.161356f}, - {-0.171593f,-0.985168f,5.72641e-011f},{-0.239168f,-0.970978f,-9.94311e-016f},{-0.236707f,-0.958089f,0.161356f}, - {-0.305468f,-0.952202f,1.57973e-015f},{0.272079f,-0.848123f,0.454599f},{0.209212f,-0.846799f,0.489042f}, - {0.163074f,-0.930878f,0.326914f},{-0.0983163f,-0.939926f,0.326914f},{-0.226672f,-0.917468f,0.326914f}, - {-0.163074f,-0.930878f,0.326914f},{-0.301713f,-0.9405f,0.156297f},{-0.290552f,-0.905709f,0.308658f}, - {0.247124f,-0.770333f,0.587806f},{0.150513f,-0.859176f,0.489042f},{-0.272267f,-0.848708f,0.453393f}, - {0.0784104f,-0.317371f,0.945054f},{0.138497f,-0.431722f,0.891311f},{0.132707f,-0.757531f,0.639168f}, - {-0.0664942f,-0.6357f,0.769067f},{-0.184461f,-0.746618f,0.639168f},{-0.247121f,-0.770324f,0.58782f}, - {0.0664942f,-0.6357f,0.769067f},{0.110292f,-0.62958f,0.769067f},{0.0222183f,-0.638781f,0.769067f}, - {-0.0222183f,-0.638781f,0.769067f},{-0.215998f,-0.673309f,0.707107f},{0.0843867f,-0.481706f,0.87226f}, - {-0.0169997f,-0.488746f,0.87226f},{-0.0508762f,-0.486388f,0.87226f},{-0.179556f,-0.559711f,0.809002f}, - {0.0942851f,-0.293905f,0.951173f},{0.011364f,-0.326716f,0.945054f},{-0.011364f,-0.326716f,0.945054f}, - {-0.0340097f,-0.32514f,0.945054f},{-0.0278429f,-0.158936f,0.986896f},{-0.0564107f,-0.32201f,0.945054f}, - {0.0167863f,-0.160481f,0.986896f},{0.00560897f,-0.161259f,0.986896f},{-0.00560897f,-0.161259f,0.986896f}, - {-0.0167863f,-0.160481f,0.986896f},{5.91466e-017f,2.9267e-015f,1.0f},{9.34451e-017f,7.88771e-016f,1.0f}, - {-2.08722e-016f,9.49885e-016f,1.0f},{-3.51097e-016f,1.29965e-015f,1.0f},{-1.45453e-008f,-8.30293e-008f,1.0f}, - {-0.837008f,-0.52286f,0.161356f},{-0.764842f,-0.555108f,0.326914f},{-0.801521f,-0.500692f,0.326914f}, - {-0.798705f,-0.579685f,0.161356f},{-0.833333f,-0.552772f,8.1345e-010f},{-0.797431f,-0.60341f,7.34316e-016f}, - {-0.705929f,-0.51235f,0.489042f},{-0.739783f,-0.462125f,0.489042f},{-0.622414f,-0.451736f,0.639168f}, - {-0.681215f,-0.655037f,0.326914f},{-0.711375f,-0.684039f,0.161356f},{-0.638902f,-0.704273f,0.309522f}, - {-0.598457f,-0.659689f,0.454599f},{-0.123721f,-0.103581f,0.986896f},{-0.250664f,-0.209858f,0.945054f}, - {-0.116309f,-0.11184f,0.986896f},{-0.663652f,-0.731554f,0.156188f},{-0.716527f,-0.69756f,1.21528e-015f}, - {-0.671898f,-0.740644f,0.0f},{-0.75671f,-0.633525f,0.161356f},{-0.758457f,-0.651723f,3.15624e-010f}, - {-0.352511f,-0.338965f,0.87226f},{-0.460725f,-0.443021f,0.769067f},{-0.394955f,-0.435365f,0.808992f}, - {-8.27806e-016f,-2.64658e-016f,1.0f},{-2.98591e-015f,-1.11122e-015f,1.0f},{-0.414767f,-0.259095f,0.87226f}, - {-0.395786f,-0.287254f,0.87226f},{-0.264575f,-0.192023f,0.945054f},{-0.105015f,-0.11576f,0.98771f}, - {-7.33106e-016f,6.65059e-016f,1.0f},{-0.55436f,-0.533057f,0.639168f},{-0.475103f,-0.523714f,0.707107f}, - {-0.722395f,-0.263838f,0.639168f},{-0.837955f,-0.242217f,0.489042f},{-0.819325f,-0.29924f,0.489042f}, - {-0.652262f,-0.407453f,0.639168f},{-0.314057f,-0.0907802f,0.945054f},{-0.44431f,-0.0961744f,0.890696f}, - {-0.469808f,-0.135801f,0.87226f},{-0.834372f,-0.443791f,0.326914f},{-0.871314f,-0.46344f,0.161356f}, - {-0.61403f,-0.177489f,0.769067f},{-0.600378f,-0.219275f,0.769067f},{-0.459363f,-0.167772f,0.87226f}, - {-0.796673f,-0.355178f,0.489042f},{-0.702422f,-0.313158f,0.639168f},{-0.678996f,-0.361149f,0.639168f}, - {-0.770104f,-0.409608f,0.489042f},{-0.152652f,-0.0330429f,0.987727f},{-0.302516f,-0.0654821f,0.950892f}, - {-0.15501f,-0.0448068f,0.986896f},{-0.866025f,-0.5f,2.38332e-016f},{-8.09785e-008f,-2.34074e-008f,1.0f}, - {-8.23857e-008f,-1.78331e-008f,1.0f},{-0.901374f,-0.401856f,0.161356f},{-0.895376f,-0.445311f,1.22111e-009f}, - {-0.927004f,-0.338567f,0.161356f},{-0.921279f,-0.388901f,-6.39659e-016f},{-0.943633f,-0.330994f,-1.23724e-015f}, - {-0.948083f,-0.27405f,0.161356f},{-0.962377f,-0.271719f,3.07701e-011f},{-0.977365f,-0.211559f,2.38885e-015f}, - {-0.965354f,-0.208959f,0.156297f},{-0.628743f,-0.604582f,0.489042f},{-0.724627f,-0.606665f,0.326914f}, - {-0.863158f,-0.384819f,0.326914f},{-0.887701f,-0.324213f,0.326914f},{-0.907886f,-0.262431f,0.326914f}, - {-0.929644f,-0.201229f,0.308658f},{-0.543566f,-0.599182f,0.587806f},{-0.668812f,-0.559936f,0.489042f}, - {-0.871136f,-0.188564f,0.453393f},{-0.235646f,-0.226591f,0.945054f},{-0.304634f,-0.335803f,0.891311f}, - {-0.589688f,-0.493693f,0.639168f},{-0.583779f,-0.260264f,0.769067f},{-0.738821f,-0.213561f,0.639168f}, - {-0.790681f,-0.171149f,0.58782f},{-0.517285f,-0.375435f,0.769067f},{-0.490087f,-0.410306f,0.769067f}, - {-0.542092f,-0.338632f,0.769067f},{-0.56431f,-0.300149f,0.769067f},{-0.691102f,-0.149594f,0.707107f}, - {-0.374976f,-0.313934f,0.87226f},{-0.431766f,-0.229651f,0.87226f},{-0.446663f,-0.199134f,0.87226f}, - {-0.574502f,-0.124355f,0.809002f},{-0.207387f,-0.228606f,0.951173f},{-0.277263f,-0.1732f,0.945054f}, - {-0.288626f,-0.153517f,0.945054f},{-0.298584f,-0.133117f,0.945054f},{-0.151564f,-0.0553554f,0.986896f}, - {-0.307074f,-0.112152f,0.945054f},{-0.130587f,-0.0947778f,0.986896f},{-0.13685f,-0.085487f,0.986896f}, - {-0.142459f,-0.075772f,0.986896f},{-0.147374f,-0.0657031f,0.986896f},{4.59728e-015f,2.88772e-015f,1.0f}, - {1.79512e-015f,9.7893e-016f,1.0f},{4.41022e-016f,5.0824e-016f,1.0f},{9.49983e-016f,9.53884e-016f,1.0f}, - {-7.91781e-008f,-2.8918e-008f,1.0f},{-0.871314f,0.46344f,0.161356f},{-0.863158f,0.384819f,0.326914f}, - {-0.834372f,0.443791f,0.326914f},{-0.901374f,0.401856f,0.161356f},{-0.895381f,0.445302f,8.13446e-010f}, - {-0.921284f,0.38889f,9.4659e-016f},{-0.796673f,0.355178f,0.489042f},{-0.770104f,0.409608f,0.489042f}, - {-0.702422f,0.313158f,0.639168f},{-0.907886f,0.262431f,0.326914f},{-0.948083f,0.27405f,0.161356f}, - {-0.929369f,0.201169f,0.309522f},{-0.870535f,0.188434f,0.454599f},{-0.151564f,0.0553554f,0.986896f}, - {-0.307074f,0.112152f,0.945054f},{-0.15501f,0.0448068f,0.986896f},{-0.965371f,0.208962f,0.156188f}, - {-0.962368f,0.27175f,-1.62219e-016f},{-0.977365f,0.211559f,-2.45529e-015f},{-0.927004f,0.338567f,0.161356f}, - {-0.943637f,0.330981f,3.15622e-010f},{-0.469808f,0.135801f,0.87226f},{-0.61403f,0.177489f,0.769067f}, - {-0.574515f,0.124358f,0.808992f},{-6.43103e-016f,5.84572e-016f,1.0f},{-2.4553e-015f,2.03026e-015f,1.0f}, - {-0.431766f,0.229651f,0.87226f},{-0.446663f,0.199134f,0.87226f},{-0.298584f,0.133117f,0.945054f}, - {-0.152759f,0.0330659f,0.98771f},{1.43705e-015f,7.01685e-016f,1.0f},{-0.738821f,0.213561f,0.639168f}, - {-0.691102f,0.149594f,0.707107f},{-0.589688f,0.493693f,0.639168f},{-0.628743f,0.604582f,0.489042f}, - {-0.668812f,0.559936f,0.489042f},{-0.678996f,0.361149f,0.639168f},{-0.235646f,0.226591f,0.945054f}, - {-0.305444f,0.336696f,0.890696f},{-0.352511f,0.338965f,0.87226f},{-0.801521f,0.500692f,0.326914f}, - {-0.837008f,0.52286f,0.161356f},{-0.460725f,0.443021f,0.769067f},{-0.490087f,0.410306f,0.769067f}, - {-0.374976f,0.313934f,0.87226f},{-0.705929f,0.51235f,0.489042f},{-0.622414f,0.451736f,0.639168f}, - {-0.652262f,0.407453f,0.639168f},{-0.739783f,0.462125f,0.489042f},{-0.104942f,0.115679f,0.987727f}, - {-0.207967f,0.229246f,0.950892f},{-0.116309f,0.11184f,0.986896f},{-0.866025f,0.5f,1.57009e-016f}, - {-6.07606e-008f,5.84258e-008f,1.0f},{-5.66367e-008f,6.24316e-008f,1.0f},{-0.798705f,0.579685f,0.161356f}, - {-0.833339f,0.552763f,1.22111e-009f},{-0.75671f,0.633525f,0.161356f},{-0.797438f,0.603401f,8.79779e-016f}, - {-0.758466f,0.651713f,-6.70447e-017f},{-0.711375f,0.684039f,0.161356f},{-0.716504f,0.697583f,3.07702e-011f}, - {-0.66364f,0.731542f,0.156297f},{-0.837955f,0.242217f,0.489042f},{-0.887701f,0.324213f,0.326914f}, - {-0.764842f,0.555108f,0.326914f},{-0.724627f,0.606665f,0.326914f},{-0.681215f,0.655037f,0.326914f}, - {-0.639091f,0.70448f,0.308658f},{-0.79069f,0.171151f,0.587806f},{-0.819325f,0.29924f,0.489042f}, - {-0.59887f,0.660144f,0.453393f},{-0.314057f,0.0907801f,0.945054f},{-0.44313f,0.0959191f,0.891311f}, - {-0.722395f,0.263838f,0.639168f},{-0.517285f,0.375435f,0.769067f},{-0.55436f,0.533057f,0.639168f}, - {-0.54356f,0.599175f,0.58782f},{-0.583779f,0.260264f,0.769067f},{-0.600378f,0.219275f,0.769067f}, - {-0.56431f,0.300149f,0.769067f},{-0.542092f,0.338632f,0.769067f},{-0.475103f,0.523714f,0.707107f}, - {-0.459363f,0.167772f,0.87226f},{-0.414767f,0.259095f,0.87226f},{-0.395786f,0.287254f,0.87226f}, - {-0.394946f,0.435355f,0.809002f},{-0.301672f,0.0652993f,0.951173f},{-0.288626f,0.153517f,0.945054f}, - {-0.277263f,0.1732f,0.945054f},{-0.264575f,0.192023f,0.945054f},{-0.123721f,0.103581f,0.986896f}, - {-0.250663f,0.209858f,0.945054f},{-0.147374f,0.0657031f,0.986896f},{-0.142459f,0.075772f,0.986896f}, - {-0.13685f,0.085487f,0.986896f},{-0.130587f,0.0947778f,0.986896f},{2.50503e-015f,-1.51457e-015f,1.0f}, - {6.36373e-016f,-4.75311e-016f,1.0f},{9.26985e-016f,-2.94184e-016f,1.0f},{1.30108e-015f,-3.45767e-016f,1.0f}, - {-6.46328e-008f,5.41113e-008f,1.0f},{-0.0328513f,0.944483f,0.326914f},{-0.0907435f,0.867527f,0.489042f}, - {-0.0303209f,0.871733f,0.489042f},{-0.170294f,0.972093f,0.161356f},{-0.102669f,0.981541f,0.161356f}, - {-0.103293f,0.994651f,6.83653e-010f},{-0.080008f,0.764894f,0.639168f},{-0.0344869f,0.999405f,-4.77516e-016f}, - {-0.226672f,0.917468f,0.326914f},{-0.236707f,0.958089f,0.161356f},{-0.290467f,0.905442f,0.309522f}, - {-0.239133f,0.970987f,1.70296e-010f},{-0.301719f,0.940516f,0.156188f},{-0.0387014f,0.156646f,0.986896f}, - {-0.0278429f,0.158936f,0.986896f},{-0.0564107f,0.32201f,0.945054f},{-0.305468f,0.952202f,1.19604e-015f}, - {-0.171605f,0.985166f,5.25413e-016f},{-0.215998f,0.673309f,0.707107f},{-0.153305f,0.62051f,0.769067f}, - {-0.184461f,0.746618f,0.639168f},{-0.0508762f,0.486388f,0.87226f},{-0.0340097f,0.32514f,0.945054f}, - {-0.0169997f,0.488746f,0.87226f},{-0.117297f,0.474766f,0.87226f},{-0.17956f,0.559723f,0.808992f}, - {-0.0343058f,0.9863f,0.161356f},{-0.0983164f,0.939926f,0.326914f},{1.84702e-016f,8.4923e-016f,1.0f}, - {5.3061e-016f,3.14148e-015f,1.0f},{0.132707f,0.757531f,0.639168f},{0.209212f,0.846799f,0.489042f}, - {0.150513f,0.859176f,0.489042f},{-0.0477436f,0.148826f,0.98771f},{1.3262e-015f,-8.93678e-016f,1.0f}, - {0.0267338f,0.768603f,0.639168f},{0.0907434f,0.867527f,0.489042f},{0.030321f,0.871733f,0.489042f}, - {-0.0267338f,0.768603f,0.639168f},{0.153305f,0.62051f,0.769067f},{0.110292f,0.62958f,0.769067f}, - {0.0843867f,0.481706f,0.87226f},{0.0784104f,0.317371f,0.945054f},{0.138865f,0.432871f,0.890696f}, - {0.117297f,0.474767f,0.87226f},{0.080008f,0.764894f,0.639168f},{0.0477103f,0.148722f,0.987727f}, - {0.094549f,0.294728f,0.950892f},{0.0387014f,0.156646f,0.986896f},{0.0343058f,0.9863f,0.161356f}, - {0.0328514f,0.944483f,0.326914f},{2.02179e-008f,8.18332e-008f,1.0f},{2.5749e-008f,8.02647e-008f,1.0f}, - {0.0344801f,0.999405f,1.75276e-009f},{0.102669f,0.981541f,0.161356f},{0.10328f,0.994652f,1.28179e-015f}, - {0.170294f,0.972093f,0.161356f},{0.171593f,0.985168f,5.7267e-011f},{0.239168f,0.970978f,-1.14452e-015f}, - {0.236707f,0.958089f,0.161356f},{0.305468f,0.952202f,1.19604e-015f},{-0.272079f,0.848123f,0.454599f}, - {-0.209212f,0.846799f,0.489042f},{-0.163074f,0.930878f,0.326914f},{0.0983163f,0.939926f,0.326914f}, - {0.226672f,0.917468f,0.326914f},{0.163074f,0.930878f,0.326914f},{0.301713f,0.9405f,0.156297f}, - {0.290552f,0.905709f,0.308658f},{-0.247124f,0.770333f,0.587806f},{-0.150513f,0.859176f,0.489042f}, - {0.272267f,0.848708f,0.453393f},{-0.0784104f,0.317371f,0.945054f},{-0.138497f,0.431722f,0.891311f}, - {-0.132707f,0.757531f,0.639168f},{0.0664942f,0.6357f,0.769067f},{0.184461f,0.746618f,0.639168f}, - {0.247121f,0.770324f,0.58782f},{-0.0664942f,0.6357f,0.769067f},{-0.110292f,0.62958f,0.769067f}, - {-0.0222183f,0.638781f,0.769067f},{0.0222183f,0.638781f,0.769067f},{0.215998f,0.673309f,0.707107f}, - {-0.0843867f,0.481706f,0.87226f},{0.0169997f,0.488746f,0.87226f},{0.0508762f,0.486388f,0.87226f}, - {0.179556f,0.559711f,0.809002f},{-0.0942851f,0.293905f,0.951173f},{-0.011364f,0.326716f,0.945054f}, - {0.011364f,0.326716f,0.945054f},{0.0340097f,0.32514f,0.945054f},{0.0278429f,0.158936f,0.986896f}, - {0.0564107f,0.32201f,0.945054f},{-0.0167863f,0.160481f,0.986896f},{-0.00560897f,0.161259f,0.986896f}, - {0.00560897f,0.161259f,0.986896f},{0.0167863f,0.160481f,0.986896f},{-5.91466e-017f,-2.9267e-015f,1.0f}, - {-9.34451e-017f,-7.88771e-016f,1.0f},{2.08722e-016f,-9.49885e-016f,1.0f},{3.51097e-016f,-1.29965e-015f,1.0f}, - {1.45453e-008f,8.30293e-008f,1.0f},{0.837008f,0.52286f,0.161356f},{0.764842f,0.555108f,0.326914f}, - {0.801521f,0.500692f,0.326914f},{0.798705f,0.579685f,0.161356f},{0.833333f,0.552772f,8.13449e-010f}, - {0.797431f,0.60341f,4.1114e-016f},{0.705929f,0.51235f,0.489042f},{0.739783f,0.462125f,0.489042f}, - {0.622414f,0.451736f,0.639168f},{0.681215f,0.655037f,0.326914f},{0.711375f,0.684039f,0.161356f}, - {0.638902f,0.704273f,0.309522f},{0.598457f,0.659689f,0.454599f},{0.123721f,0.103581f,0.986896f}, - {0.250664f,0.209858f,0.945054f},{0.116309f,0.11184f,0.986896f},{0.663652f,0.731554f,0.156188f}, - {0.716527f,0.69756f,2.35065e-015f},{0.75671f,0.633525f,0.161356f},{0.758457f,0.651723f,3.1562e-010f}, - {0.352511f,0.338965f,0.87226f},{0.460725f,0.443021f,0.769067f},{0.394955f,0.435365f,0.808992f}, - {8.27806e-016f,2.64658e-016f,1.0f},{2.98591e-015f,1.11122e-015f,1.0f},{0.414767f,0.259095f,0.87226f}, - {0.395786f,0.287254f,0.87226f},{0.264575f,0.192023f,0.945054f},{0.105015f,0.11576f,0.98771f}, - {7.33106e-016f,-6.65059e-016f,1.0f},{0.55436f,0.533057f,0.639168f},{0.475103f,0.523714f,0.707107f}, - {0.722395f,0.263838f,0.639168f},{0.837955f,0.242217f,0.489042f},{0.819325f,0.29924f,0.489042f}, - {0.652262f,0.407453f,0.639168f},{0.314057f,0.0907802f,0.945054f},{0.44431f,0.0961744f,0.890696f}, - {0.469808f,0.135801f,0.87226f},{0.834372f,0.443791f,0.326914f},{0.871314f,0.46344f,0.161356f}, - {0.61403f,0.177489f,0.769067f},{0.600378f,0.219275f,0.769067f},{0.459363f,0.167772f,0.87226f}, - {0.796673f,0.355178f,0.489042f},{0.702422f,0.313158f,0.639168f},{0.678996f,0.361149f,0.639168f}, - {0.770104f,0.409608f,0.489042f},{0.152652f,0.0330429f,0.987727f},{0.302516f,0.0654821f,0.950892f}, - {0.15501f,0.0448068f,0.986896f},{0.866025f,0.5f,1.11024e-015f},{8.09785e-008f,2.34074e-008f,1.0f}, - {8.23857e-008f,1.78331e-008f,1.0f},{0.901374f,0.401856f,0.161356f},{0.895376f,0.445311f,1.22111e-009f}, - {0.927004f,0.338567f,0.161356f},{0.921279f,0.388901f,-2.25333e-015f},{0.943633f,0.330994f,-1.1333e-015f}, - {0.948083f,0.27405f,0.161356f},{0.962377f,0.271719f,3.07706e-011f},{0.977365f,0.211559f,-6.64333e-017f}, - {0.965354f,0.208959f,0.156297f},{0.628743f,0.604582f,0.489042f},{0.724627f,0.606665f,0.326914f}, - {0.863158f,0.384819f,0.326914f},{0.887701f,0.324213f,0.326914f},{0.907886f,0.262431f,0.326914f}, - {0.929644f,0.201229f,0.308658f},{0.543566f,0.599182f,0.587806f},{0.668812f,0.559936f,0.489042f}, - {0.871136f,0.188564f,0.453393f},{0.235646f,0.226591f,0.945054f},{0.304634f,0.335803f,0.891311f}, - {0.589688f,0.493693f,0.639168f},{0.583779f,0.260264f,0.769067f},{0.738821f,0.213561f,0.639168f}, - {0.790681f,0.171149f,0.58782f},{0.517285f,0.375435f,0.769067f},{0.490087f,0.410306f,0.769067f}, - {0.542092f,0.338632f,0.769067f},{0.56431f,0.300149f,0.769067f},{0.691102f,0.149594f,0.707107f}, - {0.374976f,0.313934f,0.87226f},{0.431766f,0.229651f,0.87226f},{0.446663f,0.199134f,0.87226f}, - {0.574502f,0.124355f,0.809002f},{0.207387f,0.228606f,0.951173f},{0.277263f,0.1732f,0.945054f}, - {0.288626f,0.153517f,0.945054f},{0.298584f,0.133117f,0.945054f},{0.151564f,0.0553554f,0.986896f}, - {0.307074f,0.112152f,0.945054f},{0.130587f,0.0947778f,0.986896f},{0.13685f,0.085487f,0.986896f}, - {0.142459f,0.075772f,0.986896f},{0.147374f,0.0657031f,0.986896f},{-4.59728e-015f,-2.88772e-015f,1.0f}, - {-1.79512e-015f,-9.7893e-016f,1.0f},{-4.41022e-016f,-5.0824e-016f,1.0f},{-9.49983e-016f,-9.53884e-016f,1.0f}, - {7.91781e-008f,2.8918e-008f,1.0f},{3.46945e-018f,0.0f,-1.0f},{2.38524e-018f,0.0f,-1.0f}, - {1.95156e-018f,0.0f,-1.0f},{-5.42101e-019f,0.0f,-1.0f},{-4.33681e-019f,0.0f,-1.0f}, - {2.60209e-018f,0.0f,-1.0f},{-2.98156e-018f,0.0f,-1.0f},{-1.73472e-018f,0.0f,-1.0f}, - {1.73472e-018f,0.0f,-1.0f},{-1.6263e-019f,0.0f,-1.0f},{-7.70988e-019f,0.0f,-1.0f}, - {-3.46945e-018f,0.0f,-1.0f},{-2.60209e-018f,0.0f,-1.0f},{-2.20326e-031f,-1.17145e-015f,-1.0f}, - {-2.03378e-031f,-1.17145e-015f,-1.0f},{-1.95674e-031f,-1.17145e-015f,-1.0f},{-2.00297e-031f,-1.17145e-015f,-1.0f}, - {-1.57156e-031f,-1.17145e-015f,-1.0f},{-1.77186e-031f,-1.17145e-015f,-1.0f},{-1.89512e-031f,-1.17145e-015f,-1.0f}, - {-2.80415e-031f,-1.17145e-015f,-1.0f},{-2.39586e-031f,-1.17145e-015f,-1.0f},{-2.31112e-031f,-1.17145e-015f,-1.0f}, - {-1.91052e-031f,-1.17145e-015f,-1.0f},{-1.52534e-031f,-1.17145e-015f,-1.0f},{-2.77255e-031f,-1.17145e-015f,-1.0f}, - {-1.92514e-031f,-1.17145e-015f,-1.0f},{-2.11003e-031f,-1.17145e-015f,-1.0f},{-1.83349e-031f,-1.17145e-015f,-1.0f}, - {-2.09541e-031f,-1.17145e-015f,-1.0f},{-1.81808e-031f,-1.17145e-015f,-1.0f},{-2.0646e-031f,-1.17145e-015f,-1.0f}, - {-1.78726e-031f,-1.17145e-015f,-1.0f},{-2.51141e-031f,-1.17145e-015f,-1.0f},{-2.41897e-031f,-1.17145e-015f,-1.0f}, - {-2.65008e-031f,-1.17145e-015f,-1.0f},{-1.67941e-031f,-1.17145e-015f,-1.0f},{-2.18786e-031f,-1.17145e-015f,-1.0f}, - {-2.25719e-031f,-1.17145e-015f,-1.0f},{-1.75645e-031f,-1.17145e-015f,-1.0f},{-1.74104e-031f,-1.17145e-015f,-1.0f}, - {-1.38667e-031f,-1.17145e-015f,-1.0f},{-1.43289e-031f,-1.17145e-015f,-1.0f},{-1.41748e-031f,-1.17145e-015f,-1.0f}, - {-2.94282e-031f,-1.17145e-015f,-1.0f},{-2.32652e-031f,-1.17145e-015f,-1.0f},{-2.60386e-031f,-1.17145e-015f,-1.0f}, - {-1.37126e-031f,-1.17145e-015f,-1.0f},{-2.26489e-031f,-1.17145e-015f,-1.0f},{-2.24949e-031f,-1.17145e-015f,-1.0f}, - {-1.50993e-031f,-1.17145e-015f,-1.0f},{-1.47911e-031f,-1.17145e-015f,-1.0f},{-2.38815e-031f,-1.17145e-015f,-1.0f}, - {-2.15704e-031f,-1.17145e-015f,-1.0f},{-2.11082e-031f,-1.17145e-015f,-1.0f},{-2.12623e-031f,-1.17145e-015f,-1.0f}, - {-3.23556e-031f,-1.17145e-015f,-1.0f},{-2.36504e-031f,-1.17145e-015f,-1.0f},{-2.4883e-031f,-1.17145e-015f,-1.0f}, - {-2.14934e-031f,-1.17145e-015f,-1.0f},{-2.37275e-031f,-1.17145e-015f,-1.0f},{-2.71171e-031f,-1.17145e-015f,-1.0f}, - {-1.72563e-031f,-1.17145e-015f,-1.0f},{-1.87971e-031f,-1.17145e-015f,-1.0f},{-2.66549e-031f,-1.17145e-015f,-1.0f}, - {-2.51912e-031f,-1.17145e-015f,-1.0f},{-3.0969e-031f,-1.17145e-015f,-1.0f},{-2.76564e-031f,-1.17145e-015f,-1.0f}, - {-2.21867e-031f,-1.17145e-015f,-1.0f},{-1.55615e-031f,-1.17145e-015f,-1.0f},{-3.26638e-031f,-1.17145e-015f,-1.0f}, - {-2.98904e-031f,-1.17145e-015f,-1.0f},{-2.74252e-031f,-1.17145e-015f,-1.0f},{-1.46371e-031f,-1.17145e-015f,-1.0f}, - {-3.03527e-031f,-1.17145e-015f,-1.0f},{-2.96593e-031f,-1.17145e-015f,-1.0f},{-1.60237e-031f,-1.17145e-015f,-1.0f}, - {-2.68089e-031f,-1.17145e-015f,-1.0f},{-3.18934e-031f,-1.17145e-015f,-1.0f},{-2.81956e-031f,-1.17145e-015f,-1.0f}, - {-3.20475e-031f,-1.17145e-015f,-1.0f},{-2.41126e-031f,-1.17145e-015f,-1.0f},{-2.55763e-031f,-1.17145e-015f,-1.0f}, - {-1.54074e-031f,-1.17145e-015f,-1.0f},{-1.4483e-031f,-1.17145e-015f,-1.0f},{-1.35585e-031f,-1.17145e-015f,-1.0f}, - {-3.05838e-031f,-1.17145e-015f,-1.0f},{-2.58845e-031f,-1.17145e-015f,-1.0f},{-1.69482e-031f,-1.17145e-015f,-1.0f}, - {-1.49452e-031f,-1.17145e-015f,-1.0f},{-2.69551e-031f,-1.17145e-015f,-1.0f},{-3.92278e-031f,-1.17145e-015f,-1.0f}, - {-3.2802e-031f,-1.17145e-015f,-1.0f},{-1.71023e-031f,-1.17145e-015f,-1.0f},{-1.58697e-031f,-1.17145e-015f,-1.0f}, - {-2.64238e-031f,-1.17145e-015f,-1.0f},{-2.45749e-031f,-1.17145e-015f,-1.0f},{-2.54223e-031f,-1.17145e-015f,-1.0f}, - {-1.80267e-031f,-1.17145e-015f,-1.0f},{-1.63319e-031f,-1.17145e-015f,-1.0f},{-2.01837e-031f,-1.17145e-015f,-1.0f}, - {-2.17245e-031f,-1.17145e-015f,-1.0f},{-2.04919e-031f,-1.17145e-015f,-1.0f},{-2.2803e-031f,-1.17145e-015f,-1.0f}, - {-1.94134e-031f,-1.17145e-015f,-1.0f},{-2.14163e-031f,-1.17145e-015f,-1.0f},{-1.98756e-031f,-1.17145e-015f,-1.0f}, - {-2.23408e-031f,-1.17145e-015f,-1.0f},{-2.50371e-031f,-1.17145e-015f,-1.0f},{-2.44208e-031f,-1.17145e-015f,-1.0f}, - {-1.8643e-031f,-1.17145e-015f,-1.0f},{-1.97215e-031f,-1.17145e-015f,-1.0f},{-3.12001e-031f,-1.17145e-015f,-1.0f}, - {-2.99833e-031f,-1.17145e-015f,-1.0f},{-2.57304e-031f,-1.17145e-015f,-1.0f},{-2.6963e-031f,-1.17145e-015f,-1.0f}, - {-2.47289e-031f,-1.17145e-015f,-1.0f},{-2.47369e-031f,-1.17145e-015f,-1.0f},{-3.32959e-031f,-1.17145e-015f,-1.0f}, - {-2.01679e-031f,-1.17145e-015f,-1.0f},{-3.32721e-031f,-1.17145e-015f,-1.0f},{-2.62697e-031f,-1.17145e-015f,-1.0f}, - {-4.06836e-031f,-1.17145e-015f,-1.0f},{-2.87428e-031f,-1.17145e-015f,-1.0f},{-2.64929e-031f,-1.17145e-015f,-1.0f}, - {-1.664e-031f,-1.17145e-015f,-1.0f},{-3.01215e-031f,-1.17145e-015f,-1.0f},{-2.10232e-031f,-1.17145e-015f,-1.0f}, - {-2.94973e-031f,-1.17145e-015f,-1.0f},{-3.87656e-031f,-1.17145e-015f,-1.0f},{-3.62686e-031f,-1.17145e-015f,-1.0f}, - {-2.21097e-031f,-1.17145e-015f,-1.0f},{-2.61156e-031f,-1.17145e-015f,-1.0f},{-3.06608e-031f,-1.17145e-015f,-1.0f}, - {-3.08149e-031f,-1.17145e-015f,-1.0f},{-3.05067e-031f,-1.17145e-015f,-1.0f},{-2.93512e-031f,-1.17145e-015f,-1.0f}, - {-1.96445e-031f,-1.17145e-015f,-1.0f},{-2.95823e-031f,-1.17145e-015f,-1.0f},{-1.61778e-031f,-1.17145e-015f,-1.0f}, - {-2.87349e-031f,-1.17145e-015f,-1.0f},{-2.79645e-031f,-1.17145e-015f,-1.0f},{-2.92741e-031f,-1.17145e-015f,-1.0f}, - {-3.5129e-031f,-1.17145e-015f,-1.0f},{-2.84267e-031f,-1.17145e-015f,-1.0f},{-2.85038e-031f,-1.17145e-015f,-1.0f}, - {-2.34963e-031f,-1.17145e-015f,-1.0f},{-2.2726e-031f,-1.17145e-015f,-1.0f},{-2.02449e-031f,-1.17145e-015f,-1.0f}, - {-2.89819e-031f,-1.17145e-015f,-1.0f},{-3.02145e-031f,-1.17145e-015f,-1.0f},{-2.6562e-031f,-1.17145e-015f,-1.0f}, - {-2.44287e-031f,-1.17145e-015f,-1.0f},{-3.66776e-031f,-1.17145e-015f,-1.0f},{-3.23715e-031f,-1.17145e-015f,-1.0f}, - {-2.31723e-031f,-1.17145e-015f,-1.0f},{-2.20938e-031f,-1.17145e-015f,-1.0f},{-3.99211e-031f,-1.17145e-015f,-1.0f}, - {-2.30262e-031f,-1.17145e-015f,-1.0f},{-2.12702e-031f,-1.17145e-015f,-1.0f},{-2.62006e-031f,-1.17145e-015f,-1.0f}, - {-1.87812e-031f,-1.17145e-015f,-1.0f},{-3.71399e-031f,-1.17145e-015f,-1.0f},{-2.52682e-031f,-1.17145e-015f,-1.0f}, - {-2.98134e-031f,-1.17145e-015f,-1.0f},{-2.77334e-031f,-1.17145e-015f,-1.0f},{-2.44978e-031f,-1.17145e-015f,-1.0f}, - {-2.30341e-031f,-1.17145e-015f,-1.0f},{-1.4406e-031f,-1.17145e-015f,-1.0f},{-2.35734e-031f,-1.17145e-015f,-1.0f}, - {-2.72712e-031f,-1.17145e-015f,-1.0f},{-2.67319e-031f,-1.17145e-015f,-1.0f},{-1.47141e-031f,-1.17145e-015f,-1.0f}, - {-1.34815e-031f,-1.17145e-015f,-1.0f},{-2.54993e-031f,-1.17145e-015f,-1.0f},{-3.28949e-031f,-1.17145e-015f,-1.0f}, - {-3.7363e-031f,-1.17145e-015f,-1.0f},{-1.73175e-031f,-1.17145e-015f,-1.0f},{-2.34034e-031f,-1.17145e-015f,-1.0f}, - {-2.33423e-031f,-1.17145e-015f,-1.0f},{-2.46519e-031f,-1.17145e-015f,-1.0f},{-1.92593e-031f,-1.17145e-015f,-1.0f}, - {-7.67197e-032f,-1.17145e-015f,-1.0f},{-1.6486e-031f,-1.17145e-015f,-1.0f},{-1.84889e-031f,-1.17145e-015f,-1.0f}, - {-7.98012e-032f,-1.17145e-015f,-1.0f},{-1.40208e-031f,-1.17145e-015f,-1.0f},{-2.16475e-031f,-1.17145e-015f,-1.0f}, - {-2.88889e-031f,-1.17145e-015f,-1.0f},{-2.43438e-031f,-1.17145e-015f,-1.0f},{-3.00445e-031f,-1.17145e-015f,-1.0f}, - {-2.38045e-031f,-1.17145e-015f,-1.0f},{-3.22786e-031f,-1.17145e-015f,-1.0f},{-2.78875e-031f,-1.17145e-015f,-1.0f}, - {-2.56534e-031f,-1.17145e-015f,-1.0f},{0.0f,1.17961e-015f,1.0f},{0.0f,1.20737e-015f,1.0f}, - {0.0f,1.19349e-015f,1.0f},{1.38778e-017f,1.19349e-015f,1.0f},{1.04083e-017f,1.19349e-015f,1.0f}, - {-1.38778e-017f,1.16573e-015f,1.0f},{-5.20417e-018f,1.19349e-015f,1.0f},{8.67362e-018f,1.19349e-015f,1.0f}, - {1.38778e-017f,1.16573e-015f,1.0f},{-2.60209e-018f,1.16573e-015f,1.0f},{1.21431e-017f,1.16573e-015f,1.0f}, - {-1.38778e-017f,1.20737e-015f,1.0f},{5.63785e-018f,1.16573e-015f,1.0f},{3.46945e-018f,1.19349e-015f,1.0f}, - {-4.33681e-018f,1.16573e-015f,1.0f},{1.12757e-017f,1.19349e-015f,1.0f},{5.20417e-018f,1.19349e-015f,1.0f}, - {-1.21431e-017f,1.19349e-015f,1.0f},{0.0f,1.16573e-015f,1.0f},{-1.30917e-017f,1.22125e-015f,1.0f}, - {-3.08998e-018f,1.16573e-015f,1.0f},{1.0842e-017f,1.16573e-015f,1.0f},{-1.73472e-018f,1.19349e-015f,1.0f}, - {-5.20417e-018f,1.16573e-015f,1.0f},{-9.21572e-019f,1.16573e-015f,1.0f},{6.93889e-018f,1.16573e-015f,1.0f}, - {6.93889e-018f,1.17961e-015f,1.0f},{6.07153e-018f,1.19349e-015f,1.0f},{-1.30104e-017f,1.16573e-015f,1.0f}, - {-2.27741e-032f,1.19349e-015f,1.0f},{-6.93889e-018f,1.16573e-015f,1.0f},{-1.73472e-018f,1.17961e-015f,1.0f}, - {8.67362e-018f,1.16573e-015f,1.0f},{-1.04083e-017f,1.17961e-015f,1.0f},{-1.38778e-017f,1.15186e-015f,1.0f}, - {-1.04083e-017f,1.16573e-015f,1.0f},{6.93889e-018f,1.20737e-015f,1.0f},{1.04083e-017f,1.17961e-015f,1.0f}, - {1.73472e-018f,1.16573e-015f,1.0f},{-1.67556e-032f,1.20737e-015f,1.0f},{1.21431e-017f,1.19349e-015f,1.0f}, - {-1.21431e-017f,1.17961e-015f,1.0f},{-1.38778e-017f,1.19349e-015f,1.0f},{-1.12757e-017f,1.16573e-015f,1.0f}, - {-3.90313e-018f,1.16573e-015f,1.0f},{-1.73472e-018f,1.16573e-015f,1.0f},{-2.60209e-018f,1.19349e-015f,1.0f}, - {1.14925e-017f,1.22125e-015f,1.0f},{-2.1684e-018f,1.19349e-015f,1.0f},{-6.93889e-018f,1.20737e-015f,1.0f}, - {-6.93889e-018f,1.17961e-015f,1.0f},{4.33681e-018f,1.16573e-015f,1.0f},{-1.17094e-017f,1.16573e-015f,1.0f}, - {-7.88757e-018f,1.16573e-015f,1.0f},{6.93889e-018f,1.19349e-015f,1.0f},{-6.93889e-018f,1.19349e-015f,1.0f}, - {-1.51788e-018f,1.19349e-015f,1.0f},{-1.38778e-017f,1.17961e-015f,1.0f},{0.0f,1.22125e-015f,1.0f}, - {1.38778e-017f,1.20737e-015f,1.0f},{9.97466e-018f,1.19349e-015f,1.0f},{4.33681e-018f,1.19349e-015f,1.0f}, - {1.38778e-017f,1.17961e-015f,1.0f},{1.04083e-017f,1.16573e-015f,1.0f},{1.69482e-032f,1.22125e-015f,1.0f}, - {3.46945e-018f,1.16573e-015f,1.0f},{-2.77556e-017f,1.19349e-015f,1.0f},{6.54816e-032f,1.17961e-015f,1.0f}, - {2.77556e-017f,1.17961e-015f,1.0f},{2.77556e-017f,1.19349e-015f,1.0f},{2.77556e-017f,1.22125e-015f,1.0f}, - {2.77556e-017f,1.16573e-015f,1.0f},{6.6252e-032f,1.19349e-015f,1.0f},{-6.6252e-032f,1.19349e-015f,1.0f}, - {6.47112e-032f,1.16573e-015f,1.0f},{-0.0519993f,-0.998647f,1.21442e-015f},{-5.52964e-012f,-1.0f,1.18424e-015f}, - {2.37905e-016f,-1.0f,1.18424e-015f},{-0.207899f,-0.97815f,1.07201e-015f},{-0.156426f,-0.98769f,1.24943e-015f}, - {-0.207911f,-0.978148f,1.26828e-015f},{-0.156436f,-0.987688f,1.05591e-015f},{-0.104524f,-0.994522f,1.24233e-015f}, - {-0.104542f,-0.99452f,1.04524e-015f},{-0.358363f,-0.933582f,1.14589e-015f},{-0.406729f,-0.913549f,9.49444e-016f}, - {-0.358347f,-0.933588f,1.09983e-015f},{-0.258815f,-0.965927f,1.09287e-015f},{-0.309013f,-0.951058f,1.10648e-015f}, - {-0.258801f,-0.965931f,1.11634e-015f},{-0.54461f,-0.838689f,1.11736e-015f},{-0.499972f,-0.866041f,9.21437e-016f}, - {-0.54463f,-0.838677f,1.11734e-015f},{-0.453965f,-0.891019f,9.34273e-016f},{-0.406714f,-0.913555f,1.12976e-015f}, - {-0.45398f,-0.891012f,1.15409e-015f},{-0.669122f,-0.743152f,7.83812e-016f},{-0.707099f,-0.707115f,8.89729e-016f}, - {-0.669102f,-0.74317f,9.12177e-016f},{-0.587776f,-0.809024f,9.38116e-016f},{-0.629312f,-0.777153f,9.10747e-016f}, - {-0.587756f,-0.809038f,9.58094e-016f},{-0.809001f,-0.587808f,6.81602e-016f},{-0.777125f,-0.629346f,7.29768e-016f}, - {-0.809009f,-0.587797f,6.52585e-016f},{-0.74312f,-0.669158f,7.51169e-016f},{-0.70708f,-0.707134f,8.89753e-016f}, - {-0.743137f,-0.66914f,7.3464e-016f},{-0.891007f,-0.453989f,5.26431e-016f},{-0.913546f,-0.406734f,4.71636e-016f}, - {-0.890991f,-0.454022f,5.04065e-016f},{-0.838665f,-0.544647f,6.44992e-016f},{-0.866024f,-0.500002f,6.16793e-016f}, - {-0.838655f,-0.544663f,6.45011e-016f},{-0.965922f,-0.258835f,3.06522e-016f},{-0.951049f,-0.30904f,3.81226e-016f}, - {-0.965925f,-0.258822f,2.93736e-016f},{-0.933568f,-0.3584f,4.42115e-016f},{-0.913531f,-0.40677f,4.51605e-016f}, - {-0.933581f,-0.358367f,4.24392e-016f},{-0.987684f,-0.156459f,1.77565e-016f},{-0.994523f,-0.104515f,1.23771e-016f}, - {-0.994519f,-0.104553f,1.18657e-016f},{-0.978149f,-0.207904f,2.3595e-016f},{-0.987691f,-0.156421f,1.85239e-016f}, - {-0.978143f,-0.207932f,2.56501e-016f},{-0.998629f,0.052353f,-6.19984e-017f},{-0.99863f,0.052328f,-6.19688e-017f}, - {-1.0f,-3.17207e-017f,3.75648e-032f},{-1.0f,-1.58603e-017f,1.87824e-032f},{-0.998629f,-0.0523531f,5.94153e-017f}, - {-0.99863f,-0.0523281f,6.19689e-017f},{-0.978149f,0.207904f,-2.46208e-016f},{-0.987691f,0.156421f,-1.85239e-016f}, - {-0.978143f,0.207932f,-2.46241e-016f},{-0.994523f,0.104515f,-1.23771e-016f},{-0.994519f,0.104553f,-1.23816e-016f}, - {-0.987684f,0.156459f,-1.85285e-016f},{-0.951055f,0.309021f,-3.65954e-016f},{-0.951049f,0.30904f,-3.96476e-016f}, - {-0.933568f,0.3584f,-4.2443e-016f},{-0.965922f,0.258835f,-3.32066e-016f},{-0.965925f,0.258822f,-3.06506e-016f}, - {-0.913546f,0.406734f,-4.8167e-016f},{-0.890991f,0.454022f,-5.3767e-016f},{-0.891007f,0.453989f,-5.37631e-016f}, - {-0.913531f,0.40677f,-4.81712e-016f},{-0.933581f,0.358367f,-4.24392e-016f},{-0.838655f,0.544663f,-6.45011e-016f}, - {-0.809001f,0.587808f,-6.38096e-016f},{-0.838665f,0.544647f,-6.44992e-016f},{-0.866009f,0.500028f,-5.92152e-016f}, - {-0.866024f,0.500002f,-6.41465e-016f},{-0.777125f,0.629346f,-7.45295e-016f},{-0.74312f,0.669158f,-7.92442e-016f}, - {-0.777137f,0.629331f,-7.45278e-016f},{-0.809009f,0.587797f,-6.96091e-016f},{-0.70708f,0.707134f,-8.37415e-016f}, - {-0.669102f,0.74317f,-8.80091e-016f},{-0.707099f,0.707115f,-9.76958e-016f},{-0.743137f,0.66914f,-9.24491e-016f}, - {-0.669122f,0.743152f,-8.80069e-016f},{-0.629291f,0.777169f,-9.20353e-016f},{-0.587756f,0.809038f,-9.58094e-016f}, - {-0.629312f,0.777153f,-7.66945e-016f},{-0.54461f,0.838689f,-1.15874e-015f},{-0.587776f,0.809023f,-9.58076e-016f}, - {-0.54463f,0.838677f,-9.93193e-016f},{-0.499972f,0.866041f,-8.54666e-016f},{-0.453965f,0.891019f,-1.05518e-015f}, - {-0.49999f,0.866031f,-1.02559e-015f},{-0.406714f,0.913555f,-1.08187e-015f},{-0.45398f,0.891012f,-1.23103e-015f}, - {-0.406729f,0.913549f,-1.26217e-015f},{-0.358347f,0.933588f,-1.10559e-015f},{-0.308997f,0.951063f,-1.12628e-015f}, - {-0.358363f,0.933582f,-1.10558e-015f},{-0.258801f,0.965931f,-1.14389e-015f},{-0.309013f,0.951058f,-1.12628e-015f}, - {-0.258815f,0.965927f,-1.14389e-015f},{-0.207899f,0.97815f,-1.15836e-015f},{-0.156426f,0.98769f,-1.3646e-015f}, - {-0.207911f,0.978148f,-1.15836e-015f},{-0.104524f,0.994522f,-1.17775e-015f},{-0.156436f,0.987688f,-1.16966e-015f}, - {-0.104542f,0.99452f,-9.81457e-016f},{-0.0520121f,0.998646f,-1.18263e-015f},{8.72318e-017f,1.0f,-1.18424e-015f}, - {-0.0519994f,0.998647f,-1.18264e-015f},{-1.19209e-007f,1.0f,-1.18424e-015f},{-0.951055f,-0.309021f,3.65954e-016f}, - {-0.866009f,-0.500028f,5.92152e-016f},{-0.777137f,-0.629331f,7.76331e-016f},{-0.629291f,-0.77717f,8.91592e-016f}, - {-0.49999f,-0.866031f,9.64159e-016f},{-0.308997f,-0.951063f,1.10649e-015f},{-0.0520121f,-0.998646f,1.20806e-015f}, - {0.0f,-1.17614e-015f,-1.0f},{-3.46945e-018f,-1.17614e-015f,-1.0f},{3.46945e-018f,-1.1692e-015f,-1.0f}, - {3.46945e-018f,-1.17267e-015f,-1.0f},{-8.67362e-019f,-1.17961e-015f,-1.0f},{-1.73472e-018f,-1.17267e-015f,-1.0f}, - {3.46945e-018f,-1.17614e-015f,-1.0f},{8.67362e-019f,-1.17267e-015f,-1.0f},{2.60209e-018f,-1.17267e-015f,-1.0f}, - {0.0f,-1.17267e-015f,-1.0f},{2.38524e-018f,-1.17267e-015f,-1.0f},{-3.25261e-018f,-1.16573e-015f,-1.0f}, - {0.0f,-1.1692e-015f,-1.0f},{-3.46945e-018f,-1.17267e-015f,-1.0f},{-1.73472e-018f,-1.17614e-015f,-1.0f}, - {-3.23556e-032f,-1.16573e-015f,-1.0f},{-3.36103e-018f,-1.17267e-015f,-1.0f},{-3.41524e-018f,-1.17267e-015f,-1.0f}, - {1.76183e-018f,-1.17961e-015f,-1.0f},{-1.62741e-032f,-1.17267e-015f,-1.0f},{0.0f,-1.17961e-015f,-1.0f}, - {-3.14419e-018f,-1.17961e-015f,-1.0f},{1.04354e-018f,-1.17961e-015f,-1.0f},{-3.03577e-018f,-1.17961e-015f,-1.0f}, - {-1.73472e-018f,-1.1692e-015f,-1.0f},{1.63223e-032f,-1.17614e-015f,-1.0f},{2.60209e-018f,-1.1692e-015f,-1.0f}, - {1.73472e-018f,-1.17961e-015f,-1.0f},{3.46945e-018f,-1.16573e-015f,-1.0f},{1.40946e-018f,-1.17267e-015f,-1.0f}, - {2.60209e-018f,-1.17961e-015f,-1.0f},{-3.46945e-018f,-1.16573e-015f,-1.0f},{-2.60209e-018f,-1.17267e-015f,-1.0f}, - {1.95156e-018f,-1.17961e-015f,-1.0f},{3.03577e-018f,-1.17267e-015f,-1.0f},{1.73472e-018f,-1.17267e-015f,-1.0f}, - {1.30104e-018f,-1.17267e-015f,-1.0f},{8.67362e-019f,-1.17614e-015f,-1.0f},{-2.1684e-018f,-1.17267e-015f,-1.0f}, - {1.30104e-018f,-1.17614e-015f,-1.0f},{-1.51788e-018f,-1.17961e-015f,-1.0f},{8.67362e-019f,-1.16573e-015f,-1.0f}, - {1.95156e-018f,-1.17267e-015f,-1.0f},{2.1684e-018f,-1.17961e-015f,-1.0f},{1.58565e-018f,-1.16573e-015f,-1.0f}, - {-8.13705e-033f,-1.17267e-015f,-1.0f},{3.06626e-018f,-1.17267e-015f,-1.0f},{-3.46945e-018f,-1.1692e-015f,-1.0f}, - {1.84314e-018f,-1.17267e-015f,-1.0f},{3.46945e-018f,-1.17961e-015f,-1.0f},{0.0f,-1.16573e-015f,-1.0f}, - {6.93889e-018f,-1.17614e-015f,-1.0f},{-6.5289e-032f,-1.17614e-015f,-1.0f},{6.93889e-018f,-1.17267e-015f,-1.0f}, - {-6.93889e-018f,-1.17267e-015f,-1.0f},{6.47112e-032f,-1.16573e-015f,-1.0f},{-6.54816e-032f,-1.17961e-015f,-1.0f}, - {-6.93889e-018f,-1.17961e-015f,-1.0f},{6.93889e-018f,-1.17961e-015f,-1.0f},{-6.50964e-032f,-1.17267e-015f,-1.0f}, - {-6.93889e-018f,-1.16573e-015f,-1.0f},{8.67362e-019f,-1.17961e-015f,-1.0f},{-2.1684e-018f,-1.17961e-015f,-1.0f}, - {-8.67362e-019f,-1.17267e-015f,-1.0f},{-1.30104e-018f,-1.17267e-015f,-1.0f},{-0.0581517f,-0.998308f,0.0f}, - {-3.49231e-012f,-1.0f,5.38529e-027f},{1.49639e-016f,-1.0f,0.0f},{-0.230535f,-0.973064f,3.60106e-016f}, - {-0.230613f,-0.973045f,3.60099e-016f},{-0.173651f,-0.984807f,1.82226e-016f},{-0.116108f,-0.993237f,1.83786e-016f}, - {-0.173275f,-0.984873f,3.64476e-016f},{-0.11595f,-0.993255f,1.83789e-016f},{-0.396094f,-0.91821f,3.39806e-016f}, - {-0.448811f,-0.893627f,0.0f},{-0.396067f,-0.918222f,3.3981e-016f},{-0.286837f,-0.957979f,3.54524e-016f}, - {-0.342035f,-0.939687f,3.47754e-016f},{-0.286798f,-0.957991f,3.54528e-016f},{-0.597145f,-0.802133f,5.93698e-016f}, - {-0.549498f,-0.835495f,6.18391e-016f},{-0.597158f,-0.802124f,5.93691e-016f},{-0.499989f,-0.866032f,0.0f}, - {-0.448787f,-0.893639f,6.61426e-016f},{-0.500008f,-0.866021f,6.40984e-016f},{-0.72737f,-0.686246f,5.07924e-016f}, - {-0.766042f,-0.642791f,4.75761e-016f},{-0.727358f,-0.686259f,5.07933e-016f},{-0.642785f,-0.766046f,5.66988e-016f}, - {-0.686238f,-0.727377f,5.38367e-016f},{-0.642773f,-0.766057f,5.66996e-016f},{-0.866013f,-0.500021f,7.40179e-016f}, - {-0.835473f,-0.549532f,4.06735e-016f},{-0.866023f,-0.500004f,3.70077e-016f},{-0.802106f,-0.597181f,4.42003e-016f}, - {-0.802121f,-0.597162f,4.41988e-016f},{-0.835486f,-0.549512f,4.0672e-016f},{-0.939696f,-0.342012f,2.5314e-016f}, - {-0.957994f,-0.28679f,2.12267e-016f},{-0.939685f,-0.342042f,2.53162e-016f},{-0.918216f,-0.396079f,2.93157e-016f}, - {-0.918208f,-0.396098f,2.93171e-016f},{-0.893624f,-0.448817f,3.32191e-016f},{-0.993236f,-0.116116f,8.5943e-017f}, - {-0.984803f,-0.173675f,1.28545e-016f},{-0.99324f,-0.11608f,8.59167e-017f},{-0.973038f,-0.230643f,1.7071e-016f}, - {-0.957982f,-0.286828f,2.12296e-016f},{-0.973049f,-0.2306f,1.70678e-016f},{-1.0f,-1.19209e-007f,8.82326e-023f}, - {-0.998307f,0.058159f,-4.30463e-017f},{-0.998309f,0.0581378f,-4.30306e-017f},{-0.998309f,-0.0581377f,4.30305e-017f}, - {-1.0f,-2.65488e-017f,1.96501e-032f},{-0.998307f,-0.0581591f,4.30464e-017f},{-0.984803f,0.173675f,-1.28545e-016f}, - {-0.973038f,0.230643f,-1.7071e-016f},{-0.984811f,0.173633f,-1.28514e-016f},{-0.99324f,0.11608f,-8.59168e-017f}, - {-0.993236f,0.116116f,0.0f},{-0.918208f,0.396098f,0.0f},{-0.939696f,0.342012f,-5.0628e-016f}, - {-0.939685f,0.342042f,0.0f},{-0.957993f,0.28679f,0.0f},{-0.973049f,0.2306f,-1.70678e-016f}, - {-0.957982f,0.286828f,0.0f},{-0.866013f,0.500021f,-7.40179e-016f},{-0.893631f,0.448803f,0.0f}, - {-0.893624f,0.448816f,-6.64382e-016f},{-0.918216f,0.396079f,-5.86315e-016f},{-0.802121f,0.597162f,0.0f}, - {-0.835486f,0.549512f,0.0f},{-0.802106f,0.597181f,0.0f},{-0.866023f,0.500004f,0.0f}, - {-0.835473f,0.549532f,0.0f},{-0.727369f,0.686246f,0.0f},{-0.766041f,0.642791f,0.0f}, - {-0.727358f,0.686258f,0.0f},{-0.766027f,0.642808f,-9.51547e-016f},{-0.642773f,0.766057f,0.0f}, - {-0.686238f,0.727377f,0.0f},{-0.686227f,0.727388f,-1.07675e-015f},{-0.597145f,0.802133f,0.0f}, - {-0.642785f,0.766046f,0.0f},{-0.597158f,0.802124f,0.0f},{-0.549498f,0.835495f,0.0f}, - {-0.499989f,0.866032f,0.0f},{-0.549511f,0.835486f,0.0f},{-0.448787f,0.893639f,0.0f}, - {-0.500008f,0.866021f,0.0f},{-0.448811f,0.893627f,0.0f},{-0.396067f,0.918221f,0.0f}, - {-0.342011f,0.939696f,0.0f},{-0.396094f,0.91821f,0.0f},{-0.286798f,0.957991f,0.0f}, - {-0.342035f,0.939687f,0.0f},{-0.286837f,0.957979f,0.0f},{-0.230613f,0.973045f,0.0f}, - {-0.173651f,0.984807f,0.0f},{-0.230535f,0.973064f,0.0f},{-0.173275f,0.984873f,0.0f}, - {-0.116108f,0.993237f,0.0f},{-0.11595f,0.993255f,0.0f},{-0.0581642f,0.998307f,0.0f}, - {-7.72329e-017f,1.0f,0.0f},{-0.0581517f,0.998308f,0.0f},{-0.984811f,-0.173632f,1.28514e-016f}, - {-0.893631f,-0.448803f,3.32181e-016f},{-0.766027f,-0.642808f,4.75773e-016f},{-0.686227f,-0.727388f,5.38375e-016f}, - {-0.549511f,-0.835486f,6.18384e-016f},{-0.342011f,-0.939696f,3.47757e-016f},{-0.0581641f,-0.998307f,9.2362e-017f}, - {0.0f,1.17441e-015f,1.0f},{0.0f,1.17094e-015f,1.0f},{0.0f,1.17614e-015f,1.0f}, - {0.0f,1.17267e-015f,1.0f},{0.0f,1.17874e-015f,1.0f},{-6.93889e-018f,1.17094e-015f,1.0f}, - {0.0f,1.17571e-015f,1.0f},{0.0f,1.17354e-015f,1.0f},{6.51446e-032f,1.17354e-015f,1.0f}, - {6.49038e-032f,1.1692e-015f,1.0f},{0.0f,1.17788e-015f,1.0f},{-6.93889e-018f,1.17614e-015f,1.0f}, - {0.0f,1.1692e-015f,1.0f},{0.0f,1.16747e-015f,1.0f},{0.0f,1.17701e-015f,1.0f}, - {0.0f,1.17007e-015f,1.0f},{-3.46945e-018f,1.17961e-015f,1.0f},{3.46945e-018f,1.17267e-015f,1.0f}, - {6.93889e-018f,1.17267e-015f,1.0f},{-3.46945e-018f,1.17267e-015f,1.0f},{0.0f,1.17181e-015f,1.0f}, - {3.46945e-018f,1.17614e-015f,1.0f},{-3.46945e-018f,1.17614e-015f,1.0f},{0.0f,1.17116e-015f,1.0f}, - {0.0f,1.17462e-015f,1.0f},{0.0f,1.17311e-015f,1.0f},{0.0f,1.17213e-015f,1.0f}, - {0.0f,1.17332e-015f,1.0f},{0.0f,1.16834e-015f,1.0f},{0.0f,1.16912e-015f,1.0f}, - {0.0f,1.17528e-015f,1.0f},{0.0f,1.17831e-015f,1.0f},{-3.46945e-018f,1.1692e-015f,1.0f}, - {0.0f,1.17353e-015f,1.0f},{6.93889e-018f,1.17311e-015f,1.0f},{3.46945e-018f,1.1692e-015f,1.0f}, - {-3.46945e-018f,1.17353e-015f,1.0f},{-1.62741e-032f,1.17267e-015f,1.0f},{3.46945e-018f,1.17332e-015f,1.0f}, - {3.46945e-018f,1.17213e-015f,1.0f},{-3.46945e-018f,1.17831e-015f,1.0f},{-3.46945e-018f,1.17462e-015f,1.0f}, - {3.46945e-018f,1.17788e-015f,1.0f},{-3.46945e-018f,1.16747e-015f,1.0f},{-3.25482e-032f,1.17267e-015f,1.0f}, - {-3.46945e-018f,1.17571e-015f,1.0f},{3.24519e-032f,1.1692e-015f,1.0f},{-3.46945e-018f,1.17788e-015f,1.0f}, - {-1.63223e-032f,1.17614e-015f,1.0f},{-3.25964e-032f,1.17441e-015f,1.0f},{-3.46945e-018f,1.17701e-015f,1.0f}, - {-3.46945e-018f,1.17094e-015f,1.0f},{-3.46945e-018f,1.17181e-015f,1.0f},{-1.6226e-032f,1.1692e-015f,1.0f}, - {3.25482e-032f,1.17267e-015f,1.0f},{-0.0407198f,0.623367f,-0.780869f},{4.8247e-017f,0.624695f,-0.780869f}, - {-0.0408655f,0.623357f,-0.780869f},{-0.0815543f,0.619349f,-0.780869f},{-0.121867f,0.612693f,-0.780869f}, - {-0.0815307f,0.619352f,-0.780869f},{-0.200788f,0.591547f,-0.780869f},{-0.200806f,0.591541f,-0.780869f}, - {-0.239048f,0.577148f,-0.780869f},{-0.161674f,0.603411f,-0.780869f},{-0.161672f,0.603412f,-0.780869f}, - {-0.121853f,0.612696f,-0.780869f},{-0.312348f,0.541002f,-0.780869f},{-0.347061f,0.519415f,-0.780869f}, - {-0.362343f,0.508873f,-0.780869f},{-0.276303f,0.560268f,-0.780869f},{-0.469671f,0.41189f,-0.780869f}, - {-0.49103f,0.386178f,-0.780869f},{-0.452096f,0.431107f,-0.780869f},{-0.441727f,0.441726f,-0.780869f}, - {-0.409076f,0.472124f,-0.780869f},{-0.411889f,0.469671f,-0.780869f},{-0.603411f,0.161675f,-0.780869f}, - {-0.613402f,0.118247f,-0.780869f},{-0.599383f,0.176024f,-0.780869f},{-0.577143f,0.239059f,-0.780869f}, - {-0.579937f,0.232201f,-0.780869f},{-0.560271f,0.276297f,-0.780869f},{-0.624695f,-7.81403e-016f,-0.780869f}, - {-0.621866f,0.0593872f,-0.780869f},{-0.623358f,0.0408508f,-0.780869f},{-0.612694f,0.121862f,-0.780869f}, - {-0.619352f,0.0815295f,-0.780869f},{-0.619352f,-0.0815289f,-0.780869f},{-0.623278f,-0.0420472f,-0.780869f}, - {-0.619032f,-0.0839247f,-0.780869f},{-0.624695f,-7.85004e-016f,-0.780869f},{-0.603409f,-0.161685f,-0.780869f}, - {-0.602152f,-0.166305f,-0.780869f},{-0.591542f,-0.200803f,-0.780869f},{-0.611979f,-0.125401f,-0.780869f}, - {-0.612693f,-0.121866f,-0.780869f},{-0.574359f,-0.245674f,-0.780869f},{-0.55652f,-0.283777f,-0.780869f}, - {-0.560272f,-0.276296f,-0.780869f},{-0.577143f,-0.23906f,-0.780869f},{-0.589592f,-0.206458f,-0.780869f}, - {-0.541001f,-0.312349f,-0.780869f},{-0.536156f,-0.320594f,-0.780869f},{-0.519411f,-0.347068f,-0.780869f}, - {-0.495597f,-0.3803f,-0.780869f},{-0.513359f,-0.355958f,-0.780869f},{-0.460896f,-0.421686f,-0.780869f}, - {-0.469665f,-0.411897f,-0.780869f},{-0.488234f,-0.389707f,-0.780869f},{-0.400085f,-0.479767f,-0.780869f}, - {-0.411883f,-0.469676f,-0.780869f},{-0.431469f,-0.45175f,-0.780869f},{-0.441721f,-0.441731f,-0.780869f}, - {-0.366885f,-0.505608f,-0.780869f},{-0.347057f,-0.519418f,-0.780869f},{-0.380283f,-0.49561f,-0.780869f}, - {-0.276286f,-0.560277f,-0.780869f},{-0.312341f,-0.541005f,-0.780869f},{-0.312348f,-0.541002f,-0.780869f}, - {-0.332022f,-0.529155f,-0.780869f},{-0.276253f,-0.560293f,-0.780869f},{-0.295655f,-0.550302f,-0.780869f}, - {-0.257945f,-0.568954f,-0.780869f},{-0.219062f,-0.585026f,-0.780869f},{-0.239077f,-0.577136f,-0.780869f}, - {-0.17919f,-0.598444f,-0.780869f},{-0.200818f,-0.591537f,-0.780869f},{-0.161695f,-0.603406f,-0.780869f}, - {-0.138507f,-0.609147f,-0.780869f},{-0.0968651f,-0.617139f,-0.780869f},{-0.12188f,-0.61269f,-0.780869f}, - {-0.0554646f,-0.622228f,-0.780869f},{-0.0815436f,-0.61935f,-0.780869f},{-0.0408587f,-0.623357f,-0.780869f}, - {-0.0134154f,-0.624551f,-0.780869f},{-1.44741e-016f,-0.624695f,-0.780869f},{-1.32341e-016f,-0.624695f,-0.780869f}, - {-0.121874f,-0.612691f,-0.780869f},{-0.161679f,-0.60341f,-0.780869f},{-0.121867f,-0.612693f,-0.780869f}, - {-0.276294f,-0.560273f,-0.780869f},{-0.161681f,-0.60341f,-0.780869f},{-0.239058f,-0.577144f,-0.780869f}, - {-0.081532f,-0.619352f,-0.780869f},{-0.0815751f,-0.619346f,-0.780869f},{-0.0408495f,-0.623358f,-0.780869f}, - {-0.0406682f,-0.62337f,-0.780869f},{-1.34995e-016f,-0.624695f,-0.780869f},{-1.67499e-016f,-0.624695f,-0.780869f}, - {-0.20067f,-0.591587f,-0.780869f},{-0.200802f,-0.591543f,-0.780869f},{-0.23903f,-0.577156f,-0.780869f}, - {-0.591544f,0.200798f,-0.780869f},{-0.623358f,-0.0408492f,-0.780869f},{-0.525513f,0.337758f,-0.780869f}, - {-0.541f,0.31235f,-0.780869f},{-0.555239f,0.286275f,-0.780869f},{-0.519413f,0.347065f,-0.780869f}, - {-0.495602f,0.380292f,-0.780869f},{-0.441709f,0.441743f,-0.780869f},{-0.411873f,0.469686f,-0.780869f}, - {-0.409092f,0.47211f,-0.780869f},{-0.347044f,0.519427f,-0.780869f},{-0.31233f,0.541012f,-0.780869f}, - {-0.380288f,0.495606f,-0.780869f},{-0.239067f,0.57714f,-0.780869f},{-0.276284f,0.560278f,-0.780869f}, - {-0.312352f,0.540999f,-0.780869f},{5.94472e-017f,0.624695f,-0.780869f},{-0.623357f,0.040871f,-0.780869f}, - {-0.624695f,-7.73092e-016f,-0.780869f},{-0.624695f,-7.89776e-016f,-0.780869f},{-0.621867f,0.0593711f,-0.780869f}, - {-0.613408f,0.118216f,-0.780869f},{-0.619348f,0.0815572f,-0.780869f},{-0.603406f,0.161693f,-0.780869f}, - {-0.612689f,0.121886f,-0.780869f},{-0.599395f,0.175983f,-0.780869f},{-0.579951f,0.232166f,-0.780869f}, - {-0.591537f,0.200819f,-0.780869f},{-0.560263f,0.276314f,-0.780869f},{-0.577134f,0.239082f,-0.780869f}, - {-0.555257f,0.286241f,-0.780869f},{-0.525532f,0.337728f,-0.780869f},{-0.540992f,0.312365f,-0.780869f}, - {-0.519405f,0.347077f,-0.780869f},{-0.491049f,0.386154f,-0.780869f},{-0.495593f,0.380304f,-0.780869f}, - {-0.452119f,0.431082f,-0.780869f},{-0.469657f,0.411906f,-0.780869f},{-0.362366f,0.508856f,-0.780869f}, - {-0.380275f,0.495616f,-0.780869f},{0.998775f,-0.049491f,0.0f},{1.0f,1.2919e-016f,0.0f}, - {1.0f,1.37264e-016f,0.0f},{0.977407f,-0.211368f,0.0f},{0.98727f,-0.159053f,0.0f}, - {0.977365f,-0.211559f,0.0f},{0.994856f,-0.101296f,0.0f},{0.994335f,-0.106287f,0.0f}, - {0.9986f,-0.0529056f,0.0f},{0.964773f,-0.263083f,0.0f},{0.962355f,-0.271796f,0.0f}, - {0.949405f,-0.314055f,0.0f},{0.866021f,-0.500008f,0.0f},{0.861571f,-0.507638f,0.0f}, - {0.887366f,-0.461066f,0.0f},{0.921279f,-0.388903f,0.0f},{0.910645f,-0.413189f,0.0f}, - {0.931345f,-0.364138f,0.0f},{0.734799f,-0.678285f,0.0f},{0.758453f,-0.651728f,0.0f}, - {0.716553f,-0.697532f,0.0f},{0.802733f,-0.596339f,0.0f},{0.833328f,-0.552779f,0.0f}, - {0.797427f,-0.603416f,0.0f},{0.541517f,-0.84069f,0.0f},{0.530443f,-0.847721f,0.0f}, - {0.574807f,-0.818289f,0.0f},{0.609678f,-0.792649f,0.0f},{0.658536f,-0.752549f,0.0f}, - {0.288713f,-0.957416f,0.0f},{0.339268f,-0.94069f,0.0f},{0.305468f,-0.952202f,0.0f}, - {0.437338f,-0.899297f,0.0f},{0.467738f,-0.883867f,0.0f},{0.388834f,-0.921308f,0.0f}, - {0.132754f,-0.991149f,0.0f},{0.10328f,-0.994652f,0.0f},{0.0798119f,-0.99681f,0.0f}, - {0.237346f,-0.971425f,0.0f},{0.239168f,-0.970978f,0.0f},{0.185314f,-0.982679f,0.0f}, - {-0.171605f,-0.985166f,0.0f},{-0.132709f,-0.991155f,0.0f},{-0.103293f,-0.994651f,0.0f}, - {-0.0266126f,-0.999646f,0.0f},{0.0266303f,-0.999645f,0.0f},{-0.0344868f,-0.999405f,0.0f}, - {-0.339241f,-0.940699f,0.0f},{-0.388834f,-0.921308f,0.0f},{-0.388825f,-0.921312f,0.0f}, - {-0.237326f,-0.97143f,0.0f},{-0.239133f,-0.970987f,0.0f},{-0.288698f,-0.95742f,0.0f}, - {-0.467738f,-0.883867f,0.0f},{-0.484556f,-0.87476f,0.0f},{-0.437309f,-0.899311f,0.0f}, - {-0.617538f,-0.786541f,0.0f},{-0.609678f,-0.792649f,0.0f},{-0.658522f,-0.752561f,0.0f}, - {-0.541517f,-0.84069f,0.0f},{-0.574801f,-0.818293f,0.0f},{-0.53043f,-0.847729f,0.0f}, - {-0.716559f,-0.697526f,0.0f},{-0.758457f,-0.651723f,0.0f},{-0.734782f,-0.678303f,0.0f}, - {-0.697641f,-0.716448f,0.0f},{-0.797431f,-0.60341f,0.0f},{-0.833335f,-0.552769f,0.0f}, - {-0.802718f,-0.596359f,0.0f},{-0.769841f,-0.638236f,0.0f},{-0.861559f,-0.507658f,0.0f}, - {-0.833319f,-0.552792f,0.0f},{-0.866023f,-0.500004f,0.0f},{-0.89538f,-0.445304f,0.0f}, - {-0.887356f,-0.461084f,0.0f},{-0.910637f,-0.413206f,0.0f},{-0.921283f,-0.388894f,0.0f}, - {-0.931337f,-0.364157f,0.0f},{-0.943659f,-0.330919f,0.0f},{-0.949398f,-0.314075f,0.0f}, - {-0.962422f,-0.27156f,0.0f},{-0.964768f,-0.263101f,0.0f},{-0.977403f,-0.211384f,0.0f}, - {-0.977365f,-0.211559f,0.0f},{-0.987859f,-0.155356f,0.0f},{-0.987268f,-0.159066f,0.0f}, - {-0.994333f,-0.106314f,0.0f},{-0.994856f,-0.101296f,0.0f},{-0.998775f,-0.049491f,0.0f}, - {-0.998601f,-0.0528865f,0.0f},{-0.305468f,-0.952202f,0.0f},{-0.185276f,-0.982686f,0.0f}, - {-0.079772f,-0.996813f,0.0f},{0.03448f,-0.999405f,0.0f},{0.171593f,-0.985168f,0.0f}, - {0.388857f,-0.921298f,0.0f},{0.484577f,-0.874749f,0.0f},{0.617547f,-0.786534f,0.0f}, - {0.697657f,-0.716432f,0.0f},{0.769857f,-0.638216f,0.0f},{0.833333f,-0.552771f,0.0f}, - {0.895373f,-0.445318f,0.0f},{0.943631f,-0.330998f,0.0f},{0.987859f,-0.155356f,0.0f}, - {-1.0f,-3.77476e-016f,0.0f},{-0.991435f,-0.130601f,-6.19104e-019f},{-0.99153f,-0.129881f,4.88629e-016f}, - {-0.865926f,-0.500171f,-8.92478e-019f},{-0.866063f,-0.499936f,-3.17394e-017f},{-0.923984f,-0.382431f,-5.0236e-018f}, - {-0.923897f,-0.38264f,-5.01887e-018f},{-0.966265f,-0.257551f,-6.30898e-018f},{-0.965902f,-0.258907f,4.70296e-016f}, - {-0.608898f,-0.793249f,2.51569e-017f},{-0.608701f,-0.7934f,2.51781e-017f},{-0.500177f,-0.865923f,3.67732e-017f}, - {-0.793302f,-0.608828f,-3.85657e-016f},{-0.70708f,-0.707134f,-3.34256e-016f},{-0.707182f,-0.707032f,1.01847e-016f}, - {-0.130461f,-0.991453f,-9.90614e-017f},{-0.130634f,-0.991431f,7.15089e-017f},{-0.258717f,-0.965953f,-5.85053e-017f}, - {-0.258991f,-0.96588f,-1.13773e-016f},{-0.382876f,-0.9238f,2.9328e-017f},{-0.382575f,-0.923924f,1.23656e-016f}, - {0.258717f,-0.965953f,1.33133e-016f},{0.130634f,-0.991431f,1.36399e-016f},{0.258991f,-0.96588f,-1.45574e-016f}, - {4.20972e-017f,-1.0f,-4.25225e-017f},{4.54604e-017f,-1.0f,-4.25225e-017f},{0.130461f,-0.991453f,1.40227e-017f}, - {0.499909f,-0.866078f,4.49026e-016f},{0.500177f,-0.865923f,1.55049e-016f},{0.608701f,-0.7934f,7.79706e-016f}, - {0.382876f,-0.9238f,7.50444e-017f},{0.382576f,-0.923924f,3.75533e-017f},{0.70708f,-0.707134f,2.56512e-016f}, - {0.707182f,-0.707032f,2.34744e-016f},{0.793302f,-0.608828f,4.26281e-016f},{0.608898f,-0.793249f,-1.21382e-016f}, - {0.865926f,-0.500171f,4.61524e-016f},{0.793414f,-0.608682f,-9.08045e-016f},{0.866063f,-0.499936f,-1.12653e-016f}, - {0.923984f,-0.382431f,1.71788e-016f},{0.923898f,-0.38264f,-9.65732e-017f},{0.965902f,-0.258907f,1.47384e-016f}, - {0.991435f,-0.130601f,3.73071e-016f},{0.966265f,-0.257551f,2.10001e-016f},{0.99153f,-0.129881f,1.22154e-016f}, - {1.0f,4.44089e-017f,0.0f},{-0.499909f,-0.866078f,-7.00363e-017f},{-0.793414f,-0.608682f,-3.85722e-016f}, - {-1.0f,-3.55271e-016f,0.0f},{1.38778e-017f,0.0f,-1.0f},{-2.77556e-017f,0.0f,-1.0f}, - {-1.38778e-017f,0.0f,-1.0f},{-0.209488f,-0.470509f,-0.857167f},{-0.302781f,-0.416639f,-0.857167f}, - {2.0793e-011f,0.515038f,-0.857167f},{-0.107041f,-0.503792f,-0.857167f},{-8.71204e-012f,-0.515038f,-0.857167f}, - {-0.382869f,-0.344494f,-0.857167f},{-0.446205f,-0.257227f,-0.857167f},{-0.489955f,-0.158772f,-0.857167f}, - {-0.512244f,-0.0535708f,-0.857167f},{-0.512182f,0.054163f,-0.857167f},{-0.445616f,0.258245f,-0.857167f}, - {-0.489568f,0.159959f,-0.857167f},{-0.302314f,0.416978f,-0.857167f},{-0.382299f,0.345125f,-0.857167f}, - {-0.106823f,0.503838f,-0.857167f},{-0.209119f,0.470674f,-0.857167f},{-5.23815e-016f,0.515038f,-0.857167f}, - {-4.16334e-016f,-1.0f,1.18424e-015f},{-0.20783f,-0.978165f,1.30318e-015f},{-0.207408f,-0.978254f,1.12778e-015f}, - {-0.86521f,-0.50141f,5.93789e-016f},{-0.742274f,-0.670096f,7.38614e-016f},{-0.743379f,-0.66887f,6.87574e-016f}, - {-0.586974f,-0.809606f,9.58766e-016f},{-0.406026f,-0.913862f,1.01459e-015f},{-0.406743f,-0.913543f,1.08185e-015f}, - {-0.994455f,-0.105163f,9.16276e-017f},{-0.994576f,-0.104013f,8.25206e-017f},{-0.994576f,0.104013f,-1.92941e-016f}, - {-0.866353f,-0.499433f,6.65378e-016f},{-0.951298f,-0.308272f,3.87884e-016f},{-0.950548f,-0.310578f,3.92178e-016f}, - {-0.950548f,0.310578f,-2.2169e-016f},{-0.86521f,0.50141f,-5.89149e-016f},{-0.866353f,0.499433f,-4.58297e-016f}, - {-0.951298f,0.308272f,-3.65067e-016f},{-0.994455f,0.105163f,3.82381e-017f},{-0.742274f,0.670096f,-7.82968e-016f}, - {-0.586974f,0.809606f,-1.0039e-015f},{-0.587881f,0.808947f,-1.05167e-015f},{-0.743379f,0.66887f,-8.52637e-016f}, - {-0.406743f,0.913543f,-9.8396e-016f},{-0.406026f,0.913862f,-1.10276e-015f},{-0.207408f,0.978254f,-1.31418e-015f}, - {-0.20783f,0.978165f,-1.07945e-015f},{1.11022e-016f,1.0f,-1.18424e-015f},{-0.587881f,-0.808947f,1.0015e-015f}, - {0.0f,0.515038f,-0.857167f},{-8.71183e-012f,-0.515038f,-0.857167f},{-3.77792e-017f,0.515038f,-0.857167f}, - {-8.88178e-016f,-1.0f,1.03621e-015f},{-0.20783f,-0.978165f,1.18915e-015f},{-0.207408f,-0.978254f,8.68864e-016f}, - {-0.86521f,-0.50141f,6.20715e-016f},{-0.742274f,-0.670096f,5.34884e-016f},{-0.743379f,-0.66887f,7.4811e-016f}, - {-0.586974f,-0.809606f,9.2581e-016f},{-0.406026f,-0.913862f,9.46951e-016f},{-0.406743f,-0.913543f,9.4662e-016f}, - {-0.994455f,-0.105163f,2.02034e-016f},{-0.994576f,-0.104013f,3.2862e-016f},{-0.994576f,0.104013f,-8.63697e-017f}, - {-0.951298f,-0.308272f,4.83071e-016f},{-0.950548f,-0.310578f,5.78862e-016f},{-0.950548f,0.310578f,-2.74108e-016f}, - {-0.86521f,0.50141f,-4.47156e-016f},{-0.866353f,0.499433f,-5.98803e-016f},{-0.951298f,0.308272f,-2.31911e-016f}, - {-0.994455f,0.105163f,-2.45591e-018f},{-0.742274f,0.670096f,-7.15151e-016f},{-0.586974f,0.809606f,-8.90323e-016f}, - {-0.587881f,0.808947f,-9.67842e-016f},{-0.743379f,0.66887f,-8.40245e-016f},{-0.406743f,0.913543f,-1.02153e-015f}, - {-0.406026f,0.913862f,-1.22443e-015f},{-0.207408f,0.978254f,-1.05802e-015f},{-0.20783f,0.978165f,-1.06498e-015f}, - {-0.587881f,-0.808947f,9.57986e-016f},{-8.7128e-012f,-0.515038f,-0.857167f},{-6.8535e-016f,0.515038f,-0.857167f}, - {8.88178e-016f,-1.0f,1.18424e-015f},{-0.20783f,-0.978165f,1.15838e-015f},{-0.207408f,-0.978254f,1.15849e-015f}, - {-0.86521f,-0.50141f,4.286e-016f},{-0.742274f,-0.670096f,8.87405e-016f},{-0.743379f,-0.66887f,6.32553e-016f}, - {-0.586974f,-0.809606f,9.15321e-016f},{-0.406026f,-0.913862f,1.08223e-015f},{-0.994455f,-0.105163f,1.16754e-016f}, - {-0.994576f,-0.104013f,1.59983e-016f},{-0.994576f,0.104013f,-3.80152e-017f},{-0.866353f,-0.499433f,5.27324e-016f}, - {-0.951298f,-0.308272f,4.12661e-016f},{-0.950548f,-0.310578f,2.74456e-016f},{-0.950548f,0.310578f,-2.33532e-016f}, - {-0.86521f,0.50141f,-5.96335e-016f},{-0.866353f,0.499433f,-5.68061e-016f},{-0.951298f,0.308272f,-2.59452e-016f}, - {-0.994455f,0.105163f,-4.315e-017f},{-0.742274f,0.670096f,-7.2774e-016f},{-0.586974f,0.809606f,-8.55024e-016f}, - {-0.587881f,0.808947f,-1.02665e-015f},{-0.743379f,0.66887f,-8.66361e-016f},{-0.406743f,0.913543f,-1.10059e-015f}, - {-0.406026f,0.913862f,-1.082e-015f},{-0.207408f,0.978254f,-1.12807e-015f},{-0.20783f,0.978165f,-1.036e-015f}, - {-0.587881f,-0.808947f,9.14474e-016f},{-2.0793e-011f,0.515038f,-0.857167f},{-8.7129e-012f,-0.515038f,-0.857167f}, - {-1.52141e-016f,0.515038f,-0.857167f},{9.4369e-016f,-1.0f,1.18424e-015f},{-0.207408f,-0.978254f,1.18919e-015f}, - {-0.86521f,-0.50141f,6.68012e-016f},{-0.742274f,-0.670096f,6.83675e-016f},{-0.743379f,-0.66887f,7.92101e-016f}, - {-0.406743f,-0.913543f,1.27729e-015f},{-0.994455f,-0.105163f,1.98142e-016f},{-0.994576f,0.104013f,8.65335e-018f}, - {-0.866353f,-0.499433f,6.5557e-016f},{-0.951298f,-0.308272f,5.03928e-016f},{-0.950548f,-0.310578f,2.50076e-016f}, - {-0.950548f,0.310578f,-3.08937e-016f},{-0.86521f,0.50141f,-5.85418e-016f},{-0.866353f,0.499433f,-7.08567e-016f}, - {-0.951298f,0.308272f,-3.94078e-016f},{-0.994455f,0.105163f,-1.73016e-016f},{-0.742274f,0.670096f,-8.05095e-016f}, - {-0.586974f,0.809606f,-9.35358e-016f},{-0.587881f,0.808947f,-1.05156e-015f},{-0.743379f,0.66887f,-9.1452e-016f}, - {-0.406743f,0.913543f,-9.91265e-016f},{-0.406026f,0.913862f,-1.16514e-015f},{-0.207408f,0.978254f,-1.06396e-015f}, - {-0.20783f,0.978165f,-1.24775e-015f},{-2.77556e-017f,1.0f,-1.18424e-015f},{-0.587881f,-0.808947f,8.70962e-016f}, - {0.130601f,-0.991435f,5.91127e-019f},{0.504792f,-0.863241f,-2.02127e-017f},{0.386527f,-0.922278f,-4.5688e-016f}, - {0.500171f,-0.865926f,3.75867e-016f},{0.260319f,-0.965523f,4.84382e-016f},{0.258907f,-0.965902f,2.3813e-017f}, - {0.382431f,-0.923984f,-2.11599e-018f},{0.7934f,-0.608701f,-1.21624e-016f},{0.866078f,-0.499909f,1.59434e-016f}, - {0.799182f,-0.60109f,3.0223e-017f},{0.707134f,-0.70708f,1.81955e-016f},{0.712942f,-0.701223f,8.71811e-018f}, - {0.61424f,-0.78912f,-8.47292e-018f},{0.993331f,-0.115297f,-1.28837e-016f},{0.969421f,-0.245402f,2.2597e-016f}, - {0.991453f,-0.130461f,-2.87378e-016f},{0.928562f,-0.371177f,-2.17091e-016f},{0.923924f,-0.382575f,5.85909e-017f}, - {0.965953f,-0.258717f,4.84292e-017f},{0.988912f,0.1485f,-2.16513e-016f},{0.96588f,0.258991f,-9.27243e-017f}, - {0.960687f,0.277634f,-5.52567e-018f},{1.0f,1.50355e-016f,2.5559e-017f},{0.991431f,0.130634f,-3.04207e-017f}, - {0.999859f,0.0167995f,-1.01552e-016f},{0.865923f,0.500177f,3.07191e-017f},{0.793249f,0.608898f,-1.58893e-016f}, - {0.854627f,0.519243f,-3.82786e-017f},{0.9238f,0.382876f,-4.32254e-016f},{0.915665f,0.401942f,3.20545e-017f}, - {0.707032f,0.707182f,1.84414e-016f},{0.608682f,0.793414f,-2.94158e-016f},{0.6891f,0.724667f,4.12928e-016f}, - {0.778651f,0.627457f,2.23169e-016f},{0.587492f,0.80923f,-2.92371e-016f},{0.499936f,0.866063f,-2.28218e-016f}, - {0.38264f,0.923898f,-1.88485e-016f},{0.475687f,0.879615f,-4.6342e-016f},{0.257551f,0.966265f,1.03607e-016f}, - {0.354917f,0.934898f,2.24615e-016f},{0.228996f,0.973427f,1.38774e-016f},{0.129881f,0.99153f,1.04307e-015f}, - {-4.21885e-016f,1.0f,0.0f},{0.0984243f,0.995145f,-1.69533e-016f},{-3.55271e-016f,1.0f,0.0f}, - {0.87148f,-0.490431f,1.62194e-016f},{0.608828f,-0.793302f,-4.00663e-016f},{0.131224f,-0.991353f,6.10153e-019f}, - {-0.99153f,-0.129881f,-4.91015e-016f},{-0.991435f,-0.130601f,-1.80136e-018f},{-0.865926f,-0.500171f,9.3755e-018f}, - {-0.923984f,-0.382431f,-7.91631e-019f},{-0.866063f,-0.499936f,-2.14221e-017f},{-0.923897f,-0.38264f,-2.44199e-017f}, - {-0.965902f,-0.258907f,-6.02945e-018f},{-0.966265f,-0.257551f,-4.82672e-016f},{-0.608898f,-0.793249f,1.18364e-016f}, - {-0.500177f,-0.865923f,-3.15104e-016f},{-0.608701f,-0.7934f,1.1825e-016f},{-0.793302f,-0.608828f,4.1567e-016f}, - {-0.707182f,-0.707032f,-3.42282e-019f},{-0.70708f,-0.707134f,-1.74822e-016f},{-0.130461f,-0.991453f,-1.03638e-016f}, - {-0.258717f,-0.965953f,-2.02191e-016f},{-0.130634f,-0.991431f,-2.74129e-016f},{-0.258991f,-0.96588f,-8.2881e-017f}, - {-0.382575f,-0.923924f,-2.01887e-016f},{-0.382876f,-0.9238f,-2.21359e-016f},{0.258717f,-0.965953f,-1.28219e-016f}, - {0.258991f,-0.96588f,1.82327e-016f},{0.130634f,-0.991431f,-7.95915e-017f},{6.27272e-017f,-1.0f,-9.36404e-017f}, - {0.130461f,-0.991453f,4.92989e-017f},{6.65124e-017f,-1.0f,-9.36404e-017f},{0.499909f,-0.866078f,-4.39633e-017f}, - {0.608701f,-0.7934f,3.80682e-016f},{0.500177f,-0.865923f,-2.43429e-016f},{0.382876f,-0.9238f,3.63034e-016f}, - {0.382576f,-0.923924f,1.36738e-016f},{0.70708f,-0.707134f,-2.86707e-016f},{0.793302f,-0.608828f,-4.30606e-016f}, - {0.707182f,-0.707032f,-2.64966e-016f},{0.608898f,-0.793249f,1.17848e-016f},{0.865926f,-0.500171f,-4.80949e-016f}, - {0.793414f,-0.608682f,8.84924e-016f},{0.866063f,-0.499936f,1.39452e-016f},{0.923984f,-0.382431f,-2.16909e-016f}, - {0.965902f,-0.258907f,-1.76024e-016f},{0.923898f,-0.38264f,7.5049e-017f},{0.991435f,-0.130601f,-3.76626e-016f}, - {0.966265f,-0.257551f,7.3088e-016f},{0.99153f,-0.129881f,-1.25711e-016f},{-0.499909f,-0.866078f,3.84467e-017f}, - {-0.793414f,-0.608682f,4.15754e-016f},{6.93889e-018f,0.0f,1.0f},{1.21431e-017f,0.0f,1.0f}, - {1.04083e-017f,0.0f,1.0f},{-1.38778e-017f,0.0f,1.0f},{-6.93889e-018f,0.0f,1.0f}, - {-1.04083e-017f,0.0f,1.0f},{1.73472e-018f,0.0f,1.0f},{-7.15573e-018f,0.0f,1.0f}, - {1.38778e-017f,0.0f,1.0f},{7.77156e-018f,0.0f,1.0f},{8.67362e-019f,0.0f,1.0f}, - {-8.67362e-018f,0.0f,1.0f},{9.97466e-018f,0.0f,1.0f},{3.46945e-018f,0.0f,1.0f}, - {-3.46945e-018f,0.0f,1.0f},{2.77556e-017f,0.0f,1.0f},{-0.130601f,0.991435f,1.77338e-018f}, - {-0.129881f,0.99153f,4.90961e-016f},{-0.500171f,0.865926f,3.08732e-017f},{-0.499936f,0.866063f,-5.81242e-020f}, - {-0.382431f,0.923984f,-6.34795e-018f},{-0.38264f,0.923897f,-6.29986e-018f},{-0.257551f,0.966265f,7.30839e-018f}, - {-0.258907f,0.965902f,4.8417e-016f},{-0.793249f,0.608898f,-1.1018e-016f},{-0.7934f,0.608701f,-1.10088e-016f}, - {-0.865923f,0.500177f,5.07923e-017f},{-0.608828f,0.793302f,-4.19108e-016f},{-0.707134f,0.70708f,-2.39145e-016f}, - {-0.707032f,0.707182f,2.2457e-017f},{-0.991453f,0.130461f,-2.76358e-016f},{-0.991431f,0.130634f,-1.05855e-016f}, - {-0.965953f,0.258717f,-1.6536e-016f},{-0.96588f,0.258991f,1.75599e-017f},{-0.9238f,0.382876f,-1.3075e-017f}, - {-0.923924f,0.382575f,8.1385e-017f},{-0.965953f,-0.258717f,2.15452e-016f},{-0.991431f,-0.130634f,1.78952e-016f}, - {-0.96588f,-0.258991f,-6.31777e-017f},{-1.0f,-2.40099e-017f,-4.66812e-017f},{-1.0f,-2.36302e-017f,-4.66812e-017f}, - {-0.991453f,-0.130461f,1.78822e-016f},{-0.866078f,-0.499909f,4.22895e-016f},{-0.865923f,-0.500177f,-8.46537e-017f}, - {-0.7934f,-0.608701f,8.26127e-016f},{-0.9238f,-0.382876f,1.31423e-016f},{-0.923924f,-0.382576f,9.38593e-017f}, - {-0.707134f,-0.70708f,2.26071e-016f},{-0.707032f,-0.707182f,2.04322e-016f},{-0.608828f,-0.793302f,3.53949e-016f}, - {-0.793249f,-0.608898f,-7.49318e-017f},{-0.500171f,-0.865926f,4.69837e-016f},{-0.608682f,-0.793414f,-8.86489e-016f}, - {-0.499936f,-0.866063f,-1.50588e-016f},{-0.382431f,-0.923984f,1.81164e-016f},{-0.38264f,-0.923898f,-8.71966e-017f}, - {-0.258907f,-0.965902f,1.58845e-016f},{-0.130601f,-0.991435f,3.72533e-016f},{-0.257551f,-0.966265f,2.2141e-016f}, - {-0.129881f,-0.99153f,1.21619e-016f},{4.44089e-017f,-1.0f,0.0f},{-0.866078f,0.499909f,1.57789e-016f}, - {-0.608682f,0.793414f,-4.19223e-016f},{-1.04083e-017f,0.0f,-1.0f},{6.93889e-018f,0.0f,-1.0f}, - {4.33681e-019f,0.0f,-1.0f},{1.07336e-017f,0.0f,-1.0f},{-6.93889e-018f,0.0f,-1.0f}, - {-6.50521e-018f,0.0f,-1.0f},{3.68629e-018f,0.0f,-1.0f},{4.07082e-018f,0.0f,-1.0f}, - {1.04083e-017f,0.0f,-1.0f},{0.444478f,-0.89579f,0.0f},{0.418355f,-0.908284f,0.0f}, - {0.133376f,-0.991066f,0.0f},{0.198953f,-0.980009f,0.0f},{0.145378f,-0.989376f,0.0f}, - {0.331391f,-0.943493f,0.0f},{0.263225f,-0.964735f,0.0f},{0.325799f,-0.945439f,0.0f}, - {-0.133376f,-0.991066f,0.0f},{-0.145378f,-0.989376f,0.0f},{-0.198953f,-0.980009f,0.0f}, - {0.0486891f,-0.998814f,0.0f},{-0.0486892f,-0.998814f,0.0f},{-6.76475e-016f,-1.0f,0.0f}, - {-0.325799f,-0.945439f,0.0f},{-0.331391f,-0.943493f,0.0f},{-0.386322f,-0.922364f,0.0f}, - {-0.263225f,-0.964735f,0.0f},{-0.24003f,-0.970766f,0.0f},{-0.444478f,-0.89579f,0.0f}, - {-0.418355f,-0.908283f,0.0f},{-0.0669122f,-0.997759f,0.0f},{0.0669122f,-0.997759f,0.0f}, - {0.24003f,-0.970766f,0.0f},{0.386322f,-0.922364f,0.0f},{-0.866025f,-0.5f,2.22045e-016f}, - {0.418355f,0.908283f,1.34453e-014f},{0.444478f,0.89579f,0.0f},{0.133376f,0.991066f,-3.66768e-015f}, - {0.198953f,0.980009f,-2.17606e-014f},{0.145378f,0.989376f,-1.12533e-014f},{0.263225f,0.964735f,-1.42809e-014f}, - {0.325799f,0.945439f,-9.40905e-015f},{0.331391f,0.943493f,6.98325e-015f},{-0.133376f,0.991066f,-5.62492e-015f}, - {-0.145378f,0.989376f,6.811e-015f},{-0.198953f,0.980009f,7.43077e-015f},{0.0486892f,0.998814f,-1.75808e-015f}, - {-0.0486891f,0.998814f,1.80313e-015f},{-3.75252e-016f,1.0f,-3.47178e-031f},{-0.325799f,0.945439f,-1.5311e-015f}, - {-0.331391f,0.943493f,-1.06169e-014f},{-0.386322f,0.922364f,-5.1396e-015f},{-0.263225f,0.964735f,1.93732e-015f}, - {-0.444478f,0.89579f,-3.54644e-016f},{-0.418355f,0.908284f,8.06481e-016f},{-0.24003f,0.970766f,-1.54398e-014f}, - {0.24003f,0.970766f,7.18511e-015f},{-0.0669122f,0.997759f,-3.81626e-015f},{0.0669122f,0.997759f,-2.47625e-016f}, - {0.386322f,0.922364f,-3.96751e-015f},{0.866025f,-0.5f,-2.29443e-016f},{0.0f,3.46945e-018f,-1.0f}, - {0.0f,-6.93889e-018f,-1.0f},{0.0f,6.93889e-018f,-1.0f},{0.0f,1.38778e-017f,-1.0f}, - {0.577419f,0.816448f,0.0f},{0.784136f,0.620589f,0.0f},{0.720693f,0.693254f,0.0f}, - {0.651394f,0.75874f,0.0f},{0.889343f,0.457241f,0.0f},{0.929514f,0.368787f,0.0f}, - {0.840654f,0.541573f,0.0f},{0.960722f,0.277511f,0.0f},{0.982785f,0.184754f,0.0f}, - {0.995774f,0.0918355f,0.0f},{1.0f,-6.52539e-016f,0.0f},{1.0f,-8.70052e-016f,0.0f}, - {-1.0f,6.03291e-016f,0.0f},{-0.995774f,-0.0918355f,1.81234e-017f},{-0.929514f,-0.368787f,-6.50222e-015f}, - {-0.960722f,-0.277511f,-1.39324e-014f},{-0.982785f,-0.184754f,2.2208e-017f},{-0.784136f,-0.620589f,4.14066e-015f}, - {-0.840654f,-0.541573f,4.26223e-015f},{-0.889343f,-0.457241f,7.28708e-015f},{-0.651394f,-0.75874f,8.81315e-015f}, - {-0.720693f,-0.693254f,-3.17985e-015f},{-0.577419f,-0.816448f,1.49179e-015f},{-1.0f,5.36259e-016f,0.0f}, - {1.83187e-015f,1.0f,0.0f},{1.83187e-015f,1.0f,8.62817e-032f},{0.0f,5.20417e-018f,-1.0f}, - {0.0f,-8.67362e-019f,-1.0f},{0.0f,-3.46945e-018f,-1.0f},{0.0f,-1.73472e-018f,-1.0f}, - {0.0f,-5.20417e-018f,-1.0f},{-0.995774f,0.0918355f,0.0f},{-1.0f,2.90017e-016f,0.0f}, - {-1.0f,3.99573e-013f,0.0f},{-0.929514f,0.368787f,0.0f},{-0.960722f,0.277511f,0.0f}, - {-0.982785f,0.184754f,0.0f},{-0.840654f,0.541573f,0.0f},{-0.784136f,0.620589f,0.0f}, - {-0.889343f,0.457241f,0.0f},{-0.720693f,0.693255f,0.0f},{-0.651394f,0.75874f,0.0f}, - {-0.577419f,0.816448f,0.0f},{1.33227e-015f,1.0f,-1.97215e-031f},{1.33227e-015f,1.0f,-1.04999e-032f}, - {0.577419f,-0.816448f,0.0f},{0.784136f,-0.620589f,2.05619e-015f},{0.720693f,-0.693255f,-2.6671e-015f}, - {0.651394f,-0.75874f,7.94521e-016f},{0.929514f,-0.368787f,3.27627e-015f},{0.889343f,-0.457241f,2.56146e-015f}, - {0.840654f,-0.541573f,8.97402e-016f},{0.982785f,-0.184754f,-5.16503e-015f},{0.960722f,-0.277511f,1.0602e-014f}, - {0.995774f,-0.0918355f,1.43378e-014f},{1.0f,-3.35162e-017f,0.0f},{0.0f,-1.38778e-017f,-1.0f}, - {-0.995188f,-0.0979889f,0.0f},{-1.0f,-3.99915e-013f,0.0f},{-0.923925f,-0.382573f,0.0f}, - {-0.956966f,-0.290201f,0.0f},{-0.923909f,-0.382613f,0.0f},{-0.956961f,-0.290216f,0.0f}, - {-0.980794f,-0.195045f,0.0f},{-0.980794f,-0.195048f,0.0f},{-0.773048f,-0.634347f,0.0f}, - {-0.707144f,-0.70707f,0.0f},{-0.773125f,-0.634253f,0.0f},{-0.831507f,-0.555514f,0.0f}, - {-0.83156f,-0.555435f,0.0f},{-0.881988f,-0.471271f,0.0f},{-0.471474f,-0.88188f,0.0f}, - {-0.555711f,-0.831376f,0.0f},{-0.471468f,-0.881883f,0.0f},{-0.634547f,-0.772884f,0.0f}, - {-0.634433f,-0.772978f,0.0f},{-0.555621f,-0.831435f,0.0f},{-0.194999f,-0.980803f,0.0f}, - {-0.0979559f,-0.995191f,0.0f},{-0.195278f,-0.980748f,0.0f},{-0.290209f,-0.956963f,0.0f}, - {-0.290455f,-0.956889f,0.0f},{-0.382806f,-0.923829f,0.0f},{0.195278f,-0.980748f,0.0f}, - {0.0979559f,-0.995191f,0.0f},{0.0981573f,-0.995171f,0.0f},{-5.55112e-017f,-1.0f,0.0f}, - {-0.0981573f,-0.995171f,0.0f},{-5.20417e-017f,-1.0f,0.0f},{0.382668f,-0.923886f,0.0f}, - {0.290209f,-0.956963f,0.0f},{0.382807f,-0.923829f,0.0f},{0.194999f,-0.980803f,0.0f}, - {0.290455f,-0.956889f,0.0f},{0.555621f,-0.831435f,0.0f},{0.555711f,-0.831376f,0.0f}, - {0.634547f,-0.772884f,0.0f},{0.471474f,-0.88188f,0.0f},{0.471468f,-0.881883f,0.0f}, - {0.707144f,-0.70707f,0.0f},{0.707246f,-0.706968f,0.0f},{0.773125f,-0.634253f,0.0f}, - {0.634433f,-0.772978f,0.0f},{0.83156f,-0.555435f,0.0f},{0.773048f,-0.634347f,0.0f}, - {0.881988f,-0.471271f,0.0f},{0.831507f,-0.555514f,0.0f},{0.881956f,-0.471332f,0.0f}, - {0.923925f,-0.382573f,0.0f},{0.956966f,-0.290201f,0.0f},{0.923909f,-0.382613f,0.0f}, - {0.980794f,-0.195045f,0.0f},{0.956961f,-0.290216f,0.0f},{0.980794f,-0.195048f,0.0f}, - {0.995188f,-0.0979878f,0.0f},{0.995188f,-0.0979889f,0.0f},{-0.382668f,-0.923886f,0.0f}, - {-0.707246f,-0.706968f,0.0f},{-0.881956f,-0.471332f,0.0f},{-0.995188f,-0.0979878f,0.0f}, - {-0.984809f,-0.173642f,0.0f},{-1.0f,1.57282e-016f,0.0f},{-0.765765f,-0.64312f,0.0f}, - {-0.766272f,-0.642516f,0.0f},{-0.865946f,-0.500137f,0.0f},{-0.939669f,-0.342084f,0.0f}, - {-0.866231f,-0.499643f,0.0f},{-0.939879f,-0.341507f,0.0f},{-0.341751f,-0.939791f,0.0f}, - {-0.173343f,-0.984861f,0.0f},{-0.342031f,-0.939689f,0.0f},{-0.642133f,-0.766593f,0.0f}, - {-0.499517f,-0.866304f,0.0f},{-0.50031f,-0.865846f,0.0f},{0.342031f,-0.939689f,0.0f}, - {0.173343f,-0.984861f,0.0f},{0.173688f,-0.984801f,0.0f},{-3.70074e-017f,-1.0f,0.0f}, - {-3.23815e-017f,-1.0f,0.0f},{0.64411f,-0.764933f,0.0f},{0.642133f,-0.766593f,0.0f}, - {0.50031f,-0.865846f,0.0f},{0.499517f,-0.866304f,0.0f},{0.766272f,-0.642516f,0.0f}, - {0.865946f,-0.500137f,0.0f},{0.765765f,-0.64312f,0.0f},{0.866231f,-0.499643f,0.0f}, - {0.939669f,-0.342084f,0.0f},{0.984809f,-0.173642f,0.0f},{0.939879f,-0.341507f,0.0f}, - {0.984871f,-0.173291f,0.0f},{0.341751f,-0.939791f,0.0f},{-0.173688f,-0.984801f,0.0f}, - {-0.64411f,-0.764933f,0.0f},{-0.984871f,-0.173291f,0.0f},{2.08167e-017f,0.0f,-1.0f}, - {2.34188e-017f,0.0f,-1.0f},{-2.08167e-017f,0.0f,-1.0f},{-8.67362e-018f,0.0f,-1.0f}, - {1.0842e-017f,0.0f,-1.0f},{2.77556e-017f,0.0f,-1.0f},{0.991152f,0.132731f,1.7726e-016f}, - {0.964765f,0.263112f,-1.21714e-017f},{0.964793f,0.263012f,1.90689e-016f},{0.99116f,0.132673f,1.95676e-016f}, - {1.0f,1.97655e-016f,1.82867e-032f},{0.921309f,0.388832f,-3.40953e-016f},{0.921362f,0.388705f,-1.79812e-017f}, - {0.861557f,0.507661f,-3.1884e-016f},{0.786578f,0.617491f,0.0f},{0.786661f,0.617385f,0.0f}, - {0.861635f,0.507528f,3.65825e-016f},{0.697798f,0.716295f,-2.58237e-016f},{0.697683f,0.716407f,0.0f}, - {0.596508f,0.802607f,0.0f},{0.596433f,0.802663f,2.92927e-016f},{0.484069f,0.87503f,-8.09565e-017f}, - {0.484772f,0.874641f,8.09205e-017f},{0.363152f,0.93173f,-2.68786e-016f},{0.364466f,0.931217f,0.0f}, - {0.237459f,0.971397f,-1.79745e-016f},{0.23745f,0.9714f,0.0f},{0.106383f,0.994325f,0.0f}, - {0.99116f,-0.132673f,-6.13738e-018f},{0.991152f,-0.132731f,0.0f},{0.964765f,-0.263112f,1.82571e-017f}, - {0.964793f,-0.263012f,-2.55617e-016f},{0.921309f,-0.388832f,3.31959e-016f},{0.921362f,-0.388705f,-4.08234e-016f}, - {0.861635f,-0.507528f,-2.55532e-016f},{0.861557f,-0.507661f,1.6992e-016f},{0.786578f,-0.617491f,1.74792e-016f}, - {0.786661f,-0.617385f,3.63904e-016f},{0.697683f,-0.716407f,-9.89883e-017f},{0.697798f,-0.716295f,-4.85478e-016f}, - {0.596508f,-0.802607f,1.06491e-016f},{0.596433f,-0.802663f,-1.43821e-016f},{0.484069f,-0.87503f,8.44299e-017f}, - {0.484771f,-0.874641f,2.17811e-016f},{0.363151f,-0.93173f,-1.71313e-016f},{0.364466f,-0.931217f,3.52312e-017f}, - {0.237459f,-0.971397f,2.12946e-016f},{0.23745f,-0.9714f,-2.36429e-016f},{0.106383f,-0.994325f,0.0f}, - {0.211559f,-0.977365f,0.0f},{0.211559f,0.977365f,0.0f},{0.0f,1.11022e-016f,1.0f}, - {1.0f,-3.60822e-016f,0.0f},{0.988818f,-0.149126f,-3.65936e-016f},{0.988846f,-0.148938f,0.0f}, - {0.826061f,-0.563581f,2.57135e-016f},{0.82663f,-0.562746f,1.52957e-016f},{0.900794f,-0.434246f,-2.47032e-016f}, - {0.901683f,-0.432397f,2.46854e-016f},{0.955572f,-0.294759f,-1.22275e-016f},{0.955502f,-0.294984f,5.4583e-017f}, - {0.499989f,-0.866031f,2.99023e-016f},{0.499834f,-0.866121f,1.94153e-016f},{0.365379f,-0.930859f,0.0f}, - {0.623256f,-0.782018f,-1.74079e-016f},{0.623488f,-0.781833f,-2.60037e-016f},{-0.074795f,-0.997199f,-8.53395e-017f}, - {-0.0746326f,-0.997211f,-1.24581e-016f},{0.0746326f,-0.997211f,1.77616e-016f},{0.074795f,-0.997199f,-2.90618e-016f}, - {0.222585f,-0.974913f,1.10791e-016f},{0.222381f,-0.97496f,-1.80404e-016f},{-0.499833f,-0.866122f,-3.08968e-016f}, - {-0.365177f,-0.930938f,2.3519e-016f},{-0.365379f,-0.930859f,-6.59594e-016f},{-0.222381f,-0.97496f,3.7743e-016f}, - {-0.222585f,-0.974913f,3.77471e-016f},{-0.732917f,-0.680318f,5.87241e-017f},{-0.623488f,-0.781833f,1.35626e-016f}, - {-0.733034f,-0.680192f,-1.83291e-016f},{-0.49999f,-0.866031f,7.951e-017f},{-0.623256f,-0.782018f,7.67051e-017f}, - {-0.82663f,-0.562746f,1.92502e-016f},{-0.826061f,-0.563581f,-1.66735e-016f},{-0.901683f,-0.432397f,-1.42043e-016f}, - {-0.900794f,-0.434246f,-2.48163e-016f},{-0.955502f,-0.294984f,9.93362e-017f},{-0.955572f,-0.294759f,2.96611e-017f}, - {-0.988846f,-0.148938f,-6.23501e-017f},{-0.988818f,-0.149126f,4.18655e-017f},{-1.0f,2.77556e-017f,0.0f}, - {0.365177f,-0.930938f,6.75713e-017f},{0.733034f,-0.680192f,1.35639e-016f},{1.11022e-016f,0.0f,1.0f}, - {2.22045e-016f,0.0f,1.0f},{-1.11022e-016f,0.0f,1.0f},{-2.22045e-016f,0.0f,1.0f}, - {0.978165f,-0.20783f,-8.09482e-019f},{0.978254f,-0.207408f,-8.06289e-019f},{0.50141f,-0.86521f,-7.86e-017f}, - {0.670096f,-0.742274f,1.47663e-017f},{0.66887f,-0.743379f,1.38533e-016f},{0.809606f,-0.586974f,2.23009e-019f}, - {0.913862f,-0.406026f,-1.6746e-016f},{0.913543f,-0.406743f,-1.67403e-016f},{0.105163f,-0.994455f,9.95328e-018f}, - {0.104013f,-0.994576f,6.55702e-017f},{-0.104013f,-0.994576f,3.02706e-017f},{0.499433f,-0.866353f,-3.2041e-017f}, - {0.308272f,-0.951298f,8.49254e-017f},{0.310578f,-0.950548f,-4.50449e-017f},{-0.310578f,-0.950548f,4.10929e-017f}, - {-0.50141f,-0.86521f,6.38835e-017f},{-0.499433f,-0.866353f,-5.80911e-017f},{-0.308272f,-0.951298f,1.12332e-016f}, - {-0.105163f,-0.994455f,-7.34256e-018f},{-0.670096f,-0.742274f,-2.88671e-017f},{-0.809606f,-0.586974f,1.0557e-016f}, - {-0.808947f,-0.587881f,-2.02787e-016f},{-0.66887f,-0.743379f,-8.46456e-017f},{-0.913543f,-0.406743f,-2.46108e-016f}, - {-0.913862f,-0.406026f,1.48066e-016f},{-0.978254f,-0.207408f,-1.1019e-016f},{-0.978165f,-0.20783f,2.68975e-016f}, - {-1.0f,-4.44089e-016f,0.0f},{0.808947f,-0.587881f,-3.12756e-016f},{0.0f,-2.22045e-016f,1.0f}, - {0.0f,4.44089e-016f,1.0f},{0.0f,-4.44089e-016f,1.0f},{0.0f,2.22045e-016f,1.0f}, - {0.0f,1.66533e-016f,1.0f},{0.0f,6.245e-017f,1.0f},{0.0f,-1.11022e-016f,1.0f}, - {0.0f,-3.1225e-017f,1.0f},{0.0f,-1.94289e-016f,1.0f},{0.0f,1.38778e-016f,1.0f}, - {0.0f,6.93889e-017f,1.0f},{0.380627f,0.924729f,-2.41539e-016f},{0.254521f,0.967067f,-1.78943e-016f}, - {0.254621f,0.967041f,-1.31824e-016f},{0.380681f,0.924706f,-3.4221e-016f},{0.5f,0.866025f,8.01234e-017f}, - {0.123916f,0.992293f,-4.58581e-017f},{0.124053f,0.992276f,2.06562e-016f},{-0.00886925f,0.999961f,0.0f}, - {-0.141474f,0.989942f,0.0f},{-0.141341f,0.989961f,3.66359e-016f},{-0.00871489f,0.999962f,1.61258e-018f}, - {-0.271431f,0.962458f,0.0f},{-0.271585f,0.962414f,0.0f},{-0.396824f,0.917895f,-3.39689e-016f}, - {-0.39691f,0.917858f,0.0f},{-0.515764f,0.856731f,-5.07925e-016f},{-0.515075f,0.857145f,3.17207e-016f}, - {-0.625326f,0.780364f,-2.88792e-016f},{-0.624225f,0.781245f,5.81092e-017f},{-0.722525f,0.691345f,-2.67388e-016f}, - {-0.722532f,0.691337f,5.11692e-016f},{-0.807919f,0.589293f,0.0f},{0.610478f,0.792033f,3.83186e-016f}, - {0.610525f,0.791997f,-2.59519e-016f},{0.710244f,0.703955f,7.17582e-016f},{0.710171f,0.704029f,-1.32545e-016f}, - {0.797393f,0.603461f,4.68602e-017f},{0.797309f,0.603571f,-1.40638e-016f},{0.87035f,0.492434f,-6.88718e-018f}, - {0.870426f,0.492299f,-2.01326e-016f},{0.928052f,0.372451f,4.36423e-017f},{0.928002f,0.372576f,-6.42341e-017f}, - {0.969268f,0.246008f,-7.27758e-017f},{0.969228f,0.246163f,-1.13338e-016f},{0.993332f,0.115288f,-1.39459e-017f}, - {0.993343f,0.115195f,7.5086e-017f},{0.999833f,-0.0182988f,-4.93539e-017f},{0.999847f,-0.017496f,-2.2592e-017f}, - {0.988478f,-0.151367f,6.80819e-017f},{0.98869f,-0.149972f,-2.29484e-016f},{0.959985f,-0.280053f,-4.92036e-018f}, - {0.959982f,-0.280063f,-1.73501e-017f},{0.914302f,-0.405032f,0.0f},{0.952202f,-0.305468f,0.0f}, - {-0.740644f,0.671898f,0.0f},{0.623556f,0.781778f,3.18161e-016f},{0.623408f,0.781897f,-5.76768e-017f}, - {0.901106f,0.4336f,1.21917e-016f},{0.900667f,0.43451f,1.19137e-016f},{0.826465f,0.562987f,3.82317e-017f}, - {0.825308f,0.564682f,0.0f},{0.733055f,0.68017f,3.39106e-017f},{0.733215f,0.679997f,-1.83813e-016f}, - {1.0f,-1.21766e-005f,-2.31274e-017f},{1.0f,-0.000192142f,6.946e-017f},{0.988837f,-0.149002f,1.05584e-016f}, - {0.955631f,0.294565f,9.87124e-017f},{0.988875f,0.148747f,-2.75237e-017f},{0.988831f,0.14904f,-7.33206e-017f}, - {0.826202f,-0.563374f,-1.79826e-016f},{0.826294f,-0.563239f,-7.55524e-017f},{0.900926f,-0.433972f,1.86017e-016f}, - {0.900997f,-0.433825f,-4.16795e-017f},{0.955592f,-0.294693f,-3.9043e-017f},{0.955531f,-0.294892f,-1.37788e-016f}, - {0.500166f,-0.865929f,2.67563e-018f},{0.623628f,-0.781722f,1.95335e-016f},{0.623458f,-0.781857f,-1.87816e-016f}, - {0.733149f,-0.680068f,-2.40741e-016f},{0.733007f,-0.680221f,1.4282e-016f},{0.222715f,-0.974884f,6.76696e-018f}, - {0.365343f,-0.930873f,-1.59166e-016f},{0.222546f,-0.974922f,8.82681e-017f},{0.50001f,-0.866019f,-4.87352e-017f}, - {0.365619f,-0.930764f,4.34431e-017f},{0.0740373f,-0.997256f,-5.34897e-016f},{0.0750446f,-0.99718f,1.55626e-017f}, - {-0.0763749f,-0.997079f,-2.39932e-016f},{-0.0743287f,-0.997234f,1.17298e-016f},{-0.222287f,-0.974981f,5.54047e-016f}, - {-0.222517f,-0.974929f,-4.69812e-016f},{-0.365439f,-0.930835f,2.29949e-016f},{-0.365262f,-0.930905f,-1.2259e-016f}, - {0.988805f,-0.149216f,0.0f},{0.95558f,0.294731f,0.0f},{-1.66533e-016f,0.0f,1.0f}, - {8.32667e-017f,0.0f,1.0f},{-1.38778e-016f,0.0f,1.0f},{-1.14492e-016f,0.0f,1.0f}, - {5.55112e-017f,0.0f,1.0f},{1.79544e-016f,0.0f,1.0f},{-6.50521e-017f,0.0f,1.0f}, - {-8.32667e-017f,0.0f,1.0f},{1.31839e-016f,0.0f,1.0f},{0.669069f,0.7432f,7.56184e-017f}, - {0.668748f,0.743489f,-1.99445e-016f},{0.999999f,0.00162868f,-1.50684e-019f},{0.977876f,0.209183f,0.0f}, - {0.97822f,0.207569f,1.9204e-017f},{0.913137f,0.407652f,-1.59913e-016f},{0.80856f,0.588414f,0.0f}, - {0.809021f,0.58778f,0.0f},{0.913805f,-0.406154f,3.28816e-017f},{0.913335f,-0.40721f,7.53489e-017f}, - {0.809321f,-0.587366f,2.10733e-016f},{1.0f,-0.000654662f,-4.60776e-017f},{0.978488f,-0.206306f,-7.63485e-017f}, - {0.66791f,-0.744242f,7.23873e-017f},{0.498589f,-0.866839f,-2.11766e-016f},{0.500567f,-0.865698f,2.02889e-016f}, - {0.669713f,-0.74262f,1.25295e-016f},{0.808642f,-0.588301f,5.44288e-017f},{0.30778f,-0.951458f,-1.03566e-016f}, - {0.103531f,-0.994626f,-3.39094e-016f},{0.104646f,-0.99451f,-1.43466e-016f},{0.30935f,-0.950948f,-2.09359e-017f}, - {-0.104522f,-0.994523f,6.2347e-017f},{-0.105302f,-0.99444f,-2.24253e-016f},{-0.309506f,-0.950897f,-2.31848e-016f}, - {-0.309096f,-0.951031f,1.16375e-016f},{0.0f,-2.08167e-016f,1.0f},{0.0f,-6.6116e-017f,1.0f}, - {0.0f,-2.15106e-016f,1.0f},{0.0f,-1.66533e-016f,1.0f},{0.0f,-1.00614e-016f,1.0f}, - {0.0f,4.33681e-017f,1.0f},{0.0f,7.56773e-017f,1.0f},{0.0f,1.30104e-018f,1.0f}, - {0.0f,4.16334e-017f,1.0f},{-0.610525f,0.791997f,-2.36613e-016f},{-0.710244f,0.703955f,3.90774e-016f}, - {-0.710171f,0.704029f,-1.1366e-018f},{-0.610478f,0.792033f,-3.15997e-016f},{-0.5f,0.866025f,5.73259e-016f}, - {-0.797393f,0.603461f,5.20424e-016f},{-0.797309f,0.603571f,-7.37659e-017f},{-0.870426f,0.492299f,2.11262e-017f}, - {-0.928052f,0.372451f,-3.61531e-016f},{-0.928002f,0.372576f,3.09595e-016f},{-0.87035f,0.492434f,1.01714e-016f}, - {-0.969228f,0.246163f,-1.79343e-016f},{-0.969268f,0.246008f,0.0f},{-0.993332f,0.115288f,-2.26469e-016f}, - {-0.993343f,0.115195f,-2.26436e-016f},{-0.999833f,-0.0182988f,0.0f},{-0.999847f,-0.017496f,0.0f}, - {-0.988478f,-0.151367f,0.0f},{-0.98869f,-0.149972f,-2.93946e-016f},{-0.959985f,-0.280053f,0.0f}, - {-0.959982f,-0.280063f,-2.07288e-016f},{-0.914302f,-0.405032f,0.0f},{-0.380681f,0.924706f,4.10153e-016f}, - {-0.380627f,0.924729f,1.00679e-016f},{-0.254521f,0.967067f,1.8483e-016f},{-0.254621f,0.967041f,7.06716e-017f}, - {-0.123916f,0.992293f,2.86613e-017f},{-0.124053f,0.992276f,1.20497e-016f},{0.00871499f,0.999962f,2.77948e-016f}, - {0.00886925f,0.999961f,-3.2052e-016f},{0.141474f,0.989942f,1.92975e-016f},{0.141341f,0.989961f,4.7266e-016f}, - {0.271585f,0.962414f,-2.20758e-016f},{0.271431f,0.962458f,1.54073e-017f},{0.396824f,0.917895f,2.78137e-017f}, - {0.39691f,0.917858f,1.25083e-016f},{0.515764f,0.856731f,1.21216e-016f},{0.515076f,0.857145f,-1.12882e-016f}, - {0.625326f,0.780363f,3.65282e-016f},{0.624225f,0.781245f,6.22071e-016f},{0.722525f,0.691345f,-8.52362e-016f}, - {0.722532f,0.691337f,-2.70972e-016f},{0.807919f,0.589293f,0.0f},{0.740644f,0.671898f,0.0f}, - {-0.952202f,-0.305468f,0.0f},{-0.365262f,0.930905f,0.0f},{0.0750445f,0.99718f,-9.22577e-017f}, - {-0.0763749f,0.997079f,-7.81162e-017f},{-0.222517f,0.974929f,-9.0199e-017f},{-0.222287f,0.974981f,0.0f}, - {0.500011f,0.866019f,-3.57684e-016f},{0.500166f,0.865929f,-5.24921e-017f},{0.623458f,0.781857f,-3.03062e-016f}, - {0.222715f,0.974884f,-8.2421e-017f},{0.365619f,0.930764f,-1.1071e-016f},{0.365343f,0.930873f,-4.30615e-017f}, - {0.900997f,0.433825f,1.76752e-016f},{0.900926f,0.433972f,1.30891e-017f},{0.826294f,0.563239f,0.0f}, - {0.826202f,0.563374f,5.21225e-017f},{0.733007f,0.680221f,9.92833e-017f},{0.733149f,0.680068f,-1.7203e-016f}, - {1.0f,0.000192253f,2.31296e-016f},{0.988805f,0.149217f,1.37224e-016f},{0.988837f,0.149001f,-7.84832e-017f}, - {0.955531f,0.294892f,2.07369e-016f},{0.955592f,0.294693f,-1.03241e-017f},{0.955631f,-0.294565f,-1.87008e-016f}, - {0.988831f,-0.14904f,-4.18312e-017f},{0.95558f,-0.294731f,-2.50979e-016f},{1.0f,1.20654e-005f,1.85036e-016f}, - {0.988875f,-0.148747f,4.43526e-016f},{0.900667f,-0.43451f,-2.40435e-016f},{0.901106f,-0.4336f,-3.36518e-017f}, - {0.825308f,-0.564682f,-5.29981e-017f},{0.826465f,-0.562987f,-2.07468e-016f},{0.733215f,-0.679997f,1.78805e-016f}, - {0.733055f,-0.68017f,5.50139e-018f},{0.623408f,-0.781897f,1.42876e-016f},{0.623556f,-0.781778f,7.87981e-017f}, - {0.623627f,0.781722f,1.15394e-016f},{0.222546f,0.974922f,4.11793e-017f},{-5.55112e-017f,0.0f,1.0f}, - {1.02349e-016f,0.0f,1.0f},{-4.85723e-017f,0.0f,1.0f},{4.85723e-017f,0.0f,1.0f}, - {-9.71445e-017f,0.0f,1.0f},{-7.22079e-017f,0.0f,1.0f},{-8.23994e-017f,0.0f,1.0f}, - {-6.93889e-017f,0.0f,1.0f},{-0.309096f,0.951031f,-2.85971e-017f},{-0.309506f,0.950897f,-2.86351e-017f}, - {0.498589f,0.866839f,2.17532e-016f},{0.30778f,0.951458f,0.0f},{0.30935f,0.950948f,-1.16601e-016f}, - {0.103531f,0.994626f,-9.57856e-018f},{-0.105302f,0.99444f,0.0f},{-0.104522f,0.994523f,9.6702e-018f}, - {0.808642f,0.588301f,1.46265e-016f},{0.809321f,0.587366f,-1.69037e-017f},{0.500567f,0.865698f,2.99122e-016f}, - {0.669713f,0.74262f,5.52155e-017f},{0.66791f,0.744242f,-2.06569e-016f},{0.978488f,0.206306f,-4.52641e-017f}, - {0.999999f,-0.00162857f,1.61907e-016f},{1.0f,0.000654662f,5.80361e-017f},{0.977984f,0.208678f,9.65329e-018f}, - {0.913805f,0.406154f,4.2272e-017f},{0.977876f,-0.209184f,5.66326e-017f},{0.913137f,-0.407652f,-9.05162e-018f}, - {0.913594f,-0.406629f,-7.7272e-017f},{0.97822f,-0.207569f,-1.86995e-016f},{0.809021f,-0.58778f,-8.44062e-017f}, - {0.80856f,-0.588414f,-1.30045e-016f},{0.668748f,-0.743489f,2.63395e-016f},{0.669069f,-0.7432f,3.8159e-017f}, - {0.104646f,0.99451f,0.0f},{0.0f,-6.245e-017f,1.0f},{0.0f,3.05311e-016f,1.0f}, - {0.0f,-2.498e-016f,1.0f},{0.0f,3.33067e-016f,1.0f},{0.0f,-5.89806e-017f,1.0f}, - {0.0f,8.32667e-017f,1.0f},{0.0f,-9.71445e-017f,1.0f},{0.0f,9.02056e-017f,1.0f}, - {0.0f,7.84962e-017f,1.0f},{0.0f,-7.98865e-017f,1.0f},{0.0f,-6.50521e-018f,1.0f}, - {0.0f,6.07153e-017f,1.0f},{0.0f,7.63278e-017f,1.0f},{0.0f,1.04083e-016f,1.0f}, - {0.0f,-8.32667e-017f,1.0f},{-0.991152f,-0.132731f,0.0f},{-0.964765f,-0.263112f,1.90689e-016f}, - {-0.964793f,-0.263012f,-3.44878e-016f},{-0.99116f,-0.132673f,-1.83401e-016f},{-1.0f,1.18593e-015f,-3.70074e-016f}, - {-1.0f,1.0871e-015f,-3.70074e-016f},{-0.921309f,-0.388832f,3.76927e-016f},{-0.921362f,-0.388705f,-6.81945e-016f}, - {-0.861557f,-0.507661f,-4.69681e-017f},{-0.786578f,-0.617491f,2.91092e-016f},{-0.786661f,-0.617385f,5.25126e-016f}, - {-0.861635f,-0.507528f,4.69558e-017f},{-0.697798f,-0.716295f,-1.91966e-016f},{-0.697683f,-0.716407f,-3.24475e-016f}, - {-0.596508f,-0.802607f,0.0f},{-0.596433f,-0.802663f,-7.42612e-017f},{-0.484069f,-0.87503f,-8.09565e-017f}, - {-0.484772f,-0.874641f,8.09205e-017f},{-0.363152f,-0.93173f,0.0f},{-0.364466f,-0.931217f,1.7231e-016f}, - {-0.237459f,-0.971397f,0.0f},{-0.23745f,-0.9714f,-3.99709e-018f},{-0.106383f,-0.994325f,0.0f}, - {-0.99116f,0.132673f,6.13738e-018f},{-0.991152f,0.132731f,7.336e-016f},{-0.964765f,0.263112f,-1.84603e-016f}, - {-0.964793f,0.263012f,-1.07511e-016f},{-0.921309f,0.388832f,3.22966e-016f},{-0.921362f,0.388705f,3.99244e-016f}, - {-0.861635f,0.507528f,-1.40598e-016f},{-0.861557f,0.507661f,-2.16888e-016f},{-0.786578f,0.617491f,-1.02699e-016f}, - {-0.786661f,0.617385f,-3.86014e-016f},{-0.697683f,0.716407f,1.92347e-016f},{-0.697798f,0.716295f,3.33219e-016f}, - {-0.596508f,0.802607f,1.9824e-016f},{-0.596433f,0.802663f,4.53374e-016f},{-0.484069f,0.87503f,-1.87889e-016f}, - {-0.484771f,0.874641f,3.75811e-016f},{-0.363151f,0.93173f,1.53169e-016f},{-0.364466f,0.931217f,3.45313e-016f}, - {-0.237459f,0.971397f,7.34234e-017f},{-0.23745f,0.9714f,-2.07432e-017f},{-0.106383f,0.994325f,0.0f}, - {-0.211559f,0.977365f,0.0f},{-0.211559f,-0.977365f,0.0f},{-0.988818f,0.149126f,-2.10562e-016f}, - {-0.988846f,0.148938f,-1.82973e-016f},{-0.826061f,0.563581f,-4.09987e-016f},{-0.82663f,0.562746f,9.76567e-017f}, - {-0.900794f,0.434246f,-1.6668e-016f},{-0.901683f,0.432397f,2.46854e-016f},{-0.955572f,0.294759f,-2.85899e-016f}, - {-0.955502f,0.294984f,1.76803e-016f},{-0.499989f,0.866031f,4.62583e-017f},{-0.499834f,0.866121f,-3.32885e-016f}, - {-0.365379f,0.930859f,-3.41265e-016f},{-0.732917f,0.680318f,-9.73263e-018f},{-0.623256f,0.782018f,7.23512e-017f}, - {-0.623488f,0.781833f,1.44668e-016f},{0.074795f,0.997199f,-3.92098e-017f},{0.0746326f,0.997211f,2.62972e-016f}, - {-0.0746326f,0.997211f,-3.29817e-016f},{-0.074795f,0.997199f,3.22899e-017f},{-0.222585f,0.974913f,-2.70593e-016f}, - {-0.222381f,0.97496f,-3.32329e-016f},{0.499833f,0.866122f,3.99162e-016f},{0.365177f,0.930938f,-1.96765e-016f}, - {0.365379f,0.930859f,1.22944e-016f},{0.222381f,0.97496f,1.00489e-016f},{0.222585f,0.974913f,-2.00988e-016f}, - {0.732917f,0.680318f,-2.14863e-016f},{0.623488f,0.781833f,-1.75456e-016f},{0.733034f,0.680192f,2.66388e-016f}, - {0.49999f,0.866031f,-2.0031e-017f},{0.623256f,0.782018f,9.73741e-017f},{0.82663f,0.562746f,-2.18645e-016f}, - {0.826061f,0.563581f,1.09908e-016f},{0.901683f,0.432397f,4.54617e-017f},{0.900794f,0.434246f,2.11672e-017f}, - {0.955502f,0.294984f,5.1766e-017f},{0.955572f,0.294759f,1.0035e-016f},{0.988846f,0.148938f,-1.13814e-016f}, - {0.988818f,0.149126f,4.48123e-017f},{1.0f,-1.41553e-015f,0.0f},{-0.365177f,0.930938f,1.01357e-016f}, - {-0.733034f,0.680192f,-1.35639e-016f},{-2.77556e-017f,0.0f,1.0f},{-1.04083e-016f,0.0f,1.0f}, - {6.41848e-017f,0.0f,1.0f},{5.09575e-017f,0.0f,1.0f},{4.16334e-017f,0.0f,1.0f}, - {6.93889e-017f,0.0f,1.0f},{-1.0f,5.27356e-016f,0.0f},{-0.978165f,0.20783f,-1.81712e-016f}, - {-0.978254f,0.207408f,-7.34724e-019f},{-0.50141f,0.86521f,5.85773e-017f},{-0.670096f,0.742274f,1.03122e-017f}, - {-0.66887f,0.743379f,1.68759e-016f},{-0.809606f,0.586974f,1.43405e-016f},{-0.913862f,0.406026f,-1.65029e-016f}, - {-0.913543f,0.406743f,4.15074e-018f},{-0.105163f,0.994455f,2.55483e-017f},{-0.104013f,0.994576f,2.55461e-017f}, - {0.104013f,0.994576f,1.39018e-017f},{-0.499433f,0.866353f,5.88395e-017f},{-0.308272f,0.951298f,8.42303e-017f}, - {-0.310578f,0.950548f,-2.26885e-018f},{0.310578f,0.950548f,8.17184e-017f},{0.50141f,0.86521f,3.88522e-017f}, - {0.499433f,0.866353f,-1.92414e-017f},{0.308272f,0.951298f,1.58688e-017f},{0.105163f,0.994455f,-2.22445e-017f}, - {0.670096f,0.742274f,1.34233e-016f},{0.809606f,0.586974f,2.91734e-016f},{0.808947f,0.587881f,-2.32496e-016f}, - {0.66887f,0.743379f,-2.76854e-016f},{0.913543f,0.406743f,-3.89617e-017f},{0.913862f,0.406026f,1.84203e-017f}, - {0.978254f,0.207408f,-4.74736e-018f},{0.978165f,0.20783f,5.52614e-017f},{-0.808947f,0.587881f,-1.55945e-016f}, - {-1.0f,6.66134e-016f,0.0f},{0.0f,4.64039e-017f,1.0f},{-0.380627f,-0.924729f,1.71109e-016f}, - {-0.254521f,-0.967067f,-5.83926e-016f},{-0.254621f,-0.967041f,-4.71144e-017f},{-0.380681f,-0.924706f,-3.02246e-017f}, - {-0.5f,-0.866025f,-4.62593e-017f},{-0.123916f,-0.992293f,2.0654e-016f},{-0.124053f,-0.992276f,-2.06562e-016f}, - {0.00886925f,-0.999961f,-3.28228e-018f},{0.141474f,-0.989942f,-5.23559e-017f},{0.141341f,-0.989961f,3.66359e-016f}, - {0.00871489f,-0.999962f,3.68448e-016f},{0.271431f,-0.962458f,-3.56181e-016f},{0.271585f,-0.962414f,3.56165e-016f}, - {0.396824f,-0.917895f,0.0f},{0.39691f,-0.917858f,1.46886e-016f},{0.515764f,-0.856731f,-3.17054e-016f}, - {0.515075f,-0.857145f,-3.17207e-016f},{0.625326f,-0.780364f,0.0f},{0.624225f,-0.781245f,5.81092e-017f}, - {0.722525f,-0.691345f,0.0f},{0.722532f,-0.691337f,5.11692e-016f},{0.807919f,-0.589293f,0.0f}, - {-0.610478f,-0.792033f,5.52628e-016f},{-0.610525f,-0.791997f,-1.67896e-017f},{-0.710244f,-0.703955f,1.32004e-016f}, - {-0.710171f,-0.704029f,6.45675e-017f},{-0.797393f,-0.603461f,-1.76465e-016f},{-0.797309f,-0.603571f,3.34015e-016f}, - {-0.87035f,-0.492434f,-1.7694e-016f},{-0.870426f,-0.492299f,-1.13867e-016f},{-0.928052f,-0.372451f,-7.32957e-017f}, - {-0.928002f,-0.372576f,1.63892e-016f},{-0.969268f,-0.246008f,3.96598e-017f},{-0.969228f,-0.246163f,-1.20102e-016f}, - {-0.993332f,-0.115288f,2.08517e-016f},{-0.993343f,-0.115195f,-6.69385e-017f},{-0.999833f,0.0182988f,-8.64086e-017f}, - {-0.999847f,0.017496f,-7.9525e-017f},{-0.988478f,0.151367f,1.19056e-016f},{-0.98869f,0.149972f,-1.73927e-016f}, - {-0.959985f,0.280053f,-5.6139e-017f},{-0.959982f,0.280063f,-6.67141e-017f},{-0.914302f,0.405032f,0.0f}, - {-0.952202f,0.305468f,2.11431e-016f},{-0.952202f,0.305468f,1.05716e-016f},{0.740644f,-0.671898f,0.0f}, - {-0.623556f,-0.781778f,2.89316e-016f},{-0.900667f,-0.43451f,2.05393e-016f},{-0.826465f,-0.562987f,0.0f}, - {-0.825308f,-0.564682f,-1.32618e-016f},{-0.733055f,-0.68017f,0.0f},{-1.0f,1.21766e-005f,-6.93822e-017f}, - {-1.0f,0.000192142f,1.15648e-016f},{-0.988837f,0.149002f,1.41928e-016f},{-0.988875f,-0.148747f,1.64758e-016f}, - {-0.988831f,-0.14904f,1.46641e-016f},{-0.826202f,0.563374f,-1.42465e-016f},{-0.826294f,0.563239f,-2.46664e-016f}, - {-0.900926f,0.433972f,-1.44341e-016f},{-0.900997f,0.433825f,-1.8293e-016f},{-0.955592f,0.294693f,2.21025e-017f}, - {-0.955531f,0.294892f,-8.84043e-017f},{-0.500166f,0.865929f,8.54658e-017f},{-0.623628f,0.781722f,1.15799e-016f}, - {-0.623458f,0.781857f,-9.38496e-017f},{-0.733149f,0.680068f,-2.82023e-016f},{-0.733007f,0.680221f,2.48139e-016f}, - {-0.222715f,0.974884f,2.24527e-016f},{-0.365343f,0.930873f,-4.86352e-016f},{-0.222546f,0.974922f,-2.35147e-016f}, - {-0.50001f,0.866019f,-4.57607e-016f},{-0.365619f,0.930764f,-7.09272e-017f},{-0.0740373f,0.997256f,-8.24722e-016f}, - {-0.0750446f,0.99718f,1.54166e-016f},{0.0763749f,0.997079f,-4.98902e-017f},{0.0743287f,0.997234f,5.83357e-016f}, - {0.222287f,0.974981f,9.80286e-017f},{0.222517f,0.974929f,1.42064e-016f},{0.365439f,0.930835f,5.09861e-016f}, - {0.365262f,0.930905f,1.5733e-016f},{-0.988805f,0.149216f,-1.19093e-016f},{1.66533e-016f,0.0f,1.0f}, - {-0.669069f,-0.7432f,-6.19013e-017f},{-0.668748f,-0.743489f,1.37573e-016f},{-0.999999f,-0.00162868f,4.62592e-017f}, - {-0.977876f,-0.209183f,-3.87067e-017f},{-0.97822f,-0.207569f,3.8408e-017f},{-0.913137f,-0.407652f,-8.44822e-017f}, - {-0.80856f,-0.588414f,-7.48068e-017f},{-0.809021f,-0.58778f,1.83611e-016f},{-0.913805f,0.406154f,1.1273e-016f}, - {-0.913335f,0.40721f,1.17599e-016f},{-0.809321f,0.587366f,9.17809e-017f},{-1.0f,0.000654662f,4.63199e-017f}, - {-0.977984f,0.208678f,-4.52409e-017f},{-0.978488f,0.206306f,0.0f},{-0.66791f,0.744242f,2.59976e-016f}, - {-0.498589f,0.866839f,3.03496e-016f},{-0.500567f,0.865698f,-2.80802e-016f},{-0.669713f,0.74262f,-4.64706e-017f}, - {-0.808642f,0.588301f,-6.29396e-017f},{-0.30778f,0.951458f,-1.52132e-017f},{-0.103531f,0.994626f,-7.81241e-017f}, - {-0.104646f,0.99451f,-2.59082e-016f},{-0.30935f,0.950948f,-3.73917e-016f},{0.104522f,0.994523f,1.24387e-016f}, - {0.105302f,0.99444f,-4.17065e-017f},{0.309506f,0.950897f,1.46431e-016f},{0.309096f,0.951031f,1.48399e-016f}, - {-0.913594f,-0.406629f,8.45244e-017f},{0.610525f,-0.791997f,-1.1297e-016f},{0.710244f,-0.703955f,2.60516e-016f}, - {0.710171f,-0.704029f,3.2511e-016f},{0.610478f,-0.792033f,4.06072e-016f},{0.5f,-0.866025f,2.29636e-016f}, - {0.797393f,-0.603461f,7.37737e-017f},{0.797309f,-0.603571f,7.37659e-017f},{0.870426f,-0.492299f,-2.62718e-016f}, - {0.928052f,-0.372451f,-5.19725e-017f},{0.928002f,-0.372576f,-8.58574e-017f},{0.87035f,-0.492434f,2.03427e-016f}, - {0.969228f,-0.246163f,2.70442e-016f},{0.969268f,-0.246008f,9.10412e-017f},{0.993332f,-0.115288f,-4.26652e-017f}, - {0.993343f,-0.115195f,0.0f},{0.999833f,0.0182988f,-1.35438e-017f},{0.999847f,0.017496f,1.97958e-016f}, - {0.988478f,0.151367f,0.0f},{0.98869f,0.149972f,-2.93946e-016f},{0.959985f,0.280053f,0.0f}, - {0.959982f,0.280063f,-2.07288e-016f},{0.914302f,0.405032f,0.0f},{0.380681f,-0.924706f,-1.76101e-017f}, - {0.380627f,-0.924729f,-1.38377e-016f},{0.254521f,-0.967067f,-1.76609e-017f},{0.254621f,-0.967041f,5.8393e-016f}, - {0.123916f,-0.992293f,1.06136e-016f},{0.124053f,-0.992276f,3.32784e-016f},{-0.00871499f,-0.999962f,-1.40587e-016f}, - {-0.00886925f,-0.999961f,-2.79596e-016f},{-0.141474f,-0.989942f,-3.33647e-016f},{-0.141341f,-0.989961f,2.25705e-016f}, - {-0.271585f,-0.962414f,-4.06693e-016f},{-0.271431f,-0.962458f,-1.92792e-016f},{-0.396824f,-0.917895f,2.45566e-016f}, - {-0.39691f,-0.917858f,3.42831e-016f},{-0.515764f,-0.856731f,3.68103e-016f},{-0.515076f,-0.857145f,-2.27015e-016f}, - {-0.625326f,-0.780363f,1.50692e-016f},{-0.624225f,-0.781245f,7.84799e-016f},{-0.722525f,-0.691345f,-6.59161e-016f}, - {-0.722532f,-0.691337f,-3.47879e-016f},{-0.807919f,-0.589293f,0.0f},{-0.740644f,-0.671898f,0.0f}, - {0.952202f,0.305468f,0.0f},{0.365262f,-0.930905f,0.0f},{-0.0750445f,-0.99718f,0.0f}, - {-0.0740373f,-0.997255f,-9.22647e-017f},{0.0743287f,-0.997234f,-1.37536e-017f},{0.0763749f,-0.997079f,9.22484e-017f}, - {0.222517f,-0.974929f,0.0f},{-0.500166f,-0.865929f,4.00573e-017f},{-0.623458f,-0.781857f,0.0f}, - {-0.222715f,-0.974884f,-4.12105e-017f},{-0.365619f,-0.930764f,-8.6113e-017f},{-0.365343f,-0.930873f,-2.45868e-016f}, - {-0.900997f,-0.433825f,1.89872e-016f},{-0.900926f,-0.433972f,-2.26931e-016f},{-0.826294f,-0.563239f,6.342e-017f}, - {-0.826202f,-0.563374f,-1.025e-016f},{-0.733007f,-0.680221f,2.34917e-016f},{-0.733149f,-0.680068f,4.38439e-016f}, - {-1.0f,-0.000192253f,-1.61925e-016f},{-0.988805f,-0.149217f,-6.57636e-016f},{-0.988837f,-0.149001f,-2.20099e-016f}, - {-0.955531f,-0.294892f,2.17468e-016f},{-0.955592f,-0.294693f,4.48866e-016f},{-0.955631f,0.294565f,-2.04833e-016f}, - {-0.988831f,0.14904f,5.69462e-017f},{-0.95558f,0.294731f,2.37133e-016f},{-1.0f,-1.20654e-005f,1.85036e-016f}, - {-0.988875f,0.148747f,-7.37777e-017f},{-0.900667f,0.43451f,9.83788e-017f},{-0.901106f,0.4336f,-8.21154e-017f}, - {-0.825308f,0.564682f,-4.24488e-017f},{-0.826465f,0.562987f,-1.95228e-016f},{-0.733215f,0.679997f,9.80932e-017f}, - {-0.733055f,0.68017f,-2.6778e-016f},{-0.623408f,0.781897f,7.95767e-017f},{-0.623556f,0.781778f,-2.53269e-016f}, - {-0.623627f,-0.781722f,2.30789e-016f},{-0.222546f,-0.974922f,9.01984e-017f},{0.309096f,-0.951031f,1.47379e-016f}, - {0.309506f,-0.950897f,1.75951e-016f},{-0.498589f,-0.866839f,5.71343e-017f},{-0.30778f,-0.951458f,5.69507e-017f}, - {-0.30935f,-0.950948f,0.0f},{-0.103531f,-0.994626f,1.74464e-016f},{0.105302f,-0.99444f,-1.84008e-016f}, - {0.104522f,-0.994523f,0.0f},{-0.808642f,-0.588301f,5.77928e-017f},{-0.809321f,-0.587366f,-2.0535e-017f}, - {-0.913335f,-0.40721f,-2.79887e-017f},{-0.500567f,-0.865698f,1.3703e-016f},{-0.669713f,-0.74262f,1.37412e-016f}, - {-0.66791f,-0.744242f,-9.97533e-017f},{-0.978488f,-0.206306f,8.45297e-017f},{-0.999999f,0.00162857f,6.92005e-017f}, - {-1.0f,-0.000654662f,-8.10446e-017f},{-0.977984f,-0.208678f,-1.83989e-016f},{-0.913805f,-0.406154f,1.59697e-016f}, - {-0.977876f,0.209184f,-1.85957e-017f},{-0.913137f,0.407652f,6.751e-017f},{-0.913594f,0.406629f,-1.81309e-016f}, - {-0.97822f,0.207569f,1.21186e-016f},{-0.809021f,0.58778f,4.45898e-017f},{-0.80856f,0.588414f,-1.89321e-016f}, - {-0.668748f,0.743489f,-2.18469e-016f},{-0.669069f,0.7432f,-4.4842e-017f},{-0.104646f,-0.99451f,-1.93703e-016f}, - {0.99153f,-0.129881f,0.0f},{1.0f,9.4369e-017f,0.0f},{0.991435f,-0.130601f,0.0f}, - {0.866063f,-0.499936f,0.0f},{0.923898f,-0.38264f,0.0f},{0.865926f,-0.500171f,0.0f}, - {0.965902f,-0.258907f,0.0f},{0.966265f,-0.257551f,0.0f},{0.608701f,-0.7934f,0.0f}, - {0.499909f,-0.866078f,0.0f},{0.608898f,-0.793249f,0.0f},{0.70708f,-0.707134f,0.0f}, - {0.707182f,-0.707032f,0.0f},{0.793414f,-0.608682f,0.0f},{0.130634f,-0.991431f,0.0f}, - {0.258991f,-0.96588f,0.0f},{0.130461f,-0.991453f,0.0f},{0.382876f,-0.9238f,0.0f}, - {0.382576f,-0.923924f,0.0f},{0.258717f,-0.965953f,0.0f},{-0.130461f,-0.991453f,0.0f}, - {-0.258991f,-0.96588f,0.0f},{-0.258717f,-0.965953f,0.0f},{-0.130634f,-0.991431f,0.0f}, - {-0.500177f,-0.865923f,0.0f},{-0.608898f,-0.793249f,0.0f},{-0.499909f,-0.866078f,0.0f}, - {-0.382576f,-0.923924f,0.0f},{-0.382876f,-0.9238f,0.0f},{-0.707182f,-0.707032f,0.0f}, - {-0.793414f,-0.608682f,0.0f},{-0.70708f,-0.707133f,0.0f},{-0.608701f,-0.7934f,0.0f}, - {-0.793302f,-0.608828f,0.0f},{-0.866063f,-0.499935f,0.0f},{-0.923898f,-0.38264f,0.0f}, - {-0.865926f,-0.500171f,0.0f},{-0.923984f,-0.382431f,0.0f},{-0.965902f,-0.258907f,0.0f}, - {-0.991435f,-0.130601f,0.0f},{-0.966265f,-0.257551f,0.0f},{-0.99153f,-0.129881f,0.0f}, - {0.500177f,-0.865923f,0.0f},{0.793302f,-0.608828f,0.0f},{0.923984f,-0.382431f,0.0f}, - {0.984809f,-0.173642f,0.0f},{1.0f,1.57282e-016f,0.0f},{0.765765f,-0.64312f,0.0f}, - {0.766272f,-0.642516f,0.0f},{0.865946f,-0.500137f,0.0f},{0.939669f,-0.342084f,0.0f}, - {0.866231f,-0.499643f,0.0f},{0.939879f,-0.341507f,0.0f},{0.341751f,-0.939791f,0.0f}, - {0.173343f,-0.984861f,0.0f},{0.342031f,-0.939689f,0.0f},{0.642133f,-0.766593f,0.0f}, - {0.499517f,-0.866304f,0.0f},{0.50031f,-0.865846f,0.0f},{-0.342031f,-0.939689f,0.0f}, - {-0.173343f,-0.984861f,0.0f},{-0.173688f,-0.984801f,0.0f},{3.70074e-017f,-1.0f,0.0f}, - {3.23815e-017f,-1.0f,0.0f},{-0.642133f,-0.766593f,0.0f},{-0.50031f,-0.865846f,0.0f}, - {-0.499517f,-0.866304f,0.0f},{-0.766272f,-0.642516f,0.0f},{-0.865946f,-0.500137f,0.0f}, - {-0.765765f,-0.64312f,0.0f},{-0.866231f,-0.499643f,0.0f},{-0.939669f,-0.342084f,0.0f}, - {-0.984809f,-0.173642f,0.0f},{-0.939879f,-0.341507f,0.0f},{-0.984871f,-0.173291f,0.0f}, - {-0.341751f,-0.939791f,0.0f},{0.173688f,-0.984801f,0.0f},{0.984871f,-0.173291f,0.0f}, - {0.152121f,0.988362f,0.0f},{1.20609e-016f,1.0f,0.0f},{-0.134181f,0.990957f,0.0f}, - {0.424076f,0.905627f,0.0f},{0.307814f,0.951446f,0.0f},{0.587751f,0.809042f,0.0f}, - {0.66247f,0.749088f,0.0f},{0.950842f,0.309676f,0.0f},{0.807656f,0.589654f,0.0f}, - {0.846384f,0.532573f,0.0f},{0.961226f,0.275761f,0.0f},{-0.309304f,0.950963f,0.0f}, - {-0.409073f,0.912502f,0.0f},{-0.588229f,0.808694f,0.0f},{-0.811958f,0.583716f,0.0f}, - {-0.6509f,0.759164f,0.0f},{-0.952103f,0.305779f,0.0f},{-0.84017f,0.542323f,0.0f}, - {-0.962625f,0.270837f,0.0f},{-1.0f,-1.18424e-015f,0.0f},{-1.0f,1.11022e-015f,0.0f}, - {0.317028f,0.948416f,0.0f},{0.594315f,0.804232f,0.0f},{0.812715f,0.582662f,0.0f}, - {0.952238f,0.305357f,0.0f},{0.00550409f,0.999985f,0.0f},{-5.5717e-017f,1.0f,0.0f}, - {-0.306183f,0.951973f,0.0f},{-0.584702f,0.811248f,0.0f},{-0.80785f,0.589388f,0.0f}, - {-0.954037f,0.299688f,0.0f},{-1.0f,-5.92119e-016f,0.0f},{-1.0f,-6.66134e-016f,0.0f}, - {3.70074e-017f,1.0f,3.42388e-034f},{-0.307814f,0.951446f,5.69571e-018f},{4.16334e-017f,1.0f,3.85186e-034f}, - {0.587751f,0.809042f,2.78932e-017f},{0.309304f,0.950963f,3.37619e-017f},{0.588229f,0.808694f,1.0203e-017f}, - {0.307814f,0.951446f,-2.84786e-018f},{0.807656f,0.589654f,7.32347e-018f},{0.952103f,0.305779f,-2.03109e-017f}, - {0.950842f,0.309676f,-7.83488e-018f},{0.811958f,0.583716f,-2.06583e-017f},{1.0f,-1.66533e-016f,0.0f}, - {-0.587751f,0.809042f,-1.49703e-017f},{-0.588229f,0.808694f,-1.08844e-017f},{-0.811958f,0.583716f,-3.00485e-017f}, - {-0.807656f,0.589654f,-1.09108e-017f},{-0.952103f,0.305779f,0.0f},{-0.950842f,0.309676f,0.0f}, - {-1.0f,-6.93889e-017f,0.0f},{0.568191f,0.822897f,0.0f},{0.353989f,0.935249f,0.0f}, - {0.354494f,0.935058f,0.0f},{0.120012f,0.992772f,0.0f},{0.567703f,0.823234f,0.0f}, - {0.120619f,0.992699f,0.0f},{0.748241f,0.663427f,0.0f},{0.748664f,0.662949f,0.0f}, - {0.885281f,0.465056f,0.0f},{-0.12025f,0.992744f,0.0f},{0.885683f,0.46429f,0.0f}, - {0.970894f,0.239511f,0.0f},{0.971f,0.239079f,0.0f},{-0.12127f,0.99262f,0.0f}, - {-0.35609f,0.934452f,0.0f},{-0.354397f,0.935095f,0.0f},{-0.567931f,0.823076f,0.0f}, - {-0.569129f,0.822248f,0.0f},{-0.74925f,0.662288f,0.0f},{-0.748191f,0.663484f,0.0f}, - {-0.885933f,0.463813f,0.0f},{-0.885106f,0.465389f,0.0f},{-0.970869f,0.23961f,0.0f}, - {-0.971139f,0.238516f,0.0f},{-1.0f,1.45407e-013f,0.0f},{-1.0f,2.2119e-011f,0.0f}, - {0.0806869f,-0.224573f,-0.971111f},{0.115976f,-0.167824f,-0.978971f},{0.0936942f,-0.206583f,-0.973933f}, - {0.212777f,0.00431306f,-0.977091f},{0.17217f,-0.0544436f,-0.983562f},{0.210353f,-0.0150728f,-0.977509f}, - {0.24749f,0.000588626f,-0.96889f},{0.200182f,-0.0534267f,-0.978301f},{0.239984f,-0.0200864f,-0.970569f}, - {0.0134776f,0.00860874f,-0.999872f},{0.0558224f,0.0575724f,-0.996779f},{0.0228466f,0.0251275f,-0.999423f}, - {0.131908f,-0.119876f,-0.983987f},{0.135331f,-0.114692f,-0.98414f},{0.106577f,-0.0967618f,-0.989585f}, - {0.127565f,-0.127645f,-0.983582f},{0.0434816f,0.0682479f,-0.99672f},{0.0416591f,0.0621953f,-0.997194f}, - {0.0678076f,0.102888f,-0.992379f},{-0.0134804f,-0.00861069f,-0.999872f},{-0.0558295f,-0.0575731f,-0.996779f}, - {-0.0228463f,-0.0251269f,-0.999423f},{0.042481f,0.0700992f,-0.996635f},{0.0389583f,0.0679419f,-0.996928f}, - {0.0312083f,0.0653011f,-0.997377f},{-0.0488646f,0.0236813f,-0.998525f},{-0.0123869f,0.00381403f,-0.999916f}, - {-0.122955f,0.136635f,-0.982961f},{-0.0744603f,0.15616f,-0.984921f},{-0.11848f,0.146051f,-0.982157f}, - {-0.20018f,0.0534268f,-0.978301f},{-0.239985f,0.0200864f,-0.970569f},{-0.247488f,-0.000588612f,-0.968891f}, - {-0.0911775f,-0.0374113f,-0.995132f},{-0.164561f,0.091503f,-0.982113f},{-0.132869f,0.129057f,-0.982695f}, - {-0.128065f,0.138732f,-0.982015f},{-0.253059f,-0.0201007f,-0.967242f},{-0.207008f,0.0338838f,-0.977752f}, - {-0.0937007f,0.206583f,-0.973932f},{-0.126712f,0.149271f,-0.980644f},{-0.113835f,0.164764f,-0.979742f}, - {-0.0806854f,0.224573f,-0.971111f},{-0.115975f,0.167824f,-0.978971f},{-0.0476595f,0.282538f,-0.958071f}, - {-0.0601369f,0.245617f,-0.9675f},{-0.099067f,0.189505f,-0.976869f},{-0.0257387f,0.300652f,-0.953386f}, - {-0.0999932f,0.189498f,-0.976776f},{-0.108516f,0.173184f,-0.978893f},{-0.107387f,0.17428f,-0.978823f}, - {-0.155908f,0.110576f,-0.981563f},{-0.107733f,0.172359f,-0.979125f},{-0.0781727f,0.233122f,-0.9693f}, - {0.00667651f,0.0246582f,-0.999674f},{0.0165896f,0.0396375f,-0.999076f},{-0.105383f,0.17193f,-0.979456f}, - {0.0619015f,0.0809495f,-0.994794f},{0.00832976f,-0.0847504f,-0.996367f},{-0.0744356f,-0.126144f,-0.989215f}, - {-0.0300614f,-0.145127f,-0.988956f},{-0.0434816f,-0.068248f,-0.99672f},{-0.0678076f,-0.102888f,-0.992379f}, - {-0.0424824f,-0.0700993f,-0.996635f},{0.0309353f,0.0400397f,-0.998719f},{0.105381f,-0.171931f,-0.979456f}, - {0.118496f,-0.146014f,-0.98216f},{0.0744765f,-0.156159f,-0.98492f},{0.00348893f,-0.00830625f,-0.999959f}, - {0.0123794f,-0.00381472f,-0.999916f},{0.139631f,-0.110247f,-0.984047f},{0.139617f,-0.112341f,-0.983812f}, - {0.168792f,-0.0732426f,-0.982927f},{0.135427f,-0.123518f,-0.983058f},{0.131599f,-0.131651f,-0.982522f}, - {0.255848f,0.0391961f,-0.965922f},{0.0990662f,-0.189505f,-0.976869f},{0.207001f,-0.033884f,-0.977754f}, - {0.0257381f,-0.300652f,-0.953386f},{0.0601361f,-0.245617f,-0.9675f},{0.0476609f,-0.282538f,-0.958071f}, - {0.108819f,-0.168871f,-0.979613f},{0.0781673f,-0.233124f,-0.9693f},{0.107726f,-0.172348f,-0.979128f}, - {0.071609f,-0.249664f,-0.965681f},{0.0999793f,-0.189499f,-0.976777f},{0.18367f,0.0228704f,-0.982722f}, - {0.143043f,-0.0368726f,-0.989029f},{-0.0165949f,-0.039638f,-0.999076f},{-0.031216f,-0.0653017f,-0.997377f}, - {0.138156f,-0.116935f,-0.983483f},{0.15591f,-0.110576f,-0.981563f},{0.189495f,-0.0760762f,-0.97893f}, - {0.253055f,0.0201006f,-0.967243f},{0.113819f,-0.164768f,-0.979743f},{0.110674f,-0.169985f,-0.979212f}, - {0.142319f,-0.13279f,-0.980873f},{0.0638565f,-0.265747f,-0.961926f},{0.111105f,-0.162971f,-0.980355f}, - {0.11444f,-0.155086f,-0.98125f},{0.0654512f,-0.217303f,-0.973907f},{0.122963f,-0.13662f,-0.982962f}, - {-0.0416577f,-0.0621948f,-0.997194f},{-0.0619016f,-0.0809495f,-0.994794f},{0.074428f,0.126144f,-0.989216f}, - {-0.10656f,0.0967627f,-0.989587f},{0.030073f,0.145128f,-0.988956f},{-0.132285f,0.119253f,-0.984012f}, - {-0.127537f,0.127694f,-0.98358f},{0.112261f,0.173544f,-0.978407f},{0.114801f,0.194823f,-0.974097f}, - {0.037314f,0.0525697f,-0.99792f},{0.107531f,0.153096f,-0.982343f},{0.102693f,0.132768f,-0.985813f}, - {0.0488762f,-0.0236802f,-0.998524f},{0.0911884f,0.0374122f,-0.995131f},{-0.0343818f,-0.207914f,-0.977543f}, - {-0.114804f,-0.194823f,-0.974097f},{-0.112265f,-0.173544f,-0.978406f},{-0.10753f,-0.153096f,-0.982344f}, - {-0.0373124f,-0.0525692f,-0.99792f},{-0.0309343f,-0.0400395f,-0.998719f},{-0.102696f,-0.132768f,-0.985812f}, - {-0.00349236f,0.00830612f,-0.999959f},{-0.143026f,0.0368738f,-0.989032f},{-0.172172f,0.0544429f,-0.983561f}, - {-0.108774f,0.16898f,-0.979599f},{-0.0716214f,0.249662f,-0.965681f},{-0.110692f,0.169978f,-0.979211f}, - {-0.183652f,-0.0228691f,-0.982725f},{-0.111114f,0.16297f,-0.980354f},{-0.114446f,0.155082f,-0.98125f}, - {-0.00831784f,0.0847515f,-0.996367f},{0.0256814f,0.0524475f,-0.998293f},{0.0332888f,0.0620644f,-0.997517f}, - {-0.212779f,-0.0043133f,-0.977091f},{-0.168808f,0.0732415f,-0.982924f},{-0.136682f,0.120661f,-0.983239f}, - {-0.139069f,0.114346f,-0.983659f},{-0.210368f,0.0150721f,-0.977506f},{-0.117902f,0.15764f,-0.980433f}, - {0.126705f,-0.149271f,-0.980645f},{0.164554f,-0.0915033f,-0.982115f},{0.117888f,-0.157641f,-0.980434f}, - {0.127125f,-0.140533f,-0.981881f},{0.122423f,-0.149416f,-0.981166f},{0.108474f,-0.173236f,-0.978889f}, - {0.257551f,0.0589452f,-0.964465f},{0.107335f,-0.174359f,-0.978815f},{0.239876f,0.0787303f,-0.967606f}, - {0.151587f,0.0943229f,-0.983933f},{0.138183f,-0.110958f,-0.984172f},{-0.00668129f,-0.0246587f,-0.999674f}, - {0.0971757f,0.111226f,-0.989033f},{-0.0256865f,-0.0524476f,-0.998293f},{-0.0389615f,-0.067942f,-0.996928f}, - {-0.033293f,-0.0620642f,-0.997517f},{0.0343964f,0.207915f,-0.977542f},{-0.135944f,0.113842f,-0.984154f}, - {-0.097181f,-0.111227f,-0.989032f},{-0.065439f,0.217303f,-0.973908f},{-0.139838f,0.110719f,-0.983965f}, - {-0.13881f,0.110345f,-0.984152f},{-0.239861f,-0.0787291f,-0.96761f},{-0.151574f,-0.0943219f,-0.983935f}, - {-0.257556f,-0.0589451f,-0.964464f},{-0.255863f,-0.0391964f,-0.965918f},{-0.0638606f,0.265747f,-0.961925f}, - {-0.122911f,0.148539f,-0.981239f},{-0.189496f,0.0760762f,-0.97893f},{-0.14232f,0.13279f,-0.980873f}, - {-0.410005f,-0.780986f,0.471123f},{-0.431924f,-0.756474f,0.491109f},{-0.406453f,-0.879699f,0.246832f}, - {-0.444614f,-0.738683f,0.506622f},{-0.428298f,-0.85525f,0.291734f},{-0.420701f,-0.718444f,0.553939f}, - {-0.415692f,-0.815118f,0.403464f},{-0.437394f,-0.721373f,0.536943f},{-0.430102f,-0.824692f,0.367282f}, - {-0.434004f,-0.838017f,0.330708f},{-0.44473f,-0.728083f,0.521641f},{-0.268829f,-0.797562f,0.540024f}, - {-0.258175f,-0.722769f,0.641055f},{-0.275537f,-0.774815f,0.568982f},{-0.352408f,-0.728926f,0.58692f}, - {-0.277529f,-0.733033f,0.620999f},{-0.28748f,-0.816277f,0.501046f},{-0.249748f,-0.689892f,0.679467f}, - {-0.215302f,-0.725361f,0.653833f},{-0.256534f,-0.738897f,0.623074f},{-0.261868f,-0.698996f,0.665454f}, - {-0.271108f,-0.755933f,0.595873f},{-0.264635f,-0.709599f,0.653021f},{0.0526752f,-0.683243f,0.728289f}, - {0.0541363f,-0.696338f,0.715669f},{0.0539424f,-0.667359f,0.74278f},{-0.0721475f,-0.716045f,0.694315f}, - {-0.211833f,-0.683867f,0.698178f},{-0.0718111f,-0.680519f,0.729203f},{0.052782f,-0.660486f,0.748981f}, - {0.0443778f,-0.671599f,0.739585f},{0.0438809f,-0.654656f,0.754652f},{0.0375909f,-0.660388f,0.749983f}, - {0.0241761f,-0.649023f,0.760385f},{0.0363458f,-0.648963f,0.759951f},{0.022026f,-0.643221f,0.765363f}, - {0.00631787f,-0.636811f,0.770994f},{0.0031649f,-0.636821f,0.771005f},{-0.355684f,-0.818732f,0.45074f}, - {-0.371045f,-0.909063f,0.18955f},{-0.405078f,-0.583044f,0.704253f},{-0.421979f,-0.580905f,0.696048f}, - {-0.431996f,-0.756391f,0.491175f},{-0.432024f,-0.581257f,0.689562f},{-0.444614f,-0.738684f,0.506621f}, - {-0.352294f,-0.728943f,0.586967f},{-0.420702f,-0.718445f,0.553937f},{-0.410108f,-0.59918f,0.687601f}, - {-0.437394f,-0.721374f,0.536941f},{-0.44473f,-0.728085f,0.521639f},{-0.431774f,-0.585021f,0.686528f}, - {-0.258155f,-0.722817f,0.641008f},{-0.239661f,-0.63406f,0.735208f},{-0.264648f,-0.709547f,0.653073f}, - {-0.336563f,-0.618695f,0.709888f},{-0.25777f,-0.632115f,0.730743f},{-0.27756f,-0.733036f,0.620982f}, - {-0.238256f,-0.634072f,0.735654f},{-0.211913f,-0.683867f,0.698154f},{-0.249749f,-0.689931f,0.679427f}, - {-0.246966f,-0.633237f,0.733498f},{-0.261827f,-0.698956f,0.665513f},{-0.24717f,-0.633257f,0.733412f}, - {0.0527819f,-0.660487f,0.74898f},{0.0540166f,-0.667343f,0.742789f},{0.0563396f,-0.634508f,0.77086f}, - {-0.0720207f,-0.680531f,0.729171f},{-0.204102f,-0.636975f,0.743375f},{-0.0680582f,-0.640402f,0.765018f}, - {0.055102f,-0.63474f,0.770759f},{0.0438808f,-0.654657f,0.754651f},{0.0454974f,-0.635485f,0.770772f}, - {0.0363458f,-0.648964f,0.759951f},{0.0219575f,-0.643198f,0.765385f},{0.0371135f,-0.63602f,0.77078f}, - {0.0218202f,-0.636578f,0.770903f},{0.0020686f,-0.636823f,0.771008f},{-0.425392f,-0.590849f,0.685521f}, - {-0.355736f,-0.325002f,0.876256f},{-0.376871f,-0.358337f,0.854144f},{-0.422036f,-0.5809f,0.696018f}, - {-0.390634f,-0.386348f,0.835548f},{-0.336442f,-0.618721f,0.709923f},{-0.410108f,-0.59918f,0.687601f}, - {-0.370105f,-0.46456f,0.804491f},{-0.394435f,-0.412203f,0.821285f},{-0.392371f,-0.437394f,0.809155f}, - {-0.239634f,-0.634063f,0.735214f},{-0.218199f,-0.539451f,0.813254f},{-0.24719f,-0.633254f,0.733407f}, - {-0.276989f,-0.497609f,0.821986f},{-0.210792f,-0.522063f,0.826449f},{-0.257804f,-0.632111f,0.730734f}, - {-0.110113f,-0.595637f,0.795671f},{-0.204172f,-0.63697f,0.743359f},{-0.223171f,-0.580852f,0.782819f}, - {-0.238249f,-0.634073f,0.735655f},{-0.246939f,-0.633239f,0.733505f},{-0.224079f,-0.567772f,0.792101f}, - {0.055102f,-0.63474f,0.770759f},{0.0564151f,-0.634503f,0.770859f},{0.0620428f,-0.606196f,0.792892f}, - {-0.0682671f,-0.640405f,0.764997f},{0.0414768f,-0.59941f,0.799366f},{0.0507293f,-0.614526f,0.787264f}, - {0.0454974f,-0.635485f,0.770772f},{0.0411515f,-0.622011f,0.781926f},{0.0217483f,-0.63658f,0.770904f}, - {0.024754f,-0.629429f,0.776664f},{0.0031651f,-0.636821f,0.771005f},{-0.226089f,-0.554028f,0.80121f}, - {-0.260709f,-0.018211f,0.965246f},{-0.29234f,-0.0905301f,0.95202f},{-0.376958f,-0.35848f,0.854046f}, - {-0.394436f,-0.412236f,0.821268f},{-0.39064f,-0.386367f,0.835537f},{-0.316442f,-0.150845f,0.936541f}, - {-0.27707f,-0.497587f,0.821973f},{-0.369949f,-0.464644f,0.804515f},{-0.326359f,-0.302136f,0.895658f}, - {-0.392367f,-0.43742f,0.809143f},{-0.331158f,-0.203847f,0.921293f},{-0.218211f,-0.539469f,0.813239f}, - {-0.186125f,-0.436519f,0.880232f},{-0.226126f,-0.554148f,0.801116f},{-0.234204f,-0.351848f,0.906284f}, - {-0.172939f,-0.39662f,0.901546f},{-0.210966f,-0.521912f,0.826499f},{-0.205901f,-0.526859f,0.824636f}, - {-0.110847f,-0.595587f,0.795606f},{-0.223412f,-0.580769f,0.782812f},{-0.202182f,-0.499197f,0.842571f}, - {-0.224072f,-0.567787f,0.792092f},{-0.198592f,-0.469626f,0.86024f},{0.0682852f,-0.579246f,0.812288f}, - {0.0620078f,-0.606222f,0.792874f},{0.0488013f,-0.564062f,0.824289f},{0.0416336f,-0.599414f,0.799355f}, - {-0.0985182f,-0.5515f,0.828337f},{0.056183f,-0.594988f,0.801768f},{0.0507196f,-0.614534f,0.787258f}, - {0.0411442f,-0.622016f,0.781923f},{0.0457027f,-0.609128f,0.791754f},{0.0285242f,-0.622938f,0.781751f}, - {0.0246587f,-0.629464f,0.776638f},{0.00635625f,-0.636811f,0.770994f},{-0.340146f,-0.25357f,0.90554f}, - {0.0457539f,-0.608772f,0.792025f},{0.055249f,-0.594765f,0.801999f},{0.0450032f,-0.608898f,0.791971f}, - {0.0284547f,-0.622817f,0.78185f},{0.0279898f,-0.622836f,0.781851f},{0.0688727f,-0.562516f,0.823913f}, - {0.0490876f,-0.563156f,0.824891f},{-0.0496963f,-0.550993f,0.833029f},{0.0683527f,-0.578569f,0.812765f}, - {0.0665103f,-0.579246f,0.812435f},{0.0562578f,-0.594461f,0.802154f},{-0.198149f,-0.468103f,0.861172f}, - {-0.198042f,-0.472958f,0.85854f},{-0.201746f,-0.497665f,0.84358f},{-0.205766f,-0.525395f,0.825603f}, - {-0.175094f,-0.529826f,0.829835f},{-0.0989846f,-0.550287f,0.829087f},{-0.181766f,-0.361545f,0.914465f}, - {-0.172451f,-0.394113f,0.902738f},{-0.233674f,-0.349592f,0.907294f},{-0.188934f,-0.441329f,0.87723f}, - {-0.185572f,-0.434558f,0.881319f},{-0.174204f,-0.40436f,0.897856f},{-0.331082f,-0.265363f,0.90552f}, - {-0.339571f,-0.251639f,0.906294f},{-0.33003f,-0.216776f,0.918743f},{-0.32564f,-0.30016f,0.896584f}, - {-0.257875f,-0.314928f,0.913412f},{-0.31893f,-0.16631f,0.933073f},{-0.33061f,-0.202144f,0.921865f}, - {-0.315979f,-0.149463f,0.936919f},{-0.302605f,-0.112599f,0.946442f},{-0.292181f,-0.0899699f,0.952122f}, - {-0.277704f,-0.0515423f,0.959283f},{-0.246428f,0.0205104f,0.968944f},{-0.199807f,-0.50237f,0.84125f}, - {0.00685645f,-0.636809f,0.770991f},{-0.170684f,0.109551f,0.979217f},{-0.206616f,0.0629021f,0.976398f}, - {-0.158053f,0.126478f,0.979297f},{-0.129887f,0.173613f,0.976211f},{-0.114756f,0.190018f,0.975051f}, - {-0.0931162f,0.239086f,0.966523f},{-0.0916011f,0.208979f,0.973621f},{-0.0745052f,0.25458f,0.964177f}, - {-0.13862f,0.146005f,0.979524f},{-0.0499282f,0.270988f,0.961287f},{-0.176521f,0.0935066f,0.979845f}, - {-0.180908f,0.0771143f,0.980472f},{-0.221759f,0.0289222f,0.974672f},{-0.258471f,0.00236958f,0.966016f}, - {-0.114433f,-0.0158869f,0.993304f},{-0.212524f,-0.00500348f,0.977143f},{-0.0688181f,0.0517682f,0.996285f}, - {-0.273986f,-0.0489217f,0.960489f},{-0.271537f,-0.0316006f,0.961909f},{-0.225011f,0.0119369f,0.974283f}, - {-0.0428923f,-0.0491747f,0.997869f},{-8.55582e-007f,-7.949e-008f,1.0f},{-0.0482005f,-0.0683324f,0.996498f}, - {-0.186842f,-0.0802466f,0.979107f},{-0.0392859f,-0.028666f,0.998817f},{-0.102404f,-0.0919448f,0.990485f}, - {-0.057155f,-0.107856f,0.992522f},{0.0265899f,-0.119144f,0.992521f},{-0.0835213f,-0.178742f,0.980345f}, - {-0.00540807f,-0.0192356f,0.9998f},{-0.0535629f,-0.0874508f,0.994728f},{0.158051f,-0.126478f,0.979297f}, - {0.114754f,-0.190018f,0.975051f},{0.129893f,-0.173613f,0.97621f},{0.130935f,-0.127075f,0.983213f}, - {0.168995f,-0.0610101f,0.983727f},{0.0931203f,-0.239086f,0.966523f},{0.0745033f,-0.25458f,0.964177f}, - {0.0916021f,-0.208979f,0.973621f},{0.0499291f,-0.270988f,0.961287f},{0.136947f,-0.158154f,0.977872f}, - {0.170691f,-0.10955f,0.979216f},{0.190497f,-0.0828562f,0.978185f},{0.206614f,-0.0629022f,0.976398f}, - {0.102078f,-0.224388f,0.969139f},{0.142513f,-0.142376f,0.979499f},{0.176539f,-0.0935053f,0.979842f}, - {0.109046f,-0.209369f,0.971737f},{0.0142462f,-0.186808f,0.982293f},{0.180916f,-0.0771131f,0.980471f}, - {0.107117f,-0.19432f,0.975072f},{-0.00908038f,-0.0397896f,0.999167f},{0.0687977f,-0.0517701f,0.996286f}, - {-0.0984282f,-0.14449f,0.984599f},{-0.0930399f,-0.127037f,0.987525f},{-0.103308f,-0.162383f,0.981305f}, - {-0.0885006f,-0.108876f,0.990108f},{0.0090855f,0.03979f,0.999167f},{0.00541255f,0.0192361f,0.9998f}, - {-0.269586f,-0.0667669f,0.960659f},{-0.169012f,0.0610092f,0.983724f},{-0.217019f,0.04552f,0.975106f}, - {-0.267327f,-0.0147946f,0.963492f},{-0.190496f,0.0828563f,0.978185f},{-0.102063f,0.22439f,0.96914f}, - {-0.13693f,0.158156f,0.977874f},{-0.109036f,0.209371f,0.971738f},{-0.142505f,0.142378f,0.9795f}, - {-0.107128f,0.194321f,0.975071f},{-0.130951f,0.127075f,0.983211f},{-0.0142661f,0.186807f,0.982293f}, - {-0.0266103f,0.119142f,0.992521f},{0.083517f,0.178742f,0.980345f},{0.05716f,0.107856f,0.992522f}, - {0.103317f,0.162383f,0.981304f},{0.258468f,-0.00236961f,0.966017f},{0.246429f,-0.0205104f,0.968944f}, - {0.0535675f,0.0874512f,0.994727f},{0.0984279f,0.14449f,0.984599f},{0.0930396f,0.127037f,0.987525f}, - {0.0481988f,0.0683322f,0.996498f},{0.0885078f,0.108876f,0.990107f},{0.0428965f,0.0491751f,0.997869f}, - {0.102401f,0.0919447f,0.990485f},{0.0392909f,0.0286666f,0.998817f},{0.186822f,0.080245f,0.979111f}, - {0.114413f,0.0158852f,0.993306f},{0.269573f,0.0667658f,0.960663f},{0.212507f,0.00500236f,0.977147f}, - {0.273996f,0.0489219f,0.960486f},{0.225019f,-0.0119362f,0.974281f},{0.271553f,0.031601f,0.961904f}, - {0.221777f,-0.0289212f,0.974668f},{0.26733f,0.0147946f,0.963491f},{0.217025f,-0.0455199f,0.975104f}, - {0.138621f,-0.146005f,0.979524f},{-0.00317738f,0.636821f,0.771005f},{-0.0246739f,0.629441f,0.776656f}, - {-0.0279566f,0.623058f,0.781676f},{-0.0551303f,0.595408f,0.80153f},{-0.0449278f,0.609331f,0.791642f}, - {-0.0411546f,0.621971f,0.781958f},{0.0499248f,0.552325f,0.832133f},{-0.0687359f,0.563612f,0.823175f}, - {-0.0416737f,0.599286f,0.79945f},{-0.0663718f,0.580108f,0.811831f},{-0.0507229f,0.614466f,0.787311f}, - {-0.0620227f,0.606128f,0.792945f},{0.223995f,0.567518f,0.792306f},{0.226021f,0.553812f,0.801378f}, - {0.198662f,0.475091f,0.857217f},{0.110786f,0.595421f,0.795739f},{0.223354f,0.58056f,0.782983f}, - {0.175481f,0.531382f,0.828758f},{0.276897f,0.496956f,0.822413f},{0.182559f,0.364365f,0.913187f}, - {0.210821f,0.521383f,0.82687f},{0.174949f,0.407013f,0.896511f},{0.18964f,0.443733f,0.875864f}, - {0.218089f,0.539048f,0.81355f},{0.330803f,0.219259f,0.917875f},{0.331812f,0.268014f,0.904472f}, - {0.392167f,0.436574f,0.809696f},{0.25864f,0.317724f,0.912226f},{0.369772f,0.46392f,0.805014f}, - {0.394193f,0.411246f,0.821881f},{0.319671f,0.168505f,0.932425f},{0.390338f,0.385206f,0.836213f}, - {0.303211f,0.114345f,0.946038f},{0.278069f,0.0525963f,0.95912f},{0.376599f,0.357097f,0.854784f}, - {0.355321f,0.323311f,0.87705f},{0.200313f,0.50421f,0.840028f},{-0.00685578f,0.636809f,0.770991f}, - {-0.002068f,0.636823f,0.771008f},{-0.0217543f,0.63654f,0.770937f},{-0.0247724f,0.629382f,0.776701f}, - {-0.0411683f,0.621921f,0.781997f},{-0.0371196f,0.635941f,0.770844f},{-0.0415314f,0.599172f,0.799542f}, - {-0.0620694f,0.606014f,0.793029f},{-0.056447f,0.634304f,0.77102f},{-0.0507421f,0.614392f,0.787367f}, - {-0.0454985f,0.63537f,0.770866f},{-0.0551123f,0.634587f,0.770884f},{0.223077f,0.580496f,0.78311f}, - {0.238176f,0.633724f,0.735979f},{0.223957f,0.56733f,0.792452f},{0.0682119f,0.64016f,0.765207f}, - {0.204107f,0.63668f,0.743626f},{0.110027f,0.595341f,0.795904f},{0.239503f,0.633497f,0.735744f}, - {0.210588f,0.521305f,0.826979f},{0.21802f,0.538815f,0.813723f},{0.247067f,0.632772f,0.733864f}, - {0.22593f,0.553496f,0.801622f},{0.246834f,0.632828f,0.733895f},{0.392125f,0.436343f,0.809842f}, - {0.369882f,0.463619f,0.805137f},{0.409993f,0.598406f,0.688343f},{0.27676f,0.496749f,0.822584f}, - {0.257657f,0.631462f,0.731347f},{0.336306f,0.618008f,0.710608f},{0.425267f,0.589992f,0.686336f}, - {0.394147f,0.411029f,0.822012f},{0.431633f,0.584074f,0.687423f},{0.390294f,0.385037f,0.836312f}, - {0.376488f,0.356858f,0.854932f},{0.431864f,0.580207f,0.690546f},{0.42187f,0.579716f,0.697105f}, - {0.404919f,0.581686f,0.705466f},{-0.00315153f,0.636821f,0.771006f},{-0.021951f,0.643165f,0.765413f}, - {-0.0218263f,0.636538f,0.770937f},{-0.0363394f,0.6489f,0.760005f},{0.068003f,0.640157f,0.765229f}, - {-0.0563715f,0.63431f,0.771021f},{-0.0540317f,0.667183f,0.742932f},{-0.0438692f,0.654564f,0.754732f}, - {0.238183f,0.633724f,0.735978f},{0.249708f,0.689649f,0.679728f},{0.246861f,0.632825f,0.733889f}, - {0.0719912f,0.680332f,0.72936f},{0.211878f,0.683631f,0.698395f},{0.204036f,0.636685f,0.743641f}, - {0.258076f,0.722371f,0.641543f},{0.257623f,0.631466f,0.731355f},{0.239529f,0.633495f,0.735738f}, - {0.264571f,0.709164f,0.65352f},{0.247047f,0.632774f,0.733869f},{0.261762f,0.698625f,0.665885f}, - {0.420681f,0.717841f,0.554735f},{0.336426f,0.617982f,0.710574f},{0.277479f,0.732529f,0.621616f}, - {0.35224f,0.728388f,0.587689f},{0.437381f,0.720712f,0.537841f},{0.444724f,0.72736f,0.522654f}, - {0.421813f,0.57972f,0.697136f},{0.44462f,0.737892f,0.507768f},{0.432036f,0.755513f,0.492489f}, - {0.4101f,0.780009f,0.472656f},{-0.0527785f,0.660363f,0.74909f},{-0.00629327f,0.636811f,0.770994f}, - {-0.0241581f,0.649001f,0.760404f},{-0.0220195f,0.643189f,0.765391f},{-0.0375725f,0.660345f,0.750022f}, - {-0.0363395f,0.648899f,0.760006f},{0.0717815f,0.680319f,0.729392f},{-0.0539575f,0.667198f,0.742923f}, - {-0.0541337f,0.696227f,0.715778f},{-0.0527786f,0.660362f,0.749091f},{-0.0438693f,0.654563f,0.754733f}, - {-0.0443535f,0.671536f,0.739643f},{0.249707f,0.68961f,0.679768f},{0.256526f,0.738688f,0.623325f}, - {0.261803f,0.698666f,0.665827f},{0.0721451f,0.715903f,0.694462f},{0.215298f,0.725187f,0.654026f}, - {0.211798f,0.683631f,0.69842f},{0.268798f,0.79723f,0.540529f},{0.277449f,0.732527f,0.621633f}, - {0.258096f,0.722323f,0.641589f},{0.275504f,0.774529f,0.569388f},{0.264558f,0.709216f,0.653469f}, - {0.271082f,0.755688f,0.596197f},{0.415759f,0.814669f,0.4043f},{0.420681f,0.717839f,0.554738f}, - {0.355703f,0.818321f,0.451472f},{0.352353f,0.728371f,0.587642f},{0.287459f,0.815902f,0.501668f}, - {0.430194f,0.824211f,0.368252f},{0.444724f,0.727359f,0.522656f},{0.437381f,0.72071f,0.537843f}, - {0.434129f,0.83751f,0.331828f},{0.44462f,0.73789f,0.50777f},{0.431964f,0.755597f,0.492423f}, - {0.428471f,0.854721f,0.293028f},{0.406702f,0.879159f,0.248341f},{0.371402f,0.908545f,0.19133f}, - {-0.0526576f,0.683158f,0.728369f},{-0.0263917f,0.652054f,0.757713f},{-0.00909888f,0.636797f,0.770977f}, - {-0.0536109f,0.695352f,0.716667f},{-0.0443236f,0.671834f,0.739374f},{-0.0456191f,0.680563f,0.731268f}, - {-0.0392338f,0.666389f,0.744571f},{-0.0375531f,0.660552f,0.749841f},{-0.0242147f,0.649157f,0.760269f}, - {0.0720186f,0.716437f,0.693924f},{0.215375f,0.747931f,0.627863f},{0.215321f,0.725786f,0.653354f}, - {-0.0526197f,0.683545f,0.728009f},{-0.055364f,0.711835f,0.700162f},{-0.0540181f,0.69673f,0.715297f}, - {0.279233f,0.809709f,0.516139f},{0.275645f,0.775365f,0.568181f},{0.271283f,0.756476f,0.595104f}, - {0.274244f,0.786708f,0.553065f},{0.256648f,0.739281f,0.622571f},{0.258544f,0.76548f,0.589233f}, - {0.351817f,0.864019f,0.360134f},{0.287541f,0.81663f,0.500435f},{0.289026f,0.85903f,0.42253f}, - {0.268949f,0.797912f,0.539447f},{0.271782f,0.836894f,0.475123f},{0.430114f,0.824737f,0.367166f}, - {0.415694f,0.815277f,0.40314f},{0.415649f,0.87405f,0.251538f},{0.355825f,0.818985f,0.450169f}, - {0.404724f,0.863226f,0.301729f},{0.415023f,0.887621f,0.199712f},{0.434041f,0.837936f,0.330866f}, - {0.403094f,0.903754f,0.144024f},{0.428382f,0.85503f,0.292254f},{0.406518f,0.879434f,0.247668f}, - {0.372382f,0.924662f,0.079571f},{0.325495f,0.945544f,0.0f},{0.0705335f,0.735204f,0.674167f}, - {0.286908f,0.957958f,-0.000297298f},{0.286152f,0.958184f,-0.00027813f},{0.278077f,0.951596f,-0.130911f}, - {0.266505f,0.956115f,-0.121731f},{0.270116f,0.962828f,-0.00025761f},{0.23607f,0.971736f,-0.000235456f}, - {0.258612f,0.959649f,-0.110422f},{0.111685f,0.993744f,-0.000218645f},{0.15671f,0.982441f,-0.101255f}, - {0.0244862f,0.995607f,-0.0903677f},{0.00228008f,0.999997f,-0.000195691f},{0.00864389f,0.999963f,-0.000166398f}, - {0.0121337f,0.996969f,-0.076847f},{0.0172244f,0.999852f,-0.000133472f},{0.0209404f,0.99785f,-0.0620961f}, - {0.0225323f,0.998704f,-0.0456418f},{0.0196045f,0.999808f,-9.71639e-005f},{0.0193212f,0.999813f,-5.4502e-005f}, - {0.0204337f,0.99946f,-0.0257239f},{0.0176994f,0.999843f,0.0f},{0.0173199f,0.99985f,0.0f}, - {0.267273f,0.953349f,-0.140321f},{0.257069f,0.95479f,-0.149306f},{0.271589f,0.962413f,-0.00031666f}, - {0.280293f,0.959914f,-0.000331412f},{0.282163f,0.946687f,-0.155461f},{0.308726f,0.937469f,-0.16075f}, - {0.318966f,0.947766f,-0.000342471f},{0.324966f,0.931085f,-0.165762f},{0.355068f,0.93484f,-0.000351538f}, - {0.370564f,0.928807f,-0.000361614f},{0.330965f,0.928046f,-0.17086f},{0.326564f,0.928594f,-0.176266f}, - {0.376575f,0.926386f,-0.000372148f},{0.30552f,0.934514f,-0.182597f},{0.373027f,0.92782f,-0.000383596f}, - {0.354145f,0.935191f,-0.000397484f},{0.272835f,0.943202f,-0.189554f},{0.325394f,0.945578f,-0.00041274f}, - {0.0211408f,0.997288f,-0.0705025f},{0.0173199f,0.99985f,-1.50134e-014f},{0.0149749f,0.999888f,1.04413e-015f}, - {0.0190992f,0.976903f,-0.212829f},{0.012063f,0.997001f,-0.0764401f},{0.0270514f,0.98481f,-0.171517f}, - {0.0267385f,0.991726f,-0.125559f},{0.0225092f,0.998719f,-0.0453197f},{0.258403f,0.959761f,-0.109939f}, - {0.185186f,0.942002f,-0.279891f},{0.235359f,0.921009f,-0.310401f},{0.0245818f,0.995645f,-0.0899239f}, - {0.060169f,0.966375f,-0.25f},{0.156085f,0.982591f,-0.100754f},{0.242529f,0.898699f,-0.365402f}, - {0.221008f,0.893124f,-0.391771f},{0.26728f,0.953393f,-0.140014f},{0.245706f,0.907932f,-0.33954f}, - {0.27811f,0.951625f,-0.130631f},{0.266559f,0.95615f,-0.121342f},{0.222884f,0.865841f,-0.447931f}, - {0.308832f,0.937463f,-0.160577f},{0.220933f,0.874336f,-0.432117f},{0.282182f,0.946719f,-0.155229f}, - {0.25702f,0.954855f,-0.148975f},{0.223806f,0.882967f,-0.412649f},{0.225231f,0.858059f,-0.461525f}, - {0.330999f,0.928053f,-0.170754f},{0.32502f,0.931092f,-0.165619f},{0.216849f,0.852796f,-0.475096f}, - {0.32658f,0.928602f,-0.176192f},{0.305399f,0.934555f,-0.182588f},{0.192096f,0.850459f,-0.489713f}, - {0.155604f,0.848968f,-0.505015f},{0.0209039f,0.997875f,-0.0617066f},{0.0204365f,0.999463f,-0.0256194f}, - {0.0198325f,0.993882f,-0.108651f},{0.0149749f,0.999888f,0.0f},{0.0107279f,0.999942f,0.0f}, - {0.027494f,0.940471f,-0.338759f},{0.0270456f,0.9848f,-0.171575f},{0.0323478f,0.961911f,-0.271441f}, - {0.0289941f,0.980028f,-0.196733f},{0.0267423f,0.99172f,-0.125606f},{0.0211768f,0.997263f,-0.0708398f}, - {0.184752f,0.942124f,-0.279767f},{0.198008f,0.842424f,-0.501114f},{0.235436f,0.92105f,-0.310221f}, - {0.0190528f,0.976871f,-0.212979f},{0.0630398f,0.914688f,-0.399213f},{0.0602812f,0.96636f,-0.250028f}, - {0.19314f,0.786761f,-0.586263f},{0.167212f,0.763159f,-0.624203f},{0.24247f,0.898676f,-0.365499f}, - {0.245744f,0.907886f,-0.339635f},{0.201874f,0.8124f,-0.547041f},{0.0929333f,0.700686f,-0.707392f}, - {0.220911f,0.874312f,-0.432176f},{0.113967f,0.718951f,-0.685653f},{0.2238f,0.88298f,-0.412625f}, - {0.221072f,0.893172f,-0.391626f},{0.154471f,0.739263f,-0.65546f},{0.0875221f,0.684218f,-0.724006f}, - {0.225226f,0.858048f,-0.461549f},{0.222895f,0.86583f,-0.447948f},{0.073847f,0.669461f,-0.739168f}, - {0.216833f,0.852792f,-0.475111f},{0.191924f,0.850452f,-0.489793f},{0.0484461f,0.655515f,-0.753627f}, - {0.0158475f,0.640906f,-0.767455f},{0.155604f,0.848968f,-0.505015f},{0.164174f,0.877789f,-0.450038f}, - {0.0167192f,0.990338f,-0.137663f},{0.0107279f,0.999942f,-5.79815e-010f},{0.00505961f,0.999987f,0.0f}, - {0.033892f,0.890883f,-0.452967f},{0.0323469f,0.961882f,-0.271545f},{0.0355093f,0.932581f,-0.35921f}, - {0.0291785f,0.966258f,-0.255917f},{0.0290016f,0.980011f,-0.196817f},{0.0198883f,0.993822f,-0.10919f}, - {0.163842f,0.877955f,-0.449834f},{0.13651f,0.780866f,-0.609602f},{0.148479f,0.718253f,-0.679755f}, - {0.0274608f,0.940382f,-0.339011f},{0.0636188f,0.841289f,-0.536829f},{0.0631371f,0.914656f,-0.399272f}, - {0.125965f,0.609067f,-0.783052f},{0.0957412f,0.559997f,-0.822944f},{0.193061f,0.786669f,-0.586412f}, - {0.201887f,0.812292f,-0.547197f},{0.142438f,0.660203f,-0.737458f},{-0.0540079f,0.439944f,-0.896399f}, - {0.113812f,0.718888f,-0.685746f},{-0.0113659f,0.472513f,-0.88125f},{0.154497f,0.739288f,-0.655427f}, - {0.167295f,0.763303f,-0.624004f},{0.06617f,0.514496f,-0.854936f},{-0.0658654f,0.414517f,-0.907655f}, - {0.0875037f,0.684189f,-0.724037f},{0.0929309f,0.700662f,-0.707415f},{-0.0816251f,0.391685f,-0.916472f}, - {0.0738257f,0.669444f,-0.739185f},{0.0482842f,0.65544f,-0.753702f},{-0.101927f,0.369884f,-0.92347f}, - {-0.123605f,0.347635f,-0.929447f},{0.0158475f,0.640907f,-0.767455f},{0.198107f,0.842564f,-0.500839f}, - {0.0111543f,0.989269f,-0.145677f},{0.00505961f,0.999987f,-2.85058e-010f},{-0.00138151f,0.999999f,1.91845e-016f}, - {0.0382111f,0.850391f,-0.524762f},{0.0355133f,0.932523f,-0.359361f},{0.0352909f,0.91244f,-0.407687f}, - {0.0256877f,0.959016f,-0.282185f},{0.0291895f,0.966226f,-0.256037f},{0.0167928f,0.990238f,-0.138374f}, - {0.136305f,0.781126f,-0.609314f},{0.0955151f,0.684245f,-0.72297f},{0.0993674f,0.584646f,-0.805181f}, - {0.0338728f,0.890704f,-0.453319f},{0.0484155f,0.77454f,-0.630669f},{0.0636976f,0.841226f,-0.536918f}, - {0.0560249f,0.401556f,-0.914119f},{0.0268241f,0.326384f,-0.944856f},{0.125862f,0.608874f,-0.783218f}, - {0.0741101f,0.485701f,-0.870978f},{0.142412f,0.659992f,-0.737652f},{0.14861f,0.71855f,-0.679412f}, - {-0.0637993f,0.196022f,-0.978522f},{-0.0116501f,0.472378f,-0.881319f},{0.0662311f,0.514541f,-0.854904f}, - {0.00189659f,0.257578f,-0.966256f},{0.0958443f,0.56027f,-0.822746f},{-0.197306f,0.110962f,-0.974042f}, - {-0.0658928f,0.414469f,-0.907675f},{-0.0540224f,0.439905f,-0.896418f},{-0.164717f,0.144236f,-0.975738f}, - {-0.210934f,0.08502f,-0.973796f},{-0.081646f,0.391658f,-0.916481f},{-0.223578f,0.0624871f,-0.972681f}, - {-0.233506f,0.0413979f,-0.971474f},{-0.102042f,0.369768f,-0.923504f},{0.102044f,-0.369767f,-0.923504f}, - {0.123604f,-0.347635f,-0.929447f},{0.0658736f,-0.414472f,-0.907675f},{0.1973f,-0.110963f,-0.974043f}, - {0.210917f,-0.0850214f,-0.973799f},{0.0816379f,-0.391659f,-0.916482f},{0.223573f,-0.0624874f,-0.972682f}, - {0.233508f,-0.0413979f,-0.971473f},{-0.00190271f,-0.257578f,-0.966256f},{-0.0662188f,-0.51454f,-0.854906f}, - {-0.0958526f,-0.560269f,-0.822746f},{0.164734f,-0.144235f,-0.975735f},{0.0116715f,-0.472379f,-0.881318f}, - {0.0638166f,-0.19602f,-0.978521f},{-0.142412f,-0.659992f,-0.737652f},{-0.148611f,-0.71855f,-0.679412f}, - {-0.0741122f,-0.485701f,-0.870978f},{-0.125862f,-0.608874f,-0.783218f},{-0.0560238f,-0.401556f,-0.914119f}, - {-0.0268274f,-0.326385f,-0.944856f},{-0.0338724f,-0.890704f,-0.453319f},{-0.0484116f,-0.77454f,-0.630669f}, - {-0.0636956f,-0.841226f,-0.536918f},{-0.0955126f,-0.684245f,-0.72297f},{-0.0993696f,-0.584646f,-0.80518f}, - {-0.136306f,-0.781126f,-0.609313f},{-0.0355125f,-0.932523f,-0.35936f},{-0.0352907f,-0.91244f,-0.407686f}, - {-0.0382116f,-0.850391f,-0.524763f},{-0.0291876f,-0.966226f,-0.256036f},{-0.025686f,-0.959016f,-0.282185f}, - {-0.0111537f,-0.989269f,-0.145677f},{-0.0167921f,-0.990238f,-0.138374f},{-0.0050596f,-0.999987f,0.0f}, - {0.00138152f,-0.999999f,-1.73582e-014f},{0.05402f,-0.439909f,-0.896416f},{-0.0482827f,-0.65544f,-0.753702f}, - {-0.0158483f,-0.640906f,-0.767455f},{-0.0929347f,-0.700666f,-0.707411f},{0.0658462f,-0.414519f,-0.907655f}, - {-0.0875227f,-0.68419f,-0.724033f},{-0.0738342f,-0.669444f,-0.739184f},{0.0816169f,-0.391685f,-0.916472f}, - {0.101929f,-0.369884f,-0.92347f},{-0.0661576f,-0.514494f,-0.854938f},{-0.154485f,-0.739288f,-0.65543f}, - {-0.167303f,-0.763301f,-0.624004f},{0.0540055f,-0.439948f,-0.896398f},{-0.113792f,-0.718891f,-0.685745f}, - {0.0113873f,-0.472514f,-0.88125f},{-0.198106f,-0.842564f,-0.500839f},{-0.14848f,-0.718253f,-0.679755f}, - {-0.142438f,-0.660203f,-0.737458f},{-0.201887f,-0.812292f,-0.547197f},{-0.125965f,-0.609068f,-0.783051f}, - {-0.193061f,-0.786669f,-0.586412f},{-0.0274602f,-0.940382f,-0.33901f},{-0.0636168f,-0.841289f,-0.536829f}, - {-0.0631375f,-0.914656f,-0.399271f},{-0.136511f,-0.780866f,-0.609601f},{-0.163845f,-0.877955f,-0.449833f}, - {-0.0323448f,-0.961882f,-0.271544f},{-0.0355085f,-0.932581f,-0.359209f},{-0.0338916f,-0.890883f,-0.452967f}, - {-0.0289993f,-0.980011f,-0.196816f},{-0.0291766f,-0.966258f,-0.255917f},{-0.0167184f,-0.990338f,-0.137663f}, - {-0.0198877f,-0.993822f,-0.109189f},{-0.0107279f,-0.999942f,-3.47115e-014f},{-0.0050596f,-0.999987f,-3.47131e-014f}, - {-0.0957495f,-0.559996f,-0.822944f},{-0.191923f,-0.850452f,-0.489793f},{-0.155604f,-0.848968f,-0.505015f}, - {-0.222898f,-0.865832f,-0.447942f},{-0.0875411f,-0.68422f,-0.724003f},{-0.225241f,-0.858046f,-0.461544f}, - {-0.21684f,-0.85279f,-0.47511f},{-0.0738554f,-0.669461f,-0.739167f},{-0.0484446f,-0.655515f,-0.753627f}, - {-0.154458f,-0.739263f,-0.655463f},{-0.221079f,-0.89317f,-0.391626f},{-0.16722f,-0.763157f,-0.624202f}, - {-0.092937f,-0.70069f,-0.707387f},{-0.220895f,-0.874317f,-0.432174f},{-0.113948f,-0.718955f,-0.685653f}, - {-0.235433f,-0.92105f,-0.310221f},{-0.198007f,-0.842424f,-0.501114f},{-0.201874f,-0.8124f,-0.547041f}, - {-0.245744f,-0.907886f,-0.339635f},{-0.19314f,-0.786761f,-0.586263f},{-0.24247f,-0.898676f,-0.365499f}, - {-0.0190519f,-0.976871f,-0.212977f},{-0.0630402f,-0.914689f,-0.399213f},{-0.060284f,-0.966361f,-0.250026f}, - {-0.164177f,-0.877788f,-0.450037f},{-0.184757f,-0.942123f,-0.279767f},{-0.0270421f,-0.9848f,-0.171573f}, - {-0.0323457f,-0.961912f,-0.27144f},{-0.0274934f,-0.940472f,-0.338758f},{-0.0267396f,-0.99172f,-0.125605f}, - {-0.0289918f,-0.980029f,-0.196732f},{-0.0198319f,-0.993882f,-0.108651f},{-0.0211762f,-0.997263f,-0.0708397f}, - {-0.0149749f,-0.999888f,1.73785e-014f},{-0.0107279f,-0.999942f,-1.37458e-007f},{-0.223789f,-0.882982f,-0.412628f}, - {-0.406267f,-0.879976f,0.24615f},{-0.325496f,-0.945544f,-4.37825e-014f},{-0.430021f,-0.825224f,0.366179f}, - {-0.415042f,-0.887589f,0.199814f},{-0.433914f,-0.838449f,0.32973f},{-0.428207f,-0.855563f,0.290948f}, - {-0.403111f,-0.903734f,0.144105f},{-0.372393f,-0.924654f,0.0796197f},{-0.351815f,-0.863964f,0.360266f}, - {-0.287563f,-0.817015f,0.499794f},{-0.289017f,-0.858968f,0.422662f},{-0.415666f,-0.874009f,0.251654f}, - {-0.415625f,-0.815734f,0.402286f},{-0.404737f,-0.863176f,0.301853f},{-0.271311f,-0.756732f,0.594766f}, - {-0.274232f,-0.786642f,0.553165f},{-0.279221f,-0.809642f,0.516252f},{-0.27568f,-0.775661f,0.567759f}, - {-0.271774f,-0.836827f,0.475247f},{-0.268981f,-0.798255f,0.538923f},{-0.0705437f,-0.73515f,0.674224f}, - {-0.215371f,-0.747875f,0.627932f},{-0.0720223f,-0.716587f,0.693769f},{-0.258526f,-0.76542f,0.589319f}, - {-0.256658f,-0.7395f,0.622308f},{-0.215327f,-0.725968f,0.65315f},{0.0536227f,-0.695311f,0.716706f}, - {0.0553596f,-0.711787f,0.700211f},{0.0526367f,-0.683635f,0.727924f},{0.05402f,-0.696847f,0.715182f}, - {0.0443476f,-0.671901f,0.739312f},{0.0456343f,-0.680533f,0.731295f},{0.0375712f,-0.660597f,0.7498f}, - {0.0392392f,-0.666369f,0.744589f},{0.0263913f,-0.652044f,0.757722f},{0.0242326f,-0.64918f,0.760249f}, - {0.00909943f,-0.636797f,0.770977f},{-0.355806f,-0.819405f,0.449419f},{-0.305399f,-0.934555f,-0.182588f}, - {-0.272835f,-0.943202f,-0.189554f},{-0.325025f,-0.931091f,-0.165614f},{-0.225246f,-0.858058f,-0.46152f}, - {-0.33101f,-0.92805f,-0.170751f},{-0.326585f,-0.928601f,-0.176191f},{-0.216857f,-0.852794f,-0.475095f}, - {-0.192095f,-0.850459f,-0.489713f},{-0.223794f,-0.882969f,-0.412652f},{-0.282168f,-0.946723f,-0.15523f}, - {-0.257023f,-0.954853f,-0.148976f},{-0.222888f,-0.865843f,-0.447925f},{-0.308825f,-0.937467f,-0.160573f}, - {-0.220917f,-0.874341f,-0.432116f},{-0.27811f,-0.951625f,-0.130631f},{-0.266557f,-0.95615f,-0.121342f}, - {-0.245706f,-0.907932f,-0.33954f},{-0.267282f,-0.953392f,-0.140014f},{-0.242529f,-0.8987f,-0.365402f}, - {-0.221015f,-0.893122f,-0.391771f},{-0.156094f,-0.98259f,-0.100754f},{-0.0601717f,-0.966375f,-0.249998f}, - {-0.185191f,-0.942001f,-0.279891f},{-0.235357f,-0.921009f,-0.310401f},{-0.258402f,-0.959761f,-0.10994f}, - {-0.0120606f,-0.997001f,-0.0764369f},{-0.0270479f,-0.98481f,-0.171515f},{-0.0190983f,-0.976903f,-0.212827f}, - {-0.0245852f,-0.995645f,-0.089921f},{-0.0208988f,-0.997876f,-0.0617047f},{-0.0267358f,-0.991726f,-0.125558f}, - {-0.0211402f,-0.997288f,-0.0705024f},{-0.0225064f,-0.998719f,-0.0453191f},{-0.0173199f,-0.99985f,0.0f}, - {-0.020436f,-0.999463f,-0.0256193f},{-0.0149749f,-0.999888f,0.0f},{-0.354145f,-0.93519f,-0.000397467f}, - {-0.325394f,-0.945578f,-0.00041274f},{-0.37057f,-0.928805f,-0.000358322f},{-0.330975f,-0.928043f,-0.170857f}, - {-0.376582f,-0.926383f,-0.00037055f},{-0.37303f,-0.927819f,-0.00038323f},{-0.326569f,-0.928592f,-0.176265f}, - {-0.30552f,-0.934514f,-0.182597f},{-0.282148f,-0.946691f,-0.155461f},{-0.318954f,-0.94777f,-0.000340813f}, - {-0.280289f,-0.959916f,-0.000332774f},{-0.324972f,-0.931084f,-0.165758f},{-0.355065f,-0.934841f,-0.000347719f}, - {-0.308718f,-0.937472f,-0.160746f},{-0.286908f,-0.957958f,-0.000297201f},{-0.286152f,-0.958184f,-0.000278036f}, - {-0.278077f,-0.951596f,-0.130911f},{-0.271594f,-0.962412f,-0.000317168f},{-0.267276f,-0.953349f,-0.140321f}, - {-0.257072f,-0.954789f,-0.149307f},{-0.111694f,-0.993743f,-0.00021707f},{-0.156718f,-0.982439f,-0.101254f}, - {-0.236074f,-0.971735f,-0.000236761f},{-0.25861f,-0.95965f,-0.110423f},{-0.266503f,-0.956116f,-0.121731f}, - {-0.270112f,-0.962829f,-0.000258194f},{-0.00863986f,-0.999963f,-0.000162909f},{-0.0121313f,-0.996969f,-0.0768439f}, - {-0.00228269f,-0.999997f,-0.000191989f},{-0.0244896f,-0.995608f,-0.0903648f},{-0.0172187f,-0.999852f,-0.000131616f}, - {-0.0209353f,-0.997851f,-0.0620942f},{-0.0225295f,-0.998704f,-0.0456412f},{-0.0196018f,-0.999808f,-9.66914e-005f}, - {-0.0193208f,-0.999813f,-5.44735e-005f},{-0.0204332f,-0.99946f,-0.0257239f},{-0.0176994f,-0.999843f,0.0f}, - {0.0f,0.271326f,0.962488f},{0.0f,0.253151f,0.967427f},{0.0f,0.26258f,0.96491f}, - {0.0f,0.147431f,0.989072f},{0.0f,0.162743f,0.986669f},{0.0f,0.209863f,0.977731f}, - {0.0f,0.243346f,0.96994f},{0.0f,0.20324f,0.979129f},{0.0f,0.0844041f,0.996432f}, - {0.0f,0.0211631f,0.999776f},{0.0f,0.0519304f,0.998651f},{0.0f,0.0826965f,0.996575f}, - {0.0f,0.113463f,0.993542f},{0.0f,0.11544f,0.993314f},{0.0f,0.119575f,0.992825f}, - {0.0f,0.125688f,0.99207f},{0.0f,0.133439f,0.991057f},{0.0f,0.142487f,0.989797f}, - {0.0f,0.1524f,0.988319f},{6.49463e-018f,-0.123071f,-0.992398f},{-1.11865e-017f,-0.13416f,-0.99096f}, - {-3.82822e-018f,-0.134575f,-0.990903f},{1.60303e-018f,-0.113491f,-0.993539f},{7.81879e-018f,-0.0902913f,-0.995915f}, - {9.91352e-018f,-0.0774828f,-0.996994f},{1.03021e-017f,-0.0670916f,-0.997747f},{-1.68674e-018f,-0.0438914f,-0.999036f}, - {3.8365e-018f,-0.147436f,-0.989072f},{8.0814e-018f,-0.0206911f,-0.999786f},{8.05703e-018f,-0.160907f,-0.98697f}, - {1.33567e-017f,-0.190446f,-0.981698f},{0.0f,-0.300752f,-0.953702f},{0.0f,-0.299196f,-0.954192f}, - {-9.04092e-018f,-0.266455f,-0.963847f},{3.88234e-018f,-0.25387f,-0.967238f},{-1.05499e-017f,-0.246065f,-0.969253f}, - {3.20684e-018f,-0.294624f,-0.955613f},{-3.12775e-018f,-0.287357f,-0.957824f},{1.04562e-017f,-0.277782f,-0.960644f}, - {1.18742e-017f,-0.240601f,-0.970624f},{-6.77626e-018f,1.0f,1.27676e-015f},{-6.77626e-018f,1.0f,1.27052e-015f}, - {0.0f,1.0f,1.27676e-015f},{-3.2255e-018f,1.0f,1.2844e-015f},{-2.22261e-018f,1.0f,1.27052e-015f}, - {-2.05998e-018f,1.0f,1.27052e-015f},{2.92735e-018f,1.0f,1.2844e-015f},{0.0f,1.0f,1.27052e-015f}, - {1.0f,-2.22045e-016f,0.0f},{1.0f,4.44089e-016f,0.0f},{1.0f,8.88178e-016f,0.0f}, - {0.44501f,-0.895526f,0.0f},{0.287138f,-0.957889f,0.0f},{0.264225f,-0.964461f,0.0f}, - {0.0777153f,-0.996976f,0.0f},{0.484196f,-0.87496f,0.0f},{0.615293f,-0.788298f,0.0f}, - {0.658728f,-0.752381f,0.0f},{0.777371f,-0.629043f,0.0f},{0.803054f,-0.595906f,0.0f}, - {0.899416f,-0.437093f,0.0f},{0.910992f,-0.412424f,0.0f},{0.974657f,-0.223703f,0.0f}, - {0.977683f,-0.210088f,0.0f},{1.0f,1.04131e-014f,0.0f},{1.0f,5.20654e-015f,0.0f}, - {0.62939f,0.77709f,1.00199e-015f},{0.608066f,0.793886f,8.62015e-016f},{0.773996f,0.63319f,7.65657e-016f}, - {1.0f,-6.28037e-016f,-6.81933e-031f},{1.0f,2.51215e-015f,2.72773e-030f},{0.975403f,0.22043f,2.71985e-016f}, - {0.902955f,0.429735f,5.30243e-016f},{0.974096f,0.226136f,2.90187e-016f},{0.89737f,0.44128f,5.88046e-016f}, - {0.786233f,0.61793f,7.01456e-016f},{0.439791f,0.8981f,9.6132e-016f},{0.22612f,0.974099f,1.13394e-015f}, - {0.422231f,0.906488f,1.14646e-015f},{0.216293f,0.976328f,1.13616e-015f},{3.14018e-016f,1.0f,1.18453e-015f}, - {0.0f,0.636824f,0.771009f},{4.41885e-018f,0.636824f,0.771009f},{0.0764224f,-0.976094f,0.203472f}, - {0.0777152f,-0.996976f,2.3946e-009f},{0.0777152f,-0.996976f,1.82309e-009f},{5.69588e-006f,0.0519161f,0.998651f}, - {0.0391237f,-0.456027f,0.889106f},{1.35909e-005f,0.0825944f,0.996583f},{0.0691877f,-0.861638f,0.502785f}, - {0.0509221f,-0.636981f,0.769196f},{0.0777152f,-0.996976f,6.33733e-010f},{0.0777152f,-0.996976f,-2.35021e-015f}, - {0.0749912f,-0.917412f,0.390808f},{0.0700812f,-0.856741f,0.510962f},{0.0305668f,-0.282672f,0.95873f}, - {0.0398436f,-0.436736f,0.898707f},{0.0583498f,-0.663385f,0.746f},{0.0286465f,-0.347654f,0.937185f}, - {0.0674458f,-0.854338f,0.515323f},{1.67095e-011f,0.113462f,0.993542f},{3.90358e-007f,0.0211583f,0.999776f}, - {0.0777152f,-0.996976f,1.22379e-009f},{0.707107f,0.115053f,0.697684f},{0.702691f,-0.041302f,0.710295f}, - {0.918265f,-0.13998f,0.3704f},{0.664219f,-0.196116f,0.721354f},{0.76718f,-0.515388f,0.381851f}, - {0.863385f,-0.335631f,0.376721f},{0.490492f,-0.464798f,0.737143f},{0.467108f,-0.794304f,0.388447f}, - {0.632878f,-0.671315f,0.385748f},{0.0777152f,-0.996976f,8.89301e-008f},{0.289241f,-0.957256f,8.65022e-007f}, - {0.278854f,-0.87754f,0.390082f},{0.256675f,-0.171643f,0.951135f},{0.309894f,-0.101729f,0.945313f}, - {-4.90387e-007f,0.133372f,0.991066f},{0.113588f,-0.26464f,0.957634f},{0.216859f,-0.631152f,0.744728f}, - {0.189962f,-0.227046f,0.955178f},{0.368095f,0.151307f,0.917394f},{0.366433f,0.0644563f,0.928209f}, - {-1.36278e-016f,0.162743f,0.986669f},{-4.77403e-007f,0.152368f,0.988324f},{0.929788f,0.0598835f,0.363191f}, - {0.977729f,-0.20987f,1.07918e-005f},{1.0f,1.37117e-008f,8.31709e-008f},{0.34688f,-0.0217202f,0.937658f}, - {-1.01854e-006f,0.142402f,0.989809f},{0.362795f,-0.563926f,0.741867f},{0.592707f,-0.339591f,0.730326f}, - {-7.18981e-007f,0.115426f,0.993316f},{0.0305691f,-0.282671f,0.95873f},{1.58673e-014f,0.113463f,0.993542f}, - {0.0583523f,-0.663385f,0.746f},{0.911397f,-0.411528f,6.3595e-006f},{0.0749922f,-0.917412f,0.390808f}, - {0.804305f,-0.594217f,4.18309e-006f},{-1.78317e-007f,0.125613f,0.992079f},{0.660117f,-0.751163f,2.58675e-006f}, - {1.33025e-007f,0.11953f,0.992831f},{0.485516f,-0.874228f,4.30103e-007f},{0.929788f,0.0599047f,0.363187f}, - {1.0f,-6.95989e-015f,-4.64483e-014f},{0.87226f,0.0993814f,0.478837f},{2.41719e-015f,0.203217f,0.979134f}, - {0.489042f,0.177258f,0.85406f},{0.87226f,0.119006f,0.474341f},{0.489042f,0.212261f,0.84604f}, - {0.368095f,0.151316f,0.917393f},{0.0f,0.162743f,0.986669f},{0.707107f,0.115076f,0.69768f}, - {0.640795f,0.750862f,0.159966f},{0.633896f,0.690083f,0.34923f},{0.773588f,0.633689f,4.47054e-006f}, - {0.87226f,0.119072f,0.474324f},{0.974072f,0.226237f,4.35889e-005f},{0.89728f,0.441461f,1.9127e-005f}, - {0.831026f,0.314908f,0.458507f},{0.608053f,0.793896f,1.75823e-008f},{0.56074f,0.604452f,0.56587f}, - {0.362672f,0.475573f,0.801436f},{0.412157f,0.425828f,0.805479f},{0.748579f,0.4929f,0.443484f}, - {0.489042f,0.2123f,0.84603f},{0.461687f,0.325164f,0.825296f},{2.66133e-006f,0.271328f,0.962487f}, - {3.42352e-007f,0.262654f,0.96489f},{-1.24911e-015f,0.243346f,0.96994f},{2.24678e-006f,0.253185f,0.967418f}, - {0.0486817f,-0.640323f,-0.766562f},{0.0370848f,-0.513173f,-0.857483f},{0.0666236f,-0.875571f,-0.478474f}, - {0.0775964f,-0.996904f,-0.0127208f},{0.0776561f,-0.996948f,-0.00805679f},{0.0653022f,-0.880476f,-0.469572f}, - {0.0659754f,-0.878213f,-0.473698f},{0.0660304f,-0.857586f,-0.510084f},{0.0777085f,-0.996974f,-0.00192217f}, - {0.0777145f,-0.996976f,-0.00043536f},{0.0758877f,-0.977579f,-0.196417f},{5.59703e-006f,-0.043964f,-0.999033f}, - {0.0257948f,-0.350245f,-0.936303f},{0.0365804f,-0.52637f,-0.849468f},{1.00329e-005f,-0.0672212f,-0.997738f}, - {0.0410888f,-0.616326f,-0.786418f},{0.0665963f,-0.902304f,-0.425926f},{0.036057f,-0.539132f,-0.841449f}, - {4.01696e-007f,-0.0206959f,-0.999786f},{3.419e-007f,-0.113495f,-0.993538f},{0.0776912f,-0.996967f,-0.00445871f}, - {1.17965e-005f,-0.0904433f,-0.995902f},{-6.16506e-018f,0.123071f,-0.992398f},{1.30823e-017f,0.13416f,-0.99096f}, - {4.86852e-018f,0.134575f,-0.990903f},{-8.07206e-018f,0.113491f,-0.993539f},{1.48949e-020f,0.0902913f,-0.995915f}, - {-3.75189e-018f,0.0774828f,-0.996994f},{5.48641e-018f,0.0670916f,-0.997747f},{-2.91677e-017f,0.0438914f,-0.999036f}, - {3.19289e-018f,0.147436f,-0.989072f},{-5.39916e-018f,0.0206911f,-0.999786f},{-1.04945e-017f,0.160907f,-0.98697f}, - {-2.1531e-018f,0.190446f,-0.981698f},{0.0f,0.300752f,-0.953702f},{-1.03859e-017f,0.299196f,-0.954192f}, - {-1.0491e-017f,0.266455f,-0.963847f},{-5.26397e-018f,0.25387f,-0.967238f},{1.44857e-017f,0.246065f,-0.969253f}, - {0.0f,0.294624f,-0.955613f},{1.04255e-017f,0.287357f,-0.957824f},{0.0f,0.277782f,-0.960644f}, - {5.2824e-018f,0.240601f,-0.970624f},{0.0f,-0.271326f,0.962488f},{0.0f,-0.253151f,0.967427f}, - {0.0f,-0.26258f,0.96491f},{0.0f,-0.147431f,0.989072f},{0.0f,-0.162743f,0.986669f}, - {0.0f,-0.209863f,0.977731f},{0.0f,-0.243346f,0.96994f},{0.0f,-0.20324f,0.979129f}, - {0.0f,-0.0844041f,0.996432f},{0.0f,-0.0211631f,0.999776f},{0.0f,-0.0519304f,0.998651f}, - {0.0f,-0.0826965f,0.996575f},{0.0f,-0.113463f,0.993542f},{0.0f,-0.115523f,0.993305f}, - {0.0f,-0.119556f,0.992828f},{0.0f,-0.125642f,0.992076f},{0.0f,-0.133401f,0.991062f}, - {0.0f,-0.142437f,0.989804f},{0.0f,-0.152342f,0.988328f},{0.0f,-1.0f,-1.26288e-015f}, - {0.0f,-1.0f,-1.26775e-015f},{-1.0f,-1.77636e-015f,0.0f},{-0.44501f,0.895526f,0.0f}, - {-0.287142f,0.957888f,0.0f},{-0.264225f,0.964461f,0.0f},{-0.0777153f,0.996976f,0.0f}, - {-0.484193f,0.874961f,0.0f},{-0.615293f,0.788298f,0.0f},{-0.658731f,0.752379f,0.0f}, - {-0.777371f,0.629043f,0.0f},{-0.803054f,0.595907f,0.0f},{-0.899416f,0.437093f,0.0f}, - {-0.910997f,0.412414f,0.0f},{-0.974657f,0.223703f,0.0f},{-0.977682f,0.210092f,0.0f}, - {-1.0f,-1.04131e-014f,0.0f},{-1.0f,-5.20654e-015f,0.0f},{-0.608066f,-0.793886f,-1.01875e-015f}, - {-0.773996f,-0.63319f,-7.50031e-016f},{-0.62939f,-0.77709f,-9.20484e-016f},{-0.89737f,-0.44128f,-5.60822e-016f}, - {-0.786233f,-0.61793f,-7.31954e-016f},{-0.975403f,-0.22043f,-2.72665e-016f},{-0.902955f,-0.429735f,-5.0373e-016f}, - {-0.974096f,-0.226136f,-2.80072e-016f},{-0.439791f,-0.8981f,-1.24113e-015f},{-0.22612f,-0.974099f,-1.15385e-015f}, - {-0.422231f,-0.906488f,-1.07376e-015f},{-0.216293f,-0.976328f,-1.15649e-015f},{-3.14018e-016f,-1.0f,-1.18453e-015f}, - {-4.24524e-018f,-0.636824f,0.771009f},{9.31099e-019f,-0.636824f,0.771009f},{-5.78592e-018f,-0.636824f,0.771009f}, - {-5.00079e-018f,-0.636824f,0.771009f},{0.0f,-0.636824f,0.771009f},{1.67186e-018f,-0.636824f,0.771009f}, - {4.01246e-018f,-0.636824f,0.771009f},{2.67498e-018f,-0.636824f,0.771009f},{5.34995e-018f,-0.636824f,0.771009f}, - {-2.00623e-018f,-0.636824f,0.771009f},{-3.77969e-018f,-0.636824f,0.771009f},{-2.75858e-018f,-0.636824f,0.771009f}, - {2.26987e-019f,-0.636824f,0.771009f},{-5.34995e-018f,-0.636824f,0.771009f},{2.20943e-018f,-0.636824f,0.771009f}, - {-0.076394f,0.975689f,0.205416f},{-0.0777152f,0.996976f,2.40026e-009f},{-0.0777152f,0.996976f,1.82763e-009f}, - {-5.69588e-006f,-0.0519161f,0.998651f},{-0.0391237f,0.456027f,0.889106f},{-1.3591e-005f,-0.0825944f,0.996583f}, - {-0.0691877f,0.861638f,0.502785f},{-0.050805f,0.635452f,0.770467f},{-0.0777152f,0.996976f,6.35071e-010f}, - {-0.0777152f,0.996976f,1.31007e-017f},{-0.0749912f,0.917412f,0.390808f},{-0.0700812f,0.856741f,0.510962f}, - {-0.0305668f,0.282672f,0.95873f},{-0.0398436f,0.436736f,0.898707f},{-0.0583498f,0.663385f,0.746f}, - {-0.0285025f,0.345792f,0.937878f},{-0.0673689f,0.853315f,0.517025f},{-1.67093e-011f,-0.113462f,0.993542f}, - {-3.90359e-007f,-0.0211583f,0.999776f},{-0.0777152f,0.996976f,1.22684e-009f},{-0.362409f,0.564161f,0.741878f}, - {-0.112973f,0.264855f,0.957648f},{-0.215685f,0.631536f,0.744744f},{-0.659094f,0.75206f,-1.94181e-007f}, - {-0.631911f,0.672214f,0.385768f},{-0.466608f,0.794595f,0.388454f},{-0.803414f,0.595421f,4.71637e-006f}, - {-0.0749922f,0.917412f,0.390808f},{-0.28767f,0.95773f,5.42362e-007f},{-0.277342f,0.878015f,0.390091f}, - {-0.346813f,0.0219211f,0.937678f},{1.10489e-006f,-0.133312f,0.991074f},{-0.309574f,0.102261f,0.94536f}, - {-0.0777152f,0.996976f,-3.03639e-015f},{-0.702528f,0.0424957f,0.710387f},{-0.929788f,-0.0598835f,0.363191f}, - {-0.707107f,-0.115053f,0.697684f},{-0.911187f,0.411994f,8.1719e-006f},{-0.863203f,0.336083f,0.376735f}, - {-0.766361f,0.516581f,0.381883f},{-0.918012f,0.141492f,0.37045f},{-0.664088f,0.196474f,0.721378f}, - {4.30608e-007f,-0.152291f,0.988336f},{7.6959e-007f,-0.142379f,0.989812f},{-0.366351f,-0.0637951f,0.928287f}, - {-0.48975f,0.465521f,0.73718f},{-0.18976f,0.227177f,0.955187f},{-0.368095f,-0.151307f,0.917394f}, - {1.2436e-015f,-0.162743f,0.986669f},{-0.484991f,0.874519f,1.45876e-006f},{-0.0583523f,0.663385f,0.746f}, - {-0.0305691f,0.282671f,0.95873f},{5.79189e-014f,-0.113463f,0.993542f},{9.38329e-007f,-0.115403f,0.993319f}, - {-0.256288f,0.172046f,0.951166f},{3.02192e-008f,-0.119516f,0.992832f},{-3.80451e-007f,-0.125569f,0.992085f}, - {-0.59209f,0.340547f,0.730382f},{-0.977393f,0.21143f,5.28771e-006f},{-0.929788f,-0.0599047f,0.363187f}, - {-1.0f,6.95989e-015f,-4.64483e-014f},{-0.87226f,-0.0993814f,0.478837f},{-1.63982e-015f,-0.203217f,0.979134f}, - {-0.489042f,-0.177258f,0.85406f},{-0.87226f,-0.119006f,0.474341f},{-0.489042f,-0.212261f,0.84604f}, - {-0.368095f,-0.151316f,0.917393f},{-3.30488e-015f,-0.162743f,0.986669f},{-0.707107f,-0.115076f,0.69768f}, - {-0.640795f,-0.750862f,0.159966f},{-0.633896f,-0.690083f,0.34923f},{-0.773588f,-0.633689f,4.47054e-006f}, - {-0.87226f,-0.119072f,0.474324f},{-0.974072f,-0.226237f,4.35889e-005f},{-0.89728f,-0.441461f,1.9127e-005f}, - {-0.831026f,-0.314908f,0.458507f},{-0.608053f,-0.793896f,1.75822e-008f},{-0.56074f,-0.604452f,0.56587f}, - {-0.362672f,-0.475573f,0.801436f},{-0.412157f,-0.425828f,0.805479f},{-0.748579f,-0.4929f,0.443484f}, - {-0.489042f,-0.2123f,0.84603f},{-0.461687f,-0.325164f,0.825296f},{-2.66133e-006f,-0.271328f,0.962487f}, - {-3.42352e-007f,-0.262654f,0.96489f},{-1.05425e-016f,-0.243346f,0.96994f},{-2.24678e-006f,-0.253185f,0.967418f}, - {-0.0666236f,0.875571f,-0.478474f},{-0.0486817f,0.640323f,-0.766562f},{-0.0370848f,0.513173f,-0.857483f}, - {-0.0257948f,0.350245f,-0.936303f},{-4.01482e-007f,0.0206959f,-0.999786f},{-5.59705e-006f,0.0439641f,-0.999033f}, - {-0.0410888f,0.616326f,-0.786418f},{-0.036057f,0.539132f,-0.841449f},{-3.41892e-007f,0.113495f,-0.993538f}, - {-0.0653022f,0.880476f,-0.469573f},{-0.0776561f,0.996948f,-0.00805682f},{-0.0659754f,0.878213f,-0.473698f}, - {-0.0665963f,0.902304f,-0.425926f},{-0.0775964f,0.996904f,-0.0127207f},{-0.0776912f,0.996967f,-0.00445868f}, - {-0.0660304f,0.857586f,-0.510084f},{-0.0365804f,0.52637f,-0.849468f},{-0.0777085f,0.996974f,-0.00192216f}, - {-0.0777145f,0.996976f,-0.000435368f},{-0.0758877f,0.977579f,-0.196417f},{-1.00329e-005f,0.0672213f,-0.997738f}, - {-1.17964e-005f,0.0904433f,-0.995902f},{0.970979f,-0.239165f,0.0f},{1.0f,-2.21189e-011f,0.0f}, - {0.35609f,-0.934452f,0.0f},{0.569129f,-0.822248f,0.0f},{0.568041f,-0.823f,0.0f}, - {0.885313f,-0.464996f,0.0f},{0.74925f,-0.662288f,0.0f},{0.885933f,-0.463813f,0.0f}, - {-0.119912f,-0.992785f,0.0f},{-0.354158f,-0.935185f,0.0f},{-0.120012f,-0.992772f,0.0f}, - {0.355204f,-0.934789f,0.0f},{0.120803f,-0.992676f,0.0f},{0.12127f,-0.99262f,0.0f}, - {-0.567216f,-0.823569f,0.0f},{-0.7483f,-0.663361f,0.0f},{-0.567703f,-0.823234f,0.0f}, - {-0.353989f,-0.935249f,0.0f},{-0.748241f,-0.663427f,0.0f},{-0.885185f,-0.465239f,0.0f}, - {-0.885281f,-0.465056f,0.0f},{-0.970894f,-0.239511f,0.0f},{-0.970844f,-0.239712f,0.0f}, - {0.748446f,-0.663196f,0.0f},{0.971139f,-0.238516f,0.0f},{0.0f,1.11022e-016f,-1.0f}, - {0.0f,-1.11022e-016f,-1.0f},{0.0f,-5.55112e-017f,-1.0f},{0.0f,5.55112e-017f,-1.0f}, - {1.0f,-1.38778e-017f,0.0f},{0.959454f,-0.281866f,3.5075e-017f},{0.959948f,-0.28018f,-4.21701e-019f}, - {0.142833f,-0.989747f,2.49501e-017f},{0.415948f,-0.909389f,-1.25209e-017f},{0.413963f,-0.910294f,-4.85725e-018f}, - {0.655247f,-0.755415f,1.3143e-017f},{0.844985f,-0.53479f,1.81431e-018f},{0.840053f,-0.542504f,1.76327e-018f}, - {-0.413963f,-0.910294f,-1.17305e-017f},{-0.142833f,-0.989747f,2.30199e-017f},{-0.415948f,-0.909389f,2.57792e-017f}, - {0.141528f,-0.989934f,-9.05295e-018f},{-0.141527f,-0.989934f,2.56689e-017f},{-0.840053f,-0.542504f,-5.88236e-019f}, - {-0.655247f,-0.755415f,2.43207e-017f},{-0.844985f,-0.53479f,-3.19936e-017f},{-0.655503f,-0.755193f,8.23455e-018f}, - {-0.959948f,-0.28018f,3.039e-017f},{-0.959454f,-0.281866f,-5.9836e-018f},{0.655503f,-0.755193f,1.3143e-017f}, - {0.962605f,-0.270909f,0.0f},{1.0f,-4.07586e-012f,0.0f},{0.309304f,-0.950963f,0.0f}, - {0.588229f,-0.808694f,0.0f},{0.409074f,-0.912501f,0.0f},{0.650924f,-0.759143f,0.0f}, - {0.811958f,-0.583716f,0.0f},{0.840179f,-0.542309f,0.0f},{-0.307814f,-0.951446f,0.0f}, - {-0.424076f,-0.905627f,0.0f},{-0.587751f,-0.809042f,0.0f},{0.134185f,-0.990956f,0.0f}, - {-0.152115f,-0.988363f,0.0f},{2.72147e-017f,-1.0f,0.0f},{-0.807656f,-0.589654f,0.0f}, - {-0.662432f,-0.749122f,0.0f},{-0.846367f,-0.5326f,0.0f},{-0.961254f,-0.275665f,0.0f}, - {-0.950842f,-0.309676f,0.0f},{0.952103f,-0.305779f,0.0f},{0.962289f,-0.272029f,0.0f}, - {1.0f,5.92119e-016f,0.0f},{1.0f,-1.60011e-012f,0.0f},{0.410952f,-0.911657f,0.0f}, - {0.650115f,-0.759835f,0.0f},{0.84148f,-0.540288f,0.0f},{-0.149984f,-0.988688f,0.0f}, - {-0.424076f,-0.905627f,0.0f},{0.137383f,-0.990518f,0.0f},{-0.661313f,-0.75011f,0.0f}, - {-0.844868f,-0.534974f,0.0f},{-0.960674f,-0.277678f,0.0f},{-1.0f,-1.19209e-007f,0.0f}, - {-0.988362f,0.152121f,0.0f},{-1.0f,1.20609e-016f,0.0f},{-0.990957f,-0.134181f,0.0f}, - {-0.905627f,0.424076f,0.0f},{-0.951446f,0.307814f,0.0f},{-0.809042f,0.587751f,0.0f}, - {-0.749088f,0.66247f,0.0f},{-0.309676f,0.950842f,0.0f},{-0.589654f,0.807656f,0.0f}, - {-0.532573f,0.846384f,0.0f},{-0.275761f,0.961226f,0.0f},{6.66134e-016f,1.0f,0.0f}, - {-0.950963f,-0.309304f,0.0f},{-0.912502f,-0.409073f,0.0f},{-0.808694f,-0.588229f,0.0f}, - {-0.583716f,-0.811958f,0.0f},{-0.759164f,-0.6509f,0.0f},{-0.305779f,-0.952103f,0.0f}, - {-0.542323f,-0.84017f,0.0f},{-0.270837f,-0.962625f,0.0f},{1.18424e-015f,-1.0f,0.0f}, - {-1.11022e-015f,-1.0f,0.0f},{-0.948416f,0.317028f,0.0f},{-0.804232f,0.594315f,0.0f}, - {-0.582662f,0.812715f,0.0f},{-0.305357f,0.952238f,0.0f},{-0.999985f,0.00550409f,0.0f}, - {-1.4803e-016f,1.0f,0.0f},{-1.19209e-007f,1.0f,0.0f},{-1.0f,-5.5717e-017f,0.0f}, - {-0.951973f,-0.306183f,0.0f},{-0.811248f,-0.584702f,0.0f},{-0.589388f,-0.80785f,0.0f}, - {-0.299688f,-0.954037f,0.0f},{5.92119e-016f,-1.0f,0.0f},{6.66134e-016f,-1.0f,0.0f}, - {-1.0f,3.70074e-017f,3.42388e-034f},{-0.951446f,-0.307814f,5.69571e-018f},{-1.0f,4.16334e-017f,3.85186e-034f}, - {-0.809042f,0.587751f,2.78932e-017f},{-0.950963f,0.309304f,3.37619e-017f},{-0.808694f,0.588229f,1.0203e-017f}, - {-0.951446f,0.307814f,-2.84786e-018f},{-0.589654f,0.807656f,7.32347e-018f},{-0.305779f,0.952103f,-2.03109e-017f}, - {1.4803e-016f,1.0f,0.0f},{-0.309676f,0.950842f,-7.83488e-018f},{-0.583716f,0.811958f,-2.06583e-017f}, - {1.66533e-016f,1.0f,0.0f},{-0.809042f,-0.587751f,-1.49703e-017f},{-0.808694f,-0.588229f,-1.08844e-017f}, - {-0.583716f,-0.811958f,-3.00485e-017f},{-0.589654f,-0.807656f,-1.09108e-017f},{-0.305779f,-0.952103f,0.0f}, - {-0.309676f,-0.950842f,0.0f},{6.93889e-017f,-1.0f,0.0f},{-0.822897f,0.568191f,0.0f}, - {-0.935249f,0.353989f,0.0f},{-0.935058f,0.354494f,0.0f},{-0.992772f,0.120012f,0.0f}, - {-0.823234f,0.567703f,0.0f},{-0.992699f,0.120619f,0.0f},{-0.663427f,0.748241f,0.0f}, - {-0.662949f,0.748664f,0.0f},{-0.465056f,0.885281f,0.0f},{-0.992744f,-0.12025f,0.0f}, - {-0.46429f,0.885683f,0.0f},{-0.239511f,0.970894f,0.0f},{-8.88178e-017f,1.0f,0.0f}, - {-0.239079f,0.971f,0.0f},{-0.99262f,-0.12127f,0.0f},{-0.934452f,-0.35609f,0.0f}, - {-0.935095f,-0.354397f,0.0f},{-0.823076f,-0.567931f,0.0f},{-0.822248f,-0.569129f,0.0f}, - {-0.662288f,-0.74925f,0.0f},{-0.663484f,-0.748191f,0.0f},{-0.463813f,-0.885933f,0.0f}, - {-0.465389f,-0.885106f,0.0f},{-0.23961f,-0.970869f,0.0f},{-0.238516f,-0.971139f,0.0f}, - {-1.45407e-013f,-1.0f,0.0f},{-2.2119e-011f,-1.0f,0.0f},{0.224573f,0.0806869f,-0.971111f}, - {0.167824f,0.115976f,-0.978971f},{0.206583f,0.0936942f,-0.973933f},{-0.00431306f,0.212777f,-0.977091f}, - {0.0544436f,0.17217f,-0.983562f},{0.0150728f,0.210353f,-0.977509f},{-0.000588626f,0.24749f,-0.96889f}, - {0.0534267f,0.200182f,-0.978301f},{0.0200864f,0.239984f,-0.970569f},{-0.00860874f,0.0134776f,-0.999872f}, - {-0.0575724f,0.0558224f,-0.996779f},{-0.0251275f,0.0228466f,-0.999423f},{0.119876f,0.131908f,-0.983987f}, - {0.114692f,0.135331f,-0.98414f},{0.0967618f,0.106577f,-0.989585f},{0.127645f,0.127565f,-0.983582f}, - {-0.0682479f,0.0434816f,-0.99672f},{-0.0621953f,0.0416591f,-0.997194f},{-0.102888f,0.0678076f,-0.992379f}, - {0.00861069f,-0.0134804f,-0.999872f},{0.0575731f,-0.0558295f,-0.996779f},{0.0251269f,-0.0228463f,-0.999423f}, - {-0.0700992f,0.042481f,-0.996635f},{-0.0679419f,0.0389583f,-0.996928f},{-0.0653011f,0.0312083f,-0.997377f}, - {-0.0236813f,-0.0488646f,-0.998525f},{-0.00381403f,-0.0123869f,-0.999916f},{-0.136635f,-0.122955f,-0.982961f}, - {-0.15616f,-0.0744603f,-0.984921f},{-0.146051f,-0.11848f,-0.982157f},{-0.0534268f,-0.20018f,-0.978301f}, - {-0.0200864f,-0.239985f,-0.970569f},{0.000588612f,-0.247488f,-0.968891f},{0.0374113f,-0.0911775f,-0.995132f}, - {-0.091503f,-0.164561f,-0.982113f},{-0.129057f,-0.132869f,-0.982695f},{-0.138732f,-0.128065f,-0.982015f}, - {0.0201007f,-0.253059f,-0.967242f},{-0.0338838f,-0.207008f,-0.977752f},{-0.206583f,-0.0937007f,-0.973932f}, - {-0.149271f,-0.126712f,-0.980644f},{-0.164764f,-0.113835f,-0.979742f},{-0.224573f,-0.0806854f,-0.971111f}, - {-0.167824f,-0.115975f,-0.978971f},{-0.282538f,-0.0476595f,-0.958071f},{-0.245617f,-0.0601369f,-0.9675f}, - {-0.189505f,-0.099067f,-0.976869f},{-0.300652f,-0.0257387f,-0.953386f},{-0.189498f,-0.0999932f,-0.976776f}, - {-0.173184f,-0.108516f,-0.978893f},{-0.17428f,-0.107387f,-0.978823f},{-0.110576f,-0.155908f,-0.981563f}, - {-0.172359f,-0.107733f,-0.979125f},{-0.233122f,-0.0781727f,-0.9693f},{-0.0246582f,0.00667651f,-0.999674f}, - {-0.0396375f,0.0165896f,-0.999076f},{-0.17193f,-0.105383f,-0.979456f},{-0.0809495f,0.0619015f,-0.994794f}, - {0.0847504f,0.00832976f,-0.996367f},{0.126144f,-0.0744356f,-0.989215f},{0.145127f,-0.0300614f,-0.988956f}, - {0.068248f,-0.0434816f,-0.99672f},{0.102888f,-0.0678076f,-0.992379f},{0.0700993f,-0.0424824f,-0.996635f}, - {-0.0400397f,0.0309353f,-0.998719f},{0.171931f,0.105381f,-0.979456f},{0.146014f,0.118496f,-0.98216f}, - {0.156159f,0.0744765f,-0.98492f},{0.00830625f,0.00348893f,-0.999959f},{0.00381472f,0.0123794f,-0.999916f}, - {0.110247f,0.139631f,-0.984047f},{0.112341f,0.139617f,-0.983812f},{0.0732426f,0.168792f,-0.982927f}, - {0.123518f,0.135427f,-0.983058f},{0.131651f,0.131599f,-0.982522f},{-0.0391961f,0.255848f,-0.965922f}, - {0.189505f,0.0990662f,-0.976869f},{0.033884f,0.207001f,-0.977754f},{0.300652f,0.0257381f,-0.953386f}, - {0.245617f,0.0601361f,-0.9675f},{0.282538f,0.0476609f,-0.958071f},{0.168871f,0.108819f,-0.979613f}, - {0.233124f,0.0781673f,-0.9693f},{0.172348f,0.107726f,-0.979128f},{0.249664f,0.071609f,-0.965681f}, - {0.189499f,0.0999793f,-0.976777f},{-0.0228704f,0.18367f,-0.982722f},{0.0368726f,0.143043f,-0.989029f}, - {0.039638f,-0.0165949f,-0.999076f},{0.0653017f,-0.031216f,-0.997377f},{0.116935f,0.138156f,-0.983483f}, - {0.110576f,0.15591f,-0.981563f},{0.0760762f,0.189495f,-0.97893f},{-0.0201006f,0.253055f,-0.967243f}, - {0.164768f,0.113819f,-0.979743f},{0.169985f,0.110674f,-0.979212f},{0.13279f,0.142319f,-0.980873f}, - {0.265747f,0.0638565f,-0.961926f},{0.162971f,0.111105f,-0.980355f},{0.155086f,0.11444f,-0.98125f}, - {0.217303f,0.0654512f,-0.973907f},{0.13662f,0.122963f,-0.982962f},{0.0621948f,-0.0416577f,-0.997194f}, - {0.0809495f,-0.0619016f,-0.994794f},{-0.126144f,0.074428f,-0.989216f},{-0.0967627f,-0.10656f,-0.989587f}, - {-0.145128f,0.030073f,-0.988956f},{-0.119253f,-0.132285f,-0.984012f},{-0.127694f,-0.127537f,-0.98358f}, - {-0.173544f,0.112261f,-0.978407f},{-0.194823f,0.114801f,-0.974097f},{-0.0525697f,0.037314f,-0.99792f}, - {-0.153096f,0.107531f,-0.982343f},{-0.132768f,0.102693f,-0.985813f},{0.0236802f,0.0488762f,-0.998524f}, - {-0.0374122f,0.0911884f,-0.995131f},{0.207914f,-0.0343818f,-0.977543f},{0.194823f,-0.114804f,-0.974097f}, - {0.173544f,-0.112265f,-0.978406f},{0.153096f,-0.10753f,-0.982344f},{0.0525692f,-0.0373124f,-0.99792f}, - {0.0400395f,-0.0309343f,-0.998719f},{0.132768f,-0.102696f,-0.985812f},{-0.00830612f,-0.00349236f,-0.999959f}, - {-0.0368738f,-0.143026f,-0.989032f},{-0.0544429f,-0.172172f,-0.983561f},{-0.16898f,-0.108774f,-0.979599f}, - {-0.249662f,-0.0716214f,-0.965681f},{-0.169978f,-0.110692f,-0.979211f},{0.0228691f,-0.183652f,-0.982725f}, - {-0.16297f,-0.111114f,-0.980354f},{-0.155082f,-0.114446f,-0.98125f},{-0.0847515f,-0.00831784f,-0.996367f}, - {-0.0524475f,0.0256814f,-0.998293f},{-0.0620644f,0.0332888f,-0.997517f},{0.0043133f,-0.212779f,-0.977091f}, - {-0.0732415f,-0.168808f,-0.982924f},{-0.120661f,-0.136682f,-0.983239f},{-0.114346f,-0.139069f,-0.983659f}, - {-0.0150721f,-0.210368f,-0.977506f},{-0.15764f,-0.117902f,-0.980433f},{0.149271f,0.126705f,-0.980645f}, - {0.0915033f,0.164554f,-0.982115f},{0.157641f,0.117888f,-0.980434f},{0.140533f,0.127125f,-0.981881f}, - {0.149416f,0.122423f,-0.981166f},{0.173236f,0.108474f,-0.978889f},{-0.0589452f,0.257551f,-0.964465f}, - {0.174359f,0.107335f,-0.978815f},{-0.0787303f,0.239876f,-0.967606f},{-0.0943229f,0.151587f,-0.983933f}, - {0.110958f,0.138183f,-0.984172f},{0.0246587f,-0.00668129f,-0.999674f},{-0.111226f,0.0971757f,-0.989033f}, - {0.0524476f,-0.0256865f,-0.998293f},{0.067942f,-0.0389615f,-0.996928f},{0.0620642f,-0.033293f,-0.997517f}, - {-0.207915f,0.0343964f,-0.977542f},{-0.113842f,-0.135944f,-0.984154f},{0.111227f,-0.097181f,-0.989032f}, - {-0.217303f,-0.065439f,-0.973908f},{-0.110719f,-0.139838f,-0.983965f},{-0.110345f,-0.13881f,-0.984152f}, - {0.0787291f,-0.239861f,-0.96761f},{0.0943219f,-0.151574f,-0.983935f},{0.0589451f,-0.257556f,-0.964464f}, - {0.0391964f,-0.255863f,-0.965918f},{-0.265747f,-0.0638606f,-0.961925f},{-0.148539f,-0.122911f,-0.981239f}, - {-0.0760762f,-0.189496f,-0.97893f},{-0.13279f,-0.14232f,-0.980873f},{0.780986f,-0.410005f,0.471123f}, - {0.756474f,-0.431924f,0.491109f},{0.879699f,-0.406453f,0.246832f},{0.738683f,-0.444614f,0.506622f}, - {0.85525f,-0.428298f,0.291734f},{0.718444f,-0.420701f,0.553939f},{0.815118f,-0.415692f,0.403464f}, - {0.721373f,-0.437394f,0.536943f},{0.824692f,-0.430102f,0.367282f},{0.838017f,-0.434004f,0.330708f}, - {0.728083f,-0.44473f,0.521641f},{0.797562f,-0.268829f,0.540024f},{0.722769f,-0.258175f,0.641055f}, - {0.774815f,-0.275537f,0.568982f},{0.728926f,-0.352408f,0.58692f},{0.733033f,-0.277529f,0.620999f}, - {0.816277f,-0.28748f,0.501046f},{0.689892f,-0.249748f,0.679467f},{0.725361f,-0.215302f,0.653833f}, - {0.738897f,-0.256534f,0.623074f},{0.698996f,-0.261868f,0.665454f},{0.755933f,-0.271108f,0.595873f}, - {0.709599f,-0.264635f,0.653021f},{0.683243f,0.0526752f,0.728289f},{0.696338f,0.0541363f,0.715669f}, - {0.667359f,0.0539424f,0.74278f},{0.716045f,-0.0721475f,0.694315f},{0.683867f,-0.211833f,0.698178f}, - {0.680519f,-0.0718111f,0.729203f},{0.660486f,0.052782f,0.748981f},{0.671599f,0.0443778f,0.739585f}, - {0.654656f,0.0438809f,0.754652f},{0.660388f,0.0375909f,0.749983f},{0.649023f,0.0241761f,0.760385f}, - {0.648963f,0.0363458f,0.759951f},{0.643221f,0.022026f,0.765363f},{0.636811f,0.00631787f,0.770994f}, - {0.636821f,0.0031649f,0.771005f},{0.818732f,-0.355684f,0.45074f},{0.909063f,-0.371045f,0.18955f}, - {0.583044f,-0.405078f,0.704253f},{0.580905f,-0.421979f,0.696048f},{0.756391f,-0.431996f,0.491175f}, - {0.581257f,-0.432024f,0.689562f},{0.738684f,-0.444614f,0.506621f},{0.728943f,-0.352294f,0.586967f}, - {0.718445f,-0.420702f,0.553937f},{0.59918f,-0.410108f,0.687601f},{0.721374f,-0.437394f,0.536941f}, - {0.728085f,-0.44473f,0.521639f},{0.585021f,-0.431774f,0.686528f},{0.722817f,-0.258155f,0.641008f}, - {0.63406f,-0.239661f,0.735208f},{0.709547f,-0.264648f,0.653073f},{0.618695f,-0.336563f,0.709888f}, - {0.632115f,-0.25777f,0.730743f},{0.733036f,-0.27756f,0.620982f},{0.634072f,-0.238256f,0.735654f}, - {0.683867f,-0.211913f,0.698154f},{0.689931f,-0.249749f,0.679427f},{0.633237f,-0.246966f,0.733498f}, - {0.698956f,-0.261827f,0.665513f},{0.633257f,-0.24717f,0.733412f},{0.660487f,0.0527819f,0.74898f}, - {0.667343f,0.0540166f,0.742789f},{0.634508f,0.0563396f,0.77086f},{0.680531f,-0.0720207f,0.729171f}, - {0.636975f,-0.204102f,0.743375f},{0.640402f,-0.0680582f,0.765018f},{0.63474f,0.055102f,0.770759f}, - {0.654657f,0.0438808f,0.754651f},{0.635485f,0.0454974f,0.770772f},{0.648964f,0.0363458f,0.759951f}, - {0.643198f,0.0219575f,0.765385f},{0.63602f,0.0371135f,0.77078f},{0.636578f,0.0218202f,0.770903f}, - {0.636823f,0.0020686f,0.771008f},{0.590849f,-0.425392f,0.685521f},{0.325002f,-0.355736f,0.876256f}, - {0.358337f,-0.376871f,0.854144f},{0.5809f,-0.422036f,0.696018f},{0.386348f,-0.390634f,0.835548f}, - {0.618721f,-0.336442f,0.709923f},{0.59918f,-0.410108f,0.687601f},{0.46456f,-0.370105f,0.804491f}, - {0.412203f,-0.394435f,0.821285f},{0.437394f,-0.392371f,0.809155f},{0.634063f,-0.239634f,0.735214f}, - {0.539451f,-0.218199f,0.813254f},{0.633254f,-0.24719f,0.733407f},{0.497609f,-0.276989f,0.821986f}, - {0.522063f,-0.210792f,0.826449f},{0.632111f,-0.257804f,0.730734f},{0.595637f,-0.110113f,0.795671f}, - {0.63697f,-0.204172f,0.743359f},{0.580852f,-0.223171f,0.782819f},{0.634073f,-0.238249f,0.735655f}, - {0.633239f,-0.246939f,0.733505f},{0.567772f,-0.224079f,0.792101f},{0.63474f,0.055102f,0.770759f}, - {0.634503f,0.0564151f,0.770859f},{0.606196f,0.0620428f,0.792892f},{0.640405f,-0.0682671f,0.764997f}, - {0.59941f,0.0414768f,0.799366f},{0.614526f,0.0507293f,0.787264f},{0.635485f,0.0454974f,0.770772f}, - {0.622011f,0.0411515f,0.781926f},{0.63658f,0.0217483f,0.770904f},{0.629429f,0.024754f,0.776664f}, - {0.636821f,0.0031651f,0.771005f},{0.554028f,-0.226089f,0.80121f},{0.018211f,-0.260709f,0.965246f}, - {0.0905301f,-0.29234f,0.95202f},{0.35848f,-0.376958f,0.854046f},{0.412236f,-0.394436f,0.821268f}, - {0.386367f,-0.39064f,0.835537f},{0.150845f,-0.316442f,0.936541f},{0.497587f,-0.27707f,0.821973f}, - {0.464644f,-0.369949f,0.804515f},{0.302136f,-0.326359f,0.895658f},{0.43742f,-0.392367f,0.809143f}, - {0.203847f,-0.331158f,0.921293f},{0.539469f,-0.218211f,0.813239f},{0.436519f,-0.186125f,0.880232f}, - {0.554148f,-0.226126f,0.801116f},{0.351848f,-0.234204f,0.906284f},{0.39662f,-0.172939f,0.901546f}, - {0.521912f,-0.210966f,0.826499f},{0.526859f,-0.205901f,0.824636f},{0.595587f,-0.110847f,0.795606f}, - {0.580769f,-0.223412f,0.782812f},{0.499197f,-0.202182f,0.842571f},{0.567787f,-0.224072f,0.792092f}, - {0.469626f,-0.198592f,0.86024f},{0.579246f,0.0682852f,0.812288f},{0.606222f,0.0620078f,0.792874f}, - {0.564062f,0.0488013f,0.824289f},{0.599414f,0.0416336f,0.799355f},{0.5515f,-0.0985182f,0.828337f}, - {0.594988f,0.056183f,0.801768f},{0.614534f,0.0507196f,0.787258f},{0.622016f,0.0411442f,0.781923f}, - {0.609128f,0.0457027f,0.791754f},{0.622938f,0.0285242f,0.781751f},{0.629464f,0.0246587f,0.776638f}, - {0.636811f,0.00635625f,0.770994f},{0.25357f,-0.340146f,0.90554f},{0.608772f,0.0457539f,0.792025f}, - {0.594765f,0.055249f,0.801999f},{0.608898f,0.0450032f,0.791971f},{0.622817f,0.0284547f,0.78185f}, - {0.622836f,0.0279898f,0.781851f},{0.562516f,0.0688727f,0.823913f},{0.563156f,0.0490876f,0.824891f}, - {0.550993f,-0.0496963f,0.833029f},{0.578569f,0.0683527f,0.812765f},{0.579246f,0.0665103f,0.812435f}, - {0.594461f,0.0562578f,0.802154f},{0.468103f,-0.198149f,0.861172f},{0.472958f,-0.198042f,0.85854f}, - {0.497665f,-0.201746f,0.84358f},{0.525395f,-0.205766f,0.825603f},{0.529826f,-0.175094f,0.829835f}, - {0.550287f,-0.0989846f,0.829087f},{0.361545f,-0.181766f,0.914465f},{0.394113f,-0.172451f,0.902738f}, - {0.349592f,-0.233674f,0.907294f},{0.441329f,-0.188934f,0.87723f},{0.434558f,-0.185572f,0.881319f}, - {0.40436f,-0.174204f,0.897856f},{0.265363f,-0.331082f,0.90552f},{0.251639f,-0.339571f,0.906294f}, - {0.216776f,-0.33003f,0.918743f},{0.30016f,-0.32564f,0.896584f},{0.314928f,-0.257875f,0.913412f}, - {0.16631f,-0.31893f,0.933073f},{0.202144f,-0.33061f,0.921865f},{0.149463f,-0.315979f,0.936919f}, - {0.112599f,-0.302605f,0.946442f},{0.0899699f,-0.292181f,0.952122f},{0.0515423f,-0.277704f,0.959283f}, - {-0.0205104f,-0.246428f,0.968944f},{0.50237f,-0.199807f,0.84125f},{0.636809f,0.00685645f,0.770991f}, - {-0.109551f,-0.170684f,0.979217f},{-0.0629021f,-0.206616f,0.976398f},{-0.126478f,-0.158053f,0.979297f}, - {-0.173613f,-0.129887f,0.976211f},{-0.190018f,-0.114756f,0.975051f},{-0.239086f,-0.0931162f,0.966523f}, - {-0.208979f,-0.0916011f,0.973621f},{-0.25458f,-0.0745052f,0.964177f},{-0.146005f,-0.13862f,0.979524f}, - {-0.270988f,-0.0499282f,0.961287f},{-0.0935066f,-0.176521f,0.979845f},{-0.0771143f,-0.180908f,0.980472f}, - {-0.0289222f,-0.221759f,0.974672f},{-0.00236958f,-0.258471f,0.966016f},{0.0158869f,-0.114433f,0.993304f}, - {0.00500348f,-0.212524f,0.977143f},{-0.0517682f,-0.0688181f,0.996285f},{0.0489217f,-0.273986f,0.960489f}, - {0.0316006f,-0.271537f,0.961909f},{-0.0119369f,-0.225011f,0.974283f},{0.0491747f,-0.0428923f,0.997869f}, - {7.949e-008f,-8.55582e-007f,1.0f},{0.0683324f,-0.0482005f,0.996498f},{0.0802466f,-0.186842f,0.979107f}, - {0.028666f,-0.0392859f,0.998817f},{0.0919448f,-0.102404f,0.990485f},{0.107856f,-0.057155f,0.992522f}, - {0.119144f,0.0265899f,0.992521f},{0.178742f,-0.0835213f,0.980345f},{0.0192356f,-0.00540807f,0.9998f}, - {0.0874508f,-0.0535629f,0.994728f},{0.126478f,0.158051f,0.979297f},{0.190018f,0.114754f,0.975051f}, - {0.173613f,0.129893f,0.97621f},{0.127075f,0.130935f,0.983213f},{0.0610101f,0.168995f,0.983727f}, - {0.239086f,0.0931203f,0.966523f},{0.25458f,0.0745033f,0.964177f},{0.208979f,0.0916021f,0.973621f}, - {0.270988f,0.0499291f,0.961287f},{0.158154f,0.136947f,0.977872f},{0.10955f,0.170691f,0.979216f}, - {0.0828562f,0.190497f,0.978185f},{0.0629022f,0.206614f,0.976398f},{0.224388f,0.102078f,0.969139f}, - {0.142376f,0.142513f,0.979499f},{0.0935053f,0.176539f,0.979842f},{0.209369f,0.109046f,0.971737f}, - {0.186808f,0.0142462f,0.982293f},{0.0771131f,0.180916f,0.980471f},{0.19432f,0.107117f,0.975072f}, - {0.0397896f,-0.00908038f,0.999167f},{0.0517701f,0.0687977f,0.996286f},{0.14449f,-0.0984282f,0.984599f}, - {0.127037f,-0.0930399f,0.987525f},{0.162383f,-0.103308f,0.981305f},{0.108876f,-0.0885006f,0.990108f}, - {-0.03979f,0.0090855f,0.999167f},{-0.0192361f,0.00541255f,0.9998f},{0.0667669f,-0.269586f,0.960659f}, - {-0.0610092f,-0.169012f,0.983724f},{-0.04552f,-0.217019f,0.975106f},{0.0147946f,-0.267327f,0.963492f}, - {-0.0828563f,-0.190496f,0.978185f},{-0.22439f,-0.102063f,0.96914f},{-0.158156f,-0.13693f,0.977874f}, - {-0.209371f,-0.109036f,0.971738f},{-0.142378f,-0.142505f,0.9795f},{-0.194321f,-0.107128f,0.975071f}, - {-0.127075f,-0.130951f,0.983211f},{-0.186807f,-0.0142661f,0.982293f},{-0.119142f,-0.0266103f,0.992521f}, - {-0.178742f,0.083517f,0.980345f},{-0.107856f,0.05716f,0.992522f},{-0.162383f,0.103317f,0.981304f}, - {0.00236961f,0.258468f,0.966017f},{0.0205104f,0.246429f,0.968944f},{-0.0874512f,0.0535675f,0.994727f}, - {-0.14449f,0.0984279f,0.984599f},{-0.127037f,0.0930396f,0.987525f},{-0.0683322f,0.0481988f,0.996498f}, - {-0.108876f,0.0885078f,0.990107f},{-0.0491751f,0.0428965f,0.997869f},{-0.0919447f,0.102401f,0.990485f}, - {-0.0286666f,0.0392909f,0.998817f},{-0.080245f,0.186822f,0.979111f},{-0.0158852f,0.114413f,0.993306f}, - {-0.0667658f,0.269573f,0.960663f},{-0.00500236f,0.212507f,0.977147f},{-0.0489219f,0.273996f,0.960486f}, - {0.0119362f,0.225019f,0.974281f},{-0.031601f,0.271553f,0.961904f},{0.0289212f,0.221777f,0.974668f}, - {-0.0147946f,0.26733f,0.963491f},{0.0455199f,0.217025f,0.975104f},{0.146005f,0.138621f,0.979524f}, - {-0.636821f,-0.00317738f,0.771005f},{-0.629441f,-0.0246739f,0.776656f},{-0.623058f,-0.0279566f,0.781676f}, - {-0.595408f,-0.0551303f,0.80153f},{-0.609331f,-0.0449278f,0.791642f},{-0.621971f,-0.0411546f,0.781958f}, - {-0.552325f,0.0499248f,0.832133f},{-0.563612f,-0.0687359f,0.823175f},{-0.599286f,-0.0416737f,0.79945f}, - {-0.580108f,-0.0663718f,0.811831f},{-0.614466f,-0.0507229f,0.787311f},{-0.606128f,-0.0620227f,0.792945f}, - {-0.567518f,0.223995f,0.792306f},{-0.553812f,0.226021f,0.801378f},{-0.475091f,0.198662f,0.857217f}, - {-0.595421f,0.110786f,0.795739f},{-0.58056f,0.223354f,0.782983f},{-0.531382f,0.175481f,0.828758f}, - {-0.496956f,0.276897f,0.822413f},{-0.364365f,0.182559f,0.913187f},{-0.521383f,0.210821f,0.82687f}, - {-0.407013f,0.174949f,0.896511f},{-0.443733f,0.18964f,0.875864f},{-0.539048f,0.218089f,0.81355f}, - {-0.219259f,0.330803f,0.917875f},{-0.268014f,0.331812f,0.904472f},{-0.436574f,0.392167f,0.809696f}, - {-0.317724f,0.25864f,0.912226f},{-0.46392f,0.369772f,0.805014f},{-0.411246f,0.394193f,0.821881f}, - {-0.168505f,0.319671f,0.932425f},{-0.385206f,0.390338f,0.836213f},{-0.114345f,0.303211f,0.946038f}, - {-0.0525963f,0.278069f,0.95912f},{-0.357097f,0.376599f,0.854784f},{-0.323311f,0.355321f,0.87705f}, - {-0.50421f,0.200313f,0.840028f},{-0.636809f,-0.00685578f,0.770991f},{-0.636823f,-0.002068f,0.771008f}, - {-0.63654f,-0.0217543f,0.770937f},{-0.629382f,-0.0247724f,0.776701f},{-0.621921f,-0.0411683f,0.781997f}, - {-0.635941f,-0.0371196f,0.770844f},{-0.599172f,-0.0415314f,0.799542f},{-0.606014f,-0.0620694f,0.793029f}, - {-0.634304f,-0.056447f,0.77102f},{-0.614392f,-0.0507421f,0.787367f},{-0.63537f,-0.0454985f,0.770866f}, - {-0.634587f,-0.0551123f,0.770884f},{-0.580496f,0.223077f,0.78311f},{-0.633724f,0.238176f,0.735979f}, - {-0.56733f,0.223957f,0.792452f},{-0.64016f,0.0682119f,0.765207f},{-0.63668f,0.204107f,0.743626f}, - {-0.595341f,0.110027f,0.795904f},{-0.633497f,0.239503f,0.735744f},{-0.521305f,0.210588f,0.826979f}, - {-0.538815f,0.21802f,0.813723f},{-0.632772f,0.247067f,0.733864f},{-0.553496f,0.22593f,0.801622f}, - {-0.632828f,0.246834f,0.733895f},{-0.436343f,0.392125f,0.809842f},{-0.463619f,0.369882f,0.805137f}, - {-0.598406f,0.409993f,0.688343f},{-0.496749f,0.27676f,0.822584f},{-0.631462f,0.257657f,0.731347f}, - {-0.618008f,0.336306f,0.710608f},{-0.589992f,0.425267f,0.686336f},{-0.411029f,0.394147f,0.822012f}, - {-0.584074f,0.431633f,0.687423f},{-0.385037f,0.390294f,0.836312f},{-0.356858f,0.376488f,0.854932f}, - {-0.580207f,0.431864f,0.690546f},{-0.579716f,0.42187f,0.697105f},{-0.581686f,0.404919f,0.705466f}, - {-0.636821f,-0.00315153f,0.771006f},{-0.643165f,-0.021951f,0.765413f},{-0.636538f,-0.0218263f,0.770937f}, - {-0.6489f,-0.0363394f,0.760005f},{-0.640157f,0.068003f,0.765229f},{-0.63431f,-0.0563715f,0.771021f}, - {-0.667183f,-0.0540317f,0.742932f},{-0.654564f,-0.0438692f,0.754732f},{-0.633724f,0.238183f,0.735978f}, - {-0.689649f,0.249708f,0.679728f},{-0.632825f,0.246861f,0.733889f},{-0.680332f,0.0719912f,0.72936f}, - {-0.683631f,0.211878f,0.698395f},{-0.636685f,0.204036f,0.743641f},{-0.722371f,0.258076f,0.641543f}, - {-0.631466f,0.257623f,0.731355f},{-0.633495f,0.239529f,0.735738f},{-0.709164f,0.264571f,0.65352f}, - {-0.632774f,0.247047f,0.733869f},{-0.698625f,0.261762f,0.665885f},{-0.717841f,0.420681f,0.554735f}, - {-0.617982f,0.336426f,0.710574f},{-0.732529f,0.277479f,0.621616f},{-0.728388f,0.35224f,0.587689f}, - {-0.720712f,0.437381f,0.537841f},{-0.72736f,0.444724f,0.522654f},{-0.57972f,0.421813f,0.697136f}, - {-0.737892f,0.44462f,0.507768f},{-0.755513f,0.432036f,0.492489f},{-0.780009f,0.4101f,0.472656f}, - {-0.660363f,-0.0527785f,0.74909f},{-0.636811f,-0.00629327f,0.770994f},{-0.649001f,-0.0241581f,0.760404f}, - {-0.643189f,-0.0220195f,0.765391f},{-0.660345f,-0.0375725f,0.750022f},{-0.648899f,-0.0363395f,0.760006f}, - {-0.680319f,0.0717815f,0.729392f},{-0.667198f,-0.0539575f,0.742923f},{-0.696227f,-0.0541337f,0.715778f}, - {-0.660362f,-0.0527786f,0.749091f},{-0.654563f,-0.0438693f,0.754733f},{-0.671536f,-0.0443535f,0.739643f}, - {-0.68961f,0.249707f,0.679768f},{-0.738688f,0.256526f,0.623325f},{-0.698666f,0.261803f,0.665827f}, - {-0.715903f,0.0721451f,0.694462f},{-0.725187f,0.215298f,0.654026f},{-0.683631f,0.211798f,0.69842f}, - {-0.79723f,0.268798f,0.540529f},{-0.732527f,0.277449f,0.621633f},{-0.722323f,0.258096f,0.641589f}, - {-0.774529f,0.275504f,0.569388f},{-0.709216f,0.264558f,0.653469f},{-0.755688f,0.271082f,0.596197f}, - {-0.814669f,0.415759f,0.4043f},{-0.717839f,0.420681f,0.554738f},{-0.818321f,0.355703f,0.451472f}, - {-0.728371f,0.352353f,0.587642f},{-0.815902f,0.287459f,0.501668f},{-0.824211f,0.430194f,0.368252f}, - {-0.727359f,0.444724f,0.522656f},{-0.72071f,0.437381f,0.537843f},{-0.83751f,0.434129f,0.331828f}, - {-0.73789f,0.44462f,0.50777f},{-0.755597f,0.431964f,0.492423f},{-0.854721f,0.428471f,0.293028f}, - {-0.879159f,0.406702f,0.248341f},{-0.908545f,0.371402f,0.19133f},{-0.683158f,-0.0526576f,0.728369f}, - {-0.652054f,-0.0263917f,0.757713f},{-0.636797f,-0.00909888f,0.770977f},{-0.695352f,-0.0536109f,0.716667f}, - {-0.671834f,-0.0443236f,0.739374f},{-0.680563f,-0.0456191f,0.731268f},{-0.666389f,-0.0392338f,0.744571f}, - {-0.660552f,-0.0375531f,0.749841f},{-0.649157f,-0.0242147f,0.760269f},{-0.716437f,0.0720186f,0.693924f}, - {-0.747931f,0.215375f,0.627863f},{-0.725786f,0.215321f,0.653354f},{-0.683545f,-0.0526197f,0.728009f}, - {-0.711835f,-0.055364f,0.700162f},{-0.69673f,-0.0540181f,0.715297f},{-0.809709f,0.279233f,0.516139f}, - {-0.775365f,0.275645f,0.568181f},{-0.756476f,0.271283f,0.595104f},{-0.786708f,0.274244f,0.553065f}, - {-0.739281f,0.256648f,0.622571f},{-0.76548f,0.258544f,0.589233f},{-0.864019f,0.351817f,0.360134f}, - {-0.81663f,0.287541f,0.500435f},{-0.85903f,0.289026f,0.42253f},{-0.797912f,0.268949f,0.539447f}, - {-0.836894f,0.271782f,0.475123f},{-0.824737f,0.430114f,0.367166f},{-0.815277f,0.415694f,0.40314f}, - {-0.87405f,0.415649f,0.251538f},{-0.818985f,0.355825f,0.450169f},{-0.863226f,0.404724f,0.301729f}, - {-0.887621f,0.415023f,0.199712f},{-0.837936f,0.434041f,0.330866f},{-0.903754f,0.403094f,0.144024f}, - {-0.85503f,0.428382f,0.292254f},{-0.879434f,0.406518f,0.247668f},{-0.924662f,0.372382f,0.079571f}, - {-0.945544f,0.325495f,0.0f},{-0.735204f,0.0705335f,0.674167f},{-0.957958f,0.286908f,-0.000297298f}, - {-0.958184f,0.286152f,-0.00027813f},{-0.951596f,0.278077f,-0.130911f},{-0.956115f,0.266505f,-0.121731f}, - {-0.962828f,0.270116f,-0.00025761f},{-0.971736f,0.23607f,-0.000235456f},{-0.959649f,0.258612f,-0.110422f}, - {-0.993744f,0.111685f,-0.000218645f},{-0.982441f,0.15671f,-0.101255f},{-0.995607f,0.0244862f,-0.0903677f}, - {-0.999997f,0.00228008f,-0.000195691f},{-0.999963f,0.00864389f,-0.000166398f},{-0.996969f,0.0121337f,-0.076847f}, - {-0.999852f,0.0172244f,-0.000133472f},{-0.99785f,0.0209404f,-0.0620961f},{-0.998704f,0.0225323f,-0.0456418f}, - {-0.999808f,0.0196045f,-9.71639e-005f},{-0.999813f,0.0193212f,-5.4502e-005f},{-0.99946f,0.0204337f,-0.0257239f}, - {-0.999843f,0.0176994f,0.0f},{-0.99985f,0.0173199f,0.0f},{-0.953349f,0.267273f,-0.140321f}, - {-0.95479f,0.257069f,-0.149306f},{-0.962413f,0.271589f,-0.00031666f},{-0.959914f,0.280293f,-0.000331412f}, - {-0.946687f,0.282163f,-0.155461f},{-0.937469f,0.308726f,-0.16075f},{-0.947766f,0.318966f,-0.000342471f}, - {-0.931085f,0.324966f,-0.165762f},{-0.93484f,0.355068f,-0.000351538f},{-0.928807f,0.370564f,-0.000361614f}, - {-0.928046f,0.330965f,-0.17086f},{-0.928594f,0.326564f,-0.176266f},{-0.926386f,0.376575f,-0.000372148f}, - {-0.934514f,0.30552f,-0.182597f},{-0.92782f,0.373027f,-0.000383596f},{-0.935191f,0.354145f,-0.000397484f}, - {-0.943202f,0.272835f,-0.189554f},{-0.945578f,0.325394f,-0.00041274f},{-0.997288f,0.0211408f,-0.0705025f}, - {-0.99985f,0.0173199f,-1.50134e-014f},{-0.999888f,0.0149749f,1.04413e-015f},{-0.976903f,0.0190992f,-0.212829f}, - {-0.997001f,0.012063f,-0.0764401f},{-0.98481f,0.0270514f,-0.171517f},{-0.991726f,0.0267385f,-0.125559f}, - {-0.998719f,0.0225092f,-0.0453197f},{-0.959761f,0.258403f,-0.109939f},{-0.942002f,0.185186f,-0.279891f}, - {-0.921009f,0.235359f,-0.310401f},{-0.995645f,0.0245818f,-0.0899239f},{-0.966375f,0.060169f,-0.25f}, - {-0.982591f,0.156085f,-0.100754f},{-0.898699f,0.242529f,-0.365402f},{-0.893124f,0.221008f,-0.391771f}, - {-0.953393f,0.26728f,-0.140014f},{-0.907932f,0.245706f,-0.33954f},{-0.951625f,0.27811f,-0.130631f}, - {-0.95615f,0.266559f,-0.121342f},{-0.865841f,0.222884f,-0.447931f},{-0.937463f,0.308832f,-0.160577f}, - {-0.874336f,0.220933f,-0.432117f},{-0.946719f,0.282182f,-0.155229f},{-0.954855f,0.25702f,-0.148975f}, - {-0.882967f,0.223806f,-0.412649f},{-0.858059f,0.225231f,-0.461525f},{-0.928053f,0.330999f,-0.170754f}, - {-0.931092f,0.32502f,-0.165619f},{-0.852796f,0.216849f,-0.475096f},{-0.928602f,0.32658f,-0.176192f}, - {-0.934555f,0.305399f,-0.182588f},{-0.850459f,0.192096f,-0.489713f},{-0.848968f,0.155604f,-0.505015f}, - {-0.997875f,0.0209039f,-0.0617066f},{-0.999463f,0.0204365f,-0.0256194f},{-0.993882f,0.0198325f,-0.108651f}, - {-0.999888f,0.0149749f,0.0f},{-0.999942f,0.0107279f,0.0f},{-0.940471f,0.027494f,-0.338759f}, - {-0.9848f,0.0270456f,-0.171575f},{-0.961911f,0.0323478f,-0.271441f},{-0.980028f,0.0289941f,-0.196733f}, - {-0.99172f,0.0267423f,-0.125606f},{-0.997263f,0.0211768f,-0.0708398f},{-0.942124f,0.184752f,-0.279767f}, - {-0.842424f,0.198008f,-0.501114f},{-0.92105f,0.235436f,-0.310221f},{-0.976871f,0.0190528f,-0.212979f}, - {-0.914688f,0.0630398f,-0.399213f},{-0.96636f,0.0602812f,-0.250028f},{-0.786761f,0.19314f,-0.586263f}, - {-0.763159f,0.167212f,-0.624203f},{-0.898676f,0.24247f,-0.365499f},{-0.907886f,0.245744f,-0.339635f}, - {-0.8124f,0.201874f,-0.547041f},{-0.700686f,0.0929333f,-0.707392f},{-0.874312f,0.220911f,-0.432176f}, - {-0.718951f,0.113967f,-0.685653f},{-0.88298f,0.2238f,-0.412625f},{-0.893172f,0.221072f,-0.391626f}, - {-0.739263f,0.154471f,-0.65546f},{-0.684218f,0.0875221f,-0.724006f},{-0.858048f,0.225226f,-0.461549f}, - {-0.86583f,0.222895f,-0.447948f},{-0.669461f,0.073847f,-0.739168f},{-0.852792f,0.216833f,-0.475111f}, - {-0.850452f,0.191924f,-0.489793f},{-0.655515f,0.0484461f,-0.753627f},{-0.640906f,0.0158475f,-0.767455f}, - {-0.848968f,0.155604f,-0.505015f},{-0.877789f,0.164174f,-0.450038f},{-0.990338f,0.0167192f,-0.137663f}, - {-0.999942f,0.0107279f,-5.79815e-010f},{-0.999987f,0.00505961f,0.0f},{-0.890883f,0.033892f,-0.452967f}, - {-0.961882f,0.0323469f,-0.271545f},{-0.932581f,0.0355093f,-0.35921f},{-0.966258f,0.0291785f,-0.255917f}, - {-0.980011f,0.0290016f,-0.196817f},{-0.993822f,0.0198883f,-0.10919f},{-0.877955f,0.163842f,-0.449834f}, - {-0.780866f,0.13651f,-0.609602f},{-0.718253f,0.148479f,-0.679755f},{-0.940382f,0.0274608f,-0.339011f}, - {-0.841289f,0.0636188f,-0.536829f},{-0.914656f,0.0631371f,-0.399272f},{-0.609067f,0.125965f,-0.783052f}, - {-0.559997f,0.0957412f,-0.822944f},{-0.786669f,0.193061f,-0.586412f},{-0.812292f,0.201887f,-0.547197f}, - {-0.660203f,0.142438f,-0.737458f},{-0.439944f,-0.0540079f,-0.896399f},{-0.718888f,0.113812f,-0.685746f}, - {-0.472513f,-0.0113659f,-0.88125f},{-0.739288f,0.154497f,-0.655427f},{-0.763303f,0.167295f,-0.624004f}, - {-0.514496f,0.06617f,-0.854936f},{-0.414517f,-0.0658654f,-0.907655f},{-0.684189f,0.0875037f,-0.724037f}, - {-0.700662f,0.0929309f,-0.707415f},{-0.391685f,-0.0816251f,-0.916472f},{-0.669444f,0.0738257f,-0.739185f}, - {-0.65544f,0.0482842f,-0.753702f},{-0.369884f,-0.101927f,-0.92347f},{-0.347635f,-0.123605f,-0.929447f}, - {-0.640907f,0.0158475f,-0.767455f},{-0.842564f,0.198107f,-0.500839f},{-0.989269f,0.0111543f,-0.145677f}, - {-0.999987f,0.00505961f,-2.85058e-010f},{-0.999999f,-0.00138151f,1.91845e-016f},{-0.850391f,0.0382111f,-0.524762f}, - {-0.932523f,0.0355133f,-0.359361f},{-0.91244f,0.0352909f,-0.407687f},{-0.959016f,0.0256877f,-0.282185f}, - {-0.966226f,0.0291895f,-0.256037f},{-0.990238f,0.0167928f,-0.138374f},{-0.781126f,0.136305f,-0.609314f}, - {-0.684245f,0.0955151f,-0.72297f},{-0.584646f,0.0993674f,-0.805181f},{-0.890704f,0.0338728f,-0.453319f}, - {-0.77454f,0.0484155f,-0.630669f},{-0.841226f,0.0636976f,-0.536918f},{-0.401556f,0.0560249f,-0.914119f}, - {-0.326384f,0.0268241f,-0.944856f},{-0.608874f,0.125862f,-0.783218f},{-0.485701f,0.0741101f,-0.870978f}, - {-0.659992f,0.142412f,-0.737652f},{-0.71855f,0.14861f,-0.679412f},{-0.196022f,-0.0637993f,-0.978522f}, - {-0.472378f,-0.0116501f,-0.881319f},{-0.514541f,0.0662311f,-0.854904f},{-0.257578f,0.00189659f,-0.966256f}, - {-0.56027f,0.0958443f,-0.822746f},{-0.110962f,-0.197306f,-0.974042f},{-0.414469f,-0.0658928f,-0.907675f}, - {-0.439905f,-0.0540224f,-0.896418f},{-0.144236f,-0.164717f,-0.975738f},{-0.08502f,-0.210934f,-0.973796f}, - {-0.391658f,-0.081646f,-0.916481f},{-0.0624871f,-0.223578f,-0.972681f},{-0.0413979f,-0.233506f,-0.971474f}, - {-0.369768f,-0.102042f,-0.923504f},{0.369767f,0.102044f,-0.923504f},{0.347635f,0.123604f,-0.929447f}, - {0.414472f,0.0658736f,-0.907675f},{0.110963f,0.1973f,-0.974043f},{0.0850214f,0.210917f,-0.973799f}, - {0.391659f,0.0816379f,-0.916482f},{0.0624874f,0.223573f,-0.972682f},{0.0413979f,0.233508f,-0.971473f}, - {0.257578f,-0.00190271f,-0.966256f},{0.51454f,-0.0662188f,-0.854906f},{0.560269f,-0.0958526f,-0.822746f}, - {0.144235f,0.164734f,-0.975735f},{0.472379f,0.0116715f,-0.881318f},{0.19602f,0.0638166f,-0.978521f}, - {0.659992f,-0.142412f,-0.737652f},{0.71855f,-0.148611f,-0.679412f},{0.485701f,-0.0741122f,-0.870978f}, - {0.608874f,-0.125862f,-0.783218f},{0.401556f,-0.0560238f,-0.914119f},{0.326385f,-0.0268274f,-0.944856f}, - {0.890704f,-0.0338724f,-0.453319f},{0.77454f,-0.0484116f,-0.630669f},{0.841226f,-0.0636956f,-0.536918f}, - {0.684245f,-0.0955126f,-0.72297f},{0.584646f,-0.0993696f,-0.80518f},{0.781126f,-0.136306f,-0.609313f}, - {0.932523f,-0.0355125f,-0.35936f},{0.91244f,-0.0352907f,-0.407686f},{0.850391f,-0.0382116f,-0.524763f}, - {0.966226f,-0.0291876f,-0.256036f},{0.959016f,-0.025686f,-0.282185f},{0.989269f,-0.0111537f,-0.145677f}, - {0.990238f,-0.0167921f,-0.138374f},{0.999987f,-0.0050596f,0.0f},{0.999999f,0.00138152f,-1.73582e-014f}, - {0.439909f,0.05402f,-0.896416f},{0.65544f,-0.0482827f,-0.753702f},{0.640906f,-0.0158483f,-0.767455f}, - {0.700666f,-0.0929347f,-0.707411f},{0.414519f,0.0658462f,-0.907655f},{0.68419f,-0.0875227f,-0.724033f}, - {0.669444f,-0.0738342f,-0.739184f},{0.391685f,0.0816169f,-0.916472f},{0.369884f,0.101929f,-0.92347f}, - {0.514494f,-0.0661576f,-0.854938f},{0.739288f,-0.154485f,-0.65543f},{0.763301f,-0.167303f,-0.624004f}, - {0.439948f,0.0540055f,-0.896398f},{0.718891f,-0.113792f,-0.685745f},{0.472514f,0.0113873f,-0.88125f}, - {0.842564f,-0.198106f,-0.500839f},{0.718253f,-0.14848f,-0.679755f},{0.660203f,-0.142438f,-0.737458f}, - {0.812292f,-0.201887f,-0.547197f},{0.609068f,-0.125965f,-0.783051f},{0.786669f,-0.193061f,-0.586412f}, - {0.940382f,-0.0274602f,-0.33901f},{0.841289f,-0.0636168f,-0.536829f},{0.914656f,-0.0631375f,-0.399271f}, - {0.780866f,-0.136511f,-0.609601f},{0.877955f,-0.163845f,-0.449833f},{0.961882f,-0.0323448f,-0.271544f}, - {0.932581f,-0.0355085f,-0.359209f},{0.890883f,-0.0338916f,-0.452967f},{0.980011f,-0.0289993f,-0.196816f}, - {0.966258f,-0.0291766f,-0.255917f},{0.990338f,-0.0167184f,-0.137663f},{0.993822f,-0.0198877f,-0.109189f}, - {0.999942f,-0.0107279f,-3.47115e-014f},{0.999987f,-0.0050596f,-3.47131e-014f},{0.559996f,-0.0957495f,-0.822944f}, - {0.850452f,-0.191923f,-0.489793f},{0.848968f,-0.155604f,-0.505015f},{0.865832f,-0.222898f,-0.447942f}, - {0.68422f,-0.0875411f,-0.724003f},{0.858046f,-0.225241f,-0.461544f},{0.85279f,-0.21684f,-0.47511f}, - {0.669461f,-0.0738554f,-0.739167f},{0.655515f,-0.0484446f,-0.753627f},{0.739263f,-0.154458f,-0.655463f}, - {0.89317f,-0.221079f,-0.391626f},{0.763157f,-0.16722f,-0.624202f},{0.70069f,-0.092937f,-0.707387f}, - {0.874317f,-0.220895f,-0.432174f},{0.718955f,-0.113948f,-0.685653f},{0.92105f,-0.235433f,-0.310221f}, - {0.842424f,-0.198007f,-0.501114f},{0.8124f,-0.201874f,-0.547041f},{0.907886f,-0.245744f,-0.339635f}, - {0.786761f,-0.19314f,-0.586263f},{0.898676f,-0.24247f,-0.365499f},{0.976871f,-0.0190519f,-0.212977f}, - {0.914689f,-0.0630402f,-0.399213f},{0.966361f,-0.060284f,-0.250026f},{0.877788f,-0.164177f,-0.450037f}, - {0.942123f,-0.184757f,-0.279767f},{0.9848f,-0.0270421f,-0.171573f},{0.961912f,-0.0323457f,-0.27144f}, - {0.940472f,-0.0274934f,-0.338758f},{0.99172f,-0.0267396f,-0.125605f},{0.980029f,-0.0289918f,-0.196732f}, - {0.993882f,-0.0198319f,-0.108651f},{0.997263f,-0.0211762f,-0.0708397f},{0.999888f,-0.0149749f,1.73785e-014f}, - {0.999942f,-0.0107279f,-1.37458e-007f},{0.882982f,-0.223789f,-0.412628f},{0.879976f,-0.406267f,0.24615f}, - {0.945544f,-0.325496f,-4.37825e-014f},{0.825224f,-0.430021f,0.366179f},{0.887589f,-0.415042f,0.199814f}, - {0.838449f,-0.433914f,0.32973f},{0.855563f,-0.428207f,0.290948f},{0.903734f,-0.403111f,0.144105f}, - {0.924654f,-0.372393f,0.0796197f},{0.863964f,-0.351815f,0.360266f},{0.817015f,-0.287563f,0.499794f}, - {0.858968f,-0.289017f,0.422662f},{0.874009f,-0.415666f,0.251654f},{0.815734f,-0.415625f,0.402286f}, - {0.863176f,-0.404737f,0.301853f},{0.756732f,-0.271311f,0.594766f},{0.786642f,-0.274232f,0.553165f}, - {0.809642f,-0.279221f,0.516252f},{0.775661f,-0.27568f,0.567759f},{0.836827f,-0.271774f,0.475247f}, - {0.798255f,-0.268981f,0.538923f},{0.73515f,-0.0705437f,0.674224f},{0.747875f,-0.215371f,0.627932f}, - {0.716587f,-0.0720223f,0.693769f},{0.76542f,-0.258526f,0.589319f},{0.7395f,-0.256658f,0.622308f}, - {0.725968f,-0.215327f,0.65315f},{0.695311f,0.0536227f,0.716706f},{0.711787f,0.0553596f,0.700211f}, - {0.683635f,0.0526367f,0.727924f},{0.696847f,0.05402f,0.715182f},{0.671901f,0.0443476f,0.739312f}, - {0.680533f,0.0456343f,0.731295f},{0.660597f,0.0375712f,0.7498f},{0.666369f,0.0392392f,0.744589f}, - {0.652044f,0.0263913f,0.757722f},{0.64918f,0.0242326f,0.760249f},{0.636797f,0.00909943f,0.770977f}, - {0.819405f,-0.355806f,0.449419f},{0.934555f,-0.305399f,-0.182588f},{0.943202f,-0.272835f,-0.189554f}, - {0.931091f,-0.325025f,-0.165614f},{0.858058f,-0.225246f,-0.46152f},{0.92805f,-0.33101f,-0.170751f}, - {0.928601f,-0.326585f,-0.176191f},{0.852794f,-0.216857f,-0.475095f},{0.850459f,-0.192095f,-0.489713f}, - {0.882969f,-0.223794f,-0.412652f},{0.946723f,-0.282168f,-0.15523f},{0.954853f,-0.257023f,-0.148976f}, - {0.865843f,-0.222888f,-0.447925f},{0.937467f,-0.308825f,-0.160573f},{0.874341f,-0.220917f,-0.432116f}, - {0.951625f,-0.27811f,-0.130631f},{0.95615f,-0.266557f,-0.121342f},{0.907932f,-0.245706f,-0.33954f}, - {0.953392f,-0.267282f,-0.140014f},{0.8987f,-0.242529f,-0.365402f},{0.893122f,-0.221015f,-0.391771f}, - {0.98259f,-0.156094f,-0.100754f},{0.966375f,-0.0601717f,-0.249998f},{0.942001f,-0.185191f,-0.279891f}, - {0.921009f,-0.235357f,-0.310401f},{0.959761f,-0.258402f,-0.10994f},{0.997001f,-0.0120606f,-0.0764369f}, - {0.98481f,-0.0270479f,-0.171515f},{0.976903f,-0.0190983f,-0.212827f},{0.995645f,-0.0245852f,-0.089921f}, - {0.997876f,-0.0208988f,-0.0617047f},{0.991726f,-0.0267358f,-0.125558f},{0.997288f,-0.0211402f,-0.0705024f}, - {0.998719f,-0.0225064f,-0.0453191f},{0.99985f,-0.0173199f,0.0f},{0.999463f,-0.020436f,-0.0256193f}, - {0.999888f,-0.0149749f,0.0f},{0.93519f,-0.354145f,-0.000397467f},{0.945578f,-0.325394f,-0.00041274f}, - {0.928805f,-0.37057f,-0.000358322f},{0.928043f,-0.330975f,-0.170857f},{0.926383f,-0.376582f,-0.00037055f}, - {0.927819f,-0.37303f,-0.00038323f},{0.928592f,-0.326569f,-0.176265f},{0.934514f,-0.30552f,-0.182597f}, - {0.946691f,-0.282148f,-0.155461f},{0.94777f,-0.318954f,-0.000340813f},{0.959916f,-0.280289f,-0.000332774f}, - {0.931084f,-0.324972f,-0.165758f},{0.934841f,-0.355065f,-0.000347719f},{0.937472f,-0.308718f,-0.160746f}, - {0.957958f,-0.286908f,-0.000297201f},{0.958184f,-0.286152f,-0.000278036f},{0.951596f,-0.278077f,-0.130911f}, - {0.962412f,-0.271594f,-0.000317168f},{0.953349f,-0.267276f,-0.140321f},{0.954789f,-0.257072f,-0.149307f}, - {0.993743f,-0.111694f,-0.00021707f},{0.982439f,-0.156718f,-0.101254f},{0.971735f,-0.236074f,-0.000236761f}, - {0.95965f,-0.25861f,-0.110423f},{0.956116f,-0.266503f,-0.121731f},{0.962829f,-0.270112f,-0.000258194f}, - {0.999963f,-0.00863986f,-0.000162909f},{0.996969f,-0.0121313f,-0.0768439f},{0.999997f,-0.00228269f,-0.000191989f}, - {0.995608f,-0.0244896f,-0.0903648f},{0.999852f,-0.0172187f,-0.000131616f},{0.997851f,-0.0209353f,-0.0620942f}, - {0.998704f,-0.0225295f,-0.0456412f},{0.999808f,-0.0196018f,-9.66914e-005f},{0.999813f,-0.0193208f,-5.44735e-005f}, - {0.99946f,-0.0204332f,-0.0257239f},{0.999843f,-0.0176994f,0.0f},{-0.271326f,0.0f,0.962488f}, - {-0.253151f,0.0f,0.967427f},{-0.26258f,0.0f,0.96491f},{-0.147431f,0.0f,0.989072f}, - {-0.162743f,0.0f,0.986669f},{-0.209863f,0.0f,0.977731f},{-0.243346f,0.0f,0.96994f}, - {-0.20324f,0.0f,0.979129f},{-0.0844041f,0.0f,0.996432f},{-0.0211631f,0.0f,0.999776f}, - {-0.0519304f,0.0f,0.998651f},{-0.0826965f,0.0f,0.996575f},{-0.113463f,0.0f,0.993542f}, - {-0.11544f,0.0f,0.993314f},{-0.119575f,0.0f,0.992825f},{-0.125688f,0.0f,0.99207f}, - {-0.133439f,0.0f,0.991057f},{-0.142487f,0.0f,0.989797f},{-0.1524f,0.0f,0.988319f}, - {0.123071f,6.49463e-018f,-0.992398f},{0.13416f,-1.11865e-017f,-0.99096f},{0.134575f,-3.82822e-018f,-0.990903f}, - {0.113491f,1.60303e-018f,-0.993539f},{0.0902913f,7.81879e-018f,-0.995915f},{0.0774828f,9.91352e-018f,-0.996994f}, - {0.0670916f,1.03021e-017f,-0.997747f},{0.0438914f,-1.68674e-018f,-0.999036f},{0.147436f,3.8365e-018f,-0.989072f}, - {0.0206911f,8.0814e-018f,-0.999786f},{0.160907f,8.05703e-018f,-0.98697f},{0.190446f,1.33567e-017f,-0.981698f}, - {0.300752f,0.0f,-0.953702f},{0.299196f,0.0f,-0.954192f},{0.266455f,-9.04092e-018f,-0.963847f}, - {0.25387f,3.88234e-018f,-0.967238f},{0.246065f,-1.05499e-017f,-0.969253f},{0.294624f,3.20684e-018f,-0.955613f}, - {0.287357f,-3.12775e-018f,-0.957824f},{0.277782f,1.04562e-017f,-0.960644f},{0.240601f,1.18742e-017f,-0.970624f}, - {-1.0f,-6.77626e-018f,1.27676e-015f},{-1.0f,-6.77626e-018f,1.27052e-015f},{-1.0f,0.0f,1.27676e-015f}, - {-1.0f,-3.2255e-018f,1.2844e-015f},{-1.0f,-2.22261e-018f,1.27052e-015f},{-1.0f,-2.05998e-018f,1.27052e-015f}, - {-1.0f,2.92735e-018f,1.2844e-015f},{-1.0f,0.0f,1.27052e-015f},{2.22045e-016f,1.0f,0.0f}, - {-4.44089e-016f,1.0f,0.0f},{4.44089e-016f,1.0f,0.0f},{-8.88178e-016f,1.0f,0.0f}, - {0.895526f,0.44501f,0.0f},{0.957889f,0.287138f,0.0f},{0.964461f,0.264225f,0.0f}, - {0.996976f,0.0777153f,0.0f},{0.87496f,0.484196f,0.0f},{0.788298f,0.615293f,0.0f}, - {0.752381f,0.658728f,0.0f},{0.629043f,0.777371f,0.0f},{0.595906f,0.803054f,0.0f}, - {0.437093f,0.899416f,0.0f},{0.412424f,0.910992f,0.0f},{0.223703f,0.974657f,0.0f}, - {0.210088f,0.977683f,0.0f},{-1.04131e-014f,1.0f,0.0f},{-5.20654e-015f,1.0f,0.0f}, - {-0.77709f,0.62939f,1.00199e-015f},{-0.793886f,0.608066f,8.62015e-016f},{-0.63319f,0.773996f,7.65657e-016f}, - {6.28037e-016f,1.0f,-6.81933e-031f},{-2.51215e-015f,1.0f,2.72773e-030f},{-0.22043f,0.975403f,2.71985e-016f}, - {-0.429735f,0.902955f,5.30243e-016f},{-0.226136f,0.974096f,2.90187e-016f},{-0.44128f,0.89737f,5.88046e-016f}, - {-0.61793f,0.786233f,7.01456e-016f},{-0.8981f,0.439791f,9.6132e-016f},{-0.974099f,0.22612f,1.13394e-015f}, - {-0.906488f,0.422231f,1.14646e-015f},{-0.976328f,0.216293f,1.13616e-015f},{-1.0f,3.14018e-016f,1.18453e-015f}, - {-0.636824f,0.0f,0.771009f},{-0.636824f,4.41885e-018f,0.771009f},{0.976094f,0.0764224f,0.203472f}, - {0.996976f,0.0777152f,2.3946e-009f},{0.996976f,0.0777152f,1.82309e-009f},{-0.0519161f,5.69588e-006f,0.998651f}, - {0.456027f,0.0391237f,0.889106f},{-0.0825944f,1.35909e-005f,0.996583f},{0.861638f,0.0691877f,0.502785f}, - {0.636981f,0.0509221f,0.769196f},{0.996976f,0.0777152f,6.33733e-010f},{0.996976f,0.0777152f,-2.35021e-015f}, - {0.917412f,0.0749912f,0.390808f},{0.856741f,0.0700812f,0.510962f},{0.282672f,0.0305668f,0.95873f}, - {0.436736f,0.0398436f,0.898707f},{0.663385f,0.0583498f,0.746f},{0.347654f,0.0286465f,0.937185f}, - {0.854338f,0.0674458f,0.515323f},{-0.113462f,1.67095e-011f,0.993542f},{-0.0211583f,3.90358e-007f,0.999776f}, - {0.996976f,0.0777152f,1.22379e-009f},{-0.115053f,0.707107f,0.697684f},{0.041302f,0.702691f,0.710295f}, - {0.13998f,0.918265f,0.3704f},{0.196116f,0.664219f,0.721354f},{0.515388f,0.76718f,0.381851f}, - {0.335631f,0.863385f,0.376721f},{0.464798f,0.490492f,0.737143f},{0.794304f,0.467108f,0.388447f}, - {0.671315f,0.632878f,0.385748f},{0.996976f,0.0777152f,8.89301e-008f},{0.957256f,0.289241f,8.65022e-007f}, - {0.87754f,0.278854f,0.390082f},{0.171643f,0.256675f,0.951135f},{0.101729f,0.309894f,0.945313f}, - {-0.133372f,-4.90387e-007f,0.991066f},{0.26464f,0.113588f,0.957634f},{0.631152f,0.216859f,0.744728f}, - {0.227046f,0.189962f,0.955178f},{-0.151307f,0.368095f,0.917394f},{-0.0644563f,0.366433f,0.928209f}, - {-0.162743f,-1.36278e-016f,0.986669f},{-0.152368f,-4.77403e-007f,0.988324f},{-0.0598835f,0.929788f,0.363191f}, - {0.20987f,0.977729f,1.07918e-005f},{-1.37117e-008f,1.0f,8.31709e-008f},{0.0217202f,0.34688f,0.937658f}, - {-0.142402f,-1.01854e-006f,0.989809f},{0.563926f,0.362795f,0.741867f},{0.339591f,0.592707f,0.730326f}, - {-0.115426f,-7.18981e-007f,0.993316f},{0.282671f,0.0305691f,0.95873f},{-0.113463f,1.58673e-014f,0.993542f}, - {0.663385f,0.0583523f,0.746f},{0.411528f,0.911397f,6.3595e-006f},{0.917412f,0.0749922f,0.390808f}, - {0.594217f,0.804305f,4.18309e-006f},{-0.125613f,-1.78317e-007f,0.992079f},{0.751163f,0.660117f,2.58675e-006f}, - {-0.11953f,1.33025e-007f,0.992831f},{0.874228f,0.485516f,4.30103e-007f},{-0.0599047f,0.929788f,0.363187f}, - {6.95989e-015f,1.0f,-4.64483e-014f},{-0.0993814f,0.87226f,0.478837f},{-0.203217f,2.41719e-015f,0.979134f}, - {-0.177258f,0.489042f,0.85406f},{-0.119006f,0.87226f,0.474341f},{-0.212261f,0.489042f,0.84604f}, - {-0.151316f,0.368095f,0.917393f},{-0.162743f,0.0f,0.986669f},{-0.115076f,0.707107f,0.69768f}, - {-0.750862f,0.640795f,0.159966f},{-0.690083f,0.633896f,0.34923f},{-0.633689f,0.773588f,4.47054e-006f}, - {-0.119072f,0.87226f,0.474324f},{-0.226237f,0.974072f,4.35889e-005f},{-0.441461f,0.89728f,1.9127e-005f}, - {-0.314908f,0.831026f,0.458507f},{-0.793896f,0.608053f,1.75823e-008f},{-0.604452f,0.56074f,0.56587f}, - {-0.475573f,0.362672f,0.801436f},{-0.425828f,0.412157f,0.805479f},{-0.4929f,0.748579f,0.443484f}, - {-0.2123f,0.489042f,0.84603f},{-0.325164f,0.461687f,0.825296f},{-0.271328f,2.66133e-006f,0.962487f}, - {-0.262654f,3.42352e-007f,0.96489f},{-0.243346f,-1.24911e-015f,0.96994f},{-0.253185f,2.24678e-006f,0.967418f}, - {0.640323f,0.0486817f,-0.766562f},{0.513173f,0.0370848f,-0.857483f},{0.875571f,0.0666236f,-0.478474f}, - {0.996904f,0.0775964f,-0.0127208f},{0.996948f,0.0776561f,-0.00805679f},{0.880476f,0.0653022f,-0.469572f}, - {0.878213f,0.0659754f,-0.473698f},{0.857586f,0.0660304f,-0.510084f},{0.996974f,0.0777085f,-0.00192217f}, - {0.996976f,0.0777145f,-0.00043536f},{0.977579f,0.0758877f,-0.196417f},{0.043964f,5.59703e-006f,-0.999033f}, - {0.350245f,0.0257948f,-0.936303f},{0.52637f,0.0365804f,-0.849468f},{0.0672212f,1.00329e-005f,-0.997738f}, - {0.616326f,0.0410888f,-0.786418f},{0.902304f,0.0665963f,-0.425926f},{0.539132f,0.036057f,-0.841449f}, - {0.0206959f,4.01696e-007f,-0.999786f},{0.113495f,3.419e-007f,-0.993538f},{0.996967f,0.0776912f,-0.00445871f}, - {0.0904433f,1.17965e-005f,-0.995902f},{-0.123071f,-6.16506e-018f,-0.992398f},{-0.13416f,1.30823e-017f,-0.99096f}, - {-0.134575f,4.86852e-018f,-0.990903f},{-0.113491f,-8.07206e-018f,-0.993539f},{-0.0902913f,1.48949e-020f,-0.995915f}, - {-0.0774828f,-3.75189e-018f,-0.996994f},{-0.0670916f,5.48641e-018f,-0.997747f},{-0.0438914f,-2.91677e-017f,-0.999036f}, - {-0.147436f,3.19289e-018f,-0.989072f},{-0.0206911f,-5.39916e-018f,-0.999786f},{-0.160907f,-1.04945e-017f,-0.98697f}, - {-0.190446f,-2.1531e-018f,-0.981698f},{-0.300752f,0.0f,-0.953702f},{-0.299196f,-1.03859e-017f,-0.954192f}, - {-0.266455f,-1.0491e-017f,-0.963847f},{-0.25387f,-5.26397e-018f,-0.967238f},{-0.246065f,1.44857e-017f,-0.969253f}, - {-0.294624f,0.0f,-0.955613f},{-0.287357f,1.04255e-017f,-0.957824f},{-0.277782f,0.0f,-0.960644f}, - {-0.240601f,5.2824e-018f,-0.970624f},{0.271326f,0.0f,0.962488f},{0.253151f,0.0f,0.967427f}, - {0.26258f,0.0f,0.96491f},{0.147431f,0.0f,0.989072f},{0.162743f,0.0f,0.986669f}, - {0.209863f,0.0f,0.977731f},{0.243346f,0.0f,0.96994f},{0.20324f,0.0f,0.979129f}, - {0.0844041f,0.0f,0.996432f},{0.0211631f,0.0f,0.999776f},{0.0519304f,0.0f,0.998651f}, - {0.0826965f,0.0f,0.996575f},{0.113463f,0.0f,0.993542f},{0.115523f,0.0f,0.993305f}, - {0.119556f,0.0f,0.992828f},{0.125642f,0.0f,0.992076f},{0.133401f,0.0f,0.991062f}, - {0.142437f,0.0f,0.989804f},{0.152342f,0.0f,0.988328f},{1.0f,0.0f,-1.26288e-015f}, - {1.0f,0.0f,-1.26775e-015f},{1.77636e-015f,-1.0f,0.0f},{-0.895526f,-0.44501f,0.0f}, - {-0.957888f,-0.287142f,0.0f},{-0.964461f,-0.264225f,0.0f},{-0.996976f,-0.0777153f,0.0f}, - {-0.874961f,-0.484193f,0.0f},{-0.788298f,-0.615293f,0.0f},{-0.752379f,-0.658731f,0.0f}, - {-0.629043f,-0.777371f,0.0f},{-0.595907f,-0.803054f,0.0f},{-0.437093f,-0.899416f,0.0f}, - {-0.412414f,-0.910997f,0.0f},{-0.223703f,-0.974657f,0.0f},{-0.210092f,-0.977682f,0.0f}, - {1.04131e-014f,-1.0f,0.0f},{5.20654e-015f,-1.0f,0.0f},{0.793886f,-0.608066f,-1.01875e-015f}, - {0.63319f,-0.773996f,-7.50031e-016f},{0.77709f,-0.62939f,-9.20484e-016f},{0.44128f,-0.89737f,-5.60822e-016f}, - {0.61793f,-0.786233f,-7.31954e-016f},{0.22043f,-0.975403f,-2.72665e-016f},{0.429735f,-0.902955f,-5.0373e-016f}, - {0.226136f,-0.974096f,-2.80072e-016f},{0.8981f,-0.439791f,-1.24113e-015f},{0.974099f,-0.22612f,-1.15385e-015f}, - {0.906488f,-0.422231f,-1.07376e-015f},{0.976328f,-0.216293f,-1.15649e-015f},{1.0f,-3.14018e-016f,-1.18453e-015f}, - {0.636824f,-4.24524e-018f,0.771009f},{0.636824f,9.31099e-019f,0.771009f},{0.636824f,-5.78592e-018f,0.771009f}, - {0.636824f,-5.00079e-018f,0.771009f},{0.636824f,0.0f,0.771009f},{0.636824f,1.67186e-018f,0.771009f}, - {0.636824f,4.01246e-018f,0.771009f},{0.636824f,2.67498e-018f,0.771009f},{0.636824f,5.34995e-018f,0.771009f}, - {0.636824f,-2.00623e-018f,0.771009f},{0.636824f,-3.77969e-018f,0.771009f},{0.636824f,-2.75858e-018f,0.771009f}, - {0.636824f,2.26987e-019f,0.771009f},{0.636824f,-5.34995e-018f,0.771009f},{0.636824f,2.20943e-018f,0.771009f}, - {-0.975689f,-0.076394f,0.205416f},{-0.996976f,-0.0777152f,2.40026e-009f},{-0.996976f,-0.0777152f,1.82763e-009f}, - {0.0519161f,-5.69588e-006f,0.998651f},{-0.456027f,-0.0391237f,0.889106f},{0.0825944f,-1.3591e-005f,0.996583f}, - {-0.861638f,-0.0691877f,0.502785f},{-0.635452f,-0.050805f,0.770467f},{-0.996976f,-0.0777152f,6.35071e-010f}, - {-0.996976f,-0.0777152f,1.31007e-017f},{-0.917412f,-0.0749912f,0.390808f},{-0.856741f,-0.0700812f,0.510962f}, - {-0.282672f,-0.0305668f,0.95873f},{-0.436736f,-0.0398436f,0.898707f},{-0.663385f,-0.0583498f,0.746f}, - {-0.345792f,-0.0285025f,0.937878f},{-0.853315f,-0.0673689f,0.517025f},{0.113462f,-1.67093e-011f,0.993542f}, - {0.0211583f,-3.90359e-007f,0.999776f},{-0.996976f,-0.0777152f,1.22684e-009f},{-0.564161f,-0.362409f,0.741878f}, - {-0.264855f,-0.112973f,0.957648f},{-0.631536f,-0.215685f,0.744744f},{-0.75206f,-0.659094f,-1.94181e-007f}, - {-0.672214f,-0.631911f,0.385768f},{-0.794595f,-0.466608f,0.388454f},{-0.595421f,-0.803414f,4.71637e-006f}, - {-0.917412f,-0.0749922f,0.390808f},{-0.95773f,-0.28767f,5.42362e-007f},{-0.878015f,-0.277342f,0.390091f}, - {-0.0219211f,-0.346813f,0.937678f},{0.133312f,1.10489e-006f,0.991074f},{-0.102261f,-0.309574f,0.94536f}, - {-0.996976f,-0.0777152f,-3.03639e-015f},{-0.0424957f,-0.702528f,0.710387f},{0.0598835f,-0.929788f,0.363191f}, - {0.115053f,-0.707107f,0.697684f},{-0.411994f,-0.911187f,8.1719e-006f},{-0.336083f,-0.863203f,0.376735f}, - {-0.516581f,-0.766361f,0.381883f},{-0.141492f,-0.918012f,0.37045f},{-0.196474f,-0.664088f,0.721378f}, - {0.152291f,4.30608e-007f,0.988336f},{0.142379f,7.6959e-007f,0.989812f},{0.0637951f,-0.366351f,0.928287f}, - {-0.465521f,-0.48975f,0.73718f},{-0.227177f,-0.18976f,0.955187f},{0.151307f,-0.368095f,0.917394f}, - {0.162743f,1.2436e-015f,0.986669f},{-0.874519f,-0.484991f,1.45876e-006f},{-0.663385f,-0.0583523f,0.746f}, - {-0.282671f,-0.0305691f,0.95873f},{0.113463f,5.79189e-014f,0.993542f},{0.115403f,9.38329e-007f,0.993319f}, - {-0.172046f,-0.256288f,0.951166f},{0.119516f,3.02192e-008f,0.992832f},{0.125569f,-3.80451e-007f,0.992085f}, - {-0.340547f,-0.59209f,0.730382f},{-0.21143f,-0.977393f,5.28771e-006f},{0.0599047f,-0.929788f,0.363187f}, - {-6.95989e-015f,-1.0f,-4.64483e-014f},{0.0993814f,-0.87226f,0.478837f},{0.203217f,-1.63982e-015f,0.979134f}, - {0.177258f,-0.489042f,0.85406f},{0.119006f,-0.87226f,0.474341f},{0.212261f,-0.489042f,0.84604f}, - {0.151316f,-0.368095f,0.917393f},{0.162743f,-3.30488e-015f,0.986669f},{0.115076f,-0.707107f,0.69768f}, - {0.750862f,-0.640795f,0.159966f},{0.690083f,-0.633896f,0.34923f},{0.633689f,-0.773588f,4.47054e-006f}, - {0.119072f,-0.87226f,0.474324f},{0.226237f,-0.974072f,4.35889e-005f},{0.441461f,-0.89728f,1.9127e-005f}, - {0.314908f,-0.831026f,0.458507f},{0.793896f,-0.608053f,1.75822e-008f},{0.604452f,-0.56074f,0.56587f}, - {0.475573f,-0.362672f,0.801436f},{0.425828f,-0.412157f,0.805479f},{0.4929f,-0.748579f,0.443484f}, - {0.2123f,-0.489042f,0.84603f},{0.325164f,-0.461687f,0.825296f},{0.271328f,-2.66133e-006f,0.962487f}, - {0.262654f,-3.42352e-007f,0.96489f},{0.243346f,-1.05425e-016f,0.96994f},{0.253185f,-2.24678e-006f,0.967418f}, - {-0.875571f,-0.0666236f,-0.478474f},{-0.640323f,-0.0486817f,-0.766562f},{-0.513173f,-0.0370848f,-0.857483f}, - {-0.350245f,-0.0257948f,-0.936303f},{-0.0206959f,-4.01482e-007f,-0.999786f},{-0.0439641f,-5.59705e-006f,-0.999033f}, - {-0.616326f,-0.0410888f,-0.786418f},{-0.539132f,-0.036057f,-0.841449f},{-0.113495f,-3.41892e-007f,-0.993538f}, - {-0.880476f,-0.0653022f,-0.469573f},{-0.996948f,-0.0776561f,-0.00805682f},{-0.878213f,-0.0659754f,-0.473698f}, - {-0.902304f,-0.0665963f,-0.425926f},{-0.996904f,-0.0775964f,-0.0127207f},{-0.996967f,-0.0776912f,-0.00445868f}, - {-0.857586f,-0.0660304f,-0.510084f},{-0.52637f,-0.0365804f,-0.849468f},{-0.996974f,-0.0777085f,-0.00192216f}, - {-0.996976f,-0.0777145f,-0.000435368f},{-0.977579f,-0.0758877f,-0.196417f},{-0.0672213f,-1.00329e-005f,-0.997738f}, - {-0.0904433f,-1.17964e-005f,-0.995902f},{0.239165f,0.970979f,0.0f},{2.21189e-011f,1.0f,0.0f}, - {-9.4369e-017f,1.0f,0.0f},{0.934452f,0.35609f,0.0f},{0.822248f,0.569129f,0.0f}, - {0.823f,0.568041f,0.0f},{0.464996f,0.885313f,0.0f},{0.662288f,0.74925f,0.0f}, - {0.463813f,0.885933f,0.0f},{0.992785f,-0.119912f,0.0f},{0.935185f,-0.354158f,0.0f}, - {0.992772f,-0.120012f,0.0f},{0.934789f,0.355204f,0.0f},{0.992676f,0.120803f,0.0f}, - {0.99262f,0.12127f,0.0f},{0.823569f,-0.567216f,0.0f},{0.663361f,-0.7483f,0.0f}, - {0.823234f,-0.567703f,0.0f},{0.935249f,-0.353989f,0.0f},{0.663427f,-0.748241f,0.0f}, - {0.465239f,-0.885185f,0.0f},{0.465056f,-0.885281f,0.0f},{0.239511f,-0.970894f,0.0f}, - {0.239712f,-0.970844f,0.0f},{0.663196f,0.748446f,0.0f},{0.238516f,0.971139f,0.0f}, - {-1.11022e-016f,0.0f,-1.0f},{1.11022e-016f,0.0f,-1.0f},{5.55112e-017f,0.0f,-1.0f}, - {-5.55112e-017f,0.0f,-1.0f},{1.38778e-017f,1.0f,0.0f},{0.281866f,0.959454f,3.5075e-017f}, - {0.28018f,0.959948f,-4.21701e-019f},{0.989747f,0.142833f,2.49501e-017f},{0.909389f,0.415948f,-1.25209e-017f}, - {0.910294f,0.413963f,-4.85725e-018f},{0.755415f,0.655247f,1.3143e-017f},{0.53479f,0.844985f,1.81431e-018f}, - {0.542504f,0.840053f,1.76327e-018f},{0.910294f,-0.413963f,-1.17305e-017f},{0.989747f,-0.142833f,2.30199e-017f}, - {0.909389f,-0.415948f,2.57792e-017f},{0.989934f,0.141528f,-9.05295e-018f},{0.989934f,-0.141527f,2.56689e-017f}, - {0.542504f,-0.840053f,-5.88236e-019f},{0.755415f,-0.655247f,2.43207e-017f},{0.53479f,-0.844985f,-3.19936e-017f}, - {0.755193f,-0.655503f,8.23455e-018f},{0.28018f,-0.959948f,3.039e-017f},{0.281866f,-0.959454f,-5.9836e-018f}, - {7.40149e-017f,-1.0f,0.0f},{0.755193f,0.655503f,1.3143e-017f},{7.40149e-017f,1.0f,0.0f}, - {0.270909f,0.962605f,0.0f},{4.07586e-012f,1.0f,0.0f},{0.950963f,0.309304f,0.0f}, - {0.808694f,0.588229f,0.0f},{0.912501f,0.409074f,0.0f},{0.759143f,0.650924f,0.0f}, - {0.583716f,0.811958f,0.0f},{0.542309f,0.840179f,0.0f},{0.951446f,-0.307814f,0.0f}, - {0.905627f,-0.424076f,0.0f},{0.809042f,-0.587751f,0.0f},{0.990956f,0.134185f,0.0f}, - {0.988363f,-0.152115f,0.0f},{1.0f,2.72147e-017f,0.0f},{0.589654f,-0.807656f,0.0f}, - {0.749122f,-0.662432f,0.0f},{0.5326f,-0.846367f,0.0f},{0.275665f,-0.961254f,0.0f}, - {0.309676f,-0.950842f,0.0f},{0.305779f,0.952103f,0.0f},{0.272029f,0.962289f,0.0f}, - {-5.92119e-016f,1.0f,0.0f},{1.60011e-012f,1.0f,0.0f},{0.911657f,0.410952f,0.0f}, - {0.759835f,0.650115f,0.0f},{0.540288f,0.84148f,0.0f},{0.988688f,-0.149984f,0.0f}, - {0.905627f,-0.424076f,0.0f},{0.990518f,0.137383f,0.0f},{1.0f,3.70074e-017f,0.0f}, - {0.75011f,-0.661313f,0.0f},{0.534974f,-0.844868f,0.0f},{0.277678f,-0.960674f,0.0f}, - {1.19209e-007f,-1.0f,0.0f},{-0.133225f,0.157091f,0.978557f},{-0.301804f,-0.0247052f,0.95305f}, - {-0.321243f,-0.00178462f,0.946995f},{-0.418489f,0.112883f,0.901179f},{-0.243083f,0.286628f,0.92669f}, - {-0.225214f,0.265559f,0.93742f},{-0.452261f,-0.283519f,0.845622f},{-0.645f,-0.47632f,0.597573f}, - {-0.656839f,-0.462361f,0.595638f},{-0.282442f,-0.0475355f,0.958106f},{-0.114411f,0.134906f,0.984231f}, - {-0.765511f,-0.605729f,0.216993f},{-0.76115f,-0.610871f,0.217916f},{-0.244062f,-0.0927915f,0.96531f}, - {-0.469014f,-0.263765f,0.842884f},{-0.263186f,-0.0702416f,0.962185f},{-0.739853f,-0.635983f,-0.219416f}, - {-0.748269f,-0.62606f,0.219416f},{-0.757174f,-0.642143f,0.119748f},{-0.756818f,-0.615978f,0.218624f}, - {-0.504783f,-0.428095f,-0.749619f},{-0.38664f,-0.360895f,-0.848684f},{-0.598628f,-0.530999f,-0.599736f}, - {-0.712963f,-0.604648f,-0.355084f},{0.038317f,-0.0451812f,-0.998244f},{-0.150369f,-0.203268f,-0.967508f}, - {-0.169153f,-0.181119f,-0.968805f},{0.0191669f,-0.0226006f,-0.999561f},{-0.18253f,-0.1548f,-0.970938f}, - {4.02562e-016f,-4.74676e-016f,-1.0f},{-0.170486f,0.201027f,0.964636f},{-0.340727f,0.0211908f,0.939923f}, - {-0.360228f,0.0441843f,0.931817f},{-0.151922f,0.179137f,0.972023f},{-0.379711f,0.0671573f,0.922665f}, - {-0.1889f,0.222739f,0.956402f},{-0.588114f,-0.123331f,0.79932f},{-0.399143f,0.0900703f,0.912454f}, - {-0.207148f,0.244256f,0.947327f},{-0.437715f,0.135553f,0.888837f},{-0.260738f,0.307446f,0.915146f}, - {-0.475662f,0.180297f,0.860952f},{-0.49431f,0.202286f,0.845422f},{-0.312267f,0.368206f,0.875736f}, - {-0.456785f,0.158038f,0.875426f},{-0.36133f,0.426058f,0.829407f},{-0.345274f,0.407126f,0.845597f}, - {-0.530776f,0.245284f,0.811242f},{-0.328915f,0.387836f,0.861045f},{-0.392475f,0.462782f,0.794856f}, - {-0.565895f,0.286694f,0.773026f},{-0.582863f,0.306702f,0.752465f},{-0.548521f,0.266208f,0.792627f}, - {-0.436576f,0.514784f,0.737834f},{-0.615454f,0.345131f,0.708591f},{-0.450527f,0.531233f,0.717508f}, - {-0.599393f,0.326194f,0.730976f},{-0.489956f,0.577725f,0.652822f},{-0.477228f,0.562717f,0.674983f}, - {-0.660525f,0.398276f,0.636461f},{-0.464081f,0.547216f,0.696551f},{-0.646047f,0.381204f,0.661292f}, - {-0.525514f,0.619653f,0.58298f},{-0.687723f,0.430346f,0.58467f},{-0.700401f,0.445295f,0.557808f}, - {-0.674425f,0.414666f,0.610904f},{-0.723827f,0.472918f,0.502416f},{-0.55692f,0.656685f,0.508532f}, - {-0.546929f,0.644904f,0.533824f},{-0.536457f,0.632556f,0.558647f},{-0.583927f,0.68853f,0.430066f}, - {-0.575427f,0.678508f,0.45663f},{-0.753955f,0.508443f,0.415977f},{-0.734548f,0.48556f,0.473994f}, - {-0.762629f,0.518671f,0.386494f},{-0.59938f,0.706751f,0.375828f},{-0.591913f,0.697947f,0.403124f}, - {-0.784509f,0.54447f,0.296814f},{-0.612728f,0.72249f,0.32027f},{-0.777905f,0.536683f,0.326857f}, - {-0.60632f,0.714934f,0.348202f},{-0.770612f,0.528084f,0.356769f},{-0.623923f,0.735691f,0.263588f}, - {-0.795672f,0.557633f,0.236543f},{-0.628701f,0.741325f,0.234887f},{-0.790429f,0.551451f,0.266692f}, - {-0.618597f,0.729411f,0.292057f},{-0.632927f,0.746308f,0.205979f},{-0.804162f,0.567644f,0.176364f}, - {-0.636597f,0.750636f,0.176891f},{-0.800246f,0.563026f,0.206418f},{-0.814352f,0.57966f,0.0287253f}, - {-0.646797f,0.762662f,3.14853e-016f},{-0.646513f,0.762327f,0.0296338f},{-0.639708f,0.754304f,0.147647f}, - {-0.807432f,0.5715f,0.146429f},{-0.812092f,0.576994f,0.0870897f},{-0.949862f,0.30322f,0.0762915f}, - {-0.951107f,0.304688f,0.0506043f},{-0.645661f,0.761323f,0.0592414f},{-0.642257f,0.757309f,0.118274f}, - {-0.644242f,0.75965f,0.0887967f},{-0.813513f,0.57867f,0.0577667f},{-0.81007f,0.574611f,0.116657f}, - {-0.997518f,-0.0606536f,0.0357603f},{-0.885978f,-0.463681f,0.00650573f},{-0.998038f,-0.0600411f,0.0177823f}, - {-0.942915f,0.295029f,0.154497f},{-0.939484f,0.290984f,0.180824f},{-0.996638f,-0.061691f,0.0539127f}, - {-0.948091f,0.301132f,0.102193f},{-0.995387f,-0.0631666f,0.0722163f},{-0.991729f,-0.0674795f,0.109178f}, - {-0.602655f,-0.797758f,-0.0197241f},{-0.603113f,-0.797218f,-0.0264206f},{-0.223622f,-0.973184f,-0.0539127f}, - {-0.885009f,-0.464825f,0.0264206f},{-0.885466f,-0.464285f,0.0197241f},{0.14403f,-0.986628f,-0.0762915f}, - {0.145275f,-0.988096f,-0.0506043f},{-0.0805097f,-0.996754f,-1.10368e-016f},{-0.222222f,-0.974834f,-0.0177823f}, - {0.14601f,-0.988963f,-0.0251637f},{0.438888f,-0.898083f,-0.0287253f},{0.427652f,-0.903943f,-3.00521e-016f}, - {0.17704f,-0.984204f,-5.39175e-016f},{0.646797f,-0.762662f,-6.22394e-016f},{-0.930885f,0.280844f,0.233625f}, - {-0.712441f,0.459492f,0.530373f},{-0.566422f,0.66789f,0.482793f},{-0.744593f,0.497404f,0.445162f}, - {-0.872541f,0.212049f,0.440122f},{-0.514109f,0.606205f,0.606801f},{-0.502253f,0.592225f,0.630089f}, - {-0.631014f,0.363479f,0.68535f},{-0.422243f,0.497882f,0.757512f},{-0.804404f,0.131706f,0.579299f}, - {-0.893848f,-0.182894f,0.409371f},{-0.902811f,-0.172326f,0.394f},{-0.407538f,0.480543f,0.776525f}, - {-0.377068f,0.444615f,0.812488f},{-0.295345f,0.348252f,0.889658f},{-0.278164f,0.327993f,0.902799f}, - {-0.512693f,0.223962f,0.828846f},{-0.844231f,-0.241401f,0.47854f},{-0.718971f,0.030968f,0.69435f}, - {-0.833475f,-0.254083f,0.490674f},{-0.0954963f,0.112603f,0.98904f},{-0.0764977f,0.0902013f,0.992981f}, - {-0.0574318f,0.06772f,0.99605f},{-0.621631f,-0.503876f,0.599736f},{-0.71354f,-0.605138f,0.353084f}, - {-0.225096f,-0.115155f,0.967508f},{-0.0383156f,0.0451794f,0.998244f},{-0.206312f,-0.137304f,0.968805f}, - {-0.019166f,0.0225994f,0.999561f},{-0.757056f,-0.642042f,-0.121027f},{-0.182011f,-0.154359f,0.971105f}, - {-2.03646e-016f,2.40127e-016f,1.0f},{-0.355998f,-0.301914f,0.884372f},{-0.506241f,-0.429332f,0.747926f}, - {-0.419192f,-0.322513f,0.848684f},{-0.627779f,-0.532405f,0.567836f},{-0.435647f,-0.30311f,0.847547f}, - {-0.485883f,-0.243875f,0.839311f},{-0.502844f,-0.223875f,0.834882f},{-0.519872f,-0.203796f,0.829578f}, - {-0.536941f,-0.18367f,0.823383f},{-0.554024f,-0.163527f,0.816282f},{-0.571091f,-0.143403f,0.808264f}, - {-0.752979f,-0.348998f,0.557873f},{-0.764881f,-0.334964f,0.550232f},{-0.605061f,-0.103347f,0.789443f}, - {-0.621904f,-0.0834874f,0.778631f},{-0.638609f,-0.0637896f,0.766883f},{-0.655145f,-0.0442908f,0.754203f}, - {-0.671482f,-0.0250283f,0.740598f},{-0.687585f,-0.0060395f,0.726078f},{-0.703426f,0.0126381f,0.710657f}, - {-0.73419f,0.0489141f,0.677179f},{-0.749055f,0.0664415f,0.659168f},{-0.763535f,0.0835161f,0.640343f}, - {-0.777605f,0.100105f,0.620734f},{-0.791236f,0.116178f,0.600374f},{-0.817087f,0.146661f,0.557547f}, - {-0.829264f,0.161019f,0.535159f},{-0.840913f,0.174755f,0.512177f},{-0.852019f,0.187851f,0.488646f}, - {-0.862566f,0.200287f,0.464612f},{-0.8723f,-0.47981f,0.0942108f},{-0.954853f,-0.110961f,0.275577f}, - {-0.870179f,-0.48231f,0.100821f},{-0.881933f,0.223123f,0.415224f},{-0.890732f,0.233499f,0.389967f}, - {-0.898933f,0.243169f,0.3644f},{-0.906532f,0.252128f,0.338573f},{-0.913525f,0.260374f,0.312533f}, - {-0.919913f,0.267907f,0.286331f},{-0.925699f,0.274729f,0.260012f},{-0.935477f,0.286259f,0.207214f}, - {-0.989305f,-0.070338f,0.127782f},{-0.94578f,0.298407f,0.128274f},{-0.951842f,0.305555f,0.0251637f}, - {-0.938627f,0.344933f,7.30221e-017f},{-0.822203f,0.569194f,2.30577e-016f},{-0.627461f,-0.532136f,-0.56844f}, - {-0.63326f,-0.490164f,0.598933f},{-0.66876f,-0.448305f,0.593113f},{-0.680746f,-0.434172f,0.589983f}, - {-0.692779f,-0.419983f,0.586235f},{-0.704841f,-0.40576f,0.581857f},{-0.716913f,-0.391526f,0.576839f}, - {-0.728974f,-0.377304f,0.571173f},{-0.741003f,-0.36312f,0.564853f},{-0.776686f,-0.321045f,0.541931f}, - {-0.804996f,-0.55917f,0.198267f},{-0.809271f,-0.554129f,0.194989f},{-0.788372f,-0.307265f,0.53297f}, - {-0.799916f,-0.293653f,0.523356f},{-0.811296f,-0.280235f,0.513095f},{-0.82249f,-0.267036f,0.502197f}, - {-0.837294f,-0.521086f,0.165552f},{-0.650828f,-0.740956f,-0.165552f},{-0.64719f,-0.745245f,-0.160482f}, - {-0.854735f,-0.229015f,0.465812f},{-0.864968f,-0.216949f,0.452509f},{-0.87491f,-0.205226f,0.438652f}, - {-0.884543f,-0.193867f,0.424264f},{-0.857299f,-0.497498f,0.132416f},{-0.630822f,-0.764545f,-0.132417f}, - {-0.627951f,-0.767931f,-0.126333f},{-0.911416f,-0.16218f,0.378179f},{-0.919648f,-0.152473f,0.361938f}, - {-0.927496f,-0.143219f,0.34531f},{-0.93495f,-0.134431f,0.328326f},{-0.941998f,-0.126119f,0.31102f}, - {-0.948635f,-0.118293f,0.293425f},{-0.960649f,-0.104127f,0.25751f},{-0.966018f,-0.097796f,0.239258f}, - {-0.97096f,-0.0919688f,0.220857f},{-0.975475f,-0.0866457f,0.20234f},{-0.979563f,-0.0818252f,0.183742f}, - {-0.983228f,-0.0775037f,0.165095f},{-0.986473f,-0.0736768f,0.146431f},{-0.993754f,-0.0650924f,0.0906466f}, - {-0.602333f,-0.798137f,-0.0130831f},{-0.996651f,0.0817741f,3.49386e-017f},{-0.370185f,-0.380298f,-0.847547f}, - {-0.752523f,-0.621043f,0.219122f},{-0.769896f,-0.600558f,0.215848f},{-0.718226f,-0.661484f,-0.215848f}, - {-0.713823f,-0.666676f,-0.214476f},{-0.774298f,-0.595367f,0.214476f},{-0.778711f,-0.590164f,0.212875f}, - {-0.783128f,-0.584956f,0.211039f},{-0.78754f,-0.579753f,0.208966f},{-0.791941f,-0.574564f,0.206653f}, - {-0.796323f,-0.569397f,0.2041f},{-0.800677f,-0.564263f,0.201304f},{-0.813495f,-0.549149f,0.191472f}, - {-0.674627f,-0.712894f,-0.191472f},{-0.670463f,-0.717803f,-0.187718f},{-0.817658f,-0.54424f,0.187718f}, - {-0.821754f,-0.539411f,0.183731f},{-0.825773f,-0.534672f,0.179515f},{-0.829707f,-0.530032f,0.175076f}, - {-0.83355f,-0.525501f,0.170419f},{-0.840932f,-0.516797f,0.160482f},{-0.844456f,-0.512642f,0.155219f}, - {-0.84786f,-0.508628f,0.14977f},{-0.851139f,-0.504761f,0.144146f},{-0.854287f,-0.501049f,0.138358f}, - {-0.860171f,-0.494112f,0.126333f},{-0.862897f,-0.490897f,0.120119f},{-0.865476f,-0.487856f,0.113788f}, - {-0.867904f,-0.484993f,0.107351f},{-0.874264f,-0.477494f,0.0875334f},{-0.613858f,-0.784549f,-0.0875334f}, - {-0.61205f,-0.786681f,-0.0808013f},{-0.876072f,-0.475362f,0.0808013f},{-0.877724f,-0.473415f,0.0740269f}, - {-0.879219f,-0.471651f,0.0672227f},{-0.88056f,-0.47007f,0.0604006f},{-0.881747f,-0.46867f,0.0535724f}, - {-0.882783f,-0.467448f,0.0467496f},{-0.88367f,-0.466403f,0.0399431f},{-0.884411f,-0.465529f,0.0331634f}, - {-0.885788f,-0.463905f,0.0130831f},{-0.983879f,-0.178833f,5.93908e-017f},{-0.731303f,-0.646064f,-0.218624f}, - {-0.726972f,-0.651171f,-0.217917f},{-0.735599f,-0.640999f,-0.219122f},{-0.722611f,-0.656314f,-0.216992f}, - {-0.70941f,-0.671879f,-0.212875f},{-0.704994f,-0.677087f,-0.211039f},{-0.700581f,-0.682289f,-0.208966f}, - {-0.491286f,-0.657571f,-0.571173f},{-0.479257f,-0.671755f,-0.564852f},{-0.69618f,-0.687479f,-0.206653f}, - {-0.691799f,-0.692645f,-0.2041f},{-0.687444f,-0.69778f,-0.201305f},{-0.683125f,-0.702872f,-0.198267f}, - {-0.67885f,-0.707913f,-0.194989f},{-0.666368f,-0.722632f,-0.183731f},{-0.39777f,-0.767839f,-0.502197f}, - {-0.386784f,-0.780792f,-0.490674f},{-0.662349f,-0.727371f,-0.179515f},{-0.658414f,-0.73201f,-0.175076f}, - {-0.654571f,-0.736542f,-0.170419f},{-0.643666f,-0.749401f,-0.155219f},{-0.335717f,-0.841008f,-0.424264f}, - {-0.326411f,-0.851981f,-0.409371f},{-0.640261f,-0.753415f,-0.14977f},{-0.636982f,-0.757282f,-0.144146f}, - {-0.633834f,-0.760993f,-0.138358f},{-0.625224f,-0.771146f,-0.120119f},{-0.28531f,-0.900444f,-0.328326f}, - {-0.278262f,-0.908756f,-0.311019f},{-0.622645f,-0.774187f,-0.113788f},{-0.620218f,-0.77705f,-0.107351f}, - {-0.617942f,-0.779732f,-0.100821f},{-0.615822f,-0.782232f,-0.0942108f},{-0.610398f,-0.788628f,-0.0740269f}, - {-0.608902f,-0.790392f,-0.0672227f},{-0.240697f,-0.95305f,-0.183742f},{-0.237032f,-0.957371f,-0.165095f}, - {-0.607562f,-0.791973f,-0.0604006f},{-0.606374f,-0.793373f,-0.0535724f},{-0.605338f,-0.794594f,-0.0467497f}, - {-0.604451f,-0.79564f,-0.0399431f},{-0.603711f,-0.796513f,-0.0331634f},{-0.602143f,-0.798361f,-0.00650573f}, - {-0.762662f,-0.646797f,-1.07812e-032f},{-0.904079f,-0.427366f,5.07106e-017f},{-0.575259f,-0.558555f,-0.597573f}, - {-0.563421f,-0.572514f,-0.595638f},{-0.587f,-0.544711f,-0.598933f},{-0.5515f,-0.58657f,-0.593113f}, - {-0.539514f,-0.600703f,-0.589983f},{-0.527481f,-0.614892f,-0.586235f},{-0.515419f,-0.629115f,-0.581857f}, - {-0.503347f,-0.643349f,-0.576839f},{-0.46728f,-0.685877f,-0.557873f},{-0.183928f,-0.599921f,-0.778631f}, - {-0.455379f,-0.699911f,-0.550232f},{-0.443573f,-0.71383f,-0.541931f},{-0.431888f,-0.727609f,-0.53297f}, - {-0.420344f,-0.741222f,-0.523356f},{-0.408963f,-0.75464f,-0.513095f},{-0.0716416f,-0.732322f,-0.677179f}, - {-0.376029f,-0.793474f,-0.47854f},{-0.365525f,-0.80586f,-0.465812f},{-0.355292f,-0.817926f,-0.452509f}, - {-0.34535f,-0.829649f,-0.438652f},{0.0112556f,-0.830069f,-0.557547f},{-0.317449f,-0.862549f,-0.394f}, - {-0.308844f,-0.872695f,-0.378179f},{-0.300612f,-0.882402f,-0.361938f},{-0.292763f,-0.891656f,-0.34531f}, - {0.0761008f,-0.90653f,-0.415224f},{-0.271625f,-0.916582f,-0.293425f},{-0.265406f,-0.923914f,-0.275577f}, - {-0.259611f,-0.930748f,-0.25751f},{-0.254241f,-0.937079f,-0.239258f},{-0.249299f,-0.942906f,-0.220857f}, - {-0.244785f,-0.948229f,-0.20234f},{-0.233786f,-0.961198f,-0.146431f},{0.133653f,-0.974392f,-0.180824f}, - {-0.230955f,-0.964537f,-0.127782f},{-0.228531f,-0.967395f,-0.109178f},{-0.226506f,-0.969782f,-0.0906466f}, - {-0.224873f,-0.971708f,-0.0722163f},{-0.222742f,-0.974221f,-0.0357604f},{-0.337862f,-0.941196f,-1.55829e-016f}, - {-0.569614f,-0.821913f,-4.03832e-017f},{-0.348737f,-0.295756f,-0.889332f},{-0.353571f,-0.399889f,-0.845622f}, - {-0.336818f,-0.419643f,-0.842884f},{-0.319949f,-0.439533f,-0.839311f},{-0.302988f,-0.459533f,-0.834882f}, - {-0.28596f,-0.479612f,-0.829578f},{-0.26889f,-0.499738f,-0.823383f},{-0.251808f,-0.519881f,-0.816282f}, - {-0.234741f,-0.540006f,-0.808264f},{-0.217718f,-0.560077f,-0.79932f},{-0.20077f,-0.580061f,-0.789443f}, - {0.0813202f,-0.476462f,-0.875426f},{0.295347f,-0.348255f,-0.889657f},{0.100197f,-0.49872f,-0.860952f}, - {-0.167223f,-0.619618f,-0.766883f},{-0.150686f,-0.639117f,-0.754203f},{-0.13435f,-0.65838f,-0.740598f}, - {-0.118247f,-0.677368f,-0.726078f},{-0.102406f,-0.696046f,-0.710657f},{-0.0868611f,-0.714376f,-0.69435f}, - {-0.0567769f,-0.749849f,-0.659168f},{0.207399f,-0.625125f,-0.752465f},{-0.0422963f,-0.766924f,-0.640343f}, - {-0.0282275f,-0.783513f,-0.620733f},{-0.0145961f,-0.799586f,-0.600374f},{-0.00142744f,-0.815114f,-0.579299f}, - {0.29896f,-0.733089f,-0.610904f},{0.51411f,-0.606206f,-0.606799f},{0.312259f,-0.74877f,-0.58467f}, - {0.0234316f,-0.844427f,-0.535159f},{0.0350815f,-0.858163f,-0.512177f},{0.0461876f,-0.871259f,-0.488646f}, - {0.0567343f,-0.883695f,-0.464612f},{0.0667093f,-0.895457f,-0.440122f},{0.0849003f,-0.916907f,-0.389967f}, - {0.378491f,-0.826866f,-0.415977f},{0.0931016f,-0.926577f,-0.3644f},{0.1007f,-0.935536f,-0.338573f}, - {0.107693f,-0.943782f,-0.312533f},{0.114081f,-0.951315f,-0.286331f},{0.119867f,-0.958137f,-0.260012f}, - {0.125053f,-0.964252f,-0.233625f},{0.129645f,-0.969667f,-0.207214f},{0.137083f,-0.978437f,-0.154497f}, - {0.139948f,-0.981815f,-0.128274f},{0.142259f,-0.98454f,-0.102193f},{-0.131403f,-0.225632f,-0.96531f}, - {-0.112279f,-0.248182f,-0.962185f},{-0.0930223f,-0.270888f,-0.958106f},{-0.0736605f,-0.293718f,-0.95305f}, - {-0.054222f,-0.316638f,-0.946995f},{-0.034737f,-0.339614f,-0.939923f},{-0.0152368f,-0.362607f,-0.931817f}, - {0.00424604f,-0.38558f,-0.922665f},{0.0236779f,-0.408493f,-0.912454f},{0.0430246f,-0.431306f,-0.901179f}, - {0.0622506f,-0.453976f,-0.888837f},{0.118846f,-0.520709f,-0.845422f},{0.137229f,-0.542385f,-0.828846f}, - {0.155311f,-0.563707f,-0.811242f},{0.173056f,-0.584631f,-0.792627f},{0.19043f,-0.605117f,-0.773026f}, - {0.392477f,-0.462784f,-0.794854f},{0.223929f,-0.644617f,-0.730976f},{0.239989f,-0.663554f,-0.708591f}, - {0.25555f,-0.681902f,-0.68535f},{0.270582f,-0.699627f,-0.661292f},{0.28506f,-0.716699f,-0.636461f}, - {0.324937f,-0.763719f,-0.557808f},{0.336976f,-0.777915f,-0.530373f},{0.348363f,-0.791341f,-0.502416f}, - {0.359084f,-0.803983f,-0.473994f},{0.369129f,-0.815827f,-0.445162f},{0.575428f,-0.678509f,-0.456627f}, - {0.387165f,-0.837094f,-0.386494f},{0.395148f,-0.846507f,-0.356769f},{0.40244f,-0.855106f,-0.326857f}, - {0.409044f,-0.862893f,-0.296814f},{0.414964f,-0.869874f,-0.266692f},{0.420207f,-0.876056f,-0.236543f}, - {0.424781f,-0.881449f,-0.206418f},{0.428697f,-0.886067f,-0.176364f},{0.431968f,-0.889923f,-0.146429f}, - {0.434606f,-0.893034f,-0.116657f},{0.436627f,-0.895417f,-0.0870897f},{0.438049f,-0.897093f,-0.0577667f}, - {0.0574334f,-0.067722f,-0.99605f},{0.0764992f,-0.090203f,-0.992981f},{0.0954975f,-0.112605f,-0.98904f}, - {0.114412f,-0.134908f,-0.98423f},{0.133227f,-0.157093f,-0.978556f},{0.151924f,-0.179139f,-0.972023f}, - {0.170488f,-0.201028f,-0.964635f},{0.188902f,-0.222741f,-0.956401f},{0.20715f,-0.244258f,-0.947326f}, - {0.225216f,-0.265561f,-0.937419f},{0.243085f,-0.28663f,-0.926689f},{0.260739f,-0.307448f,-0.915145f}, - {0.278165f,-0.327995f,-0.902798f},{0.312269f,-0.368208f,-0.875734f},{0.328917f,-0.387838f,-0.861043f}, - {0.345276f,-0.407127f,-0.845596f},{0.361331f,-0.426059f,-0.829405f},{0.37707f,-0.444617f,-0.812486f}, - {0.407539f,-0.480545f,-0.776523f},{0.422244f,-0.497883f,-0.757511f},{0.436577f,-0.514784f,-0.737833f}, - {0.450527f,-0.531233f,-0.717507f},{0.464082f,-0.547216f,-0.696551f},{0.477229f,-0.562718f,-0.674982f}, - {0.489956f,-0.577726f,-0.652821f},{0.502254f,-0.592226f,-0.630087f},{0.525515f,-0.619654f,-0.582978f}, - {0.536458f,-0.632557f,-0.558645f},{0.546929f,-0.644905f,-0.533822f},{0.556921f,-0.656686f,-0.508529f}, - {0.566423f,-0.667891f,-0.48279f},{0.583927f,-0.688531f,-0.430063f},{0.591914f,-0.697948f,-0.403122f}, - {0.59938f,-0.706752f,-0.375826f},{0.606321f,-0.714935f,-0.3482f},{0.612728f,-0.722491f,-0.320268f}, - {0.618598f,-0.729411f,-0.292055f},{0.623924f,-0.735692f,-0.263585f},{0.628702f,-0.741326f,-0.234884f}, - {0.632928f,-0.746309f,-0.205977f},{0.636597f,-0.750636f,-0.176888f},{0.639708f,-0.754304f,-0.147645f}, - {0.642257f,-0.757309f,-0.118272f},{0.644242f,-0.75965f,-0.0887941f},{0.645661f,-0.761323f,-0.0592391f}, - {0.646513f,-0.762327f,-0.0296323f},{0.632928f,-0.746309f,0.205977f},{0.428697f,-0.886067f,0.176364f}, - {0.424781f,-0.881449f,0.206418f},{0.395148f,-0.846507f,0.356769f},{0.59938f,-0.706752f,0.375826f}, - {0.606321f,-0.714935f,0.3482f},{0.434606f,-0.893034f,0.116657f},{0.436627f,-0.895417f,0.0870897f}, - {0.142259f,-0.98454f,0.102193f},{0.639708f,-0.754304f,0.147645f},{0.642257f,-0.757309f,0.118272f}, - {-0.222222f,-0.974834f,0.0177823f},{-0.337862f,-0.941196f,3.41808e-016f},{-0.602143f,-0.798361f,0.00650572f}, - {-0.223622f,-0.973184f,0.0539127f},{-0.224873f,-0.971708f,0.0722163f},{0.14403f,-0.986628f,0.0762915f}, - {-0.885978f,-0.463681f,-0.00650572f},{-0.983879f,-0.178833f,-4.69192e-016f},{-0.998038f,-0.0600412f,-0.0177823f}, - {-0.602655f,-0.797758f,0.0197241f},{-0.603113f,-0.797218f,0.0264206f},{-0.814352f,0.579659f,-0.0287252f}, - {-0.813513f,0.57867f,-0.0577667f},{-0.951842f,0.305555f,-0.0251636f},{-0.996651f,0.0817739f,-5.50975e-016f}, - {-0.646797f,0.762662f,-9.3359e-016f},{-0.822203f,0.569194f,-3.00566e-016f},{-0.645661f,0.761323f,-0.0592414f}, - {0.431968f,-0.889923f,0.146429f},{0.636597f,-0.750636f,0.176888f},{-0.646513f,0.762327f,-0.0296337f}, - {0.623924f,-0.735692f,0.263585f},{0.420207f,-0.876056f,0.236543f},{0.414964f,-0.869874f,0.266692f}, - {0.628702f,-0.741326f,0.234884f},{0.409044f,-0.862893f,0.296814f},{0.618598f,-0.729411f,0.292055f}, - {0.40244f,-0.855106f,0.326857f},{0.612728f,-0.722491f,0.320268f},{0.387165f,-0.837094f,0.386494f}, - {0.591914f,-0.697948f,0.403122f},{0.369129f,-0.815827f,0.445162f},{0.359084f,-0.803983f,0.473994f}, - {0.566423f,-0.667891f,0.48279f},{0.378491f,-0.826866f,0.415977f},{0.536458f,-0.632557f,0.558645f}, - {0.546929f,-0.644905f,0.533822f},{0.336976f,-0.777915f,0.530373f},{0.556921f,-0.656686f,0.508529f}, - {0.51411f,-0.606206f,0.606799f},{0.312259f,-0.74877f,0.58467f},{0.29896f,-0.733089f,0.610904f}, - {0.324937f,-0.763719f,0.557808f},{0.477229f,-0.562718f,0.674982f},{0.270582f,-0.699627f,0.661292f}, - {0.464082f,-0.547216f,0.696551f},{0.28506f,-0.716699f,0.636461f},{0.422243f,-0.497883f,0.757511f}, - {0.436577f,-0.514784f,0.737833f},{0.223929f,-0.644617f,0.730976f},{0.450527f,-0.531233f,0.717507f}, - {0.239989f,-0.663554f,0.708591f},{0.37707f,-0.444617f,0.812486f},{0.19043f,-0.605117f,0.773026f}, - {0.173056f,-0.584631f,0.792627f},{0.207399f,-0.625125f,0.752465f},{0.137229f,-0.542385f,0.828846f}, - {0.328917f,-0.387838f,0.861043f},{0.345276f,-0.407127f,0.845596f},{0.361331f,-0.426059f,0.829405f}, - {0.278165f,-0.327995f,0.902798f},{0.295347f,-0.348255f,0.889657f},{0.0813203f,-0.476461f,0.875426f}, - {0.118846f,-0.520709f,0.845422f},{0.0622506f,-0.453976f,0.888837f},{0.243085f,-0.28663f,0.926689f}, - {0.260739f,-0.307447f,0.915145f},{0.00424601f,-0.38558f,0.922665f},{0.20715f,-0.244258f,0.947326f}, - {0.023678f,-0.408493f,0.912454f},{0.225216f,-0.265561f,0.937419f},{0.0430246f,-0.431306f,0.901179f}, - {0.170488f,-0.201028f,0.964635f},{-0.0152368f,-0.362607f,0.931817f},{-0.034737f,-0.339614f,0.939923f}, - {0.188902f,-0.222741f,0.956401f},{0.133227f,-0.157093f,0.978556f},{-0.054222f,-0.316638f,0.946995f}, - {-0.0736605f,-0.293718f,0.95305f},{0.151924f,-0.179139f,0.972023f},{0.0954975f,-0.112605f,0.98904f}, - {0.114412f,-0.134908f,0.98423f},{-0.0930223f,-0.270888f,0.958106f},{-0.731303f,-0.646064f,0.218624f}, - {-0.575259f,-0.558555f,0.597573f},{-0.563421f,-0.572514f,0.595638f},{-0.169153f,-0.181119f,0.968805f}, - {0.0383171f,-0.0451812f,0.998244f},{-0.150369f,-0.203268f,0.967508f},{0.019167f,-0.0226006f,0.999561f}, - {-0.131403f,-0.225632f,0.96531f},{-0.112279f,-0.248181f,0.962185f},{-0.353571f,-0.399889f,0.845622f}, - {0.0574335f,-0.0677219f,0.99605f},{0.0764992f,-0.090203f,0.992981f},{-0.28596f,-0.479612f,0.829578f}, - {-0.539514f,-0.600703f,0.589983f},{-0.302988f,-0.459533f,0.834882f},{-0.726972f,-0.651171f,0.217917f}, - {-0.336818f,-0.419643f,0.842884f},{-0.756818f,-0.615978f,-0.218624f},{-0.752523f,-0.621043f,-0.219122f}, - {-0.735599f,-0.640999f,0.219122f},{-0.452261f,-0.283519f,-0.845622f},{-0.435647f,-0.30311f,-0.847547f}, - {-0.645f,-0.47632f,-0.597573f},{-0.506241f,-0.429332f,-0.747926f},{-0.621631f,-0.503876f,-0.599737f}, - {-0.419192f,-0.322513f,-0.848684f},{-0.206312f,-0.137304f,-0.968805f},{-0.355998f,-0.301914f,-0.884372f}, - {-0.182011f,-0.154359f,-0.971105f},{-0.0191661f,0.0225993f,-0.999561f},{-2.93527e-009f,-2.48934e-009f,1.0f}, - {-0.18253f,-0.1548f,0.970938f},{-0.251808f,-0.519881f,0.816282f},{0.155311f,-0.563707f,0.811242f}, - {0.312269f,-0.368208f,0.875734f},{0.100197f,-0.49872f,0.860952f},{-0.118246f,-0.677368f,0.726078f}, - {0.392477f,-0.462784f,0.794854f},{0.407539f,-0.480545f,0.776523f},{0.25555f,-0.681902f,0.68535f}, - {0.489956f,-0.577726f,0.652821f},{-0.0282274f,-0.783513f,0.620733f},{-0.34535f,-0.829649f,0.438652f}, - {-0.355292f,-0.817926f,0.452509f},{0.502254f,-0.592226f,0.630087f},{0.525515f,-0.619654f,0.582978f}, - {0.575428f,-0.678509f,0.456627f},{0.583927f,-0.688531f,0.430063f},{0.348363f,-0.791341f,0.502416f}, - {-0.300612f,-0.882402f,0.361938f},{0.0461875f,-0.871259f,0.488646f},{-0.292763f,-0.891656f,0.34531f}, - {0.114081f,-0.951315f,0.286331f},{0.644242f,-0.75965f,0.0887942f},{-0.762662f,-0.646797f,1.22271e-018f}, - {0.645661f,-0.761323f,0.059239f},{0.438049f,-0.897093f,0.0577667f},{0.14601f,-0.988963f,0.0251636f}, - {-0.0805097f,-0.996754f,5.00783e-016f},{0.646513f,-0.762327f,0.0296322f},{0.438888f,-0.898083f,0.0287252f}, - {0.427652f,-0.903943f,6.47993e-016f},{0.17704f,-0.984204f,6.55067e-016f},{0.646797f,-0.762662f,9.4456e-016f}, - {-0.569614f,-0.821913f,2.60919e-016f},{-0.904079f,-0.427366f,-2.0282e-016f},{0.145275f,-0.988096f,0.0506042f}, - {0.139948f,-0.981815f,0.128274f},{0.137083f,-0.978437f,0.154497f},{0.133653f,-0.974392f,0.180824f}, - {0.129646f,-0.969667f,0.207214f},{0.125053f,-0.964252f,0.233625f},{0.119867f,-0.958137f,0.260012f}, - {-0.249299f,-0.942906f,0.220857f},{-0.254241f,-0.937079f,0.239258f},{0.107693f,-0.943782f,0.312533f}, - {0.1007f,-0.935536f,0.338573f},{0.0931016f,-0.926577f,0.3644f},{0.0849004f,-0.916907f,0.389967f}, - {0.0761008f,-0.906531f,0.415224f},{0.0667093f,-0.895457f,0.440122f},{0.0567345f,-0.883695f,0.464612f}, - {0.0350815f,-0.858163f,0.512177f},{0.0234317f,-0.844426f,0.535159f},{0.0112556f,-0.830069f,0.557547f}, - {-0.00142745f,-0.815114f,0.579299f},{-0.0145962f,-0.799586f,0.600374f},{-0.0422964f,-0.766924f,0.640343f}, - {-0.0567769f,-0.749849f,0.659168f},{-0.0716415f,-0.732322f,0.677179f},{-0.0868612f,-0.714376f,0.69435f}, - {-0.102406f,-0.696046f,0.710657f},{-0.683125f,-0.702872f,0.198267f},{-0.431888f,-0.72761f,0.53297f}, - {-0.67885f,-0.707914f,0.194989f},{-0.13435f,-0.65838f,0.740598f},{-0.150686f,-0.639117f,0.754203f}, - {-0.167223f,-0.619618f,0.766883f},{-0.183928f,-0.599921f,0.778631f},{-0.20077f,-0.580061f,0.789443f}, - {-0.217718f,-0.560078f,0.79932f},{-0.234741f,-0.540005f,0.808264f},{-0.26889f,-0.499738f,0.823383f}, - {-0.527481f,-0.614892f,0.586235f},{-0.319949f,-0.439533f,0.839311f},{-0.370185f,-0.380298f,0.847547f}, - {-0.38664f,-0.360895f,0.848684f},{-0.348737f,-0.295756f,0.889332f},{-0.951107f,0.304688f,-0.0506042f}, - {-0.222742f,-0.974221f,0.0357603f},{-0.226506f,-0.969783f,0.0906467f},{-0.228531f,-0.967395f,0.109178f}, - {-0.230955f,-0.964537f,0.127782f},{-0.233786f,-0.961198f,0.146431f},{-0.237032f,-0.957371f,0.165095f}, - {-0.240697f,-0.95305f,0.183742f},{-0.244785f,-0.948229f,0.20234f},{-0.259611f,-0.930748f,0.25751f}, - {-0.615822f,-0.782232f,0.0942108f},{-0.617942f,-0.779732f,0.100821f},{-0.265406f,-0.923914f,0.275577f}, - {-0.271625f,-0.916582f,0.293425f},{-0.278261f,-0.908756f,0.31102f},{-0.28531f,-0.900444f,0.328326f}, - {-0.636982f,-0.757282f,0.144146f},{-0.851139f,-0.504761f,-0.144146f},{-0.84786f,-0.508627f,-0.14977f}, - {-0.308844f,-0.872695f,0.378179f},{-0.317449f,-0.862549f,0.394f},{-0.326411f,-0.851981f,0.409371f}, - {-0.335717f,-0.841008f,0.424264f},{-0.658414f,-0.73201f,0.175076f},{-0.829707f,-0.530032f,-0.175076f}, - {-0.825773f,-0.534672f,-0.179515f},{-0.365525f,-0.80586f,0.465812f},{-0.376029f,-0.793474f,0.47854f}, - {-0.386784f,-0.780792f,0.490674f},{-0.39777f,-0.767839f,0.502197f},{-0.408963f,-0.75464f,0.513095f}, - {-0.420343f,-0.741222f,0.523356f},{-0.443573f,-0.71383f,0.541931f},{-0.455379f,-0.699911f,0.550232f}, - {-0.46728f,-0.685877f,0.557873f},{-0.479257f,-0.671755f,0.564853f},{-0.491286f,-0.657571f,0.571173f}, - {-0.503347f,-0.643349f,0.576839f},{-0.515418f,-0.629115f,0.581857f},{-0.5515f,-0.58657f,0.593113f}, - {-0.748269f,-0.62606f,-0.219416f},{-0.587f,-0.544711f,0.598933f},{-0.598628f,-0.530999f,0.599736f}, - {-0.504783f,-0.428095f,0.749619f},{-0.603711f,-0.796513f,0.0331634f},{-0.602333f,-0.798137f,0.0130831f}, - {-0.604451f,-0.79564f,0.0399431f},{-0.88367f,-0.466402f,-0.0399431f},{-0.882783f,-0.467448f,-0.0467496f}, - {-0.605338f,-0.794594f,0.0467496f},{-0.606374f,-0.793373f,0.0535724f},{-0.607562f,-0.791973f,0.0604006f}, - {-0.608902f,-0.790392f,0.0672227f},{-0.610398f,-0.788628f,0.0740269f},{-0.61205f,-0.786681f,0.0808012f}, - {-0.613858f,-0.784549f,0.0875334f},{-0.620218f,-0.77705f,0.107351f},{-0.867904f,-0.484993f,-0.107351f}, - {-0.865476f,-0.487856f,-0.113788f},{-0.622646f,-0.774187f,0.113788f},{-0.625224f,-0.771146f,0.120119f}, - {-0.627951f,-0.767931f,0.126333f},{-0.630822f,-0.764545f,0.132417f},{-0.633834f,-0.760993f,0.138358f}, - {-0.640261f,-0.753415f,0.14977f},{-0.643666f,-0.749401f,0.155219f},{-0.64719f,-0.745245f,0.160482f}, - {-0.650827f,-0.740956f,0.165552f},{-0.654571f,-0.736542f,0.170419f},{-0.662349f,-0.727371f,0.179515f}, - {-0.666368f,-0.722632f,0.183731f},{-0.670463f,-0.717803f,0.187718f},{-0.674627f,-0.712894f,0.191472f}, - {-0.687445f,-0.69778f,0.201304f},{-0.800677f,-0.564263f,-0.201304f},{-0.796323f,-0.569397f,-0.2041f}, - {-0.691799f,-0.692645f,0.2041f},{-0.69618f,-0.687479f,0.206653f},{-0.700581f,-0.68229f,0.208966f}, - {-0.704994f,-0.677087f,0.211039f},{-0.70941f,-0.671879f,0.212875f},{-0.713823f,-0.666676f,0.214476f}, - {-0.718226f,-0.661484f,0.215848f},{-0.722611f,-0.656314f,0.216993f},{-0.739853f,-0.635983f,0.219416f}, - {-0.757174f,-0.642143f,-0.119748f},{-0.757056f,-0.642042f,0.121027f},{-0.712963f,-0.604648f,0.355084f}, - {-0.627461f,-0.532136f,0.56844f},{-0.885466f,-0.464285f,-0.0197242f},{-0.885009f,-0.464825f,-0.0264206f}, - {-0.885788f,-0.463905f,-0.013083f},{-0.884411f,-0.465529f,-0.0331634f},{-0.881747f,-0.46867f,-0.0535725f}, - {-0.88056f,-0.47007f,-0.0604006f},{-0.879219f,-0.471651f,-0.0672226f},{-0.979563f,-0.0818251f,-0.183742f}, - {-0.975475f,-0.0866458f,-0.20234f},{-0.877724f,-0.473414f,-0.074027f},{-0.876072f,-0.475362f,-0.0808012f}, - {-0.874264f,-0.477494f,-0.0875334f},{-0.8723f,-0.47981f,-0.0942108f},{-0.870179f,-0.482311f,-0.100821f}, - {-0.862897f,-0.490897f,-0.120119f},{-0.93495f,-0.134431f,-0.328326f},{-0.927496f,-0.143219f,-0.34531f}, - {-0.860171f,-0.494112f,-0.126333f},{-0.857299f,-0.497498f,-0.132416f},{-0.854287f,-0.501049f,-0.138358f}, - {-0.844456f,-0.512642f,-0.155219f},{-0.884543f,-0.193867f,-0.424264f},{-0.87491f,-0.205225f,-0.438652f}, - {-0.840931f,-0.516798f,-0.160482f},{-0.837294f,-0.521086f,-0.165552f},{-0.83355f,-0.525501f,-0.170419f}, - {-0.821754f,-0.539411f,-0.183731f},{-0.82249f,-0.267036f,-0.502197f},{-0.811296f,-0.280235f,-0.513095f}, - {-0.817658f,-0.54424f,-0.187718f},{-0.813495f,-0.549149f,-0.191472f},{-0.809271f,-0.554129f,-0.194989f}, - {-0.804996f,-0.55917f,-0.198267f},{-0.791941f,-0.574564f,-0.206653f},{-0.78754f,-0.579753f,-0.208966f}, - {-0.728974f,-0.377304f,-0.571173f},{-0.716913f,-0.391526f,-0.576839f},{-0.783128f,-0.584956f,-0.211039f}, - {-0.778711f,-0.590164f,-0.212874f},{-0.774298f,-0.595367f,-0.214476f},{-0.769896f,-0.600558f,-0.215847f}, - {-0.765511f,-0.605729f,-0.216993f},{-0.76115f,-0.610871f,-0.217917f},{-0.996638f,-0.061691f,-0.0539127f}, - {-0.995387f,-0.0631666f,-0.0722163f},{-0.997518f,-0.0606535f,-0.0357603f},{-0.993754f,-0.0650924f,-0.0906467f}, - {-0.991729f,-0.0674796f,-0.109178f},{-0.989305f,-0.0703379f,-0.127782f},{-0.986473f,-0.0736768f,-0.146431f}, - {-0.983228f,-0.0775037f,-0.165095f},{-0.97096f,-0.0919687f,-0.220857f},{-0.906532f,0.252128f,-0.338573f}, - {-0.966018f,-0.0977961f,-0.239258f},{-0.960649f,-0.104127f,-0.25751f},{-0.954853f,-0.110961f,-0.275577f}, - {-0.948635f,-0.118294f,-0.293425f},{-0.941998f,-0.126119f,-0.31102f},{-0.840913f,0.174755f,-0.512177f}, - {-0.919648f,-0.152473f,-0.361938f},{-0.911416f,-0.16218f,-0.378179f},{-0.902811f,-0.172326f,-0.394f}, - {-0.893848f,-0.182894f,-0.409371f},{-0.763536f,0.0835161f,-0.640343f},{-0.864968f,-0.216949f,-0.452509f}, - {-0.854735f,-0.229015f,-0.465812f},{-0.844231f,-0.241401f,-0.47854f},{-0.833475f,-0.254083f,-0.490674f}, - {-0.671482f,-0.0250282f,-0.740598f},{-0.799916f,-0.293653f,-0.523356f},{-0.788372f,-0.307266f,-0.53297f}, - {-0.776686f,-0.321045f,-0.541931f},{-0.764881f,-0.334964f,-0.550232f},{-0.752979f,-0.348998f,-0.557873f}, - {-0.741003f,-0.36312f,-0.564853f},{-0.704841f,-0.40576f,-0.581857f},{-0.519872f,-0.203796f,-0.829578f}, - {-0.692779f,-0.419983f,-0.586235f},{-0.680746f,-0.434172f,-0.589983f},{-0.66876f,-0.448305f,-0.593113f}, - {-0.656839f,-0.462361f,-0.595638f},{-0.63326f,-0.490164f,-0.598933f},{-0.71354f,-0.605138f,-0.353084f}, - {-0.938627f,0.344933f,-6.77795e-016f},{-0.949862f,0.30322f,-0.0762915f},{-0.948091f,0.301132f,-0.102193f}, - {-0.94578f,0.298407f,-0.128274f},{-0.942915f,0.295029f,-0.154497f},{-0.939484f,0.290984f,-0.180824f}, - {-0.935477f,0.286259f,-0.207214f},{-0.930885f,0.280844f,-0.233625f},{-0.925699f,0.274728f,-0.260012f}, - {-0.919913f,0.267907f,-0.286331f},{-0.913525f,0.260374f,-0.312533f},{-0.753955f,0.508443f,-0.415977f}, - {-0.575427f,0.678508f,-0.45663f},{-0.744593f,0.497404f,-0.445162f},{-0.898933f,0.243169f,-0.3644f}, - {-0.890732f,0.233499f,-0.389967f},{-0.881933f,0.223123f,-0.415224f},{-0.872541f,0.212048f,-0.440122f}, - {-0.862566f,0.200287f,-0.464612f},{-0.852019f,0.187851f,-0.488646f},{-0.829264f,0.161019f,-0.535159f}, - {-0.674425f,0.414665f,-0.610904f},{-0.817087f,0.146661f,-0.557547f},{-0.804404f,0.131706f,-0.579299f}, - {-0.791236f,0.116178f,-0.600374f},{-0.777605f,0.100105f,-0.620733f},{-0.582863f,0.306702f,-0.752465f}, - {-0.392475f,0.462782f,-0.794856f},{-0.565895f,0.286694f,-0.773026f},{-0.749055f,0.0664413f,-0.659168f}, - {-0.73419f,0.0489142f,-0.677179f},{-0.718971f,0.0309681f,-0.69435f},{-0.703426f,0.012638f,-0.710657f}, - {-0.687585f,-0.00603948f,-0.726078f},{-0.655146f,-0.0442909f,-0.754203f},{-0.456785f,0.158039f,-0.875426f}, - {-0.638609f,-0.0637896f,-0.766883f},{-0.621904f,-0.0834874f,-0.778631f},{-0.605061f,-0.103347f,-0.789443f}, - {-0.588114f,-0.123331f,-0.79932f},{-0.571091f,-0.143402f,-0.808264f},{-0.554024f,-0.163527f,-0.816282f}, - {-0.536942f,-0.18367f,-0.823383f},{-0.502844f,-0.223875f,-0.834882f},{-0.485883f,-0.243875f,-0.839311f}, - {-0.469014f,-0.263765f,-0.842884f},{-0.627779f,-0.532405f,-0.567836f},{-0.812092f,0.576994f,-0.0870897f}, - {-0.81007f,0.57461f,-0.116657f},{-0.807432f,0.5715f,-0.146429f},{-0.804162f,0.567644f,-0.176364f}, - {-0.800246f,0.563026f,-0.206418f},{-0.795672f,0.557633f,-0.236543f},{-0.790429f,0.551451f,-0.266692f}, - {-0.784509f,0.54447f,-0.296814f},{-0.777905f,0.536683f,-0.326857f},{-0.770612f,0.528084f,-0.356769f}, - {-0.762629f,0.518671f,-0.386494f},{-0.734548f,0.48556f,-0.473994f},{-0.723827f,0.472918f,-0.502416f}, - {-0.712441f,0.459492f,-0.530373f},{-0.700401f,0.445295f,-0.557808f},{-0.687723f,0.430346f,-0.58467f}, - {-0.514109f,0.606205f,-0.606801f},{-0.660525f,0.398276f,-0.636461f},{-0.646047f,0.381204f,-0.661292f}, - {-0.631014f,0.363479f,-0.68535f},{-0.615454f,0.345131f,-0.708591f},{-0.599393f,0.326194f,-0.730976f}, - {-0.548521f,0.266208f,-0.792627f},{-0.530776f,0.245284f,-0.811242f},{-0.512694f,0.223962f,-0.828846f}, - {-0.49431f,0.202286f,-0.845422f},{-0.475662f,0.180297f,-0.860952f},{-0.295345f,0.348252f,-0.889658f}, - {-0.437715f,0.135553f,-0.888837f},{-0.418489f,0.112883f,-0.901179f},{-0.399143f,0.0900703f,-0.912454f}, - {-0.379711f,0.0671571f,-0.922664f},{-0.360228f,0.0441843f,-0.931817f},{-0.340728f,0.0211909f,-0.939923f}, - {-0.321243f,-0.00178467f,-0.946995f},{-0.301804f,-0.0247052f,-0.95305f},{-0.282442f,-0.0475355f,-0.958106f}, - {-0.263186f,-0.0702415f,-0.962185f},{-0.244062f,-0.0927915f,-0.96531f},{-0.225096f,-0.115155f,-0.967508f}, - {-0.644242f,0.75965f,-0.0887968f},{-0.642257f,0.757309f,-0.118274f},{-0.639708f,0.754304f,-0.147647f}, - {-0.636597f,0.750636f,-0.176891f},{-0.632927f,0.746308f,-0.205979f},{-0.628701f,0.741325f,-0.234887f}, - {-0.623923f,0.735691f,-0.263588f},{-0.618597f,0.729411f,-0.292057f},{-0.612728f,0.72249f,-0.320271f}, - {-0.60632f,0.714934f,-0.348202f},{-0.59938f,0.706751f,-0.375828f},{-0.591913f,0.697947f,-0.403124f}, - {-0.583927f,0.68853f,-0.430066f},{-0.566422f,0.66789f,-0.482793f},{-0.55692f,0.656685f,-0.508532f}, - {-0.546929f,0.644904f,-0.533824f},{-0.536457f,0.632556f,-0.558647f},{-0.525514f,0.619653f,-0.58298f}, - {-0.502253f,0.592225f,-0.630088f},{-0.489956f,0.577725f,-0.652822f},{-0.477228f,0.562717f,-0.674983f}, - {-0.464081f,0.547216f,-0.696551f},{-0.450527f,0.531233f,-0.717508f},{-0.436576f,0.514783f,-0.737834f}, - {-0.422243f,0.497882f,-0.757512f},{-0.407538f,0.480543f,-0.776525f},{-0.377068f,0.444615f,-0.812488f}, - {-0.36133f,0.426058f,-0.829407f},{-0.345274f,0.407126f,-0.845597f},{-0.328915f,0.387836f,-0.861045f}, - {-0.312267f,0.368206f,-0.875736f},{-0.278164f,0.327993f,-0.902799f},{-0.260738f,0.307446f,-0.915146f}, - {-0.243083f,0.286628f,-0.92669f},{-0.225214f,0.265559f,-0.93742f},{-0.207148f,0.244256f,-0.947327f}, - {-0.1889f,0.222739f,-0.956402f},{-0.170486f,0.201027f,-0.964636f},{-0.151922f,0.179137f,-0.972023f}, - {-0.133225f,0.157091f,-0.978557f},{-0.114411f,0.134906f,-0.984231f},{-0.0954964f,0.112603f,-0.98904f}, - {-0.0764977f,0.0902013f,-0.992981f},{-0.0574318f,0.0677199f,-0.99605f},{-0.0383156f,0.0451794f,-0.998244f}, - {-0.336976f,0.777915f,-0.530373f},{-0.324937f,0.763719f,-0.557808f},{-0.536458f,0.632557f,-0.558645f}, - {-0.546929f,0.644905f,-0.533822f},{0.633834f,0.760993f,-0.138358f},{0.317449f,0.862549f,-0.394f}, - {0.308844f,0.872695f,-0.378179f},{-0.359084f,0.803983f,-0.473994f},{-0.556921f,0.656686f,-0.508529f}, - {-0.566423f,0.667891f,-0.48279f},{-0.348363f,0.791341f,-0.502416f},{-0.575428f,0.678509f,-0.456627f}, - {-0.583927f,0.688531f,-0.430063f},{-0.378491f,0.826866f,-0.415977f},{-0.369129f,0.815827f,-0.445162f}, - {-0.591914f,0.697948f,-0.403122f},{-0.387165f,0.837094f,-0.386494f},{-0.395148f,0.846507f,-0.356769f}, - {-0.59938f,0.706752f,-0.375826f},{-0.606321f,0.714935f,-0.3482f},{-0.40244f,0.855106f,-0.326857f}, - {0.259611f,0.930748f,-0.25751f},{-0.0931016f,0.926577f,-0.3644f},{0.254241f,0.937079f,-0.239258f}, - {-0.409044f,0.862893f,-0.296814f},{-0.612728f,0.722491f,-0.320268f},{-0.618598f,0.729411f,-0.292055f}, - {-0.414964f,0.869874f,-0.266692f},{-0.623924f,0.735692f,-0.263585f},{-0.420207f,0.876056f,-0.236543f}, - {-0.424781f,0.881449f,-0.206418f},{-0.632928f,0.746309f,-0.205977f},{-0.428697f,0.886067f,-0.176364f}, - {-0.628702f,0.741326f,-0.234884f},{-0.636597f,0.750636f,-0.176888f},{-0.431968f,0.889923f,-0.146429f}, - {-0.639708f,0.754304f,-0.147645f},{-0.434606f,0.893034f,-0.116657f},{-0.642257f,0.757309f,-0.118272f}, - {-0.436627f,0.895417f,-0.0870897f},{-0.14403f,0.986628f,-0.0762915f},{-0.142259f,0.98454f,-0.102193f}, - {0.646513f,-0.762327f,0.0296337f},{0.814352f,-0.57966f,0.0287252f},{0.951842f,-0.305555f,0.0251636f}, - {0.998038f,0.0600412f,0.0177823f},{0.996651f,-0.0817739f,4.44435e-016f},{0.822203f,-0.569194f,3.04136e-016f}, - {0.813513f,-0.57867f,0.0577667f},{0.812092f,-0.576994f,0.0870897f},{0.949862f,-0.30322f,0.0762915f}, - {-0.644242f,0.75965f,-0.0887942f},{0.223622f,0.973184f,-0.0539127f},{0.224873f,0.971708f,-0.0722163f}, - {0.603113f,0.797218f,-0.0264206f},{0.226506f,0.969783f,-0.0906467f},{0.602655f,0.797758f,-0.0197242f}, - {-0.645661f,0.761323f,-0.059239f},{-0.438049f,0.897093f,-0.0577667f},{0.0805097f,0.996754f,-4.48371e-016f}, - {0.222222f,0.974834f,-0.0177823f},{-0.14601f,0.988963f,-0.0251636f},{0.337862f,0.941196f,-4.29587e-016f}, - {0.602143f,0.798361f,-0.00650572f},{0.569614f,0.821913f,-3.05233e-016f},{-0.17704f,0.984204f,-6.14496e-016f}, - {-0.438888f,0.898083f,-0.0287252f},{-0.427652f,0.903943f,-9.46059e-016f},{-0.646513f,0.762327f,-0.0296322f}, - {0.885978f,0.463681f,0.00650572f},{0.983879f,0.178833f,5.48296e-016f},{-0.525515f,0.619654f,-0.582978f}, - {-0.51411f,0.606206f,-0.606799f},{-0.312259f,0.74877f,-0.58467f},{-0.29896f,0.733089f,-0.610904f}, - {-0.502254f,0.592226f,-0.630087f},{-0.489956f,0.577726f,-0.652821f},{-0.28506f,0.716699f,-0.636461f}, - {-0.270582f,0.699627f,-0.661292f},{-0.477229f,0.562718f,-0.674982f},{-0.464082f,0.547216f,-0.696551f}, - {-0.25555f,0.681902f,-0.68535f},{-0.450527f,0.531233f,-0.717507f},{-0.239989f,0.663554f,-0.708591f}, - {0.0567769f,0.749849f,-0.659168f},{0.355292f,0.817926f,-0.452509f},{0.365525f,0.80586f,-0.465812f}, - {-0.223929f,0.644617f,-0.730976f},{-0.436577f,0.514784f,-0.737833f},{-0.207399f,0.625125f,-0.752465f}, - {-0.422244f,0.497883f,-0.757511f},{-0.392477f,0.462784f,-0.794854f},{-0.407539f,0.480545f,-0.776523f}, - {-0.19043f,0.605117f,-0.773026f},{-0.37707f,0.444617f,-0.812486f},{-0.173056f,0.584631f,-0.792627f}, - {-0.361331f,0.426059f,-0.829405f},{-0.345276f,0.407127f,-0.845596f},{-0.155311f,0.563707f,-0.811242f}, - {-0.137229f,0.542385f,-0.828846f},{-0.328917f,0.387838f,-0.861043f},{-0.118846f,0.520709f,-0.845422f}, - {0.443573f,0.71383f,-0.541931f},{0.683126f,0.702872f,-0.198267f},{0.455379f,0.699911f,-0.550232f}, - {-0.312269f,0.368208f,-0.875734f},{-0.100197f,0.49872f,-0.860952f},{-0.0813203f,0.476461f,-0.875426f}, - {-0.295347f,0.348255f,-0.889657f},{-0.278165f,0.327995f,-0.902798f},{-0.260739f,0.307447f,-0.915145f}, - {-0.243085f,0.28663f,-0.926689f},{-0.0622506f,0.453976f,-0.888837f},{-0.0430246f,0.431306f,-0.901179f}, - {-0.225216f,0.265561f,-0.937419f},{-0.023678f,0.408493f,-0.912454f},{-0.20715f,0.244258f,-0.947326f}, - {-0.188902f,0.222741f,-0.956401f},{-0.00424602f,0.38558f,-0.922665f},{0.0152368f,0.362607f,-0.931817f}, - {-0.170488f,0.201028f,-0.964635f},{0.034737f,0.339614f,-0.939923f},{0.28596f,0.479612f,-0.829578f}, - {0.054222f,0.316638f,-0.946995f},{0.26889f,0.499738f,-0.823383f},{-0.151924f,0.179139f,-0.972023f}, - {0.0736605f,0.293718f,-0.95305f},{-0.133227f,0.157093f,-0.978556f},{0.112279f,0.248181f,-0.962185f}, - {0.319949f,0.439533f,-0.839311f},{0.336818f,0.419643f,-0.842884f},{-0.114412f,0.134908f,-0.98423f}, - {0.731303f,0.646064f,-0.218624f},{0.756818f,0.615978f,0.218624f},{0.735599f,0.640999f,-0.219122f}, - {0.718226f,0.661484f,-0.215848f},{0.722611f,0.656314f,-0.216993f},{0.5515f,0.58657f,-0.593113f}, - {0.452261f,0.283519f,0.845622f},{0.645f,0.47632f,0.597573f},{0.469014f,0.263765f,0.842884f}, - {0.419192f,0.322513f,0.848684f},{0.506241f,0.429332f,0.747926f},{0.621631f,0.503876f,0.599737f}, - {0.587f,0.544711f,-0.598933f},{0.575259f,0.558555f,-0.597573f},{0.355998f,0.301914f,0.884372f}, - {0.206312f,0.137304f,0.968805f},{0.182011f,0.154359f,0.971105f},{0.563421f,0.572514f,-0.595638f}, - {0.726972f,0.651171f,-0.217916f},{0.370185f,0.380298f,-0.847547f},{0.353571f,0.399889f,-0.845622f}, - {0.0191661f,-0.0225994f,0.999561f},{0.0930223f,0.270888f,-0.958106f},{-0.0954975f,0.112605f,-0.98904f}, - {-0.0764992f,0.090203f,-0.992981f},{0.131403f,0.225632f,-0.96531f},{0.150369f,0.203268f,-0.967508f}, - {-0.0574334f,0.0677219f,-0.99605f},{0.169153f,0.181119f,-0.968805f},{-0.019167f,0.0226006f,-0.999561f}, - {-0.0383172f,0.0451812f,-0.998244f},{0.18253f,0.1548f,-0.970938f},{0.904079f,0.427366f,1.81967e-016f}, - {-0.145275f,0.988096f,-0.0506042f},{-0.139948f,0.981815f,-0.128274f},{-0.137083f,0.978437f,-0.154497f}, - {-0.133653f,0.974392f,-0.180824f},{-0.129646f,0.969667f,-0.207214f},{-0.125053f,0.964252f,-0.233625f}, - {-0.119867f,0.958137f,-0.260012f},{-0.114081f,0.951315f,-0.286331f},{-0.107693f,0.943782f,-0.312533f}, - {-0.1007f,0.935536f,-0.338573f},{-0.0849004f,0.916907f,-0.389967f},{-0.0761008f,0.906531f,-0.415224f}, - {-0.0667092f,0.895457f,-0.440122f},{-0.0567345f,0.883695f,-0.464612f},{-0.0461876f,0.871259f,-0.488646f}, - {-0.0350814f,0.858163f,-0.512177f},{-0.0234317f,0.844426f,-0.535159f},{-0.0112556f,0.830069f,-0.557547f}, - {0.00142745f,0.815114f,-0.579299f},{0.0145961f,0.799586f,-0.600374f},{0.0282274f,0.783513f,-0.620733f}, - {0.0422964f,0.766924f,-0.640343f},{0.0716415f,0.732322f,-0.677179f},{0.0868611f,0.714376f,-0.69435f}, - {0.102406f,0.696046f,-0.710657f},{0.118246f,0.677368f,-0.726078f},{0.13435f,0.65838f,-0.740598f}, - {0.150686f,0.639117f,-0.754203f},{0.167223f,0.619618f,-0.766883f},{0.183928f,0.599921f,-0.778631f}, - {0.20077f,0.580061f,-0.789443f},{0.217718f,0.560078f,-0.79932f},{0.234741f,0.540005f,-0.808264f}, - {0.251808f,0.519881f,-0.816282f},{0.302988f,0.459533f,-0.834882f},{0.539514f,0.600703f,-0.589983f}, - {0.38664f,0.360895f,-0.848684f},{0.348737f,0.295756f,-0.889332f},{0.645661f,-0.761323f,0.0592414f}, - {0.222742f,0.974221f,-0.0357603f},{0.228531f,0.967395f,-0.109178f},{0.230955f,0.964537f,-0.127782f}, - {0.233786f,0.961198f,-0.146431f},{0.237032f,0.957371f,-0.165095f},{0.240697f,0.95305f,-0.183742f}, - {0.244785f,0.948229f,-0.20234f},{0.249299f,0.942906f,-0.220857f},{0.271625f,0.916582f,-0.293425f}, - {0.265406f,0.923914f,-0.275577f},{0.617942f,0.779732f,-0.100821f},{0.278261f,0.908756f,-0.31102f}, - {0.28531f,0.900444f,-0.328326f},{0.292763f,0.891656f,-0.34531f},{0.300612f,0.882402f,-0.361938f}, - {0.326411f,0.851981f,-0.409371f},{0.335717f,0.841008f,-0.424264f},{0.34535f,0.829649f,-0.438652f}, - {0.662349f,0.727371f,-0.179515f},{0.825773f,0.534672f,0.179515f},{0.666368f,0.722632f,-0.183731f}, - {0.376029f,0.793474f,-0.47854f},{0.386784f,0.780792f,-0.490674f},{0.39777f,0.767839f,-0.502197f}, - {0.408963f,0.75464f,-0.513095f},{0.420343f,0.741222f,-0.523356f},{0.431888f,0.72761f,-0.53297f}, - {0.46728f,0.685877f,-0.557873f},{0.479257f,0.671755f,-0.564853f},{0.491286f,0.657571f,-0.571173f}, - {0.503347f,0.643349f,-0.576839f},{0.515419f,0.629115f,-0.581857f},{0.527481f,0.614892f,-0.586235f}, - {0.757056f,0.642042f,-0.121027f},{0.739853f,0.635983f,-0.219416f},{0.748269f,0.62606f,0.219416f}, - {0.598628f,0.530999f,-0.599736f},{0.504783f,0.428095f,-0.749619f},{0.762662f,0.646797f,1.22271e-018f}, - {0.602333f,0.798137f,-0.013083f},{0.603711f,0.796513f,-0.0331634f},{0.604451f,0.79564f,-0.0399431f}, - {0.881747f,0.46867f,0.0535724f},{0.607562f,0.791973f,-0.0604006f},{0.606374f,0.793373f,-0.0535725f}, - {0.605338f,0.794594f,-0.0467496f},{0.608902f,0.790392f,-0.0672227f},{0.610398f,0.788628f,-0.0740269f}, - {0.61205f,0.786681f,-0.0808013f},{0.613858f,0.784549f,-0.0875334f},{0.615822f,0.782232f,-0.0942108f}, - {0.865476f,0.487856f,0.113788f},{0.625224f,0.771146f,-0.120119f},{0.622646f,0.774187f,-0.113788f}, - {0.620218f,0.77705f,-0.107351f},{0.627951f,0.767931f,-0.126333f},{0.630822f,0.764545f,-0.132417f}, - {0.84786f,0.508627f,0.14977f},{0.643666f,0.749401f,-0.155219f},{0.640261f,0.753415f,-0.14977f}, - {0.636982f,0.757282f,-0.144146f},{0.64719f,0.745245f,-0.160482f},{0.650827f,0.740956f,-0.165552f}, - {0.654571f,0.736542f,-0.170419f},{0.658414f,0.73201f,-0.175076f},{0.670463f,0.717803f,-0.187718f}, - {0.674627f,0.712894f,-0.191472f},{0.67885f,0.707914f,-0.194989f},{0.796323f,0.569397f,0.2041f}, - {0.69618f,0.687479f,-0.206653f},{0.691799f,0.692645f,-0.2041f},{0.687445f,0.69778f,-0.201304f}, - {0.700581f,0.682289f,-0.208966f},{0.704994f,0.677087f,-0.211039f},{0.70941f,0.671879f,-0.212874f}, - {0.713823f,0.666676f,-0.214476f},{0.63326f,0.490164f,0.598933f},{0.76115f,0.610871f,0.217917f}, - {0.712963f,0.604648f,-0.355084f},{0.627461f,0.532136f,-0.56844f},{0.885466f,0.464285f,0.0197241f}, - {0.885788f,0.463905f,0.0130831f},{0.885009f,0.464825f,0.0264206f},{0.884411f,0.465529f,0.0331634f}, - {0.88367f,0.466402f,0.0399431f},{0.882783f,0.467448f,0.0467496f},{0.88056f,0.47007f,0.0604006f}, - {0.876072f,0.475362f,0.0808012f},{0.877724f,0.473414f,0.074027f},{0.975475f,0.0866458f,0.20234f}, - {0.879219f,0.471651f,0.0672226f},{0.874264f,0.477494f,0.0875334f},{0.8723f,0.47981f,0.0942108f}, - {0.870179f,0.482311f,0.100821f},{0.867904f,0.484993f,0.107351f},{0.840913f,-0.174755f,0.512177f}, - {0.919648f,0.152473f,0.361938f},{0.852019f,-0.187851f,0.488646f},{0.862897f,0.490897f,0.120119f}, - {0.860171f,0.494112f,0.126333f},{0.857299f,0.497498f,0.132416f},{0.854287f,0.501049f,0.138358f}, - {0.851139f,0.504761f,0.144146f},{0.763536f,-0.0835161f,0.640343f},{0.864968f,0.216949f,0.452509f}, - {0.777605f,-0.100105f,0.620733f},{0.844456f,0.512642f,0.155219f},{0.840931f,0.516798f,0.160482f}, - {0.837294f,0.521086f,0.165552f},{0.83355f,0.525501f,0.170419f},{0.829707f,0.530032f,0.175076f}, - {0.813495f,0.549149f,0.191472f},{0.817658f,0.54424f,0.187718f},{0.811296f,0.280235f,0.513095f}, - {0.821754f,0.539411f,0.183731f},{0.809271f,0.554129f,0.194989f},{0.804996f,0.55917f,0.198267f}, - {0.800677f,0.564263f,0.201304f},{0.791941f,0.574564f,0.206653f},{0.778711f,0.590164f,0.212874f}, - {0.783128f,0.584956f,0.211039f},{0.716913f,0.391526f,0.576839f},{0.78754f,0.579753f,0.208966f}, - {0.774298f,0.595367f,0.214476f},{0.769896f,0.600558f,0.215847f},{0.765511f,0.605729f,0.216993f}, - {0.656839f,0.462361f,0.595638f},{0.752523f,0.621043f,0.219122f},{0.996638f,0.061691f,0.0539127f}, - {0.997518f,0.0606535f,0.0357603f},{0.995387f,0.0631668f,0.0722163f},{0.993754f,0.0650926f,0.0906467f}, - {0.991729f,0.0674794f,0.109178f},{0.989305f,0.0703379f,0.127782f},{0.986473f,0.073677f,0.146431f}, - {0.983228f,0.0775037f,0.165095f},{0.979563f,0.0818251f,0.183742f},{0.913525f,-0.260374f,0.312533f}, - {0.906532f,-0.252128f,0.338573f},{0.966018f,0.0977959f,0.239258f},{0.97096f,0.0919687f,0.220857f}, - {0.960649f,0.104127f,0.257509f},{0.954853f,0.110961f,0.275577f},{0.948635f,0.118293f,0.293425f}, - {0.941998f,0.126119f,0.31102f},{0.93495f,0.134431f,0.328326f},{0.927496f,0.143219f,0.34531f}, - {0.911416f,0.16218f,0.378179f},{0.902811f,0.172326f,0.394f},{0.893848f,0.182894f,0.409371f}, - {0.884543f,0.193867f,0.424264f},{0.87491f,0.205226f,0.438652f},{0.854735f,0.229015f,0.465812f}, - {0.844231f,0.241401f,0.47854f},{0.833475f,0.254083f,0.490674f},{0.82249f,0.267036f,0.502197f}, - {0.671482f,0.0250282f,0.740598f},{0.655145f,0.0442907f,0.754203f},{0.788372f,0.307265f,0.53297f}, - {0.799916f,0.293653f,0.523356f},{0.776686f,0.321045f,0.541931f},{0.764881f,0.334965f,0.550232f}, - {0.752979f,0.348998f,0.557873f},{0.741003f,0.36312f,0.564853f},{0.728974f,0.377304f,0.571173f}, - {0.704841f,0.40576f,0.581857f},{0.519872f,0.203796f,0.829578f},{0.502844f,0.223875f,0.834882f}, - {0.680746f,0.434172f,0.589983f},{0.692779f,0.419983f,0.586235f},{0.66876f,0.448305f,0.593113f}, - {0.71354f,0.605138f,0.353084f},{0.757174f,0.642143f,0.119748f},{0.938627f,-0.344933f,5.47231e-016f}, - {0.951107f,-0.304688f,0.0506042f},{0.948091f,-0.301132f,0.102193f},{0.94578f,-0.298407f,0.128274f}, - {0.81007f,-0.574611f,0.116657f},{0.942915f,-0.295029f,0.154497f},{0.939484f,-0.290984f,0.180824f}, - {0.935477f,-0.286259f,0.207214f},{0.930885f,-0.280844f,0.233625f},{0.925699f,-0.274728f,0.260012f}, - {0.919913f,-0.267907f,0.286331f},{0.575427f,-0.678508f,0.45663f},{0.744593f,-0.497404f,0.445162f}, - {0.753955f,-0.508443f,0.415977f},{0.898933f,-0.243169f,0.3644f},{0.890732f,-0.233499f,0.389967f}, - {0.881933f,-0.223123f,0.415224f},{0.872541f,-0.212048f,0.440122f},{0.862566f,-0.200287f,0.464612f}, - {0.674425f,-0.414666f,0.610904f},{0.829264f,-0.161019f,0.535159f},{0.687723f,-0.430346f,0.58467f}, - {0.817087f,-0.146661f,0.557547f},{0.804404f,-0.131706f,0.579299f},{0.791236f,-0.116178f,0.600374f}, - {0.582863f,-0.306702f,0.752465f},{0.392475f,-0.462782f,0.794856f},{0.565895f,-0.286694f,0.773026f}, - {0.749055f,-0.0664413f,0.659168f},{0.73419f,-0.0489142f,0.677179f},{0.718971f,-0.0309681f,0.69435f}, - {0.703426f,-0.012638f,0.710657f},{0.687585f,0.00603948f,0.726078f},{0.456785f,-0.158038f,0.875426f}, - {0.638609f,0.0637897f,0.766883f},{0.475662f,-0.180297f,0.860952f},{0.621904f,0.0834874f,0.778631f}, - {0.605061f,0.103347f,0.789443f},{0.588114f,0.123331f,0.79932f},{0.571091f,0.143402f,0.808264f}, - {0.554024f,0.163527f,0.816282f},{0.536942f,0.18367f,0.823383f},{0.485883f,0.243875f,0.839311f}, - {0.225096f,0.115155f,0.967508f},{0.244062f,0.0927915f,0.96531f},{0.435647f,0.30311f,0.847547f}, - {0.627779f,0.532405f,0.567837f},{0.807432f,-0.5715f,0.146429f},{0.804162f,-0.567644f,0.176364f}, - {0.800246f,-0.563026f,0.206418f},{0.795672f,-0.557633f,0.236543f},{0.790429f,-0.55145f,0.266692f}, - {0.784509f,-0.54447f,0.296814f},{0.777905f,-0.536683f,0.326857f},{0.770612f,-0.528084f,0.356769f}, - {0.762629f,-0.518671f,0.386494f},{0.734548f,-0.48556f,0.473994f},{0.723827f,-0.472918f,0.502416f}, - {0.712441f,-0.459492f,0.530373f},{0.700401f,-0.445295f,0.557808f},{0.514109f,-0.606205f,0.606801f}, - {0.660525f,-0.398276f,0.636461f},{0.646047f,-0.381204f,0.661292f},{0.631014f,-0.363479f,0.68535f}, - {0.615454f,-0.345131f,0.708591f},{0.599393f,-0.326193f,0.730976f},{0.548521f,-0.266208f,0.792627f}, - {0.530776f,-0.245284f,0.811242f},{0.512693f,-0.223962f,0.828846f},{0.49431f,-0.202286f,0.845422f}, - {0.295345f,-0.348252f,0.889658f},{0.437715f,-0.135553f,0.888837f},{0.418489f,-0.112882f,0.901179f}, - {0.399143f,-0.0900703f,0.912454f},{0.379711f,-0.0671572f,0.922665f},{0.360228f,-0.0441842f,0.931817f}, - {0.340728f,-0.0211909f,0.939923f},{0.321243f,0.00178458f,0.946995f},{0.301804f,0.0247052f,0.95305f}, - {0.282442f,0.0475356f,0.958106f},{0.263186f,0.0702416f,0.962185f},{0.644242f,-0.75965f,0.0887968f}, - {0.642257f,-0.757309f,0.118274f},{0.639708f,-0.754304f,0.147647f},{0.636597f,-0.750636f,0.176891f}, - {0.632927f,-0.746308f,0.205979f},{0.628701f,-0.741325f,0.234887f},{0.623923f,-0.735691f,0.263588f}, - {0.618597f,-0.729411f,0.292057f},{0.612728f,-0.72249f,0.320271f},{0.60632f,-0.714934f,0.348202f}, - {0.59938f,-0.706751f,0.375828f},{0.591913f,-0.697947f,0.403124f},{0.583927f,-0.68853f,0.430066f}, - {0.566422f,-0.66789f,0.482793f},{0.55692f,-0.656685f,0.508532f},{0.546929f,-0.644904f,0.533824f}, - {0.536457f,-0.632556f,0.558647f},{0.525514f,-0.619653f,0.58298f},{0.502253f,-0.592225f,0.630088f}, - {0.489956f,-0.577725f,0.652822f},{0.477228f,-0.562717f,0.674983f},{0.464081f,-0.547216f,0.696551f}, - {0.450527f,-0.531233f,0.717508f},{0.436576f,-0.514784f,0.737834f},{0.422243f,-0.497882f,0.757512f}, - {0.407538f,-0.480543f,0.776525f},{0.377068f,-0.444615f,0.812488f},{0.36133f,-0.426058f,0.829407f}, - {0.345274f,-0.407126f,0.845597f},{0.328915f,-0.387836f,0.861045f},{0.312267f,-0.368206f,0.875736f}, - {0.278164f,-0.327993f,0.902799f},{0.260738f,-0.307446f,0.915146f},{0.243083f,-0.286628f,0.92669f}, - {0.225214f,-0.265559f,0.93742f},{0.207148f,-0.244256f,0.947327f},{0.1889f,-0.222739f,0.956402f}, - {0.170486f,-0.201027f,0.964636f},{0.151922f,-0.179137f,0.972023f},{0.133225f,-0.157091f,0.978557f}, - {0.114411f,-0.134906f,0.984231f},{0.0954964f,-0.112603f,0.98904f},{0.0764977f,-0.0902013f,0.992981f}, - {0.0574318f,-0.0677199f,0.99605f},{0.0383156f,-0.0451794f,0.998244f},{0.864968f,0.216949f,-0.452509f}, - {0.854735f,0.229015f,-0.465812f},{0.83355f,0.525501f,-0.170419f},{0.512693f,-0.223962f,-0.828846f}, - {0.345274f,-0.407126f,-0.845597f},{0.328915f,-0.387836f,-0.861045f},{0.530776f,-0.245284f,-0.811242f}, - {0.49431f,-0.202286f,-0.845422f},{0.312267f,-0.368206f,-0.875736f},{0.475662f,-0.180297f,-0.860952f}, - {0.260738f,-0.307446f,-0.915146f},{0.456785f,-0.158038f,-0.875426f},{0.278164f,-0.327993f,-0.902799f}, - {0.295345f,-0.348252f,-0.889658f},{0.243083f,-0.286628f,-0.92669f},{0.437715f,-0.135553f,-0.888837f}, - {0.36133f,-0.426058f,-0.829407f},{0.418489f,-0.112883f,-0.901179f},{0.225214f,-0.265559f,-0.93742f}, - {0.399143f,-0.0900702f,-0.912454f},{0.638609f,0.0637896f,-0.766883f},{0.764881f,0.334964f,-0.550232f}, - {0.776686f,0.321045f,-0.541931f},{0.379711f,-0.0671572f,-0.922665f},{0.207148f,-0.244256f,-0.947327f}, - {0.360228f,-0.0441843f,-0.931817f},{0.1889f,-0.222739f,-0.956402f},{0.170486f,-0.201027f,-0.964636f}, - {0.340727f,-0.0211908f,-0.939923f},{0.151922f,-0.179137f,-0.972023f},{0.133225f,-0.157091f,-0.978557f}, - {0.114411f,-0.134906f,-0.984231f},{0.301804f,0.0247052f,-0.95305f},{0.321242f,0.00178461f,-0.946995f}, - {0.0954963f,-0.112603f,-0.98904f},{0.282442f,0.0475355f,-0.958106f},{0.0764977f,-0.0902013f,-0.992981f}, - {0.263186f,0.0702416f,-0.962185f},{0.18253f,0.1548f,0.970938f},{-0.019167f,0.0226005f,0.999561f}, - {0.244062f,0.0927915f,-0.96531f},{0.169153f,0.181119f,0.968805f},{0.452261f,0.283519f,-0.845622f}, - {0.469014f,0.263765f,-0.842884f},{0.131403f,0.225632f,0.96531f},{0.353571f,0.399889f,0.845622f}, - {0.150369f,0.203268f,0.967508f},{0.76115f,0.610871f,-0.217916f},{0.66876f,0.448305f,-0.593113f}, - {0.656839f,0.462361f,-0.595638f},{0.598628f,0.530999f,0.599736f},{0.739853f,0.635983f,0.219416f}, - {0.712963f,0.604648f,0.355084f},{0.504783f,0.428095f,0.749619f},{0.38664f,0.360895f,0.848684f}, - {0.0574318f,-0.06772f,-0.99605f},{0.645f,0.47632f,-0.597573f},{0.757056f,0.642042f,0.121027f}, - {0.748269f,0.62606f,-0.219416f},{0.206312f,0.137304f,-0.968805f},{0.355998f,0.301914f,-0.884372f}, - {0.419192f,0.322513f,-0.848684f},{0.0383156f,-0.0451794f,-0.998244f},{0.225096f,0.115155f,-0.967508f}, - {0.621631f,0.503876f,-0.599736f},{0.71354f,0.605138f,-0.353084f},{0.627779f,0.532405f,-0.567836f}, - {0.757174f,0.642143f,-0.119748f},{0.182011f,0.154359f,-0.971105f},{0.019166f,-0.0225994f,-0.999561f}, - {0.756818f,0.615978f,-0.218624f},{0.548521f,-0.266208f,-0.792627f},{0.377068f,-0.444615f,-0.812488f}, - {0.565895f,-0.286694f,-0.773026f},{0.582863f,-0.306702f,-0.752465f},{0.392475f,-0.462782f,-0.794856f}, - {0.407538f,-0.480543f,-0.776525f},{0.422243f,-0.497882f,-0.757512f},{0.436576f,-0.514784f,-0.737834f}, - {0.599393f,-0.326194f,-0.730976f},{0.615454f,-0.345131f,-0.708591f},{0.450527f,-0.531233f,-0.717508f}, - {0.631014f,-0.363479f,-0.68535f},{0.464081f,-0.547216f,-0.696551f},{0.646047f,-0.381204f,-0.661292f}, - {0.829264f,-0.161018f,-0.535159f},{0.902811f,0.172326f,-0.394f},{0.911416f,0.16218f,-0.378179f}, - {0.660525f,-0.398276f,-0.636461f},{0.477228f,-0.562717f,-0.674983f},{0.674424f,-0.414665f,-0.610904f}, - {0.489956f,-0.577725f,-0.652822f},{0.514109f,-0.606205f,-0.606801f},{0.502253f,-0.592225f,-0.630089f}, - {0.687723f,-0.430346f,-0.58467f},{0.525514f,-0.619653f,-0.58298f},{0.700401f,-0.445295f,-0.557808f}, - {0.536457f,-0.632556f,-0.558647f},{0.546929f,-0.644904f,-0.533824f},{0.712441f,-0.459492f,-0.530373f}, - {0.723827f,-0.472918f,-0.502416f},{0.55692f,-0.656685f,-0.508532f},{0.734548f,-0.48556f,-0.473994f}, - {0.960649f,0.104127f,-0.25751f},{0.872299f,0.47981f,-0.0942108f},{0.966018f,0.097796f,-0.239258f}, - {0.566422f,-0.66789f,-0.482793f},{0.744593f,-0.497404f,-0.445162f},{0.753955f,-0.508443f,-0.415977f}, - {0.575427f,-0.678508f,-0.45663f},{0.583927f,-0.68853f,-0.430066f},{0.591913f,-0.697947f,-0.403124f}, - {0.59938f,-0.706751f,-0.375828f},{0.762629f,-0.518671f,-0.386494f},{0.770612f,-0.528084f,-0.356769f}, - {0.60632f,-0.714934f,-0.348202f},{0.777905f,-0.536683f,-0.326857f},{0.612728f,-0.72249f,-0.32027f}, - {0.618597f,-0.729411f,-0.292057f},{0.784509f,-0.54447f,-0.296814f},{0.790429f,-0.551451f,-0.266692f}, - {0.623923f,-0.735691f,-0.263588f},{0.795672f,-0.557633f,-0.236543f},{0.939484f,-0.290984f,-0.180824f}, - {0.800246f,-0.563026f,-0.206418f},{0.935477f,-0.286259f,-0.207214f},{0.628701f,-0.741325f,-0.234887f}, - {0.804162f,-0.567644f,-0.176364f},{0.632927f,-0.746308f,-0.205979f},{0.998038f,0.0600411f,-0.0177823f}, - {0.885788f,0.463905f,-0.0130831f},{0.885978f,0.463681f,-0.00650573f},{0.636597f,-0.750636f,-0.176891f}, - {0.223622f,0.973184f,0.0539127f},{0.602655f,0.797758f,0.0197241f},{0.224873f,0.971708f,0.0722163f}, - {0.94578f,-0.298407f,-0.128274f},{0.948091f,-0.301132f,-0.102193f},{0.81007f,-0.574611f,-0.116657f}, - {-0.14403f,0.986628f,0.0762915f},{-0.142259f,0.98454f,0.102193f},{-0.14601f,0.988963f,0.0251637f}, - {0.0805097f,0.996754f,1.11285e-016f},{0.222222f,0.974834f,0.0177823f},{0.885008f,0.464825f,-0.0264206f}, - {0.996638f,0.0616911f,-0.0539127f},{0.995387f,0.0631666f,-0.0722163f},{-0.438888f,0.898083f,0.0287253f}, - {-0.17704f,0.984204f,4.07949e-016f},{0.884411f,0.465529f,-0.0331634f},{0.993754f,0.0650924f,-0.0906466f}, - {0.88367f,0.466403f,-0.0399431f},{-0.427653f,0.903943f,3.52919e-035f},{0.639708f,-0.754304f,-0.147647f}, - {0.807432f,-0.5715f,-0.146429f},{0.813513f,-0.57867f,-0.0577667f},{0.812092f,-0.576994f,-0.0870897f}, - {0.949862f,-0.30322f,-0.0762915f},{0.642257f,-0.757309f,-0.118274f},{0.644242f,-0.75965f,-0.0887967f}, - {0.645661f,-0.761323f,-0.0592414f},{0.646513f,-0.762327f,-0.0296338f},{0.814352f,-0.57966f,-0.0287253f}, - {0.506241f,0.429332f,-0.747926f},{0.435647f,0.30311f,-0.847547f},{0.485883f,0.243875f,-0.839311f}, - {0.502844f,0.223875f,-0.834882f},{0.519872f,0.203796f,-0.829578f},{0.536941f,0.18367f,-0.823383f}, - {0.554024f,0.163527f,-0.816282f},{0.571091f,0.143403f,-0.808264f},{0.588114f,0.12333f,-0.79932f}, - {0.605061f,0.103347f,-0.789443f},{0.621904f,0.0834874f,-0.778631f},{0.655145f,0.0442908f,-0.754203f}, - {0.671482f,0.0250283f,-0.740598f},{0.687585f,0.00603957f,-0.726078f},{0.703426f,-0.0126381f,-0.710657f}, - {0.718971f,-0.0309681f,-0.69435f},{0.73419f,-0.0489141f,-0.677179f},{0.749055f,-0.0664415f,-0.659168f}, - {0.763536f,-0.083516f,-0.640343f},{0.777605f,-0.100105f,-0.620734f},{0.791236f,-0.116178f,-0.600374f}, - {0.804404f,-0.131706f,-0.579299f},{0.817087f,-0.146661f,-0.557547f},{0.840913f,-0.174755f,-0.512177f}, - {0.852019f,-0.187851f,-0.488646f},{0.862566f,-0.200287f,-0.464612f},{0.872541f,-0.212049f,-0.440122f}, - {0.881933f,-0.223123f,-0.415224f},{0.890732f,-0.233499f,-0.389967f},{0.898933f,-0.243169f,-0.3644f}, - {0.906532f,-0.252128f,-0.338573f},{0.913525f,-0.260374f,-0.312533f},{0.919913f,-0.267907f,-0.286331f}, - {0.925699f,-0.274729f,-0.260012f},{0.930885f,-0.280844f,-0.233625f},{0.942915f,-0.295029f,-0.154497f}, - {0.991729f,0.0674795f,-0.109178f},{0.951842f,-0.305555f,-0.0251637f},{0.951107f,-0.304688f,-0.0506043f}, - {0.938627f,-0.344933f,-2.28355e-016f},{0.822203f,-0.569194f,-3.01839e-016f},{0.627461f,0.532136f,0.56844f}, - {0.633259f,0.490164f,-0.598933f},{0.680746f,0.434172f,-0.589983f},{0.692779f,0.419983f,-0.586235f}, - {0.704841f,0.40576f,-0.581857f},{0.716913f,0.391526f,-0.576839f},{0.728974f,0.377304f,-0.571173f}, - {0.741003f,0.36312f,-0.564853f},{0.752979f,0.348998f,-0.557873f},{0.799916f,0.293653f,-0.523356f}, - {0.788372f,0.307265f,-0.53297f},{0.809271f,0.554129f,-0.194989f},{0.811296f,0.280235f,-0.513095f}, - {0.82249f,0.267036f,-0.502197f},{0.833475f,0.254083f,-0.490674f},{0.844231f,0.241401f,-0.47854f}, - {0.87491f,0.205226f,-0.438652f},{0.884543f,0.193867f,-0.424264f},{0.893848f,0.182894f,-0.409371f}, - {0.86017f,0.494112f,-0.126333f},{0.627951f,0.767931f,0.126333f},{0.862897f,0.490897f,-0.120119f}, - {0.919648f,0.152473f,-0.361938f},{0.927496f,0.143219f,-0.34531f},{0.93495f,0.134431f,-0.328326f}, - {0.941998f,0.126119f,-0.31102f},{0.948635f,0.118293f,-0.293425f},{0.954853f,0.110961f,-0.275577f}, - {0.97096f,0.0919687f,-0.220857f},{0.975475f,0.0866457f,-0.20234f},{0.979563f,0.0818252f,-0.183742f}, - {0.983228f,0.0775037f,-0.165095f},{0.986473f,0.0736769f,-0.146431f},{0.989305f,0.0703379f,-0.127782f}, - {0.997518f,0.0606535f,-0.0357604f},{0.885466f,0.464285f,-0.0197241f},{0.996651f,-0.0817741f,-2.89047e-016f}, - {-0.0383171f,0.0451812f,0.998244f},{0.752523f,0.621043f,-0.219122f},{0.765511f,0.605729f,-0.216993f}, - {0.769896f,0.600558f,-0.215848f},{0.70941f,0.671879f,0.212874f},{0.783128f,0.584956f,-0.211039f}, - {0.778711f,0.590164f,-0.212875f},{0.774298f,0.595367f,-0.214476f},{0.78754f,0.579753f,-0.208966f}, - {0.791941f,0.574564f,-0.206653f},{0.796323f,0.569397f,-0.2041f},{0.800677f,0.564263f,-0.201305f}, - {0.804996f,0.55917f,-0.198267f},{0.670463f,0.717803f,0.187718f},{0.821754f,0.539411f,-0.183731f}, - {0.817658f,0.54424f,-0.187718f},{0.813495f,0.549149f,-0.191472f},{0.825773f,0.534672f,-0.179515f}, - {0.829707f,0.530032f,-0.175076f},{0.64719f,0.745245f,0.160482f},{0.844456f,0.512642f,-0.155219f}, - {0.840932f,0.516797f,-0.160482f},{0.837294f,0.521086f,-0.165552f},{0.84786f,0.508628f,-0.14977f}, - {0.851139f,0.504761f,-0.144146f},{0.854287f,0.501049f,-0.138358f},{0.857299f,0.497498f,-0.132417f}, - {0.865476f,0.487856f,-0.113788f},{0.867904f,0.484993f,-0.107351f},{0.870179f,0.48231f,-0.100821f}, - {0.61205f,0.786681f,0.0808013f},{0.877724f,0.473415f,-0.0740269f},{0.876072f,0.475362f,-0.0808013f}, - {0.874264f,0.477494f,-0.0875334f},{0.879219f,0.471651f,-0.0672227f},{0.88056f,0.47007f,-0.0604006f}, - {0.881747f,0.46867f,-0.0535724f},{0.882783f,0.467448f,-0.0467496f},{0.603113f,0.797218f,0.0264206f}, - {0.983879f,0.178833f,-2.6491e-016f},{0.731303f,0.646064f,0.218624f},{0.735599f,0.640999f,0.219122f}, - {0.726972f,0.651171f,0.217917f},{0.722611f,0.656314f,0.216992f},{0.718226f,0.661484f,0.215848f}, - {0.713823f,0.666676f,0.214476f},{0.704994f,0.677087f,0.211039f},{0.691799f,0.692645f,0.2041f}, - {0.69618f,0.687479f,0.206653f},{0.479257f,0.671755f,0.564852f},{0.700581f,0.682289f,0.208966f}, - {0.687444f,0.69778f,0.201305f},{0.683125f,0.702872f,0.198267f},{0.67885f,0.707913f,0.194989f}, - {0.674627f,0.712894f,0.191472f},{0.0716416f,0.732322f,0.677179f},{0.376029f,0.793474f,0.47854f}, - {0.0868611f,0.714376f,0.69435f},{0.666368f,0.722632f,0.183731f},{0.662349f,0.727371f,0.179515f}, - {0.658414f,0.73201f,0.175076f},{0.654571f,0.736542f,0.170419f},{0.650828f,0.740956f,0.165552f}, - {-0.0112556f,0.830069f,0.557547f},{0.317449f,0.862549f,0.394f},{0.00142744f,0.815114f,0.579299f}, - {0.643666f,0.749401f,0.155219f},{0.640261f,0.753415f,0.14977f},{0.636982f,0.757282f,0.144146f}, - {0.633834f,0.760993f,0.138358f},{0.630822f,0.764545f,0.132417f},{0.620218f,0.77705f,0.107351f}, - {0.622645f,0.774187f,0.113788f},{0.278262f,0.908756f,0.311019f},{0.625224f,0.771146f,0.120119f}, - {0.617942f,0.779732f,0.100821f},{0.615822f,0.782232f,0.0942108f},{0.613858f,0.784549f,0.0875334f}, - {0.610398f,0.788628f,0.0740269f},{0.606374f,0.793373f,0.0535724f},{0.607562f,0.791973f,0.0604006f}, - {0.237032f,0.957371f,0.165095f},{0.608902f,0.790392f,0.0672227f},{0.605338f,0.794594f,0.0467497f}, - {0.604451f,0.79564f,0.0399431f},{0.603711f,0.796513f,0.0331634f},{0.602333f,0.798137f,0.0130831f}, - {0.602143f,0.798361f,0.00650573f},{0.762662f,0.646797f,-2.05938e-033f},{0.904079f,0.427366f,-1.54031e-016f}, - {0.575259f,0.558555f,0.597573f},{0.587f,0.544711f,0.598933f},{0.563421f,0.572514f,0.595638f}, - {0.5515f,0.58657f,0.593113f},{0.539514f,0.600703f,0.589983f},{0.527481f,0.614892f,0.586235f}, - {0.515419f,0.629115f,0.581857f},{0.503347f,0.643349f,0.576839f},{0.491286f,0.657571f,0.571173f}, - {0.20077f,0.580061f,0.789443f},{0.183928f,0.599921f,0.778631f},{0.455379f,0.699911f,0.550232f}, - {0.46728f,0.685877f,0.557873f},{0.443574f,0.71383f,0.541931f},{0.431888f,0.72761f,0.53297f}, - {0.420343f,0.741222f,0.523356f},{0.408963f,0.75464f,0.513095f},{0.39777f,0.767839f,0.502197f}, - {0.386784f,0.780792f,0.490674f},{0.365525f,0.80586f,0.465812f},{0.355292f,0.817926f,0.452509f}, - {0.34535f,0.829649f,0.438652f},{0.335717f,0.841008f,0.424264f},{0.326411f,0.851981f,0.409371f}, - {0.308844f,0.872695f,0.378179f},{0.300612f,0.882402f,0.361938f},{0.292763f,0.891656f,0.34531f}, - {0.28531f,0.900444f,0.328326f},{-0.0761008f,0.90653f,0.415224f},{-0.0849005f,0.916907f,0.389967f}, - {0.265406f,0.923914f,0.275577f},{0.271625f,0.916582f,0.293425f},{0.259611f,0.930748f,0.257509f}, - {0.254241f,0.937079f,0.239258f},{0.249299f,0.942906f,0.220857f},{0.244785f,0.948229f,0.20234f}, - {0.240697f,0.95305f,0.183742f},{0.233786f,0.961198f,0.146431f},{-0.133653f,0.974392f,0.180824f}, - {-0.137083f,0.978437f,0.154497f},{0.228531f,0.967395f,0.109178f},{0.230955f,0.964537f,0.127782f}, - {0.226506f,0.969783f,0.0906467f},{0.222742f,0.974221f,0.0357604f},{0.337862f,0.941196f,1.5621e-016f}, - {0.569614f,0.821913f,6.56678e-035f},{0.348737f,0.295756f,0.889332f},{0.370185f,0.380298f,0.847547f}, - {0.336818f,0.419643f,0.842884f},{0.319949f,0.439533f,0.839311f},{0.112279f,0.248181f,0.962185f}, - {0.302988f,0.459533f,0.834882f},{0.28596f,0.479612f,0.829578f},{0.26889f,0.499738f,0.823383f}, - {0.251808f,0.519881f,0.816282f},{0.234741f,0.540006f,0.808264f},{0.217718f,0.560077f,0.79932f}, - {-0.295347f,0.348255f,0.889657f},{-0.100197f,0.49872f,0.860952f},{-0.0813203f,0.476461f,0.875426f}, - {0.167223f,0.619618f,0.766883f},{0.150686f,0.639117f,0.754203f},{0.13435f,0.65838f,0.740598f}, - {0.118247f,0.677368f,0.726078f},{0.102406f,0.696046f,0.710657f},{-0.207399f,0.625125f,0.752465f}, - {0.0567769f,0.749849f,0.659168f},{-0.19043f,0.605117f,0.773026f},{0.0422963f,0.766924f,0.640343f}, - {0.0282273f,0.783513f,0.620734f},{0.0145963f,0.799586f,0.600374f},{-0.29896f,0.733089f,0.610904f}, - {-0.51411f,0.606207f,0.606799f},{-0.312259f,0.74877f,0.58467f},{-0.0234316f,0.844427f,0.535159f}, - {-0.0350815f,0.858163f,0.512177f},{-0.0461876f,0.871259f,0.488646f},{-0.0567343f,0.883695f,0.464612f}, - {-0.0667093f,0.895457f,0.440122f},{-0.378491f,0.826866f,0.415977f},{-0.0931014f,0.926577f,0.3644f}, - {-0.369129f,0.815827f,0.445162f},{-0.1007f,0.935536f,0.338573f},{-0.107693f,0.943782f,0.312533f}, - {-0.114081f,0.951315f,0.286331f},{-0.119867f,0.958137f,0.260012f},{-0.125053f,0.964252f,0.233625f}, - {-0.129645f,0.969667f,0.207214f},{-0.139948f,0.981815f,0.128274f},{-0.438049f,0.897093f,0.0577667f}, - {-0.436627f,0.895417f,0.0870897f},{-0.145275f,0.988096f,0.0506043f},{0.0930223f,0.270888f,0.958106f}, - {0.0736606f,0.293718f,0.95305f},{0.054222f,0.316638f,0.946995f},{0.034737f,0.339614f,0.939923f}, - {0.015237f,0.362607f,0.931817f},{-0.00424604f,0.38558f,0.922665f},{-0.023678f,0.408493f,0.912454f}, - {-0.0430246f,0.431306f,0.901179f},{-0.0622507f,0.453976f,0.888837f},{-0.118846f,0.520709f,0.845422f}, - {-0.137229f,0.542385f,0.828846f},{-0.155311f,0.563707f,0.811242f},{-0.173056f,0.584631f,0.792627f}, - {-0.392477f,0.462784f,0.794854f},{-0.223929f,0.644617f,0.730976f},{-0.239989f,0.663554f,0.708591f}, - {-0.25555f,0.681902f,0.68535f},{-0.270582f,0.699627f,0.661292f},{-0.28506f,0.716699f,0.636461f}, - {-0.324936f,0.763719f,0.557808f},{-0.336976f,0.777915f,0.530373f},{-0.348363f,0.791341f,0.502416f}, - {-0.359084f,0.803983f,0.473994f},{-0.575428f,0.678509f,0.456627f},{-0.387165f,0.837094f,0.386494f}, - {-0.395148f,0.846507f,0.356769f},{-0.40244f,0.855106f,0.326857f},{-0.409044f,0.862893f,0.296814f}, - {-0.414964f,0.869874f,0.266692f},{-0.420207f,0.876056f,0.236543f},{-0.424781f,0.881449f,0.206418f}, - {-0.428697f,0.886067f,0.176364f},{-0.431967f,0.889923f,0.146429f},{-0.434606f,0.893034f,0.116657f}, - {-0.0574335f,0.0677219f,0.99605f},{-0.0764992f,0.090203f,0.992981f},{-0.0954975f,0.112605f,0.98904f}, - {-0.114412f,0.134908f,0.98423f},{-0.133227f,0.157093f,0.978556f},{-0.151924f,0.179139f,0.972023f}, - {-0.170488f,0.201028f,0.964635f},{-0.188902f,0.222741f,0.956401f},{-0.20715f,0.244258f,0.947326f}, - {-0.225216f,0.265561f,0.937419f},{-0.243085f,0.28663f,0.926689f},{-0.260739f,0.307448f,0.915145f}, - {-0.278165f,0.327995f,0.902798f},{-0.312269f,0.368208f,0.875734f},{-0.328917f,0.387838f,0.861043f}, - {-0.345276f,0.407127f,0.845596f},{-0.361331f,0.426059f,0.829405f},{-0.37707f,0.444617f,0.812486f}, - {-0.407539f,0.480545f,0.776523f},{-0.422244f,0.497883f,0.757511f},{-0.436577f,0.514784f,0.737833f}, - {-0.450527f,0.531233f,0.717507f},{-0.464082f,0.547216f,0.696551f},{-0.477229f,0.562718f,0.674982f}, - {-0.489956f,0.577726f,0.652821f},{-0.502254f,0.592226f,0.630087f},{-0.525515f,0.619654f,0.582978f}, - {-0.536458f,0.632557f,0.558645f},{-0.546929f,0.644905f,0.533822f},{-0.556921f,0.656686f,0.508529f}, - {-0.566423f,0.667891f,0.48279f},{-0.583927f,0.688531f,0.430063f},{-0.591914f,0.697948f,0.403122f}, - {-0.59938f,0.706752f,0.375826f},{-0.606321f,0.714935f,0.3482f},{-0.612728f,0.722491f,0.320268f}, - {-0.618598f,0.729411f,0.292055f},{-0.623923f,0.735692f,0.263585f},{-0.628702f,0.741326f,0.234884f}, - {-0.632928f,0.746309f,0.205977f},{-0.636597f,0.750636f,0.176888f},{-0.639708f,0.754304f,0.147645f}, - {-0.642257f,0.757309f,0.118272f},{-0.644242f,0.75965f,0.0887941f},{-0.645661f,0.761323f,0.0592391f}, - {-0.646513f,0.762327f,0.0296323f},{-5.74474e-016f,6.77383e-016f,1.0f},{7.92072e-017f,-9.33961e-017f,1.0f}, - {0.156255f,0.134204f,0.978557f},{-0.0265911f,0.301644f,0.95305f},{-0.00379251f,0.321225f,0.946995f}, - {0.110265f,0.419187f,0.901179f},{0.285103f,0.24487f,0.92669f},{0.264146f,0.22687f,0.93742f}, - {-0.286341f,0.45048f,0.845622f},{-0.480343f,0.642011f,0.597573f},{-0.466457f,0.653936f,0.595638f}, - {-0.0492999f,0.28214f,0.958106f},{0.134188f,0.115252f,0.984231f},{-0.610502f,0.76171f,0.216993f}, - {-0.615617f,0.757316f,0.217916f},{-0.0943152f,0.243477f,0.96531f},{-0.266692f,0.467356f,0.842884f}, - {-0.0718852f,0.262742f,0.962185f},{-0.640595f,0.735863f,-0.219416f},{-0.630724f,0.744341f,0.219416f}, - {-0.646863f,0.753146f,0.119748f},{-0.620697f,0.752953f,0.218624f},{-0.431242f,0.502097f,-0.749619f}, - {-0.363305f,0.384377f,-0.848684f},{-0.534731f,0.595298f,-0.599736f},{-0.609092f,0.70917f,-0.355084f}, - {-0.0449409f,-0.0385987f,-0.998244f},{-0.204204f,0.149095f,-0.967508f},{-0.182173f,0.168018f,-0.968805f}, - {-0.0224804f,-0.0193078f,-0.999561f},{-0.155937f,0.181559f,-0.970938f},{-4.72151e-016f,-4.05521e-016f,-1.0f}, - {0.199957f,0.171739f,0.964636f},{0.0190607f,0.340853f,0.939923f},{0.0419318f,0.360497f,0.931817f}, - {0.178184f,0.153039f,0.972023f},{0.0647826f,0.380123f,0.922665f},{0.221554f,0.190289f,0.956402f}, - {-0.127004f,0.587331f,0.79932f},{0.0875737f,0.399698f,0.912454f},{0.242957f,0.208671f,0.947327f}, - {0.132814f,0.438554f,0.888837f},{0.30581f,0.262654f,0.915146f},{0.17732f,0.47678f,0.860952f}, - {0.199192f,0.495565f,0.845422f},{0.366247f,0.314563f,0.875736f},{0.15518f,0.457764f,0.875426f}, - {0.423791f,0.363986f,0.829407f},{0.40496f,0.347812f,0.845597f},{0.241961f,0.532298f,0.811242f}, - {0.385773f,0.331333f,0.861045f},{0.46032f,0.39536f,0.794856f},{0.283151f,0.567676f,0.773026f}, - {0.303053f,0.584769f,0.752465f},{0.262774f,0.550174f,0.792627f},{0.512045f,0.439786f,0.737834f}, - {0.341277f,0.617599f,0.708591f},{0.528407f,0.453838f,0.717508f},{0.322441f,0.601421f,0.730976f}, - {0.574651f,0.493557f,0.652822f},{0.559724f,0.480736f,0.674983f},{0.39414f,0.663002f,0.636461f}, - {0.544304f,0.467493f,0.696551f},{0.377159f,0.648417f,0.661292f},{0.616356f,0.529376f,0.58298f}, - {0.426039f,0.6904f,0.58467f},{0.440909f,0.703171f,0.557808f},{0.410442f,0.677003f,0.610904f}, - {0.468385f,0.726769f,0.502416f},{0.653191f,0.561014f,0.508532f},{0.641473f,0.550949f,0.533824f}, - {0.629191f,0.5404f,0.558647f},{0.684866f,0.588219f,0.430066f},{0.674898f,0.579657f,0.45663f}, - {0.503721f,0.757119f,0.415977f},{0.480959f,0.737569f,0.473994f},{0.513894f,0.765856f,0.386494f}, - {0.702991f,0.603786f,0.375828f},{0.694233f,0.596264f,0.403124f},{0.539556f,0.787897f,0.296814f}, - {0.718646f,0.617231f,0.32027f},{0.53181f,0.781244f,0.326857f},{0.711131f,0.610777f,0.348202f}, - {0.523257f,0.773898f,0.356769f},{0.731777f,0.628509f,0.263588f},{0.552648f,0.799142f,0.236543f}, - {0.737381f,0.633323f,0.234887f},{0.546499f,0.79386f,0.266692f},{0.72553f,0.623144f,0.292057f}, - {0.742337f,0.63758f,0.205979f},{0.562606f,0.807694f,0.176364f},{0.746642f,0.641277f,0.176891f}, - {0.558013f,0.803749f,0.206418f},{0.574558f,0.81796f,0.0287253f},{0.758605f,0.651551f,3.14853e-016f}, - {0.758272f,0.651265f,0.0296338f},{0.75029f,0.64441f,0.147647f},{0.566442f,0.810988f,0.146429f}, - {0.571907f,0.815682f,0.0870897f},{0.297277f,0.951738f,0.0762915f},{0.298738f,0.952993f,0.0506043f}, - {0.757272f,0.650407f,0.0592414f},{0.75328f,0.646978f,0.118274f},{0.755608f,0.648977f,0.0887967f}, - {0.573574f,0.817114f,0.0577667f},{0.569536f,0.813646f,0.116657f},{-0.0668874f,0.997119f,0.0357603f}, - {-0.46921f,0.883063f,0.00650573f},{-0.0662782f,0.997643f,0.0177823f},{0.28913f,0.944741f,0.154497f}, - {0.285106f,0.941285f,0.180824f},{-0.0679193f,0.996233f,0.0539127f},{0.2952f,0.949955f,0.102193f}, - {-0.069387f,0.994972f,0.0722163f},{-0.073677f,0.991288f,0.109178f},{-0.801509f,0.597657f,-0.0197241f}, - {-0.800972f,0.598118f,-0.0264206f},{-0.974563f,0.217534f,-0.0539127f},{-0.470347f,0.882086f,0.0264206f}, - {-0.46981f,0.882547f,0.0197241f},{-0.985709f,-0.150194f,-0.0762915f},{-0.987169f,-0.151448f,-0.0506043f}, - {-0.997238f,0.0742779f,-1.10368e-016f},{-0.976204f,0.216125f,-0.0177823f},{-0.988031f,-0.152188f,-0.0251637f}, - {-0.895322f,-0.444493f,-0.0287253f},{-0.901253f,-0.433294f,-3.00521e-016f},{-0.983078f,-0.183188f,-5.39175e-016f}, - {-0.758605f,-0.651551f,-6.22394e-016f},{0.27502f,0.932622f,0.233625f},{0.45503f,0.715299f,0.530373f}, - {0.664336f,0.570586f,0.482793f},{0.49274f,0.747688f,0.445162f},{0.206591f,0.87385f,0.440122f}, - {0.60298f,0.517888f,0.606801f},{0.589074f,0.505945f,0.630089f},{0.359528f,0.633274f,0.68535f}, - {0.495233f,0.425347f,0.757512f},{0.126676f,0.805212f,0.579299f},{-0.188478f,0.892688f,0.409371f}, - {-0.177966f,0.901716f,0.394f},{0.477987f,0.410534f,0.776525f},{0.44225f,0.37984f,0.812488f}, - {0.346399f,0.297516f,0.889658f},{0.326248f,0.280208f,0.902799f},{0.220753f,0.514083f,0.828846f}, - {-0.246673f,0.842705f,0.47854f},{0.0264735f,0.71915f,0.69435f},{-0.259287f,0.831871f,0.490674f}, - {0.112004f,0.0961983f,0.98904f},{0.0897214f,0.07706f,0.992981f},{0.0673597f,0.0578539f,0.99605f}, - {-0.507751f,0.61847f,0.599736f},{-0.609586f,0.709744f,0.353084f},{-0.11656f,0.224371f,0.967508f}, - {0.044939f,0.0385972f,0.998244f},{-0.138591f,0.205449f,0.968805f},{0.0224791f,0.0193069f,0.999561f}, - {-0.646762f,0.753028f,-0.121027f},{-0.155494f,0.181042f,0.971105f},{2.38849e-016f,2.05143e-016f,1.0f}, - {-0.304133f,0.354104f,0.884372f},{-0.432488f,0.503548f,0.747926f},{-0.325126f,0.417168f,0.848684f}, - {-0.536319f,0.624439f,0.567836f},{-0.305827f,0.433744f,0.847547f},{-0.246907f,0.484349f,0.839311f}, - {-0.227014f,0.501435f,0.834882f},{-0.207042f,0.518588f,0.829578f},{-0.187022f,0.535783f,0.823383f}, - {-0.166987f,0.552991f,0.816282f},{-0.146969f,0.570184f,0.808264f},{-0.353698f,0.750783f,0.557873f}, - {-0.339739f,0.762773f,0.550232f},{-0.107127f,0.604404f,0.789443f},{-0.087373f,0.62137f,0.778631f}, - {-0.06778f,0.638198f,0.766883f},{-0.0483849f,0.654856f,0.754203f},{-0.0292249f,0.671312f,0.740598f}, - {-0.0103371f,0.687534f,0.726078f},{0.00824112f,0.703491f,0.710657f},{0.0443241f,0.734482f,0.677179f}, - {0.0617582f,0.749456f,0.659168f},{0.078742f,0.764043f,0.640343f},{0.0952429f,0.778215f,0.620734f}, - {0.111231f,0.791946f,0.600374f},{0.141551f,0.817988f,0.557547f},{0.155832f,0.830254f,0.535159f}, - {0.169496f,0.841989f,0.512177f},{0.182521f,0.853177f,0.488646f},{0.194892f,0.863801f,0.464612f}, - {-0.485253f,0.869283f,0.0942108f},{-0.116927f,0.954141f,0.275577f},{-0.48774f,0.867148f,0.100821f}, - {0.217606f,0.88331f,0.415224f},{0.227926f,0.892174f,0.389967f},{0.237545f,0.900436f,0.3644f}, - {0.246457f,0.90809f,0.338573f},{0.254659f,0.915135f,0.312533f},{0.262152f,0.92157f,0.286331f}, - {0.268937f,0.927398f,0.260012f},{0.280406f,0.937248f,0.207214f},{-0.0765203f,0.988846f,0.127782f}, - {0.292489f,0.947626f,0.128274f},{0.2996f,0.953733f,0.0251637f},{0.339059f,0.940765f,7.30221e-017f}, - {0.564043f,0.825745f,2.30577e-016f},{-0.536047f,0.624123f,-0.56844f},{-0.494113f,0.630183f,0.598933f}, - {-0.452476f,0.665945f,0.593113f},{-0.438418f,0.678019f,0.589983f},{-0.424305f,0.69014f,0.586235f}, - {-0.410157f,0.702291f,0.581857f},{-0.395999f,0.714451f,0.576839f},{-0.381854f,0.726601f,0.571173f}, - {-0.367745f,0.738719f,0.564853f},{-0.325893f,0.774664f,0.541931f},{-0.564191f,0.801485f,0.198267f}, - {-0.559177f,0.805792f,0.194989f},{-0.312187f,0.786436f,0.53297f},{-0.298647f,0.798065f,0.523356f}, - {-0.2853f,0.809529f,0.513095f},{-0.272171f,0.820805f,0.502197f},{-0.52631f,0.834021f,0.165552f}, - {-0.74501f,0.646183f,-0.165552f},{-0.749276f,0.642519f,-0.160482f},{-0.234353f,0.853287f,0.465812f}, - {-0.222351f,0.863595f,0.452509f},{-0.21069f,0.87361f,0.438652f},{-0.199392f,0.883313f,0.424264f}, - {-0.502847f,0.854173f,0.132416f},{-0.768473f,0.626031f,-0.132417f},{-0.771841f,0.623139f,-0.126333f}, - {-0.167874f,0.910384f,0.378179f},{-0.158218f,0.918677f,0.361938f},{-0.149013f,0.926583f,0.34531f}, - {-0.140272f,0.934091f,0.328326f},{-0.132004f,0.941192f,0.31102f},{-0.124221f,0.947877f,0.293425f}, - {-0.11013f,0.959979f,0.25751f},{-0.103832f,0.965388f,0.239258f},{-0.098036f,0.970367f,0.220857f}, - {-0.0927412f,0.974914f,0.20234f},{-0.0879463f,0.979032f,0.183742f},{-0.0836479f,0.982724f,0.165095f}, - {-0.0798413f,0.985994f,0.146431f},{-0.0713026f,0.993327f,0.0906466f},{-0.801887f,0.597333f,-0.0130831f}, - {0.0755429f,0.997143f,3.49386e-017f},{-0.382604f,0.367801f,-0.847547f},{-0.625735f,0.748626f,0.219122f}, - {-0.605359f,0.766127f,0.215847f},{-0.665961f,0.714077f,-0.215848f},{-0.671124f,0.709642f,-0.214476f}, - {-0.600195f,0.770562f,0.214476f},{-0.595019f,0.775007f,0.212875f},{-0.58984f,0.779456f,0.211039f}, - {-0.584664f,0.783901f,0.208966f},{-0.579503f,0.788334f,0.206653f},{-0.574364f,0.792748f,0.2041f}, - {-0.569256f,0.797135f,0.201304f},{-0.554223f,0.810046f,0.191472f},{-0.717096f,0.670158f,-0.191472f}, - {-0.721979f,0.665964f,-0.187718f},{-0.54934f,0.814241f,0.187718f},{-0.544537f,0.818366f,0.183731f}, - {-0.539823f,0.822414f,0.179515f},{-0.535208f,0.826378f,0.175076f},{-0.530701f,0.830249f,0.170419f}, - {-0.522044f,0.837685f,0.160482f},{-0.51791f,0.841235f,0.155219f},{-0.513917f,0.844665f,0.14977f}, - {-0.510071f,0.847968f,0.144146f},{-0.506379f,0.851139f,0.138358f},{-0.499479f,0.857065f,0.126333f}, - {-0.496281f,0.859812f,0.120119f},{-0.493256f,0.86241f,0.113788f},{-0.490408f,0.864856f,0.107351f}, - {-0.482949f,0.871262f,0.0875334f},{-0.78837f,0.608942f,-0.0875334f},{-0.790491f,0.60712f,-0.0808013f}, - {-0.480829f,0.873084f,0.0808013f},{-0.478892f,0.874747f,0.0740269f},{-0.477137f,0.876254f,0.0672227f}, - {-0.475565f,0.877605f,0.0604006f},{-0.474172f,0.878801f,0.0535724f},{-0.472957f,0.879844f,0.0467496f}, - {-0.471917f,0.880738f,0.0399431f},{-0.471048f,0.881484f,0.0331634f},{-0.469433f,0.882871f,0.0130831f}, - {-0.18498f,0.982742f,5.93908e-017f},{-0.650623f,0.727251f,-0.218624f},{-0.655703f,0.722888f,-0.217917f}, - {-0.645585f,0.731578f,-0.219122f},{-0.660818f,0.718494f,-0.216992f},{-0.6763f,0.705197f,-0.212875f}, - {-0.68148f,0.700748f,-0.211039f},{-0.686655f,0.696303f,-0.208966f},{-0.660628f,0.487166f,-0.571173f}, - {-0.674737f,0.475049f,-0.564852f},{-0.691817f,0.69187f,-0.206653f},{-0.696956f,0.687456f,-0.2041f}, - {-0.702063f,0.68307f,-0.201305f},{-0.707128f,0.678719f,-0.198267f},{-0.712143f,0.674412f,-0.194989f}, - {-0.726783f,0.661838f,-0.183731f},{-0.770311f,0.392963f,-0.502197f},{-0.783195f,0.381897f,-0.490674f}, - {-0.731497f,0.65779f,-0.179515f},{-0.736111f,0.653826f,-0.175076f},{-0.740619f,0.649955f,-0.170419f}, - {-0.753409f,0.638969f,-0.155219f},{-0.84309f,0.330454f,-0.424264f},{-0.854004f,0.32108f,-0.409371f}, - {-0.757402f,0.63554f,-0.14977f},{-0.761248f,0.632236f,-0.144146f},{-0.76494f,0.629065f,-0.138358f}, - {-0.775039f,0.620392f,-0.120119f},{-0.90221f,0.279676f,-0.328326f},{-0.910477f,0.272576f,-0.311019f}, - {-0.778063f,0.617794f,-0.113788f},{-0.780911f,0.615349f,-0.107351f},{-0.783579f,0.613057f,-0.100821f}, - {-0.786066f,0.610921f,-0.0942108f},{-0.792428f,0.605457f,-0.0740269f},{-0.794182f,0.60395f,-0.0672227f}, - {-0.954536f,0.234735f,-0.183742f},{-0.958834f,0.231043f,-0.165095f},{-0.795755f,0.602599f,-0.0604006f}, - {-0.797147f,0.601403f,-0.0535724f},{-0.798362f,0.60036f,-0.0467497f},{-0.799403f,0.599467f,-0.0399431f}, - {-0.800271f,0.59872f,-0.0331634f},{-0.802109f,0.597142f,-0.00650573f},{-0.651551f,0.758605f,-1.07812e-032f}, - {-0.433008f,0.90139f,5.07106e-017f},{-0.562139f,0.571757f,-0.597573f},{-0.576025f,0.559831f,-0.595638f}, - {-0.548369f,0.583584f,-0.598933f},{-0.590006f,0.547823f,-0.593113f},{-0.604064f,0.535749f,-0.589983f}, - {-0.618177f,0.523627f,-0.586235f},{-0.632324f,0.511476f,-0.581857f},{-0.646483f,0.499316f,-0.576839f}, - {-0.688784f,0.462984f,-0.557873f},{-0.601059f,0.180175f,-0.778631f},{-0.702743f,0.450995f,-0.550232f}, - {-0.716589f,0.439103f,-0.541931f},{-0.730295f,0.427331f,-0.53297f},{-0.743835f,0.415702f,-0.523356f}, - {-0.757182f,0.404239f,-0.513095f},{-0.732756f,0.0670628f,-0.677179f},{-0.795809f,0.371062f,-0.47854f}, - {-0.808129f,0.360481f,-0.465812f},{-0.820131f,0.350173f,-0.452509f},{-0.831792f,0.340158f,-0.438652f}, - {-0.829983f,-0.0164437f,-0.557547f},{-0.864516f,0.312051f,-0.394f},{-0.874608f,0.303383f,-0.378179f}, - {-0.884264f,0.29509f,-0.361938f},{-0.893469f,0.287184f,-0.34531f},{-0.906037f,-0.0817656f,-0.415224f}, - {-0.918261f,0.26589f,-0.293425f},{-0.925555f,0.259626f,-0.275577f},{-0.932352f,0.253788f,-0.25751f}, - {-0.93865f,0.248379f,-0.239258f},{-0.944446f,0.243401f,-0.220857f},{-0.949741f,0.238853f,-0.20234f}, - {-0.962641f,0.227774f,-0.146431f},{-0.973538f,-0.13974f,-0.180824f},{-0.965962f,0.224921f,-0.127782f}, - {-0.968805f,0.222479f,-0.109178f},{-0.971179f,0.22044f,-0.0906466f},{-0.973095f,0.218795f,-0.0722163f}, - {-0.975595f,0.216648f,-0.0357604f},{-0.943289f,0.331972f,-1.55829e-016f},{-0.825457f,0.564465f,-4.03832e-017f}, - {-0.29793f,0.346881f,-0.889332f},{-0.402091f,0.351065f,-0.845622f},{-0.42174f,0.334188f,-0.842884f}, - {-0.441525f,0.317195f,-0.839311f},{-0.461418f,0.30011f,-0.834882f},{-0.48139f,0.282956f,-0.829578f}, - {-0.501409f,0.265762f,-0.823383f},{-0.521445f,0.248554f,-0.816282f},{-0.541462f,0.231361f,-0.808264f}, - {-0.561427f,0.214213f,-0.79932f},{-0.581305f,0.197141f,-0.789443f},{-0.475944f,-0.0842967f,-0.875426f}, - {-0.346402f,-0.297518f,-0.889657f},{-0.498084f,-0.103313f,-0.860952f},{-0.620651f,0.163347f,-0.766883f}, - {-0.640047f,0.146689f,-0.754203f},{-0.659207f,0.130232f,-0.740598f},{-0.678094f,0.11401f,-0.726078f}, - {-0.696673f,0.0980537f,-0.710657f},{-0.714905f,0.0823942f,-0.69435f},{-0.75019f,0.0520888f,-0.659168f}, - {-0.623817f,-0.211302f,-0.752465f},{-0.767173f,0.0375018f,-0.640343f},{-0.783674f,0.0233296f,-0.620733f}, - {-0.799662f,0.00959801f,-0.600374f},{-0.815107f,-0.00366745f,-0.579299f},{-0.731206f,-0.303536f,-0.610904f}, - {-0.602981f,-0.517889f,-0.606799f},{-0.746803f,-0.316933f,-0.58467f},{-0.844264f,-0.0287092f,-0.535159f}, - {-0.857927f,-0.0404448f,-0.512177f},{-0.870953f,-0.0516324f,-0.488646f},{-0.883323f,-0.0622568f,-0.464612f}, - {-0.895022f,-0.072305f,-0.440122f},{-0.916358f,-0.0906297f,-0.389967f},{-0.824484f,-0.383652f,-0.415977f}, - {-0.925977f,-0.0988914f,-0.3644f},{-0.934889f,-0.106546f,-0.338573f},{-0.943091f,-0.11359f,-0.312533f}, - {-0.950583f,-0.120025f,-0.286331f},{-0.957369f,-0.125853f,-0.260012f},{-0.963451f,-0.131077f,-0.233625f}, - {-0.968838f,-0.135704f,-0.207214f},{-0.977561f,-0.143196f,-0.154497f},{-0.980921f,-0.146082f,-0.128274f}, - {-0.983632f,-0.14841f,-0.102193f},{-0.226448f,0.12999f,-0.96531f},{-0.248879f,0.110725f,-0.962185f}, - {-0.271464f,0.0913273f,-0.958106f},{-0.294173f,0.0718231f,-0.95305f},{-0.316971f,0.0522418f,-0.946995f}, - {-0.339824f,0.0326136f,-0.939923f},{-0.362695f,0.0129701f,-0.931817f},{-0.385546f,-0.00665603f,-0.922665f}, - {-0.408337f,-0.0262307f,-0.912454f},{-0.431028f,-0.0457197f,-0.901179f},{-0.453578f,-0.065087f,-0.888837f}, - {-0.519956f,-0.122098f,-0.845422f},{-0.541517f,-0.140616f,-0.828846f},{-0.562725f,-0.158831f,-0.811242f}, - {-0.583538f,-0.176707f,-0.792627f},{-0.603915f,-0.194209f,-0.773026f},{-0.460322f,-0.395362f,-0.794854f}, - {-0.643204f,-0.227954f,-0.730976f},{-0.662041f,-0.244132f,-0.708591f},{-0.680291f,-0.259807f,-0.68535f}, - {-0.697922f,-0.27495f,-0.661292f},{-0.714903f,-0.289535f,-0.636461f},{-0.761673f,-0.329704f,-0.557808f}, - {-0.775794f,-0.341832f,-0.530373f},{-0.789149f,-0.353302f,-0.502416f},{-0.801723f,-0.364102f,-0.473994f}, - {-0.813504f,-0.374221f,-0.445162f},{-0.674899f,-0.579658f,-0.456627f},{-0.834658f,-0.392389f,-0.386494f}, - {-0.844021f,-0.400431f,-0.356769f},{-0.852574f,-0.407777f,-0.326857f},{-0.860319f,-0.41443f,-0.296814f}, - {-0.867263f,-0.420393f,-0.266692f},{-0.873412f,-0.425675f,-0.236543f},{-0.878777f,-0.430282f,-0.206418f}, - {-0.88337f,-0.434227f,-0.176364f},{-0.887205f,-0.437522f,-0.146429f},{-0.8903f,-0.440179f,-0.116657f}, - {-0.892671f,-0.442216f,-0.0870897f},{-0.894338f,-0.443647f,-0.0577667f},{-0.0673617f,-0.0578556f,-0.99605f}, - {-0.0897231f,-0.0770615f,-0.992981f},{-0.112006f,-0.0961995f,-0.98904f},{-0.13419f,-0.115254f,-0.98423f}, - {-0.156257f,-0.134206f,-0.978556f},{-0.178186f,-0.153041f,-0.972023f},{-0.199959f,-0.171741f,-0.964635f}, - {-0.221556f,-0.19029f,-0.956401f},{-0.242959f,-0.208673f,-0.947326f},{-0.264148f,-0.226872f,-0.937419f}, - {-0.285105f,-0.244871f,-0.926689f},{-0.305812f,-0.262656f,-0.915145f},{-0.32625f,-0.28021f,-0.902798f}, - {-0.366249f,-0.314564f,-0.875734f},{-0.385775f,-0.331335f,-0.861043f},{-0.404961f,-0.347814f,-0.845596f}, - {-0.423793f,-0.363987f,-0.829405f},{-0.442252f,-0.379842f,-0.812486f},{-0.477988f,-0.410535f,-0.776523f}, - {-0.495234f,-0.425347f,-0.757511f},{-0.512046f,-0.439786f,-0.737833f},{-0.528407f,-0.453839f,-0.717507f}, - {-0.544305f,-0.467493f,-0.696551f},{-0.559724f,-0.480737f,-0.674982f},{-0.574652f,-0.493558f,-0.652821f}, - {-0.589075f,-0.505946f,-0.630087f},{-0.616357f,-0.529378f,-0.582978f},{-0.629192f,-0.540401f,-0.558645f}, - {-0.641474f,-0.55095f,-0.533822f},{-0.653193f,-0.561015f,-0.508529f},{-0.664337f,-0.570587f,-0.48279f}, - {-0.684867f,-0.58822f,-0.430063f},{-0.694234f,-0.596265f,-0.403122f},{-0.702992f,-0.603786f,-0.375826f}, - {-0.711132f,-0.610777f,-0.3482f},{-0.718647f,-0.617232f,-0.320268f},{-0.725531f,-0.623145f,-0.292055f}, - {-0.731777f,-0.62851f,-0.263585f},{-0.737381f,-0.633323f,-0.234884f},{-0.742338f,-0.63758f,-0.205977f}, - {-0.746642f,-0.641277f,-0.176888f},{-0.750291f,-0.64441f,-0.147645f},{-0.75328f,-0.646978f,-0.118272f}, - {-0.755608f,-0.648978f,-0.0887941f},{-0.757272f,-0.650407f,-0.0592391f},{-0.758272f,-0.651265f,-0.0296323f}, - {-0.742338f,-0.63758f,0.205977f},{-0.88337f,-0.434227f,0.176364f},{-0.878777f,-0.430282f,0.206418f}, - {-0.844021f,-0.400431f,0.356769f},{-0.702992f,-0.603786f,0.375826f},{-0.711132f,-0.610777f,0.3482f}, - {-0.8903f,-0.440179f,0.116657f},{-0.892671f,-0.442216f,0.0870897f},{-0.983632f,-0.14841f,0.102193f}, - {-0.750291f,-0.64441f,0.147645f},{-0.75328f,-0.646978f,0.118272f},{-0.976204f,0.216125f,0.0177823f}, - {-0.943289f,0.331972f,3.41808e-016f},{-0.80211f,0.597142f,0.00650572f},{-0.974563f,0.217534f,0.0539127f}, - {-0.973095f,0.218795f,0.0722163f},{-0.985709f,-0.150194f,0.0762915f},{-0.46921f,0.883063f,-0.00650572f}, - {-0.184979f,0.982742f,-4.69192e-016f},{-0.0662783f,0.997643f,-0.0177823f},{-0.801509f,0.597657f,0.0197241f}, - {-0.800972f,0.598118f,0.0264206f},{0.574558f,0.81796f,-0.0287252f},{0.573574f,0.817114f,-0.0577667f}, - {0.2996f,0.953733f,-0.0251636f},{0.0755427f,0.997143f,-5.50975e-016f},{0.758605f,0.651551f,-9.3359e-016f}, - {0.564043f,0.825745f,-3.00566e-016f},{0.757272f,0.650407f,-0.0592414f},{-0.887205f,-0.437522f,0.146429f}, - {-0.746642f,-0.641277f,0.176888f},{0.758271f,0.651265f,-0.0296337f},{-0.731777f,-0.62851f,0.263585f}, - {-0.873412f,-0.425675f,0.236543f},{-0.867263f,-0.420393f,0.266692f},{-0.737381f,-0.633323f,0.234884f}, - {-0.860319f,-0.41443f,0.296814f},{-0.725531f,-0.623145f,0.292055f},{-0.852574f,-0.407777f,0.326857f}, - {-0.718647f,-0.617232f,0.320268f},{-0.834658f,-0.392389f,0.386494f},{-0.694234f,-0.596265f,0.403122f}, - {-0.813504f,-0.374221f,0.445162f},{-0.801723f,-0.364102f,0.473994f},{-0.664337f,-0.570587f,0.48279f}, - {-0.824484f,-0.383652f,0.415977f},{-0.629192f,-0.540401f,0.558645f},{-0.641474f,-0.55095f,0.533822f}, - {-0.775794f,-0.341832f,0.530373f},{-0.653193f,-0.561015f,0.508529f},{-0.602981f,-0.517889f,0.606799f}, - {-0.746803f,-0.316933f,0.58467f},{-0.731206f,-0.303536f,0.610904f},{-0.761673f,-0.329704f,0.557808f}, - {-0.559724f,-0.480737f,0.674982f},{-0.697922f,-0.27495f,0.661292f},{-0.544305f,-0.467493f,0.696551f}, - {-0.714903f,-0.289535f,0.636461f},{-0.495234f,-0.425347f,0.757511f},{-0.512046f,-0.439786f,0.737833f}, - {-0.643204f,-0.227954f,0.730976f},{-0.528407f,-0.453839f,0.717507f},{-0.662041f,-0.244132f,0.708591f}, - {-0.442252f,-0.379842f,0.812486f},{-0.603915f,-0.194209f,0.773026f},{-0.583538f,-0.176707f,0.792627f}, - {-0.623817f,-0.211302f,0.752465f},{-0.541517f,-0.140616f,0.828846f},{-0.385775f,-0.331335f,0.861043f}, - {-0.404961f,-0.347814f,0.845596f},{-0.423793f,-0.363987f,0.829405f},{-0.32625f,-0.28021f,0.902798f}, - {-0.346402f,-0.297518f,0.889657f},{-0.475944f,-0.0842968f,0.875426f},{-0.519956f,-0.122098f,0.845422f}, - {-0.453578f,-0.065087f,0.888837f},{-0.285105f,-0.244871f,0.926689f},{-0.305812f,-0.262656f,0.915145f}, - {-0.385546f,-0.00665599f,0.922665f},{-0.242959f,-0.208673f,0.947326f},{-0.408337f,-0.0262308f,0.912454f}, - {-0.264148f,-0.226872f,0.937419f},{-0.431028f,-0.0457197f,0.901179f},{-0.199959f,-0.171741f,0.964635f}, - {-0.362695f,0.0129701f,0.931817f},{-0.339824f,0.0326136f,0.939923f},{-0.221556f,-0.19029f,0.956401f}, - {-0.156257f,-0.134206f,0.978556f},{-0.316971f,0.0522418f,0.946995f},{-0.294173f,0.0718231f,0.95305f}, - {-0.178186f,-0.153041f,0.972023f},{-0.112006f,-0.0961995f,0.98904f},{-0.13419f,-0.115254f,0.98423f}, - {-0.271464f,0.0913273f,0.958106f},{-0.650623f,0.727251f,0.218624f},{-0.562139f,0.571757f,0.597573f}, - {-0.576025f,0.559831f,0.595638f},{-0.182173f,0.168017f,0.968805f},{-0.0449408f,-0.0385988f,0.998244f}, - {-0.204204f,0.149095f,0.967508f},{-0.0224803f,-0.0193079f,0.999561f},{-0.226448f,0.12999f,0.96531f}, - {-0.248878f,0.110725f,0.962185f},{-0.402091f,0.351064f,0.845622f},{-0.0673616f,-0.0578556f,0.99605f}, - {-0.0897231f,-0.0770615f,0.992981f},{-0.48139f,0.282956f,0.829578f},{-0.604064f,0.535749f,0.589983f}, - {-0.461418f,0.30011f,0.834882f},{-0.655702f,0.722888f,0.217917f},{-0.42174f,0.334188f,0.842884f}, - {-0.620697f,0.752953f,-0.218624f},{-0.625735f,0.748626f,-0.219122f},{-0.645585f,0.731578f,0.219122f}, - {-0.286341f,0.45048f,-0.845622f},{-0.305827f,0.433744f,-0.847547f},{-0.480343f,0.642011f,-0.597573f}, - {-0.432488f,0.503548f,-0.747926f},{-0.507751f,0.61847f,-0.599737f},{-0.325127f,0.417168f,-0.848684f}, - {-0.138591f,0.205449f,-0.968805f},{-0.304133f,0.354104f,-0.884372f},{-0.155494f,0.181042f,-0.971105f}, - {0.0224791f,0.019307f,-0.999561f},{-2.50764e-009f,2.91966e-009f,1.0f},{-0.155937f,0.181559f,0.970938f}, - {-0.521445f,0.248554f,0.816282f},{-0.562725f,-0.158831f,0.811242f},{-0.366249f,-0.314564f,0.875734f}, - {-0.498084f,-0.103313f,0.860952f},{-0.678094f,0.11401f,0.726078f},{-0.460322f,-0.395362f,0.794854f}, - {-0.477988f,-0.410535f,0.776523f},{-0.680291f,-0.259807f,0.68535f},{-0.574652f,-0.493558f,0.652821f}, - {-0.783674f,0.0233295f,0.620733f},{-0.831792f,0.340158f,0.438652f},{-0.820131f,0.350173f,0.452509f}, - {-0.589075f,-0.505946f,0.630087f},{-0.616357f,-0.529378f,0.582978f},{-0.674899f,-0.579658f,0.456627f}, - {-0.684867f,-0.58822f,0.430063f},{-0.789149f,-0.353302f,0.502416f},{-0.884264f,0.29509f,0.361938f}, - {-0.870953f,-0.0516324f,0.488646f},{-0.893469f,0.287184f,0.34531f},{-0.950583f,-0.120025f,0.286331f}, - {-0.755608f,-0.648978f,0.0887942f},{-0.651551f,0.758605f,1.22271e-018f},{-0.757272f,-0.650407f,0.059239f}, - {-0.894338f,-0.443647f,0.0577667f},{-0.988031f,-0.152189f,0.0251636f},{-0.997238f,0.0742779f,5.00783e-016f}, - {-0.758272f,-0.651265f,0.0296322f},{-0.895322f,-0.444493f,0.0287252f},{-0.901253f,-0.433294f,6.47993e-016f}, - {-0.983078f,-0.183188f,6.55067e-016f},{-0.758605f,-0.651551f,9.4456e-016f},{-0.825457f,0.564465f,2.60919e-016f}, - {-0.433008f,0.90139f,-2.0282e-016f},{-0.987169f,-0.151448f,0.0506042f},{-0.980921f,-0.146082f,0.128274f}, - {-0.977561f,-0.143196f,0.154497f},{-0.973538f,-0.13974f,0.180824f},{-0.968838f,-0.135704f,0.207214f}, - {-0.963451f,-0.131077f,0.233625f},{-0.957369f,-0.125853f,0.260012f},{-0.944446f,0.243401f,0.220857f}, - {-0.93865f,0.248379f,0.239258f},{-0.943091f,-0.11359f,0.312533f},{-0.934889f,-0.106546f,0.338573f}, - {-0.925977f,-0.0988913f,0.3644f},{-0.916358f,-0.0906299f,0.389967f},{-0.906037f,-0.0817656f,0.415224f}, - {-0.895022f,-0.072305f,0.440122f},{-0.883323f,-0.0622569f,0.464612f},{-0.857927f,-0.0404447f,0.512177f}, - {-0.844263f,-0.0287093f,0.535159f},{-0.829983f,-0.0164437f,0.557547f},{-0.815107f,-0.00366744f,0.579299f}, - {-0.799662f,0.00959806f,0.600374f},{-0.767173f,0.0375019f,0.640343f},{-0.75019f,0.0520888f,0.659168f}, - {-0.732756f,0.0670627f,0.677179f},{-0.714905f,0.0823943f,0.69435f},{-0.696673f,0.0980537f,0.710657f}, - {-0.707128f,0.678719f,0.198267f},{-0.730295f,0.427331f,0.53297f},{-0.712143f,0.674412f,0.194989f}, - {-0.659207f,0.130232f,0.740598f},{-0.640047f,0.146689f,0.754203f},{-0.620651f,0.163347f,0.766883f}, - {-0.601058f,0.180175f,0.778631f},{-0.581305f,0.197141f,0.789443f},{-0.561427f,0.214213f,0.79932f}, - {-0.541462f,0.231361f,0.808264f},{-0.501409f,0.265762f,0.823383f},{-0.618177f,0.523627f,0.586235f}, - {-0.441525f,0.317195f,0.839311f},{-0.382604f,0.367801f,0.847547f},{-0.363305f,0.384377f,0.848684f}, - {-0.29793f,0.346881f,0.889332f},{0.298738f,0.952993f,-0.0506042f},{-0.975595f,0.216648f,0.0357603f}, - {-0.971179f,0.22044f,0.0906467f},{-0.968805f,0.222479f,0.109178f},{-0.965962f,0.224921f,0.127782f}, - {-0.962641f,0.227774f,0.146431f},{-0.958834f,0.231043f,0.165095f},{-0.954536f,0.234735f,0.183742f}, - {-0.949741f,0.238853f,0.20234f},{-0.932352f,0.253788f,0.25751f},{-0.786066f,0.610921f,0.0942108f}, - {-0.783579f,0.613057f,0.100821f},{-0.925555f,0.259626f,0.275577f},{-0.918261f,0.26589f,0.293425f}, - {-0.910478f,0.272576f,0.31102f},{-0.90221f,0.279676f,0.328326f},{-0.761248f,0.632237f,0.144146f}, - {-0.510071f,0.847968f,-0.144146f},{-0.513917f,0.844665f,-0.14977f},{-0.874608f,0.303383f,0.378179f}, - {-0.864516f,0.312051f,0.394f},{-0.854004f,0.32108f,0.409371f},{-0.84309f,0.330454f,0.424264f}, - {-0.736111f,0.653826f,0.175076f},{-0.535208f,0.826378f,-0.175076f},{-0.539823f,0.822414f,-0.179515f}, - {-0.808129f,0.360481f,0.465812f},{-0.795809f,0.371062f,0.47854f},{-0.783195f,0.381897f,0.490674f}, - {-0.770311f,0.392963f,0.502197f},{-0.757182f,0.404239f,0.513095f},{-0.743835f,0.415702f,0.523356f}, - {-0.716589f,0.439103f,0.541931f},{-0.702743f,0.450995f,0.550232f},{-0.688784f,0.462984f,0.557873f}, - {-0.674737f,0.475049f,0.564853f},{-0.660628f,0.487166f,0.571173f},{-0.646483f,0.499316f,0.576839f}, - {-0.632324f,0.511476f,0.581857f},{-0.590006f,0.547823f,0.593113f},{-0.630724f,0.744341f,-0.219416f}, - {-0.548369f,0.583584f,0.598933f},{-0.534731f,0.595298f,0.599736f},{-0.431242f,0.502097f,0.749619f}, - {-0.800271f,0.59872f,0.0331634f},{-0.801887f,0.597333f,0.0130831f},{-0.799403f,0.599466f,0.0399431f}, - {-0.471917f,0.880738f,-0.0399431f},{-0.472957f,0.879844f,-0.0467496f},{-0.798362f,0.60036f,0.0467496f}, - {-0.797147f,0.601403f,0.0535724f},{-0.795755f,0.602599f,0.0604006f},{-0.794182f,0.60395f,0.0672227f}, - {-0.792428f,0.605457f,0.0740269f},{-0.790491f,0.607121f,0.0808012f},{-0.78837f,0.608942f,0.0875334f}, - {-0.780911f,0.615348f,0.107351f},{-0.490408f,0.864856f,-0.107351f},{-0.493256f,0.86241f,-0.113788f}, - {-0.778063f,0.617794f,0.113788f},{-0.775039f,0.620392f,0.120119f},{-0.771841f,0.623139f,0.126333f}, - {-0.768473f,0.626031f,0.132417f},{-0.76494f,0.629065f,0.138358f},{-0.757402f,0.63554f,0.14977f}, - {-0.753409f,0.638969f,0.155219f},{-0.749276f,0.642519f,0.160482f},{-0.74501f,0.646183f,0.165552f}, - {-0.740619f,0.649955f,0.170419f},{-0.731497f,0.65779f,0.179515f},{-0.726783f,0.661838f,0.183731f}, - {-0.72198f,0.665964f,0.187718f},{-0.717096f,0.670158f,0.191472f},{-0.702063f,0.68307f,0.201304f}, - {-0.569257f,0.797135f,-0.201304f},{-0.574363f,0.792748f,-0.2041f},{-0.696956f,0.687456f,0.2041f}, - {-0.691817f,0.69187f,0.206653f},{-0.686655f,0.696303f,0.208966f},{-0.68148f,0.700748f,0.211039f}, - {-0.6763f,0.705197f,0.212875f},{-0.671124f,0.709642f,0.214476f},{-0.665961f,0.714077f,0.215848f}, - {-0.660818f,0.718494f,0.216993f},{-0.640595f,0.735863f,0.219416f},{-0.646863f,0.753146f,-0.119748f}, - {-0.646762f,0.753028f,0.121027f},{-0.609092f,0.70917f,0.355084f},{-0.536047f,0.624123f,0.56844f}, - {-0.46981f,0.882547f,-0.0197242f},{-0.470347f,0.882086f,-0.0264206f},{-0.469433f,0.882871f,-0.013083f}, - {-0.471048f,0.881484f,-0.0331634f},{-0.474172f,0.878801f,-0.0535725f},{-0.475565f,0.877605f,-0.0604006f}, - {-0.477137f,0.876254f,-0.0672226f},{-0.0879462f,0.979032f,-0.183742f},{-0.0927413f,0.974914f,-0.20234f}, - {-0.478891f,0.874747f,-0.074027f},{-0.480829f,0.873084f,-0.0808012f},{-0.482949f,0.871262f,-0.0875334f}, - {-0.485253f,0.869283f,-0.0942108f},{-0.48774f,0.867147f,-0.100821f},{-0.496281f,0.859812f,-0.120119f}, - {-0.140272f,0.934091f,-0.328326f},{-0.149013f,0.926583f,-0.34531f},{-0.499479f,0.857065f,-0.126333f}, - {-0.502847f,0.854173f,-0.132416f},{-0.506379f,0.851139f,-0.138358f},{-0.51791f,0.841235f,-0.155219f}, - {-0.199392f,0.883313f,-0.424264f},{-0.21069f,0.87361f,-0.438652f},{-0.522044f,0.837685f,-0.160482f}, - {-0.52631f,0.834021f,-0.165552f},{-0.530701f,0.830249f,-0.170419f},{-0.544537f,0.818366f,-0.183731f}, - {-0.272171f,0.820805f,-0.502197f},{-0.2853f,0.809529f,-0.513095f},{-0.54934f,0.814241f,-0.187718f}, - {-0.554223f,0.810046f,-0.191472f},{-0.559177f,0.805792f,-0.194989f},{-0.564191f,0.801485f,-0.198267f}, - {-0.579503f,0.788334f,-0.206653f},{-0.584664f,0.783901f,-0.208966f},{-0.381854f,0.726601f,-0.571173f}, - {-0.395999f,0.714451f,-0.576839f},{-0.58984f,0.779456f,-0.211039f},{-0.595019f,0.775007f,-0.212874f}, - {-0.600195f,0.770562f,-0.214476f},{-0.605359f,0.766127f,-0.215847f},{-0.610502f,0.76171f,-0.216993f}, - {-0.615617f,0.757316f,-0.217917f},{-0.0679193f,0.996233f,-0.0539127f},{-0.069387f,0.994972f,-0.0722163f}, - {-0.0668873f,0.997119f,-0.0357603f},{-0.0713025f,0.993327f,-0.0906467f},{-0.0736771f,0.991288f,-0.109178f}, - {-0.0765202f,0.988846f,-0.127782f},{-0.0798413f,0.985994f,-0.146431f},{-0.0836479f,0.982724f,-0.165095f}, - {-0.0980359f,0.970367f,-0.220857f},{0.246457f,0.90809f,-0.338573f},{-0.103832f,0.965388f,-0.239258f}, - {-0.11013f,0.959979f,-0.25751f},{-0.116927f,0.954141f,-0.275577f},{-0.124221f,0.947877f,-0.293425f}, - {-0.132004f,0.941192f,-0.31102f},{0.169495f,0.841989f,-0.512177f},{-0.158218f,0.918677f,-0.361938f}, - {-0.167874f,0.910384f,-0.378179f},{-0.177966f,0.901716f,-0.394f},{-0.188478f,0.892688f,-0.409371f}, - {0.078742f,0.764043f,-0.640343f},{-0.222351f,0.863595f,-0.452509f},{-0.234353f,0.853287f,-0.465812f}, - {-0.246673f,0.842705f,-0.47854f},{-0.259287f,0.831871f,-0.490674f},{-0.0292248f,0.671312f,-0.740598f}, - {-0.298647f,0.798065f,-0.523356f},{-0.312187f,0.786436f,-0.53297f},{-0.325893f,0.774664f,-0.541931f}, - {-0.339739f,0.762773f,-0.550232f},{-0.353698f,0.750783f,-0.557873f},{-0.367745f,0.738719f,-0.564853f}, - {-0.410157f,0.702291f,-0.581857f},{-0.207042f,0.518588f,-0.829578f},{-0.424305f,0.69014f,-0.586235f}, - {-0.438418f,0.678019f,-0.589983f},{-0.452476f,0.665945f,-0.593113f},{-0.466457f,0.653936f,-0.595638f}, - {-0.494113f,0.630183f,-0.598933f},{-0.609586f,0.709744f,-0.353084f},{0.339059f,0.940765f,-6.77795e-016f}, - {0.297277f,0.951738f,-0.0762915f},{0.2952f,0.949954f,-0.102193f},{0.29249f,0.947626f,-0.128274f}, - {0.28913f,0.944741f,-0.154497f},{0.285106f,0.941285f,-0.180824f},{0.280406f,0.937248f,-0.207214f}, - {0.27502f,0.932622f,-0.233625f},{0.268937f,0.927398f,-0.260012f},{0.262152f,0.92157f,-0.286331f}, - {0.254659f,0.915135f,-0.312533f},{0.503721f,0.757119f,-0.415977f},{0.674898f,0.579657f,-0.45663f}, - {0.492741f,0.747688f,-0.445162f},{0.237545f,0.900436f,-0.3644f},{0.227927f,0.892174f,-0.389967f}, - {0.217606f,0.88331f,-0.415224f},{0.206591f,0.87385f,-0.440122f},{0.194892f,0.863801f,-0.464612f}, - {0.182522f,0.853177f,-0.488646f},{0.155832f,0.830254f,-0.535159f},{0.410442f,0.677003f,-0.610904f}, - {0.141551f,0.817988f,-0.557547f},{0.126675f,0.805212f,-0.579299f},{0.111231f,0.791946f,-0.600374f}, - {0.095243f,0.778215f,-0.620733f},{0.303053f,0.584769f,-0.752465f},{0.46032f,0.39536f,-0.794856f}, - {0.283151f,0.567676f,-0.773026f},{0.0617581f,0.749456f,-0.659168f},{0.0443242f,0.734482f,-0.677179f}, - {0.0264735f,0.71915f,-0.69435f},{0.008241f,0.703491f,-0.710657f},{-0.0103371f,0.687534f,-0.726078f}, - {-0.048385f,0.654856f,-0.754203f},{0.15518f,0.457764f,-0.875426f},{-0.06778f,0.638198f,-0.766883f}, - {-0.0873729f,0.62137f,-0.778631f},{-0.107127f,0.604404f,-0.789443f},{-0.127004f,0.587331f,-0.79932f}, - {-0.146969f,0.570183f,-0.808264f},{-0.166987f,0.552991f,-0.816282f},{-0.187022f,0.535783f,-0.823383f}, - {-0.227014f,0.501435f,-0.834882f},{-0.246907f,0.484349f,-0.839311f},{-0.266692f,0.467356f,-0.842884f}, - {-0.536319f,0.624439f,-0.567836f},{0.571907f,0.815682f,-0.0870897f},{0.569536f,0.813646f,-0.116657f}, - {0.566442f,0.810988f,-0.146429f},{0.562606f,0.807694f,-0.176364f},{0.558013f,0.803749f,-0.206418f}, - {0.552648f,0.799142f,-0.236543f},{0.546499f,0.79386f,-0.266692f},{0.539556f,0.787897f,-0.296814f}, - {0.53181f,0.781244f,-0.326857f},{0.523257f,0.773898f,-0.356769f},{0.513894f,0.765856f,-0.386494f}, - {0.480959f,0.737569f,-0.473994f},{0.468385f,0.726769f,-0.502416f},{0.45503f,0.715299f,-0.530373f}, - {0.440909f,0.703171f,-0.557808f},{0.426039f,0.6904f,-0.58467f},{0.60298f,0.517888f,-0.606801f}, - {0.39414f,0.663001f,-0.636461f},{0.377159f,0.648417f,-0.661292f},{0.359528f,0.633274f,-0.68535f}, - {0.341277f,0.617599f,-0.708591f},{0.322441f,0.601421f,-0.730976f},{0.262774f,0.550174f,-0.792627f}, - {0.241961f,0.532298f,-0.811242f},{0.220753f,0.514083f,-0.828846f},{0.199192f,0.495565f,-0.845422f}, - {0.17732f,0.47678f,-0.860952f},{0.346399f,0.297516f,-0.889658f},{0.132814f,0.438554f,-0.888837f}, - {0.110265f,0.419187f,-0.901179f},{0.0875737f,0.399698f,-0.912454f},{0.0647825f,0.380123f,-0.922664f}, - {0.0419318f,0.360497f,-0.931817f},{0.0190608f,0.340853f,-0.939923f},{-0.00379256f,0.321225f,-0.946995f}, - {-0.0265911f,0.301644f,-0.95305f},{-0.0493f,0.28214f,-0.958106f},{-0.0718851f,0.262741f,-0.962185f}, - {-0.0943152f,0.243477f,-0.96531f},{-0.11656f,0.224371f,-0.967508f},{0.755608f,0.648978f,-0.0887968f}, - {0.75328f,0.646978f,-0.118274f},{0.75029f,0.64441f,-0.147647f},{0.746642f,0.641277f,-0.176891f}, - {0.742337f,0.63758f,-0.205979f},{0.737381f,0.633323f,-0.234887f},{0.731777f,0.628509f,-0.263588f}, - {0.72553f,0.623144f,-0.292057f},{0.718646f,0.617231f,-0.320271f},{0.711131f,0.610777f,-0.348202f}, - {0.702991f,0.603786f,-0.375828f},{0.694233f,0.596264f,-0.403124f},{0.684866f,0.588219f,-0.430066f}, - {0.664336f,0.570586f,-0.482793f},{0.653191f,0.561014f,-0.508532f},{0.641473f,0.550949f,-0.533824f}, - {0.629191f,0.5404f,-0.558647f},{0.616356f,0.529376f,-0.58298f},{0.589074f,0.505945f,-0.630088f}, - {0.574651f,0.493557f,-0.652822f},{0.559724f,0.480736f,-0.674983f},{0.544304f,0.467493f,-0.696551f}, - {0.528407f,0.453838f,-0.717508f},{0.512045f,0.439786f,-0.737834f},{0.495233f,0.425347f,-0.757512f}, - {0.477987f,0.410534f,-0.776525f},{0.44225f,0.37984f,-0.812488f},{0.423791f,0.363986f,-0.829407f}, - {0.40496f,0.347812f,-0.845597f},{0.385773f,0.331333f,-0.861045f},{0.366247f,0.314563f,-0.875736f}, - {0.326248f,0.280208f,-0.902799f},{0.30581f,0.262654f,-0.915146f},{0.285103f,0.24487f,-0.92669f}, - {0.264146f,0.22687f,-0.93742f},{0.242957f,0.208671f,-0.947327f},{0.221554f,0.190289f,-0.956402f}, - {0.199957f,0.171739f,-0.964636f},{0.178184f,0.153039f,-0.972023f},{0.156255f,0.134204f,-0.978557f}, - {0.134188f,0.115252f,-0.984231f},{0.112004f,0.0961983f,-0.98904f},{0.0897214f,0.07706f,-0.992981f}, - {0.0673596f,0.0578539f,-0.99605f},{0.044939f,0.0385973f,-0.998244f},{0.775794f,0.341832f,-0.530373f}, - {0.761673f,0.329704f,-0.557808f},{0.629192f,0.540401f,-0.558645f},{0.641474f,0.55095f,-0.533822f}, - {0.76494f,-0.629065f,-0.138358f},{0.864516f,-0.312051f,-0.394f},{0.874608f,-0.303383f,-0.378179f}, - {0.801723f,0.364102f,-0.473994f},{0.653193f,0.561015f,-0.508529f},{0.664337f,0.570587f,-0.48279f}, - {0.789149f,0.353302f,-0.502416f},{0.674899f,0.579658f,-0.456627f},{0.684867f,0.58822f,-0.430063f}, - {0.824484f,0.383652f,-0.415977f},{0.813504f,0.374221f,-0.445162f},{0.694234f,0.596265f,-0.403122f}, - {0.834658f,0.392389f,-0.386494f},{0.844021f,0.400431f,-0.356769f},{0.702992f,0.603786f,-0.375826f}, - {0.711132f,0.610777f,-0.3482f},{0.852574f,0.407777f,-0.326857f},{0.932352f,-0.253788f,-0.25751f}, - {0.925977f,0.0988914f,-0.3644f},{0.93865f,-0.248379f,-0.239258f},{0.860319f,0.41443f,-0.296814f}, - {0.718647f,0.617232f,-0.320268f},{0.725531f,0.623145f,-0.292055f},{0.867263f,0.420393f,-0.266692f}, - {0.731777f,0.62851f,-0.263585f},{0.873412f,0.425675f,-0.236543f},{0.878777f,0.430282f,-0.206418f}, - {0.742338f,0.63758f,-0.205977f},{0.88337f,0.434227f,-0.176364f},{0.737381f,0.633323f,-0.234884f}, - {0.746642f,0.641277f,-0.176888f},{0.887205f,0.437522f,-0.146429f},{0.750291f,0.64441f,-0.147645f}, - {0.8903f,0.440179f,-0.116657f},{0.75328f,0.646978f,-0.118272f},{0.892671f,0.442216f,-0.0870897f}, - {0.985709f,0.150194f,-0.0762915f},{0.983632f,0.14841f,-0.102193f},{-0.758272f,-0.651265f,0.0296337f}, - {-0.574558f,-0.81796f,0.0287252f},{-0.2996f,-0.953733f,0.0251636f},{0.0662783f,-0.997643f,0.0177823f}, - {-0.0755427f,-0.997143f,4.44435e-016f},{-0.564043f,-0.825745f,3.04136e-016f},{-0.573574f,-0.817114f,0.0577667f}, - {-0.571907f,-0.815682f,0.0870897f},{-0.297277f,-0.951738f,0.0762915f},{0.755608f,0.648978f,-0.0887942f}, - {0.974563f,-0.217534f,-0.0539127f},{0.973095f,-0.218795f,-0.0722163f},{0.800972f,-0.598118f,-0.0264206f}, - {0.971179f,-0.22044f,-0.0906467f},{0.801509f,-0.597657f,-0.0197242f},{0.757272f,0.650407f,-0.059239f}, - {0.894338f,0.443647f,-0.0577667f},{0.997238f,-0.0742779f,-4.48371e-016f},{0.976204f,-0.216125f,-0.0177823f}, - {0.988031f,0.152189f,-0.0251636f},{0.943289f,-0.331972f,-4.29587e-016f},{0.80211f,-0.597142f,-0.00650572f}, - {0.825457f,-0.564465f,-3.05233e-016f},{0.983078f,0.183188f,-6.14496e-016f},{0.895322f,0.444493f,-0.0287252f}, - {0.901253f,0.433294f,-9.46059e-016f},{0.758272f,0.651265f,-0.0296322f},{0.46921f,-0.883063f,0.00650572f}, - {0.184979f,-0.982742f,5.48296e-016f},{0.616357f,0.529378f,-0.582978f},{0.602981f,0.517889f,-0.606799f}, - {0.746803f,0.316933f,-0.58467f},{0.731206f,0.303536f,-0.610904f},{0.589075f,0.505946f,-0.630087f}, - {0.574652f,0.493558f,-0.652821f},{0.714903f,0.289535f,-0.636461f},{0.697922f,0.27495f,-0.661292f}, - {0.559724f,0.480737f,-0.674982f},{0.544305f,0.467493f,-0.696551f},{0.680291f,0.259807f,-0.68535f}, - {0.528407f,0.453839f,-0.717507f},{0.662041f,0.244132f,-0.708591f},{0.75019f,-0.0520889f,-0.659168f}, - {0.820131f,-0.350173f,-0.452509f},{0.808129f,-0.360481f,-0.465812f},{0.643204f,0.227954f,-0.730976f}, - {0.512046f,0.439786f,-0.737833f},{0.623817f,0.211302f,-0.752465f},{0.495234f,0.425347f,-0.757511f}, - {0.460322f,0.395362f,-0.794854f},{0.477988f,0.410535f,-0.776523f},{0.603915f,0.194209f,-0.773026f}, - {0.442252f,0.379842f,-0.812486f},{0.583538f,0.176707f,-0.792627f},{0.423793f,0.363987f,-0.829405f}, - {0.404961f,0.347814f,-0.845596f},{0.562725f,0.158831f,-0.811242f},{0.541517f,0.140616f,-0.828846f}, - {0.385775f,0.331335f,-0.861043f},{0.519956f,0.122098f,-0.845422f},{0.716589f,-0.439103f,-0.541931f}, - {0.707128f,-0.678719f,-0.198267f},{0.702743f,-0.450995f,-0.550232f},{0.366249f,0.314564f,-0.875734f}, - {0.498084f,0.103313f,-0.860952f},{0.475944f,0.0842968f,-0.875426f},{0.346402f,0.297518f,-0.889657f}, - {0.32625f,0.28021f,-0.902798f},{0.305812f,0.262656f,-0.915145f},{0.285105f,0.244871f,-0.926689f}, - {0.453578f,0.065087f,-0.888837f},{0.431028f,0.0457196f,-0.901179f},{0.264148f,0.226872f,-0.937419f}, - {0.408337f,0.0262308f,-0.912454f},{0.242959f,0.208673f,-0.947326f},{0.221556f,0.19029f,-0.956401f}, - {0.385546f,0.00665601f,-0.922665f},{0.362695f,-0.0129701f,-0.931817f},{0.199959f,0.171741f,-0.964635f}, - {0.339824f,-0.0326136f,-0.939923f},{0.48139f,-0.282956f,-0.829578f},{0.316971f,-0.0522418f,-0.946995f}, - {0.501409f,-0.265762f,-0.823383f},{0.178186f,0.153041f,-0.972023f},{0.294173f,-0.0718231f,-0.95305f}, - {0.156257f,0.134206f,-0.978556f},{0.248878f,-0.110725f,-0.962185f},{0.441525f,-0.317195f,-0.839311f}, - {0.42174f,-0.334188f,-0.842884f},{0.13419f,0.115253f,-0.98423f},{0.650623f,-0.727251f,-0.218624f}, - {0.620697f,-0.752953f,0.218624f},{0.645585f,-0.731578f,-0.219122f},{0.665961f,-0.714077f,-0.215848f}, - {0.660818f,-0.718494f,-0.216993f},{0.590006f,-0.547823f,-0.593113f},{0.286341f,-0.45048f,0.845622f}, - {0.480343f,-0.642011f,0.597573f},{0.266692f,-0.467356f,0.842884f},{0.325127f,-0.417168f,0.848684f}, - {0.432488f,-0.503548f,0.747926f},{0.507751f,-0.61847f,0.599737f},{0.548369f,-0.583584f,-0.598933f}, - {0.562139f,-0.571757f,-0.597573f},{0.304133f,-0.354104f,0.884372f},{0.138591f,-0.205449f,0.968805f}, - {0.155494f,-0.181043f,0.971105f},{0.576025f,-0.559831f,-0.595638f},{0.655703f,-0.722888f,-0.217916f}, - {0.382604f,-0.367801f,-0.847547f},{0.402091f,-0.351064f,-0.845622f},{-0.0224792f,-0.0193069f,0.999561f}, - {0.271464f,-0.0913273f,-0.958106f},{0.112006f,0.0961995f,-0.98904f},{0.0897231f,0.0770615f,-0.992981f}, - {0.226448f,-0.12999f,-0.96531f},{0.204204f,-0.149095f,-0.967508f},{0.0673616f,0.0578556f,-0.99605f}, - {0.182173f,-0.168017f,-0.968805f},{0.0224803f,0.0193079f,-0.999561f},{0.0449408f,0.0385988f,-0.998244f}, - {0.155937f,-0.181559f,-0.970938f},{0.433008f,-0.90139f,1.81967e-016f},{0.987169f,0.151448f,-0.0506042f}, - {0.980921f,0.146082f,-0.128274f},{0.977561f,0.143196f,-0.154497f},{0.973538f,0.13974f,-0.180824f}, - {0.968838f,0.135704f,-0.207214f},{0.963451f,0.131077f,-0.233625f},{0.957369f,0.125853f,-0.260012f}, - {0.950583f,0.120025f,-0.286331f},{0.943091f,0.11359f,-0.312533f},{0.934889f,0.106546f,-0.338573f}, - {0.916358f,0.0906299f,-0.389967f},{0.906037f,0.0817656f,-0.415224f},{0.895022f,0.072305f,-0.440122f}, - {0.883323f,0.0622569f,-0.464612f},{0.870953f,0.0516324f,-0.488646f},{0.857927f,0.0404447f,-0.512177f}, - {0.844263f,0.0287093f,-0.535159f},{0.829983f,0.0164437f,-0.557547f},{0.815107f,0.00366744f,-0.579299f}, - {0.799662f,-0.00959801f,-0.600374f},{0.783674f,-0.0233295f,-0.620733f},{0.767173f,-0.0375019f,-0.640343f}, - {0.732756f,-0.0670627f,-0.677179f},{0.714905f,-0.0823942f,-0.69435f},{0.696673f,-0.0980537f,-0.710657f}, - {0.678094f,-0.11401f,-0.726078f},{0.659207f,-0.130232f,-0.740598f},{0.640047f,-0.146689f,-0.754203f}, - {0.620651f,-0.163347f,-0.766883f},{0.601058f,-0.180175f,-0.778631f},{0.581305f,-0.197141f,-0.789443f}, - {0.561427f,-0.214213f,-0.79932f},{0.541462f,-0.231361f,-0.808264f},{0.521445f,-0.248554f,-0.816282f}, - {0.461418f,-0.30011f,-0.834882f},{0.604064f,-0.535749f,-0.589983f},{0.363305f,-0.384377f,-0.848684f}, - {0.29793f,-0.346881f,-0.889332f},{-0.757272f,-0.650407f,0.0592414f},{0.975595f,-0.216648f,-0.0357603f}, - {0.968805f,-0.222479f,-0.109178f},{0.965962f,-0.224921f,-0.127782f},{0.962641f,-0.227774f,-0.146431f}, - {0.958834f,-0.231043f,-0.165095f},{0.954536f,-0.234735f,-0.183742f},{0.949741f,-0.238853f,-0.20234f}, - {0.944446f,-0.243401f,-0.220857f},{0.918261f,-0.26589f,-0.293425f},{0.925555f,-0.259626f,-0.275577f}, - {0.783579f,-0.613057f,-0.100821f},{0.910478f,-0.272576f,-0.31102f},{0.90221f,-0.279676f,-0.328326f}, - {0.893469f,-0.287184f,-0.34531f},{0.884264f,-0.29509f,-0.361938f},{0.854004f,-0.32108f,-0.409371f}, - {0.84309f,-0.330454f,-0.424264f},{0.831792f,-0.340158f,-0.438652f},{0.731496f,-0.65779f,-0.179515f}, - {0.539823f,-0.822414f,0.179515f},{0.726783f,-0.661838f,-0.183731f},{0.795809f,-0.371062f,-0.47854f}, - {0.783195f,-0.381897f,-0.490674f},{0.770311f,-0.392963f,-0.502197f},{0.757182f,-0.404239f,-0.513095f}, - {0.743835f,-0.415702f,-0.523356f},{0.730295f,-0.427331f,-0.53297f},{0.688784f,-0.462984f,-0.557873f}, - {0.674737f,-0.475049f,-0.564853f},{0.660628f,-0.487166f,-0.571173f},{0.646483f,-0.499316f,-0.576839f}, - {0.632324f,-0.511476f,-0.581857f},{0.618177f,-0.523627f,-0.586235f},{0.646762f,-0.753028f,-0.121027f}, - {0.640595f,-0.735863f,-0.219416f},{0.630724f,-0.744341f,0.219416f},{0.534731f,-0.595298f,-0.599736f}, - {0.431242f,-0.502097f,-0.749619f},{0.651551f,-0.758605f,1.22271e-018f},{0.801887f,-0.597333f,-0.013083f}, - {0.800271f,-0.59872f,-0.0331634f},{0.799403f,-0.599466f,-0.0399431f},{0.474172f,-0.878801f,0.0535724f}, - {0.795755f,-0.6026f,-0.0604006f},{0.797147f,-0.601403f,-0.0535725f},{0.798362f,-0.60036f,-0.0467496f}, - {0.794182f,-0.60395f,-0.0672227f},{0.792428f,-0.605457f,-0.0740269f},{0.790491f,-0.607121f,-0.0808013f}, - {0.78837f,-0.608942f,-0.0875334f},{0.786066f,-0.610921f,-0.0942108f},{0.493256f,-0.86241f,0.113788f}, - {0.775039f,-0.620392f,-0.120119f},{0.778063f,-0.617794f,-0.113788f},{0.780911f,-0.615348f,-0.107351f}, - {0.771841f,-0.623139f,-0.126333f},{0.768473f,-0.626031f,-0.132417f},{0.513917f,-0.844665f,0.14977f}, - {0.753409f,-0.638969f,-0.155219f},{0.757402f,-0.63554f,-0.14977f},{0.761248f,-0.632237f,-0.144146f}, - {0.749276f,-0.642519f,-0.160482f},{0.74501f,-0.646183f,-0.165552f},{0.740619f,-0.649955f,-0.170419f}, - {0.736112f,-0.653826f,-0.175076f},{0.72198f,-0.665964f,-0.187718f},{0.717096f,-0.670158f,-0.191472f}, - {0.712143f,-0.674412f,-0.194989f},{0.574363f,-0.792748f,0.2041f},{0.691817f,-0.69187f,-0.206653f}, - {0.696956f,-0.687456f,-0.2041f},{0.702063f,-0.68307f,-0.201304f},{0.686655f,-0.696303f,-0.208966f}, - {0.68148f,-0.700748f,-0.211039f},{0.6763f,-0.705197f,-0.212874f},{0.671124f,-0.709642f,-0.214476f}, - {0.494113f,-0.630183f,0.598933f},{0.615617f,-0.757316f,0.217917f},{0.609092f,-0.70917f,-0.355084f}, - {0.536047f,-0.624123f,-0.56844f},{0.46981f,-0.882547f,0.0197241f},{0.469433f,-0.882871f,0.0130831f}, - {0.470347f,-0.882086f,0.0264206f},{0.471048f,-0.881484f,0.0331634f},{0.471917f,-0.880738f,0.0399431f}, - {0.472957f,-0.879844f,0.0467496f},{0.475565f,-0.877605f,0.0604006f},{0.480829f,-0.873084f,0.0808012f}, - {0.478891f,-0.874747f,0.074027f},{0.0927413f,-0.974914f,0.20234f},{0.477137f,-0.876254f,0.0672226f}, - {0.482949f,-0.871262f,0.0875334f},{0.485253f,-0.869283f,0.0942108f},{0.48774f,-0.867147f,0.100821f}, - {0.490408f,-0.864856f,0.107351f},{-0.169495f,-0.841989f,0.512177f},{0.158218f,-0.918677f,0.361938f}, - {-0.182522f,-0.853177f,0.488646f},{0.496281f,-0.859812f,0.120119f},{0.499479f,-0.857065f,0.126333f}, - {0.502847f,-0.854173f,0.132416f},{0.506379f,-0.851139f,0.138358f},{0.510071f,-0.847968f,0.144146f}, - {-0.078742f,-0.764043f,0.640343f},{0.222351f,-0.863595f,0.452509f},{-0.095243f,-0.778215f,0.620733f}, - {0.51791f,-0.841235f,0.155219f},{0.522044f,-0.837685f,0.160482f},{0.52631f,-0.834021f,0.165552f}, - {0.530701f,-0.830249f,0.170419f},{0.535208f,-0.826378f,0.175076f},{0.554223f,-0.810046f,0.191472f}, - {0.54934f,-0.814241f,0.187718f},{0.2853f,-0.809529f,0.513095f},{0.544537f,-0.818366f,0.183731f}, - {0.559177f,-0.805792f,0.194989f},{0.564191f,-0.801485f,0.198267f},{0.569257f,-0.797135f,0.201304f}, - {0.579503f,-0.788334f,0.206653f},{0.595019f,-0.775007f,0.212874f},{0.58984f,-0.779456f,0.211039f}, - {0.395999f,-0.714451f,0.576839f},{0.584664f,-0.783901f,0.208966f},{0.600195f,-0.770562f,0.214476f}, - {0.605359f,-0.766127f,0.215847f},{0.610502f,-0.76171f,0.216993f},{0.466457f,-0.653936f,0.595638f}, - {0.625735f,-0.748626f,0.219122f},{0.0679193f,-0.996233f,0.0539127f},{0.0668873f,-0.997119f,0.0357603f}, - {0.0693872f,-0.994972f,0.0722163f},{0.0713027f,-0.993327f,0.0906467f},{0.0736769f,-0.991288f,0.109178f}, - {0.0765202f,-0.988846f,0.127782f},{0.0798415f,-0.985994f,0.146431f},{0.0836479f,-0.982724f,0.165095f}, - {0.0879462f,-0.979032f,0.183742f},{-0.254659f,-0.915135f,0.312533f},{-0.246457f,-0.90809f,0.338573f}, - {0.103832f,-0.965388f,0.239258f},{0.0980359f,-0.970367f,0.220857f},{0.11013f,-0.959979f,0.257509f}, - {0.116927f,-0.954141f,0.275577f},{0.12422f,-0.947877f,0.293425f},{0.132004f,-0.941192f,0.31102f}, - {0.140272f,-0.934091f,0.328326f},{0.149013f,-0.926583f,0.34531f},{0.167874f,-0.910384f,0.378179f}, - {0.177966f,-0.901716f,0.394f},{0.188478f,-0.892688f,0.409371f},{0.199392f,-0.883313f,0.424264f}, - {0.21069f,-0.87361f,0.438652f},{0.234353f,-0.853287f,0.465812f},{0.246673f,-0.842705f,0.47854f}, - {0.259287f,-0.831871f,0.490674f},{0.272171f,-0.820805f,0.502197f},{0.0292248f,-0.671312f,0.740598f}, - {0.0483848f,-0.654856f,0.754203f},{0.312187f,-0.786436f,0.53297f},{0.298647f,-0.798065f,0.523356f}, - {0.325893f,-0.774664f,0.541931f},{0.339739f,-0.762773f,0.550232f},{0.353698f,-0.750783f,0.557873f}, - {0.367745f,-0.738719f,0.564853f},{0.381854f,-0.726601f,0.571173f},{0.410157f,-0.702291f,0.581857f}, - {0.207042f,-0.518588f,0.829578f},{0.227014f,-0.501435f,0.834882f},{0.438418f,-0.678019f,0.589983f}, - {0.424305f,-0.69014f,0.586235f},{0.452476f,-0.665945f,0.593113f},{0.609586f,-0.709744f,0.353084f}, - {0.646863f,-0.753146f,0.119748f},{-0.339059f,-0.940765f,5.47231e-016f},{-0.298738f,-0.952993f,0.0506042f}, - {-0.2952f,-0.949954f,0.102193f},{-0.29249f,-0.947626f,0.128274f},{-0.569536f,-0.813646f,0.116657f}, - {-0.28913f,-0.944741f,0.154497f},{-0.285106f,-0.941285f,0.180824f},{-0.280406f,-0.937248f,0.207214f}, - {-0.27502f,-0.932622f,0.233625f},{-0.268937f,-0.927398f,0.260012f},{-0.262152f,-0.92157f,0.286331f}, - {-0.674898f,-0.579657f,0.45663f},{-0.492741f,-0.747688f,0.445162f},{-0.503721f,-0.757119f,0.415977f}, - {-0.237545f,-0.900436f,0.3644f},{-0.227927f,-0.892174f,0.389967f},{-0.217606f,-0.88331f,0.415224f}, - {-0.206591f,-0.87385f,0.440122f},{-0.194892f,-0.863801f,0.464612f},{-0.410442f,-0.677003f,0.610904f}, - {-0.155832f,-0.830254f,0.535159f},{-0.426039f,-0.6904f,0.58467f},{-0.141551f,-0.817988f,0.557547f}, - {-0.126676f,-0.805212f,0.579299f},{-0.11123f,-0.791947f,0.600374f},{-0.303053f,-0.584769f,0.752465f}, - {-0.46032f,-0.39536f,0.794856f},{-0.283151f,-0.567676f,0.773026f},{-0.0617581f,-0.749456f,0.659168f}, - {-0.0443242f,-0.734482f,0.677179f},{-0.0264735f,-0.71915f,0.69435f},{-0.008241f,-0.703491f,0.710657f}, - {0.0103371f,-0.687534f,0.726078f},{-0.15518f,-0.457764f,0.875426f},{0.0677801f,-0.638198f,0.766883f}, - {-0.177321f,-0.476779f,0.860952f},{0.0873729f,-0.62137f,0.778631f},{0.107127f,-0.604404f,0.789443f}, - {0.127004f,-0.587331f,0.79932f},{0.146969f,-0.570183f,0.808264f},{0.166987f,-0.552991f,0.816282f}, - {0.187022f,-0.535783f,0.823383f},{0.246907f,-0.484349f,0.839311f},{0.11656f,-0.224372f,0.967508f}, - {0.0943152f,-0.243477f,0.96531f},{0.305827f,-0.433744f,0.847547f},{0.536319f,-0.624439f,0.567837f}, - {-0.566442f,-0.810988f,0.146429f},{-0.562606f,-0.807694f,0.176364f},{-0.558013f,-0.803749f,0.206418f}, - {-0.552648f,-0.799142f,0.236543f},{-0.546499f,-0.79386f,0.266692f},{-0.539556f,-0.787897f,0.296814f}, - {-0.53181f,-0.781244f,0.326857f},{-0.523257f,-0.773898f,0.356769f},{-0.513894f,-0.765856f,0.386494f}, - {-0.480959f,-0.737569f,0.473994f},{-0.468385f,-0.726769f,0.502416f},{-0.45503f,-0.715299f,0.530373f}, - {-0.440909f,-0.703171f,0.557808f},{-0.60298f,-0.517888f,0.606801f},{-0.39414f,-0.663001f,0.636461f}, - {-0.377159f,-0.648417f,0.661292f},{-0.359528f,-0.633274f,0.68535f},{-0.341277f,-0.617599f,0.708591f}, - {-0.322441f,-0.601421f,0.730976f},{-0.262774f,-0.550174f,0.792627f},{-0.241961f,-0.532298f,0.811242f}, - {-0.220753f,-0.514083f,0.828846f},{-0.199192f,-0.495565f,0.845422f},{-0.346399f,-0.297516f,0.889658f}, - {-0.132814f,-0.438554f,0.888837f},{-0.110264f,-0.419187f,0.901179f},{-0.0875737f,-0.399698f,0.912454f}, - {-0.0647826f,-0.380123f,0.922665f},{-0.0419317f,-0.360497f,0.931817f},{-0.0190608f,-0.340853f,0.939923f}, - {0.00379247f,-0.321225f,0.946995f},{0.0265911f,-0.301644f,0.95305f},{0.0493001f,-0.28214f,0.958106f}, - {0.0718852f,-0.262742f,0.962185f},{-0.755608f,-0.648977f,0.0887968f},{-0.75328f,-0.646978f,0.118274f}, - {-0.75029f,-0.64441f,0.147647f},{-0.746642f,-0.641277f,0.176891f},{-0.742337f,-0.63758f,0.205979f}, - {-0.737381f,-0.633323f,0.234887f},{-0.731777f,-0.628509f,0.263588f},{-0.72553f,-0.623144f,0.292057f}, - {-0.718646f,-0.617231f,0.320271f},{-0.711131f,-0.610777f,0.348202f},{-0.702991f,-0.603786f,0.375828f}, - {-0.694233f,-0.596264f,0.403124f},{-0.684866f,-0.588219f,0.430066f},{-0.664336f,-0.570586f,0.482793f}, - {-0.653191f,-0.561014f,0.508532f},{-0.641473f,-0.550949f,0.533824f},{-0.629191f,-0.5404f,0.558647f}, - {-0.616356f,-0.529376f,0.58298f},{-0.589074f,-0.505945f,0.630088f},{-0.574651f,-0.493557f,0.652822f}, - {-0.559723f,-0.480736f,0.674983f},{-0.544304f,-0.467493f,0.696551f},{-0.528406f,-0.453838f,0.717508f}, - {-0.512045f,-0.439786f,0.737834f},{-0.495233f,-0.425347f,0.757512f},{-0.477987f,-0.410534f,0.776525f}, - {-0.44225f,-0.37984f,0.812488f},{-0.423791f,-0.363986f,0.829407f},{-0.40496f,-0.347812f,0.845597f}, - {-0.385773f,-0.331333f,0.861045f},{-0.366247f,-0.314563f,0.875736f},{-0.326248f,-0.280208f,0.902799f}, - {-0.30581f,-0.262654f,0.915146f},{-0.285103f,-0.24487f,0.92669f},{-0.264146f,-0.22687f,0.93742f}, - {-0.242957f,-0.208671f,0.947327f},{-0.221554f,-0.190289f,0.956402f},{-0.199957f,-0.171739f,0.964636f}, - {-0.178184f,-0.153039f,0.972023f},{-0.156255f,-0.134204f,0.978557f},{-0.134188f,-0.115252f,0.984231f}, - {-0.112004f,-0.0961983f,0.98904f},{-0.0897214f,-0.07706f,0.992981f},{-0.0673596f,-0.0578539f,0.99605f}, - {-0.044939f,-0.0385973f,0.998244f},{0.222351f,-0.863595f,-0.452509f},{0.234353f,-0.853287f,-0.465812f}, - {0.530701f,-0.830249f,-0.170419f},{-0.220753f,-0.514083f,-0.828846f},{-0.40496f,-0.347812f,-0.845597f}, - {-0.385773f,-0.331333f,-0.861045f},{-0.241961f,-0.532298f,-0.811242f},{-0.199192f,-0.495565f,-0.845422f}, - {-0.366247f,-0.314563f,-0.875736f},{-0.17732f,-0.47678f,-0.860952f},{-0.30581f,-0.262654f,-0.915146f}, - {-0.15518f,-0.457764f,-0.875426f},{-0.326248f,-0.280208f,-0.902799f},{-0.346399f,-0.297516f,-0.889658f}, - {-0.285103f,-0.24487f,-0.92669f},{-0.132814f,-0.438554f,-0.888837f},{-0.423791f,-0.363986f,-0.829407f}, - {-0.110265f,-0.419187f,-0.901179f},{-0.264146f,-0.22687f,-0.93742f},{-0.0875736f,-0.399698f,-0.912454f}, - {0.06778f,-0.638198f,-0.766883f},{0.339739f,-0.762773f,-0.550232f},{0.325893f,-0.774664f,-0.541931f}, - {-0.0647826f,-0.380123f,-0.922665f},{-0.242957f,-0.208671f,-0.947327f},{-0.0419318f,-0.360497f,-0.931817f}, - {-0.221554f,-0.190289f,-0.956402f},{-0.199957f,-0.171739f,-0.964636f},{-0.0190607f,-0.340853f,-0.939923f}, - {-0.178184f,-0.153039f,-0.972023f},{-0.156255f,-0.134204f,-0.978557f},{-0.134188f,-0.115252f,-0.984231f}, - {0.0265912f,-0.301644f,-0.95305f},{0.0037925f,-0.321225f,-0.946995f},{-0.112004f,-0.0961983f,-0.98904f}, - {0.0492999f,-0.28214f,-0.958106f},{-0.0897213f,-0.07706f,-0.992981f},{0.0718852f,-0.262742f,-0.962185f}, - {0.155937f,-0.181559f,0.970938f},{0.0224803f,0.0193079f,0.999561f},{0.0943152f,-0.243477f,-0.96531f}, - {0.182173f,-0.168017f,0.968805f},{0.286341f,-0.45048f,-0.845622f},{0.266692f,-0.467356f,-0.842884f}, - {0.226448f,-0.12999f,0.96531f},{0.402091f,-0.351065f,0.845622f},{0.204204f,-0.149095f,0.967508f}, - {0.615617f,-0.757316f,-0.217916f},{0.452476f,-0.665945f,-0.593113f},{0.466457f,-0.653936f,-0.595638f}, - {0.534731f,-0.595298f,0.599736f},{0.640595f,-0.735863f,0.219416f},{0.609092f,-0.70917f,0.355084f}, - {0.431242f,-0.502097f,0.749619f},{0.363305f,-0.384377f,0.848684f},{-0.0673597f,-0.0578539f,-0.99605f}, - {0.480343f,-0.642011f,-0.597573f},{0.646762f,-0.753028f,0.121027f},{0.630724f,-0.744341f,-0.219416f}, - {0.138591f,-0.205449f,-0.968805f},{0.304133f,-0.354104f,-0.884372f},{0.325126f,-0.417168f,-0.848684f}, - {-0.044939f,-0.0385972f,-0.998244f},{0.11656f,-0.224371f,-0.967508f},{0.507751f,-0.61847f,-0.599736f}, - {0.609586f,-0.709744f,-0.353084f},{0.536319f,-0.624439f,-0.567836f},{0.646863f,-0.753146f,-0.119748f}, - {0.155494f,-0.181042f,-0.971105f},{-0.0224791f,-0.0193069f,-0.999561f},{0.620697f,-0.752953f,-0.218624f}, - {-0.262774f,-0.550174f,-0.792627f},{-0.44225f,-0.37984f,-0.812488f},{-0.283151f,-0.567676f,-0.773026f}, - {-0.303053f,-0.584769f,-0.752465f},{-0.46032f,-0.39536f,-0.794856f},{-0.477987f,-0.410534f,-0.776525f}, - {-0.495233f,-0.425347f,-0.757512f},{-0.512045f,-0.439786f,-0.737834f},{-0.322441f,-0.601421f,-0.730976f}, - {-0.341277f,-0.617599f,-0.708591f},{-0.528407f,-0.453838f,-0.717508f},{-0.359528f,-0.633274f,-0.68535f}, - {-0.544304f,-0.467493f,-0.696551f},{-0.377159f,-0.648417f,-0.661292f},{-0.155832f,-0.830254f,-0.535159f}, - {0.177966f,-0.901716f,-0.394f},{0.167874f,-0.910384f,-0.378179f},{-0.39414f,-0.663002f,-0.636461f}, - {-0.559724f,-0.480736f,-0.674983f},{-0.410442f,-0.677003f,-0.610904f},{-0.574651f,-0.493557f,-0.652822f}, - {-0.60298f,-0.517888f,-0.606801f},{-0.589074f,-0.505945f,-0.630089f},{-0.426039f,-0.6904f,-0.58467f}, - {-0.616356f,-0.529376f,-0.58298f},{-0.440909f,-0.703171f,-0.557808f},{-0.629191f,-0.5404f,-0.558647f}, - {-0.641473f,-0.550949f,-0.533824f},{-0.45503f,-0.715299f,-0.530373f},{-0.468385f,-0.726769f,-0.502416f}, - {-0.653191f,-0.561014f,-0.508532f},{-0.480959f,-0.737569f,-0.473994f},{0.11013f,-0.959979f,-0.25751f}, - {0.485253f,-0.869283f,-0.0942108f},{0.103832f,-0.965388f,-0.239258f},{-0.664336f,-0.570586f,-0.482793f}, - {-0.492741f,-0.747688f,-0.445162f},{-0.503721f,-0.757119f,-0.415977f},{-0.674898f,-0.579657f,-0.45663f}, - {-0.684866f,-0.588219f,-0.430066f},{-0.694233f,-0.596264f,-0.403124f},{-0.702991f,-0.603786f,-0.375828f}, - {-0.513894f,-0.765856f,-0.386494f},{-0.523257f,-0.773898f,-0.356769f},{-0.711131f,-0.610777f,-0.348202f}, - {-0.53181f,-0.781244f,-0.326857f},{-0.718646f,-0.617231f,-0.32027f},{-0.72553f,-0.623144f,-0.292057f}, - {-0.539556f,-0.787897f,-0.296814f},{-0.546499f,-0.79386f,-0.266692f},{-0.731777f,-0.628509f,-0.263588f}, - {-0.552648f,-0.799142f,-0.236543f},{-0.285106f,-0.941285f,-0.180824f},{-0.558013f,-0.803749f,-0.206418f}, - {-0.280406f,-0.937248f,-0.207214f},{-0.737381f,-0.633323f,-0.234887f},{-0.562606f,-0.807694f,-0.176364f}, - {-0.742337f,-0.63758f,-0.205979f},{0.0662782f,-0.997643f,-0.0177823f},{0.469433f,-0.882871f,-0.0130831f}, - {0.46921f,-0.883063f,-0.00650573f},{-0.746642f,-0.641277f,-0.176891f},{0.974563f,-0.217534f,0.0539127f}, - {0.801509f,-0.597657f,0.0197241f},{0.973095f,-0.218795f,0.0722163f},{-0.292489f,-0.947626f,-0.128274f}, - {-0.2952f,-0.949955f,-0.102193f},{-0.569536f,-0.813646f,-0.116657f},{0.985709f,0.150194f,0.0762915f}, - {0.983632f,0.14841f,0.102193f},{0.988031f,0.152188f,0.0251637f},{0.997238f,-0.0742779f,1.11285e-016f}, - {0.976204f,-0.216125f,0.0177823f},{0.470347f,-0.882086f,-0.0264206f},{0.0679194f,-0.996233f,-0.0539127f}, - {0.069387f,-0.994972f,-0.0722163f},{0.895322f,0.444493f,0.0287253f},{0.983078f,0.183188f,4.07949e-016f}, - {0.471048f,-0.881484f,-0.0331634f},{0.0713026f,-0.993327f,-0.0906466f},{0.471917f,-0.880738f,-0.0399431f}, - {0.901253f,0.433294f,3.52919e-035f},{-0.75029f,-0.64441f,-0.147647f},{-0.566442f,-0.810988f,-0.146429f}, - {-0.573574f,-0.817114f,-0.0577667f},{-0.571907f,-0.815682f,-0.0870897f},{-0.297277f,-0.951738f,-0.0762915f}, - {-0.75328f,-0.646978f,-0.118274f},{-0.755608f,-0.648977f,-0.0887967f},{-0.757272f,-0.650407f,-0.0592414f}, - {-0.758271f,-0.651265f,-0.0296338f},{-0.574558f,-0.81796f,-0.0287253f},{0.432488f,-0.503548f,-0.747926f}, - {0.305827f,-0.433744f,-0.847547f},{0.246907f,-0.484349f,-0.839311f},{0.227014f,-0.501435f,-0.834882f}, - {0.207042f,-0.518588f,-0.829578f},{0.187022f,-0.535783f,-0.823383f},{0.166987f,-0.552991f,-0.816282f}, - {0.146969f,-0.570184f,-0.808264f},{0.127004f,-0.587331f,-0.79932f},{0.107127f,-0.604404f,-0.789443f}, - {0.087373f,-0.62137f,-0.778631f},{0.0483849f,-0.654856f,-0.754203f},{0.0292249f,-0.671312f,-0.740598f}, - {0.0103372f,-0.687534f,-0.726078f},{-0.00824112f,-0.703491f,-0.710657f},{-0.0264736f,-0.71915f,-0.69435f}, - {-0.0443241f,-0.734482f,-0.677179f},{-0.0617582f,-0.749456f,-0.659168f},{-0.0787419f,-0.764043f,-0.640343f}, - {-0.0952429f,-0.778215f,-0.620734f},{-0.111231f,-0.791946f,-0.600374f},{-0.126676f,-0.805212f,-0.579299f}, - {-0.141551f,-0.817988f,-0.557547f},{-0.169496f,-0.841989f,-0.512177f},{-0.182522f,-0.853177f,-0.488646f}, - {-0.194892f,-0.863801f,-0.464612f},{-0.206591f,-0.87385f,-0.440122f},{-0.217606f,-0.88331f,-0.415224f}, - {-0.227926f,-0.892174f,-0.389967f},{-0.237545f,-0.900436f,-0.3644f},{-0.246457f,-0.90809f,-0.338573f}, - {-0.254659f,-0.915135f,-0.312533f},{-0.262152f,-0.92157f,-0.286331f},{-0.268937f,-0.927398f,-0.260012f}, - {-0.27502f,-0.932622f,-0.233625f},{-0.28913f,-0.944741f,-0.154497f},{0.073677f,-0.991288f,-0.109178f}, - {-0.2996f,-0.953733f,-0.0251637f},{-0.298737f,-0.952993f,-0.0506043f},{-0.339059f,-0.940765f,-2.28355e-016f}, - {-0.564043f,-0.825745f,-3.01839e-016f},{0.536047f,-0.624123f,0.56844f},{0.494113f,-0.630183f,-0.598933f}, - {0.438418f,-0.678019f,-0.589983f},{0.424305f,-0.69014f,-0.586235f},{0.410158f,-0.702291f,-0.581857f}, - {0.395999f,-0.714451f,-0.576839f},{0.381854f,-0.726601f,-0.571173f},{0.367745f,-0.738719f,-0.564853f}, - {0.353698f,-0.750783f,-0.557873f},{0.298647f,-0.798065f,-0.523356f},{0.312187f,-0.786436f,-0.53297f}, - {0.559177f,-0.805792f,-0.194989f},{0.2853f,-0.809529f,-0.513095f},{0.272171f,-0.820805f,-0.502197f}, - {0.259287f,-0.831871f,-0.490674f},{0.246673f,-0.842705f,-0.47854f},{0.21069f,-0.87361f,-0.438652f}, - {0.199392f,-0.883313f,-0.424264f},{0.188478f,-0.892688f,-0.409371f},{0.499479f,-0.857065f,-0.126333f}, - {0.771841f,-0.623139f,0.126333f},{0.496281f,-0.859812f,-0.120119f},{0.158218f,-0.918677f,-0.361938f}, - {0.149013f,-0.926583f,-0.34531f},{0.140272f,-0.934091f,-0.328326f},{0.132004f,-0.941192f,-0.31102f}, - {0.124221f,-0.947877f,-0.293425f},{0.116927f,-0.954141f,-0.275577f},{0.0980359f,-0.970367f,-0.220857f}, - {0.0927412f,-0.974914f,-0.20234f},{0.0879463f,-0.979032f,-0.183742f},{0.0836479f,-0.982724f,-0.165095f}, - {0.0798414f,-0.985994f,-0.146431f},{0.0765202f,-0.988846f,-0.127782f},{0.0668873f,-0.997119f,-0.0357604f}, - {0.46981f,-0.882547f,-0.0197241f},{-0.0755429f,-0.997143f,-2.89047e-016f},{0.0449408f,0.0385988f,0.998244f}, - {0.625735f,-0.748626f,-0.219122f},{0.610502f,-0.76171f,-0.216993f},{0.605359f,-0.766127f,-0.215847f}, - {0.6763f,-0.705197f,0.212874f},{0.58984f,-0.779456f,-0.211039f},{0.595019f,-0.775007f,-0.212875f}, - {0.600195f,-0.770562f,-0.214476f},{0.584664f,-0.783901f,-0.208966f},{0.579503f,-0.788334f,-0.206653f}, - {0.574364f,-0.792748f,-0.2041f},{0.569256f,-0.797135f,-0.201305f},{0.564191f,-0.801485f,-0.198267f}, - {0.721979f,-0.665964f,0.187718f},{0.544537f,-0.818366f,-0.183731f},{0.54934f,-0.814241f,-0.187718f}, - {0.554223f,-0.810046f,-0.191472f},{0.539823f,-0.822414f,-0.179515f},{0.535208f,-0.826378f,-0.175076f}, - {0.749276f,-0.642519f,0.160482f},{0.51791f,-0.841235f,-0.155219f},{0.522044f,-0.837685f,-0.160482f}, - {0.52631f,-0.834021f,-0.165552f},{0.513917f,-0.844665f,-0.14977f},{0.510071f,-0.847968f,-0.144146f}, - {0.506379f,-0.851139f,-0.138358f},{0.502846f,-0.854173f,-0.132417f},{0.493256f,-0.86241f,-0.113788f}, - {0.490408f,-0.864856f,-0.107351f},{0.48774f,-0.867148f,-0.100821f},{0.790491f,-0.60712f,0.0808013f}, - {0.478892f,-0.874747f,-0.0740269f},{0.480829f,-0.873084f,-0.0808013f},{0.482949f,-0.871262f,-0.0875334f}, - {0.477137f,-0.876254f,-0.0672227f},{0.475565f,-0.877605f,-0.0604006f},{0.474172f,-0.878801f,-0.0535724f}, - {0.472957f,-0.879844f,-0.0467496f},{0.800972f,-0.598118f,0.0264206f},{0.184979f,-0.982742f,-2.6491e-016f}, - {0.650623f,-0.727251f,0.218624f},{0.645585f,-0.731578f,0.219122f},{0.655703f,-0.722888f,0.217917f}, - {0.660818f,-0.718494f,0.216992f},{0.665961f,-0.714077f,0.215848f},{0.671124f,-0.709642f,0.214476f}, - {0.68148f,-0.700748f,0.211039f},{0.696956f,-0.687456f,0.2041f},{0.691817f,-0.69187f,0.206653f}, - {0.674737f,-0.475049f,0.564852f},{0.686655f,-0.696303f,0.208966f},{0.702063f,-0.68307f,0.201305f}, - {0.707128f,-0.678719f,0.198267f},{0.712143f,-0.674412f,0.194989f},{0.717096f,-0.670158f,0.191472f}, - {0.732756f,-0.0670628f,0.677179f},{0.795809f,-0.371062f,0.47854f},{0.714905f,-0.0823942f,0.69435f}, - {0.726783f,-0.661838f,0.183731f},{0.731497f,-0.65779f,0.179515f},{0.736111f,-0.653826f,0.175076f}, - {0.740619f,-0.649955f,0.170419f},{0.74501f,-0.646183f,0.165552f},{0.829983f,0.0164437f,0.557547f}, - {0.864516f,-0.312051f,0.394f},{0.815107f,0.00366745f,0.579299f},{0.753409f,-0.638969f,0.155219f}, - {0.757402f,-0.63554f,0.14977f},{0.761248f,-0.632236f,0.144146f},{0.76494f,-0.629065f,0.138358f}, - {0.768473f,-0.626031f,0.132417f},{0.780911f,-0.615349f,0.107351f},{0.778063f,-0.617794f,0.113788f}, - {0.910477f,-0.272576f,0.311019f},{0.775039f,-0.620392f,0.120119f},{0.783579f,-0.613057f,0.100821f}, - {0.786066f,-0.610921f,0.0942108f},{0.78837f,-0.608942f,0.0875334f},{0.792428f,-0.605457f,0.0740269f}, - {0.797147f,-0.601403f,0.0535724f},{0.795755f,-0.602599f,0.0604006f},{0.958834f,-0.231043f,0.165095f}, - {0.794182f,-0.60395f,0.0672227f},{0.798362f,-0.60036f,0.0467497f},{0.799403f,-0.599467f,0.0399431f}, - {0.800271f,-0.59872f,0.0331634f},{0.801887f,-0.597333f,0.0130831f},{0.802109f,-0.597142f,0.00650573f}, - {0.651551f,-0.758605f,-2.05938e-033f},{0.433008f,-0.90139f,-1.54031e-016f},{0.562139f,-0.571757f,0.597573f}, - {0.548369f,-0.583584f,0.598933f},{0.576025f,-0.559831f,0.595638f},{0.590006f,-0.547823f,0.593113f}, - {0.604064f,-0.535749f,0.589983f},{0.618177f,-0.523627f,0.586235f},{0.632325f,-0.511476f,0.581857f}, - {0.646483f,-0.499316f,0.576839f},{0.660628f,-0.487166f,0.571173f},{0.581305f,-0.197141f,0.789443f}, - {0.601058f,-0.180175f,0.778631f},{0.702743f,-0.450995f,0.550232f},{0.688784f,-0.462984f,0.557873f}, - {0.716589f,-0.439103f,0.541931f},{0.730295f,-0.427331f,0.53297f},{0.743835f,-0.415702f,0.523356f}, - {0.757182f,-0.404239f,0.513095f},{0.770311f,-0.392963f,0.502197f},{0.783195f,-0.381897f,0.490674f}, - {0.808129f,-0.360481f,0.465812f},{0.820131f,-0.350173f,0.452509f},{0.831792f,-0.340157f,0.438652f}, - {0.84309f,-0.330454f,0.424264f},{0.854004f,-0.32108f,0.409371f},{0.874608f,-0.303383f,0.378179f}, - {0.884264f,-0.29509f,0.361938f},{0.893469f,-0.287184f,0.34531f},{0.90221f,-0.279676f,0.328326f}, - {0.906037f,0.0817656f,0.415224f},{0.916358f,0.09063f,0.389967f},{0.925555f,-0.259626f,0.275577f}, - {0.918261f,-0.26589f,0.293425f},{0.932352f,-0.253788f,0.257509f},{0.93865f,-0.248379f,0.239258f}, - {0.944446f,-0.243401f,0.220857f},{0.949741f,-0.238853f,0.20234f},{0.954536f,-0.234735f,0.183742f}, - {0.962641f,-0.227774f,0.146431f},{0.973538f,0.13974f,0.180824f},{0.977561f,0.143196f,0.154497f}, - {0.968805f,-0.222479f,0.109178f},{0.965962f,-0.224922f,0.127782f},{0.971179f,-0.22044f,0.0906467f}, - {0.975595f,-0.216648f,0.0357604f},{0.943289f,-0.331972f,1.5621e-016f},{0.825457f,-0.564465f,6.56678e-035f}, - {0.29793f,-0.346881f,0.889332f},{0.382604f,-0.367801f,0.847547f},{0.42174f,-0.334188f,0.842884f}, - {0.441525f,-0.317195f,0.839311f},{0.248878f,-0.110725f,0.962185f},{0.461418f,-0.30011f,0.834882f}, - {0.48139f,-0.282956f,0.829578f},{0.501409f,-0.265762f,0.823383f},{0.521445f,-0.248554f,0.816282f}, - {0.541462f,-0.231361f,0.808264f},{0.561427f,-0.214213f,0.79932f},{0.346402f,0.297518f,0.889657f}, - {0.498084f,0.103313f,0.860952f},{0.475944f,0.0842968f,0.875426f},{0.620651f,-0.163347f,0.766883f}, - {0.640047f,-0.146689f,0.754203f},{0.659207f,-0.130232f,0.740598f},{0.678094f,-0.11401f,0.726078f}, - {0.696673f,-0.0980537f,0.710657f},{0.623817f,0.211302f,0.752465f},{0.75019f,-0.0520888f,0.659168f}, - {0.603915f,0.194209f,0.773026f},{0.767173f,-0.0375018f,0.640343f},{0.783674f,-0.0233294f,0.620734f}, - {0.799662f,-0.00959819f,0.600374f},{0.731206f,0.303536f,0.610904f},{0.602981f,0.517889f,0.606799f}, - {0.746803f,0.316933f,0.58467f},{0.844264f,0.0287092f,0.535159f},{0.857927f,0.0404448f,0.512177f}, - {0.870953f,0.0516324f,0.488646f},{0.883323f,0.0622568f,0.464612f},{0.895022f,0.072305f,0.440122f}, - {0.824484f,0.383652f,0.415977f},{0.925977f,0.0988912f,0.3644f},{0.813504f,0.374221f,0.445163f}, - {0.934889f,0.106546f,0.338573f},{0.943091f,0.11359f,0.312533f},{0.950583f,0.120025f,0.286331f}, - {0.957369f,0.125853f,0.260012f},{0.963451f,0.131077f,0.233625f},{0.968838f,0.135704f,0.207214f}, - {0.980921f,0.146082f,0.128274f},{0.894338f,0.443647f,0.0577667f},{0.892671f,0.442216f,0.0870897f}, - {0.987169f,0.151448f,0.0506043f},{0.271464f,-0.0913273f,0.958106f},{0.294173f,-0.0718233f,0.95305f}, - {0.316971f,-0.0522418f,0.946995f},{0.339824f,-0.0326136f,0.939923f},{0.362696f,-0.0129702f,0.931817f}, - {0.385546f,0.00665603f,0.922665f},{0.408337f,0.0262309f,0.912454f},{0.431028f,0.0457197f,0.901179f}, - {0.453578f,0.0650871f,0.888837f},{0.519956f,0.122098f,0.845422f},{0.541517f,0.140616f,0.828846f}, - {0.562725f,0.158831f,0.811242f},{0.583538f,0.176707f,0.792627f},{0.460322f,0.395362f,0.794854f}, - {0.643204f,0.227954f,0.730976f},{0.662041f,0.244132f,0.708591f},{0.680291f,0.259807f,0.68535f}, - {0.697922f,0.27495f,0.661292f},{0.714903f,0.289534f,0.636461f},{0.761673f,0.329704f,0.557808f}, - {0.775794f,0.341832f,0.530373f},{0.789149f,0.353302f,0.502416f},{0.801723f,0.364102f,0.473994f}, - {0.674899f,0.579658f,0.456627f},{0.834658f,0.392389f,0.386494f},{0.844021f,0.400431f,0.356769f}, - {0.852574f,0.407777f,0.326857f},{0.860319f,0.41443f,0.296814f},{0.867263f,0.420393f,0.266692f}, - {0.873412f,0.425675f,0.236543f},{0.878777f,0.430282f,0.206418f},{0.88337f,0.434227f,0.176364f}, - {0.887205f,0.437521f,0.146429f},{0.8903f,0.440179f,0.116657f},{0.0673616f,0.0578556f,0.99605f}, - {0.0897231f,0.0770615f,0.992981f},{0.112006f,0.0961995f,0.98904f},{0.13419f,0.115254f,0.98423f}, - {0.156257f,0.134206f,0.978556f},{0.178186f,0.153041f,0.972023f},{0.199959f,0.171741f,0.964635f}, - {0.221556f,0.19029f,0.956401f},{0.242959f,0.208673f,0.947326f},{0.264148f,0.226872f,0.937419f}, - {0.285105f,0.244871f,0.926689f},{0.305812f,0.262656f,0.915145f},{0.32625f,0.28021f,0.902798f}, - {0.366249f,0.314564f,0.875734f},{0.385775f,0.331335f,0.861043f},{0.404961f,0.347814f,0.845596f}, - {0.423793f,0.363987f,0.829405f},{0.442252f,0.379842f,0.812486f},{0.477988f,0.410535f,0.776523f}, - {0.495234f,0.425347f,0.757511f},{0.512046f,0.439786f,0.737833f},{0.528407f,0.453839f,0.717507f}, - {0.544305f,0.467493f,0.696551f},{0.559724f,0.480737f,0.674982f},{0.574652f,0.493558f,0.652821f}, - {0.589075f,0.505946f,0.630087f},{0.616357f,0.529378f,0.582978f},{0.629192f,0.540401f,0.558645f}, - {0.641474f,0.55095f,0.533822f},{0.653193f,0.561015f,0.508529f},{0.664337f,0.570587f,0.48279f}, - {0.684867f,0.58822f,0.430063f},{0.694234f,0.596265f,0.403122f},{0.702992f,0.603786f,0.375826f}, - {0.711132f,0.610777f,0.3482f},{0.718647f,0.617232f,0.320268f},{0.725531f,0.623145f,0.292055f}, - {0.731777f,0.62851f,0.263585f},{0.737381f,0.633323f,0.234884f},{0.742338f,0.63758f,0.205977f}, - {0.746642f,0.641277f,0.176888f},{0.750291f,0.64441f,0.147645f},{0.75328f,0.646978f,0.118272f}, - {0.755608f,0.648978f,0.0887941f},{0.757272f,0.650407f,0.0592391f},{0.758272f,0.651265f,0.0296323f}, - {6.73779e-016f,5.78696e-016f,1.0f},{-9.28992e-017f,-7.97894e-017f,1.0f},{0.00379251f,-0.321225f,0.946995f}, - {-0.110265f,-0.419187f,0.901179f},{0.286341f,-0.45048f,0.845622f},{0.480343f,-0.642011f,0.597573f}, - {0.466457f,-0.653936f,0.595638f},{0.0492999f,-0.28214f,0.958106f},{-0.134188f,-0.115252f,0.984231f}, - {0.610502f,-0.76171f,0.216993f},{0.615617f,-0.757316f,0.217916f},{0.0943152f,-0.243477f,0.96531f}, - {0.266692f,-0.467356f,0.842884f},{0.640595f,-0.735863f,-0.219416f},{0.630724f,-0.744341f,0.219416f}, - {0.620697f,-0.752953f,0.218624f},{0.431242f,-0.502097f,-0.749619f},{0.363305f,-0.384377f,-0.848684f}, - {0.534731f,-0.595298f,-0.599736f},{0.609092f,-0.70917f,-0.355084f},{0.0449409f,0.0385987f,-0.998244f}, - {0.204204f,-0.149095f,-0.967508f},{0.182173f,-0.168018f,-0.968805f},{0.0224804f,0.0193078f,-0.999561f}, - {0.155937f,-0.181559f,-0.970938f},{4.72151e-016f,4.05521e-016f,-1.0f},{-0.199957f,-0.171739f,0.964636f}, - {-0.0190607f,-0.340853f,0.939923f},{-0.0419318f,-0.360497f,0.931817f},{-0.178184f,-0.153039f,0.972023f}, - {-0.0647826f,-0.380123f,0.922665f},{-0.221554f,-0.190289f,0.956402f},{0.127004f,-0.587331f,0.79932f}, - {-0.0875737f,-0.399698f,0.912454f},{-0.242957f,-0.208671f,0.947327f},{-0.132814f,-0.438554f,0.888837f}, - {-0.30581f,-0.262654f,0.915146f},{-0.17732f,-0.47678f,0.860952f},{-0.199192f,-0.495565f,0.845422f}, - {-0.366247f,-0.314563f,0.875736f},{-0.15518f,-0.457764f,0.875426f},{-0.241961f,-0.532298f,0.811242f}, - {-0.385773f,-0.331333f,0.861045f},{-0.46032f,-0.39536f,0.794856f},{-0.262774f,-0.550174f,0.792627f}, - {-0.341277f,-0.617599f,0.708591f},{-0.528407f,-0.453838f,0.717508f},{-0.322441f,-0.601421f,0.730976f}, - {-0.559724f,-0.480736f,0.674983f},{-0.39414f,-0.663002f,0.636461f},{-0.544304f,-0.467493f,0.696551f}, - {-0.377159f,-0.648417f,0.661292f},{-0.440909f,-0.703171f,0.557808f},{-0.468385f,-0.726769f,0.502416f}, - {-0.684866f,-0.588219f,0.430066f},{-0.674898f,-0.579657f,0.45663f},{-0.480959f,-0.737569f,0.473994f}, - {-0.513894f,-0.765856f,0.386494f},{-0.702991f,-0.603786f,0.375828f},{-0.539556f,-0.787897f,0.296814f}, - {-0.718646f,-0.617231f,0.32027f},{-0.731777f,-0.628509f,0.263588f},{-0.552648f,-0.799142f,0.236543f}, - {-0.737381f,-0.633323f,0.234887f},{-0.546499f,-0.79386f,0.266692f},{-0.72553f,-0.623144f,0.292057f}, - {-0.742337f,-0.63758f,0.205979f},{-0.562606f,-0.807694f,0.176364f},{-0.558013f,-0.803749f,0.206418f}, - {-0.574558f,-0.81796f,0.0287253f},{-0.758605f,-0.651551f,3.14853e-016f},{-0.758272f,-0.651265f,0.0296338f}, - {-0.566442f,-0.810988f,0.146429f},{-0.297277f,-0.951738f,0.0762915f},{-0.298738f,-0.952993f,0.0506043f}, - {-0.757272f,-0.650407f,0.0592414f},{-0.755608f,-0.648977f,0.0887967f},{-0.573574f,-0.817114f,0.0577667f}, - {-0.569536f,-0.813646f,0.116657f},{0.0668874f,-0.997119f,0.0357603f},{0.46921f,-0.883063f,0.00650573f}, - {0.0662782f,-0.997643f,0.0177823f},{-0.28913f,-0.944741f,0.154497f},{-0.285106f,-0.941285f,0.180824f}, - {-0.2952f,-0.949955f,0.102193f},{0.069387f,-0.994972f,0.0722163f},{0.073677f,-0.991288f,0.109178f}, - {0.801509f,-0.597657f,-0.0197241f},{0.800972f,-0.598118f,-0.0264206f},{0.974563f,-0.217534f,-0.0539127f}, - {0.470347f,-0.882086f,0.0264206f},{0.46981f,-0.882547f,0.0197241f},{0.985709f,0.150194f,-0.0762915f}, - {0.987169f,0.151448f,-0.0506043f},{0.997238f,-0.0742779f,-1.10368e-016f},{0.976204f,-0.216125f,-0.0177823f}, - {0.988031f,0.152188f,-0.0251637f},{0.895322f,0.444493f,-0.0287253f},{0.901253f,0.433294f,-3.00521e-016f}, - {0.983078f,0.183188f,-5.39175e-016f},{0.758605f,0.651551f,-6.22394e-016f},{-0.27502f,-0.932622f,0.233625f}, - {-0.45503f,-0.715299f,0.530373f},{-0.664336f,-0.570586f,0.482793f},{-0.49274f,-0.747688f,0.445162f}, - {-0.206591f,-0.87385f,0.440122f},{-0.589074f,-0.505945f,0.630089f},{-0.126676f,-0.805212f,0.579299f}, - {0.188478f,-0.892688f,0.409371f},{0.177966f,-0.901716f,0.394f},{-0.477987f,-0.410534f,0.776525f}, - {-0.44225f,-0.37984f,0.812488f},{-0.326248f,-0.280208f,0.902799f},{-0.220753f,-0.514083f,0.828846f}, - {0.246673f,-0.842705f,0.47854f},{-0.0264735f,-0.71915f,0.69435f},{0.259287f,-0.831871f,0.490674f}, - {-0.112004f,-0.0961983f,0.98904f},{-0.0897214f,-0.07706f,0.992981f},{-0.0673597f,-0.0578539f,0.99605f}, - {0.507751f,-0.61847f,0.599736f},{0.609586f,-0.709744f,0.353084f},{0.11656f,-0.224371f,0.967508f}, - {-0.044939f,-0.0385972f,0.998244f},{0.138591f,-0.205449f,0.968805f},{-0.0224791f,-0.0193069f,0.999561f}, - {0.155494f,-0.181042f,0.971105f},{-2.38849e-016f,-2.05143e-016f,1.0f},{0.304133f,-0.354104f,0.884372f}, - {0.432488f,-0.503548f,0.747926f},{0.325126f,-0.417168f,0.848684f},{0.536319f,-0.624439f,0.567836f}, - {0.305827f,-0.433744f,0.847547f},{0.246907f,-0.484349f,0.839311f},{0.227014f,-0.501435f,0.834882f}, - {0.207042f,-0.518588f,0.829578f},{0.187022f,-0.535783f,0.823383f},{0.166987f,-0.552991f,0.816282f}, - {0.146969f,-0.570184f,0.808264f},{0.353698f,-0.750783f,0.557873f},{0.339739f,-0.762773f,0.550232f}, - {0.087373f,-0.62137f,0.778631f},{0.06778f,-0.638198f,0.766883f},{0.0483849f,-0.654856f,0.754203f}, - {0.0292249f,-0.671312f,0.740598f},{0.0103371f,-0.687534f,0.726078f},{-0.00824112f,-0.703491f,0.710657f}, - {-0.0443241f,-0.734482f,0.677179f},{-0.0617582f,-0.749456f,0.659168f},{-0.078742f,-0.764043f,0.640343f}, - {-0.0952429f,-0.778215f,0.620734f},{-0.111231f,-0.791946f,0.600374f},{-0.141551f,-0.817988f,0.557547f}, - {-0.169496f,-0.841989f,0.512177f},{-0.182521f,-0.853177f,0.488646f},{-0.194892f,-0.863801f,0.464612f}, - {0.116927f,-0.954141f,0.275577f},{0.48774f,-0.867148f,0.100821f},{-0.217606f,-0.88331f,0.415224f}, - {-0.227926f,-0.892174f,0.389967f},{-0.237545f,-0.900436f,0.3644f},{-0.246457f,-0.90809f,0.338573f}, - {-0.254659f,-0.915135f,0.312533f},{-0.262152f,-0.92157f,0.286331f},{-0.268937f,-0.927398f,0.260012f}, - {-0.280406f,-0.937248f,0.207214f},{0.0765203f,-0.988846f,0.127782f},{-0.292489f,-0.947626f,0.128274f}, - {-0.2996f,-0.953733f,0.0251637f},{-0.339059f,-0.940765f,7.30221e-017f},{-0.564043f,-0.825745f,2.30577e-016f}, - {0.536047f,-0.624123f,-0.56844f},{0.494113f,-0.630183f,0.598933f},{0.452476f,-0.665945f,0.593113f}, - {0.438418f,-0.678019f,0.589983f},{0.424305f,-0.69014f,0.586235f},{0.381854f,-0.726601f,0.571173f}, - {0.367745f,-0.738719f,0.564853f},{0.325893f,-0.774664f,0.541931f},{0.559177f,-0.805792f,0.194989f}, - {0.312187f,-0.786436f,0.53297f},{0.298647f,-0.798065f,0.523356f},{0.2853f,-0.809529f,0.513095f}, - {0.272171f,-0.820805f,0.502197f},{0.52631f,-0.834021f,0.165552f},{0.74501f,-0.646183f,-0.165552f}, - {0.749276f,-0.642519f,-0.160482f},{0.234353f,-0.853287f,0.465812f},{0.222351f,-0.863595f,0.452509f}, - {0.21069f,-0.87361f,0.438652f},{0.199392f,-0.883313f,0.424264f},{0.502847f,-0.854173f,0.132416f}, - {0.768473f,-0.626031f,-0.132417f},{0.771841f,-0.623139f,-0.126333f},{0.167874f,-0.910384f,0.378179f}, - {0.158218f,-0.918677f,0.361938f},{0.149013f,-0.926583f,0.34531f},{0.140272f,-0.934091f,0.328326f}, - {0.132004f,-0.941192f,0.31102f},{0.124221f,-0.947877f,0.293425f},{0.11013f,-0.959979f,0.25751f}, - {0.103832f,-0.965388f,0.239258f},{0.098036f,-0.970367f,0.220857f},{0.0927412f,-0.974914f,0.20234f}, - {0.0879463f,-0.979032f,0.183742f},{0.0798413f,-0.985994f,0.146431f},{0.0713026f,-0.993327f,0.0906466f}, - {0.801887f,-0.597333f,-0.0130831f},{-0.0755429f,-0.997143f,3.49386e-017f},{0.382604f,-0.367801f,-0.847547f}, - {0.605359f,-0.766127f,0.215847f},{0.665961f,-0.714077f,-0.215848f},{0.671124f,-0.709642f,-0.214476f}, - {0.595019f,-0.775007f,0.212875f},{0.584664f,-0.783901f,0.208966f},{0.579503f,-0.788334f,0.206653f}, - {0.574364f,-0.792748f,0.2041f},{0.569256f,-0.797135f,0.201304f},{0.554223f,-0.810046f,0.191472f}, - {0.717096f,-0.670158f,-0.191472f},{0.721979f,-0.665964f,-0.187718f},{0.54934f,-0.814241f,0.187718f}, - {0.544537f,-0.818366f,0.183731f},{0.535208f,-0.826378f,0.175076f},{0.530701f,-0.830249f,0.170419f}, - {0.522044f,-0.837685f,0.160482f},{0.513917f,-0.844665f,0.14977f},{0.510071f,-0.847968f,0.144146f}, - {0.506379f,-0.851139f,0.138358f},{0.499479f,-0.857065f,0.126333f},{0.496281f,-0.859812f,0.120119f}, - {0.493256f,-0.86241f,0.113788f},{0.490408f,-0.864856f,0.107351f},{0.482949f,-0.871262f,0.0875334f}, - {0.78837f,-0.608942f,-0.0875334f},{0.790491f,-0.60712f,-0.0808013f},{0.480829f,-0.873084f,0.0808013f}, - {0.478892f,-0.874747f,0.0740269f},{0.477137f,-0.876254f,0.0672227f},{0.474172f,-0.878801f,0.0535724f}, - {0.472957f,-0.879844f,0.0467496f},{0.471917f,-0.880738f,0.0399431f},{0.471048f,-0.881484f,0.0331634f}, - {0.469433f,-0.882871f,0.0130831f},{0.18498f,-0.982742f,5.93908e-017f},{0.650623f,-0.727251f,-0.218624f}, - {0.655703f,-0.722888f,-0.217917f},{0.645585f,-0.731578f,-0.219122f},{0.660818f,-0.718494f,-0.216992f}, - {0.6763f,-0.705197f,-0.212875f},{0.68148f,-0.700748f,-0.211039f},{0.686655f,-0.696303f,-0.208966f}, - {0.660628f,-0.487166f,-0.571173f},{0.674737f,-0.475049f,-0.564852f},{0.691817f,-0.69187f,-0.206653f}, - {0.696956f,-0.687456f,-0.2041f},{0.702063f,-0.68307f,-0.201305f},{0.707128f,-0.678719f,-0.198267f}, - {0.712143f,-0.674412f,-0.194989f},{0.726783f,-0.661838f,-0.183731f},{0.770311f,-0.392963f,-0.502197f}, - {0.783195f,-0.381897f,-0.490674f},{0.731497f,-0.65779f,-0.179515f},{0.736111f,-0.653826f,-0.175076f}, - {0.740619f,-0.649955f,-0.170419f},{0.753409f,-0.638969f,-0.155219f},{0.854004f,-0.32108f,-0.409371f}, - {0.757402f,-0.63554f,-0.14977f},{0.761248f,-0.632236f,-0.144146f},{0.76494f,-0.629065f,-0.138358f}, - {0.775039f,-0.620392f,-0.120119f},{0.90221f,-0.279676f,-0.328326f},{0.910477f,-0.272576f,-0.311019f}, - {0.778063f,-0.617794f,-0.113788f},{0.780911f,-0.615349f,-0.107351f},{0.783579f,-0.613057f,-0.100821f}, - {0.786066f,-0.610921f,-0.0942108f},{0.792428f,-0.605457f,-0.0740269f},{0.794182f,-0.60395f,-0.0672227f}, - {0.954536f,-0.234735f,-0.183742f},{0.795755f,-0.602599f,-0.0604006f},{0.797147f,-0.601403f,-0.0535724f}, - {0.798362f,-0.60036f,-0.0467497f},{0.799403f,-0.599467f,-0.0399431f},{0.800271f,-0.59872f,-0.0331634f}, - {0.802109f,-0.597142f,-0.00650573f},{0.651551f,-0.758605f,-1.07812e-032f},{0.433008f,-0.90139f,5.07106e-017f}, - {0.562139f,-0.571757f,-0.597573f},{0.576025f,-0.559831f,-0.595638f},{0.548369f,-0.583584f,-0.598933f}, - {0.590006f,-0.547823f,-0.593113f},{0.604064f,-0.535749f,-0.589983f},{0.632324f,-0.511476f,-0.581857f}, - {0.601059f,-0.180175f,-0.778631f},{0.702743f,-0.450995f,-0.550232f},{0.730295f,-0.427331f,-0.53297f}, - {0.743835f,-0.415702f,-0.523356f},{0.757182f,-0.404239f,-0.513095f},{0.732756f,-0.0670628f,-0.677179f}, - {0.795809f,-0.371062f,-0.47854f},{0.808129f,-0.360481f,-0.465812f},{0.820131f,-0.350173f,-0.452509f}, - {0.831792f,-0.340158f,-0.438652f},{0.829983f,0.0164437f,-0.557547f},{0.864516f,-0.312051f,-0.394f}, - {0.874608f,-0.303383f,-0.378179f},{0.884264f,-0.29509f,-0.361938f},{0.893469f,-0.287184f,-0.34531f}, - {0.906037f,0.0817656f,-0.415224f},{0.918261f,-0.26589f,-0.293425f},{0.925555f,-0.259626f,-0.275577f}, - {0.93865f,-0.248379f,-0.239258f},{0.949741f,-0.238853f,-0.20234f},{0.962641f,-0.227774f,-0.146431f}, - {0.973538f,0.13974f,-0.180824f},{0.965962f,-0.224921f,-0.127782f},{0.968805f,-0.222479f,-0.109178f}, - {0.971179f,-0.22044f,-0.0906466f},{0.973095f,-0.218795f,-0.0722163f},{0.975595f,-0.216648f,-0.0357604f}, - {0.943289f,-0.331972f,-1.55829e-016f},{0.825457f,-0.564465f,-4.03832e-017f},{0.402091f,-0.351065f,-0.845622f}, - {0.42174f,-0.334188f,-0.842884f},{0.441525f,-0.317195f,-0.839311f},{0.461418f,-0.30011f,-0.834882f}, - {0.48139f,-0.282956f,-0.829578f},{0.501409f,-0.265762f,-0.823383f},{0.521445f,-0.248554f,-0.816282f}, - {0.541462f,-0.231361f,-0.808264f},{0.561427f,-0.214213f,-0.79932f},{0.581305f,-0.197141f,-0.789443f}, - {0.475944f,0.0842967f,-0.875426f},{0.346402f,0.297518f,-0.889657f},{0.620651f,-0.163347f,-0.766883f}, - {0.640047f,-0.146689f,-0.754203f},{0.659207f,-0.130232f,-0.740598f},{0.678094f,-0.11401f,-0.726078f}, - {0.714905f,-0.0823942f,-0.69435f},{0.75019f,-0.0520888f,-0.659168f},{0.623817f,0.211302f,-0.752465f}, - {0.767173f,-0.0375018f,-0.640343f},{0.783674f,-0.0233296f,-0.620733f},{0.815107f,0.00366745f,-0.579299f}, - {0.731206f,0.303536f,-0.610904f},{0.746803f,0.316933f,-0.58467f},{0.844264f,0.0287092f,-0.535159f}, - {0.857927f,0.0404448f,-0.512177f},{0.870953f,0.0516324f,-0.488646f},{0.883323f,0.0622568f,-0.464612f}, - {0.895022f,0.072305f,-0.440122f},{0.916358f,0.0906297f,-0.389967f},{0.824484f,0.383652f,-0.415977f}, - {0.934889f,0.106546f,-0.338573f},{0.943091f,0.11359f,-0.312533f},{0.950583f,0.120025f,-0.286331f}, - {0.957369f,0.125853f,-0.260012f},{0.968838f,0.135704f,-0.207214f},{0.977561f,0.143196f,-0.154497f}, - {0.980921f,0.146082f,-0.128274f},{0.983632f,0.14841f,-0.102193f},{0.226448f,-0.12999f,-0.96531f}, - {0.248879f,-0.110725f,-0.962185f},{0.271464f,-0.0913273f,-0.958106f},{0.294173f,-0.0718231f,-0.95305f}, - {0.316971f,-0.0522418f,-0.946995f},{0.339824f,-0.0326136f,-0.939923f},{0.362695f,-0.0129701f,-0.931817f}, - {0.385546f,0.00665603f,-0.922665f},{0.408337f,0.0262307f,-0.912454f},{0.431028f,0.0457197f,-0.901179f}, - {0.453578f,0.065087f,-0.888837f},{0.519956f,0.122098f,-0.845422f},{0.541517f,0.140616f,-0.828846f}, - {0.562725f,0.158831f,-0.811242f},{0.583538f,0.176707f,-0.792627f},{0.643204f,0.227954f,-0.730976f}, - {0.662041f,0.244132f,-0.708591f},{0.680291f,0.259807f,-0.68535f},{0.697922f,0.27495f,-0.661292f}, - {0.761673f,0.329704f,-0.557808f},{0.775794f,0.341832f,-0.530373f},{0.789149f,0.353302f,-0.502416f}, - {0.801723f,0.364102f,-0.473994f},{0.852574f,0.407777f,-0.326857f},{0.860319f,0.41443f,-0.296814f}, - {0.873412f,0.425675f,-0.236543f},{0.878777f,0.430282f,-0.206418f},{0.887205f,0.437522f,-0.146429f}, - {0.8903f,0.440179f,-0.116657f},{0.892671f,0.442216f,-0.0870897f},{0.894338f,0.443647f,-0.0577667f}, - {0.0673617f,0.0578556f,-0.99605f},{0.13419f,0.115254f,-0.98423f},{0.156257f,0.134206f,-0.978556f}, - {0.178186f,0.153041f,-0.972023f},{0.199959f,0.171741f,-0.964635f},{0.221556f,0.19029f,-0.956401f}, - {0.242959f,0.208673f,-0.947326f},{0.264148f,0.226872f,-0.937419f},{0.285105f,0.244871f,-0.926689f}, - {0.305812f,0.262656f,-0.915145f},{0.32625f,0.28021f,-0.902798f},{0.423793f,0.363987f,-0.829405f}, - {0.477988f,0.410535f,-0.776523f},{0.528407f,0.453839f,-0.717507f},{0.559724f,0.480737f,-0.674982f}, - {0.589075f,0.505946f,-0.630087f},{0.616357f,0.529378f,-0.582978f},{0.653193f,0.561015f,-0.508529f}, - {0.684867f,0.58822f,-0.430063f},{0.694234f,0.596265f,-0.403122f},{0.725531f,0.623145f,-0.292055f}, - {0.731777f,0.62851f,-0.263585f},{0.737381f,0.633323f,-0.234884f},{0.746642f,0.641277f,-0.176888f}, - {0.750291f,0.64441f,-0.147645f},{0.75328f,0.646978f,-0.118272f},{0.755608f,0.648978f,-0.0887941f}, - {0.757272f,0.650407f,-0.0592391f},{0.758272f,0.651265f,-0.0296323f},{0.878777f,0.430282f,0.206418f}, - {0.844021f,0.400431f,0.356769f},{0.8903f,0.440179f,0.116657f},{0.892671f,0.442216f,0.0870897f}, - {0.983632f,0.14841f,0.102193f},{0.750291f,0.64441f,0.147645f},{0.75328f,0.646978f,0.118272f}, - {0.976204f,-0.216125f,0.0177823f},{0.943289f,-0.331972f,3.41808e-016f},{0.80211f,-0.597142f,0.00650572f}, - {0.974563f,-0.217534f,0.0539127f},{0.973095f,-0.218795f,0.0722163f},{0.985709f,0.150194f,0.0762915f}, - {0.46921f,-0.883063f,-0.00650572f},{0.184979f,-0.982742f,-4.69192e-016f},{0.0662783f,-0.997643f,-0.0177823f}, - {0.801509f,-0.597657f,0.0197241f},{0.800972f,-0.598118f,0.0264206f},{-0.574558f,-0.81796f,-0.0287252f}, - {-0.573574f,-0.817114f,-0.0577667f},{-0.2996f,-0.953733f,-0.0251636f},{-0.0755427f,-0.997143f,-5.50975e-016f}, - {-0.758605f,-0.651551f,-9.3359e-016f},{-0.564043f,-0.825745f,-3.00566e-016f},{-0.757272f,-0.650407f,-0.0592414f}, - {0.887205f,0.437522f,0.146429f},{0.746642f,0.641277f,0.176888f},{-0.758271f,-0.651265f,-0.0296337f}, - {0.731777f,0.62851f,0.263585f},{0.873412f,0.425675f,0.236543f},{0.867263f,0.420393f,0.266692f}, - {0.737381f,0.633323f,0.234884f},{0.860319f,0.41443f,0.296814f},{0.725531f,0.623145f,0.292055f}, - {0.852574f,0.407777f,0.326857f},{0.718647f,0.617232f,0.320268f},{0.694234f,0.596265f,0.403122f}, - {0.813504f,0.374221f,0.445162f},{0.801723f,0.364102f,0.473994f},{0.824484f,0.383652f,0.415977f}, - {0.775794f,0.341832f,0.530373f},{0.653193f,0.561015f,0.508529f},{0.602981f,0.517889f,0.606799f}, - {0.731206f,0.303536f,0.610904f},{0.761673f,0.329704f,0.557808f},{0.697922f,0.27495f,0.661292f}, - {0.544305f,0.467493f,0.696551f},{0.714903f,0.289535f,0.636461f},{0.512046f,0.439786f,0.737833f}, - {0.643204f,0.227954f,0.730976f},{0.528407f,0.453839f,0.717507f},{0.662041f,0.244132f,0.708591f}, - {0.583538f,0.176707f,0.792627f},{0.541517f,0.140616f,0.828846f},{0.32625f,0.28021f,0.902798f}, - {0.346402f,0.297518f,0.889657f},{0.475944f,0.0842968f,0.875426f},{0.519956f,0.122098f,0.845422f}, - {0.453578f,0.065087f,0.888837f},{0.285105f,0.244871f,0.926689f},{0.305812f,0.262656f,0.915145f}, - {0.385546f,0.00665599f,0.922665f},{0.242959f,0.208673f,0.947326f},{0.408337f,0.0262308f,0.912454f}, - {0.199959f,0.171741f,0.964635f},{0.362695f,-0.0129701f,0.931817f},{0.339824f,-0.0326136f,0.939923f}, - {0.221556f,0.19029f,0.956401f},{0.156257f,0.134206f,0.978556f},{0.316971f,-0.0522418f,0.946995f}, - {0.294173f,-0.0718231f,0.95305f},{0.178186f,0.153041f,0.972023f},{0.271464f,-0.0913273f,0.958106f}, - {0.650623f,-0.727251f,0.218624f},{0.576025f,-0.559831f,0.595638f},{0.182173f,-0.168017f,0.968805f}, - {0.0449408f,0.0385988f,0.998244f},{0.204204f,-0.149095f,0.967508f},{0.0224803f,0.0193079f,0.999561f}, - {0.226448f,-0.12999f,0.96531f},{0.248878f,-0.110725f,0.962185f},{0.402091f,-0.351064f,0.845622f}, - {0.0673616f,0.0578556f,0.99605f},{0.0897231f,0.0770615f,0.992981f},{0.48139f,-0.282956f,0.829578f}, - {0.604064f,-0.535749f,0.589983f},{0.461418f,-0.30011f,0.834882f},{0.655702f,-0.722888f,0.217917f}, - {0.42174f,-0.334188f,0.842884f},{0.620697f,-0.752953f,-0.218624f},{0.625735f,-0.748626f,-0.219122f}, - {0.645585f,-0.731578f,0.219122f},{0.286341f,-0.45048f,-0.845622f},{0.305827f,-0.433744f,-0.847547f}, - {0.480343f,-0.642011f,-0.597573f},{0.432488f,-0.503548f,-0.747926f},{0.507751f,-0.61847f,-0.599737f}, - {0.325127f,-0.417168f,-0.848684f},{0.138591f,-0.205449f,-0.968805f},{0.304133f,-0.354104f,-0.884372f}, - {0.155494f,-0.181042f,-0.971105f},{-0.0f,0.0f,-1.0f},{-0.0224791f,-0.019307f,-0.999561f}, - {2.50764e-009f,-2.91966e-009f,1.0f},{0.155937f,-0.181559f,0.970938f},{0.521445f,-0.248554f,0.816282f}, - {0.562725f,0.158831f,0.811242f},{0.498084f,0.103313f,0.860952f},{0.678094f,-0.11401f,0.726078f}, - {0.477988f,0.410535f,0.776523f},{0.783674f,-0.0233295f,0.620733f},{0.831792f,-0.340158f,0.438652f}, - {0.820131f,-0.350173f,0.452509f},{0.589075f,0.505946f,0.630087f},{0.616357f,0.529378f,0.582978f}, - {0.684867f,0.58822f,0.430063f},{0.789149f,0.353302f,0.502416f},{0.884264f,-0.29509f,0.361938f}, - {0.870953f,0.0516324f,0.488646f},{0.893469f,-0.287184f,0.34531f},{0.950583f,0.120025f,0.286331f}, - {0.755608f,0.648978f,0.0887942f},{0.757272f,0.650407f,0.059239f},{0.894338f,0.443647f,0.0577667f}, - {0.988031f,0.152189f,0.0251636f},{0.997238f,-0.0742779f,5.00783e-016f},{0.758272f,0.651265f,0.0296322f}, - {0.895322f,0.444493f,0.0287252f},{0.901253f,0.433294f,6.47993e-016f},{0.983078f,0.183188f,6.55067e-016f}, - {0.758605f,0.651551f,9.4456e-016f},{0.825457f,-0.564465f,2.60919e-016f},{0.433008f,-0.90139f,-2.0282e-016f}, - {0.987169f,0.151448f,0.0506042f},{0.980921f,0.146082f,0.128274f},{0.977561f,0.143196f,0.154497f}, - {0.973538f,0.13974f,0.180824f},{0.968838f,0.135704f,0.207214f},{0.963451f,0.131077f,0.233625f}, - {0.957369f,0.125853f,0.260012f},{0.944446f,-0.243401f,0.220857f},{0.93865f,-0.248379f,0.239258f}, - {0.934889f,0.106546f,0.338573f},{0.925977f,0.0988913f,0.3644f},{0.916358f,0.0906299f,0.389967f}, - {0.906037f,0.0817656f,0.415224f},{0.895022f,0.072305f,0.440122f},{0.883323f,0.0622569f,0.464612f}, - {0.857927f,0.0404447f,0.512177f},{0.844263f,0.0287093f,0.535159f},{0.829983f,0.0164437f,0.557547f}, - {0.815107f,0.00366744f,0.579299f},{0.799662f,-0.00959806f,0.600374f},{0.767173f,-0.0375019f,0.640343f}, - {0.732756f,-0.0670627f,0.677179f},{0.714905f,-0.0823943f,0.69435f},{0.696673f,-0.0980537f,0.710657f}, - {0.730295f,-0.427331f,0.53297f},{0.712143f,-0.674412f,0.194989f},{0.659207f,-0.130232f,0.740598f}, - {0.640047f,-0.146689f,0.754203f},{0.620651f,-0.163347f,0.766883f},{0.601058f,-0.180175f,0.778631f}, - {0.581305f,-0.197141f,0.789443f},{0.561427f,-0.214213f,0.79932f},{0.541462f,-0.231361f,0.808264f}, - {0.501409f,-0.265762f,0.823383f},{0.618177f,-0.523627f,0.586235f},{0.441525f,-0.317195f,0.839311f}, - {0.382604f,-0.367801f,0.847547f},{0.363305f,-0.384377f,0.848684f},{0.29793f,-0.346881f,0.889332f}, - {-0.298738f,-0.952993f,-0.0506042f},{0.975595f,-0.216648f,0.0357603f},{0.971179f,-0.22044f,0.0906467f}, - {0.968805f,-0.222479f,0.109178f},{0.965962f,-0.224921f,0.127782f},{0.962641f,-0.227774f,0.146431f}, - {0.954536f,-0.234735f,0.183742f},{0.949741f,-0.238853f,0.20234f},{0.932352f,-0.253788f,0.25751f}, - {0.783579f,-0.613057f,0.100821f},{0.925555f,-0.259626f,0.275577f},{0.918261f,-0.26589f,0.293425f}, - {0.910478f,-0.272576f,0.31102f},{0.90221f,-0.279676f,0.328326f},{0.761248f,-0.632237f,0.144146f}, - {0.510071f,-0.847968f,-0.144146f},{0.513917f,-0.844665f,-0.14977f},{0.874608f,-0.303383f,0.378179f}, - {0.864516f,-0.312051f,0.394f},{0.854004f,-0.32108f,0.409371f},{0.84309f,-0.330454f,0.424264f}, - {0.736111f,-0.653826f,0.175076f},{0.535208f,-0.826378f,-0.175076f},{0.539823f,-0.822414f,-0.179515f}, - {0.808129f,-0.360481f,0.465812f},{0.795809f,-0.371062f,0.47854f},{0.783195f,-0.381897f,0.490674f}, - {0.770311f,-0.392963f,0.502197f},{0.757182f,-0.404239f,0.513095f},{0.743835f,-0.415702f,0.523356f}, - {0.716589f,-0.439103f,0.541931f},{0.702743f,-0.450995f,0.550232f},{0.688784f,-0.462984f,0.557873f}, - {0.674737f,-0.475049f,0.564853f},{0.660628f,-0.487166f,0.571173f},{0.632324f,-0.511476f,0.581857f}, - {0.590006f,-0.547823f,0.593113f},{0.630724f,-0.744341f,-0.219416f},{0.548369f,-0.583584f,0.598933f}, - {0.534731f,-0.595298f,0.599736f},{0.431242f,-0.502097f,0.749619f},{0.800271f,-0.59872f,0.0331634f}, - {0.801887f,-0.597333f,0.0130831f},{0.799403f,-0.599466f,0.0399431f},{0.471917f,-0.880738f,-0.0399431f}, - {0.472957f,-0.879844f,-0.0467496f},{0.798362f,-0.60036f,0.0467496f},{0.797147f,-0.601403f,0.0535724f}, - {0.794182f,-0.60395f,0.0672227f},{0.792428f,-0.605457f,0.0740269f},{0.790491f,-0.607121f,0.0808012f}, - {0.78837f,-0.608942f,0.0875334f},{0.780911f,-0.615348f,0.107351f},{0.490408f,-0.864856f,-0.107351f}, - {0.493256f,-0.86241f,-0.113788f},{0.778063f,-0.617794f,0.113788f},{0.775039f,-0.620392f,0.120119f}, - {0.771841f,-0.623139f,0.126333f},{0.768473f,-0.626031f,0.132417f},{0.76494f,-0.629065f,0.138358f}, - {0.757402f,-0.63554f,0.14977f},{0.749276f,-0.642519f,0.160482f},{0.74501f,-0.646183f,0.165552f}, - {0.740619f,-0.649955f,0.170419f},{0.731497f,-0.65779f,0.179515f},{0.726783f,-0.661838f,0.183731f}, - {0.72198f,-0.665964f,0.187718f},{0.717096f,-0.670158f,0.191472f},{0.702063f,-0.68307f,0.201304f}, - {0.569257f,-0.797135f,-0.201304f},{0.574363f,-0.792748f,-0.2041f},{0.696956f,-0.687456f,0.2041f}, - {0.691817f,-0.69187f,0.206653f},{0.686655f,-0.696303f,0.208966f},{0.6763f,-0.705197f,0.212875f}, - {0.671124f,-0.709642f,0.214476f},{0.665961f,-0.714077f,0.215848f},{0.660818f,-0.718494f,0.216993f}, - {0.640595f,-0.735863f,0.219416f},{0.46981f,-0.882547f,-0.0197242f},{0.470347f,-0.882086f,-0.0264206f}, - {0.469433f,-0.882871f,-0.013083f},{0.471048f,-0.881484f,-0.0331634f},{0.474172f,-0.878801f,-0.0535725f}, - {0.475565f,-0.877605f,-0.0604006f},{0.477137f,-0.876254f,-0.0672226f},{0.0879462f,-0.979032f,-0.183742f}, - {0.0927413f,-0.974914f,-0.20234f},{0.478891f,-0.874747f,-0.074027f},{0.480829f,-0.873084f,-0.0808012f}, - {0.482949f,-0.871262f,-0.0875334f},{0.485253f,-0.869283f,-0.0942108f},{0.48774f,-0.867147f,-0.100821f}, - {0.496281f,-0.859812f,-0.120119f},{0.140272f,-0.934091f,-0.328326f},{0.149013f,-0.926583f,-0.34531f}, - {0.499479f,-0.857065f,-0.126333f},{0.502847f,-0.854173f,-0.132416f},{0.506379f,-0.851139f,-0.138358f}, - {0.51791f,-0.841235f,-0.155219f},{0.21069f,-0.87361f,-0.438652f},{0.522044f,-0.837685f,-0.160482f}, - {0.52631f,-0.834021f,-0.165552f},{0.530701f,-0.830249f,-0.170419f},{0.544537f,-0.818366f,-0.183731f}, - {0.272171f,-0.820805f,-0.502197f},{0.2853f,-0.809529f,-0.513095f},{0.54934f,-0.814241f,-0.187718f}, - {0.554223f,-0.810046f,-0.191472f},{0.559177f,-0.805792f,-0.194989f},{0.564191f,-0.801485f,-0.198267f}, - {0.579503f,-0.788334f,-0.206653f},{0.584664f,-0.783901f,-0.208966f},{0.381854f,-0.726601f,-0.571173f}, - {0.58984f,-0.779456f,-0.211039f},{0.595019f,-0.775007f,-0.212874f},{0.600195f,-0.770562f,-0.214476f}, - {0.605359f,-0.766127f,-0.215847f},{0.610502f,-0.76171f,-0.216993f},{0.615617f,-0.757316f,-0.217917f}, - {0.0679193f,-0.996233f,-0.0539127f},{0.069387f,-0.994972f,-0.0722163f},{0.0668873f,-0.997119f,-0.0357603f}, - {0.0713025f,-0.993327f,-0.0906467f},{0.0736771f,-0.991288f,-0.109178f},{0.0765202f,-0.988846f,-0.127782f}, - {0.0798413f,-0.985994f,-0.146431f},{-0.246457f,-0.90809f,-0.338573f},{0.103832f,-0.965388f,-0.239258f}, - {0.116927f,-0.954141f,-0.275577f},{0.124221f,-0.947877f,-0.293425f},{0.132004f,-0.941192f,-0.31102f}, - {-0.169495f,-0.841989f,-0.512177f},{0.158218f,-0.918677f,-0.361938f},{0.167874f,-0.910384f,-0.378179f}, - {0.177966f,-0.901716f,-0.394f},{0.188478f,-0.892688f,-0.409371f},{-0.078742f,-0.764043f,-0.640343f}, - {0.222351f,-0.863595f,-0.452509f},{0.234353f,-0.853287f,-0.465812f},{0.246673f,-0.842705f,-0.47854f}, - {0.259287f,-0.831871f,-0.490674f},{0.0292248f,-0.671312f,-0.740598f},{0.298647f,-0.798065f,-0.523356f}, - {0.312187f,-0.786436f,-0.53297f},{0.339739f,-0.762773f,-0.550232f},{0.367745f,-0.738719f,-0.564853f}, - {0.410157f,-0.702291f,-0.581857f},{0.207042f,-0.518588f,-0.829578f},{0.424305f,-0.69014f,-0.586235f}, - {0.438418f,-0.678019f,-0.589983f},{0.452476f,-0.665945f,-0.593113f},{0.494113f,-0.630183f,-0.598933f}, - {0.609586f,-0.709744f,-0.353084f},{-0.339059f,-0.940765f,-6.77795e-016f},{-0.297277f,-0.951738f,-0.0762915f}, - {-0.2952f,-0.949954f,-0.102193f},{-0.29249f,-0.947626f,-0.128274f},{-0.28913f,-0.944741f,-0.154497f}, - {-0.285106f,-0.941285f,-0.180824f},{-0.280406f,-0.937248f,-0.207214f},{-0.27502f,-0.932622f,-0.233625f}, - {-0.268937f,-0.927398f,-0.260012f},{-0.262152f,-0.92157f,-0.286331f},{-0.254659f,-0.915135f,-0.312533f}, - {-0.503721f,-0.757119f,-0.415977f},{-0.674898f,-0.579657f,-0.45663f},{-0.237545f,-0.900436f,-0.3644f}, - {-0.227927f,-0.892174f,-0.389967f},{-0.217606f,-0.88331f,-0.415224f},{-0.206591f,-0.87385f,-0.440122f}, - {-0.182522f,-0.853177f,-0.488646f},{-0.155832f,-0.830254f,-0.535159f},{-0.410442f,-0.677003f,-0.610904f}, - {-0.141551f,-0.817988f,-0.557547f},{-0.126675f,-0.805212f,-0.579299f},{-0.095243f,-0.778215f,-0.620733f}, - {-0.283151f,-0.567676f,-0.773026f},{-0.0617581f,-0.749456f,-0.659168f},{-0.0443242f,-0.734482f,-0.677179f}, - {-0.0264735f,-0.71915f,-0.69435f},{-0.008241f,-0.703491f,-0.710657f},{0.0103371f,-0.687534f,-0.726078f}, - {0.048385f,-0.654856f,-0.754203f},{-0.15518f,-0.457764f,-0.875426f},{0.0873729f,-0.62137f,-0.778631f}, - {0.107127f,-0.604404f,-0.789443f},{0.127004f,-0.587331f,-0.79932f},{0.146969f,-0.570183f,-0.808264f}, - {0.187022f,-0.535783f,-0.823383f},{0.227014f,-0.501435f,-0.834882f},{0.246907f,-0.484349f,-0.839311f}, - {0.266692f,-0.467356f,-0.842884f},{0.536319f,-0.624439f,-0.567836f},{-0.569536f,-0.813646f,-0.116657f}, - {-0.566442f,-0.810988f,-0.146429f},{-0.558013f,-0.803749f,-0.206418f},{-0.552648f,-0.799142f,-0.236543f}, - {-0.546499f,-0.79386f,-0.266692f},{-0.539556f,-0.787897f,-0.296814f},{-0.53181f,-0.781244f,-0.326857f}, - {-0.513894f,-0.765856f,-0.386494f},{-0.480959f,-0.737569f,-0.473994f},{-0.468385f,-0.726769f,-0.502416f}, - {-0.45503f,-0.715299f,-0.530373f},{-0.440909f,-0.703171f,-0.557808f},{-0.39414f,-0.663001f,-0.636461f}, - {-0.377159f,-0.648417f,-0.661292f},{-0.359528f,-0.633274f,-0.68535f},{-0.341277f,-0.617599f,-0.708591f}, - {-0.322441f,-0.601421f,-0.730976f},{-0.262774f,-0.550174f,-0.792627f},{-0.241961f,-0.532298f,-0.811242f}, - {-0.220753f,-0.514083f,-0.828846f},{-0.199192f,-0.495565f,-0.845422f},{-0.132814f,-0.438554f,-0.888837f}, - {-0.0875737f,-0.399698f,-0.912454f},{-0.0647825f,-0.380123f,-0.922664f},{-0.0419318f,-0.360497f,-0.931817f}, - {-0.0190608f,-0.340853f,-0.939923f},{0.00379256f,-0.321225f,-0.946995f},{0.0265911f,-0.301644f,-0.95305f}, - {0.0493f,-0.28214f,-0.958106f},{0.0718851f,-0.262741f,-0.962185f},{0.0943152f,-0.243477f,-0.96531f}, - {0.11656f,-0.224371f,-0.967508f},{-0.755608f,-0.648978f,-0.0887968f},{-0.742337f,-0.63758f,-0.205979f}, - {-0.737381f,-0.633323f,-0.234887f},{-0.731777f,-0.628509f,-0.263588f},{-0.72553f,-0.623144f,-0.292057f}, - {-0.718646f,-0.617231f,-0.320271f},{-0.711131f,-0.610777f,-0.348202f},{-0.702991f,-0.603786f,-0.375828f}, - {-0.684866f,-0.588219f,-0.430066f},{-0.629191f,-0.5404f,-0.558647f},{-0.589074f,-0.505945f,-0.630088f}, - {-0.544304f,-0.467493f,-0.696551f},{-0.512045f,-0.439786f,-0.737834f},{-0.477987f,-0.410534f,-0.776525f}, - {-0.44225f,-0.37984f,-0.812488f},{-0.385773f,-0.331333f,-0.861045f},{-0.366247f,-0.314563f,-0.875736f}, - {-0.326248f,-0.280208f,-0.902799f},{-0.30581f,-0.262654f,-0.915146f},{-0.221554f,-0.190289f,-0.956402f}, - {-0.199957f,-0.171739f,-0.964636f},{-0.178184f,-0.153039f,-0.972023f},{-0.134188f,-0.115252f,-0.984231f}, - {-0.112004f,-0.0961983f,-0.98904f},{-0.0897214f,-0.07706f,-0.992981f},{-0.0673596f,-0.0578539f,-0.99605f}, - {-0.044939f,-0.0385973f,-0.998244f},{-0.775794f,-0.341832f,-0.530373f},{-0.761673f,-0.329704f,-0.557808f}, - {-0.76494f,0.629065f,-0.138358f},{-0.864516f,0.312051f,-0.394f},{-0.874608f,0.303383f,-0.378179f}, - {-0.801723f,-0.364102f,-0.473994f},{-0.653193f,-0.561015f,-0.508529f},{-0.789149f,-0.353302f,-0.502416f}, - {-0.684867f,-0.58822f,-0.430063f},{-0.824484f,-0.383652f,-0.415977f},{-0.694234f,-0.596265f,-0.403122f}, - {-0.852574f,-0.407777f,-0.326857f},{-0.93865f,0.248379f,-0.239258f},{-0.860319f,-0.41443f,-0.296814f}, - {-0.725531f,-0.623145f,-0.292055f},{-0.731777f,-0.62851f,-0.263585f},{-0.873412f,-0.425675f,-0.236543f}, - {-0.878777f,-0.430282f,-0.206418f},{-0.737381f,-0.633323f,-0.234884f},{-0.746642f,-0.641277f,-0.176888f}, - {-0.887205f,-0.437522f,-0.146429f},{-0.750291f,-0.64441f,-0.147645f},{-0.8903f,-0.440179f,-0.116657f}, - {-0.75328f,-0.646978f,-0.118272f},{-0.892671f,-0.442216f,-0.0870897f},{-0.985709f,-0.150194f,-0.0762915f}, - {-0.983632f,-0.14841f,-0.102193f},{0.758272f,0.651265f,0.0296337f},{0.574558f,0.81796f,0.0287252f}, - {0.2996f,0.953733f,0.0251636f},{-0.0662783f,0.997643f,0.0177823f},{0.0755427f,0.997143f,4.44435e-016f}, - {0.564043f,0.825745f,3.04136e-016f},{0.573574f,0.817114f,0.0577667f},{0.297277f,0.951738f,0.0762915f}, - {-0.755608f,-0.648978f,-0.0887942f},{-0.974563f,0.217534f,-0.0539127f},{-0.973095f,0.218795f,-0.0722163f}, - {-0.800972f,0.598118f,-0.0264206f},{-0.971179f,0.22044f,-0.0906467f},{-0.801509f,0.597657f,-0.0197242f}, - {-0.757272f,-0.650407f,-0.059239f},{-0.894338f,-0.443647f,-0.0577667f},{-0.997238f,0.0742779f,-4.48371e-016f}, - {-0.976204f,0.216125f,-0.0177823f},{-0.988031f,-0.152189f,-0.0251636f},{-0.943289f,0.331972f,-4.29587e-016f}, - {-0.80211f,0.597142f,-0.00650572f},{-0.825457f,0.564465f,-3.05233e-016f},{-0.983078f,-0.183188f,-6.14496e-016f}, - {-0.895322f,-0.444493f,-0.0287252f},{-0.901253f,-0.433294f,-9.46059e-016f},{-0.758272f,-0.651265f,-0.0296322f}, - {-0.46921f,0.883063f,0.00650572f},{-0.184979f,0.982742f,5.48296e-016f},{-0.616357f,-0.529378f,-0.582978f}, - {-0.746803f,-0.316933f,-0.58467f},{-0.731206f,-0.303536f,-0.610904f},{-0.589075f,-0.505946f,-0.630087f}, - {-0.697922f,-0.27495f,-0.661292f},{-0.559724f,-0.480737f,-0.674982f},{-0.680291f,-0.259807f,-0.68535f}, - {-0.528407f,-0.453839f,-0.717507f},{-0.662041f,-0.244132f,-0.708591f},{-0.75019f,0.0520889f,-0.659168f}, - {-0.820131f,0.350173f,-0.452509f},{-0.808129f,0.360481f,-0.465812f},{-0.643204f,-0.227954f,-0.730976f}, - {-0.623817f,-0.211302f,-0.752465f},{-0.477988f,-0.410535f,-0.776523f},{-0.583538f,-0.176707f,-0.792627f}, - {-0.423793f,-0.363987f,-0.829405f},{-0.562725f,-0.158831f,-0.811242f},{-0.541517f,-0.140616f,-0.828846f}, - {-0.519956f,-0.122098f,-0.845422f},{-0.707128f,0.678719f,-0.198267f},{-0.702743f,0.450995f,-0.550232f}, - {-0.475944f,-0.0842968f,-0.875426f},{-0.346402f,-0.297518f,-0.889657f},{-0.32625f,-0.28021f,-0.902798f}, - {-0.305812f,-0.262656f,-0.915145f},{-0.285105f,-0.244871f,-0.926689f},{-0.453578f,-0.065087f,-0.888837f}, - {-0.431028f,-0.0457196f,-0.901179f},{-0.264148f,-0.226872f,-0.937419f},{-0.408337f,-0.0262308f,-0.912454f}, - {-0.242959f,-0.208673f,-0.947326f},{-0.221556f,-0.19029f,-0.956401f},{-0.385546f,-0.00665601f,-0.922665f}, - {-0.362695f,0.0129701f,-0.931817f},{-0.199959f,-0.171741f,-0.964635f},{-0.339824f,0.0326136f,-0.939923f}, - {-0.48139f,0.282956f,-0.829578f},{-0.316971f,0.0522418f,-0.946995f},{-0.501409f,0.265762f,-0.823383f}, - {-0.178186f,-0.153041f,-0.972023f},{-0.294173f,0.0718231f,-0.95305f},{-0.156257f,-0.134206f,-0.978556f}, - {-0.248878f,0.110725f,-0.962185f},{-0.441525f,0.317195f,-0.839311f},{-0.42174f,0.334188f,-0.842884f}, - {-0.13419f,-0.115253f,-0.98423f},{-0.650623f,0.727251f,-0.218624f},{-0.620697f,0.752953f,0.218624f}, - {-0.645585f,0.731578f,-0.219122f},{-0.665961f,0.714077f,-0.215848f},{-0.660818f,0.718494f,-0.216993f}, - {-0.590006f,0.547823f,-0.593113f},{-0.286341f,0.45048f,0.845622f},{-0.480343f,0.642011f,0.597573f}, - {-0.266692f,0.467356f,0.842884f},{-0.325127f,0.417168f,0.848684f},{-0.432488f,0.503548f,0.747926f}, - {-0.507751f,0.61847f,0.599737f},{-0.548369f,0.583584f,-0.598933f},{-0.562139f,0.571757f,-0.597573f}, - {-0.304133f,0.354104f,0.884372f},{-0.138591f,0.205449f,0.968805f},{-0.155494f,0.181043f,0.971105f}, - {-0.576025f,0.559831f,-0.595638f},{-0.655703f,0.722888f,-0.217916f},{-0.382604f,0.367801f,-0.847547f}, - {-0.402091f,0.351064f,-0.845622f},{0.0224792f,0.0193069f,0.999561f},{-0.271464f,0.0913273f,-0.958106f}, - {-0.226448f,0.12999f,-0.96531f},{-0.204204f,0.149095f,-0.967508f},{-0.0673616f,-0.0578556f,-0.99605f}, - {-0.182173f,0.168017f,-0.968805f},{-0.0224803f,-0.0193079f,-0.999561f},{-0.0449408f,-0.0385988f,-0.998244f}, - {-0.155937f,0.181559f,-0.970938f},{-0.433008f,0.90139f,1.81967e-016f},{-0.987169f,-0.151448f,-0.0506042f}, - {-0.980921f,-0.146082f,-0.128274f},{-0.977561f,-0.143196f,-0.154497f},{-0.973538f,-0.13974f,-0.180824f}, - {-0.968838f,-0.135704f,-0.207214f},{-0.957369f,-0.125853f,-0.260012f},{-0.950583f,-0.120025f,-0.286331f}, - {-0.943091f,-0.11359f,-0.312533f},{-0.934889f,-0.106546f,-0.338573f},{-0.916358f,-0.0906299f,-0.389967f}, - {-0.906037f,-0.0817656f,-0.415224f},{-0.895022f,-0.072305f,-0.440122f},{-0.883323f,-0.0622569f,-0.464612f}, - {-0.870953f,-0.0516324f,-0.488646f},{-0.857927f,-0.0404447f,-0.512177f},{-0.844263f,-0.0287093f,-0.535159f}, - {-0.829983f,-0.0164437f,-0.557547f},{-0.815107f,-0.00366744f,-0.579299f},{-0.783674f,0.0233295f,-0.620733f}, - {-0.767173f,0.0375019f,-0.640343f},{-0.732756f,0.0670627f,-0.677179f},{-0.714905f,0.0823942f,-0.69435f}, - {-0.678094f,0.11401f,-0.726078f},{-0.659207f,0.130232f,-0.740598f},{-0.640047f,0.146689f,-0.754203f}, - {-0.620651f,0.163347f,-0.766883f},{-0.601058f,0.180175f,-0.778631f},{-0.581305f,0.197141f,-0.789443f}, - {-0.561427f,0.214213f,-0.79932f},{-0.541462f,0.231361f,-0.808264f},{-0.521445f,0.248554f,-0.816282f}, - {-0.461418f,0.30011f,-0.834882f},{-0.604064f,0.535749f,-0.589983f},{-0.363305f,0.384377f,-0.848684f}, - {0.757272f,0.650407f,0.0592414f},{-0.975595f,0.216648f,-0.0357603f},{-0.968805f,0.222479f,-0.109178f}, - {-0.965962f,0.224921f,-0.127782f},{-0.962641f,0.227774f,-0.146431f},{-0.954536f,0.234735f,-0.183742f}, - {-0.949741f,0.238853f,-0.20234f},{-0.918261f,0.26589f,-0.293425f},{-0.925555f,0.259626f,-0.275577f}, - {-0.783579f,0.613057f,-0.100821f},{-0.910478f,0.272576f,-0.31102f},{-0.90221f,0.279676f,-0.328326f}, - {-0.893469f,0.287184f,-0.34531f},{-0.884264f,0.29509f,-0.361938f},{-0.854004f,0.32108f,-0.409371f}, - {-0.831792f,0.340158f,-0.438652f},{-0.731496f,0.65779f,-0.179515f},{-0.726783f,0.661838f,-0.183731f}, - {-0.795809f,0.371062f,-0.47854f},{-0.783195f,0.381897f,-0.490674f},{-0.770311f,0.392963f,-0.502197f}, - {-0.757182f,0.404239f,-0.513095f},{-0.743835f,0.415702f,-0.523356f},{-0.730295f,0.427331f,-0.53297f}, - {-0.674737f,0.475049f,-0.564853f},{-0.660628f,0.487166f,-0.571173f},{-0.632324f,0.511476f,-0.581857f}, - {-0.640595f,0.735863f,-0.219416f},{-0.630724f,0.744341f,0.219416f},{-0.534731f,0.595298f,-0.599736f}, - {-0.431242f,0.502097f,-0.749619f},{-0.801887f,0.597333f,-0.013083f},{-0.800271f,0.59872f,-0.0331634f}, - {-0.799403f,0.599466f,-0.0399431f},{-0.474172f,0.878801f,0.0535724f},{-0.795755f,0.6026f,-0.0604006f}, - {-0.797147f,0.601403f,-0.0535725f},{-0.798362f,0.60036f,-0.0467496f},{-0.794182f,0.60395f,-0.0672227f}, - {-0.792428f,0.605457f,-0.0740269f},{-0.790491f,0.607121f,-0.0808013f},{-0.78837f,0.608942f,-0.0875334f}, - {-0.786066f,0.610921f,-0.0942108f},{-0.493256f,0.86241f,0.113788f},{-0.775039f,0.620392f,-0.120119f}, - {-0.778063f,0.617794f,-0.113788f},{-0.780911f,0.615348f,-0.107351f},{-0.771841f,0.623139f,-0.126333f}, - {-0.768473f,0.626031f,-0.132417f},{-0.513917f,0.844665f,0.14977f},{-0.753409f,0.638969f,-0.155219f}, - {-0.757402f,0.63554f,-0.14977f},{-0.761248f,0.632237f,-0.144146f},{-0.749276f,0.642519f,-0.160482f}, - {-0.74501f,0.646183f,-0.165552f},{-0.740619f,0.649955f,-0.170419f},{-0.736112f,0.653826f,-0.175076f}, - {-0.72198f,0.665964f,-0.187718f},{-0.717096f,0.670158f,-0.191472f},{-0.712143f,0.674412f,-0.194989f}, - {-0.574363f,0.792748f,0.2041f},{-0.691817f,0.69187f,-0.206653f},{-0.696956f,0.687456f,-0.2041f}, - {-0.702063f,0.68307f,-0.201304f},{-0.686655f,0.696303f,-0.208966f},{-0.68148f,0.700748f,-0.211039f}, - {-0.6763f,0.705197f,-0.212874f},{-0.671124f,0.709642f,-0.214476f},{-0.494113f,0.630183f,0.598933f}, - {-0.615617f,0.757316f,0.217917f},{-0.609092f,0.70917f,-0.355084f},{-0.536047f,0.624123f,-0.56844f}, - {-0.46981f,0.882547f,0.0197241f},{-0.469433f,0.882871f,0.0130831f},{-0.470347f,0.882086f,0.0264206f}, - {-0.471048f,0.881484f,0.0331634f},{-0.471917f,0.880738f,0.0399431f},{-0.472957f,0.879844f,0.0467496f}, - {-0.480829f,0.873084f,0.0808012f},{-0.478891f,0.874747f,0.074027f},{-0.0927413f,0.974914f,0.20234f}, - {-0.477137f,0.876254f,0.0672226f},{-0.482949f,0.871262f,0.0875334f},{-0.48774f,0.867147f,0.100821f}, - {-0.490408f,0.864856f,0.107351f},{0.169495f,0.841989f,0.512177f},{-0.158218f,0.918677f,0.361938f}, - {0.182522f,0.853177f,0.488646f},{-0.496281f,0.859812f,0.120119f},{-0.499479f,0.857065f,0.126333f}, - {-0.502847f,0.854173f,0.132416f},{-0.506379f,0.851139f,0.138358f},{-0.510071f,0.847968f,0.144146f}, - {0.078742f,0.764043f,0.640343f},{-0.222351f,0.863595f,0.452509f},{0.095243f,0.778215f,0.620733f}, - {-0.522044f,0.837685f,0.160482f},{-0.52631f,0.834021f,0.165552f},{-0.530701f,0.830249f,0.170419f}, - {-0.535208f,0.826378f,0.175076f},{-0.554223f,0.810046f,0.191472f},{-0.54934f,0.814241f,0.187718f}, - {-0.2853f,0.809529f,0.513095f},{-0.544537f,0.818366f,0.183731f},{-0.559177f,0.805792f,0.194989f}, - {-0.569257f,0.797135f,0.201304f},{-0.579503f,0.788334f,0.206653f},{-0.595019f,0.775007f,0.212874f}, - {-0.584664f,0.783901f,0.208966f},{-0.605359f,0.766127f,0.215847f},{-0.610502f,0.76171f,0.216993f}, - {-0.466457f,0.653936f,0.595638f},{-0.0668873f,0.997119f,0.0357603f},{-0.0693872f,0.994972f,0.0722163f}, - {-0.0713027f,0.993327f,0.0906467f},{-0.0736769f,0.991288f,0.109178f},{-0.0765202f,0.988846f,0.127782f}, - {-0.0798415f,0.985994f,0.146431f},{-0.0879462f,0.979032f,0.183742f},{0.254659f,0.915135f,0.312533f}, - {0.246457f,0.90809f,0.338573f},{-0.103832f,0.965388f,0.239258f},{-0.0980359f,0.970367f,0.220857f}, - {-0.11013f,0.959979f,0.257509f},{-0.116927f,0.954141f,0.275577f},{-0.12422f,0.947877f,0.293425f}, - {-0.132004f,0.941192f,0.31102f},{-0.140272f,0.934091f,0.328326f},{-0.149013f,0.926583f,0.34531f}, - {-0.167874f,0.910384f,0.378179f},{-0.177966f,0.901716f,0.394f},{-0.188478f,0.892688f,0.409371f}, - {-0.199392f,0.883313f,0.424264f},{-0.21069f,0.87361f,0.438652f},{-0.234353f,0.853287f,0.465812f}, - {-0.246673f,0.842705f,0.47854f},{-0.259287f,0.831871f,0.490674f},{-0.272171f,0.820805f,0.502197f}, - {-0.0292248f,0.671312f,0.740598f},{-0.0483848f,0.654856f,0.754203f},{-0.312187f,0.786436f,0.53297f}, - {-0.298647f,0.798065f,0.523356f},{-0.325893f,0.774664f,0.541931f},{-0.339739f,0.762773f,0.550232f}, - {-0.353698f,0.750783f,0.557873f},{-0.367745f,0.738719f,0.564853f},{-0.381854f,0.726601f,0.571173f}, - {-0.207042f,0.518588f,0.829578f},{-0.227014f,0.501435f,0.834882f},{-0.438418f,0.678019f,0.589983f}, - {-0.424305f,0.69014f,0.586235f},{-0.452476f,0.665945f,0.593113f},{-0.609586f,0.709744f,0.353084f}, - {0.339059f,0.940765f,5.47231e-016f},{0.298738f,0.952993f,0.0506042f},{0.2952f,0.949954f,0.102193f}, - {0.29249f,0.947626f,0.128274f},{0.569536f,0.813646f,0.116657f},{0.28913f,0.944741f,0.154497f}, - {0.285106f,0.941285f,0.180824f},{0.280406f,0.937248f,0.207214f},{0.27502f,0.932622f,0.233625f}, - {0.268937f,0.927398f,0.260012f},{0.262152f,0.92157f,0.286331f},{0.674898f,0.579657f,0.45663f}, - {0.492741f,0.747688f,0.445162f},{0.237545f,0.900436f,0.3644f},{0.227927f,0.892174f,0.389967f}, - {0.217606f,0.88331f,0.415224f},{0.206591f,0.87385f,0.440122f},{0.194892f,0.863801f,0.464612f}, - {0.141551f,0.817988f,0.557547f},{0.126676f,0.805212f,0.579299f},{0.11123f,0.791947f,0.600374f}, - {0.46032f,0.39536f,0.794856f},{0.0617581f,0.749456f,0.659168f},{0.0443242f,0.734482f,0.677179f}, - {0.0264735f,0.71915f,0.69435f},{0.008241f,0.703491f,0.710657f},{-0.0103371f,0.687534f,0.726078f}, - {0.15518f,0.457764f,0.875426f},{-0.0677801f,0.638198f,0.766883f},{0.177321f,0.476779f,0.860952f}, - {-0.0873729f,0.62137f,0.778631f},{-0.127004f,0.587331f,0.79932f},{-0.146969f,0.570183f,0.808264f}, - {-0.166987f,0.552991f,0.816282f},{-0.187022f,0.535783f,0.823383f},{-0.246907f,0.484349f,0.839311f}, - {-0.11656f,0.224372f,0.967508f},{-0.0943152f,0.243477f,0.96531f},{-0.305827f,0.433744f,0.847547f}, - {-0.536319f,0.624439f,0.567837f},{0.566442f,0.810988f,0.146429f},{0.562606f,0.807694f,0.176364f}, - {0.558013f,0.803749f,0.206418f},{0.552648f,0.799142f,0.236543f},{0.546499f,0.79386f,0.266692f}, - {0.539556f,0.787897f,0.296814f},{0.513894f,0.765856f,0.386494f},{0.480959f,0.737569f,0.473994f}, - {0.468385f,0.726769f,0.502416f},{0.45503f,0.715299f,0.530373f},{0.440909f,0.703171f,0.557808f}, - {0.39414f,0.663001f,0.636461f},{0.377159f,0.648417f,0.661292f},{0.341277f,0.617599f,0.708591f}, - {0.322441f,0.601421f,0.730976f},{0.262774f,0.550174f,0.792627f},{0.241961f,0.532298f,0.811242f}, - {0.220753f,0.514083f,0.828846f},{0.199192f,0.495565f,0.845422f},{0.132814f,0.438554f,0.888837f}, - {0.110264f,0.419187f,0.901179f},{0.0875737f,0.399698f,0.912454f},{0.0647826f,0.380123f,0.922665f}, - {0.0419317f,0.360497f,0.931817f},{0.0190608f,0.340853f,0.939923f},{-0.00379247f,0.321225f,0.946995f}, - {-0.0493001f,0.28214f,0.958106f},{0.755608f,0.648977f,0.0887968f},{0.742337f,0.63758f,0.205979f}, - {0.737381f,0.633323f,0.234887f},{0.731777f,0.628509f,0.263588f},{0.72553f,0.623144f,0.292057f}, - {0.718646f,0.617231f,0.320271f},{0.702991f,0.603786f,0.375828f},{0.684866f,0.588219f,0.430066f}, - {0.664336f,0.570586f,0.482793f},{0.589074f,0.505945f,0.630088f},{0.559723f,0.480736f,0.674983f}, - {0.544304f,0.467493f,0.696551f},{0.528406f,0.453838f,0.717508f},{0.477987f,0.410534f,0.776525f}, - {0.44225f,0.37984f,0.812488f},{0.385773f,0.331333f,0.861045f},{0.366247f,0.314563f,0.875736f}, - {0.326248f,0.280208f,0.902799f},{0.30581f,0.262654f,0.915146f},{0.242957f,0.208671f,0.947327f}, - {0.221554f,0.190289f,0.956402f},{0.199957f,0.171739f,0.964636f},{0.178184f,0.153039f,0.972023f}, - {0.134188f,0.115252f,0.984231f},{0.112004f,0.0961983f,0.98904f},{0.0897214f,0.07706f,0.992981f}, - {0.0673596f,0.0578539f,0.99605f},{0.044939f,0.0385973f,0.998244f},{-0.222351f,0.863595f,-0.452509f}, - {-0.234353f,0.853287f,-0.465812f},{-0.530701f,0.830249f,-0.170419f},{0.220753f,0.514083f,-0.828846f}, - {0.385773f,0.331333f,-0.861045f},{0.241961f,0.532298f,-0.811242f},{0.199192f,0.495565f,-0.845422f}, - {0.366247f,0.314563f,-0.875736f},{0.30581f,0.262654f,-0.915146f},{0.15518f,0.457764f,-0.875426f}, - {0.326248f,0.280208f,-0.902799f},{0.132814f,0.438554f,-0.888837f},{0.0875736f,0.399698f,-0.912454f}, - {-0.339739f,0.762773f,-0.550232f},{0.0647826f,0.380123f,-0.922665f},{0.0419318f,0.360497f,-0.931817f}, - {0.221554f,0.190289f,-0.956402f},{0.199957f,0.171739f,-0.964636f},{0.0190607f,0.340853f,-0.939923f}, - {0.178184f,0.153039f,-0.972023f},{0.134188f,0.115252f,-0.984231f},{-0.0265912f,0.301644f,-0.95305f}, - {-0.0037925f,0.321225f,-0.946995f},{0.112004f,0.0961983f,-0.98904f},{-0.0492999f,0.28214f,-0.958106f}, - {0.0897213f,0.07706f,-0.992981f},{-0.0718852f,0.262742f,-0.962185f},{-0.155937f,0.181559f,0.970938f}, - {-0.0224803f,-0.0193079f,0.999561f},{-0.0943152f,0.243477f,-0.96531f},{-0.182173f,0.168017f,0.968805f}, - {-0.286341f,0.45048f,-0.845622f},{-0.266692f,0.467356f,-0.842884f},{-0.226448f,0.12999f,0.96531f}, - {-0.402091f,0.351065f,0.845622f},{-0.204204f,0.149095f,0.967508f},{-0.615617f,0.757316f,-0.217916f}, - {-0.452476f,0.665945f,-0.593113f},{-0.534731f,0.595298f,0.599736f},{-0.640595f,0.735863f,0.219416f}, - {-0.431242f,0.502097f,0.749619f},{-0.363305f,0.384377f,0.848684f},{0.0673597f,0.0578539f,-0.99605f}, - {-0.480343f,0.642011f,-0.597573f},{-0.630724f,0.744341f,-0.219416f},{-0.138591f,0.205449f,-0.968805f}, - {-0.304133f,0.354104f,-0.884372f},{-0.325126f,0.417168f,-0.848684f},{0.044939f,0.0385972f,-0.998244f}, - {-0.11656f,0.224371f,-0.967508f},{-0.507751f,0.61847f,-0.599736f},{-0.609586f,0.709744f,-0.353084f}, - {-0.536319f,0.624439f,-0.567836f},{-0.155494f,0.181042f,-0.971105f},{0.0224791f,0.0193069f,-0.999561f}, - {-0.620697f,0.752953f,-0.218624f},{0.262774f,0.550174f,-0.792627f},{0.44225f,0.37984f,-0.812488f}, - {0.283151f,0.567676f,-0.773026f},{0.477987f,0.410534f,-0.776525f},{0.512045f,0.439786f,-0.737834f}, - {0.322441f,0.601421f,-0.730976f},{0.341277f,0.617599f,-0.708591f},{0.359528f,0.633274f,-0.68535f}, - {0.544304f,0.467493f,-0.696551f},{0.377159f,0.648417f,-0.661292f},{0.155832f,0.830254f,-0.535159f}, - {-0.177966f,0.901716f,-0.394f},{-0.167874f,0.910384f,-0.378179f},{0.39414f,0.663002f,-0.636461f}, - {0.410442f,0.677003f,-0.610904f},{0.589074f,0.505945f,-0.630089f},{0.440909f,0.703171f,-0.557808f}, - {0.629191f,0.5404f,-0.558647f},{0.45503f,0.715299f,-0.530373f},{0.468385f,0.726769f,-0.502416f}, - {0.480959f,0.737569f,-0.473994f},{-0.485253f,0.869283f,-0.0942108f},{-0.103832f,0.965388f,-0.239258f}, - {0.503721f,0.757119f,-0.415977f},{0.674898f,0.579657f,-0.45663f},{0.684866f,0.588219f,-0.430066f}, - {0.702991f,0.603786f,-0.375828f},{0.513894f,0.765856f,-0.386494f},{0.711131f,0.610777f,-0.348202f}, - {0.53181f,0.781244f,-0.326857f},{0.718646f,0.617231f,-0.32027f},{0.72553f,0.623144f,-0.292057f}, - {0.539556f,0.787897f,-0.296814f},{0.546499f,0.79386f,-0.266692f},{0.731777f,0.628509f,-0.263588f}, - {0.552648f,0.799142f,-0.236543f},{0.285106f,0.941285f,-0.180824f},{0.558013f,0.803749f,-0.206418f}, - {0.280406f,0.937248f,-0.207214f},{0.737381f,0.633323f,-0.234887f},{0.742337f,0.63758f,-0.205979f}, - {-0.0662782f,0.997643f,-0.0177823f},{-0.469433f,0.882871f,-0.0130831f},{-0.46921f,0.883063f,-0.00650573f}, - {-0.974563f,0.217534f,0.0539127f},{-0.801509f,0.597657f,0.0197241f},{-0.973095f,0.218795f,0.0722163f}, - {0.292489f,0.947626f,-0.128274f},{0.2952f,0.949955f,-0.102193f},{0.569536f,0.813646f,-0.116657f}, - {-0.985709f,-0.150194f,0.0762915f},{-0.983632f,-0.14841f,0.102193f},{-0.988031f,-0.152188f,0.0251637f}, - {-0.997238f,0.0742779f,1.11285e-016f},{-0.976204f,0.216125f,0.0177823f},{-0.470347f,0.882086f,-0.0264206f}, - {-0.0679194f,0.996233f,-0.0539127f},{-0.069387f,0.994972f,-0.0722163f},{-0.895322f,-0.444493f,0.0287253f}, - {-0.983078f,-0.183188f,4.07949e-016f},{-0.471048f,0.881484f,-0.0331634f},{-0.0713026f,0.993327f,-0.0906466f}, - {-0.471917f,0.880738f,-0.0399431f},{-0.901253f,-0.433294f,3.52919e-035f},{0.566442f,0.810988f,-0.146429f}, - {0.573574f,0.817114f,-0.0577667f},{0.297277f,0.951738f,-0.0762915f},{0.755608f,0.648977f,-0.0887967f}, - {0.757272f,0.650407f,-0.0592414f},{0.758271f,0.651265f,-0.0296338f},{0.574558f,0.81796f,-0.0287253f}, - {-0.432488f,0.503548f,-0.747926f},{-0.305827f,0.433744f,-0.847547f},{-0.246907f,0.484349f,-0.839311f}, - {-0.227014f,0.501435f,-0.834882f},{-0.207042f,0.518588f,-0.829578f},{-0.187022f,0.535783f,-0.823383f}, - {-0.146969f,0.570184f,-0.808264f},{-0.127004f,0.587331f,-0.79932f},{-0.107127f,0.604404f,-0.789443f}, - {-0.087373f,0.62137f,-0.778631f},{-0.0483849f,0.654856f,-0.754203f},{-0.0292249f,0.671312f,-0.740598f}, - {-0.0103372f,0.687534f,-0.726078f},{0.00824112f,0.703491f,-0.710657f},{0.0264736f,0.71915f,-0.69435f}, - {0.0443241f,0.734482f,-0.677179f},{0.0617582f,0.749456f,-0.659168f},{0.0787419f,0.764043f,-0.640343f}, - {0.0952429f,0.778215f,-0.620734f},{0.126676f,0.805212f,-0.579299f},{0.141551f,0.817988f,-0.557547f}, - {0.169496f,0.841989f,-0.512177f},{0.182522f,0.853177f,-0.488646f},{0.206591f,0.87385f,-0.440122f}, - {0.217606f,0.88331f,-0.415224f},{0.227926f,0.892174f,-0.389967f},{0.237545f,0.900436f,-0.3644f}, - {0.246457f,0.90809f,-0.338573f},{0.254659f,0.915135f,-0.312533f},{0.262152f,0.92157f,-0.286331f}, - {0.268937f,0.927398f,-0.260012f},{0.27502f,0.932622f,-0.233625f},{0.28913f,0.944741f,-0.154497f}, - {-0.073677f,0.991288f,-0.109178f},{0.2996f,0.953733f,-0.0251637f},{0.298737f,0.952993f,-0.0506043f}, - {0.339059f,0.940765f,-2.28355e-016f},{0.564043f,0.825745f,-3.01839e-016f},{-0.494113f,0.630183f,-0.598933f}, - {-0.438418f,0.678019f,-0.589983f},{-0.424305f,0.69014f,-0.586235f},{-0.410158f,0.702291f,-0.581857f}, - {-0.381854f,0.726601f,-0.571173f},{-0.367745f,0.738719f,-0.564853f},{-0.298647f,0.798065f,-0.523356f}, - {-0.312187f,0.786436f,-0.53297f},{-0.559177f,0.805792f,-0.194989f},{-0.2853f,0.809529f,-0.513095f}, - {-0.272171f,0.820805f,-0.502197f},{-0.259287f,0.831871f,-0.490674f},{-0.246673f,0.842705f,-0.47854f}, - {-0.21069f,0.87361f,-0.438652f},{-0.188478f,0.892688f,-0.409371f},{-0.499479f,0.857065f,-0.126333f}, - {-0.771841f,0.623139f,0.126333f},{-0.496281f,0.859812f,-0.120119f},{-0.158218f,0.918677f,-0.361938f}, - {-0.149013f,0.926583f,-0.34531f},{-0.140272f,0.934091f,-0.328326f},{-0.132004f,0.941192f,-0.31102f}, - {-0.124221f,0.947877f,-0.293425f},{-0.116927f,0.954141f,-0.275577f},{-0.0927412f,0.974914f,-0.20234f}, - {-0.0879463f,0.979032f,-0.183742f},{-0.0798414f,0.985994f,-0.146431f},{-0.0765202f,0.988846f,-0.127782f}, - {-0.0668873f,0.997119f,-0.0357604f},{-0.46981f,0.882547f,-0.0197241f},{0.0755429f,0.997143f,-2.89047e-016f}, - {-0.0449408f,-0.0385988f,0.998244f},{-0.625735f,0.748626f,-0.219122f},{-0.610502f,0.76171f,-0.216993f}, - {-0.605359f,0.766127f,-0.215847f},{-0.6763f,0.705197f,0.212874f},{-0.58984f,0.779456f,-0.211039f}, - {-0.595019f,0.775007f,-0.212875f},{-0.600195f,0.770562f,-0.214476f},{-0.584664f,0.783901f,-0.208966f}, - {-0.579503f,0.788334f,-0.206653f},{-0.574364f,0.792748f,-0.2041f},{-0.569256f,0.797135f,-0.201305f}, - {-0.564191f,0.801485f,-0.198267f},{-0.721979f,0.665964f,0.187718f},{-0.544537f,0.818366f,-0.183731f}, - {-0.54934f,0.814241f,-0.187718f},{-0.554223f,0.810046f,-0.191472f},{-0.539823f,0.822414f,-0.179515f}, - {-0.535208f,0.826378f,-0.175076f},{-0.749276f,0.642519f,0.160482f},{-0.51791f,0.841235f,-0.155219f}, - {-0.522044f,0.837685f,-0.160482f},{-0.52631f,0.834021f,-0.165552f},{-0.513917f,0.844665f,-0.14977f}, - {-0.510071f,0.847968f,-0.144146f},{-0.506379f,0.851139f,-0.138358f},{-0.502846f,0.854173f,-0.132417f}, - {-0.493256f,0.86241f,-0.113788f},{-0.490408f,0.864856f,-0.107351f},{-0.48774f,0.867148f,-0.100821f}, - {-0.790491f,0.60712f,0.0808013f},{-0.478892f,0.874747f,-0.0740269f},{-0.480829f,0.873084f,-0.0808013f}, - {-0.482949f,0.871262f,-0.0875334f},{-0.477137f,0.876254f,-0.0672227f},{-0.475565f,0.877605f,-0.0604006f}, - {-0.474172f,0.878801f,-0.0535724f},{-0.472957f,0.879844f,-0.0467496f},{-0.800972f,0.598118f,0.0264206f}, - {-0.184979f,0.982742f,-2.6491e-016f},{-0.650623f,0.727251f,0.218624f},{-0.645585f,0.731578f,0.219122f}, - {-0.655703f,0.722888f,0.217917f},{-0.660818f,0.718494f,0.216992f},{-0.665961f,0.714077f,0.215848f}, - {-0.671124f,0.709642f,0.214476f},{-0.696956f,0.687456f,0.2041f},{-0.691817f,0.69187f,0.206653f}, - {-0.674737f,0.475049f,0.564852f},{-0.686655f,0.696303f,0.208966f},{-0.702063f,0.68307f,0.201305f}, - {-0.712143f,0.674412f,0.194989f},{-0.717096f,0.670158f,0.191472f},{-0.732756f,0.0670628f,0.677179f}, - {-0.795809f,0.371062f,0.47854f},{-0.714905f,0.0823942f,0.69435f},{-0.726783f,0.661838f,0.183731f}, - {-0.731497f,0.65779f,0.179515f},{-0.736111f,0.653826f,0.175076f},{-0.740619f,0.649955f,0.170419f}, - {-0.74501f,0.646183f,0.165552f},{-0.829983f,-0.0164437f,0.557547f},{-0.864516f,0.312051f,0.394f}, - {-0.815107f,-0.00366745f,0.579299f},{-0.757402f,0.63554f,0.14977f},{-0.761248f,0.632236f,0.144146f}, - {-0.76494f,0.629065f,0.138358f},{-0.768473f,0.626031f,0.132417f},{-0.780911f,0.615349f,0.107351f}, - {-0.778063f,0.617794f,0.113788f},{-0.910477f,0.272576f,0.311019f},{-0.775039f,0.620392f,0.120119f}, - {-0.783579f,0.613057f,0.100821f},{-0.78837f,0.608942f,0.0875334f},{-0.792428f,0.605457f,0.0740269f}, - {-0.797147f,0.601403f,0.0535724f},{-0.794182f,0.60395f,0.0672227f},{-0.798362f,0.60036f,0.0467497f}, - {-0.799403f,0.599467f,0.0399431f},{-0.800271f,0.59872f,0.0331634f},{-0.801887f,0.597333f,0.0130831f}, - {-0.802109f,0.597142f,0.00650573f},{-0.651551f,0.758605f,-2.05938e-033f},{-0.433008f,0.90139f,-1.54031e-016f}, - {-0.548369f,0.583584f,0.598933f},{-0.576025f,0.559831f,0.595638f},{-0.590006f,0.547823f,0.593113f}, - {-0.604064f,0.535749f,0.589983f},{-0.618177f,0.523627f,0.586235f},{-0.632325f,0.511476f,0.581857f}, - {-0.660628f,0.487166f,0.571173f},{-0.581305f,0.197141f,0.789443f},{-0.601058f,0.180175f,0.778631f}, - {-0.702743f,0.450995f,0.550232f},{-0.688784f,0.462984f,0.557873f},{-0.716589f,0.439103f,0.541931f}, - {-0.730295f,0.427331f,0.53297f},{-0.743835f,0.415702f,0.523356f},{-0.757182f,0.404239f,0.513095f}, - {-0.770311f,0.392963f,0.502197f},{-0.783195f,0.381897f,0.490674f},{-0.808129f,0.360481f,0.465812f}, - {-0.820131f,0.350173f,0.452509f},{-0.831792f,0.340157f,0.438652f},{-0.84309f,0.330454f,0.424264f}, - {-0.854004f,0.32108f,0.409371f},{-0.874608f,0.303383f,0.378179f},{-0.884264f,0.29509f,0.361938f}, - {-0.893469f,0.287184f,0.34531f},{-0.90221f,0.279676f,0.328326f},{-0.906037f,-0.0817656f,0.415224f}, - {-0.916358f,-0.09063f,0.389967f},{-0.925555f,0.259626f,0.275577f},{-0.918261f,0.26589f,0.293425f}, - {-0.932352f,0.253788f,0.257509f},{-0.93865f,0.248379f,0.239258f},{-0.944446f,0.243401f,0.220857f}, - {-0.949741f,0.238853f,0.20234f},{-0.954536f,0.234735f,0.183742f},{-0.962641f,0.227774f,0.146431f}, - {-0.973538f,-0.13974f,0.180824f},{-0.977561f,-0.143196f,0.154497f},{-0.968805f,0.222479f,0.109178f}, - {-0.965962f,0.224922f,0.127782f},{-0.971179f,0.22044f,0.0906467f},{-0.975595f,0.216648f,0.0357604f}, - {-0.943289f,0.331972f,1.5621e-016f},{-0.825457f,0.564465f,6.56678e-035f},{-0.29793f,0.346881f,0.889332f}, - {-0.382604f,0.367801f,0.847547f},{-0.42174f,0.334188f,0.842884f},{-0.441525f,0.317195f,0.839311f}, - {-0.248878f,0.110725f,0.962185f},{-0.461418f,0.30011f,0.834882f},{-0.48139f,0.282956f,0.829578f}, - {-0.501409f,0.265762f,0.823383f},{-0.521445f,0.248554f,0.816282f},{-0.541462f,0.231361f,0.808264f}, - {-0.561427f,0.214213f,0.79932f},{-0.346402f,-0.297518f,0.889657f},{-0.498084f,-0.103313f,0.860952f}, - {-0.475944f,-0.0842968f,0.875426f},{-0.620651f,0.163347f,0.766883f},{-0.640047f,0.146689f,0.754203f}, - {-0.659207f,0.130232f,0.740598f},{-0.678094f,0.11401f,0.726078f},{-0.696673f,0.0980537f,0.710657f}, - {-0.767173f,0.0375018f,0.640343f},{-0.783674f,0.0233294f,0.620734f},{-0.799662f,0.00959819f,0.600374f}, - {-0.731206f,-0.303536f,0.610904f},{-0.602981f,-0.517889f,0.606799f},{-0.844264f,-0.0287092f,0.535159f}, - {-0.857927f,-0.0404448f,0.512177f},{-0.870953f,-0.0516324f,0.488646f},{-0.883323f,-0.0622568f,0.464612f}, - {-0.895022f,-0.072305f,0.440122f},{-0.824484f,-0.383652f,0.415977f},{-0.925977f,-0.0988912f,0.3644f}, - {-0.813504f,-0.374221f,0.445163f},{-0.934889f,-0.106546f,0.338573f},{-0.950583f,-0.120025f,0.286331f}, - {-0.957369f,-0.125853f,0.260012f},{-0.963451f,-0.131077f,0.233625f},{-0.968838f,-0.135704f,0.207214f}, - {-0.980921f,-0.146082f,0.128274f},{-0.894338f,-0.443647f,0.0577667f},{-0.892671f,-0.442216f,0.0870897f}, - {-0.987169f,-0.151448f,0.0506043f},{-0.271464f,0.0913273f,0.958106f},{-0.294173f,0.0718233f,0.95305f}, - {-0.316971f,0.0522418f,0.946995f},{-0.339824f,0.0326136f,0.939923f},{-0.362696f,0.0129702f,0.931817f}, - {-0.385546f,-0.00665603f,0.922665f},{-0.408337f,-0.0262309f,0.912454f},{-0.453578f,-0.0650871f,0.888837f}, - {-0.519956f,-0.122098f,0.845422f},{-0.541517f,-0.140616f,0.828846f},{-0.562725f,-0.158831f,0.811242f}, - {-0.583538f,-0.176707f,0.792627f},{-0.643204f,-0.227954f,0.730976f},{-0.662041f,-0.244132f,0.708591f}, - {-0.697922f,-0.27495f,0.661292f},{-0.714903f,-0.289534f,0.636461f},{-0.761673f,-0.329704f,0.557808f}, - {-0.775794f,-0.341832f,0.530373f},{-0.789149f,-0.353302f,0.502416f},{-0.801723f,-0.364102f,0.473994f}, - {-0.844021f,-0.400431f,0.356769f},{-0.852574f,-0.407777f,0.326857f},{-0.860319f,-0.41443f,0.296814f}, - {-0.867263f,-0.420393f,0.266692f},{-0.873412f,-0.425675f,0.236543f},{-0.878777f,-0.430282f,0.206418f}, - {-0.887205f,-0.437521f,0.146429f},{-0.8903f,-0.440179f,0.116657f},{-0.0673616f,-0.0578556f,0.99605f}, - {-0.0897231f,-0.0770615f,0.992981f},{-0.156257f,-0.134206f,0.978556f},{-0.178186f,-0.153041f,0.972023f}, - {-0.199959f,-0.171741f,0.964635f},{-0.221556f,-0.19029f,0.956401f},{-0.242959f,-0.208673f,0.947326f}, - {-0.285105f,-0.244871f,0.926689f},{-0.305812f,-0.262656f,0.915145f},{-0.32625f,-0.28021f,0.902798f}, - {-0.477988f,-0.410535f,0.776523f},{-0.512046f,-0.439786f,0.737833f},{-0.528407f,-0.453839f,0.717507f}, - {-0.544305f,-0.467493f,0.696551f},{-0.589075f,-0.505946f,0.630087f},{-0.616357f,-0.529378f,0.582978f}, - {-0.653193f,-0.561015f,0.508529f},{-0.684867f,-0.58822f,0.430063f},{-0.694234f,-0.596265f,0.403122f}, - {-0.718647f,-0.617232f,0.320268f},{-0.725531f,-0.623145f,0.292055f},{-0.731777f,-0.62851f,0.263585f}, - {-0.737381f,-0.633323f,0.234884f},{-0.746642f,-0.641277f,0.176888f},{-0.750291f,-0.64441f,0.147645f}, - {-0.75328f,-0.646978f,0.118272f},{-0.755608f,-0.648978f,0.0887941f},{-0.757272f,-0.650407f,0.0592391f}, - {-0.758272f,-0.651265f,0.0296323f},{-6.73779e-016f,-5.78696e-016f,1.0f},{9.28992e-017f,7.97894e-017f,1.0f}, - {7.40149e-017f,1.0f,1.85037e-017f},{-0.104013f,0.994576f,-2.52608e-018f},{0.105163f,0.994455f,-1.75194e-017f}, - {0.310578f,0.950548f,3.401e-017f},{0.194653f,0.980872f,4.88637e-017f},{0.382179f,0.924088f,2.46819e-017f}, - {0.670096f,0.742274f,5.21559e-017f},{0.555293f,0.831655f,1.71547e-017f},{0.50141f,0.86521f,-5.09311e-017f}, - {0.809606f,0.586974f,3.41454e-017f},{0.707075f,0.707139f,-4.75018e-018f},{0.831545f,0.555458f,1.51199e-017f}, - {0.913862f,0.406026f,-1.53953e-017f},{0.978254f,0.207408f,-1.49117e-017f},{0.923954f,0.382504f,8.43939e-018f}, - {1.0f,-1.57282e-016f,0.0f},{0.980825f,0.19489f,8.3164e-018f},{-0.196168f,0.98057f,-3.53809e-017f}, - {-0.308272f,0.951298f,-2.33067e-017f},{-0.384009f,0.923329f,6.85621e-017f},{-0.556611f,0.830773f,-3.33196e-017f}, - {-0.499433f,0.866353f,3.37942e-017f},{-0.707766f,0.706447f,2.28697e-017f},{-0.66887f,0.743379f,5.57946e-017f}, - {-0.808947f,0.587881f,2.83047e-017f},{-0.831851f,0.554999f,-3.91541e-017f},{-0.924075f,0.382212f,2.82894e-017f}, - {-0.913543f,0.406743f,-1.3996e-017f},{-0.98085f,0.194766f,1.44155e-017f},{-0.978165f,0.20783f,1.53825e-017f}, - {-1.0f,1.21431e-016f,0.0f},{-1.0f,1.22587e-016f,0.0f},{-0.475871f,0.197004f,-0.857167f}, - {-0.428277f,0.286082f,-0.857167f},{0.515038f,2.65357e-011f,-0.857167f},{-0.505162f,0.100376f,-0.857167f}, - {-0.515038f,8.7125e-012f,-0.857167f},{-0.36417f,0.364203f,-0.857167f},{-0.285997f,0.428334f,-0.857167f}, - {-0.196837f,0.475941f,-0.857167f},{-0.100254f,0.505186f,-0.857167f},{3.87126e-016f,0.515038f,-0.857167f}, - {0.19778f,0.47555f,-0.857167f},{0.101034f,0.505031f,-0.857167f},{0.364526f,0.363847f,-0.857167f}, - {0.286676f,0.42788f,-0.857167f},{0.475934f,0.196854f,-0.857167f},{0.428435f,0.285846f,-0.857167f}, - {0.515038f,5.63228e-016f,-0.857167f},{0.505175f,0.100312f,-0.857167f},{0.743195f,0.669075f,0.0f}, - {0.866128f,0.499822f,0.0f},{0.808688f,0.588238f,0.0f},{-4.44089e-017f,1.0f,0.0f}, - {-0.156467f,0.987683f,0.0f},{0.89086f,0.454278f,0.0f},{0.940023f,0.341112f,0.0f}, - {0.951024f,0.309116f,0.0f},{0.984831f,0.173514f,0.0f},{0.987686f,0.156452f,0.0f}, - {1.0f,5.55112e-018f,0.0f},{0.706727f,0.707486f,0.0f},{0.587512f,0.809215f,0.0f}, - {0.587575f,0.80917f,0.0f},{0.453641f,0.891185f,0.0f},{0.40683f,0.913504f,0.0f}, - {0.308716f,0.951154f,0.0f},{0.208031f,0.978122f,0.0f},{0.156246f,0.987718f,0.0f}, - {-0.40677f,0.91353f,0.0f},{-0.208006f,0.978127f,0.0f},{-0.309067f,0.95104f,0.0f}, - {-0.707621f,0.706592f,0.0f},{-0.587567f,0.809176f,0.0f},{-0.587746f,0.809045f,0.0f}, - {-0.454023f,0.89099f,0.0f},{-0.939985f,0.341216f,0.0f},{-0.866205f,0.499689f,0.0f}, - {-0.891077f,0.453852f,0.0f},{-0.743115f,0.669164f,0.0f},{-0.809929f,0.586527f,0.0f}, - {-0.987719f,0.156239f,0.0f},{-0.984781f,0.173802f,0.0f},{-0.951116f,0.308833f,0.0f}, - {-1.0f,-2.22045e-016f,0.0f},{-0.104013f,-0.994576f,-1.75012e-017f},{0.105163f,-0.994455f,-1.77626e-017f}, - {0.310578f,-0.950548f,4.93869e-018f},{0.194653f,-0.980872f,8.23072e-018f},{0.382179f,-0.924088f,-3.16302e-018f}, - {0.670096f,-0.742274f,-6.30166e-018f},{0.555293f,-0.831655f,-1.21778e-017f},{0.50141f,-0.86521f,-1.26379e-018f}, - {0.809606f,-0.586974f,-3.60649e-017f},{0.707075f,-0.707139f,4.52306e-017f},{0.831545f,-0.555458f,-2.40794e-017f}, - {0.913862f,-0.406026f,1.43248e-017f},{0.978254f,-0.207408f,2.12095e-017f},{0.923954f,-0.382504f,-2.4773e-017f}, - {0.980825f,-0.19489f,2.03008e-018f},{-0.196168f,-0.98057f,3.17611e-018f},{-0.308272f,-0.951298f,-1.70678e-017f}, - {-0.384009f,-0.923329f,2.2205e-019f},{-0.556611f,-0.830773f,-7.08082e-018f},{-0.499433f,-0.866353f,-8.66378e-019f}, - {-0.707766f,-0.706447f,5.72963e-018f},{-0.66887f,-0.743379f,-1.08295e-017f},{-0.808947f,-0.587881f,-2.8066e-018f}, - {-0.831851f,-0.554999f,-9.62021e-019f},{-0.924075f,-0.382212f,-1.06868e-018f},{-0.913543f,-0.406743f,-2.11299e-018f}, - {-0.98085f,-0.194766f,1.44155e-017f},{-0.978165f,-0.20783f,0.0f},{-1.0f,-2.31296e-018f,0.0f}, - {-0.475871f,-0.197004f,0.857167f},{-0.428277f,-0.286082f,0.857167f},{0.515038f,8.88154e-011f,0.857167f}, - {-0.505162f,-0.100376f,0.857167f},{-0.515038f,-8.71138e-012f,0.857167f},{-0.36417f,-0.364203f,0.857167f}, - {-0.285997f,-0.428334f,0.857167f},{-0.196837f,-0.475941f,0.857167f},{-0.100254f,-0.505186f,0.857167f}, - {-4.12517e-017f,-0.515038f,0.857167f},{0.19778f,-0.47555f,0.857167f},{0.101034f,-0.505031f,0.857167f}, - {0.364526f,-0.363847f,0.857167f},{0.286676f,-0.42788f,0.857167f},{0.475934f,-0.196854f,0.857167f}, - {0.428435f,-0.285846f,0.857167f},{0.515038f,4.59894e-016f,0.857167f},{0.505175f,-0.100312f,0.857167f}, - {0.743195f,-0.669075f,0.0f},{0.866128f,-0.499822f,0.0f},{0.808688f,-0.588238f,0.0f}, - {-0.156467f,-0.987683f,0.0f},{0.89086f,-0.454278f,0.0f},{0.940023f,-0.341112f,0.0f}, - {0.951024f,-0.309116f,0.0f},{0.984831f,-0.173514f,0.0f},{0.987686f,-0.156452f,0.0f}, - {1.0f,-1.30451e-016f,0.0f},{1.0f,-1.33227e-016f,0.0f},{0.706727f,-0.707486f,0.0f}, - {0.587512f,-0.809215f,0.0f},{0.587575f,-0.80917f,0.0f},{0.453641f,-0.891185f,0.0f}, - {0.40683f,-0.913504f,0.0f},{0.308716f,-0.951154f,0.0f},{0.208031f,-0.978122f,0.0f}, - {0.156246f,-0.987718f,0.0f},{-0.40677f,-0.91353f,0.0f},{-0.208006f,-0.978127f,0.0f}, - {-0.309067f,-0.95104f,0.0f},{-0.707621f,-0.706592f,0.0f},{-0.587567f,-0.809176f,0.0f}, - {-0.587746f,-0.809045f,0.0f},{-0.454023f,-0.89099f,0.0f},{-0.939985f,-0.341216f,0.0f}, - {-0.866205f,-0.499689f,0.0f},{-0.891077f,-0.453852f,0.0f},{-0.743115f,-0.669164f,0.0f}, - {-0.809929f,-0.586527f,0.0f},{-0.987719f,-0.156239f,0.0f},{-0.984781f,-0.173802f,0.0f}, - {-0.951116f,-0.308833f,0.0f},{-1.0f,2.22045e-017f,0.0f},{0.866025f,0.5f,1.20185e-017f}, - {-0.866025f,-0.5f,-1.20185e-017f},{-0.866025f,-0.5f,-1.29482e-017f},{0.866025f,-0.5f,-6.93889e-018f}, - {2.77556e-016f,-1.0f,-1.73472e-017f},{3.33067e-016f,-1.0f,-1.73472e-017f},{3.33067e-016f,-1.0f,2.08167e-017f}, - {2.77556e-016f,-1.0f,-6.85322e-019f},{-3.84593e-017f,1.0f,-6.16298e-033f},{-3.84593e-017f,1.0f,0.0f}, - {-1.45717e-016f,0.0f,1.0f},{8.88178e-017f,0.0f,1.0f},{-1.52656e-016f,0.0f,1.0f}, - {-1.59595e-016f,0.0f,1.0f},{1.38778e-016f,0.0f,1.0f},{-0.866025f,0.5f,-2.75508e-017f}, - {-0.866025f,0.5f,-2.61136e-017f},{-0.866025f,0.5f,-1.89555e-018f},{0.987719f,0.156239f,0.0f}, - {1.0f,-1.41553e-016f,0.0f},{0.984848f,0.173419f,0.0f},{0.707621f,0.706592f,0.0f}, - {0.809929f,0.586527f,0.0f},{0.74297f,0.669325f,0.0f},{0.940139f,0.34079f,0.0f}, - {0.891077f,0.453852f,0.0f},{0.951116f,0.308833f,0.0f},{0.207738f,0.978184f,0.0f}, - {-0.000204802f,1.0f,0.0f},{0.156467f,0.987683f,0.0f},{0.587839f,0.808978f,0.0f}, - {0.406907f,0.91347f,0.0f},{0.454023f,0.89099f,0.0f},{-0.588053f,0.808823f,0.0f}, - {-0.453641f,0.891185f,0.0f},{-0.407167f,0.913354f,0.0f},{-0.308716f,0.951154f,0.0f}, - {-0.156246f,0.987718f,0.0f},{-0.208137f,0.9781f,0.0f},{-0.706727f,0.707486f,0.0f}, - {-0.743046f,0.669241f,0.0f},{-0.866091f,0.499886f,0.0f},{-0.89086f,0.454278f,0.0f}, - {-0.808688f,0.588238f,0.0f},{-0.9402f,0.340622f,0.0f},{-0.951024f,0.309116f,0.0f}, - {-0.9849f,0.173126f,0.0f},{-0.987686f,0.156452f,0.0f},{-0.587512f,0.809215f,0.0f}, - {4.44089e-017f,1.0f,0.0f},{0.309067f,0.95104f,0.0f},{0.587746f,0.809045f,0.0f}, - {0.866141f,0.499799f,0.0f},{-4.44089e-016f,0.0f,1.0f},{4.44089e-016f,0.0f,1.0f}, - {8.88178e-016f,0.0f,1.0f},{0.0f,-8.88178e-016f,1.0f},{0.0f,6.66134e-016f,1.0f}, - {0.470509f,0.209488f,0.857167f},{0.416639f,0.302781f,0.857167f},{-0.515038f,-9.57464e-011f,0.857167f}, - {0.503792f,0.107041f,0.857167f},{0.515038f,8.71144e-012f,0.857167f},{0.344494f,0.382869f,0.857167f}, - {0.257227f,0.446205f,0.857167f},{0.158772f,0.489955f,0.857167f},{0.0535708f,0.512244f,0.857167f}, - {-0.054163f,0.512182f,0.857167f},{-0.258245f,0.445616f,0.857167f},{-0.159959f,0.489568f,0.857167f}, - {-0.416978f,0.302314f,0.857167f},{-0.345125f,0.382299f,0.857167f},{-0.503838f,0.106823f,0.857167f}, - {-0.470674f,0.209119f,0.857167f},{-0.515038f,-3.74123e-016f,0.857167f},{1.0f,-1.29526e-016f,0.0f}, - {0.978165f,0.20783f,-8.77813e-017f},{0.978254f,0.207408f,1.53513e-017f},{0.50141f,0.86521f,6.40384e-017f}, - {0.670096f,0.742274f,7.43956e-017f},{0.66887f,0.743379f,-5.51477e-018f},{0.809606f,0.586974f,-5.99229e-017f}, - {0.913862f,0.406026f,3.0052e-017f},{0.913543f,0.406743f,1.50525e-017f},{0.105163f,0.994455f,-2.0347e-017f}, - {0.104013f,0.994576f,1.92463e-018f},{-0.104013f,0.994576f,-5.52101e-017f},{0.499433f,0.866353f,-3.20615e-017f}, - {0.308272f,0.951298f,1.76026e-017f},{0.310578f,0.950548f,5.2766e-017f},{-0.310578f,0.950548f,-2.94305e-017f}, - {-0.50141f,0.86521f,1.66462e-017f},{-0.499433f,0.866353f,2.40461e-017f},{-0.308272f,0.951298f,5.70418e-018f}, - {-0.105163f,0.994455f,1.64552e-017f},{-0.670096f,0.742274f,-3.4671e-017f},{-0.809606f,0.586974f,3.04307e-018f}, - {-0.808947f,0.587881f,1.56371e-017f},{-0.66887f,0.743379f,-5.77706e-017f},{-0.913543f,0.406743f,8.0545e-018f}, - {-0.913862f,0.406026f,1.26789e-017f},{-0.978254f,0.207408f,-9.04189e-018f},{-0.978165f,0.20783f,-1.02592e-017f}, - {-1.0f,-2.89121e-019f,0.0f},{-1.0f,2.31296e-018f,0.0f},{0.808947f,0.587881f,-2.1756e-017f}, - {0.987719f,-0.156239f,0.0f},{0.984848f,-0.173419f,0.0f},{0.707621f,-0.706592f,0.0f}, - {0.809929f,-0.586527f,0.0f},{0.743022f,-0.669267f,0.0f},{0.940139f,-0.34079f,0.0f}, - {0.891077f,-0.453852f,0.0f},{0.951116f,-0.308833f,0.0f},{0.208043f,-0.97812f,0.0f}, - {0.000184774f,-1.0f,0.0f},{0.156467f,-0.987683f,0.0f},{0.587964f,-0.808887f,0.0f}, - {0.40712f,-0.913375f,0.0f},{0.454023f,-0.89099f,0.0f},{-0.587927f,-0.808914f,0.0f}, - {-0.453641f,-0.891185f,0.0f},{-0.406953f,-0.913449f,0.0f},{-0.308716f,-0.951154f,0.0f}, - {-0.156246f,-0.987718f,0.0f},{-0.207832f,-0.978164f,0.0f},{-0.706727f,-0.707486f,0.0f}, - {-0.742993f,-0.669299f,0.0f},{-0.866091f,-0.499886f,0.0f},{-0.89086f,-0.454278f,0.0f}, - {-0.808688f,-0.588238f,0.0f},{-0.9402f,-0.340622f,0.0f},{-0.951024f,-0.309116f,0.0f}, - {-0.9849f,-0.173126f,0.0f},{-1.0f,-2.88658e-016f,0.0f},{-0.987686f,-0.156452f,0.0f}, - {-1.0f,-2.66454e-016f,0.0f},{-0.587512f,-0.809215f,0.0f},{8.88178e-017f,-1.0f,0.0f}, - {0.309067f,-0.95104f,0.0f},{0.587746f,-0.809045f,0.0f},{0.866141f,-0.499799f,0.0f}, - {-0.0f,2.77556e-017f,-1.0f},{-0.0f,1.38778e-017f,-1.0f},{0.0f,-2.77556e-017f,-1.0f}, - {2.77556e-017f,-0.0f,-1.0f},{-2.43605e-017f,0.0f,-1.0f},{-0.0f,2.08167e-017f,-1.0f}, - {-0.0f,5.55112e-017f,-1.0f},{-0.0f,2.07242e-017f,-1.0f},{0.470509f,-0.209488f,-0.857167f}, - {0.416639f,-0.302781f,-0.857167f},{-0.515038f,-1.96047e-011f,-0.857167f},{0.503792f,-0.107041f,-0.857167f}, - {0.515038f,-8.71228e-012f,-0.857167f},{0.344494f,-0.382869f,-0.857167f},{0.257227f,-0.446205f,-0.857167f}, - {0.158772f,-0.489955f,-0.857167f},{0.0535708f,-0.512244f,-0.857167f},{-0.054163f,-0.512182f,-0.857167f}, - {-0.258245f,-0.445616f,-0.857167f},{-0.159959f,-0.489568f,-0.857167f},{-0.416978f,-0.302314f,-0.857167f}, - {-0.345125f,-0.382299f,-0.857167f},{-0.503838f,-0.106823f,-0.857167f},{-0.470674f,-0.209119f,-0.857167f}, - {-0.515038f,-5.77524e-016f,-0.857167f},{0.978165f,-0.20783f,7.23987e-017f},{0.978254f,-0.207408f,0.0f}, - {0.50141f,-0.86521f,1.85559e-017f},{0.670096f,-0.742274f,-2.21274e-017f},{0.66887f,-0.743379f,-2.47532e-017f}, - {0.809606f,-0.586974f,5.99229e-017f},{0.913862f,-0.406026f,0.0f},{0.913543f,-0.406743f,0.0f}, - {0.105163f,-0.994455f,2.22929e-017f},{0.104013f,-0.994576f,1.84034e-017f},{-0.104013f,-0.994576f,-1.64787e-017f}, - {0.499433f,-0.866353f,0.0f},{0.308272f,-0.951298f,1.76026e-017f},{0.310578f,-0.950548f,1.75887e-017f}, - {-0.310578f,-0.950548f,0.0f},{-0.50141f,-0.86521f,8.0048e-018f},{-0.499433f,-0.866353f,-3.39469e-018f}, - {-0.308272f,-0.951298f,8.80128e-018f},{-0.105163f,-0.994455f,2.22929e-017f},{-0.670096f,-0.742274f,-3.33889e-019f}, - {-0.809606f,-0.586974f,-1.35765e-018f},{-0.808947f,-0.587881f,-1.01698e-018f},{-0.66887f,-0.743379f,1.65048e-017f}, - {-0.913543f,-0.406743f,-2.8802e-018f},{-0.913862f,-0.406026f,-7.51299e-018f},{-0.978254f,-0.207408f,3.91078e-018f}, - {-0.978165f,-0.20783f,2.24517e-019f},{-1.0f,1.24033e-016f,0.0f},{-1.0f,1.249e-016f,0.0f}, - {0.808947f,-0.587881f,0.0f},{0.0580986f,-0.998311f,1.85037e-017f},{0.161621f,-0.986853f,-2.52608e-018f}, - {-0.047209f,-0.998885f,-1.75194e-017f},{-0.254828f,-0.966986f,3.401e-017f},{-0.137337f,-0.990524f,4.88637e-017f}, - {-0.327845f,-0.944731f,2.46819e-017f},{-0.625839f,-0.779952f,5.21559e-017f},{-0.506037f,-0.862512f,1.71547e-017f}, - {-0.450295f,-0.89288f,-5.09311e-017f},{-0.774136f,-0.633019f,3.41454e-017f},{-0.664797f,-0.747024f,-4.75018e-018f}, - {-0.797869f,-0.602831f,1.51199e-017f},{-0.888728f,-0.458434f,-1.53953e-017f},{-0.964552f,-0.263893f,-1.49117e-017f}, - {-0.90017f,-0.435538f,8.43939e-018f},{-0.998311f,-0.0580986f,0.0f},{-0.967845f,-0.251545f,8.3164e-018f}, - {0.252807f,-0.967517f,-3.53809e-017f},{0.36302f,-0.931781f,-2.33067e-017f},{0.437005f,-0.899459f,6.85621e-017f}, - {0.603937f,-0.797032f,-3.33196e-017f},{0.548923f,-0.835873f,3.37942e-017f},{0.747614f,-0.664134f,2.28697e-017f}, - {0.71093f,-0.703263f,5.57946e-017f},{0.841736f,-0.539889f,2.83047e-017f},{0.862691f,-0.505732f,-3.91541e-017f}, - {0.94472f,-0.327879f,2.82894e-017f},{0.935631f,-0.35298f,-1.3996e-017f},{0.990509f,-0.137451f,1.44155e-017f}, - {0.988587f,-0.150649f,1.53825e-017f},{0.998311f,0.0580986f,0.0f},{0.486513f,-0.169024f,-0.857167f}, - {0.444175f,-0.260716f,-0.857167f},{-0.514168f,-0.029923f,-0.857167f},{0.510141f,-0.070857f,-0.857167f}, - {0.514168f,0.029923f,-0.857167f},{0.384715f,-0.34243f,-0.857167f},{0.310399f,-0.410994f,-0.857167f}, - {0.224156f,-0.463701f,-0.857167f},{0.129435f,-0.498508f,-0.857167f},{0.029923f,-0.514168f,-0.857167f}, - {-0.169817f,-0.486237f,-0.857167f},{-0.071522f,-0.510048f,-0.857167f},{-0.342771f,-0.384411f,-0.857167f}, - {-0.261332f,-0.443813f,-0.857167f},{-0.463693f,-0.224172f,-0.857167f},{-0.411104f,-0.310254f,-0.857167f}, - {-0.498494f,-0.129492f,-0.857167f},{-0.703068f,-0.711123f,0.0f},{-0.835626f,-0.549298f,0.0f}, - {-0.773146f,-0.634228f,0.0f},{0.0580986f,-0.998311f,0.0f},{0.213586f,-0.976924f,0.0f}, - {-0.862963f,-0.505268f,0.0f},{-0.918617f,-0.39515f,0.0f},{-0.931459f,-0.363847f,0.0f}, - {-0.973087f,-0.230439f,0.0f},{-0.976928f,-0.213571f,0.0f},{-0.66443f,-0.747351f,0.0f}, - {-0.539506f,-0.841982f,0.0f},{-0.539571f,-0.84194f,0.0f},{-0.401098f,-0.916035f,0.0f}, - {-0.353069f,-0.935597f,0.0f},{-0.252934f,-0.967484f,0.0f},{-0.150852f,-0.988556f,0.0f}, - {-0.0985972f,-0.995127f,0.0f},{0.459158f,-0.888355f,0.0f},{0.264483f,-0.96439f,0.0f}, - {0.363799f,-0.931478f,0.0f},{0.747478f,-0.664287f,0.0f},{0.633586f,-0.773672f,0.0f}, - {0.633758f,-0.773531f,0.0f},{0.505021f,-0.863107f,0.0f},{0.958221f,-0.286028f,0.0f}, - {0.893773f,-0.44852f,0.0f},{0.91594f,-0.401315f,0.0f},{0.780737f,-0.62486f,0.0f}, - {0.842638f,-0.538481f,0.0f},{0.995128f,-0.0985905f,0.0f},{0.993215f,-0.116295f,0.0f}, - {0.967452f,-0.253053f,0.0f},{-0.0580986f,0.998311f,0.0f},{0.0460542f,0.998939f,-1.75012e-017f}, - {-0.162762f,0.986665f,-1.77626e-017f},{-0.365279f,0.930898f,4.93869e-018f},{-0.251312f,0.967906f,8.23072e-018f}, - {-0.435222f,0.900323f,-3.16302e-018f},{-0.71209f,0.702089f,-6.30166e-018f},{-0.602673f,0.797988f,-1.21778e-017f}, - {-0.55083f,0.834617f,-1.26379e-018f},{-0.842341f,0.538945f,-3.60649e-017f},{-0.746964f,0.664864f,4.52306e-017f}, - {-0.862411f,0.506208f,-2.40794e-017f},{-0.935907f,0.352246f,1.43248e-017f},{-0.988652f,0.150223f,2.12095e-017f}, - {-0.944616f,0.328178f,-2.4773e-017f},{-0.990491f,0.137576f,2.03008e-018f},{0.138867f,0.990311f,3.17611e-018f}, - {0.252482f,0.967602f,-1.70678e-017f},{0.329717f,0.94408f,2.2205e-019f},{0.507404f,0.861708f,-7.08082e-018f}, - {0.448255f,0.893906f,-8.66378e-019f},{0.665526f,0.746374f,5.72963e-018f},{0.624551f,0.780984f,-1.08295e-017f}, - {0.773426f,0.633887f,-2.8066e-018f},{0.798201f,0.602391f,-9.62021e-019f},{0.900308f,0.435254f,-1.06868e-018f}, - {0.888368f,0.459131f,-2.11299e-018f},{0.967877f,0.251423f,1.44155e-017f},{0.964438f,0.264309f,0.0f}, - {0.463622f,0.224319f,0.857167f},{0.410933f,0.310481f,0.857167f},{-0.514168f,-0.029923f,0.857167f}, - {0.498477f,0.129555f,0.857167f},{0.514168f,0.029923f,0.857167f},{0.342396f,0.384746f,0.857167f}, - {0.260628f,0.444227f,0.857167f},{0.168853f,0.486573f,0.857167f},{0.070734f,0.510158f,0.857167f}, - {-0.029923f,0.514168f,0.857167f},{-0.225074f,0.463256f,0.857167f},{-0.130205f,0.498308f,0.857167f}, - {-0.385049f,0.342054f,0.857167f},{-0.311051f,0.410502f,0.857167f},{-0.486567f,0.16887f,0.857167f}, - {-0.444319f,0.260471f,0.857167f},{-0.51015f,0.0707922f,0.857167f},{-0.780812f,0.624766f,0.0f}, - {-0.893704f,0.448657f,0.0f},{-0.841497f,0.540261f,0.0f},{0.0988201f,0.995105f,0.0f}, - {-0.915748f,0.401752f,0.0f},{-0.958253f,0.285922f,0.0f},{-0.967377f,0.253341f,0.0f}, - {-0.993249f,0.116004f,0.0f},{-0.995107f,0.0988045f,0.0f},{-0.746637f,0.665231f,0.0f}, - {-0.633534f,0.773715f,0.0f},{-0.633594f,0.773666f,0.0f},{-0.504651f,0.863323f,0.0f}, - {-0.459216f,0.888325f,0.0f},{-0.363455f,0.931612f,0.0f},{-0.264507f,0.964384f,0.0f}, - {-0.213367f,0.976972f,0.0f},{0.353009f,0.93562f,0.0f},{0.150827f,0.98856f,0.0f}, - {0.25329f,0.96739f,0.0f},{0.665374f,0.74651f,0.0f},{0.539562f,0.841946f,0.0f}, - {0.539749f,0.841826f,0.0f},{0.401491f,0.915863f,0.0f},{0.918573f,0.395251f,0.0f}, - {0.83571f,0.54917f,0.0f},{0.863204f,0.504856f,0.0f},{0.702982f,0.711208f,0.0f}, - {0.774485f,0.632592f,0.0f},{0.976973f,0.213361f,0.0f},{0.973019f,0.230723f,0.0f}, - {0.931567f,0.36357f,0.0f},{-0.835513f,-0.54947f,1.20185e-017f},{0.835513f,0.54947f,-1.20185e-017f}, - {0.835513f,0.54947f,-1.29482e-017f},{0.835513f,0.54947f,0.0f},{-0.893612f,0.448841f,0.0f}, - {-0.893612f,0.448841f,-6.93889e-018f},{-0.0580986f,0.998311f,-1.73472e-017f},{-0.0580986f,0.998311f,2.08167e-017f}, - {-0.0580986f,0.998311f,-6.85322e-019f},{0.0580986f,-0.998311f,-6.16298e-033f},{-2.2167e-016f,-1.29005e-017f,1.0f}, - {1.66252e-016f,9.67536e-018f,1.0f},{1.10835e-016f,6.45024e-018f,1.0f},{-1.10835e-016f,-6.45024e-018f,1.0f}, - {-8.31261e-017f,-4.83768e-018f,1.0f},{1.45471e-016f,8.46594e-018f,1.0f},{-6.92717e-018f,-4.0314e-019f,1.0f}, - {-8.86678e-017f,-5.16019e-018f,1.0f},{-2.77087e-017f,-1.61256e-018f,1.0f},{1.52398e-016f,8.86908e-018f,1.0f}, - {1.59325e-016f,9.27222e-018f,1.0f},{-1.38543e-016f,-8.0628e-018f,1.0f},{-5.54174e-017f,-3.22512e-018f,1.0f}, - {2.2167e-016f,1.29005e-017f,1.0f},{-1.66252e-016f,-9.67536e-018f,1.0f},{0.893612f,-0.448841f,-2.75508e-017f}, - {0.893612f,-0.448841f,-2.61136e-017f},{0.893612f,-0.448841f,-1.89555e-018f},{-0.976973f,-0.213361f,0.0f}, - {-0.973109f,-0.230345f,0.0f},{-0.665374f,-0.74651f,0.0f},{-0.774485f,-0.632592f,0.0f}, - {-0.702828f,-0.71136f,0.0f},{-0.918752f,-0.394835f,0.0f},{-0.863204f,-0.504856f,0.0f}, - {-0.931567f,-0.36357f,0.0f},{-0.150556f,-0.988601f,0.0f},{0.058303f,-0.998299f,0.0f}, - {-0.0988201f,-0.995105f,0.0f},{-0.539845f,-0.841764f,0.0f},{-0.353148f,-0.935567f,0.0f}, - {-0.401491f,-0.915863f,0.0f},{0.634051f,-0.773291f,0.0f},{0.504651f,-0.863323f,0.0f}, - {0.459544f,-0.888155f,0.0f},{0.363455f,-0.931612f,0.0f},{0.213367f,-0.976972f,0.0f}, - {0.264611f,-0.964355f,0.0f},{0.746637f,-0.665231f,0.0f},{0.780673f,-0.62494f,0.0f}, - {0.893671f,-0.448723f,0.0f},{0.915748f,-0.401752f,0.0f},{0.841497f,-0.540261f,0.0f}, - {0.958402f,-0.285423f,0.0f},{0.967377f,-0.253341f,0.0f},{0.993294f,-0.115612f,0.0f}, - {0.995107f,-0.0988045f,0.0f},{0.633534f,-0.773715f,0.0f},{-0.25329f,-0.96739f,0.0f}, - {-0.539749f,-0.841826f,0.0f},{-0.835641f,-0.549276f,0.0f},{-1.29005e-017f,2.2167e-016f,1.0f}, - {1.93507e-017f,-3.32504e-016f,1.0f},{1.29005e-017f,-2.2167e-016f,1.0f},{4.43339e-016f,2.5801e-017f,1.0f}, - {-4.43339e-016f,-2.5801e-017f,1.0f},{-8.86678e-016f,-5.16019e-017f,1.0f},{-2.5801e-017f,4.43339e-016f,1.0f}, - {-5.16019e-017f,8.86678e-016f,1.0f},{3.87014e-017f,-6.65009e-016f,1.0f},{2.5801e-017f,-4.43339e-016f,1.0f}, - {-0.457544f,-0.23647f,0.857167f},{-0.398344f,-0.326476f,0.857167f},{-0.496722f,-0.136129f,0.857167f}, - {-0.321668f,-0.402236f,0.857167f},{-0.230869f,-0.460395f,0.857167f},{-0.130038f,-0.498352f,0.857167f}, - {-0.0237196f,-0.514492f,0.857167f},{0.0838285f,-0.50817f,0.857167f},{0.283699f,-0.42986f,0.857167f}, - {0.188132f,-0.479448f,0.857167f},{0.433838f,-0.277577f,0.857167f},{0.366753f,-0.361602f,0.857167f}, - {0.509194f,-0.0773705f,0.857167f},{0.482028f,-0.18142f,0.857167f},{-0.964438f,-0.264309f,-8.77813e-017f}, - {-0.964552f,-0.263893f,1.53513e-017f},{-0.450295f,-0.89288f,6.40384e-017f},{-0.625839f,-0.779952f,7.43956e-017f}, - {-0.624551f,-0.780984f,-5.51477e-018f},{-0.774136f,-0.633019f,-5.99229e-017f},{-0.888728f,-0.458434f,3.0052e-017f}, - {-0.888368f,-0.459131f,1.50525e-017f},{-0.047209f,-0.998885f,-2.0347e-017f},{-0.0460542f,-0.998939f,1.92463e-018f}, - {0.161621f,-0.986853f,-5.52101e-017f},{-0.448255f,-0.893906f,-3.20615e-017f},{-0.252482f,-0.967602f,1.76026e-017f}, - {-0.254827f,-0.966987f,5.2766e-017f},{0.365279f,-0.930898f,-2.94305e-017f},{0.55083f,-0.834617f,1.66462e-017f}, - {0.548923f,-0.835873f,2.40461e-017f},{0.36302f,-0.931781f,5.70418e-018f},{0.162762f,-0.986665f,1.64552e-017f}, - {0.71209f,-0.702089f,-3.4671e-017f},{0.842341f,-0.538945f,3.04307e-018f},{0.841736f,-0.539889f,1.56371e-017f}, - {0.71093f,-0.703263f,-5.77706e-017f},{0.935631f,-0.35298f,8.0545e-018f},{0.935907f,-0.352246f,1.26789e-017f}, - {0.988652f,-0.150223f,-9.04189e-018f},{0.988587f,-0.150649f,-1.02592e-017f},{-0.773426f,-0.633887f,-2.1756e-017f}, - {-0.995128f,0.0985905f,0.0f},{-0.99326f,0.115908f,0.0f},{-0.747478f,0.664287f,0.0f}, - {-0.842638f,0.538481f,0.0f},{-0.78065f,0.624968f,0.0f},{-0.958351f,0.285594f,0.0f}, - {-0.91594f,0.401315f,0.0f},{-0.967452f,0.253053f,0.0f},{-0.264519f,0.964381f,0.0f}, - {-0.058283f,0.9983f,0.0f},{-0.213586f,0.976924f,0.0f},{-0.633966f,0.773361f,0.0f}, - {-0.459498f,0.888179f,0.0f},{-0.505021f,0.863107f,0.0f},{0.539937f,0.841705f,0.0f}, - {0.401098f,0.916035f,0.0f},{0.353196f,0.935549f,0.0f},{0.252934f,0.967484f,0.0f}, - {0.0985972f,0.995127f,0.0f},{0.150651f,0.988587f,0.0f},{0.66443f,0.747351f,0.0f}, - {0.702853f,0.711335f,0.0f},{0.835585f,0.54936f,0.0f},{0.862963f,0.505268f,0.0f}, - {0.773146f,0.634228f,0.0f},{0.918822f,0.394671f,0.0f},{0.931459f,0.363847f,0.0f}, - {0.973178f,0.230054f,0.0f},{0.976928f,0.213571f,0.0f},{0.539506f,0.841982f,0.0f}, - {-0.363799f,0.931478f,0.0f},{-0.633758f,0.773531f,0.0f},{-0.893716f,0.448633f,0.0f}, - {1.61256e-018f,-2.77087e-017f,-1.0f},{8.0628e-019f,-1.38543e-017f,-1.0f},{-8.0628e-019f,1.38543e-017f,-1.0f}, - {-1.61256e-018f,2.77087e-017f,-1.0f},{1.38543e-017f,8.0628e-019f,-1.0f},{5.54174e-017f,3.22512e-018f,-1.0f}, - {2.07815e-017f,1.20942e-018f,-1.0f},{-2.77087e-017f,-1.61256e-018f,-1.0f},{2.43194e-017f,1.41531e-018f,-1.0f}, - {1.20942e-018f,-2.07815e-017f,-1.0f},{3.22512e-018f,-5.54174e-017f,-1.0f},{1.20404e-018f,-2.06892e-017f,-1.0f}, - {-0.481885f,0.181798f,-0.857167f},{-0.433526f,0.278063f,-0.857167f},{-0.50916f,0.0775901f,-0.857167f}, - {-0.366156f,0.362207f,-0.857167f},{-0.282716f,0.430506f,-0.857167f},{-0.186969f,0.479903f,-0.857167f}, - {-0.083241f,0.508267f,-0.857167f},{0.0243144f,0.514464f,-0.857167f},{0.231919f,0.459867f,-0.857167f}, - {0.131246f,0.498035f,-0.857167f},{0.39871f,0.326029f,-0.857167f},{0.322331f,0.401705f,-0.857167f}, - {0.496781f,0.135915f,-0.857167f},{0.457729f,0.236111f,-0.857167f},{-0.988587f,0.150649f,7.23987e-017f}, - {-0.988652f,0.150223f,0.0f},{-0.55083f,0.834617f,1.85559e-017f},{-0.71209f,0.702089f,-2.21274e-017f}, - {-0.71093f,0.703263f,-2.47532e-017f},{-0.842341f,0.538945f,5.99229e-017f},{-0.935907f,0.352246f,0.0f}, - {-0.935631f,0.35298f,0.0f},{-0.162762f,0.986665f,2.22929e-017f},{-0.161621f,0.986853f,1.84034e-017f}, - {0.0460541f,0.998939f,-1.64787e-017f},{-0.548923f,0.835873f,0.0f},{-0.36302f,0.931781f,1.76026e-017f}, - {-0.365278f,0.930898f,1.75887e-017f},{0.254828f,0.966986f,0.0f},{0.450295f,0.89288f,8.0048e-018f}, - {0.448255f,0.893906f,-3.39469e-018f},{0.252482f,0.967602f,8.80128e-018f},{0.047209f,0.998885f,2.22929e-017f}, - {0.625839f,0.779952f,-3.33889e-019f},{0.774136f,0.633019f,-1.35765e-018f},{0.773426f,0.633887f,-1.01698e-018f}, - {0.624551f,0.780984f,1.65048e-017f},{0.888368f,0.459131f,-2.8802e-018f},{0.888728f,0.458434f,-7.51299e-018f}, - {0.964552f,0.263893f,3.91078e-018f},{0.964438f,0.264309f,2.24517e-019f},{-0.841736f,0.539889f,0.0f}, - {-7.40149e-017f,-1.0f,1.85037e-017f},{0.104013f,-0.994576f,-2.52608e-018f},{-0.105163f,-0.994455f,-1.75194e-017f}, - {-0.310578f,-0.950548f,3.401e-017f},{-0.194653f,-0.980872f,4.88637e-017f},{-0.382179f,-0.924088f,2.46819e-017f}, - {-0.670096f,-0.742274f,5.21559e-017f},{-0.555293f,-0.831655f,1.71547e-017f},{-0.50141f,-0.86521f,-5.09311e-017f}, - {-0.809606f,-0.586974f,3.41454e-017f},{-0.707075f,-0.707139f,-4.75018e-018f},{-0.831545f,-0.555458f,1.51199e-017f}, - {-0.913862f,-0.406026f,-1.53953e-017f},{-0.978254f,-0.207408f,-1.49117e-017f},{-0.923954f,-0.382504f,8.43939e-018f}, - {-0.980825f,-0.19489f,8.3164e-018f},{0.196168f,-0.98057f,-3.53809e-017f},{0.308272f,-0.951298f,-2.33067e-017f}, - {0.384009f,-0.923329f,6.85621e-017f},{0.556611f,-0.830773f,-3.33196e-017f},{0.499433f,-0.866353f,3.37942e-017f}, - {0.707766f,-0.706447f,2.28697e-017f},{0.66887f,-0.743379f,5.57946e-017f},{0.808947f,-0.587881f,2.83047e-017f}, - {0.831851f,-0.554999f,-3.91541e-017f},{0.924075f,-0.382212f,2.82894e-017f},{0.913543f,-0.406743f,-1.3996e-017f}, - {0.98085f,-0.194766f,1.44155e-017f},{0.978165f,-0.20783f,1.53825e-017f},{1.0f,-1.21431e-016f,0.0f}, - {1.0f,-1.22587e-016f,0.0f},{0.475871f,-0.197004f,-0.857167f},{0.428277f,-0.286082f,-0.857167f}, - {-0.515038f,-2.65357e-011f,-0.857167f},{0.505162f,-0.100376f,-0.857167f},{0.515038f,-8.7125e-012f,-0.857167f}, - {0.36417f,-0.364203f,-0.857167f},{0.285997f,-0.428334f,-0.857167f},{0.196837f,-0.475941f,-0.857167f}, - {0.100254f,-0.505186f,-0.857167f},{-3.87126e-016f,-0.515038f,-0.857167f},{-0.19778f,-0.47555f,-0.857167f}, - {-0.101034f,-0.505031f,-0.857167f},{-0.364526f,-0.363847f,-0.857167f},{-0.286676f,-0.42788f,-0.857167f}, - {-0.475934f,-0.196854f,-0.857167f},{-0.428435f,-0.285846f,-0.857167f},{-0.515038f,-5.63228e-016f,-0.857167f}, - {-0.505175f,-0.100312f,-0.857167f},{-0.743195f,-0.669075f,0.0f},{-0.866128f,-0.499822f,0.0f}, - {-0.940023f,-0.341112f,0.0f},{-0.984831f,-0.173514f,0.0f},{-1.0f,-5.55112e-018f,0.0f}, - {-0.587575f,-0.80917f,0.0f},{-0.40683f,-0.913504f,0.0f},{-0.208031f,-0.978122f,0.0f}, - {0.40677f,-0.91353f,0.0f},{0.208006f,-0.978127f,0.0f},{0.587567f,-0.809176f,0.0f}, - {0.939985f,-0.341216f,0.0f},{0.866205f,-0.499689f,0.0f},{0.743115f,-0.669164f,0.0f}, - {0.984781f,-0.173802f,0.0f},{1.0f,1.77636e-016f,0.0f},{1.0f,2.22045e-016f,0.0f}, - {0.104013f,0.994576f,-1.75012e-017f},{-0.105163f,0.994455f,-1.77626e-017f},{-0.310578f,0.950548f,4.93869e-018f}, - {-0.194653f,0.980872f,8.23072e-018f},{-0.382179f,0.924088f,-3.16302e-018f},{-0.670096f,0.742274f,-6.30166e-018f}, - {-0.555293f,0.831655f,-1.21778e-017f},{-0.50141f,0.86521f,-1.26379e-018f},{-0.809606f,0.586974f,-3.60649e-017f}, - {-0.707075f,0.707139f,4.52306e-017f},{-0.831545f,0.555458f,-2.40794e-017f},{-0.913862f,0.406026f,1.43248e-017f}, - {-0.978254f,0.207408f,2.12095e-017f},{-0.923954f,0.382504f,-2.4773e-017f},{-1.0f,-1.57282e-016f,0.0f}, - {-0.980825f,0.19489f,2.03008e-018f},{0.196168f,0.98057f,3.17611e-018f},{0.308272f,0.951298f,-1.70678e-017f}, - {0.384009f,0.923329f,2.2205e-019f},{0.556611f,0.830773f,-7.08082e-018f},{0.499433f,0.866353f,-8.66378e-019f}, - {0.707766f,0.706447f,5.72963e-018f},{0.66887f,0.743379f,-1.08295e-017f},{0.808947f,0.587881f,-2.8066e-018f}, - {0.831851f,0.554999f,-9.62021e-019f},{0.924075f,0.382212f,-1.06868e-018f},{0.913543f,0.406743f,-2.11299e-018f}, - {0.98085f,0.194766f,1.44155e-017f},{0.978165f,0.20783f,0.0f},{1.0f,2.31296e-018f,0.0f}, - {0.475871f,0.197004f,0.857167f},{0.428277f,0.286082f,0.857167f},{-0.515038f,-8.88154e-011f,0.857167f}, - {0.505162f,0.100376f,0.857167f},{0.515038f,8.71138e-012f,0.857167f},{0.36417f,0.364203f,0.857167f}, - {0.285997f,0.428334f,0.857167f},{0.196837f,0.475941f,0.857167f},{0.100254f,0.505186f,0.857167f}, - {4.12517e-017f,0.515038f,0.857167f},{-0.19778f,0.47555f,0.857167f},{-0.101034f,0.505031f,0.857167f}, - {-0.364526f,0.363847f,0.857167f},{-0.286676f,0.42788f,0.857167f},{-0.475934f,0.196854f,0.857167f}, - {-0.428435f,0.285846f,0.857167f},{-0.515038f,-4.59894e-016f,0.857167f},{-0.505175f,0.100312f,0.857167f}, - {-0.743195f,0.669075f,0.0f},{-0.866128f,0.499822f,0.0f},{-0.940023f,0.341112f,0.0f}, - {-0.984831f,0.173514f,0.0f},{-1.0f,1.30451e-016f,0.0f},{-1.0f,1.33227e-016f,0.0f}, - {-0.587575f,0.80917f,0.0f},{-0.40683f,0.913504f,0.0f},{-0.208031f,0.978122f,0.0f}, - {0.40677f,0.91353f,0.0f},{0.208006f,0.978127f,0.0f},{0.587567f,0.809176f,0.0f}, - {0.939985f,0.341216f,0.0f},{0.866205f,0.499689f,0.0f},{0.743115f,0.669164f,0.0f}, - {0.984781f,0.173802f,0.0f},{1.0f,-2.22045e-017f,0.0f},{-0.866025f,-0.5f,1.20185e-017f}, - {0.866025f,0.5f,-1.20185e-017f},{0.866025f,0.5f,-1.29482e-017f},{-0.866025f,0.5f,-6.93889e-018f}, - {-2.77556e-016f,1.0f,-1.73472e-017f},{-3.33067e-016f,1.0f,-1.73472e-017f},{-3.33067e-016f,1.0f,2.08167e-017f}, - {-2.77556e-016f,1.0f,-6.85322e-019f},{3.84593e-017f,-1.0f,-6.16298e-033f},{3.84593e-017f,-1.0f,0.0f}, - {1.45717e-016f,0.0f,1.0f},{-8.88178e-017f,0.0f,1.0f},{1.52656e-016f,0.0f,1.0f}, - {1.59595e-016f,0.0f,1.0f},{0.866025f,-0.5f,-2.75508e-017f},{0.866025f,-0.5f,-2.61136e-017f}, - {0.866025f,-0.5f,-1.89555e-018f},{-1.0f,1.41553e-016f,0.0f},{-0.984848f,-0.173419f,0.0f}, - {-0.74297f,-0.669325f,0.0f},{-0.940139f,-0.34079f,0.0f},{-0.207738f,-0.978184f,0.0f}, - {0.000204802f,-1.0f,0.0f},{-0.587839f,-0.808978f,0.0f},{-0.406907f,-0.91347f,0.0f}, - {0.588053f,-0.808823f,0.0f},{0.407167f,-0.913354f,0.0f},{0.208137f,-0.9781f,0.0f}, - {0.743046f,-0.669241f,0.0f},{0.866091f,-0.499886f,0.0f},{0.9402f,-0.340622f,0.0f}, - {0.9849f,-0.173126f,0.0f},{-4.44089e-017f,-1.0f,0.0f},{-0.866141f,-0.499799f,0.0f}, - {0.0f,-3.33067e-016f,1.0f},{-8.88178e-016f,0.0f,1.0f},{0.0f,8.88178e-016f,1.0f}, - {0.0f,-6.66134e-016f,1.0f},{-0.470509f,-0.209488f,0.857167f},{-0.416639f,-0.302781f,0.857167f}, - {0.515038f,9.57464e-011f,0.857167f},{-0.503792f,-0.107041f,0.857167f},{-0.515038f,-8.71144e-012f,0.857167f}, - {-0.344494f,-0.382869f,0.857167f},{-0.257227f,-0.446205f,0.857167f},{-0.158772f,-0.489955f,0.857167f}, - {-0.0535708f,-0.512244f,0.857167f},{0.054163f,-0.512182f,0.857167f},{0.258245f,-0.445616f,0.857167f}, - {0.159959f,-0.489568f,0.857167f},{0.416978f,-0.302314f,0.857167f},{0.345125f,-0.382299f,0.857167f}, - {0.503838f,-0.106823f,0.857167f},{0.470674f,-0.209119f,0.857167f},{0.515038f,3.74123e-016f,0.857167f}, - {-1.0f,1.29526e-016f,0.0f},{-0.978165f,-0.20783f,-8.77813e-017f},{-0.978254f,-0.207408f,1.53513e-017f}, - {-0.50141f,-0.86521f,6.40384e-017f},{-0.670096f,-0.742274f,7.43956e-017f},{-0.66887f,-0.743379f,-5.51477e-018f}, - {-0.809606f,-0.586974f,-5.99229e-017f},{-0.913862f,-0.406026f,3.0052e-017f},{-0.913543f,-0.406743f,1.50525e-017f}, - {-0.105163f,-0.994455f,-2.0347e-017f},{-0.104013f,-0.994576f,1.92463e-018f},{0.104013f,-0.994576f,-5.52101e-017f}, - {-0.499433f,-0.866353f,-3.20615e-017f},{-0.308272f,-0.951298f,1.76026e-017f},{-0.310578f,-0.950548f,5.2766e-017f}, - {0.310578f,-0.950548f,-2.94305e-017f},{0.50141f,-0.86521f,1.66462e-017f},{0.499433f,-0.866353f,2.40461e-017f}, - {0.308272f,-0.951298f,5.70418e-018f},{0.105163f,-0.994455f,1.64552e-017f},{0.670096f,-0.742274f,-3.4671e-017f}, - {0.809606f,-0.586974f,3.04307e-018f},{0.808947f,-0.587881f,1.56371e-017f},{0.66887f,-0.743379f,-5.77706e-017f}, - {0.913543f,-0.406743f,8.0545e-018f},{0.913862f,-0.406026f,1.26789e-017f},{0.978254f,-0.207408f,-9.04189e-018f}, - {0.978165f,-0.20783f,-1.02592e-017f},{1.0f,2.89121e-019f,0.0f},{1.0f,-2.31296e-018f,0.0f}, - {-0.808947f,-0.587881f,-2.1756e-017f},{-0.984848f,0.173419f,0.0f},{-0.743022f,0.669267f,0.0f}, - {-0.940139f,0.34079f,0.0f},{-0.208043f,0.97812f,0.0f},{-0.000184774f,1.0f,0.0f}, - {-0.587964f,0.808887f,0.0f},{-0.40712f,0.913375f,0.0f},{0.587927f,0.808914f,0.0f}, - {0.406953f,0.913449f,0.0f},{0.207832f,0.978164f,0.0f},{0.742993f,0.669299f,0.0f}, - {0.866091f,0.499886f,0.0f},{0.9402f,0.340622f,0.0f},{0.9849f,0.173126f,0.0f}, - {1.0f,2.88658e-016f,0.0f},{1.0f,2.66454e-016f,0.0f},{-0.866141f,0.499799f,0.0f}, - {0.0f,2.77556e-017f,-1.0f},{2.43605e-017f,0.0f,-1.0f},{0.0f,-2.08167e-017f,-1.0f}, - {0.0f,-2.07242e-017f,-1.0f},{-0.470509f,0.209488f,-0.857167f},{-0.416639f,0.302781f,-0.857167f}, - {0.515038f,1.96047e-011f,-0.857167f},{-0.503792f,0.107041f,-0.857167f},{-0.515038f,8.71228e-012f,-0.857167f}, - {-0.344494f,0.382869f,-0.857167f},{-0.257227f,0.446205f,-0.857167f},{-0.158772f,0.489955f,-0.857167f}, - {-0.0535708f,0.512244f,-0.857167f},{0.054163f,0.512182f,-0.857167f},{0.258245f,0.445616f,-0.857167f}, - {0.159959f,0.489568f,-0.857167f},{0.416978f,0.302314f,-0.857167f},{0.345125f,0.382299f,-0.857167f}, - {0.503838f,0.106823f,-0.857167f},{0.470674f,0.209119f,-0.857167f},{0.515038f,5.77524e-016f,-0.857167f}, - {-0.978165f,0.20783f,7.23987e-017f},{-0.978254f,0.207408f,0.0f},{-0.50141f,0.86521f,1.85559e-017f}, - {-0.670096f,0.742274f,-2.21274e-017f},{-0.66887f,0.743379f,-2.47532e-017f},{-0.809606f,0.586974f,5.99229e-017f}, - {-0.913862f,0.406026f,0.0f},{-0.913543f,0.406743f,0.0f},{-0.105163f,0.994455f,2.22929e-017f}, - {-0.104013f,0.994576f,1.84034e-017f},{0.104013f,0.994576f,-1.64787e-017f},{-0.499433f,0.866353f,0.0f}, - {-0.308272f,0.951298f,1.76026e-017f},{-0.310578f,0.950548f,1.75887e-017f},{0.310578f,0.950548f,0.0f}, - {0.50141f,0.86521f,8.0048e-018f},{0.499433f,0.866353f,-3.39469e-018f},{0.308272f,0.951298f,8.80128e-018f}, - {0.105163f,0.994455f,2.22929e-017f},{0.670096f,0.742274f,-3.33889e-019f},{0.809606f,0.586974f,-1.35765e-018f}, - {0.808947f,0.587881f,-1.01698e-018f},{0.66887f,0.743379f,1.65048e-017f},{0.913543f,0.406743f,-2.8802e-018f}, - {0.913862f,0.406026f,-7.51299e-018f},{0.978254f,0.207408f,3.91078e-018f},{0.978165f,0.20783f,2.24517e-019f}, - {1.0f,-1.24033e-016f,0.0f},{1.0f,-1.249e-016f,0.0f},{-0.808947f,0.587881f,0.0f}, - {0.173171f,-0.984892f,2.40319e-017f},{-9.25186e-018f,-1.0f,2.31296e-017f},{-7.40149e-017f,-1.0f,2.31296e-017f}, - {-0.174653f,-0.98463f,9.17788e-018f},{-0.341361f,-0.939932f,-5.87441e-017f},{-0.173171f,-0.984892f,7.35351e-017f}, - {-0.343547f,-0.939135f,2.8923e-017f},{-0.499433f,-0.866353f,-2.69892e-017f},{-0.50141f,-0.86521f,-6.36638e-017f}, - {-0.642401f,-0.766369f,-5.10181e-017f},{-0.766786f,-0.641903f,3.93107e-017f},{-0.765783f,-0.643099f,-1.29623e-017f}, - {-0.643858f,-0.765145f,-1.31306e-016f},{-0.866509f,-0.499162f,-1.50895e-017f},{-0.865824f,-0.500349f,-1.69498e-017f}, - {-0.93996f,-0.341285f,-1.43832e-017f},{-0.939558f,-0.34239f,-3.55344e-017f},{-0.984877f,-0.173254f,-3.11529e-017f}, - {-0.984896f,-0.173146f,1.83632e-017f},{-1.0f,9.25186e-018f,0.0f},{0.174653f,-0.98463f,-9.02129e-017f}, - {0.343547f,-0.939135f,-6.09442e-017f},{0.341361f,-0.939932f,5.80656e-017f},{0.499433f,-0.866353f,4.22428e-017f}, - {0.50141f,-0.86521f,-6.73633e-017f},{0.643858f,-0.765145f,-3.72305e-018f},{0.642401f,-0.766369f,-4.75242e-017f}, - {0.766786f,-0.641903f,4.43387e-018f},{0.765783f,-0.643099f,-3.19634e-017f},{0.865824f,-0.500349f,-2.50327e-018f}, - {0.866509f,-0.499162f,2.18382e-017f},{0.93996f,-0.341285f,0.0f},{0.939558f,-0.34239f,0.0f}, - {0.984896f,-0.173146f,0.0f},{0.984877f,-0.173254f,-1.60292e-017f},{1.0f,-1.23454e-016f,0.0f}, - {-0.865936f,-0.500155f,0.0f},{-0.854507f,-0.51944f,0.0f},{-0.775519f,-0.631325f,0.0f}, - {0.0683073f,-0.997664f,0.0f},{-0.0681817f,-0.997673f,0.0f},{-0.917149f,-0.398545f,0.0f}, - {-0.923845f,-0.382766f,0.0f},{-0.962855f,-0.270019f,0.0f},{-0.966227f,-0.257693f,0.0f}, - {-0.990676f,-0.13624f,0.0f},{-0.991539f,-0.129812f,0.0f},{-0.743005f,-0.669286f,0.0f}, - {-0.587506f,-0.80922f,0.0f},{-0.682437f,-0.730944f,0.0f},{-0.460028f,-0.887904f,0.0f}, - {-0.576624f,-0.81701f,0.0f},{-0.334824f,-0.942281f,0.0f},{-0.406692f,-0.913565f,0.0f}, - {-0.207937f,-0.978142f,0.0f},{-0.203392f,-0.979097f,0.0f},{0.334953f,-0.942235f,0.0f}, - {0.406678f,-0.913572f,0.0f},{0.207869f,-0.978157f,0.0f},{0.203541f,-0.979066f,0.0f}, - {0.682558f,-0.730831f,0.0f},{0.587343f,-0.809338f,0.0f},{0.576674f,-0.816974f,0.0f}, - {0.460094f,-0.88787f,0.0f},{0.865951f,-0.500129f,0.0f},{0.854435f,-0.519558f,0.0f}, - {0.917715f,-0.397241f,0.0f},{0.74294f,-0.669358f,0.0f},{0.775729f,-0.631066f,0.0f}, - {0.966174f,-0.257891f,0.0f},{0.96322f,-0.268715f,0.0f},{0.990678f,-0.136227f,0.0f}, - {0.92384f,-0.38278f,0.0f},{0.991509f,-0.130039f,0.0f},{-3.33067e-016f,1.0f,-4.16334e-017f}, - {-3.33067e-016f,1.0f,-2.77556e-017f},{-3.33067e-016f,1.0f,-5.55111e-017f},{0.173171f,0.984892f,1.78986e-017f}, - {-9.25186e-018f,1.0f,-1.67181e-035f},{-0.174653f,0.98463f,-2.90351e-018f},{-0.341361f,0.939932f,-2.3159e-017f}, - {-0.173171f,0.984892f,-2.19044e-018f},{-0.343547f,0.939135f,8.62609e-018f},{-0.499433f,0.866353f,1.29071e-017f}, - {-0.50141f,0.86521f,-1.57974e-018f},{-0.642401f,0.766369f,2.86405e-017f},{-0.766786f,0.641903f,-2.87549e-017f}, - {-0.765783f,0.643099f,-1.1667e-017f},{-0.643858f,0.765145f,5.31763e-017f},{-0.866509f,0.499162f,-3.48634e-017f}, - {-0.865824f,0.500349f,-7.01556e-018f},{-0.93996f,0.341285f,1.42356e-017f},{-0.939558f,0.34239f,-6.37547e-017f}, - {-0.984877f,0.173254f,1.97007e-017f},{-0.984896f,0.173146f,-1.94221e-019f},{-1.0f,-9.25186e-018f,0.0f}, - {0.174653f,0.98463f,-4.41838e-018f},{0.343547f,0.939135f,1.79971e-017f},{0.341361f,0.939932f,-2.17403e-017f}, - {0.499433f,0.866353f,-1.08297e-018f},{0.50141f,0.86521f,-1.19599e-017f},{0.643858f,0.765145f,4.09797e-017f}, - {0.642401f,0.766369f,-9.28657e-019f},{0.766786f,0.641903f,-1.10847e-018f},{0.765783f,0.643099f,-3.30704e-017f}, - {0.865824f,0.500349f,2.31458e-017f},{0.866509f,0.499162f,-2.05856e-017f},{0.93996f,0.341285f,1.35881e-018f}, - {0.939558f,0.34239f,0.0f},{0.984896f,0.173146f,0.0f},{0.984877f,0.173254f,-1.60292e-017f}, - {1.0f,2.02384e-018f,0.0f},{-0.865936f,0.500155f,0.0f},{-0.854507f,0.51944f,0.0f}, - {-0.775519f,0.631325f,0.0f},{0.0683073f,0.997664f,0.0f},{-0.0681817f,0.997673f,0.0f}, - {-0.917149f,0.398545f,0.0f},{-0.923845f,0.382766f,0.0f},{-0.962855f,0.270019f,0.0f}, - {-0.966227f,0.257693f,0.0f},{-0.990676f,0.13624f,0.0f},{-0.991539f,0.129812f,0.0f}, - {-1.0f,1.19209e-007f,0.0f},{-0.743005f,0.669286f,0.0f},{-0.587506f,0.80922f,0.0f}, - {-0.682437f,0.730944f,0.0f},{-0.460028f,0.887904f,0.0f},{-0.576624f,0.81701f,0.0f}, - {-0.334824f,0.942281f,0.0f},{-0.406692f,0.913565f,0.0f},{-0.207937f,0.978142f,0.0f}, - {-0.203392f,0.979097f,0.0f},{0.334953f,0.942235f,0.0f},{0.406678f,0.913572f,0.0f}, - {0.207869f,0.978157f,0.0f},{0.203541f,0.979066f,0.0f},{0.682558f,0.730831f,0.0f}, - {0.587343f,0.809338f,0.0f},{0.576674f,0.816974f,0.0f},{0.460094f,0.88787f,0.0f}, - {0.865951f,0.500129f,0.0f},{0.854435f,0.519558f,0.0f},{0.917715f,0.397241f,0.0f}, - {0.74294f,0.669358f,0.0f},{0.775729f,0.631066f,0.0f},{0.966174f,0.257891f,0.0f}, - {0.96322f,0.268715f,0.0f},{0.990678f,0.136227f,0.0f},{0.92384f,0.38278f,0.0f}, - {0.991509f,0.130039f,0.0f},{0.866025f,0.5f,1.70981e-017f},{0.866025f,0.5f,1.85927e-018f}, - {-0.866025f,0.5f,1.38778e-017f},{-0.984877f,0.173254f,1.60292e-017f},{-0.984896f,0.173146f,0.0f}, - {-0.765783f,0.643099f,2.97493e-017f},{-0.766786f,0.641903f,-3.5471e-017f},{-0.865824f,0.500349f,-2.31458e-017f}, - {-0.866509f,0.499162f,2.30909e-017f},{-0.93996f,0.341285f,0.0f},{-0.939558f,0.34239f,0.0f}, - {-0.343547f,0.939135f,-2.17219e-017f},{-0.341361f,0.939932f,2.17403e-017f},{-0.174653f,0.98463f,4.03966e-018f}, - {-0.642401f,0.766369f,0.0f},{-0.50141f,0.86521f,2.31949e-017f},{0.174653f,0.98463f,4.03966e-018f}, - {0.341361f,0.939932f,1.77925e-017f},{0.173171f,0.984892f,4.00538e-018f},{9.25186e-018f,1.0f,0.0f}, - {0.643858f,0.765145f,-1.25718e-017f},{0.642401f,0.766369f,-3.47348e-017f},{0.50141f,0.86521f,1.0006e-017f}, - {0.499433f,0.866353f,-4.24336e-018f},{0.343547f,0.939135f,-2.91481e-018f},{0.766786f,0.641903f,-9.27937e-018f}, - {0.865824f,0.500349f,1.55228e-017f},{0.765783f,0.643099f,-1.85933e-018f},{0.866509f,0.499162f,-1.44318e-018f}, - {0.939558f,0.34239f,1.07308e-017f},{0.984877f,0.173254f,9.86413e-018f},{0.93996f,0.341285f,3.39702e-018f}, - {0.984896f,0.173146f,-1.1702e-017f},{-0.173171f,0.984892f,-1.87748e-017f},{-0.643858f,0.765145f,-3.53951e-017f}, - {3.84593e-017f,-1.0f,2.46519e-032f},{9.71445e-017f,0.0f,1.0f},{9.28077e-017f,0.0f,1.0f}, - {6.245e-017f,0.0f,1.0f},{-9.02056e-017f,0.0f,1.0f},{9.36751e-017f,0.0f,1.0f}, - {-8.08815e-017f,0.0f,1.0f},{-4.16334e-017f,0.0f,1.0f},{0.866025f,-0.5f,4.83767e-017f}, - {0.866025f,-0.5f,-3.32262e-017f},{-0.991509f,-0.130039f,0.0f},{-0.854435f,-0.519558f,0.0f}, - {-0.917715f,-0.397241f,0.0f},{-0.865951f,-0.500129f,0.0f},{-0.92384f,-0.38278f,0.0f}, - {-0.96322f,-0.268715f,0.0f},{-0.966174f,-0.257891f,0.0f},{-0.775729f,-0.631066f,0.0f}, - {-0.74294f,-0.669358f,0.0f},{-0.682558f,-0.730831f,0.0f},{-0.207869f,-0.978157f,0.0f}, - {-0.0683073f,-0.997664f,0.0f},{-0.406678f,-0.913572f,0.0f},{-0.334953f,-0.942235f,0.0f}, - {-0.460094f,-0.88787f,0.0f},{0.576624f,-0.81701f,0.0f},{0.460028f,-0.887904f,0.0f}, - {0.587506f,-0.80922f,0.0f},{0.334824f,-0.942281f,0.0f},{0.203392f,-0.979097f,0.0f}, - {0.207937f,-0.978142f,0.0f},{0.682437f,-0.730944f,0.0f},{0.743005f,-0.669286f,0.0f}, - {0.775519f,-0.631325f,0.0f},{0.865936f,-0.500155f,0.0f},{0.917149f,-0.398545f,0.0f}, - {0.854507f,-0.51944f,0.0f},{0.923845f,-0.382766f,0.0f},{0.962855f,-0.270019f,0.0f}, - {0.966227f,-0.257693f,0.0f},{0.991539f,-0.129812f,0.0f},{0.990676f,-0.13624f,0.0f}, - {1.0f,-1.19209e-007f,0.0f},{0.406692f,-0.913565f,0.0f},{0.0681817f,-0.997673f,0.0f}, - {-0.203541f,-0.979066f,0.0f},{-0.576674f,-0.816974f,0.0f},{-0.587343f,-0.809338f,0.0f}, - {-0.990678f,-0.136227f,0.0f},{-0.984877f,-0.173254f,1.60292e-017f},{-0.984896f,-0.173146f,0.0f}, - {-0.765783f,-0.643099f,6.51739e-017f},{-0.766786f,-0.641903f,3.5471e-017f},{-0.865824f,-0.500349f,0.0f}, - {-0.866509f,-0.499162f,-2.30909e-017f},{-0.93996f,-0.341285f,0.0f},{-0.939558f,-0.34239f,0.0f}, - {-0.343547f,-0.939135f,6.51656e-017f},{-0.341361f,-0.939932f,-6.52209e-017f},{-0.174653f,-0.98463f,9.10966e-017f}, - {-0.642401f,-0.766369f,6.51687e-017f},{-0.499433f,-0.866353f,-4.00769e-017f},{-0.50141f,-0.86521f,8.0048e-017f}, - {0.174653f,-0.98463f,-1.13871e-017f},{0.341361f,-0.939932f,6.91687e-017f},{0.173171f,-0.984892f,-7.63514e-017f}, - {7.40149e-017f,-1.0f,-2.31296e-017f},{9.25186e-018f,-1.0f,-2.31296e-017f},{0.643858f,-0.765145f,8.9189e-017f}, - {0.642401f,-0.766369f,-3.71463e-018f},{0.50141f,-0.86521f,2.08077e-017f},{0.499433f,-0.866353f,3.00576e-017f}, - {0.343547f,-0.939135f,-2.9668e-017f},{0.766786f,-0.641903f,3.71175e-018f},{0.865824f,-0.500349f,1.19628e-017f}, - {0.765783f,-0.643099f,4.04648e-017f},{0.866509f,-0.499162f,4.98303e-017f},{0.939558f,-0.34239f,3.49929e-018f}, - {0.984877f,-0.173254f,1.39894e-018f},{0.93996f,-0.341285f,1.29405e-018f},{0.984896f,-0.173146f,-5.94412e-018f}, - {-0.173171f,-0.984892f,-3.0791e-017f},{-0.643858f,-0.765145f,2.97844e-017f},{-0.991509f,0.130039f,0.0f}, - {-0.854435f,0.519558f,0.0f},{-0.917715f,0.397241f,0.0f},{-0.865951f,0.500129f,0.0f}, - {-0.92384f,0.38278f,0.0f},{-0.96322f,0.268715f,0.0f},{-0.966174f,0.257891f,0.0f}, - {-0.775729f,0.631066f,0.0f},{-0.74294f,0.669358f,0.0f},{-0.682558f,0.730831f,0.0f}, - {-0.207869f,0.978157f,0.0f},{-0.0683073f,0.997664f,0.0f},{-0.406678f,0.913572f,0.0f}, - {-0.334953f,0.942235f,0.0f},{-0.460094f,0.88787f,0.0f},{0.576624f,0.81701f,0.0f}, - {0.460028f,0.887904f,0.0f},{0.587506f,0.80922f,0.0f},{0.334824f,0.942281f,0.0f}, - {0.203392f,0.979097f,0.0f},{0.207937f,0.978142f,0.0f},{0.682437f,0.730944f,0.0f}, - {0.743005f,0.669286f,0.0f},{0.775519f,0.631325f,0.0f},{0.865936f,0.500155f,0.0f}, - {0.917149f,0.398545f,0.0f},{0.854507f,0.51944f,0.0f},{0.923845f,0.382766f,0.0f}, - {0.962855f,0.270019f,0.0f},{0.966227f,0.257693f,0.0f},{0.991539f,0.129812f,0.0f}, - {0.990676f,0.13624f,0.0f},{0.406692f,0.913565f,0.0f},{0.0681817f,0.997673f,0.0f}, - {-0.203541f,0.979066f,0.0f},{-0.576674f,0.816974f,0.0f},{-0.587343f,0.809338f,0.0f}, - {-0.990678f,0.136227f,0.0f},{-1.56125e-017f,0.0f,-1.0f},{2.24376e-017f,0.0f,-1.0f}, - {0.0f,6.66133e-018f,-1.0f},{-0.826318f,0.563203f,8.5792e-016f},{-0.642788f,0.766044f,2.41345e-015f}, - {-0.411158f,0.911564f,4.62954e-015f},{-0.158603f,0.987342f,-9.23504e-017f},{-0.411158f,0.911564f,2.06582e-015f}, - {0.0871557f,0.996195f,0.0f},{-0.944801f,0.327644f,-1.14754e-015f},{-0.996195f,0.0871557f,0.0f}, - {0.911564f,-0.411158f,6.02585e-016f},{0.766044f,-0.642788f,2.94214e-015f},{0.563203f,-0.826318f,9.64676e-016f}, - {0.327644f,-0.944801f,-9.8684e-016f},{0.563203f,-0.826318f,5.93271e-017f},{0.0871557f,-0.996195f,0.0f}, - {0.987342f,-0.158603f,0.0f},{0.996195f,0.0871557f,0.0f},{0.563203f,0.826318f,-8.5792e-016f}, - {0.766044f,0.642788f,3.08747e-015f},{0.911564f,0.411158f,3.8213e-016f},{0.987342f,0.158603f,-1.87973e-016f}, - {0.996195f,-0.0871557f,0.0f},{0.327644f,0.944801f,6.91476e-016f},{-0.411158f,-0.911564f,-9.85162e-016f}, - {-0.642788f,-0.766044f,2.97296e-015f},{-0.826318f,-0.563203f,-3.47088e-015f},{-0.944801f,-0.327644f,3.94878e-016f}, - {-0.996195f,-0.0871557f,0.0f},{-0.158603f,-0.987342f,4.08313e-016f},{0.826318f,-0.563203f,0.0f}, - {0.642788f,-0.766044f,-2.49102e-015f},{0.411158f,-0.911564f,1.48326e-015f},{0.158603f,-0.987342f,4.46669e-015f}, - {0.411158f,-0.911564f,1.36553e-015f},{-0.0871557f,-0.996195f,0.0f},{0.944801f,-0.327644f,3.04041e-016f}, - {-0.911564f,0.411158f,-6.75921e-016f},{-0.766044f,0.642788f,-3.67481e-016f},{-0.766044f,0.642788f,1.28733e-015f}, - {-0.563203f,0.826318f,6.30798e-016f},{-0.327644f,0.944801f,4.06883e-015f},{-0.563203f,0.826318f,-1.38054e-015f}, - {-0.0871557f,0.996195f,0.0f},{-0.987342f,0.158603f,8.16626e-016f},{0.563203f,0.826318f,-4.26026e-015f}, - {0.766044f,0.642788f,4.25258e-016f},{0.911564f,0.411158f,1.0983e-015f},{0.987342f,0.158603f,1.5422e-016f}, - {0.327644f,0.944801f,-6.58982e-018f},{-0.411158f,-0.911564f,2.34676e-015f},{-0.642788f,-0.766044f,1.45647e-015f}, - {-0.826318f,-0.563203f,1.2984e-017f},{-0.944801f,-0.327644f,-2.78891e-016f},{-0.158603f,-0.987342f,-4.78492e-018f}, - {0.826318f,-0.563203f,-4.23761e-015f},{0.642788f,-0.766044f,4.40666e-016f},{0.411158f,-0.911564f,1.12007e-015f}, - {0.158603f,-0.987342f,2.37841e-016f},{0.944801f,-0.327644f,-1.31796e-017f},{-0.911564f,0.411158f,2.35503e-015f}, - {-0.766044f,0.642788f,1.50818e-015f},{-0.563203f,0.826318f,-2.90842e-017f},{-0.327644f,0.944801f,-4.12948e-016f}, - {-0.987342f,0.158603f,4.78492e-018f},{-0.563203f,-0.826318f,-4.27159e-015f},{-0.766044f,-0.642788f,4.67628e-016f}, - {-0.911564f,-0.411158f,1.14986e-015f},{-0.987342f,-0.158603f,2.73989e-016f},{-0.327644f,-0.944801f,0.0f}, - {0.411158f,0.911564f,2.32608e-015f},{0.642788f,0.766044f,1.46294e-015f},{0.826318f,0.563203f,-3.1681e-017f}, - {0.944801f,0.327644f,-2.83939e-016f},{0.158603f,0.987342f,-1.59497e-018f},{0.826318f,-0.563203f,1.44993e-015f}, - {0.642788f,-0.766044f,2.4393e-015f},{0.411158f,-0.911564f,-4.18125e-015f},{0.158603f,-0.987342f,8.31771e-016f}, - {0.411158f,-0.911564f,-1.65888e-015f},{0.944801f,-0.327644f,0.0f},{-0.911564f,0.411158f,-2.19033e-015f}, - {-0.766044f,0.642788f,-3.6771e-015f},{-0.766044f,0.642788f,-1.19489e-015f},{-0.563203f,0.826318f,-7.29772e-016f}, - {-0.327644f,0.944801f,-3.40246e-015f},{-0.563203f,0.826318f,1.11462e-015f},{-0.987342f,0.158603f,4.08313e-016f}, - {-0.563203f,-0.826318f,-2.65912e-016f},{-0.766044f,-0.642788f,2.72372e-015f},{-0.911564f,-0.411158f,-8.55226e-016f}, - {-0.987342f,-0.158603f,2.40746e-015f},{-0.911564f,-0.411158f,-5.99094e-016f},{-0.327644f,-0.944801f,-6.91476e-016f}, - {0.411158f,0.911564f,4.55913e-016f},{0.642788f,0.766044f,3.70792e-015f},{0.826318f,0.563203f,6.53453e-016f}, - {0.944801f,0.327644f,-4.49072e-015f},{0.158603f,0.987342f,5.67178e-016f},{-0.826318f,0.563203f,-5.92007e-016f}, - {-0.642788f,0.766044f,-1.03426e-016f},{-0.411158f,0.911564f,-6.48711e-016f},{-0.158603f,0.987342f,-2.75969e-015f}, - {-0.944801f,0.327644f,1.68699e-015f},{0.911564f,-0.411158f,7.33362e-017f},{0.766044f,-0.642788f,9.35257e-016f}, - {0.563203f,-0.826318f,2.43257e-016f},{0.327644f,-0.944801f,-1.38084e-015f},{-0.563203f,-0.826318f,2.11031e-015f}, - {-0.766044f,-0.642788f,-8.23554e-016f},{-0.911564f,-0.411158f,-1.36865e-015f},{-0.987342f,-0.158603f,-1.67467e-016f}, - {-0.327644f,-0.944801f,-1.31796e-017f},{0.411158f,0.911564f,2.33642e-015f},{0.642788f,0.766044f,4.84808e-018f}, - {0.826318f,0.563203f,-6.03969e-016f},{0.944801f,0.327644f,-2.44862e-016f},{0.158603f,0.987342f,2.54184e-015f}, - {-0.826318f,0.563203f,2.11031e-015f},{-0.642788f,0.766044f,-8.5822e-016f},{-0.411158f,0.911564f,-1.4099e-015f}, - {-0.158603f,0.987342f,-1.68553e-016f},{-0.944801f,0.327644f,-6.58982e-018f},{0.911564f,-0.411158f,2.34056e-015f}, - {0.766044f,-0.642788f,-1.93923e-017f},{0.563203f,-0.826318f,-5.38529e-016f},{0.327644f,-0.944801f,-2.89548e-016f}, - {0.987342f,-0.158603f,2.53865e-015f},{0.563203f,0.826318f,2.15562e-015f},{0.766044f,0.642788f,-8.11999e-016f}, - {0.911564f,0.411158f,-1.3824e-015f},{0.987342f,0.158603f,-1.10685e-016f},{-0.411158f,-0.911564f,2.34883e-015f}, - {-0.642788f,-0.766044f,2.74725e-017f},{-0.826318f,-0.563203f,-5.36452e-016f},{-0.944801f,-0.327644f,-3.24435e-016f}, - {-0.158603f,-0.987342f,2.54503e-015f},{-0.563203f,-0.826318f,3.03281e-015f},{-0.766044f,-0.642788f,-3.0099e-015f}, - {-0.911564f,-0.411158f,-9.44011e-016f},{-0.987342f,-0.158603f,2.45238e-016f},{-0.911564f,-0.411158f,1.24043e-017f}, - {-0.327644f,-0.944801f,5.39456e-016f},{0.411158f,0.911564f,3.82577e-016f},{0.642788f,0.766044f,4.75332e-016f}, - {0.826318f,0.563203f,-1.81339e-015f},{0.944801f,0.327644f,3.44751e-015f},{0.158603f,0.987342f,0.0f}, - {-0.826318f,0.563203f,-4.28292e-015f},{-0.642788f,0.766044f,4.67628e-016f},{-0.411158f,0.911564f,1.0983e-015f}, - {-0.158603f,0.987342f,2.69956e-016f},{-0.944801f,0.327644f,6.58982e-018f},{0.911564f,-0.411158f,2.34469e-015f}, - {0.766044f,-0.642788f,1.47748e-015f},{0.563203f,-0.826318f,-1.45421e-017f},{0.327644f,-0.944801f,-3.87636e-016f}, - {0.987342f,-0.158603f,-3.18994e-018f},{0.563203f,0.826318f,-5.92007e-016f},{0.766044f,0.642788f,-1.03426e-016f}, - {0.911564f,0.411158f,-6.48711e-016f},{0.987342f,0.158603f,-2.75969e-015f},{0.327644f,0.944801f,1.68699e-015f}, - {-0.411158f,-0.911564f,-1.97032e-015f},{-0.642788f,-0.766044f,-3.61548e-015f},{-0.642788f,-0.766044f,-1.25652e-015f}, - {-0.826318f,-0.563203f,-7.52427e-016f},{-0.944801f,-0.327644f,-3.40576e-015f},{-0.826318f,-0.563203f,1.09197e-015f}, - {-0.104013f,0.994576f,-6.6149e-017f},{0.105163f,0.994455f,3.5074e-016f},{0.104013f,0.994576f,-2.77314e-017f}, - {-0.105163f,0.994455f,6.61477e-016f},{-0.308272f,0.951298f,-6.26411e-016f},{-0.310578f,0.950548f,-2.09449e-015f}, - {-0.50141f,0.86521f,-1.84452e-015f},{-0.66887f,0.743379f,-1.74439e-015f},{-0.499433f,0.866353f,-2.26521e-016f}, - {-0.670096f,0.742274f,-5.94667e-016f},{-0.808947f,0.587881f,-3.87528e-016f},{-0.809606f,0.586974f,-1.45655e-015f}, - {-0.913543f,0.406743f,-1.77092e-016f},{-0.913862f,0.406026f,3.24871e-015f},{-0.978165f,0.20783f,4.08599e-015f}, - {-0.978254f,0.207408f,-1.59112e-015f},{-1.0f,1.18424e-015f,0.0f},{0.308272f,0.951298f,9.4669e-016f}, - {0.499433f,0.866353f,1.42515e-015f},{0.310578f,0.950548f,1.52945e-016f},{0.50141f,0.86521f,6.9607e-017f}, - {0.66887f,0.743379f,0.0f},{0.670096f,0.742274f,1.78483e-015f},{0.808947f,0.587881f,-2.08258e-015f}, - {0.913543f,0.406743f,6.54457e-017f},{0.809606f,0.586974f,-1.98983e-015f},{0.913862f,0.406026f,0.0f}, - {0.978254f,0.207408f,-5.0369e-015f},{1.0f,-9.4739e-015f,0.0f},{-0.104013f,0.994576f,9.38801e-017f}, - {0.105163f,0.994455f,4.30745e-016f},{0.104013f,0.994576f,-2.27768e-016f},{-0.105163f,0.994455f,5.01467e-016f}, - {-0.308272f,0.951298f,-4.73345e-016f},{-0.310578f,0.950548f,-2.03714e-015f},{-0.50141f,0.86521f,-1.7053e-015f}, - {-0.66887f,0.743379f,-1.60982e-015f},{-0.670096f,0.742274f,-6.24525e-016f},{-0.808947f,0.587881f,-3.81616e-016f}, - {-0.809606f,0.586974f,-1.44179e-015f},{-0.913543f,0.406743f,-2.19018e-016f},{-0.913862f,0.406026f,3.22523e-015f}, - {-0.978165f,0.20783f,4.08922e-015f},{-0.978254f,0.207408f,-1.62446e-015f},{0.308272f,0.951298f,7.93624e-016f}, - {0.499433f,0.866353f,1.28576e-015f},{0.310578f,0.950548f,7.64725e-017f},{0.50141f,0.86521f,-6.9607e-017f}, - {0.670096f,0.742274f,1.6654e-015f},{0.913543f,0.406743f,0.0f},{0.809606f,0.586974f,-2.08427e-015f}, - {0.978165f,0.20783f,3.34403e-017f},{0.978254f,0.207408f,-5.07027e-015f},{-0.104013f,0.994576f,-1.73895e-016f}, - {0.105163f,0.994455f,1.6001e-016f},{0.104013f,0.994576f,1.73895e-016f},{-0.105163f,0.994455f,-4.00024e-017f}, - {-0.308272f,0.951298f,-6.71751e-016f},{-0.310578f,0.950548f,1.61654e-016f},{-0.50141f,0.86521f,-1.38259e-015f}, - {-0.66887f,0.743379f,-6.41222e-016f},{-0.499433f,0.866353f,1.60719e-016f},{-0.670096f,0.742274f,-1.27144e-015f}, - {-0.808947f,0.587881f,4.64432e-016f},{-0.809606f,0.586974f,1.42408e-015f},{-0.913543f,0.406743f,-2.92513e-016f}, - {-0.913862f,0.406026f,1.97537e-015f},{-0.978165f,0.20783f,1.58084e-015f},{-0.978254f,0.207408f,-1.89991e-015f}, - {-1.0f,1.0066e-014f,0.0f},{0.308272f,0.951298f,0.0f},{0.499433f,0.866353f,-1.28576e-015f}, - {0.50141f,0.86521f,-1.36045e-015f},{0.66887f,0.743379f,1.72196e-015f},{0.670096f,0.742274f,-5.97167e-017f}, - {0.913543f,0.406743f,2.35185e-015f},{0.809606f,0.586974f,0.0f},{0.913862f,0.406026f,2.35267e-015f}, - {0.978165f,0.20783f,-5.00299e-015f},{0.978254f,0.207408f,-3.33724e-017f},{-0.104013f,0.994576f,-3.33924e-016f}, - {0.105163f,0.994455f,8.00048e-017f},{0.104013f,0.994576f,3.73931e-016f},{-0.105163f,0.994455f,1.20007e-016f}, - {-0.308272f,0.951298f,-8.24817e-016f},{-0.310578f,0.950548f,1.043e-016f},{-0.50141f,0.86521f,-1.52181e-015f}, - {-0.66887f,0.743379f,-7.75785e-016f},{-0.499433f,0.866353f,-6.5802e-017f},{-0.670096f,0.742274f,-1.24159e-015f}, - {-0.808947f,0.587881f,4.5852e-016f},{-0.809606f,0.586974f,1.40933e-015f},{-0.913543f,0.406743f,-2.50587e-016f}, - {-0.913862f,0.406026f,1.99885e-015f},{-0.978165f,0.20783f,1.57761e-015f},{-0.978254f,0.207408f,-1.86657e-015f}, - {0.308272f,0.951298f,1.53066e-016f},{0.499433f,0.866353f,-1.14636e-015f},{0.50141f,0.86521f,-1.22124e-015f}, - {0.670096f,0.742274f,5.97167e-017f},{0.913543f,0.406743f,2.4173e-015f},{0.809606f,0.586974f,9.44452e-017f}, - {0.978165f,0.20783f,-5.03643e-015f},{0.978254f,0.207408f,0.0f},{-0.104013f,0.994576f,2.55628e-015f}, - {0.105163f,0.994455f,3.84446e-015f},{0.104013f,0.994576f,-8.36797e-018f},{-0.105163f,0.994455f,2.54746e-015f}, - {-0.308272f,0.951298f,-1.84919e-015f},{-0.310578f,0.950548f,6.24273e-016f},{-0.50141f,0.86521f,-2.49577e-015f}, - {-0.66887f,0.743379f,-1.86669e-015f},{-0.499433f,0.866353f,4.20202e-015f},{-0.670096f,0.742274f,-6.0878e-016f}, - {-0.808947f,0.587881f,-5.61965e-016f},{-0.809606f,0.586974f,-5.29626e-016f},{-0.913543f,0.406743f,-4.68477e-016f}, - {-0.913862f,0.406026f,1.88599e-016f},{-0.978165f,0.20783f,-8.08443e-016f},{-0.978254f,0.207408f,3.31428e-016f}, - {0.308272f,0.951298f,-1.21213e-015f},{0.499433f,0.866353f,-2.23036e-015f},{0.310578f,0.950548f,3.68317e-015f}, - {0.50141f,0.86521f,-2.3081e-015f},{0.66887f,0.743379f,1.96759e-015f},{0.670096f,0.742274f,1.0782e-016f}, - {0.808947f,0.587881f,-1.95242e-016f},{0.809606f,0.586974f,6.51336e-017f},{0.913862f,0.406026f,-2.23761e-015f}, - {0.978165f,0.20783f,1.07009e-015f},{0.978254f,0.207408f,-1.06792e-015f},{-0.104013f,0.994576f,2.54791e-015f}, - {0.105163f,0.994455f,2.56439e-015f},{0.104013f,0.994576f,8.36797e-018f},{-0.105163f,0.994455f,-1.27162e-015f}, - {-0.308272f,0.951298f,-1.82439e-015f},{-0.310578f,0.950548f,-1.79786e-015f},{-0.50141f,0.86521f,-1.67057e-015f}, - {-0.66887f,0.743379f,-8.96351e-016f},{-0.499433f,0.866353f,-3.97345e-015f},{-0.670096f,0.742274f,2.57549e-015f}, - {-0.808947f,0.587881f,1.24903e-015f},{-0.809606f,0.586974f,6.51412e-018f},{-0.913543f,0.406743f,-4.18802e-016f}, - {-0.913862f,0.406026f,4.82137e-016f},{-0.978165f,0.20783f,5.39336e-016f},{-0.978254f,0.207408f,3.75279e-016f}, - {-1.0f,3.70074e-017f,0.0f},{0.308272f,0.951298f,-2.53585e-015f},{0.499433f,0.866353f,2.23036e-015f}, - {0.310578f,0.950548f,4.89424e-015f},{0.50141f,0.86521f,8.06778e-017f},{0.66887f,0.743379f,-3.93518e-015f}, - {0.670096f,0.742274f,-5.7328e-015f},{0.808947f,0.587881f,-1.51346e-015f},{0.913862f,0.406026f,-1.47042e-016f}, - {0.978254f,0.207408f,-9.10514e-016f},{0.105163f,0.994455f,3.84869e-015f},{0.104013f,0.994576f,2.51039e-017f}, - {-0.310578f,0.950548f,5.86794e-016f},{-0.50141f,0.86521f,-2.45543e-015f},{-0.66887f,0.743379f,-1.85997e-015f}, - {-0.499433f,0.866353f,4.16184e-015f},{-0.670096f,0.742274f,-7.23339e-016f},{-0.808947f,0.587881f,-7.32801e-016f}, - {-0.809606f,0.586974f,-5.96795e-016f},{-0.913543f,0.406743f,-3.41009e-016f},{-0.913862f,0.406026f,2.10425e-016f}, - {-0.978165f,0.20783f,-9.90731e-016f},{-0.978254f,0.207408f,1.24376e-016f},{0.308272f,0.951298f,-1.19972e-015f}, - {0.499433f,0.866353f,-2.27054e-015f},{0.310578f,0.950548f,3.67068e-015f},{0.50141f,0.86521f,-2.22742e-015f}, - {0.66887f,0.743379f,1.91378e-015f},{0.670096f,0.742274f,-1.0782e-016f},{0.808947f,0.587881f,-1.30161e-016f}, - {0.809606f,0.586974f,1.30267e-016f},{0.913862f,0.406026f,-2.09057e-015f},{0.978165f,0.20783f,1.22748e-015f}, - {0.105163f,0.994455f,2.56015e-015f},{0.104013f,0.994576f,1.67359e-017f},{-0.105163f,0.994455f,-1.29277e-015f}, - {-0.310578f,0.950548f,-1.78537e-015f},{-0.50141f,0.86521f,-1.66048e-015f},{-0.66887f,0.743379f,-9.97247e-016f}, - {-0.499433f,0.866353f,-3.84287e-015f},{-0.670096f,0.742274f,2.54179e-015f},{-0.808947f,0.587881f,1.41783e-015f}, - {-0.809606f,0.586974f,2.30411e-016f},{-0.913543f,0.406743f,-4.4866e-016f},{-0.913862f,0.406026f,6.14245e-016f}, - {-0.978165f,0.20783f,6.54611e-016f},{-0.978254f,0.207408f,1.60695e-016f},{-1.0f,3.14563e-016f,0.0f}, - {0.308272f,0.951298f,-2.44905e-015f},{0.499433f,0.866353f,2.15e-015f},{0.310578f,0.950548f,4.91923e-015f}, - {0.50141f,0.86521f,4.03389e-017f},{0.66887f,0.743379f,-3.82756e-015f},{0.670096f,0.742274f,-5.62498e-015f}, - {0.808947f,0.587881f,-1.64362e-015f},{0.913543f,0.406743f,-1.46991e-016f},{0.978165f,0.20783f,1.57389e-016f}, - {-0.104013f,0.994576f,-3.07782e-016f},{0.104013f,0.994576f,-3.61655e-016f},{-0.105163f,0.994455f,-4.46105e-016f}, - {-0.308272f,0.951298f,-7.65328e-017f},{-0.310578f,0.950548f,3.61544e-016f},{-0.50141f,0.86521f,2.00587e-015f}, - {-0.66887f,0.743379f,5.42625e-016f},{-0.499433f,0.866353f,-2.73223e-015f},{-0.808947f,0.587881f,2.6919e-016f}, - {-0.809606f,0.586974f,1.35895e-015f},{-0.913543f,0.406743f,2.90454e-015f},{-0.913862f,0.406026f,-3.57547e-015f}, - {-0.978165f,0.20783f,6.07001e-016f},{-0.978254f,0.207408f,-2.30818e-015f},{0.308272f,0.951298f,-3.96812e-016f}, - {0.499433f,0.866353f,0.0f},{0.310578f,0.950548f,8.76033e-016f},{0.50141f,0.86521f,1.22124e-015f}, - {0.66887f,0.743379f,-1.72196e-015f},{0.670096f,0.742274f,-1.78483e-015f},{0.808947f,0.587881f,0.0f}, - {0.913862f,0.406026f,4.70535e-015f},{1.0f,9.4739e-015f,0.0f},{-0.104013f,0.994576f,-5.75557e-016f}, - {-0.308272f,0.951298f,1.21873e-016f},{-0.50141f,0.86521f,-2.53104e-016f},{-0.66887f,0.743379f,-3.18355e-016f}, - {-0.670096f,0.742274f,-7.32345e-016f},{-0.808947f,0.587881f,-3.37532e-015f},{-0.809606f,0.586974f,-2.35366e-015f}, - {-0.913543f,0.406743f,6.26179e-016f},{-0.913862f,0.406026f,1.68129e-015f},{-0.978165f,0.20783f,3.11538e-015f}, - {-0.978254f,0.207408f,-2.35245e-015f},{-1.0f,-1.0066e-014f,0.0f},{0.310578f,0.950548f,1.27581e-015f}, - {0.808947f,0.587881f,6.24774e-015f},{0.913543f,0.406743f,4.7037e-015f},{-0.104013f,0.994576f,-7.35586e-016f}, - {0.104013f,0.994576f,-1.61619e-016f},{-0.308272f,0.951298f,-3.11924e-017f},{-0.310578f,0.950548f,3.0419e-016f}, - {-0.50141f,0.86521f,-3.92318e-016f},{-0.66887f,0.743379f,-4.52917e-016f},{-0.670096f,0.742274f,-7.02486e-016f}, - {-0.808947f,0.587881f,-3.38123e-015f},{-0.809606f,0.586974f,-2.36842e-015f},{-0.913543f,0.406743f,6.68105e-016f}, - {-0.913862f,0.406026f,1.70476e-015f},{-0.978165f,0.20783f,3.11215e-015f},{-0.978254f,0.207408f,-2.31911e-015f}, - {0.499433f,0.866353f,1.39398e-016f},{0.310578f,0.950548f,1.35229e-015f},{0.50141f,0.86521f,1.36045e-015f}, - {0.670096f,0.742274f,-1.6654e-015f},{0.913543f,0.406743f,4.76915e-015f},{-0.104013f,0.994576f,-4.67811e-016f}, - {-0.105163f,0.994455f,-2.86095e-016f},{-0.308272f,0.951298f,-2.29599e-016f},{-0.50141f,0.86521f,1.86666e-015f}, - {-0.66887f,0.743379f,4.08063e-016f},{-0.499433f,0.866353f,-2.95875e-015f},{-0.808947f,0.587881f,2.63278e-016f}, - {-0.809606f,0.586974f,1.34419e-015f},{-0.913543f,0.406743f,2.94646e-015f},{-0.913862f,0.406026f,-3.55199e-015f}, - {-0.978165f,0.20783f,6.03768e-016f},{-0.978254f,0.207408f,-2.27484e-015f},{0.308272f,0.951298f,-2.43746e-016f}, - {0.310578f,0.950548f,9.52505e-016f},{-0.104013f,0.994576f,-1.28023e-015f},{0.105163f,0.994455f,-6.40039e-015f}, - {0.104013f,0.994576f,-1.2635e-015f},{-0.105163f,0.994455f,-3.84023e-015f},{-0.308272f,0.951298f,-3.07371e-015f}, - {-0.50141f,0.86521f,8.55453e-016f},{-0.66887f,0.743379f,4.91897e-016f},{-0.499433f,0.866353f,-2.5192e-015f}, - {-0.670096f,0.742274f,2.12958e-015f},{-0.808947f,0.587881f,4.21337e-015f},{-0.809606f,0.586974f,-3.09392e-017f}, - {-0.913543f,0.406743f,-1.09766e-015f},{-0.913862f,0.406026f,-7.15687e-016f},{-0.978165f,0.20783f,4.50713e-016f}, - {-0.978254f,0.207408f,2.11367e-017f},{0.308272f,0.951298f,3.69838e-015f},{0.499433f,0.866353f,-2.15e-015f}, - {0.310578f,0.950548f,2.44712e-015f},{0.50141f,0.86521f,2.26776e-015f},{0.808947f,0.587881f,1.30161e-016f}, - {0.809606f,0.586974f,-1.51112e-015f},{0.913862f,0.406026f,1.47042e-016f},{0.978254f,0.207408f,1.57403e-016f}, - {-0.104013f,0.994576f,-1.2886e-015f},{0.105163f,0.994455f,-2.54323e-015f},{0.104013f,0.994576f,-1.29697e-015f}, - {-0.105163f,0.994455f,-2.56439e-015f},{-0.308272f,0.951298f,2.43665e-015f},{-0.310578f,0.950548f,-1.77287e-015f}, - {-0.50141f,0.86521f,-2.01694e-017f},{-0.66887f,0.743379f,-4.04454e-016f},{-0.499433f,0.866353f,2.22032e-015f}, - {-0.670096f,0.742274f,-1.08838e-015f},{-0.808947f,0.587881f,-7.85202e-016f},{-0.809606f,0.586974f,2.0208e-015f}, - {-0.913543f,0.406743f,-1.10599e-015f},{-0.913862f,0.406026f,9.7451e-016f},{-0.978165f,0.20783f,-1.11392e-015f}, - {-0.978254f,0.207408f,1.58514e-016f},{0.308272f,0.951298f,-2.42425e-015f},{0.499433f,0.866353f,-4.46073e-015f}, - {0.310578f,0.950548f,2.47211e-015f},{0.50141f,0.86521f,-1.21017e-016f},{0.66887f,0.743379f,3.71993e-015f}, - {0.670096f,0.742274f,1.91093e-015f},{0.808947f,0.587881f,1.51346e-015f},{0.913543f,0.406743f,-1.19412e-015f}, - {0.913862f,0.406026f,-1.04529e-015f},{0.978254f,0.207408f,3.14806e-016f},{-0.104013f,0.994576f,-1.27605e-015f}, - {0.105163f,0.994455f,-2.56015e-015f},{0.104013f,0.994576f,-1.27187e-015f},{-0.105163f,0.994455f,-2.55169e-015f}, - {-0.308272f,0.951298f,2.44285e-015f},{-0.310578f,0.950548f,-1.89781e-015f},{-0.50141f,0.86521f,1.51271e-017f}, - {-0.66887f,0.743379f,-4.24633e-016f},{-0.499433f,0.866353f,2.28059e-015f},{-0.670096f,0.742274f,-1.03447e-015f}, - {-0.808947f,0.587881f,-8.25877e-016f},{-0.809606f,0.586974f,1.78876e-015f},{-0.913543f,0.406743f,-1.13241e-015f}, - {-0.913862f,0.406026f,9.48088e-016f},{-0.978165f,0.20783f,-1.26731e-015f},{-0.978254f,0.207408f,1.76191e-016f}, - {0.308272f,0.951298f,-2.48625e-015f},{0.499433f,0.866353f,-4.54109e-015f},{0.310578f,0.950548f,2.45961e-015f}, - {0.66887f,0.743379f,3.77374e-015f},{0.670096f,0.742274f,2.01875e-015f},{0.808947f,0.587881f,1.64362e-015f}, - {0.913543f,0.406743f,-1.04713e-015f},{0.913862f,0.406026f,-1.19233e-015f},{0.105163f,0.994455f,-6.40462e-015f}, - {0.104013f,0.994576f,-1.27605e-015f},{-0.105163f,0.994455f,-3.83177e-015f},{-0.308272f,0.951298f,-3.06751e-015f}, - {-0.310578f,0.950548f,6.18026e-016f},{-0.50141f,0.86521f,8.60495e-016f},{-0.66887f,0.743379f,3.50643e-016f}, - {-0.499433f,0.866353f,-2.39364e-015f},{-0.670096f,0.742274f,2.21045e-015f},{-0.808947f,0.587881f,4.28049e-015f}, - {-0.809606f,0.586974f,3.82652e-017f},{-0.913543f,0.406743f,-1.05976e-015f},{-0.913862f,0.406026f,-7.14539e-016f}, - {-0.978165f,0.20783f,6.42838e-016f},{-0.978254f,0.207408f,2.38181e-016f},{0.308272f,0.951298f,3.71078e-015f}, - {0.310578f,0.950548f,2.39715e-015f},{0.50141f,0.86521f,2.18708e-015f},{0.66887f,0.743379f,5.38112e-017f}, - {0.670096f,0.742274f,5.39099e-017f},{0.808947f,0.587881f,-6.50806e-017f},{0.809606f,0.586974f,-1.31572e-015f}, - {0.978165f,0.20783f,9.12701e-016f},{0.978254f,0.207408f,-1.57403e-016f},{-2.9992e-017f,1.0f,4.35009e-018f}, - {0.307814f,0.951446f,8.09361e-016f},{-3.30053e-017f,1.0f,4.35009e-018f},{-0.587751f,0.809042f,-3.83595e-016f}, - {-0.309304f,0.950963f,-1.80891e-016f},{-0.588229f,0.808694f,-7.54388e-016f},{-0.307814f,0.951446f,1.83345e-017f}, - {-0.807656f,0.589654f,2.20949e-015f},{-0.952103f,0.305779f,4.58604e-015f},{-0.950842f,0.309676f,1.56814e-015f}, - {-0.811958f,0.583716f,-1.76798e-015f},{0.309304f,0.950963f,4.15271e-016f},{0.587751f,0.809042f,-2.12505e-018f}, - {0.588229f,0.808694f,1.51231e-015f},{0.811958f,0.583716f,6.63961e-019f},{0.807656f,0.589654f,-2.07933e-015f}, - {0.952103f,0.305779f,2.44947e-015f},{0.950842f,0.309676f,-2.44821e-015f},{-7.14668e-017f,1.0f,1.76219e-017f}, - {0.307814f,0.951446f,4.05503e-016f},{-7.63065e-017f,1.0f,1.76219e-017f},{-0.587751f,0.809042f,1.91069e-015f}, - {-0.309304f,0.950963f,-8.01418e-016f},{-0.588229f,0.808694f,2.00475e-016f},{-0.307814f,0.951446f,1.92778e-016f}, - {-0.807656f,0.589654f,1.55906e-015f},{-0.952103f,0.305779f,3.26471e-015f},{-0.950842f,0.309676f,7.07118e-016f}, - {-0.811958f,0.583716f,-1.04241e-015f},{0.309304f,0.950963f,8.97608e-018f},{0.587751f,0.809042f,7.59323e-016f}, - {0.588229f,0.808694f,-7.62656e-016f},{0.811958f,0.583716f,-2.08933e-015f},{0.807656f,0.589654f,2.08126e-015f}, - {0.952103f,0.305779f,1.03838e-019f},{0.950842f,0.309676f,2.44827e-015f},{1.0f,1.89478e-014f,0.0f}, - {0.0f,1.0f,1.28722e-015f},{0.307814f,0.951446f,-3.67724e-015f},{1.18424e-015f,1.0f,1.28722e-015f}, - {-0.587751f,0.809042f,2.57397e-016f},{-0.309304f,0.950963f,6.12825e-016f},{-0.588229f,0.808694f,-1.47886e-018f}, - {-0.307814f,0.951446f,2.45098e-015f},{-0.807656f,0.589654f,2.89271e-015f},{-0.952103f,0.305779f,-6.10308e-016f}, - {-0.950842f,0.309676f,-1.03589e-015f},{-0.811958f,0.583716f,9.97398e-016f},{0.309304f,0.950963f,0.0f}, - {0.587751f,0.809042f,4.16564e-015f},{0.588229f,0.808694f,5.91545e-018f},{0.811958f,0.583716f,1.63307e-017f}, - {0.807656f,0.589654f,-1.51802e-015f},{0.952103f,0.305779f,0.0f},{0.950842f,0.309676f,7.97239e-016f}, - {1.0f,-6.93889e-017f,0.0f},{0.0f,1.0f,-6.43608e-016f},{0.307814f,0.951446f,1.22162e-015f}, - {1.48864e-033f,1.0f,-6.43608e-016f},{-0.587751f,0.809042f,-5.23661e-016f},{-0.309304f,0.950963f,-1.22332e-015f}, - {-0.588229f,0.808694f,1.03948e-015f},{-0.307814f,0.951446f,-1.83553e-015f},{-0.807656f,0.589654f,5.20805e-016f}, - {-0.952103f,0.305779f,2.13798e-016f},{-0.950842f,0.309676f,8.91809e-016f},{-0.811958f,0.583716f,6.21714e-016f}, - {0.587751f,0.809042f,1.04141e-015f},{0.588229f,0.808694f,-1.03505e-015f},{0.811958f,0.583716f,1.51907e-015f}, - {0.807656f,0.589654f,1.51802e-015f},{0.950842f,0.309676f,-7.97239e-016f},{0.307814f,0.951446f,-3.79309e-016f}, - {-0.587751f,0.809042f,7.51249e-016f},{-0.309304f,0.950963f,-7.78103e-016f},{-0.588229f,0.808694f,2.7896e-018f}, - {-0.807656f,0.589654f,4.02884e-015f},{-0.952103f,0.305779f,-5.00781e-015f},{-1.0f,1.89478e-014f,0.0f}, - {-0.950842f,0.309676f,5.45e-016f},{-0.811958f,0.583716f,-7.88142e-016f},{-1.0f,1.06581e-014f,0.0f}, - {0.309304f,0.950963f,1.71297e-017f},{0.587751f,0.809042f,1.511e-015f},{0.588229f,0.808694f,-2.04514e-018f}, - {0.807656f,0.589654f,2.07918e-015f},{0.952103f,0.305779f,-2.45277e-015f},{0.950842f,0.309676f,2.44755e-015f}, - {0.0f,1.0f,-1.28722e-015f},{0.307814f,0.951446f,-3.09549e-018f},{-1.18424e-015f,1.0f,-1.28722e-015f}, - {-0.587751f,0.809042f,7.78103e-016f},{-0.309304f,0.950963f,-1.83536e-015f},{-0.588229f,0.808694f,1.55997e-015f}, - {-0.307814f,0.951446f,-1.22317e-015f},{-0.807656f,0.589654f,-2.70499e-015f},{-0.952103f,0.305779f,5.82801e-016f}, - {-0.950842f,0.309676f,6.707e-016f},{-0.811958f,0.583716f,-2.47768e-015f},{0.309304f,0.950963f,-2.44819e-015f}, - {0.587751f,0.809042f,0.0f},{0.588229f,0.808694f,-2.07601e-015f},{0.0f,1.0f,6.43608e-016f}, - {0.307814f,0.951446f,-4.90196e-015f},{-1.48864e-033f,1.0f,6.43608e-016f},{-0.588229f,0.808694f,-5.21961e-016f}, - {-0.307814f,0.951446f,3.06334e-015f},{-0.807656f,0.589654f,-5.22835e-016f},{-0.952103f,0.305779f,-1.18305e-016f}, - {-0.950842f,0.309676f,-6.59069e-016f},{-0.811958f,0.583716f,7.15635e-016f},{0.309304f,0.950963f,1.22409e-015f}, - {0.588229f,0.808694f,1.04688e-015f},{0.307814f,0.951446f,8.01726e-016f},{-0.587751f,0.809042f,-1.69861e-016f}, - {-0.309304f,0.950963f,1.93934e-016f},{-0.588229f,0.808694f,-1.31388e-015f},{-0.307814f,0.951446f,5.89001e-016f}, - {-0.807656f,0.589654f,-1.94968e-015f},{-0.952103f,0.305779f,3.28386e-015f},{-0.950842f,0.309676f,-1.06186e-015f}, - {-0.811958f,0.583716f,5.25337e-016f},{0.309304f,0.950963f,-3.89165e-016f},{0.587751f,0.809042f,-7.53802e-016f}, - {0.588229f,0.808694f,7.51699e-016f},{0.811958f,0.583716f,1.00283e-018f},{0.807656f,0.589654f,-2.07725e-015f}, - {0.950842f,0.309676f,3.9552e-019f},{1.0f,-1.89478e-014f,0.0f},{-0.761438f,0.648238f,2.94694e-016f}, - {-0.718339f,0.695693f,3.39459e-016f},{-0.718357f,0.695675f,-3.39456e-016f},{0.0960133f,0.99538f,-2.46936e-016f}, - {0.0320605f,0.999486f,-9.42991e-016f},{0.0960396f,0.995378f,3.20316e-016f},{-0.032044f,0.999486f,-4.9277e-016f}, - {0.032044f,0.999486f,6.25231e-016f},{0.159589f,0.987184f,8.58394e-016f},{0.15962f,0.987179f,1.45997e-016f}, - {0.22251f,0.974931f,-4.52703e-016f},{0.222542f,0.974923f,-7.64298e-016f},{0.284517f,0.958671f,-4.25434e-016f}, - {0.284548f,0.958662f,-2.51271e-016f},{0.345353f,0.938473f,-6.8736e-016f},{0.518376f,0.855153f,5.08747e-016f}, - {0.462522f,0.886608f,-1.07923e-015f},{0.462558f,0.886589f,2.04673e-016f},{0.345385f,0.938461f,-1.21586e-015f}, - {0.404803f,0.914404f,-3.09674e-016f},{0.404769f,0.914419f,1.8029e-016f},{0.572101f,0.820183f,6.61372e-016f}, - {0.518412f,0.855131f,-5.92076e-016f},{0.572134f,0.82016f,-4.37334e-016f},{0.623475f,0.781843f,1.31467e-016f}, - {0.672313f,0.740267f,1.23799e-015f},{0.672288f,0.740289f,-8.27861e-016f},{0.623505f,0.781819f,8.6137e-016f}, - {0.718339f,0.695693f,-8.99733e-016f},{0.718357f,0.695675f,-5.67888e-016f},{0.761438f,0.648238f,-1.33697e-016f}, - {0.761447f,0.648227f,2.16584e-016f},{0.801409f,0.598117f,-3.98106e-016f},{0.801406f,0.598121f,2.48774e-016f}, - {0.981554f,0.191184f,4.00667e-016f},{0.967317f,0.25357f,-1.85681e-016f},{0.981559f,0.191157f,-7.78912e-016f}, - {0.871315f,0.490723f,-1.02521e-015f},{0.90096f,0.433902f,2.05671e-017f},{0.871302f,0.490747f,-7.5201e-016f}, - {0.838075f,0.545555f,3.05312e-016f},{0.838084f,0.545542f,1.28783e-015f},{0.900965f,0.433892f,-3.31874e-016f}, - {0.926902f,0.375304f,-2.89443e-016f},{0.926953f,0.375176f,3.48902e-016f},{0.949042f,0.315149f,7.91723e-016f}, - {0.94917f,0.314763f,1.83311e-017f},{0.967287f,0.253683f,-1.2494e-015f},{0.991791f,0.12787f,1.80602e-016f}, - {0.997946f,0.0640673f,-2.96278e-017f},{0.997945f,0.0640792f,-1.66986e-016f},{0.991787f,0.127897f,-1.01412e-015f}, - {1.0f,-1.4803e-017f,0.0f},{-0.0320605f,0.999486f,-2.5793e-018f},{-0.0960397f,0.995377f,3.1259e-016f}, - {-0.0960134f,0.99538f,7.93068e-016f},{-0.159589f,0.987184f,3.0484e-016f},{-0.15962f,0.987179f,1.05577e-015f}, - {-0.222542f,0.974923f,-1.16968e-015f},{-0.22251f,0.97493f,-9.5911e-016f},{-0.284548f,0.958662f,-3.77177e-016f}, - {-0.284517f,0.958671f,3.77173e-016f},{-0.345353f,0.938473f,3.02004e-016f},{-0.345385f,0.938461f,-7.97082e-017f}, - {-0.404803f,0.914404f,0.0f},{-0.404769f,0.914419f,6.53655e-016f},{-0.462558f,0.886589f,2.10881e-016f}, - {-0.462522f,0.886608f,-5.70627e-016f},{-0.518376f,0.855153f,-2.33487e-016f},{-0.518412f,0.855131f,3.58598e-016f}, - {-0.572134f,0.82016f,2.17902e-016f},{-0.572101f,0.820183f,-1.38078e-016f},{-0.623505f,0.781819f,-3.02538e-016f}, - {-0.623476f,0.781843f,-2.516e-016f},{-0.672288f,0.740289f,1.06108e-015f},{-0.672313f,0.740267f,-5.84618e-016f}, - {-0.761447f,0.648227f,2.94685e-016f},{-0.801409f,0.598117f,-6.42849e-016f},{-0.801406f,0.598121f,6.353e-017f}, - {-0.838075f,0.545555f,2.16275e-016f},{-0.838084f,0.545542f,-4.07081e-017f},{-0.871315f,0.490723f,1.40196e-016f}, - {-0.871302f,0.490747f,4.56042e-016f},{-0.900965f,0.433892f,1.44967e-016f},{-0.90096f,0.433902f,1.44966e-016f}, - {-0.926902f,0.375304f,9.24079e-017f},{-0.926953f,0.375176f,0.0f},{-0.94917f,0.314763f,2.02584e-016f}, - {-0.949042f,0.315149f,2.02832e-016f},{-0.967317f,0.25357f,0.0f},{-0.967287f,0.253683f,-1.63272e-016f}, - {-0.981554f,0.191184f,0.0f},{-0.981559f,0.191157f,0.0f},{-0.991791f,0.12787f,0.0f}, - {-0.991787f,0.127897f,0.0f},{-0.997946f,0.0640673f,0.0f},{-0.997945f,0.0640791f,-2.01813e-016f}, - {-1.0f,5.92119e-017f,0.0f},{-0.761438f,0.648238f,-1.22517e-016f},{-0.718339f,0.695693f,1.08295e-016f}, - {-0.718357f,0.695675f,2.3117e-016f},{0.0960133f,0.99538f,5.02084e-017f},{0.0320605f,0.999486f,-7.73789e-018f}, - {0.0960396f,0.995378f,6.56751e-017f},{-0.032044f,0.999486f,0.0f},{0.032044f,0.999486f,-7.73392e-018f}, - {0.159589f,0.987184f,1.97357e-016f},{0.15962f,0.987179f,1.28416e-017f},{0.22251f,0.974931f,1.50038e-016f}, - {0.222542f,0.974923f,-1.56867e-016f},{0.284517f,0.958671f,1.54252e-016f},{0.284548f,0.958662f,-7.46707e-017f}, - {0.345353f,0.938473f,2.7603e-016f},{0.518376f,0.855153f,-1.14686e-016f},{0.462522f,0.886608f,-2.41867e-016f}, - {0.462558f,0.886589f,-1.76763e-016f},{0.345385f,0.938461f,2.28326e-016f},{0.404803f,0.914404f,-2.28546e-016f}, - {0.404769f,0.914419f,5.6987e-017f},{0.572101f,0.820183f,-2.07117e-016f},{0.518412f,0.855131f,2.98183e-016f}, - {0.572134f,0.82016f,2.07129e-016f},{0.623475f,0.781843f,3.69924e-016f},{0.672313f,0.740267f,2.31169e-016f}, - {0.672288f,0.740289f,5.2187e-016f},{0.623505f,0.781819f,6.95605e-017f},{0.718339f,0.695693f,-4.01349e-016f}, - {0.718357f,0.695675f,3.64397e-016f},{0.761438f,0.648238f,1.44968e-016f},{0.761447f,0.648227f,4.58818e-016f}, - {0.801409f,0.598117f,-2.05097e-016f},{0.801406f,0.598121f,-6.80769e-016f},{0.981554f,0.191184f,1.41704e-015f}, - {0.967317f,0.25357f,3.82454e-016f},{0.981559f,0.191157f,-1.05674e-015f},{0.871315f,0.490723f,-9.36431e-016f}, - {0.90096f,0.433902f,4.48018e-017f},{0.871302f,0.490747f,-3.7096e-016f},{0.838075f,0.545555f,3.69875e-016f}, - {0.838084f,0.545542f,1.37433e-015f},{0.900965f,0.433892f,-3.75604e-016f},{0.926902f,0.375304f,-3.03308e-017f}, - {0.926953f,0.375176f,3.109e-016f},{0.949042f,0.315149f,-4.05339e-016f},{0.94917f,0.314763f,-5.01206e-016f}, - {0.967287f,0.253683f,-2.42347e-016f},{0.991791f,0.12787f,-1.89542e-017f},{0.997946f,0.0640673f,-1.23846e-016f}, - {0.997945f,0.0640792f,-2.32866e-016f},{0.991787f,0.127897f,-1.33263e-017f},{-0.0320605f,0.999486f,-1.28965e-018f}, - {-0.0960397f,0.995377f,5.40854e-017f},{-0.0960134f,0.99538f,0.0f},{-0.159589f,0.987184f,-2.56782e-017f}, - {-0.15962f,0.987179f,2.56832e-017f},{-0.222542f,0.974923f,-1.56867e-016f},{-0.22251f,0.97493f,-1.38967e-016f}, - {-0.284548f,0.958662f,-6.86764e-017f},{-0.284517f,0.958671f,2.28896e-017f},{-0.345353f,0.938473f,3.57572e-016f}, - {-0.345385f,0.938461f,-5.5573e-017f},{-0.404803f,0.914404f,6.51336e-017f},{-0.404769f,0.914419f,1.6282e-016f}, - {-0.462558f,0.886589f,3.72132e-017f},{-0.462522f,0.886608f,7.44207e-017f},{-0.518376f,0.855153f,2.33487e-016f}, - {-0.518412f,0.855131f,1.08358e-016f},{-0.572134f,0.82016f,-1.38086e-016f},{-0.572101f,0.820183f,2.63938e-016f}, - {-0.623505f,0.781819f,-2.00646e-016f},{-0.623476f,0.781843f,0.0f},{-0.672288f,0.740289f,0.0f}, - {-0.672313f,0.740267f,1.08176e-016f},{-0.761447f,0.648227f,0.0f},{-0.801409f,0.598117f,0.0f}, - {-0.801406f,0.598121f,-1.28948e-016f},{-0.838075f,0.545555f,-1.34848e-016f},{-0.838084f,0.545542f,0.0f}, - {-0.871315f,0.490723f,0.0f},{-0.900965f,0.433892f,0.0f},{-0.90096f,0.433902f,-1.34297e-016f}, - {-0.926902f,0.375304f,-1.4914e-016f},{-0.926953f,0.375176f,2.98297e-016f},{-0.94917f,0.314763f,0.0f}, - {-0.949042f,0.315149f,0.0f},{-0.967317f,0.25357f,-1.55643e-016f},{-0.967287f,0.253683f,7.63412e-018f}, - {-0.981554f,0.191184f,1.57934e-016f},{-0.981559f,0.191157f,1.2303e-016f},{-0.991787f,0.127897f,2.41896e-016f}, - {-0.997945f,0.0640791f,-1.60571e-016f},{-0.761438f,0.648238f,0.0f},{-0.718339f,0.695693f,2.23877e-016f}, - {-0.718357f,0.695675f,-4.47741e-016f},{0.0960133f,0.99538f,3.51215e-016f},{0.0320605f,0.999486f,3.42273e-016f}, - {-0.032044f,0.999486f,-4.72146e-016f},{0.032044f,0.999486f,1.27624e-015f},{0.159589f,0.987184f,7.94198e-016f}, - {0.15962f,0.987179f,-5.022e-016f},{0.22251f,0.974931f,-3.78511e-016f},{0.222542f,0.974923f,5.9166e-016f}, - {0.284517f,0.958671f,3.08504e-016f},{0.284548f,0.958662f,8.02594e-016f},{0.345353f,0.938473f,-7.5501e-016f}, - {0.518376f,0.855153f,-8.32879e-016f},{0.462522f,0.886608f,-5.02391e-016f},{0.462558f,0.886589f,6.82274e-017f}, - {0.345385f,0.938461f,-1.39465e-015f},{0.404803f,0.914404f,2.03832e-016f},{0.404769f,0.914419f,-8.20038e-017f}, - {0.572101f,0.820183f,-1.06879e-015f},{0.518412f,0.855131f,6.78507e-016f},{0.572134f,0.82016f,6.60622e-016f}, - {0.623475f,0.781843f,9.80918e-016f},{0.672313f,0.740267f,2.57355e-016f},{0.672288f,0.740289f,-2.9505e-016f}, - {0.623505f,0.781819f,4.08838e-016f},{0.718339f,0.695693f,-1.96803e-016f},{0.718357f,0.695675f,2.10791e-016f}, - {0.761438f,0.648238f,-4.65431e-016f},{0.761447f,0.648227f,-3.46836e-016f},{0.801409f,0.598117f,3.19296e-016f}, - {0.801406f,0.598121f,2.0836e-016f},{0.981554f,0.191184f,-1.63198e-016f},{0.967317f,0.25357f,1.39352e-016f}, - {0.981559f,0.191157f,1.09203e-016f},{0.871315f,0.490723f,2.84009e-016f},{0.90096f,0.433902f,9.59966e-017f}, - {0.871302f,0.490747f,0.0f},{0.838075f,0.545555f,-2.20643e-016f},{0.838084f,0.545542f,3.61373e-016f}, - {0.900965f,0.433892f,-1.38293e-016f},{0.926902f,0.375304f,-1.28524e-016f},{0.926953f,0.375176f,1.80871e-017f}, - {0.949042f,0.315149f,6.82655e-017f},{0.94917f,0.314763f,1.30547e-016f},{0.967287f,0.253683f,1.42883e-016f}, - {0.991791f,0.12787f,4.92136e-017f},{0.997946f,0.0640673f,-3.34814e-017f},{0.997945f,0.0640792f,-3.21075e-017f}, - {0.991787f,0.127897f,-4.36713e-017f},{1.0f,-1.18424e-016f,0.0f},{1.0f,-1.22125e-016f,0.0f}, - {-0.0320605f,0.999486f,6.63911e-016f},{-0.0960397f,0.995377f,-2.58504e-016f},{-0.0960134f,0.99538f,8.3169e-016f}, - {-0.159589f,0.987184f,9.53038e-016f},{-0.15962f,0.987179f,3.17678e-016f},{-0.222542f,0.974923f,-8.69587e-016f}, - {-0.22251f,0.97493f,3.99e-016f},{-0.284548f,0.958662f,-7.08571e-016f},{-0.284517f,0.958671f,1.83117e-016f}, - {-0.345353f,0.938473f,4.92873e-016f},{-0.345385f,0.938461f,-4.13146e-016f},{-0.404803f,0.914404f,1.30267e-016f}, - {-0.404769f,0.914419f,-2.60512e-016f},{-0.462558f,0.886589f,-1.23983e-017f},{-0.462522f,0.886608f,2.72945e-016f}, - {-0.518376f,0.855153f,5.50383e-016f},{-0.518412f,0.855131f,0.0f},{-0.572134f,0.82016f,-5.27861e-016f}, - {-0.572101f,0.820183f,-3.68209e-016f},{-0.623505f,0.781819f,-1.15607e-015f},{-0.623476f,0.781843f,9.04474e-016f}, - {-0.672288f,0.740289f,4.3269e-016f},{-0.672313f,0.740267f,-1.38559e-015f},{-0.761447f,0.648227f,4.90073e-016f}, - {-0.801409f,0.598117f,-7.08269e-016f},{-0.801406f,0.598121f,5.15791e-016f},{-0.838075f,0.545555f,1.42991e-015f}, - {-0.838084f,0.545542f,5.39397e-016f},{-0.871315f,0.490723f,1.4374e-015f},{-0.871302f,0.490747f,8.05705e-016f}, - {-0.900965f,0.433892f,2.79256e-016f},{-0.90096f,0.433902f,-2.79263e-016f},{-0.926902f,0.375304f,-1.19312e-015f}, - {-0.94917f,0.314763f,-6.10893e-016f},{-0.949042f,0.315149f,6.10811e-016f},{-0.981559f,0.191157f,1.26348e-015f}, - {-0.991791f,0.12787f,-1.27665e-015f},{-0.997946f,0.0640673f,-4.12342e-017f},{-0.997945f,0.0640791f,0.0f}, - {-1.0f,2.96059e-017f,0.0f},{-0.761438f,0.648238f,6.98673e-016f},{-0.718339f,0.695693f,2.38452e-016f}, - {-0.718357f,0.695675f,2.23871e-016f},{0.0960133f,0.99538f,9.26924e-017f},{0.0320605f,0.999486f,0.0f}, - {0.0960396f,0.995378f,-1.60158e-016f},{-0.032044f,0.999486f,1.81443e-016f},{0.032044f,0.999486f,1.03119e-017f}, - {0.159589f,0.987184f,-1.02713e-016f},{0.15962f,0.987179f,5.13664e-017f},{0.22251f,0.974931f,-3.58022e-017f}, - {0.222542f,0.974923f,-1.14241e-016f},{0.284517f,0.958671f,7.7126e-017f},{0.284548f,0.958662f,-2.31376e-016f}, - {0.345353f,0.938473f,-1.99332e-017f},{0.518376f,0.855153f,1.59511e-016f},{0.462522f,0.886608f,-7.44207e-017f}, - {0.462558f,0.886589f,7.44265e-017f},{0.345385f,0.938461f,1.31073e-016f},{0.404803f,0.914404f,-2.03832e-016f}, - {0.404769f,0.914419f,3.42516e-016f},{0.572101f,0.820183f,0.0f},{0.518412f,0.855131f,1.37592e-016f}, - {0.572134f,0.82016f,-9.20575e-017f},{0.623475f,0.781843f,2.70309e-016f},{0.672313f,0.740267f,1.21844e-016f}, - {0.672288f,0.740289f,4.072e-017f},{0.623505f,0.781819f,-2.46886e-017f},{0.718339f,0.695693f,5.59692e-017f}, - {0.718357f,0.695675f,-1.58167e-017f},{0.761438f,0.648238f,9.58184e-017f},{0.761447f,0.648227f,0.0f}, - {0.801409f,0.598117f,-1.73215e-016f},{0.801406f,0.598121f,-4.04141e-017f},{0.981554f,0.191184f,-1.63905e-016f}, - {0.967317f,0.25357f,-7.6878e-017f},{0.981559f,0.191157f,5.28888e-017f},{0.871315f,0.490723f,1.89545e-016f}, - {0.90096f,0.433902f,2.2772e-016f},{0.871302f,0.490747f,-3.40821e-016f},{0.838075f,0.545555f,-1.33657e-016f}, - {0.838084f,0.545542f,-1.67369e-016f},{0.900965f,0.433892f,2.95425e-017f},{0.926902f,0.375304f,4.04643e-016f}, - {0.926953f,0.375176f,-1.73096e-017f},{0.949042f,0.315149f,7.36158e-017f},{0.94917f,0.314763f,-7.22027e-018f}, - {0.967287f,0.253683f,-1.19283e-019f},{0.991791f,0.12787f,8.57703e-019f},{0.997946f,0.0640673f,-5.42011e-017f}, - {0.997945f,0.0640792f,-2.44892e-017f},{0.991787f,0.127897f,-1.77286e-016f},{1.0f,-1.59132e-016f,0.0f}, - {-0.0320605f,0.999486f,0.0f},{-0.0960397f,0.995377f,0.0f},{-0.159589f,0.987184f,-1.02713e-016f}, - {-0.15962f,0.987179f,2.10205e-016f},{-0.222542f,0.974923f,-7.16149e-017f},{-0.22251f,0.97493f,7.16044e-017f}, - {-0.284548f,0.958662f,-3.08501e-016f},{-0.284517f,0.958671f,-9.15586e-017f},{-0.345353f,0.938473f,0.0f}, - {-0.345385f,0.938461f,0.0f},{-0.404769f,0.914419f,0.0f},{-0.462522f,0.886608f,0.0f}, - {-0.518376f,0.855153f,-5.84395e-017f},{-0.518412f,0.855131f,-3.33654e-016f},{-0.572134f,0.82016f,0.0f}, - {-0.623505f,0.781819f,-6.52885e-016f},{-0.672288f,0.740289f,8.6538e-016f},{-0.672313f,0.740267f,-2.38221e-016f}, - {-0.761447f,0.648227f,1.18875e-015f},{-0.801409f,0.598117f,-1.54738e-015f},{-0.801406f,0.598121f,-5.15791e-016f}, - {-0.838075f,0.545555f,3.6383e-016f},{-0.871315f,0.490723f,1.12157e-015f},{-0.871302f,0.490747f,1.12155e-015f}, - {-0.900965f,0.433892f,5.79868e-016f},{-0.90096f,0.433902f,-5.79865e-016f},{-0.926902f,0.375304f,0.0f}, - {-0.926953f,0.375176f,-5.96594e-016f},{-0.94917f,0.314763f,6.10893e-016f},{-0.967317f,0.25357f,-1.40834e-015f}, - {-0.967287f,0.253683f,1.63272e-016f},{-0.981559f,0.191157f,1.38651e-015f},{-0.991791f,0.12787f,-1.19435e-015f}, - {-0.991787f,0.127897f,8.23157e-017f},{-1.0f,1.4803e-017f,0.0f},{-0.104013f,0.994576f,3.5353e-016f}, - {0.105163f,0.994455f,-6.06197e-016f},{0.104013f,0.994576f,-5.89909e-016f},{-0.105163f,0.994455f,9.60058e-016f}, - {-0.308272f,0.951298f,4.26112e-018f},{-0.310578f,0.950548f,-4.99725e-017f},{-0.50141f,0.86521f,-3.27865e-016f}, - {-0.66887f,0.743379f,-5.14273e-016f},{-0.499433f,0.866353f,9.45034e-016f},{-0.670096f,0.742274f,-6.85702e-016f}, - {-0.808947f,0.587881f,-3.17829e-016f},{-0.809606f,0.586974f,-1.49813e-016f},{-0.913543f,0.406743f,4.89574e-016f}, - {-0.913862f,0.406026f,-3.27139e-016f},{-0.978165f,0.20783f,4.59595e-016f},{-0.978254f,0.207408f,2.95231e-016f}, - {-1.0f,-1.33227e-015f,0.0f},{0.499433f,0.866353f,-5.57591e-016f},{0.310578f,0.950548f,0.0f}, - {0.50141f,0.86521f,-1.61356e-016f},{0.66887f,0.743379f,-9.56889e-016f},{0.670096f,0.742274f,-6.93373e-016f}, - {0.808947f,0.587881f,-1.18042e-016f},{0.913543f,0.406743f,5.23566e-016f},{0.809606f,0.586974f,4.03822e-016f}, - {0.913862f,0.406026f,2.94084e-016f},{1.0f,1.18424e-015f,0.0f},{-0.104013f,0.994576f,3.36794e-016f}, - {0.105163f,0.994455f,-6.5696e-016f},{0.104013f,0.994576f,-6.56853e-016f},{-0.105163f,0.994455f,8.92374e-016f}, - {-0.308272f,0.951298f,2.27468e-016f},{-0.310578f,0.950548f,2.49863e-017f},{-0.50141f,0.86521f,-4.69051e-016f}, - {-0.499433f,0.866353f,9.65124e-016f},{-0.670096f,0.742274f,-7.26134e-016f},{-0.808947f,0.587881f,-9.00466e-017f}, - {-0.809606f,0.586974f,-5.2113e-017f},{-0.913543f,0.406743f,4.25266e-016f},{-0.913862f,0.406026f,-5.24727e-016f}, - {-0.978165f,0.20783f,6.42805e-016f},{-0.978254f,0.207408f,9.93815e-018f},{-1.0f,1.25825e-015f,0.0f}, - {0.308272f,0.951298f,-9.9203e-017f},{0.310578f,0.950548f,-9.99451e-017f},{0.809606f,0.586974f,-3.77781e-016f}, - {0.913862f,0.406026f,5.88168e-016f},{0.978254f,0.207408f,-6.29612e-016f},{1.0f,-1.18424e-015f,0.0f}, - {-0.104013f,0.994576f,9.93647e-016f},{0.105163f,0.994455f,1.31392e-015f},{0.104013f,0.994576f,5.02078e-017f}, - {-0.105163f,0.994455f,3.20019e-016f},{-0.308272f,0.951298f,-6.08002e-016f},{-0.50141f,0.86521f,5.07418e-016f}, - {-0.66887f,0.743379f,-6.33884e-016f},{-0.499433f,0.866353f,-4.48944e-016f},{-0.670096f,0.742274f,-8.85355e-017f}, - {-0.808947f,0.587881f,3.44309e-016f},{-0.809606f,0.586974f,7.94639e-016f},{-0.913543f,0.406743f,3.42322e-016f}, - {-0.913862f,0.406026f,3.83328e-016f},{-0.978165f,0.20783f,5.54168e-016f},{-0.978254f,0.207408f,1.60699e-016f}, - {0.308272f,0.951298f,1.22453e-015f},{0.499433f,0.866353f,5.57591e-016f},{0.310578f,0.950548f,-1.22356e-015f}, - {0.66887f,0.743379f,4.78444e-016f},{0.670096f,0.742274f,-2.1564e-016f},{0.913543f,0.406743f,-5.23566e-016f}, - {0.809606f,0.586974f,1.15938e-015f},{-0.104013f,0.994576f,9.76911e-016f},{0.105163f,0.994455f,1.26316e-015f}, - {0.104013f,0.994576f,-1.67359e-017f},{-0.105163f,0.994455f,2.52336e-016f},{-0.308272f,0.951298f,-3.84795e-016f}, - {-0.50141f,0.86521f,3.66232e-016f},{-0.499433f,0.866353f,-4.28854e-016f},{-0.670096f,0.742274f,-1.28968e-016f}, - {-0.808947f,0.587881f,5.72092e-016f},{-0.809606f,0.586974f,8.92339e-016f},{-0.913543f,0.406743f,2.78013e-016f}, - {-0.913862f,0.406026f,1.85741e-016f},{-0.978165f,0.20783f,7.37379e-016f},{-0.978254f,0.207408f,-1.24594e-016f}, - {0.308272f,0.951298f,1.12532e-015f},{0.310578f,0.950548f,-1.3235e-015f},{0.809606f,0.586974f,3.77781e-016f}, - {-0.104013f,0.994576f,9.26703e-016f},{0.105163f,0.994455f,1.17855e-015f},{0.104013f,0.994576f,-3.34719e-017f}, - {-0.105163f,0.994455f,3.87703e-016f},{-0.308272f,0.951298f,-3.10392e-016f},{-0.310578f,0.950548f,2.49863e-016f}, - {-0.50141f,0.86521f,7.29282e-016f},{-0.66887f,0.743379f,1.18511e-017f},{-0.499433f,0.866353f,-3.48494e-016f}, - {-0.670096f,0.742274f,-1.02013e-016f},{-0.808947f,0.587881f,1.97878e-016f},{-0.809606f,0.586974f,1.21801e-015f}, - {-0.913543f,0.406743f,2.04518e-016f},{-0.913862f,0.406026f,5.70787e-017f},{-0.978165f,0.20783f,8.92923e-016f}, - {-0.978254f,0.207408f,-6.1033e-016f},{-1.0f,2.51651e-015f,0.0f},{0.308272f,0.951298f,1.02612e-015f}, - {0.50141f,0.86521f,3.22711e-016f},{0.670096f,0.742274f,-4.31279e-016f},{0.808947f,0.587881f,-8.99009e-016f}, - {0.978254f,0.207408f,-1.25922e-015f},{0.104013f,0.994576f,1.33888e-016f},{-0.308272f,0.951298f,-7.56806e-016f}, - {-0.310578f,0.950548f,4.99725e-017f},{-0.50141f,0.86521f,5.27588e-016f},{-0.66887f,0.743379f,-1.11819e-015f}, - {-0.499433f,0.866353f,-3.88674e-016f},{-0.670096f,0.742274f,-6.41112e-016f},{-0.808947f,0.587881f,-7.94601e-016f}, - {-0.809606f,0.586974f,1.00632e-015f},{-0.913543f,0.406743f,7.28172e-016f},{-0.913862f,0.406026f,8.29049e-016f}, - {-0.978165f,0.20783f,2.91649e-016f},{-0.978254f,0.207408f,-5.20414e-017f},{-1.0f,-2.66454e-015f,0.0f}, - {0.499433f,0.866353f,8.7903e-016f},{0.310578f,0.950548f,-1.12361e-015f},{0.50141f,0.86521f,0.0f}, - {0.670096f,0.742274f,0.0f},{0.809606f,0.586974f,1.41992e-015f},{0.104013f,0.994576f,-5.06229e-016f}, - {-0.105163f,0.994455f,1.02774e-015f},{-0.308272f,0.951298f,-1.44543e-016f},{-0.50141f,0.86521f,-3.07696e-016f}, - {-0.66887f,0.743379f,-9.98574e-016f},{-0.499433f,0.866353f,1.0053e-015f},{-0.670096f,0.742274f,-1.23828e-015f}, - {-0.808947f,0.587881f,-1.45674e-015f},{-0.809606f,0.586974f,6.18708e-017f},{-0.913543f,0.406743f,8.75425e-016f}, - {-0.913862f,0.406026f,1.18582e-016f},{-0.978165f,0.20783f,1.97076e-016f},{-0.978254f,0.207408f,8.24911e-017f}, - {0.499433f,0.866353f,-2.36152e-016f},{0.310578f,0.950548f,9.99451e-017f},{0.670096f,0.742274f,-4.77733e-016f}, - {0.809606f,0.586974f,6.64356e-016f},{0.105163f,0.994455f,-7.07722e-016f},{0.104013f,0.994576f,-7.40532e-016f}, - {-0.308272f,0.951298f,3.0187e-016f},{-0.310578f,0.950548f,9.99451e-017f},{-0.50141f,0.86521f,-1.4634e-016f}, - {-0.66887f,0.743379f,-2.72122e-016f},{-0.499433f,0.866353f,1.16602e-015f},{-0.670096f,0.742274f,-6.4527e-016f}, - {-0.808947f,0.587881f,-4.8053e-016f},{-0.809606f,0.586974f,-2.8008e-016f},{-0.913543f,0.406743f,6.18191e-016f}, - {-0.913862f,0.406026f,-5.15537e-016f},{-0.978165f,0.20783f,-3.56243e-016f},{-0.978254f,0.207408f,9.60179e-017f}, - {-1.0f,2.66454e-015f,0.0f},{0.308272f,0.951298f,9.9203e-017f},{0.310578f,0.950548f,-2.99835e-016f}, - {0.66887f,0.743379f,-1.38738e-015f},{0.670096f,0.742274f,-4.64542e-017f},{0.808947f,0.587881f,6.62925e-016f}, - {0.913543f,0.406743f,-6.43974e-017f},{0.809606f,0.586974f,-8.98849e-016f},{0.978165f,0.20783f,1.25911e-015f}, - {0.826318f,-0.563203f,2.17827e-015f},{0.642788f,-0.766044f,-8.27406e-016f},{0.411158f,-0.911564f,-1.4099e-015f}, - {0.158603f,-0.987342f,-1.62037e-016f},{0.944801f,-0.327644f,1.31796e-017f},{-0.911564f,0.411158f,2.34469e-015f}, - {-0.766044f,0.642788f,-2.74725e-017f},{-0.563203f,0.826318f,-5.49955e-016f},{-0.327644f,0.944801f,-2.4991e-016f}, - {-0.987342f,0.158603f,2.54184e-015f},{0.0746326f,0.997211f,-2.34456e-017f},{-0.074795f,0.997199f,-5.19989e-016f}, - {-0.0746326f,0.997211f,2.89595e-016f},{0.222381f,0.97496f,-5.69819e-016f},{0.074795f,0.997199f,1.28888e-016f}, - {0.222585f,0.974913f,-9.61018e-016f},{0.365177f,0.930938f,7.43247e-016f},{0.365379f,0.930859f,1.64673e-015f}, - {0.49999f,0.866031f,-6.16426e-016f},{0.499833f,0.866122f,1.18802e-015f},{0.623256f,0.782018f,-4.36855e-016f}, - {0.82663f,0.562746f,-2.05696e-015f},{0.900794f,0.434246f,-2.67821e-015f},{0.826061f,0.563581f,3.78148e-015f}, - {0.623488f,0.781833f,2.4348e-015f},{0.732917f,0.680318f,-3.91184e-015f},{0.733034f,0.680192f,-2.46978e-015f}, - {0.901683f,0.432397f,-1.33326e-016f},{0.955502f,0.294984f,9.24071e-016f},{0.955572f,0.294759f,-1.22029e-015f}, - {0.988846f,0.148938f,2.44716e-015f},{0.988818f,0.149126f,-1.41507e-015f},{-0.222381f,0.97496f,-5.76348e-016f}, - {-0.365177f,0.930938f,3.67387e-017f},{-0.222585f,0.974913f,-4.28956e-017f},{-0.365379f,0.930859f,7.43524e-017f}, - {-0.499834f,0.866121f,1.2601e-015f},{-0.499989f,0.866031f,-1.2789e-015f},{-0.623256f,0.782018f,-1.648e-015f}, - {-0.732917f,0.680318f,3.01013e-017f},{-0.623488f,0.781833f,-3.28495e-015f},{-0.733034f,0.680192f,-1.85694e-015f}, - {-0.826061f,0.563581f,-2.135e-015f},{-0.82663f,0.562746f,-4.26401e-015f},{-0.900794f,0.434246f,2.32224e-015f}, - {-0.955502f,0.294984f,2.79226e-018f},{-0.901683f,0.432397f,-1.33512e-017f},{-0.955572f,0.294759f,-3.07218e-018f}, - {-0.988818f,0.149126f,8.60722e-020f},{-0.988846f,0.148938f,1.12747e-019f},{0.0746326f,0.997211f,2.56725e-015f}, - {-0.074795f,0.997199f,-1.28361e-015f},{-0.0746326f,0.997211f,3.84937e-015f},{0.222381f,0.97496f,-6.27044e-015f}, - {0.074795f,0.997199f,-1.28211e-015f},{0.222585f,0.974913f,-1.87791e-015f},{0.365177f,0.930938f,-1.10171e-017f}, - {0.365379f,0.930859f,-2.40011e-015f},{0.49999f,0.866031f,-3.0455e-015f},{0.499833f,0.866122f,2.50346e-015f}, - {0.623256f,0.782018f,-7.54969e-016f},{0.82663f,0.562746f,1.35373e-016f},{0.900794f,0.434246f,8.30693e-016f}, - {0.826061f,0.563581f,-3.70334e-017f},{0.623488f,0.781833f,7.8614e-016f},{0.732917f,0.680318f,0.0f}, - {0.733034f,0.680192f,-9.83866e-017f},{0.901683f,0.432397f,-2.82436e-016f},{0.955502f,0.294984f,-5.75977e-016f}, - {0.955572f,0.294759f,6.52881e-016f},{0.988846f,0.148938f,8.2274e-016f},{0.988818f,0.149126f,1.39061e-016f}, - {-0.222381f,0.97496f,-2.50997e-015f},{-0.365177f,0.930938f,4.80796e-015f},{-0.222585f,0.974913f,3.76477e-015f}, - {-0.365379f,0.930859f,2.39643e-015f},{-0.499834f,0.866121f,-2.22977e-015f},{-0.623256f,0.782018f,0.0f}, - {-0.732917f,0.680318f,-2.94819e-017f},{-0.623488f,0.781833f,-6.0634e-015f},{-0.733034f,0.680192f,-2.94867e-017f}, - {-0.826061f,0.563581f,2.9018e-015f},{-0.82663f,0.562746f,2.831e-015f},{-0.900794f,0.434246f,7.24697e-017f}, - {-0.955502f,0.294984f,-7.68711e-017f},{-0.901683f,0.432397f,-1.11318e-015f},{-0.955572f,0.294759f,0.0f}, - {-0.988818f,0.149126f,-7.67832e-016f},{-0.988846f,0.148938f,-7.95536e-017f},{0.0746326f,0.997211f,7.26226e-017f}, - {-0.074795f,0.997199f,-3.86026e-017f},{-0.0746326f,0.997211f,1.39011e-018f},{0.222381f,0.97496f,-2.83567e-016f}, - {0.074795f,0.997199f,-1.59944e-016f},{0.222585f,0.974913f,4.17819e-017f},{0.365177f,0.930938f,-1.96876e-016f}, - {0.365379f,0.930859f,-1.1752e-015f},{0.49999f,0.866031f,1.15346e-015f},{0.499833f,0.866122f,-2.59619e-016f}, - {0.623256f,0.782018f,-2.04138e-015f},{0.82663f,0.562746f,6.03166e-016f},{0.900794f,0.434246f,5.46692e-016f}, - {0.826061f,0.563581f,-1.66803e-015f},{0.623488f,0.781833f,1.23095e-015f},{0.732917f,0.680318f,9.23191e-016f}, - {0.733034f,0.680192f,-2.70567e-015f},{0.901683f,0.432397f,-2.81735e-015f},{0.955502f,0.294984f,3.82595e-015f}, - {0.955572f,0.294759f,5.47878e-016f},{0.988846f,0.148938f,-6.9894e-016f},{0.988818f,0.149126f,-2.60585e-015f}, - {-0.222381f,0.97496f,-2.90095e-016f},{-0.222585f,0.974913f,2.43619e-016f},{-0.499989f,0.866031f,1.29548e-015f}, - {-0.623256f,0.782018f,-3.25253e-015f},{-0.732917f,0.680318f,-1.85674e-015f},{-0.623488f,0.781833f,-1.67982e-015f}, - {-0.733034f,0.680192f,3.02069e-017f},{-0.826061f,0.563581f,4.24491e-015f},{-0.82663f,0.562746f,-7.8038e-018f}, - {-0.955502f,0.294984f,-4.91695e-015f},{-0.955572f,0.294759f,4.91703e-015f},{0.0746326f,0.997211f,-2.56725e-015f}, - {-0.074795f,0.997199f,2.56722e-015f},{-0.0746326f,0.997211f,3.85238e-015f},{0.222381f,0.97496f,-2.51444e-015f}, - {0.074795f,0.997199f,0.0f},{0.222585f,0.974913f,6.27462e-016f},{0.365177f,0.930938f,-4.18677e-015f}, - {0.365379f,0.930859f,-7.34878e-018f},{0.49999f,0.866031f,-8.31048e-016f},{0.499833f,0.866122f,-2.98827e-016f}, - {0.623256f,0.782018f,-2.42255e-016f},{0.82663f,0.562746f,2.14345e-016f},{0.900794f,0.434246f,-3.01398e-016f}, - {0.826061f,0.563581f,-6.76994e-016f},{0.623488f,0.781833f,-1.27366e-015f},{0.732917f,0.680318f,2.83318e-015f}, - {0.733034f,0.680192f,5.45378e-016f},{0.901683f,0.432397f,-2.82967e-015f},{0.955502f,0.294984f,1.20141e-015f}, - {0.955572f,0.294759f,1.26105e-015f},{0.988846f,0.148938f,-3.11202e-016f},{0.988818f,0.149126f,-3.47669e-016f}, - {-0.222381f,0.97496f,2.50997e-015f},{-0.365177f,0.930938f,2.41132e-015f},{-0.222585f,0.974913f,8.95358e-018f}, - {-0.365379f,0.930859f,1.46976e-017f},{-0.499989f,0.866031f,4.45908e-015f},{-0.623256f,0.782018f,-5.01415e-017f}, - {-0.732917f,0.680318f,2.94819e-017f},{-0.623488f,0.781833f,6.03832e-015f},{-0.733034f,0.680192f,1.81008e-015f}, - {-0.826061f,0.563581f,-1.4509e-015f},{-0.82663f,0.562746f,0.0f},{-0.900794f,0.434246f,0.0f}, - {-0.955502f,0.294984f,-1.51883e-015f},{-0.955572f,0.294759f,-7.68766e-017f},{-0.988818f,0.149126f,-7.95513e-017f}, - {-0.988846f,0.148938f,0.0f},{-0.933821f,0.357739f,0.0f},{-0.904255f,0.426992f,0.0f}, - {-0.904263f,0.426976f,0.0f},{-0.869576f,0.4938f,0.0f},{-0.869571f,0.493808f,0.0f}, - {-0.829957f,0.557828f,0.0f},{-0.829967f,0.557812f,0.0f},{-0.785637f,0.618687f,0.0f}, - {-0.78564f,0.618684f,0.0f},{-0.736896f,0.676006f,0.0f},{-0.736809f,0.6761f,0.0f}, - {-0.683915f,0.729561f,0.0f},{-0.683922f,0.729555f,0.0f},{-0.627048f,0.77898f,0.0f}, - {-0.627107f,0.778933f,0.0f},{-0.566722f,0.823909f,0.0f},{-0.566664f,0.823949f,0.0f}, - {-0.503086f,0.864236f,0.0f},{-0.503098f,0.864229f,0.0f},{-0.436614f,0.899649f,0.0f}, - {-0.436655f,0.899629f,0.0f},{-0.367737f,0.92993f,0.0f},{-0.367679f,0.929953f,0.0f}, - {-0.296679f,0.954977f,0.0f},{-0.296721f,0.954964f,0.0f},{-0.223998f,0.97459f,0.0f}, - {-0.224026f,0.974583f,0.0f},{-0.150064f,0.988676f,0.0f},{-0.150035f,0.988681f,0.0f}, - {-0.0752244f,0.997167f,0.0f},{-0.0752458f,0.997165f,0.0f},{-1.35203e-015f,1.0f,0.0f}, - {-1.54518e-015f,1.0f,0.0f},{-0.933815f,0.357756f,0.0f},{-0.958087f,0.286476f,0.0f}, - {-0.958085f,0.286485f,0.0f},{-0.976924f,0.213586f,0.0f},{-0.97692f,0.213604f,0.0f}, - {-0.990224f,0.139487f,0.0f},{-0.990225f,0.139483f,0.0f},{-0.997917f,0.0645077f,0.0f}, - {-0.997909f,0.0646351f,0.0f},{-0.999943f,-0.0106703f,0.0f},{-0.999943f,-0.0106617f,0.0f}, - {-0.996308f,-0.0858467f,0.0f},{-0.996302f,-0.0859221f,0.0f},{-0.987014f,-0.160636f,0.0f}, - {-0.987025f,-0.160567f,0.0f},{-0.972136f,-0.234419f,0.0f},{-0.972139f,-0.234405f,0.0f}, - {-0.95175f,-0.306876f,0.0f},{-0.951735f,-0.306919f,0.0f},{-0.925942f,-0.377666f,0.0f}, - {-0.925965f,-0.377609f,0.0f},{-0.894907f,-0.446253f,0.0f},{-0.894927f,-0.446213f,0.0f}, - {-0.858816f,-0.512285f,0.0f},{-0.858801f,-0.51231f,0.0f},{-0.81782f,-0.575474f,0.0f}, - {-0.817838f,-0.575449f,0.0f},{-0.772206f,-0.635373f,0.0f},{-0.772219f,-0.635356f,0.0f}, - {-0.722222f,-0.691661f,0.0f},{-0.357739f,-0.933821f,0.0f},{-0.426992f,-0.904255f,0.0f}, - {-0.426976f,-0.904263f,0.0f},{-0.4938f,-0.869576f,0.0f},{-0.493808f,-0.869571f,0.0f}, - {-0.557828f,-0.829957f,0.0f},{-0.557812f,-0.829967f,0.0f},{-0.618687f,-0.785637f,0.0f}, - {-0.618684f,-0.78564f,0.0f},{-0.676006f,-0.736896f,0.0f},{-0.6761f,-0.736809f,0.0f}, - {-0.729561f,-0.683915f,0.0f},{-0.729555f,-0.683922f,0.0f},{-0.77898f,-0.627048f,0.0f}, - {-0.778933f,-0.627107f,0.0f},{-0.823909f,-0.566722f,0.0f},{-0.823949f,-0.566664f,0.0f}, - {-0.864236f,-0.503086f,0.0f},{-0.864229f,-0.503098f,0.0f},{-0.899649f,-0.436614f,0.0f}, - {-0.899629f,-0.436655f,0.0f},{-0.92993f,-0.367737f,0.0f},{-0.929953f,-0.367679f,0.0f}, - {-0.954977f,-0.296679f,0.0f},{-0.954964f,-0.296721f,0.0f},{-0.97459f,-0.223998f,0.0f}, - {-0.974583f,-0.224026f,0.0f},{-0.988676f,-0.150064f,0.0f},{-0.988681f,-0.150035f,0.0f}, - {-0.997167f,-0.0752244f,0.0f},{-0.997165f,-0.0752458f,0.0f},{-1.0f,7.72589e-016f,0.0f}, - {-0.357756f,-0.933815f,0.0f},{-0.286476f,-0.958087f,0.0f},{-0.286485f,-0.958085f,0.0f}, - {-0.213586f,-0.976924f,0.0f},{-0.213604f,-0.97692f,0.0f},{-0.139487f,-0.990224f,0.0f}, - {-0.139483f,-0.990225f,0.0f},{-0.0645077f,-0.997917f,0.0f},{-0.0646351f,-0.997909f,0.0f}, - {0.0106703f,-0.999943f,0.0f},{0.0106617f,-0.999943f,0.0f},{0.0858467f,-0.996308f,0.0f}, - {0.0859221f,-0.996302f,0.0f},{0.160636f,-0.987014f,0.0f},{0.160567f,-0.987025f,0.0f}, - {0.234419f,-0.972136f,0.0f},{0.234405f,-0.972139f,0.0f},{0.306876f,-0.95175f,0.0f}, - {0.306919f,-0.951735f,0.0f},{0.377666f,-0.925942f,0.0f},{0.377609f,-0.925965f,0.0f}, - {0.446253f,-0.894907f,0.0f},{0.446213f,-0.894927f,0.0f},{0.512285f,-0.858816f,0.0f}, - {0.51231f,-0.858801f,0.0f},{0.575474f,-0.81782f,0.0f},{0.575449f,-0.817838f,0.0f}, - {0.635373f,-0.772206f,0.0f},{0.635356f,-0.772219f,0.0f},{0.691661f,-0.722222f,0.0f}, - {0.933821f,-0.357739f,0.0f},{0.904255f,-0.426992f,0.0f},{0.904263f,-0.426976f,0.0f}, - {0.869576f,-0.4938f,0.0f},{0.869571f,-0.493808f,0.0f},{0.829957f,-0.557828f,0.0f}, - {0.829967f,-0.557812f,0.0f},{0.785637f,-0.618687f,0.0f},{0.78564f,-0.618684f,0.0f}, - {0.736896f,-0.676006f,0.0f},{0.736809f,-0.6761f,0.0f},{0.683915f,-0.729561f,0.0f}, - {0.683922f,-0.729555f,0.0f},{0.627048f,-0.77898f,0.0f},{0.627107f,-0.778933f,0.0f}, - {0.566722f,-0.823909f,0.0f},{0.566664f,-0.823949f,0.0f},{0.503086f,-0.864236f,0.0f}, - {0.503098f,-0.864229f,0.0f},{0.436614f,-0.899649f,0.0f},{0.436655f,-0.899629f,0.0f}, - {0.367737f,-0.92993f,0.0f},{0.367679f,-0.929953f,0.0f},{0.296679f,-0.954977f,0.0f}, - {0.296721f,-0.954964f,0.0f},{0.223998f,-0.97459f,0.0f},{0.224026f,-0.974583f,0.0f}, - {0.150064f,-0.988676f,0.0f},{0.150035f,-0.988681f,0.0f},{0.0752244f,-0.997167f,0.0f}, - {0.0752458f,-0.997165f,0.0f},{1.93147e-015f,-1.0f,0.0f},{1.54518e-015f,-1.0f,0.0f}, - {0.933815f,-0.357756f,0.0f},{0.958087f,-0.286476f,0.0f},{0.958085f,-0.286485f,0.0f}, - {0.976924f,-0.213586f,0.0f},{0.97692f,-0.213604f,0.0f},{0.990224f,-0.139487f,0.0f}, - {0.990225f,-0.139483f,0.0f},{0.997917f,-0.0645077f,0.0f},{0.997909f,-0.0646351f,0.0f}, - {0.999943f,0.0106703f,0.0f},{0.999943f,0.0106617f,0.0f},{0.996308f,0.0858467f,0.0f}, - {0.996302f,0.0859221f,0.0f},{0.987014f,0.160636f,0.0f},{0.987025f,0.160567f,0.0f}, - {0.972136f,0.234419f,0.0f},{0.972139f,0.234405f,0.0f},{0.95175f,0.306876f,0.0f}, - {0.951735f,0.306919f,0.0f},{0.925942f,0.377666f,0.0f},{0.925965f,0.377609f,0.0f}, - {0.894907f,0.446253f,0.0f},{0.894927f,0.446213f,0.0f},{0.858816f,0.512285f,0.0f}, - {0.858801f,0.51231f,0.0f},{0.81782f,0.575474f,0.0f},{0.817838f,0.575449f,0.0f}, - {0.772206f,0.635373f,0.0f},{0.772219f,0.635356f,0.0f},{0.722222f,0.691661f,0.0f}, - {0.0f,8.67362e-019f,1.0f},{0.0f,-3.25261e-019f,1.0f},{0.0f,-1.0842e-019f,1.0f}, - {0.0f,4.87891e-019f,1.0f},{0.0f,-1.6263e-019f,1.0f},{0.0f,7.04731e-019f,1.0f}, - {0.0f,2.1684e-019f,1.0f},{0.0f,-5.96311e-019f,1.0f},{0.0f,-4.87891e-019f,1.0f}, - {0.0f,-7.04731e-019f,1.0f},{0.0f,1.6263e-019f,1.0f},{0.0f,5.42101e-020f,1.0f}, - {0.0f,3.79471e-019f,1.0f},{0.0f,5.42101e-019f,1.0f},{0.0f,-3.79471e-019f,1.0f}, - {0.0f,-7.58942e-019f,1.0f},{0.0f,-6.50521e-019f,1.0f},{0.0f,7.86047e-019f,1.0f}, - {0.0f,-7.45389e-019f,1.0f},{0.0f,5.69206e-019f,1.0f},{0.0f,2.84603e-019f,1.0f}, - {0.0f,-3.15096e-019f,1.0f},{0.0f,2.43945e-019f,1.0f},{0.0f,-5.42101e-019f,1.0f}, - {0.0f,-2.1684e-019f,1.0f},{0.0f,-3.59142e-019f,1.0f},{0.0f,3.65918e-019f,1.0f}, - {0.0f,2.17158e-019f,1.0f},{0.0f,-6.10181e-019f,1.0f},{0.0f,6.77626e-019f,1.0f}, - {0.0f,-6.87791e-019f,1.0f},{0.0f,-4.60786e-019f,1.0f},{0.0f,-7.31836e-019f,1.0f}, - {0.0f,8.02987e-019f,1.0f},{0.0f,-6.77626e-019f,1.0f},{0.0f,-5.74712e-019f,1.0f}, - {0.0f,-1.76183e-019f,1.0f},{0.0f,2.71051e-019f,1.0f},{0.0f,7.58942e-019f,1.0f}, - {0.0f,-2.71051e-019f,1.0f},{0.0f,-8.13152e-019f,1.0f},{0.0f,5.96311e-019f,1.0f}, - {0.0f,-5.14996e-019f,1.0f},{0.0f,6.50521e-019f,1.0f},{0.0f,3.25261e-019f,1.0f}, - {0.0f,-5.42101e-020f,1.0f},{0.0f,1.0842e-019f,1.0f},{0.0f,4.60786e-019f,1.0f}, - {0.0f,8.26704e-019f,1.0f},{0.0f,2.25311e-019f,1.0f},{0.0f,6.60686e-019f,1.0f}, - {0.0f,-5.57348e-019f,1.0f},{4.16334e-016f,1.0f,0.0f},{0.999314f,0.0370361f,0.0f}, - {0.999323f,-0.036793f,0.0f},{0.999323f,0.0367929f,0.0f},{0.993826f,0.110947f,0.0f}, - {0.993828f,0.110936f,0.0f},{0.982882f,0.184236f,0.0f},{0.982886f,0.184212f,0.0f}, - {0.96655f,0.256477f,0.0f},{0.966539f,0.256521f,0.0f},{0.944889f,0.32739f,0.0f}, - {0.944907f,0.327338f,0.0f},{0.918057f,0.396448f,0.0f},{0.918074f,0.396408f,0.0f}, - {0.886197f,0.463309f,0.0f},{0.886182f,0.463337f,0.0f},{0.849433f,0.527696f,0.0f}, - {0.849456f,0.527659f,0.0f},{0.808016f,0.58916f,0.0f},{0.80806f,0.5891f,0.0f}, - {0.762212f,0.647328f,0.0f},{0.762181f,0.647364f,0.0f},{0.712153f,0.702024f,0.0f}, - {0.712214f,0.701962f,0.0f},{0.658207f,0.752837f,0.0f},{0.658254f,0.752796f,0.0f}, - {0.600685f,0.799486f,0.0f},{0.600678f,0.799491f,0.0f},{0.539832f,0.841773f,0.0f}, - {0.539844f,0.841765f,0.0f},{0.476025f,0.879432f,0.0f},{0.476043f,0.879422f,0.0f}, - {0.409619f,0.912257f,0.0f},{0.409607f,0.912262f,0.0f},{0.340942f,0.940084f,0.0f}, - {0.340954f,0.94008f,0.0f},{0.270403f,0.962747f,0.0f},{0.270418f,0.962743f,0.0f}, - {0.1984f,0.980121f,0.0f},{0.198377f,0.980126f,0.0f},{0.125268f,0.992123f,0.0f}, - {0.125266f,0.992123f,0.0f},{0.0513531f,0.998681f,0.0f},{0.0515068f,0.998673f,0.0f}, - {-0.0226075f,0.999744f,0.0f},{-0.0226241f,0.999744f,0.0f},{-0.0966381f,0.99532f,0.0f}, - {-0.0965597f,0.995327f,0.0f},{-0.170063f,0.985433f,0.0f},{-0.170003f,0.985444f,0.0f}, - {-0.242529f,0.970144f,0.0f},{-0.242546f,0.97014f,0.0f},{-0.313741f,0.949509f,0.0f}, - {-0.313692f,0.949525f,0.0f},{-0.383193f,0.923668f,0.0f},{-0.383138f,0.923691f,0.0f}, - {-0.450489f,0.892782f,0.0f},{-0.450523f,0.892765f,0.0f},{-0.515387f,0.856957f,0.0f}, - {-0.51536f,0.856974f,0.0f},{-0.577428f,0.816442f,0.0f},{-0.577403f,0.816459f,0.0f}, - {-0.636279f,0.771459f,0.0f},{-0.636295f,0.771446f,0.0f},{-0.691661f,0.722222f,0.0f}, - {0.999314f,-0.0370363f,0.0f},{0.993828f,-0.110936f,0.0f},{0.993826f,-0.110947f,0.0f}, - {0.982882f,-0.184236f,0.0f},{0.982886f,-0.184212f,0.0f},{0.966539f,-0.256521f,0.0f}, - {0.96655f,-0.256477f,0.0f},{0.944907f,-0.327338f,0.0f},{0.944889f,-0.32739f,0.0f}, - {0.918057f,-0.396448f,0.0f},{0.918074f,-0.396408f,0.0f},{0.886182f,-0.463337f,0.0f}, - {0.886197f,-0.463309f,0.0f},{0.849456f,-0.527659f,0.0f},{0.849433f,-0.527696f,0.0f}, - {0.808016f,-0.58916f,0.0f},{0.80806f,-0.5891f,0.0f},{0.762181f,-0.647364f,0.0f}, - {0.762212f,-0.647328f,0.0f},{0.712214f,-0.701962f,0.0f},{0.712153f,-0.702024f,0.0f}, - {0.658207f,-0.752837f,0.0f},{0.658255f,-0.752795f,0.0f},{0.600678f,-0.799491f,0.0f}, - {0.600685f,-0.799486f,0.0f},{0.539843f,-0.841765f,0.0f},{0.539832f,-0.841773f,0.0f}, - {0.476025f,-0.879432f,0.0f},{0.476043f,-0.879422f,0.0f},{0.409606f,-0.912262f,0.0f}, - {0.409619f,-0.912257f,0.0f},{0.340954f,-0.94008f,0.0f},{0.340942f,-0.940084f,0.0f}, - {0.270403f,-0.962747f,0.0f},{0.270418f,-0.962743f,0.0f},{0.198378f,-0.980126f,0.0f}, - {0.1984f,-0.980121f,0.0f},{0.125266f,-0.992123f,0.0f},{0.125268f,-0.992123f,0.0f}, - {0.0513531f,-0.998681f,0.0f},{0.0515067f,-0.998673f,0.0f},{-0.0226239f,-0.999744f,0.0f}, - {-0.0226076f,-0.999744f,0.0f},{-0.0965598f,-0.995327f,0.0f},{-0.0966381f,-0.99532f,0.0f}, - {-0.170063f,-0.985433f,0.0f},{-0.170003f,-0.985444f,0.0f},{-0.242546f,-0.97014f,0.0f}, - {-0.242529f,-0.970144f,0.0f},{-0.313693f,-0.949525f,0.0f},{-0.313741f,-0.949509f,0.0f}, - {-0.383193f,-0.923668f,0.0f},{-0.383138f,-0.923691f,0.0f},{-0.450523f,-0.892765f,0.0f}, - {-0.450489f,-0.892782f,0.0f},{-0.51536f,-0.856974f,0.0f},{-0.515387f,-0.856957f,0.0f}, - {-0.577428f,-0.816442f,0.0f},{-0.577403f,-0.816459f,0.0f},{-0.636295f,-0.771446f,0.0f}, - {-0.636279f,-0.771459f,0.0f},{-0.691661f,-0.722222f,0.0f},{6.5746e-016f,-1.0f,0.0f}, - {-2.22045e-016f,-1.0f,0.0f},{1.0f,1.22298e-016f,0.0f},{1.0f,1.11022e-016f,0.0f}, - {-0.0752459f,-0.997165f,0.0f},{-9.09877e-012f,-1.0f,0.0f},{-1.02144e-013f,-1.0f,0.0f}, - {-0.296679f,-0.954977f,0.0f},{-0.223998f,-0.97459f,0.0f},{-0.296721f,-0.954964f,0.0f}, - {-0.224026f,-0.974583f,0.0f},{-0.150034f,-0.988681f,0.0f},{-0.150064f,-0.988676f,0.0f}, - {-0.436614f,-0.899649f,0.0f},{-0.503098f,-0.864229f,0.0f},{-0.503086f,-0.864236f,0.0f}, - {-0.367737f,-0.92993f,0.0f},{-0.436655f,-0.899629f,0.0f},{-0.367679f,-0.929953f,0.0f}, - {-0.736896f,-0.676006f,0.0f},{-0.683915f,-0.729561f,0.0f},{-0.683922f,-0.729555f,0.0f}, - {-0.627048f,-0.77898f,0.0f},{-0.566664f,-0.823949f,0.0f},{-0.627107f,-0.778933f,0.0f}, - {-0.829957f,-0.557828f,0.0f},{-0.829967f,-0.557812f,0.0f},{-0.869576f,-0.4938f,0.0f}, - {-0.736809f,-0.6761f,0.0f},{-0.78564f,-0.618684f,0.0f},{-0.785637f,-0.618687f,0.0f}, - {-0.933821f,-0.357739f,0.0f},{-0.958087f,-0.286476f,0.0f},{-0.933815f,-0.357756f,0.0f}, - {-0.904263f,-0.426976f,0.0f},{-0.904255f,-0.426992f,0.0f},{-0.869571f,-0.493808f,0.0f}, - {-0.997917f,-0.0645078f,0.0f},{-0.990224f,-0.139487f,0.0f},{-0.990224f,-0.139483f,0.0f}, - {-0.97692f,-0.213603f,0.0f},{-0.958085f,-0.286485f,0.0f},{-0.976924f,-0.213586f,0.0f}, - {-0.996308f,0.0858467f,0.0f},{-0.999943f,0.0106617f,0.0f},{-0.996302f,0.085922f,0.0f}, - {-0.997909f,-0.0646351f,0.0f},{-0.999943f,0.0106703f,0.0f},{-0.972139f,0.234405f,0.0f}, - {-0.987025f,0.160567f,0.0f},{-0.972136f,0.234419f,0.0f},{-0.987014f,0.160636f,0.0f}, - {-0.951735f,0.306919f,0.0f},{-0.95175f,0.306876f,0.0f},{-0.925942f,0.377666f,0.0f}, - {-0.925965f,0.377609f,0.0f},{-0.894927f,0.446213f,0.0f},{-0.894907f,0.446253f,0.0f}, - {-0.858801f,0.51231f,0.0f},{-0.858815f,0.512285f,0.0f},{-0.81782f,0.575474f,0.0f}, - {-0.817838f,0.575449f,0.0f},{-0.772219f,0.635356f,0.0f},{-0.772206f,0.635373f,0.0f}, - {-0.722222f,0.691661f,0.0f},{-0.566722f,-0.823909f,0.0f},{-0.0752244f,-0.997167f,0.0f}, - {-1.0f,4.16334e-017f,0.0f},{4.44089e-016f,-1.0f,0.0f},{8.88178e-016f,-1.0f,0.0f}, - {-1.0f,0.0f,-5.55112e-017f},{1.11022e-016f,-1.0f,0.0f},{9.71445e-017f,-1.0f,0.0f}, - {-0.997165f,0.0752459f,0.0f},{-1.0f,9.10186e-012f,0.0f},{-1.0f,1.03206e-013f,0.0f}, - {-0.954977f,0.296679f,0.0f},{-0.97459f,0.223998f,0.0f},{-0.954964f,0.296721f,0.0f}, - {-0.974583f,0.224026f,0.0f},{-0.988681f,0.150034f,0.0f},{-0.988676f,0.150064f,0.0f}, - {-0.899649f,0.436614f,0.0f},{-0.864229f,0.503098f,0.0f},{-0.864236f,0.503086f,0.0f}, - {-0.92993f,0.367737f,0.0f},{-0.899629f,0.436655f,0.0f},{-0.929953f,0.367679f,0.0f}, - {-0.676006f,0.736896f,0.0f},{-0.729561f,0.683915f,0.0f},{-0.729555f,0.683922f,0.0f}, - {-0.77898f,0.627048f,0.0f},{-0.823949f,0.566664f,0.0f},{-0.778933f,0.627107f,0.0f}, - {-0.557828f,0.829957f,0.0f},{-0.557812f,0.829967f,0.0f},{-0.4938f,0.869576f,0.0f}, - {-0.6761f,0.736809f,0.0f},{-0.618684f,0.78564f,0.0f},{-0.618687f,0.785637f,0.0f}, - {-0.357739f,0.933821f,0.0f},{-0.286476f,0.958087f,0.0f},{-0.357756f,0.933815f,0.0f}, - {-0.426976f,0.904263f,0.0f},{-0.426992f,0.904255f,0.0f},{-0.493808f,0.869571f,0.0f}, - {-0.0645078f,0.997917f,0.0f},{-0.139487f,0.990224f,0.0f},{-0.139483f,0.990224f,0.0f}, - {-0.213603f,0.97692f,0.0f},{-0.286485f,0.958085f,0.0f},{-0.213586f,0.976924f,0.0f}, - {0.0858467f,0.996308f,0.0f},{0.0106617f,0.999943f,0.0f},{0.085922f,0.996302f,0.0f}, - {-0.0646351f,0.997909f,0.0f},{0.0106703f,0.999943f,0.0f},{0.234405f,0.972139f,0.0f}, - {0.160567f,0.987025f,0.0f},{0.234419f,0.972136f,0.0f},{0.160636f,0.987014f,0.0f}, - {0.306919f,0.951735f,0.0f},{0.306876f,0.95175f,0.0f},{0.377666f,0.925942f,0.0f}, - {0.377609f,0.925965f,0.0f},{0.446213f,0.894927f,0.0f},{0.446253f,0.894907f,0.0f}, - {0.51231f,0.858801f,0.0f},{0.512285f,0.858815f,0.0f},{0.575474f,0.81782f,0.0f}, - {0.575449f,0.817838f,0.0f},{0.635356f,0.772219f,0.0f},{0.635373f,0.772206f,0.0f}, - {0.691661f,0.722222f,0.0f},{-0.823909f,0.566722f,0.0f},{-0.997167f,0.0752244f,0.0f}, - {-1.32706e-016f,1.0f,0.0f},{-1.38778e-016f,1.0f,0.0f},{8.88178e-016f,1.0f,0.0f}, - {-1.0f,4.81386e-016f,0.0f},{-1.0f,4.71845e-016f,0.0f},{0.0752459f,0.997165f,0.0f}, - {9.09877e-012f,1.0f,0.0f},{1.00502e-013f,1.0f,0.0f},{0.296679f,0.954977f,0.0f}, - {0.223998f,0.97459f,0.0f},{0.296721f,0.954964f,0.0f},{0.224026f,0.974583f,0.0f}, - {0.150034f,0.988681f,0.0f},{0.150064f,0.988676f,0.0f},{0.436614f,0.899649f,0.0f}, - {0.503098f,0.864229f,0.0f},{0.503086f,0.864236f,0.0f},{0.367737f,0.92993f,0.0f}, - {0.436655f,0.899629f,0.0f},{0.367679f,0.929953f,0.0f},{0.736896f,0.676006f,0.0f}, - {0.683915f,0.729561f,0.0f},{0.683922f,0.729555f,0.0f},{0.627048f,0.77898f,0.0f}, - {0.566664f,0.823949f,0.0f},{0.627107f,0.778933f,0.0f},{0.829957f,0.557828f,0.0f}, - {0.829967f,0.557812f,0.0f},{0.869576f,0.4938f,0.0f},{0.736809f,0.6761f,0.0f}, - {0.78564f,0.618684f,0.0f},{0.785637f,0.618687f,0.0f},{0.933821f,0.357739f,0.0f}, - {0.958087f,0.286476f,0.0f},{0.933815f,0.357756f,0.0f},{0.904263f,0.426976f,0.0f}, - {0.904255f,0.426992f,0.0f},{0.869571f,0.493808f,0.0f},{0.997917f,0.0645078f,0.0f}, - {0.990224f,0.139487f,0.0f},{0.990224f,0.139483f,0.0f},{0.97692f,0.213603f,0.0f}, - {0.958085f,0.286485f,0.0f},{0.976924f,0.213586f,0.0f},{0.996308f,-0.0858467f,0.0f}, - {0.999943f,-0.0106617f,0.0f},{0.996302f,-0.085922f,0.0f},{0.997909f,0.0646351f,0.0f}, - {0.999943f,-0.0106703f,0.0f},{0.972139f,-0.234405f,0.0f},{0.987025f,-0.160567f,0.0f}, - {0.972136f,-0.234419f,0.0f},{0.987014f,-0.160636f,0.0f},{0.951735f,-0.306919f,0.0f}, - {0.95175f,-0.306876f,0.0f},{0.925942f,-0.377666f,0.0f},{0.925965f,-0.377609f,0.0f}, - {0.894927f,-0.446213f,0.0f},{0.894907f,-0.446253f,0.0f},{0.858801f,-0.51231f,0.0f}, - {0.858815f,-0.512285f,0.0f},{0.81782f,-0.575474f,0.0f},{0.817838f,-0.575449f,0.0f}, - {0.772219f,-0.635356f,0.0f},{0.772206f,-0.635373f,0.0f},{0.722222f,-0.691661f,0.0f}, - {0.566722f,0.823909f,0.0f},{0.0752244f,0.997167f,0.0f},{1.0f,4.57967e-016f,0.0f}, - {1.0f,4.85723e-016f,0.0f},{-7.21645e-016f,1.0f,0.0f},{1.0f,-3.50885e-016f,0.0f}, - {0.332491f,0.943106f,-1.06997e-016f},{0.412177f,0.911104f,-1.88488e-015f},{0.412177f,0.911104f,-1.20772e-015f}, - {0.250506f,0.968115f,-9.4629e-017f},{0.167145f,0.985932f,6.49454e-016f},{0.0833404f,0.996521f,-1.06395e-016f}, - {-3.81317e-016f,1.0f,0.0f},{-2.02575e-016f,1.0f,0.0f},{0.488686f,0.87246f,7.69425e-016f}, - {0.561215f,0.82767f,0.0f},{0.629065f,0.777353f,3.23897e-015f},{0.629065f,0.777353f,1.61948e-015f}, - {0.412177f,-0.911104f,-1.23041e-015f},{0.332491f,-0.943106f,8.18039e-016f},{0.332491f,-0.943106f,1.62429e-016f}, - {0.488686f,-0.87246f,8.39281e-016f},{0.561215f,-0.82767f,-1.49714e-015f},{0.629065f,-0.777353f,3.04377e-015f}, - {0.250506f,-0.968115f,4.00341e-016f},{0.167145f,-0.985932f,-3.50985e-016f},{0.0833404f,-0.996521f,0.0f}, - {-1.90659e-016f,-1.0f,0.0f},{-0.911104f,-0.412177f,-2.15889e-015f},{-0.943106f,-0.332491f,3.90051e-016f}, - {-0.87246f,-0.488686f,9.96209e-016f},{-0.82767f,-0.561215f,7.42388e-016f},{-0.777353f,-0.629065f,4.00085e-015f}, - {-0.968115f,-0.250506f,-7.78858e-017f},{-0.985932f,-0.167145f,-8.04095e-016f},{-0.996521f,-0.0833404f,1.60342e-016f}, - {-1.0f,-2.02575e-016f,0.0f},{-1.0f,1.90659e-016f,0.0f},{-0.943106f,0.332491f,-6.79919e-016f}, - {-0.911104f,0.412177f,-8.69141e-016f},{-0.911104f,0.412177f,-1.91981e-016f},{-0.968115f,0.250506f,-5.56861e-017f}, - {-0.985932f,0.167145f,7.53839e-017f},{-0.996521f,0.0833404f,-8.12926e-017f},{-1.0f,-1.90659e-016f,0.0f}, - {-1.0f,-1.19162e-017f,0.0f},{-0.87246f,0.488686f,0.0f},{-0.82767f,0.561215f,-1.44481e-015f}, - {-0.777353f,0.629065f,2.98881e-015f},{0.911104f,0.412177f,3.3858e-016f},{0.943106f,0.332491f,-5.79735e-016f}, - {0.943106f,0.332491f,-9.31849e-016f},{0.87246f,0.488686f,9.08471e-016f},{0.82767f,0.561215f,-1.65643e-016f}, - {0.777353f,0.629065f,1.61602e-015f},{0.968115f,0.250506f,3.11543e-016f},{0.985932f,0.167145f,-3.50985e-016f}, - {0.996521f,0.0833404f,-2.14554e-016f},{1.0f,-2.02575e-016f,0.0f},{1.0f,-1.90659e-016f,0.0f}, - {0.943106f,-0.332491f,-5.28171e-016f},{0.911104f,-0.412177f,-7.22542e-016f},{0.911104f,-0.412177f,-4.85178e-016f}, - {0.968115f,-0.250506f,-1.141e-016f},{0.985932f,-0.167145f,1.15043e-016f},{0.996521f,-0.0833404f,-8.63033e-017f}, - {1.0f,3.81317e-016f,0.0f},{1.0f,1.19162e-017f,0.0f},{0.87246f,-0.488686f,0.0f}, - {0.82767f,-0.561215f,-1.57798e-015f},{0.777353f,-0.629065f,3.23897e-015f},{-0.412177f,0.911104f,1.70163e-015f}, - {-0.332491f,0.943106f,-1.00772e-015f},{-0.488686f,0.87246f,-7.17115e-016f},{-0.561215f,0.82767f,-1.39145e-015f}, - {-0.629065f,0.777353f,1.16234e-015f},{-0.250506f,0.968115f,-6.44911e-016f},{-0.167145f,0.985932f,7.93192e-017f}, - {-0.0833404f,0.996521f,0.0f},{-3.93233e-016f,1.0f,0.0f},{-0.332491f,-0.943106f,1.14584e-015f}, - {-0.412177f,-0.911104f,3.3858e-016f},{-0.250506f,-0.968115f,7.28254e-016f},{-0.167145f,-0.985932f,2.83812e-016f}, - {-0.0833404f,-0.996521f,6.91185e-017f},{1.33461e-015f,-1.0f,0.0f},{1.23928e-015f,-1.0f,0.0f}, - {-0.488686f,-0.87246f,3.48283e-016f},{-0.561215f,-0.82767f,-3.02279e-015f},{-0.629065f,-0.777353f,3.48912e-015f}, - {-0.603231f,-0.797567f,9.7061e-017f},{-0.707107f,-0.707107f,6.25761e-016f},{-0.489042f,-0.87226f,5.61393e-016f}, - {-0.368095f,-0.929788f,5.98419e-016f},{-0.244052f,-0.969762f,0.0f},{-0.12036f,-0.99273f,0.0f}, - {1.25607e-015f,-1.0f,0.0f},{1.00486e-015f,-1.0f,0.0f},{-0.797567f,-0.603231f,2.27018e-016f}, - {-0.87226f,-0.489042f,1.04745e-016f},{-0.929788f,-0.368095f,-3.82645e-016f},{-0.969762f,-0.244052f,7.06879e-017f}, - {-0.99273f,-0.12036f,-1.00206e-016f},{-1.0f,2.51215e-016f,0.0f},{-1.0f,-2.35514e-016f,0.0f}, - {0.603231f,0.797567f,-4.82864e-016f},{0.489042f,0.87226f,1.74403e-016f},{0.368095f,0.929788f,4.73817e-016f}, - {0.244052f,0.969762f,0.0f},{0.12036f,0.99273f,0.0f},{1.68e-015f,1.0f,0.0f}, - {1.7585e-015f,1.0f,0.0f},{0.797567f,0.603231f,9.27704e-016f},{0.87226f,0.489042f,6.15491e-016f}, - {0.929788f,0.368095f,-8.95393e-016f},{0.969762f,0.244052f,2.10774e-016f},{0.99273f,0.12036f,-1.30495e-016f}, - {1.0f,1.00486e-015f,0.0f},{1.0f,1.13047e-015f,0.0f},{0.603231f,0.797567f,-7.6998e-016f}, - {0.707107f,0.707107f,2.84437e-016f},{0.489042f,0.87226f,-1.0441e-015f},{0.244052f,0.969762f,-7.02683e-016f}, - {0.12036f,0.99273f,1.27786e-015f},{1.00486e-015f,1.0f,0.0f},{0.797567f,0.603231f,-2.25391e-016f}, - {0.87226f,0.489042f,5.37527e-016f},{0.929788f,0.368095f,-1.30546e-016f},{0.969762f,0.244052f,-2.98079e-017f}, - {0.99273f,0.12036f,-3.75669e-017f},{1.0f,-2.51215e-016f,0.0f},{1.0f,-2.82617e-016f,0.0f}, - {-0.797567f,0.603231f,-2.90369e-016f},{-0.707107f,0.707107f,7.11093e-016f},{-0.87226f,0.489042f,-5.95448e-016f}, - {-0.929788f,0.368095f,1.49605e-016f},{-0.969762f,0.244052f,-3.14148e-016f},{-0.99273f,0.12036f,4.80237e-018f}, - {-1.0f,1.6329e-015f,0.0f},{-1.0f,1.50729e-015f,0.0f},{-0.603231f,0.797567f,-4.64789e-016f}, - {-0.603231f,0.797567f,7.02313e-016f},{-0.489042f,0.87226f,-7.50922e-016f},{-0.368095f,0.929788f,6.962e-016f}, - {-0.244052f,0.969762f,-1.23453e-015f},{-0.12036f,0.99273f,-8.00113e-016f},{2.26093e-015f,1.0f,0.0f}, - {-0.797567f,0.603231f,-6.10381e-016f},{-0.707107f,0.707107f,7.96424e-016f},{-0.87226f,0.489042f,1.12279e-015f}, - {-0.929788f,0.368095f,5.98419e-016f},{-0.969762f,0.244052f,-1.24829e-015f},{-0.99273f,0.12036f,3.87325e-017f}, - {-1.0f,1.00486e-015f,0.0f},{-0.603231f,0.797567f,-3.24079e-016f},{-0.489042f,0.87226f,-5.55587e-016f}, - {-0.368095f,0.929788f,1.15329e-016f},{-0.244052f,0.969762f,1.60913e-016f},{-0.12036f,0.99273f,-5.63777e-017f}, - {1.57009e-017f,1.0f,0.0f},{0.797567f,-0.603231f,-6.2538e-017f},{0.707107f,-0.707107f,9.67086e-016f}, - {0.87226f,-0.489042f,-4.82706e-016f},{0.929788f,-0.368095f,-5.98419e-016f},{0.969762f,-0.244052f,-7.02683e-016f}, - {0.99273f,-0.12036f,3.87325e-017f},{1.0f,-1.13047e-015f,0.0f},{1.0f,-1.00486e-015f,0.0f}, - {0.603231f,-0.797567f,-5.48656e-016f},{0.489042f,-0.87226f,-2.23293e-016f},{0.368095f,-0.929788f,7.5955e-017f}, - {0.244052f,-0.969762f,1.54765e-016f},{0.12036f,-0.99273f,-8.23468e-017f},{2.51215e-016f,-1.0f,0.0f}, - {2.82617e-016f,-1.0f,0.0f},{0.797567f,-0.603231f,1.00269e-015f},{0.707107f,-0.707107f,3.98212e-016f}, - {0.87226f,-0.489042f,-4.89153e-016f},{0.929788f,-0.368095f,3.86513e-016f},{0.969762f,-0.244052f,-4.70184e-016f}, - {0.99273f,-0.12036f,-1.59732e-016f},{1.0f,1.57009e-017f,0.0f},{0.603231f,-0.797567f,5.30581e-016f}, - {0.489042f,-0.87226f,5.79743e-016f},{0.368095f,-0.929788f,2.62961e-017f},{0.244052f,-0.969762f,-7.6875e-016f}, - {0.12036f,-0.99273f,-3.81312e-016f},{-1.00486e-015f,-1.0f,0.0f},{8.79252e-016f,-1.0f,0.0f}, - {-0.603231f,-0.797567f,8.4228e-016f},{-0.707107f,-0.707107f,-3.41324e-016f},{-0.489042f,-0.87226f,-5.59328e-016f}, - {-0.368095f,-0.929788f,3.99015e-016f},{-0.244052f,-0.969762f,1.56037e-016f},{-0.12036f,-0.99273f,1.59732e-016f}, - {3.14019e-017f,-1.0f,0.0f},{-0.797567f,-0.603231f,-7.07442e-016f},{-0.87226f,-0.489042f,-6.64671e-016f}, - {-0.929788f,-0.368095f,-5.51379e-016f},{-0.969762f,-0.244052f,-2.00745e-016f},{-0.99273f,-0.12036f,-3.9822e-016f}, - {-1.0f,-2.00972e-015f,0.0f},{0.988818f,-0.149126f,-7.67832e-016f},{0.826061f,-0.563581f,2.9018e-015f}, - {0.82663f,-0.562746f,2.8975e-015f},{0.900794f,-0.434246f,-7.24697e-017f},{0.901683f,-0.432397f,-1.11318e-015f}, - {0.955572f,-0.294759f,0.0f},{0.955502f,-0.294984f,-7.68711e-017f},{0.499989f,-0.866031f,2.01123e-017f}, - {0.499834f,-0.866121f,-2.20966e-015f},{0.365379f,-0.930859f,2.41113e-015f},{0.623256f,-0.782018f,2.50708e-017f}, - {0.623488f,-0.781833f,-6.03832e-015f},{-0.074795f,-0.997199f,-1.28511e-015f},{-0.0746326f,-0.997211f,2.56875e-015f}, - {0.0746326f,-0.997211f,3.85238e-015f},{0.074795f,-0.997199f,-1.28511e-015f},{0.222585f,-0.974913f,3.76477e-015f}, - {0.222381f,-0.97496f,-2.51891e-015f},{-0.499833f,-0.866122f,2.51854e-015f},{-0.365177f,-0.930938f,-7.34471e-018f}, - {-0.365379f,-0.930859f,-2.39643e-015f},{-0.222381f,-0.97496f,-6.27044e-015f},{-0.222585f,-0.974913f,-1.88686e-015f}, - {-0.732917f,-0.680318f,-2.02688e-017f},{-0.623488f,-0.781833f,7.70465e-016f},{-0.733034f,-0.680192f,-1.18659e-016f}, - {-0.49999f,-0.866031f,-3.06059e-015f},{-0.623256f,-0.782018f,-7.70638e-016f},{-0.82663f,-0.562746f,1.58233e-016f}, - {-0.826061f,-0.563581f,-1.93807e-017f},{-0.901683f,-0.432397f,-2.42199e-016f},{-0.900794f,-0.434246f,7.97856e-016f}, - {-0.955502f,-0.294984f,-5.27632e-016f},{-0.955572f,-0.294759f,7.01229e-016f},{-0.988846f,-0.148938f,8.05299e-016f}, - {-0.988818f,-0.149126f,2.80723e-016f},{0.365177f,-0.930938f,4.77858e-015f},{0.733034f,-0.680192f,0.0f}, - {0.988818f,-0.149126f,9.73577e-020f},{0.988846f,-0.148938f,7.13987e-020f},{0.826061f,-0.563581f,-2.13745e-015f}, - {0.82663f,-0.562746f,-4.24488e-015f},{0.900794f,-0.434246f,2.32072e-015f},{0.901683f,-0.432397f,1.82527e-017f}, - {0.955572f,-0.294759f,7.88519e-018f},{0.955502f,-0.294984f,7.95502e-018f},{0.499989f,-0.866031f,-1.26807e-015f}, - {0.499834f,-0.866121f,1.34088e-015f},{0.365379f,-0.930859f,2.5686e-017f},{0.732917f,-0.680318f,-2.92946e-017f}, - {0.623256f,-0.782018f,-1.62692e-015f},{0.623488f,-0.781833f,-3.16995e-015f},{-0.074795f,-0.997199f,1.5066e-016f}, - {-0.0746326f,-0.997211f,-4.20003e-017f},{0.0746326f,-0.997211f,2.25086e-016f},{0.074795f,-0.997199f,-4.64395e-016f}, - {0.222585f,-0.974913f,2.5747e-017f},{0.222381f,-0.97496f,-5.07382e-016f},{-0.499833f,-0.866122f,1.1214e-015f}, - {-0.365177f,-0.930938f,7.49806e-016f},{-0.365379f,-0.930859f,1.72838e-015f},{-0.222381f,-0.97496f,-6.03215e-016f}, - {-0.222585f,-0.974913f,-9.94176e-016f},{-0.732917f,-0.680318f,-3.92441e-015f},{-0.623488f,-0.781833f,2.38377e-015f}, - {-0.733034f,-0.680192f,-2.48228e-015f},{-0.49999f,-0.866031f,-6.48069e-016f},{-0.623256f,-0.782018f,-4.09408e-016f}, - {-0.82663f,-0.562746f,-2.05981e-015f},{-0.826061f,-0.563581f,3.7841e-015f},{-0.901683f,-0.432397f,-1.58751e-016f}, - {-0.900794f,-0.434246f,-2.68865e-015f},{-0.955502f,-0.294984f,9.23116e-016f},{-0.955572f,-0.294759f,-1.22049e-015f}, - {-0.988846f,-0.148938f,2.44713e-015f},{-0.988818f,-0.149126f,-1.4151e-015f},{0.365177f,-0.930938f,2.58547e-017f}, - {0.733034f,-0.680192f,-1.91654e-015f},{1.0f,-8.32667e-017f,0.0f},{0.988818f,-0.149126f,-7.95513e-017f}, - {0.988846f,-0.148938f,7.95536e-017f},{0.826061f,-0.563581f,-1.38444e-015f},{0.82663f,-0.562746f,-6.65032e-017f}, - {0.900794f,-0.434246f,0.0f},{0.901683f,-0.432397f,7.25413e-017f},{0.955572f,-0.294759f,-7.68766e-017f}, - {0.955502f,-0.294984f,-1.44196e-015f},{0.499989f,-0.866031f,4.43896e-015f},{0.499834f,-0.866121f,-2.24988e-015f}, - {0.732917f,-0.680318f,2.94819e-017f},{0.623488f,-0.781833f,6.01324e-015f},{-0.074795f,-0.997199f,1.50433e-018f}, - {-0.0746326f,-0.997211f,-2.56575e-015f},{0.074795f,-0.997199f,2.56722e-015f},{0.222585f,-0.974913f,8.95358e-018f}, - {0.222381f,-0.97496f,2.50102e-015f},{-0.499833f,-0.866122f,-3.03854e-016f},{-0.365177f,-0.930938f,-4.19778e-015f}, - {-0.365379f,-0.930859f,-3.67439e-018f},{-0.222381f,-0.97496f,-2.50997e-015f},{-0.222585f,-0.974913f,6.22985e-016f}, - {-0.732917f,-0.680318f,2.82765e-015f},{-0.623488f,-0.781833f,-1.30187e-015f},{-0.733034f,-0.680192f,5.98822e-016f}, - {-0.49999f,-0.866031f,-8.36077e-016f},{-0.623256f,-0.782018f,-2.20318e-016f},{-0.82663f,-0.562746f,1.53038e-016f}, - {-0.826061f,-0.563581f,-6.75955e-016f},{-0.901683f,-0.432397f,-2.88011e-015f},{-0.900794f,-0.434246f,-3.52353e-016f}, - {-0.955502f,-0.294984f,1.16297e-015f},{-0.955572f,-0.294759f,1.22171e-015f},{-0.988846f,-0.148938f,-3.33616e-016f}, - {-0.988818f,-0.149126f,-3.70082e-016f},{0.365177f,-0.930938f,2.39664e-015f},{0.733034f,-0.680192f,1.72162e-015f}, - {0.826061f,-0.563581f,4.24246e-015f},{0.82663f,-0.562746f,1.13183e-017f},{0.955572f,-0.294759f,4.92799e-015f}, - {0.955502f,-0.294984f,-4.91179e-015f},{0.499989f,-0.866031f,1.30631e-015f},{0.732917f,-0.680318f,-1.91614e-015f}, - {0.623256f,-0.782018f,-3.23145e-015f},{0.623488f,-0.781833f,-1.56482e-015f},{-0.074795f,-0.997199f,-1.38172e-016f}, - {-0.0746326f,-0.997211f,5.40679e-017f},{0.0746326f,-0.997211f,-6.31192e-017f},{0.074795f,-0.997199f,1.69913e-017f}, - {0.222585f,-0.974913f,3.12261e-016f},{0.222381f,-0.97496f,-2.21129e-016f},{-0.499833f,-0.866122f,-3.26236e-016f}, - {-0.365177f,-0.930938f,-1.90317e-016f},{-0.365379f,-0.930859f,-1.09355e-015f},{-0.222381f,-0.97496f,-3.16963e-016f}, - {-0.222585f,-0.974913f,8.62413e-018f},{-0.732917f,-0.680318f,9.10624e-016f},{-0.623488f,-0.781833f,1.17992e-015f}, - {-0.733034f,-0.680192f,-2.71817e-015f},{-0.49999f,-0.866031f,1.12181e-015f},{-0.623256f,-0.782018f,-2.01394e-015f}, - {-0.82663f,-0.562746f,6.00315e-016f},{-0.826061f,-0.563581f,-1.66541e-015f},{-0.901683f,-0.432397f,-2.84278e-015f}, - {-0.900794f,-0.434246f,5.36253e-016f},{-0.955502f,-0.294984f,3.825e-015f},{-0.955572f,-0.294759f,5.47672e-016f}, - {-0.988846f,-0.148938f,-6.98966e-016f},{-0.988818f,-0.149126f,-2.60588e-015f},{0.733034f,-0.680192f,-2.93964e-017f}, - {1.0f,1.50359e-014f,-3.86165e-015f},{1.0f,2.12271e-014f,-3.86165e-015f},{0.158603f,0.987342f,7.37193e-016f}, - {0.826318f,0.563203f,-1.71427e-015f},{0.642788f,0.766044f,1.27963e-015f},{0.411158f,0.911564f,0.0f}, - {0.944801f,0.327644f,-1.17949e-017f},{-1.0f,-6.25927e-015f,0.0f},{-1.0f,2.50371e-014f,0.0f}, - {-0.327644f,-0.944801f,7.67486e-016f},{-0.911564f,-0.411158f,-2.06375e-015f},{-0.766044f,-0.642788f,-9.796e-016f}, - {-0.563203f,-0.826318f,-7.24964e-016f},{-0.987342f,-0.158603f,-4.26542e-015f},{-1.0f,-3.70074e-015f,0.0f}, - {-0.978254f,-0.207408f,-6.29612e-016f},{-0.50141f,-0.86521f,-1.61356e-016f},{-0.670096f,-0.742274f,0.0f}, - {-0.66887f,-0.743379f,9.08934e-016f},{-0.809606f,-0.586974f,3.77781e-016f},{-0.913862f,-0.406026f,5.88168e-016f}, - {-0.913543f,-0.406743f,-5.23566e-016f},{-0.105163f,-0.994455f,1.28008e-015f},{-0.104013f,-0.994576f,6.69438e-017f}, - {0.104013f,-0.994576f,9.09967e-016f},{-0.499433f,-0.866353f,7.1831e-016f},{-0.308272f,-0.951298f,1.22453e-015f}, - {-0.310578f,-0.950548f,-1.12361e-015f},{0.310578f,-0.950548f,-4.99725e-017f},{0.50141f,-0.86521f,3.66232e-016f}, - {0.499433f,-0.866353f,-6.29753e-016f},{0.308272f,-0.951298f,-5.08799e-016f},{0.105163f,-0.994455f,2.86178e-016f}, - {0.670096f,-0.742274f,-4.81031e-017f},{0.809606f,-0.586974f,1.13659e-015f},{0.808947f,-0.587881f,6.20902e-016f}, - {0.66887f,-0.743379f,-9.0294e-016f},{0.913543f,-0.406743f,5.2606e-016f},{0.913862f,-0.406026f,3.46568e-016f}, - {0.978254f,-0.207408f,-1.03704e-015f},{0.978165f,-0.20783f,1.66019e-015f},{1.0f,1.33227e-015f,0.0f}, - {-0.808947f,-0.587881f,-3.78365e-016f},{-0.978254f,-0.207408f,-1.25922e-015f},{-0.50141f,-0.86521f,3.22711e-016f}, - {-0.670096f,-0.742274f,-4.31279e-016f},{-0.66887f,-0.743379f,4.78444e-016f},{-0.913862f,-0.406026f,0.0f}, - {-0.105163f,-0.994455f,1.17855e-015f},{-0.104013f,-0.994576f,-3.34719e-017f},{0.104013f,-0.994576f,9.26703e-016f}, - {-0.499433f,-0.866353f,5.57591e-016f},{-0.308272f,-0.951298f,1.02612e-015f},{-0.310578f,-0.950548f,-1.22356e-015f}, - {0.310578f,-0.950548f,2.49863e-016f},{0.50141f,-0.86521f,7.29282e-016f},{0.499433f,-0.866353f,-3.48494e-016f}, - {0.308272f,-0.951298f,-3.10392e-016f},{0.105163f,-0.994455f,3.87703e-016f},{0.670096f,-0.742274f,-1.02013e-016f}, - {0.809606f,-0.586974f,1.21801e-015f},{0.808947f,-0.587881f,1.97878e-016f},{0.66887f,-0.743379f,1.18511e-017f}, - {0.913543f,-0.406743f,2.04518e-016f},{0.913862f,-0.406026f,5.70787e-017f},{0.978254f,-0.207408f,-6.1033e-016f}, - {0.978165f,-0.20783f,8.92923e-016f},{1.0f,-2.51651e-015f,0.0f},{-0.808947f,-0.587881f,-8.99009e-016f}, - {-0.670096f,-0.742274f,-9.09012e-016f},{-0.66887f,-0.743379f,-9.56889e-016f},{-0.809606f,-0.586974f,-3.77781e-016f}, - {-0.913543f,-0.406743f,5.23566e-016f},{-0.105163f,-0.994455f,-7.41564e-016f},{-0.104013f,-0.994576f,-6.73588e-016f}, - {0.104013f,-0.994576f,2.86586e-016f},{-0.499433f,-0.866353f,-5.57591e-016f},{-0.308272f,-0.951298f,-1.98406e-016f}, - {-0.310578f,-0.950548f,0.0f},{0.50141f,-0.86521f,-1.06001e-016f},{0.499433f,-0.866353f,1.04548e-015f}, - {0.308272f,-0.951298f,3.0187e-016f},{0.105163f,-0.994455f,1.02774e-015f},{0.670096f,-0.742274f,-6.99179e-016f}, - {0.809606f,-0.586974f,2.73555e-016f},{0.808947f,-0.587881f,-4.6426e-016f},{0.66887f,-0.743379f,1.31462e-016f}, - {0.913543f,-0.406743f,3.51771e-016f},{0.913862f,-0.406026f,-6.53389e-016f},{0.978254f,-0.207408f,-4.75798e-016f}, - {0.978165f,-0.20783f,7.98349e-016f},{-0.978254f,-0.207408f,0.0f},{-0.50141f,-0.86521f,0.0f}, - {-0.670096f,-0.742274f,-4.77733e-016f},{-0.809606f,-0.586974f,6.64356e-016f},{-0.105163f,-0.994455f,-6.06197e-016f}, - {-0.104013f,-0.994576f,-5.06229e-016f},{0.104013f,-0.994576f,3.5353e-016f},{-0.499433f,-0.866353f,-2.36152e-016f}, - {-0.308272f,-0.951298f,0.0f},{-0.310578f,-0.950548f,9.99451e-017f},{0.310578f,-0.950548f,4.99725e-017f}, - {0.50141f,-0.86521f,-3.07696e-016f},{0.499433f,-0.866353f,1.0053e-015f},{0.308272f,-0.951298f,-1.44543e-016f}, - {0.670096f,-0.742274f,-1.23828e-015f},{0.809606f,-0.586974f,6.18708e-017f},{0.808947f,-0.587881f,-1.45674e-015f}, - {0.66887f,-0.743379f,-9.98574e-016f},{0.913543f,-0.406743f,8.75425e-016f},{0.913862f,-0.406026f,1.18582e-016f}, - {0.978254f,-0.207408f,8.24911e-017f},{0.978165f,-0.20783f,1.97076e-016f},{1.0f,2.66454e-015f,0.0f}, - {-0.670096f,-0.742274f,-6.93373e-016f},{-0.809606f,-0.586974f,4.03822e-016f},{-0.913862f,-0.406026f,2.94084e-016f}, - {-0.104013f,-0.994576f,-5.89909e-016f},{0.50141f,-0.86521f,-3.27865e-016f},{0.499433f,-0.866353f,9.45034e-016f}, - {0.308272f,-0.951298f,4.26112e-018f},{0.105163f,-0.994455f,9.60058e-016f},{0.670096f,-0.742274f,-6.85702e-016f}, - {0.809606f,-0.586974f,-1.49813e-016f},{0.808947f,-0.587881f,-3.17829e-016f},{0.66887f,-0.743379f,-5.14273e-016f}, - {0.913543f,-0.406743f,4.89574e-016f},{0.913862f,-0.406026f,-3.27139e-016f},{0.978254f,-0.207408f,2.95231e-016f}, - {0.978165f,-0.20783f,4.59595e-016f},{-0.808947f,-0.587881f,-1.18042e-016f},{-0.105163f,-0.994455f,-6.5696e-016f}, - {-0.104013f,-0.994576f,-6.56853e-016f},{0.104013f,-0.994576f,3.36794e-016f},{-0.308272f,-0.951298f,-9.9203e-017f}, - {-0.310578f,-0.950548f,-9.99451e-017f},{0.310578f,-0.950548f,2.49863e-017f},{0.50141f,-0.86521f,-4.69051e-016f}, - {0.499433f,-0.866353f,9.65124e-016f},{0.308272f,-0.951298f,2.27468e-016f},{0.105163f,-0.994455f,8.92374e-016f}, - {0.670096f,-0.742274f,-7.26134e-016f},{0.809606f,-0.586974f,-5.2113e-017f},{0.808947f,-0.587881f,-9.00466e-017f}, - {0.913543f,-0.406743f,4.25266e-016f},{0.913862f,-0.406026f,-5.24727e-016f},{0.978254f,-0.207408f,9.93815e-018f}, - {0.978165f,-0.20783f,6.42805e-016f},{1.0f,-1.25825e-015f,0.0f},{-0.670096f,-0.742274f,-2.1564e-016f}, - {-0.809606f,-0.586974f,1.15938e-015f},{-0.105163f,-0.994455f,1.31392e-015f},{-0.104013f,-0.994576f,5.02078e-017f}, - {0.104013f,-0.994576f,9.93647e-016f},{0.50141f,-0.86521f,5.07418e-016f},{0.499433f,-0.866353f,-4.48944e-016f}, - {0.308272f,-0.951298f,-6.08002e-016f},{0.105163f,-0.994455f,3.20019e-016f},{0.670096f,-0.742274f,-8.85355e-017f}, - {0.809606f,-0.586974f,7.94639e-016f},{0.808947f,-0.587881f,3.44309e-016f},{0.66887f,-0.743379f,-6.33884e-016f}, - {0.913543f,-0.406743f,3.42322e-016f},{0.913862f,-0.406026f,3.83328e-016f},{0.978254f,-0.207408f,1.60699e-016f}, - {0.978165f,-0.20783f,5.54168e-016f},{-0.105163f,-0.994455f,1.26316e-015f},{-0.104013f,-0.994576f,-1.67359e-017f}, - {0.104013f,-0.994576f,9.76911e-016f},{-0.308272f,-0.951298f,1.12532e-015f},{-0.310578f,-0.950548f,-1.3235e-015f}, - {0.499433f,-0.866353f,-4.28854e-016f},{0.308272f,-0.951298f,-3.84795e-016f},{0.105163f,-0.994455f,2.52336e-016f}, - {0.670096f,-0.742274f,-1.28968e-016f},{0.809606f,-0.586974f,8.92339e-016f},{0.808947f,-0.587881f,5.72092e-016f}, - {0.913543f,-0.406743f,2.78013e-016f},{0.913862f,-0.406026f,1.85741e-016f},{0.978254f,-0.207408f,-1.24594e-016f}, - {0.978165f,-0.20783f,7.37379e-016f},{1.0f,-1.55431e-016f,0.0f},{0.997945f,-0.0640791f,-1.60571e-016f}, - {0.997946f,-0.0640673f,-1.60571e-016f},{0.967287f,-0.253683f,-1.63272e-016f},{0.967317f,-0.25357f,0.0f}, - {0.981554f,-0.191184f,0.0f},{0.981559f,-0.191157f,-1.2303e-016f},{0.991791f,-0.12787f,0.0f}, - {0.991787f,-0.127897f,0.0f},{0.900965f,-0.433892f,0.0f},{0.90096f,-0.433902f,-1.44966e-016f}, - {0.871315f,-0.490723f,0.0f},{0.94917f,-0.314763f,2.02584e-016f},{0.949042f,-0.315149f,3.05405e-016f}, - {0.926953f,-0.375176f,2.98297e-016f},{0.761438f,-0.648238f,6.25816e-016f},{0.761447f,-0.648227f,-3.3112e-016f}, - {0.801406f,-0.598121f,3.21425e-016f},{0.838075f,-0.545555f,4.07138e-017f},{0.838084f,-0.545542f,0.0f}, - {0.871302f,-0.490747f,1.40194e-016f},{0.623505f,-0.781819f,-3.51916e-016f},{0.623476f,-0.781843f,1.00318e-016f}, - {0.572134f,-0.82016f,5.27861e-016f},{0.718357f,-0.695675f,0.0f},{0.718339f,-0.695693f,-3.39459e-016f}, - {0.672313f,-0.740267f,-8.44706e-016f},{0.404769f,-0.914419f,-3.26828e-016f},{0.404803f,-0.914404f,-8.17642e-016f}, - {0.462522f,-0.886608f,7.071e-016f},{0.462558f,-0.886589f,5.70615e-016f},{0.518412f,-0.855131f,5.08662e-016f}, - {0.518376f,-0.855153f,-4.17039e-017f},{0.222542f,-0.974923f,-8.69587e-016f},{0.22251f,-0.97493f,-5.9167e-016f}, - {0.15962f,-0.987179f,-1.07473e-016f},{0.345353f,-0.938473f,6.04008e-016f},{0.284517f,-0.958671f,7.31456e-016f}, - {0.284548f,-0.958662f,-2.28921e-017f},{0.032044f,-0.999486f,-3.39684e-016f},{-0.032044f,-0.999486f,7.88628e-016f}, - {0.0320605f,-0.999486f,1.46027e-015f},{0.0960134f,-0.99538f,9.37778e-016f},{0.0960397f,-0.995377f,4.49568e-016f}, - {0.159589f,-0.987184f,-7.04325e-016f},{-0.22251f,-0.974931f,3.06907e-016f},{-0.159589f,-0.987184f,1.06859e-015f}, - {-0.15962f,-0.987179f,1.95683e-016f},{-0.0960133f,-0.99538f,-1.13812e-016f},{-0.0320605f,-0.999486f,-7.97648e-016f}, - {-0.0960396f,-0.995378f,4.84338e-016f},{-0.345353f,-0.938473f,1.99332e-017f},{-0.284548f,-0.958662f,-6.68238e-016f}, - {-0.345385f,-0.938461f,-1.09868e-015f},{-0.222542f,-0.974923f,-1.56867e-016f},{-0.284517f,-0.958671f,1.31362e-016f}, - {-0.462522f,-0.886608f,-9.48993e-016f},{-0.462558f,-0.886589f,1.0854e-016f},{-0.518376f,-0.855153f,5.61804e-016f}, - {-0.404803f,-0.914404f,3.25668e-017f},{-0.404769f,-0.914419f,-4.32364e-016f},{-0.572101f,-0.820183f,-6.26037e-016f}, - {-0.572134f,-0.82016f,4.29683e-017f},{-0.623475f,-0.781843f,-1.50578e-016f},{-0.518412f,-0.855131f,-1.71017e-016f}, - {-0.672313f,-0.740267f,8.82394e-016f},{-0.718357f,-0.695675f,-6.31165e-017f},{-0.718339f,-0.695693f,-4.2354e-016f}, - {-0.623505f,-0.781819f,-2.57672e-017f},{-0.672288f,-0.740289f,-7.50757e-016f},{-0.761438f,-0.648238f,8.28847e-016f}, - {-0.761447f,-0.648227f,1.98992e-016f},{-0.801409f,-0.598117f,4.42136e-016f},{-0.801406f,-0.598121f,2.0439e-016f}, - {-0.838084f,-0.545542f,1.01789e-015f},{-0.838075f,-0.545555f,-1.0489e-015f},{-0.871302f,-0.490747f,-1.02965e-015f}, - {-0.871315f,-0.490723f,-1.83478e-016f},{-0.900965f,-0.433892f,-6.58133e-016f},{-0.90096f,-0.433902f,-2.94448e-016f}, - {-0.926953f,-0.375176f,-1.1596e-017f},{-0.926902f,-0.375304f,-5.21943e-017f},{-0.949042f,-0.315149f,1.00427e-015f}, - {-0.94917f,-0.314763f,-3.79986e-016f},{-0.967317f,-0.25357f,1.01039e-017f},{-0.967287f,-0.253683f,-1.05575e-015f}, - {-0.981559f,-0.191157f,-6.7854e-016f},{-0.981554f,-0.191184f,5.82473e-016f},{-0.991787f,-0.127897f,-9.23871e-016f}, - {-0.991791f,-0.12787f,2.70854e-016f},{-0.997946f,-0.0640673f,1.3089e-017f},{-0.997945f,-0.0640792f,-1.24113e-016f}, - {-1.0f,-2.36848e-016f,0.0f},{0.345385f,-0.938461f,1.26357e-015f},{0.572101f,-0.820183f,3.5599e-016f}, - {0.672288f,-0.740289f,2.38228e-016f},{0.926902f,-0.375304f,0.0f},{0.801409f,-0.598117f,-3.19533e-016f}, - {1.0f,-1.25825e-016f,0.0f},{0.997945f,-0.0640791f,-4.12418e-017f},{0.967287f,-0.253683f,0.0f}, - {0.981559f,-0.191157f,1.57935e-016f},{0.991791f,-0.12787f,8.2298e-017f},{0.900965f,-0.433892f,1.44967e-016f}, - {0.90096f,-0.433902f,1.44966e-016f},{0.871315f,-0.490723f,-1.40196e-016f},{0.94917f,-0.314763f,-3.05447e-016f}, - {0.949042f,-0.315149f,-3.55535e-016f},{0.926953f,-0.375176f,0.0f},{0.761438f,-0.648238f,0.0f}, - {0.761447f,-0.648227f,0.0f},{0.801406f,-0.598121f,-2.57895e-016f},{0.838075f,-0.545555f,-4.07138e-017f}, - {0.838084f,-0.545542f,-1.34849e-016f},{0.871302f,-0.490747f,0.0f},{0.623505f,-0.781819f,0.0f}, - {0.572134f,-0.82016f,3.55988e-016f},{0.718357f,-0.695675f,1.15585e-016f},{0.718339f,-0.695693f,-1.15582e-016f}, - {0.672313f,-0.740267f,0.0f},{0.404769f,-0.914419f,0.0f},{0.404803f,-0.914404f,-3.25668e-017f}, - {0.462522f,-0.886608f,7.44207e-017f},{0.462558f,-0.886589f,-7.44265e-017f},{0.518412f,-0.855131f,-4.17067e-017f}, - {0.518376f,-0.855153f,0.0f},{0.222542f,-0.974923f,-1.79037e-017f},{0.22251f,-0.97493f,8.95056e-017f}, - {0.15962f,-0.987179f,8.98911e-017f},{0.345353f,-0.938473f,1.94488e-016f},{0.284517f,-0.958671f,4.57793e-017f}, - {0.284548f,-0.958662f,0.0f},{0.032044f,-0.999486f,9.02291e-018f},{-0.032044f,-0.999486f,1.69842e-016f}, - {0.0320605f,-0.999486f,1.5953e-016f},{0.0960134f,-0.99538f,-7.72437e-018f},{0.0960397f,-0.995377f,-7.72649e-018f}, - {0.159589f,-0.987184f,7.70345e-017f},{-0.22251f,-0.974931f,-2.89725e-017f},{-0.159589f,-0.987184f,-1.28391e-017f}, - {-0.15962f,-0.987179f,1.6526e-016f},{-0.0960133f,-0.99538f,0.0f},{-0.0320605f,-0.999486f,0.0f}, - {-0.0960396f,-0.995378f,-7.72648e-017f},{-0.345353f,-0.938473f,-6.16091e-017f},{-0.284548f,-0.958662f,-2.28921e-017f}, - {-0.345385f,-0.938461f,2.77865e-017f},{-0.222542f,-0.974923f,-1.70086e-016f},{-0.284517f,-0.958671f,3.43345e-017f}, - {-0.462522f,-0.886608f,4.27945e-016f},{-0.462558f,-0.886589f,3.44227e-016f},{-0.518376f,-0.855153f,8.12819e-017f}, - {-0.404803f,-0.914404f,5.78629e-019f},{-0.404769f,-0.914419f,-7.35659e-017f},{-0.572101f,-0.820183f,3.96619e-016f}, - {-0.572134f,-0.82016f,-5.38623e-018f},{-0.623475f,-0.781843f,1.1316e-016f},{-0.518412f,-0.855131f,-1.01149e-016f}, - {-0.672313f,-0.740267f,-1.55504e-016f},{-0.718357f,-0.695675f,5.36867e-017f},{-0.718339f,-0.695693f,2.73285e-018f}, - {-0.623505f,-0.781819f,2.14069e-016f},{-0.672288f,-0.740289f,-7.16643e-016f},{-0.761438f,-0.648238f,4.41224e-016f}, - {-0.761447f,-0.648227f,1.00012e-015f},{-0.801409f,-0.598117f,4.432e-016f},{-0.801406f,-0.598121f,-2.6222e-016f}, - {-0.838084f,-0.545542f,8.80097e-016f},{-0.838075f,-0.545555f,-1.06829e-015f},{-0.871302f,-0.490747f,-6.92209e-016f}, - {-0.871315f,-0.490723f,-2.64336e-017f},{-0.900965f,-0.433892f,-5.15123e-016f},{-0.90096f,-0.433902f,-2.3532e-016f}, - {-0.926953f,-0.375176f,3.47011e-016f},{-0.926902f,-0.375304f,-3.89492e-016f},{-0.949042f,-0.315149f,5.83544e-016f}, - {-0.94917f,-0.314763f,-4.7857e-016f},{-0.967317f,-0.25357f,-2.47062e-016f},{-0.967287f,-0.253683f,-8.80075e-016f}, - {-0.981559f,-0.191157f,-5.74475e-016f},{-0.981554f,-0.191184f,6.34e-016f},{-0.991787f,-0.127897f,-1.01223e-015f}, - {-0.991791f,-0.12787f,3.3853e-016f},{-0.997946f,-0.0640673f,4.63968e-017f},{-0.997945f,-0.0640792f,-6.26115e-017f}, - {0.345385f,-0.938461f,5.5573e-017f},{0.572101f,-0.820183f,-9.20521e-017f},{0.672288f,-0.740289f,0.0f}, - {0.926902f,-0.375304f,-2.98281e-016f},{0.801409f,-0.598117f,-3.21425e-016f},{0.997945f,-0.0640791f,0.0f}, - {0.997946f,-0.0640673f,-4.12342e-017f},{0.967317f,-0.25357f,1.632e-016f},{0.981554f,-0.191184f,-1.14042e-015f}, - {0.981559f,-0.191157f,0.0f},{0.90096f,-0.433902f,0.0f},{0.871315f,-0.490723f,3.15833e-016f}, - {0.94917f,-0.314763f,8.13477e-016f},{0.949042f,-0.315149f,1.22162e-015f},{0.761447f,-0.648227f,4.90073e-016f}, - {0.801406f,-0.598121f,9.00746e-016f},{0.838075f,-0.545555f,-1.27065e-017f},{0.838084f,-0.545542f,7.27679e-016f}, - {0.871302f,-0.490747f,2.44929e-016f},{0.623505f,-0.781819f,-6.05077e-016f},{0.623476f,-0.781843f,-2.516e-016f}, - {0.572134f,-0.82016f,-2.63931e-016f},{0.718357f,-0.695675f,-9.10081e-016f},{0.718339f,-0.695693f,9.24657e-016f}, - {0.672313f,-0.740267f,-2.81956e-016f},{0.404769f,-0.914419f,1.0468e-015f},{0.404803f,-0.914404f,-8.82776e-016f}, - {0.462522f,-0.886608f,2.85314e-016f},{0.462558f,-0.886589f,0.0f},{0.518412f,-0.855131f,-2.75184e-016f}, - {0.518376f,-0.855153f,8.25574e-016f},{0.222542f,-0.974923f,-8.5252e-017f},{0.22251f,-0.97493f,0.0f}, - {0.15962f,-0.987179f,6.35356e-016f},{0.345353f,-0.938473f,4.92873e-016f},{0.284517f,-0.958671f,4.00063e-016f}, - {0.284548f,-0.958662f,-8.33935e-016f},{0.032044f,-0.999486f,-3.21639e-016f},{-0.032044f,-0.999486f,1.50507e-016f}, - {0.0320605f,-0.999486f,1.81454e-016f},{0.0960134f,-0.99538f,-3.51215e-016f},{0.0960397f,-0.995377f,5.1138e-016f}, - {0.159589f,-0.987184f,5.84002e-016f},{-0.22251f,-0.974931f,4.34802e-016f},{-0.159589f,-0.987184f,1.07483e-016f}, - {-0.15962f,-0.987179f,7.94194e-016f},{-0.0960133f,-0.99538f,-8.3169e-016f},{-0.0320605f,-0.999486f,-1.71136e-016f}, - {-0.0960396f,-0.995378f,5.42286e-016f},{-0.345353f,-0.938473f,9.12026e-017f},{-0.284548f,-0.958662f,8.33935e-016f}, - {-0.345385f,-0.938461f,-2.46427e-016f},{-0.222542f,-0.974923f,7.84335e-017f},{-0.284517f,-0.958671f,7.85693e-016f}, - {-0.462522f,-0.886608f,-6.04745e-016f},{-0.462558f,-0.886589f,-7.16369e-016f},{-0.518376f,-0.855153f,-5.64993e-016f}, - {-0.404803f,-0.914404f,9.31047e-016f},{-0.404769f,-0.914419f,9.04416e-017f},{-0.572101f,-0.820183f,-3.36032e-016f}, - {-0.572134f,-0.82016f,4.41925e-016f},{-0.623475f,-0.781843f,-3.96109e-016f},{-0.518412f,-0.855131f,4.05468e-016f}, - {-0.672313f,-0.740267f,3.95309e-016f},{-0.718357f,-0.695675f,-3.52831e-017f},{-0.718339f,-0.695693f,-6.88355e-016f}, - {-0.623505f,-0.781819f,1.49682e-015f},{-0.672288f,-0.740289f,4.2753e-016f},{-0.761438f,-0.648238f,-2.74417e-016f}, - {-0.761447f,-0.648227f,-4.56317e-016f},{-0.801409f,-0.598117f,3.33218e-016f},{-0.801406f,-0.598121f,-2.93513e-016f}, - {-0.838084f,-0.545542f,-1.79534e-016f},{-0.838075f,-0.545555f,-4.11108e-017f},{-0.871302f,-0.490747f,1.62859e-016f}, - {-0.871315f,-0.490723f,1.48747e-016f},{-0.900965f,-0.433892f,-8.17489e-017f},{-0.90096f,-0.433902f,3.84887e-018f}, - {-0.926953f,-0.375176f,-5.46007e-017f},{-0.926902f,-0.375304f,-2.73406e-016f},{-0.949042f,-0.315149f,2.13422e-016f}, - {-0.94917f,-0.314763f,1.10395e-016f},{-0.967317f,-0.25357f,1.75065e-016f},{-0.967287f,-0.253683f,1.53602e-017f}, - {-0.981559f,-0.191157f,7.35095e-017f},{-0.981554f,-0.191184f,6.1315e-017f},{-0.991787f,-0.127897f,-1.7478e-017f}, - {-0.991791f,-0.12787f,7.54132e-017f},{-0.997946f,-0.0640673f,-1.02416e-016f},{-0.997945f,-0.0640792f,5.95282e-017f}, - {-1.0f,-3.70074e-018f,0.0f},{0.345385f,-0.938461f,4.92855e-016f},{0.572101f,-0.820183f,1.04271e-016f}, - {0.672288f,-0.740289f,2.81994e-016f},{0.926902f,-0.375304f,-3.55013e-016f},{0.801409f,-0.598117f,-1.60901e-015f}, - {1.0f,2.36848e-016f,0.0f},{1.0f,-2.81256e-016f,0.0f},{0.997946f,-0.0640673f,0.0f}, - {0.967287f,-0.253683f,1.63272e-016f},{0.967317f,-0.25357f,-1.632e-016f},{0.981554f,-0.191184f,-1.26347e-015f}, - {0.991787f,-0.127897f,8.23157e-017f},{0.900965f,-0.433892f,1.43899e-015f},{0.871315f,-0.490723f,1.12157e-015f}, - {0.94917f,-0.314763f,0.0f},{0.949042f,-0.315149f,6.10811e-016f},{0.926953f,-0.375176f,-5.96594e-016f}, - {0.801406f,-0.598121f,7.08268e-016f},{0.838075f,-0.545555f,-5.39391e-016f},{0.838084f,-0.545542f,7.14954e-016f}, - {0.871302f,-0.490747f,1.12155e-015f},{0.623505f,-0.781819f,-2.51592e-016f},{0.623476f,-0.781843f,6.52874e-016f}, - {0.572134f,-0.82016f,-3.6823e-016f},{0.718357f,-0.695675f,4.6234e-016f},{0.718339f,-0.695693f,0.0f}, - {0.672313f,-0.740267f,-2.38221e-016f},{0.404769f,-0.914419f,1.30256e-016f},{0.404803f,-0.914404f,2.60534e-016f}, - {0.518412f,-0.855131f,3.33654e-016f},{0.518376f,-0.855153f,5.84395e-017f},{0.222542f,-0.974923f,0.0f}, - {0.22251f,-0.97493f,7.16044e-017f},{0.15962f,-0.987179f,0.0f},{0.345353f,-0.938473f,0.0f}, - {0.284517f,-0.958671f,2.16945e-016f},{0.032044f,-0.999486f,1.03119e-017f},{-0.032044f,-0.999486f,2.06238e-017f}, - {0.0320605f,-0.999486f,1.50502e-016f},{0.0960134f,-0.99538f,0.0f},{0.0960397f,-0.995377f,0.0f}, - {0.159589f,-0.987184f,5.13564e-017f},{-0.22251f,-0.974931f,7.84341e-017f},{-0.159589f,-0.987184f,-7.70345e-017f}, - {-0.15962f,-0.987179f,2.56832e-017f},{-0.0960133f,-0.99538f,6.17949e-017f},{-0.0320605f,-0.999486f,-1.03172e-017f}, - {-0.0960396f,-0.995378f,-3.09059e-017f},{-0.345353f,-0.938473f,-5.55679e-017f},{-0.284548f,-0.958662f,2.91603e-016f}, - {-0.345385f,-0.938461f,-2.62146e-016f},{-0.222542f,-0.974923f,-7.84335e-017f},{-0.284517f,-0.958671f,-1.08473e-016f}, - {-0.462522f,-0.886608f,-4.03026e-017f},{-0.462558f,-0.886589f,3.72132e-017f},{-0.518376f,-0.855153f,4.17039e-017f}, - {-0.404803f,-0.914404f,2.29125e-016f},{-0.404769f,-0.914419f,7.35659e-017f},{-0.572101f,-0.820183f,-3.29923e-017f}, - {-0.572134f,-0.82016f,0.0f},{-0.623475f,-0.781843f,-1.44509e-016f},{-0.518412f,-0.855131f,-9.58855e-017f}, - {-0.672313f,-0.740267f,8.38658e-017f},{-0.718357f,-0.695675f,-1.14673e-016f},{-0.718339f,-0.695693f,-2.16261e-016f}, - {-0.623505f,-0.781819f,-3.0773e-016f},{-0.672288f,-0.740289f,-3.35459e-016f},{-0.761438f,-0.648238f,1.14033e-016f}, - {-0.761447f,-0.648227f,4.30418e-017f},{-0.801409f,-0.598117f,-4.72926e-019f},{-0.801406f,-0.598121f,6.3766e-017f}, - {-0.838084f,-0.545542f,9.9944e-017f},{-0.838075f,-0.545555f,6.62327e-017f},{-0.871302f,-0.490747f,-2.76664e-016f}, - {-0.871315f,-0.490723f,1.68095e-016f},{-0.900965f,-0.433892f,2.94656e-016f},{-0.90096f,-0.433902f,-2.73174e-016f}, - {-0.926953f,-0.375176f,5.54887e-018f},{-0.926902f,-0.375304f,4.60141e-016f},{-0.949042f,-0.315149f,3.69163e-017f}, - {-0.94917f,-0.314763f,-2.45758e-016f},{-0.967317f,-0.25357f,-1.94496e-016f},{-0.967287f,-0.253683f,6.21497e-017f}, - {-0.981559f,-0.191157f,1.73188e-016f},{-0.981554f,-0.191184f,-1.08839e-017f},{-0.991787f,-0.127897f,-8.76052e-017f}, - {-0.991791f,-0.12787f,-7.90167e-017f},{-0.997946f,-0.0640673f,-1.42163e-017f},{-0.997945f,-0.0640792f,1.54958e-017f}, - {0.345385f,-0.938461f,1.11146e-016f},{0.572101f,-0.820183f,0.0f},{0.672288f,-0.740289f,1.94462e-016f}, - {0.801409f,-0.598117f,-5.15793e-016f},{1.0f,-2.36848e-016f,0.0f},{-0.797567f,-0.603231f,0.0f}, - {-0.87226f,-0.489042f,0.0f},{-0.797567f,-0.603231f,0.0f},{-0.969762f,-0.244052f,0.0f}, - {-0.99273f,-0.12036f,0.0f},{-0.969762f,-0.244052f,0.0f},{-1.0f,6.28037e-016f,0.0f}, - {-0.603231f,-0.797567f,0.0f},{-0.489042f,-0.87226f,0.0f},{-0.603231f,-0.797567f,0.0f}, - {-0.368095f,-0.929788f,0.0f},{-0.244052f,-0.969762f,0.0f},{-0.12036f,-0.99273f,0.0f}, - {-0.244052f,-0.969762f,0.0f},{-8.1854e-013f,-1.0f,0.0f},{2.88897e-015f,-1.0f,0.0f}, - {-0.603231f,0.797567f,0.0f},{-0.489042f,0.87226f,0.0f},{-0.603231f,0.797567f,0.0f}, - {-0.244052f,0.969762f,0.0f},{-0.12036f,0.99273f,0.0f},{-0.244052f,0.969762f,0.0f}, - {-1.25607e-016f,1.0f,0.0f},{2.00972e-015f,1.0f,0.0f},{-0.797567f,0.603231f,0.0f}, - {-0.87226f,0.489042f,0.0f},{-0.797567f,0.603231f,0.0f},{-0.929788f,0.368095f,0.0f}, - {-0.969762f,0.244052f,0.0f},{-0.99273f,0.12036f,0.0f},{-0.969762f,0.244052f,0.0f}, - {-1.0f,8.22559e-013f,0.0f},{-1.0f,-1.88411e-015f,0.0f},{0.797567f,0.603231f,0.0f}, - {0.87226f,0.489042f,0.0f},{0.797567f,0.603231f,0.0f},{0.969762f,0.244052f,0.0f}, - {0.99273f,0.12036f,0.0f},{0.969762f,0.244052f,0.0f},{1.0f,-2.26093e-015f,0.0f}, - {1.0f,-3.01458e-015f,0.0f},{0.603231f,0.797567f,0.0f},{0.489042f,0.87226f,0.0f}, - {0.603231f,0.797567f,0.0f},{0.368095f,0.929788f,0.0f},{0.244052f,0.969762f,0.0f}, - {0.12036f,0.99273f,0.0f},{0.244052f,0.969762f,0.0f},{8.23564e-013f,1.0f,0.0f}, - {0.603231f,-0.797567f,0.0f},{0.489042f,-0.87226f,0.0f},{0.603231f,-0.797567f,0.0f}, - {0.244052f,-0.969762f,0.0f},{0.12036f,-0.99273f,0.0f},{0.244052f,-0.969762f,0.0f}, - {-2.26093e-015f,-1.0f,0.0f},{-3.01458e-015f,-1.0f,0.0f},{0.797567f,-0.603231f,0.0f}, - {0.87226f,-0.489042f,0.0f},{0.797567f,-0.603231f,0.0f},{0.929788f,-0.368095f,0.0f}, - {0.969762f,-0.244052f,0.0f},{0.99273f,-0.12036f,0.0f},{0.969762f,-0.244052f,0.0f}, - {1.0f,-8.23564e-013f,0.0f},{1.0f,1.50729e-015f,0.0f},{-1.0f,-1.89478e-014f,0.0f}, - {-0.950842f,-0.309676f,2.44782e-015f},{-0.952103f,-0.305779f,2.15167e-019f},{8.16528e-017f,-1.0f,1.84438e-017f}, - {-0.309304f,-0.950963f,4.14988e-018f},{-0.307814f,-0.951446f,3.80951e-016f},{-0.588229f,-0.808694f,-7.42514e-016f}, - {-0.811958f,-0.583716f,-2.09799e-015f},{-0.807656f,-0.589654f,2.07649e-015f},{0.587751f,-0.809042f,1.88339e-015f}, - {0.309304f,-0.950963f,-7.93445e-016f},{0.588229f,-0.808694f,1.89378e-016f},{5.24206e-017f,-1.0f,1.84438e-017f}, - {0.307814f,-0.951446f,2.20274e-016f},{0.950842f,-0.309676f,7.07655e-016f},{0.807656f,-0.589654f,1.56255e-015f}, - {0.811958f,-0.583716f,-1.04521e-015f},{0.952103f,-0.305779f,3.26521e-015f},{-0.587751f,-0.809042f,7.71131e-016f}, - {-1.0f,-9.4739e-015f,0.0f},{-1.0f,-1.38778e-017f,0.0f},{-0.950842f,-0.309676f,-7.97239e-016f}, - {-0.952103f,-0.305779f,0.0f},{0.0f,-1.0f,-6.43608e-016f},{-0.309304f,-0.950963f,0.0f}, - {-0.307814f,-0.951446f,1.22472e-015f},{-0.588229f,-0.808694f,-1.04096e-015f},{-0.811958f,-0.583716f,1.50274e-015f}, - {-0.807656f,-0.589654f,1.51802e-015f},{0.587751f,-0.809042f,-5.16272e-016f},{0.309304f,-0.950963f,-1.22487e-015f}, - {0.588229f,-0.808694f,1.03505e-015f},{-1.48864e-033f,-1.0f,-6.43608e-016f},{0.307814f,-0.951446f,-1.84017e-015f}, - {0.950842f,-0.309676f,8.81649e-016f},{0.807656f,-0.589654f,5.11667e-016f},{0.811958f,-0.583716f,6.28859e-016f}, - {0.952103f,-0.305779f,2.03625e-016f},{-0.587751f,-0.809042f,1.04141e-015f},{-0.950842f,-0.309676f,7.97239e-016f}, - {0.0f,-1.0f,1.28722e-015f},{-0.307814f,-0.951446f,-3.67415e-015f},{-0.588229f,-0.808694f,0.0f}, - {-0.811958f,-0.583716f,0.0f},{-0.807656f,-0.589654f,-1.51802e-015f},{0.587751f,-0.809042f,2.64786e-016f}, - {0.309304f,-0.950963f,6.11269e-016f},{0.588229f,-0.808694f,-5.91545e-018f},{-1.18424e-015f,-1.0f,1.28722e-015f}, - {0.307814f,-0.951446f,2.44634e-015f},{0.950842f,-0.309676f,-1.04605e-015f},{0.807656f,-0.589654f,2.88358e-015f}, - {0.811958f,-0.583716f,1.00454e-015f},{0.952103f,-0.305779f,-6.20481e-016f},{-0.587751f,-0.809042f,4.16564e-015f}, - {-0.950842f,-0.309676f,-2.44566e-015f},{-0.952103f,-0.305779f,2.45155e-015f},{4.91127e-017f,-1.0f,-8.5099e-018f}, - {-0.309304f,-0.950963f,4.13264e-016f},{-0.307814f,-0.951446f,8.07812e-016f},{-0.588229f,-0.808694f,1.50932e-015f}, - {-0.811958f,-0.583716f,-1.44928e-018f},{-0.807656f,-0.589654f,-2.07994e-015f},{0.587751f,-0.809042f,-3.86108e-016f}, - {0.309304f,-0.950963f,-1.81296e-016f},{0.588229f,-0.808694f,-7.56836e-016f},{5.40884e-017f,-1.0f,-8.5099e-018f}, - {0.307814f,-0.951446f,1.76305e-017f},{0.950842f,-0.309676f,1.56858e-015f},{0.807656f,-0.589654f,2.21017e-015f}, - {0.811958f,-0.583716f,-1.76554e-015f},{0.952103f,-0.305779f,4.58535e-015f},{-0.587751f,-0.809042f,-1.30906e-017f}, - {0.0f,-1.0f,6.43608e-016f},{-0.309304f,-0.950963f,1.22409e-015f},{-0.307814f,-0.951446f,-4.89886e-015f}, - {-0.588229f,-0.808694f,1.04096e-015f},{0.587751f,-0.809042f,7.85491e-016f},{0.588229f,-0.808694f,-5.26397e-016f}, - {1.48864e-033f,-1.0f,6.43608e-016f},{0.307814f,-0.951446f,3.0587e-015f},{0.950842f,-0.309676f,-6.69229e-016f}, - {0.807656f,-0.589654f,-5.31973e-016f},{0.811958f,-0.583716f,7.2278e-016f},{0.952103f,-0.305779f,-1.28478e-016f}, - {-0.587751f,-0.809042f,0.0f},{0.0f,-1.0f,-1.28722e-015f},{-0.309304f,-0.950963f,-2.44819e-015f}, - {-0.588229f,-0.808694f,-2.08193e-015f},{0.309304f,-0.950963f,-1.83692e-015f},{0.588229f,-0.808694f,1.55553e-015f}, - {1.18424e-015f,-1.0f,-1.28722e-015f},{0.307814f,-0.951446f,-1.22781e-015f},{0.950842f,-0.309676f,6.6054e-016f}, - {0.807656f,-0.589654f,-2.71413e-015f},{0.811958f,-0.583716f,-2.47054e-015f},{0.952103f,-0.305779f,5.72628e-016f}, - {-0.950842f,-0.309676f,-6.17708e-020f},{-0.309304f,-0.950963f,-3.93991e-016f},{-0.307814f,-0.951446f,7.77175e-016f}, - {-0.588229f,-0.808694f,7.71841e-016f},{-0.811958f,-0.583716f,-7.65821e-018f},{-0.807656f,-0.589654f,-2.08202e-015f}, - {0.587751f,-0.809042f,-1.97153e-016f},{0.309304f,-0.950963f,2.01908e-016f},{0.588229f,-0.808694f,-1.32498e-015f}, - {0.307814f,-0.951446f,6.16497e-016f},{0.950842f,-0.309676f,-1.06132e-015f},{0.807656f,-0.589654f,-1.94619e-015f}, - {0.811958f,-0.583716f,5.2254e-016f},{0.952103f,-0.305779f,3.28436e-015f},{-0.587751f,-0.809042f,-7.41994e-016f}, - {-1.0f,9.4739e-015f,0.0f},{-0.950842f,-0.309676f,2.4501e-015f},{-0.952103f,-0.305779f,-2.45069e-015f}, - {-0.309304f,-0.950963f,1.51228e-017f},{-0.307814f,-0.951446f,-3.80858e-016f},{-0.588229f,-0.808694f,-5.03529e-018f}, - {-0.807656f,-0.589654f,2.07857e-015f},{0.587751f,-0.809042f,7.48736e-016f},{0.309304f,-0.950963f,-7.78507e-016f}, - {0.588229f,-0.808694f,3.41962e-019f},{0.950842f,-0.309676f,5.45443e-016f},{0.807656f,-0.589654f,4.02952e-015f}, - {0.811958f,-0.583716f,-7.85697e-016f},{0.952103f,-0.305779f,-5.00849e-015f},{1.0f,-1.06581e-014f,0.0f}, - {-0.587751f,-0.809042f,1.50003e-015f},{-0.978165f,-0.20783f,9.12701e-016f},{-0.978254f,-0.207408f,-1.22532e-015f}, - {-0.50141f,-0.86521f,-2.22742e-015f},{-0.66887f,-0.743379f,2.0214e-015f},{-0.809606f,-0.586974f,-1.30267e-016f}, - {-0.913862f,-0.406026f,-1.94353e-015f},{-0.913543f,-0.406743f,0.0f},{-0.105163f,-0.994455f,3.84023e-015f}, - {-0.104013f,-0.994576f,-8.36797e-018f},{0.104013f,-0.994576f,2.56047e-015f},{-0.499433f,-0.866353f,-2.3509e-015f}, - {-0.308272f,-0.951298f,-1.22453e-015f},{-0.310578f,-0.950548f,3.62071e-015f},{0.310578f,-0.950548f,5.86794e-016f}, - {0.50141f,-0.86521f,-2.52602e-015f},{0.499433f,-0.866353f,4.17189e-015f},{0.308272f,-0.951298f,-1.78719e-015f}, - {0.105163f,-0.994455f,2.56862e-015f},{0.670096f,-0.742274f,-7.90726e-016f},{0.809606f,-0.586974f,-4.90953e-016f}, - {0.808947f,-0.587881f,-5.53829e-016f},{0.66887f,-0.743379f,-1.94741e-015f},{0.913543f,-0.406743f,-2.89332e-016f}, - {0.913862f,-0.406026f,1.7826e-016f},{0.978254f,-0.207408f,1.65571e-016f},{0.978165f,-0.20783f,-9.99953e-016f}, - {-0.808947f,-0.587881f,0.0f},{-0.50141f,-0.86521f,4.03389e-017f},{-0.670096f,-0.742274f,-5.84062e-015f}, - {-0.66887f,-0.743379f,-3.82756e-015f},{-0.913543f,-0.406743f,-1.46991e-016f},{-0.105163f,-0.994455f,2.56862e-015f}, - {0.104013f,-0.994576f,2.56883e-015f},{-0.499433f,-0.866353f,2.19018e-015f},{-0.308272f,-0.951298f,-2.44905e-015f}, - {-0.310578f,-0.950548f,4.89424e-015f},{0.310578f,-0.950548f,-1.88531e-015f},{0.50141f,-0.86521f,-1.70082e-015f}, - {0.499433f,-0.866353f,-3.94332e-015f},{0.308272f,-0.951298f,-1.81199e-015f},{0.105163f,-0.994455f,-1.27585e-015f}, - {0.670096f,-0.742274f,2.60918e-015f},{0.809606f,-0.586974f,9.60728e-017f},{0.808947f,-0.587881f,1.32834e-015f}, - {0.66887f,-0.743379f,-9.1653e-016f},{0.913543f,-0.406743f,-4.16505e-016f},{0.913862f,-0.406026f,5.90121e-016f}, - {0.978254f,-0.207408f,3.34195e-017f},{0.978165f,-0.20783f,6.34323e-016f},{1.0f,-3.14563e-016f,0.0f}, - {-0.808947f,-0.587881f,-1.51346e-015f},{-0.978165f,-0.20783f,1.57389e-016f},{-0.978254f,-0.207408f,-1.06792e-015f}, - {-0.670096f,-0.742274f,-5.67889e-015f},{-0.66887f,-0.743379f,-3.77374e-015f},{-0.809606f,-0.586974f,0.0f}, - {-0.105163f,-0.994455f,2.56015e-015f},{0.104013f,-0.994576f,2.56465e-015f},{-0.499433f,-0.866353f,2.27054e-015f}, - {-0.308272f,-0.951298f,-2.43665e-015f},{-0.310578f,-0.950548f,4.88175e-015f},{0.310578f,-0.950548f,-1.81035e-015f}, - {0.50141f,-0.86521f,-1.69074e-015f},{0.499433f,-0.866353f,-3.89811e-015f},{0.308272f,-0.951298f,-1.81819e-015f}, - {0.105163f,-0.994455f,-1.28008e-015f},{0.670096f,-0.742274f,2.46093e-015f},{0.809606f,-0.586974f,4.51872e-017f}, - {0.808947f,-0.587881f,1.19615e-015f},{0.66887f,-0.743379f,-8.76172e-016f},{0.913543f,-0.406743f,-4.37176e-016f}, - {0.913862f,-0.406026f,6.8432e-016f},{0.978254f,-0.207408f,2.10037e-016f},{0.978165f,-0.20783f,4.6264e-016f}, - {-0.808947f,-0.587881f,-1.64362e-015f},{-0.978165f,-0.20783f,1.22748e-015f},{-0.66887f,-0.743379f,1.80616e-015f}, - {-0.809606f,-0.586974f,6.51336e-017f},{-0.913862f,-0.406026f,-2.09057e-015f},{-0.105163f,-0.994455f,3.82754e-015f}, - {-0.104013f,-0.994576f,0.0f},{0.104013f,-0.994576f,2.57302e-015f},{-0.499433f,-0.866353f,-2.27054e-015f}, - {-0.308272f,-0.951298f,-1.23693e-015f},{-0.310578f,-0.950548f,3.65819e-015f},{0.310578f,-0.950548f,5.80547e-016f}, - {0.50141f,-0.86521f,-2.54115e-015f},{0.499433f,-0.866353f,4.11664e-015f},{0.308272f,-0.951298f,-1.80579e-015f}, - {0.105163f,-0.994455f,2.57285e-015f},{0.670096f,-0.742274f,-6.28996e-016f},{0.809606f,-0.586974f,-5.7237e-016f}, - {0.808947f,-0.587881f,-5.701e-016f},{0.66887f,-0.743379f,-2.03485e-015f},{0.913543f,-0.406743f,-4.37471e-016f}, - {0.913862f,-0.406026f,1.49541e-016f},{0.978254f,-0.207408f,1.87245e-016f},{0.978165f,-0.20783f,-1.1409e-015f}, - {-0.978254f,-0.207408f,-5.00352e-015f},{-0.50141f,-0.86521f,6.9607e-017f},{-0.670096f,-0.742274f,1.78483e-015f}, - {-0.66887f,-0.743379f,-1.19611e-016f},{-0.809606f,-0.586974f,-2.08427e-015f},{-0.913543f,-0.406743f,-6.54457e-017f}, - {-0.105163f,-0.994455f,1.9073e-016f},{-0.104013f,-0.994576f,-3.4779e-016f},{0.104013f,-0.994576f,1.73895e-016f}, - {-0.499433f,-0.866353f,1.49485e-015f},{-0.308272f,-0.951298f,8.70157e-016f},{-0.310578f,-0.950548f,-7.64725e-017f}, - {0.310578f,-0.950548f,-1.90331e-015f},{0.50141f,-0.86521f,-1.84452e-015f},{0.499433f,-0.866353f,-3.48494e-017f}, - {0.308272f,-0.951298f,-3.58546e-016f},{0.105163f,-0.994455f,4.61465e-016f},{0.670096f,-0.742274f,-7.66352e-016f}, - {0.809606f,-0.586974f,-1.39162e-015f},{0.808947f,-0.587881f,-4.28911e-016f},{0.66887f,-0.743379f,-1.68458e-015f}, - {0.913543f,-0.406743f,-2.14927e-016f},{0.913862f,-0.406026f,3.22114e-015f},{0.978254f,-0.207408f,-1.64157e-015f}, - {0.978165f,-0.20783f,4.10552e-015f},{-0.808947f,-0.587881f,-2.08258e-015f},{-0.978165f,-0.20783f,-5.03643e-015f}, - {-0.978254f,-0.207408f,3.33724e-017f},{-0.50141f,-0.86521f,-1.22124e-015f},{-0.670096f,-0.742274f,5.97167e-017f}, - {-0.66887f,-0.743379f,1.60235e-015f},{-0.913862f,-0.406026f,2.35267e-015f},{-0.913543f,-0.406743f,2.28641e-015f}, - {-0.105163f,-0.994455f,-8.00048e-017f},{-0.104013f,-0.994576f,5.3873e-017f},{0.104013f,-0.994576f,-9.38801e-017f}, - {-0.499433f,-0.866353f,-1.07666e-015f},{-0.308272f,-0.951298f,7.65328e-017f},{0.310578f,-0.950548f,2.95481e-016f}, - {0.50141f,-0.86521f,-1.52181e-015f},{0.499433f,-0.866353f,1.2587e-016f},{0.308272f,-0.951298f,-5.56952e-016f}, - {0.105163f,-0.994455f,-8.00048e-017f},{0.670096f,-0.742274f,-1.41327e-015f},{0.809606f,-0.586974f,1.47426e-015f}, - {0.808947f,-0.587881f,4.17136e-016f},{0.66887f,-0.743379f,-7.15979e-016f},{0.913543f,-0.406743f,-2.88423e-016f}, - {0.913862f,-0.406026f,1.97129e-015f},{0.978254f,-0.207408f,-1.91702e-015f},{0.978165f,-0.20783f,1.59714e-015f}, - {1.0f,-1.0066e-014f,0.0f},{-0.50141f,-0.86521f,-1.43006e-015f},{-0.66887f,-0.743379f,1.78177e-015f}, - {-0.913543f,-0.406743f,2.4173e-015f},{-0.105163f,-0.994455f,0.0f},{-0.104013f,-0.994576f,1.33888e-016f}, - {0.104013f,-0.994576f,6.6149e-017f},{-0.499433f,-0.866353f,-1.35545e-015f},{-0.308272f,-0.951298f,2.29599e-016f}, - {0.310578f,-0.950548f,1.42536e-016f},{0.50141f,-0.86521f,-1.55661e-015f},{0.499433f,-0.866353f,3.87464e-017f}, - {0.308272f,-0.951298f,-6.71751e-016f},{0.105163f,-0.994455f,-4.00024e-017f},{0.670096f,-0.742274f,-1.21919e-015f}, - {0.809606f,-0.586974f,1.4477e-015f},{0.808947f,-0.587881f,4.93992e-016f},{0.66887f,-0.743379f,-8.50541e-016f}, - {0.913543f,-0.406743f,-2.17864e-016f},{0.913862f,-0.406026f,2.0356e-015f},{0.978254f,-0.207408f,-1.90767e-015f}, - {0.978165f,-0.20783f,1.60331e-015f},{-0.50141f,-0.86521f,-1.39214e-016f},{-0.670096f,-0.742274f,1.72512e-015f}, - {-0.66887f,-0.743379f,5.98056e-017f},{-0.913543f,-0.406743f,6.54457e-017f},{-0.105163f,-0.994455f,2.70735e-016f}, - {-0.104013f,-0.994576f,-2.67775e-016f},{0.104013f,-0.994576f,3.33924e-016f},{-0.499433f,-0.866353f,1.21606e-015f}, - {-0.308272f,-0.951298f,1.02322e-015f},{0.310578f,-0.950548f,-2.05626e-015f},{0.50141f,-0.86521f,-1.87932e-015f}, - {0.499433f,-0.866353f,-1.21973e-016f},{0.308272f,-0.951298f,-4.73345e-016f},{0.105163f,-0.994455f,5.01467e-016f}, - {0.670096f,-0.742274f,-5.72273e-016f},{0.809606f,-0.586974f,-1.41818e-015f},{0.808947f,-0.587881f,-3.52056e-016f}, - {0.66887f,-0.743379f,-1.81914e-015f},{0.913543f,-0.406743f,-1.44369e-016f},{0.913862f,-0.406026f,3.28545e-015f}, - {0.978254f,-0.207408f,-1.63222e-015f},{0.978165f,-0.20783f,4.11169e-015f},{-0.50141f,-0.86521f,-4.03389e-017f}, - {-0.670096f,-0.742274f,1.91093e-015f},{-0.66887f,-0.743379f,3.82756e-015f},{-0.913862f,-0.406026f,-1.04529e-015f}, - {-0.913543f,-0.406743f,-1.04713e-015f},{-0.105163f,-0.994455f,-2.54323e-015f},{-0.104013f,-0.994576f,-1.29697e-015f}, - {0.104013f,-0.994576f,-1.28442e-015f},{-0.499433f,-0.866353f,-4.42055e-015f},{-0.308272f,-0.951298f,-2.37465e-015f}, - {-0.310578f,-0.950548f,2.40964e-015f},{0.50141f,-0.86521f,3.52965e-017f},{0.499433f,-0.866353f,2.27557e-015f}, - {0.308272f,-0.951298f,2.46765e-015f},{0.105163f,-0.994455f,-2.55169e-015f},{0.670096f,-0.742274f,-1.08164e-015f}, - {0.809606f,-0.586974f,1.7623e-015f},{0.808947f,-0.587881f,-8.13675e-016f},{0.66887f,-0.743379f,-5.12076e-016f}, - {0.913543f,-0.406743f,-1.07269e-015f},{0.913862f,-0.406026f,8.92948e-016f},{0.978254f,-0.207408f,2.07703e-016f}, - {0.978165f,-0.20783f,-1.28498e-015f},{-0.808947f,-0.587881f,1.57854e-015f},{-0.978165f,-0.20783f,1.07009e-015f}, - {-0.50141f,-0.86521f,2.3081e-015f},{-0.670096f,-0.742274f,-5.39099e-017f},{-0.66887f,-0.743379f,-5.38112e-017f}, - {-0.809606f,-0.586974f,-1.64139e-015f},{-0.913862f,-0.406026f,1.47042e-016f},{-0.105163f,-0.994455f,-6.3877e-015f}, - {-0.104013f,-0.994576f,-1.25931e-015f},{0.104013f,-0.994576f,-1.27187e-015f},{-0.308272f,-0.951298f,3.63638e-015f}, - {-0.310578f,-0.950548f,2.44712e-015f},{0.50141f,-0.86521f,8.45368e-016f},{0.499433f,-0.866353f,-2.48405e-015f}, - {0.308272f,-0.951298f,-3.07371e-015f},{0.105163f,-0.994455f,-3.84446e-015f},{0.670096f,-0.742274f,2.29805e-015f}, - {0.809606f,-0.586974f,-1.2864e-016f},{0.808947f,-0.587881f,4.24795e-015f},{0.66887f,-0.743379f,4.38086e-016f}, - {0.913543f,-0.406743f,-1.06091e-015f},{0.913862f,-0.406026f,-6.1115e-016f},{0.978254f,-0.207408f,-6.34059e-017f}, - {0.978165f,-0.20783f,2.90712e-016f},{-0.808947f,-0.587881f,-6.50806e-017f},{-1.0f,-3.70074e-017f,0.0f}, - {-0.978165f,-0.20783f,-3.14777e-016f},{-0.978254f,-0.207408f,1.57403e-016f},{-0.670096f,-0.742274f,1.80311e-015f}, - {-0.913862f,-0.406026f,-1.33937e-015f},{-0.913543f,-0.406743f,-1.34111e-015f},{-0.105163f,-0.994455f,-2.56862e-015f}, - {-0.104013f,-0.994576f,-1.24676e-015f},{0.104013f,-0.994576f,-1.29697e-015f},{-0.308272f,-0.951298f,-2.42425e-015f}, - {-0.310578f,-0.950548f,2.42213e-015f},{0.50141f,-0.86521f,0.0f},{0.499433f,-0.866353f,2.20023e-015f}, - {0.308272f,-0.951298f,2.46145e-015f},{0.105163f,-0.994455f,-2.56439e-015f},{0.670096f,-0.742274f,-1.10185e-015f}, - {0.809606f,-0.586974f,2.00044e-015f},{0.808947f,-0.587881f,-6.46906e-016f},{0.66887f,-0.743379f,-4.85171e-016f}, - {0.913543f,-0.406743f,-9.18809e-016f},{0.913862f,-0.406026f,9.41196e-016f},{0.978254f,-0.207408f,2.63205e-017f}, - {0.978165f,-0.20783f,-1.29405e-015f},{-0.808947f,-0.587881f,1.51346e-015f},{-0.978254f,-0.207408f,-1.57403e-016f}, - {-0.50141f,-0.86521f,2.18708e-015f},{-0.670096f,-0.742274f,1.0782e-016f},{-0.66887f,-0.743379f,-1.07622e-016f}, - {-0.809606f,-0.586974f,-1.51112e-015f},{-0.105163f,-0.994455f,-6.39193e-015f},{-0.104013f,-0.994576f,-1.27187e-015f}, - {0.104013f,-0.994576f,-1.25931e-015f},{-0.499433f,-0.866353f,-2.23036e-015f},{-0.308272f,-0.951298f,3.67358e-015f}, - {0.50141f,-0.86521f,8.65538e-016f},{0.499433f,-0.866353f,-2.50916e-015f},{0.308272f,-0.951298f,-3.06131e-015f}, - {0.105163f,-0.994455f,-3.82754e-015f},{0.670096f,-0.742274f,2.06893e-015f},{0.809606f,-0.586974f,-5.53643e-017f}, - {0.808947f,-0.587881f,4.16863e-015f},{0.66887f,-0.743379f,5.79341e-016f},{0.913543f,-0.406743f,-8.98992e-016f}, - {0.913862f,-0.406026f,-7.47853e-016f},{0.978254f,-0.207408f,6.23321e-017f},{0.978165f,-0.20783f,2.84103e-016f}, - {-0.50141f,-0.86521f,1.36045e-015f},{-0.670096f,-0.742274f,-1.6654e-015f},{-0.66887f,-0.743379f,-1.84157e-015f}, - {-0.913543f,-0.406743f,4.63826e-015f},{-0.104013f,-0.994576f,-4.81677e-016f},{0.104013f,-0.994576f,-4.95542e-016f}, - {-0.499433f,-0.866353f,2.09097e-016f},{-0.310578f,-0.950548f,1.12287e-015f},{0.310578f,-0.950548f,4.95371e-016f}, - {0.50141f,-0.86521f,-3.92318e-016f},{0.308272f,-0.951298f,2.36673e-016f},{0.670096f,-0.742274f,-8.74172e-016f}, - {0.809606f,-0.586974f,-2.30349e-015f},{0.808947f,-0.587881f,-3.42262e-015f},{0.66887f,-0.743379f,-3.93111e-016f}, - {0.913543f,-0.406743f,6.30269e-016f},{0.913862f,-0.406026f,1.6772e-015f},{0.978254f,-0.207408f,-2.36956e-015f}, - {0.978165f,-0.20783f,3.13168e-015f},{1.0f,1.0066e-014f,0.0f},{-0.808947f,-0.587881f,6.24774e-015f}, - {-0.50141f,-0.86521f,1.15163e-015f},{-0.670096f,-0.742274f,-1.72512e-015f},{-0.66887f,-0.743379f,-1.66215e-015f}, - {-0.913543f,-0.406743f,4.76915e-015f},{-0.104013f,-0.994576f,-4.01663e-016f},{0.104013f,-0.994576f,-3.35513e-016f}, - {-0.499433f,-0.866353f,-6.96989e-017f},{0.310578f,-0.950548f,3.42426e-016f},{0.50141f,-0.86521f,-4.27122e-016f}, - {0.308272f,-0.951298f,1.21873e-016f},{0.670096f,-0.742274f,-6.80093e-016f},{0.809606f,-0.586974f,-2.33005e-015f}, - {0.808947f,-0.587881f,-3.34576e-015f},{0.66887f,-0.743379f,-5.27674e-016f},{0.913543f,-0.406743f,7.00828e-016f}, - {0.913862f,-0.406026f,1.74151e-015f},{0.978254f,-0.207408f,-2.3602e-015f},{0.978165f,-0.20783f,3.13785e-015f}, - {-0.913862f,-0.406026f,4.70535e-015f},{0.104013f,-0.994576f,-6.77384e-017f},{-0.308272f,-0.951298f,-1.67214e-016f}, - {-0.310578f,-0.950548f,7.23088e-016f},{0.50141f,-0.86521f,1.83186e-015f},{0.499433f,-0.866353f,-2.8542e-015f}, - {0.308272f,-0.951298f,-7.65328e-017f},{0.105163f,-0.994455f,-4.46105e-016f},{0.809606f,-0.586974f,1.38256e-015f}, - {0.808947f,-0.587881f,2.9875e-016f},{0.66887f,-0.743379f,3.33306e-016f},{0.913543f,-0.406743f,2.97918e-015f}, - {0.913862f,-0.406026f,-3.51524e-015f},{0.978254f,-0.207408f,-2.31593e-015f},{0.978165f,-0.20783f,6.29469e-016f}, - {0.104013f,-0.994576f,-2.27768e-016f},{-0.308272f,-0.951298f,-3.20279e-016f},{0.50141f,-0.86521f,1.86666e-015f}, - {0.499433f,-0.866353f,-2.76708e-015f},{0.308272f,-0.951298f,3.82664e-017f},{0.105163f,-0.994455f,-4.86107e-016f}, - {0.809606f,-0.586974f,1.40912e-015f},{0.808947f,-0.587881f,2.21895e-016f},{0.66887f,-0.743379f,4.67868e-016f}, - {0.913543f,-0.406743f,2.90863e-015f},{0.913862f,-0.406026f,-3.57955e-015f},{0.978254f,-0.207408f,-2.32529e-015f}, - {0.978165f,-0.20783f,6.23297e-016f},{1.0503e-015f,1.0f,-4.4248e-016f},{1.32669e-015f,1.0f,-4.4248e-016f}, - {-0.987342f,0.158603f,0.0f},{-0.563203f,0.826318f,-2.43092e-015f},{-0.766044f,0.642788f,-2.58564e-017f}, - {-0.911564f,0.411158f,-2.41291e-015f},{-0.327644f,0.944801f,1.60877e-016f},{-5.81917e-015f,-1.0f,0.0f}, - {-3.12964e-015f,-1.0f,0.0f},{0.944801f,-0.327644f,-2.48504e-015f},{0.411158f,-0.911564f,5.40403e-016f}, - {0.642788f,-0.766044f,-2.51303e-015f},{0.826318f,-0.563203f,-2.17261e-015f},{0.158603f,-0.987342f,1.69056e-016f}, - {-1.0f,-1.42312e-031f,5.14886e-015f},{-1.0f,-7.0757e-015f,5.14886e-015f},{-0.158603f,-0.987342f,4.87746e-016f}, - {-0.826318f,-0.563203f,2.94231e-016f},{-0.642788f,-0.766044f,-4.19866e-015f},{-0.411158f,-0.911564f,3.66681e-017f}, - {-0.944801f,-0.327644f,4.51725e-015f},{1.0f,-6.25927e-015f,0.0f},{0.327644f,0.944801f,-7.60102e-017f}, - {0.911564f,0.411158f,-8.94506e-016f},{0.766044f,0.642788f,-2.51041e-015f},{0.563203f,0.826318f,1.48317e-015f}, - {0.987342f,0.158603f,-9.73349e-016f},{2.81922e-015f,-1.0f,2.81578e-016f},{2.21116e-015f,-1.0f,2.81578e-016f}, - {0.987342f,-0.158603f,5.08369e-015f},{0.563203f,-0.826318f,-1.72179e-015f},{0.766044f,-0.642788f,2.02384e-015f}, - {0.911564f,-0.411158f,1.10722e-015f},{0.327644f,-0.944801f,-4.42325e-016f},{2.93403e-016f,1.0f,0.0f}, - {-2.34723e-015f,1.0f,0.0f},{-0.944801f,0.327644f,5.27185e-017f},{-0.411158f,0.911564f,-1.08478e-015f}, - {-0.642788f,0.766044f,-1.94526e-015f},{-0.826318f,0.563203f,3.28157e-015f},{-0.158603f,0.987342f,-5.96628e-016f}, - {-0.158603f,0.987342f,-7.51139e-016f},{-1.50359e-014f,1.0f,-3.86165e-015f},{-2.12271e-014f,1.0f,-3.86165e-015f}, - {-0.563203f,0.826318f,-1.74542e-015f},{-0.766044f,0.642788f,1.27192e-015f},{-0.911564f,0.411158f,0.0f}, - {-0.327644f,0.944801f,-1.40602e-017f},{6.25927e-015f,-1.0f,0.0f},{-2.50371e-014f,-1.0f,0.0f}, - {0.944801f,-0.327644f,-7.60102e-017f},{0.411158f,-0.911564f,-1.34268e-016f},{0.642788f,-0.766044f,-1.4597e-015f}, - {0.826318f,-0.563203f,3.3239e-017f},{0.158603f,-0.987342f,-2.36033e-015f},{-1.0f,-1.50359e-014f,-3.86165e-015f}, - {-1.0f,-2.12271e-014f,-3.86165e-015f},{-0.158603f,-0.987342f,7.37193e-016f},{-0.826318f,-0.563203f,-1.7256e-015f}, - {-0.642788f,-0.766044f,1.218e-015f},{-0.411158f,-0.911564f,-7.33362e-017f},{-0.944801f,-0.327644f,-1.94144e-017f}, - {1.0f,6.25927e-015f,0.0f},{1.0f,-2.50371e-014f,0.0f},{0.327644f,0.944801f,8.43496e-016f}, - {0.911564f,0.411158f,-2.04101e-015f},{0.766044f,0.642788f,-9.60208e-016f},{0.563203f,0.826318f,-7.24964e-016f}, - {0.987342f,0.158603f,-4.26811e-015f},{1.50359e-014f,-1.0f,-3.86165e-015f},{2.12271e-014f,-1.0f,-3.86165e-015f}, - {0.987342f,-0.158603f,8.96059e-016f},{0.563203f,-0.826318f,-1.76241e-015f},{0.766044f,-0.642788f,1.23341e-015f}, - {0.911564f,-0.411158f,0.0f},{0.327644f,-0.944801f,-1.48839e-017f},{-6.25927e-015f,1.0f,0.0f}, - {2.50371e-014f,1.0f,0.0f},{-0.944801f,0.327644f,9.19506e-016f},{-0.411158f,0.911564f,-2.04721e-015f}, - {-0.642788f,0.766044f,-9.47279e-016f},{-0.826318f,0.563203f,-6.58486e-016f},{-0.158603f,0.987342f,-4.27439e-015f}, - {-1.0f,-5.52789e-017f,-2.01127e-016f},{-1.0f,-4.42231e-016f,-2.01127e-016f},{-0.158603f,-0.987342f,2.56736e-015f}, - {-0.826318f,-0.563203f,2.03441e-015f},{-0.642788f,-0.766044f,-1.89456e-015f},{-0.411158f,-0.911564f,-2.2806e-015f}, - {-0.944801f,-0.327644f,-6.80855e-016f},{1.0f,-1.02691e-015f,0.0f},{1.0f,7.82409e-016f,0.0f}, - {0.327644f,0.944801f,-4.81193e-015f},{0.911564f,0.411158f,1.02824e-016f},{0.766044f,0.642788f,0.0f}, - {0.563203f,0.826318f,-1.01834e-015f},{0.987342f,0.158603f,1.80074e-016f},{2.43227e-015f,-1.0f,2.81578e-016f}, - {2.65339e-015f,-1.0f,2.81578e-016f},{0.987342f,-0.158603f,-2.51632e-015f},{0.563203f,-0.826318f,-1.48159e-015f}, - {0.766044f,-0.642788f,5.18888e-016f},{0.911564f,-0.411158f,-1.17338e-015f},{0.327644f,-0.944801f,-1.30642e-017f}, - {1.95602e-016f,1.0f,0.0f},{-0.944801f,0.327644f,-4.86465e-015f},{-0.411158f,0.911564f,3.45909e-016f}, - {-0.642788f,0.766044f,5.06146e-016f},{-0.826318f,0.563203f,2.08199e-015f},{-0.158603f,0.987342f,3.01313e-016f}, - {-0.158603f,0.987342f,7.86925e-017f},{1.0f,1.10558e-016f,-2.41353e-016f},{1.0f,4.42231e-016f,-2.41353e-016f}, - {0.158603f,0.987342f,2.56736e-015f},{0.826318f,0.563203f,-1.66982e-016f},{0.642788f,0.766044f,-1.94627e-015f}, - {0.944801f,0.327644f,-1.31395e-015f},{-1.0f,1.95602e-016f,0.0f},{-1.0f,-2.34723e-015f,0.0f}, - {-0.327644f,-0.944801f,-2.37961e-015f},{-0.911564f,-0.411158f,5.88225e-016f},{-0.766044f,-0.642788f,1.27192e-015f}, - {-0.563203f,-0.826318f,-1.10896e-015f},{-0.987342f,-0.158603f,-2.16372e-016f},{1.42312e-031f,-1.0f,5.14886e-015f}, - {7.0757e-015f,-1.0f,5.14886e-015f},{0.987342f,-0.158603f,4.08313e-016f},{0.563203f,-0.826318f,2.82904e-016f}, - {0.766044f,-0.642788f,-4.12933e-015f},{0.327644f,-0.944801f,4.50922e-015f},{6.25927e-015f,1.0f,0.0f}, - {-0.944801f,0.327644f,0.0f},{-0.411158f,0.911564f,-8.71765e-016f},{-0.642788f,0.766044f,-2.4393e-015f}, - {-0.826318f,0.563203f,1.44993e-015f},{-0.158603f,0.987342f,-9.70258e-016f},{1.0f,1.42312e-031f,5.14886e-015f}, - {1.0f,7.0757e-015f,5.14886e-015f},{0.158603f,0.987342f,4.08313e-016f},{0.826318f,0.563203f,2.46089e-016f}, - {0.642788f,0.766044f,-4.11392e-015f},{0.411158f,0.911564f,3.66681e-017f},{0.944801f,0.327644f,4.51313e-015f}, - {-1.0f,6.25927e-015f,0.0f},{-0.911564f,-0.411158f,-8.90371e-016f},{-0.766044f,-0.642788f,-2.52334e-015f}, - {-0.563203f,-0.826318f,1.38345e-015f},{-0.987342f,-0.158603f,-9.72053e-016f},{-1.50359e-014f,1.0f,3.86165e-015f}, - {-1.41514e-014f,1.0f,3.86165e-015f},{-0.563203f,0.826318f,2.60249e-016f},{-0.766044f,0.642788f,-4.12933e-015f}, - {-0.911564f,0.411158f,3.66681e-017f},{-0.327644f,0.944801f,4.53578e-015f},{-1.7213e-014f,-1.0f,0.0f}, - {1.25185e-014f,-1.0f,0.0f},{0.944801f,-0.327644f,1.68699e-015f},{0.411158f,-0.911564f,-2.19388e-015f}, - {0.642788f,-0.766044f,-9.92528e-016f},{0.826318f,-0.563203f,2.89985e-015f},{0.158603f,-0.987342f,-9.67866e-016f}, - {1.0f,8.84462e-016f,1.20676e-016f},{1.0f,4.42231e-016f,1.20676e-016f},{0.826318f,0.563203f,-7.99752e-016f}, - {0.642788f,0.766044f,5.96458e-016f},{0.411158f,0.911564f,1.10722e-015f},{0.944801f,0.327644f,-1.19869e-015f}, - {-1.0f,2.93403e-016f,0.0f},{-0.327644f,-0.944801f,-5.27185e-017f},{-0.327644f,-0.944801f,-2.43232e-015f}, - {-0.911564f,-0.411158f,6.36047e-016f},{-0.563203f,-0.826318f,1.06365e-015f},{-0.987342f,-0.158603f,-1.62229e-016f}, - {1.43725e-015f,1.0f,-3.21804e-016f},{1.76892e-015f,1.0f,-3.21804e-016f},{-0.987342f,0.158603f,2.51632e-015f}, - {-0.563203f,0.826318f,3.20933e-016f},{-0.766044f,0.642788f,1.73942e-015f},{-0.911564f,0.411158f,2.37984e-015f}, - {-0.327644f,0.944801f,5.5243e-017f},{-2.68953e-015f,-1.0f,0.0f},{0.944801f,-0.327644f,-4.81193e-015f}, - {0.411158f,-0.911564f,-1.59493e-015f},{0.642788f,-0.766044f,3.34044e-015f},{0.826318f,-0.563203f,-1.01834e-015f}, - {0.158603f,-0.987342f,-8.62776e-016f},{-1.0f,1.93476e-015f,-2.81578e-016f},{-1.0f,2.21116e-015f,-2.81578e-016f}, - {-0.158603f,-0.987342f,5.10921e-015f},{-0.826318f,-0.563203f,-2.16142e-015f},{-0.642788f,-0.766044f,1.58252e-015f}, - {-0.411158f,-0.911564f,-1.1403e-015f},{-0.944801f,-0.327644f,-1.28754e-015f},{1.0f,-2.78733e-015f,0.0f}, - {1.0f,-1.56482e-015f,0.0f},{0.327644f,0.944801f,0.0f},{0.911564f,0.411158f,2.03571e-015f}, - {0.766044f,0.642788f,-4.90281e-015f},{0.563203f,0.826318f,3.19095e-015f},{0.987342f,0.158603f,-6.10433e-016f} -}; -GLfloat textures[1][2]= {{0.0f,0.0f}}; -/*Material indicies*/ -/*{material index,face count}*/ -//static int material_ref [1][2] = { -//{0,77848} -//}; - -void MyMaterial(GLenum mode, GLfloat * f, GLfloat alpha) -{ - GLfloat d[4]; - d[0] = f[0]; - d[1] = f[1]; - d[2] = f[2]; - d[3] = alpha; - glMaterialfv(GL_FRONT_AND_BACK, mode, d); -} - -/* - * SelectMaterial uses OpenGL commands to define facet colors. - * - * Returns: - * Nothing - */ - -void SelectMaterial(int i) -{ -// -// Define the reflective properties of the 3D Object faces. -// - glEnd(); - GLfloat alpha = materials[i].alpha; - MyMaterial(GL_AMBIENT, materials[i].ambient, alpha); - MyMaterial(GL_DIFFUSE, materials[i].diffuse, alpha); - MyMaterial(GL_SPECULAR, materials[i].specular, alpha); - MyMaterial(GL_EMISSION, materials[i].emission, alpha); - glMaterialf(GL_FRONT_AND_BACK, GL_SHININESS, materials[i].phExp); - glBegin(GL_TRIANGLES); - -}; - -osg::ref_ptr PixhawkCheetahNode::mInstance; - -PixhawkCheetahNode::PixhawkCheetahNode() -{ - -} - -osg::ref_ptr -PixhawkCheetahNode::instance(void) -{ - if (!mInstance.valid()) - { - QColor color(255, 255, 255); - mInstance = create(color); - } - - return mInstance; -} - -osg::ref_ptr -PixhawkCheetahNode::create(const QColor& color) -{ - osg::ref_ptr pat(new osg::PositionAttitudeTransform); - pat->setScale(osg::Vec3(0.5f, 0.5f, 0.5f)); - - osg::ref_ptr geode(new osg::Geode()); - geode->setName("Pixhawk Bravo"); - osg::ref_ptr geometry(new osg::Geometry()); - geode->addDrawable(geometry); - - pat->addChild(geode); - - osg::ref_ptr osgVertices(new osg::Vec3Array); - osg::ref_ptr osgNormals(new osg::Vec3Array); - osg::ref_ptr osgTextures(new osg::Vec2Array); - - unsigned int numFaces = sizeof(face_indicies)/sizeof(face_indicies[0]); - for (unsigned int i = 0; i < numFaces; ++i) - { - osg::ref_ptr face( - new osg::DrawElementsUInt(osg::PrimitiveSet::TRIANGLES, 0)); - - for (int j = 0; j < 3; ++j) - { - int vi = face_indicies[i][j]; // Vertice index - int ni = face_indicies[i][j + 3]; // Normal index - int ti = face_indicies[i][j + 6]; // Texture index - - osgVertices->push_back(osg::Vec3(vertices[vi][0], - vertices[vi][1], - vertices[vi][2])); - - osgNormals->push_back(osg::Vec3(normals[ni][0], - normals[ni][1], - normals[ni][2])); - - osgTextures->push_back(osg::Vec2(textures[ti][0], - textures[ti][1])); - - face->push_back(i * 3 + j); - } - - geometry->addPrimitiveSet(face); - } - - geometry->setVertexArray(osgVertices); - geometry->setNormalArray(osgNormals); - geometry->setTexCoordArray(0, osgTextures); - - osg::ref_ptr colors(new osg::Vec4Array); - colors->push_back(osg::Vec4(color.redF(), color.greenF(), color.blueF(), 1.0f)); - - geometry->setColorArray(colors); - geometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - return pat; -}; diff --git a/src/ui/map3D/PixhawkCheetahNode.h b/src/ui/map3D/PixhawkCheetahNode.h deleted file mode 100644 index be01fdda7f5164caf1fb7849d72fb682cfaff3d2..0000000000000000000000000000000000000000 --- a/src/ui/map3D/PixhawkCheetahNode.h +++ /dev/null @@ -1,70 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class PixhawkCheetahNode. - * - * @author Lionel Heng - * - */ - -#ifndef PIXHAWKCHEETAHNODE_H_ -#define PIXHAWKCHEETAHNODE_H_ - -#include -#include - -/** - * @brief The PixhawkCheetahNode class. - * Generates an OpenSceneGraph node which renders a Pixhawk Cheetah MAV. - **/ - -class PixhawkCheetahNode -{ -public: - /** - * Constructor. - */ - PixhawkCheetahNode(); - - /** - * Get a single instance of the node. - */ - static osg::ref_ptr instance(void); - - /** - * @brief Creates an OpenSceneGraph node which renders a Pixhawk Cheetah MAV. - * @param red Red intensity of the MAV model. - * @param green Green intensity of the MAV model. - * @param blue Blue intensity of the MAV model. - * - * @return A smart pointer to the node. - **/ - static osg::ref_ptr create(const QColor& color); - -private: - static osg::ref_ptr mInstance; -}; - -#endif diff --git a/src/ui/map3D/Q3DWidget.cc b/src/ui/map3D/Q3DWidget.cc deleted file mode 100644 index 2d2c9e173bb21f6183186a428884af1e92816aae..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Q3DWidget.cc +++ /dev/null @@ -1,742 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Q3DWidget. - * - * @author Lionel Heng - * - */ - -#include "Q3DWidget.h" -#include "QGC.h" - -#include -#include -#include -#ifdef Q_OS_MACX -#include -#endif - -Q3DWidget::Q3DWidget(QWidget* parent) - : QGLWidget(parent) - , mHandleDeviceEvents(true) - , mRoot(new osg::Group()) - , mHudGroup(new osg::Switch()) - , mHudProjectionMatrix(new osg::Projection) - , mFps(30.0f) -{ - mFont = NULL; - - mOsgGW = new osgViewer::GraphicsWindowEmbedded(0, 0, width(), height()); - - setThreadingModel(osgViewer::Viewer::CullDrawThreadPerContext); - - setMouseTracking(true); -} - -Q3DWidget::~Q3DWidget() -{ - -} - -void -Q3DWidget::init(float fps) -{ - mFps = fps; - - getCamera()->setGraphicsContext(mOsgGW); - - // manually specify near and far clip planes - getCamera()->setComputeNearFarMode(osg::CullSettings::DO_NOT_COMPUTE_NEAR_FAR); - - setLightingMode(osg::View::SKY_LIGHT); - - setSceneData(mRoot); - - mWorldMap = new osg::Switch; - mRoot->addChild(mWorldMap); - - // set up HUD - mRoot->addChild(createHUD()); - - // set up camera control - mCameraManipulator = new GCManipulator(); - setCameraManipulator(mCameraManipulator); - mCameraManipulator->setMinZoomRange(mCameraParams.minZoomRange()); - mCameraManipulator->setDistance(mCameraParams.minZoomRange() * 2.0); - - connect(&mTimer, SIGNAL(timeout()), this, SLOT(redraw())); - // DO NOT START TIMER IN INITIALIZATION! IT IS STARTED IN THE SHOW EVENT -} - -void -Q3DWidget::setCameraParams(float minZoomRange, float cameraFov, - float minClipRange, float maxClipRange) -{ - mCameraParams.minZoomRange() = minZoomRange; - mCameraParams.fov() = cameraFov; - mCameraParams.minClipRange() = minClipRange; - mCameraParams.maxClipRange() = maxClipRange; -} - -void -Q3DWidget::moveCamera(double dx, double dy, double dz) -{ - mCameraManipulator->move(dx, dy, dz); -} - -void -Q3DWidget::recenterCamera(double x, double y, double z) -{ - mCameraManipulator->setCenter(osg::Vec3d(x, y, z)); -} - -void -Q3DWidget::rotateCamera(double roll, double pitch, double yaw) -{ - osg::Quat q(-yaw, osg::Vec3d(0.0f, 0.0f, 1.0f), - pitch, osg::Vec3d(1.0f, 0.0f, 0.0f), - roll, osg::Vec3d(0.0f, 1.0f, 0.0f)); - - mCameraManipulator->setRotation(q); -} - -void -Q3DWidget::setCameraDistance(double distance) -{ - mCameraManipulator->setDistance(distance); -} - -void -Q3DWidget::setDisplayMode3D(void) -{ - double aspect = static_cast(width()) - / static_cast(height()); - - getCamera()->setViewport(new osg::Viewport(0, 0, width(), height())); - getCamera()->setProjectionMatrixAsPerspective(mCameraParams.fov(), - aspect, - mCameraParams.minClipRange(), - mCameraParams.maxClipRange()); -} - -osg::ref_ptr& -Q3DWidget::hudGroup(void) -{ - return mHudGroup; -} - -QPoint -Q3DWidget::mouseCursorCoords(void) -{ - return mapFromGlobal(cursor().pos()); -} - -QPointF -Q3DWidget::worldCursorPosition(const QPoint& cursorPos, double worldZ) const -{ - osgUtil::LineSegmentIntersector::Intersections intersections; - - // normalize cursor position to value between -1 and 1 - double x = -1.0f + static_cast(2 * cursorPos.x()) - / static_cast(width()); - double y = -1.0f + static_cast(2 * (height() - cursorPos.y())) - / static_cast(height()); - - // compute matrix which transforms screen coordinates to world coordinates - osg::Matrixd m = getCamera()->getViewMatrix() - * getCamera()->getProjectionMatrix(); - osg::Matrixd invM = osg::Matrixd::inverse(m); - - osg::Vec3d nearPoint = osg::Vec3d(x, y, -1.0) * invM; - osg::Vec3d farPoint = osg::Vec3d(x, y, 1.0) * invM; - - osg::ref_ptr line = - new osg::LineSegment(nearPoint, farPoint); - - osg::Plane p(osg::Vec3d(0.0, 0.0, 1.0), osg::Vec3d(0.0, 0.0, worldZ)); - - osg::Vec3d projectedPoint; - planeLineIntersection(p.asVec4(), *line, projectedPoint); - - return QPointF(projectedPoint.y(), projectedPoint.x()); -} - -CameraParams& -Q3DWidget::cameraParams(void) -{ - return mCameraParams; -} - -osg::ref_ptr& -Q3DWidget::cameraManipulator(void) -{ - return mCameraManipulator; -} - -osg::ref_ptr& -Q3DWidget::font(void) -{ - return mFont; -} - -osg::ref_ptr& -Q3DWidget::worldMap(void) -{ - return mWorldMap; -} - -osg::ref_ptr& -Q3DWidget::systemGroup(int systemId) -{ - if (!mSystemGroups.contains(systemId)) - { - osg::ref_ptr newSystem = new SystemGroupNode; - mRoot->addChild(newSystem); - - mSystemGroups.insert(systemId, newSystem); - } - - return mSystemGroups[systemId]; -} - -bool& -Q3DWidget::handleDeviceEvents(void) -{ - return mHandleDeviceEvents; -} - -void -Q3DWidget::handleKeyPressEvent(QKeyEvent* event) -{ - if (event->isAccepted()) - { - return; - } - - if (event->text().isEmpty()) - { - mOsgGW->getEventQueue()->keyPress(convertKey(event->key())); - } - else - { - mOsgGW->getEventQueue()->keyPress( - static_cast( - *(event->text().toLatin1().data()))); - } -} - -void -Q3DWidget::handleKeyReleaseEvent(QKeyEvent* event) -{ - if (event->isAccepted()) - { - return; - } - - if (event->text().isEmpty()) - { - mOsgGW->getEventQueue()->keyRelease(convertKey(event->key())); - } - else - { - mOsgGW->getEventQueue()->keyRelease( - static_cast( - *(event->text().toLatin1().data()))); - } -} - -void -Q3DWidget::handleMousePressEvent(QMouseEvent* event) -{ - if (event->isAccepted()) - { - return; - } - - int button = 0; - switch (event->button()) - { - case Qt::LeftButton: - button = 1; - break; - case Qt::MidButton: - button = 2; - break; - case Qt::RightButton: - button = 3; - break; - case Qt::NoButton: - button = 0; - break; - default: - {} - } - mOsgGW->getEventQueue()->mouseButtonPress(event->x(), event->y(), button); -} - -void -Q3DWidget::handleMouseReleaseEvent(QMouseEvent* event) -{ - if (event->isAccepted()) - { - return; - } - - int button = 0; - switch (event->button()) - { - case Qt::LeftButton: - button = 1; - break; - case Qt::MidButton: - button = 2; - break; - case Qt::RightButton: - button = 3; - break; - case Qt::NoButton: - button = 0; - break; - default: - {} - } - mOsgGW->getEventQueue()->mouseButtonRelease(event->x(), event->y(), button); -} - -void -Q3DWidget::handleMouseMoveEvent(QMouseEvent* event) -{ - if (event->isAccepted()) - { - return; - } - - mOsgGW->getEventQueue()->mouseMotion(event->x(), event->y()); -} - -void -Q3DWidget::handleWheelEvent(QWheelEvent* event) -{ - if (event->isAccepted()) - { - return; - } - - mOsgGW->getEventQueue()->mouseScroll((event->delta() > 0) ? - osgGA::GUIEventAdapter::SCROLL_UP : - osgGA::GUIEventAdapter::SCROLL_DOWN); -} - -void -Q3DWidget::redraw(void) -{ - emit update(); - emit updateWidget(); -#if (QGC_EVENTLOOP_DEBUG) - qDebug() << "EVENTLOOP:" << __FILE__ << __LINE__; -#endif - updateGL(); -} - -void -Q3DWidget::resizeGL(int width, int height) -{ - mHudProjectionMatrix->setMatrix(osg::Matrix::ortho(0.0, width, - 0.0, height, - -10.0, 10.0)); - - mOsgGW->getEventQueue()->windowResize(0, 0, width, height); - mOsgGW->resized(0 , 0, width, height); - - emit sizeChanged(width, height); -} - -void -Q3DWidget::keyPressEvent(QKeyEvent* event) -{ - QWidget::keyPressEvent(event); - - if (mHandleDeviceEvents) - { - handleKeyPressEvent(event); - } - else - { - event->ignore(); - } -} - -void -Q3DWidget::keyReleaseEvent(QKeyEvent* event) -{ - QWidget::keyReleaseEvent(event); - - if (mHandleDeviceEvents) - { - handleKeyReleaseEvent(event); - } - else - { - event->ignore(); - } -} - -void -Q3DWidget::mousePressEvent(QMouseEvent* event) -{ - QWidget::mousePressEvent(event); - - if (mHandleDeviceEvents) - { - handleMousePressEvent(event); - } - else - { - event->ignore(); - } -} - -void -Q3DWidget::mouseReleaseEvent(QMouseEvent* event) -{ - QWidget::mouseReleaseEvent(event); - - if (mHandleDeviceEvents) - { - handleMouseReleaseEvent(event); - } - else - { - event->ignore(); - } -} - -void -Q3DWidget::mouseMoveEvent(QMouseEvent* event) -{ - QWidget::mouseMoveEvent(event); - - if (mHandleDeviceEvents) - { - handleMouseMoveEvent(event); - } - else - { - event->ignore(); - } -} - -void -Q3DWidget::wheelEvent(QWheelEvent* event) -{ - QWidget::wheelEvent(event); - - if (mHandleDeviceEvents) - { - handleWheelEvent(event); - } - else - { - event->ignore(); - } -} - -void -Q3DWidget::showEvent(QShowEvent* event) -{ - // React only to internal (pre/post-display) - // events - Q_UNUSED(event) - mTimer.start(static_cast(floorf(1000.0f / mFps))); -} - -void -Q3DWidget::hideEvent(QHideEvent* event) -{ - // React only to internal (pre/post-display) - // events - Q_UNUSED(event) - mTimer.stop(); -} - -osg::ref_ptr -Q3DWidget::createHUD(void) -{ - mHudProjectionMatrix->setMatrix(osg::Matrix::ortho(0.0, width(), - 0.0, height(), - -10.0, 10.0)); - - osg::ref_ptr hudModelViewMatrix( - new osg::MatrixTransform); - hudModelViewMatrix->setMatrix(osg::Matrix::identity()); - hudModelViewMatrix->setReferenceFrame(osg::Transform::ABSOLUTE_RF); - - mHudProjectionMatrix->addChild(hudModelViewMatrix); - hudModelViewMatrix->addChild(mHudGroup); - - osg::ref_ptr hudStateSet(new osg::StateSet); - mHudGroup->setStateSet(hudStateSet); - hudStateSet->setMode(GL_DEPTH_TEST, osg::StateAttribute::OFF); - hudStateSet->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - hudStateSet->setMode(GL_BLEND, osg::StateAttribute::ON); - hudStateSet->setRenderingHint(osg::StateSet::TRANSPARENT_BIN); - hudStateSet->setRenderBinDetails(11, "RenderBin"); - - return mHudProjectionMatrix; -} - -void -Q3DWidget::paintGL(void) -{ - setDisplayMode3D(); - - getCamera()->setClearColor(osg::Vec4f(0.0f, 0.0f, 0.0f, 0.0f)); - getCamera()->setClearMask(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - - frame(); -} - -osgGA::GUIEventAdapter::KeySymbol -Q3DWidget::convertKey(int key) const -{ - switch (key) - { - case Qt::Key_Space : - return osgGA::GUIEventAdapter::KEY_Space; - case Qt::Key_Backspace : - return osgGA::GUIEventAdapter::KEY_BackSpace; - case Qt::Key_Tab : - return osgGA::GUIEventAdapter::KEY_Tab; - case Qt::Key_Clear : - return osgGA::GUIEventAdapter::KEY_Clear; - case Qt::Key_Return : - return osgGA::GUIEventAdapter::KEY_Return; - case Qt::Key_Enter : - return osgGA::GUIEventAdapter::KEY_KP_Enter; - case Qt::Key_Pause : - return osgGA::GUIEventAdapter::KEY_Pause; - case Qt::Key_ScrollLock : - return osgGA::GUIEventAdapter::KEY_Scroll_Lock; - case Qt::Key_SysReq : - return osgGA::GUIEventAdapter::KEY_Sys_Req; - case Qt::Key_Escape : - return osgGA::GUIEventAdapter::KEY_Escape; - case Qt::Key_Delete : - return osgGA::GUIEventAdapter::KEY_Delete; - case Qt::Key_Home : - return osgGA::GUIEventAdapter::KEY_Home; - case Qt::Key_Left : - return osgGA::GUIEventAdapter::KEY_Left; - case Qt::Key_Up : - return osgGA::GUIEventAdapter::KEY_Up; - case Qt::Key_Right : - return osgGA::GUIEventAdapter::KEY_Right; - case Qt::Key_Down : - return osgGA::GUIEventAdapter::KEY_Down; - case Qt::Key_PageUp : - return osgGA::GUIEventAdapter::KEY_Page_Up; - case Qt::Key_PageDown : - return osgGA::GUIEventAdapter::KEY_Page_Down; - case Qt::Key_End : - return osgGA::GUIEventAdapter::KEY_End; - case Qt::Key_Select : - return osgGA::GUIEventAdapter::KEY_Select; - case Qt::Key_Print : - return osgGA::GUIEventAdapter::KEY_Print; - case Qt::Key_Execute : - return osgGA::GUIEventAdapter::KEY_Execute; - case Qt::Key_Insert : - return osgGA::GUIEventAdapter::KEY_Insert; - case Qt::Key_Menu : - return osgGA::GUIEventAdapter::KEY_Menu; - case Qt::Key_Cancel : - return osgGA::GUIEventAdapter::KEY_Cancel; - case Qt::Key_Help : - return osgGA::GUIEventAdapter::KEY_Help; - case Qt::Key_Mode_switch : - return osgGA::GUIEventAdapter::KEY_Mode_switch; - case Qt::Key_NumLock : - return osgGA::GUIEventAdapter::KEY_Num_Lock; - case Qt::Key_Equal : - return osgGA::GUIEventAdapter::KEY_KP_Equal; - case Qt::Key_Asterisk : - return osgGA::GUIEventAdapter::KEY_KP_Multiply; - case Qt::Key_Plus : - return osgGA::GUIEventAdapter::KEY_KP_Add; - case Qt::Key_Minus : - return osgGA::GUIEventAdapter::KEY_KP_Subtract; - case Qt::Key_Comma : - return osgGA::GUIEventAdapter::KEY_KP_Decimal; - case Qt::Key_Slash : - return osgGA::GUIEventAdapter::KEY_KP_Divide; - case Qt::Key_0 : - return osgGA::GUIEventAdapter::KEY_KP_0; - case Qt::Key_1 : - return osgGA::GUIEventAdapter::KEY_KP_1; - case Qt::Key_2 : - return osgGA::GUIEventAdapter::KEY_KP_2; - case Qt::Key_3 : - return osgGA::GUIEventAdapter::KEY_KP_3; - case Qt::Key_4 : - return osgGA::GUIEventAdapter::KEY_KP_4; - case Qt::Key_5 : - return osgGA::GUIEventAdapter::KEY_KP_5; - case Qt::Key_6 : - return osgGA::GUIEventAdapter::KEY_KP_6; - case Qt::Key_7 : - return osgGA::GUIEventAdapter::KEY_KP_7; - case Qt::Key_8 : - return osgGA::GUIEventAdapter::KEY_KP_8; - case Qt::Key_9 : - return osgGA::GUIEventAdapter::KEY_KP_9; - case Qt::Key_F1 : - return osgGA::GUIEventAdapter::KEY_F1; - case Qt::Key_F2 : - return osgGA::GUIEventAdapter::KEY_F2; - case Qt::Key_F3 : - return osgGA::GUIEventAdapter::KEY_F3; - case Qt::Key_F4 : - return osgGA::GUIEventAdapter::KEY_F4; - case Qt::Key_F5 : - return osgGA::GUIEventAdapter::KEY_F5; - case Qt::Key_F6 : - return osgGA::GUIEventAdapter::KEY_F6; - case Qt::Key_F7 : - return osgGA::GUIEventAdapter::KEY_F7; - case Qt::Key_F8 : - return osgGA::GUIEventAdapter::KEY_F8; - case Qt::Key_F9 : - return osgGA::GUIEventAdapter::KEY_F9; - case Qt::Key_F10 : - return osgGA::GUIEventAdapter::KEY_F10; - case Qt::Key_F11 : - return osgGA::GUIEventAdapter::KEY_F11; - case Qt::Key_F12 : - return osgGA::GUIEventAdapter::KEY_F12; - case Qt::Key_F13 : - return osgGA::GUIEventAdapter::KEY_F13; - case Qt::Key_F14 : - return osgGA::GUIEventAdapter::KEY_F14; - case Qt::Key_F15 : - return osgGA::GUIEventAdapter::KEY_F15; - case Qt::Key_F16 : - return osgGA::GUIEventAdapter::KEY_F16; - case Qt::Key_F17 : - return osgGA::GUIEventAdapter::KEY_F17; - case Qt::Key_F18 : - return osgGA::GUIEventAdapter::KEY_F18; - case Qt::Key_F19 : - return osgGA::GUIEventAdapter::KEY_F19; - case Qt::Key_F20 : - return osgGA::GUIEventAdapter::KEY_F20; - case Qt::Key_F21 : - return osgGA::GUIEventAdapter::KEY_F21; - case Qt::Key_F22 : - return osgGA::GUIEventAdapter::KEY_F22; - case Qt::Key_F23 : - return osgGA::GUIEventAdapter::KEY_F23; - case Qt::Key_F24 : - return osgGA::GUIEventAdapter::KEY_F24; - case Qt::Key_F25 : - return osgGA::GUIEventAdapter::KEY_F25; - case Qt::Key_F26 : - return osgGA::GUIEventAdapter::KEY_F26; - case Qt::Key_F27 : - return osgGA::GUIEventAdapter::KEY_F27; - case Qt::Key_F28 : - return osgGA::GUIEventAdapter::KEY_F28; - case Qt::Key_F29 : - return osgGA::GUIEventAdapter::KEY_F29; - case Qt::Key_F30 : - return osgGA::GUIEventAdapter::KEY_F30; - case Qt::Key_F31 : - return osgGA::GUIEventAdapter::KEY_F31; - case Qt::Key_F32 : - return osgGA::GUIEventAdapter::KEY_F32; - case Qt::Key_F33 : - return osgGA::GUIEventAdapter::KEY_F33; - case Qt::Key_F34 : - return osgGA::GUIEventAdapter::KEY_F34; - case Qt::Key_F35 : - return osgGA::GUIEventAdapter::KEY_F35; - case Qt::Key_Shift : - return osgGA::GUIEventAdapter::KEY_Shift_L; -// case Qt::Key_Shift_R : return osgGA::GUIEventAdapter::KEY_Shift_R; - case Qt::Key_Control : - return osgGA::GUIEventAdapter::KEY_Control_L; -// case Qt::Key_Control_R : return osgGA::GUIEventAdapter::KEY_Control_R; - case Qt::Key_CapsLock : - return osgGA::GUIEventAdapter::KEY_Caps_Lock; - case Qt::Key_Meta : - return osgGA::GUIEventAdapter::KEY_Meta_L; -// case Qt::Key_Meta_R: return osgGA::GUIEventAdapter::KEY_Meta_R; - case Qt::Key_Alt : - return osgGA::GUIEventAdapter::KEY_Alt_L; -// case Qt::Key_Alt_R : return osgGA::GUIEventAdapter::KEY_Alt_R; - case Qt::Key_Super_L : - return osgGA::GUIEventAdapter::KEY_Super_L; - case Qt::Key_Super_R : - return osgGA::GUIEventAdapter::KEY_Super_R; - case Qt::Key_Hyper_L : - return osgGA::GUIEventAdapter::KEY_Hyper_L; - case Qt::Key_Hyper_R : - return osgGA::GUIEventAdapter::KEY_Hyper_R; - default: - return static_cast(key); - } -} - -bool -Q3DWidget::planeLineIntersection(const osg::Vec4d& plane, - const osg::LineSegment& line, - osg::Vec3d& isect) const -{ - osg::Vec3d lineStart = line.start(); - osg::Vec3d lineEnd = line.end(); - - const double deltaX = lineEnd.x() - lineStart.x(); - const double deltaY = lineEnd.y() - lineStart.y(); - const double deltaZ = lineEnd.z() - lineStart.z(); - - const double denominator = plane[0] * deltaX - + plane[1] * deltaY - + plane[2] * deltaZ; - if (!denominator) - { - return false; - } - - const double C = (plane[0] * lineStart.x() - + plane[1] * lineStart.y() - + plane[2] * lineStart.z() - + plane[3]) / denominator; - - isect.x() = lineStart.x() - deltaX * C; - isect.y() = lineStart.y() - deltaY * C; - isect.z() = lineStart.z() - deltaZ * C; - - return true; -} diff --git a/src/ui/map3D/Q3DWidget.h b/src/ui/map3D/Q3DWidget.h deleted file mode 100644 index 245559e11bf880628572fb6ff729a72933cc4b8d..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Q3DWidget.h +++ /dev/null @@ -1,279 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Q3DWidget. - * - * @author Lionel Heng - * - */ - -#ifndef Q3DWIDGET_H -#define Q3DWIDGET_H - -#include -#include - -#include -#include -#include -#include - -// OpenSceneGraph has overloaded virtuals defined, since third party code we silence the warnings when the -// headers are used. -#ifndef Q_OS_WIN -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Woverloaded-virtual" -#endif - -#include - -#ifndef Q_OS_WIN -#pragma GCC diagnostic pop -#endif - -#include "CameraParams.h" -#include "GCManipulator.h" -#include "SystemGroupNode.h" - -/** - * @brief Definition of the class Q3DWidget. - * The Q3DWidget widget uses the OpenSceneGraph framework to render - * user-defined objects in 3D. The world coordinate system in OSG is defined: - * - x-axis points to the east - * - y-axis points to the north - * - z-axis points upwards - */ -class Q3DWidget : public QGLWidget, public osgViewer::Viewer -{ - Q_OBJECT - -public: - /** - * Constructor. - * @param parent Parent widget. - */ - Q3DWidget(QWidget* parent = 0); - - /** - * Destructor. - */ - virtual ~Q3DWidget(); - - /** - * @brief Initializes the widget. - * @param fps Frames per second. - */ - void init(float fps); - - /** - * @brief Sets the camera parameters. - * @param minZoomRange Minimum distance from the viewer to the camera. - * @param cameraFov Camera field of view. - * @param minClipRange Distance from the viewer to the near clipping range. - * @param maxClipRange Distance from the viewer to the far clipping range. - */ - void setCameraParams(float minZoomRange, float cameraFov, - float minClipRange, float maxClipRange); - - /** - * @brief Moves the camera by [dx,dy,dz]. - * @param dx Translation along the x-axis in meters. - * @param dy Translation along the y-axis in meters. - * @param dz Translation along the z-axis in meters. - */ - void moveCamera(double dx, double dy, double dz); - - /** - * @brief Recenters the camera at (x,y,z). - */ - void recenterCamera(double x, double y, double z); - - /** - * @brief Rotates the camera. - */ - void rotateCamera(double roll, double pitch, double yaw); - - /** - * @brief Sets the camera distance. - */ - void setCameraDistance(double distance); - - /** - * @brief Sets up 3D display mode. - */ - void setDisplayMode3D(void); - - osg::ref_ptr& hudGroup(void); - - /** - * @brief Get screen coordinates of mouse cursor. - * @return screen coordinates of mouse cursor. - */ - QPoint mouseCursorCoords(void); - - /** - * @brief Gets the world 3D coordinates of the cursor. - * The function projects the 2D cursor position to a line in world space - * and returns the intersection of that line and the horizontal plane - * which contains the point (0, 0, z); - * @param cursorX x-coordinate of the cursor. - * @param cursorY y-coordinate of the cursor. - * @param worldZ z-coordinate of the point in the plane. - * @return World (x,y) cursor coordinates. - */ - QPointF worldCursorPosition(const QPoint& cursorPos, double worldZ) const; - - CameraParams& cameraParams(void); - - osg::ref_ptr& cameraManipulator(void); - - osg::ref_ptr& font(void); - - osg::ref_ptr& worldMap(void); - osg::ref_ptr& systemGroup(int systemId); - - bool& handleDeviceEvents(void); - - void handleKeyPressEvent(QKeyEvent* event); - - void handleKeyReleaseEvent(QKeyEvent* event); - - void handleMousePressEvent(QMouseEvent* event); - - void handleMouseReleaseEvent(QMouseEvent* event); - - void handleMouseMoveEvent(QMouseEvent* event); - - void handleWheelEvent(QWheelEvent* event); - -protected slots: - /** - * @brief Updates the widget. - */ - void redraw(void); - -signals: - void sizeChanged(int width, int height); - void updateWidget(void); - -protected: - /** - * @brief Handle widget resize event. - * @param width New width of widget. - * @param height New height of widget. - */ - virtual void resizeGL(int width, int height); - - /** - * @brief Processes key press events. - * @param event Key press event. - */ - virtual void keyPressEvent(QKeyEvent* event); - - /** - * @brief Processes key release events. - * @param event Key release event. - */ - virtual void keyReleaseEvent(QKeyEvent* event); - - /** - * @brief Processes mouse press events. - * @param event Mouse press event. - */ - virtual void mousePressEvent(QMouseEvent* event); - - /** - * @brief Processes mouse release events. - * @param event Mouse release event. - */ - virtual void mouseReleaseEvent(QMouseEvent* event); - - /** - * @brief Processes mouse move events. - * @param event Mouse move event. - */ - virtual void mouseMoveEvent(QMouseEvent* event); - - /** - * @brief Processes mouse wheel events. - * @param event Mouse wheel event. - */ - virtual void wheelEvent(QWheelEvent* event); - - /** @brief Start widget updating */ - void showEvent(QShowEvent* event); - /** @brief Stop widget updating */ - void hideEvent(QHideEvent* event); - - /** - * @brief Get base HUD geode. - * @return Smart pointer to the geode. - */ - osg::ref_ptr createHUD(void); - - /** - * @brief Handle widget paint event. - */ - virtual void paintGL(void); - - /** - * @brief Converts Qt-defined key to OSG-defined key. - * @param key Qt-defined key. - * @return OSG-defined key. - */ - osgGA::GUIEventAdapter::KeySymbol convertKey(int key) const; - - /** - * @brief Computes intersection of line and plane. - * @param plane Vector which represents the plane. - * @param line Line representation. - * @return 3D point which lies at the intersection of the line and plane. - */ - bool planeLineIntersection(const osg::Vec4d& plane, - const osg::LineSegment& line, - osg::Vec3d& isect) const; - - bool mHandleDeviceEvents; - - osg::ref_ptr mRoot; /**< Root node of scene graph. */ - osg::ref_ptr mWorldMap; - QMap > mSystemGroups; - - osg::ref_ptr mHudGroup; /**< A group which contains renderable HUD objects. */ - osg::ref_ptr mHudProjectionMatrix; /**< An orthographic projection matrix for HUD display. */ - - osg::ref_ptr mOsgGW; /**< A class which manages OSG graphics windows and events. */ - - osg::ref_ptr mCameraManipulator; /**< Camera manipulator. */ - - QTimer mTimer; /**< Timer which draws graphics based on specified fps. */ - - CameraParams mCameraParams; /**< Struct representing camera parameters. */ - float mFps; - - osg::ref_ptr mFont; -}; - -#endif // Q3DWIDGET_H diff --git a/src/ui/map3D/Q3DWidgetFactory.cc b/src/ui/map3D/Q3DWidgetFactory.cc deleted file mode 100644 index 234e5adccaa35bcc0ad86026f558275c2dcd56e6..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Q3DWidgetFactory.cc +++ /dev/null @@ -1,48 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Q3DWidgetFactory. - * - * @author Lionel Heng - * - */ - -#include "Q3DWidgetFactory.h" - -#include "Pixhawk3DWidget.h" -#ifdef QGC_OSGEARTH_ENABLED -#include "QMap3D.h" -#endif - -QPointer -Q3DWidgetFactory::get(const std::string& type, QWidget* parent) -{ - if (type == "PIXHAWK") { - return QPointer(new Pixhawk3DWidget(parent)); - } - else { - return QPointer(new Q3DWidget(parent)); - } -} diff --git a/src/ui/map3D/Q3DWidgetFactory.h b/src/ui/map3D/Q3DWidgetFactory.h deleted file mode 100644 index 83647795526baa4915cc60d48e3869a42c06e36a..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Q3DWidgetFactory.h +++ /dev/null @@ -1,56 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Q3DWidgetFactory. - * - * @author Lionel Heng - * - */ - -#ifndef Q3DWIDGETFACTORY_H -#define Q3DWIDGETFACTORY_H - -#include - -#include "Q3DWidget.h" - -/** - * @brief A factory which creates project-specific 3D widgets without - * specifying the exact widget class. - */ - -class Q3DWidgetFactory -{ -public: - /** - * @brief Returns a Q3DWidget instance of the appropriate type. - * @param type String specifying the required type name. - * @return A smart pointer to the Q3DWidget instance. - */ - - static QPointer get(const std::string& type, QWidget* parent); -}; - -#endif // Q3DWIDGETFACTORY_H diff --git a/src/ui/map3D/QGCGlut.h b/src/ui/map3D/QGCGlut.h deleted file mode 100644 index 8785c67bf1001a838a6fac06656d89aa56995607..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QGCGlut.h +++ /dev/null @@ -1,637 +0,0 @@ -#ifndef QGCGLUT_H -#define QGCGLUT_H - - -/* Copyright (c) Mark J. Kilgard, 1994, 1997. */ - -/** -(c) Copyright 1993, Silicon Graphics, Inc. - -ALL RIGHTS RESERVED - -Permission to use, copy, modify, and distribute this software -for any purpose and without fee is hereby granted, provided -that the above copyright notice appear in all copies and that -both the copyright notice and this permission notice appear in -supporting documentation, and that the name of Silicon -Graphics, Inc. not be used in advertising or publicity -pertaining to distribution of the software without specific, -written prior permission. - -THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU -"AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR -OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF -MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO -EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE -ELSE FOR ANY DIRECT, SPECIAL, INCIDENTAL, INDIRECT OR -CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER, -INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF USE, -SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR -NOT SILICON GRAPHICS, INC. HAS BEEN ADVISED OF THE POSSIBILITY -OF SUCH LOSS, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -ARISING OUT OF OR IN CONNECTION WITH THE POSSESSION, USE OR -PERFORMANCE OF THIS SOFTWARE. - -US Government Users Restricted Rights - -Use, duplication, or disclosure by the Government is subject to -restrictions set forth in FAR 52.227.19(c)(2) or subparagraph -(c)(1)(ii) of the Rights in Technical Data and Computer -Software clause at DFARS 252.227-7013 and/or in similar or -successor clauses in the FAR or the DOD or NASA FAR -Supplement. Unpublished-- rights reserved under the copyright -laws of the United States. Contractor/manufacturer is Silicon -Graphics, Inc., 2011 N. Shoreline Blvd., Mountain View, CA -94039-7311. - -OpenGL(TM) is a trademark of Silicon Graphics, Inc. -*/ - -#include -#include "OpenGL/glu.h" - -namespace sgi -{ - -/* Some files do not define M_PI... */ -#ifndef M_PI -#define M_PI 3.14159265358979323846 -#endif - -static GLUquadricObj *quadObj; - -#define QUAD_OBJ_INIT() { if(!quadObj) initQuadObj(); } - -static void -initQuadObj(void) -{ - quadObj = gluNewQuadric(); - if (!quadObj) - printf("out of memory."); -} - -/* CENTRY */ -void -glutWireSphere(GLdouble radius, GLint slices, GLint stacks) -{ - QUAD_OBJ_INIT(); - gluQuadricDrawStyle(quadObj, GLU_LINE); - gluQuadricNormals(quadObj, GLU_SMOOTH); - /* If we ever changed/used the texture or orientation state - of quadObj, we'd need to change it to the defaults here - with gluQuadricTexture and/or gluQuadricOrientation. */ - gluSphere(quadObj, radius, slices, stacks); -} - -void -glutSolidSphere(GLdouble radius, GLint slices, GLint stacks) -{ - QUAD_OBJ_INIT(); - gluQuadricDrawStyle(quadObj, GLU_FILL); - gluQuadricNormals(quadObj, GLU_SMOOTH); - /* If we ever changed/used the texture or orientation state - of quadObj, we'd need to change it to the defaults here - with gluQuadricTexture and/or gluQuadricOrientation. */ - gluSphere(quadObj, radius, slices, stacks); -} - -void -glutWireCone(GLdouble base, GLdouble height, - GLint slices, GLint stacks) -{ - QUAD_OBJ_INIT(); - gluQuadricDrawStyle(quadObj, GLU_LINE); - gluQuadricNormals(quadObj, GLU_SMOOTH); - /* If we ever changed/used the texture or orientation state - of quadObj, we'd need to change it to the defaults here - with gluQuadricTexture and/or gluQuadricOrientation. */ - gluCylinder(quadObj, base, 0.0, height, slices, stacks); -} - -void -glutSolidCone(GLdouble base, GLdouble height, - GLint slices, GLint stacks) -{ - QUAD_OBJ_INIT(); - gluQuadricDrawStyle(quadObj, GLU_FILL); - gluQuadricNormals(quadObj, GLU_SMOOTH); - /* If we ever changed/used the texture or orientation state - of quadObj, we'd need to change it to the defaults here - with gluQuadricTexture and/or gluQuadricOrientation. */ - gluCylinder(quadObj, base, 0.0, height, slices, stacks); -} - -/* ENDCENTRY */ - -static void -drawBox(GLfloat size, GLenum type) -{ - static GLfloat n[6][3] = { - {-1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, - {1.0, 0.0, 0.0}, - {0.0, -1.0, 0.0}, - {0.0, 0.0, 1.0}, - {0.0, 0.0, -1.0} - }; - static GLint faces[6][4] = { - {0, 1, 2, 3}, - {3, 2, 6, 7}, - {7, 6, 5, 4}, - {4, 5, 1, 0}, - {5, 6, 2, 1}, - {7, 4, 0, 3} - }; - GLfloat v[8][3]; - GLint i; - - v[0][0] = v[1][0] = v[2][0] = v[3][0] = -size / 2; - v[4][0] = v[5][0] = v[6][0] = v[7][0] = size / 2; - v[0][1] = v[1][1] = v[4][1] = v[5][1] = -size / 2; - v[2][1] = v[3][1] = v[6][1] = v[7][1] = size / 2; - v[0][2] = v[3][2] = v[4][2] = v[7][2] = -size / 2; - v[1][2] = v[2][2] = v[5][2] = v[6][2] = size / 2; - - for (i = 5; i >= 0; i--) { - glBegin(type); - glNormal3fv(&n[i][0]); - glVertex3fv(&v[faces[i][0]][0]); - glVertex3fv(&v[faces[i][1]][0]); - glVertex3fv(&v[faces[i][2]][0]); - glVertex3fv(&v[faces[i][3]][0]); - glEnd(); - } -} - -/* CENTRY */ -void -glutWireCube(GLdouble size) -{ - drawBox(size, GL_LINE_LOOP); -} - -void -glutSolidCube(GLdouble size) -{ - drawBox(size, GL_QUADS); -} - -/* ENDCENTRY */ - -static void -doughnut(GLfloat r, GLfloat R, GLint nsides, GLint rings) -{ - int i, j; - GLfloat theta, phi, theta1; - GLfloat cosTheta, sinTheta; - GLfloat cosTheta1, sinTheta1; - GLfloat ringDelta, sideDelta; - - ringDelta = 2.0 * M_PI / rings; - sideDelta = 2.0 * M_PI / nsides; - - theta = 0.0; - cosTheta = 1.0; - sinTheta = 0.0; - for (i = rings - 1; i >= 0; i--) { - theta1 = theta + ringDelta; - cosTheta1 = cos(theta1); - sinTheta1 = sin(theta1); - glBegin(GL_QUAD_STRIP); - phi = 0.0; - for (j = nsides; j >= 0; j--) { - GLfloat cosPhi, sinPhi, dist; - - phi += sideDelta; - cosPhi = cos(phi); - sinPhi = sin(phi); - dist = R + r * cosPhi; - - glNormal3f(cosTheta1 * cosPhi, -sinTheta1 * cosPhi, sinPhi); - glVertex3f(cosTheta1 * dist, -sinTheta1 * dist, r * sinPhi); - glNormal3f(cosTheta * cosPhi, -sinTheta * cosPhi, sinPhi); - glVertex3f(cosTheta * dist, -sinTheta * dist, r * sinPhi); - } - glEnd(); - theta = theta1; - cosTheta = cosTheta1; - sinTheta = sinTheta1; - } -} - -/* CENTRY */ -void -glutWireTorus(GLdouble innerRadius, GLdouble outerRadius, - GLint nsides, GLint rings) -{ - glPushAttrib(GL_POLYGON_BIT); - glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); - doughnut(innerRadius, outerRadius, nsides, rings); - glPopAttrib(); -} - -void -glutSolidTorus(GLdouble innerRadius, GLdouble outerRadius, - GLint nsides, GLint rings) -{ - doughnut(innerRadius, outerRadius, nsides, rings); -} - -/* ENDCENTRY */ - -static GLfloat dodec[20][3]; - -static void -initDodecahedron(void) -{ - GLfloat alpha, beta; - - alpha = sqrt(2.0 / (3.0 + sqrt(5.0))); - beta = 1.0 + sqrt(6.0 / (3.0 + sqrt(5.0)) - - 2.0 + 2.0 * sqrt(2.0 / (3.0 + sqrt(5.0)))); - /* *INDENT-OFF* */ - dodec[0][0] = -alpha; - dodec[0][1] = 0; - dodec[0][2] = beta; - dodec[1][0] = alpha; - dodec[1][1] = 0; - dodec[1][2] = beta; - dodec[2][0] = -1; - dodec[2][1] = -1; - dodec[2][2] = -1; - dodec[3][0] = -1; - dodec[3][1] = -1; - dodec[3][2] = 1; - dodec[4][0] = -1; - dodec[4][1] = 1; - dodec[4][2] = -1; - dodec[5][0] = -1; - dodec[5][1] = 1; - dodec[5][2] = 1; - dodec[6][0] = 1; - dodec[6][1] = -1; - dodec[6][2] = -1; - dodec[7][0] = 1; - dodec[7][1] = -1; - dodec[7][2] = 1; - dodec[8][0] = 1; - dodec[8][1] = 1; - dodec[8][2] = -1; - dodec[9][0] = 1; - dodec[9][1] = 1; - dodec[9][2] = 1; - dodec[10][0] = beta; - dodec[10][1] = alpha; - dodec[10][2] = 0; - dodec[11][0] = beta; - dodec[11][1] = -alpha; - dodec[11][2] = 0; - dodec[12][0] = -beta; - dodec[12][1] = alpha; - dodec[12][2] = 0; - dodec[13][0] = -beta; - dodec[13][1] = -alpha; - dodec[13][2] = 0; - dodec[14][0] = -alpha; - dodec[14][1] = 0; - dodec[14][2] = -beta; - dodec[15][0] = alpha; - dodec[15][1] = 0; - dodec[15][2] = -beta; - dodec[16][0] = 0; - dodec[16][1] = beta; - dodec[16][2] = alpha; - dodec[17][0] = 0; - dodec[17][1] = beta; - dodec[17][2] = -alpha; - dodec[18][0] = 0; - dodec[18][1] = -beta; - dodec[18][2] = alpha; - dodec[19][0] = 0; - dodec[19][1] = -beta; - dodec[19][2] = -alpha; - /* *INDENT-ON* */ - -} - -#define DIFF3(_a,_b,_c) { \ - (_c)[0] = (_a)[0] - (_b)[0]; \ - (_c)[1] = (_a)[1] - (_b)[1]; \ - (_c)[2] = (_a)[2] - (_b)[2]; \ -} - -static void -crossprod(GLfloat v1[3], GLfloat v2[3], GLfloat prod[3]) -{ - GLfloat p[3]; /* in case prod == v1 or v2 */ - - p[0] = v1[1] * v2[2] - v2[1] * v1[2]; - p[1] = v1[2] * v2[0] - v2[2] * v1[0]; - p[2] = v1[0] * v2[1] - v2[0] * v1[1]; - prod[0] = p[0]; - prod[1] = p[1]; - prod[2] = p[2]; -} - -static void -normalize(GLfloat v[3]) -{ - GLfloat d; - - d = sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]); - if (d == 0.0) { - printf("normalize: zero length vector"); - v[0] = d = 1.0; - } - d = 1 / d; - v[0] *= d; - v[1] *= d; - v[2] *= d; -} - -static void -pentagon(int a, int b, int c, int d, int e, GLenum shadeType) -{ - GLfloat n0[3], d1[3], d2[3]; - - DIFF3(dodec[a], dodec[b], d1); - DIFF3(dodec[b], dodec[c], d2); - crossprod(d1, d2, n0); - normalize(n0); - - glBegin(shadeType); - glNormal3fv(n0); - glVertex3fv(&dodec[a][0]); - glVertex3fv(&dodec[b][0]); - glVertex3fv(&dodec[c][0]); - glVertex3fv(&dodec[d][0]); - glVertex3fv(&dodec[e][0]); - glEnd(); -} - -static void -dodecahedron(GLenum type) -{ - static int inited = 0; - - if (inited == 0) { - inited = 1; - initDodecahedron(); - } - pentagon(0, 1, 9, 16, 5, type); - pentagon(1, 0, 3, 18, 7, type); - pentagon(1, 7, 11, 10, 9, type); - pentagon(11, 7, 18, 19, 6, type); - pentagon(8, 17, 16, 9, 10, type); - pentagon(2, 14, 15, 6, 19, type); - pentagon(2, 13, 12, 4, 14, type); - pentagon(2, 19, 18, 3, 13, type); - pentagon(3, 0, 5, 12, 13, type); - pentagon(6, 15, 8, 10, 11, type); - pentagon(4, 17, 8, 15, 14, type); - pentagon(4, 12, 5, 16, 17, type); -} - -/* CENTRY */ -void -glutWireDodecahedron(void) -{ - dodecahedron(GL_LINE_LOOP); -} - -void -glutSolidDodecahedron(void) -{ - dodecahedron(GL_TRIANGLE_FAN); -} - -/* ENDCENTRY */ - -static void -recorditem(GLfloat * n1, GLfloat * n2, GLfloat * n3, - GLenum shadeType) -{ - GLfloat q0[3], q1[3]; - - DIFF3(n1, n2, q0); - DIFF3(n2, n3, q1); - crossprod(q0, q1, q1); - normalize(q1); - - glBegin(shadeType); - glNormal3fv(q1); - glVertex3fv(n1); - glVertex3fv(n2); - glVertex3fv(n3); - glEnd(); -} - -static void -subdivide(GLfloat * v0, GLfloat * v1, GLfloat * v2, - GLenum shadeType) -{ - int depth; - GLfloat w0[3], w1[3], w2[3]; - GLfloat l; - int i, j, k, n; - - depth = 1; - for (i = 0; i < depth; i++) { - for (j = 0; i + j < depth; j++) { - k = depth - i - j; - for (n = 0; n < 3; n++) { - w0[n] = (i * v0[n] + j * v1[n] + k * v2[n]) / depth; - w1[n] = ((i + 1) * v0[n] + j * v1[n] + (k - 1) * v2[n]) - / depth; - w2[n] = (i * v0[n] + (j + 1) * v1[n] + (k - 1) * v2[n]) - / depth; - } - l = sqrt(w0[0] * w0[0] + w0[1] * w0[1] + w0[2] * w0[2]); - w0[0] /= l; - w0[1] /= l; - w0[2] /= l; - l = sqrt(w1[0] * w1[0] + w1[1] * w1[1] + w1[2] * w1[2]); - w1[0] /= l; - w1[1] /= l; - w1[2] /= l; - l = sqrt(w2[0] * w2[0] + w2[1] * w2[1] + w2[2] * w2[2]); - w2[0] /= l; - w2[1] /= l; - w2[2] /= l; - recorditem(w1, w0, w2, shadeType); - } - } -} - -static void -drawtriangle(int i, GLfloat data[][3], int ndx[][3], - GLenum shadeType) -{ - GLfloat *x0, *x1, *x2; - - x0 = data[ndx[i][0]]; - x1 = data[ndx[i][1]]; - x2 = data[ndx[i][2]]; - subdivide(x0, x1, x2, shadeType); -} - -/* octahedron data: The octahedron produced is centered at the - origin and has radius 1.0 */ -static GLfloat odata[6][3] = { - {1.0, 0.0, 0.0}, - {-1.0, 0.0, 0.0}, - {0.0, 1.0, 0.0}, - {0.0, -1.0, 0.0}, - {0.0, 0.0, 1.0}, - {0.0, 0.0, -1.0} -}; - -static int ondex[8][3] = { - {0, 4, 2}, - {1, 2, 4}, - {0, 3, 4}, - {1, 4, 3}, - {0, 2, 5}, - {1, 5, 2}, - {0, 5, 3}, - {1, 3, 5} -}; - -static void -octahedron(GLenum shadeType) -{ - int i; - - for (i = 7; i >= 0; i--) { - drawtriangle(i, odata, ondex, shadeType); - } -} - -/* CENTRY */ -void -glutWireOctahedron(void) -{ - octahedron(GL_LINE_LOOP); -} - -void -glutSolidOctahedron(void) -{ - octahedron(GL_TRIANGLES); -} - -/* ENDCENTRY */ - -/* icosahedron data: These numbers are rigged to make an - icosahedron of radius 1.0 */ - -#define X .525731112119133606 -#define Z .850650808352039932 - -static GLfloat idata[12][3] = { - {-X, 0, Z}, - {X, 0, Z}, - {-X, 0, -Z}, - {X, 0, -Z}, - {0, Z, X}, - {0, Z, -X}, - {0, -Z, X}, - {0, -Z, -X}, - {Z, X, 0}, - {-Z, X, 0}, - {Z, -X, 0}, - {-Z, -X, 0} -}; - -static int indextetra[20][3] = { - {0, 4, 1}, - {0, 9, 4}, - {9, 5, 4}, - {4, 5, 8}, - {4, 8, 1}, - {8, 10, 1}, - {8, 3, 10}, - {5, 3, 8}, - {5, 2, 3}, - {2, 7, 3}, - {7, 10, 3}, - {7, 6, 10}, - {7, 11, 6}, - {11, 0, 6}, - {0, 1, 6}, - {6, 1, 10}, - {9, 0, 11}, - {9, 11, 2}, - {9, 2, 5}, - {7, 2, 11}, -}; - -static void -icosahedron(GLenum shadeType) -{ - int i; - - for (i = 19; i >= 0; i--) { - drawtriangle(i, idata, indextetra, shadeType); - } -} - -/* CENTRY */ -void -glutWireIcosahedron(void) -{ - icosahedron(GL_LINE_LOOP); -} - -void -glutSolidIcosahedron(void) -{ - icosahedron(GL_TRIANGLES); -} - -/* ENDCENTRY */ - -/* tetrahedron data: */ - -#define T 1.73205080756887729 - -static GLfloat tdata[4][3] = { - {T, T, T}, - {T, -T, -T}, - {-T, T, -T}, - {-T, -T, T} -}; - -static int tndex[4][3] = { - {0, 1, 3}, - {2, 1, 0}, - {3, 2, 0}, - {1, 2, 3} -}; - -static void -tetrahedron(GLenum shadeType) -{ - int i; - - for (i = 3; i >= 0; i--) - drawtriangle(i, tdata, tndex, shadeType); -} - -/* CENTRY */ -void -glutWireTetrahedron(void) -{ - tetrahedron(GL_LINE_LOOP); -} - -void -glutSolidTetrahedron(void) -{ - tetrahedron(GL_TRIANGLES); -} - -/* ENDCENTRY */ -} - -#endif // QGCGLUT_H diff --git a/src/ui/map3D/QGCGoogleEarthView.cc b/src/ui/map3D/QGCGoogleEarthView.cc deleted file mode 100644 index 059844e5c76737143510989103048238304cd964..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QGCGoogleEarthView.cc +++ /dev/null @@ -1,753 +0,0 @@ -#include -#include -#include -#include -#include - -#include -#include -#include -#include "UASManager.h" - -#ifdef Q_OS_MAC -#include -#include -#include -#include "QGCWebPage.h" -#endif - -#ifdef _MSC_VER -#include -#include -#include -#include -#include -#endif - -#include "QGC.h" -#include "ui_QGCGoogleEarthView.h" -#include "QGCGoogleEarthView.h" -#include "UASWaypointManager.h" - -#define QGCGOOGLEEARTHVIEWSETTINGS QString("GoogleEarthViewSettings_") - -QGCGoogleEarthView::QGCGoogleEarthView(QWidget *parent) : - QWidget(parent), - updateTimer(new QTimer(this)), - refreshRateMs(100), - mav(NULL), - followCamera(true), - trailEnabled(true), - webViewInitialized(false), - jScriptInitialized(false), - gEarthInitialized(false), - currentViewMode(QGCGoogleEarthView::VIEW_MODE_SIDE), -#if (defined Q_OS_MAC) - webViewMac(new QWebView(this)), -#endif -#ifdef _MSC_VER - webViewWin(new QGCWebAxWidget(this)), - documentWin(NULL), -#endif - ui(new Ui::QGCGoogleEarthView) -{ -#ifdef _MSC_VER - // Create layout and attach webViewWin - -// QFile file("doc.html"); -// if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) -// qDebug() << __FILE__ << __LINE__ << "Could not open log file"; - -// QTextStream out(&file); -// out << webViewWin->generateDocumentation(); -// out.flush(); -// file.flush(); -// file.close(); - - -#else -#endif - - // Load settings - QSettings settings; - followCamera = settings.value(QGCGOOGLEEARTHVIEWSETTINGS + "follow", followCamera).toBool(); - trailEnabled = settings.value(QGCGOOGLEEARTHVIEWSETTINGS + "trail", trailEnabled).toBool(); - - ui->setupUi(this); -#if (defined Q_OS_MAC) - ui->webViewLayout->addWidget(webViewMac); - //connect(webViewMac, SIGNAL(loadFinished(bool)), this, SLOT(initializeGoogleEarth(bool))); -#endif - -#ifdef _MSC_VER - ui->webViewLayout->addWidget(webViewWin); -#endif - - connect(updateTimer, SIGNAL(timeout()), this, SLOT(updateState())); - connect(ui->resetButton, SIGNAL(clicked()), this, SLOT(reloadHTML())); - connect(ui->changeViewButton, SIGNAL(clicked()), this, SLOT(toggleViewMode())); - connect(ui->clearTrailsButton, SIGNAL(clicked()), this, SLOT(clearTrails())); - connect(ui->atmosphereCheckBox, SIGNAL(clicked(bool)), this, SLOT(enableAtmosphere(bool))); - connect(ui->daylightCheckBox, SIGNAL(clicked(bool)), this, SLOT(enableDaylight(bool))); - - connect(UASManager::instance(), SIGNAL(homePositionChanged(double,double,double)), this, SLOT(setHome(double,double,double))); -} - -QGCGoogleEarthView::~QGCGoogleEarthView() -{ - QSettings settings; - settings.setValue(QGCGOOGLEEARTHVIEWSETTINGS + "follow", followCamera); - settings.setValue(QGCGOOGLEEARTHVIEWSETTINGS + "trail", trailEnabled); - settings.sync(); -#if (defined Q_OS_MAC) - delete webViewMac; -#endif -#ifdef _MSC_VER - delete webViewWin; -#endif - delete ui; -} - -/** - * @param range in centimeters - */ -void QGCGoogleEarthView::setViewRangeScaledInt(int range) -{ - setViewRange(range/100.0f); -} - -void QGCGoogleEarthView::reloadHTML() -{ - hide(); - webViewInitialized = false; - jScriptInitialized = false; - gEarthInitialized = false; - show(); -} - -void QGCGoogleEarthView::enableEditMode(bool mode) -{ - javaScript(QString("setDraggingAllowed(%1);").arg(mode)); -} - -void QGCGoogleEarthView::enableDaylight(bool enable) -{ - javaScript(QString("enableDaylight(%1);").arg(enable)); -} - -void QGCGoogleEarthView::enableAtmosphere(bool enable) -{ - javaScript(QString("enableAtmosphere(%1);").arg(enable)); -} - -/** - * @param range in meters (SI-units) - */ -void QGCGoogleEarthView::setViewRange(float range) -{ - javaScript(QString("setViewRange(%1);").arg(range, 0, 'f', 5)); -} - -void QGCGoogleEarthView::setDistanceMode(int mode) -{ - javaScript(QString("setDistanceMode(%1);").arg(mode)); -} - -void QGCGoogleEarthView::toggleViewMode() -{ - switch (currentViewMode) { - case VIEW_MODE_MAP: - setViewMode(VIEW_MODE_SIDE); - break; - case VIEW_MODE_SIDE: - setViewMode(VIEW_MODE_MAP); - break; - case VIEW_MODE_CHASE_LOCKED: - setViewMode(VIEW_MODE_CHASE_FREE); - break; - case VIEW_MODE_CHASE_FREE: - setViewMode(VIEW_MODE_CHASE_LOCKED); - break; - } -} - -void QGCGoogleEarthView::setViewMode(QGCGoogleEarthView::VIEW_MODE mode) -{ - switch (mode) { - case VIEW_MODE_MAP: - ui->changeViewButton->setText("Free View"); - break; - case VIEW_MODE_SIDE: - ui->changeViewButton->setText("Map View"); - break; - case VIEW_MODE_CHASE_LOCKED: - ui->changeViewButton->setText("Free Chase"); - break; - case VIEW_MODE_CHASE_FREE: - ui->changeViewButton->setText("Fixed Chase"); - break; - } - currentViewMode = mode; - javaScript(QString("setViewMode(%1);").arg(mode)); -} - -void QGCGoogleEarthView::addUAS(UASInterface* uas) -{ - // uasid, type, color (in #rrbbgg format) - QString uasColor = uas->getColor().name().remove(0, 1); - // Convert to bbggrr format - QString rChannel = uasColor.mid(0, 2); - uasColor.remove(0, 2); - uasColor.prepend(rChannel); - // Set alpha value to 0x66, append JavaScript quotes ('') - uasColor.prepend("'66").append("'"); - javaScript(QString("createAircraft(%1, %2, %3);").arg(uas->getUASID()).arg(uas->getSystemType()).arg(uasColor)); - - if (trailEnabled) javaScript(QString("showTrail(%1);").arg(uas->getUASID())); - - // Automatically receive further position updates - connect(uas, SIGNAL(globalPositionChanged(UASInterface*,double,double,double,double,quint64)), this, SLOT(updateGlobalPosition(UASInterface*,double,double,double,double,quint64))); - // Receive waypoint updates - // Connect the waypoint manager / data storage to the UI - connect(uas->getWaypointManager(), SIGNAL(waypointEditableListChanged(int)), this, SLOT(updateWaypointList(int))); - connect(uas->getWaypointManager(), SIGNAL(waypointEditableChanged(int, Waypoint*)), this, SLOT(updateWaypoint(int,Waypoint*))); - //connect(this, SIGNAL(waypointCreated(Waypoint*)), uas->getWaypointManager(), SLOT(addWaypointEditable(Waypoint*))); - // TODO Update waypoint list on UI changes here -} - -void QGCGoogleEarthView::setActiveUAS(UASInterface* uas) -{ - if (uas) - { - mav = uas; - javaScript(QString("setCurrAircraft(%1);").arg(uas->getUASID())); - updateWaypointList(uas->getUASID()); - } -} - -/** - * This function is called if a a single waypoint is updated and - * also if the whole list changes. - */ -void QGCGoogleEarthView::updateWaypoint(int uas, Waypoint* wp) -{ - // Only accept waypoints in global coordinate frame - if ((wp->getFrame() == MAV_FRAME_GLOBAL || wp->getFrame() == MAV_FRAME_GLOBAL_RELATIVE_ALT) && wp->isNavigationType()) - { - // We're good, this is a global waypoint - - // Get the index of this waypoint - // note the call to getGlobalFrameAndNavTypeIndexOf() - // as we're only handling global waypoints - int wpindex = UASManager::instance()->getUASForId(uas)->getWaypointManager()->getGlobalFrameAndNavTypeIndexOf(wp); - // If not found, return (this should never happen, but helps safety) - if (wpindex == -1) - { - return; - } - else - { - javaScript(QString("updateWaypoint(%1,%2,%3,%4,%5,%6);").arg(uas).arg(wpindex).arg(wp->getLatitude(), 0, 'f', 22).arg(wp->getLongitude(), 0, 'f', 22).arg(wp->getAltitude(), 0, 'f', 22).arg(wp->getAction())); - //qDebug() << QString("updateWaypoint(%1,%2,%3,%4,%5,%6);").arg(uas).arg(wpindex).arg(wp->getLatitude(), 0, 'f', 18).arg(wp->getLongitude(), 0, 'f', 18).arg(wp->getAltitude(), 0, 'f', 18).arg(wp->getAction()); - } - } -} - -/** - * Update the whole list of waypoints. This is e.g. necessary if the list order changed. - * The UAS manager will emit the appropriate signal whenever updating the list - * is necessary. - */ -void QGCGoogleEarthView::updateWaypointList(int uas) -{ - // Get already existing waypoints - UASInterface* uasInstance = UASManager::instance()->getUASForId(uas); - if (uasInstance) - { - // Get all waypoints, including non-global waypoints - QList wpList = uasInstance->getWaypointManager()->getGlobalFrameAndNavTypeWaypointList(); - - // Trim internal list to number of global waypoints in the waypoint manager list - javaScript(QString("updateWaypointListLength(%1,%2);").arg(uas).arg(wpList.count())); - - qDebug() << QString("updateWaypointListLength(%1,%2);").arg(uas).arg(wpList.count()); - - // Load all existing waypoints into map view - foreach (Waypoint* wp, wpList) - { - updateWaypoint(uas, wp); - } - } -} - -void QGCGoogleEarthView::updateGlobalPosition(UASInterface* uas, double lat, double lon, double alt, quint64 usec) -{ - Q_UNUSED(usec); - javaScript(QString("addTrailPosition(%1, %2, %3, %4);").arg(uas->getUASID()).arg(lat, 0, 'f', 22).arg(lon, 0, 'f', 22).arg(alt, 0, 'f', 22)); -} - -void QGCGoogleEarthView::clearTrails() -{ - QList mavs = UASManager::instance()->getUASList(); - foreach (UASInterface* currMav, mavs) - { - javaScript(QString("clearTrail(%1);").arg(currMav->getUASID())); - } -} - -void QGCGoogleEarthView::showTrail(bool state) -{ - // Check if the current trail has to be hidden - if (trailEnabled && !state) - { - QList mavs = UASManager::instance()->getUASList(); - foreach (UASInterface* currMav, mavs) - { - javaScript(QString("hideTrail(%1);").arg(currMav->getUASID())); - } - } - - // Check if the current trail has to be shown - if (!trailEnabled && state) - { - QList mavs = UASManager::instance()->getUASList(); - foreach (UASInterface* currMav, mavs) - { - javaScript(QString("showTrail(%1);").arg(currMav->getUASID())); - } - } - trailEnabled = state; - ui->trailCheckbox->setChecked(state); -} - -void QGCGoogleEarthView::showWaypoints(bool state) -{ - waypointsEnabled = state; -} - -void QGCGoogleEarthView::follow(bool follow) -{ - ui->followAirplaneCheckbox->setChecked(follow); - if (follow != followCamera) - { - if (follow) - { - setViewMode(VIEW_MODE_CHASE_LOCKED); - } - else - { - setViewMode(VIEW_MODE_SIDE); - } - } - followCamera = follow; - javaScript(QString("setFollowEnabled(%1)").arg(follow)); -} - -void QGCGoogleEarthView::goHome() -{ - // Disable follow and update - follow(false); - updateState(); - // Go to home location - javaScript("goHome();"); -} - -void QGCGoogleEarthView::setHome(double lat, double lon, double alt) -{ - qDebug() << "SETTING GCS HOME IN GOOGLE MAPS" << lat << lon << alt; - javaScript(QString("setGCSHome(%1,%2,%3);").arg(lat, 0, 'f', 15).arg(lon, 0, 'f', 15).arg(alt, 0, 'f', 15)); -} - -void QGCGoogleEarthView::setHome() -{ - javaScript(QString("enableSetHomeMode();")); -} - -void QGCGoogleEarthView::moveToPosition() -{ - bool ok; - javaScript("sampleCurrentPosition();"); - double latitude = documentElement("currentCameraLatitude").toDouble(); - double longitude = documentElement("currentCameraLongitude").toDouble(); - QString text = QInputDialog::getText(this, tr("Please enter coordinates"), - tr("Coordinates (Lat,Lon):"), QLineEdit::Normal, - QString("%1,%2").arg(latitude).arg(longitude), &ok); - if (ok && !text.isEmpty()) { - QStringList split = text.split(","); - if (split.length() == 2) { - bool convert; - double latitude = split.first().toDouble(&convert); - ok &= convert; - double longitude = split.last().toDouble(&convert); - ok &= convert; - - if (ok) { - javaScript(QString("setLookAtLatLon(%1,%2);").arg(latitude, 0, 'f', 15).arg(longitude, 0, 'f', 15)); - } - } - } -} - -void QGCGoogleEarthView::hideEvent(QHideEvent* event) -{ - updateTimer->stop(); - QWidget::hideEvent(event); - emit visibilityChanged(false); -} - -void QGCGoogleEarthView::showEvent(QShowEvent* event) -{ - // React only to internal (pre-display) - // events - QWidget::showEvent(event); - // Enable widget, initialize on first run - - if (!webViewInitialized) - { -#if (defined Q_OS_MAC) - webViewMac->setPage(new QGCWebPage(webViewMac)); - webViewMac->settings()->setAttribute(QWebSettings::PluginsEnabled, true); - webViewMac->load(QUrl(QCoreApplication::applicationDirPath()+"/files/images/earth.html")); -#endif - -#ifdef _MSC_VER - //webViewWin->dynamicCall("GoHome()"); - webViewWin->dynamicCall("Navigate(const QString&)", QApplication::applicationDirPath() + "/files/images/earth.html"); -#endif - - webViewInitialized = true; - // Reloading the webpage, this resets Google Earth - gEarthInitialized = false; - - QTimer::singleShot(3000, this, SLOT(initializeGoogleEarth())); - } - else - { - updateTimer->start(refreshRateMs); - } - emit visibilityChanged(true); -} - -void QGCGoogleEarthView::printWinException(int no, QString str1, QString str2, QString str3) -{ - qDebug() << no << str1 << str2 << str3; -} - -QVariant QGCGoogleEarthView::javaScript(QString javaScript) -{ -#ifdef Q_OS_MAC - if (!jScriptInitialized) { - return QVariant(false); - } else { - return webViewMac->page()->currentFrame()->evaluateJavaScript(javaScript); - } -#endif -#ifdef _MSC_VER - if(!jScriptInitialized) { - qDebug() << "TOO EARLY JAVASCRIPT CALL, ABORTING"; - return QVariant(false); - } else { - QVariantList params; - params.append(javaScript); - params.append("JScript"); - QVariant result = jScriptWin->dynamicCall("execScript(QString, QString)", params); - return result; - } -#endif -} - -QVariant QGCGoogleEarthView::documentElement(QString name) -{ -#ifdef Q_OS_MAC - QString javaScript("getGlobal(%1)"); - QVariant result = webViewMac->page()->currentFrame()->evaluateJavaScript(javaScript.arg(name)); - return result; -#endif -#ifdef _MSC_VER - if(!jScriptInitialized) { - qDebug() << "TOO EARLY JAVASCRIPT CALL, ABORTING"; - } else { - if (documentWin) { - QString resultString; - - // Get HTMLElement object - QVariantList params; - IHTMLDocument3* doc; - documentWin->queryInterface( IID_IHTMLDocument3, (void**)&doc); - params.append(name); - IHTMLElement* element = NULL; - // Append alias - name.prepend("JScript_"); - HRESULT res = doc->getElementById(QStringToBSTR(name), &element); - //BSTR elemString; - if (SUCCEEDED(res) && element) { - //element->get_innerHTML(&elemString); - VARIANT var; - var.vt = VT_BSTR; - HRESULT res = element->getAttribute(L"value", 0, &var); - if (SUCCEEDED(res) && (var.vt != VT_NULL)) { - QByteArray typeName; - QVariant qtValue = VARIANTToQVariant(var,typeName); - return qtValue; - } else { - qDebug() << __FILE__ << __LINE__ << "JAVASCRIPT ATTRIBUTE" << name << "NOT FOUND"; - } - } else { - qDebug() << __FILE__ << __LINE__ << "DID NOT GET HTML ELEMENT" << name; - } - } - } - return QVariant(0); -#endif -} - -void QGCGoogleEarthView::initializeGoogleEarth() -{ - if (!jScriptInitialized) { -#ifdef Q_OS_MAC - jScriptInitialized = true; -#endif -#ifdef _MSC_VER - QAxObject* doc = webViewWin->querySubObject("Document()"); - //IDispatch* Disp; - IDispatch* winDoc = NULL; - IHTMLDocument2* document = NULL; - - //332C4425-26CB-11D0-B483-00C04FD90119 IHTMLDocument2 - //25336920-03F9-11CF-8FD0-00AA00686F13 HTMLDocument - doc->queryInterface(QUuid("{332C4425-26CB-11D0-B483-00C04FD90119}"), (void**)(&winDoc)); - if (winDoc) { - document = NULL; - winDoc->QueryInterface( IID_IHTMLDocument2, (void**)&document ); - IHTMLWindow2 *window = NULL; - document->get_parentWindow( &window ); - documentWin = new QAxObject(document, webViewWin); - jScriptWin = new QAxObject(window, webViewWin); - connect(jScriptWin, SIGNAL(exception(int,QString,QString,QString)), this, SLOT(printWinException(int,QString,QString,QString))); - jScriptInitialized = true; - } else { - qDebug() << "COULD NOT GET DOCUMENT OBJECT! Aborting"; - } -#endif - QTimer::singleShot(1500, this, SLOT(initializeGoogleEarth())); - return; - } - - if (!gEarthInitialized) { - if (!documentElement("initialized").toBool()) { - QTimer::singleShot(300, this, SLOT(initializeGoogleEarth())); - qDebug() << "NOT INITIALIZED, WAITING"; - } else { - gEarthInitialized = true; - - // Set home location - setHome(UASManager::instance()->getHomeLatitude(), UASManager::instance()->getHomeLongitude(), UASManager::instance()->getHomeAltitude()); - - // Add all MAVs - QList mavs = UASManager::instance()->getUASList(); - foreach (UASInterface* currMav, mavs) { - addUAS(currMav); - } - - // Set current UAS - setActiveUAS(UASManager::instance()->getActiveUAS()); - - // Add any further MAV automatically - connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(addUAS(UASInterface*)), Qt::UniqueConnection); - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*)), Qt::UniqueConnection); - - // Connect UI signals/slots - - // Follow checkbox - ui->followAirplaneCheckbox->setChecked(followCamera); - connect(ui->followAirplaneCheckbox, SIGNAL(toggled(bool)), this, SLOT(follow(bool)), Qt::UniqueConnection); - - // Trail checkbox - ui->trailCheckbox->setChecked(trailEnabled); - connect(ui->trailCheckbox, SIGNAL(toggled(bool)), this, SLOT(showTrail(bool)), Qt::UniqueConnection); - - // Go home - connect(ui->goHomeButton, SIGNAL(clicked()), this, SLOT(goHome())); - // Set home - connect(ui->setHomeButton, SIGNAL(clicked()), this, SLOT(setHome())); - - // Visibility of set home button - connect(ui->editButton, SIGNAL(clicked(bool)), ui->setHomeButton, SLOT(setVisible(bool))); - ui->setHomeButton->setVisible(ui->editButton->isChecked()); - - // To Lat/Lon button - connect(ui->toLatLonButton, SIGNAL(clicked()), this, SLOT(moveToPosition())); - - // Cam distance slider - connect(ui->camDistanceSlider, SIGNAL(valueChanged(int)), this, SLOT(setViewRangeScaledInt(int)), Qt::UniqueConnection); - setViewRangeScaledInt(ui->camDistanceSlider->value()); - - // Distance combo box - connect(ui->camDistanceComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(setDistanceMode(int)), Qt::UniqueConnection); - // Edit mode button - connect(ui->editButton, SIGNAL(clicked(bool)), this, SLOT(enableEditMode(bool)), Qt::UniqueConnection); - - // Update waypoint list - if (mav) updateWaypointList(mav->getUASID()); - - // Start update timer - updateTimer->start(refreshRateMs); - - // Set current view mode - setViewMode(currentViewMode); - setDistanceMode(ui->camDistanceComboBox->currentIndex()); - enableEditMode(ui->editButton->isChecked()); - enableAtmosphere(ui->atmosphereCheckBox->isChecked()); - enableDaylight(ui->daylightCheckBox->isChecked()); - follow(this->followCamera); - - // Move to home location - goHome(); - } - } -} - -void QGCGoogleEarthView::updateState() -{ -#if (QGC_EVENTLOOP_DEBUG) - qDebug() << "EVENTLOOP:" << __FILE__ << __LINE__; -#endif - if (gEarthInitialized) - { - int uasId = 0; - double lat = 47.3769; - double lon = 8.549444; - double alt = 470.0; - - float roll = 0.0f; - float pitch = 0.0f; - float yaw = 0.0f; - - // Update all MAVs - QList mavs = UASManager::instance()->getUASList(); - foreach (UASInterface* currMav, mavs) - { - // Only update if known - if (!currMav->globalPositionKnown()) continue; - uasId = currMav->getUASID(); - lat = currMav->getLatitude(); - lon = currMav->getLongitude(); - alt = currMav->getAltitudeAMSL(); - roll = currMav->getRoll(); - pitch = currMav->getPitch(); - yaw = currMav->getYaw(); - - //qDebug() << "SETTING POSITION FOR" << uasId << lat << lon << alt << roll << pitch << yaw; - - javaScript(QString("setAircraftPositionAttitude(%1, %2, %3, %4, %6, %7, %8);") - .arg(uasId) - .arg(lat, 0, 'f', 22) - .arg(lon, 0, 'f', 22) - .arg(alt, 0, 'f', 22) - .arg(roll, 0, 'f', 9) - .arg(pitch, 0, 'f', 9) - .arg(yaw, 0, 'f', 9)); - } - - - // Read out new waypoint positions and waypoint create events - // this is polling (bad) but forced because of the crappy - // Microsoft API available in Qt - improvements wanted - - // First check if a new WP should be created - bool newWaypointPending = documentElement("newWaypointPending").toBool(); - if (newWaypointPending) - { - bool coordsOk = true; - bool ok; - double latitude = documentElement("newWaypointLatitude").toDouble(&ok); - coordsOk &= ok; - double longitude = documentElement("newWaypointLongitude").toDouble(&ok); - coordsOk &= ok; - double altitude = documentElement("newWaypointAltitude").toDouble(&ok); - coordsOk &= ok; - if (coordsOk) - { - // Add new waypoint - if (mav) - { - Waypoint* wp = mav->getWaypointManager()->createWaypoint(); - wp->setFrame(MAV_FRAME_GLOBAL); - wp->setAction(MAV_CMD_NAV_WAYPOINT); - wp->setLatitude(latitude); - wp->setLongitude(longitude); - wp->setAltitude(altitude); - wp->setAcceptanceRadius(10.0); // 10 m - } - } - javaScript("setNewWaypointPending(false);"); - } - - // Check if a waypoint should be moved - bool dragWaypointPending = documentElement("dragWaypointPending").toBool(); - - if (dragWaypointPending) - { - bool coordsOk = true; - bool ok; - double latitude = documentElement("dragWaypointLatitude").toDouble(&ok); - coordsOk &= ok; - double longitude = documentElement("dragWaypointLongitude").toDouble(&ok); - coordsOk &= ok; - double altitude = documentElement("dragWaypointAltitude").toDouble(&ok); - coordsOk &= ok; - - // UPDATE WAYPOINTS, HOME LOCATION AND OTHER LOCATIONS - if (coordsOk) - { - QString idText = documentElement("dragWaypointIndex").toString(); - if (idText == "HOME") - { - qDebug() << "HOME UPDATED!"; - UASManager::instance()->setHomePosition(latitude, longitude, altitude); - ui->setHomeButton->setChecked(false); - } - else - { - // Update waypoint or symbol - if (mav) - { - QList wps = mav->getWaypointManager()->getGlobalFrameAndNavTypeWaypointList(); - - bool ok; - int index = idText.toInt(&ok); - - if (ok && index >= 0 && index < wps.count()) - { - Waypoint* wp = wps.at(index); - wp->setLatitude(latitude); - wp->setLongitude(longitude); - wp->setAltitude(altitude); - mav->getWaypointManager()->notifyOfChangeEditable(wp); - } - } - } - } - else - { - // If coords were not ok, move the view in google earth back - // to last acceptable location - updateWaypointList(mav->getUASID()); - } - javaScript("setDragWaypointPending(false);"); - } - } -} - - -void QGCGoogleEarthView::changeEvent(QEvent *e) -{ - QWidget::changeEvent(e); - switch (e->type()) { - case QEvent::LanguageChange: - ui->retranslateUi(this); - break; - default: - break; - } -} diff --git a/src/ui/map3D/QGCGoogleEarthView.h b/src/ui/map3D/QGCGoogleEarthView.h deleted file mode 100644 index 117239aa4f9bf92880635e6fac7717409f8fa324..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QGCGoogleEarthView.h +++ /dev/null @@ -1,177 +0,0 @@ -#ifndef QGCGOOGLEEARTHVIEW_H -#define QGCGOOGLEEARTHVIEW_H - -#include -#include -#include - -#if (defined Q_OS_MAC) -#include -#endif - -#ifdef _MSC_VER -#include -#include -#include "windows.h" - -class QGCWebAxWidget : public QAxWidget -{ -public: - //Q_OBJECT - QGCWebAxWidget(QWidget* parent = 0, Qt::WindowFlags f = 0) - : QAxWidget(parent, f)/*, - _document(NULL)*/ - { - // Set web browser control - setControl("{8856F961-340A-11D0-A96B-00C04FD705A2}"); - // WARNING: Makes it impossible to actually debug javascript. But useful in production mode - setProperty("ScriptErrorsSuppressed", true); - // see: http://www.codeproject.com/KB/cpp/ExtendedWebBrowser.aspx?fid=285594&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=151#GoalScriptError - - //this->dynamicCall("setProperty(const QString&, - //QObject::connect(this, SIGNAL(DocumentComplete(IDispatch*, QVariant&)), this, SLOT(setDocument(IDispatch*, QVariant&))); - - - } - /* - QAxObject* document() - { - return _document; - }*/ - -protected: - /* - void setDocument(IDispatch* dispatch, QVariant& variant) - { - _document = this->querySubObject("Document()"); - } - QAxObject* _document;*/ - virtual bool translateKeyEvent(int message, int keycode) const { - if (message >= WM_KEYFIRST && message <= WM_KEYLAST) - return true; - else - return QAxWidget::translateKeyEvent(message, keycode); - } - -}; -#endif - -namespace Ui -{ -class QGCGoogleEarthView; -} - -class Waypoint; - -class QGCGoogleEarthView : public QWidget -{ - Q_OBJECT - -public: - explicit QGCGoogleEarthView(QWidget *parent = 0); - ~QGCGoogleEarthView(); - - enum VIEW_MODE { - VIEW_MODE_SIDE = 0, ///< View from above, orientation is free - VIEW_MODE_MAP, ///< View from above, orientation is north (map view) - VIEW_MODE_CHASE_LOCKED, ///< Locked chase camera - VIEW_MODE_CHASE_FREE, ///< Position is chasing object, but view can rotate around object - }; - -public slots: - /** @brief Update the internal state. Does not trigger a redraw */ - void updateState(); - /** @brief Add a new MAV/UAS to the visualization */ - void addUAS(UASInterface* uas); - /** @brief Set the currently selected UAS */ - void setActiveUAS(UASInterface* uas); - /** @brief Update the global position */ - void updateGlobalPosition(UASInterface* uas, double lat, double lon, double alt, quint64 usec); - /** @brief Update a single waypoint */ - void updateWaypoint(int uas, Waypoint* wp); - /** @brief Update the waypoint list */ - void updateWaypointList(int uas); - /** @brief Show the vehicle trail */ - void showTrail(bool state); - /** @brief Clear the current vehicle trails and start with new ones */ - void clearTrails(); - /** @brief Show the waypoints */ - void showWaypoints(bool state); - /** @brief Follow the aircraft during flight */ - void follow(bool follow); - /** @brief Go to the home location */ - void goHome(); - /** @brief Set the home location */ - void setHome(double lat, double lon, double alt); - /** @brief Set the home location interactively in the UI */ - void setHome(); - /** @brief Move the view to a latitude / longitude position */ - void moveToPosition(); - /** @brief Allow waypoint editing */ - void enableEditMode(bool mode); - /** @brief Enable daylight/night */ - void enableDaylight(bool enable); - /** @brief Enable atmosphere */ - void enableAtmosphere(bool enable); - /** @brief Set camera view range to aircraft in meters */ - void setViewRange(float range); - /** @brief Set the distance mode - either to ground or to MAV */ - void setDistanceMode(int mode); - /** @brief Set the view mode */ - void setViewMode(VIEW_MODE mode); - /** @brief Toggle through the different view modes */ - void toggleViewMode(); - /** @brief Set camera view range to aircraft in centimeters */ - void setViewRangeScaledInt(int range); - /** @brief Reset Google Earth View */ - void reloadHTML(); - - /** @brief Initialize Google Earth */ - void initializeGoogleEarth(); - /** @brief Print a Windows exception */ - void printWinException(int no, QString str1, QString str2, QString str3); - -public: - /** @brief Execute java script inside the Google Earth window */ - QVariant javaScript(QString javascript); - /** @brief Get a document element */ - QVariant documentElement(QString name); - -signals: - void visibilityChanged(bool visible); - -protected: - void changeEvent(QEvent *e); - QTimer* updateTimer; - int refreshRateMs; - UASInterface* mav; - bool followCamera; - bool trailEnabled; - bool waypointsEnabled; - bool webViewInitialized; - bool jScriptInitialized; - bool gEarthInitialized; - VIEW_MODE currentViewMode; -#ifdef _MSC_VER - QGCWebAxWidget* webViewWin; - QAxObject* jScriptWin; - QAxObject* documentWin; -#endif -#if (defined Q_OS_MAC) - QWebView* webViewMac; -#endif - - /** @brief Start widget updating */ - void showEvent(QShowEvent* event); - /** @brief Stop widget updating */ - void hideEvent(QHideEvent* event); - -private: -#ifdef _MSC_VER - Ui::QGCGoogleEarthView* ui; -#else - Ui::QGCGoogleEarthView* ui; -#endif -}; - -#endif // QGCGOOGLEEARTHVIEW_H diff --git a/src/ui/map3D/QGCGoogleEarthView.ui b/src/ui/map3D/QGCGoogleEarthView.ui deleted file mode 100644 index 050eab56f9b10e1dde5bb17275ae5f4557fdb491..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QGCGoogleEarthView.ui +++ /dev/null @@ -1,248 +0,0 @@ - - - QGCGoogleEarthView - - - - 0 - 0 - 1409 - 302 - - - - Form - - - - 4 - - - 2 - - - 2 - - - - - - - - Go to home location - - - Go to home location - - - Go to home location - - - Home - - - - - - - Set Home - - - true - - - - - - - Enable waypoint and home location edit mode - - - Enable waypoint and home location edit mode - - - Edit - - - true - - - - - - - Show MAV trajectories - - - Show MAV trajectories - - - Show MAV trajectories - - - Trails - - - - - - - Qt::Vertical - - - - - - - Select the MAV to chase - - - Select the MAV to chase - - - Select the MAV to chase - - - - MAV Distance - - - - - Ground Distance - - - - - - - - Distance of the chase camera to the MAV - - - Distance of the chase camera to the MAV - - - Distance of the chase camera to the MAV - - - 100 - - - 20000 - - - 3000 - - - Qt::Horizontal - - - - - - - Chase the MAV - - - Chase the MAV - - - Chase the MAV - - - Follow - - - - - - - Overhead - - - - - - - Qt::Vertical - - - - - - - Delete all waypoints - - - Delete all waypoints - - - Delete all waypoints - - - Clear Trails - - - - - - - Reset - - - - - - - Qt::Horizontal - - - QSizePolicy::MinimumExpanding - - - - 10 - 20 - - - - - - - - Enable the atmosphere visualization. Not recommended for mission execution, only for visualization - - - Enable the atmosphere visualization. Not recommended for mission execution, only for visualization - - - Sky - - - - - - - Enable day/night light. Not recommended for mission execution, only for visualization. - - - Enable day/night light. Not recommended for mission execution, only for visualization. - - - Day/Night - - - - - - - Lat/Lon - - - - - - - - diff --git a/src/ui/map3D/QGCWebPage.cc b/src/ui/map3D/QGCWebPage.cc deleted file mode 100644 index 0181837a2fad98d888091c1a3f91d6378879be8c..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QGCWebPage.cc +++ /dev/null @@ -1,20 +0,0 @@ -#include "QGCWebPage.h" -#include - -QGCWebPage::QGCWebPage(QObject *parent) : - QWebPage(parent) -{ -} - -void QGCWebPage::javaScriptConsoleMessage ( const QString & message, int lineNumber, const QString & sourceID ) -{ - qDebug() << "JAVASCRIPT: " << lineNumber << sourceID << message; -} - -#ifdef Q_OS_MAC64 -QString QGCWebPage::userAgentForUrl ( const QUrl & url ) const -{ - Q_UNUSED(url); - return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_0) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7 Safari"; -} -#endif diff --git a/src/ui/map3D/QGCWebPage.h b/src/ui/map3D/QGCWebPage.h deleted file mode 100644 index 21f312bf5e1d758b82bb5814e07255d9ba0d9605..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QGCWebPage.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef QGCWEBPAGE_H -#define QGCWEBPAGE_H - -#include - -class QGCWebPage : public QWebPage -{ - Q_OBJECT -public: - explicit QGCWebPage(QObject *parent = 0); - -signals: - -public slots: - -protected: - void javaScriptConsoleMessage ( const QString & message, int lineNumber, const QString & sourceID ); -#ifdef Q_OS_MAC - QString userAgentForUrl ( const QUrl & url ) const; -#endif - -}; - -#endif // QGCWEBPAGE_H diff --git a/src/ui/map3D/QMap3D.h b/src/ui/map3D/QMap3D.h deleted file mode 100644 index dcd58e8ec0088c9c7adbfaa0ef5155e650936f9c..0000000000000000000000000000000000000000 --- a/src/ui/map3D/QMap3D.h +++ /dev/null @@ -1,58 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class QMap3D.h - * - * @author James Goppert - * - */ - -#ifdef QGC_OSGEARTH_ENABLED - -#ifndef QMAP3D_H -#define QMAP3D_H - -#include "QOSGWidget.h" -#include "ui_QMap3D.h" - -namespace Ui -{ -class QMap3D; -} - -class QMap3D : public QWidget, private Ui::QMap3D -{ - Q_OBJECT -public: - QMap3D(QWidget * parent = 0, const char * name = 0, WindowFlags f = 0); - ~QMap3D(); -public slots: - void on_pushButton_map_clicked(); - void on_pushButton_vehicle_clicked(); -}; - -#endif // QMAP3D_H - -#endif diff --git a/src/ui/map3D/SystemContainer.cc b/src/ui/map3D/SystemContainer.cc deleted file mode 100644 index 474fd927338a3a255014efa12db4cacb3cf77bf0..0000000000000000000000000000000000000000 --- a/src/ui/map3D/SystemContainer.cc +++ /dev/null @@ -1,98 +0,0 @@ -#include "SystemContainer.h" - -#include - -SystemContainer::SystemContainer() -{ - -} - -QVector3D& -SystemContainer::gpsLocalOrigin(void) -{ - return mGPSLocalOrigin; -} - -QVector4D& -SystemContainer::target(void) -{ - return mTarget; -} - -QVector< osg::ref_ptr >& -SystemContainer::models(void) -{ - return mModels; -} - -QMap >& -SystemContainer::trailMap(void) -{ - return mTrailMap; -} - -QMap& -SystemContainer::trailIndexMap(void) -{ - return mTrailIndexMap; -} - -osg::ref_ptr& -SystemContainer::depthImageNode(void) -{ - return mDepthImageNode; -} - -osg::ref_ptr& -SystemContainer::localGridNode(void) -{ - return mLocalGridNode; -} - -osg::ref_ptr& -SystemContainer::modelNode(void) -{ - return mModelNode; -} - -osg::ref_ptr& -SystemContainer::orientationNode(void) -{ - return mOrientationNode; -} - -osg::ref_ptr& -SystemContainer::pointCloudNode(void) -{ - return mPointCloudNode; -} - -osg::ref_ptr& -SystemContainer::rgbImageNode(void) -{ - return mRGBImageNode; -} - -osg::ref_ptr& -SystemContainer::setpointGroupNode(void) -{ - return mSetpointGroupNode; -} - -osg::ref_ptr& -SystemContainer::targetNode(void) -{ - return mTargetNode; -} - -osg::ref_ptr& -SystemContainer::trailNode(void) -{ - return mTrailNode; -} - -osg::ref_ptr& -SystemContainer::waypointGroupNode(void) -{ - return mWaypointGroupNode; -} diff --git a/src/ui/map3D/SystemContainer.h b/src/ui/map3D/SystemContainer.h deleted file mode 100644 index 45f72378232bbb10be77a64409498d751ab91fcc..0000000000000000000000000000000000000000 --- a/src/ui/map3D/SystemContainer.h +++ /dev/null @@ -1,61 +0,0 @@ -#ifndef SYSTEMCONTAINER_H -#define SYSTEMCONTAINER_H - -#include -#include -#include -#include -#include - -#include "ImageWindowGeode.h" -#include "WaypointGroupNode.h" - -class SystemContainer -{ -public: - SystemContainer(); - - QVector3D& gpsLocalOrigin(void); - - QVector4D& target(void); - - QVector< osg::ref_ptr >& models(void); - - QMap >& trailMap(void); - QMap& trailIndexMap(void); - - osg::ref_ptr& depthImageNode(void); - osg::ref_ptr& localGridNode(void); - osg::ref_ptr& modelNode(void); - osg::ref_ptr& orientationNode(void); - osg::ref_ptr& pointCloudNode(void); - osg::ref_ptr& rgbImageNode(void); - osg::ref_ptr& setpointGroupNode(void); - osg::ref_ptr& targetNode(void); - osg::ref_ptr& trailNode(void); - osg::ref_ptr& waypointGroupNode(void); - -private: - QVector3D mGPSLocalOrigin; - QVector4D mTarget; - - QVector< osg::ref_ptr > mModels; - - // map component id to component-specific trail - QMap > mTrailMap; - QMap mTrailIndexMap; - - // osg structures - osg::ref_ptr mDepthImageNode; - osg::ref_ptr mLocalGridNode; - osg::ref_ptr mModelNode; - osg::ref_ptr mOrientationNode; - osg::ref_ptr mPointCloudNode; - osg::ref_ptr mRGBImageNode; - osg::ref_ptr mSetpointGroupNode; - osg::ref_ptr mTargetNode; - osg::ref_ptr mTrailNode; - osg::ref_ptr mWaypointGroupNode; -}; - -#endif // SYSTEMCONTAINER_H diff --git a/src/ui/map3D/SystemGroupNode.cc b/src/ui/map3D/SystemGroupNode.cc deleted file mode 100644 index 5d64b4cae9870969d2a9786e092fbcd5c913136d..0000000000000000000000000000000000000000 --- a/src/ui/map3D/SystemGroupNode.cc +++ /dev/null @@ -1,101 +0,0 @@ -#include "SystemGroupNode.h" - -#include -#include -#include - -SystemGroupNode::SystemGroupNode() - : mAllocentricMap(new osg::Switch()) - , mRollingMap(new osg::Switch()) - , mEgocentricMap(new osg::Switch()) - , mPosition(new osg::PositionAttitudeTransform()) - , mAttitude(new osg::PositionAttitudeTransform()) -{ - addChild(mAllocentricMap); - - // set up various maps - // allocentric - world map - // rolling - map aligned to the world axes and centered on the robot - // egocentric - vehicle-centric map - mAllocentricMap->addChild(mPosition); - mPosition->addChild(mRollingMap); - mRollingMap->addChild(mAttitude); - mAttitude->addChild(mEgocentricMap); - - // set up robot - mEgocentricMap->addChild(createAxisGeode()); -} - -osg::ref_ptr& -SystemGroupNode::allocentricMap(void) -{ - return mAllocentricMap; -} - -osg::ref_ptr& -SystemGroupNode::rollingMap(void) -{ - return mRollingMap; -} - -osg::ref_ptr& -SystemGroupNode::egocentricMap(void) -{ - return mEgocentricMap; -} - -osg::ref_ptr& -SystemGroupNode::position(void) -{ - return mPosition; -} - -osg::ref_ptr& -SystemGroupNode::attitude(void) -{ - return mAttitude; -} - -osg::ref_ptr -SystemGroupNode::createAxisGeode(void) -{ - // draw x,y,z-axes - osg::ref_ptr geode(new osg::Geode()); - osg::ref_ptr geometry(new osg::Geometry()); - geode->addDrawable(geometry.get()); - - osg::ref_ptr coords(new osg::Vec3Array(6)); - (*coords)[0] = (*coords)[2] = (*coords)[4] = - osg::Vec3(0.0f, 0.0f, 0.0f); - (*coords)[1] = osg::Vec3(0.0f, 0.3f, 0.0f); - (*coords)[3] = osg::Vec3(0.15f, 0.0f, 0.0f); - (*coords)[5] = osg::Vec3(0.0f, 0.0f, -0.15f); - - geometry->setVertexArray(coords); - - osg::Vec4 redColor(1.0f, 0.0f, 0.0f, 0.0f); - osg::Vec4 greenColor(0.0f, 1.0f, 0.0f, 0.0f); - osg::Vec4 blueColor(0.0f, 0.0f, 1.0f, 0.0f); - - osg::ref_ptr color(new osg::Vec4Array(6)); - (*color)[0] = redColor; - (*color)[1] = redColor; - (*color)[2] = greenColor; - (*color)[3] = greenColor; - (*color)[4] = blueColor; - (*color)[5] = blueColor; - - geometry->setColorArray(color); - geometry->setColorBinding(osg::Geometry::BIND_PER_VERTEX); - - geometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, 0, 6)); - - osg::ref_ptr stateset(new osg::StateSet); - osg::ref_ptr linewidth(new osg::LineWidth()); - linewidth->setWidth(3.0f); - stateset->setAttributeAndModes(linewidth, osg::StateAttribute::ON); - stateset->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - geometry->setStateSet(stateset); - - return geode; -} diff --git a/src/ui/map3D/SystemGroupNode.h b/src/ui/map3D/SystemGroupNode.h deleted file mode 100644 index abc430e469a13f11aa89444b0362734a18378bc4..0000000000000000000000000000000000000000 --- a/src/ui/map3D/SystemGroupNode.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef SYSTEMGROUPNODE_H -#define SYSTEMGROUPNODE_H - -#include -#include - -class SystemGroupNode : public osg::Group -{ -public: - SystemGroupNode(); - - osg::ref_ptr& allocentricMap(void); - osg::ref_ptr& rollingMap(void); - osg::ref_ptr& egocentricMap(void); - osg::ref_ptr& position(void); - osg::ref_ptr& attitude(void); - -private: - osg::ref_ptr createAxisGeode(void); - - osg::ref_ptr mAllocentricMap; - osg::ref_ptr mRollingMap; - osg::ref_ptr mEgocentricMap; - osg::ref_ptr mPosition; - osg::ref_ptr mAttitude; -}; - -#endif // SYSTEMGROUPNODE_H diff --git a/src/ui/map3D/SystemViewParams.cc b/src/ui/map3D/SystemViewParams.cc deleted file mode 100644 index a8ed5a5c43d3c3588dba9bbeace1a81dcd4f7424..0000000000000000000000000000000000000000 --- a/src/ui/map3D/SystemViewParams.cc +++ /dev/null @@ -1,348 +0,0 @@ -#include "SystemViewParams.h" - -#include - -SystemViewParams::SystemViewParams(int systemId) - : mSystemId(systemId) - , mColorPointCloudByDistance(false) - , mDisplayLocalGrid(false) - , mDisplayObstacleList(true) - , mDisplayPlannedPath(true) - , mDisplayPointCloud(true) - , mDisplayRGBD(false) - , mDisplaySetpoints(true) - , mDisplayTarget(true) - , mDisplayTrails(true) - , mDisplayWaypoints(true) - , mModelIndex(-1) - , mSetpointHistoryLength(100) -{ - - setObjectName("RGBD VIEW PARAMS"); -} - -bool& -SystemViewParams::colorPointCloudByDistance(void) -{ - return mColorPointCloudByDistance; -} - -bool -SystemViewParams::colorPointCloudByDistance(void) const -{ - return mColorPointCloudByDistance; -} - -bool& -SystemViewParams::displayLocalGrid(void) -{ - return mDisplayLocalGrid; -} - -bool -SystemViewParams::displayLocalGrid(void) const -{ - return mDisplayLocalGrid; -} - -bool& -SystemViewParams::displayObstacleList(void) -{ - return mDisplayObstacleList; -} - -bool -SystemViewParams::displayObstacleList(void) const -{ - return mDisplayObstacleList; -} - -QMap& -SystemViewParams::displayOverlay(void) -{ - return mDisplayOverlay; -} - -QMap -SystemViewParams::displayOverlay(void) const -{ - return mDisplayOverlay; -} - -bool& -SystemViewParams::displayPlannedPath(void) -{ - return mDisplayPlannedPath; -} - -bool -SystemViewParams::displayPlannedPath(void) const -{ - return mDisplayPlannedPath; -} - -bool& -SystemViewParams::displayPointCloud(void) -{ - return mDisplayPointCloud; -} - -bool -SystemViewParams::displayPointCloud(void) const -{ - return mDisplayPointCloud; -} - -bool& -SystemViewParams::displayRGBD(void) -{ - return mDisplayRGBD; -} - -bool -SystemViewParams::displayRGBD(void) const -{ - return mDisplayRGBD; -} - -bool& -SystemViewParams::displaySetpoints(void) -{ - return mDisplaySetpoints; -} - -bool -SystemViewParams::displaySetpoints(void) const -{ - return mDisplaySetpoints; -} - -bool& -SystemViewParams::displayTarget(void) -{ - return mDisplayTarget; -} - -bool -SystemViewParams::displayTarget(void) const -{ - return mDisplayTarget; -} - -bool& -SystemViewParams::displayTrails(void) -{ - return mDisplayTrails; -} - -bool -SystemViewParams::displayTrails(void) const -{ - return mDisplayTrails; -} - -bool& -SystemViewParams::displayWaypoints(void) -{ - return mDisplayWaypoints; -} - -bool -SystemViewParams::displayWaypoints(void) const -{ - return mDisplayWaypoints; -} - -int& -SystemViewParams::modelIndex(void) -{ - return mModelIndex; -} - -int -SystemViewParams::modelIndex(void) const -{ - return mModelIndex; -} - -QVector& -SystemViewParams::modelNames(void) -{ - return mModelNames; -} - -const QVector& -SystemViewParams::modelNames(void) const -{ - return mModelNames; -} - -int& -SystemViewParams::setpointHistoryLength(void) -{ - return mSetpointHistoryLength; -} - -int -SystemViewParams::setpointHistoryLength(void) const -{ - return mSetpointHistoryLength; -} - -void -SystemViewParams::modelChanged(int index) -{ - mModelIndex = index; - - emit modelChangedSignal(mSystemId, index); -} - -void -SystemViewParams::setSetpointHistoryLength(int length) -{ - mSetpointHistoryLength = length; -} - -void -SystemViewParams::toggleColorPointCloud(int state) -{ - if (state == Qt::Checked) - { - mColorPointCloudByDistance = true; - } - else - { - mColorPointCloudByDistance = false; - } -} - -void -SystemViewParams::toggleLocalGrid(int state) -{ - if (state == Qt::Checked) - { - mDisplayLocalGrid = true; - } - else - { - mDisplayLocalGrid = false; - } -} - -void -SystemViewParams::toggleObstacleList(int state) -{ - if (state == Qt::Checked) - { - mDisplayObstacleList = true; - } - else - { - mDisplayObstacleList = false; - } -} - -void -SystemViewParams::toggleOverlay(QWidget* widget) -{ - const QCheckBox* checkbox = dynamic_cast(widget); - QString name = checkbox->accessibleName(); - - if (!mDisplayOverlay.contains(name)) - { - return; - } - - mDisplayOverlay[name] = (checkbox->checkState() == Qt::Checked); -} - -void -SystemViewParams::togglePlannedPath(int state) -{ - if (state == Qt::Checked) - { - mDisplayPlannedPath = true; - } - else - { - mDisplayPlannedPath = false; - } -} - -void -SystemViewParams::togglePointCloud(int state) -{ - if (state == Qt::Checked) - { - mDisplayPointCloud = true; - } - else - { - mDisplayPointCloud = false; - } -} - -void -SystemViewParams::toggleRGBD(int state) -{ - if (state == Qt::Checked) - { - mDisplayRGBD = true; - } - else - { - mDisplayRGBD = false; - } -} - -void -SystemViewParams::toggleSetpoints(int state) -{ - if (state == Qt::Checked) - { - mDisplaySetpoints = true; - } - else - { - mDisplaySetpoints = false; - } -} - -void -SystemViewParams::toggleTarget(int state) -{ - if (state == Qt::Checked) - { - mDisplayTarget = true; - } - else - { - mDisplayTarget = false; - } -} - -void -SystemViewParams::toggleTrails(int state) -{ - if (state == Qt::Checked) - { - mDisplayTrails = true; - } - else - { - mDisplayTrails = false; - } -} - -void -SystemViewParams::toggleWaypoints(int state) -{ - if (state == Qt::Checked) - { - mDisplayWaypoints = true; - } - else - { - mDisplayWaypoints = false; - } -} diff --git a/src/ui/map3D/SystemViewParams.h b/src/ui/map3D/SystemViewParams.h deleted file mode 100644 index 0497f6a4faf5ad26d9fdf6dff33bd1d75b9e70a9..0000000000000000000000000000000000000000 --- a/src/ui/map3D/SystemViewParams.h +++ /dev/null @@ -1,98 +0,0 @@ -#ifndef SYSTEMVIEWPARAMS_H -#define SYSTEMVIEWPARAMS_H - -#include -#include -#include -#include -#include - -class SystemViewParams : public QObject -{ - Q_OBJECT - -public: - SystemViewParams(int systemId); - - bool& colorPointCloudByDistance(void); - bool colorPointCloudByDistance(void) const; - - bool& displayLocalGrid(void); - bool displayLocalGrid(void) const; - - bool& displayObstacleList(void); - bool displayObstacleList(void) const; - - QMap& displayOverlay(void); - QMap displayOverlay(void) const; - - bool& displayPlannedPath(void); - bool displayPlannedPath(void) const; - - bool& displayPointCloud(void); - bool displayPointCloud(void) const; - - bool& displayRGBD(void); - bool displayRGBD(void) const; - - bool& displaySetpoints(void); - bool displaySetpoints(void) const; - - bool& displayTarget(void); - bool displayTarget(void) const; - - bool& displayTrails(void); - bool displayTrails(void) const; - - bool& displayWaypoints(void); - bool displayWaypoints(void) const; - - int& modelIndex(void); - int modelIndex(void) const; - - QVector& modelNames(void); - const QVector& modelNames(void) const; - - int& setpointHistoryLength(void); - int setpointHistoryLength(void) const; - -public slots: - void modelChanged(int index); - void setSetpointHistoryLength(int length); - void toggleColorPointCloud(int state); - void toggleLocalGrid(int state); - void toggleObstacleList(int state); - void toggleOverlay(QWidget* widget); - void togglePlannedPath(int state); - void togglePointCloud(int state); - void toggleRGBD(int state); - void toggleSetpoints(int state); - void toggleTarget(int state); - void toggleTrails(int state); - void toggleWaypoints(int state); - -signals: - void modelChangedSignal(int systemId, int index); - -private: - int mSystemId; - - bool mColorPointCloudByDistance; - bool mDisplayLocalGrid; - bool mDisplayObstacleList; - QMap mDisplayOverlay; - bool mDisplayPlannedPath; - bool mDisplayPointCloud; - bool mDisplayRGBD; - bool mDisplaySetpoints; - bool mDisplayTarget; - bool mDisplayTrails; - bool mDisplayWaypoints; - int mModelIndex; - QVector mModelNames; - int mSetpointHistoryLength; -}; - -typedef QSharedPointer SystemViewParamsPtr; - -#endif // SYSTEMVIEWPARAMS diff --git a/src/ui/map3D/TerrainParamDialog.cc b/src/ui/map3D/TerrainParamDialog.cc deleted file mode 100644 index 1fd78267b2cddb286a8a75b1fc4d30e29826d6ee..0000000000000000000000000000000000000000 --- a/src/ui/map3D/TerrainParamDialog.cc +++ /dev/null @@ -1,119 +0,0 @@ -#include "TerrainParamDialog.h" - -#include -#include -#include - -TerrainParamDialog::TerrainParamDialog(QWidget* parent) - : QDialog(parent) -{ - QVBoxLayout* layout = new QVBoxLayout; - setLayout(layout); - - setWindowTitle(tr("Terrain Parameters")); - setModal(true); - - buildLayout(layout); -} - -void -TerrainParamDialog::getTerrainParams(GlobalViewParamsPtr &globalViewParams) -{ - QVector3D& positionOffset = globalViewParams->terrainPositionOffset(); - QVector3D& attitudeOffset = globalViewParams->terrainAttitudeOffset(); - - TerrainParamDialog dialog; - dialog.mXOffsetSpinBox->setValue(positionOffset.x()); - dialog.mYOffsetSpinBox->setValue(positionOffset.y()); - dialog.mZOffsetSpinBox->setValue(positionOffset.z()); - dialog.mRollOffsetSpinBox->setValue(osg::RadiansToDegrees(attitudeOffset.x())); - dialog.mPitchOffsetSpinBox->setValue(osg::RadiansToDegrees(attitudeOffset.y())); - dialog.mYawOffsetSpinBox->setValue(osg::RadiansToDegrees(attitudeOffset.z())); - - if (dialog.exec() == QDialog::Accepted) - { - positionOffset.setX(dialog.mXOffsetSpinBox->value()); - positionOffset.setY(dialog.mYOffsetSpinBox->value()); - positionOffset.setZ(dialog.mZOffsetSpinBox->value()); - attitudeOffset.setX(osg::DegreesToRadians(dialog.mRollOffsetSpinBox->value())); - attitudeOffset.setY(osg::DegreesToRadians(dialog.mPitchOffsetSpinBox->value())); - attitudeOffset.setZ(osg::DegreesToRadians(dialog.mYawOffsetSpinBox->value())); - } -} - -void -TerrainParamDialog::closeWithSaving(void) -{ - done(QDialog::Accepted); -} - -void -TerrainParamDialog::closeWithoutSaving(void) -{ - done(QDialog::Rejected); -} - -void -TerrainParamDialog::buildLayout(QVBoxLayout* layout) -{ - QGroupBox* offsetGroupBox = new QGroupBox(tr("Offset"), this); - - mXOffsetSpinBox = new QDoubleSpinBox(this); - mXOffsetSpinBox->setDecimals(1); - mXOffsetSpinBox->setRange(-100.0, 100.0); - mXOffsetSpinBox->setValue(0.0); - - mYOffsetSpinBox = new QDoubleSpinBox(this); - mYOffsetSpinBox->setDecimals(1); - mYOffsetSpinBox->setRange(-100.0, 100.0); - mYOffsetSpinBox->setValue(0.0); - - mZOffsetSpinBox = new QDoubleSpinBox(this); - mZOffsetSpinBox->setDecimals(1); - mZOffsetSpinBox->setRange(-100.0, 100.0); - mZOffsetSpinBox->setValue(0.0); - - mRollOffsetSpinBox = new QDoubleSpinBox(this); - mRollOffsetSpinBox->setDecimals(0); - mRollOffsetSpinBox->setRange(-180.0, 180.0); - mRollOffsetSpinBox->setValue(0.0); - - mPitchOffsetSpinBox = new QDoubleSpinBox(this); - mPitchOffsetSpinBox->setDecimals(0); - mPitchOffsetSpinBox->setRange(-180.0, 180.0); - mPitchOffsetSpinBox->setValue(0.0); - - mYawOffsetSpinBox = new QDoubleSpinBox(this); - mYawOffsetSpinBox->setDecimals(0); - mYawOffsetSpinBox->setRange(-180.0, 180.0); - mYawOffsetSpinBox->setValue(0.0); - - QFormLayout* formLayout = new QFormLayout; - formLayout->addRow(tr("x (m)"), mXOffsetSpinBox); - formLayout->addRow(tr("y (m)"), mYOffsetSpinBox); - formLayout->addRow(tr("z (m)"), mZOffsetSpinBox); - formLayout->addRow(tr("Roll (deg)"), mRollOffsetSpinBox); - formLayout->addRow(tr("Pitch (deg)"), mPitchOffsetSpinBox); - formLayout->addRow(tr("Yaw (deg)"), mYawOffsetSpinBox); - - offsetGroupBox->setLayout(formLayout); - - layout->addWidget(offsetGroupBox); - layout->addItem(new QSpacerItem(10, 0, QSizePolicy::Expanding, QSizePolicy::Expanding)); - - QPushButton* cancelButton = new QPushButton(this); - cancelButton->setText("Cancel"); - - QPushButton* saveButton = new QPushButton(this); - saveButton->setText("Save"); - - QHBoxLayout* buttonLayout = new QHBoxLayout; - buttonLayout->addWidget(cancelButton); - buttonLayout->addItem(new QSpacerItem(10, 0, QSizePolicy::Expanding, QSizePolicy::Expanding)); - buttonLayout->addWidget(saveButton); - - layout->addLayout(buttonLayout); - - connect(cancelButton, SIGNAL(clicked()), this, SLOT(closeWithoutSaving())); - connect(saveButton, SIGNAL(clicked()), this, SLOT(closeWithSaving())); -} diff --git a/src/ui/map3D/TerrainParamDialog.h b/src/ui/map3D/TerrainParamDialog.h deleted file mode 100644 index 2a0f0f20044bf100e988d271bcc45333bbe94c08..0000000000000000000000000000000000000000 --- a/src/ui/map3D/TerrainParamDialog.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef TERRAINPARAMDIALOG_H -#define TERRAINPARAMDIALOG_H - -#include -#include -#include - -#include "GlobalViewParams.h" - -class TerrainParamDialog : public QDialog -{ - Q_OBJECT - -public: - TerrainParamDialog(QWidget* parent = 0); - - static void getTerrainParams(GlobalViewParamsPtr& globalViewParams); - -private slots: - void closeWithSaving(void); - void closeWithoutSaving(void); - -private: - void buildLayout(QVBoxLayout* layout); - - QDoubleSpinBox* mXOffsetSpinBox; - QDoubleSpinBox* mYOffsetSpinBox; - QDoubleSpinBox* mZOffsetSpinBox; - QDoubleSpinBox* mRollOffsetSpinBox; - QDoubleSpinBox* mPitchOffsetSpinBox; - QDoubleSpinBox* mYawOffsetSpinBox; -}; - -#endif // TERRAINPARAMDIALOG_H diff --git a/src/ui/map3D/Texture.cc b/src/ui/map3D/Texture.cc deleted file mode 100644 index e7dc3c741b5ea7fe967a303a63897ac42a803f50..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Texture.cc +++ /dev/null @@ -1,175 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Texture. - * - * @author Lionel Heng - * - */ - -#include - -#include "Texture.h" - -Texture::Texture(quint64 id) - : mId(id) - , mTexture2D(new osg::Texture2D) - , mGeometry(new osg::Geometry) -{ - mTexture2D->setFilter(osg::Texture::MIN_FILTER, osg::Texture::NEAREST); - mTexture2D->setFilter(osg::Texture::MAG_FILTER, osg::Texture::NEAREST); - - mTexture2D->setDataVariance(osg::Object::DYNAMIC); - mTexture2D->setResizeNonPowerOfTwoHint(false); - - osg::ref_ptr image = new osg::Image; - mTexture2D->setImage(image); - - osg::ref_ptr vertices(new osg::Vec3dArray(4)); - mGeometry->setVertexArray(vertices); - - osg::ref_ptr textureCoords = new osg::Vec2Array; - textureCoords->push_back(osg::Vec2(0.0f, 1.0f)); - textureCoords->push_back(osg::Vec2(1.0f, 1.0f)); - textureCoords->push_back(osg::Vec2(1.0f, 0.0f)); - textureCoords->push_back(osg::Vec2(0.0f, 0.0f)); - mGeometry->setTexCoordArray(0, textureCoords); - - mGeometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, - 0, 4)); - - osg::ref_ptr colors(new osg::Vec4Array); - colors->push_back(osg::Vec4(0.0f, 0.0f, 1.0f, 1.0f)); - mGeometry->setColorArray(colors); - mGeometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - mGeometry->setUseDisplayList(false); - - osg::ref_ptr linewidth(new osg::LineWidth); - linewidth->setWidth(2.0f); - mGeometry->getOrCreateStateSet()-> - setAttributeAndModes(linewidth, osg::StateAttribute::ON); - mGeometry->getOrCreateStateSet()-> - setMode(GL_LIGHTING, osg::StateAttribute::OFF); -} - -const QString& -Texture::getSourceURL(void) const -{ - return mSourceURL; -} - -void -Texture::setId(quint64 id) -{ - mId = id; -} - -void -Texture::sync(const WebImagePtr& image) -{ - mState = static_cast(image->getState()); - - if (image->getState() != WebImage::UNINITIALIZED && - mSourceURL != image->getSourceURL()) - { - mSourceURL = image->getSourceURL(); - } - - if (image->getState() == WebImage::READY && image->getSyncFlag()) - { - image->setSyncFlag(false); - - if (mTexture2D->getImage() != NULL) - { - mTexture2D->getImage()->setImage(image->getWidth(), - image->getHeight(), - 1, - GL_RGBA, - GL_RGBA, - GL_UNSIGNED_BYTE, - image->getImageData(), - osg::Image::NO_DELETE); - mTexture2D->getImage()->dirty(); - } - } -} - -osg::ref_ptr -Texture::draw(double x1, double y1, double x2, double y2, - double z, - bool smoothInterpolation) const -{ - return draw(x1, y1, x2, y1, x2, y2, x1, y2, z, smoothInterpolation); -} - -osg::ref_ptr -Texture::draw(double x1, double y1, double x2, double y2, - double x3, double y3, double x4, double y4, - double z, - bool smoothInterpolation) const -{ - osg::Vec3dArray* vertices = - static_cast(mGeometry->getVertexArray()); - (*vertices)[0].set(x1, y1, z); - (*vertices)[1].set(x2, y2, z); - (*vertices)[2].set(x3, y3, z); - (*vertices)[3].set(x4, y4, z); - - osg::DrawArrays* drawarrays = - static_cast(mGeometry->getPrimitiveSet(0)); - osg::Vec4Array* colors = - static_cast(mGeometry->getColorArray()); - - if (mState == REQUESTED) - { - drawarrays->set(osg::PrimitiveSet::LINE_LOOP, 0, 4); - (*colors)[0].set(0.0f, 0.0f, 1.0f, 1.0f); - - mGeometry->getOrCreateStateSet()-> - setTextureAttributeAndModes(0, mTexture2D, osg::StateAttribute::OFF); - - return mGeometry; - } - - if (smoothInterpolation) - { - mTexture2D->setFilter(osg::Texture::MIN_FILTER, osg::Texture::LINEAR); - mTexture2D->setFilter(osg::Texture::MAG_FILTER, osg::Texture::LINEAR); - } - else - { - mTexture2D->setFilter(osg::Texture::MIN_FILTER, osg::Texture::NEAREST); - mTexture2D->setFilter(osg::Texture::MAG_FILTER, osg::Texture::NEAREST); - } - - drawarrays->set(osg::PrimitiveSet::POLYGON, 0, 4); - (*colors)[0].set(1.0f, 1.0f, 1.0f, 1.0f); - - mGeometry->getOrCreateStateSet()-> - setTextureAttributeAndModes(0, mTexture2D, osg::StateAttribute::ON); - - return mGeometry; -} diff --git a/src/ui/map3D/Texture.h b/src/ui/map3D/Texture.h deleted file mode 100644 index b1250aa5a6267675064739eac235dd4205c29a2b..0000000000000000000000000000000000000000 --- a/src/ui/map3D/Texture.h +++ /dev/null @@ -1,79 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class Texture. - * - * @author Lionel Heng - * - */ - -#ifndef TEXTURE_H -#define TEXTURE_H - -#include -#include -#include -#include -#include - -#include "WebImage.h" - -class Texture -{ -public: - explicit Texture(quint64 id); - - const QString& getSourceURL(void) const; - - void setId(quint64 id); - - void sync(const WebImagePtr& image); - - osg::ref_ptr draw(double x1, double y1, double x2, double y2, - double z, - bool smoothInterpolation) const; - osg::ref_ptr draw(double x1, double y1, double x2, double y2, - double x3, double y3, double x4, double y4, - double z, - bool smoothInterpolation) const; - -private: - enum State - { - UNINITIALIZED = 0, - REQUESTED = 1, - READY = 2 - }; - - State mState; - QString mSourceURL; - quint64 mId; - osg::ref_ptr mTexture2D; - osg::ref_ptr mGeometry; -}; - -typedef QSharedPointer TexturePtr; - -#endif // TEXTURE_H diff --git a/src/ui/map3D/TextureCache.cc b/src/ui/map3D/TextureCache.cc deleted file mode 100644 index 6b9ebc9e9e3a5ccaa6eb7117397b51d106900e89..0000000000000000000000000000000000000000 --- a/src/ui/map3D/TextureCache.cc +++ /dev/null @@ -1,104 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class TextureCache. - * - * @author Lionel Heng - * - */ - -#include "TextureCache.h" - -TextureCache::TextureCache(int cacheSize) - : mCacheSize(cacheSize) - , mImageCache(new WebImageCache(0, cacheSize)) -{ - for (int i = 0; i < mCacheSize; ++i) - { - TexturePtr t(new Texture(i)); - - mTextures.push_back(t); - } -} - -TexturePtr -TextureCache::get(const QString& tileURL) -{ - QPair p1 = lookup(tileURL); - if (!p1.first.isNull()) - { - return p1.first; - } - - QPair p2 = mImageCache->lookup(tileURL); - if (!p2.first.isNull()) - { - mTextures[p2.second]->sync(p2.first); - p1 = lookup(tileURL); - - return p1.first; - } - - return TexturePtr(); -} - -void -TextureCache::sync(void) -{ - if (requireSync()) - { - for (int i = 0; i < mTextures.size(); ++i) - { - mTextures[i]->sync(mImageCache->at(i)); - } - } -} - -QPair -TextureCache::lookup(const QString& tileURL) -{ - for (int i = 0; i < mTextures.size(); ++i) - { - if (mTextures[i]->getSourceURL() == tileURL) - { - return qMakePair(mTextures[i], i); - } - } - - return qMakePair(TexturePtr(), -1); -} - -bool -TextureCache::requireSync(void) const -{ - for (int i = 0; i < mCacheSize; ++i) - { - if (mImageCache->at(i)->getSyncFlag()) - { - return true; - } - } - return false; -} diff --git a/src/ui/map3D/TextureCache.h b/src/ui/map3D/TextureCache.h deleted file mode 100644 index 14597b23415085707d5a511788639a12a27473f1..0000000000000000000000000000000000000000 --- a/src/ui/map3D/TextureCache.h +++ /dev/null @@ -1,60 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class TextureCache. - * - * @author Lionel Heng - * - */ - -#ifndef TEXTURECACHE_H -#define TEXTURECACHE_H - -#include - -#include "Texture.h" -#include "WebImageCache.h" - -class TextureCache -{ -public: - explicit TextureCache(int cacheSize); - - TexturePtr get(const QString& tileURL); - - void sync(void); - -private: - QPair lookup(const QString& tileURL); - - bool requireSync(void) const; - - int mCacheSize; - QVector mTextures; - - QScopedPointer mImageCache; -}; - -#endif // TEXTURECACHE_H diff --git a/src/ui/map3D/ViewParamWidget.cc b/src/ui/map3D/ViewParamWidget.cc deleted file mode 100644 index adf352c399e229a62904d8d2cb3ca06b1c3a79f9..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ViewParamWidget.cc +++ /dev/null @@ -1,266 +0,0 @@ -#include "ViewParamWidget.h" - -#include -#include -#include -#include -#include - -#include "ImageryParamDialog.h" -#include "UASInterface.h" - -ViewParamWidget::ViewParamWidget(GlobalViewParamsPtr& globalViewParams, - QMap& systemViewParamMap, - QWidget* parent, QWidget* mainWindow) - : QDockWidget(tr("View Parameters"), mainWindow) - , mGlobalViewParams(globalViewParams) - , mSystemViewParamMap(systemViewParamMap) - , mParent(parent) - , mFollowCameraComboBox(new QComboBox(this)) - , mTabWidget(new QTabWidget(this)) -{ - setObjectName("RGBD VIEW PARAMS WIDGET"); - QVBoxLayout* layout = new QVBoxLayout; - QWidget* widget = new QWidget; - widget->setLayout(layout); - - setWidget(widget); - - buildLayout(layout); - - mTabWidget->setFocusPolicy(Qt::NoFocus); - - mOverlaySignalMapper = new QSignalMapper(this); - - connect(parent, SIGNAL(systemCreatedSignal(UASInterface*)), - this, SLOT(systemCreated(UASInterface*))); - - connect(parent, SIGNAL(overlayCreatedSignal(int,QString)), - this, SLOT(overlayCreated(int,QString))); -} - -void -ViewParamWidget::setFollowCameraId(int id) -{ - for (int i = 0; i < mFollowCameraComboBox->count(); ++i) - { - if (mFollowCameraComboBox->itemText(i).endsWith(QString::number(id))) - { - mFollowCameraComboBox->setCurrentIndex(i); - return; - } - } - - mFollowCameraComboBox->setCurrentIndex(0); -} - -void -ViewParamWidget::overlayCreated(int systemId, const QString& name) -{ - if (!mOverlayLayout.contains(systemId)) - { - return; - } - - SystemViewParamsPtr systemViewParams = mSystemViewParamMap[systemId]; - systemViewParams->displayOverlay().insert(name, true); - - QCheckBox* checkbox = new QCheckBox(this); - checkbox->setAccessibleName(name); - checkbox->setChecked(systemViewParams->displayOverlay().value(name)); - mOverlayLayout[systemId]->addRow(name, checkbox); - - mOverlaySignalMapper->setMapping(checkbox, checkbox); - - connect(checkbox, SIGNAL(clicked()), - mOverlaySignalMapper, SLOT(map())); - connect(mOverlaySignalMapper, SIGNAL(mapped(QWidget*)), - systemViewParams.data(), SLOT(toggleOverlay(QWidget*))); -} - -void -ViewParamWidget::systemCreated(UASInterface *uas) -{ - addTab(uas->getUASID()); - - QString text("MAV "); - text += QString::number(uas->getUASID()); - mFollowCameraComboBox->addItem(text); -} - -void -ViewParamWidget::setpointsCheckBoxToggled(int state) -{ - if (state == Qt::Checked) - { - mSetpointHistoryLengthSpinBox->setEnabled(true); - } - else - { - mSetpointHistoryLengthSpinBox->setEnabled(false); - } -} - -void -ViewParamWidget::showImageryParamDialog(void) -{ - ImageryParamDialog::getImageryParams(mGlobalViewParams); -} - -void -ViewParamWidget::buildLayout(QVBoxLayout* layout) -{ - mFollowCameraComboBox->addItem("None"); - - QComboBox* frameComboBox = new QComboBox(this); - frameComboBox->addItem("Local"); - frameComboBox->addItem("Global"); - - QCheckBox* terrainModelCheckBox = new QCheckBox(this); - terrainModelCheckBox->setChecked(mGlobalViewParams->displayTerrain()); - - QCheckBox* worldGridCheckBox = new QCheckBox(this); - worldGridCheckBox->setChecked(mGlobalViewParams->displayWorldGrid()); - - QPushButton* imageryButton = new QPushButton(this); - imageryButton->setText("View"); - - QMapIterator it(mSystemViewParamMap); - while (it.hasNext()) - { - QString text("MAV "); - text += QString::number(it.key()); - mFollowCameraComboBox->addItem(text); - - addTab(it.key()); - } - - QFormLayout* formLayout = new QFormLayout; - formLayout->addRow(tr("Follow Camera"), mFollowCameraComboBox); - formLayout->addRow(tr("Frame"), frameComboBox); - formLayout->addRow(tr("Terrain"), terrainModelCheckBox); - formLayout->addRow(tr("World Grid"), worldGridCheckBox); - formLayout->addRow(tr("Imagery Options"), imageryButton); - - layout->addLayout(formLayout); - layout->addWidget(mTabWidget); - - // connect signals/slots - connect(mFollowCameraComboBox, SIGNAL(currentIndexChanged(const QString&)), - mGlobalViewParams.data(), SLOT(followCameraChanged(const QString&))); - connect(frameComboBox, SIGNAL(currentIndexChanged(const QString&)), - mGlobalViewParams.data(), SLOT(frameChanged(const QString&))); - connect(terrainModelCheckBox, SIGNAL(stateChanged(int)), - mGlobalViewParams.data(), SLOT(toggleTerrain(int))); - connect(worldGridCheckBox, SIGNAL(stateChanged(int)), - mGlobalViewParams.data(), SLOT(toggleWorldGrid(int))); - connect(imageryButton, SIGNAL(clicked()), - this, SLOT(showImageryParamDialog())); -// connect(imageryComboBox, SIGNAL(currentIndexChanged(int)), -// mGlobalViewParams.data(), SLOT(imageryTypeChanged(int))); -} - -void -ViewParamWidget::addTab(int systemId) -{ - // add widgets that configure system-specific parameters - SystemViewParamsPtr systemViewParams = mSystemViewParamMap[systemId]; - - QWidget* page = new QWidget; - - QCheckBox* colorPointCloudCheckBox = new QCheckBox(this); - colorPointCloudCheckBox->setChecked(systemViewParams->colorPointCloudByDistance()); - - QCheckBox* localGridCheckBox = new QCheckBox(this); - localGridCheckBox->setChecked(systemViewParams->displayLocalGrid()); - - QComboBox* modelComboBox = new QComboBox(this); - for (int i = 0; i < systemViewParams->modelNames().size(); ++i) - { - modelComboBox->addItem(systemViewParams->modelNames().at(i)); - } - - QCheckBox* obstacleListCheckBox = new QCheckBox(this); - obstacleListCheckBox->setChecked(systemViewParams->displayObstacleList()); - - QCheckBox* plannedPathCheckBox = new QCheckBox(this); - plannedPathCheckBox->setChecked(systemViewParams->displayPlannedPath()); - - QCheckBox* pointCloudCheckBox = new QCheckBox(this); - pointCloudCheckBox->setChecked(systemViewParams->displayPointCloud()); - - QCheckBox* rgbdCheckBox = new QCheckBox(this); - rgbdCheckBox->setChecked(systemViewParams->displayRGBD()); - - QCheckBox* setpointsCheckBox = new QCheckBox(this); - setpointsCheckBox->setChecked(systemViewParams->displaySetpoints()); - - mSetpointHistoryLengthSpinBox = new QSpinBox(this); - mSetpointHistoryLengthSpinBox->setRange(1, 10000); - mSetpointHistoryLengthSpinBox->setSingleStep(10); - mSetpointHistoryLengthSpinBox->setValue(systemViewParams->setpointHistoryLength()); - mSetpointHistoryLengthSpinBox->setEnabled(systemViewParams->displaySetpoints()); - - QCheckBox* targetCheckBox = new QCheckBox(this); - targetCheckBox->setChecked(systemViewParams->displayTarget()); - - QCheckBox* trailsCheckBox = new QCheckBox(this); - trailsCheckBox->setChecked(systemViewParams->displayTrails()); - - QCheckBox* waypointsCheckBox = new QCheckBox(this); - waypointsCheckBox->setChecked(systemViewParams->displayWaypoints()); - - QGroupBox* overlayGroupBox = new QGroupBox(tr("Overlays"), this); - mOverlayLayout[systemId] = new QFormLayout; - overlayGroupBox->setLayout(mOverlayLayout[systemId]); - - QFormLayout* formLayout = new QFormLayout; - page->setLayout(formLayout); - - formLayout->addRow(tr("Color Point Cloud"), colorPointCloudCheckBox); - formLayout->addRow(tr("Local Grid"), localGridCheckBox); - formLayout->addRow(tr("Model"), modelComboBox); - formLayout->addRow(tr("Obstacles"), obstacleListCheckBox); - formLayout->addRow(tr("Planned Path"), plannedPathCheckBox); - formLayout->addRow(tr("Point Cloud"), pointCloudCheckBox); - formLayout->addRow(tr("RGBD"), rgbdCheckBox); - formLayout->addRow(tr("Setpoints"), setpointsCheckBox); - formLayout->addRow(tr("Setpoint History Length"), mSetpointHistoryLengthSpinBox); - formLayout->addRow(tr("Target"), targetCheckBox); - formLayout->addRow(tr("Trails"), trailsCheckBox); - formLayout->addRow(tr("Waypoints"), waypointsCheckBox); - formLayout->addRow(overlayGroupBox); - - QString label("MAV "); - label += QString::number(systemId); - - mTabWidget->addTab(page, label); - - // connect signals / slots - connect(colorPointCloudCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleColorPointCloud(int))); - connect(localGridCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleLocalGrid(int))); - connect(modelComboBox, SIGNAL(currentIndexChanged(int)), - systemViewParams.data(), SLOT(modelChanged(int))); - connect(obstacleListCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleObstacleList(int))); - connect(plannedPathCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(togglePlannedPath(int))); - connect(pointCloudCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(togglePointCloud(int))); - connect(rgbdCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleRGBD(int))); - connect(setpointsCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleSetpoints(int))); - connect(setpointsCheckBox, SIGNAL(stateChanged(int)), - this, SLOT(setpointsCheckBoxToggled(int))); - connect(mSetpointHistoryLengthSpinBox, SIGNAL(valueChanged(int)), - systemViewParams.data(), SLOT(setSetpointHistoryLength(int))); - connect(targetCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleTarget(int))); - connect(trailsCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleTrails(int))); - connect(waypointsCheckBox, SIGNAL(stateChanged(int)), - systemViewParams.data(), SLOT(toggleWaypoints(int))); -} diff --git a/src/ui/map3D/ViewParamWidget.h b/src/ui/map3D/ViewParamWidget.h deleted file mode 100644 index d10af19d20c2bd58a750b0785cc0eafae9f4d1a9..0000000000000000000000000000000000000000 --- a/src/ui/map3D/ViewParamWidget.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifndef VIEWPARAMWIDGET_H -#define VIEWPARAMWIDGET_H - -#include -#include -#include -#include -#include -#include -#include - -#include "GlobalViewParams.h" -#include "SystemViewParams.h" - -class UASInterface; - -class ViewParamWidget : public QDockWidget -{ - Q_OBJECT - -public: - ViewParamWidget(GlobalViewParamsPtr& globalViewParams, - QMap& systemViewParamMap, - QWidget* parent = 0, QWidget* mainWindow = 0); - - void setFollowCameraId(int id); - -signals: - -private slots: - void overlayCreated(int systemId, const QString& name); - void systemCreated(UASInterface* uas); - void setpointsCheckBoxToggled(int state); - void showImageryParamDialog(void); - -private: - void buildLayout(QVBoxLayout* layout); - void addTab(int systemId); - - // view parameters - GlobalViewParamsPtr mGlobalViewParams; - QMap& mSystemViewParamMap; - - // parent widget - QWidget* mParent; - - // child widgets - QComboBox* mFollowCameraComboBox; - QSpinBox* mSetpointHistoryLengthSpinBox; - QMap mOverlayLayout; - QTabWidget* mTabWidget; - - QSignalMapper* mOverlaySignalMapper; -}; - -#endif // VIEWPARAMWIDGET_H diff --git a/src/ui/map3D/WaypointGroupNode.cc b/src/ui/map3D/WaypointGroupNode.cc deleted file mode 100644 index 1357b59862184181138be3bd44330963a6293da2..0000000000000000000000000000000000000000 --- a/src/ui/map3D/WaypointGroupNode.cc +++ /dev/null @@ -1,218 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class WaypointGroupNode. - * - * @author Lionel Heng - * - */ - -#include "WaypointGroupNode.h" - -#include -#include -#include - -#include "Imagery.h" -#include "UASManager.h" - -WaypointGroupNode::WaypointGroupNode(const QColor& color) - : mColor(color) -{ - -} - -void -WaypointGroupNode::init(void) -{ - -} - -void -WaypointGroupNode::update(UASInterface* uas, MAV_FRAME frame) -{ - if (!uas) - { - return; - } - - double robotX = 0.0; - double robotY = 0.0; - double robotZ = 0.0; - if (frame == MAV_FRAME_GLOBAL) - { - double latitude = uas->getLatitude(); - double longitude = uas->getLongitude(); - double altitude = uas->getAltitudeAMSL(); - - QString utmZone; - Imagery::LLtoUTM(latitude, longitude, robotX, robotY, utmZone); - robotZ = -altitude; - } - else if (frame == MAV_FRAME_GLOBAL_RELATIVE_ALT) - { - double latitude = uas->getLatitude(); - double longitude = uas->getLongitude(); - double altitude = uas->getAltitudeRelative(); - - QString utmZone; - Imagery::LLtoUTM(latitude, longitude, robotX, robotY, utmZone); - robotZ = -altitude; - } - else if (frame == MAV_FRAME_LOCAL_NED) - { - robotX = uas->getLocalX(); - robotY = uas->getLocalY(); - robotZ = uas->getLocalZ(); - } - - if (getNumChildren() > 0) - { - removeChild(0, getNumChildren()); - } - - const QList& list = uas->getWaypointManager()->getWaypointEditableList(); - - for (int i = 0; i < list.size(); i++) - { - Waypoint* wp = list.at(i); - - double wpX, wpY, wpZ; - getPosition(wp, wpX, wpY, wpZ); - double wpYaw = osg::DegreesToRadians(wp->getYaw()); - - osg::ref_ptr group = new osg::Group; - - // cone indicates waypoint orientation - osg::ref_ptr sd = new osg::ShapeDrawable; - double coneRadius = wp->getAcceptanceRadius() / 2.0; - osg::ref_ptr cone = - new osg::Cone(osg::Vec3d(wpZ, 0.0, 0.0), - coneRadius, wp->getAcceptanceRadius() * 2.0); - - sd->setShape(cone); - sd->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - - if (wp->getCurrent()) - { - sd->setColor(osg::Vec4(1.0f, 0.8f, 0.0f, 1.0f)); - } - else - { - sd->setColor(osg::Vec4(mColor.redF(), mColor.greenF(), - mColor.blueF(), 0.5f)); - } - - osg::ref_ptr geode = new osg::Geode; - geode->addDrawable(sd); - - osg::ref_ptr pat = - new osg::PositionAttitudeTransform; - pat->addChild(geode); - pat->setAttitude(osg::Quat(wpYaw - M_PI_2, osg::Vec3d(1.0f, 0.0f, 0.0f), - M_PI_2, osg::Vec3d(0.0f, 1.0f, 0.0f), - 0.0, osg::Vec3d(0.0f, 0.0f, 1.0f))); - group->addChild(pat); - - // cylinder indicates waypoint position - sd = new osg::ShapeDrawable; - osg::ref_ptr cylinder = - new osg::Cylinder(osg::Vec3d(0.0, 0.0, -wpZ / 2.0), - wp->getAcceptanceRadius(), - fabs(wpZ)); - - sd->setShape(cylinder); - sd->getOrCreateStateSet()->setMode(GL_BLEND, osg::StateAttribute::ON); - - sd->setColor(osg::Vec4(mColor.redF(), mColor.greenF(), - mColor.blueF(), 0.5f)); - - geode = new osg::Geode; - geode->addDrawable(sd); - group->addChild(geode); - - char wpLabel[10]; - sprintf(wpLabel, "wp%d", i); - group->setName(wpLabel); - - if (i < list.size() - 1) - { - double nextWpX, nextWpY, nextWpZ; - getPosition(list.at(i + 1), nextWpX, nextWpY, nextWpZ); - - osg::ref_ptr geometry = new osg::Geometry; - osg::ref_ptr vertices = new osg::Vec3dArray; - vertices->push_back(osg::Vec3d(0.0, 0.0, -wpZ)); - vertices->push_back(osg::Vec3d(nextWpY - wpY, - nextWpX - wpX, - -nextWpZ)); - geometry->setVertexArray(vertices); - - osg::ref_ptr colors = new osg::Vec4Array; - colors->push_back(osg::Vec4(mColor.redF(), mColor.greenF(), - mColor.blueF(), 0.5f)); - geometry->setColorArray(colors); - geometry->setColorBinding(osg::Geometry::BIND_OVERALL); - - geometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::LINES, 0, 2)); - - osg::ref_ptr linewidth(new osg::LineWidth()); - linewidth->setWidth(2.0f); - geometry->getOrCreateStateSet()->setAttributeAndModes(linewidth, osg::StateAttribute::ON); - geometry->getOrCreateStateSet()->setMode(GL_LIGHTING, osg::StateAttribute::OFF); - - geode->addDrawable(geometry); - } - - pat = new osg::PositionAttitudeTransform; - pat->setPosition(osg::Vec3d(wpY - robotY, - wpX - robotX, - robotZ)); - - addChild(pat); - pat->addChild(group); - } -} - -void -WaypointGroupNode::getPosition(Waypoint* wp, double &x, double &y, double &z) -{ - if (wp->getFrame() == MAV_FRAME_GLOBAL) - { - double latitude = wp->getY(); - double longitude = wp->getX(); - double altitude = wp->getZ(); - - QString utmZone; - Imagery::LLtoUTM(latitude, longitude, x, y, utmZone); - z = -altitude; - } - else if (wp->getFrame() == MAV_FRAME_LOCAL_NED) - { - x = wp->getX(); - y = wp->getY(); - z = wp->getZ(); - } -} diff --git a/src/ui/map3D/WaypointGroupNode.h b/src/ui/map3D/WaypointGroupNode.h deleted file mode 100644 index 606accbac23bcfd744dc31b204e8138616afa6ef..0000000000000000000000000000000000000000 --- a/src/ui/map3D/WaypointGroupNode.h +++ /dev/null @@ -1,53 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class WaypointGroupNode. - * - * @author Lionel Heng - * - */ - -#ifndef WAYPOINTGROUPNODE_H -#define WAYPOINTGROUPNODE_H - -#include - -#include "UASInterface.h" - -class WaypointGroupNode : public osg::Group -{ -public: - WaypointGroupNode(const QColor& color); - - void init(void); - void update(UASInterface* uas, MAV_FRAME frame); - -private: - void getPosition(Waypoint* wp, double& x, double& y, double& z); - - QColor mColor; -}; - -#endif // WAYPOINTGROUPNODE_H diff --git a/src/ui/map3D/WebImage.cc b/src/ui/map3D/WebImage.cc deleted file mode 100644 index c638b811fa9b32f71a7e1b420dd6f53e8b84a911..0000000000000000000000000000000000000000 --- a/src/ui/map3D/WebImage.cc +++ /dev/null @@ -1,166 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class WebImage. - * - * @author Lionel Heng - * - */ - -#include "WebImage.h" - -#include -#include - -WebImage::WebImage() - : mState(WebImage::UNINITIALIZED) - , mSourceURL("") - , mImage(0) - , mLastReference(0) - , mSyncFlag(false) -{ - -} - -void -WebImage::clear(void) -{ - mImage.reset(); - mSourceURL.clear(); - mState = WebImage::UNINITIALIZED; - mLastReference = 0; -} - -WebImage::State -WebImage::getState(void) const -{ - return mState; -} - -void -WebImage::setState(State state) -{ - mState = state; -} - -const QString& -WebImage::getSourceURL(void) const -{ - return mSourceURL; -} - -void -WebImage::setSourceURL(const QString& url) -{ - mSourceURL = url; -} - -uchar* -WebImage::getImageData(void) const -{ - return mImage->scanLine(0); -} - -bool -WebImage::setData(const QByteArray& data) -{ - QImage tempImage; - if (tempImage.loadFromData(data)) - { - if (mImage.isNull()) - { - mImage.reset(new QImage); - } - *mImage = QGLWidget::convertToGLFormat(tempImage); - - return true; - } - else - { - return false; - } -} - -bool -WebImage::setData(const QString& filename) -{ - QImage tempImage; - if (tempImage.load(filename)) - { - if (mImage.isNull()) - { - mImage.reset(new QImage); - } - *mImage = QGLWidget::convertToGLFormat(tempImage); - - return true; - } - else - { - return false; - } -} - -int -WebImage::getWidth(void) const -{ - return mImage->width(); -} - -int -WebImage::getHeight(void) const -{ - return mImage->height(); -} - -int -WebImage::getByteCount(void) const -{ - return mImage->byteCount(); -} - -quint64 -WebImage::getLastReference(void) const -{ - return mLastReference; -} - -void -WebImage::setLastReference(quint64 value) -{ - mLastReference = value; -} - -bool -WebImage::getSyncFlag(void) const -{ - return mSyncFlag; -} - -void -WebImage::setSyncFlag(bool onoff) -{ - mSyncFlag = onoff; -} diff --git a/src/ui/map3D/WebImage.h b/src/ui/map3D/WebImage.h deleted file mode 100644 index 6b317dce1d2cb39fde402c05af3a5f9657386a36..0000000000000000000000000000000000000000 --- a/src/ui/map3D/WebImage.h +++ /dev/null @@ -1,83 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class WebImage. - * - * @author Lionel Heng - * - */ - -#ifndef WEBIMAGE_H -#define WEBIMAGE_H - -#include -#include -#include -#include - -class WebImage -{ -public: - WebImage(); - - void clear(void); - - enum State { - UNINITIALIZED = 0, - REQUESTED = 1, - READY = 2 - }; - - State getState(void) const; - void setState(State state); - - const QString& getSourceURL(void) const; - void setSourceURL(const QString& url); - - uchar* getImageData(void) const; - bool setData(const QByteArray& data); - bool setData(const QString& filename); - - int getWidth(void) const; - int getHeight(void) const; - int getByteCount(void) const; - - quint64 getLastReference(void) const; - void setLastReference(quint64 value); - - bool getSyncFlag(void) const; - void setSyncFlag(bool onoff); - -private: - State mState; - QString mSourceURL; - QScopedPointer mImage; - quint64 mLastReference; - bool mSyncFlag; -}; - -typedef QSharedPointer WebImagePtr; - -#endif // WEBIMAGE_H diff --git a/src/ui/map3D/WebImageCache.cc b/src/ui/map3D/WebImageCache.cc deleted file mode 100644 index 42efc5bc59e375f10e5d8a3cd6f6f44575083779..0000000000000000000000000000000000000000 --- a/src/ui/map3D/WebImageCache.cc +++ /dev/null @@ -1,180 +0,0 @@ -/*===================================================================== - -QGroundControl Open Source Ground Control Station - -(c) 2009, 2010 QGROUNDCONTROL PROJECT - -This file is part of the QGROUNDCONTROL project - - QGROUNDCONTROL is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - QGROUNDCONTROL is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with QGROUNDCONTROL. If not, see . - -======================================================================*/ - -/** - * @file - * @brief Definition of the class WebImageCache. - * - * @author Lionel Heng - * - */ - -#include "WebImageCache.h" - -#include -#include -#include - -WebImageCache::WebImageCache(QObject* parent, int cacheSize) - : QObject(parent) - , mCacheSize(cacheSize) - , mCurrentReference(0) - , mNetworkManager(new QNetworkAccessManager) -{ - for (int i = 0; i < mCacheSize; ++i) - { - WebImagePtr image(new WebImage); - - mWebImages.push_back(image); - } - - connect(mNetworkManager.data(), SIGNAL(finished(QNetworkReply*)), - this, SLOT(downloadFinished(QNetworkReply*))); -} - -QPair -WebImageCache::lookup(const QString& url) -{ - QPair cacheEntry; - - for (int i = 0; i < mWebImages.size(); ++i) - { - WebImagePtr& image = mWebImages[i]; - - if (image->getState() != WebImage::UNINITIALIZED && - image->getSourceURL() == url) - { - cacheEntry.first = image; - cacheEntry.second = i; - break; - } - } - - if (cacheEntry.first.isNull()) - { - for (int i = 0; i < mWebImages.size(); ++i) - { - WebImagePtr& image = mWebImages[i]; - - // get uninitialized image - if (image->getState() == WebImage::UNINITIALIZED) - { - cacheEntry.first = image; - cacheEntry.second = i; - break; - } - // get oldest image - else if (image->getState() == WebImage::READY && - (cacheEntry.first.isNull() || - image->getLastReference() < - cacheEntry.first->getLastReference())) - { - cacheEntry.first = image; - cacheEntry.second = i; - } - } - - if (cacheEntry.first.isNull()) - { - return qMakePair(WebImagePtr(), -1); - } - else - { - if (cacheEntry.first->getState() == WebImage::READY) - { - cacheEntry.first->clear(); - } - cacheEntry.first->setSourceURL(url); - cacheEntry.first->setLastReference(mCurrentReference); - ++mCurrentReference; - cacheEntry.first->setState(WebImage::REQUESTED); - - if (url.left(4).compare("http") == 0) - { - mNetworkManager->get(QNetworkRequest(QUrl(url))); - } - else - { - if (cacheEntry.first->setData(url)) - { - cacheEntry.first->setSyncFlag(true); - cacheEntry.first->setState(WebImage::READY); - } - else - { - cacheEntry.first->setState(WebImage::UNINITIALIZED); - } - } - - return cacheEntry; - } - } - else - { - if (cacheEntry.first->getState() == WebImage::READY) - { - cacheEntry.first->setLastReference(mCurrentReference); - ++mCurrentReference; - return cacheEntry; - } - else - { - return qMakePair(WebImagePtr(), -1); - } - } -} - -WebImagePtr -WebImageCache::at(int index) const -{ - return mWebImages[index]; -} - -void -WebImageCache::downloadFinished(QNetworkReply* reply) -{ - reply->deleteLater(); - - if (reply->error() != QNetworkReply::NoError) - { - return; - } - QVariant attribute = reply->attribute(QNetworkRequest::RedirectionTargetAttribute); - if (attribute.isValid()) - { - return; - } - - WebImagePtr image; - foreach(image, mWebImages) - { - if (reply->url().toString() == image->getSourceURL()) - { - image->setData(reply->readAll()); - image->setSyncFlag(true); - image->setState(WebImage::READY); - - return; - } - } -} diff --git a/src/ui/map3D/gpl.cc b/src/ui/map3D/gpl.cc deleted file mode 100644 index ae0240c64bac8d2743bea775d9a01caa4ee42da8..0000000000000000000000000000000000000000 --- a/src/ui/map3D/gpl.cc +++ /dev/null @@ -1,333 +0,0 @@ -#include "gpl.h" - -namespace qgc -{ - -double hypot3(double x, double y, double z) -{ - return sqrt(square(x) + square(y) + square(z)); -} - -float hypot3f(float x, float y, float z) -{ - return sqrtf(square(x) + square(y) + square(z)); -} - -double d2r(double deg) -{ - return deg / 180.0 * M_PI; -} - -float d2r(float deg) -{ - return deg / 180.0f * M_PI; -} - -double r2d(double rad) -{ - return rad / M_PI * 180.0; -} - -float r2d(float rad) -{ - return rad / M_PI * 180.0f; -} - -float colormapAutumn[128][3] = -{ - {1.0f,0.f,0.f}, - {1.0f,0.007874f,0.f}, - {1.0f,0.015748f,0.f}, - {1.0f,0.023622f,0.f}, - {1.0f,0.031496f,0.f}, - {1.0f,0.03937f,0.f}, - {1.0f,0.047244f,0.f}, - {1.0f,0.055118f,0.f}, - {1.0f,0.062992f,0.f}, - {1.0f,0.070866f,0.f}, - {1.0f,0.07874f,0.f}, - {1.0f,0.086614f,0.f}, - {1.0f,0.094488f,0.f}, - {1.0f,0.10236f,0.f}, - {1.0f,0.11024f,0.f}, - {1.0f,0.11811f,0.f}, - {1.0f,0.12598f,0.f}, - {1.0f,0.13386f,0.f}, - {1.0f,0.14173f,0.f}, - {1.0f,0.14961f,0.f}, - {1.0f,0.15748f,0.f}, - {1.0f,0.16535f,0.f}, - {1.0f,0.17323f,0.f}, - {1.0f,0.1811f,0.f}, - {1.0f,0.18898f,0.f}, - {1.0f,0.19685f,0.f}, - {1.0f,0.20472f,0.f}, - {1.0f,0.2126f,0.f}, - {1.0f,0.22047f,0.f}, - {1.0f,0.22835f,0.f}, - {1.0f,0.23622f,0.f}, - {1.0f,0.24409f,0.f}, - {1.0f,0.25197f,0.f}, - {1.0f,0.25984f,0.f}, - {1.0f,0.26772f,0.f}, - {1.0f,0.27559f,0.f}, - {1.0f,0.28346f,0.f}, - {1.0f,0.29134f,0.f}, - {1.0f,0.29921f,0.f}, - {1.0f,0.30709f,0.f}, - {1.0f,0.31496f,0.f}, - {1.0f,0.32283f,0.f}, - {1.0f,0.33071f,0.f}, - {1.0f,0.33858f,0.f}, - {1.0f,0.34646f,0.f}, - {1.0f,0.35433f,0.f}, - {1.0f,0.3622f,0.f}, - {1.0f,0.37008f,0.f}, - {1.0f,0.37795f,0.f}, - {1.0f,0.38583f,0.f}, - {1.0f,0.3937f,0.f}, - {1.0f,0.40157f,0.f}, - {1.0f,0.40945f,0.f}, - {1.0f,0.41732f,0.f}, - {1.0f,0.4252f,0.f}, - {1.0f,0.43307f,0.f}, - {1.0f,0.44094f,0.f}, - {1.0f,0.44882f,0.f}, - {1.0f,0.45669f,0.f}, - {1.0f,0.46457f,0.f}, - {1.0f,0.47244f,0.f}, - {1.0f,0.48031f,0.f}, - {1.0f,0.48819f,0.f}, - {1.0f,0.49606f,0.f}, - {1.0f,0.50394f,0.f}, - {1.0f,0.51181f,0.f}, - {1.0f,0.51969f,0.f}, - {1.0f,0.52756f,0.f}, - {1.0f,0.53543f,0.f}, - {1.0f,0.54331f,0.f}, - {1.0f,0.55118f,0.f}, - {1.0f,0.55906f,0.f}, - {1.0f,0.56693f,0.f}, - {1.0f,0.5748f,0.f}, - {1.0f,0.58268f,0.f}, - {1.0f,0.59055f,0.f}, - {1.0f,0.59843f,0.f}, - {1.0f,0.6063f,0.f}, - {1.0f,0.61417f,0.f}, - {1.0f,0.62205f,0.f}, - {1.0f,0.62992f,0.f}, - {1.0f,0.6378f,0.f}, - {1.0f,0.64567f,0.f}, - {1.0f,0.65354f,0.f}, - {1.0f,0.66142f,0.f}, - {1.0f,0.66929f,0.f}, - {1.0f,0.67717f,0.f}, - {1.0f,0.68504f,0.f}, - {1.0f,0.69291f,0.f}, - {1.0f,0.70079f,0.f}, - {1.0f,0.70866f,0.f}, - {1.0f,0.71654f,0.f}, - {1.0f,0.72441f,0.f}, - {1.0f,0.73228f,0.f}, - {1.0f,0.74016f,0.f}, - {1.0f,0.74803f,0.f}, - {1.0f,0.75591f,0.f}, - {1.0f,0.76378f,0.f}, - {1.0f,0.77165f,0.f}, - {1.0f,0.77953f,0.f}, - {1.0f,0.7874f,0.f}, - {1.0f,0.79528f,0.f}, - {1.0f,0.80315f,0.f}, - {1.0f,0.81102f,0.f}, - {1.0f,0.8189f,0.f}, - {1.0f,0.82677f,0.f}, - {1.0f,0.83465f,0.f}, - {1.0f,0.84252f,0.f}, - {1.0f,0.85039f,0.f}, - {1.0f,0.85827f,0.f}, - {1.0f,0.86614f,0.f}, - {1.0f,0.87402f,0.f}, - {1.0f,0.88189f,0.f}, - {1.0f,0.88976f,0.f}, - {1.0f,0.89764f,0.f}, - {1.0f,0.90551f,0.f}, - {1.0f,0.91339f,0.f}, - {1.0f,0.92126f,0.f}, - {1.0f,0.92913f,0.f}, - {1.0f,0.93701f,0.f}, - {1.0f,0.94488f,0.f}, - {1.0f,0.95276f,0.f}, - {1.0f,0.96063f,0.f}, - {1.0f,0.9685f,0.f}, - {1.0f,0.97638f,0.f}, - {1.0f,0.98425f,0.f}, - {1.0f,0.99213f,0.f}, - {1.0f,1.0f,0.0f} -}; - - -float colormapJet[128][3] = -{ - {0.0f,0.0f,0.53125f}, - {0.0f,0.0f,0.5625f}, - {0.0f,0.0f,0.59375f}, - {0.0f,0.0f,0.625f}, - {0.0f,0.0f,0.65625f}, - {0.0f,0.0f,0.6875f}, - {0.0f,0.0f,0.71875f}, - {0.0f,0.0f,0.75f}, - {0.0f,0.0f,0.78125f}, - {0.0f,0.0f,0.8125f}, - {0.0f,0.0f,0.84375f}, - {0.0f,0.0f,0.875f}, - {0.0f,0.0f,0.90625f}, - {0.0f,0.0f,0.9375f}, - {0.0f,0.0f,0.96875f}, - {0.0f,0.0f,1.0f}, - {0.0f,0.03125f,1.0f}, - {0.0f,0.0625f,1.0f}, - {0.0f,0.09375f,1.0f}, - {0.0f,0.125f,1.0f}, - {0.0f,0.15625f,1.0f}, - {0.0f,0.1875f,1.0f}, - {0.0f,0.21875f,1.0f}, - {0.0f,0.25f,1.0f}, - {0.0f,0.28125f,1.0f}, - {0.0f,0.3125f,1.0f}, - {0.0f,0.34375f,1.0f}, - {0.0f,0.375f,1.0f}, - {0.0f,0.40625f,1.0f}, - {0.0f,0.4375f,1.0f}, - {0.0f,0.46875f,1.0f}, - {0.0f,0.5f,1.0f}, - {0.0f,0.53125f,1.0f}, - {0.0f,0.5625f,1.0f}, - {0.0f,0.59375f,1.0f}, - {0.0f,0.625f,1.0f}, - {0.0f,0.65625f,1.0f}, - {0.0f,0.6875f,1.0f}, - {0.0f,0.71875f,1.0f}, - {0.0f,0.75f,1.0f}, - {0.0f,0.78125f,1.0f}, - {0.0f,0.8125f,1.0f}, - {0.0f,0.84375f,1.0f}, - {0.0f,0.875f,1.0f}, - {0.0f,0.90625f,1.0f}, - {0.0f,0.9375f,1.0f}, - {0.0f,0.96875f,1.0f}, - {0.0f,1.0f,1.0f}, - {0.03125f,1.0f,0.96875f}, - {0.0625f,1.0f,0.9375f}, - {0.09375f,1.0f,0.90625f}, - {0.125f,1.0f,0.875f}, - {0.15625f,1.0f,0.84375f}, - {0.1875f,1.0f,0.8125f}, - {0.21875f,1.0f,0.78125f}, - {0.25f,1.0f,0.75f}, - {0.28125f,1.0f,0.71875f}, - {0.3125f,1.0f,0.6875f}, - {0.34375f,1.0f,0.65625f}, - {0.375f,1.0f,0.625f}, - {0.40625f,1.0f,0.59375f}, - {0.4375f,1.0f,0.5625f}, - {0.46875f,1.0f,0.53125f}, - {0.5f,1.0f,0.5f}, - {0.53125f,1.0f,0.46875f}, - {0.5625f,1.0f,0.4375f}, - {0.59375f,1.0f,0.40625f}, - {0.625f,1.0f,0.375f}, - {0.65625f,1.0f,0.34375f}, - {0.6875f,1.0f,0.3125f}, - {0.71875f,1.0f,0.28125f}, - {0.75f,1.0f,0.25f}, - {0.78125f,1.0f,0.21875f}, - {0.8125f,1.0f,0.1875f}, - {0.84375f,1.0f,0.15625f}, - {0.875f,1.0f,0.125f}, - {0.90625f,1.0f,0.09375f}, - {0.9375f,1.0f,0.0625f}, - {0.96875f,1.0f,0.03125f}, - {1.0f,1.0f,0.0f}, - {1.0f,0.96875f,0.0f}, - {1.0f,0.9375f,0.0f}, - {1.0f,0.90625f,0.0f}, - {1.0f,0.875f,0.0f}, - {1.0f,0.84375f,0.0f}, - {1.0f,0.8125f,0.0f}, - {1.0f,0.78125f,0.0f}, - {1.0f,0.75f,0.0f}, - {1.0f,0.71875f,0.0f}, - {1.0f,0.6875f,0.0f}, - {1.0f,0.65625f,0.0f}, - {1.0f,0.625f,0.0f}, - {1.0f,0.59375f,0.0f}, - {1.0f,0.5625f,0.0f}, - {1.0f,0.53125f,0.0f}, - {1.0f,0.5f,0.0f}, - {1.0f,0.46875f,0.0f}, - {1.0f,0.4375f,0.0f}, - {1.0f,0.40625f,0.0f}, - {1.0f,0.375f,0.0f}, - {1.0f,0.34375f,0.0f}, - {1.0f,0.3125f,0.0f}, - {1.0f,0.28125f,0.0f}, - {1.0f,0.25f,0.0f}, - {1.0f,0.21875f,0.0f}, - {1.0f,0.1875f,0.0f}, - {1.0f,0.15625f,0.0f}, - {1.0f,0.125f,0.0f}, - {1.0f,0.09375f,0.0f}, - {1.0f,0.0625f,0.0f}, - {1.0f,0.03125f,0.0f}, - {1.0f,0.0f,0.0f}, - {0.96875f,0.0f,0.0f}, - {0.9375f,0.0f,0.0f}, - {0.90625f,0.0f,0.0f}, - {0.875f,0.0f,0.0f}, - {0.84375f,0.0f,0.0f}, - {0.8125f,0.0f,0.0f}, - {0.78125f,0.0f,0.0f}, - {0.75f,0.0f,0.0f}, - {0.71875f,0.0f,0.0f}, - {0.6875f,0.0f,0.0f}, - {0.65625f,0.0f,0.0f}, - {0.625f,0.0f,0.0f}, - {0.59375f,0.0f,0.0f}, - {0.5625f,0.0f,0.0f}, - {0.53125f,0.0f,0.0f}, - {0.5f,0.0f,0.0f} -}; - -bool colormap(const QString& name, unsigned char idx, - float& r, float& g, float& b) -{ - if (idx > 127) - { - return false; - } - - if (name.compare("jet") == 0) - { - float* color = colormapJet[idx]; - - r = color[0]; - g = color[1]; - b = color[2]; - - return true; - } - else if (name.compare("autumn") == 0) - { - float* color = colormapAutumn[idx]; - - r = color[0]; - g = color[1]; - b = color[2]; - - return true; - } - - return false; -} - -} diff --git a/src/ui/map3D/gpl.h b/src/ui/map3D/gpl.h deleted file mode 100644 index d5e9ce61aa89f4bcef81e1a7bf4352b5dc079fd2..0000000000000000000000000000000000000000 --- a/src/ui/map3D/gpl.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef GPL_H -#define GPL_H - -#include -#include - -namespace qgc -{ - -template -const T clamp(const T& v, const T& a, const T& b) -{ - return qMin(b, qMax(a, v)); -} - -double hypot3(double x, double y, double z); -float hypot3f(float x, float y, float z); - -template -const T normalizeTheta(const T& theta) -{ - T normTheta = theta; - - while (normTheta < - M_PI) - { - normTheta += 2.0 * M_PI; - } - while (normTheta > M_PI) - { - normTheta -= 2.0 * M_PI; - } - - return normTheta; -} - -double d2r(double deg); -float d2r(float deg); -double r2d(double rad); -float r2d(float rad); - -template -const T square(const T& x) -{ - return x * x; -} - -bool colormap(const QString& name, unsigned char idx, - float& r, float& g, float& b); - -} - -#endif diff --git a/src/ui/mapdisplay/MapDisplay.qml b/src/ui/mapdisplay/MapDisplay.qml new file mode 100644 index 0000000000000000000000000000000000000000..bbf608ea7056e7f104c7641a5f54c156c161ca7a --- /dev/null +++ b/src/ui/mapdisplay/MapDisplay.qml @@ -0,0 +1,217 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Main Map Display + * @author Gus Grubba + */ + +import QtQuick 2.3 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 +import QtQuick.Layouts 1.1 + +import QGroundControl.Palette 1.0 +import QGroundControl.Controls 1.0 +import QGroundControl.FlightControls 1.0 + +Rectangle { + QGCPalette { id: __palette; colorGroupEnabled: true } + id: root + color: Qt.rgba(0,0,0,0); + + property real roll: isNaN(mapEngine.roll) ? 0 : mapEngine.roll + property real pitch: isNaN(mapEngine.pitch) ? 0 : mapEngine.pitch + property bool showWaypointEditor: true + + function getBool(value) { + return value === '0' ? false : true; + } + + function setBool(value) { + return value ? "1" : "0"; + } + + Component.onCompleted: + { + mapTypeMenu.update(); + } + + Menu { + id: mapTypeMenu + title: "Map Type..." + ExclusiveGroup { id: currentMapType } + function setCurrentMap(map) { + for (var i = 0; i < mapBackground.mapItem.supportedMapTypes.length; i++) { + if (map === mapBackground.mapItem.supportedMapTypes[i].name) { + mapBackground.mapItem.activeMapType = mapBackground.mapItem.supportedMapTypes[i] + mapEngine.saveSetting("currentMapType", map); + return; + } + } + } + function addMap(map, checked) { + var mItem = mapTypeMenu.addItem(map); + mItem.checkable = true + mItem.checked = checked + mItem.exclusiveGroup = currentMapType + var menuSlot = function() {setCurrentMap(map);}; + mItem.triggered.connect(menuSlot); + } + function update() { + clear() + var map = '' + if (mapBackground.mapItem.supportedMapTypes.length > 0) + map = mapBackground.mapItem.activeMapType.name; + map = mapEngine.loadSetting("currentMapType", map); + for (var i = 0; i < mapBackground.mapItem.supportedMapTypes.length; i++) { + var name = mapBackground.mapItem.supportedMapTypes[i].name; + addMap(name, map === name); + } + if(map != '') + setCurrentMap(map); + } + + } + + SplitView { + id: splitView + anchors.fill: parent + orientation: Qt.Horizontal + z: 10 + + // This sets the color of the splitter line + handleDelegate: Rectangle { + width: 1 + height: 1 + color: __palette.window + } + + //---------------------------------------------------------------------------------------- + // Map View + QGCMapBackground { + id: mapBackground + Layout.fillWidth: true + Layout.minimumWidth: 300 + heading: isNaN(mapEngine.heading) ? 0 : mapEngine.heading + latitude: 37.803784 // mapEngine.latitude + longitude: -122.462276 // mapEngine.longitude + // Chevron button at upper right corner of Map Display + Item { + id: openWaypoints + anchors.top: mapBackground.top + anchors.right: mapBackground.right + width: 30 + height: 30 + opacity: 0.85 + z: splitView.z + 10 + Image { + id: buttomImg + anchors.fill: parent + source: showWaypointEditor ? "/qml/buttonRight.svg" : "/qml/buttonLeft.svg" + mipmap: true + smooth: true + antialiasing: true + fillMode: Image.PreserveAspectFit + } + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.LeftButton + onClicked: { + if (mouse.button == Qt.LeftButton) + { + showWaypointEditor = !showWaypointEditor + } + } + } + } + } + //---------------------------------------------------------------------------------------- + // Waypoint Editor + QGCWaypointEditor { + id: waypointEditor + Layout.minimumWidth: 200 + visible: showWaypointEditor + } + } + + //-------------------------------------------------------------------------------------------- + // Right click anywhere on the map for a context menu + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.RightButton + onClicked: { + if (mouse.button == Qt.RightButton) + { + mapTypeMenu.popup() + } + } + z: splitView.z + 5 + } + + //-------------------------------------------------------------------------------------------- + // Tool Bar + Rectangle { + id: toolBar + color: Qt.rgba(0,0,0,0) + height: buttonColumn.height + visible: showWaypointEditor + anchors.top: parent.top + anchors.left: parent.left + anchors.topMargin: 40 + anchors.leftMargin: 4 + z: splitView.z + 10 + + ExclusiveGroup { id: mainActionGroup } + + Column { + id: buttonColumn + spacing: 4 + QGCMapToolButton { + width: 50 + height: 50 + imageSource: "/qml/buttonHome.svg" + exclusiveGroup: mainActionGroup + } + QGCMapToolButton { + width: 50 + height: 50 + imageSource: "/qml/buttonHome.svg" + exclusiveGroup: mainActionGroup + } + QGCMapToolButton { + width: 50 + height: 50 + imageSource: "/qml/buttonHome.svg" + exclusiveGroup: mainActionGroup + } + QGCMapToolButton { + width: 50 + height: 50 + imageSource: "/qml/buttonHome.svg" + exclusiveGroup: mainActionGroup + } + } + } +} diff --git a/src/ui/mapdisplay/QGCMapDisplay.cc b/src/ui/mapdisplay/QGCMapDisplay.cc new file mode 100644 index 0000000000000000000000000000000000000000..a76ff737a6f8d107f1be4117f3e06266ebb879e6 --- /dev/null +++ b/src/ui/mapdisplay/QGCMapDisplay.cc @@ -0,0 +1,94 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Main Map Display + * @author Gus Grubba + */ + +#include +#include +#include + +#include "MainWindow.h" +#include "QGCMapDisplay.h" +#include "UASManager.h" + +const char* kMainMapDisplayGroup = "MainMapDisplay"; + +QGCMapDisplay::QGCMapDisplay(QWidget *parent) + : QGCQmlWidgetHolder(parent) +{ + setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); + setObjectName("MainMapDisplay"); + // Get rid of layout default margins + QLayout* pl = layout(); + if(pl) { + pl->setContentsMargins(0,0,0,0); + } +#ifndef __android__ + setMinimumWidth( 380 * MainWindow::pixelSizeFactor()); + setMinimumHeight(400 * MainWindow::pixelSizeFactor()); +#endif + setContextPropertyObject("mapEngine", this); + setSource(QUrl::fromUserInput("qrc:/qml/MapDisplay.qml")); + setVisible(true); +} + +QGCMapDisplay::~QGCMapDisplay() +{ + +} + +void QGCMapDisplay::saveSetting(const QString &name, const QString& value) +{ + QSettings settings; + QString key(kMainMapDisplayGroup); + key += "/" + name; + settings.setValue(key, value); +} + +QString QGCMapDisplay::loadSetting(const QString &name, const QString& defaultValue) +{ + QSettings settings; + QString key(kMainMapDisplayGroup); + key += "/" + name; + return settings.value(key, defaultValue).toString(); +} + +/* + * Internal + */ + +void QGCMapDisplay::showEvent(QShowEvent* event) +{ + // React only to internal (pre-display) events + QWidget::showEvent(event); +} + +void QGCMapDisplay::hideEvent(QHideEvent* event) +{ + // React only to internal (pre-display) events + QWidget::hideEvent(event); +} diff --git a/src/ui/map3D/WebImageCache.h b/src/ui/mapdisplay/QGCMapDisplay.h similarity index 55% rename from src/ui/map3D/WebImageCache.h rename to src/ui/mapdisplay/QGCMapDisplay.h index 136800a5545dcb653b69beea6f2841e3c0e32aaf..86aca81b78f961bf83d68e8c7d752ebb3681be4c 100644 --- a/src/ui/map3D/WebImageCache.h +++ b/src/ui/mapdisplay/QGCMapDisplay.h @@ -2,7 +2,7 @@ QGroundControl Open Source Ground Control Station -(c) 2009, 2010 QGROUNDCONTROL PROJECT +(c) 2009, 2015 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project @@ -23,42 +23,43 @@ This file is part of the QGROUNDCONTROL project /** * @file - * @brief Definition of the class WebImageCache. - * - * @author Lionel Heng - * + * @brief QGC Main Map Display + * @author Gus Grubba */ -#ifndef WEBIMAGECACHE_H -#define WEBIMAGECACHE_H +#ifndef QGCMAPDISPLAY_H +#define QGCMAPDISPLAY_H -#include -#include -#include +#include "QGCQmlWidgetHolder.h" -#include "WebImage.h" +class UASInterface; +class UASWaypointManager; -class WebImageCache : public QObject +class QGCMapDisplay : public QGCQmlWidgetHolder { Q_OBJECT - public: - WebImageCache(QObject* parent, int cacheSize); + QGCMapDisplay(QWidget* parent = NULL); + ~QGCMapDisplay(); + + Q_INVOKABLE void saveSetting (const QString &key, const QString& value); + Q_INVOKABLE QString loadSetting (const QString &key, const QString& defaultValue); - QPair lookup(const QString& url); + /** @brief Start updating widget */ + void showEvent(QShowEvent* event); + /** @brief Stop updating widget */ + void hideEvent(QHideEvent* event); - WebImagePtr at(int index) const; +signals: -private Q_SLOTS: - void downloadFinished(QNetworkReply* reply); +private slots: private: - int mCacheSize; - QVector mWebImages; - quint64 mCurrentReference; +private: + UASWaypointManager* WPM; - QScopedPointer mNetworkManager; }; -#endif // WEBIMAGECACHE_H + +#endif // QGCFLIGHTDISPLAY_H diff --git a/src/ui/mission/QGCMissionNavWaypoint.cc b/src/ui/mission/QGCMissionNavWaypoint.cc index 3d67208114e5731019cc833a422c3374acb74053..79e3a9bfd538b2ba6c70fc2e031e0334795356f3 100644 --- a/src/ui/mission/QGCMissionNavWaypoint.cc +++ b/src/ui/mission/QGCMissionNavWaypoint.cc @@ -41,6 +41,7 @@ void QGCMissionNavWaypoint::updateFrame(MAV_FRAME frame) { case MAV_FRAME_LOCAL_ENU: case MAV_FRAME_LOCAL_NED: + case MAV_FRAME_LOCAL_OFFSET_NED: this->ui->posNSpinBox->show(); this->ui->posESpinBox->show(); this->ui->posDSpinBox->show(); diff --git a/src/ui/px4_configuration/PX4RCCalibration.cc b/src/ui/px4_configuration/PX4RCCalibration.cc index e4df03db45c8b2c0d15c256e20d00c05e47f28a4..7959c76f5b15593616010f4a43a157da72a1eeaa 100644 --- a/src/ui/px4_configuration/PX4RCCalibration.cc +++ b/src/ui/px4_configuration/PX4RCCalibration.cc @@ -30,6 +30,9 @@ #include "PX4RCCalibration.h" #include "UASManager.h" #include "QGCMessageBox.h" +#include "AutoPilotPluginManager.h" + +QGC_LOGGING_CATEGORY(PX4RCCalibrationLog, "PX4RCCalibrationLog") const int PX4RCCalibration::_updateInterval = 150; ///< Interval for timer which updates radio channel widgets const int PX4RCCalibration::_rcCalPWMCenterPoint = ((PX4RCCalibration::_rcCalPWMValidMaxValue - PX4RCCalibration::_rcCalPWMValidMinValue) / 2.0f) + PX4RCCalibration::_rcCalPWMValidMinValue; @@ -45,7 +48,7 @@ const int PX4RCCalibration::_rcCalMinDelta = 100; ///< Amount of del const int PX4RCCalibration::_stickDetectSettleMSecs = 500; -const char* PX4RCCalibration::_imageFilePrefix = ":files/images/px4/calibration/"; +const char* PX4RCCalibration::_imageFilePrefix = ":/res/calibration/"; const char* PX4RCCalibration::_imageFileMode1Dir = "mode1/"; const char* PX4RCCalibration::_imageFileMode2Dir = "mode2/"; const char* PX4RCCalibration::_imageCenter = "radioCenter.png"; @@ -84,8 +87,7 @@ PX4RCCalibration::PX4RCCalibration(QWidget *parent) : _transmitterMode(2), _chanCount(0), _rcCalState(rcCalStateChannelWait), - _mav(NULL), - _paramMgr(NULL), + _uas(NULL), _ui(new Ui::PX4RCCalibration), _unitTestMode(false) { @@ -120,19 +122,19 @@ PX4RCCalibration::PX4RCCalibration(QWidget *parent) : _rgAttitudeControl[4].valueWidget = _ui->flapsValue; // This code assume we already have an active UAS with ready parameters - _mav = UASManager::instance()->getActiveUAS(); - Q_ASSERT(_mav); + _uas = UASManager::instance()->getActiveUAS(); + Q_ASSERT(_uas); // Connect new signals bool fSucceeded; Q_UNUSED(fSucceeded); - fSucceeded = connect(_mav, SIGNAL(remoteControlChannelRawChanged(int,float)), this, SLOT(_remoteControlChannelRawChanged(int,float))); + fSucceeded = connect(_uas, SIGNAL(remoteControlChannelRawChanged(int,float)), this, SLOT(_remoteControlChannelRawChanged(int,float))); Q_ASSERT(fSucceeded); - _paramMgr = _mav->getParamManager(); - Q_ASSERT(_paramMgr); - Q_ASSERT(_paramMgr->parametersReady()); + _autopilot = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uas); + Q_ASSERT(_autopilot); + Q_ASSERT(_autopilot->pluginReady()); connect(_ui->spektrumBind, &QPushButton::clicked, this, &PX4RCCalibration::_spektrumBind); @@ -262,7 +264,7 @@ void PX4RCCalibration::_remoteControlChannelRawChanged(int chan, float fval) // We always update raw values _rcRawValue[chan] = fval; - //qDebug() << "Raw value" << chan << fval; + qCDebug(PX4RCCalibrationLog) << "Raw value" << chan << fval; if (_currentStep == -1) { // Track the receiver channel count by keeping track of how many channels we see @@ -330,7 +332,7 @@ void PX4RCCalibration::_saveAllTrims(void) // trims reset to correct values. for (int i=0; i<_chanCount; i++) { - //qDebug() << "_saveAllTrims trim" << _rcRawValue[i]; + qCDebug(PX4RCCalibrationLog) << "_saveAllTrims trim" << _rcRawValue[i]; _rgChannelInfo[i].rcTrim = _rcRawValue[i]; } _nextStep(); @@ -355,7 +357,7 @@ bool PX4RCCalibration::_stickSettleComplete(int value) if (abs(_stickDetectValue - value) > _rcCalSettleDelta) { // Stick is moving too much to consider stopped - //qDebug() << "_stickSettleComplete still moving, _stickDetectValue:value" << _stickDetectValue << value; + qCDebug(PX4RCCalibrationLog) << "_stickSettleComplete still moving, _stickDetectValue:value" << _stickDetectValue << value; _stickDetectValue = value; _stickDetectSettleStarted = false; @@ -372,7 +374,7 @@ bool PX4RCCalibration::_stickSettleComplete(int value) } else { // Start waiting for the stick to stay settled for _stickDetectSettleWaitMSecs msecs - //qDebug() << "_stickSettleComplete starting settle timer, _stickDetectValue:value" << _stickDetectValue << value; + qCDebug(PX4RCCalibrationLog) << "_stickSettleComplete starting settle timer, _stickDetectValue:value" << _stickDetectValue << value; _stickDetectSettleStarted = true; _stickDetectSettleElapsed.start(); @@ -384,7 +386,7 @@ bool PX4RCCalibration::_stickSettleComplete(int value) void PX4RCCalibration::_inputStickDetect(enum rcCalFunctions function, int channel, int value) { - //qDebug() << "_inputStickDetect function:channel:value" << function << channel << value; + qCDebug(PX4RCCalibrationLog) << "_inputStickDetect function:channel:value" << _rgFunctionInfo[function].parameterName << channel << value; // If this channel is already used in a mapping we can't use it again if (_rgChannelInfo[channel].function != rcCalFunctionMax) { @@ -397,7 +399,7 @@ void PX4RCCalibration::_inputStickDetect(enum rcCalFunctions function, int chann if (abs(_rcValueSave[channel] - value) > _rcCalMoveDelta) { // Stick has moved far enough to consider it as being selected for the function - //qDebug() << "_inputStickDetect starting settle wait, function:channel:value" << function << channel << value; + qCDebug(PX4RCCalibrationLog) << "_inputStickDetect starting settle wait, function:channel:value" << function << channel << value; // Setup up to detect stick being pegged to min or max value _stickDetectChannel = channel; @@ -408,7 +410,7 @@ void PX4RCCalibration::_inputStickDetect(enum rcCalFunctions function, int chann if (_stickSettleComplete(value)) { ChannelInfo* info = &_rgChannelInfo[channel]; - //qDebug() << "_inputStickDetect settle complete, function:channel:value" << function << channel << value; + qCDebug(PX4RCCalibrationLog) << "_inputStickDetect settle complete, function:channel:value" << function << channel << value; // Stick detection is complete. Stick should be at max position. // Map the channel to the function @@ -515,7 +517,7 @@ void PX4RCCalibration::_inputSwitchMinMax(enum rcCalFunctions function, int chan if (value < _rcCalPWMCenterPoint) { int minValue = qMin(_rgChannelInfo[channel].rcMin, value); - //qDebug() << "_inputSwitchMinMax setting min channel:min" << channel << minValue; + qCDebug(PX4RCCalibrationLog) << "_inputSwitchMinMax setting min channel:min" << channel << minValue; _rgChannelInfo[channel].rcMin = minValue; _rgRCValueMonitorWidget[channel]->setMin(minValue); @@ -523,7 +525,7 @@ void PX4RCCalibration::_inputSwitchMinMax(enum rcCalFunctions function, int chan } else { int maxValue = qMax(_rgChannelInfo[channel].rcMax, value); - //qDebug() << "_inputSwitchMinMax setting max channel:max" << channel << maxValue; + qCDebug(PX4RCCalibrationLog) << "_inputSwitchMinMax setting max channel:max" << channel << maxValue; _rgChannelInfo[channel].rcMax = maxValue; _rgRCValueMonitorWidget[channel]->setMax(maxValue); @@ -651,7 +653,7 @@ void PX4RCCalibration::_switchDetect(enum rcCalFunctions function, int channel, _rgFunctionChannelMapping[function] = channel; info->function = function; - //qDebug() << "Function:" << function << "mapped to:" << channel; + qCDebug(PX4RCCalibrationLog) << "Function:" << function << "mapped to:" << channel; if (moveToNextStep) { _nextStep(); @@ -682,7 +684,7 @@ void PX4RCCalibration::_resetInternalCalibrationValues(void) info->rcTrim = PX4RCCalibration::_rcCalPWMCenterPoint; } - // Initialize function mapping to function channel not set + // Initialize attitude function mapping to function channel not set for (size_t i=0; igetDefaultComponentId(); for (size_t i=0; i < crgFlightModeFunctions; i++) { QVariant value; enum rcCalFunctions curFunction = rgFlightModeFunctions[i]; - bool paramFound = _paramMgr->getParameterValue(componentId, _rgFunctionInfo[curFunction].parameterName, value); - Q_ASSERT(paramFound); - Q_UNUSED(paramFound); - bool ok; - int channel = value.toInt(&ok); + int switchChannel = _autopilot->getParameterFact(_rgFunctionInfo[curFunction].parameterName)->value().toInt(&ok); Q_ASSERT(ok); - Q_UNUSED(ok); // Parameter: 1-based channel, 0=not mapped // _rgFunctionChannelMapping: 0-based channel, _chanMax=not mapped - _rgFunctionChannelMapping[curFunction] = (channel == 0) ? _chanMax : channel; - if (channel != 0) { - _rgChannelInfo[channel - 1].function = curFunction; + if (switchChannel != 0) { + qCDebug(PX4RCCalibrationLog) << "Reserving 0-based switch channel" << switchChannel - 1; + _rgFunctionChannelMapping[curFunction] = switchChannel - 1; + _rgChannelInfo[switchChannel - 1].function = curFunction; } } } @@ -726,8 +723,6 @@ void PX4RCCalibration::_resetInternalCalibrationValues(void) /// @brief Sets internal calibration values from the stored parameters void PX4RCCalibration::_setInternalCalibrationValuesFromParameters(void) { - Q_ASSERT(_paramMgr); - // Initialize all function mappings to not set for (size_t i=0; i<_chanMax; i++) { @@ -747,58 +742,36 @@ void PX4RCCalibration::_setInternalCalibrationValuesFromParameters(void) QString maxTpl("RC%1_MAX"); QString trimTpl("RC%1_TRIM"); QString revTpl("RC%1_REV"); - QVariant value; - bool paramFound; + bool convertOk; - int componentId = _paramMgr->getDefaultComponentId(); for (int i = 0; i < _chanMax; ++i) { struct ChannelInfo* info = &_rgChannelInfo[i]; - paramFound = _paramMgr->getParameterValue(componentId, trimTpl.arg(i+1), value); - Q_ASSERT(paramFound); - if (paramFound) { - info->rcTrim = value.toInt(&convertOk); - Q_ASSERT(convertOk); - } + info->rcTrim = _autopilot->getParameterFact(trimTpl.arg(i+1))->value().toInt(&convertOk); + Q_ASSERT(convertOk); - paramFound = _paramMgr->getParameterValue(componentId, minTpl.arg(i+1), value); - Q_ASSERT(paramFound); - if (paramFound) { - info->rcMin = value.toInt(&convertOk); - Q_ASSERT(convertOk); - } + info->rcMin = _autopilot->getParameterFact(minTpl.arg(i+1))->value().toInt(&convertOk); + Q_ASSERT(convertOk); - paramFound = _paramMgr->getParameterValue(componentId, maxTpl.arg(i+1), value); - Q_ASSERT(paramFound); - if (paramFound) { - info->rcMax = value.toInt(&convertOk); - Q_ASSERT(convertOk); - } + info->rcMax = _autopilot->getParameterFact(maxTpl.arg(i+1))->value().toInt(&convertOk); + Q_ASSERT(convertOk); - paramFound = _paramMgr->getParameterValue(componentId, revTpl.arg(i+1), value); - Q_ASSERT(paramFound); - if (paramFound) { - float floatReversed = value.toFloat(&convertOk); - Q_ASSERT(convertOk); - Q_ASSERT(floatReversed == 1.0f || floatReversed == -1.0f); - info->reversed = floatReversed == -1.0f; - } + float floatReversed = _autopilot->getParameterFact(revTpl.arg(i+1))->value().toFloat(&convertOk); + Q_ASSERT(convertOk); + Q_ASSERT(floatReversed == 1.0f || floatReversed == -1.0f); + info->reversed = floatReversed == -1.0f; } for (int i=0; igetParameterValue(componentId, _rgFunctionInfo[i].parameterName, value); - Q_ASSERT(paramFound); - if (paramFound) { - paramChannel = value.toInt(&convertOk); - Q_ASSERT(convertOk); - - if (paramChannel != 0) { - _rgFunctionChannelMapping[i] = paramChannel - 1; - _rgChannelInfo[paramChannel - 1].function = (enum rcCalFunctions)i; - } + paramChannel = _autopilot->getParameterFact(_rgFunctionInfo[i].parameterName)->value().toInt(&convertOk); + Q_ASSERT(convertOk); + + if (paramChannel != 0) { + _rgFunctionChannelMapping[i] = paramChannel - 1; + _rgChannelInfo[paramChannel - 1].function = (enum rcCalFunctions)i; } } @@ -810,7 +783,7 @@ void PX4RCCalibration::_setInternalCalibrationValuesFromParameters(void) void PX4RCCalibration::_spektrumBind(void) { - Q_ASSERT(_mav); + Q_ASSERT(_uas); QMessageBox bindTypeMsg(this); @@ -834,7 +807,7 @@ void PX4RCCalibration::_spektrumBind(void) } else { Q_ASSERT(false); } - _mav->pairRX(0, bindType); + _uas->pairRX(0, bindType); } } @@ -848,7 +821,7 @@ void PX4RCCalibration::_validateCalibration(void) // Validate Min/Max values. Although the channel appears as available we still may // not have good min/max/trim values for it. Set to defaults if needed. if (info->rcMin > _rcCalPWMValidMinValue || info->rcMax < _rcCalPWMValidMaxValue) { - //qDebug() << "_validateCalibration resetting channel" << chan; + qCDebug(PX4RCCalibrationLog) << "_validateCalibration resetting channel" << chan; info->rcMin = _rcCalPWMDefaultMinValue; info->rcMax = _rcCalPWMDefaultMaxValue; info->rcTrim = info->rcMin + ((info->rcMax - info->rcMin) / 2); @@ -874,7 +847,7 @@ void PX4RCCalibration::_validateCalibration(void) } } else { // Unavailable channels are set to defaults - //qDebug() << "_validateCalibration resetting unavailable channel" << chan; + qCDebug(PX4RCCalibrationLog) << "_validateCalibration resetting unavailable channel" << chan; info->rcMin = _rcCalPWMDefaultMinValue; info->rcMax = _rcCalPWMDefaultMaxValue; info->rcTrim = info->rcMin + ((info->rcMax - info->rcMin) / 2); @@ -887,15 +860,12 @@ void PX4RCCalibration::_validateCalibration(void) /// @brief Saves the rc calibration values to the board parameters. void PX4RCCalibration::_writeCalibration(void) { - if (!_mav) return; + if (!_uas) return; - _mav->endRadioControlCalibration(); + _uas->stopCalibration(); _validateCalibration(); - QGCUASParamManagerInterface* paramMgr = _mav->getParamManager(); - Q_ASSERT(paramMgr); - QString minTpl("RC%1_MIN"); QString maxTpl("RC%1_MAX"); QString trimTpl("RC%1_TRIM"); @@ -904,11 +874,12 @@ void PX4RCCalibration::_writeCalibration(void) // Note that the rc parameters are all float, so you must cast to float in order to get the right QVariant for (int chan = 0; chan<_chanMax; chan++) { struct ChannelInfo* info = &_rgChannelInfo[chan]; - int oneBasedChannel = chan + 1; - paramMgr->setPendingParam(0, trimTpl.arg(oneBasedChannel), (float)info->rcTrim); - paramMgr->setPendingParam(0, minTpl.arg(oneBasedChannel), (float)info->rcMin); - paramMgr->setPendingParam(0, maxTpl.arg(oneBasedChannel), (float)info->rcMax); - paramMgr->setPendingParam(0, revTpl.arg(oneBasedChannel), info->reversed ? -1.0f : 1.0f); + int oneBasedChannel = chan + 1; + + _autopilot->getParameterFact(trimTpl.arg(oneBasedChannel))->setValue((float)info->rcTrim); + _autopilot->getParameterFact(minTpl.arg(oneBasedChannel))->setValue((float)info->rcMin); + _autopilot->getParameterFact(maxTpl.arg(oneBasedChannel))->setValue((float)info->rcMax); + _autopilot->getParameterFact(revTpl.arg(oneBasedChannel))->setValue(info->reversed ? -1.0f : 1.0f); } // Write function mapping parameters @@ -921,18 +892,16 @@ void PX4RCCalibration::_writeCalibration(void) // Note that the channel value is 1-based paramChannel = _rgFunctionChannelMapping[i] + 1; } - paramMgr->setPendingParam(0, _rgFunctionInfo[i].parameterName, paramChannel); + _autopilot->getParameterFact(_rgFunctionInfo[i].parameterName)->setValue(paramChannel); } // If the RC_CHAN_COUNT parameter is available write the channel count - if (paramMgr->getComponentForParam("RC_CHAN_CNT").count() != 0) { - paramMgr->setPendingParam(0, "RC_CHAN_CNT", _chanCount); + if (_autopilot->parameterExists("RC_CHAN_CNT")) { + _autopilot->getParameterFact("RC_CHAN_CNT")->setValue(_chanCount); } - - //let the param mgr manage sending all the pending RC_foo updates and persisting after - paramMgr->sendPendingParameters(true, true); _stopCalibration(); + _setInternalCalibrationValuesFromParameters(); } void PX4RCCalibration::_updateView() @@ -943,7 +912,7 @@ void PX4RCCalibration::_updateView() valueWidget->setVisible(true); _rgRCValueMonitorLabel[chan]->setVisible(true); - //qDebug() << "Visible" << valueWidget->objectName() << chan; + //qCDebug(PX4RCCalibrationLog) << "Visible" << valueWidget->objectName() << chan; struct ChannelInfo* info = &_rgChannelInfo[chan]; valueWidget->setValueAndMinMax(_rcRawValue[chan], info->rcMin, info->rcMax); @@ -970,7 +939,7 @@ void PX4RCCalibration::_updateView() for (int chan=_chanCount; chan<_chanMax; chan++) { _rgRCValueMonitorWidget[chan]->setVisible(false); _rgRCValueMonitorLabel[chan]->setVisible(false); - //qDebug() << "Off" << _rgRCValueMonitorWidget[chan]->objectName() << chan; + qCDebug(PX4RCCalibrationLog) << "Hiding channel" << _rgRCValueMonitorWidget[chan]->objectName() << chan; } } @@ -982,7 +951,7 @@ void PX4RCCalibration::_startCalibration(void) _resetInternalCalibrationValues(); // Let the mav known we are starting calibration. This should turn off motors and so forth. - _mav->startRadioControlCalibration(); + _uas->startCalibration(UASInterface::StartCalibrationRadio); _ui->rcCalNext->setText(tr("Next")); _ui->rcCalCancel->setEnabled(true); @@ -996,8 +965,8 @@ void PX4RCCalibration::_stopCalibration(void) { _currentStep = -1; - if (_mav) { - _mav->endRadioControlCalibration(); + if (_uas) { + _uas->stopCalibration(); _setInternalCalibrationValuesFromParameters(); } else { _resetInternalCalibrationValues(); @@ -1016,7 +985,7 @@ void PX4RCCalibration::_stopCalibration(void) /// @brief Saves the current channel values, so that we can detect when the use moves an input. void PX4RCCalibration::_rcCalSaveCurrentValues(void) { - //qDebug() << "_rcCalSaveCurrentValues"; + qCDebug(PX4RCCalibrationLog) << "_rcCalSaveCurrentValues"; for (unsigned i = 0; i < _chanMax; i++) { _rcValueSave[i] = _rcRawValue[i]; } @@ -1136,7 +1105,7 @@ void PX4RCCalibration::_setHelpImage(const char* imageFile) } file += imageFile; - //qDebug() << "_setHelpImage" << file; + qCDebug(PX4RCCalibrationLog) << "_setHelpImage" << file; _ui->radioIcon->setPixmap(QPixmap(file)); } diff --git a/src/ui/px4_configuration/PX4RCCalibration.h b/src/ui/px4_configuration/PX4RCCalibration.h index 868c345cbdcc3b6e1ae26fc92b5b6689786c50c4..25ae3e4865d97b66200a734bd473a3ab3a98fdd7 100644 --- a/src/ui/px4_configuration/PX4RCCalibration.h +++ b/src/ui/px4_configuration/PX4RCCalibration.h @@ -34,9 +34,13 @@ #include "UASInterface.h" #include "RCValueWidget.h" +#include "QGCLoggingCategory.h" +#include "AutoPilotPlugin.h" #include "ui_PX4RCCalibration.h" +Q_DECLARE_LOGGING_CATEGORY(PX4RCCalibrationLog) + class PX4RCCalibrationTest; namespace Ui { @@ -251,8 +255,8 @@ private: RCValueWidget* _rgRCValueMonitorWidget[_chanMax]; ///< Array of radio channel value widgets QLabel* _rgRCValueMonitorLabel[_chanMax]; ///< Array of radio channel value labels - UASInterface* _mav; ///< The current MAV - QGCUASParamManagerInterface* _paramMgr; + UASInterface* _uas; + AutoPilotPlugin* _autopilot; Ui::PX4RCCalibration* _ui; diff --git a/src/ui/px4_configuration/PX4RCCalibration.ui b/src/ui/px4_configuration/PX4RCCalibration.ui index b80d09fe73919017384bdd4566f505f1573970cb..bf5abd0ce90a832e3a0b32ce2f36e28e2ecf02e5 100644 --- a/src/ui/px4_configuration/PX4RCCalibration.ui +++ b/src/ui/px4_configuration/PX4RCCalibration.ui @@ -618,7 +618,7 @@ background-color: rgb(80, 80, 80);s - :/files/images/px4/calibration/radioCenter.png + :/res/calibration/radioCenter.png Qt::AlignCenter diff --git a/src/ui/px4_configuration/QGCPX4AirframeConfig.cc b/src/ui/px4_configuration/QGCPX4AirframeConfig.cc deleted file mode 100644 index 5aec881fdb01d7d5601384fb6b1dd2c2129630d5..0000000000000000000000000000000000000000 --- a/src/ui/px4_configuration/QGCPX4AirframeConfig.cc +++ /dev/null @@ -1,542 +0,0 @@ -#include -#include -#include - -#include "QGCPX4AirframeConfig.h" -#include "ui_QGCPX4AirframeConfig.h" - -#include "UASManager.h" -#include "LinkManager.h" -#include "UAS.h" -#include "QGC.h" -#include "QGCMessageBox.h" - -QGCPX4AirframeConfig::QGCPX4AirframeConfig(QWidget *parent) : - QWidget(parent), - mav(NULL), - progress(NULL), - pendingParams(0), - configState(CONFIG_STATE_ABORT), - selectedId(-1), - ui(new Ui::QGCPX4AirframeConfig) -{ - ui->setupUi(this); - - // Fill the lists here manually in accordance with the list from: - // https://github.com/PX4/Firmware/blob/master/ROMFS/px4fmu_common/init.d/rcS - - ui->simComboBox->addItem(tr("Plane (HilStar, X-Plane)"), 1000); - ui->simComboBox->addItem(tr("Plane (Rascal, FlightGear)"), 1004); - ui->simComboBox->addItem(tr("Quad X HIL"), 1001); - ui->simComboBox->addItem(tr("Quad + HIL"), 1003); - - connect(ui->simPushButton, SIGNAL(clicked()), this, SLOT(simSelected())); - connect(ui->simComboBox, SIGNAL(activated(int)), this, SLOT(simSelected(int))); - ui->simPushButton->setEnabled(ui->simComboBox->count() > 0); - - ui->planeComboBox->addItem(tr("Multiplex Easystar 1/2"), 2100); - ui->planeComboBox->addItem(tr("Hobbyking Bixler 1/2"), 2101); - ui->planeComboBox->addItem(tr("3DR Skywalker"), 2102); - ui->planeComboBox->addItem(tr("Skyhunter (1800 mm)"), 2103); - - connect(ui->planePushButton, SIGNAL(clicked()), this, SLOT(planeSelected())); - connect(ui->planeComboBox, SIGNAL(activated(int)), this, SLOT(planeSelected(int))); - ui->planePushButton->setEnabled(ui->planeComboBox->count() > 0); - - ui->flyingWingComboBox->addItem(tr("Z-84 Wing Wing (845 mm)"), 3033); - ui->flyingWingComboBox->addItem(tr("TBS Caipirinha (850 mm)"), 3100); - ui->flyingWingComboBox->addItem(tr("Bormatec Camflyer Q (800 mm)"), 3030); - ui->flyingWingComboBox->addItem(tr("FX-61 Phantom FPV (1550 mm)"), 3031); - ui->flyingWingComboBox->addItem(tr("FX-79 Buffalo (2000 mm)"), 3034); - ui->flyingWingComboBox->addItem(tr("Skywalker X5 (1180 mm)"), 3032); - ui->flyingWingComboBox->addItem(tr("Viper v2 (3000 mm)"), 3035); - - connect(ui->flyingWingPushButton, SIGNAL(clicked()), this, SLOT(flyingWingSelected())); - connect(ui->flyingWingComboBox, SIGNAL(activated(int)), this, SLOT(flyingWingSelected(int))); - - ui->quadXComboBox->addItem(tr("DJI F330 8\" Quad"), 4010); - ui->quadXComboBox->addItem(tr("DJI F450 10\" Quad"), 4011); - ui->quadXComboBox->addItem(tr("X frame Quad UAVCAN"), 4012); - ui->quadXComboBox->addItem(tr("AR.Drone Frame Quad"), 4008); -// ui->quadXComboBox->addItem(tr("DJI F330 with MK BLCTRL"), 4017); -// ui->quadXComboBox->addItem(tr("Mikrokopter X frame"), 4019); - - connect(ui->quadXPushButton, SIGNAL(clicked()), this, SLOT(quadXSelected())); - connect(ui->quadXComboBox, SIGNAL(activated(int)), this, SLOT(quadXSelected(int))); - ui->quadXPushButton->setEnabled(ui->quadXComboBox->count() > 0); - - ui->quadPlusComboBox->addItem(tr("Generic 10\" Quad +"), 5001); -// ui->quadXComboBox->addItem(tr("Mikrokopter + frame"), 5020); - - connect(ui->quadPlusPushButton, SIGNAL(clicked()), this, SLOT(quadPlusSelected())); - connect(ui->quadPlusComboBox, SIGNAL(activated(int)), this, SLOT(quadPlusSelected(int))); - ui->quadPlusPushButton->setEnabled(ui->quadPlusComboBox->count() > 0); - - ui->hexaXComboBox->addItem(tr("Standard 10\" Hexa X"), 6001); - ui->hexaXComboBox->addItem(tr("Coaxial 10\" Hexa X"), 11001); - - connect(ui->hexaXPushButton, SIGNAL(clicked()), this, SLOT(hexaXSelected())); - connect(ui->hexaXComboBox, SIGNAL(activated(int)), this, SLOT(hexaXSelected(int))); - ui->hexaXPushButton->setEnabled(ui->hexaXComboBox->count() > 0); - - ui->hexaPlusComboBox->addItem(tr("Standard 10\" Hexa"), 7001); - - connect(ui->hexaPlusPushButton, SIGNAL(clicked()), this, SLOT(hexaPlusSelected())); - connect(ui->hexaPlusComboBox, SIGNAL(activated(int)), this, SLOT(hexaPlusSelected(int))); - ui->hexaPlusPushButton->setEnabled(ui->hexaPlusComboBox->count() > 0); - - ui->octoXComboBox->addItem(tr("Standard 10\" Octo"), 8001); - ui->octoXComboBox->addItem(tr("Coaxial 10\" Octo"), 12001); - - connect(ui->octoXPushButton, SIGNAL(clicked()), this, SLOT(octoXSelected())); - connect(ui->octoXComboBox, SIGNAL(activated(int)), this, SLOT(octoXSelected(int))); - ui->octoXPushButton->setEnabled(ui->octoXComboBox->count() > 0); - - ui->octoPlusComboBox->addItem(tr("Standard 10\" Octo"), 9001); - - connect(ui->octoPlusPushButton, SIGNAL(clicked()), this, SLOT(octoPlusSelected())); - connect(ui->octoPlusComboBox, SIGNAL(activated(int)), this, SLOT(octoPlusSelected(int))); - ui->octoPlusPushButton->setEnabled(ui->octoPlusComboBox->count() > 0); - - ui->hComboBox->addItem(tr("3DR Iris"), 10016); - ui->hComboBox->addItem(tr("TBS Discovery"), 10015); - ui->hComboBox->addItem(tr("SteadiDrone QU4D"), 10017); - - connect(ui->hPushButton, SIGNAL(clicked()), this, SLOT(hSelected())); - connect(ui->hComboBox, SIGNAL(activated(int)), this, SLOT(hSelected(int))); - ui->hPushButton->setEnabled(ui->hComboBox->count() > 0); - - connect(ui->applyButton, SIGNAL(clicked()), this, SLOT(applyAndReboot())); - - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*))); - - uncheckAll(); - - setActiveUAS(UASManager::instance()->getActiveUAS()); -} - -void QGCPX4AirframeConfig::parameterChanged(int uas, int component, QString parameterName, QVariant value) -{ - Q_UNUSED(uas); - Q_UNUSED(component); - - if (parameterName.contains("SYS_AUTOSTART")) - { - int index = value.toInt(); - if (index > 0) { - setAirframeID(index); - ui->statusLabel->setText(tr("Onboard start script ID: #%1").arg(index)); - } else { - uncheckAll(); - ui->statusLabel->setText(tr("System not configured for autostart.")); - } - } -} - -void QGCPX4AirframeConfig::setActiveUAS(UASInterface* uas) -{ - if (mav) - { - disconnect(mav, SIGNAL(parameterChanged(int,int,QString,QVariant)), this, SLOT(parameterChanged(int,int,QString,QVariant))); - mav = NULL; - } - - if (!uas) - return; - - mav = uas; - paramMgr = mav->getParamManager(); - - connect(mav, SIGNAL(parameterChanged(int,int,QString,QVariant)), this, SLOT(parameterChanged(int,int,QString,QVariant))); - - // If the parameters are ready, we aren't going to get paramterChanged signals. So fake them in order to make the UI work. - if (uas->getParamManager()->parametersReady()) { - QVariant value; - static const char* param = "SYS_AUTOSTART"; - - QGCUASParamManagerInterface* paramMgr = uas->getParamManager(); - - QList compIds = paramMgr->getComponentForParam(param); - Q_ASSERT(compIds.count() == 1); - paramMgr->getParameterValue(compIds[0], param, value); - parameterChanged(uas->getUASID(), compIds[0], param, value); - } -} - -void QGCPX4AirframeConfig::uncheckAll() -{ - ui->planePushButton->setChecked(false); - ui->flyingWingPushButton->setChecked(false); - ui->quadXPushButton->setChecked(false); - ui->quadPlusPushButton->setChecked(false); - ui->hexaXPushButton->setChecked(false); - ui->hexaPlusPushButton->setChecked(false); - ui->octoXPushButton->setChecked(false); - ui->octoPlusPushButton->setChecked(false); - ui->hPushButton->setChecked(false); -} - -void QGCPX4AirframeConfig::setAirframeID(int id) -{ - - qDebug() << "setAirframeID" << id; - ui->statusLabel->setText(tr("Start script ID: #%1").arg(id)); - - selectedId = id; - - // XXX too much boilerplate code here - this widget is really just - // a quick hack to get started - uncheckAll(); - - if (id >= 1000 && id < 2000) - { - ui->simPushButton->setChecked(true); - ui->simComboBox->setCurrentIndex(ui->simComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected simulation (ID: #%1)").arg(selectedId)); - } - else if (id >= 2000 && id < 3000) - { - ui->planePushButton->setChecked(true); - ui->planeComboBox->setCurrentIndex(ui->planeComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected plane (ID: #%1)").arg(selectedId)); - } - else if (id >= 3000 && id < 4000) - { - ui->flyingWingPushButton->setChecked(true); - ui->flyingWingComboBox->setCurrentIndex(ui->flyingWingComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected flying wing (ID: #%1)").arg(selectedId)); - } - else if (id >= 4000 && id < 5000) { - ui->quadXPushButton->setChecked(true); - ui->quadXComboBox->setCurrentIndex(ui->quadXComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected quadrotor in X config (ID: #%1)").arg(selectedId)); - } - else if (id >= 5000 && id < 6000) { - ui->quadPlusPushButton->setChecked(true); - ui->quadPlusComboBox->setCurrentIndex(ui->quadPlusComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected quadrotor in + config (ID: #%1)").arg(selectedId)); - } - else if (id >= 6000 && id < 7000) { - ui->hexaXPushButton->setChecked(true); - ui->hexaXComboBox->setCurrentIndex(ui->hexaXComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected hexarotor in X config (ID: #%1)").arg(selectedId)); - } - else if (id >= 7000 && id < 8000) { - ui->hexaPlusPushButton->setChecked(true); - ui->hexaPlusComboBox->setCurrentIndex(ui->hexaPlusComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected hexarotor in + config (ID: #%1)").arg(selectedId)); - } - else if (id >= 8000 && id < 9000) { - ui->octoXPushButton->setChecked(true); - ui->octoXComboBox->setCurrentIndex(ui->octoXComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected octorotor in X config (ID: #%1)").arg(selectedId)); - } - else if (id >= 9000 && id < 10000) { - ui->octoPlusPushButton->setChecked(true); - ui->octoPlusComboBox->setCurrentIndex(ui->octoPlusComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected octorotor in + config (ID: #%1)").arg(selectedId)); - } - else if (id >= 10000 && id < 11000) - { - ui->hPushButton->setChecked(true); - ui->hComboBox->setCurrentIndex(ui->hComboBox->findData(id)); - ui->statusLabel->setText(tr("Selected H frame multirotor (ID: #%1)").arg(selectedId)); - } - - -} - -void QGCPX4AirframeConfig::applyAndReboot() -{ - // Guard against the case of an edit where we didn't receive all params yet - if (selectedId <= 0) - { - QGCMessageBox::warning(tr("No airframe selected"), - tr("Please select an airframe first.")); - return; - } - - if (!mav) - return; - - if (paramMgr->countOnboardParams() == 0 && - paramMgr->countPendingParams() == 0) - { - paramMgr->requestParameterList(); - QGC::SLEEP::msleep(300); - } - - QList components = paramMgr->getComponentForParam("SYS_AUTOSTART"); - - // Guard against the case of an edit where we didn't receive all params yet - if (paramMgr->countPendingParams() > 0 || components.count() == 0) - { - QGCMessageBox::information(tr("Parameter sync with UAS not yet complete"), - tr("Please wait a few moments and retry")); - return; - } - - // Guard against multiple components responding - this will never show in practice - if (components.count() != 1) { - QGCMessageBox::warning(tr("Invalid system setup detected"), - tr("None or more than one component advertised to provide the main system configuration option. This is an invalid system setup - please check your autopilot.")); - return; - } - - // This is really evil: 'fake' a thread by - // periodic work queue calls and clock - // through a small state machine - // ugh.. if we just had time to do this properly. - - // To the reader who can't program and wants to whine: - // this is not beautiful, but technically completely - // sound. If you want to fix it, you'd be welcome - // to rebase the link, param manager and UI classes - // on a proper threading framework - which I'd love to do - // if I just had more time.. - - configState = CONFIG_STATE_SEND; - QTimer::singleShot(200, this, SLOT(checkConfigState())); - setEnabled(false); -} - -void QGCPX4AirframeConfig::checkConfigState() -{ - - if (configState == CONFIG_STATE_SEND) - { - QList components = paramMgr->getComponentForParam("SYS_AUTOSTART"); - qDebug() << "Setting comp" << components.first() << "SYS_AUTOSTART" << (qint32)selectedId; - - paramMgr->setPendingParam(components.first(),"SYS_AUTOSTART", (qint32)selectedId); - - //need to set autoconfig in order for PX4 to pick up the selected airframe params - if (ui->defaultGainsCheckBox->checkState() == Qt::Checked) - setAutoConfig(true); - - // Send pending params and then write them to persistent storage when done - paramMgr->sendPendingParameters(true); - - configState = CONFIG_STATE_WAIT_PENDING; - pendingParams = 0; - QTimer::singleShot(2000, this, SLOT(checkConfigState())); - return; - } - - if (configState == CONFIG_STATE_WAIT_PENDING) { - // Guard against the case of an edit where we didn't receive all params yet - if (paramMgr->countPendingParams() > 0) - { - if (pendingParams == 0) { - - pendingParams = paramMgr->countPendingParams(); - - if (progress) - delete progress; - - progress = new QProgressDialog("Writing parameters", "Abort Send", 0, pendingParams, this); - progress->setWindowModality(Qt::WindowModal); - progress->setMinimumDuration(2000); - } - - qDebug() << "PENDING" << paramMgr->countPendingParams() << "PROGRESS" << pendingParams - paramMgr->countPendingParams(); - progress->setValue(pendingParams - paramMgr->countPendingParams()); - - if (progress->wasCanceled()) { - configState = CONFIG_STATE_ABORT; - setEnabled(true); - pendingParams = 0; - return; - } - } else { - pendingParams = 0; - configState = CONFIG_STATE_REBOOT; - } - - qDebug() << "PENDING PARAMS WAIT PENDING: " << paramMgr->countPendingParams(); - QTimer::singleShot(1000, this, SLOT(checkConfigState())); - return; - } - - if (configState == CONFIG_STATE_REBOOT) { - - // Reboot - //TODO right now this relies upon the above send & persist finishing before the reboot command is received... - - unsigned pendingMax = 17; - - qDebug() << "PENDING PARAMS REBOOT BEFORE" << pendingParams; - - if (pendingParams == 0) { - pendingParams = 1; - - if (progress) - delete progress; - - progress = new QProgressDialog("Waiting for autopilot reboot", "Abort", 0, pendingMax, this); - progress->setWindowModality(Qt::WindowModal); - qDebug() << "Waiting for reboot, pending" << pendingParams; - } else { - if (progress->wasCanceled()) { - configState = CONFIG_STATE_ABORT; - setEnabled(true); - pendingParams = 0; - return; - } - } - - if (pendingParams == 3) { - qDebug() << "REQUESTING REBOOT"; - mav->executeCommand(MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN, 1, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); - mav->executeCommand(MAV_CMD_PREFLIGHT_REBOOT_SHUTDOWN, 1, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); - } - - if (pendingParams == 4) { - qDebug() << "DISCONNECT AIRFRAME"; - LinkManager::instance()->disconnectAll(); - } - - if (pendingParams == 14) { - qDebug() << "CONNECT AIRFRAME"; - LinkManager::instance()->connectAll(); - } - - if (pendingParams < pendingMax) { - progress->setValue(pendingParams); - QTimer::singleShot(1000, this, SLOT(checkConfigState())); - } else { - paramMgr->requestParameterList(); - progress->setValue(pendingMax); - configState = CONFIG_STATE_ABORT; - pendingParams = 0; - setEnabled(true); - return; - } - qDebug() << "PENDING PARAMS REBOOT AFTER:" << pendingParams; - pendingParams++; - return; - } -} - -void QGCPX4AirframeConfig::setAutoConfig(bool enabled) -{ - if (!mav) - return; - paramMgr->setPendingParam(0, "SYS_AUTOCONFIG", (qint32) ((enabled) ? 1 : 0)); -} - -void QGCPX4AirframeConfig::simSelected() -{ - simSelected(ui->simComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::simSelected(int index) -{ - int system_index = ui->simComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::flyingWingSelected() -{ - flyingWingSelected(ui->flyingWingComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::flyingWingSelected(int index) -{ - int system_index = ui->flyingWingComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::planeSelected() -{ - planeSelected(ui->planeComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::planeSelected(int index) -{ - int system_index = ui->planeComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::quadXSelected() -{ - quadXSelected(ui->quadXComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::quadXSelected(int index) -{ - int system_index = ui->quadXComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::quadPlusSelected() -{ - quadPlusSelected(ui->quadPlusComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::quadPlusSelected(int index) -{ - int system_index = ui->quadPlusComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::hexaXSelected() -{ - hexaXSelected(ui->hexaXComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::hexaXSelected(int index) -{ - int system_index = ui->hexaXComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::hexaPlusSelected() -{ - hexaPlusSelected(ui->hexaPlusComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::hexaPlusSelected(int index) -{ - int system_index = ui->hexaPlusComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::octoXSelected() -{ - octoXSelected(ui->octoXComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::octoXSelected(int index) -{ - int system_index = ui->octoXComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::octoPlusSelected() -{ - octoPlusSelected(ui->octoPlusComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::octoPlusSelected(int index) -{ - int system_index = ui->octoPlusComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - -void QGCPX4AirframeConfig::hSelected() -{ - hSelected(ui->hComboBox->currentIndex()); -} - -void QGCPX4AirframeConfig::hSelected(int index) -{ - int system_index = ui->hComboBox->itemData(index).toInt(); - setAirframeID(system_index); -} - - -QGCPX4AirframeConfig::~QGCPX4AirframeConfig() -{ - delete ui; -} diff --git a/src/ui/px4_configuration/QGCPX4AirframeConfig.h b/src/ui/px4_configuration/QGCPX4AirframeConfig.h deleted file mode 100644 index 4ebe33890c12337800e86ef3ccd2713407957b00..0000000000000000000000000000000000000000 --- a/src/ui/px4_configuration/QGCPX4AirframeConfig.h +++ /dev/null @@ -1,109 +0,0 @@ -#ifndef QGCPX4AIRFRAMECONFIG_H -#define QGCPX4AIRFRAMECONFIG_H - -#include -#include - -class QProgressDialog; - -namespace Ui { -class QGCPX4AirframeConfig; -} - -class QGCPX4AirframeConfig : public QWidget -{ - Q_OBJECT - -public: - explicit QGCPX4AirframeConfig(QWidget *parent = 0); - ~QGCPX4AirframeConfig(); - -public slots: - - /** - * @brief Set the system currently operated on by this widget - * @param uas The currently active / configured system - */ - void setActiveUAS(UASInterface* uas); - - /** - * @brief Handle parameter changes - * @param uas - * @param component - * @param parameterName - * @param value - */ - void parameterChanged(int uas, int component, QString parameterName, QVariant value); - - /** - * @brief Quadrotor in X configuration has been selected - */ - void quadXSelected(); - - /** - * @brief Quadrotor in X configuration has been selected with sub-type - * @param index The autostart index which maps to a particular sub-type - */ - void quadXSelected(int index); - - void simSelected(); - void simSelected(int index); - void planeSelected(); - void planeSelected(int index); - void flyingWingSelected(); - void flyingWingSelected(int index); - void quadPlusSelected(); - void quadPlusSelected(int index); - void hexaXSelected(); - void hexaXSelected(int index); - void hexaPlusSelected(); - void hexaPlusSelected(int index); - void octoXSelected(); - void octoXSelected(int index); - void octoPlusSelected(); - void octoPlusSelected(int index); - void hSelected(); - void hSelected(int index); - - /** - * @brief Apply changes and reboot system - */ - void applyAndReboot(); - -protected slots: - void checkConfigState(); - -protected: - - /** - * @brief Set the ID of the current airframe - * @param id the ID as defined by the PX4 SYS_AUTOSTART enum - */ - void setAirframeID(int id); - - /** - * @brief Enable automatic configuration - * @param enabled If true, the system sets the default gains for this platform on the next boot - */ - void setAutoConfig(bool enabled); - - void uncheckAll(); - - enum CONFIG_STATE { - CONFIG_STATE_ABORT = 0, - CONFIG_STATE_SEND, - CONFIG_STATE_WAIT_PENDING, - CONFIG_STATE_REBOOT - }; - -private: - UASInterface* mav; - QGCUASParamManagerInterface *paramMgr; - QProgressDialog* progress; - unsigned pendingParams; - enum CONFIG_STATE configState; - int selectedId; - Ui::QGCPX4AirframeConfig *ui; -}; - -#endif // QGCPX4AIRFRAMECONFIG_H diff --git a/src/ui/px4_configuration/QGCPX4AirframeConfig.ui b/src/ui/px4_configuration/QGCPX4AirframeConfig.ui deleted file mode 100644 index 2c9f5d8195013c61c84a394db32f300f4b1bb524..0000000000000000000000000000000000000000 --- a/src/ui/px4_configuration/QGCPX4AirframeConfig.ui +++ /dev/null @@ -1,427 +0,0 @@ - - - QGCPX4AirframeConfig - - - - 0 - 0 - 802 - 471 - - - - - 0 - 0 - - - - - 802 - 471 - - - - Form - - - - - - Set default airframe settings - - - true - - - - - - - - 0 - 0 - - - - true - - - - - 0 - 0 - 761 - 611 - - - - - - - - - - - - - :/files/images/px4/airframes/plane_aert.png:/files/images/px4/airframes/plane_aert.png - - - - 120 - 120 - - - - true - - - - - - - - - - Standard Plane - - - - - - - - - - - - - - - :/files/images/px4/airframes/flying_wing.png:/files/images/px4/airframes/flying_wing.png - - - - 120 - 120 - - - - true - - - - - - - - - - Flying Wing - - - - - - - - - - - - - - - :/files/images/px4/airframes/quad_x.png:/files/images/px4/airframes/quad_x.png - - - - 120 - 120 - - - - true - - - - - - - - - - Quadrotor X - - - - - - - - - - - - - - - :/files/images/px4/airframes/quad_+.png:/files/images/px4/airframes/quad_+.png - - - - 120 - 120 - - - - true - - - - - - - - - - Quadrotor + - - - - - - - - - - - - - - - :/files/images/px4/airframes/hexa_x.png:/files/images/px4/airframes/hexa_x.png - - - - 120 - 120 - - - - true - - - - - - - - - - Hexarotor X - - - - - - - - - - - - - - - :/files/images/px4/airframes/hexa_+.png:/files/images/px4/airframes/hexa_+.png - - - - 120 - 120 - - - - true - - - - - - - - - - Hexarotor + - - - - - - - - - - - - - - - :/files/images/px4/airframes/octo_x.png:/files/images/px4/airframes/octo_x.png - - - - 120 - 120 - - - - true - - - - - - - - - - Octorotor X - - - - - - - - - - - - - - - :/files/images/px4/airframes/octo_+.png:/files/images/px4/airframes/octo_+.png - - - - 120 - 120 - - - - true - - - - - - - - - - Octorotor + - - - - - - - - - - - - - - - :/files/images/px4/airframes/quad_h.png:/files/images/px4/airframes/quad_h.png - - - - 120 - 120 - - - - true - - - - - - - - - - H Frame - - - - - - - - - - - Simulation Setup - - - true - - - - - - - - - - Simulation / Experimental - - - - - - - - - - - - - Apply and Restart - - - - - - - No changes values - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - diff --git a/src/ui/px4_configuration/QGCPX4SensorCalibration.cc b/src/ui/px4_configuration/QGCPX4SensorCalibration.cc deleted file mode 100644 index dc7c0bddaf0498d08302ee518ba12ddde307b14f..0000000000000000000000000000000000000000 --- a/src/ui/px4_configuration/QGCPX4SensorCalibration.cc +++ /dev/null @@ -1,507 +0,0 @@ -#include "QGCPX4SensorCalibration.h" -#include "ui_QGCPX4SensorCalibration.h" -#include -#include -#include -#include - -QGCPX4SensorCalibration::QGCPX4SensorCalibration(QWidget *parent) : - QWidget(parent), - activeUAS(NULL), - clearAction(new QAction(tr("Clear Text"), this)), - ui(new Ui::QGCPX4SensorCalibration) -{ - ui->setupUi(this); - connect(clearAction, SIGNAL(triggered()), ui->textView, SLOT(clear())); - - connect(ui->gyroButton, SIGNAL(clicked()), this, SLOT(gyroButtonClicked())); - connect(ui->magButton, SIGNAL(clicked()), this, SLOT(magButtonClicked())); - connect(ui->accelButton, SIGNAL(clicked()), this, SLOT(accelButtonClicked())); - connect(ui->diffPressureButton, SIGNAL(clicked()), this, SLOT(diffPressureButtonClicked())); - - connect(ui->logCheckBox, SIGNAL(clicked(bool)), ui->textView, SLOT(setVisible(bool))); - ui->logCheckBox->setChecked(false); - ui->textView->setVisible(false); - - ui->gyroButton->setEnabled(false); - ui->magButton->setEnabled(false); - ui->accelButton->setEnabled(false); - - ui->autopilotComboBox->setEnabled(false); - ui->magComboBox->setEnabled(false); - - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - setAutopilotImage(":/files/images/px4/calibration/accel_down.png"); - setGpsImage(":/files/images/px4/calibration/accel_down.png"); - - // Fill combo boxes - ui->autopilotComboBox->addItem(tr("Default Orientation"), 0); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_45"), 1); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_90"), 2); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_135"), 3); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_180"), 4); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_225"), 5); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_270"), 6); - ui->autopilotComboBox->addItem(tr("ROTATION_YAW_315"), 7); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180"), 8); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_YAW_45"), 9); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_YAW_90"), 10); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_YAW_135"), 11); - ui->autopilotComboBox->addItem(tr("ROTATION_PITCH_180"), 12); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_YAW_225"), 13); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_YAW_270"), 14); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_YAW_315"), 15); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90"), 16); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_YAW_45"), 17); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_YAW_90"), 18); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_YAW_135"), 19); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270"), 20); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270_YAW_45"), 21); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270_YAW_90"), 22); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270_YAW_135"), 23); - ui->autopilotComboBox->addItem(tr("ROTATION_PITCH_90"), 24); - ui->autopilotComboBox->addItem(tr("ROTATION_PITCH_270"), 25); - ui->autopilotComboBox->addItem(tr("ROTATION_PITCH_180_YAW_90"), 26); - ui->autopilotComboBox->addItem(tr("ROTATION_PITCH_180_YAW_270"), 27); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_PITCH_90"), 28); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_PITCH_90"), 29); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270_PITCH_90"), 30); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_PITCH_180"), 31); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270_PITCH_180"), 32); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_PITCH_270"), 33); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_180_PITCH_270"), 34); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_270_PITCH_270"), 35); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_PITCH_180_YAW_90"), 36); - ui->autopilotComboBox->addItem(tr("ROTATION_ROLL_90_YAW_270"), 37); - - ui->magComboBox->addItem(tr("Default Orientation"), 0); - ui->magComboBox->addItem(tr("ROTATION_YAW_45"), 1); - ui->magComboBox->addItem(tr("ROTATION_YAW_90"), 2); - ui->magComboBox->addItem(tr("ROTATION_YAW_135"), 3); - ui->magComboBox->addItem(tr("ROTATION_YAW_180"), 4); - ui->magComboBox->addItem(tr("ROTATION_YAW_225"), 5); - ui->magComboBox->addItem(tr("ROTATION_YAW_270"), 6); - ui->magComboBox->addItem(tr("ROTATION_YAW_315"), 7); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180"), 8); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180_YAW_45"), 9); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180_YAW_90"), 10); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180_YAW_135"), 11); - ui->magComboBox->addItem(tr("ROTATION_PITCH_180"), 12); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180_YAW_225"), 13); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180_YAW_270"), 14); - ui->magComboBox->addItem(tr("ROTATION_ROLL_180_YAW_315"), 15); - ui->magComboBox->addItem(tr("ROTATION_ROLL_90"), 16); - ui->magComboBox->addItem(tr("ROTATION_ROLL_90_YAW_45"), 17); - ui->magComboBox->addItem(tr("ROTATION_ROLL_90_YAW_90"), 18); - ui->magComboBox->addItem(tr("ROTATION_ROLL_90_YAW_135"), 19); - ui->magComboBox->addItem(tr("ROTATION_ROLL_270"), 20); - ui->magComboBox->addItem(tr("ROTATION_ROLL_270_YAW_45"), 21); - ui->magComboBox->addItem(tr("ROTATION_ROLL_270_YAW_90"), 22); - ui->magComboBox->addItem(tr("ROTATION_ROLL_270_YAW_135"), 23); - ui->magComboBox->addItem(tr("ROTATION_PITCH_90"), 24); - ui->magComboBox->addItem(tr("ROTATION_PITCH_270"), 25); - - setObjectName("PX4_SENSOR_CALIBRATION"); - - setStyleSheet("QScrollArea { border: 0px; } QPlainTextEdit { border: 0px }"); - - setActiveUAS(UASManager::instance()->getActiveUAS()); - connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*))); - ui->progressBar->setValue(0); - - connect(ui->autopilotComboBox, SIGNAL(activated(int)), this, SLOT(setAutopilotOrientation(int))); - connect(ui->magComboBox, SIGNAL(activated(int)), this, SLOT(setGpsOrientation(int))); - - updateIcons(); -} - -QGCPX4SensorCalibration::~QGCPX4SensorCalibration() -{ - delete ui; -} - -void QGCPX4SensorCalibration::parameterChanged(int uas, int component, QString parameterName, QVariant value) -{ - Q_UNUSED(uas); - Q_UNUSED(component); - - int index = (int)value.toFloat(); - - if (parameterName.contains("SENS_BOARD_ROT")) - { - ui->autopilotComboBox->setCurrentIndex(index); - setAutopilotImage(index); - ui->autopilotComboBox->setEnabled(true); - } - - if (parameterName.contains("SENS_EXT_MAG_ROT")) - { - ui->magComboBox->setCurrentIndex(index); - setGpsImage(index); - ui->magComboBox->setEnabled(true); - } - - // Check mag calibration naively - if (parameterName.contains("SENS_MAG_XOFF") || parameterName.contains("CAL_MAG0_ID")) { - float offset = value.toFloat(); - if (offset < 0.000001f && offset > -0.000001f) { - // Must be zero, not good - setMagCalibrated(false); - } else { - setMagCalibrated(true); - } - } - - // Check gyro calibration naively - if (parameterName.contains("SENS_GYRO_XOFF") || parameterName.contains("CAL_GYRO0_ID")) { - float offset = value.toFloat(); - if (offset < 0.000001f && offset > -0.000001f) { - // Must be zero, not good - setGyroCalibrated(false); - } else { - setGyroCalibrated(true); - } - } - - // Check accel calibration naively - if (parameterName.contains("SENS_ACC_XOFF") || parameterName.contains("CAL_ACC0_ID")) { - float offset = value.toFloat(); - if (offset < 0.000001f && offset > -0.000001f) { - // Must be zero, not good - setAccelCalibrated(false); - } else { - setAccelCalibrated(true); - } - } - - // Check differential pressure calibration naively - if (parameterName.contains("SENS_DPRES_OFF")) { - float offset = value.toFloat(); - if (offset < 0.000001f && offset > -0.000001f) { - // Must be zero, not good - setDiffPressureCalibrated(false); - } else { - setDiffPressureCalibrated(true); - } - } -} - -void QGCPX4SensorCalibration::setMagCalibrated(bool calibrated) -{ - if (calibrated) { - ui->magLabel->setText(tr("MAG CALIBRATED")); - ui->magLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #20AA20;" - "}"); - } else { - ui->magLabel->setText(tr("MAG UNCALIBRATED")); - ui->magLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #FF0037;" - "}"); - } -} - -void QGCPX4SensorCalibration::setGyroCalibrated(bool calibrated) -{ - if (calibrated) { - ui->gyroLabel->setText(tr("GYRO CALIBRATED")); - ui->gyroLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #20AA20;" - "}"); - } else { - ui->gyroLabel->setText(tr("GYRO UNCALIBRATED")); - ui->gyroLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #FF0037;" - "}"); - } -} - -void QGCPX4SensorCalibration::setAccelCalibrated(bool calibrated) -{ - if (calibrated) { - ui->accelLabel->setText(tr("ACCEL CALIBRATED")); - ui->accelLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #20AA20;" - "}"); - } else { - ui->accelLabel->setText(tr("ACCEL UNCALIBRATED")); - ui->accelLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #FF0037;" - "}"); - } -} - -void QGCPX4SensorCalibration::setDiffPressureCalibrated(bool calibrated) -{ - if (calibrated) { - ui->diffPressureLabel->setText(tr("DIFF. PRESSURE CALIBRATED")); - ui->diffPressureLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #20AA20;" - "}"); - } else { - ui->diffPressureLabel->setText(tr("DIFF. PRESSURE UNCALIBRATED")); - ui->diffPressureLabel->setStyleSheet("QLabel { color: #FFFFFF;" - "background-color: #FF0037;" - "}"); - } -} - -void QGCPX4SensorCalibration::setInstructionImage(const QString &path) -{ - instructionIcon.load(path); - - int w = ui->iconLabel->width(); - int h = ui->iconLabel->height(); - - ui->iconLabel->setPixmap(instructionIcon.scaled(w, h, Qt::KeepAspectRatio, Qt::SmoothTransformation)); -} - -void QGCPX4SensorCalibration::setAutopilotImage(int index) -{ - Q_UNUSED(index); - // FIXME: This was referencing a non-existent png. Need to figure out what this was trying to do. - //setAutopilotImage(QString(":/files/images/px4/calibration/pixhawk_%1.png").arg(index, 2, 10, QChar('0'))); -} - -void QGCPX4SensorCalibration::setGpsImage(int index) -{ - setGpsImage(QString(":/files/images/px4/calibration/3dr_gps/gps_%1.png").arg(index, 2, 10, QChar('0'))); -} - -void QGCPX4SensorCalibration::setAutopilotOrientation(int index) -{ - if (activeUAS) { - activeUAS->getParamManager()->setPendingParam(0, "SENS_BOARD_ROT", (int)index); - activeUAS->getParamManager()->sendPendingParameters(true); - } -} - -void QGCPX4SensorCalibration::setGpsOrientation(int index) -{ - if (activeUAS) { - activeUAS->getParamManager()->setPendingParam(0, "SENS_EXT_MAG_ROT", (int)index); - activeUAS->getParamManager()->sendPendingParameters(true); - } -} - -void QGCPX4SensorCalibration::setAutopilotImage(const QString &path) -{ - if (autopilotIcon.load(path)) { - int w = ui->autopilotLabel->width(); - int h = ui->autopilotLabel->height(); - - ui->autopilotLabel->setPixmap(autopilotIcon.scaled(w, h, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - } else { - qDebug() << "AutoPilot Icon image did not load" << path; - } -} - -void QGCPX4SensorCalibration::setGpsImage(const QString &path) -{ - if (gpsIcon.load(path)) { - int w = ui->gpsLabel->width(); - int h = ui->gpsLabel->height(); - - ui->gpsLabel->setPixmap(gpsIcon.scaled(w, h, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - } else { - qDebug() << "GPS Icon image did not load" << path; - } -} - -void QGCPX4SensorCalibration::updateIcons() -{ - int w = ui->iconLabel->width(); - int h = ui->iconLabel->height(); - ui->iconLabel->setPixmap(instructionIcon.scaled(w, h, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - - int wa = ui->autopilotLabel->width(); - int ha = ui->autopilotLabel->height(); - ui->autopilotLabel->setPixmap(autopilotIcon.scaled(wa, ha, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - - int wg = ui->gpsLabel->width(); - int hg = ui->gpsLabel->height(); - ui->gpsLabel->setPixmap(gpsIcon.scaled(wg, hg, Qt::KeepAspectRatio, Qt::SmoothTransformation)); -} - -void QGCPX4SensorCalibration::resizeEvent(QResizeEvent* event) -{ - updateIcons(); - QWidget::resizeEvent(event); -} - -void QGCPX4SensorCalibration::setActiveUAS(UASInterface* uas) -{ - if (!uas) - return; - - if (activeUAS) { - disconnect(activeUAS, SIGNAL(textMessageReceived(int,int,int,QString)), this, SLOT(handleTextMessage(int,int,int,QString))); - disconnect(activeUAS, SIGNAL(parameterChanged(int,int,QString,QVariant)), this, SLOT(parameterChanged(int,int,QString,QVariant))); - ui->textView->clear(); - } - - ui->gyroButton->setEnabled(true); - ui->magButton->setEnabled(true); - ui->accelButton->setEnabled(true); - - connect(uas, SIGNAL(textMessageReceived(int,int,int,QString)), this, SLOT(handleTextMessage(int,int,int,QString))); - connect(uas, SIGNAL(parameterChanged(int,int,QString,QVariant)), this, SLOT(parameterChanged(int,int,QString,QVariant))); - connect(uas, SIGNAL(systemSpecsChanged(int)), this, SLOT(updateSystemSpecs(int))); - activeUAS = uas; - - updateSystemSpecs(uas->getUASID()); - - // If the parameters are ready, we aren't going to get paramterChanged signals. So re-request them in order to make the UI work. - if (uas->getParamManager()->parametersReady()) { - _requestAllSensorParameters(); - } -} - -void QGCPX4SensorCalibration::updateSystemSpecs(int id) -{ - Q_UNUSED(id); - - if (activeUAS->isRotaryWing()) { - // Users are confused by the config button - ui->diffPressureButton->hide(); - ui->diffPressureLabel->hide(); - } else { - ui->diffPressureButton->show(); - ui->diffPressureLabel->show(); - } -} - -void QGCPX4SensorCalibration::handleTextMessage(int uasid, int compId, int severity, QString text) -{ - Q_UNUSED(uasid); - Q_UNUSED(compId); - Q_UNUSED(severity); - - if (text.startsWith("[cmd]") || - text.startsWith("[mavlink pm]")) - return; - - if (text.contains("progress <")) { - QString percent = text.split("<").last().split(">").first(); - bool ok; - int p = percent.toInt(&ok); - if (ok) - ui->progressBar->setValue(p); - return; - } - - ui->instructionLabel->setText(QString("%1").arg(text)); - - if (text.startsWith("Hold still, starting to measure ")) { - QString axis = text.section(" ", -2, -2); - setInstructionImage(QString(":/files/images/px4/calibration/accel_%1.png").arg(axis)); - } - - if (text.startsWith("pending: ")) { - QString axis = text.section(" ", 1, 1); - setInstructionImage(QString(":/files/images/px4/calibration/accel_%1.png").arg(axis)); - } - - if (text == "rotate in a figure 8 around all axis" /* support for old typo */ - || text == "rotate in a figure 8 around all axes" /* current version */) { - setInstructionImage(":/files/images/px4/calibration/mag_calibration_figure8.png"); - } - - if (text.endsWith(" calibration: done") || text.endsWith(" calibration: failed")) { - // XXX use a confirmation image or something - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - if (text.endsWith(" calibration: done")) { - ui->progressBar->setValue(100); - } else { - ui->progressBar->setValue(0); - } - - if (activeUAS) { - _requestAllSensorParameters(); - } - } - - if (text.endsWith(" calibration: started")) { - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - } - - // XXX color messages according to severity - - QPlainTextEdit *msgWidget = ui->textView; - - //turn off updates while we're appending content to avoid breaking the autoscroll behavior - msgWidget->setUpdatesEnabled(false); - QScrollBar *scroller = msgWidget->verticalScrollBar(); - - msgWidget->appendHtml(QString("%4").arg(text)); - - // Ensure text area scrolls correctly - scroller->setValue(scroller->maximum()); - msgWidget->setUpdatesEnabled(true); -} - -void QGCPX4SensorCalibration::gyroButtonClicked() -{ - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - activeUAS->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); - ui->progressBar->setValue(0); -} - -void QGCPX4SensorCalibration::magButtonClicked() -{ - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - activeUAS->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0); - ui->progressBar->setValue(0); -} - -void QGCPX4SensorCalibration::accelButtonClicked() -{ - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - activeUAS->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0); - ui->progressBar->setValue(0); -} - -void QGCPX4SensorCalibration::diffPressureButtonClicked() -{ - setInstructionImage(":/files/images/px4/calibration/accel_down.png"); - activeUAS->executeCommand(MAV_CMD_PREFLIGHT_CALIBRATION, 1, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0); - ui->progressBar->setValue(0); -} - -void QGCPX4SensorCalibration::contextMenuEvent(QContextMenuEvent* event) -{ - QMenu menu(this); - menu.addAction(clearAction); - menu.exec(event->globalPos()); -} - -void QGCPX4SensorCalibration::_requestAllSensorParameters(void) -{ - static const char* rgSensorsCalParamsV1[] = { - "SENS_ACC_XOFF", "SENS_ACC_YOFF", "SENS_ACC_ZOFF", "SENS_ACC_XSCALE", "SENS_ACC_YSCALE", "SENS_ACC_ZSCALE", - "SENS_GYRO_XOFF", "SENS_GYRO_YOFF", "SENS_GYRO_ZOFF", "SENS_GYRO_XSCALE", "SENS_GYRO_YSCALE", "SENS_GYRO_ZSCALE", - "SENS_MAG_XOFF", "SENS_MAG_YOFF", "SENS_MAG_ZOFF", "SENS_MAG_XSCALE", "SENS_MAG_YSCALE", "SENS_MAG_ZSCALE", "SENS_EXT_MAG_ROT", - "SENS_DPRES_OFF", "SENS_DPRES_ANA", - "SENS_BOARD_ROT", - NULL }; - - static const char* rgSensorsCalParamsV2[] = { - "CAL_ACC0_ID", "CAL_ACC0_XOFF", "CAL_ACC0_YOFF", "CAL_ACC0_ZOFF", "CAL_ACC0_XSCALE", "CAL_ACC0_YSCALE", "CAL_ACC0_ZSCALE", - "CAL_GYRO0_ID", "CAL_GYRO0_XOFF", "CAL_GYRO0_YOFF", "CAL_GYRO0_ZOFF", "CAL_GYRO0_XSCALE", "CAL_GYRO0_YSCALE", "CAL_GYRO0_ZSCALE", - "CAL_MAG0_ID", "CAL_MAG0_XOFF", "CAL_MAG0_YOFF", "CAL_MAG0_ZOFF", "CAL_MAG0_XSCALE", "CAL_MAG0_YSCALE", "CAL_MAG0_ZSCALE", "SENS_EXT_MAG_ROT", - "SENS_DPRES_OFF", "SENS_DPRES_ANA", - "SENS_BOARD_ROT", - NULL }; - - Q_ASSERT(activeUAS); - QGCUASParamManagerInterface* paramMgr = activeUAS->getParamManager(); - - // Temp hack for parameter mapping - bool paramsV1 = paramMgr->getComponentForParam("SENS_MAG_XOFF").count(); - static const char** prgParamList = paramsV1 ? rgSensorsCalParamsV1 : rgSensorsCalParamsV2; - - for (size_t i=0; prgParamList[i] != NULL; i++) { - qDebug() << "Requesting" << prgParamList[i]; - activeUAS->requestParameter(0, prgParamList[i]); - } -} \ No newline at end of file diff --git a/src/ui/px4_configuration/QGCPX4SensorCalibration.h b/src/ui/px4_configuration/QGCPX4SensorCalibration.h deleted file mode 100644 index 8c84e62e0f66cad231211f1adf9692ddc3380973..0000000000000000000000000000000000000000 --- a/src/ui/px4_configuration/QGCPX4SensorCalibration.h +++ /dev/null @@ -1,92 +0,0 @@ -#ifndef QGCPX4SENSORCALIBRATION_H -#define QGCPX4SENSORCALIBRATION_H - -#include -#include -#include - -namespace Ui { -class QGCPX4SensorCalibration; -} - -class QGCPX4SensorCalibration : public QWidget -{ - Q_OBJECT - -public: - explicit QGCPX4SensorCalibration(QWidget *parent = 0); - ~QGCPX4SensorCalibration(); - -public slots: - /** - * @brief Set currently active UAS - * @param uas the current active UAS - */ - void setActiveUAS(UASInterface* uas); - - /** - * @brief Handle text message from current active UAS - * @param uasid - * @param componentid - * @param severity - * @param text - */ - void handleTextMessage(int uasid, int componentid, int severity, QString text); - - /** - * @brief Update system specs / properties - * @param id the UID of the aircraft - */ - void updateSystemSpecs(int id); - - void gyroButtonClicked(); - void magButtonClicked(); - void accelButtonClicked(); - void diffPressureButtonClicked(); - - /** - * @brief Hand context menu event - * @param event - */ - virtual void contextMenuEvent(QContextMenuEvent* event); - - void setAutopilotOrientation(int index); - void setGpsOrientation(int index); - void parameterChanged(int uas, int component, QString parameterName, QVariant value); - -protected slots: - - void setInstructionImage(const QString &path); - - void setAutopilotImage(const QString &path); - - void setGpsImage(const int index); - - void setAutopilotImage(const int index); - - void setGpsImage(const QString &path); - -protected: - UASInterface* activeUAS; - QAction* clearAction; - QPixmap instructionIcon; - QPixmap autopilotIcon; - QPixmap gpsIcon; - - virtual void resizeEvent(QResizeEvent* event); - - void setMagCalibrated(bool calibrated); - void setGyroCalibrated(bool calibrated); - void setAccelCalibrated(bool calibrated); - void setDiffPressureCalibrated(bool calibrated); - - void updateIcons(); - -private: - void _requestAllSensorParameters(void); - - Ui::QGCPX4SensorCalibration *ui; - -}; - -#endif // QGCPX4SENSORCALIBRATION_H diff --git a/src/ui/px4_configuration/QGCPX4SensorCalibration.ui b/src/ui/px4_configuration/QGCPX4SensorCalibration.ui deleted file mode 100644 index a99e1dbaeb8e39d74edff2af36c10943a3db1273..0000000000000000000000000000000000000000 --- a/src/ui/px4_configuration/QGCPX4SensorCalibration.ui +++ /dev/null @@ -1,275 +0,0 @@ - - - QGCPX4SensorCalibration - - - - 0 - 0 - 659 - 636 - - - - Form - - - QPushButton#magButton { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #73D95D, stop: 1 #18A154); - border-radius: 8px; - min-height: 25px; - max-height: 30px; - min-width: 60px; - max-width: 140px; - margin: 5px; - border: 2px solid #465158; -} - -QPushButton#gyroButton, QPushButton#accelButton, QPushButton#diffPressureButton { - background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #D3795D, stop: 1 #A81154); - border-radius: 8px; - min-height: 25px; - max-height: 30px; - min-width: 60px; - max-width: 140px; - margin: 5px; - border: 2px solid #465158; -} - - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - Autopilot Orientation - - - - - - - 0 - 250 - - - - - - - - - - - - - - - - - Magnetometer Orientation - - - - - - - 150 - 120 - - - - - - - - - - - - - - - - - - - Qt::Vertical - - - - 498 - 5 - - - - - - - - - - - - - - - 24 - - - - - - - false - - - - - - - - - - - - Qt::AlignCenter - - - - - - - - - - Qt::AlignCenter - - - - - - - Gyroscope - - - - :/files/images/px4/calibration/arrows.png:/files/images/px4/calibration/arrows.png - - - - - - - Magnetometer - - - - :/files/images/px4/calibration/arrows.png:/files/images/px4/calibration/arrows.png - - - - - - - Accelerometer - - - - :/files/images/px4/calibration/arrows.png:/files/images/px4/calibration/arrows.png - - - - - - - Diff. pressure - - - - :/files/images/px4/calibration/arrows.png:/files/images/px4/calibration/arrows.png - - - - - - - - - - Qt::AlignCenter - - - - - - - - - - Qt::AlignCenter - - - - - - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Log - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - diff --git a/src/ui/qmlcommon/QGCAltitudeWidget.qml b/src/ui/qmlcommon/QGCAltitudeWidget.qml new file mode 100644 index 0000000000000000000000000000000000000000..b46d87bc0271300fa95d818274bf2616baec7f1b --- /dev/null +++ b/src/ui/qmlcommon/QGCAltitudeWidget.qml @@ -0,0 +1,112 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Altitude Indicator + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +Rectangle { + id: root + property real altitude: 50 + property real _reticleSpacing: ScreenTools.pixelSizeFactor * (16) + property real _reticleHeight: ScreenTools.pixelSizeFactor * (2) + property real _reticleSlot: _reticleSpacing + _reticleHeight + property var _speedArray: [] + property int _currentCenter: 0 + property int _currentStart: -100 + + function updateArray() { + var tmpArray = []; + _currentCenter = Math.floor(altitude / 5) * 5; + _currentStart = _currentCenter + 100; + for(var i = 0; i < 40; i++) { + tmpArray[i] = _currentStart - (i * 5); + } + _speedArray = tmpArray; + } + + Component.onCompleted: + { + updateArray() ; + } + + onAltitudeChanged: { + if(Math.abs(_currentCenter - altitude) > 50) { + updateArray() ; + } + } + + anchors.verticalCenter: parent.verticalCenter + smooth: true + radius: ScreenTools.pixelSizeFactor * (5) + border.color: Qt.rgba(1,1,1,0.25) + gradient: Gradient { + GradientStop { position: 0.0; color: Qt.rgba(0,0,0,0.65) } + GradientStop { position: 0.5; color: Qt.rgba(0,0,0,0.25) } + GradientStop { position: 1.0; color: Qt.rgba(0,0,0,0.65) } + } + Rectangle { + id: clipRect + height: parent.height - ScreenTools.pixelSizeFactor * (5) + width: parent.width + clip: true + color: Qt.rgba(0,0,0,0); + anchors.verticalCenter: parent.verticalCenter + Column{ + id: col + width: parent.width + anchors.verticalCenter: parent.verticalCenter + spacing: _reticleSpacing + Repeater { + model: _speedArray + anchors.left: parent.left + Rectangle { + property int _alt: modelData + width: (_alt % 10 === 0) ? ScreenTools.pixelSizeFactor * (10) : ScreenTools.pixelSizeFactor * (15) + height: _reticleHeight + color: Qt.rgba(1,1,1,0.35) + QGCLabel { + visible: (_alt % 10 === 0) + x: ScreenTools.pixelSizeFactor * (20) + anchors.verticalCenter: parent.verticalCenter + antialiasing: true + font.weight: Font.DemiBold + text: _alt + color: _alt < 0 ? "#f8983a" : "white" + style: Text.Outline + styleColor: Qt.rgba(0,0,0,0.25) + } + } + } + transform: Translate { + y: ((altitude - _currentCenter) * _reticleSlot / 5) - (_reticleSlot / 2) + } + } + } +} diff --git a/src/ui/qmlcommon/QGCArtificialHorizon.qml b/src/ui/qmlcommon/QGCArtificialHorizon.qml new file mode 100644 index 0000000000000000000000000000000000000000..921254348f75cd4ae9a00608382a7399d235a19f --- /dev/null +++ b/src/ui/qmlcommon/QGCArtificialHorizon.qml @@ -0,0 +1,78 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Artificial Horizon + * @author Gus Grubba + */ + +import QtQuick 2.4 + +Item { + id: root + property real rollAngle : 0 + property real pitchAngle: 0 + clip: true + anchors.fill: parent + Item { + id: artificialHorizon + width: root.width * 4 + height: root.height * 4 + anchors.centerIn: parent + Rectangle { + id: sky + anchors.fill: parent + smooth: true + antialiasing: true + gradient: Gradient { + GradientStop { position: 0.25; color: Qt.hsla(0.6, 1.0, 0.25) } + GradientStop { position: 0.5; color: Qt.hsla(0.6, 0.5, 0.55) } + } + } + Rectangle { + id: ground + height: sky.height / 2 + anchors { + left: sky.left; + right: sky.right; + bottom: sky.bottom + } + smooth: true + antialiasing: true + gradient: Gradient { + GradientStop { position: 0.0; color: Qt.hsla(0.25, 0.5, 0.45) } + GradientStop { position: 0.25; color: Qt.hsla(0.25, 0.75, 0.25) } + } + } + transform: [ + Translate { + y: root.visible ? pitchAngle * 4 : 0 + }, + Rotation { + origin.x: artificialHorizon.width / 2 + origin.y: artificialHorizon.height / 2 + angle: root.visible ? -rollAngle : 0 + }] + } +} diff --git a/src/ui/qmlcommon/QGCAttitudeInstrument.qml b/src/ui/qmlcommon/QGCAttitudeInstrument.qml new file mode 100644 index 0000000000000000000000000000000000000000..d27e6764971eeb10da3bf782b716b987e70abeca --- /dev/null +++ b/src/ui/qmlcommon/QGCAttitudeInstrument.qml @@ -0,0 +1,103 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Attitude Instrument + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QGroundControl.Controls 1.0 + +QGCMovableItem { + id: root + property real rollAngle: 0 + property real pitchAngle: 0 + property bool showPitch: true + property real size + + width: size + height: size + + //---------------------------------------------------- + //-- Artificial Horizon + QGCArtificialHorizon { + rollAngle: root.rollAngle + pitchAngle: root.pitchAngle + anchors.fill: parent + } + //---------------------------------------------------- + //-- Pointer + Image { + id: pointer + source: "/qml/attitudePointer.svg" + mipmap: true + fillMode: Image.PreserveAspectFit + anchors.fill: parent + } + //---------------------------------------------------- + //-- Instrument Dial + Image { + id: instrumentDial + source: "/qml/attitudeDial.svg" + mipmap: true + fillMode: Image.PreserveAspectFit + anchors.fill: parent + transform: Rotation { + origin.x: root.width / 2 + origin.y: root.height / 2 + angle: -rollAngle + } + } + //---------------------------------------------------- + //-- Pitch + QGCPitchWidget { + id: pitchWidget + visible: root.showPitch + size: root.size * 0.65 + anchors.verticalCenter: parent.verticalCenter + pitchAngle: root.pitchAngle + rollAngle: root.rollAngle + color: Qt.rgba(0,0,0,0) + } + //---------------------------------------------------- + //-- Cross Hair + Image { + id: crossHair + anchors.centerIn: parent + source: "/qml/crossHair.svg" + mipmap: true + width: size * 0.75 + fillMode: Image.PreserveAspectFit + } + //---------------------------------------------------- + //-- Instrument Pannel + Image { + id: pannel + source: "/qml/attitudeInstrument.svg" + mipmap: true + fillMode: Image.PreserveAspectFit + anchors.fill: parent + } +} diff --git a/src/ui/qmlcommon/QGCAttitudeWidget.qml b/src/ui/qmlcommon/QGCAttitudeWidget.qml new file mode 100644 index 0000000000000000000000000000000000000000..2c9817dc471b96c7ad48839f1305a92d566ded40 --- /dev/null +++ b/src/ui/qmlcommon/QGCAttitudeWidget.qml @@ -0,0 +1,70 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Attitude Widget + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QGroundControl.ScreenTools 1.0 + +Item { + id: root + anchors.centerIn: parent + property real rollAngle : 0 + property real pitchAngle: 0 + + Image { + id: rollDial + anchors { bottom: root.verticalCenter; horizontalCenter: parent.horizontalCenter} + source: "/qml/rollDialWhite.svg" + mipmap: true + width: parent.width + fillMode: Image.PreserveAspectFit + transform: Rotation { + origin.x: rollDial.width / 2 + origin.y: rollDial.height + angle: -rollAngle + } + } + + Image { + id: pointer + anchors { bottom: root.verticalCenter; horizontalCenter: parent.horizontalCenter} + source: "/qml/rollPointerWhite.svg" + mipmap: true + width: rollDial.width + fillMode: Image.PreserveAspectFit + } + + Image { + id: crossHair + anchors.centerIn: parent + source: "/qml/crossHair.svg" + mipmap: true + width: parent.width + fillMode: Image.PreserveAspectFit + } +} diff --git a/src/ui/qmlcommon/QGCCompass.qml b/src/ui/qmlcommon/QGCCompass.qml new file mode 100644 index 0000000000000000000000000000000000000000..5ce4d1932f95cfedb288ab380869a5a682dd9607 --- /dev/null +++ b/src/ui/qmlcommon/QGCCompass.qml @@ -0,0 +1,74 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Compass + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +Item { + id: root + property real heading : 0 + Image { + id: compass + anchors.centerIn: parent + source: "/qml/compass.svg" + mipmap: true + width: root.width + fillMode: Image.PreserveAspectFit + transform: Rotation { + origin.x: compass.width / 2 + origin.y: compass.height / 2 + angle: -heading + } + } + Image { + id: pointer + anchors.bottom: compass.top + anchors.horizontalCenter: root.horizontalCenter + source: "/qml/compassNeedle.svg" + smooth: true + width: compass.width * 0.1 + fillMode: Image.PreserveAspectFit + } + Rectangle { + anchors.centerIn: compass + width: ScreenTools.pixelSizeFactor * (40) + height: ScreenTools.pixelSizeFactor * (25) + border.color: Qt.rgba(1,1,1,0.15) + color: Qt.rgba(0,0,0,0.25) + QGCLabel { + text: heading.toFixed(0) + font.weight: Font.DemiBold + color: "white" + anchors.centerIn: parent + } + } +} + + diff --git a/src/ui/qmlcommon/QGCCompassInstrument.qml b/src/ui/qmlcommon/QGCCompassInstrument.qml new file mode 100644 index 0000000000000000000000000000000000000000..73abbf98ee5f0c82470c28c2dca3d097682d5e16 --- /dev/null +++ b/src/ui/qmlcommon/QGCCompassInstrument.qml @@ -0,0 +1,82 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Compass + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +QGCMovableItem { + id: root + property real heading: 0 + property real size: ScreenTools.pixelSizeFactor * (120) + property real _fontSize: ScreenTools.fontPointFactor * (12) + width: size + height: size + Rectangle { + id: compassBack + anchors.fill: parent + color: "#212121" + } + Image { + id: pointer + source: "/qml/compassInstrumentAirplane.svg" + mipmap: true + width: size * 0.75 + fillMode: Image.PreserveAspectFit + anchors.centerIn: parent + transform: Rotation { + origin.x: pointer.width / 2 + origin.y: pointer.height / 2 + angle: heading + } + } + Image { + id: compassDial + source: "/qml/compassInstrumentDial.svg" + mipmap: true + fillMode: Image.PreserveAspectFit + anchors.fill: parent + } + Rectangle { + anchors.centerIn: root + width: size * 0.35 + height: size * 0.2 + border.color: Qt.rgba(1,1,1,0.15) + color: Qt.rgba(0,0,0,0.65) + QGCLabel { + text: heading.toFixed(0) + font.weight: Font.DemiBold + font.pointSize: _fontSize < 1 ? 1 : _fontSize; + color: "white" + anchors.centerIn: parent + } + } +} + + diff --git a/src/ui/qmlcommon/QGCCurrentAltitude.qml b/src/ui/qmlcommon/QGCCurrentAltitude.qml new file mode 100644 index 0000000000000000000000000000000000000000..c38ac307685b5fcdf56042d0755eac9112f3ace3 --- /dev/null +++ b/src/ui/qmlcommon/QGCCurrentAltitude.qml @@ -0,0 +1,64 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Current Altitude Indicator + * @author Gus Grubba + */ + +import QtQuick 2.1 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +Rectangle { + id: root + property real altitude: 0 + property real vertZ: 0 + property bool showAltitude: true + property bool showClimbRate: true + anchors.verticalCenter: parent.verticalCenter + width: parent.width + height: (showAltitude && showClimbRate) ? ScreenTools.pixelSizeFactor * (50) : ScreenTools.pixelSizeFactor * (25) + color: "black" + border.color: Qt.rgba(1,1,1,0.25) + opacity: 1.0 + Column{ + anchors.centerIn: parent + spacing: ScreenTools.pixelSizeFactor * (4) + QGCLabel { + text: 'h: ' + altitude.toFixed(0) + font.weight: Font.DemiBold + color: "white" + anchors.right: parent.right + visible: showAltitude + } + QGCLabel { + text: 'vZ: ' + vertZ.toFixed(0) + color: "white" + font.weight: showAltitude ? Font.Normal : Font.DemiBold + anchors.right: parent.right + visible: showClimbRate + } + } +} diff --git a/src/ui/qmlcommon/QGCCurrentSpeed.qml b/src/ui/qmlcommon/QGCCurrentSpeed.qml new file mode 100644 index 0000000000000000000000000000000000000000..22e6e7fbb69688dee697139e5f861032601c2ef3 --- /dev/null +++ b/src/ui/qmlcommon/QGCCurrentSpeed.qml @@ -0,0 +1,64 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Current Speed Indicator + * @author Gus Grubba + */ + +import QtQuick 2.1 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +Rectangle { + id: root + property real airspeed: 0 + property real groundspeed: 0 + property bool showAirSpeed: true + property bool showGroundSpeed: true + anchors.verticalCenter: parent.verticalCenter + width: parent.width + height: (showAirSpeed && showGroundSpeed) ? ScreenTools.pixelSizeFactor * (50) : ScreenTools.pixelSizeFactor * (25) + color: "black" + border.color: Qt.rgba(1,1,1,0.25) + opacity: 1.0 + Column{ + anchors.centerIn: parent + spacing: ScreenTools.pixelSizeFactor * (4) + QGCLabel { + text: 'GS: ' + groundspeed.toFixed(0) + font.weight: Font.DemiBold + color: "white" + anchors.right: parent.right + visible: showGroundSpeed + } + QGCLabel { + text: 'AS: ' + airspeed.toFixed(0) + color: "white" + anchors.right: parent.right + font.weight: showAirSpeed ? Font.Normal : Font.DemiBold + visible: showAirSpeed + } + } +} diff --git a/src/ui/qmlcommon/QGCMapBackground.qml b/src/ui/qmlcommon/QGCMapBackground.qml new file mode 100644 index 0000000000000000000000000000000000000000..30e906df78554f5280344618b18606c6d8475ced --- /dev/null +++ b/src/ui/qmlcommon/QGCMapBackground.qml @@ -0,0 +1,252 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Map Background + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QtPositioning 5.3 +import QtLocation 5.3 + +import QGroundControl.Controls 1.0 +import QGroundControl.FlightControls 1.0 +import QGroundControl.ScreenTools 1.0 + +Rectangle { + id: root + property real latitude: 37.803784 + property real longitude : -122.462276 + property real zoomLevel: 18 + property real heading: 0 + property bool alwaysNorth: true + property bool interactive: true + property alias mapItem: map + + color: Qt.rgba(0,0,0,0) + clip: true + + function adjustSize() { + if(root.visible) { + if(true /*alwaysNorth*/) { + map.width = root.width; + map.height = root.height; + } else { + var diag = Math.ceil(Math.sqrt((root.width * root.width) + (root.height * root.height))); + map.width = diag; + map.height = diag; + } + } else { + map.width = 1; + map.height = 1; + } + } + + function formatDistance(meters) + { + var dist = Math.round(meters) + if (dist > 1000 ){ + if (dist > 100000){ + dist = Math.round(dist / 1000) + } + else{ + dist = Math.round(dist / 100) + dist = dist / 10 + } + dist = dist + " km" + } + else{ + dist = dist + " m" + } + return dist + } + + Plugin { + id: mapPlugin + name: "QGroundControl" + } + + Map { + id: map + property real lon: (longitude >= -180 && longitude <= 180) ? longitude : 0 + property real lat: (latitude >= -90 && latitude <= 90) ? latitude : 0 + property variant scaleLengths: [5, 10, 25, 50, 100, 150, 250, 500, 1000, 2000, 5000, 10000, 20000, 50000, 100000, 200000, 500000, 1000000, 2000000] + plugin: mapPlugin + width: 1 + height: 1 + zoomLevel: root.zoomLevel + anchors.centerIn: parent + center: QtPositioning.coordinate(lat, lon) + /* + // There is a bug currently in Qt where it fails to render a map taller than 6 tiles high. Until + // that's fixed, we can't rotate the map as it would require a larger map, which can easely grow + // larger than 6 tiles high. + transform: Rotation { + origin.x: map.width / 2 + origin.y: map.height / 2 + angle: map.visible ? (alwaysNorth ? 0 : -heading) : 0 + } + */ + gesture.flickDeceleration: 3000 + gesture.enabled: root.interactive + + onWidthChanged: { + scaleTimer.restart() + } + + onHeightChanged: { + scaleTimer.restart() + } + + onZoomLevelChanged:{ + scaleTimer.restart() + } + + Component.onCompleted: { + map.zoomLevel = 18 + } + + function calculateScale() { + var coord1, coord2, dist, text, f + f = 0 + coord1 = map.toCoordinate(Qt.point(0,scale.y)) + coord2 = map.toCoordinate(Qt.point(0+scaleImage.sourceSize.width,scale.y)) + dist = Math.round(coord1.distanceTo(coord2)) + if (dist === 0) { + // not visible + } else { + for (var i = 0; i < scaleLengths.length-1; i++) { + if (dist < (scaleLengths[i] + scaleLengths[i+1]) / 2 ) { + f = scaleLengths[i] / dist + dist = scaleLengths[i] + break; + } + } + if (f === 0) { + f = dist / scaleLengths[i] + dist = scaleLengths[i] + } + } + text = formatDistance(dist) + scaleImage.width = (scaleImage.sourceSize.width * f) - 2 * scaleImageLeft.sourceSize.width + scaleText.text = text + } + } + + QGCSlider { + id: zoomSlider; + minimum: map.minimumZoomLevel; + maximum: map.maximumZoomLevel; + opacity: 1 + visible: parent.visible + z: map.z + 20 + anchors { + bottom: parent.bottom; + bottomMargin: ScreenTools.pixelSizeFactor * (15) + rightMargin: ScreenTools.pixelSizeFactor * (20) + leftMargin: ScreenTools.pixelSizeFactor * (20) + left: parent.left + } + width: parent.width - anchors.rightMargin - anchors.leftMargin + value: map.zoomLevel + Binding { + target: zoomSlider; property: "value"; value: map.zoomLevel + } + onValueChanged: { + map.zoomLevel = value + } + } + + Item { + id: scale + parent: zoomSlider.parent + visible: scaleText.text !== "0 m" + z: map.z + 20 + opacity: 1 + anchors { + bottom: zoomSlider.top; + bottomMargin: ScreenTools.pixelSizeFactor * (8); + left: zoomSlider.left + leftMargin: ScreenTools.pixelSizeFactor * (4) + } + Image { + id: scaleImageLeft + source: "/qml/scale_end.png" + anchors.bottom: parent.bottom + anchors.left: parent.left + } + Image { + id: scaleImage + source: "/qml/scale.png" + anchors.bottom: parent.bottom + anchors.left: scaleImageLeft.right + } + Image { + id: scaleImageRight + source: "/qml/scale_end.png" + anchors.bottom: parent.bottom + anchors.left: scaleImage.right + } + QGCLabel { + id: scaleText + color: "white" + font.weight: Font.DemiBold + horizontalAlignment: Text.AlignHCenter + anchors.bottom: parent.bottom + anchors.left: parent.left + anchors.bottomMargin: ScreenTools.pixelSizeFactor * (10) + text: "0 m" + } + Component.onCompleted: { + map.calculateScale(); + } + } + + Timer { + id: scaleTimer + interval: 100 + running: false + repeat: false + onTriggered: { + map.calculateScale() + } + } + + onVisibleChanged: { + adjustSize(); + } + + onAlwaysNorthChanged: { + adjustSize(); + } + + onWidthChanged: { + adjustSize(); + } + + onHeightChanged: { + adjustSize(); + } +} diff --git a/src/ui/qmlcommon/QGCMapToolButton.qml b/src/ui/qmlcommon/QGCMapToolButton.qml new file mode 100644 index 0000000000000000000000000000000000000000..49948fe4fa60f50635d9b36ee619a0c62d16485a --- /dev/null +++ b/src/ui/qmlcommon/QGCMapToolButton.qml @@ -0,0 +1,70 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtQuick.Controls.Styles 1.2 +import QtQuick.Controls.Private 1.0 + +import QGroundControl.Controls 1.0 +import QGroundControl.Palette 1.0 +import QGroundControl.ScreenTools 1.0 + +Button { + property var imageSource: undefined + property var __qgcPal: QGCPalette { colorGroupEnabled: enabled } + property bool __showHighlight: (pressed | hovered | checked) && !__forceHoverOff + + // This fixes the issue with button hover where if a Button is near the edge oa QQuickWidget you can + // move the mouse fast enough such that the MouseArea does not trigger an onExited. This is turn + // cause the hover property to not be cleared correctly. + + property bool __forceHoverOff: false + property int __lastGlobalMouseX: 0 + property int __lastGlobalMouseY: 0 + + Connections { + target: __behavior + onMouseXChanged: { + __lastGlobalMouseX = ScreenTools.mouseX + __lastGlobalMouseY = ScreenTools.mouseY + } + onMouseYChanged: { + __lastGlobalMouseX = ScreenTools.mouseX + __lastGlobalMouseY = ScreenTools.mouseY + } + onEntered: { __forceHoverOff; false; hoverTimer.start() } + onExited: { __forceHoverOff; false; hoverTimer.stop() } + } + + Timer { + id: hoverTimer + interval: 250 + repeat: true + onTriggered: { + if (__lastGlobalMouseX != ScreenTools.mouseX || __lastGlobalMouseY != ScreenTools.mouseY) { + __forceHoverOff = true + } else { + __forceHoverOff = false + } + } + } + + style: ButtonStyle { + /*! This defines the background of the button. */ + background: Item { + property bool __checked: (control.checkable && control.checked) + + Rectangle { + id: backgroundRectangle + anchors.fill: parent + color: __showHighlight ? __qgcPal.buttonHighlight : (__checked ? __qgcPal.buttonHighlight : __qgcPal.window); + } + + QGCColoredImage { + id: image + anchors.fill: parent + opacity: control.enabled ? 0.6 : 0.5 + source: imageSource + color: __showHighlight ? __qgcPal.buttonHighlightText : (__checked ? __qgcPal.primaryButtonText : __qgcPal.buttonText) + } + } + } +} diff --git a/src/ui/qmlcommon/QGCPitchWidget.qml b/src/ui/qmlcommon/QGCPitchWidget.qml new file mode 100644 index 0000000000000000000000000000000000000000..610d48ebb06abb53d322ee1220eba8c0cbdd0ced --- /dev/null +++ b/src/ui/qmlcommon/QGCPitchWidget.qml @@ -0,0 +1,103 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Pitch Indicator + * @author Gus Grubba + */ + +import QtQuick 2.1 +import QGroundControl.ScreenTools 1.0 +import QGroundControl.Controls 1.0 + +Rectangle { + property real pitchAngle: 0 + property real rollAngle: 0 + property real size: 120 + property real _reticleHeight: 1 + property real _reticleSpacing: size * 0.15 + property real _reticleSlot: _reticleSpacing + _reticleHeight + property real _longDash: size * 0.40 + property real _shortDash: size * 0.25 + property real _fontSize: ScreenTools.fontPointFactor * (11); + height: size * 0.9 + width: size + radius: ScreenTools.pixelSizeFactor * (8) + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + clip: true + Item { + height: parent.height + width: parent.width + Column{ + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + spacing: _reticleSpacing + Repeater { + model: 36 + Rectangle { + property int _pitch: -(modelData * 5 - 90) + anchors.horizontalCenter: parent.horizontalCenter + width: (_pitch % 10) === 0 ? _longDash : _shortDash + height: _reticleHeight + color: "white" + antialiasing: true + smooth: true + QGCLabel { + anchors.horizontalCenter: parent.horizontalCenter + anchors.horizontalCenterOffset: -(_longDash * 0.8) + anchors.verticalCenter: parent.verticalCenter + smooth: true + font.weight: Font.DemiBold + font.pointSize: _fontSize < 1 ? 1 : _fontSize; + text: _pitch + color: "white" + visible: (_pitch != 0) && ((_pitch % 10) === 0) + } + QGCLabel { + anchors.horizontalCenter: parent.horizontalCenter + anchors.horizontalCenterOffset: (_longDash * 0.8) + anchors.verticalCenter: parent.verticalCenter + smooth: true + font.weight: Font.DemiBold + font.pointSize: _fontSize < 1 ? 1 : _fontSize; + text: _pitch + color: "white" + visible: (_pitch != 0) && ((_pitch % 10) === 0) + } + } + } + } + transform: [ Translate { + y: (pitchAngle * _reticleSlot / 5) - (_reticleSlot / 2) + }] + } + transform: [ + Rotation { + origin.x: width / 2 + origin.y: height / 2 + angle: -rollAngle + } + ] +} diff --git a/src/ui/qmlcommon/QGCSlider.qml b/src/ui/qmlcommon/QGCSlider.qml new file mode 100644 index 0000000000000000000000000000000000000000..3a0668a37b99f913128d4bfeea7f104e2d66c3c5 --- /dev/null +++ b/src/ui/qmlcommon/QGCSlider.qml @@ -0,0 +1,122 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names +** of its contributors may be used to endorse or promote products derived +** from this software without specific prior written permission. +** +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 2.1 +import QGroundControl.Controls 1.0 +import QGroundControl.ScreenTools 1.0 + +Item { + id: slider; + height: 12 + property real value // value is read/write. + property real minimum: 0 + property real maximum: 1 + property int length: width - handle.width + + Rectangle { + anchors.fill: parent + radius: ScreenTools.pixelSizeFactor * (6) + color: Qt.rgba(0,0,0,0.65); + } + + Rectangle { + anchors.left: parent.left + anchors.leftMargin: ScreenTools.pixelSizeFactor * (4) + radius: ScreenTools.pixelSizeFactor * (4) + height: ScreenTools.pixelSizeFactor * (4) + width: handle.x - x + color: "#69bb17" + anchors.verticalCenter: parent.verticalCenter + } + + Rectangle { + id: labelRect + width: label.width + height: label.height + ScreenTools.pixelSizeFactor * (4) + radius: ScreenTools.pixelSizeFactor * (4) + smooth: true + color: Qt.rgba(1,1,1,0.75); + border.width: ScreenTools.pixelSizeFactor * (1) + border.color: Qt.rgba(0,0,0,0.45); + anchors.bottom: handle.top + anchors.bottomMargin: ScreenTools.pixelSizeFactor * (4) + visible: mouseRegion.pressed + x: Math.max(Math.min(handle.x + (handle.width - width ) / 2, slider.width - width), 0) + QGCLabel{ + id: label + color: "black" + text: slider.value.toFixed(2) + width: font.pointSize * 3.5 + anchors.horizontalCenter: labelRect.horizontalCenter + horizontalAlignment: Text.AlignHCenter + anchors.verticalCenter: labelRect.verticalCenter + } + } + + Rectangle { + id: handle; + smooth: true + width: ScreenTools.pixelSizeFactor * (26); + y: (slider.height - height) / 2; + x: (slider.value - slider.minimum) * slider.length / (slider.maximum - slider.minimum) + + height: width + radius: width / 2 + gradient: normalGradient + border.width: 2 + border.color: "white" + + Gradient { + id: normalGradient + GradientStop { position: 0.0; color: "#b0b0b0" } + GradientStop { position: 0.66; color: "#909090" } + GradientStop { position: 1.0; color: "#545454" } + } + + MouseArea { + id: mouseRegion + hoverEnabled: false + anchors.fill: parent; drag.target: parent + drag.axis: Drag.XAxis; drag.minimumX: 0; drag.maximumX: slider.length + preventStealing: true + onPositionChanged: { slider.value = (slider.maximum - slider.minimum) * handle.x / slider.length + slider.minimum; } + } + } +} diff --git a/src/ui/qmlcommon/QGCSpeedWidget.qml b/src/ui/qmlcommon/QGCSpeedWidget.qml new file mode 100644 index 0000000000000000000000000000000000000000..08666a06908a5975d3c8259d909fdc78b52bf25a --- /dev/null +++ b/src/ui/qmlcommon/QGCSpeedWidget.qml @@ -0,0 +1,89 @@ +/*===================================================================== + +QGroundControl Open Source Ground Control Station + +(c) 2009, 2015 QGROUNDCONTROL PROJECT + +This file is part of the QGROUNDCONTROL project + + QGROUNDCONTROL is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + QGROUNDCONTROL is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with QGROUNDCONTROL. If not, see . + +======================================================================*/ + +/** + * @file + * @brief QGC Speed Indicator + * @author Gus Grubba + */ + +import QtQuick 2.4 +import QGroundControl.ScreenTools 1.0 +import QGroundControl.Controls 1.0 + +Rectangle { + id: root + property real speed: 0 + property real _reticleSpacing: ScreenTools.pixelSizeFactor * (10) + property real _reticleHeight: ScreenTools.pixelSizeFactor * (2) + property real _reticleSlot: _reticleSpacing + _reticleHeight + anchors.verticalCenter: parent.verticalCenter + z:10 + smooth: true + radius: ScreenTools.pixelSizeFactor * (5) + border.color: Qt.rgba(1,1,1,0.25) + gradient: Gradient { + GradientStop { position: 0.0; color: Qt.rgba(0,0,0,0.65) } + GradientStop { position: 0.5; color: Qt.rgba(0,0,0,0.25) } + GradientStop { position: 1.0; color: Qt.rgba(0,0,0,0.65) } + } + Rectangle { + id: clipRect + height: parent.height - ScreenTools.pixelSizeFactor * (5) + width: parent.width + clip: true + color: Qt.rgba(0,0,0,0); + anchors.verticalCenter: parent.verticalCenter + Column{ + id: col + width: parent.width + anchors.verticalCenter: parent.verticalCenter + spacing: _reticleSpacing + Repeater { + model: 40 + Rectangle { + property int _speed: -(index - 20) + width: (_speed % 5 === 0) ? ScreenTools.pixelSizeFactor * (10) : ScreenTools.pixelSizeFactor * (15) + anchors.right: parent.right + height: _reticleHeight + color: Qt.rgba(1,1,1,0.35) + QGCLabel { + visible: (_speed % 5 === 0) + anchors.horizontalCenter: parent.horizontalCenter + anchors.horizontalCenterOffset: ScreenTools.pixelSizeFactor * (-30) + anchors.verticalCenter: parent.verticalCenter + antialiasing: true + font.weight: Font.DemiBold + text: _speed + color: _speed < 0 ? "#f8983a" : "white" + style: Text.Outline + styleColor: Qt.rgba(0,0,0,0.25) + } + } + } + transform: Translate { + y: (speed * _reticleSlot) - (_reticleSlot / 2) + } + } + } +} diff --git a/src/comm/QGCParamID.cc b/src/ui/qmlcommon/QGCWaypointEditor.qml similarity index 64% rename from src/comm/QGCParamID.cc rename to src/ui/qmlcommon/QGCWaypointEditor.qml index 804835a6540fce7ac406b42d96d11a5acb56cd3e..317a5bb0960a7eeb4ee6348939598bbe0d7e6165 100644 --- a/src/comm/QGCParamID.cc +++ b/src/ui/qmlcommon/QGCWaypointEditor.qml @@ -2,7 +2,7 @@ QGroundControl Open Source Ground Control Station -(c) 2009, 2010 QGROUNDCONTROL PROJECT +(c) 2009, 2015 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project @@ -23,29 +23,17 @@ This file is part of the QGROUNDCONTROL project /** * @file - * @brief Implementation of class OpalRT::QGCParamID - * @author Bryan Godbolt + * @brief QGC Waypoint Editor + * @author Gus Grubba */ -#include "QGCParamID.h" -using namespace OpalRT; +import QtQuick 2.4 -QGCParamID::QGCParamID(const char paramid[]):data(paramid) -{ -} +import QGroundControl.Palette 1.0 -QGCParamID::QGCParamID(const QString s):data(s) -{ +Rectangle { + QGCPalette { id: palette; colorGroupEnabled: true } + id: root + color: palette.window } - -QGCParamID::QGCParamID(const QGCParamID &other):data(other.data) -{ - -} - -// -//QDataStream& operator<<(QDataStream& stream, const QGCParamID& paramid) -//{ -// return stream << paramid.data; -//} diff --git a/src/ui/qmlcommon/attitudeDial.svg b/src/ui/qmlcommon/attitudeDial.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e74c332107021d7d1e2319c22e44d2a03132dc9 --- /dev/null +++ b/src/ui/qmlcommon/attitudeDial.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/ui/qmlcommon/attitudeInstrument.svg b/src/ui/qmlcommon/attitudeInstrument.svg new file mode 100644 index 0000000000000000000000000000000000000000..b5a4940d902c2887ff71d6ac61cc9193ba427d41 --- /dev/null +++ b/src/ui/qmlcommon/attitudeInstrument.svg @@ -0,0 +1,7 @@ + + + + + diff --git a/src/ui/qmlcommon/attitudePointer.svg b/src/ui/qmlcommon/attitudePointer.svg new file mode 100644 index 0000000000000000000000000000000000000000..50bdbdedf83a97154e814997cbda8743b9c2bf3c --- /dev/null +++ b/src/ui/qmlcommon/attitudePointer.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/src/ui/qmlcommon/buttonHome.svg b/src/ui/qmlcommon/buttonHome.svg new file mode 100644 index 0000000000000000000000000000000000000000..22012e566112b73bc1895eb2985218aba83fa233 --- /dev/null +++ b/src/ui/qmlcommon/buttonHome.svg @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/ui/qmlcommon/buttonLeft.svg b/src/ui/qmlcommon/buttonLeft.svg new file mode 100644 index 0000000000000000000000000000000000000000..8219d4ffef5357be9acf51322d578dff980d6100 --- /dev/null +++ b/src/ui/qmlcommon/buttonLeft.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/src/ui/qmlcommon/buttonMore.svg b/src/ui/qmlcommon/buttonMore.svg new file mode 100644 index 0000000000000000000000000000000000000000..f19e27ff1d2055cffd7b421e68aff96ebec46aae --- /dev/null +++ b/src/ui/qmlcommon/buttonMore.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/ui/qmlcommon/buttonRight.svg b/src/ui/qmlcommon/buttonRight.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8d7e8498a6f55b0f61ef42b507147fba207aabe --- /dev/null +++ b/src/ui/qmlcommon/buttonRight.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/src/ui/qmlcommon/compass.svg b/src/ui/qmlcommon/compass.svg new file mode 100644 index 0000000000000000000000000000000000000000..0f388c131436939fc2a06018d93a262250ba4010 --- /dev/null +++ b/src/ui/qmlcommon/compass.svg @@ -0,0 +1,12825 @@ + + + + + + + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + eJzsveuuHMmRJvgE8Q65PxqQBs1U+N1D2xjg5Ln0aldqCSq1Ro3GoECxjkocscgCi6Ue7dPv95m7 +R0a4eZ5LkdK20GRAJTIzMsIv5maf3f/h//jVFy+uvnr3+/sX7jgfpn/4h+v39y8/vHv/04N8evjZ +mzfff/fhPT/60a9/fDDpOOOmq5/lL+uNv71//93rd29/ejD5aI4GX97x1z/65++/O/zz++9///uX +Pz786Mf4+DevP7y5xxev3n3z7cvvvju+fP3j9jr8/ublB3zpf2J/YsLB2J/6dLj6Bb9/+fbPuPv1 +/4tvTXTZ4bPTu+/ffvX67dend//7p4dweGGzO/B/LwK+/L9e//r+u/0dx7ic/2TLH9ij3Xx2UB+8 +6H+EJ9+8e/X9N/dvP/zq/btX9999d/3uzbv33/30cHrz8tWfJixJ+PLu9Zt7zP6blx8OxnGhrn5m +7Jen71+/+epfvv/m9/dYF+8jP3Zfys//9buXX2Ni8nd+nL782Tf45Iv7Dx8wejyci339i3/7f7bv +xELU60f//uv7r1/L9mAJ/+eP65Pfv/v2m5fv/8Sfc675wP/N5cvf3H/z7RustayM8f6I9Sv/t/1H +vRfTkfv4IZZkng/e2YN1vnx/XpD7P7++/4+fHv7l3dv7shJX7z98UfbMe/xM/lu++fX3b+7f/+vb +1x/K7K5+tpSl+MW7r+7f/PRg19/fvXkpKyCXOf+33PCbl++/vv+ArX735vsPQn+5vQFL/fOXf7nn +3oTygl9+e//2N+9+K2N8YdxyiAd/dPFgfVxAbIsH8coLfMTGufWd7cLfy6P5ID6mPd85l0iRv8Km +/fL9669fv/3pCxNBYcHPZT//+f3rr87buRyy/M/UV+DCmtf/lbFi2h8+3PM8VfK5/sWGHObjL77A ++27ffnX97huu/Xc8DyCCt6CQN+++Lt+tf5dv8PPvvy3jl39/iW361fvXb/nM6V/km/zlr958j6/+ ++f2777/92ds/vJt+VI7/rziY929/+RZ/+ePh9P777/54+M27d29wpnc31K/KU/jl+w/lN/I5f4Hz +/u2P/9O8a/3N6D348u/lHdcv37x5/fX7l9/+8fWr0WsG36/v2373jFeCQN/fn58i/2z///ivv3gl +mzga6/6r9QX142eM8G/xjt/ev4LwA4v76vDL3/8v/ANPEd59+M37l69wsvDv9Z4n0D7Yybe4/fWf +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 +yVkJFl+ca4FmxKeDKOKn3AyoVzLimX5/8Cvy3X/Y7jqm1Hl5+o8/DjrmIXTMn904n904n904n904 +n904n904f1UD8N/ZAz+7cT67cT67cdT1t2Rcz3bjPOMaP/D6h1/Tx/z4Yx94eso1Pe223U9Wx1Nz +PZ3dT2cXVN6UlLvauaLO7qjrVQe7nVZb5N3ONzWv4O+MhmoWYXVTNUdVqPmG1V01bXxWuQ3g6mrn +uzqtqYw3Ox/W7RpAOZ+NK1MFn7ZebuPVOnu2ms0lNhC/Jl8uG/uL2GCmnRnmuqZx3qzr3EI3N/aY +c+xsgzsNnbck/JsGxeVkmuplcivkbin5eUXWp2mjqN1WzNwwsltRcKw6W0vM36fl3220N9vS8Fvy +fUmzL2rcWZE7q3JnZa5IkCCpIRt9bpIVbipdESh7pc53St2yKnXXTanb6HRuGqh0SxU5TZ27rYKn +KHL27Nw7K8NPrYLQFOKz17IqxNO6wJccfI/L3Z3knS7U7nC7FXqG7J0u1O+4UMHjCdL3+dHRf0N3 +pAvHJTzPG1l/8lRnZA5HbKJ9ljOy/aa+QxyKiZ7E+eh9kvTKbP2Dzshn/OjjLErL0KK00KJkm0Up +n3bX9ROuB62VJQb/8nV36boE/Cadi1mvsSpP2h5dvl3T+a+iEYyuOLzS4MLpmlYxmwcCV4ve7XXa +XyPFVGO8h7MAlE1guqD3X1LXz2s/yMguWdnj3Ovbvf1pZ4M6W6HM1vhTLFHTzhylDFJrosjYJrUo +mxTkqDZLdUapoT1KW6JKIaSuEMK+BEIpfiBVDyQpr6TuWBnaLMTdMkpPNUFvmdaE0rDm6dlNMmlL +Jb1a0/Vawl5L2Tsn7Una3iR5e9vMvW3u3jZ7b18BwXcJfGsK37Tm8I2y+C7m8W1rIewT+aYuk+8H +VUNYU/n2+fU+WisJ7cfIRY/nTJV0xJj8NjHjKTcLc49zXiQLxWCiJqwehDTwNjzh3o9i5XZYu8Sa +XVzJoKTW5aJa27Ja58JaeS3AJv644p5zkuhq6zma1zIIt5L2elN9iCfJfr2SDNilioqulsp0uZDK +xSIqpwsVVATQT08soGLOBVTk2lZQ2dVQmTZlVPpCKq2USlqVm7ArqLIpqnJWkKazwXyTKn/XlVg5 +c5fGYa67gisrx5l2tVe2FVjatZdPewnWyzklDrXcHEnYsTxeBXZvurko82u6/cOXQIqnX09AMNOT +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 +YkmqwODuDf3Lc+USSixaf4WPJFwT4v4qvzXjF1VLlYoKx+Lehd/OxvI6kReuPN5jWw/WsacVVGM+ +9cJERlEyxAmp0jXz0RkyECuGaTa3b9wCEIbcHq2ft23k6VLW3aWswx02ud4OrkJL6OkliIsWujPX +SSd5mcnRkoYucsIn+CVPJ8Uu6TxLOHNI9sJL6DL/albngmsxFEWg1034i3E9YDm4rYwCSxfvSHBC +jYqOWDQIRp1bslxmSbDQJkFjSkGwW7eUnz4ecPyFZQg+HNPzTKa/i7ogeXwlxe4BMX2FCQGBZk/k +HuxaNCdyRAhEnB3vEv0SjTAJr+FwLZQWem6GuTxPSDSGRartk8FrenH77iZ/KKS/uyQBTVrwPDnk +ar+Kw/ljgn1Euf0q7fY/OFjCHra/J9Tqf/yGkszbn/zp29//3ddPlt/+/C9/+OGf3v7kL375N7/6 +8cfv/vC7b3/5z9/+7Xe//+5XP373m2/PH9ipXvf761/99nfffvrh9//+7Q//+O1f/ea3P/6XP/zw +L7//4uL2z11Bf/vzX/7ux/cDM9APf/j2b/7w3b/+9rt/+/Zvf/i3f/aLODH+n//tdw== + + + v/qnF73/99/+03ff/i/f/fa//4+vX3F0/eH3357r/p//8MPvfrbv5+/+8cf/353/82+/52789rt/ +/vZ/++7frffP/rxPP/zT4+eFtavhBn/yt/7db3/z4/+wP2xfOwf/9av/+3TWM/r8w68f15XTV4fn +Z/zNd3/49Xe/+/HR/8Pj/Ktf/E9/8cv67V/97jf+x/y78+9v/+sPv/ub89L+eN7bP/sza/7L7/77 +uYfvDvziv/6eI8uO/OUf/uWf/0eM8yf/x+9+96vvv/vN2/jTX6S3vzj/+ft/+4Xo5P/y+K///Isv +KOTp7X89/+P/OU3/9tbe/vrt//y/0ttv+Mu//cWfNTmKvfl/fX8azqpEznhE2+cv2yQseOaXz+/+ +9lWb/+3vHlf1335hV5Tf/l8fEtkvKjxpPs4srSO1QtKyRqMR8AIIJfTl9aCWJSVSa27Sl1JfdNh8 +gA1GS6KSEDWezv7pF/+oP2czudW+AcEWvyw8p6RFwfzO1tnuCYy6Pax3g8f0+fUgn310SWq0OJCa +j041KWVr1t7bGkkfWWM6G4U3O+HCsUONAlV98usAsOfXQSgWl3fm7G1XrUL2Zz9dus3kUvx0U9L9 +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 +BahrCl4udVfGzXchw2vAiZdbIamP3VO0SnNX+bN5UcljQyP03VofNGRrEv7pSMtEHPj3DCg5iLqq +hN+loqJ3JyYm7ssSHXtswuQcGxEpR3pkKsCJxZpmcBAtL/T3Pnz6yz09r9klwaWud5UFLDUX3pEy +E8+zc56fwcff/X4U/eF3nwyZOioEvWaDIm5aetAlWzJaqa4t5/4sK+SCmPTqorY+9Mpyb+l7j5SG +cs0xEeSi9zemuYlv/73Cr/X3yz7Vcel7KkKOU1wZbmzMfabiJtz2Ar59mJXzto+Q8dSroCHcs/gc +lxgZZRuCxSjr8t6IifFXVYKM6wstZSHbMiZuVgTy9xlIBRiN822FX39q5jC9MkSCbQz8fm20/KV/ +78kBcP5Xh5DAPMm9uTmKjnXNENOdE/gs2yAhfWuGA10axEYp68EBy4PEpElK2rUm0Ief59gZtxbq +Sp6vD6ITgO9VYpOQ84zdVZG1pZ/OQiMffN+F+nzPI0NlrYuLXztmKpN35ukYu4LH9RqFLcer/Cb/ +Hth/Nums5cFSgB84wi/WNtWJtabjcInL319iEA+MhOJtadXnnTlcgVdJhC4OQuNds0SwB9AiNSfr +Rg84+Ofmopf/khCjL7gkpDylqOB2HzrqDL/wzfejtKwrzJz3Z4YQydf0AtgzCSHtvIaRcn65EfDO +3aDn3YSI8/ySNz+MEZOubA5Xf1rtL3uhEmY/nK/LeWobyAvam0NmHZn4omNz0xgQI12uOWqhS8Ys +9c4JiLuaGvrWLDXfKcbF2kdxUUsAX5laqp61VMX/wcsJ+VFfU/VezYUEyOjZl9X8zNv6+szHCn7E +7Sl68KWFhswH3hlWhWuaVWkbRUT662Ou9UNC1vuLXrrGil6s92a9dIvLwnxqTMquigE5UAvpbgkp +2zuNTjhWEUr2FfDUbTkie2sGm3qspVd5ZMQcK+BpAdas9szVcWzjtGxLJ/SlnJd8foqadBZgp5tb +08gogDGTp1mFN+brq145xOzCxeayJ6PY6D9FRUE/t4M/nDU3lj1c7sB+2hziQ61DTNAAKeWyuYOc +4hwTVDiGMdGeKXSMe5aYuwnMCbucki8HvIy+Cx7hVTNge3oG8sBIRQCeuvJggVi8v0AqNXVVvFLW +lTxeH8Nmn67UDrpl5PyN4erwtX509HIfNk7BL34yhEq4rBPlB25LKaB6QsZfFbEvz841wHMdMzSQ +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 +Kx+/fs8/fLh3Q+2NB1Y57z42fMXh7bXxk3uqQweevC06sPU28O1Hrnx3y23erx8f/OrZlzbfCb7R +5iM7p1Yd31UdPvvShjtP76utPfnMyLJj20eWHt5VXXNg93Tp4I6ZNQe3Tl773kPl6NUfXn/Bnr+5 ++q+e//FNl+8Hf/79ZyewBuW2F348fMlT373lz97fsWHd2Vfuuu/Uzo0jH25fd+PRJ0YXn921fvCT +5zeuP7OrtvrU7qmBA9vG+g8+dcfwe49/cwT0KdDV6ktO7l116ekXRpd+9MLkwJm9M7ef3X3vfUe3 +rLv+6Nax/uNbqzee3LJx8Mhjt1/92o+u+ctn73Z+/5W/u7L7yFOVq07tnamcff6bd5/cOXXbmw/d +4jz/o8v/26FHbvjKyWdHLju7e/2tZ/ZsGDnyTO3m9/F8APDJBzCfDx4fDPc/BDT5yOjXDzw+dsX7 +29bfcHL3nVXwkasnd86s+WDr+JJXfnLbVw4+Xrnsw10zwx/u2rR259+u/F87vl368us/mln6/sPr +wV69fenbv1r2lf0PrQwOPLlp8N3HZm48/uzdM8e333vHmw+tXwI2wNSZFzZuOPPiTPX0i9NjYJdV +39+x/rYXf75aHHhwwy2v/nzmxq3fXP4nb/6k9NWTaOM9NXbt6T1TZdSPp/ZsWPvuA5VLDz1e6ftw +13TpxPaZNeirH3hwTfjO/Tf3gI+y6BjYN+AXjR3cesfwWw+sv/KlH29Y8trPp6//4InqLR88PrTw +2e8s+G9v/WLZhb9+8DZx+JmJFUe23zXz6wdvX3zo0fUrj2/bMHL8qZk1r/1wMHpgetGfPnbH4j97 ++We3L3gTcHjvmemBdx4Z+fqev732z45uHb3i1O6JG8/sm7zto+fXl9575Lav7/7+0j97+UdDwfHd +d8yceH5T9cTedbcefXrkCljTS44+OYx9HG/7BPTkqefuuW//E9UbXvlF5a/Bxxv5YMvQ1489M/D1 +g0/cFD793Uv/6O0Hb1Hvb1t73QfPjt8EttfGg0+PLz3w1Ejf0Z3jy0/sWH8T+KUrj+0EPbXjtkvf +e+K26OSeWuWjV779E9DDdx3csvbKs/s2rPvkpZn1x58eXfb896+/6I0fLOl++V+u+tNDW0qX/ftr +d33/k9fv/vvDT9duffehtVfCPl57eue6m09sX3fLwccHr3j7weuDdx8qXXpo29plp56/8+6zL977 +/WNg9+yHdTv01Og1p/ZWSwfBJn3/kVvcD3euveH4ntqao3unh07s2zD5Iezpke3rV32wrbLszMu1 +GbAV7/jo5fHVH70wtvLA1rGrXv/V7ZcefHLq5mM7Ztaefenevz/1wsapgyDTf/1YZdGBJ8eXgF4f +OLF3Zvz5n93qHntq/YqPt3+zdubpjWs+BrsQ5rjy5PbhvuM713zt7Ydv/vJx0E8Htqxf/t7jk1cd +2jre/8nL1eH/81Zt6pM3Jtac2jt24zsPDqg3fzrQe+TxdcuPPrlh4NCja698/4mhRft+sPR/PXXn +oj98419WXAT2880fvwDz3jENfsdM6f2nNwwceXr9itO7x687uu0m5/CW67/0/pMD0aEnJ5ccfnrT +0P4t0+CvTC5764Gbvrzt3oW/+9oPV15w6GE8FzcNsvCODWf2Tg6A/7r8zL7N1dN7Nk4c2zZyxRu/ +uPovX/zRN/7o7Z8P+4cfvWvo8NZvbzz87ObRI6hTHxu/5sRTM+UPd953L/hKw/sfHPAOPDqy8NCT +0zd+/PK3/vmjl+/+36eAjo7uXn/LyT3rb/0QfSHwr08/U1195Mm1/e/eD37dY7df9ZuXN991fNfk +yjMv1EbPvjQ1cuTZdSsOb62tPLUL/Opto1e8+fMb/u8TTw/3//u+uzZ/+Owdk2/dvzp4599WXoTn +2N64v/LVN39VveLQlrtGX3uouuTlX44EBx5de/l7D41e9sm+WuX/eWXjzMcvTE98APLk0BMT/Uef +unvq1I57Nr32s9Fg6903/o8Ha1f/IdiS8tTOb06f2XfXnSee27j2rcdGFj7/41vEMYyTgK/31oO3 +ua/ff/OX3vjlTV9+54GBS07tvvtbJ/b9w5bjz22uHdoydhXKkVPPTq06/PjNztu/uPJ/vPSDvj8E +f+hS8JuXHt+1EWgF/Oqdm9cd2LL2qve3jS09sWvjxEev3PWtj165+29PgO8MtLng149W+o7v2FQ5 +vmt66IWf3PrlY7unR/7jjc33/OblKsjLiVv+z8ubNn380vpR9DvffnhN8OZDo19/8V8HQF6MXX3y +manSJ3vXXvefL0+u+c/XJ4dP7lq9+KUfLvvTF388KA5vn7n9g+0bxl7/2Rr3ibu+8Ue/XKd+74V/ +vr73xPZq6d9f23z3b17feOeJXetvxZ4CZ/bNrP34xQ1T4Jt94ycjf/k727+54I+PPA== + + + Xur7zWsbZj5+Y9NdB7YMXfnSz274yxN7ZmY+fudvnv3NO/f8+Oj2kRVPbxS/t3Xzoj98G+uXnpq4 +5tiOqQFY33D/I5PLzjy/cfLjl2qjYOMu+XDnir9+7Sdf//N/Gfrz33nnweV/dejRka+d3T69+uyO +qVvP7q6uOr1j3Y2nd41c8eGu0tdPPLvm0pPPTax4499GLnn7V9PXv7/1u3edeX7z+k9erY58+PLo +soPPrFLP/eOyPzpwf2Xxme13rX/pp+WvPrxp4R+ffAb1yuQ1Rx+buvZj0H1n9laWfrh75IqDjw1d +cujxyaUgu+46Dnb1sW2ji1/5ad8fvPAvX/897Md4bHv1ZqxBxfj624+NX/7qr0ait365duG/760O +/r+vrR85vXfk2oNPXfeVNx/8xh+DnBOfvLxp8+l9GycOPTGy+JUfL+1++5fXXXBiy+Syj3bcMXFm +753TB59Zf/2JXZvHzuz99vfPvHDf3xzZWVvzzoM3XvjGz67rPvRY+Wundt5Z/filu793YtfM0Ind +M0OfvHrXt07vnSodfnz4a6/96NoLtt6tup773mX/9SDYMB/vXb/mP2D9P9gxtvSjVzZUf/Pm5nvO +7Ltzw0nwtU/umLjx1w/e3PtvVfE7u/9m0f88s3Nq9fuPTF4NfsxfvfmL6//ivUcGI7Azbvv4ubtq +n+zdXD2w9fYr33x4KDjy7MaRU7s33n5y57oVR54e63/9lzdf+MYvVlzw0b7RJR/vmwRerd6CsfVD +YK8d2Tp984mnZ1ad2gmye+faJUefnQC7f/3yj/beMfPRvjs2ngS9/+7jt1/2wdPTAyd2bRj56Pk7 +N54C+Ac7psvvbV17Fda9HH5yBvz8iavee+hW57WfLPufb/z0potO75sa+uS1O+858/Jd95zct3Hd +ccy3PnvP9Ps7vzn14Sv3/u2ZV+7+7lGwmd59vHTJ/sfWhMe337nu5O5vfecw+I6v3F+Oju3+5p0f +vXbnfe8/tWrh9nv6fv/dX97ylQ+eHggPbx++HNf75QfHL3v2H9d67z5636YzL3zvFx+C33t0640X +v/urq//0hR8u+n3wBb96+rk7Nn306n3//OIvhr724Iar/uDXD1VvAF9183++fs8//ftLM9UDj64K +3v7VTT3vPDToHgNdDntVef3+8iWvYQ+Cfxu87OyeO+78j5fvuOsM+HBHnlmzeM8PLv+Tp+776u8f +27529Sfv3PvT0y9vrGE85INHK/1gO33nN+/c9Xcfv1Bbe2ZXdRWsR/9LPxz8ysEtk9efBbvo5R8u +/4sHpsR/2fm9Rf/9nV/e4PznG5Pl/69DflbP9wQ+q58CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBp +tZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8C +kVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7 +KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBp +tZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7KRBptZ8CkVb7WX2oQ36u6e6Qn9+94ILLJoYWD9YGu1Ze +0XXBwivVAPz9usGpWrnadU3XBQMXL6zWFldKtcrkxGB1U/clAHJ6pdd98XXlwbHuC/nJbnioe2m1 +MlKZAODy0uBY+aLur8CjC+D/XU636Hbofys3dfUEURT1utITYSjhD9kdOq7qVQr+6zrKkW73eFdP +6Ain1w2lL0PPc0I//9AYPoQwL4rCMPB83+s2b0WRCCInCPChOp9r6KHc50a7buya6Lq2K+q+8KLu +lTd23WD9BusW4rotqk5PjS4brMGSTMSLOXDN5MSyamWiVpkY6elh8KIyLJX9D13XrMN/EQ7/0/IV +l3+jMoZ7cHH8K6z9xSuX9F8zOVTGX1Ob8qn/sKD7wo3jYxPwTz0wrWplzXStPIV7A/taHcw8URqt +jA1VyxP477L74isnasm/4X9qm9bRvl4oHOeCi7ovvmGiUgLwchh3YiT96Mzg2DQ/O1qujIzWzv30 +xOA4PQxzMY9/pZVx2lAZqo02jJJ++rxjtPDKgYVj60YHB0SjeFWG4MlZsMFnzjsqk2tuL5dqiyan +J4ZgbosmNzaK0TCxDjxam2p4v1LvnHdUG6fCWRbBwmhjS+OxqWE8Nhl8zj3dVhGTtenqmumx8kSp +3OhS8KsNrob5zjxg1Sg+1fLU9Fjjwt88ft5xko0iNDE9vrRUG5wpNy5O7FfOO2ITk8trlVppFmWV +4DdFT19fGWsCwdQ751/O9DqqUezWDE6Vv1Etr58Gnmxc6mTeakQCfQoi4hyI1Fe8liYrX9+gOEmm +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 +W43c/wMxlCCj + + + diff --git a/src/ui/qmlcommon/compassInstrumentAirplane.svg b/src/ui/qmlcommon/compassInstrumentAirplane.svg new file mode 100644 index 0000000000000000000000000000000000000000..5fdc728643a4717abace682c31d7d4c61d97bfdf --- /dev/null +++ b/src/ui/qmlcommon/compassInstrumentAirplane.svg @@ -0,0 +1,9 @@ + + + + + diff --git a/src/ui/qmlcommon/compassInstrumentDial.svg b/src/ui/qmlcommon/compassInstrumentDial.svg new file mode 100644 index 0000000000000000000000000000000000000000..f265280b1905c2387d805fbf0ed70ed2a6efe3b5 --- /dev/null +++ b/src/ui/qmlcommon/compassInstrumentDial.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/qmlcommon/compassNeedle.svg b/src/ui/qmlcommon/compassNeedle.svg new file mode 100644 index 0000000000000000000000000000000000000000..9da7ae17debb20862a80bae9976849cd2c49496a --- /dev/null +++ b/src/ui/qmlcommon/compassNeedle.svg @@ -0,0 +1,6 @@ + + + + + diff --git a/src/ui/qmlcommon/crossHair.svg b/src/ui/qmlcommon/crossHair.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0216c82a8d506503e103df9c3a21aa05bbbb6e6 --- /dev/null +++ b/src/ui/qmlcommon/crossHair.svg @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/ui/qmlcommon/qmldir b/src/ui/qmlcommon/qmldir new file mode 100644 index 0000000000000000000000000000000000000000..6bd91f6d99d9a4061f043766c4580c8743325b02 --- /dev/null +++ b/src/ui/qmlcommon/qmldir @@ -0,0 +1,16 @@ +Module QGroundControl.FlightControls + +QGCAltitudeWidget 1.0 QGCAltitudeWidget.qml +QGCAttitudeWidget 1.0 QGCAttitudeWidget.qml +QGCCompass 1.0 QGCCompass.qml +QGCCurrentAltitude 1.0 QGCCurrentAltitude.qml +QGCCurrentSpeed 1.0 QGCCurrentSpeed.qml +QGCMapBackground 1.0 QGCMapBackground.qml +QGCPitchWidget 1.0 QGCPitchWidget.qml +QGCSpeedWidget 1.0 QGCSpeedWidget.qml +QGCSlider 1.0 QGCSlider.qml +QGCWaypointEditor 1.0 QGCWaypointEditor.qml +QGCMapToolButton 1.0 QGCMapToolButton.qml +QGCAttitudeInstrument 1.0 QGCAttitudeInstrument.qml +QGCCompassInstrument 1.0 QGCCompassInstrument.qml +QGCArtificialHorizon 1.0 QGCArtificialHorizon.qml diff --git a/src/ui/qmlcommon/rollDialWhite.svg b/src/ui/qmlcommon/rollDialWhite.svg new file mode 100644 index 0000000000000000000000000000000000000000..b40ddadf1b3b7da33d61b012c9b185dce049263b --- /dev/null +++ b/src/ui/qmlcommon/rollDialWhite.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ui/qmlcommon/rollPointerWhite.svg b/src/ui/qmlcommon/rollPointerWhite.svg new file mode 100644 index 0000000000000000000000000000000000000000..52b29adc6d3918fe8d82e76f4fabff9e4aac3fc3 --- /dev/null +++ b/src/ui/qmlcommon/rollPointerWhite.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/files/images/firmware/heli_off.png b/src/ui/qmlcommon/scale.png similarity index 56% rename from files/images/firmware/heli_off.png rename to src/ui/qmlcommon/scale.png index f958a9e5e9d2ec727dfa96adede6f4ec903ca0e7..703d3a201d429a32b14fc5357b4c5d6167329b07 100644 Binary files a/files/images/firmware/heli_off.png and b/src/ui/qmlcommon/scale.png differ diff --git a/files/images/firmware/plane_off.png b/src/ui/qmlcommon/scale_end.png similarity index 56% rename from files/images/firmware/plane_off.png rename to src/ui/qmlcommon/scale_end.png index 59b54674ab1d905d76a6e2b8fa4d8c4f853e7a4b..1a7ed9af826c0cecf2c17f2b9a77b6decac6a1fe 100644 Binary files a/files/images/firmware/plane_off.png and b/src/ui/qmlcommon/scale_end.png differ diff --git a/src/ui/toolbar/MainToolBar.cc b/src/ui/toolbar/MainToolBar.cc index 1a708e4e4e7e31e5143ae211586c4168cd74d37d..e41ea702a3e11daa3a894c06dfe7ccf696d81808 100644 --- a/src/ui/toolbar/MainToolBar.cc +++ b/src/ui/toolbar/MainToolBar.cc @@ -30,10 +30,11 @@ This file is part of the QGROUNDCONTROL project #include #include -#include "MainWindow.h" #include "MainToolBar.h" +#include "MainWindow.h" #include "UASMessageHandler.h" #include "UASMessageView.h" +#include "QGCFlightDisplay.h" MainToolBar::MainToolBar(QWidget* parent) : QGCQmlWidgetHolder(parent) @@ -42,7 +43,6 @@ MainToolBar::MainToolBar(QWidget* parent) , _currentView(ViewNone) , _batteryVoltage(0.0) , _batteryPercent(0.0) - , _linkSelected(false) , _connectionCount(0) , _systemArmed(false) , _currentHeartbeatTimeout(0) @@ -55,32 +55,27 @@ MainToolBar::MainToolBar(QWidget* parent) , _currentNormalCount(0) , _currentMessageType(MessageNone) , _satelliteCount(-1) - , _dotsPerInch(96.0) // Default to Windows as it's more likely not to report below , _satelliteLock(0) , _showGPS(true) , _showMav(true) , _showMessages(true) + , _showRSSI(true) , _showBattery(true) + , _progressBarValue(0.0f) + , _remoteRSSI(0) + , _telemetryRRSSI(0) + , _telemetryLRSSI(0) , _rollDownMessages(0) { setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); setObjectName("MainToolBar"); - setMinimumHeight(40); - setMaximumHeight(40); + _updatePixelSize(); setMinimumWidth(MainWindow::instance()->minimumWidth()); // Get rid of layout default margins QLayout* pl = layout(); if(pl) { pl->setContentsMargins(0,0,0,0); } - // Get screen DPI to manage font sizes on different platforms - QScreen *srn = QGuiApplication::screens().at(0); // TODO: Find current monitor as opposed to picking first one - if(srn && srn->logicalDotsPerInch() > 50.0) { - _dotsPerInch = (qreal)srn->logicalDotsPerInch(); // Font point sizes are based on Mac 72dpi - } else { - qWarning() << "System not reporting logical DPI, which is used to compute the appropriate font size. The default being used is 96dpi. If the text within buttons and UI elements are too big or too small, that's the reason."; - } - // Tool Bar Preferences QSettings settings; settings.beginGroup(TOOL_BAR_SETTINGS_GROUP); @@ -99,10 +94,15 @@ MainToolBar::MainToolBar(QWidget* parent) emit heartbeatTimeoutChanged(_currentHeartbeatTimeout); emit connectionCountChanged(_connectionCount); // Link signals - connect(UASManager::instance(), &UASManager::activeUASSet, this, &MainToolBar::_setActiveUAS); - connect(LinkManager::instance(), &LinkManager::linkConfigurationChanged, this, &MainToolBar::_updateConfigurations); - connect(LinkManager::instance(), &LinkManager::linkConnected, this, &MainToolBar::_linkConnected); - connect(LinkManager::instance(), &LinkManager::linkDisconnected, this, &MainToolBar::_linkDisconnected); + connect(UASManager::instance(), &UASManager::activeUASSet, this, &MainToolBar::_setActiveUAS); + connect(LinkManager::instance(), &LinkManager::linkConfigurationChanged, this, &MainToolBar::_updateConfigurations); + connect(LinkManager::instance(), &LinkManager::linkConnected, this, &MainToolBar::_linkConnected); + connect(LinkManager::instance(), &LinkManager::linkDisconnected, this, &MainToolBar::_linkDisconnected); + connect(MainWindow::instance(), &MainWindow::pixelSizeChanged, this, &MainToolBar::_updatePixelSize); + // RSSI (didn't like standard connection) + connect(MAVLinkProtocol::instance(), + SIGNAL(radioStatusChanged(LinkInterface*, unsigned, unsigned, unsigned, unsigned, unsigned, unsigned, unsigned)), this, + SLOT(_telemetryChanged(LinkInterface*, unsigned, unsigned, unsigned, unsigned, unsigned, unsigned, unsigned))); } MainToolBar::~MainToolBar() @@ -128,6 +128,9 @@ void MainToolBar::_setToolBarState(const QString& key, bool value) } else if(key == TOOL_BAR_SHOW_MESSAGES) { _showMessages = value; emit showMessagesChanged(value); + } else if(key == TOOL_BAR_SHOW_RSSI) { + _showRSSI = value; + emit showRSSIChanged(value); } } @@ -138,84 +141,81 @@ void MainToolBar::viewStateChanged(const QString &key, bool value) void MainToolBar::onSetupView() { - setCurrentView(ViewSetup); + setCurrentView(MainWindow::VIEW_SETUP); MainWindow::instance()->loadSetupView(); } void MainToolBar::onPlanView() { - setCurrentView(ViewPlan); - MainWindow::instance()->loadOperatorView(); + setCurrentView(MainWindow::VIEW_PLAN); + MainWindow::instance()->loadPlanView(); } void MainToolBar::onFlyView() { - setCurrentView(ViewFly); - MainWindow::instance()->loadPilotView(); + setCurrentView(MainWindow::VIEW_FLIGHT); + MainWindow::instance()->loadFlightView(); +} + +void MainToolBar::onFlyViewMenu() +{ + QGCFlightDisplay* fdsp = MainWindow::instance()->getFlightDisplay(); + if(fdsp) { + fdsp->showOptionsMenu(); + } } void MainToolBar::onAnalyzeView() { - setCurrentView(ViewAnalyze); - MainWindow::instance()->loadEngineerView(); + setCurrentView(MainWindow::VIEW_ANALYZE); + MainWindow::instance()->loadAnalyzeView(); } -void MainToolBar::onConnect(QString conf) +void MainToolBar::onDisconnect(QString conf) { - // If no connection, the role is "Connect" - if(_connectionCount == 0) { - // Connect Link - if(_currentConfig.isEmpty()) { - MainWindow::instance()->manageLinks(); - } else { - // We don't want the combo box updating under our feet - LinkManager::instance()->suspendConfigurationUpdates(true); - // Create a link - LinkInterface* link = LinkManager::instance()->createLink(_currentConfig); - if(link) { - // Connect it - LinkManager::instance()->connectLink(link); - // Save last used connection - MainWindow::instance()->saveLastUsedConnection(_currentConfig); + if(conf.isEmpty()) { + // Disconnect Only Connected Link + int connectedCount = 0; + LinkInterface* connectedLink = NULL; + QList links = LinkManager::instance()->getLinks(); + foreach(LinkInterface* link, links) { + if (link->isConnected()) { + connectedCount++; + connectedLink = link; } - LinkManager::instance()->suspendConfigurationUpdates(false); } + Q_ASSERT(connectedCount == 1); + Q_ASSERT(_connectionCount == 1); + Q_ASSERT(connectedLink); + LinkManager::instance()->disconnectLink(connectedLink); } else { - if(conf.isEmpty()) { - // Disconnect Only Connected Link - int connectedCount = 0; - LinkInterface* connectedLink = NULL; - QList links = LinkManager::instance()->getLinks(); - foreach(LinkInterface* link, links) { - if (link->isConnected()) { - connectedCount++; - connectedLink = link; - } - } - Q_ASSERT(connectedCount == 1); - Q_ASSERT(_connectionCount == 1); - Q_ASSERT(connectedLink); - LinkManager::instance()->disconnectLink(connectedLink); - } else { - // Disconnect Named Connected Link - QList links = LinkManager::instance()->getLinks(); - foreach(LinkInterface* link, links) { - if (link->isConnected()) { - if(link->getLinkConfiguration() && link->getLinkConfiguration()->name() == conf) { - LinkManager::instance()->disconnectLink(link); - } + // Disconnect Named Connected Link + QList links = LinkManager::instance()->getLinks(); + foreach(LinkInterface* link, links) { + if (link->isConnected()) { + if(link->getLinkConfiguration() && link->getLinkConfiguration()->name() == conf) { + LinkManager::instance()->disconnectLink(link); } } } } } -void MainToolBar::onLinkConfigurationChanged(const QString& config) +void MainToolBar::onConnect(QString conf) { - // User selected a link configuration from the combobox - if(_currentConfig != config) { - _currentConfig = config; - _linkSelected = true; + // Connect Link + if(conf.isEmpty()) { + MainWindow::instance()->manageLinks(); + } else { + // We don't want the list updating under our feet + LinkManager::instance()->suspendConfigurationUpdates(true); + // Create a link + LinkInterface* link = LinkManager::instance()->createConnectedLink(conf); + if(link) { + // Save last used connection + MainWindow::instance()->saveLastUsedConnection(conf); + } + LinkManager::instance()->suspendConfigurationUpdates(false); } } @@ -273,10 +273,10 @@ void MainToolBar::setCurrentView(int currentView) { ViewType_t view = ViewNone; switch((MainWindow::VIEW_SECTIONS)currentView) { - case MainWindow::VIEW_ENGINEER: + case MainWindow::VIEW_ANALYZE: view = ViewAnalyze; break; - case MainWindow::VIEW_MISSION: + case MainWindow::VIEW_PLAN: view = ViewPlan; break; case MainWindow::VIEW_FLIGHT: @@ -311,17 +311,21 @@ void MainToolBar::_setActiveUAS(UASInterface* active) disconnect(_mav, &UASInterface::nameChanged, this, &MainToolBar::_updateName); disconnect(_mav, &UASInterface::systemTypeSet, this, &MainToolBar::_setSystemType); disconnect(_mav, &UASInterface::localizationChanged, this, &MainToolBar::_setSatLoc); + disconnect(_mav, &UASInterface::remoteControlRSSIChanged, this, &MainToolBar::_remoteControlRSSIChanged); disconnect(_mav, SIGNAL(statusChanged(UASInterface*,QString,QString)), this, SLOT(_updateState(UASInterface*,QString,QString))); disconnect(_mav, SIGNAL(armingChanged(bool)), this, SLOT(_updateArmingState(bool))); - if (_mav->getWaypointManager()) - { + + if (_mav->getWaypointManager()) { disconnect(_mav->getWaypointManager(), &UASWaypointManager::currentWaypointChanged, this, &MainToolBar::_updateCurrentWaypoint); disconnect(_mav->getWaypointManager(), &UASWaypointManager::waypointDistanceChanged, this, &MainToolBar::_updateWaypointDistance); } + UAS* pUas = dynamic_cast(_mav); if(pUas) { disconnect(pUas, &UAS::satelliteCountChanged, this, &MainToolBar::_setSatelliteCount); } + + disconnect(AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_mav), &AutoPilotPlugin::parameterListProgress, this, &MainToolBar::_setProgressBarValue); } // Connect new system _mav = active; @@ -336,23 +340,59 @@ void MainToolBar::_setActiveUAS(UASInterface* active) connect(_mav, &UASInterface::nameChanged, this, &MainToolBar::_updateName); connect(_mav, &UASInterface::systemTypeSet, this, &MainToolBar::_setSystemType); connect(_mav, &UASInterface::localizationChanged, this, &MainToolBar::_setSatLoc); + connect(_mav, &UASInterface::remoteControlRSSIChanged, this, &MainToolBar::_remoteControlRSSIChanged); connect(_mav, SIGNAL(statusChanged(UASInterface*,QString,QString)), this, SLOT(_updateState(UASInterface*, QString,QString))); connect(_mav, SIGNAL(armingChanged(bool)), this, SLOT(_updateArmingState(bool))); - if (_mav->getWaypointManager()) - { + + if (_mav->getWaypointManager()) { connect(_mav->getWaypointManager(), &UASWaypointManager::currentWaypointChanged, this, &MainToolBar::_updateCurrentWaypoint); connect(_mav->getWaypointManager(), &UASWaypointManager::waypointDistanceChanged, this, &MainToolBar::_updateWaypointDistance); } + UAS* pUas = dynamic_cast(_mav); if(pUas) { _setSatelliteCount(pUas->getSatelliteCount(), QString("")); connect(pUas, &UAS::satelliteCountChanged, this, &MainToolBar::_setSatelliteCount); } + + connect(AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_mav), &AutoPilotPlugin::parameterListProgress, this, &MainToolBar::_setProgressBarValue); + + // Reset connection lost (if any) + _currentHeartbeatTimeout = 0; + emit heartbeatTimeoutChanged(_currentHeartbeatTimeout); } // Let toolbar know about it emit mavPresentChanged(_mav != NULL); } +void MainToolBar::_telemetryChanged(LinkInterface*, unsigned, unsigned, unsigned rssi, unsigned remrssi, unsigned, unsigned, unsigned) +{ + // We only care if we haveone single connection + if(_connectionCount == 1) { + if((unsigned)_telemetryLRSSI != rssi) { + // According to the Silabs data sheet, the RSSI value is 0.5db per bit + _telemetryLRSSI = rssi >> 1; + emit telemetryLRSSIChanged(_telemetryLRSSI); + } + if((unsigned)_telemetryRRSSI != remrssi) { + // According to the Silabs data sheet, the RSSI value is 0.5db per bit + _telemetryRRSSI = remrssi >> 1; + emit telemetryRRSSIChanged(_telemetryRRSSI); + } + } +} + +void MainToolBar::_remoteControlRSSIChanged(uint8_t rssi) +{ + // We only care if we haveone single connection + if(_connectionCount == 1) { + if(_remoteRSSI != rssi) { + _remoteRSSI = rssi; + emit remoteRSSIChanged(_remoteRSSI); + } + } +} + void MainToolBar::_updateArmingState(bool armed) { if(_systemArmed != armed) { @@ -382,16 +422,14 @@ void MainToolBar::_updateBatteryRemaining(UASInterface*, double voltage, double, void MainToolBar::_updateConfigurations() { - bool resetSelected = false; - QString selected = _currentConfig; QStringList tmpList; QList configs = LinkManager::instance()->getLinkConfigurationList(); foreach(LinkConfiguration* conf, configs) { if(conf) { - tmpList << conf->name(); - if((!_linkSelected && conf->isPreferred()) || selected.isEmpty()) { - selected = conf->name(); - resetSelected = true; + if(conf->isPreferred()) { + tmpList.insert(0,conf->name()); + } else { + tmpList << conf->name(); } } } @@ -400,15 +438,6 @@ void MainToolBar::_updateConfigurations() _linkConfigurations = tmpList; emit configListChanged(); } - // Selection change? - if((selected != _currentConfig && _linkConfigurations.contains(selected)) || - (selected.isEmpty())) { - _currentConfig = selected; - emit currentConfigChanged(_currentConfig); - } - if(resetSelected) { - _linkSelected = false; - } } void MainToolBar::_linkConnected(LinkInterface*) @@ -443,6 +472,19 @@ void MainToolBar::_updateConnection(LinkInterface *disconnectedLink) _connectedList = connList; emit connectedListChanged(_connectedList); } + // Update telemetry RSSI display + if(_connectionCount != 1 && _telemetryRRSSI > 0) { + _telemetryRRSSI = 0; + emit telemetryRRSSIChanged(_telemetryRRSSI); + } + if(_connectionCount != 1 && _telemetryLRSSI > 0) { + _telemetryLRSSI = 0; + emit telemetryLRSSIChanged(_telemetryLRSSI); + } + if(_connectionCount != 1 && _remoteRSSI > 0) { + _remoteRSSI = 0; + emit remoteRSSIChanged(_remoteRSSI); + } } void MainToolBar::_updateState(UASInterface*, QString name, QString) @@ -483,64 +525,64 @@ void MainToolBar::_updateName(const QString& name) */ void MainToolBar::_setSystemType(UASInterface*, unsigned int systemType) { - _systemPixmap = "qrc:/files/images/mavs/"; + _systemPixmap = "qrc:/res/mavs/"; switch (systemType) { case MAV_TYPE_GENERIC: - _systemPixmap += "generic.svg"; + _systemPixmap += "Generic"; break; case MAV_TYPE_FIXED_WING: - _systemPixmap += "fixed-wing.svg"; + _systemPixmap += "FixedWing"; break; case MAV_TYPE_QUADROTOR: - _systemPixmap += "quadrotor.svg"; + _systemPixmap += "QuadRotor"; break; case MAV_TYPE_COAXIAL: - _systemPixmap += "coaxial.svg"; + _systemPixmap += "Coaxial"; break; case MAV_TYPE_HELICOPTER: - _systemPixmap += "helicopter.svg"; + _systemPixmap += "Helicopter"; break; case MAV_TYPE_ANTENNA_TRACKER: - _systemPixmap += "antenna-tracker.svg"; + _systemPixmap += "AntennaTracker"; break; case MAV_TYPE_GCS: - _systemPixmap += "groundstation.svg"; + _systemPixmap += "Groundstation"; break; case MAV_TYPE_AIRSHIP: - _systemPixmap += "airship.svg"; + _systemPixmap += "Airship"; break; case MAV_TYPE_FREE_BALLOON: - _systemPixmap += "free-balloon.svg"; + _systemPixmap += "FreeBalloon"; break; case MAV_TYPE_ROCKET: - _systemPixmap += "rocket.svg"; + _systemPixmap += "Rocket"; break; case MAV_TYPE_GROUND_ROVER: - _systemPixmap += "ground-rover.svg"; + _systemPixmap += "GroundRover"; break; case MAV_TYPE_SURFACE_BOAT: - _systemPixmap += "surface-boat.svg"; + _systemPixmap += "SurfaceBoat"; break; case MAV_TYPE_SUBMARINE: - _systemPixmap += "submarine.svg"; + _systemPixmap += "Submarine"; break; case MAV_TYPE_HEXAROTOR: - _systemPixmap += "hexarotor.svg"; + _systemPixmap += "HexaRotor"; break; case MAV_TYPE_OCTOROTOR: - _systemPixmap += "octorotor.svg"; + _systemPixmap += "OctoRotor"; break; case MAV_TYPE_TRICOPTER: - _systemPixmap += "tricopter.svg"; + _systemPixmap += "TriCopter"; break; case MAV_TYPE_FLAPPING_WING: - _systemPixmap += "flapping-wing.svg"; + _systemPixmap += "FlappingWing"; break; case MAV_TYPE_KITE: - _systemPixmap += "kite.svg"; + _systemPixmap += "Kite"; break; default: - _systemPixmap += "unknown.svg"; + _systemPixmap += "Unknown"; break; } emit systemPixmapChanged(_systemPixmap); @@ -656,7 +698,14 @@ void MainToolBar::_setSatLoc(UASInterface*, int fix) } } -void MainToolBar::updateCanvas() +void MainToolBar::_setProgressBarValue(float value) +{ + _progressBarValue = value; + emit progressBarValueChanged(value); +} + +void MainToolBar::_updatePixelSize() { - emit repaintRequestedChanged(); + setMinimumHeight(40 * MainWindow::pixelSizeFactor()); + setMaximumHeight(40 * MainWindow::pixelSizeFactor()); } diff --git a/src/ui/toolbar/MainToolBar.h b/src/ui/toolbar/MainToolBar.h index f903127e8bb15bf93f053619a5c5f73af6703896..0a45a6cdd695607983a5418ad25db3b8c00f3c60 100644 --- a/src/ui/toolbar/MainToolBar.h +++ b/src/ui/toolbar/MainToolBar.h @@ -37,6 +37,7 @@ This file is part of the QGROUNDCONTROL project #define TOOL_BAR_SHOW_GPS "ShowGPS" #define TOOL_BAR_SHOW_MAV "ShowMav" #define TOOL_BAR_SHOW_MESSAGES "ShowMessages" +#define TOOL_BAR_SHOW_RSSI "ShowRSSI" class UASInterface; class UASMessage; @@ -69,65 +70,61 @@ public: Q_INVOKABLE void onSetupView(); Q_INVOKABLE void onPlanView(); Q_INVOKABLE void onFlyView(); + Q_INVOKABLE void onFlyViewMenu(); Q_INVOKABLE void onAnalyzeView(); Q_INVOKABLE void onConnect(QString conf); - Q_INVOKABLE void onLinkConfigurationChanged(const QString& config); + Q_INVOKABLE void onDisconnect(QString conf); Q_INVOKABLE void onEnterMessageArea(int x, int y); Q_INVOKABLE QString getMavIconColor(); - Q_PROPERTY(int connectionCount READ connectionCount NOTIFY connectionCountChanged) - Q_PROPERTY(double batteryVoltage READ batteryVoltage NOTIFY batteryVoltageChanged) - Q_PROPERTY(double batteryPercent READ batteryPercent NOTIFY batteryPercentChanged) - Q_PROPERTY(ViewType_t currentView READ currentView NOTIFY currentViewChanged) - Q_PROPERTY(QStringList configList READ configList NOTIFY configListChanged) - Q_PROPERTY(bool systemArmed READ systemArmed NOTIFY systemArmedChanged) - Q_PROPERTY(unsigned int heartbeatTimeout READ heartbeatTimeout NOTIFY heartbeatTimeoutChanged) - Q_PROPERTY(QString currentMode READ currentMode NOTIFY currentModeChanged) - Q_PROPERTY(MessageType_t messageType READ messageType NOTIFY messageTypeChanged) - Q_PROPERTY(int newMessageCount READ newMessageCount NOTIFY newMessageCountChanged) - Q_PROPERTY(int messageCount READ messageCount NOTIFY messageCountChanged) - Q_PROPERTY(QString currentConfig READ currentConfig NOTIFY currentConfigChanged) - Q_PROPERTY(QString systemPixmap READ systemPixmap NOTIFY systemPixmapChanged) - Q_PROPERTY(int satelliteCount READ satelliteCount NOTIFY satelliteCountChanged) - Q_PROPERTY(QStringList connectedList READ connectedList NOTIFY connectedListChanged) - Q_PROPERTY(bool mavPresent READ mavPresent NOTIFY mavPresentChanged) - Q_PROPERTY(QString currentState READ currentState NOTIFY currentStateChanged) - Q_PROPERTY(double dotsPerInch READ dotsPerInch NOTIFY dotsPerInchChanged) - Q_PROPERTY(int satelliteLock READ satelliteLock NOTIFY satelliteLockChanged) - Q_PROPERTY(bool showGPS READ showGPS NOTIFY showGPSChanged) - Q_PROPERTY(bool showMav READ showMav NOTIFY showMavChanged) - Q_PROPERTY(bool showMessages READ showMessages NOTIFY showMessagesChanged) - Q_PROPERTY(bool showBattery READ showBattery NOTIFY showBatteryChanged) - Q_PROPERTY(bool repaintRequested READ repaintRequested NOTIFY repaintRequestedChanged) - - int connectionCount () { return _connectionCount; } - double batteryVoltage () { return _batteryVoltage; } - double batteryPercent () { return _batteryPercent; } - ViewType_t currentView () { return _currentView; } - QStringList configList () { return _linkConfigurations; } - bool systemArmed () { return _systemArmed; } - unsigned int heartbeatTimeout () { return _currentHeartbeatTimeout; } - QString currentMode () { return _currentMode; } - MessageType_t messageType () { return _currentMessageType; } - int newMessageCount () { return _currentMessageCount; } - int messageCount () { return _messageCount; } - QString currentConfig () { return _currentConfig; } - QString systemPixmap () { return _systemPixmap; } - int satelliteCount () { return _satelliteCount; } - QStringList connectedList () { return _connectedList; } - bool mavPresent () { return _mav != NULL; } - QString currentState () { return _currentState; } - double dotsPerInch () { return _dotsPerInch; } - int satelliteLock () { return _satelliteLock; } - bool showGPS () { return _showGPS; } - bool showMav () { return _showMav; } - bool showMessages () { return _showMessages; } - bool showBattery () { return _showBattery; } - bool repaintRequested () { return true; } - - void setCurrentView (int currentView); - void viewStateChanged (const QString& key, bool value); - void updateCanvas (); + Q_PROPERTY(int connectionCount MEMBER _connectionCount NOTIFY connectionCountChanged) + Q_PROPERTY(double batteryVoltage MEMBER _batteryVoltage NOTIFY batteryVoltageChanged) + Q_PROPERTY(double batteryPercent MEMBER _batteryPercent NOTIFY batteryPercentChanged) + Q_PROPERTY(ViewType_t currentView MEMBER _currentView NOTIFY currentViewChanged) + Q_PROPERTY(QStringList configList MEMBER _linkConfigurations NOTIFY configListChanged) + Q_PROPERTY(bool systemArmed MEMBER _systemArmed NOTIFY systemArmedChanged) + Q_PROPERTY(unsigned int heartbeatTimeout MEMBER _currentHeartbeatTimeout NOTIFY heartbeatTimeoutChanged) + Q_PROPERTY(QString currentMode MEMBER _currentMode NOTIFY currentModeChanged) + Q_PROPERTY(MessageType_t messageType MEMBER _currentMessageType NOTIFY messageTypeChanged) + Q_PROPERTY(int newMessageCount MEMBER _currentMessageCount NOTIFY newMessageCountChanged) + Q_PROPERTY(int messageCount MEMBER _messageCount NOTIFY messageCountChanged) + Q_PROPERTY(QString systemPixmap MEMBER _systemPixmap NOTIFY systemPixmapChanged) + Q_PROPERTY(int satelliteCount READ satelliteCount NOTIFY satelliteCountChanged) + Q_PROPERTY(QStringList connectedList MEMBER _connectedList NOTIFY connectedListChanged) + Q_PROPERTY(bool mavPresent READ mavPresent NOTIFY mavPresentChanged) + Q_PROPERTY(QString currentState MEMBER _currentState NOTIFY currentStateChanged) + Q_PROPERTY(int satelliteLock MEMBER _satelliteLock NOTIFY satelliteLockChanged) + Q_PROPERTY(bool showGPS MEMBER _showGPS NOTIFY showGPSChanged) + Q_PROPERTY(bool showMav MEMBER _showMav NOTIFY showMavChanged) + Q_PROPERTY(bool showMessages MEMBER _showMessages NOTIFY showMessagesChanged) + Q_PROPERTY(bool showBattery MEMBER _showBattery NOTIFY showBatteryChanged) + Q_PROPERTY(bool showRSSI MEMBER _showRSSI NOTIFY showRSSIChanged) + Q_PROPERTY(float progressBarValue MEMBER _progressBarValue NOTIFY progressBarValueChanged) + Q_PROPERTY(int remoteRSSI READ remoteRSSI NOTIFY remoteRSSIChanged) + Q_PROPERTY(int telemetryRRSSI READ telemetryRRSSI NOTIFY telemetryRRSSIChanged) + Q_PROPERTY(int telemetryLRSSI READ telemetryLRSSI NOTIFY telemetryLRSSIChanged) + Q_PROPERTY(bool isAndroid READ isAndroid CONSTANT) + Q_PROPERTY(bool isiOS READ isiOS CONSTANT) + Q_PROPERTY(bool isMobile READ isMobile CONSTANT) + + bool mavPresent () { return _mav != NULL; } + int satelliteCount () { return _satelliteCount; } + int remoteRSSI () { return _remoteRSSI; } + int telemetryRRSSI () { return _telemetryRRSSI; } + int telemetryLRSSI () { return _telemetryLRSSI; } + +#if defined (__android__) + bool isAndroid () { return true; } + bool isiOS () { return false; } + bool isMobile () { return true; } +#else + bool isAndroid () { return false; } + bool isiOS () { return false; } + bool isMobile () { return false; } +#endif + + void setCurrentView (int currentView); + void viewStateChanged (const QString& key, bool value); signals: void connectionCountChanged (int count); @@ -147,13 +144,16 @@ signals: void connectedListChanged (QStringList connectedList); void mavPresentChanged (bool present); void currentStateChanged (QString state); - void dotsPerInchChanged (); void satelliteLockChanged (int lock); void showGPSChanged (bool value); void showMavChanged (bool value); void showMessagesChanged (bool value); void showBatteryChanged (bool value); - void repaintRequestedChanged (); + void showRSSIChanged (bool value); + void progressBarValueChanged (float value); + void remoteRSSIChanged (int value); + void telemetryRRSSIChanged (int value); + void telemetryLRSSIChanged (int value); private slots: void _setActiveUAS (UASInterface* active); @@ -173,7 +173,10 @@ private slots: void _setSatelliteCount (double val, QString name); void _leaveMessageView (); void _setSatLoc (UASInterface* uas, int fix); - + void _setProgressBarValue (float value); + void _remoteControlRSSIChanged (uint8_t rssi); + void _telemetryChanged (LinkInterface* link, unsigned rxerrors, unsigned fixed, unsigned rssi, unsigned remrssi, unsigned txbuf, unsigned noise, unsigned remnoise); + void _updatePixelSize (); private: void _updateConnection (LinkInterface *disconnectedLink = NULL); @@ -186,8 +189,6 @@ private: double _batteryVoltage; double _batteryPercent; QStringList _linkConfigurations; - QString _currentConfig; - bool _linkSelected; int _connectionCount; bool _systemArmed; QString _currentState; @@ -205,12 +206,16 @@ private: MessageType_t _currentMessageType; int _satelliteCount; QStringList _connectedList; - qreal _dotsPerInch; int _satelliteLock; bool _showGPS; bool _showMav; bool _showMessages; + bool _showRSSI; bool _showBattery; + float _progressBarValue; + int _remoteRSSI; + int _telemetryRRSSI; + int _telemetryLRSSI; UASMessageViewRollDown* _rollDownMessages; }; diff --git a/src/ui/toolbar/MainToolBar.qml b/src/ui/toolbar/MainToolBar.qml index c044fbc170996e72cc9d1f76bf9ec09a99a5755b..c785c54fa1c3e2ab39baf6edd7b1525c1a3f14d3 100644 --- a/src/ui/toolbar/MainToolBar.qml +++ b/src/ui/toolbar/MainToolBar.qml @@ -35,18 +35,19 @@ import QGroundControl.Controls 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Palette 1.0 import QGroundControl.MainToolBar 1.0 +import QGroundControl.ScreenTools 1.0 Rectangle { + id: toolBarHolder property var qgcPal: QGCPalette { id: palette; colorGroupEnabled: true } - property int cellSpacerSize: 4 - property int cellHeight: 30 - property int cellRadius: 3 - property double dpiFactor: (72.0 / mainToolBar.dotsPerInch); + + property int cellSpacerSize: mainToolBar.isMobile ? getProportionalDimmension(6) : getProportionalDimmension(4) + property int cellHeight: getProportionalDimmension(30) property var colorBlue: "#1a6eaa" - property var colorGreen: "#079527" - property var colorRed: "#a81a1b" + property var colorGreen: "#329147" + property var colorRed: "#942324" property var colorOrange: "#a76f26" property var colorWhite: "#f0f0f0" @@ -55,8 +56,11 @@ Rectangle { property var colorGreenText: (qgcPal.globalTheme === QGCPalette.Light) ? "#046b1b" : "#00d930" property var colorWhiteText: (qgcPal.globalTheme === QGCPalette.Light) ? "#343333" : "#f0f0f0" - id: toolBarHolder - color: qgcPal.windowShade + color: qgcPal.windowShade + + function getProportionalDimmension(val) { + return toolBarHolder.height * val / 40 + } function getMessageColor() { if(mainToolBar.messageType === MainToolBar.MessageNone) @@ -73,24 +77,24 @@ Rectangle { function getMessageIcon() { if(mainToolBar.messageType === MainToolBar.MessageNormal || mainToolBar.messageType === MainToolBar.MessageNone) - return "qrc:/files/images/status/message_megaphone.png"; + return "qrc:/res/Megaphone"; else - return "qrc:/files/images/status/message_triangle.png"; + return "qrc:/res/Yield"; } function getBatteryIcon() { if(mainToolBar.batteryPercent < 20.0) - return "qrc:/files/images/status/battery_0.svg"; + return "qrc:/res/Battery_0"; else if(mainToolBar.batteryPercent < 40.0) - return "qrc:/files/images/status/battery_20.svg"; + return "qrc:/res/Battery_20"; else if(mainToolBar.batteryPercent < 60.0) - return "qrc:/files/images/status/battery_40.svg"; + return "qrc:/res/Battery_40"; else if(mainToolBar.batteryPercent < 80.0) - return "qrc:/files/images/status/battery_60.svg"; + return "qrc:/res/Battery_60"; else if(mainToolBar.batteryPercent < 90.0) - return "qrc:/files/images/status/battery_80.svg"; + return "qrc:/res/Battery_80"; else - return "qrc:/files/images/status/battery_100.svg"; + return "qrc:/res/Battery_100"; } function getBatteryColor() { @@ -116,30 +120,86 @@ Rectangle { return colorGreen; } + function getRSSIColor(value) { + if(value < 10) + return colorRed; + if(value < 50) + return colorOrange; + return colorGreen; + } + function showMavStatus() { return (mainToolBar.mavPresent && mainToolBar.heartbeatTimeout === 0 && mainToolBar.connectionCount > 0); } + //------------------------------------------------------------------------- + //-- Main menu for Mobile Devices + Menu { + id: maintMenu + ExclusiveGroup { id: mainMenuGroup } + MenuItem { + text: "Vehicle Setup" + checkable: true + exclusiveGroup: mainMenuGroup + checked: (mainToolBar.currentView === MainToolBar.ViewSetup) + onTriggered: + { + mainToolBar.onSetupView(); + } + } + MenuItem { + text: "Plan View" + checkable: true + checked: (mainToolBar.currentView === MainToolBar.ViewPlan) + exclusiveGroup: mainMenuGroup + onTriggered: + { + mainToolBar.onPlanView(); + } + } + MenuItem { + text: "Flight View" + checkable: true + checked: (mainToolBar.currentView === MainToolBar.ViewFly) + exclusiveGroup: mainMenuGroup + onTriggered: + { + mainToolBar.onFlyView(); + } + } + //-- Flight View Context Menu + MenuItem { + text: "Flight View Options..." + visible: (mainToolBar.currentView === MainToolBar.ViewFly) + onTriggered: + { + mainToolBar.onFlyViewMenu(); + } + } + } + Row { id: row1 height: cellHeight anchors.left: parent.left - spacing: 4 + spacing: getProportionalDimmension(4) anchors.verticalCenter: parent.verticalCenter - anchors.leftMargin: 10 + anchors.leftMargin: getProportionalDimmension(10) + //--------------------------------------------------------------------- + //-- Main menu for Non Mobile Devices (Chevron Buttons) Row { id: row11 height: cellHeight - spacing: -12 + spacing: -getProportionalDimmension(12) anchors.verticalCenter: parent.verticalCenter - + visible: !mainToolBar.isMobile Connections { - target: mainToolBar + target: ScreenTools onRepaintRequestedChanged: { - setupButton.repaintChevron = true; - planButton.repaintChevron = true; - flyButton.repaintChevron = true; + setupButton.repaintChevron = true; + planButton.repaintChevron = true; + flyButton.repaintChevron = true; analyzeButton.repaintChevron = true; } } @@ -148,7 +208,7 @@ Rectangle { QGCToolBarButton { id: setupButton - width: 90 + width: getProportionalDimmension(90) height: cellHeight exclusiveGroup: mainActionGroup text: qsTr("Setup") @@ -162,7 +222,7 @@ Rectangle { QGCToolBarButton { id: planButton - width: 90 + width: getProportionalDimmension(90) height: cellHeight exclusiveGroup: mainActionGroup text: qsTr("Plan") @@ -176,7 +236,7 @@ Rectangle { QGCToolBarButton { id: flyButton - width: 90 + width: getProportionalDimmension(90) height: cellHeight exclusiveGroup: mainActionGroup text: qsTr("Fly") @@ -190,7 +250,7 @@ Rectangle { QGCToolBarButton { id: analyzeButton - width: 90 + width: getProportionalDimmension(90) height: cellHeight exclusiveGroup: mainActionGroup text: qsTr("Analyze") @@ -204,20 +264,57 @@ Rectangle { } + //--------------------------------------------------------------------- + //-- Indicators Row { id: row12 height: cellHeight spacing: cellSpacerSize anchors.verticalCenter: parent.verticalCenter + //-- "Hamburger" menu for Mobile Devices + Item { + id: actionButton + visible: mainToolBar.isMobile + height: cellHeight + width: cellHeight + Image { + id: buttomImg + anchors.fill: parent + source: "/qml/buttonMore.svg" + mipmap: true + smooth: true + antialiasing: true + fillMode: Image.PreserveAspectFit + } + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.LeftButton + onClicked: { + if (mouse.button == Qt.LeftButton) + { + maintMenu.popup(); + } + } + } + } + + //-- Separator if Hamburger menu is visible + Rectangle { + visible: actionButton.visible + height: cellHeight + width: cellHeight + color: "#00000000" + anchors.verticalCenter: parent.verticalCenter + } + Rectangle { id: messages - width: (mainToolBar.messageCount > 99) ? 70 : 60 + width: (mainToolBar.messageCount > 99) ? getProportionalDimmension(65) : getProportionalDimmension(60) height: cellHeight visible: (mainToolBar.connectionCount > 0) && (mainToolBar.showMessages) anchors.verticalCenter: parent.verticalCenter color: getMessageColor() - radius: cellRadius border.color: "#00000000" border.width: 0 property bool showTriangle: false @@ -225,22 +322,22 @@ Rectangle { Image { id: messageIcon source: getMessageIcon(); - height: 16 + height: getProportionalDimmension(16) fillMode: Image.PreserveAspectFit anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left - anchors.leftMargin: 10 + anchors.leftMargin: getProportionalDimmension(8) } - Rectangle { + Item { id: messageTextRect anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right width: messages.width - messageIcon.width - Text { + QGCLabel { id: messageText text: (mainToolBar.messageCount > 0) ? mainToolBar.messageCount : '' - font.pointSize: 14 * dpiFactor + font.pointSize: ScreenTools.fontPointFactor * (14); font.weight: Font.DemiBold anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter @@ -255,8 +352,8 @@ Rectangle { visible: (messages.showTriangle) && (mainToolBar.messageCount > 0) anchors.bottom: parent.bottom anchors.right: parent.right - anchors.bottomMargin: 3 - anchors.rightMargin: 3 + anchors.bottomMargin: getProportionalDimmension(3) + anchors.rightMargin: getProportionalDimmension(3) } Timer { @@ -291,7 +388,6 @@ Rectangle { visible: showMavStatus() && (mainToolBar.showMav) anchors.verticalCenter: parent.verticalCenter color: colorBlue - radius: cellRadius border.color: "#00000000" border.width: 0 Image { @@ -305,69 +401,158 @@ Rectangle { Rectangle { id: satelitte - width: 60 + width: getProportionalDimmension(55) height: cellHeight visible: showMavStatus() && (mainToolBar.showGPS) anchors.verticalCenter: parent.verticalCenter color: getSatelliteColor(); - radius: cellRadius border.color: "#00000000" border.width: 0 Image { - source: "qrc:/files/images/status/gps.svg"; - height: 24 + source: "qrc:/res/Gps"; + height: getProportionalDimmension(24) fillMode: Image.PreserveAspectFit anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left - anchors.leftMargin: 10 + anchors.leftMargin: getProportionalDimmension(6) mipmap: true smooth: true } - Text { + QGCLabel { id: satelitteText - text: (mainToolBar.satelliteCount > 0) ? mainToolBar.satelliteCount : '' - font.pointSize: 14 * dpiFactor + text: mainToolBar.satelliteCount >= 0 ? mainToolBar.satelliteCount : 'NA' + font.pointSize: mainToolBar.satelliteCount >= 0 ? ScreenTools.fontPointFactor * (14) : ScreenTools.fontPointFactor * (10) font.weight: Font.DemiBold anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right - anchors.rightMargin: 10 + anchors.rightMargin: getProportionalDimmension(6) + horizontalAlignment: Text.AlignRight + color: colorWhite + } + } + + Rectangle { + id: rssiRC + width: getProportionalDimmension(55) + height: cellHeight + visible: showMavStatus() && mainToolBar.showRSSI && mainToolBar.remoteRSSI <= 100 + anchors.verticalCenter: parent.verticalCenter + color: getRSSIColor(mainToolBar.remoteRSSI); + border.color: "#00000000" + border.width: 0 + Image { + source: "qrc:/res/AntennaRC"; + width: cellHeight * 0.7 + fillMode: Image.PreserveAspectFit + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.leftMargin: getProportionalDimmension(6) + mipmap: true + smooth: true + } + QGCLabel { + text: mainToolBar.remoteRSSI + anchors.right: parent.right + anchors.rightMargin: getProportionalDimmension(6) + anchors.verticalCenter: parent.verticalCenter horizontalAlignment: Text.AlignRight + font.pointSize: ScreenTools.fontPointFactor * (12); + font.weight: Font.DemiBold color: colorWhite } } + Rectangle { + id: rssiTelemetry + width: getProportionalDimmension(80) + height: cellHeight + visible: showMavStatus() && (mainToolBar.showRSSI) && ((mainToolBar.telemetryRRSSI > 0) && (mainToolBar.telemetryLRSSI > 0)) + anchors.verticalCenter: parent.verticalCenter + color: getRSSIColor(Math.min(mainToolBar.telemetryRRSSI,mainToolBar.telemetryLRSSI)); + border.color: "#00000000" + border.width: 0 + Image { + source: "qrc:/res/AntennaT"; + width: cellHeight * 0.7 + fillMode: Image.PreserveAspectFit + anchors.verticalCenter: parent.verticalCenter + anchors.left: parent.left + anchors.leftMargin: getProportionalDimmension(6) + mipmap: true + smooth: true + } + Column { + anchors.verticalCenter: parent.verticalCenter + anchors.right: parent.right + anchors.rightMargin: getProportionalDimmension(6) + Row { + anchors.right: parent.right + QGCLabel { + text: 'R ' + font.pointSize: ScreenTools.fontPointFactor * (11); + font.weight: Font.DemiBold + color: colorWhite + } + QGCLabel { + text: mainToolBar.telemetryRRSSI + 'dB' + width: getProportionalDimmension(30) + horizontalAlignment: Text.AlignRight + font.pointSize: ScreenTools.fontPointFactor * (11); + font.weight: Font.DemiBold + color: colorWhite + } + } + Row { + anchors.right: parent.right + QGCLabel { + text: 'L ' + font.pointSize: ScreenTools.fontPointFactor * (11); + font.weight: Font.DemiBold + color: colorWhite + } + QGCLabel { + text: mainToolBar.telemetryLRSSI + 'dB' + width: getProportionalDimmension(30) + horizontalAlignment: Text.AlignRight + font.pointSize: ScreenTools.fontPointFactor * (11); + font.weight: Font.DemiBold + color: colorWhite + } + } + } + } + Rectangle { id: battery - width: 80 + width: getProportionalDimmension(60) height: cellHeight visible: showMavStatus() && (mainToolBar.showBattery) anchors.verticalCenter: parent.verticalCenter - color: (mainToolBar.batteryPercent > 40.0 || mainToolBar.batteryPercent < 0.01) ? colorBlue : colorRed - radius: cellRadius + color: getBatteryColor(); border.color: "#00000000" border.width: 0 Image { source: getBatteryIcon(); - height: 20 + height: getProportionalDimmension(20) fillMode: Image.PreserveAspectFit anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left - anchors.leftMargin: 6 + anchors.leftMargin: getProportionalDimmension(6) mipmap: true smooth: true } - Text { + QGCLabel { id: batteryText - text: mainToolBar.batteryVoltage.toFixed(1) + ' V'; - font.pointSize: 14 * dpiFactor + text: mainToolBar.batteryVoltage.toFixed(1) + 'V'; + font.pointSize: ScreenTools.fontPointFactor * (11); font.weight: Font.DemiBold anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right - anchors.rightMargin: 8 + anchors.rightMargin: getProportionalDimmension(6) horizontalAlignment: Text.AlignRight color: colorWhite } @@ -376,7 +561,7 @@ Rectangle { Column { visible: showMavStatus() height: cellHeight * 0.85 - width: 80 + width: getProportionalDimmension(80) anchors.verticalCenter: parent.verticalCenter Rectangle { @@ -388,10 +573,10 @@ Rectangle { border.color: "#00000000" border.width: 0 - Text { + QGCLabel { id: armedStatusText text: (mainToolBar.systemArmed) ? qsTr("ARMED") : qsTr("DISARMED") - font.pointSize: 12 * dpiFactor + font.pointSize: ScreenTools.fontPointFactor * (12); font.weight: Font.DemiBold anchors.centerIn: parent color: (mainToolBar.systemArmed) ? colorOrangeText : colorGreenText @@ -407,10 +592,10 @@ Rectangle { border.color: "#00000000" border.width: 0 - Text { + QGCLabel { id: stateStatusText text: mainToolBar.currentState - font.pointSize: 12 * dpiFactor + font.pointSize: ScreenTools.fontPointFactor * (12); font.weight: Font.DemiBold anchors.centerIn: parent color: (mainToolBar.currentState === "STANDBY") ? colorGreenText : colorRedText @@ -421,17 +606,17 @@ Rectangle { Rectangle { id: modeStatus - width: 90 + width: getProportionalDimmension(90) height: cellHeight visible: showMavStatus() color: "#00000000" border.color: "#00000000" border.width: 0 - Text { + QGCLabel { id: modeStatusText text: mainToolBar.currentMode - font.pointSize: 12 * dpiFactor + font.pointSize: ScreenTools.fontPointFactor * (12); font.weight: Font.DemiBold anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter @@ -441,7 +626,7 @@ Rectangle { Rectangle { id: connectionStatus - width: 160 + width: getProportionalDimmension(160) height: cellHeight visible: (mainToolBar.connectionCount > 0 && mainToolBar.mavPresent && mainToolBar.heartbeatTimeout != 0) anchors.verticalCenter: parent.verticalCenter @@ -449,10 +634,10 @@ Rectangle { border.color: "#00000000" border.width: 0 - Text { + QGCLabel { id: connectionStatusText text: qsTr("CONNECTION LOST") - font.pointSize: 14 * dpiFactor + font.pointSize: ScreenTools.fontPointFactor * (14); font.weight: Font.DemiBold anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: parent.horizontalCenter @@ -468,35 +653,53 @@ Rectangle { spacing: cellSpacerSize anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter - anchors.leftMargin: 10 - anchors.rightMargin: 10 + anchors.leftMargin: getProportionalDimmension(10) + anchors.rightMargin: getProportionalDimmension(10) - QGCComboBox { - id: configList - width: 200 - visible: (mainToolBar.connectionCount === 0 && mainToolBar.configList.length > 0) - anchors.verticalCenter: parent.verticalCenter - model: mainToolBar.configList - onCurrentIndexChanged: { - mainToolBar.onLinkConfigurationChanged(mainToolBar.configList[currentIndex]); - } + Menu { + id: connectMenu Component.onCompleted: { - mainToolBar.currentConfigChanged.connect(configList.onCurrentConfigChanged) + mainToolBar.configListChanged.connect(connectMenu.updateConnectionList); + connectMenu.updateConnectionList(); } - function onCurrentConfigChanged(config) { - var index = configList.find(config); - configList.currentIndex = index; + function addMenuEntry(name) { + var label = "Add Connection" + if(name !== "") + label = name; + var mItem = connectMenu.addItem(label); + var menuSlot = function() {mainToolBar.onConnect(name)}; + mItem.triggered.connect(menuSlot); } + function updateConnectionList() { + connectMenu.clear(); + for(var i = 0; i < mainToolBar.configList.length; i++) { + connectMenu.addMenuEntry(mainToolBar.configList[i]); + } + if(mainToolBar.configList.length > 0) { + connectMenu.addSeparator(); + } + // Add "Add Connection" to the list + connectMenu.addMenuEntry(""); + } + } + + QGCButton { + id: connectButton + width: getProportionalDimmension(100) + visible: mainToolBar.connectionCount === 0 + text: qsTr("Connect") + menu: connectMenu + anchors.verticalCenter: parent.verticalCenter } QGCButton { - id: connectButton - width: 100 - visible: (mainToolBar.connectionCount === 0 || mainToolBar.connectionCount === 1) - text: (mainToolBar.configList.length > 0) ? (mainToolBar.connectionCount === 0) ? qsTr("Connect") : qsTr("Disconnect") : qsTr("Add Link") + id: disconnectButton + width: getProportionalDimmension(100) + visible: mainToolBar.connectionCount === 1 + text: qsTr("Disconnect") anchors.verticalCenter: parent.verticalCenter onClicked: { - mainToolBar.onConnect(""); + mainToolBar.onDisconnect(""); } } @@ -505,25 +708,37 @@ Rectangle { Component.onCompleted: { mainToolBar.connectedListChanged.connect(disconnectMenu.onConnectedListChanged) } + function addMenuEntry(name) { + var mItem = disconnectMenu.addItem(name); + var menuSlot = function() {mainToolBar.onDisconnect(name)}; + mItem.triggered.connect(menuSlot); + } function onConnectedListChanged(conList) { disconnectMenu.clear(); for(var i = 0; i < conList.length; i++) { - var mItem = disconnectMenu.addItem(conList[i]); - var menuSlot = function() {mainToolBar.onConnect(mItem.text)}; - mItem.triggered.connect(menuSlot); + disconnectMenu.addMenuEntry(conList[i]); } } } QGCButton { - id: multidisconnectButton - width: 100 - text: qsTr("Disconnect") - visible: (mainToolBar.connectionCount > 1) + id: multidisconnectButton + width: getProportionalDimmension(100) + text: "Disconnect" + visible: mainToolBar.connectionCount > 1 + menu: disconnectMenu anchors.verticalCenter: parent.verticalCenter - menu: disconnectMenu } } + + // Progress bar + Rectangle { + readonly property int progressBarHeight: getProportionalDimmension(3) + y: parent.height - progressBarHeight + height: progressBarHeight + width: parent.width * mainToolBar.progressBarValue + color: qgcPal.text + } } diff --git a/src/ui/uas/QGCUnconnectedInfoWidget.cc b/src/ui/uas/QGCUnconnectedInfoWidget.cc index ff4180cf21102ac435928941e86e75f2455752d8..0309c3125d79c31d22aa0497c09b35e900ab4ce0 100644 --- a/src/ui/uas/QGCUnconnectedInfoWidget.cc +++ b/src/ui/uas/QGCUnconnectedInfoWidget.cc @@ -1,7 +1,6 @@ #include "QGCUnconnectedInfoWidget.h" #include "LinkInterface.h" #include "LinkManager.h" -#include "MAVLinkSimulationLink.h" #include "MainWindow.h" #include "ui_QGCUnconnectedInfoWidget.h" @@ -24,15 +23,6 @@ QGCUnconnectedInfoWidget::~QGCUnconnectedInfoWidget() */ void QGCUnconnectedInfoWidget::simulate() { - // TODO What is this? - // Try to get reference to MAVLinkSimulationlink - QList links = LinkManager::instance()->getLinks(); - foreach(LinkInterface* link, links) { - MAVLinkSimulationLink* sim = dynamic_cast(link); - if (sim) { - LinkManager::instance()->connectLink(sim); - } - } } /** diff --git a/src/ui/uas/QGCUnconnectedInfoWidget.ui b/src/ui/uas/QGCUnconnectedInfoWidget.ui index 9ac07542b08e42e7de1f2df467c9dbc1d9eeaa43..f13b5a773b8a8230a5903e431ce501cced4d5b31 100644 --- a/src/ui/uas/QGCUnconnectedInfoWidget.ui +++ b/src/ui/uas/QGCUnconnectedInfoWidget.ui @@ -60,7 +60,7 @@ - :/files/images/actions/qgroundcontrol-connect.svg:/files/images/actions/qgroundcontrol-connect.svg + :/res/QGroundControlConnect:/res/QGroundControlConnect diff --git a/src/ui/uas/UASListWidget.cc b/src/ui/uas/UASListWidget.cc index fa5194bb181ebc5d54e4743ba929e4f45be61914..3733a88ce06f47067e3c592dbc977a4362422263 100644 --- a/src/ui/uas/UASListWidget.cc +++ b/src/ui/uas/UASListWidget.cc @@ -41,7 +41,6 @@ This file is part of the PIXHAWK project #include "UASView.h" #include "QGCUnconnectedInfoWidget.h" #include "MainWindow.h" -#include "MAVLinkSimulationLink.h" #include "LinkManager.h" UASListWidget::UASListWidget(QWidget *parent) : QWidget(parent), @@ -118,7 +117,7 @@ void UASListWidget::updateStatus() LinkInterface* link = i.key(); // Paranoid sanity check - if (!LinkManager::instance()->getLinks().contains(link)) + if (!LinkManager::instance()->containsLink(link)) continue; if (!link) diff --git a/src/ui/uas/UASView.cc b/src/ui/uas/UASView.cc index ee4efe09b35e17231b46476d9b903f84b3cf0e82..408ce4fd4ac45bec416f613fb362622f3ba7fb09 100644 --- a/src/ui/uas/UASView.cc +++ b/src/ui/uas/UASView.cc @@ -266,22 +266,22 @@ void UASView::setSystemType(UASInterface* uas, unsigned int systemType) switch (systemType) { case MAV_TYPE_GENERIC: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/generic.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Generic")); break; case MAV_TYPE_FIXED_WING: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/fixed-wing.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/FixedWing")); break; case MAV_TYPE_QUADROTOR: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/quadrotor.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/QuadRotor")); break; case MAV_TYPE_COAXIAL: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/coaxial.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Coaxial")); break; case MAV_TYPE_HELICOPTER: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/helicopter.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Helicopter")); break; case MAV_TYPE_ANTENNA_TRACKER: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/unknown.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Unknown")); break; case MAV_TYPE_GCS: { // A groundstation is a special system type, update widget @@ -299,44 +299,44 @@ void UASView::setSystemType(UASInterface* uas, unsigned int systemType) m_ui->landButton->hide(); m_ui->shutdownButton->hide(); m_ui->abortButton->hide(); - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/groundstation.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Groundstation")); } break; case MAV_TYPE_AIRSHIP: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/airship.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Airship")); break; case MAV_TYPE_FREE_BALLOON: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/free-balloon.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/FreeBalloon")); break; case MAV_TYPE_ROCKET: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/rocket.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Rocket")); break; case MAV_TYPE_GROUND_ROVER: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/ground-rover.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/GroundRover")); break; case MAV_TYPE_SURFACE_BOAT: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/surface-boat.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/SurfaceBoat")); break; case MAV_TYPE_SUBMARINE: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/submarine.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Submarine")); break; case MAV_TYPE_HEXAROTOR: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/hexarotor.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/HexaRotor")); break; case MAV_TYPE_OCTOROTOR: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/octorotor.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/OctoRotor")); break; case MAV_TYPE_TRICOPTER: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/tricopter.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/TriCopter")); break; case MAV_TYPE_FLAPPING_WING: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/flapping-wing.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/FlappingWing")); break; case MAV_TYPE_KITE: - m_ui->typeLabel->setPixmap(QPixmap(":files/images/mavs/kite.svg")); + m_ui->typeLabel->setPixmap(QPixmap(":/res/mavs/Kite")); break; default: - m_ui->typeLabel->setPixmap(QPixmap(":/files/images/mavs/unknown.svg")); + m_ui->typeLabel->setPixmap(QPixmap("://res/mavs/Unknown")); break; } }